diff --git a/contrib/systemd/sist2-update-files.sh b/contrib/systemd/sist2-update-files.sh index 15a9792..e8ff6d6 100755 --- a/contrib/systemd/sist2-update-files.sh +++ b/contrib/systemd/sist2-update-files.sh @@ -12,7 +12,7 @@ REWRITE_URL="" sist2 scan \ --threads 14 \ --mem-throttle 32768 \ - --quality 1.0 \ + --thumbnail-quality 2 \ --name $NAME \ --ocr-lang=eng+chi_sim \ --ocr-ebooks \ diff --git a/contrib/systemd/sist2-update-nextcloud.sh b/contrib/systemd/sist2-update-nextcloud.sh index 644f385..fda552e 100755 --- a/contrib/systemd/sist2-update-nextcloud.sh +++ b/contrib/systemd/sist2-update-nextcloud.sh @@ -12,7 +12,7 @@ REWRITE_URL="" sist2 scan \ --threads 14 \ --mem-throttle 32768 \ - --quality 1.0 \ + --thumbnail-quality 2 \ --name $NAME \ --ocr-lang=eng+chi_sim \ --ocr-ebooks \ diff --git a/docs/USAGE.md b/docs/USAGE.md index 1c89da4..3c4369c 100644 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -33,7 +33,7 @@ Lightning-fast file system indexer and search tool. Scan options -t, --threads= Number of threads. DEFAULT=1 --mem-throttle= Total memory threshold in MiB for scan throttling. DEFAULT=0 - -q, --thumbnail-quality= Thumbnail quality, on a scale of 1.0 to 31.0, 1.0 being the best. DEFAULT=1 + -q, --thumbnail-quality= Thumbnail quality, on a scale of 2 to 31, 2 being the best. DEFAULT=2 --thumbnail-size= Thumbnail size, in pixels. DEFAULT=500 --thumbnail-count= Number of thumbnails to generate. Set a value > 1 to create video previews, set to 0 to disable thumbnails. DEFAULT=1 --content-size= Number of bytes to be extracted from text documents. Set to 0 to disable. DEFAULT=32768 @@ -101,7 +101,7 @@ Made by simon987 . Released under GPL-3.0 Total memory threshold in MiB for scan throttling. Worker threads will not start a new parse job until the total memory usage of sist2 is below this threshold. Set to 0 to disable. DEFAULT=0 * `-q, --thumbnail-quality` - Thumbnail quality, on a scale of 1.0 to 31.0, 1.0 being the best. + Thumbnail quality, on a scale of 2 to 32, 2 being the best. See section below for a rough estimate of thumbnail database size * `--thumbnail-size` Thumbnail size in pixels. * `--thumbnail-count` @@ -154,6 +154,16 @@ Made by simon987 . Released under GPL-3.0 operations. Checksums are not calculated for all file types, unless the file is inside an archive. When enabled, duplicate files are hidden in the web UI (this behaviour can be toggled in the Configuration page). + +#### Thumbnail database size estimation + +See chart below for rough estimate of thumbnail size vs. thumbnail size & quality arguments: + +For example, `--thumbnail-size=500`, `--thumbnail-quality=2` for a directory with 8 million images will create a thumbnail database +that is about `8000000 * 6kB = 288GB`. + +![thumbnail_size](thumbnail_size.png) + ### Scan examples Simple scan @@ -161,7 +171,7 @@ Simple scan sist2 scan ~/Documents sist2 scan \ - --threads 4 --content-size 16000000 --quality 1.0 --archive shallow \ + --threads 4 --content-size 16000000 --thumbnail-quality 2 --archive shallow \ --name "My Documents" --rewrite-url "http://nas.domain.local/My Documents/" \ ~/Documents -o ./documents.idx/ ``` diff --git a/docs/thumbnail_size.png b/docs/thumbnail_size.png new file mode 100644 index 0000000..3550334 Binary files /dev/null and b/docs/thumbnail_size.png differ diff --git a/sist2-admin/frontend/src/i18n/messages.js b/sist2-admin/frontend/src/i18n/messages.js index 901bf61..9483cc1 100644 --- a/sist2-admin/frontend/src/i18n/messages.js +++ b/sist2-admin/frontend/src/i18n/messages.js @@ -62,7 +62,7 @@ export default { path: "Path", threads: "Number of threads", memThrottle: "Total memory threshold in MiB for scan throttling", - thumbnailQuality: "Thumbnail quality, on a scale of 1.0 to 31.0, 1.0 being the best", + thumbnailQuality: "Thumbnail quality, on a scale of 2 to 32, 2 being the best", thumbnailCount: "Number of thumbnails to generate. Set a value > 1 to create video previews, set to 0 to disable thumbnails.", thumbnailSize: "Thumbnail size, in pixels", contentSize: "Number of bytes to be extracted from text documents. Set to 0 to disable", diff --git a/sist2-admin/sist2_admin/sist2.py b/sist2-admin/sist2_admin/sist2.py index baa5215..bd90fa3 100644 --- a/sist2-admin/sist2_admin/sist2.py +++ b/sist2-admin/sist2_admin/sist2.py @@ -111,7 +111,7 @@ class ScanOptions(BaseModel): path: str threads: int = 1 mem_throttle: int = 0 - thumbnail_quality: float = 1.0 + thumbnail_quality: int = 2 thumbnail_size: int = 500 thumbnail_count: int = 1 content_size: int = 32768 diff --git a/src/cli.c b/src/cli.c index f6c55ce..7349aa3 100644 --- a/src/cli.c +++ b/src/cli.c @@ -4,7 +4,7 @@ #define DEFAULT_OUTPUT "index.sist2/" #define DEFAULT_CONTENT_SIZE 32768 -#define DEFAULT_QUALITY 1 +#define DEFAULT_QUALITY 2 #define DEFAULT_THUMBNAIL_SIZE 500 #define DEFAULT_THUMBNAIL_COUNT 1 #define DEFAULT_REWRITE_URL "" @@ -112,8 +112,8 @@ int scan_args_validate(scan_args_t *args, int argc, const char **argv) { if (args->tn_quality == OPTION_VALUE_UNSPECIFIED) { args->tn_quality = DEFAULT_QUALITY; - } else if (args->tn_quality < 1.0f || args->tn_quality > 31.0f) { - fprintf(stderr, "Invalid value for --thumbnail-quality argument: %f. Must be within [1.0, 31.0].\n", + } else if (args->tn_quality < 2 || args->tn_quality > 31) { + fprintf(stderr, "Invalid value for --thumbnail-quality argument: %d. Must be within [2, 31].\n", args->tn_quality); return 1; } diff --git a/src/cli.h b/src/cli.h index e027e09..556d1d6 100644 --- a/src/cli.h +++ b/src/cli.h @@ -9,7 +9,7 @@ #define OPTION_VALUE_UNSPECIFIED (0) typedef struct scan_args { - float tn_quality; + int tn_quality; int tn_size; int content_size; int threads; diff --git a/src/main.c b/src/main.c index 264de9d..48a9cfe 100644 --- a/src/main.c +++ b/src/main.c @@ -650,8 +650,8 @@ int main(int argc, const char *argv[]) { OPT_INTEGER(0, "mem-throttle", &scan_args->scan_mem_limit_mib, "Total memory threshold in MiB for scan throttling. DEFAULT=0", set_to_negative_if_value_is_zero, (intptr_t) &scan_args->scan_mem_limit_mib), - OPT_FLOAT('q', "thumbnail-quality", &scan_args->tn_quality, - "Thumbnail quality, on a scale of 1.0 to 31.0, 1.0 being the best. DEFAULT=1", + OPT_INTEGER('q', "thumbnail-quality", &scan_args->tn_quality, + "Thumbnail quality, on a scale of 2 to 31, 2 being the best. DEFAULT=2", set_to_negative_if_value_is_zero, (intptr_t) &scan_args->tn_quality), OPT_INTEGER(0, "thumbnail-size", &scan_args->tn_size, "Thumbnail size, in pixels. DEFAULT=500", diff --git a/src/sist.h b/src/sist.h index e188254..fa5e13d 100644 --- a/src/sist.h +++ b/src/sist.h @@ -49,7 +49,7 @@ #include #include "git_hash.h" -#define VERSION "2.13.1" +#define VERSION "2.14.0" static const char *const Version = VERSION; #ifndef SIST_PLATFORM diff --git a/src/web/static_generated.c b/src/web/static_generated.c index 323fee8..e42edc1 100644 --- a/src/web/static_generated.c +++ b/src/web/static_generated.c @@ -1,6 +1,6 @@ char favicon_ico[15086] = {0,0,1,0,3,0,48,48,0,0,1,0,32,0,168,37,0,0,54,0,0,0,32,32,0,0,1,0,32,0,168,16,0,0,222,37,0,0,16,16,0,0,1,0,32,0,104,4,0,0,134,54,0,0,40,0,0,0,48,0,0,0,96,0,0,0,1,0,32,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,10,0,0,0,24,0,0,0,37,0,0,0,46,0,0,0,47,0,0,0,41,0,0,0,29,0,0,0,13,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,23,0,0,0,64,0,0,0,112,0,0,0,158,0,0,0,193,0,0,0,216,0,0,0,230,0,0,0,236,0,0,0,237,0,0,0,233,0,0,0,222,0,0,0,198,0,0,0,155,0,0,0,90,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,107,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,113,0,0,0,162,0,0,0,212,0,0,0,244,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,251,0,0,0,209,0,0,0,104,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,242,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,250,0,0,0,157,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,242,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,254,0,0,0,240,0,0,0,209,0,0,0,175,0,0,0,146,0,0,0,129,0,0,0,125,0,0,0,136,0,0,0,163,0,0,0,206,0,0,0,246,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,254,0,0,0,151,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,242,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,245,0,0,0,195,0,0,0,120,0,0,0,56,0,0,0,20,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,19,0,0,0,83,0,0,0,205,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,244,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,220,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,226,0,0,0,142,0,0,0,134,0,0,0,136,0,0,0,136,0,0,0,136,0,0,0,136,0,0,0,136,0,0,0,136,0,0,0,136,0,0,0,136,0,0,0,136,0,0,0,136,0,0,0,136,0,0,0,136,0,0,0,136,0,0,0,136,0,0,0,164,0,0,0,76,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,218,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,162,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,230,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,245,0,0,0,119,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,208,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,232,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,245,0,0,0,118,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,223,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,87,0,0,0,233,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,244,0,0,0,115,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,220,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,90,0,0,0,235,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,243,0,0,0,111,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,218,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,197,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,93,0,0,0,236,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,242,0,0,0,107,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,25,0,0,0,95,0,0,0,208,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,95,0,0,0,237,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,240,0,0,0,103,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,18,0,0,0,49,0,0,0,95,0,0,0,154,0,0,0,213,0,0,0,250,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,225,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,97,0,0,0,238,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,239,0,0,0,99,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,48,0,0,0,107,0,0,0,161,0,0,0,206,0,0,0,237,0,0,0,253,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,235,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,99,0,0,0,239,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,237,0,0,0,95,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,75,0,0,0,175,0,0,0,235,0,0,0,254,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,251,0,0,0,196,0,0,0,73,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,102,0,0,0,239,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,235,0,0,0,90,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,143,0,0,0,243,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,252,0,0,0,230,0,0,0,176,0,0,0,93,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,105,0,0,0,241,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,232,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,140,0,0,0,253,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,249,0,0,0,224,0,0,0,187,0,0,0,140,0,0,0,89,0,0,0,40,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,109,0,0,0,243,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,229,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,236,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,252,0,0,0,213,0,0,0,142,0,0,0,77,0,0,0,33,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,115,0,0,0,245,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,224,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,245,0,0,0,131,0,0,0,26,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,126,0,0,0,249,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,217,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,163,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,145,0,0,0,253,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,176,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,141,0,0,0,4,0,0,0,0,0,0,0,210,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,214,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,239,0,0,0,70,0,0,0,0,0,0,0,174,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,178,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,247,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,176,0,0,0,11,0,0,0,102,0,0,0,249,0,0,0,255,0,0,0,255,0,0,0,249,0,0,0,141,0,0,0,27,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,19,0,0,0,66,0,0,0,152,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,182,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,238,0,0,0,68,0,0,0,22,0,0,0,191,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,253,0,0,0,213,0,0,0,148,0,0,0,103,0,0,0,80,0,0,0,72,0,0,0,74,0,0,0,89,0,0,0,116,0,0,0,158,0,0,0,206,0,0,0,244,0,0,0,255,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,253,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,140,0,0,0,0,0,0,0,59,0,0,0,219,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,251,0,0,0,249,0,0,0,250,0,0,0,253,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,233,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,188,0,0,0,250,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,217,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,92,0,0,0,173,0,0,0,221,0,0,0,243,0,0,0,251,0,0,0,254,0,0,0,255,0,0,0,254,0,0,0,251,0,0,0,244,0,0,0,229,0,0,0,202,0,0,0,157,0,0,0,94,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,220,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,29,0,0,0,58,0,0,0,80,0,0,0,93,0,0,0,96,0,0,0,90,0,0,0,78,0,0,0,60,0,0,0,37,0,0,0,16,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,240,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,144,0,0,0,80,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,228,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,246,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,213,0,0,0,247,0,0,0,184,0,0,0,94,0,0,0,27,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,68,0,0,0,212,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,195,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,212,0,0,0,255,0,0,0,255,0,0,0,251,0,0,0,216,0,0,0,155,0,0,0,94,0,0,0,52,0,0,0,30,0,0,0,20,0,0,0,20,0,0,0,32,0,0,0,70,0,0,0,150,0,0,0,235,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,241,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,212,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,253,0,0,0,240,0,0,0,222,0,0,0,211,0,0,0,211,0,0,0,225,0,0,0,246,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,247,0,0,0,123,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,182,0,0,0,251,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,234,0,0,0,113,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,85,0,0,0,161,0,0,0,219,0,0,0,248,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,239,0,0,0,172,0,0,0,61,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,29,0,0,0,76,0,0,0,129,0,0,0,175,0,0,0,207,0,0,0,225,0,0,0,232,0,0,0,232,0,0,0,226,0,0,0,210,0,0,0,178,0,0,0,124,0,0,0,57,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,18,0,0,0,31,0,0,0,40,0,0,0,40,0,0,0,33,0,0,0,19,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,240,3,255,255,255,255,0,0,0,0,255,192,0,0,0,0,0,0,63,192,0,0,0,0,0,64,31,192,0,0,0,0,31,252,31,192,0,0,0,0,127,254,15,224,255,255,0,0,255,254,15,240,127,255,0,0,255,255,15,248,63,255,0,0,255,254,15,252,31,255,0,0,255,254,15,254,15,255,0,0,255,252,15,255,7,255,0,0,255,224,31,255,131,255,0,0,254,0,63,255,193,255,0,0,240,0,127,255,224,255,0,0,192,1,255,255,240,127,0,0,128,15,255,255,248,63,0,0,128,255,255,255,252,31,0,0,3,255,255,255,254,15,0,0,7,255,255,255,254,7,0,0,15,255,255,255,255,3,0,0,15,255,255,255,255,131,0,0,7,255,255,255,255,193,0,0,131,255,191,255,255,193,0,0,128,252,31,255,255,224,0,0,192,0,31,255,255,224,0,0,224,0,31,255,255,224,0,0,248,0,127,255,255,224,0,0,255,255,255,255,255,224,0,0,255,255,255,255,255,192,0,0,255,255,255,223,255,193,0,0,255,255,255,199,255,129,0,0,255,255,255,192,254,3,0,0,255,255,255,192,0,7,0,0,255,255,255,192,0,15,0,0,255,255,255,240,0,31,0,0,255,255,255,254,0,255,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,255,255,255,255,255,255,0,0,40,0,0,0,32,0,0,0,64,0,0,0,1,0,32,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,13,0,0,0,28,0,0,0,39,0,0,0,40,0,0,0,31,0,0,0,15,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,109,0,0,0,162,0,0,0,199,0,0,0,221,0,0,0,232,0,0,0,233,0,0,0,225,0,0,0,201,0,0,0,150,0,0,0,66,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,113,0,0,0,157,0,0,0,155,0,0,0,155,0,0,0,155,0,0,0,155,0,0,0,155,0,0,0,155,0,0,0,155,0,0,0,155,0,0,0,155,0,0,0,155,0,0,0,155,0,0,0,155,0,0,0,155,0,0,0,241,0,0,0,254,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,241,0,0,0,139,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,186,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,248,0,0,0,211,0,0,0,159,0,0,0,117,0,0,0,94,0,0,0,90,0,0,0,109,0,0,0,161,0,0,0,234,0,0,0,255,0,0,0,253,0,0,0,132,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,183,0,0,0,255,0,0,0,255,0,0,0,253,0,0,0,232,0,0,0,226,0,0,0,227,0,0,0,227,0,0,0,227,0,0,0,227,0,0,0,227,0,0,0,227,0,0,0,227,0,0,0,227,0,0,0,227,0,0,0,168,0,0,0,84,0,0,0,23,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,75,0,0,0,231,0,0,0,255,0,0,0,226,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,237,0,0,0,255,0,0,0,254,0,0,0,156,0,0,0,39,0,0,0,33,0,0,0,34,0,0,0,34,0,0,0,34,0,0,0,34,0,0,0,34,0,0,0,34,0,0,0,34,0,0,0,34,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,168,0,0,0,255,0,0,0,251,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,99,0,0,0,239,0,0,0,255,0,0,0,245,0,0,0,119,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,168,0,0,0,255,0,0,0,253,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,102,0,0,0,240,0,0,0,255,0,0,0,245,0,0,0,117,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,77,0,0,0,231,0,0,0,255,0,0,0,242,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,105,0,0,0,241,0,0,0,255,0,0,0,244,0,0,0,113,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,18,0,0,0,49,0,0,0,99,0,0,0,168,0,0,0,237,0,0,0,255,0,0,0,255,0,0,0,185,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,107,0,0,0,241,0,0,0,255,0,0,0,243,0,0,0,109,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,93,0,0,0,159,0,0,0,206,0,0,0,237,0,0,0,253,0,0,0,255,0,0,0,255,0,0,0,254,0,0,0,202,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,109,0,0,0,242,0,0,0,255,0,0,0,241,0,0,0,105,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,79,0,0,0,206,0,0,0,252,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,254,0,0,0,242,0,0,0,203,0,0,0,123,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,112,0,0,0,243,0,0,0,255,0,0,0,239,0,0,0,99,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,229,0,0,0,255,0,0,0,255,0,0,0,245,0,0,0,207,0,0,0,157,0,0,0,107,0,0,0,59,0,0,0,18,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,116,0,0,0,245,0,0,0,255,0,0,0,237,0,0,0,92,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,255,0,0,0,255,0,0,0,187,0,0,0,72,0,0,0,19,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,124,0,0,0,248,0,0,0,255,0,0,0,232,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,255,0,0,0,229,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,144,0,0,0,254,0,0,0,255,0,0,0,216,0,0,0,44,0,0,0,0,0,0,0,228,0,0,0,255,0,0,0,215,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,182,0,0,0,255,0,0,0,255,0,0,0,165,0,0,0,10,0,0,0,193,0,0,0,255,0,0,0,245,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,35,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,232,0,0,0,255,0,0,0,242,0,0,0,83,0,0,0,100,0,0,0,245,0,0,0,255,0,0,0,232,0,0,0,143,0,0,0,82,0,0,0,60,0,0,0,57,0,0,0,71,0,0,0,104,0,0,0,159,0,0,0,222,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,157,0,0,0,255,0,0,0,255,0,0,0,170,0,0,0,10,0,0,0,136,0,0,0,246,0,0,0,255,0,0,0,255,0,0,0,252,0,0,0,245,0,0,0,243,0,0,0,249,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,255,0,0,0,255,0,0,0,219,0,0,0,0,0,0,0,8,0,0,0,86,0,0,0,180,0,0,0,226,0,0,0,244,0,0,0,249,0,0,0,248,0,0,0,243,0,0,0,231,0,0,0,204,0,0,0,152,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,253,0,0,0,255,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,34,0,0,0,58,0,0,0,70,0,0,0,69,0,0,0,58,0,0,0,39,0,0,0,16,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,255,0,0,0,255,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,72,0,0,0,52,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,212,0,0,0,255,0,0,0,255,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,235,0,0,0,156,0,0,0,74,0,0,0,25,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,61,0,0,0,192,0,0,0,255,0,0,0,255,0,0,0,232,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,255,0,0,0,255,0,0,0,247,0,0,0,215,0,0,0,178,0,0,0,154,0,0,0,155,0,0,0,187,0,0,0,237,0,0,0,255,0,0,0,255,0,0,0,247,0,0,0,118,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,213,0,0,0,248,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,226,0,0,0,109,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,24,0,0,0,77,0,0,0,138,0,0,0,187,0,0,0,216,0,0,0,229,0,0,0,229,0,0,0,218,0,0,0,187,0,0,0,126,0,0,0,43,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,24,0,0,0,35,0,0,0,36,0,0,0,25,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,192,63,192,0,0,15,128,0,15,7,128,0,127,199,195,255,255,199,227,255,255,199,241,255,255,199,248,255,255,7,252,127,240,15,254,63,192,63,255,31,129,255,255,143,15,255,255,199,31,255,255,195,31,255,255,225,31,255,255,241,135,207,255,240,128,15,255,248,224,15,255,248,255,255,255,248,255,255,255,240,255,255,143,225,255,255,128,3,255,255,192,7,255,255,240,31,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,40,0,0,0,16,0,0,0,32,0,0,0,1,0,32,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,16,0,0,0,32,0,0,0,33,0,0,0,16,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,167,0,0,0,204,0,0,0,216,0,0,0,217,0,0,0,202,0,0,0,114,0,0,0,11,0,0,0,0,0,0,0,78,0,0,0,195,0,0,0,194,0,0,0,197,0,0,0,197,0,0,0,197,0,0,0,197,0,0,0,197,0,0,0,178,0,0,0,108,0,0,0,66,0,0,0,63,0,0,0,128,0,0,0,237,0,0,0,103,0,0,0,0,0,0,0,76,0,0,0,245,0,0,0,226,0,0,0,141,0,0,0,133,0,0,0,134,0,0,0,134,0,0,0,134,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,208,0,0,0,162,0,0,0,0,0,0,0,4,0,0,0,114,0,0,0,235,0,0,0,121,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,17,0,0,0,50,0,0,0,129,0,0,0,243,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,118,0,0,0,237,0,0,0,121,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,139,0,0,0,209,0,0,0,232,0,0,0,225,0,0,0,146,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,120,0,0,0,237,0,0,0,116,0,0,0,4,0,0,0,0,0,0,0,187,0,0,0,231,0,0,0,139,0,0,0,77,0,0,0,33,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,125,0,0,0,237,0,0,0,105,0,0,0,2,0,0,0,244,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,148,0,0,0,232,0,0,0,76,0,0,0,203,0,0,0,200,0,0,0,72,0,0,0,45,0,0,0,58,0,0,0,106,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,214,0,0,0,196,0,0,0,56,0,0,0,179,0,0,0,221,0,0,0,218,0,0,0,218,0,0,0,196,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,169,0,0,0,245,0,0,0,0,0,0,0,10,0,0,0,38,0,0,0,49,0,0,0,39,0,0,0,17,0,0,0,1,0,0,0,0,0,0,0,22,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,203,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,212,0,0,0,142,0,0,0,94,0,0,0,98,0,0,0,183,0,0,0,243,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,139,0,0,0,200,0,0,0,222,0,0,0,223,0,0,0,196,0,0,0,98,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,13,0,0,0,30,0,0,0,30,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,255,255,0,0,7,128,0,0,115,128,0,0,249,223,0,0,243,239,0,0,131,247,0,0,31,251,0,0,63,249,0,0,63,252,0,0,131,252,0,0,255,252,0,0,255,153,0,0,255,131,0,0,255,255,0,0,255,255,0,0}; -char chunk_vendors_css[0] = {}; -char index_css[0] = {}; -char chunk_vendors_js[7627724] = {47,42,10,32,42,32,65,84,84,69,78,84,73,79,78,58,32,84,104,101,32,34,101,118,97,108,34,32,100,101,118,116,111,111,108,32,104,97,115,32,98,101,101,110,32,117,115,101,100,32,40,109,97,121,98,101,32,98,121,32,100,101,102,97,117,108,116,32,105,110,32,109,111,100,101,58,32,34,100,101,118,101,108,111,112,109,101,110,116,34,41,46,10,32,42,32,84,104,105,115,32,100,101,118,116,111,111,108,32,105,115,32,110,101,105,116,104,101,114,32,109,97,100,101,32,102,111,114,32,112,114,111,100,117,99,116,105,111,110,32,110,111,114,32,102,111,114,32,114,101,97,100,97,98,108,101,32,111,117,116,112,117,116,32,102,105,108,101,115,46,10,32,42,32,73,116,32,117,115,101,115,32,34,101,118,97,108,40,41,34,32,99,97,108,108,115,32,116,111,32,99,114,101,97,116,101,32,97,32,115,101,112,97,114,97,116,101,32,115,111,117,114,99,101,32,102,105,108,101,32,105,110,32,116,104,101,32,98,114,111,119,115,101,114,32,100,101,118,116,111,111,108,115,46,10,32,42,32,73,102,32,121,111,117,32,97,114,101,32,116,114,121,105,110,103,32,116,111,32,114,101,97,100,32,116,104,101,32,111,117,116,112,117,116,32,102,105,108,101,44,32,115,101,108,101,99,116,32,97,32,100,105,102,102,101,114,101,110,116,32,100,101,118,116,111,111,108,32,40,104,116,116,112,115,58,47,47,119,101,98,112,97,99,107,46,106,115,46,111,114,103,47,99,111,110,102,105,103,117,114,97,116,105,111,110,47,100,101,118,116,111,111,108,47,41,10,32,42,32,111,114,32,100,105,115,97,98,108,101,32,116,104,101,32,100,101,102,97,117,108,116,32,100,101,118,116,111,111,108,32,119,105,116,104,32,34,100,101,118,116,111,111,108,58,32,102,97,108,115,101,34,46,10,32,42,32,73,102,32,121,111,117,32,97,114,101,32,108,111,111,107,105,110,103,32,102,111,114,32,112,114,111,100,117,99,116,105,111,110,45,114,101,97,100,121,32,111,117,116,112,117,116,32,102,105,108,101,115,44,32,115,101,101,32,109,111,100,101,58,32,34,112,114,111,100,117,99,116,105,111,110,34,32,40,104,116,116,112,115,58,47,47,119,101,98,112,97,99,107,46,106,115,46,111,114,103,47,99,111,110,102,105,103,117,114,97,116,105,111,110,47,109,111,100,101,47,41,46,10,32,42,47,10,40,115,101,108,102,91,34,119,101,98,112,97,99,107,67,104,117,110,107,115,105,115,116,50,34,93,32,61,32,115,101,108,102,91,34,119,101,98,112,97,99,107,67,104,117,110,107,115,105,115,116,50,34,93,32,124,124,32,91,93,41,46,112,117,115,104,40,91,91,34,99,104,117,110,107,45,118,101,110,100,111,114,115,34,93,44,123,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,97,117,116,104,48,47,97,117,116,104,48,45,115,112,97,45,106,115,47,100,105,115,116,47,97,117,116,104,48,45,115,112,97,45,106,115,46,112,114,111,100,117,99,116,105,111,110,46,101,115,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,97,117,116,104,48,47,97,117,116,104,48,45,115,112,97,45,106,115,47,100,105,115,116,47,97,117,116,104,48,45,115,112,97,45,106,115,46,112,114,111,100,117,99,116,105,111,110,46,101,115,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,65,117,116,104,48,67,108,105,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,65,117,116,104,101,110,116,105,99,97,116,105,111,110,69,114,114,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,97,99,104,101,75,101,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,71,101,110,101,114,105,99,69,114,114,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,110,77,101,109,111,114,121,67,97,99,104,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,122,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,76,111,99,97,108,83,116,111,114,97,103,101,67,97,99,104,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,102,97,82,101,113,117,105,114,101,100,69,114,114,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,105,115,115,105,110,103,82,101,102,114,101,115,104,84,111,107,101,110,69,114,114,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,111,112,117,112,67,97,110,99,101,108,108,101,100,69,114,114,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,111,112,117,112,84,105,109,101,111,117,116,69,114,114,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,105,109,101,111,117,116,69,114,114,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,85,115,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,101,97,116,101,65,117,116,104,48,67,108,105,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,111,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,118,97,114,32,105,61,123,125,59,102,111,114,40,118,97,114,32,111,32,105,110,32,101,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,101,44,111,41,38,38,116,46,105,110,100,101,120,79,102,40,111,41,60,48,38,38,40,105,91,111,93,61,101,91,111,93,41,59,105,102,40,110,117,108,108,33,61,101,38,38,92,34,102,117,110,99,116,105,111,110,92,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,41,123,118,97,114,32,110,61,48,59,102,111,114,40,111,61,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,101,41,59,110,60,111,46,108,101,110,103,116,104,59,110,43,43,41,116,46,105,110,100,101,120,79,102,40,111,91,110,93,41,60,48,38,38,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,46,99,97,108,108,40,101,44,111,91,110,93,41,38,38,40,105,91,111,91,110,93,93,61,101,91,111,91,110,93,93,41,125,114,101,116,117,114,110,32,105,125,118,97,114,32,116,61,92,34,117,110,100,101,102,105,110,101,100,92,34,33,61,116,121,112,101,111,102,32,103,108,111,98,97,108,84,104,105,115,63,103,108,111,98,97,108,84,104,105,115,58,92,34,117,110,100,101,102,105,110,101,100,92,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,92,34,117,110,100,101,102,105,110,101,100,92,34,33,61,116,121,112,101,111,102,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,63,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,58,92,34,117,110,100,101,102,105,110,101,100,92,34,33,61,116,121,112,101,111,102,32,115,101,108,102,63,115,101,108,102,58,123,125,59,102,117,110,99,116,105,111,110,32,105,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,38,38,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,101,44,92,34,100,101,102,97,117,108,116,92,34,41,63,101,46,100,101,102,97,117,108,116,58,101,125,102,117,110,99,116,105,111,110,32,111,40,101,44,116,41,123,114,101,116,117,114,110,32,101,40,116,61,123,101,120,112,111,114,116,115,58,123,125,125,44,116,46,101,120,112,111,114,116,115,41,44,116,46,101,120,112,111,114,116,115,125,118,97,114,32,110,61,111,40,40,102,117,110,99,116,105,111,110,40,101,44,116,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,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,108,111,99,107,101,100,61,110,101,119,32,77,97,112,44,116,104,105,115,46,97,100,100,84,111,76,111,99,107,101,100,61,102,117,110,99,116,105,111,110,40,116,44,105,41,123,118,97,114,32,111,61,101,46,108,111,99,107,101,100,46,103,101,116,40,116,41,59,118,111,105,100,32,48,61,61,61,111,63,118,111,105,100,32,48,61,61,61,105,63,101,46,108,111,99,107,101,100,46,115,101,116,40,116,44,91,93,41,58,101,46,108,111,99,107,101,100,46,115,101,116,40,116,44,91,105,93,41,58,118,111,105,100,32,48,33,61,61,105,38,38,40,111,46,117,110,115,104,105,102,116,40,105,41,44,101,46,108,111,99,107,101,100,46,115,101,116,40,116,44,111,41,41,125,44,116,104,105,115,46,105,115,76,111,99,107,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,108,111,99,107,101,100,46,104,97,115,40,116,41,125,44,116,104,105,115,46,108,111,99,107,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,105,44,111,41,123,101,46,105,115,76,111,99,107,101,100,40,116,41,63,101,46,97,100,100,84,111,76,111,99,107,101,100,40,116,44,105,41,58,40,101,46,97,100,100,84,111,76,111,99,107,101,100,40,116,41,44,105,40,41,41,125,41,41,125,44,116,104,105,115,46,117,110,108,111,99,107,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,105,61,101,46,108,111,99,107,101,100,46,103,101,116,40,116,41,59,105,102,40,118,111,105,100,32,48,33,61,61,105,38,38,48,33,61,61,105,46,108,101,110,103,116,104,41,123,118,97,114,32,111,61,105,46,112,111,112,40,41,59,101,46,108,111,99,107,101,100,46,115,101,116,40,116,44,105,41,44,118,111,105,100,32,48,33,61,61,111,38,38,115,101,116,84,105,109,101,111,117,116,40,111,44,48,41,125,101,108,115,101,32,101,46,108,111,99,107,101,100,46,100,101,108,101,116,101,40,116,41,125,125,114,101,116,117,114,110,32,101,46,103,101,116,73,110,115,116,97,110,99,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,46,105,110,115,116,97,110,99,101,38,38,40,101,46,105,110,115,116,97,110,99,101,61,110,101,119,32,101,41,44,101,46,105,110,115,116,97,110,99,101,125,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,46,103,101,116,73,110,115,116,97,110,99,101,40,41,125,125,41,41,59,105,40,110,41,59,118,97,114,32,97,61,105,40,111,40,40,102,117,110,99,116,105,111,110,40,101,44,105,41,123,118,97,114,32,111,61,116,38,38,116,46,95,95,97,119,97,105,116,101,114,124,124,102,117,110,99,116,105,111,110,40,101,44,116,44,105,44,111,41,123,114,101,116,117,114,110,32,110,101,119,40,105,124,124,40,105,61,80,114,111,109,105,115,101,41,41,40,40,102,117,110,99,116,105,111,110,40,110,44,97,41,123,102,117,110,99,116,105,111,110,32,115,40,101,41,123,116,114,121,123,99,40,111,46,110,101,120,116,40,101,41,41,125,99,97,116,99,104,40,101,41,123,97,40,101,41,125,125,102,117,110,99,116,105,111,110,32,114,40,101,41,123,116,114,121,123,99,40,111,46,116,104,114,111,119,40,101,41,41,125,99,97,116,99,104,40,101,41,123,97,40,101,41,125,125,102,117,110,99,116,105,111,110,32,99,40,101,41,123,101,46,100,111,110,101,63,110,40,101,46,118,97,108,117,101,41,58,110,101,119,32,105,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,40,101,46,118,97,108,117,101,41,125,41,41,46,116,104,101,110,40,115,44,114,41,125,99,40,40,111,61,111,46,97,112,112,108,121,40,101,44,116,124,124,91,93,41,41,46,110,101,120,116,40,41,41,125,41,41,125,44,97,61,116,38,38,116,46,95,95,103,101,110,101,114,97,116,111,114,124,124,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,105,44,111,44,110,44,97,44,115,61,123,108,97,98,101,108,58,48,44,115,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,49,38,110,91,48,93,41,116,104,114,111,119,32,110,91,49,93,59,114,101,116,117,114,110,32,110,91,49,93,125,44,116,114,121,115,58,91,93,44,111,112,115,58,91,93,125,59,114,101,116,117,114,110,32,97,61,123,110,101,120,116,58,114,40,48,41,44,116,104,114,111,119,58,114,40,49,41,44,114,101,116,117,114,110,58,114,40,50,41,125,44,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,40,97,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,41,44,97,59,102,117,110,99,116,105,111,110,32,114,40,97,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,102,117,110,99,116,105,111,110,40,97,41,123,105,102,40,105,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,71,101,110,101,114,97,116,111,114,32,105,115,32,97,108,114,101,97,100,121,32,101,120,101,99,117,116,105,110,103,46,92,34,41,59,102,111,114,40,59,115,59,41,116,114,121,123,105,102,40,105,61,49,44,111,38,38,40,110,61,50,38,97,91,48,93,63,111,46,114,101,116,117,114,110,58,97,91,48,93,63,111,46,116,104,114,111,119,124,124,40,40,110,61,111,46,114,101,116,117,114,110,41,38,38,110,46,99,97,108,108,40,111,41,44,48,41,58,111,46,110,101,120,116,41,38,38,33,40,110,61,110,46,99,97,108,108,40,111,44,97,91,49,93,41,41,46,100,111,110,101,41,114,101,116,117,114,110,32,110,59,115,119,105,116,99,104,40,111,61,48,44,110,38,38,40,97,61,91,50,38,97,91,48,93,44,110,46,118,97,108,117,101,93,41,44,97,91,48,93,41,123,99,97,115,101,32,48,58,99,97,115,101,32,49,58,110,61,97,59,98,114,101,97,107,59,99,97,115,101,32,52,58,114,101,116,117,114,110,32,115,46,108,97,98,101,108,43,43,44,123,118,97,108,117,101,58,97,91,49,93,44,100,111,110,101,58,33,49,125,59,99,97,115,101,32,53,58,115,46,108,97,98,101,108,43,43,44,111,61,97,91,49,93,44,97,61,91,48,93,59,99,111,110,116,105,110,117,101,59,99,97,115,101,32,55,58,97,61,115,46,111,112,115,46,112,111,112,40,41,44,115,46,116,114,121,115,46,112,111,112,40,41,59,99,111,110,116,105,110,117,101,59,100,101,102,97,117,108,116,58,105,102,40,33,40,110,61,115,46,116,114,121,115,44,40,110,61,110,46,108,101,110,103,116,104,62,48,38,38,110,91,110,46,108,101,110,103,116,104,45,49,93,41,124,124,54,33,61,61,97,91,48,93,38,38,50,33,61,61,97,91,48,93,41,41,123,115,61,48,59,99,111,110,116,105,110,117,101,125,105,102,40,51,61,61,61,97,91,48,93,38,38,40,33,110,124,124,97,91,49,93,62,110,91,48,93,38,38,97,91,49,93,60,110,91,51,93,41,41,123,115,46,108,97,98,101,108,61,97,91,49,93,59,98,114,101,97,107,125,105,102,40,54,61,61,61,97,91,48,93,38,38,115,46,108,97,98,101,108,60,110,91,49,93,41,123,115,46,108,97,98,101,108,61,110,91,49,93,44,110,61,97,59,98,114,101,97,107,125,105,102,40,110,38,38,115,46,108,97,98,101,108,60,110,91,50,93,41,123,115,46,108,97,98,101,108,61,110,91,50,93,44,115,46,111,112,115,46,112,117,115,104,40,97,41,59,98,114,101,97,107,125,110,91,50,93,38,38,115,46,111,112,115,46,112,111,112,40,41,44,115,46,116,114,121,115,46,112,111,112,40,41,59,99,111,110,116,105,110,117,101,125,97,61,116,46,99,97,108,108,40,101,44,115,41,125,99,97,116,99,104,40,101,41,123,97,61,91,54,44,101,93,44,111,61,48,125,102,105,110,97,108,108,121,123,105,61,110,61,48,125,105,102,40,53,38,97,91,48,93,41,116,104,114,111,119,32,97,91,49,93,59,114,101,116,117,114,110,123,118,97,108,117,101,58,97,91,48,93,63,97,91,49,93,58,118,111,105,100,32,48,44,100,111,110,101,58,33,48,125,125,40,91,97,44,114,93,41,125,125,125,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,105,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,115,61,92,34,98,114,111,119,115,101,114,45,116,97,98,115,45,108,111,99,107,45,107,101,121,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,115,101,116,84,105,109,101,111,117,116,40,116,44,101,41,125,41,41,125,102,117,110,99,116,105,111,110,32,99,40,101,41,123,102,111,114,40,118,97,114,32,116,61,92,34,48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,84,90,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,92,34,44,105,61,92,34,92,34,44,111,61,48,59,111,60,101,59,111,43,43,41,123,105,43,61,116,91,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,114,97,110,100,111,109,40,41,42,116,46,108,101,110,103,116,104,41,93,125,114,101,116,117,114,110,32,105,125,118,97,114,32,100,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,116,104,105,115,46,97,99,113,117,105,114,101,100,73,97,116,83,101,116,61,110,101,119,32,83,101,116,44,116,104,105,115,46,105,100,61,68,97,116,101,46,110,111,119,40,41,46,116,111,83,116,114,105,110,103,40,41,43,99,40,49,53,41,44,116,104,105,115,46,97,99,113,117,105,114,101,76,111,99,107,61,116,104,105,115,46,97,99,113,117,105,114,101,76,111,99,107,46,98,105,110,100,40,116,104,105,115,41,44,116,104,105,115,46,114,101,108,101,97,115,101,76,111,99,107,61,116,104,105,115,46,114,101,108,101,97,115,101,76,111,99,107,46,98,105,110,100,40,116,104,105,115,41,44,116,104,105,115,46,114,101,108,101,97,115,101,76,111,99,107,95,95,112,114,105,118,97,116,101,95,95,61,116,104,105,115,46,114,101,108,101,97,115,101,76,111,99,107,95,95,112,114,105,118,97,116,101,95,95,46,98,105,110,100,40,116,104,105,115,41,44,116,104,105,115,46,119,97,105,116,70,111,114,83,111,109,101,116,104,105,110,103,84,111,67,104,97,110,103,101,61,116,104,105,115,46,119,97,105,116,70,111,114,83,111,109,101,116,104,105,110,103,84,111,67,104,97,110,103,101,46,98,105,110,100,40,116,104,105,115,41,44,116,104,105,115,46,114,101,102,114,101,115,104,76,111,99,107,87,104,105,108,101,65,99,113,117,105,114,101,100,61,116,104,105,115,46,114,101,102,114,101,115,104,76,111,99,107,87,104,105,108,101,65,99,113,117,105,114,101,100,46,98,105,110,100,40,116,104,105,115,41,44,118,111,105,100,32,48,61,61,61,101,46,119,97,105,116,101,114,115,38,38,40,101,46,119,97,105,116,101,114,115,61,91,93,41,125,114,101,116,117,114,110,32,101,46,112,114,111,116,111,116,121,112,101,46,97,99,113,117,105,114,101,76,111,99,107,61,102,117,110,99,116,105,111,110,40,116,44,105,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,105,38,38,40,105,61,53,101,51,41,44,111,40,116,104,105,115,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,44,110,44,100,44,117,44,108,44,104,59,114,101,116,117,114,110,32,97,40,116,104,105,115,44,40,102,117,110,99,116,105,111,110,40,97,41,123,115,119,105,116,99,104,40,97,46,108,97,98,101,108,41,123,99,97,115,101,32,48,58,111,61,68,97,116,101,46,110,111,119,40,41,43,99,40,52,41,44,110,61,68,97,116,101,46,110,111,119,40,41,43,105,44,100,61,115,43,92,34,45,92,34,43,116,44,117,61,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,44,97,46,108,97,98,101,108,61,49,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,68,97,116,101,46,110,111,119,40,41,60,110,63,91,52,44,114,40,51,48,41,93,58,91,51,44,56,93,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,97,46,115,101,110,116,40,41,44,110,117,108,108,33,61,61,117,46,103,101,116,73,116,101,109,40,100,41,63,91,51,44,53,93,58,40,108,61,116,104,105,115,46,105,100,43,92,34,45,92,34,43,116,43,92,34,45,92,34,43,111,44,91,52,44,114,40,77,97,116,104,46,102,108,111,111,114,40,50,53,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,41,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,97,46,115,101,110,116,40,41,44,117,46,115,101,116,73,116,101,109,40,100,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,123,105,100,58,116,104,105,115,46,105,100,44,105,97,116,58,111,44,116,105,109,101,111,117,116,75,101,121,58,108,44,116,105,109,101,65,99,113,117,105,114,101,100,58,68,97,116,101,46,110,111,119,40,41,44,116,105,109,101,82,101,102,114,101,115,104,101,100,58,68,97,116,101,46,110,111,119,40,41,125,41,41,44,91,52,44,114,40,51,48,41,93,59,99,97,115,101,32,52,58,114,101,116,117,114,110,32,97,46,115,101,110,116,40,41,44,110,117,108,108,33,61,61,40,104,61,117,46,103,101,116,73,116,101,109,40,100,41,41,38,38,40,104,61,74,83,79,78,46,112,97,114,115,101,40,104,41,41,46,105,100,61,61,61,116,104,105,115,46,105,100,38,38,104,46,105,97,116,61,61,61,111,63,40,116,104,105,115,46,97,99,113,117,105,114,101,100,73,97,116,83,101,116,46,97,100,100,40,111,41,44,116,104,105,115,46,114,101,102,114,101,115,104,76,111,99,107,87,104,105,108,101,65,99,113,117,105,114,101,100,40,100,44,111,41,44,91,50,44,33,48,93,41,58,91,51,44,55,93,59,99,97,115,101,32,53,58,114,101,116,117,114,110,32,101,46,108,111,99,107,67,111,114,114,101,99,116,111,114,40,41,44,91,52,44,116,104,105,115,46,119,97,105,116,70,111,114,83,111,109,101,116,104,105,110,103,84,111,67,104,97,110,103,101,40,110,41,93,59,99,97,115,101,32,54,58,97,46,115,101,110,116,40,41,44,97,46,108,97,98,101,108,61,55,59,99,97,115,101,32,55,58,114,101,116,117,114,110,32,111,61,68,97,116,101,46,110,111,119,40,41,43,99,40,52,41,44,91,51,44,49,93,59,99,97,115,101,32,56,58,114,101,116,117,114,110,91,50,44,33,49,93,125,125,41,41,125,41,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,114,101,102,114,101,115,104,76,111,99,107,87,104,105,108,101,65,99,113,117,105,114,101,100,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,111,40,116,104,105,115,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,116,104,105,115,59,114,101,116,117,114,110,32,97,40,116,104,105,115,44,40,102,117,110,99,116,105,111,110,40,115,41,123,114,101,116,117,114,110,32,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,105,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,44,111,59,114,101,116,117,114,110,32,97,40,116,104,105,115,44,40,102,117,110,99,116,105,111,110,40,97,41,123,115,119,105,116,99,104,40,97,46,108,97,98,101,108,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,91,52,44,110,46,100,101,102,97,117,108,116,40,41,46,108,111,99,107,40,116,41,93,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,97,46,115,101,110,116,40,41,44,116,104,105,115,46,97,99,113,117,105,114,101,100,73,97,116,83,101,116,46,104,97,115,40,116,41,63,40,105,61,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,44,110,117,108,108,61,61,61,40,111,61,105,46,103,101,116,73,116,101,109,40,101,41,41,63,40,110,46,100,101,102,97,117,108,116,40,41,46,117,110,108,111,99,107,40,116,41,44,91,50,93,41,58,40,40,111,61,74,83,79,78,46,112,97,114,115,101,40,111,41,41,46,116,105,109,101,82,101,102,114,101,115,104,101,100,61,68,97,116,101,46,110,111,119,40,41,44,105,46,115,101,116,73,116,101,109,40,101,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,111,41,41,44,110,46,100,101,102,97,117,108,116,40,41,46,117,110,108,111,99,107,40,116,41,44,116,104,105,115,46,114,101,102,114,101,115,104,76,111,99,107,87,104,105,108,101,65,99,113,117,105,114,101,100,40,101,44,116,41,44,91,50,93,41,41,58,40,110,46,100,101,102,97,117,108,116,40,41,46,117,110,108,111,99,107,40,116,41,44,91,50,93,41,125,125,41,41,125,41,41,125,41,44,49,101,51,41,44,91,50,93,125,41,41,125,41,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,119,97,105,116,70,111,114,83,111,109,101,116,104,105,110,103,84,111,67,104,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,40,116,104,105,115,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,40,116,104,105,115,44,40,102,117,110,99,116,105,111,110,40,105,41,123,115,119,105,116,99,104,40,105,46,108,97,98,101,108,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,91,52,44,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,111,61,33,49,44,110,61,68,97,116,101,46,110,111,119,40,41,44,97,61,33,49,59,102,117,110,99,116,105,111,110,32,115,40,41,123,105,102,40,97,124,124,40,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,115,116,111,114,97,103,101,92,34,44,115,41,44,101,46,114,101,109,111,118,101,70,114,111,109,87,97,105,116,105,110,103,40,115,41,44,99,108,101,97,114,84,105,109,101,111,117,116,40,114,41,44,97,61,33,48,41,44,33,111,41,123,111,61,33,48,59,118,97,114,32,116,61,53,48,45,40,68,97,116,101,46,110,111,119,40,41,45,110,41,59,116,62,48,63,115,101,116,84,105,109,101,111,117,116,40,105,44,116,41,58,105,40,41,125,125,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,115,116,111,114,97,103,101,92,34,44,115,41,44,101,46,97,100,100,84,111,87,97,105,116,105,110,103,40,115,41,59,118,97,114,32,114,61,115,101,116,84,105,109,101,111,117,116,40,115,44,77,97,116,104,46,109,97,120,40,48,44,116,45,68,97,116,101,46,110,111,119,40,41,41,41,125,41,41,93,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,105,46,115,101,110,116,40,41,44,91,50,93,125,125,41,41,125,41,41,125,44,101,46,97,100,100,84,111,87,97,105,116,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,114,101,109,111,118,101,70,114,111,109,87,97,105,116,105,110,103,40,116,41,44,118,111,105,100,32,48,33,61,61,101,46,119,97,105,116,101,114,115,38,38,101,46,119,97,105,116,101,114,115,46,112,117,115,104,40,116,41,125,44,101,46,114,101,109,111,118,101,70,114,111,109,87,97,105,116,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,118,111,105,100,32,48,33,61,61,101,46,119,97,105,116,101,114,115,38,38,40,101,46,119,97,105,116,101,114,115,61,101,46,119,97,105,116,101,114,115,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,33,61,61,116,125,41,41,41,125,44,101,46,110,111,116,105,102,121,87,97,105,116,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,111,105,100,32,48,33,61,61,101,46,119,97,105,116,101,114,115,38,38,101,46,119,97,105,116,101,114,115,46,115,108,105,99,101,40,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,40,41,125,41,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,114,101,108,101,97,115,101,76,111,99,107,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,111,40,116,104,105,115,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,40,116,104,105,115,44,40,102,117,110,99,116,105,111,110,40,116,41,123,115,119,105,116,99,104,40,116,46,108,97,98,101,108,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,91,52,44,116,104,105,115,46,114,101,108,101,97,115,101,76,111,99,107,95,95,112,114,105,118,97,116,101,95,95,40,101,41,93,59,99,97,115,101,32,49,58,114,101,116,117,114,110,91,50,44,116,46,115,101,110,116,40,41,93,125,125,41,41,125,41,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,114,101,108,101,97,115,101,76,111,99,107,95,95,112,114,105,118,97,116,101,95,95,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,40,116,104,105,115,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,44,111,44,114,59,114,101,116,117,114,110,32,97,40,116,104,105,115,44,40,102,117,110,99,116,105,111,110,40,97,41,123,115,119,105,116,99,104,40,97,46,108,97,98,101,108,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,32,105,61,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,44,111,61,115,43,92,34,45,92,34,43,116,44,110,117,108,108,61,61,61,40,114,61,105,46,103,101,116,73,116,101,109,40,111,41,41,63,91,50,93,58,40,114,61,74,83,79,78,46,112,97,114,115,101,40,114,41,41,46,105,100,33,61,61,116,104,105,115,46,105,100,63,91,51,44,50,93,58,91,52,44,110,46,100,101,102,97,117,108,116,40,41,46,108,111,99,107,40,114,46,105,97,116,41,93,59,99,97,115,101,32,49,58,97,46,115,101,110,116,40,41,44,116,104,105,115,46,97,99,113,117,105,114,101,100,73,97,116,83,101,116,46,100,101,108,101,116,101,40,114,46,105,97,116,41,44,105,46,114,101,109,111,118,101,73,116,101,109,40,111,41,44,110,46,100,101,102,97,117,108,116,40,41,46,117,110,108,111,99,107,40,114,46,105,97,116,41,44,101,46,110,111,116,105,102,121,87,97,105,116,101,114,115,40,41,44,97,46,108,97,98,101,108,61,50,59,99,97,115,101,32,50,58,114,101,116,117,114,110,91,50,93,125,125,41,41,125,41,41,125,44,101,46,108,111,99,107,67,111,114,114,101,99,116,111,114,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,68,97,116,101,46,110,111,119,40,41,45,53,101,51,44,105,61,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,44,111,61,79,98,106,101,99,116,46,107,101,121,115,40,105,41,44,110,61,33,49,44,97,61,48,59,97,60,111,46,108,101,110,103,116,104,59,97,43,43,41,123,118,97,114,32,114,61,111,91,97,93,59,105,102,40,114,46,105,110,99,108,117,100,101,115,40,115,41,41,123,118,97,114,32,99,61,105,46,103,101,116,73,116,101,109,40,114,41,59,110,117,108,108,33,61,61,99,38,38,40,118,111,105,100,32,48,61,61,61,40,99,61,74,83,79,78,46,112,97,114,115,101,40,99,41,41,46,116,105,109,101,82,101,102,114,101,115,104,101,100,38,38,99,46,116,105,109,101,65,99,113,117,105,114,101,100,60,116,124,124,118,111,105,100,32,48,33,61,61,99,46,116,105,109,101,82,101,102,114,101,115,104,101,100,38,38,99,46,116,105,109,101,82,101,102,114,101,115,104,101,100,60,116,41,38,38,40,105,46,114,101,109,111,118,101,73,116,101,109,40,114,41,44,110,61,33,48,41,125,125,110,38,38,101,46,110,111,116,105,102,121,87,97,105,116,101,114,115,40,41,125,44,101,46,119,97,105,116,101,114,115,61,118,111,105,100,32,48,44,101,125,40,41,59,105,46,100,101,102,97,117,108,116,61,100,125,41,41,41,59,99,111,110,115,116,32,115,61,123,116,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,58,54,48,125,44,114,61,123,110,97,109,101,58,92,34,97,117,116,104,48,45,115,112,97,45,106,115,92,34,44,118,101,114,115,105,111,110,58,92,34,50,46,48,46,50,92,34,125,44,99,61,40,41,61,62,68,97,116,101,46,110,111,119,40,41,59,99,108,97,115,115,32,100,32,101,120,116,101,110,100,115,32,69,114,114,111,114,123,99,111,110,115,116,114,117,99,116,111,114,40,101,44,116,41,123,115,117,112,101,114,40,116,41,44,116,104,105,115,46,101,114,114,111,114,61,101,44,116,104,105,115,46,101,114,114,111,114,95,100,101,115,99,114,105,112,116,105,111,110,61,116,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,44,100,46,112,114,111,116,111,116,121,112,101,41,125,115,116,97,116,105,99,32,102,114,111,109,80,97,121,108,111,97,100,40,123,101,114,114,111,114,58,101,44,101,114,114,111,114,95,100,101,115,99,114,105,112,116,105,111,110,58,116,125,41,123,114,101,116,117,114,110,32,110,101,119,32,100,40,101,44,116,41,125,125,99,108,97,115,115,32,117,32,101,120,116,101,110,100,115,32,100,123,99,111,110,115,116,114,117,99,116,111,114,40,101,44,116,44,105,44,111,61,110,117,108,108,41,123,115,117,112,101,114,40,101,44,116,41,44,116,104,105,115,46,115,116,97,116,101,61,105,44,116,104,105,115,46,97,112,112,83,116,97,116,101,61,111,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,44,117,46,112,114,111,116,111,116,121,112,101,41,125,125,99,108,97,115,115,32,108,32,101,120,116,101,110,100,115,32,100,123,99,111,110,115,116,114,117,99,116,111,114,40,41,123,115,117,112,101,114,40,92,34,116,105,109,101,111,117,116,92,34,44,92,34,84,105,109,101,111,117,116,92,34,41,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,44,108,46,112,114,111,116,111,116,121,112,101,41,125,125,99,108,97,115,115,32,104,32,101,120,116,101,110,100,115,32,108,123,99,111,110,115,116,114,117,99,116,111,114,40,101,41,123,115,117,112,101,114,40,41,44,116,104,105,115,46,112,111,112,117,112,61,101,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,44,104,46,112,114,111,116,111,116,121,112,101,41,125,125,99,108,97,115,115,32,112,32,101,120,116,101,110,100,115,32,100,123,99,111,110,115,116,114,117,99,116,111,114,40,101,41,123,115,117,112,101,114,40,92,34,99,97,110,99,101,108,108,101,100,92,34,44,92,34,80,111,112,117,112,32,99,108,111,115,101,100,92,34,41,44,116,104,105,115,46,112,111,112,117,112,61,101,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,44,112,46,112,114,111,116,111,116,121,112,101,41,125,125,99,108,97,115,115,32,109,32,101,120,116,101,110,100,115,32,100,123,99,111,110,115,116,114,117,99,116,111,114,40,101,44,116,44,105,41,123,115,117,112,101,114,40,101,44,116,41,44,116,104,105,115,46,109,102,97,95,116,111,107,101,110,61,105,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,44,109,46,112,114,111,116,111,116,121,112,101,41,125,125,99,108,97,115,115,32,102,32,101,120,116,101,110,100,115,32,100,123,99,111,110,115,116,114,117,99,116,111,114,40,101,44,116,41,123,115,117,112,101,114,40,92,34,109,105,115,115,105,110,103,95,114,101,102,114,101,115,104,95,116,111,107,101,110,92,34,44,96,77,105,115,115,105,110,103,32,82,101,102,114,101,115,104,32,84,111,107,101,110,32,40,97,117,100,105,101,110,99,101,58,32,39,36,123,103,40,101,44,91,92,34,100,101,102,97,117,108,116,92,34,93,41,125,39,44,32,115,99,111,112,101,58,32,39,36,123,103,40,116,41,125,39,41,96,41,44,116,104,105,115,46,97,117,100,105,101,110,99,101,61,101,44,116,104,105,115,46,115,99,111,112,101,61,116,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,44,102,46,112,114,111,116,111,116,121,112,101,41,125,125,102,117,110,99,116,105,111,110,32,103,40,101,44,116,61,91,93,41,123,114,101,116,117,114,110,32,101,38,38,33,116,46,105,110,99,108,117,100,101,115,40,101,41,63,101,58,92,34,92,34,125,99,111,110,115,116,32,119,61,40,41,61,62,119,105,110,100,111,119,46,99,114,121,112,116,111,44,121,61,40,41,61,62,123,99,111,110,115,116,32,101,61,92,34,48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,45,95,126,46,92,34,59,108,101,116,32,116,61,92,34,92,34,59,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,119,40,41,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,40,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,52,51,41,41,41,46,102,111,114,69,97,99,104,40,40,105,61,62,116,43,61,101,91,105,37,101,46,108,101,110,103,116,104,93,41,41,44,116,125,44,107,61,101,61,62,98,116,111,97,40,101,41,44,98,61,116,61,62,123,118,97,114,123,99,108,105,101,110,116,73,100,58,105,125,61,116,44,111,61,101,40,116,44,91,92,34,99,108,105,101,110,116,73,100,92,34,93,41,59,114,101,116,117,114,110,32,110,101,119,32,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,40,40,101,61,62,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,105,108,116,101,114,40,40,116,61,62,118,111,105,100,32,48,33,61,61,101,91,116,93,41,41,46,114,101,100,117,99,101,40,40,40,116,44,105,41,61,62,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,41,44,123,91,105,93,58,101,91,105,93,125,41,41,44,123,125,41,41,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,99,108,105,101,110,116,95,105,100,58,105,125,44,111,41,41,41,46,116,111,83,116,114,105,110,103,40,41,125,44,118,61,101,61,62,40,101,61,62,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,97,116,111,98,40,101,41,46,115,112,108,105,116,40,92,34,92,34,41,46,109,97,112,40,40,101,61,62,92,34,37,92,34,43,40,92,34,48,48,92,34,43,101,46,99,104,97,114,67,111,100,101,65,116,40,48,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,46,115,108,105,99,101,40,45,50,41,41,41,46,106,111,105,110,40,92,34,92,34,41,41,41,40,101,46,114,101,112,108,97,99,101,40,47,95,47,103,44,92,34,47,92,34,41,46,114,101,112,108,97,99,101,40,47,45,47,103,44,92,34,43,92,34,41,41,44,95,61,97,115,121,110,99,40,101,44,116,41,61,62,123,99,111,110,115,116,32,105,61,97,119,97,105,116,32,102,101,116,99,104,40,101,44,116,41,59,114,101,116,117,114,110,123,111,107,58,105,46,111,107,44,106,115,111,110,58,97,119,97,105,116,32,105,46,106,115,111,110,40,41,125,125,44,73,61,97,115,121,110,99,40,101,44,116,44,105,41,61,62,123,99,111,110,115,116,32,111,61,110,101,119,32,65,98,111,114,116,67,111,110,116,114,111,108,108,101,114,59,108,101,116,32,110,59,114,101,116,117,114,110,32,116,46,115,105,103,110,97,108,61,111,46,115,105,103,110,97,108,44,80,114,111,109,105,115,101,46,114,97,99,101,40,91,95,40,101,44,116,41,44,110,101,119,32,80,114,111,109,105,115,101,40,40,40,101,44,116,41,61,62,123,110,61,115,101,116,84,105,109,101,111,117,116,40,40,40,41,61,62,123,111,46,97,98,111,114,116,40,41,44,116,40,110,101,119,32,69,114,114,111,114,40,92,34,84,105,109,101,111,117,116,32,119,104,101,110,32,101,120,101,99,117,116,105,110,103,32,39,102,101,116,99,104,39,92,34,41,41,125,41,44,105,41,125,41,41,93,41,46,102,105,110,97,108,108,121,40,40,40,41,61,62,123,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,125,41,41,125,44,83,61,97,115,121,110,99,40,101,44,116,44,105,44,111,44,110,44,97,44,115,41,61,62,123,114,101,116,117,114,110,32,114,61,123,97,117,116,104,58,123,97,117,100,105,101,110,99,101,58,116,44,115,99,111,112,101,58,105,125,44,116,105,109,101,111,117,116,58,110,44,102,101,116,99,104,85,114,108,58,101,44,102,101,116,99,104,79,112,116,105,111,110,115,58,111,44,117,115,101,70,111,114,109,68,97,116,97,58,115,125,44,99,61,97,44,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,99,111,110,115,116,32,105,61,110,101,119,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,59,105,46,112,111,114,116,49,46,111,110,109,101,115,115,97,103,101,61,102,117,110,99,116,105,111,110,40,111,41,123,111,46,100,97,116,97,46,101,114,114,111,114,63,116,40,110,101,119,32,69,114,114,111,114,40,111,46,100,97,116,97,46,101,114,114,111,114,41,41,58,101,40,111,46,100,97,116,97,41,44,105,46,112,111,114,116,49,46,99,108,111,115,101,40,41,125,44,99,46,112,111,115,116,77,101,115,115,97,103,101,40,114,44,91,105,46,112,111,114,116,50,93,41,125,41,41,59,118,97,114,32,114,44,99,125,44,84,61,97,115,121,110,99,40,101,44,116,44,105,44,111,44,110,44,97,44,115,61,49,101,52,41,61,62,110,63,83,40,101,44,116,44,105,44,111,44,115,44,110,44,97,41,58,73,40,101,44,111,44,115,41,59,97,115,121,110,99,32,102,117,110,99,116,105,111,110,32,79,40,116,44,105,41,123,118,97,114,123,98,97,115,101,85,114,108,58,111,44,116,105,109,101,111,117,116,58,110,44,97,117,100,105,101,110,99,101,58,97,44,115,99,111,112,101,58,115,44,97,117,116,104,48,67,108,105,101,110,116,58,99,44,117,115,101,70,111,114,109,68,97,116,97,58,117,125,61,116,44,108,61,101,40,116,44,91,92,34,98,97,115,101,85,114,108,92,34,44,92,34,116,105,109,101,111,117,116,92,34,44,92,34,97,117,100,105,101,110,99,101,92,34,44,92,34,115,99,111,112,101,92,34,44,92,34,97,117,116,104,48,67,108,105,101,110,116,92,34,44,92,34,117,115,101,70,111,114,109,68,97,116,97,92,34,93,41,59,99,111,110,115,116,32,104,61,117,63,98,40,108,41,58,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,108,41,59,114,101,116,117,114,110,32,97,119,97,105,116,32,97,115,121,110,99,32,102,117,110,99,116,105,111,110,40,116,44,105,44,111,44,110,44,97,44,115,44,114,41,123,108,101,116,32,99,44,117,61,110,117,108,108,59,102,111,114,40,108,101,116,32,101,61,48,59,101,60,51,59,101,43,43,41,116,114,121,123,99,61,97,119,97,105,116,32,84,40,116,44,111,44,110,44,97,44,115,44,114,44,105,41,44,117,61,110,117,108,108,59,98,114,101,97,107,125,99,97,116,99,104,40,101,41,123,117,61,101,125,105,102,40,117,41,116,104,114,111,119,32,117,59,99,111,110,115,116,32,108,61,99,46,106,115,111,110,44,123,101,114,114,111,114,58,104,44,101,114,114,111,114,95,100,101,115,99,114,105,112,116,105,111,110,58,112,125,61,108,44,102,61,101,40,108,44,91,92,34,101,114,114,111,114,92,34,44,92,34,101,114,114,111,114,95,100,101,115,99,114,105,112,116,105,111,110,92,34,93,41,44,123,111,107,58,103,125,61,99,59,105,102,40,33,103,41,123,99,111,110,115,116,32,101,61,112,124,124,96,72,84,84,80,32,101,114,114,111,114,46,32,85,110,97,98,108,101,32,116,111,32,102,101,116,99,104,32,36,123,116,125,96,59,105,102,40,92,34,109,102,97,95,114,101,113,117,105,114,101,100,92,34,61,61,61,104,41,116,104,114,111,119,32,110,101,119,32,109,40,104,44,101,44,102,46,109,102,97,95,116,111,107,101,110,41,59,116,104,114,111,119,32,110,101,119,32,100,40,104,124,124,92,34,114,101,113,117,101,115,116,95,101,114,114,111,114,92,34,44,101,41,125,114,101,116,117,114,110,32,102,125,40,96,36,123,111,125,47,111,97,117,116,104,47,116,111,107,101,110,96,44,110,44,97,124,124,92,34,100,101,102,97,117,108,116,92,34,44,115,44,123,109,101,116,104,111,100,58,92,34,80,79,83,84,92,34,44,98,111,100,121,58,104,44,104,101,97,100,101,114,115,58,123,92,34,67,111,110,116,101,110,116,45,84,121,112,101,92,34,58,117,63,92,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,92,34,58,92,34,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,92,34,44,92,34,65,117,116,104,48,45,67,108,105,101,110,116,92,34,58,98,116,111,97,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,99,124,124,114,41,41,125,125,44,105,44,117,41,125,99,111,110,115,116,32,106,61,40,46,46,46,101,41,61,62,123,114,101,116,117,114,110,40,116,61,101,46,102,105,108,116,101,114,40,66,111,111,108,101,97,110,41,46,106,111,105,110,40,92,34,32,92,34,41,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,92,92,115,43,47,41,44,65,114,114,97,121,46,102,114,111,109,40,110,101,119,32,83,101,116,40,116,41,41,41,46,106,111,105,110,40,92,34,32,92,34,41,59,118,97,114,32,116,125,59,99,108,97,115,115,32,67,123,99,111,110,115,116,114,117,99,116,111,114,40,101,44,116,61,92,34,64,64,97,117,116,104,48,115,112,97,106,115,64,64,92,34,44,105,41,123,116,104,105,115,46,112,114,101,102,105,120,61,116,44,116,104,105,115,46,115,117,102,102,105,120,61,105,44,116,104,105,115,46,99,108,105,101,110,116,73,100,61,101,46,99,108,105,101,110,116,73,100,44,116,104,105,115,46,115,99,111,112,101,61,101,46,115,99,111,112,101,44,116,104,105,115,46,97,117,100,105,101,110,99,101,61,101,46,97,117,100,105,101,110,99,101,125,116,111,75,101,121,40,41,123,114,101,116,117,114,110,91,116,104,105,115,46,112,114,101,102,105,120,44,116,104,105,115,46,99,108,105,101,110,116,73,100,44,116,104,105,115,46,97,117,100,105,101,110,99,101,44,116,104,105,115,46,115,99,111,112,101,44,116,104,105,115,46,115,117,102,102,105,120,93,46,102,105,108,116,101,114,40,66,111,111,108,101,97,110,41,46,106,111,105,110,40,92,34,58,58,92,34,41,125,115,116,97,116,105,99,32,102,114,111,109,75,101,121,40,101,41,123,99,111,110,115,116,91,116,44,105,44,111,44,110,93,61,101,46,115,112,108,105,116,40,92,34,58,58,92,34,41,59,114,101,116,117,114,110,32,110,101,119,32,67,40,123,99,108,105,101,110,116,73,100,58,105,44,115,99,111,112,101,58,110,44,97,117,100,105,101,110,99,101,58,111,125,44,116,41,125,115,116,97,116,105,99,32,102,114,111,109,67,97,99,104,101,69,110,116,114,121,40,101,41,123,99,111,110,115,116,123,115,99,111,112,101,58,116,44,97,117,100,105,101,110,99,101,58,105,44,99,108,105,101,110,116,95,105,100,58,111,125,61,101,59,114,101,116,117,114,110,32,110,101,119,32,67,40,123,115,99,111,112,101,58,116,44,97,117,100,105,101,110,99,101,58,105,44,99,108,105,101,110,116,73,100,58,111,125,41,125,125,99,108,97,115,115,32,120,123,115,101,116,40,101,44,116,41,123,108,111,99,97,108,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,101,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,41,41,125,103,101,116,40,101,41,123,99,111,110,115,116,32,116,61,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,101,41,59,105,102,40,116,41,116,114,121,123,114,101,116,117,114,110,32,74,83,79,78,46,112,97,114,115,101,40,116,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,125,125,114,101,109,111,118,101,40,101,41,123,108,111,99,97,108,83,116,111,114,97,103,101,46,114,101,109,111,118,101,73,116,101,109,40,101,41,125,97,108,108,75,101,121,115,40,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,41,46,102,105,108,116,101,114,40,40,101,61,62,101,46,115,116,97,114,116,115,87,105,116,104,40,92,34,64,64,97,117,116,104,48,115,112,97,106,115,64,64,92,34,41,41,41,125,125,99,108,97,115,115,32,122,123,99,111,110,115,116,114,117,99,116,111,114,40,41,123,116,104,105,115,46,101,110,99,108,111,115,101,100,67,97,99,104,101,61,102,117,110,99,116,105,111,110,40,41,123,108,101,116,32,101,61,123,125,59,114,101,116,117,114,110,123,115,101,116,40,116,44,105,41,123,101,91,116,93,61,105,125,44,103,101,116,40,116,41,123,99,111,110,115,116,32,105,61,101,91,116,93,59,105,102,40,105,41,114,101,116,117,114,110,32,105,125,44,114,101,109,111,118,101,40,116,41,123,100,101,108,101,116,101,32,101,91,116,93,125,44,97,108,108,75,101,121,115,58,40,41,61,62,79,98,106,101,99,116,46,107,101,121,115,40,101,41,125,125,40,41,125,125,99,108,97,115,115,32,80,123,99,111,110,115,116,114,117,99,116,111,114,40,101,44,116,44,105,41,123,116,104,105,115,46,99,97,99,104,101,61,101,44,116,104,105,115,46,107,101,121,77,97,110,105,102,101,115,116,61,116,44,116,104,105,115,46,110,111,119,80,114,111,118,105,100,101,114,61,105,124,124,99,125,97,115,121,110,99,32,115,101,116,73,100,84,111,107,101,110,40,101,44,116,44,105,41,123,118,97,114,32,111,59,99,111,110,115,116,32,110,61,116,104,105,115,46,103,101,116,73,100,84,111,107,101,110,67,97,99,104,101,75,101,121,40,101,41,59,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,115,101,116,40,110,44,123,105,100,95,116,111,107,101,110,58,116,44,100,101,99,111,100,101,100,84,111,107,101,110,58,105,125,41,44,97,119,97,105,116,40,110,117,108,108,61,61,61,40,111,61,116,104,105,115,46,107,101,121,77,97,110,105,102,101,115,116,41,124,124,118,111,105,100,32,48,61,61,61,111,63,118,111,105,100,32,48,58,111,46,97,100,100,40,110,41,41,125,97,115,121,110,99,32,103,101,116,73,100,84,111,107,101,110,40,101,41,123,99,111,110,115,116,32,116,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,103,101,116,40,116,104,105,115,46,103,101,116,73,100,84,111,107,101,110,67,97,99,104,101,75,101,121,40,101,46,99,108,105,101,110,116,73,100,41,41,59,105,102,40,33,116,38,38,101,46,115,99,111,112,101,38,38,101,46,97,117,100,105,101,110,99,101,41,123,99,111,110,115,116,32,116,61,97,119,97,105,116,32,116,104,105,115,46,103,101,116,40,101,41,59,105,102,40,33,116,41,114,101,116,117,114,110,59,105,102,40,33,116,46,105,100,95,116,111,107,101,110,124,124,33,116,46,100,101,99,111,100,101,100,84,111,107,101,110,41,114,101,116,117,114,110,59,114,101,116,117,114,110,123,105,100,95,116,111,107,101,110,58,116,46,105,100,95,116,111,107,101,110,44,100,101,99,111,100,101,100,84,111,107,101,110,58,116,46,100,101,99,111,100,101,100,84,111,107,101,110,125,125,105,102,40,116,41,114,101,116,117,114,110,123,105,100,95,116,111,107,101,110,58,116,46,105,100,95,116,111,107,101,110,44,100,101,99,111,100,101,100,84,111,107,101,110,58,116,46,100,101,99,111,100,101,100,84,111,107,101,110,125,125,97,115,121,110,99,32,103,101,116,40,101,44,116,61,48,41,123,118,97,114,32,105,59,108,101,116,32,111,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,103,101,116,40,101,46,116,111,75,101,121,40,41,41,59,105,102,40,33,111,41,123,99,111,110,115,116,32,116,61,97,119,97,105,116,32,116,104,105,115,46,103,101,116,67,97,99,104,101,75,101,121,115,40,41,59,105,102,40,33,116,41,114,101,116,117,114,110,59,99,111,110,115,116,32,105,61,116,104,105,115,46,109,97,116,99,104,69,120,105,115,116,105,110,103,67,97,99,104,101,75,101,121,40,101,44,116,41,59,105,38,38,40,111,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,103,101,116,40,105,41,41,125,105,102,40,33,111,41,114,101,116,117,114,110,59,99,111,110,115,116,32,110,61,97,119,97,105,116,32,116,104,105,115,46,110,111,119,80,114,111,118,105,100,101,114,40,41,44,97,61,77,97,116,104,46,102,108,111,111,114,40,110,47,49,101,51,41,59,114,101,116,117,114,110,32,111,46,101,120,112,105,114,101,115,65,116,45,116,60,97,63,111,46,98,111,100,121,46,114,101,102,114,101,115,104,95,116,111,107,101,110,63,40,111,46,98,111,100,121,61,123,114,101,102,114,101,115,104,95,116,111,107,101,110,58,111,46,98,111,100,121,46,114,101,102,114,101,115,104,95,116,111,107,101,110,125,44,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,115,101,116,40,101,46,116,111,75,101,121,40,41,44,111,41,44,111,46,98,111,100,121,41,58,40,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,114,101,109,111,118,101,40,101,46,116,111,75,101,121,40,41,41,44,118,111,105,100,32,97,119,97,105,116,40,110,117,108,108,61,61,61,40,105,61,116,104,105,115,46,107,101,121,77,97,110,105,102,101,115,116,41,124,124,118,111,105,100,32,48,61,61,61,105,63,118,111,105,100,32,48,58,105,46,114,101,109,111,118,101,40,101,46,116,111,75,101,121,40,41,41,41,41,58,111,46,98,111,100,121,125,97,115,121,110,99,32,115,101,116,40,101,41,123,118,97,114,32,116,59,99,111,110,115,116,32,105,61,110,101,119,32,67,40,123,99,108,105,101,110,116,73,100,58,101,46,99,108,105,101,110,116,95,105,100,44,115,99,111,112,101,58,101,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,101,46,97,117,100,105,101,110,99,101,125,41,44,111,61,97,119,97,105,116,32,116,104,105,115,46,119,114,97,112,67,97,99,104,101,69,110,116,114,121,40,101,41,59,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,115,101,116,40,105,46,116,111,75,101,121,40,41,44,111,41,44,97,119,97,105,116,40,110,117,108,108,61,61,61,40,116,61,116,104,105,115,46,107,101,121,77,97,110,105,102,101,115,116,41,124,124,118,111,105,100,32,48,61,61,61,116,63,118,111,105,100,32,48,58,116,46,97,100,100,40,105,46,116,111,75,101,121,40,41,41,41,125,97,115,121,110,99,32,99,108,101,97,114,40,101,41,123,118,97,114,32,116,59,99,111,110,115,116,32,105,61,97,119,97,105,116,32,116,104,105,115,46,103,101,116,67,97,99,104,101,75,101,121,115,40,41,59,105,38,38,40,97,119,97,105,116,32,105,46,102,105,108,116,101,114,40,40,116,61,62,33,101,124,124,116,46,105,110,99,108,117,100,101,115,40,101,41,41,41,46,114,101,100,117,99,101,40,40,97,115,121,110,99,40,101,44,116,41,61,62,123,97,119,97,105,116,32,101,44,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,114,101,109,111,118,101,40,116,41,125,41,44,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,41,44,97,119,97,105,116,40,110,117,108,108,61,61,61,40,116,61,116,104,105,115,46,107,101,121,77,97,110,105,102,101,115,116,41,124,124,118,111,105,100,32,48,61,61,61,116,63,118,111,105,100,32,48,58,116,46,99,108,101,97,114,40,41,41,41,125,97,115,121,110,99,32,119,114,97,112,67,97,99,104,101,69,110,116,114,121,40,101,41,123,99,111,110,115,116,32,116,61,97,119,97,105,116,32,116,104,105,115,46,110,111,119,80,114,111,118,105,100,101,114,40,41,59,114,101,116,117,114,110,123,98,111,100,121,58,101,44,101,120,112,105,114,101,115,65,116,58,77,97,116,104,46,102,108,111,111,114,40,116,47,49,101,51,41,43,101,46,101,120,112,105,114,101,115,95,105,110,125,125,97,115,121,110,99,32,103,101,116,67,97,99,104,101,75,101,121,115,40,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,116,104,105,115,46,107,101,121,77,97,110,105,102,101,115,116,63,110,117,108,108,61,61,61,40,101,61,97,119,97,105,116,32,116,104,105,115,46,107,101,121,77,97,110,105,102,101,115,116,46,103,101,116,40,41,41,124,124,118,111,105,100,32,48,61,61,61,101,63,118,111,105,100,32,48,58,101,46,107,101,121,115,58,116,104,105,115,46,99,97,99,104,101,46,97,108,108,75,101,121,115,63,116,104,105,115,46,99,97,99,104,101,46,97,108,108,75,101,121,115,40,41,58,118,111,105,100,32,48,125,103,101,116,73,100,84,111,107,101,110,67,97,99,104,101,75,101,121,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,67,40,123,99,108,105,101,110,116,73,100,58,101,125,44,92,34,64,64,97,117,116,104,48,115,112,97,106,115,64,64,92,34,44,92,34,64,64,117,115,101,114,64,64,92,34,41,46,116,111,75,101,121,40,41,125,109,97,116,99,104,69,120,105,115,116,105,110,103,67,97,99,104,101,75,101,121,40,101,44,116,41,123,114,101,116,117,114,110,32,116,46,102,105,108,116,101,114,40,40,116,61,62,123,118,97,114,32,105,59,99,111,110,115,116,32,111,61,67,46,102,114,111,109,75,101,121,40,116,41,44,110,61,110,101,119,32,83,101,116,40,111,46,115,99,111,112,101,38,38,111,46,115,99,111,112,101,46,115,112,108,105,116,40,92,34,32,92,34,41,41,44,97,61,40,110,117,108,108,61,61,61,40,105,61,101,46,115,99,111,112,101,41,124,124,118,111,105,100,32,48,61,61,61,105,63,118,111,105,100,32,48,58,105,46,115,112,108,105,116,40,92,34,32,92,34,41,41,124,124,91,93,44,115,61,111,46,115,99,111,112,101,38,38,97,46,114,101,100,117,99,101,40,40,40,101,44,116,41,61,62,101,38,38,110,46,104,97,115,40,116,41,41,44,33,48,41,59,114,101,116,117,114,110,92,34,64,64,97,117,116,104,48,115,112,97,106,115,64,64,92,34,61,61,61,111,46,112,114,101,102,105,120,38,38,111,46,99,108,105,101,110,116,73,100,61,61,61,101,46,99,108,105,101,110,116,73,100,38,38,111,46,97,117,100,105,101,110,99,101,61,61,61,101,46,97,117,100,105,101,110,99,101,38,38,115,125,41,41,91,48,93,125,125,99,108,97,115,115,32,90,123,99,111,110,115,116,114,117,99,116,111,114,40,101,44,116,41,123,116,104,105,115,46,115,116,111,114,97,103,101,61,101,44,116,104,105,115,46,99,108,105,101,110,116,73,100,61,116,44,116,104,105,115,46,115,116,111,114,97,103,101,75,101,121,61,96,97,48,46,115,112,97,106,115,46,116,120,115,46,36,123,116,104,105,115,46,99,108,105,101,110,116,73,100,125,96,44,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,61,116,104,105,115,46,115,116,111,114,97,103,101,46,103,101,116,40,116,104,105,115,46,115,116,111,114,97,103,101,75,101,121,41,125,99,114,101,97,116,101,40,101,41,123,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,61,101,44,116,104,105,115,46,115,116,111,114,97,103,101,46,115,97,118,101,40,116,104,105,115,46,115,116,111,114,97,103,101,75,101,121,44,101,44,123,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,58,49,125,41,125,103,101,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,125,114,101,109,111,118,101,40,41,123,100,101,108,101,116,101,32,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,44,116,104,105,115,46,115,116,111,114,97,103,101,46,114,101,109,111,118,101,40,116,104,105,115,46,115,116,111,114,97,103,101,75,101,121,41,125,125,99,111,110,115,116,32,75,61,101,61,62,92,34,110,117,109,98,101,114,92,34,61,61,116,121,112,101,111,102,32,101,44,76,61,91,92,34,105,115,115,92,34,44,92,34,97,117,100,92,34,44,92,34,101,120,112,92,34,44,92,34,110,98,102,92,34,44,92,34,105,97,116,92,34,44,92,34,106,116,105,92,34,44,92,34,97,122,112,92,34,44,92,34,110,111,110,99,101,92,34,44,92,34,97,117,116,104,95,116,105,109,101,92,34,44,92,34,97,116,95,104,97,115,104,92,34,44,92,34,99,95,104,97,115,104,92,34,44,92,34,97,99,114,92,34,44,92,34,97,109,114,92,34,44,92,34,115,117,98,95,106,119,107,92,34,44,92,34,99,110,102,92,34,44,92,34,115,105,112,95,102,114,111,109,95,116,97,103,92,34,44,92,34,115,105,112,95,100,97,116,101,92,34,44,92,34,115,105,112,95,99,97,108,108,105,100,92,34,44,92,34,115,105,112,95,99,115,101,113,95,110,117,109,92,34,44,92,34,115,105,112,95,118,105,97,95,98,114,97,110,99,104,92,34,44,92,34,111,114,105,103,92,34,44,92,34,100,101,115,116,92,34,44,92,34,109,107,121,92,34,44,92,34,101,118,101,110,116,115,92,34,44,92,34,116,111,101,92,34,44,92,34,116,120,110,92,34,44,92,34,114,112,104,92,34,44,92,34,115,105,100,92,34,44,92,34,118,111,116,92,34,44,92,34,118,116,109,92,34,93,44,69,61,101,61,62,123,105,102,40,33,101,46,105,100,95,116,111,107,101,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,73,68,32,116,111,107,101,110,32,105,115,32,114,101,113,117,105,114,101,100,32,98,117,116,32,109,105,115,115,105,110,103,92,34,41,59,99,111,110,115,116,32,116,61,40,101,61,62,123,99,111,110,115,116,32,116,61,101,46,115,112,108,105,116,40,92,34,46,92,34,41,44,91,105,44,111,44,110,93,61,116,59,105,102,40,51,33,61,61,116,46,108,101,110,103,116,104,124,124,33,105,124,124,33,111,124,124,33,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,73,68,32,116,111,107,101,110,32,99,111,117,108,100,32,110,111,116,32,98,101,32,100,101,99,111,100,101,100,92,34,41,59,99,111,110,115,116,32,97,61,74,83,79,78,46,112,97,114,115,101,40,118,40,111,41,41,44,115,61,123,95,95,114,97,119,58,101,125,44,114,61,123,125,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,97,41,46,102,111,114,69,97,99,104,40,40,101,61,62,123,115,91,101,93,61,97,91,101,93,44,76,46,105,110,99,108,117,100,101,115,40,101,41,124,124,40,114,91,101,93,61,97,91,101,93,41,125,41,41,44,123,101,110,99,111,100,101,100,58,123,104,101,97,100,101,114,58,105,44,112,97,121,108,111,97,100,58,111,44,115,105,103,110,97,116,117,114,101,58,110,125,44,104,101,97,100,101,114,58,74,83,79,78,46,112,97,114,115,101,40,118,40,105,41,41,44,99,108,97,105,109,115,58,115,44,117,115,101,114,58,114,125,125,41,40,101,46,105,100,95,116,111,107,101,110,41,59,105,102,40,33,116,46,99,108,97,105,109,115,46,105,115,115,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,73,115,115,117,101,114,32,40,105,115,115,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,92,34,41,59,105,102,40,116,46,99,108,97,105,109,115,46,105,115,115,33,61,61,101,46,105,115,115,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,73,115,115,117,101,114,32,40,105,115,115,41,32,99,108,97,105,109,32,109,105,115,109,97,116,99,104,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,59,32,101,120,112,101,99,116,101,100,32,92,34,36,123,101,46,105,115,115,125,92,34,44,32,102,111,117,110,100,32,92,34,36,123,116,46,99,108,97,105,109,115,46,105,115,115,125,92,34,96,41,59,105,102,40,33,116,46,117,115,101,114,46,115,117,98,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,83,117,98,106,101,99,116,32,40,115,117,98,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,92,34,41,59,105,102,40,92,34,82,83,50,53,54,92,34,33,61,61,116,46,104,101,97,100,101,114,46,97,108,103,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,83,105,103,110,97,116,117,114,101,32,97,108,103,111,114,105,116,104,109,32,111,102,32,92,34,36,123,116,46,104,101,97,100,101,114,46,97,108,103,125,92,34,32,105,115,32,110,111,116,32,115,117,112,112,111,114,116,101,100,46,32,69,120,112,101,99,116,101,100,32,116,104,101,32,73,68,32,116,111,107,101,110,32,116,111,32,98,101,32,115,105,103,110,101,100,32,119,105,116,104,32,92,34,82,83,50,53,54,92,34,46,96,41,59,105,102,40,33,116,46,99,108,97,105,109,115,46,97,117,100,124,124,92,34,115,116,114,105,110,103,92,34,33,61,116,121,112,101,111,102,32,116,46,99,108,97,105,109,115,46,97,117,100,38,38,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,46,99,108,97,105,109,115,46,97,117,100,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,65,117,100,105,101,110,99,101,32,40,97,117,100,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,111,114,32,97,114,114,97,121,32,111,102,32,115,116,114,105,110,103,115,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,92,34,41,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,46,99,108,97,105,109,115,46,97,117,100,41,41,123,105,102,40,33,116,46,99,108,97,105,109,115,46,97,117,100,46,105,110,99,108,117,100,101,115,40,101,46,97,117,100,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,65,117,100,105,101,110,99,101,32,40,97,117,100,41,32,99,108,97,105,109,32,109,105,115,109,97,116,99,104,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,59,32,101,120,112,101,99,116,101,100,32,92,34,36,123,101,46,97,117,100,125,92,34,32,98,117,116,32,119,97,115,32,110,111,116,32,111,110,101,32,111,102,32,92,34,36,123,116,46,99,108,97,105,109,115,46,97,117,100,46,106,111,105,110,40,92,34,44,32,92,34,41,125,92,34,96,41,59,105,102,40,116,46,99,108,97,105,109,115,46,97,117,100,46,108,101,110,103,116,104,62,49,41,123,105,102,40,33,116,46,99,108,97,105,109,115,46,97,122,112,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,65,117,116,104,111,114,105,122,101,100,32,80,97,114,116,121,32,40,97,122,112,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,32,119,104,101,110,32,65,117,100,105,101,110,99,101,32,40,97,117,100,41,32,99,108,97,105,109,32,104,97,115,32,109,117,108,116,105,112,108,101,32,118,97,108,117,101,115,92,34,41,59,105,102,40,116,46,99,108,97,105,109,115,46,97,122,112,33,61,61,101,46,97,117,100,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,65,117,116,104,111,114,105,122,101,100,32,80,97,114,116,121,32,40,97,122,112,41,32,99,108,97,105,109,32,109,105,115,109,97,116,99,104,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,59,32,101,120,112,101,99,116,101,100,32,92,34,36,123,101,46,97,117,100,125,92,34,44,32,102,111,117,110,100,32,92,34,36,123,116,46,99,108,97,105,109,115,46,97,122,112,125,92,34,96,41,125,125,101,108,115,101,32,105,102,40,116,46,99,108,97,105,109,115,46,97,117,100,33,61,61,101,46,97,117,100,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,65,117,100,105,101,110,99,101,32,40,97,117,100,41,32,99,108,97,105,109,32,109,105,115,109,97,116,99,104,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,59,32,101,120,112,101,99,116,101,100,32,92,34,36,123,101,46,97,117,100,125,92,34,32,98,117,116,32,102,111,117,110,100,32,92,34,36,123,116,46,99,108,97,105,109,115,46,97,117,100,125,92,34,96,41,59,105,102,40,101,46,110,111,110,99,101,41,123,105,102,40,33,116,46,99,108,97,105,109,115,46,110,111,110,99,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,78,111,110,99,101,32,40,110,111,110,99,101,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,92,34,41,59,105,102,40,116,46,99,108,97,105,109,115,46,110,111,110,99,101,33,61,61,101,46,110,111,110,99,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,78,111,110,99,101,32,40,110,111,110,99,101,41,32,99,108,97,105,109,32,109,105,115,109,97,116,99,104,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,59,32,101,120,112,101,99,116,101,100,32,92,34,36,123,101,46,110,111,110,99,101,125,92,34,44,32,102,111,117,110,100,32,92,34,36,123,116,46,99,108,97,105,109,115,46,110,111,110,99,101,125,92,34,96,41,125,105,102,40,101,46,109,97,120,95,97,103,101,38,38,33,75,40,116,46,99,108,97,105,109,115,46,97,117,116,104,95,116,105,109,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,65,117,116,104,101,110,116,105,99,97,116,105,111,110,32,84,105,109,101,32,40,97,117,116,104,95,116,105,109,101,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,110,117,109,98,101,114,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,32,119,104,101,110,32,77,97,120,32,65,103,101,32,40,109,97,120,95,97,103,101,41,32,105,115,32,115,112,101,99,105,102,105,101,100,92,34,41,59,105,102,40,110,117,108,108,61,61,116,46,99,108,97,105,109,115,46,101,120,112,124,124,33,75,40,116,46,99,108,97,105,109,115,46,101,120,112,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,69,120,112,105,114,97,116,105,111,110,32,84,105,109,101,32,40,101,120,112,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,110,117,109,98,101,114,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,92,34,41,59,105,102,40,33,75,40,116,46,99,108,97,105,109,115,46,105,97,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,73,115,115,117,101,100,32,65,116,32,40,105,97,116,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,110,117,109,98,101,114,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,92,34,41,59,99,111,110,115,116,32,105,61,101,46,108,101,101,119,97,121,124,124,54,48,44,111,61,110,101,119,32,68,97,116,101,40,101,46,110,111,119,124,124,68,97,116,101,46,110,111,119,40,41,41,44,110,61,110,101,119,32,68,97,116,101,40,48,41,59,105,102,40,110,46,115,101,116,85,84,67,83,101,99,111,110,100,115,40,116,46,99,108,97,105,109,115,46,101,120,112,43,105,41,44,111,62,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,69,120,112,105,114,97,116,105,111,110,32,84,105,109,101,32,40,101,120,112,41,32,99,108,97,105,109,32,101,114,114,111,114,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,59,32,99,117,114,114,101,110,116,32,116,105,109,101,32,40,36,123,111,125,41,32,105,115,32,97,102,116,101,114,32,101,120,112,105,114,97,116,105,111,110,32,116,105,109,101,32,40,36,123,110,125,41,96,41,59,105,102,40,110,117,108,108,33,61,116,46,99,108,97,105,109,115,46,110,98,102,38,38,75,40,116,46,99,108,97,105,109,115,46,110,98,102,41,41,123,99,111,110,115,116,32,101,61,110,101,119,32,68,97,116,101,40,48,41,59,105,102,40,101,46,115,101,116,85,84,67,83,101,99,111,110,100,115,40,116,46,99,108,97,105,109,115,46,110,98,102,45,105,41,44,111,60,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,78,111,116,32,66,101,102,111,114,101,32,116,105,109,101,32,40,110,98,102,41,32,99,108,97,105,109,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,32,105,110,100,105,99,97,116,101,115,32,116,104,97,116,32,116,104,105,115,32,116,111,107,101,110,32,99,97,110,39,116,32,98,101,32,117,115,101,100,32,106,117,115,116,32,121,101,116,46,32,67,117,114,114,101,110,116,32,116,105,109,101,32,40,36,123,111,125,41,32,105,115,32,98,101,102,111,114,101,32,36,123,101,125,96,41,125,105,102,40,110,117,108,108,33,61,116,46,99,108,97,105,109,115,46,97,117,116,104,95,116,105,109,101,38,38,75,40,116,46,99,108,97,105,109,115,46,97,117,116,104,95,116,105,109,101,41,41,123,99,111,110,115,116,32,110,61,110,101,119,32,68,97,116,101,40,48,41,59,105,102,40,110,46,115,101,116,85,84,67,83,101,99,111,110,100,115,40,112,97,114,115,101,73,110,116,40,116,46,99,108,97,105,109,115,46,97,117,116,104,95,116,105,109,101,41,43,101,46,109,97,120,95,97,103,101,43,105,41,44,111,62,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,65,117,116,104,101,110,116,105,99,97,116,105,111,110,32,84,105,109,101,32,40,97,117,116,104,95,116,105,109,101,41,32,99,108,97,105,109,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,32,105,110,100,105,99,97,116,101,115,32,116,104,97,116,32,116,111,111,32,109,117,99,104,32,116,105,109,101,32,104,97,115,32,112,97,115,115,101,100,32,115,105,110,99,101,32,116,104,101,32,108,97,115,116,32,101,110,100,45,117,115,101,114,32,97,117,116,104,101,110,116,105,99,97,116,105,111,110,46,32,67,117,114,114,101,110,116,32,116,105,109,101,32,40,36,123,111,125,41,32,105,115,32,97,102,116,101,114,32,108,97,115,116,32,97,117,116,104,32,97,116,32,36,123,110,125,96,41,125,105,102,40,101,46,111,114,103,97,110,105,122,97,116,105,111,110,73,100,41,123,105,102,40,33,116,46,99,108,97,105,109,115,46,111,114,103,95,105,100,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,79,114,103,97,110,105,122,97,116,105,111,110,32,73,68,32,40,111,114,103,95,105,100,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,92,34,41,59,105,102,40,101,46,111,114,103,97,110,105,122,97,116,105,111,110,73,100,33,61,61,116,46,99,108,97,105,109,115,46,111,114,103,95,105,100,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,79,114,103,97,110,105,122,97,116,105,111,110,32,73,68,32,40,111,114,103,95,105,100,41,32,99,108,97,105,109,32,109,105,115,109,97,116,99,104,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,59,32,101,120,112,101,99,116,101,100,32,92,34,36,123,101,46,111,114,103,97,110,105,122,97,116,105,111,110,73,100,125,92,34,44,32,102,111,117,110,100,32,92,34,36,123,116,46,99,108,97,105,109,115,46,111,114,103,95,105,100,125,92,34,96,41,125,114,101,116,117,114,110,32,116,125,59,118,97,114,32,85,61,111,40,40,102,117,110,99,116,105,111,110,40,101,44,105,41,123,118,97,114,32,111,61,116,38,38,116,46,95,95,97,115,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,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,44,105,61,49,44,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,60,111,59,105,43,43,41,102,111,114,40,118,97,114,32,110,32,105,110,32,116,61,97,114,103,117,109,101,110,116,115,91,105,93,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,116,44,110,41,38,38,40,101,91,110,93,61,116,91,110,93,41,59,114,101,116,117,114,110,32,101,125,44,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,59,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,92,34,92,34,59,118,97,114,32,105,61,92,34,59,32,92,34,43,101,59,114,101,116,117,114,110,33,48,61,61,61,116,63,105,58,105,43,92,34,61,92,34,43,116,125,102,117,110,99,116,105,111,110,32,97,40,101,44,116,44,105,41,123,114,101,116,117,114,110,32,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,101,41,46,114,101,112,108,97,99,101,40,47,37,40,50,51,124,50,52,124,50,54,124,50,66,124,53,69,124,54,48,124,55,67,41,47,103,44,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,41,46,114,101,112,108,97,99,101,40,47,92,92,40,47,103,44,92,34,37,50,56,92,34,41,46,114,101,112,108,97,99,101,40,47,92,92,41,47,103,44,92,34,37,50,57,92,34,41,43,92,34,61,92,34,43,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,116,41,46,114,101,112,108,97,99,101,40,47,37,40,50,51,124,50,52,124,50,54,124,50,66,124,51,65,124,51,67,124,51,69,124,51,68,124,50,70,124,51,70,124,52,48,124,53,66,124,53,68,124,53,69,124,54,48,124,55,66,124,55,68,124,55,67,41,47,103,44,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,41,43,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,92,34,110,117,109,98,101,114,92,34,61,61,116,121,112,101,111,102,32,101,46,101,120,112,105,114,101,115,41,123,118,97,114,32,116,61,110,101,119,32,68,97,116,101,59,116,46,115,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,43,56,54,52,101,53,42,101,46,101,120,112,105,114,101,115,41,44,101,46,101,120,112,105,114,101,115,61,116,125,114,101,116,117,114,110,32,110,40,92,34,69,120,112,105,114,101,115,92,34,44,101,46,101,120,112,105,114,101,115,63,101,46,101,120,112,105,114,101,115,46,116,111,85,84,67,83,116,114,105,110,103,40,41,58,92,34,92,34,41,43,110,40,92,34,68,111,109,97,105,110,92,34,44,101,46,100,111,109,97,105,110,41,43,110,40,92,34,80,97,116,104,92,34,44,101,46,112,97,116,104,41,43,110,40,92,34,83,101,99,117,114,101,92,34,44,101,46,115,101,99,117,114,101,41,43,110,40,92,34,83,97,109,101,83,105,116,101,92,34,44,101,46,115,97,109,101,83,105,116,101,41,125,40,105,41,125,102,117,110,99,116,105,111,110,32,115,40,101,41,123,102,111,114,40,118,97,114,32,116,61,123,125,44,105,61,101,63,101,46,115,112,108,105,116,40,92,34,59,32,92,34,41,58,91,93,44,111,61,47,40,37,91,92,92,100,65,45,70,93,123,50,125,41,43,47,103,105,44,110,61,48,59,110,60,105,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,97,61,105,91,110,93,46,115,112,108,105,116,40,92,34,61,92,34,41,44,115,61,97,46,115,108,105,99,101,40,49,41,46,106,111,105,110,40,92,34,61,92,34,41,59,39,92,34,39,61,61,61,115,46,99,104,97,114,65,116,40,48,41,38,38,40,115,61,115,46,115,108,105,99,101,40,49,44,45,49,41,41,59,116,114,121,123,116,91,97,91,48,93,46,114,101,112,108,97,99,101,40,111,44,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,41,93,61,115,46,114,101,112,108,97,99,101,40,111,44,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,41,125,99,97,116,99,104,40,101,41,123,125,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,114,40,41,123,114,101,116,117,114,110,32,115,40,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,41,125,102,117,110,99,116,105,111,110,32,99,40,101,44,116,44,105,41,123,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,61,97,40,101,44,116,44,111,40,123,112,97,116,104,58,92,34,47,92,34,125,44,105,41,41,125,105,46,95,95,101,115,77,111,100,117,108,101,61,33,48,44,105,46,101,110,99,111,100,101,61,97,44,105,46,112,97,114,115,101,61,115,44,105,46,103,101,116,65,108,108,61,114,44,105,46,103,101,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,114,40,41,91,101,93,125,44,105,46,115,101,116,61,99,44,105,46,114,101,109,111,118,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,99,40,101,44,92,34,92,34,44,111,40,111,40,123,125,44,116,41,44,123,101,120,112,105,114,101,115,58,45,49,125,41,41,125,125,41,41,59,105,40,85,41,44,85,46,101,110,99,111,100,101,44,85,46,112,97,114,115,101,44,85,46,103,101,116,65,108,108,59,118,97,114,32,78,61,85,46,103,101,116,44,87,61,85,46,115,101,116,44,82,61,85,46,114,101,109,111,118,101,59,99,111,110,115,116,32,88,61,123,103,101,116,40,101,41,123,99,111,110,115,116,32,116,61,78,40,101,41,59,105,102,40,118,111,105,100,32,48,33,61,61,116,41,114,101,116,117,114,110,32,74,83,79,78,46,112,97,114,115,101,40,116,41,125,44,115,97,118,101,40,101,44,116,44,105,41,123,108,101,116,32,111,61,123,125,59,92,34,104,116,116,112,115,58,92,34,61,61,61,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,112,114,111,116,111,99,111,108,38,38,40,111,61,123,115,101,99,117,114,101,58,33,48,44,115,97,109,101,83,105,116,101,58,92,34,110,111,110,101,92,34,125,41,44,40,110,117,108,108,61,61,105,63,118,111,105,100,32,48,58,105,46,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,41,38,38,40,111,46,101,120,112,105,114,101,115,61,105,46,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,41,44,40,110,117,108,108,61,61,105,63,118,111,105,100,32,48,58,105,46,99,111,111,107,105,101,68,111,109,97,105,110,41,38,38,40,111,46,100,111,109,97,105,110,61,105,46,99,111,111,107,105,101,68,111,109,97,105,110,41,44,87,40,101,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,41,44,111,41,125,44,114,101,109,111,118,101,40,101,44,116,41,123,108,101,116,32,105,61,123,125,59,40,110,117,108,108,61,61,116,63,118,111,105,100,32,48,58,116,46,99,111,111,107,105,101,68,111,109,97,105,110,41,38,38,40,105,46,100,111,109,97,105,110,61,116,46,99,111,111,107,105,101,68,111,109,97,105,110,41,44,82,40,101,44,105,41,125,125,44,86,61,123,103,101,116,40,101,41,123,99,111,110,115,116,32,116,61,88,46,103,101,116,40,101,41,59,114,101,116,117,114,110,32,116,124,124,88,46,103,101,116,40,96,95,108,101,103,97,99,121,95,36,123,101,125,96,41,125,44,115,97,118,101,40,101,44,116,44,105,41,123,108,101,116,32,111,61,123,125,59,92,34,104,116,116,112,115,58,92,34,61,61,61,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,112,114,111,116,111,99,111,108,38,38,40,111,61,123,115,101,99,117,114,101,58,33,48,125,41,44,40,110,117,108,108,61,61,105,63,118,111,105,100,32,48,58,105,46,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,41,38,38,40,111,46,101,120,112,105,114,101,115,61,105,46,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,41,44,87,40,96,95,108,101,103,97,99,121,95,36,123,101,125,96,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,41,44,111,41,44,88,46,115,97,118,101,40,101,44,116,44,105,41,125,44,114,101,109,111,118,101,40,101,44,116,41,123,108,101,116,32,105,61,123,125,59,40,110,117,108,108,61,61,116,63,118,111,105,100,32,48,58,116,46,99,111,111,107,105,101,68,111,109,97,105,110,41,38,38,40,105,46,100,111,109,97,105,110,61,116,46,99,111,111,107,105,101,68,111,109,97,105,110,41,44,82,40,101,44,105,41,44,88,46,114,101,109,111,118,101,40,101,44,116,41,44,88,46,114,101,109,111,118,101,40,96,95,108,101,103,97,99,121,95,36,123,101,125,96,44,116,41,125,125,44,68,61,123,103,101,116,40,101,41,123,105,102,40,92,34,117,110,100,101,102,105,110,101,100,92,34,61,61,116,121,112,101,111,102,32,115,101,115,115,105,111,110,83,116,111,114,97,103,101,41,114,101,116,117,114,110,59,99,111,110,115,116,32,116,61,115,101,115,115,105,111,110,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,101,41,59,114,101,116,117,114,110,32,110,117,108,108,33,61,116,63,74,83,79,78,46,112,97,114,115,101,40,116,41,58,118,111,105,100,32,48,125,44,115,97,118,101,40,101,44,116,41,123,115,101,115,115,105,111,110,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,101,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,41,41,125,44,114,101,109,111,118,101,40,101,41,123,115,101,115,115,105,111,110,83,116,111,114,97,103,101,46,114,101,109,111,118,101,73,116,101,109,40,101,41,125,125,59,102,117,110,99,116,105,111,110,32,74,40,101,44,116,44,105,41,123,118,97,114,32,111,61,118,111,105,100,32,48,61,61,61,116,63,110,117,108,108,58,116,44,110,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,105,61,97,116,111,98,40,101,41,59,105,102,40,116,41,123,102,111,114,40,118,97,114,32,111,61,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,105,46,108,101,110,103,116,104,41,44,110,61,48,44,97,61,105,46,108,101,110,103,116,104,59,110,60,97,59,43,43,110,41,111,91,110,93,61,105,46,99,104,97,114,67,111,100,101,65,116,40,110,41,59,114,101,116,117,114,110,32,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,46,97,112,112,108,121,40,110,117,108,108,44,110,101,119,32,85,105,110,116,49,54,65,114,114,97,121,40,111,46,98,117,102,102,101,114,41,41,125,114,101,116,117,114,110,32,105,125,40,101,44,118,111,105,100,32,48,33,61,61,105,38,38,105,41,44,97,61,110,46,105,110,100,101,120,79,102,40,92,34,92,92,110,92,34,44,49,48,41,43,49,44,115,61,110,46,115,117,98,115,116,114,105,110,103,40,97,41,43,40,111,63,92,34,47,47,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,92,34,43,111,58,92,34,92,34,41,44,114,61,110,101,119,32,66,108,111,98,40,91,115,93,44,123,116,121,112,101,58,92,34,97,112,112,108,105,99,97,116,105,111,110,47,106,97,118,97,115,99,114,105,112,116,92,34,125,41,59,114,101,116,117,114,110,32,85,82,76,46,99,114,101,97,116,101,79,98,106,101,99,116,85,82,76,40,114,41,125,118,97,114,32,70,44,72,44,71,44,77,44,65,61,40,70,61,92,34,76,121,111,103,99,109,57,115,98,72,86,119,76,88,66,115,100,87,100,112,98,105,49,51,90,87,73,116,100,50,57,121,97,50,86,121,76,87,120,118,89,87,82,108,99,105,65,113,76,119,111,104,90,110,86,117,89,51,82,112,98,50,52,111,75,88,115,105,100,88,78,108,73,72,78,48,99,109,108,106,100,67,73,55,89,50,120,104,99,51,77,103,90,83,66,108,101,72,82,108,98,109,82,122,73,69,86,121,99,109,57,121,101,50,78,118,98,110,78,48,99,110,86,106,100,71,57,121,75,72,81,115,99,105,108,55,99,51,86,119,90,88,73,111,99,105,107,115,100,71,104,112,99,121,53,108,99,110,74,118,99,106,49,48,76,72,82,111,97,88,77,117,90,88,74,121,98,51,74,102,90,71,86,122,89,51,74,112,99,72,82,112,98,50,52,57,99,105,120,80,89,109,112,108,89,51,81,117,99,50,86,48,85,72,74,118,100,71,57,48,101,88,66,108,84,50,89,111,100,71,104,112,99,121,120,108,76,110,66,121,98,51,82,118,100,72,108,119,90,83,108,57,99,51,82,104,100,71,108,106,73,71,90,121,98,50,49,81,89,88,108,115,98,50,70,107,75,72,116,108,99,110,74,118,99,106,112,48,76,71,86,121,99,109,57,121,88,50,82,108,99,50,78,121,97,88,66,48,97,87,57,117,79,110,74,57,75,88,116,121,90,88,82,49,99,109,52,103,98,109,86,51,73,71,85,111,100,67,120,121,75,88,49,57,89,50,120,104,99,51,77,103,100,67,66,108,101,72,82,108,98,109,82,122,73,71,86,55,89,50,57,117,99,51,82,121,100,87,78,48,98,51,73,111,90,83,120,122,75,88,116,122,100,88,66,108,99,105,103,105,98,87,108,122,99,50,108,117,90,49,57,121,90,87,90,121,90,88,78,111,88,51,82,118,97,50,86,117,73,105,120,103,84,87,108,122,99,50,108,117,90,121,66,83,90,87,90,121,90,88,78,111,73,70,82,118,97,50,86,117,73,67,104,104,100,87,82,112,90,87,53,106,90,84,111,103,74,121,82,55,99,105,104,108,76,70,115,105,90,71,86,109,89,88,86,115,100,67,74,100,75,88,48,110,76,67,66,122,89,50,57,119,90,84,111,103,74,121,82,55,99,105,104,122,75,88,48,110,75,87,65,112,76,72,82,111,97,88,77,117,89,88,86,107,97,87,86,117,89,50,85,57,90,83,120,48,97,71,108,122,76,110,78,106,98,51,66,108,80,88,77,115,84,50,74,113,90,87,78,48,76,110,78,108,100,70,66,121,98,51,82,118,100,72,108,119,90,85,57,109,75,72,82,111,97,88,77,115,100,67,53,119,99,109,57,48,98,51,82,53,99,71,85,112,102,88,49,109,100,87,53,106,100,71,108,118,98,105,66,121,75,71,85,115,100,68,49,98,88,83,108,55,99,109,86,48,100,88,74,117,73,71,85,109,74,105,70,48,76,109,108,117,89,50,120,49,90,71,86,122,75,71,85,112,80,50,85,54,73,105,74,57,89,50,57,117,99,51,81,103,99,122,49,108,80,84,53,55,100,109,70,121,101,50,78,115,97,87,86,117,100,69,108,107,79,110,82,57,80,87,85,115,99,106,49,109,100,87,53,106,100,71,108,118,98,105,104,108,76,72,81,112,101,51,90,104,99,105,66,121,80,88,116,57,79,50,90,118,99,105,104,50,89,88,73,103,99,121,66,112,98,105,66,108,75,85,57,105,97,109,86,106,100,67,53,119,99,109,57,48,98,51,82,53,99,71,85,117,97,71,70,122,84,51,100,117,85,72,74,118,99,71,86,121,100,72,107,117,89,50,70,115,98,67,104,108,76,72,77,112,74,105,90,48,76,109,108,117,90,71,86,52,84,50,89,111,99,121,107,56,77,67,89,109,75,72,74,98,99,49,48,57,90,86,116,122,88,83,107,55,97,87,89,111,98,110,86,115,98,67,69,57,90,83,89,109,73,109,90,49,98,109,78,48,97,87,57,117,73,106,48,57,100,72,108,119,90,87,57,109,73,69,57,105,97,109,86,106,100,67,53,110,90,88,82,80,100,50,53,81,99,109,57,119,90,88,74,48,101,86,78,53,98,87,74,118,98,72,77,112,101,51,90,104,99,105,66,118,80,84,65,55,90,109,57,121,75,72,77,57,84,50,74,113,90,87,78,48,76,109,100,108,100,69,57,51,98,108,66,121,98,51,66,108,99,110,82,53,85,51,108,116,89,109,57,115,99,121,104,108,75,84,116,118,80,72,77,117,98,71,86,117,90,51,82,111,79,50,56,114,75,121,108,48,76,109,108,117,90,71,86,52,84,50,89,111,99,49,116,118,88,83,107,56,77,67,89,109,84,50,74,113,90,87,78,48,76,110,66,121,98,51,82,118,100,72,108,119,90,83,53,119,99,109,57,119,90,88,74,48,101,85,108,122,82,87,53,49,98,87,86,121,89,87,74,115,90,83,53,106,89,87,120,115,75,71,85,115,99,49,116,118,88,83,107,109,74,105,104,121,87,51,78,98,98,49,49,100,80,87,86,98,99,49,116,118,88,86,48,112,102,88,74,108,100,72,86,121,98,105,66,121,102,83,104,108,76,70,115,105,89,50,120,112,90,87,53,48,83,87,81,105,88,83,107,55,99,109,86,48,100,88,74,117,73,71,53,108,100,121,66,86,85,107,120,84,90,87,70,121,89,50,104,81,89,88,74,104,98,88,77,111,75,71,85,57,80,107,57,105,97,109,86,106,100,67,53,114,90,88,108,122,75,71,85,112,76,109,90,112,98,72,82,108,99,105,103,111,100,68,48,43,100,109,57,112,90,67,65,119,73,84,48,57,90,86,116,48,88,83,107,112,76,110,74,108,90,72,86,106,90,83,103,111,75,72,81,115,99,105,107,57,80,107,57,105,97,109,86,106,100,67,53,104,99,51,78,112,90,50,52,111,84,50,74,113,90,87,78,48,76,109,70,122,99,50,108,110,98,105,104,55,102,83,120,48,75,83,120,55,87,51,74,100,79,109,86,98,99,108,49,57,75,83,107,115,101,51,48,112,75,83,104,80,89,109,112,108,89,51,81,117,89,88,78,122,97,87,100,117,75,72,116,106,98,71,108,108,98,110,82,102,97,87,81,54,100,72,48,115,99,105,107,112,75,83,53,48,98,49,78,48,99,109,108,117,90,121,103,112,102,84,116,115,90,88,81,103,98,122,49,55,102,84,116,106,98,50,53,122,100,67,66,117,80,83,104,108,76,72,81,112,80,84,53,103,74,72,116,108,102,88,119,107,101,51,82,57,89,68,116,104,90,71,82,70,100,109,86,117,100,69,120,112,99,51,82,108,98,109,86,121,75,67,74,116,90,88,78,122,89,87,100,108,73,105,119,111,89,88,78,53,98,109,77,111,101,50,82,104,100,71,69,54,101,51,82,112,98,87,86,118,100,88,81,54,90,83,120,104,100,88,82,111,79,110,73,115,90,109,86,48,89,50,104,86,99,109,119,54,97,83,120,109,90,88,82,106,97,69,57,119,100,71,108,118,98,110,77,54,89,121,120,49,99,50,86,71,98,51,74,116,82,71,70,48,89,84,112,104,102,83,120,119,98,51,74,48,99,122,112,98,90,108,49,57,75,84,48,43,101,50,120,108,100,67,66,119,79,50,78,118,98,110,78,48,101,50,70,49,90,71,108,108,98,109,78,108,79,109,119,115,99,50,78,118,99,71,85,54,100,88,48,57,99,110,120,56,101,51,48,55,100,72,74,53,101,50,78,118,98,110,78,48,73,72,73,57,89,84,56,111,90,84,48,43,101,50,78,118,98,110,78,48,73,72,81,57,98,109,86,51,73,70,86,83,84,70,78,108,89,88,74,106,97,70,66,104,99,109,70,116,99,121,104,108,75,83,120,121,80,88,116,57,79,51,74,108,100,72,86,121,98,105,66,48,76,109,90,118,99,107,86,104,89,50,103,111,75,67,104,108,76,72,81,112,80,84,53,55,99,108,116,48,88,84,49,108,102,83,107,112,76,72,74,57,75,83,104,106,76,109,74,118,90,72,107,112,79,107,112,84,84,48,52,117,99,71,70,121,99,50,85,111,89,121,53,105,98,50,82,53,75,84,116,112,90,105,103,104,99,105,53,121,90,87,90,121,90,88,78,111,88,51,82,118,97,50,86,117,74,105,89,105,99,109,86,109,99,109,86,122,97,70,57,48,98,50,116,108,98,105,73,57,80,84,49,121,76,109,100,121,89,87,53,48,88,51,82,53,99,71,85,112,101,50,78,118,98,110,78,48,73,71,85,57,75,67,104,108,76,72,81,112,80,84,53,118,87,50,52,111,90,83,120,48,75,86,48,112,75,71,119,115,100,83,107,55,97,87,89,111,73,87,85,112,100,71,104,121,98,51,99,103,98,109,86,51,73,72,81,111,98,67,120,49,75,84,116,106,76,109,74,118,90,72,107,57,89,84,57,122,75,69,57,105,97,109,86,106,100,67,53,104,99,51,78,112,90,50,52,111,84,50,74,113,90,87,78,48,76,109,70,122,99,50,108,110,98,105,104,55,102,83,120,121,75,83,120,55,99,109,86,109,99,109,86,122,97,70,57,48,98,50,116,108,98,106,112,108,102,83,107,112,79,107,112,84,84,48,52,117,99,51,82,121,97,87,53,110,97,87,90,53,75,69,57,105,97,109,86,106,100,67,53,104,99,51,78,112,90,50,52,111,84,50,74,113,90,87,78,48,76,109,70,122,99,50,108,110,98,105,104,55,102,83,120,121,75,83,120,55,99,109,86,109,99,109,86,122,97,70,57,48,98,50,116,108,98,106,112,108,102,83,107,112,102,87,120,108,100,67,66,107,76,71,99,55,73,109,90,49,98,109,78,48,97,87,57,117,73,106,48,57,100,72,108,119,90,87,57,109,73,69,70,105,98,51,74,48,81,50,57,117,100,72,74,118,98,71,120,108,99,105,89,109,75,71,81,57,98,109,86,51,73,69,70,105,98,51,74,48,81,50,57,117,100,72,74,118,98,71,120,108,99,105,120,106,76,110,78,112,90,50,53,104,98,68,49,107,76,110,78,112,90,50,53,104,98,67,107,55,100,72,74,53,101,50,99,57,89,88,100,104,97,88,81,103,85,72,74,118,98,87,108,122,90,83,53,121,89,87,78,108,75,70,115,111,97,68,49,108,76,71,53,108,100,121,66,81,99,109,57,116,97,88,78,108,75,67,104,108,80,84,53,122,90,88,82,85,97,87,49,108,98,51,86,48,75,71,85,115,97,67,107,112,75,83,107,115,90,109,86,48,89,50,103,111,97,83,120,80,89,109,112,108,89,51,81,117,89,88,78,122,97,87,100,117,75,72,116,57,76,71,77,112,75,86,48,112,102,87,78,104,100,71,78,111,75,71,85,112,101,51,74,108,100,72,86,121,98,105,66,50,98,50,108,107,73,71,89,117,99,71,57,122,100,69,49,108,99,51,78,104,90,50,85,111,101,50,86,121,99,109,57,121,79,109,85,117,98,87,86,122,99,50,70,110,90,88,48,112,102,87,108,109,75,67,70,110,75,88,74,108,100,72,86,121,98,105,66,107,74,105,90,107,76,109,70,105,98,51,74,48,75,67,107,115,100,109,57,112,90,67,66,109,76,110,66,118,99,51,82,78,90,88,78,122,89,87,100,108,75,72,116,108,99,110,74,118,99,106,111,105,86,71,108,116,90,87,57,49,100,67,66,51,97,71,86,117,73,71,86,52,90,87,78,49,100,71,108,117,90,121,65,110,90,109,86,48,89,50,103,110,73,110,48,112,79,51,65,57,89,88,100,104,97,88,81,103,90,121,53,113,99,50,57,117,75,67,107,115,99,67,53,121,90,87,90,121,90,88,78,111,88,51,82,118,97,50,86,117,80,121,103,111,75,71,85,115,100,67,120,121,75,84,48,43,101,50,57,98,98,105,104,48,76,72,73,112,88,84,49,108,102,83,107,111,99,67,53,121,90,87,90,121,90,88,78,111,88,51,82,118,97,50,86,117,76,71,119,115,100,83,107,115,90,71,86,115,90,88,82,108,73,72,65,117,99,109,86,109,99,109,86,122,97,70,57,48,98,50,116,108,98,105,107,54,75,67,104,108,76,72,81,112,80,84,53,55,90,71,86,115,90,88,82,108,73,71,57,98,98,105,104,108,76,72,81,112,88,88,48,112,75,71,119,115,100,83,107,115,90,105,53,119,98,51,78,48,84,87,86,122,99,50,70,110,90,83,104,55,98,50,115,54,90,121,53,118,97,121,120,113,99,50,57,117,79,110,66,57,75,88,49,106,89,88,82,106,97,67,104,108,75,88,116,109,76,110,66,118,99,51,82,78,90,88,78,122,89,87,100,108,75,72,116,118,97,122,111,104,77,83,120,113,99,50,57,117,79,110,116,108,99,110,74,118,99,108,57,107,90,88,78,106,99,109,108,119,100,71,108,118,98,106,112,108,76,109,49,108,99,51,78,104,90,50,86,57,102,83,108,57,100,109,70,121,73,71,104,57,75,83,108,57,75,67,107,55,67,103,111,61,92,34,44,72,61,110,117,108,108,44,71,61,33,49,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,77,61,77,124,124,74,40,70,44,72,44,71,41,44,110,101,119,32,87,111,114,107,101,114,40,77,44,101,41,125,41,59,99,111,110,115,116,32,89,61,123,125,59,99,108,97,115,115,32,36,123,99,111,110,115,116,114,117,99,116,111,114,40,101,44,116,41,123,116,104,105,115,46,99,97,99,104,101,61,101,44,116,104,105,115,46,99,108,105,101,110,116,73,100,61,116,44,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,61,116,104,105,115,46,99,114,101,97,116,101,77,97,110,105,102,101,115,116,75,101,121,70,114,111,109,40,116,104,105,115,46,99,108,105,101,110,116,73,100,41,125,97,115,121,110,99,32,97,100,100,40,101,41,123,118,97,114,32,116,59,99,111,110,115,116,32,105,61,110,101,119,32,83,101,116,40,40,110,117,108,108,61,61,61,40,116,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,103,101,116,40,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,41,41,124,124,118,111,105,100,32,48,61,61,61,116,63,118,111,105,100,32,48,58,116,46,107,101,121,115,41,124,124,91,93,41,59,105,46,97,100,100,40,101,41,44,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,115,101,116,40,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,44,123,107,101,121,115,58,91,46,46,46,105,93,125,41,125,97,115,121,110,99,32,114,101,109,111,118,101,40,101,41,123,99,111,110,115,116,32,116,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,103,101,116,40,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,41,59,105,102,40,116,41,123,99,111,110,115,116,32,105,61,110,101,119,32,83,101,116,40,116,46,107,101,121,115,41,59,114,101,116,117,114,110,32,105,46,100,101,108,101,116,101,40,101,41,44,105,46,115,105,122,101,62,48,63,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,115,101,116,40,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,44,123,107,101,121,115,58,91,46,46,46,105,93,125,41,58,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,114,101,109,111,118,101,40,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,41,125,125,103,101,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,97,99,104,101,46,103,101,116,40,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,41,125,99,108,101,97,114,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,97,99,104,101,46,114,101,109,111,118,101,40,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,41,125,99,114,101,97,116,101,77,97,110,105,102,101,115,116,75,101,121,70,114,111,109,40,101,41,123,114,101,116,117,114,110,96,64,64,97,117,116,104,48,115,112,97,106,115,64,64,58,58,36,123,101,125,96,125,125,99,111,110,115,116,32,66,61,123,109,101,109,111,114,121,58,40,41,61,62,40,110,101,119,32,122,41,46,101,110,99,108,111,115,101,100,67,97,99,104,101,44,108,111,99,97,108,115,116,111,114,97,103,101,58,40,41,61,62,110,101,119,32,120,125,44,113,61,101,61,62,66,91,101,93,44,81,61,116,61,62,123,99,111,110,115,116,123,111,112,101,110,85,114,108,58,105,44,111,110,82,101,100,105,114,101,99,116,58,111,125,61,116,44,110,61,101,40,116,44,91,92,34,111,112,101,110,85,114,108,92,34,44,92,34,111,110,82,101,100,105,114,101,99,116,92,34,93,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,110,41,44,123,111,112,101,110,85,114,108,58,33,49,61,61,61,105,124,124,105,63,105,58,111,125,41,125,44,101,101,61,110,101,119,32,97,59,99,108,97,115,115,32,116,101,123,99,111,110,115,116,114,117,99,116,111,114,40,101,41,123,108,101,116,32,116,44,105,59,105,102,40,116,104,105,115,46,117,115,101,114,67,97,99,104,101,61,40,110,101,119,32,122,41,46,101,110,99,108,111,115,101,100,67,97,99,104,101,44,116,104,105,115,46,100,101,102,97,117,108,116,79,112,116,105,111,110,115,61,123,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,58,123,115,99,111,112,101,58,92,34,111,112,101,110,105,100,32,112,114,111,102,105,108,101,32,101,109,97,105,108,92,34,125,44,117,115,101,82,101,102,114,101,115,104,84,111,107,101,110,115,70,97,108,108,98,97,99,107,58,33,49,44,117,115,101,70,111,114,109,68,97,116,97,58,33,48,125,44,116,104,105,115,46,95,114,101,108,101,97,115,101,76,111,99,107,79,110,80,97,103,101,72,105,100,101,61,97,115,121,110,99,40,41,61,62,123,97,119,97,105,116,32,101,101,46,114,101,108,101,97,115,101,76,111,99,107,40,92,34,97,117,116,104,48,46,108,111,99,107,46,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,92,34,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,112,97,103,101,104,105,100,101,92,34,44,116,104,105,115,46,95,114,101,108,101,97,115,101,76,111,99,107,79,110,80,97,103,101,72,105,100,101,41,125,44,116,104,105,115,46,111,112,116,105,111,110,115,61,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,104,105,115,46,100,101,102,97,117,108,116,79,112,116,105,111,110,115,41,44,101,41,44,123,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,58,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,104,105,115,46,100,101,102,97,117,108,116,79,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,125,41,44,92,34,117,110,100,101,102,105,110,101,100,92,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,40,40,41,61,62,123,105,102,40,33,119,40,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,70,111,114,32,115,101,99,117,114,105,116,121,32,114,101,97,115,111,110,115,44,32,96,119,105,110,100,111,119,46,99,114,121,112,116,111,96,32,105,115,32,114,101,113,117,105,114,101,100,32,116,111,32,114,117,110,32,96,97,117,116,104,48,45,115,112,97,45,106,115,96,46,92,34,41,59,105,102,40,118,111,105,100,32,48,61,61,61,119,40,41,46,115,117,98,116,108,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,92,92,110,32,32,32,32,32,32,97,117,116,104,48,45,115,112,97,45,106,115,32,109,117,115,116,32,114,117,110,32,111,110,32,97,32,115,101,99,117,114,101,32,111,114,105,103,105,110,46,32,83,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,97,117,116,104,48,47,97,117,116,104,48,45,115,112,97,45,106,115,47,98,108,111,98,47,109,97,115,116,101,114,47,70,65,81,46,109,100,35,119,104,121,45,100,111,45,105,45,103,101,116,45,97,117,116,104,48,45,115,112,97,45,106,115,45,109,117,115,116,45,114,117,110,45,111,110,45,97,45,115,101,99,117,114,101,45,111,114,105,103,105,110,32,102,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,46,92,92,110,32,32,32,32,92,34,41,125,41,40,41,44,101,46,99,97,99,104,101,38,38,101,46,99,97,99,104,101,76,111,99,97,116,105,111,110,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,92,34,66,111,116,104,32,96,99,97,99,104,101,96,32,97,110,100,32,96,99,97,99,104,101,76,111,99,97,116,105,111,110,96,32,111,112,116,105,111,110,115,32,104,97,118,101,32,98,101,101,110,32,115,112,101,99,105,102,105,101,100,32,105,110,32,116,104,101,32,65,117,116,104,48,67,108,105,101,110,116,32,99,111,110,102,105,103,117,114,97,116,105,111,110,59,32,105,103,110,111,114,105,110,103,32,96,99,97,99,104,101,76,111,99,97,116,105,111,110,96,32,97,110,100,32,117,115,105,110,103,32,96,99,97,99,104,101,96,46,92,34,41,44,101,46,99,97,99,104,101,41,105,61,101,46,99,97,99,104,101,59,101,108,115,101,123,105,102,40,116,61,101,46,99,97,99,104,101,76,111,99,97,116,105,111,110,124,124,92,34,109,101,109,111,114,121,92,34,44,33,113,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,73,110,118,97,108,105,100,32,99,97,99,104,101,32,108,111,99,97,116,105,111,110,32,92,34,36,123,116,125,92,34,96,41,59,105,61,113,40,116,41,40,41,125,116,104,105,115,46,104,116,116,112,84,105,109,101,111,117,116,77,115,61,101,46,104,116,116,112,84,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,63,49,101,51,42,101,46,104,116,116,112,84,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,58,49,101,52,44,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,61,33,49,61,61,61,101,46,108,101,103,97,99,121,83,97,109,101,83,105,116,101,67,111,111,107,105,101,63,88,58,86,44,116,104,105,115,46,111,114,103,72,105,110,116,67,111,111,107,105,101,78,97,109,101,61,96,97,117,116,104,48,46,36,123,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,125,46,111,114,103,97,110,105,122,97,116,105,111,110,95,104,105,110,116,96,44,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,67,111,111,107,105,101,78,97,109,101,61,40,101,61,62,96,97,117,116,104,48,46,36,123,101,125,46,105,115,46,97,117,116,104,101,110,116,105,99,97,116,101,100,96,41,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,41,44,116,104,105,115,46,115,101,115,115,105,111,110,67,104,101,99,107,69,120,112,105,114,121,68,97,121,115,61,101,46,115,101,115,115,105,111,110,67,104,101,99,107,69,120,112,105,114,121,68,97,121,115,124,124,49,59,99,111,110,115,116,32,111,61,101,46,117,115,101,67,111,111,107,105,101,115,70,111,114,84,114,97,110,115,97,99,116,105,111,110,115,63,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,58,68,59,118,97,114,32,110,59,116,104,105,115,46,115,99,111,112,101,61,106,40,92,34,111,112,101,110,105,100,92,34,44,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,102,114,101,115,104,84,111,107,101,110,115,63,92,34,111,102,102,108,105,110,101,95,97,99,99,101,115,115,92,34,58,92,34,92,34,41,44,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,77,97,110,97,103,101,114,61,110,101,119,32,90,40,111,44,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,41,44,116,104,105,115,46,110,111,119,80,114,111,118,105,100,101,114,61,116,104,105,115,46,111,112,116,105,111,110,115,46,110,111,119,80,114,111,118,105,100,101,114,124,124,99,44,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,61,110,101,119,32,80,40,105,44,105,46,97,108,108,75,101,121,115,63,118,111,105,100,32,48,58,110,101,119,32,36,40,105,44,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,41,44,116,104,105,115,46,110,111,119,80,114,111,118,105,100,101,114,41,44,116,104,105,115,46,100,111,109,97,105,110,85,114,108,61,40,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,100,111,109,97,105,110,44,47,94,104,116,116,112,115,63,58,92,92,47,92,92,47,47,46,116,101,115,116,40,110,41,63,110,58,96,104,116,116,112,115,58,47,47,36,123,110,125,96,41,44,116,104,105,115,46,116,111,107,101,110,73,115,115,117,101,114,61,40,40,101,44,116,41,61,62,101,63,101,46,115,116,97,114,116,115,87,105,116,104,40,92,34,104,116,116,112,115,58,47,47,92,34,41,63,101,58,96,104,116,116,112,115,58,47,47,36,123,101,125,47,96,58,96,36,123,116,125,47,96,41,40,116,104,105,115,46,111,112,116,105,111,110,115,46,105,115,115,117,101,114,44,116,104,105,115,46,100,111,109,97,105,110,85,114,108,41,44,92,34,117,110,100,101,102,105,110,101,100,92,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,119,105,110,100,111,119,46,87,111,114,107,101,114,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,102,114,101,115,104,84,111,107,101,110,115,38,38,92,34,109,101,109,111,114,121,92,34,61,61,61,116,38,38,40,116,104,105,115,46,119,111,114,107,101,114,61,110,101,119,32,65,41,125,95,117,114,108,40,101,41,123,99,111,110,115,116,32,116,61,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,98,116,111,97,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,48,67,108,105,101,110,116,124,124,114,41,41,41,59,114,101,116,117,114,110,96,36,123,116,104,105,115,46,100,111,109,97,105,110,85,114,108,125,36,123,101,125,38,97,117,116,104,48,67,108,105,101,110,116,61,36,123,116,125,96,125,95,97,117,116,104,111,114,105,122,101,85,114,108,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,117,114,108,40,96,47,97,117,116,104,111,114,105,122,101,63,36,123,98,40,101,41,125,96,41,125,97,115,121,110,99,32,95,118,101,114,105,102,121,73,100,84,111,107,101,110,40,101,44,116,44,105,41,123,99,111,110,115,116,32,111,61,97,119,97,105,116,32,116,104,105,115,46,110,111,119,80,114,111,118,105,100,101,114,40,41,59,114,101,116,117,114,110,32,69,40,123,105,115,115,58,116,104,105,115,46,116,111,107,101,110,73,115,115,117,101,114,44,97,117,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,44,105,100,95,116,111,107,101,110,58,101,44,110,111,110,99,101,58,116,44,111,114,103,97,110,105,122,97,116,105,111,110,73,100,58,105,44,108,101,101,119,97,121,58,116,104,105,115,46,111,112,116,105,111,110,115,46,108,101,101,119,97,121,44,109,97,120,95,97,103,101,58,40,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,109,97,120,95,97,103,101,44,92,34,115,116,114,105,110,103,92,34,33,61,116,121,112,101,111,102,32,110,63,110,58,112,97,114,115,101,73,110,116,40,110,44,49,48,41,124,124,118,111,105,100,32,48,41,44,110,111,119,58,111,125,41,59,118,97,114,32,110,125,95,112,114,111,99,101,115,115,79,114,103,73,100,72,105,110,116,40,101,41,123,101,63,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,115,97,118,101,40,116,104,105,115,46,111,114,103,72,105,110,116,67,111,111,107,105,101,78,97,109,101,44,101,44,123,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,58,116,104,105,115,46,115,101,115,115,105,111,110,67,104,101,99,107,69,120,112,105,114,121,68,97,121,115,44,99,111,111,107,105,101,68,111,109,97,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,111,107,105,101,68,111,109,97,105,110,125,41,58,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,114,101,109,111,118,101,40,116,104,105,115,46,111,114,103,72,105,110,116,67,111,111,107,105,101,78,97,109,101,44,123,99,111,111,107,105,101,68,111,109,97,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,111,107,105,101,68,111,109,97,105,110,125,41,125,97,115,121,110,99,32,95,112,114,101,112,97,114,101,65,117,116,104,111,114,105,122,101,85,114,108,40,101,44,116,44,105,41,123,99,111,110,115,116,32,111,61,107,40,121,40,41,41,44,110,61,107,40,121,40,41,41,44,97,61,121,40,41,44,115,61,40,101,61,62,123,99,111,110,115,116,32,116,61,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,101,41,59,114,101,116,117,114,110,40,101,61,62,123,99,111,110,115,116,32,116,61,123,92,34,43,92,34,58,92,34,45,92,34,44,92,34,47,92,34,58,92,34,95,92,34,44,92,34,61,92,34,58,92,34,92,34,125,59,114,101,116,117,114,110,32,101,46,114,101,112,108,97,99,101,40,47,91,43,47,61,93,47,103,44,40,101,61,62,116,91,101,93,41,41,125,41,40,119,105,110,100,111,119,46,98,116,111,97,40,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,46,46,46,65,114,114,97,121,46,102,114,111,109,40,116,41,41,41,41,125,41,40,97,119,97,105,116,40,97,115,121,110,99,32,101,61,62,123,99,111,110,115,116,32,116,61,119,40,41,46,115,117,98,116,108,101,46,100,105,103,101,115,116,40,123,110,97,109,101,58,92,34,83,72,65,45,50,53,54,92,34,125,44,40,110,101,119,32,84,101,120,116,69,110,99,111,100,101,114,41,46,101,110,99,111,100,101,40,101,41,41,59,114,101,116,117,114,110,32,97,119,97,105,116,32,116,125,41,40,97,41,41,44,114,61,40,40,101,44,116,44,105,44,111,44,110,44,97,44,115,44,114,41,61,62,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,99,108,105,101,110,116,95,105,100,58,101,46,99,108,105,101,110,116,73,100,125,44,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,105,41,44,123,115,99,111,112,101,58,106,40,116,44,105,46,115,99,111,112,101,41,44,114,101,115,112,111,110,115,101,95,116,121,112,101,58,92,34,99,111,100,101,92,34,44,114,101,115,112,111,110,115,101,95,109,111,100,101,58,114,124,124,92,34,113,117,101,114,121,92,34,44,115,116,97,116,101,58,111,44,110,111,110,99,101,58,110,44,114,101,100,105,114,101,99,116,95,117,114,105,58,115,124,124,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,114,101,100,105,114,101,99,116,95,117,114,105,44,99,111,100,101,95,99,104,97,108,108,101,110,103,101,58,97,44,99,111,100,101,95,99,104,97,108,108,101,110,103,101,95,109,101,116,104,111,100,58,92,34,83,50,53,54,92,34,125,41,41,40,116,104,105,115,46,111,112,116,105,111,110,115,44,116,104,105,115,46,115,99,111,112,101,44,101,44,111,44,110,44,115,44,101,46,114,101,100,105,114,101,99,116,95,117,114,105,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,114,101,100,105,114,101,99,116,95,117,114,105,124,124,105,44,110,117,108,108,61,61,116,63,118,111,105,100,32,48,58,116,46,114,101,115,112,111,110,115,101,95,109,111,100,101,41,44,99,61,116,104,105,115,46,95,97,117,116,104,111,114,105,122,101,85,114,108,40,114,41,59,114,101,116,117,114,110,123,110,111,110,99,101,58,110,44,99,111,100,101,95,118,101,114,105,102,105,101,114,58,97,44,115,99,111,112,101,58,114,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,114,46,97,117,100,105,101,110,99,101,124,124,92,34,100,101,102,97,117,108,116,92,34,44,114,101,100,105,114,101,99,116,95,117,114,105,58,114,46,114,101,100,105,114,101,99,116,95,117,114,105,44,115,116,97,116,101,58,111,44,117,114,108,58,99,125,125,97,115,121,110,99,32,108,111,103,105,110,87,105,116,104,80,111,112,117,112,40,101,44,116,41,123,118,97,114,32,105,59,105,102,40,101,61,101,124,124,123,125,44,33,40,116,61,116,124,124,123,125,41,46,112,111,112,117,112,38,38,40,116,46,112,111,112,117,112,61,40,101,61,62,123,99,111,110,115,116,32,116,61,119,105,110,100,111,119,46,115,99,114,101,101,110,88,43,40,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,45,52,48,48,41,47,50,44,105,61,119,105,110,100,111,119,46,115,99,114,101,101,110,89,43,40,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,45,54,48,48,41,47,50,59,114,101,116,117,114,110,32,119,105,110,100,111,119,46,111,112,101,110,40,101,44,92,34,97,117,116,104,48,58,97,117,116,104,111,114,105,122,101,58,112,111,112,117,112,92,34,44,96,108,101,102,116,61,36,123,116,125,44,116,111,112,61,36,123,105,125,44,119,105,100,116,104,61,52,48,48,44,104,101,105,103,104,116,61,54,48,48,44,114,101,115,105,122,97,98,108,101,44,115,99,114,111,108,108,98,97,114,115,61,121,101,115,44,115,116,97,116,117,115,61,49,96,41,125,41,40,92,34,92,34,41,44,33,116,46,112,111,112,117,112,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,85,110,97,98,108,101,32,116,111,32,111,112,101,110,32,97,32,112,111,112,117,112,32,102,111,114,32,108,111,103,105,110,87,105,116,104,80,111,112,117,112,32,45,32,119,105,110,100,111,119,46,111,112,101,110,32,114,101,116,117,114,110,101,100,32,96,110,117,108,108,96,92,34,41,59,99,111,110,115,116,32,111,61,97,119,97,105,116,32,116,104,105,115,46,95,112,114,101,112,97,114,101,65,117,116,104,111,114,105,122,101,85,114,108,40,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,124,124,123,125,44,123,114,101,115,112,111,110,115,101,95,109,111,100,101,58,92,34,119,101,98,95,109,101,115,115,97,103,101,92,34,125,44,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,111,114,105,103,105,110,41,59,116,46,112,111,112,117,112,46,108,111,99,97,116,105,111,110,46,104,114,101,102,61,111,46,117,114,108,59,99,111,110,115,116,32,110,61,97,119,97,105,116,40,101,61,62,110,101,119,32,80,114,111,109,105,115,101,40,40,40,116,44,105,41,61,62,123,108,101,116,32,111,59,99,111,110,115,116,32,110,61,115,101,116,73,110,116,101,114,118,97,108,40,40,40,41,61,62,123,101,46,112,111,112,117,112,38,38,101,46,112,111,112,117,112,46,99,108,111,115,101,100,38,38,40,99,108,101,97,114,73,110,116,101,114,118,97,108,40,110,41,44,99,108,101,97,114,84,105,109,101,111,117,116,40,97,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,101,115,115,97,103,101,92,34,44,111,44,33,49,41,44,105,40,110,101,119,32,112,40,101,46,112,111,112,117,112,41,41,41,125,41,44,49,101,51,41,44,97,61,115,101,116,84,105,109,101,111,117,116,40,40,40,41,61,62,123,99,108,101,97,114,73,110,116,101,114,118,97,108,40,110,41,44,105,40,110,101,119,32,104,40,101,46,112,111,112,117,112,41,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,101,115,115,97,103,101,92,34,44,111,44,33,49,41,125,41,44,49,101,51,42,40,101,46,116,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,124,124,54,48,41,41,59,111,61,102,117,110,99,116,105,111,110,40,115,41,123,105,102,40,115,46,100,97,116,97,38,38,92,34,97,117,116,104,111,114,105,122,97,116,105,111,110,95,114,101,115,112,111,110,115,101,92,34,61,61,61,115,46,100,97,116,97,46,116,121,112,101,41,123,105,102,40,99,108,101,97,114,84,105,109,101,111,117,116,40,97,41,44,99,108,101,97,114,73,110,116,101,114,118,97,108,40,110,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,101,115,115,97,103,101,92,34,44,111,44,33,49,41,44,101,46,112,111,112,117,112,46,99,108,111,115,101,40,41,44,115,46,100,97,116,97,46,114,101,115,112,111,110,115,101,46,101,114,114,111,114,41,114,101,116,117,114,110,32,105,40,100,46,102,114,111,109,80,97,121,108,111,97,100,40,115,46,100,97,116,97,46,114,101,115,112,111,110,115,101,41,41,59,116,40,115,46,100,97,116,97,46,114,101,115,112,111,110,115,101,41,125,125,44,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,101,115,115,97,103,101,92,34,44,111,41,125,41,41,41,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,41,44,123,116,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,58,116,46,116,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,101,84,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,124,124,54,48,125,41,41,59,105,102,40,111,46,115,116,97,116,101,33,61,61,110,46,115,116,97,116,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,115,116,97,116,101,92,34,41,59,99,111,110,115,116,32,97,61,40,110,117,108,108,61,61,61,40,105,61,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,124,124,118,111,105,100,32,48,61,61,61,105,63,118,111,105,100,32,48,58,105,46,111,114,103,97,110,105,122,97,116,105,111,110,41,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,111,114,103,97,110,105,122,97,116,105,111,110,59,97,119,97,105,116,32,116,104,105,115,46,95,114,101,113,117,101,115,116,84,111,107,101,110,40,123,97,117,100,105,101,110,99,101,58,111,46,97,117,100,105,101,110,99,101,44,115,99,111,112,101,58,111,46,115,99,111,112,101,44,99,111,100,101,95,118,101,114,105,102,105,101,114,58,111,46,99,111,100,101,95,118,101,114,105,102,105,101,114,44,103,114,97,110,116,95,116,121,112,101,58,92,34,97,117,116,104,111,114,105,122,97,116,105,111,110,95,99,111,100,101,92,34,44,99,111,100,101,58,110,46,99,111,100,101,44,114,101,100,105,114,101,99,116,95,117,114,105,58,111,46,114,101,100,105,114,101,99,116,95,117,114,105,125,44,123,110,111,110,99,101,73,110,58,111,46,110,111,110,99,101,44,111,114,103,97,110,105,122,97,116,105,111,110,73,100,58,97,125,41,125,97,115,121,110,99,32,103,101,116,85,115,101,114,40,41,123,118,97,114,32,101,59,99,111,110,115,116,32,116,61,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,73,100,84,111,107,101,110,70,114,111,109,67,97,99,104,101,40,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,61,40,101,61,110,117,108,108,61,61,116,63,118,111,105,100,32,48,58,116,46,100,101,99,111,100,101,100,84,111,107,101,110,41,124,124,118,111,105,100,32,48,61,61,61,101,63,118,111,105,100,32,48,58,101,46,117,115,101,114,125,97,115,121,110,99,32,103,101,116,73,100,84,111,107,101,110,67,108,97,105,109,115,40,41,123,118,97,114,32,101,59,99,111,110,115,116,32,116,61,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,73,100,84,111,107,101,110,70,114,111,109,67,97,99,104,101,40,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,61,40,101,61,110,117,108,108,61,61,116,63,118,111,105,100,32,48,58,116,46,100,101,99,111,100,101,100,84,111,107,101,110,41,124,124,118,111,105,100,32,48,61,61,61,101,63,118,111,105,100,32,48,58,101,46,99,108,97,105,109,115,125,97,115,121,110,99,32,108,111,103,105,110,87,105,116,104,82,101,100,105,114,101,99,116,40,116,61,123,125,41,123,118,97,114,32,105,59,99,111,110,115,116,32,111,61,81,40,116,41,44,123,111,112,101,110,85,114,108,58,110,44,102,114,97,103,109,101,110,116,58,97,44,97,112,112,83,116,97,116,101,58,115,125,61,111,44,114,61,101,40,111,44,91,92,34,111,112,101,110,85,114,108,92,34,44,92,34,102,114,97,103,109,101,110,116,92,34,44,92,34,97,112,112,83,116,97,116,101,92,34,93,41,44,99,61,40,110,117,108,108,61,61,61,40,105,61,114,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,124,124,118,111,105,100,32,48,61,61,61,105,63,118,111,105,100,32,48,58,105,46,111,114,103,97,110,105,122,97,116,105,111,110,41,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,111,114,103,97,110,105,122,97,116,105,111,110,44,100,61,97,119,97,105,116,32,116,104,105,115,46,95,112,114,101,112,97,114,101,65,117,116,104,111,114,105,122,101,85,114,108,40,114,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,124,124,123,125,41,44,123,117,114,108,58,117,125,61,100,44,108,61,101,40,100,44,91,92,34,117,114,108,92,34,93,41,59,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,77,97,110,97,103,101,114,46,99,114,101,97,116,101,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,108,41,44,123,97,112,112,83,116,97,116,101,58,115,125,41,44,99,38,38,123,111,114,103,97,110,105,122,97,116,105,111,110,73,100,58,99,125,41,41,59,99,111,110,115,116,32,104,61,97,63,96,36,123,117,125,35,36,123,97,125,96,58,117,59,110,63,97,119,97,105,116,32,110,40,104,41,58,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,97,115,115,105,103,110,40,104,41,125,97,115,121,110,99,32,104,97,110,100,108,101,82,101,100,105,114,101,99,116,67,97,108,108,98,97,99,107,40,101,61,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,114,101,102,41,123,99,111,110,115,116,32,116,61,101,46,115,112,108,105,116,40,92,34,63,92,34,41,46,115,108,105,99,101,40,49,41,59,105,102,40,48,61,61,61,116,46,108,101,110,103,116,104,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,84,104,101,114,101,32,97,114,101,32,110,111,32,113,117,101,114,121,32,112,97,114,97,109,115,32,97,118,97,105,108,97,98,108,101,32,102,111,114,32,112,97,114,115,105,110,103,46,92,34,41,59,99,111,110,115,116,123,115,116,97,116,101,58,105,44,99,111,100,101,58,111,44,101,114,114,111,114,58,110,44,101,114,114,111,114,95,100,101,115,99,114,105,112,116,105,111,110,58,97,125,61,40,101,61,62,123,101,46,105,110,100,101,120,79,102,40,92,34,35,92,34,41,62,45,49,38,38,40,101,61,101,46,115,117,98,115,116,114,105,110,103,40,48,44,101,46,105,110,100,101,120,79,102,40,92,34,35,92,34,41,41,41,59,99,111,110,115,116,32,116,61,110,101,119,32,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,40,101,41,59,114,101,116,117,114,110,123,115,116,97,116,101,58,116,46,103,101,116,40,92,34,115,116,97,116,101,92,34,41,44,99,111,100,101,58,116,46,103,101,116,40,92,34,99,111,100,101,92,34,41,124,124,118,111,105,100,32,48,44,101,114,114,111,114,58,116,46,103,101,116,40,92,34,101,114,114,111,114,92,34,41,124,124,118,111,105,100,32,48,44,101,114,114,111,114,95,100,101,115,99,114,105,112,116,105,111,110,58,116,46,103,101,116,40,92,34,101,114,114,111,114,95,100,101,115,99,114,105,112,116,105,111,110,92,34,41,124,124,118,111,105,100,32,48,125,125,41,40,116,46,106,111,105,110,40,92,34,92,34,41,41,44,115,61,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,77,97,110,97,103,101,114,46,103,101,116,40,41,59,105,102,40,33,115,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,115,116,97,116,101,92,34,41,59,105,102,40,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,77,97,110,97,103,101,114,46,114,101,109,111,118,101,40,41,44,110,41,116,104,114,111,119,32,110,101,119,32,117,40,110,44,97,124,124,110,44,105,44,115,46,97,112,112,83,116,97,116,101,41,59,105,102,40,33,115,46,99,111,100,101,95,118,101,114,105,102,105,101,114,124,124,115,46,115,116,97,116,101,38,38,115,46,115,116,97,116,101,33,61,61,105,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,115,116,97,116,101,92,34,41,59,99,111,110,115,116,32,114,61,115,46,111,114,103,97,110,105,122,97,116,105,111,110,73,100,44,99,61,115,46,110,111,110,99,101,44,100,61,115,46,114,101,100,105,114,101,99,116,95,117,114,105,59,114,101,116,117,114,110,32,97,119,97,105,116,32,116,104,105,115,46,95,114,101,113,117,101,115,116,84,111,107,101,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,97,117,100,105,101,110,99,101,58,115,46,97,117,100,105,101,110,99,101,44,115,99,111,112,101,58,115,46,115,99,111,112,101,44,99,111,100,101,95,118,101,114,105,102,105,101,114,58,115,46,99,111,100,101,95,118,101,114,105,102,105,101,114,44,103,114,97,110,116,95,116,121,112,101,58,92,34,97,117,116,104,111,114,105,122,97,116,105,111,110,95,99,111,100,101,92,34,44,99,111,100,101,58,111,125,44,100,63,123,114,101,100,105,114,101,99,116,95,117,114,105,58,100,125,58,123,125,41,44,123,110,111,110,99,101,73,110,58,99,44,111,114,103,97,110,105,122,97,116,105,111,110,73,100,58,114,125,41,44,123,97,112,112,83,116,97,116,101,58,115,46,97,112,112,83,116,97,116,101,125,125,97,115,121,110,99,32,99,104,101,99,107,83,101,115,115,105,111,110,40,101,41,123,105,102,40,33,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,103,101,116,40,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,67,111,111,107,105,101,78,97,109,101,41,41,123,105,102,40,33,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,103,101,116,40,92,34,97,117,116,104,48,46,105,115,46,97,117,116,104,101,110,116,105,99,97,116,101,100,92,34,41,41,114,101,116,117,114,110,59,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,115,97,118,101,40,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,67,111,111,107,105,101,78,97,109,101,44,33,48,44,123,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,58,116,104,105,115,46,115,101,115,115,105,111,110,67,104,101,99,107,69,120,112,105,114,121,68,97,121,115,44,99,111,111,107,105,101,68,111,109,97,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,111,107,105,101,68,111,109,97,105,110,125,41,44,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,114,101,109,111,118,101,40,92,34,97,117,116,104,48,46,105,115,46,97,117,116,104,101,110,116,105,99,97,116,101,100,92,34,41,125,116,114,121,123,97,119,97,105,116,32,116,104,105,115,46,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,40,101,41,125,99,97,116,99,104,40,101,41,123,125,125,97,115,121,110,99,32,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,40,101,61,123,125,41,123,118,97,114,32,116,59,99,111,110,115,116,32,105,61,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,99,97,99,104,101,77,111,100,101,58,92,34,111,110,92,34,125,44,101,41,44,123,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,58,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,123,115,99,111,112,101,58,106,40,116,104,105,115,46,115,99,111,112,101,44,110,117,108,108,61,61,61,40,116,61,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,124,124,118,111,105,100,32,48,61,61,61,116,63,118,111,105,100,32,48,58,116,46,115,99,111,112,101,41,125,41,125,41,44,111,61,97,119,97,105,116,40,40,101,44,116,41,61,62,123,108,101,116,32,105,61,89,91,116,93,59,114,101,116,117,114,110,32,105,124,124,40,105,61,101,40,41,46,102,105,110,97,108,108,121,40,40,40,41,61,62,123,100,101,108,101,116,101,32,89,91,116,93,44,105,61,110,117,108,108,125,41,41,44,89,91,116,93,61,105,41,44,105,125,41,40,40,40,41,61,62,116,104,105,115,46,95,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,40,105,41,41,44,96,36,123,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,125,58,58,36,123,105,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,125,58,58,36,123,105,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,125,96,41,59,114,101,116,117,114,110,32,101,46,100,101,116,97,105,108,101,100,82,101,115,112,111,110,115,101,63,111,58,110,117,108,108,61,61,111,63,118,111,105,100,32,48,58,111,46,97,99,99,101,115,115,95,116,111,107,101,110,125,97,115,121,110,99,32,95,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,40,116,41,123,99,111,110,115,116,123,99,97,99,104,101,77,111,100,101,58,105,125,61,116,44,111,61,101,40,116,44,91,92,34,99,97,99,104,101,77,111,100,101,92,34,93,41,59,105,102,40,92,34,111,102,102,92,34,33,61,61,105,41,123,99,111,110,115,116,32,101,61,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,69,110,116,114,121,70,114,111,109,67,97,99,104,101,40,123,115,99,111,112,101,58,111,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,111,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,124,124,92,34,100,101,102,97,117,108,116,92,34,44,99,108,105,101,110,116,73,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,125,41,59,105,102,40,101,41,114,101,116,117,114,110,32,101,125,105,102,40,92,34,99,97,99,104,101,45,111,110,108,121,92,34,33,61,61,105,41,123,105,102,40,33,97,119,97,105,116,40,97,115,121,110,99,40,101,44,116,61,51,41,61,62,123,102,111,114,40,108,101,116,32,105,61,48,59,105,60,116,59,105,43,43,41,105,102,40,97,119,97,105,116,32,101,40,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,41,40,40,40,41,61,62,101,101,46,97,99,113,117,105,114,101,76,111,99,107,40,92,34,97,117,116,104,48,46,108,111,99,107,46,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,92,34,44,53,101,51,41,41,44,49,48,41,41,116,104,114,111,119,32,110,101,119,32,108,59,116,114,121,123,105,102,40,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,112,97,103,101,104,105,100,101,92,34,44,116,104,105,115,46,95,114,101,108,101,97,115,101,76,111,99,107,79,110,80,97,103,101,72,105,100,101,41,44,92,34,111,102,102,92,34,33,61,61,105,41,123,99,111,110,115,116,32,101,61,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,69,110,116,114,121,70,114,111,109,67,97,99,104,101,40,123,115,99,111,112,101,58,111,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,111,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,124,124,92,34,100,101,102,97,117,108,116,92,34,44,99,108,105,101,110,116,73,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,125,41,59,105,102,40,101,41,114,101,116,117,114,110,32,101,125,99,111,110,115,116,32,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,102,114,101,115,104,84,111,107,101,110,115,63,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,84,111,107,101,110,85,115,105,110,103,82,101,102,114,101,115,104,84,111,107,101,110,40,111,41,58,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,84,111,107,101,110,70,114,111,109,73,70,114,97,109,101,40,111,41,44,123,105,100,95,116,111,107,101,110,58,116,44,97,99,99,101,115,115,95,116,111,107,101,110,58,110,44,111,97,117,116,104,84,111,107,101,110,83,99,111,112,101,58,97,44,101,120,112,105,114,101,115,95,105,110,58,115,125,61,101,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,105,100,95,116,111,107,101,110,58,116,44,97,99,99,101,115,115,95,116,111,107,101,110,58,110,125,44,97,63,123,115,99,111,112,101,58,97,125,58,110,117,108,108,41,44,123,101,120,112,105,114,101,115,95,105,110,58,115,125,41,125,102,105,110,97,108,108,121,123,97,119,97,105,116,32,101,101,46,114,101,108,101,97,115,101,76,111,99,107,40,92,34,97,117,116,104,48,46,108,111,99,107,46,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,92,34,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,112,97,103,101,104,105,100,101,92,34,44,116,104,105,115,46,95,114,101,108,101,97,115,101,76,111,99,107,79,110,80,97,103,101,72,105,100,101,41,125,125,125,97,115,121,110,99,32,103,101,116,84,111,107,101,110,87,105,116,104,80,111,112,117,112,40,101,61,123,125,44,116,61,123,125,41,123,118,97,114,32,105,59,99,111,110,115,116,32,111,61,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,101,41,44,123,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,58,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,123,115,99,111,112,101,58,106,40,116,104,105,115,46,115,99,111,112,101,44,110,117,108,108,61,61,61,40,105,61,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,124,124,118,111,105,100,32,48,61,61,61,105,63,118,111,105,100,32,48,58,105,46,115,99,111,112,101,41,125,41,125,41,59,116,61,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,115,41,44,116,41,44,97,119,97,105,116,32,116,104,105,115,46,108,111,103,105,110,87,105,116,104,80,111,112,117,112,40,111,44,116,41,59,114,101,116,117,114,110,40,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,46,103,101,116,40,110,101,119,32,67,40,123,115,99,111,112,101,58,111,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,111,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,124,124,92,34,100,101,102,97,117,108,116,92,34,44,99,108,105,101,110,116,73,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,125,41,41,41,46,97,99,99,101,115,115,95,116,111,107,101,110,125,97,115,121,110,99,32,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,40,41,123,114,101,116,117,114,110,33,33,97,119,97,105,116,32,116,104,105,115,46,103,101,116,85,115,101,114,40,41,125,95,98,117,105,108,100,76,111,103,111,117,116,85,114,108,40,116,41,123,110,117,108,108,33,61,61,116,46,99,108,105,101,110,116,73,100,63,116,46,99,108,105,101,110,116,73,100,61,116,46,99,108,105,101,110,116,73,100,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,58,100,101,108,101,116,101,32,116,46,99,108,105,101,110,116,73,100,59,99,111,110,115,116,32,105,61,116,46,108,111,103,111,117,116,80,97,114,97,109,115,124,124,123,125,44,123,102,101,100,101,114,97,116,101,100,58,111,125,61,105,44,110,61,101,40,105,44,91,92,34,102,101,100,101,114,97,116,101,100,92,34,93,41,44,97,61,111,63,92,34,38,102,101,100,101,114,97,116,101,100,92,34,58,92,34,92,34,59,114,101,116,117,114,110,32,116,104,105,115,46,95,117,114,108,40,96,47,118,50,47,108,111,103,111,117,116,63,36,123,98,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,99,108,105,101,110,116,73,100,58,116,46,99,108,105,101,110,116,73,100,125,44,110,41,41,125,96,41,43,97,125,97,115,121,110,99,32,108,111,103,111,117,116,40,116,61,123,125,41,123,99,111,110,115,116,32,105,61,81,40,116,41,44,123,111,112,101,110,85,114,108,58,111,125,61,105,44,110,61,101,40,105,44,91,92,34,111,112,101,110,85,114,108,92,34,93,41,59,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,46,99,108,101,97,114,40,41,44,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,114,101,109,111,118,101,40,116,104,105,115,46,111,114,103,72,105,110,116,67,111,111,107,105,101,78,97,109,101,44,123,99,111,111,107,105,101,68,111,109,97,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,111,107,105,101,68,111,109,97,105,110,125,41,44,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,114,101,109,111,118,101,40,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,67,111,111,107,105,101,78,97,109,101,44,123,99,111,111,107,105,101,68,111,109,97,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,111,107,105,101,68,111,109,97,105,110,125,41,44,116,104,105,115,46,117,115,101,114,67,97,99,104,101,46,114,101,109,111,118,101,40,92,34,64,64,117,115,101,114,64,64,92,34,41,59,99,111,110,115,116,32,97,61,116,104,105,115,46,95,98,117,105,108,100,76,111,103,111,117,116,85,114,108,40,110,41,59,111,63,97,119,97,105,116,32,111,40,97,41,58,33,49,33,61,61,111,38,38,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,97,115,115,105,103,110,40,97,41,125,97,115,121,110,99,32,95,103,101,116,84,111,107,101,110,70,114,111,109,73,70,114,97,109,101,40,101,41,123,99,111,110,115,116,32,116,61,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,123,112,114,111,109,112,116,58,92,34,110,111,110,101,92,34,125,41,44,105,61,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,103,101,116,40,116,104,105,115,46,111,114,103,72,105,110,116,67,111,111,107,105,101,78,97,109,101,41,59,105,38,38,33,116,46,111,114,103,97,110,105,122,97,116,105,111,110,38,38,40,116,46,111,114,103,97,110,105,122,97,116,105,111,110,61,105,41,59,99,111,110,115,116,123,117,114,108,58,111,44,115,116,97,116,101,58,110,44,110,111,110,99,101,58,97,44,99,111,100,101,95,118,101,114,105,102,105,101,114,58,115,44,114,101,100,105,114,101,99,116,95,117,114,105,58,114,44,115,99,111,112,101,58,99,44,97,117,100,105,101,110,99,101,58,117,125,61,97,119,97,105,116,32,116,104,105,115,46,95,112,114,101,112,97,114,101,65,117,116,104,111,114,105,122,101,85,114,108,40,116,44,123,114,101,115,112,111,110,115,101,95,109,111,100,101,58,92,34,119,101,98,95,109,101,115,115,97,103,101,92,34,125,44,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,111,114,105,103,105,110,41,59,116,114,121,123,105,102,40,119,105,110,100,111,119,46,99,114,111,115,115,79,114,105,103,105,110,73,115,111,108,97,116,101,100,41,116,104,114,111,119,32,110,101,119,32,100,40,92,34,108,111,103,105,110,95,114,101,113,117,105,114,101,100,92,34,44,92,34,84,104,101,32,97,112,112,108,105,99,97,116,105,111,110,32,105,115,32,114,117,110,110,105,110,103,32,105,110,32,97,32,67,114,111,115,115,45,79,114,105,103,105,110,32,73,115,111,108,97,116,101,100,32,99,111,110,116,101,120,116,44,32,115,105,108,101,110,116,108,121,32,114,101,116,114,105,101,118,105,110,103,32,97,32,116,111,107,101,110,32,119,105,116,104,111,117,116,32,114,101,102,114,101,115,104,32,116,111,107,101,110,32,105,115,32,110,111,116,32,112,111,115,115,105,98,108,101,46,92,34,41,59,99,111,110,115,116,32,116,61,101,46,116,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,101,84,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,44,105,61,97,119,97,105,116,40,40,101,44,116,44,105,61,54,48,41,61,62,110,101,119,32,80,114,111,109,105,115,101,40,40,40,111,44,110,41,61,62,123,99,111,110,115,116,32,97,61,119,105,110,100,111,119,46,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,92,34,105,102,114,97,109,101,92,34,41,59,97,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,119,105,100,116,104,92,34,44,92,34,48,92,34,41,44,97,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,104,101,105,103,104,116,92,34,44,92,34,48,92,34,41,44,97,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,92,34,110,111,110,101,92,34,59,99,111,110,115,116,32,115,61,40,41,61,62,123,119,105,110,100,111,119,46,100,111,99,117,109,101,110,116,46,98,111,100,121,46,99,111,110,116,97,105,110,115,40,97,41,38,38,40,119,105,110,100,111,119,46,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,97,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,101,115,115,97,103,101,92,34,44,114,44,33,49,41,41,125,59,108,101,116,32,114,59,99,111,110,115,116,32,99,61,115,101,116,84,105,109,101,111,117,116,40,40,40,41,61,62,123,110,40,110,101,119,32,108,41,44,115,40,41,125,41,44,49,101,51,42,105,41,59,114,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,111,114,105,103,105,110,33,61,116,41,114,101,116,117,114,110,59,105,102,40,33,101,46,100,97,116,97,124,124,92,34,97,117,116,104,111,114,105,122,97,116,105,111,110,95,114,101,115,112,111,110,115,101,92,34,33,61,61,101,46,100,97,116,97,46,116,121,112,101,41,114,101,116,117,114,110,59,99,111,110,115,116,32,105,61,101,46,115,111,117,114,99,101,59,105,38,38,105,46,99,108,111,115,101,40,41,44,101,46,100,97,116,97,46,114,101,115,112,111,110,115,101,46,101,114,114,111,114,63,110,40,100,46,102,114,111,109,80,97,121,108,111,97,100,40,101,46,100,97,116,97,46,114,101,115,112,111,110,115,101,41,41,58,111,40,101,46,100,97,116,97,46,114,101,115,112,111,110,115,101,41,44,99,108,101,97,114,84,105,109,101,111,117,116,40,99,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,101,115,115,97,103,101,92,34,44,114,44,33,49,41,44,115,101,116,84,105,109,101,111,117,116,40,115,44,50,101,51,41,125,44,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,101,115,115,97,103,101,92,34,44,114,44,33,49,41,44,119,105,110,100,111,119,46,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,97,41,44,97,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,115,114,99,92,34,44,101,41,125,41,41,41,40,111,44,116,104,105,115,46,100,111,109,97,105,110,85,114,108,44,116,41,59,105,102,40,110,33,61,61,105,46,115,116,97,116,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,115,116,97,116,101,92,34,41,59,99,111,110,115,116,32,104,61,97,119,97,105,116,32,116,104,105,115,46,95,114,101,113,117,101,115,116,84,111,107,101,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,123,99,111,100,101,95,118,101,114,105,102,105,101,114,58,115,44,99,111,100,101,58,105,46,99,111,100,101,44,103,114,97,110,116,95,116,121,112,101,58,92,34,97,117,116,104,111,114,105,122,97,116,105,111,110,95,99,111,100,101,92,34,44,114,101,100,105,114,101,99,116,95,117,114,105,58,114,44,116,105,109,101,111,117,116,58,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,116,105,109,101,111,117,116,124,124,116,104,105,115,46,104,116,116,112,84,105,109,101,111,117,116,77,115,125,41,44,123,110,111,110,99,101,73,110,58,97,125,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,104,41,44,123,115,99,111,112,101,58,99,44,111,97,117,116,104,84,111,107,101,110,83,99,111,112,101,58,104,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,117,125,41,125,99,97,116,99,104,40,101,41,123,116,104,114,111,119,92,34,108,111,103,105,110,95,114,101,113,117,105,114,101,100,92,34,61,61,61,101,46,101,114,114,111,114,38,38,116,104,105,115,46,108,111,103,111,117,116,40,123,111,112,101,110,85,114,108,58,33,49,125,41,44,101,125,125,97,115,121,110,99,32,95,103,101,116,84,111,107,101,110,85,115,105,110,103,82,101,102,114,101,115,104,84,111,107,101,110,40,101,41,123,99,111,110,115,116,32,116,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,46,103,101,116,40,110,101,119,32,67,40,123,115,99,111,112,101,58,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,124,124,92,34,100,101,102,97,117,108,116,92,34,44,99,108,105,101,110,116,73,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,125,41,41,59,105,102,40,33,40,116,38,38,116,46,114,101,102,114,101,115,104,95,116,111,107,101,110,124,124,116,104,105,115,46,119,111,114,107,101,114,41,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,102,114,101,115,104,84,111,107,101,110,115,70,97,108,108,98,97,99,107,41,114,101,116,117,114,110,32,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,84,111,107,101,110,70,114,111,109,73,70,114,97,109,101,40,101,41,59,116,104,114,111,119,32,110,101,119,32,102,40,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,124,124,92,34,100,101,102,97,117,108,116,92,34,44,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,41,125,99,111,110,115,116,32,105,61,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,114,101,100,105,114,101,99,116,95,117,114,105,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,114,101,100,105,114,101,99,116,95,117,114,105,124,124,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,111,114,105,103,105,110,44,111,61,92,34,110,117,109,98,101,114,92,34,61,61,116,121,112,101,111,102,32,101,46,116,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,63,49,101,51,42,101,46,116,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,58,110,117,108,108,59,116,114,121,123,99,111,110,115,116,32,110,61,97,119,97,105,116,32,116,104,105,115,46,95,114,101,113,117,101,115,116,84,111,107,101,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,123,103,114,97,110,116,95,116,121,112,101,58,92,34,114,101,102,114,101,115,104,95,116,111,107,101,110,92,34,44,114,101,102,114,101,115,104,95,116,111,107,101,110,58,116,38,38,116,46,114,101,102,114,101,115,104,95,116,111,107,101,110,44,114,101,100,105,114,101,99,116,95,117,114,105,58,105,125,41,44,111,38,38,123,116,105,109,101,111,117,116,58,111,125,41,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,110,41,44,123,115,99,111,112,101,58,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,44,111,97,117,116,104,84,111,107,101,110,83,99,111,112,101,58,110,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,101,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,124,124,92,34,100,101,102,97,117,108,116,92,34,125,41,125,99,97,116,99,104,40,116,41,123,105,102,40,40,116,46,109,101,115,115,97,103,101,46,105,110,100,101,120,79,102,40,92,34,77,105,115,115,105,110,103,32,82,101,102,114,101,115,104,32,84,111,107,101,110,92,34,41,62,45,49,124,124,116,46,109,101,115,115,97,103,101,38,38,116,46,109,101,115,115,97,103,101,46,105,110,100,101,120,79,102,40,92,34,105,110,118,97,108,105,100,32,114,101,102,114,101,115,104,32,116,111,107,101,110,92,34,41,62,45,49,41,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,102,114,101,115,104,84,111,107,101,110,115,70,97,108,108,98,97,99,107,41,114,101,116,117,114,110,32,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,84,111,107,101,110,70,114,111,109,73,70,114,97,109,101,40,101,41,59,116,104,114,111,119,32,116,125,125,97,115,121,110,99,32,95,115,97,118,101,69,110,116,114,121,73,110,67,97,99,104,101,40,116,41,123,99,111,110,115,116,123,105,100,95,116,111,107,101,110,58,105,44,100,101,99,111,100,101,100,84,111,107,101,110,58,111,125,61,116,44,110,61,101,40,116,44,91,92,34,105,100,95,116,111,107,101,110,92,34,44,92,34,100,101,99,111,100,101,100,84,111,107,101,110,92,34,93,41,59,116,104,105,115,46,117,115,101,114,67,97,99,104,101,46,115,101,116,40,92,34,64,64,117,115,101,114,64,64,92,34,44,123,105,100,95,116,111,107,101,110,58,105,44,100,101,99,111,100,101,100,84,111,107,101,110,58,111,125,41,44,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,46,115,101,116,73,100,84,111,107,101,110,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,44,116,46,105,100,95,116,111,107,101,110,44,116,46,100,101,99,111,100,101,100,84,111,107,101,110,41,44,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,46,115,101,116,40,110,41,125,97,115,121,110,99,32,95,103,101,116,73,100,84,111,107,101,110,70,114,111,109,67,97,99,104,101,40,41,123,99,111,110,115,116,32,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,124,124,92,34,100,101,102,97,117,108,116,92,34,44,116,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,46,103,101,116,73,100,84,111,107,101,110,40,110,101,119,32,67,40,123,99,108,105,101,110,116,73,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,44,97,117,100,105,101,110,99,101,58,101,44,115,99,111,112,101,58,116,104,105,115,46,115,99,111,112,101,125,41,41,44,105,61,116,104,105,115,46,117,115,101,114,67,97,99,104,101,46,103,101,116,40,92,34,64,64,117,115,101,114,64,64,92,34,41,59,114,101,116,117,114,110,32,116,38,38,116,46,105,100,95,116,111,107,101,110,61,61,61,40,110,117,108,108,61,61,105,63,118,111,105,100,32,48,58,105,46,105,100,95,116,111,107,101,110,41,63,105,58,40,116,104,105,115,46,117,115,101,114,67,97,99,104,101,46,115,101,116,40,92,34,64,64,117,115,101,114,64,64,92,34,44,116,41,44,116,41,125,97,115,121,110,99,32,95,103,101,116,69,110,116,114,121,70,114,111,109,67,97,99,104,101,40,123,115,99,111,112,101,58,101,44,97,117,100,105,101,110,99,101,58,116,44,99,108,105,101,110,116,73,100,58,105,125,41,123,99,111,110,115,116,32,111,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,46,103,101,116,40,110,101,119,32,67,40,123,115,99,111,112,101,58,101,44,97,117,100,105,101,110,99,101,58,116,44,99,108,105,101,110,116,73,100,58,105,125,41,44,54,48,41,59,105,102,40,111,38,38,111,46,97,99,99,101,115,115,95,116,111,107,101,110,41,123,99,111,110,115,116,123,97,99,99,101,115,115,95,116,111,107,101,110,58,101,44,111,97,117,116,104,84,111,107,101,110,83,99,111,112,101,58,116,44,101,120,112,105,114,101,115,95,105,110,58,105,125,61,111,44,110,61,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,73,100,84,111,107,101,110,70,114,111,109,67,97,99,104,101,40,41,59,114,101,116,117,114,110,32,110,38,38,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,105,100,95,116,111,107,101,110,58,110,46,105,100,95,116,111,107,101,110,44,97,99,99,101,115,115,95,116,111,107,101,110,58,101,125,44,116,63,123,115,99,111,112,101,58,116,125,58,110,117,108,108,41,44,123,101,120,112,105,114,101,115,95,105,110,58,105,125,41,125,125,97,115,121,110,99,32,95,114,101,113,117,101,115,116,84,111,107,101,110,40,101,44,116,41,123,99,111,110,115,116,123,110,111,110,99,101,73,110,58,105,44,111,114,103,97,110,105,122,97,116,105,111,110,73,100,58,111,125,61,116,124,124,123,125,44,110,61,97,119,97,105,116,32,79,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,98,97,115,101,85,114,108,58,116,104,105,115,46,100,111,109,97,105,110,85,114,108,44,99,108,105,101,110,116,95,105,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,44,97,117,116,104,48,67,108,105,101,110,116,58,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,48,67,108,105,101,110,116,44,117,115,101,70,111,114,109,68,97,116,97,58,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,70,111,114,109,68,97,116,97,44,116,105,109,101,111,117,116,58,116,104,105,115,46,104,116,116,112,84,105,109,101,111,117,116,77,115,125,44,101,41,44,116,104,105,115,46,119,111,114,107,101,114,41,44,97,61,97,119,97,105,116,32,116,104,105,115,46,95,118,101,114,105,102,121,73,100,84,111,107,101,110,40,110,46,105,100,95,116,111,107,101,110,44,105,44,111,41,59,114,101,116,117,114,110,32,97,119,97,105,116,32,116,104,105,115,46,95,115,97,118,101,69,110,116,114,121,73,110,67,97,99,104,101,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,110,41,44,123,100,101,99,111,100,101,100,84,111,107,101,110,58,97,44,115,99,111,112,101,58,101,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,101,46,97,117,100,105,101,110,99,101,124,124,92,34,100,101,102,97,117,108,116,92,34,125,41,44,110,46,115,99,111,112,101,63,123,111,97,117,116,104,84,111,107,101,110,83,99,111,112,101,58,110,46,115,99,111,112,101,125,58,110,117,108,108,41,44,123,99,108,105,101,110,116,95,105,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,125,41,41,44,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,115,97,118,101,40,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,67,111,111,107,105,101,78,97,109,101,44,33,48,44,123,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,58,116,104,105,115,46,115,101,115,115,105,111,110,67,104,101,99,107,69,120,112,105,114,121,68,97,121,115,44,99,111,111,107,105,101,68,111,109,97,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,111,107,105,101,68,111,109,97,105,110,125,41,44,116,104,105,115,46,95,112,114,111,99,101,115,115,79,114,103,73,100,72,105,110,116,40,97,46,99,108,97,105,109,115,46,111,114,103,95,105,100,41,44,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,110,41,44,123,100,101,99,111,100,101,100,84,111,107,101,110,58,97,125,41,125,125,99,108,97,115,115,32,105,101,123,125,97,115,121,110,99,32,102,117,110,99,116,105,111,110,32,111,101,40,101,41,123,99,111,110,115,116,32,116,61,110,101,119,32,116,101,40,101,41,59,114,101,116,117,114,110,32,97,119,97,105,116,32,116,46,99,104,101,99,107,83,101,115,115,105,111,110,40,41,44,116,125,92,110,47,47,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,97,117,116,104,48,45,115,112,97,45,106,115,46,112,114,111,100,117,99,116,105,111,110,46,101,115,109,46,106,115,46,109,97,112,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,97,117,116,104,48,47,97,117,116,104,48,45,115,112,97,45,106,115,47,100,105,115,116,47,97,117,116,104,48,45,115,112,97,45,106,115,46,112,114,111,100,117,99,116,105,111,110,46,101,115,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,108,105,98,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,108,105,98,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,67,111,110,102,108,105,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,108,105,98,47,110,111,67,111,110,102,108,105,99,116,46,106,115,92,34,41,59,92,110,92,110,118,97,114,32,95,103,108,111,98,97,108,32,61,32,95,105,110,116,101,114,111,112,82,101,113,117,105,114,101,68,101,102,97,117,108,116,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,102,110,47,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,102,110,47,103,108,111,98,97,108,46,106,115,92,34,41,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,110,116,101,114,111,112,82,101,113,117,105,114,101,68,101,102,97,117,108,116,40,111,98,106,41,32,123,32,114,101,116,117,114,110,32,111,98,106,32,38,38,32,111,98,106,46,95,95,101,115,77,111,100,117,108,101,32,63,32,111,98,106,32,58,32,123,32,92,34,100,101,102,97,117,108,116,92,34,58,32,111,98,106,32,125,59,32,125,92,110,92,110,105,102,32,40,95,103,108,111,98,97,108,91,92,34,100,101,102,97,117,108,116,92,34,93,46,95,98,97,98,101,108,80,111,108,121,102,105,108,108,32,38,38,32,116,121,112,101,111,102,32,99,111,110,115,111,108,101,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,38,38,32,99,111,110,115,111,108,101,46,119,97,114,110,41,32,123,92,110,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,34,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,32,105,115,32,108,111,97,100,101,100,32,109,111,114,101,32,116,104,97,110,32,111,110,99,101,32,111,110,32,116,104,105,115,32,112,97,103,101,46,32,84,104,105,115,32,105,115,32,112,114,111,98,97,98,108,121,32,110,111,116,32,100,101,115,105,114,97,98,108,101,47,105,110,116,101,110,100,101,100,32,92,34,32,43,32,92,34,97,110,100,32,109,97,121,32,104,97,118,101,32,99,111,110,115,101,113,117,101,110,99,101,115,32,105,102,32,100,105,102,102,101,114,101,110,116,32,118,101,114,115,105,111,110,115,32,111,102,32,116,104,101,32,112,111,108,121,102,105,108,108,115,32,97,114,101,32,97,112,112,108,105,101,100,32,115,101,113,117,101,110,116,105,97,108,108,121,46,32,92,34,32,43,32,92,34,73,102,32,121,111,117,32,100,111,32,110,101,101,100,32,116,111,32,108,111,97,100,32,116,104,101,32,112,111,108,121,102,105,108,108,32,109,111,114,101,32,116,104,97,110,32,111,110,99,101,44,32,117,115,101,32,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,67,111,110,102,108,105,99,116,32,92,34,32,43,32,92,34,105,110,115,116,101,97,100,32,116,111,32,98,121,112,97,115,115,32,116,104,101,32,119,97,114,110,105,110,103,46,92,34,41,59,92,110,125,92,110,92,110,95,103,108,111,98,97,108,91,92,34,100,101,102,97,117,108,116,92,34,93,46,95,98,97,98,101,108,80,111,108,121,102,105,108,108,32,61,32,116,114,117,101,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,108,105,98,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,108,105,98,47,110,111,67,111,110,102,108,105,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,108,105,98,47,110,111,67,111,110,102,108,105,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,99,111,114,101,45,106,115,47,101,115,54,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,101,115,54,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,99,111,114,101,45,106,115,47,102,110,47,97,114,114,97,121,47,105,110,99,108,117,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,97,114,114,97,121,47,105,110,99,108,117,100,101,115,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,99,111,114,101,45,106,115,47,102,110,47,97,114,114,97,121,47,102,108,97,116,45,109,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,97,114,114,97,121,47,102,108,97,116,45,109,97,112,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,112,97,100,45,115,116,97,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,112,97,100,45,115,116,97,114,116,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,112,97,100,45,101,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,112,97,100,45,101,110,100,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,116,114,105,109,45,115,116,97,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,116,114,105,109,45,115,116,97,114,116,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,116,114,105,109,45,101,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,116,114,105,109,45,101,110,100,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,99,111,114,101,45,106,115,47,102,110,47,115,121,109,98,111,108,47,97,115,121,110,99,45,105,116,101,114,97,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,121,109,98,111,108,47,97,115,121,110,99,45,105,116,101,114,97,116,111,114,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,99,111,114,101,45,106,115,47,102,110,47,111,98,106,101,99,116,47,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,111,98,106,101,99,116,47,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,99,111,114,101,45,106,115,47,102,110,47,111,98,106,101,99,116,47,118,97,108,117,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,111,98,106,101,99,116,47,118,97,108,117,101,115,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,99,111,114,101,45,106,115,47,102,110,47,111,98,106,101,99,116,47,101,110,116,114,105,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,111,98,106,101,99,116,47,101,110,116,114,105,101,115,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,99,111,114,101,45,106,115,47,102,110,47,112,114,111,109,105,115,101,47,102,105,110,97,108,108,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,112,114,111,109,105,115,101,47,102,105,110,97,108,108,121,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,99,111,114,101,45,106,115,47,119,101,98,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,119,101,98,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,114,101,103,101,110,101,114,97,116,111,114,45,114,117,110,116,105,109,101,47,114,117,110,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,114,101,103,101,110,101,114,97,116,111,114,45,114,117,110,116,105,109,101,47,114,117,110,116,105,109,101,46,106,115,92,34,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,108,105,98,47,110,111,67,111,110,102,108,105,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,101,115,54,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,101,115,54,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,121,109,98,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,121,109,98,111,108,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,99,114,101,97,116,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,100,101,102,105,110,101,45,112,114,111,112,101,114,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,100,101,102,105,110,101,45,112,114,111,112,101,114,116,121,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,100,101,102,105,110,101,45,112,114,111,112,101,114,116,105,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,100,101,102,105,110,101,45,112,114,111,112,101,114,116,105,101,115,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,103,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,103,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,107,101,121,115,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,110,97,109,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,110,97,109,101,115,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,102,114,101,101,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,102,114,101,101,122,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,115,101,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,115,101,97,108,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,112,114,101,118,101,110,116,45,101,120,116,101,110,115,105,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,112,114,101,118,101,110,116,45,101,120,116,101,110,115,105,111,110,115,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,45,102,114,111,122,101,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,45,102,114,111,122,101,110,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,45,115,101,97,108,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,45,115,101,97,108,101,100,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,45,101,120,116,101,110,115,105,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,45,101,120,116,101,110,115,105,98,108,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,97,115,115,105,103,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,97,115,115,105,103,110,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,115,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,115,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,116,111,45,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,116,111,45,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,102,117,110,99,116,105,111,110,46,98,105,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,102,117,110,99,116,105,111,110,46,98,105,110,100,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,102,117,110,99,116,105,111,110,46,110,97,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,102,117,110,99,116,105,111,110,46,110,97,109,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,102,117,110,99,116,105,111,110,46,104,97,115,45,105,110,115,116,97,110,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,102,117,110,99,116,105,111,110,46,104,97,115,45,105,110,115,116,97,110,99,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,112,97,114,115,101,45,105,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,112,97,114,115,101,45,105,110,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,112,97,114,115,101,45,102,108,111,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,112,97,114,115,101,45,102,108,111,97,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,99,111,110,115,116,114,117,99,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,99,111,110,115,116,114,117,99,116,111,114,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,116,111,45,102,105,120,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,116,111,45,102,105,120,101,100,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,116,111,45,112,114,101,99,105,115,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,116,111,45,112,114,101,99,105,115,105,111,110,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,101,112,115,105,108,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,101,112,115,105,108,111,110,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,102,105,110,105,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,102,105,110,105,116,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,105,110,116,101,103,101,114,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,110,97,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,110,97,110,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,115,97,102,101,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,115,97,102,101,45,105,110,116,101,103,101,114,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,109,97,120,45,115,97,102,101,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,109,97,120,45,115,97,102,101,45,105,110,116,101,103,101,114,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,109,105,110,45,115,97,102,101,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,109,105,110,45,115,97,102,101,45,105,110,116,101,103,101,114,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,112,97,114,115,101,45,102,108,111,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,112,97,114,115,101,45,102,108,111,97,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,112,97,114,115,101,45,105,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,112,97,114,115,101,45,105,110,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,97,99,111,115,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,97,99,111,115,104,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,97,115,105,110,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,97,115,105,110,104,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,97,116,97,110,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,97,116,97,110,104,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,99,98,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,99,98,114,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,99,108,122,51,50,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,99,108,122,51,50,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,99,111,115,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,99,111,115,104,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,101,120,112,109,49,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,101,120,112,109,49,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,102,114,111,117,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,102,114,111,117,110,100,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,104,121,112,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,104,121,112,111,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,105,109,117,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,105,109,117,108,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,108,111,103,49,48,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,108,111,103,49,48,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,108,111,103,49,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,108,111,103,49,112,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,108,111,103,50,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,108,111,103,50,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,115,105,103,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,115,105,103,110,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,115,105,110,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,115,105,110,104,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,116,97,110,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,116,97,110,104,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,116,114,117,110,99,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,116,114,117,110,99,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,114,111,109,45,99,111,100,101,45,112,111,105,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,114,111,109,45,99,111,100,101,45,112,111,105,110,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,114,97,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,114,97,119,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,116,114,105,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,116,114,105,109,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,105,116,101,114,97,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,105,116,101,114,97,116,111,114,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,99,111,100,101,45,112,111,105,110,116,45,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,99,111,100,101,45,112,111,105,110,116,45,97,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,101,110,100,115,45,119,105,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,101,110,100,115,45,119,105,116,104,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,105,110,99,108,117,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,105,110,99,108,117,100,101,115,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,114,101,112,101,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,114,101,112,101,97,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,116,97,114,116,115,45,119,105,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,116,97,114,116,115,45,119,105,116,104,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,97,110,99,104,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,97,110,99,104,111,114,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,98,105,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,98,105,103,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,98,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,98,108,105,110,107,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,98,111,108,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,98,111,108,100,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,105,120,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,105,120,101,100,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,111,110,116,99,111,108,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,111,110,116,99,111,108,111,114,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,111,110,116,115,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,111,110,116,115,105,122,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,105,116,97,108,105,99,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,105,116,97,108,105,99,115,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,108,105,110,107,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,109,97,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,109,97,108,108,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,116,114,105,107,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,116,114,105,107,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,117,98,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,117,98,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,117,112,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,110,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,110,111,119,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,106,115,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,106,115,111,110,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,105,115,111,45,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,105,115,111,45,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,112,114,105,109,105,116,105,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,115,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,115,45,97,114,114,97,121,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,114,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,114,111,109,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,111,102,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,106,111,105,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,106,111,105,110,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,108,105,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,108,105,99,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,111,114,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,111,114,45,101,97,99,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,111,114,45,101,97,99,104,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,109,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,109,97,112,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,108,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,108,116,101,114,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,111,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,111,109,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,101,118,101,114,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,101,118,101,114,121,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,114,101,100,117,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,114,101,100,117,99,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,114,101,100,117,99,101,45,114,105,103,104,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,114,101,100,117,99,101,45,114,105,103,104,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,110,100,101,120,45,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,110,100,101,120,45,111,102,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,108,97,115,116,45,105,110,100,101,120,45,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,108,97,115,116,45,105,110,100,101,120,45,111,102,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,99,111,112,121,45,119,105,116,104,105,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,99,111,112,121,45,119,105,116,104,105,110,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,108,108,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,110,100,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,110,100,45,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,110,100,45,105,110,100,101,120,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,112,101,99,105,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,112,101,99,105,101,115,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,116,101,114,97,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,116,101,114,97,116,111,114,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,99,111,110,115,116,114,117,99,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,99,111,110,115,116,114,117,99,116,111,114,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,101,120,101,99,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,101,120,101,99,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,116,111,45,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,116,111,45,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,102,108,97,103,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,102,108,97,103,115,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,109,97,116,99,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,109,97,116,99,104,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,114,101,112,108,97,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,114,101,112,108,97,99,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,115,101,97,114,99,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,115,101,97,114,99,104,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,115,112,108,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,115,112,108,105,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,112,114,111,109,105,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,112,114,111,109,105,115,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,112,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,115,101,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,101,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,119,101,97,107,45,109,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,119,101,97,107,45,109,97,112,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,119,101,97,107,45,115,101,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,119,101,97,107,45,115,101,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,97,114,114,97,121,45,98,117,102,102,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,97,114,114,97,121,45,98,117,102,102,101,114,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,100,97,116,97,45,118,105,101,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,100,97,116,97,45,118,105,101,119,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,105,110,116,56,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,105,110,116,56,45,97,114,114,97,121,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,56,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,56,45,97,114,114,97,121,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,56,45,99,108,97,109,112,101,100,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,56,45,99,108,97,109,112,101,100,45,97,114,114,97,121,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,105,110,116,49,54,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,105,110,116,49,54,45,97,114,114,97,121,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,49,54,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,49,54,45,97,114,114,97,121,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,105,110,116,51,50,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,105,110,116,51,50,45,97,114,114,97,121,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,51,50,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,51,50,45,97,114,114,97,121,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,102,108,111,97,116,51,50,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,102,108,111,97,116,51,50,45,97,114,114,97,121,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,102,108,111,97,116,54,52,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,102,108,111,97,116,54,52,45,97,114,114,97,121,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,97,112,112,108,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,97,112,112,108,121,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,100,101,102,105,110,101,45,112,114,111,112,101,114,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,100,101,102,105,110,101,45,112,114,111,112,101,114,116,121,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,100,101,108,101,116,101,45,112,114,111,112,101,114,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,100,101,108,101,116,101,45,112,114,111,112,101,114,116,121,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,101,110,117,109,101,114,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,101,110,117,109,101,114,97,116,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,103,101,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,103,101,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,103,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,103,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,104,97,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,104,97,115,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,105,115,45,101,120,116,101,110,115,105,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,105,115,45,101,120,116,101,110,115,105,98,108,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,111,119,110,45,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,111,119,110,45,107,101,121,115,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,112,114,101,118,101,110,116,45,101,120,116,101,110,115,105,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,112,114,101,118,101,110,116,45,101,120,116,101,110,115,105,111,110,115,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,115,101,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,115,101,116,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,115,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,115,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,101,115,54,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,97,114,114,97,121,47,102,108,97,116,45,109,97,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,97,114,114,97,121,47,102,108,97,116,45,109,97,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,101,115,55,46,97,114,114,97,121,46,102,108,97,116,45,109,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,97,114,114,97,121,46,102,108,97,116,45,109,97,112,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,46,65,114,114,97,121,46,102,108,97,116,77,97,112,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,97,114,114,97,121,47,102,108,97,116,45,109,97,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,97,114,114,97,121,47,105,110,99,108,117,100,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,97,114,114,97,121,47,105,110,99,108,117,100,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,101,115,55,46,97,114,114,97,121,46,105,110,99,108,117,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,97,114,114,97,121,46,105,110,99,108,117,100,101,115,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,46,65,114,114,97,121,46,105,110,99,108,117,100,101,115,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,97,114,114,97,121,47,105,110,99,108,117,100,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,111,98,106,101,99,116,47,101,110,116,114,105,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,111,98,106,101,99,116,47,101,110,116,114,105,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,101,115,55,46,111,98,106,101,99,116,46,101,110,116,114,105,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,111,98,106,101,99,116,46,101,110,116,114,105,101,115,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,46,79,98,106,101,99,116,46,101,110,116,114,105,101,115,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,111,98,106,101,99,116,47,101,110,116,114,105,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,111,98,106,101,99,116,47,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,111,98,106,101,99,116,47,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,101,115,55,46,111,98,106,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,111,98,106,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,46,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,115,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,111,98,106,101,99,116,47,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,111,98,106,101,99,116,47,118,97,108,117,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,111,98,106,101,99,116,47,118,97,108,117,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,101,115,55,46,111,98,106,101,99,116,46,118,97,108,117,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,111,98,106,101,99,116,46,118,97,108,117,101,115,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,46,79,98,106,101,99,116,46,118,97,108,117,101,115,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,111,98,106,101,99,116,47,118,97,108,117,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,112,114,111,109,105,115,101,47,102,105,110,97,108,108,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,112,114,111,109,105,115,101,47,102,105,110,97,108,108,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,101,115,54,46,112,114,111,109,105,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,112,114,111,109,105,115,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,101,115,55,46,112,114,111,109,105,115,101,46,102,105,110,97,108,108,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,112,114,111,109,105,115,101,46,102,105,110,97,108,108,121,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,46,80,114,111,109,105,115,101,91,92,34,102,105,110,97,108,108,121,92,34,93,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,112,114,111,109,105,115,101,47,102,105,110,97,108,108,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,112,97,100,45,101,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,112,97,100,45,101,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,112,97,100,45,101,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,112,97,100,45,101,110,100,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,46,83,116,114,105,110,103,46,112,97,100,69,110,100,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,112,97,100,45,101,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,112,97,100,45,115,116,97,114,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,112,97,100,45,115,116,97,114,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,112,97,100,45,115,116,97,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,112,97,100,45,115,116,97,114,116,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,46,83,116,114,105,110,103,46,112,97,100,83,116,97,114,116,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,112,97,100,45,115,116,97,114,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,116,114,105,109,45,101,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,116,114,105,109,45,101,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,116,114,105,109,45,114,105,103,104,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,116,114,105,109,45,114,105,103,104,116,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,46,83,116,114,105,110,103,46,116,114,105,109,82,105,103,104,116,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,116,114,105,109,45,101,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,116,114,105,109,45,115,116,97,114,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,116,114,105,109,45,115,116,97,114,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,116,114,105,109,45,108,101,102,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,116,114,105,109,45,108,101,102,116,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,46,83,116,114,105,110,103,46,116,114,105,109,76,101,102,116,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,116,114,105,110,103,47,116,114,105,109,45,115,116,97,114,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,121,109,98,111,108,47,97,115,121,110,99,45,105,116,101,114,97,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,121,109,98,111,108,47,97,115,121,110,99,45,105,116,101,114,97,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,101,115,55,46,115,121,109,98,111,108,46,97,115,121,110,99,45,105,116,101,114,97,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,121,109,98,111,108,46,97,115,121,110,99,45,105,116,101,114,97,116,111,114,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,111,100,117,108,101,115,47,95,119,107,115,45,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,45,101,120,116,46,106,115,92,34,41,46,102,41,40,39,97,115,121,110,99,73,116,101,114,97,116,111,114,39,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,102,110,47,115,121,109,98,111,108,47,97,115,121,110,99,45,105,116,101,114,97,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,102,110,47,103,108,111,98,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,102,110,47,103,108,111,98,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,101,115,55,46,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,101,115,55,46,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,46,103,108,111,98,97,108,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,102,110,47,103,108,111,98,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,105,116,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,105,116,32,43,32,39,32,105,115,32,110,111,116,32,97,32,102,117,110,99,116,105,111,110,33,39,41,59,92,110,32,32,114,101,116,117,114,110,32,105,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,105,116,41,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,105,116,32,43,32,39,32,105,115,32,110,111,116,32,97,110,32,111,98,106,101,99,116,33,39,41,59,92,110,32,32,114,101,116,117,114,110,32,105,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,99,111,114,101,32,61,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,123,32,118,101,114,115,105,111,110,58,32,39,50,46,54,46,49,50,39,32,125,59,92,110,105,102,32,40,116,121,112,101,111,102,32,95,95,101,32,61,61,32,39,110,117,109,98,101,114,39,41,32,95,95,101,32,61,32,99,111,114,101,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,117,110,100,101,102,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,111,112,116,105,111,110,97,108,32,47,32,115,105,109,112,108,101,32,99,111,110,116,101,120,116,32,98,105,110,100,105,110,103,92,110,118,97,114,32,97,70,117,110,99,116,105,111,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,45,102,117,110,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,102,110,44,32,116,104,97,116,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,97,70,117,110,99,116,105,111,110,40,102,110,41,59,92,110,32,32,105,102,32,40,116,104,97,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,114,101,116,117,114,110,32,102,110,59,92,110,32,32,115,119,105,116,99,104,32,40,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,99,97,115,101,32,49,58,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,97,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,46,99,97,108,108,40,116,104,97,116,44,32,97,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,99,97,115,101,32,50,58,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,46,99,97,108,108,40,116,104,97,116,44,32,97,44,32,98,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,99,97,115,101,32,51,58,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,97,44,32,98,44,32,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,46,99,97,108,108,40,116,104,97,116,44,32,97,44,32,98,44,32,99,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,47,42,32,46,46,46,97,114,103,115,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,110,46,97,112,112,108,121,40,116,104,97,116,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,125,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,84,104,97,110,107,39,115,32,73,69,56,32,102,111,114,32,104,105,115,32,102,117,110,110,121,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,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,123,125,44,32,39,97,39,44,32,123,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,55,59,32,125,32,125,41,46,97,32,33,61,32,55,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,100,111,109,45,99,114,101,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,100,111,109,45,99,114,101,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,100,111,99,117,109,101,110,116,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,46,100,111,99,117,109,101,110,116,41,59,92,110,47,47,32,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,32,105,115,32,39,111,98,106,101,99,116,39,32,105,110,32,111,108,100,32,73,69,92,110,118,97,114,32,105,115,32,61,32,105,115,79,98,106,101,99,116,40,100,111,99,117,109,101,110,116,41,32,38,38,32,105,115,79,98,106,101,99,116,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,32,63,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,105,116,41,32,58,32,123,125,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,100,111,109,45,99,114,101,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,99,111,114,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,59,92,110,118,97,114,32,99,116,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,116,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,92,34,41,59,92,110,118,97,114,32,104,105,100,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,92,34,41,59,92,110,118,97,114,32,104,97,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,97,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,92,34,41,59,92,110,118,97,114,32,80,82,79,84,79,84,89,80,69,32,61,32,39,112,114,111,116,111,116,121,112,101,39,59,92,110,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,102,117,110,99,116,105,111,110,32,40,116,121,112,101,44,32,110,97,109,101,44,32,115,111,117,114,99,101,41,32,123,92,110,32,32,118,97,114,32,73,83,95,70,79,82,67,69,68,32,61,32,116,121,112,101,32,38,32,36,101,120,112,111,114,116,46,70,59,92,110,32,32,118,97,114,32,73,83,95,71,76,79,66,65,76,32,61,32,116,121,112,101,32,38,32,36,101,120,112,111,114,116,46,71,59,92,110,32,32,118,97,114,32,73,83,95,83,84,65,84,73,67,32,61,32,116,121,112,101,32,38,32,36,101,120,112,111,114,116,46,83,59,92,110,32,32,118,97,114,32,73,83,95,80,82,79,84,79,32,61,32,116,121,112,101,32,38,32,36,101,120,112,111,114,116,46,80,59,92,110,32,32,118,97,114,32,73,83,95,66,73,78,68,32,61,32,116,121,112,101,32,38,32,36,101,120,112,111,114,116,46,66,59,92,110,32,32,118,97,114,32,73,83,95,87,82,65,80,32,61,32,116,121,112,101,32,38,32,36,101,120,112,111,114,116,46,87,59,92,110,32,32,118,97,114,32,101,120,112,111,114,116,115,32,61,32,73,83,95,71,76,79,66,65,76,32,63,32,99,111,114,101,32,58,32,99,111,114,101,91,110,97,109,101,93,32,124,124,32,40,99,111,114,101,91,110,97,109,101,93,32,61,32,123,125,41,59,92,110,32,32,118,97,114,32,101,120,112,80,114,111,116,111,32,61,32,101,120,112,111,114,116,115,91,80,82,79,84,79,84,89,80,69,93,59,92,110,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,73,83,95,71,76,79,66,65,76,32,63,32,103,108,111,98,97,108,32,58,32,73,83,95,83,84,65,84,73,67,32,63,32,103,108,111,98,97,108,91,110,97,109,101,93,32,58,32,40,103,108,111,98,97,108,91,110,97,109,101,93,32,124,124,32,123,125,41,91,80,82,79,84,79,84,89,80,69,93,59,92,110,32,32,118,97,114,32,107,101,121,44,32,111,119,110,44,32,111,117,116,59,92,110,32,32,105,102,32,40,73,83,95,71,76,79,66,65,76,41,32,115,111,117,114,99,101,32,61,32,110,97,109,101,59,92,110,32,32,102,111,114,32,40,107,101,121,32,105,110,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,47,47,32,99,111,110,116,97,105,110,115,32,105,110,32,110,97,116,105,118,101,92,110,32,32,32,32,111,119,110,32,61,32,33,73,83,95,70,79,82,67,69,68,32,38,38,32,116,97,114,103,101,116,32,38,38,32,116,97,114,103,101,116,91,107,101,121,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,105,102,32,40,111,119,110,32,38,38,32,104,97,115,40,101,120,112,111,114,116,115,44,32,107,101,121,41,41,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,47,47,32,101,120,112,111,114,116,32,110,97,116,105,118,101,32,111,114,32,112,97,115,115,101,100,92,110,32,32,32,32,111,117,116,32,61,32,111,119,110,32,63,32,116,97,114,103,101,116,91,107,101,121,93,32,58,32,115,111,117,114,99,101,91,107,101,121,93,59,92,110,32,32,32,32,47,47,32,112,114,101,118,101,110,116,32,103,108,111,98,97,108,32,112,111,108,108,117,116,105,111,110,32,102,111,114,32,110,97,109,101,115,112,97,99,101,115,92,110,32,32,32,32,101,120,112,111,114,116,115,91,107,101,121,93,32,61,32,73,83,95,71,76,79,66,65,76,32,38,38,32,116,121,112,101,111,102,32,116,97,114,103,101,116,91,107,101,121,93,32,33,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,115,111,117,114,99,101,91,107,101,121,93,92,110,32,32,32,32,47,47,32,98,105,110,100,32,116,105,109,101,114,115,32,116,111,32,103,108,111,98,97,108,32,102,111,114,32,99,97,108,108,32,102,114,111,109,32,101,120,112,111,114,116,32,99,111,110,116,101,120,116,92,110,32,32,32,32,58,32,73,83,95,66,73,78,68,32,38,38,32,111,119,110,32,63,32,99,116,120,40,111,117,116,44,32,103,108,111,98,97,108,41,92,110,32,32,32,32,47,47,32,119,114,97,112,32,103,108,111,98,97,108,32,99,111,110,115,116,114,117,99,116,111,114,115,32,102,111,114,32,112,114,101,118,101,110,116,32,99,104,97,110,103,101,32,116,104,101,109,32,105,110,32,108,105,98,114,97,114,121,92,110,32,32,32,32,58,32,73,83,95,87,82,65,80,32,38,38,32,116,97,114,103,101,116,91,107,101,121,93,32,61,61,32,111,117,116,32,63,32,40,102,117,110,99,116,105,111,110,32,40,67,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,70,32,61,32,102,117,110,99,116,105,111,110,32,40,97,44,32,98,44,32,99,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,67,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,48,58,32,114,101,116,117,114,110,32,110,101,119,32,67,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,49,58,32,114,101,116,117,114,110,32,110,101,119,32,67,40,97,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,50,58,32,114,101,116,117,114,110,32,110,101,119,32,67,40,97,44,32,98,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,114,101,116,117,114,110,32,110,101,119,32,67,40,97,44,32,98,44,32,99,41,59,92,110,32,32,32,32,32,32,32,32,125,32,114,101,116,117,114,110,32,67,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,70,91,80,82,79,84,79,84,89,80,69,93,32,61,32,67,91,80,82,79,84,79,84,89,80,69,93,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,70,59,92,110,32,32,32,32,47,47,32,109,97,107,101,32,115,116,97,116,105,99,32,118,101,114,115,105,111,110,115,32,102,111,114,32,112,114,111,116,111,116,121,112,101,32,109,101,116,104,111,100,115,92,110,32,32,32,32,125,41,40,111,117,116,41,32,58,32,73,83,95,80,82,79,84,79,32,38,38,32,116,121,112,101,111,102,32,111,117,116,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,99,116,120,40,70,117,110,99,116,105,111,110,46,99,97,108,108,44,32,111,117,116,41,32,58,32,111,117,116,59,92,110,32,32,32,32,47,47,32,101,120,112,111,114,116,32,112,114,111,116,111,32,109,101,116,104,111,100,115,32,116,111,32,99,111,114,101,46,37,67,79,78,83,84,82,85,67,84,79,82,37,46,109,101,116,104,111,100,115,46,37,78,65,77,69,37,92,110,32,32,32,32,105,102,32,40,73,83,95,80,82,79,84,79,41,32,123,92,110,32,32,32,32,32,32,40,101,120,112,111,114,116,115,46,118,105,114,116,117,97,108,32,124,124,32,40,101,120,112,111,114,116,115,46,118,105,114,116,117,97,108,32,61,32,123,125,41,41,91,107,101,121,93,32,61,32,111,117,116,59,92,110,32,32,32,32,32,32,47,47,32,101,120,112,111,114,116,32,112,114,111,116,111,32,109,101,116,104,111,100,115,32,116,111,32,99,111,114,101,46,37,67,79,78,83,84,82,85,67,84,79,82,37,46,112,114,111,116,111,116,121,112,101,46,37,78,65,77,69,37,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,38,32,36,101,120,112,111,114,116,46,82,32,38,38,32,101,120,112,80,114,111,116,111,32,38,38,32,33,101,120,112,80,114,111,116,111,91,107,101,121,93,41,32,104,105,100,101,40,101,120,112,80,114,111,116,111,44,32,107,101,121,44,32,111,117,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,47,47,32,116,121,112,101,32,98,105,116,109,97,112,92,110,36,101,120,112,111,114,116,46,70,32,61,32,49,59,32,32,32,47,47,32,102,111,114,99,101,100,92,110,36,101,120,112,111,114,116,46,71,32,61,32,50,59,32,32,32,47,47,32,103,108,111,98,97,108,92,110,36,101,120,112,111,114,116,46,83,32,61,32,52,59,32,32,32,47,47,32,115,116,97,116,105,99,92,110,36,101,120,112,111,114,116,46,80,32,61,32,56,59,32,32,32,47,47,32,112,114,111,116,111,92,110,36,101,120,112,111,114,116,46,66,32,61,32,49,54,59,32,32,47,47,32,98,105,110,100,92,110,36,101,120,112,111,114,116,46,87,32,61,32,51,50,59,32,32,47,47,32,119,114,97,112,92,110,36,101,120,112,111,114,116,46,85,32,61,32,54,52,59,32,32,47,47,32,115,97,102,101,92,110,36,101,120,112,111,114,116,46,82,32,61,32,49,50,56,59,32,47,47,32,114,101,97,108,32,112,114,111,116,111,32,109,101,116,104,111,100,32,102,111,114,32,96,108,105,98,114,97,114,121,96,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,36,101,120,112,111,114,116,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,101,120,101,99,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,33,33,101,120,101,99,40,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,122,108,111,105,114,111,99,107,47,99,111,114,101,45,106,115,47,105,115,115,117,101,115,47,56,54,35,105,115,115,117,101,99,111,109,109,101,110,116,45,49,49,53,55,53,57,48,50,56,92,110,118,97,114,32,103,108,111,98,97,108,32,61,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,119,105,110,100,111,119,46,77,97,116,104,32,61,61,32,77,97,116,104,92,110,32,32,63,32,119,105,110,100,111,119,32,58,32,116,121,112,101,111,102,32,115,101,108,102,32,33,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,115,101,108,102,46,77,97,116,104,32,61,61,32,77,97,116,104,32,63,32,115,101,108,102,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,110,101,119,45,102,117,110,99,92,110,32,32,58,32,70,117,110,99,116,105,111,110,40,39,114,101,116,117,114,110,32,116,104,105,115,39,41,40,41,59,92,110,105,102,32,40,116,121,112,101,111,102,32,95,95,103,32,61,61,32,39,110,117,109,98,101,114,39,41,32,95,95,103,32,61,32,103,108,111,98,97,108,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,117,110,100,101,102,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,32,61,32,123,125,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,44,32,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,105,116,44,32,107,101,121,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,100,80,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,59,92,110,118,97,114,32,99,114,101,97,116,101,68,101,115,99,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,32,63,32,102,117,110,99,116,105,111,110,32,40,111,98,106,101,99,116,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,80,46,102,40,111,98,106,101,99,116,44,32,107,101,121,44,32,99,114,101,97,116,101,68,101,115,99,40,49,44,32,118,97,108,117,101,41,41,59,92,110,125,32,58,32,102,117,110,99,116,105,111,110,32,40,111,98,106,101,99,116,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,111,98,106,101,99,116,91,107,101,121,93,32,61,32,118,97,108,117,101,59,92,110,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,105,101,56,45,100,111,109,45,100,101,102,105,110,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,105,101,56,45,100,111,109,45,100,101,102,105,110,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,32,38,38,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,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,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,111,109,45,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,100,111,109,45,99,114,101,97,116,101,46,106,115,92,34,41,40,39,100,105,118,39,41,44,32,39,97,39,44,32,123,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,55,59,32,125,32,125,41,46,97,32,33,61,32,55,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,105,101,56,45,100,111,109,45,100,101,102,105,110,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,105,116,32,61,61,61,32,39,111,98,106,101,99,116,39,32,63,32,105,116,32,33,61,61,32,110,117,108,108,32,58,32,116,121,112,101,111,102,32,105,116,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,73,69,56,95,68,79,77,95,68,69,70,73,78,69,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,101,56,45,100,111,109,45,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,105,101,56,45,100,111,109,45,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,80,114,105,109,105,116,105,118,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,112,114,105,109,105,116,105,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,92,34,41,59,92,110,118,97,114,32,100,80,32,61,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,59,92,110,92,110,101,120,112,111,114,116,115,46,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,32,63,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,32,58,32,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,79,44,32,80,44,32,65,116,116,114,105,98,117,116,101,115,41,32,123,92,110,32,32,97,110,79,98,106,101,99,116,40,79,41,59,92,110,32,32,80,32,61,32,116,111,80,114,105,109,105,116,105,118,101,40,80,44,32,116,114,117,101,41,59,92,110,32,32,97,110,79,98,106,101,99,116,40,65,116,116,114,105,98,117,116,101,115,41,59,92,110,32,32,105,102,32,40,73,69,56,95,68,79,77,95,68,69,70,73,78,69,41,32,116,114,121,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,80,40,79,44,32,80,44,32,65,116,116,114,105,98,117,116,101,115,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,92,110,32,32,105,102,32,40,39,103,101,116,39,32,105,110,32,65,116,116,114,105,98,117,116,101,115,32,124,124,32,39,115,101,116,39,32,105,110,32,65,116,116,114,105,98,117,116,101,115,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,39,65,99,99,101,115,115,111,114,115,32,110,111,116,32,115,117,112,112,111,114,116,101,100,33,39,41,59,92,110,32,32,105,102,32,40,39,118,97,108,117,101,39,32,105,110,32,65,116,116,114,105,98,117,116,101,115,41,32,79,91,80,93,32,61,32,65,116,116,114,105,98,117,116,101,115,46,118,97,108,117,101,59,92,110,32,32,114,101,116,117,114,110,32,79,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,98,105,116,109,97,112,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,33,40,98,105,116,109,97,112,32,38,32,49,41,44,92,110,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,33,40,98,105,116,109,97,112,32,38,32,50,41,44,92,110,32,32,32,32,119,114,105,116,97,98,108,101,58,32,33,40,98,105,116,109,97,112,32,38,32,52,41,44,92,110,32,32,32,32,118,97,108,117,101,58,32,118,97,108,117,101,92,110,32,32,125,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,55,46,49,46,49,32,84,111,80,114,105,109,105,116,105,118,101,40,105,110,112,117,116,32,91,44,32,80,114,101,102,101,114,114,101,100,84,121,112,101,93,41,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,47,32,105,110,115,116,101,97,100,32,111,102,32,116,104,101,32,69,83,54,32,115,112,101,99,32,118,101,114,115,105,111,110,44,32,119,101,32,100,105,100,110,39,116,32,105,109,112,108,101,109,101,110,116,32,64,64,116,111,80,114,105,109,105,116,105,118,101,32,99,97,115,101,92,110,47,47,32,97,110,100,32,116,104,101,32,115,101,99,111,110,100,32,97,114,103,117,109,101,110,116,32,45,32,102,108,97,103,32,45,32,112,114,101,102,101,114,114,101,100,32,116,121,112,101,32,105,115,32,97,32,115,116,114,105,110,103,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,44,32,83,41,32,123,92,110,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,105,116,41,41,32,114,101,116,117,114,110,32,105,116,59,92,110,32,32,118,97,114,32,102,110,44,32,118,97,108,59,92,110,32,32,105,102,32,40,83,32,38,38,32,116,121,112,101,111,102,32,40,102,110,32,61,32,105,116,46,116,111,83,116,114,105,110,103,41,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,33,105,115,79,98,106,101,99,116,40,118,97,108,32,61,32,102,110,46,99,97,108,108,40,105,116,41,41,41,32,114,101,116,117,114,110,32,118,97,108,59,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,40,102,110,32,61,32,105,116,46,118,97,108,117,101,79,102,41,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,33,105,115,79,98,106,101,99,116,40,118,97,108,32,61,32,102,110,46,99,97,108,108,40,105,116,41,41,41,32,114,101,116,117,114,110,32,118,97,108,59,92,110,32,32,105,102,32,40,33,83,32,38,38,32,116,121,112,101,111,102,32,40,102,110,32,61,32,105,116,46,116,111,83,116,114,105,110,103,41,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,33,105,115,79,98,106,101,99,116,40,118,97,108,32,61,32,102,110,46,99,97,108,108,40,105,116,41,41,41,32,114,101,116,117,114,110,32,118,97,108,59,92,110,32,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,92,34,67,97,110,39,116,32,99,111,110,118,101,114,116,32,111,98,106,101,99,116,32,116,111,32,112,114,105,109,105,116,105,118,101,32,118,97,108,117,101,92,34,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,101,115,55,46,103,108,111,98,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,101,115,55,46,103,108,111,98,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,99,51,57,47,112,114,111,112,111,115,97,108,45,103,108,111,98,97,108,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,71,44,32,123,32,103,108,111,98,97,108,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,108,105,98,114,97,114,121,47,109,111,100,117,108,101,115,47,101,115,55,46,103,108,111,98,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,105,116,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,105,116,32,43,32,39,32,105,115,32,110,111,116,32,97,32,102,117,110,99,116,105,111,110,33,39,41,59,92,110,32,32,114,101,116,117,114,110,32,105,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,110,117,109,98,101,114,45,118,97,108,117,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,110,117,109,98,101,114,45,118,97,108,117,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,99,111,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,102,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,44,32,109,115,103,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,105,116,32,33,61,32,39,110,117,109,98,101,114,39,32,38,38,32,99,111,102,40,105,116,41,32,33,61,32,39,78,117,109,98,101,114,39,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,109,115,103,41,59,92,110,32,32,114,101,116,117,114,110,32,43,105,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,110,117,109,98,101,114,45,118,97,108,117,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,50,46,49,46,51,46,51,49,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,91,64,64,117,110,115,99,111,112,97,98,108,101,115,93,92,110,118,97,114,32,85,78,83,67,79,80,65,66,76,69,83,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,117,110,115,99,111,112,97,98,108,101,115,39,41,59,92,110,118,97,114,32,65,114,114,97,121,80,114,111,116,111,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,59,92,110,105,102,32,40,65,114,114,97,121,80,114,111,116,111,91,85,78,83,67,79,80,65,66,76,69,83,93,32,61,61,32,117,110,100,101,102,105,110,101,100,41,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,92,34,41,40,65,114,114,97,121,80,114,111,116,111,44,32,85,78,83,67,79,80,65,66,76,69,83,44,32,123,125,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,65,114,114,97,121,80,114,111,116,111,91,85,78,83,67,79,80,65,66,76,69,83,93,91,107,101,121,93,32,61,32,116,114,117,101,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,118,97,110,99,101,45,115,116,114,105,110,103,45,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,118,97,110,99,101,45,115,116,114,105,110,103,45,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,97,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,97,116,46,106,115,92,34,41,40,116,114,117,101,41,59,92,110,92,110,32,47,47,32,96,65,100,118,97,110,99,101,83,116,114,105,110,103,73,110,100,101,120,96,32,97,98,115,116,114,97,99,116,32,111,112,101,114,97,116,105,111,110,92,110,47,47,32,104,116,116,112,115,58,47,47,116,99,51,57,46,103,105,116,104,117,98,46,105,111,47,101,99,109,97,50,54,50,47,35,115,101,99,45,97,100,118,97,110,99,101,115,116,114,105,110,103,105,110,100,101,120,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,83,44,32,105,110,100,101,120,44,32,117,110,105,99,111,100,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,110,100,101,120,32,43,32,40,117,110,105,99,111,100,101,32,63,32,97,116,40,83,44,32,105,110,100,101,120,41,46,108,101,110,103,116,104,32,58,32,49,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,118,97,110,99,101,45,115,116,114,105,110,103,45,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,105,110,115,116,97,110,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,105,110,115,116,97,110,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,44,32,67,111,110,115,116,114,117,99,116,111,114,44,32,110,97,109,101,44,32,102,111,114,98,105,100,100,101,110,70,105,101,108,100,41,32,123,92,110,32,32,105,102,32,40,33,40,105,116,32,105,110,115,116,97,110,99,101,111,102,32,67,111,110,115,116,114,117,99,116,111,114,41,32,124,124,32,40,102,111,114,98,105,100,100,101,110,70,105,101,108,100,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,102,111,114,98,105,100,100,101,110,70,105,101,108,100,32,105,110,32,105,116,41,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,110,97,109,101,32,43,32,39,58,32,105,110,99,111,114,114,101,99,116,32,105,110,118,111,99,97,116,105,111,110,33,39,41,59,92,110,32,32,125,32,114,101,116,117,114,110,32,105,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,105,110,115,116,97,110,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,105,116,41,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,105,116,32,43,32,39,32,105,115,32,110,111,116,32,97,110,32,111,98,106,101,99,116,33,39,41,59,92,110,32,32,114,101,116,117,114,110,32,105,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,99,111,112,121,45,119,105,116,104,105,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,99,111,112,121,45,119,105,116,104,105,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,47,47,32,50,50,46,49,46,51,46,51,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,99,111,112,121,87,105,116,104,105,110,40,116,97,114,103,101,116,44,32,115,116,97,114,116,44,32,101,110,100,32,61,32,116,104,105,115,46,108,101,110,103,116,104,41,92,110,92,110,118,97,114,32,116,111,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,91,93,46,99,111,112,121,87,105,116,104,105,110,32,124,124,32,102,117,110,99,116,105,111,110,32,99,111,112,121,87,105,116,104,105,110,40,116,97,114,103,101,116,32,47,42,32,61,32,48,32,42,47,44,32,115,116,97,114,116,32,47,42,32,61,32,48,44,32,101,110,100,32,61,32,64,108,101,110,103,116,104,32,42,47,41,32,123,92,110,32,32,118,97,114,32,79,32,61,32,116,111,79,98,106,101,99,116,40,116,104,105,115,41,59,92,110,32,32,118,97,114,32,108,101,110,32,61,32,116,111,76,101,110,103,116,104,40,79,46,108,101,110,103,116,104,41,59,92,110,32,32,118,97,114,32,116,111,32,61,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,40,116,97,114,103,101,116,44,32,108,101,110,41,59,92,110,32,32,118,97,114,32,102,114,111,109,32,61,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,40,115,116,97,114,116,44,32,108,101,110,41,59,92,110,32,32,118,97,114,32,101,110,100,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,118,97,114,32,99,111,117,110,116,32,61,32,77,97,116,104,46,109,105,110,40,40,101,110,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,108,101,110,32,58,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,40,101,110,100,44,32,108,101,110,41,41,32,45,32,102,114,111,109,44,32,108,101,110,32,45,32,116,111,41,59,92,110,32,32,118,97,114,32,105,110,99,32,61,32,49,59,92,110,32,32,105,102,32,40,102,114,111,109,32,60,32,116,111,32,38,38,32,116,111,32,60,32,102,114,111,109,32,43,32,99,111,117,110,116,41,32,123,92,110,32,32,32,32,105,110,99,32,61,32,45,49,59,92,110,32,32,32,32,102,114,111,109,32,43,61,32,99,111,117,110,116,32,45,32,49,59,92,110,32,32,32,32,116,111,32,43,61,32,99,111,117,110,116,32,45,32,49,59,92,110,32,32,125,92,110,32,32,119,104,105,108,101,32,40,99,111,117,110,116,45,45,32,62,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,102,114,111,109,32,105,110,32,79,41,32,79,91,116,111,93,32,61,32,79,91,102,114,111,109,93,59,92,110,32,32,32,32,101,108,115,101,32,100,101,108,101,116,101,32,79,91,116,111,93,59,92,110,32,32,32,32,116,111,32,43,61,32,105,110,99,59,92,110,32,32,32,32,102,114,111,109,32,43,61,32,105,110,99,59,92,110,32,32,125,32,114,101,116,117,114,110,32,79,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,99,111,112,121,45,119,105,116,104,105,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,102,105,108,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,102,105,108,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,47,47,32,50,50,46,49,46,51,46,54,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,108,108,40,118,97,108,117,101,44,32,115,116,97,114,116,32,61,32,48,44,32,101,110,100,32,61,32,116,104,105,115,46,108,101,110,103,116,104,41,92,110,92,110,118,97,114,32,116,111,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,102,105,108,108,40,118,97,108,117,101,32,47,42,32,44,32,115,116,97,114,116,32,61,32,48,44,32,101,110,100,32,61,32,64,108,101,110,103,116,104,32,42,47,41,32,123,92,110,32,32,118,97,114,32,79,32,61,32,116,111,79,98,106,101,99,116,40,116,104,105,115,41,59,92,110,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,116,111,76,101,110,103,116,104,40,79,46,108,101,110,103,116,104,41,59,92,110,32,32,118,97,114,32,97,76,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,40,97,76,101,110,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,44,32,108,101,110,103,116,104,41,59,92,110,32,32,118,97,114,32,101,110,100,32,61,32,97,76,101,110,32,62,32,50,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,118,97,114,32,101,110,100,80,111,115,32,61,32,101,110,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,108,101,110,103,116,104,32,58,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,40,101,110,100,44,32,108,101,110,103,116,104,41,59,92,110,32,32,119,104,105,108,101,32,40,101,110,100,80,111,115,32,62,32,105,110,100,101,120,41,32,79,91,105,110,100,101,120,43,43,93,32,61,32,118,97,108,117,101,59,92,110,32,32,114,101,116,117,114,110,32,79,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,102,105,108,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,105,110,99,108,117,100,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,105,110,99,108,117,100,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,102,97,108,115,101,32,45,62,32,65,114,114,97,121,35,105,110,100,101,120,79,102,92,110,47,47,32,116,114,117,101,32,32,45,62,32,65,114,114,97,121,35,105,110,99,108,117,100,101,115,92,110,118,97,114,32,116,111,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,73,83,95,73,78,67,76,85,68,69,83,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,36,116,104,105,115,44,32,101,108,44,32,102,114,111,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,79,32,61,32,116,111,73,79,98,106,101,99,116,40,36,116,104,105,115,41,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,116,111,76,101,110,103,116,104,40,79,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,40,102,114,111,109,73,110,100,101,120,44,32,108,101,110,103,116,104,41,59,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,59,92,110,32,32,32,32,47,47,32,65,114,114,97,121,35,105,110,99,108,117,100,101,115,32,117,115,101,115,32,83,97,109,101,86,97,108,117,101,90,101,114,111,32,101,113,117,97,108,105,116,121,32,97,108,103,111,114,105,116,104,109,92,110,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,115,101,108,102,45,99,111,109,112,97,114,101,92,110,32,32,32,32,105,102,32,40,73,83,95,73,78,67,76,85,68,69,83,32,38,38,32,101,108,32,33,61,32,101,108,41,32,119,104,105,108,101,32,40,108,101,110,103,116,104,32,62,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,79,91,105,110,100,101,120,43,43,93,59,92,110,32,32,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,115,101,108,102,45,99,111,109,112,97,114,101,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,33,61,32,118,97,108,117,101,41,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,47,47,32,65,114,114,97,121,35,105,110,100,101,120,79,102,32,105,103,110,111,114,101,115,32,104,111,108,101,115,44,32,65,114,114,97,121,35,105,110,99,108,117,100,101,115,32,45,32,110,111,116,92,110,32,32,32,32,125,32,101,108,115,101,32,102,111,114,32,40,59,108,101,110,103,116,104,32,62,32,105,110,100,101,120,59,32,105,110,100,101,120,43,43,41,32,105,102,32,40,73,83,95,73,78,67,76,85,68,69,83,32,124,124,32,105,110,100,101,120,32,105,110,32,79,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,79,91,105,110,100,101,120,93,32,61,61,61,32,101,108,41,32,114,101,116,117,114,110,32,73,83,95,73,78,67,76,85,68,69,83,32,124,124,32,105,110,100,101,120,32,124,124,32,48,59,92,110,32,32,32,32,125,32,114,101,116,117,114,110,32,33,73,83,95,73,78,67,76,85,68,69,83,32,38,38,32,45,49,59,92,110,32,32,125,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,105,110,99,108,117,100,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,48,32,45,62,32,65,114,114,97,121,35,102,111,114,69,97,99,104,92,110,47,47,32,49,32,45,62,32,65,114,114,97,121,35,109,97,112,92,110,47,47,32,50,32,45,62,32,65,114,114,97,121,35,102,105,108,116,101,114,92,110,47,47,32,51,32,45,62,32,65,114,114,97,121,35,115,111,109,101,92,110,47,47,32,52,32,45,62,32,65,114,114,97,121,35,101,118,101,114,121,92,110,47,47,32,53,32,45,62,32,65,114,114,97,121,35,102,105,110,100,92,110,47,47,32,54,32,45,62,32,65,114,114,97,121,35,102,105,110,100,73,110,100,101,120,92,110,118,97,114,32,99,116,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,116,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,92,34,41,59,92,110,118,97,114,32,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,97,115,99,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,115,112,101,99,105,101,115,45,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,115,112,101,99,105,101,115,45,99,114,101,97,116,101,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,84,89,80,69,44,32,36,99,114,101,97,116,101,41,32,123,92,110,32,32,118,97,114,32,73,83,95,77,65,80,32,61,32,84,89,80,69,32,61,61,32,49,59,92,110,32,32,118,97,114,32,73,83,95,70,73,76,84,69,82,32,61,32,84,89,80,69,32,61,61,32,50,59,92,110,32,32,118,97,114,32,73,83,95,83,79,77,69,32,61,32,84,89,80,69,32,61,61,32,51,59,92,110,32,32,118,97,114,32,73,83,95,69,86,69,82,89,32,61,32,84,89,80,69,32,61,61,32,52,59,92,110,32,32,118,97,114,32,73,83,95,70,73,78,68,95,73,78,68,69,88,32,61,32,84,89,80,69,32,61,61,32,54,59,92,110,32,32,118,97,114,32,78,79,95,72,79,76,69,83,32,61,32,84,89,80,69,32,61,61,32,53,32,124,124,32,73,83,95,70,73,78,68,95,73,78,68,69,88,59,92,110,32,32,118,97,114,32,99,114,101,97,116,101,32,61,32,36,99,114,101,97,116,101,32,124,124,32,97,115,99,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,36,116,104,105,115,44,32,99,97,108,108,98,97,99,107,102,110,44,32,116,104,97,116,41,32,123,92,110,32,32,32,32,118,97,114,32,79,32,61,32,116,111,79,98,106,101,99,116,40,36,116,104,105,115,41,59,92,110,32,32,32,32,118,97,114,32,115,101,108,102,32,61,32,73,79,98,106,101,99,116,40,79,41,59,92,110,32,32,32,32,118,97,114,32,102,32,61,32,99,116,120,40,99,97,108,108,98,97,99,107,102,110,44,32,116,104,97,116,44,32,51,41,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,116,111,76,101,110,103,116,104,40,115,101,108,102,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,73,83,95,77,65,80,32,63,32,99,114,101,97,116,101,40,36,116,104,105,115,44,32,108,101,110,103,116,104,41,32,58,32,73,83,95,70,73,76,84,69,82,32,63,32,99,114,101,97,116,101,40,36,116,104,105,115,44,32,48,41,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,118,97,114,32,118,97,108,44,32,114,101,115,59,92,110,32,32,32,32,102,111,114,32,40,59,108,101,110,103,116,104,32,62,32,105,110,100,101,120,59,32,105,110,100,101,120,43,43,41,32,105,102,32,40,78,79,95,72,79,76,69,83,32,124,124,32,105,110,100,101,120,32,105,110,32,115,101,108,102,41,32,123,92,110,32,32,32,32,32,32,118,97,108,32,61,32,115,101,108,102,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,114,101,115,32,61,32,102,40,118,97,108,44,32,105,110,100,101,120,44,32,79,41,59,92,110,32,32,32,32,32,32,105,102,32,40,84,89,80,69,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,73,83,95,77,65,80,41,32,114,101,115,117,108,116,91,105,110,100,101,120,93,32,61,32,114,101,115,59,32,32,32,47,47,32,109,97,112,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,114,101,115,41,32,115,119,105,116,99,104,32,40,84,89,80,69,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,51,58,32,114,101,116,117,114,110,32,116,114,117,101,59,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,115,111,109,101,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,53,58,32,114,101,116,117,114,110,32,118,97,108,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,102,105,110,100,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,54,58,32,114,101,116,117,114,110,32,105,110,100,101,120,59,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,102,105,110,100,73,110,100,101,120,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,50,58,32,114,101,115,117,108,116,46,112,117,115,104,40,118,97,108,41,59,32,32,32,32,32,32,32,32,47,47,32,102,105,108,116,101,114,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,73,83,95,69,86,69,82,89,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,32,47,47,32,101,118,101,114,121,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,73,83,95,70,73,78,68,95,73,78,68,69,88,32,63,32,45,49,32,58,32,73,83,95,83,79,77,69,32,124,124,32,73,83,95,69,86,69,82,89,32,63,32,73,83,95,69,86,69,82,89,32,58,32,114,101,115,117,108,116,59,92,110,32,32,125,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,114,101,100,117,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,114,101,100,117,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,97,70,117,110,99,116,105,111,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,45,102,117,110,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,116,104,97,116,44,32,99,97,108,108,98,97,99,107,102,110,44,32,97,76,101,110,44,32,109,101,109,111,44,32,105,115,82,105,103,104,116,41,32,123,92,110,32,32,97,70,117,110,99,116,105,111,110,40,99,97,108,108,98,97,99,107,102,110,41,59,92,110,32,32,118,97,114,32,79,32,61,32,116,111,79,98,106,101,99,116,40,116,104,97,116,41,59,92,110,32,32,118,97,114,32,115,101,108,102,32,61,32,73,79,98,106,101,99,116,40,79,41,59,92,110,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,116,111,76,101,110,103,116,104,40,79,46,108,101,110,103,116,104,41,59,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,105,115,82,105,103,104,116,32,63,32,108,101,110,103,116,104,32,45,32,49,32,58,32,48,59,92,110,32,32,118,97,114,32,105,32,61,32,105,115,82,105,103,104,116,32,63,32,45,49,32,58,32,49,59,92,110,32,32,105,102,32,40,97,76,101,110,32,60,32,50,41,32,102,111,114,32,40,59,59,41,32,123,92,110,32,32,32,32,105,102,32,40,105,110,100,101,120,32,105,110,32,115,101,108,102,41,32,123,92,110,32,32,32,32,32,32,109,101,109,111,32,61,32,115,101,108,102,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,105,110,100,101,120,32,43,61,32,105,59,92,110,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,110,100,101,120,32,43,61,32,105,59,92,110,32,32,32,32,105,102,32,40,105,115,82,105,103,104,116,32,63,32,105,110,100,101,120,32,60,32,48,32,58,32,108,101,110,103,116,104,32,60,61,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,39,82,101,100,117,99,101,32,111,102,32,101,109,112,116,121,32,97,114,114,97,121,32,119,105,116,104,32,110,111,32,105,110,105,116,105,97,108,32,118,97,108,117,101,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,102,111,114,32,40,59,105,115,82,105,103,104,116,32,63,32,105,110,100,101,120,32,62,61,32,48,32,58,32,108,101,110,103,116,104,32,62,32,105,110,100,101,120,59,32,105,110,100,101,120,32,43,61,32,105,41,32,105,102,32,40,105,110,100,101,120,32,105,110,32,115,101,108,102,41,32,123,92,110,32,32,32,32,109,101,109,111,32,61,32,99,97,108,108,98,97,99,107,102,110,40,109,101,109,111,44,32,115,101,108,102,91,105,110,100,101,120,93,44,32,105,110,100,101,120,44,32,79,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,109,101,109,111,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,114,101,100,117,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,65,114,114,97,121,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,97,114,114,97,121,46,106,115,92,34,41,59,92,110,118,97,114,32,83,80,69,67,73,69,83,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,115,112,101,99,105,101,115,39,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,111,114,105,103,105,110,97,108,41,32,123,92,110,32,32,118,97,114,32,67,59,92,110,32,32,105,102,32,40,105,115,65,114,114,97,121,40,111,114,105,103,105,110,97,108,41,41,32,123,92,110,32,32,32,32,67,32,61,32,111,114,105,103,105,110,97,108,46,99,111,110,115,116,114,117,99,116,111,114,59,92,110,32,32,32,32,47,47,32,99,114,111,115,115,45,114,101,97,108,109,32,102,97,108,108,98,97,99,107,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,67,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,40,67,32,61,61,61,32,65,114,114,97,121,32,124,124,32,105,115,65,114,114,97,121,40,67,46,112,114,111,116,111,116,121,112,101,41,41,41,32,67,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,67,41,41,32,123,92,110,32,32,32,32,32,32,67,32,61,32,67,91,83,80,69,67,73,69,83,93,59,92,110,32,32,32,32,32,32,105,102,32,40,67,32,61,61,61,32,110,117,108,108,41,32,67,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,32,32,125,32,114,101,116,117,114,110,32,67,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,65,114,114,97,121,32,58,32,67,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,115,112,101,99,105,101,115,45,99,114,101,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,115,112,101,99,105,101,115,45,99,114,101,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,57,46,52,46,50,46,51,32,65,114,114,97,121,83,112,101,99,105,101,115,67,114,101,97,116,101,40,111,114,105,103,105,110,97,108,65,114,114,97,121,44,32,108,101,110,103,116,104,41,92,110,118,97,114,32,115,112,101,99,105,101,115,67,111,110,115,116,114,117,99,116,111,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,111,114,105,103,105,110,97,108,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,40,115,112,101,99,105,101,115,67,111,110,115,116,114,117,99,116,111,114,40,111,114,105,103,105,110,97,108,41,41,40,108,101,110,103,116,104,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,115,112,101,99,105,101,115,45,99,114,101,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,98,105,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,98,105,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,97,70,117,110,99,116,105,111,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,45,102,117,110,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,105,110,118,111,107,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,110,118,111,107,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,110,118,111,107,101,46,106,115,92,34,41,59,92,110,118,97,114,32,97,114,114,97,121,83,108,105,99,101,32,61,32,91,93,46,115,108,105,99,101,59,92,110,118,97,114,32,102,97,99,116,111,114,105,101,115,32,61,32,123,125,59,92,110,92,110,118,97,114,32,99,111,110,115,116,114,117,99,116,32,61,32,102,117,110,99,116,105,111,110,32,40,70,44,32,108,101,110,44,32,97,114,103,115,41,32,123,92,110,32,32,105,102,32,40,33,40,108,101,110,32,105,110,32,102,97,99,116,111,114,105,101,115,41,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,110,32,61,32,91,93,44,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,110,91,105,93,32,61,32,39,97,91,39,32,43,32,105,32,43,32,39,93,39,59,92,110,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,110,101,119,45,102,117,110,99,92,110,32,32,32,32,102,97,99,116,111,114,105,101,115,91,108,101,110,93,32,61,32,70,117,110,99,116,105,111,110,40,39,70,44,97,39,44,32,39,114,101,116,117,114,110,32,110,101,119,32,70,40,39,32,43,32,110,46,106,111,105,110,40,39,44,39,41,32,43,32,39,41,39,41,59,92,110,32,32,125,32,114,101,116,117,114,110,32,102,97,99,116,111,114,105,101,115,91,108,101,110,93,40,70,44,32,97,114,103,115,41,59,92,110,125,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,70,117,110,99,116,105,111,110,46,98,105,110,100,32,124,124,32,102,117,110,99,116,105,111,110,32,98,105,110,100,40,116,104,97,116,32,47,42,32,44,32,46,46,46,97,114,103,115,32,42,47,41,32,123,92,110,32,32,118,97,114,32,102,110,32,61,32,97,70,117,110,99,116,105,111,110,40,116,104,105,115,41,59,92,110,32,32,118,97,114,32,112,97,114,116,65,114,103,115,32,61,32,97,114,114,97,121,83,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,32,49,41,59,92,110,32,32,118,97,114,32,98,111,117,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,47,42,32,97,114,103,115,46,46,46,32,42,47,41,32,123,92,110,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,112,97,114,116,65,114,103,115,46,99,111,110,99,97,116,40,97,114,114,97,121,83,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,98,111,117,110,100,32,63,32,99,111,110,115,116,114,117,99,116,40,102,110,44,32,97,114,103,115,46,108,101,110,103,116,104,44,32,97,114,103,115,41,32,58,32,105,110,118,111,107,101,40,102,110,44,32,97,114,103,115,44,32,116,104,97,116,41,59,92,110,32,32,125,59,92,110,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,102,110,46,112,114,111,116,111,116,121,112,101,41,41,32,98,111,117,110,100,46,112,114,111,116,111,116,121,112,101,32,61,32,102,110,46,112,114,111,116,111,116,121,112,101,59,92,110,32,32,114,101,116,117,114,110,32,98,111,117,110,100,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,98,105,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,108,97,115,115,111,102,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,108,97,115,115,111,102,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,103,101,116,116,105,110,103,32,116,97,103,32,102,114,111,109,32,49,57,46,49,46,51,46,54,32,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,40,41,92,110,118,97,114,32,99,111,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,102,46,106,115,92,34,41,59,92,110,118,97,114,32,84,65,71,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,116,111,83,116,114,105,110,103,84,97,103,39,41,59,92,110,47,47,32,69,83,51,32,119,114,111,110,103,32,104,101,114,101,92,110,118,97,114,32,65,82,71,32,61,32,99,111,102,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,59,32,125,40,41,41,32,61,61,32,39,65,114,103,117,109,101,110,116,115,39,59,92,110,92,110,47,47,32,102,97,108,108,98,97,99,107,32,102,111,114,32,73,69,49,49,32,83,99,114,105,112,116,32,65,99,99,101,115,115,32,68,101,110,105,101,100,32,101,114,114,111,114,92,110,118,97,114,32,116,114,121,71,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,44,32,107,101,121,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,116,91,107,101,121,93,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,92,110,125,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,118,97,114,32,79,44,32,84,44,32,66,59,92,110,32,32,114,101,116,117,114,110,32,105,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,39,85,110,100,101,102,105,110,101,100,39,32,58,32,105,116,32,61,61,61,32,110,117,108,108,32,63,32,39,78,117,108,108,39,92,110,32,32,32,32,47,47,32,64,64,116,111,83,116,114,105,110,103,84,97,103,32,99,97,115,101,92,110,32,32,32,32,58,32,116,121,112,101,111,102,32,40,84,32,61,32,116,114,121,71,101,116,40,79,32,61,32,79,98,106,101,99,116,40,105,116,41,44,32,84,65,71,41,41,32,61,61,32,39,115,116,114,105,110,103,39,32,63,32,84,92,110,32,32,32,32,47,47,32,98,117,105,108,116,105,110,84,97,103,32,99,97,115,101,92,110,32,32,32,32,58,32,65,82,71,32,63,32,99,111,102,40,79,41,92,110,32,32,32,32,47,47,32,69,83,51,32,97,114,103,117,109,101,110,116,115,32,102,97,108,108,98,97,99,107,92,110,32,32,32,32,58,32,40,66,32,61,32,99,111,102,40,79,41,41,32,61,61,32,39,79,98,106,101,99,116,39,32,38,38,32,116,121,112,101,111,102,32,79,46,99,97,108,108,101,101,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,39,65,114,103,117,109,101,110,116,115,39,32,58,32,66,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,108,97,115,115,111,102,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,102,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,102,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,116,111,83,116,114,105,110,103,32,61,32,123,125,46,116,111,83,116,114,105,110,103,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,46,99,97,108,108,40,105,116,41,46,115,108,105,99,101,40,56,44,32,45,49,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,102,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,45,115,116,114,111,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,45,115,116,114,111,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,100,80,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,46,102,41,59,92,110,118,97,114,32,99,114,101,97,116,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,100,101,102,105,110,101,65,108,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,45,97,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,45,97,108,108,46,106,115,92,34,41,59,92,110,118,97,114,32,99,116,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,116,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,73,110,115,116,97,110,99,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,105,110,115,116,97,110,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,105,110,115,116,97,110,99,101,46,106,115,92,34,41,59,92,110,118,97,114,32,102,111,114,79,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,111,114,45,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,111,114,45,111,102,46,106,115,92,34,41,59,92,110,118,97,114,32,36,105,116,101,114,68,101,102,105,110,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,45,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,118,97,114,32,115,116,101,112,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,45,115,116,101,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,115,116,101,112,46,106,115,92,34,41,59,92,110,118,97,114,32,115,101,116,83,112,101,99,105,101,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,101,116,45,115,112,101,99,105,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,115,112,101,99,105,101,115,46,106,115,92,34,41,59,92,110,118,97,114,32,68,69,83,67,82,73,80,84,79,82,83,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,59,92,110,118,97,114,32,102,97,115,116,75,101,121,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,101,116,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,101,116,97,46,106,115,92,34,41,46,102,97,115,116,75,101,121,41,59,92,110,118,97,114,32,118,97,108,105,100,97,116,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,83,73,90,69,32,61,32,68,69,83,67,82,73,80,84,79,82,83,32,63,32,39,95,115,39,32,58,32,39,115,105,122,101,39,59,92,110,92,110,118,97,114,32,103,101,116,69,110,116,114,121,32,61,32,102,117,110,99,116,105,111,110,32,40,116,104,97,116,44,32,107,101,121,41,32,123,92,110,32,32,47,47,32,102,97,115,116,32,99,97,115,101,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,102,97,115,116,75,101,121,40,107,101,121,41,59,92,110,32,32,118,97,114,32,101,110,116,114,121,59,92,110,32,32,105,102,32,40,105,110,100,101,120,32,33,61,61,32,39,70,39,41,32,114,101,116,117,114,110,32,116,104,97,116,46,95,105,91,105,110,100,101,120,93,59,92,110,32,32,47,47,32,102,114,111,122,101,110,32,111,98,106,101,99,116,32,99,97,115,101,92,110,32,32,102,111,114,32,40,101,110,116,114,121,32,61,32,116,104,97,116,46,95,102,59,32,101,110,116,114,121,59,32,101,110,116,114,121,32,61,32,101,110,116,114,121,46,110,41,32,123,92,110,32,32,32,32,105,102,32,40,101,110,116,114,121,46,107,32,61,61,32,107,101,121,41,32,114,101,116,117,114,110,32,101,110,116,114,121,59,92,110,32,32,125,92,110,125,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,123,92,110,32,32,103,101,116,67,111,110,115,116,114,117,99,116,111,114,58,32,102,117,110,99,116,105,111,110,32,40,119,114,97,112,112,101,114,44,32,78,65,77,69,44,32,73,83,95,77,65,80,44,32,65,68,68,69,82,41,32,123,92,110,32,32,32,32,118,97,114,32,67,32,61,32,119,114,97,112,112,101,114,40,102,117,110,99,116,105,111,110,32,40,116,104,97,116,44,32,105,116,101,114,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,97,110,73,110,115,116,97,110,99,101,40,116,104,97,116,44,32,67,44,32,78,65,77,69,44,32,39,95,105,39,41,59,92,110,32,32,32,32,32,32,116,104,97,116,46,95,116,32,61,32,78,65,77,69,59,32,32,32,32,32,32,32,32,32,47,47,32,99,111,108,108,101,99,116,105,111,110,32,116,121,112,101,92,110,32,32,32,32,32,32,116,104,97,116,46,95,105,32,61,32,99,114,101,97,116,101,40,110,117,108,108,41,59,32,47,47,32,105,110,100,101,120,92,110,32,32,32,32,32,32,116,104,97,116,46,95,102,32,61,32,117,110,100,101,102,105,110,101,100,59,32,32,32,32,47,47,32,102,105,114,115,116,32,101,110,116,114,121,92,110,32,32,32,32,32,32,116,104,97,116,46,95,108,32,61,32,117,110,100,101,102,105,110,101,100,59,32,32,32,32,47,47,32,108,97,115,116,32,101,110,116,114,121,92,110,32,32,32,32,32,32,116,104,97,116,91,83,73,90,69,93,32,61,32,48,59,32,32,32,32,32,32,32,32,32,47,47,32,115,105,122,101,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,114,97,98,108,101,32,33,61,32,117,110,100,101,102,105,110,101,100,41,32,102,111,114,79,102,40,105,116,101,114,97,98,108,101,44,32,73,83,95,77,65,80,44,32,116,104,97,116,91,65,68,68,69,82,93,44,32,116,104,97,116,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,100,101,102,105,110,101,65,108,108,40,67,46,112,114,111,116,111,116,121,112,101,44,32,123,92,110,32,32,32,32,32,32,47,47,32,50,51,46,49,46,51,46,49,32,77,97,112,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,40,41,92,110,32,32,32,32,32,32,47,47,32,50,51,46,50,46,51,46,50,32,83,101,116,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,40,41,92,110,32,32,32,32,32,32,99,108,101,97,114,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,116,104,97,116,32,61,32,118,97,108,105,100,97,116,101,40,116,104,105,115,44,32,78,65,77,69,41,44,32,100,97,116,97,32,61,32,116,104,97,116,46,95,105,44,32,101,110,116,114,121,32,61,32,116,104,97,116,46,95,102,59,32,101,110,116,114,121,59,32,101,110,116,114,121,32,61,32,101,110,116,114,121,46,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,110,116,114,121,46,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,46,112,41,32,101,110,116,114,121,46,112,32,61,32,101,110,116,114,121,46,112,46,110,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,100,97,116,97,91,101,110,116,114,121,46,105,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,116,104,97,116,46,95,102,32,61,32,116,104,97,116,46,95,108,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,116,104,97,116,91,83,73,90,69,93,32,61,32,48,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,47,47,32,50,51,46,49,46,51,46,51,32,77,97,112,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,40,107,101,121,41,92,110,32,32,32,32,32,32,47,47,32,50,51,46,50,46,51,46,52,32,83,101,116,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,40,118,97,108,117,101,41,92,110,32,32,32,32,32,32,39,100,101,108,101,116,101,39,58,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,104,97,116,32,61,32,118,97,108,105,100,97,116,101,40,116,104,105,115,44,32,78,65,77,69,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,103,101,116,69,110,116,114,121,40,116,104,97,116,44,32,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,32,61,32,101,110,116,114,121,46,110,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,101,118,32,61,32,101,110,116,114,121,46,112,59,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,116,104,97,116,46,95,105,91,101,110,116,114,121,46,105,93,59,92,110,32,32,32,32,32,32,32,32,32,32,101,110,116,114,121,46,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,101,118,41,32,112,114,101,118,46,110,32,61,32,110,101,120,116,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,41,32,110,101,120,116,46,112,32,61,32,112,114,101,118,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,97,116,46,95,102,32,61,61,32,101,110,116,114,121,41,32,116,104,97,116,46,95,102,32,61,32,110,101,120,116,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,97,116,46,95,108,32,61,61,32,101,110,116,114,121,41,32,116,104,97,116,46,95,108,32,61,32,112,114,101,118,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,97,116,91,83,73,90,69,93,45,45,59,92,110,32,32,32,32,32,32,32,32,125,32,114,101,116,117,114,110,32,33,33,101,110,116,114,121,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,47,47,32,50,51,46,50,46,51,46,54,32,83,101,116,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,40,99,97,108,108,98,97,99,107,102,110,44,32,116,104,105,115,65,114,103,32,61,32,117,110,100,101,102,105,110,101,100,41,92,110,32,32,32,32,32,32,47,47,32,50,51,46,49,46,51,46,53,32,77,97,112,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,40,99,97,108,108,98,97,99,107,102,110,44,32,116,104,105,115,65,114,103,32,61,32,117,110,100,101,102,105,110,101,100,41,92,110,32,32,32,32,32,32,102,111,114,69,97,99,104,58,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,116,104,97,116,32,61,32,117,110,100,101,102,105,110,101,100,32,42,47,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,105,100,97,116,101,40,116,104,105,115,44,32,78,65,77,69,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,32,61,32,99,116,120,40,99,97,108,108,98,97,99,107,102,110,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,44,32,51,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,110,116,114,121,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,101,110,116,114,121,32,61,32,101,110,116,114,121,32,63,32,101,110,116,114,121,46,110,32,58,32,116,104,105,115,46,95,102,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,40,101,110,116,114,121,46,118,44,32,101,110,116,114,121,46,107,44,32,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,114,101,118,101,114,116,32,116,111,32,116,104,101,32,108,97,115,116,32,101,120,105,115,116,105,110,103,32,101,110,116,114,121,92,110,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,101,110,116,114,121,32,38,38,32,101,110,116,114,121,46,114,41,32,101,110,116,114,121,32,61,32,101,110,116,114,121,46,112,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,47,47,32,50,51,46,49,46,51,46,55,32,77,97,112,46,112,114,111,116,111,116,121,112,101,46,104,97,115,40,107,101,121,41,92,110,32,32,32,32,32,32,47,47,32,50,51,46,50,46,51,46,55,32,83,101,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,40,118,97,108,117,101,41,92,110,32,32,32,32,32,32,104,97,115,58,32,102,117,110,99,116,105,111,110,32,104,97,115,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,103,101,116,69,110,116,114,121,40,118,97,108,105,100,97,116,101,40,116,104,105,115,44,32,78,65,77,69,41,44,32,107,101,121,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,105,102,32,40,68,69,83,67,82,73,80,84,79,82,83,41,32,100,80,40,67,46,112,114,111,116,111,116,121,112,101,44,32,39,115,105,122,101,39,44,32,123,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,105,100,97,116,101,40,116,104,105,115,44,32,78,65,77,69,41,91,83,73,90,69,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,67,59,92,110,32,32,125,44,92,110,32,32,100,101,102,58,32,102,117,110,99,116,105,111,110,32,40,116,104,97,116,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,103,101,116,69,110,116,114,121,40,116,104,97,116,44,32,107,101,121,41,59,92,110,32,32,32,32,118,97,114,32,112,114,101,118,44,32,105,110,100,101,120,59,92,110,32,32,32,32,47,47,32,99,104,97,110,103,101,32,101,120,105,115,116,105,110,103,32,101,110,116,114,121,92,110,32,32,32,32,105,102,32,40,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,101,110,116,114,121,46,118,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,47,47,32,99,114,101,97,116,101,32,110,101,119,32,101,110,116,114,121,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,97,116,46,95,108,32,61,32,101,110,116,114,121,32,61,32,123,92,110,32,32,32,32,32,32,32,32,105,58,32,105,110,100,101,120,32,61,32,102,97,115,116,75,101,121,40,107,101,121,44,32,116,114,117,101,41,44,32,47,47,32,60,45,32,105,110,100,101,120,92,110,32,32,32,32,32,32,32,32,107,58,32,107,101,121,44,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,60,45,32,107,101,121,92,110,32,32,32,32,32,32,32,32,118,58,32,118,97,108,117,101,44,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,60,45,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,112,58,32,112,114,101,118,32,61,32,116,104,97,116,46,95,108,44,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,60,45,32,112,114,101,118,105,111,117,115,32,101,110,116,114,121,92,110,32,32,32,32,32,32,32,32,110,58,32,117,110,100,101,102,105,110,101,100,44,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,60,45,32,110,101,120,116,32,101,110,116,114,121,92,110,32,32,32,32,32,32,32,32,114,58,32,102,97,108,115,101,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,60,45,32,114,101,109,111,118,101,100,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,97,116,46,95,102,41,32,116,104,97,116,46,95,102,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,32,32,105,102,32,40,112,114,101,118,41,32,112,114,101,118,46,110,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,32,32,116,104,97,116,91,83,73,90,69,93,43,43,59,92,110,32,32,32,32,32,32,47,47,32,97,100,100,32,116,111,32,105,110,100,101,120,92,110,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,33,61,61,32,39,70,39,41,32,116,104,97,116,46,95,105,91,105,110,100,101,120,93,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,125,32,114,101,116,117,114,110,32,116,104,97,116,59,92,110,32,32,125,44,92,110,32,32,103,101,116,69,110,116,114,121,58,32,103,101,116,69,110,116,114,121,44,92,110,32,32,115,101,116,83,116,114,111,110,103,58,32,102,117,110,99,116,105,111,110,32,40,67,44,32,78,65,77,69,44,32,73,83,95,77,65,80,41,32,123,92,110,32,32,32,32,47,47,32,97,100,100,32,46,107,101,121,115,44,32,46,118,97,108,117,101,115,44,32,46,101,110,116,114,105,101,115,44,32,91,64,64,105,116,101,114,97,116,111,114,93,92,110,32,32,32,32,47,47,32,50,51,46,49,46,51,46,52,44,32,50,51,46,49,46,51,46,56,44,32,50,51,46,49,46,51,46,49,49,44,32,50,51,46,49,46,51,46,49,50,44,32,50,51,46,50,46,51,46,53,44,32,50,51,46,50,46,51,46,56,44,32,50,51,46,50,46,51,46,49,48,44,32,50,51,46,50,46,51,46,49,49,92,110,32,32,32,32,36,105,116,101,114,68,101,102,105,110,101,40,67,44,32,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,105,116,101,114,97,116,101,100,44,32,107,105,110,100,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,116,32,61,32,118,97,108,105,100,97,116,101,40,105,116,101,114,97,116,101,100,44,32,78,65,77,69,41,59,32,47,47,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,116,104,105,115,46,95,107,32,61,32,107,105,110,100,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,107,105,110,100,92,110,32,32,32,32,32,32,116,104,105,115,46,95,108,32,61,32,117,110,100,101,102,105,110,101,100,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,112,114,101,118,105,111,117,115,92,110,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,104,97,116,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,118,97,114,32,107,105,110,100,32,61,32,116,104,97,116,46,95,107,59,92,110,32,32,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,116,104,97,116,46,95,108,59,92,110,32,32,32,32,32,32,47,47,32,114,101,118,101,114,116,32,116,111,32,116,104,101,32,108,97,115,116,32,101,120,105,115,116,105,110,103,32,101,110,116,114,121,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,101,110,116,114,121,32,38,38,32,101,110,116,114,121,46,114,41,32,101,110,116,114,121,32,61,32,101,110,116,114,121,46,112,59,92,110,32,32,32,32,32,32,47,47,32,103,101,116,32,110,101,120,116,32,101,110,116,114,121,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,97,116,46,95,116,32,124,124,32,33,40,116,104,97,116,46,95,108,32,61,32,101,110,116,114,121,32,61,32,101,110,116,114,121,32,63,32,101,110,116,114,121,46,110,32,58,32,116,104,97,116,46,95,116,46,95,102,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,111,114,32,102,105,110,105,115,104,32,116,104,101,32,105,116,101,114,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,116,104,97,116,46,95,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,101,112,40,49,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,114,101,116,117,114,110,32,115,116,101,112,32,98,121,32,107,105,110,100,92,110,32,32,32,32,32,32,105,102,32,40,107,105,110,100,32,61,61,32,39,107,101,121,115,39,41,32,114,101,116,117,114,110,32,115,116,101,112,40,48,44,32,101,110,116,114,121,46,107,41,59,92,110,32,32,32,32,32,32,105,102,32,40,107,105,110,100,32,61,61,32,39,118,97,108,117,101,115,39,41,32,114,101,116,117,114,110,32,115,116,101,112,40,48,44,32,101,110,116,114,121,46,118,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,101,112,40,48,44,32,91,101,110,116,114,121,46,107,44,32,101,110,116,114,121,46,118,93,41,59,92,110,32,32,32,32,125,44,32,73,83,95,77,65,80,32,63,32,39,101,110,116,114,105,101,115,39,32,58,32,39,118,97,108,117,101,115,39,44,32,33,73,83,95,77,65,80,44,32,116,114,117,101,41,59,92,110,92,110,32,32,32,32,47,47,32,97,100,100,32,91,64,64,115,112,101,99,105,101,115,93,44,32,50,51,46,49,46,50,46,50,44,32,50,51,46,50,46,50,46,50,92,110,32,32,32,32,115,101,116,83,112,101,99,105,101,115,40,78,65,77,69,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,45,115,116,114,111,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,45,119,101,97,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,45,119,101,97,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,114,101,100,101,102,105,110,101,65,108,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,45,97,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,45,97,108,108,46,106,115,92,34,41,59,92,110,118,97,114,32,103,101,116,87,101,97,107,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,101,116,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,101,116,97,46,106,115,92,34,41,46,103,101,116,87,101,97,107,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,73,110,115,116,97,110,99,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,105,110,115,116,97,110,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,105,110,115,116,97,110,99,101,46,106,115,92,34,41,59,92,110,118,97,114,32,102,111,114,79,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,111,114,45,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,111,114,45,111,102,46,106,115,92,34,41,59,92,110,118,97,114,32,99,114,101,97,116,101,65,114,114,97,121,77,101,116,104,111,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,46,106,115,92,34,41,59,92,110,118,97,114,32,36,104,97,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,97,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,92,34,41,59,92,110,118,97,114,32,118,97,108,105,100,97,116,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,97,114,114,97,121,70,105,110,100,32,61,32,99,114,101,97,116,101,65,114,114,97,121,77,101,116,104,111,100,40,53,41,59,92,110,118,97,114,32,97,114,114,97,121,70,105,110,100,73,110,100,101,120,32,61,32,99,114,101,97,116,101,65,114,114,97,121,77,101,116,104,111,100,40,54,41,59,92,110,118,97,114,32,105,100,32,61,32,48,59,92,110,92,110,47,47,32,102,97,108,108,98,97,99,107,32,102,111,114,32,117,110,99,97,117,103,104,116,32,102,114,111,122,101,110,32,107,101,121,115,92,110,118,97,114,32,117,110,99,97,117,103,104,116,70,114,111,122,101,110,83,116,111,114,101,32,61,32,102,117,110,99,116,105,111,110,32,40,116,104,97,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,97,116,46,95,108,32,124,124,32,40,116,104,97,116,46,95,108,32,61,32,110,101,119,32,85,110,99,97,117,103,104,116,70,114,111,122,101,110,83,116,111,114,101,40,41,41,59,92,110,125,59,92,110,118,97,114,32,85,110,99,97,117,103,104,116,70,114,111,122,101,110,83,116,111,114,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,116,104,105,115,46,97,32,61,32,91,93,59,92,110,125,59,92,110,118,97,114,32,102,105,110,100,85,110,99,97,117,103,104,116,70,114,111,122,101,110,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,111,114,101,44,32,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,114,97,121,70,105,110,100,40,115,116,111,114,101,46,97,44,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,116,91,48,93,32,61,61,61,32,107,101,121,59,92,110,32,32,125,41,59,92,110,125,59,92,110,85,110,99,97,117,103,104,116,70,114,111,122,101,110,83,116,111,114,101,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,102,105,110,100,85,110,99,97,117,103,104,116,70,114,111,122,101,110,40,116,104,105,115,44,32,107,101,121,41,59,92,110,32,32,32,32,105,102,32,40,101,110,116,114,121,41,32,114,101,116,117,114,110,32,101,110,116,114,121,91,49,93,59,92,110,32,32,125,44,92,110,32,32,104,97,115,58,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,33,33,102,105,110,100,85,110,99,97,117,103,104,116,70,114,111,122,101,110,40,116,104,105,115,44,32,107,101,121,41,59,92,110,32,32,125,44,92,110,32,32,115,101,116,58,32,102,117,110,99,116,105,111,110,32,40,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,102,105,110,100,85,110,99,97,117,103,104,116,70,114,111,122,101,110,40,116,104,105,115,44,32,107,101,121,41,59,92,110,32,32,32,32,105,102,32,40,101,110,116,114,121,41,32,101,110,116,114,121,91,49,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,101,108,115,101,32,116,104,105,115,46,97,46,112,117,115,104,40,91,107,101,121,44,32,118,97,108,117,101,93,41,59,92,110,32,32,125,44,92,110,32,32,39,100,101,108,101,116,101,39,58,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,97,114,114,97,121,70,105,110,100,73,110,100,101,120,40,116,104,105,115,46,97,44,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,91,48,93,32,61,61,61,32,107,101,121,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,105,102,32,40,126,105,110,100,101,120,41,32,116,104,105,115,46,97,46,115,112,108,105,99,101,40,105,110,100,101,120,44,32,49,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,33,33,126,105,110,100,101,120,59,92,110,32,32,125,92,110,125,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,123,92,110,32,32,103,101,116,67,111,110,115,116,114,117,99,116,111,114,58,32,102,117,110,99,116,105,111,110,32,40,119,114,97,112,112,101,114,44,32,78,65,77,69,44,32,73,83,95,77,65,80,44,32,65,68,68,69,82,41,32,123,92,110,32,32,32,32,118,97,114,32,67,32,61,32,119,114,97,112,112,101,114,40,102,117,110,99,116,105,111,110,32,40,116,104,97,116,44,32,105,116,101,114,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,97,110,73,110,115,116,97,110,99,101,40,116,104,97,116,44,32,67,44,32,78,65,77,69,44,32,39,95,105,39,41,59,92,110,32,32,32,32,32,32,116,104,97,116,46,95,116,32,61,32,78,65,77,69,59,32,32,32,32,32,32,47,47,32,99,111,108,108,101,99,116,105,111,110,32,116,121,112,101,92,110,32,32,32,32,32,32,116,104,97,116,46,95,105,32,61,32,105,100,43,43,59,32,32,32,32,32,32,47,47,32,99,111,108,108,101,99,116,105,111,110,32,105,100,92,110,32,32,32,32,32,32,116,104,97,116,46,95,108,32,61,32,117,110,100,101,102,105,110,101,100,59,32,47,47,32,108,101,97,107,32,115,116,111,114,101,32,102,111,114,32,117,110,99,97,117,103,104,116,32,102,114,111,122,101,110,32,111,98,106,101,99,116,115,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,114,97,98,108,101,32,33,61,32,117,110,100,101,102,105,110,101,100,41,32,102,111,114,79,102,40,105,116,101,114,97,98,108,101,44,32,73,83,95,77,65,80,44,32,116,104,97,116,91,65,68,68,69,82,93,44,32,116,104,97,116,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,100,101,102,105,110,101,65,108,108,40,67,46,112,114,111,116,111,116,121,112,101,44,32,123,92,110,32,32,32,32,32,32,47,47,32,50,51,46,51,46,51,46,50,32,87,101,97,107,77,97,112,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,40,107,101,121,41,92,110,32,32,32,32,32,32,47,47,32,50,51,46,52,46,51,46,51,32,87,101,97,107,83,101,116,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,40,118,97,108,117,101,41,92,110,32,32,32,32,32,32,39,100,101,108,101,116,101,39,58,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,107,101,121,41,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,103,101,116,87,101,97,107,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,97,116,97,32,61,61,61,32,116,114,117,101,41,32,114,101,116,117,114,110,32,117,110,99,97,117,103,104,116,70,114,111,122,101,110,83,116,111,114,101,40,118,97,108,105,100,97,116,101,40,116,104,105,115,44,32,78,65,77,69,41,41,91,39,100,101,108,101,116,101,39,93,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,32,38,38,32,36,104,97,115,40,100,97,116,97,44,32,116,104,105,115,46,95,105,41,32,38,38,32,100,101,108,101,116,101,32,100,97,116,97,91,116,104,105,115,46,95,105,93,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,47,47,32,50,51,46,51,46,51,46,52,32,87,101,97,107,77,97,112,46,112,114,111,116,111,116,121,112,101,46,104,97,115,40,107,101,121,41,92,110,32,32,32,32,32,32,47,47,32,50,51,46,52,46,51,46,52,32,87,101,97,107,83,101,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,40,118,97,108,117,101,41,92,110,32,32,32,32,32,32,104,97,115,58,32,102,117,110,99,116,105,111,110,32,104,97,115,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,107,101,121,41,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,103,101,116,87,101,97,107,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,97,116,97,32,61,61,61,32,116,114,117,101,41,32,114,101,116,117,114,110,32,117,110,99,97,117,103,104,116,70,114,111,122,101,110,83,116,111,114,101,40,118,97,108,105,100,97,116,101,40,116,104,105,115,44,32,78,65,77,69,41,41,46,104,97,115,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,32,38,38,32,36,104,97,115,40,100,97,116,97,44,32,116,104,105,115,46,95,105,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,67,59,92,110,32,32,125,44,92,110,32,32,100,101,102,58,32,102,117,110,99,116,105,111,110,32,40,116,104,97,116,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,103,101,116,87,101,97,107,40,97,110,79,98,106,101,99,116,40,107,101,121,41,44,32,116,114,117,101,41,59,92,110,32,32,32,32,105,102,32,40,100,97,116,97,32,61,61,61,32,116,114,117,101,41,32,117,110,99,97,117,103,104,116,70,114,111,122,101,110,83,116,111,114,101,40,116,104,97,116,41,46,115,101,116,40,107,101,121,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,101,108,115,101,32,100,97,116,97,91,116,104,97,116,46,95,105,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,97,116,59,92,110,32,32,125,44,92,110,32,32,117,102,115,116,111,114,101,58,32,117,110,99,97,117,103,104,116,70,114,111,122,101,110,83,116,111,114,101,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,45,119,101,97,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,100,101,102,105,110,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,100,101,102,105,110,101,65,108,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,45,97,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,45,97,108,108,46,106,115,92,34,41,59,92,110,118,97,114,32,109,101,116,97,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,101,116,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,101,116,97,46,106,115,92,34,41,59,92,110,118,97,114,32,102,111,114,79,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,111,114,45,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,111,114,45,111,102,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,73,110,115,116,97,110,99,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,105,110,115,116,97,110,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,105,110,115,116,97,110,99,101,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,102,97,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,36,105,116,101,114,68,101,116,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,45,100,101,116,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,100,101,116,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,115,101,116,84,111,83,116,114,105,110,103,84,97,103,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,101,116,45,116,111,45,115,116,114,105,110,103,45,116,97,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,116,111,45,115,116,114,105,110,103,45,116,97,103,46,106,115,92,34,41,59,92,110,118,97,114,32,105,110,104,101,114,105,116,73,102,82,101,113,117,105,114,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,110,104,101,114,105,116,45,105,102,45,114,101,113,117,105,114,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,110,104,101,114,105,116,45,105,102,45,114,101,113,117,105,114,101,100,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,78,65,77,69,44,32,119,114,97,112,112,101,114,44,32,109,101,116,104,111,100,115,44,32,99,111,109,109,111,110,44,32,73,83,95,77,65,80,44,32,73,83,95,87,69,65,75,41,32,123,92,110,32,32,118,97,114,32,66,97,115,101,32,61,32,103,108,111,98,97,108,91,78,65,77,69,93,59,92,110,32,32,118,97,114,32,67,32,61,32,66,97,115,101,59,92,110,32,32,118,97,114,32,65,68,68,69,82,32,61,32,73,83,95,77,65,80,32,63,32,39,115,101,116,39,32,58,32,39,97,100,100,39,59,92,110,32,32,118,97,114,32,112,114,111,116,111,32,61,32,67,32,38,38,32,67,46,112,114,111,116,111,116,121,112,101,59,92,110,32,32,118,97,114,32,79,32,61,32,123,125,59,92,110,32,32,118,97,114,32,102,105,120,77,101,116,104,111,100,32,61,32,102,117,110,99,116,105,111,110,32,40,75,69,89,41,32,123,92,110,32,32,32,32,118,97,114,32,102,110,32,61,32,112,114,111,116,111,91,75,69,89,93,59,92,110,32,32,32,32,114,101,100,101,102,105,110,101,40,112,114,111,116,111,44,32,75,69,89,44,92,110,32,32,32,32,32,32,75,69,89,32,61,61,32,39,100,101,108,101,116,101,39,32,63,32,102,117,110,99,116,105,111,110,32,40,97,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,73,83,95,87,69,65,75,32,38,38,32,33,105,115,79,98,106,101,99,116,40,97,41,32,63,32,102,97,108,115,101,32,58,32,102,110,46,99,97,108,108,40,116,104,105,115,44,32,97,32,61,61,61,32,48,32,63,32,48,32,58,32,97,41,59,92,110,32,32,32,32,32,32,125,32,58,32,75,69,89,32,61,61,32,39,104,97,115,39,32,63,32,102,117,110,99,116,105,111,110,32,104,97,115,40,97,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,73,83,95,87,69,65,75,32,38,38,32,33,105,115,79,98,106,101,99,116,40,97,41,32,63,32,102,97,108,115,101,32,58,32,102,110,46,99,97,108,108,40,116,104,105,115,44,32,97,32,61,61,61,32,48,32,63,32,48,32,58,32,97,41,59,92,110,32,32,32,32,32,32,125,32,58,32,75,69,89,32,61,61,32,39,103,101,116,39,32,63,32,102,117,110,99,116,105,111,110,32,103,101,116,40,97,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,73,83,95,87,69,65,75,32,38,38,32,33,105,115,79,98,106,101,99,116,40,97,41,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,102,110,46,99,97,108,108,40,116,104,105,115,44,32,97,32,61,61,61,32,48,32,63,32,48,32,58,32,97,41,59,92,110,32,32,32,32,32,32,125,32,58,32,75,69,89,32,61,61,32,39,97,100,100,39,32,63,32,102,117,110,99,116,105,111,110,32,97,100,100,40,97,41,32,123,32,102,110,46,99,97,108,108,40,116,104,105,115,44,32,97,32,61,61,61,32,48,32,63,32,48,32,58,32,97,41,59,32,114,101,116,117,114,110,32,116,104,105,115,59,32,125,92,110,32,32,32,32,32,32,32,32,58,32,102,117,110,99,116,105,111,110,32,115,101,116,40,97,44,32,98,41,32,123,32,102,110,46,99,97,108,108,40,116,104,105,115,44,32,97,32,61,61,61,32,48,32,63,32,48,32,58,32,97,44,32,98,41,59,32,114,101,116,117,114,110,32,116,104,105,115,59,32,125,92,110,32,32,32,32,41,59,92,110,32,32,125,59,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,67,32,33,61,32,39,102,117,110,99,116,105,111,110,39,32,124,124,32,33,40,73,83,95,87,69,65,75,32,124,124,32,112,114,111,116,111,46,102,111,114,69,97,99,104,32,38,38,32,33,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,110,101,119,32,67,40,41,46,101,110,116,114,105,101,115,40,41,46,110,101,120,116,40,41,59,92,110,32,32,125,41,41,41,32,123,92,110,32,32,32,32,47,47,32,99,114,101,97,116,101,32,99,111,108,108,101,99,116,105,111,110,32,99,111,110,115,116,114,117,99,116,111,114,92,110,32,32,32,32,67,32,61,32,99,111,109,109,111,110,46,103,101,116,67,111,110,115,116,114,117,99,116,111,114,40,119,114,97,112,112,101,114,44,32,78,65,77,69,44,32,73,83,95,77,65,80,44,32,65,68,68,69,82,41,59,92,110,32,32,32,32,114,101,100,101,102,105,110,101,65,108,108,40,67,46,112,114,111,116,111,116,121,112,101,44,32,109,101,116,104,111,100,115,41,59,92,110,32,32,32,32,109,101,116,97,46,78,69,69,68,32,61,32,116,114,117,101,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,118,97,114,32,105,110,115,116,97,110,99,101,32,61,32,110,101,119,32,67,40,41,59,92,110,32,32,32,32,47,47,32,101,97,114,108,121,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,115,32,110,111,116,32,115,117,112,112,111,114,116,115,32,99,104,97,105,110,105,110,103,92,110,32,32,32,32,118,97,114,32,72,65,83,78,84,95,67,72,65,73,78,73,78,71,32,61,32,105,110,115,116,97,110,99,101,91,65,68,68,69,82,93,40,73,83,95,87,69,65,75,32,63,32,123,125,32,58,32,45,48,44,32,49,41,32,33,61,32,105,110,115,116,97,110,99,101,59,92,110,32,32,32,32,47,47,32,86,56,32,126,32,32,67,104,114,111,109,105,117,109,32,52,48,45,32,119,101,97,107,45,99,111,108,108,101,99,116,105,111,110,115,32,116,104,114,111,119,115,32,111,110,32,112,114,105,109,105,116,105,118,101,115,44,32,98,117,116,32,115,104,111,117,108,100,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,32,32,118,97,114,32,84,72,82,79,87,83,95,79,78,95,80,82,73,77,73,84,73,86,69,83,32,61,32,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,105,110,115,116,97,110,99,101,46,104,97,115,40,49,41,59,32,125,41,59,92,110,32,32,32,32,47,47,32,109,111,115,116,32,101,97,114,108,121,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,115,32,100,111,101,115,110,39,116,32,115,117,112,112,111,114,116,115,32,105,116,101,114,97,98,108,101,115,44,32,109,111,115,116,32,109,111,100,101,114,110,32,45,32,110,111,116,32,99,108,111,115,101,32,105,116,32,99,111,114,114,101,99,116,108,121,92,110,32,32,32,32,118,97,114,32,65,67,67,69,80,84,95,73,84,69,82,65,66,76,69,83,32,61,32,36,105,116,101,114,68,101,116,101,99,116,40,102,117,110,99,116,105,111,110,32,40,105,116,101,114,41,32,123,32,110,101,119,32,67,40,105,116,101,114,41,59,32,125,41,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,110,101,119,92,110,32,32,32,32,47,47,32,102,111,114,32,101,97,114,108,121,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,115,32,45,48,32,97,110,100,32,43,48,32,110,111,116,32,116,104,101,32,115,97,109,101,92,110,32,32,32,32,118,97,114,32,66,85,71,71,89,95,90,69,82,79,32,61,32,33,73,83,95,87,69,65,75,32,38,38,32,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,86,56,32,126,32,67,104,114,111,109,105,117,109,32,52,50,45,32,102,97,105,108,115,32,111,110,108,121,32,119,105,116,104,32,53,43,32,101,108,101,109,101,110,116,115,92,110,32,32,32,32,32,32,118,97,114,32,36,105,110,115,116,97,110,99,101,32,61,32,110,101,119,32,67,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,53,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,105,110,100,101,120,45,45,41,32,36,105,110,115,116,97,110,99,101,91,65,68,68,69,82,93,40,105,110,100,101,120,44,32,105,110,100,101,120,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,36,105,110,115,116,97,110,99,101,46,104,97,115,40,45,48,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,105,102,32,40,33,65,67,67,69,80,84,95,73,84,69,82,65,66,76,69,83,41,32,123,92,110,32,32,32,32,32,32,67,32,61,32,119,114,97,112,112,101,114,40,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,44,32,105,116,101,114,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,97,110,73,110,115,116,97,110,99,101,40,116,97,114,103,101,116,44,32,67,44,32,78,65,77,69,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,104,97,116,32,61,32,105,110,104,101,114,105,116,73,102,82,101,113,117,105,114,101,100,40,110,101,119,32,66,97,115,101,40,41,44,32,116,97,114,103,101,116,44,32,67,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,116,101,114,97,98,108,101,32,33,61,32,117,110,100,101,102,105,110,101,100,41,32,102,111,114,79,102,40,105,116,101,114,97,98,108,101,44,32,73,83,95,77,65,80,44,32,116,104,97,116,91,65,68,68,69,82,93,44,32,116,104,97,116,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,97,116,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,67,46,112,114,111,116,111,116,121,112,101,32,61,32,112,114,111,116,111,59,92,110,32,32,32,32,32,32,112,114,111,116,111,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,67,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,84,72,82,79,87,83,95,79,78,95,80,82,73,77,73,84,73,86,69,83,32,124,124,32,66,85,71,71,89,95,90,69,82,79,41,32,123,92,110,32,32,32,32,32,32,102,105,120,77,101,116,104,111,100,40,39,100,101,108,101,116,101,39,41,59,92,110,32,32,32,32,32,32,102,105,120,77,101,116,104,111,100,40,39,104,97,115,39,41,59,92,110,32,32,32,32,32,32,73,83,95,77,65,80,32,38,38,32,102,105,120,77,101,116,104,111,100,40,39,103,101,116,39,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,66,85,71,71,89,95,90,69,82,79,32,124,124,32,72,65,83,78,84,95,67,72,65,73,78,73,78,71,41,32,102,105,120,77,101,116,104,111,100,40,65,68,68,69,82,41,59,92,110,32,32,32,32,47,47,32,119,101,97,107,32,99,111,108,108,101,99,116,105,111,110,115,32,115,104,111,117,108,100,32,110,111,116,32,99,111,110,116,97,105,110,115,32,46,99,108,101,97,114,32,109,101,116,104,111,100,92,110,32,32,32,32,105,102,32,40,73,83,95,87,69,65,75,32,38,38,32,112,114,111,116,111,46,99,108,101,97,114,41,32,100,101,108,101,116,101,32,112,114,111,116,111,46,99,108,101,97,114,59,92,110,32,32,125,92,110,92,110,32,32,115,101,116,84,111,83,116,114,105,110,103,84,97,103,40,67,44,32,78,65,77,69,41,59,92,110,92,110,32,32,79,91,78,65,77,69,93,32,61,32,67,59,92,110,32,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,71,32,43,32,36,101,120,112,111,114,116,46,87,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,67,32,33,61,32,66,97,115,101,41,44,32,79,41,59,92,110,92,110,32,32,105,102,32,40,33,73,83,95,87,69,65,75,41,32,99,111,109,109,111,110,46,115,101,116,83,116,114,111,110,103,40,67,44,32,78,65,77,69,44,32,73,83,95,77,65,80,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,67,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,99,111,114,101,32,61,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,123,32,118,101,114,115,105,111,110,58,32,39,50,46,54,46,49,50,39,32,125,59,92,110,105,102,32,40,116,121,112,101,111,102,32,95,95,101,32,61,61,32,39,110,117,109,98,101,114,39,41,32,95,95,101,32,61,32,99,111,114,101,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,117,110,100,101,102,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,114,101,97,116,101,45,112,114,111,112,101,114,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,114,101,97,116,101,45,112,114,111,112,101,114,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,100,101,102,105,110,101,80,114,111,112,101,114,116,121,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,59,92,110,118,97,114,32,99,114,101,97,116,101,68,101,115,99,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,111,98,106,101,99,116,44,32,105,110,100,101,120,44,32,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,105,110,100,101,120,32,105,110,32,111,98,106,101,99,116,41,32,36,100,101,102,105,110,101,80,114,111,112,101,114,116,121,46,102,40,111,98,106,101,99,116,44,32,105,110,100,101,120,44,32,99,114,101,97,116,101,68,101,115,99,40,48,44,32,118,97,108,117,101,41,41,59,92,110,32,32,101,108,115,101,32,111,98,106,101,99,116,91,105,110,100,101,120,93,32,61,32,118,97,108,117,101,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,114,101,97,116,101,45,112,114,111,112,101,114,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,111,112,116,105,111,110,97,108,32,47,32,115,105,109,112,108,101,32,99,111,110,116,101,120,116,32,98,105,110,100,105,110,103,92,110,118,97,114,32,97,70,117,110,99,116,105,111,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,45,102,117,110,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,102,110,44,32,116,104,97,116,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,97,70,117,110,99,116,105,111,110,40,102,110,41,59,92,110,32,32,105,102,32,40,116,104,97,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,114,101,116,117,114,110,32,102,110,59,92,110,32,32,115,119,105,116,99,104,32,40,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,99,97,115,101,32,49,58,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,97,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,46,99,97,108,108,40,116,104,97,116,44,32,97,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,99,97,115,101,32,50,58,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,46,99,97,108,108,40,116,104,97,116,44,32,97,44,32,98,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,99,97,115,101,32,51,58,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,97,44,32,98,44,32,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,46,99,97,108,108,40,116,104,97,116,44,32,97,44,32,98,44,32,99,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,47,42,32,46,46,46,97,114,103,115,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,110,46,97,112,112,108,121,40,116,104,97,116,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,125,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,97,116,101,45,116,111,45,105,115,111,45,115,116,114,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,97,116,101,45,116,111,45,105,115,111,45,115,116,114,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,50,48,46,51,46,52,46,51,54,32,47,32,49,53,46,57,46,53,46,52,51,32,68,97,116,101,46,112,114,111,116,111,116,121,112,101,46,116,111,73,83,79,83,116,114,105,110,103,40,41,92,110,118,97,114,32,102,97,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,103,101,116,84,105,109,101,32,61,32,68,97,116,101,46,112,114,111,116,111,116,121,112,101,46,103,101,116,84,105,109,101,59,92,110,118,97,114,32,36,116,111,73,83,79,83,116,114,105,110,103,32,61,32,68,97,116,101,46,112,114,111,116,111,116,121,112,101,46,116,111,73,83,79,83,116,114,105,110,103,59,92,110,92,110,118,97,114,32,108,122,32,61,32,102,117,110,99,116,105,111,110,32,40,110,117,109,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,117,109,32,62,32,57,32,63,32,110,117,109,32,58,32,39,48,39,32,43,32,110,117,109,59,92,110,125,59,92,110,92,110,47,47,32,80,104,97,110,116,111,109,74,83,32,47,32,111,108,100,32,87,101,98,75,105,116,32,104,97,115,32,97,32,98,114,111,107,101,110,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,115,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,40,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,36,116,111,73,83,79,83,116,114,105,110,103,46,99,97,108,108,40,110,101,119,32,68,97,116,101,40,45,53,101,49,51,32,45,32,49,41,41,32,33,61,32,39,48,51,56,53,45,48,55,45,50,53,84,48,55,58,48,54,58,51,57,46,57,57,57,90,39,59,92,110,125,41,32,124,124,32,33,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,36,116,111,73,83,79,83,116,114,105,110,103,46,99,97,108,108,40,110,101,119,32,68,97,116,101,40,78,97,78,41,41,59,92,110,125,41,41,32,63,32,102,117,110,99,116,105,111,110,32,116,111,73,83,79,83,116,114,105,110,103,40,41,32,123,92,110,32,32,105,102,32,40,33,105,115,70,105,110,105,116,101,40,103,101,116,84,105,109,101,46,99,97,108,108,40,116,104,105,115,41,41,41,32,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,39,73,110,118,97,108,105,100,32,116,105,109,101,32,118,97,108,117,101,39,41,59,92,110,32,32,118,97,114,32,100,32,61,32,116,104,105,115,59,92,110,32,32,118,97,114,32,121,32,61,32,100,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,59,92,110,32,32,118,97,114,32,109,32,61,32,100,46,103,101,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,41,59,92,110,32,32,118,97,114,32,115,32,61,32,121,32,60,32,48,32,63,32,39,45,39,32,58,32,121,32,62,32,57,57,57,57,32,63,32,39,43,39,32,58,32,39,39,59,92,110,32,32,114,101,116,117,114,110,32,115,32,43,32,40,39,48,48,48,48,48,39,32,43,32,77,97,116,104,46,97,98,115,40,121,41,41,46,115,108,105,99,101,40,115,32,63,32,45,54,32,58,32,45,52,41,32,43,92,110,32,32,32,32,39,45,39,32,43,32,108,122,40,100,46,103,101,116,85,84,67,77,111,110,116,104,40,41,32,43,32,49,41,32,43,32,39,45,39,32,43,32,108,122,40,100,46,103,101,116,85,84,67,68,97,116,101,40,41,41,32,43,92,110,32,32,32,32,39,84,39,32,43,32,108,122,40,100,46,103,101,116,85,84,67,72,111,117,114,115,40,41,41,32,43,32,39,58,39,32,43,32,108,122,40,100,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,41,32,43,92,110,32,32,32,32,39,58,39,32,43,32,108,122,40,100,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,41,32,43,32,39,46,39,32,43,32,40,109,32,62,32,57,57,32,63,32,109,32,58,32,39,48,39,32,43,32,108,122,40,109,41,41,32,43,32,39,90,39,59,92,110,125,32,58,32,36,116,111,73,83,79,83,116,114,105,110,103,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,97,116,101,45,116,111,45,105,115,111,45,115,116,114,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,97,116,101,45,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,97,116,101,45,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,80,114,105,109,105,116,105,118,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,112,114,105,109,105,116,105,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,92,34,41,59,92,110,118,97,114,32,78,85,77,66,69,82,32,61,32,39,110,117,109,98,101,114,39,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,104,105,110,116,41,32,123,92,110,32,32,105,102,32,40,104,105,110,116,32,33,61,61,32,39,115,116,114,105,110,103,39,32,38,38,32,104,105,110,116,32,33,61,61,32,78,85,77,66,69,82,32,38,38,32,104,105,110,116,32,33,61,61,32,39,100,101,102,97,117,108,116,39,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,39,73,110,99,111,114,114,101,99,116,32,104,105,110,116,39,41,59,92,110,32,32,114,101,116,117,114,110,32,116,111,80,114,105,109,105,116,105,118,101,40,97,110,79,98,106,101,99,116,40,116,104,105,115,41,44,32,104,105,110,116,32,33,61,32,78,85,77,66,69,82,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,97,116,101,45,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,102,105,110,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,102,105,110,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,47,47,32,55,46,50,46,49,32,82,101,113,117,105,114,101,79,98,106,101,99,116,67,111,101,114,99,105,98,108,101,40,97,114,103,117,109,101,110,116,41,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,105,102,32,40,105,116,32,61,61,32,117,110,100,101,102,105,110,101,100,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,92,34,67,97,110,39,116,32,99,97,108,108,32,109,101,116,104,111,100,32,111,110,32,32,92,34,32,43,32,105,116,41,59,92,110,32,32,114,101,116,117,114,110,32,105,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,102,105,110,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,84,104,97,110,107,39,115,32,73,69,56,32,102,111,114,32,104,105,115,32,102,117,110,110,121,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,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,123,125,44,32,39,97,39,44,32,123,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,55,59,32,125,32,125,41,46,97,32,33,61,32,55,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,111,109,45,99,114,101,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,111,109,45,99,114,101,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,100,111,99,117,109,101,110,116,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,46,100,111,99,117,109,101,110,116,41,59,92,110,47,47,32,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,32,105,115,32,39,111,98,106,101,99,116,39,32,105,110,32,111,108,100,32,73,69,92,110,118,97,114,32,105,115,32,61,32,105,115,79,98,106,101,99,116,40,100,111,99,117,109,101,110,116,41,32,38,38,32,105,115,79,98,106,101,99,116,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,32,63,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,105,116,41,32,58,32,123,125,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,111,109,45,99,114,101,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,110,117,109,45,98,117,103,45,107,101,121,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,110,117,109,45,98,117,103,45,107,101,121,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,47,47,32,73,69,32,56,45,32,100,111,110,39,116,32,101,110,117,109,32,98,117,103,32,107,101,121,115,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,40,92,110,32,32,39,99,111,110,115,116,114,117,99,116,111,114,44,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,105,115,80,114,111,116,111,116,121,112,101,79,102,44,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,44,116,111,76,111,99,97,108,101,83,116,114,105,110,103,44,116,111,83,116,114,105,110,103,44,118,97,108,117,101,79,102,39,92,110,41,46,115,112,108,105,116,40,39,44,39,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,110,117,109,45,98,117,103,45,107,101,121,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,110,117,109,45,107,101,121,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,110,117,109,45,107,101,121,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,97,108,108,32,101,110,117,109,101,114,97,98,108,101,32,111,98,106,101,99,116,32,107,101,121,115,44,32,105,110,99,108,117,100,101,115,32,115,121,109,98,111,108,115,92,110,118,97,114,32,103,101,116,75,101,121,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,107,101,121,115,46,106,115,92,34,41,59,92,110,118,97,114,32,103,79,80,83,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,115,46,106,115,92,34,41,59,92,110,118,97,114,32,112,73,69,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,112,105,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,112,105,101,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,103,101,116,75,101,121,115,40,105,116,41,59,92,110,32,32,118,97,114,32,103,101,116,83,121,109,98,111,108,115,32,61,32,103,79,80,83,46,102,59,92,110,32,32,105,102,32,40,103,101,116,83,121,109,98,111,108,115,41,32,123,92,110,32,32,32,32,118,97,114,32,115,121,109,98,111,108,115,32,61,32,103,101,116,83,121,109,98,111,108,115,40,105,116,41,59,92,110,32,32,32,32,118,97,114,32,105,115,69,110,117,109,32,61,32,112,73,69,46,102,59,92,110,32,32,32,32,118,97,114,32,105,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,107,101,121,59,92,110,32,32,32,32,119,104,105,108,101,32,40,115,121,109,98,111,108,115,46,108,101,110,103,116,104,32,62,32,105,41,32,105,102,32,40,105,115,69,110,117,109,46,99,97,108,108,40,105,116,44,32,107,101,121,32,61,32,115,121,109,98,111,108,115,91,105,43,43,93,41,41,32,114,101,115,117,108,116,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,125,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,110,117,109,45,107,101,121,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,99,111,114,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,59,92,110,118,97,114,32,104,105,100,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,100,101,102,105,110,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,118,97,114,32,99,116,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,116,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,92,34,41,59,92,110,118,97,114,32,80,82,79,84,79,84,89,80,69,32,61,32,39,112,114,111,116,111,116,121,112,101,39,59,92,110,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,102,117,110,99,116,105,111,110,32,40,116,121,112,101,44,32,110,97,109,101,44,32,115,111,117,114,99,101,41,32,123,92,110,32,32,118,97,114,32,73,83,95,70,79,82,67,69,68,32,61,32,116,121,112,101,32,38,32,36,101,120,112,111,114,116,46,70,59,92,110,32,32,118,97,114,32,73,83,95,71,76,79,66,65,76,32,61,32,116,121,112,101,32,38,32,36,101,120,112,111,114,116,46,71,59,92,110,32,32,118,97,114,32,73,83,95,83,84,65,84,73,67,32,61,32,116,121,112,101,32,38,32,36,101,120,112,111,114,116,46,83,59,92,110,32,32,118,97,114,32,73,83,95,80,82,79,84,79,32,61,32,116,121,112,101,32,38,32,36,101,120,112,111,114,116,46,80,59,92,110,32,32,118,97,114,32,73,83,95,66,73,78,68,32,61,32,116,121,112,101,32,38,32,36,101,120,112,111,114,116,46,66,59,92,110,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,73,83,95,71,76,79,66,65,76,32,63,32,103,108,111,98,97,108,32,58,32,73,83,95,83,84,65,84,73,67,32,63,32,103,108,111,98,97,108,91,110,97,109,101,93,32,124,124,32,40,103,108,111,98,97,108,91,110,97,109,101,93,32,61,32,123,125,41,32,58,32,40,103,108,111,98,97,108,91,110,97,109,101,93,32,124,124,32,123,125,41,91,80,82,79,84,79,84,89,80,69,93,59,92,110,32,32,118,97,114,32,101,120,112,111,114,116,115,32,61,32,73,83,95,71,76,79,66,65,76,32,63,32,99,111,114,101,32,58,32,99,111,114,101,91,110,97,109,101,93,32,124,124,32,40,99,111,114,101,91,110,97,109,101,93,32,61,32,123,125,41,59,92,110,32,32,118,97,114,32,101,120,112,80,114,111,116,111,32,61,32,101,120,112,111,114,116,115,91,80,82,79,84,79,84,89,80,69,93,32,124,124,32,40,101,120,112,111,114,116,115,91,80,82,79,84,79,84,89,80,69,93,32,61,32,123,125,41,59,92,110,32,32,118,97,114,32,107,101,121,44,32,111,119,110,44,32,111,117,116,44,32,101,120,112,59,92,110,32,32,105,102,32,40,73,83,95,71,76,79,66,65,76,41,32,115,111,117,114,99,101,32,61,32,110,97,109,101,59,92,110,32,32,102,111,114,32,40,107,101,121,32,105,110,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,47,47,32,99,111,110,116,97,105,110,115,32,105,110,32,110,97,116,105,118,101,92,110,32,32,32,32,111,119,110,32,61,32,33,73,83,95,70,79,82,67,69,68,32,38,38,32,116,97,114,103,101,116,32,38,38,32,116,97,114,103,101,116,91,107,101,121,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,47,47,32,101,120,112,111,114,116,32,110,97,116,105,118,101,32,111,114,32,112,97,115,115,101,100,92,110,32,32,32,32,111,117,116,32,61,32,40,111,119,110,32,63,32,116,97,114,103,101,116,32,58,32,115,111,117,114,99,101,41,91,107,101,121,93,59,92,110,32,32,32,32,47,47,32,98,105,110,100,32,116,105,109,101,114,115,32,116,111,32,103,108,111,98,97,108,32,102,111,114,32,99,97,108,108,32,102,114,111,109,32,101,120,112,111,114,116,32,99,111,110,116,101,120,116,92,110,32,32,32,32,101,120,112,32,61,32,73,83,95,66,73,78,68,32,38,38,32,111,119,110,32,63,32,99,116,120,40,111,117,116,44,32,103,108,111,98,97,108,41,32,58,32,73,83,95,80,82,79,84,79,32,38,38,32,116,121,112,101,111,102,32,111,117,116,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,99,116,120,40,70,117,110,99,116,105,111,110,46,99,97,108,108,44,32,111,117,116,41,32,58,32,111,117,116,59,92,110,32,32,32,32,47,47,32,101,120,116,101,110,100,32,103,108,111,98,97,108,92,110,32,32,32,32,105,102,32,40,116,97,114,103,101,116,41,32,114,101,100,101,102,105,110,101,40,116,97,114,103,101,116,44,32,107,101,121,44,32,111,117,116,44,32,116,121,112,101,32,38,32,36,101,120,112,111,114,116,46,85,41,59,92,110,32,32,32,32,47,47,32,101,120,112,111,114,116,92,110,32,32,32,32,105,102,32,40,101,120,112,111,114,116,115,91,107,101,121,93,32,33,61,32,111,117,116,41,32,104,105,100,101,40,101,120,112,111,114,116,115,44,32,107,101,121,44,32,101,120,112,41,59,92,110,32,32,32,32,105,102,32,40,73,83,95,80,82,79,84,79,32,38,38,32,101,120,112,80,114,111,116,111,91,107,101,121,93,32,33,61,32,111,117,116,41,32,101,120,112,80,114,111,116,111,91,107,101,121,93,32,61,32,111,117,116,59,92,110,32,32,125,92,110,125,59,92,110,103,108,111,98,97,108,46,99,111,114,101,32,61,32,99,111,114,101,59,92,110,47,47,32,116,121,112,101,32,98,105,116,109,97,112,92,110,36,101,120,112,111,114,116,46,70,32,61,32,49,59,32,32,32,47,47,32,102,111,114,99,101,100,92,110,36,101,120,112,111,114,116,46,71,32,61,32,50,59,32,32,32,47,47,32,103,108,111,98,97,108,92,110,36,101,120,112,111,114,116,46,83,32,61,32,52,59,32,32,32,47,47,32,115,116,97,116,105,99,92,110,36,101,120,112,111,114,116,46,80,32,61,32,56,59,32,32,32,47,47,32,112,114,111,116,111,92,110,36,101,120,112,111,114,116,46,66,32,61,32,49,54,59,32,32,47,47,32,98,105,110,100,92,110,36,101,120,112,111,114,116,46,87,32,61,32,51,50,59,32,32,47,47,32,119,114,97,112,92,110,36,101,120,112,111,114,116,46,85,32,61,32,54,52,59,32,32,47,47,32,115,97,102,101,92,110,36,101,120,112,111,114,116,46,82,32,61,32,49,50,56,59,32,47,47,32,114,101,97,108,32,112,114,111,116,111,32,109,101,116,104,111,100,32,102,111,114,32,96,108,105,98,114,97,114,121,96,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,36,101,120,112,111,114,116,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,45,105,115,45,114,101,103,101,120,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,45,105,115,45,114,101,103,101,120,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,77,65,84,67,72,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,109,97,116,99,104,39,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,75,69,89,41,32,123,92,110,32,32,118,97,114,32,114,101,32,61,32,47,46,47,59,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,39,47,46,47,39,91,75,69,89,93,40,114,101,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,114,101,91,77,65,84,67,72,93,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,39,47,46,47,39,91,75,69,89,93,40,114,101,41,59,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,102,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,92,110,32,32,125,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,45,105,115,45,114,101,103,101,120,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,101,120,101,99,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,33,33,101,120,101,99,40,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,105,120,45,114,101,45,119,107,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,105,120,45,114,101,45,119,107,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,115,54,46,114,101,103,101,120,112,46,101,120,101,99,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,101,120,101,99,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,100,101,102,105,110,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,118,97,114,32,104,105,100,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,92,34,41,59,92,110,118,97,114,32,102,97,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,100,101,102,105,110,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,102,105,110,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,102,105,110,101,100,46,106,115,92,34,41,59,92,110,118,97,114,32,119,107,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,103,101,120,112,69,120,101,99,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,103,101,120,112,45,101,120,101,99,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,103,101,120,112,45,101,120,101,99,46,106,115,92,34,41,59,92,110,92,110,118,97,114,32,83,80,69,67,73,69,83,32,61,32,119,107,115,40,39,115,112,101,99,105,101,115,39,41,59,92,110,92,110,118,97,114,32,82,69,80,76,65,67,69,95,83,85,80,80,79,82,84,83,95,78,65,77,69,68,95,71,82,79,85,80,83,32,61,32,33,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,47,47,32,35,114,101,112,108,97,99,101,32,110,101,101,100,115,32,98,117,105,108,116,45,105,110,32,115,117,112,112,111,114,116,32,102,111,114,32,110,97,109,101,100,32,103,114,111,117,112,115,46,92,110,32,32,47,47,32,35,109,97,116,99,104,32,119,111,114,107,115,32,102,105,110,101,32,98,101,99,97,117,115,101,32,105,116,32,106,117,115,116,32,114,101,116,117,114,110,32,116,104,101,32,101,120,101,99,32,114,101,115,117,108,116,115,44,32,101,118,101,110,32,105,102,32,105,116,32,104,97,115,92,110,32,32,47,47,32,97,32,92,34,103,114,111,112,115,92,34,32,112,114,111,112,101,114,116,121,46,92,110,32,32,118,97,114,32,114,101,32,61,32,47,46,47,59,92,110,32,32,114,101,46,101,120,101,99,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,32,32,32,32,114,101,115,117,108,116,46,103,114,111,117,112,115,32,61,32,123,32,97,58,32,39,55,39,32,125,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,59,92,110,32,32,114,101,116,117,114,110,32,39,39,46,114,101,112,108,97,99,101,40,114,101,44,32,39,36,60,97,62,39,41,32,33,61,61,32,39,55,39,59,92,110,125,41,59,92,110,92,110,118,97,114,32,83,80,76,73,84,95,87,79,82,75,83,95,87,73,84,72,95,79,86,69,82,87,82,73,84,84,69,78,95,69,88,69,67,32,61,32,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,47,47,32,67,104,114,111,109,101,32,53,49,32,104,97,115,32,97,32,98,117,103,103,121,32,92,34,115,112,108,105,116,92,34,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,119,104,101,110,32,82,101,103,69,120,112,35,101,120,101,99,32,33,61,61,32,110,97,116,105,118,101,69,120,101,99,92,110,32,32,118,97,114,32,114,101,32,61,32,47,40,63,58,41,47,59,92,110,32,32,118,97,114,32,111,114,105,103,105,110,97,108,69,120,101,99,32,61,32,114,101,46,101,120,101,99,59,92,110,32,32,114,101,46,101,120,101,99,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,111,114,105,103,105,110,97,108,69,120,101,99,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,32,125,59,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,39,97,98,39,46,115,112,108,105,116,40,114,101,41,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,46,108,101,110,103,116,104,32,61,61,61,32,50,32,38,38,32,114,101,115,117,108,116,91,48,93,32,61,61,61,32,39,97,39,32,38,38,32,114,101,115,117,108,116,91,49,93,32,61,61,61,32,39,98,39,59,92,110,125,41,40,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,75,69,89,44,32,108,101,110,103,116,104,44,32,101,120,101,99,41,32,123,92,110,32,32,118,97,114,32,83,89,77,66,79,76,32,61,32,119,107,115,40,75,69,89,41,59,92,110,92,110,32,32,118,97,114,32,68,69,76,69,71,65,84,69,83,95,84,79,95,83,89,77,66,79,76,32,61,32,33,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,47,47,32,83,116,114,105,110,103,32,109,101,116,104,111,100,115,32,99,97,108,108,32,115,121,109,98,111,108,45,110,97,109,101,100,32,82,101,103,69,112,32,109,101,116,104,111,100,115,92,110,32,32,32,32,118,97,114,32,79,32,61,32,123,125,59,92,110,32,32,32,32,79,91,83,89,77,66,79,76,93,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,55,59,32,125,59,92,110,32,32,32,32,114,101,116,117,114,110,32,39,39,91,75,69,89,93,40,79,41,32,33,61,32,55,59,92,110,32,32,125,41,59,92,110,92,110,32,32,118,97,114,32,68,69,76,69,71,65,84,69,83,95,84,79,95,69,88,69,67,32,61,32,68,69,76,69,71,65,84,69,83,95,84,79,95,83,89,77,66,79,76,32,63,32,33,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,47,47,32,83,121,109,98,111,108,45,110,97,109,101,100,32,82,101,103,69,120,112,32,109,101,116,104,111,100,115,32,99,97,108,108,32,46,101,120,101,99,92,110,32,32,32,32,118,97,114,32,101,120,101,99,67,97,108,108,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,118,97,114,32,114,101,32,61,32,47,97,47,59,92,110,32,32,32,32,114,101,46,101,120,101,99,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,101,120,101,99,67,97,108,108,101,100,32,61,32,116,114,117,101,59,32,114,101,116,117,114,110,32,110,117,108,108,59,32,125,59,92,110,32,32,32,32,105,102,32,40,75,69,89,32,61,61,61,32,39,115,112,108,105,116,39,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,103,69,120,112,91,64,64,115,112,108,105,116,93,32,100,111,101,115,110,39,116,32,99,97,108,108,32,116,104,101,32,114,101,103,101,120,39,115,32,101,120,101,99,32,109,101,116,104,111,100,44,32,98,117,116,32,102,105,114,115,116,32,99,114,101,97,116,101,115,92,110,32,32,32,32,32,32,47,47,32,97,32,110,101,119,32,111,110,101,46,32,87,101,32,110,101,101,100,32,116,111,32,114,101,116,117,114,110,32,116,104,101,32,112,97,116,99,104,101,100,32,114,101,103,101,120,32,119,104,101,110,32,99,114,101,97,116,105,110,103,32,116,104,101,32,110,101,119,32,111,110,101,46,92,110,32,32,32,32,32,32,114,101,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,123,125,59,92,110,32,32,32,32,32,32,114,101,46,99,111,110,115,116,114,117,99,116,111,114,91,83,80,69,67,73,69,83,93,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,114,101,59,32,125,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,91,83,89,77,66,79,76,93,40,39,39,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,33,101,120,101,99,67,97,108,108,101,100,59,92,110,32,32,125,41,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,105,102,32,40,92,110,32,32,32,32,33,68,69,76,69,71,65,84,69,83,95,84,79,95,83,89,77,66,79,76,32,124,124,92,110,32,32,32,32,33,68,69,76,69,71,65,84,69,83,95,84,79,95,69,88,69,67,32,124,124,92,110,32,32,32,32,40,75,69,89,32,61,61,61,32,39,114,101,112,108,97,99,101,39,32,38,38,32,33,82,69,80,76,65,67,69,95,83,85,80,80,79,82,84,83,95,78,65,77,69,68,95,71,82,79,85,80,83,41,32,124,124,92,110,32,32,32,32,40,75,69,89,32,61,61,61,32,39,115,112,108,105,116,39,32,38,38,32,33,83,80,76,73,84,95,87,79,82,75,83,95,87,73,84,72,95,79,86,69,82,87,82,73,84,84,69,78,95,69,88,69,67,41,92,110,32,32,41,32,123,92,110,32,32,32,32,118,97,114,32,110,97,116,105,118,101,82,101,103,69,120,112,77,101,116,104,111,100,32,61,32,47,46,47,91,83,89,77,66,79,76,93,59,92,110,32,32,32,32,118,97,114,32,102,110,115,32,61,32,101,120,101,99,40,92,110,32,32,32,32,32,32,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,83,89,77,66,79,76,44,92,110,32,32,32,32,32,32,39,39,91,75,69,89,93,44,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,121,98,101,67,97,108,108,78,97,116,105,118,101,40,110,97,116,105,118,101,77,101,116,104,111,100,44,32,114,101,103,101,120,112,44,32,115,116,114,44,32,97,114,103,50,44,32,102,111,114,99,101,83,116,114,105,110,103,77,101,116,104,111,100,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,101,103,101,120,112,46,101,120,101,99,32,61,61,61,32,114,101,103,101,120,112,69,120,101,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,68,69,76,69,71,65,84,69,83,95,84,79,95,83,89,77,66,79,76,32,38,38,32,33,102,111,114,99,101,83,116,114,105,110,103,77,101,116,104,111,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,110,97,116,105,118,101,32,83,116,114,105,110,103,32,109,101,116,104,111,100,32,97,108,114,101,97,100,121,32,100,101,108,101,103,97,116,101,115,32,116,111,32,64,64,109,101,116,104,111,100,32,40,116,104,105,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,112,111,108,121,102,105,108,108,101,100,32,102,117,110,99,116,105,111,110,41,44,32,108,101,97,115,105,110,103,32,116,111,32,105,110,102,105,110,105,116,101,32,114,101,99,117,114,115,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,97,118,111,105,100,32,105,116,32,98,121,32,100,105,114,101,99,116,108,121,32,99,97,108,108,105,110,103,32,116,104,101,32,110,97,116,105,118,101,32,64,64,109,101,116,104,111,100,32,109,101,116,104,111,100,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,32,100,111,110,101,58,32,116,114,117,101,44,32,118,97,108,117,101,58,32,110,97,116,105,118,101,82,101,103,69,120,112,77,101,116,104,111,100,46,99,97,108,108,40,114,101,103,101,120,112,44,32,115,116,114,44,32,97,114,103,50,41,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,32,100,111,110,101,58,32,116,114,117,101,44,32,118,97,108,117,101,58,32,110,97,116,105,118,101,77,101,116,104,111,100,46,99,97,108,108,40,115,116,114,44,32,114,101,103,101,120,112,44,32,97,114,103,50,41,32,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,32,100,111,110,101,58,32,102,97,108,115,101,32,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,41,59,92,110,32,32,32,32,118,97,114,32,115,116,114,102,110,32,61,32,102,110,115,91,48,93,59,92,110,32,32,32,32,118,97,114,32,114,120,102,110,32,61,32,102,110,115,91,49,93,59,92,110,92,110,32,32,32,32,114,101,100,101,102,105,110,101,40,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,44,32,75,69,89,44,32,115,116,114,102,110,41,59,92,110,32,32,32,32,104,105,100,101,40,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,44,32,83,89,77,66,79,76,44,32,108,101,110,103,116,104,32,61,61,32,50,92,110,32,32,32,32,32,32,47,47,32,50,49,46,50,46,53,46,56,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,91,64,64,114,101,112,108,97,99,101,93,40,115,116,114,105,110,103,44,32,114,101,112,108,97,99,101,86,97,108,117,101,41,92,110,32,32,32,32,32,32,47,47,32,50,49,46,50,46,53,46,49,49,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,91,64,64,115,112,108,105,116,93,40,115,116,114,105,110,103,44,32,108,105,109,105,116,41,92,110,32,32,32,32,32,32,63,32,102,117,110,99,116,105,111,110,32,40,115,116,114,105,110,103,44,32,97,114,103,41,32,123,32,114,101,116,117,114,110,32,114,120,102,110,46,99,97,108,108,40,115,116,114,105,110,103,44,32,116,104,105,115,44,32,97,114,103,41,59,32,125,92,110,32,32,32,32,32,32,47,47,32,50,49,46,50,46,53,46,54,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,91,64,64,109,97,116,99,104,93,40,115,116,114,105,110,103,41,92,110,32,32,32,32,32,32,47,47,32,50,49,46,50,46,53,46,57,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,91,64,64,115,101,97,114,99,104,93,40,115,116,114,105,110,103,41,92,110,32,32,32,32,32,32,58,32,102,117,110,99,116,105,111,110,32,40,115,116,114,105,110,103,41,32,123,32,114,101,116,117,114,110,32,114,120,102,110,46,99,97,108,108,40,115,116,114,105,110,103,44,32,116,104,105,115,41,59,32,125,92,110,32,32,32,32,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,105,120,45,114,101,45,119,107,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,108,97,103,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,108,97,103,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,50,49,46,50,46,53,46,51,32,103,101,116,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,46,102,108,97,103,115,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,116,104,97,116,32,61,32,97,110,79,98,106,101,99,116,40,116,104,105,115,41,59,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,39,39,59,92,110,32,32,105,102,32,40,116,104,97,116,46,103,108,111,98,97,108,41,32,114,101,115,117,108,116,32,43,61,32,39,103,39,59,92,110,32,32,105,102,32,40,116,104,97,116,46,105,103,110,111,114,101,67,97,115,101,41,32,114,101,115,117,108,116,32,43,61,32,39,105,39,59,92,110,32,32,105,102,32,40,116,104,97,116,46,109,117,108,116,105,108,105,110,101,41,32,114,101,115,117,108,116,32,43,61,32,39,109,39,59,92,110,32,32,105,102,32,40,116,104,97,116,46,117,110,105,99,111,100,101,41,32,114,101,115,117,108,116,32,43,61,32,39,117,39,59,92,110,32,32,105,102,32,40,116,104,97,116,46,115,116,105,99,107,121,41,32,114,101,115,117,108,116,32,43,61,32,39,121,39,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,108,97,103,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,108,97,116,116,101,110,45,105,110,116,111,45,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,108,97,116,116,101,110,45,105,110,116,111,45,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,104,116,116,112,115,58,47,47,116,99,51,57,46,103,105,116,104,117,98,46,105,111,47,112,114,111,112,111,115,97,108,45,102,108,97,116,77,97,112,47,35,115,101,99,45,70,108,97,116,116,101,110,73,110,116,111,65,114,114,97,121,92,110,118,97,114,32,105,115,65,114,114,97,121,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,97,114,114,97,121,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,99,116,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,116,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,92,34,41,59,92,110,118,97,114,32,73,83,95,67,79,78,67,65,84,95,83,80,82,69,65,68,65,66,76,69,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,105,115,67,111,110,99,97,116,83,112,114,101,97,100,97,98,108,101,39,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,102,108,97,116,116,101,110,73,110,116,111,65,114,114,97,121,40,116,97,114,103,101,116,44,32,111,114,105,103,105,110,97,108,44,32,115,111,117,114,99,101,44,32,115,111,117,114,99,101,76,101,110,44,32,115,116,97,114,116,44,32,100,101,112,116,104,44,32,109,97,112,112,101,114,44,32,116,104,105,115,65,114,103,41,32,123,92,110,32,32,118,97,114,32,116,97,114,103,101,116,73,110,100,101,120,32,61,32,115,116,97,114,116,59,92,110,32,32,118,97,114,32,115,111,117,114,99,101,73,110,100,101,120,32,61,32,48,59,92,110,32,32,118,97,114,32,109,97,112,70,110,32,61,32,109,97,112,112,101,114,32,63,32,99,116,120,40,109,97,112,112,101,114,44,32,116,104,105,115,65,114,103,44,32,51,41,32,58,32,102,97,108,115,101,59,92,110,32,32,118,97,114,32,101,108,101,109,101,110,116,44,32,115,112,114,101,97,100,97,98,108,101,59,92,110,92,110,32,32,119,104,105,108,101,32,40,115,111,117,114,99,101,73,110,100,101,120,32,60,32,115,111,117,114,99,101,76,101,110,41,32,123,92,110,32,32,32,32,105,102,32,40,115,111,117,114,99,101,73,110,100,101,120,32,105,110,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,32,61,32,109,97,112,70,110,32,63,32,109,97,112,70,110,40,115,111,117,114,99,101,91,115,111,117,114,99,101,73,110,100,101,120,93,44,32,115,111,117,114,99,101,73,110,100,101,120,44,32,111,114,105,103,105,110,97,108,41,32,58,32,115,111,117,114,99,101,91,115,111,117,114,99,101,73,110,100,101,120,93,59,92,110,92,110,32,32,32,32,32,32,115,112,114,101,97,100,97,98,108,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,101,108,101,109,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,115,112,114,101,97,100,97,98,108,101,32,61,32,101,108,101,109,101,110,116,91,73,83,95,67,79,78,67,65,84,95,83,80,82,69,65,68,65,66,76,69,93,59,92,110,32,32,32,32,32,32,32,32,115,112,114,101,97,100,97,98,108,101,32,61,32,115,112,114,101,97,100,97,98,108,101,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,33,33,115,112,114,101,97,100,97,98,108,101,32,58,32,105,115,65,114,114,97,121,40,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,112,114,101,97,100,97,98,108,101,32,38,38,32,100,101,112,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,73,110,100,101,120,32,61,32,102,108,97,116,116,101,110,73,110,116,111,65,114,114,97,121,40,116,97,114,103,101,116,44,32,111,114,105,103,105,110,97,108,44,32,101,108,101,109,101,110,116,44,32,116,111,76,101,110,103,116,104,40,101,108,101,109,101,110,116,46,108,101,110,103,116,104,41,44,32,116,97,114,103,101,116,73,110,100,101,120,44,32,100,101,112,116,104,32,45,32,49,41,32,45,32,49,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,97,114,103,101,116,73,110,100,101,120,32,62,61,32,48,120,49,102,102,102,102,102,102,102,102,102,102,102,102,102,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,41,59,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,91,116,97,114,103,101,116,73,110,100,101,120,93,32,61,32,101,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,97,114,103,101,116,73,110,100,101,120,43,43,59,92,110,32,32,32,32,125,92,110,32,32,32,32,115,111,117,114,99,101,73,110,100,101,120,43,43,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,97,114,103,101,116,73,110,100,101,120,59,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,108,97,116,116,101,110,73,110,116,111,65,114,114,97,121,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,108,97,116,116,101,110,45,105,110,116,111,45,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,111,114,45,111,102,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,111,114,45,111,102,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,99,116,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,116,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,92,34,41,59,92,110,118,97,114,32,99,97,108,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,45,99,97,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,99,97,108,108,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,65,114,114,97,121,73,116,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,97,114,114,97,121,45,105,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,97,114,114,97,121,45,105,116,101,114,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,103,101,116,73,116,101,114,70,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,114,101,46,103,101,116,45,105,116,101,114,97,116,111,114,45,109,101,116,104,111,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,99,111,114,101,46,103,101,116,45,105,116,101,114,97,116,111,114,45,109,101,116,104,111,100,46,106,115,92,34,41,59,92,110,118,97,114,32,66,82,69,65,75,32,61,32,123,125,59,92,110,118,97,114,32,82,69,84,85,82,78,32,61,32,123,125,59,92,110,118,97,114,32,101,120,112,111,114,116,115,32,61,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,114,97,98,108,101,44,32,101,110,116,114,105,101,115,44,32,102,110,44,32,116,104,97,116,44,32,73,84,69,82,65,84,79,82,41,32,123,92,110,32,32,118,97,114,32,105,116,101,114,70,110,32,61,32,73,84,69,82,65,84,79,82,32,63,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,105,116,101,114,97,98,108,101,59,32,125,32,58,32,103,101,116,73,116,101,114,70,110,40,105,116,101,114,97,98,108,101,41,59,92,110,32,32,118,97,114,32,102,32,61,32,99,116,120,40,102,110,44,32,116,104,97,116,44,32,101,110,116,114,105,101,115,32,63,32,50,32,58,32,49,41,59,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,59,92,110,32,32,118,97,114,32,108,101,110,103,116,104,44,32,115,116,101,112,44,32,105,116,101,114,97,116,111,114,44,32,114,101,115,117,108,116,59,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,105,116,101,114,70,110,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,105,116,101,114,97,98,108,101,32,43,32,39,32,105,115,32,110,111,116,32,105,116,101,114,97,98,108,101,33,39,41,59,92,110,32,32,47,47,32,102,97,115,116,32,99,97,115,101,32,102,111,114,32,97,114,114,97,121,115,32,119,105,116,104,32,100,101,102,97,117,108,116,32,105,116,101,114,97,116,111,114,92,110,32,32,105,102,32,40,105,115,65,114,114,97,121,73,116,101,114,40,105,116,101,114,70,110,41,41,32,102,111,114,32,40,108,101,110,103,116,104,32,61,32,116,111,76,101,110,103,116,104,40,105,116,101,114,97,98,108,101,46,108,101,110,103,116,104,41,59,32,108,101,110,103,116,104,32,62,32,105,110,100,101,120,59,32,105,110,100,101,120,43,43,41,32,123,92,110,32,32,32,32,114,101,115,117,108,116,32,61,32,101,110,116,114,105,101,115,32,63,32,102,40,97,110,79,98,106,101,99,116,40,115,116,101,112,32,61,32,105,116,101,114,97,98,108,101,91,105,110,100,101,120,93,41,91,48,93,44,32,115,116,101,112,91,49,93,41,32,58,32,102,40,105,116,101,114,97,98,108,101,91,105,110,100,101,120,93,41,59,92,110,32,32,32,32,105,102,32,40,114,101,115,117,108,116,32,61,61,61,32,66,82,69,65,75,32,124,124,32,114,101,115,117,108,116,32,61,61,61,32,82,69,84,85,82,78,41,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,32,101,108,115,101,32,102,111,114,32,40,105,116,101,114,97,116,111,114,32,61,32,105,116,101,114,70,110,46,99,97,108,108,40,105,116,101,114,97,98,108,101,41,59,32,33,40,115,116,101,112,32,61,32,105,116,101,114,97,116,111,114,46,110,101,120,116,40,41,41,46,100,111,110,101,59,41,32,123,92,110,32,32,32,32,114,101,115,117,108,116,32,61,32,99,97,108,108,40,105,116,101,114,97,116,111,114,44,32,102,44,32,115,116,101,112,46,118,97,108,117,101,44,32,101,110,116,114,105,101,115,41,59,92,110,32,32,32,32,105,102,32,40,114,101,115,117,108,116,32,61,61,61,32,66,82,69,65,75,32,124,124,32,114,101,115,117,108,116,32,61,61,61,32,82,69,84,85,82,78,41,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,125,59,92,110,101,120,112,111,114,116,115,46,66,82,69,65,75,32,61,32,66,82,69,65,75,59,92,110,101,120,112,111,114,116,115,46,82,69,84,85,82,78,32,61,32,82,69,84,85,82,78,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,111,114,45,111,102,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,117,110,99,116,105,111,110,45,116,111,45,115,116,114,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,117,110,99,116,105,111,110,45,116,111,45,115,116,114,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,104,97,114,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,104,97,114,101,100,46,106,115,92,34,41,40,39,110,97,116,105,118,101,45,102,117,110,99,116,105,111,110,45,116,111,45,115,116,114,105,110,103,39,44,32,70,117,110,99,116,105,111,110,46,116,111,83,116,114,105,110,103,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,117,110,99,116,105,111,110,45,116,111,45,115,116,114,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,122,108,111,105,114,111,99,107,47,99,111,114,101,45,106,115,47,105,115,115,117,101,115,47,56,54,35,105,115,115,117,101,99,111,109,109,101,110,116,45,49,49,53,55,53,57,48,50,56,92,110,118,97,114,32,103,108,111,98,97,108,32,61,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,119,105,110,100,111,119,46,77,97,116,104,32,61,61,32,77,97,116,104,92,110,32,32,63,32,119,105,110,100,111,119,32,58,32,116,121,112,101,111,102,32,115,101,108,102,32,33,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,115,101,108,102,46,77,97,116,104,32,61,61,32,77,97,116,104,32,63,32,115,101,108,102,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,110,101,119,45,102,117,110,99,92,110,32,32,58,32,70,117,110,99,116,105,111,110,40,39,114,101,116,117,114,110,32,116,104,105,115,39,41,40,41,59,92,110,105,102,32,40,116,121,112,101,111,102,32,95,95,103,32,61,61,32,39,110,117,109,98,101,114,39,41,32,95,95,103,32,61,32,103,108,111,98,97,108,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,117,110,100,101,102,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,32,61,32,123,125,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,44,32,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,105,116,44,32,107,101,121,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,100,80,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,59,92,110,118,97,114,32,99,114,101,97,116,101,68,101,115,99,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,32,63,32,102,117,110,99,116,105,111,110,32,40,111,98,106,101,99,116,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,80,46,102,40,111,98,106,101,99,116,44,32,107,101,121,44,32,99,114,101,97,116,101,68,101,115,99,40,49,44,32,118,97,108,117,101,41,41,59,92,110,125,32,58,32,102,117,110,99,116,105,111,110,32,40,111,98,106,101,99,116,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,111,98,106,101,99,116,91,107,101,121,93,32,61,32,118,97,108,117,101,59,92,110,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,116,109,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,116,109,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,100,111,99,117,109,101,110,116,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,46,100,111,99,117,109,101,110,116,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,100,111,99,117,109,101,110,116,32,38,38,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,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,116,109,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,101,56,45,100,111,109,45,100,101,102,105,110,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,101,56,45,100,111,109,45,100,101,102,105,110,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,32,38,38,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,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,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,111,109,45,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,111,109,45,99,114,101,97,116,101,46,106,115,92,34,41,40,39,100,105,118,39,41,44,32,39,97,39,44,32,123,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,55,59,32,125,32,125,41,46,97,32,33,61,32,55,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,101,56,45,100,111,109,45,100,101,102,105,110,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,110,104,101,114,105,116,45,105,102,45,114,101,113,117,105,114,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,110,104,101,114,105,116,45,105,102,45,114,101,113,117,105,114,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,115,101,116,80,114,111,116,111,116,121,112,101,79,102,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,101,116,45,112,114,111,116,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,112,114,111,116,111,46,106,115,92,34,41,46,115,101,116,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,116,104,97,116,44,32,116,97,114,103,101,116,44,32,67,41,32,123,92,110,32,32,118,97,114,32,83,32,61,32,116,97,114,103,101,116,46,99,111,110,115,116,114,117,99,116,111,114,59,92,110,32,32,118,97,114,32,80,59,92,110,32,32,105,102,32,40,83,32,33,61,61,32,67,32,38,38,32,116,121,112,101,111,102,32,83,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,40,80,32,61,32,83,46,112,114,111,116,111,116,121,112,101,41,32,33,61,61,32,67,46,112,114,111,116,111,116,121,112,101,32,38,38,32,105,115,79,98,106,101,99,116,40,80,41,32,38,38,32,115,101,116,80,114,111,116,111,116,121,112,101,79,102,41,32,123,92,110,32,32,32,32,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,97,116,44,32,80,41,59,92,110,32,32,125,32,114,101,116,117,114,110,32,116,104,97,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,110,104,101,114,105,116,45,105,102,45,114,101,113,117,105,114,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,110,118,111,107,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,110,118,111,107,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,47,47,32,102,97,115,116,32,97,112,112,108,121,44,32,104,116,116,112,58,47,47,106,115,112,101,114,102,46,108,110,107,105,116,46,99,111,109,47,102,97,115,116,45,97,112,112,108,121,47,53,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,102,110,44,32,97,114,103,115,44,32,116,104,97,116,41,32,123,92,110,32,32,118,97,114,32,117,110,32,61,32,116,104,97,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,115,119,105,116,99,104,32,40,97,114,103,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,99,97,115,101,32,48,58,32,114,101,116,117,114,110,32,117,110,32,63,32,102,110,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,102,110,46,99,97,108,108,40,116,104,97,116,41,59,92,110,32,32,32,32,99,97,115,101,32,49,58,32,114,101,116,117,114,110,32,117,110,32,63,32,102,110,40,97,114,103,115,91,48,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,102,110,46,99,97,108,108,40,116,104,97,116,44,32,97,114,103,115,91,48,93,41,59,92,110,32,32,32,32,99,97,115,101,32,50,58,32,114,101,116,117,114,110,32,117,110,32,63,32,102,110,40,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,102,110,46,99,97,108,108,40,116,104,97,116,44,32,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,41,59,92,110,32,32,32,32,99,97,115,101,32,51,58,32,114,101,116,117,114,110,32,117,110,32,63,32,102,110,40,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,44,32,97,114,103,115,91,50,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,102,110,46,99,97,108,108,40,116,104,97,116,44,32,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,44,32,97,114,103,115,91,50,93,41,59,92,110,32,32,32,32,99,97,115,101,32,52,58,32,114,101,116,117,114,110,32,117,110,32,63,32,102,110,40,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,44,32,97,114,103,115,91,50,93,44,32,97,114,103,115,91,51,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,102,110,46,99,97,108,108,40,116,104,97,116,44,32,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,44,32,97,114,103,115,91,50,93,44,32,97,114,103,115,91,51,93,41,59,92,110,32,32,125,32,114,101,116,117,114,110,32,102,110,46,97,112,112,108,121,40,116,104,97,116,44,32,97,114,103,115,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,110,118,111,107,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,111,98,106,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,111,98,106,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,102,97,108,108,98,97,99,107,32,102,111,114,32,110,111,110,45,97,114,114,97,121,45,108,105,107,101,32,69,83,51,32,97,110,100,32,110,111,110,45,101,110,117,109,101,114,97,98,108,101,32,111,108,100,32,86,56,32,115,116,114,105,110,103,115,92,110,118,97,114,32,99,111,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,102,46,106,115,92,34,41,59,92,110,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,112,114,111,116,111,116,121,112,101,45,98,117,105,108,116,105,110,115,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,79,98,106,101,99,116,40,39,122,39,41,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,40,48,41,32,63,32,79,98,106,101,99,116,32,58,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,99,111,102,40,105,116,41,32,61,61,32,39,83,116,114,105,110,103,39,32,63,32,105,116,46,115,112,108,105,116,40,39,39,41,32,58,32,79,98,106,101,99,116,40,105,116,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,111,98,106,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,97,114,114,97,121,45,105,116,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,97,114,114,97,121,45,105,116,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,99,104,101,99,107,32,111,110,32,100,101,102,97,117,108,116,32,65,114,114,97,121,32,105,116,101,114,97,116,111,114,92,110,118,97,114,32,73,116,101,114,97,116,111,114,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,97,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,97,116,111,114,115,46,106,115,92,34,41,59,92,110,118,97,114,32,73,84,69,82,65,84,79,82,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,105,116,101,114,97,116,111,114,39,41,59,92,110,118,97,114,32,65,114,114,97,121,80,114,111,116,111,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,116,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,40,73,116,101,114,97,116,111,114,115,46,65,114,114,97,121,32,61,61,61,32,105,116,32,124,124,32,65,114,114,97,121,80,114,111,116,111,91,73,84,69,82,65,84,79,82,93,32,61,61,61,32,105,116,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,97,114,114,97,121,45,105,116,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,55,46,50,46,50,32,73,115,65,114,114,97,121,40,97,114,103,117,109,101,110,116,41,92,110,118,97,114,32,99,111,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,102,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,32,124,124,32,102,117,110,99,116,105,111,110,32,105,115,65,114,114,97,121,40,97,114,103,41,32,123,92,110,32,32,114,101,116,117,114,110,32,99,111,102,40,97,114,103,41,32,61,61,32,39,65,114,114,97,121,39,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,105,110,116,101,103,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,105,110,116,101,103,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,49,46,50,46,51,32,78,117,109,98,101,114,46,105,115,73,110,116,101,103,101,114,40,110,117,109,98,101,114,41,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,102,108,111,111,114,32,61,32,77,97,116,104,46,102,108,111,111,114,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,105,115,73,110,116,101,103,101,114,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,105,115,79,98,106,101,99,116,40,105,116,41,32,38,38,32,105,115,70,105,110,105,116,101,40,105,116,41,32,38,38,32,102,108,111,111,114,40,105,116,41,32,61,61,61,32,105,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,105,110,116,101,103,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,105,116,32,61,61,61,32,39,111,98,106,101,99,116,39,32,63,32,105,116,32,33,61,61,32,110,117,108,108,32,58,32,116,121,112,101,111,102,32,105,116,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,114,101,103,101,120,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,114,101,103,101,120,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,55,46,50,46,56,32,73,115,82,101,103,69,120,112,40,97,114,103,117,109,101,110,116,41,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,99,111,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,102,46,106,115,92,34,41,59,92,110,118,97,114,32,77,65,84,67,72,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,109,97,116,99,104,39,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,118,97,114,32,105,115,82,101,103,69,120,112,59,92,110,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,40,105,116,41,32,38,38,32,40,40,105,115,82,101,103,69,120,112,32,61,32,105,116,91,77,65,84,67,72,93,41,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,33,33,105,115,82,101,103,69,120,112,32,58,32,99,111,102,40,105,116,41,32,61,61,32,39,82,101,103,69,120,112,39,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,114,101,103,101,120,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,99,97,108,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,99,97,108,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,99,97,108,108,32,115,111,109,101,116,104,105,110,103,32,111,110,32,105,116,101,114,97,116,111,114,32,115,116,101,112,32,119,105,116,104,32,115,97,102,101,32,99,108,111,115,105,110,103,32,111,110,32,101,114,114,111,114,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,114,97,116,111,114,44,32,102,110,44,32,118,97,108,117,101,44,32,101,110,116,114,105,101,115,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,110,116,114,105,101,115,32,63,32,102,110,40,97,110,79,98,106,101,99,116,40,118,97,108,117,101,41,91,48,93,44,32,118,97,108,117,101,91,49,93,41,32,58,32,102,110,40,118,97,108,117,101,41,59,92,110,32,32,47,47,32,55,46,52,46,54,32,73,116,101,114,97,116,111,114,67,108,111,115,101,40,105,116,101,114,97,116,111,114,44,32,99,111,109,112,108,101,116,105,111,110,41,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,116,32,61,32,105,116,101,114,97,116,111,114,91,39,114,101,116,117,114,110,39,93,59,92,110,32,32,32,32,105,102,32,40,114,101,116,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,97,110,79,98,106,101,99,116,40,114,101,116,46,99,97,108,108,40,105,116,101,114,97,116,111,114,41,41,59,92,110,32,32,32,32,116,104,114,111,119,32,101,59,92,110,32,32,125,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,99,97,108,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,99,114,101,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,99,114,101,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,99,114,101,97,116,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,46,106,115,92,34,41,59,92,110,118,97,114,32,100,101,115,99,114,105,112,116,111,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,46,106,115,92,34,41,59,92,110,118,97,114,32,115,101,116,84,111,83,116,114,105,110,103,84,97,103,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,101,116,45,116,111,45,115,116,114,105,110,103,45,116,97,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,116,111,45,115,116,114,105,110,103,45,116,97,103,46,106,115,92,34,41,59,92,110,118,97,114,32,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,32,61,32,123,125,59,92,110,92,110,47,47,32,50,53,46,49,46,50,46,49,46,49,32,37,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,37,91,64,64,105,116,101,114,97,116,111,114,93,40,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,92,34,41,40,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,105,116,101,114,97,116,111,114,39,41,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,59,32,125,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,67,111,110,115,116,114,117,99,116,111,114,44,32,78,65,77,69,44,32,110,101,120,116,41,32,123,92,110,32,32,67,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,32,61,32,99,114,101,97,116,101,40,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,44,32,123,32,110,101,120,116,58,32,100,101,115,99,114,105,112,116,111,114,40,49,44,32,110,101,120,116,41,32,125,41,59,92,110,32,32,115,101,116,84,111,83,116,114,105,110,103,84,97,103,40,67,111,110,115,116,114,117,99,116,111,114,44,32,78,65,77,69,32,43,32,39,32,73,116,101,114,97,116,111,114,39,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,99,114,101,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,100,101,102,105,110,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,100,101,102,105,110,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,76,73,66,82,65,82,89,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,108,105,98,114,97,114,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,108,105,98,114,97,114,121,46,106,115,92,34,41,59,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,100,101,102,105,110,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,118,97,114,32,104,105,100,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,92,34,41,59,92,110,118,97,114,32,73,116,101,114,97,116,111,114,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,97,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,97,116,111,114,115,46,106,115,92,34,41,59,92,110,118,97,114,32,36,105,116,101,114,67,114,101,97,116,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,45,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,99,114,101,97,116,101,46,106,115,92,34,41,59,92,110,118,97,114,32,115,101,116,84,111,83,116,114,105,110,103,84,97,103,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,101,116,45,116,111,45,115,116,114,105,110,103,45,116,97,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,116,111,45,115,116,114,105,110,103,45,116,97,103,46,106,115,92,34,41,59,92,110,118,97,114,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,112,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,112,111,46,106,115,92,34,41,59,92,110,118,97,114,32,73,84,69,82,65,84,79,82,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,105,116,101,114,97,116,111,114,39,41,59,92,110,118,97,114,32,66,85,71,71,89,32,61,32,33,40,91,93,46,107,101,121,115,32,38,38,32,39,110,101,120,116,39,32,105,110,32,91,93,46,107,101,121,115,40,41,41,59,32,47,47,32,83,97,102,97,114,105,32,104,97,115,32,98,117,103,103,121,32,105,116,101,114,97,116,111,114,115,32,119,47,111,32,96,110,101,120,116,96,92,110,118,97,114,32,70,70,95,73,84,69,82,65,84,79,82,32,61,32,39,64,64,105,116,101,114,97,116,111,114,39,59,92,110,118,97,114,32,75,69,89,83,32,61,32,39,107,101,121,115,39,59,92,110,118,97,114,32,86,65,76,85,69,83,32,61,32,39,118,97,108,117,101,115,39,59,92,110,92,110,118,97,114,32,114,101,116,117,114,110,84,104,105,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,59,32,125,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,66,97,115,101,44,32,78,65,77,69,44,32,67,111,110,115,116,114,117,99,116,111,114,44,32,110,101,120,116,44,32,68,69,70,65,85,76,84,44,32,73,83,95,83,69,84,44,32,70,79,82,67,69,68,41,32,123,92,110,32,32,36,105,116,101,114,67,114,101,97,116,101,40,67,111,110,115,116,114,117,99,116,111,114,44,32,78,65,77,69,44,32,110,101,120,116,41,59,92,110,32,32,118,97,114,32,103,101,116,77,101,116,104,111,100,32,61,32,102,117,110,99,116,105,111,110,32,40,107,105,110,100,41,32,123,92,110,32,32,32,32,105,102,32,40,33,66,85,71,71,89,32,38,38,32,107,105,110,100,32,105,110,32,112,114,111,116,111,41,32,114,101,116,117,114,110,32,112,114,111,116,111,91,107,105,110,100,93,59,92,110,32,32,32,32,115,119,105,116,99,104,32,40,107,105,110,100,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,75,69,89,83,58,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,107,101,121,115,40,41,32,123,32,114,101,116,117,114,110,32,110,101,119,32,67,111,110,115,116,114,117,99,116,111,114,40,116,104,105,115,44,32,107,105,110,100,41,59,32,125,59,92,110,32,32,32,32,32,32,99,97,115,101,32,86,65,76,85,69,83,58,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,115,40,41,32,123,32,114,101,116,117,114,110,32,110,101,119,32,67,111,110,115,116,114,117,99,116,111,114,40,116,104,105,115,44,32,107,105,110,100,41,59,32,125,59,92,110,32,32,32,32,125,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,101,110,116,114,105,101,115,40,41,32,123,32,114,101,116,117,114,110,32,110,101,119,32,67,111,110,115,116,114,117,99,116,111,114,40,116,104,105,115,44,32,107,105,110,100,41,59,32,125,59,92,110,32,32,125,59,92,110,32,32,118,97,114,32,84,65,71,32,61,32,78,65,77,69,32,43,32,39,32,73,116,101,114,97,116,111,114,39,59,92,110,32,32,118,97,114,32,68,69,70,95,86,65,76,85,69,83,32,61,32,68,69,70,65,85,76,84,32,61,61,32,86,65,76,85,69,83,59,92,110,32,32,118,97,114,32,86,65,76,85,69,83,95,66,85,71,32,61,32,102,97,108,115,101,59,92,110,32,32,118,97,114,32,112,114,111,116,111,32,61,32,66,97,115,101,46,112,114,111,116,111,116,121,112,101,59,92,110,32,32,118,97,114,32,36,110,97,116,105,118,101,32,61,32,112,114,111,116,111,91,73,84,69,82,65,84,79,82,93,32,124,124,32,112,114,111,116,111,91,70,70,95,73,84,69,82,65,84,79,82,93,32,124,124,32,68,69,70,65,85,76,84,32,38,38,32,112,114,111,116,111,91,68,69,70,65,85,76,84,93,59,92,110,32,32,118,97,114,32,36,100,101,102,97,117,108,116,32,61,32,36,110,97,116,105,118,101,32,124,124,32,103,101,116,77,101,116,104,111,100,40,68,69,70,65,85,76,84,41,59,92,110,32,32,118,97,114,32,36,101,110,116,114,105,101,115,32,61,32,68,69,70,65,85,76,84,32,63,32,33,68,69,70,95,86,65,76,85,69,83,32,63,32,36,100,101,102,97,117,108,116,32,58,32,103,101,116,77,101,116,104,111,100,40,39,101,110,116,114,105,101,115,39,41,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,118,97,114,32,36,97,110,121,78,97,116,105,118,101,32,61,32,78,65,77,69,32,61,61,32,39,65,114,114,97,121,39,32,63,32,112,114,111,116,111,46,101,110,116,114,105,101,115,32,124,124,32,36,110,97,116,105,118,101,32,58,32,36,110,97,116,105,118,101,59,92,110,32,32,118,97,114,32,109,101,116,104,111,100,115,44,32,107,101,121,44,32,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,59,92,110,32,32,47,47,32,70,105,120,32,110,97,116,105,118,101,92,110,32,32,105,102,32,40,36,97,110,121,78,97,116,105,118,101,41,32,123,92,110,32,32,32,32,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,32,61,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,36,97,110,121,78,97,116,105,118,101,46,99,97,108,108,40,110,101,119,32,66,97,115,101,40,41,41,41,59,92,110,32,32,32,32,105,102,32,40,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,32,33,61,61,32,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,32,38,38,32,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,46,110,101,120,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,101,116,32,64,64,116,111,83,116,114,105,110,103,84,97,103,32,116,111,32,110,97,116,105,118,101,32,105,116,101,114,97,116,111,114,115,92,110,32,32,32,32,32,32,115,101,116,84,111,83,116,114,105,110,103,84,97,103,40,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,44,32,84,65,71,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,47,47,32,102,105,120,32,102,111,114,32,115,111,109,101,32,111,108,100,32,101,110,103,105,110,101,115,92,110,32,32,32,32,32,32,105,102,32,40,33,76,73,66,82,65,82,89,32,38,38,32,116,121,112,101,111,102,32,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,91,73,84,69,82,65,84,79,82,93,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,104,105,100,101,40,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,44,32,73,84,69,82,65,84,79,82,44,32,114,101,116,117,114,110,84,104,105,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,47,47,32,102,105,120,32,65,114,114,97,121,35,123,118,97,108,117,101,115,44,32,64,64,105,116,101,114,97,116,111,114,125,46,110,97,109,101,32,105,110,32,86,56,32,47,32,70,70,92,110,32,32,105,102,32,40,68,69,70,95,86,65,76,85,69,83,32,38,38,32,36,110,97,116,105,118,101,32,38,38,32,36,110,97,116,105,118,101,46,110,97,109,101,32,33,61,61,32,86,65,76,85,69,83,41,32,123,92,110,32,32,32,32,86,65,76,85,69,83,95,66,85,71,32,61,32,116,114,117,101,59,92,110,32,32,32,32,36,100,101,102,97,117,108,116,32,61,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,115,40,41,32,123,32,114,101,116,117,114,110,32,36,110,97,116,105,118,101,46,99,97,108,108,40,116,104,105,115,41,59,32,125,59,92,110,32,32,125,92,110,32,32,47,47,32,68,101,102,105,110,101,32,105,116,101,114,97,116,111,114,92,110,32,32,105,102,32,40,40,33,76,73,66,82,65,82,89,32,124,124,32,70,79,82,67,69,68,41,32,38,38,32,40,66,85,71,71,89,32,124,124,32,86,65,76,85,69,83,95,66,85,71,32,124,124,32,33,112,114,111,116,111,91,73,84,69,82,65,84,79,82,93,41,41,32,123,92,110,32,32,32,32,104,105,100,101,40,112,114,111,116,111,44,32,73,84,69,82,65,84,79,82,44,32,36,100,101,102,97,117,108,116,41,59,92,110,32,32,125,92,110,32,32,47,47,32,80,108,117,103,32,102,111,114,32,108,105,98,114,97,114,121,92,110,32,32,73,116,101,114,97,116,111,114,115,91,78,65,77,69,93,32,61,32,36,100,101,102,97,117,108,116,59,92,110,32,32,73,116,101,114,97,116,111,114,115,91,84,65,71,93,32,61,32,114,101,116,117,114,110,84,104,105,115,59,92,110,32,32,105,102,32,40,68,69,70,65,85,76,84,41,32,123,92,110,32,32,32,32,109,101,116,104,111,100,115,32,61,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,115,58,32,68,69,70,95,86,65,76,85,69,83,32,63,32,36,100,101,102,97,117,108,116,32,58,32,103,101,116,77,101,116,104,111,100,40,86,65,76,85,69,83,41,44,92,110,32,32,32,32,32,32,107,101,121,115,58,32,73,83,95,83,69,84,32,63,32,36,100,101,102,97,117,108,116,32,58,32,103,101,116,77,101,116,104,111,100,40,75,69,89,83,41,44,92,110,32,32,32,32,32,32,101,110,116,114,105,101,115,58,32,36,101,110,116,114,105,101,115,92,110,32,32,32,32,125,59,92,110,32,32,32,32,105,102,32,40,70,79,82,67,69,68,41,32,102,111,114,32,40,107,101,121,32,105,110,32,109,101,116,104,111,100,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,107,101,121,32,105,110,32,112,114,111,116,111,41,41,32,114,101,100,101,102,105,110,101,40,112,114,111,116,111,44,32,107,101,121,44,32,109,101,116,104,111,100,115,91,107,101,121,93,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,66,85,71,71,89,32,124,124,32,86,65,76,85,69,83,95,66,85,71,41,44,32,78,65,77,69,44,32,109,101,116,104,111,100,115,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,109,101,116,104,111,100,115,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,100,101,102,105,110,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,100,101,116,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,100,101,116,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,73,84,69,82,65,84,79,82,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,105,116,101,114,97,116,111,114,39,41,59,92,110,118,97,114,32,83,65,70,69,95,67,76,79,83,73,78,71,32,61,32,102,97,108,115,101,59,92,110,92,110,116,114,121,32,123,92,110,32,32,118,97,114,32,114,105,116,101,114,32,61,32,91,55,93,91,73,84,69,82,65,84,79,82,93,40,41,59,92,110,32,32,114,105,116,101,114,91,39,114,101,116,117,114,110,39,93,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,83,65,70,69,95,67,76,79,83,73,78,71,32,61,32,116,114,117,101,59,32,125,59,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,116,104,114,111,119,45,108,105,116,101,114,97,108,92,110,32,32,65,114,114,97,121,46,102,114,111,109,40,114,105,116,101,114,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,116,104,114,111,119,32,50,59,32,125,41,59,92,110,125,32,99,97,116,99,104,32,40,101,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,101,120,101,99,44,32,115,107,105,112,67,108,111,115,105,110,103,41,32,123,92,110,32,32,105,102,32,40,33,115,107,105,112,67,108,111,115,105,110,103,32,38,38,32,33,83,65,70,69,95,67,76,79,83,73,78,71,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,118,97,114,32,115,97,102,101,32,61,32,102,97,108,115,101,59,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,118,97,114,32,97,114,114,32,61,32,91,55,93,59,92,110,32,32,32,32,118,97,114,32,105,116,101,114,32,61,32,97,114,114,91,73,84,69,82,65,84,79,82,93,40,41,59,92,110,32,32,32,32,105,116,101,114,46,110,101,120,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,123,32,100,111,110,101,58,32,115,97,102,101,32,61,32,116,114,117,101,32,125,59,32,125,59,92,110,32,32,32,32,97,114,114,91,73,84,69,82,65,84,79,82,93,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,105,116,101,114,59,32,125,59,92,110,32,32,32,32,101,120,101,99,40,97,114,114,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,92,110,32,32,114,101,116,117,114,110,32,115,97,102,101,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,100,101,116,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,115,116,101,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,115,116,101,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,100,111,110,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,100,111,110,101,58,32,33,33,100,111,110,101,32,125,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,115,116,101,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,97,116,111,114,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,97,116,111,114,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,123,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,97,116,111,114,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,108,105,98,114,97,114,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,108,105,98,114,97,114,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,97,108,115,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,108,105,98,114,97,114,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,101,120,112,109,49,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,101,120,112,109,49,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,49,52,32,77,97,116,104,46,101,120,112,109,49,40,120,41,92,110,118,97,114,32,36,101,120,112,109,49,32,61,32,77,97,116,104,46,101,120,112,109,49,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,40,33,36,101,120,112,109,49,92,110,32,32,47,47,32,79,108,100,32,70,70,32,98,117,103,92,110,32,32,124,124,32,36,101,120,112,109,49,40,49,48,41,32,62,32,50,50,48,50,53,46,52,54,53,55,57,52,56,48,54,55,49,57,32,124,124,32,36,101,120,112,109,49,40,49,48,41,32,60,32,50,50,48,50,53,46,52,54,53,55,57,52,56,48,54,55,49,54,53,49,54,56,92,110,32,32,47,47,32,84,111,114,32,66,114,111,119,115,101,114,32,98,117,103,92,110,32,32,124,124,32,36,101,120,112,109,49,40,45,50,101,45,49,55,41,32,33,61,32,45,50,101,45,49,55,92,110,41,32,63,32,102,117,110,99,116,105,111,110,32,101,120,112,109,49,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,120,32,61,32,43,120,41,32,61,61,32,48,32,63,32,120,32,58,32,120,32,62,32,45,49,101,45,54,32,38,38,32,120,32,60,32,49,101,45,54,32,63,32,120,32,43,32,120,32,42,32,120,32,47,32,50,32,58,32,77,97,116,104,46,101,120,112,40,120,41,32,45,32,49,59,92,110,125,32,58,32,36,101,120,112,109,49,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,101,120,112,109,49,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,102,114,111,117,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,102,114,111,117,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,49,54,32,77,97,116,104,46,102,114,111,117,110,100,40,120,41,92,110,118,97,114,32,115,105,103,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,97,116,104,45,115,105,103,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,115,105,103,110,46,106,115,92,34,41,59,92,110,118,97,114,32,112,111,119,32,61,32,77,97,116,104,46,112,111,119,59,92,110,118,97,114,32,69,80,83,73,76,79,78,32,61,32,112,111,119,40,50,44,32,45,53,50,41,59,92,110,118,97,114,32,69,80,83,73,76,79,78,51,50,32,61,32,112,111,119,40,50,44,32,45,50,51,41,59,92,110,118,97,114,32,77,65,88,51,50,32,61,32,112,111,119,40,50,44,32,49,50,55,41,32,42,32,40,50,32,45,32,69,80,83,73,76,79,78,51,50,41,59,92,110,118,97,114,32,77,73,78,51,50,32,61,32,112,111,119,40,50,44,32,45,49,50,54,41,59,92,110,92,110,118,97,114,32,114,111,117,110,100,84,105,101,115,84,111,69,118,101,110,32,61,32,102,117,110,99,116,105,111,110,32,40,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,32,43,32,49,32,47,32,69,80,83,73,76,79,78,32,45,32,49,32,47,32,69,80,83,73,76,79,78,59,92,110,125,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,77,97,116,104,46,102,114,111,117,110,100,32,124,124,32,102,117,110,99,116,105,111,110,32,102,114,111,117,110,100,40,120,41,32,123,92,110,32,32,118,97,114,32,36,97,98,115,32,61,32,77,97,116,104,46,97,98,115,40,120,41,59,92,110,32,32,118,97,114,32,36,115,105,103,110,32,61,32,115,105,103,110,40,120,41,59,92,110,32,32,118,97,114,32,97,44,32,114,101,115,117,108,116,59,92,110,32,32,105,102,32,40,36,97,98,115,32,60,32,77,73,78,51,50,41,32,114,101,116,117,114,110,32,36,115,105,103,110,32,42,32,114,111,117,110,100,84,105,101,115,84,111,69,118,101,110,40,36,97,98,115,32,47,32,77,73,78,51,50,32,47,32,69,80,83,73,76,79,78,51,50,41,32,42,32,77,73,78,51,50,32,42,32,69,80,83,73,76,79,78,51,50,59,92,110,32,32,97,32,61,32,40,49,32,43,32,69,80,83,73,76,79,78,51,50,32,47,32,69,80,83,73,76,79,78,41,32,42,32,36,97,98,115,59,92,110,32,32,114,101,115,117,108,116,32,61,32,97,32,45,32,40,97,32,45,32,36,97,98,115,41,59,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,115,101,108,102,45,99,111,109,112,97,114,101,92,110,32,32,105,102,32,40,114,101,115,117,108,116,32,62,32,77,65,88,51,50,32,124,124,32,114,101,115,117,108,116,32,33,61,32,114,101,115,117,108,116,41,32,114,101,116,117,114,110,32,36,115,105,103,110,32,42,32,73,110,102,105,110,105,116,121,59,92,110,32,32,114,101,116,117,114,110,32,36,115,105,103,110,32,42,32,114,101,115,117,108,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,102,114,111,117,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,108,111,103,49,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,108,111,103,49,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,50,48,32,77,97,116,104,46,108,111,103,49,112,40,120,41,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,77,97,116,104,46,108,111,103,49,112,32,124,124,32,102,117,110,99,116,105,111,110,32,108,111,103,49,112,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,120,32,61,32,43,120,41,32,62,32,45,49,101,45,56,32,38,38,32,120,32,60,32,49,101,45,56,32,63,32,120,32,45,32,120,32,42,32,120,32,47,32,50,32,58,32,77,97,116,104,46,108,111,103,40,49,32,43,32,120,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,108,111,103,49,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,115,105,103,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,115,105,103,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,50,56,32,77,97,116,104,46,115,105,103,110,40,120,41,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,77,97,116,104,46,115,105,103,110,32,124,124,32,102,117,110,99,116,105,111,110,32,115,105,103,110,40,120,41,32,123,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,115,101,108,102,45,99,111,109,112,97,114,101,92,110,32,32,114,101,116,117,114,110,32,40,120,32,61,32,43,120,41,32,61,61,32,48,32,124,124,32,120,32,33,61,32,120,32,63,32,120,32,58,32,120,32,60,32,48,32,63,32,45,49,32,58,32,49,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,115,105,103,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,101,116,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,101,116,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,77,69,84,65,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,117,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,105,100,46,106,115,92,34,41,40,39,109,101,116,97,39,41,59,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,104,97,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,97,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,92,34,41,59,92,110,118,97,114,32,115,101,116,68,101,115,99,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,46,102,41,59,92,110,118,97,114,32,105,100,32,61,32,48,59,92,110,118,97,114,32,105,115,69,120,116,101,110,115,105,98,108,101,32,61,32,79,98,106,101,99,116,46,105,115,69,120,116,101,110,115,105,98,108,101,32,124,124,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,125,59,92,110,118,97,114,32,70,82,69,69,90,69,32,61,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,69,120,116,101,110,115,105,98,108,101,40,79,98,106,101,99,116,46,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,40,123,125,41,41,59,92,110,125,41,59,92,110,118,97,114,32,115,101,116,77,101,116,97,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,115,101,116,68,101,115,99,40,105,116,44,32,77,69,84,65,44,32,123,32,118,97,108,117,101,58,32,123,92,110,32,32,32,32,105,58,32,39,79,39,32,43,32,43,43,105,100,44,32,47,47,32,111,98,106,101,99,116,32,73,68,92,110,32,32,32,32,119,58,32,123,125,32,32,32,32,32,32,32,32,32,32,47,47,32,119,101,97,107,32,99,111,108,108,101,99,116,105,111,110,115,32,73,68,115,92,110,32,32,125,32,125,41,59,92,110,125,59,92,110,118,97,114,32,102,97,115,116,75,101,121,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,44,32,99,114,101,97,116,101,41,32,123,92,110,32,32,47,47,32,114,101,116,117,114,110,32,112,114,105,109,105,116,105,118,101,32,119,105,116,104,32,112,114,101,102,105,120,92,110,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,105,116,41,41,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,105,116,32,61,61,32,39,115,121,109,98,111,108,39,32,63,32,105,116,32,58,32,40,116,121,112,101,111,102,32,105,116,32,61,61,32,39,115,116,114,105,110,103,39,32,63,32,39,83,39,32,58,32,39,80,39,41,32,43,32,105,116,59,92,110,32,32,105,102,32,40,33,104,97,115,40,105,116,44,32,77,69,84,65,41,41,32,123,92,110,32,32,32,32,47,47,32,99,97,110,39,116,32,115,101,116,32,109,101,116,97,100,97,116,97,32,116,111,32,117,110,99,97,117,103,104,116,32,102,114,111,122,101,110,32,111,98,106,101,99,116,92,110,32,32,32,32,105,102,32,40,33,105,115,69,120,116,101,110,115,105,98,108,101,40,105,116,41,41,32,114,101,116,117,114,110,32,39,70,39,59,92,110,32,32,32,32,47,47,32,110,111,116,32,110,101,99,101,115,115,97,114,121,32,116,111,32,97,100,100,32,109,101,116,97,100,97,116,97,92,110,32,32,32,32,105,102,32,40,33,99,114,101,97,116,101,41,32,114,101,116,117,114,110,32,39,69,39,59,92,110,32,32,32,32,47,47,32,97,100,100,32,109,105,115,115,105,110,103,32,109,101,116,97,100,97,116,97,92,110,32,32,32,32,115,101,116,77,101,116,97,40,105,116,41,59,92,110,32,32,47,47,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,73,68,92,110,32,32,125,32,114,101,116,117,114,110,32,105,116,91,77,69,84,65,93,46,105,59,92,110,125,59,92,110,118,97,114,32,103,101,116,87,101,97,107,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,44,32,99,114,101,97,116,101,41,32,123,92,110,32,32,105,102,32,40,33,104,97,115,40,105,116,44,32,77,69,84,65,41,41,32,123,92,110,32,32,32,32,47,47,32,99,97,110,39,116,32,115,101,116,32,109,101,116,97,100,97,116,97,32,116,111,32,117,110,99,97,117,103,104,116,32,102,114,111,122,101,110,32,111,98,106,101,99,116,92,110,32,32,32,32,105,102,32,40,33,105,115,69,120,116,101,110,115,105,98,108,101,40,105,116,41,41,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,47,47,32,110,111,116,32,110,101,99,101,115,115,97,114,121,32,116,111,32,97,100,100,32,109,101,116,97,100,97,116,97,92,110,32,32,32,32,105,102,32,40,33,99,114,101,97,116,101,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,47,47,32,97,100,100,32,109,105,115,115,105,110,103,32,109,101,116,97,100,97,116,97,92,110,32,32,32,32,115,101,116,77,101,116,97,40,105,116,41,59,92,110,32,32,47,47,32,114,101,116,117,114,110,32,104,97,115,104,32,119,101,97,107,32,99,111,108,108,101,99,116,105,111,110,115,32,73,68,115,92,110,32,32,125,32,114,101,116,117,114,110,32,105,116,91,77,69,84,65,93,46,119,59,92,110,125,59,92,110,47,47,32,97,100,100,32,109,101,116,97,100,97,116,97,32,111,110,32,102,114,101,101,122,101,45,102,97,109,105,108,121,32,109,101,116,104,111,100,115,32,99,97,108,108,105,110,103,92,110,118,97,114,32,111,110,70,114,101,101,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,105,102,32,40,70,82,69,69,90,69,32,38,38,32,109,101,116,97,46,78,69,69,68,32,38,38,32,105,115,69,120,116,101,110,115,105,98,108,101,40,105,116,41,32,38,38,32,33,104,97,115,40,105,116,44,32,77,69,84,65,41,41,32,115,101,116,77,101,116,97,40,105,116,41,59,92,110,32,32,114,101,116,117,114,110,32,105,116,59,92,110,125,59,92,110,118,97,114,32,109,101,116,97,32,61,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,123,92,110,32,32,75,69,89,58,32,77,69,84,65,44,92,110,32,32,78,69,69,68,58,32,102,97,108,115,101,44,92,110,32,32,102,97,115,116,75,101,121,58,32,102,97,115,116,75,101,121,44,92,110,32,32,103,101,116,87,101,97,107,58,32,103,101,116,87,101,97,107,44,92,110,32,32,111,110,70,114,101,101,122,101,58,32,111,110,70,114,101,101,122,101,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,101,116,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,105,99,114,111,116,97,115,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,105,99,114,111,116,97,115,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,109,97,99,114,111,116,97,115,107,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,97,115,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,97,115,107,46,106,115,92,34,41,46,115,101,116,41,59,92,110,118,97,114,32,79,98,115,101,114,118,101,114,32,61,32,103,108,111,98,97,108,46,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,124,124,32,103,108,111,98,97,108,46,87,101,98,75,105,116,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,59,92,110,118,97,114,32,112,114,111,99,101,115,115,32,61,32,103,108,111,98,97,108,46,112,114,111,99,101,115,115,59,92,110,118,97,114,32,80,114,111,109,105,115,101,32,61,32,103,108,111,98,97,108,46,80,114,111,109,105,115,101,59,92,110,118,97,114,32,105,115,78,111,100,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,102,46,106,115,92,34,41,40,112,114,111,99,101,115,115,41,32,61,61,32,39,112,114,111,99,101,115,115,39,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,104,101,97,100,44,32,108,97,115,116,44,32,110,111,116,105,102,121,59,92,110,92,110,32,32,118,97,114,32,102,108,117,115,104,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,44,32,102,110,59,92,110,32,32,32,32,105,102,32,40,105,115,78,111,100,101,32,38,38,32,40,112,97,114,101,110,116,32,61,32,112,114,111,99,101,115,115,46,100,111,109,97,105,110,41,41,32,112,97,114,101,110,116,46,101,120,105,116,40,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,104,101,97,100,41,32,123,92,110,32,32,32,32,32,32,102,110,32,61,32,104,101,97,100,46,102,110,59,92,110,32,32,32,32,32,32,104,101,97,100,32,61,32,104,101,97,100,46,110,101,120,116,59,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,102,110,40,41,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,104,101,97,100,41,32,110,111,116,105,102,121,40,41,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,108,97,115,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,108,97,115,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,105,102,32,40,112,97,114,101,110,116,41,32,112,97,114,101,110,116,46,101,110,116,101,114,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,47,47,32,78,111,100,101,46,106,115,92,110,32,32,105,102,32,40,105,115,78,111,100,101,41,32,123,92,110,32,32,32,32,110,111,116,105,102,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,112,114,111,99,101,115,115,46,110,101,120,116,84,105,99,107,40,102,108,117,115,104,41,59,92,110,32,32,32,32,125,59,92,110,32,32,47,47,32,98,114,111,119,115,101,114,115,32,119,105,116,104,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,44,32,101,120,99,101,112,116,32,105,79,83,32,83,97,102,97,114,105,32,45,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,122,108,111,105,114,111,99,107,47,99,111,114,101,45,106,115,47,105,115,115,117,101,115,47,51,51,57,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,79,98,115,101,114,118,101,114,32,38,38,32,33,40,103,108,111,98,97,108,46,110,97,118,105,103,97,116,111,114,32,38,38,32,103,108,111,98,97,108,46,110,97,118,105,103,97,116,111,114,46,115,116,97,110,100,97,108,111,110,101,41,41,32,123,92,110,32,32,32,32,118,97,114,32,116,111,103,103,108,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,39,39,41,59,92,110,32,32,32,32,110,101,119,32,79,98,115,101,114,118,101,114,40,102,108,117,115,104,41,46,111,98,115,101,114,118,101,40,110,111,100,101,44,32,123,32,99,104,97,114,97,99,116,101,114,68,97,116,97,58,32,116,114,117,101,32,125,41,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,110,101,119,92,110,32,32,32,32,110,111,116,105,102,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,46,100,97,116,97,32,61,32,116,111,103,103,108,101,32,61,32,33,116,111,103,103,108,101,59,92,110,32,32,32,32,125,59,92,110,32,32,47,47,32,101,110,118,105,114,111,110,109,101,110,116,115,32,119,105,116,104,32,109,97,121,98,101,32,110,111,110,45,99,111,109,112,108,101,116,101,108,121,32,99,111,114,114,101,99,116,44,32,98,117,116,32,101,120,105,115,116,101,110,116,32,80,114,111,109,105,115,101,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,80,114,111,109,105,115,101,32,38,38,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,41,32,123,92,110,32,32,32,32,47,47,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,32,119,105,116,104,111,117,116,32,97,110,32,97,114,103,117,109,101,110,116,32,116,104,114,111,119,115,32,97,110,32,101,114,114,111,114,32,105,110,32,76,71,32,87,101,98,79,83,32,50,92,110,32,32,32,32,118,97,114,32,112,114,111,109,105,115,101,32,61,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,110,111,116,105,102,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,112,114,111,109,105,115,101,46,116,104,101,110,40,102,108,117,115,104,41,59,92,110,32,32,32,32,125,59,92,110,32,32,47,47,32,102,111,114,32,111,116,104,101,114,32,101,110,118,105,114,111,110,109,101,110,116,115,32,45,32,109,97,99,114,111,116,97,115,107,32,98,97,115,101,100,32,111,110,58,92,110,32,32,47,47,32,45,32,115,101,116,73,109,109,101,100,105,97,116,101,92,110,32,32,47,47,32,45,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,92,110,32,32,47,47,32,45,32,119,105,110,100,111,119,46,112,111,115,116,77,101,115,115,97,103,92,110,32,32,47,47,32,45,32,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,92,110,32,32,47,47,32,45,32,115,101,116,84,105,109,101,111,117,116,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,110,111,116,105,102,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,115,116,114,97,110,103,101,32,73,69,32,43,32,119,101,98,112,97,99,107,32,100,101,118,32,115,101,114,118,101,114,32,98,117,103,32,45,32,117,115,101,32,46,99,97,108,108,40,103,108,111,98,97,108,41,92,110,32,32,32,32,32,32,109,97,99,114,111,116,97,115,107,46,99,97,108,108,40,103,108,111,98,97,108,44,32,102,108,117,115,104,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,102,110,41,32,123,92,110,32,32,32,32,118,97,114,32,116,97,115,107,32,61,32,123,32,102,110,58,32,102,110,44,32,110,101,120,116,58,32,117,110,100,101,102,105,110,101,100,32,125,59,92,110,32,32,32,32,105,102,32,40,108,97,115,116,41,32,108,97,115,116,46,110,101,120,116,32,61,32,116,97,115,107,59,92,110,32,32,32,32,105,102,32,40,33,104,101,97,100,41,32,123,92,110,32,32,32,32,32,32,104,101,97,100,32,61,32,116,97,115,107,59,92,110,32,32,32,32,32,32,110,111,116,105,102,121,40,41,59,92,110,32,32,32,32,125,32,108,97,115,116,32,61,32,116,97,115,107,59,92,110,32,32,125,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,105,99,114,111,116,97,115,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,110,101,119,45,112,114,111,109,105,115,101,45,99,97,112,97,98,105,108,105,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,110,101,119,45,112,114,111,109,105,115,101,45,99,97,112,97,98,105,108,105,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,50,53,46,52,46,49,46,53,32,78,101,119,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,40,67,41,92,110,118,97,114,32,97,70,117,110,99,116,105,111,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,45,102,117,110,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,92,34,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,40,67,41,32,123,92,110,32,32,118,97,114,32,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,59,92,110,32,32,116,104,105,115,46,112,114,111,109,105,115,101,32,61,32,110,101,119,32,67,40,102,117,110,99,116,105,111,110,32,40,36,36,114,101,115,111,108,118,101,44,32,36,36,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,105,102,32,40,114,101,115,111,108,118,101,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,32,114,101,106,101,99,116,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,39,66,97,100,32,80,114,111,109,105,115,101,32,99,111,110,115,116,114,117,99,116,111,114,39,41,59,92,110,32,32,32,32,114,101,115,111,108,118,101,32,61,32,36,36,114,101,115,111,108,118,101,59,92,110,32,32,32,32,114,101,106,101,99,116,32,61,32,36,36,114,101,106,101,99,116,59,92,110,32,32,125,41,59,92,110,32,32,116,104,105,115,46,114,101,115,111,108,118,101,32,61,32,97,70,117,110,99,116,105,111,110,40,114,101,115,111,108,118,101,41,59,92,110,32,32,116,104,105,115,46,114,101,106,101,99,116,32,61,32,97,70,117,110,99,116,105,111,110,40,114,101,106,101,99,116,41,59,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,46,102,32,61,32,102,117,110,99,116,105,111,110,32,40,67,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,40,67,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,110,101,119,45,112,114,111,109,105,115,101,45,99,97,112,97,98,105,108,105,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,97,115,115,105,103,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,97,115,115,105,103,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,49,57,46,49,46,50,46,49,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,116,97,114,103,101,116,44,32,115,111,117,114,99,101,44,32,46,46,46,41,92,110,118,97,114,32,68,69,83,67,82,73,80,84,79,82,83,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,59,92,110,118,97,114,32,103,101,116,75,101,121,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,107,101,121,115,46,106,115,92,34,41,59,92,110,118,97,114,32,103,79,80,83,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,115,46,106,115,92,34,41,59,92,110,118,97,114,32,112,73,69,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,112,105,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,112,105,101,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,97,115,115,105,103,110,32,61,32,79,98,106,101,99,116,46,97,115,115,105,103,110,59,92,110,92,110,47,47,32,115,104,111,117,108,100,32,119,111,114,107,32,119,105,116,104,32,115,121,109,98,111,108,115,32,97,110,100,32,115,104,111,117,108,100,32,104,97,118,101,32,100,101,116,101,114,109,105,110,105,115,116,105,99,32,112,114,111,112,101,114,116,121,32,111,114,100,101,114,32,40,86,56,32,98,117,103,41,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,33,36,97,115,115,105,103,110,32,124,124,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,65,32,61,32,123,125,59,92,110,32,32,118,97,114,32,66,32,61,32,123,125,59,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,117,110,100,101,102,92,110,32,32,118,97,114,32,83,32,61,32,83,121,109,98,111,108,40,41,59,92,110,32,32,118,97,114,32,75,32,61,32,39,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,39,59,92,110,32,32,65,91,83,93,32,61,32,55,59,92,110,32,32,75,46,115,112,108,105,116,40,39,39,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,41,32,123,32,66,91,107,93,32,61,32,107,59,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,36,97,115,115,105,103,110,40,123,125,44,32,65,41,91,83,93,32,33,61,32,55,32,124,124,32,79,98,106,101,99,116,46,107,101,121,115,40,36,97,115,115,105,103,110,40,123,125,44,32,66,41,41,46,106,111,105,110,40,39,39,41,32,33,61,32,75,59,92,110,125,41,32,63,32,102,117,110,99,116,105,111,110,32,97,115,115,105,103,110,40,116,97,114,103,101,116,44,32,115,111,117,114,99,101,41,32,123,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,117,110,117,115,101,100,45,118,97,114,115,92,110,32,32,118,97,114,32,84,32,61,32,116,111,79,98,106,101,99,116,40,116,97,114,103,101,116,41,59,92,110,32,32,118,97,114,32,97,76,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,49,59,92,110,32,32,118,97,114,32,103,101,116,83,121,109,98,111,108,115,32,61,32,103,79,80,83,46,102,59,92,110,32,32,118,97,114,32,105,115,69,110,117,109,32,61,32,112,73,69,46,102,59,92,110,32,32,119,104,105,108,101,32,40,97,76,101,110,32,62,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,83,32,61,32,73,79,98,106,101,99,116,40,97,114,103,117,109,101,110,116,115,91,105,110,100,101,120,43,43,93,41,59,92,110,32,32,32,32,118,97,114,32,107,101,121,115,32,61,32,103,101,116,83,121,109,98,111,108,115,32,63,32,103,101,116,75,101,121,115,40,83,41,46,99,111,110,99,97,116,40,103,101,116,83,121,109,98,111,108,115,40,83,41,41,32,58,32,103,101,116,75,101,121,115,40,83,41,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,107,101,121,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,106,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,107,101,121,59,92,110,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,32,62,32,106,41,32,123,92,110,32,32,32,32,32,32,107,101,121,32,61,32,107,101,121,115,91,106,43,43,93,59,92,110,32,32,32,32,32,32,105,102,32,40,33,68,69,83,67,82,73,80,84,79,82,83,32,124,124,32,105,115,69,110,117,109,46,99,97,108,108,40,83,44,32,107,101,121,41,41,32,84,91,107,101,121,93,32,61,32,83,91,107,101,121,93,59,92,110,32,32,32,32,125,92,110,32,32,125,32,114,101,116,117,114,110,32,84,59,92,110,125,32,58,32,36,97,115,115,105,103,110,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,97,115,115,105,103,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,50,46,50,32,47,32,49,53,46,50,46,51,46,53,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,79,32,91,44,32,80,114,111,112,101,114,116,105,101,115,93,41,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,100,80,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,115,46,106,115,92,34,41,59,92,110,118,97,114,32,101,110,117,109,66,117,103,75,101,121,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,110,117,109,45,98,117,103,45,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,110,117,109,45,98,117,103,45,107,101,121,115,46,106,115,92,34,41,59,92,110,118,97,114,32,73,69,95,80,82,79,84,79,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,104,97,114,101,100,45,107,101,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,104,97,114,101,100,45,107,101,121,46,106,115,92,34,41,40,39,73,69,95,80,82,79,84,79,39,41,59,92,110,118,97,114,32,69,109,112,116,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,59,92,110,118,97,114,32,80,82,79,84,79,84,89,80,69,32,61,32,39,112,114,111,116,111,116,121,112,101,39,59,92,110,92,110,47,47,32,67,114,101,97,116,101,32,111,98,106,101,99,116,32,119,105,116,104,32,102,97,107,101,32,96,110,117,108,108,96,32,112,114,111,116,111,116,121,112,101,58,32,117,115,101,32,105,102,114,97,109,101,32,79,98,106,101,99,116,32,119,105,116,104,32,99,108,101,97,114,101,100,32,112,114,111,116,111,116,121,112,101,92,110,118,97,114,32,99,114,101,97,116,101,68,105,99,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,47,47,32,84,104,114,97,115,104,44,32,119,97,115,116,101,32,97,110,100,32,115,111,100,111,109,121,58,32,73,69,32,71,67,32,98,117,103,92,110,32,32,118,97,114,32,105,102,114,97,109,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,111,109,45,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,111,109,45,99,114,101,97,116,101,46,106,115,92,34,41,40,39,105,102,114,97,109,101,39,41,59,92,110,32,32,118,97,114,32,105,32,61,32,101,110,117,109,66,117,103,75,101,121,115,46,108,101,110,103,116,104,59,92,110,32,32,118,97,114,32,108,116,32,61,32,39,60,39,59,92,110,32,32,118,97,114,32,103,116,32,61,32,39,62,39,59,92,110,32,32,118,97,114,32,105,102,114,97,109,101,68,111,99,117,109,101,110,116,59,92,110,32,32,105,102,114,97,109,101,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,39,110,111,110,101,39,59,92,110,32,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,116,109,108,46,106,115,92,34,41,46,97,112,112,101,110,100,67,104,105,108,100,41,40,105,102,114,97,109,101,41,59,92,110,32,32,105,102,114,97,109,101,46,115,114,99,32,61,32,39,106,97,118,97,115,99,114,105,112,116,58,39,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,115,99,114,105,112,116,45,117,114,108,92,110,32,32,47,47,32,99,114,101,97,116,101,68,105,99,116,32,61,32,105,102,114,97,109,101,46,99,111,110,116,101,110,116,87,105,110,100,111,119,46,79,98,106,101,99,116,59,92,110,32,32,47,47,32,104,116,109,108,46,114,101,109,111,118,101,67,104,105,108,100,40,105,102,114,97,109,101,41,59,92,110,32,32,105,102,114,97,109,101,68,111,99,117,109,101,110,116,32,61,32,105,102,114,97,109,101,46,99,111,110,116,101,110,116,87,105,110,100,111,119,46,100,111,99,117,109,101,110,116,59,92,110,32,32,105,102,114,97,109,101,68,111,99,117,109,101,110,116,46,111,112,101,110,40,41,59,92,110,32,32,105,102,114,97,109,101,68,111,99,117,109,101,110,116,46,119,114,105,116,101,40,108,116,32,43,32,39,115,99,114,105,112,116,39,32,43,32,103,116,32,43,32,39,100,111,99,117,109,101,110,116,46,70,61,79,98,106,101,99,116,39,32,43,32,108,116,32,43,32,39,47,115,99,114,105,112,116,39,32,43,32,103,116,41,59,92,110,32,32,105,102,114,97,109,101,68,111,99,117,109,101,110,116,46,99,108,111,115,101,40,41,59,92,110,32,32,99,114,101,97,116,101,68,105,99,116,32,61,32,105,102,114,97,109,101,68,111,99,117,109,101,110,116,46,70,59,92,110,32,32,119,104,105,108,101,32,40,105,45,45,41,32,100,101,108,101,116,101,32,99,114,101,97,116,101,68,105,99,116,91,80,82,79,84,79,84,89,80,69,93,91,101,110,117,109,66,117,103,75,101,121,115,91,105,93,93,59,92,110,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,68,105,99,116,40,41,59,92,110,125,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,32,124,124,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,40,79,44,32,80,114,111,112,101,114,116,105,101,115,41,32,123,92,110,32,32,118,97,114,32,114,101,115,117,108,116,59,92,110,32,32,105,102,32,40,79,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,69,109,112,116,121,91,80,82,79,84,79,84,89,80,69,93,32,61,32,97,110,79,98,106,101,99,116,40,79,41,59,92,110,32,32,32,32,114,101,115,117,108,116,32,61,32,110,101,119,32,69,109,112,116,121,40,41,59,92,110,32,32,32,32,69,109,112,116,121,91,80,82,79,84,79,84,89,80,69,93,32,61,32,110,117,108,108,59,92,110,32,32,32,32,47,47,32,97,100,100,32,92,34,95,95,112,114,111,116,111,95,95,92,34,32,102,111,114,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,32,112,111,108,121,102,105,108,108,92,110,32,32,32,32,114,101,115,117,108,116,91,73,69,95,80,82,79,84,79,93,32,61,32,79,59,92,110,32,32,125,32,101,108,115,101,32,114,101,115,117,108,116,32,61,32,99,114,101,97,116,101,68,105,99,116,40,41,59,92,110,32,32,114,101,116,117,114,110,32,80,114,111,112,101,114,116,105,101,115,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,114,101,115,117,108,116,32,58,32,100,80,115,40,114,101,115,117,108,116,44,32,80,114,111,112,101,114,116,105,101,115,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,73,69,56,95,68,79,77,95,68,69,70,73,78,69,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,101,56,45,100,111,109,45,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,101,56,45,100,111,109,45,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,80,114,105,109,105,116,105,118,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,112,114,105,109,105,116,105,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,92,34,41,59,92,110,118,97,114,32,100,80,32,61,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,59,92,110,92,110,101,120,112,111,114,116,115,46,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,32,63,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,32,58,32,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,79,44,32,80,44,32,65,116,116,114,105,98,117,116,101,115,41,32,123,92,110,32,32,97,110,79,98,106,101,99,116,40,79,41,59,92,110,32,32,80,32,61,32,116,111,80,114,105,109,105,116,105,118,101,40,80,44,32,116,114,117,101,41,59,92,110,32,32,97,110,79,98,106,101,99,116,40,65,116,116,114,105,98,117,116,101,115,41,59,92,110,32,32,105,102,32,40,73,69,56,95,68,79,77,95,68,69,70,73,78,69,41,32,116,114,121,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,80,40,79,44,32,80,44,32,65,116,116,114,105,98,117,116,101,115,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,92,110,32,32,105,102,32,40,39,103,101,116,39,32,105,110,32,65,116,116,114,105,98,117,116,101,115,32,124,124,32,39,115,101,116,39,32,105,110,32,65,116,116,114,105,98,117,116,101,115,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,39,65,99,99,101,115,115,111,114,115,32,110,111,116,32,115,117,112,112,111,114,116,101,100,33,39,41,59,92,110,32,32,105,102,32,40,39,118,97,108,117,101,39,32,105,110,32,65,116,116,114,105,98,117,116,101,115,41,32,79,91,80,93,32,61,32,65,116,116,114,105,98,117,116,101,115,46,118,97,108,117,101,59,92,110,32,32,114,101,116,117,114,110,32,79,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,100,80,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,103,101,116,75,101,121,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,107,101,121,115,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,32,63,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,32,58,32,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,79,44,32,80,114,111,112,101,114,116,105,101,115,41,32,123,92,110,32,32,97,110,79,98,106,101,99,116,40,79,41,59,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,103,101,116,75,101,121,115,40,80,114,111,112,101,114,116,105,101,115,41,59,92,110,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,107,101,121,115,46,108,101,110,103,116,104,59,92,110,32,32,118,97,114,32,105,32,61,32,48,59,92,110,32,32,118,97,114,32,80,59,92,110,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,32,62,32,105,41,32,100,80,46,102,40,79,44,32,80,32,61,32,107,101,121,115,91,105,43,43,93,44,32,80,114,111,112,101,114,116,105,101,115,91,80,93,41,59,92,110,32,32,114,101,116,117,114,110,32,79,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,112,73,69,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,112,105,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,112,105,101,46,106,115,92,34,41,59,92,110,118,97,114,32,99,114,101,97,116,101,68,101,115,99,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,80,114,105,109,105,116,105,118,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,112,114,105,109,105,116,105,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,92,34,41,59,92,110,118,97,114,32,104,97,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,97,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,92,34,41,59,92,110,118,97,114,32,73,69,56,95,68,79,77,95,68,69,70,73,78,69,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,101,56,45,100,111,109,45,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,101,56,45,100,111,109,45,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,118,97,114,32,103,79,80,68,32,61,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,59,92,110,92,110,101,120,112,111,114,116,115,46,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,32,63,32,103,79,80,68,32,58,32,102,117,110,99,116,105,111,110,32,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,79,44,32,80,41,32,123,92,110,32,32,79,32,61,32,116,111,73,79,98,106,101,99,116,40,79,41,59,92,110,32,32,80,32,61,32,116,111,80,114,105,109,105,116,105,118,101,40,80,44,32,116,114,117,101,41,59,92,110,32,32,105,102,32,40,73,69,56,95,68,79,77,95,68,69,70,73,78,69,41,32,116,114,121,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,103,79,80,68,40,79,44,32,80,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,92,110,32,32,105,102,32,40,104,97,115,40,79,44,32,80,41,41,32,114,101,116,117,114,110,32,99,114,101,97,116,101,68,101,115,99,40,33,112,73,69,46,102,46,99,97,108,108,40,79,44,32,80,41,44,32,79,91,80,93,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,110,45,101,120,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,110,45,101,120,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,102,97,108,108,98,97,99,107,32,102,111,114,32,73,69,49,49,32,98,117,103,103,121,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,32,119,105,116,104,32,105,102,114,97,109,101,32,97,110,100,32,119,105,110,100,111,119,92,110,118,97,114,32,116,111,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,103,79,80,78,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,110,46,106,115,92,34,41,46,102,41,59,92,110,118,97,114,32,116,111,83,116,114,105,110,103,32,61,32,123,125,46,116,111,83,116,114,105,110,103,59,92,110,92,110,118,97,114,32,119,105,110,100,111,119,78,97,109,101,115,32,61,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,61,61,32,39,111,98,106,101,99,116,39,32,38,38,32,119,105,110,100,111,119,32,38,38,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,92,110,32,32,63,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,119,105,110,100,111,119,41,32,58,32,91,93,59,92,110,92,110,118,97,114,32,103,101,116,87,105,110,100,111,119,78,97,109,101,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,103,79,80,78,40,105,116,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,119,105,110,100,111,119,78,97,109,101,115,46,115,108,105,99,101,40,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,46,102,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,119,105,110,100,111,119,78,97,109,101,115,32,38,38,32,116,111,83,116,114,105,110,103,46,99,97,108,108,40,105,116,41,32,61,61,32,39,91,111,98,106,101,99,116,32,87,105,110,100,111,119,93,39,32,63,32,103,101,116,87,105,110,100,111,119,78,97,109,101,115,40,105,116,41,32,58,32,103,79,80,78,40,116,111,73,79,98,106,101,99,116,40,105,116,41,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,110,45,101,120,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,50,46,55,32,47,32,49,53,46,50,46,51,46,52,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,79,41,92,110,118,97,114,32,36,107,101,121,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,107,101,121,115,45,105,110,116,101,114,110,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,107,101,121,115,45,105,110,116,101,114,110,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,104,105,100,100,101,110,75,101,121,115,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,110,117,109,45,98,117,103,45,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,110,117,109,45,98,117,103,45,107,101,121,115,46,106,115,92,34,41,46,99,111,110,99,97,116,41,40,39,108,101,110,103,116,104,39,44,32,39,112,114,111,116,111,116,121,112,101,39,41,59,92,110,92,110,101,120,112,111,114,116,115,46,102,32,61,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,32,124,124,32,102,117,110,99,116,105,111,110,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,79,41,32,123,92,110,32,32,114,101,116,117,114,110,32,36,107,101,121,115,40,79,44,32,104,105,100,100,101,110,75,101,121,115,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,101,120,112,111,114,116,115,41,32,123,10,10,101,118,97,108,40,34,101,120,112,111,114,116,115,46,102,32,61,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,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,112,111,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,112,111,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,50,46,57,32,47,32,49,53,46,50,46,51,46,50,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,79,41,92,110,118,97,114,32,104,97,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,97,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,73,69,95,80,82,79,84,79,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,104,97,114,101,100,45,107,101,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,104,97,114,101,100,45,107,101,121,46,106,115,92,34,41,40,39,73,69,95,80,82,79,84,79,39,41,59,92,110,118,97,114,32,79,98,106,101,99,116,80,114,111,116,111,32,61,32,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,32,124,124,32,102,117,110,99,116,105,111,110,32,40,79,41,32,123,92,110,32,32,79,32,61,32,116,111,79,98,106,101,99,116,40,79,41,59,92,110,32,32,105,102,32,40,104,97,115,40,79,44,32,73,69,95,80,82,79,84,79,41,41,32,114,101,116,117,114,110,32,79,91,73,69,95,80,82,79,84,79,93,59,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,79,46,99,111,110,115,116,114,117,99,116,111,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,79,32,105,110,115,116,97,110,99,101,111,102,32,79,46,99,111,110,115,116,114,117,99,116,111,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,79,46,99,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,59,92,110,32,32,125,32,114,101,116,117,114,110,32,79,32,105,110,115,116,97,110,99,101,111,102,32,79,98,106,101,99,116,32,63,32,79,98,106,101,99,116,80,114,111,116,111,32,58,32,110,117,108,108,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,112,111,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,107,101,121,115,45,105,110,116,101,114,110,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,107,101,121,115,45,105,110,116,101,114,110,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,104,97,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,97,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,97,114,114,97,121,73,110,100,101,120,79,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,105,110,99,108,117,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,105,110,99,108,117,100,101,115,46,106,115,92,34,41,40,102,97,108,115,101,41,59,92,110,118,97,114,32,73,69,95,80,82,79,84,79,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,104,97,114,101,100,45,107,101,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,104,97,114,101,100,45,107,101,121,46,106,115,92,34,41,40,39,73,69,95,80,82,79,84,79,39,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,111,98,106,101,99,116,44,32,110,97,109,101,115,41,32,123,92,110,32,32,118,97,114,32,79,32,61,32,116,111,73,79,98,106,101,99,116,40,111,98,106,101,99,116,41,59,92,110,32,32,118,97,114,32,105,32,61,32,48,59,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,32,32,118,97,114,32,107,101,121,59,92,110,32,32,102,111,114,32,40,107,101,121,32,105,110,32,79,41,32,105,102,32,40,107,101,121,32,33,61,32,73,69,95,80,82,79,84,79,41,32,104,97,115,40,79,44,32,107,101,121,41,32,38,38,32,114,101,115,117,108,116,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,47,47,32,68,111,110,39,116,32,101,110,117,109,32,98,117,103,32,38,32,104,105,100,100,101,110,32,107,101,121,115,92,110,32,32,119,104,105,108,101,32,40,110,97,109,101,115,46,108,101,110,103,116,104,32,62,32,105,41,32,105,102,32,40,104,97,115,40,79,44,32,107,101,121,32,61,32,110,97,109,101,115,91,105,43,43,93,41,41,32,123,92,110,32,32,32,32,126,97,114,114,97,121,73,110,100,101,120,79,102,40,114,101,115,117,108,116,44,32,107,101,121,41,32,124,124,32,114,101,115,117,108,116,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,107,101,121,115,45,105,110,116,101,114,110,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,107,101,121,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,107,101,121,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,50,46,49,52,32,47,32,49,53,46,50,46,51,46,49,52,32,79,98,106,101,99,116,46,107,101,121,115,40,79,41,92,110,118,97,114,32,36,107,101,121,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,107,101,121,115,45,105,110,116,101,114,110,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,107,101,121,115,45,105,110,116,101,114,110,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,101,110,117,109,66,117,103,75,101,121,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,110,117,109,45,98,117,103,45,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,110,117,109,45,98,117,103,45,107,101,121,115,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,32,124,124,32,102,117,110,99,116,105,111,110,32,107,101,121,115,40,79,41,32,123,92,110,32,32,114,101,116,117,114,110,32,36,107,101,121,115,40,79,44,32,101,110,117,109,66,117,103,75,101,121,115,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,107,101,121,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,112,105,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,112,105,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,101,120,112,111,114,116,115,41,32,123,10,10,101,118,97,108,40,34,101,120,112,111,114,116,115,46,102,32,61,32,123,125,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,112,105,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,115,97,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,115,97,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,109,111,115,116,32,79,98,106,101,99,116,32,109,101,116,104,111,100,115,32,98,121,32,69,83,54,32,115,104,111,117,108,100,32,97,99,99,101,112,116,32,112,114,105,109,105,116,105,118,101,115,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,99,111,114,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,59,92,110,118,97,114,32,102,97,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,75,69,89,44,32,101,120,101,99,41,32,123,92,110,32,32,118,97,114,32,102,110,32,61,32,40,99,111,114,101,46,79,98,106,101,99,116,32,124,124,32,123,125,41,91,75,69,89,93,32,124,124,32,79,98,106,101,99,116,91,75,69,89,93,59,92,110,32,32,118,97,114,32,101,120,112,32,61,32,123,125,59,92,110,32,32,101,120,112,91,75,69,89,93,32,61,32,101,120,101,99,40,102,110,41,59,92,110,32,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,102,110,40,49,41,59,32,125,41,44,32,39,79,98,106,101,99,116,39,44,32,101,120,112,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,115,97,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,116,111,45,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,116,111,45,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,68,69,83,67,82,73,80,84,79,82,83,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,59,92,110,118,97,114,32,103,101,116,75,101,121,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,107,101,121,115,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,69,110,117,109,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,112,105,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,112,105,101,46,106,115,92,34,41,46,102,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,115,69,110,116,114,105,101,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,32,32,118,97,114,32,79,32,61,32,116,111,73,79,98,106,101,99,116,40,105,116,41,59,92,110,32,32,32,32,118,97,114,32,107,101,121,115,32,61,32,103,101,116,75,101,121,115,40,79,41,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,107,101,121,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,105,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,32,32,32,32,118,97,114,32,107,101,121,59,92,110,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,32,62,32,105,41,32,123,92,110,32,32,32,32,32,32,107,101,121,32,61,32,107,101,121,115,91,105,43,43,93,59,92,110,32,32,32,32,32,32,105,102,32,40,33,68,69,83,67,82,73,80,84,79,82,83,32,124,124,32,105,115,69,110,117,109,46,99,97,108,108,40,79,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,105,115,69,110,116,114,105,101,115,32,63,32,91,107,101,121,44,32,79,91,107,101,121,93,93,32,58,32,79,91,107,101,121,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,116,111,45,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,119,110,45,107,101,121,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,119,110,45,107,101,121,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,97,108,108,32,111,98,106,101,99,116,32,107,101,121,115,44,32,105,110,99,108,117,100,101,115,32,110,111,110,45,101,110,117,109,101,114,97,98,108,101,32,97,110,100,32,115,121,109,98,111,108,115,92,110,118,97,114,32,103,79,80,78,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,110,46,106,115,92,34,41,59,92,110,118,97,114,32,103,79,80,83,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,115,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,82,101,102,108,101,99,116,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,46,82,101,102,108,101,99,116,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,82,101,102,108,101,99,116,32,38,38,32,82,101,102,108,101,99,116,46,111,119,110,75,101,121,115,32,124,124,32,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,105,116,41,32,123,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,103,79,80,78,46,102,40,97,110,79,98,106,101,99,116,40,105,116,41,41,59,92,110,32,32,118,97,114,32,103,101,116,83,121,109,98,111,108,115,32,61,32,103,79,80,83,46,102,59,92,110,32,32,114,101,116,117,114,110,32,103,101,116,83,121,109,98,111,108,115,32,63,32,107,101,121,115,46,99,111,110,99,97,116,40,103,101,116,83,121,109,98,111,108,115,40,105,116,41,41,32,58,32,107,101,121,115,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,119,110,45,107,101,121,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,97,114,115,101,45,102,108,111,97,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,97,114,115,101,45,102,108,111,97,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,112,97,114,115,101,70,108,111,97,116,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,46,112,97,114,115,101,70,108,111,97,116,41,59,92,110,118,97,114,32,36,116,114,105,109,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,116,114,105,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,116,114,105,109,46,106,115,92,34,41,46,116,114,105,109,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,49,32,47,32,36,112,97,114,115,101,70,108,111,97,116,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,119,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,119,115,46,106,115,92,34,41,32,43,32,39,45,48,39,41,32,33,61,61,32,45,73,110,102,105,110,105,116,121,32,63,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,70,108,111,97,116,40,115,116,114,41,32,123,92,110,32,32,118,97,114,32,115,116,114,105,110,103,32,61,32,36,116,114,105,109,40,83,116,114,105,110,103,40,115,116,114,41,44,32,51,41,59,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,36,112,97,114,115,101,70,108,111,97,116,40,115,116,114,105,110,103,41,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,61,61,61,32,48,32,38,38,32,115,116,114,105,110,103,46,99,104,97,114,65,116,40,48,41,32,61,61,32,39,45,39,32,63,32,45,48,32,58,32,114,101,115,117,108,116,59,92,110,125,32,58,32,36,112,97,114,115,101,70,108,111,97,116,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,97,114,115,101,45,102,108,111,97,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,97,114,115,101,45,105,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,97,114,115,101,45,105,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,112,97,114,115,101,73,110,116,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,46,112,97,114,115,101,73,110,116,41,59,92,110,118,97,114,32,36,116,114,105,109,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,116,114,105,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,116,114,105,109,46,106,115,92,34,41,46,116,114,105,109,41,59,92,110,118,97,114,32,119,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,119,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,119,115,46,106,115,92,34,41,59,92,110,118,97,114,32,104,101,120,32,61,32,47,94,91,45,43,93,63,48,91,120,88,93,47,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,36,112,97,114,115,101,73,110,116,40,119,115,32,43,32,39,48,56,39,41,32,33,61,61,32,56,32,124,124,32,36,112,97,114,115,101,73,110,116,40,119,115,32,43,32,39,48,120,49,54,39,41,32,33,61,61,32,50,50,32,63,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,73,110,116,40,115,116,114,44,32,114,97,100,105,120,41,32,123,92,110,32,32,118,97,114,32,115,116,114,105,110,103,32,61,32,36,116,114,105,109,40,83,116,114,105,110,103,40,115,116,114,41,44,32,51,41,59,92,110,32,32,114,101,116,117,114,110,32,36,112,97,114,115,101,73,110,116,40,115,116,114,105,110,103,44,32,40,114,97,100,105,120,32,62,62,62,32,48,41,32,124,124,32,40,104,101,120,46,116,101,115,116,40,115,116,114,105,110,103,41,32,63,32,49,54,32,58,32,49,48,41,41,59,92,110,125,32,58,32,36,112,97,114,115,101,73,110,116,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,97,114,115,101,45,105,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,101,114,102,111,114,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,101,114,102,111,114,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,101,120,101,99,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,32,101,58,32,102,97,108,115,101,44,32,118,58,32,101,120,101,99,40,41,32,125,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,32,101,58,32,116,114,117,101,44,32,118,58,32,101,32,125,59,92,110,32,32,125,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,101,114,102,111,114,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,114,111,109,105,115,101,45,114,101,115,111,108,118,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,114,111,109,105,115,101,45,114,101,115,111,108,118,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,110,101,119,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,110,101,119,45,112,114,111,109,105,115,101,45,99,97,112,97,98,105,108,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,110,101,119,45,112,114,111,109,105,115,101,45,99,97,112,97,98,105,108,105,116,121,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,67,44,32,120,41,32,123,92,110,32,32,97,110,79,98,106,101,99,116,40,67,41,59,92,110,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,120,41,32,38,38,32,120,46,99,111,110,115,116,114,117,99,116,111,114,32,61,61,61,32,67,41,32,114,101,116,117,114,110,32,120,59,92,110,32,32,118,97,114,32,112,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,32,61,32,110,101,119,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,46,102,40,67,41,59,92,110,32,32,118,97,114,32,114,101,115,111,108,118,101,32,61,32,112,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,46,114,101,115,111,108,118,101,59,92,110,32,32,114,101,115,111,108,118,101,40,120,41,59,92,110,32,32,114,101,116,117,114,110,32,112,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,46,112,114,111,109,105,115,101,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,114,111,109,105,115,101,45,114,101,115,111,108,118,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,98,105,116,109,97,112,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,33,40,98,105,116,109,97,112,32,38,32,49,41,44,92,110,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,33,40,98,105,116,109,97,112,32,38,32,50,41,44,92,110,32,32,32,32,119,114,105,116,97,98,108,101,58,32,33,40,98,105,116,109,97,112,32,38,32,52,41,44,92,110,32,32,32,32,118,97,108,117,101,58,32,118,97,108,117,101,92,110,32,32,125,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,45,97,108,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,45,97,108,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,114,101,100,101,102,105,110,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,44,32,115,114,99,44,32,115,97,102,101,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,115,114,99,41,32,114,101,100,101,102,105,110,101,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,114,99,91,107,101,121,93,44,32,115,97,102,101,41,59,92,110,32,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,45,97,108,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,104,105,100,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,92,34,41,59,92,110,118,97,114,32,104,97,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,97,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,92,34,41,59,92,110,118,97,114,32,83,82,67,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,117,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,105,100,46,106,115,92,34,41,40,39,115,114,99,39,41,59,92,110,118,97,114,32,36,116,111,83,116,114,105,110,103,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,117,110,99,116,105,111,110,45,116,111,45,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,117,110,99,116,105,111,110,45,116,111,45,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,118,97,114,32,84,79,95,83,84,82,73,78,71,32,61,32,39,116,111,83,116,114,105,110,103,39,59,92,110,118,97,114,32,84,80,76,32,61,32,40,39,39,32,43,32,36,116,111,83,116,114,105,110,103,41,46,115,112,108,105,116,40,84,79,95,83,84,82,73,78,71,41,59,92,110,92,110,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,46,105,110,115,112,101,99,116,83,111,117,114,99,101,41,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,36,116,111,83,116,114,105,110,103,46,99,97,108,108,40,105,116,41,59,92,110,125,59,92,110,92,110,40,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,79,44,32,107,101,121,44,32,118,97,108,44,32,115,97,102,101,41,32,123,92,110,32,32,118,97,114,32,105,115,70,117,110,99,116,105,111,110,32,61,32,116,121,112,101,111,102,32,118,97,108,32,61,61,32,39,102,117,110,99,116,105,111,110,39,59,92,110,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,41,32,104,97,115,40,118,97,108,44,32,39,110,97,109,101,39,41,32,124,124,32,104,105,100,101,40,118,97,108,44,32,39,110,97,109,101,39,44,32,107,101,121,41,59,92,110,32,32,105,102,32,40,79,91,107,101,121,93,32,61,61,61,32,118,97,108,41,32,114,101,116,117,114,110,59,92,110,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,41,32,104,97,115,40,118,97,108,44,32,83,82,67,41,32,124,124,32,104,105,100,101,40,118,97,108,44,32,83,82,67,44,32,79,91,107,101,121,93,32,63,32,39,39,32,43,32,79,91,107,101,121,93,32,58,32,84,80,76,46,106,111,105,110,40,83,116,114,105,110,103,40,107,101,121,41,41,41,59,92,110,32,32,105,102,32,40,79,32,61,61,61,32,103,108,111,98,97,108,41,32,123,92,110,32,32,32,32,79,91,107,101,121,93,32,61,32,118,97,108,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,33,115,97,102,101,41,32,123,92,110,32,32,32,32,100,101,108,101,116,101,32,79,91,107,101,121,93,59,92,110,32,32,32,32,104,105,100,101,40,79,44,32,107,101,121,44,32,118,97,108,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,79,91,107,101,121,93,41,32,123,92,110,32,32,32,32,79,91,107,101,121,93,32,61,32,118,97,108,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,104,105,100,101,40,79,44,32,107,101,121,44,32,118,97,108,41,59,92,110,32,32,125,92,110,47,47,32,97,100,100,32,102,97,107,101,32,70,117,110,99,116,105,111,110,35,116,111,83,116,114,105,110,103,32,102,111,114,32,99,111,114,114,101,99,116,32,119,111,114,107,32,119,114,97,112,112,101,100,32,109,101,116,104,111,100,115,32,47,32,99,111,110,115,116,114,117,99,116,111,114,115,32,119,105,116,104,32,109,101,116,104,111,100,115,32,108,105,107,101,32,76,111,68,97,115,104,32,105,115,78,97,116,105,118,101,92,110,125,41,40,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,44,32,84,79,95,83,84,82,73,78,71,44,32,102,117,110,99,116,105,111,110,32,116,111,83,116,114,105,110,103,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,104,105,115,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,116,104,105,115,91,83,82,67,93,32,124,124,32,36,116,111,83,116,114,105,110,103,46,99,97,108,108,40,116,104,105,115,41,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,103,101,120,112,45,101,120,101,99,45,97,98,115,116,114,97,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,103,101,120,112,45,101,120,101,99,45,97,98,115,116,114,97,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,99,108,97,115,115,111,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,108,97,115,115,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,108,97,115,115,111,102,46,106,115,92,34,41,59,92,110,118,97,114,32,98,117,105,108,116,105,110,69,120,101,99,32,61,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,46,101,120,101,99,59,92,110,92,110,32,47,47,32,96,82,101,103,69,120,112,69,120,101,99,96,32,97,98,115,116,114,97,99,116,32,111,112,101,114,97,116,105,111,110,92,110,47,47,32,104,116,116,112,115,58,47,47,116,99,51,57,46,103,105,116,104,117,98,46,105,111,47,101,99,109,97,50,54,50,47,35,115,101,99,45,114,101,103,101,120,112,101,120,101,99,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,82,44,32,83,41,32,123,92,110,32,32,118,97,114,32,101,120,101,99,32,61,32,82,46,101,120,101,99,59,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,101,120,101,99,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,101,120,101,99,46,99,97,108,108,40,82,44,32,83,41,59,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,114,101,115,117,108,116,32,33,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,82,101,103,69,120,112,32,101,120,101,99,32,109,101,116,104,111,100,32,114,101,116,117,114,110,101,100,32,115,111,109,101,116,104,105,110,103,32,111,116,104,101,114,32,116,104,97,110,32,97,110,32,79,98,106,101,99,116,32,111,114,32,110,117,108,108,39,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,32,32,105,102,32,40,99,108,97,115,115,111,102,40,82,41,32,33,61,61,32,39,82,101,103,69,120,112,39,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,82,101,103,69,120,112,35,101,120,101,99,32,99,97,108,108,101,100,32,111,110,32,105,110,99,111,109,112,97,116,105,98,108,101,32,114,101,99,101,105,118,101,114,39,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,98,117,105,108,116,105,110,69,120,101,99,46,99,97,108,108,40,82,44,32,83,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,103,101,120,112,45,101,120,101,99,45,97,98,115,116,114,97,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,103,101,120,112,45,101,120,101,99,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,103,101,120,112,45,101,120,101,99,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,114,101,103,101,120,112,70,108,97,103,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,108,97,103,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,108,97,103,115,46,106,115,92,34,41,59,92,110,92,110,118,97,114,32,110,97,116,105,118,101,69,120,101,99,32,61,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,46,101,120,101,99,59,92,110,47,47,32,84,104,105,115,32,97,108,119,97,121,115,32,114,101,102,101,114,115,32,116,111,32,116,104,101,32,110,97,116,105,118,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,44,32,98,101,99,97,117,115,101,32,116,104,101,92,110,47,47,32,83,116,114,105,110,103,35,114,101,112,108,97,99,101,32,112,111,108,121,102,105,108,108,32,117,115,101,115,32,46,47,102,105,120,45,114,101,103,101,120,112,45,119,101,108,108,45,107,110,111,119,110,45,115,121,109,98,111,108,45,108,111,103,105,99,46,106,115,44,92,110,47,47,32,119,104,105,99,104,32,108,111,97,100,115,32,116,104,105,115,32,102,105,108,101,32,98,101,102,111,114,101,32,112,97,116,99,104,105,110,103,32,116,104,101,32,109,101,116,104,111,100,46,92,110,118,97,114,32,110,97,116,105,118,101,82,101,112,108,97,99,101,32,61,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,114,101,112,108,97,99,101,59,92,110,92,110,118,97,114,32,112,97,116,99,104,101,100,69,120,101,99,32,61,32,110,97,116,105,118,101,69,120,101,99,59,92,110,92,110,118,97,114,32,76,65,83,84,95,73,78,68,69,88,32,61,32,39,108,97,115,116,73,110,100,101,120,39,59,92,110,92,110,118,97,114,32,85,80,68,65,84,69,83,95,76,65,83,84,95,73,78,68,69,88,95,87,82,79,78,71,32,61,32,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,114,101,49,32,61,32,47,97,47,44,92,110,32,32,32,32,32,32,114,101,50,32,61,32,47,98,42,47,103,59,92,110,32,32,110,97,116,105,118,101,69,120,101,99,46,99,97,108,108,40,114,101,49,44,32,39,97,39,41,59,92,110,32,32,110,97,116,105,118,101,69,120,101,99,46,99,97,108,108,40,114,101,50,44,32,39,97,39,41,59,92,110,32,32,114,101,116,117,114,110,32,114,101,49,91,76,65,83,84,95,73,78,68,69,88,93,32,33,61,61,32,48,32,124,124,32,114,101,50,91,76,65,83,84,95,73,78,68,69,88,93,32,33,61,61,32,48,59,92,110,125,41,40,41,59,92,110,92,110,47,47,32,110,111,110,112,97,114,116,105,99,105,112,97,116,105,110,103,32,99,97,112,116,117,114,105,110,103,32,103,114,111,117,112,44,32,99,111,112,105,101,100,32,102,114,111,109,32,101,115,53,45,115,104,105,109,39,115,32,83,116,114,105,110,103,35,115,112,108,105,116,32,112,97,116,99,104,46,92,110,118,97,114,32,78,80,67,71,95,73,78,67,76,85,68,69,68,32,61,32,47,40,41,63,63,47,46,101,120,101,99,40,39,39,41,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,118,97,114,32,80,65,84,67,72,32,61,32,85,80,68,65,84,69,83,95,76,65,83,84,95,73,78,68,69,88,95,87,82,79,78,71,32,124,124,32,78,80,67,71,95,73,78,67,76,85,68,69,68,59,92,110,92,110,105,102,32,40,80,65,84,67,72,41,32,123,92,110,32,32,112,97,116,99,104,101,100,69,120,101,99,32,61,32,102,117,110,99,116,105,111,110,32,101,120,101,99,40,115,116,114,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,32,61,32,116,104,105,115,59,92,110,32,32,32,32,118,97,114,32,108,97,115,116,73,110,100,101,120,44,32,114,101,67,111,112,121,44,32,109,97,116,99,104,44,32,105,59,92,110,92,110,32,32,32,32,105,102,32,40,78,80,67,71,95,73,78,67,76,85,68,69,68,41,32,123,92,110,32,32,32,32,32,32,114,101,67,111,112,121,32,61,32,110,101,119,32,82,101,103,69,120,112,40,39,94,39,32,43,32,114,101,46,115,111,117,114,99,101,32,43,32,39,36,40,63,33,92,92,92,92,115,41,39,44,32,114,101,103,101,120,112,70,108,97,103,115,46,99,97,108,108,40,114,101,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,85,80,68,65,84,69,83,95,76,65,83,84,95,73,78,68,69,88,95,87,82,79,78,71,41,32,108,97,115,116,73,110,100,101,120,32,61,32,114,101,91,76,65,83,84,95,73,78,68,69,88,93,59,92,110,92,110,32,32,32,32,109,97,116,99,104,32,61,32,110,97,116,105,118,101,69,120,101,99,46,99,97,108,108,40,114,101,44,32,115,116,114,41,59,92,110,92,110,32,32,32,32,105,102,32,40,85,80,68,65,84,69,83,95,76,65,83,84,95,73,78,68,69,88,95,87,82,79,78,71,32,38,38,32,109,97,116,99,104,41,32,123,92,110,32,32,32,32,32,32,114,101,91,76,65,83,84,95,73,78,68,69,88,93,32,61,32,114,101,46,103,108,111,98,97,108,32,63,32,109,97,116,99,104,46,105,110,100,101,120,32,43,32,109,97,116,99,104,91,48,93,46,108,101,110,103,116,104,32,58,32,108,97,115,116,73,110,100,101,120,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,78,80,67,71,95,73,78,67,76,85,68,69,68,32,38,38,32,109,97,116,99,104,32,38,38,32,109,97,116,99,104,46,108,101,110,103,116,104,32,62,32,49,41,32,123,92,110,32,32,32,32,32,32,47,47,32,70,105,120,32,98,114,111,119,115,101,114,115,32,119,104,111,115,101,32,96,101,120,101,99,96,32,109,101,116,104,111,100,115,32,100,111,110,39,116,32,99,111,110,115,105,115,116,101,110,116,108,121,32,114,101,116,117,114,110,32,96,117,110,100,101,102,105,110,101,100,96,92,110,32,32,32,32,32,32,47,47,32,102,111,114,32,78,80,67,71,44,32,108,105,107,101,32,73,69,56,46,32,78,79,84,69,58,32,84,104,105,115,32,100,111,101,115,110,39,32,119,111,114,107,32,102,111,114,32,47,40,46,63,41,63,47,92,110,32,32,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,108,111,111,112,45,102,117,110,99,92,110,32,32,32,32,32,32,110,97,116,105,118,101,82,101,112,108,97,99,101,46,99,97,108,108,40,109,97,116,99,104,91,48,93,44,32,114,101,67,111,112,121,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,45,32,50,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,91,105,93,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,109,97,116,99,104,91,105,93,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,109,97,116,99,104,59,92,110,32,32,125,59,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,112,97,116,99,104,101,100,69,120,101,99,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,103,101,120,112,45,101,120,101,99,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,97,109,101,45,118,97,108,117,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,97,109,101,45,118,97,108,117,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,47,47,32,55,46,50,46,57,32,83,97,109,101,86,97,108,117,101,40,120,44,32,121,41,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,79,98,106,101,99,116,46,105,115,32,124,124,32,102,117,110,99,116,105,111,110,32,105,115,40,120,44,32,121,41,32,123,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,115,101,108,102,45,99,111,109,112,97,114,101,92,110,32,32,114,101,116,117,114,110,32,120,32,61,61,61,32,121,32,63,32,120,32,33,61,61,32,48,32,124,124,32,49,32,47,32,120,32,61,61,61,32,49,32,47,32,121,32,58,32,120,32,33,61,32,120,32,38,38,32,121,32,33,61,32,121,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,97,109,101,45,118,97,108,117,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,112,114,111,116,111,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,112,114,111,116,111,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,87,111,114,107,115,32,119,105,116,104,32,95,95,112,114,111,116,111,95,95,32,111,110,108,121,46,32,79,108,100,32,118,56,32,99,97,110,39,116,32,119,111,114,107,32,119,105,116,104,32,110,117,108,108,32,112,114,111,116,111,32,111,98,106,101,99,116,115,46,92,110,47,42,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,32,110,111,45,112,114,111,116,111,32,42,47,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,99,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,79,44,32,112,114,111,116,111,41,32,123,92,110,32,32,97,110,79,98,106,101,99,116,40,79,41,59,92,110,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,112,114,111,116,111,41,32,38,38,32,112,114,111,116,111,32,33,61,61,32,110,117,108,108,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,112,114,111,116,111,32,43,32,92,34,58,32,99,97,110,39,116,32,115,101,116,32,97,115,32,112,114,111,116,111,116,121,112,101,33,92,34,41,59,92,110,125,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,123,92,110,32,32,115,101,116,58,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,32,124,124,32,40,39,95,95,112,114,111,116,111,95,95,39,32,105,110,32,123,125,32,63,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,40,116,101,115,116,44,32,98,117,103,103,121,44,32,115,101,116,41,32,123,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,115,101,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,116,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,92,34,41,40,70,117,110,99,116,105,111,110,46,99,97,108,108,44,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,100,46,106,115,92,34,41,46,102,41,40,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,44,32,39,95,95,112,114,111,116,111,95,95,39,41,46,115,101,116,44,32,50,41,59,92,110,32,32,32,32,32,32,32,32,115,101,116,40,116,101,115,116,44,32,91,93,41,59,92,110,32,32,32,32,32,32,32,32,98,117,103,103,121,32,61,32,33,40,116,101,115,116,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,41,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,32,98,117,103,103,121,32,61,32,116,114,117,101,59,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,79,44,32,112,114,111,116,111,41,32,123,92,110,32,32,32,32,32,32,32,32,99,104,101,99,107,40,79,44,32,112,114,111,116,111,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,98,117,103,103,121,41,32,79,46,95,95,112,114,111,116,111,95,95,32,61,32,112,114,111,116,111,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,115,101,116,40,79,44,32,112,114,111,116,111,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,79,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,40,123,125,44,32,102,97,108,115,101,41,32,58,32,117,110,100,101,102,105,110,101,100,41,44,92,110,32,32,99,104,101,99,107,58,32,99,104,101,99,107,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,112,114,111,116,111,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,115,112,101,99,105,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,115,112,101,99,105,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,100,80,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,59,92,110,118,97,114,32,68,69,83,67,82,73,80,84,79,82,83,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,59,92,110,118,97,114,32,83,80,69,67,73,69,83,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,115,112,101,99,105,101,115,39,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,75,69,89,41,32,123,92,110,32,32,118,97,114,32,67,32,61,32,103,108,111,98,97,108,91,75,69,89,93,59,92,110,32,32,105,102,32,40,68,69,83,67,82,73,80,84,79,82,83,32,38,38,32,67,32,38,38,32,33,67,91,83,80,69,67,73,69,83,93,41,32,100,80,46,102,40,67,44,32,83,80,69,67,73,69,83,44,32,123,92,110,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,59,32,125,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,115,112,101,99,105,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,116,111,45,115,116,114,105,110,103,45,116,97,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,116,111,45,115,116,114,105,110,103,45,116,97,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,100,101,102,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,46,102,41,59,92,110,118,97,114,32,104,97,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,97,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,92,34,41,59,92,110,118,97,114,32,84,65,71,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,116,111,83,116,114,105,110,103,84,97,103,39,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,44,32,116,97,103,44,32,115,116,97,116,41,32,123,92,110,32,32,105,102,32,40,105,116,32,38,38,32,33,104,97,115,40,105,116,32,61,32,115,116,97,116,32,63,32,105,116,32,58,32,105,116,46,112,114,111,116,111,116,121,112,101,44,32,84,65,71,41,41,32,100,101,102,40,105,116,44,32,84,65,71,44,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,118,97,108,117,101,58,32,116,97,103,32,125,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,116,111,45,115,116,114,105,110,103,45,116,97,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,104,97,114,101,100,45,107,101,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,104,97,114,101,100,45,107,101,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,115,104,97,114,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,104,97,114,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,104,97,114,101,100,46,106,115,92,34,41,40,39,107,101,121,115,39,41,59,92,110,118,97,114,32,117,105,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,117,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,105,100,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,104,97,114,101,100,91,107,101,121,93,32,124,124,32,40,115,104,97,114,101,100,91,107,101,121,93,32,61,32,117,105,100,40,107,101,121,41,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,104,97,114,101,100,45,107,101,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,104,97,114,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,104,97,114,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,99,111,114,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,59,92,110,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,83,72,65,82,69,68,32,61,32,39,95,95,99,111,114,101,45,106,115,95,115,104,97,114,101,100,95,95,39,59,92,110,118,97,114,32,115,116,111,114,101,32,61,32,103,108,111,98,97,108,91,83,72,65,82,69,68,93,32,124,124,32,40,103,108,111,98,97,108,91,83,72,65,82,69,68,93,32,61,32,123,125,41,59,92,110,92,110,40,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,116,111,114,101,91,107,101,121,93,32,124,124,32,40,115,116,111,114,101,91,107,101,121,93,32,61,32,118,97,108,117,101,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,118,97,108,117,101,32,58,32,123,125,41,59,92,110,125,41,40,39,118,101,114,115,105,111,110,115,39,44,32,91,93,41,46,112,117,115,104,40,123,92,110,32,32,118,101,114,115,105,111,110,58,32,99,111,114,101,46,118,101,114,115,105,111,110,44,92,110,32,32,109,111,100,101,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,108,105,98,114,97,114,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,108,105,98,114,97,114,121,46,106,115,92,34,41,32,63,32,39,112,117,114,101,39,32,58,32,39,103,108,111,98,97,108,39,44,92,110,32,32,99,111,112,121,114,105,103,104,116,58,32,39,194,169,32,50,48,50,48,32,68,101,110,105,115,32,80,117,115,104,107,97,114,101,118,32,40,122,108,111,105,114,111,99,107,46,114,117,41,39,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,104,97,114,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,55,46,51,46,50,48,32,83,112,101,99,105,101,115,67,111,110,115,116,114,117,99,116,111,114,40,79,44,32,100,101,102,97,117,108,116,67,111,110,115,116,114,117,99,116,111,114,41,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,97,70,117,110,99,116,105,111,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,45,102,117,110,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,83,80,69,67,73,69,83,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,115,112,101,99,105,101,115,39,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,79,44,32,68,41,32,123,92,110,32,32,118,97,114,32,67,32,61,32,97,110,79,98,106,101,99,116,40,79,41,46,99,111,110,115,116,114,117,99,116,111,114,59,92,110,32,32,118,97,114,32,83,59,92,110,32,32,114,101,116,117,114,110,32,67,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,32,40,83,32,61,32,97,110,79,98,106,101,99,116,40,67,41,91,83,80,69,67,73,69,83,93,41,32,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,68,32,58,32,97,70,117,110,99,116,105,111,110,40,83,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,102,97,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,109,101,116,104,111,100,44,32,97,114,103,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,33,109,101,116,104,111,100,32,38,38,32,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,117,115,101,108,101,115,115,45,99,97,108,108,92,110,32,32,32,32,97,114,103,32,63,32,109,101,116,104,111,100,46,99,97,108,108,40,110,117,108,108,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,44,32,49,41,32,58,32,109,101,116,104,111,100,46,99,97,108,108,40,110,117,108,108,41,59,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,97,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,97,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,116,111,73,110,116,101,103,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,116,101,103,101,114,46,106,115,92,34,41,59,92,110,118,97,114,32,100,101,102,105,110,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,102,105,110,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,102,105,110,101,100,46,106,115,92,34,41,59,92,110,47,47,32,116,114,117,101,32,32,45,62,32,83,116,114,105,110,103,35,97,116,92,110,47,47,32,102,97,108,115,101,32,45,62,32,83,116,114,105,110,103,35,99,111,100,101,80,111,105,110,116,65,116,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,84,79,95,83,84,82,73,78,71,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,116,104,97,116,44,32,112,111,115,41,32,123,92,110,32,32,32,32,118,97,114,32,115,32,61,32,83,116,114,105,110,103,40,100,101,102,105,110,101,100,40,116,104,97,116,41,41,59,92,110,32,32,32,32,118,97,114,32,105,32,61,32,116,111,73,110,116,101,103,101,114,40,112,111,115,41,59,92,110,32,32,32,32,118,97,114,32,108,32,61,32,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,97,44,32,98,59,92,110,32,32,32,32,105,102,32,40,105,32,60,32,48,32,124,124,32,105,32,62,61,32,108,41,32,114,101,116,117,114,110,32,84,79,95,83,84,82,73,78,71,32,63,32,39,39,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,97,32,61,32,115,46,99,104,97,114,67,111,100,101,65,116,40,105,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,97,32,60,32,48,120,100,56,48,48,32,124,124,32,97,32,62,32,48,120,100,98,102,102,32,124,124,32,105,32,43,32,49,32,61,61,61,32,108,32,124,124,32,40,98,32,61,32,115,46,99,104,97,114,67,111,100,101,65,116,40,105,32,43,32,49,41,41,32,60,32,48,120,100,99,48,48,32,124,124,32,98,32,62,32,48,120,100,102,102,102,92,110,32,32,32,32,32,32,63,32,84,79,95,83,84,82,73,78,71,32,63,32,115,46,99,104,97,114,65,116,40,105,41,32,58,32,97,92,110,32,32,32,32,32,32,58,32,84,79,95,83,84,82,73,78,71,32,63,32,115,46,115,108,105,99,101,40,105,44,32,105,32,43,32,50,41,32,58,32,40,97,32,45,32,48,120,100,56,48,48,32,60,60,32,49,48,41,32,43,32,40,98,32,45,32,48,120,100,99,48,48,41,32,43,32,48,120,49,48,48,48,48,59,92,110,32,32,125,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,97,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,99,111,110,116,101,120,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,99,111,110,116,101,120,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,104,101,108,112,101,114,32,102,111,114,32,83,116,114,105,110,103,35,123,115,116,97,114,116,115,87,105,116,104,44,32,101,110,100,115,87,105,116,104,44,32,105,110,99,108,117,100,101,115,125,92,110,118,97,114,32,105,115,82,101,103,69,120,112,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,114,101,103,101,120,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,114,101,103,101,120,112,46,106,115,92,34,41,59,92,110,118,97,114,32,100,101,102,105,110,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,102,105,110,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,102,105,110,101,100,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,116,104,97,116,44,32,115,101,97,114,99,104,83,116,114,105,110,103,44,32,78,65,77,69,41,32,123,92,110,32,32,105,102,32,40,105,115,82,101,103,69,120,112,40,115,101,97,114,99,104,83,116,114,105,110,103,41,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,39,83,116,114,105,110,103,35,39,32,43,32,78,65,77,69,32,43,32,92,34,32,100,111,101,115,110,39,116,32,97,99,99,101,112,116,32,114,101,103,101,120,33,92,34,41,59,92,110,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,100,101,102,105,110,101,100,40,116,104,97,116,41,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,99,111,110,116,101,120,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,102,97,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,100,101,102,105,110,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,102,105,110,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,102,105,110,101,100,46,106,115,92,34,41,59,92,110,118,97,114,32,113,117,111,116,32,61,32,47,92,34,47,103,59,92,110,47,47,32,66,46,50,46,51,46,50,46,49,32,67,114,101,97,116,101,72,84,77,76,40,115,116,114,105,110,103,44,32,116,97,103,44,32,97,116,116,114,105,98,117,116,101,44,32,118,97,108,117,101,41,92,110,118,97,114,32,99,114,101,97,116,101,72,84,77,76,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,114,105,110,103,44,32,116,97,103,44,32,97,116,116,114,105,98,117,116,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,83,32,61,32,83,116,114,105,110,103,40,100,101,102,105,110,101,100,40,115,116,114,105,110,103,41,41,59,92,110,32,32,118,97,114,32,112,49,32,61,32,39,60,39,32,43,32,116,97,103,59,92,110,32,32,105,102,32,40,97,116,116,114,105,98,117,116,101,32,33,61,61,32,39,39,41,32,112,49,32,43,61,32,39,32,39,32,43,32,97,116,116,114,105,98,117,116,101,32,43,32,39,61,92,34,39,32,43,32,83,116,114,105,110,103,40,118,97,108,117,101,41,46,114,101,112,108,97,99,101,40,113,117,111,116,44,32,39,38,113,117,111,116,59,39,41,32,43,32,39,92,34,39,59,92,110,32,32,114,101,116,117,114,110,32,112,49,32,43,32,39,62,39,32,43,32,83,32,43,32,39,60,47,39,32,43,32,116,97,103,32,43,32,39,62,39,59,92,110,125,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,78,65,77,69,44,32,101,120,101,99,41,32,123,92,110,32,32,118,97,114,32,79,32,61,32,123,125,59,92,110,32,32,79,91,78,65,77,69,93,32,61,32,101,120,101,99,40,99,114,101,97,116,101,72,84,77,76,41,59,92,110,32,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,116,101,115,116,32,61,32,39,39,91,78,65,77,69,93,40,39,92,34,39,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,101,115,116,32,33,61,61,32,116,101,115,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,32,124,124,32,116,101,115,116,46,115,112,108,105,116,40,39,92,34,39,41,46,108,101,110,103,116,104,32,62,32,51,59,92,110,32,32,125,41,44,32,39,83,116,114,105,110,103,39,44,32,79,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,112,97,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,112,97,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,99,51,57,47,112,114,111,112,111,115,97,108,45,115,116,114,105,110,103,45,112,97,100,45,115,116,97,114,116,45,101,110,100,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,112,101,97,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,114,101,112,101,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,114,101,112,101,97,116,46,106,115,92,34,41,59,92,110,118,97,114,32,100,101,102,105,110,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,102,105,110,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,102,105,110,101,100,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,116,104,97,116,44,32,109,97,120,76,101,110,103,116,104,44,32,102,105,108,108,83,116,114,105,110,103,44,32,108,101,102,116,41,32,123,92,110,32,32,118,97,114,32,83,32,61,32,83,116,114,105,110,103,40,100,101,102,105,110,101,100,40,116,104,97,116,41,41,59,92,110,32,32,118,97,114,32,115,116,114,105,110,103,76,101,110,103,116,104,32,61,32,83,46,108,101,110,103,116,104,59,92,110,32,32,118,97,114,32,102,105,108,108,83,116,114,32,61,32,102,105,108,108,83,116,114,105,110,103,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,39,32,39,32,58,32,83,116,114,105,110,103,40,102,105,108,108,83,116,114,105,110,103,41,59,92,110,32,32,118,97,114,32,105,110,116,77,97,120,76,101,110,103,116,104,32,61,32,116,111,76,101,110,103,116,104,40,109,97,120,76,101,110,103,116,104,41,59,92,110,32,32,105,102,32,40,105,110,116,77,97,120,76,101,110,103,116,104,32,60,61,32,115,116,114,105,110,103,76,101,110,103,116,104,32,124,124,32,102,105,108,108,83,116,114,32,61,61,32,39,39,41,32,114,101,116,117,114,110,32,83,59,92,110,32,32,118,97,114,32,102,105,108,108,76,101,110,32,61,32,105,110,116,77,97,120,76,101,110,103,116,104,32,45,32,115,116,114,105,110,103,76,101,110,103,116,104,59,92,110,32,32,118,97,114,32,115,116,114,105,110,103,70,105,108,108,101,114,32,61,32,114,101,112,101,97,116,46,99,97,108,108,40,102,105,108,108,83,116,114,44,32,77,97,116,104,46,99,101,105,108,40,102,105,108,108,76,101,110,32,47,32,102,105,108,108,83,116,114,46,108,101,110,103,116,104,41,41,59,92,110,32,32,105,102,32,40,115,116,114,105,110,103,70,105,108,108,101,114,46,108,101,110,103,116,104,32,62,32,102,105,108,108,76,101,110,41,32,115,116,114,105,110,103,70,105,108,108,101,114,32,61,32,115,116,114,105,110,103,70,105,108,108,101,114,46,115,108,105,99,101,40,48,44,32,102,105,108,108,76,101,110,41,59,92,110,32,32,114,101,116,117,114,110,32,108,101,102,116,32,63,32,115,116,114,105,110,103,70,105,108,108,101,114,32,43,32,83,32,58,32,83,32,43,32,115,116,114,105,110,103,70,105,108,108,101,114,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,112,97,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,114,101,112,101,97,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,114,101,112,101,97,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,116,111,73,110,116,101,103,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,116,101,103,101,114,46,106,115,92,34,41,59,92,110,118,97,114,32,100,101,102,105,110,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,102,105,110,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,102,105,110,101,100,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,114,101,112,101,97,116,40,99,111,117,110,116,41,32,123,92,110,32,32,118,97,114,32,115,116,114,32,61,32,83,116,114,105,110,103,40,100,101,102,105,110,101,100,40,116,104,105,115,41,41,59,92,110,32,32,118,97,114,32,114,101,115,32,61,32,39,39,59,92,110,32,32,118,97,114,32,110,32,61,32,116,111,73,110,116,101,103,101,114,40,99,111,117,110,116,41,59,92,110,32,32,105,102,32,40,110,32,60,32,48,32,124,124,32,110,32,61,61,32,73,110,102,105,110,105,116,121,41,32,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,92,34,67,111,117,110,116,32,99,97,110,39,116,32,98,101,32,110,101,103,97,116,105,118,101,92,34,41,59,92,110,32,32,102,111,114,32,40,59,110,32,62,32,48,59,32,40,110,32,62,62,62,61,32,49,41,32,38,38,32,40,115,116,114,32,43,61,32,115,116,114,41,41,32,105,102,32,40,110,32,38,32,49,41,32,114,101,115,32,43,61,32,115,116,114,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,114,101,112,101,97,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,116,114,105,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,116,114,105,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,100,101,102,105,110,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,102,105,110,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,102,105,110,101,100,46,106,115,92,34,41,59,92,110,118,97,114,32,102,97,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,115,112,97,99,101,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,119,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,119,115,46,106,115,92,34,41,59,92,110,118,97,114,32,115,112,97,99,101,32,61,32,39,91,39,32,43,32,115,112,97,99,101,115,32,43,32,39,93,39,59,92,110,118,97,114,32,110,111,110,32,61,32,39,92,92,117,50,48,48,98,92,92,117,48,48,56,53,39,59,92,110,118,97,114,32,108,116,114,105,109,32,61,32,82,101,103,69,120,112,40,39,94,39,32,43,32,115,112,97,99,101,32,43,32,115,112,97,99,101,32,43,32,39,42,39,41,59,92,110,118,97,114,32,114,116,114,105,109,32,61,32,82,101,103,69,120,112,40,115,112,97,99,101,32,43,32,115,112,97,99,101,32,43,32,39,42,36,39,41,59,92,110,92,110,118,97,114,32,101,120,112,111,114,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,75,69,89,44,32,101,120,101,99,44,32,65,76,73,65,83,41,32,123,92,110,32,32,118,97,114,32,101,120,112,32,61,32,123,125,59,92,110,32,32,118,97,114,32,70,79,82,67,69,32,61,32,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,33,33,115,112,97,99,101,115,91,75,69,89,93,40,41,32,124,124,32,110,111,110,91,75,69,89,93,40,41,32,33,61,32,110,111,110,59,92,110,32,32,125,41,59,92,110,32,32,118,97,114,32,102,110,32,61,32,101,120,112,91,75,69,89,93,32,61,32,70,79,82,67,69,32,63,32,101,120,101,99,40,116,114,105,109,41,32,58,32,115,112,97,99,101,115,91,75,69,89,93,59,92,110,32,32,105,102,32,40,65,76,73,65,83,41,32,101,120,112,91,65,76,73,65,83,93,32,61,32,102,110,59,92,110,32,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,70,79,82,67,69,44,32,39,83,116,114,105,110,103,39,44,32,101,120,112,41,59,92,110,125,59,92,110,92,110,47,47,32,49,32,45,62,32,83,116,114,105,110,103,35,116,114,105,109,76,101,102,116,92,110,47,47,32,50,32,45,62,32,83,116,114,105,110,103,35,116,114,105,109,82,105,103,104,116,92,110,47,47,32,51,32,45,62,32,83,116,114,105,110,103,35,116,114,105,109,92,110,118,97,114,32,116,114,105,109,32,61,32,101,120,112,111,114,116,101,114,46,116,114,105,109,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,114,105,110,103,44,32,84,89,80,69,41,32,123,92,110,32,32,115,116,114,105,110,103,32,61,32,83,116,114,105,110,103,40,100,101,102,105,110,101,100,40,115,116,114,105,110,103,41,41,59,92,110,32,32,105,102,32,40,84,89,80,69,32,38,32,49,41,32,115,116,114,105,110,103,32,61,32,115,116,114,105,110,103,46,114,101,112,108,97,99,101,40,108,116,114,105,109,44,32,39,39,41,59,92,110,32,32,105,102,32,40,84,89,80,69,32,38,32,50,41,32,115,116,114,105,110,103,32,61,32,115,116,114,105,110,103,46,114,101,112,108,97,99,101,40,114,116,114,105,109,44,32,39,39,41,59,92,110,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,59,92,110,125,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,101,120,112,111,114,116,101,114,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,116,114,105,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,119,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,119,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,39,92,92,120,48,57,92,92,120,48,65,92,92,120,48,66,92,92,120,48,67,92,92,120,48,68,92,92,120,50,48,92,92,120,65,48,92,92,117,49,54,56,48,92,92,117,49,56,48,69,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,39,32,43,92,110,32,32,39,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,65,92,92,117,50,48,50,70,92,92,117,50,48,53,70,92,92,117,51,48,48,48,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,70,69,70,70,39,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,119,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,97,115,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,97,115,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,99,116,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,116,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,92,34,41,59,92,110,118,97,114,32,105,110,118,111,107,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,110,118,111,107,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,110,118,111,107,101,46,106,115,92,34,41,59,92,110,118,97,114,32,104,116,109,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,116,109,108,46,106,115,92,34,41,59,92,110,118,97,114,32,99,101,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,111,109,45,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,111,109,45,99,114,101,97,116,101,46,106,115,92,34,41,59,92,110,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,112,114,111,99,101,115,115,32,61,32,103,108,111,98,97,108,46,112,114,111,99,101,115,115,59,92,110,118,97,114,32,115,101,116,84,97,115,107,32,61,32,103,108,111,98,97,108,46,115,101,116,73,109,109,101,100,105,97,116,101,59,92,110,118,97,114,32,99,108,101,97,114,84,97,115,107,32,61,32,103,108,111,98,97,108,46,99,108,101,97,114,73,109,109,101,100,105,97,116,101,59,92,110,118,97,114,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,32,61,32,103,108,111,98,97,108,46,77,101,115,115,97,103,101,67,104,97,110,110,101,108,59,92,110,118,97,114,32,68,105,115,112,97,116,99,104,32,61,32,103,108,111,98,97,108,46,68,105,115,112,97,116,99,104,59,92,110,118,97,114,32,99,111,117,110,116,101,114,32,61,32,48,59,92,110,118,97,114,32,113,117,101,117,101,32,61,32,123,125,59,92,110,118,97,114,32,79,78,82,69,65,68,89,83,84,65,84,69,67,72,65,78,71,69,32,61,32,39,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,39,59,92,110,118,97,114,32,100,101,102,101,114,44,32,99,104,97,110,110,101,108,44,32,112,111,114,116,59,92,110,118,97,114,32,114,117,110,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,105,100,32,61,32,43,116,104,105,115,59,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,112,114,111,116,111,116,121,112,101,45,98,117,105,108,116,105,110,115,92,110,32,32,105,102,32,40,113,117,101,117,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,105,100,41,41,32,123,92,110,32,32,32,32,118,97,114,32,102,110,32,61,32,113,117,101,117,101,91,105,100,93,59,92,110,32,32,32,32,100,101,108,101,116,101,32,113,117,101,117,101,91,105,100,93,59,92,110,32,32,32,32,102,110,40,41,59,92,110,32,32,125,92,110,125,59,92,110,118,97,114,32,108,105,115,116,101,110,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,41,32,123,92,110,32,32,114,117,110,46,99,97,108,108,40,101,118,101,110,116,46,100,97,116,97,41,59,92,110,125,59,92,110,47,47,32,78,111,100,101,46,106,115,32,48,46,57,43,32,38,32,73,69,49,48,43,32,104,97,115,32,115,101,116,73,109,109,101,100,105,97,116,101,44,32,111,116,104,101,114,119,105,115,101,58,92,110,105,102,32,40,33,115,101,116,84,97,115,107,32,124,124,32,33,99,108,101,97,114,84,97,115,107,41,32,123,92,110,32,32,115,101,116,84,97,115,107,32,61,32,102,117,110,99,116,105,111,110,32,115,101,116,73,109,109,101,100,105,97,116,101,40,102,110,41,32,123,92,110,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,91,93,59,92,110,32,32,32,32,118,97,114,32,105,32,61,32,49,59,92,110,32,32,32,32,119,104,105,108,101,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,105,41,32,97,114,103,115,46,112,117,115,104,40,97,114,103,117,109,101,110,116,115,91,105,43,43,93,41,59,92,110,32,32,32,32,113,117,101,117,101,91,43,43,99,111,117,110,116,101,114,93,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,110,101,119,45,102,117,110,99,92,110,32,32,32,32,32,32,105,110,118,111,107,101,40,116,121,112,101,111,102,32,102,110,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,102,110,32,58,32,70,117,110,99,116,105,111,110,40,102,110,41,44,32,97,114,103,115,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,100,101,102,101,114,40,99,111,117,110,116,101,114,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,117,110,116,101,114,59,92,110,32,32,125,59,92,110,32,32,99,108,101,97,114,84,97,115,107,32,61,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,73,109,109,101,100,105,97,116,101,40,105,100,41,32,123,92,110,32,32,32,32,100,101,108,101,116,101,32,113,117,101,117,101,91,105,100,93,59,92,110,32,32,125,59,92,110,32,32,47,47,32,78,111,100,101,46,106,115,32,48,46,56,45,92,110,32,32,105,102,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,102,46,106,115,92,34,41,40,112,114,111,99,101,115,115,41,32,61,61,32,39,112,114,111,99,101,115,115,39,41,32,123,92,110,32,32,32,32,100,101,102,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,105,100,41,32,123,92,110,32,32,32,32,32,32,112,114,111,99,101,115,115,46,110,101,120,116,84,105,99,107,40,99,116,120,40,114,117,110,44,32,105,100,44,32,49,41,41,59,92,110,32,32,32,32,125,59,92,110,32,32,47,47,32,83,112,104,101,114,101,32,40,74,83,32,103,97,109,101,32,101,110,103,105,110,101,41,32,68,105,115,112,97,116,99,104,32,65,80,73,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,68,105,115,112,97,116,99,104,32,38,38,32,68,105,115,112,97,116,99,104,46,110,111,119,41,32,123,92,110,32,32,32,32,100,101,102,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,105,100,41,32,123,92,110,32,32,32,32,32,32,68,105,115,112,97,116,99,104,46,110,111,119,40,99,116,120,40,114,117,110,44,32,105,100,44,32,49,41,41,59,92,110,32,32,32,32,125,59,92,110,32,32,47,47,32,66,114,111,119,115,101,114,115,32,119,105,116,104,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,44,32,105,110,99,108,117,100,101,115,32,87,101,98,87,111,114,107,101,114,115,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,77,101,115,115,97,103,101,67,104,97,110,110,101,108,41,32,123,92,110,32,32,32,32,99,104,97,110,110,101,108,32,61,32,110,101,119,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,40,41,59,92,110,32,32,32,32,112,111,114,116,32,61,32,99,104,97,110,110,101,108,46,112,111,114,116,50,59,92,110,32,32,32,32,99,104,97,110,110,101,108,46,112,111,114,116,49,46,111,110,109,101,115,115,97,103,101,32,61,32,108,105,115,116,101,110,101,114,59,92,110,32,32,32,32,100,101,102,101,114,32,61,32,99,116,120,40,112,111,114,116,46,112,111,115,116,77,101,115,115,97,103,101,44,32,112,111,114,116,44,32,49,41,59,92,110,32,32,47,47,32,66,114,111,119,115,101,114,115,32,119,105,116,104,32,112,111,115,116,77,101,115,115,97,103,101,44,32,115,107,105,112,32,87,101,98,87,111,114,107,101,114,115,92,110,32,32,47,47,32,73,69,56,32,104,97,115,32,112,111,115,116,77,101,115,115,97,103,101,44,32,98,117,116,32,105,116,39,115,32,115,121,110,99,32,38,32,116,121,112,101,111,102,32,105,116,115,32,112,111,115,116,77,101,115,115,97,103,101,32,105,115,32,39,111,98,106,101,99,116,39,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,103,108,111,98,97,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,32,38,38,32,116,121,112,101,111,102,32,112,111,115,116,77,101,115,115,97,103,101,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,33,103,108,111,98,97,108,46,105,109,112,111,114,116,83,99,114,105,112,116,115,41,32,123,92,110,32,32,32,32,100,101,102,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,105,100,41,32,123,92,110,32,32,32,32,32,32,103,108,111,98,97,108,46,112,111,115,116,77,101,115,115,97,103,101,40,105,100,32,43,32,39,39,44,32,39,42,39,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,103,108,111,98,97,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,109,101,115,115,97,103,101,39,44,32,108,105,115,116,101,110,101,114,44,32,102,97,108,115,101,41,59,92,110,32,32,47,47,32,73,69,56,45,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,79,78,82,69,65,68,89,83,84,65,84,69,67,72,65,78,71,69,32,105,110,32,99,101,108,40,39,115,99,114,105,112,116,39,41,41,32,123,92,110,32,32,32,32,100,101,102,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,105,100,41,32,123,92,110,32,32,32,32,32,32,104,116,109,108,46,97,112,112,101,110,100,67,104,105,108,100,40,99,101,108,40,39,115,99,114,105,112,116,39,41,41,91,79,78,82,69,65,68,89,83,84,65,84,69,67,72,65,78,71,69,93,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,104,116,109,108,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,114,117,110,46,99,97,108,108,40,105,100,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,59,92,110,32,32,47,47,32,82,101,115,116,32,111,108,100,32,98,114,111,119,115,101,114,115,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,100,101,102,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,105,100,41,32,123,92,110,32,32,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,99,116,120,40,114,117,110,44,32,105,100,44,32,49,41,44,32,48,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,125,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,123,92,110,32,32,115,101,116,58,32,115,101,116,84,97,115,107,44,92,110,32,32,99,108,101,97,114,58,32,99,108,101,97,114,84,97,115,107,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,97,115,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,116,111,73,110,116,101,103,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,116,101,103,101,114,46,106,115,92,34,41,59,92,110,118,97,114,32,109,97,120,32,61,32,77,97,116,104,46,109,97,120,59,92,110,118,97,114,32,109,105,110,32,61,32,77,97,116,104,46,109,105,110,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,105,110,100,101,120,32,61,32,116,111,73,110,116,101,103,101,114,40,105,110,100,101,120,41,59,92,110,32,32,114,101,116,117,114,110,32,105,110,100,101,120,32,60,32,48,32,63,32,109,97,120,40,105,110,100,101,120,32,43,32,108,101,110,103,116,104,44,32,48,41,32,58,32,109,105,110,40,105,110,100,101,120,44,32,108,101,110,103,116,104,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,104,116,116,112,115,58,47,47,116,99,51,57,46,103,105,116,104,117,98,46,105,111,47,101,99,109,97,50,54,50,47,35,115,101,99,45,116,111,105,110,100,101,120,92,110,118,97,114,32,116,111,73,110,116,101,103,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,116,101,103,101,114,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,105,102,32,40,105,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,114,101,116,117,114,110,32,48,59,92,110,32,32,118,97,114,32,110,117,109,98,101,114,32,61,32,116,111,73,110,116,101,103,101,114,40,105,116,41,59,92,110,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,116,111,76,101,110,103,116,104,40,110,117,109,98,101,114,41,59,92,110,32,32,105,102,32,40,110,117,109,98,101,114,32,33,61,61,32,108,101,110,103,116,104,41,32,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,39,87,114,111,110,103,32,108,101,110,103,116,104,33,39,41,59,92,110,32,32,114,101,116,117,114,110,32,108,101,110,103,116,104,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,116,101,103,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,116,101,103,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,47,47,32,55,46,49,46,52,32,84,111,73,110,116,101,103,101,114,92,110,118,97,114,32,99,101,105,108,32,61,32,77,97,116,104,46,99,101,105,108,59,92,110,118,97,114,32,102,108,111,111,114,32,61,32,77,97,116,104,46,102,108,111,111,114,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,78,97,78,40,105,116,32,61,32,43,105,116,41,32,63,32,48,32,58,32,40,105,116,32,62,32,48,32,63,32,102,108,111,111,114,32,58,32,99,101,105,108,41,40,105,116,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,116,101,103,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,111,98,106,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,111,98,106,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,116,111,32,105,110,100,101,120,101,100,32,111,98,106,101,99,116,44,32,116,111,79,98,106,101,99,116,32,119,105,116,104,32,102,97,108,108,98,97,99,107,32,102,111,114,32,110,111,110,45,97,114,114,97,121,45,108,105,107,101,32,69,83,51,32,115,116,114,105,110,103,115,92,110,118,97,114,32,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,100,101,102,105,110,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,102,105,110,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,102,105,110,101,100,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,73,79,98,106,101,99,116,40,100,101,102,105,110,101,100,40,105,116,41,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,111,98,106,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,55,46,49,46,49,53,32,84,111,76,101,110,103,116,104,92,110,118,97,114,32,116,111,73,110,116,101,103,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,116,101,103,101,114,46,106,115,92,34,41,59,92,110,118,97,114,32,109,105,110,32,61,32,77,97,116,104,46,109,105,110,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,116,32,62,32,48,32,63,32,109,105,110,40,116,111,73,110,116,101,103,101,114,40,105,116,41,44,32,48,120,49,102,102,102,102,102,102,102,102,102,102,102,102,102,41,32,58,32,48,59,32,47,47,32,112,111,119,40,50,44,32,53,51,41,32,45,32,49,32,61,61,32,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,55,46,49,46,49,51,32,84,111,79,98,106,101,99,116,40,97,114,103,117,109,101,110,116,41,92,110,118,97,114,32,100,101,102,105,110,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,102,105,110,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,102,105,110,101,100,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,40,100,101,102,105,110,101,100,40,105,116,41,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,55,46,49,46,49,32,84,111,80,114,105,109,105,116,105,118,101,40,105,110,112,117,116,32,91,44,32,80,114,101,102,101,114,114,101,100,84,121,112,101,93,41,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,47,32,105,110,115,116,101,97,100,32,111,102,32,116,104,101,32,69,83,54,32,115,112,101,99,32,118,101,114,115,105,111,110,44,32,119,101,32,100,105,100,110,39,116,32,105,109,112,108,101,109,101,110,116,32,64,64,116,111,80,114,105,109,105,116,105,118,101,32,99,97,115,101,92,110,47,47,32,97,110,100,32,116,104,101,32,115,101,99,111,110,100,32,97,114,103,117,109,101,110,116,32,45,32,102,108,97,103,32,45,32,112,114,101,102,101,114,114,101,100,32,116,121,112,101,32,105,115,32,97,32,115,116,114,105,110,103,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,44,32,83,41,32,123,92,110,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,105,116,41,41,32,114,101,116,117,114,110,32,105,116,59,92,110,32,32,118,97,114,32,102,110,44,32,118,97,108,59,92,110,32,32,105,102,32,40,83,32,38,38,32,116,121,112,101,111,102,32,40,102,110,32,61,32,105,116,46,116,111,83,116,114,105,110,103,41,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,33,105,115,79,98,106,101,99,116,40,118,97,108,32,61,32,102,110,46,99,97,108,108,40,105,116,41,41,41,32,114,101,116,117,114,110,32,118,97,108,59,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,40,102,110,32,61,32,105,116,46,118,97,108,117,101,79,102,41,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,33,105,115,79,98,106,101,99,116,40,118,97,108,32,61,32,102,110,46,99,97,108,108,40,105,116,41,41,41,32,114,101,116,117,114,110,32,118,97,108,59,92,110,32,32,105,102,32,40,33,83,32,38,38,32,116,121,112,101,111,102,32,40,102,110,32,61,32,105,116,46,116,111,83,116,114,105,110,103,41,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,33,105,115,79,98,106,101,99,116,40,118,97,108,32,61,32,102,110,46,99,97,108,108,40,105,116,41,41,41,32,114,101,116,117,114,110,32,118,97,108,59,92,110,32,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,92,34,67,97,110,39,116,32,99,111,110,118,101,114,116,32,111,98,106,101,99,116,32,116,111,32,112,114,105,109,105,116,105,118,101,32,118,97,108,117,101,92,34,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,105,102,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,41,32,123,92,110,32,32,118,97,114,32,76,73,66,82,65,82,89,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,108,105,98,114,97,114,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,108,105,98,114,97,114,121,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,102,97,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,36,116,121,112,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,36,98,117,102,102,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,45,98,117,102,102,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,98,117,102,102,101,114,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,99,116,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,116,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,97,110,73,110,115,116,97,110,99,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,105,110,115,116,97,110,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,105,110,115,116,97,110,99,101,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,112,114,111,112,101,114,116,121,68,101,115,99,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,104,105,100,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,114,101,100,101,102,105,110,101,65,108,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,45,97,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,45,97,108,108,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,116,111,73,110,116,101,103,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,116,101,103,101,114,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,116,111,73,110,100,101,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,100,101,120,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,116,111,80,114,105,109,105,116,105,118,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,112,114,105,109,105,116,105,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,104,97,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,97,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,99,108,97,115,115,111,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,108,97,115,115,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,108,97,115,115,111,102,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,116,111,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,105,115,65,114,114,97,121,73,116,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,97,114,114,97,121,45,105,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,97,114,114,97,121,45,105,116,101,114,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,99,114,101,97,116,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,112,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,112,111,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,103,79,80,78,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,110,46,106,115,92,34,41,46,102,41,59,92,110,32,32,118,97,114,32,103,101,116,73,116,101,114,70,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,114,101,46,103,101,116,45,105,116,101,114,97,116,111,114,45,109,101,116,104,111,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,99,111,114,101,46,103,101,116,45,105,116,101,114,97,116,111,114,45,109,101,116,104,111,100,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,117,105,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,117,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,105,100,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,119,107,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,99,114,101,97,116,101,65,114,114,97,121,77,101,116,104,111,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,99,114,101,97,116,101,65,114,114,97,121,73,110,99,108,117,100,101,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,105,110,99,108,117,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,105,110,99,108,117,100,101,115,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,115,112,101,99,105,101,115,67,111,110,115,116,114,117,99,116,111,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,65,114,114,97,121,73,116,101,114,97,116,111,114,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,115,54,46,97,114,114,97,121,46,105,116,101,114,97,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,116,101,114,97,116,111,114,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,73,116,101,114,97,116,111,114,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,97,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,97,116,111,114,115,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,36,105,116,101,114,68,101,116,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,45,100,101,116,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,100,101,116,101,99,116,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,115,101,116,83,112,101,99,105,101,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,101,116,45,115,112,101,99,105,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,115,112,101,99,105,101,115,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,97,114,114,97,121,70,105,108,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,102,105,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,102,105,108,108,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,97,114,114,97,121,67,111,112,121,87,105,116,104,105,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,99,111,112,121,45,119,105,116,104,105,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,99,111,112,121,45,119,105,116,104,105,110,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,36,68,80,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,36,71,79,80,68,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,100,46,106,115,92,34,41,59,92,110,32,32,118,97,114,32,100,80,32,61,32,36,68,80,46,102,59,92,110,32,32,118,97,114,32,103,79,80,68,32,61,32,36,71,79,80,68,46,102,59,92,110,32,32,118,97,114,32,82,97,110,103,101,69,114,114,111,114,32,61,32,103,108,111,98,97,108,46,82,97,110,103,101,69,114,114,111,114,59,92,110,32,32,118,97,114,32,84,121,112,101,69,114,114,111,114,32,61,32,103,108,111,98,97,108,46,84,121,112,101,69,114,114,111,114,59,92,110,32,32,118,97,114,32,85,105,110,116,56,65,114,114,97,121,32,61,32,103,108,111,98,97,108,46,85,105,110,116,56,65,114,114,97,121,59,92,110,32,32,118,97,114,32,65,82,82,65,89,95,66,85,70,70,69,82,32,61,32,39,65,114,114,97,121,66,117,102,102,101,114,39,59,92,110,32,32,118,97,114,32,83,72,65,82,69,68,95,66,85,70,70,69,82,32,61,32,39,83,104,97,114,101,100,39,32,43,32,65,82,82,65,89,95,66,85,70,70,69,82,59,92,110,32,32,118,97,114,32,66,89,84,69,83,95,80,69,82,95,69,76,69,77,69,78,84,32,61,32,39,66,89,84,69,83,95,80,69,82,95,69,76,69,77,69,78,84,39,59,92,110,32,32,118,97,114,32,80,82,79,84,79,84,89,80,69,32,61,32,39,112,114,111,116,111,116,121,112,101,39,59,92,110,32,32,118,97,114,32,65,114,114,97,121,80,114,111,116,111,32,61,32,65,114,114,97,121,91,80,82,79,84,79,84,89,80,69,93,59,92,110,32,32,118,97,114,32,36,65,114,114,97,121,66,117,102,102,101,114,32,61,32,36,98,117,102,102,101,114,46,65,114,114,97,121,66,117,102,102,101,114,59,92,110,32,32,118,97,114,32,36,68,97,116,97,86,105,101,119,32,61,32,36,98,117,102,102,101,114,46,68,97,116,97,86,105,101,119,59,92,110,32,32,118,97,114,32,97,114,114,97,121,70,111,114,69,97,99,104,32,61,32,99,114,101,97,116,101,65,114,114,97,121,77,101,116,104,111,100,40,48,41,59,92,110,32,32,118,97,114,32,97,114,114,97,121,70,105,108,116,101,114,32,61,32,99,114,101,97,116,101,65,114,114,97,121,77,101,116,104,111,100,40,50,41,59,92,110,32,32,118,97,114,32,97,114,114,97,121,83,111,109,101,32,61,32,99,114,101,97,116,101,65,114,114,97,121,77,101,116,104,111,100,40,51,41,59,92,110,32,32,118,97,114,32,97,114,114,97,121,69,118,101,114,121,32,61,32,99,114,101,97,116,101,65,114,114,97,121,77,101,116,104,111,100,40,52,41,59,92,110,32,32,118,97,114,32,97,114,114,97,121,70,105,110,100,32,61,32,99,114,101,97,116,101,65,114,114,97,121,77,101,116,104,111,100,40,53,41,59,92,110,32,32,118,97,114,32,97,114,114,97,121,70,105,110,100,73,110,100,101,120,32,61,32,99,114,101,97,116,101,65,114,114,97,121,77,101,116,104,111,100,40,54,41,59,92,110,32,32,118,97,114,32,97,114,114,97,121,73,110,99,108,117,100,101,115,32,61,32,99,114,101,97,116,101,65,114,114,97,121,73,110,99,108,117,100,101,115,40,116,114,117,101,41,59,92,110,32,32,118,97,114,32,97,114,114,97,121,73,110,100,101,120,79,102,32,61,32,99,114,101,97,116,101,65,114,114,97,121,73,110,99,108,117,100,101,115,40,102,97,108,115,101,41,59,92,110,32,32,118,97,114,32,97,114,114,97,121,86,97,108,117,101,115,32,61,32,65,114,114,97,121,73,116,101,114,97,116,111,114,115,46,118,97,108,117,101,115,59,92,110,32,32,118,97,114,32,97,114,114,97,121,75,101,121,115,32,61,32,65,114,114,97,121,73,116,101,114,97,116,111,114,115,46,107,101,121,115,59,92,110,32,32,118,97,114,32,97,114,114,97,121,69,110,116,114,105,101,115,32,61,32,65,114,114,97,121,73,116,101,114,97,116,111,114,115,46,101,110,116,114,105,101,115,59,92,110,32,32,118,97,114,32,97,114,114,97,121,76,97,115,116,73,110,100,101,120,79,102,32,61,32,65,114,114,97,121,80,114,111,116,111,46,108,97,115,116,73,110,100,101,120,79,102,59,92,110,32,32,118,97,114,32,97,114,114,97,121,82,101,100,117,99,101,32,61,32,65,114,114,97,121,80,114,111,116,111,46,114,101,100,117,99,101,59,92,110,32,32,118,97,114,32,97,114,114,97,121,82,101,100,117,99,101,82,105,103,104,116,32,61,32,65,114,114,97,121,80,114,111,116,111,46,114,101,100,117,99,101,82,105,103,104,116,59,92,110,32,32,118,97,114,32,97,114,114,97,121,74,111,105,110,32,61,32,65,114,114,97,121,80,114,111,116,111,46,106,111,105,110,59,92,110,32,32,118,97,114,32,97,114,114,97,121,83,111,114,116,32,61,32,65,114,114,97,121,80,114,111,116,111,46,115,111,114,116,59,92,110,32,32,118,97,114,32,97,114,114,97,121,83,108,105,99,101,32,61,32,65,114,114,97,121,80,114,111,116,111,46,115,108,105,99,101,59,92,110,32,32,118,97,114,32,97,114,114,97,121,84,111,83,116,114,105,110,103,32,61,32,65,114,114,97,121,80,114,111,116,111,46,116,111,83,116,114,105,110,103,59,92,110,32,32,118,97,114,32,97,114,114,97,121,84,111,76,111,99,97,108,101,83,116,114,105,110,103,32,61,32,65,114,114,97,121,80,114,111,116,111,46,116,111,76,111,99,97,108,101,83,116,114,105,110,103,59,92,110,32,32,118,97,114,32,73,84,69,82,65,84,79,82,32,61,32,119,107,115,40,39,105,116,101,114,97,116,111,114,39,41,59,92,110,32,32,118,97,114,32,84,65,71,32,61,32,119,107,115,40,39,116,111,83,116,114,105,110,103,84,97,103,39,41,59,92,110,32,32,118,97,114,32,84,89,80,69,68,95,67,79,78,83,84,82,85,67,84,79,82,32,61,32,117,105,100,40,39,116,121,112,101,100,95,99,111,110,115,116,114,117,99,116,111,114,39,41,59,92,110,32,32,118,97,114,32,68,69,70,95,67,79,78,83,84,82,85,67,84,79,82,32,61,32,117,105,100,40,39,100,101,102,95,99,111,110,115,116,114,117,99,116,111,114,39,41,59,92,110,32,32,118,97,114,32,65,76,76,95,67,79,78,83,84,82,85,67,84,79,82,83,32,61,32,36,116,121,112,101,100,46,67,79,78,83,84,82,59,92,110,32,32,118,97,114,32,84,89,80,69,68,95,65,82,82,65,89,32,61,32,36,116,121,112,101,100,46,84,89,80,69,68,59,92,110,32,32,118,97,114,32,86,73,69,87,32,61,32,36,116,121,112,101,100,46,86,73,69,87,59,92,110,32,32,118,97,114,32,87,82,79,78,71,95,76,69,78,71,84,72,32,61,32,39,87,114,111,110,103,32,108,101,110,103,116,104,33,39,59,92,110,92,110,32,32,118,97,114,32,36,109,97,112,32,61,32,99,114,101,97,116,101,65,114,114,97,121,77,101,116,104,111,100,40,49,44,32,102,117,110,99,116,105,111,110,32,40,79,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,108,108,111,99,97,116,101,40,115,112,101,99,105,101,115,67,111,110,115,116,114,117,99,116,111,114,40,79,44,32,79,91,68,69,70,95,67,79,78,83,84,82,85,67,84,79,82,93,41,44,32,108,101,110,103,116,104,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,118,97,114,32,76,73,84,84,76,69,95,69,78,68,73,65,78,32,61,32,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,117,110,100,101,102,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,110,101,119,32,85,105,110,116,49,54,65,114,114,97,121,40,91,49,93,41,46,98,117,102,102,101,114,41,91,48,93,32,61,61,61,32,49,59,92,110,32,32,125,41,59,92,110,92,110,32,32,118,97,114,32,70,79,82,67,69,68,95,83,69,84,32,61,32,33,33,85,105,110,116,56,65,114,114,97,121,32,38,38,32,33,33,85,105,110,116,56,65,114,114,97,121,91,80,82,79,84,79,84,89,80,69,93,46,115,101,116,32,38,38,32,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,49,41,46,115,101,116,40,123,125,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,118,97,114,32,116,111,79,102,102,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,44,32,66,89,84,69,83,41,32,123,92,110,32,32,32,32,118,97,114,32,111,102,102,115,101,116,32,61,32,116,111,73,110,116,101,103,101,114,40,105,116,41,59,92,110,32,32,32,32,105,102,32,40,111,102,102,115,101,116,32,60,32,48,32,124,124,32,111,102,102,115,101,116,32,37,32,66,89,84,69,83,41,32,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,39,87,114,111,110,103,32,111,102,102,115,101,116,33,39,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,111,102,102,115,101,116,59,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,118,97,108,105,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,105,116,41,32,38,38,32,84,89,80,69,68,95,65,82,82,65,89,32,105,110,32,105,116,41,32,114,101,116,117,114,110,32,105,116,59,92,110,32,32,32,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,105,116,32,43,32,39,32,105,115,32,110,111,116,32,97,32,116,121,112,101,100,32,97,114,114,97,121,33,39,41,59,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,97,108,108,111,99,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,40,67,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,105,115,79,98,106,101,99,116,40,67,41,32,38,38,32,84,89,80,69,68,95,67,79,78,83,84,82,85,67,84,79,82,32,105,110,32,67,41,41,32,123,92,110,32,32,32,32,32,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,39,73,116,32,105,115,32,110,111,116,32,97,32,116,121,112,101,100,32,97,114,114,97,121,32,99,111,110,115,116,114,117,99,116,111,114,33,39,41,59,92,110,32,32,32,32,125,32,114,101,116,117,114,110,32,110,101,119,32,67,40,108,101,110,103,116,104,41,59,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,115,112,101,99,105,101,115,70,114,111,109,76,105,115,116,32,61,32,102,117,110,99,116,105,111,110,32,40,79,44,32,108,105,115,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,114,111,109,76,105,115,116,40,115,112,101,99,105,101,115,67,111,110,115,116,114,117,99,116,111,114,40,79,44,32,79,91,68,69,70,95,67,79,78,83,84,82,85,67,84,79,82,93,41,44,32,108,105,115,116,41,59,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,102,114,111,109,76,105,115,116,32,61,32,102,117,110,99,116,105,111,110,32,40,67,44,32,108,105,115,116,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,108,105,115,116,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,97,108,108,111,99,97,116,101,40,67,44,32,108,101,110,103,116,104,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,32,62,32,105,110,100,101,120,41,32,114,101,115,117,108,116,91,105,110,100,101,120,93,32,61,32,108,105,115,116,91,105,110,100,101,120,43,43,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,97,100,100,71,101,116,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,44,32,107,101,121,44,32,105,110,116,101,114,110,97,108,41,32,123,92,110,32,32,32,32,100,80,40,105,116,44,32,107,101,121,44,32,123,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,100,91,105,110,116,101,114,110,97,108,93,59,32,125,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,36,102,114,111,109,32,61,32,102,117,110,99,116,105,111,110,32,102,114,111,109,40,115,111,117,114,99,101,32,47,42,32,44,32,109,97,112,102,110,44,32,116,104,105,115,65,114,103,32,42,47,41,32,123,92,110,32,32,32,32,118,97,114,32,79,32,61,32,116,111,79,98,106,101,99,116,40,115,111,117,114,99,101,41,59,92,110,32,32,32,32,118,97,114,32,97,76,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,109,97,112,102,110,32,61,32,97,76,101,110,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,118,97,114,32,109,97,112,112,105,110,103,32,61,32,109,97,112,102,110,32,33,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,118,97,114,32,105,116,101,114,70,110,32,61,32,103,101,116,73,116,101,114,70,110,40,79,41,59,92,110,32,32,32,32,118,97,114,32,105,44,32,108,101,110,103,116,104,44,32,118,97,108,117,101,115,44,32,114,101,115,117,108,116,44,32,115,116,101,112,44,32,105,116,101,114,97,116,111,114,59,92,110,32,32,32,32,105,102,32,40,105,116,101,114,70,110,32,33,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,33,105,115,65,114,114,97,121,73,116,101,114,40,105,116,101,114,70,110,41,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,105,116,101,114,97,116,111,114,32,61,32,105,116,101,114,70,110,46,99,97,108,108,40,79,41,44,32,118,97,108,117,101,115,32,61,32,91,93,44,32,105,32,61,32,48,59,32,33,40,115,116,101,112,32,61,32,105,116,101,114,97,116,111,114,46,110,101,120,116,40,41,41,46,100,111,110,101,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,115,46,112,117,115,104,40,115,116,101,112,46,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,32,79,32,61,32,118,97,108,117,101,115,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,109,97,112,112,105,110,103,32,38,38,32,97,76,101,110,32,62,32,50,41,32,109,97,112,102,110,32,61,32,99,116,120,40,109,97,112,102,110,44,32,97,114,103,117,109,101,110,116,115,91,50,93,44,32,50,41,59,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,44,32,108,101,110,103,116,104,32,61,32,116,111,76,101,110,103,116,104,40,79,46,108,101,110,103,116,104,41,44,32,114,101,115,117,108,116,32,61,32,97,108,108,111,99,97,116,101,40,116,104,105,115,44,32,108,101,110,103,116,104,41,59,32,108,101,110,103,116,104,32,62,32,105,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,114,101,115,117,108,116,91,105,93,32,61,32,109,97,112,112,105,110,103,32,63,32,109,97,112,102,110,40,79,91,105,93,44,32,105,41,32,58,32,79,91,105,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,36,111,102,32,61,32,102,117,110,99,116,105,111,110,32,111,102,40,47,42,32,46,46,46,105,116,101,109,115,32,42,47,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,97,108,108,111,99,97,116,101,40,116,104,105,115,44,32,108,101,110,103,116,104,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,32,62,32,105,110,100,101,120,41,32,114,101,115,117,108,116,91,105,110,100,101,120,93,32,61,32,97,114,103,117,109,101,110,116,115,91,105,110,100,101,120,43,43,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,59,92,110,92,110,32,32,47,47,32,105,79,83,32,83,97,102,97,114,105,32,54,46,120,32,102,97,105,108,115,32,104,101,114,101,92,110,32,32,118,97,114,32,84,79,95,76,79,67,65,76,69,95,66,85,71,32,61,32,33,33,85,105,110,116,56,65,114,114,97,121,32,38,38,32,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,97,114,114,97,121,84,111,76,111,99,97,108,101,83,116,114,105,110,103,46,99,97,108,108,40,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,49,41,41,59,32,125,41,59,92,110,92,110,32,32,118,97,114,32,36,116,111,76,111,99,97,108,101,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,116,111,76,111,99,97,108,101,83,116,114,105,110,103,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,84,111,76,111,99,97,108,101,83,116,114,105,110,103,46,97,112,112,108,121,40,84,79,95,76,79,67,65,76,69,95,66,85,71,32,63,32,97,114,114,97,121,83,108,105,99,101,46,99,97,108,108,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,41,32,58,32,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,112,114,111,116,111,32,61,32,123,92,110,32,32,32,32,99,111,112,121,87,105,116,104,105,110,58,32,102,117,110,99,116,105,111,110,32,99,111,112,121,87,105,116,104,105,110,40,116,97,114,103,101,116,44,32,115,116,97,114,116,32,47,42,32,44,32,101,110,100,32,42,47,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,67,111,112,121,87,105,116,104,105,110,46,99,97,108,108,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,116,97,114,103,101,116,44,32,115,116,97,114,116,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,118,101,114,121,58,32,102,117,110,99,116,105,111,110,32,101,118,101,114,121,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,116,104,105,115,65,114,103,32,42,47,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,69,118,101,114,121,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,99,97,108,108,98,97,99,107,102,110,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,105,108,108,58,32,102,117,110,99,116,105,111,110,32,102,105,108,108,40,118,97,108,117,101,32,47,42,32,44,32,115,116,97,114,116,44,32,101,110,100,32,42,47,41,32,123,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,117,110,117,115,101,100,45,118,97,114,115,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,70,105,108,108,46,97,112,112,108,121,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,105,108,116,101,114,58,32,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,116,104,105,115,65,114,103,32,42,47,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,112,101,99,105,101,115,70,114,111,109,76,105,115,116,40,116,104,105,115,44,32,97,114,114,97,121,70,105,108,116,101,114,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,99,97,108,108,98,97,99,107,102,110,44,92,110,32,32,32,32,32,32,32,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,105,110,100,58,32,102,117,110,99,116,105,111,110,32,102,105,110,100,40,112,114,101,100,105,99,97,116,101,32,47,42,32,44,32,116,104,105,115,65,114,103,32,42,47,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,70,105,110,100,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,112,114,101,100,105,99,97,116,101,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,105,110,100,73,110,100,101,120,58,32,102,117,110,99,116,105,111,110,32,102,105,110,100,73,110,100,101,120,40,112,114,101,100,105,99,97,116,101,32,47,42,32,44,32,116,104,105,115,65,114,103,32,42,47,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,70,105,110,100,73,110,100,101,120,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,112,114,101,100,105,99,97,116,101,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,114,69,97,99,104,58,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,116,104,105,115,65,114,103,32,42,47,41,32,123,92,110,32,32,32,32,32,32,97,114,114,97,121,70,111,114,69,97,99,104,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,99,97,108,108,98,97,99,107,102,110,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,110,100,101,120,79,102,58,32,102,117,110,99,116,105,111,110,32,105,110,100,101,120,79,102,40,115,101,97,114,99,104,69,108,101,109,101,110,116,32,47,42,32,44,32,102,114,111,109,73,110,100,101,120,32,42,47,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,73,110,100,101,120,79,102,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,115,101,97,114,99,104,69,108,101,109,101,110,116,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,110,99,108,117,100,101,115,58,32,102,117,110,99,116,105,111,110,32,105,110,99,108,117,100,101,115,40,115,101,97,114,99,104,69,108,101,109,101,110,116,32,47,42,32,44,32,102,114,111,109,73,110,100,101,120,32,42,47,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,73,110,99,108,117,100,101,115,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,115,101,97,114,99,104,69,108,101,109,101,110,116,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,106,111,105,110,58,32,102,117,110,99,116,105,111,110,32,106,111,105,110,40,115,101,112,97,114,97,116,111,114,41,32,123,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,117,110,117,115,101,100,45,118,97,114,115,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,74,111,105,110,46,97,112,112,108,121,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,97,115,116,73,110,100,101,120,79,102,58,32,102,117,110,99,116,105,111,110,32,108,97,115,116,73,110,100,101,120,79,102,40,115,101,97,114,99,104,69,108,101,109,101,110,116,32,47,42,32,44,32,102,114,111,109,73,110,100,101,120,32,42,47,41,32,123,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,117,110,117,115,101,100,45,118,97,114,115,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,76,97,115,116,73,110,100,101,120,79,102,46,97,112,112,108,121,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,97,112,58,32,102,117,110,99,116,105,111,110,32,109,97,112,40,109,97,112,102,110,32,47,42,32,44,32,116,104,105,115,65,114,103,32,42,47,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,36,109,97,112,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,109,97,112,102,110,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,100,117,99,101,58,32,102,117,110,99,116,105,111,110,32,114,101,100,117,99,101,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,105,110,105,116,105,97,108,86,97,108,117,101,32,42,47,41,32,123,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,117,110,117,115,101,100,45,118,97,114,115,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,82,101,100,117,99,101,46,97,112,112,108,121,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,100,117,99,101,82,105,103,104,116,58,32,102,117,110,99,116,105,111,110,32,114,101,100,117,99,101,82,105,103,104,116,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,105,110,105,116,105,97,108,86,97,108,117,101,32,42,47,41,32,123,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,117,110,117,115,101,100,45,118,97,114,115,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,82,101,100,117,99,101,82,105,103,104,116,46,97,112,112,108,121,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,118,101,114,115,101,58,32,102,117,110,99,116,105,111,110,32,114,101,118,101,114,115,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,104,97,116,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,118,97,108,105,100,97,116,101,40,116,104,97,116,41,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,118,97,114,32,109,105,100,100,108,101,32,61,32,77,97,116,104,46,102,108,111,111,114,40,108,101,110,103,116,104,32,47,32,50,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,105,110,100,101,120,32,60,32,109,105,100,100,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,116,104,97,116,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,116,104,97,116,91,105,110,100,101,120,43,43,93,32,61,32,116,104,97,116,91,45,45,108,101,110,103,116,104,93,59,92,110,32,32,32,32,32,32,32,32,116,104,97,116,91,108,101,110,103,116,104,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,32,114,101,116,117,114,110,32,116,104,97,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,111,109,101,58,32,102,117,110,99,116,105,111,110,32,115,111,109,101,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,116,104,105,115,65,114,103,32,42,47,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,83,111,109,101,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,99,97,108,108,98,97,99,107,102,110,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,111,114,116,58,32,102,117,110,99,116,105,111,110,32,115,111,114,116,40,99,111,109,112,97,114,101,102,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,83,111,114,116,46,99,97,108,108,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,99,111,109,112,97,114,101,102,110,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,117,98,97,114,114,97,121,58,32,102,117,110,99,116,105,111,110,32,115,117,98,97,114,114,97,121,40,98,101,103,105,110,44,32,101,110,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,79,32,61,32,118,97,108,105,100,97,116,101,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,79,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,118,97,114,32,36,98,101,103,105,110,32,61,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,40,98,101,103,105,110,44,32,108,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,40,115,112,101,99,105,101,115,67,111,110,115,116,114,117,99,116,111,114,40,79,44,32,79,91,68,69,70,95,67,79,78,83,84,82,85,67,84,79,82,93,41,41,40,92,110,32,32,32,32,32,32,32,32,79,46,98,117,102,102,101,114,44,92,110,32,32,32,32,32,32,32,32,79,46,98,121,116,101,79,102,102,115,101,116,32,43,32,36,98,101,103,105,110,32,42,32,79,46,66,89,84,69,83,95,80,69,82,95,69,76,69,77,69,78,84,44,92,110,32,32,32,32,32,32,32,32,116,111,76,101,110,103,116,104,40,40,101,110,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,108,101,110,103,116,104,32,58,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,40,101,110,100,44,32,108,101,110,103,116,104,41,41,32,45,32,36,98,101,103,105,110,41,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,36,115,108,105,99,101,32,61,32,102,117,110,99,116,105,111,110,32,115,108,105,99,101,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,112,101,99,105,101,115,70,114,111,109,76,105,115,116,40,116,104,105,115,44,32,97,114,114,97,121,83,108,105,99,101,46,99,97,108,108,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,44,32,115,116,97,114,116,44,32,101,110,100,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,36,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,115,101,116,40,97,114,114,97,121,76,105,107,101,32,47,42,32,44,32,111,102,102,115,101,116,32,42,47,41,32,123,92,110,32,32,32,32,118,97,108,105,100,97,116,101,40,116,104,105,115,41,59,92,110,32,32,32,32,118,97,114,32,111,102,102,115,101,116,32,61,32,116,111,79,102,102,115,101,116,40,97,114,103,117,109,101,110,116,115,91,49,93,44,32,49,41,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,116,104,105,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,115,114,99,32,61,32,116,111,79,98,106,101,99,116,40,97,114,114,97,121,76,105,107,101,41,59,92,110,32,32,32,32,118,97,114,32,108,101,110,32,61,32,116,111,76,101,110,103,116,104,40,115,114,99,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,105,102,32,40,108,101,110,32,43,32,111,102,102,115,101,116,32,62,32,108,101,110,103,116,104,41,32,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,87,82,79,78,71,95,76,69,78,71,84,72,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,105,110,100,101,120,32,60,32,108,101,110,41,32,116,104,105,115,91,111,102,102,115,101,116,32,43,32,105,110,100,101,120,93,32,61,32,115,114,99,91,105,110,100,101,120,43,43,93,59,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,36,105,116,101,114,97,116,111,114,115,32,61,32,123,92,110,32,32,32,32,101,110,116,114,105,101,115,58,32,102,117,110,99,116,105,111,110,32,101,110,116,114,105,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,69,110,116,114,105,101,115,46,99,97,108,108,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,107,101,121,115,58,32,102,117,110,99,116,105,111,110,32,107,101,121,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,75,101,121,115,46,99,97,108,108,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,118,97,108,117,101,115,58,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,86,97,108,117,101,115,46,99,97,108,108,40,118,97,108,105,100,97,116,101,40,116,104,105,115,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,105,115,84,65,73,110,100,101,120,32,61,32,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,40,116,97,114,103,101,116,41,92,110,32,32,32,32,32,32,38,38,32,116,97,114,103,101,116,91,84,89,80,69,68,95,65,82,82,65,89,93,92,110,32,32,32,32,32,32,38,38,32,116,121,112,101,111,102,32,107,101,121,32,33,61,32,39,115,121,109,98,111,108,39,92,110,32,32,32,32,32,32,38,38,32,107,101,121,32,105,110,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,38,38,32,83,116,114,105,110,103,40,43,107,101,121,41,32,61,61,32,83,116,114,105,110,103,40,107,101,121,41,59,92,110,32,32,125,59,92,110,32,32,118,97,114,32,36,103,101,116,68,101,115,99,32,61,32,102,117,110,99,116,105,111,110,32,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,116,97,114,103,101,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,84,65,73,110,100,101,120,40,116,97,114,103,101,116,44,32,107,101,121,32,61,32,116,111,80,114,105,109,105,116,105,118,101,40,107,101,121,44,32,116,114,117,101,41,41,92,110,32,32,32,32,32,32,63,32,112,114,111,112,101,114,116,121,68,101,115,99,40,50,44,32,116,97,114,103,101,116,91,107,101,121,93,41,92,110,32,32,32,32,32,32,58,32,103,79,80,68,40,116,97,114,103,101,116,44,32,107,101,121,41,59,92,110,32,32,125,59,92,110,32,32,118,97,114,32,36,115,101,116,68,101,115,99,32,61,32,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,100,101,115,99,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,84,65,73,110,100,101,120,40,116,97,114,103,101,116,44,32,107,101,121,32,61,32,116,111,80,114,105,109,105,116,105,118,101,40,107,101,121,44,32,116,114,117,101,41,41,92,110,32,32,32,32,32,32,38,38,32,105,115,79,98,106,101,99,116,40,100,101,115,99,41,92,110,32,32,32,32,32,32,38,38,32,104,97,115,40,100,101,115,99,44,32,39,118,97,108,117,101,39,41,92,110,32,32,32,32,32,32,38,38,32,33,104,97,115,40,100,101,115,99,44,32,39,103,101,116,39,41,92,110,32,32,32,32,32,32,38,38,32,33,104,97,115,40,100,101,115,99,44,32,39,115,101,116,39,41,92,110,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,97,100,100,32,118,97,108,105,100,97,116,105,111,110,32,100,101,115,99,114,105,112,116,111,114,32,119,47,111,32,99,97,108,108,105,110,103,32,97,99,99,101,115,115,111,114,115,92,110,32,32,32,32,32,32,38,38,32,33,100,101,115,99,46,99,111,110,102,105,103,117,114,97,98,108,101,92,110,32,32,32,32,32,32,38,38,32,40,33,104,97,115,40,100,101,115,99,44,32,39,119,114,105,116,97,98,108,101,39,41,32,124,124,32,100,101,115,99,46,119,114,105,116,97,98,108,101,41,92,110,32,32,32,32,32,32,38,38,32,40,33,104,97,115,40,100,101,115,99,44,32,39,101,110,117,109,101,114,97,98,108,101,39,41,32,124,124,32,100,101,115,99,46,101,110,117,109,101,114,97,98,108,101,41,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,116,97,114,103,101,116,91,107,101,121,93,32,61,32,100,101,115,99,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,92,110,32,32,32,32,125,32,114,101,116,117,114,110,32,100,80,40,116,97,114,103,101,116,44,32,107,101,121,44,32,100,101,115,99,41,59,92,110,32,32,125,59,92,110,92,110,32,32,105,102,32,40,33,65,76,76,95,67,79,78,83,84,82,85,67,84,79,82,83,41,32,123,92,110,32,32,32,32,36,71,79,80,68,46,102,32,61,32,36,103,101,116,68,101,115,99,59,92,110,32,32,32,32,36,68,80,46,102,32,61,32,36,115,101,116,68,101,115,99,59,92,110,32,32,125,92,110,92,110,32,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,65,76,76,95,67,79,78,83,84,82,85,67,84,79,82,83,44,32,39,79,98,106,101,99,116,39,44,32,123,92,110,32,32,32,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,58,32,36,103,101,116,68,101,115,99,44,92,110,32,32,32,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,58,32,36,115,101,116,68,101,115,99,92,110,32,32,125,41,59,92,110,92,110,32,32,105,102,32,40,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,97,114,114,97,121,84,111,83,116,114,105,110,103,46,99,97,108,108,40,123,125,41,59,32,125,41,41,32,123,92,110,32,32,32,32,97,114,114,97,121,84,111,83,116,114,105,110,103,32,61,32,97,114,114,97,121,84,111,76,111,99,97,108,101,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,116,111,83,116,114,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,74,111,105,110,46,99,97,108,108,40,116,104,105,115,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,36,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,36,32,61,32,114,101,100,101,102,105,110,101,65,108,108,40,123,125,44,32,112,114,111,116,111,41,59,92,110,32,32,114,101,100,101,102,105,110,101,65,108,108,40,36,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,36,44,32,36,105,116,101,114,97,116,111,114,115,41,59,92,110,32,32,104,105,100,101,40,36,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,36,44,32,73,84,69,82,65,84,79,82,44,32,36,105,116,101,114,97,116,111,114,115,46,118,97,108,117,101,115,41,59,92,110,32,32,114,101,100,101,102,105,110,101,65,108,108,40,36,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,36,44,32,123,92,110,32,32,32,32,115,108,105,99,101,58,32,36,115,108,105,99,101,44,92,110,32,32,32,32,115,101,116,58,32,36,115,101,116,44,92,110,32,32,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,47,42,32,110,111,111,112,32,42,47,32,125,44,92,110,32,32,32,32,116,111,83,116,114,105,110,103,58,32,97,114,114,97,121,84,111,83,116,114,105,110,103,44,92,110,32,32,32,32,116,111,76,111,99,97,108,101,83,116,114,105,110,103,58,32,36,116,111,76,111,99,97,108,101,83,116,114,105,110,103,92,110,32,32,125,41,59,92,110,32,32,97,100,100,71,101,116,116,101,114,40,36,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,36,44,32,39,98,117,102,102,101,114,39,44,32,39,98,39,41,59,92,110,32,32,97,100,100,71,101,116,116,101,114,40,36,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,36,44,32,39,98,121,116,101,79,102,102,115,101,116,39,44,32,39,111,39,41,59,92,110,32,32,97,100,100,71,101,116,116,101,114,40,36,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,36,44,32,39,98,121,116,101,76,101,110,103,116,104,39,44,32,39,108,39,41,59,92,110,32,32,97,100,100,71,101,116,116,101,114,40,36,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,36,44,32,39,108,101,110,103,116,104,39,44,32,39,101,39,41,59,92,110,32,32,100,80,40,36,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,36,44,32,84,65,71,44,32,123,92,110,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,91,84,89,80,69,68,95,65,82,82,65,89,93,59,32,125,92,110,32,32,125,41,59,92,110,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,109,97,120,45,115,116,97,116,101,109,101,110,116,115,92,110,32,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,75,69,89,44,32,66,89,84,69,83,44,32,119,114,97,112,112,101,114,44,32,67,76,65,77,80,69,68,41,32,123,92,110,32,32,32,32,67,76,65,77,80,69,68,32,61,32,33,33,67,76,65,77,80,69,68,59,92,110,32,32,32,32,118,97,114,32,78,65,77,69,32,61,32,75,69,89,32,43,32,40,67,76,65,77,80,69,68,32,63,32,39,67,108,97,109,112,101,100,39,32,58,32,39,39,41,32,43,32,39,65,114,114,97,121,39,59,92,110,32,32,32,32,118,97,114,32,71,69,84,84,69,82,32,61,32,39,103,101,116,39,32,43,32,75,69,89,59,92,110,32,32,32,32,118,97,114,32,83,69,84,84,69,82,32,61,32,39,115,101,116,39,32,43,32,75,69,89,59,92,110,32,32,32,32,118,97,114,32,84,121,112,101,100,65,114,114,97,121,32,61,32,103,108,111,98,97,108,91,78,65,77,69,93,59,92,110,32,32,32,32,118,97,114,32,66,97,115,101,32,61,32,84,121,112,101,100,65,114,114,97,121,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,84,65,67,32,61,32,84,121,112,101,100,65,114,114,97,121,32,38,38,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,84,121,112,101,100,65,114,114,97,121,41,59,92,110,32,32,32,32,118,97,114,32,70,79,82,67,69,68,32,61,32,33,84,121,112,101,100,65,114,114,97,121,32,124,124,32,33,36,116,121,112,101,100,46,65,66,86,59,92,110,32,32,32,32,118,97,114,32,79,32,61,32,123,125,59,92,110,32,32,32,32,118,97,114,32,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,32,61,32,84,121,112,101,100,65,114,114,97,121,32,38,38,32,84,121,112,101,100,65,114,114,97,121,91,80,82,79,84,79,84,89,80,69,93,59,92,110,32,32,32,32,118,97,114,32,103,101,116,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,116,104,97,116,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,104,97,116,46,95,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,46,118,91,71,69,84,84,69,82,93,40,105,110,100,101,120,32,42,32,66,89,84,69,83,32,43,32,100,97,116,97,46,111,44,32,76,73,84,84,76,69,95,69,78,68,73,65,78,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,118,97,114,32,115,101,116,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,116,104,97,116,44,32,105,110,100,101,120,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,104,97,116,46,95,100,59,92,110,32,32,32,32,32,32,105,102,32,40,67,76,65,77,80,69,68,41,32,118,97,108,117,101,32,61,32,40,118,97,108,117,101,32,61,32,77,97,116,104,46,114,111,117,110,100,40,118,97,108,117,101,41,41,32,60,32,48,32,63,32,48,32,58,32,118,97,108,117,101,32,62,32,48,120,102,102,32,63,32,48,120,102,102,32,58,32,118,97,108,117,101,32,38,32,48,120,102,102,59,92,110,32,32,32,32,32,32,100,97,116,97,46,118,91,83,69,84,84,69,82,93,40,105,110,100,101,120,32,42,32,66,89,84,69,83,32,43,32,100,97,116,97,46,111,44,32,118,97,108,117,101,44,32,76,73,84,84,76,69,95,69,78,68,73,65,78,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,118,97,114,32,97,100,100,69,108,101,109,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,116,104,97,116,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,100,80,40,116,104,97,116,44,32,105,110,100,101,120,44,32,123,92,110,32,32,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,116,101,114,40,116,104,105,115,44,32,105,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,115,101,116,58,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,101,116,116,101,114,40,116,104,105,115,44,32,105,110,100,101,120,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,105,102,32,40,70,79,82,67,69,68,41,32,123,92,110,32,32,32,32,32,32,84,121,112,101,100,65,114,114,97,121,32,61,32,119,114,97,112,112,101,114,40,102,117,110,99,116,105,111,110,32,40,116,104,97,116,44,32,100,97,116,97,44,32,36,111,102,102,115,101,116,44,32,36,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,97,110,73,110,115,116,97,110,99,101,40,116,104,97,116,44,32,84,121,112,101,100,65,114,114,97,121,44,32,78,65,77,69,44,32,39,95,100,39,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,102,102,115,101,116,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,98,117,102,102,101,114,44,32,98,121,116,101,76,101,110,103,116,104,44,32,108,101,110,103,116,104,44,32,107,108,97,115,115,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,100,97,116,97,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,116,111,73,110,100,101,120,40,100,97,116,97,41,59,92,110,32,32,32,32,32,32,32,32,32,32,98,121,116,101,76,101,110,103,116,104,32,61,32,108,101,110,103,116,104,32,42,32,66,89,84,69,83,59,92,110,32,32,32,32,32,32,32,32,32,32,98,117,102,102,101,114,32,61,32,110,101,119,32,36,65,114,114,97,121,66,117,102,102,101,114,40,98,121,116,101,76,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,97,116,97,32,105,110,115,116,97,110,99,101,111,102,32,36,65,114,114,97,121,66,117,102,102,101,114,32,124,124,32,40,107,108,97,115,115,32,61,32,99,108,97,115,115,111,102,40,100,97,116,97,41,41,32,61,61,32,65,82,82,65,89,95,66,85,70,70,69,82,32,124,124,32,107,108,97,115,115,32,61,61,32,83,72,65,82,69,68,95,66,85,70,70,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,98,117,102,102,101,114,32,61,32,100,97,116,97,59,92,110,32,32,32,32,32,32,32,32,32,32,111,102,102,115,101,116,32,61,32,116,111,79,102,102,115,101,116,40,36,111,102,102,115,101,116,44,32,66,89,84,69,83,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,36,108,101,110,32,61,32,100,97,116,97,46,98,121,116,101,76,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,36,108,101,110,103,116,104,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,36,108,101,110,32,37,32,66,89,84,69,83,41,32,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,87,82,79,78,71,95,76,69,78,71,84,72,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,121,116,101,76,101,110,103,116,104,32,61,32,36,108,101,110,32,45,32,111,102,102,115,101,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,121,116,101,76,101,110,103,116,104,32,60,32,48,41,32,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,87,82,79,78,71,95,76,69,78,71,84,72,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,121,116,101,76,101,110,103,116,104,32,61,32,116,111,76,101,110,103,116,104,40,36,108,101,110,103,116,104,41,32,42,32,66,89,84,69,83,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,121,116,101,76,101,110,103,116,104,32,43,32,111,102,102,115,101,116,32,62,32,36,108,101,110,41,32,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,87,82,79,78,71,95,76,69,78,71,84,72,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,98,121,116,101,76,101,110,103,116,104,32,47,32,66,89,84,69,83,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,84,89,80,69,68,95,65,82,82,65,89,32,105,110,32,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,114,111,109,76,105,115,116,40,84,121,112,101,100,65,114,114,97,121,44,32,100,97,116,97,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,102,114,111,109,46,99,97,108,108,40,84,121,112,101,100,65,114,114,97,121,44,32,100,97,116,97,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,104,105,100,101,40,116,104,97,116,44,32,39,95,100,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,98,58,32,98,117,102,102,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,111,58,32,111,102,102,115,101,116,44,92,110,32,32,32,32,32,32,32,32,32,32,108,58,32,98,121,116,101,76,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,101,58,32,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,118,58,32,110,101,119,32,36,68,97,116,97,86,105,101,119,40,98,117,102,102,101,114,41,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,97,100,100,69,108,101,109,101,110,116,40,116,104,97,116,44,32,105,110,100,101,120,43,43,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,32,61,32,84,121,112,101,100,65,114,114,97,121,91,80,82,79,84,79,84,89,80,69,93,32,61,32,99,114,101,97,116,101,40,36,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,36,41,59,92,110,32,32,32,32,32,32,104,105,100,101,40,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,44,32,39,99,111,110,115,116,114,117,99,116,111,114,39,44,32,84,121,112,101,100,65,114,114,97,121,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,84,121,112,101,100,65,114,114,97,121,40,49,41,59,92,110,32,32,32,32,125,41,32,124,124,32,33,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,110,101,119,32,84,121,112,101,100,65,114,114,97,121,40,45,49,41,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,110,101,119,92,110,32,32,32,32,125,41,32,124,124,32,33,36,105,116,101,114,68,101,116,101,99,116,40,102,117,110,99,116,105,111,110,32,40,105,116,101,114,41,32,123,92,110,32,32,32,32,32,32,110,101,119,32,84,121,112,101,100,65,114,114,97,121,40,41,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,110,101,119,92,110,32,32,32,32,32,32,110,101,119,32,84,121,112,101,100,65,114,114,97,121,40,110,117,108,108,41,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,110,101,119,92,110,32,32,32,32,32,32,110,101,119,32,84,121,112,101,100,65,114,114,97,121,40,49,46,53,41,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,110,101,119,92,110,32,32,32,32,32,32,110,101,119,32,84,121,112,101,100,65,114,114,97,121,40,105,116,101,114,41,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,110,101,119,92,110,32,32,32,32,125,44,32,116,114,117,101,41,41,32,123,92,110,32,32,32,32,32,32,84,121,112,101,100,65,114,114,97,121,32,61,32,119,114,97,112,112,101,114,40,102,117,110,99,116,105,111,110,32,40,116,104,97,116,44,32,100,97,116,97,44,32,36,111,102,102,115,101,116,44,32,36,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,97,110,73,110,115,116,97,110,99,101,40,116,104,97,116,44,32,84,121,112,101,100,65,114,114,97,121,44,32,78,65,77,69,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,108,97,115,115,59,92,110,32,32,32,32,32,32,32,32,47,47,32,96,119,115,96,32,109,111,100,117,108,101,32,98,117,103,44,32,116,101,109,112,111,114,97,114,105,108,121,32,114,101,109,111,118,101,32,118,97,108,105,100,97,116,105,111,110,32,108,101,110,103,116,104,32,102,111,114,32,85,105,110,116,56,65,114,114,97,121,92,110,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,119,101,98,115,111,99,107,101,116,115,47,119,115,47,112,117,108,108,47,54,52,53,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,100,97,116,97,41,41,32,114,101,116,117,114,110,32,110,101,119,32,66,97,115,101,40,116,111,73,110,100,101,120,40,100,97,116,97,41,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,97,116,97,32,105,110,115,116,97,110,99,101,111,102,32,36,65,114,114,97,121,66,117,102,102,101,114,32,124,124,32,40,107,108,97,115,115,32,61,32,99,108,97,115,115,111,102,40,100,97,116,97,41,41,32,61,61,32,65,82,82,65,89,95,66,85,70,70,69,82,32,124,124,32,107,108,97,115,115,32,61,61,32,83,72,65,82,69,68,95,66,85,70,70,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,108,101,110,103,116,104,32,33,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,110,101,119,32,66,97,115,101,40,100,97,116,97,44,32,116,111,79,102,102,115,101,116,40,36,111,102,102,115,101,116,44,32,66,89,84,69,83,41,44,32,36,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,36,111,102,102,115,101,116,32,33,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,110,101,119,32,66,97,115,101,40,100,97,116,97,44,32,116,111,79,102,102,115,101,116,40,36,111,102,102,115,101,116,44,32,66,89,84,69,83,41,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,110,101,119,32,66,97,115,101,40,100,97,116,97,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,84,89,80,69,68,95,65,82,82,65,89,32,105,110,32,100,97,116,97,41,32,114,101,116,117,114,110,32,102,114,111,109,76,105,115,116,40,84,121,112,101,100,65,114,114,97,121,44,32,100,97,116,97,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,102,114,111,109,46,99,97,108,108,40,84,121,112,101,100,65,114,114,97,121,44,32,100,97,116,97,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,97,114,114,97,121,70,111,114,69,97,99,104,40,84,65,67,32,33,61,61,32,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,32,63,32,103,79,80,78,40,66,97,115,101,41,46,99,111,110,99,97,116,40,103,79,80,78,40,84,65,67,41,41,32,58,32,103,79,80,78,40,66,97,115,101,41,44,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,107,101,121,32,105,110,32,84,121,112,101,100,65,114,114,97,121,41,41,32,104,105,100,101,40,84,121,112,101,100,65,114,114,97,121,44,32,107,101,121,44,32,66,97,115,101,91,107,101,121,93,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,84,121,112,101,100,65,114,114,97,121,91,80,82,79,84,79,84,89,80,69,93,32,61,32,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,59,92,110,32,32,32,32,32,32,105,102,32,40,33,76,73,66,82,65,82,89,41,32,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,84,121,112,101,100,65,114,114,97,121,59,92,110,32,32,32,32,125,92,110,32,32,32,32,118,97,114,32,36,110,97,116,105,118,101,73,116,101,114,97,116,111,114,32,61,32,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,91,73,84,69,82,65,84,79,82,93,59,92,110,32,32,32,32,118,97,114,32,67,79,82,82,69,67,84,95,73,84,69,82,95,78,65,77,69,32,61,32,33,33,36,110,97,116,105,118,101,73,116,101,114,97,116,111,114,92,110,32,32,32,32,32,32,38,38,32,40,36,110,97,116,105,118,101,73,116,101,114,97,116,111,114,46,110,97,109,101,32,61,61,32,39,118,97,108,117,101,115,39,32,124,124,32,36,110,97,116,105,118,101,73,116,101,114,97,116,111,114,46,110,97,109,101,32,61,61,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,118,97,114,32,36,105,116,101,114,97,116,111,114,32,61,32,36,105,116,101,114,97,116,111,114,115,46,118,97,108,117,101,115,59,92,110,32,32,32,32,104,105,100,101,40,84,121,112,101,100,65,114,114,97,121,44,32,84,89,80,69,68,95,67,79,78,83,84,82,85,67,84,79,82,44,32,116,114,117,101,41,59,92,110,32,32,32,32,104,105,100,101,40,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,44,32,84,89,80,69,68,95,65,82,82,65,89,44,32,78,65,77,69,41,59,92,110,32,32,32,32,104,105,100,101,40,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,44,32,86,73,69,87,44,32,116,114,117,101,41,59,92,110,32,32,32,32,104,105,100,101,40,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,44,32,68,69,70,95,67,79,78,83,84,82,85,67,84,79,82,44,32,84,121,112,101,100,65,114,114,97,121,41,59,92,110,92,110,32,32,32,32,105,102,32,40,67,76,65,77,80,69,68,32,63,32,110,101,119,32,84,121,112,101,100,65,114,114,97,121,40,49,41,91,84,65,71,93,32,33,61,32,78,65,77,69,32,58,32,33,40,84,65,71,32,105,110,32,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,41,41,32,123,92,110,32,32,32,32,32,32,100,80,40,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,44,32,84,65,71,44,32,123,92,110,32,32,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,78,65,77,69,59,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,79,91,78,65,77,69,93,32,61,32,84,121,112,101,100,65,114,114,97,121,59,92,110,92,110,32,32,32,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,71,32,43,32,36,101,120,112,111,114,116,46,87,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,84,121,112,101,100,65,114,114,97,121,32,33,61,32,66,97,115,101,41,44,32,79,41,59,92,110,92,110,32,32,32,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,78,65,77,69,44,32,123,92,110,32,32,32,32,32,32,66,89,84,69,83,95,80,69,82,95,69,76,69,77,69,78,84,58,32,66,89,84,69,83,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,66,97,115,101,46,111,102,46,99,97,108,108,40,84,121,112,101,100,65,114,114,97,121,44,32,49,41,59,32,125,41,44,32,78,65,77,69,44,32,123,92,110,32,32,32,32,32,32,102,114,111,109,58,32,36,102,114,111,109,44,92,110,32,32,32,32,32,32,111,102,58,32,36,111,102,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,40,66,89,84,69,83,95,80,69,82,95,69,76,69,77,69,78,84,32,105,110,32,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,41,41,32,104,105,100,101,40,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,44,32,66,89,84,69,83,95,80,69,82,95,69,76,69,77,69,78,84,44,32,66,89,84,69,83,41,59,92,110,92,110,32,32,32,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,44,32,78,65,77,69,44,32,112,114,111,116,111,41,59,92,110,92,110,32,32,32,32,115,101,116,83,112,101,99,105,101,115,40,78,65,77,69,41,59,92,110,92,110,32,32,32,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,70,79,82,67,69,68,95,83,69,84,44,32,78,65,77,69,44,32,123,32,115,101,116,58,32,36,115,101,116,32,125,41,59,92,110,92,110,32,32,32,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,67,79,82,82,69,67,84,95,73,84,69,82,95,78,65,77,69,44,32,78,65,77,69,44,32,36,105,116,101,114,97,116,111,114,115,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,76,73,66,82,65,82,89,32,38,38,32,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,32,33,61,32,97,114,114,97,121,84,111,83,116,114,105,110,103,41,32,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,32,61,32,97,114,114,97,121,84,111,83,116,114,105,110,103,59,92,110,92,110,32,32,32,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,110,101,119,32,84,121,112,101,100,65,114,114,97,121,40,49,41,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,125,41,44,32,78,65,77,69,44,32,123,32,115,108,105,99,101,58,32,36,115,108,105,99,101,32,125,41,59,92,110,92,110,32,32,32,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,49,44,32,50,93,46,116,111,76,111,99,97,108,101,83,116,114,105,110,103,40,41,32,33,61,32,110,101,119,32,84,121,112,101,100,65,114,114,97,121,40,91,49,44,32,50,93,41,46,116,111,76,111,99,97,108,101,83,116,114,105,110,103,40,41,59,92,110,32,32,32,32,125,41,32,124,124,32,33,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,46,116,111,76,111,99,97,108,101,83,116,114,105,110,103,46,99,97,108,108,40,91,49,44,32,50,93,41,59,92,110,32,32,32,32,125,41,41,44,32,78,65,77,69,44,32,123,32,116,111,76,111,99,97,108,101,83,116,114,105,110,103,58,32,36,116,111,76,111,99,97,108,101,83,116,114,105,110,103,32,125,41,59,92,110,92,110,32,32,32,32,73,116,101,114,97,116,111,114,115,91,78,65,77,69,93,32,61,32,67,79,82,82,69,67,84,95,73,84,69,82,95,78,65,77,69,32,63,32,36,110,97,116,105,118,101,73,116,101,114,97,116,111,114,32,58,32,36,105,116,101,114,97,116,111,114,59,92,110,32,32,32,32,105,102,32,40,33,76,73,66,82,65,82,89,32,38,38,32,33,67,79,82,82,69,67,84,95,73,84,69,82,95,78,65,77,69,41,32,104,105,100,101,40,84,121,112,101,100,65,114,114,97,121,80,114,111,116,111,116,121,112,101,44,32,73,84,69,82,65,84,79,82,44,32,36,105,116,101,114,97,116,111,114,41,59,92,110,32,32,125,59,92,110,125,32,101,108,115,101,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,98,117,102,102,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,98,117,102,102,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,68,69,83,67,82,73,80,84,79,82,83,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,59,92,110,118,97,114,32,76,73,66,82,65,82,89,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,108,105,98,114,97,114,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,108,105,98,114,97,114,121,46,106,115,92,34,41,59,92,110,118,97,114,32,36,116,121,112,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,46,106,115,92,34,41,59,92,110,118,97,114,32,104,105,100,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,100,101,102,105,110,101,65,108,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,45,97,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,45,97,108,108,46,106,115,92,34,41,59,92,110,118,97,114,32,102,97,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,73,110,115,116,97,110,99,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,105,110,115,116,97,110,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,105,110,115,116,97,110,99,101,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,73,110,116,101,103,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,116,101,103,101,114,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,73,110,100,101,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,100,101,120,46,106,115,92,34,41,59,92,110,118,97,114,32,103,79,80,78,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,110,46,106,115,92,34,41,46,102,41,59,92,110,118,97,114,32,100,80,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,46,102,41,59,92,110,118,97,114,32,97,114,114,97,121,70,105,108,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,102,105,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,102,105,108,108,46,106,115,92,34,41,59,92,110,118,97,114,32,115,101,116,84,111,83,116,114,105,110,103,84,97,103,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,101,116,45,116,111,45,115,116,114,105,110,103,45,116,97,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,116,111,45,115,116,114,105,110,103,45,116,97,103,46,106,115,92,34,41,59,92,110,118,97,114,32,65,82,82,65,89,95,66,85,70,70,69,82,32,61,32,39,65,114,114,97,121,66,117,102,102,101,114,39,59,92,110,118,97,114,32,68,65,84,65,95,86,73,69,87,32,61,32,39,68,97,116,97,86,105,101,119,39,59,92,110,118,97,114,32,80,82,79,84,79,84,89,80,69,32,61,32,39,112,114,111,116,111,116,121,112,101,39,59,92,110,118,97,114,32,87,82,79,78,71,95,76,69,78,71,84,72,32,61,32,39,87,114,111,110,103,32,108,101,110,103,116,104,33,39,59,92,110,118,97,114,32,87,82,79,78,71,95,73,78,68,69,88,32,61,32,39,87,114,111,110,103,32,105,110,100,101,120,33,39,59,92,110,118,97,114,32,36,65,114,114,97,121,66,117,102,102,101,114,32,61,32,103,108,111,98,97,108,91,65,82,82,65,89,95,66,85,70,70,69,82,93,59,92,110,118,97,114,32,36,68,97,116,97,86,105,101,119,32,61,32,103,108,111,98,97,108,91,68,65,84,65,95,86,73,69,87,93,59,92,110,118,97,114,32,77,97,116,104,32,61,32,103,108,111,98,97,108,46,77,97,116,104,59,92,110,118,97,114,32,82,97,110,103,101,69,114,114,111,114,32,61,32,103,108,111,98,97,108,46,82,97,110,103,101,69,114,114,111,114,59,92,110,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,115,104,97,100,111,119,45,114,101,115,116,114,105,99,116,101,100,45,110,97,109,101,115,92,110,118,97,114,32,73,110,102,105,110,105,116,121,32,61,32,103,108,111,98,97,108,46,73,110,102,105,110,105,116,121,59,92,110,118,97,114,32,66,97,115,101,66,117,102,102,101,114,32,61,32,36,65,114,114,97,121,66,117,102,102,101,114,59,92,110,118,97,114,32,97,98,115,32,61,32,77,97,116,104,46,97,98,115,59,92,110,118,97,114,32,112,111,119,32,61,32,77,97,116,104,46,112,111,119,59,92,110,118,97,114,32,102,108,111,111,114,32,61,32,77,97,116,104,46,102,108,111,111,114,59,92,110,118,97,114,32,108,111,103,32,61,32,77,97,116,104,46,108,111,103,59,92,110,118,97,114,32,76,78,50,32,61,32,77,97,116,104,46,76,78,50,59,92,110,118,97,114,32,66,85,70,70,69,82,32,61,32,39,98,117,102,102,101,114,39,59,92,110,118,97,114,32,66,89,84,69,95,76,69,78,71,84,72,32,61,32,39,98,121,116,101,76,101,110,103,116,104,39,59,92,110,118,97,114,32,66,89,84,69,95,79,70,70,83,69,84,32,61,32,39,98,121,116,101,79,102,102,115,101,116,39,59,92,110,118,97,114,32,36,66,85,70,70,69,82,32,61,32,68,69,83,67,82,73,80,84,79,82,83,32,63,32,39,95,98,39,32,58,32,66,85,70,70,69,82,59,92,110,118,97,114,32,36,76,69,78,71,84,72,32,61,32,68,69,83,67,82,73,80,84,79,82,83,32,63,32,39,95,108,39,32,58,32,66,89,84,69,95,76,69,78,71,84,72,59,92,110,118,97,114,32,36,79,70,70,83,69,84,32,61,32,68,69,83,67,82,73,80,84,79,82,83,32,63,32,39,95,111,39,32,58,32,66,89,84,69,95,79,70,70,83,69,84,59,92,110,92,110,47,47,32,73,69,69,69,55,53,52,32,99,111,110,118,101,114,115,105,111,110,115,32,98,97,115,101,100,32,111,110,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,102,101,114,111,115,115,47,105,101,101,101,55,53,52,92,110,102,117,110,99,116,105,111,110,32,112,97,99,107,73,69,69,69,55,53,52,40,118,97,108,117,101,44,32,109,76,101,110,44,32,110,66,121,116,101,115,41,32,123,92,110,32,32,118,97,114,32,98,117,102,102,101,114,32,61,32,110,101,119,32,65,114,114,97,121,40,110,66,121,116,101,115,41,59,92,110,32,32,118,97,114,32,101,76,101,110,32,61,32,110,66,121,116,101,115,32,42,32,56,32,45,32,109,76,101,110,32,45,32,49,59,92,110,32,32,118,97,114,32,101,77,97,120,32,61,32,40,49,32,60,60,32,101,76,101,110,41,32,45,32,49,59,92,110,32,32,118,97,114,32,101,66,105,97,115,32,61,32,101,77,97,120,32,62,62,32,49,59,92,110,32,32,118,97,114,32,114,116,32,61,32,109,76,101,110,32,61,61,61,32,50,51,32,63,32,112,111,119,40,50,44,32,45,50,52,41,32,45,32,112,111,119,40,50,44,32,45,55,55,41,32,58,32,48,59,92,110,32,32,118,97,114,32,105,32,61,32,48,59,92,110,32,32,118,97,114,32,115,32,61,32,118,97,108,117,101,32,60,32,48,32,124,124,32,118,97,108,117,101,32,61,61,61,32,48,32,38,38,32,49,32,47,32,118,97,108,117,101,32,60,32,48,32,63,32,49,32,58,32,48,59,92,110,32,32,118,97,114,32,101,44,32,109,44,32,99,59,92,110,32,32,118,97,108,117,101,32,61,32,97,98,115,40,118,97,108,117,101,41,59,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,115,101,108,102,45,99,111,109,112,97,114,101,92,110,32,32,105,102,32,40,118,97,108,117,101,32,33,61,32,118,97,108,117,101,32,124,124,32,118,97,108,117,101,32,61,61,61,32,73,110,102,105,110,105,116,121,41,32,123,92,110,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,115,101,108,102,45,99,111,109,112,97,114,101,92,110,32,32,32,32,109,32,61,32,118,97,108,117,101,32,33,61,32,118,97,108,117,101,32,63,32,49,32,58,32,48,59,92,110,32,32,32,32,101,32,61,32,101,77,97,120,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,101,32,61,32,102,108,111,111,114,40,108,111,103,40,118,97,108,117,101,41,32,47,32,76,78,50,41,59,92,110,32,32,32,32,105,102,32,40,118,97,108,117,101,32,42,32,40,99,32,61,32,112,111,119,40,50,44,32,45,101,41,41,32,60,32,49,41,32,123,92,110,32,32,32,32,32,32,101,45,45,59,92,110,32,32,32,32,32,32,99,32,42,61,32,50,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,101,32,43,32,101,66,105,97,115,32,62,61,32,49,41,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,32,43,61,32,114,116,32,47,32,99,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,32,43,61,32,114,116,32,42,32,112,111,119,40,50,44,32,49,32,45,32,101,66,105,97,115,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,118,97,108,117,101,32,42,32,99,32,62,61,32,50,41,32,123,92,110,32,32,32,32,32,32,101,43,43,59,92,110,32,32,32,32,32,32,99,32,47,61,32,50,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,101,32,43,32,101,66,105,97,115,32,62,61,32,101,77,97,120,41,32,123,92,110,32,32,32,32,32,32,109,32,61,32,48,59,92,110,32,32,32,32,32,32,101,32,61,32,101,77,97,120,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,101,32,43,32,101,66,105,97,115,32,62,61,32,49,41,32,123,92,110,32,32,32,32,32,32,109,32,61,32,40,118,97,108,117,101,32,42,32,99,32,45,32,49,41,32,42,32,112,111,119,40,50,44,32,109,76,101,110,41,59,92,110,32,32,32,32,32,32,101,32,61,32,101,32,43,32,101,66,105,97,115,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,109,32,61,32,118,97,108,117,101,32,42,32,112,111,119,40,50,44,32,101,66,105,97,115,32,45,32,49,41,32,42,32,112,111,119,40,50,44,32,109,76,101,110,41,59,92,110,32,32,32,32,32,32,101,32,61,32,48,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,102,111,114,32,40,59,32,109,76,101,110,32,62,61,32,56,59,32,98,117,102,102,101,114,91,105,43,43,93,32,61,32,109,32,38,32,50,53,53,44,32,109,32,47,61,32,50,53,54,44,32,109,76,101,110,32,45,61,32,56,41,59,92,110,32,32,101,32,61,32,101,32,60,60,32,109,76,101,110,32,124,32,109,59,92,110,32,32,101,76,101,110,32,43,61,32,109,76,101,110,59,92,110,32,32,102,111,114,32,40,59,32,101,76,101,110,32,62,32,48,59,32,98,117,102,102,101,114,91,105,43,43,93,32,61,32,101,32,38,32,50,53,53,44,32,101,32,47,61,32,50,53,54,44,32,101,76,101,110,32,45,61,32,56,41,59,92,110,32,32,98,117,102,102,101,114,91,45,45,105,93,32,124,61,32,115,32,42,32,49,50,56,59,92,110,32,32,114,101,116,117,114,110,32,98,117,102,102,101,114,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,117,110,112,97,99,107,73,69,69,69,55,53,52,40,98,117,102,102,101,114,44,32,109,76,101,110,44,32,110,66,121,116,101,115,41,32,123,92,110,32,32,118,97,114,32,101,76,101,110,32,61,32,110,66,121,116,101,115,32,42,32,56,32,45,32,109,76,101,110,32,45,32,49,59,92,110,32,32,118,97,114,32,101,77,97,120,32,61,32,40,49,32,60,60,32,101,76,101,110,41,32,45,32,49,59,92,110,32,32,118,97,114,32,101,66,105,97,115,32,61,32,101,77,97,120,32,62,62,32,49,59,92,110,32,32,118,97,114,32,110,66,105,116,115,32,61,32,101,76,101,110,32,45,32,55,59,92,110,32,32,118,97,114,32,105,32,61,32,110,66,121,116,101,115,32,45,32,49,59,92,110,32,32,118,97,114,32,115,32,61,32,98,117,102,102,101,114,91,105,45,45,93,59,92,110,32,32,118,97,114,32,101,32,61,32,115,32,38,32,49,50,55,59,92,110,32,32,118,97,114,32,109,59,92,110,32,32,115,32,62,62,61,32,55,59,92,110,32,32,102,111,114,32,40,59,32,110,66,105,116,115,32,62,32,48,59,32,101,32,61,32,101,32,42,32,50,53,54,32,43,32,98,117,102,102,101,114,91,105,93,44,32,105,45,45,44,32,110,66,105,116,115,32,45,61,32,56,41,59,92,110,32,32,109,32,61,32,101,32,38,32,40,49,32,60,60,32,45,110,66,105,116,115,41,32,45,32,49,59,92,110,32,32,101,32,62,62,61,32,45,110,66,105,116,115,59,92,110,32,32,110,66,105,116,115,32,43,61,32,109,76,101,110,59,92,110,32,32,102,111,114,32,40,59,32,110,66,105,116,115,32,62,32,48,59,32,109,32,61,32,109,32,42,32,50,53,54,32,43,32,98,117,102,102,101,114,91,105,93,44,32,105,45,45,44,32,110,66,105,116,115,32,45,61,32,56,41,59,92,110,32,32,105,102,32,40,101,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,101,32,61,32,49,32,45,32,101,66,105,97,115,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,101,32,61,61,61,32,101,77,97,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,109,32,63,32,78,97,78,32,58,32,115,32,63,32,45,73,110,102,105,110,105,116,121,32,58,32,73,110,102,105,110,105,116,121,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,109,32,61,32,109,32,43,32,112,111,119,40,50,44,32,109,76,101,110,41,59,92,110,32,32,32,32,101,32,61,32,101,32,45,32,101,66,105,97,115,59,92,110,32,32,125,32,114,101,116,117,114,110,32,40,115,32,63,32,45,49,32,58,32,49,41,32,42,32,109,32,42,32,112,111,119,40,50,44,32,101,32,45,32,109,76,101,110,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,117,110,112,97,99,107,73,51,50,40,98,121,116,101,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,98,121,116,101,115,91,51,93,32,60,60,32,50,52,32,124,32,98,121,116,101,115,91,50,93,32,60,60,32,49,54,32,124,32,98,121,116,101,115,91,49,93,32,60,60,32,56,32,124,32,98,121,116,101,115,91,48,93,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,112,97,99,107,73,56,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,105,116,32,38,32,48,120,102,102,93,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,112,97,99,107,73,49,54,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,105,116,32,38,32,48,120,102,102,44,32,105,116,32,62,62,32,56,32,38,32,48,120,102,102,93,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,112,97,99,107,73,51,50,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,105,116,32,38,32,48,120,102,102,44,32,105,116,32,62,62,32,56,32,38,32,48,120,102,102,44,32,105,116,32,62,62,32,49,54,32,38,32,48,120,102,102,44,32,105,116,32,62,62,32,50,52,32,38,32,48,120,102,102,93,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,112,97,99,107,70,54,52,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,99,107,73,69,69,69,55,53,52,40,105,116,44,32,53,50,44,32,56,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,112,97,99,107,70,51,50,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,99,107,73,69,69,69,55,53,52,40,105,116,44,32,50,51,44,32,52,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,100,100,71,101,116,116,101,114,40,67,44,32,107,101,121,44,32,105,110,116,101,114,110,97,108,41,32,123,92,110,32,32,100,80,40,67,91,80,82,79,84,79,84,89,80,69,93,44,32,107,101,121,44,32,123,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,91,105,110,116,101,114,110,97,108,93,59,32,125,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,40,118,105,101,119,44,32,98,121,116,101,115,44,32,105,110,100,101,120,44,32,105,115,76,105,116,116,108,101,69,110,100,105,97,110,41,32,123,92,110,32,32,118,97,114,32,110,117,109,73,110,100,101,120,32,61,32,43,105,110,100,101,120,59,92,110,32,32,118,97,114,32,105,110,116,73,110,100,101,120,32,61,32,116,111,73,110,100,101,120,40,110,117,109,73,110,100,101,120,41,59,92,110,32,32,105,102,32,40,105,110,116,73,110,100,101,120,32,43,32,98,121,116,101,115,32,62,32,118,105,101,119,91,36,76,69,78,71,84,72,93,41,32,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,87,82,79,78,71,95,73,78,68,69,88,41,59,92,110,32,32,118,97,114,32,115,116,111,114,101,32,61,32,118,105,101,119,91,36,66,85,70,70,69,82,93,46,95,98,59,92,110,32,32,118,97,114,32,115,116,97,114,116,32,61,32,105,110,116,73,110,100,101,120,32,43,32,118,105,101,119,91,36,79,70,70,83,69,84,93,59,92,110,32,32,118,97,114,32,112,97,99,107,32,61,32,115,116,111,114,101,46,115,108,105,99,101,40,115,116,97,114,116,44,32,115,116,97,114,116,32,43,32,98,121,116,101,115,41,59,92,110,32,32,114,101,116,117,114,110,32,105,115,76,105,116,116,108,101,69,110,100,105,97,110,32,63,32,112,97,99,107,32,58,32,112,97,99,107,46,114,101,118,101,114,115,101,40,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,115,101,116,40,118,105,101,119,44,32,98,121,116,101,115,44,32,105,110,100,101,120,44,32,99,111,110,118,101,114,115,105,111,110,44,32,118,97,108,117,101,44,32,105,115,76,105,116,116,108,101,69,110,100,105,97,110,41,32,123,92,110,32,32,118,97,114,32,110,117,109,73,110,100,101,120,32,61,32,43,105,110,100,101,120,59,92,110,32,32,118,97,114,32,105,110,116,73,110,100,101,120,32,61,32,116,111,73,110,100,101,120,40,110,117,109,73,110,100,101,120,41,59,92,110,32,32,105,102,32,40,105,110,116,73,110,100,101,120,32,43,32,98,121,116,101,115,32,62,32,118,105,101,119,91,36,76,69,78,71,84,72,93,41,32,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,87,82,79,78,71,95,73,78,68,69,88,41,59,92,110,32,32,118,97,114,32,115,116,111,114,101,32,61,32,118,105,101,119,91,36,66,85,70,70,69,82,93,46,95,98,59,92,110,32,32,118,97,114,32,115,116,97,114,116,32,61,32,105,110,116,73,110,100,101,120,32,43,32,118,105,101,119,91,36,79,70,70,83,69,84,93,59,92,110,32,32,118,97,114,32,112,97,99,107,32,61,32,99,111,110,118,101,114,115,105,111,110,40,43,118,97,108,117,101,41,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,98,121,116,101,115,59,32,105,43,43,41,32,115,116,111,114,101,91,115,116,97,114,116,32,43,32,105,93,32,61,32,112,97,99,107,91,105,115,76,105,116,116,108,101,69,110,100,105,97,110,32,63,32,105,32,58,32,98,121,116,101,115,32,45,32,105,32,45,32,49,93,59,92,110,125,92,110,92,110,105,102,32,40,33,36,116,121,112,101,100,46,65,66,86,41,32,123,92,110,32,32,36,65,114,114,97,121,66,117,102,102,101,114,32,61,32,102,117,110,99,116,105,111,110,32,65,114,114,97,121,66,117,102,102,101,114,40,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,97,110,73,110,115,116,97,110,99,101,40,116,104,105,115,44,32,36,65,114,114,97,121,66,117,102,102,101,114,44,32,65,82,82,65,89,95,66,85,70,70,69,82,41,59,92,110,32,32,32,32,118,97,114,32,98,121,116,101,76,101,110,103,116,104,32,61,32,116,111,73,110,100,101,120,40,108,101,110,103,116,104,41,59,92,110,32,32,32,32,116,104,105,115,46,95,98,32,61,32,97,114,114,97,121,70,105,108,108,46,99,97,108,108,40,110,101,119,32,65,114,114,97,121,40,98,121,116,101,76,101,110,103,116,104,41,44,32,48,41,59,92,110,32,32,32,32,116,104,105,115,91,36,76,69,78,71,84,72,93,32,61,32,98,121,116,101,76,101,110,103,116,104,59,92,110,32,32,125,59,92,110,92,110,32,32,36,68,97,116,97,86,105,101,119,32,61,32,102,117,110,99,116,105,111,110,32,68,97,116,97,86,105,101,119,40,98,117,102,102,101,114,44,32,98,121,116,101,79,102,102,115,101,116,44,32,98,121,116,101,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,97,110,73,110,115,116,97,110,99,101,40,116,104,105,115,44,32,36,68,97,116,97,86,105,101,119,44,32,68,65,84,65,95,86,73,69,87,41,59,92,110,32,32,32,32,97,110,73,110,115,116,97,110,99,101,40,98,117,102,102,101,114,44,32,36,65,114,114,97,121,66,117,102,102,101,114,44,32,68,65,84,65,95,86,73,69,87,41,59,92,110,32,32,32,32,118,97,114,32,98,117,102,102,101,114,76,101,110,103,116,104,32,61,32,98,117,102,102,101,114,91,36,76,69,78,71,84,72,93,59,92,110,32,32,32,32,118,97,114,32,111,102,102,115,101,116,32,61,32,116,111,73,110,116,101,103,101,114,40,98,121,116,101,79,102,102,115,101,116,41,59,92,110,32,32,32,32,105,102,32,40,111,102,102,115,101,116,32,60,32,48,32,124,124,32,111,102,102,115,101,116,32,62,32,98,117,102,102,101,114,76,101,110,103,116,104,41,32,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,39,87,114,111,110,103,32,111,102,102,115,101,116,33,39,41,59,92,110,32,32,32,32,98,121,116,101,76,101,110,103,116,104,32,61,32,98,121,116,101,76,101,110,103,116,104,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,98,117,102,102,101,114,76,101,110,103,116,104,32,45,32,111,102,102,115,101,116,32,58,32,116,111,76,101,110,103,116,104,40,98,121,116,101,76,101,110,103,116,104,41,59,92,110,32,32,32,32,105,102,32,40,111,102,102,115,101,116,32,43,32,98,121,116,101,76,101,110,103,116,104,32,62,32,98,117,102,102,101,114,76,101,110,103,116,104,41,32,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,87,82,79,78,71,95,76,69,78,71,84,72,41,59,92,110,32,32,32,32,116,104,105,115,91,36,66,85,70,70,69,82,93,32,61,32,98,117,102,102,101,114,59,92,110,32,32,32,32,116,104,105,115,91,36,79,70,70,83,69,84,93,32,61,32,111,102,102,115,101,116,59,92,110,32,32,32,32,116,104,105,115,91,36,76,69,78,71,84,72,93,32,61,32,98,121,116,101,76,101,110,103,116,104,59,92,110,32,32,125,59,92,110,92,110,32,32,105,102,32,40,68,69,83,67,82,73,80,84,79,82,83,41,32,123,92,110,32,32,32,32,97,100,100,71,101,116,116,101,114,40,36,65,114,114,97,121,66,117,102,102,101,114,44,32,66,89,84,69,95,76,69,78,71,84,72,44,32,39,95,108,39,41,59,92,110,32,32,32,32,97,100,100,71,101,116,116,101,114,40,36,68,97,116,97,86,105,101,119,44,32,66,85,70,70,69,82,44,32,39,95,98,39,41,59,92,110,32,32,32,32,97,100,100,71,101,116,116,101,114,40,36,68,97,116,97,86,105,101,119,44,32,66,89,84,69,95,76,69,78,71,84,72,44,32,39,95,108,39,41,59,92,110,32,32,32,32,97,100,100,71,101,116,116,101,114,40,36,68,97,116,97,86,105,101,119,44,32,66,89,84,69,95,79,70,70,83,69,84,44,32,39,95,111,39,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,100,101,102,105,110,101,65,108,108,40,36,68,97,116,97,86,105,101,119,91,80,82,79,84,79,84,89,80,69,93,44,32,123,92,110,32,32,32,32,103,101,116,73,110,116,56,58,32,102,117,110,99,116,105,111,110,32,103,101,116,73,110,116,56,40,98,121,116,101,79,102,102,115,101,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,40,116,104,105,115,44,32,49,44,32,98,121,116,101,79,102,102,115,101,116,41,91,48,93,32,60,60,32,50,52,32,62,62,32,50,52,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,85,105,110,116,56,58,32,102,117,110,99,116,105,111,110,32,103,101,116,85,105,110,116,56,40,98,121,116,101,79,102,102,115,101,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,40,116,104,105,115,44,32,49,44,32,98,121,116,101,79,102,102,115,101,116,41,91,48,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,73,110,116,49,54,58,32,102,117,110,99,116,105,111,110,32,103,101,116,73,110,116,49,54,40,98,121,116,101,79,102,102,115,101,116,32,47,42,32,44,32,108,105,116,116,108,101,69,110,100,105,97,110,32,42,47,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,121,116,101,115,32,61,32,103,101,116,40,116,104,105,115,44,32,50,44,32,98,121,116,101,79,102,102,115,101,116,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,98,121,116,101,115,91,49,93,32,60,60,32,56,32,124,32,98,121,116,101,115,91,48,93,41,32,60,60,32,49,54,32,62,62,32,49,54,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,85,105,110,116,49,54,58,32,102,117,110,99,116,105,111,110,32,103,101,116,85,105,110,116,49,54,40,98,121,116,101,79,102,102,115,101,116,32,47,42,32,44,32,108,105,116,116,108,101,69,110,100,105,97,110,32,42,47,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,121,116,101,115,32,61,32,103,101,116,40,116,104,105,115,44,32,50,44,32,98,121,116,101,79,102,102,115,101,116,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,121,116,101,115,91,49,93,32,60,60,32,56,32,124,32,98,121,116,101,115,91,48,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,73,110,116,51,50,58,32,102,117,110,99,116,105,111,110,32,103,101,116,73,110,116,51,50,40,98,121,116,101,79,102,102,115,101,116,32,47,42,32,44,32,108,105,116,116,108,101,69,110,100,105,97,110,32,42,47,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,117,110,112,97,99,107,73,51,50,40,103,101,116,40,116,104,105,115,44,32,52,44,32,98,121,116,101,79,102,102,115,101,116,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,85,105,110,116,51,50,58,32,102,117,110,99,116,105,111,110,32,103,101,116,85,105,110,116,51,50,40,98,121,116,101,79,102,102,115,101,116,32,47,42,32,44,32,108,105,116,116,108,101,69,110,100,105,97,110,32,42,47,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,117,110,112,97,99,107,73,51,50,40,103,101,116,40,116,104,105,115,44,32,52,44,32,98,121,116,101,79,102,102,115,101,116,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,41,32,62,62,62,32,48,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,70,108,111,97,116,51,50,58,32,102,117,110,99,116,105,111,110,32,103,101,116,70,108,111,97,116,51,50,40,98,121,116,101,79,102,102,115,101,116,32,47,42,32,44,32,108,105,116,116,108,101,69,110,100,105,97,110,32,42,47,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,117,110,112,97,99,107,73,69,69,69,55,53,52,40,103,101,116,40,116,104,105,115,44,32,52,44,32,98,121,116,101,79,102,102,115,101,116,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,44,32,50,51,44,32,52,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,70,108,111,97,116,54,52,58,32,102,117,110,99,116,105,111,110,32,103,101,116,70,108,111,97,116,54,52,40,98,121,116,101,79,102,102,115,101,116,32,47,42,32,44,32,108,105,116,116,108,101,69,110,100,105,97,110,32,42,47,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,117,110,112,97,99,107,73,69,69,69,55,53,52,40,103,101,116,40,116,104,105,115,44,32,56,44,32,98,121,116,101,79,102,102,115,101,116,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,44,32,53,50,44,32,56,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,73,110,116,56,58,32,102,117,110,99,116,105,111,110,32,115,101,116,73,110,116,56,40,98,121,116,101,79,102,102,115,101,116,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,115,101,116,40,116,104,105,115,44,32,49,44,32,98,121,116,101,79,102,102,115,101,116,44,32,112,97,99,107,73,56,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,85,105,110,116,56,58,32,102,117,110,99,116,105,111,110,32,115,101,116,85,105,110,116,56,40,98,121,116,101,79,102,102,115,101,116,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,115,101,116,40,116,104,105,115,44,32,49,44,32,98,121,116,101,79,102,102,115,101,116,44,32,112,97,99,107,73,56,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,73,110,116,49,54,58,32,102,117,110,99,116,105,111,110,32,115,101,116,73,110,116,49,54,40,98,121,116,101,79,102,102,115,101,116,44,32,118,97,108,117,101,32,47,42,32,44,32,108,105,116,116,108,101,69,110,100,105,97,110,32,42,47,41,32,123,92,110,32,32,32,32,32,32,115,101,116,40,116,104,105,115,44,32,50,44,32,98,121,116,101,79,102,102,115,101,116,44,32,112,97,99,107,73,49,54,44,32,118,97,108,117,101,44,32,97,114,103,117,109,101,110,116,115,91,50,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,85,105,110,116,49,54,58,32,102,117,110,99,116,105,111,110,32,115,101,116,85,105,110,116,49,54,40,98,121,116,101,79,102,102,115,101,116,44,32,118,97,108,117,101,32,47,42,32,44,32,108,105,116,116,108,101,69,110,100,105,97,110,32,42,47,41,32,123,92,110,32,32,32,32,32,32,115,101,116,40,116,104,105,115,44,32,50,44,32,98,121,116,101,79,102,102,115,101,116,44,32,112,97,99,107,73,49,54,44,32,118,97,108,117,101,44,32,97,114,103,117,109,101,110,116,115,91,50,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,73,110,116,51,50,58,32,102,117,110,99,116,105,111,110,32,115,101,116,73,110,116,51,50,40,98,121,116,101,79,102,102,115,101,116,44,32,118,97,108,117,101,32,47,42,32,44,32,108,105,116,116,108,101,69,110,100,105,97,110,32,42,47,41,32,123,92,110,32,32,32,32,32,32,115,101,116,40,116,104,105,115,44,32,52,44,32,98,121,116,101,79,102,102,115,101,116,44,32,112,97,99,107,73,51,50,44,32,118,97,108,117,101,44,32,97,114,103,117,109,101,110,116,115,91,50,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,85,105,110,116,51,50,58,32,102,117,110,99,116,105,111,110,32,115,101,116,85,105,110,116,51,50,40,98,121,116,101,79,102,102,115,101,116,44,32,118,97,108,117,101,32,47,42,32,44,32,108,105,116,116,108,101,69,110,100,105,97,110,32,42,47,41,32,123,92,110,32,32,32,32,32,32,115,101,116,40,116,104,105,115,44,32,52,44,32,98,121,116,101,79,102,102,115,101,116,44,32,112,97,99,107,73,51,50,44,32,118,97,108,117,101,44,32,97,114,103,117,109,101,110,116,115,91,50,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,70,108,111,97,116,51,50,58,32,102,117,110,99,116,105,111,110,32,115,101,116,70,108,111,97,116,51,50,40,98,121,116,101,79,102,102,115,101,116,44,32,118,97,108,117,101,32,47,42,32,44,32,108,105,116,116,108,101,69,110,100,105,97,110,32,42,47,41,32,123,92,110,32,32,32,32,32,32,115,101,116,40,116,104,105,115,44,32,52,44,32,98,121,116,101,79,102,102,115,101,116,44,32,112,97,99,107,70,51,50,44,32,118,97,108,117,101,44,32,97,114,103,117,109,101,110,116,115,91,50,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,70,108,111,97,116,54,52,58,32,102,117,110,99,116,105,111,110,32,115,101,116,70,108,111,97,116,54,52,40,98,121,116,101,79,102,102,115,101,116,44,32,118,97,108,117,101,32,47,42,32,44,32,108,105,116,116,108,101,69,110,100,105,97,110,32,42,47,41,32,123,92,110,32,32,32,32,32,32,115,101,116,40,116,104,105,115,44,32,56,44,32,98,121,116,101,79,102,102,115,101,116,44,32,112,97,99,107,70,54,52,44,32,118,97,108,117,101,44,32,97,114,103,117,109,101,110,116,115,91,50,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,32,101,108,115,101,32,123,92,110,32,32,105,102,32,40,33,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,36,65,114,114,97,121,66,117,102,102,101,114,40,49,41,59,92,110,32,32,125,41,32,124,124,32,33,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,110,101,119,32,36,65,114,114,97,121,66,117,102,102,101,114,40,45,49,41,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,110,101,119,92,110,32,32,125,41,32,124,124,32,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,110,101,119,32,36,65,114,114,97,121,66,117,102,102,101,114,40,41,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,110,101,119,92,110,32,32,32,32,110,101,119,32,36,65,114,114,97,121,66,117,102,102,101,114,40,49,46,53,41,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,110,101,119,92,110,32,32,32,32,110,101,119,32,36,65,114,114,97,121,66,117,102,102,101,114,40,78,97,78,41,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,110,101,119,92,110,32,32,32,32,114,101,116,117,114,110,32,36,65,114,114,97,121,66,117,102,102,101,114,46,110,97,109,101,32,33,61,32,65,82,82,65,89,95,66,85,70,70,69,82,59,92,110,32,32,125,41,41,32,123,92,110,32,32,32,32,36,65,114,114,97,121,66,117,102,102,101,114,32,61,32,102,117,110,99,116,105,111,110,32,65,114,114,97,121,66,117,102,102,101,114,40,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,97,110,73,110,115,116,97,110,99,101,40,116,104,105,115,44,32,36,65,114,114,97,121,66,117,102,102,101,114,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,66,97,115,101,66,117,102,102,101,114,40,116,111,73,110,100,101,120,40,108,101,110,103,116,104,41,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,118,97,114,32,65,114,114,97,121,66,117,102,102,101,114,80,114,111,116,111,32,61,32,36,65,114,114,97,121,66,117,102,102,101,114,91,80,82,79,84,79,84,89,80,69,93,32,61,32,66,97,115,101,66,117,102,102,101,114,91,80,82,79,84,79,84,89,80,69,93,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,115,32,61,32,103,79,80,78,40,66,97,115,101,66,117,102,102,101,114,41,44,32,106,32,61,32,48,44,32,107,101,121,59,32,107,101,121,115,46,108,101,110,103,116,104,32,62,32,106,59,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,40,107,101,121,32,61,32,107,101,121,115,91,106,43,43,93,41,32,105,110,32,36,65,114,114,97,121,66,117,102,102,101,114,41,41,32,104,105,100,101,40,36,65,114,114,97,121,66,117,102,102,101,114,44,32,107,101,121,44,32,66,97,115,101,66,117,102,102,101,114,91,107,101,121,93,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,33,76,73,66,82,65,82,89,41,32,65,114,114,97,121,66,117,102,102,101,114,80,114,111,116,111,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,36,65,114,114,97,121,66,117,102,102,101,114,59,92,110,32,32,125,92,110,32,32,47,47,32,105,79,83,32,83,97,102,97,114,105,32,55,46,120,32,98,117,103,92,110,32,32,118,97,114,32,118,105,101,119,32,61,32,110,101,119,32,36,68,97,116,97,86,105,101,119,40,110,101,119,32,36,65,114,114,97,121,66,117,102,102,101,114,40,50,41,41,59,92,110,32,32,118,97,114,32,36,115,101,116,73,110,116,56,32,61,32,36,68,97,116,97,86,105,101,119,91,80,82,79,84,79,84,89,80,69,93,46,115,101,116,73,110,116,56,59,92,110,32,32,118,105,101,119,46,115,101,116,73,110,116,56,40,48,44,32,50,49,52,55,52,56,51,54,52,56,41,59,92,110,32,32,118,105,101,119,46,115,101,116,73,110,116,56,40,49,44,32,50,49,52,55,52,56,51,54,52,57,41,59,92,110,32,32,105,102,32,40,118,105,101,119,46,103,101,116,73,110,116,56,40,48,41,32,124,124,32,33,118,105,101,119,46,103,101,116,73,110,116,56,40,49,41,41,32,114,101,100,101,102,105,110,101,65,108,108,40,36,68,97,116,97,86,105,101,119,91,80,82,79,84,79,84,89,80,69,93,44,32,123,92,110,32,32,32,32,115,101,116,73,110,116,56,58,32,102,117,110,99,116,105,111,110,32,115,101,116,73,110,116,56,40,98,121,116,101,79,102,102,115,101,116,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,36,115,101,116,73,110,116,56,46,99,97,108,108,40,116,104,105,115,44,32,98,121,116,101,79,102,102,115,101,116,44,32,118,97,108,117,101,32,60,60,32,50,52,32,62,62,32,50,52,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,85,105,110,116,56,58,32,102,117,110,99,116,105,111,110,32,115,101,116,85,105,110,116,56,40,98,121,116,101,79,102,102,115,101,116,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,36,115,101,116,73,110,116,56,46,99,97,108,108,40,116,104,105,115,44,32,98,121,116,101,79,102,102,115,101,116,44,32,118,97,108,117,101,32,60,60,32,50,52,32,62,62,32,50,52,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,116,114,117,101,41,59,92,110,125,92,110,115,101,116,84,111,83,116,114,105,110,103,84,97,103,40,36,65,114,114,97,121,66,117,102,102,101,114,44,32,65,82,82,65,89,95,66,85,70,70,69,82,41,59,92,110,115,101,116,84,111,83,116,114,105,110,103,84,97,103,40,36,68,97,116,97,86,105,101,119,44,32,68,65,84,65,95,86,73,69,87,41,59,92,110,104,105,100,101,40,36,68,97,116,97,86,105,101,119,91,80,82,79,84,79,84,89,80,69,93,44,32,36,116,121,112,101,100,46,86,73,69,87,44,32,116,114,117,101,41,59,92,110,101,120,112,111,114,116,115,91,65,82,82,65,89,95,66,85,70,70,69,82,93,32,61,32,36,65,114,114,97,121,66,117,102,102,101,114,59,92,110,101,120,112,111,114,116,115,91,68,65,84,65,95,86,73,69,87,93,32,61,32,36,68,97,116,97,86,105,101,119,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,98,117,102,102,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,104,105,100,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,92,34,41,59,92,110,118,97,114,32,117,105,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,117,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,105,100,46,106,115,92,34,41,59,92,110,118,97,114,32,84,89,80,69,68,32,61,32,117,105,100,40,39,116,121,112,101,100,95,97,114,114,97,121,39,41,59,92,110,118,97,114,32,86,73,69,87,32,61,32,117,105,100,40,39,118,105,101,119,39,41,59,92,110,118,97,114,32,65,66,86,32,61,32,33,33,40,103,108,111,98,97,108,46,65,114,114,97,121,66,117,102,102,101,114,32,38,38,32,103,108,111,98,97,108,46,68,97,116,97,86,105,101,119,41,59,92,110,118,97,114,32,67,79,78,83,84,82,32,61,32,65,66,86,59,92,110,118,97,114,32,105,32,61,32,48,59,92,110,118,97,114,32,108,32,61,32,57,59,92,110,118,97,114,32,84,121,112,101,100,59,92,110,92,110,118,97,114,32,84,121,112,101,100,65,114,114,97,121,67,111,110,115,116,114,117,99,116,111,114,115,32,61,32,40,92,110,32,32,39,73,110,116,56,65,114,114,97,121,44,85,105,110,116,56,65,114,114,97,121,44,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,44,73,110,116,49,54,65,114,114,97,121,44,85,105,110,116,49,54,65,114,114,97,121,44,73,110,116,51,50,65,114,114,97,121,44,85,105,110,116,51,50,65,114,114,97,121,44,70,108,111,97,116,51,50,65,114,114,97,121,44,70,108,111,97,116,54,52,65,114,114,97,121,39,92,110,41,46,115,112,108,105,116,40,39,44,39,41,59,92,110,92,110,119,104,105,108,101,32,40,105,32,60,32,108,41,32,123,92,110,32,32,105,102,32,40,84,121,112,101,100,32,61,32,103,108,111,98,97,108,91,84,121,112,101,100,65,114,114,97,121,67,111,110,115,116,114,117,99,116,111,114,115,91,105,43,43,93,93,41,32,123,92,110,32,32,32,32,104,105,100,101,40,84,121,112,101,100,46,112,114,111,116,111,116,121,112,101,44,32,84,89,80,69,68,44,32,116,114,117,101,41,59,92,110,32,32,32,32,104,105,100,101,40,84,121,112,101,100,46,112,114,111,116,111,116,121,112,101,44,32,86,73,69,87,44,32,116,114,117,101,41,59,92,110,32,32,125,32,101,108,115,101,32,67,79,78,83,84,82,32,61,32,102,97,108,115,101,59,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,123,92,110,32,32,65,66,86,58,32,65,66,86,44,92,110,32,32,67,79,78,83,84,82,58,32,67,79,78,83,84,82,44,92,110,32,32,84,89,80,69,68,58,32,84,89,80,69,68,44,92,110,32,32,86,73,69,87,58,32,86,73,69,87,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,105,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,105,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,105,100,32,61,32,48,59,92,110,118,97,114,32,112,120,32,61,32,77,97,116,104,46,114,97,110,100,111,109,40,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,39,83,121,109,98,111,108,40,39,46,99,111,110,99,97,116,40,107,101,121,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,39,39,32,58,32,107,101,121,44,32,39,41,95,39,44,32,40,43,43,105,100,32,43,32,112,120,41,46,116,111,83,116,114,105,110,103,40,51,54,41,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,105,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,115,101,114,45,97,103,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,115,101,114,45,97,103,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,110,97,118,105,103,97,116,111,114,32,61,32,103,108,111,98,97,108,46,110,97,118,105,103,97,116,111,114,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,110,97,118,105,103,97,116,111,114,32,38,38,32,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,32,124,124,32,39,39,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,115,101,114,45,97,103,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,44,32,84,89,80,69,41,32,123,92,110,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,105,116,41,32,124,124,32,105,116,46,95,116,32,33,61,61,32,84,89,80,69,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,39,73,110,99,111,109,112,97,116,105,98,108,101,32,114,101,99,101,105,118,101,114,44,32,39,32,43,32,84,89,80,69,32,43,32,39,32,114,101,113,117,105,114,101,100,33,39,41,59,92,110,32,32,114,101,116,117,114,110,32,105,116,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,45,100,101,102,105,110,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,45,100,101,102,105,110,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,99,111,114,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,59,92,110,118,97,114,32,76,73,66,82,65,82,89,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,108,105,98,114,97,114,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,108,105,98,114,97,114,121,46,106,115,92,34,41,59,92,110,118,97,114,32,119,107,115,69,120,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,45,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,45,101,120,116,46,106,115,92,34,41,59,92,110,118,97,114,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,46,102,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,32,32,118,97,114,32,36,83,121,109,98,111,108,32,61,32,99,111,114,101,46,83,121,109,98,111,108,32,124,124,32,40,99,111,114,101,46,83,121,109,98,111,108,32,61,32,76,73,66,82,65,82,89,32,63,32,123,125,32,58,32,103,108,111,98,97,108,46,83,121,109,98,111,108,32,124,124,32,123,125,41,59,92,110,32,32,105,102,32,40,110,97,109,101,46,99,104,97,114,65,116,40,48,41,32,33,61,32,39,95,39,32,38,38,32,33,40,110,97,109,101,32,105,110,32,36,83,121,109,98,111,108,41,41,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,36,83,121,109,98,111,108,44,32,110,97,109,101,44,32,123,32,118,97,108,117,101,58,32,119,107,115,69,120,116,46,102,40,110,97,109,101,41,32,125,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,45,100,101,102,105,110,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,45,101,120,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,45,101,120,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,101,120,112,111,114,116,115,46,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,45,101,120,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,115,116,111,114,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,104,97,114,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,104,97,114,101,100,46,106,115,92,34,41,40,39,119,107,115,39,41,59,92,110,118,97,114,32,117,105,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,117,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,105,100,46,106,115,92,34,41,59,92,110,118,97,114,32,83,121,109,98,111,108,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,46,83,121,109,98,111,108,41,59,92,110,118,97,114,32,85,83,69,95,83,89,77,66,79,76,32,61,32,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,32,39,102,117,110,99,116,105,111,110,39,59,92,110,92,110,118,97,114,32,36,101,120,112,111,114,116,115,32,61,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,116,111,114,101,91,110,97,109,101,93,32,124,124,32,40,115,116,111,114,101,91,110,97,109,101,93,32,61,92,110,32,32,32,32,85,83,69,95,83,89,77,66,79,76,32,38,38,32,83,121,109,98,111,108,91,110,97,109,101,93,32,124,124,32,40,85,83,69,95,83,89,77,66,79,76,32,63,32,83,121,109,98,111,108,32,58,32,117,105,100,41,40,39,83,121,109,98,111,108,46,39,32,43,32,110,97,109,101,41,41,59,92,110,125,59,92,110,92,110,36,101,120,112,111,114,116,115,46,115,116,111,114,101,32,61,32,115,116,111,114,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,99,111,114,101,46,103,101,116,45,105,116,101,114,97,116,111,114,45,109,101,116,104,111,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,99,111,114,101,46,103,101,116,45,105,116,101,114,97,116,111,114,45,109,101,116,104,111,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,99,108,97,115,115,111,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,108,97,115,115,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,108,97,115,115,111,102,46,106,115,92,34,41,59,92,110,118,97,114,32,73,84,69,82,65,84,79,82,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,105,116,101,114,97,116,111,114,39,41,59,92,110,118,97,114,32,73,116,101,114,97,116,111,114,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,97,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,97,116,111,114,115,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,46,103,101,116,73,116,101,114,97,116,111,114,77,101,116,104,111,100,41,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,105,102,32,40,105,116,32,33,61,32,117,110,100,101,102,105,110,101,100,41,32,114,101,116,117,114,110,32,105,116,91,73,84,69,82,65,84,79,82,93,92,110,32,32,32,32,124,124,32,105,116,91,39,64,64,105,116,101,114,97,116,111,114,39,93,92,110,32,32,32,32,124,124,32,73,116,101,114,97,116,111,114,115,91,99,108,97,115,115,111,102,40,105,116,41,93,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,99,111,114,101,46,103,101,116,45,105,116,101,114,97,116,111,114,45,109,101,116,104,111,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,99,111,112,121,45,119,105,116,104,105,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,99,111,112,121,45,119,105,116,104,105,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,50,46,49,46,51,46,51,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,99,111,112,121,87,105,116,104,105,110,40,116,97,114,103,101,116,44,32,115,116,97,114,116,44,32,101,110,100,32,61,32,116,104,105,115,46,108,101,110,103,116,104,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,44,32,39,65,114,114,97,121,39,44,32,123,32,99,111,112,121,87,105,116,104,105,110,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,99,111,112,121,45,119,105,116,104,105,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,99,111,112,121,45,119,105,116,104,105,110,46,106,115,92,34,41,32,125,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,46,106,115,92,34,41,40,39,99,111,112,121,87,105,116,104,105,110,39,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,99,111,112,121,45,119,105,116,104,105,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,101,118,101,114,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,101,118,101,114,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,101,118,101,114,121,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,46,106,115,92,34,41,40,52,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,46,106,115,92,34,41,40,91,93,46,101,118,101,114,121,44,32,116,114,117,101,41,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,47,47,32,50,50,46,49,46,51,46,53,32,47,32,49,53,46,52,46,52,46,49,54,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,101,118,101,114,121,40,99,97,108,108,98,97,99,107,102,110,32,91,44,32,116,104,105,115,65,114,103,93,41,92,110,32,32,101,118,101,114,121,58,32,102,117,110,99,116,105,111,110,32,101,118,101,114,121,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,116,104,105,115,65,114,103,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,101,118,101,114,121,40,116,104,105,115,44,32,99,97,108,108,98,97,99,107,102,110,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,101,118,101,114,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,108,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,108,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,50,46,49,46,51,46,54,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,108,108,40,118,97,108,117,101,44,32,115,116,97,114,116,32,61,32,48,44,32,101,110,100,32,61,32,116,104,105,115,46,108,101,110,103,116,104,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,44,32,39,65,114,114,97,121,39,44,32,123,32,102,105,108,108,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,102,105,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,102,105,108,108,46,106,115,92,34,41,32,125,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,46,106,115,92,34,41,40,39,102,105,108,108,39,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,108,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,108,116,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,108,116,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,102,105,108,116,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,46,106,115,92,34,41,40,50,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,46,106,115,92,34,41,40,91,93,46,102,105,108,116,101,114,44,32,116,114,117,101,41,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,47,47,32,50,50,46,49,46,51,46,55,32,47,32,49,53,46,52,46,52,46,50,48,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,108,116,101,114,40,99,97,108,108,98,97,99,107,102,110,32,91,44,32,116,104,105,115,65,114,103,93,41,92,110,32,32,102,105,108,116,101,114,58,32,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,116,104,105,115,65,114,103,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,102,105,108,116,101,114,40,116,104,105,115,44,32,99,97,108,108,98,97,99,107,102,110,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,108,116,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,110,100,45,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,110,100,45,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,50,50,46,49,46,51,46,57,32,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,40,112,114,101,100,105,99,97,116,101,44,32,116,104,105,115,65,114,103,32,61,32,117,110,100,101,102,105,110,101,100,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,102,105,110,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,46,106,115,92,34,41,40,54,41,59,92,110,118,97,114,32,75,69,89,32,61,32,39,102,105,110,100,73,110,100,101,120,39,59,92,110,118,97,114,32,102,111,114,99,101,100,32,61,32,116,114,117,101,59,92,110,47,47,32,83,104,111,117,108,100,110,39,116,32,115,107,105,112,32,104,111,108,101,115,92,110,105,102,32,40,75,69,89,32,105,110,32,91,93,41,32,65,114,114,97,121,40,49,41,91,75,69,89,93,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,102,111,114,99,101,100,32,61,32,102,97,108,115,101,59,32,125,41,59,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,102,111,114,99,101,100,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,102,105,110,100,73,110,100,101,120,58,32,102,117,110,99,116,105,111,110,32,102,105,110,100,73,110,100,101,120,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,116,104,97,116,32,61,32,117,110,100,101,102,105,110,101,100,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,102,105,110,100,40,116,104,105,115,44,32,99,97,108,108,98,97,99,107,102,110,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,125,92,110,125,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,46,106,115,92,34,41,40,75,69,89,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,110,100,45,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,50,50,46,49,46,51,46,56,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,40,112,114,101,100,105,99,97,116,101,44,32,116,104,105,115,65,114,103,32,61,32,117,110,100,101,102,105,110,101,100,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,102,105,110,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,46,106,115,92,34,41,40,53,41,59,92,110,118,97,114,32,75,69,89,32,61,32,39,102,105,110,100,39,59,92,110,118,97,114,32,102,111,114,99,101,100,32,61,32,116,114,117,101,59,92,110,47,47,32,83,104,111,117,108,100,110,39,116,32,115,107,105,112,32,104,111,108,101,115,92,110,105,102,32,40,75,69,89,32,105,110,32,91,93,41,32,65,114,114,97,121,40,49,41,91,75,69,89,93,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,102,111,114,99,101,100,32,61,32,102,97,108,115,101,59,32,125,41,59,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,102,111,114,99,101,100,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,102,105,110,100,58,32,102,117,110,99,116,105,111,110,32,102,105,110,100,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,116,104,97,116,32,61,32,117,110,100,101,102,105,110,101,100,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,102,105,110,100,40,116,104,105,115,44,32,99,97,108,108,98,97,99,107,102,110,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,125,92,110,125,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,46,106,115,92,34,41,40,75,69,89,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,105,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,111,114,45,101,97,99,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,111,114,45,101,97,99,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,102,111,114,69,97,99,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,46,106,115,92,34,41,40,48,41,59,92,110,118,97,114,32,83,84,82,73,67,84,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,46,106,115,92,34,41,40,91,93,46,102,111,114,69,97,99,104,44,32,116,114,117,101,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,83,84,82,73,67,84,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,47,47,32,50,50,46,49,46,51,46,49,48,32,47,32,49,53,46,52,46,52,46,49,56,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,40,99,97,108,108,98,97,99,107,102,110,32,91,44,32,116,104,105,115,65,114,103,93,41,92,110,32,32,102,111,114,69,97,99,104,58,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,116,104,105,115,65,114,103,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,102,111,114,69,97,99,104,40,116,104,105,115,44,32,99,97,108,108,98,97,99,107,102,110,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,111,114,45,101,97,99,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,114,111,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,114,111,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,99,116,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,116,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,92,34,41,59,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,99,97,108,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,45,99,97,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,99,97,108,108,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,65,114,114,97,121,73,116,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,97,114,114,97,121,45,105,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,97,114,114,97,121,45,105,116,101,114,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,99,114,101,97,116,101,80,114,111,112,101,114,116,121,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,114,101,97,116,101,45,112,114,111,112,101,114,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,114,101,97,116,101,45,112,114,111,112,101,114,116,121,46,106,115,92,34,41,59,92,110,118,97,114,32,103,101,116,73,116,101,114,70,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,114,101,46,103,101,116,45,105,116,101,114,97,116,111,114,45,109,101,116,104,111,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,99,111,114,101,46,103,101,116,45,105,116,101,114,97,116,111,114,45,109,101,116,104,111,100,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,45,100,101,116,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,100,101,116,101,99,116,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,105,116,101,114,41,32,123,32,65,114,114,97,121,46,102,114,111,109,40,105,116,101,114,41,59,32,125,41,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,47,47,32,50,50,46,49,46,50,46,49,32,65,114,114,97,121,46,102,114,111,109,40,97,114,114,97,121,76,105,107,101,44,32,109,97,112,102,110,32,61,32,117,110,100,101,102,105,110,101,100,44,32,116,104,105,115,65,114,103,32,61,32,117,110,100,101,102,105,110,101,100,41,92,110,32,32,102,114,111,109,58,32,102,117,110,99,116,105,111,110,32,102,114,111,109,40,97,114,114,97,121,76,105,107,101,32,47,42,32,44,32,109,97,112,102,110,32,61,32,117,110,100,101,102,105,110,101,100,44,32,116,104,105,115,65,114,103,32,61,32,117,110,100,101,102,105,110,101,100,32,42,47,41,32,123,92,110,32,32,32,32,118,97,114,32,79,32,61,32,116,111,79,98,106,101,99,116,40,97,114,114,97,121,76,105,107,101,41,59,92,110,32,32,32,32,118,97,114,32,67,32,61,32,116,121,112,101,111,102,32,116,104,105,115,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,116,104,105,115,32,58,32,65,114,114,97,121,59,92,110,32,32,32,32,118,97,114,32,97,76,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,109,97,112,102,110,32,61,32,97,76,101,110,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,118,97,114,32,109,97,112,112,105,110,103,32,61,32,109,97,112,102,110,32,33,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,105,116,101,114,70,110,32,61,32,103,101,116,73,116,101,114,70,110,40,79,41,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,44,32,114,101,115,117,108,116,44,32,115,116,101,112,44,32,105,116,101,114,97,116,111,114,59,92,110,32,32,32,32,105,102,32,40,109,97,112,112,105,110,103,41,32,109,97,112,102,110,32,61,32,99,116,120,40,109,97,112,102,110,44,32,97,76,101,110,32,62,32,50,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,117,110,100,101,102,105,110,101,100,44,32,50,41,59,92,110,32,32,32,32,47,47,32,105,102,32,111,98,106,101,99,116,32,105,115,110,39,116,32,105,116,101,114,97,98,108,101,32,111,114,32,105,116,39,115,32,97,114,114,97,121,32,119,105,116,104,32,100,101,102,97,117,108,116,32,105,116,101,114,97,116,111,114,32,45,32,117,115,101,32,115,105,109,112,108,101,32,99,97,115,101,92,110,32,32,32,32,105,102,32,40,105,116,101,114,70,110,32,33,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,33,40,67,32,61,61,32,65,114,114,97,121,32,38,38,32,105,115,65,114,114,97,121,73,116,101,114,40,105,116,101,114,70,110,41,41,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,105,116,101,114,97,116,111,114,32,61,32,105,116,101,114,70,110,46,99,97,108,108,40,79,41,44,32,114,101,115,117,108,116,32,61,32,110,101,119,32,67,40,41,59,32,33,40,115,116,101,112,32,61,32,105,116,101,114,97,116,111,114,46,110,101,120,116,40,41,41,46,100,111,110,101,59,32,105,110,100,101,120,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,80,114,111,112,101,114,116,121,40,114,101,115,117,108,116,44,32,105,110,100,101,120,44,32,109,97,112,112,105,110,103,32,63,32,99,97,108,108,40,105,116,101,114,97,116,111,114,44,32,109,97,112,102,110,44,32,91,115,116,101,112,46,118,97,108,117,101,44,32,105,110,100,101,120,93,44,32,116,114,117,101,41,32,58,32,115,116,101,112,46,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,116,111,76,101,110,103,116,104,40,79,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,102,111,114,32,40,114,101,115,117,108,116,32,61,32,110,101,119,32,67,40,108,101,110,103,116,104,41,59,32,108,101,110,103,116,104,32,62,32,105,110,100,101,120,59,32,105,110,100,101,120,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,80,114,111,112,101,114,116,121,40,114,101,115,117,108,116,44,32,105,110,100,101,120,44,32,109,97,112,112,105,110,103,32,63,32,109,97,112,102,110,40,79,91,105,110,100,101,120,93,44,32,105,110,100,101,120,41,32,58,32,79,91,105,110,100,101,120,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,115,117,108,116,46,108,101,110,103,116,104,32,61,32,105,110,100,101,120,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,102,114,111,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,110,100,101,120,45,111,102,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,110,100,101,120,45,111,102,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,105,110,100,101,120,79,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,105,110,99,108,117,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,105,110,99,108,117,100,101,115,46,106,115,92,34,41,40,102,97,108,115,101,41,59,92,110,118,97,114,32,36,110,97,116,105,118,101,32,61,32,91,93,46,105,110,100,101,120,79,102,59,92,110,118,97,114,32,78,69,71,65,84,73,86,69,95,90,69,82,79,32,61,32,33,33,36,110,97,116,105,118,101,32,38,38,32,49,32,47,32,91,49,93,46,105,110,100,101,120,79,102,40,49,44,32,45,48,41,32,60,32,48,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,78,69,71,65,84,73,86,69,95,90,69,82,79,32,124,124,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,46,106,115,92,34,41,40,36,110,97,116,105,118,101,41,41,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,47,47,32,50,50,46,49,46,51,46,49,49,32,47,32,49,53,46,52,46,52,46,49,52,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,40,115,101,97,114,99,104,69,108,101,109,101,110,116,32,91,44,32,102,114,111,109,73,110,100,101,120,93,41,92,110,32,32,105,110,100,101,120,79,102,58,32,102,117,110,99,116,105,111,110,32,105,110,100,101,120,79,102,40,115,101,97,114,99,104,69,108,101,109,101,110,116,32,47,42,32,44,32,102,114,111,109,73,110,100,101,120,32,61,32,48,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,78,69,71,65,84,73,86,69,95,90,69,82,79,92,110,32,32,32,32,32,32,47,47,32,99,111,110,118,101,114,116,32,45,48,32,116,111,32,43,48,92,110,32,32,32,32,32,32,63,32,36,110,97,116,105,118,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,124,124,32,48,92,110,32,32,32,32,32,32,58,32,36,105,110,100,101,120,79,102,40,116,104,105,115,44,32,115,101,97,114,99,104,69,108,101,109,101,110,116,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,110,100,101,120,45,111,102,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,115,45,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,115,45,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,50,46,49,46,50,46,50,32,47,32,49,53,46,52,46,51,46,50,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,103,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,65,114,114,97,121,39,44,32,123,32,105,115,65,114,114,97,121,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,97,114,114,97,121,46,106,115,92,34,41,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,115,45,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,116,101,114,97,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,116,101,114,97,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,97,100,100,84,111,85,110,115,99,111,112,97,98,108,101,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,46,106,115,92,34,41,59,92,110,118,97,114,32,115,116,101,112,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,45,115,116,101,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,115,116,101,112,46,106,115,92,34,41,59,92,110,118,97,114,32,73,116,101,114,97,116,111,114,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,97,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,97,116,111,114,115,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,92,110,47,47,32,50,50,46,49,46,51,46,52,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,101,110,116,114,105,101,115,40,41,92,110,47,47,32,50,50,46,49,46,51,46,49,51,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,107,101,121,115,40,41,92,110,47,47,32,50,50,46,49,46,51,46,50,57,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,115,40,41,92,110,47,47,32,50,50,46,49,46,51,46,51,48,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,91,64,64,105,116,101,114,97,116,111,114,93,40,41,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,45,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,100,101,102,105,110,101,46,106,115,92,34,41,40,65,114,114,97,121,44,32,39,65,114,114,97,121,39,44,32,102,117,110,99,116,105,111,110,32,40,105,116,101,114,97,116,101,100,44,32,107,105,110,100,41,32,123,92,110,32,32,116,104,105,115,46,95,116,32,61,32,116,111,73,79,98,106,101,99,116,40,105,116,101,114,97,116,101,100,41,59,32,47,47,32,116,97,114,103,101,116,92,110,32,32,116,104,105,115,46,95,105,32,61,32,48,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,110,101,120,116,32,105,110,100,101,120,92,110,32,32,116,104,105,115,46,95,107,32,61,32,107,105,110,100,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,107,105,110,100,92,110,47,47,32,50,50,46,49,46,53,46,50,46,49,32,37,65,114,114,97,121,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,37,46,110,101,120,116,40,41,92,110,125,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,79,32,61,32,116,104,105,115,46,95,116,59,92,110,32,32,118,97,114,32,107,105,110,100,32,61,32,116,104,105,115,46,95,107,59,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,116,104,105,115,46,95,105,43,43,59,92,110,32,32,105,102,32,40,33,79,32,124,124,32,105,110,100,101,120,32,62,61,32,79,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,101,112,40,49,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,107,105,110,100,32,61,61,32,39,107,101,121,115,39,41,32,114,101,116,117,114,110,32,115,116,101,112,40,48,44,32,105,110,100,101,120,41,59,92,110,32,32,105,102,32,40,107,105,110,100,32,61,61,32,39,118,97,108,117,101,115,39,41,32,114,101,116,117,114,110,32,115,116,101,112,40,48,44,32,79,91,105,110,100,101,120,93,41,59,92,110,32,32,114,101,116,117,114,110,32,115,116,101,112,40,48,44,32,91,105,110,100,101,120,44,32,79,91,105,110,100,101,120,93,93,41,59,92,110,125,44,32,39,118,97,108,117,101,115,39,41,59,92,110,92,110,47,47,32,97,114,103,117,109,101,110,116,115,76,105,115,116,91,64,64,105,116,101,114,97,116,111,114,93,32,105,115,32,37,65,114,114,97,121,80,114,111,116,111,95,118,97,108,117,101,115,37,32,40,57,46,52,46,52,46,54,44,32,57,46,52,46,52,46,55,41,92,110,73,116,101,114,97,116,111,114,115,46,65,114,103,117,109,101,110,116,115,32,61,32,73,116,101,114,97,116,111,114,115,46,65,114,114,97,121,59,92,110,92,110,97,100,100,84,111,85,110,115,99,111,112,97,98,108,101,115,40,39,107,101,121,115,39,41,59,92,110,97,100,100,84,111,85,110,115,99,111,112,97,98,108,101,115,40,39,118,97,108,117,101,115,39,41,59,92,110,97,100,100,84,111,85,110,115,99,111,112,97,98,108,101,115,40,39,101,110,116,114,105,101,115,39,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,116,101,114,97,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,106,111,105,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,106,111,105,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,50,50,46,49,46,51,46,49,51,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,106,111,105,110,40,115,101,112,97,114,97,116,111,114,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,97,114,114,97,121,74,111,105,110,32,61,32,91,93,46,106,111,105,110,59,92,110,92,110,47,47,32,102,97,108,108,98,97,99,107,32,102,111,114,32,110,111,116,32,97,114,114,97,121,45,108,105,107,101,32,115,116,114,105,110,103,115,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,111,98,106,101,99,116,46,106,115,92,34,41,32,33,61,32,79,98,106,101,99,116,32,124,124,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,46,106,115,92,34,41,40,97,114,114,97,121,74,111,105,110,41,41,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,106,111,105,110,58,32,102,117,110,99,116,105,111,110,32,106,111,105,110,40,115,101,112,97,114,97,116,111,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,74,111,105,110,46,99,97,108,108,40,116,111,73,79,98,106,101,99,116,40,116,104,105,115,41,44,32,115,101,112,97,114,97,116,111,114,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,39,44,39,32,58,32,115,101,112,97,114,97,116,111,114,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,106,111,105,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,108,97,115,116,45,105,110,100,101,120,45,111,102,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,108,97,115,116,45,105,110,100,101,120,45,111,102,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,73,110,116,101,103,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,116,101,103,101,114,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,36,110,97,116,105,118,101,32,61,32,91,93,46,108,97,115,116,73,110,100,101,120,79,102,59,92,110,118,97,114,32,78,69,71,65,84,73,86,69,95,90,69,82,79,32,61,32,33,33,36,110,97,116,105,118,101,32,38,38,32,49,32,47,32,91,49,93,46,108,97,115,116,73,110,100,101,120,79,102,40,49,44,32,45,48,41,32,60,32,48,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,78,69,71,65,84,73,86,69,95,90,69,82,79,32,124,124,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,46,106,115,92,34,41,40,36,110,97,116,105,118,101,41,41,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,47,47,32,50,50,46,49,46,51,46,49,52,32,47,32,49,53,46,52,46,52,46,49,53,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,108,97,115,116,73,110,100,101,120,79,102,40,115,101,97,114,99,104,69,108,101,109,101,110,116,32,91,44,32,102,114,111,109,73,110,100,101,120,93,41,92,110,32,32,108,97,115,116,73,110,100,101,120,79,102,58,32,102,117,110,99,116,105,111,110,32,108,97,115,116,73,110,100,101,120,79,102,40,115,101,97,114,99,104,69,108,101,109,101,110,116,32,47,42,32,44,32,102,114,111,109,73,110,100,101,120,32,61,32,64,91,42,45,49,93,32,42,47,41,32,123,92,110,32,32,32,32,47,47,32,99,111,110,118,101,114,116,32,45,48,32,116,111,32,43,48,92,110,32,32,32,32,105,102,32,40,78,69,71,65,84,73,86,69,95,90,69,82,79,41,32,114,101,116,117,114,110,32,36,110,97,116,105,118,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,124,124,32,48,59,92,110,32,32,32,32,118,97,114,32,79,32,61,32,116,111,73,79,98,106,101,99,116,40,116,104,105,115,41,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,116,111,76,101,110,103,116,104,40,79,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,41,32,105,110,100,101,120,32,61,32,77,97,116,104,46,109,105,110,40,105,110,100,101,120,44,32,116,111,73,110,116,101,103,101,114,40,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,92,110,32,32,32,32,105,102,32,40,105,110,100,101,120,32,60,32,48,41,32,105,110,100,101,120,32,61,32,108,101,110,103,116,104,32,43,32,105,110,100,101,120,59,92,110,32,32,32,32,102,111,114,32,40,59,105,110,100,101,120,32,62,61,32,48,59,32,105,110,100,101,120,45,45,41,32,105,102,32,40,105,110,100,101,120,32,105,110,32,79,41,32,105,102,32,40,79,91,105,110,100,101,120,93,32,61,61,61,32,115,101,97,114,99,104,69,108,101,109,101,110,116,41,32,114,101,116,117,114,110,32,105,110,100,101,120,32,124,124,32,48,59,92,110,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,108,97,115,116,45,105,110,100,101,120,45,111,102,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,109,97,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,109,97,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,109,97,112,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,46,106,115,92,34,41,40,49,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,46,106,115,92,34,41,40,91,93,46,109,97,112,44,32,116,114,117,101,41,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,47,47,32,50,50,46,49,46,51,46,49,53,32,47,32,49,53,46,52,46,52,46,49,57,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,109,97,112,40,99,97,108,108,98,97,99,107,102,110,32,91,44,32,116,104,105,115,65,114,103,93,41,92,110,32,32,109,97,112,58,32,102,117,110,99,116,105,111,110,32,109,97,112,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,116,104,105,115,65,114,103,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,109,97,112,40,116,104,105,115,44,32,99,97,108,108,98,97,99,107,102,110,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,109,97,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,111,102,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,111,102,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,99,114,101,97,116,101,80,114,111,112,101,114,116,121,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,114,101,97,116,101,45,112,114,111,112,101,114,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,114,101,97,116,101,45,112,114,111,112,101,114,116,121,46,106,115,92,34,41,59,92,110,92,110,47,47,32,87,101,98,75,105,116,32,65,114,114,97,121,46,111,102,32,105,115,110,39,116,32,103,101,110,101,114,105,99,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,70,40,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,92,110,32,32,114,101,116,117,114,110,32,33,40,65,114,114,97,121,46,111,102,46,99,97,108,108,40,70,41,32,105,110,115,116,97,110,99,101,111,102,32,70,41,59,92,110,125,41,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,47,47,32,50,50,46,49,46,50,46,51,32,65,114,114,97,121,46,111,102,40,32,46,46,46,105,116,101,109,115,41,92,110,32,32,111,102,58,32,102,117,110,99,116,105,111,110,32,111,102,40,47,42,32,46,46,46,97,114,103,115,32,42,47,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,97,76,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,110,101,119,32,40,116,121,112,101,111,102,32,116,104,105,115,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,116,104,105,115,32,58,32,65,114,114,97,121,41,40,97,76,101,110,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,97,76,101,110,32,62,32,105,110,100,101,120,41,32,99,114,101,97,116,101,80,114,111,112,101,114,116,121,40,114,101,115,117,108,116,44,32,105,110,100,101,120,44,32,97,114,103,117,109,101,110,116,115,91,105,110,100,101,120,43,43,93,41,59,92,110,32,32,32,32,114,101,115,117,108,116,46,108,101,110,103,116,104,32,61,32,97,76,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,111,102,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,114,101,100,117,99,101,45,114,105,103,104,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,114,101,100,117,99,101,45,114,105,103,104,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,114,101,100,117,99,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,114,101,100,117,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,114,101,100,117,99,101,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,46,106,115,92,34,41,40,91,93,46,114,101,100,117,99,101,82,105,103,104,116,44,32,116,114,117,101,41,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,47,47,32,50,50,46,49,46,51,46,49,57,32,47,32,49,53,46,52,46,52,46,50,50,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,114,101,100,117,99,101,82,105,103,104,116,40,99,97,108,108,98,97,99,107,102,110,32,91,44,32,105,110,105,116,105,97,108,86,97,108,117,101,93,41,92,110,32,32,114,101,100,117,99,101,82,105,103,104,116,58,32,102,117,110,99,116,105,111,110,32,114,101,100,117,99,101,82,105,103,104,116,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,105,110,105,116,105,97,108,86,97,108,117,101,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,114,101,100,117,99,101,40,116,104,105,115,44,32,99,97,108,108,98,97,99,107,102,110,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,32,97,114,103,117,109,101,110,116,115,91,49,93,44,32,116,114,117,101,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,114,101,100,117,99,101,45,114,105,103,104,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,114,101,100,117,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,114,101,100,117,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,114,101,100,117,99,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,114,101,100,117,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,114,101,100,117,99,101,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,46,106,115,92,34,41,40,91,93,46,114,101,100,117,99,101,44,32,116,114,117,101,41,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,47,47,32,50,50,46,49,46,51,46,49,56,32,47,32,49,53,46,52,46,52,46,50,49,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,114,101,100,117,99,101,40,99,97,108,108,98,97,99,107,102,110,32,91,44,32,105,110,105,116,105,97,108,86,97,108,117,101,93,41,92,110,32,32,114,101,100,117,99,101,58,32,102,117,110,99,116,105,111,110,32,114,101,100,117,99,101,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,105,110,105,116,105,97,108,86,97,108,117,101,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,114,101,100,117,99,101,40,116,104,105,115,44,32,99,97,108,108,98,97,99,107,102,110,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,32,97,114,103,117,109,101,110,116,115,91,49,93,44,32,102,97,108,115,101,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,114,101,100,117,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,108,105,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,108,105,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,104,116,109,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,116,109,108,46,106,115,92,34,41,59,92,110,118,97,114,32,99,111,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,102,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,97,114,114,97,121,83,108,105,99,101,32,61,32,91,93,46,115,108,105,99,101,59,92,110,92,110,47,47,32,102,97,108,108,98,97,99,107,32,102,111,114,32,110,111,116,32,97,114,114,97,121,45,108,105,107,101,32,69,83,51,32,115,116,114,105,110,103,115,32,97,110,100,32,68,79,77,32,111,98,106,101,99,116,115,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,105,102,32,40,104,116,109,108,41,32,97,114,114,97,121,83,108,105,99,101,46,99,97,108,108,40,104,116,109,108,41,59,92,110,125,41,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,115,108,105,99,101,58,32,102,117,110,99,116,105,111,110,32,115,108,105,99,101,40,98,101,103,105,110,44,32,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,108,101,110,32,61,32,116,111,76,101,110,103,116,104,40,116,104,105,115,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,118,97,114,32,107,108,97,115,115,32,61,32,99,111,102,40,116,104,105,115,41,59,92,110,32,32,32,32,101,110,100,32,61,32,101,110,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,108,101,110,32,58,32,101,110,100,59,92,110,32,32,32,32,105,102,32,40,107,108,97,115,115,32,61,61,32,39,65,114,114,97,121,39,41,32,114,101,116,117,114,110,32,97,114,114,97,121,83,108,105,99,101,46,99,97,108,108,40,116,104,105,115,44,32,98,101,103,105,110,44,32,101,110,100,41,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,32,61,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,40,98,101,103,105,110,44,32,108,101,110,41,59,92,110,32,32,32,32,118,97,114,32,117,112,84,111,32,61,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,40,101,110,100,44,32,108,101,110,41,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,116,111,76,101,110,103,116,104,40,117,112,84,111,32,45,32,115,116,97,114,116,41,59,92,110,32,32,32,32,118,97,114,32,99,108,111,110,101,100,32,61,32,110,101,119,32,65,114,114,97,121,40,115,105,122,101,41,59,92,110,32,32,32,32,118,97,114,32,105,32,61,32,48,59,92,110,32,32,32,32,102,111,114,32,40,59,32,105,32,60,32,115,105,122,101,59,32,105,43,43,41,32,99,108,111,110,101,100,91,105,93,32,61,32,107,108,97,115,115,32,61,61,32,39,83,116,114,105,110,103,39,92,110,32,32,32,32,32,32,63,32,116,104,105,115,46,99,104,97,114,65,116,40,115,116,97,114,116,32,43,32,105,41,92,110,32,32,32,32,32,32,58,32,116,104,105,115,91,115,116,97,114,116,32,43,32,105,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,108,111,110,101,100,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,108,105,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,111,109,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,111,109,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,115,111,109,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,46,106,115,92,34,41,40,51,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,46,106,115,92,34,41,40,91,93,46,115,111,109,101,44,32,116,114,117,101,41,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,47,47,32,50,50,46,49,46,51,46,50,51,32,47,32,49,53,46,52,46,52,46,49,55,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,111,109,101,40,99,97,108,108,98,97,99,107,102,110,32,91,44,32,116,104,105,115,65,114,103,93,41,92,110,32,32,115,111,109,101,58,32,102,117,110,99,116,105,111,110,32,115,111,109,101,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,116,104,105,115,65,114,103,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,115,111,109,101,40,116,104,105,115,44,32,99,97,108,108,98,97,99,107,102,110,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,111,109,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,111,114,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,111,114,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,97,70,117,110,99,116,105,111,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,45,102,117,110,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,102,97,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,36,115,111,114,116,32,61,32,91,93,46,115,111,114,116,59,92,110,118,97,114,32,116,101,115,116,32,61,32,91,49,44,32,50,44,32,51,93,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,47,47,32,73,69,56,45,92,110,32,32,116,101,115,116,46,115,111,114,116,40,117,110,100,101,102,105,110,101,100,41,59,92,110,125,41,32,124,124,32,33,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,47,47,32,86,56,32,98,117,103,92,110,32,32,116,101,115,116,46,115,111,114,116,40,110,117,108,108,41,59,92,110,32,32,47,47,32,79,108,100,32,87,101,98,75,105,116,92,110,125,41,32,124,124,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,99,116,45,109,101,116,104,111,100,46,106,115,92,34,41,40,36,115,111,114,116,41,41,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,47,47,32,50,50,46,49,46,51,46,50,53,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,111,114,116,40,99,111,109,112,97,114,101,102,110,41,92,110,32,32,115,111,114,116,58,32,102,117,110,99,116,105,111,110,32,115,111,114,116,40,99,111,109,112,97,114,101,102,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,97,114,101,102,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,63,32,36,115,111,114,116,46,99,97,108,108,40,116,111,79,98,106,101,99,116,40,116,104,105,115,41,41,92,110,32,32,32,32,32,32,58,32,36,115,111,114,116,46,99,97,108,108,40,116,111,79,98,106,101,99,116,40,116,104,105,115,41,44,32,97,70,117,110,99,116,105,111,110,40,99,111,109,112,97,114,101,102,110,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,111,114,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,112,101,99,105,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,112,101,99,105,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,101,116,45,115,112,101,99,105,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,115,112,101,99,105,101,115,46,106,115,92,34,41,40,39,65,114,114,97,121,39,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,115,112,101,99,105,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,110,111,119,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,110,111,119,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,51,46,51,46,49,32,47,32,49,53,46,57,46,52,46,52,32,68,97,116,101,46,110,111,119,40,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,68,97,116,101,39,44,32,123,32,110,111,119,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,41,46,103,101,116,84,105,109,101,40,41,59,32,125,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,110,111,119,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,105,115,111,45,115,116,114,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,105,115,111,45,115,116,114,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,51,46,52,46,51,54,32,47,32,49,53,46,57,46,53,46,52,51,32,68,97,116,101,46,112,114,111,116,111,116,121,112,101,46,116,111,73,83,79,83,116,114,105,110,103,40,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,73,83,79,83,116,114,105,110,103,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,97,116,101,45,116,111,45,105,115,111,45,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,97,116,101,45,116,111,45,105,115,111,45,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,92,110,47,47,32,80,104,97,110,116,111,109,74,83,32,47,32,111,108,100,32,87,101,98,75,105,116,32,104,97,115,32,97,32,98,114,111,107,101,110,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,115,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,68,97,116,101,46,112,114,111,116,111,116,121,112,101,46,116,111,73,83,79,83,116,114,105,110,103,32,33,61,61,32,116,111,73,83,79,83,116,114,105,110,103,41,44,32,39,68,97,116,101,39,44,32,123,92,110,32,32,116,111,73,83,79,83,116,114,105,110,103,58,32,116,111,73,83,79,83,116,114,105,110,103,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,105,115,111,45,115,116,114,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,106,115,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,106,115,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,80,114,105,109,105,116,105,118,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,112,114,105,109,105,116,105,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,78,97,78,41,46,116,111,74,83,79,78,40,41,32,33,61,61,32,110,117,108,108,92,110,32,32,32,32,124,124,32,68,97,116,101,46,112,114,111,116,111,116,121,112,101,46,116,111,74,83,79,78,46,99,97,108,108,40,123,32,116,111,73,83,79,83,116,114,105,110,103,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,49,59,32,125,32,125,41,32,33,61,61,32,49,59,92,110,125,41,44,32,39,68,97,116,101,39,44,32,123,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,117,110,117,115,101,100,45,118,97,114,115,92,110,32,32,116,111,74,83,79,78,58,32,102,117,110,99,116,105,111,110,32,116,111,74,83,79,78,40,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,79,32,61,32,116,111,79,98,106,101,99,116,40,116,104,105,115,41,59,92,110,32,32,32,32,118,97,114,32,112,118,32,61,32,116,111,80,114,105,109,105,116,105,118,101,40,79,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,112,118,32,61,61,32,39,110,117,109,98,101,114,39,32,38,38,32,33,105,115,70,105,110,105,116,101,40,112,118,41,32,63,32,110,117,108,108,32,58,32,79,46,116,111,73,83,79,83,116,114,105,110,103,40,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,106,115,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,84,79,95,80,82,73,77,73,84,73,86,69,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,116,111,80,114,105,109,105,116,105,118,101,39,41,59,92,110,118,97,114,32,112,114,111,116,111,32,61,32,68,97,116,101,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,105,102,32,40,33,40,84,79,95,80,82,73,77,73,84,73,86,69,32,105,110,32,112,114,111,116,111,41,41,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,92,34,41,40,112,114,111,116,111,44,32,84,79,95,80,82,73,77,73,84,73,86,69,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,97,116,101,45,116,111,45,112,114,105,109,105,116,105,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,97,116,101,45,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,92,34,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,115,116,114,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,115,116,114,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,68,97,116,101,80,114,111,116,111,32,61,32,68,97,116,101,46,112,114,111,116,111,116,121,112,101,59,92,110,118,97,114,32,73,78,86,65,76,73,68,95,68,65,84,69,32,61,32,39,73,110,118,97,108,105,100,32,68,97,116,101,39,59,92,110,118,97,114,32,84,79,95,83,84,82,73,78,71,32,61,32,39,116,111,83,116,114,105,110,103,39,59,92,110,118,97,114,32,36,116,111,83,116,114,105,110,103,32,61,32,68,97,116,101,80,114,111,116,111,91,84,79,95,83,84,82,73,78,71,93,59,92,110,118,97,114,32,103,101,116,84,105,109,101,32,61,32,68,97,116,101,80,114,111,116,111,46,103,101,116,84,105,109,101,59,92,110,105,102,32,40,110,101,119,32,68,97,116,101,40,78,97,78,41,32,43,32,39,39,32,33,61,32,73,78,86,65,76,73,68,95,68,65,84,69,41,32,123,92,110,32,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,92,34,41,40,68,97,116,101,80,114,111,116,111,44,32,84,79,95,83,84,82,73,78,71,44,32,102,117,110,99,116,105,111,110,32,116,111,83,116,114,105,110,103,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,103,101,116,84,105,109,101,46,99,97,108,108,40,116,104,105,115,41,59,92,110,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,115,101,108,102,45,99,111,109,112,97,114,101,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,118,97,108,117,101,32,63,32,36,116,111,83,116,114,105,110,103,46,99,97,108,108,40,116,104,105,115,41,32,58,32,73,78,86,65,76,73,68,95,68,65,84,69,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,100,97,116,101,46,116,111,45,115,116,114,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,102,117,110,99,116,105,111,110,46,98,105,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,102,117,110,99,116,105,111,110,46,98,105,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,50,46,51,46,50,32,47,32,49,53,46,51,46,52,46,53,32,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,98,105,110,100,40,116,104,105,115,65,114,103,44,32,97,114,103,115,46,46,46,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,44,32,39,70,117,110,99,116,105,111,110,39,44,32,123,32,98,105,110,100,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,98,105,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,98,105,110,100,46,106,115,92,34,41,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,102,117,110,99,116,105,111,110,46,98,105,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,102,117,110,99,116,105,111,110,46,104,97,115,45,105,110,115,116,97,110,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,102,117,110,99,116,105,111,110,46,104,97,115,45,105,110,115,116,97,110,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,112,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,112,111,46,106,115,92,34,41,59,92,110,118,97,114,32,72,65,83,95,73,78,83,84,65,78,67,69,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,104,97,115,73,110,115,116,97,110,99,101,39,41,59,92,110,118,97,114,32,70,117,110,99,116,105,111,110,80,114,111,116,111,32,61,32,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,59,92,110,47,47,32,49,57,46,50,46,51,46,54,32,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,91,64,64,104,97,115,73,110,115,116,97,110,99,101,93,40,86,41,92,110,105,102,32,40,33,40,72,65,83,95,73,78,83,84,65,78,67,69,32,105,110,32,70,117,110,99,116,105,111,110,80,114,111,116,111,41,41,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,46,102,41,40,70,117,110,99,116,105,111,110,80,114,111,116,111,44,32,72,65,83,95,73,78,83,84,65,78,67,69,44,32,123,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,40,79,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,116,104,105,115,32,33,61,32,39,102,117,110,99,116,105,111,110,39,32,124,124,32,33,105,115,79,98,106,101,99,116,40,79,41,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,116,104,105,115,46,112,114,111,116,111,116,121,112,101,41,41,32,114,101,116,117,114,110,32,79,32,105,110,115,116,97,110,99,101,111,102,32,116,104,105,115,59,92,110,32,32,47,47,32,102,111,114,32,101,110,118,105,114,111,110,109,101,110,116,32,119,47,111,32,110,97,116,105,118,101,32,96,64,64,104,97,115,73,110,115,116,97,110,99,101,96,32,108,111,103,105,99,32,101,110,111,117,103,104,32,96,105,110,115,116,97,110,99,101,111,102,96,44,32,98,117,116,32,97,100,100,32,116,104,105,115,58,92,110,32,32,119,104,105,108,101,32,40,79,32,61,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,79,41,41,32,105,102,32,40,116,104,105,115,46,112,114,111,116,111,116,121,112,101,32,61,61,61,32,79,41,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,125,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,102,117,110,99,116,105,111,110,46,104,97,115,45,105,110,115,116,97,110,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,102,117,110,99,116,105,111,110,46,110,97,109,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,102,117,110,99,116,105,111,110,46,110,97,109,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,100,80,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,46,102,41,59,92,110,118,97,114,32,70,80,114,111,116,111,32,61,32,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,59,92,110,118,97,114,32,110,97,109,101,82,69,32,61,32,47,94,92,92,115,42,102,117,110,99,116,105,111,110,32,40,91,94,32,40,93,42,41,47,59,92,110,118,97,114,32,78,65,77,69,32,61,32,39,110,97,109,101,39,59,92,110,92,110,47,47,32,49,57,46,50,46,52,46,50,32,110,97,109,101,92,110,78,65,77,69,32,105,110,32,70,80,114,111,116,111,32,124,124,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,32,38,38,32,100,80,40,70,80,114,111,116,111,44,32,78,65,77,69,44,32,123,92,110,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,39,39,32,43,32,116,104,105,115,41,46,109,97,116,99,104,40,110,97,109,101,82,69,41,91,49,93,59,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,39,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,102,117,110,99,116,105,111,110,46,110,97,109,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,115,116,114,111,110,103,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,108,108,101,99,116,105,111,110,45,115,116,114,111,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,45,115,116,114,111,110,103,46,106,115,92,34,41,59,92,110,118,97,114,32,118,97,108,105,100,97,116,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,77,65,80,32,61,32,39,77,97,112,39,59,92,110,92,110,47,47,32,50,51,46,49,32,77,97,112,32,79,98,106,101,99,116,115,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,108,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,46,106,115,92,34,41,40,77,65,80,44,32,102,117,110,99,116,105,111,110,32,40,103,101,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,77,97,112,40,41,32,123,32,114,101,116,117,114,110,32,103,101,116,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,32,125,59,92,110,125,44,32,123,92,110,32,32,47,47,32,50,51,46,49,46,51,46,54,32,77,97,112,46,112,114,111,116,111,116,121,112,101,46,103,101,116,40,107,101,121,41,92,110,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,115,116,114,111,110,103,46,103,101,116,69,110,116,114,121,40,118,97,108,105,100,97,116,101,40,116,104,105,115,44,32,77,65,80,41,44,32,107,101,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,101,110,116,114,121,32,38,38,32,101,110,116,114,121,46,118,59,92,110,32,32,125,44,92,110,32,32,47,47,32,50,51,46,49,46,51,46,57,32,77,97,112,46,112,114,111,116,111,116,121,112,101,46,115,101,116,40,107,101,121,44,32,118,97,108,117,101,41,92,110,32,32,115,101,116,58,32,102,117,110,99,116,105,111,110,32,115,101,116,40,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,111,110,103,46,100,101,102,40,118,97,108,105,100,97,116,101,40,116,104,105,115,44,32,77,65,80,41,44,32,107,101,121,32,61,61,61,32,48,32,63,32,48,32,58,32,107,101,121,44,32,118,97,108,117,101,41,59,92,110,32,32,125,92,110,125,44,32,115,116,114,111,110,103,44,32,116,114,117,101,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,97,99,111,115,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,97,99,111,115,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,51,32,77,97,116,104,46,97,99,111,115,104,40,120,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,108,111,103,49,112,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,97,116,104,45,108,111,103,49,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,108,111,103,49,112,46,106,115,92,34,41,59,92,110,118,97,114,32,115,113,114,116,32,61,32,77,97,116,104,46,115,113,114,116,59,92,110,118,97,114,32,36,97,99,111,115,104,32,61,32,77,97,116,104,46,97,99,111,115,104,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,40,36,97,99,111,115,104,92,110,32,32,47,47,32,86,56,32,98,117,103,58,32,104,116,116,112,115,58,47,47,99,111,100,101,46,103,111,111,103,108,101,46,99,111,109,47,112,47,118,56,47,105,115,115,117,101,115,47,100,101,116,97,105,108,63,105,100,61,51,53,48,57,92,110,32,32,38,38,32,77,97,116,104,46,102,108,111,111,114,40,36,97,99,111,115,104,40,78,117,109,98,101,114,46,77,65,88,95,86,65,76,85,69,41,41,32,61,61,32,55,49,48,92,110,32,32,47,47,32,84,111,114,32,66,114,111,119,115,101,114,32,98,117,103,58,32,77,97,116,104,46,97,99,111,115,104,40,73,110,102,105,110,105,116,121,41,32,45,62,32,78,97,78,92,110,32,32,38,38,32,36,97,99,111,115,104,40,73,110,102,105,110,105,116,121,41,32,61,61,32,73,110,102,105,110,105,116,121,92,110,41,44,32,39,77,97,116,104,39,44,32,123,92,110,32,32,97,99,111,115,104,58,32,102,117,110,99,116,105,111,110,32,97,99,111,115,104,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,120,32,61,32,43,120,41,32,60,32,49,32,63,32,78,97,78,32,58,32,120,32,62,32,57,52,57,48,54,50,54,53,46,54,50,52,50,53,49,53,54,92,110,32,32,32,32,32,32,63,32,77,97,116,104,46,108,111,103,40,120,41,32,43,32,77,97,116,104,46,76,78,50,92,110,32,32,32,32,32,32,58,32,108,111,103,49,112,40,120,32,45,32,49,32,43,32,115,113,114,116,40,120,32,45,32,49,41,32,42,32,115,113,114,116,40,120,32,43,32,49,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,97,99,111,115,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,97,115,105,110,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,97,115,105,110,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,53,32,77,97,116,104,46,97,115,105,110,104,40,120,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,97,115,105,110,104,32,61,32,77,97,116,104,46,97,115,105,110,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,97,115,105,110,104,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,105,115,70,105,110,105,116,101,40,120,32,61,32,43,120,41,32,124,124,32,120,32,61,61,32,48,32,63,32,120,32,58,32,120,32,60,32,48,32,63,32,45,97,115,105,110,104,40,45,120,41,32,58,32,77,97,116,104,46,108,111,103,40,120,32,43,32,77,97,116,104,46,115,113,114,116,40,120,32,42,32,120,32,43,32,49,41,41,59,92,110,125,92,110,92,110,47,47,32,84,111,114,32,66,114,111,119,115,101,114,32,98,117,103,58,32,77,97,116,104,46,97,115,105,110,104,40,48,41,32,45,62,32,45,48,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,40,36,97,115,105,110,104,32,38,38,32,49,32,47,32,36,97,115,105,110,104,40,48,41,32,62,32,48,41,44,32,39,77,97,116,104,39,44,32,123,32,97,115,105,110,104,58,32,97,115,105,110,104,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,97,115,105,110,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,97,116,97,110,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,97,116,97,110,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,55,32,77,97,116,104,46,97,116,97,110,104,40,120,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,97,116,97,110,104,32,61,32,77,97,116,104,46,97,116,97,110,104,59,92,110,92,110,47,47,32,84,111,114,32,66,114,111,119,115,101,114,32,98,117,103,58,32,77,97,116,104,46,97,116,97,110,104,40,45,48,41,32,45,62,32,48,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,40,36,97,116,97,110,104,32,38,38,32,49,32,47,32,36,97,116,97,110,104,40,45,48,41,32,60,32,48,41,44,32,39,77,97,116,104,39,44,32,123,92,110,32,32,97,116,97,110,104,58,32,102,117,110,99,116,105,111,110,32,97,116,97,110,104,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,120,32,61,32,43,120,41,32,61,61,32,48,32,63,32,120,32,58,32,77,97,116,104,46,108,111,103,40,40,49,32,43,32,120,41,32,47,32,40,49,32,45,32,120,41,41,32,47,32,50,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,97,116,97,110,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,99,98,114,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,99,98,114,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,57,32,77,97,116,104,46,99,98,114,116,40,120,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,115,105,103,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,97,116,104,45,115,105,103,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,115,105,103,110,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,77,97,116,104,39,44,32,123,92,110,32,32,99,98,114,116,58,32,102,117,110,99,116,105,111,110,32,99,98,114,116,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,105,103,110,40,120,32,61,32,43,120,41,32,42,32,77,97,116,104,46,112,111,119,40,77,97,116,104,46,97,98,115,40,120,41,44,32,49,32,47,32,51,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,99,98,114,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,99,108,122,51,50,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,99,108,122,51,50,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,49,49,32,77,97,116,104,46,99,108,122,51,50,40,120,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,77,97,116,104,39,44,32,123,92,110,32,32,99,108,122,51,50,58,32,102,117,110,99,116,105,111,110,32,99,108,122,51,50,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,120,32,62,62,62,61,32,48,41,32,63,32,51,49,32,45,32,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,120,32,43,32,48,46,53,41,32,42,32,77,97,116,104,46,76,79,71,50,69,41,32,58,32,51,50,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,99,108,122,51,50,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,99,111,115,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,99,111,115,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,49,50,32,77,97,116,104,46,99,111,115,104,40,120,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,101,120,112,32,61,32,77,97,116,104,46,101,120,112,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,77,97,116,104,39,44,32,123,92,110,32,32,99,111,115,104,58,32,102,117,110,99,116,105,111,110,32,99,111,115,104,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,101,120,112,40,120,32,61,32,43,120,41,32,43,32,101,120,112,40,45,120,41,41,32,47,32,50,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,99,111,115,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,101,120,112,109,49,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,101,120,112,109,49,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,49,52,32,77,97,116,104,46,101,120,112,109,49,40,120,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,101,120,112,109,49,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,97,116,104,45,101,120,112,109,49,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,101,120,112,109,49,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,36,101,120,112,109,49,32,33,61,32,77,97,116,104,46,101,120,112,109,49,41,44,32,39,77,97,116,104,39,44,32,123,32,101,120,112,109,49,58,32,36,101,120,112,109,49,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,101,120,112,109,49,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,102,114,111,117,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,102,114,111,117,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,49,54,32,77,97,116,104,46,102,114,111,117,110,100,40,120,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,77,97,116,104,39,44,32,123,32,102,114,111,117,110,100,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,97,116,104,45,102,114,111,117,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,102,114,111,117,110,100,46,106,115,92,34,41,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,102,114,111,117,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,104,121,112,111,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,104,121,112,111,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,49,55,32,77,97,116,104,46,104,121,112,111,116,40,91,118,97,108,117,101,49,91,44,32,118,97,108,117,101,50,91,44,32,226,128,166,32,93,93,93,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,97,98,115,32,61,32,77,97,116,104,46,97,98,115,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,77,97,116,104,39,44,32,123,92,110,32,32,104,121,112,111,116,58,32,102,117,110,99,116,105,111,110,32,104,121,112,111,116,40,118,97,108,117,101,49,44,32,118,97,108,117,101,50,41,32,123,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,117,110,117,115,101,100,45,118,97,114,115,92,110,32,32,32,32,118,97,114,32,115,117,109,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,105,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,97,76,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,108,97,114,103,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,97,114,103,44,32,100,105,118,59,92,110,32,32,32,32,119,104,105,108,101,32,40,105,32,60,32,97,76,101,110,41,32,123,92,110,32,32,32,32,32,32,97,114,103,32,61,32,97,98,115,40,97,114,103,117,109,101,110,116,115,91,105,43,43,93,41,59,92,110,32,32,32,32,32,32,105,102,32,40,108,97,114,103,32,60,32,97,114,103,41,32,123,92,110,32,32,32,32,32,32,32,32,100,105,118,32,61,32,108,97,114,103,32,47,32,97,114,103,59,92,110,32,32,32,32,32,32,32,32,115,117,109,32,61,32,115,117,109,32,42,32,100,105,118,32,42,32,100,105,118,32,43,32,49,59,92,110,32,32,32,32,32,32,32,32,108,97,114,103,32,61,32,97,114,103,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,97,114,103,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,100,105,118,32,61,32,97,114,103,32,47,32,108,97,114,103,59,92,110,32,32,32,32,32,32,32,32,115,117,109,32,43,61,32,100,105,118,32,42,32,100,105,118,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,115,117,109,32,43,61,32,97,114,103,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,108,97,114,103,32,61,61,61,32,73,110,102,105,110,105,116,121,32,63,32,73,110,102,105,110,105,116,121,32,58,32,108,97,114,103,32,42,32,77,97,116,104,46,115,113,114,116,40,115,117,109,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,104,121,112,111,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,105,109,117,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,105,109,117,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,49,56,32,77,97,116,104,46,105,109,117,108,40,120,44,32,121,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,105,109,117,108,32,61,32,77,97,116,104,46,105,109,117,108,59,92,110,92,110,47,47,32,115,111,109,101,32,87,101,98,75,105,116,32,118,101,114,115,105,111,110,115,32,102,97,105,108,115,32,119,105,116,104,32,98,105,103,32,110,117,109,98,101,114,115,44,32,115,111,109,101,32,104,97,115,32,119,114,111,110,103,32,97,114,105,116,121,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,36,105,109,117,108,40,48,120,102,102,102,102,102,102,102,102,44,32,53,41,32,33,61,32,45,53,32,124,124,32,36,105,109,117,108,46,108,101,110,103,116,104,32,33,61,32,50,59,92,110,125,41,44,32,39,77,97,116,104,39,44,32,123,92,110,32,32,105,109,117,108,58,32,102,117,110,99,116,105,111,110,32,105,109,117,108,40,120,44,32,121,41,32,123,92,110,32,32,32,32,118,97,114,32,85,73,78,84,49,54,32,61,32,48,120,102,102,102,102,59,92,110,32,32,32,32,118,97,114,32,120,110,32,61,32,43,120,59,92,110,32,32,32,32,118,97,114,32,121,110,32,61,32,43,121,59,92,110,32,32,32,32,118,97,114,32,120,108,32,61,32,85,73,78,84,49,54,32,38,32,120,110,59,92,110,32,32,32,32,118,97,114,32,121,108,32,61,32,85,73,78,84,49,54,32,38,32,121,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,48,32,124,32,120,108,32,42,32,121,108,32,43,32,40,40,85,73,78,84,49,54,32,38,32,120,110,32,62,62,62,32,49,54,41,32,42,32,121,108,32,43,32,120,108,32,42,32,40,85,73,78,84,49,54,32,38,32,121,110,32,62,62,62,32,49,54,41,32,60,60,32,49,54,32,62,62,62,32,48,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,105,109,117,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,108,111,103,49,48,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,108,111,103,49,48,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,50,49,32,77,97,116,104,46,108,111,103,49,48,40,120,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,77,97,116,104,39,44,32,123,92,110,32,32,108,111,103,49,48,58,32,102,117,110,99,116,105,111,110,32,108,111,103,49,48,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,108,111,103,40,120,41,32,42,32,77,97,116,104,46,76,79,71,49,48,69,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,108,111,103,49,48,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,108,111,103,49,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,108,111,103,49,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,50,48,32,77,97,116,104,46,108,111,103,49,112,40,120,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,77,97,116,104,39,44,32,123,32,108,111,103,49,112,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,97,116,104,45,108,111,103,49,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,108,111,103,49,112,46,106,115,92,34,41,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,108,111,103,49,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,108,111,103,50,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,108,111,103,50,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,50,50,32,77,97,116,104,46,108,111,103,50,40,120,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,77,97,116,104,39,44,32,123,92,110,32,32,108,111,103,50,58,32,102,117,110,99,116,105,111,110,32,108,111,103,50,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,108,111,103,40,120,41,32,47,32,77,97,116,104,46,76,78,50,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,108,111,103,50,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,115,105,103,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,115,105,103,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,50,56,32,77,97,116,104,46,115,105,103,110,40,120,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,77,97,116,104,39,44,32,123,32,115,105,103,110,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,97,116,104,45,115,105,103,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,115,105,103,110,46,106,115,92,34,41,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,115,105,103,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,115,105,110,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,115,105,110,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,51,48,32,77,97,116,104,46,115,105,110,104,40,120,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,101,120,112,109,49,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,97,116,104,45,101,120,112,109,49,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,101,120,112,109,49,46,106,115,92,34,41,59,92,110,118,97,114,32,101,120,112,32,61,32,77,97,116,104,46,101,120,112,59,92,110,92,110,47,47,32,86,56,32,110,101,97,114,32,67,104,114,111,109,105,117,109,32,51,56,32,104,97,115,32,97,32,112,114,111,98,108,101,109,32,119,105,116,104,32,118,101,114,121,32,115,109,97,108,108,32,110,117,109,98,101,114,115,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,77,97,116,104,46,115,105,110,104,40,45,50,101,45,49,55,41,32,33,61,32,45,50,101,45,49,55,59,92,110,125,41,44,32,39,77,97,116,104,39,44,32,123,92,110,32,32,115,105,110,104,58,32,102,117,110,99,116,105,111,110,32,115,105,110,104,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,97,98,115,40,120,32,61,32,43,120,41,32,60,32,49,92,110,32,32,32,32,32,32,63,32,40,101,120,112,109,49,40,120,41,32,45,32,101,120,112,109,49,40,45,120,41,41,32,47,32,50,92,110,32,32,32,32,32,32,58,32,40,101,120,112,40,120,32,45,32,49,41,32,45,32,101,120,112,40,45,120,32,45,32,49,41,41,32,42,32,40,77,97,116,104,46,69,32,47,32,50,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,115,105,110,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,116,97,110,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,116,97,110,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,51,51,32,77,97,116,104,46,116,97,110,104,40,120,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,101,120,112,109,49,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,97,116,104,45,101,120,112,109,49,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,97,116,104,45,101,120,112,109,49,46,106,115,92,34,41,59,92,110,118,97,114,32,101,120,112,32,61,32,77,97,116,104,46,101,120,112,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,77,97,116,104,39,44,32,123,92,110,32,32,116,97,110,104,58,32,102,117,110,99,116,105,111,110,32,116,97,110,104,40,120,41,32,123,92,110,32,32,32,32,118,97,114,32,97,32,61,32,101,120,112,109,49,40,120,32,61,32,43,120,41,59,92,110,32,32,32,32,118,97,114,32,98,32,61,32,101,120,112,109,49,40,45,120,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,97,32,61,61,32,73,110,102,105,110,105,116,121,32,63,32,49,32,58,32,98,32,61,61,32,73,110,102,105,110,105,116,121,32,63,32,45,49,32,58,32,40,97,32,45,32,98,41,32,47,32,40,101,120,112,40,120,41,32,43,32,101,120,112,40,45,120,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,116,97,110,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,116,114,117,110,99,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,116,114,117,110,99,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,50,46,50,46,51,52,32,77,97,116,104,46,116,114,117,110,99,40,120,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,77,97,116,104,39,44,32,123,92,110,32,32,116,114,117,110,99,58,32,102,117,110,99,116,105,111,110,32,116,114,117,110,99,40,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,105,116,32,62,32,48,32,63,32,77,97,116,104,46,102,108,111,111,114,32,58,32,77,97,116,104,46,99,101,105,108,41,40,105,116,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,109,97,116,104,46,116,114,117,110,99,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,99,111,110,115,116,114,117,99,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,99,111,110,115,116,114,117,99,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,104,97,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,97,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,92,34,41,59,92,110,118,97,114,32,99,111,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,102,46,106,115,92,34,41,59,92,110,118,97,114,32,105,110,104,101,114,105,116,73,102,82,101,113,117,105,114,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,110,104,101,114,105,116,45,105,102,45,114,101,113,117,105,114,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,110,104,101,114,105,116,45,105,102,45,114,101,113,117,105,114,101,100,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,80,114,105,109,105,116,105,118,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,112,114,105,109,105,116,105,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,92,34,41,59,92,110,118,97,114,32,102,97,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,103,79,80,78,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,110,46,106,115,92,34,41,46,102,41,59,92,110,118,97,114,32,103,79,80,68,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,100,46,106,115,92,34,41,46,102,41,59,92,110,118,97,114,32,100,80,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,46,102,41,59,92,110,118,97,114,32,36,116,114,105,109,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,116,114,105,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,116,114,105,109,46,106,115,92,34,41,46,116,114,105,109,41,59,92,110,118,97,114,32,78,85,77,66,69,82,32,61,32,39,78,117,109,98,101,114,39,59,92,110,118,97,114,32,36,78,117,109,98,101,114,32,61,32,103,108,111,98,97,108,91,78,85,77,66,69,82,93,59,92,110,118,97,114,32,66,97,115,101,32,61,32,36,78,117,109,98,101,114,59,92,110,118,97,114,32,112,114,111,116,111,32,61,32,36,78,117,109,98,101,114,46,112,114,111,116,111,116,121,112,101,59,92,110,47,47,32,79,112,101,114,97,32,126,49,50,32,104,97,115,32,98,114,111,107,101,110,32,79,98,106,101,99,116,35,116,111,83,116,114,105,110,103,92,110,118,97,114,32,66,82,79,75,69,78,95,67,79,70,32,61,32,99,111,102,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,46,106,115,92,34,41,40,112,114,111,116,111,41,41,32,61,61,32,78,85,77,66,69,82,59,92,110,118,97,114,32,84,82,73,77,32,61,32,39,116,114,105,109,39,32,105,110,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,47,47,32,55,46,49,46,51,32,84,111,78,117,109,98,101,114,40,97,114,103,117,109,101,110,116,41,92,110,118,97,114,32,116,111,78,117,109,98,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,97,114,103,117,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,105,116,32,61,32,116,111,80,114,105,109,105,116,105,118,101,40,97,114,103,117,109,101,110,116,44,32,102,97,108,115,101,41,59,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,105,116,32,61,61,32,39,115,116,114,105,110,103,39,32,38,38,32,105,116,46,108,101,110,103,116,104,32,62,32,50,41,32,123,92,110,32,32,32,32,105,116,32,61,32,84,82,73,77,32,63,32,105,116,46,116,114,105,109,40,41,32,58,32,36,116,114,105,109,40,105,116,44,32,51,41,59,92,110,32,32,32,32,118,97,114,32,102,105,114,115,116,32,61,32,105,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,59,92,110,32,32,32,32,118,97,114,32,116,104,105,114,100,44,32,114,97,100,105,120,44,32,109,97,120,67,111,100,101,59,92,110,32,32,32,32,105,102,32,40,102,105,114,115,116,32,61,61,61,32,52,51,32,124,124,32,102,105,114,115,116,32,61,61,61,32,52,53,41,32,123,92,110,32,32,32,32,32,32,116,104,105,114,100,32,61,32,105,116,46,99,104,97,114,67,111,100,101,65,116,40,50,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,114,100,32,61,61,61,32,56,56,32,124,124,32,116,104,105,114,100,32,61,61,61,32,49,50,48,41,32,114,101,116,117,114,110,32,78,97,78,59,32,47,47,32,78,117,109,98,101,114,40,39,43,48,120,49,39,41,32,115,104,111,117,108,100,32,98,101,32,78,97,78,44,32,111,108,100,32,86,56,32,102,105,120,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,102,105,114,115,116,32,61,61,61,32,52,56,41,32,123,92,110,32,32,32,32,32,32,115,119,105,116,99,104,32,40,105,116,46,99,104,97,114,67,111,100,101,65,116,40,49,41,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,54,54,58,32,99,97,115,101,32,57,56,58,32,114,97,100,105,120,32,61,32,50,59,32,109,97,120,67,111,100,101,32,61,32,52,57,59,32,98,114,101,97,107,59,32,47,47,32,102,97,115,116,32,101,113,117,97,108,32,47,94,48,98,91,48,49,93,43,36,47,105,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,55,57,58,32,99,97,115,101,32,49,49,49,58,32,114,97,100,105,120,32,61,32,56,59,32,109,97,120,67,111,100,101,32,61,32,53,53,59,32,98,114,101,97,107,59,32,47,47,32,102,97,115,116,32,101,113,117,97,108,32,47,94,48,111,91,48,45,55,93,43,36,47,105,92,110,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,114,101,116,117,114,110,32,43,105,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,100,105,103,105,116,115,32,61,32,105,116,46,115,108,105,99,101,40,50,41,44,32,105,32,61,32,48,44,32,108,32,61,32,100,105,103,105,116,115,46,108,101,110,103,116,104,44,32,99,111,100,101,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,100,101,32,61,32,100,105,103,105,116,115,46,99,104,97,114,67,111,100,101,65,116,40,105,41,59,92,110,32,32,32,32,32,32,32,32,47,47,32,112,97,114,115,101,73,110,116,32,112,97,114,115,101,115,32,97,32,115,116,114,105,110,103,32,116,111,32,97,32,102,105,114,115,116,32,117,110,97,118,97,105,108,97,98,108,101,32,115,121,109,98,111,108,92,110,32,32,32,32,32,32,32,32,47,47,32,98,117,116,32,84,111,78,117,109,98,101,114,32,115,104,111,117,108,100,32,114,101,116,117,114,110,32,78,97,78,32,105,102,32,97,32,115,116,114,105,110,103,32,99,111,110,116,97,105,110,115,32,117,110,97,118,97,105,108,97,98,108,101,32,115,121,109,98,111,108,115,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,111,100,101,32,60,32,52,56,32,124,124,32,99,111,100,101,32,62,32,109,97,120,67,111,100,101,41,32,114,101,116,117,114,110,32,78,97,78,59,92,110,32,32,32,32,32,32,125,32,114,101,116,117,114,110,32,112,97,114,115,101,73,110,116,40,100,105,103,105,116,115,44,32,114,97,100,105,120,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,114,101,116,117,114,110,32,43,105,116,59,92,110,125,59,92,110,92,110,105,102,32,40,33,36,78,117,109,98,101,114,40,39,32,48,111,49,39,41,32,124,124,32,33,36,78,117,109,98,101,114,40,39,48,98,49,39,41,32,124,124,32,36,78,117,109,98,101,114,40,39,43,48,120,49,39,41,41,32,123,92,110,32,32,36,78,117,109,98,101,114,32,61,32,102,117,110,99,116,105,111,110,32,78,117,109,98,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,49,32,63,32,48,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,118,97,114,32,116,104,97,116,32,61,32,116,104,105,115,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,97,116,32,105,110,115,116,97,110,99,101,111,102,32,36,78,117,109,98,101,114,92,110,32,32,32,32,32,32,47,47,32,99,104,101,99,107,32,111,110,32,49,46,46,99,111,110,115,116,114,117,99,116,111,114,40,102,111,111,41,32,99,97,115,101,92,110,32,32,32,32,32,32,38,38,32,40,66,82,79,75,69,78,95,67,79,70,32,63,32,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,112,114,111,116,111,46,118,97,108,117,101,79,102,46,99,97,108,108,40,116,104,97,116,41,59,32,125,41,32,58,32,99,111,102,40,116,104,97,116,41,32,33,61,32,78,85,77,66,69,82,41,92,110,32,32,32,32,32,32,32,32,63,32,105,110,104,101,114,105,116,73,102,82,101,113,117,105,114,101,100,40,110,101,119,32,66,97,115,101,40,116,111,78,117,109,98,101,114,40,105,116,41,41,44,32,116,104,97,116,44,32,36,78,117,109,98,101,114,41,32,58,32,116,111,78,117,109,98,101,114,40,105,116,41,59,92,110,32,32,125,59,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,32,63,32,103,79,80,78,40,66,97,115,101,41,32,58,32,40,92,110,32,32,32,32,47,47,32,69,83,51,58,92,110,32,32,32,32,39,77,65,88,95,86,65,76,85,69,44,77,73,78,95,86,65,76,85,69,44,78,97,78,44,78,69,71,65,84,73,86,69,95,73,78,70,73,78,73,84,89,44,80,79,83,73,84,73,86,69,95,73,78,70,73,78,73,84,89,44,39,32,43,92,110,32,32,32,32,47,47,32,69,83,54,32,40,105,110,32,99,97,115,101,44,32,105,102,32,109,111,100,117,108,101,115,32,119,105,116,104,32,69,83,54,32,78,117,109,98,101,114,32,115,116,97,116,105,99,115,32,114,101,113,117,105,114,101,100,32,98,101,102,111,114,101,41,58,92,110,32,32,32,32,39,69,80,83,73,76,79,78,44,105,115,70,105,110,105,116,101,44,105,115,73,110,116,101,103,101,114,44,105,115,78,97,78,44,105,115,83,97,102,101,73,110,116,101,103,101,114,44,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,44,39,32,43,92,110,32,32,32,32,39,77,73,78,95,83,65,70,69,95,73,78,84,69,71,69,82,44,112,97,114,115,101,70,108,111,97,116,44,112,97,114,115,101,73,110,116,44,105,115,73,110,116,101,103,101,114,39,92,110,32,32,41,46,115,112,108,105,116,40,39,44,39,41,44,32,106,32,61,32,48,44,32,107,101,121,59,32,107,101,121,115,46,108,101,110,103,116,104,32,62,32,106,59,32,106,43,43,41,32,123,92,110,32,32,32,32,105,102,32,40,104,97,115,40,66,97,115,101,44,32,107,101,121,32,61,32,107,101,121,115,91,106,93,41,32,38,38,32,33,104,97,115,40,36,78,117,109,98,101,114,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,100,80,40,36,78,117,109,98,101,114,44,32,107,101,121,44,32,103,79,80,68,40,66,97,115,101,44,32,107,101,121,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,36,78,117,109,98,101,114,46,112,114,111,116,111,116,121,112,101,32,61,32,112,114,111,116,111,59,92,110,32,32,112,114,111,116,111,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,36,78,117,109,98,101,114,59,92,110,32,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,92,34,41,40,103,108,111,98,97,108,44,32,78,85,77,66,69,82,44,32,36,78,117,109,98,101,114,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,99,111,110,115,116,114,117,99,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,101,112,115,105,108,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,101,112,115,105,108,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,49,46,50,46,49,32,78,117,109,98,101,114,46,69,80,83,73,76,79,78,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,78,117,109,98,101,114,39,44,32,123,32,69,80,83,73,76,79,78,58,32,77,97,116,104,46,112,111,119,40,50,44,32,45,53,50,41,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,101,112,115,105,108,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,102,105,110,105,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,102,105,110,105,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,49,46,50,46,50,32,78,117,109,98,101,114,46,105,115,70,105,110,105,116,101,40,110,117,109,98,101,114,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,95,105,115,70,105,110,105,116,101,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,46,105,115,70,105,110,105,116,101,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,78,117,109,98,101,114,39,44,32,123,92,110,32,32,105,115,70,105,110,105,116,101,58,32,102,117,110,99,116,105,111,110,32,105,115,70,105,110,105,116,101,40,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,105,116,32,61,61,32,39,110,117,109,98,101,114,39,32,38,38,32,95,105,115,70,105,110,105,116,101,40,105,116,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,102,105,110,105,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,105,110,116,101,103,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,105,110,116,101,103,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,49,46,50,46,51,32,78,117,109,98,101,114,46,105,115,73,110,116,101,103,101,114,40,110,117,109,98,101,114,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,78,117,109,98,101,114,39,44,32,123,32,105,115,73,110,116,101,103,101,114,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,105,110,116,101,103,101,114,46,106,115,92,34,41,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,105,110,116,101,103,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,110,97,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,110,97,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,49,46,50,46,52,32,78,117,109,98,101,114,46,105,115,78,97,78,40,110,117,109,98,101,114,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,78,117,109,98,101,114,39,44,32,123,92,110,32,32,105,115,78,97,78,58,32,102,117,110,99,116,105,111,110,32,105,115,78,97,78,40,110,117,109,98,101,114,41,32,123,92,110,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,115,101,108,102,45,99,111,109,112,97,114,101,92,110,32,32,32,32,114,101,116,117,114,110,32,110,117,109,98,101,114,32,33,61,32,110,117,109,98,101,114,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,110,97,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,115,97,102,101,45,105,110,116,101,103,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,115,97,102,101,45,105,110,116,101,103,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,49,46,50,46,53,32,78,117,109,98,101,114,46,105,115,83,97,102,101,73,110,116,101,103,101,114,40,110,117,109,98,101,114,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,73,110,116,101,103,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,105,110,116,101,103,101,114,46,106,115,92,34,41,59,92,110,118,97,114,32,97,98,115,32,61,32,77,97,116,104,46,97,98,115,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,78,117,109,98,101,114,39,44,32,123,92,110,32,32,105,115,83,97,102,101,73,110,116,101,103,101,114,58,32,102,117,110,99,116,105,111,110,32,105,115,83,97,102,101,73,110,116,101,103,101,114,40,110,117,109,98,101,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,73,110,116,101,103,101,114,40,110,117,109,98,101,114,41,32,38,38,32,97,98,115,40,110,117,109,98,101,114,41,32,60,61,32,48,120,49,102,102,102,102,102,102,102,102,102,102,102,102,102,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,105,115,45,115,97,102,101,45,105,110,116,101,103,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,109,97,120,45,115,97,102,101,45,105,110,116,101,103,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,109,97,120,45,115,97,102,101,45,105,110,116,101,103,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,49,46,50,46,54,32,78,117,109,98,101,114,46,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,78,117,109,98,101,114,39,44,32,123,32,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,58,32,48,120,49,102,102,102,102,102,102,102,102,102,102,102,102,102,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,109,97,120,45,115,97,102,101,45,105,110,116,101,103,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,109,105,110,45,115,97,102,101,45,105,110,116,101,103,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,109,105,110,45,115,97,102,101,45,105,110,116,101,103,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,48,46,49,46,50,46,49,48,32,78,117,109,98,101,114,46,77,73,78,95,83,65,70,69,95,73,78,84,69,71,69,82,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,78,117,109,98,101,114,39,44,32,123,32,77,73,78,95,83,65,70,69,95,73,78,84,69,71,69,82,58,32,45,48,120,49,102,102,102,102,102,102,102,102,102,102,102,102,102,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,109,105,110,45,115,97,102,101,45,105,110,116,101,103,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,112,97,114,115,101,45,102,108,111,97,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,112,97,114,115,101,45,102,108,111,97,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,112,97,114,115,101,70,108,111,97,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,112,97,114,115,101,45,102,108,111,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,97,114,115,101,45,102,108,111,97,116,46,106,115,92,34,41,59,92,110,47,47,32,50,48,46,49,46,50,46,49,50,32,78,117,109,98,101,114,46,112,97,114,115,101,70,108,111,97,116,40,115,116,114,105,110,103,41,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,78,117,109,98,101,114,46,112,97,114,115,101,70,108,111,97,116,32,33,61,32,36,112,97,114,115,101,70,108,111,97,116,41,44,32,39,78,117,109,98,101,114,39,44,32,123,32,112,97,114,115,101,70,108,111,97,116,58,32,36,112,97,114,115,101,70,108,111,97,116,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,112,97,114,115,101,45,102,108,111,97,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,112,97,114,115,101,45,105,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,112,97,114,115,101,45,105,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,112,97,114,115,101,73,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,112,97,114,115,101,45,105,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,97,114,115,101,45,105,110,116,46,106,115,92,34,41,59,92,110,47,47,32,50,48,46,49,46,50,46,49,51,32,78,117,109,98,101,114,46,112,97,114,115,101,73,110,116,40,115,116,114,105,110,103,44,32,114,97,100,105,120,41,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,78,117,109,98,101,114,46,112,97,114,115,101,73,110,116,32,33,61,32,36,112,97,114,115,101,73,110,116,41,44,32,39,78,117,109,98,101,114,39,44,32,123,32,112,97,114,115,101,73,110,116,58,32,36,112,97,114,115,101,73,110,116,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,112,97,114,115,101,45,105,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,116,111,45,102,105,120,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,116,111,45,102,105,120,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,73,110,116,101,103,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,116,101,103,101,114,46,106,115,92,34,41,59,92,110,118,97,114,32,97,78,117,109,98,101,114,86,97,108,117,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,45,110,117,109,98,101,114,45,118,97,108,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,110,117,109,98,101,114,45,118,97,108,117,101,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,112,101,97,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,114,101,112,101,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,114,101,112,101,97,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,116,111,70,105,120,101,100,32,61,32,49,46,48,46,116,111,70,105,120,101,100,59,92,110,118,97,114,32,102,108,111,111,114,32,61,32,77,97,116,104,46,102,108,111,111,114,59,92,110,118,97,114,32,100,97,116,97,32,61,32,91,48,44,32,48,44,32,48,44,32,48,44,32,48,44,32,48,93,59,92,110,118,97,114,32,69,82,82,79,82,32,61,32,39,78,117,109,98,101,114,46,116,111,70,105,120,101,100,58,32,105,110,99,111,114,114,101,99,116,32,105,110,118,111,99,97,116,105,111,110,33,39,59,92,110,118,97,114,32,90,69,82,79,32,61,32,39,48,39,59,92,110,92,110,118,97,114,32,109,117,108,116,105,112,108,121,32,61,32,102,117,110,99,116,105,111,110,32,40,110,44,32,99,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,45,49,59,92,110,32,32,118,97,114,32,99,50,32,61,32,99,59,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,54,41,32,123,92,110,32,32,32,32,99,50,32,43,61,32,110,32,42,32,100,97,116,97,91,105,93,59,92,110,32,32,32,32,100,97,116,97,91,105,93,32,61,32,99,50,32,37,32,49,101,55,59,92,110,32,32,32,32,99,50,32,61,32,102,108,111,111,114,40,99,50,32,47,32,49,101,55,41,59,92,110,32,32,125,92,110,125,59,92,110,118,97,114,32,100,105,118,105,100,101,32,61,32,102,117,110,99,116,105,111,110,32,40,110,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,54,59,92,110,32,32,118,97,114,32,99,32,61,32,48,59,92,110,32,32,119,104,105,108,101,32,40,45,45,105,32,62,61,32,48,41,32,123,92,110,32,32,32,32,99,32,43,61,32,100,97,116,97,91,105,93,59,92,110,32,32,32,32,100,97,116,97,91,105,93,32,61,32,102,108,111,111,114,40,99,32,47,32,110,41,59,92,110,32,32,32,32,99,32,61,32,40,99,32,37,32,110,41,32,42,32,49,101,55,59,92,110,32,32,125,92,110,125,59,92,110,118,97,114,32,110,117,109,84,111,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,54,59,92,110,32,32,118,97,114,32,115,32,61,32,39,39,59,92,110,32,32,119,104,105,108,101,32,40,45,45,105,32,62,61,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,115,32,33,61,61,32,39,39,32,124,124,32,105,32,61,61,61,32,48,32,124,124,32,100,97,116,97,91,105,93,32,33,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,32,61,32,83,116,114,105,110,103,40,100,97,116,97,91,105,93,41,59,92,110,32,32,32,32,32,32,115,32,61,32,115,32,61,61,61,32,39,39,32,63,32,116,32,58,32,115,32,43,32,114,101,112,101,97,116,46,99,97,108,108,40,90,69,82,79,44,32,55,32,45,32,116,46,108,101,110,103,116,104,41,32,43,32,116,59,92,110,32,32,32,32,125,92,110,32,32,125,32,114,101,116,117,114,110,32,115,59,92,110,125,59,92,110,118,97,114,32,112,111,119,32,61,32,102,117,110,99,116,105,111,110,32,40,120,44,32,110,44,32,97,99,99,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,32,61,61,61,32,48,32,63,32,97,99,99,32,58,32,110,32,37,32,50,32,61,61,61,32,49,32,63,32,112,111,119,40,120,44,32,110,32,45,32,49,44,32,97,99,99,32,42,32,120,41,32,58,32,112,111,119,40,120,32,42,32,120,44,32,110,32,47,32,50,44,32,97,99,99,41,59,92,110,125,59,92,110,118,97,114,32,108,111,103,32,61,32,102,117,110,99,116,105,111,110,32,40,120,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,48,59,92,110,32,32,118,97,114,32,120,50,32,61,32,120,59,92,110,32,32,119,104,105,108,101,32,40,120,50,32,62,61,32,52,48,57,54,41,32,123,92,110,32,32,32,32,110,32,43,61,32,49,50,59,92,110,32,32,32,32,120,50,32,47,61,32,52,48,57,54,59,92,110,32,32,125,92,110,32,32,119,104,105,108,101,32,40,120,50,32,62,61,32,50,41,32,123,92,110,32,32,32,32,110,32,43,61,32,49,59,92,110,32,32,32,32,120,50,32,47,61,32,50,59,92,110,32,32,125,32,114,101,116,117,114,110,32,110,59,92,110,125,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,33,33,36,116,111,70,105,120,101,100,32,38,38,32,40,92,110,32,32,48,46,48,48,48,48,56,46,116,111,70,105,120,101,100,40,51,41,32,33,61,61,32,39,48,46,48,48,48,39,32,124,124,92,110,32,32,48,46,57,46,116,111,70,105,120,101,100,40,48,41,32,33,61,61,32,39,49,39,32,124,124,92,110,32,32,49,46,50,53,53,46,116,111,70,105,120,101,100,40,50,41,32,33,61,61,32,39,49,46,50,53,39,32,124,124,92,110,32,32,49,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,49,50,56,46,48,46,116,111,70,105,120,101,100,40,48,41,32,33,61,61,32,39,49,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,49,50,56,39,92,110,41,32,124,124,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,47,47,32,86,56,32,126,32,65,110,100,114,111,105,100,32,52,46,51,45,92,110,32,32,36,116,111,70,105,120,101,100,46,99,97,108,108,40,123,125,41,59,92,110,125,41,41,44,32,39,78,117,109,98,101,114,39,44,32,123,92,110,32,32,116,111,70,105,120,101,100,58,32,102,117,110,99,116,105,111,110,32,116,111,70,105,120,101,100,40,102,114,97,99,116,105,111,110,68,105,103,105,116,115,41,32,123,92,110,32,32,32,32,118,97,114,32,120,32,61,32,97,78,117,109,98,101,114,86,97,108,117,101,40,116,104,105,115,44,32,69,82,82,79,82,41,59,92,110,32,32,32,32,118,97,114,32,102,32,61,32,116,111,73,110,116,101,103,101,114,40,102,114,97,99,116,105,111,110,68,105,103,105,116,115,41,59,92,110,32,32,32,32,118,97,114,32,115,32,61,32,39,39,59,92,110,32,32,32,32,118,97,114,32,109,32,61,32,90,69,82,79,59,92,110,32,32,32,32,118,97,114,32,101,44,32,122,44,32,106,44,32,107,59,92,110,32,32,32,32,105,102,32,40,102,32,60,32,48,32,124,124,32,102,32,62,32,50,48,41,32,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,69,82,82,79,82,41,59,92,110,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,115,101,108,102,45,99,111,109,112,97,114,101,92,110,32,32,32,32,105,102,32,40,120,32,33,61,32,120,41,32,114,101,116,117,114,110,32,39,78,97,78,39,59,92,110,32,32,32,32,105,102,32,40,120,32,60,61,32,45,49,101,50,49,32,124,124,32,120,32,62,61,32,49,101,50,49,41,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,120,41,59,92,110,32,32,32,32,105,102,32,40,120,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,115,32,61,32,39,45,39,59,92,110,32,32,32,32,32,32,120,32,61,32,45,120,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,120,32,62,32,49,101,45,50,49,41,32,123,92,110,32,32,32,32,32,32,101,32,61,32,108,111,103,40,120,32,42,32,112,111,119,40,50,44,32,54,57,44,32,49,41,41,32,45,32,54,57,59,92,110,32,32,32,32,32,32,122,32,61,32,101,32,60,32,48,32,63,32,120,32,42,32,112,111,119,40,50,44,32,45,101,44,32,49,41,32,58,32,120,32,47,32,112,111,119,40,50,44,32,101,44,32,49,41,59,92,110,32,32,32,32,32,32,122,32,42,61,32,48,120,49,48,48,48,48,48,48,48,48,48,48,48,48,48,59,92,110,32,32,32,32,32,32,101,32,61,32,53,50,32,45,32,101,59,92,110,32,32,32,32,32,32,105,102,32,40,101,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,109,117,108,116,105,112,108,121,40,48,44,32,122,41,59,92,110,32,32,32,32,32,32,32,32,106,32,61,32,102,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,106,32,62,61,32,55,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,109,117,108,116,105,112,108,121,40,49,101,55,44,32,48,41,59,92,110,32,32,32,32,32,32,32,32,32,32,106,32,45,61,32,55,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,109,117,108,116,105,112,108,121,40,112,111,119,40,49,48,44,32,106,44,32,49,41,44,32,48,41,59,92,110,32,32,32,32,32,32,32,32,106,32,61,32,101,32,45,32,49,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,106,32,62,61,32,50,51,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,105,118,105,100,101,40,49,32,60,60,32,50,51,41,59,92,110,32,32,32,32,32,32,32,32,32,32,106,32,45,61,32,50,51,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,100,105,118,105,100,101,40,49,32,60,60,32,106,41,59,92,110,32,32,32,32,32,32,32,32,109,117,108,116,105,112,108,121,40,49,44,32,49,41,59,92,110,32,32,32,32,32,32,32,32,100,105,118,105,100,101,40,50,41,59,92,110,32,32,32,32,32,32,32,32,109,32,61,32,110,117,109,84,111,83,116,114,105,110,103,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,109,117,108,116,105,112,108,121,40,48,44,32,122,41,59,92,110,32,32,32,32,32,32,32,32,109,117,108,116,105,112,108,121,40,49,32,60,60,32,45,101,44,32,48,41,59,92,110,32,32,32,32,32,32,32,32,109,32,61,32,110,117,109,84,111,83,116,114,105,110,103,40,41,32,43,32,114,101,112,101,97,116,46,99,97,108,108,40,90,69,82,79,44,32,102,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,102,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,107,32,61,32,109,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,109,32,61,32,115,32,43,32,40,107,32,60,61,32,102,32,63,32,39,48,46,39,32,43,32,114,101,112,101,97,116,46,99,97,108,108,40,90,69,82,79,44,32,102,32,45,32,107,41,32,43,32,109,32,58,32,109,46,115,108,105,99,101,40,48,44,32,107,32,45,32,102,41,32,43,32,39,46,39,32,43,32,109,46,115,108,105,99,101,40,107,32,45,32,102,41,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,109,32,61,32,115,32,43,32,109,59,92,110,32,32,32,32,125,32,114,101,116,117,114,110,32,109,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,116,111,45,102,105,120,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,116,111,45,112,114,101,99,105,115,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,116,111,45,112,114,101,99,105,115,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,102,97,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,97,78,117,109,98,101,114,86,97,108,117,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,45,110,117,109,98,101,114,45,118,97,108,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,110,117,109,98,101,114,45,118,97,108,117,101,46,106,115,92,34,41,59,92,110,118,97,114,32,36,116,111,80,114,101,99,105,115,105,111,110,32,61,32,49,46,48,46,116,111,80,114,101,99,105,115,105,111,110,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,36,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,47,47,32,73,69,55,45,92,110,32,32,114,101,116,117,114,110,32,36,116,111,80,114,101,99,105,115,105,111,110,46,99,97,108,108,40,49,44,32,117,110,100,101,102,105,110,101,100,41,32,33,61,61,32,39,49,39,59,92,110,125,41,32,124,124,32,33,36,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,47,47,32,86,56,32,126,32,65,110,100,114,111,105,100,32,52,46,51,45,92,110,32,32,36,116,111,80,114,101,99,105,115,105,111,110,46,99,97,108,108,40,123,125,41,59,92,110,125,41,41,44,32,39,78,117,109,98,101,114,39,44,32,123,92,110,32,32,116,111,80,114,101,99,105,115,105,111,110,58,32,102,117,110,99,116,105,111,110,32,116,111,80,114,101,99,105,115,105,111,110,40,112,114,101,99,105,115,105,111,110,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,97,116,32,61,32,97,78,117,109,98,101,114,86,97,108,117,101,40,116,104,105,115,44,32,39,78,117,109,98,101,114,35,116,111,80,114,101,99,105,115,105,111,110,58,32,105,110,99,111,114,114,101,99,116,32,105,110,118,111,99,97,116,105,111,110,33,39,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,101,99,105,115,105,111,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,36,116,111,80,114,101,99,105,115,105,111,110,46,99,97,108,108,40,116,104,97,116,41,32,58,32,36,116,111,80,114,101,99,105,115,105,111,110,46,99,97,108,108,40,116,104,97,116,44,32,112,114,101,99,105,115,105,111,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,110,117,109,98,101,114,46,116,111,45,112,114,101,99,105,115,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,97,115,115,105,103,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,97,115,115,105,103,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,51,46,49,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,116,97,114,103,101,116,44,32,115,111,117,114,99,101,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,44,32,39,79,98,106,101,99,116,39,44,32,123,32,97,115,115,105,103,110,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,97,115,115,105,103,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,97,115,115,105,103,110,46,106,115,92,34,41,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,97,115,115,105,103,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,99,114,101,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,99,114,101,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,47,47,32,49,57,46,49,46,50,46,50,32,47,32,49,53,46,50,46,51,46,53,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,79,32,91,44,32,80,114,111,112,101,114,116,105,101,115,93,41,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,79,98,106,101,99,116,39,44,32,123,32,99,114,101,97,116,101,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,46,106,115,92,34,41,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,99,114,101,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,100,101,102,105,110,101,45,112,114,111,112,101,114,116,105,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,100,101,102,105,110,101,45,112,114,111,112,101,114,116,105,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,47,47,32,49,57,46,49,46,50,46,51,32,47,32,49,53,46,50,46,51,46,55,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,79,44,32,80,114,111,112,101,114,116,105,101,115,41,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,44,32,39,79,98,106,101,99,116,39,44,32,123,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,115,46,106,115,92,34,41,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,100,101,102,105,110,101,45,112,114,111,112,101,114,116,105,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,100,101,102,105,110,101,45,112,114,111,112,101,114,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,100,101,102,105,110,101,45,112,114,111,112,101,114,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,47,47,32,49,57,46,49,46,50,46,52,32,47,32,49,53,46,50,46,51,46,54,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,79,44,32,80,44,32,65,116,116,114,105,98,117,116,101,115,41,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,44,32,39,79,98,106,101,99,116,39,44,32,123,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,58,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,46,102,41,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,100,101,102,105,110,101,45,112,114,111,112,101,114,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,102,114,101,101,122,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,102,114,101,101,122,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,50,46,53,32,79,98,106,101,99,116,46,102,114,101,101,122,101,40,79,41,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,109,101,116,97,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,101,116,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,101,116,97,46,106,115,92,34,41,46,111,110,70,114,101,101,122,101,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,115,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,115,97,112,46,106,115,92,34,41,40,39,102,114,101,101,122,101,39,44,32,102,117,110,99,116,105,111,110,32,40,36,102,114,101,101,122,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,102,114,101,101,122,101,40,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,102,114,101,101,122,101,32,38,38,32,105,115,79,98,106,101,99,116,40,105,116,41,32,63,32,36,102,114,101,101,122,101,40,109,101,116,97,40,105,116,41,41,32,58,32,105,116,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,102,114,101,101,122,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,50,46,54,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,79,44,32,80,41,92,110,118,97,114,32,116,111,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,100,46,106,115,92,34,41,46,102,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,115,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,115,97,112,46,106,115,92,34,41,40,39,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,39,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,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,105,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,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,116,111,73,79,98,106,101,99,116,40,105,116,41,44,32,107,101,121,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,110,97,109,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,110,97,109,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,50,46,55,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,79,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,115,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,115,97,112,46,106,115,92,34,41,40,39,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,39,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,110,45,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,110,45,101,120,116,46,106,115,92,34,41,46,102,41,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,110,97,109,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,103,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,103,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,50,46,57,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,79,41,92,110,118,97,114,32,116,111,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,103,101,116,80,114,111,116,111,116,121,112,101,79,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,112,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,112,111,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,115,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,115,97,112,46,106,115,92,34,41,40,39,103,101,116,80,114,111,116,111,116,121,112,101,79,102,39,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,111,79,98,106,101,99,116,40,105,116,41,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,103,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,45,101,120,116,101,110,115,105,98,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,45,101,120,116,101,110,115,105,98,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,50,46,49,49,32,79,98,106,101,99,116,46,105,115,69,120,116,101,110,115,105,98,108,101,40,79,41,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,115,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,115,97,112,46,106,115,92,34,41,40,39,105,115,69,120,116,101,110,115,105,98,108,101,39,44,32,102,117,110,99,116,105,111,110,32,40,36,105,115,69,120,116,101,110,115,105,98,108,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,105,115,69,120,116,101,110,115,105,98,108,101,40,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,40,105,116,41,32,63,32,36,105,115,69,120,116,101,110,115,105,98,108,101,32,63,32,36,105,115,69,120,116,101,110,115,105,98,108,101,40,105,116,41,32,58,32,116,114,117,101,32,58,32,102,97,108,115,101,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,45,101,120,116,101,110,115,105,98,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,45,102,114,111,122,101,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,45,102,114,111,122,101,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,50,46,49,50,32,79,98,106,101,99,116,46,105,115,70,114,111,122,101,110,40,79,41,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,115,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,115,97,112,46,106,115,92,34,41,40,39,105,115,70,114,111,122,101,110,39,44,32,102,117,110,99,116,105,111,110,32,40,36,105,115,70,114,111,122,101,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,105,115,70,114,111,122,101,110,40,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,40,105,116,41,32,63,32,36,105,115,70,114,111,122,101,110,32,63,32,36,105,115,70,114,111,122,101,110,40,105,116,41,32,58,32,102,97,108,115,101,32,58,32,116,114,117,101,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,45,102,114,111,122,101,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,45,115,101,97,108,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,45,115,101,97,108,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,50,46,49,51,32,79,98,106,101,99,116,46,105,115,83,101,97,108,101,100,40,79,41,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,115,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,115,97,112,46,106,115,92,34,41,40,39,105,115,83,101,97,108,101,100,39,44,32,102,117,110,99,116,105,111,110,32,40,36,105,115,83,101,97,108,101,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,105,115,83,101,97,108,101,100,40,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,40,105,116,41,32,63,32,36,105,115,83,101,97,108,101,100,32,63,32,36,105,115,83,101,97,108,101,100,40,105,116,41,32,58,32,102,97,108,115,101,32,58,32,116,114,117,101,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,45,115,101,97,108,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,51,46,49,48,32,79,98,106,101,99,116,46,105,115,40,118,97,108,117,101,49,44,32,118,97,108,117,101,50,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,79,98,106,101,99,116,39,44,32,123,32,105,115,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,97,109,101,45,118,97,108,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,97,109,101,45,118,97,108,117,101,46,106,115,92,34,41,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,105,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,107,101,121,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,107,101,121,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,50,46,49,52,32,79,98,106,101,99,116,46,107,101,121,115,40,79,41,92,110,118,97,114,32,116,111,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,107,101,121,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,107,101,121,115,46,106,115,92,34,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,115,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,115,97,112,46,106,115,92,34,41,40,39,107,101,121,115,39,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,107,101,121,115,40,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,107,101,121,115,40,116,111,79,98,106,101,99,116,40,105,116,41,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,107,101,121,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,112,114,101,118,101,110,116,45,101,120,116,101,110,115,105,111,110,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,112,114,101,118,101,110,116,45,101,120,116,101,110,115,105,111,110,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,50,46,49,53,32,79,98,106,101,99,116,46,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,40,79,41,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,109,101,116,97,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,101,116,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,101,116,97,46,106,115,92,34,41,46,111,110,70,114,101,101,122,101,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,115,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,115,97,112,46,106,115,92,34,41,40,39,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,39,44,32,102,117,110,99,116,105,111,110,32,40,36,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,40,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,32,38,38,32,105,115,79,98,106,101,99,116,40,105,116,41,32,63,32,36,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,40,109,101,116,97,40,105,116,41,41,32,58,32,105,116,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,112,114,101,118,101,110,116,45,101,120,116,101,110,115,105,111,110,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,115,101,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,115,101,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,50,46,49,55,32,79,98,106,101,99,116,46,115,101,97,108,40,79,41,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,109,101,116,97,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,101,116,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,101,116,97,46,106,115,92,34,41,46,111,110,70,114,101,101,122,101,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,115,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,115,97,112,46,106,115,92,34,41,40,39,115,101,97,108,39,44,32,102,117,110,99,116,105,111,110,32,40,36,115,101,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,115,101,97,108,40,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,115,101,97,108,32,38,38,32,105,115,79,98,106,101,99,116,40,105,116,41,32,63,32,36,115,101,97,108,40,109,101,116,97,40,105,116,41,41,32,58,32,105,116,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,115,101,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,115,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,115,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,49,57,46,49,46,51,46,49,57,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,79,44,32,112,114,111,116,111,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,79,98,106,101,99,116,39,44,32,123,32,115,101,116,80,114,111,116,111,116,121,112,101,79,102,58,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,101,116,45,112,114,111,116,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,112,114,111,116,111,46,106,115,92,34,41,46,115,101,116,41,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,115,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,116,111,45,115,116,114,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,116,111,45,115,116,114,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,49,57,46,49,46,51,46,54,32,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,40,41,92,110,118,97,114,32,99,108,97,115,115,111,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,108,97,115,115,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,108,97,115,115,111,102,46,106,115,92,34,41,59,92,110,118,97,114,32,116,101,115,116,32,61,32,123,125,59,92,110,116,101,115,116,91,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,116,111,83,116,114,105,110,103,84,97,103,39,41,93,32,61,32,39,122,39,59,92,110,105,102,32,40,116,101,115,116,32,43,32,39,39,32,33,61,32,39,91,111,98,106,101,99,116,32,122,93,39,41,32,123,92,110,32,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,92,34,41,40,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,44,32,39,116,111,83,116,114,105,110,103,39,44,32,102,117,110,99,116,105,111,110,32,116,111,83,116,114,105,110,103,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,39,91,111,98,106,101,99,116,32,39,32,43,32,99,108,97,115,115,111,102,40,116,104,105,115,41,32,43,32,39,93,39,59,92,110,32,32,125,44,32,116,114,117,101,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,111,98,106,101,99,116,46,116,111,45,115,116,114,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,112,97,114,115,101,45,102,108,111,97,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,112,97,114,115,101,45,102,108,111,97,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,112,97,114,115,101,70,108,111,97,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,112,97,114,115,101,45,102,108,111,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,97,114,115,101,45,102,108,111,97,116,46,106,115,92,34,41,59,92,110,47,47,32,49,56,46,50,46,52,32,112,97,114,115,101,70,108,111,97,116,40,115,116,114,105,110,103,41,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,71,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,112,97,114,115,101,70,108,111,97,116,32,33,61,32,36,112,97,114,115,101,70,108,111,97,116,41,44,32,123,32,112,97,114,115,101,70,108,111,97,116,58,32,36,112,97,114,115,101,70,108,111,97,116,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,112,97,114,115,101,45,102,108,111,97,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,112,97,114,115,101,45,105,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,112,97,114,115,101,45,105,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,112,97,114,115,101,73,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,112,97,114,115,101,45,105,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,97,114,115,101,45,105,110,116,46,106,115,92,34,41,59,92,110,47,47,32,49,56,46,50,46,53,32,112,97,114,115,101,73,110,116,40,115,116,114,105,110,103,44,32,114,97,100,105,120,41,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,71,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,112,97,114,115,101,73,110,116,32,33,61,32,36,112,97,114,115,101,73,110,116,41,44,32,123,32,112,97,114,115,101,73,110,116,58,32,36,112,97,114,115,101,73,110,116,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,112,97,114,115,101,45,105,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,112,114,111,109,105,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,112,114,111,109,105,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,76,73,66,82,65,82,89,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,108,105,98,114,97,114,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,108,105,98,114,97,114,121,46,106,115,92,34,41,59,92,110,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,99,116,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,116,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,116,120,46,106,115,92,34,41,59,92,110,118,97,114,32,99,108,97,115,115,111,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,108,97,115,115,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,108,97,115,115,111,102,46,106,115,92,34,41,59,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,97,70,117,110,99,116,105,111,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,45,102,117,110,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,73,110,115,116,97,110,99,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,105,110,115,116,97,110,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,105,110,115,116,97,110,99,101,46,106,115,92,34,41,59,92,110,118,97,114,32,102,111,114,79,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,111,114,45,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,111,114,45,111,102,46,106,115,92,34,41,59,92,110,118,97,114,32,115,112,101,99,105,101,115,67,111,110,115,116,114,117,99,116,111,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,46,106,115,92,34,41,59,92,110,118,97,114,32,116,97,115,107,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,97,115,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,97,115,107,46,106,115,92,34,41,46,115,101,116,41,59,92,110,118,97,114,32,109,105,99,114,111,116,97,115,107,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,105,99,114,111,116,97,115,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,105,99,114,111,116,97,115,107,46,106,115,92,34,41,40,41,59,92,110,118,97,114,32,110,101,119,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,77,111,100,117,108,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,110,101,119,45,112,114,111,109,105,115,101,45,99,97,112,97,98,105,108,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,110,101,119,45,112,114,111,109,105,115,101,45,99,97,112,97,98,105,108,105,116,121,46,106,115,92,34,41,59,92,110,118,97,114,32,112,101,114,102,111,114,109,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,112,101,114,102,111,114,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,101,114,102,111,114,109,46,106,115,92,34,41,59,92,110,118,97,114,32,117,115,101,114,65,103,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,117,115,101,114,45,97,103,101,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,115,101,114,45,97,103,101,110,116,46,106,115,92,34,41,59,92,110,118,97,114,32,112,114,111,109,105,115,101,82,101,115,111,108,118,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,112,114,111,109,105,115,101,45,114,101,115,111,108,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,114,111,109,105,115,101,45,114,101,115,111,108,118,101,46,106,115,92,34,41,59,92,110,118,97,114,32,80,82,79,77,73,83,69,32,61,32,39,80,114,111,109,105,115,101,39,59,92,110,118,97,114,32,84,121,112,101,69,114,114,111,114,32,61,32,103,108,111,98,97,108,46,84,121,112,101,69,114,114,111,114,59,92,110,118,97,114,32,112,114,111,99,101,115,115,32,61,32,103,108,111,98,97,108,46,112,114,111,99,101,115,115,59,92,110,118,97,114,32,118,101,114,115,105,111,110,115,32,61,32,112,114,111,99,101,115,115,32,38,38,32,112,114,111,99,101,115,115,46,118,101,114,115,105,111,110,115,59,92,110,118,97,114,32,118,56,32,61,32,118,101,114,115,105,111,110,115,32,38,38,32,118,101,114,115,105,111,110,115,46,118,56,32,124,124,32,39,39,59,92,110,118,97,114,32,36,80,114,111,109,105,115,101,32,61,32,103,108,111,98,97,108,91,80,82,79,77,73,83,69,93,59,92,110,118,97,114,32,105,115,78,111,100,101,32,61,32,99,108,97,115,115,111,102,40,112,114,111,99,101,115,115,41,32,61,61,32,39,112,114,111,99,101,115,115,39,59,92,110,118,97,114,32,101,109,112,116,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,59,92,110,118,97,114,32,73,110,116,101,114,110,97,108,44,32,110,101,119,71,101,110,101,114,105,99,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,44,32,79,119,110,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,44,32,87,114,97,112,112,101,114,59,92,110,118,97,114,32,110,101,119,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,32,61,32,110,101,119,71,101,110,101,114,105,99,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,32,61,32,110,101,119,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,77,111,100,117,108,101,46,102,59,92,110,92,110,118,97,114,32,85,83,69,95,78,65,84,73,86,69,32,61,32,33,33,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,47,47,32,99,111,114,114,101,99,116,32,115,117,98,99,108,97,115,115,105,110,103,32,119,105,116,104,32,64,64,115,112,101,99,105,101,115,32,115,117,112,112,111,114,116,92,110,32,32,32,32,118,97,114,32,112,114,111,109,105,115,101,32,61,32,36,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,49,41,59,92,110,32,32,32,32,118,97,114,32,70,97,107,101,80,114,111,109,105,115,101,32,61,32,40,112,114,111,109,105,115,101,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,123,125,41,91,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,115,112,101,99,105,101,115,39,41,93,32,61,32,102,117,110,99,116,105,111,110,32,40,101,120,101,99,41,32,123,92,110,32,32,32,32,32,32,101,120,101,99,40,101,109,112,116,121,44,32,101,109,112,116,121,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,47,47,32,117,110,104,97,110,100,108,101,100,32,114,101,106,101,99,116,105,111,110,115,32,116,114,97,99,107,105,110,103,32,115,117,112,112,111,114,116,44,32,78,111,100,101,74,83,32,80,114,111,109,105,115,101,32,119,105,116,104,111,117,116,32,105,116,32,102,97,105,108,115,32,64,64,115,112,101,99,105,101,115,32,116,101,115,116,92,110,32,32,32,32,114,101,116,117,114,110,32,40,105,115,78,111,100,101,32,124,124,32,116,121,112,101,111,102,32,80,114,111,109,105,115,101,82,101,106,101,99,116,105,111,110,69,118,101,110,116,32,61,61,32,39,102,117,110,99,116,105,111,110,39,41,92,110,32,32,32,32,32,32,38,38,32,112,114,111,109,105,115,101,46,116,104,101,110,40,101,109,112,116,121,41,32,105,110,115,116,97,110,99,101,111,102,32,70,97,107,101,80,114,111,109,105,115,101,92,110,32,32,32,32,32,32,47,47,32,118,56,32,54,46,54,32,40,78,111,100,101,32,49,48,32,97,110,100,32,67,104,114,111,109,101,32,54,54,41,32,104,97,118,101,32,97,32,98,117,103,32,119,105,116,104,32,114,101,115,111,108,118,105,110,103,32,99,117,115,116,111,109,32,116,104,101,110,97,98,108,101,115,92,110,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,98,117,103,115,46,99,104,114,111,109,105,117,109,46,111,114,103,47,112,47,99,104,114,111,109,105,117,109,47,105,115,115,117,101,115,47,100,101,116,97,105,108,63,105,100,61,56,51,48,53,54,53,92,110,32,32,32,32,32,32,47,47,32,119,101,32,99,97,110,39,116,32,100,101,116,101,99,116,32,105,116,32,115,121,110,99,104,114,111,110,111,117,115,108,121,44,32,115,111,32,106,117,115,116,32,99,104,101,99,107,32,118,101,114,115,105,111,110,115,92,110,32,32,32,32,32,32,38,38,32,118,56,46,105,110,100,101,120,79,102,40,39,54,46,54,39,41,32,33,61,61,32,48,92,110,32,32,32,32,32,32,38,38,32,117,115,101,114,65,103,101,110,116,46,105,110,100,101,120,79,102,40,39,67,104,114,111,109,101,47,54,54,39,41,32,61,61,61,32,45,49,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,92,110,125,40,41,59,92,110,92,110,47,47,32,104,101,108,112,101,114,115,92,110,118,97,114,32,105,115,84,104,101,110,97,98,108,101,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,118,97,114,32,116,104,101,110,59,92,110,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,40,105,116,41,32,38,38,32,116,121,112,101,111,102,32,40,116,104,101,110,32,61,32,105,116,46,116,104,101,110,41,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,116,104,101,110,32,58,32,102,97,108,115,101,59,92,110,125,59,92,110,118,97,114,32,110,111,116,105,102,121,32,61,32,102,117,110,99,116,105,111,110,32,40,112,114,111,109,105,115,101,44,32,105,115,82,101,106,101,99,116,41,32,123,92,110,32,32,105,102,32,40,112,114,111,109,105,115,101,46,95,110,41,32,114,101,116,117,114,110,59,92,110,32,32,112,114,111,109,105,115,101,46,95,110,32,61,32,116,114,117,101,59,92,110,32,32,118,97,114,32,99,104,97,105,110,32,61,32,112,114,111,109,105,115,101,46,95,99,59,92,110,32,32,109,105,99,114,111,116,97,115,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,112,114,111,109,105,115,101,46,95,118,59,92,110,32,32,32,32,118,97,114,32,111,107,32,61,32,112,114,111,109,105,115,101,46,95,115,32,61,61,32,49,59,92,110,32,32,32,32,118,97,114,32,105,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,114,117,110,32,61,32,102,117,110,99,116,105,111,110,32,40,114,101,97,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,111,107,32,63,32,114,101,97,99,116,105,111,110,46,111,107,32,58,32,114,101,97,99,116,105,111,110,46,102,97,105,108,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,111,108,118,101,32,61,32,114,101,97,99,116,105,111,110,46,114,101,115,111,108,118,101,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,106,101,99,116,32,61,32,114,101,97,99,116,105,111,110,46,114,101,106,101,99,116,59,92,110,32,32,32,32,32,32,118,97,114,32,100,111,109,97,105,110,32,61,32,114,101,97,99,116,105,111,110,46,100,111,109,97,105,110,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,44,32,116,104,101,110,44,32,101,120,105,116,101,100,59,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,111,107,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,109,105,115,101,46,95,104,32,61,61,32,50,41,32,111,110,72,97,110,100,108,101,85,110,104,97,110,100,108,101,100,40,112,114,111,109,105,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,46,95,104,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,110,100,108,101,114,32,61,61,61,32,116,114,117,101,41,32,114,101,115,117,108,116,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,111,109,97,105,110,41,32,100,111,109,97,105,110,46,101,110,116,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,104,97,110,100,108,101,114,40,118,97,108,117,101,41,59,32,47,47,32,109,97,121,32,116,104,114,111,119,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,111,109,97,105,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,97,105,110,46,101,120,105,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,120,105,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,114,101,115,117,108,116,32,61,61,61,32,114,101,97,99,116,105,111,110,46,112,114,111,109,105,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,106,101,99,116,40,84,121,112,101,69,114,114,111,114,40,39,80,114,111,109,105,115,101,45,99,104,97,105,110,32,99,121,99,108,101,39,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,101,110,32,61,32,105,115,84,104,101,110,97,98,108,101,40,114,101,115,117,108,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,101,110,46,99,97,108,108,40,114,101,115,117,108,116,44,32,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,114,101,115,111,108,118,101,40,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,114,101,106,101,99,116,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,111,109,97,105,110,32,38,38,32,33,101,120,105,116,101,100,41,32,100,111,109,97,105,110,46,101,120,105,116,40,41,59,92,110,32,32,32,32,32,32,32,32,114,101,106,101,99,116,40,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,32,32,32,32,119,104,105,108,101,32,40,99,104,97,105,110,46,108,101,110,103,116,104,32,62,32,105,41,32,114,117,110,40,99,104,97,105,110,91,105,43,43,93,41,59,32,47,47,32,118,97,114,105,97,98,108,101,32,108,101,110,103,116,104,32,45,32,99,97,110,39,116,32,117,115,101,32,102,111,114,69,97,99,104,92,110,32,32,32,32,112,114,111,109,105,115,101,46,95,99,32,61,32,91,93,59,92,110,32,32,32,32,112,114,111,109,105,115,101,46,95,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,105,102,32,40,105,115,82,101,106,101,99,116,32,38,38,32,33,112,114,111,109,105,115,101,46,95,104,41,32,111,110,85,110,104,97,110,100,108,101,100,40,112,114,111,109,105,115,101,41,59,92,110,32,32,125,41,59,92,110,125,59,92,110,118,97,114,32,111,110,85,110,104,97,110,100,108,101,100,32,61,32,102,117,110,99,116,105,111,110,32,40,112,114,111,109,105,115,101,41,32,123,92,110,32,32,116,97,115,107,46,99,97,108,108,40,103,108,111,98,97,108,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,112,114,111,109,105,115,101,46,95,118,59,92,110,32,32,32,32,118,97,114,32,117,110,104,97,110,100,108,101,100,32,61,32,105,115,85,110,104,97,110,100,108,101,100,40,112,114,111,109,105,115,101,41,59,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,44,32,104,97,110,100,108,101,114,44,32,99,111,110,115,111,108,101,59,92,110,32,32,32,32,105,102,32,40,117,110,104,97,110,100,108,101,100,41,32,123,92,110,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,112,101,114,102,111,114,109,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,99,101,115,115,46,101,109,105,116,40,39,117,110,104,97,110,100,108,101,100,82,101,106,101,99,116,105,111,110,39,44,32,118,97,108,117,101,44,32,112,114,111,109,105,115,101,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,97,110,100,108,101,114,32,61,32,103,108,111,98,97,108,46,111,110,117,110,104,97,110,100,108,101,100,114,101,106,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,40,123,32,112,114,111,109,105,115,101,58,32,112,114,111,109,105,115,101,44,32,114,101,97,115,111,110,58,32,118,97,108,117,101,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,99,111,110,115,111,108,101,32,61,32,103,108,111,98,97,108,46,99,111,110,115,111,108,101,41,32,38,38,32,99,111,110,115,111,108,101,46,101,114,114,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,39,85,110,104,97,110,100,108,101,100,32,112,114,111,109,105,115,101,32,114,101,106,101,99,116,105,111,110,39,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,66,114,111,119,115,101,114,115,32,115,104,111,117,108,100,32,110,111,116,32,116,114,105,103,103,101,114,32,96,114,101,106,101,99,116,105,111,110,72,97,110,100,108,101,100,96,32,101,118,101,110,116,32,105,102,32,105,116,32,119,97,115,32,104,97,110,100,108,101,100,32,104,101,114,101,44,32,78,111,100,101,74,83,32,45,32,115,104,111,117,108,100,92,110,32,32,32,32,32,32,112,114,111,109,105,115,101,46,95,104,32,61,32,105,115,78,111,100,101,32,124,124,32,105,115,85,110,104,97,110,100,108,101,100,40,112,114,111,109,105,115,101,41,32,63,32,50,32,58,32,49,59,92,110,32,32,32,32,125,32,112,114,111,109,105,115,101,46,95,97,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,105,102,32,40,117,110,104,97,110,100,108,101,100,32,38,38,32,114,101,115,117,108,116,46,101,41,32,116,104,114,111,119,32,114,101,115,117,108,116,46,118,59,92,110,32,32,125,41,59,92,110,125,59,92,110,118,97,114,32,105,115,85,110,104,97,110,100,108,101,100,32,61,32,102,117,110,99,116,105,111,110,32,40,112,114,111,109,105,115,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,114,111,109,105,115,101,46,95,104,32,33,61,61,32,49,32,38,38,32,40,112,114,111,109,105,115,101,46,95,97,32,124,124,32,112,114,111,109,105,115,101,46,95,99,41,46,108,101,110,103,116,104,32,61,61,61,32,48,59,92,110,125,59,92,110,118,97,114,32,111,110,72,97,110,100,108,101,85,110,104,97,110,100,108,101,100,32,61,32,102,117,110,99,116,105,111,110,32,40,112,114,111,109,105,115,101,41,32,123,92,110,32,32,116,97,115,107,46,99,97,108,108,40,103,108,111,98,97,108,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,59,92,110,32,32,32,32,105,102,32,40,105,115,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,112,114,111,99,101,115,115,46,101,109,105,116,40,39,114,101,106,101,99,116,105,111,110,72,97,110,100,108,101,100,39,44,32,112,114,111,109,105,115,101,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,97,110,100,108,101,114,32,61,32,103,108,111,98,97,108,46,111,110,114,101,106,101,99,116,105,111,110,104,97,110,100,108,101,100,41,32,123,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,40,123,32,112,114,111,109,105,115,101,58,32,112,114,111,109,105,115,101,44,32,114,101,97,115,111,110,58,32,112,114,111,109,105,115,101,46,95,118,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,59,92,110,118,97,114,32,36,114,101,106,101,99,116,32,61,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,112,114,111,109,105,115,101,32,61,32,116,104,105,115,59,92,110,32,32,105,102,32,40,112,114,111,109,105,115,101,46,95,100,41,32,114,101,116,117,114,110,59,92,110,32,32,112,114,111,109,105,115,101,46,95,100,32,61,32,116,114,117,101,59,92,110,32,32,112,114,111,109,105,115,101,32,61,32,112,114,111,109,105,115,101,46,95,119,32,124,124,32,112,114,111,109,105,115,101,59,32,47,47,32,117,110,119,114,97,112,92,110,32,32,112,114,111,109,105,115,101,46,95,118,32,61,32,118,97,108,117,101,59,92,110,32,32,112,114,111,109,105,115,101,46,95,115,32,61,32,50,59,92,110,32,32,105,102,32,40,33,112,114,111,109,105,115,101,46,95,97,41,32,112,114,111,109,105,115,101,46,95,97,32,61,32,112,114,111,109,105,115,101,46,95,99,46,115,108,105,99,101,40,41,59,92,110,32,32,110,111,116,105,102,121,40,112,114,111,109,105,115,101,44,32,116,114,117,101,41,59,92,110,125,59,92,110,118,97,114,32,36,114,101,115,111,108,118,101,32,61,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,112,114,111,109,105,115,101,32,61,32,116,104,105,115,59,92,110,32,32,118,97,114,32,116,104,101,110,59,92,110,32,32,105,102,32,40,112,114,111,109,105,115,101,46,95,100,41,32,114,101,116,117,114,110,59,92,110,32,32,112,114,111,109,105,115,101,46,95,100,32,61,32,116,114,117,101,59,92,110,32,32,112,114,111,109,105,115,101,32,61,32,112,114,111,109,105,115,101,46,95,119,32,124,124,32,112,114,111,109,105,115,101,59,32,47,47,32,117,110,119,114,97,112,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,105,102,32,40,112,114,111,109,105,115,101,32,61,61,61,32,118,97,108,117,101,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,92,34,80,114,111,109,105,115,101,32,99,97,110,39,116,32,98,101,32,114,101,115,111,108,118,101,100,32,105,116,115,101,108,102,92,34,41,59,92,110,32,32,32,32,105,102,32,40,116,104,101,110,32,61,32,105,115,84,104,101,110,97,98,108,101,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,109,105,99,114,111,116,97,115,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,119,114,97,112,112,101,114,32,61,32,123,32,95,119,58,32,112,114,111,109,105,115,101,44,32,95,100,58,32,102,97,108,115,101,32,125,59,32,47,47,32,119,114,97,112,92,110,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,101,110,46,99,97,108,108,40,118,97,108,117,101,44,32,99,116,120,40,36,114,101,115,111,108,118,101,44,32,119,114,97,112,112,101,114,44,32,49,41,44,32,99,116,120,40,36,114,101,106,101,99,116,44,32,119,114,97,112,112,101,114,44,32,49,41,41,59,92,110,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,36,114,101,106,101,99,116,46,99,97,108,108,40,119,114,97,112,112,101,114,44,32,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,112,114,111,109,105,115,101,46,95,118,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,112,114,111,109,105,115,101,46,95,115,32,61,32,49,59,92,110,32,32,32,32,32,32,110,111,116,105,102,121,40,112,114,111,109,105,115,101,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,36,114,101,106,101,99,116,46,99,97,108,108,40,123,32,95,119,58,32,112,114,111,109,105,115,101,44,32,95,100,58,32,102,97,108,115,101,32,125,44,32,101,41,59,32,47,47,32,119,114,97,112,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,32,99,111,110,115,116,114,117,99,116,111,114,32,112,111,108,121,102,105,108,108,92,110,105,102,32,40,33,85,83,69,95,78,65,84,73,86,69,41,32,123,92,110,32,32,47,47,32,50,53,46,52,46,51,46,49,32,80,114,111,109,105,115,101,40,101,120,101,99,117,116,111,114,41,92,110,32,32,36,80,114,111,109,105,115,101,32,61,32,102,117,110,99,116,105,111,110,32,80,114,111,109,105,115,101,40,101,120,101,99,117,116,111,114,41,32,123,92,110,32,32,32,32,97,110,73,110,115,116,97,110,99,101,40,116,104,105,115,44,32,36,80,114,111,109,105,115,101,44,32,80,82,79,77,73,83,69,44,32,39,95,104,39,41,59,92,110,32,32,32,32,97,70,117,110,99,116,105,111,110,40,101,120,101,99,117,116,111,114,41,59,92,110,32,32,32,32,73,110,116,101,114,110,97,108,46,99,97,108,108,40,116,104,105,115,41,59,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,101,120,101,99,117,116,111,114,40,99,116,120,40,36,114,101,115,111,108,118,101,44,32,116,104,105,115,44,32,49,41,44,32,99,116,120,40,36,114,101,106,101,99,116,44,32,116,104,105,115,44,32,49,41,41,59,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,114,114,41,32,123,92,110,32,32,32,32,32,32,36,114,101,106,101,99,116,46,99,97,108,108,40,116,104,105,115,44,32,101,114,114,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,117,110,117,115,101,100,45,118,97,114,115,92,110,32,32,73,110,116,101,114,110,97,108,32,61,32,102,117,110,99,116,105,111,110,32,80,114,111,109,105,115,101,40,101,120,101,99,117,116,111,114,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,99,32,61,32,91,93,59,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,60,45,32,97,119,97,105,116,105,110,103,32,114,101,97,99,116,105,111,110,115,92,110,32,32,32,32,116,104,105,115,46,95,97,32,61,32,117,110,100,101,102,105,110,101,100,59,32,32,32,32,32,32,47,47,32,60,45,32,99,104,101,99,107,101,100,32,105,110,32,105,115,85,110,104,97,110,100,108,101,100,32,114,101,97,99,116,105,111,110,115,92,110,32,32,32,32,116,104,105,115,46,95,115,32,61,32,48,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,60,45,32,115,116,97,116,101,92,110,32,32,32,32,116,104,105,115,46,95,100,32,61,32,102,97,108,115,101,59,32,32,32,32,32,32,32,32,32,32,47,47,32,60,45,32,100,111,110,101,92,110,32,32,32,32,116,104,105,115,46,95,118,32,61,32,117,110,100,101,102,105,110,101,100,59,32,32,32,32,32,32,47,47,32,60,45,32,118,97,108,117,101,92,110,32,32,32,32,116,104,105,115,46,95,104,32,61,32,48,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,60,45,32,114,101,106,101,99,116,105,111,110,32,115,116,97,116,101,44,32,48,32,45,32,100,101,102,97,117,108,116,44,32,49,32,45,32,104,97,110,100,108,101,100,44,32,50,32,45,32,117,110,104,97,110,100,108,101,100,92,110,32,32,32,32,116,104,105,115,46,95,110,32,61,32,102,97,108,115,101,59,32,32,32,32,32,32,32,32,32,32,47,47,32,60,45,32,110,111,116,105,102,121,92,110,32,32,125,59,92,110,32,32,73,110,116,101,114,110,97,108,46,112,114,111,116,111,116,121,112,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,45,97,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,45,97,108,108,46,106,115,92,34,41,40,36,80,114,111,109,105,115,101,46,112,114,111,116,111,116,121,112,101,44,32,123,92,110,32,32,32,32,47,47,32,50,53,46,52,46,53,46,51,32,80,114,111,109,105,115,101,46,112,114,111,116,111,116,121,112,101,46,116,104,101,110,40,111,110,70,117,108,102,105,108,108,101,100,44,32,111,110,82,101,106,101,99,116,101,100,41,92,110,32,32,32,32,116,104,101,110,58,32,102,117,110,99,116,105,111,110,32,116,104,101,110,40,111,110,70,117,108,102,105,108,108,101,100,44,32,111,110,82,101,106,101,99,116,101,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,97,99,116,105,111,110,32,61,32,110,101,119,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,40,115,112,101,99,105,101,115,67,111,110,115,116,114,117,99,116,111,114,40,116,104,105,115,44,32,36,80,114,111,109,105,115,101,41,41,59,92,110,32,32,32,32,32,32,114,101,97,99,116,105,111,110,46,111,107,32,61,32,116,121,112,101,111,102,32,111,110,70,117,108,102,105,108,108,101,100,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,111,110,70,117,108,102,105,108,108,101,100,32,58,32,116,114,117,101,59,92,110,32,32,32,32,32,32,114,101,97,99,116,105,111,110,46,102,97,105,108,32,61,32,116,121,112,101,111,102,32,111,110,82,101,106,101,99,116,101,100,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,111,110,82,101,106,101,99,116,101,100,59,92,110,32,32,32,32,32,32,114,101,97,99,116,105,111,110,46,100,111,109,97,105,110,32,61,32,105,115,78,111,100,101,32,63,32,112,114,111,99,101,115,115,46,100,111,109,97,105,110,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,99,46,112,117,115,104,40,114,101,97,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,97,41,32,116,104,105,115,46,95,97,46,112,117,115,104,40,114,101,97,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,115,41,32,110,111,116,105,102,121,40,116,104,105,115,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,97,99,116,105,111,110,46,112,114,111,109,105,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,50,53,46,52,46,53,46,49,32,80,114,111,109,105,115,101,46,112,114,111,116,111,116,121,112,101,46,99,97,116,99,104,40,111,110,82,101,106,101,99,116,101,100,41,92,110,32,32,32,32,39,99,97,116,99,104,39,58,32,102,117,110,99,116,105,111,110,32,40,111,110,82,101,106,101,99,116,101,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,104,101,110,40,117,110,100,101,102,105,110,101,100,44,32,111,110,82,101,106,101,99,116,101,100,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,79,119,110,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,109,105,115,101,32,61,32,110,101,119,32,73,110,116,101,114,110,97,108,40,41,59,92,110,32,32,32,32,116,104,105,115,46,112,114,111,109,105,115,101,32,61,32,112,114,111,109,105,115,101,59,92,110,32,32,32,32,116,104,105,115,46,114,101,115,111,108,118,101,32,61,32,99,116,120,40,36,114,101,115,111,108,118,101,44,32,112,114,111,109,105,115,101,44,32,49,41,59,92,110,32,32,32,32,116,104,105,115,46,114,101,106,101,99,116,32,61,32,99,116,120,40,36,114,101,106,101,99,116,44,32,112,114,111,109,105,115,101,44,32,49,41,59,92,110,32,32,125,59,92,110,32,32,110,101,119,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,77,111,100,117,108,101,46,102,32,61,32,110,101,119,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,32,61,32,102,117,110,99,116,105,111,110,32,40,67,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,67,32,61,61,61,32,36,80,114,111,109,105,115,101,32,124,124,32,67,32,61,61,61,32,87,114,97,112,112,101,114,92,110,32,32,32,32,32,32,63,32,110,101,119,32,79,119,110,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,40,67,41,92,110,32,32,32,32,32,32,58,32,110,101,119,71,101,110,101,114,105,99,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,40,67,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,71,32,43,32,36,101,120,112,111,114,116,46,87,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,85,83,69,95,78,65,84,73,86,69,44,32,123,32,80,114,111,109,105,115,101,58,32,36,80,114,111,109,105,115,101,32,125,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,101,116,45,116,111,45,115,116,114,105,110,103,45,116,97,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,116,111,45,115,116,114,105,110,103,45,116,97,103,46,106,115,92,34,41,40,36,80,114,111,109,105,115,101,44,32,80,82,79,77,73,83,69,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,101,116,45,115,112,101,99,105,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,115,112,101,99,105,101,115,46,106,115,92,34,41,40,80,82,79,77,73,83,69,41,59,92,110,87,114,97,112,112,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,91,80,82,79,77,73,83,69,93,59,92,110,92,110,47,47,32,115,116,97,116,105,99,115,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,85,83,69,95,78,65,84,73,86,69,44,32,80,82,79,77,73,83,69,44,32,123,92,110,32,32,47,47,32,50,53,46,52,46,52,46,53,32,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,114,41,92,110,32,32,114,101,106,101,99,116,58,32,102,117,110,99,116,105,111,110,32,114,101,106,101,99,116,40,114,41,32,123,92,110,32,32,32,32,118,97,114,32,99,97,112,97,98,105,108,105,116,121,32,61,32,110,101,119,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,40,116,104,105,115,41,59,92,110,32,32,32,32,118,97,114,32,36,36,114,101,106,101,99,116,32,61,32,99,97,112,97,98,105,108,105,116,121,46,114,101,106,101,99,116,59,92,110,32,32,32,32,36,36,114,101,106,101,99,116,40,114,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,97,112,97,98,105,108,105,116,121,46,112,114,111,109,105,115,101,59,92,110,32,32,125,92,110,125,41,59,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,76,73,66,82,65,82,89,32,124,124,32,33,85,83,69,95,78,65,84,73,86,69,41,44,32,80,82,79,77,73,83,69,44,32,123,92,110,32,32,47,47,32,50,53,46,52,46,52,46,54,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,120,41,92,110,32,32,114,101,115,111,108,118,101,58,32,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,109,105,115,101,82,101,115,111,108,118,101,40,76,73,66,82,65,82,89,32,38,38,32,116,104,105,115,32,61,61,61,32,87,114,97,112,112,101,114,32,63,32,36,80,114,111,109,105,115,101,32,58,32,116,104,105,115,44,32,120,41,59,92,110,32,32,125,92,110,125,41,59,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,40,85,83,69,95,78,65,84,73,86,69,32,38,38,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,45,100,101,116,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,100,101,116,101,99,116,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,105,116,101,114,41,32,123,92,110,32,32,36,80,114,111,109,105,115,101,46,97,108,108,40,105,116,101,114,41,91,39,99,97,116,99,104,39,93,40,101,109,112,116,121,41,59,92,110,125,41,41,44,32,80,82,79,77,73,83,69,44,32,123,92,110,32,32,47,47,32,50,53,46,52,46,52,46,49,32,80,114,111,109,105,115,101,46,97,108,108,40,105,116,101,114,97,98,108,101,41,92,110,32,32,97,108,108,58,32,102,117,110,99,116,105,111,110,32,97,108,108,40,105,116,101,114,97,98,108,101,41,32,123,92,110,32,32,32,32,118,97,114,32,67,32,61,32,116,104,105,115,59,92,110,32,32,32,32,118,97,114,32,99,97,112,97,98,105,108,105,116,121,32,61,32,110,101,119,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,40,67,41,59,92,110,32,32,32,32,118,97,114,32,114,101,115,111,108,118,101,32,61,32,99,97,112,97,98,105,108,105,116,121,46,114,101,115,111,108,118,101,59,92,110,32,32,32,32,118,97,114,32,114,101,106,101,99,116,32,61,32,99,97,112,97,98,105,108,105,116,121,46,114,101,106,101,99,116,59,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,112,101,114,102,111,114,109,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,109,97,105,110,105,110,103,32,61,32,49,59,92,110,32,32,32,32,32,32,102,111,114,79,102,40,105,116,101,114,97,98,108,101,44,32,102,97,108,115,101,44,32,102,117,110,99,116,105,111,110,32,40,112,114,111,109,105,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,36,105,110,100,101,120,32,61,32,105,110,100,101,120,43,43,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,108,114,101,97,100,121,67,97,108,108,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,115,46,112,117,115,104,40,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,32,32,32,32,114,101,109,97,105,110,105,110,103,43,43,59,92,110,32,32,32,32,32,32,32,32,67,46,114,101,115,111,108,118,101,40,112,114,111,109,105,115,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,108,114,101,97,100,121,67,97,108,108,101,100,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,97,108,114,101,97,100,121,67,97,108,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,115,91,36,105,110,100,101,120,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,45,45,114,101,109,97,105,110,105,110,103,32,124,124,32,114,101,115,111,108,118,101,40,118,97,108,117,101,115,41,59,92,110,32,32,32,32,32,32,32,32,125,44,32,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,45,45,114,101,109,97,105,110,105,110,103,32,124,124,32,114,101,115,111,108,118,101,40,118,97,108,117,101,115,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,105,102,32,40,114,101,115,117,108,116,46,101,41,32,114,101,106,101,99,116,40,114,101,115,117,108,116,46,118,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,97,112,97,98,105,108,105,116,121,46,112,114,111,109,105,115,101,59,92,110,32,32,125,44,92,110,32,32,47,47,32,50,53,46,52,46,52,46,52,32,80,114,111,109,105,115,101,46,114,97,99,101,40,105,116,101,114,97,98,108,101,41,92,110,32,32,114,97,99,101,58,32,102,117,110,99,116,105,111,110,32,114,97,99,101,40,105,116,101,114,97,98,108,101,41,32,123,92,110,32,32,32,32,118,97,114,32,67,32,61,32,116,104,105,115,59,92,110,32,32,32,32,118,97,114,32,99,97,112,97,98,105,108,105,116,121,32,61,32,110,101,119,80,114,111,109,105,115,101,67,97,112,97,98,105,108,105,116,121,40,67,41,59,92,110,32,32,32,32,118,97,114,32,114,101,106,101,99,116,32,61,32,99,97,112,97,98,105,108,105,116,121,46,114,101,106,101,99,116,59,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,112,101,114,102,111,114,109,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,102,111,114,79,102,40,105,116,101,114,97,98,108,101,44,32,102,97,108,115,101,44,32,102,117,110,99,116,105,111,110,32,40,112,114,111,109,105,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,67,46,114,101,115,111,108,118,101,40,112,114,111,109,105,115,101,41,46,116,104,101,110,40,99,97,112,97,98,105,108,105,116,121,46,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,105,102,32,40,114,101,115,117,108,116,46,101,41,32,114,101,106,101,99,116,40,114,101,115,117,108,116,46,118,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,97,112,97,98,105,108,105,116,121,46,112,114,111,109,105,115,101,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,112,114,111,109,105,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,97,112,112,108,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,97,112,112,108,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,54,46,49,46,49,32,82,101,102,108,101,99,116,46,97,112,112,108,121,40,116,97,114,103,101,116,44,32,116,104,105,115,65,114,103,117,109,101,110,116,44,32,97,114,103,117,109,101,110,116,115,76,105,115,116,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,97,70,117,110,99,116,105,111,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,45,102,117,110,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,114,65,112,112,108,121,32,61,32,40,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,46,82,101,102,108,101,99,116,41,32,124,124,32,123,125,41,46,97,112,112,108,121,59,92,110,118,97,114,32,102,65,112,112,108,121,32,61,32,70,117,110,99,116,105,111,110,46,97,112,112,108,121,59,92,110,47,47,32,77,83,32,69,100,103,101,32,97,114,103,117,109,101,110,116,115,76,105,115,116,32,97,114,103,117,109,101,110,116,32,105,115,32,111,112,116,105,111,110,97,108,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,65,112,112,108,121,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,41,59,92,110,125,41,44,32,39,82,101,102,108,101,99,116,39,44,32,123,92,110,32,32,97,112,112,108,121,58,32,102,117,110,99,116,105,111,110,32,97,112,112,108,121,40,116,97,114,103,101,116,44,32,116,104,105,115,65,114,103,117,109,101,110,116,44,32,97,114,103,117,109,101,110,116,115,76,105,115,116,41,32,123,92,110,32,32,32,32,118,97,114,32,84,32,61,32,97,70,117,110,99,116,105,111,110,40,116,97,114,103,101,116,41,59,92,110,32,32,32,32,118,97,114,32,76,32,61,32,97,110,79,98,106,101,99,116,40,97,114,103,117,109,101,110,116,115,76,105,115,116,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,65,112,112,108,121,32,63,32,114,65,112,112,108,121,40,84,44,32,116,104,105,115,65,114,103,117,109,101,110,116,44,32,76,41,32,58,32,102,65,112,112,108,121,46,99,97,108,108,40,84,44,32,116,104,105,115,65,114,103,117,109,101,110,116,44,32,76,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,97,112,112,108,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,54,46,49,46,50,32,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,40,116,97,114,103,101,116,44,32,97,114,103,117,109,101,110,116,115,76,105,115,116,32,91,44,32,110,101,119,84,97,114,103,101,116,93,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,99,114,101,97,116,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,46,106,115,92,34,41,59,92,110,118,97,114,32,97,70,117,110,99,116,105,111,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,45,102,117,110,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,102,97,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,98,105,110,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,98,105,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,98,105,110,100,46,106,115,92,34,41,59,92,110,118,97,114,32,114,67,111,110,115,116,114,117,99,116,32,61,32,40,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,46,82,101,102,108,101,99,116,41,32,124,124,32,123,125,41,46,99,111,110,115,116,114,117,99,116,59,92,110,92,110,47,47,32,77,83,32,69,100,103,101,32,115,117,112,112,111,114,116,115,32,111,110,108,121,32,50,32,97,114,103,117,109,101,110,116,115,32,97,110,100,32,97,114,103,117,109,101,110,116,115,76,105,115,116,32,97,114,103,117,109,101,110,116,32,105,115,32,111,112,116,105,111,110,97,108,92,110,47,47,32,70,70,32,78,105,103,104,116,108,121,32,115,101,116,115,32,116,104,105,114,100,32,97,114,103,117,109,101,110,116,32,97,115,32,96,110,101,119,46,116,97,114,103,101,116,96,44,32,98,117,116,32,100,111,101,115,32,110,111,116,32,99,114,101,97,116,101,32,96,116,104,105,115,96,32,102,114,111,109,32,105,116,92,110,118,97,114,32,78,69,87,95,84,65,82,71,69,84,95,66,85,71,32,61,32,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,70,40,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,92,110,32,32,114,101,116,117,114,110,32,33,40,114,67,111,110,115,116,114,117,99,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,44,32,91,93,44,32,70,41,32,105,110,115,116,97,110,99,101,111,102,32,70,41,59,92,110,125,41,59,92,110,118,97,114,32,65,82,71,83,95,66,85,71,32,61,32,33,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,67,111,110,115,116,114,117,99,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,47,42,32,101,109,112,116,121,32,42,47,32,125,41,59,92,110,125,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,78,69,87,95,84,65,82,71,69,84,95,66,85,71,32,124,124,32,65,82,71,83,95,66,85,71,41,44,32,39,82,101,102,108,101,99,116,39,44,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,58,32,102,117,110,99,116,105,111,110,32,99,111,110,115,116,114,117,99,116,40,84,97,114,103,101,116,44,32,97,114,103,115,32,47,42,32,44,32,110,101,119,84,97,114,103,101,116,32,42,47,41,32,123,92,110,32,32,32,32,97,70,117,110,99,116,105,111,110,40,84,97,114,103,101,116,41,59,92,110,32,32,32,32,97,110,79,98,106,101,99,116,40,97,114,103,115,41,59,92,110,32,32,32,32,118,97,114,32,110,101,119,84,97,114,103,101,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,51,32,63,32,84,97,114,103,101,116,32,58,32,97,70,117,110,99,116,105,111,110,40,97,114,103,117,109,101,110,116,115,91,50,93,41,59,92,110,32,32,32,32,105,102,32,40,65,82,71,83,95,66,85,71,32,38,38,32,33,78,69,87,95,84,65,82,71,69,84,95,66,85,71,41,32,114,101,116,117,114,110,32,114,67,111,110,115,116,114,117,99,116,40,84,97,114,103,101,116,44,32,97,114,103,115,44,32,110,101,119,84,97,114,103,101,116,41,59,92,110,32,32,32,32,105,102,32,40,84,97,114,103,101,116,32,61,61,32,110,101,119,84,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,119,47,111,32,97,108,116,101,114,101,100,32,110,101,119,84,97,114,103,101,116,44,32,111,112,116,105,109,105,122,97,116,105,111,110,32,102,111,114,32,48,45,52,32,97,114,103,117,109,101,110,116,115,92,110,32,32,32,32,32,32,115,119,105,116,99,104,32,40,97,114,103,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,48,58,32,114,101,116,117,114,110,32,110,101,119,32,84,97,114,103,101,116,40,41,59,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,49,58,32,114,101,116,117,114,110,32,110,101,119,32,84,97,114,103,101,116,40,97,114,103,115,91,48,93,41,59,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,50,58,32,114,101,116,117,114,110,32,110,101,119,32,84,97,114,103,101,116,40,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,51,58,32,114,101,116,117,114,110,32,110,101,119,32,84,97,114,103,101,116,40,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,44,32,97,114,103,115,91,50,93,41,59,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,52,58,32,114,101,116,117,114,110,32,110,101,119,32,84,97,114,103,101,116,40,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,44,32,97,114,103,115,91,50,93,44,32,97,114,103,115,91,51,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,119,47,111,32,97,108,116,101,114,101,100,32,110,101,119,84,97,114,103,101,116,44,32,108,111,116,32,111,102,32,97,114,103,117,109,101,110,116,115,32,99,97,115,101,92,110,32,32,32,32,32,32,118,97,114,32,36,97,114,103,115,32,61,32,91,110,117,108,108,93,59,92,110,32,32,32,32,32,32,36,97,114,103,115,46,112,117,115,104,46,97,112,112,108,121,40,36,97,114,103,115,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,40,98,105,110,100,46,97,112,112,108,121,40,84,97,114,103,101,116,44,32,36,97,114,103,115,41,41,40,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,119,105,116,104,32,97,108,116,101,114,101,100,32,110,101,119,84,97,114,103,101,116,44,32,110,111,116,32,115,117,112,112,111,114,116,32,98,117,105,108,116,45,105,110,32,99,111,110,115,116,114,117,99,116,111,114,115,92,110,32,32,32,32,118,97,114,32,112,114,111,116,111,32,61,32,110,101,119,84,97,114,103,101,116,46,112,114,111,116,111,116,121,112,101,59,92,110,32,32,32,32,118,97,114,32,105,110,115,116,97,110,99,101,32,61,32,99,114,101,97,116,101,40,105,115,79,98,106,101,99,116,40,112,114,111,116,111,41,32,63,32,112,114,111,116,111,32,58,32,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,41,59,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,70,117,110,99,116,105,111,110,46,97,112,112,108,121,46,99,97,108,108,40,84,97,114,103,101,116,44,32,105,110,115,116,97,110,99,101,44,32,97,114,103,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,40,114,101,115,117,108,116,41,32,63,32,114,101,115,117,108,116,32,58,32,105,110,115,116,97,110,99,101,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,100,101,102,105,110,101,45,112,114,111,112,101,114,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,100,101,102,105,110,101,45,112,114,111,112,101,114,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,54,46,49,46,51,32,82,101,102,108,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,75,101,121,44,32,97,116,116,114,105,98,117,116,101,115,41,92,110,118,97,114,32,100,80,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,59,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,80,114,105,109,105,116,105,118,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,112,114,105,109,105,116,105,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,92,34,41,59,92,110,92,110,47,47,32,77,83,32,69,100,103,101,32,104,97,115,32,98,114,111,107,101,110,32,82,101,102,108,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,32,45,32,116,104,114,111,119,105,110,103,32,105,110,115,116,101,97,100,32,111,102,32,114,101,116,117,114,110,105,110,103,32,102,97,108,115,101,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,117,110,100,101,102,92,110,32,32,82,101,102,108,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,100,80,46,102,40,123,125,44,32,49,44,32,123,32,118,97,108,117,101,58,32,49,32,125,41,44,32,49,44,32,123,32,118,97,108,117,101,58,32,50,32,125,41,59,92,110,125,41,44,32,39,82,101,102,108,101,99,116,39,44,32,123,92,110,32,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,58,32,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,75,101,121,44,32,97,116,116,114,105,98,117,116,101,115,41,32,123,92,110,32,32,32,32,97,110,79,98,106,101,99,116,40,116,97,114,103,101,116,41,59,92,110,32,32,32,32,112,114,111,112,101,114,116,121,75,101,121,32,61,32,116,111,80,114,105,109,105,116,105,118,101,40,112,114,111,112,101,114,116,121,75,101,121,44,32,116,114,117,101,41,59,92,110,32,32,32,32,97,110,79,98,106,101,99,116,40,97,116,116,114,105,98,117,116,101,115,41,59,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,100,80,46,102,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,75,101,121,44,32,97,116,116,114,105,98,117,116,101,115,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,100,101,102,105,110,101,45,112,114,111,112,101,114,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,100,101,108,101,116,101,45,112,114,111,112,101,114,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,100,101,108,101,116,101,45,112,114,111,112,101,114,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,54,46,49,46,52,32,82,101,102,108,101,99,116,46,100,101,108,101,116,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,75,101,121,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,103,79,80,68,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,100,46,106,115,92,34,41,46,102,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,82,101,102,108,101,99,116,39,44,32,123,92,110,32,32,100,101,108,101,116,101,80,114,111,112,101,114,116,121,58,32,102,117,110,99,116,105,111,110,32,100,101,108,101,116,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,75,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,100,101,115,99,32,61,32,103,79,80,68,40,97,110,79,98,106,101,99,116,40,116,97,114,103,101,116,41,44,32,112,114,111,112,101,114,116,121,75,101,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,100,101,115,99,32,38,38,32,33,100,101,115,99,46,99,111,110,102,105,103,117,114,97,98,108,101,32,63,32,102,97,108,115,101,32,58,32,100,101,108,101,116,101,32,116,97,114,103,101,116,91,112,114,111,112,101,114,116,121,75,101,121,93,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,100,101,108,101,116,101,45,112,114,111,112,101,114,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,101,110,117,109,101,114,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,101,110,117,109,101,114,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,50,54,46,49,46,53,32,82,101,102,108,101,99,116,46,101,110,117,109,101,114,97,116,101,40,116,97,114,103,101,116,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,69,110,117,109,101,114,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,114,97,116,101,100,41,32,123,92,110,32,32,116,104,105,115,46,95,116,32,61,32,97,110,79,98,106,101,99,116,40,105,116,101,114,97,116,101,100,41,59,32,47,47,32,116,97,114,103,101,116,92,110,32,32,116,104,105,115,46,95,105,32,61,32,48,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,110,101,120,116,32,105,110,100,101,120,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,116,104,105,115,46,95,107,32,61,32,91,93,59,32,32,32,32,32,32,47,47,32,107,101,121,115,92,110,32,32,118,97,114,32,107,101,121,59,92,110,32,32,102,111,114,32,40,107,101,121,32,105,110,32,105,116,101,114,97,116,101,100,41,32,107,101,121,115,46,112,117,115,104,40,107,101,121,41,59,92,110,125,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,45,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,99,114,101,97,116,101,46,106,115,92,34,41,40,69,110,117,109,101,114,97,116,101,44,32,39,79,98,106,101,99,116,39,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,116,104,97,116,32,61,32,116,104,105,115,59,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,116,104,97,116,46,95,107,59,92,110,32,32,118,97,114,32,107,101,121,59,92,110,32,32,100,111,32,123,92,110,32,32,32,32,105,102,32,40,116,104,97,116,46,95,105,32,62,61,32,107,101,121,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,123,32,118,97,108,117,101,58,32,117,110,100,101,102,105,110,101,100,44,32,100,111,110,101,58,32,116,114,117,101,32,125,59,92,110,32,32,125,32,119,104,105,108,101,32,40,33,40,40,107,101,121,32,61,32,107,101,121,115,91,116,104,97,116,46,95,105,43,43,93,41,32,105,110,32,116,104,97,116,46,95,116,41,41,59,92,110,32,32,114,101,116,117,114,110,32,123,32,118,97,108,117,101,58,32,107,101,121,44,32,100,111,110,101,58,32,102,97,108,115,101,32,125,59,92,110,125,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,82,101,102,108,101,99,116,39,44,32,123,92,110,32,32,101,110,117,109,101,114,97,116,101,58,32,102,117,110,99,116,105,111,110,32,101,110,117,109,101,114,97,116,101,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,69,110,117,109,101,114,97,116,101,40,116,97,114,103,101,116,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,101,110,117,109,101,114,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,54,46,49,46,55,32,82,101,102,108,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,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,75,101,121,41,92,110,118,97,114,32,103,79,80,68,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,100,46,106,115,92,34,41,59,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,82,101,102,108,101,99,116,39,44,32,123,92,110,32,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,58,32,102,117,110,99,116,105,111,110,32,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,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,75,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,103,79,80,68,46,102,40,97,110,79,98,106,101,99,116,40,116,97,114,103,101,116,41,44,32,112,114,111,112,101,114,116,121,75,101,121,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,103,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,103,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,54,46,49,46,56,32,82,101,102,108,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,97,114,103,101,116,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,103,101,116,80,114,111,116,111,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,112,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,112,111,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,82,101,102,108,101,99,116,39,44,32,123,92,110,32,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,58,32,102,117,110,99,116,105,111,110,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,103,101,116,80,114,111,116,111,40,97,110,79,98,106,101,99,116,40,116,97,114,103,101,116,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,103,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,103,101,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,103,101,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,54,46,49,46,54,32,82,101,102,108,101,99,116,46,103,101,116,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,75,101,121,32,91,44,32,114,101,99,101,105,118,101,114,93,41,92,110,118,97,114,32,103,79,80,68,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,100,46,106,115,92,34,41,59,92,110,118,97,114,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,112,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,112,111,46,106,115,92,34,41,59,92,110,118,97,114,32,104,97,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,97,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,92,34,41,59,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,75,101,121,32,47,42,32,44,32,114,101,99,101,105,118,101,114,32,42,47,41,32,123,92,110,32,32,118,97,114,32,114,101,99,101,105,118,101,114,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,51,32,63,32,116,97,114,103,101,116,32,58,32,97,114,103,117,109,101,110,116,115,91,50,93,59,92,110,32,32,118,97,114,32,100,101,115,99,44,32,112,114,111,116,111,59,92,110,32,32,105,102,32,40,97,110,79,98,106,101,99,116,40,116,97,114,103,101,116,41,32,61,61,61,32,114,101,99,101,105,118,101,114,41,32,114,101,116,117,114,110,32,116,97,114,103,101,116,91,112,114,111,112,101,114,116,121,75,101,121,93,59,92,110,32,32,105,102,32,40,100,101,115,99,32,61,32,103,79,80,68,46,102,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,75,101,121,41,41,32,114,101,116,117,114,110,32,104,97,115,40,100,101,115,99,44,32,39,118,97,108,117,101,39,41,92,110,32,32,32,32,63,32,100,101,115,99,46,118,97,108,117,101,92,110,32,32,32,32,58,32,100,101,115,99,46,103,101,116,32,33,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,63,32,100,101,115,99,46,103,101,116,46,99,97,108,108,40,114,101,99,101,105,118,101,114,41,92,110,32,32,32,32,32,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,112,114,111,116,111,32,61,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,97,114,103,101,116,41,41,41,32,114,101,116,117,114,110,32,103,101,116,40,112,114,111,116,111,44,32,112,114,111,112,101,114,116,121,75,101,121,44,32,114,101,99,101,105,118,101,114,41,59,92,110,125,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,82,101,102,108,101,99,116,39,44,32,123,32,103,101,116,58,32,103,101,116,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,103,101,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,104,97,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,104,97,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,54,46,49,46,57,32,82,101,102,108,101,99,116,46,104,97,115,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,75,101,121,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,82,101,102,108,101,99,116,39,44,32,123,92,110,32,32,104,97,115,58,32,102,117,110,99,116,105,111,110,32,104,97,115,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,75,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,101,114,116,121,75,101,121,32,105,110,32,116,97,114,103,101,116,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,104,97,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,105,115,45,101,120,116,101,110,115,105,98,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,105,115,45,101,120,116,101,110,115,105,98,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,54,46,49,46,49,48,32,82,101,102,108,101,99,116,46,105,115,69,120,116,101,110,115,105,98,108,101,40,116,97,114,103,101,116,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,105,115,69,120,116,101,110,115,105,98,108,101,32,61,32,79,98,106,101,99,116,46,105,115,69,120,116,101,110,115,105,98,108,101,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,82,101,102,108,101,99,116,39,44,32,123,92,110,32,32,105,115,69,120,116,101,110,115,105,98,108,101,58,32,102,117,110,99,116,105,111,110,32,105,115,69,120,116,101,110,115,105,98,108,101,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,97,110,79,98,106,101,99,116,40,116,97,114,103,101,116,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,36,105,115,69,120,116,101,110,115,105,98,108,101,32,63,32,36,105,115,69,120,116,101,110,115,105,98,108,101,40,116,97,114,103,101,116,41,32,58,32,116,114,117,101,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,105,115,45,101,120,116,101,110,115,105,98,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,111,119,110,45,107,101,121,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,111,119,110,45,107,101,121,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,54,46,49,46,49,49,32,82,101,102,108,101,99,116,46,111,119,110,75,101,121,115,40,116,97,114,103,101,116,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,82,101,102,108,101,99,116,39,44,32,123,32,111,119,110,75,101,121,115,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,119,110,45,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,119,110,45,107,101,121,115,46,106,115,92,34,41,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,111,119,110,45,107,101,121,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,112,114,101,118,101,110,116,45,101,120,116,101,110,115,105,111,110,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,112,114,101,118,101,110,116,45,101,120,116,101,110,115,105,111,110,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,54,46,49,46,49,50,32,82,101,102,108,101,99,116,46,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,40,116,97,114,103,101,116,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,32,61,32,79,98,106,101,99,116,46,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,82,101,102,108,101,99,116,39,44,32,123,92,110,32,32,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,58,32,102,117,110,99,116,105,111,110,32,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,97,110,79,98,106,101,99,116,40,116,97,114,103,101,116,41,59,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,105,102,32,40,36,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,41,32,36,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,40,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,112,114,101,118,101,110,116,45,101,120,116,101,110,115,105,111,110,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,115,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,115,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,54,46,49,46,49,52,32,82,101,102,108,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,97,114,103,101,116,44,32,112,114,111,116,111,41,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,115,101,116,80,114,111,116,111,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,101,116,45,112,114,111,116,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,112,114,111,116,111,46,106,115,92,34,41,59,92,110,92,110,105,102,32,40,115,101,116,80,114,111,116,111,41,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,82,101,102,108,101,99,116,39,44,32,123,92,110,32,32,115,101,116,80,114,111,116,111,116,121,112,101,79,102,58,32,102,117,110,99,116,105,111,110,32,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,97,114,103,101,116,44,32,112,114,111,116,111,41,32,123,92,110,32,32,32,32,115,101,116,80,114,111,116,111,46,99,104,101,99,107,40,116,97,114,103,101,116,44,32,112,114,111,116,111,41,59,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,115,101,116,80,114,111,116,111,46,115,101,116,40,116,97,114,103,101,116,44,32,112,114,111,116,111,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,115,101,116,45,112,114,111,116,111,116,121,112,101,45,111,102,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,115,101,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,115,101,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,54,46,49,46,49,51,32,82,101,102,108,101,99,116,46,115,101,116,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,75,101,121,44,32,86,32,91,44,32,114,101,99,101,105,118,101,114,93,41,92,110,118,97,114,32,100,80,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,59,92,110,118,97,114,32,103,79,80,68,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,100,46,106,115,92,34,41,59,92,110,118,97,114,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,112,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,112,111,46,106,115,92,34,41,59,92,110,118,97,114,32,104,97,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,97,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,92,34,41,59,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,99,114,101,97,116,101,68,101,115,99,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,75,101,121,44,32,86,32,47,42,32,44,32,114,101,99,101,105,118,101,114,32,42,47,41,32,123,92,110,32,32,118,97,114,32,114,101,99,101,105,118,101,114,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,52,32,63,32,116,97,114,103,101,116,32,58,32,97,114,103,117,109,101,110,116,115,91,51,93,59,92,110,32,32,118,97,114,32,111,119,110,68,101,115,99,32,61,32,103,79,80,68,46,102,40,97,110,79,98,106,101,99,116,40,116,97,114,103,101,116,41,44,32,112,114,111,112,101,114,116,121,75,101,121,41,59,92,110,32,32,118,97,114,32,101,120,105,115,116,105,110,103,68,101,115,99,114,105,112,116,111,114,44,32,112,114,111,116,111,59,92,110,32,32,105,102,32,40,33,111,119,110,68,101,115,99,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,112,114,111,116,111,32,61,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,97,114,103,101,116,41,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,101,116,40,112,114,111,116,111,44,32,112,114,111,112,101,114,116,121,75,101,121,44,32,86,44,32,114,101,99,101,105,118,101,114,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,111,119,110,68,101,115,99,32,61,32,99,114,101,97,116,101,68,101,115,99,40,48,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,104,97,115,40,111,119,110,68,101,115,99,44,32,39,118,97,108,117,101,39,41,41,32,123,92,110,32,32,32,32,105,102,32,40,111,119,110,68,101,115,99,46,119,114,105,116,97,98,108,101,32,61,61,61,32,102,97,108,115,101,32,124,124,32,33,105,115,79,98,106,101,99,116,40,114,101,99,101,105,118,101,114,41,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,105,102,32,40,101,120,105,115,116,105,110,103,68,101,115,99,114,105,112,116,111,114,32,61,32,103,79,80,68,46,102,40,114,101,99,101,105,118,101,114,44,32,112,114,111,112,101,114,116,121,75,101,121,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,101,120,105,115,116,105,110,103,68,101,115,99,114,105,112,116,111,114,46,103,101,116,32,124,124,32,101,120,105,115,116,105,110,103,68,101,115,99,114,105,112,116,111,114,46,115,101,116,32,124,124,32,101,120,105,115,116,105,110,103,68,101,115,99,114,105,112,116,111,114,46,119,114,105,116,97,98,108,101,32,61,61,61,32,102,97,108,115,101,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,101,120,105,115,116,105,110,103,68,101,115,99,114,105,112,116,111,114,46,118,97,108,117,101,32,61,32,86,59,92,110,32,32,32,32,32,32,100,80,46,102,40,114,101,99,101,105,118,101,114,44,32,112,114,111,112,101,114,116,121,75,101,121,44,32,101,120,105,115,116,105,110,103,68,101,115,99,114,105,112,116,111,114,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,100,80,46,102,40,114,101,99,101,105,118,101,114,44,32,112,114,111,112,101,114,116,121,75,101,121,44,32,99,114,101,97,116,101,68,101,115,99,40,48,44,32,86,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,111,119,110,68,101,115,99,46,115,101,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,102,97,108,115,101,32,58,32,40,111,119,110,68,101,115,99,46,115,101,116,46,99,97,108,108,40,114,101,99,101,105,118,101,114,44,32,86,41,44,32,116,114,117,101,41,59,92,110,125,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,82,101,102,108,101,99,116,39,44,32,123,32,115,101,116,58,32,115,101,116,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,102,108,101,99,116,46,115,101,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,99,111,110,115,116,114,117,99,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,99,111,110,115,116,114,117,99,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,105,110,104,101,114,105,116,73,102,82,101,113,117,105,114,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,110,104,101,114,105,116,45,105,102,45,114,101,113,117,105,114,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,110,104,101,114,105,116,45,105,102,45,114,101,113,117,105,114,101,100,46,106,115,92,34,41,59,92,110,118,97,114,32,100,80,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,46,102,41,59,92,110,118,97,114,32,103,79,80,78,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,110,46,106,115,92,34,41,46,102,41,59,92,110,118,97,114,32,105,115,82,101,103,69,120,112,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,114,101,103,101,120,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,114,101,103,101,120,112,46,106,115,92,34,41,59,92,110,118,97,114,32,36,102,108,97,103,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,108,97,103,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,108,97,103,115,46,106,115,92,34,41,59,92,110,118,97,114,32,36,82,101,103,69,120,112,32,61,32,103,108,111,98,97,108,46,82,101,103,69,120,112,59,92,110,118,97,114,32,66,97,115,101,32,61,32,36,82,101,103,69,120,112,59,92,110,118,97,114,32,112,114,111,116,111,32,61,32,36,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,59,92,110,118,97,114,32,114,101,49,32,61,32,47,97,47,103,59,92,110,118,97,114,32,114,101,50,32,61,32,47,97,47,103,59,92,110,47,47,32,92,34,110,101,119,92,34,32,99,114,101,97,116,101,115,32,97,32,110,101,119,32,111,98,106,101,99,116,44,32,111,108,100,32,119,101,98,107,105,116,32,98,117,103,103,121,32,104,101,114,101,92,110,118,97,114,32,67,79,82,82,69,67,84,95,78,69,87,32,61,32,110,101,119,32,36,82,101,103,69,120,112,40,114,101,49,41,32,33,61,61,32,114,101,49,59,92,110,92,110,105,102,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,32,38,38,32,40,33,67,79,82,82,69,67,84,95,78,69,87,32,124,124,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,50,91,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,40,39,109,97,116,99,104,39,41,93,32,61,32,102,97,108,115,101,59,92,110,32,32,47,47,32,82,101,103,69,120,112,32,99,111,110,115,116,114,117,99,116,111,114,32,99,97,110,32,97,108,116,101,114,32,102,108,97,103,115,32,97,110,100,32,73,115,82,101,103,69,120,112,32,119,111,114,107,115,32,99,111,114,114,101,99,116,32,119,105,116,104,32,64,64,109,97,116,99,104,92,110,32,32,114,101,116,117,114,110,32,36,82,101,103,69,120,112,40,114,101,49,41,32,33,61,32,114,101,49,32,124,124,32,36,82,101,103,69,120,112,40,114,101,50,41,32,61,61,32,114,101,50,32,124,124,32,36,82,101,103,69,120,112,40,114,101,49,44,32,39,105,39,41,32,33,61,32,39,47,97,47,105,39,59,92,110,125,41,41,41,32,123,92,110,32,32,36,82,101,103,69,120,112,32,61,32,102,117,110,99,116,105,111,110,32,82,101,103,69,120,112,40,112,44,32,102,41,32,123,92,110,32,32,32,32,118,97,114,32,116,105,82,69,32,61,32,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,36,82,101,103,69,120,112,59,92,110,32,32,32,32,118,97,114,32,112,105,82,69,32,61,32,105,115,82,101,103,69,120,112,40,112,41,59,92,110,32,32,32,32,118,97,114,32,102,105,85,32,61,32,102,32,61,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,114,101,116,117,114,110,32,33,116,105,82,69,32,38,38,32,112,105,82,69,32,38,38,32,112,46,99,111,110,115,116,114,117,99,116,111,114,32,61,61,61,32,36,82,101,103,69,120,112,32,38,38,32,102,105,85,32,63,32,112,92,110,32,32,32,32,32,32,58,32,105,110,104,101,114,105,116,73,102,82,101,113,117,105,114,101,100,40,67,79,82,82,69,67,84,95,78,69,87,92,110,32,32,32,32,32,32,32,32,63,32,110,101,119,32,66,97,115,101,40,112,105,82,69,32,38,38,32,33,102,105,85,32,63,32,112,46,115,111,117,114,99,101,32,58,32,112,44,32,102,41,92,110,32,32,32,32,32,32,32,32,58,32,66,97,115,101,40,40,112,105,82,69,32,61,32,112,32,105,110,115,116,97,110,99,101,111,102,32,36,82,101,103,69,120,112,41,32,63,32,112,46,115,111,117,114,99,101,32,58,32,112,44,32,112,105,82,69,32,38,38,32,102,105,85,32,63,32,36,102,108,97,103,115,46,99,97,108,108,40,112,41,32,58,32,102,41,92,110,32,32,32,32,32,32,44,32,116,105,82,69,32,63,32,116,104,105,115,32,58,32,112,114,111,116,111,44,32,36,82,101,103,69,120,112,41,59,92,110,32,32,125,59,92,110,32,32,118,97,114,32,112,114,111,120,121,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,107,101,121,32,105,110,32,36,82,101,103,69,120,112,32,124,124,32,100,80,40,36,82,101,103,69,120,112,44,32,107,101,121,44,32,123,92,110,32,32,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,66,97,115,101,91,107,101,121,93,59,32,125,44,92,110,32,32,32,32,32,32,115,101,116,58,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,32,66,97,115,101,91,107,101,121,93,32,61,32,105,116,59,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,115,32,61,32,103,79,80,78,40,66,97,115,101,41,44,32,105,32,61,32,48,59,32,107,101,121,115,46,108,101,110,103,116,104,32,62,32,105,59,41,32,112,114,111,120,121,40,107,101,121,115,91,105,43,43,93,41,59,92,110,32,32,112,114,111,116,111,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,36,82,101,103,69,120,112,59,92,110,32,32,36,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,32,61,32,112,114,111,116,111,59,92,110,32,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,92,34,41,40,103,108,111,98,97,108,44,32,39,82,101,103,69,120,112,39,44,32,36,82,101,103,69,120,112,41,59,92,110,125,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,101,116,45,115,112,101,99,105,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,115,112,101,99,105,101,115,46,106,115,92,34,41,40,39,82,101,103,69,120,112,39,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,99,111,110,115,116,114,117,99,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,101,120,101,99,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,101,120,101,99,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,114,101,103,101,120,112,69,120,101,99,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,103,101,120,112,45,101,120,101,99,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,103,101,120,112,45,101,120,101,99,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,40,123,92,110,32,32,116,97,114,103,101,116,58,32,39,82,101,103,69,120,112,39,44,92,110,32,32,112,114,111,116,111,58,32,116,114,117,101,44,92,110,32,32,102,111,114,99,101,100,58,32,114,101,103,101,120,112,69,120,101,99,32,33,61,61,32,47,46,47,46,101,120,101,99,92,110,125,44,32,123,92,110,32,32,101,120,101,99,58,32,114,101,103,101,120,112,69,120,101,99,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,101,120,101,99,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,102,108,97,103,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,102,108,97,103,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,50,49,46,50,46,53,46,51,32,103,101,116,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,46,102,108,97,103,115,40,41,92,110,105,102,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,32,38,38,32,47,46,47,103,46,102,108,97,103,115,32,33,61,32,39,103,39,41,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,46,102,41,40,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,44,32,39,102,108,97,103,115,39,44,32,123,92,110,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,103,101,116,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,108,97,103,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,108,97,103,115,46,106,115,92,34,41,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,102,108,97,103,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,109,97,116,99,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,109,97,116,99,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,97,100,118,97,110,99,101,83,116,114,105,110,103,73,110,100,101,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,100,118,97,110,99,101,45,115,116,114,105,110,103,45,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,118,97,110,99,101,45,115,116,114,105,110,103,45,105,110,100,101,120,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,103,69,120,112,69,120,101,99,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,103,101,120,112,45,101,120,101,99,45,97,98,115,116,114,97,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,103,101,120,112,45,101,120,101,99,45,97,98,115,116,114,97,99,116,46,106,115,92,34,41,59,92,110,92,110,47,47,32,64,64,109,97,116,99,104,32,108,111,103,105,99,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,105,120,45,114,101,45,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,105,120,45,114,101,45,119,107,115,46,106,115,92,34,41,40,39,109,97,116,99,104,39,44,32,49,44,32,102,117,110,99,116,105,111,110,32,40,100,101,102,105,110,101,100,44,32,77,65,84,67,72,44,32,36,109,97,116,99,104,44,32,109,97,121,98,101,67,97,108,108,78,97,116,105,118,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,47,47,32,96,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,109,97,116,99,104,96,32,109,101,116,104,111,100,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,116,99,51,57,46,103,105,116,104,117,98,46,105,111,47,101,99,109,97,50,54,50,47,35,115,101,99,45,115,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,109,97,116,99,104,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,116,99,104,40,114,101,103,101,120,112,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,79,32,61,32,100,101,102,105,110,101,100,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,118,97,114,32,102,110,32,61,32,114,101,103,101,120,112,32,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,114,101,103,101,120,112,91,77,65,84,67,72,93,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,102,110,46,99,97,108,108,40,114,101,103,101,120,112,44,32,79,41,32,58,32,110,101,119,32,82,101,103,69,120,112,40,114,101,103,101,120,112,41,91,77,65,84,67,72,93,40,83,116,114,105,110,103,40,79,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,96,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,91,64,64,109,97,116,99,104,93,96,32,109,101,116,104,111,100,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,116,99,51,57,46,103,105,116,104,117,98,46,105,111,47,101,99,109,97,50,54,50,47,35,115,101,99,45,114,101,103,101,120,112,46,112,114,111,116,111,116,121,112,101,45,64,64,109,97,116,99,104,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,40,114,101,103,101,120,112,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,32,61,32,109,97,121,98,101,67,97,108,108,78,97,116,105,118,101,40,36,109,97,116,99,104,44,32,114,101,103,101,120,112,44,32,116,104,105,115,41,59,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,46,100,111,110,101,41,32,114,101,116,117,114,110,32,114,101,115,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,118,97,114,32,114,120,32,61,32,97,110,79,98,106,101,99,116,40,114,101,103,101,120,112,41,59,92,110,32,32,32,32,32,32,118,97,114,32,83,32,61,32,83,116,114,105,110,103,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,105,102,32,40,33,114,120,46,103,108,111,98,97,108,41,32,114,101,116,117,114,110,32,114,101,103,69,120,112,69,120,101,99,40,114,120,44,32,83,41,59,92,110,32,32,32,32,32,32,118,97,114,32,102,117,108,108,85,110,105,99,111,100,101,32,61,32,114,120,46,117,110,105,99,111,100,101,59,92,110,32,32,32,32,32,32,114,120,46,108,97,115,116,73,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,32,32,118,97,114,32,65,32,61,32,91,93,59,92,110,32,32,32,32,32,32,118,97,114,32,110,32,61,32,48,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,40,114,101,115,117,108,116,32,61,32,114,101,103,69,120,112,69,120,101,99,40,114,120,44,32,83,41,41,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,83,116,114,32,61,32,83,116,114,105,110,103,40,114,101,115,117,108,116,91,48,93,41,59,92,110,32,32,32,32,32,32,32,32,65,91,110,93,32,61,32,109,97,116,99,104,83,116,114,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,109,97,116,99,104,83,116,114,32,61,61,61,32,39,39,41,32,114,120,46,108,97,115,116,73,110,100,101,120,32,61,32,97,100,118,97,110,99,101,83,116,114,105,110,103,73,110,100,101,120,40,83,44,32,116,111,76,101,110,103,116,104,40,114,120,46,108,97,115,116,73,110,100,101,120,41,44,32,102,117,108,108,85,110,105,99,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,110,43,43,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,32,61,61,61,32,48,32,63,32,110,117,108,108,32,58,32,65,59,92,110,32,32,32,32,125,92,110,32,32,93,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,109,97,116,99,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,114,101,112,108,97,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,114,101,112,108,97,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,73,110,116,101,103,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,110,116,101,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,110,116,101,103,101,114,46,106,115,92,34,41,59,92,110,118,97,114,32,97,100,118,97,110,99,101,83,116,114,105,110,103,73,110,100,101,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,100,118,97,110,99,101,45,115,116,114,105,110,103,45,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,118,97,110,99,101,45,115,116,114,105,110,103,45,105,110,100,101,120,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,103,69,120,112,69,120,101,99,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,103,101,120,112,45,101,120,101,99,45,97,98,115,116,114,97,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,103,101,120,112,45,101,120,101,99,45,97,98,115,116,114,97,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,109,97,120,32,61,32,77,97,116,104,46,109,97,120,59,92,110,118,97,114,32,109,105,110,32,61,32,77,97,116,104,46,109,105,110,59,92,110,118,97,114,32,102,108,111,111,114,32,61,32,77,97,116,104,46,102,108,111,111,114,59,92,110,118,97,114,32,83,85,66,83,84,73,84,85,84,73,79,78,95,83,89,77,66,79,76,83,32,61,32,47,92,92,36,40,91,36,38,96,39,93,124,92,92,100,92,92,100,63,124,60,91,94,62,93,42,62,41,47,103,59,92,110,118,97,114,32,83,85,66,83,84,73,84,85,84,73,79,78,95,83,89,77,66,79,76,83,95,78,79,95,78,65,77,69,68,32,61,32,47,92,92,36,40,91,36,38,96,39,93,124,92,92,100,92,92,100,63,41,47,103,59,92,110,92,110,118,97,114,32,109,97,121,98,101,84,111,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,105,116,32,58,32,83,116,114,105,110,103,40,105,116,41,59,92,110,125,59,92,110,92,110,47,47,32,64,64,114,101,112,108,97,99,101,32,108,111,103,105,99,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,105,120,45,114,101,45,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,105,120,45,114,101,45,119,107,115,46,106,115,92,34,41,40,39,114,101,112,108,97,99,101,39,44,32,50,44,32,102,117,110,99,116,105,111,110,32,40,100,101,102,105,110,101,100,44,32,82,69,80,76,65,67,69,44,32,36,114,101,112,108,97,99,101,44,32,109,97,121,98,101,67,97,108,108,78,97,116,105,118,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,47,47,32,96,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,114,101,112,108,97,99,101,96,32,109,101,116,104,111,100,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,116,99,51,57,46,103,105,116,104,117,98,46,105,111,47,101,99,109,97,50,54,50,47,35,115,101,99,45,115,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,114,101,112,108,97,99,101,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,112,108,97,99,101,40,115,101,97,114,99,104,86,97,108,117,101,44,32,114,101,112,108,97,99,101,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,79,32,61,32,100,101,102,105,110,101,100,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,118,97,114,32,102,110,32,61,32,115,101,97,114,99,104,86,97,108,117,101,32,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,115,101,97,114,99,104,86,97,108,117,101,91,82,69,80,76,65,67,69,93,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,32,33,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,32,32,63,32,102,110,46,99,97,108,108,40,115,101,97,114,99,104,86,97,108,117,101,44,32,79,44,32,114,101,112,108,97,99,101,86,97,108,117,101,41,92,110,32,32,32,32,32,32,32,32,58,32,36,114,101,112,108,97,99,101,46,99,97,108,108,40,83,116,114,105,110,103,40,79,41,44,32,115,101,97,114,99,104,86,97,108,117,101,44,32,114,101,112,108,97,99,101,86,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,96,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,91,64,64,114,101,112,108,97,99,101,93,96,32,109,101,116,104,111,100,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,116,99,51,57,46,103,105,116,104,117,98,46,105,111,47,101,99,109,97,50,54,50,47,35,115,101,99,45,114,101,103,101,120,112,46,112,114,111,116,111,116,121,112,101,45,64,64,114,101,112,108,97,99,101,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,40,114,101,103,101,120,112,44,32,114,101,112,108,97,99,101,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,32,61,32,109,97,121,98,101,67,97,108,108,78,97,116,105,118,101,40,36,114,101,112,108,97,99,101,44,32,114,101,103,101,120,112,44,32,116,104,105,115,44,32,114,101,112,108,97,99,101,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,46,100,111,110,101,41,32,114,101,116,117,114,110,32,114,101,115,46,118,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,120,32,61,32,97,110,79,98,106,101,99,116,40,114,101,103,101,120,112,41,59,92,110,32,32,32,32,32,32,118,97,114,32,83,32,61,32,83,116,114,105,110,103,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,116,105,111,110,97,108,82,101,112,108,97,99,101,32,61,32,116,121,112,101,111,102,32,114,101,112,108,97,99,101,86,97,108,117,101,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,59,92,110,32,32,32,32,32,32,105,102,32,40,33,102,117,110,99,116,105,111,110,97,108,82,101,112,108,97,99,101,41,32,114,101,112,108,97,99,101,86,97,108,117,101,32,61,32,83,116,114,105,110,103,40,114,101,112,108,97,99,101,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,118,97,114,32,103,108,111,98,97,108,32,61,32,114,120,46,103,108,111,98,97,108,59,92,110,32,32,32,32,32,32,105,102,32,40,103,108,111,98,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,117,108,108,85,110,105,99,111,100,101,32,61,32,114,120,46,117,110,105,99,111,100,101,59,92,110,32,32,32,32,32,32,32,32,114,120,46,108,97,115,116,73,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,114,101,103,69,120,112,69,120,101,99,40,114,120,44,32,83,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,101,115,117,108,116,32,61,61,61,32,110,117,108,108,41,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,115,46,112,117,115,104,40,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,103,108,111,98,97,108,41,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,83,116,114,32,61,32,83,116,114,105,110,103,40,114,101,115,117,108,116,91,48,93,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,109,97,116,99,104,83,116,114,32,61,61,61,32,39,39,41,32,114,120,46,108,97,115,116,73,110,100,101,120,32,61,32,97,100,118,97,110,99,101,83,116,114,105,110,103,73,110,100,101,120,40,83,44,32,116,111,76,101,110,103,116,104,40,114,120,46,108,97,115,116,73,110,100,101,120,41,44,32,102,117,108,108,85,110,105,99,111,100,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,97,99,99,117,109,117,108,97,116,101,100,82,101,115,117,108,116,32,61,32,39,39,59,92,110,32,32,32,32,32,32,118,97,114,32,110,101,120,116,83,111,117,114,99,101,80,111,115,105,116,105,111,110,32,61,32,48,59,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,114,101,115,117,108,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,114,101,115,117,108,116,115,91,105,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,101,100,32,61,32,83,116,114,105,110,103,40,114,101,115,117,108,116,91,48,93,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,111,115,105,116,105,111,110,32,61,32,109,97,120,40,109,105,110,40,116,111,73,110,116,101,103,101,114,40,114,101,115,117,108,116,46,105,110,100,101,120,41,44,32,83,46,108,101,110,103,116,104,41,44,32,48,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,97,112,116,117,114,101,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,47,47,32,78,79,84,69,58,32,84,104,105,115,32,105,115,32,101,113,117,105,118,97,108,101,110,116,32,116,111,92,110,32,32,32,32,32,32,32,32,47,47,32,32,32,99,97,112,116,117,114,101,115,32,61,32,114,101,115,117,108,116,46,115,108,105,99,101,40,49,41,46,109,97,112,40,109,97,121,98,101,84,111,83,116,114,105,110,103,41,92,110,32,32,32,32,32,32,32,32,47,47,32,98,117,116,32,102,111,114,32,115,111,109,101,32,114,101,97,115,111,110,32,96,110,97,116,105,118,101,83,108,105,99,101,46,99,97,108,108,40,114,101,115,117,108,116,44,32,49,44,32,114,101,115,117,108,116,46,108,101,110,103,116,104,41,96,32,40,99,97,108,108,101,100,32,105,110,92,110,32,32,32,32,32,32,32,32,47,47,32,116,104,101,32,115,108,105,99,101,32,112,111,108,121,102,105,108,108,32,119,104,101,110,32,115,108,105,99,105,110,103,32,110,97,116,105,118,101,32,97,114,114,97,121,115,41,32,92,34,100,111,101,115,110,39,116,32,119,111,114,107,92,34,32,105,110,32,115,97,102,97,114,105,32,57,32,97,110,100,92,110,32,32,32,32,32,32,32,32,47,47,32,99,97,117,115,101,115,32,97,32,99,114,97,115,104,32,40,104,116,116,112,115,58,47,47,112,97,115,116,101,98,105,110,46,99,111,109,47,78,50,49,81,122,101,81,65,41,32,119,104,101,110,32,116,114,121,105,110,103,32,116,111,32,100,101,98,117,103,32,105,116,46,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,49,59,32,106,32,60,32,114,101,115,117,108,116,46,108,101,110,103,116,104,59,32,106,43,43,41,32,99,97,112,116,117,114,101,115,46,112,117,115,104,40,109,97,121,98,101,84,111,83,116,114,105,110,103,40,114,101,115,117,108,116,91,106,93,41,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,97,109,101,100,67,97,112,116,117,114,101,115,32,61,32,114,101,115,117,108,116,46,103,114,111,117,112,115,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,117,110,99,116,105,111,110,97,108,82,101,112,108,97,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,112,108,97,99,101,114,65,114,103,115,32,61,32,91,109,97,116,99,104,101,100,93,46,99,111,110,99,97,116,40,99,97,112,116,117,114,101,115,44,32,112,111,115,105,116,105,111,110,44,32,83,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,97,109,101,100,67,97,112,116,117,114,101,115,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,114,101,112,108,97,99,101,114,65,114,103,115,46,112,117,115,104,40,110,97,109,101,100,67,97,112,116,117,114,101,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,112,108,97,99,101,109,101,110,116,32,61,32,83,116,114,105,110,103,40,114,101,112,108,97,99,101,86,97,108,117,101,46,97,112,112,108,121,40,117,110,100,101,102,105,110,101,100,44,32,114,101,112,108,97,99,101,114,65,114,103,115,41,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,112,108,97,99,101,109,101,110,116,32,61,32,103,101,116,83,117,98,115,116,105,116,117,116,105,111,110,40,109,97,116,99,104,101,100,44,32,83,44,32,112,111,115,105,116,105,111,110,44,32,99,97,112,116,117,114,101,115,44,32,110,97,109,101,100,67,97,112,116,117,114,101,115,44,32,114,101,112,108,97,99,101,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,111,115,105,116,105,111,110,32,62,61,32,110,101,120,116,83,111,117,114,99,101,80,111,115,105,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,99,99,117,109,117,108,97,116,101,100,82,101,115,117,108,116,32,43,61,32,83,46,115,108,105,99,101,40,110,101,120,116,83,111,117,114,99,101,80,111,115,105,116,105,111,110,44,32,112,111,115,105,116,105,111,110,41,32,43,32,114,101,112,108,97,99,101,109,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,110,101,120,116,83,111,117,114,99,101,80,111,115,105,116,105,111,110,32,61,32,112,111,115,105,116,105,111,110,32,43,32,109,97,116,99,104,101,100,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,99,99,117,109,117,108,97,116,101,100,82,101,115,117,108,116,32,43,32,83,46,115,108,105,99,101,40,110,101,120,116,83,111,117,114,99,101,80,111,115,105,116,105,111,110,41,59,92,110,32,32,32,32,125,92,110,32,32,93,59,92,110,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,116,99,51,57,46,103,105,116,104,117,98,46,105,111,47,101,99,109,97,50,54,50,47,35,115,101,99,45,103,101,116,115,117,98,115,116,105,116,117,116,105,111,110,92,110,32,32,102,117,110,99,116,105,111,110,32,103,101,116,83,117,98,115,116,105,116,117,116,105,111,110,40,109,97,116,99,104,101,100,44,32,115,116,114,44,32,112,111,115,105,116,105,111,110,44,32,99,97,112,116,117,114,101,115,44,32,110,97,109,101,100,67,97,112,116,117,114,101,115,44,32,114,101,112,108,97,99,101,109,101,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,116,97,105,108,80,111,115,32,61,32,112,111,115,105,116,105,111,110,32,43,32,109,97,116,99,104,101,100,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,109,32,61,32,99,97,112,116,117,114,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,115,121,109,98,111,108,115,32,61,32,83,85,66,83,84,73,84,85,84,73,79,78,95,83,89,77,66,79,76,83,95,78,79,95,78,65,77,69,68,59,92,110,32,32,32,32,105,102,32,40,110,97,109,101,100,67,97,112,116,117,114,101,115,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,110,97,109,101,100,67,97,112,116,117,114,101,115,32,61,32,116,111,79,98,106,101,99,116,40,110,97,109,101,100,67,97,112,116,117,114,101,115,41,59,92,110,32,32,32,32,32,32,115,121,109,98,111,108,115,32,61,32,83,85,66,83,84,73,84,85,84,73,79,78,95,83,89,77,66,79,76,83,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,36,114,101,112,108,97,99,101,46,99,97,108,108,40,114,101,112,108,97,99,101,109,101,110,116,44,32,115,121,109,98,111,108,115,44,32,102,117,110,99,116,105,111,110,32,40,109,97,116,99,104,44,32,99,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,97,112,116,117,114,101,59,92,110,32,32,32,32,32,32,115,119,105,116,99,104,32,40,99,104,46,99,104,97,114,65,116,40,48,41,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,39,36,39,58,32,114,101,116,117,114,110,32,39,36,39,59,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,39,38,39,58,32,114,101,116,117,114,110,32,109,97,116,99,104,101,100,59,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,39,96,39,58,32,114,101,116,117,114,110,32,115,116,114,46,115,108,105,99,101,40,48,44,32,112,111,115,105,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,39,92,34,58,32,114,101,116,117,114,110,32,115,116,114,46,115,108,105,99,101,40,116,97,105,108,80,111,115,41,59,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,39,60,39,58,92,110,32,32,32,32,32,32,32,32,32,32,99,97,112,116,117,114,101,32,61,32,110,97,109,101,100,67,97,112,116,117,114,101,115,91,99,104,46,115,108,105,99,101,40,49,44,32,45,49,41,93,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,47,47,32,92,92,100,92,92,100,63,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,32,61,32,43,99,104,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,32,61,61,61,32,48,41,32,114,101,116,117,114,110,32,109,97,116,99,104,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,32,62,32,109,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,32,61,32,102,108,111,111,114,40,110,32,47,32,49,48,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,102,32,61,61,61,32,48,41,32,114,101,116,117,114,110,32,109,97,116,99,104,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,102,32,60,61,32,109,41,32,114,101,116,117,114,110,32,99,97,112,116,117,114,101,115,91,102,32,45,32,49,93,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,99,104,46,99,104,97,114,65,116,40,49,41,32,58,32,99,97,112,116,117,114,101,115,91,102,32,45,32,49,93,32,43,32,99,104,46,99,104,97,114,65,116,40,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,116,99,104,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,99,97,112,116,117,114,101,32,61,32,99,97,112,116,117,114,101,115,91,110,32,45,32,49,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,112,116,117,114,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,39,39,32,58,32,99,97,112,116,117,114,101,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,114,101,112,108,97,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,115,101,97,114,99,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,115,101,97,114,99,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,115,97,109,101,86,97,108,117,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,97,109,101,45,118,97,108,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,97,109,101,45,118,97,108,117,101,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,103,69,120,112,69,120,101,99,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,103,101,120,112,45,101,120,101,99,45,97,98,115,116,114,97,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,103,101,120,112,45,101,120,101,99,45,97,98,115,116,114,97,99,116,46,106,115,92,34,41,59,92,110,92,110,47,47,32,64,64,115,101,97,114,99,104,32,108,111,103,105,99,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,105,120,45,114,101,45,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,105,120,45,114,101,45,119,107,115,46,106,115,92,34,41,40,39,115,101,97,114,99,104,39,44,32,49,44,32,102,117,110,99,116,105,111,110,32,40,100,101,102,105,110,101,100,44,32,83,69,65,82,67,72,44,32,36,115,101,97,114,99,104,44,32,109,97,121,98,101,67,97,108,108,78,97,116,105,118,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,47,47,32,96,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,101,97,114,99,104,96,32,109,101,116,104,111,100,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,116,99,51,57,46,103,105,116,104,117,98,46,105,111,47,101,99,109,97,50,54,50,47,35,115,101,99,45,115,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,101,97,114,99,104,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,101,97,114,99,104,40,114,101,103,101,120,112,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,79,32,61,32,100,101,102,105,110,101,100,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,118,97,114,32,102,110,32,61,32,114,101,103,101,120,112,32,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,114,101,103,101,120,112,91,83,69,65,82,67,72,93,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,102,110,46,99,97,108,108,40,114,101,103,101,120,112,44,32,79,41,32,58,32,110,101,119,32,82,101,103,69,120,112,40,114,101,103,101,120,112,41,91,83,69,65,82,67,72,93,40,83,116,114,105,110,103,40,79,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,96,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,91,64,64,115,101,97,114,99,104,93,96,32,109,101,116,104,111,100,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,116,99,51,57,46,103,105,116,104,117,98,46,105,111,47,101,99,109,97,50,54,50,47,35,115,101,99,45,114,101,103,101,120,112,46,112,114,111,116,111,116,121,112,101,45,64,64,115,101,97,114,99,104,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,40,114,101,103,101,120,112,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,32,61,32,109,97,121,98,101,67,97,108,108,78,97,116,105,118,101,40,36,115,101,97,114,99,104,44,32,114,101,103,101,120,112,44,32,116,104,105,115,41,59,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,46,100,111,110,101,41,32,114,101,116,117,114,110,32,114,101,115,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,118,97,114,32,114,120,32,61,32,97,110,79,98,106,101,99,116,40,114,101,103,101,120,112,41,59,92,110,32,32,32,32,32,32,118,97,114,32,83,32,61,32,83,116,114,105,110,103,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,118,97,114,32,112,114,101,118,105,111,117,115,76,97,115,116,73,110,100,101,120,32,61,32,114,120,46,108,97,115,116,73,110,100,101,120,59,92,110,32,32,32,32,32,32,105,102,32,40,33,115,97,109,101,86,97,108,117,101,40,112,114,101,118,105,111,117,115,76,97,115,116,73,110,100,101,120,44,32,48,41,41,32,114,120,46,108,97,115,116,73,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,114,101,103,69,120,112,69,120,101,99,40,114,120,44,32,83,41,59,92,110,32,32,32,32,32,32,105,102,32,40,33,115,97,109,101,86,97,108,117,101,40,114,120,46,108,97,115,116,73,110,100,101,120,44,32,112,114,101,118,105,111,117,115,76,97,115,116,73,110,100,101,120,41,41,32,114,120,46,108,97,115,116,73,110,100,101,120,32,61,32,112,114,101,118,105,111,117,115,76,97,115,116,73,110,100,101,120,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,61,61,61,32,110,117,108,108,32,63,32,45,49,32,58,32,114,101,115,117,108,116,46,105,110,100,101,120,59,92,110,32,32,32,32,125,92,110,32,32,93,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,115,101,97,114,99,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,115,112,108,105,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,115,112,108,105,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,105,115,82,101,103,69,120,112,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,114,101,103,101,120,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,114,101,103,101,120,112,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,115,112,101,99,105,101,115,67,111,110,115,116,114,117,99,116,111,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,46,106,115,92,34,41,59,92,110,118,97,114,32,97,100,118,97,110,99,101,83,116,114,105,110,103,73,110,100,101,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,100,118,97,110,99,101,45,115,116,114,105,110,103,45,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,118,97,110,99,101,45,115,116,114,105,110,103,45,105,110,100,101,120,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,99,97,108,108,82,101,103,69,120,112,69,120,101,99,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,103,101,120,112,45,101,120,101,99,45,97,98,115,116,114,97,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,103,101,120,112,45,101,120,101,99,45,97,98,115,116,114,97,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,103,101,120,112,69,120,101,99,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,103,101,120,112,45,101,120,101,99,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,103,101,120,112,45,101,120,101,99,46,106,115,92,34,41,59,92,110,118,97,114,32,102,97,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,36,109,105,110,32,61,32,77,97,116,104,46,109,105,110,59,92,110,118,97,114,32,36,112,117,115,104,32,61,32,91,93,46,112,117,115,104,59,92,110,118,97,114,32,36,83,80,76,73,84,32,61,32,39,115,112,108,105,116,39,59,92,110,118,97,114,32,76,69,78,71,84,72,32,61,32,39,108,101,110,103,116,104,39,59,92,110,118,97,114,32,76,65,83,84,95,73,78,68,69,88,32,61,32,39,108,97,115,116,73,110,100,101,120,39,59,92,110,118,97,114,32,77,65,88,95,85,73,78,84,51,50,32,61,32,48,120,102,102,102,102,102,102,102,102,59,92,110,92,110,47,47,32,98,97,98,101,108,45,109,105,110,105,102,121,32,116,114,97,110,115,112,105,108,101,115,32,82,101,103,69,120,112,40,39,120,39,44,32,39,121,39,41,32,45,62,32,47,120,47,121,32,97,110,100,32,105,116,32,99,97,117,115,101,115,32,83,121,110,116,97,120,69,114,114,111,114,92,110,118,97,114,32,83,85,80,80,79,82,84,83,95,89,32,61,32,33,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,82,101,103,69,120,112,40,77,65,88,95,85,73,78,84,51,50,44,32,39,121,39,41,59,32,125,41,59,92,110,92,110,47,47,32,64,64,115,112,108,105,116,32,108,111,103,105,99,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,105,120,45,114,101,45,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,105,120,45,114,101,45,119,107,115,46,106,115,92,34,41,40,39,115,112,108,105,116,39,44,32,50,44,32,102,117,110,99,116,105,111,110,32,40,100,101,102,105,110,101,100,44,32,83,80,76,73,84,44,32,36,115,112,108,105,116,44,32,109,97,121,98,101,67,97,108,108,78,97,116,105,118,101,41,32,123,92,110,32,32,118,97,114,32,105,110,116,101,114,110,97,108,83,112,108,105,116,59,92,110,32,32,105,102,32,40,92,110,32,32,32,32,39,97,98,98,99,39,91,36,83,80,76,73,84,93,40,47,40,98,41,42,47,41,91,49,93,32,61,61,32,39,99,39,32,124,124,92,110,32,32,32,32,39,116,101,115,116,39,91,36,83,80,76,73,84,93,40,47,40,63,58,41,47,44,32,45,49,41,91,76,69,78,71,84,72,93,32,33,61,32,52,32,124,124,92,110,32,32,32,32,39,97,98,39,91,36,83,80,76,73,84,93,40,47,40,63,58,97,98,41,42,47,41,91,76,69,78,71,84,72,93,32,33,61,32,50,32,124,124,92,110,32,32,32,32,39,46,39,91,36,83,80,76,73,84,93,40,47,40,46,63,41,40,46,63,41,47,41,91,76,69,78,71,84,72,93,32,33,61,32,52,32,124,124,92,110,32,32,32,32,39,46,39,91,36,83,80,76,73,84,93,40,47,40,41,40,41,47,41,91,76,69,78,71,84,72,93,32,62,32,49,32,124,124,92,110,32,32,32,32,39,39,91,36,83,80,76,73,84,93,40,47,46,63,47,41,91,76,69,78,71,84,72,93,92,110,32,32,41,32,123,92,110,32,32,32,32,47,47,32,98,97,115,101,100,32,111,110,32,101,115,53,45,115,104,105,109,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,44,32,110,101,101,100,32,116,111,32,114,101,119,111,114,107,32,105,116,92,110,32,32,32,32,105,110,116,101,114,110,97,108,83,112,108,105,116,32,61,32,102,117,110,99,116,105,111,110,32,40,115,101,112,97,114,97,116,111,114,44,32,108,105,109,105,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,116,114,105,110,103,32,61,32,83,116,114,105,110,103,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,101,112,97,114,97,116,111,114,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,108,105,109,105,116,32,61,61,61,32,48,41,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,47,47,32,73,102,32,96,115,101,112,97,114,97,116,111,114,96,32,105,115,32,110,111,116,32,97,32,114,101,103,101,120,44,32,117,115,101,32,110,97,116,105,118,101,32,115,112,108,105,116,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,82,101,103,69,120,112,40,115,101,112,97,114,97,116,111,114,41,41,32,114,101,116,117,114,110,32,36,115,112,108,105,116,46,99,97,108,108,40,115,116,114,105,110,103,44,32,115,101,112,97,114,97,116,111,114,44,32,108,105,109,105,116,41,59,92,110,32,32,32,32,32,32,118,97,114,32,111,117,116,112,117,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,118,97,114,32,102,108,97,103,115,32,61,32,40,115,101,112,97,114,97,116,111,114,46,105,103,110,111,114,101,67,97,115,101,32,63,32,39,105,39,32,58,32,39,39,41,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,115,101,112,97,114,97,116,111,114,46,109,117,108,116,105,108,105,110,101,32,63,32,39,109,39,32,58,32,39,39,41,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,115,101,112,97,114,97,116,111,114,46,117,110,105,99,111,100,101,32,63,32,39,117,39,32,58,32,39,39,41,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,115,101,112,97,114,97,116,111,114,46,115,116,105,99,107,121,32,63,32,39,121,39,32,58,32,39,39,41,59,92,110,32,32,32,32,32,32,118,97,114,32,108,97,115,116,76,97,115,116,73,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,32,32,118,97,114,32,115,112,108,105,116,76,105,109,105,116,32,61,32,108,105,109,105,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,77,65,88,95,85,73,78,84,51,50,32,58,32,108,105,109,105,116,32,62,62,62,32,48,59,92,110,32,32,32,32,32,32,47,47,32,77,97,107,101,32,96,103,108,111,98,97,108,96,32,97,110,100,32,97,118,111,105,100,32,96,108,97,115,116,73,110,100,101,120,96,32,105,115,115,117,101,115,32,98,121,32,119,111,114,107,105,110,103,32,119,105,116,104,32,97,32,99,111,112,121,92,110,32,32,32,32,32,32,118,97,114,32,115,101,112,97,114,97,116,111,114,67,111,112,121,32,61,32,110,101,119,32,82,101,103,69,120,112,40,115,101,112,97,114,97,116,111,114,46,115,111,117,114,99,101,44,32,102,108,97,103,115,32,43,32,39,103,39,41,59,92,110,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,44,32,108,97,115,116,73,110,100,101,120,44,32,108,97,115,116,76,101,110,103,116,104,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,109,97,116,99,104,32,61,32,114,101,103,101,120,112,69,120,101,99,46,99,97,108,108,40,115,101,112,97,114,97,116,111,114,67,111,112,121,44,32,115,116,114,105,110,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,108,97,115,116,73,110,100,101,120,32,61,32,115,101,112,97,114,97,116,111,114,67,111,112,121,91,76,65,83,84,95,73,78,68,69,88,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,73,110,100,101,120,32,62,32,108,97,115,116,76,97,115,116,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,111,117,116,112,117,116,46,112,117,115,104,40,115,116,114,105,110,103,46,115,108,105,99,101,40,108,97,115,116,76,97,115,116,73,110,100,101,120,44,32,109,97,116,99,104,46,105,110,100,101,120,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,97,116,99,104,91,76,69,78,71,84,72,93,32,62,32,49,32,38,38,32,109,97,116,99,104,46,105,110,100,101,120,32,60,32,115,116,114,105,110,103,91,76,69,78,71,84,72,93,41,32,36,112,117,115,104,46,97,112,112,108,121,40,111,117,116,112,117,116,44,32,109,97,116,99,104,46,115,108,105,99,101,40,49,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,108,97,115,116,76,101,110,103,116,104,32,61,32,109,97,116,99,104,91,48,93,91,76,69,78,71,84,72,93,59,92,110,32,32,32,32,32,32,32,32,32,32,108,97,115,116,76,97,115,116,73,110,100,101,120,32,61,32,108,97,115,116,73,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,117,116,112,117,116,91,76,69,78,71,84,72,93,32,62,61,32,115,112,108,105,116,76,105,109,105,116,41,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,101,112,97,114,97,116,111,114,67,111,112,121,91,76,65,83,84,95,73,78,68,69,88,93,32,61,61,61,32,109,97,116,99,104,46,105,110,100,101,120,41,32,115,101,112,97,114,97,116,111,114,67,111,112,121,91,76,65,83,84,95,73,78,68,69,88,93,43,43,59,32,47,47,32,65,118,111,105,100,32,97,110,32,105,110,102,105,110,105,116,101,32,108,111,111,112,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,108,97,115,116,76,97,115,116,73,110,100,101,120,32,61,61,61,32,115,116,114,105,110,103,91,76,69,78,71,84,72,93,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,76,101,110,103,116,104,32,124,124,32,33,115,101,112,97,114,97,116,111,114,67,111,112,121,46,116,101,115,116,40,39,39,41,41,32,111,117,116,112,117,116,46,112,117,115,104,40,39,39,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,111,117,116,112,117,116,46,112,117,115,104,40,115,116,114,105,110,103,46,115,108,105,99,101,40,108,97,115,116,76,97,115,116,73,110,100,101,120,41,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,117,116,112,117,116,91,76,69,78,71,84,72,93,32,62,32,115,112,108,105,116,76,105,109,105,116,32,63,32,111,117,116,112,117,116,46,115,108,105,99,101,40,48,44,32,115,112,108,105,116,76,105,109,105,116,41,32,58,32,111,117,116,112,117,116,59,92,110,32,32,32,32,125,59,92,110,32,32,47,47,32,67,104,97,107,114,97,44,32,86,56,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,39,48,39,91,36,83,80,76,73,84,93,40,117,110,100,101,102,105,110,101,100,44,32,48,41,91,76,69,78,71,84,72,93,41,32,123,92,110,32,32,32,32,105,110,116,101,114,110,97,108,83,112,108,105,116,32,61,32,102,117,110,99,116,105,111,110,32,40,115,101,112,97,114,97,116,111,114,44,32,108,105,109,105,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,101,112,97,114,97,116,111,114,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,108,105,109,105,116,32,61,61,61,32,48,32,63,32,91,93,32,58,32,36,115,112,108,105,116,46,99,97,108,108,40,116,104,105,115,44,32,115,101,112,97,114,97,116,111,114,44,32,108,105,109,105,116,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,105,110,116,101,114,110,97,108,83,112,108,105,116,32,61,32,36,115,112,108,105,116,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,47,47,32,96,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,112,108,105,116,96,32,109,101,116,104,111,100,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,116,99,51,57,46,103,105,116,104,117,98,46,105,111,47,101,99,109,97,50,54,50,47,35,115,101,99,45,115,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,112,108,105,116,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,112,108,105,116,40,115,101,112,97,114,97,116,111,114,44,32,108,105,109,105,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,79,32,61,32,100,101,102,105,110,101,100,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,112,108,105,116,116,101,114,32,61,32,115,101,112,97,114,97,116,111,114,32,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,115,101,112,97,114,97,116,111,114,91,83,80,76,73,84,93,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,112,108,105,116,116,101,114,32,33,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,32,32,63,32,115,112,108,105,116,116,101,114,46,99,97,108,108,40,115,101,112,97,114,97,116,111,114,44,32,79,44,32,108,105,109,105,116,41,92,110,32,32,32,32,32,32,32,32,58,32,105,110,116,101,114,110,97,108,83,112,108,105,116,46,99,97,108,108,40,83,116,114,105,110,103,40,79,41,44,32,115,101,112,97,114,97,116,111,114,44,32,108,105,109,105,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,96,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,91,64,64,115,112,108,105,116,93,96,32,109,101,116,104,111,100,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,116,99,51,57,46,103,105,116,104,117,98,46,105,111,47,101,99,109,97,50,54,50,47,35,115,101,99,45,114,101,103,101,120,112,46,112,114,111,116,111,116,121,112,101,45,64,64,115,112,108,105,116,92,110,32,32,32,32,47,47,92,110,32,32,32,32,47,47,32,78,79,84,69,58,32,84,104,105,115,32,99,97,110,110,111,116,32,98,101,32,112,114,111,112,101,114,108,121,32,112,111,108,121,102,105,108,108,101,100,32,105,110,32,101,110,103,105,110,101,115,32,116,104,97,116,32,100,111,110,39,116,32,115,117,112,112,111,114,116,92,110,32,32,32,32,47,47,32,116,104,101,32,39,121,39,32,102,108,97,103,46,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,40,114,101,103,101,120,112,44,32,108,105,109,105,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,32,61,32,109,97,121,98,101,67,97,108,108,78,97,116,105,118,101,40,105,110,116,101,114,110,97,108,83,112,108,105,116,44,32,114,101,103,101,120,112,44,32,116,104,105,115,44,32,108,105,109,105,116,44,32,105,110,116,101,114,110,97,108,83,112,108,105,116,32,33,61,61,32,36,115,112,108,105,116,41,59,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,46,100,111,110,101,41,32,114,101,116,117,114,110,32,114,101,115,46,118,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,120,32,61,32,97,110,79,98,106,101,99,116,40,114,101,103,101,120,112,41,59,92,110,32,32,32,32,32,32,118,97,114,32,83,32,61,32,83,116,114,105,110,103,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,118,97,114,32,67,32,61,32,115,112,101,99,105,101,115,67,111,110,115,116,114,117,99,116,111,114,40,114,120,44,32,82,101,103,69,120,112,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,117,110,105,99,111,100,101,77,97,116,99,104,105,110,103,32,61,32,114,120,46,117,110,105,99,111,100,101,59,92,110,32,32,32,32,32,32,118,97,114,32,102,108,97,103,115,32,61,32,40,114,120,46,105,103,110,111,114,101,67,97,115,101,32,63,32,39,105,39,32,58,32,39,39,41,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,114,120,46,109,117,108,116,105,108,105,110,101,32,63,32,39,109,39,32,58,32,39,39,41,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,114,120,46,117,110,105,99,111,100,101,32,63,32,39,117,39,32,58,32,39,39,41,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,83,85,80,80,79,82,84,83,95,89,32,63,32,39,121,39,32,58,32,39,103,39,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,94,40,63,32,43,32,114,120,32,43,32,41,32,105,115,32,110,101,101,100,101,100,44,32,105,110,32,99,111,109,98,105,110,97,116,105,111,110,32,119,105,116,104,32,115,111,109,101,32,83,32,115,108,105,99,105,110,103,44,32,116,111,92,110,32,32,32,32,32,32,47,47,32,115,105,109,117,108,97,116,101,32,116,104,101,32,39,121,39,32,102,108,97,103,46,92,110,32,32,32,32,32,32,118,97,114,32,115,112,108,105,116,116,101,114,32,61,32,110,101,119,32,67,40,83,85,80,80,79,82,84,83,95,89,32,63,32,114,120,32,58,32,39,94,40,63,58,39,32,43,32,114,120,46,115,111,117,114,99,101,32,43,32,39,41,39,44,32,102,108,97,103,115,41,59,92,110,32,32,32,32,32,32,118,97,114,32,108,105,109,32,61,32,108,105,109,105,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,77,65,88,95,85,73,78,84,51,50,32,58,32,108,105,109,105,116,32,62,62,62,32,48,59,92,110,32,32,32,32,32,32,105,102,32,40,108,105,109,32,61,61,61,32,48,41,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,105,102,32,40,83,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,114,101,116,117,114,110,32,99,97,108,108,82,101,103,69,120,112,69,120,101,99,40,115,112,108,105,116,116,101,114,44,32,83,41,32,61,61,61,32,110,117,108,108,32,63,32,91,83,93,32,58,32,91,93,59,92,110,32,32,32,32,32,32,118,97,114,32,112,32,61,32,48,59,92,110,32,32,32,32,32,32,118,97,114,32,113,32,61,32,48,59,92,110,32,32,32,32,32,32,118,97,114,32,65,32,61,32,91,93,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,113,32,60,32,83,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,115,112,108,105,116,116,101,114,46,108,97,115,116,73,110,100,101,120,32,61,32,83,85,80,80,79,82,84,83,95,89,32,63,32,113,32,58,32,48,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,122,32,61,32,99,97,108,108,82,101,103,69,120,112,69,120,101,99,40,115,112,108,105,116,116,101,114,44,32,83,85,80,80,79,82,84,83,95,89,32,63,32,83,32,58,32,83,46,115,108,105,99,101,40,113,41,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,92,110,32,32,32,32,32,32,32,32,32,32,122,32,61,61,61,32,110,117,108,108,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,40,101,32,61,32,36,109,105,110,40,116,111,76,101,110,103,116,104,40,115,112,108,105,116,116,101,114,46,108,97,115,116,73,110,100,101,120,32,43,32,40,83,85,80,80,79,82,84,83,95,89,32,63,32,48,32,58,32,113,41,41,44,32,83,46,108,101,110,103,116,104,41,41,32,61,61,61,32,112,92,110,32,32,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,113,32,61,32,97,100,118,97,110,99,101,83,116,114,105,110,103,73,110,100,101,120,40,83,44,32,113,44,32,117,110,105,99,111,100,101,77,97,116,99,104,105,110,103,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,65,46,112,117,115,104,40,83,46,115,108,105,99,101,40,112,44,32,113,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,65,46,108,101,110,103,116,104,32,61,61,61,32,108,105,109,41,32,114,101,116,117,114,110,32,65,59,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,61,32,122,46,108,101,110,103,116,104,32,45,32,49,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,65,46,112,117,115,104,40,122,91,105,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,65,46,108,101,110,103,116,104,32,61,61,61,32,108,105,109,41,32,114,101,116,117,114,110,32,65,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,113,32,61,32,112,32,61,32,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,65,46,112,117,115,104,40,83,46,115,108,105,99,101,40,112,41,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,65,59,92,110,32,32,32,32,125,92,110,32,32,93,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,115,112,108,105,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,116,111,45,115,116,114,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,116,111,45,115,116,114,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,115,54,46,114,101,103,101,120,112,46,102,108,97,103,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,102,108,97,103,115,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,102,108,97,103,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,108,97,103,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,108,97,103,115,46,106,115,92,34,41,59,92,110,118,97,114,32,68,69,83,67,82,73,80,84,79,82,83,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,59,92,110,118,97,114,32,84,79,95,83,84,82,73,78,71,32,61,32,39,116,111,83,116,114,105,110,103,39,59,92,110,118,97,114,32,36,116,111,83,116,114,105,110,103,32,61,32,47,46,47,91,84,79,95,83,84,82,73,78,71,93,59,92,110,92,110,118,97,114,32,100,101,102,105,110,101,32,61,32,102,117,110,99,116,105,111,110,32,40,102,110,41,32,123,92,110,32,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,92,34,41,40,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,44,32,84,79,95,83,84,82,73,78,71,44,32,102,110,44,32,116,114,117,101,41,59,92,110,125,59,92,110,92,110,47,47,32,50,49,46,50,46,53,46,49,52,32,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,40,41,92,110,105,102,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,36,116,111,83,116,114,105,110,103,46,99,97,108,108,40,123,32,115,111,117,114,99,101,58,32,39,97,39,44,32,102,108,97,103,115,58,32,39,98,39,32,125,41,32,33,61,32,39,47,97,47,98,39,59,32,125,41,41,32,123,92,110,32,32,100,101,102,105,110,101,40,102,117,110,99,116,105,111,110,32,116,111,83,116,114,105,110,103,40,41,32,123,92,110,32,32,32,32,118,97,114,32,82,32,61,32,97,110,79,98,106,101,99,116,40,116,104,105,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,39,47,39,46,99,111,110,99,97,116,40,82,46,115,111,117,114,99,101,44,32,39,47,39,44,92,110,32,32,32,32,32,32,39,102,108,97,103,115,39,32,105,110,32,82,32,63,32,82,46,102,108,97,103,115,32,58,32,33,68,69,83,67,82,73,80,84,79,82,83,32,38,38,32,82,32,105,110,115,116,97,110,99,101,111,102,32,82,101,103,69,120,112,32,63,32,36,102,108,97,103,115,46,99,97,108,108,40,82,41,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,125,41,59,92,110,47,47,32,70,70,52,52,45,32,82,101,103,69,120,112,35,116,111,83,116,114,105,110,103,32,104,97,115,32,97,32,119,114,111,110,103,32,110,97,109,101,92,110,125,32,101,108,115,101,32,105,102,32,40,36,116,111,83,116,114,105,110,103,46,110,97,109,101,32,33,61,32,84,79,95,83,84,82,73,78,71,41,32,123,92,110,32,32,100,101,102,105,110,101,40,102,117,110,99,116,105,111,110,32,116,111,83,116,114,105,110,103,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,116,111,83,116,114,105,110,103,46,99,97,108,108,40,116,104,105,115,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,114,101,103,101,120,112,46,116,111,45,115,116,114,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,101,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,101,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,115,116,114,111,110,103,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,108,108,101,99,116,105,111,110,45,115,116,114,111,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,45,115,116,114,111,110,103,46,106,115,92,34,41,59,92,110,118,97,114,32,118,97,108,105,100,97,116,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,83,69,84,32,61,32,39,83,101,116,39,59,92,110,92,110,47,47,32,50,51,46,50,32,83,101,116,32,79,98,106,101,99,116,115,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,108,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,46,106,115,92,34,41,40,83,69,84,44,32,102,117,110,99,116,105,111,110,32,40,103,101,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,83,101,116,40,41,32,123,32,114,101,116,117,114,110,32,103,101,116,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,32,125,59,92,110,125,44,32,123,92,110,32,32,47,47,32,50,51,46,50,46,51,46,49,32,83,101,116,46,112,114,111,116,111,116,121,112,101,46,97,100,100,40,118,97,108,117,101,41,92,110,32,32,97,100,100,58,32,102,117,110,99,116,105,111,110,32,97,100,100,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,111,110,103,46,100,101,102,40,118,97,108,105,100,97,116,101,40,116,104,105,115,44,32,83,69,84,41,44,32,118,97,108,117,101,32,61,32,118,97,108,117,101,32,61,61,61,32,48,32,63,32,48,32,58,32,118,97,108,117,101,44,32,118,97,108,117,101,41,59,92,110,32,32,125,92,110,125,44,32,115,116,114,111,110,103,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,101,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,97,110,99,104,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,97,110,99,104,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,66,46,50,46,51,46,50,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,97,110,99,104,111,114,40,110,97,109,101,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,92,34,41,40,39,97,110,99,104,111,114,39,44,32,102,117,110,99,116,105,111,110,32,40,99,114,101,97,116,101,72,84,77,76,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,97,110,99,104,111,114,40,110,97,109,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,72,84,77,76,40,116,104,105,115,44,32,39,97,39,44,32,39,110,97,109,101,39,44,32,110,97,109,101,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,97,110,99,104,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,98,105,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,98,105,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,66,46,50,46,51,46,51,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,98,105,103,40,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,92,34,41,40,39,98,105,103,39,44,32,102,117,110,99,116,105,111,110,32,40,99,114,101,97,116,101,72,84,77,76,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,98,105,103,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,72,84,77,76,40,116,104,105,115,44,32,39,98,105,103,39,44,32,39,39,44,32,39,39,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,98,105,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,98,108,105,110,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,98,108,105,110,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,66,46,50,46,51,46,52,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,98,108,105,110,107,40,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,92,34,41,40,39,98,108,105,110,107,39,44,32,102,117,110,99,116,105,111,110,32,40,99,114,101,97,116,101,72,84,77,76,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,98,108,105,110,107,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,72,84,77,76,40,116,104,105,115,44,32,39,98,108,105,110,107,39,44,32,39,39,44,32,39,39,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,98,108,105,110,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,98,111,108,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,98,111,108,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,66,46,50,46,51,46,53,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,98,111,108,100,40,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,92,34,41,40,39,98,111,108,100,39,44,32,102,117,110,99,116,105,111,110,32,40,99,114,101,97,116,101,72,84,77,76,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,98,111,108,100,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,72,84,77,76,40,116,104,105,115,44,32,39,98,39,44,32,39,39,44,32,39,39,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,98,111,108,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,99,111,100,101,45,112,111,105,110,116,45,97,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,99,111,100,101,45,112,111,105,110,116,45,97,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,97,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,97,116,46,106,115,92,34,41,40,102,97,108,115,101,41,59,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,44,32,39,83,116,114,105,110,103,39,44,32,123,92,110,32,32,47,47,32,50,49,46,49,46,51,46,51,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,99,111,100,101,80,111,105,110,116,65,116,40,112,111,115,41,92,110,32,32,99,111,100,101,80,111,105,110,116,65,116,58,32,102,117,110,99,116,105,111,110,32,99,111,100,101,80,111,105,110,116,65,116,40,112,111,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,97,116,40,116,104,105,115,44,32,112,111,115,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,99,111,100,101,45,112,111,105,110,116,45,97,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,101,110,100,115,45,119,105,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,101,110,100,115,45,119,105,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,47,47,32,50,49,46,49,46,51,46,54,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,101,110,100,115,87,105,116,104,40,115,101,97,114,99,104,83,116,114,105,110,103,32,91,44,32,101,110,100,80,111,115,105,116,105,111,110,93,41,92,110,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,99,111,110,116,101,120,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,99,111,110,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,99,111,110,116,101,120,116,46,106,115,92,34,41,59,92,110,118,97,114,32,69,78,68,83,95,87,73,84,72,32,61,32,39,101,110,100,115,87,105,116,104,39,59,92,110,118,97,114,32,36,101,110,100,115,87,105,116,104,32,61,32,39,39,91,69,78,68,83,95,87,73,84,72,93,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,45,105,115,45,114,101,103,101,120,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,45,105,115,45,114,101,103,101,120,112,46,106,115,92,34,41,40,69,78,68,83,95,87,73,84,72,41,44,32,39,83,116,114,105,110,103,39,44,32,123,92,110,32,32,101,110,100,115,87,105,116,104,58,32,102,117,110,99,116,105,111,110,32,101,110,100,115,87,105,116,104,40,115,101,97,114,99,104,83,116,114,105,110,103,32,47,42,32,44,32,101,110,100,80,111,115,105,116,105,111,110,32,61,32,64,108,101,110,103,116,104,32,42,47,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,97,116,32,61,32,99,111,110,116,101,120,116,40,116,104,105,115,44,32,115,101,97,114,99,104,83,116,114,105,110,103,44,32,69,78,68,83,95,87,73,84,72,41,59,92,110,32,32,32,32,118,97,114,32,101,110,100,80,111,115,105,116,105,111,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,118,97,114,32,108,101,110,32,61,32,116,111,76,101,110,103,116,104,40,116,104,97,116,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,118,97,114,32,101,110,100,32,61,32,101,110,100,80,111,115,105,116,105,111,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,108,101,110,32,58,32,77,97,116,104,46,109,105,110,40,116,111,76,101,110,103,116,104,40,101,110,100,80,111,115,105,116,105,111,110,41,44,32,108,101,110,41,59,92,110,32,32,32,32,118,97,114,32,115,101,97,114,99,104,32,61,32,83,116,114,105,110,103,40,115,101,97,114,99,104,83,116,114,105,110,103,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,36,101,110,100,115,87,105,116,104,92,110,32,32,32,32,32,32,63,32,36,101,110,100,115,87,105,116,104,46,99,97,108,108,40,116,104,97,116,44,32,115,101,97,114,99,104,44,32,101,110,100,41,92,110,32,32,32,32,32,32,58,32,116,104,97,116,46,115,108,105,99,101,40,101,110,100,32,45,32,115,101,97,114,99,104,46,108,101,110,103,116,104,44,32,101,110,100,41,32,61,61,61,32,115,101,97,114,99,104,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,101,110,100,115,45,119,105,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,105,120,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,105,120,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,66,46,50,46,51,46,54,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,102,105,120,101,100,40,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,92,34,41,40,39,102,105,120,101,100,39,44,32,102,117,110,99,116,105,111,110,32,40,99,114,101,97,116,101,72,84,77,76,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,102,105,120,101,100,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,72,84,77,76,40,116,104,105,115,44,32,39,116,116,39,44,32,39,39,44,32,39,39,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,105,120,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,111,110,116,99,111,108,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,111,110,116,99,111,108,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,66,46,50,46,51,46,55,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,102,111,110,116,99,111,108,111,114,40,99,111,108,111,114,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,92,34,41,40,39,102,111,110,116,99,111,108,111,114,39,44,32,102,117,110,99,116,105,111,110,32,40,99,114,101,97,116,101,72,84,77,76,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,102,111,110,116,99,111,108,111,114,40,99,111,108,111,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,72,84,77,76,40,116,104,105,115,44,32,39,102,111,110,116,39,44,32,39,99,111,108,111,114,39,44,32,99,111,108,111,114,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,111,110,116,99,111,108,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,111,110,116,115,105,122,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,111,110,116,115,105,122,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,66,46,50,46,51,46,56,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,102,111,110,116,115,105,122,101,40,115,105,122,101,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,92,34,41,40,39,102,111,110,116,115,105,122,101,39,44,32,102,117,110,99,116,105,111,110,32,40,99,114,101,97,116,101,72,84,77,76,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,102,111,110,116,115,105,122,101,40,115,105,122,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,72,84,77,76,40,116,104,105,115,44,32,39,102,111,110,116,39,44,32,39,115,105,122,101,39,44,32,115,105,122,101,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,111,110,116,115,105,122,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,114,111,109,45,99,111,100,101,45,112,111,105,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,114,111,109,45,99,111,100,101,45,112,111,105,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,46,106,115,92,34,41,59,92,110,118,97,114,32,102,114,111,109,67,104,97,114,67,111,100,101,32,61,32,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,59,92,110,118,97,114,32,36,102,114,111,109,67,111,100,101,80,111,105,110,116,32,61,32,83,116,114,105,110,103,46,102,114,111,109,67,111,100,101,80,111,105,110,116,59,92,110,92,110,47,47,32,108,101,110,103,116,104,32,115,104,111,117,108,100,32,98,101,32,49,44,32,111,108,100,32,70,70,32,112,114,111,98,108,101,109,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,33,33,36,102,114,111,109,67,111,100,101,80,111,105,110,116,32,38,38,32,36,102,114,111,109,67,111,100,101,80,111,105,110,116,46,108,101,110,103,116,104,32,33,61,32,49,41,44,32,39,83,116,114,105,110,103,39,44,32,123,92,110,32,32,47,47,32,50,49,46,49,46,50,46,50,32,83,116,114,105,110,103,46,102,114,111,109,67,111,100,101,80,111,105,110,116,40,46,46,46,99,111,100,101,80,111,105,110,116,115,41,92,110,32,32,102,114,111,109,67,111,100,101,80,111,105,110,116,58,32,102,117,110,99,116,105,111,110,32,102,114,111,109,67,111,100,101,80,111,105,110,116,40,120,41,32,123,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,117,110,117,115,101,100,45,118,97,114,115,92,110,32,32,32,32,118,97,114,32,114,101,115,32,61,32,91,93,59,92,110,32,32,32,32,118,97,114,32,97,76,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,105,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,99,111,100,101,59,92,110,32,32,32,32,119,104,105,108,101,32,40,97,76,101,110,32,62,32,105,41,32,123,92,110,32,32,32,32,32,32,99,111,100,101,32,61,32,43,97,114,103,117,109,101,110,116,115,91,105,43,43,93,59,92,110,32,32,32,32,32,32,105,102,32,40,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,40,99,111,100,101,44,32,48,120,49,48,102,102,102,102,41,32,33,61,61,32,99,111,100,101,41,32,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,99,111,100,101,32,43,32,39,32,105,115,32,110,111,116,32,97,32,118,97,108,105,100,32,99,111,100,101,32,112,111,105,110,116,39,41,59,92,110,32,32,32,32,32,32,114,101,115,46,112,117,115,104,40,99,111,100,101,32,60,32,48,120,49,48,48,48,48,92,110,32,32,32,32,32,32,32,32,63,32,102,114,111,109,67,104,97,114,67,111,100,101,40,99,111,100,101,41,92,110,32,32,32,32,32,32,32,32,58,32,102,114,111,109,67,104,97,114,67,111,100,101,40,40,40,99,111,100,101,32,45,61,32,48,120,49,48,48,48,48,41,32,62,62,32,49,48,41,32,43,32,48,120,100,56,48,48,44,32,99,111,100,101,32,37,32,48,120,52,48,48,32,43,32,48,120,100,99,48,48,41,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,32,114,101,116,117,114,110,32,114,101,115,46,106,111,105,110,40,39,39,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,102,114,111,109,45,99,111,100,101,45,112,111,105,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,105,110,99,108,117,100,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,105,110,99,108,117,100,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,47,47,32,50,49,46,49,46,51,46,55,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,105,110,99,108,117,100,101,115,40,115,101,97,114,99,104,83,116,114,105,110,103,44,32,112,111,115,105,116,105,111,110,32,61,32,48,41,92,110,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,99,111,110,116,101,120,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,99,111,110,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,99,111,110,116,101,120,116,46,106,115,92,34,41,59,92,110,118,97,114,32,73,78,67,76,85,68,69,83,32,61,32,39,105,110,99,108,117,100,101,115,39,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,45,105,115,45,114,101,103,101,120,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,45,105,115,45,114,101,103,101,120,112,46,106,115,92,34,41,40,73,78,67,76,85,68,69,83,41,44,32,39,83,116,114,105,110,103,39,44,32,123,92,110,32,32,105,110,99,108,117,100,101,115,58,32,102,117,110,99,116,105,111,110,32,105,110,99,108,117,100,101,115,40,115,101,97,114,99,104,83,116,114,105,110,103,32,47,42,32,44,32,112,111,115,105,116,105,111,110,32,61,32,48,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,33,33,126,99,111,110,116,101,120,116,40,116,104,105,115,44,32,115,101,97,114,99,104,83,116,114,105,110,103,44,32,73,78,67,76,85,68,69,83,41,92,110,32,32,32,32,32,32,46,105,110,100,101,120,79,102,40,115,101,97,114,99,104,83,116,114,105,110,103,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,105,110,99,108,117,100,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,105,116,97,108,105,99,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,105,116,97,108,105,99,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,66,46,50,46,51,46,57,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,105,116,97,108,105,99,115,40,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,92,34,41,40,39,105,116,97,108,105,99,115,39,44,32,102,117,110,99,116,105,111,110,32,40,99,114,101,97,116,101,72,84,77,76,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,105,116,97,108,105,99,115,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,72,84,77,76,40,116,104,105,115,44,32,39,105,39,44,32,39,39,44,32,39,39,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,105,116,97,108,105,99,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,105,116,101,114,97,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,105,116,101,114,97,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,97,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,97,116,46,106,115,92,34,41,40,116,114,117,101,41,59,92,110,92,110,47,47,32,50,49,46,49,46,51,46,50,55,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,91,64,64,105,116,101,114,97,116,111,114,93,40,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,45,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,45,100,101,102,105,110,101,46,106,115,92,34,41,40,83,116,114,105,110,103,44,32,39,83,116,114,105,110,103,39,44,32,102,117,110,99,116,105,111,110,32,40,105,116,101,114,97,116,101,100,41,32,123,92,110,32,32,116,104,105,115,46,95,116,32,61,32,83,116,114,105,110,103,40,105,116,101,114,97,116,101,100,41,59,32,47,47,32,116,97,114,103,101,116,92,110,32,32,116,104,105,115,46,95,105,32,61,32,48,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,110,101,120,116,32,105,110,100,101,120,92,110,47,47,32,50,49,46,49,46,53,46,50,46,49,32,37,83,116,114,105,110,103,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,37,46,110,101,120,116,40,41,92,110,125,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,79,32,61,32,116,104,105,115,46,95,116,59,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,116,104,105,115,46,95,105,59,92,110,32,32,118,97,114,32,112,111,105,110,116,59,92,110,32,32,105,102,32,40,105,110,100,101,120,32,62,61,32,79,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,123,32,118,97,108,117,101,58,32,117,110,100,101,102,105,110,101,100,44,32,100,111,110,101,58,32,116,114,117,101,32,125,59,92,110,32,32,112,111,105,110,116,32,61,32,36,97,116,40,79,44,32,105,110,100,101,120,41,59,92,110,32,32,116,104,105,115,46,95,105,32,43,61,32,112,111,105,110,116,46,108,101,110,103,116,104,59,92,110,32,32,114,101,116,117,114,110,32,123,32,118,97,108,117,101,58,32,112,111,105,110,116,44,32,100,111,110,101,58,32,102,97,108,115,101,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,105,116,101,114,97,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,108,105,110,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,108,105,110,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,66,46,50,46,51,46,49,48,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,108,105,110,107,40,117,114,108,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,92,34,41,40,39,108,105,110,107,39,44,32,102,117,110,99,116,105,111,110,32,40,99,114,101,97,116,101,72,84,77,76,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,108,105,110,107,40,117,114,108,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,72,84,77,76,40,116,104,105,115,44,32,39,97,39,44,32,39,104,114,101,102,39,44,32,117,114,108,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,108,105,110,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,114,97,119,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,114,97,119,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,83,116,114,105,110,103,39,44,32,123,92,110,32,32,47,47,32,50,49,46,49,46,50,46,52,32,83,116,114,105,110,103,46,114,97,119,40,99,97,108,108,83,105,116,101,44,32,46,46,46,115,117,98,115,116,105,116,117,116,105,111,110,115,41,92,110,32,32,114,97,119,58,32,102,117,110,99,116,105,111,110,32,114,97,119,40,99,97,108,108,83,105,116,101,41,32,123,92,110,32,32,32,32,118,97,114,32,116,112,108,32,61,32,116,111,73,79,98,106,101,99,116,40,99,97,108,108,83,105,116,101,46,114,97,119,41,59,92,110,32,32,32,32,118,97,114,32,108,101,110,32,61,32,116,111,76,101,110,103,116,104,40,116,112,108,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,118,97,114,32,97,76,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,114,101,115,32,61,32,91,93,59,92,110,32,32,32,32,118,97,114,32,105,32,61,32,48,59,92,110,32,32,32,32,119,104,105,108,101,32,40,108,101,110,32,62,32,105,41,32,123,92,110,32,32,32,32,32,32,114,101,115,46,112,117,115,104,40,83,116,114,105,110,103,40,116,112,108,91,105,43,43,93,41,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,32,60,32,97,76,101,110,41,32,114,101,115,46,112,117,115,104,40,83,116,114,105,110,103,40,97,114,103,117,109,101,110,116,115,91,105,93,41,41,59,92,110,32,32,32,32,125,32,114,101,116,117,114,110,32,114,101,115,46,106,111,105,110,40,39,39,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,114,97,119,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,114,101,112,101,97,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,114,101,112,101,97,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,44,32,39,83,116,114,105,110,103,39,44,32,123,92,110,32,32,47,47,32,50,49,46,49,46,51,46,49,51,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,114,101,112,101,97,116,40,99,111,117,110,116,41,92,110,32,32,114,101,112,101,97,116,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,114,101,112,101,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,114,101,112,101,97,116,46,106,115,92,34,41,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,114,101,112,101,97,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,109,97,108,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,109,97,108,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,66,46,50,46,51,46,49,49,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,109,97,108,108,40,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,92,34,41,40,39,115,109,97,108,108,39,44,32,102,117,110,99,116,105,111,110,32,40,99,114,101,97,116,101,72,84,77,76,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,115,109,97,108,108,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,72,84,77,76,40,116,104,105,115,44,32,39,115,109,97,108,108,39,44,32,39,39,44,32,39,39,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,109,97,108,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,116,97,114,116,115,45,119,105,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,116,97,114,116,115,45,119,105,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,47,47,32,50,49,46,49,46,51,46,49,56,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,116,97,114,116,115,87,105,116,104,40,115,101,97,114,99,104,83,116,114,105,110,103,32,91,44,32,112,111,115,105,116,105,111,110,32,93,41,92,110,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,99,111,110,116,101,120,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,99,111,110,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,99,111,110,116,101,120,116,46,106,115,92,34,41,59,92,110,118,97,114,32,83,84,65,82,84,83,95,87,73,84,72,32,61,32,39,115,116,97,114,116,115,87,105,116,104,39,59,92,110,118,97,114,32,36,115,116,97,114,116,115,87,105,116,104,32,61,32,39,39,91,83,84,65,82,84,83,95,87,73,84,72,93,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,45,105,115,45,114,101,103,101,120,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,45,105,115,45,114,101,103,101,120,112,46,106,115,92,34,41,40,83,84,65,82,84,83,95,87,73,84,72,41,44,32,39,83,116,114,105,110,103,39,44,32,123,92,110,32,32,115,116,97,114,116,115,87,105,116,104,58,32,102,117,110,99,116,105,111,110,32,115,116,97,114,116,115,87,105,116,104,40,115,101,97,114,99,104,83,116,114,105,110,103,32,47,42,32,44,32,112,111,115,105,116,105,111,110,32,61,32,48,32,42,47,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,97,116,32,61,32,99,111,110,116,101,120,116,40,116,104,105,115,44,32,115,101,97,114,99,104,83,116,114,105,110,103,44,32,83,84,65,82,84,83,95,87,73,84,72,41,59,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,116,111,76,101,110,103,116,104,40,77,97,116,104,46,109,105,110,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,44,32,116,104,97,116,46,108,101,110,103,116,104,41,41,59,92,110,32,32,32,32,118,97,114,32,115,101,97,114,99,104,32,61,32,83,116,114,105,110,103,40,115,101,97,114,99,104,83,116,114,105,110,103,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,36,115,116,97,114,116,115,87,105,116,104,92,110,32,32,32,32,32,32,63,32,36,115,116,97,114,116,115,87,105,116,104,46,99,97,108,108,40,116,104,97,116,44,32,115,101,97,114,99,104,44,32,105,110,100,101,120,41,92,110,32,32,32,32,32,32,58,32,116,104,97,116,46,115,108,105,99,101,40,105,110,100,101,120,44,32,105,110,100,101,120,32,43,32,115,101,97,114,99,104,46,108,101,110,103,116,104,41,32,61,61,61,32,115,101,97,114,99,104,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,116,97,114,116,115,45,119,105,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,116,114,105,107,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,116,114,105,107,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,66,46,50,46,51,46,49,50,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,116,114,105,107,101,40,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,92,34,41,40,39,115,116,114,105,107,101,39,44,32,102,117,110,99,116,105,111,110,32,40,99,114,101,97,116,101,72,84,77,76,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,115,116,114,105,107,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,72,84,77,76,40,116,104,105,115,44,32,39,115,116,114,105,107,101,39,44,32,39,39,44,32,39,39,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,116,114,105,107,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,117,98,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,117,98,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,66,46,50,46,51,46,49,51,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,117,98,40,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,92,34,41,40,39,115,117,98,39,44,32,102,117,110,99,116,105,111,110,32,40,99,114,101,97,116,101,72,84,77,76,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,115,117,98,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,72,84,77,76,40,116,104,105,115,44,32,39,115,117,98,39,44,32,39,39,44,32,39,39,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,117,98,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,117,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,117,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,66,46,50,46,51,46,49,52,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,117,112,40,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,104,116,109,108,46,106,115,92,34,41,40,39,115,117,112,39,44,32,102,117,110,99,116,105,111,110,32,40,99,114,101,97,116,101,72,84,77,76,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,115,117,112,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,72,84,77,76,40,116,104,105,115,44,32,39,115,117,112,39,44,32,39,39,44,32,39,39,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,115,117,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,116,114,105,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,116,114,105,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,50,49,46,49,46,51,46,50,53,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,116,114,105,109,40,41,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,116,114,105,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,116,114,105,109,46,106,115,92,34,41,40,39,116,114,105,109,39,44,32,102,117,110,99,116,105,111,110,32,40,36,116,114,105,109,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,114,105,109,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,116,114,105,109,40,116,104,105,115,44,32,51,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,116,114,105,110,103,46,116,114,105,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,121,109,98,111,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,121,109,98,111,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,69,67,77,65,83,99,114,105,112,116,32,54,32,115,121,109,98,111,108,115,32,115,104,105,109,92,110,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,104,97,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,97,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,97,115,46,106,115,92,34,41,59,92,110,118,97,114,32,68,69,83,67,82,73,80,84,79,82,83,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,100,101,115,99,114,105,112,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,100,101,115,99,114,105,112,116,111,114,115,46,106,115,92,34,41,59,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,100,101,102,105,110,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,118,97,114,32,77,69,84,65,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,101,116,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,101,116,97,46,106,115,92,34,41,46,75,69,89,41,59,92,110,118,97,114,32,36,102,97,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,115,104,97,114,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,104,97,114,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,104,97,114,101,100,46,106,115,92,34,41,59,92,110,118,97,114,32,115,101,116,84,111,83,116,114,105,110,103,84,97,103,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,101,116,45,116,111,45,115,116,114,105,110,103,45,116,97,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,116,111,45,115,116,114,105,110,103,45,116,97,103,46,106,115,92,34,41,59,92,110,118,97,114,32,117,105,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,117,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,105,100,46,106,115,92,34,41,59,92,110,118,97,114,32,119,107,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,59,92,110,118,97,114,32,119,107,115,69,120,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,45,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,45,101,120,116,46,106,115,92,34,41,59,92,110,118,97,114,32,119,107,115,68,101,102,105,110,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,45,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,45,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,118,97,114,32,101,110,117,109,75,101,121,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,110,117,109,45,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,110,117,109,45,107,101,121,115,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,65,114,114,97,121,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,97,114,114,97,121,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,80,114,105,109,105,116,105,118,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,112,114,105,109,105,116,105,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,112,114,105,109,105,116,105,118,101,46,106,115,92,34,41,59,92,110,118,97,114,32,99,114,101,97,116,101,68,101,115,99,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,114,111,112,101,114,116,121,45,100,101,115,99,46,106,115,92,34,41,59,92,110,118,97,114,32,95,99,114,101,97,116,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,99,114,101,97,116,101,46,106,115,92,34,41,59,92,110,118,97,114,32,103,79,80,78,69,120,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,110,45,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,110,45,101,120,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,71,79,80,68,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,100,46,106,115,92,34,41,59,92,110,118,97,114,32,36,71,79,80,83,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,115,46,106,115,92,34,41,59,92,110,118,97,114,32,36,68,80,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,100,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,100,112,46,106,115,92,34,41,59,92,110,118,97,114,32,36,107,101,121,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,107,101,121,115,46,106,115,92,34,41,59,92,110,118,97,114,32,103,79,80,68,32,61,32,36,71,79,80,68,46,102,59,92,110,118,97,114,32,100,80,32,61,32,36,68,80,46,102,59,92,110,118,97,114,32,103,79,80,78,32,61,32,103,79,80,78,69,120,116,46,102,59,92,110,118,97,114,32,36,83,121,109,98,111,108,32,61,32,103,108,111,98,97,108,46,83,121,109,98,111,108,59,92,110,118,97,114,32,36,74,83,79,78,32,61,32,103,108,111,98,97,108,46,74,83,79,78,59,92,110,118,97,114,32,95,115,116,114,105,110,103,105,102,121,32,61,32,36,74,83,79,78,32,38,38,32,36,74,83,79,78,46,115,116,114,105,110,103,105,102,121,59,92,110,118,97,114,32,80,82,79,84,79,84,89,80,69,32,61,32,39,112,114,111,116,111,116,121,112,101,39,59,92,110,118,97,114,32,72,73,68,68,69,78,32,61,32,119,107,115,40,39,95,104,105,100,100,101,110,39,41,59,92,110,118,97,114,32,84,79,95,80,82,73,77,73,84,73,86,69,32,61,32,119,107,115,40,39,116,111,80,114,105,109,105,116,105,118,101,39,41,59,92,110,118,97,114,32,105,115,69,110,117,109,32,61,32,123,125,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,59,92,110,118,97,114,32,83,121,109,98,111,108,82,101,103,105,115,116,114,121,32,61,32,115,104,97,114,101,100,40,39,115,121,109,98,111,108,45,114,101,103,105,115,116,114,121,39,41,59,92,110,118,97,114,32,65,108,108,83,121,109,98,111,108,115,32,61,32,115,104,97,114,101,100,40,39,115,121,109,98,111,108,115,39,41,59,92,110,118,97,114,32,79,80,83,121,109,98,111,108,115,32,61,32,115,104,97,114,101,100,40,39,111,112,45,115,121,109,98,111,108,115,39,41,59,92,110,118,97,114,32,79,98,106,101,99,116,80,114,111,116,111,32,61,32,79,98,106,101,99,116,91,80,82,79,84,79,84,89,80,69,93,59,92,110,118,97,114,32,85,83,69,95,78,65,84,73,86,69,32,61,32,116,121,112,101,111,102,32,36,83,121,109,98,111,108,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,33,33,36,71,79,80,83,46,102,59,92,110,118,97,114,32,81,79,98,106,101,99,116,32,61,32,103,108,111,98,97,108,46,81,79,98,106,101,99,116,59,92,110,47,47,32,68,111,110,39,116,32,117,115,101,32,115,101,116,116,101,114,115,32,105,110,32,81,116,32,83,99,114,105,112,116,44,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,122,108,111,105,114,111,99,107,47,99,111,114,101,45,106,115,47,105,115,115,117,101,115,47,49,55,51,92,110,118,97,114,32,115,101,116,116,101,114,32,61,32,33,81,79,98,106,101,99,116,32,124,124,32,33,81,79,98,106,101,99,116,91,80,82,79,84,79,84,89,80,69,93,32,124,124,32,33,81,79,98,106,101,99,116,91,80,82,79,84,79,84,89,80,69,93,46,102,105,110,100,67,104,105,108,100,59,92,110,92,110,47,47,32,102,97,108,108,98,97,99,107,32,102,111,114,32,111,108,100,32,65,110,100,114,111,105,100,44,32,104,116,116,112,115,58,47,47,99,111,100,101,46,103,111,111,103,108,101,46,99,111,109,47,112,47,118,56,47,105,115,115,117,101,115,47,100,101,116,97,105,108,63,105,100,61,54,56,55,92,110,118,97,114,32,115,101,116,83,121,109,98,111,108,68,101,115,99,32,61,32,68,69,83,67,82,73,80,84,79,82,83,32,38,38,32,36,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,99,114,101,97,116,101,40,100,80,40,123,125,44,32,39,97,39,44,32,123,92,110,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,100,80,40,116,104,105,115,44,32,39,97,39,44,32,123,32,118,97,108,117,101,58,32,55,32,125,41,46,97,59,32,125,92,110,32,32,125,41,41,46,97,32,33,61,32,55,59,92,110,125,41,32,63,32,102,117,110,99,116,105,111,110,32,40,105,116,44,32,107,101,121,44,32,68,41,32,123,92,110,32,32,118,97,114,32,112,114,111,116,111,68,101,115,99,32,61,32,103,79,80,68,40,79,98,106,101,99,116,80,114,111,116,111,44,32,107,101,121,41,59,92,110,32,32,105,102,32,40,112,114,111,116,111,68,101,115,99,41,32,100,101,108,101,116,101,32,79,98,106,101,99,116,80,114,111,116,111,91,107,101,121,93,59,92,110,32,32,100,80,40,105,116,44,32,107,101,121,44,32,68,41,59,92,110,32,32,105,102,32,40,112,114,111,116,111,68,101,115,99,32,38,38,32,105,116,32,33,61,61,32,79,98,106,101,99,116,80,114,111,116,111,41,32,100,80,40,79,98,106,101,99,116,80,114,111,116,111,44,32,107,101,121,44,32,112,114,111,116,111,68,101,115,99,41,59,92,110,125,32,58,32,100,80,59,92,110,92,110,118,97,114,32,119,114,97,112,32,61,32,102,117,110,99,116,105,111,110,32,40,116,97,103,41,32,123,92,110,32,32,118,97,114,32,115,121,109,32,61,32,65,108,108,83,121,109,98,111,108,115,91,116,97,103,93,32,61,32,95,99,114,101,97,116,101,40,36,83,121,109,98,111,108,91,80,82,79,84,79,84,89,80,69,93,41,59,92,110,32,32,115,121,109,46,95,107,32,61,32,116,97,103,59,92,110,32,32,114,101,116,117,114,110,32,115,121,109,59,92,110,125,59,92,110,92,110,118,97,114,32,105,115,83,121,109,98,111,108,32,61,32,85,83,69,95,78,65,84,73,86,69,32,38,38,32,116,121,112,101,111,102,32,36,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,61,61,32,39,115,121,109,98,111,108,39,32,63,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,105,116,32,61,61,32,39,115,121,109,98,111,108,39,59,92,110,125,32,58,32,102,117,110,99,116,105,111,110,32,40,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,116,32,105,110,115,116,97,110,99,101,111,102,32,36,83,121,109,98,111,108,59,92,110,125,59,92,110,92,110,118,97,114,32,36,100,101,102,105,110,101,80,114,111,112,101,114,116,121,32,61,32,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,105,116,44,32,107,101,121,44,32,68,41,32,123,92,110,32,32,105,102,32,40,105,116,32,61,61,61,32,79,98,106,101,99,116,80,114,111,116,111,41,32,36,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,79,80,83,121,109,98,111,108,115,44,32,107,101,121,44,32,68,41,59,92,110,32,32,97,110,79,98,106,101,99,116,40,105,116,41,59,92,110,32,32,107,101,121,32,61,32,116,111,80,114,105,109,105,116,105,118,101,40,107,101,121,44,32,116,114,117,101,41,59,92,110,32,32,97,110,79,98,106,101,99,116,40,68,41,59,92,110,32,32,105,102,32,40,104,97,115,40,65,108,108,83,121,109,98,111,108,115,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,105,102,32,40,33,68,46,101,110,117,109,101,114,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,104,97,115,40,105,116,44,32,72,73,68,68,69,78,41,41,32,100,80,40,105,116,44,32,72,73,68,68,69,78,44,32,99,114,101,97,116,101,68,101,115,99,40,49,44,32,123,125,41,41,59,92,110,32,32,32,32,32,32,105,116,91,72,73,68,68,69,78,93,91,107,101,121,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,40,105,116,44,32,72,73,68,68,69,78,41,32,38,38,32,105,116,91,72,73,68,68,69,78,93,91,107,101,121,93,41,32,105,116,91,72,73,68,68,69,78,93,91,107,101,121,93,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,68,32,61,32,95,99,114,101,97,116,101,40,68,44,32,123,32,101,110,117,109,101,114,97,98,108,101,58,32,99,114,101,97,116,101,68,101,115,99,40,48,44,32,102,97,108,115,101,41,32,125,41,59,92,110,32,32,32,32,125,32,114,101,116,117,114,110,32,115,101,116,83,121,109,98,111,108,68,101,115,99,40,105,116,44,32,107,101,121,44,32,68,41,59,92,110,32,32,125,32,114,101,116,117,114,110,32,100,80,40,105,116,44,32,107,101,121,44,32,68,41,59,92,110,125,59,92,110,118,97,114,32,36,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,32,61,32,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,105,116,44,32,80,41,32,123,92,110,32,32,97,110,79,98,106,101,99,116,40,105,116,41,59,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,101,110,117,109,75,101,121,115,40,80,32,61,32,116,111,73,79,98,106,101,99,116,40,80,41,41,59,92,110,32,32,118,97,114,32,105,32,61,32,48,59,92,110,32,32,118,97,114,32,108,32,61,32,107,101,121,115,46,108,101,110,103,116,104,59,92,110,32,32,118,97,114,32,107,101,121,59,92,110,32,32,119,104,105,108,101,32,40,108,32,62,32,105,41,32,36,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,105,116,44,32,107,101,121,32,61,32,107,101,121,115,91,105,43,43,93,44,32,80,91,107,101,121,93,41,59,92,110,32,32,114,101,116,117,114,110,32,105,116,59,92,110,125,59,92,110,118,97,114,32,36,99,114,101,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,40,105,116,44,32,80,41,32,123,92,110,32,32,114,101,116,117,114,110,32,80,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,95,99,114,101,97,116,101,40,105,116,41,32,58,32,36,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,95,99,114,101,97,116,101,40,105,116,41,44,32,80,41,59,92,110,125,59,92,110,118,97,114,32,36,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,32,61,32,102,117,110,99,116,105,111,110,32,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,40,107,101,121,41,32,123,92,110,32,32,118,97,114,32,69,32,61,32,105,115,69,110,117,109,46,99,97,108,108,40,116,104,105,115,44,32,107,101,121,32,61,32,116,111,80,114,105,109,105,116,105,118,101,40,107,101,121,44,32,116,114,117,101,41,41,59,92,110,32,32,105,102,32,40,116,104,105,115,32,61,61,61,32,79,98,106,101,99,116,80,114,111,116,111,32,38,38,32,104,97,115,40,65,108,108,83,121,109,98,111,108,115,44,32,107,101,121,41,32,38,38,32,33,104,97,115,40,79,80,83,121,109,98,111,108,115,44,32,107,101,121,41,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,114,101,116,117,114,110,32,69,32,124,124,32,33,104,97,115,40,116,104,105,115,44,32,107,101,121,41,32,124,124,32,33,104,97,115,40,65,108,108,83,121,109,98,111,108,115,44,32,107,101,121,41,32,124,124,32,104,97,115,40,116,104,105,115,44,32,72,73,68,68,69,78,41,32,38,38,32,116,104,105,115,91,72,73,68,68,69,78,93,91,107,101,121,93,32,63,32,69,32,58,32,116,114,117,101,59,92,110,125,59,92,110,118,97,114,32,36,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,32,61,32,102,117,110,99,116,105,111,110,32,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,105,116,44,32,107,101,121,41,32,123,92,110,32,32,105,116,32,61,32,116,111,73,79,98,106,101,99,116,40,105,116,41,59,92,110,32,32,107,101,121,32,61,32,116,111,80,114,105,109,105,116,105,118,101,40,107,101,121,44,32,116,114,117,101,41,59,92,110,32,32,105,102,32,40,105,116,32,61,61,61,32,79,98,106,101,99,116,80,114,111,116,111,32,38,38,32,104,97,115,40,65,108,108,83,121,109,98,111,108,115,44,32,107,101,121,41,32,38,38,32,33,104,97,115,40,79,80,83,121,109,98,111,108,115,44,32,107,101,121,41,41,32,114,101,116,117,114,110,59,92,110,32,32,118,97,114,32,68,32,61,32,103,79,80,68,40,105,116,44,32,107,101,121,41,59,92,110,32,32,105,102,32,40,68,32,38,38,32,104,97,115,40,65,108,108,83,121,109,98,111,108,115,44,32,107,101,121,41,32,38,38,32,33,40,104,97,115,40,105,116,44,32,72,73,68,68,69,78,41,32,38,38,32,105,116,91,72,73,68,68,69,78,93,91,107,101,121,93,41,41,32,68,46,101,110,117,109,101,114,97,98,108,101,32,61,32,116,114,117,101,59,92,110,32,32,114,101,116,117,114,110,32,68,59,92,110,125,59,92,110,118,97,114,32,36,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,105,116,41,32,123,92,110,32,32,118,97,114,32,110,97,109,101,115,32,61,32,103,79,80,78,40,116,111,73,79,98,106,101,99,116,40,105,116,41,41,59,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,32,32,118,97,114,32,105,32,61,32,48,59,92,110,32,32,118,97,114,32,107,101,121,59,92,110,32,32,119,104,105,108,101,32,40,110,97,109,101,115,46,108,101,110,103,116,104,32,62,32,105,41,32,123,92,110,32,32,32,32,105,102,32,40,33,104,97,115,40,65,108,108,83,121,109,98,111,108,115,44,32,107,101,121,32,61,32,110,97,109,101,115,91,105,43,43,93,41,32,38,38,32,107,101,121,32,33,61,32,72,73,68,68,69,78,32,38,38,32,107,101,121,32,33,61,32,77,69,84,65,41,32,114,101,115,117,108,116,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,125,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,125,59,92,110,118,97,114,32,36,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,40,105,116,41,32,123,92,110,32,32,118,97,114,32,73,83,95,79,80,32,61,32,105,116,32,61,61,61,32,79,98,106,101,99,116,80,114,111,116,111,59,92,110,32,32,118,97,114,32,110,97,109,101,115,32,61,32,103,79,80,78,40,73,83,95,79,80,32,63,32,79,80,83,121,109,98,111,108,115,32,58,32,116,111,73,79,98,106,101,99,116,40,105,116,41,41,59,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,32,32,118,97,114,32,105,32,61,32,48,59,92,110,32,32,118,97,114,32,107,101,121,59,92,110,32,32,119,104,105,108,101,32,40,110,97,109,101,115,46,108,101,110,103,116,104,32,62,32,105,41,32,123,92,110,32,32,32,32,105,102,32,40,104,97,115,40,65,108,108,83,121,109,98,111,108,115,44,32,107,101,121,32,61,32,110,97,109,101,115,91,105,43,43,93,41,32,38,38,32,40,73,83,95,79,80,32,63,32,104,97,115,40,79,98,106,101,99,116,80,114,111,116,111,44,32,107,101,121,41,32,58,32,116,114,117,101,41,41,32,114,101,115,117,108,116,46,112,117,115,104,40,65,108,108,83,121,109,98,111,108,115,91,107,101,121,93,41,59,92,110,32,32,125,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,125,59,92,110,92,110,47,47,32,49,57,46,52,46,49,46,49,32,83,121,109,98,111,108,40,91,100,101,115,99,114,105,112,116,105,111,110,93,41,92,110,105,102,32,40,33,85,83,69,95,78,65,84,73,86,69,41,32,123,92,110,32,32,36,83,121,109,98,111,108,32,61,32,102,117,110,99,116,105,111,110,32,83,121,109,98,111,108,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,36,83,121,109,98,111,108,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,39,83,121,109,98,111,108,32,105,115,32,110,111,116,32,97,32,99,111,110,115,116,114,117,99,116,111,114,33,39,41,59,92,110,32,32,32,32,118,97,114,32,116,97,103,32,61,32,117,105,100,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,118,97,114,32,36,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,32,61,61,61,32,79,98,106,101,99,116,80,114,111,116,111,41,32,36,115,101,116,46,99,97,108,108,40,79,80,83,121,109,98,111,108,115,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,40,116,104,105,115,44,32,72,73,68,68,69,78,41,32,38,38,32,104,97,115,40,116,104,105,115,91,72,73,68,68,69,78,93,44,32,116,97,103,41,41,32,116,104,105,115,91,72,73,68,68,69,78,93,91,116,97,103,93,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,115,101,116,83,121,109,98,111,108,68,101,115,99,40,116,104,105,115,44,32,116,97,103,44,32,99,114,101,97,116,101,68,101,115,99,40,49,44,32,118,97,108,117,101,41,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,105,102,32,40,68,69,83,67,82,73,80,84,79,82,83,32,38,38,32,115,101,116,116,101,114,41,32,115,101,116,83,121,109,98,111,108,68,101,115,99,40,79,98,106,101,99,116,80,114,111,116,111,44,32,116,97,103,44,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,115,101,116,58,32,36,115,101,116,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,119,114,97,112,40,116,97,103,41,59,92,110,32,32,125,59,92,110,32,32,114,101,100,101,102,105,110,101,40,36,83,121,109,98,111,108,91,80,82,79,84,79,84,89,80,69,93,44,32,39,116,111,83,116,114,105,110,103,39,44,32,102,117,110,99,116,105,111,110,32,116,111,83,116,114,105,110,103,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,107,59,92,110,32,32,125,41,59,92,110,92,110,32,32,36,71,79,80,68,46,102,32,61,32,36,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,59,92,110,32,32,36,68,80,46,102,32,61,32,36,100,101,102,105,110,101,80,114,111,112,101,114,116,121,59,92,110,32,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,110,46,106,115,92,34,41,46,102,41,32,61,32,103,79,80,78,69,120,116,46,102,32,61,32,36,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,59,92,110,32,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,112,105,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,112,105,101,46,106,115,92,34,41,46,102,41,32,61,32,36,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,59,92,110,32,32,36,71,79,80,83,46,102,32,61,32,36,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,59,92,110,92,110,32,32,105,102,32,40,68,69,83,67,82,73,80,84,79,82,83,32,38,38,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,108,105,98,114,97,114,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,108,105,98,114,97,114,121,46,106,115,92,34,41,41,32,123,92,110,32,32,32,32,114,101,100,101,102,105,110,101,40,79,98,106,101,99,116,80,114,111,116,111,44,32,39,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,39,44,32,36,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,44,32,116,114,117,101,41,59,92,110,32,32,125,92,110,92,110,32,32,119,107,115,69,120,116,46,102,32,61,32,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,119,114,97,112,40,119,107,115,40,110,97,109,101,41,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,71,32,43,32,36,101,120,112,111,114,116,46,87,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,85,83,69,95,78,65,84,73,86,69,44,32,123,32,83,121,109,98,111,108,58,32,36,83,121,109,98,111,108,32,125,41,59,92,110,92,110,102,111,114,32,40,118,97,114,32,101,115,54,83,121,109,98,111,108,115,32,61,32,40,92,110,32,32,47,47,32,49,57,46,52,46,50,46,50,44,32,49,57,46,52,46,50,46,51,44,32,49,57,46,52,46,50,46,52,44,32,49,57,46,52,46,50,46,54,44,32,49,57,46,52,46,50,46,56,44,32,49,57,46,52,46,50,46,57,44,32,49,57,46,52,46,50,46,49,48,44,32,49,57,46,52,46,50,46,49,49,44,32,49,57,46,52,46,50,46,49,50,44,32,49,57,46,52,46,50,46,49,51,44,32,49,57,46,52,46,50,46,49,52,92,110,32,32,39,104,97,115,73,110,115,116,97,110,99,101,44,105,115,67,111,110,99,97,116,83,112,114,101,97,100,97,98,108,101,44,105,116,101,114,97,116,111,114,44,109,97,116,99,104,44,114,101,112,108,97,99,101,44,115,101,97,114,99,104,44,115,112,101,99,105,101,115,44,115,112,108,105,116,44,116,111,80,114,105,109,105,116,105,118,101,44,116,111,83,116,114,105,110,103,84,97,103,44,117,110,115,99,111,112,97,98,108,101,115,39,92,110,41,46,115,112,108,105,116,40,39,44,39,41,44,32,106,32,61,32,48,59,32,101,115,54,83,121,109,98,111,108,115,46,108,101,110,103,116,104,32,62,32,106,59,41,119,107,115,40,101,115,54,83,121,109,98,111,108,115,91,106,43,43,93,41,59,92,110,92,110,102,111,114,32,40,118,97,114,32,119,101,108,108,75,110,111,119,110,83,121,109,98,111,108,115,32,61,32,36,107,101,121,115,40,119,107,115,46,115,116,111,114,101,41,44,32,107,32,61,32,48,59,32,119,101,108,108,75,110,111,119,110,83,121,109,98,111,108,115,46,108,101,110,103,116,104,32,62,32,107,59,41,32,119,107,115,68,101,102,105,110,101,40,119,101,108,108,75,110,111,119,110,83,121,109,98,111,108,115,91,107,43,43,93,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,85,83,69,95,78,65,84,73,86,69,44,32,39,83,121,109,98,111,108,39,44,32,123,92,110,32,32,47,47,32,49,57,46,52,46,50,46,49,32,83,121,109,98,111,108,46,102,111,114,40,107,101,121,41,92,110,32,32,39,102,111,114,39,58,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,97,115,40,83,121,109,98,111,108,82,101,103,105,115,116,114,121,44,32,107,101,121,32,43,61,32,39,39,41,92,110,32,32,32,32,32,32,63,32,83,121,109,98,111,108,82,101,103,105,115,116,114,121,91,107,101,121,93,92,110,32,32,32,32,32,32,58,32,83,121,109,98,111,108,82,101,103,105,115,116,114,121,91,107,101,121,93,32,61,32,36,83,121,109,98,111,108,40,107,101,121,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,49,57,46,52,46,50,46,53,32,83,121,109,98,111,108,46,107,101,121,70,111,114,40,115,121,109,41,92,110,32,32,107,101,121,70,111,114,58,32,102,117,110,99,116,105,111,110,32,107,101,121,70,111,114,40,115,121,109,41,32,123,92,110,32,32,32,32,105,102,32,40,33,105,115,83,121,109,98,111,108,40,115,121,109,41,41,32,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,115,121,109,32,43,32,39,32,105,115,32,110,111,116,32,97,32,115,121,109,98,111,108,33,39,41,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,83,121,109,98,111,108,82,101,103,105,115,116,114,121,41,32,105,102,32,40,83,121,109,98,111,108,82,101,103,105,115,116,114,121,91,107,101,121,93,32,61,61,61,32,115,121,109,41,32,114,101,116,117,114,110,32,107,101,121,59,92,110,32,32,125,44,92,110,32,32,117,115,101,83,101,116,116,101,114,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,115,101,116,116,101,114,32,61,32,116,114,117,101,59,32,125,44,92,110,32,32,117,115,101,83,105,109,112,108,101,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,115,101,116,116,101,114,32,61,32,102,97,108,115,101,59,32,125,92,110,125,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,85,83,69,95,78,65,84,73,86,69,44,32,39,79,98,106,101,99,116,39,44,32,123,92,110,32,32,47,47,32,49,57,46,49,46,50,46,50,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,79,32,91,44,32,80,114,111,112,101,114,116,105,101,115,93,41,92,110,32,32,99,114,101,97,116,101,58,32,36,99,114,101,97,116,101,44,92,110,32,32,47,47,32,49,57,46,49,46,50,46,52,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,79,44,32,80,44,32,65,116,116,114,105,98,117,116,101,115,41,92,110,32,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,58,32,36,100,101,102,105,110,101,80,114,111,112,101,114,116,121,44,92,110,32,32,47,47,32,49,57,46,49,46,50,46,51,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,79,44,32,80,114,111,112,101,114,116,105,101,115,41,92,110,32,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,58,32,36,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,44,92,110,32,32,47,47,32,49,57,46,49,46,50,46,54,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,79,44,32,80,41,92,110,32,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,58,32,36,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,44,92,110,32,32,47,47,32,49,57,46,49,46,50,46,55,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,79,41,92,110,32,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,58,32,36,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,44,92,110,32,32,47,47,32,49,57,46,49,46,50,46,56,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,40,79,41,92,110,32,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,58,32,36,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,92,110,125,41,59,92,110,92,110,47,47,32,67,104,114,111,109,101,32,51,56,32,97,110,100,32,51,57,32,96,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,96,32,102,97,105,108,115,32,111,110,32,112,114,105,109,105,116,105,118,101,115,92,110,47,47,32,104,116,116,112,115,58,47,47,98,117,103,115,46,99,104,114,111,109,105,117,109,46,111,114,103,47,112,47,118,56,47,105,115,115,117,101,115,47,100,101,116,97,105,108,63,105,100,61,51,52,52,51,92,110,118,97,114,32,70,65,73,76,83,95,79,78,95,80,82,73,77,73,84,73,86,69,83,32,61,32,36,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,36,71,79,80,83,46,102,40,49,41,59,32,125,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,70,65,73,76,83,95,79,78,95,80,82,73,77,73,84,73,86,69,83,44,32,39,79,98,106,101,99,116,39,44,32,123,92,110,32,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,58,32,102,117,110,99,116,105,111,110,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,40,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,71,79,80,83,46,102,40,116,111,79,98,106,101,99,116,40,105,116,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,32,50,52,46,51,46,50,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,118,97,108,117,101,32,91,44,32,114,101,112,108,97,99,101,114,32,91,44,32,115,112,97,99,101,93,93,41,92,110,36,74,83,79,78,32,38,38,32,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,33,85,83,69,95,78,65,84,73,86,69,32,124,124,32,36,102,97,105,108,115,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,83,32,61,32,36,83,121,109,98,111,108,40,41,59,92,110,32,32,47,47,32,77,83,32,69,100,103,101,32,99,111,110,118,101,114,116,115,32,115,121,109,98,111,108,32,118,97,108,117,101,115,32,116,111,32,74,83,79,78,32,97,115,32,123,125,92,110,32,32,47,47,32,87,101,98,75,105,116,32,99,111,110,118,101,114,116,115,32,115,121,109,98,111,108,32,118,97,108,117,101,115,32,116,111,32,74,83,79,78,32,97,115,32,110,117,108,108,92,110,32,32,47,47,32,86,56,32,116,104,114,111,119,115,32,111,110,32,98,111,120,101,100,32,115,121,109,98,111,108,115,92,110,32,32,114,101,116,117,114,110,32,95,115,116,114,105,110,103,105,102,121,40,91,83,93,41,32,33,61,32,39,91,110,117,108,108,93,39,32,124,124,32,95,115,116,114,105,110,103,105,102,121,40,123,32,97,58,32,83,32,125,41,32,33,61,32,39,123,125,39,32,124,124,32,95,115,116,114,105,110,103,105,102,121,40,79,98,106,101,99,116,40,83,41,41,32,33,61,32,39,123,125,39,59,92,110,125,41,41,44,32,39,74,83,79,78,39,44,32,123,92,110,32,32,115,116,114,105,110,103,105,102,121,58,32,102,117,110,99,116,105,111,110,32,115,116,114,105,110,103,105,102,121,40,105,116,41,32,123,92,110,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,91,105,116,93,59,92,110,32,32,32,32,118,97,114,32,105,32,61,32,49,59,92,110,32,32,32,32,118,97,114,32,114,101,112,108,97,99,101,114,44,32,36,114,101,112,108,97,99,101,114,59,92,110,32,32,32,32,119,104,105,108,101,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,105,41,32,97,114,103,115,46,112,117,115,104,40,97,114,103,117,109,101,110,116,115,91,105,43,43,93,41,59,92,110,32,32,32,32,36,114,101,112,108,97,99,101,114,32,61,32,114,101,112,108,97,99,101,114,32,61,32,97,114,103,115,91,49,93,59,92,110,32,32,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,114,101,112,108,97,99,101,114,41,32,38,38,32,105,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,32,105,115,83,121,109,98,111,108,40,105,116,41,41,32,114,101,116,117,114,110,59,32,47,47,32,73,69,56,32,114,101,116,117,114,110,115,32,115,116,114,105,110,103,32,111,110,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,105,102,32,40,33,105,115,65,114,114,97,121,40,114,101,112,108,97,99,101,114,41,41,32,114,101,112,108,97,99,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,36,114,101,112,108,97,99,101,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,118,97,108,117,101,32,61,32,36,114,101,112,108,97,99,101,114,46,99,97,108,108,40,116,104,105,115,44,32,107,101,121,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,83,121,109,98,111,108,40,118,97,108,117,101,41,41,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,97,114,103,115,91,49,93,32,61,32,114,101,112,108,97,99,101,114,59,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,116,114,105,110,103,105,102,121,46,97,112,112,108,121,40,36,74,83,79,78,44,32,97,114,103,115,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,32,49,57,46,52,46,51,46,52,32,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,91,64,64,116,111,80,114,105,109,105,116,105,118,101,93,40,104,105,110,116,41,92,110,36,83,121,109,98,111,108,91,80,82,79,84,79,84,89,80,69,93,91,84,79,95,80,82,73,77,73,84,73,86,69,93,32,124,124,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,92,34,41,40,36,83,121,109,98,111,108,91,80,82,79,84,79,84,89,80,69,93,44,32,84,79,95,80,82,73,77,73,84,73,86,69,44,32,36,83,121,109,98,111,108,91,80,82,79,84,79,84,89,80,69,93,46,118,97,108,117,101,79,102,41,59,92,110,47,47,32,49,57,46,52,46,51,46,53,32,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,91,64,64,116,111,83,116,114,105,110,103,84,97,103,93,92,110,115,101,116,84,111,83,116,114,105,110,103,84,97,103,40,36,83,121,109,98,111,108,44,32,39,83,121,109,98,111,108,39,41,59,92,110,47,47,32,50,48,46,50,46,49,46,57,32,77,97,116,104,91,64,64,116,111,83,116,114,105,110,103,84,97,103,93,92,110,115,101,116,84,111,83,116,114,105,110,103,84,97,103,40,77,97,116,104,44,32,39,77,97,116,104,39,44,32,116,114,117,101,41,59,92,110,47,47,32,50,52,46,51,46,51,32,74,83,79,78,91,64,64,116,111,83,116,114,105,110,103,84,97,103,93,92,110,115,101,116,84,111,83,116,114,105,110,103,84,97,103,40,103,108,111,98,97,108,46,74,83,79,78,44,32,39,74,83,79,78,39,44,32,116,114,117,101,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,115,121,109,98,111,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,97,114,114,97,121,45,98,117,102,102,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,97,114,114,97,121,45,98,117,102,102,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,116,121,112,101,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,46,106,115,92,34,41,59,92,110,118,97,114,32,98,117,102,102,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,45,98,117,102,102,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,98,117,102,102,101,114,46,106,115,92,34,41,59,92,110,118,97,114,32,97,110,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,110,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,110,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,97,98,115,111,108,117,116,101,45,105,110,100,101,120,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,65,114,114,97,121,66,117,102,102,101,114,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,46,65,114,114,97,121,66,117,102,102,101,114,41,59,92,110,118,97,114,32,115,112,101,99,105,101,115,67,111,110,115,116,114,117,99,116,111,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,46,106,115,92,34,41,59,92,110,118,97,114,32,36,65,114,114,97,121,66,117,102,102,101,114,32,61,32,98,117,102,102,101,114,46,65,114,114,97,121,66,117,102,102,101,114,59,92,110,118,97,114,32,36,68,97,116,97,86,105,101,119,32,61,32,98,117,102,102,101,114,46,68,97,116,97,86,105,101,119,59,92,110,118,97,114,32,36,105,115,86,105,101,119,32,61,32,36,116,121,112,101,100,46,65,66,86,32,38,38,32,65,114,114,97,121,66,117,102,102,101,114,46,105,115,86,105,101,119,59,92,110,118,97,114,32,36,115,108,105,99,101,32,61,32,36,65,114,114,97,121,66,117,102,102,101,114,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,92,110,118,97,114,32,86,73,69,87,32,61,32,36,116,121,112,101,100,46,86,73,69,87,59,92,110,118,97,114,32,65,82,82,65,89,95,66,85,70,70,69,82,32,61,32,39,65,114,114,97,121,66,117,102,102,101,114,39,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,71,32,43,32,36,101,120,112,111,114,116,46,87,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,40,65,114,114,97,121,66,117,102,102,101,114,32,33,61,61,32,36,65,114,114,97,121,66,117,102,102,101,114,41,44,32,123,32,65,114,114,97,121,66,117,102,102,101,114,58,32,36,65,114,114,97,121,66,117,102,102,101,114,32,125,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,36,116,121,112,101,100,46,67,79,78,83,84,82,44,32,65,82,82,65,89,95,66,85,70,70,69,82,44,32,123,92,110,32,32,47,47,32,50,52,46,49,46,51,46,49,32,65,114,114,97,121,66,117,102,102,101,114,46,105,115,86,105,101,119,40,97,114,103,41,92,110,32,32,105,115,86,105,101,119,58,32,102,117,110,99,116,105,111,110,32,105,115,86,105,101,119,40,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,105,115,86,105,101,119,32,38,38,32,36,105,115,86,105,101,119,40,105,116,41,32,124,124,32,105,115,79,98,106,101,99,116,40,105,116,41,32,38,38,32,86,73,69,87,32,105,110,32,105,116,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,85,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,97,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,97,105,108,115,46,106,115,92,34,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,110,101,119,32,36,65,114,114,97,121,66,117,102,102,101,114,40,50,41,46,115,108,105,99,101,40,49,44,32,117,110,100,101,102,105,110,101,100,41,46,98,121,116,101,76,101,110,103,116,104,59,92,110,125,41,44,32,65,82,82,65,89,95,66,85,70,70,69,82,44,32,123,92,110,32,32,47,47,32,50,52,46,49,46,52,46,51,32,65,114,114,97,121,66,117,102,102,101,114,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,40,115,116,97,114,116,44,32,101,110,100,41,92,110,32,32,115,108,105,99,101,58,32,102,117,110,99,116,105,111,110,32,115,108,105,99,101,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,105,102,32,40,36,115,108,105,99,101,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,101,110,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,114,101,116,117,114,110,32,36,115,108,105,99,101,46,99,97,108,108,40,97,110,79,98,106,101,99,116,40,116,104,105,115,41,44,32,115,116,97,114,116,41,59,32,47,47,32,70,70,32,102,105,120,92,110,32,32,32,32,118,97,114,32,108,101,110,32,61,32,97,110,79,98,106,101,99,116,40,116,104,105,115,41,46,98,121,116,101,76,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,102,105,114,115,116,32,61,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,40,115,116,97,114,116,44,32,108,101,110,41,59,92,110,32,32,32,32,118,97,114,32,102,105,110,32,61,32,116,111,65,98,115,111,108,117,116,101,73,110,100,101,120,40,101,110,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,108,101,110,32,58,32,101,110,100,44,32,108,101,110,41,59,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,110,101,119,32,40,115,112,101,99,105,101,115,67,111,110,115,116,114,117,99,116,111,114,40,116,104,105,115,44,32,36,65,114,114,97,121,66,117,102,102,101,114,41,41,40,116,111,76,101,110,103,116,104,40,102,105,110,32,45,32,102,105,114,115,116,41,41,59,92,110,32,32,32,32,118,97,114,32,118,105,101,119,83,32,61,32,110,101,119,32,36,68,97,116,97,86,105,101,119,40,116,104,105,115,41,59,92,110,32,32,32,32,118,97,114,32,118,105,101,119,84,32,61,32,110,101,119,32,36,68,97,116,97,86,105,101,119,40,114,101,115,117,108,116,41,59,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,119,104,105,108,101,32,40,102,105,114,115,116,32,60,32,102,105,110,41,32,123,92,110,32,32,32,32,32,32,118,105,101,119,84,46,115,101,116,85,105,110,116,56,40,105,110,100,101,120,43,43,44,32,118,105,101,119,83,46,103,101,116,85,105,110,116,56,40,102,105,114,115,116,43,43,41,41,59,92,110,32,32,32,32,125,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,101,116,45,115,112,101,99,105,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,101,116,45,115,112,101,99,105,101,115,46,106,115,92,34,41,40,65,82,82,65,89,95,66,85,70,70,69,82,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,97,114,114,97,121,45,98,117,102,102,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,100,97,116,97,45,118,105,101,119,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,100,97,116,97,45,118,105,101,119,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,71,32,43,32,36,101,120,112,111,114,116,46,87,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,33,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,46,106,115,92,34,41,46,65,66,86,41,44,32,123,92,110,32,32,68,97,116,97,86,105,101,119,58,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,45,98,117,102,102,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,98,117,102,102,101,114,46,106,115,92,34,41,46,68,97,116,97,86,105,101,119,41,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,100,97,116,97,45,118,105,101,119,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,102,108,111,97,116,51,50,45,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,102,108,111,97,116,51,50,45,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,97,114,114,97,121,46,106,115,92,34,41,40,39,70,108,111,97,116,51,50,39,44,32,52,44,32,102,117,110,99,116,105,111,110,32,40,105,110,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,70,108,111,97,116,51,50,65,114,114,97,121,40,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,105,116,40,116,104,105,115,44,32,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,102,108,111,97,116,51,50,45,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,102,108,111,97,116,54,52,45,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,102,108,111,97,116,54,52,45,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,97,114,114,97,121,46,106,115,92,34,41,40,39,70,108,111,97,116,54,52,39,44,32,56,44,32,102,117,110,99,116,105,111,110,32,40,105,110,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,70,108,111,97,116,54,52,65,114,114,97,121,40,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,105,116,40,116,104,105,115,44,32,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,102,108,111,97,116,54,52,45,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,105,110,116,49,54,45,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,105,110,116,49,54,45,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,97,114,114,97,121,46,106,115,92,34,41,40,39,73,110,116,49,54,39,44,32,50,44,32,102,117,110,99,116,105,111,110,32,40,105,110,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,73,110,116,49,54,65,114,114,97,121,40,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,105,116,40,116,104,105,115,44,32,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,105,110,116,49,54,45,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,105,110,116,51,50,45,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,105,110,116,51,50,45,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,97,114,114,97,121,46,106,115,92,34,41,40,39,73,110,116,51,50,39,44,32,52,44,32,102,117,110,99,116,105,111,110,32,40,105,110,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,73,110,116,51,50,65,114,114,97,121,40,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,105,116,40,116,104,105,115,44,32,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,105,110,116,51,50,45,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,105,110,116,56,45,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,105,110,116,56,45,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,97,114,114,97,121,46,106,115,92,34,41,40,39,73,110,116,56,39,44,32,49,44,32,102,117,110,99,116,105,111,110,32,40,105,110,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,73,110,116,56,65,114,114,97,121,40,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,105,116,40,116,104,105,115,44,32,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,105,110,116,56,45,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,49,54,45,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,49,54,45,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,97,114,114,97,121,46,106,115,92,34,41,40,39,85,105,110,116,49,54,39,44,32,50,44,32,102,117,110,99,116,105,111,110,32,40,105,110,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,85,105,110,116,49,54,65,114,114,97,121,40,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,105,116,40,116,104,105,115,44,32,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,49,54,45,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,51,50,45,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,51,50,45,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,97,114,114,97,121,46,106,115,92,34,41,40,39,85,105,110,116,51,50,39,44,32,52,44,32,102,117,110,99,116,105,111,110,32,40,105,110,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,85,105,110,116,51,50,65,114,114,97,121,40,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,105,116,40,116,104,105,115,44,32,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,51,50,45,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,56,45,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,56,45,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,97,114,114,97,121,46,106,115,92,34,41,40,39,85,105,110,116,56,39,44,32,49,44,32,102,117,110,99,116,105,111,110,32,40,105,110,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,85,105,110,116,56,65,114,114,97,121,40,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,105,116,40,116,104,105,115,44,32,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,56,45,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,56,45,99,108,97,109,112,101,100,45,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,56,45,99,108,97,109,112,101,100,45,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,121,112,101,100,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,121,112,101,100,45,97,114,114,97,121,46,106,115,92,34,41,40,39,85,105,110,116,56,39,44,32,49,44,32,102,117,110,99,116,105,111,110,32,40,105,110,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,40,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,105,116,40,116,104,105,115,44,32,100,97,116,97,44,32,98,121,116,101,79,102,102,115,101,116,44,32,108,101,110,103,116,104,41,59,92,110,32,32,125,59,92,110,125,44,32,116,114,117,101,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,116,121,112,101,100,46,117,105,110,116,56,45,99,108,97,109,112,101,100,45,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,119,101,97,107,45,109,97,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,119,101,97,107,45,109,97,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,101,97,99,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,109,101,116,104,111,100,115,46,106,115,92,34,41,40,48,41,59,92,110,118,97,114,32,114,101,100,101,102,105,110,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,118,97,114,32,109,101,116,97,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,109,101,116,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,109,101,116,97,46,106,115,92,34,41,59,92,110,118,97,114,32,97,115,115,105,103,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,97,115,115,105,103,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,97,115,115,105,103,110,46,106,115,92,34,41,59,92,110,118,97,114,32,119,101,97,107,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,108,108,101,99,116,105,111,110,45,119,101,97,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,45,119,101,97,107,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,115,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,115,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,118,97,108,105,100,97,116,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,78,65,84,73,86,69,95,87,69,65,75,95,77,65,80,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,73,83,95,73,69,49,49,32,61,32,33,103,108,111,98,97,108,46,65,99,116,105,118,101,88,79,98,106,101,99,116,32,38,38,32,39,65,99,116,105,118,101,88,79,98,106,101,99,116,39,32,105,110,32,103,108,111,98,97,108,59,92,110,118,97,114,32,87,69,65,75,95,77,65,80,32,61,32,39,87,101,97,107,77,97,112,39,59,92,110,118,97,114,32,103,101,116,87,101,97,107,32,61,32,109,101,116,97,46,103,101,116,87,101,97,107,59,92,110,118,97,114,32,105,115,69,120,116,101,110,115,105,98,108,101,32,61,32,79,98,106,101,99,116,46,105,115,69,120,116,101,110,115,105,98,108,101,59,92,110,118,97,114,32,117,110,99,97,117,103,104,116,70,114,111,122,101,110,83,116,111,114,101,32,61,32,119,101,97,107,46,117,102,115,116,111,114,101,59,92,110,118,97,114,32,73,110,116,101,114,110,97,108,77,97,112,59,92,110,92,110,118,97,114,32,119,114,97,112,112,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,103,101,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,87,101,97,107,77,97,112,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,103,101,116,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,125,59,92,110,125,59,92,110,92,110,118,97,114,32,109,101,116,104,111,100,115,32,61,32,123,92,110,32,32,47,47,32,50,51,46,51,46,51,46,51,32,87,101,97,107,77,97,112,46,112,114,111,116,111,116,121,112,101,46,103,101,116,40,107,101,121,41,92,110,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,107,101,121,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,103,101,116,87,101,97,107,40,107,101,121,41,59,92,110,32,32,32,32,32,32,105,102,32,40,100,97,116,97,32,61,61,61,32,116,114,117,101,41,32,114,101,116,117,114,110,32,117,110,99,97,117,103,104,116,70,114,111,122,101,110,83,116,111,114,101,40,118,97,108,105,100,97,116,101,40,116,104,105,115,44,32,87,69,65,75,95,77,65,80,41,41,46,103,101,116,40,107,101,121,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,32,63,32,100,97,116,97,91,116,104,105,115,46,95,105,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,50,51,46,51,46,51,46,53,32,87,101,97,107,77,97,112,46,112,114,111,116,111,116,121,112,101,46,115,101,116,40,107,101,121,44,32,118,97,108,117,101,41,92,110,32,32,115,101,116,58,32,102,117,110,99,116,105,111,110,32,115,101,116,40,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,119,101,97,107,46,100,101,102,40,118,97,108,105,100,97,116,101,40,116,104,105,115,44,32,87,69,65,75,95,77,65,80,41,44,32,107,101,121,44,32,118,97,108,117,101,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,32,50,51,46,51,32,87,101,97,107,77,97,112,32,79,98,106,101,99,116,115,92,110,118,97,114,32,36,87,101,97,107,77,97,112,32,61,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,108,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,46,106,115,92,34,41,40,87,69,65,75,95,77,65,80,44,32,119,114,97,112,112,101,114,44,32,109,101,116,104,111,100,115,44,32,119,101,97,107,44,32,116,114,117,101,44,32,116,114,117,101,41,59,92,110,92,110,47,47,32,73,69,49,49,32,87,101,97,107,77,97,112,32,102,114,111,122,101,110,32,107,101,121,115,32,102,105,120,92,110,105,102,32,40,78,65,84,73,86,69,95,87,69,65,75,95,77,65,80,32,38,38,32,73,83,95,73,69,49,49,41,32,123,92,110,32,32,73,110,116,101,114,110,97,108,77,97,112,32,61,32,119,101,97,107,46,103,101,116,67,111,110,115,116,114,117,99,116,111,114,40,119,114,97,112,112,101,114,44,32,87,69,65,75,95,77,65,80,41,59,92,110,32,32,97,115,115,105,103,110,40,73,110,116,101,114,110,97,108,77,97,112,46,112,114,111,116,111,116,121,112,101,44,32,109,101,116,104,111,100,115,41,59,92,110,32,32,109,101,116,97,46,78,69,69,68,32,61,32,116,114,117,101,59,92,110,32,32,101,97,99,104,40,91,39,100,101,108,101,116,101,39,44,32,39,104,97,115,39,44,32,39,103,101,116,39,44,32,39,115,101,116,39,93,44,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,116,111,32,61,32,36,87,101,97,107,77,97,112,46,112,114,111,116,111,116,121,112,101,59,92,110,32,32,32,32,118,97,114,32,109,101,116,104,111,100,32,61,32,112,114,111,116,111,91,107,101,121,93,59,92,110,32,32,32,32,114,101,100,101,102,105,110,101,40,112,114,111,116,111,44,32,107,101,121,44,32,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,47,47,32,115,116,111,114,101,32,102,114,111,122,101,110,32,111,98,106,101,99,116,115,32,111,110,32,105,110,116,101,114,110,97,108,32,119,101,97,107,109,97,112,32,115,104,105,109,92,110,32,32,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,97,41,32,38,38,32,33,105,115,69,120,116,101,110,115,105,98,108,101,40,97,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,102,41,32,116,104,105,115,46,95,102,32,61,32,110,101,119,32,73,110,116,101,114,110,97,108,77,97,112,40,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,116,104,105,115,46,95,102,91,107,101,121,93,40,97,44,32,98,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,107,101,121,32,61,61,32,39,115,101,116,39,32,63,32,116,104,105,115,32,58,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,47,47,32,115,116,111,114,101,32,97,108,108,32,116,104,101,32,114,101,115,116,32,111,110,32,110,97,116,105,118,101,32,119,101,97,107,109,97,112,92,110,32,32,32,32,32,32,125,32,114,101,116,117,114,110,32,109,101,116,104,111,100,46,99,97,108,108,40,116,104,105,115,44,32,97,44,32,98,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,119,101,97,107,45,109,97,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,119,101,97,107,45,115,101,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,119,101,97,107,45,115,101,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,118,97,114,32,119,101,97,107,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,108,108,101,99,116,105,111,110,45,119,101,97,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,45,119,101,97,107,46,106,115,92,34,41,59,92,110,118,97,114,32,118,97,108,105,100,97,116,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,118,97,108,105,100,97,116,101,45,99,111,108,108,101,99,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,87,69,65,75,95,83,69,84,32,61,32,39,87,101,97,107,83,101,116,39,59,92,110,92,110,47,47,32,50,51,46,52,32,87,101,97,107,83,101,116,32,79,98,106,101,99,116,115,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,108,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,108,108,101,99,116,105,111,110,46,106,115,92,34,41,40,87,69,65,75,95,83,69,84,44,32,102,117,110,99,116,105,111,110,32,40,103,101,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,87,101,97,107,83,101,116,40,41,32,123,32,114,101,116,117,114,110,32,103,101,116,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,32,125,59,92,110,125,44,32,123,92,110,32,32,47,47,32,50,51,46,52,46,51,46,49,32,87,101,97,107,83,101,116,46,112,114,111,116,111,116,121,112,101,46,97,100,100,40,118,97,108,117,101,41,92,110,32,32,97,100,100,58,32,102,117,110,99,116,105,111,110,32,97,100,100,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,119,101,97,107,46,100,101,102,40,118,97,108,105,100,97,116,101,40,116,104,105,115,44,32,87,69,65,75,95,83,69,84,41,44,32,118,97,108,117,101,44,32,116,114,117,101,41,59,92,110,32,32,125,92,110,125,44,32,119,101,97,107,44,32,102,97,108,115,101,44,32,116,114,117,101,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,119,101,97,107,45,115,101,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,97,114,114,97,121,46,102,108,97,116,45,109,97,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,97,114,114,97,121,46,102,108,97,116,45,109,97,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,104,116,116,112,115,58,47,47,116,99,51,57,46,103,105,116,104,117,98,46,105,111,47,112,114,111,112,111,115,97,108,45,102,108,97,116,77,97,112,47,35,115,101,99,45,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,108,97,116,77,97,112,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,102,108,97,116,116,101,110,73,110,116,111,65,114,114,97,121,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,108,97,116,116,101,110,45,105,110,116,111,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,102,108,97,116,116,101,110,45,105,110,116,111,45,97,114,114,97,121,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,76,101,110,103,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,108,101,110,103,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,97,70,117,110,99,116,105,111,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,45,102,117,110,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,45,102,117,110,99,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,97,114,114,97,121,83,112,101,99,105,101,115,67,114,101,97,116,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,115,112,101,99,105,101,115,45,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,115,112,101,99,105,101,115,45,99,114,101,97,116,101,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,102,108,97,116,77,97,112,58,32,102,117,110,99,116,105,111,110,32,102,108,97,116,77,97,112,40,99,97,108,108,98,97,99,107,102,110,32,47,42,32,44,32,116,104,105,115,65,114,103,32,42,47,41,32,123,92,110,32,32,32,32,118,97,114,32,79,32,61,32,116,111,79,98,106,101,99,116,40,116,104,105,115,41,59,92,110,32,32,32,32,118,97,114,32,115,111,117,114,99,101,76,101,110,44,32,65,59,92,110,32,32,32,32,97,70,117,110,99,116,105,111,110,40,99,97,108,108,98,97,99,107,102,110,41,59,92,110,32,32,32,32,115,111,117,114,99,101,76,101,110,32,61,32,116,111,76,101,110,103,116,104,40,79,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,65,32,61,32,97,114,114,97,121,83,112,101,99,105,101,115,67,114,101,97,116,101,40,79,44,32,48,41,59,92,110,32,32,32,32,102,108,97,116,116,101,110,73,110,116,111,65,114,114,97,121,40,65,44,32,79,44,32,79,44,32,115,111,117,114,99,101,76,101,110,44,32,48,44,32,49,44,32,99,97,108,108,98,97,99,107,102,110,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,65,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,46,106,115,92,34,41,40,39,102,108,97,116,77,97,112,39,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,97,114,114,97,121,46,102,108,97,116,45,109,97,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,97,114,114,97,121,46,105,110,99,108,117,100,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,97,114,114,97,121,46,105,110,99,108,117,100,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,99,51,57,47,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,99,108,117,100,101,115,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,105,110,99,108,117,100,101,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,114,114,97,121,45,105,110,99,108,117,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,114,114,97,121,45,105,110,99,108,117,100,101,115,46,106,115,92,34,41,40,116,114,117,101,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,44,32,39,65,114,114,97,121,39,44,32,123,92,110,32,32,105,110,99,108,117,100,101,115,58,32,102,117,110,99,116,105,111,110,32,105,110,99,108,117,100,101,115,40,101,108,32,47,42,32,44,32,102,114,111,109,73,110,100,101,120,32,61,32,48,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,105,110,99,108,117,100,101,115,40,116,104,105,115,44,32,101,108,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,97,100,100,45,116,111,45,117,110,115,99,111,112,97,98,108,101,115,46,106,115,92,34,41,40,39,105,110,99,108,117,100,101,115,39,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,97,114,114,97,121,46,105,110,99,108,117,100,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,111,98,106,101,99,116,46,101,110,116,114,105,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,111,98,106,101,99,116,46,101,110,116,114,105,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,99,51,57,47,112,114,111,112,111,115,97,108,45,111,98,106,101,99,116,45,118,97,108,117,101,115,45,101,110,116,114,105,101,115,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,101,110,116,114,105,101,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,116,111,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,116,111,45,97,114,114,97,121,46,106,115,92,34,41,40,116,114,117,101,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,79,98,106,101,99,116,39,44,32,123,92,110,32,32,101,110,116,114,105,101,115,58,32,102,117,110,99,116,105,111,110,32,101,110,116,114,105,101,115,40,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,101,110,116,114,105,101,115,40,105,116,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,111,98,106,101,99,116,46,101,110,116,114,105,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,111,98,106,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,111,98,106,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,99,51,57,47,112,114,111,112,111,115,97,108,45,111,98,106,101,99,116,45,103,101,116,111,119,110,112,114,111,112,101,114,116,121,100,101,115,99,114,105,112,116,111,114,115,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,111,119,110,75,101,121,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,119,110,45,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,119,110,45,107,101,121,115,46,106,115,92,34,41,59,92,110,118,97,114,32,116,111,73,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,111,45,105,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,111,45,105,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,118,97,114,32,103,79,80,68,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,103,111,112,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,103,111,112,100,46,106,115,92,34,41,59,92,110,118,97,114,32,99,114,101,97,116,101,80,114,111,112,101,114,116,121,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,114,101,97,116,101,45,112,114,111,112,101,114,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,114,101,97,116,101,45,112,114,111,112,101,114,116,121,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,79,98,106,101,99,116,39,44,32,123,92,110,32,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,115,58,32,102,117,110,99,116,105,111,110,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,115,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,118,97,114,32,79,32,61,32,116,111,73,79,98,106,101,99,116,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,118,97,114,32,103,101,116,68,101,115,99,32,61,32,103,79,80,68,46,102,59,92,110,32,32,32,32,118,97,114,32,107,101,121,115,32,61,32,111,119,110,75,101,121,115,40,79,41,59,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,123,125,59,92,110,32,32,32,32,118,97,114,32,105,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,107,101,121,44,32,100,101,115,99,59,92,110,32,32,32,32,119,104,105,108,101,32,40,107,101,121,115,46,108,101,110,103,116,104,32,62,32,105,41,32,123,92,110,32,32,32,32,32,32,100,101,115,99,32,61,32,103,101,116,68,101,115,99,40,79,44,32,107,101,121,32,61,32,107,101,121,115,91,105,43,43,93,41,59,92,110,32,32,32,32,32,32,105,102,32,40,100,101,115,99,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,99,114,101,97,116,101,80,114,111,112,101,114,116,121,40,114,101,115,117,108,116,44,32,107,101,121,44,32,100,101,115,99,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,111,98,106,101,99,116,46,103,101,116,45,111,119,110,45,112,114,111,112,101,114,116,121,45,100,101,115,99,114,105,112,116,111,114,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,111,98,106,101,99,116,46,118,97,108,117,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,111,98,106,101,99,116,46,118,97,108,117,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,99,51,57,47,112,114,111,112,111,115,97,108,45,111,98,106,101,99,116,45,118,97,108,117,101,115,45,101,110,116,114,105,101,115,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,118,97,108,117,101,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,116,111,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,116,111,45,97,114,114,97,121,46,106,115,92,34,41,40,102,97,108,115,101,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,83,44,32,39,79,98,106,101,99,116,39,44,32,123,92,110,32,32,118,97,108,117,101,115,58,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,115,40,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,118,97,108,117,101,115,40,105,116,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,111,98,106,101,99,116,46,118,97,108,117,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,112,114,111,109,105,115,101,46,102,105,110,97,108,108,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,112,114,111,109,105,115,101,46,102,105,110,97,108,108,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,99,51,57,47,112,114,111,112,111,115,97,108,45,112,114,111,109,105,115,101,45,102,105,110,97,108,108,121,92,110,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,99,111,114,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,59,92,110,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,115,112,101,99,105,101,115,67,111,110,115,116,114,117,99,116,111,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,112,101,99,105,101,115,45,99,111,110,115,116,114,117,99,116,111,114,46,106,115,92,34,41,59,92,110,118,97,114,32,112,114,111,109,105,115,101,82,101,115,111,108,118,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,112,114,111,109,105,115,101,45,114,101,115,111,108,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,112,114,111,109,105,115,101,45,114,101,115,111,108,118,101,46,106,115,92,34,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,82,44,32,39,80,114,111,109,105,115,101,39,44,32,123,32,39,102,105,110,97,108,108,121,39,58,32,102,117,110,99,116,105,111,110,32,40,111,110,70,105,110,97,108,108,121,41,32,123,92,110,32,32,118,97,114,32,67,32,61,32,115,112,101,99,105,101,115,67,111,110,115,116,114,117,99,116,111,114,40,116,104,105,115,44,32,99,111,114,101,46,80,114,111,109,105,115,101,32,124,124,32,103,108,111,98,97,108,46,80,114,111,109,105,115,101,41,59,92,110,32,32,118,97,114,32,105,115,70,117,110,99,116,105,111,110,32,61,32,116,121,112,101,111,102,32,111,110,70,105,110,97,108,108,121,32,61,61,32,39,102,117,110,99,116,105,111,110,39,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,104,101,110,40,92,110,32,32,32,32,105,115,70,117,110,99,116,105,111,110,32,63,32,102,117,110,99,116,105,111,110,32,40,120,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,114,111,109,105,115,101,82,101,115,111,108,118,101,40,67,44,32,111,110,70,105,110,97,108,108,121,40,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,120,59,32,125,41,59,92,110,32,32,32,32,125,32,58,32,111,110,70,105,110,97,108,108,121,44,92,110,32,32,32,32,105,115,70,117,110,99,116,105,111,110,32,63,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,114,111,109,105,115,101,82,101,115,111,108,118,101,40,67,44,32,111,110,70,105,110,97,108,108,121,40,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,116,104,114,111,119,32,101,59,32,125,41,59,92,110,32,32,32,32,125,32,58,32,111,110,70,105,110,97,108,108,121,92,110,32,32,41,59,92,110,125,32,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,112,114,111,109,105,115,101,46,102,105,110,97,108,108,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,112,97,100,45,101,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,112,97,100,45,101,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,99,51,57,47,112,114,111,112,111,115,97,108,45,115,116,114,105,110,103,45,112,97,100,45,115,116,97,114,116,45,101,110,100,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,112,97,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,112,97,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,112,97,100,46,106,115,92,34,41,59,92,110,118,97,114,32,117,115,101,114,65,103,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,117,115,101,114,45,97,103,101,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,115,101,114,45,97,103,101,110,116,46,106,115,92,34,41,59,92,110,92,110,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,122,108,111,105,114,111,99,107,47,99,111,114,101,45,106,115,47,105,115,115,117,101,115,47,50,56,48,92,110,118,97,114,32,87,69,66,75,73,84,95,66,85,71,32,61,32,47,86,101,114,115,105,111,110,92,92,47,49,48,92,92,46,92,92,100,43,40,92,92,46,92,92,100,43,41,63,40,32,77,111,98,105,108,101,92,92,47,92,92,119,43,41,63,32,83,97,102,97,114,105,92,92,47,47,46,116,101,115,116,40,117,115,101,114,65,103,101,110,116,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,87,69,66,75,73,84,95,66,85,71,44,32,39,83,116,114,105,110,103,39,44,32,123,92,110,32,32,112,97,100,69,110,100,58,32,102,117,110,99,116,105,111,110,32,112,97,100,69,110,100,40,109,97,120,76,101,110,103,116,104,32,47,42,32,44,32,102,105,108,108,83,116,114,105,110,103,32,61,32,39,32,39,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,112,97,100,40,116,104,105,115,44,32,109,97,120,76,101,110,103,116,104,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,44,32,102,97,108,115,101,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,112,97,100,45,101,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,112,97,100,45,115,116,97,114,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,112,97,100,45,115,116,97,114,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,99,51,57,47,112,114,111,112,111,115,97,108,45,115,116,114,105,110,103,45,112,97,100,45,115,116,97,114,116,45,101,110,100,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,112,97,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,112,97,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,112,97,100,46,106,115,92,34,41,59,92,110,118,97,114,32,117,115,101,114,65,103,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,117,115,101,114,45,97,103,101,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,115,101,114,45,97,103,101,110,116,46,106,115,92,34,41,59,92,110,92,110,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,122,108,111,105,114,111,99,107,47,99,111,114,101,45,106,115,47,105,115,115,117,101,115,47,50,56,48,92,110,118,97,114,32,87,69,66,75,73,84,95,66,85,71,32,61,32,47,86,101,114,115,105,111,110,92,92,47,49,48,92,92,46,92,92,100,43,40,92,92,46,92,92,100,43,41,63,40,32,77,111,98,105,108,101,92,92,47,92,92,119,43,41,63,32,83,97,102,97,114,105,92,92,47,47,46,116,101,115,116,40,117,115,101,114,65,103,101,110,116,41,59,92,110,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,80,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,87,69,66,75,73,84,95,66,85,71,44,32,39,83,116,114,105,110,103,39,44,32,123,92,110,32,32,112,97,100,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,32,112,97,100,83,116,97,114,116,40,109,97,120,76,101,110,103,116,104,32,47,42,32,44,32,102,105,108,108,83,116,114,105,110,103,32,61,32,39,32,39,32,42,47,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,112,97,100,40,116,104,105,115,44,32,109,97,120,76,101,110,103,116,104,44,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,44,32,116,114,117,101,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,112,97,100,45,115,116,97,114,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,116,114,105,109,45,108,101,102,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,116,114,105,109,45,108,101,102,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,115,101,98,109,97,114,107,98,97,103,101,47,101,99,109,97,115,99,114,105,112,116,45,115,116,114,105,110,103,45,108,101,102,116,45,114,105,103,104,116,45,116,114,105,109,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,116,114,105,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,116,114,105,109,46,106,115,92,34,41,40,39,116,114,105,109,76,101,102,116,39,44,32,102,117,110,99,116,105,111,110,32,40,36,116,114,105,109,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,114,105,109,76,101,102,116,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,116,114,105,109,40,116,104,105,115,44,32,49,41,59,92,110,32,32,125,59,92,110,125,44,32,39,116,114,105,109,83,116,97,114,116,39,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,116,114,105,109,45,108,101,102,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,116,114,105,109,45,114,105,103,104,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,116,114,105,109,45,114,105,103,104,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,115,101,98,109,97,114,107,98,97,103,101,47,101,99,109,97,115,99,114,105,112,116,45,115,116,114,105,110,103,45,108,101,102,116,45,114,105,103,104,116,45,116,114,105,109,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,115,116,114,105,110,103,45,116,114,105,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,115,116,114,105,110,103,45,116,114,105,109,46,106,115,92,34,41,40,39,116,114,105,109,82,105,103,104,116,39,44,32,102,117,110,99,116,105,111,110,32,40,36,116,114,105,109,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,114,105,109,82,105,103,104,116,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,116,114,105,109,40,116,104,105,115,44,32,50,41,59,92,110,32,32,125,59,92,110,125,44,32,39,116,114,105,109,69,110,100,39,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,116,114,105,110,103,46,116,114,105,109,45,114,105,103,104,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,121,109,98,111,108,46,97,115,121,110,99,45,105,116,101,114,97,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,121,109,98,111,108,46,97,115,121,110,99,45,105,116,101,114,97,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,45,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,45,100,101,102,105,110,101,46,106,115,92,34,41,40,39,97,115,121,110,99,73,116,101,114,97,116,111,114,39,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,55,46,115,121,109,98,111,108,46,97,115,121,110,99,45,105,116,101,114,97,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,119,101,98,46,100,111,109,46,105,116,101,114,97,98,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,119,101,98,46,100,111,109,46,105,116,101,114,97,98,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,105,116,101,114,97,116,111,114,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,115,54,46,97,114,114,97,121,46,105,116,101,114,97,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,101,115,54,46,97,114,114,97,121,46,105,116,101,114,97,116,111,114,46,106,115,92,34,41,59,92,110,118,97,114,32,103,101,116,75,101,121,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,45,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,111,98,106,101,99,116,45,107,101,121,115,46,106,115,92,34,41,59,92,110,118,97,114,32,114,101,100,101,102,105,110,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,101,100,101,102,105,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,114,101,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,104,105,100,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,104,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,104,105,100,101,46,106,115,92,34,41,59,92,110,118,97,114,32,73,116,101,114,97,116,111,114,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,105,116,101,114,97,116,111,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,105,116,101,114,97,116,111,114,115,46,106,115,92,34,41,59,92,110,118,97,114,32,119,107,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,119,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,119,107,115,46,106,115,92,34,41,59,92,110,118,97,114,32,73,84,69,82,65,84,79,82,32,61,32,119,107,115,40,39,105,116,101,114,97,116,111,114,39,41,59,92,110,118,97,114,32,84,79,95,83,84,82,73,78,71,95,84,65,71,32,61,32,119,107,115,40,39,116,111,83,116,114,105,110,103,84,97,103,39,41,59,92,110,118,97,114,32,65,114,114,97,121,86,97,108,117,101,115,32,61,32,73,116,101,114,97,116,111,114,115,46,65,114,114,97,121,59,92,110,92,110,118,97,114,32,68,79,77,73,116,101,114,97,98,108,101,115,32,61,32,123,92,110,32,32,67,83,83,82,117,108,101,76,105,115,116,58,32,116,114,117,101,44,32,47,47,32,84,79,68,79,58,32,78,111,116,32,115,112,101,99,32,99,111,109,112,108,105,97,110,116,44,32,115,104,111,117,108,100,32,98,101,32,102,97,108,115,101,46,92,110,32,32,67,83,83,83,116,121,108,101,68,101,99,108,97,114,97,116,105,111,110,58,32,102,97,108,115,101,44,92,110,32,32,67,83,83,86,97,108,117,101,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,67,108,105,101,110,116,82,101,99,116,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,68,79,77,82,101,99,116,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,68,79,77,83,116,114,105,110,103,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,68,79,77,84,111,107,101,110,76,105,115,116,58,32,116,114,117,101,44,92,110,32,32,68,97,116,97,84,114,97,110,115,102,101,114,73,116,101,109,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,70,105,108,101,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,72,84,77,76,65,108,108,67,111,108,108,101,99,116,105,111,110,58,32,102,97,108,115,101,44,92,110,32,32,72,84,77,76,67,111,108,108,101,99,116,105,111,110,58,32,102,97,108,115,101,44,92,110,32,32,72,84,77,76,70,111,114,109,69,108,101,109,101,110,116,58,32,102,97,108,115,101,44,92,110,32,32,72,84,77,76,83,101,108,101,99,116,69,108,101,109,101,110,116,58,32,102,97,108,115,101,44,92,110,32,32,77,101,100,105,97,76,105,115,116,58,32,116,114,117,101,44,32,47,47,32,84,79,68,79,58,32,78,111,116,32,115,112,101,99,32,99,111,109,112,108,105,97,110,116,44,32,115,104,111,117,108,100,32,98,101,32,102,97,108,115,101,46,92,110,32,32,77,105,109,101,84,121,112,101,65,114,114,97,121,58,32,102,97,108,115,101,44,92,110,32,32,78,97,109,101,100,78,111,100,101,77,97,112,58,32,102,97,108,115,101,44,92,110,32,32,78,111,100,101,76,105,115,116,58,32,116,114,117,101,44,92,110,32,32,80,97,105,110,116,82,101,113,117,101,115,116,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,80,108,117,103,105,110,58,32,102,97,108,115,101,44,92,110,32,32,80,108,117,103,105,110,65,114,114,97,121,58,32,102,97,108,115,101,44,92,110,32,32,83,86,71,76,101,110,103,116,104,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,83,86,71,78,117,109,98,101,114,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,83,86,71,80,97,116,104,83,101,103,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,83,86,71,80,111,105,110,116,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,83,86,71,83,116,114,105,110,103,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,83,86,71,84,114,97,110,115,102,111,114,109,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,83,111,117,114,99,101,66,117,102,102,101,114,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,83,116,121,108,101,83,104,101,101,116,76,105,115,116,58,32,116,114,117,101,44,32,47,47,32,84,79,68,79,58,32,78,111,116,32,115,112,101,99,32,99,111,109,112,108,105,97,110,116,44,32,115,104,111,117,108,100,32,98,101,32,102,97,108,115,101,46,92,110,32,32,84,101,120,116,84,114,97,99,107,67,117,101,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,84,101,120,116,84,114,97,99,107,76,105,115,116,58,32,102,97,108,115,101,44,92,110,32,32,84,111,117,99,104,76,105,115,116,58,32,102,97,108,115,101,92,110,125,59,92,110,92,110,102,111,114,32,40,118,97,114,32,99,111,108,108,101,99,116,105,111,110,115,32,61,32,103,101,116,75,101,121,115,40,68,79,77,73,116,101,114,97,98,108,101,115,41,44,32,105,32,61,32,48,59,32,105,32,60,32,99,111,108,108,101,99,116,105,111,110,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,118,97,114,32,78,65,77,69,32,61,32,99,111,108,108,101,99,116,105,111,110,115,91,105,93,59,92,110,32,32,118,97,114,32,101,120,112,108,105,99,105,116,32,61,32,68,79,77,73,116,101,114,97,98,108,101,115,91,78,65,77,69,93,59,92,110,32,32,118,97,114,32,67,111,108,108,101,99,116,105,111,110,32,61,32,103,108,111,98,97,108,91,78,65,77,69,93,59,92,110,32,32,118,97,114,32,112,114,111,116,111,32,61,32,67,111,108,108,101,99,116,105,111,110,32,38,38,32,67,111,108,108,101,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,59,92,110,32,32,118,97,114,32,107,101,121,59,92,110,32,32,105,102,32,40,112,114,111,116,111,41,32,123,92,110,32,32,32,32,105,102,32,40,33,112,114,111,116,111,91,73,84,69,82,65,84,79,82,93,41,32,104,105,100,101,40,112,114,111,116,111,44,32,73,84,69,82,65,84,79,82,44,32,65,114,114,97,121,86,97,108,117,101,115,41,59,92,110,32,32,32,32,105,102,32,40,33,112,114,111,116,111,91,84,79,95,83,84,82,73,78,71,95,84,65,71,93,41,32,104,105,100,101,40,112,114,111,116,111,44,32,84,79,95,83,84,82,73,78,71,95,84,65,71,44,32,78,65,77,69,41,59,92,110,32,32,32,32,73,116,101,114,97,116,111,114,115,91,78,65,77,69,93,32,61,32,65,114,114,97,121,86,97,108,117,101,115,59,92,110,32,32,32,32,105,102,32,40,101,120,112,108,105,99,105,116,41,32,102,111,114,32,40,107,101,121,32,105,110,32,36,105,116,101,114,97,116,111,114,115,41,32,105,102,32,40,33,112,114,111,116,111,91,107,101,121,93,41,32,114,101,100,101,102,105,110,101,40,112,114,111,116,111,44,32,107,101,121,44,32,36,105,116,101,114,97,116,111,114,115,91,107,101,121,93,44,32,116,114,117,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,119,101,98,46,100,111,109,46,105,116,101,114,97,98,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,119,101,98,46,105,109,109,101,100,105,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,119,101,98,46,105,109,109,101,100,105,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,36,116,97,115,107,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,97,115,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,116,97,115,107,46,106,115,92,34,41,59,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,71,32,43,32,36,101,120,112,111,114,116,46,66,44,32,123,92,110,32,32,115,101,116,73,109,109,101,100,105,97,116,101,58,32,36,116,97,115,107,46,115,101,116,44,92,110,32,32,99,108,101,97,114,73,109,109,101,100,105,97,116,101,58,32,36,116,97,115,107,46,99,108,101,97,114,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,119,101,98,46,105,109,109,101,100,105,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,119,101,98,46,116,105,109,101,114,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,119,101,98,46,116,105,109,101,114,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,105,101,57,45,32,115,101,116,84,105,109,101,111,117,116,32,38,32,115,101,116,73,110,116,101,114,118,97,108,32,97,100,100,105,116,105,111,110,97,108,32,112,97,114,97,109,101,116,101,114,115,32,102,105,120,92,110,118,97,114,32,103,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,103,108,111,98,97,108,46,106,115,92,34,41,59,92,110,118,97,114,32,36,101,120,112,111,114,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,101,120,112,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,101,120,112,111,114,116,46,106,115,92,34,41,59,92,110,118,97,114,32,117,115,101,114,65,103,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,117,115,101,114,45,97,103,101,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,117,115,101,114,45,97,103,101,110,116,46,106,115,92,34,41,59,92,110,118,97,114,32,115,108,105,99,101,32,61,32,91,93,46,115,108,105,99,101,59,92,110,118,97,114,32,77,83,73,69,32,61,32,47,77,83,73,69,32,46,92,92,46,47,46,116,101,115,116,40,117,115,101,114,65,103,101,110,116,41,59,32,47,47,32,60,45,32,100,105,114,116,121,32,105,101,57,45,32,99,104,101,99,107,92,110,118,97,114,32,119,114,97,112,32,61,32,102,117,110,99,116,105,111,110,32,40,115,101,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,102,110,44,32,116,105,109,101,32,47,42,32,44,32,46,46,46,97,114,103,115,32,42,47,41,32,123,92,110,32,32,32,32,118,97,114,32,98,111,117,110,100,65,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,59,92,110,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,98,111,117,110,100,65,114,103,115,32,63,32,115,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,32,50,41,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,101,116,40,98,111,117,110,100,65,114,103,115,32,63,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,110,101,119,45,102,117,110,99,92,110,32,32,32,32,32,32,40,116,121,112,101,111,102,32,102,110,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,102,110,32,58,32,70,117,110,99,116,105,111,110,40,102,110,41,41,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,59,92,110,32,32,32,32,125,32,58,32,102,110,44,32,116,105,109,101,41,59,92,110,32,32,125,59,92,110,125,59,92,110,36,101,120,112,111,114,116,40,36,101,120,112,111,114,116,46,71,32,43,32,36,101,120,112,111,114,116,46,66,32,43,32,36,101,120,112,111,114,116,46,70,32,42,32,77,83,73,69,44,32,123,92,110,32,32,115,101,116,84,105,109,101,111,117,116,58,32,119,114,97,112,40,103,108,111,98,97,108,46,115,101,116,84,105,109,101,111,117,116,41,44,92,110,32,32,115,101,116,73,110,116,101,114,118,97,108,58,32,119,114,97,112,40,103,108,111,98,97,108,46,115,101,116,73,110,116,101,114,118,97,108,41,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,119,101,98,46,116,105,109,101,114,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,119,101,98,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,119,101,98,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,119,101,98,46,116,105,109,101,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,119,101,98,46,116,105,109,101,114,115,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,119,101,98,46,105,109,109,101,100,105,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,119,101,98,46,105,109,109,101,100,105,97,116,101,46,106,115,92,34,41,59,92,110,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,119,101,98,46,100,111,109,46,105,116,101,114,97,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,119,101,98,46,100,111,109,46,105,116,101,114,97,98,108,101,46,106,115,92,34,41,59,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,117,108,101,115,47,95,99,111,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,109,111,100,117,108,101,115,47,95,99,111,114,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,111,114,101,45,106,115,47,119,101,98,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,99,111,109,112,111,110,101,110,116,47,100,105,115,116,47,99,111,109,112,111,110,101,110,116,46,101,115,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,99,111,109,112,111,110,101,110,116,47,100,105,115,116,47,99,111,109,112,111,110,101,110,116,46,101,115,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,78,65,86,69,82,32,67,111,114,112,46,92,110,110,97,109,101,58,32,64,101,103,106,115,47,99,111,109,112,111,110,101,110,116,92,110,108,105,99,101,110,115,101,58,32,77,73,84,92,110,97,117,116,104,111,114,58,32,78,65,86,69,82,32,67,111,114,112,46,92,110,114,101,112,111,115,105,116,111,114,121,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,110,97,118,101,114,47,101,103,106,115,45,99,111,109,112,111,110,101,110,116,92,110,118,101,114,115,105,111,110,58,32,50,46,50,46,50,92,110,42,47,92,110,47,42,33,32,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,92,114,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,77,105,99,114,111,115,111,102,116,32,67,111,114,112,111,114,97,116,105,111,110,46,92,114,92,110,92,114,92,110,80,101,114,109,105,115,115,105,111,110,32,116,111,32,117,115,101,44,32,99,111,112,121,44,32,109,111,100,105,102,121,44,32,97,110,100,47,111,114,32,100,105,115,116,114,105,98,117,116,101,32,116,104,105,115,32,115,111,102,116,119,97,114,101,32,102,111,114,32,97,110,121,92,114,92,110,112,117,114,112,111,115,101,32,119,105,116,104,32,111,114,32,119,105,116,104,111,117,116,32,102,101,101,32,105,115,32,104,101,114,101,98,121,32,103,114,97,110,116,101,100,46,92,114,92,110,92,114,92,110,84,72,69,32,83,79,70,84,87,65,82,69,32,73,83,32,80,82,79,86,73,68,69,68,32,92,34,65,83,32,73,83,92,34,32,65,78,68,32,84,72,69,32,65,85,84,72,79,82,32,68,73,83,67,76,65,73,77,83,32,65,76,76,32,87,65,82,82,65,78,84,73,69,83,32,87,73,84,72,92,114,92,110,82,69,71,65,82,68,32,84,79,32,84,72,73,83,32,83,79,70,84,87,65,82,69,32,73,78,67,76,85,68,73,78,71,32,65,76,76,32,73,77,80,76,73,69,68,32,87,65,82,82,65,78,84,73,69,83,32,79,70,32,77,69,82,67,72,65,78,84,65,66,73,76,73,84,89,92,114,92,110,65,78,68,32,70,73,84,78,69,83,83,46,32,73,78,32,78,79,32,69,86,69,78,84,32,83,72,65,76,76,32,84,72,69,32,65,85,84,72,79,82,32,66,69,32,76,73,65,66,76,69,32,70,79,82,32,65,78,89,32,83,80,69,67,73,65,76,44,32,68,73,82,69,67,84,44,92,114,92,110,73,78,68,73,82,69,67,84,44,32,79,82,32,67,79,78,83,69,81,85,69,78,84,73,65,76,32,68,65,77,65,71,69,83,32,79,82,32,65,78,89,32,68,65,77,65,71,69,83,32,87,72,65,84,83,79,69,86,69,82,32,82,69,83,85,76,84,73,78,71,32,70,82,79,77,92,114,92,110,76,79,83,83,32,79,70,32,85,83,69,44,32,68,65,84,65,32,79,82,32,80,82,79,70,73,84,83,44,32,87,72,69,84,72,69,82,32,73,78,32,65,78,32,65,67,84,73,79,78,32,79,70,32,67,79,78,84,82,65,67,84,44,32,78,69,71,76,73,71,69,78,67,69,32,79,82,92,114,92,110,79,84,72,69,82,32,84,79,82,84,73,79,85,83,32,65,67,84,73,79,78,44,32,65,82,73,83,73,78,71,32,79,85,84,32,79,70,32,79,82,32,73,78,32,67,79,78,78,69,67,84,73,79,78,32,87,73,84,72,32,84,72,69,32,85,83,69,32,79,82,92,114,92,110,80,69,82,70,79,82,77,65,78,67,69,32,79,70,32,84,72,73,83,32,83,79,70,84,87,65,82,69,46,92,114,92,110,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,32,42,47,92,110,102,117,110,99,116,105,111,110,32,95,95,118,97,108,117,101,115,40,111,41,32,123,92,110,32,32,118,97,114,32,115,32,61,32,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,44,92,110,32,32,32,32,32,32,109,32,61,32,115,32,38,38,32,111,91,115,93,44,92,110,32,32,32,32,32,32,105,32,61,32,48,59,92,110,32,32,105,102,32,40,109,41,32,114,101,116,117,114,110,32,109,46,99,97,108,108,40,111,41,59,92,110,32,32,105,102,32,40,111,32,38,38,32,116,121,112,101,111,102,32,111,46,108,101,110,103,116,104,32,61,61,61,32,92,34,110,117,109,98,101,114,92,34,41,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,110,101,120,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,111,32,38,38,32,105,32,62,61,32,111,46,108,101,110,103,116,104,41,32,111,32,61,32,118,111,105,100,32,48,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,111,32,38,38,32,111,91,105,43,43,93,44,92,110,32,32,32,32,32,32,32,32,100,111,110,101,58,32,33,111,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,115,32,63,32,92,34,79,98,106,101,99,116,32,105,115,32,110,111,116,32,105,116,101,114,97,98,108,101,46,92,34,32,58,32,92,34,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,115,32,110,111,116,32,100,101,102,105,110,101,100,46,92,34,41,59,92,110,125,92,110,92,110,47,42,92,110,32,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,53,32,78,65,86,69,82,32,67,111,114,112,46,92,110,32,42,32,101,103,106,115,32,112,114,111,106,101,99,116,115,32,97,114,101,32,108,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,85,110,100,101,102,105,110,101,100,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,59,92,110,125,92,110,47,42,42,92,110,32,42,32,65,32,99,108,97,115,115,32,117,115,101,100,32,116,111,32,109,97,110,97,103,101,32,101,118,101,110,116,115,32,105,110,32,97,32,99,111,109,112,111,110,101,110,116,92,110,32,42,32,64,107,111,32,236,187,180,237,143,172,235,132,140,237,138,184,236,157,152,32,236,157,180,235,178,164,237,138,184,236,157,132,32,234,180,128,235,166,172,237,149,160,32,236,136,152,32,236,158,136,234,178,140,32,237,149,152,235,138,148,32,237,129,180,235,158,152,236,138,164,92,110,32,42,32,64,97,108,105,97,115,32,101,103,46,67,111,109,112,111,110,101,110,116,92,110,32,42,47,92,110,92,110,92,110,118,97,114,32,67,111,109,112,111,110,101,110,116,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,47,42,42,92,110,32,32,32,42,32,64,115,117,112,112,111,114,116,32,123,92,34,105,101,92,34,58,32,92,34,55,43,92,34,44,32,92,34,99,104,92,34,32,58,32,92,34,108,97,116,101,115,116,92,34,44,32,92,34,102,102,92,34,32,58,32,92,34,108,97,116,101,115,116,92,34,44,32,32,92,34,115,102,92,34,32,58,32,92,34,108,97,116,101,115,116,92,34,44,32,92,34,101,100,103,101,92,34,32,58,32,92,34,108,97,116,101,115,116,92,34,44,32,92,34,105,111,115,92,34,32,58,32,92,34,55,43,92,34,44,32,92,34,97,110,92,34,32,58,32,92,34,50,46,49,43,32,40,101,120,99,101,112,116,32,51,46,120,41,92,34,125,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,67,111,109,112,111,110,101,110,116,40,41,32,123,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,100,101,112,114,101,99,97,116,101,100,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,32,61,32,123,125,59,92,110,32,32,125,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,114,105,103,103,101,114,115,32,97,32,99,117,115,116,111,109,32,101,118,101,110,116,46,92,110,32,32,32,42,32,64,107,111,32,236,187,164,236,138,164,237,133,128,32,236,157,180,235,178,164,237,138,184,235,165,188,32,235,176,156,236,131,157,236,139,156,237,130,168,235,139,164,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,101,118,101,110,116,78,97,109,101,32,84,104,101,32,110,97,109,101,32,111,102,32,116,104,101,32,99,117,115,116,111,109,32,101,118,101,110,116,32,116,111,32,98,101,32,116,114,105,103,103,101,114,101,100,32,60,107,111,62,235,176,156,236,131,157,237,149,160,32,236,187,164,236,138,164,237,133,128,32,236,157,180,235,178,164,237,138,184,236,157,152,32,236,157,180,235,166,132,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,99,117,115,116,111,109,69,118,101,110,116,32,69,118,101,110,116,32,100,97,116,97,32,116,111,32,98,101,32,115,101,110,116,32,119,104,101,110,32,116,114,105,103,103,101,114,105,110,103,32,97,32,99,117,115,116,111,109,32,101,118,101,110,116,32,60,107,111,62,236,187,164,236,138,164,237,133,128,32,236,157,180,235,178,164,237,138,184,234,176,128,32,235,176,156,236,131,157,237,149,160,32,235,149,140,32,236,160,132,235,139,172,237,149,160,32,235,141,176,236,157,180,237,132,176,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,97,110,121,91,93,125,32,114,101,115,116,80,97,114,97,109,32,65,100,100,105,116,105,111,110,97,108,32,112,97,114,97,109,101,116,101,114,115,32,119,104,101,110,32,116,114,105,103,103,101,114,105,110,103,32,97,32,99,117,115,116,111,109,32,101,118,101,110,116,32,60,107,111,62,236,187,164,236,138,164,237,133,128,32,236,157,180,235,178,164,237,138,184,234,176,128,32,235,176,156,236,131,157,237,149,160,32,235,149,140,32,237,149,132,236,154,148,236,139,156,32,236,182,148,234,176,128,236,160,129,236,156,188,235,161,156,32,236,160,132,235,139,172,237,149,160,32,235,141,176,236,157,180,237,132,176,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,73,110,100,105,99,97,116,101,115,32,119,104,101,116,104,101,114,32,116,104,101,32,101,118,101,110,116,32,104,97,115,32,111,99,99,117,114,114,101,100,46,32,73,102,32,116,104,101,32,115,116,111,112,40,41,32,109,101,116,104,111,100,32,105,115,32,99,97,108,108,101,100,32,98,121,32,97,32,99,117,115,116,111,109,32,101,118,101,110,116,32,104,97,110,100,108,101,114,44,32,105,116,32,119,105,108,108,32,114,101,116,117,114,110,32,102,97,108,115,101,32,97,110,100,32,112,114,101,118,101,110,116,32,116,104,101,32,101,118,101,110,116,32,102,114,111,109,32,111,99,99,117,114,114,105,110,103,46,32,60,97,32,104,114,101,102,61,92,34,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,110,97,118,101,114,47,101,103,106,115,45,99,111,109,112,111,110,101,110,116,47,119,105,107,105,47,72,111,119,45,116,111,45,109,97,107,101,45,67,111,109,112,111,110,101,110,116,45,101,118,101,110,116,45,100,101,115,105,103,110,37,51,70,92,34,62,82,101,102,60,47,97,62,32,60,107,111,62,236,157,180,235,178,164,237,138,184,32,235,176,156,236,131,157,32,236,151,172,235,182,128,46,32,236,187,164,236,138,164,237,133,128,32,236,157,180,235,178,164,237,138,184,32,237,149,184,235,147,164,235,159,172,236,151,144,236,132,156,32,115,116,111,112,40,41,32,235,169,148,236,132,156,235,147,156,235,165,188,32,237,152,184,236,182,156,237,149,152,235,169,180,32,39,102,97,108,115,101,39,235,165,188,32,235,176,152,237,153,152,237,149,152,234,179,160,32,236,157,180,235,178,164,237,138,184,32,235,176,156,236,131,157,236,157,132,32,236,164,145,235,139,168,237,149,156,235,139,164,46,32,60,97,32,104,114,101,102,61,92,34,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,110,97,118,101,114,47,101,103,106,115,45,99,111,109,112,111,110,101,110,116,47,119,105,107,105,47,72,111,119,45,116,111,45,109,97,107,101,45,67,111,109,112,111,110,101,110,116,45,101,118,101,110,116,45,100,101,115,105,103,110,37,51,70,92,34,62,236,176,184,234,179,160,60,47,97,62,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,96,96,96,92,110,32,32,32,42,32,99,108,97,115,115,32,83,111,109,101,32,101,120,116,101,110,100,115,32,101,103,46,67,111,109,112,111,110,101,110,116,32,123,92,110,32,32,32,42,32,32,32,115,111,109,101,40,41,123,92,110,32,32,32,42,32,32,32,32,32,105,102,40,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,98,101,102,111,114,101,72,105,92,34,41,41,123,32,47,47,32,87,104,101,110,32,101,118,101,110,116,32,99,97,108,108,32,116,111,32,115,116,111,112,32,114,101,116,117,114,110,32,102,97,108,115,101,46,92,110,32,32,32,42,32,32,32,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,104,105,92,34,41,59,47,47,32,102,105,114,101,32,104,105,32,101,118,101,110,116,46,92,110,32,32,32,42,32,32,32,32,32,125,92,110,32,32,32,42,32,32,32,125,92,110,32,32,32,42,32,125,92,110,32,32,32,42,92,110,32,32,32,42,32,99,111,110,115,116,32,115,111,109,101,32,61,32,110,101,119,32,83,111,109,101,40,41,59,92,110,32,32,32,42,32,115,111,109,101,46,111,110,40,92,34,98,101,102,111,114,101,72,105,92,34,44,32,40,101,41,32,61,62,32,123,92,110,32,32,32,42,32,32,32,105,102,40,99,111,110,100,105,116,105,111,110,41,123,92,110,32,32,32,42,32,32,32,32,32,101,46,115,116,111,112,40,41,59,32,47,47,32,87,104,101,110,32,101,118,101,110,116,32,99,97,108,108,32,116,111,32,115,116,111,112,44,32,96,104,105,96,32,101,118,101,110,116,32,110,111,116,32,99,97,108,108,46,92,110,32,32,32,42,32,32,32,125,92,110,32,32,32,42,32,125,41,59,92,110,32,32,32,42,32,115,111,109,101,46,111,110,40,92,34,104,105,92,34,44,32,40,101,41,32,61,62,32,123,92,110,32,32,32,42,32,32,32,47,47,32,96,99,117,114,114,101,110,116,84,97,114,103,101,116,96,32,105,115,32,99,111,109,112,111,110,101,110,116,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,42,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,115,111,109,101,32,61,61,61,32,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,59,32,47,47,32,116,114,117,101,92,110,32,32,32,42,32,125,41,59,92,110,32,32,32,42,32,47,47,32,73,102,32,121,111,117,32,119,97,110,116,32,116,111,32,109,111,114,101,32,107,110,111,119,32,101,118,101,110,116,32,100,101,115,105,103,110,46,32,89,111,117,32,99,97,110,32,115,101,101,32,97,114,116,105,99,108,101,46,92,110,32,32,32,42,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,110,97,118,101,114,47,101,103,106,115,45,99,111,109,112,111,110,101,110,116,47,119,105,107,105,47,72,111,119,45,116,111,45,109,97,107,101,45,67,111,109,112,111,110,101,110,116,45,101,118,101,110,116,45,100,101,115,105,103,110,37,51,70,92,110,32,32,32,42,32,96,96,96,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,67,111,109,112,111,110,101,110,116,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,116,114,105,103,103,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,78,97,109,101,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,112,97,114,97,109,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,95,105,32,61,32,49,59,32,95,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,95,105,43,43,41,32,123,92,110,32,32,32,32,32,32,112,97,114,97,109,115,91,95,105,32,45,32,49,93,32,61,32,97,114,103,117,109,101,110,116,115,91,95,105,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,76,105,115,116,32,61,32,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,91,101,118,101,110,116,78,97,109,101,93,32,124,124,32,91,93,59,92,110,32,32,32,32,118,97,114,32,104,97,115,72,97,110,100,108,101,114,76,105,115,116,32,61,32,104,97,110,100,108,101,114,76,105,115,116,46,108,101,110,103,116,104,32,62,32,48,59,92,110,92,110,32,32,32,32,105,102,32,40,33,104,97,115,72,97,110,100,108,101,114,76,105,115,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,99,117,115,116,111,109,69,118,101,110,116,32,61,32,112,97,114,97,109,115,91,48,93,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,114,101,115,116,80,97,114,97,109,115,32,61,32,112,97,114,97,109,115,46,115,108,105,99,101,40,49,41,59,32,47,47,32,73,102,32,100,101,116,97,99,104,32,109,101,116,104,111,100,32,99,97,108,108,32,105,110,32,104,97,110,100,108,101,114,32,105,110,32,102,105,114,115,116,32,116,105,109,101,32,116,104,101,110,32,104,97,110,100,108,101,114,32,108,105,115,116,32,99,97,108,108,115,46,92,110,92,110,32,32,32,32,104,97,110,100,108,101,114,76,105,115,116,32,61,32,104,97,110,100,108,101,114,76,105,115,116,46,99,111,110,99,97,116,40,41,59,92,110,32,32,32,32,118,97,114,32,105,115,67,97,110,99,101,108,101,100,32,61,32,102,97,108,115,101,59,32,47,47,32,84,104,105,115,32,115,104,111,117,108,100,32,98,101,32,100,111,110,101,32,108,105,107,101,32,116,104,105,115,32,116,111,32,112,97,115,115,32,112,114,101,118,105,111,117,115,32,116,101,115,116,115,92,110,92,110,32,32,32,32,99,117,115,116,111,109,69,118,101,110,116,46,101,118,101,110,116,84,121,112,101,32,61,32,101,118,101,110,116,78,97,109,101,59,92,110,92,110,32,32,32,32,99,117,115,116,111,109,69,118,101,110,116,46,115,116,111,112,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,105,115,67,97,110,99,101,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,99,117,115,116,111,109,69,118,101,110,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,32,61,32,116,104,105,115,59,92,110,32,32,32,32,118,97,114,32,97,114,103,32,61,32,91,99,117,115,116,111,109,69,118,101,110,116,93,59,92,110,92,110,32,32,32,32,105,102,32,40,114,101,115,116,80,97,114,97,109,115,46,108,101,110,103,116,104,32,62,61,32,49,41,32,123,92,110,32,32,32,32,32,32,97,114,103,32,61,32,97,114,103,46,99,111,110,99,97,116,40,114,101,115,116,80,97,114,97,109,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,104,97,110,100,108,101,114,76,105,115,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,46,97,112,112,108,121,40,95,116,104,105,115,44,32,97,114,103,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,33,105,115,67,97,110,99,101,108,101,100,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,69,120,101,99,117,116,101,100,32,101,118,101,110,116,32,106,117,115,116,32,111,110,101,32,116,105,109,101,46,92,110,32,32,32,42,32,64,107,111,32,236,157,180,235,178,164,237,138,184,234,176,128,32,237,149,156,235,178,136,235,167,140,32,236,139,164,237,150,137,235,144,156,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,101,118,101,110,116,78,97,109,101,32,84,104,101,32,110,97,109,101,32,111,102,32,116,104,101,32,101,118,101,110,116,32,116,111,32,98,101,32,97,116,116,97,99,104,101,100,32,60,107,111,62,235,147,177,235,161,157,237,149,160,32,236,157,180,235,178,164,237,138,184,236,157,152,32,236,157,180,235,166,132,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,104,97,110,100,108,101,114,84,111,65,116,116,97,99,104,32,84,104,101,32,104,97,110,100,108,101,114,32,102,117,110,99,116,105,111,110,32,111,102,32,116,104,101,32,101,118,101,110,116,32,116,111,32,98,101,32,97,116,116,97,99,104,101,100,32,60,107,111,62,235,147,177,235,161,157,237,149,160,32,236,157,180,235,178,164,237,138,184,236,157,152,32,237,149,184,235,147,164,235,159,172,32,237,149,168,236,136,152,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,99,111,109,112,111,110,101,110,116,32,105,116,115,101,108,102,60,107,111,62,236,187,180,237,143,172,235,132,140,237,138,184,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,96,96,96,92,110,32,32,32,42,32,99,108,97,115,115,32,83,111,109,101,32,101,120,116,101,110,100,115,32,101,103,46,67,111,109,112,111,110,101,110,116,32,123,92,110,32,32,32,42,32,104,105,40,41,32,123,92,110,32,32,32,42,32,32,32,97,108,101,114,116,40,92,34,104,105,92,34,41,59,92,110,32,32,32,42,32,125,92,110,32,32,32,42,32,116,104,105,110,103,40,41,32,123,92,110,32,32,32,42,32,32,32,116,104,105,115,46,111,110,99,101,40,92,34,104,105,92,34,44,32,116,104,105,115,46,104,105,41,59,92,110,32,32,32,42,32,125,92,110,32,32,32,42,92,110,32,32,32,42,32,118,97,114,32,115,111,109,101,32,61,32,110,101,119,32,83,111,109,101,40,41,59,92,110,32,32,32,42,32,115,111,109,101,46,116,104,105,110,103,40,41,59,92,110,32,32,32,42,32,115,111,109,101,46,116,114,105,103,103,101,114,40,92,34,104,105,92,34,41,59,92,110,32,32,32,42,32,47,47,32,102,105,114,101,32,97,108,101,114,116,40,92,34,104,105,92,34,41,59,92,110,32,32,32,42,32,115,111,109,101,46,116,114,105,103,103,101,114,40,92,34,104,105,92,34,41,59,92,110,32,32,32,42,32,47,47,32,78,111,116,104,105,110,103,32,104,97,112,112,101,110,115,92,110,32,32,32,42,32,96,96,96,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,111,110,99,101,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,84,111,65,116,116,97,99,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,101,118,101,110,116,78,97,109,101,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,32,38,38,32,105,115,85,110,100,101,102,105,110,101,100,40,104,97,110,100,108,101,114,84,111,65,116,116,97,99,104,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,72,97,115,104,32,61,32,101,118,101,110,116,78,97,109,101,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,101,118,101,110,116,72,97,115,104,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,111,110,99,101,40,107,101,121,44,32,101,118,101,110,116,72,97,115,104,91,107,101,121,93,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,111,102,32,101,118,101,110,116,78,97,109,101,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,32,38,38,32,116,121,112,101,111,102,32,104,97,110,100,108,101,114,84,111,65,116,116,97,99,104,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,105,115,116,101,110,101,114,95,49,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,95,105,32,61,32,48,59,32,95,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,95,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,103,115,91,95,105,93,32,61,32,97,114,103,117,109,101,110,116,115,91,95,105,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,84,111,65,116,116,97,99,104,46,97,112,112,108,121,40,95,116,104,105,115,44,32,97,114,103,115,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,111,102,102,40,101,118,101,110,116,78,97,109,101,44,32,108,105,115,116,101,110,101,114,95,49,41,59,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,111,110,40,101,118,101,110,116,78,97,109,101,44,32,108,105,115,116,101,110,101,114,95,49,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,104,101,99,107,115,32,119,104,101,116,104,101,114,32,97,110,32,101,118,101,110,116,32,104,97,115,32,98,101,101,110,32,97,116,116,97,99,104,101,100,32,116,111,32,97,32,99,111,109,112,111,110,101,110,116,46,92,110,32,32,32,42,32,64,107,111,32,236,187,180,237,143,172,235,132,140,237,138,184,236,151,144,32,236,157,180,235,178,164,237,138,184,234,176,128,32,235,147,177,235,161,157,235,144,144,235,138,148,236,167,128,32,237,153,149,236,157,184,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,101,118,101,110,116,78,97,109,101,32,84,104,101,32,110,97,109,101,32,111,102,32,116,104,101,32,101,118,101,110,116,32,116,111,32,98,101,32,97,116,116,97,99,104,101,100,32,60,107,111,62,235,147,177,235,161,157,32,236,151,172,235,182,128,235,165,188,32,237,153,149,236,157,184,237,149,160,32,236,157,180,235,178,164,237,138,184,236,157,152,32,236,157,180,235,166,132,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,73,110,100,105,99,97,116,101,115,32,119,104,101,116,104,101,114,32,116,104,101,32,101,118,101,110,116,32,105,115,32,97,116,116,97,99,104,101,100,46,32,60,107,111,62,236,157,180,235,178,164,237,138,184,32,235,147,177,235,161,157,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,96,96,96,92,110,32,32,32,42,32,99,108,97,115,115,32,83,111,109,101,32,101,120,116,101,110,100,115,32,101,103,46,67,111,109,112,111,110,101,110,116,32,123,92,110,32,32,32,42,32,32,32,115,111,109,101,40,41,32,123,92,110,32,32,32,42,32,32,32,32,32,116,104,105,115,46,104,97,115,79,110,40,92,34,104,105,92,34,41,59,47,47,32,99,104,101,99,107,32,104,105,32,101,118,101,110,116,46,92,110,32,32,32,42,32,32,32,125,92,110,32,32,32,42,32,125,92,110,32,32,32,42,32,96,96,96,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,104,97,115,79,110,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,78,97,109,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,33,33,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,91,101,118,101,110,116,78,97,109,101,93,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,116,116,97,99,104,101,115,32,97,110,32,101,118,101,110,116,32,116,111,32,97,32,99,111,109,112,111,110,101,110,116,46,92,110,32,32,32,42,32,64,107,111,32,236,187,180,237,143,172,235,132,140,237,138,184,236,151,144,32,236,157,180,235,178,164,237,138,184,235,165,188,32,235,147,177,235,161,157,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,101,118,101,110,116,78,97,109,101,32,84,104,101,32,110,97,109,101,32,111,102,32,116,104,101,32,101,118,101,110,116,32,116,111,32,98,101,32,97,116,116,97,99,104,101,100,32,60,107,111,62,235,147,177,235,161,157,237,149,160,32,236,157,180,235,178,164,237,138,184,236,157,152,32,236,157,180,235,166,132,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,104,97,110,100,108,101,114,84,111,65,116,116,97,99,104,32,84,104,101,32,104,97,110,100,108,101,114,32,102,117,110,99,116,105,111,110,32,111,102,32,116,104,101,32,101,118,101,110,116,32,116,111,32,98,101,32,97,116,116,97,99,104,101,100,32,60,107,111,62,235,147,177,235,161,157,237,149,160,32,236,157,180,235,178,164,237,138,184,236,157,152,32,237,149,184,235,147,164,235,159,172,32,237,149,168,236,136,152,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,99,111,109,112,111,110,101,110,116,32,105,116,115,101,108,102,60,107,111,62,236,187,180,237,143,172,235,132,140,237,138,184,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,96,96,96,92,110,32,32,32,42,32,99,108,97,115,115,32,83,111,109,101,32,101,120,116,101,110,100,115,32,101,103,46,67,111,109,112,111,110,101,110,116,32,123,92,110,32,32,32,42,32,32,32,104,105,40,41,32,123,92,110,32,32,32,42,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,92,34,104,105,92,34,41,59,92,110,32,32,32,42,32,32,32,125,92,110,32,32,32,42,32,32,32,115,111,109,101,40,41,32,123,92,110,32,32,32,42,32,32,32,32,32,116,104,105,115,46,111,110,40,92,34,104,105,92,34,44,116,104,105,115,46,104,105,41,59,32,47,47,97,116,116,97,99,104,32,101,118,101,110,116,92,110,32,32,32,42,32,32,32,125,92,110,32,32,32,42,32,125,92,110,32,32,32,42,32,96,96,96,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,111,110,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,84,111,65,116,116,97,99,104,41,32,123,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,101,118,101,110,116,78,97,109,101,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,32,38,38,32,105,115,85,110,100,101,102,105,110,101,100,40,104,97,110,100,108,101,114,84,111,65,116,116,97,99,104,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,72,97,115,104,32,61,32,101,118,101,110,116,78,97,109,101,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,110,97,109,101,32,105,110,32,101,118,101,110,116,72,97,115,104,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,111,110,40,110,97,109,101,44,32,101,118,101,110,116,72,97,115,104,91,110,97,109,101,93,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,111,102,32,101,118,101,110,116,78,97,109,101,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,32,38,38,32,116,121,112,101,111,102,32,104,97,110,100,108,101,114,84,111,65,116,116,97,99,104,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,76,105,115,116,32,61,32,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,91,101,118,101,110,116,78,97,109,101,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,105,110,101,100,40,104,97,110,100,108,101,114,76,105,115,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,91,101,118,101,110,116,78,97,109,101,93,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,76,105,115,116,32,61,32,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,91,101,118,101,110,116,78,97,109,101,93,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,76,105,115,116,46,112,117,115,104,40,104,97,110,100,108,101,114,84,111,65,116,116,97,99,104,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,68,101,116,97,99,104,101,115,32,97,110,32,101,118,101,110,116,32,102,114,111,109,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,92,110,32,32,32,42,32,64,107,111,32,236,187,180,237,143,172,235,132,140,237,138,184,236,151,144,32,235,147,177,235,161,157,235,144,156,32,236,157,180,235,178,164,237,138,184,235,165,188,32,237,149,180,236,160,156,237,149,156,235,139,164,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,101,118,101,110,116,78,97,109,101,32,84,104,101,32,110,97,109,101,32,111,102,32,116,104,101,32,101,118,101,110,116,32,116,111,32,98,101,32,100,101,116,97,99,104,101,100,32,60,107,111,62,237,149,180,236,160,156,237,149,160,32,236,157,180,235,178,164,237,138,184,236,157,152,32,236,157,180,235,166,132,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,104,97,110,100,108,101,114,84,111,68,101,116,97,99,104,32,84,104,101,32,104,97,110,100,108,101,114,32,102,117,110,99,116,105,111,110,32,111,102,32,116,104,101,32,101,118,101,110,116,32,116,111,32,98,101,32,100,101,116,97,99,104,101,100,32,60,107,111,62,237,149,180,236,160,156,237,149,160,32,236,157,180,235,178,164,237,138,184,236,157,152,32,237,149,184,235,147,164,235,159,172,32,237,149,168,236,136,152,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,99,111,109,112,111,110,101,110,116,32,105,116,115,101,108,102,32,60,107,111,62,236,187,180,237,143,172,235,132,140,237,138,184,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,96,96,96,92,110,32,32,32,42,32,99,108,97,115,115,32,83,111,109,101,32,101,120,116,101,110,100,115,32,101,103,46,67,111,109,112,111,110,101,110,116,32,123,92,110,32,32,32,42,32,32,32,104,105,40,41,32,123,92,110,32,32,32,42,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,92,34,104,105,92,34,41,59,92,110,32,32,32,42,32,32,32,125,92,110,32,32,32,42,32,32,32,115,111,109,101,40,41,32,123,92,110,32,32,32,42,32,32,32,32,32,116,104,105,115,46,111,102,102,40,92,34,104,105,92,34,44,116,104,105,115,46,104,105,41,59,32,47,47,100,101,116,97,99,104,32,101,118,101,110,116,92,110,32,32,32,42,32,32,32,125,92,110,32,32,32,42,32,125,92,110,32,32,32,42,32,96,96,96,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,111,102,102,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,84,111,68,101,116,97,99,104,41,32,123,92,110,32,32,32,32,118,97,114,32,101,95,49,44,32,95,97,59,32,47,47,32,68,101,116,97,99,104,32,97,108,108,32,101,118,101,110,116,32,104,97,110,100,108,101,114,115,46,92,110,92,110,92,110,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,105,110,101,100,40,101,118,101,110,116,78,97,109,101,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,32,61,32,123,125,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,32,47,47,32,68,101,116,97,99,104,32,97,108,108,32,104,97,110,100,108,101,114,115,32,102,111,114,32,101,118,101,110,116,110,97,109,101,32,111,114,32,100,101,116,97,99,104,32,101,118,101,110,116,32,104,97,110,100,108,101,114,115,32,98,121,32,111,98,106,101,99,116,46,92,110,92,110,92,110,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,105,110,101,100,40,104,97,110,100,108,101,114,84,111,68,101,116,97,99,104,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,101,118,101,110,116,78,97,109,101,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,91,101,118,101,110,116,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,72,97,115,104,32,61,32,101,118,101,110,116,78,97,109,101,59,92,110,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,110,97,109,101,32,105,110,32,101,118,101,110,116,72,97,115,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,111,102,102,40,110,97,109,101,44,32,101,118,101,110,116,72,97,115,104,91,110,97,109,101,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,47,47,32,68,101,116,97,99,104,32,115,105,110,103,108,101,32,101,118,101,110,116,32,104,97,110,100,108,101,114,92,110,92,110,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,76,105,115,116,32,61,32,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,91,101,118,101,110,116,78,97,109,101,93,59,92,110,92,110,32,32,32,32,105,102,32,40,104,97,110,100,108,101,114,76,105,115,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,100,120,32,61,32,48,59,92,110,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,104,97,110,100,108,101,114,76,105,115,116,95,49,32,61,32,95,95,118,97,108,117,101,115,40,104,97,110,100,108,101,114,76,105,115,116,41,44,32,104,97,110,100,108,101,114,76,105,115,116,95,49,95,49,32,61,32,104,97,110,100,108,101,114,76,105,115,116,95,49,46,110,101,120,116,40,41,59,32,33,104,97,110,100,108,101,114,76,105,115,116,95,49,95,49,46,100,111,110,101,59,32,104,97,110,100,108,101,114,76,105,115,116,95,49,95,49,32,61,32,104,97,110,100,108,101,114,76,105,115,116,95,49,46,110,101,120,116,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,70,117,110,99,116,105,111,110,32,61,32,104,97,110,100,108,101,114,76,105,115,116,95,49,95,49,46,118,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,110,100,108,101,114,70,117,110,99,116,105,111,110,32,61,61,61,32,104,97,110,100,108,101,114,84,111,68,101,116,97,99,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,76,105,115,116,46,115,112,108,105,99,101,40,105,100,120,44,32,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,100,120,43,43,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,95,49,95,49,41,32,123,92,110,32,32,32,32,32,32,32,32,101,95,49,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,114,114,111,114,58,32,101,95,49,95,49,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,110,100,108,101,114,76,105,115,116,95,49,95,49,32,38,38,32,33,104,97,110,100,108,101,114,76,105,115,116,95,49,95,49,46,100,111,110,101,32,38,38,32,40,95,97,32,61,32,104,97,110,100,108,101,114,76,105,115,116,95,49,46,114,101,116,117,114,110,41,41,32,95,97,46,99,97,108,108,40,104,97,110,100,108,101,114,76,105,115,116,95,49,41,59,92,110,32,32,32,32,32,32,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,95,49,41,32,116,104,114,111,119,32,101,95,49,46,101,114,114,111,114,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,86,101,114,115,105,111,110,32,105,110,102,111,32,115,116,114,105,110,103,92,110,32,32,32,42,32,64,107,111,32,235,178,132,236,160,132,236,160,149,235,179,180,32,235,172,184,236,158,144,236,151,180,92,110,32,32,32,42,32,64,110,97,109,101,32,86,69,82,83,73,79,78,92,110,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,101,103,46,67,111,109,112,111,110,101,110,116,46,86,69,82,83,73,79,78,59,32,32,47,47,32,101,120,41,32,50,46,48,46,48,92,110,32,32,32,42,32,64,109,101,109,98,101,114,111,102,32,101,103,46,67,111,109,112,111,110,101,110,116,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,67,111,109,112,111,110,101,110,116,46,86,69,82,83,73,79,78,32,61,32,92,34,50,46,50,46,50,92,34,59,92,110,32,32,114,101,116,117,114,110,32,67,111,109,112,111,110,101,110,116,59,92,110,125,40,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,67,111,109,112,111,110,101,110,116,41,59,92,110,47,47,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,99,111,109,112,111,110,101,110,116,46,101,115,109,46,106,115,46,109,97,112,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,99,111,109,112,111,110,101,110,116,47,100,105,115,116,47,99,111,109,112,111,110,101,110,116,46,101,115,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,105,109,114,101,97,100,121,47,100,105,115,116,47,105,109,114,101,97,100,121,46,101,115,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,105,109,114,101,97,100,121,47,100,105,115,116,47,105,109,114,101,97,100,121,46,101,115,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,109,97,103,101,76,111,97,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,109,97,103,101,76,111,97,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,76,111,97,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,76,111,97,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,97,110,97,103,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,109,82,101,97,100,121,77,97,110,97,103,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,105,100,101,111,76,111,97,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,86,105,100,101,111,76,111,97,100,101,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,103,106,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,101,103,106,115,47,99,111,109,112,111,110,101,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,99,111,109,112,111,110,101,110,116,47,100,105,115,116,47,99,111,109,112,111,110,101,110,116,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,50,48,45,112,114,101,115,101,110,116,32,78,65,86,69,82,32,67,111,114,112,46,92,110,110,97,109,101,58,32,64,101,103,106,115,47,105,109,114,101,97,100,121,92,110,108,105,99,101,110,115,101,58,32,77,73,84,92,110,97,117,116,104,111,114,58,32,78,65,86,69,82,32,67,111,114,112,46,92,110,114,101,112,111,115,105,116,111,114,121,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,110,97,118,101,114,47,101,103,106,115,45,105,109,114,101,97,100,121,92,110,118,101,114,115,105,111,110,58,32,49,46,49,46,51,92,110,42,47,92,110,92,110,92,110,47,42,33,32,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,92,114,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,77,105,99,114,111,115,111,102,116,32,67,111,114,112,111,114,97,116,105,111,110,46,92,114,92,110,92,114,92,110,80,101,114,109,105,115,115,105,111,110,32,116,111,32,117,115,101,44,32,99,111,112,121,44,32,109,111,100,105,102,121,44,32,97,110,100,47,111,114,32,100,105,115,116,114,105,98,117,116,101,32,116,104,105,115,32,115,111,102,116,119,97,114,101,32,102,111,114,32,97,110,121,92,114,92,110,112,117,114,112,111,115,101,32,119,105,116,104,32,111,114,32,119,105,116,104,111,117,116,32,102,101,101,32,105,115,32,104,101,114,101,98,121,32,103,114,97,110,116,101,100,46,92,114,92,110,92,114,92,110,84,72,69,32,83,79,70,84,87,65,82,69,32,73,83,32,80,82,79,86,73,68,69,68,32,92,34,65,83,32,73,83,92,34,32,65,78,68,32,84,72,69,32,65,85,84,72,79,82,32,68,73,83,67,76,65,73,77,83,32,65,76,76,32,87,65,82,82,65,78,84,73,69,83,32,87,73,84,72,92,114,92,110,82,69,71,65,82,68,32,84,79,32,84,72,73,83,32,83,79,70,84,87,65,82,69,32,73,78,67,76,85,68,73,78,71,32,65,76,76,32,73,77,80,76,73,69,68,32,87,65,82,82,65,78,84,73,69,83,32,79,70,32,77,69,82,67,72,65,78,84,65,66,73,76,73,84,89,92,114,92,110,65,78,68,32,70,73,84,78,69,83,83,46,32,73,78,32,78,79,32,69,86,69,78,84,32,83,72,65,76,76,32,84,72,69,32,65,85,84,72,79,82,32,66,69,32,76,73,65,66,76,69,32,70,79,82,32,65,78,89,32,83,80,69,67,73,65,76,44,32,68,73,82,69,67,84,44,92,114,92,110,73,78,68,73,82,69,67,84,44,32,79,82,32,67,79,78,83,69,81,85,69,78,84,73,65,76,32,68,65,77,65,71,69,83,32,79,82,32,65,78,89,32,68,65,77,65,71,69,83,32,87,72,65,84,83,79,69,86,69,82,32,82,69,83,85,76,84,73,78,71,32,70,82,79,77,92,114,92,110,76,79,83,83,32,79,70,32,85,83,69,44,32,68,65,84,65,32,79,82,32,80,82,79,70,73,84,83,44,32,87,72,69,84,72,69,82,32,73,78,32,65,78,32,65,67,84,73,79,78,32,79,70,32,67,79,78,84,82,65,67,84,44,32,78,69,71,76,73,71,69,78,67,69,32,79,82,92,114,92,110,79,84,72,69,82,32,84,79,82,84,73,79,85,83,32,65,67,84,73,79,78,44,32,65,82,73,83,73,78,71,32,79,85,84,32,79,70,32,79,82,32,73,78,32,67,79,78,78,69,67,84,73,79,78,32,87,73,84,72,32,84,72,69,32,85,83,69,32,79,82,92,114,92,110,80,69,82,70,79,82,77,65,78,67,69,32,79,70,32,84,72,73,83,32,83,79,70,84,87,65,82,69,46,92,114,92,110,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,32,42,47,92,110,92,110,47,42,32,103,108,111,98,97,108,32,82,101,102,108,101,99,116,44,32,80,114,111,109,105,115,101,32,42,47,92,110,118,97,114,32,101,120,116,101,110,100,83,116,97,116,105,99,115,32,61,32,102,117,110,99,116,105,111,110,32,40,100,44,32,98,41,32,123,92,110,32,32,101,120,116,101,110,100,83,116,97,116,105,99,115,32,61,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,32,124,124,32,123,92,110,32,32,32,32,95,95,112,114,111,116,111,95,95,58,32,91,93,92,110,32,32,125,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,32,38,38,32,102,117,110,99,116,105,111,110,32,40,100,44,32,98,41,32,123,92,110,32,32,32,32,100,46,95,95,112,114,111,116,111,95,95,32,61,32,98,59,92,110,32,32,125,32,124,124,32,102,117,110,99,116,105,111,110,32,40,100,44,32,98,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,112,32,105,110,32,98,41,32,105,102,32,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,98,44,32,112,41,41,32,100,91,112,93,32,61,32,98,91,112,93,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,101,120,116,101,110,100,83,116,97,116,105,99,115,40,100,44,32,98,41,59,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,95,95,101,120,116,101,110,100,115,40,100,44,32,98,41,32,123,92,110,32,32,101,120,116,101,110,100,83,116,97,116,105,99,115,40,100,44,32,98,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,95,95,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,100,59,92,110,32,32,125,92,110,92,110,32,32,100,46,112,114,111,116,111,116,121,112,101,32,61,32,98,32,61,61,61,32,110,117,108,108,32,63,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,98,41,32,58,32,40,95,95,46,112,114,111,116,111,116,121,112,101,32,61,32,98,46,112,114,111,116,111,116,121,112,101,44,32,110,101,119,32,95,95,40,41,41,59,92,110,125,92,110,118,97,114,32,95,95,97,115,115,105,103,110,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,95,95,97,115,115,105,103,110,32,61,32,79,98,106,101,99,116,46,97,115,115,105,103,110,32,124,124,32,102,117,110,99,116,105,111,110,32,95,95,97,115,115,105,103,110,40,116,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,115,44,32,105,32,61,32,49,44,32,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,115,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,112,32,105,110,32,115,41,32,105,102,32,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,115,44,32,112,41,41,32,116,91,112,93,32,61,32,115,91,112,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,95,97,115,115,105,103,110,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,59,92,110,102,117,110,99,116,105,111,110,32,95,95,115,112,114,101,97,100,65,114,114,97,121,115,40,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,115,32,61,32,48,44,32,105,32,61,32,48,44,32,105,108,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,32,60,32,105,108,59,32,105,43,43,41,32,115,32,43,61,32,97,114,103,117,109,101,110,116,115,91,105,93,46,108,101,110,103,116,104,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,114,32,61,32,65,114,114,97,121,40,115,41,44,32,107,32,61,32,48,44,32,105,32,61,32,48,59,32,105,32,60,32,105,108,59,32,105,43,43,41,32,102,111,114,32,40,118,97,114,32,97,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,44,32,106,32,61,32,48,44,32,106,108,32,61,32,97,46,108,101,110,103,116,104,59,32,106,32,60,32,106,108,59,32,106,43,43,44,32,107,43,43,41,32,114,91,107,93,32,61,32,97,91,106,93,59,92,110,92,110,32,32,114,101,116,117,114,110,32,114,59,92,110,125,92,110,92,110,47,42,92,110,101,103,106,115,45,105,109,114,101,97,100,121,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,50,48,45,112,114,101,115,101,110,116,32,78,65,86,69,82,32,67,111,114,112,46,92,110,77,73,84,32,108,105,99,101,110,115,101,92,110,42,47,92,110,118,97,114,32,105,115,87,105,110,100,111,119,32,61,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,59,92,110,118,97,114,32,117,97,32,61,32,105,115,87,105,110,100,111,119,32,63,32,119,105,110,100,111,119,46,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,32,58,32,92,34,92,34,59,92,110,118,97,114,32,83,85,80,80,79,82,84,95,67,79,77,80,85,84,69,68,83,84,89,76,69,32,61,32,105,115,87,105,110,100,111,119,32,63,32,33,33,40,92,34,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,92,34,32,105,110,32,119,105,110,100,111,119,41,32,58,32,102,97,108,115,101,59,92,110,118,97,114,32,73,83,95,73,69,32,61,32,47,77,83,73,69,124,84,114,105,100,101,110,116,124,87,105,110,100,111,119,115,32,80,104,111,110,101,124,69,100,103,101,47,46,116,101,115,116,40,117,97,41,59,92,110,118,97,114,32,83,85,80,80,79,82,84,95,65,68,68,69,86,69,78,84,76,73,83,84,69,78,69,82,32,61,32,105,115,87,105,110,100,111,119,32,63,32,33,33,40,92,34,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,92,34,32,105,110,32,100,111,99,117,109,101,110,116,41,32,58,32,102,97,108,115,101,59,92,110,118,97,114,32,87,73,68,84,72,32,61,32,92,34,119,105,100,116,104,92,34,59,92,110,118,97,114,32,72,69,73,71,72,84,32,61,32,92,34,104,101,105,103,104,116,92,34,59,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,65,116,116,114,105,98,117,116,101,40,101,108,44,32,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,108,46,103,101,116,65,116,116,114,105,98,117,116,101,40,110,97,109,101,41,32,124,124,32,92,34,92,34,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,116,111,65,114,114,97,121,40,97,114,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,93,46,115,108,105,99,101,46,99,97,108,108,40,97,114,114,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,104,97,115,83,105,122,101,65,116,116,114,105,98,117,116,101,40,116,97,114,103,101,116,44,32,112,114,101,102,105,120,41,32,123,92,110,32,32,105,102,32,40,112,114,101,102,105,120,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,112,114,101,102,105,120,32,61,32,92,34,100,97,116,97,45,92,34,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,33,33,116,97,114,103,101,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,112,114,101,102,105,120,32,43,32,92,34,119,105,100,116,104,92,34,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,104,97,115,76,111,97,100,105,110,103,65,116,116,114,105,98,117,116,101,40,116,97,114,103,101,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,92,34,108,111,97,100,105,110,103,92,34,32,105,110,32,116,97,114,103,101,116,32,38,38,32,116,97,114,103,101,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,92,34,108,111,97,100,105,110,103,92,34,41,32,61,61,61,32,92,34,108,97,122,121,92,34,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,104,97,115,83,107,105,112,65,116,116,114,105,98,117,116,101,40,116,97,114,103,101,116,44,32,112,114,101,102,105,120,41,32,123,92,110,32,32,105,102,32,40,112,114,101,102,105,120,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,112,114,101,102,105,120,32,61,32,92,34,100,97,116,97,45,92,34,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,33,33,116,97,114,103,101,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,112,114,101,102,105,120,32,43,32,92,34,115,107,105,112,92,34,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,97,100,100,69,118,101,110,116,40,101,108,101,109,101,110,116,44,32,116,121,112,101,44,32,104,97,110,100,108,101,114,41,32,123,92,110,32,32,105,102,32,40,83,85,80,80,79,82,84,95,65,68,68,69,86,69,78,84,76,73,83,84,69,78,69,82,41,32,123,92,110,32,32,32,32,101,108,101,109,101,110,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,121,112,101,44,32,104,97,110,100,108,101,114,44,32,102,97,108,115,101,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,101,108,101,109,101,110,116,46,97,116,116,97,99,104,69,118,101,110,116,41,32,123,92,110,32,32,32,32,101,108,101,109,101,110,116,46,97,116,116,97,99,104,69,118,101,110,116,40,92,34,111,110,92,34,32,43,32,116,121,112,101,44,32,104,97,110,100,108,101,114,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,101,108,101,109,101,110,116,91,92,34,111,110,92,34,32,43,32,116,121,112,101,93,32,61,32,104,97,110,100,108,101,114,59,92,110,32,32,125,92,110,125,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,69,118,101,110,116,40,101,108,101,109,101,110,116,44,32,116,121,112,101,44,32,104,97,110,100,108,101,114,41,32,123,92,110,32,32,105,102,32,40,101,108,101,109,101,110,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,41,32,123,92,110,32,32,32,32,101,108,101,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,116,121,112,101,44,32,104,97,110,100,108,101,114,44,32,102,97,108,115,101,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,101,108,101,109,101,110,116,46,100,101,116,97,99,104,69,118,101,110,116,41,32,123,92,110,32,32,32,32,101,108,101,109,101,110,116,46,100,101,116,97,99,104,69,118,101,110,116,40,92,34,111,110,92,34,32,43,32,116,121,112,101,44,32,104,97,110,100,108,101,114,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,101,108,101,109,101,110,116,91,92,34,111,110,92,34,32,43,32,116,121,112,101,93,32,61,32,110,117,108,108,59,92,110,32,32,125,92,110,125,92,110,102,117,110,99,116,105,111,110,32,105,110,110,101,114,87,105,100,116,104,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,101,116,83,105,122,101,40,101,108,44,32,92,34,87,105,100,116,104,92,34,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,105,110,110,101,114,72,101,105,103,104,116,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,101,116,83,105,122,101,40,101,108,44,32,92,34,72,101,105,103,104,116,92,34,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,103,101,116,83,116,121,108,101,115,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,83,85,80,80,79,82,84,95,67,79,77,80,85,84,69,68,83,84,89,76,69,32,63,32,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,108,41,32,58,32,101,108,46,99,117,114,114,101,110,116,83,116,121,108,101,41,32,124,124,32,123,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,83,105,122,101,40,101,108,44,32,110,97,109,101,41,32,123,92,110,32,32,118,97,114,32,115,105,122,101,32,61,32,101,108,91,92,34,99,108,105,101,110,116,92,34,32,43,32,110,97,109,101,93,32,124,124,32,101,108,91,92,34,111,102,102,115,101,116,92,34,32,43,32,110,97,109,101,93,59,92,110,32,32,114,101,116,117,114,110,32,112,97,114,115,101,70,108,111,97,116,40,115,105,122,101,32,124,124,32,103,101,116,83,116,121,108,101,115,40,101,108,41,91,110,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,32,124,124,32,48,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,67,111,110,116,101,110,116,69,108,101,109,101,110,116,115,40,101,108,101,109,101,110,116,44,32,116,97,103,115,44,32,112,114,101,102,105,120,41,32,123,92,110,32,32,118,97,114,32,115,107,105,112,69,108,101,109,101,110,116,115,32,61,32,116,111,65,114,114,97,121,40,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,95,95,115,112,114,101,97,100,65,114,114,97,121,115,40,91,92,34,91,92,34,32,43,32,112,114,101,102,105,120,32,43,32,92,34,115,107,105,112,93,32,91,92,34,32,43,32,112,114,101,102,105,120,32,43,32,92,34,119,105,100,116,104,93,92,34,93,44,32,116,97,103,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,116,97,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,92,34,91,92,34,32,43,32,112,114,101,102,105,120,32,43,32,92,34,115,107,105,112,93,32,92,34,32,43,32,116,97,103,44,32,116,97,103,32,43,32,92,34,91,92,34,32,43,32,112,114,101,102,105,120,32,43,32,92,34,115,107,105,112,93,92,34,44,32,92,34,91,92,34,32,43,32,112,114,101,102,105,120,32,43,32,92,34,119,105,100,116,104,93,32,92,34,32,43,32,116,97,103,93,46,106,111,105,110,40,92,34,44,32,92,34,41,59,92,110,32,32,125,41,41,46,106,111,105,110,40,92,34,44,32,92,34,41,41,41,59,92,110,32,32,114,101,116,117,114,110,32,116,111,65,114,114,97,121,40,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,92,34,91,92,34,32,43,32,112,114,101,102,105,120,32,43,32,92,34,119,105,100,116,104,93,44,32,92,34,32,43,32,116,97,103,115,46,106,111,105,110,40,92,34,44,32,92,34,41,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,107,105,112,69,108,101,109,101,110,116,115,46,105,110,100,101,120,79,102,40,101,108,41,32,61,61,61,32,45,49,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,47,42,92,110,101,103,106,115,45,105,109,114,101,97,100,121,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,50,48,45,112,114,101,115,101,110,116,32,78,65,86,69,82,32,67,111,114,112,46,92,110,77,73,84,32,108,105,99,101,110,115,101,92,110,42,47,92,110,118,97,114,32,101,108,101,109,101,110,116,115,32,61,32,91,93,59,92,110,102,117,110,99,116,105,111,110,32,97,100,100,65,117,116,111,83,105,122,101,114,40,101,108,101,109,101,110,116,44,32,112,114,101,102,105,120,41,32,123,92,110,32,32,33,101,108,101,109,101,110,116,115,46,108,101,110,103,116,104,32,38,38,32,97,100,100,69,118,101,110,116,40,119,105,110,100,111,119,44,32,92,34,114,101,115,105,122,101,92,34,44,32,114,101,115,105,122,101,65,108,108,65,117,116,111,83,105,122,101,114,115,41,59,92,110,32,32,101,108,101,109,101,110,116,46,95,95,80,82,69,70,73,88,95,95,32,61,32,112,114,101,102,105,120,59,92,110,32,32,101,108,101,109,101,110,116,115,46,112,117,115,104,40,101,108,101,109,101,110,116,41,59,92,110,32,32,114,101,115,105,122,101,40,101,108,101,109,101,110,116,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,65,117,116,111,83,105,122,101,114,40,101,108,101,109,101,110,116,44,32,112,114,101,102,105,120,41,32,123,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,101,108,101,109,101,110,116,115,46,105,110,100,101,120,79,102,40,101,108,101,109,101,110,116,41,59,92,110,92,110,32,32,105,102,32,40,105,110,100,101,120,32,60,32,48,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,102,105,120,101,100,32,61,32,103,101,116,65,116,116,114,105,98,117,116,101,40,101,108,101,109,101,110,116,44,32,112,114,101,102,105,120,32,43,32,92,34,102,105,120,101,100,92,34,41,59,92,110,32,32,100,101,108,101,116,101,32,101,108,101,109,101,110,116,46,95,95,80,82,69,70,73,88,95,95,59,92,110,32,32,101,108,101,109,101,110,116,46,115,116,121,108,101,91,102,105,120,101,100,32,61,61,61,32,72,69,73,71,72,84,32,63,32,87,73,68,84,72,32,58,32,72,69,73,71,72,84,93,32,61,32,92,34,92,34,59,92,110,32,32,101,108,101,109,101,110,116,115,46,115,112,108,105,99,101,40,105,110,100,101,120,44,32,49,41,59,92,110,32,32,33,101,108,101,109,101,110,116,115,46,108,101,110,103,116,104,32,38,38,32,114,101,109,111,118,101,69,118,101,110,116,40,119,105,110,100,111,119,44,32,92,34,114,101,115,105,122,101,92,34,44,32,114,101,115,105,122,101,65,108,108,65,117,116,111,83,105,122,101,114,115,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,105,122,101,40,101,108,101,109,101,110,116,44,32,112,114,101,102,105,120,41,32,123,92,110,32,32,105,102,32,40,112,114,101,102,105,120,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,112,114,101,102,105,120,32,61,32,92,34,100,97,116,97,45,92,34,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,101,108,101,109,101,110,116,80,114,101,102,105,120,32,61,32,101,108,101,109,101,110,116,46,95,95,80,82,69,70,73,88,95,95,32,124,124,32,112,114,101,102,105,120,59,92,110,32,32,118,97,114,32,100,97,116,97,87,105,100,116,104,32,61,32,112,97,114,115,101,73,110,116,40,103,101,116,65,116,116,114,105,98,117,116,101,40,101,108,101,109,101,110,116,44,32,92,34,92,34,32,43,32,101,108,101,109,101,110,116,80,114,101,102,105,120,32,43,32,87,73,68,84,72,41,44,32,49,48,41,32,124,124,32,48,59,92,110,32,32,118,97,114,32,100,97,116,97,72,101,105,103,104,116,32,61,32,112,97,114,115,101,73,110,116,40,103,101,116,65,116,116,114,105,98,117,116,101,40,101,108,101,109,101,110,116,44,32,92,34,92,34,32,43,32,101,108,101,109,101,110,116,80,114,101,102,105,120,32,43,32,72,69,73,71,72,84,41,44,32,49,48,41,32,124,124,32,48,59,92,110,32,32,118,97,114,32,102,105,120,101,100,32,61,32,103,101,116,65,116,116,114,105,98,117,116,101,40,101,108,101,109,101,110,116,44,32,101,108,101,109,101,110,116,80,114,101,102,105,120,32,43,32,92,34,102,105,120,101,100,92,34,41,59,92,110,92,110,32,32,105,102,32,40,102,105,120,101,100,32,61,61,61,32,72,69,73,71,72,84,41,32,123,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,105,110,110,101,114,72,101,105,103,104,116,40,101,108,101,109,101,110,116,41,32,124,124,32,100,97,116,97,72,101,105,103,104,116,59,92,110,32,32,32,32,101,108,101,109,101,110,116,46,115,116,121,108,101,91,87,73,68,84,72,93,32,61,32,100,97,116,97,87,105,100,116,104,32,47,32,100,97,116,97,72,101,105,103,104,116,32,42,32,115,105,122,101,32,43,32,92,34,112,120,92,34,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,105,110,110,101,114,87,105,100,116,104,40,101,108,101,109,101,110,116,41,32,124,124,32,100,97,116,97,87,105,100,116,104,59,92,110,32,32,32,32,101,108,101,109,101,110,116,46,115,116,121,108,101,91,72,69,73,71,72,84,93,32,61,32,100,97,116,97,72,101,105,103,104,116,32,47,32,100,97,116,97,87,105,100,116,104,32,42,32,115,105,122,101,32,43,32,92,34,112,120,92,34,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,105,122,101,65,108,108,65,117,116,111,83,105,122,101,114,115,40,41,32,123,92,110,32,32,101,108,101,109,101,110,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,114,101,115,105,122,101,40,101,108,101,109,101,110,116,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,118,97,114,32,76,111,97,100,101,114,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,95,115,117,112,101,114,41,32,123,92,110,32,32,95,95,101,120,116,101,110,100,115,40,76,111,97,100,101,114,44,32,95,115,117,112,101,114,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,76,111,97,100,101,114,40,101,108,101,109,101,110,116,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,95,115,117,112,101,114,46,99,97,108,108,40,116,104,105,115,41,32,124,124,32,116,104,105,115,59,92,110,92,110,32,32,32,32,95,116,104,105,115,46,105,115,82,101,97,100,121,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,95,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,95,116,104,105,115,46,104,97,115,68,97,116,97,83,105,122,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,95,116,104,105,115,46,104,97,115,76,111,97,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,95,116,104,105,115,46,105,115,83,107,105,112,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,95,116,104,105,115,46,111,110,67,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,46,99,108,101,97,114,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,101,32,38,38,32,101,46,116,121,112,101,32,61,61,61,32,92,34,101,114,114,111,114,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,111,110,69,114,114,111,114,40,95,116,104,105,115,46,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,73,39,109,32,112,114,101,45,114,101,97,100,121,32,97,110,100,32,114,101,97,100,121,33,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,119,105,116,104,80,114,101,82,101,97,100,121,32,61,32,33,95,116,104,105,115,46,104,97,115,68,97,116,97,83,105,122,101,32,38,38,32,33,95,116,104,105,115,46,104,97,115,76,111,97,100,105,110,103,59,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,111,110,82,101,97,100,121,40,119,105,116,104,80,114,101,82,101,97,100,121,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,95,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,95,95,97,115,115,105,103,110,40,123,92,110,32,32,32,32,32,32,112,114,101,102,105,120,58,32,92,34,100,97,116,97,45,92,34,92,110,32,32,32,32,125,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,95,116,104,105,115,46,101,108,101,109,101,110,116,32,61,32,101,108,101,109,101,110,116,59,92,110,32,32,32,32,95,116,104,105,115,46,104,97,115,68,97,116,97,83,105,122,101,32,61,32,104,97,115,83,105,122,101,65,116,116,114,105,98,117,116,101,40,101,108,101,109,101,110,116,44,32,95,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,102,105,120,41,59,92,110,32,32,32,32,95,116,104,105,115,46,104,97,115,76,111,97,100,105,110,103,32,61,32,104,97,115,76,111,97,100,105,110,103,65,116,116,114,105,98,117,116,101,40,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,95,116,104,105,115,46,105,115,83,107,105,112,32,61,32,104,97,115,83,107,105,112,65,116,116,114,105,98,117,116,101,40,95,116,104,105,115,46,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,76,111,97,100,101,114,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,107,105,112,32,124,124,32,33,116,104,105,115,46,99,104,101,99,107,69,108,101,109,101,110,116,40,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,39,109,32,82,101,97,100,121,92,110,32,32,32,32,32,32,116,104,105,115,46,111,110,65,108,114,101,97,100,121,82,101,97,100,121,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,68,97,116,97,83,105,122,101,41,32,123,92,110,32,32,32,32,32,32,97,100,100,65,117,116,111,83,105,122,101,114,40,116,104,105,115,46,101,108,101,109,101,110,116,44,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,102,105,120,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,68,97,116,97,83,105,122,101,32,124,124,32,116,104,105,115,46,104,97,115,76,111,97,100,105,110,103,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,39,109,32,80,114,101,32,82,101,97,100,121,92,110,32,32,32,32,32,32,116,104,105,115,46,111,110,65,108,114,101,97,100,121,80,114,101,82,101,97,100,121,40,41,59,92,110,32,32,32,32,125,32,47,47,32,87,97,116,105,32,80,114,101,32,82,101,97,100,121,44,32,82,101,97,100,121,92,110,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,97,100,100,69,118,101,110,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,32,61,32,116,104,105,115,46,101,108,101,109,101,110,116,59,92,110,32,32,32,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,86,69,78,84,83,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,97,100,100,69,118,101,110,116,40,101,108,101,109,101,110,116,44,32,110,97,109,101,44,32,95,116,104,105,115,46,111,110,67,104,101,99,107,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,108,101,97,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,32,61,32,116,104,105,115,46,101,108,101,109,101,110,116,59,92,110,32,32,32,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,86,69,78,84,83,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,114,101,109,111,118,101,69,118,101,110,116,40,101,108,101,109,101,110,116,44,32,110,97,109,101,44,32,95,116,104,105,115,46,111,110,67,104,101,99,107,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,116,104,105,115,46,114,101,109,111,118,101,65,117,116,111,83,105,122,101,114,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,100,101,115,116,114,111,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,40,41,59,92,110,32,32,32,32,116,104,105,115,46,111,102,102,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,114,101,109,111,118,101,65,117,116,111,83,105,122,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,68,97,116,97,83,105,122,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,39,109,32,97,108,114,101,97,100,121,32,114,101,97,100,121,46,92,110,32,32,32,32,32,32,118,97,114,32,112,114,101,102,105,120,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,102,105,120,59,92,110,32,32,32,32,32,32,114,101,109,111,118,101,65,117,116,111,83,105,122,101,114,40,116,104,105,115,46,101,108,101,109,101,110,116,44,32,112,114,101,102,105,120,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,111,110,69,114,114,111,114,32,61,32,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,101,114,114,111,114,92,34,44,32,123,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,58,32,116,104,105,115,46,101,108,101,109,101,110,116,44,92,110,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,97,114,103,101,116,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,111,110,80,114,101,82,101,97,100,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,32,61,32,116,114,117,101,59,92,110,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,112,114,101,82,101,97,100,121,92,34,44,32,123,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,58,32,116,104,105,115,46,101,108,101,109,101,110,116,44,92,110,32,32,32,32,32,32,104,97,115,76,111,97,100,105,110,103,58,32,116,104,105,115,46,104,97,115,76,111,97,100,105,110,103,44,92,110,32,32,32,32,32,32,105,115,83,107,105,112,58,32,116,104,105,115,46,105,115,83,107,105,112,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,111,110,82,101,97,100,121,32,61,32,102,117,110,99,116,105,111,110,32,40,119,105,116,104,80,114,101,82,101,97,100,121,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,82,101,97,100,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,119,105,116,104,80,114,101,82,101,97,100,121,32,61,32,33,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,32,38,38,32,119,105,116,104,80,114,101,82,101,97,100,121,59,92,110,92,110,32,32,32,32,105,102,32,40,119,105,116,104,80,114,101,82,101,97,100,121,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,114,101,109,111,118,101,65,117,116,111,83,105,122,101,114,40,41,59,92,110,32,32,32,32,116,104,105,115,46,105,115,82,101,97,100,121,32,61,32,116,114,117,101,59,92,110,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,114,101,97,100,121,92,34,44,32,123,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,58,32,116,104,105,115,46,101,108,101,109,101,110,116,44,92,110,32,32,32,32,32,32,119,105,116,104,80,114,101,82,101,97,100,121,58,32,119,105,116,104,80,114,101,82,101,97,100,121,44,92,110,32,32,32,32,32,32,104,97,115,76,111,97,100,105,110,103,58,32,116,104,105,115,46,104,97,115,76,111,97,100,105,110,103,44,92,110,32,32,32,32,32,32,105,115,83,107,105,112,58,32,116,104,105,115,46,105,115,83,107,105,112,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,111,110,65,108,114,101,97,100,121,69,114,114,111,114,32,61,32,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,46,111,110,69,114,114,111,114,40,116,97,114,103,101,116,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,111,110,65,108,114,101,97,100,121,80,114,101,82,101,97,100,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,46,111,110,80,114,101,82,101,97,100,121,40,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,111,110,65,108,114,101,97,100,121,82,101,97,100,121,32,61,32,102,117,110,99,116,105,111,110,32,40,119,105,116,104,80,114,101,82,101,97,100,121,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,46,111,110,82,101,97,100,121,40,119,105,116,104,80,114,101,82,101,97,100,121,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,76,111,97,100,101,114,46,69,86,69,78,84,83,32,61,32,91,93,59,92,110,32,32,114,101,116,117,114,110,32,76,111,97,100,101,114,59,92,110,125,40,95,101,103,106,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,118,97,114,32,69,108,101,109,101,110,116,76,111,97,100,101,114,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,95,115,117,112,101,114,41,32,123,92,110,32,32,95,95,101,120,116,101,110,100,115,40,69,108,101,109,101,110,116,76,111,97,100,101,114,44,32,95,115,117,112,101,114,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,69,108,101,109,101,110,116,76,111,97,100,101,114,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,117,112,101,114,32,33,61,61,32,110,117,108,108,32,38,38,32,95,115,117,112,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,124,124,32,116,104,105,115,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,69,108,101,109,101,110,116,76,111,97,100,101,114,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,72,97,115,76,111,97,100,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,40,104,97,115,76,111,97,100,105,110,103,41,32,123,92,110,32,32,32,32,116,104,105,115,46,104,97,115,76,111,97,100,105,110,103,32,61,32,104,97,115,76,111,97,100,105,110,103,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,107,105,112,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,39,109,32,82,101,97,100,121,92,110,32,32,32,32,32,32,116,104,105,115,46,111,110,65,108,114,101,97,100,121,82,101,97,100,121,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,68,97,116,97,83,105,122,101,41,32,123,92,110,32,32,32,32,32,32,97,100,100,65,117,116,111,83,105,122,101,114,40,116,104,105,115,46,101,108,101,109,101,110,116,44,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,102,105,120,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,111,110,65,108,114,101,97,100,121,80,114,101,82,101,97,100,121,40,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,104,97,115,32,110,111,116,32,100,97,116,97,32,115,105,122,101,92,110,32,32,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,114,101,113,117,101,115,116,67,104,105,108,100,114,101,110,92,34,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,104,101,99,107,69,108,101,109,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,100,101,115,116,114,111,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,40,41,59,92,110,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,114,101,113,117,101,115,116,68,101,115,116,114,111,121,92,34,41,59,92,110,32,32,32,32,116,104,105,115,46,111,102,102,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,111,110,65,108,114,101,97,100,121,80,114,101,82,101,97,100,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,47,47,32,104,97,115,32,100,97,116,97,32,115,105,122,101,92,110,32,32,32,32,95,115,117,112,101,114,46,112,114,111,116,111,116,121,112,101,46,111,110,65,108,114,101,97,100,121,80,114,101,82,101,97,100,121,46,99,97,108,108,40,116,104,105,115,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,114,101,113,101,117,115,116,82,101,97,100,121,67,104,105,108,100,114,101,110,92,34,41,59,92,110,32,32,125,59,92,110,92,110,32,32,69,108,101,109,101,110,116,76,111,97,100,101,114,46,69,86,69,78,84,83,32,61,32,91,93,59,92,110,32,32,114,101,116,117,114,110,32,69,108,101,109,101,110,116,76,111,97,100,101,114,59,92,110,125,40,76,111,97,100,101,114,41,59,92,110,92,110,47,42,42,92,110,32,42,32,64,97,108,105,97,115,32,101,103,46,73,109,82,101,97,100,121,92,110,32,42,32,64,101,120,116,101,110,100,115,32,101,103,46,67,111,109,112,111,110,101,110,116,92,110,32,42,47,92,110,92,110,118,97,114,32,73,109,82,101,97,100,121,77,97,110,97,103,101,114,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,95,115,117,112,101,114,41,32,123,92,110,32,32,95,95,101,120,116,101,110,100,115,40,73,109,82,101,97,100,121,77,97,110,97,103,101,114,44,32,95,115,117,112,101,114,41,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,64,112,97,114,97,109,32,45,32,73,109,82,101,97,100,121,39,115,32,111,112,116,105,111,110,115,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,73,109,82,101,97,100,121,77,97,110,97,103,101,114,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,95,115,117,112,101,114,46,99,97,108,108,40,116,104,105,115,41,32,124,124,32,116,104,105,115,59,92,110,92,110,32,32,32,32,95,116,104,105,115,46,114,101,97,100,121,67,111,117,110,116,32,61,32,48,59,92,110,32,32,32,32,95,116,104,105,115,46,112,114,101,82,101,97,100,121,67,111,117,110,116,32,61,32,48,59,92,110,32,32,32,32,95,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,32,61,32,48,59,92,110,32,32,32,32,95,116,104,105,115,46,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,32,61,32,48,59,92,110,32,32,32,32,95,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,79,118,101,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,95,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,32,61,32,91,93,59,92,110,32,32,32,32,95,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,95,95,97,115,115,105,103,110,40,123,92,110,32,32,32,32,32,32,108,111,97,100,101,114,115,58,32,123,125,44,92,110,32,32,32,32,32,32,112,114,101,102,105,120,58,32,92,34,100,97,116,97,45,92,34,92,110,32,32,32,32,125,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,59,92,110,32,32,125,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,104,101,99,107,115,32,119,104,101,116,104,101,114,32,101,108,101,109,101,110,116,115,32,97,114,101,32,105,110,32,116,104,101,32,114,101,97,100,121,32,115,116,97,116,101,46,92,110,32,32,32,42,32,64,107,111,32,236,151,152,235,166,172,235,168,188,237,138,184,234,176,128,32,236,164,128,235,185,132,32,236,131,129,237,131,156,236,157,184,236,167,128,32,236,178,180,237,129,172,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,101,108,101,109,101,110,116,115,32,45,32,69,108,101,109,101,110,116,115,32,116,111,32,99,104,101,99,107,32,114,101,97,100,121,32,115,116,97,116,117,115,46,32,60,107,111,62,32,236,164,128,235,185,132,32,236,131,129,237,131,156,235,165,188,32,236,178,180,237,129,172,237,149,160,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,32,96,96,96,104,116,109,108,92,110,32,32,32,32,32,42,32,60,100,105,118,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,46,47,49,46,106,112,103,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,32,115,116,121,108,101,61,92,34,119,105,100,116,104,58,49,48,48,37,92,34,47,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,46,47,50,46,106,112,103,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,47,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,69,82,82,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,47,62,92,110,32,32,32,32,32,42,32,60,47,100,105,118,62,92,110,32,32,32,32,32,42,32,96,96,96,92,110,32,32,32,32,32,42,32,35,35,32,74,97,118,97,115,99,114,105,112,116,92,110,32,32,32,32,32,42,32,96,96,96,106,115,92,110,32,32,32,32,32,42,32,105,109,112,111,114,116,32,73,109,82,101,97,100,121,32,102,114,111,109,32,92,34,64,101,103,106,115,47,105,109,114,101,97,100,121,92,34,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,116,32,105,109,32,61,32,110,101,119,32,73,109,82,101,97,100,121,40,41,59,32,47,47,32,117,109,100,58,32,101,103,46,73,109,82,101,97,100,121,92,110,32,32,32,32,32,42,32,105,109,46,99,104,101,99,107,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,92,34,105,109,103,92,34,41,41,46,111,110,40,123,92,110,32,32,32,32,32,42,32,32,32,112,114,101,82,101,97,100,121,69,108,101,109,101,110,116,58,32,101,32,61,62,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,47,47,32,49,44,32,51,92,110,32,32,32,32,32,42,32,32,32,32,32,47,47,32,50,44,32,51,92,110,32,32,32,32,32,42,32,32,32,32,32,47,47,32,51,44,32,51,92,110,32,32,32,32,32,42,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,101,46,112,114,101,82,101,97,100,121,67,111,117,110,116,44,32,101,46,116,111,116,97,108,67,111,117,110,116,41,44,92,110,32,32,32,32,32,42,32,32,32,125,44,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,96,96,96,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,73,109,82,101,97,100,121,77,97,110,97,103,101,114,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,101,108,101,109,101,110,116,115,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,112,114,101,102,105,120,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,102,105,120,59,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,40,41,59,92,110,32,32,32,32,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,32,61,32,116,111,65,114,114,97,121,40,101,108,101,109,101,110,116,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,101,108,101,109,101,110,116,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,111,97,100,101,114,32,61,32,95,116,104,105,115,46,103,101,116,76,111,97,100,101,114,40,101,108,101,109,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,101,102,105,120,58,32,112,114,101,102,105,120,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,108,111,97,100,101,114,46,99,104,101,99,107,40,41,59,92,110,32,32,32,32,32,32,108,111,97,100,101,114,46,111,110,40,92,34,101,114,114,111,114,92,34,44,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,111,110,69,114,114,111,114,40,105,110,100,101,120,44,32,101,46,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,125,41,46,111,110,40,92,34,112,114,101,82,101,97,100,121,92,34,44,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,102,111,32,61,32,95,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,105,110,102,111,46,104,97,115,76,111,97,100,105,110,103,32,61,32,101,46,104,97,115,76,111,97,100,105,110,103,59,92,110,32,32,32,32,32,32,32,32,105,110,102,111,46,105,115,83,107,105,112,32,61,32,101,46,105,115,83,107,105,112,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,115,80,114,101,82,101,97,100,121,32,61,32,95,116,104,105,115,46,99,104,101,99,107,80,114,101,82,101,97,100,121,40,105,110,100,101,120,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,111,110,80,114,101,82,101,97,100,121,69,108,101,109,101,110,116,40,105,110,100,101,120,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,115,80,114,101,82,101,97,100,121,32,38,38,32,95,116,104,105,115,46,111,110,80,114,101,82,101,97,100,121,40,41,59,92,110,32,32,32,32,32,32,125,41,46,111,110,40,92,34,114,101,97,100,121,92,34,44,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,119,105,116,104,80,114,101,82,101,97,100,121,32,61,32,95,97,46,119,105,116,104,80,114,101,82,101,97,100,121,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,97,115,76,111,97,100,105,110,103,32,61,32,95,97,46,104,97,115,76,111,97,100,105,110,103,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,83,107,105,112,32,61,32,95,97,46,105,115,83,107,105,112,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,102,111,32,61,32,95,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,105,110,102,111,46,104,97,115,76,111,97,100,105,110,103,32,61,32,104,97,115,76,111,97,100,105,110,103,59,92,110,32,32,32,32,32,32,32,32,105,110,102,111,46,105,115,83,107,105,112,32,61,32,105,115,83,107,105,112,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,115,80,114,101,82,101,97,100,121,32,61,32,119,105,116,104,80,114,101,82,101,97,100,121,32,38,38,32,95,116,104,105,115,46,99,104,101,99,107,80,114,101,82,101,97,100,121,40,105,110,100,101,120,41,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,115,82,101,97,100,121,32,61,32,95,116,104,105,115,46,99,104,101,99,107,82,101,97,100,121,40,105,110,100,101,120,41,59,32,47,47,32,80,114,101,45,114,101,97,100,121,32,97,110,100,32,114,101,97,100,121,32,111,99,99,117,114,32,115,105,109,117,108,116,97,110,101,111,117,115,108,121,92,110,92,110,92,110,32,32,32,32,32,32,32,32,119,105,116,104,80,114,101,82,101,97,100,121,32,38,38,32,95,116,104,105,115,46,111,110,80,114,101,82,101,97,100,121,69,108,101,109,101,110,116,40,105,110,100,101,120,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,111,110,82,101,97,100,121,69,108,101,109,101,110,116,40,105,110,100,101,120,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,115,80,114,101,82,101,97,100,121,32,38,38,32,95,116,104,105,115,46,111,110,80,114,101,82,101,97,100,121,40,41,59,92,110,32,32,32,32,32,32,32,32,105,115,82,101,97,100,121,32,38,38,32,95,116,104,105,115,46,111,110,82,101,97,100,121,40,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,108,111,97,100,101,114,58,32,108,111,97,100,101,114,44,92,110,32,32,32,32,32,32,32,32,101,108,101,109,101,110,116,58,32,101,108,101,109,101,110,116,44,92,110,32,32,32,32,32,32,32,32,104,97,115,76,111,97,100,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,104,97,115,69,114,114,111,114,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,105,115,80,114,101,82,101,97,100,121,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,105,115,82,101,97,100,121,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,105,115,83,107,105,112,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,32,61,32,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,111,110,80,114,101,82,101,97,100,121,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,111,110,82,101,97,100,121,40,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,71,101,116,115,32,116,104,101,32,116,111,116,97,108,32,99,111,117,110,116,32,111,102,32,101,108,101,109,101,110,116,115,32,116,111,32,98,101,32,99,104,101,99,107,101,100,46,92,110,32,32,32,42,32,64,107,111,32,236,178,180,237,129,172,237,149,152,235,138,148,32,101,108,101,109,101,110,116,236,157,152,32,236,180,157,32,234,176,156,236,136,152,235,165,188,32,234,176,128,236,160,184,236,152,168,235,139,164,46,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,84,111,116,97,108,67,111,117,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,87,104,101,116,104,101,114,32,116,104,101,32,101,108,101,109,101,110,116,115,32,97,114,101,32,97,108,108,32,112,114,101,45,114,101,97,100,121,46,32,40,97,108,108,32,115,105,122,101,115,32,97,114,101,32,107,110,111,119,110,41,92,110,32,32,32,42,32,64,107,111,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,180,32,235,170,168,235,145,144,32,236,130,172,236,160,132,32,236,164,128,235,185,132,234,176,128,32,235,144,144,235,138,148,236,167,128,32,40,236,130,172,236,157,180,236,166,136,235,165,188,32,236,160,132,235,182,128,32,236,149,140,32,236,136,152,32,236,158,136,235,138,148,236,167,128,41,32,236,151,172,235,182,128,46,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,105,115,80,114,101,82,101,97,100,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,32,40,105,110,102,111,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,102,111,46,105,115,80,114,101,82,101,97,100,121,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,87,104,101,116,104,101,114,32,116,104,101,32,101,108,101,109,101,110,116,115,32,97,114,101,32,97,108,108,32,114,101,97,100,121,46,92,110,32,32,32,42,32,64,107,111,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,180,32,235,170,168,235,145,144,32,236,164,128,235,185,132,234,176,128,32,235,144,144,235,138,148,236,167,128,32,236,151,172,235,182,128,46,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,105,115,82,101,97,100,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,32,40,105,110,102,111,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,102,111,46,105,115,82,101,97,100,121,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,87,104,101,116,104,101,114,32,97,110,32,101,114,114,111,114,32,104,97,115,32,111,99,99,117,114,114,101,100,32,105,110,32,116,104,101,32,101,108,101,109,101,110,116,115,32,105,110,32,116,104,101,32,99,117,114,114,101,110,116,32,115,116,97,116,101,46,92,110,32,32,32,42,32,64,107,111,32,237,152,132,236,158,172,32,236,131,129,237,131,156,236,151,144,236,132,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,180,32,236,151,144,235,159,172,234,176,128,32,235,176,156,236,131,157,237,150,136,235,138,148,236,167,128,32,236,151,172,235,182,128,46,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,104,97,115,69,114,114,111,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,32,62,32,48,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,108,101,97,114,115,32,101,118,101,110,116,115,32,111,102,32,101,108,101,109,101,110,116,115,32,98,101,105,110,103,32,99,104,101,99,107,101,100,46,92,110,32,32,32,42,32,64,107,111,32,236,178,180,237,129,172,32,236,164,145,236,157,184,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,152,32,236,157,180,235,178,164,237,138,184,235,165,188,32,237,149,180,236,160,156,32,237,149,156,235,139,164,46,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,108,101,97,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,79,118,101,114,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,112,114,101,82,101,97,100,121,67,111,117,110,116,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,114,101,97,100,121,67,111,117,110,116,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,110,102,111,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,110,102,111,46,105,115,82,101,97,100,121,32,38,38,32,105,110,102,111,46,108,111,97,100,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,102,111,46,108,111,97,100,101,114,46,100,101,115,116,114,111,121,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,32,61,32,91,93,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,68,101,115,116,111,114,121,32,97,108,108,32,101,118,101,110,116,115,46,92,110,32,32,32,42,32,64,107,111,32,235,170,168,235,147,160,32,236,157,180,235,178,164,237,138,184,235,165,188,32,237,149,180,236,160,156,32,237,149,156,235,139,164,46,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,100,101,115,116,114,111,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,40,41,59,92,110,32,32,32,32,116,104,105,115,46,111,102,102,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,76,111,97,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,101,108,101,109,101,110,116,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,116,97,103,78,97,109,101,32,61,32,101,108,101,109,101,110,116,46,116,97,103,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,32,32,118,97,114,32,108,111,97,100,101,114,115,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,108,111,97,100,101,114,115,59,92,110,32,32,32,32,118,97,114,32,116,97,103,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,108,111,97,100,101,114,115,41,59,92,110,92,110,32,32,32,32,105,102,32,40,108,111,97,100,101,114,115,91,116,97,103,78,97,109,101,93,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,108,111,97,100,101,114,115,91,116,97,103,78,97,109,101,93,40,101,108,101,109,101,110,116,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,108,111,97,100,101,114,32,61,32,110,101,119,32,69,108,101,109,101,110,116,76,111,97,100,101,114,40,101,108,101,109,101,110,116,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,116,111,65,114,114,97,121,40,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,116,97,103,115,46,106,111,105,110,40,92,34,44,32,92,34,41,41,41,59,92,110,32,32,32,32,108,111,97,100,101,114,46,115,101,116,72,97,115,76,111,97,100,105,110,103,40,99,104,105,108,100,114,101,110,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,115,76,111,97,100,105,110,103,65,116,116,114,105,98,117,116,101,40,101,108,41,59,92,110,32,32,32,32,125,41,41,59,92,110,32,32,32,32,118,97,114,32,119,105,116,104,80,114,101,82,101,97,100,121,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,73,109,82,101,97,100,121,32,61,32,116,104,105,115,46,99,108,111,110,101,40,41,46,111,110,40,92,34,101,114,114,111,114,92,34,44,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,108,111,97,100,101,114,46,111,110,69,114,114,111,114,40,101,46,116,97,114,103,101,116,41,59,92,110,32,32,32,32,125,41,46,111,110,40,92,34,114,101,97,100,121,92,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,108,111,97,100,101,114,46,111,110,82,101,97,100,121,40,119,105,116,104,80,114,101,82,101,97,100,121,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,108,111,97,100,101,114,46,111,110,40,92,34,114,101,113,117,101,115,116,67,104,105,108,100,114,101,110,92,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,104,97,115,32,110,111,116,32,100,97,116,97,32,115,105,122,101,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,116,101,110,116,69,108,101,109,101,110,116,115,32,61,32,103,101,116,67,111,110,116,101,110,116,69,108,101,109,101,110,116,115,40,101,108,101,109,101,110,116,44,32,116,97,103,115,44,32,95,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,102,105,120,41,59,92,110,32,32,32,32,32,32,99,104,105,108,100,114,101,110,73,109,82,101,97,100,121,46,99,104,101,99,107,40,99,111,110,116,101,110,116,69,108,101,109,101,110,116,115,41,46,111,110,40,92,34,112,114,101,82,101,97,100,121,92,34,44,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,119,105,116,104,80,114,101,82,101,97,100,121,32,61,32,101,46,105,115,82,101,97,100,121,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,119,105,116,104,80,114,101,82,101,97,100,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,108,111,97,100,101,114,46,111,110,80,114,101,82,101,97,100,121,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,46,111,110,40,92,34,114,101,113,101,117,115,116,82,101,97,100,121,67,104,105,108,100,114,101,110,92,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,104,97,115,32,100,97,116,97,32,115,105,122,101,92,110,32,32,32,32,32,32,47,47,32,108,111,97,100,101,114,32,99,97,108,108,32,112,114,101,82,101,97,100,121,92,110,32,32,32,32,32,32,47,47,32,99,104,101,99,107,32,111,110,108,121,32,118,105,100,101,111,44,32,105,109,97,103,101,32,101,108,101,109,101,110,116,115,92,110,32,32,32,32,32,32,99,104,105,108,100,114,101,110,73,109,82,101,97,100,121,46,99,104,101,99,107,40,99,104,105,108,100,114,101,110,41,59,92,110,32,32,32,32,125,41,46,111,110,40,92,34,114,101,113,117,101,115,116,68,101,115,116,114,111,121,92,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,99,104,105,108,100,114,101,110,73,109,82,101,97,100,121,46,100,101,115,116,114,111,121,40,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,108,111,97,100,101,114,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,108,111,110,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,73,109,82,101,97,100,121,77,97,110,97,103,101,114,40,95,95,97,115,115,105,103,110,40,123,125,44,32,116,104,105,115,46,111,112,116,105,111,110,115,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,104,101,99,107,80,114,101,82,101,97,100,121,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,91,105,110,100,101,120,93,46,105,115,80,114,101,82,101,97,100,121,32,61,32,116,114,117,101,59,92,110,32,32,32,32,43,43,116,104,105,115,46,112,114,101,82,101,97,100,121,67,111,117,110,116,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,112,114,101,82,101,97,100,121,67,111,117,110,116,32,60,32,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,104,101,99,107,82,101,97,100,121,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,91,105,110,100,101,120,93,46,105,115,82,101,97,100,121,32,61,32,116,114,117,101,59,92,110,32,32,32,32,43,43,116,104,105,115,46,114,101,97,100,121,67,111,117,110,116,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,114,101,97,100,121,67,111,117,110,116,32,60,32,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,111,110,69,114,114,111,114,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,44,32,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,102,111,32,61,32,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,105,110,102,111,46,104,97,115,69,114,114,111,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,110,32,101,118,101,110,116,32,111,99,99,117,114,115,32,105,102,32,116,104,101,32,105,109,97,103,101,44,32,118,105,100,101,111,32,102,97,105,108,115,32,116,111,32,108,111,97,100,46,92,110,32,32,32,32,32,42,32,64,107,111,32,236,157,180,235,175,184,236,167,128,44,32,235,185,132,235,148,148,236,152,164,234,176,128,32,235,161,156,235,148,169,236,151,144,32,236,139,164,237,140,168,237,149,152,235,169,180,32,236,157,180,235,178,164,237,138,184,234,176,128,32,235,176,156,236,131,157,237,149,156,235,139,164,46,92,110,32,32,32,32,32,42,32,64,101,118,101,110,116,32,101,103,46,73,109,82,101,97,100,121,35,101,114,114,111,114,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,101,103,46,73,109,82,101,97,100,121,46,79,110,69,114,114,111,114,125,32,101,32,45,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,100,97,116,97,32,116,111,32,98,101,32,115,101,110,116,32,116,111,32,97,110,32,101,118,101,110,116,32,60,107,111,62,236,157,180,235,178,164,237,138,184,236,151,144,32,236,160,132,235,139,172,235,144,152,235,138,148,32,235,141,176,236,157,180,237,132,176,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,91,101,46,101,108,101,109,101,110,116,93,32,45,32,84,104,101,32,101,108,101,109,101,110,116,32,119,105,116,104,32,101,114,114,111,114,32,105,109,97,103,101,115,46,60,107,111,62,236,152,164,235,165,152,235,130,156,32,236,157,180,235,175,184,236,167,128,234,176,128,32,236,158,136,235,138,148,32,236,151,152,235,166,172,235,168,188,237,138,184,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,105,110,100,101,120,93,32,45,32,84,104,101,32,105,116,101,109,39,115,32,105,110,100,101,120,32,119,105,116,104,32,101,114,114,111,114,32,105,109,97,103,101,115,46,32,60,107,111,62,236,152,164,235,165,152,235,130,156,32,236,157,180,235,175,184,236,167,128,234,176,128,32,236,158,136,235,138,148,32,236,151,152,235,166,172,235,168,188,237,138,184,236,157,152,32,236,157,184,235,141,177,236,138,164,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,91,101,46,116,97,114,103,101,116,93,32,45,32,69,114,114,111,114,32,105,109,97,103,101,32,116,97,114,103,101,116,32,105,110,32,101,108,101,109,101,110,116,32,60,107,111,62,236,151,152,235,166,172,235,168,188,237,138,184,236,157,152,32,236,152,164,235,165,152,235,130,156,32,236,157,180,235,175,184,236,167,128,32,237,131,128,234,178,159,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,101,114,114,111,114,67,111,117,110,116,93,32,45,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,119,105,116,104,32,101,114,114,111,114,115,32,60,107,111,62,236,151,144,235,159,172,234,176,128,32,236,158,136,235,138,148,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,152,32,234,176,156,236,136,152,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,93,32,45,32,84,104,101,32,116,111,116,97,108,32,110,117,109,98,101,114,32,111,102,32,116,97,114,103,101,116,115,32,119,105,116,104,32,101,114,114,111,114,115,32,60,107,111,62,236,151,144,235,159,172,234,176,128,32,236,158,136,235,138,148,32,237,131,128,234,178,159,235,147,164,236,157,152,32,236,180,157,32,234,176,156,236,136,152,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,32,96,96,96,104,116,109,108,92,110,32,32,32,32,32,42,32,60,100,105,118,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,46,47,49,46,106,112,103,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,32,115,116,121,108,101,61,92,34,119,105,100,116,104,58,49,48,48,37,92,34,47,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,46,47,50,46,106,112,103,92,34,47,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,69,82,82,92,34,47,62,92,110,32,32,32,32,32,42,32,60,47,100,105,118,62,92,110,32,32,32,32,32,42,32,96,96,96,92,110,32,32,32,32,32,42,32,35,35,32,74,97,118,97,115,99,114,105,112,116,92,110,32,32,32,32,32,42,32,96,96,96,106,115,92,110,32,32,32,32,32,42,32,105,109,112,111,114,116,32,73,109,82,101,97,100,121,32,102,114,111,109,32,92,34,64,101,103,106,115,47,105,109,114,101,97,100,121,92,34,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,116,32,105,109,32,61,32,110,101,119,32,73,109,82,101,97,100,121,40,41,59,32,47,47,32,117,109,100,58,32,101,103,46,73,109,82,101,97,100,121,92,110,32,32,32,32,32,42,32,105,109,46,99,104,101,99,107,40,91,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,92,34,100,105,118,92,34,41,93,41,46,111,110,40,123,92,110,32,32,32,32,32,42,32,32,32,101,114,114,111,114,58,32,101,32,61,62,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,47,47,32,60,100,105,118,62,46,46,46,60,47,100,105,118,62,44,32,48,44,32,60,105,109,103,32,115,114,99,61,92,34,69,82,82,92,34,47,62,92,110,32,32,32,32,32,42,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,101,46,101,108,101,109,101,110,116,44,32,101,46,105,110,100,101,120,44,32,101,46,116,97,114,103,101,116,41,44,92,110,32,32,32,32,32,42,32,32,32,125,44,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,96,96,96,92,110,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,101,114,114,111,114,92,34,44,32,123,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,58,32,105,110,102,111,46,101,108,101,109,101,110,116,44,92,110,32,32,32,32,32,32,105,110,100,101,120,58,32,105,110,100,101,120,44,92,110,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,97,114,103,101,116,44,92,110,32,32,32,32,32,32,101,114,114,111,114,67,111,117,110,116,58,32,116,104,105,115,46,103,101,116,69,114,114,111,114,67,111,117,110,116,40,41,44,92,110,32,32,32,32,32,32,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,58,32,43,43,116,104,105,115,46,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,111,110,80,114,101,82,101,97,100,121,69,108,101,109,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,102,111,32,61,32,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,110,32,101,118,101,110,116,32,111,99,99,117,114,115,32,119,104,101,110,32,116,104,101,32,101,108,101,109,101,110,116,32,105,115,32,112,114,101,45,114,101,97,100,121,32,40,119,104,101,110,32,116,104,101,32,108,111,97,100,105,110,103,32,97,116,116,114,105,98,117,116,101,32,105,115,32,97,112,112,108,105,101,100,32,111,114,32,116,104,101,32,115,105,122,101,32,105,115,32,107,110,111,119,110,41,92,110,32,32,32,32,32,42,32,64,107,111,32,237,149,180,235,139,185,32,236,151,152,235,166,172,235,168,188,237,138,184,234,176,128,32,236,130,172,236,160,132,32,236,164,128,235,185,132,235,144,152,236,151,136,236,157,132,32,235,149,140,40,108,111,97,100,105,110,103,32,236,134,141,236,132,177,236,157,180,32,236,160,129,236,154,169,235,144,152,236,151,136,234,177,176,235,130,152,32,236,130,172,236,157,180,236,166,136,235,165,188,32,236,149,140,32,236,136,152,32,236,158,136,236,157,132,32,235,149,140,41,32,236,157,180,235,178,164,237,138,184,234,176,128,32,235,176,156,236,131,157,237,149,156,235,139,164,46,92,110,32,32,32,32,32,42,32,64,101,118,101,110,116,32,101,103,46,73,109,82,101,97,100,121,35,112,114,101,82,101,97,100,121,69,108,101,109,101,110,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,101,103,46,73,109,82,101,97,100,121,46,79,110,80,114,101,82,101,97,100,121,69,108,101,109,101,110,116,125,32,101,32,45,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,100,97,116,97,32,116,111,32,98,101,32,115,101,110,116,32,116,111,32,97,110,32,101,118,101,110,116,32,60,107,111,62,236,157,180,235,178,164,237,138,184,236,151,144,32,236,160,132,235,139,172,235,144,152,235,138,148,32,235,141,176,236,157,180,237,132,176,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,91,101,46,101,108,101,109,101,110,116,93,32,45,32,84,104,101,32,112,114,101,45,114,101,97,100,121,32,101,108,101,109,101,110,116,46,60,107,111,62,236,130,172,236,160,132,32,236,164,128,235,185,132,235,144,156,32,236,151,152,235,166,172,235,168,188,237,138,184,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,105,110,100,101,120,93,32,45,32,84,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,112,114,101,45,114,101,97,100,121,32,101,108,101,109,101,110,116,46,32,60,107,111,62,236,130,172,236,160,132,32,236,164,128,235,185,132,235,144,156,32,236,151,152,235,166,172,235,168,188,237,138,184,236,157,152,32,236,157,184,235,141,177,236,138,164,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,112,114,101,82,101,97,100,121,67,111,117,110,116,93,32,45,32,78,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,112,114,101,45,114,101,97,100,121,32,60,107,111,62,236,130,172,236,160,132,32,236,164,128,235,185,132,235,144,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,152,32,234,176,156,236,136,152,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,114,101,97,100,121,67,111,117,110,116,93,32,45,32,78,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,114,101,97,100,121,32,60,107,111,62,236,164,128,235,185,132,235,144,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,152,32,234,176,156,236,136,152,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,116,111,116,97,108,67,111,117,110,116,93,32,45,32,84,111,116,97,108,32,110,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,60,107,111,62,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,152,32,236,180,157,32,234,176,156,236,136,152,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,101,46,105,115,80,114,101,82,101,97,100,121,93,32,45,32,87,104,101,116,104,101,114,32,97,108,108,32,101,108,101,109,101,110,116,115,32,97,114,101,32,112,114,101,45,114,101,97,100,121,32,60,107,111,62,235,170,168,235,147,160,32,236,151,152,235,166,172,235,168,188,237,138,184,234,176,128,32,236,130,172,236,160,132,32,236,164,128,235,185,132,234,176,128,32,235,129,157,235,130,172,235,138,148,236,167,128,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,101,46,105,115,82,101,97,100,121,93,32,45,32,87,104,101,116,104,101,114,32,97,108,108,32,101,108,101,109,101,110,116,115,32,97,114,101,32,114,101,97,100,121,32,60,107,111,62,235,170,168,235,147,160,32,236,151,152,235,166,172,235,168,188,237,138,184,234,176,128,32,236,164,128,235,185,132,234,176,128,32,235,129,157,235,130,172,235,138,148,236,167,128,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,101,46,104,97,115,76,111,97,100,105,110,103,93,32,45,32,87,104,101,116,104,101,114,32,116,104,101,32,108,111,97,100,105,110,103,32,97,116,116,114,105,98,117,116,101,32,104,97,115,32,98,101,101,110,32,97,112,112,108,105,101,100,32,60,107,111,62,108,111,97,100,105,110,103,32,236,134,141,236,132,177,236,157,180,32,236,160,129,236,154,169,235,144,152,236,151,136,235,138,148,236,167,128,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,101,46,105,115,83,107,105,112,93,32,45,32,87,104,101,116,104,101,114,32,116,104,101,32,99,104,101,99,107,32,105,115,32,111,109,105,116,116,101,100,32,100,117,101,32,116,111,32,115,107,105,112,32,97,116,116,114,105,98,117,116,101,32,60,107,111,62,115,107,105,112,32,236,134,141,236,132,177,236,156,188,235,161,156,32,236,157,184,237,149,152,236,151,172,32,236,178,180,237,129,172,234,176,128,32,236,131,157,235,158,181,235,144,144,235,138,148,236,167,128,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,32,96,96,96,104,116,109,108,92,110,32,32,32,32,32,42,32,60,100,105,118,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,46,47,49,46,106,112,103,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,32,115,116,121,108,101,61,92,34,119,105,100,116,104,58,49,48,48,37,92,34,47,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,46,47,50,46,106,112,103,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,47,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,69,82,82,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,47,62,92,110,32,32,32,32,32,42,32,60,47,100,105,118,62,92,110,32,32,32,32,32,42,32,96,96,96,92,110,32,32,32,32,32,42,32,35,35,32,74,97,118,97,115,99,114,105,112,116,92,110,32,32,32,32,32,42,32,96,96,96,106,115,92,110,32,32,32,32,32,42,32,105,109,112,111,114,116,32,73,109,82,101,97,100,121,32,102,114,111,109,32,92,34,64,101,103,106,115,47,105,109,114,101,97,100,121,92,34,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,116,32,105,109,32,61,32,110,101,119,32,73,109,82,101,97,100,121,40,41,59,32,47,47,32,117,109,100,58,32,101,103,46,73,109,82,101,97,100,121,92,110,32,32,32,32,32,42,32,105,109,46,99,104,101,99,107,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,92,34,105,109,103,92,34,41,41,46,111,110,40,123,92,110,32,32,32,32,32,42,32,32,32,112,114,101,82,101,97,100,121,69,108,101,109,101,110,116,58,32,101,32,61,62,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,47,47,32,49,44,32,51,92,110,32,32,32,32,32,42,32,32,32,32,32,47,47,32,50,44,32,51,92,110,32,32,32,32,32,42,32,32,32,32,32,47,47,32,51,44,32,51,92,110,32,32,32,32,32,42,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,101,46,112,114,101,82,101,97,100,121,67,111,117,110,116,44,32,101,46,116,111,116,97,108,67,111,117,110,116,41,44,92,110,32,32,32,32,32,42,32,32,32,125,44,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,96,96,96,92,110,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,112,114,101,82,101,97,100,121,69,108,101,109,101,110,116,92,34,44,32,123,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,58,32,105,110,102,111,46,101,108,101,109,101,110,116,44,92,110,32,32,32,32,32,32,105,110,100,101,120,58,32,105,110,100,101,120,44,92,110,32,32,32,32,32,32,112,114,101,82,101,97,100,121,67,111,117,110,116,58,32,116,104,105,115,46,112,114,101,82,101,97,100,121,67,111,117,110,116,44,92,110,32,32,32,32,32,32,114,101,97,100,121,67,111,117,110,116,58,32,116,104,105,115,46,114,101,97,100,121,67,111,117,110,116,44,92,110,32,32,32,32,32,32,116,111,116,97,108,67,111,117,110,116,58,32,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,44,92,110,32,32,32,32,32,32,105,115,80,114,101,82,101,97,100,121,58,32,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,40,41,44,92,110,32,32,32,32,32,32,105,115,82,101,97,100,121,58,32,116,104,105,115,46,105,115,82,101,97,100,121,40,41,44,92,110,32,32,32,32,32,32,104,97,115,76,111,97,100,105,110,103,58,32,105,110,102,111,46,104,97,115,76,111,97,100,105,110,103,44,92,110,32,32,32,32,32,32,105,115,83,107,105,112,58,32,105,110,102,111,46,105,115,83,107,105,112,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,111,110,80,114,101,82,101,97,100,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,79,118,101,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,110,32,101,118,101,110,116,32,111,99,99,117,114,115,32,119,104,101,110,32,97,108,108,32,101,108,101,109,101,110,116,32,97,114,101,32,112,114,101,45,114,101,97,100,121,32,40,87,104,101,110,32,97,108,108,32,101,108,101,109,101,110,116,115,32,104,97,118,101,32,116,104,101,32,108,111,97,100,105,110,103,32,97,116,116,114,105,98,117,116,101,32,97,112,112,108,105,101,100,32,111,114,32,116,104,101,32,115,105,122,101,32,105,115,32,107,110,111,119,110,41,92,110,32,32,32,32,32,42,32,64,107,111,32,235,170,168,235,147,160,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,180,32,236,130,172,236,160,132,32,236,164,128,235,185,132,235,144,156,32,234,178,189,236,154,176,32,40,235,170,168,235,147,160,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,180,32,108,111,97,100,105,110,103,32,236,134,141,236,132,177,236,157,180,32,236,160,129,236,154,169,235,144,152,236,151,136,234,177,176,235,130,152,32,236,130,172,236,157,180,236,166,136,235,165,188,32,236,149,140,32,236,136,152,32,236,158,136,235,138,148,32,234,178,189,236,154,176,41,32,236,157,180,235,178,164,237,138,184,234,176,128,32,235,176,156,236,131,157,237,149,156,235,139,164,46,92,110,32,32,32,32,32,42,32,64,101,118,101,110,116,32,101,103,46,73,109,82,101,97,100,121,35,112,114,101,82,101,97,100,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,101,103,46,73,109,82,101,97,100,121,46,79,110,80,114,101,82,101,97,100,121,125,32,101,32,45,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,100,97,116,97,32,116,111,32,98,101,32,115,101,110,116,32,116,111,32,97,110,32,101,118,101,110,116,32,60,107,111,62,236,157,180,235,178,164,237,138,184,236,151,144,32,236,160,132,235,139,172,235,144,152,235,138,148,32,235,141,176,236,157,180,237,132,176,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,114,101,97,100,121,67,111,117,110,116,93,32,45,32,78,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,114,101,97,100,121,32,60,107,111,62,236,164,128,235,185,132,235,144,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,152,32,234,176,156,236,136,152,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,116,111,116,97,108,67,111,117,110,116,93,32,45,32,84,111,116,97,108,32,110,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,60,107,111,62,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,152,32,236,180,157,32,234,176,156,236,136,152,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,101,46,105,115,82,101,97,100,121,93,32,45,32,87,104,101,116,104,101,114,32,97,108,108,32,101,108,101,109,101,110,116,115,32,97,114,101,32,114,101,97,100,121,32,60,107,111,62,235,170,168,235,147,160,32,236,151,152,235,166,172,235,168,188,237,138,184,234,176,128,32,236,164,128,235,185,132,234,176,128,32,235,129,157,235,130,172,235,138,148,236,167,128,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,101,46,104,97,115,76,111,97,100,105,110,103,93,32,45,32,87,104,101,116,104,101,114,32,116,104,101,32,108,111,97,100,105,110,103,32,97,116,116,114,105,98,117,116,101,32,104,97,115,32,98,101,101,110,32,97,112,112,108,105,101,100,32,60,107,111,62,108,111,97,100,105,110,103,32,236,134,141,236,132,177,236,157,180,32,236,160,129,236,154,169,235,144,152,236,151,136,235,138,148,236,167,128,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,32,96,96,96,104,116,109,108,92,110,32,32,32,32,32,42,32,60,100,105,118,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,46,47,49,46,106,112,103,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,32,115,116,121,108,101,61,92,34,119,105,100,116,104,58,49,48,48,37,92,34,47,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,46,47,50,46,106,112,103,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,47,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,69,82,82,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,47,62,92,110,32,32,32,32,32,42,32,60,47,100,105,118,62,92,110,32,32,32,32,32,42,32,96,96,96,92,110,32,32,32,32,32,42,32,35,35,32,74,97,118,97,115,99,114,105,112,116,92,110,32,32,32,32,32,42,32,96,96,96,106,115,92,110,32,32,32,32,32,42,32,105,109,112,111,114,116,32,73,109,82,101,97,100,121,32,102,114,111,109,32,92,34,64,101,103,106,115,47,105,109,114,101,97,100,121,92,34,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,116,32,105,109,32,61,32,110,101,119,32,73,109,82,101,97,100,121,40,41,59,32,47,47,32,117,109,100,58,32,101,103,46,73,109,82,101,97,100,121,92,110,32,32,32,32,32,42,32,105,109,46,99,104,101,99,107,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,92,34,105,109,103,92,34,41,41,46,111,110,40,123,92,110,32,32,32,32,32,42,32,32,32,112,114,101,82,101,97,100,121,58,32,101,32,61,62,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,47,47,32,48,44,32,51,92,110,32,32,32,32,32,42,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,101,46,114,101,97,100,121,67,111,117,110,116,44,32,101,46,116,111,116,97,108,67,111,117,110,116,41,44,92,110,32,32,32,32,32,42,32,32,32,125,44,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,96,96,96,92,110,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,112,114,101,82,101,97,100,121,92,34,44,32,123,92,110,32,32,32,32,32,32,114,101,97,100,121,67,111,117,110,116,58,32,116,104,105,115,46,114,101,97,100,121,67,111,117,110,116,44,92,110,32,32,32,32,32,32,116,111,116,97,108,67,111,117,110,116,58,32,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,44,92,110,32,32,32,32,32,32,105,115,82,101,97,100,121,58,32,116,104,105,115,46,105,115,82,101,97,100,121,40,41,44,92,110,32,32,32,32,32,32,104,97,115,76,111,97,100,105,110,103,58,32,116,104,105,115,46,104,97,115,76,111,97,100,105,110,103,40,41,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,111,110,82,101,97,100,121,69,108,101,109,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,102,111,32,61,32,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,110,32,101,118,101,110,116,32,111,99,99,117,114,115,32,119,104,101,110,32,116,104,101,32,101,108,101,109,101,110,116,32,105,115,32,114,101,97,100,121,92,110,32,32,32,32,32,42,32,64,107,111,32,237,149,180,235,139,185,32,236,151,152,235,166,172,235,168,188,237,138,184,234,176,128,32,236,164,128,235,185,132,234,176,128,32,235,144,152,236,151,136,236,157,132,32,235,149,140,32,236,157,180,235,178,164,237,138,184,234,176,128,32,235,176,156,236,131,157,237,149,156,235,139,164,46,92,110,32,32,32,32,32,42,32,64,101,118,101,110,116,32,101,103,46,73,109,82,101,97,100,121,35,114,101,97,100,121,69,108,101,109,101,110,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,101,103,46,73,109,82,101,97,100,121,46,79,110,82,101,97,100,121,69,108,101,109,101,110,116,125,32,101,32,45,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,100,97,116,97,32,116,111,32,98,101,32,115,101,110,116,32,116,111,32,97,110,32,101,118,101,110,116,32,60,107,111,62,236,157,180,235,178,164,237,138,184,236,151,144,32,236,160,132,235,139,172,235,144,152,235,138,148,32,235,141,176,236,157,180,237,132,176,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,91,101,46,101,108,101,109,101,110,116,93,32,45,32,84,104,101,32,114,101,97,100,121,32,101,108,101,109,101,110,116,46,60,107,111,62,236,164,128,235,185,132,235,144,156,32,236,151,152,235,166,172,235,168,188,237,138,184,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,105,110,100,101,120,93,32,45,32,84,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,114,101,97,100,121,32,101,108,101,109,101,110,116,46,32,60,107,111,62,236,164,128,235,185,132,235,144,156,32,236,151,152,235,166,172,235,168,188,237,138,184,236,157,152,32,236,157,184,235,141,177,236,138,164,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,101,46,104,97,115,69,114,114,111,114,93,32,45,32,87,104,101,116,104,101,114,32,116,104,101,114,101,32,105,115,32,97,110,32,101,114,114,111,114,32,105,110,32,116,104,101,32,101,108,101,109,101,110,116,32,60,107,111,62,237,149,180,235,139,185,32,236,151,152,235,166,172,235,168,188,237,138,184,236,151,144,32,236,151,144,235,159,172,234,176,128,32,236,158,136,235,138,148,236,167,128,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,101,114,114,111,114,67,111,117,110,116,93,32,45,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,119,105,116,104,32,101,114,114,111,114,115,32,60,107,111,62,236,151,144,235,159,172,234,176,128,32,236,158,136,235,138,148,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,152,32,234,176,156,236,136,152,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,93,32,45,32,84,104,101,32,116,111,116,97,108,32,110,117,109,98,101,114,32,111,102,32,116,97,114,103,101,116,115,32,119,105,116,104,32,101,114,114,111,114,115,32,60,107,111,62,236,151,144,235,159,172,234,176,128,32,236,158,136,235,138,148,32,237,131,128,234,178,159,235,147,164,236,157,152,32,236,180,157,32,234,176,156,236,136,152,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,112,114,101,82,101,97,100,121,67,111,117,110,116,93,32,45,32,78,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,112,114,101,45,114,101,97,100,121,32,60,107,111,62,236,130,172,236,160,132,32,236,164,128,235,185,132,235,144,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,152,32,234,176,156,236,136,152,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,114,101,97,100,121,67,111,117,110,116,93,32,45,32,78,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,114,101,97,100,121,32,60,107,111,62,236,164,128,235,185,132,235,144,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,152,32,234,176,156,236,136,152,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,116,111,116,97,108,67,111,117,110,116,93,32,45,32,84,111,116,97,108,32,110,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,60,107,111,62,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,152,32,236,180,157,32,234,176,156,236,136,152,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,101,46,105,115,80,114,101,82,101,97,100,121,93,32,45,32,87,104,101,116,104,101,114,32,97,108,108,32,101,108,101,109,101,110,116,115,32,97,114,101,32,112,114,101,45,114,101,97,100,121,32,60,107,111,62,235,170,168,235,147,160,32,236,151,152,235,166,172,235,168,188,237,138,184,234,176,128,32,236,130,172,236,160,132,32,236,164,128,235,185,132,234,176,128,32,235,129,157,235,130,172,235,138,148,236,167,128,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,101,46,105,115,82,101,97,100,121,93,32,45,32,87,104,101,116,104,101,114,32,97,108,108,32,101,108,101,109,101,110,116,115,32,97,114,101,32,114,101,97,100,121,32,60,107,111,62,235,170,168,235,147,160,32,236,151,152,235,166,172,235,168,188,237,138,184,234,176,128,32,236,164,128,235,185,132,234,176,128,32,235,129,157,235,130,172,235,138,148,236,167,128,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,101,46,104,97,115,76,111,97,100,105,110,103,93,32,45,32,87,104,101,116,104,101,114,32,116,104,101,32,108,111,97,100,105,110,103,32,97,116,116,114,105,98,117,116,101,32,104,97,115,32,98,101,101,110,32,97,112,112,108,105,101,100,32,60,107,111,62,108,111,97,100,105,110,103,32,236,134,141,236,132,177,236,157,180,32,236,160,129,236,154,169,235,144,152,236,151,136,235,138,148,236,167,128,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,101,46,105,115,80,114,101,82,101,97,100,121,79,118,101,114,93,32,45,32,87,104,101,116,104,101,114,32,112,114,101,45,114,101,97,100,121,32,105,115,32,111,118,101,114,32,60,107,111,62,236,130,172,236,160,132,32,236,164,128,235,185,132,234,176,128,32,235,129,157,235,130,172,235,138,148,236,167,128,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,101,46,105,115,83,107,105,112,93,32,45,32,87,104,101,116,104,101,114,32,116,104,101,32,99,104,101,99,107,32,105,115,32,111,109,105,116,116,101,100,32,100,117,101,32,116,111,32,115,107,105,112,32,97,116,116,114,105,98,117,116,101,32,60,107,111,62,115,107,105,112,32,236,134,141,236,132,177,236,156,188,235,161,156,32,236,157,184,237,149,152,236,151,172,32,236,178,180,237,129,172,234,176,128,32,236,131,157,235,158,181,235,144,144,235,138,148,236,167,128,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,32,96,96,96,104,116,109,108,92,110,32,32,32,32,32,42,32,60,100,105,118,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,46,47,49,46,106,112,103,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,32,115,116,121,108,101,61,92,34,119,105,100,116,104,58,49,48,48,37,92,34,47,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,46,47,50,46,106,112,103,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,47,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,69,82,82,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,47,62,92,110,32,32,32,32,32,42,32,60,47,100,105,118,62,92,110,32,32,32,32,32,42,32,96,96,96,92,110,32,32,32,32,32,42,32,35,35,32,74,97,118,97,115,99,114,105,112,116,92,110,32,32,32,32,32,42,32,96,96,96,106,115,92,110,32,32,32,32,32,42,32,105,109,112,111,114,116,32,73,109,82,101,97,100,121,32,102,114,111,109,32,92,34,64,101,103,106,115,47,105,109,114,101,97,100,121,92,34,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,116,32,105,109,32,61,32,110,101,119,32,73,109,82,101,97,100,121,40,41,59,32,47,47,32,117,109,100,58,32,101,103,46,73,109,82,101,97,100,121,92,110,32,32,32,32,32,42,32,105,109,46,99,104,101,99,107,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,92,34,105,109,103,92,34,41,41,46,111,110,40,123,92,110,32,32,32,32,32,42,32,32,32,114,101,97,100,121,69,108,101,109,101,110,116,58,32,101,32,61,62,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,47,47,32,49,44,32,48,44,32,102,97,108,115,101,44,32,51,92,110,32,32,32,32,32,42,32,32,32,32,32,47,47,32,50,44,32,49,44,32,102,97,108,115,101,44,32,51,92,110,32,32,32,32,32,42,32,32,32,32,32,47,47,32,51,44,32,50,44,32,116,114,117,101,44,32,51,92,110,32,32,32,32,32,42,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,101,46,114,101,97,100,121,67,111,117,110,116,44,32,101,46,105,110,100,101,120,44,32,101,46,104,97,115,69,114,114,111,114,44,32,101,46,116,111,116,97,108,67,111,117,110,116,41,44,92,110,32,32,32,32,32,42,32,32,32,125,44,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,96,96,96,92,110,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,114,101,97,100,121,69,108,101,109,101,110,116,92,34,44,32,123,92,110,32,32,32,32,32,32,105,110,100,101,120,58,32,105,110,100,101,120,44,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,58,32,105,110,102,111,46,101,108,101,109,101,110,116,44,92,110,32,32,32,32,32,32,104,97,115,69,114,114,111,114,58,32,105,110,102,111,46,104,97,115,69,114,114,111,114,44,92,110,32,32,32,32,32,32,101,114,114,111,114,67,111,117,110,116,58,32,116,104,105,115,46,103,101,116,69,114,114,111,114,67,111,117,110,116,40,41,44,92,110,32,32,32,32,32,32,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,58,32,116,104,105,115,46,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,44,92,110,32,32,32,32,32,32,112,114,101,82,101,97,100,121,67,111,117,110,116,58,32,116,104,105,115,46,112,114,101,82,101,97,100,121,67,111,117,110,116,44,92,110,32,32,32,32,32,32,114,101,97,100,121,67,111,117,110,116,58,32,116,104,105,115,46,114,101,97,100,121,67,111,117,110,116,44,92,110,32,32,32,32,32,32,116,111,116,97,108,67,111,117,110,116,58,32,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,44,92,110,32,32,32,32,32,32,105,115,80,114,101,82,101,97,100,121,58,32,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,40,41,44,92,110,32,32,32,32,32,32,105,115,82,101,97,100,121,58,32,116,104,105,115,46,105,115,82,101,97,100,121,40,41,44,92,110,32,32,32,32,32,32,104,97,115,76,111,97,100,105,110,103,58,32,105,110,102,111,46,104,97,115,76,111,97,100,105,110,103,44,92,110,32,32,32,32,32,32,105,115,80,114,101,82,101,97,100,121,79,118,101,114,58,32,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,79,118,101,114,44,92,110,32,32,32,32,32,32,105,115,83,107,105,112,58,32,105,110,102,111,46,105,115,83,107,105,112,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,111,110,82,101,97,100,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,110,32,101,118,101,110,116,32,111,99,99,117,114,115,32,119,104,101,110,32,97,108,108,32,101,108,101,109,101,110,116,32,97,114,101,32,114,101,97,100,121,92,110,32,32,32,32,32,42,32,64,107,111,32,235,170,168,235,147,160,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,180,32,236,164,128,235,185,132,235,144,156,32,234,178,189,236,154,176,32,236,157,180,235,178,164,237,138,184,234,176,128,32,235,176,156,236,131,157,237,149,156,235,139,164,46,92,110,32,32,32,32,32,42,32,64,101,118,101,110,116,32,101,103,46,73,109,82,101,97,100,121,35,114,101,97,100,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,101,103,46,73,109,82,101,97,100,121,46,79,110,82,101,97,100,121,125,32,101,32,45,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,100,97,116,97,32,116,111,32,98,101,32,115,101,110,116,32,116,111,32,97,110,32,101,118,101,110,116,32,60,107,111,62,236,157,180,235,178,164,237,138,184,236,151,144,32,236,160,132,235,139,172,235,144,152,235,138,148,32,235,141,176,236,157,180,237,132,176,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,101,114,114,111,114,67,111,117,110,116,93,32,45,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,119,105,116,104,32,101,114,114,111,114,115,32,60,107,111,62,236,151,144,235,159,172,234,176,128,32,236,158,136,235,138,148,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,152,32,234,176,156,236,136,152,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,93,32,45,32,84,104,101,32,116,111,116,97,108,32,110,117,109,98,101,114,32,111,102,32,116,97,114,103,101,116,115,32,119,105,116,104,32,101,114,114,111,114,115,32,60,107,111,62,236,151,144,235,159,172,234,176,128,32,236,158,136,235,138,148,32,237,131,128,234,178,159,235,147,164,236,157,152,32,236,180,157,32,234,176,156,236,136,152,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,116,111,116,97,108,67,111,117,110,116,93,32,45,32,84,111,116,97,108,32,110,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,60,107,111,62,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,236,157,152,32,236,180,157,32,234,176,156,236,136,152,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,32,96,96,96,104,116,109,108,92,110,32,32,32,32,32,42,32,60,100,105,118,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,46,47,49,46,106,112,103,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,32,115,116,121,108,101,61,92,34,119,105,100,116,104,58,49,48,48,37,92,34,47,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,46,47,50,46,106,112,103,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,47,62,92,110,32,32,32,32,32,42,32,32,32,32,60,105,109,103,32,115,114,99,61,92,34,69,82,82,92,34,32,100,97,116,97,45,119,105,100,116,104,61,92,34,49,50,56,48,92,34,32,100,97,116,97,45,104,101,105,103,104,116,61,92,34,56,53,51,92,34,47,62,92,110,32,32,32,32,32,42,32,60,47,100,105,118,62,92,110,32,32,32,32,32,42,32,96,96,96,92,110,32,32,32,32,32,42,32,35,35,32,74,97,118,97,115,99,114,105,112,116,92,110,32,32,32,32,32,42,32,96,96,96,106,115,92,110,32,32,32,32,32,42,32,105,109,112,111,114,116,32,73,109,82,101,97,100,121,32,102,114,111,109,32,92,34,64,101,103,106,115,47,105,109,114,101,97,100,121,92,34,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,116,32,105,109,32,61,32,110,101,119,32,73,109,82,101,97,100,121,40,41,59,32,47,47,32,117,109,100,58,32,101,103,46,73,109,82,101,97,100,121,92,110,32,32,32,32,32,42,32,105,109,46,99,104,101,99,107,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,92,34,105,109,103,92,34,41,41,46,111,110,40,123,92,110,32,32,32,32,32,42,32,32,32,112,114,101,82,101,97,100,121,58,32,101,32,61,62,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,47,47,32,48,44,32,51,92,110,32,32,32,32,32,42,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,101,46,114,101,97,100,121,67,111,117,110,116,44,32,101,46,116,111,116,97,108,67,111,117,110,116,41,44,92,110,32,32,32,32,32,42,32,32,32,125,44,92,110,32,32,32,32,32,42,32,32,32,114,101,97,100,121,58,32,101,32,61,62,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,47,47,32,49,44,32,51,92,110,32,32,32,32,32,42,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,101,46,101,114,114,111,114,67,111,117,110,116,44,32,101,46,116,111,116,97,108,67,111,117,110,116,41,44,92,110,32,32,32,32,32,42,32,32,32,125,44,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,96,96,96,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,114,101,97,100,121,92,34,44,32,123,92,110,32,32,32,32,32,32,101,114,114,111,114,67,111,117,110,116,58,32,116,104,105,115,46,103,101,116,69,114,114,111,114,67,111,117,110,116,40,41,44,92,110,32,32,32,32,32,32,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,58,32,116,104,105,115,46,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,44,92,110,32,32,32,32,32,32,116,111,116,97,108,67,111,117,110,116,58,32,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,69,114,114,111,114,67,111,117,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,105,110,102,111,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,102,111,46,104,97,115,69,114,114,111,114,59,92,110,32,32,32,32,125,41,46,108,101,110,103,116,104,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,104,97,115,76,111,97,100,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,105,110,102,111,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,102,111,46,104,97,115,76,111,97,100,105,110,103,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,73,109,82,101,97,100,121,77,97,110,97,103,101,114,59,92,110,125,40,95,101,103,106,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,118,97,114,32,73,109,97,103,101,76,111,97,100,101,114,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,95,115,117,112,101,114,41,32,123,92,110,32,32,95,95,101,120,116,101,110,100,115,40,73,109,97,103,101,76,111,97,100,101,114,44,32,95,115,117,112,101,114,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,73,109,97,103,101,76,111,97,100,101,114,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,117,112,101,114,32,33,61,61,32,110,117,108,108,32,38,38,32,95,115,117,112,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,124,124,32,116,104,105,115,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,73,109,97,103,101,76,111,97,100,101,114,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,104,101,99,107,69,108,101,109,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,32,61,32,116,104,105,115,46,101,108,101,109,101,110,116,59,92,110,32,32,32,32,118,97,114,32,115,114,99,32,61,32,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,92,34,115,114,99,92,34,41,59,92,110,92,110,32,32,32,32,105,102,32,40,101,108,101,109,101,110,116,46,99,111,109,112,108,101,116,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,114,99,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,99,111,109,112,108,101,116,101,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,101,108,101,109,101,110,116,46,110,97,116,117,114,97,108,87,105,100,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,111,110,65,108,114,101,97,100,121,69,114,114,111,114,40,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,85,115,105,110,103,32,97,110,32,101,120,116,101,114,110,97,108,32,108,97,122,121,32,108,111,97,100,105,110,103,32,109,111,100,117,108,101,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,111,110,65,108,114,101,97,100,121,80,114,101,82,101,97,100,121,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,97,100,100,69,118,101,110,116,115,40,41,59,92,110,32,32,32,32,73,83,95,73,69,32,38,38,32,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,115,114,99,92,34,44,32,115,114,99,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,59,92,110,92,110,32,32,73,109,97,103,101,76,111,97,100,101,114,46,69,86,69,78,84,83,32,61,32,91,92,34,108,111,97,100,92,34,44,32,92,34,101,114,114,111,114,92,34,93,59,92,110,32,32,114,101,116,117,114,110,32,73,109,97,103,101,76,111,97,100,101,114,59,92,110,125,40,76,111,97,100,101,114,41,59,92,110,92,110,118,97,114,32,86,105,100,101,111,76,111,97,100,101,114,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,95,115,117,112,101,114,41,32,123,92,110,32,32,95,95,101,120,116,101,110,100,115,40,86,105,100,101,111,76,111,97,100,101,114,44,32,95,115,117,112,101,114,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,86,105,100,101,111,76,111,97,100,101,114,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,117,112,101,114,32,33,61,61,32,110,117,108,108,32,38,38,32,95,115,117,112,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,124,124,32,116,104,105,115,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,86,105,100,101,111,76,111,97,100,101,114,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,104,101,99,107,69,108,101,109,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,32,61,32,116,104,105,115,46,101,108,101,109,101,110,116,59,32,47,47,32,72,65,86,69,95,78,79,84,72,73,78,71,58,32,48,44,32,110,111,32,105,110,102,111,114,109,97,116,105,111,110,32,119,104,101,116,104,101,114,32,111,114,32,110,111,116,32,116,104,101,32,97,117,100,105,111,47,118,105,100,101,111,32,105,115,32,114,101,97,100,121,92,110,32,32,32,32,47,47,32,72,65,86,69,95,77,69,84,65,68,65,84,65,58,32,49,44,32,72,65,86,69,95,77,69,84,65,68,65,84,65,32,45,32,109,101,116,97,100,97,116,97,32,102,111,114,32,116,104,101,32,97,117,100,105,111,47,118,105,100,101,111,32,105,115,32,114,101,97,100,121,92,110,32,32,32,32,47,47,32,72,65,86,69,95,67,85,82,82,69,78,84,95,68,65,84,65,58,32,50,44,32,100,97,116,97,32,102,111,114,32,116,104,101,32,99,117,114,114,101,110,116,32,112,108,97,121,98,97,99,107,32,112,111,115,105,116,105,111,110,32,105,115,32,97,118,97,105,108,97,98,108,101,44,32,98,117,116,32,110,111,116,32,101,110,111,117,103,104,32,100,97,116,97,32,116,111,32,112,108,97,121,32,110,101,120,116,32,102,114,97,109,101,47,109,105,108,108,105,115,101,99,111,110,100,92,110,32,32,32,32,47,47,32,72,65,86,69,95,70,85,84,85,82,69,95,68,65,84,65,58,32,51,44,32,100,97,116,97,32,102,111,114,32,116,104,101,32,99,117,114,114,101,110,116,32,97,110,100,32,97,116,32,108,101,97,115,116,32,116,104,101,32,110,101,120,116,32,102,114,97,109,101,32,105,115,32,97,118,97,105,108,97,98,108,101,92,110,32,32,32,32,47,47,32,72,65,86,69,95,69,78,79,85,71,72,95,68,65,84,65,58,32,52,44,32,101,110,111,117,103,104,32,100,97,116,97,32,97,118,97,105,108,97,98,108,101,32,116,111,32,115,116,97,114,116,32,112,108,97,121,105,110,103,92,110,92,110,32,32,32,32,105,102,32,40,101,108,101,109,101,110,116,46,114,101,97,100,121,83,116,97,116,101,32,62,61,32,49,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,101,108,101,109,101,110,116,46,101,114,114,111,114,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,111,110,65,108,114,101,97,100,121,69,114,114,111,114,40,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,97,100,100,69,118,101,110,116,115,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,59,92,110,92,110,32,32,86,105,100,101,111,76,111,97,100,101,114,46,69,86,69,78,84,83,32,61,32,91,92,34,108,111,97,100,101,100,109,101,116,97,100,97,116,97,92,34,44,32,92,34,101,114,114,111,114,92,34,93,59,92,110,32,32,114,101,116,117,114,110,32,86,105,100,101,111,76,111,97,100,101,114,59,92,110,125,40,76,111,97,100,101,114,41,59,92,110,92,110,118,97,114,32,73,109,82,101,97,100,121,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,95,115,117,112,101,114,41,32,123,92,110,32,32,95,95,101,120,116,101,110,100,115,40,73,109,82,101,97,100,121,44,32,95,115,117,112,101,114,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,73,109,82,101,97,100,121,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,117,112,101,114,46,99,97,108,108,40,116,104,105,115,44,32,95,95,97,115,115,105,103,110,40,123,92,110,32,32,32,32,32,32,108,111,97,100,101,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,109,103,58,32,73,109,97,103,101,76,111,97,100,101,114,44,92,110,32,32,32,32,32,32,32,32,118,105,100,101,111,58,32,86,105,100,101,111,76,111,97,100,101,114,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,111,112,116,105,111,110,115,41,41,32,124,124,32,116,104,105,115,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,73,109,82,101,97,100,121,59,92,110,125,40,73,109,82,101,97,100,121,77,97,110,97,103,101,114,41,59,92,110,92,110,47,42,92,110,101,103,106,115,45,105,109,114,101,97,100,121,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,50,48,45,112,114,101,115,101,110,116,32,78,65,86,69,82,32,67,111,114,112,46,92,110,77,73,84,32,108,105,99,101,110,115,101,92,110,42,47,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,73,109,82,101,97,100,121,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,105,109,114,101,97,100,121,46,101,115,109,46,106,115,46,109,97,112,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,105,109,114,101,97,100,121,47,100,105,115,116,47,105,109,114,101,97,100,121,46,101,115,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,105,110,102,105,110,105,116,101,103,114,105,100,47,100,105,115,116,47,105,110,102,105,110,105,116,101,103,114,105,100,46,101,115,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,105,110,102,105,110,105,116,101,103,114,105,100,47,100,105,115,116,47,105,110,102,105,110,105,116,101,103,114,105,100,46,101,115,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,78,84,65,73,78,69,82,95,67,76,65,83,83,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,78,84,65,73,78,69,82,95,67,76,65,83,83,78,65,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,68,69,70,65,85,76,84,95,79,80,84,73,79,78,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,68,69,70,65,85,76,84,95,79,80,84,73,79,78,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,68,79,77,82,101,110,100,101,114,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,68,79,77,82,101,110,100,101,114,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,114,97,109,101,76,97,121,111,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,114,97,109,101,76,97,121,111,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,71,114,105,100,76,97,121,111,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,71,114,105,100,76,97,121,111,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,71,78,79,82,69,95,67,76,65,83,83,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,71,78,79,82,69,95,67,76,65,83,83,78,65,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,78,70,73,78,73,84,69,71,82,73,68,95,69,86,69,78,84,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,78,70,73,78,73,84,69,71,82,73,68,95,69,86,69,78,84,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,78,70,73,78,73,84,69,71,82,73,68,95,77,69,84,72,79,68,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,78,70,73,78,73,84,69,71,82,73,68,95,77,69,84,72,79,68,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,110,102,105,110,105,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,110,102,105,110,105,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,116,101,109,77,97,110,97,103,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,116,101,109,77,97,110,97,103,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,97,99,107,105,110,103,76,97,121,111,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,97,99,107,105,110,103,76,97,121,111,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,113,117,97,114,101,76,97,121,111,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,113,117,97,114,101,76,97,121,111,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,97,116,101,103,111,114,105,122,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,97,116,101,103,111,114,105,122,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,119,105,116,104,73,110,102,105,110,105,116,101,71,114,105,100,77,101,116,104,111,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,119,105,116,104,73,110,102,105,110,105,116,101,71,114,105,100,77,101,116,104,111,100,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,103,106,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,101,103,106,115,47,99,111,109,112,111,110,101,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,99,111,109,112,111,110,101,110,116,47,100,105,115,116,47,99,111,109,112,111,110,101,110,116,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,103,106,115,95,108,105,115,116,95,100,105,102,102,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,101,103,106,115,47,108,105,115,116,45,100,105,102,102,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,108,105,115,116,45,100,105,102,102,101,114,47,100,105,115,116,47,108,105,115,116,45,100,105,102,102,101,114,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,103,106,115,95,105,109,114,101,97,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,101,103,106,115,47,105,109,114,101,97,100,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,105,109,114,101,97,100,121,47,100,105,115,116,47,105,109,114,101,97,100,121,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,53,32,78,65,86,69,82,32,67,111,114,112,46,92,110,110,97,109,101,58,32,64,101,103,106,115,47,105,110,102,105,110,105,116,101,103,114,105,100,92,110,108,105,99,101,110,115,101,58,32,77,73,84,92,110,97,117,116,104,111,114,58,32,78,65,86,69,82,32,67,111,114,112,46,92,110,114,101,112,111,115,105,116,111,114,121,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,110,97,118,101,114,47,101,103,106,115,45,105,110,102,105,110,105,116,101,103,114,105,100,92,110,118,101,114,115,105,111,110,58,32,51,46,57,46,48,92,110,42,47,92,110,92,110,92,110,92,110,92,110,47,42,33,32,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,92,114,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,77,105,99,114,111,115,111,102,116,32,67,111,114,112,111,114,97,116,105,111,110,46,32,65,108,108,32,114,105,103,104,116,115,32,114,101,115,101,114,118,101,100,46,92,114,92,110,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,40,116,104,101,32,92,34,76,105,99,101,110,115,101,92,34,41,59,32,121,111,117,32,109,97,121,32,110,111,116,32,117,115,101,92,114,92,110,116,104,105,115,32,102,105,108,101,32,101,120,99,101,112,116,32,105,110,32,99,111,109,112,108,105,97,110,99,101,32,119,105,116,104,32,116,104,101,32,76,105,99,101,110,115,101,46,32,89,111,117,32,109,97,121,32,111,98,116,97,105,110,32,97,32,99,111,112,121,32,111,102,32,116,104,101,92,114,92,110,76,105,99,101,110,115,101,32,97,116,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,92,114,92,110,92,114,92,110,84,72,73,83,32,67,79,68,69,32,73,83,32,80,82,79,86,73,68,69,68,32,79,78,32,65,78,32,42,65,83,32,73,83,42,32,66,65,83,73,83,44,32,87,73,84,72,79,85,84,32,87,65,82,82,65,78,84,73,69,83,32,79,82,32,67,79,78,68,73,84,73,79,78,83,32,79,70,32,65,78,89,92,114,92,110,75,73,78,68,44,32,69,73,84,72,69,82,32,69,88,80,82,69,83,83,32,79,82,32,73,77,80,76,73,69,68,44,32,73,78,67,76,85,68,73,78,71,32,87,73,84,72,79,85,84,32,76,73,77,73,84,65,84,73,79,78,32,65,78,89,32,73,77,80,76,73,69,68,92,114,92,110,87,65,82,82,65,78,84,73,69,83,32,79,82,32,67,79,78,68,73,84,73,79,78,83,32,79,70,32,84,73,84,76,69,44,32,70,73,84,78,69,83,83,32,70,79,82,32,65,32,80,65,82,84,73,67,85,76,65,82,32,80,85,82,80,79,83,69,44,92,114,92,110,77,69,82,67,72,65,78,84,65,66,76,73,84,89,32,79,82,32,78,79,78,45,73,78,70,82,73,78,71,69,77,69,78,84,46,92,114,92,110,92,114,92,110,83,101,101,32,116,104,101,32,65,112,97,99,104,101,32,86,101,114,115,105,111,110,32,50,46,48,32,76,105,99,101,110,115,101,32,102,111,114,32,115,112,101,99,105,102,105,99,32,108,97,110,103,117,97,103,101,32,103,111,118,101,114,110,105,110,103,32,112,101,114,109,105,115,115,105,111,110,115,92,114,92,110,97,110,100,32,108,105,109,105,116,97,116,105,111,110,115,32,117,110,100,101,114,32,116,104,101,32,76,105,99,101,110,115,101,46,92,114,92,110,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,32,42,47,92,110,92,110,47,42,32,103,108,111,98,97,108,32,82,101,102,108,101,99,116,44,32,80,114,111,109,105,115,101,32,42,47,92,110,118,97,114,32,101,120,116,101,110,100,83,116,97,116,105,99,115,32,61,32,102,117,110,99,116,105,111,110,32,40,100,44,32,98,41,32,123,92,110,32,32,101,120,116,101,110,100,83,116,97,116,105,99,115,32,61,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,32,124,124,32,123,92,110,32,32,32,32,95,95,112,114,111,116,111,95,95,58,32,91,93,92,110,32,32,125,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,32,38,38,32,102,117,110,99,116,105,111,110,32,40,100,44,32,98,41,32,123,92,110,32,32,32,32,100,46,95,95,112,114,111,116,111,95,95,32,61,32,98,59,92,110,32,32,125,32,124,124,32,102,117,110,99,116,105,111,110,32,40,100,44,32,98,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,112,32,105,110,32,98,41,32,105,102,32,40,98,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,112,41,41,32,100,91,112,93,32,61,32,98,91,112,93,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,101,120,116,101,110,100,83,116,97,116,105,99,115,40,100,44,32,98,41,59,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,95,95,101,120,116,101,110,100,115,40,100,44,32,98,41,32,123,92,110,32,32,101,120,116,101,110,100,83,116,97,116,105,99,115,40,100,44,32,98,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,95,95,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,100,59,92,110,32,32,125,92,110,92,110,32,32,100,46,112,114,111,116,111,116,121,112,101,32,61,32,98,32,61,61,61,32,110,117,108,108,32,63,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,98,41,32,58,32,40,95,95,46,112,114,111,116,111,116,121,112,101,32,61,32,98,46,112,114,111,116,111,116,121,112,101,44,32,110,101,119,32,95,95,40,41,41,59,92,110,125,92,110,118,97,114,32,95,95,97,115,115,105,103,110,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,95,95,97,115,115,105,103,110,32,61,32,79,98,106,101,99,116,46,97,115,115,105,103,110,32,124,124,32,102,117,110,99,116,105,111,110,32,95,95,97,115,115,105,103,110,40,116,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,115,44,32,105,32,61,32,49,44,32,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,115,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,112,32,105,110,32,115,41,32,105,102,32,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,115,44,32,112,41,41,32,116,91,112,93,32,61,32,115,91,112,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,95,97,115,115,105,103,110,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,59,92,110,102,117,110,99,116,105,111,110,32,95,95,115,112,114,101,97,100,65,114,114,97,121,115,40,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,115,32,61,32,48,44,32,105,32,61,32,48,44,32,105,108,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,32,60,32,105,108,59,32,105,43,43,41,32,115,32,43,61,32,97,114,103,117,109,101,110,116,115,91,105,93,46,108,101,110,103,116,104,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,114,32,61,32,65,114,114,97,121,40,115,41,44,32,107,32,61,32,48,44,32,105,32,61,32,48,59,32,105,32,60,32,105,108,59,32,105,43,43,41,32,102,111,114,32,40,118,97,114,32,97,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,44,32,106,32,61,32,48,44,32,106,108,32,61,32,97,46,108,101,110,103,116,104,59,32,106,32,60,32,106,108,59,32,106,43,43,44,32,107,43,43,41,32,114,91,107,93,32,61,32,97,91,106,93,59,92,110,92,110,32,32,114,101,116,117,114,110,32,114,59,92,110,125,92,110,92,110,118,97,114,32,119,105,110,59,92,110,92,110,105,102,32,40,116,121,112,101,111,102,32,119,105,110,100,111,119,32,61,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,41,32,123,92,110,32,32,47,47,32,119,105,110,100,111,119,32,105,115,32,117,110,100,101,102,105,110,101,100,32,105,110,32,110,111,100,101,46,106,115,92,110,32,32,119,105,110,32,61,32,123,92,110,32,32,32,32,100,111,99,117,109,101,110,116,58,32,123,125,44,92,110,32,32,32,32,110,97,118,105,103,97,116,111,114,58,32,123,92,110,32,32,32,32,32,32,117,115,101,114,65,103,101,110,116,58,32,92,34,92,34,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,32,101,108,115,101,32,123,92,110,32,32,119,105,110,32,61,32,119,105,110,100,111,119,59,92,110,125,92,110,118,97,114,32,100,111,99,117,109,101,110,116,32,61,32,119,105,110,46,100,111,99,117,109,101,110,116,59,92,110,92,110,118,97,114,32,95,97,59,92,110,118,97,114,32,117,97,32,61,32,119,105,110,46,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,59,92,110,118,97,114,32,83,85,80,80,79,82,84,95,67,79,77,80,85,84,69,68,83,84,89,76,69,32,61,32,33,33,40,92,34,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,92,34,32,105,110,32,119,105,110,41,59,92,110,118,97,114,32,83,85,80,80,79,82,84,95,65,68,68,69,86,69,78,84,76,73,83,84,69,78,69,82,32,61,32,33,33,40,92,34,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,92,34,32,105,110,32,100,111,99,117,109,101,110,116,41,59,92,110,118,97,114,32,83,85,80,80,79,82,84,95,80,65,83,83,73,86,69,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,115,117,112,112,111,114,116,115,80,97,115,115,105,118,101,79,112,116,105,111,110,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,105,102,32,40,83,85,80,80,79,82,84,95,65,68,68,69,86,69,78,84,76,73,83,84,69,78,69,82,32,38,38,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,41,32,123,92,110,32,32,32,32,32,32,47,47,32,116,115,108,105,110,116,58,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,58,32,110,111,45,101,109,112,116,121,92,110,32,32,32,32,32,32,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,92,34,116,101,115,116,92,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,125,44,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,92,34,112,97,115,115,105,118,101,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,117,112,112,111,114,116,115,80,97,115,115,105,118,101,79,112,116,105,111,110,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,47,47,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,115,117,112,112,111,114,116,115,80,97,115,115,105,118,101,79,112,116,105,111,110,59,92,110,125,40,41,59,92,110,118,97,114,32,73,83,95,73,69,32,61,32,47,77,83,73,69,124,84,114,105,100,101,110,116,124,87,105,110,100,111,119,115,32,80,104,111,110,101,124,69,100,103,101,47,46,116,101,115,116,40,117,97,41,59,92,110,118,97,114,32,73,83,95,73,79,83,32,61,32,47,105,80,104,111,110,101,124,105,80,97,100,47,46,116,101,115,116,40,117,97,41,59,92,110,118,97,114,32,73,83,95,65,78,68,82,79,73,68,50,32,61,32,47,65,110,100,114,111,105,100,32,50,92,92,46,47,46,116,101,115,116,40,117,97,41,59,92,110,118,97,114,32,67,79,78,84,65,73,78,69,82,95,67,76,65,83,83,78,65,77,69,32,61,32,92,34,95,101,103,45,105,110,102,105,110,105,116,101,103,114,105,100,45,99,111,110,116,97,105,110,101,114,95,92,34,59,92,110,118,97,114,32,73,71,78,79,82,69,95,67,76,65,83,83,78,65,77,69,32,61,32,92,34,95,101,103,45,105,110,102,105,110,105,116,101,103,114,105,100,45,105,103,110,111,114,101,95,92,34,59,92,110,118,97,114,32,84,82,65,78,83,73,84,73,79,78,95,78,65,77,69,32,61,32,92,34,95,73,78,70,73,78,73,84,69,71,82,73,68,95,84,82,65,78,83,73,84,73,79,78,92,34,59,92,110,118,97,114,32,86,69,82,84,73,67,65,76,32,61,32,92,34,118,101,114,116,105,99,97,108,92,34,59,92,110,118,97,114,32,72,79,82,73,90,79,78,84,65,76,32,61,32,92,34,104,111,114,105,122,111,110,116,97,108,92,34,59,92,110,118,97,114,32,68,85,77,77,89,95,80,79,83,73,84,73,79,78,32,61,32,45,49,48,48,48,48,48,59,92,110,118,97,114,32,71,82,79,85,80,75,69,89,95,65,84,84,32,61,32,92,34,100,97,116,97,45,103,114,111,117,112,107,101,121,92,34,59,92,110,118,97,114,32,68,69,70,65,85,76,84,95,79,80,84,73,79,78,83,32,61,32,123,92,110,32,32,105,116,101,109,83,101,108,101,99,116,111,114,58,32,92,34,42,92,34,44,92,110,32,32,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,58,32,102,97,108,115,101,44,92,110,32,32,116,104,114,101,115,104,111,108,100,58,32,49,48,48,44,92,110,32,32,105,115,69,113,117,97,108,83,105,122,101,58,32,102,97,108,115,101,44,92,110,32,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,58,32,102,97,108,115,101,44,92,110,32,32,117,115,101,82,101,99,121,99,108,101,58,32,116,114,117,101,44,92,110,32,32,104,111,114,105,122,111,110,116,97,108,58,32,102,97,108,115,101,44,92,110,32,32,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,58,32,48,44,92,110,32,32,117,115,101,70,105,116,58,32,116,114,117,101,44,92,110,32,32,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,58,32,92,34,100,97,116,97,45,92,34,44,92,110,32,32,114,101,110,100,101,114,69,120,116,101,114,110,97,108,58,32,102,97,108,115,101,44,92,110,32,32,114,101,115,105,122,101,68,101,98,111,117,110,99,101,58,32,49,48,48,44,92,110,32,32,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,58,32,48,44,92,110,32,32,112,101,114,99,101,110,116,97,103,101,58,32,102,97,108,115,101,44,92,110,32,32,117,115,101,79,102,102,115,101,116,58,32,102,97,108,115,101,92,110,125,59,92,110,118,97,114,32,68,69,70,65,85,76,84,95,76,65,89,79,85,84,95,79,80,84,73,79,78,83,32,61,32,123,92,110,32,32,104,111,114,105,122,111,110,116,97,108,58,32,102,97,108,115,101,44,92,110,32,32,109,97,114,103,105,110,58,32,48,92,110,125,59,92,110,118,97,114,32,97,103,101,110,116,32,61,32,117,97,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,118,97,114,32,105,115,77,111,98,105,108,101,32,61,32,47,109,111,98,105,124,105,111,115,124,97,110,100,114,111,105,100,47,46,116,101,115,116,40,97,103,101,110,116,41,59,92,110,118,97,114,32,65,76,73,71,78,32,61,32,123,92,110,32,32,83,84,65,82,84,58,32,92,34,115,116,97,114,116,92,34,44,92,110,32,32,67,69,78,84,69,82,58,32,92,34,99,101,110,116,101,114,92,34,44,92,110,32,32,69,78,68,58,32,92,34,101,110,100,92,34,44,92,110,32,32,74,85,83,84,73,70,89,58,32,92,34,106,117,115,116,105,102,121,92,34,92,110,125,59,92,110,118,97,114,32,73,68,76,69,32,61,32,48,59,92,110,118,97,114,32,76,79,65,68,73,78,71,95,65,80,80,69,78,68,32,61,32,49,59,92,110,118,97,114,32,76,79,65,68,73,78,71,95,80,82,69,80,69,78,68,32,61,32,50,59,92,110,118,97,114,32,80,82,79,67,69,83,83,73,78,71,32,61,32,52,59,92,110,118,97,114,32,119,101,98,107,105,116,32,61,32,47,97,112,112,108,101,119,101,98,107,105,116,92,92,47,40,91,92,92,100,124,46,93,42,41,47,103,46,101,120,101,99,40,97,103,101,110,116,41,59,92,110,118,97,114,32,87,69,66,75,73,84,95,86,69,82,83,73,79,78,32,61,32,119,101,98,107,105,116,32,38,38,32,112,97,114,115,101,73,110,116,40,119,101,98,107,105,116,91,49,93,44,32,49,48,41,32,124,124,32,48,59,92,110,118,97,114,32,68,69,70,69,78,83,69,95,66,82,79,87,83,69,82,32,61,32,87,69,66,75,73,84,95,86,69,82,83,73,79,78,32,38,38,32,87,69,66,75,73,84,95,86,69,82,83,73,79,78,32,60,32,53,51,55,59,92,110,118,97,114,32,73,84,69,77,95,75,69,89,83,32,61,32,91,92,34,99,111,110,116,101,110,116,92,34,44,32,92,34,103,114,111,117,112,75,101,121,92,34,44,32,92,34,105,116,101,109,75,101,121,92,34,44,32,92,34,111,114,103,83,105,122,101,92,34,44,32,92,34,109,111,117,110,116,101,100,92,34,44,32,92,34,112,114,101,118,82,101,99,116,92,34,44,32,92,34,114,101,99,116,92,34,44,32,92,34,115,105,122,101,92,34,93,59,92,110,118,97,114,32,84,82,65,78,83,70,79,82,77,32,61,32,40,95,97,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,112,114,111,112,101,114,116,105,101,115,32,61,32,123,92,110,32,32,32,32,116,114,97,110,115,105,116,105,111,110,101,110,100,58,32,92,34,92,34,44,92,110,32,32,32,32,119,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,69,110,100,58,32,92,34,45,119,101,98,107,105,116,45,92,34,44,92,110,32,32,32,32,77,83,84,114,97,110,115,105,116,105,111,110,69,110,100,58,32,92,34,45,109,115,45,92,34,44,92,110,32,32,32,32,111,84,114,97,110,115,105,116,105,111,110,69,110,100,58,32,92,34,45,111,45,92,34,44,92,110,32,32,32,32,109,111,122,84,114,97,110,115,105,116,105,111,110,69,110,100,58,32,92,34,45,109,111,122,45,92,34,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,101,114,116,121,32,105,110,32,112,114,111,112,101,114,116,105,101,115,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,101,102,105,120,32,61,32,112,114,111,112,101,114,116,105,101,115,91,112,114,111,112,101,114,116,121,93,59,92,110,92,110,32,32,32,32,105,102,32,40,92,34,111,110,92,34,32,43,32,112,114,111,112,101,114,116,121,46,116,111,76,111,119,101,114,67,97,115,101,40,41,32,105,110,32,119,105,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,112,114,101,102,105,120,32,43,32,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,112,114,101,102,105,120,32,43,32,92,34,116,114,97,110,115,105,116,105,111,110,92,34,44,32,112,114,111,112,101,114,116,121,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,91,93,59,92,110,125,40,41,44,32,95,97,91,48,93,41,44,92,110,32,32,32,32,84,82,65,78,83,73,84,73,79,78,32,61,32,95,97,91,49,93,44,92,110,32,32,32,32,84,82,65,78,83,73,84,73,79,78,95,69,78,68,32,61,32,95,97,91,50,93,59,92,110,118,97,114,32,73,78,70,73,78,73,84,69,71,82,73,68,95,69,86,69,78,84,83,32,61,32,91,92,34,97,112,112,101,110,100,92,34,44,32,92,34,112,114,101,112,101,110,100,92,34,44,32,92,34,105,109,97,103,101,69,114,114,111,114,92,34,44,32,92,34,99,104,97,110,103,101,92,34,44,32,92,34,108,97,121,111,117,116,67,111,109,112,108,101,116,101,92,34,93,59,32,47,47,32,73,116,39,115,32,102,111,114,32,109,97,107,105,110,103,32,109,105,115,116,97,107,101,115,46,92,110,47,47,32,87,104,101,110,101,118,101,114,32,121,111,117,32,97,100,100,32,97,32,112,117,98,108,105,99,32,109,101,116,104,111,100,44,32,121,111,117,32,109,117,115,116,32,97,100,100,32,116,104,101,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,109,101,116,104,111,100,32,110,97,109,101,32,116,111,32,97,110,32,97,114,114,97,121,32,111,114,32,111,98,106,101,99,116,46,92,110,47,47,32,65,110,32,97,100,100,105,116,105,111,110,97,108,32,101,114,114,111,114,32,109,97,121,32,111,99,99,117,114,32,105,102,32,110,111,116,32,97,100,100,101,100,46,92,110,92,110,118,97,114,32,73,78,70,73,78,73,84,69,71,82,73,68,95,77,69,84,72,79,68,83,32,61,32,123,92,110,32,32,103,101,116,76,111,97,100,105,110,103,66,97,114,58,32,116,114,117,101,44,92,110,32,32,103,101,116,73,116,101,109,58,32,116,114,117,101,44,92,110,32,32,103,101,116,73,116,101,109,115,58,32,116,114,117,101,44,92,110,32,32,108,97,121,111,117,116,58,32,116,114,117,101,44,92,110,32,32,103,101,116,71,114,111,117,112,75,101,121,115,58,32,116,114,117,101,44,92,110,32,32,103,101,116,83,116,97,116,117,115,58,32,116,114,117,101,44,92,110,32,32,115,101,116,83,116,97,116,117,115,58,32,116,114,117,101,44,92,110,32,32,105,115,80,114,111,99,101,115,115,105,110,103,58,32,116,114,117,101,44,92,110,32,32,115,116,97,114,116,76,111,97,100,105,110,103,58,32,116,114,117,101,44,92,110,32,32,101,110,100,76,111,97,100,105,110,103,58,32,116,114,117,101,44,92,110,32,32,105,115,76,111,97,100,105,110,103,58,32,116,114,117,101,44,92,110,32,32,117,112,100,97,116,101,73,116,101,109,58,32,116,114,117,101,44,92,110,32,32,117,112,100,97,116,101,73,116,101,109,115,58,32,116,114,117,101,44,92,110,32,32,109,111,118,101,84,111,58,32,116,114,117,101,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,116,111,65,114,114,97,121,40,110,111,100,101,115,41,32,123,92,110,32,32,47,47,32,83,67,82,73,80,84,53,48,49,52,32,105,110,32,73,69,56,92,110,32,32,118,97,114,32,97,114,114,97,121,32,61,32,91,93,59,92,110,92,110,32,32,105,102,32,40,110,111,100,101,115,41,32,123,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,97,114,114,97,121,46,112,117,115,104,40,110,111,100,101,115,91,105,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,109,97,116,99,104,72,84,77,76,40,104,116,109,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,104,116,109,108,46,109,97,116,99,104,40,47,94,60,40,91,65,45,122,93,43,41,92,92,115,42,40,91,94,62,93,42,41,62,47,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,36,40,112,97,114,97,109,44,32,109,117,108,116,105,41,32,123,92,110,32,32,105,102,32,40,109,117,108,116,105,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,109,117,108,116,105,32,61,32,102,97,108,115,101,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,101,108,59,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,112,97,114,97,109,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,123,92,110,32,32,32,32,47,47,32,83,116,114,105,110,103,32,40,72,84,77,76,44,32,83,101,108,101,99,116,111,114,41,92,110,32,32,32,32,47,47,32,99,104,101,99,107,32,105,102,32,115,116,114,105,110,103,32,105,115,32,72,84,77,76,32,116,97,103,32,102,111,114,109,97,116,92,110,32,32,32,32,118,97,114,32,109,97,116,99,104,32,61,32,109,97,116,99,104,72,84,77,76,40,112,97,114,97,109,41,59,32,47,47,32,99,114,101,97,116,105,110,103,32,101,108,101,109,101,110,116,92,110,92,110,32,32,32,32,105,102,32,40,109,97,116,99,104,41,32,123,92,110,32,32,32,32,32,32,47,47,32,72,84,77,76,92,110,32,32,32,32,32,32,118,97,114,32,100,117,109,109,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,92,34,100,105,118,92,34,41,59,92,110,32,32,32,32,32,32,100,117,109,109,121,46,105,110,110,101,114,72,84,77,76,32,61,32,112,97,114,97,109,59,92,110,32,32,32,32,32,32,101,108,32,61,32,100,117,109,109,121,46,99,104,105,108,100,78,111,100,101,115,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,83,101,108,101,99,116,111,114,92,110,32,32,32,32,32,32,101,108,32,61,32,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,97,114,97,109,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,109,117,108,116,105,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,111,65,114,114,97,121,40,101,108,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,101,108,32,38,38,32,101,108,91,48,93,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,87,105,110,100,111,119,40,112,97,114,97,109,41,41,32,123,92,110,32,32,32,32,47,47,32,119,105,110,100,111,119,92,110,32,32,32,32,101,108,32,61,32,112,97,114,97,109,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,74,81,117,101,114,121,40,112,97,114,97,109,41,41,32,123,92,110,32,32,32,32,47,47,32,106,81,117,101,114,121,92,110,32,32,32,32,101,108,32,61,32,109,117,108,116,105,32,63,32,36,40,112,97,114,97,109,46,116,111,65,114,114,97,121,40,41,44,32,116,114,117,101,41,32,58,32,36,40,112,97,114,97,109,46,103,101,116,40,48,41,44,32,102,97,108,115,101,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,112,97,114,97,109,41,41,32,123,92,110,32,32,32,32,101,108,32,61,32,112,97,114,97,109,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,118,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,36,40,118,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,109,117,108,116,105,41,32,123,92,110,32,32,32,32,32,32,101,108,32,61,32,101,108,46,108,101,110,103,116,104,32,62,61,32,49,32,63,32,101,108,91,48,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,112,97,114,97,109,46,110,111,100,101,78,97,109,101,32,38,38,32,40,112,97,114,97,109,46,110,111,100,101,84,121,112,101,32,61,61,61,32,49,32,124,124,32,112,97,114,97,109,46,110,111,100,101,84,121,112,101,32,61,61,61,32,57,41,41,32,123,92,110,32,32,32,32,47,47,32,72,84,77,76,69,108,101,109,101,110,116,44,32,68,111,99,117,109,101,110,116,92,110,32,32,32,32,101,108,32,61,32,112,97,114,97,109,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,101,108,32,61,32,91,93,46,115,108,105,99,101,46,99,97,108,108,40,101,108,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,101,108,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,97,100,100,69,118,101,110,116,40,101,108,101,109,101,110,116,44,32,116,121,112,101,44,32,104,97,110,100,108,101,114,44,32,101,118,101,110,116,76,105,115,116,101,110,101,114,79,112,116,105,111,110,115,41,32,123,92,110,32,32,105,102,32,40,83,85,80,80,79,82,84,95,65,68,68,69,86,69,78,84,76,73,83,84,69,78,69,82,41,32,123,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,101,118,101,110,116,76,105,115,116,101,110,101,114,79,112,116,105,111,110,115,32,124,124,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,101,118,101,110,116,76,105,115,116,101,110,101,114,79,112,116,105,111,110,115,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,41,32,123,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,83,85,80,80,79,82,84,95,80,65,83,83,73,86,69,32,63,32,101,118,101,110,116,76,105,115,116,101,110,101,114,79,112,116,105,111,110,115,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,101,108,101,109,101,110,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,121,112,101,44,32,104,97,110,100,108,101,114,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,101,108,101,109,101,110,116,46,97,116,116,97,99,104,69,118,101,110,116,41,32,123,92,110,32,32,32,32,101,108,101,109,101,110,116,46,97,116,116,97,99,104,69,118,101,110,116,40,92,34,111,110,92,34,32,43,32,116,121,112,101,44,32,104,97,110,100,108,101,114,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,101,108,101,109,101,110,116,91,92,34,111,110,92,34,32,43,32,116,121,112,101,93,32,61,32,104,97,110,100,108,101,114,59,92,110,32,32,125,92,110,125,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,69,118,101,110,116,40,101,108,101,109,101,110,116,44,32,116,121,112,101,44,32,104,97,110,100,108,101,114,41,32,123,92,110,32,32,105,102,32,40,101,108,101,109,101,110,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,41,32,123,92,110,32,32,32,32,101,108,101,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,116,121,112,101,44,32,104,97,110,100,108,101,114,44,32,102,97,108,115,101,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,101,108,101,109,101,110,116,46,100,101,116,97,99,104,69,118,101,110,116,41,32,123,92,110,32,32,32,32,101,108,101,109,101,110,116,46,100,101,116,97,99,104,69,118,101,110,116,40,92,34,111,110,92,34,32,43,32,116,121,112,101,44,32,104,97,110,100,108,101,114,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,101,108,101,109,101,110,116,91,92,34,111,110,92,34,32,43,32,116,121,112,101,93,32,61,32,110,117,108,108,59,92,110,32,32,125,92,110,125,92,110,102,117,110,99,116,105,111,110,32,97,100,100,79,110,99,101,69,118,101,110,116,40,101,108,101,109,101,110,116,44,32,116,121,112,101,44,32,104,97,110,100,108,101,114,44,32,101,118,101,110,116,76,105,115,116,101,110,101,114,79,112,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,99,97,108,108,98,97,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,114,101,109,111,118,101,69,118,101,110,116,40,101,108,101,109,101,110,116,44,32,116,121,112,101,44,32,99,97,108,108,98,97,99,107,41,59,92,110,32,32,32,32,104,97,110,100,108,101,114,40,101,41,59,92,110,32,32,125,59,92,110,92,110,32,32,97,100,100,69,118,101,110,116,40,101,108,101,109,101,110,116,44,32,116,121,112,101,44,32,99,97,108,108,98,97,99,107,44,32,101,118,101,110,116,76,105,115,116,101,110,101,114,79,112,116,105,111,110,115,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,115,99,114,111,108,108,40,101,108,44,32,104,111,114,105,122,111,110,116,97,108,41,32,123,92,110,32,32,105,102,32,40,104,111,114,105,122,111,110,116,97,108,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,104,111,114,105,122,111,110,116,97,108,32,61,32,102,97,108,115,101,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,112,114,111,112,32,61,32,92,34,115,99,114,111,108,108,92,34,32,43,32,40,104,111,114,105,122,111,110,116,97,108,32,63,32,92,34,76,101,102,116,92,34,32,58,32,92,34,84,111,112,92,34,41,59,92,110,92,110,32,32,105,102,32,40,105,115,87,105,110,100,111,119,40,101,108,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,119,105,110,91,104,111,114,105,122,111,110,116,97,108,32,63,32,92,34,112,97,103,101,88,79,102,102,115,101,116,92,34,32,58,32,92,34,112,97,103,101,89,79,102,102,115,101,116,92,34,93,32,124,124,32,100,111,99,117,109,101,110,116,46,98,111,100,121,91,112,114,111,112,93,32,124,124,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,91,112,114,111,112,93,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,108,91,112,114,111,112,93,59,92,110,32,32,125,92,110,125,92,110,102,117,110,99,116,105,111,110,32,115,99,114,111,108,108,84,111,40,101,108,44,32,120,44,32,121,41,32,123,92,110,32,32,105,102,32,40,105,115,87,105,110,100,111,119,40,101,108,41,41,32,123,92,110,32,32,32,32,101,108,46,115,99,114,111,108,108,40,120,44,32,121,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,101,108,46,115,99,114,111,108,108,76,101,102,116,32,61,32,120,59,92,110,32,32,32,32,101,108,46,115,99,114,111,108,108,84,111,112,32,61,32,121,59,92,110,32,32,125,92,110,125,92,110,102,117,110,99,116,105,111,110,32,115,99,114,111,108,108,66,121,40,101,108,44,32,120,44,32,121,41,32,123,92,110,32,32,105,102,32,40,105,115,87,105,110,100,111,119,40,101,108,41,41,32,123,92,110,32,32,32,32,101,108,46,115,99,114,111,108,108,66,121,40,120,44,32,121,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,101,108,46,115,99,114,111,108,108,76,101,102,116,32,43,61,32,120,59,92,110,32,32,32,32,101,108,46,115,99,114,111,108,108,84,111,112,32,43,61,32,121,59,92,110,32,32,125,92,110,125,92,110,102,117,110,99,116,105,111,110,32,103,101,116,83,116,121,108,101,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,83,85,80,80,79,82,84,95,67,79,77,80,85,84,69,68,83,84,89,76,69,32,63,32,119,105,110,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,108,41,32,58,32,101,108,46,99,117,114,114,101,110,116,83,116,121,108,101,41,32,124,124,32,123,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,83,105,122,101,40,101,108,44,32,110,97,109,101,44,32,116,121,112,101,41,32,123,92,110,32,32,105,102,32,40,105,115,87,105,110,100,111,119,40,101,108,41,41,32,123,92,110,32,32,32,32,47,47,32,87,73,78,68,79,87,92,110,32,32,32,32,114,101,116,117,114,110,32,119,105,110,91,92,34,105,110,110,101,114,92,34,32,43,32,110,97,109,101,93,32,124,124,32,100,111,99,117,109,101,110,116,46,98,111,100,121,91,92,34,99,108,105,101,110,116,92,34,32,43,32,110,97,109,101,93,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,68,111,99,117,109,101,110,116,40,101,108,41,41,32,123,92,110,32,32,32,32,47,47,32,68,79,67,85,77,69,78,84,95,78,79,68,69,92,110,32,32,32,32,118,97,114,32,100,111,99,32,61,32,101,108,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,92,110,32,32,32,32,118,97,114,32,98,111,100,121,32,61,32,101,108,46,98,111,100,121,59,92,110,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,98,111,100,121,91,92,34,115,99,114,111,108,108,92,34,32,43,32,110,97,109,101,93,44,32,100,111,99,91,92,34,115,99,114,111,108,108,92,34,32,43,32,110,97,109,101,93,44,32,98,111,100,121,91,92,34,111,102,102,115,101,116,92,34,32,43,32,110,97,109,101,93,44,32,100,111,99,91,92,34,111,102,102,115,101,116,92,34,32,43,32,110,97,109,101,93,44,32,100,111,99,91,92,34,99,108,105,101,110,116,92,34,32,43,32,110,97,109,101,93,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,47,32,78,79,68,69,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,48,59,92,110,92,110,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,92,34,114,101,99,116,92,34,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,108,105,101,110,116,82,101,99,116,32,61,32,101,108,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,92,110,32,32,32,32,32,32,115,105,122,101,32,61,32,110,97,109,101,32,61,61,61,32,92,34,87,105,100,116,104,92,34,32,63,32,99,108,105,101,110,116,82,101,99,116,46,114,105,103,104,116,32,45,32,99,108,105,101,110,116,82,101,99,116,46,108,101,102,116,32,58,32,99,108,105,101,110,116,82,101,99,116,46,98,111,116,116,111,109,32,45,32,99,108,105,101,110,116,82,101,99,116,46,116,111,112,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,32,61,61,61,32,92,34,111,102,102,115,101,116,92,34,41,32,123,92,110,32,32,32,32,32,32,115,105,122,101,32,61,32,101,108,91,92,34,111,102,102,115,101,116,92,34,32,43,32,110,97,109,101,93,32,124,124,32,101,108,91,92,34,99,108,105,101,110,116,92,34,32,43,32,110,97,109,101,93,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,115,105,122,101,32,61,32,101,108,91,92,34,99,108,105,101,110,116,92,34,32,43,32,110,97,109,101,93,32,124,124,32,101,108,91,92,34,111,102,102,115,101,116,92,34,32,43,32,110,97,109,101,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,115,105,122,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,105,122,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,99,115,115,83,105,122,101,32,61,32,103,101,116,83,116,121,108,101,40,101,108,41,91,110,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,126,99,115,115,83,105,122,101,46,105,110,100,101,120,79,102,40,92,34,112,120,92,34,41,32,38,38,32,112,97,114,115,101,70,108,111,97,116,40,99,115,115,83,105,122,101,41,32,124,124,32,48,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,67,108,105,101,110,116,87,105,100,116,104,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,101,116,83,105,122,101,40,101,108,44,32,92,34,87,105,100,116,104,92,34,44,32,92,34,99,108,105,101,110,116,92,34,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,103,101,116,67,108,105,101,110,116,72,101,105,103,104,116,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,101,116,83,105,122,101,40,101,108,44,32,92,34,72,101,105,103,104,116,92,34,44,32,92,34,99,108,105,101,110,116,92,34,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,103,101,116,79,102,102,115,101,116,87,105,100,116,104,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,101,116,83,105,122,101,40,101,108,44,32,92,34,87,105,100,116,104,92,34,44,32,92,34,111,102,102,115,101,116,92,34,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,101,116,83,105,122,101,40,101,108,44,32,92,34,72,101,105,103,104,116,92,34,44,32,92,34,111,102,102,115,101,116,92,34,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,103,101,116,82,101,99,116,87,105,100,116,104,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,101,116,83,105,122,101,40,101,108,44,32,92,34,87,105,100,116,104,92,34,44,32,92,34,114,101,99,116,92,34,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,103,101,116,82,101,99,116,72,101,105,103,104,116,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,101,116,83,105,122,101,40,101,108,44,32,92,34,72,101,105,103,104,116,92,34,44,32,92,34,114,101,99,116,92,34,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,103,101,116,79,102,102,115,101,116,83,105,122,101,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,119,105,100,116,104,58,32,103,101,116,79,102,102,115,101,116,87,105,100,116,104,40,101,108,41,44,92,110,32,32,32,32,104,101,105,103,104,116,58,32,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,40,101,108,41,92,110,32,32,125,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,103,101,116,82,101,99,116,83,105,122,101,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,119,105,100,116,104,58,32,103,101,116,82,101,99,116,87,105,100,116,104,40,101,108,41,44,92,110,32,32,32,32,104,101,105,103,104,116,58,32,103,101,116,82,101,99,116,72,101,105,103,104,116,40,101,108,41,92,110,32,32,125,59,92,110,125,92,110,118,97,114,32,83,84,89,76,69,32,61,32,123,92,110,32,32,118,101,114,116,105,99,97,108,58,32,123,92,110,32,32,32,32,115,116,97,114,116,80,111,115,49,58,32,92,34,116,111,112,92,34,44,92,110,32,32,32,32,101,110,100,80,111,115,49,58,32,92,34,98,111,116,116,111,109,92,34,44,92,110,32,32,32,32,115,105,122,101,49,58,32,92,34,104,101,105,103,104,116,92,34,44,92,110,32,32,32,32,115,116,97,114,116,80,111,115,50,58,32,92,34,108,101,102,116,92,34,44,92,110,32,32,32,32,101,110,100,80,111,115,50,58,32,92,34,114,105,103,104,116,92,34,44,92,110,32,32,32,32,115,105,122,101,50,58,32,92,34,119,105,100,116,104,92,34,92,110,32,32,125,44,92,110,32,32,104,111,114,105,122,111,110,116,97,108,58,32,123,92,110,32,32,32,32,115,116,97,114,116,80,111,115,49,58,32,92,34,108,101,102,116,92,34,44,92,110,32,32,32,32,101,110,100,80,111,115,49,58,32,92,34,114,105,103,104,116,92,34,44,92,110,32,32,32,32,115,105,122,101,49,58,32,92,34,119,105,100,116,104,92,34,44,92,110,32,32,32,32,115,116,97,114,116,80,111,115,50,58,32,92,34,116,111,112,92,34,44,92,110,32,32,32,32,101,110,100,80,111,115,50,58,32,92,34,98,111,116,116,111,109,92,34,44,92,110,32,32,32,32,115,105,122,101,50,58,32,92,34,104,101,105,103,104,116,92,34,92,110,32,32,125,92,110,125,59,92,110,102,117,110,99,116,105,111,110,32,103,101,116,83,116,121,108,101,78,97,109,101,115,40,105,115,72,111,114,105,122,111,110,116,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,83,84,89,76,69,91,105,115,72,111,114,105,122,111,110,116,97,108,32,63,32,72,79,82,73,90,79,78,84,65,76,32,58,32,86,69,82,84,73,67,65,76,93,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,97,115,115,105,103,110,40,116,97,114,103,101,116,41,32,123,92,110,32,32,118,97,114,32,115,111,117,114,99,101,115,32,61,32,91,93,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,95,105,32,61,32,49,59,32,95,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,95,105,43,43,41,32,123,92,110,32,32,32,32,115,111,117,114,99,101,115,91,95,105,32,45,32,49,93,32,61,32,97,114,103,117,109,101,110,116,115,91,95,105,93,59,92,110,32,32,125,92,110,92,110,32,32,115,111,117,114,99,101,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,116,97,114,103,101,116,91,107,101,121,93,32,61,32,115,111,117,114,99,101,91,107,101,121,93,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,97,115,115,105,103,110,79,112,116,105,111,110,115,40,100,101,102,97,117,108,116,79,112,116,105,111,110,115,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,115,115,105,103,110,40,123,125,44,32,68,69,70,65,85,76,84,95,76,65,89,79,85,84,95,79,80,84,73,79,78,83,44,32,100,101,102,97,117,108,116,79,112,116,105,111,110,115,44,32,111,112,116,105,111,110,115,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,116,111,90,101,114,111,65,114,114,97,121,40,111,117,116,108,105,110,101,41,32,123,92,110,32,32,105,102,32,40,33,111,117,116,108,105,110,101,32,124,124,32,33,111,117,116,108,105,110,101,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,48,93,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,111,117,116,108,105,110,101,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,99,108,111,110,101,73,116,101,109,115,40,105,116,101,109,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,116,101,109,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,115,115,105,103,110,40,123,125,44,32,105,116,101,109,41,59,92,110,32,32,125,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,105,115,74,81,117,101,114,121,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,119,105,110,46,106,81,117,101,114,121,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,101,108,32,105,110,115,116,97,110,99,101,111,102,32,119,105,110,46,106,81,117,101,114,121,32,124,124,32,101,108,46,99,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,46,106,113,117,101,114,121,32,38,38,32,101,108,46,116,111,65,114,114,97,121,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,105,115,87,105,110,100,111,119,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,108,32,61,61,61,32,119,105,110,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,105,115,68,111,99,117,109,101,110,116,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,108,46,110,111,100,101,84,121,112,101,32,61,61,61,32,57,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,102,105,108,108,40,97,114,114,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,46,108,101,110,103,116,104,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,108,101,110,103,116,104,32,45,32,49,59,32,105,32,62,61,32,48,59,32,45,45,105,41,32,123,92,110,32,32,32,32,97,114,114,91,105,93,32,61,32,118,97,108,117,101,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,97,114,114,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,105,115,85,110,100,101,102,105,110,101,100,40,116,97,114,103,101,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,97,114,103,101,116,32,61,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,102,105,110,100,40,97,114,114,44,32,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,46,108,101,110,103,116,104,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,99,97,108,108,98,97,99,107,40,97,114,114,91,105,93,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,91,105,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,102,105,110,100,76,97,115,116,40,97,114,114,44,32,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,46,108,101,110,103,116,104,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,108,101,110,103,116,104,32,45,32,49,59,32,105,32,62,61,32,48,59,32,45,45,105,41,32,123,92,110,32,32,32,32,105,102,32,40,99,97,108,108,98,97,99,107,40,97,114,114,91,105,93,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,91,105,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,99,97,116,101,103,111,114,105,122,101,40,110,101,119,73,116,101,109,115,41,32,123,92,110,32,32,118,97,114,32,110,101,119,71,114,111,117,112,115,32,61,32,91,93,59,92,110,32,32,118,97,114,32,103,114,111,117,112,75,101,121,115,32,61,32,123,125,59,92,110,32,32,110,101,119,73,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,75,101,121,32,61,32,105,116,101,109,46,103,114,111,117,112,75,101,121,59,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,75,101,121,115,91,103,114,111,117,112,75,101,121,93,59,92,110,92,110,32,32,32,32,105,102,32,40,33,103,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,32,61,32,123,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,75,101,121,58,32,103,114,111,117,112,75,101,121,44,92,110,32,32,32,32,32,32,32,32,105,116,101,109,115,58,32,91,93,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,103,114,111,117,112,75,101,121,115,91,103,114,111,117,112,75,101,121,93,32,61,32,103,114,111,117,112,59,92,110,32,32,32,32,32,32,110,101,119,71,114,111,117,112,115,46,112,117,115,104,40,103,114,111,117,112,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,103,114,111,117,112,46,105,116,101,109,115,46,112,117,115,104,40,105,116,101,109,41,59,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,110,101,119,71,114,111,117,112,115,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,114,101,115,101,116,83,105,122,101,40,105,116,101,109,41,32,123,92,110,32,32,105,116,101,109,46,111,114,103,83,105,122,101,32,61,32,110,117,108,108,59,92,110,32,32,105,116,101,109,46,115,105,122,101,32,61,32,110,117,108,108,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,109,97,107,101,73,116,101,109,40,103,114,111,117,112,75,101,121,44,32,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,101,108,58,32,101,108,44,92,110,32,32,32,32,103,114,111,117,112,75,101,121,58,32,103,114,111,117,112,75,101,121,44,92,110,32,32,32,32,109,111,117,110,116,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,110,101,101,100,85,112,100,97,116,101,58,32,116,114,117,101,44,92,110,32,32,32,32,99,111,110,116,101,110,116,58,32,101,108,32,63,32,101,108,46,111,117,116,101,114,72,84,77,76,32,58,32,92,34,92,34,44,92,110,32,32,32,32,114,101,99,116,58,32,123,92,110,32,32,32,32,32,32,116,111,112,58,32,68,85,77,77,89,95,80,79,83,73,84,73,79,78,44,92,110,32,32,32,32,32,32,108,101,102,116,58,32,68,85,77,77,89,95,80,79,83,73,84,73,79,78,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,47,42,42,92,110,32,42,32,68,101,99,111,114,97,116,111,114,32,116,104,97,116,32,109,97,107,101,115,32,116,104,101,32,109,101,116,104,111,100,32,111,102,32,105,110,102,105,110,105,116,101,103,114,105,100,32,97,118,97,105,108,97,98,108,101,32,105,110,32,116,104,101,32,102,114,97,109,101,119,111,114,107,46,92,110,32,42,32,64,107,111,32,237,148,132,235,160,136,236,158,132,236,155,140,237,129,172,236,151,144,236,132,156,32,236,157,184,237,148,188,235,139,136,237,138,184,234,183,184,235,166,172,235,147,156,236,157,152,32,235,169,148,236,134,140,235,147,156,235,165,188,32,236,130,172,236,154,169,237,149,160,32,236,136,152,32,236,158,136,234,178,140,32,237,149,152,235,138,148,32,235,141,176,236,189,148,235,160,136,236,157,180,237,132,176,46,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,32,96,96,96,106,115,92,110,32,42,32,105,109,112,111,114,116,32,78,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,44,32,123,32,119,105,116,104,73,110,102,105,110,105,116,101,71,114,105,100,77,101,116,104,111,100,115,32,125,32,102,114,111,109,32,92,34,64,101,103,106,115,47,105,110,102,105,110,105,116,101,103,114,105,100,92,34,59,92,110,32,42,92,110,32,42,32,99,108,97,115,115,32,73,110,102,105,110,105,116,101,71,114,105,100,32,101,120,116,101,110,100,115,32,82,101,97,99,116,46,67,111,109,112,111,110,101,110,116,60,80,97,114,116,105,97,108,60,73,110,102,105,110,105,116,101,71,114,105,100,80,114,111,112,115,32,38,32,73,110,102,105,110,105,116,101,71,114,105,100,79,112,116,105,111,110,115,62,62,32,123,92,110,32,42,32,32,32,38,35,54,52,59,119,105,116,104,73,110,102,105,110,105,116,101,71,114,105,100,77,101,116,104,111,100,115,92,110,32,42,32,32,32,112,114,105,118,97,116,101,32,105,110,102,105,110,105,116,101,103,114,105,100,58,32,78,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,59,92,110,32,42,32,125,92,110,32,42,32,96,96,96,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,119,105,116,104,73,110,102,105,110,105,116,101,71,114,105,100,77,101,116,104,111,100,115,40,112,114,111,116,111,116,121,112,101,44,32,105,110,102,105,110,105,116,101,103,114,105,100,78,97,109,101,41,32,123,92,110,32,32,79,98,106,101,99,116,46,107,101,121,115,40,73,78,70,73,78,73,84,69,71,82,73,68,95,77,69,84,72,79,68,83,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,105,102,32,40,112,114,111,116,111,116,121,112,101,91,110,97,109,101,93,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,112,114,111,116,111,116,121,112,101,91,110,97,109,101,93,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,97,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,95,105,32,61,32,48,59,32,95,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,95,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,97,114,103,115,91,95,105,93,32,61,32,97,114,103,117,109,101,110,116,115,91,95,105,93,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,40,95,97,32,61,32,116,104,105,115,91,105,110,102,105,110,105,116,101,103,114,105,100,78,97,109,101,93,41,91,110,97,109,101,93,46,97,112,112,108,121,40,95,97,44,32,97,114,103,115,41,59,32,47,47,32,102,105,120,32,96,116,104,105,115,96,32,116,121,112,101,32,116,111,32,114,101,116,117,114,110,32,121,111,117,114,32,111,119,110,32,96,105,110,102,105,110,105,116,101,103,114,105,100,96,32,105,110,115,116,97,110,99,101,32,116,111,32,116,104,101,32,105,110,115,116,97,110,99,101,32,117,115,105,110,103,32,116,104,101,32,100,101,99,111,114,97,116,111,114,46,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,117,108,116,32,61,61,61,32,116,104,105,115,91,105,110,102,105,110,105,116,101,103,114,105,100,78,97,109,101,93,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,32,32,125,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,104,97,115,67,108,97,115,115,40,101,108,101,109,101,110,116,44,32,99,108,97,115,115,78,97,109,101,41,32,123,92,110,32,32,105,102,32,40,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,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,99,108,97,115,115,78,97,109,101,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,33,33,101,108,101,109,101,110,116,46,99,108,97,115,115,78,97,109,101,46,109,97,116,99,104,40,110,101,119,32,82,101,103,69,120,112,40,92,34,40,92,92,92,92,115,124,94,41,92,34,32,43,32,99,108,97,115,115,78,97,109,101,32,43,32,92,34,40,92,92,92,92,115,124,36,41,92,34,41,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,97,100,100,67,108,97,115,115,40,101,108,101,109,101,110,116,44,32,99,108,97,115,115,78,97,109,101,41,32,123,92,110,32,32,105,102,32,40,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,41,32,123,92,110,32,32,32,32,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,99,108,97,115,115,78,97,109,101,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,101,108,101,109,101,110,116,46,99,108,97,115,115,78,97,109,101,32,43,61,32,92,34,32,92,34,32,43,32,99,108,97,115,115,78,97,109,101,59,92,110,32,32,125,92,110,125,92,110,102,117,110,99,116,105,111,110,32,105,115,79,98,106,101,99,116,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,103,101,116,82,97,110,103,101,67,111,115,116,40,118,97,108,117,101,44,32,114,97,110,103,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,118,97,108,117,101,32,45,32,114,97,110,103,101,91,49,93,44,32,114,97,110,103,101,91,48,93,32,45,32,118,97,108,117,101,44,32,48,41,32,43,32,49,59,92,110,125,92,110,92,110,118,97,114,32,73,116,101,109,77,97,110,97,103,101,114,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,73,116,101,109,77,97,110,97,103,101,114,40,41,32,123,92,110,32,32,32,32,47,47,32,103,114,111,117,112,115,92,110,32,32,32,32,116,104,105,115,46,95,103,114,111,117,112,115,32,61,32,91,93,59,32,47,47,32,103,114,111,117,112,32,107,101,121,115,92,110,92,110,32,32,32,32,116,104,105,115,46,95,103,114,111,117,112,75,101,121,115,32,61,32,123,125,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,73,116,101,109,77,97,110,97,103,101,114,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,73,116,101,109,77,97,110,97,103,101,114,46,116,111,73,116,101,109,115,32,61,32,102,117,110,99,116,105,111,110,32,40,101,108,101,109,101,110,116,115,44,32,103,114,111,117,112,75,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,108,101,109,101,110,116,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,107,101,73,116,101,109,40,103,114,111,117,112,75,101,121,44,32,101,108,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,73,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,100,97,116,97,44,32,112,114,111,112,101,114,116,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,97,99,99,44,32,118,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,99,99,46,99,111,110,99,97,116,40,118,91,112,114,111,112,101,114,116,121,93,41,59,92,110,32,32,32,32,125,44,32,91,93,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,108,101,97,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,103,114,111,117,112,115,32,61,32,91,93,59,92,110,32,32,32,32,116,104,105,115,46,95,103,114,111,117,112,75,101,121,115,32,61,32,123,125,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,83,116,97,116,117,115,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,97,114,116,75,101,121,44,32,101,110,100,75,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,116,97,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,73,110,100,101,120,32,61,32,77,97,116,104,46,109,97,120,40,116,104,105,115,46,105,110,100,101,120,79,102,40,115,116,97,114,116,75,101,121,41,44,32,48,41,59,92,110,32,32,32,32,118,97,114,32,101,110,100,73,110,100,101,120,32,61,32,116,104,105,115,46,105,110,100,101,120,79,102,40,101,110,100,75,101,121,41,32,43,32,49,32,124,124,32,100,97,116,97,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,95,100,97,116,97,58,32,100,97,116,97,115,46,115,108,105,99,101,40,115,116,97,114,116,73,110,100,101,120,44,32,101,110,100,73,110,100,101,120,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,100,97,116,97,46,105,116,101,109,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,50,32,61,32,123,125,59,92,110,32,32,32,32,32,32,32,32,32,32,73,84,69,77,95,75,69,89,83,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,32,105,110,32,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,116,101,109,50,91,107,101,121,93,32,61,32,105,116,101,109,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,50,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,97,116,97,50,32,61,32,97,115,115,105,103,110,40,123,125,44,32,100,97,116,97,41,59,92,110,32,32,32,32,32,32,32,32,100,97,116,97,50,46,105,116,101,109,115,32,61,32,105,116,101,109,115,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,50,59,92,110,32,32,32,32,32,32,125,41,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,83,116,97,116,117,115,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,97,116,117,115,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,115,116,97,116,117,115,46,95,100,97,116,97,59,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,40,41,59,92,110,32,32,32,32,100,97,116,97,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,44,32,105,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,46,105,110,115,101,114,116,71,114,111,117,112,40,103,114,111,117,112,44,32,105,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,103,114,111,117,112,115,46,108,101,110,103,116,104,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,102,105,116,32,61,32,102,117,110,99,116,105,111,110,32,40,98,97,115,101,44,32,104,111,114,105,122,111,110,116,97,108,41,32,123,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,59,92,110,92,110,32,32,32,32,105,102,32,40,33,103,114,111,117,112,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,112,114,111,112,101,114,116,121,32,61,32,104,111,114,105,122,111,110,116,97,108,32,63,32,92,34,108,101,102,116,92,34,32,58,32,92,34,116,111,112,92,34,59,92,110,92,110,32,32,32,32,105,102,32,40,98,97,115,101,32,33,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,103,114,111,117,112,46,105,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,108,105,110,101,115,32,61,32,103,114,111,117,112,46,111,117,116,108,105,110,101,115,59,92,110,32,32,32,32,32,32,32,32,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,46,114,101,99,116,91,112,114,111,112,101,114,116,121,93,32,45,61,32,98,97,115,101,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,111,117,116,108,105,110,101,115,46,115,116,97,114,116,32,61,32,111,117,116,108,105,110,101,115,46,115,116,97,114,116,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,115,116,97,114,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,97,114,116,32,45,32,98,97,115,101,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,111,117,116,108,105,110,101,115,46,101,110,100,32,61,32,111,117,116,108,105,110,101,115,46,101,110,100,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,101,110,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,110,100,32,45,32,98,97,115,101,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,112,108,117,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,112,114,111,112,101,114,116,121,44,32,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,105,115,85,110,100,101,102,105,110,101,100,40,115,116,97,114,116,41,32,63,32,116,104,105,115,46,95,103,114,111,117,112,115,32,58,32,116,104,105,115,46,115,108,105,99,101,71,114,111,117,112,115,40,115,116,97,114,116,44,32,40,105,115,85,110,100,101,102,105,110,101,100,40,101,110,100,41,32,63,32,115,116,97,114,116,32,58,32,101,110,100,41,32,43,32,49,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,73,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,100,97,116,97,44,32,112,114,111,112,101,114,116,121,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,79,117,116,108,105,110,101,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,44,32,112,114,111,112,101,114,116,121,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,32,63,32,100,97,116,97,46,111,117,116,108,105,110,101,115,91,112,114,111,112,101,114,116,121,93,32,58,32,91,93,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,69,100,103,101,73,110,100,101,120,32,61,32,102,117,110,99,116,105,111,110,32,40,99,117,114,115,111,114,44,32,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,32,61,32,99,117,114,115,111,114,32,61,61,61,32,92,34,115,116,97,114,116,92,34,32,63,32,92,34,109,105,110,92,34,32,58,32,92,34,109,97,120,92,34,59,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,59,92,110,32,32,32,32,118,97,114,32,116,97,114,103,101,116,86,97,108,117,101,32,61,32,99,117,114,115,111,114,32,61,61,61,32,92,34,115,116,97,114,116,92,34,32,63,32,73,110,102,105,110,105,116,121,32,58,32,45,73,110,102,105,110,105,116,121,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,115,116,97,114,116,59,32,105,32,60,61,32,101,110,100,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,77,97,116,104,91,112,114,111,112,93,46,97,112,112,108,121,40,77,97,116,104,44,32,116,104,105,115,46,103,101,116,79,117,116,108,105,110,101,40,105,44,32,99,117,114,115,111,114,41,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,99,117,114,115,111,114,32,61,61,61,32,92,34,115,116,97,114,116,92,34,32,38,38,32,116,97,114,103,101,116,86,97,108,117,101,32,62,32,118,97,108,117,101,32,124,124,32,99,117,114,115,111,114,32,61,61,61,32,92,34,101,110,100,92,34,32,38,38,32,116,97,114,103,101,116,86,97,108,117,101,32,60,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,86,97,108,117,101,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,105,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,69,100,103,101,86,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,32,40,99,117,114,115,111,114,44,32,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,116,104,105,115,46,103,101,116,71,114,111,117,112,40,116,104,105,115,46,103,101,116,69,100,103,101,73,110,100,101,120,40,99,117,114,115,111,114,44,32,115,116,97,114,116,44,32,101,110,100,41,41,59,92,110,92,110,32,32,32,32,105,102,32,40,103,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,117,116,108,105,110,101,115,32,61,32,103,114,111,117,112,46,111,117,116,108,105,110,101,115,91,99,117,114,115,111,114,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,111,117,116,108,105,110,101,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,91,99,117,114,115,111,114,32,61,61,61,32,92,34,115,116,97,114,116,92,34,32,63,32,92,34,109,105,110,92,34,32,58,32,92,34,109,97,120,92,34,93,46,97,112,112,108,121,40,77,97,116,104,44,32,111,117,116,108,105,110,101,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,48,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,108,101,97,114,79,117,116,108,105,110,101,115,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,97,114,116,67,117,114,115,111,114,44,32,101,110,100,67,117,114,115,111,114,41,32,123,92,110,32,32,32,32,105,102,32,40,115,116,97,114,116,67,117,114,115,111,114,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,67,117,114,115,111,114,32,61,32,45,49,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,101,110,100,67,117,114,115,111,114,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,32,61,32,45,49,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,100,97,116,97,115,32,61,32,116,104,105,115,46,103,101,116,71,114,111,117,112,115,40,41,59,92,110,32,32,32,32,100,97,116,97,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,44,32,99,117,114,115,111,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,114,116,67,117,114,115,111,114,32,60,61,32,99,117,114,115,111,114,32,38,38,32,99,117,114,115,111,114,32,60,61,32,101,110,100,67,117,114,115,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,103,114,111,117,112,46,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,109,46,114,101,99,116,46,116,111,112,32,61,32,68,85,77,77,89,95,80,79,83,73,84,73,79,78,59,92,110,32,32,32,32,32,32,32,32,105,116,101,109,46,114,101,99,116,46,108,101,102,116,32,61,32,68,85,77,77,89,95,80,79,83,73,84,73,79,78,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,103,114,111,117,112,46,111,117,116,108,105,110,101,115,46,115,116,97,114,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,103,114,111,117,112,46,111,117,116,108,105,110,101,115,46,101,110,100,32,61,32,91,93,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,77,97,120,69,100,103,101,86,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,108,101,110,103,116,104,32,45,32,49,59,32,105,32,62,61,32,48,59,32,45,45,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,101,110,100,32,61,32,103,114,111,117,112,115,91,105,93,46,111,117,116,108,105,110,101,115,46,101,110,100,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,101,110,100,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,111,115,32,61,32,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,32,101,110,100,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,111,115,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,48,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,112,114,101,112,101,110,100,71,114,111,117,112,32,61,32,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,115,101,114,116,71,114,111,117,112,40,103,114,111,117,112,44,32,48,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,97,112,112,101,110,100,71,114,111,117,112,32,61,32,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,115,101,114,116,71,114,111,117,112,40,103,114,111,117,112,44,32,116,104,105,115,46,95,103,114,111,117,112,115,46,108,101,110,103,116,104,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,105,110,115,101,114,116,71,114,111,117,112,32,61,32,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,44,32,103,114,111,117,112,73,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,102,32,40,103,114,111,117,112,73,110,100,101,120,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,97,112,112,101,110,100,71,114,111,117,112,40,103,114,111,117,112,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,112,114,101,118,73,116,101,109,115,32,61,32,103,114,111,117,112,46,105,116,101,109,115,32,124,124,32,91,93,59,92,110,92,110,32,32,32,32,118,97,114,32,110,101,119,71,114,111,117,112,32,61,32,95,95,97,115,115,105,103,110,40,95,95,97,115,115,105,103,110,40,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,115,58,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,58,32,91,93,44,92,110,32,32,32,32,32,32,32,32,101,110,100,58,32,91,93,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,103,114,111,117,112,41,44,32,123,92,110,32,32,32,32,32,32,105,116,101,109,115,58,32,91,93,44,92,110,32,32,32,32,32,32,110,101,101,100,85,112,100,97,116,101,58,32,116,114,117,101,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,103,114,111,117,112,115,46,115,112,108,105,99,101,40,103,114,111,117,112,73,110,100,101,120,44,32,48,44,32,110,101,119,71,114,111,117,112,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,103,114,111,117,112,75,101,121,115,91,110,101,119,71,114,111,117,112,46,103,114,111,117,112,75,101,121,93,32,61,32,110,101,119,71,114,111,117,112,59,92,110,32,32,32,32,112,114,101,118,73,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,44,32,105,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,46,105,110,115,101,114,116,40,105,116,101,109,44,32,103,114,111,117,112,73,110,100,101,120,44,32,105,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,71,114,111,117,112,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,121,110,99,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,59,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,75,101,121,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,75,101,121,115,59,92,110,32,32,32,32,118,97,114,32,110,101,119,71,114,111,117,112,115,32,61,32,99,97,116,101,103,111,114,105,122,101,40,105,116,101,109,115,41,59,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,40,48,44,95,101,103,106,115,95,108,105,115,116,95,100,105,102,102,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,105,102,102,41,40,103,114,111,117,112,115,44,32,110,101,119,71,114,111,117,112,115,44,32,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,103,114,111,117,112,46,103,114,111,117,112,75,101,121,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,114,101,109,111,118,101,100,32,61,32,114,101,115,117,108,116,46,114,101,109,111,118,101,100,44,92,110,32,32,32,32,32,32,32,32,97,100,100,101,100,32,61,32,114,101,115,117,108,116,46,97,100,100,101,100,44,92,110,32,32,32,32,32,32,32,32,109,97,105,110,116,97,105,110,101,100,32,61,32,114,101,115,117,108,116,46,109,97,105,110,116,97,105,110,101,100,59,92,110,32,32,32,32,114,101,109,111,118,101,100,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,114,101,109,111,118,101,100,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,114,101,109,111,118,101,100,73,110,100,101,120,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,103,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,100,101,108,101,116,101,32,103,114,111,117,112,75,101,121,115,91,103,114,111,117,112,46,103,114,111,117,112,75,101,121,93,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,110,101,120,116,71,114,111,117,112,115,32,61,32,91,93,59,92,110,32,32,32,32,109,97,105,110,116,97,105,110,101,100,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,114,111,109,73,110,100,101,120,32,61,32,95,97,91,48,93,59,92,110,32,32,32,32,32,32,110,101,120,116,71,114,111,117,112,115,46,112,117,115,104,40,103,114,111,117,112,115,91,102,114,111,109,73,110,100,101,120,93,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,116,104,105,115,46,95,103,114,111,117,112,115,32,61,32,110,101,120,116,71,114,111,117,112,115,59,92,110,32,32,32,32,97,100,100,101,100,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,97,100,100,101,100,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,46,105,110,115,101,114,116,71,114,111,117,112,40,110,101,119,71,114,111,117,112,115,91,97,100,100,101,100,73,110,100,101,120,93,44,32,97,100,100,101,100,73,110,100,101,120,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,109,97,105,110,116,97,105,110,101,100,46,114,101,118,101,114,115,101,40,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,111,73,110,100,101,120,32,61,32,95,97,91,49,93,59,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,115,121,110,99,73,116,101,109,115,40,116,111,73,110,100,101,120,44,32,110,101,119,71,114,111,117,112,115,91,116,111,73,110,100,101,120,93,46,105,116,101,109,115,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,105,110,115,101,114,116,32,61,32,102,117,110,99,116,105,111,110,32,40,110,101,119,73,116,101,109,44,32,103,114,111,117,112,73,110,100,101,120,44,32,105,116,101,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,105,102,32,40,103,114,111,117,112,73,110,100,101,120,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,73,110,100,101,120,32,61,32,45,49,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,105,116,101,109,73,110,100,101,120,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,105,116,101,109,73,110,100,101,120,32,61,32,45,49,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,75,101,121,32,61,32,110,101,119,73,116,101,109,46,103,114,111,117,112,75,101,121,59,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,59,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,75,101,121,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,75,101,121,115,59,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,40,103,114,111,117,112,73,110,100,101,120,32,62,32,45,49,32,63,32,103,114,111,117,112,115,91,103,114,111,117,112,73,110,100,101,120,93,32,58,32,103,114,111,117,112,75,101,121,115,91,103,114,111,117,112,75,101,121,93,41,32,124,124,32,116,104,105,115,46,105,110,115,101,114,116,71,114,111,117,112,40,123,92,110,32,32,32,32,32,32,103,114,111,117,112,75,101,121,58,32,103,114,111,117,112,75,101,121,92,110,32,32,32,32,125,44,32,103,114,111,117,112,73,110,100,101,120,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,103,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,103,114,111,117,112,46,110,101,101,100,85,112,100,97,116,101,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,73,116,101,109,32,61,32,95,95,97,115,115,105,103,110,40,123,92,110,32,32,32,32,32,32,99,111,110,116,101,110,116,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,109,111,117,110,116,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,110,101,101,100,85,112,100,97,116,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,114,101,99,116,58,32,123,92,110,32,32,32,32,32,32,32,32,116,111,112,58,32,68,85,77,77,89,95,80,79,83,73,84,73,79,78,44,92,110,32,32,32,32,32,32,32,32,108,101,102,116,58,32,68,85,77,77,89,95,80,79,83,73,84,73,79,78,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,110,101,119,73,116,101,109,41,59,92,110,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,73,116,101,109,115,32,61,32,103,114,111,117,112,46,105,116,101,109,115,59,92,110,92,110,32,32,32,32,105,102,32,40,105,116,101,109,73,110,100,101,120,32,61,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,73,116,101,109,115,46,112,117,115,104,40,103,114,111,117,112,73,116,101,109,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,73,116,101,109,115,46,115,112,108,105,99,101,40,105,116,101,109,73,110,100,101,120,44,32,48,44,32,103,114,111,117,112,73,116,101,109,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,103,114,111,117,112,73,116,101,109,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,114,101,109,111,118,101,71,114,111,117,112,32,61,32,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,73,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,46,115,112,108,105,99,101,40,103,114,111,117,112,73,110,100,101,120,44,32,49,41,91,48,93,59,92,110,92,110,32,32,32,32,105,102,32,40,33,103,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,100,101,108,101,116,101,32,116,104,105,115,46,95,103,114,111,117,112,75,101,121,115,91,103,114,111,117,112,46,103,114,111,117,112,75,101,121,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,103,114,111,117,112,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,114,101,109,111,118,101,32,61,32,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,73,110,100,101,120,44,32,105,116,101,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,104,105,115,46,103,101,116,71,114,111,117,112,40,103,114,111,117,112,73,110,100,101,120,41,59,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,110,117,108,108,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,105,102,32,40,33,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,109,115,58,32,105,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,58,32,103,114,111,117,112,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,100,97,116,97,46,110,101,101,100,85,112,100,97,116,101,32,61,32,116,114,117,101,59,32,47,47,32,114,101,109,111,118,101,32,105,116,101,109,32,105,110,102,111,114,109,97,116,105,111,110,92,110,92,110,32,32,32,32,105,116,101,109,115,32,61,32,100,97,116,97,46,105,116,101,109,115,46,115,112,108,105,99,101,40,105,116,101,109,73,110,100,101,120,44,32,49,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,100,97,116,97,46,105,116,101,109,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,32,61,32,116,104,105,115,46,114,101,109,111,118,101,71,114,111,117,112,40,103,114,111,117,112,73,110,100,101,120,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,105,116,101,109,115,58,32,105,116,101,109,115,44,92,110,32,32,32,32,32,32,103,114,111,117,112,58,32,103,114,111,117,112,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,105,110,100,101,120,79,102,32,61,32,102,117,110,99,116,105,111,110,32,40,100,97,116,97,41,32,123,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,100,97,116,97,32,61,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,75,101,121,32,61,32,92,34,92,34,32,43,32,40,116,121,112,101,111,102,32,100,97,116,97,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,32,63,32,100,97,116,97,46,103,114,111,117,112,75,101,121,32,58,32,100,97,116,97,41,59,92,110,32,32,32,32,118,97,114,32,100,97,116,97,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,100,97,116,97,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,103,114,111,117,112,75,101,121,32,61,61,61,32,92,34,92,34,32,43,32,100,97,116,97,115,91,105,93,46,103,114,111,117,112,75,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,105,110,100,101,120,101,115,79,102,69,108,101,109,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,75,101,121,32,61,32,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,71,82,79,85,80,75,69,89,95,65,84,84,41,59,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,73,110,100,101,120,32,61,32,116,104,105,115,46,105,110,100,101,120,79,102,40,123,92,110,32,32,32,32,32,32,103,114,111,117,112,75,101,121,58,32,103,114,111,117,112,75,101,121,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,73,110,100,101,120,32,61,32,45,49,59,92,110,92,110,32,32,32,32,105,102,32,40,103,114,111,117,112,73,110,100,101,120,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,104,105,115,46,103,101,116,71,114,111,117,112,40,103,114,111,117,112,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,100,97,116,97,46,105,116,101,109,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,97,116,97,46,105,116,101,109,115,91,105,93,46,101,108,32,61,61,61,32,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,73,110,100,101,120,32,61,32,105,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,73,110,100,101,120,58,32,103,114,111,117,112,73,110,100,101,120,44,92,110,32,32,32,32,32,32,105,116,101,109,73,110,100,101,120,58,32,105,116,101,109,73,110,100,101,120,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,108,105,99,101,71,114,111,117,112,115,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,103,114,111,117,112,115,46,115,108,105,99,101,40,115,116,97,114,116,44,32,101,110,100,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,71,114,111,117,112,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,103,114,111,117,112,115,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,71,114,111,117,112,66,121,75,101,121,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,103,114,111,117,112,75,101,121,115,91,107,101,121,93,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,71,114,111,117,112,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,103,114,111,117,112,115,91,105,110,100,101,120,93,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,121,110,99,73,116,101,109,115,32,61,32,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,73,110,100,101,120,44,32,110,101,119,73,116,101,109,115,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,102,32,40,33,110,101,119,73,116,101,109,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,114,101,109,111,118,101,71,114,111,117,112,40,103,114,111,117,112,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,103,101,116,71,114,111,117,112,40,103,114,111,117,112,73,110,100,101,120,41,46,105,116,101,109,115,59,92,110,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,40,48,44,95,101,103,106,115,95,108,105,115,116,95,100,105,102,102,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,105,102,102,41,40,105,116,101,109,115,44,32,110,101,119,73,116,101,109,115,44,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,46,105,116,101,109,75,101,121,59,92,110,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,97,100,100,101,100,32,61,32,95,97,46,97,100,100,101,100,44,92,110,32,32,32,32,32,32,32,32,109,97,105,110,116,97,105,110,101,100,32,61,32,95,97,46,109,97,105,110,116,97,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,99,104,97,110,103,101,100,32,61,32,95,97,46,99,104,97,110,103,101,100,44,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,100,32,61,32,95,97,46,114,101,109,111,118,101,100,59,92,110,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,91,103,114,111,117,112,73,110,100,101,120,93,59,92,110,32,32,32,32,118,97,114,32,110,101,120,116,73,116,101,109,115,32,61,32,91,93,59,92,110,32,32,32,32,109,97,105,110,116,97,105,110,101,100,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,114,111,109,73,110,100,101,120,32,61,32,95,97,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,110,101,120,116,73,110,100,101,120,32,61,32,95,97,91,49,93,59,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,105,116,101,109,115,91,102,114,111,109,73,110,100,101,120,93,59,92,110,32,32,32,32,32,32,118,97,114,32,110,101,119,73,116,101,109,32,61,32,110,101,119,73,116,101,109,115,91,110,101,120,116,73,110,100,101,120,93,59,92,110,32,32,32,32,32,32,97,115,115,105,103,110,40,105,116,101,109,44,32,110,101,119,73,116,101,109,41,59,92,110,32,32,32,32,32,32,110,101,120,116,73,116,101,109,115,46,112,117,115,104,40,105,116,101,109,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,103,114,111,117,112,46,105,116,101,109,115,32,61,32,110,101,120,116,73,116,101,109,115,59,92,110,92,110,32,32,32,32,105,102,32,40,99,104,97,110,103,101,100,46,108,101,110,103,116,104,32,124,124,32,114,101,109,111,118,101,100,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,46,110,101,101,100,85,112,100,97,116,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,97,100,100,101,100,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,97,100,100,101,100,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,46,105,110,115,101,114,116,40,110,101,119,73,116,101,109,115,91,97,100,100,101,100,73,110,100,101,120,93,44,32,103,114,111,117,112,73,110,100,101,120,44,32,97,100,100,101,100,73,110,100,101,120,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,73,116,101,109,77,97,110,97,103,101,114,59,92,110,125,40,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,84,114,97,110,115,105,116,105,111,110,40,115,116,121,108,101,41,32,123,92,110,32,32,115,116,121,108,101,91,84,82,65,78,83,73,84,73,79,78,32,43,32,92,34,45,112,114,111,112,101,114,116,121,92,34,93,32,61,32,92,34,92,34,59,92,110,32,32,115,116,121,108,101,91,84,82,65,78,83,73,84,73,79,78,32,43,32,92,34,45,100,117,114,97,116,105,111,110,92,34,93,32,61,32,92,34,92,34,59,92,110,32,32,115,116,121,108,101,91,84,82,65,78,83,70,79,82,77,93,32,61,32,92,34,92,34,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,84,114,97,110,115,105,116,105,111,110,40,115,116,121,108,101,44,32,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,44,32,112,111,115,49,44,32,112,111,115,50,41,32,123,92,110,32,32,105,102,32,40,33,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,41,32,123,92,110,32,32,32,32,114,101,109,111,118,101,84,114,97,110,115,105,116,105,111,110,40,115,116,121,108,101,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,112,111,115,49,46,108,101,102,116,32,61,61,61,32,112,111,115,50,46,108,101,102,116,32,38,38,32,112,111,115,49,46,116,111,112,32,61,61,61,32,112,111,115,50,46,116,111,112,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,92,110,32,32,115,116,121,108,101,91,84,82,65,78,83,73,84,73,79,78,32,43,32,92,34,45,112,114,111,112,101,114,116,121,92,34,93,32,61,32,84,82,65,78,83,70,79,82,77,32,43,32,92,34,44,119,105,100,116,104,44,104,101,105,103,104,116,92,34,59,92,110,32,32,115,116,121,108,101,91,84,82,65,78,83,73,84,73,79,78,32,43,32,92,34,45,100,117,114,97,116,105,111,110,92,34,93,32,61,32,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,32,43,32,92,34,115,92,34,59,92,110,32,32,115,116,121,108,101,91,84,82,65,78,83,70,79,82,77,93,32,61,32,92,34,116,114,97,110,115,108,97,116,101,40,92,34,32,43,32,40,112,111,115,49,46,108,101,102,116,32,45,32,112,111,115,50,46,108,101,102,116,41,32,43,32,92,34,112,120,44,92,34,32,43,32,40,112,111,115,49,46,116,111,112,32,45,32,112,111,115,50,46,116,111,112,41,32,43,32,92,34,112,120,41,92,34,59,92,110,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,111,110,116,97,105,110,101,114,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,115,101,108,101,99,116,67,111,110,116,97,105,110,101,114,32,61,32,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,92,34,46,92,34,32,43,32,67,79,78,84,65,73,78,69,82,95,67,76,65,83,83,78,65,77,69,41,59,92,110,92,110,32,32,105,102,32,40,115,101,108,101,99,116,67,111,110,116,97,105,110,101,114,41,32,123,92,110,32,32,32,32,115,101,108,101,99,116,67,111,110,116,97,105,110,101,114,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,32,61,32,92,34,114,101,108,97,116,105,118,101,92,34,59,92,110,32,32,32,32,115,101,108,101,99,116,67,111,110,116,97,105,110,101,114,46,115,116,121,108,101,46,104,101,105,103,104,116,32,61,32,92,34,49,48,48,37,92,34,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,101,108,101,99,116,67,111,110,116,97,105,110,101,114,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,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,92,34,100,105,118,92,34,41,59,92,110,32,32,99,111,110,116,97,105,110,101,114,46,99,108,97,115,115,78,97,109,101,32,61,32,67,79,78,84,65,73,78,69,82,95,67,76,65,83,83,78,65,77,69,59,92,110,32,32,99,111,110,116,97,105,110,101,114,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,32,61,32,92,34,114,101,108,97,116,105,118,101,92,34,59,92,110,32,32,99,111,110,116,97,105,110,101,114,46,115,116,121,108,101,46,104,101,105,103,104,116,32,61,32,92,34,49,48,48,37,92,34,59,92,110,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,101,108,101,109,101,110,116,46,99,104,105,108,100,114,101,110,59,92,110,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,47,47,32,102,111,114,32,73,69,56,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,99,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,99,104,105,108,100,114,101,110,91,48,93,41,59,92,110,32,32,125,92,110,92,110,32,32,101,108,101,109,101,110,116,46,97,112,112,101,110,100,67,104,105,108,100,40,99,111,110,116,97,105,110,101,114,41,59,92,110,32,32,114,101,116,117,114,110,32,99,111,110,116,97,105,110,101,114,59,92,110,125,92,110,92,110,118,97,114,32,68,79,77,82,101,110,100,101,114,101,114,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,68,79,77,82,101,110,100,101,114,101,114,40,101,108,101,109,101,110,116,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,123,92,110,32,32,32,32,32,32,117,115,101,79,102,102,115,101,116,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,105,115,69,113,117,97,108,83,105,122,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,112,101,114,99,101,110,116,97,103,101,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,32,32,116,104,105,115,46,95,115,105,122,101,32,61,32,123,92,110,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,58,32,45,49,44,92,110,32,32,32,32,32,32,118,105,101,119,58,32,45,49,44,92,110,32,32,32,32,32,32,118,105,101,119,112,111,114,116,58,32,45,49,44,92,110,32,32,32,32,32,32,105,116,101,109,58,32,110,117,108,108,92,110,32,32,32,32,125,59,92,110,32,32,32,32,116,104,105,115,46,95,111,114,103,83,116,121,108,101,32,61,32,123,125,59,92,110,32,32,32,32,116,104,105,115,46,95,105,115,83,105,122,101,80,101,114,99,101,110,116,97,103,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,116,104,105,115,46,95,105,115,80,111,115,80,101,114,99,101,110,116,97,103,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,97,115,115,105,103,110,40,116,104,105,115,46,111,112,116,105,111,110,115,44,32,111,112,116,105,111,110,115,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,105,110,105,116,40,101,108,101,109,101,110,116,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,114,101,115,105,122,101,40,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,68,79,77,82,101,110,100,101,114,101,114,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,68,79,77,82,101,110,100,101,114,101,114,46,114,101,109,111,118,101,73,116,101,109,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,41,32,123,92,110,32,32,32,32,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,109,46,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,68,79,77,82,101,110,100,101,114,101,114,46,114,101,109,111,118,101,69,108,101,109,101,110,116,40,105,116,101,109,46,101,108,41,59,92,110,32,32,32,32,32,32,32,32,105,116,101,109,46,101,108,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,68,79,77,82,101,110,100,101,114,101,114,46,114,101,109,111,118,101,69,108,101,109,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,78,111,100,101,32,61,32,101,108,101,109,101,110,116,32,38,38,32,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,59,92,110,92,110,32,32,32,32,105,102,32,40,33,112,97,114,101,110,116,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,101,108,101,109,101,110,116,41,59,92,110,32,32,125,59,92,110,92,110,32,32,68,79,77,82,101,110,100,101,114,101,114,46,99,114,101,97,116,101,69,108,101,109,101,110,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,41,32,123,92,110,32,32,32,32,105,102,32,40,33,105,116,101,109,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,110,111,69,108,101,109,101,110,116,73,116,101,109,115,32,61,32,105,116,101,109,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,105,116,101,109,46,101,108,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,110,111,69,108,101,109,101,110,116,73,116,101,109,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,115,32,61,32,36,40,110,111,69,108,101,109,101,110,116,73,116,101,109,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,97,46,99,111,110,116,101,110,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,110,116,101,110,116,46,114,101,112,108,97,99,101,40,47,94,91,92,92,115,92,92,117,70,69,70,70,93,43,124,91,92,92,115,92,92,117,70,69,70,70,93,43,36,47,103,44,32,92,34,92,34,41,59,92,110,32,32,32,32,125,41,46,106,111,105,110,40,92,34,92,34,41,44,32,116,114,117,101,41,59,92,110,32,32,32,32,110,111,69,108,101,109,101,110,116,73,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,105,116,101,109,46,101,108,32,61,32,101,108,101,109,101,110,116,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,83,116,97,116,117,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,99,115,115,84,101,120,116,58,32,116,104,105,115,46,99,111,110,116,97,105,110,101,114,46,115,116,121,108,101,46,99,115,115,84,101,120,116,44,92,110,32,32,32,32,32,32,95,115,105,122,101,58,32,97,115,115,105,103,110,40,123,125,44,32,116,104,105,115,46,95,115,105,122,101,41,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,83,116,97,116,117,115,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,97,116,117,115,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,111,110,116,97,105,110,101,114,46,115,116,121,108,101,46,99,115,115,84,101,120,116,32,61,32,115,116,97,116,117,115,46,99,115,115,84,101,120,116,59,92,110,32,32,32,32,97,115,115,105,103,110,40,116,104,105,115,46,95,115,105,122,101,44,32,115,116,97,116,117,115,46,95,115,105,122,101,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,117,112,100,97,116,101,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,105,115,69,113,117,97,108,83,105,122,101,32,61,32,95,97,46,105,115,69,113,117,97,108,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,32,61,32,95,97,46,105,115,67,111,110,115,116,97,110,116,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,117,115,101,79,102,102,115,101,116,32,61,32,95,97,46,117,115,101,79,102,102,115,101,116,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,116,104,105,115,46,95,115,105,122,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,116,101,109,46,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,69,113,117,97,108,83,105,122,101,32,38,38,32,33,115,105,122,101,46,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,115,105,122,101,46,105,116,101,109,32,61,32,117,115,101,79,102,102,115,101,116,32,63,32,103,101,116,79,102,102,115,101,116,83,105,122,101,40,105,116,101,109,46,101,108,41,32,58,32,103,101,116,82,101,99,116,83,105,122,101,40,105,116,101,109,46,101,108,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,116,101,109,46,115,105,122,101,32,61,32,105,115,69,113,117,97,108,83,105,122,101,32,38,38,32,97,115,115,105,103,110,40,123,125,44,32,115,105,122,101,46,105,116,101,109,41,32,124,124,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,32,38,38,32,105,116,101,109,46,111,114,103,83,105,122,101,32,38,38,32,105,116,101,109,46,111,114,103,83,105,122,101,46,119,105,100,116,104,32,38,38,32,97,115,115,105,103,110,40,123,125,44,32,105,116,101,109,46,111,114,103,83,105,122,101,41,32,124,124,32,40,117,115,101,79,102,102,115,101,116,32,63,32,103,101,116,79,102,102,115,101,116,83,105,122,101,40,105,116,101,109,46,101,108,41,32,58,32,103,101,116,82,101,99,116,83,105,122,101,40,105,116,101,109,46,101,108,41,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,105,116,101,109,46,111,114,103,83,105,122,101,32,124,124,32,33,105,116,101,109,46,111,114,103,83,105,122,101,46,119,105,100,116,104,32,124,124,32,33,105,116,101,109,46,111,114,103,83,105,122,101,46,104,101,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,109,46,111,114,103,83,105,122,101,32,61,32,97,115,115,105,103,110,40,123,125,44,32,105,116,101,109,46,115,105,122,101,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,114,101,97,116,101,65,110,100,73,110,115,101,114,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,68,79,77,82,101,110,100,101,114,101,114,46,99,114,101,97,116,101,69,108,101,109,101,110,116,115,40,105,116,101,109,115,41,59,92,110,32,32,32,32,116,104,105,115,46,114,101,110,100,101,114,73,116,101,109,115,40,105,116,101,109,115,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,105,110,115,101,114,116,40,105,116,101,109,115,44,32,105,115,65,112,112,101,110,100,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,114,101,110,100,101,114,73,116,101,109,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,46,114,101,110,100,101,114,73,116,101,109,40,105,116,101,109,44,32,105,116,101,109,46,114,101,99,116,44,32,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,114,101,110,100,101,114,73,116,101,109,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,44,32,114,101,99,116,44,32,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,102,32,40,33,105,116,101,109,46,101,108,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,101,108,32,61,32,105,116,101,109,46,101,108,44,92,110,32,32,32,32,32,32,32,32,112,114,101,118,82,101,99,116,32,61,32,105,116,101,109,46,112,114,101,118,82,101,99,116,59,92,110,32,32,32,32,118,97,114,32,115,116,121,108,101,32,61,32,101,108,46,115,116,121,108,101,59,92,110,32,32,32,32,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,71,82,79,85,80,75,69,89,95,65,84,84,44,32,92,34,92,34,32,43,32,105,116,101,109,46,103,114,111,117,112,75,101,121,41,59,92,110,32,32,32,32,115,116,121,108,101,46,112,111,115,105,116,105,111,110,32,61,32,92,34,97,98,115,111,108,117,116,101,92,34,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,40,91,92,34,119,105,100,116,104,92,34,44,32,92,34,104,101,105,103,104,116,92,34,93,44,32,114,101,99,116,44,32,115,116,121,108,101,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,32,38,38,32,84,82,65,78,83,73,84,73,79,78,32,38,38,32,112,114,101,118,82,101,99,116,41,32,123,92,110,32,32,32,32,32,32,115,101,116,84,114,97,110,115,105,116,105,111,110,40,115,116,121,108,101,44,32,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,44,32,114,101,99,116,44,32,112,114,101,118,82,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,101,108,91,84,82,65,78,83,73,84,73,79,78,95,78,65,77,69,93,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,101,108,91,84,82,65,78,83,73,84,73,79,78,95,78,65,77,69,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,97,100,100,79,110,99,101,69,118,101,110,116,40,101,108,44,32,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,82,101,99,116,32,61,32,105,116,101,109,46,114,101,99,116,59,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,84,114,97,110,115,105,116,105,111,110,40,115,116,121,108,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,114,101,110,100,101,114,40,91,92,34,108,101,102,116,92,34,44,32,92,34,116,111,112,92,34,93,44,32,105,116,101,109,82,101,99,116,44,32,115,116,121,108,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,116,101,109,46,112,114,101,118,82,101,99,116,32,61,32,105,116,101,109,82,101,99,116,59,92,110,32,32,32,32,32,32,32,32,101,108,91,84,82,65,78,83,73,84,73,79,78,95,78,65,77,69,93,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,40,91,92,34,108,101,102,116,92,34,44,32,92,34,116,111,112,92,34,93,44,32,114,101,99,116,44,32,115,116,121,108,101,41,59,92,110,92,110,32,32,32,32,32,32,105,116,101,109,46,112,114,101,118,82,101,99,116,32,61,32,114,101,99,116,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,86,105,101,119,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,115,105,122,101,46,118,105,101,119,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,86,105,101,119,112,111,114,116,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,115,105,122,101,46,118,105,101,119,112,111,114,116,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,115,105,122,101,46,99,111,110,116,97,105,110,101,114,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,115,105,122,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,115,105,122,101,46,99,111,110,116,97,105,110,101,114,32,61,32,115,105,122,101,59,92,110,32,32,32,32,116,104,105,115,46,99,111,110,116,97,105,110,101,114,46,115,116,121,108,101,91,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,32,63,32,92,34,119,105,100,116,104,92,34,32,58,32,92,34,104,101,105,103,104,116,92,34,93,32,61,32,115,105,122,101,32,43,32,92,34,112,120,92,34,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,114,101,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,104,111,114,105,122,111,110,116,97,108,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,59,92,110,32,32,32,32,118,97,114,32,118,105,101,119,32,61,32,116,104,105,115,46,118,105,101,119,59,92,110,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,116,104,105,115,46,95,99,97,108,99,83,105,122,101,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,115,105,122,101,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,105,115,82,101,115,105,122,101,32,61,32,115,105,122,101,32,33,61,61,32,116,104,105,115,46,95,115,105,122,101,46,118,105,101,119,112,111,114,116,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,82,101,115,105,122,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,115,105,122,101,32,61,32,123,92,110,32,32,32,32,32,32,32,32,118,105,101,119,58,32,45,49,44,92,110,32,32,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,58,32,45,49,44,92,110,32,32,32,32,32,32,32,32,118,105,101,119,112,111,114,116,58,32,115,105,122,101,44,92,110,32,32,32,32,32,32,32,32,105,116,101,109,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,115,105,122,101,46,118,105,101,119,32,61,32,104,111,114,105,122,111,110,116,97,108,32,63,32,103,101,116,67,108,105,101,110,116,87,105,100,116,104,40,118,105,101,119,41,32,58,32,103,101,116,67,108,105,101,110,116,72,101,105,103,104,116,40,118,105,101,119,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,82,101,115,105,122,101,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,105,115,78,101,101,100,101,100,82,101,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,99,97,108,99,83,105,122,101,40,41,32,33,61,61,32,116,104,105,115,46,95,115,105,122,101,46,118,105,101,119,112,111,114,116,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,108,101,97,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,111,110,116,97,105,110,101,114,46,105,110,110,101,114,72,84,77,76,32,61,32,92,34,92,34,59,92,110,32,32,32,32,116,104,105,115,46,99,111,110,116,97,105,110,101,114,46,115,116,121,108,101,91,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,32,63,32,92,34,119,105,100,116,104,92,34,32,58,32,92,34,104,101,105,103,104,116,92,34,93,32,61,32,92,34,92,34,59,92,110,32,32,32,32,116,104,105,115,46,95,115,105,122,101,32,61,32,123,92,110,32,32,32,32,32,32,105,116,101,109,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,118,105,101,119,112,111,114,116,58,32,45,49,44,92,110,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,58,32,45,49,44,92,110,32,32,32,32,32,32,118,105,101,119,58,32,45,49,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,100,101,115,116,114,111,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,40,41,59,92,110,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,110,116,97,105,110,101,114,59,92,110,32,32,32,32,118,97,114,32,112,114,111,112,101,114,116,121,59,92,110,92,110,32,32,32,32,102,111,114,32,40,112,114,111,112,101,114,116,121,32,105,110,32,116,104,105,115,46,95,111,114,103,83,116,121,108,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,91,99,111,110,116,97,105,110,101,114,32,63,32,92,34,118,105,101,119,92,34,32,58,32,92,34,99,111,110,116,97,105,110,101,114,92,34,93,46,115,116,121,108,101,91,112,114,111,112,101,114,116,121,93,32,61,32,116,104,105,115,46,95,111,114,103,83,116,121,108,101,91,112,114,111,112,101,114,116,121,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,99,111,110,116,97,105,110,101,114,32,61,61,61,32,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,111,110,116,97,105,110,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,99,111,110,116,97,105,110,101,114,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,105,110,105,116,32,61,32,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,32,61,32,36,40,101,108,41,59,92,110,32,32,32,32,118,97,114,32,115,116,121,108,101,32,61,32,103,101,116,83,116,121,108,101,40,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,32,61,32,95,97,46,99,111,110,116,97,105,110,101,114,44,92,110,32,32,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,32,61,32,95,97,46,104,111,114,105,122,111,110,116,97,108,44,92,110,32,32,32,32,32,32,32,32,112,101,114,99,101,110,116,97,103,101,32,61,32,95,97,46,112,101,114,99,101,110,116,97,103,101,59,92,110,92,110,32,32,32,32,105,102,32,40,112,101,114,99,101,110,116,97,103,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,105,115,83,105,122,101,80,101,114,99,101,110,116,97,103,101,32,61,32,112,101,114,99,101,110,116,97,103,101,32,61,61,61,32,116,114,117,101,32,124,124,32,112,101,114,99,101,110,116,97,103,101,46,105,110,100,101,120,79,102,40,92,34,115,105,122,101,92,34,41,32,62,32,45,49,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,105,115,80,111,115,80,101,114,99,101,110,116,97,103,101,32,61,32,112,101,114,99,101,110,116,97,103,101,32,61,61,61,32,116,114,117,101,32,124,124,32,112,101,114,99,101,110,116,97,103,101,46,105,110,100,101,120,79,102,40,92,34,112,111,115,105,116,105,111,110,92,34,41,32,62,32,45,49,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,115,116,121,108,101,46,112,111,115,105,116,105,111,110,32,61,61,61,32,92,34,115,116,97,116,105,99,92,34,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,111,114,103,83,116,121,108,101,46,112,111,115,105,116,105,111,110,32,61,32,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,59,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,32,61,32,92,34,114,101,108,97,116,105,118,101,92,34,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,99,111,110,116,97,105,110,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,104,111,114,105,122,111,110,116,97,108,32,63,32,91,92,34,88,92,34,44,32,92,34,89,92,34,93,32,58,32,91,92,34,89,92,34,44,32,92,34,88,92,34,93,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,111,114,103,83,116,121,108,101,46,111,118,101,114,102,108,111,119,88,32,61,32,101,108,101,109,101,110,116,46,115,116,121,108,101,46,111,118,101,114,102,108,111,119,88,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,111,114,103,83,116,121,108,101,46,111,118,101,114,102,108,111,119,89,32,61,32,101,108,101,109,101,110,116,46,115,116,121,108,101,46,111,118,101,114,102,108,111,119,89,59,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,46,115,116,121,108,101,91,92,34,111,118,101,114,102,108,111,119,92,34,32,43,32,116,97,114,103,101,116,91,48,93,93,32,61,32,92,34,115,99,114,111,108,108,92,34,59,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,46,115,116,121,108,101,91,92,34,111,118,101,114,102,108,111,119,92,34,32,43,32,116,97,114,103,101,116,91,49,93,93,32,61,32,92,34,104,105,100,100,101,110,92,34,59,92,110,32,32,32,32,32,32,116,104,105,115,46,118,105,101,119,32,61,32,101,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,116,104,105,115,46,99,111,110,116,97,105,110,101,114,32,61,32,99,111,110,116,97,105,110,101,114,32,61,61,61,32,116,114,117,101,32,63,32,99,114,101,97,116,101,67,111,110,116,97,105,110,101,114,40,116,104,105,115,46,118,105,101,119,41,32,58,32,99,111,110,116,97,105,110,101,114,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,118,105,101,119,32,61,32,119,105,110,59,92,110,32,32,32,32,32,32,116,104,105,115,46,99,111,110,116,97,105,110,101,114,32,61,32,101,108,101,109,101,110,116,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,105,110,115,101,114,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,105,115,65,112,112,101,110,100,44,32,115,116,121,108,101,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,32,61,32,116,104,105,115,46,99,111,110,116,97,105,110,101,114,59,92,110,32,32,32,32,118,97,114,32,100,102,32,61,32,100,111,99,117,109,101,110,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,59,92,110,32,32,32,32,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,115,116,121,108,101,32,38,38,32,95,116,104,105,115,46,114,101,110,100,101,114,73,116,101,109,40,105,116,101,109,44,32,115,116,121,108,101,41,59,92,110,32,32,32,32,32,32,105,115,65,112,112,101,110,100,32,63,32,100,102,46,97,112,112,101,110,100,67,104,105,108,100,40,105,116,101,109,46,101,108,41,32,58,32,100,102,46,105,110,115,101,114,116,66,101,102,111,114,101,40,105,116,101,109,46,101,108,44,32,100,102,46,102,105,114,115,116,67,104,105,108,100,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,105,115,65,112,112,101,110,100,32,63,32,99,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,100,102,41,32,58,32,99,111,110,116,97,105,110,101,114,46,105,110,115,101,114,116,66,101,102,111,114,101,40,100,102,44,32,99,111,110,116,97,105,110,101,114,46,102,105,114,115,116,67,104,105,108,100,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,99,97,108,99,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,32,63,32,103,101,116,67,108,105,101,110,116,72,101,105,103,104,116,40,116,104,105,115,46,99,111,110,116,97,105,110,101,114,41,32,58,32,103,101,116,67,108,105,101,110,116,87,105,100,116,104,40,116,104,105,115,46,99,111,110,116,97,105,110,101,114,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,112,114,111,112,101,114,116,105,101,115,44,32,114,101,99,116,44,32,115,116,121,108,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,115,83,105,122,101,80,101,114,99,101,110,116,97,103,101,32,61,32,116,104,105,115,46,95,105,115,83,105,122,101,80,101,114,99,101,110,116,97,103,101,59,92,110,32,32,32,32,118,97,114,32,105,115,80,111,115,80,101,114,99,101,110,116,97,103,101,32,61,32,116,104,105,115,46,95,105,115,80,111,115,80,101,114,99,101,110,116,97,103,101,59,92,110,32,32,32,32,118,97,114,32,118,105,101,119,112,111,114,116,83,105,122,101,32,61,32,116,104,105,115,46,103,101,116,86,105,101,119,112,111,114,116,83,105,122,101,40,41,59,92,110,32,32,32,32,118,97,114,32,104,111,114,105,122,111,110,116,97,108,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,59,92,110,32,32,32,32,112,114,111,112,101,114,116,105,101,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,112,32,105,110,32,114,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,115,72,111,114,105,122,111,110,116,97,108,80,101,114,99,101,110,116,97,103,101,32,61,32,104,111,114,105,122,111,110,116,97,108,32,38,38,32,40,105,115,83,105,122,101,80,101,114,99,101,110,116,97,103,101,32,38,38,32,112,32,61,61,61,32,92,34,104,101,105,103,104,116,92,34,32,124,124,32,105,115,80,111,115,80,101,114,99,101,110,116,97,103,101,32,38,38,32,112,32,61,61,61,32,92,34,116,111,112,92,34,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,115,86,101,114,116,105,99,97,108,80,101,114,99,101,110,116,97,103,101,32,61,32,33,104,111,114,105,122,111,110,116,97,108,32,38,38,32,40,105,115,83,105,122,101,80,101,114,99,101,110,116,97,103,101,32,38,38,32,112,32,61,61,61,32,92,34,119,105,100,116,104,92,34,32,124,124,32,105,115,80,111,115,80,101,114,99,101,110,116,97,103,101,32,38,38,32,112,32,61,61,61,32,92,34,108,101,102,116,92,34,41,59,92,110,32,32,32,32,32,32,115,116,121,108,101,91,112,93,32,61,32,105,115,72,111,114,105,122,111,110,116,97,108,80,101,114,99,101,110,116,97,103,101,32,124,124,32,105,115,86,101,114,116,105,99,97,108,80,101,114,99,101,110,116,97,103,101,32,63,32,114,101,99,116,91,112,93,32,47,32,118,105,101,119,112,111,114,116,83,105,122,101,32,42,32,49,48,48,32,43,32,92,34,37,92,34,32,58,32,114,101,99,116,91,112,93,32,43,32,92,34,112,120,92,34,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,68,79,77,82,101,110,100,101,114,101,114,59,92,110,125,40,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,86,105,115,105,98,108,101,40,103,114,111,117,112,44,32,116,104,114,101,115,104,111,108,100,44,32,115,99,114,111,108,108,80,111,115,44,32,101,110,100,83,99,114,111,108,108,80,111,115,41,32,123,92,110,32,32,118,97,114,32,105,116,101,109,115,32,61,32,103,114,111,117,112,46,105,116,101,109,115,44,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,115,32,61,32,103,114,111,117,112,46,111,117,116,108,105,110,101,115,59,92,110,32,32,118,97,114,32,115,116,97,114,116,32,61,32,111,117,116,108,105,110,101,115,46,115,116,97,114,116,59,92,110,32,32,118,97,114,32,101,110,100,32,61,32,111,117,116,108,105,110,101,115,46,101,110,100,59,92,110,92,110,32,32,105,102,32,40,115,116,97,114,116,46,108,101,110,103,116,104,32,61,61,61,32,48,32,124,124,32,101,110,100,46,108,101,110,103,116,104,32,61,61,61,32,48,32,124,124,32,33,105,116,101,109,115,46,108,101,110,103,116,104,32,124,124,32,33,105,116,101,109,115,91,48,93,46,101,108,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,50,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,109,105,110,32,61,32,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,77,97,116,104,44,32,115,116,97,114,116,41,59,92,110,32,32,118,97,114,32,109,97,120,32,61,32,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,32,101,110,100,41,59,92,110,92,110,32,32,105,102,32,40,101,110,100,83,99,114,111,108,108,80,111,115,32,43,32,116,104,114,101,115,104,111,108,100,32,60,32,109,105,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,43,49,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,115,99,114,111,108,108,80,111,115,32,45,32,116,104,114,101,115,104,111,108,100,32,62,32,109,97,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,48,59,92,110,125,92,110,92,110,118,97,114,32,73,110,102,105,110,105,116,101,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,73,110,102,105,110,105,116,101,40,105,116,101,109,77,97,110,103,101,114,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,97,115,115,105,103,110,40,123,92,110,32,32,32,32,32,32,117,115,101,82,101,99,121,99,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,116,104,114,101,115,104,111,108,100,58,32,49,48,48,44,92,110,32,32,32,32,32,32,97,112,112,101,110,100,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,111,105,100,32,48,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,112,114,101,112,101,110,100,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,111,105,100,32,48,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,99,121,99,108,101,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,111,105,100,32,48,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,32,61,32,105,116,101,109,77,97,110,103,101,114,59,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,40,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,73,110,102,105,110,105,116,101,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,115,105,122,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,115,116,97,116,117,115,46,115,105,122,101,32,61,32,115,105,122,101,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,121,110,99,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,97,116,117,115,32,61,32,116,104,105,115,46,95,115,116,97,116,117,115,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,67,117,114,115,111,114,32,61,32,115,116,97,116,117,115,46,115,116,97,114,116,67,117,114,115,111,114,44,92,110,32,32,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,32,61,32,115,116,97,116,117,115,46,101,110,100,67,117,114,115,111,114,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,77,97,110,97,103,101,114,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,59,92,110,32,32,32,32,118,97,114,32,112,114,101,118,86,105,115,105,115,98,108,101,71,114,111,117,112,115,32,61,32,105,116,101,109,77,97,110,97,103,101,114,46,115,108,105,99,101,71,114,111,117,112,115,40,115,116,97,114,116,67,117,114,115,111,114,44,32,101,110,100,67,117,114,115,111,114,32,43,32,49,41,59,92,110,32,32,32,32,118,97,114,32,112,114,101,118,86,105,115,105,98,108,101,73,116,101,109,115,32,61,32,73,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,112,114,101,118,86,105,115,105,115,98,108,101,71,114,111,117,112,115,44,32,92,34,105,116,101,109,115,92,34,41,59,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,105,116,101,109,77,97,110,97,103,101,114,46,115,121,110,99,40,105,116,101,109,115,41,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,71,114,111,117,112,32,61,32,102,105,110,100,40,112,114,101,118,86,105,115,105,115,98,108,101,71,114,111,117,112,115,44,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,103,114,111,117,112,75,101,121,32,61,32,95,97,46,103,114,111,117,112,75,101,121,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,71,114,111,117,112,66,121,75,101,121,40,103,114,111,117,112,75,101,121,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,101,110,100,71,114,111,117,112,32,61,32,102,105,110,100,76,97,115,116,40,112,114,101,118,86,105,115,105,115,98,108,101,71,114,111,117,112,115,44,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,103,114,111,117,112,75,101,121,32,61,32,95,97,46,103,114,111,117,112,75,101,121,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,71,114,111,117,112,66,121,75,101,121,40,103,114,111,117,112,75,101,121,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,110,101,120,116,83,116,97,114,116,67,117,114,115,111,114,32,61,32,115,116,97,114,116,71,114,111,117,112,32,63,32,105,116,101,109,77,97,110,97,103,101,114,46,105,110,100,101,120,79,102,40,115,116,97,114,116,71,114,111,117,112,41,32,58,32,45,49,59,92,110,32,32,32,32,118,97,114,32,110,101,120,116,69,110,100,67,117,114,115,111,114,32,61,32,101,110,100,71,114,111,117,112,32,63,32,105,116,101,109,77,97,110,97,103,101,114,46,105,110,100,101,120,79,102,40,101,110,100,71,114,111,117,112,41,32,58,32,45,49,59,92,110,92,110,32,32,32,32,105,102,32,40,110,101,120,116,83,116,97,114,116,67,117,114,115,111,114,32,62,32,45,49,32,38,38,32,110,101,120,116,69,110,100,67,117,114,115,111,114,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,119,104,101,110,32,116,104,101,32,97,114,114,97,110,103,101,109,101,110,116,32,105,115,32,105,110,118,101,114,116,101,100,46,92,110,32,32,32,32,32,32,47,47,32,112,114,101,118,86,105,115,105,115,98,108,101,71,114,111,117,112,115,32,105,115,32,91,48,44,32,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,32,47,47,32,98,117,116,32,99,117,114,114,101,110,116,71,114,111,117,112,115,32,105,115,32,91,51,44,32,50,44,32,49,44,32,48,93,92,110,32,32,32,32,32,32,47,47,32,115,111,44,32,110,101,120,116,83,116,97,114,116,67,117,114,115,111,114,32,105,115,32,51,44,32,97,110,100,32,110,101,120,116,69,110,100,67,117,114,115,111,114,32,105,115,32,48,92,110,32,32,32,32,32,32,118,97,114,32,109,105,110,67,117,114,115,111,114,32,61,32,77,97,116,104,46,109,105,110,40,110,101,120,116,83,116,97,114,116,67,117,114,115,111,114,44,32,110,101,120,116,69,110,100,67,117,114,115,111,114,41,59,92,110,32,32,32,32,32,32,118,97,114,32,109,97,120,67,117,114,115,111,114,32,61,32,77,97,116,104,46,109,97,120,40,110,101,120,116,83,116,97,114,116,67,117,114,115,111,114,44,32,110,101,120,116,69,110,100,67,117,114,115,111,114,41,59,92,110,32,32,32,32,32,32,110,101,120,116,83,116,97,114,116,67,117,114,115,111,114,32,61,32,109,105,110,67,117,114,115,111,114,59,92,110,32,32,32,32,32,32,110,101,120,116,69,110,100,67,117,114,115,111,114,32,61,32,109,97,120,67,117,114,115,111,114,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,101,120,116,69,110,100,67,117,114,115,111,114,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,110,101,120,116,83,116,97,114,116,67,117,114,115,111,114,32,61,32,110,101,120,116,69,110,100,67,117,114,115,111,114,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,101,120,116,83,116,97,114,116,67,117,114,115,111,114,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,110,101,120,116,69,110,100,67,117,114,115,111,114,32,61,32,110,101,120,116,83,116,97,114,116,67,117,114,115,111,114,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,116,97,116,117,115,46,115,116,97,114,116,67,117,114,115,111,114,32,61,32,110,101,120,116,83,116,97,114,116,67,117,114,115,111,114,59,92,110,32,32,32,32,115,116,97,116,117,115,46,101,110,100,67,117,114,115,111,114,32,61,32,110,101,120,116,69,110,100,67,117,114,115,111,114,59,92,110,92,110,32,32,32,32,105,102,32,40,114,101,115,117,108,116,46,114,101,109,111,118,101,100,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,114,101,108,97,121,111,117,116,92,34,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,110,101,120,116,86,105,115,105,98,108,101,73,116,101,109,115,32,61,32,105,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,92,34,105,116,101,109,115,92,34,44,32,115,116,97,114,116,67,117,114,115,111,114,44,32,101,110,100,67,117,114,115,111,114,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,95,97,32,61,32,40,48,44,95,101,103,106,115,95,108,105,115,116,95,100,105,102,102,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,105,102,102,41,40,112,114,101,118,86,105,115,105,98,108,101,73,116,101,109,115,44,32,110,101,120,116,86,105,115,105,98,108,101,73,116,101,109,115,44,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,75,101,121,32,61,32,95,97,46,105,116,101,109,75,101,121,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,75,101,121,59,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,65,100,100,101,100,32,61,32,95,97,46,97,100,100,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,82,101,109,111,118,101,100,32,61,32,95,97,46,114,101,109,111,118,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,67,104,97,110,103,101,100,32,61,32,95,97,46,99,104,97,110,103,101,100,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,118,105,115,105,98,108,101,65,100,100,101,100,46,108,101,110,103,116,104,32,38,38,32,40,118,105,115,105,98,108,101,67,104,97,110,103,101,100,46,108,101,110,103,116,104,32,62,32,48,32,124,124,32,118,105,115,105,98,108,101,82,101,109,111,118,101,100,46,108,101,110,103,116,104,32,62,32,48,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,108,97,121,111,117,116,92,34,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,92,34,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,114,101,99,121,99,108,101,32,61,32,102,117,110,99,116,105,111,110,32,40,115,99,114,111,108,108,80,111,115,44,32,105,115,70,111,114,119,97,114,100,41,32,123,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,99,121,99,108,101,32,124,124,32,116,121,112,101,111,102,32,115,99,114,111,108,108,80,111,115,32,33,61,61,32,92,34,110,117,109,98,101,114,92,34,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,95,115,116,97,116,117,115,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,67,117,114,115,111,114,32,61,32,95,97,46,115,116,97,114,116,67,117,114,115,111,114,44,92,110,32,32,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,32,61,32,95,97,46,101,110,100,67,117,114,115,111,114,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,32,61,32,95,97,46,115,105,122,101,59,92,110,92,110,32,32,32,32,105,102,32,40,115,116,97,114,116,67,117,114,115,111,114,32,61,61,61,32,45,49,32,124,124,32,101,110,100,67,117,114,115,111,114,32,61,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,101,110,100,83,99,114,111,108,108,80,111,115,32,61,32,115,99,114,111,108,108,80,111,115,32,43,32,115,105,122,101,59,92,110,32,32,32,32,118,97,114,32,95,98,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,116,104,114,101,115,104,111,108,100,32,61,32,95,98,46,116,104,114,101,115,104,111,108,100,44,92,110,32,32,32,32,32,32,32,32,114,101,99,121,99,108,101,32,61,32,95,98,46,114,101,99,121,99,108,101,59,92,110,92,110,32,32,32,32,118,97,114,32,118,105,115,105,98,108,101,115,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,115,108,105,99,101,71,114,111,117,112,115,40,115,116,97,114,116,67,117,114,115,111,114,44,32,101,110,100,67,117,114,115,111,114,32,43,32,49,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,86,105,115,105,98,108,101,40,103,114,111,117,112,44,32,116,104,114,101,115,104,111,108,100,44,32,115,99,114,111,108,108,80,111,115,44,32,101,110,100,83,99,114,111,108,108,80,111,115,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,118,105,115,105,98,108,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,32,61,32,105,115,70,111,114,119,97,114,100,32,63,32,48,32,58,32,118,105,115,105,98,108,101,115,46,108,97,115,116,73,110,100,101,120,79,102,40,48,41,59,92,110,32,32,32,32,118,97,114,32,101,110,100,32,61,32,105,115,70,111,114,119,97,114,100,32,63,32,118,105,115,105,98,108,101,115,46,105,110,100,101,120,79,102,40,48,41,32,45,32,49,32,58,32,118,105,115,105,98,108,101,115,46,108,101,110,103,116,104,32,45,32,49,59,92,110,92,110,32,32,32,32,105,102,32,40,33,105,115,70,111,114,119,97,114,100,32,38,38,32,115,116,97,114,116,32,33,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,32,43,61,32,49,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,115,116,97,114,116,32,60,32,48,32,124,124,32,101,110,100,32,60,32,48,32,124,124,32,115,116,97,114,116,32,62,32,101,110,100,32,124,124,32,101,110,100,32,45,32,115,116,97,114,116,32,43,32,49,32,62,61,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,116,97,114,116,32,61,32,115,116,97,114,116,67,117,114,115,111,114,32,43,32,115,116,97,114,116,59,92,110,32,32,32,32,101,110,100,32,61,32,115,116,97,114,116,67,117,114,115,111,114,32,43,32,101,110,100,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,70,111,114,119,97,114,100,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,67,117,114,115,111,114,40,92,34,115,116,97,114,116,92,34,44,32,101,110,100,32,43,32,49,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,67,117,114,115,111,114,40,92,34,101,110,100,92,34,44,32,115,116,97,114,116,32,45,32,49,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,99,121,99,108,101,40,123,92,110,32,32,32,32,32,32,115,116,97,114,116,58,32,115,116,97,114,116,44,92,110,32,32,32,32,32,32,101,110,100,58,32,101,110,100,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,99,114,111,108,108,32,61,32,102,117,110,99,116,105,111,110,32,40,115,99,114,111,108,108,80,111,115,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,103,101,116,67,117,114,115,111,114,115,40,41,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,67,117,114,115,111,114,32,61,32,95,97,91,48,93,44,92,110,32,32,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,32,61,32,95,97,91,49,93,59,92,110,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,59,92,110,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,115,99,114,111,108,108,80,111,115,32,33,61,61,32,92,34,110,117,109,98,101,114,92,34,32,124,124,32,115,116,97,114,116,67,117,114,115,111,114,32,61,61,61,32,45,49,32,124,124,32,101,110,100,67,117,114,115,111,114,32,61,61,61,32,45,49,32,124,124,32,33,105,116,101,109,115,46,115,105,122,101,40,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,116,104,105,115,46,95,115,116,97,116,117,115,46,115,105,122,101,59,92,110,32,32,32,32,118,97,114,32,95,98,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,116,104,114,101,115,104,111,108,100,32,61,32,95,98,46,116,104,114,101,115,104,111,108,100,44,92,110,32,32,32,32,32,32,32,32,97,112,112,101,110,100,32,61,32,95,98,46,97,112,112,101,110,100,44,92,110,32,32,32,32,32,32,32,32,112,114,101,112,101,110,100,32,61,32,95,98,46,112,114,101,112,101,110,100,59,92,110,32,32,32,32,118,97,114,32,100,97,116,97,115,32,61,32,105,116,101,109,115,46,103,101,116,71,114,111,117,112,115,40,41,59,92,110,32,32,32,32,118,97,114,32,101,110,100,83,99,114,111,108,108,80,111,115,32,61,32,115,99,114,111,108,108,80,111,115,32,43,32,115,105,122,101,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,69,100,103,101,80,111,115,32,61,32,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,32,100,97,116,97,115,91,115,116,97,114,116,67,117,114,115,111,114,93,46,111,117,116,108,105,110,101,115,46,115,116,97,114,116,41,59,92,110,32,32,32,32,118,97,114,32,101,110,100,69,100,103,101,80,111,115,32,61,32,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,77,97,116,104,44,32,100,97,116,97,115,91,101,110,100,67,117,114,115,111,114,93,46,111,117,116,108,105,110,101,115,46,101,110,100,41,59,92,110,32,32,32,32,118,97,114,32,118,105,115,105,98,108,101,115,32,61,32,100,97,116,97,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,44,32,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,97,32,61,32,103,114,111,117,112,46,111,117,116,108,105,110,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,95,97,46,115,116,97,114,116,44,92,110,32,32,32,32,32,32,32,32,32,32,101,110,100,32,61,32,95,97,46,101,110,100,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,115,116,97,114,116,46,108,101,110,103,116,104,32,124,124,32,33,101,110,100,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,114,116,80,111,115,32,61,32,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,77,97,116,104,44,32,115,116,97,114,116,41,59,92,110,32,32,32,32,32,32,118,97,114,32,101,110,100,80,111,115,32,61,32,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,32,101,110,100,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,114,116,80,111,115,32,45,32,116,104,114,101,115,104,111,108,100,32,60,61,32,101,110,100,83,99,114,111,108,108,80,111,115,32,38,38,32,115,99,114,111,108,108,80,111,115,32,60,61,32,101,110,100,80,111,115,32,43,32,116,104,114,101,115,104,111,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,73,110,100,101,120,32,61,32,118,105,115,105,98,108,101,115,46,105,110,100,101,120,79,102,40,116,114,117,101,41,59,92,110,32,32,32,32,118,97,114,32,101,110,100,73,110,100,101,120,32,61,32,118,105,115,105,98,108,101,115,46,108,97,115,116,73,110,100,101,120,79,102,40,116,114,117,101,41,59,92,110,92,110,32,32,32,32,105,102,32,40,126,115,116,97,114,116,73,110,100,101,120,32,38,38,32,115,116,97,114,116,73,110,100,101,120,32,60,32,115,116,97,114,116,67,117,114,115,111,114,41,32,123,92,110,32,32,32,32,32,32,112,114,101,112,101,110,100,40,123,92,110,32,32,32,32,32,32,32,32,99,97,99,104,101,58,32,100,97,116,97,115,46,115,108,105,99,101,40,115,116,97,114,116,73,110,100,101,120,44,32,77,97,116,104,46,109,105,110,40,115,116,97,114,116,67,117,114,115,111,114,44,32,101,110,100,73,110,100,101,120,32,43,32,49,41,41,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,101,110,100,67,117,114,115,111,114,32,60,32,101,110,100,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,97,112,112,101,110,100,40,123,92,110,32,32,32,32,32,32,32,32,99,97,99,104,101,58,32,100,97,116,97,115,46,115,108,105,99,101,40,77,97,116,104,46,109,97,120,40,115,116,97,114,116,73,110,100,101,120,44,32,101,110,100,67,117,114,115,111,114,32,43,32,49,41,44,32,101,110,100,73,110,100,101,120,32,43,32,49,41,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,105,102,32,121,111,117,32,104,97,118,101,32,100,97,116,97,40,110,111,32,99,97,99,104,101,100,65,112,112,101,110,100,68,97,116,97,44,32,104,97,115,32,99,97,99,104,101,100,80,114,101,112,101,110,100,68,97,116,97,41,32,116,111,32,112,101,112,101,110,100,44,32,114,101,113,117,101,115,116,32,105,116,46,92,110,32,32,32,32,32,32,118,97,114,32,99,97,99,104,101,100,65,112,112,101,110,100,68,97,116,97,32,61,32,100,97,116,97,115,46,115,108,105,99,101,40,101,110,100,67,117,114,115,111,114,32,43,32,49,44,32,101,110,100,67,117,114,115,111,114,32,43,32,50,41,59,92,110,32,32,32,32,32,32,118,97,114,32,99,97,99,104,101,100,80,114,101,112,101,110,100,68,97,116,97,32,61,32,100,97,116,97,115,46,115,108,105,99,101,40,115,116,97,114,116,67,117,114,115,111,114,32,45,32,49,44,32,115,116,97,114,116,67,117,114,115,111,114,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,115,80,114,101,112,101,110,100,32,61,32,115,99,114,111,108,108,80,111,115,32,60,61,32,115,116,97,114,116,69,100,103,101,80,111,115,32,43,32,116,104,114,101,115,104,111,108,100,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,101,110,100,83,99,114,111,108,108,80,111,115,32,62,61,32,101,110,100,69,100,103,101,80,111,115,32,45,32,116,104,114,101,115,104,111,108,100,32,38,38,32,40,33,105,115,80,114,101,112,101,110,100,32,124,124,32,99,97,99,104,101,100,65,112,112,101,110,100,68,97,116,97,46,108,101,110,103,116,104,32,124,124,32,33,99,97,99,104,101,100,80,114,101,112,101,110,100,68,97,116,97,46,108,101,110,103,116,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,97,112,112,101,110,100,40,123,92,110,32,32,32,32,32,32,32,32,32,32,99,97,99,104,101,58,32,99,97,99,104,101,100,65,112,112,101,110,100,68,97,116,97,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,80,114,101,112,101,110,100,41,32,123,92,110,32,32,32,32,32,32,32,32,112,114,101,112,101,110,100,40,123,92,110,32,32,32,32,32,32,32,32,32,32,99,97,99,104,101,58,32,99,97,99,104,101,100,80,114,101,112,101,110,100,68,97,116,97,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,67,117,114,115,111,114,32,61,32,102,117,110,99,116,105,111,110,32,40,99,117,114,115,111,114,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,97,116,117,115,32,61,32,116,104,105,115,46,95,115,116,97,116,117,115,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,105,116,101,109,115,46,115,105,122,101,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,99,121,99,108,101,41,32,123,92,110,32,32,32,32,32,32,115,116,97,116,117,115,46,115,116,97,114,116,67,117,114,115,111,114,32,61,32,48,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,109,115,46,103,101,116,79,117,116,108,105,110,101,40,115,105,122,101,32,45,32,49,44,32,92,34,101,110,100,92,34,41,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,117,115,46,101,110,100,67,117,114,115,111,114,32,61,32,115,105,122,101,32,45,32,49,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,99,117,114,115,111,114,32,33,61,61,32,92,34,101,110,100,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,99,117,114,115,111,114,32,61,61,61,32,92,34,115,116,97,114,116,92,34,41,32,123,92,110,32,32,32,32,32,32,115,116,97,116,117,115,46,115,116,97,114,116,67,117,114,115,111,114,32,61,32,105,110,100,101,120,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,115,116,97,116,117,115,46,101,110,100,67,117,114,115,111,114,32,61,32,77,97,116,104,46,109,105,110,40,115,105,122,101,32,45,32,49,44,32,105,110,100,101,120,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,116,97,116,117,115,46,115,116,97,114,116,67,117,114,115,111,114,32,61,32,77,97,116,104,46,109,97,120,40,48,44,32,115,116,97,116,117,115,46,115,116,97,114,116,67,117,114,115,111,114,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,83,116,97,116,117,115,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,97,116,117,115,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,115,116,97,116,117,115,32,61,32,97,115,115,105,103,110,40,116,104,105,115,46,95,115,116,97,116,117,115,44,32,115,116,97,116,117,115,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,83,116,97,116,117,115,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,97,114,116,75,101,121,44,32,101,110,100,75,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,95,115,116,97,116,117,115,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,67,117,114,115,111,114,32,61,32,95,97,46,115,116,97,114,116,67,117,114,115,111,114,44,92,110,32,32,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,32,61,32,95,97,46,101,110,100,67,117,114,115,111,114,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,32,61,32,95,97,46,115,105,122,101,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,73,110,100,101,120,32,61,32,77,97,116,104,46,109,97,120,40,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,105,110,100,101,120,79,102,40,115,116,97,114,116,75,101,121,41,44,32,48,41,59,92,110,32,32,32,32,118,97,114,32,101,110,100,73,110,100,101,120,32,61,32,40,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,105,110,100,101,120,79,102,40,101,110,100,75,101,121,41,32,43,32,49,32,124,124,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,115,105,122,101,40,41,41,32,45,32,49,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,32,61,32,77,97,116,104,46,109,97,120,40,115,116,97,114,116,67,117,114,115,111,114,32,45,32,115,116,97,114,116,73,110,100,101,120,44,32,126,115,116,97,114,116,67,117,114,115,111,114,32,63,32,48,32,58,32,45,49,41,59,92,110,32,32,32,32,118,97,114,32,101,110,100,32,61,32,77,97,116,104,46,109,97,120,40,77,97,116,104,46,109,105,110,40,101,110,100,67,117,114,115,111,114,32,45,32,115,116,97,114,116,73,110,100,101,120,44,32,101,110,100,73,110,100,101,120,32,45,32,115,116,97,114,116,73,110,100,101,120,41,44,32,115,116,97,114,116,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,67,117,114,115,111,114,58,32,115,116,97,114,116,44,92,110,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,58,32,101,110,100,44,92,110,32,32,32,32,32,32,115,105,122,101,58,32,115,105,122,101,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,69,100,103,101,79,117,116,108,105,110,101,32,61,32,102,117,110,99,116,105,111,110,32,40,99,117,114,115,111,114,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,95,115,116,97,116,117,115,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,67,117,114,115,111,114,32,61,32,95,97,46,115,116,97,114,116,67,117,114,115,111,114,44,92,110,32,32,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,32,61,32,95,97,46,101,110,100,67,117,114,115,111,114,59,92,110,92,110,32,32,32,32,105,102,32,40,115,116,97,114,116,67,117,114,115,111,114,32,61,61,61,32,45,49,32,124,124,32,101,110,100,67,117,114,115,111,114,32,61,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,79,117,116,108,105,110,101,40,99,117,114,115,111,114,32,61,61,61,32,92,34,115,116,97,114,116,92,34,32,63,32,115,116,97,114,116,67,117,114,115,111,114,32,58,32,101,110,100,67,117,114,115,111,114,44,32,99,117,114,115,111,114,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,69,100,103,101,86,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,32,40,99,117,114,115,111,114,41,32,123,92,110,32,32,32,32,118,97,114,32,111,117,116,108,105,110,101,115,32,61,32,116,104,105,115,46,103,101,116,69,100,103,101,79,117,116,108,105,110,101,40,99,117,114,115,111,114,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,111,117,116,108,105,110,101,115,46,108,101,110,103,116,104,32,63,32,77,97,116,104,91,99,117,114,115,111,114,32,61,61,61,32,92,34,115,116,97,114,116,92,34,32,63,32,92,34,109,105,110,92,34,32,58,32,92,34,109,97,120,92,34,93,46,97,112,112,108,121,40,77,97,116,104,44,32,111,117,116,108,105,110,101,115,41,32,58,32,48,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,86,105,115,105,98,108,101,73,116,101,109,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,95,115,116,97,116,117,115,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,67,117,114,115,111,114,32,61,32,95,97,46,115,116,97,114,116,67,117,114,115,111,114,44,92,110,32,32,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,32,61,32,95,97,46,101,110,100,67,117,114,115,111,114,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,92,34,105,116,101,109,115,92,34,44,32,115,116,97,114,116,67,117,114,115,111,114,44,32,101,110,100,67,117,114,115,111,114,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,67,117,114,115,111,114,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,97,116,117,115,32,61,32,116,104,105,115,46,95,115,116,97,116,117,115,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,115,116,97,116,117,115,46,115,116,97,114,116,67,117,114,115,111,114,44,32,115,116,97,116,117,115,46,101,110,100,67,117,114,115,111,114,93,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,67,117,114,115,111,114,32,61,32,102,117,110,99,116,105,111,110,32,40,99,117,114,115,111,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,115,116,97,116,117,115,91,99,117,114,115,111,114,32,61,61,61,32,92,34,115,116,97,114,116,92,34,32,63,32,92,34,115,116,97,114,116,67,117,114,115,111,114,92,34,32,58,32,92,34,101,110,100,67,117,114,115,111,114,92,34,93,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,86,105,115,105,98,108,101,68,97,116,97,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,95,115,116,97,116,117,115,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,67,117,114,115,111,114,32,61,32,95,97,46,115,116,97,114,116,67,117,114,115,111,114,44,92,110,32,32,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,32,61,32,95,97,46,101,110,100,67,117,114,115,111,114,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,115,108,105,99,101,71,114,111,117,112,115,40,115,116,97,114,116,67,117,114,115,111,114,44,32,101,110,100,67,117,114,115,111,114,32,43,32,49,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,114,101,109,111,118,101,32,61,32,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,73,110,100,101,120,44,32,105,116,101,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,97,116,117,115,32,61,32,116,104,105,115,46,95,115,116,97,116,117,115,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,67,117,114,115,111,114,32,61,32,115,116,97,116,117,115,46,115,116,97,114,116,67,117,114,115,111,114,44,92,110,32,32,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,32,61,32,115,116,97,116,117,115,46,101,110,100,67,117,114,115,111,114,59,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,105,116,101,109,115,46,114,101,109,111,118,101,40,103,114,111,117,112,73,110,100,101,120,44,32,105,116,101,109,73,110,100,101,120,41,59,92,110,92,110,32,32,32,32,105,102,32,40,114,101,115,117,108,116,46,103,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,103,114,111,117,112,73,110,100,101,120,32,60,32,115,116,97,114,116,67,117,114,115,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,67,117,114,115,111,114,40,92,34,115,116,97,114,116,92,34,44,32,115,116,97,114,116,67,117,114,115,111,114,32,45,32,49,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,103,114,111,117,112,73,110,100,101,120,32,60,61,32,101,110,100,67,117,114,115,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,67,117,114,115,111,114,40,92,34,101,110,100,92,34,44,32,101,110,100,67,117,114,115,111,114,32,45,32,49,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,105,116,101,109,115,46,115,105,122,101,40,41,41,32,123,92,110,32,32,32,32,32,32,115,116,97,116,117,115,46,115,116,97,114,116,67,117,114,115,111,114,32,61,32,45,49,59,92,110,32,32,32,32,32,32,115,116,97,116,117,115,46,101,110,100,67,117,114,115,111,114,32,61,32,45,49,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,108,101,97,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,115,116,97,116,117,115,32,61,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,67,117,114,115,111,114,58,32,45,49,44,92,110,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,58,32,45,49,44,92,110,32,32,32,32,32,32,115,105,122,101,58,32,45,49,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,73,110,102,105,110,105,116,101,59,92,110,125,40,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,104,97,115,84,97,114,103,101,116,40,116,97,114,103,101,116,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,126,116,97,114,103,101,116,46,105,110,100,101,120,79,102,40,118,97,108,117,101,41,59,92,110,125,92,110,92,110,118,97,114,32,82,101,110,100,101,114,77,97,110,97,103,101,114,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,82,101,110,100,101,114,77,97,110,97,103,101,114,40,95,105,110,102,105,110,105,116,101,44,32,95,105,116,101,109,77,97,110,97,103,101,114,44,32,95,114,101,110,100,101,114,101,114,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,32,61,32,95,105,110,102,105,110,105,116,101,59,92,110,32,32,32,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,32,61,32,95,105,116,101,109,77,97,110,97,103,101,114,59,92,110,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,32,61,32,95,114,101,110,100,101,114,101,114,59,92,110,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,82,101,110,100,101,114,77,97,110,97,103,101,114,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,76,97,121,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,40,108,97,121,111,117,116,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,97,121,111,117,116,32,61,32,108,97,121,111,117,116,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,44,32,103,114,111,117,112,115,44,32,105,116,101,109,115,44,32,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,102,32,40,105,116,101,109,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,105,116,101,109,115,32,61,32,73,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,103,114,111,117,112,115,44,32,92,34,105,116,101,109,115,92,34,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,99,104,101,99,107,71,114,111,117,112,115,32,61,32,105,115,65,112,112,101,110,100,32,63,32,103,114,111,117,112,115,32,58,32,103,114,111,117,112,115,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,32,32,118,97,114,32,114,101,112,108,97,99,101,84,97,114,103,101,116,32,61,32,91,93,59,92,110,32,32,32,32,118,97,114,32,114,101,109,111,118,101,84,97,114,103,101,116,32,61,32,91,93,59,92,110,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,115,32,61,32,105,116,101,109,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,46,101,108,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,112,114,101,102,105,120,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,59,92,110,32,32,32,32,118,97,114,32,105,109,32,61,32,110,101,119,32,95,101,103,106,115,95,105,109,114,101,97,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,123,92,110,32,32,32,32,32,32,112,114,101,102,105,120,58,32,112,114,101,102,105,120,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,116,104,105,115,46,105,109,32,61,32,105,109,59,92,110,32,32,32,32,105,109,46,99,104,101,99,107,40,101,108,101,109,101,110,116,115,41,59,92,110,32,32,32,32,105,109,46,111,110,40,92,34,112,114,101,82,101,97,100,121,92,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,95,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,95,112,114,101,82,101,97,100,121,40,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,44,32,99,104,101,99,107,71,114,111,117,112,115,44,32,105,116,101,109,115,44,32,105,115,65,112,112,101,110,100,41,59,92,110,32,32,32,32,125,41,46,111,110,40,92,34,101,114,114,111,114,92,34,44,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,95,97,46,116,97,114,103,101,116,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,95,97,46,105,110,100,101,120,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,95,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,95,101,114,114,111,114,40,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,44,32,114,101,109,111,118,101,84,97,114,103,101,116,44,32,114,101,112,108,97,99,101,84,97,114,103,101,116,44,32,116,97,114,103,101,116,44,32,105,116,101,109,115,44,32,105,110,100,101,120,41,59,92,110,32,32,32,32,125,41,46,111,110,40,92,34,114,101,97,100,121,69,108,101,109,101,110,116,92,34,44,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,105,116,101,109,115,91,101,46,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,105,116,101,109,46,110,101,101,100,85,112,100,97,116,101,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,101,46,104,97,115,76,111,97,100,105,110,103,32,38,38,32,101,46,105,115,80,114,101,82,101,97,100,121,79,118,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,114,101,97,100,121,69,108,101,109,101,110,116,40,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,44,32,105,116,101,109,115,91,101,46,105,110,100,101,120,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,46,111,110,40,92,34,114,101,97,100,121,92,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,95,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,95,114,101,97,100,121,40,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,44,32,114,101,109,111,118,101,84,97,114,103,101,116,44,32,114,101,112,108,97,99,101,84,97,114,103,101,116,44,32,105,116,101,109,115,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,100,101,115,116,114,111,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,105,109,32,38,38,32,116,104,105,115,46,105,109,46,100,101,115,116,114,111,121,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,112,114,101,82,101,97,100,121,32,61,32,102,117,110,99,116,105,111,110,32,40,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,44,32,103,114,111,117,112,115,44,32,105,116,101,109,115,44,32,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,105,110,102,105,110,105,116,101,32,61,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,59,92,110,32,32,32,32,118,97,114,32,108,97,121,111,117,116,32,61,32,116,104,105,115,46,95,108,97,121,111,117,116,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,77,97,110,97,103,101,114,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,59,92,110,32,32,32,32,118,97,114,32,105,110,115,101,114,116,67,117,114,115,111,114,32,61,32,105,115,65,112,112,101,110,100,32,63,32,92,34,101,110,100,92,34,32,58,32,92,34,115,116,97,114,116,92,34,59,92,110,32,32,32,32,118,97,114,32,111,117,116,108,105,110,101,67,117,114,115,111,114,32,61,32,105,115,65,112,112,101,110,100,32,63,32,92,34,115,116,97,114,116,92,34,32,58,32,92,34,101,110,100,92,34,59,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,73,110,100,101,120,32,61,32,105,116,101,109,77,97,110,97,103,101,114,46,105,110,100,101,120,79,102,40,103,114,111,117,112,115,91,48,93,41,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,71,114,111,117,112,32,61,32,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,71,114,111,117,112,40,103,114,111,117,112,73,110,100,101,120,41,59,92,110,32,32,32,32,118,97,114,32,112,114,101,118,71,114,111,117,112,32,61,32,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,71,114,111,117,112,40,103,114,111,117,112,73,110,100,101,120,32,43,32,40,105,115,65,112,112,101,110,100,32,63,32,45,49,32,58,32,49,41,41,59,92,110,32,32,32,32,118,97,114,32,111,117,116,108,105,110,101,32,61,32,91,48,93,59,92,110,92,110,32,32,32,32,105,102,32,40,112,114,101,118,71,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,112,114,101,118,71,114,111,117,112,46,111,117,116,108,105,110,101,115,91,105,110,115,101,114,116,67,117,114,115,111,114,93,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,116,97,114,116,71,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,115,116,97,114,116,71,114,111,117,112,46,111,117,116,108,105,110,101,115,91,111,117,116,108,105,110,101,67,117,114,115,111,114,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,117,112,100,97,116,101,83,105,122,101,40,105,116,101,109,115,41,59,92,110,92,110,32,32,32,32,103,114,111,117,112,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,103,114,111,117,112,79,117,116,108,105,110,101,32,61,32,103,114,111,117,112,46,111,117,116,108,105,110,101,115,91,111,117,116,108,105,110,101,67,117,114,115,111,114,93,59,92,110,32,32,32,32,32,32,118,97,114,32,105,115,82,101,108,97,121,111,117,116,32,61,32,103,114,111,117,112,46,110,101,101,100,85,112,100,97,116,101,32,124,124,32,33,111,117,116,108,105,110,101,46,108,101,110,103,116,104,32,124,124,32,40,111,117,116,108,105,110,101,46,108,101,110,103,116,104,32,61,61,61,32,103,114,111,117,112,79,117,116,108,105,110,101,46,108,101,110,103,116,104,32,63,32,33,111,117,116,108,105,110,101,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,32,40,118,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,32,61,61,61,32,103,114,111,117,112,79,117,116,108,105,110,101,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,125,41,32,58,32,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,82,101,108,97,121,111,117,116,41,32,123,92,110,32,32,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,103,114,111,117,112,46,111,117,116,108,105,110,101,115,91,105,110,115,101,114,116,67,117,114,115,111,114,93,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,114,101,110,100,101,114,73,116,101,109,115,40,103,114,111,117,112,46,105,116,101,109,115,41,59,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,103,114,111,117,112,73,116,101,109,115,32,61,32,103,114,111,117,112,46,105,116,101,109,115,59,92,110,32,32,32,32,32,32,118,97,114,32,103,114,111,117,112,73,110,102,111,32,61,32,108,97,121,111,117,116,91,105,115,65,112,112,101,110,100,32,63,32,92,34,97,112,112,101,110,100,92,34,32,58,32,92,34,112,114,101,112,101,110,100,92,34,93,40,103,114,111,117,112,73,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,97,115,115,105,103,110,40,103,114,111,117,112,44,32,103,114,111,117,112,73,110,102,111,41,59,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,114,101,110,100,101,114,73,116,101,109,115,40,103,114,111,117,112,73,110,102,111,46,105,116,101,109,115,41,59,92,110,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,103,114,111,117,112,73,110,102,111,46,111,117,116,108,105,110,101,115,91,105,110,115,101,114,116,67,117,114,115,111,114,93,59,92,110,32,32,32,32,32,32,103,114,111,117,112,46,110,101,101,100,85,112,100,97,116,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,67,117,114,115,111,114,32,61,32,77,97,116,104,46,109,97,120,40,105,110,102,105,110,105,116,101,46,103,101,116,67,117,114,115,111,114,40,92,34,115,116,97,114,116,92,34,41,44,32,48,41,59,92,110,32,32,32,32,118,97,114,32,101,110,100,67,117,114,115,111,114,32,61,32,77,97,116,104,46,109,97,120,40,105,110,102,105,110,105,116,101,46,103,101,116,67,117,114,115,111,114,40,92,34,101,110,100,92,34,41,44,32,48,41,59,92,110,32,32,32,32,118,97,114,32,114,101,113,117,101,115,116,83,116,97,114,116,67,117,114,115,111,114,32,61,32,105,116,101,109,77,97,110,97,103,101,114,46,105,110,100,101,120,79,102,40,103,114,111,117,112,115,91,48,93,46,103,114,111,117,112,75,101,121,41,59,92,110,32,32,32,32,118,97,114,32,114,101,113,117,101,115,116,69,110,100,67,117,114,115,111,114,32,61,32,105,116,101,109,77,97,110,97,103,101,114,46,105,110,100,101,120,79,102,40,103,114,111,117,112,115,91,103,114,111,117,112,115,46,108,101,110,103,116,104,32,45,32,49,93,46,103,114,111,117,112,75,101,121,41,59,92,110,32,32,32,32,118,97,114,32,105,115,73,110,67,117,114,115,111,114,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,105,102,32,40,114,101,113,117,101,115,116,83,116,97,114,116,67,117,114,115,111,114,32,62,32,101,110,100,67,117,114,115,111,114,32,43,32,49,32,124,124,32,114,101,113,117,101,115,116,69,110,100,67,117,114,115,111,114,32,60,32,115,116,97,114,116,67,117,114,115,111,114,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,105,115,73,110,67,117,114,115,111,114,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,105,115,73,110,67,117,114,115,111,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,83,116,97,114,116,67,117,114,115,111,114,32,61,32,115,116,97,114,116,67,117,114,115,111,114,59,92,110,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,69,110,100,67,117,114,115,111,114,32,61,32,77,97,116,104,46,109,97,120,40,101,110,100,67,117,114,115,111,114,44,32,114,101,113,117,101,115,116,69,110,100,67,117,114,115,111,114,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,83,116,97,114,116,67,117,114,115,111,114,32,61,32,77,97,116,104,46,109,97,120,40,77,97,116,104,46,109,105,110,40,115,116,97,114,116,67,117,114,115,111,114,44,32,114,101,113,117,101,115,116,83,116,97,114,116,67,117,114,115,111,114,41,44,32,48,41,59,92,110,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,69,110,100,67,117,114,115,111,114,32,61,32,101,110,100,67,117,114,115,111,114,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,114,101,113,117,101,115,116,83,116,97,114,116,67,117,114,115,111,114,32,62,32,114,101,113,117,101,115,116,69,110,100,67,117,114,115,111,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,101,109,112,67,117,114,115,111,114,32,61,32,114,101,113,117,101,115,116,83,116,97,114,116,67,117,114,115,111,114,59,92,110,32,32,32,32,32,32,114,101,113,117,101,115,116,83,116,97,114,116,67,117,114,115,111,114,32,61,32,114,101,113,117,101,115,116,69,110,100,67,117,114,115,111,114,59,92,110,32,32,32,32,32,32,114,101,113,117,101,115,116,69,110,100,67,117,114,115,111,114,32,61,32,116,101,109,112,67,117,114,115,111,114,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,46,116,114,105,103,103,101,114,40,92,34,114,101,110,100,101,114,67,111,109,112,108,101,116,101,92,34,44,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,58,32,114,101,113,117,101,115,116,83,116,97,114,116,67,117,114,115,111,114,44,92,110,32,32,32,32,32,32,101,110,100,58,32,114,101,113,117,101,115,116,69,110,100,67,117,114,115,111,114,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,46,116,114,105,103,103,101,114,40,92,34,108,97,121,111,117,116,67,111,109,112,108,101,116,101,92,34,44,32,123,92,110,32,32,32,32,32,32,105,116,101,109,115,58,32,73,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,103,114,111,117,112,115,44,32,92,34,105,116,101,109,115,92,34,41,44,92,110,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,33,33,105,115,65,112,112,101,110,100,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,101,114,114,111,114,32,61,32,102,117,110,99,116,105,111,110,32,40,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,44,32,114,101,109,111,118,101,84,97,114,103,101,116,44,32,114,101,112,108,97,99,101,84,97,114,103,101,116,44,32,116,97,114,103,101,116,44,32,105,116,101,109,115,44,32,101,114,114,111,114,73,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,105,116,101,109,77,97,110,97,103,101,114,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,105,116,101,109,115,91,101,114,114,111,114,73,110,100,101,120,93,59,92,110,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,32,61,32,105,116,101,109,46,101,108,59,92,110,32,32,32,32,118,97,114,32,112,114,101,102,105,120,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,59,32,47,47,32,114,101,109,111,118,101,32,105,116,101,109,92,110,92,110,32,32,32,32,118,97,114,32,114,101,109,111,118,101,73,116,101,109,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,84,97,114,103,101,116,40,114,101,109,111,118,101,84,97,114,103,101,116,44,32,101,108,101,109,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,109,111,118,101,84,97,114,103,101,116,46,112,117,115,104,40,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,114,101,112,108,97,99,101,84,97,114,103,101,116,46,105,110,100,101,120,79,102,40,101,114,114,111,114,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,105,110,100,101,120,32,33,61,61,32,45,49,32,38,38,32,114,101,112,108,97,99,101,84,97,114,103,101,116,46,115,112,108,105,99,101,40,105,110,100,101,120,44,32,49,41,59,92,110,32,32,32,32,125,59,32,47,47,32,114,101,109,111,118,101,32,105,109,97,103,101,92,110,92,110,92,110,32,32,32,32,118,97,114,32,114,101,109,111,118,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,97,114,103,101,116,32,61,61,61,32,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,73,116,101,109,40,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,84,97,114,103,101,116,40,114,101,109,111,118,101,84,97,114,103,101,116,44,32,101,108,101,109,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,97,114,103,101,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,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,105,116,101,109,46,99,111,110,116,101,110,116,32,61,32,101,108,101,109,101,110,116,46,111,117,116,101,114,72,84,77,76,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,84,97,114,103,101,116,40,114,101,112,108,97,99,101,84,97,114,103,101,116,44,32,101,114,114,111,114,73,110,100,101,120,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,112,108,97,99,101,84,97,114,103,101,116,46,112,117,115,104,40,101,114,114,111,114,73,110,100,101,120,41,59,92,110,32,32,32,32,125,59,32,47,47,32,114,101,112,108,97,99,101,32,105,109,97,103,101,92,110,92,110,92,110,32,32,32,32,118,97,114,32,114,101,112,108,97,99,101,32,61,32,102,117,110,99,116,105,111,110,32,40,115,114,99,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,84,97,114,103,101,116,40,114,101,109,111,118,101,84,97,114,103,101,116,44,32,101,108,101,109,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,114,99,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,109,97,116,99,104,72,84,77,76,40,115,114,99,41,32,124,124,32,116,121,112,101,111,102,32,115,114,99,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,114,101,110,116,78,111,100,101,32,61,32,116,97,114,103,101,116,46,112,97,114,101,110,116,78,111,100,101,59,92,110,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,36,40,115,114,99,41,44,32,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,46,99,111,110,116,101,110,116,32,61,32,101,108,101,109,101,110,116,46,111,117,116,101,114,72,84,77,76,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,97,114,103,101,116,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,73,109,97,103,101,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,46,115,114,99,32,61,32,115,114,99,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,97,114,103,101,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,112,114,101,102,105,120,32,43,32,92,34,119,105,100,116,104,92,34,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,112,114,101,102,105,120,32,43,32,92,34,119,105,100,116,104,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,112,114,101,102,105,120,32,43,32,92,34,104,101,105,103,104,116,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,116,101,109,46,99,111,110,116,101,110,116,32,61,32,101,108,101,109,101,110,116,46,111,117,116,101,114,72,84,77,76,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,84,97,114,103,101,116,40,114,101,112,108,97,99,101,84,97,114,103,101,116,44,32,101,114,114,111,114,73,110,100,101,120,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,112,108,97,99,101,84,97,114,103,101,116,46,112,117,115,104,40,101,114,114,111,114,73,110,100,101,120,41,59,92,110,32,32,32,32,125,59,32,47,47,32,114,101,112,108,97,99,101,32,105,116,101,109,92,110,92,110,92,110,32,32,32,32,118,97,114,32,114,101,112,108,97,99,101,73,116,101,109,32,61,32,102,117,110,99,116,105,111,110,32,40,99,111,110,116,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,84,97,114,103,101,116,40,114,101,109,111,118,101,84,97,114,103,101,116,44,32,101,108,101,109,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,46,105,110,110,101,114,72,84,77,76,32,61,32,99,111,110,116,101,110,116,59,92,110,32,32,32,32,32,32,105,116,101,109,46,99,111,110,116,101,110,116,32,61,32,101,108,101,109,101,110,116,46,111,117,116,101,114,72,84,77,76,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,84,97,114,103,101,116,40,114,101,112,108,97,99,101,84,97,114,103,101,116,44,32,101,114,114,111,114,73,110,100,101,120,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,112,108,97,99,101,84,97,114,103,101,116,46,112,117,115,104,40,101,114,114,111,114,73,110,100,101,120,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,118,97,114,32,116,111,116,97,108,73,110,100,101,120,32,61,32,105,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,92,34,105,116,101,109,115,92,34,41,46,105,110,100,101,120,79,102,40,105,116,101,109,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,97,114,103,101,116,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,73,109,97,103,101,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,46,116,114,105,103,103,101,114,40,92,34,105,109,97,103,101,69,114,114,111,114,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,97,114,103,101,116,44,92,110,32,32,32,32,32,32,32,32,101,108,101,109,101,110,116,58,32,101,108,101,109,101,110,116,44,92,110,32,32,32,32,32,32,32,32,105,116,101,109,115,58,32,105,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,105,116,101,109,58,32,105,116,101,109,44,92,110,32,32,32,32,32,32,32,32,105,116,101,109,73,110,100,101,120,58,32,101,114,114,111,114,73,110,100,101,120,44,92,110,32,32,32,32,32,32,32,32,114,101,112,108,97,99,101,58,32,114,101,112,108,97,99,101,44,92,110,32,32,32,32,32,32,32,32,114,101,112,108,97,99,101,73,116,101,109,58,32,114,101,112,108,97,99,101,73,116,101,109,44,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,58,32,114,101,109,111,118,101,44,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,73,116,101,109,58,32,114,101,109,111,118,101,73,116,101,109,44,92,110,32,32,32,32,32,32,32,32,116,111,116,97,108,73,110,100,101,120,58,32,116,111,116,97,108,73,110,100,101,120,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,46,116,114,105,103,103,101,114,40,92,34,99,111,110,116,101,110,116,69,114,114,111,114,92,34,44,32,123,92,110,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,97,114,103,101,116,44,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,58,32,101,108,101,109,101,110,116,44,92,110,32,32,32,32,32,32,105,116,101,109,115,58,32,105,116,101,109,115,44,92,110,32,32,32,32,32,32,105,116,101,109,58,32,105,116,101,109,44,92,110,32,32,32,32,32,32,105,116,101,109,73,110,100,101,120,58,32,101,114,114,111,114,73,110,100,101,120,44,92,110,32,32,32,32,32,32,114,101,112,108,97,99,101,58,32,114,101,112,108,97,99,101,44,92,110,32,32,32,32,32,32,114,101,112,108,97,99,101,73,116,101,109,58,32,114,101,112,108,97,99,101,73,116,101,109,44,92,110,32,32,32,32,32,32,114,101,109,111,118,101,58,32,114,101,109,111,118,101,44,92,110,32,32,32,32,32,32,114,101,109,111,118,101,73,116,101,109,58,32,114,101,109,111,118,101,73,116,101,109,44,92,110,32,32,32,32,32,32,116,111,116,97,108,73,110,100,101,120,58,32,116,111,116,97,108,73,110,100,101,120,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,114,101,97,100,121,69,108,101,109,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,44,32,105,116,101,109,41,32,123,92,110,32,32,32,32,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,46,116,114,105,103,103,101,114,40,92,34,114,101,97,100,121,69,108,101,109,101,110,116,92,34,44,32,123,92,110,32,32,32,32,32,32,105,116,101,109,58,32,105,116,101,109,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,114,101,97,100,121,32,61,32,102,117,110,99,116,105,111,110,32,40,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,44,32,114,101,109,111,118,101,84,97,114,103,101,116,44,32,114,101,112,108,97,99,101,84,97,114,103,101,116,44,32,105,116,101,109,115,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,59,92,110,32,32,32,32,118,97,114,32,114,101,109,111,118,101,84,97,114,103,101,116,76,101,110,103,116,104,32,61,32,114,101,109,111,118,101,84,97,114,103,101,116,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,114,101,112,108,97,99,101,84,97,114,103,101,116,76,101,110,103,116,104,32,61,32,114,101,112,108,97,99,101,84,97,114,103,101,116,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,105,102,32,40,33,114,101,109,111,118,101,84,97,114,103,101,116,76,101,110,103,116,104,32,38,38,32,33,114,101,112,108,97,99,101,84,97,114,103,101,116,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,46,116,114,105,103,103,101,114,40,92,34,114,101,97,100,121,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,58,32,91,93,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,108,97,121,111,117,116,101,100,73,116,101,109,115,32,61,32,114,101,112,108,97,99,101,84,97,114,103,101,116,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,115,91,105,116,101,109,73,110,100,101,120,93,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,114,101,112,108,97,99,101,84,97,114,103,101,116,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,46,116,114,105,103,103,101,114,40,92,34,114,101,97,100,121,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,58,32,114,101,109,111,118,101,84,97,114,103,101,116,44,92,110,32,32,32,32,32,32,32,32,108,97,121,111,117,116,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,32,47,47,32,119,97,105,116,32,108,97,121,111,117,116,67,111,109,112,108,101,116,101,32,98,101,97,99,97,117,115,101,32,111,102,32,101,114,114,111,114,32,101,118,101,110,116,46,92,110,92,110,92,110,32,32,32,32,110,101,119,32,95,101,103,106,115,95,105,109,114,101,97,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,123,92,110,32,32,32,32,32,32,112,114,101,102,105,120,58,32,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,92,110,32,32,32,32,125,41,46,99,104,101,99,107,40,108,97,121,111,117,116,101,100,73,116,101,109,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,118,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,46,101,108,59,92,110,32,32,32,32,125,41,41,46,111,110,40,92,34,114,101,97,100,121,92,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,117,112,100,97,116,101,83,105,122,101,40,108,97,121,111,117,116,101,100,73,116,101,109,115,41,59,92,110,92,110,32,32,32,32,32,32,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,46,116,114,105,103,103,101,114,40,92,34,114,101,97,100,121,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,58,32,114,101,109,111,118,101,84,97,114,103,101,116,44,92,110,32,32,32,32,32,32,32,32,108,97,121,111,117,116,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,82,101,110,100,101,114,77,97,110,97,103,101,114,59,92,110,125,40,41,59,92,110,92,110,118,97,114,32,87,97,116,99,104,101,114,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,87,97,116,99,104,101,114,40,118,105,101,119,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,114,101,115,105,122,101,84,105,109,101,114,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,95,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,84,105,109,101,114,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,79,102,102,115,101,116,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,95,105,115,83,99,114,111,108,108,73,115,115,117,101,32,61,32,73,83,95,73,79,83,59,32,47,47,32,32,87,104,101,110,32,73,110,102,105,110,105,116,101,71,114,105,100,32,105,115,32,105,110,105,116,105,97,108,105,122,101,100,46,92,110,32,32,32,32,47,47,32,84,104,101,32,105,110,105,116,105,97,108,32,118,97,108,117,101,32,105,115,32,110,117,108,108,32,116,111,32,98,108,111,99,107,32,116,104,101,32,115,99,114,111,108,108,32,101,118,101,110,116,32,119,104,101,110,32,114,101,116,117,114,110,105,110,103,32,102,114,111,109,32,98,114,111,119,115,101,114,32,98,101,104,97,118,105,111,114,46,92,110,92,110,32,32,32,32,116,104,105,115,46,95,112,114,101,118,80,111,115,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,111,110,67,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,114,101,118,80,111,115,32,61,32,95,116,104,105,115,46,103,101,116,83,99,114,111,108,108,80,111,115,40,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,111,114,103,83,99,114,111,108,108,80,111,115,32,61,32,95,116,104,105,115,46,103,101,116,79,114,103,83,99,114,111,108,108,80,111,115,40,41,59,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,115,101,116,83,99,114,111,108,108,80,111,115,40,111,114,103,83,99,114,111,108,108,80,111,115,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,80,111,115,32,61,32,95,116,104,105,115,46,103,101,116,83,99,114,111,108,108,80,111,115,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,112,114,101,118,80,111,115,32,61,61,61,32,110,117,108,108,32,124,124,32,95,116,104,105,115,46,95,105,115,83,99,114,111,108,108,73,115,115,117,101,32,38,38,32,111,114,103,83,99,114,111,108,108,80,111,115,32,61,61,61,32,48,32,124,124,32,112,114,101,118,80,111,115,32,61,61,61,32,115,99,114,111,108,108,80,111,115,41,32,123,92,110,32,32,32,32,32,32,32,32,111,114,103,83,99,114,111,108,108,80,111,115,32,38,38,32,40,95,116,104,105,115,46,95,105,115,83,99,114,111,108,108,73,115,115,117,101,32,61,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,95,105,115,83,99,114,111,108,108,73,115,115,117,101,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,111,112,116,105,111,110,115,46,99,104,101,99,107,40,123,92,110,32,32,32,32,32,32,32,32,105,115,70,111,114,119,97,114,100,58,32,112,114,101,118,80,111,115,32,60,32,115,99,114,111,108,108,80,111,115,44,92,110,32,32,32,32,32,32,32,32,115,99,114,111,108,108,80,111,115,58,32,115,99,114,111,108,108,80,111,115,44,92,110,32,32,32,32,32,32,32,32,111,114,103,83,99,114,111,108,108,80,111,115,58,32,111,114,103,83,99,114,111,108,108,80,111,115,44,92,110,32,32,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,58,32,95,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,111,110,82,101,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,97,32,61,32,95,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,105,122,101,68,101,98,111,117,110,99,101,32,61,32,95,97,46,114,101,115,105,122,101,68,101,98,111,117,110,99,101,44,92,110,32,32,32,32,32,32,32,32,32,32,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,32,61,32,95,97,46,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,111,110,82,101,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,95,116,104,105,115,46,95,114,101,115,105,122,101,84,105,109,101,114,41,59,92,110,32,32,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,95,116,104,105,115,46,95,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,84,105,109,101,114,41,59,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,84,105,109,101,114,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,114,101,115,105,122,101,84,105,109,101,114,32,61,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,114,101,115,105,122,101,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,115,105,122,101,40,41,59,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,95,116,104,105,115,46,95,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,84,105,109,101,114,32,38,38,32,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,32,62,61,32,114,101,115,105,122,101,68,101,98,111,117,110,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,84,105,109,101,114,32,61,32,119,105,110,46,115,101,116,84,105,109,101,111,117,116,40,111,110,82,101,115,105,122,101,44,32,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,46,95,114,101,115,105,122,101,84,105,109,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,95,116,104,105,115,46,95,114,101,115,105,122,101,84,105,109,101,114,41,59,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,114,101,115,105,122,101,84,105,109,101,114,32,61,32,48,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,95,114,101,115,105,122,101,84,105,109,101,114,32,61,32,119,105,110,46,115,101,116,84,105,109,101,111,117,116,40,111,110,82,101,115,105,122,101,44,32,114,101,115,105,122,101,68,101,98,111,117,110,99,101,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,97,115,115,105,103,110,40,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,123,92,110,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,58,32,118,105,101,119,44,92,110,32,32,32,32,32,32,114,101,115,105,122,101,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,111,105,100,32,48,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,99,104,101,99,107,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,111,105,100,32,48,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,114,101,115,105,122,101,68,101,98,111,117,110,99,101,58,32,49,48,48,44,92,110,32,32,32,32,32,32,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,58,32,48,92,110,32,32,32,32,125,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,116,104,105,115,46,95,118,105,101,119,32,61,32,118,105,101,119,59,92,110,32,32,32,32,116,104,105,115,46,97,116,116,97,99,104,69,118,101,110,116,40,41,59,92,110,32,32,32,32,116,104,105,115,46,114,101,115,105,122,101,40,41,59,92,110,32,32,32,32,116,104,105,115,46,115,101,116,83,99,114,111,108,108,80,111,115,40,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,87,97,116,99,104,101,114,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,83,116,97,116,117,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,95,112,114,101,118,80,111,115,58,32,116,104,105,115,46,95,112,114,101,118,80,111,115,44,92,110,32,32,32,32,32,32,115,99,114,111,108,108,80,111,115,58,32,116,104,105,115,46,103,101,116,79,114,103,83,99,114,111,108,108,80,111,115,40,41,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,83,116,97,116,117,115,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,97,116,117,115,44,32,97,112,112,108,121,83,99,114,111,108,108,80,111,115,41,32,123,92,110,32,32,32,32,105,102,32,40,97,112,112,108,121,83,99,114,111,108,108,80,111,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,97,112,112,108,121,83,99,114,111,108,108,80,111,115,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,112,114,101,118,80,111,115,32,61,32,115,116,97,116,117,115,46,95,112,114,101,118,80,111,115,59,92,110,32,32,32,32,97,112,112,108,121,83,99,114,111,108,108,80,111,115,32,38,38,32,116,104,105,115,46,115,99,114,111,108,108,84,111,40,115,116,97,116,117,115,46,115,99,114,111,108,108,80,111,115,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,99,114,111,108,108,66,121,32,61,32,102,117,110,99,116,105,111,110,32,40,112,111,115,41,32,123,92,110,32,32,32,32,118,97,114,32,97,114,114,80,111,115,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,32,63,32,91,112,111,115,44,32,48,93,32,58,32,91,48,44,32,112,111,115,93,59,92,110,32,32,32,32,115,99,114,111,108,108,66,121,40,116,104,105,115,46,95,118,105,101,119,44,32,97,114,114,80,111,115,91,48,93,44,32,97,114,114,80,111,115,91,49,93,41,59,92,110,32,32,32,32,116,104,105,115,46,115,101,116,83,99,114,111,108,108,80,111,115,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,99,114,111,108,108,84,111,32,61,32,102,117,110,99,116,105,111,110,32,40,112,111,115,41,32,123,92,110,32,32,32,32,118,97,114,32,97,114,114,80,111,115,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,32,63,32,91,112,111,115,44,32,48,93,32,58,32,91,48,44,32,112,111,115,93,59,92,110,32,32,32,32,115,99,114,111,108,108,84,111,40,116,104,105,115,46,95,118,105,101,119,44,32,97,114,114,80,111,115,91,48,93,44,32,97,114,114,80,111,115,91,49,93,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,83,99,114,111,108,108,80,111,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,112,114,101,118,80,111,115,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,83,99,114,111,108,108,80,111,115,32,61,32,102,117,110,99,116,105,111,110,32,40,112,111,115,41,32,123,92,110,32,32,32,32,105,102,32,40,112,111,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,112,111,115,32,61,32,116,104,105,115,46,103,101,116,79,114,103,83,99,114,111,108,108,80,111,115,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,112,114,101,118,80,111,115,32,61,32,112,111,115,32,45,32,116,104,105,115,46,103,101,116,67,111,110,116,97,105,110,101,114,79,102,102,115,101,116,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,97,116,116,97,99,104,69,118,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,97,100,100,69,118,101,110,116,40,116,104,105,115,46,95,118,105,101,119,44,32,92,34,115,99,114,111,108,108,92,34,44,32,116,104,105,115,46,95,111,110,67,104,101,99,107,41,59,92,110,32,32,32,32,97,100,100,69,118,101,110,116,40,119,105,110,44,32,92,34,114,101,115,105,122,101,92,34,44,32,116,104,105,115,46,95,111,110,82,101,115,105,122,101,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,79,114,103,83,99,114,111,108,108,80,111,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,99,114,111,108,108,40,116,104,105,115,46,95,118,105,101,119,44,32,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,114,101,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,112,114,101,118,80,111,115,32,61,32,110,117,108,108,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,67,111,110,116,97,105,110,101,114,79,102,102,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,79,102,102,115,101,116,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,114,101,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,79,102,102,115,101,116,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,32,63,32,48,32,58,32,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,100,101,116,97,99,104,69,118,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,109,111,118,101,69,118,101,110,116,40,116,104,105,115,46,95,118,105,101,119,44,32,92,34,115,99,114,111,108,108,92,34,44,32,116,104,105,115,46,95,111,110,67,104,101,99,107,41,59,92,110,32,32,32,32,114,101,109,111,118,101,69,118,101,110,116,40,119,105,110,44,32,92,34,114,101,115,105,122,101,92,34,44,32,116,104,105,115,46,95,111,110,82,101,115,105,122,101,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,100,101,115,116,114,111,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,100,101,116,97,99,104,69,118,101,110,116,40,41,59,92,110,32,32,32,32,116,104,105,115,46,114,101,115,101,116,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,103,101,116,79,102,102,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,32,61,32,95,97,46,99,111,110,116,97,105,110,101,114,44,92,110,32,32,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,32,61,32,95,97,46,104,111,114,105,122,111,110,116,97,108,59,92,110,32,32,32,32,118,97,114,32,114,101,99,116,32,61,32,99,111,110,116,97,105,110,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,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,99,116,91,104,111,114,105,122,111,110,116,97,108,32,63,32,92,34,108,101,102,116,92,34,32,58,32,92,34,116,111,112,92,34,93,32,43,32,116,104,105,115,46,103,101,116,79,114,103,83,99,114,111,108,108,80,111,115,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,87,97,116,99,104,101,114,59,92,110,125,40,41,59,92,110,92,110,47,47,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,52,51,50,49,54,54,53,57,47,98,97,98,101,108,45,105,101,56,45,105,110,104,101,114,105,116,45,105,115,115,117,101,45,119,105,116,104,45,111,98,106,101,99,116,45,99,114,101,97,116,101,92,110,92,110,47,42,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,32,42,47,92,110,47,47,32,105,102,32,40,116,121,112,101,111,102,32,79,98,106,101,99,116,46,99,114,101,97,116,101,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,123,92,110,47,47,32,32,32,47,47,32,116,115,108,105,110,116,58,100,105,115,97,98,108,101,92,110,47,47,32,32,32,79,98,106,101,99,116,46,99,114,101,97,116,101,32,61,32,40,111,58,32,97,110,121,44,32,112,114,111,112,101,114,116,105,101,115,58,32,97,110,121,41,32,61,62,32,123,92,110,47,47,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,111,32,33,61,61,32,92,34,111,98,106,101,99,116,92,34,32,38,38,32,116,121,112,101,111,102,32,111,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,123,92,110,47,47,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,79,98,106,101,99,116,32,112,114,111,116,111,116,121,112,101,32,109,97,121,32,111,110,108,121,32,98,101,32,97,110,32,79,98,106,101,99,116,58,32,92,34,32,43,32,111,41,59,92,110,47,47,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,111,32,61,61,61,32,110,117,108,108,41,32,123,92,110,47,47,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,84,104,105,115,32,98,114,111,119,115,101,114,39,115,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,79,98,106,101,99,116,46,99,114,101,97,116,101,32,105,115,32,97,32,115,104,105,109,32,97,110,100,32,100,111,101,115,110,39,116,32,115,117,112,112,111,114,116,32,39,110,117,108,108,39,32,97,115,32,116,104,101,32,102,105,114,115,116,32,97,114,103,117,109,101,110,116,46,92,34,41,59,92,110,47,47,32,32,32,32,32,125,92,110,47,47,32,32,32,32,32,102,117,110,99,116,105,111,110,32,70,40,41,32,123,32,125,92,110,47,47,32,32,32,32,32,70,46,112,114,111,116,111,116,121,112,101,32,61,32,111,59,92,110,47,47,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,70,40,41,59,92,110,47,47,32,32,32,125,59,92,110,47,47,32,32,32,47,47,32,116,115,108,105,110,116,58,101,110,97,98,108,101,92,110,47,47,32,125,92,110,92,110,47,42,32,101,115,108,105,110,116,45,101,110,97,98,108,101,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,65,32,109,111,100,117,108,101,32,117,115,101,100,32,116,111,32,97,114,114,97,110,103,101,32,99,97,114,100,32,101,108,101,109,101,110,116,115,32,105,110,99,108,117,100,105,110,103,32,99,111,110,116,101,110,116,32,105,110,102,105,110,105,116,101,108,121,32,97,99,99,111,114,100,105,110,103,32,116,111,32,108,97,121,111,117,116,32,116,121,112,101,46,32,87,105,116,104,32,116,104,105,115,32,109,111,100,117,108,101,44,32,121,111,117,32,99,97,110,32,105,109,112,108,101,109,101,110,116,32,118,97,114,105,111,117,115,32,108,97,121,111,117,116,115,32,99,111,109,112,111,115,101,100,32,111,102,32,100,105,102,102,101,114,101,110,116,32,99,97,114,100,32,101,108,101,109,101,110,116,115,32,119,104,111,115,101,32,115,105,122,101,115,32,118,97,114,121,46,32,73,116,32,103,117,97,114,97,110,116,101,101,115,32,112,101,114,102,111,114,109,97,110,99,101,32,98,121,32,109,97,105,110,116,97,105,110,105,110,103,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,68,79,77,115,32,116,104,101,32,109,111,100,117,108,101,32,105,115,32,104,97,110,100,108,105,110,103,32,117,110,100,101,114,32,97,110,121,32,99,105,114,99,117,109,115,116,97,110,99,101,92,110,32,42,32,64,107,111,32,236,189,152,237,133,144,236,184,160,234,176,128,32,236,158,136,235,138,148,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,165,188,32,235,160,136,236,157,180,236,149,132,236,155,131,32,237,131,128,236,158,133,236,151,144,32,235,148,176,235,157,188,32,235,172,180,237,149,156,236,156,188,235,161,156,32,235,176,176,236,185,152,237,149,152,235,138,148,32,235,170,168,235,147,136,46,32,235,139,164,236,150,145,237,149,156,32,237,129,172,234,184,176,236,157,152,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,165,188,32,235,139,164,236,150,145,237,149,156,32,235,160,136,236,157,180,236,149,132,236,155,131,236,156,188,235,161,156,32,235,176,176,236,185,152,237,149,160,32,236,136,152,32,236,158,136,235,139,164,46,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,236,157,152,32,234,176,156,236,136,152,234,176,128,32,234,179,132,236,134,141,32,235,138,152,236,150,180,235,130,152,235,143,132,32,235,170,168,235,147,136,236,157,180,32,236,178,152,235,166,172,237,149,152,235,138,148,32,68,79,77,236,157,152,32,234,176,156,236,136,152,235,165,188,32,236,157,188,236,160,149,237,149,152,234,178,140,32,236,156,160,236,167,128,237,149,180,32,236,181,156,236,160,129,236,157,152,32,236,132,177,235,138,165,236,157,132,32,235,179,180,236,158,165,237,149,156,235,139,164,92,110,32,42,32,64,97,108,105,97,115,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,92,110,32,42,32,64,101,120,116,101,110,100,115,32,101,103,46,67,111,109,112,111,110,101,110,116,92,110,32,42,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,96,96,96,92,110,60,117,108,32,105,100,61,92,34,103,114,105,100,92,34,62,92,110,32,32,60,108,105,32,99,108,97,115,115,61,92,34,99,97,114,100,92,34,62,92,110,32,32,32,32,60,100,105,118,62,116,101,115,116,49,60,47,100,105,118,62,92,110,32,32,60,47,108,105,62,92,110,32,32,60,108,105,32,99,108,97,115,115,61,92,34,99,97,114,100,92,34,62,92,110,32,32,32,32,60,100,105,118,62,116,101,115,116,50,60,47,100,105,118,62,92,110,32,32,60,47,108,105,62,92,110,32,32,60,108,105,32,99,108,97,115,115,61,92,34,99,97,114,100,92,34,62,92,110,32,32,32,32,60,100,105,118,62,116,101,115,116,51,60,47,100,105,118,62,92,110,32,32,60,47,108,105,62,92,110,32,32,60,108,105,32,99,108,97,115,115,61,92,34,99,97,114,100,92,34,62,92,110,32,32,32,32,60,100,105,118,62,116,101,115,116,52,60,47,100,105,118,62,92,110,32,32,60,47,108,105,62,92,110,32,32,60,108,105,32,99,108,97,115,115,61,92,34,99,97,114,100,92,34,62,92,110,32,32,32,32,60,100,105,118,62,116,101,115,116,53,60,47,100,105,118,62,92,110,32,32,60,47,108,105,62,92,110,32,32,60,108,105,32,99,108,97,115,115,61,92,34,99,97,114,100,92,34,62,92,110,32,32,32,32,60,100,105,118,62,116,101,115,116,54,60,47,100,105,118,62,92,110,32,32,60,47,108,105,62,92,110,60,47,117,108,62,92,110,60,115,99,114,105,112,116,62,92,110,118,97,114,32,115,111,109,101,32,61,32,110,101,119,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,40,92,34,35,103,114,105,100,92,34,41,46,111,110,40,92,34,108,97,121,111,117,116,67,111,109,112,108,101,116,101,92,34,44,32,102,117,110,99,116,105,111,110,40,101,41,32,123,92,110,32,32,47,47,32,46,46,46,92,110,125,41,59,92,110,92,110,47,47,32,73,102,32,121,111,117,32,97,108,114,101,97,100,121,32,104,97,118,101,32,105,116,101,109,115,32,105,110,32,116,104,101,32,99,111,110,116,97,105,110,101,114,44,32,99,97,108,108,32,92,34,108,97,121,111,117,116,92,34,32,109,101,116,104,111,100,46,92,110,115,111,109,101,46,108,97,121,111,117,116,40,41,59,92,110,60,47,115,99,114,105,112,116,62,92,110,96,96,96,92,110,32,42,92,110,32,42,32,64,115,117,112,112,111,114,116,32,123,92,34,105,101,92,34,58,32,92,34,56,43,92,34,44,32,92,34,99,104,92,34,32,58,32,92,34,108,97,116,101,115,116,92,34,44,32,92,34,102,102,92,34,32,58,32,92,34,108,97,116,101,115,116,92,34,44,32,32,92,34,115,102,92,34,32,58,32,92,34,108,97,116,101,115,116,92,34,44,32,92,34,101,100,103,101,92,34,32,58,32,92,34,108,97,116,101,115,116,92,34,44,32,92,34,105,111,115,92,34,32,58,32,92,34,55,43,92,34,44,32,92,34,97,110,92,34,32,58,32,92,34,50,46,49,43,32,40,101,120,99,101,112,116,32,51,46,120,41,92,34,125,92,110,32,42,42,47,92,110,92,110,118,97,114,32,73,110,102,105,110,105,116,101,71,114,105,100,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,95,115,117,112,101,114,41,32,123,92,110,32,32,95,95,101,120,116,101,110,100,115,40,73,110,102,105,110,105,116,101,71,114,105,100,44,32,95,115,117,112,101,114,41,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,124,115,116,114,105,110,103,124,106,81,117,101,114,121,125,32,101,108,101,109,101,110,116,32,65,32,98,97,115,101,32,101,108,101,109,101,110,116,32,102,111,114,32,97,32,109,111,100,117,108,101,32,60,107,111,62,235,170,168,235,147,136,236,157,132,32,236,160,129,236,154,169,237,149,160,32,234,184,176,236,164,128,32,236,151,152,235,166,172,235,168,188,237,138,184,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,91,111,112,116,105,111,110,115,93,32,84,104,101,32,111,112,116,105,111,110,32,111,98,106,101,99,116,32,111,102,32,116,104,101,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,32,109,111,100,117,108,101,32,60,107,111,62,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,32,235,170,168,235,147,136,236,157,152,32,236,152,181,236,133,152,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,111,112,116,105,111,110,115,46,105,116,101,109,83,101,108,101,99,116,111,114,93,32,65,32,115,101,108,101,99,116,111,114,32,116,111,32,115,101,108,101,99,116,32,99,97,114,100,32,101,108,101,109,101,110,116,115,32,116,104,97,116,32,109,97,107,101,32,117,112,32,116,104,101,32,108,97,121,111,117,116,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,236,157,132,32,234,181,172,236,132,177,237,149,152,235,138,148,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,165,188,32,236,132,160,237,131,157,237,149,160,32,236,132,160,237,131,157,236,158,144,40,115,101,108,101,99,116,111,114,41,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,117,115,101,82,101,99,121,99,108,101,61,116,114,117,101,93,32,73,110,100,105,99,97,116,101,115,32,119,104,101,116,104,101,114,32,107,101,101,112,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,68,79,77,115,32,105,115,32,109,97,105,110,116,97,105,110,101,100,46,32,73,102,32,116,104,101,32,117,115,101,82,101,99,121,99,108,101,32,118,97,108,117,101,32,105,115,32,39,116,114,117,101,39,44,32,107,101,101,112,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,68,79,77,115,32,105,115,32,109,97,105,110,116,97,105,110,101,100,46,32,73,102,32,116,104,101,32,117,115,101,82,101,99,121,99,108,101,32,118,97,108,117,101,32,105,115,32,39,102,97,108,115,101,39,44,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,68,79,77,115,32,119,105,108,108,32,105,110,99,114,101,97,115,101,32,97,115,32,99,97,114,100,32,101,108,101,109,101,110,116,115,32,97,114,101,32,97,100,100,101,100,46,32,60,107,111,62,68,79,77,236,157,152,32,236,136,152,235,165,188,32,236,156,160,236,167,128,237,149,160,236,167,128,32,236,151,172,235,182,128,235,165,188,32,235,130,152,237,131,128,235,130,184,235,139,164,46,32,117,115,101,82,101,99,121,99,108,101,32,234,176,146,236,157,180,32,39,116,114,117,101,39,236,157,180,235,169,180,32,68,79,77,32,234,176,156,236,136,152,235,165,188,32,236,157,188,236,160,149,237,149,152,234,178,140,32,236,156,160,236,167,128,237,149,156,235,139,164,46,32,117,115,101,82,101,99,121,99,108,101,32,234,176,146,236,157,180,32,39,102,97,108,115,101,39,32,236,157,180,235,169,180,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,234,176,128,32,236,182,148,234,176,128,235,144,160,236,136,152,235,161,157,32,68,79,77,32,234,176,156,236,136,152,234,176,128,32,234,179,132,236,134,141,32,236,166,157,234,176,128,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,61,102,97,108,115,101,93,32,73,110,100,105,99,97,116,101,115,32,119,104,101,116,104,101,114,32,111,118,101,114,102,108,111,119,58,115,99,114,111,108,108,32,105,115,32,97,112,112,108,105,101,100,60,107,111,62,111,118,101,114,102,108,111,119,58,115,99,114,111,108,108,32,236,160,129,236,154,169,236,151,172,235,182,128,235,165,188,32,234,178,176,236,160,149,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,61,102,97,108,115,101,93,32,68,105,114,101,99,116,105,111,110,32,111,102,32,116,104,101,32,115,99,114,111,108,108,32,109,111,118,101,109,101,110,116,32,40,116,114,117,101,58,32,104,111,114,105,122,111,110,116,97,108,44,32,102,97,108,115,101,58,32,118,101,114,116,105,99,97,108,41,32,60,107,111,62,236,138,164,237,129,172,235,161,164,32,236,157,180,235,143,153,32,235,176,169,237,150,165,32,40,116,114,117,101,32,234,176,128,235,161,156,235,176,169,237,150,165,44,32,102,97,108,115,101,32,236,132,184,235,161,156,235,176,169,237,150,165,41,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,117,115,101,70,105,116,61,116,114,117,101,93,32,84,104,101,32,117,115,101,70,105,116,32,111,112,116,105,111,110,32,115,99,114,111,108,108,115,32,117,112,119,97,114,100,115,32,115,111,32,116,104,97,116,32,110,111,32,115,112,97,99,101,32,105,115,32,118,105,115,105,98,108,101,32,117,110,116,105,108,32,97,110,32,105,116,101,109,32,105,115,32,97,100,100,101,100,32,60,107,111,62,236,156,132,235,161,156,32,236,138,164,237,129,172,235,161,164,237,149,160,32,236,139,156,32,236,149,132,236,157,180,237,133,156,236,157,132,32,236,182,148,234,176,128,237,149,152,235,138,148,32,235,143,153,236,149,136,32,235,179,180,236,157,180,235,138,148,32,235,185,136,32,234,179,181,234,176,132,236,157,132,32,236,149,136,235,179,180,236,157,180,234,178,140,32,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,117,115,101,79,102,102,115,101,116,61,102,97,108,115,101,93,32,87,104,101,116,104,101,114,32,116,111,32,103,101,116,32,116,104,101,32,115,105,122,101,32,97,115,32,111,102,102,115,101,116,87,105,100,116,104,44,32,111,102,102,115,101,116,72,101,105,103,104,116,46,32,83,101,116,32,116,111,32,116,114,117,101,32,105,102,32,116,114,97,110,115,102,111,114,109,32,105,115,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,99,111,110,116,97,105,110,101,114,46,32,73,102,32,102,97,108,115,101,44,32,103,101,116,32,116,104,101,32,115,105,122,101,32,116,104,114,111,117,103,104,32,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,46,32,60,107,111,62,236,130,172,236,157,180,236,166,136,235,165,188,32,111,102,102,115,101,116,87,105,100,116,104,44,32,111,102,102,115,101,116,72,101,105,103,104,116,235,161,156,32,234,176,128,236,160,184,236,152,172,236,167,128,32,236,151,172,235,182,128,46,92,110,32,32,99,111,110,116,97,105,110,101,114,236,151,144,32,116,114,97,110,115,102,111,114,109,236,157,180,32,236,160,129,236,154,169,235,144,152,236,150,180,32,236,158,136,235,139,164,235,169,180,32,116,114,117,101,235,161,156,32,236,132,164,236,160,149,237,149,180,235,157,188,46,32,102,97,108,115,101,235,169,180,32,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,235,165,188,32,237,134,181,237,149,180,32,236,130,172,236,157,180,236,166,136,235,165,188,32,234,176,128,236,160,184,236,152,168,235,139,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,105,115,69,113,117,97,108,83,105,122,101,61,102,97,108,115,101,93,32,73,110,100,105,99,97,116,101,115,32,119,104,101,116,104,101,114,32,115,105,122,101,115,32,111,102,32,97,108,108,32,99,97,114,100,32,101,108,101,109,101,110,116,115,32,97,114,101,32,101,113,117,97,108,32,116,111,32,111,110,101,32,97,110,111,116,104,101,114,46,32,73,102,32,115,105,122,101,115,32,111,102,32,99,97,114,100,32,101,108,101,109,101,110,116,115,32,116,111,32,98,101,32,97,114,114,97,110,103,101,100,32,97,114,101,32,97,108,108,32,101,113,117,97,108,32,97,110,100,32,116,104,105,115,32,111,112,116,105,111,110,32,105,115,32,115,101,116,32,116,111,32,92,34,116,114,117,101,92,34,44,32,116,104,101,32,112,101,114,102,111,114,109,97,110,99,101,32,111,102,32,108,97,121,111,117,116,32,97,114,114,97,110,103,101,109,101,110,116,32,99,97,110,32,98,101,32,105,109,112,114,111,118,101,100,46,32,60,107,111,62,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,236,157,152,32,237,129,172,234,184,176,234,176,128,32,235,143,153,236,157,188,237,149,156,236,167,128,32,236,151,172,235,182,128,46,32,235,176,176,236,185,152,235,144,160,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,236,157,152,32,237,129,172,234,184,176,234,176,128,32,235,170,168,235,145,144,32,235,143,153,236,157,188,237,149,160,32,235,149,140,32,236,157,180,32,236,152,181,236,133,152,236,157,132,32,39,116,114,117,101,39,235,161,156,32,236,132,164,236,160,149,237,149,152,235,169,180,32,235,160,136,236,157,180,236,149,132,236,155,131,32,235,176,176,236,185,152,32,236,132,177,235,138,165,236,157,132,32,235,134,146,236,157,188,32,236,136,152,32,236,158,136,235,139,164,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,105,115,67,111,110,115,116,97,110,116,83,105,122,101,61,102,97,108,115,101,93,32,73,110,100,105,99,97,116,101,115,32,119,104,101,116,104,101,114,32,115,105,122,101,115,32,111,102,32,97,108,108,32,99,97,114,100,32,101,108,101,109,101,110,116,115,32,100,111,101,115,32,110,111,116,32,99,104,97,110,103,101,44,32,116,104,101,32,112,101,114,102,111,114,109,97,110,99,101,32,111,102,32,108,97,121,111,117,116,32,97,114,114,97,110,103,101,109,101,110,116,32,99,97,110,32,98,101,32,105,109,112,114,111,118,101,100,46,32,60,107,111,62,235,170,168,235,147,160,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,236,157,152,32,237,129,172,234,184,176,234,176,128,32,235,182,136,235,179,128,236,157,188,32,235,149,140,32,236,157,180,32,236,152,181,236,133,152,236,157,132,32,39,116,114,117,101,39,235,161,156,32,236,132,164,236,160,149,237,149,152,235,169,180,32,235,160,136,236,157,180,236,149,132,236,155,131,32,235,176,176,236,185,152,32,236,132,177,235,138,165,236,157,132,32,235,134,146,236,157,188,32,236,136,152,32,236,158,136,235,139,164,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,111,112,116,105,111,110,115,46,116,114,97,110,115,105,116,105,111,110,68,114,117,97,116,105,111,110,61,48,93,32,73,110,100,105,99,97,116,101,115,32,104,111,119,32,109,97,110,121,32,115,101,99,111,110,100,115,32,97,32,116,114,97,110,115,105,116,105,111,110,32,101,102,102,101,99,116,32,116,97,107,101,115,32,116,111,32,99,111,109,112,108,101,116,101,46,32,60,107,111,62,237,138,184,235,158,156,236,167,128,236,133,152,32,237,154,168,234,179,188,235,165,188,32,236,153,132,235,163,140,237,149,152,235,138,148,235,141,176,32,234,177,184,235,166,172,235,138,148,32,236,139,156,234,176,132,236,157,132,32,235,130,152,237,131,128,235,130,184,235,139,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,111,112,116,105,111,110,115,46,116,104,114,101,115,104,111,108,100,61,49,48,48,93,32,84,104,101,32,116,104,114,101,115,104,111,108,100,32,115,105,122,101,32,111,102,32,97,110,32,101,118,101,110,116,32,97,114,101,97,32,119,104,101,114,101,32,99,97,114,100,32,101,108,101,109,101,110,116,115,32,97,114,101,32,97,100,100,101,100,32,116,111,32,97,32,108,97,121,111,117,116,46,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,236,151,144,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,165,188,32,236,182,148,234,176,128,237,149,152,235,138,148,32,236,157,180,235,178,164,237,138,184,234,176,128,32,235,176,156,236,131,157,237,149,152,235,138,148,32,234,184,176,236,164,128,32,236,152,129,236,151,173,236,157,152,32,237,129,172,234,184,176,46,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,111,112,116,105,111,110,115,46,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,61,92,34,100,97,116,97,45,92,34,93,32,84,104,101,32,112,114,101,102,105,120,32,116,111,32,117,115,101,32,101,108,101,109,101,110,116,39,115,32,100,97,116,97,32,97,116,116,114,105,98,117,116,101,46,60,107,111,62,236,151,152,235,166,172,235,168,188,237,138,184,236,157,152,32,235,141,176,236,157,180,237,131,128,32,236,134,141,236,132,177,236,151,144,32,236,130,172,236,154,169,237,149,160,32,236,160,145,235,145,144,236,130,172,46,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,111,112,116,105,111,110,115,46,114,101,115,105,122,101,68,101,98,111,117,110,99,101,61,49,48,48,93,32,68,101,98,111,117,110,99,101,32,116,105,109,101,32,116,111,32,115,101,116,32,105,110,32,116,104,101,32,114,101,115,105,122,101,32,101,118,101,110,116,46,32,60,107,111,62,235,166,172,236,130,172,236,157,180,236,166,136,32,236,157,180,235,178,164,237,138,184,236,151,144,32,236,132,164,236,160,149,237,149,160,32,235,148,148,235,176,148,236,154,180,236,138,164,32,236,139,156,234,176,132,46,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,111,112,116,105,111,110,115,46,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,61,48,93,32,77,97,120,105,109,117,109,32,116,105,109,101,32,116,111,32,100,101,98,111,117,110,99,101,32,116,104,101,32,114,101,115,105,122,101,32,101,118,101,110,116,40,48,32,105,115,32,110,111,116,32,115,101,116,41,46,32,60,107,111,62,235,166,172,236,130,172,236,157,180,236,166,136,32,236,157,180,235,178,164,237,138,184,235,165,188,32,235,148,148,235,176,148,236,154,180,236,138,164,237,149,160,32,236,136,152,32,236,158,136,235,138,148,32,236,181,156,235,140,128,32,236,139,156,234,176,132,40,48,236,157,128,32,235,175,184,236,132,164,236,160,149,236,157,180,235,139,164,41,46,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,114,101,110,100,101,114,69,120,116,101,114,110,97,108,61,102,97,108,115,101,93,32,87,104,101,116,104,101,114,32,116,111,32,117,115,101,32,101,120,116,101,114,110,97,108,32,114,101,110,100,101,114,105,110,103,46,32,73,116,32,119,105,108,108,32,100,101,108,101,103,97,116,101,32,68,79,77,32,109,97,110,105,112,117,108,97,116,105,111,110,32,97,110,100,32,99,97,110,32,115,121,110,99,104,114,111,110,105,122,101,32,116,104,101,32,114,101,110,100,101,114,101,100,32,115,116,97,116,101,32,98,121,32,99,97,108,108,105,110,103,32,96,115,121,110,99,40,41,96,32,109,101,116,104,111,100,46,32,89,111,117,32,99,97,110,32,117,115,101,32,116,104,105,115,32,111,112,116,105,111,110,32,116,111,32,117,115,101,32,105,110,32,102,114,97,109,101,119,111,114,107,115,32,108,105,107,101,32,82,101,97,99,116,44,32,86,117,101,44,32,65,110,103,117,108,97,114,44,32,119,104,105,99,104,32,104,97,115,32,105,116,115,32,115,116,97,116,101,115,32,97,110,100,32,114,101,110,100,101,114,105,110,103,32,109,101,116,104,111,100,115,46,60,107,111,62,236,153,184,235,182,128,32,235,160,140,235,141,148,235,167,129,236,157,132,32,236,130,172,236,154,169,237,149,160,32,236,167,128,236,157,152,32,236,151,172,235,182,128,46,32,236,157,180,32,236,152,181,236,133,152,236,157,132,32,236,130,172,236,154,169,236,139,156,32,235,160,140,235,141,148,235,167,129,236,157,132,32,236,153,184,235,182,128,236,151,144,32,236,156,132,236,158,132,237,149,160,32,236,136,152,32,236,158,136,234,179,160,44,32,96,115,121,110,99,40,41,96,235,165,188,32,237,152,184,236,182,156,237,149,152,236,151,172,32,234,183,184,32,236,131,129,237,131,156,235,165,188,32,235,143,153,234,184,176,237,153,148,237,149,160,32,236,136,152,32,236,158,136,235,139,164,46,32,236,157,180,32,236,152,181,236,133,152,236,157,132,32,236,130,172,236,154,169,237,149,152,236,151,172,44,32,82,101,97,99,116,44,32,86,117,101,44,32,65,110,103,117,108,97,114,32,235,147,177,32,236,158,144,236,178,180,236,160,129,236,157,184,32,236,131,129,237,131,156,236,153,128,32,235,160,140,235,141,148,235,167,129,32,235,176,169,235,178,149,236,157,132,32,234,176,150,235,138,148,32,237,148,132,235,160,136,236,158,132,236,155,140,237,129,172,236,151,144,32,235,140,128,236,157,145,237,149,160,32,236,136,152,32,236,158,136,235,139,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,32,124,32,65,114,114,97,121,60,92,34,115,105,122,101,92,34,32,124,32,92,34,112,111,115,105,116,105,111,110,92,34,62,125,32,91,111,112,116,105,111,110,115,46,112,101,114,99,101,110,116,97,103,101,61,102,97,108,115,101,93,32,87,104,101,116,104,101,114,32,116,111,32,115,101,116,32,116,104,101,32,99,115,115,32,115,105,122,101,32,97,110,100,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,105,116,101,109,32,116,111,32,37,46,60,107,111,62,105,116,101,109,236,157,152,32,99,115,115,32,115,105,122,101,236,153,128,32,112,111,115,105,116,105,111,110,235,165,188,32,37,235,161,156,32,236,132,164,236,160,149,237,149,160,236,167,128,32,236,151,172,235,182,128,46,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,73,110,102,105,110,105,116,101,71,114,105,100,40,101,108,101,109,101,110,116,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,95,115,117,112,101,114,46,99,97,108,108,40,116,104,105,115,41,32,124,124,32,116,104,105,115,59,92,110,92,110,32,32,32,32,95,116,104,105,115,46,95,108,111,97,100,105,110,103,66,97,114,32,61,32,123,125,59,92,110,32,32,32,32,95,116,104,105,115,46,95,114,101,113,117,101,115,116,71,114,111,117,112,115,32,61,32,91,93,59,92,110,32,32,32,32,97,115,115,105,103,110,40,95,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,95,95,97,115,115,105,103,110,40,123,125,44,32,68,69,70,65,85,76,84,95,79,80,84,73,79,78,83,41,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,68,69,70,69,78,83,69,95,66,82,79,87,83,69,82,32,38,38,32,40,95,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,70,105,116,32,61,32,102,97,108,115,101,41,59,92,110,32,32,32,32,73,83,95,65,78,68,82,79,73,68,50,32,38,38,32,40,95,116,104,105,115,46,111,112,116,105,111,110,115,46,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,32,61,32,102,97,108,115,101,41,59,92,110,92,110,32,32,32,32,95,116,104,105,115,46,95,114,101,115,101,116,40,41,59,92,110,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,95,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,32,61,32,95,97,46,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,44,92,110,32,32,32,32,32,32,32,32,105,115,69,113,117,97,108,83,105,122,101,32,61,32,95,97,46,105,115,69,113,117,97,108,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,32,61,32,95,97,46,105,115,67,111,110,115,116,97,110,116,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,32,61,32,95,97,46,104,111,114,105,122,111,110,116,97,108,44,92,110,32,32,32,32,32,32,32,32,116,104,114,101,115,104,111,108,100,32,61,32,95,97,46,116,104,114,101,115,104,111,108,100,44,92,110,32,32,32,32,32,32,32,32,117,115,101,82,101,99,121,99,108,101,32,61,32,95,97,46,117,115,101,82,101,99,121,99,108,101,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,32,61,32,95,97,46,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,44,92,110,32,32,32,32,32,32,32,32,114,101,115,105,122,101,68,101,98,111,117,110,99,101,32,61,32,95,97,46,114,101,115,105,122,101,68,101,98,111,117,110,99,101,44,92,110,32,32,32,32,32,32,32,32,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,32,61,32,95,97,46,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,44,92,110,32,32,32,32,32,32,32,32,112,101,114,99,101,110,116,97,103,101,32,61,32,95,97,46,112,101,114,99,101,110,116,97,103,101,44,92,110,32,32,32,32,32,32,32,32,117,115,101,79,102,102,115,101,116,32,61,32,95,97,46,117,115,101,79,102,102,115,101,116,59,92,110,32,32,32,32,95,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,32,61,32,110,101,119,32,73,116,101,109,77,97,110,97,103,101,114,40,41,59,92,110,32,32,32,32,95,116,104,105,115,46,95,114,101,110,100,101,114,101,114,32,61,32,110,101,119,32,68,79,77,82,101,110,100,101,114,101,114,40,101,108,101,109,101,110,116,44,32,123,92,110,32,32,32,32,32,32,105,115,69,113,117,97,108,83,105,122,101,58,32,105,115,69,113,117,97,108,83,105,122,101,44,92,110,32,32,32,32,32,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,58,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,44,92,110,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,58,32,104,111,114,105,122,111,110,116,97,108,44,92,110,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,58,32,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,44,92,110,32,32,32,32,32,32,112,101,114,99,101,110,116,97,103,101,58,32,112,101,114,99,101,110,116,97,103,101,44,92,110,32,32,32,32,32,32,117,115,101,79,102,102,115,101,116,58,32,117,115,101,79,102,102,115,101,116,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,95,116,104,105,115,46,95,119,97,116,99,104,101,114,32,61,32,110,101,119,32,87,97,116,99,104,101,114,40,95,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,118,105,101,119,44,32,123,92,110,32,32,32,32,32,32,114,101,115,105,122,101,68,101,98,111,117,110,99,101,58,32,114,101,115,105,122,101,68,101,98,111,117,110,99,101,44,92,110,32,32,32,32,32,32,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,58,32,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,44,92,110,32,32,32,32,32,32,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,58,32,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,44,92,110,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,58,32,104,111,114,105,122,111,110,116,97,108,44,92,110,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,58,32,95,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,99,111,110,116,97,105,110,101,114,44,92,110,32,32,32,32,32,32,114,101,115,105,122,101,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,46,95,111,110,82,101,115,105,122,101,40,41,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,99,104,101,99,107,58,32,102,117,110,99,116,105,111,110,32,40,112,97,114,97,109,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,46,95,111,110,67,104,101,99,107,40,112,97,114,97,109,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,95,116,104,105,115,46,95,105,110,102,105,110,105,116,101,32,61,32,110,101,119,32,73,110,102,105,110,105,116,101,40,95,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,44,32,123,92,110,32,32,32,32,32,32,117,115,101,82,101,99,121,99,108,101,58,32,117,115,101,82,101,99,121,99,108,101,44,92,110,32,32,32,32,32,32,116,104,114,101,115,104,111,108,100,58,32,116,104,114,101,115,104,111,108,100,44,92,110,32,32,32,32,32,32,97,112,112,101,110,100,58,32,102,117,110,99,116,105,111,110,32,40,112,97,114,97,109,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,46,95,114,101,113,117,101,115,116,65,112,112,101,110,100,40,112,97,114,97,109,41,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,112,114,101,112,101,110,100,58,32,102,117,110,99,116,105,111,110,32,40,112,97,114,97,109,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,46,95,114,101,113,117,101,115,116,80,114,101,112,101,110,100,40,112,97,114,97,109,41,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,99,121,99,108,101,58,32,102,117,110,99,116,105,111,110,32,40,112,97,114,97,109,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,46,95,114,101,99,121,99,108,101,40,91,112,97,114,97,109,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,95,116,104,105,115,46,95,114,101,110,100,101,114,77,97,110,97,103,101,114,32,61,32,110,101,119,32,82,101,110,100,101,114,77,97,110,97,103,101,114,40,95,116,104,105,115,46,95,105,110,102,105,110,105,116,101,44,32,95,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,44,32,95,116,104,105,115,46,95,114,101,110,100,101,114,101,114,44,32,123,92,110,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,58,32,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,44,92,110,32,32,32,32,32,32,105,115,69,113,117,97,108,83,105,122,101,58,32,105,115,69,113,117,97,108,83,105,122,101,44,92,110,32,32,32,32,32,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,58,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,44,92,110,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,58,32,104,111,114,105,122,111,110,116,97,108,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,59,92,110,32,32,125,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,100,100,115,32,97,32,99,97,114,100,32,101,108,101,109,101,110,116,32,97,116,32,116,104,101,32,98,111,116,116,111,109,32,111,102,32,97,32,108,97,121,111,117,116,46,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,97,118,97,105,108,97,98,108,101,32,111,110,108,121,32,105,102,32,116,104,101,32,105,115,80,114,111,99,101,115,115,105,110,103,40,41,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,102,97,108,115,101,46,92,110,32,32,32,42,32,64,107,111,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,165,188,32,235,160,136,236,157,180,236,149,132,236,155,131,32,236,149,132,235,158,152,236,151,144,32,236,182,148,234,176,128,237,149,156,235,139,164,46,32,105,115,80,114,111,99,101,115,115,105,110,103,40,41,32,235,169,148,236,132,156,235,147,156,236,157,152,32,235,176,152,237,153,152,234,176,146,236,157,180,32,39,102,97,108,115,101,39,236,157,188,32,235,149,140,235,167,140,32,236,157,180,32,235,169,148,236,132,156,235,147,156,235,165,188,32,236,130,172,236,154,169,237,149,160,32,236,136,152,32,236,158,136,235,139,164,92,110,32,32,32,42,32,236,157,180,32,235,169,148,236,134,140,235,147,156,235,138,148,32,105,115,80,114,111,99,101,115,115,105,110,103,40,41,236,157,152,32,235,176,152,237,153,152,234,176,146,236,157,180,32,102,97,108,115,101,236,157,188,32,234,178,189,236,154,176,236,151,144,235,167,140,32,236,130,172,236,154,169,32,234,176,128,235,138,165,237,149,152,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,45,32,101,108,101,109,101,110,116,115,32,65,114,114,97,121,32,111,102,32,116,104,101,32,99,97,114,100,32,101,108,101,109,101,110,116,115,32,116,111,32,98,101,32,97,100,100,101,100,32,60,107,111,62,236,182,148,234,176,128,237,149,160,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,45,32,84,104,101,32,103,114,111,117,112,32,107,101,121,32,116,111,32,98,101,32,99,111,110,102,105,103,117,114,101,100,32,105,110,32,97,32,99,97,114,100,32,101,108,101,109,101,110,116,46,32,73,116,32,105,115,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,103,101,110,101,114,97,116,101,100,32,98,121,32,100,101,102,97,117,108,116,46,92,110,32,32,32,42,32,60,107,111,62,236,182,148,234,176,128,237,149,160,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,236,151,144,32,236,132,164,236,160,149,237,149,160,32,234,183,184,235,163,185,32,237,130,164,46,32,236,131,157,235,158,181,237,149,152,235,169,180,32,234,176,146,236,157,180,32,236,158,144,235,143,153,236,156,188,235,161,156,32,236,131,157,236,132,177,235,144,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,105,110,102,105,110,105,116,101,103,114,105,100,46,97,112,112,101,110,100,40,92,34,38,108,116,59,100,105,118,32,99,108,97,115,115,61,39,105,116,101,109,39,38,103,116,59,116,101,115,116,49,38,108,116,59,47,100,105,118,38,103,116,59,38,108,116,59,100,105,118,32,99,108,97,115,115,61,39,105,116,101,109,39,38,103,116,59,116,101,115,116,50,38,108,116,59,47,100,105,118,38,103,116,59,92,34,41,59,92,110,32,32,32,42,32,105,110,102,105,110,105,116,101,103,114,105,100,46,97,112,112,101,110,100,40,91,92,34,38,108,116,59,100,105,118,32,99,108,97,115,115,61,39,105,116,101,109,39,38,103,116,59,116,101,115,116,49,38,108,116,59,47,100,105,118,38,103,116,59,92,34,44,32,92,34,38,108,116,59,100,105,118,32,99,108,97,115,115,61,39,105,116,101,109,39,38,103,116,59,116,101,115,116,50,38,108,116,59,47,100,105,118,38,103,116,59,92,34,93,41,59,92,110,32,32,32,42,32,105,110,102,105,110,105,116,101,103,114,105,100,46,97,112,112,101,110,100,40,91,72,84,77,76,69,108,101,109,101,110,116,49,44,32,72,84,77,76,69,108,101,109,101,110,116,50,93,41,59,92,110,32,32,32,42,32,105,110,102,105,110,105,116,101,103,114,105,100,46,97,112,112,101,110,100,40,106,81,117,101,114,121,40,91,92,34,38,108,116,59,100,105,118,32,99,108,97,115,115,61,39,105,116,101,109,39,38,103,116,59,116,101,115,116,49,38,108,116,59,47,100,105,118,38,103,116,59,92,34,44,32,92,34,38,108,116,59,100,105,118,32,99,108,97,115,115,61,39,105,116,101,109,39,38,103,116,59,116,101,115,116,50,38,108,116,59,47,100,105,118,38,103,116,59,92,34,93,41,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,73,110,102,105,110,105,116,101,71,114,105,100,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,97,112,112,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,101,108,101,109,101,110,116,115,44,32,103,114,111,117,112,75,101,121,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,97,121,111,117,116,32,38,38,32,116,104,105,115,46,95,105,110,115,101,114,116,40,123,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,115,58,32,101,108,101,109,101,110,116,115,44,92,110,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,103,114,111,117,112,75,101,121,58,32,103,114,111,117,112,75,101,121,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,100,100,115,32,97,32,99,97,114,100,32,101,108,101,109,101,110,116,32,97,116,32,116,104,101,32,116,111,112,32,111,102,32,97,32,108,97,121,111,117,116,46,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,97,118,97,105,108,97,98,108,101,32,111,110,108,121,32,105,102,32,116,104,101,32,105,115,80,114,111,99,101,115,115,105,110,103,40,41,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,102,97,108,115,101,46,92,110,32,32,32,42,32,64,107,111,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,165,188,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,152,32,236,156,132,236,151,144,32,236,182,148,234,176,128,237,149,156,235,139,164,46,32,105,115,80,114,111,99,101,115,115,105,110,103,40,41,32,235,169,148,236,132,156,235,147,156,236,157,152,32,235,176,152,237,153,152,234,176,146,236,157,180,32,39,102,97,108,115,101,39,236,157,188,32,235,149,140,235,167,140,32,236,157,180,32,235,169,148,236,132,156,235,147,156,235,165,188,32,236,130,172,236,154,169,237,149,160,32,236,136,152,32,236,158,136,235,139,164,92,110,32,32,32,42,32,64,112,97,114,97,109,32,45,32,101,108,101,109,101,110,116,115,32,65,114,114,97,121,32,111,102,32,116,104,101,32,99,97,114,100,32,101,108,101,109,101,110,116,115,32,116,111,32,98,101,32,97,100,100,101,100,32,60,107,111,62,236,182,148,234,176,128,237,149,160,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,45,32,84,104,101,32,103,114,111,117,112,32,107,101,121,32,116,111,32,98,101,32,99,111,110,102,105,103,117,114,101,100,32,105,110,32,97,32,99,97,114,100,32,101,108,101,109,101,110,116,46,32,73,116,32,105,115,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,103,101,110,101,114,97,116,101,100,32,98,121,32,100,101,102,97,117,108,116,46,92,110,32,32,32,42,32,60,107,111,62,236,182,148,234,176,128,237,149,160,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,236,151,144,32,236,132,164,236,160,149,237,149,160,32,234,183,184,235,163,185,32,237,130,164,46,32,236,131,157,235,158,181,237,149,152,235,169,180,32,234,176,146,236,157,180,32,236,158,144,235,143,153,236,156,188,235,161,156,32,236,131,157,236,132,177,235,144,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,105,110,102,105,110,105,116,101,103,114,105,100,46,112,114,101,112,101,110,100,40,92,34,38,108,116,59,100,105,118,32,99,108,97,115,115,61,39,105,116,101,109,39,38,103,116,59,116,101,115,116,49,38,108,116,59,47,100,105,118,38,103,116,59,38,108,116,59,100,105,118,32,99,108,97,115,115,61,39,105,116,101,109,39,38,103,116,59,116,101,115,116,50,38,108,116,59,47,100,105,118,38,103,116,59,92,34,41,59,92,110,32,32,32,42,32,105,110,102,105,110,105,116,101,103,114,105,100,46,112,114,101,112,101,110,100,40,91,92,34,38,108,116,59,100,105,118,32,99,108,97,115,115,61,39,105,116,101,109,39,38,103,116,59,116,101,115,116,49,38,108,116,59,47,100,105,118,38,103,116,59,92,34,44,32,92,34,38,108,116,59,100,105,118,32,99,108,97,115,115,61,39,105,116,101,109,39,38,103,116,59,116,101,115,116,50,38,108,116,59,47,100,105,118,38,103,116,59,92,34,93,41,59,92,110,32,32,32,42,32,105,110,102,105,110,105,116,101,103,114,105,100,46,112,114,101,112,101,110,100,40,91,72,84,77,76,69,108,101,109,101,110,116,49,44,32,72,84,77,76,69,108,101,109,101,110,116,50,93,41,59,92,110,32,32,32,42,32,105,110,102,105,110,105,116,101,103,114,105,100,46,112,114,101,112,101,110,100,40,106,81,117,101,114,121,40,91,92,34,38,108,116,59,100,105,118,32,99,108,97,115,115,61,39,105,116,101,109,39,38,103,116,59,116,101,115,116,49,38,108,116,59,47,100,105,118,38,103,116,59,92,34,44,32,92,34,38,108,116,59,100,105,118,32,99,108,97,115,115,61,39,105,116,101,109,39,38,103,116,59,116,101,115,116,50,38,108,116,59,47,100,105,118,38,103,116,59,92,34,93,41,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,112,114,101,112,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,101,108,101,109,101,110,116,115,44,32,103,114,111,117,112,75,101,121,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,97,121,111,117,116,32,38,38,32,116,104,105,115,46,95,105,110,115,101,114,116,40,123,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,115,58,32,101,108,101,109,101,110,116,115,44,92,110,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,103,114,111,117,112,75,101,121,58,32,103,114,111,117,112,75,101,121,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,83,112,101,99,105,102,105,101,115,32,116,104,101,32,76,97,121,111,117,116,32,99,108,97,115,115,32,116,111,32,117,115,101,46,92,110,32,32,32,42,32,64,107,111,32,236,130,172,236,154,169,237,149,160,32,76,97,121,111,117,116,32,237,129,180,235,158,152,236,138,164,235,165,188,32,236,167,128,236,160,149,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,67,108,97,115,115,124,79,98,106,101,99,116,125,32,76,97,121,111,117,116,75,108,97,115,115,32,84,104,101,32,76,97,121,111,117,116,32,99,108,97,115,115,32,116,111,32,117,115,101,32,111,114,32,97,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,108,97,121,111,117,116,32,109,111,117,100,108,101,60,107,111,62,236,130,172,236,154,169,237,149,160,32,76,97,121,111,117,116,32,237,129,180,235,158,152,236,138,164,32,235,152,144,235,138,148,32,235,160,136,236,157,180,236,149,132,236,155,131,32,235,170,168,235,147,136,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,79,112,116,105,111,110,115,32,116,111,32,97,112,112,108,121,32,116,111,32,116,104,101,32,76,97,121,111,117,116,46,60,107,111,62,76,97,121,111,117,116,236,151,144,32,236,160,129,236,154,169,237,149,160,32,236,152,181,236,133,152,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,105,110,102,105,110,105,116,101,103,114,105,100,46,115,101,116,76,97,121,111,117,116,40,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,71,114,105,100,76,97,121,111,117,116,44,32,123,92,110,32,32,32,42,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,32,42,32,32,97,108,105,103,110,58,32,92,34,115,116,97,114,116,92,34,92,110,32,32,32,42,32,125,41,59,92,110,32,32,32,42,32,105,110,102,105,110,105,116,101,103,114,105,100,46,115,101,116,76,97,121,111,117,116,40,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,44,32,123,92,110,32,32,32,42,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,32,42,32,32,109,105,110,83,105,122,101,58,32,49,48,48,44,92,110,32,32,32,42,32,32,109,97,120,83,105,122,101,58,32,50,48,48,92,110,32,32,32,42,32,125,41,59,92,110,32,32,32,42,32,105,110,102,105,110,105,116,101,103,114,105,100,46,115,101,116,76,97,121,111,117,116,40,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,83,113,117,97,114,101,76,97,121,111,117,116,44,32,123,92,110,32,32,32,42,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,32,42,32,32,99,111,108,117,109,110,58,32,50,92,110,32,32,32,42,32,125,41,59,92,110,32,32,32,42,32,105,110,102,105,110,105,116,101,103,114,105,100,46,115,101,116,76,97,121,111,117,116,40,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,70,114,97,109,101,76,97,121,111,117,116,44,32,123,92,110,32,32,32,42,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,32,42,32,32,102,114,97,109,101,58,32,91,92,110,32,32,32,42,32,32,32,91,49,44,32,50,93,44,92,110,32,32,32,42,32,32,32,91,52,44,32,51,93,44,92,110,32,32,32,42,32,32,93,92,110,32,32,32,42,32,125,41,59,92,110,32,32,32,42,32,105,110,102,105,110,105,116,101,103,114,105,100,46,115,101,116,76,97,121,111,117,116,40,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,80,97,99,107,105,110,103,76,97,121,111,117,116,44,32,123,92,110,32,32,32,42,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,32,42,32,32,97,115,112,101,99,116,82,97,116,105,111,58,32,49,46,53,92,110,32,32,32,42,32,125,41,59,92,110,32,32,32,42,32,118,97,114,32,108,97,121,111,117,116,32,61,32,110,101,119,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,71,114,105,100,76,97,121,111,117,116,40,123,92,110,32,32,32,42,32,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,32,42,32,32,97,108,105,103,110,58,32,92,34,115,116,97,114,116,92,34,92,110,32,32,32,42,32,125,41,59,92,110,32,32,32,42,32,105,110,102,105,110,105,116,101,103,114,105,100,46,115,101,116,76,97,121,111,117,116,40,108,97,121,111,117,116,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,76,97,121,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,40,76,97,121,111,117,116,75,108,97,115,115,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,104,111,114,105,122,111,110,116,97,108,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,59,92,110,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,76,97,121,111,117,116,75,108,97,115,115,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,108,97,121,111,117,116,32,61,32,110,101,119,32,76,97,121,111,117,116,75,108,97,115,115,40,97,115,115,105,103,110,40,111,112,116,105,111,110,115,44,32,123,92,110,32,32,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,58,32,104,111,114,105,122,111,110,116,97,108,92,110,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,76,97,121,111,117,116,75,108,97,115,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,32,61,32,104,111,114,105,122,111,110,116,97,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,108,97,121,111,117,116,32,61,32,76,97,121,111,117,116,75,108,97,115,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,77,97,110,97,103,101,114,46,115,101,116,76,97,121,111,117,116,40,116,104,105,115,46,95,108,97,121,111,117,116,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,114,101,115,105,122,101,40,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,115,101,116,83,105,122,101,40,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,103,101,116,86,105,101,119,112,111,114,116,83,105,122,101,40,41,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,82,101,116,117,114,110,115,32,116,104,101,32,108,97,121,111,117,116,101,100,32,105,116,101,109,115,46,92,110,32,32,32,42,32,64,107,111,32,235,160,136,236,157,180,236,149,132,236,155,131,235,144,156,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,132,32,235,176,152,237,153,152,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,105,110,99,108,117,100,101,67,97,99,104,101,100,32,73,110,100,105,99,97,116,101,115,32,119,104,101,116,104,101,114,32,116,111,32,105,110,99,108,117,100,101,32,116,104,101,32,99,97,99,104,101,100,32,105,116,101,109,115,46,32,60,107,111,62,236,186,144,236,139,177,235,144,156,32,236,149,132,236,157,180,237,133,156,236,157,132,32,237,143,172,237,149,168,237,149,160,236,167,128,32,236,151,172,235,182,128,235,165,188,32,235,130,152,237,131,128,235,130,184,235,139,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,76,105,115,116,32,111,102,32,105,116,101,109,115,32,60,107,111,62,236,149,132,236,157,180,237,133,156,236,157,152,32,235,170,169,235,161,157,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,73,116,101,109,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,99,108,117,100,101,67,97,99,104,101,100,41,32,123,92,110,32,32,32,32,105,102,32,40,105,110,99,108,117,100,101,67,97,99,104,101,100,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,105,110,99,108,117,100,101,67,97,99,104,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,99,108,117,100,101,67,97,99,104,101,100,32,63,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,92,34,105,116,101,109,115,92,34,41,32,58,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,103,101,116,86,105,115,105,98,108,101,73,116,101,109,115,40,41,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,64,112,97,114,97,109,32,45,32,71,101,116,32,105,116,101,109,115,32,116,111,32,114,101,110,100,101,114,32,111,110,32,115,99,114,101,101,110,46,92,110,32,32,32,42,32,64,107,111,32,237,153,148,235,169,180,236,151,144,32,235,160,140,235,141,148,235,144,160,32,236,149,132,236,157,180,237,133,156,235,147,164,32,234,176,128,236,160,184,236,152,168,235,139,164,46,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,45,32,84,104,101,32,103,114,111,117,112,115,32,99,117,114,114,101,110,116,108,121,32,98,101,105,110,103,32,97,100,100,101,100,32,98,121,32,114,101,113,117,101,115,116,46,60,107,111,62,236,154,148,236,178,173,236,151,144,32,236,157,152,237,149,180,32,236,167,128,234,184,136,32,236,182,148,234,176,128,236,164,145,236,157,184,32,234,183,184,235,163,185,235,147,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,45,32,84,104,101,32,105,116,101,109,115,32,116,111,32,98,101,32,114,101,110,100,101,114,101,100,32,111,110,32,115,99,114,101,101,110,46,32,60,107,111,62,237,153,148,235,169,180,235,160,136,32,235,160,140,235,141,148,235,144,160,32,236,149,132,236,157,180,237,133,156,235,147,164,46,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,82,101,110,100,101,114,105,110,103,73,116,101,109,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,75,101,121,115,32,61,32,123,125,59,92,110,32,32,32,32,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,105,116,101,109,75,101,121,115,91,105,116,101,109,46,105,116,101,109,75,101,121,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,110,101,120,116,86,105,115,105,115,98,108,101,73,116,101,109,115,32,61,32,73,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,116,104,105,115,46,95,114,101,113,117,101,115,116,71,114,111,117,112,115,44,32,92,34,105,116,101,109,115,92,34,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,109,75,101,121,115,91,105,116,101,109,46,105,116,101,109,75,101,121,93,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,116,101,109,75,101,121,115,91,105,116,101,109,46,105,116,101,109,75,101,121,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,115,46,99,111,110,99,97,116,40,110,101,120,116,86,105,115,105,115,98,108,101,73,116,101,109,115,41,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,83,121,110,99,104,114,111,110,105,122,101,32,105,110,102,111,32,111,102,32,105,116,101,109,115,32,119,105,116,104,32,105,110,102,111,32,103,105,118,101,110,32,98,121,32,101,120,116,101,114,110,97,108,32,114,101,110,100,101,114,105,110,103,46,92,110,32,32,32,42,32,64,107,111,32,236,153,184,235,182,128,32,235,160,140,235,141,148,235,167,129,32,235,176,169,236,139,157,236,151,144,32,236,157,152,237,149,180,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,160,149,235,179,180,235,147,164,236,157,132,32,235,143,153,234,184,176,237,153,148,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,45,32,97,108,108,32,105,116,101,109,32,105,110,102,111,115,32,116,111,32,115,121,110,99,104,114,111,110,105,122,101,32,60,107,111,62,235,143,153,234,184,176,237,153,148,237,149,160,32,236,160,132,236,178,180,32,236,149,132,236,157,180,237,133,156,32,236,160,149,235,179,180,235,147,164,46,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,98,101,102,111,114,101,83,121,110,99,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,115,121,110,99,40,105,116,101,109,115,41,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,83,121,110,99,104,114,111,110,105,122,101,32,105,110,102,111,32,111,102,32,105,116,101,109,115,32,119,105,116,104,32,68,79,77,32,105,110,102,111,32,103,105,118,101,110,32,98,121,32,101,120,116,101,114,110,97,108,32,114,101,110,100,101,114,105,110,103,46,92,110,32,32,32,42,32,64,107,111,32,236,153,184,235,182,128,32,235,160,140,235,141,148,235,167,129,32,235,176,169,236,139,157,236,151,144,32,236,157,152,237,149,180,32,236,158,133,235,160,165,235,176,155,236,157,128,32,68,79,77,236,157,152,32,236,160,149,235,179,180,236,153,128,32,237,152,132,236,158,172,32,236,149,132,236,157,180,237,133,156,32,236,160,149,235,179,180,235,165,188,32,235,143,153,234,184,176,237,153,148,32,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,45,32,84,104,101,32,68,79,77,32,101,108,101,109,101,110,116,115,32,116,104,97,116,32,97,114,101,32,99,117,114,114,101,110,116,108,121,32,118,105,115,105,98,108,101,46,60,107,111,62,237,152,132,236,158,172,32,235,179,180,236,151,172,236,167,128,234,179,160,32,236,158,136,235,138,148,32,68,79,77,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,45,32,84,104,101,32,103,114,111,117,112,115,32,99,117,114,114,101,110,116,108,121,32,98,101,105,110,103,32,97,100,100,101,100,32,98,121,32,114,101,113,117,101,115,116,46,60,107,111,62,236,154,148,236,178,173,236,151,144,32,236,157,152,237,149,180,32,236,167,128,234,184,136,32,236,182,148,234,176,128,236,164,145,236,157,184,32,234,183,184,235,163,185,235,147,164,46,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,121,110,99,32,61,32,102,117,110,99,116,105,111,110,32,40,101,108,101,109,101,110,116,115,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,105,116,101,109,77,97,110,97,103,101,114,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,59,92,110,32,32,32,32,118,97,114,32,105,110,102,105,110,105,116,101,32,61,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,103,101,116,82,101,110,100,101,114,105,110,103,73,116,101,109,115,40,41,59,92,110,32,32,32,32,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,44,32,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,67,104,97,110,103,101,32,61,32,105,116,101,109,46,101,108,32,33,61,61,32,101,108,101,109,101,110,116,115,91,105,93,59,92,110,32,32,32,32,32,32,105,116,101,109,46,101,108,32,61,32,101,108,101,109,101,110,116,115,91,105,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,67,104,97,110,103,101,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,114,101,110,100,101,114,73,116,101,109,40,105,116,101,109,44,32,105,116,101,109,46,114,101,99,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,105,115,80,114,111,99,101,115,115,105,110,103,40,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,110,101,119,73,116,101,109,115,32,61,32,105,116,101,109,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,46,110,101,101,100,85,112,100,97,116,101,32,124,124,32,33,105,116,101,109,46,111,114,103,83,105,122,101,32,124,124,32,33,105,116,101,109,46,111,114,103,83,105,122,101,46,119,105,100,116,104,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,110,101,119,73,116,101,109,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,112,111,115,116,76,97,121,111,117,116,40,123,92,110,32,32,32,32,32,32,32,32,102,114,111,109,67,97,99,104,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,115,58,32,105,110,102,105,110,105,116,101,46,103,101,116,86,105,115,105,98,108,101,68,97,116,97,40,41,44,92,110,32,32,32,32,32,32,32,32,110,101,119,73,116,101,109,115,58,32,110,101,119,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,105,115,84,114,117,115,116,101,100,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,105,116,101,109,77,97,110,97,103,101,114,46,115,105,122,101,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,115,105,122,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,65,112,112,101,110,100,40,123,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,110,102,105,110,105,116,101,46,103,101,116,67,117,114,115,111,114,40,92,34,115,116,97,114,116,92,34,41,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,105,114,115,116,71,114,111,117,112,32,61,32,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,71,114,111,117,112,40,48,41,59,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,112,111,115,116,76,97,121,111,117,116,40,123,92,110,32,32,32,32,32,32,32,32,32,32,103,114,111,117,112,115,58,32,91,102,105,114,115,116,71,114,111,117,112,93,44,92,110,32,32,32,32,32,32,32,32,32,32,104,97,115,67,104,105,108,100,114,101,110,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,102,114,111,109,67,97,99,104,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,115,99,114,111,108,108,40,116,104,105,115,46,95,119,97,116,99,104,101,114,46,103,101,116,83,99,114,111,108,108,80,111,115,40,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,82,101,97,114,114,97,110,103,101,115,32,97,32,108,97,121,111,117,116,46,92,110,32,32,32,42,32,64,107,111,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,132,32,235,139,164,236,139,156,32,235,176,176,236,185,152,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,105,115,82,101,108,97,121,111,117,116,61,116,114,117,101,93,32,73,110,100,105,99,97,116,101,115,32,119,104,101,116,104,101,114,32,97,32,99,97,114,100,32,101,108,101,109,101,110,116,32,105,115,32,98,101,105,110,103,32,114,101,108,97,121,111,117,116,101,100,32,60,107,111,62,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,32,236,158,172,235,176,176,236,185,152,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,108,97,121,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,115,82,101,108,97,121,111,117,116,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,82,101,108,97,121,111,117,116,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,105,115,82,101,108,97,121,111,117,116,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,108,97,121,111,117,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,114,101,110,100,101,114,101,114,32,61,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,77,97,110,97,103,101,114,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,59,92,110,32,32,32,32,118,97,114,32,105,110,102,105,110,105,116,101,32,61,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,59,92,110,32,32,32,32,118,97,114,32,105,115,82,101,115,105,122,101,32,61,32,114,101,110,100,101,114,101,114,46,114,101,115,105,122,101,40,41,59,92,110,32,32,32,32,118,97,114,32,118,105,115,105,98,108,101,73,116,101,109,115,32,61,32,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,59,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,105,115,69,113,117,97,108,83,105,122,101,32,61,32,95,97,46,105,115,69,113,117,97,108,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,32,61,32,95,97,46,105,115,67,111,110,115,116,97,110,116,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,32,61,32,95,97,46,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,59,92,110,32,32,32,32,118,97,114,32,105,115,76,97,121,111,117,116,65,108,108,32,61,32,105,115,82,101,108,97,121,111,117,116,32,38,38,32,40,105,115,69,113,117,97,108,83,105,122,101,32,124,124,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,119,97,116,99,104,101,114,46,114,101,115,105,122,101,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,82,101,108,97,121,111,117,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,115,101,116,83,105,122,101,40,114,101,110,100,101,114,101,114,46,103,101,116,86,105,101,119,112,111,114,116,83,105,122,101,40,41,41,59,92,110,32,32,32,32,125,32,47,47,32,102,105,114,115,116,32,108,97,121,111,117,116,32,40,115,116,97,114,116,67,117,114,115,111,114,32,45,49,32,101,110,100,67,117,114,115,111,114,32,45,49,41,92,110,92,110,92,110,32,32,32,32,105,102,32,40,33,118,105,115,105,98,108,101,73,116,101,109,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,102,105,114,115,116,76,97,121,111,117,116,40,41,59,92,110,32,32,32,32,125,32,47,47,32,108,97,121,111,117,116,32,100,97,116,97,115,92,110,92,110,92,110,32,32,32,32,118,97,114,32,95,98,32,61,32,105,110,102,105,110,105,116,101,46,103,101,116,67,117,114,115,111,114,115,40,41,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,67,117,114,115,111,114,32,61,32,95,98,91,48,93,44,92,110,32,32,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,32,61,32,95,98,91,49,93,59,92,110,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,105,115,76,97,121,111,117,116,65,108,108,32,124,124,32,33,40,105,115,82,101,108,97,121,111,117,116,32,38,38,32,105,115,82,101,115,105,122,101,41,32,63,32,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,71,114,111,117,112,115,40,41,32,58,32,105,116,101,109,77,97,110,97,103,101,114,46,115,108,105,99,101,71,114,111,117,112,115,40,115,116,97,114,116,67,117,114,115,111,114,44,32,101,110,100,67,117,114,115,111,114,32,43,32,49,41,59,32,47,47,32,76,97,121,111,117,116,77,97,110,103,101,114,32,105,110,116,101,114,102,97,99,101,92,110,92,110,32,32,32,32,116,104,105,115,46,95,114,101,108,97,121,111,117,116,40,105,115,82,101,108,97,121,111,117,116,44,32,100,97,116,97,44,32,105,115,82,101,115,105,122,101,32,63,32,118,105,115,105,98,108,101,73,116,101,109,115,32,58,32,91,93,41,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,76,97,121,111,117,116,65,108,108,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,102,105,116,40,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,82,101,108,97,121,111,117,116,32,38,38,32,105,115,82,101,115,105,122,101,41,32,123,92,110,32,32,32,32,32,32,105,116,101,109,77,97,110,97,103,101,114,46,99,108,101,97,114,79,117,116,108,105,110,101,115,40,115,116,97,114,116,67,117,114,115,111,114,44,32,101,110,100,67,117,114,115,111,114,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,114,101,110,100,101,114,73,116,101,109,115,40,118,105,115,105,98,108,101,73,116,101,109,115,44,32,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,41,59,92,110,92,110,32,32,32,32,105,115,82,101,108,97,121,111,117,116,32,38,38,32,116,104,105,115,46,95,119,97,116,99,104,101,114,46,115,101,116,83,99,114,111,108,108,80,111,115,40,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,111,110,76,97,121,111,117,116,67,111,109,112,108,101,116,101,40,123,92,110,32,32,32,32,32,32,105,116,101,109,115,58,32,118,105,115,105,98,108,101,73,116,101,109,115,44,92,110,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,102,114,111,109,67,97,99,104,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,105,115,84,114,117,115,116,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,117,115,101,82,101,99,121,99,108,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,105,115,76,97,121,111,117,116,58,32,116,114,117,101,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,82,101,109,111,118,101,115,32,97,32,105,116,101,109,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,116,111,32,97,110,32,105,110,100,101,120,32,111,110,32,97,32,103,114,105,100,32,108,97,121,111,117,116,46,92,110,32,32,32,42,32,64,107,111,32,234,183,184,235,166,172,235,147,156,32,235,160,136,236,157,180,236,149,132,236,155,131,236,151,144,236,132,156,32,236,157,184,235,141,177,236,138,164,236,151,144,32,237,149,180,235,139,185,237,149,152,235,138,148,32,236,149,132,236,157,180,237,133,156,32,236,130,173,236,160,156,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,45,32,73,110,100,101,120,32,111,102,32,103,114,111,117,112,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,116,111,32,105,116,101,109,32,116,111,32,114,101,109,111,118,101,32,60,107,111,62,236,130,173,236,160,156,237,149,160,32,236,149,132,236,157,180,237,133,156,236,151,144,32,237,149,180,235,139,185,237,149,152,235,138,148,32,234,183,184,235,163,185,236,157,152,32,236,157,184,235,141,177,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,45,32,73,110,100,101,120,32,111,102,32,105,116,101,109,32,116,111,32,114,101,109,111,118,101,32,111,110,32,103,114,111,117,112,32,60,107,111,62,234,183,184,235,163,185,236,151,144,236,132,156,32,236,130,173,236,160,156,237,149,160,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,157,184,235,141,177,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,32,32,82,101,109,111,118,101,100,32,105,116,101,109,115,32,105,110,102,111,114,109,97,116,105,111,110,32,60,107,111,62,236,130,173,236,160,156,235,144,156,32,236,149,132,236,157,180,237,133,156,235,147,164,32,236,160,149,235,179,180,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,114,101,109,111,118,101,66,121,73,110,100,101,120,32,61,32,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,73,110,100,101,120,44,32,105,116,101,109,73,110,100,101,120,44,32,105,115,76,97,121,111,117,116,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,76,97,121,111,117,116,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,105,115,76,97,121,111,117,116,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,114,101,109,111,118,101,40,103,114,111,117,112,73,110,100,101,120,44,32,105,116,101,109,73,110,100,101,120,41,44,92,110,32,32,32,32,32,32,32,32,105,116,101,109,115,32,61,32,95,97,46,105,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,32,61,32,95,97,46,103,114,111,117,112,59,92,110,92,110,32,32,32,32,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,68,79,77,82,101,110,100,101,114,101,114,46,114,101,109,111,118,101,69,108,101,109,101,110,116,40,105,116,101,109,46,101,108,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,105,116,101,109,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,105,115,76,97,121,111,117,116,32,38,38,32,116,104,105,115,46,108,97,121,111,117,116,40,33,33,103,114,111,117,112,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,82,101,109,111,118,101,115,32,97,32,105,116,101,109,32,101,108,101,109,101,110,116,32,111,110,32,97,32,103,114,105,100,32,108,97,121,111,117,116,46,92,110,32,32,32,42,32,64,107,111,32,234,183,184,235,166,172,235,147,156,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,152,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,165,188,32,236,130,173,236,160,156,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,105,116,101,109,32,101,108,101,109,101,110,116,32,116,111,32,98,101,32,114,101,109,111,118,101,100,32,60,107,111,62,236,130,173,236,160,156,235,144,160,32,236,149,132,236,157,180,237,133,156,32,236,151,152,235,166,172,235,168,188,237,138,184,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,32,32,82,101,109,111,118,101,100,32,105,116,101,109,115,32,105,110,102,111,114,109,97,116,105,111,110,32,60,107,111,62,236,130,173,236,160,156,235,144,156,32,236,149,132,236,157,180,237,133,156,235,147,164,32,236,160,149,235,179,180,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,114,101,109,111,118,101,32,61,32,102,117,110,99,116,105,111,110,32,40,101,108,101,109,101,110,116,44,32,105,115,76,97,121,111,117,116,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,76,97,121,111,117,116,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,105,115,76,97,121,111,117,116,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,105,110,100,101,120,101,115,79,102,69,108,101,109,101,110,116,40,101,108,101,109,101,110,116,41,44,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,73,110,100,101,120,32,61,32,95,97,46,103,114,111,117,112,73,110,100,101,120,44,92,110,32,32,32,32,32,32,32,32,105,116,101,109,73,110,100,101,120,32,61,32,95,97,46,105,116,101,109,73,110,100,101,120,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,101,109,111,118,101,66,121,73,110,100,101,120,40,103,114,111,117,112,73,110,100,101,120,44,32,105,116,101,109,73,110,100,101,120,44,32,105,115,76,97,121,111,117,116,41,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,82,101,116,117,114,110,115,32,116,104,101,32,108,105,115,116,32,111,102,32,103,114,111,117,112,32,107,101,121,115,32,119,104,105,99,104,32,98,101,108,111,110,103,115,32,116,111,32,99,97,114,100,32,101,108,101,109,101,110,116,115,32,99,117,114,114,101,110,116,108,121,32,98,101,105,110,103,32,109,97,105,110,116,97,105,110,101,100,46,32,89,111,117,32,99,97,110,32,117,115,101,32,116,104,101,32,97,112,112,101,110,100,40,41,32,111,114,32,112,114,101,112,101,110,100,40,41,32,109,101,116,104,111,100,32,116,111,32,99,111,110,102,105,103,117,114,101,32,103,114,111,117,112,32,107,101,121,115,32,115,111,32,116,104,97,116,32,109,117,108,116,105,112,108,101,32,99,97,114,100,32,101,108,101,109,101,110,116,115,32,99,97,110,32,98,101,32,109,97,110,97,103,101,100,32,97,116,32,111,110,99,101,46,32,73,102,32,121,111,117,32,100,111,32,110,111,116,32,117,115,101,32,116,104,101,115,101,32,109,101,116,104,111,100,115,32,116,111,32,99,111,110,102,105,103,117,114,101,32,103,114,111,117,112,32,107,101,121,115,44,32,103,114,111,117,112,107,101,121,32,105,115,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,103,101,110,101,114,97,116,101,100,46,92,110,32,32,32,42,32,64,107,111,32,237,152,132,236,158,172,32,236,156,160,236,167,128,237,149,152,234,179,160,32,236,158,136,235,138,148,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,236,157,152,32,234,183,184,235,163,185,32,237,130,164,32,235,170,169,235,161,157,236,157,132,32,235,176,152,237,153,152,237,149,156,235,139,164,46,32,236,151,172,235,159,172,32,234,176,156,236,157,152,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,165,188,32,235,172,182,236,150,180,236,132,156,32,234,180,128,235,166,172,237,149,160,32,236,136,152,32,236,158,136,235,143,132,235,161,157,32,97,112,112,101,110,100,40,41,32,235,169,148,236,132,156,235,147,156,235,130,152,32,112,114,101,112,101,110,100,40,41,32,235,169,148,236,132,156,235,147,156,236,151,144,236,132,156,32,234,183,184,235,163,185,32,237,130,164,235,165,188,32,236,167,128,236,160,149,237,149,160,32,236,136,152,32,236,158,136,235,139,164,46,32,97,112,112,101,110,100,40,41,32,235,169,148,236,132,156,235,147,156,235,130,152,32,112,114,101,112,101,110,100,40,41,32,235,169,148,236,132,156,235,147,156,236,151,144,236,132,156,32,234,183,184,235,163,185,32,237,130,164,235,165,188,32,236,167,128,236,160,149,237,149,152,236,167,128,32,236,149,138,236,149,152,235,139,164,235,169,180,32,236,158,144,235,143,153,236,156,188,235,161,156,32,234,183,184,235,163,185,237,130,164,234,176,128,32,236,131,157,236,132,177,235,144,156,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,105,110,99,108,117,100,101,67,97,99,104,101,100,32,73,110,100,105,99,97,116,101,115,32,119,104,101,116,104,101,114,32,116,111,32,105,110,99,108,117,100,101,32,116,104,101,32,99,97,99,104,101,100,32,103,114,111,117,112,115,46,32,60,107,111,62,236,186,144,236,139,177,235,144,156,32,234,183,184,235,163,185,236,157,132,32,237,143,172,237,149,168,237,149,160,236,167,128,32,236,151,172,235,182,128,235,165,188,32,235,130,152,237,131,128,235,130,184,235,139,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,65,114,114,97,121,125,32,76,105,115,116,32,111,102,32,103,114,111,117,112,32,107,101,121,115,32,60,107,111,62,234,183,184,235,163,185,32,237,130,164,236,157,152,32,235,170,169,235,161,157,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,71,114,111,117,112,75,101,121,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,99,108,117,100,101,67,97,99,104,101,100,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,105,110,99,108,117,100,101,67,97,99,104,101,100,32,63,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,71,114,111,117,112,115,40,41,32,58,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,103,101,116,86,105,115,105,98,108,101,68,97,116,97,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,118,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,46,103,114,111,117,112,75,101,121,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,115,116,97,116,101,32,111,102,32,97,32,109,111,100,117,108,101,32,115,117,99,104,32,97,115,32,108,111,99,97,116,105,111,110,32,105,110,102,111,114,109,97,116,105,111,110,46,32,89,111,117,32,99,97,110,32,117,115,101,32,116,104,101,32,115,101,116,83,116,97,116,117,115,40,41,32,109,101,116,104,111,100,32,116,111,32,114,101,115,116,111,114,101,32,116,104,101,32,105,110,102,111,114,109,97,116,105,111,110,32,114,101,116,117,114,110,101,100,32,116,104,114,111,117,103,104,32,97,32,99,97,108,108,32,116,111,32,116,104,105,115,32,109,101,116,104,111,100,46,92,110,32,32,32,42,32,64,107,111,32,236,185,180,235,147,156,236,157,152,32,236,156,132,236,185,152,32,236,160,149,235,179,180,32,235,147,177,32,235,170,168,235,147,136,236,157,152,32,237,152,132,236,158,172,32,236,131,129,237,131,156,32,236,160,149,235,179,180,235,165,188,32,235,176,152,237,153,152,237,149,156,235,139,164,46,32,236,157,180,32,235,169,148,236,132,156,235,147,156,234,176,128,32,235,176,152,237,153,152,237,149,156,32,236,160,149,235,179,180,235,165,188,32,236,160,128,236,158,165,237,149,180,32,235,145,144,236,151,136,235,139,164,234,176,128,32,115,101,116,83,116,97,116,117,115,40,41,32,235,169,148,236,132,156,235,147,156,235,161,156,32,235,179,181,236,155,144,237,149,160,32,236,136,152,32,236,158,136,235,139,164,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,32,83,116,97,116,101,32,111,98,106,101,99,116,32,111,102,32,116,104,101,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,32,109,111,100,117,108,101,60,107,111,62,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,32,235,170,168,235,147,136,236,157,152,32,236,131,129,237,131,156,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,83,116,97,116,117,115,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,97,114,116,75,101,121,44,32,101,110,100,75,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,95,115,116,97,116,117,115,58,32,97,115,115,105,103,110,40,123,125,44,32,116,104,105,115,46,95,115,116,97,116,117,115,41,44,92,110,32,32,32,32,32,32,95,105,116,101,109,77,97,110,97,103,101,114,58,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,83,116,97,116,117,115,40,115,116,97,114,116,75,101,121,44,32,101,110,100,75,101,121,41,44,92,110,32,32,32,32,32,32,95,114,101,110,100,101,114,101,114,58,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,103,101,116,83,116,97,116,117,115,40,41,44,92,110,32,32,32,32,32,32,95,119,97,116,99,104,101,114,58,32,116,104,105,115,46,95,119,97,116,99,104,101,114,46,103,101,116,83,116,97,116,117,115,40,41,44,92,110,32,32,32,32,32,32,95,105,110,102,105,110,105,116,101,58,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,103,101,116,83,116,97,116,117,115,40,115,116,97,114,116,75,101,121,44,32,101,110,100,75,101,121,41,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,83,101,116,115,32,116,104,101,32,115,116,97,116,101,32,111,102,32,116,104,101,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,32,109,111,100,117,108,101,32,119,105,116,104,32,116,104,101,32,105,110,102,111,114,109,97,116,105,111,110,32,114,101,116,117,114,110,101,100,32,116,104,114,111,117,103,104,32,97,32,99,97,108,108,32,116,111,32,116,104,101,32,103,101,116,83,116,97,116,117,101,40,41,32,109,101,116,104,111,100,46,92,110,32,32,32,42,32,64,107,111,32,103,101,116,83,116,97,116,117,101,40,41,32,235,169,148,236,132,156,235,147,156,234,176,128,32,236,160,128,236,158,165,237,149,156,32,236,160,149,235,179,180,235,161,156,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,32,235,170,168,235,147,136,236,157,152,32,236,131,129,237,131,156,235,165,188,32,236,132,164,236,160,149,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,116,97,116,117,115,32,83,116,97,116,101,32,111,98,106,101,99,116,32,111,102,32,116,104,101,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,32,109,111,100,117,108,101,32,60,107,111,62,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,32,235,170,168,235,147,136,236,157,152,32,236,131,129,237,131,156,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,97,112,112,108,121,83,99,114,111,108,108,80,111,115,61,116,114,117,101,93,32,67,104,101,99,107,115,32,119,104,101,116,104,101,114,32,116,111,32,115,99,114,111,108,108,60,107,111,62,236,138,164,237,129,172,235,161,164,236,157,152,32,236,156,132,236,185,152,235,165,188,32,235,179,181,236,155,144,237,149,160,236,167,128,32,234,178,176,236,160,149,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,83,116,97,116,117,115,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,97,116,117,115,44,32,97,112,112,108,121,83,99,114,111,108,108,80,111,115,44,32,115,121,110,99,69,108,101,109,101,110,116,115,41,32,123,92,110,32,32,32,32,105,102,32,40,97,112,112,108,121,83,99,114,111,108,108,80,111,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,97,112,112,108,121,83,99,114,111,108,108,80,111,115,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,115,116,97,116,117,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,95,115,116,97,116,117,115,32,61,32,115,116,97,116,117,115,46,95,115,116,97,116,117,115,44,92,110,32,32,32,32,32,32,32,32,95,114,101,110,100,101,114,101,114,32,61,32,115,116,97,116,117,115,46,95,114,101,110,100,101,114,101,114,44,92,110,32,32,32,32,32,32,32,32,95,105,116,101,109,77,97,110,97,103,101,114,32,61,32,115,116,97,116,117,115,46,95,105,116,101,109,77,97,110,97,103,101,114,44,92,110,32,32,32,32,32,32,32,32,95,119,97,116,99,104,101,114,32,61,32,115,116,97,116,117,115,46,95,119,97,116,99,104,101,114,44,92,110,32,32,32,32,32,32,32,32,95,105,110,102,105,110,105,116,101,32,61,32,115,116,97,116,117,115,46,95,105,110,102,105,110,105,116,101,59,92,110,92,110,32,32,32,32,105,102,32,40,33,95,115,116,97,116,117,115,32,124,124,32,33,95,114,101,110,100,101,114,101,114,32,124,124,32,33,95,105,116,101,109,77,97,110,97,103,101,114,32,124,124,32,33,95,119,97,116,99,104,101,114,32,124,124,32,33,95,105,110,102,105,110,105,116,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,114,101,110,100,101,114,69,120,116,101,114,110,97,108,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,110,100,101,114,69,120,116,101,114,110,97,108,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,59,92,110,32,32,32,32,118,97,114,32,114,101,110,100,101,114,101,114,32,61,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,59,92,110,32,32,32,32,118,97,114,32,119,97,116,99,104,101,114,32,61,32,116,104,105,115,46,95,119,97,116,99,104,101,114,59,92,110,32,32,32,32,118,97,114,32,105,110,102,105,110,105,116,101,32,61,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,59,92,110,32,32,32,32,119,97,116,99,104,101,114,46,100,101,116,97,99,104,69,118,101,110,116,40,41,59,92,110,32,32,32,32,97,115,115,105,103,110,40,116,104,105,115,46,95,115,116,97,116,117,115,44,32,95,115,116,97,116,117,115,41,59,92,110,32,32,32,32,116,104,105,115,46,95,115,116,97,116,117,115,46,112,114,111,99,101,115,115,105,110,103,83,116,97,116,117,115,32,61,32,73,68,76,69,59,92,110,32,32,32,32,105,116,101,109,115,46,115,101,116,83,116,97,116,117,115,40,95,105,116,101,109,77,97,110,97,103,101,114,41,59,92,110,32,32,32,32,114,101,110,100,101,114,101,114,46,115,101,116,83,116,97,116,117,115,40,95,114,101,110,100,101,114,101,114,41,59,92,110,32,32,32,32,105,110,102,105,110,105,116,101,46,115,101,116,83,116,97,116,117,115,40,95,105,110,102,105,110,105,116,101,41,59,92,110,32,32,32,32,118,97,114,32,118,105,115,105,98,108,101,73,116,101,109,115,32,61,32,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,118,105,115,105,98,108,101,73,116,101,109,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,105,102,32,40,114,101,110,100,101,114,69,120,116,101,114,110,97,108,41,32,123,92,110,32,32,32,32,32,32,118,105,115,105,98,108,101,73,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,44,32,105,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,109,46,101,108,32,61,32,115,121,110,99,69,108,101,109,101,110,116,115,91,105,93,59,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,114,101,110,100,101,114,73,116,101,109,115,40,118,105,115,105,98,108,101,73,116,101,109,115,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,110,100,101,114,101,114,46,99,114,101,97,116,101,65,110,100,73,110,115,101,114,116,40,118,105,115,105,98,108,101,73,116,101,109,115,44,32,116,114,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,105,115,82,101,76,97,121,111,117,116,32,61,32,114,101,110,100,101,114,101,114,46,105,115,78,101,101,100,101,100,82,101,115,105,122,101,40,41,59,92,110,32,32,32,32,119,97,116,99,104,101,114,46,115,101,116,83,116,97,116,117,115,40,95,119,97,116,99,104,101,114,44,32,97,112,112,108,121,83,99,114,111,108,108,80,111,115,41,59,92,110,32,32,32,32,119,97,116,99,104,101,114,46,97,116,116,97,99,104,69,118,101,110,116,40,41,59,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,32,61,32,95,97,46,105,115,67,111,110,115,116,97,110,116,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,105,115,69,113,117,97,108,83,105,122,101,32,61,32,95,97,46,105,115,69,113,117,97,108,83,105,122,101,59,92,110,92,110,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,65,112,112,101,110,100,40,123,92,110,32,32,32,32,32,32,32,32,99,97,99,104,101,58,32,91,93,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,82,101,76,97,121,111,117,116,41,32,123,92,110,32,32,32,32,32,32,114,101,110,100,101,114,101,114,46,114,101,115,105,122,101,40,41,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,95,115,101,116,83,105,122,101,40,114,101,110,100,101,114,101,114,46,103,101,116,86,105,101,119,112,111,114,116,83,105,122,101,40,41,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,67,111,110,115,116,97,110,116,83,105,122,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,97,121,111,117,116,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,99,108,101,97,114,79,117,116,108,105,110,101,115,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,112,111,115,116,76,97,121,111,117,116,40,123,92,110,32,32,32,32,32,32,32,32,32,32,102,114,111,109,67,97,99,104,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,103,114,111,117,112,115,58,32,105,115,69,113,117,97,108,83,105,122,101,32,63,32,105,116,101,109,115,46,103,101,116,71,114,111,117,112,115,40,41,32,58,32,105,110,102,105,110,105,116,101,46,103,101,116,86,105,115,105,98,108,101,68,97,116,97,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,115,58,32,118,105,115,105,98,108,101,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,110,101,119,73,116,101,109,115,58,32,118,105,115,105,98,108,101,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,84,114,117,115,116,101,100,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,97,121,111,117,116,40,102,97,108,115,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,108,101,97,114,115,32,97,100,100,101,100,32,99,97,114,100,32,101,108,101,109,101,110,116,115,32,97,110,100,32,100,97,116,97,46,92,110,32,32,32,42,32,64,107,111,32,236,182,148,234,176,128,235,144,156,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,236,153,128,32,235,141,176,236,157,180,237,132,176,235,165,188,32,235,170,168,235,145,144,32,236,167,128,236,154,180,235,139,164,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,108,101,97,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,99,108,101,97,114,40,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,99,108,101,97,114,40,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,99,108,101,97,114,40,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,114,101,115,101,116,40,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,97,112,112,101,110,100,76,111,97,100,105,110,103,66,97,114,40,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,83,112,101,99,105,102,105,101,115,32,116,104,101,32,76,111,97,100,105,110,103,32,66,97,114,32,116,111,32,117,115,101,32,102,111,114,32,97,112,112,101,110,100,32,111,114,32,112,114,101,112,101,110,100,32,105,116,101,109,115,46,92,110,32,32,32,42,32,64,107,111,32,236,149,132,236,157,180,237,133,156,236,157,132,32,97,112,112,101,110,100,32,235,152,144,235,138,148,32,112,114,101,112,101,110,100,32,237,149,152,234,184,176,32,236,156,132,237,149,180,32,236,130,172,236,154,169,237,149,160,32,235,161,156,235,148,169,32,235,176,148,235,165,188,32,236,167,128,236,160,149,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,124,79,98,106,101,99,116,125,32,91,117,115,101,114,76,111,97,100,105,110,103,66,97,114,61,123,125,93,32,84,104,101,32,108,111,97,100,105,110,103,32,98,97,114,32,72,84,77,76,32,109,97,114,107,117,112,32,111,114,32,101,108,101,109,101,110,116,32,111,114,32,101,108,101,109,101,110,116,32,115,101,108,101,99,116,111,114,32,60,107,111,62,32,235,161,156,235,148,169,32,235,176,148,32,72,84,77,76,32,235,152,144,235,138,148,32,101,108,101,109,101,110,116,32,235,152,144,235,138,148,32,115,101,108,101,99,116,111,114,32,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,76,111,97,100,105,110,103,66,97,114,32,61,32,102,117,110,99,116,105,111,110,32,40,117,115,101,114,76,111,97,100,105,110,103,66,97,114,41,32,123,92,110,32,32,32,32,105,102,32,40,117,115,101,114,76,111,97,100,105,110,103,66,97,114,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,117,115,101,114,76,111,97,100,105,110,103,66,97,114,32,61,32,123,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,108,111,97,100,105,110,103,66,97,114,79,98,106,32,61,32,116,121,112,101,111,102,32,117,115,101,114,76,111,97,100,105,110,103,66,97,114,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,32,63,32,117,115,101,114,76,111,97,100,105,110,103,66,97,114,32,58,32,123,92,110,32,32,32,32,32,32,97,112,112,101,110,100,58,32,117,115,101,114,76,111,97,100,105,110,103,66,97,114,44,92,110,32,32,32,32,32,32,112,114,101,112,101,110,100,58,32,117,115,101,114,76,111,97,100,105,110,103,66,97,114,92,110,32,32,32,32,125,59,92,110,32,32,32,32,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,105,122,101,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,116,121,108,101,32,61,32,123,125,59,92,110,32,32,32,32,118,97,114,32,108,111,97,100,105,110,103,66,97,114,32,61,32,116,104,105,115,46,95,108,111,97,100,105,110,103,66,97,114,59,92,110,32,32,32,32,118,97,114,32,105,115,67,104,97,110,103,101,76,111,97,100,105,110,103,66,97,114,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,116,121,112,101,32,105,110,32,108,111,97,100,105,110,103,66,97,114,79,98,106,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,111,97,100,105,110,103,69,108,101,109,101,110,116,32,61,32,36,40,108,111,97,100,105,110,103,66,97,114,79,98,106,91,116,121,112,101,93,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,108,111,97,100,105,110,103,66,97,114,91,116,121,112,101,93,32,33,61,61,32,108,111,97,100,105,110,103,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,108,111,97,100,105,110,103,66,97,114,91,116,121,112,101,93,32,61,32,108,111,97,100,105,110,103,69,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,32,32,105,115,67,104,97,110,103,101,76,111,97,100,105,110,103,66,97,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,104,97,115,67,108,97,115,115,40,108,111,97,100,105,110,103,69,108,101,109,101,110,116,44,32,73,71,78,79,82,69,95,67,76,65,83,83,78,65,77,69,41,41,32,123,92,110,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,108,111,97,100,105,110,103,69,108,101,109,101,110,116,44,32,73,71,78,79,82,69,95,67,76,65,83,83,78,65,77,69,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,105,115,67,104,97,110,103,101,76,111,97,100,105,110,103,66,97,114,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,76,111,97,100,105,110,103,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,97,112,112,101,110,100,76,111,97,100,105,110,103,66,97,114,40,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,104,101,99,107,115,32,119,104,101,116,104,101,114,32,97,32,99,97,114,100,32,101,108,101,109,101,110,116,32,111,114,32,100,97,116,97,32,105,115,32,98,101,105,110,103,32,97,100,100,101,100,46,92,110,32,32,32,42,32,64,107,111,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,32,236,182,148,234,176,128,32,235,152,144,235,138,148,32,235,141,176,236,157,180,237,132,176,32,235,161,156,235,148,169,236,157,180,32,236,167,132,237,150,137,32,236,164,145,236,157,184,236,167,128,32,237,153,149,236,157,184,237,149,156,235,139,164,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,66,111,111,108,101,97,110,125,32,73,110,100,105,99,97,116,101,115,32,119,104,101,116,104,101,114,32,97,32,99,97,114,100,32,101,108,101,109,101,110,116,32,111,114,32,100,97,116,97,32,105,115,32,98,101,105,110,103,32,97,100,100,101,100,32,60,107,111,62,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,32,236,182,148,234,176,128,32,235,152,144,235,138,148,32,235,141,176,236,157,180,237,132,176,32,235,161,156,235,148,169,32,236,167,132,237,150,137,32,236,164,145,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,105,115,80,114,111,99,101,115,115,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,115,80,114,111,99,101,115,115,105,110,103,40,41,32,124,124,32,116,104,105,115,46,105,115,76,111,97,100,105,110,103,40,41,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,104,101,99,107,115,32,119,104,101,116,104,101,114,32,100,97,116,97,32,105,115,32,108,111,97,100,105,110,103,46,92,110,32,32,32,42,32,64,107,111,32,235,141,176,236,157,180,237,132,176,32,235,161,156,235,148,169,32,236,164,145,236,157,184,236,167,128,32,237,153,149,236,157,184,237,149,156,235,139,164,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,66,111,111,108,101,97,110,125,32,73,110,100,105,99,97,116,101,115,32,119,104,101,116,104,101,114,32,100,97,116,97,32,105,115,32,108,111,97,100,105,110,103,32,60,107,111,62,235,141,176,236,157,180,237,132,176,32,235,161,156,235,148,169,32,236,167,132,237,150,137,32,236,164,145,32,236,151,172,235,182,128,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,105,115,76,111,97,100,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,103,101,116,76,111,97,100,105,110,103,83,116,97,116,117,115,40,41,32,62,32,48,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,82,101,116,117,114,110,115,32,116,104,101,32,101,108,101,109,101,110,116,32,111,102,32,108,111,97,100,105,110,103,32,98,97,114,46,92,110,32,32,32,42,32,64,107,111,32,235,161,156,235,148,169,32,235,176,148,236,157,152,32,101,108,101,109,101,110,116,235,165,188,32,235,176,152,237,153,152,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,105,115,65,112,112,101,110,100,61,99,117,114,114,101,110,116,76,111,97,100,105,110,103,66,97,114,124,116,114,117,101,93,32,67,104,101,99,107,115,32,119,104,101,116,104,101,114,32,116,104,101,32,99,97,114,100,32,101,108,101,109,101,110,116,32,105,115,32,97,100,100,101,100,32,116,111,32,116,104,101,32,97,112,112,101,110,100,32,40,41,32,109,101,116,104,111,100,46,32,60,107,111,62,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,234,176,128,32,97,112,112,101,110,100,40,41,32,235,169,148,236,132,156,235,147,156,235,161,156,32,236,182,148,234,176,128,32,237,149,160,32,234,178,131,236,157,184,236,167,128,32,237,153,149,236,157,184,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,69,108,101,109,101,110,116,125,32,84,104,101,32,101,108,101,109,101,110,116,32,111,102,32,108,111,97,100,105,110,103,32,98,97,114,46,32,60,107,111,62,235,161,156,235,148,169,32,235,176,148,236,157,152,32,101,108,101,109,101,110,116,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,76,111,97,100,105,110,103,66,97,114,32,61,32,102,117,110,99,116,105,111,110,32,40,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,65,112,112,101,110,100,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,105,115,65,112,112,101,110,100,32,61,32,116,104,105,115,46,95,103,101,116,76,111,97,100,105,110,103,83,116,97,116,117,115,40,41,32,33,61,61,32,76,79,65,68,73,78,71,95,80,82,69,80,69,78,68,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,108,111,97,100,105,110,103,66,97,114,91,105,115,65,112,112,101,110,100,32,63,32,92,34,97,112,112,101,110,100,92,34,32,58,32,92,34,112,114,101,112,101,110,100,92,34,93,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,83,116,97,114,116,32,108,111,97,100,105,110,103,32,102,111,114,32,97,112,112,101,110,100,47,112,114,101,112,101,110,100,32,100,117,114,105,110,103,32,108,111,97,100,105,110,103,32,100,97,116,97,46,92,110,32,32,32,42,32,64,107,111,32,235,141,176,236,157,180,237,132,176,234,176,128,32,235,161,156,235,148,169,235,144,152,235,138,148,32,235,143,153,236,149,136,32,97,112,112,101,110,100,47,112,114,101,112,101,110,100,237,149,152,234,184,184,32,236,156,132,237,149,180,32,235,161,156,235,148,169,236,157,132,32,236,139,156,236,158,145,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,105,115,65,112,112,101,110,100,61,116,114,117,101,93,32,67,104,101,99,107,115,32,119,104,101,116,104,101,114,32,116,104,101,32,99,97,114,100,32,101,108,101,109,101,110,116,32,105,115,32,97,100,100,101,100,32,116,111,32,116,104,101,32,97,112,112,101,110,100,32,40,41,32,109,101,116,104,111,100,46,32,60,107,111,62,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,234,176,128,32,97,112,112,101,110,100,40,41,32,235,169,148,236,132,156,235,147,156,235,161,156,32,236,182,148,234,176,128,32,237,149,160,32,234,178,131,236,157,184,236,167,128,32,237,153,149,236,157,184,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,117,115,101,114,83,116,121,108,101,32,61,32,123,100,105,115,112,108,97,121,58,32,92,34,98,108,111,99,107,92,34,125,93,32,99,117,115,116,111,109,32,115,116,121,108,101,32,116,111,32,97,112,112,108,121,32,116,111,32,116,104,105,115,32,108,111,97,100,105,110,103,32,98,97,114,32,102,111,114,32,115,116,97,114,116,46,32,60,107,111,62,32,235,161,156,235,148,169,32,236,139,156,236,158,145,236,157,132,32,236,156,132,237,149,156,32,235,161,156,235,148,169,32,235,176,148,236,151,144,32,236,160,129,236,154,169,237,149,160,32,236,187,164,236,138,164,237,133,128,32,236,138,164,237,131,128,236,157,188,32,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,116,97,114,116,76,111,97,100,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,40,105,115,65,112,112,101,110,100,44,32,117,115,101,114,83,116,121,108,101,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,102,32,40,117,115,101,114,83,116,121,108,101,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,117,115,101,114,83,116,121,108,101,32,61,32,123,92,110,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,92,34,98,108,111,99,107,92,34,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,76,111,97,100,105,110,103,40,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,105,115,65,112,112,101,110,100,32,63,32,92,34,97,112,112,101,110,100,92,34,32,58,32,92,34,112,114,101,112,101,110,100,92,34,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,112,114,111,99,101,115,115,40,105,115,65,112,112,101,110,100,32,63,32,76,79,65,68,73,78,71,95,65,80,80,69,78,68,32,58,32,76,79,65,68,73,78,71,95,80,82,69,80,69,78,68,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,108,111,97,100,105,110,103,66,97,114,91,116,121,112,101,93,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,110,101,120,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,46,95,114,101,110,100,101,114,76,111,97,100,105,110,103,40,117,115,101,114,83,116,121,108,101,41,59,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,116,121,108,101,32,61,32,117,115,101,114,83,116,121,108,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,102,105,116,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,40,95,116,104,105,115,46,95,103,101,116,69,100,103,101,86,97,108,117,101,40,92,34,101,110,100,92,34,41,32,43,32,95,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,105,122,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,110,100,101,114,69,120,116,101,114,110,97,108,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,114,101,110,100,101,114,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,110,101,120,116,58,32,110,101,120,116,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,110,101,120,116,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,69,110,100,32,108,111,97,100,105,110,103,32,97,102,116,101,114,32,115,116,97,114,116,76,111,97,100,105,110,103,40,41,32,102,111,114,32,97,112,112,101,110,100,47,112,114,101,112,101,110,100,92,110,32,32,32,42,32,64,107,111,32,32,97,112,112,101,110,100,47,112,114,101,112,101,110,100,237,149,152,234,184,184,32,236,156,132,237,149,180,32,115,116,97,114,116,76,111,97,100,105,110,103,40,41,32,237,152,184,236,182,156,237,149,180,236,132,160,32,234,177,184,236,151,136,235,141,152,32,235,161,156,235,148,169,236,157,132,32,235,129,157,235,130,184,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,117,115,101,114,83,116,121,108,101,32,61,32,123,100,105,115,112,108,97,121,58,32,92,34,110,111,110,101,92,34,125,93,32,99,117,115,116,111,109,32,115,116,121,108,101,32,116,111,32,97,112,112,108,121,32,116,111,32,116,104,105,115,32,108,111,97,100,105,110,103,32,98,97,114,32,102,111,114,32,101,110,100,32,60,107,111,62,32,235,161,156,235,148,169,32,236,139,156,236,158,145,236,157,132,32,236,156,132,237,149,156,32,235,161,156,235,148,169,32,235,176,148,236,151,144,32,236,160,129,236,154,169,237,149,160,32,236,187,164,236,138,164,237,133,128,32,236,138,164,237,131,128,236,157,188,32,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,101,110,100,76,111,97,100,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,40,117,115,101,114,83,116,121,108,101,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,59,92,110,92,110,32,32,32,32,105,102,32,40,117,115,101,114,83,116,121,108,101,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,117,115,101,114,83,116,121,108,101,32,61,32,123,92,110,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,92,34,110,111,110,101,92,34,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,76,111,97,100,105,110,103,40,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,105,115,65,112,112,101,110,100,32,61,32,116,104,105,115,46,95,103,101,116,76,111,97,100,105,110,103,83,116,97,116,117,115,40,41,32,61,61,61,32,76,79,65,68,73,78,71,95,65,80,80,69,78,68,59,92,110,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,105,115,65,112,112,101,110,100,32,63,32,92,34,97,112,112,101,110,100,92,34,32,58,32,92,34,112,114,101,112,101,110,100,92,34,59,92,110,32,32,32,32,118,97,114,32,101,108,32,61,32,116,104,105,115,46,95,108,111,97,100,105,110,103,66,97,114,91,116,121,112,101,93,59,92,110,32,32,32,32,118,97,114,32,115,116,97,116,117,115,32,61,32,116,104,105,115,46,95,115,116,97,116,117,115,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,105,122,101,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,112,114,111,99,101,115,115,40,76,79,65,68,73,78,71,95,65,80,80,69,78,68,32,124,32,76,79,65,68,73,78,71,95,80,82,69,80,69,78,68,44,32,102,97,108,115,101,41,59,92,110,92,110,32,32,32,32,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,105,122,101,32,61,32,48,59,92,110,32,32,32,32,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,116,121,108,101,32,61,32,123,125,59,92,110,92,110,32,32,32,32,105,102,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,116,121,108,101,32,61,32,97,115,115,105,103,110,40,40,95,97,32,61,32,123,125,44,32,95,97,91,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,32,63,32,92,34,108,101,102,116,92,34,32,58,32,92,34,116,111,112,92,34,93,32,61,32,45,115,105,122,101,32,43,32,92,34,112,120,92,34,44,32,95,97,41,44,32,117,115,101,114,83,116,121,108,101,41,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,101,114,116,121,32,105,110,32,115,116,121,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,101,108,46,115,116,121,108,101,91,112,114,111,112,101,114,116,121,93,32,61,32,115,116,121,108,101,91,112,114,111,112,101,114,116,121,93,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,102,105,116,73,116,101,109,115,40,115,105,122,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,40,116,104,105,115,46,95,103,101,116,69,100,103,101,86,97,108,117,101,40,92,34,101,110,100,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,110,100,101,114,69,120,116,101,114,110,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,114,101,110,100,101,114,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,110,101,120,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,99,121,99,108,101,32,38,38,32,33,116,104,105,115,46,105,115,80,114,111,99,101,115,115,105,110,103,40,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,114,101,99,121,99,108,101,40,116,104,105,115,46,95,119,97,116,99,104,101,114,46,103,101,116,83,99,114,111,108,108,80,111,115,40,41,44,32,105,115,65,112,112,101,110,100,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,82,101,116,114,105,101,118,101,115,32,116,104,101,32,105,116,101,109,32,118,105,97,32,105,110,100,101,120,32,111,114,32,116,104,101,32,101,108,101,109,101,110,116,46,92,110,32,32,32,42,32,64,107,111,32,105,110,100,101,120,32,235,152,144,235,138,148,32,101,108,101,109,101,110,116,235,165,188,32,237,134,181,237,149,180,32,236,149,132,236,157,180,237,133,156,236,157,132,32,234,176,128,236,160,184,236,152,168,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,32,124,32,72,84,77,76,69,108,101,109,101,110,116,125,32,91,103,114,111,117,112,73,110,100,101,120,61,48,93,32,84,104,101,32,101,108,101,109,101,110,116,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,116,111,32,105,116,101,109,32,111,114,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,103,114,111,117,112,32,119,104,101,114,101,32,116,104,101,32,105,116,101,109,32,105,115,32,105,110,32,112,111,115,105,116,105,111,110,32,60,107,111,62,32,105,116,101,109,236,151,144,32,237,149,180,235,139,185,237,149,152,235,138,148,32,101,108,101,109,101,110,116,32,235,152,144,235,138,148,32,237,149,180,235,139,185,32,105,116,101,109,236,157,180,32,236,158,136,235,138,148,32,103,114,111,117,112,236,157,152,32,105,110,100,101,120,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,105,116,101,109,73,110,100,101,120,93,32,73,102,32,103,114,111,117,112,73,110,100,101,120,32,105,115,32,117,115,101,100,44,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,105,116,101,109,32,105,110,32,116,104,101,32,103,114,111,117,112,32,60,107,111,62,32,103,114,111,117,112,73,110,100,101,120,235,165,188,32,236,130,172,236,154,169,237,149,160,32,234,178,189,236,154,176,32,237,149,180,235,139,185,32,103,114,111,117,112,236,151,144,32,236,158,136,235,138,148,32,73,116,101,109,236,157,152,32,105,110,100,101,120,32,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,84,104,101,32,105,116,101,109,32,99,111,110,116,97,105,110,105,110,103,32,116,104,101,32,99,111,110,116,101,110,116,44,32,115,105,122,101,32,97,110,100,32,112,111,115,105,116,105,111,110,44,101,116,99,60,107,111,62,99,111,110,116,101,110,116,44,32,115,105,122,101,44,32,112,111,115,105,116,105,111,110,32,235,147,177,236,157,180,32,235,139,180,234,178,168,236,158,136,235,138,148,32,105,116,101,109,32,236,160,149,235,179,180,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,105,103,46,103,101,116,73,116,101,109,40,48,44,32,48,41,59,92,110,32,32,32,105,103,46,103,101,116,73,116,101,109,40,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,123,92,110,32,32,32,32,101,108,58,32,72,84,77,76,69,108,101,109,101,110,116,44,92,110,32,32,32,32,99,111,110,116,101,110,116,58,32,92,34,60,100,105,118,62,46,46,46,60,47,100,105,118,62,92,34,44,92,110,32,32,32,32,115,105,122,101,58,32,123,119,105,100,116,104,58,32,46,46,46,44,32,104,101,105,103,104,116,58,32,46,46,46,125,44,92,110,32,32,32,32,114,101,99,116,58,32,123,116,111,112,58,32,46,46,46,44,32,108,101,102,116,58,32,46,46,46,44,32,119,105,100,116,104,58,32,46,46,46,44,32,104,101,105,103,104,116,58,32,46,46,46,125,44,92,110,32,32,32,125,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,73,116,101,109,32,61,32,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,73,110,100,101,120,44,32,105,116,101,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,105,102,32,40,103,114,111,117,112,73,110,100,101,120,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,73,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,103,114,111,117,112,73,110,100,101,120,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,103,114,111,117,112,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,105,116,101,109,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,116,101,109,115,91,105,93,46,101,108,32,61,61,61,32,103,114,111,117,112,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,115,91,105,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,71,114,111,117,112,40,103,114,111,117,112,73,110,100,101,120,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,103,114,111,117,112,32,38,38,32,103,114,111,117,112,46,105,116,101,109,115,91,105,116,101,109,73,110,100,101,120,32,124,124,32,48,93,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,85,112,100,97,116,101,115,32,116,104,101,32,105,116,101,109,32,118,105,97,32,105,110,100,101,120,32,111,114,32,116,104,101,32,101,108,101,109,101,110,116,46,92,110,32,32,32,42,32,64,107,111,32,105,110,100,101,120,32,235,152,144,235,138,148,32,101,108,101,109,101,110,116,235,165,188,32,237,134,181,237,149,180,32,236,149,132,236,157,180,237,133,156,236,157,132,32,236,151,133,235,141,176,236,157,180,237,138,184,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,32,124,32,72,84,77,76,69,108,101,109,101,110,116,125,32,91,103,114,111,117,112,73,110,100,101,120,61,48,93,32,84,104,101,32,101,108,101,109,101,110,116,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,116,111,32,105,116,101,109,32,111,114,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,103,114,111,117,112,32,119,104,101,114,101,32,116,104,101,32,105,116,101,109,32,105,115,32,105,110,32,112,111,115,105,116,105,111,110,32,60,107,111,62,32,105,116,101,109,236,151,144,32,237,149,180,235,139,185,237,149,152,235,138,148,32,101,108,101,109,101,110,116,32,235,152,144,235,138,148,32,237,149,180,235,139,185,32,105,116,101,109,236,157,180,32,236,158,136,235,138,148,32,103,114,111,117,112,236,157,152,32,105,110,100,101,120,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,105,116,101,109,73,110,100,101,120,93,32,73,102,32,103,114,111,117,112,73,110,100,101,120,32,105,115,32,117,115,101,100,44,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,105,116,101,109,32,105,110,32,116,104,101,32,103,114,111,117,112,32,60,107,111,62,32,103,114,111,117,112,73,110,100,101,120,235,165,188,32,236,130,172,236,154,169,237,149,160,32,234,178,189,236,154,176,32,237,149,180,235,139,185,32,103,114,111,117,112,236,151,144,32,236,158,136,235,138,148,32,73,116,101,109,236,157,152,32,105,110,100,101,120,32,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,101,108,101,109,101,110,116,46,105,110,110,101,114,72,84,77,76,32,61,32,92,34,50,92,34,59,92,110,32,32,101,108,101,109,101,110,116,46,115,116,121,108,101,46,104,101,105,103,104,116,32,61,32,92,34,52,48,48,112,120,92,34,59,92,110,32,32,105,103,46,117,112,100,97,116,101,73,116,101,109,40,101,108,101,109,101,110,116,41,59,92,110,32,32,105,103,46,117,112,100,97,116,101,73,116,101,109,40,48,44,32,48,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,117,112,100,97,116,101,73,116,101,109,32,61,32,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,73,110,100,101,120,44,32,105,116,101,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,116,104,105,115,46,103,101,116,73,116,101,109,40,103,114,111,117,112,73,110,100,101,120,44,32,105,116,101,109,73,110,100,101,120,41,59,92,110,32,32,32,32,116,104,105,115,46,95,117,112,100,97,116,101,73,116,101,109,40,105,116,101,109,41,32,38,38,32,116,104,105,115,46,108,97,121,111,117,116,40,102,97,108,115,101,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,85,112,100,97,116,101,32,116,104,101,32,99,117,114,114,101,110,116,108,121,32,100,105,115,112,108,97,121,101,100,32,105,116,101,109,115,46,92,110,32,32,32,42,32,64,107,111,32,237,152,132,236,158,172,235,179,180,236,151,172,236,163,188,235,138,148,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,132,32,236,151,133,235,141,176,236,157,180,237,138,184,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,101,108,101,109,101,110,116,46,105,110,110,101,114,72,84,77,76,32,61,32,92,34,50,92,34,59,92,110,32,32,101,108,101,109,101,110,116,46,115,116,121,108,101,46,104,101,105,103,104,116,32,61,32,92,34,52,48,48,112,120,92,34,59,92,110,32,32,32,101,108,101,109,101,110,116,50,46,105,110,110,101,114,72,84,77,76,32,61,32,92,34,50,92,34,59,92,110,32,32,101,108,101,109,101,110,116,50,46,115,116,121,108,101,46,104,101,105,103,104,116,32,61,32,92,34,52,48,48,112,120,92,34,59,92,110,32,32,32,105,103,46,117,112,100,97,116,101,73,116,101,109,115,40,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,117,112,100,97,116,101,73,116,101,109,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,46,95,117,112,100,97,116,101,73,116,101,109,40,105,116,101,109,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,116,104,105,115,46,108,97,121,111,117,116,40,102,97,108,115,101,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,77,111,118,101,32,116,111,32,115,111,109,101,32,103,114,111,117,112,32,111,114,32,105,116,101,109,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,42,32,64,107,111,32,237,149,180,235,139,185,237,149,152,235,138,148,32,234,183,184,235,163,185,32,235,152,144,235,138,148,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,156,132,236,185,152,235,161,156,32,236,157,180,235,143,153,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,91,105,110,100,101,120,93,32,103,114,111,117,112,39,115,32,105,110,100,101,120,32,60,107,111,62,32,234,183,184,235,163,185,236,157,152,32,105,110,100,101,120,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,91,105,116,101,109,73,110,100,101,120,61,45,49,93,32,105,116,101,109,39,115,32,105,110,100,101,120,32,60,107,111,62,32,234,183,184,235,163,185,236,157,152,32,105,110,100,101,120,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,109,111,118,101,84,111,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,44,32,105,116,101,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,102,32,40,105,116,101,109,73,110,100,101,120,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,105,116,101,109,73,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,80,114,111,99,101,115,115,105,110,103,40,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,71,114,111,117,112,40,105,110,100,101,120,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,105,110,102,105,110,105,116,101,32,61,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,59,92,110,32,32,32,32,118,97,114,32,111,117,116,108,105,110,101,115,32,61,32,100,97,116,97,46,111,117,116,108,105,110,101,115,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,100,97,116,97,46,105,116,101,109,115,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,105,116,101,109,115,91,105,116,101,109,73,110,100,101,120,93,59,92,110,32,32,32,32,118,97,114,32,105,115,82,101,115,105,122,101,32,61,32,111,117,116,108,105,110,101,115,46,115,116,97,114,116,32,38,38,32,111,117,116,108,105,110,101,115,46,115,116,97,114,116,46,108,101,110,103,116,104,32,61,61,61,32,48,59,92,110,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,105,110,102,105,110,105,116,101,46,103,101,116,67,117,114,115,111,114,115,40,41,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,67,117,114,115,111,114,32,61,32,95,97,91,48,93,44,92,110,32,32,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,32,61,32,95,97,91,49,93,59,92,110,92,110,32,32,32,32,118,97,114,32,105,115,73,110,67,117,114,115,111,114,32,61,32,115,116,97,114,116,67,117,114,115,111,114,32,60,61,32,105,110,100,101,120,32,38,38,32,105,110,100,101,120,32,60,61,32,101,110,100,67,117,114,115,111,114,59,92,110,32,32,32,32,118,97,114,32,95,98,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,117,115,101,82,101,99,121,99,108,101,32,61,32,95,98,46,117,115,101,82,101,99,121,99,108,101,44,92,110,32,32,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,32,61,32,95,98,46,104,111,114,105,122,111,110,116,97,108,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,73,110,67,117,114,115,111,114,32,124,124,32,33,117,115,101,82,101,99,121,99,108,101,32,124,124,32,33,105,115,82,101,115,105,122,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,111,115,32,61,32,105,116,101,109,32,63,32,105,116,101,109,46,114,101,99,116,91,104,111,114,105,122,111,110,116,97,108,32,63,32,92,34,108,101,102,116,92,34,32,58,32,92,34,116,111,112,92,34,93,32,58,32,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,32,111,117,116,108,105,110,101,115,46,115,116,97,114,116,41,59,92,110,32,32,32,32,32,32,118,97,114,32,102,105,116,32,61,32,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,77,97,116,104,44,32,111,117,116,108,105,110,101,115,46,115,116,97,114,116,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,102,105,116,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,98,97,115,101,32,60,32,48,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,102,105,116,73,116,101,109,115,40,102,105,116,44,32,48,41,59,92,110,92,110,32,32,32,32,32,32,32,32,112,111,115,32,45,61,32,102,105,116,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,115,65,112,112,101,110,100,32,61,32,105,110,100,101,120,32,62,32,115,116,97,114,116,67,117,114,115,111,114,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,73,110,67,117,114,115,111,114,32,124,124,32,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,115,99,114,111,108,108,84,111,40,112,111,115,41,59,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,95,112,111,115,116,76,97,121,111,117,116,40,123,92,110,32,32,32,32,32,32,32,32,102,114,111,109,67,97,99,104,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,115,58,32,91,100,97,116,97,93,44,92,110,32,32,32,32,32,32,32,32,105,116,101,109,115,58,32,105,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,110,101,119,73,116,101,109,115,58,32,91,93,44,92,110,32,32,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,105,115,65,112,112,101,110,100,44,92,110,32,32,32,32,32,32,32,32,105,115,84,114,117,115,116,101,100,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,41,46,111,110,40,92,34,114,101,110,100,101,114,67,111,109,112,108,101,116,101,92,34,44,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,116,97,114,116,32,61,32,95,97,46,115,116,97,114,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,32,61,32,95,97,46,101,110,100,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,77,97,110,97,103,101,114,32,61,32,95,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,116,101,109,77,97,110,97,103,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,80,111,115,32,61,32,105,116,101,109,115,91,105,116,101,109,73,110,100,101,120,93,46,114,101,99,116,91,104,111,114,105,122,111,110,116,97,108,32,63,32,92,34,108,101,102,116,92,34,32,58,32,92,34,116,111,112,92,34,93,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,73,110,67,117,114,115,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,77,97,110,97,103,101,114,46,99,108,101,97,114,79,117,116,108,105,110,101,115,40,115,116,97,114,116,44,32,101,110,100,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,115,99,114,111,108,108,84,111,40,115,99,114,111,108,108,80,111,115,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,115,101,116,83,99,114,111,108,108,80,111,115,40,115,99,114,111,108,108,80,111,115,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,65,112,112,101,110,100,32,61,32,105,110,100,101,120,32,62,32,101,110,100,67,117,114,115,111,114,32,124,124,32,105,110,100,101,120,32,60,32,115,116,97,114,116,67,117,114,115,111,114,32,45,32,49,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,95,112,111,115,116,67,97,99,104,101,40,123,92,110,32,32,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,105,115,65,112,112,101,110,100,44,92,110,32,32,32,32,32,32,32,32,99,97,99,104,101,58,32,91,100,97,116,97,93,44,92,110,32,32,32,32,32,32,32,32,105,115,84,114,117,115,116,101,100,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,41,46,111,110,40,92,34,114,101,110,100,101,114,67,111,109,112,108,101,116,101,92,34,44,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,116,97,114,116,32,61,32,95,97,46,115,116,97,114,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,32,61,32,95,97,46,101,110,100,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,77,97,110,97,103,101,114,32,61,32,95,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,116,101,109,77,97,110,97,103,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,111,115,32,61,32,105,116,101,109,115,91,105,116,101,109,73,110,100,101,120,93,46,114,101,99,116,91,104,111,114,105,122,111,110,116,97,108,32,63,32,92,34,108,101,102,116,92,34,32,58,32,92,34,116,111,112,92,34,93,59,92,110,32,32,32,32,32,32,32,32,105,116,101,109,77,97,110,97,103,101,114,46,99,108,101,97,114,79,117,116,108,105,110,101,115,40,115,116,97,114,116,44,32,101,110,100,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,115,99,114,111,108,108,84,111,40,112,111,115,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,115,101,116,83,99,114,111,108,108,80,111,115,40,112,111,115,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,42,32,68,101,115,116,114,111,121,115,32,101,108,101,109,101,110,116,115,44,32,112,114,111,112,101,114,116,105,101,115,44,32,97,110,100,32,101,118,101,110,116,115,32,117,115,101,100,32,111,110,32,97,32,103,114,105,100,32,108,97,121,111,117,116,46,92,110,32,32,42,32,64,107,111,32,234,183,184,235,166,172,235,147,156,32,235,160,136,236,157,180,236,149,132,236,155,131,236,151,144,32,236,130,172,236,154,169,237,149,156,32,236,151,152,235,166,172,235,168,188,237,138,184,236,153,128,32,236,134,141,236,132,177,44,32,236,157,180,235,178,164,237,138,184,235,165,188,32,237,149,180,236,160,156,237,149,156,235,139,164,92,110,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,100,101,115,116,114,111,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,99,108,101,97,114,40,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,119,97,116,99,104,101,114,46,100,101,115,116,114,111,121,40,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,114,101,115,101,116,40,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,99,108,101,97,114,40,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,100,101,115,116,114,111,121,40,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,77,97,110,97,103,101,114,46,100,101,115,116,114,111,121,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,114,101,108,97,121,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,115,82,101,108,97,121,111,117,116,44,32,103,114,111,117,112,115,44,32,105,116,101,109,115,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,110,100,101,114,101,114,32,61,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,59,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,114,101,110,100,101,114,101,114,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,105,115,69,113,117,97,108,83,105,122,101,32,61,32,95,97,46,105,115,69,113,117,97,108,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,32,61,32,95,97,46,105,115,67,111,110,115,116,97,110,116,83,105,122,101,59,92,110,32,32,32,32,118,97,114,32,108,97,121,111,117,116,71,114,111,117,112,115,32,61,32,103,114,111,117,112,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,103,114,111,117,112,46,105,116,101,109,115,91,48,93,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,46,111,114,103,83,105,122,101,32,38,38,32,105,116,101,109,46,114,101,99,116,46,116,111,112,32,62,32,68,85,77,77,89,95,80,79,83,73,84,73,79,78,32,47,32,49,48,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,108,97,121,111,117,116,71,114,111,117,112,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,111,117,116,108,105,110,101,32,61,32,108,97,121,111,117,116,71,114,111,117,112,115,91,48,93,46,111,117,116,108,105,110,101,115,46,115,116,97,114,116,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,82,101,108,97,121,111,117,116,41,32,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,91,111,117,116,108,105,110,101,46,108,101,110,103,116,104,32,63,32,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,77,97,116,104,44,32,111,117,116,108,105,110,101,41,32,58,32,48,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,67,111,110,115,116,97,110,116,83,105,122,101,32,38,38,32,105,116,101,109,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,110,100,101,114,101,114,46,117,112,100,97,116,101,83,105,122,101,40,105,116,101,109,115,41,59,32,47,47,32,117,112,100,97,116,101,32,105,110,118,105,115,105,98,108,101,32,105,116,101,109,115,39,32,115,105,122,101,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,69,113,117,97,108,83,105,122,101,32,38,38,32,105,116,101,109,115,91,48,93,46,115,105,122,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,73,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,108,97,121,111,117,116,71,114,111,117,112,115,44,32,92,34,105,116,101,109,115,92,34,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,116,101,109,46,115,105,122,101,32,61,32,97,115,115,105,103,110,40,123,125,44,32,105,116,101,109,115,91,48,93,46,115,105,122,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,108,97,121,111,117,116,46,108,97,121,111,117,116,40,108,97,121,111,117,116,71,114,111,117,112,115,44,32,111,117,116,108,105,110,101,41,59,92,110,92,110,32,32,32,32,108,97,121,111,117,116,71,114,111,117,112,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,46,110,101,101,100,85,112,100,97,116,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,115,105,122,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,40,77,97,116,104,46,109,97,120,40,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,77,97,120,69,100,103,101,86,97,108,117,101,40,41,44,32,115,105,122,101,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,97,112,112,101,110,100,76,111,97,100,105,110,103,66,97,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,110,100,101,114,69,120,116,101,114,110,97,108,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,111,97,100,105,110,103,66,97,114,32,61,32,116,104,105,115,46,95,108,111,97,100,105,110,103,66,97,114,59,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,32,61,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,99,111,110,116,97,105,110,101,114,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,116,121,112,101,32,105,110,32,108,111,97,100,105,110,103,66,97,114,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,108,111,97,100,105,110,103,66,97,114,91,116,121,112,101,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,115,101,116,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,115,105,122,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,115,101,116,83,105,122,101,40,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,103,101,116,86,105,101,119,83,105,122,101,40,41,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,108,97,121,111,117,116,46,115,101,116,83,105,122,101,40,115,105,122,101,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,102,105,116,73,116,101,109,115,32,61,32,102,117,110,99,116,105,111,110,32,40,98,97,115,101,44,32,109,97,114,103,105,110,41,32,123,92,110,32,32,32,32,105,102,32,40,109,97,114,103,105,110,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,109,97,114,103,105,110,32,61,32,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,98,97,115,101,32,62,32,48,32,38,38,32,116,104,105,115,46,95,119,97,116,99,104,101,114,46,115,99,114,111,108,108,66,121,40,45,98,97,115,101,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,102,105,116,40,98,97,115,101,44,32,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,114,101,110,100,101,114,73,116,101,109,115,40,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,40,116,104,105,115,46,95,103,101,116,69,100,103,101,86,97,108,117,101,40,92,34,101,110,100,92,34,41,32,124,124,32,109,97,114,103,105,110,41,59,92,110,92,110,32,32,32,32,98,97,115,101,32,60,32,48,32,38,38,32,116,104,105,115,46,95,119,97,116,99,104,101,114,46,115,99,114,111,108,108,66,121,40,45,98,97,115,101,41,59,92,110,32,32,125,59,32,47,47,32,99,97,108,108,101,100,32,98,121,32,118,105,115,105,98,108,101,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,102,105,116,32,61,32,102,117,110,99,116,105,111,110,32,40,117,115,101,70,105,116,41,32,123,92,110,32,32,32,32,105,102,32,40,117,115,101,70,105,116,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,117,115,101,70,105,116,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,70,105,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,98,97,115,101,32,61,32,116,104,105,115,46,95,103,101,116,69,100,103,101,86,97,108,117,101,40,92,34,115,116,97,114,116,92,34,41,59,92,110,92,110,32,32,32,32,118,97,114,32,109,97,114,103,105,110,32,61,32,116,104,105,115,46,95,103,101,116,76,111,97,100,105,110,103,83,116,97,116,117,115,40,41,32,61,61,61,32,76,79,65,68,73,78,71,95,80,82,69,80,69,78,68,32,38,38,32,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,105,122,101,32,124,124,32,48,59,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,32,61,32,95,97,46,105,115,67,111,110,115,116,97,110,116,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,105,115,69,113,117,97,108,83,105,122,101,32,61,32,95,97,46,105,115,69,113,117,97,108,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,117,115,101,82,101,99,121,99,108,101,32,61,32,95,97,46,117,115,101,82,101,99,121,99,108,101,59,92,110,92,110,32,32,32,32,105,102,32,40,33,117,115,101,82,101,99,121,99,108,101,32,124,124,32,33,117,115,101,70,105,116,32,124,124,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,32,124,124,32,105,115,69,113,117,97,108,83,105,122,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,98,97,115,101,32,60,32,109,97,114,103,105,110,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,102,105,116,73,116,101,109,115,40,98,97,115,101,32,45,32,109,97,114,103,105,110,44,32,109,97,114,103,105,110,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,98,97,115,101,32,61,32,48,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,98,97,115,101,32,33,61,61,32,48,32,124,124,32,109,97,114,103,105,110,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,102,105,116,73,116,101,109,115,40,98,97,115,101,32,45,32,109,97,114,103,105,110,44,32,109,97,114,103,105,110,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,105,115,76,111,97,100,105,110,103,40,41,32,38,38,32,116,104,105,115,46,95,114,101,110,100,101,114,76,111,97,100,105,110,103,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,103,101,116,69,100,103,101,86,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,32,40,99,117,114,115,111,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,103,101,116,69,100,103,101,86,97,108,117,101,40,99,117,114,115,111,114,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,105,115,80,114,111,99,101,115,115,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,116,104,105,115,46,95,115,116,97,116,117,115,46,112,114,111,99,101,115,115,105,110,103,83,116,97,116,117,115,32,38,32,80,82,79,67,69,83,83,73,78,71,41,32,62,32,48,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,103,101,116,76,111,97,100,105,110,103,83,116,97,116,117,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,115,116,97,116,117,115,46,112,114,111,99,101,115,115,105,110,103,83,116,97,116,117,115,32,38,32,40,76,79,65,68,73,78,71,95,65,80,80,69,78,68,32,124,32,76,79,65,68,73,78,71,95,80,82,69,80,69,78,68,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,112,114,111,99,101,115,115,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,97,116,117,115,44,32,105,115,65,100,100,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,65,100,100,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,105,115,65,100,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,105,115,65,100,100,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,115,116,97,116,117,115,46,112,114,111,99,101,115,115,105,110,103,83,116,97,116,117,115,32,124,61,32,115,116,97,116,117,115,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,115,116,97,116,117,115,46,112,114,111,99,101,115,115,105,110,103,83,116,97,116,117,115,32,45,61,32,116,104,105,115,46,95,115,116,97,116,117,115,46,112,114,111,99,101,115,115,105,110,103,83,116,97,116,117,115,32,38,32,115,116,97,116,117,115,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,105,110,115,101,114,116,32,61,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,115,32,61,32,95,97,46,101,108,101,109,101,110,116,115,44,92,110,32,32,32,32,32,32,32,32,105,115,65,112,112,101,110,100,32,61,32,95,97,46,105,115,65,112,112,101,110,100,44,92,110,32,32,32,32,32,32,32,32,104,97,115,67,104,105,108,100,114,101,110,32,61,32,95,97,46,104,97,115,67,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,32,32,95,98,32,61,32,95,97,46,103,114,111,117,112,75,101,121,44,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,75,101,121,32,61,32,95,98,32,61,61,61,32,118,111,105,100,32,48,32,63,32,116,104,105,115,46,95,103,101,116,82,97,110,100,111,109,75,101,121,40,41,32,58,32,95,98,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,105,115,80,114,111,99,101,115,115,105,110,103,40,41,32,124,124,32,101,108,101,109,101,110,116,115,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,73,116,101,109,77,97,110,97,103,101,114,46,116,111,73,116,101,109,115,40,36,40,101,108,101,109,101,110,116,115,44,32,116,114,117,101,41,44,32,103,114,111,117,112,75,101,121,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,105,110,115,101,114,116,73,116,101,109,115,40,123,92,110,32,32,32,32,32,32,105,116,101,109,115,58,32,105,116,101,109,115,44,92,110,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,105,115,65,112,112,101,110,100,44,92,110,32,32,32,32,32,32,104,97,115,67,104,105,108,100,114,101,110,58,32,104,97,115,67,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,103,114,111,117,112,75,101,121,58,32,103,114,111,117,112,75,101,121,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,105,110,115,101,114,116,73,116,101,109,115,32,61,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,95,97,46,105,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,105,115,65,112,112,101,110,100,32,61,32,95,97,46,105,115,65,112,112,101,110,100,44,92,110,32,32,32,32,32,32,32,32,104,97,115,67,104,105,108,100,114,101,110,32,61,32,95,97,46,104,97,115,67,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,32,32,95,98,32,61,32,95,97,46,103,114,111,117,112,75,101,121,44,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,75,101,121,32,61,32,95,98,32,61,61,61,32,118,111,105,100,32,48,32,63,32,116,104,105,115,46,95,103,101,116,82,97,110,100,111,109,75,101,121,40,41,32,58,32,95,98,59,92,110,92,110,32,32,32,32,105,102,32,40,33,105,116,101,109,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,91,105,115,65,112,112,101,110,100,32,63,32,92,34,97,112,112,101,110,100,71,114,111,117,112,92,34,32,58,32,92,34,112,114,101,112,101,110,100,71,114,111,117,112,92,34,93,40,123,92,110,32,32,32,32,32,32,103,114,111,117,112,75,101,121,58,32,103,114,111,117,112,75,101,121,44,92,110,32,32,32,32,32,32,105,116,101,109,115,58,32,105,116,101,109,115,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,102,105,110,105,116,101,32,61,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,95,99,32,61,32,105,110,102,105,110,105,116,101,46,103,101,116,67,117,114,115,111,114,115,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,67,117,114,115,111,114,32,61,32,95,99,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,32,61,32,95,99,91,49,93,59,92,110,92,110,32,32,32,32,32,32,105,110,102,105,110,105,116,101,46,115,101,116,67,117,114,115,111,114,40,92,34,115,116,97,114,116,92,34,44,32,115,116,97,114,116,67,117,114,115,111,114,32,43,32,49,41,59,92,110,32,32,32,32,32,32,105,110,102,105,110,105,116,101,46,115,101,116,67,117,114,115,111,114,40,92,34,101,110,100,92,34,44,32,101,110,100,67,117,114,115,111,114,32,43,32,49,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,112,111,115,116,76,97,121,111,117,116,40,123,92,110,32,32,32,32,32,32,102,114,111,109,67,97,99,104,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,103,114,111,117,112,115,58,32,91,103,114,111,117,112,93,44,92,110,32,32,32,32,32,32,105,116,101,109,115,58,32,103,114,111,117,112,46,105,116,101,109,115,44,92,110,32,32,32,32,32,32,110,101,119,73,116,101,109,115,58,32,103,114,111,117,112,46,105,116,101,109,115,44,92,110,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,105,115,65,112,112,101,110,100,44,92,110,32,32,32,32,32,32,104,97,115,67,104,105,108,100,114,101,110,58,32,104,97,115,67,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,105,115,84,114,117,115,116,101,100,58,32,102,97,108,115,101,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,32,47,47,32,97,100,100,32,105,116,101,109,115,44,32,97,110,100,32,114,101,109,111,118,101,32,105,116,101,109,115,32,102,111,114,32,114,101,99,121,99,108,105,110,103,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,114,101,99,121,99,108,101,32,61,32,102,117,110,99,116,105,111,110,32,40,114,97,110,103,101,115,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,117,115,101,82,101,99,121,99,108,101,32,61,32,95,97,46,117,115,101,82,101,99,121,99,108,101,44,92,110,32,32,32,32,32,32,32,32,114,101,110,100,101,114,69,120,116,101,114,110,97,108,32,61,32,95,97,46,114,101,110,100,101,114,69,120,116,101,114,110,97,108,59,92,110,92,110,32,32,32,32,105,102,32,40,33,117,115,101,82,101,99,121,99,108,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,105,115,82,101,99,121,99,108,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,114,97,110,103,101,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,114,116,32,61,32,95,97,46,115,116,97,114,116,44,92,110,32,32,32,32,32,32,32,32,32,32,101,110,100,32,61,32,95,97,46,101,110,100,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,114,116,32,61,61,61,32,45,49,32,124,124,32,101,110,100,32,61,61,61,32,45,49,32,124,124,32,101,110,100,32,60,32,115,116,97,114,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,95,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,92,34,105,116,101,109,115,92,34,44,32,115,116,97,114,116,44,32,101,110,100,41,59,92,110,92,110,32,32,32,32,32,32,105,115,82,101,99,121,99,108,101,32,61,32,105,115,82,101,99,121,99,108,101,32,124,124,32,105,116,101,109,115,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,46,109,111,117,110,116,101,100,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,109,46,109,111,117,110,116,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,114,101,110,100,101,114,69,120,116,101,114,110,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,68,79,77,82,101,110,100,101,114,101,114,46,114,101,109,111,118,101,73,116,101,109,115,40,105,116,101,109,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,82,101,99,121,99,108,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,71,114,111,117,112,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,114,101,110,100,101,114,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,110,101,120,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,82,101,99,121,99,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,114,101,110,100,101,114,76,111,97,100,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,40,117,115,101,114,83,116,121,108,101,41,32,123,92,110,32,32,32,32,105,102,32,40,117,115,101,114,83,116,121,108,101,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,117,115,101,114,83,116,121,108,101,32,61,32,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,116,121,108,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,76,111,97,100,105,110,103,40,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,105,115,65,112,112,101,110,100,32,61,32,116,104,105,115,46,95,103,101,116,76,111,97,100,105,110,103,83,116,97,116,117,115,40,41,32,61,61,61,32,76,79,65,68,73,78,71,95,65,80,80,69,78,68,59,92,110,32,32,32,32,118,97,114,32,101,108,32,61,32,116,104,105,115,46,95,108,111,97,100,105,110,103,66,97,114,91,105,115,65,112,112,101,110,100,32,63,32,92,34,97,112,112,101,110,100,92,34,32,58,32,92,34,112,114,101,112,101,110,100,92,34,93,59,92,110,92,110,32,32,32,32,105,102,32,40,33,101,108,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,115,116,121,108,101,32,61,32,97,115,115,105,103,110,40,123,92,110,32,32,32,32,32,32,112,111,115,105,116,105,111,110,58,32,92,34,97,98,115,111,108,117,116,101,92,34,92,110,32,32,32,32,125,44,32,117,115,101,114,83,116,121,108,101,41,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,101,114,116,121,32,105,110,32,115,116,121,108,101,41,32,123,92,110,32,32,32,32,32,32,101,108,46,115,116,121,108,101,91,112,114,111,112,101,114,116,121,93,32,61,32,115,116,121,108,101,91,112,114,111,112,101,114,116,121,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,117,115,101,79,102,102,115,101,116,32,61,32,95,97,46,117,115,101,79,102,102,115,101,116,44,92,110,32,32,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,32,61,32,95,97,46,104,111,114,105,122,111,110,116,97,108,59,92,110,92,110,32,32,32,32,105,102,32,40,104,111,114,105,122,111,110,116,97,108,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,105,122,101,32,61,32,117,115,101,79,102,102,115,101,116,32,63,32,103,101,116,79,102,102,115,101,116,87,105,100,116,104,40,101,108,41,32,58,32,103,101,116,82,101,99,116,87,105,100,116,104,40,101,108,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,105,122,101,32,61,32,117,115,101,79,102,102,115,101,116,32,63,32,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,40,101,108,41,32,58,32,103,101,116,82,101,99,116,72,101,105,103,104,116,40,101,108,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,112,111,115,78,97,109,101,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,32,63,32,92,34,108,101,102,116,92,34,32,58,32,92,34,116,111,112,92,34,59,92,110,92,110,32,32,32,32,105,102,32,40,33,40,112,111,115,78,97,109,101,32,105,110,32,115,116,121,108,101,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,111,115,32,61,32,105,115,65,112,112,101,110,100,32,63,32,116,104,105,115,46,95,103,101,116,69,100,103,101,86,97,108,117,101,40,92,34,101,110,100,92,34,41,32,58,32,116,104,105,115,46,95,103,101,116,69,100,103,101,86,97,108,117,101,40,92,34,115,116,97,114,116,92,34,41,32,45,32,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,105,122,101,59,92,110,32,32,32,32,32,32,101,108,46,115,116,121,108,101,91,112,111,115,78,97,109,101,93,32,61,32,112,111,115,32,43,32,92,34,112,120,92,34,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,117,112,100,97,116,101,73,116,101,109,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,105,102,32,40,105,116,101,109,32,38,38,32,105,116,101,109,46,101,108,41,32,123,92,110,32,32,32,32,32,32,105,116,101,109,46,99,111,110,116,101,110,116,32,61,32,105,116,101,109,46,101,108,46,111,117,116,101,114,72,84,77,76,59,92,110,32,32,32,32,32,32,33,116,104,105,115,46,111,112,116,105,111,110,115,46,105,115,69,113,117,97,108,83,105,122,101,32,38,38,32,114,101,115,101,116,83,105,122,101,40,105,116,101,109,41,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,117,112,100,97,116,101,83,105,122,101,40,91,105,116,101,109,93,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,115,101,116,83,99,114,111,108,108,80,111,115,32,61,32,102,117,110,99,116,105,111,110,32,40,112,111,115,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,119,97,116,99,104,101,114,46,115,101,116,83,99,114,111,108,108,80,111,115,40,116,104,105,115,46,95,119,97,116,99,104,101,114,46,103,101,116,67,111,110,116,97,105,110,101,114,79,102,102,115,101,116,40,41,32,43,32,112,111,115,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,115,99,114,111,108,108,84,111,32,61,32,102,117,110,99,116,105,111,110,32,40,112,111,115,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,119,97,116,99,104,101,114,46,115,99,114,111,108,108,84,111,40,116,104,105,115,46,95,119,97,116,99,104,101,114,46,103,101,116,67,111,110,116,97,105,110,101,114,79,102,102,115,101,116,40,41,32,43,32,112,111,115,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,112,111,115,116,67,97,99,104,101,32,61,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,118,97,114,32,99,97,99,104,101,32,61,32,95,97,46,99,97,99,104,101,44,92,110,32,32,32,32,32,32,32,32,105,115,65,112,112,101,110,100,32,61,32,95,97,46,105,115,65,112,112,101,110,100,44,92,110,32,32,32,32,32,32,32,32,95,98,32,61,32,95,97,46,105,115,84,114,117,115,116,101,100,44,92,110,32,32,32,32,32,32,32,32,105,115,84,114,117,115,116,101,100,32,61,32,95,98,32,61,61,61,32,118,111,105,100,32,48,32,63,32,116,114,117,101,32,58,32,95,98,59,92,110,32,32,32,32,118,97,114,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,105,115,67,111,110,115,116,97,110,116,83,105,122,101,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,73,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,99,97,99,104,101,44,32,92,34,105,116,101,109,115,92,34,41,59,92,110,32,32,32,32,118,97,114,32,102,114,111,109,67,97,99,104,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,118,97,114,32,110,101,119,73,116,101,109,115,32,61,32,105,116,101,109,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,116,101,109,46,111,114,103,83,105,122,101,32,124,124,32,33,105,116,101,109,46,111,114,103,83,105,122,101,46,119,105,100,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,102,114,111,109,67,97,99,104,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,105,115,67,111,110,115,116,97,110,116,83,105,122,101,32,38,38,32,105,116,101,109,46,114,101,99,116,46,116,111,112,32,60,32,68,85,77,77,89,95,80,79,83,73,84,73,79,78,32,47,32,49,48,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,112,111,115,116,76,97,121,111,117,116,40,123,92,110,32,32,32,32,32,32,102,114,111,109,67,97,99,104,101,58,32,102,114,111,109,67,97,99,104,101,44,92,110,32,32,32,32,32,32,103,114,111,117,112,115,58,32,99,97,99,104,101,44,92,110,32,32,32,32,32,32,105,116,101,109,115,58,32,105,116,101,109,115,44,92,110,32,32,32,32,32,32,110,101,119,73,116,101,109,115,58,32,110,101,119,73,116,101,109,115,44,92,110,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,105,115,65,112,112,101,110,100,44,92,110,32,32,32,32,32,32,105,115,84,114,117,115,116,101,100,58,32,105,115,84,114,117,115,116,101,100,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,112,111,115,116,76,97,121,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,102,114,111,109,67,97,99,104,101,32,61,32,95,97,46,102,114,111,109,67,97,99,104,101,44,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,115,32,61,32,95,97,46,103,114,111,117,112,115,44,92,110,32,32,32,32,32,32,32,32,95,98,32,61,32,95,97,46,105,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,105,116,101,109,115,32,61,32,95,98,32,61,61,61,32,118,111,105,100,32,48,32,63,32,73,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,103,114,111,117,112,115,44,32,92,34,105,116,101,109,115,92,34,41,32,58,32,95,98,44,92,110,32,32,32,32,32,32,32,32,110,101,119,73,116,101,109,115,32,61,32,95,97,46,110,101,119,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,105,115,65,112,112,101,110,100,32,61,32,95,97,46,105,115,65,112,112,101,110,100,44,92,110,32,32,32,32,32,32,32,32,104,97,115,67,104,105,108,100,114,101,110,32,61,32,95,97,46,104,97,115,67,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,32,32,105,115,84,114,117,115,116,101,100,32,61,32,95,97,46,105,115,84,114,117,115,116,101,100,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,112,114,111,99,101,115,115,40,80,82,79,67,69,83,83,73,78,71,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,103,114,111,117,112,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,114,101,110,100,101,114,69,120,116,101,114,110,97,108,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,110,100,101,114,69,120,116,101,114,110,97,108,59,92,110,32,32,32,32,118,97,114,32,114,101,110,100,101,114,101,114,32,61,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,59,92,110,32,32,32,32,118,97,114,32,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,32,61,32,110,101,119,32,95,101,103,106,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,41,59,92,110,92,110,32,32,32,32,118,97,114,32,110,101,120,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,109,46,109,111,117,110,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,95,114,101,110,100,101,114,77,97,110,97,103,101,114,46,114,101,110,100,101,114,40,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,44,32,103,114,111,117,112,115,44,32,110,101,119,73,116,101,109,115,44,32,105,115,65,112,112,101,110,100,41,46,111,110,40,92,34,105,109,97,103,101,69,114,114,111,114,92,34,44,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,84,104,105,115,32,101,118,101,110,116,32,105,115,32,102,105,114,101,100,32,119,104,101,110,32,97,110,32,101,114,114,111,114,32,111,99,99,117,114,115,32,105,110,32,116,104,101,32,105,109,97,103,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,107,111,32,236,157,180,235,175,184,236,167,128,32,235,161,156,235,147,156,236,151,144,32,236,151,144,235,159,172,234,176,128,32,235,130,160,32,235,149,140,32,235,176,156,236,131,157,237,149,152,235,138,148,32,236,157,180,235,178,164,237,138,184,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,101,118,101,110,116,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,35,105,109,97,103,101,69,114,114,111,114,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,73,69,114,114,111,114,67,97,108,108,98,97,99,107,79,112,116,105,111,110,115,125,32,101,32,45,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,100,97,116,97,32,116,111,32,98,101,32,115,101,110,116,32,116,111,32,97,110,32,101,118,101,110,116,32,60,107,111,62,236,157,180,235,178,164,237,138,184,236,151,144,32,236,160,132,235,139,172,235,144,152,235,138,148,32,235,141,176,236,157,180,237,132,176,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,91,101,46,101,108,101,109,101,110,116,93,32,45,32,65,112,112,101,110,100,105,110,103,32,99,97,114,100,39,115,32,105,109,97,103,101,32,101,108,101,109,101,110,116,46,60,107,111,62,236,182,148,234,176,128,32,235,144,152,235,138,148,32,236,185,180,235,147,156,236,157,152,32,236,157,180,235,175,184,236,167,128,32,236,151,152,235,166,172,235,168,188,237,138,184,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,116,97,114,103,101,116,125,32,91,101,46,116,97,114,103,101,116,93,32,45,32,84,104,101,32,105,116,101,109,39,115,32,101,108,101,109,101,110,116,32,119,105,116,104,32,101,114,114,111,114,32,105,109,97,103,101,115,46,60,107,111,62,236,151,144,235,159,172,235,130,156,32,236,157,180,235,175,184,236,167,128,235,165,188,32,234,176,128,236,167,128,234,179,160,32,236,158,136,235,138,148,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,151,152,235,166,172,235,168,188,237,138,184,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,73,116,101,109,91,93,125,32,91,101,46,105,116,101,109,115,93,32,45,32,84,104,101,32,105,116,101,109,115,32,98,101,105,110,103,32,97,100,100,101,100,46,60,107,111,62,237,153,148,235,169,180,236,151,144,32,236,182,148,234,176,128,236,164,145,236,157,184,32,236,149,132,236,157,180,237,133,156,235,147,164,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,73,116,101,109,125,32,91,101,46,105,116,101,109,93,32,45,32,84,104,101,32,105,116,101,109,32,119,105,116,104,32,101,114,114,111,114,32,105,109,97,103,101,115,46,60,107,111,62,236,151,144,235,159,172,235,130,156,32,236,157,180,235,175,184,236,167,128,235,165,188,32,234,176,128,236,167,128,234,179,160,32,236,158,136,235,138,148,32,236,149,132,236,157,180,237,133,156,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,105,110,100,101,120,93,32,32,45,32,84,104,101,32,105,116,101,109,39,115,32,105,110,100,101,120,32,119,105,116,104,32,101,114,114,111,114,32,105,109,97,103,101,115,46,60,107,111,62,236,151,144,235,159,172,235,130,156,32,236,157,180,235,175,184,236,167,128,235,165,188,32,234,176,128,236,167,128,234,179,160,32,236,158,136,235,138,148,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,157,184,235,141,177,236,138,164,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,116,111,116,97,108,73,110,100,101,120,93,32,45,32,84,104,101,32,105,116,101,109,39,115,32,105,110,100,101,120,32,119,105,116,104,32,101,114,114,111,114,32,105,109,97,103,101,115,32,105,110,32,97,108,108,32,105,116,101,109,115,46,60,107,111,62,236,160,132,236,178,180,32,236,149,132,236,157,180,237,133,156,236,164,145,32,236,151,144,235,159,172,235,130,156,32,236,157,180,235,175,184,236,167,128,235,165,188,32,234,176,128,236,167,128,234,179,160,32,236,158,136,235,138,148,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,157,184,235,141,177,236,138,164,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,91,101,46,114,101,109,111,118,101,93,32,45,32,73,110,32,116,104,101,32,105,109,97,103,101,69,114,114,111,114,32,101,118,101,110,116,44,32,116,104,105,115,32,109,101,116,104,111,100,32,101,120,112,101,99,116,115,32,116,111,32,114,101,109,111,118,101,32,116,104,101,32,101,114,114,111,114,32,105,109,97,103,101,46,60,107,111,62,236,157,180,235,175,184,236,167,128,32,236,151,144,235,159,172,32,236,157,180,235,178,164,237,138,184,236,151,144,236,132,156,32,236,157,180,32,235,169,148,236,132,156,235,147,156,235,138,148,32,236,151,144,235,159,172,235,130,156,32,236,157,180,235,175,184,236,167,128,235,165,188,32,236,130,173,236,160,156,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,91,101,46,114,101,109,111,118,101,73,116,101,109,93,32,45,32,73,110,32,116,104,101,32,105,109,97,103,101,69,114,114,111,114,32,101,118,101,110,116,44,32,116,104,105,115,32,109,101,116,104,111,100,32,101,120,112,101,99,116,115,32,116,111,32,114,101,109,111,118,101,32,116,104,101,32,105,116,101,109,32,119,105,116,104,32,116,104,101,32,101,114,114,111,114,32,105,109,97,103,101,46,60,107,111,62,236,157,180,235,175,184,236,167,128,32,236,151,144,235,159,172,32,236,157,180,235,178,164,237,138,184,236,151,144,236,132,156,32,236,157,180,32,235,169,148,236,132,156,235,147,156,235,138,148,32,236,151,144,235,159,172,235,130,156,32,236,157,180,235,175,184,236,167,128,235,165,188,32,234,176,128,236,167,128,234,179,160,32,236,158,136,235,138,148,32,236,149,132,236,157,180,237,133,156,236,157,132,32,236,130,173,236,160,156,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,91,101,46,114,101,112,108,97,99,101,93,32,45,32,73,110,32,116,104,101,32,105,109,97,103,101,69,114,114,111,114,32,101,118,101,110,116,44,32,116,104,105,115,32,109,101,116,104,111,100,32,101,120,112,101,99,116,115,32,116,111,32,114,101,112,108,97,99,101,32,116,104,101,32,101,114,114,111,114,32,105,109,97,103,101,39,115,32,115,111,117,114,99,101,32,111,114,32,101,108,101,109,101,110,116,46,60,107,111,62,236,157,180,235,175,184,236,167,128,32,236,151,144,235,159,172,32,236,157,180,235,178,164,237,138,184,236,151,144,236,132,156,32,236,157,180,32,235,169,148,236,132,156,235,147,156,235,138,148,32,236,151,144,235,159,172,235,130,156,32,236,157,180,235,175,184,236,167,128,236,157,152,32,236,163,188,236,134,140,32,235,152,144,235,138,148,32,236,151,152,235,166,172,235,168,188,237,138,184,235,165,188,32,234,181,144,236,178,180,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,91,101,46,114,101,112,108,97,99,101,73,116,101,109,93,32,45,32,73,110,32,116,104,101,32,105,109,97,103,101,69,114,114,111,114,32,101,118,101,110,116,44,32,116,104,105,115,32,109,101,116,104,111,100,32,101,120,112,101,99,116,115,32,116,111,32,114,101,112,108,97,99,101,32,116,104,101,32,105,116,101,109,39,115,32,99,111,110,116,101,110,116,115,32,119,105,116,104,32,116,104,101,32,101,114,114,111,114,32,105,109,97,103,101,46,60,107,111,62,236,157,180,235,175,184,236,167,128,32,236,151,144,235,159,172,32,236,157,180,235,178,164,237,138,184,236,151,144,236,132,156,32,236,157,180,32,235,169,148,236,132,156,235,147,156,235,138,148,32,236,151,144,235,159,172,235,130,156,32,236,157,180,235,175,184,236,167,128,235,165,188,32,234,176,128,236,167,128,234,179,160,32,236,158,136,235,138,148,32,236,149,132,236,157,180,237,133,156,236,157,152,32,235,130,180,236,154,169,236,157,132,32,234,181,144,236,178,180,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,32,32,32,105,103,46,111,110,40,92,34,105,109,97,103,101,69,114,114,111,114,92,34,44,32,101,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,114,101,109,111,118,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,114,101,109,111,118,101,73,116,101,109,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,114,101,112,108,97,99,101,40,92,34,104,116,116,112,58,47,47,46,46,46,106,112,103,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,114,101,112,108,97,99,101,40,105,109,97,103,101,69,108,101,109,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,114,101,112,108,97,99,101,73,116,101,109,40,92,34,105,116,101,109,32,104,116,109,108,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,105,109,97,103,101,69,114,114,111,114,92,34,44,32,101,41,59,92,110,32,32,32,32,32,32,125,41,46,111,110,40,92,34,99,111,110,116,101,110,116,69,114,114,111,114,92,34,44,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,84,104,105,115,32,101,118,101,110,116,32,105,115,32,102,105,114,101,100,32,119,104,101,110,32,97,110,32,101,114,114,111,114,32,111,99,99,117,114,115,32,105,110,32,116,104,101,32,99,111,110,116,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,107,111,32,236,189,152,237,133,144,236,184,160,32,235,161,156,235,147,156,236,151,144,32,236,151,144,235,159,172,234,176,128,32,235,130,160,32,235,149,140,32,235,176,156,236,131,157,237,149,152,235,138,148,32,236,157,180,235,178,164,237,138,184,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,101,118,101,110,116,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,35,99,111,110,116,101,110,116,69,114,114,111,114,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,73,69,114,114,111,114,67,97,108,108,98,97,99,107,79,112,116,105,111,110,115,125,32,101,32,45,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,100,97,116,97,32,116,111,32,98,101,32,115,101,110,116,32,116,111,32,97,110,32,101,118,101,110,116,32,60,107,111,62,236,157,180,235,178,164,237,138,184,236,151,144,32,236,160,132,235,139,172,235,144,152,235,138,148,32,235,141,176,236,157,180,237,132,176,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,91,101,46,101,108,101,109,101,110,116,93,32,45,32,65,112,112,101,110,100,105,110,103,32,99,97,114,100,39,115,32,105,109,97,103,101,32,101,108,101,109,101,110,116,46,60,107,111,62,236,182,148,234,176,128,32,235,144,152,235,138,148,32,236,185,180,235,147,156,236,157,152,32,236,189,152,237,133,144,236,184,160,32,236,151,152,235,166,172,235,168,188,237,138,184,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,116,97,114,103,101,116,125,32,91,101,46,116,97,114,103,101,116,93,32,45,32,84,104,101,32,105,116,101,109,39,115,32,101,108,101,109,101,110,116,32,119,105,116,104,32,101,114,114,111,114,32,105,109,97,103,101,115,46,60,107,111,62,236,151,144,235,159,172,235,130,156,32,236,189,152,237,133,144,236,184,160,235,165,188,32,234,176,128,236,167,128,234,179,160,32,236,158,136,235,138,148,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,151,152,235,166,172,235,168,188,237,138,184,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,73,116,101,109,91,93,125,32,91,101,46,105,116,101,109,115,93,32,45,32,84,104,101,32,105,116,101,109,115,32,98,101,105,110,103,32,97,100,100,101,100,46,60,107,111,62,237,153,148,235,169,180,236,151,144,32,236,182,148,234,176,128,236,164,145,236,157,184,32,236,149,132,236,157,180,237,133,156,235,147,164,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,73,116,101,109,125,32,91,101,46,105,116,101,109,93,32,45,32,84,104,101,32,105,116,101,109,32,119,105,116,104,32,101,114,114,111,114,32,105,109,97,103,101,115,46,60,107,111,62,236,151,144,235,159,172,235,130,156,32,236,189,152,237,133,144,236,184,160,235,165,188,32,234,176,128,236,167,128,234,179,160,32,236,158,136,235,138,148,32,236,149,132,236,157,180,237,133,156,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,105,110,100,101,120,93,32,32,45,32,84,104,101,32,105,116,101,109,39,115,32,105,110,100,101,120,32,119,105,116,104,32,101,114,114,111,114,32,105,109,97,103,101,115,46,60,107,111,62,236,151,144,235,159,172,235,130,156,32,236,189,152,237,133,144,236,184,160,235,165,188,32,234,176,128,236,167,128,234,179,160,32,236,158,136,235,138,148,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,157,184,235,141,177,236,138,164,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,46,116,111,116,97,108,73,110,100,101,120,93,32,45,32,84,104,101,32,105,116,101,109,39,115,32,105,110,100,101,120,32,119,105,116,104,32,101,114,114,111,114,32,105,109,97,103,101,115,32,105,110,32,97,108,108,32,105,116,101,109,115,46,60,107,111,62,236,160,132,236,178,180,32,236,149,132,236,157,180,237,133,156,236,164,145,32,236,151,144,235,159,172,235,130,156,32,236,189,152,237,133,144,236,184,160,235,165,188,32,234,176,128,236,167,128,234,179,160,32,236,158,136,235,138,148,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,157,184,235,141,177,236,138,164,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,91,101,46,114,101,109,111,118,101,93,32,45,32,73,110,32,116,104,101,32,99,111,110,116,101,110,116,69,114,114,111,114,32,101,118,101,110,116,44,32,116,104,105,115,32,109,101,116,104,111,100,32,101,120,112,101,99,116,115,32,116,111,32,114,101,109,111,118,101,32,116,104,101,32,101,114,114,111,114,32,105,109,97,103,101,46,60,107,111,62,236,189,152,237,133,144,236,184,160,32,236,151,144,235,159,172,32,236,157,180,235,178,164,237,138,184,236,151,144,236,132,156,32,236,157,180,32,235,169,148,236,132,156,235,147,156,235,138,148,32,236,151,144,235,159,172,235,130,156,32,236,189,152,237,133,144,236,184,160,235,165,188,32,236,130,173,236,160,156,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,91,101,46,114,101,109,111,118,101,73,116,101,109,93,32,45,32,73,110,32,116,104,101,32,99,111,110,116,101,110,116,69,114,114,111,114,32,101,118,101,110,116,44,32,116,104,105,115,32,109,101,116,104,111,100,32,101,120,112,101,99,116,115,32,116,111,32,114,101,109,111,118,101,32,116,104,101,32,105,116,101,109,32,119,105,116,104,32,116,104,101,32,101,114,114,111,114,32,105,109,97,103,101,46,60,107,111,62,236,189,152,237,133,144,236,184,160,32,236,151,144,235,159,172,32,236,157,180,235,178,164,237,138,184,236,151,144,236,132,156,32,236,157,180,32,235,169,148,236,132,156,235,147,156,235,138,148,32,236,151,144,235,159,172,235,130,156,32,236,189,152,237,133,144,236,184,160,235,165,188,32,234,176,128,236,167,128,234,179,160,32,236,158,136,235,138,148,32,236,149,132,236,157,180,237,133,156,236,157,132,32,236,130,173,236,160,156,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,91,101,46,114,101,112,108,97,99,101,93,32,45,32,73,110,32,116,104,101,32,99,111,110,116,101,110,116,69,114,114,111,114,32,101,118,101,110,116,44,32,116,104,105,115,32,109,101,116,104,111,100,32,101,120,112,101,99,116,115,32,116,111,32,114,101,112,108,97,99,101,32,116,104,101,32,101,114,114,111,114,32,105,109,97,103,101,39,115,32,115,111,117,114,99,101,32,111,114,32,101,108,101,109,101,110,116,46,32,73,102,32,116,104,101,32,114,101,112,108,97,99,101,109,101,110,116,32,119,97,115,32,100,111,110,101,32,101,120,116,101,114,110,97,108,108,121,44,32,99,97,108,108,32,114,101,112,108,97,99,101,40,41,46,60,107,111,62,236,189,152,237,133,144,236,184,160,32,236,151,144,235,159,172,32,236,157,180,235,178,164,237,138,184,236,151,144,236,132,156,32,236,157,180,32,235,169,148,236,132,156,235,147,156,235,138,148,32,236,151,144,235,159,172,235,130,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,165,188,32,234,181,144,236,178,180,237,149,156,235,139,164,46,32,236,153,184,235,182,128,236,151,144,236,132,156,32,234,181,144,236,178,180,235,165,188,32,237,150,136,235,139,164,235,169,180,32,114,101,112,108,97,99,101,40,41,235,161,156,32,237,152,184,236,182,156,237,149,180,235,157,188,46,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,91,101,46,114,101,112,108,97,99,101,73,116,101,109,93,32,45,32,73,110,32,116,104,101,32,99,111,110,116,101,110,116,69,114,114,111,114,32,101,118,101,110,116,44,32,116,104,105,115,32,109,101,116,104,111,100,32,101,120,112,101,99,116,115,32,116,111,32,114,101,112,108,97,99,101,32,116,104,101,32,105,116,101,109,39,115,32,99,111,110,116,101,110,116,115,32,119,105,116,104,32,116,104,101,32,101,114,114,111,114,32,105,109,97,103,101,46,60,107,111,62,236,189,152,237,133,144,236,184,160,32,236,151,144,235,159,172,32,236,157,180,235,178,164,237,138,184,236,151,144,236,132,156,32,236,157,180,32,235,169,148,236,132,156,235,147,156,235,138,148,32,236,151,144,235,159,172,235,130,156,32,236,189,152,237,133,144,236,184,160,235,165,188,32,234,176,128,236,167,128,234,179,160,32,236,158,136,235,138,148,32,236,149,132,236,157,180,237,133,156,236,157,152,32,235,130,180,236,154,169,236,157,132,32,234,181,144,236,178,180,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,32,32,32,105,103,46,111,110,40,92,34,99,111,110,116,101,110,116,69,114,114,111,114,92,34,44,32,101,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,114,101,109,111,118,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,114,101,109,111,118,101,73,116,101,109,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,114,101,112,108,97,99,101,40,105,109,97,103,101,69,108,101,109,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,114,101,112,108,97,99,101,109,101,110,116,32,119,97,115,32,100,111,110,101,32,101,120,116,101,114,110,97,108,108,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,114,101,112,108,97,99,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,114,101,112,108,97,99,101,73,116,101,109,40,92,34,105,116,101,109,32,104,116,109,108,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,99,111,110,116,101,110,116,69,114,114,111,114,92,34,44,32,101,41,59,92,110,32,32,32,32,32,32,125,41,46,111,110,40,92,34,114,101,110,100,101,114,67,111,109,112,108,101,116,101,92,34,44,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,116,97,114,116,32,61,32,95,97,46,115,116,97,114,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,32,61,32,95,97,46,101,110,100,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,115,101,116,67,117,114,115,111,114,40,115,116,97,114,116,44,32,101,110,100,41,59,92,110,32,32,32,32,32,32,125,41,46,111,110,40,92,34,108,97,121,111,117,116,67,111,109,112,108,101,116,101,92,34,44,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,97,121,111,117,116,73,116,101,109,115,32,61,32,95,97,46,105,116,101,109,115,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,112,114,111,99,101,115,115,40,80,82,79,67,69,83,83,73,78,71,44,32,102,97,108,115,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,111,110,76,97,121,111,117,116,67,111,109,112,108,101,116,101,40,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,115,58,32,108,97,121,111,117,116,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,105,115,65,112,112,101,110,100,44,92,110,32,32,32,32,32,32,32,32,32,32,102,114,111,109,67,97,99,104,101,58,32,102,114,111,109,67,97,99,104,101,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,84,114,117,115,116,101,100,58,32,105,115,84,114,117,115,116,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,117,115,101,82,101,99,121,99,108,101,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,46,111,110,40,92,34,114,101,97,100,121,69,108,101,109,101,110,116,92,34,44,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,117,112,100,97,116,101,73,116,101,109,40,101,46,105,116,101,109,41,32,38,38,32,95,116,104,105,115,46,108,97,121,111,117,116,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,125,41,46,111,110,40,92,34,114,101,97,100,121,92,34,44,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,109,111,118,101,32,61,32,95,97,46,114,101,109,111,118,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,97,121,111,117,116,32,61,32,95,97,46,108,97,121,111,117,116,59,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,46,114,101,109,111,118,101,40,101,108,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,97,121,111,117,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,108,97,121,111,117,116,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,95,116,104,105,115,46,105,115,80,114,111,99,101,115,115,105,110,103,40,41,32,38,38,32,95,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,99,121,99,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,101,114,32,61,32,95,116,104,105,115,46,95,119,97,116,99,104,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,80,111,115,32,61,32,115,99,114,111,108,108,101,114,46,103,101,116,83,99,114,111,108,108,80,111,115,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,114,101,99,121,99,108,101,40,115,99,114,111,108,108,80,111,115,44,32,105,115,65,112,112,101,110,100,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,105,102,32,40,33,104,97,115,67,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,114,101,110,100,101,114,69,120,116,101,114,110,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,116,101,109,115,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,46,109,111,117,110,116,101,100,59,92,110,32,32,32,32,32,32,32,32,125,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,110,101,120,116,40,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,71,114,111,117,112,115,32,61,32,103,114,111,117,112,115,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,114,101,110,100,101,114,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,33,104,97,115,67,104,105,108,100,114,101,110,32,38,38,32,95,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,114,101,110,100,101,114,73,116,101,109,115,40,105,116,101,109,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,99,111,110,116,97,105,110,101,114,32,104,97,115,32,99,104,105,108,100,114,101,110,44,32,105,116,32,100,111,101,115,32,110,111,116,32,114,101,110,100,101,114,32,102,105,114,115,116,46,92,110,32,32,32,32,32,32,32,32,114,101,110,100,101,114,101,114,46,99,114,101,97,116,101,65,110,100,73,110,115,101,114,116,40,105,116,101,109,115,44,32,105,115,65,112,112,101,110,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,110,101,120,116,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,97,108,108,98,97,99,107,67,111,109,112,111,110,101,110,116,59,92,110,32,32,125,59,32,47,47,32,99,97,108,108,101,100,32,98,121,32,118,105,115,105,98,108,101,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,114,101,113,117,101,115,116,65,112,112,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,99,97,99,104,101,32,61,32,95,97,46,99,97,99,104,101,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,105,115,80,114,111,99,101,115,115,105,110,103,40,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,99,97,99,104,101,32,38,38,32,99,97,99,104,101,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,112,111,115,116,67,97,99,104,101,40,123,92,110,32,32,32,32,32,32,32,32,99,97,99,104,101,58,32,99,97,99,104,101,44,92,110,32,32,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,42,32,84,104,105,115,32,101,118,101,110,116,32,105,115,32,102,105,114,101,100,32,119,104,101,110,32,97,32,99,97,114,100,32,101,108,101,109,101,110,116,32,109,117,115,116,32,98,101,32,97,100,100,101,100,32,97,116,32,116,104,101,32,98,111,116,116,111,109,32,111,114,32,114,105,103,104,116,32,111,102,32,97,32,108,97,121,111,117,116,32,98,101,99,97,117,115,101,32,116,104,101,114,101,32,105,115,32,110,111,32,99,97,114,100,32,116,111,32,98,101,32,100,105,115,112,108,97,121,101,100,32,111,110,32,115,99,114,101,101,110,32,119,104,101,110,32,97,32,117,115,101,114,32,115,99,114,111,108,108,115,32,110,101,97,114,32,98,111,116,116,111,109,32,111,114,32,114,105,103,104,116,46,92,110,32,32,32,32,32,32,32,42,32,64,107,111,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,234,176,128,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,152,32,236,149,132,235,158,152,235,130,152,32,236,152,164,235,165,184,236,170,189,236,151,144,32,236,182,148,234,176,128,235,143,188,236,149,188,32,237,149,160,32,235,149,140,32,235,176,156,236,131,157,237,149,152,235,138,148,32,236,157,180,235,178,164,237,138,184,46,32,236,130,172,236,154,169,236,158,144,234,176,128,32,236,149,132,235,158,152,235,130,152,32,236,152,164,235,165,184,236,170,189,236,156,188,235,161,156,32,236,138,164,237,129,172,235,161,164,237,149,180,236,132,156,32,237,153,148,235,169,180,236,151,144,32,237,145,156,236,139,156,235,144,160,32,236,185,180,235,147,156,234,176,128,32,236,151,134,236,157,132,32,235,149,140,32,235,176,156,236,131,157,237,149,156,235,139,164,92,110,32,32,32,32,32,32,32,42,32,64,101,118,101,110,116,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,35,97,112,112,101,110,100,92,110,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,112,97,114,97,109,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,100,97,116,97,32,116,111,32,98,101,32,115,101,110,116,32,116,111,32,97,110,32,101,118,101,110,116,32,60,107,111,62,236,157,180,235,178,164,237,138,184,236,151,144,32,236,160,132,235,139,172,235,144,152,235,138,148,32,235,141,176,236,157,180,237,132,176,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,124,78,117,109,98,101,114,125,32,103,114,111,117,112,75,101,121,32,84,104,101,32,103,114,111,117,112,32,107,101,121,32,111,102,32,116,104,101,32,102,105,114,115,116,32,103,114,111,117,112,32,118,105,115,105,98,108,101,32,111,110,32,116,104,101,32,115,99,114,101,101,110,32,60,107,111,62,237,153,148,235,169,180,236,151,144,32,235,179,180,236,151,172,236,167,128,235,138,148,32,235,167,136,236,167,128,235,167,137,32,234,183,184,235,163,185,236,157,152,32,234,183,184,235,163,185,237,130,164,60,47,107,111,62,92,110,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,112,97,114,97,109,46,105,115,84,114,117,115,116,101,100,32,82,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,97,110,32,101,118,101,110,116,32,119,97,115,32,103,101,110,101,114,97,116,101,100,32,98,121,32,116,104,101,32,117,115,101,114,32,97,99,116,105,111,110,44,32,111,114,32,102,97,108,115,101,32,105,102,32,105,116,32,119,97,115,32,99,97,117,115,101,100,32,98,121,32,97,32,115,99,114,105,112,116,32,111,114,32,65,80,73,32,99,97,108,108,32,60,107,111,62,236,130,172,236,154,169,236,158,144,236,157,152,32,236,149,161,236,133,152,236,151,144,32,236,157,152,237,149,180,32,236,157,180,235,178,164,237,138,184,234,176,128,32,235,176,156,236,131,157,237,149,152,236,152,128,236,156,188,235,169,180,32,116,114,117,101,44,32,236,138,164,237,129,172,235,166,189,237,138,184,235,130,152,32,65,80,73,237,152,184,236,182,156,236,151,144,32,236,157,152,237,149,180,32,235,176,156,236,131,157,237,149,152,236,152,128,236,157,132,32,234,178,189,236,154,176,236,151,144,235,138,148,32,102,97,108,115,101,235,165,188,32,235,176,152,237,153,152,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,97,114,97,109,46,115,116,97,114,116,76,111,97,100,105,110,103,32,83,116,97,114,116,32,108,111,97,100,105,110,103,32,102,111,114,32,97,112,112,101,110,100,32,108,111,97,100,105,110,103,32,100,97,116,97,46,32,60,107,111,62,32,235,146,183,236,170,189,236,151,144,32,236,182,148,234,176,128,235,144,152,235,138,148,32,235,141,176,236,157,180,237,132,176,32,235,161,156,235,148,169,236,157,132,32,236,139,156,236,158,145,237,149,156,235,139,164,46,32,60,47,107,111,62,92,110,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,112,97,114,97,109,46,115,116,97,114,116,76,111,97,100,105,110,103,46,117,115,101,114,83,116,121,108,101,32,84,104,101,32,99,117,115,116,111,109,32,115,116,121,108,101,32,116,111,32,97,112,112,108,121,32,116,111,32,116,104,105,115,32,108,111,97,100,105,110,103,32,98,97,114,32,102,111,114,32,115,116,97,114,116,46,32,60,107,111,62,32,235,161,156,235,148,169,236,157,132,32,236,139,156,236,158,145,237,149,160,32,235,149,140,32,235,161,156,235,148,169,32,235,176,148,236,151,144,32,236,160,129,236,154,169,235,144,160,32,236,130,172,236,154,169,236,158,144,32,236,138,164,237,131,128,236,157,188,32,60,47,107,111,62,92,110,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,97,114,97,109,46,101,110,100,76,111,97,100,105,110,103,32,69,110,100,32,108,111,97,100,105,110,103,32,97,102,116,101,114,32,115,116,97,114,116,76,111,97,100,105,110,103,40,41,32,102,111,114,32,97,112,112,101,110,100,47,112,114,101,112,101,110,100,32,108,111,97,100,105,110,103,32,100,97,116,97,46,32,60,107,111,62,235,141,176,236,157,180,237,132,176,32,235,161,156,235,148,169,236,157,132,32,236,156,132,237,149,180,32,97,112,112,101,110,100,47,112,114,101,112,101,110,100,32,115,116,97,114,116,76,111,97,100,105,110,103,40,41,32,237,152,184,236,182,156,32,236,157,180,237,155,132,32,235,161,156,235,148,169,236,157,132,32,235,129,157,235,130,184,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,112,97,114,97,109,46,101,110,100,76,111,97,100,105,110,103,46,117,115,101,114,83,116,121,108,101,32,84,104,101,32,99,117,115,116,111,109,32,115,116,121,108,101,32,116,111,32,97,112,112,108,121,32,116,111,32,116,104,105,115,32,108,111,97,100,105,110,103,32,98,97,114,32,102,111,114,32,115,116,97,114,116,46,32,60,107,111,62,32,235,161,156,235,148,169,236,157,180,32,235,129,157,235,130,160,32,235,149,140,32,235,161,156,235,148,169,32,235,176,148,236,151,144,32,236,160,129,236,154,169,235,144,160,32,236,130,172,236,154,169,236,158,144,32,236,138,164,237,131,128,236,157,188,32,60,47,107,111,62,92,110,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,97,112,112,101,110,100,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,105,115,84,114,117,115,116,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,75,101,121,58,32,116,104,105,115,46,103,101,116,71,114,111,117,112,75,101,121,115,40,41,46,112,111,112,40,41,32,124,124,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,76,111,97,100,105,110,103,58,32,102,117,110,99,116,105,111,110,32,40,117,115,101,114,83,116,121,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,115,116,97,114,116,76,111,97,100,105,110,103,40,116,114,117,101,44,32,117,115,101,114,83,116,121,108,101,41,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,101,110,100,76,111,97,100,105,110,103,58,32,102,117,110,99,116,105,111,110,32,40,117,115,101,114,83,116,121,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,101,110,100,76,111,97,100,105,110,103,40,117,115,101,114,83,116,121,108,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,32,47,47,32,99,97,108,108,101,100,32,98,121,32,118,105,115,105,98,108,101,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,114,101,113,117,101,115,116,80,114,101,112,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,99,97,99,104,101,32,61,32,95,97,46,99,97,99,104,101,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,102,105,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,70,105,116,32,124,124,32,33,99,97,99,104,101,32,124,124,32,33,99,97,99,104,101,46,108,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,105,115,80,114,111,99,101,115,115,105,110,103,40,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,99,97,99,104,101,32,38,38,32,99,97,99,104,101,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,112,111,115,116,67,97,99,104,101,40,123,92,110,32,32,32,32,32,32,32,32,99,97,99,104,101,58,32,99,97,99,104,101,44,92,110,32,32,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,42,32,84,104,105,115,32,101,118,101,110,116,32,105,115,32,102,105,114,101,100,32,119,104,101,110,32,97,32,99,97,114,100,32,101,108,101,109,101,110,116,32,109,117,115,116,32,98,101,32,97,100,100,101,100,32,97,116,32,116,104,101,32,116,111,112,32,111,114,32,108,101,102,116,32,111,102,32,97,32,108,97,121,111,117,116,32,98,101,99,97,117,115,101,32,116,104,101,114,101,32,105,115,32,110,111,32,99,97,114,100,32,116,111,32,98,101,32,100,105,115,112,108,97,121,101,100,32,111,110,32,115,99,114,101,101,110,32,119,104,101,110,32,97,32,117,115,101,114,32,115,99,114,111,108,108,115,32,110,101,97,114,32,116,111,112,32,111,114,32,108,101,102,116,46,92,110,32,32,32,32,32,32,32,42,32,64,107,111,32,236,185,180,235,147,156,234,176,128,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,152,32,236,156,132,235,130,152,32,236,153,188,236,170,189,236,151,144,32,236,182,148,234,176,128,235,143,188,236,149,188,32,237,149,160,32,235,149,140,32,235,176,156,236,131,157,237,149,152,235,138,148,32,236,157,180,235,178,164,237,138,184,46,32,236,130,172,236,154,169,236,158,144,234,176,128,32,236,156,132,235,130,152,32,236,153,188,236,170,189,236,156,188,235,161,156,32,236,138,164,237,129,172,235,161,164,237,149,180,236,132,156,32,237,153,148,235,169,180,236,151,144,32,237,145,156,236,139,156,235,144,160,32,236,185,180,235,147,156,234,176,128,32,236,151,134,236,157,132,32,235,149,140,32,235,176,156,236,131,157,237,149,156,235,139,164,46,92,110,32,32,32,32,32,32,32,42,32,64,101,118,101,110,116,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,35,112,114,101,112,101,110,100,92,110,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,112,97,114,97,109,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,100,97,116,97,32,116,111,32,98,101,32,115,101,110,116,32,116,111,32,97,110,32,101,118,101,110,116,32,60,107,111,62,236,157,180,235,178,164,237,138,184,236,151,144,32,236,160,132,235,139,172,235,144,152,235,138,148,32,235,141,176,236,157,180,237,132,176,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,124,78,117,109,98,101,114,125,32,103,114,111,117,112,75,101,121,32,84,104,101,32,103,114,111,117,112,32,107,101,121,32,111,102,32,116,104,101,32,102,105,114,115,116,32,103,114,111,117,112,32,118,105,115,105,98,108,101,32,111,110,32,116,104,101,32,115,99,114,101,101,110,32,60,107,111,62,237,153,148,235,169,180,236,151,144,32,235,179,180,236,151,172,236,167,128,235,138,148,32,236,178,171,235,178,136,236,167,184,32,234,183,184,235,163,185,236,157,152,32,234,183,184,235,163,185,237,130,164,60,47,107,111,62,92,110,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,112,97,114,97,109,46,105,115,84,114,117,115,116,101,100,32,82,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,97,110,32,101,118,101,110,116,32,119,97,115,32,103,101,110,101,114,97,116,101,100,32,98,121,32,116,104,101,32,117,115,101,114,32,97,99,116,105,111,110,44,32,111,114,32,102,97,108,115,101,32,105,102,32,105,116,32,119,97,115,32,99,97,117,115,101,100,32,98,121,32,97,32,115,99,114,105,112,116,32,111,114,32,65,80,73,32,99,97,108,108,32,60,107,111,62,236,130,172,236,154,169,236,158,144,236,157,152,32,236,149,161,236,133,152,236,151,144,32,236,157,152,237,149,180,32,236,157,180,235,178,164,237,138,184,234,176,128,32,235,176,156,236,131,157,237,149,152,236,152,128,236,156,188,235,169,180,32,116,114,117,101,44,32,236,138,164,237,129,172,235,166,189,237,138,184,235,130,152,32,65,80,73,237,152,184,236,182,156,236,151,144,32,236,157,152,237,149,180,32,235,176,156,236,131,157,237,149,152,236,152,128,236,157,132,32,234,178,189,236,154,176,236,151,144,235,138,148,32,102,97,108,115,101,235,165,188,32,235,176,152,237,153,152,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,97,114,97,109,46,115,116,97,114,116,76,111,97,100,105,110,103,32,83,116,97,114,116,32,108,111,97,100,105,110,103,32,102,111,114,32,112,114,101,112,101,110,100,32,108,111,97,100,105,110,103,32,100,97,116,97,46,32,60,107,111,62,32,236,149,158,236,170,189,236,151,144,32,236,182,148,234,176,128,235,144,152,235,138,148,32,235,141,176,236,157,180,237,132,176,32,235,161,156,235,148,169,236,157,132,32,236,139,156,236,158,145,237,149,156,235,139,164,46,32,60,47,107,111,62,92,110,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,112,97,114,97,109,46,115,116,97,114,116,76,111,97,100,105,110,103,46,117,115,101,114,83,116,121,108,101,32,84,104,101,32,99,117,115,116,111,109,32,115,116,121,108,101,32,116,111,32,97,112,112,108,121,32,116,111,32,116,104,105,115,32,108,111,97,100,105,110,103,32,98,97,114,32,102,111,114,32,115,116,97,114,116,46,32,60,107,111,62,32,235,161,156,235,148,169,236,157,132,32,236,139,156,236,158,145,237,149,160,32,235,149,140,32,235,161,156,235,148,169,32,235,176,148,236,151,144,32,236,160,129,236,154,169,235,144,160,32,236,130,172,236,154,169,236,158,144,32,236,138,164,237,131,128,236,157,188,32,60,47,107,111,62,92,110,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,97,114,97,109,46,101,110,100,76,111,97,100,105,110,103,32,69,110,100,32,108,111,97,100,105,110,103,32,97,102,116,101,114,32,115,116,97,114,116,76,111,97,100,105,110,103,40,41,32,102,111,114,32,97,112,112,101,110,100,47,112,114,101,112,101,110,100,32,108,111,97,100,105,110,103,32,100,97,116,97,46,32,60,107,111,62,235,141,176,236,157,180,237,132,176,32,235,161,156,235,148,169,236,157,132,32,236,156,132,237,149,180,32,97,112,112,101,110,100,47,112,114,101,112,101,110,100,32,115,116,97,114,116,76,111,97,100,105,110,103,40,41,32,237,152,184,236,182,156,32,236,157,180,237,155,132,32,235,161,156,235,148,169,236,157,132,32,235,129,157,235,130,184,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,112,97,114,97,109,46,101,110,100,76,111,97,100,105,110,103,46,117,115,101,114,83,116,121,108,101,32,84,104,101,32,99,117,115,116,111,109,32,115,116,121,108,101,32,116,111,32,97,112,112,108,121,32,116,111,32,116,104,105,115,32,108,111,97,100,105,110,103,32,98,97,114,32,102,111,114,32,115,116,97,114,116,46,32,60,107,111,62,32,235,161,156,235,148,169,236,157,180,32,235,129,157,235,130,160,32,235,149,140,32,235,161,156,235,148,169,32,235,176,148,236,151,144,32,236,160,129,236,154,169,235,144,160,32,236,130,172,236,154,169,236,158,144,32,236,138,164,237,131,128,236,157,188,32,60,47,107,111,62,92,110,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,112,114,101,112,101,110,100,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,105,115,84,114,117,115,116,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,75,101,121,58,32,116,104,105,115,46,103,101,116,71,114,111,117,112,75,101,121,115,40,41,46,115,104,105,102,116,40,41,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,76,111,97,100,105,110,103,58,32,102,117,110,99,116,105,111,110,32,40,117,115,101,114,83,116,121,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,115,116,97,114,116,76,111,97,100,105,110,103,40,102,97,108,115,101,44,32,117,115,101,114,83,116,121,108,101,41,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,101,110,100,76,111,97,100,105,110,103,58,32,102,117,110,99,116,105,111,110,32,40,117,115,101,114,83,116,121,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,101,110,100,76,111,97,100,105,110,103,40,117,115,101,114,83,116,121,108,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,111,110,82,101,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,108,97,121,111,117,116,40,116,114,117,101,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,115,101,116,67,117,114,115,111,114,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,102,105,110,105,116,101,32,61,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,59,92,110,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,105,110,102,105,110,105,116,101,46,103,101,116,67,117,114,115,111,114,115,40,41,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,67,117,114,115,111,114,32,61,32,95,97,91,48,93,44,92,110,32,32,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,32,61,32,95,97,91,49,93,59,92,110,92,110,32,32,32,32,105,110,102,105,110,105,116,101,46,115,101,116,67,117,114,115,111,114,40,92,34,115,116,97,114,116,92,34,44,32,115,116,97,114,116,41,59,92,110,32,32,32,32,105,110,102,105,110,105,116,101,46,115,101,116,67,117,114,115,111,114,40,92,34,101,110,100,92,34,44,32,101,110,100,41,59,92,110,92,110,32,32,32,32,118,97,114,32,105,115,82,101,99,121,99,108,101,32,61,32,116,104,105,115,46,95,114,101,99,121,99,108,101,40,91,123,92,110,32,32,32,32,32,32,115,116,97,114,116,58,32,115,116,97,114,116,67,117,114,115,111,114,44,92,110,32,32,32,32,32,32,101,110,100,58,32,115,116,97,114,116,32,45,32,49,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,58,32,101,110,100,32,43,32,49,44,92,110,32,32,32,32,32,32,101,110,100,58,32,101,110,100,67,117,114,115,111,114,92,110,32,32,32,32,125,93,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,105,115,82,101,99,121,99,108,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,71,114,111,117,112,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,114,101,110,100,101,114,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,110,101,120,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,111,110,67,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,118,97,114,32,105,115,70,111,114,119,97,114,100,32,61,32,95,97,46,105,115,70,111,114,119,97,114,100,44,92,110,32,32,32,32,32,32,32,32,115,99,114,111,108,108,80,111,115,32,61,32,95,97,46,115,99,114,111,108,108,80,111,115,44,92,110,32,32,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,32,61,32,95,97,46,104,111,114,105,122,111,110,116,97,108,44,92,110,32,32,32,32,32,32,32,32,111,114,103,83,99,114,111,108,108,80,111,115,32,61,32,95,97,46,111,114,103,83,99,114,111,108,108,80,111,115,59,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,101,118,101,110,116,32,105,115,32,102,105,114,101,100,32,119,104,101,110,32,116,104,101,32,117,115,101,114,32,115,99,114,111,108,108,115,46,92,110,32,32,32,32,32,42,32,64,107,111,32,236,130,172,236,154,169,236,158,144,234,176,128,32,236,138,164,237,129,172,235,161,164,32,237,149,160,32,234,178,189,236,154,176,32,235,176,156,236,131,157,237,149,152,235,138,148,32,236,157,180,235,178,164,237,138,184,46,92,110,32,32,32,32,32,42,32,64,101,118,101,110,116,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,35,99,104,97,110,103,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,112,97,114,97,109,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,100,97,116,97,32,116,111,32,98,101,32,115,101,110,116,32,116,111,32,97,110,32,101,118,101,110,116,32,60,107,111,62,236,157,180,235,178,164,237,138,184,236,151,144,32,236,160,132,235,139,172,235,144,152,235,138,148,32,235,141,176,236,157,180,237,132,176,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,112,97,114,97,109,46,105,115,70,111,114,119,97,114,100,32,73,110,100,105,99,97,116,101,115,32,119,104,101,116,104,101,114,32,116,104,101,32,115,99,114,111,108,108,32,112,114,111,103,114,101,115,115,105,111,110,32,100,105,114,101,99,116,105,111,110,32,105,115,32,102,111,114,119,97,114,100,32,111,114,32,98,97,99,107,119,111,114,100,46,32,60,107,111,62,236,138,164,237,129,172,235,161,164,32,236,167,132,237,150,137,235,176,169,237,150,165,236,157,180,32,236,149,158,236,170,189,236,156,188,235,161,156,32,236,167,132,237,150,137,237,149,152,235,138,148,32,236,167,128,44,32,235,146,164,236,170,189,236,156,188,235,161,156,32,236,167,132,237,150,137,237,149,152,235,138,148,236,167,128,235,165,188,32,235,130,152,237,131,128,235,130,184,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,112,97,114,97,109,46,115,99,114,111,108,108,80,111,115,32,67,117,114,114,101,110,116,32,115,99,114,111,108,108,32,112,111,115,105,116,105,111,110,32,118,97,108,117,101,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,102,105,110,105,116,101,71,114,105,100,32,99,111,110,116,97,105,110,101,114,32,101,108,101,109,101,110,116,46,32,60,107,111,62,105,110,102,105,110,105,116,101,71,114,105,100,32,236,187,168,237,133,140,236,157,180,235,132,136,32,236,151,152,235,166,172,235,168,188,237,138,184,32,234,184,176,236,164,128,236,157,152,32,237,152,132,236,158,172,32,236,138,164,237,129,172,235,161,164,32,236,156,132,236,185,152,234,176,146,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,112,97,114,97,109,46,111,114,103,83,99,114,111,108,108,80,111,115,32,67,117,114,114,101,110,116,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,115,99,114,111,108,108,32,60,107,111,62,237,152,132,236,158,172,32,236,138,164,237,129,172,235,161,164,32,236,156,132,236,185,152,234,176,146,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,112,97,114,97,109,46,105,115,84,114,117,115,116,101,100,32,82,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,97,110,32,101,118,101,110,116,32,119,97,115,32,103,101,110,101,114,97,116,101,100,32,98,121,32,116,104,101,32,117,115,101,114,32,97,99,116,105,111,110,44,32,111,114,32,102,97,108,115,101,32,105,102,32,105,116,32,119,97,115,32,99,97,117,115,101,100,32,98,121,32,97,32,115,99,114,105,112,116,32,111,114,32,65,80,73,32,99,97,108,108,32,60,107,111,62,236,130,172,236,154,169,236,158,144,236,157,152,32,236,149,161,236,133,152,236,151,144,32,236,157,152,237,149,180,32,236,157,180,235,178,164,237,138,184,234,176,128,32,235,176,156,236,131,157,237,149,152,236,152,128,236,156,188,235,169,180,32,116,114,117,101,44,32,236,138,164,237,129,172,235,166,189,237,138,184,235,130,152,32,65,80,73,237,152,184,236,182,156,236,151,144,32,236,157,152,237,149,180,32,235,176,156,236,131,157,237,149,152,236,152,128,236,157,132,32,234,178,189,236,154,176,236,151,144,235,138,148,32,102,97,108,115,101,235,165,188,32,235,176,152,237,153,152,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,32,68,105,114,101,99,116,105,111,110,32,111,102,32,116,104,101,32,115,99,114,111,108,108,32,109,111,118,101,109,101,110,116,32,40,116,114,117,101,58,32,104,111,114,105,122,111,110,116,97,108,44,32,102,97,108,115,101,58,32,118,101,114,116,105,99,97,108,41,32,60,107,111,62,236,138,164,237,129,172,235,161,164,32,236,157,180,235,143,153,32,235,176,169,237,150,165,32,40,116,114,117,101,32,234,176,128,235,161,156,235,176,169,237,150,165,44,32,102,97,108,115,101,32,236,132,184,235,161,156,235,176,169,237,150,165,60,47,107,111,62,92,110,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,99,104,97,110,103,101,92,34,44,32,123,92,110,32,32,32,32,32,32,105,115,70,111,114,119,97,114,100,58,32,105,115,70,111,114,119,97,114,100,44,92,110,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,58,32,104,111,114,105,122,111,110,116,97,108,44,92,110,32,32,32,32,32,32,115,99,114,111,108,108,80,111,115,58,32,115,99,114,111,108,108,80,111,115,44,92,110,32,32,32,32,32,32,111,114,103,83,99,114,111,108,108,80,111,115,58,32,111,114,103,83,99,114,111,108,108,80,111,115,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,115,99,114,111,108,108,40,115,99,114,111,108,108,80,111,115,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,111,110,76,97,121,111,117,116,67,111,109,112,108,101,116,101,32,61,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,95,97,46,105,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,105,115,65,112,112,101,110,100,32,61,32,95,97,46,105,115,65,112,112,101,110,100,44,92,110,32,32,32,32,32,32,32,32,95,98,32,61,32,95,97,46,105,115,84,114,117,115,116,101,100,44,92,110,32,32,32,32,32,32,32,32,105,115,84,114,117,115,116,101,100,32,61,32,95,98,32,61,61,61,32,118,111,105,100,32,48,32,63,32,102,97,108,115,101,32,58,32,95,98,44,92,110,32,32,32,32,32,32,32,32,95,99,32,61,32,95,97,46,117,115,101,82,101,99,121,99,108,101,44,92,110,32,32,32,32,32,32,32,32,117,115,101,82,101,99,121,99,108,101,32,61,32,95,99,32,61,61,61,32,118,111,105,100,32,48,32,63,32,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,99,121,99,108,101,32,58,32,95,99,44,92,110,32,32,32,32,32,32,32,32,95,100,32,61,32,95,97,46,102,114,111,109,67,97,99,104,101,44,92,110,32,32,32,32,32,32,32,32,102,114,111,109,67,97,99,104,101,32,61,32,95,100,32,61,61,61,32,118,111,105,100,32,48,32,63,32,102,97,108,115,101,32,58,32,95,100,44,92,110,32,32,32,32,32,32,32,32,95,101,32,61,32,95,97,46,105,115,76,97,121,111,117,116,44,92,110,32,32,32,32,32,32,32,32,105,115,76,97,121,111,117,116,32,61,32,95,101,32,61,61,61,32,118,111,105,100,32,48,32,63,32,102,97,108,115,101,32,58,32,95,101,59,92,110,92,110,32,32,32,32,118,97,114,32,118,105,101,119,83,105,122,101,32,61,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,103,101,116,86,105,101,119,83,105,122,101,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,102,105,116,40,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,76,111,97,100,105,110,103,40,41,32,38,38,32,116,104,105,115,46,95,114,101,110,100,101,114,76,111,97,100,105,110,103,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,119,97,116,99,104,101,114,32,61,32,116,104,105,115,46,95,119,97,116,99,104,101,114,59,92,110,32,32,32,32,118,97,114,32,115,99,114,111,108,108,80,111,115,32,61,32,119,97,116,99,104,101,114,46,103,101,116,83,99,114,111,108,108,80,111,115,40,41,59,32,47,47,32,114,101,99,121,99,108,101,32,97,102,116,101,114,32,95,102,105,116,32,98,101,97,99,97,117,115,101,32,112,114,101,112,101,110,100,32,97,110,100,32,97,112,112,101,110,100,32,97,114,101,32,111,99,99,117,114,101,100,32,115,105,109,117,108,116,97,110,101,111,117,115,108,121,32,98,121,32,115,99,114,111,108,108,46,92,110,92,110,32,32,32,32,105,102,32,40,33,105,115,76,97,121,111,117,116,32,38,38,32,117,115,101,82,101,99,121,99,108,101,32,38,38,32,33,116,104,105,115,46,105,115,76,111,97,100,105,110,103,40,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,114,101,99,121,99,108,101,40,115,99,114,111,108,108,80,111,115,44,32,105,115,65,112,112,101,110,100,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,116,104,105,115,46,95,103,101,116,69,100,103,101,86,97,108,117,101,40,92,34,101,110,100,92,34,41,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,40,115,105,122,101,32,43,32,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,105,122,101,32,124,124,32,48,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,115,99,114,111,108,108,80,111,115,32,61,61,61,32,92,34,110,117,109,98,101,114,92,34,32,38,38,32,115,99,114,111,108,108,80,111,115,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,33,73,83,95,73,79,83,32,38,38,32,116,104,105,115,46,95,115,99,114,111,108,108,84,111,40,115,99,114,111,108,108,80,111,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,101,118,101,110,116,32,105,115,32,102,105,114,101,100,32,119,104,101,110,32,108,97,121,111,117,116,32,105,115,32,115,117,99,99,101,115,115,102,117,108,108,121,32,97,114,114,97,110,103,101,100,32,116,104,114,111,117,103,104,32,97,32,99,97,108,108,32,116,111,32,116,104,101,32,97,112,112,101,110,100,40,41,44,32,112,114,101,112,101,110,100,40,41,44,32,111,114,32,108,97,121,111,117,116,40,41,32,109,101,116,104,111,100,46,92,110,32,32,32,32,32,42,32,64,107,111,32,235,160,136,236,157,180,236,149,132,236,155,131,32,235,176,176,236,185,152,234,176,128,32,236,153,132,235,163,140,235,144,144,236,157,132,32,235,149,140,32,235,176,156,236,131,157,237,149,152,235,138,148,32,236,157,180,235,178,164,237,138,184,46,32,97,112,112,101,110,100,40,41,32,235,169,148,236,132,156,235,147,156,235,130,152,32,112,114,101,112,101,110,100,40,41,32,235,169,148,236,132,156,235,147,156,44,32,108,97,121,111,117,116,40,41,32,235,169,148,236,132,156,235,147,156,32,237,152,184,236,182,156,32,237,155,132,32,236,185,180,235,147,156,236,157,152,32,235,176,176,236,185,152,234,176,128,32,236,153,132,235,163,140,235,144,144,236,157,132,32,235,149,140,32,235,176,156,236,131,157,237,149,156,235,139,164,92,110,32,32,32,32,32,42,32,64,101,118,101,110,116,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,35,108,97,121,111,117,116,67,111,109,112,108,101,116,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,112,97,114,97,109,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,100,97,116,97,32,116,111,32,98,101,32,115,101,110,116,32,116,111,32,97,110,32,101,118,101,110,116,32,60,107,111,62,236,157,180,235,178,164,237,138,184,236,151,144,32,236,160,132,235,139,172,235,144,152,235,138,148,32,235,141,176,236,157,180,237,132,176,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,112,97,114,97,109,46,116,97,114,103,101,116,32,82,101,97,114,114,97,110,103,101,100,32,99,97,114,100,32,101,108,101,109,101,110,116,115,60,107,111,62,236,158,172,235,176,176,236,185,152,235,144,156,32,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,235,147,164,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,112,97,114,97,109,46,102,114,111,109,67,97,99,104,101,32,67,104,101,99,107,32,119,104,101,116,104,101,114,32,116,104,101,115,101,32,105,116,101,109,115,32,97,114,101,32,99,97,99,104,101,32,111,114,32,110,111,116,32,60,107,111,62,237,149,180,235,139,185,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,180,32,236,186,144,236,139,156,236,157,184,236,167,128,32,236,149,132,235,139,140,236,167,128,32,237,153,149,236,157,184,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,112,97,114,97,109,46,105,115,76,97,121,111,117,116,32,82,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,116,104,105,115,32,105,115,32,97,110,32,101,118,101,110,116,32,99,97,108,108,101,100,32,98,121,32,114,101,115,105,122,101,32,101,118,101,110,116,32,111,114,32,108,97,121,111,117,116,32,109,101,116,104,111,100,46,32,82,101,116,117,114,110,115,32,102,97,108,115,101,32,105,102,32,116,104,105,115,32,105,115,32,97,110,32,101,118,101,110,116,32,99,97,108,108,101,100,32,98,121,32,97,100,100,105,110,103,32,97,110,32,105,116,101,109,46,32,60,107,111,62,237,149,180,235,139,185,32,236,157,180,235,178,164,237,138,184,234,176,128,32,235,166,172,236,130,172,236,157,180,236,166,136,32,236,157,180,235,178,164,237,138,184,32,235,152,144,235,138,148,32,108,97,121,111,117,116,40,41,32,235,169,148,236,132,156,235,147,156,235,165,188,32,237,134,181,237,149,180,32,237,152,184,236,182,156,235,144,144,236,156,188,235,169,180,32,116,114,117,101,44,32,236,149,132,236,157,180,237,133,156,32,236,182,148,234,176,128,235,161,156,32,237,152,184,236,182,156,235,144,144,236,156,188,235,169,180,32,102,97,108,115,101,235,165,188,32,235,176,152,237,153,152,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,112,97,114,97,109,46,105,115,65,112,112,101,110,100,32,67,104,101,99,107,115,32,119,104,101,116,104,101,114,32,116,104,101,32,97,112,112,101,110,100,40,41,32,109,101,116,104,111,100,32,105,115,32,117,115,101,100,32,116,111,32,97,100,100,32,97,32,99,97,114,100,32,101,108,101,109,101,110,116,46,32,73,116,32,114,101,116,117,114,110,115,32,116,114,117,101,32,101,118,101,110,32,116,104,111,117,103,104,32,116,104,101,32,108,97,121,111,117,116,67,111,109,112,108,101,116,101,32,101,118,101,110,116,32,105,115,32,102,105,114,101,100,32,97,102,116,101,114,32,116,104,101,32,108,97,121,111,117,116,40,41,32,109,101,116,104,111,100,32,105,115,32,99,97,108,108,101,100,46,32,60,107,111,62,236,185,180,235,147,156,32,236,151,152,235,166,172,235,168,188,237,138,184,234,176,128,32,97,112,112,101,110,100,40,41,32,235,169,148,236,132,156,235,147,156,235,161,156,32,236,182,148,234,176,128,235,144,144,235,138,148,236,167,128,32,237,153,149,236,157,184,237,149,156,235,139,164,46,32,108,97,121,111,117,116,40,41,32,235,169,148,236,132,156,235,147,156,234,176,128,32,237,152,184,236,182,156,235,144,156,32,237,155,132,32,108,97,121,111,117,116,67,111,109,112,108,101,116,101,32,236,157,180,235,178,164,237,138,184,234,176,128,32,235,176,156,236,131,157,237,149,180,235,143,132,32,39,116,114,117,101,39,235,165,188,32,235,176,152,237,153,152,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,112,97,114,97,109,46,105,115,83,99,114,111,108,108,32,67,104,101,99,107,115,32,119,104,101,116,104,101,114,32,115,99,114,111,108,108,105,110,103,32,104,97,115,32,111,99,99,117,114,114,101,100,32,97,102,116,101,114,32,116,104,101,32,97,112,112,101,110,100,40,41,44,32,112,114,101,112,101,110,100,40,41,44,32,46,46,46,44,32,101,116,99,32,109,101,116,104,111,100,32,105,115,32,99,97,108,108,101,100,32,60,107,111,62,97,112,112,101,110,100,44,32,112,114,101,110,100,32,235,147,177,32,237,152,184,236,182,156,32,237,155,132,32,236,138,164,237,129,172,235,161,164,236,157,180,32,236,131,157,234,178,188,235,138,148,236,167,128,32,237,153,149,236,157,184,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,112,97,114,97,109,46,115,99,114,111,108,108,80,111,115,32,67,117,114,114,101,110,116,32,115,99,114,111,108,108,32,112,111,115,105,116,105,111,110,32,118,97,108,117,101,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,102,105,110,105,116,101,71,114,105,100,32,99,111,110,116,97,105,110,101,114,32,101,108,101,109,101,110,116,46,32,60,107,111,62,105,110,102,105,110,105,116,101,71,114,105,100,32,236,187,168,237,133,140,236,157,180,235,132,136,32,236,151,152,235,166,172,235,168,188,237,138,184,32,234,184,176,236,164,128,236,157,152,32,237,152,132,236,158,172,32,236,138,164,237,129,172,235,161,164,32,236,156,132,236,185,152,234,176,146,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,112,97,114,97,109,46,111,114,103,83,99,114,111,108,108,80,111,115,32,67,117,114,114,101,110,116,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,115,99,114,111,108,108,32,60,107,111,62,237,152,132,236,158,172,32,236,138,164,237,129,172,235,161,164,32,236,156,132,236,185,152,234,176,146,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,112,97,114,97,109,46,115,105,122,101,32,84,104,101,32,115,105,122,101,32,111,102,32,99,111,110,116,97,105,110,101,114,32,101,108,101,109,101,110,116,32,60,107,111,62,236,187,168,237,133,140,236,157,180,235,132,136,32,236,151,152,235,166,172,235,168,188,237,138,184,236,157,152,32,237,129,172,234,184,176,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,112,97,114,97,109,46,105,115,84,114,117,115,116,101,100,32,82,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,97,110,32,101,118,101,110,116,32,119,97,115,32,103,101,110,101,114,97,116,101,100,32,98,121,32,116,104,101,32,117,115,101,114,32,97,99,116,105,111,110,44,32,111,114,32,102,97,108,115,101,32,105,102,32,105,116,32,119,97,115,32,99,97,117,115,101,100,32,98,121,32,97,32,115,99,114,105,112,116,32,111,114,32,65,80,73,32,99,97,108,108,32,60,107,111,62,236,130,172,236,154,169,236,158,144,236,157,152,32,236,149,161,236,133,152,236,151,144,32,236,157,152,237,149,180,32,236,157,180,235,178,164,237,138,184,234,176,128,32,235,176,156,236,131,157,237,149,152,236,152,128,236,156,188,235,169,180,32,116,114,117,101,44,32,236,138,164,237,129,172,235,166,189,237,138,184,235,130,152,32,65,80,73,237,152,184,236,182,156,236,151,144,32,236,157,152,237,149,180,32,235,176,156,236,131,157,237,149,152,236,152,128,236,157,132,32,234,178,189,236,154,176,236,151,144,235,138,148,32,102,97,108,115,101,235,165,188,32,235,176,152,237,153,152,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,97,114,97,109,46,101,110,100,76,111,97,100,105,110,103,32,69,110,100,32,108,111,97,100,105,110,103,32,97,102,116,101,114,32,115,116,97,114,116,76,111,97,100,105,110,103,40,41,32,102,111,114,32,97,112,112,101,110,100,47,112,114,101,112,101,110,100,32,108,111,97,100,105,110,103,32,100,97,116,97,46,32,60,107,111,62,235,141,176,236,157,180,237,132,176,32,235,161,156,235,148,169,236,157,132,32,236,156,132,237,149,180,32,97,112,112,101,110,100,47,112,114,101,112,101,110,100,32,115,116,97,114,116,76,111,97,100,105,110,103,40,41,32,237,152,184,236,182,156,32,236,157,180,237,155,132,32,235,161,156,235,148,169,236,157,132,32,235,129,157,235,130,184,235,139,164,46,60,47,107,111,62,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,112,97,114,97,109,46,101,110,100,76,111,97,100,105,110,103,46,117,115,101,114,83,116,121,108,101,32,84,104,101,32,99,117,115,116,111,109,32,115,116,121,108,101,32,116,111,32,97,112,112,108,121,32,116,111,32,116,104,105,115,32,108,111,97,100,105,110,103,32,98,97,114,32,102,111,114,32,115,116,97,114,116,46,32,60,107,111,62,32,235,161,156,235,148,169,236,157,180,32,235,129,157,235,130,160,32,235,149,140,32,235,161,156,235,148,169,32,235,176,148,236,151,144,32,236,160,129,236,154,169,235,144,160,32,236,130,172,236,154,169,236,158,144,32,236,138,164,237,131,128,236,157,188,32,60,47,107,111,62,92,110,32,32,32,32,32,42,47,92,110,92,110,92,110,32,32,32,32,116,104,105,115,46,116,114,105,103,103,101,114,40,92,34,108,97,121,111,117,116,67,111,109,112,108,101,116,101,92,34,44,32,123,92,110,32,32,32,32,32,32,116,97,114,103,101,116,58,32,105,116,101,109,115,46,99,111,110,99,97,116,40,41,44,92,110,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,33,33,105,115,65,112,112,101,110,100,44,92,110,32,32,32,32,32,32,105,115,84,114,117,115,116,101,100,58,32,105,115,84,114,117,115,116,101,100,44,92,110,32,32,32,32,32,32,102,114,111,109,67,97,99,104,101,58,32,102,114,111,109,67,97,99,104,101,44,92,110,32,32,32,32,32,32,105,115,76,97,121,111,117,116,58,32,105,115,76,97,121,111,117,116,44,92,110,32,32,32,32,32,32,105,115,83,99,114,111,108,108,58,32,118,105,101,119,83,105,122,101,32,60,32,119,97,116,99,104,101,114,46,103,101,116,67,111,110,116,97,105,110,101,114,79,102,102,115,101,116,40,41,32,43,32,115,105,122,101,44,92,110,32,32,32,32,32,32,115,99,114,111,108,108,80,111,115,58,32,115,99,114,111,108,108,80,111,115,44,92,110,32,32,32,32,32,32,111,114,103,83,99,114,111,108,108,80,111,115,58,32,119,97,116,99,104,101,114,46,103,101,116,79,114,103,83,99,114,111,108,108,80,111,115,40,41,44,92,110,32,32,32,32,32,32,115,105,122,101,58,32,115,105,122,101,44,92,110,32,32,32,32,32,32,101,110,100,76,111,97,100,105,110,103,58,32,102,117,110,99,116,105,111,110,32,40,117,115,101,114,83,116,121,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,101,110,100,76,111,97,100,105,110,103,40,117,115,101,114,83,116,121,108,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,115,99,114,111,108,108,40,115,99,114,111,108,108,80,111,115,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,102,105,114,115,116,76,97,121,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,110,100,101,114,101,114,32,61,32,116,104,105,115,46,95,114,101,110,100,101,114,101,114,59,92,110,32,32,32,32,118,97,114,32,105,110,102,105,110,105,116,101,32,61,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,77,97,110,97,103,101,114,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,59,92,110,32,32,32,32,118,97,114,32,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,59,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,116,111,65,114,114,97,121,40,114,101,110,100,101,114,101,114,46,99,111,110,116,97,105,110,101,114,46,99,104,105,108,100,114,101,110,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,101,108,46,99,108,97,115,115,78,97,109,101,46,105,110,100,101,120,79,102,40,73,71,78,79,82,69,95,67,76,65,83,83,78,65,77,69,41,32,61,61,61,32,45,49,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,104,97,115,67,104,105,108,100,114,101,110,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,62,32,48,59,92,110,92,110,32,32,32,32,105,102,32,40,105,116,101,109,77,97,110,97,103,101,114,46,115,105,122,101,40,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,110,111,32,118,105,115,105,98,108,101,32,105,116,101,109,115,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,67,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,92,34,105,116,101,109,115,92,34,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,44,32,105,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,46,101,108,32,61,32,99,104,105,108,100,114,101,110,91,105,93,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,110,111,32,105,116,101,109,115,44,32,110,111,32,118,105,115,105,98,108,101,32,105,116,101,109,115,44,32,110,111,32,101,108,101,109,101,110,116,115,92,110,32,32,32,32,32,32,105,102,32,40,33,104,97,115,67,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,101,110,100,101,114,101,114,46,103,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,110,100,101,114,101,114,46,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,40,48,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,113,117,101,115,116,65,112,112,101,110,100,40,123,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,125,32,47,47,32,110,111,32,105,116,101,109,115,44,32,110,111,32,118,105,115,105,98,108,101,32,105,116,101,109,115,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,112,114,101,118,71,114,111,117,112,75,101,121,95,49,32,61,32,92,34,92,34,32,43,32,116,104,105,115,46,95,103,101,116,82,97,110,100,111,109,75,101,121,40,41,59,92,110,92,110,32,32,32,32,32,32,99,104,105,108,100,114,101,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,103,114,111,117,112,75,101,121,32,61,32,101,108,46,103,101,116,65,116,116,114,105,98,117,116,101,40,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,32,43,32,92,34,103,114,111,117,112,107,101,121,92,34,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,103,114,111,117,112,75,101,121,32,33,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,103,114,111,117,112,75,101,121,32,61,32,112,114,101,118,71,114,111,117,112,75,101,121,95,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,112,114,101,118,71,114,111,117,112,75,101,121,95,49,32,61,32,103,114,111,117,112,75,101,121,59,92,110,32,32,32,32,32,32,32,32,105,116,101,109,77,97,110,97,103,101,114,46,105,110,115,101,114,116,40,123,92,110,32,32,32,32,32,32,32,32,32,32,103,114,111,117,112,75,101,121,58,32,103,114,111,117,112,75,101,121,44,92,110,32,32,32,32,32,32,32,32,32,32,101,108,58,32,101,108,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,47,47,32,84,104,101,32,99,117,114,114,101,110,116,108,121,32,100,105,115,112,108,97,121,101,100,32,101,108,101,109,101,110,116,115,32,97,114,101,32,118,105,115,105,98,108,101,32,103,114,111,117,112,115,46,92,110,92,110,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,115,32,61,32,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,71,114,111,117,112,115,40,41,59,92,110,32,32,32,32,105,110,102,105,110,105,116,101,46,115,101,116,67,117,114,115,111,114,40,92,34,115,116,97,114,116,92,34,44,32,48,41,59,92,110,32,32,32,32,105,110,102,105,110,105,116,101,46,115,101,116,67,117,114,115,111,114,40,92,34,101,110,100,92,34,44,32,103,114,111,117,112,115,46,108,101,110,103,116,104,32,45,32,49,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,112,111,115,116,76,97,121,111,117,116,40,123,92,110,32,32,32,32,32,32,103,114,111,117,112,115,58,32,103,114,111,117,112,115,44,92,110,32,32,32,32,32,32,104,97,115,67,104,105,108,100,114,101,110,58,32,104,97,115,67,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,102,114,111,109,67,97,99,104,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,105,115,65,112,112,101,110,100,58,32,116,114,117,101,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,103,101,116,82,97,110,100,111,109,75,101,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,105,116,101,109,77,97,110,97,103,101,114,32,61,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,103,114,111,117,112,75,101,121,32,61,32,110,101,119,32,68,97,116,101,40,41,46,103,101,116,84,105,109,101,40,41,32,43,32,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,114,97,110,100,111,109,40,41,32,42,32,49,48,48,48,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,71,114,111,117,112,66,121,75,101,121,40,103,114,111,117,112,75,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,103,114,111,117,112,75,101,121,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,114,101,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,115,116,97,116,117,115,32,61,32,123,92,110,32,32,32,32,32,32,112,114,111,99,101,115,115,105,110,103,83,116,97,116,117,115,58,32,73,68,76,69,44,92,110,32,32,32,32,32,32,108,111,97,100,105,110,103,83,105,122,101,58,32,48,44,92,110,32,32,32,32,32,32,108,111,97,100,105,110,103,83,116,121,108,101,58,32,123,125,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,86,101,114,115,105,111,110,32,105,110,102,111,32,115,116,114,105,110,103,92,110,32,32,32,42,32,64,107,111,32,235,178,132,236,160,132,236,160,149,235,179,180,32,235,172,184,236,158,144,236,151,180,92,110,32,32,32,42,32,64,110,97,109,101,32,86,69,82,83,73,79,78,92,110,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,42,32,64,116,121,112,101,32,123,83,116,114,105,110,103,125,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,86,69,82,83,73,79,78,59,32,32,47,47,32,101,120,41,32,51,46,51,46,51,92,110,32,32,32,42,32,64,109,101,109,98,101,114,111,102,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,73,110,102,105,110,105,116,101,71,114,105,100,46,86,69,82,83,73,79,78,32,61,32,92,34,51,46,57,46,48,92,34,59,92,110,32,32,114,101,116,117,114,110,32,73,110,102,105,110,105,116,101,71,114,105,100,59,92,110,125,40,95,101,103,106,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,118,97,114,32,83,84,65,82,84,32,61,32,65,76,73,71,78,46,83,84,65,82,84,44,92,110,32,32,32,32,67,69,78,84,69,82,32,61,32,65,76,73,71,78,46,67,69,78,84,69,82,44,92,110,32,32,32,32,69,78,68,32,61,32,65,76,73,71,78,46,69,78,68,44,92,110,32,32,32,32,74,85,83,84,73,70,89,32,61,32,65,76,73,71,78,46,74,85,83,84,73,70,89,59,92,110,47,42,42,92,110,32,42,32,64,99,108,97,115,115,100,101,115,99,32,84,104,101,32,71,114,105,100,76,97,121,111,117,116,32,105,115,32,97,32,108,97,121,111,117,116,32,116,104,97,116,32,115,116,97,99,107,115,32,99,97,114,100,115,32,119,105,116,104,32,116,104,101,32,115,97,109,101,32,119,105,100,116,104,32,97,115,32,97,32,115,116,97,99,107,32,111,102,32,98,114,105,99,107,115,46,32,65,100,106,117,115,116,32,116,104,101,32,119,105,100,116,104,32,111,102,32,97,108,108,32,105,109,97,103,101,115,32,116,111,32,116,104,101,32,115,97,109,101,32,115,105,122,101,44,32,102,105,110,100,32,116,104,101,32,108,111,119,101,115,116,32,104,101,105,103,104,116,32,99,111,108,117,109,110,44,32,97,110,100,32,105,110,115,101,114,116,32,97,32,110,101,119,32,99,97,114,100,46,92,110,32,42,32,64,107,111,32,71,114,105,100,76,97,121,111,117,116,235,138,148,32,235,178,189,235,143,140,236,157,132,32,236,140,147,236,149,132,32,236,152,172,235,166,176,32,235,170,168,236,150,145,236,178,152,235,159,188,32,235,143,153,236,157,188,237,149,156,32,235,132,136,235,185,132,235,165,188,32,234,176,128,236,167,132,32,236,185,180,235,147,156,235,165,188,32,236,140,147,235,138,148,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,180,235,139,164,46,32,235,170,168,235,147,160,32,236,157,180,235,175,184,236,167,128,236,157,152,32,235,132,136,235,185,132,235,165,188,32,235,143,153,236,157,188,237,149,156,32,237,129,172,234,184,176,235,161,156,32,236,161,176,236,160,149,237,149,152,234,179,160,44,32,234,176,128,236,158,165,32,235,134,146,236,157,180,234,176,128,32,235,130,174,236,157,128,32,236,151,180,236,157,132,32,236,176,190,236,149,132,32,236,131,136,235,161,156,236,154,180,32,236,157,180,235,175,184,236,167,128,235,165,188,32,236,130,189,236,158,133,237,149,156,235,139,164,46,32,235,148,176,235,157,188,236,132,156,32,235,176,176,236,185,152,235,144,156,32,236,185,180,235,147,156,32,236,130,172,236,157,180,236,151,144,32,235,185,136,32,234,179,181,234,176,132,236,157,180,32,236,131,157,234,184,176,236,167,128,235,138,148,32,236,149,138,236,167,128,235,167,140,32,235,176,176,236,185,152,235,144,156,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,152,32,236,149,132,235,158,152,236,170,189,236,157,128,32,236,154,184,237,137,129,235,182,136,237,137,129,237,149,180,236,167,132,235,139,164,46,92,110,32,42,32,64,99,108,97,115,115,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,71,114,105,100,76,97,121,111,117,116,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,112,116,105,111,110,115,93,32,84,104,101,32,111,112,116,105,111,110,32,111,98,106,101,99,116,32,111,102,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,71,114,105,100,76,97,121,111,117,116,32,109,111,100,117,108,101,32,60,107,111,62,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,71,114,105,100,76,97,121,111,117,116,32,235,170,168,235,147,136,236,157,152,32,236,152,181,236,133,152,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,91,111,112,116,105,111,110,115,46,109,97,114,103,105,110,61,48,93,32,77,97,114,103,105,110,32,117,115,101,100,32,116,111,32,99,114,101,97,116,101,32,115,112,97,99,101,32,97,114,111,117,110,100,32,105,116,101,109,115,32,60,107,111,62,236,149,132,236,157,180,237,133,156,235,147,164,32,236,130,172,236,157,180,236,157,152,32,234,179,181,234,176,132,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,61,102,97,108,115,101,93,32,68,105,114,101,99,116,105,111,110,32,111,102,32,116,104,101,32,115,99,114,111,108,108,32,109,111,118,101,109,101,110,116,32,40,102,97,108,115,101,58,32,118,101,114,116,105,99,97,108,44,32,116,114,117,101,58,32,104,111,114,105,122,111,110,116,97,108,41,32,60,107,111,62,236,138,164,237,129,172,235,161,164,32,236,157,180,235,143,153,32,235,176,169,237,150,165,32,40,102,97,108,115,101,58,32,236,132,184,235,161,156,235,176,169,237,150,165,44,32,116,114,117,101,58,32,234,176,128,235,161,156,235,176,169,237,150,165,41,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,97,108,105,103,110,61,83,84,65,82,84,93,32,65,108,105,103,110,32,111,102,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,105,116,101,109,115,32,40,83,84,65,82,84,44,32,67,69,78,84,69,82,44,32,69,78,68,44,32,74,85,83,84,73,70,89,41,32,60,107,111,62,236,149,132,236,157,180,237,133,156,235,147,164,236,157,152,32,236,156,132,236,185,152,236,157,152,32,236,160,149,235,160,172,32,40,83,84,65,82,84,44,32,67,69,78,84,69,82,44,32,69,78,68,44,32,74,85,83,84,73,70,89,41,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,105,116,101,109,83,105,122,101,61,48,93,32,84,104,101,32,115,105,122,101,32,111,102,32,116,104,101,32,105,116,101,109,115,46,32,73,102,32,105,116,32,105,115,32,48,44,32,105,116,32,105,115,32,99,97,108,99,117,108,97,116,101,100,32,97,115,32,116,104,101,32,115,105,122,101,32,111,102,32,116,104,101,32,102,105,114,115,116,32,105,116,101,109,32,105,110,32,105,116,101,109,115,46,32,60,107,111,62,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,130,172,236,157,180,236,166,136,46,32,235,167,140,236,149,189,32,236,149,132,236,157,180,237,133,156,32,236,130,172,236,157,180,236,166,136,234,176,128,32,48,236,157,180,235,169,180,44,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,152,32,236,178,171,235,178,136,236,167,184,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,130,172,236,157,180,236,166,136,235,161,156,32,234,179,132,236,130,176,236,157,180,32,235,144,156,235,139,164,46,32,60,47,107,111,62,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,96,96,96,92,110,60,115,99,114,105,112,116,62,92,110,118,97,114,32,105,103,32,61,32,110,101,119,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,40,92,34,35,103,114,105,100,92,34,46,32,123,92,110,32,32,104,111,114,105,122,111,110,116,97,108,58,32,116,114,117,101,44,92,110,125,41,59,92,110,92,110,105,103,46,115,101,116,76,97,121,111,117,116,40,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,71,114,105,100,76,97,121,111,117,116,44,32,123,92,110,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,97,108,105,103,110,58,32,92,34,115,116,97,114,116,92,34,44,92,110,32,32,105,116,101,109,83,105,122,101,58,32,50,48,48,92,110,125,41,59,92,110,92,110,47,47,32,111,114,92,110,92,110,118,97,114,32,108,97,121,111,117,116,32,61,32,110,101,119,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,71,114,105,100,76,97,121,111,117,116,40,123,92,110,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,97,108,105,103,110,58,32,92,34,99,101,110,116,101,114,92,34,44,92,110,32,32,105,116,101,109,83,105,122,101,58,32,50,48,48,44,92,110,32,32,104,111,114,105,122,111,110,116,97,108,58,32,116,114,117,101,44,92,110,125,41,59,92,110,92,110,60,47,115,99,114,105,112,116,62,92,110,96,96,96,92,110,32,42,42,47,92,110,92,110,118,97,114,32,71,114,105,100,76,97,121,111,117,116,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,71,114,105,100,76,97,121,111,117,116,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,97,115,115,105,103,110,79,112,116,105,111,110,115,40,123,92,110,32,32,32,32,32,32,109,97,114,103,105,110,58,32,48,44,92,110,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,97,108,105,103,110,58,32,83,84,65,82,84,44,92,110,32,32,32,32,32,32,105,116,101,109,83,105,122,101,58,32,48,92,110,32,32,32,32,125,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,116,104,105,115,46,95,115,105,122,101,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,95,99,111,108,117,109,110,83,105,122,101,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,95,115,116,121,108,101,32,61,32,103,101,116,83,116,121,108,101,78,97,109,101,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,41,59,92,110,32,32,125,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,100,100,115,32,105,116,101,109,115,32,97,116,32,116,104,101,32,98,111,116,116,111,109,32,111,102,32,97,32,111,117,116,108,105,110,101,46,92,110,32,32,32,42,32,64,107,111,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,132,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,149,132,235,158,152,236,151,144,32,236,182,148,234,176,128,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,71,114,105,100,76,97,121,111,117,116,35,97,112,112,101,110,100,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,105,116,101,109,115,32,65,114,114,97,121,32,111,102,32,105,116,101,109,115,32,116,111,32,98,101,32,108,97,121,111,117,116,101,100,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,237,149,160,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,111,117,116,108,105,110,101,61,91,93,93,32,65,114,114,97,121,32,111,102,32,111,117,116,108,105,110,101,32,112,111,105,110,116,115,32,116,111,32,98,101,32,114,101,102,101,114,101,110,99,101,32,112,111,105,110,116,115,32,60,107,111,62,234,184,176,236,164,128,236,160,144,236,157,180,32,235,144,152,235,138,148,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,160,144,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,32,76,97,121,111,117,116,101,100,32,105,116,101,109,115,32,97,110,100,32,111,117,116,108,105,110,101,32,111,102,32,115,116,97,114,116,32,97,110,100,32,101,110,100,32,60,107,111,62,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,180,32,235,144,156,32,236,149,132,236,157,180,237,133,156,234,179,188,32,236,139,156,236,158,145,234,179,188,32,235,129,157,236,157,152,32,236,149,132,236,155,131,235,157,188,236,157,184,236,157,180,32,235,139,180,234,184,180,32,236,160,149,235,179,180,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,112,114,101,112,101,110,100,40,105,116,101,109,115,44,32,91,49,48,48,44,32,50,48,48,44,32,51,48,48,44,32,52,48,48,93,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,71,114,105,100,76,97,121,111,117,116,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,97,112,112,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,99,97,99,104,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,116,114,117,101,44,32,99,97,99,104,101,41,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,100,100,115,32,105,116,101,109,115,32,97,116,32,116,104,101,32,116,111,112,32,111,102,32,97,32,111,117,116,108,105,110,101,46,92,110,32,32,32,42,32,64,107,111,32,236,149,132,236,157,180,237,133,156,236,157,132,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,156,132,236,151,144,32,236,182,148,234,176,128,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,71,114,105,100,76,97,121,111,117,116,35,112,114,101,112,101,110,100,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,105,116,101,109,115,32,65,114,114,97,121,32,111,102,32,105,116,101,109,115,32,116,111,32,98,101,32,108,97,121,111,117,116,101,100,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,237,149,160,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,111,117,116,108,105,110,101,61,91,93,93,32,65,114,114,97,121,32,111,102,32,111,117,116,108,105,110,101,32,112,111,105,110,116,115,32,116,111,32,98,101,32,114,101,102,101,114,101,110,99,101,32,112,111,105,110,116,115,32,60,107,111,62,234,184,176,236,164,128,236,160,144,236,157,180,32,235,144,152,235,138,148,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,160,144,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,32,76,97,121,111,117,116,101,100,32,105,116,101,109,115,32,97,110,100,32,111,117,116,108,105,110,101,32,111,102,32,115,116,97,114,116,32,97,110,100,32,101,110,100,32,60,107,111,62,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,180,32,235,144,156,32,236,149,132,236,157,180,237,133,156,234,179,188,32,236,139,156,236,158,145,234,179,188,32,235,129,157,236,157,152,32,236,149,132,236,155,131,235,157,188,236,157,184,236,157,180,32,235,139,180,234,184,180,32,236,160,149,235,179,180,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,112,114,101,112,101,110,100,40,105,116,101,109,115,44,32,91,49,48,48,44,32,50,48,48,44,32,51,48,48,44,32,52,48,48,93,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,112,114,101,112,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,99,97,99,104,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,102,97,108,115,101,44,32,99,97,99,104,101,41,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,100,100,115,32,105,116,101,109,115,32,111,102,32,103,114,111,117,112,115,32,97,116,32,116,104,101,32,98,111,116,116,111,109,32,111,102,32,97,32,111,117,116,108,105,110,101,46,92,110,32,32,32,42,32,64,107,111,32,234,183,184,235,163,185,235,147,164,236,157,152,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,132,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,149,132,235,158,152,236,151,144,32,236,182,148,234,176,128,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,71,114,105,100,76,97,121,111,117,116,35,108,97,121,111,117,116,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,103,114,111,117,112,115,32,65,114,114,97,121,32,111,102,32,103,114,111,117,112,115,32,116,111,32,98,101,32,108,97,121,111,117,116,101,100,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,237,149,160,32,234,183,184,235,163,185,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,111,117,116,108,105,110,101,32,65,114,114,97,121,32,111,102,32,111,117,116,108,105,110,101,32,112,111,105,110,116,115,32,116,111,32,98,101,32,114,101,102,101,114,101,110,99,101,32,112,111,105,110,116,115,32,60,107,111,62,234,184,176,236,164,128,236,160,144,236,157,180,32,235,144,152,235,138,148,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,160,144,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,71,114,105,100,76,97,121,111,117,116,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,108,97,121,111,117,116,40,103,114,111,117,112,115,44,32,91,49,48,48,44,32,50,48,48,44,32,51,48,48,44,32,52,48,48,93,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,108,97,121,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,115,44,32,111,117,116,108,105,110,101,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,102,32,40,103,114,111,117,112,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,115,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,111,117,116,108,105,110,101,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,102,105,114,115,116,73,116,101,109,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,32,38,38,32,103,114,111,117,112,115,91,48,93,46,105,116,101,109,115,46,108,101,110,103,116,104,32,38,38,32,103,114,111,117,112,115,91,48,93,46,105,116,101,109,115,91,48,93,59,92,110,32,32,32,32,116,104,105,115,46,99,104,101,99,107,67,111,108,117,109,110,40,102,105,114,115,116,73,116,101,109,41,59,32,47,47,32,105,102,32,111,117,116,108,105,110,101,115,39,32,108,101,110,103,116,104,32,97,110,100,32,99,111,108,117,109,110,115,39,32,108,101,110,103,116,104,32,97,114,101,32,110,111,119,32,115,97,109,101,44,32,114,101,45,99,97,99,117,108,97,116,101,32,111,117,116,108,105,110,101,115,46,92,110,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,79,117,116,108,105,110,101,59,92,110,92,110,32,32,32,32,105,102,32,40,111,117,116,108,105,110,101,46,108,101,110,103,116,104,32,33,61,61,32,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,111,115,32,61,32,111,117,116,108,105,110,101,46,108,101,110,103,116,104,32,61,61,61,32,48,32,63,32,48,32,58,32,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,77,97,116,104,44,32,111,117,116,108,105,110,101,41,59,32,47,47,32,114,101,45,108,97,121,111,117,116,32,105,116,101,109,115,46,92,110,92,110,32,32,32,32,32,32,115,116,97,114,116,79,117,116,108,105,110,101,32,61,32,102,105,108,108,40,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,41,44,32,112,111,115,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,79,117,116,108,105,110,101,32,61,32,111,117,116,108,105,110,101,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,103,114,111,117,112,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,103,114,111,117,112,46,105,116,101,109,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,95,116,104,105,115,46,95,108,97,121,111,117,116,40,105,116,101,109,115,44,32,115,116,97,114,116,79,117,116,108,105,110,101,44,32,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,103,114,111,117,112,46,111,117,116,108,105,110,101,115,32,61,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,115,116,97,114,116,79,117,116,108,105,110,101,32,61,32,114,101,115,117,108,116,46,101,110,100,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,83,101,116,32,116,104,101,32,118,105,101,119,112,111,114,116,32,115,105,122,101,32,111,102,32,116,104,101,32,108,97,121,111,117,116,46,92,110,32,32,32,42,32,64,107,111,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,152,32,234,176,128,236,139,156,32,236,130,172,236,157,180,236,166,136,235,165,188,32,236,132,164,236,160,149,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,71,114,105,100,76,97,121,111,117,116,35,115,101,116,83,105,122,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,115,105,122,101,32,84,104,101,32,118,105,101,119,112,111,114,116,32,115,105,122,101,32,111,102,32,99,111,110,116,97,105,110,101,114,32,97,114,101,97,32,119,104,101,114,101,32,105,116,101,109,115,32,97,114,101,32,97,100,100,101,100,32,116,111,32,97,32,108,97,121,111,117,116,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,236,151,144,32,236,149,132,236,157,180,237,133,156,236,157,132,32,236,182,148,234,176,128,237,149,152,235,138,148,32,236,187,168,237,133,140,236,157,180,235,132,136,32,236,152,129,236,151,173,236,157,152,32,234,176,128,236,139,156,32,236,130,172,236,157,180,236,166,136,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,71,114,105,100,76,97,121,111,117,116,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,115,101,116,83,105,122,101,40,56,48,48,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,115,105,122,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,115,105,122,101,32,61,32,115,105,122,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,104,101,99,107,67,111,108,117,109,110,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,105,116,101,109,83,105,122,101,32,61,32,95,97,46,105,116,101,109,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,109,97,114,103,105,110,32,61,32,95,97,46,109,97,114,103,105,110,44,92,110,32,32,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,32,61,32,95,97,46,104,111,114,105,122,111,110,116,97,108,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,78,97,109,101,32,61,32,104,111,114,105,122,111,110,116,97,108,32,63,32,92,34,104,101,105,103,104,116,92,34,32,58,32,92,34,119,105,100,116,104,92,34,59,92,110,32,32,32,32,118,97,114,32,99,111,108,117,109,110,83,105,122,101,32,61,32,77,97,116,104,46,102,108,111,111,114,40,105,116,101,109,83,105,122,101,32,124,124,32,105,116,101,109,32,38,38,32,105,116,101,109,46,115,105,122,101,91,115,105,122,101,78,97,109,101,93,32,124,124,32,48,41,32,124,124,32,48,59,92,110,32,32,32,32,116,104,105,115,46,95,99,111,108,117,109,110,83,105,122,101,32,61,32,99,111,108,117,109,110,83,105,122,101,59,92,110,92,110,32,32,32,32,105,102,32,40,33,99,111,108,117,109,110,83,105,122,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,32,61,32,49,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,32,61,32,77,97,116,104,46,109,97,120,40,77,97,116,104,46,102,108,111,111,114,40,40,116,104,105,115,46,95,115,105,122,101,32,43,32,109,97,114,103,105,110,41,32,47,32,40,99,111,108,117,109,110,83,105,122,101,32,43,32,109,97,114,103,105,110,41,41,44,32,49,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,108,97,121,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,59,92,110,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,105,116,101,109,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,109,97,114,103,105,110,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,114,103,105,110,59,92,110,32,32,32,32,118,97,114,32,97,108,105,103,110,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,97,108,105,103,110,59,92,110,32,32,32,32,118,97,114,32,115,116,121,108,101,32,61,32,116,104,105,115,46,95,115,116,121,108,101,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,49,78,97,109,101,32,61,32,115,116,121,108,101,46,115,105,122,101,49,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,50,78,97,109,101,32,61,32,115,116,121,108,101,46,115,105,122,101,50,59,92,110,32,32,32,32,118,97,114,32,112,111,115,49,78,97,109,101,32,61,32,115,116,121,108,101,46,115,116,97,114,116,80,111,115,49,59,92,110,32,32,32,32,118,97,114,32,112,111,115,50,78,97,109,101,32,61,32,115,116,121,108,101,46,115,116,97,114,116,80,111,115,50,59,92,110,32,32,32,32,118,97,114,32,99,111,108,117,109,110,83,105,122,101,32,61,32,116,104,105,115,46,95,99,111,108,117,109,110,83,105,122,101,59,92,110,32,32,32,32,118,97,114,32,99,111,108,117,109,110,76,101,110,103,116,104,32,61,32,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,116,104,105,115,46,95,115,105,122,101,59,92,110,32,32,32,32,118,97,114,32,118,105,101,119,68,105,115,116,32,61,32,115,105,122,101,32,45,32,40,99,111,108,117,109,110,83,105,122,101,32,43,32,109,97,114,103,105,110,41,32,42,32,99,111,108,117,109,110,76,101,110,103,116,104,32,43,32,109,97,114,103,105,110,59,92,110,32,32,32,32,118,97,114,32,112,111,105,110,116,67,97,99,117,108,97,116,101,78,97,109,101,32,61,32,105,115,65,112,112,101,110,100,32,63,32,92,34,109,105,110,92,34,32,58,32,92,34,109,97,120,92,34,59,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,67,97,99,117,108,97,116,101,78,97,109,101,32,61,32,105,115,65,112,112,101,110,100,32,63,32,92,34,105,110,100,101,120,79,102,92,34,32,58,32,92,34,108,97,115,116,73,110,100,101,120,79,102,92,34,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,79,117,116,108,105,110,101,32,61,32,111,117,116,108,105,110,101,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,118,97,114,32,101,110,100,79,117,116,108,105,110,101,32,61,32,111,117,116,108,105,110,101,46,115,108,105,99,101,40,41,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,111,105,110,116,32,61,32,77,97,116,104,91,112,111,105,110,116,67,97,99,117,108,97,116,101,78,97,109,101,93,46,97,112,112,108,121,40,77,97,116,104,44,32,101,110,100,79,117,116,108,105,110,101,41,32,124,124,32,48,59,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,101,110,100,79,117,116,108,105,110,101,91,105,110,100,101,120,67,97,99,117,108,97,116,101,78,97,109,101,93,40,112,111,105,110,116,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,105,116,101,109,115,91,105,115,65,112,112,101,110,100,32,63,32,105,32,58,32,108,101,110,103,116,104,32,45,32,49,32,45,32,105,93,59,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,83,105,122,101,32,61,32,105,116,101,109,46,115,105,122,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,105,116,101,109,83,105,122,101,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,105,122,101,49,32,61,32,105,116,101,109,83,105,122,101,91,115,105,122,101,49,78,97,109,101,93,59,92,110,32,32,32,32,32,32,118,97,114,32,115,105,122,101,50,32,61,32,105,116,101,109,83,105,122,101,91,115,105,122,101,50,78,97,109,101,93,59,92,110,32,32,32,32,32,32,118,97,114,32,112,111,115,49,32,61,32,105,115,65,112,112,101,110,100,32,63,32,112,111,105,110,116,32,58,32,112,111,105,110,116,32,45,32,109,97,114,103,105,110,32,45,32,115,105,122,101,49,59,92,110,32,32,32,32,32,32,118,97,114,32,101,110,100,80,111,115,49,32,61,32,112,111,115,49,32,43,32,115,105,122,101,49,32,43,32,109,97,114,103,105,110,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,61,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,112,111,115,50,32,61,32,40,99,111,108,117,109,110,83,105,122,101,32,43,32,109,97,114,103,105,110,41,32,42,32,105,110,100,101,120,59,32,47,47,32,65,76,73,71,78,92,110,92,110,32,32,32,32,32,32,105,102,32,40,97,108,105,103,110,32,61,61,61,32,67,69,78,84,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,112,111,115,50,32,43,61,32,118,105,101,119,68,105,115,116,32,47,32,50,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,97,108,105,103,110,32,61,61,61,32,69,78,68,41,32,123,92,110,32,32,32,32,32,32,32,32,112,111,115,50,32,43,61,32,118,105,101,119,68,105,115,116,32,43,32,99,111,108,117,109,110,83,105,122,101,32,45,32,115,105,122,101,50,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,97,108,105,103,110,32,61,61,61,32,74,85,83,84,73,70,89,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,111,108,117,109,110,76,101,110,103,116,104,32,60,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,111,115,50,32,43,61,32,118,105,101,119,68,105,115,116,32,47,32,50,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,111,115,50,32,61,32,40,115,105,122,101,32,45,32,99,111,108,117,109,110,83,105,122,101,41,32,47,32,40,99,111,108,117,109,110,76,101,110,103,116,104,32,45,32,49,41,32,42,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,47,47,32,116,101,116,114,105,115,92,110,92,110,92,110,32,32,32,32,32,32,105,116,101,109,46,114,101,99,116,32,61,32,40,95,97,32,61,32,123,125,44,32,95,97,91,112,111,115,49,78,97,109,101,93,32,61,32,112,111,115,49,44,32,95,97,91,112,111,115,50,78,97,109,101,93,32,61,32,112,111,115,50,44,32,95,97,41,59,92,110,32,32,32,32,32,32,105,116,101,109,46,99,111,108,117,109,110,32,61,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,101,110,100,79,117,116,108,105,110,101,91,105,110,100,101,120,93,32,61,32,105,115,65,112,112,101,110,100,32,63,32,101,110,100,80,111,115,49,32,58,32,112,111,115,49,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,32,32,105,116,101,109,115,46,115,111,114,116,40,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,49,112,111,115,49,32,61,32,97,46,114,101,99,116,91,112,111,115,49,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,49,112,111,115,50,32,61,32,97,46,114,101,99,116,91,112,111,115,50,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,50,112,111,115,49,32,61,32,98,46,114,101,99,116,91,112,111,115,49,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,50,112,111,115,50,32,61,32,98,46,114,101,99,116,91,112,111,115,50,78,97,109,101,93,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,116,101,109,49,112,111,115,49,32,45,32,105,116,101,109,50,112,111,115,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,49,112,111,115,49,32,45,32,105,116,101,109,50,112,111,115,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,49,112,111,115,50,32,45,32,105,116,101,109,50,112,111,115,50,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,47,47,32,105,102,32,97,112,112,101,110,100,32,105,116,101,109,115,44,32,115,116,97,114,116,79,117,116,108,105,110,101,32,105,115,32,108,111,119,44,32,101,110,100,79,117,116,108,105,110,101,32,105,115,32,104,105,103,104,92,110,32,32,32,32,47,47,32,105,102,32,112,114,101,112,101,110,100,32,105,116,101,109,115,44,32,115,116,97,114,116,79,117,116,108,105,110,101,32,105,115,32,104,105,103,104,44,32,101,110,100,79,117,116,108,105,110,101,32,105,115,32,108,111,119,92,110,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,58,32,105,115,65,112,112,101,110,100,32,63,32,115,116,97,114,116,79,117,116,108,105,110,101,32,58,32,101,110,100,79,117,116,108,105,110,101,44,92,110,32,32,32,32,32,32,101,110,100,58,32,105,115,65,112,112,101,110,100,32,63,32,101,110,100,79,117,116,108,105,110,101,32,58,32,115,116,97,114,116,79,117,116,108,105,110,101,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,105,110,115,101,114,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,44,32,99,97,99,104,101,41,32,123,92,110,32,32,32,32,105,102,32,40,105,116,101,109,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,105,116,101,109,115,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,111,117,116,108,105,110,101,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,99,108,111,110,101,32,61,32,99,97,99,104,101,32,63,32,105,116,101,109,115,32,58,32,99,108,111,110,101,73,116,101,109,115,40,105,116,101,109,115,41,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,79,117,116,108,105,110,101,32,61,32,111,117,116,108,105,110,101,59,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,104,101,99,107,67,111,108,117,109,110,40,105,116,101,109,115,91,48,93,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,111,117,116,108,105,110,101,46,108,101,110,103,116,104,32,33,61,61,32,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,79,117,116,108,105,110,101,32,61,32,102,105,108,108,40,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,41,44,32,111,117,116,108,105,110,101,46,108,101,110,103,116,104,32,63,32,77,97,116,104,91,105,115,65,112,112,101,110,100,32,63,32,92,34,109,105,110,92,34,32,58,32,92,34,109,97,120,92,34,93,46,97,112,112,108,121,40,77,97,116,104,44,32,111,117,116,108,105,110,101,41,32,124,124,32,48,32,58,32,48,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,116,104,105,115,46,95,108,97,121,111,117,116,40,99,108,111,110,101,44,32,115,116,97,114,116,79,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,105,116,101,109,115,58,32,99,108,111,110,101,44,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,115,58,32,114,101,115,117,108,116,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,71,114,105,100,76,97,121,111,117,116,59,92,110,125,40,41,59,92,110,92,110,47,42,92,110,70,114,97,109,101,92,110,91,92,110,91,49,44,32,49,44,32,49,44,32,49,44,32,49,93,44,92,110,91,48,44,32,48,44,32,50,44,32,50,44,32,50,93,44,92,110,91,48,44,32,48,44,32,50,44,32,50,44,32,50,93,44,92,110,91,51,44,32,52,44,32,53,44,32,53,44,32,53,93,44,92,110,93,92,110,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,100,105,115,97,98,108,101,70,114,97,109,101,40,102,114,97,109,101,44,32,116,121,112,101,44,32,116,111,112,44,32,108,101,102,116,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,116,111,112,59,32,105,32,60,32,116,111,112,32,43,32,104,101,105,103,104,116,59,32,43,43,105,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,108,101,102,116,59,32,106,32,60,32,108,101,102,116,32,43,32,119,105,100,116,104,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,33,61,61,32,102,114,97,109,101,91,105,93,91,106,93,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,102,114,97,109,101,91,105,93,91,106,93,32,61,32,48,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,97,114,99,104,83,104,97,112,101,73,110,70,114,97,109,101,40,102,114,97,109,101,44,32,116,121,112,101,44,32,116,111,112,44,32,108,101,102,116,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,41,32,123,92,110,32,32,118,97,114,32,115,105,122,101,32,61,32,123,92,110,32,32,32,32,108,101,102,116,58,32,108,101,102,116,44,92,110,32,32,32,32,116,111,112,58,32,116,111,112,44,92,110,32,32,32,32,116,121,112,101,58,32,116,121,112,101,44,92,110,32,32,32,32,119,105,100,116,104,58,32,49,44,92,110,32,32,32,32,104,101,105,103,104,116,58,32,49,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,108,101,102,116,59,32,105,32,60,32,119,105,100,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,102,114,97,109,101,91,116,111,112,93,91,105,93,32,61,61,61,32,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,115,105,122,101,46,119,105,100,116,104,32,61,32,105,32,45,32,108,101,102,116,32,43,32,49,59,92,110,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,98,114,101,97,107,59,92,110,32,32,125,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,116,111,112,59,32,105,32,60,32,104,101,105,103,104,116,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,102,114,97,109,101,91,105,93,91,108,101,102,116,93,32,61,61,61,32,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,115,105,122,101,46,104,101,105,103,104,116,32,61,32,105,32,45,32,116,111,112,32,43,32,49,59,92,110,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,98,114,101,97,107,59,92,110,32,32,125,32,47,47,32,65,102,116,101,114,32,102,105,110,100,105,110,103,32,116,104,101,32,115,104,97,112,101,44,32,105,116,32,119,105,108,108,32,110,111,116,32,102,105,110,100,32,97,103,97,105,110,46,92,110,92,110,92,110,32,32,100,105,115,97,98,108,101,70,114,97,109,101,40,102,114,97,109,101,44,32,116,121,112,101,44,32,116,111,112,44,32,108,101,102,116,44,32,115,105,122,101,46,119,105,100,116,104,44,32,115,105,122,101,46,104,101,105,103,104,116,41,59,92,110,32,32,114,101,116,117,114,110,32,115,105,122,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,83,104,97,112,101,115,40,102,114,97,109,101,41,32,123,92,110,32,32,118,97,114,32,104,101,105,103,104,116,32,61,32,102,114,97,109,101,46,108,101,110,103,116,104,59,92,110,32,32,118,97,114,32,119,105,100,116,104,32,61,32,104,101,105,103,104,116,32,63,32,102,114,97,109,101,91,48,93,46,108,101,110,103,116,104,32,58,32,48,59,92,110,32,32,118,97,114,32,115,104,97,112,101,115,32,61,32,91,93,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,104,101,105,103,104,116,59,32,43,43,105,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,59,32,106,32,60,32,119,105,100,116,104,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,102,114,97,109,101,91,105,93,91,106,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,125,32,47,47,32,83,101,112,97,114,97,116,101,32,115,104,97,112,101,115,32,119,105,116,104,32,111,116,104,101,114,32,110,117,109,98,101,114,115,46,92,110,92,110,92,110,32,32,32,32,32,32,115,104,97,112,101,115,46,112,117,115,104,40,115,101,97,114,99,104,83,104,97,112,101,73,110,70,114,97,109,101,40,102,114,97,109,101,44,32,116,121,112,101,44,32,105,44,32,106,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,115,104,97,112,101,115,46,115,111,114,116,40,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,46,116,121,112,101,32,60,32,98,46,116,121,112,101,32,63,32,45,49,32,58,32,49,59,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,115,104,97,112,101,115,58,32,115,104,97,112,101,115,44,92,110,32,32,32,32,119,105,100,116,104,58,32,119,105,100,116,104,44,92,110,32,32,32,32,104,101,105,103,104,116,58,32,104,101,105,103,104,116,92,110,32,32,125,59,92,110,125,92,110,47,42,42,92,110,32,42,32,64,99,108,97,115,115,100,101,115,99,32,70,114,97,109,101,76,97,121,111,117,116,32,105,115,32,97,32,108,97,121,111,117,116,32,116,104,97,116,32,97,108,108,111,119,115,32,121,111,117,32,116,111,32,112,108,97,99,101,32,99,97,114,100,115,32,105,110,32,97,32,103,105,118,101,110,32,102,114,97,109,101,46,32,73,116,32,105,115,32,97,32,108,97,121,111,117,116,32,116,104,97,116,32,99,111,114,114,101,115,112,111,110,100,115,32,116,111,32,97,32,108,101,118,101,108,32,105,110,116,101,114,109,101,100,105,97,116,101,32,98,101,116,119,101,101,110,32,116,104,101,32,112,108,97,99,101,109,101,110,116,32,111,102,32,116,104,101,32,105,109,97,103,101,32,100,105,114,101,99,116,108,121,32,98,121,32,116,104,101,32,100,101,115,105,103,110,101,114,32,97,110,100,32,116,104,101,32,108,97,121,111,117,116,32,117,115,105,110,103,32,116,104,101,32,97,108,103,111,114,105,116,104,109,46,92,110,32,42,32,64,107,111,32,70,114,97,109,101,76,97,121,111,117,116,236,157,128,32,236,163,188,236,150,180,236,167,132,32,237,148,132,235,160,136,236,158,132,236,151,144,32,235,167,158,236,182,176,32,236,185,180,235,147,156,235,165,188,32,235,176,176,236,185,152,237,149,152,235,138,148,32,235,160,136,236,157,180,236,149,132,236,155,131,236,158,133,235,139,136,235,139,164,46,32,235,148,148,236,158,144,236,157,180,235,132,136,234,176,128,32,236,167,129,236,160,145,32,236,157,180,235,175,184,236,167,128,235,165,188,32,235,176,176,236,185,152,237,149,152,235,138,148,32,234,178,131,234,179,188,32,236,149,140,234,179,160,235,166,172,236,166,152,236,157,132,32,236,130,172,236,154,169,237,149,156,32,235,176,176,236,185,152,236,157,152,32,236,164,145,234,176,132,32,236,160,149,235,143,132,32,236,136,152,236,164,128,236,151,144,32,237,149,180,235,139,185,237,149,152,235,138,148,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,180,235,139,164,46,92,110,32,42,32,64,99,108,97,115,115,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,70,114,97,109,101,76,97,121,111,117,116,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,112,116,105,111,110,115,93,32,84,104,101,32,111,112,116,105,111,110,32,111,98,106,101,99,116,32,111,102,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,70,114,97,109,101,76,97,121,111,117,116,32,109,111,100,117,108,101,32,60,107,111,62,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,70,114,97,109,101,76,97,121,111,117,116,32,235,170,168,235,147,136,236,157,152,32,236,152,181,236,133,152,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,91,111,112,116,105,111,110,115,46,109,97,114,103,105,110,61,48,93,32,77,97,114,103,105,110,32,117,115,101,100,32,116,111,32,99,114,101,97,116,101,32,115,112,97,99,101,32,97,114,111,117,110,100,32,105,116,101,109,115,32,60,107,111,62,236,149,132,236,157,180,237,133,156,235,147,164,32,236,130,172,236,157,180,236,157,152,32,234,179,181,234,176,132,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,61,102,97,108,115,101,93,32,68,105,114,101,99,116,105,111,110,32,111,102,32,116,104,101,32,115,99,114,111,108,108,32,109,111,118,101,109,101,110,116,32,40,102,97,108,115,101,58,32,118,101,114,116,105,99,97,108,44,32,116,114,117,101,58,32,104,111,114,105,122,111,110,116,97,108,41,32,60,107,111,62,236,138,164,237,129,172,235,161,164,32,236,157,180,235,143,153,32,235,176,169,237,150,165,32,40,102,97,108,115,101,58,32,236,132,184,235,161,156,235,176,169,237,150,165,44,32,116,114,117,101,58,32,234,176,128,235,161,156,235,176,169,237,150,165,41,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,105,116,101,109,83,105,122,101,61,48,93,32,84,104,101,32,115,105,122,101,32,111,102,32,116,104,101,32,105,116,101,109,115,46,32,73,102,32,105,116,32,105,115,32,48,44,32,105,116,32,105,115,32,99,97,108,99,117,108,97,116,101,100,32,97,115,32,116,104,101,32,115,105,122,101,32,111,102,32,116,104,101,32,102,105,114,115,116,32,105,116,101,109,32,105,110,32,105,116,101,109,115,46,32,60,107,111,62,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,130,172,236,157,180,236,166,136,46,32,235,167,140,236,149,189,32,236,149,132,236,157,180,237,133,156,32,236,130,172,236,157,180,236,166,136,234,176,128,32,48,236,157,180,235,169,180,44,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,152,32,236,178,171,235,178,136,236,167,184,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,130,172,236,157,180,236,166,136,235,161,156,32,234,179,132,236,130,176,236,157,180,32,235,144,156,235,139,164,46,32,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,102,114,97,109,101,61,91,93,93,32,84,104,101,32,115,105,122,101,32,111,102,32,116,104,101,32,105,116,101,109,115,46,32,73,102,32,105,116,32,105,115,32,48,44,32,105,116,32,105,115,32,99,97,108,99,117,108,97,116,101,100,32,97,115,32,116,104,101,32,115,105,122,101,32,111,102,32,116,104,101,32,102,105,114,115,116,32,105,116,101,109,32,105,110,32,105,116,101,109,115,46,32,60,107,111,62,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,130,172,236,157,180,236,166,136,46,32,235,167,140,236,149,189,32,236,149,132,236,157,180,237,133,156,32,236,130,172,236,157,180,236,166,136,234,176,128,32,48,236,157,180,235,169,180,44,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,152,32,236,178,171,235,178,136,236,167,184,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,130,172,236,157,180,236,166,136,235,161,156,32,234,179,132,236,130,176,236,157,180,32,235,144,156,235,139,164,46,32,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,102,114,97,109,101,70,105,108,108,61,116,114,117,101,93,32,77,97,107,101,32,115,117,114,101,32,116,104,97,116,32,116,104,101,32,102,114,97,109,101,32,99,97,110,32,98,101,32,97,116,116,97,99,104,101,100,32,97,102,116,101,114,32,116,104,101,32,112,114,101,118,105,111,117,115,32,102,114,97,109,101,46,32,60,107,111,62,32,235,139,164,236,157,140,32,237,148,132,235,160,136,236,158,132,236,157,180,32,236,160,132,32,237,148,132,235,160,136,236,158,132,236,151,144,32,236,157,180,236,150,180,32,235,182,153,236,157,188,32,236,136,152,32,236,158,136,235,138,148,236,167,128,32,236,158,136,235,138,148,236,167,128,32,237,153,149,236,157,184,237,149,156,235,139,164,46,32,60,47,107,111,62,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,96,96,96,92,110,60,115,99,114,105,112,116,62,92,110,118,97,114,32,105,103,32,61,32,110,101,119,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,40,92,34,35,103,114,105,100,92,34,46,32,123,92,110,32,32,104,111,114,105,122,111,110,116,97,108,58,32,116,114,117,101,44,92,110,125,41,59,92,110,92,110,105,103,46,115,101,116,76,97,121,111,117,116,40,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,70,114,97,109,101,76,97,121,111,117,116,44,32,123,92,110,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,105,116,101,109,83,105,122,101,58,32,50,48,48,44,92,110,32,32,102,114,97,109,101,58,32,91,92,110,32,32,32,32,91,49,44,32,49,44,32,49,44,32,49,44,32,49,93,44,92,110,32,32,32,32,91,48,44,32,48,44,32,50,44,32,50,44,32,50,93,44,92,110,32,32,32,32,91,48,44,32,48,44,32,50,44,32,50,44,32,50,93,44,92,110,32,32,32,32,91,51,44,32,52,44,32,53,44,32,53,44,32,53,93,44,92,110,32,32,93,44,92,110,125,41,59,92,110,92,110,47,47,32,111,114,92,110,92,110,118,97,114,32,108,97,121,111,117,116,32,61,32,110,101,119,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,70,114,97,109,101,76,97,121,111,117,116,40,123,92,110,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,105,116,101,109,83,105,122,101,58,32,50,48,48,44,92,110,32,32,104,111,114,105,122,111,110,116,97,108,58,32,116,114,117,101,44,92,110,32,32,102,114,97,109,101,58,32,91,92,110,32,32,32,32,91,49,44,32,49,44,32,49,44,32,49,44,32,49,93,44,92,110,32,32,32,32,91,48,44,32,48,44,32,50,44,32,50,44,32,50,93,44,92,110,32,32,32,32,91,48,44,32,48,44,32,50,44,32,50,44,32,50,93,44,92,110,32,32,32,32,91,51,44,32,52,44,32,53,44,32,53,44,32,53,93,44,92,110,32,32,93,44,92,110,125,41,59,92,110,92,110,60,47,115,99,114,105,112,116,62,92,110,96,96,96,92,110,32,42,42,47,92,110,92,110,92,110,118,97,114,32,70,114,97,109,101,76,97,121,111,117,116,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,70,114,97,109,101,76,97,121,111,117,116,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,97,115,115,105,103,110,79,112,116,105,111,110,115,40,123,92,110,32,32,32,32,32,32,109,97,114,103,105,110,58,32,48,44,92,110,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,105,116,101,109,83,105,122,101,58,32,48,44,92,110,32,32,32,32,32,32,102,114,97,109,101,58,32,91,93,44,92,110,32,32,32,32,32,32,102,114,97,109,101,70,105,108,108,58,32,116,114,117,101,92,110,32,32,32,32,125,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,118,97,114,32,102,114,97,109,101,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,97,109,101,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,114,111,119,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,111,119,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,116,104,105,115,46,95,105,116,101,109,83,105,122,101,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,105,116,101,109,83,105,122,101,32,124,124,32,48,59,32,47,47,32,100,105,118,105,100,101,32,102,114,97,109,101,32,105,110,116,111,32,115,104,97,112,101,115,46,92,110,92,110,32,32,32,32,116,104,105,115,46,95,115,104,97,112,101,115,32,61,32,103,101,116,83,104,97,112,101,115,40,102,114,97,109,101,41,59,92,110,32,32,32,32,116,104,105,115,46,95,115,105,122,101,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,95,115,116,121,108,101,32,61,32,103,101,116,83,116,121,108,101,78,97,109,101,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,41,59,92,110,32,32,125,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,100,100,115,32,105,116,101,109,115,32,111,102,32,103,114,111,117,112,115,32,97,116,32,116,104,101,32,98,111,116,116,111,109,32,111,102,32,97,32,111,117,116,108,105,110,101,46,92,110,32,32,32,42,32,64,107,111,32,234,183,184,235,163,185,235,147,164,236,157,152,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,132,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,149,132,235,158,152,236,151,144,32,236,182,148,234,176,128,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,70,114,97,109,101,76,97,121,111,117,116,35,108,97,121,111,117,116,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,103,114,111,117,112,115,32,65,114,114,97,121,32,111,102,32,103,114,111,117,112,115,32,116,111,32,98,101,32,108,97,121,111,117,116,101,100,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,237,149,160,32,234,183,184,235,163,185,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,111,117,116,108,105,110,101,32,65,114,114,97,121,32,111,102,32,111,117,116,108,105,110,101,32,112,111,105,110,116,115,32,116,111,32,98,101,32,114,101,102,101,114,101,110,99,101,32,112,111,105,110,116,115,32,60,107,111,62,234,184,176,236,164,128,236,160,144,236,157,180,32,235,144,152,235,138,148,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,160,144,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,70,114,97,109,101,76,97,121,111,117,116,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,108,97,121,111,117,116,40,103,114,111,117,112,115,44,32,91,49,48,48,44,32,50,48,48,44,32,51,48,48,44,32,52,48,48,93,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,70,114,97,109,101,76,97,121,111,117,116,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,108,97,121,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,115,44,32,111,117,116,108,105,110,101,41,32,123,92,110,32,32,32,32,105,102,32,40,103,114,111,117,112,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,115,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,111,117,116,108,105,110,101,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,112,111,105,110,116,32,61,32,111,117,116,108,105,110,101,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,105,93,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,111,117,116,108,105,110,101,115,32,61,32,116,104,105,115,46,95,108,97,121,111,117,116,40,103,114,111,117,112,46,105,116,101,109,115,44,32,112,111,105,110,116,44,32,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,103,114,111,117,112,46,111,117,116,108,105,110,101,115,32,61,32,111,117,116,108,105,110,101,115,59,92,110,32,32,32,32,32,32,112,111,105,110,116,32,61,32,111,117,116,108,105,110,101,115,46,101,110,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,83,101,116,32,116,104,101,32,118,105,101,119,112,111,114,116,32,115,105,122,101,32,111,102,32,116,104,101,32,108,97,121,111,117,116,46,92,110,32,32,32,42,32,64,107,111,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,152,32,234,176,128,236,139,156,32,236,130,172,236,157,180,236,166,136,235,165,188,32,236,132,164,236,160,149,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,70,114,97,109,101,76,97,121,111,117,116,35,115,101,116,83,105,122,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,115,105,122,101,32,84,104,101,32,118,105,101,119,112,111,114,116,32,115,105,122,101,32,111,102,32,99,111,110,116,97,105,110,101,114,32,97,114,101,97,32,119,104,101,114,101,32,105,116,101,109,115,32,97,114,101,32,97,100,100,101,100,32,116,111,32,97,32,108,97,121,111,117,116,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,236,151,144,32,236,149,132,236,157,180,237,133,156,236,157,132,32,236,182,148,234,176,128,237,149,152,235,138,148,32,236,187,168,237,133,140,236,157,180,235,132,136,32,236,152,129,236,151,173,236,157,152,32,234,176,128,236,139,156,32,236,130,172,236,157,180,236,166,136,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,70,114,97,109,101,76,97,121,111,117,116,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,115,101,116,83,105,122,101,40,56,48,48,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,115,105,122,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,115,105,122,101,32,61,32,115,105,122,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,100,100,115,32,105,116,101,109,115,32,97,116,32,116,104,101,32,98,111,116,116,111,109,32,111,102,32,97,32,111,117,116,108,105,110,101,46,92,110,32,32,32,42,32,64,107,111,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,132,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,149,132,235,158,152,236,151,144,32,236,182,148,234,176,128,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,70,114,97,109,101,76,97,121,111,117,116,35,97,112,112,101,110,100,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,105,116,101,109,115,32,65,114,114,97,121,32,111,102,32,105,116,101,109,115,32,116,111,32,98,101,32,108,97,121,111,117,116,101,100,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,237,149,160,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,111,117,116,108,105,110,101,61,91,93,93,32,65,114,114,97,121,32,111,102,32,111,117,116,108,105,110,101,32,112,111,105,110,116,115,32,116,111,32,98,101,32,114,101,102,101,114,101,110,99,101,32,112,111,105,110,116,115,32,60,107,111,62,234,184,176,236,164,128,236,160,144,236,157,180,32,235,144,152,235,138,148,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,160,144,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,32,76,97,121,111,117,116,101,100,32,105,116,101,109,115,32,97,110,100,32,111,117,116,108,105,110,101,32,111,102,32,115,116,97,114,116,32,97,110,100,32,101,110,100,32,60,107,111,62,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,180,32,235,144,156,32,236,149,132,236,157,180,237,133,156,234,179,188,32,236,139,156,236,158,145,234,179,188,32,235,129,157,236,157,152,32,236,149,132,236,155,131,235,157,188,236,157,184,236,157,180,32,235,139,180,234,184,180,32,236,160,149,235,179,180,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,112,114,101,112,101,110,100,40,105,116,101,109,115,44,32,91,49,48,48,93,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,97,112,112,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,99,97,99,104,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,116,114,117,101,44,32,99,97,99,104,101,41,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,100,100,115,32,105,116,101,109,115,32,97,116,32,116,104,101,32,116,111,112,32,111,102,32,97,32,111,117,116,108,105,110,101,46,92,110,32,32,32,42,32,64,107,111,32,236,149,132,236,157,180,237,133,156,236,157,132,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,156,132,236,151,144,32,236,182,148,234,176,128,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,70,114,97,109,101,76,97,121,111,117,116,35,112,114,101,112,101,110,100,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,105,116,101,109,115,32,65,114,114,97,121,32,111,102,32,105,116,101,109,115,32,116,111,32,98,101,32,108,97,121,111,117,116,101,100,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,237,149,160,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,111,117,116,108,105,110,101,61,91,93,93,32,65,114,114,97,121,32,111,102,32,111,117,116,108,105,110,101,32,112,111,105,110,116,115,32,116,111,32,98,101,32,114,101,102,101,114,101,110,99,101,32,112,111,105,110,116,115,32,60,107,111,62,234,184,176,236,164,128,236,160,144,236,157,180,32,235,144,152,235,138,148,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,160,144,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,32,76,97,121,111,117,116,101,100,32,105,116,101,109,115,32,97,110,100,32,111,117,116,108,105,110,101,32,111,102,32,115,116,97,114,116,32,97,110,100,32,101,110,100,32,60,107,111,62,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,180,32,235,144,156,32,236,149,132,236,157,180,237,133,156,234,179,188,32,236,139,156,236,158,145,234,179,188,32,235,129,157,236,157,152,32,236,149,132,236,155,131,235,157,188,236,157,184,236,157,180,32,235,139,180,234,184,180,32,236,160,149,235,179,180,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,112,114,101,112,101,110,100,40,105,116,101,109,115,44,32,91,49,48,48,93,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,112,114,101,112,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,99,97,99,104,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,102,97,108,115,101,44,32,99,97,99,104,101,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,103,101,116,73,116,101,109,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,99,104,101,99,107,73,116,101,109,83,105,122,101,40,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,116,101,109,83,105,122,101,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,99,104,101,99,107,73,116,101,109,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,111,112,116,105,111,110,115,46,105,116,101,109,83,105,122,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,105,116,101,109,83,105,122,101,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,105,116,101,109,83,105,122,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,115,116,121,108,101,32,61,32,116,104,105,115,46,95,115,116,121,108,101,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,115,116,121,108,101,46,115,105,122,101,50,59,92,110,32,32,32,32,118,97,114,32,109,97,114,103,105,110,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,114,103,105,110,59,32,47,47,32,105,102,32,105,116,101,109,83,105,122,101,32,105,115,32,110,111,116,32,105,110,32,111,112,116,105,111,110,115,44,32,99,97,99,117,108,97,116,101,32,105,116,101,109,83,105,122,101,32,102,114,111,109,32,115,105,122,101,46,92,110,92,110,32,32,32,32,116,104,105,115,46,95,105,116,101,109,83,105,122,101,32,61,32,40,116,104,105,115,46,95,115,105,122,101,32,43,32,109,97,114,103,105,110,41,32,47,32,116,104,105,115,46,95,115,104,97,112,101,115,91,115,105,122,101,93,32,45,32,109,97,114,103,105,110,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,108,97,121,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,59,92,110,92,110,32,32,32,32,105,102,32,40,111,117,116,108,105,110,101,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,105,116,101,109,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,115,116,121,108,101,32,61,32,116,104,105,115,46,95,115,116,121,108,101,59,92,110,32,32,32,32,118,97,114,32,95,98,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,109,97,114,103,105,110,32,61,32,95,98,46,109,97,114,103,105,110,44,92,110,32,32,32,32,32,32,32,32,102,114,97,109,101,70,105,108,108,32,61,32,95,98,46,102,114,97,109,101,70,105,108,108,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,49,78,97,109,101,32,61,32,115,116,121,108,101,46,115,105,122,101,49,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,50,78,97,109,101,32,61,32,115,116,121,108,101,46,115,105,122,101,50,59,92,110,32,32,32,32,118,97,114,32,112,111,115,49,78,97,109,101,32,61,32,115,116,121,108,101,46,115,116,97,114,116,80,111,115,49,59,92,110,32,32,32,32,118,97,114,32,112,111,115,50,78,97,109,101,32,61,32,115,116,121,108,101,46,115,116,97,114,116,80,111,115,50,59,92,110,92,110,32,32,32,32,118,97,114,32,105,116,101,109,83,105,122,101,32,61,32,116,104,105,115,46,95,103,101,116,73,116,101,109,83,105,122,101,40,41,59,92,110,92,110,32,32,32,32,118,97,114,32,105,115,73,116,101,109,79,98,106,101,99,116,32,61,32,116,121,112,101,111,102,32,105,116,101,109,83,105,122,101,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,83,105,122,101,50,32,61,32,105,115,73,116,101,109,79,98,106,101,99,116,32,63,32,105,116,101,109,83,105,122,101,91,115,105,122,101,50,78,97,109,101,93,32,58,32,105,116,101,109,83,105,122,101,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,83,105,122,101,49,32,61,32,105,115,73,116,101,109,79,98,106,101,99,116,32,63,32,105,116,101,109,83,105,122,101,91,115,105,122,101,49,78,97,109,101,93,32,58,32,105,116,101,109,83,105,122,101,59,92,110,32,32,32,32,118,97,114,32,115,104,97,112,101,115,83,105,122,101,32,61,32,116,104,105,115,46,95,115,104,97,112,101,115,91,115,105,122,101,50,78,97,109,101,93,59,92,110,32,32,32,32,118,97,114,32,115,104,97,112,101,115,32,61,32,116,104,105,115,46,95,115,104,97,112,101,115,46,115,104,97,112,101,115,59,92,110,32,32,32,32,118,97,114,32,115,104,97,112,101,115,76,101,110,103,116,104,32,61,32,115,104,97,112,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,79,117,116,108,105,110,101,32,61,32,102,105,108,108,40,110,101,119,32,65,114,114,97,121,40,115,104,97,112,101,115,83,105,122,101,41,44,32,68,85,77,77,89,95,80,79,83,73,84,73,79,78,41,59,92,110,32,32,32,32,118,97,114,32,101,110,100,79,117,116,108,105,110,101,32,61,32,102,105,108,108,40,110,101,119,32,65,114,114,97,121,40,115,104,97,112,101,115,83,105,122,101,41,44,32,68,85,77,77,89,95,80,79,83,73,84,73,79,78,41,59,92,110,32,32,32,32,118,97,114,32,100,105,115,116,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,101,110,100,32,61,32,48,59,92,110,92,110,32,32,32,32,105,102,32,40,33,115,104,97,112,101,115,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,58,32,111,117,116,108,105,110,101,44,92,110,32,32,32,32,32,32,32,32,101,110,100,58,32,111,117,116,108,105,110,101,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,59,32,105,32,43,61,32,115,104,97,112,101,115,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,59,32,106,32,60,32,115,104,97,112,101,115,76,101,110,103,116,104,32,38,38,32,105,32,43,32,106,32,60,32,108,101,110,103,116,104,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,105,116,101,109,115,91,105,32,43,32,106,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,104,97,112,101,32,61,32,115,104,97,112,101,115,91,106,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,104,97,112,101,80,111,115,49,32,61,32,115,104,97,112,101,91,112,111,115,49,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,104,97,112,101,80,111,115,50,32,61,32,115,104,97,112,101,91,112,111,115,50,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,104,97,112,101,83,105,122,101,49,32,61,32,115,104,97,112,101,91,115,105,122,101,49,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,104,97,112,101,83,105,122,101,50,32,61,32,115,104,97,112,101,91,115,105,122,101,50,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,111,115,49,32,61,32,101,110,100,32,45,32,100,105,115,116,32,43,32,115,104,97,112,101,80,111,115,49,32,42,32,40,105,116,101,109,83,105,122,101,49,32,43,32,109,97,114,103,105,110,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,111,115,50,32,61,32,115,104,97,112,101,80,111,115,50,32,42,32,40,105,116,101,109,83,105,122,101,50,32,43,32,109,97,114,103,105,110,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,105,122,101,49,32,61,32,115,104,97,112,101,83,105,122,101,49,32,42,32,40,105,116,101,109,83,105,122,101,49,32,43,32,109,97,114,103,105,110,41,32,45,32,109,97,114,103,105,110,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,105,122,101,50,32,61,32,115,104,97,112,101,83,105,122,101,50,32,42,32,40,105,116,101,109,83,105,122,101,50,32,43,32,109,97,114,103,105,110,41,32,45,32,109,97,114,103,105,110,59,92,110,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,32,61,32,115,104,97,112,101,80,111,115,50,59,32,107,32,60,32,115,104,97,112,101,80,111,115,50,32,43,32,115,104,97,112,101,83,105,122,101,50,32,38,38,32,107,32,60,32,115,104,97,112,101,115,83,105,122,101,59,32,43,43,107,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,116,97,114,116,79,117,116,108,105,110,101,91,107,93,32,61,61,61,32,68,85,77,77,89,95,80,79,83,73,84,73,79,78,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,79,117,116,108,105,110,101,91,107,93,32,61,32,112,111,115,49,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,79,117,116,108,105,110,101,91,107,93,32,61,32,77,97,116,104,46,109,105,110,40,115,116,97,114,116,79,117,116,108,105,110,101,91,107,93,44,32,112,111,115,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,101,110,100,79,117,116,108,105,110,101,91,107,93,32,61,32,77,97,116,104,46,109,97,120,40,101,110,100,79,117,116,108,105,110,101,91,107,93,44,32,112,111,115,49,32,43,32,115,105,122,101,49,32,43,32,109,97,114,103,105,110,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,116,101,109,46,114,101,99,116,32,61,32,40,95,97,32,61,32,123,125,44,32,95,97,91,112,111,115,49,78,97,109,101,93,32,61,32,112,111,115,49,44,32,95,97,91,112,111,115,50,78,97,109,101,93,32,61,32,112,111,115,50,44,32,95,97,91,115,105,122,101,49,78,97,109,101,93,32,61,32,115,105,122,101,49,44,32,95,97,91,115,105,122,101,50,78,97,109,101,93,32,61,32,115,105,122,101,50,44,32,95,97,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,101,110,100,32,61,32,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,32,101,110,100,79,117,116,108,105,110,101,41,59,32,47,47,32,99,104,101,99,107,32,100,105,115,116,32,111,110,99,101,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,32,33,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,125,32,47,47,32,102,105,110,100,32,38,32,102,105,108,108,32,101,109,112,116,121,32,98,108,111,99,107,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,102,114,97,109,101,70,105,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,100,105,115,116,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,100,105,115,116,32,61,32,101,110,100,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,59,32,106,32,60,32,115,104,97,112,101,115,83,105,122,101,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,116,97,114,116,79,117,116,108,105,110,101,91,106,93,32,61,61,61,32,68,85,77,77,89,95,80,79,83,73,84,73,79,78,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,116,104,101,32,100,105,115,116,32,98,101,116,119,101,101,110,32,102,114,97,109,101,39,115,32,101,110,100,32,111,117,116,108,105,110,101,32,97,110,100,32,110,101,120,116,32,102,114,97,109,101,39,115,32,115,116,97,114,116,32,111,117,116,108,105,110,101,92,110,32,32,32,32,32,32,32,32,47,47,32,101,120,112,101,99,116,32,116,104,97,116,32,110,101,120,116,32,102,114,97,109,101,39,115,32,115,116,97,114,116,32,111,117,116,108,105,110,101,32,105,115,32,115,116,97,114,116,79,117,116,108,105,110,101,91,106,93,32,43,32,101,110,100,92,110,92,110,92,110,32,32,32,32,32,32,32,32,100,105,115,116,32,61,32,77,97,116,104,46,109,105,110,40,115,116,97,114,116,79,117,116,108,105,110,101,91,106,93,32,43,32,101,110,100,32,45,32,101,110,100,79,117,116,108,105,110,101,91,106,93,44,32,100,105,115,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,115,104,97,112,101,115,83,105,122,101,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,114,116,79,117,116,108,105,110,101,91,105,93,32,33,61,61,32,68,85,77,77,89,95,80,79,83,73,84,73,79,78,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,115,116,97,114,116,79,117,116,108,105,110,101,91,105,93,32,61,32,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,32,115,116,97,114,116,79,117,116,108,105,110,101,41,59,92,110,32,32,32,32,32,32,101,110,100,79,117,116,108,105,110,101,91,105,93,32,61,32,115,116,97,114,116,79,117,116,108,105,110,101,91,105,93,59,92,110,32,32,32,32,125,32,47,47,32,84,104,101,32,116,97,114,103,101,116,32,111,117,116,108,105,110,101,32,105,115,32,115,116,97,114,116,32,111,117,116,108,105,110,101,32,119,104,101,110,32,116,121,112,101,32,105,115,32,97,112,112,101,110,100,105,110,103,92,110,92,110,92,110,32,32,32,32,118,97,114,32,116,97,114,103,101,116,79,117,116,108,105,110,101,32,61,32,105,115,65,112,112,101,110,100,32,63,32,115,116,97,114,116,79,117,116,108,105,110,101,32,58,32,101,110,100,79,117,116,108,105,110,101,59,92,110,32,32,32,32,118,97,114,32,112,114,101,118,79,117,116,108,105,110,101,69,110,100,32,61,32,111,117,116,108,105,110,101,46,108,101,110,103,116,104,32,61,61,61,32,48,32,63,32,48,32,58,32,77,97,116,104,91,105,115,65,112,112,101,110,100,32,63,32,92,34,109,97,120,92,34,32,58,32,92,34,109,105,110,92,34,93,46,97,112,112,108,121,40,77,97,116,104,44,32,111,117,116,108,105,110,101,41,59,92,110,32,32,32,32,118,97,114,32,112,114,101,118,79,117,116,108,105,110,101,68,105,115,116,32,61,32,105,115,65,112,112,101,110,100,32,63,32,48,32,58,32,101,110,100,59,92,110,92,110,32,32,32,32,105,102,32,40,102,114,97,109,101,70,105,108,108,32,38,38,32,111,117,116,108,105,110,101,46,108,101,110,103,116,104,32,61,61,61,32,115,104,97,112,101,115,83,105,122,101,41,32,123,92,110,32,32,32,32,32,32,112,114,101,118,79,117,116,108,105,110,101,68,105,115,116,32,61,32,45,68,85,77,77,89,95,80,79,83,73,84,73,79,78,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,115,104,97,112,101,115,83,105,122,101,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,116,97,114,116,79,117,116,108,105,110,101,91,105,93,32,61,61,61,32,101,110,100,79,117,116,108,105,110,101,91,105,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,105,102,32,97,112,112,101,110,100,105,110,103,32,116,121,112,101,32,105,115,32,112,114,101,112,101,110,100,40,102,97,108,115,101,41,44,32,115,117,98,116,114,97,99,116,32,100,105,115,116,32,102,114,111,109,32,97,112,112,101,110,100,105,110,103,32,103,114,111,117,112,39,115,32,104,101,105,103,104,116,46,92,110,92,110,92,110,32,32,32,32,32,32,32,32,112,114,101,118,79,117,116,108,105,110,101,68,105,115,116,32,61,32,77,97,116,104,46,109,105,110,40,116,97,114,103,101,116,79,117,116,108,105,110,101,91,105,93,32,43,32,112,114,101,118,79,117,116,108,105,110,101,69,110,100,32,45,32,111,117,116,108,105,110,101,91,105,93,44,32,112,114,101,118,79,117,116,108,105,110,101,68,105,115,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,115,104,97,112,101,115,83,105,122,101,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,79,117,116,108,105,110,101,91,105,93,32,43,61,32,112,114,101,118,79,117,116,108,105,110,101,69,110,100,32,45,32,112,114,101,118,79,117,116,108,105,110,101,68,105,115,116,59,92,110,32,32,32,32,32,32,101,110,100,79,117,116,108,105,110,101,91,105,93,32,43,61,32,112,114,101,118,79,117,116,108,105,110,101,69,110,100,32,45,32,112,114,101,118,79,117,116,108,105,110,101,68,105,115,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,105,116,101,109,46,114,101,99,116,91,112,111,115,49,78,97,109,101,93,32,43,61,32,112,114,101,118,79,117,116,108,105,110,101,69,110,100,32,45,32,112,114,101,118,79,117,116,108,105,110,101,68,105,115,116,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,58,32,115,116,97,114,116,79,117,116,108,105,110,101,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,114,115,101,73,110,116,40,112,111,105,110,116,44,32,49,48,41,59,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,101,110,100,58,32,101,110,100,79,117,116,108,105,110,101,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,114,115,101,73,110,116,40,112,111,105,110,116,44,32,49,48,41,59,92,110,32,32,32,32,32,32,125,41,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,105,110,115,101,114,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,44,32,99,97,99,104,101,41,32,123,92,110,32,32,32,32,105,102,32,40,105,116,101,109,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,105,116,101,109,115,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,111,117,116,108,105,110,101,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,91,93,59,92,110,32,32,32,32,125,32,47,47,32,116,104,105,115,32,111,110,108,121,32,110,101,101,100,115,32,116,104,101,32,115,105,122,101,32,111,102,32,116,104,101,32,105,116,101,109,46,92,110,92,110,92,110,32,32,32,32,118,97,114,32,99,108,111,110,101,32,61,32,99,97,99,104,101,32,63,32,105,116,101,109,115,32,58,32,99,108,111,110,101,73,116,101,109,115,40,105,116,101,109,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,105,116,101,109,115,58,32,99,108,111,110,101,44,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,115,58,32,116,104,105,115,46,95,108,97,121,111,117,116,40,99,108,111,110,101,44,32,111,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,41,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,70,114,97,109,101,76,97,121,111,117,116,59,92,110,125,40,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,109,97,107,101,83,104,97,112,101,79,117,116,108,105,110,101,40,111,117,116,108,105,110,101,44,32,105,116,101,109,83,105,122,101,44,32,99,111,108,117,109,110,76,101,110,103,116,104,44,32,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,118,97,114,32,112,111,105,110,116,32,61,32,77,97,116,104,91,105,115,65,112,112,101,110,100,32,63,32,92,34,109,105,110,92,34,32,58,32,92,34,109,97,120,92,34,93,46,97,112,112,108,121,40,77,97,116,104,44,32,111,117,116,108,105,110,101,41,32,124,124,32,48,59,92,110,92,110,32,32,105,102,32,40,111,117,116,108,105,110,101,46,108,101,110,103,116,104,32,33,61,61,32,99,111,108,117,109,110,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,105,108,108,40,110,101,119,32,65,114,114,97,121,40,99,111,108,117,109,110,76,101,110,103,116,104,41,44,32,48,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,111,117,116,108,105,110,101,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,108,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,102,108,111,111,114,40,40,108,32,45,32,112,111,105,110,116,41,32,47,32,105,116,101,109,83,105,122,101,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,67,111,108,117,109,110,40,105,116,101,109,41,32,123,92,110,32,32,105,102,32,40,105,116,101,109,46,99,111,108,117,109,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,46,99,111,108,117,109,110,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,111,108,117,109,110,32,61,32,49,59,92,110,92,110,32,32,105,102,32,40,105,116,101,109,46,101,108,41,32,123,92,110,32,32,32,32,99,111,108,117,109,110,32,61,32,112,97,114,115,101,73,110,116,40,105,116,101,109,46,101,108,46,103,101,116,65,116,116,114,105,98,117,116,101,40,92,34,100,97,116,97,45,99,111,108,117,109,110,92,34,41,44,32,49,48,41,32,124,124,32,49,59,92,110,32,32,125,92,110,92,110,32,32,105,116,101,109,46,99,111,108,117,109,110,32,61,32,99,111,108,117,109,110,59,92,110,32,32,114,101,116,117,114,110,32,99,111,108,117,109,110,59,92,110,125,92,110,47,42,42,92,110,32,42,32,64,99,108,97,115,115,100,101,115,99,32,83,113,117,97,114,101,76,97,121,111,117,116,32,105,115,32,97,32,108,97,121,111,117,116,32,116,104,97,116,32,112,108,97,99,101,115,32,97,108,108,32,99,97,114,100,115,32,108,105,107,101,32,115,113,117,97,114,101,115,32,111,110,32,97,32,99,104,101,99,107,101,114,98,111,97,114,100,44,32,97,110,100,32,105,109,112,111,114,116,97,110,116,32,99,97,114,100,115,32,97,114,101,32,110,32,116,105,109,101,115,32,108,97,114,103,101,114,46,32,84,104,101,32,109,97,105,110,32,99,97,114,100,32,99,97,110,32,98,101,32,101,110,108,97,114,103,101,100,44,32,97,110,100,32,116,104,101,110,32,97,32,115,109,97,108,108,32,99,97,114,100,32,99,97,110,32,98,101,32,112,108,97,99,101,100,32,116,111,32,110,97,116,117,114,97,108,108,121,32,115,104,111,119,32,116,104,101,32,114,101,108,97,116,105,111,110,115,104,105,112,32,111,102,32,116,104,101,32,99,97,114,100,46,92,110,32,42,32,64,107,111,32,83,113,117,97,114,101,76,97,121,111,117,116,236,157,128,32,235,176,148,235,145,145,237,140,144,236,178,152,235,159,188,32,235,170,168,235,147,160,32,236,185,180,235,147,156,235,165,188,32,236,160,149,236,130,172,234,176,129,237,152,149,236,156,188,235,161,156,32,235,176,176,236,185,152,237,149,152,234,179,160,32,236,164,145,236,154,148,237,149,156,32,236,185,180,235,147,156,235,138,148,32,237,129,172,234,184,176,235,165,188,32,78,235,176,176,235,161,156,32,237,130,164,236,155,140,236,132,156,32,235,179,180,236,151,172,236,163,188,235,138,148,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,180,235,139,164,46,32,236,163,188,236,154,148,32,236,185,180,235,147,156,235,165,188,32,237,129,172,234,178,140,32,237,145,156,236,139,156,237,149,152,234,179,160,44,32,234,183,184,32,235,139,164,236,157,140,236,151,144,32,236,158,145,236,157,128,32,236,185,180,235,147,156,235,165,188,32,235,176,176,236,185,152,237,149,180,32,236,158,144,236,151,176,236,138,164,235,159,189,234,178,140,32,236,185,180,235,147,156,236,157,152,32,234,180,128,234,179,132,235,165,188,32,235,130,152,237,131,128,235,130,188,32,236,136,152,32,236,158,136,236,138,181,235,139,136,235,139,164,46,92,110,32,42,32,64,99,108,97,115,115,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,83,113,117,97,114,101,76,97,121,111,117,116,92,110,32,42,32,64,101,120,116,101,110,100,115,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,70,114,97,109,101,76,97,121,111,117,116,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,112,116,105,111,110,115,93,32,84,104,101,32,111,112,116,105,111,110,32,111,98,106,101,99,116,32,111,102,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,83,113,117,97,114,101,76,97,121,111,117,116,32,109,111,100,117,108,101,32,60,107,111,62,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,83,113,117,97,114,101,76,97,121,111,117,116,32,235,170,168,235,147,136,236,157,152,32,236,152,181,236,133,152,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,91,111,112,116,105,111,110,115,46,109,97,114,103,105,110,61,48,93,32,77,97,114,103,105,110,32,117,115,101,100,32,116,111,32,99,114,101,97,116,101,32,115,112,97,99,101,32,97,114,111,117,110,100,32,105,116,101,109,115,32,60,107,111,62,236,149,132,236,157,180,237,133,156,235,147,164,32,236,130,172,236,157,180,236,157,152,32,234,179,181,234,176,132,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,61,102,97,108,115,101,93,32,68,105,114,101,99,116,105,111,110,32,111,102,32,116,104,101,32,115,99,114,111,108,108,32,109,111,118,101,109,101,110,116,32,40,102,97,108,115,101,58,32,118,101,114,116,105,99,97,108,44,32,116,114,117,101,58,32,104,111,114,105,122,111,110,116,97,108,41,32,60,107,111,62,236,138,164,237,129,172,235,161,164,32,236,157,180,235,143,153,32,235,176,169,237,150,165,32,40,102,97,108,115,101,58,32,236,132,184,235,161,156,235,176,169,237,150,165,44,32,116,114,117,101,58,32,234,176,128,235,161,156,235,176,169,237,150,165,41,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,105,116,101,109,83,105,122,101,61,48,93,32,84,104,101,32,115,105,122,101,32,111,102,32,116,104,101,32,105,116,101,109,115,46,32,73,102,32,105,116,32,105,115,32,48,44,32,105,116,32,105,115,32,99,97,108,99,117,108,97,116,101,100,32,97,115,32,116,104,101,32,115,105,122,101,32,111,102,32,116,104,101,32,102,105,114,115,116,32,105,116,101,109,32,105,110,32,105,116,101,109,115,46,32,40,112,114,105,111,114,105,116,121,58,32,96,99,111,108,117,109,110,96,32,62,32,96,105,116,101,109,83,105,122,101,96,32,62,32,101,108,101,109,101,110,116,39,115,32,115,105,122,101,41,60,107,111,62,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,130,172,236,157,180,236,166,136,46,32,235,167,140,236,149,189,32,236,149,132,236,157,180,237,133,156,32,236,130,172,236,157,180,236,166,136,234,176,128,32,48,236,157,180,235,169,180,44,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,152,32,236,178,171,235,178,136,236,167,184,32,236,149,132,236,157,180,237,133,156,236,157,152,32,236,130,172,236,157,180,236,166,136,235,161,156,32,234,179,132,236,130,176,236,157,180,32,235,144,156,235,139,164,46,32,40,236,154,176,236,132,160,236,136,156,236,156,132,58,32,96,99,111,108,117,109,110,96,32,62,32,96,105,116,101,109,83,105,122,101,96,32,62,32,236,151,152,235,166,172,235,168,188,237,138,184,236,157,152,32,236,130,172,236,157,180,236,166,136,41,32,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,99,111,108,117,109,110,61,48,93,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,99,111,108,117,109,110,115,32,105,110,32,116,104,101,32,108,97,121,111,117,116,46,32,73,102,32,105,116,32,105,115,32,48,44,32,116,104,101,32,99,111,108,117,109,110,32,105,115,32,114,101,116,117,114,110,101,100,32,98,121,32,96,105,116,101,109,83,105,122,101,96,46,32,32,40,112,114,105,111,114,105,116,121,58,32,96,99,111,108,117,109,110,96,32,62,32,96,105,116,101,109,83,105,122,101,96,32,62,32,101,108,101,109,101,110,116,39,115,32,115,105,122,101,41,60,107,111,62,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,152,32,236,151,180,236,157,152,32,234,176,156,236,136,152,46,32,235,167,140,236,149,189,32,99,111,108,117,109,110,236,157,180,32,48,236,157,180,235,169,180,44,32,96,105,116,101,109,83,105,122,101,96,235,161,156,32,236,151,180,236,157,132,32,234,181,172,237,149,169,235,139,136,235,139,164,46,32,40,236,154,176,236,132,160,236,136,156,236,156,132,58,32,96,99,111,108,117,109,110,96,32,62,32,96,105,116,101,109,83,105,122,101,96,32,62,32,236,151,152,235,166,172,235,168,188,237,138,184,236,157,152,32,236,130,172,236,157,180,236,166,136,41,32,60,47,107,111,62,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,96,96,96,92,110,60,115,99,114,105,112,116,62,92,110,118,97,114,32,105,103,32,61,32,110,101,119,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,40,92,34,35,103,114,105,100,92,34,46,32,123,92,110,32,32,32,32,104,111,114,105,122,111,110,116,97,108,58,32,116,114,117,101,44,92,110,125,41,59,92,110,92,110,105,103,46,115,101,116,76,97,121,111,117,116,40,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,83,113,117,97,114,101,76,97,121,111,117,116,44,32,123,92,110,32,32,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,32,32,105,116,101,109,83,105,122,101,58,32,50,48,48,44,92,110,125,41,59,92,110,92,110,47,47,32,111,114,92,110,92,110,118,97,114,32,108,97,121,111,117,116,32,61,32,110,101,119,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,83,113,117,97,114,101,76,97,121,111,117,116,40,123,92,110,32,32,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,32,32,105,116,101,109,83,105,122,101,58,32,50,48,48,44,92,110,32,32,32,32,104,111,114,105,122,111,110,116,97,108,58,32,116,114,117,101,44,92,110,125,41,59,92,110,92,110,118,97,114,32,105,116,101,109,49,32,61,32,39,60,100,105,118,32,100,97,116,97,45,99,111,108,117,109,110,61,92,34,50,92,34,62,60,47,100,105,118,62,39,59,92,110,118,97,114,32,105,116,101,109,50,32,61,32,92,34,60,100,105,118,62,60,47,100,105,118,62,92,34,92,110,108,97,121,111,117,116,46,97,112,112,101,110,100,40,91,105,116,101,109,49,44,32,105,116,101,109,50,93,41,59,92,110,60,47,115,99,114,105,112,116,62,92,110,96,96,96,92,110,32,42,42,47,92,110,92,110,92,110,118,97,114,32,83,113,117,97,114,101,76,97,121,111,117,116,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,95,115,117,112,101,114,41,32,123,92,110,32,32,95,95,101,120,116,101,110,100,115,40,83,113,117,97,114,101,76,97,121,111,117,116,44,32,95,115,117,112,101,114,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,83,113,117,97,114,101,76,97,121,111,117,116,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,117,112,101,114,46,99,97,108,108,40,116,104,105,115,44,32,111,112,116,105,111,110,115,41,32,124,124,32,116,104,105,115,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,83,113,117,97,114,101,76,97,121,111,117,116,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,108,97,121,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,44,32,95,98,59,92,110,92,110,32,32,32,32,105,102,32,40,111,117,116,108,105,110,101,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,105,115,65,112,112,101,110,100,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,105,115,65,112,112,101,110,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,105,116,101,109,83,105,122,101,32,61,32,116,104,105,115,46,95,103,101,116,83,113,117,97,114,101,83,105,122,101,40,105,116,101,109,115,91,48,93,41,59,92,110,92,110,32,32,32,32,118,97,114,32,109,97,114,103,105,110,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,114,103,105,110,59,92,110,32,32,32,32,118,97,114,32,99,111,108,117,109,110,76,101,110,103,116,104,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,32,124,124,32,77,97,116,104,46,102,108,111,111,114,40,40,116,104,105,115,46,95,115,105,122,101,32,43,32,109,97,114,103,105,110,41,32,47,32,40,105,116,101,109,83,105,122,101,32,43,32,109,97,114,103,105,110,41,41,32,124,124,32,49,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,105,116,101,109,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,101,110,100,79,117,116,108,105,110,101,32,61,32,109,97,107,101,83,104,97,112,101,79,117,116,108,105,110,101,40,111,117,116,108,105,110,101,44,32,77,97,116,104,46,102,108,111,111,114,40,105,116,101,109,83,105,122,101,41,44,32,99,111,108,117,109,110,76,101,110,103,116,104,44,32,105,115,65,112,112,101,110,100,41,59,92,110,32,32,32,32,118,97,114,32,112,111,105,110,116,67,97,99,117,108,97,116,101,78,97,109,101,32,61,32,105,115,65,112,112,101,110,100,32,63,32,92,34,109,105,110,92,34,32,58,32,92,34,109,97,120,92,34,59,92,110,32,32,32,32,118,97,114,32,115,104,97,112,101,115,32,61,32,91,93,59,92,110,32,32,32,32,118,97,114,32,115,105,103,110,32,61,32,105,115,65,112,112,101,110,100,32,63,32,49,32,58,32,45,49,59,92,110,32,32,32,32,118,97,114,32,115,116,121,108,101,32,61,32,116,104,105,115,46,95,115,116,121,108,101,59,92,110,32,32,32,32,118,97,114,32,112,111,115,49,78,97,109,101,32,61,32,115,116,121,108,101,46,115,116,97,114,116,80,111,115,49,59,92,110,32,32,32,32,118,97,114,32,112,111,115,50,78,97,109,101,32,61,32,115,116,121,108,101,46,115,116,97,114,116,80,111,115,50,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,111,105,110,116,32,61,32,77,97,116,104,91,112,111,105,110,116,67,97,99,117,108,97,116,101,78,97,109,101,93,46,97,112,112,108,121,40,77,97,116,104,44,32,101,110,100,79,117,116,108,105,110,101,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,101,110,100,79,117,116,108,105,110,101,91,105,115,65,112,112,101,110,100,32,63,32,92,34,105,110,100,101,120,79,102,92,34,32,58,32,92,34,108,97,115,116,73,110,100,101,120,79,102,92,34,93,40,112,111,105,110,116,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,105,116,101,109,115,91,105,93,59,92,110,32,32,32,32,32,32,118,97,114,32,99,111,108,117,109,110,87,105,100,116,104,32,61,32,105,116,101,109,46,99,111,108,117,109,110,87,105,100,116,104,59,92,110,32,32,32,32,32,32,118,97,114,32,99,111,108,117,109,110,32,61,32,99,111,108,117,109,110,87,105,100,116,104,32,38,38,32,99,111,108,117,109,110,87,105,100,116,104,91,48,93,32,61,61,61,32,99,111,108,117,109,110,76,101,110,103,116,104,32,38,38,32,99,111,108,117,109,110,87,105,100,116,104,91,49,93,32,124,124,32,103,101,116,67,111,108,117,109,110,40,105,116,101,109,41,59,92,110,32,32,32,32,32,32,118,97,114,32,99,111,108,117,109,110,67,111,117,110,116,32,61,32,49,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,99,111,108,117,109,110,32,62,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,49,59,32,106,32,60,32,99,111,108,117,109,110,32,38,38,32,40,105,115,65,112,112,101,110,100,32,38,38,32,105,110,100,101,120,32,43,32,106,32,60,32,99,111,108,117,109,110,76,101,110,103,116,104,32,124,124,32,33,105,115,65,112,112,101,110,100,32,38,38,32,105,110,100,101,120,32,45,32,106,32,62,61,32,48,41,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,65,112,112,101,110,100,32,38,38,32,101,110,100,79,117,116,108,105,110,101,91,105,110,100,101,120,32,43,32,115,105,103,110,32,42,32,106,93,32,60,61,32,112,111,105,110,116,32,124,124,32,33,105,115,65,112,112,101,110,100,32,38,38,32,101,110,100,79,117,116,108,105,110,101,91,105,110,100,101,120,32,43,32,115,105,103,110,32,42,32,106,93,32,62,61,32,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,43,43,99,111,108,117,109,110,67,111,117,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,45,61,32,99,111,108,117,109,110,67,111,117,110,116,32,45,32,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,116,101,109,46,99,111,108,117,109,110,87,105,100,116,104,32,61,32,91,99,111,108,117,109,110,76,101,110,103,116,104,44,32,99,111,108,117,109,110,67,111,117,110,116,93,59,92,110,32,32,32,32,32,32,115,104,97,112,101,115,46,112,117,115,104,40,40,95,97,32,61,32,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,99,111,108,117,109,110,67,111,117,110,116,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,99,111,108,117,109,110,67,111,117,110,116,92,110,32,32,32,32,32,32,125,44,32,95,97,91,112,111,115,49,78,97,109,101,93,32,61,32,112,111,105,110,116,32,45,32,40,33,105,115,65,112,112,101,110,100,32,63,32,99,111,108,117,109,110,67,111,117,110,116,32,58,32,48,41,44,32,95,97,91,112,111,115,50,78,97,109,101,93,32,61,32,105,110,100,101,120,44,32,95,97,46,116,121,112,101,32,61,32,105,32,43,32,49,44,32,95,97,46,105,110,100,101,120,32,61,32,105,44,32,95,97,41,41,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,59,32,106,32,60,32,99,111,108,117,109,110,67,111,117,110,116,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,32,32,101,110,100,79,117,116,108,105,110,101,91,105,110,100,101,120,32,43,32,106,93,32,61,32,112,111,105,110,116,32,43,32,115,105,103,110,32,42,32,99,111,108,117,109,110,67,111,117,110,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,115,104,97,112,101,115,32,61,32,40,95,98,32,61,32,123,92,110,32,32,32,32,32,32,115,104,97,112,101,115,58,32,115,104,97,112,101,115,92,110,32,32,32,32,125,44,32,95,98,91,115,116,121,108,101,46,115,105,122,101,50,93,32,61,32,99,111,108,117,109,110,76,101,110,103,116,104,44,32,95,98,41,59,92,110,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,95,115,117,112,101,114,46,112,114,111,116,111,116,121,112,101,46,95,108,97,121,111,117,116,46,99,97,108,108,40,116,104,105,115,44,32,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,32,32,115,104,97,112,101,115,46,115,111,114,116,40,102,117,110,99,116,105,111,110,32,40,115,104,97,112,101,49,44,32,115,104,97,112,101,50,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,49,112,111,115,49,32,61,32,115,104,97,112,101,49,91,112,111,115,49,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,49,112,111,115,50,32,61,32,115,104,97,112,101,49,91,112,111,115,50,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,50,112,111,115,49,32,61,32,115,104,97,112,101,50,91,112,111,115,49,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,50,112,111,115,50,32,61,32,115,104,97,112,101,50,91,112,111,115,50,78,97,109,101,93,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,116,101,109,49,112,111,115,49,32,45,32,105,116,101,109,50,112,111,115,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,49,112,111,115,49,32,45,32,105,116,101,109,50,112,111,115,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,49,112,111,115,50,32,45,32,105,116,101,109,50,112,111,115,50,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,105,116,101,109,115,46,115,111,114,116,40,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,49,112,111,115,49,32,61,32,97,46,114,101,99,116,91,112,111,115,49,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,49,112,111,115,50,32,61,32,97,46,114,101,99,116,91,112,111,115,50,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,50,112,111,115,49,32,61,32,98,46,114,101,99,116,91,112,111,115,49,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,50,112,111,115,50,32,61,32,98,46,114,101,99,116,91,112,111,115,50,78,97,109,101,93,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,116,101,109,49,112,111,115,49,32,45,32,105,116,101,109,50,112,111,115,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,49,112,111,115,49,32,45,32,105,116,101,109,50,112,111,115,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,49,112,111,115,50,32,45,32,105,116,101,109,50,112,111,115,50,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,103,101,116,83,113,117,97,114,101,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,99,111,108,117,109,110,32,61,32,95,97,46,99,111,108,117,109,110,44,92,110,32,32,32,32,32,32,32,32,109,97,114,103,105,110,32,61,32,95,97,46,109,97,114,103,105,110,44,92,110,32,32,32,32,32,32,32,32,105,116,101,109,83,105,122,101,32,61,32,95,97,46,105,116,101,109,83,105,122,101,59,92,110,92,110,32,32,32,32,105,102,32,40,99,111,108,117,109,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,105,102,32,99,111,108,117,109,110,32,105,115,32,105,110,32,111,112,116,105,111,110,115,44,32,99,97,99,117,108,97,116,101,32,105,116,101,109,83,105,122,101,32,102,114,111,109,32,99,111,108,117,109,110,46,92,110,32,32,32,32,32,32,116,104,105,115,46,95,105,116,101,109,83,105,122,101,32,61,32,40,116,104,105,115,46,95,115,105,122,101,32,43,32,109,97,114,103,105,110,41,32,47,32,99,111,108,117,109,110,32,45,32,109,97,114,103,105,110,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,116,101,109,83,105,122,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,105,116,101,109,83,105,122,101,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,105,116,101,109,83,105,122,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,105,122,101,78,97,109,101,32,61,32,116,104,105,115,46,95,115,116,121,108,101,46,115,105,122,101,50,59,32,47,47,32,105,102,32,102,114,97,109,101,83,105,122,101,32,105,115,32,48,44,32,99,97,99,117,108,97,116,101,32,102,114,97,109,101,83,105,122,101,32,102,114,111,109,32,105,116,101,109,46,115,105,122,101,46,92,110,92,110,32,32,32,32,32,32,118,97,114,32,102,114,97,109,101,83,105,122,101,32,61,32,116,104,105,115,46,95,115,104,97,112,101,115,91,115,105,122,101,78,97,109,101,93,32,124,124,32,77,97,116,104,46,102,108,111,111,114,40,40,116,104,105,115,46,95,115,105,122,101,32,43,32,109,97,114,103,105,110,41,32,47,32,40,105,116,101,109,46,115,105,122,101,91,115,105,122,101,78,97,109,101,93,32,43,32,109,97,114,103,105,110,41,32,47,32,103,101,116,67,111,108,117,109,110,40,105,116,101,109,41,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,105,116,101,109,83,105,122,101,32,61,32,40,116,104,105,115,46,95,115,105,122,101,32,43,32,109,97,114,103,105,110,41,32,47,32,102,114,97,109,101,83,105,122,101,32,45,32,109,97,114,103,105,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,116,101,109,83,105,122,101,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,83,113,117,97,114,101,76,97,121,111,117,116,59,92,110,125,40,70,114,97,109,101,76,97,121,111,117,116,41,59,92,110,92,110,118,97,114,32,66,111,120,77,111,100,101,108,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,66,111,120,77,111,100,101,108,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,97,115,115,105,103,110,40,116,104,105,115,44,32,123,92,110,32,32,32,32,32,32,111,114,105,103,105,110,87,105,100,116,104,58,32,48,44,92,110,32,32,32,32,32,32,111,114,105,103,105,110,72,101,105,103,104,116,58,32,48,44,92,110,32,32,32,32,32,32,119,105,100,116,104,58,32,48,44,92,110,32,32,32,32,32,32,104,101,105,103,104,116,58,32,48,44,92,110,32,32,32,32,32,32,108,101,102,116,58,32,48,44,92,110,32,32,32,32,32,32,116,111,112,58,32,48,44,92,110,32,32,32,32,32,32,105,116,101,109,115,58,32,91,93,92,110,32,32,32,32,125,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,66,111,120,77,111,100,101,108,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,99,97,108,101,84,111,32,61,32,102,117,110,99,116,105,111,110,32,40,119,105,100,116,104,44,32,104,101,105,103,104,116,41,32,123,92,110,32,32,32,32,118,97,114,32,115,99,97,108,101,88,32,61,32,116,104,105,115,46,119,105,100,116,104,32,63,32,119,105,100,116,104,32,47,32,116,104,105,115,46,119,105,100,116,104,32,58,32,48,59,92,110,32,32,32,32,118,97,114,32,115,99,97,108,101,89,32,61,32,116,104,105,115,46,104,101,105,103,104,116,32,63,32,104,101,105,103,104,116,32,47,32,116,104,105,115,46,104,101,105,103,104,116,32,58,32,48,59,92,110,32,32,32,32,116,104,105,115,46,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,118,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,99,97,108,101,88,32,33,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,118,46,108,101,102,116,32,42,61,32,115,99,97,108,101,88,59,92,110,32,32,32,32,32,32,32,32,118,46,119,105,100,116,104,32,42,61,32,115,99,97,108,101,88,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,99,97,108,101,89,32,33,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,118,46,116,111,112,32,42,61,32,115,99,97,108,101,89,59,92,110,32,32,32,32,32,32,32,32,118,46,104,101,105,103,104,116,32,42,61,32,115,99,97,108,101,89,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,116,104,105,115,46,119,105,100,116,104,32,61,32,119,105,100,116,104,59,92,110,32,32,32,32,116,104,105,115,46,104,101,105,103,104,116,32,61,32,104,101,105,103,104,116,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,112,117,115,104,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,116,104,105,115,46,105,116,101,109,115,46,112,117,115,104,40,105,116,101,109,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,79,114,105,103,105,110,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,111,114,105,103,105,110,87,105,100,116,104,32,42,32,116,104,105,115,46,111,114,105,103,105,110,72,101,105,103,104,116,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,119,105,100,116,104,32,42,32,116,104,105,115,46,104,101,105,103,104,116,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,79,114,105,103,105,110,82,97,116,105,111,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,111,114,105,103,105,110,72,101,105,103,104,116,32,61,61,61,32,48,32,63,32,48,32,58,32,116,104,105,115,46,111,114,105,103,105,110,87,105,100,116,104,32,47,32,116,104,105,115,46,111,114,105,103,105,110,72,101,105,103,104,116,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,82,97,116,105,111,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,104,101,105,103,104,116,32,61,61,61,32,48,32,63,32,48,32,58,32,116,104,105,115,46,119,105,100,116,104,32,47,32,116,104,105,115,46,104,101,105,103,104,116,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,66,111,120,77,111,100,101,108,59,92,110,125,40,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,67,111,115,116,40,111,114,105,103,105,110,76,101,110,103,116,104,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,118,97,114,32,99,111,115,116,32,61,32,111,114,105,103,105,110,76,101,110,103,116,104,32,47,32,108,101,110,103,116,104,59,92,110,92,110,32,32,105,102,32,40,99,111,115,116,32,60,32,49,41,32,123,92,110,32,32,32,32,99,111,115,116,32,61,32,49,32,47,32,99,111,115,116,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,99,111,115,116,32,45,32,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,105,116,65,114,101,97,40,105,116,101,109,44,32,98,101,115,116,70,105,116,65,114,101,97,44,32,105,116,101,109,70,105,116,83,105,122,101,44,32,99,111,110,116,97,105,110,101,114,70,105,116,83,105,122,101,44,32,108,97,121,111,117,116,86,101,114,116,105,99,97,108,41,32,123,92,110,32,32,105,116,101,109,46,104,101,105,103,104,116,32,61,32,105,116,101,109,70,105,116,83,105,122,101,46,104,101,105,103,104,116,59,92,110,32,32,105,116,101,109,46,119,105,100,116,104,32,61,32,105,116,101,109,70,105,116,83,105,122,101,46,119,105,100,116,104,59,92,110,32,32,98,101,115,116,70,105,116,65,114,101,97,46,104,101,105,103,104,116,32,61,32,99,111,110,116,97,105,110,101,114,70,105,116,83,105,122,101,46,104,101,105,103,104,116,59,92,110,32,32,98,101,115,116,70,105,116,65,114,101,97,46,119,105,100,116,104,32,61,32,99,111,110,116,97,105,110,101,114,70,105,116,83,105,122,101,46,119,105,100,116,104,59,92,110,92,110,32,32,105,102,32,40,108,97,121,111,117,116,86,101,114,116,105,99,97,108,41,32,123,92,110,32,32,32,32,105,116,101,109,46,116,111,112,32,61,32,98,101,115,116,70,105,116,65,114,101,97,46,116,111,112,32,43,32,98,101,115,116,70,105,116,65,114,101,97,46,104,101,105,103,104,116,59,92,110,32,32,32,32,105,116,101,109,46,108,101,102,116,32,61,32,98,101,115,116,70,105,116,65,114,101,97,46,108,101,102,116,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,105,116,101,109,46,108,101,102,116,32,61,32,98,101,115,116,70,105,116,65,114,101,97,46,108,101,102,116,32,43,32,98,101,115,116,70,105,116,65,114,101,97,46,119,105,100,116,104,59,92,110,32,32,32,32,105,116,101,109,46,116,111,112,32,61,32,98,101,115,116,70,105,116,65,114,101,97,46,116,111,112,59,92,110,32,32,125,92,110,125,92,110,47,42,42,92,110,32,42,32,64,99,108,97,115,115,100,101,115,99,32,84,104,101,32,80,97,99,107,105,110,103,76,97,121,111,117,116,32,105,115,32,97,32,108,97,121,111,117,116,32,116,104,97,116,32,115,104,111,119,115,32,116,104,101,32,105,109,112,111,114,116,97,110,116,32,99,97,114,100,115,32,98,105,103,103,101,114,32,119,105,116,104,111,117,116,32,115,97,99,114,105,102,105,99,105,110,103,32,116,104,101,32,119,101,105,103,104,116,32,111,102,32,116,104,101,32,99,97,114,100,115,46,32,82,111,119,115,32,97,110,100,32,99,111,108,117,109,110,115,32,97,114,101,32,115,101,112,97,114,97,116,101,100,32,115,111,32,116,104,97,116,32,99,97,114,100,115,32,97,114,101,32,100,121,110,97,109,105,99,97,108,108,121,32,112,108,97,99,101,100,32,119,105,116,104,105,110,32,116,104,101,32,104,111,114,105,122,111,110,116,97,108,32,97,110,100,32,118,101,114,116,105,99,97,108,32,115,112,97,99,101,32,114,97,116,104,101,114,32,116,104,97,110,32,97,114,114,97,110,103,101,100,32,105,110,32,97,110,32,111,114,100,101,114,108,121,32,102,97,115,104,105,111,110,46,92,110,32,42,32,64,107,111,32,80,97,99,107,105,110,103,76,97,121,111,117,116,236,157,128,32,236,185,180,235,147,156,236,157,152,32,235,179,184,235,158,152,32,237,129,172,234,184,176,236,151,144,32,235,148,176,235,165,184,32,235,185,132,236,164,145,236,157,132,32,237,149,180,236,185,152,236,167,128,32,236,149,138,236,156,188,235,169,180,236,132,156,32,236,164,145,236,154,148,237,149,156,32,236,185,180,235,147,156,235,138,148,32,235,141,148,32,237,129,172,234,178,140,32,235,179,180,236,151,172,32,236,163,188,235,138,148,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,180,235,139,164,46,32,237,150,137,234,179,188,32,236,151,180,236,157,180,32,234,181,172,235,182,132,235,143,188,32,236,157,180,235,175,184,236,167,128,235,165,188,32,236,160,149,235,143,136,235,144,152,234,178,140,32,235,176,176,236,185,152,237,149,152,235,138,148,32,235,140,128,236,139,160,32,234,176,128,235,161,156,236,132,184,235,161,156,32,236,157,188,236,160,149,32,234,179,181,234,176,132,32,235,130,180,236,151,144,236,132,156,32,235,143,153,236,160,129,236,156,188,235,161,156,32,236,185,180,235,147,156,235,165,188,32,235,176,176,236,185,152,237,149,156,235,139,164,46,92,110,32,42,32,64,99,108,97,115,115,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,80,97,99,107,105,110,103,76,97,121,111,117,116,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,112,116,105,111,110,115,93,32,84,104,101,32,111,112,116,105,111,110,32,111,98,106,101,99,116,32,111,102,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,80,97,99,107,105,110,103,76,97,121,111,117,116,32,109,111,100,117,108,101,32,60,107,111,62,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,80,97,99,107,105,110,103,76,97,121,111,117,116,32,235,170,168,235,147,136,236,157,152,32,236,152,181,236,133,152,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,91,111,112,116,105,111,110,115,46,109,97,114,103,105,110,61,48,93,32,77,97,114,103,105,110,32,117,115,101,100,32,116,111,32,99,114,101,97,116,101,32,115,112,97,99,101,32,97,114,111,117,110,100,32,105,116,101,109,115,32,60,107,111,62,236,149,132,236,157,180,237,133,156,235,147,164,32,236,130,172,236,157,180,236,157,152,32,234,179,181,234,176,132,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,61,102,97,108,115,101,93,32,68,105,114,101,99,116,105,111,110,32,111,102,32,116,104,101,32,115,99,114,111,108,108,32,109,111,118,101,109,101,110,116,32,40,102,97,108,115,101,58,32,118,101,114,116,105,99,97,108,44,32,116,114,117,101,58,32,104,111,114,105,122,111,110,116,97,108,41,32,60,107,111,62,236,138,164,237,129,172,235,161,164,32,236,157,180,235,143,153,32,235,176,169,237,150,165,32,40,102,97,108,115,101,58,32,236,132,184,235,161,156,235,176,169,237,150,165,44,32,116,114,117,101,58,32,234,176,128,235,161,156,235,176,169,237,150,165,41,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,97,115,112,101,99,116,82,97,116,105,111,61,49,93,32,84,104,101,32,97,115,112,101,99,116,32,114,97,116,105,111,32,111,102,32,116,104,101,32,103,114,111,117,112,32,60,107,111,62,32,234,183,184,235,163,185,236,157,152,32,234,176,128,235,161,156,32,236,132,184,235,161,156,32,235,185,132,32,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,115,105,122,101,87,101,105,103,104,116,61,49,93,32,84,104,101,32,115,105,122,101,32,119,101,105,103,104,116,32,119,104,101,110,32,112,108,97,99,105,110,103,32,97,110,32,105,109,97,103,101,32,60,107,111,62,32,236,157,180,235,175,184,236,167,128,235,165,188,32,235,176,176,236,185,152,237,149,160,32,235,149,140,32,236,130,172,236,157,180,236,166,136,32,234,176,128,236,164,145,236,185,152,32,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,114,97,116,105,111,87,101,105,103,104,116,61,49,93,32,84,104,101,32,114,97,116,105,111,32,119,101,105,103,104,116,32,119,104,101,110,32,112,108,97,99,105,110,103,32,97,110,32,105,109,97,103,101,32,60,107,111,62,32,236,157,180,235,175,184,236,167,128,235,165,188,32,235,176,176,236,185,152,237,149,160,32,235,149,140,32,235,185,132,236,156,168,32,234,176,128,236,164,145,236,185,152,32,60,47,107,111,62,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,96,96,96,92,110,60,115,99,114,105,112,116,62,92,110,118,97,114,32,105,103,32,61,32,110,101,119,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,40,92,34,35,103,114,105,100,92,34,46,32,123,92,110,32,32,104,111,114,105,122,111,110,116,97,108,58,32,116,114,117,101,44,92,110,125,41,59,92,110,92,110,105,103,46,115,101,116,76,97,121,111,117,116,40,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,80,97,99,107,105,110,103,76,97,121,111,117,116,44,32,123,92,110,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,97,115,112,101,99,116,82,97,116,105,111,58,32,49,44,92,110,32,32,115,105,122,101,87,101,105,103,104,116,58,32,49,44,92,110,32,32,114,97,116,105,111,87,101,105,103,104,116,58,32,50,44,92,110,125,41,59,92,110,92,110,47,47,32,111,114,92,110,92,110,118,97,114,32,108,97,121,111,117,116,32,61,32,110,101,119,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,80,97,99,107,105,110,103,76,97,121,111,117,116,40,123,92,110,32,32,104,111,114,105,122,111,110,116,97,108,58,32,116,114,117,101,44,92,110,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,97,115,112,101,99,116,82,97,116,105,111,58,32,49,44,92,110,32,32,115,105,122,101,87,101,105,103,104,116,58,32,49,44,92,110,32,32,114,97,116,105,111,87,101,105,103,104,116,58,32,50,44,92,110,125,41,59,92,110,92,110,60,47,115,99,114,105,112,116,62,92,110,96,96,96,92,110,32,42,42,47,92,110,92,110,92,110,118,97,114,32,80,97,99,107,105,110,103,76,97,121,111,117,116,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,80,97,99,107,105,110,103,76,97,121,111,117,116,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,97,115,115,105,103,110,79,112,116,105,111,110,115,40,123,92,110,32,32,32,32,32,32,109,97,114,103,105,110,58,32,48,44,92,110,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,97,115,112,101,99,116,82,97,116,105,111,58,32,49,44,92,110,32,32,32,32,32,32,115,105,122,101,87,101,105,103,104,116,58,32,49,44,92,110,32,32,32,32,32,32,114,97,116,105,111,87,101,105,103,104,116,58,32,49,92,110,32,32,32,32,125,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,116,104,105,115,46,95,115,105,122,101,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,95,115,116,121,108,101,32,61,32,103,101,116,83,116,121,108,101,78,97,109,101,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,41,59,92,110,32,32,125,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,100,100,115,32,105,116,101,109,115,32,97,116,32,116,104,101,32,98,111,116,116,111,109,32,111,102,32,97,32,111,117,116,108,105,110,101,46,92,110,32,32,32,42,32,64,107,111,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,132,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,149,132,235,158,152,236,151,144,32,236,182,148,234,176,128,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,80,97,99,107,105,110,103,76,97,121,111,117,116,35,97,112,112,101,110,100,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,105,116,101,109,115,32,65,114,114,97,121,32,111,102,32,105,116,101,109,115,32,116,111,32,98,101,32,108,97,121,111,117,116,101,100,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,237,149,160,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,111,117,116,108,105,110,101,61,91,93,93,32,65,114,114,97,121,32,111,102,32,111,117,116,108,105,110,101,32,112,111,105,110,116,115,32,116,111,32,98,101,32,114,101,102,101,114,101,110,99,101,32,112,111,105,110,116,115,32,60,107,111,62,234,184,176,236,164,128,236,160,144,236,157,180,32,235,144,152,235,138,148,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,160,144,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,32,76,97,121,111,117,116,101,100,32,105,116,101,109,115,32,97,110,100,32,111,117,116,108,105,110,101,32,111,102,32,115,116,97,114,116,32,97,110,100,32,101,110,100,32,60,107,111,62,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,180,32,235,144,156,32,236,149,132,236,157,180,237,133,156,234,179,188,32,236,139,156,236,158,145,234,179,188,32,235,129,157,236,157,152,32,236,149,132,236,155,131,235,157,188,236,157,184,236,157,180,32,235,139,180,234,184,180,32,236,160,149,235,179,180,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,112,114,101,112,101,110,100,40,105,116,101,109,115,44,32,91,49,48,48,93,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,80,97,99,107,105,110,103,76,97,121,111,117,116,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,97,112,112,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,99,97,99,104,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,116,114,117,101,44,32,99,97,99,104,101,41,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,100,100,115,32,105,116,101,109,115,32,97,116,32,116,104,101,32,116,111,112,32,111,102,32,97,32,111,117,116,108,105,110,101,46,92,110,32,32,32,42,32,64,107,111,32,236,149,132,236,157,180,237,133,156,236,157,132,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,156,132,236,151,144,32,236,182,148,234,176,128,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,80,97,99,107,105,110,103,76,97,121,111,117,116,35,112,114,101,112,101,110,100,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,105,116,101,109,115,32,65,114,114,97,121,32,111,102,32,105,116,101,109,115,32,116,111,32,98,101,32,108,97,121,111,117,116,101,100,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,237,149,160,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,111,117,116,108,105,110,101,61,91,93,93,32,65,114,114,97,121,32,111,102,32,111,117,116,108,105,110,101,32,112,111,105,110,116,115,32,116,111,32,98,101,32,114,101,102,101,114,101,110,99,101,32,112,111,105,110,116,115,32,60,107,111,62,234,184,176,236,164,128,236,160,144,236,157,180,32,235,144,152,235,138,148,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,160,144,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,32,76,97,121,111,117,116,101,100,32,105,116,101,109,115,32,97,110,100,32,111,117,116,108,105,110,101,32,111,102,32,115,116,97,114,116,32,97,110,100,32,101,110,100,32,60,107,111,62,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,180,32,235,144,156,32,236,149,132,236,157,180,237,133,156,234,179,188,32,236,139,156,236,158,145,234,179,188,32,235,129,157,236,157,152,32,236,149,132,236,155,131,235,157,188,236,157,184,236,157,180,32,235,139,180,234,184,180,32,236,160,149,235,179,180,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,112,114,101,112,101,110,100,40,105,116,101,109,115,44,32,91,49,48,48,93,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,112,114,101,112,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,99,97,99,104,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,102,97,108,115,101,44,32,99,97,99,104,101,41,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,100,100,115,32,105,116,101,109,115,32,111,102,32,103,114,111,117,112,115,32,97,116,32,116,104,101,32,98,111,116,116,111,109,32,111,102,32,97,32,111,117,116,108,105,110,101,46,92,110,32,32,32,42,32,64,107,111,32,234,183,184,235,163,185,235,147,164,236,157,152,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,132,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,149,132,235,158,152,236,151,144,32,236,182,148,234,176,128,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,80,97,99,107,105,110,103,76,97,121,111,117,116,35,108,97,121,111,117,116,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,103,114,111,117,112,115,32,65,114,114,97,121,32,111,102,32,103,114,111,117,112,115,32,116,111,32,98,101,32,108,97,121,111,117,116,101,100,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,237,149,160,32,234,183,184,235,163,185,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,111,117,116,108,105,110,101,32,65,114,114,97,121,32,111,102,32,111,117,116,108,105,110,101,32,112,111,105,110,116,115,32,116,111,32,98,101,32,114,101,102,101,114,101,110,99,101,32,112,111,105,110,116,115,32,60,107,111,62,234,184,176,236,164,128,236,160,144,236,157,180,32,235,144,152,235,138,148,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,160,144,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,80,97,99,107,105,110,103,76,97,121,111,117,116,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,108,97,121,111,117,116,40,103,114,111,117,112,115,44,32,91,49,48,48,44,32,50,48,48,44,32,51,48,48,44,32,52,48,48,93,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,108,97,121,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,115,44,32,111,117,116,108,105,110,101,41,32,123,92,110,32,32,32,32,105,102,32,40,103,114,111,117,112,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,115,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,111,117,116,108,105,110,101,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,112,111,105,110,116,32,61,32,111,117,116,108,105,110,101,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,105,93,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,111,117,116,108,105,110,101,115,32,61,32,116,104,105,115,46,95,108,97,121,111,117,116,40,103,114,111,117,112,46,105,116,101,109,115,44,32,112,111,105,110,116,44,32,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,103,114,111,117,112,46,111,117,116,108,105,110,101,115,32,61,32,111,117,116,108,105,110,101,115,59,92,110,32,32,32,32,32,32,112,111,105,110,116,32,61,32,111,117,116,108,105,110,101,115,46,101,110,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,83,101,116,32,116,104,101,32,118,105,101,119,112,111,114,116,32,115,105,122,101,32,111,102,32,116,104,101,32,108,97,121,111,117,116,46,92,110,32,32,32,42,32,64,107,111,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,152,32,234,176,128,236,139,156,32,236,130,172,236,157,180,236,166,136,235,165,188,32,236,132,164,236,160,149,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,80,97,99,107,105,110,103,76,97,121,111,117,116,35,115,101,116,83,105,122,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,115,105,122,101,32,84,104,101,32,118,105,101,119,112,111,114,116,32,115,105,122,101,32,111,102,32,99,111,110,116,97,105,110,101,114,32,97,114,101,97,32,119,104,101,114,101,32,105,116,101,109,115,32,97,114,101,32,97,100,100,101,100,32,116,111,32,97,32,108,97,121,111,117,116,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,236,151,144,32,236,149,132,236,157,180,237,133,156,236,157,132,32,236,182,148,234,176,128,237,149,152,235,138,148,32,236,187,168,237,133,140,236,157,180,235,132,136,32,236,152,129,236,151,173,236,157,152,32,234,176,128,236,139,156,32,236,130,172,236,157,180,236,166,136,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,80,97,99,107,105,110,103,76,97,121,111,117,116,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,115,101,116,83,105,122,101,40,56,48,48,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,115,105,122,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,115,105,122,101,32,61,32,115,105,122,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,102,105,110,100,66,101,115,116,70,105,116,65,114,101,97,32,61,32,102,117,110,99,116,105,111,110,32,40,99,111,110,116,97,105,110,101,114,44,32,105,116,101,109,41,32,123,92,110,32,32,32,32,105,102,32,40,99,111,110,116,97,105,110,101,114,46,103,101,116,82,97,116,105,111,40,41,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,47,47,32,236,149,132,236,157,180,237,133,156,32,236,181,156,236,180,136,32,236,130,189,236,158,133,236,139,156,32,236,160,132,236,178,180,236,152,129,236,151,173,32,236,167,128,236,160,149,92,110,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,46,111,114,105,103,105,110,87,105,100,116,104,32,61,32,105,116,101,109,46,119,105,100,116,104,59,92,110,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,46,111,114,105,103,105,110,72,101,105,103,104,116,32,61,32,105,116,101,109,46,104,101,105,103,104,116,59,92,110,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,46,119,105,100,116,104,32,61,32,105,116,101,109,46,119,105,100,116,104,59,92,110,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,46,104,101,105,103,104,116,32,61,32,105,116,101,109,46,104,101,105,103,104,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,98,101,115,116,70,105,116,65,114,101,97,59,92,110,32,32,32,32,118,97,114,32,109,105,110,67,111,115,116,32,61,32,49,48,48,48,48,48,48,48,59,92,110,32,32,32,32,118,97,114,32,108,97,121,111,117,116,86,101,114,116,105,99,97,108,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,70,105,116,83,105,122,101,32,61,32,123,92,110,32,32,32,32,32,32,119,105,100,116,104,58,32,48,44,92,110,32,32,32,32,32,32,104,101,105,103,104,116,58,32,48,92,110,32,32,32,32,125,59,92,110,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,70,105,116,83,105,122,101,32,61,32,123,92,110,32,32,32,32,32,32,119,105,100,116,104,58,32,48,44,92,110,32,32,32,32,32,32,104,101,105,103,104,116,58,32,48,92,110,32,32,32,32,125,59,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,87,101,105,103,104,116,32,61,32,95,97,46,115,105,122,101,87,101,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,114,97,116,105,111,87,101,105,103,104,116,32,61,32,95,97,46,114,97,116,105,111,87,101,105,103,104,116,59,92,110,32,32,32,32,99,111,110,116,97,105,110,101,114,46,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,118,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,83,105,122,101,67,111,115,116,32,61,32,103,101,116,67,111,115,116,40,118,46,103,101,116,79,114,105,103,105,110,83,105,122,101,40,41,44,32,118,46,103,101,116,83,105,122,101,40,41,41,32,42,32,115,105,122,101,87,101,105,103,104,116,59,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,82,97,116,105,111,67,111,115,116,32,61,32,103,101,116,67,111,115,116,40,118,46,103,101,116,79,114,105,103,105,110,82,97,116,105,111,40,41,44,32,118,46,103,101,116,82,97,116,105,111,40,41,41,32,42,32,114,97,116,105,111,87,101,105,103,104,116,59,92,110,32,32,32,32,32,32,118,97,114,32,119,105,100,116,104,32,61,32,118,46,119,105,100,116,104,59,92,110,32,32,32,32,32,32,118,97,114,32,104,101,105,103,104,116,32,61,32,118,46,104,101,105,103,104,116,59,92,110,32,32,32,32,32,32,118,97,114,32,99,111,115,116,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,50,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,87,105,100,116,104,32,61,32,118,111,105,100,32,48,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,72,101,105,103,104,116,32,61,32,118,111,105,100,32,48,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,87,105,100,116,104,32,61,32,118,111,105,100,32,48,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,72,101,105,103,104,116,32,61,32,118,111,105,100,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,236,131,129,237,149,152,236,151,144,32,236,149,132,236,157,180,237,133,156,32,236,182,148,234,176,128,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,87,105,100,116,104,32,61,32,119,105,100,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,72,101,105,103,104,116,32,61,32,104,101,105,103,104,116,32,42,32,40,105,116,101,109,46,104,101,105,103,104,116,32,47,32,40,118,46,111,114,105,103,105,110,72,101,105,103,104,116,32,43,32,105,116,101,109,46,104,101,105,103,104,116,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,87,105,100,116,104,32,61,32,119,105,100,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,72,101,105,103,104,116,32,61,32,104,101,105,103,104,116,32,45,32,105,116,101,109,72,101,105,103,104,116,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,236,162,140,236,154,176,236,151,144,32,236,149,132,236,157,180,237,133,156,32,236,182,148,234,176,128,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,72,101,105,103,104,116,32,61,32,104,101,105,103,104,116,59,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,87,105,100,116,104,32,61,32,119,105,100,116,104,32,42,32,40,105,116,101,109,46,119,105,100,116,104,32,47,32,40,118,46,111,114,105,103,105,110,87,105,100,116,104,32,43,32,105,116,101,109,46,119,105,100,116,104,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,72,101,105,103,104,116,32,61,32,104,101,105,103,104,116,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,87,105,100,116,104,32,61,32,119,105,100,116,104,32,45,32,105,116,101,109,87,105,100,116,104,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,83,105,122,101,32,61,32,105,116,101,109,87,105,100,116,104,32,42,32,105,116,101,109,72,101,105,103,104,116,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,82,97,116,105,111,32,61,32,105,116,101,109,87,105,100,116,104,32,47,32,105,116,101,109,72,101,105,103,104,116,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,83,105,122,101,32,61,32,99,111,110,116,97,105,110,101,114,87,105,100,116,104,32,42,32,99,111,110,116,97,105,110,101,114,72,101,105,103,104,116,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,82,97,116,105,111,32,61,32,99,111,110,116,97,105,110,101,114,72,101,105,103,104,116,32,47,32,99,111,110,116,97,105,110,101,114,72,101,105,103,104,116,59,92,110,32,32,32,32,32,32,32,32,99,111,115,116,32,61,32,103,101,116,67,111,115,116,40,105,116,101,109,46,103,101,116,83,105,122,101,40,41,44,32,105,116,101,109,83,105,122,101,41,32,42,32,115,105,122,101,87,101,105,103,104,116,59,92,110,32,32,32,32,32,32,32,32,99,111,115,116,32,43,61,32,103,101,116,67,111,115,116,40,105,116,101,109,46,103,101,116,82,97,116,105,111,40,41,44,32,105,116,101,109,82,97,116,105,111,41,32,42,32,114,97,116,105,111,87,101,105,103,104,116,59,92,110,32,32,32,32,32,32,32,32,99,111,115,116,32,43,61,32,103,101,116,67,111,115,116,40,118,46,103,101,116,79,114,105,103,105,110,83,105,122,101,40,41,44,32,99,111,110,116,97,105,110,101,114,83,105,122,101,41,32,42,32,115,105,122,101,87,101,105,103,104,116,32,45,32,99,111,110,116,97,105,110,101,114,83,105,122,101,67,111,115,116,59,92,110,32,32,32,32,32,32,32,32,99,111,115,116,32,43,61,32,103,101,116,67,111,115,116,40,118,46,103,101,116,79,114,105,103,105,110,82,97,116,105,111,40,41,44,32,99,111,110,116,97,105,110,101,114,82,97,116,105,111,41,32,42,32,114,97,116,105,111,87,101,105,103,104,116,32,45,32,99,111,110,116,97,105,110,101,114,82,97,116,105,111,67,111,115,116,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,111,115,116,32,61,61,61,32,77,97,116,104,46,109,105,110,40,99,111,115,116,44,32,109,105,110,67,111,115,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,109,105,110,67,111,115,116,32,61,32,99,111,115,116,59,92,110,32,32,32,32,32,32,32,32,32,32,98,101,115,116,70,105,116,65,114,101,97,32,61,32,118,59,92,110,32,32,32,32,32,32,32,32,32,32,108,97,121,111,117,116,86,101,114,116,105,99,97,108,32,61,32,105,32,61,61,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,70,105,116,83,105,122,101,46,119,105,100,116,104,32,61,32,105,116,101,109,87,105,100,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,70,105,116,83,105,122,101,46,104,101,105,103,104,116,32,61,32,105,116,101,109,72,101,105,103,104,116,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,70,105,116,83,105,122,101,46,119,105,100,116,104,32,61,32,99,111,110,116,97,105,110,101,114,87,105,100,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,70,105,116,83,105,122,101,46,104,101,105,103,104,116,32,61,32,99,111,110,116,97,105,110,101,114,72,101,105,103,104,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,102,105,116,65,114,101,97,40,105,116,101,109,44,32,98,101,115,116,70,105,116,65,114,101,97,44,32,105,116,101,109,70,105,116,83,105,122,101,44,32,99,111,110,116,97,105,110,101,114,70,105,116,83,105,122,101,44,32,108,97,121,111,117,116,86,101,114,116,105,99,97,108,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,108,97,121,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,102,32,40,111,117,116,108,105,110,101,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,115,116,121,108,101,32,61,32,116,104,105,115,46,95,115,116,121,108,101,59,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,32,61,32,95,97,46,104,111,114,105,122,111,110,116,97,108,44,92,110,32,32,32,32,32,32,32,32,97,115,112,101,99,116,82,97,116,105,111,32,61,32,95,97,46,97,115,112,101,99,116,82,97,116,105,111,44,92,110,32,32,32,32,32,32,32,32,109,97,114,103,105,110,32,61,32,95,97,46,109,97,114,103,105,110,59,92,110,32,32,32,32,118,97,114,32,112,111,115,49,78,97,109,101,32,61,32,115,116,121,108,101,46,115,116,97,114,116,80,111,115,49,59,92,110,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,87,105,100,116,104,32,61,32,116,104,105,115,46,95,115,105,122,101,32,42,32,40,104,111,114,105,122,111,110,116,97,108,32,63,32,97,115,112,101,99,116,82,97,116,105,111,32,58,32,49,41,59,92,110,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,72,101,105,103,104,116,32,61,32,116,104,105,115,46,95,115,105,122,101,32,47,32,40,104,111,114,105,122,111,110,116,97,108,32,63,32,49,32,58,32,97,115,112,101,99,116,82,97,116,105,111,41,59,92,110,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,83,105,122,101,49,32,61,32,104,111,114,105,122,111,110,116,97,108,32,63,32,99,111,110,116,97,105,110,101,114,87,105,100,116,104,32,58,32,99,111,110,116,97,105,110,101,114,72,101,105,103,104,116,59,92,110,32,32,32,32,118,97,114,32,112,114,101,118,79,117,116,108,105,110,101,32,61,32,116,111,90,101,114,111,65,114,114,97,121,40,111,117,116,108,105,110,101,41,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,32,61,32,105,115,65,112,112,101,110,100,32,63,32,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,32,112,114,101,118,79,117,116,108,105,110,101,41,32,58,32,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,77,97,116,104,44,32,112,114,101,118,79,117,116,108,105,110,101,41,32,45,32,99,111,110,116,97,105,110,101,114,83,105,122,101,49,32,45,32,109,97,114,103,105,110,59,92,110,32,32,32,32,118,97,114,32,101,110,100,32,61,32,115,116,97,114,116,32,43,32,99,111,110,116,97,105,110,101,114,83,105,122,101,49,32,43,32,109,97,114,103,105,110,59,92,110,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,32,61,32,110,101,119,32,66,111,120,77,111,100,101,108,40,123,125,41,59,92,110,32,32,32,32,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,97,32,61,32,105,116,101,109,46,111,114,103,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,32,61,32,95,97,46,119,105,100,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,104,101,105,103,104,116,32,61,32,95,97,46,104,101,105,103,104,116,59,92,110,32,32,32,32,32,32,118,97,114,32,109,111,100,101,108,32,61,32,110,101,119,32,66,111,120,77,111,100,101,108,40,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,119,105,100,116,104,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,104,101,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,111,114,105,103,105,110,87,105,100,116,104,58,32,119,105,100,116,104,44,92,110,32,32,32,32,32,32,32,32,111,114,105,103,105,110,72,101,105,103,104,116,58,32,104,101,105,103,104,116,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,95,102,105,110,100,66,101,115,116,70,105,116,65,114,101,97,40,99,111,110,116,97,105,110,101,114,44,32,109,111,100,101,108,41,59,92,110,92,110,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,46,112,117,115,104,40,109,111,100,101,108,41,59,92,110,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,46,115,99,97,108,101,84,111,40,99,111,110,116,97,105,110,101,114,87,105,100,116,104,32,43,32,109,97,114,103,105,110,44,32,99,111,110,116,97,105,110,101,114,72,101,105,103,104,116,32,43,32,109,97,114,103,105,110,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,44,32,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,111,120,73,116,101,109,32,61,32,99,111,110,116,97,105,110,101,114,46,105,116,101,109,115,91,105,93,59,92,110,32,32,32,32,32,32,118,97,114,32,119,105,100,116,104,32,61,32,98,111,120,73,116,101,109,46,119,105,100,116,104,59,92,110,32,32,32,32,32,32,118,97,114,32,104,101,105,103,104,116,32,61,32,98,111,120,73,116,101,109,46,104,101,105,103,104,116,59,92,110,32,32,32,32,32,32,118,97,114,32,116,111,112,32,61,32,98,111,120,73,116,101,109,46,116,111,112,59,92,110,32,32,32,32,32,32,118,97,114,32,108,101,102,116,32,61,32,98,111,120,73,116,101,109,46,108,101,102,116,59,92,110,32,32,32,32,32,32,105,116,101,109,46,114,101,99,116,32,61,32,123,92,110,32,32,32,32,32,32,32,32,116,111,112,58,32,116,111,112,44,92,110,32,32,32,32,32,32,32,32,108,101,102,116,58,32,108,101,102,116,44,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,119,105,100,116,104,32,45,32,109,97,114,103,105,110,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,104,101,105,103,104,116,32,45,32,109,97,114,103,105,110,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,105,116,101,109,46,114,101,99,116,91,112,111,115,49,78,97,109,101,93,32,43,61,32,115,116,97,114,116,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,58,32,91,115,116,97,114,116,93,44,92,110,32,32,32,32,32,32,101,110,100,58,32,91,101,110,100,93,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,105,110,115,101,114,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,44,32,99,97,99,104,101,41,32,123,92,110,32,32,32,32,105,102,32,40,105,116,101,109,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,105,116,101,109,115,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,111,117,116,108,105,110,101,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,91,93,59,92,110,32,32,32,32,125,32,47,47,32,116,104,105,115,32,111,110,108,121,32,110,101,101,100,115,32,116,104,101,32,115,105,122,101,32,111,102,32,116,104,101,32,105,116,101,109,46,92,110,92,110,92,110,32,32,32,32,118,97,114,32,99,108,111,110,101,32,61,32,99,97,99,104,101,32,63,32,105,116,101,109,115,32,58,32,99,108,111,110,101,73,116,101,109,115,40,105,116,101,109,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,105,116,101,109,115,58,32,99,108,111,110,101,44,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,115,58,32,116,104,105,115,46,95,108,97,121,111,117,116,40,99,108,111,110,101,44,32,111,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,41,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,80,97,99,107,105,110,103,76,97,121,111,117,116,59,92,110,125,40,41,59,92,110,92,110,47,42,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,32,42,47,92,110,92,110,47,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,92,110,32,42,32,67,114,101,97,116,101,100,32,50,48,48,56,45,48,56,45,49,57,46,92,110,32,42,92,110,32,42,32,68,105,106,107,115,116,114,97,32,112,97,116,104,45,102,105,110,100,105,110,103,32,102,117,110,99,116,105,111,110,115,46,32,65,100,97,112,116,101,100,32,102,114,111,109,32,116,104,101,32,68,105,106,107,115,116,97,114,32,80,121,116,104,111,110,32,112,114,111,106,101,99,116,46,92,110,32,42,92,110,32,42,32,67,111,112,121,114,105,103,104,116,32,40,67,41,32,50,48,48,56,92,110,32,42,32,32,32,87,121,97,116,116,32,66,97,108,100,119,105,110,32,60,115,101,108,102,64,119,121,97,116,116,98,97,108,100,119,105,110,46,99,111,109,62,92,110,32,42,32,32,32,65,108,108,32,114,105,103,104,116,115,32,114,101,115,101,114,118,101,100,92,110,32,42,92,110,32,42,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,46,92,110,32,42,92,110,32,42,32,32,32,104,116,116,112,58,47,47,119,119,119,46,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,109,105,116,45,108,105,99,101,110,115,101,46,112,104,112,92,110,32,42,92,110,32,42,32,84,72,69,32,83,79,70,84,87,65,82,69,32,73,83,32,80,82,79,86,73,68,69,68,32,92,34,65,83,32,73,83,92,34,44,32,87,73,84,72,79,85,84,32,87,65,82,82,65,78,84,89,32,79,70,32,65,78,89,32,75,73,78,68,44,32,69,88,80,82,69,83,83,32,79,82,92,110,32,42,32,73,77,80,76,73,69,68,44,32,73,78,67,76,85,68,73,78,71,32,66,85,84,32,78,79,84,32,76,73,77,73,84,69,68,32,84,79,32,84,72,69,32,87,65,82,82,65,78,84,73,69,83,32,79,70,32,77,69,82,67,72,65,78,84,65,66,73,76,73,84,89,44,92,110,32,42,32,70,73,84,78,69,83,83,32,70,79,82,32,65,32,80,65,82,84,73,67,85,76,65,82,32,80,85,82,80,79,83,69,32,65,78,68,32,78,79,78,73,78,70,82,73,78,71,69,77,69,78,84,46,32,73,78,32,78,79,32,69,86,69,78,84,32,83,72,65,76,76,32,84,72,69,92,110,32,42,32,65,85,84,72,79,82,83,32,79,82,32,67,79,80,89,82,73,71,72,84,32,72,79,76,68,69,82,83,32,66,69,32,76,73,65,66,76,69,32,70,79,82,32,65,78,89,32,67,76,65,73,77,44,32,68,65,77,65,71,69,83,32,79,82,32,79,84,72,69,82,92,110,32,42,32,76,73,65,66,73,76,73,84,89,44,32,87,72,69,84,72,69,82,32,73,78,32,65,78,32,65,67,84,73,79,78,32,79,70,32,67,79,78,84,82,65,67,84,44,32,84,79,82,84,32,79,82,32,79,84,72,69,82,87,73,83,69,44,32,65,82,73,83,73,78,71,32,70,82,79,77,44,92,110,32,42,32,79,85,84,32,79,70,32,79,82,32,73,78,32,67,79,78,78,69,67,84,73,79,78,32,87,73,84,72,32,84,72,69,32,83,79,70,84,87,65,82,69,32,79,82,32,84,72,69,32,85,83,69,32,79,82,32,79,84,72,69,82,32,68,69,65,76,73,78,71,83,32,73,78,92,110,32,42,32,84,72,69,32,83,79,70,84,87,65,82,69,46,92,110,32,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,92,110,102,117,110,99,116,105,111,110,32,115,105,110,103,108,101,95,115,111,117,114,99,101,95,115,104,111,114,116,101,115,116,95,112,97,116,104,115,40,103,114,97,112,104,44,32,115,44,32,100,41,32,123,92,110,32,32,47,47,32,80,114,101,100,101,99,101,115,115,111,114,32,109,97,112,32,102,111,114,32,101,97,99,104,32,110,111,100,101,32,116,104,97,116,32,104,97,115,32,98,101,101,110,32,101,110,99,111,117,110,116,101,114,101,100,46,92,110,32,32,47,47,32,110,111,100,101,32,73,68,32,61,62,32,112,114,101,100,101,99,101,115,115,111,114,32,110,111,100,101,32,73,68,92,110,32,32,118,97,114,32,112,114,101,100,101,99,101,115,115,111,114,115,32,61,32,123,125,59,32,47,47,32,67,111,115,116,115,32,111,102,32,115,104,111,114,116,101,115,116,32,112,97,116,104,115,32,102,114,111,109,32,115,32,116,111,32,97,108,108,32,110,111,100,101,115,32,101,110,99,111,117,110,116,101,114,101,100,46,92,110,32,32,47,47,32,110,111,100,101,32,73,68,32,61,62,32,99,111,115,116,92,110,92,110,32,32,118,97,114,32,99,111,115,116,115,32,61,32,123,125,59,92,110,32,32,99,111,115,116,115,91,115,93,32,61,32,48,59,32,47,47,32,67,111,115,116,115,32,111,102,32,115,104,111,114,116,101,115,116,32,112,97,116,104,115,32,102,114,111,109,32,115,32,116,111,32,97,108,108,32,110,111,100,101,115,32,101,110,99,111,117,110,116,101,114,101,100,59,32,100,105,102,102,101,114,115,32,102,114,111,109,92,110,32,32,47,47,32,96,99,111,115,116,115,96,32,105,110,32,116,104,97,116,32,105,116,32,112,114,111,118,105,100,101,115,32,101,97,115,121,32,97,99,99,101,115,115,32,116,111,32,116,104,101,32,110,111,100,101,32,116,104,97,116,32,99,117,114,114,101,110,116,108,121,32,104,97,115,92,110,32,32,47,47,32,116,104,101,32,107,110,111,119,110,32,115,104,111,114,116,101,115,116,32,112,97,116,104,32,102,114,111,109,32,115,46,92,110,32,32,47,47,32,88,88,88,58,32,68,111,32,119,101,32,97,99,116,117,97,108,108,121,32,110,101,101,100,32,98,111,116,104,32,96,99,111,115,116,115,96,32,97,110,100,32,96,111,112,101,110,96,63,92,110,92,110,32,32,118,97,114,32,111,112,101,110,32,61,32,110,101,119,32,66,105,110,97,114,121,72,101,97,112,40,102,117,110,99,116,105,111,110,32,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,46,99,111,115,116,59,92,110,32,32,125,41,59,92,110,32,32,111,112,101,110,46,112,117,115,104,40,123,92,110,32,32,32,32,118,97,108,117,101,58,32,115,44,92,110,32,32,32,32,99,111,115,116,58,32,48,92,110,32,32,125,41,59,92,110,32,32,118,97,114,32,99,108,111,115,101,115,116,59,92,110,32,32,118,97,114,32,117,59,92,110,32,32,118,97,114,32,99,111,115,116,95,111,102,95,115,95,116,111,95,117,59,92,110,32,32,118,97,114,32,97,100,106,97,99,101,110,116,95,110,111,100,101,115,59,92,110,32,32,118,97,114,32,99,111,115,116,95,111,102,95,101,59,92,110,32,32,118,97,114,32,99,111,115,116,95,111,102,95,115,95,116,111,95,117,95,112,108,117,115,95,99,111,115,116,95,111,102,95,101,59,92,110,32,32,118,97,114,32,99,111,115,116,95,111,102,95,115,95,116,111,95,118,59,92,110,32,32,118,97,114,32,102,105,114,115,116,95,118,105,115,105,116,59,92,110,92,110,32,32,119,104,105,108,101,32,40,111,112,101,110,46,115,105,122,101,40,41,41,32,123,92,110,32,32,32,32,47,47,32,73,110,32,116,104,101,32,110,111,100,101,115,32,114,101,109,97,105,110,105,110,103,32,105,110,32,103,114,97,112,104,32,116,104,97,116,32,104,97,118,101,32,97,32,107,110,111,119,110,32,99,111,115,116,32,102,114,111,109,32,115,44,92,110,32,32,32,32,47,47,32,102,105,110,100,32,116,104,101,32,110,111,100,101,44,32,117,44,32,116,104,97,116,32,99,117,114,114,101,110,116,108,121,32,104,97,115,32,116,104,101,32,115,104,111,114,116,101,115,116,32,112,97,116,104,32,102,114,111,109,32,115,46,92,110,32,32,32,32,99,108,111,115,101,115,116,32,61,32,111,112,101,110,46,112,111,112,40,41,59,92,110,32,32,32,32,117,32,61,32,99,108,111,115,101,115,116,46,118,97,108,117,101,59,92,110,32,32,32,32,99,111,115,116,95,111,102,95,115,95,116,111,95,117,32,61,32,99,108,111,115,101,115,116,46,99,111,115,116,59,32,47,47,32,71,101,116,32,110,111,100,101,115,32,97,100,106,97,99,101,110,116,32,116,111,32,117,46,46,46,92,110,92,110,32,32,32,32,97,100,106,97,99,101,110,116,95,110,111,100,101,115,32,61,32,103,114,97,112,104,40,117,41,32,124,124,32,123,125,59,32,47,47,32,46,46,46,97,110,100,32,101,120,112,108,111,114,101,32,116,104,101,32,101,100,103,101,115,32,116,104,97,116,32,99,111,110,110,101,99,116,32,117,32,116,111,32,116,104,111,115,101,32,110,111,100,101,115,44,32,117,112,100,97,116,105,110,103,92,110,32,32,32,32,47,47,32,116,104,101,32,99,111,115,116,32,111,102,32,116,104,101,32,115,104,111,114,116,101,115,116,32,112,97,116,104,115,32,116,111,32,97,110,121,32,111,114,32,97,108,108,32,111,102,32,116,104,111,115,101,32,110,111,100,101,115,32,97,115,92,110,32,32,32,32,47,47,32,110,101,99,101,115,115,97,114,121,46,32,118,32,105,115,32,116,104,101,32,110,111,100,101,32,97,99,114,111,115,115,32,116,104,101,32,99,117,114,114,101,110,116,32,101,100,103,101,32,102,114,111,109,32,117,46,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,118,32,105,110,32,97,100,106,97,99,101,110,116,95,110,111,100,101,115,41,32,123,92,110,32,32,32,32,32,32,47,47,32,71,101,116,32,116,104,101,32,99,111,115,116,32,111,102,32,116,104,101,32,101,100,103,101,32,114,117,110,110,105,110,103,32,102,114,111,109,32,117,32,116,111,32,118,46,92,110,32,32,32,32,32,32,99,111,115,116,95,111,102,95,101,32,61,32,97,100,106,97,99,101,110,116,95,110,111,100,101,115,91,118,93,59,32,47,47,32,67,111,115,116,32,111,102,32,115,32,116,111,32,117,32,112,108,117,115,32,116,104,101,32,99,111,115,116,32,111,102,32,117,32,116,111,32,118,32,97,99,114,111,115,115,32,101,45,45,116,104,105,115,32,105,115,32,42,97,42,92,110,32,32,32,32,32,32,47,47,32,99,111,115,116,32,102,114,111,109,32,115,32,116,111,32,118,32,116,104,97,116,32,109,97,121,32,111,114,32,109,97,121,32,110,111,116,32,98,101,32,108,101,115,115,32,116,104,97,110,32,116,104,101,32,99,117,114,114,101,110,116,92,110,32,32,32,32,32,32,47,47,32,107,110,111,119,110,32,99,111,115,116,32,116,111,32,118,46,92,110,92,110,32,32,32,32,32,32,99,111,115,116,95,111,102,95,115,95,116,111,95,117,95,112,108,117,115,95,99,111,115,116,95,111,102,95,101,32,61,32,99,111,115,116,95,111,102,95,115,95,116,111,95,117,32,43,32,99,111,115,116,95,111,102,95,101,59,32,47,47,32,73,102,32,119,101,32,104,97,118,101,110,39,116,32,118,105,115,105,116,101,100,32,118,32,121,101,116,32,79,82,32,105,102,32,116,104,101,32,99,117,114,114,101,110,116,32,107,110,111,119,110,32,99,111,115,116,32,102,114,111,109,32,115,32,116,111,92,110,32,32,32,32,32,32,47,47,32,118,32,105,115,32,103,114,101,97,116,101,114,32,116,104,97,110,32,116,104,101,32,110,101,119,32,99,111,115,116,32,119,101,32,106,117,115,116,32,102,111,117,110,100,32,40,99,111,115,116,32,111,102,32,115,32,116,111,32,117,32,112,108,117,115,92,110,32,32,32,32,32,32,47,47,32,99,111,115,116,32,111,102,32,117,32,116,111,32,118,32,97,99,114,111,115,115,32,101,41,44,32,117,112,100,97,116,101,32,118,39,115,32,99,111,115,116,32,105,110,32,116,104,101,32,99,111,115,116,32,108,105,115,116,32,97,110,100,92,110,32,32,32,32,32,32,47,47,32,117,112,100,97,116,101,32,118,39,115,32,112,114,101,100,101,99,101,115,115,111,114,32,105,110,32,116,104,101,32,112,114,101,100,101,99,101,115,115,111,114,32,108,105,115,116,32,40,105,116,39,115,32,110,111,119,32,117,41,46,92,110,92,110,32,32,32,32,32,32,99,111,115,116,95,111,102,95,115,95,116,111,95,118,32,61,32,99,111,115,116,115,91,118,93,59,92,110,32,32,32,32,32,32,102,105,114,115,116,95,118,105,115,105,116,32,61,32,116,121,112,101,111,102,32,99,111,115,116,115,91,118,93,32,61,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,102,105,114,115,116,95,118,105,115,105,116,32,124,124,32,99,111,115,116,95,111,102,95,115,95,116,111,95,118,32,62,32,99,111,115,116,95,111,102,95,115,95,116,111,95,117,95,112,108,117,115,95,99,111,115,116,95,111,102,95,101,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,115,116,115,91,118,93,32,61,32,99,111,115,116,95,111,102,95,115,95,116,111,95,117,95,112,108,117,115,95,99,111,115,116,95,111,102,95,101,59,92,110,32,32,32,32,32,32,32,32,111,112,101,110,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,118,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,115,116,58,32,99,111,115,116,95,111,102,95,115,95,116,111,95,117,95,112,108,117,115,95,99,111,115,116,95,111,102,95,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,112,114,101,100,101,99,101,115,115,111,114,115,91,118,93,32,61,32,117,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,99,111,115,116,115,91,100,93,32,61,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,41,32,123,92,110,32,32,32,32,118,97,114,32,109,115,103,32,61,32,91,92,34,67,111,117,108,100,32,110,111,116,32,102,105,110,100,32,97,32,112,97,116,104,32,102,114,111,109,32,92,34,44,32,115,44,32,92,34,32,116,111,32,92,34,44,32,100,44,32,92,34,46,92,34,93,46,106,111,105,110,40,92,34,92,34,41,59,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,109,115,103,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,112,114,101,100,101,99,101,115,115,111,114,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,116,114,97,99,116,95,115,104,111,114,116,101,115,116,95,112,97,116,104,95,102,114,111,109,95,112,114,101,100,101,99,101,115,115,111,114,95,108,105,115,116,40,112,114,101,100,101,99,101,115,115,111,114,115,44,32,100,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,115,32,61,32,91,93,59,92,110,32,32,118,97,114,32,117,32,61,32,100,59,92,110,92,110,32,32,119,104,105,108,101,32,40,117,41,32,123,92,110,32,32,32,32,110,111,100,101,115,46,112,117,115,104,40,117,41,59,92,110,32,32,32,32,117,32,61,32,112,114,101,100,101,99,101,115,115,111,114,115,91,117,93,59,92,110,32,32,125,92,110,92,110,32,32,110,111,100,101,115,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,105,110,100,95,112,97,116,104,40,103,114,97,112,104,44,32,115,44,32,100,41,32,123,92,110,32,32,118,97,114,32,112,114,101,100,101,99,101,115,115,111,114,115,32,61,32,115,105,110,103,108,101,95,115,111,117,114,99,101,95,115,104,111,114,116,101,115,116,95,112,97,116,104,115,40,103,114,97,112,104,44,32,115,44,32,100,41,59,92,110,32,32,114,101,116,117,114,110,32,101,120,116,114,97,99,116,95,115,104,111,114,116,101,115,116,95,112,97,116,104,95,102,114,111,109,95,112,114,101,100,101,99,101,115,115,111,114,95,108,105,115,116,40,112,114,101,100,101,99,101,115,115,111,114,115,44,32,100,41,59,92,110,125,92,110,92,110,118,97,114,32,66,105,110,97,114,121,72,101,97,112,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,66,105,110,97,114,121,72,101,97,112,40,115,99,111,114,101,70,117,110,99,116,105,111,110,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,111,110,116,101,110,116,32,61,32,91,93,59,92,110,32,32,32,32,116,104,105,115,46,115,99,111,114,101,70,117,110,99,116,105,111,110,32,61,32,115,99,111,114,101,70,117,110,99,116,105,111,110,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,66,105,110,97,114,121,72,101,97,112,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,112,117,115,104,32,61,32,102,117,110,99,116,105,111,110,32,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,47,47,32,65,100,100,32,116,104,101,32,110,101,119,32,101,108,101,109,101,110,116,32,116,111,32,116,104,101,32,101,110,100,32,111,102,32,116,104,101,32,97,114,114,97,121,46,92,110,32,32,32,32,116,104,105,115,46,99,111,110,116,101,110,116,46,112,117,115,104,40,101,108,101,109,101,110,116,41,59,32,47,47,32,65,108,108,111,119,32,105,116,32,116,111,32,98,117,98,98,108,101,32,117,112,46,92,110,92,110,32,32,32,32,116,104,105,115,46,98,117,98,98,108,101,85,112,40,116,104,105,115,46,99,111,110,116,101,110,116,46,108,101,110,103,116,104,32,45,32,49,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,112,111,112,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,47,47,32,83,116,111,114,101,32,116,104,101,32,102,105,114,115,116,32,101,108,101,109,101,110,116,32,115,111,32,119,101,32,99,97,110,32,114,101,116,117,114,110,32,105,116,32,108,97,116,101,114,46,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,116,104,105,115,46,99,111,110,116,101,110,116,91,48,93,59,32,47,47,32,71,101,116,32,116,104,101,32,101,108,101,109,101,110,116,32,97,116,32,116,104,101,32,101,110,100,32,111,102,32,116,104,101,32,97,114,114,97,121,46,92,110,92,110,32,32,32,32,118,97,114,32,101,110,100,32,61,32,116,104,105,115,46,99,111,110,116,101,110,116,46,112,111,112,40,41,59,32,47,47,32,73,102,32,116,104,101,114,101,32,97,114,101,32,97,110,121,32,101,108,101,109,101,110,116,115,32,108,101,102,116,44,32,112,117,116,32,116,104,101,32,101,110,100,32,101,108,101,109,101,110,116,32,97,116,32,116,104,101,92,110,32,32,32,32,47,47,32,115,116,97,114,116,44,32,97,110,100,32,108,101,116,32,105,116,32,115,105,110,107,32,100,111,119,110,46,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,99,111,110,116,101,110,116,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,111,110,116,101,110,116,91,48,93,32,61,32,101,110,100,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,105,110,107,68,111,119,110,40,48,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,110,116,46,108,101,110,103,116,104,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,98,117,98,98,108,101,85,112,32,61,32,102,117,110,99,116,105,111,110,32,40,95,110,41,32,123,92,110,32,32,32,32,118,97,114,32,110,32,61,32,95,110,59,32,47,47,32,70,101,116,99,104,32,116,104,101,32,101,108,101,109,101,110,116,32,116,104,97,116,32,104,97,115,32,116,111,32,98,101,32,109,111,118,101,100,46,92,110,92,110,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,32,61,32,116,104,105,115,46,99,111,110,116,101,110,116,91,110,93,59,32,47,47,32,87,104,101,110,32,97,116,32,48,44,32,97,110,32,101,108,101,109,101,110,116,32,99,97,110,32,110,111,116,32,103,111,32,117,112,32,97,110,121,32,102,117,114,116,104,101,114,46,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,110,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,112,97,114,101,110,116,32,101,108,101,109,101,110,116,39,115,32,105,110,100,101,120,44,32,97,110,100,32,102,101,116,99,104,32,105,116,46,92,110,32,32,32,32,32,32,118,97,114,32,112,97,114,101,110,116,78,32,61,32,77,97,116,104,46,102,108,111,111,114,40,40,110,32,43,32,49,41,32,47,32,50,41,32,45,32,49,59,92,110,32,32,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,116,104,105,115,46,99,111,110,116,101,110,116,91,112,97,114,101,110,116,78,93,59,32,47,47,32,83,119,97,112,32,116,104,101,32,101,108,101,109,101,110,116,115,32,105,102,32,116,104,101,32,112,97,114,101,110,116,32,105,115,32,103,114,101,97,116,101,114,46,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,115,99,111,114,101,70,117,110,99,116,105,111,110,40,101,108,101,109,101,110,116,41,32,60,32,116,104,105,115,46,115,99,111,114,101,70,117,110,99,116,105,111,110,40,112,97,114,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,111,110,116,101,110,116,91,112,97,114,101,110,116,78,93,32,61,32,101,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,111,110,116,101,110,116,91,110,93,32,61,32,112,97,114,101,110,116,59,32,47,47,32,85,112,100,97,116,101,32,39,110,39,32,116,111,32,99,111,110,116,105,110,117,101,32,97,116,32,116,104,101,32,110,101,119,32,112,111,115,105,116,105,111,110,46,92,110,92,110,32,32,32,32,32,32,32,32,110,32,61,32,112,97,114,101,110,116,78,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,70,111,117,110,100,32,97,32,112,97,114,101,110,116,32,116,104,97,116,32,105,115,32,108,101,115,115,44,32,110,111,32,110,101,101,100,32,116,111,32,109,111,118,101,32,105,116,32,102,117,114,116,104,101,114,46,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,105,110,107,68,111,119,110,32,61,32,102,117,110,99,116,105,111,110,32,40,110,41,32,123,92,110,32,32,32,32,47,47,32,76,111,111,107,32,117,112,32,116,104,101,32,116,97,114,103,101,116,32,101,108,101,109,101,110,116,32,97,110,100,32,105,116,115,32,115,99,111,114,101,46,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,116,104,105,115,46,99,111,110,116,101,110,116,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,32,61,32,116,104,105,115,46,99,111,110,116,101,110,116,91,110,93,59,92,110,32,32,32,32,118,97,114,32,101,108,101,109,83,99,111,114,101,32,61,32,116,104,105,115,46,115,99,111,114,101,70,117,110,99,116,105,111,110,40,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,49,83,99,111,114,101,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,105,110,100,105,99,101,115,32,111,102,32,116,104,101,32,99,104,105,108,100,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,50,78,32,61,32,40,110,32,43,32,49,41,32,42,32,50,59,92,110,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,49,78,32,61,32,99,104,105,108,100,50,78,32,45,32,49,59,32,47,47,32,84,104,105,115,32,105,115,32,117,115,101,100,32,116,111,32,115,116,111,114,101,32,116,104,101,32,110,101,119,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,101,108,101,109,101,110,116,44,92,110,32,32,32,32,32,32,47,47,32,105,102,32,97,110,121,46,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,119,97,112,32,61,32,110,117,108,108,59,32,47,47,32,73,102,32,116,104,101,32,102,105,114,115,116,32,99,104,105,108,100,32,101,120,105,115,116,115,32,40,105,115,32,105,110,115,105,100,101,32,116,104,101,32,97,114,114,97,121,41,46,46,46,92,110,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,49,78,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,76,111,111,107,32,105,116,32,117,112,32,97,110,100,32,99,111,109,112,117,116,101,32,105,116,115,32,115,99,111,114,101,46,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,49,32,61,32,116,104,105,115,46,99,111,110,116,101,110,116,91,99,104,105,108,100,49,78,93,59,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,49,83,99,111,114,101,32,61,32,116,104,105,115,46,115,99,111,114,101,70,117,110,99,116,105,111,110,40,99,104,105,108,100,49,41,59,32,47,47,32,73,102,32,116,104,101,32,115,99,111,114,101,32,105,115,32,108,101,115,115,32,116,104,97,110,32,111,117,114,32,101,108,101,109,101,110,116,39,115,44,32,119,101,32,110,101,101,100,32,116,111,32,115,119,97,112,46,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,49,83,99,111,114,101,32,60,32,101,108,101,109,83,99,111,114,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,119,97,112,32,61,32,99,104,105,108,100,49,78,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,47,47,32,68,111,32,116,104,101,32,115,97,109,101,32,99,104,101,99,107,115,32,102,111,114,32,116,104,101,32,111,116,104,101,114,32,99,104,105,108,100,46,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,50,78,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,50,32,61,32,116,104,105,115,46,99,111,110,116,101,110,116,91,99,104,105,108,100,50,78,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,50,83,99,111,114,101,32,61,32,116,104,105,115,46,115,99,111,114,101,70,117,110,99,116,105,111,110,40,99,104,105,108,100,50,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,50,83,99,111,114,101,32,60,32,40,115,119,97,112,32,61,61,32,110,117,108,108,32,63,32,101,108,101,109,83,99,111,114,101,32,58,32,99,104,105,108,100,49,83,99,111,114,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,119,97,112,32,61,32,99,104,105,108,100,50,78,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,47,47,32,73,102,32,116,104,101,32,101,108,101,109,101,110,116,32,110,101,101,100,115,32,116,111,32,98,101,32,109,111,118,101,100,44,32,115,119,97,112,32,105,116,44,32,97,110,100,32,99,111,110,116,105,110,117,101,46,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,119,97,112,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,111,110,116,101,110,116,91,110,93,32,61,32,116,104,105,115,46,99,111,110,116,101,110,116,91,115,119,97,112,93,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,111,110,116,101,110,116,91,115,119,97,112,93,32,61,32,101,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,32,32,110,32,61,32,115,119,97,112,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,119,101,32,97,114,101,32,100,111,110,101,46,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,66,105,110,97,114,121,72,101,97,112,59,92,110,125,40,41,59,92,110,92,110,47,42,42,92,110,32,42,32,64,99,108,97,115,115,100,101,115,99,32,39,106,117,115,116,105,102,105,101,100,39,32,105,115,32,97,32,112,114,105,110,116,105,110,103,32,116,101,114,109,32,119,105,116,104,32,116,104,101,32,109,101,97,110,105,110,103,32,116,104,97,116,32,39,105,116,32,102,105,116,115,32,105,110,32,111,110,101,32,114,111,119,32,119,105,100,101,39,46,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,32,105,115,32,97,32,108,97,121,111,117,116,32,116,104,97,116,32,116,104,101,32,99,97,114,100,32,105,115,32,102,105,108,108,101,100,32,117,112,32,111,110,32,116,104,101,32,98,97,115,105,115,32,111,102,32,97,32,108,105,110,101,32,103,105,118,101,110,32,97,32,115,105,122,101,46,92,110,32,42,32,64,107,111,32,39,106,117,115,116,105,102,105,101,100,39,235,138,148,32,39,49,237,150,137,236,157,152,32,235,132,136,235,185,132,236,151,144,32,235,167,158,234,178,140,32,234,188,173,32,235,147,164,236,150,180,236,176,172,39,236,157,180,235,157,188,235,138,148,32,236,157,152,235,175,184,235,165,188,32,234,176,128,236,167,132,32,236,157,184,236,135,132,32,236,154,169,236,150,180,235,139,164,46,32,236,154,169,236,150,180,236,157,152,32,236,157,152,235,175,184,235,140,128,235,161,156,32,235,132,136,235,185,132,234,176,128,32,236,163,188,236,150,180,236,167,132,32,236,130,172,236,157,180,236,166,136,235,165,188,32,234,184,176,236,164,128,236,156,188,235,161,156,32,236,185,180,235,147,156,234,176,128,32,234,176,128,235,147,157,32,236,176,168,235,143,132,235,161,157,32,235,176,176,236,185,152,237,149,152,235,138,148,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,180,235,139,164,46,92,110,32,42,32,64,99,108,97,115,115,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,112,116,105,111,110,115,93,32,84,104,101,32,111,112,116,105,111,110,32,111,98,106,101,99,116,32,111,102,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,32,109,111,100,117,108,101,32,60,107,111,62,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,32,235,170,168,235,147,136,236,157,152,32,236,152,181,236,133,152,32,234,176,157,236,178,180,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,91,111,112,116,105,111,110,115,46,109,97,114,103,105,110,61,48,93,32,77,97,114,103,105,110,32,117,115,101,100,32,116,111,32,99,114,101,97,116,101,32,115,112,97,99,101,32,97,114,111,117,110,100,32,105,116,101,109,115,32,60,107,111,62,236,149,132,236,157,180,237,133,156,235,147,164,32,236,130,172,236,157,180,236,157,152,32,234,179,181,234,176,132,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,61,102,97,108,115,101,93,32,68,105,114,101,99,116,105,111,110,32,111,102,32,116,104,101,32,115,99,114,111,108,108,32,109,111,118,101,109,101,110,116,32,40,102,97,108,115,101,58,32,118,101,114,116,105,99,97,108,44,32,116,114,117,101,58,32,104,111,114,105,122,111,110,116,97,108,41,32,60,107,111,62,236,138,164,237,129,172,235,161,164,32,236,157,180,235,143,153,32,235,176,169,237,150,165,32,40,102,97,108,115,101,58,32,236,132,184,235,161,156,235,176,169,237,150,165,44,32,116,114,117,101,58,32,234,176,128,235,161,156,235,176,169,237,150,165,41,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,91,111,112,116,105,111,110,115,46,109,105,110,83,105,122,101,61,48,93,32,77,105,110,105,109,117,109,32,115,105,122,101,32,111,102,32,105,116,101,109,32,116,111,32,98,101,32,114,101,115,105,122,101,100,32,60,107,111,62,32,236,149,132,236,157,180,237,133,156,236,157,180,32,236,161,176,236,160,149,235,144,152,235,138,148,32,236,181,156,236,134,140,32,237,129,172,234,184,176,32,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,91,111,112,116,105,111,110,115,46,109,97,120,83,105,122,101,61,48,93,32,77,97,120,105,109,117,109,32,115,105,122,101,32,111,102,32,105,116,101,109,32,116,111,32,98,101,32,114,101,115,105,122,101,100,32,60,107,111,62,32,236,149,132,236,157,180,237,133,156,236,157,180,32,236,161,176,236,160,149,235,144,152,235,138,148,32,236,181,156,235,140,128,32,237,129,172,234,184,176,32,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,78,117,109,98,101,114,125,32,91,111,112,116,105,111,110,115,46,99,111,108,117,109,110,61,91,49,44,32,56,93,93,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,105,116,101,109,115,32,105,110,32,97,32,108,105,110,101,32,60,107,111,62,32,237,149,156,32,236,164,132,236,151,144,32,235,147,164,236,150,180,234,176,128,235,138,148,32,236,149,132,236,157,180,237,133,156,236,157,152,32,234,176,156,236,136,152,32,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,78,117,109,98,101,114,125,32,91,111,112,116,105,111,110,115,46,114,111,119,61,48,93,32,84,104,101,32,110,117,109,98,101,114,32,111,114,32,114,97,110,103,101,32,111,102,32,114,111,119,115,32,105,110,32,97,32,103,114,111,117,112,44,32,48,32,105,115,32,110,111,116,32,115,101,116,32,60,107,111,62,237,149,156,32,234,183,184,235,163,185,236,151,144,32,235,147,164,236,150,180,234,176,128,235,138,148,32,236,151,180,236,157,152,32,234,176,156,236,136,152,44,32,48,236,157,128,32,235,175,184,236,132,164,236,160,149,236,157,180,235,139,164,60,47,107,111,62,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,96,96,96,92,110,60,115,99,114,105,112,116,62,92,110,118,97,114,32,105,103,32,61,32,110,101,119,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,40,92,34,35,103,114,105,100,92,34,46,32,123,92,110,32,32,104,111,114,105,122,111,110,116,97,108,58,32,116,114,117,101,44,92,110,125,41,59,92,110,92,110,105,103,46,115,101,116,76,97,121,111,117,116,40,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,44,32,123,92,110,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,109,105,110,83,105,122,101,58,32,49,48,48,44,92,110,32,32,109,97,120,83,105,122,101,58,32,51,48,48,44,92,110,125,41,59,92,110,92,110,47,47,32,111,114,92,110,92,110,118,97,114,32,108,97,121,111,117,116,32,61,32,110,101,119,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,40,123,92,110,32,32,109,97,114,103,105,110,58,32,49,48,44,92,110,32,32,109,105,110,83,105,122,101,58,32,49,48,48,44,92,110,32,32,109,97,120,83,105,122,101,58,32,51,48,48,44,92,110,32,32,99,111,108,117,109,110,58,32,53,44,92,110,32,32,104,111,114,105,122,111,110,116,97,108,58,32,116,114,117,101,44,92,110,125,41,59,92,110,92,110,60,47,115,99,114,105,112,116,62,92,110,96,96,96,92,110,32,42,42,47,92,110,92,110,118,97,114,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,97,115,115,105,103,110,79,112,116,105,111,110,115,40,123,92,110,32,32,32,32,32,32,109,97,114,103,105,110,58,32,48,44,92,110,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,109,105,110,83,105,122,101,58,32,48,44,92,110,32,32,32,32,32,32,109,97,120,83,105,122,101,58,32,48,44,92,110,32,32,32,32,32,32,99,111,108,117,109,110,58,32,91,49,44,32,56,93,44,92,110,32,32,32,32,32,32,114,111,119,58,32,48,92,110,32,32,32,32,125,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,116,104,105,115,46,95,115,116,121,108,101,32,61,32,103,101,116,83,116,121,108,101,78,97,109,101,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,41,59,92,110,32,32,32,32,116,104,105,115,46,95,115,105,122,101,32,61,32,48,59,92,110,32,32,125,92,110,32,32,47,42,42,92,110,32,32,32,42,32,83,101,116,32,116,104,101,32,118,105,101,119,112,111,114,116,32,115,105,122,101,32,111,102,32,116,104,101,32,108,97,121,111,117,116,46,92,110,32,32,32,42,32,64,107,111,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,152,32,234,176,128,236,139,156,32,236,130,172,236,157,180,236,166,136,235,165,188,32,236,132,164,236,160,149,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,35,115,101,116,83,105,122,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,115,105,122,101,32,84,104,101,32,118,105,101,119,112,111,114,116,32,115,105,122,101,32,111,102,32,99,111,110,116,97,105,110,101,114,32,97,114,101,97,32,119,104,101,114,101,32,105,116,101,109,115,32,97,114,101,32,97,100,100,101,100,32,116,111,32,97,32,108,97,121,111,117,116,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,236,151,144,32,236,149,132,236,157,180,237,133,156,236,157,132,32,236,182,148,234,176,128,237,149,152,235,138,148,32,236,187,168,237,133,140,236,157,180,235,132,136,32,236,152,129,236,151,173,236,157,152,32,234,176,128,236,139,156,32,236,130,172,236,157,180,236,166,136,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,115,101,116,83,105,122,101,40,56,48,48,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,115,105,122,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,115,105,122,101,32,61,32,115,105,122,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,100,100,115,32,105,116,101,109,115,32,97,116,32,116,104,101,32,98,111,116,116,111,109,32,111,102,32,97,32,111,117,116,108,105,110,101,46,92,110,32,32,32,42,32,64,107,111,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,132,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,149,132,235,158,152,236,151,144,32,236,182,148,234,176,128,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,35,97,112,112,101,110,100,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,105,116,101,109,115,32,65,114,114,97,121,32,111,102,32,105,116,101,109,115,32,116,111,32,98,101,32,108,97,121,111,117,116,101,100,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,237,149,160,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,111,117,116,108,105,110,101,61,91,93,93,32,65,114,114,97,121,32,111,102,32,111,117,116,108,105,110,101,32,112,111,105,110,116,115,32,116,111,32,98,101,32,114,101,102,101,114,101,110,99,101,32,112,111,105,110,116,115,32,60,107,111,62,234,184,176,236,164,128,236,160,144,236,157,180,32,235,144,152,235,138,148,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,160,144,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,32,76,97,121,111,117,116,101,100,32,105,116,101,109,115,32,97,110,100,32,111,117,116,108,105,110,101,32,111,102,32,115,116,97,114,116,32,97,110,100,32,101,110,100,32,60,107,111,62,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,180,32,235,144,156,32,236,149,132,236,157,180,237,133,156,234,179,188,32,236,139,156,236,158,145,234,179,188,32,235,129,157,236,157,152,32,236,149,132,236,155,131,235,157,188,236,157,184,236,157,180,32,235,139,180,234,184,180,32,236,160,149,235,179,180,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,112,114,101,112,101,110,100,40,105,116,101,109,115,44,32,91,49,48,48,93,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,97,112,112,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,99,97,99,104,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,116,114,117,101,44,32,99,97,99,104,101,41,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,100,100,115,32,105,116,101,109,115,32,97,116,32,116,104,101,32,116,111,112,32,111,102,32,97,32,111,117,116,108,105,110,101,46,92,110,32,32,32,42,32,64,107,111,32,236,149,132,236,157,180,237,133,156,236,157,132,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,156,132,236,151,144,32,236,182,148,234,176,128,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,35,112,114,101,112,101,110,100,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,105,116,101,109,115,32,65,114,114,97,121,32,111,102,32,105,116,101,109,115,32,116,111,32,98,101,32,108,97,121,111,117,116,101,100,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,237,149,160,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,111,117,116,108,105,110,101,61,91,93,93,32,65,114,114,97,121,32,111,102,32,111,117,116,108,105,110,101,32,112,111,105,110,116,115,32,116,111,32,98,101,32,114,101,102,101,114,101,110,99,101,32,112,111,105,110,116,115,32,60,107,111,62,234,184,176,236,164,128,236,160,144,236,157,180,32,235,144,152,235,138,148,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,160,144,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,32,76,97,121,111,117,116,101,100,32,105,116,101,109,115,32,97,110,100,32,111,117,116,108,105,110,101,32,111,102,32,115,116,97,114,116,32,97,110,100,32,101,110,100,32,60,107,111,62,32,235,160,136,236,157,180,236,149,132,236,155,131,236,157,180,32,235,144,156,32,236,149,132,236,157,180,237,133,156,234,179,188,32,236,139,156,236,158,145,234,179,188,32,235,129,157,236,157,152,32,236,149,132,236,155,131,235,157,188,236,157,184,236,157,180,32,235,139,180,234,184,180,32,236,160,149,235,179,180,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,112,114,101,112,101,110,100,40,105,116,101,109,115,44,32,91,49,48,48,93,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,112,114,101,112,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,99,97,99,104,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,102,97,108,115,101,44,32,99,97,99,104,101,41,59,92,110,32,32,125,59,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,100,100,115,32,105,116,101,109,115,32,111,102,32,103,114,111,117,112,115,32,97,116,32,116,104,101,32,98,111,116,116,111,109,32,111,102,32,97,32,111,117,116,108,105,110,101,46,92,110,32,32,32,42,32,64,107,111,32,234,183,184,235,163,185,235,147,164,236,157,152,32,236,149,132,236,157,180,237,133,156,235,147,164,236,157,132,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,149,132,235,158,152,236,151,144,32,236,182,148,234,176,128,237,149,156,235,139,164,46,92,110,32,32,32,42,32,64,109,101,116,104,111,100,32,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,35,108,97,121,111,117,116,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,103,114,111,117,112,115,32,65,114,114,97,121,32,111,102,32,103,114,111,117,112,115,32,116,111,32,98,101,32,108,97,121,111,117,116,101,100,32,60,107,111,62,235,160,136,236,157,180,236,149,132,236,155,131,237,149,160,32,234,183,184,235,163,185,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,111,117,116,108,105,110,101,32,65,114,114,97,121,32,111,102,32,111,117,116,108,105,110,101,32,112,111,105,110,116,115,32,116,111,32,98,101,32,114,101,102,101,114,101,110,99,101,32,112,111,105,110,116,115,32,60,107,111,62,234,184,176,236,164,128,236,160,144,236,157,180,32,235,144,152,235,138,148,32,236,149,132,236,155,131,235,157,188,236,157,184,32,236,160,144,235,147,164,236,157,152,32,235,176,176,236,151,180,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,101,103,46,73,110,102,105,110,105,116,101,71,114,105,100,46,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,125,32,65,110,32,105,110,115,116,97,110,99,101,32,111,102,32,97,32,109,111,100,117,108,101,32,105,116,115,101,108,102,60,107,111,62,235,170,168,235,147,136,32,236,158,144,236,139,160,236,157,152,32,236,157,184,236,138,164,237,132,180,236,138,164,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,108,97,121,111,117,116,46,108,97,121,111,117,116,40,103,114,111,117,112,115,44,32,91,49,48,48,93,41,59,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,95,95,112,114,111,116,111,46,108,97,121,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,40,103,114,111,117,112,115,44,32,111,117,116,108,105,110,101,41,32,123,92,110,32,32,32,32,105,102,32,40,103,114,111,117,112,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,115,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,111,117,116,108,105,110,101,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,112,111,105,110,116,32,61,32,111,117,116,108,105,110,101,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,105,93,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,111,117,116,108,105,110,101,115,32,61,32,116,104,105,115,46,95,108,97,121,111,117,116,40,103,114,111,117,112,46,105,116,101,109,115,44,32,112,111,105,110,116,44,32,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,103,114,111,117,112,46,111,117,116,108,105,110,101,115,32,61,32,111,117,116,108,105,110,101,115,59,92,110,32,32,32,32,32,32,112,111,105,110,116,32,61,32,111,117,116,108,105,110,101,115,46,101,110,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,108,97,121,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,114,111,119,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,114,111,119,59,92,110,32,32,32,32,118,97,114,32,112,97,116,104,32,61,32,91,93,59,92,110,92,110,32,32,32,32,105,102,32,40,105,116,101,109,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,112,97,116,104,32,61,32,114,111,119,32,63,32,116,104,105,115,46,95,103,101,116,82,111,119,80,97,116,104,40,105,116,101,109,115,41,32,58,32,116,104,105,115,46,95,103,101,116,80,97,116,104,40,105,116,101,109,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,115,101,116,83,116,121,108,101,40,105,116,101,109,115,44,32,112,97,116,104,44,32,111,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,103,101,116,80,97,116,104,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,108,97,115,116,78,111,100,101,32,61,32,105,116,101,109,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,99,111,108,117,109,110,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,59,92,110,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,105,115,79,98,106,101,99,116,40,99,111,108,117,109,110,41,32,63,32,99,111,108,117,109,110,32,58,32,91,99,111,108,117,109,110,44,32,99,111,108,117,109,110,93,44,92,110,32,32,32,32,32,32,32,32,109,105,110,67,111,108,117,109,110,32,61,32,95,97,91,48,93,44,92,110,32,32,32,32,32,32,32,32,109,97,120,67,111,108,117,109,110,32,61,32,95,97,91,49,93,59,92,110,92,110,32,32,32,32,118,97,114,32,103,114,97,112,104,32,61,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,75,101,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,115,32,61,32,123,125,59,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,78,111,100,101,32,61,32,112,97,114,115,101,73,110,116,40,110,111,100,101,75,101,121,44,32,49,48,41,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,110,101,120,116,78,111,100,101,32,61,32,77,97,116,104,46,109,105,110,40,99,117,114,114,101,110,116,78,111,100,101,32,43,32,109,105,110,67,111,108,117,109,110,44,32,108,97,115,116,78,111,100,101,41,59,32,110,101,120,116,78,111,100,101,32,60,61,32,108,97,115,116,78,111,100,101,59,32,43,43,110,101,120,116,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,78,111,100,101,32,45,32,99,117,114,114,101,110,116,78,111,100,101,32,62,32,109,97,120,67,111,108,117,109,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,111,115,116,32,61,32,95,116,104,105,115,46,95,103,101,116,67,111,115,116,40,105,116,101,109,115,44,32,99,117,114,114,101,110,116,78,111,100,101,44,32,110,101,120,116,78,111,100,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,111,115,116,32,60,32,48,32,38,38,32,110,101,120,116,78,111,100,101,32,61,61,61,32,108,97,115,116,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,115,116,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,115,91,92,34,92,34,32,43,32,110,101,120,116,78,111,100,101,93,32,61,32,77,97,116,104,46,112,111,119,40,99,111,115,116,44,32,50,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,115,59,92,110,32,32,32,32,125,59,32,47,47,32,115,104,111,114,116,101,115,116,32,112,97,116,104,32,102,111,114,32,105,116,101,109,115,39,32,116,111,116,97,108,32,104,101,105,103,104,116,46,92,110,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,102,105,110,100,95,112,97,116,104,40,103,114,97,112,104,44,32,92,34,48,92,34,44,32,92,34,92,34,32,43,32,108,97,115,116,78,111,100,101,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,103,101,116,82,111,119,80,97,116,104,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,59,92,110,92,110,32,32,32,32,118,97,114,32,99,111,108,117,109,110,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,59,92,110,32,32,32,32,118,97,114,32,114,111,119,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,114,111,119,59,92,110,32,32,32,32,118,97,114,32,99,111,108,117,109,110,82,97,110,103,101,32,61,32,105,115,79,98,106,101,99,116,40,99,111,108,117,109,110,41,32,63,32,99,111,108,117,109,110,32,58,32,91,99,111,108,117,109,110,44,32,99,111,108,117,109,110,93,59,92,110,32,32,32,32,118,97,114,32,114,111,119,82,97,110,103,101,32,61,32,105,115,79,98,106,101,99,116,40,114,111,119,41,32,63,32,114,111,119,32,58,32,91,114,111,119,44,32,114,111,119,93,59,92,110,92,110,32,32,32,32,118,97,114,32,112,97,116,104,76,105,110,107,32,61,32,116,104,105,115,46,95,103,101,116,82,111,119,76,105,110,107,40,105,116,101,109,115,44,32,123,92,110,32,32,32,32,32,32,112,97,116,104,58,32,91,48,93,44,92,110,32,32,32,32,32,32,99,111,115,116,58,32,48,44,92,110,32,32,32,32,32,32,108,101,110,103,116,104,58,32,48,44,92,110,32,32,32,32,32,32,99,117,114,114,101,110,116,78,111,100,101,58,32,48,92,110,32,32,32,32,125,44,32,99,111,108,117,109,110,82,97,110,103,101,44,32,114,111,119,82,97,110,103,101,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,40,95,97,32,61,32,112,97,116,104,76,105,110,107,32,61,61,61,32,110,117,108,108,32,124,124,32,112,97,116,104,76,105,110,107,32,61,61,61,32,118,111,105,100,32,48,32,63,32,118,111,105,100,32,48,32,58,32,112,97,116,104,76,105,110,107,46,112,97,116,104,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,92,34,32,43,32,110,111,100,101,59,92,110,32,32,32,32,125,41,41,32,33,61,61,32,110,117,108,108,32,38,38,32,95,97,32,33,61,61,32,118,111,105,100,32,48,32,63,32,95,97,32,58,32,91,93,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,103,101,116,82,111,119,76,105,110,107,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,99,117,114,114,101,110,116,76,105,110,107,44,32,99,111,108,117,109,110,82,97,110,103,101,44,32,114,111,119,82,97,110,103,101,41,32,123,92,110,32,32,32,32,118,97,114,32,109,105,110,67,111,108,117,109,110,32,61,32,99,111,108,117,109,110,82,97,110,103,101,91,48,93,59,92,110,32,32,32,32,118,97,114,32,109,105,110,82,111,119,32,61,32,114,111,119,82,97,110,103,101,91,48,93,44,92,110,32,32,32,32,32,32,32,32,109,97,120,82,111,119,32,61,32,114,111,119,82,97,110,103,101,91,49,93,59,92,110,32,32,32,32,118,97,114,32,108,97,115,116,78,111,100,101,32,61,32,105,116,101,109,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,112,97,116,104,32,61,32,99,117,114,114,101,110,116,76,105,110,107,46,112,97,116,104,44,92,110,32,32,32,32,32,32,32,32,112,97,116,104,76,101,110,103,116,104,32,61,32,99,117,114,114,101,110,116,76,105,110,107,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,99,111,115,116,32,61,32,99,117,114,114,101,110,116,76,105,110,107,46,99,111,115,116,44,92,110,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,78,111,100,101,32,61,32,99,117,114,114,101,110,116,76,105,110,107,46,99,117,114,114,101,110,116,78,111,100,101,59,32,47,47,32,110,111,116,32,114,101,97,99,104,101,100,32,108,97,115,116,78,111,100,101,32,98,117,116,32,112,97,116,104,32,105,115,32,101,120,99,101,101,100,32,111,114,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,114,101,109,97,105,110,105,110,103,32,110,111,100,101,115,32,105,115,32,108,101,115,115,32,116,104,97,110,32,109,105,110,67,111,108,117,109,110,46,92,110,92,110,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,78,111,100,101,32,60,32,108,97,115,116,78,111,100,101,32,38,38,32,40,109,97,120,82,111,119,32,60,61,32,112,97,116,104,76,101,110,103,116,104,32,124,124,32,99,117,114,114,101,110,116,78,111,100,101,32,43,32,109,105,110,67,111,108,117,109,110,32,62,32,108,97,115,116,78,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,97,110,103,101,67,111,115,116,32,61,32,103,101,116,82,97,110,103,101,67,111,115,116,40,108,97,115,116,78,111,100,101,32,45,32,99,117,114,114,101,110,116,78,111,100,101,44,32,99,111,108,117,109,110,82,97,110,103,101,41,59,92,110,32,32,32,32,32,32,118,97,114,32,108,97,115,116,67,111,115,116,32,61,32,114,97,110,103,101,67,111,115,116,32,42,32,77,97,116,104,46,97,98,115,40,116,104,105,115,46,95,103,101,116,67,111,115,116,40,105,116,101,109,115,44,32,99,117,114,114,101,110,116,78,111,100,101,44,32,108,97,115,116,78,111,100,101,41,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,95,97,115,115,105,103,110,40,95,95,97,115,115,105,103,110,40,123,125,44,32,99,117,114,114,101,110,116,76,105,110,107,41,44,32,123,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,58,32,112,97,116,104,76,101,110,103,116,104,32,43,32,49,44,92,110,32,32,32,32,32,32,32,32,112,97,116,104,58,32,95,95,115,112,114,101,97,100,65,114,114,97,121,115,40,112,97,116,104,44,32,91,108,97,115,116,78,111,100,101,93,41,44,92,110,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,78,111,100,101,58,32,108,97,115,116,78,111,100,101,44,92,110,32,32,32,32,32,32,32,32,99,111,115,116,58,32,99,111,115,116,32,43,32,108,97,115,116,67,111,115,116,44,92,110,32,32,32,32,32,32,32,32,105,115,79,118,101,114,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,99,117,114,114,101,110,116,78,111,100,101,32,62,61,32,108,97,115,116,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,95,97,115,115,105,103,110,40,95,95,97,115,115,105,103,110,40,123,125,44,32,99,117,114,114,101,110,116,76,105,110,107,41,44,32,123,92,110,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,78,111,100,101,58,32,108,97,115,116,78,111,100,101,44,92,110,32,32,32,32,32,32,32,32,105,115,79,118,101,114,58,32,109,105,110,82,111,119,32,62,32,112,97,116,104,76,101,110,103,116,104,32,124,124,32,109,97,120,82,111,119,32,60,32,112,97,116,104,76,101,110,103,116,104,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,115,101,97,114,99,104,82,111,119,76,105,110,107,40,105,116,101,109,115,44,32,99,117,114,114,101,110,116,76,105,110,107,44,32,108,97,115,116,78,111,100,101,44,32,99,111,108,117,109,110,82,97,110,103,101,44,32,114,111,119,82,97,110,103,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,115,101,97,114,99,104,82,111,119,76,105,110,107,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,99,117,114,114,101,110,116,76,105,110,107,44,32,108,97,115,116,78,111,100,101,44,32,99,111,108,117,109,110,82,97,110,103,101,44,32,114,111,119,82,97,110,103,101,41,32,123,92,110,32,32,32,32,118,97,114,32,109,105,110,67,111,108,117,109,110,32,61,32,99,111,108,117,109,110,82,97,110,103,101,91,48,93,44,92,110,32,32,32,32,32,32,32,32,109,97,120,67,111,108,117,109,110,32,61,32,99,111,108,117,109,110,82,97,110,103,101,91,49,93,59,92,110,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,78,111,100,101,32,61,32,99,117,114,114,101,110,116,76,105,110,107,46,99,117,114,114,101,110,116,78,111,100,101,44,92,110,32,32,32,32,32,32,32,32,112,97,116,104,32,61,32,99,117,114,114,101,110,116,76,105,110,107,46,112,97,116,104,44,92,110,32,32,32,32,32,32,32,32,112,97,116,104,76,101,110,103,116,104,32,61,32,99,117,114,114,101,110,116,76,105,110,107,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,99,111,115,116,32,61,32,99,117,114,114,101,110,116,76,105,110,107,46,99,111,115,116,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,77,97,116,104,46,109,105,110,40,108,97,115,116,78,111,100,101,44,32,99,117,114,114,101,110,116,78,111,100,101,32,43,32,109,97,120,67,111,108,117,109,110,41,59,92,110,32,32,32,32,118,97,114,32,108,105,110,107,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,110,101,120,116,78,111,100,101,32,61,32,99,117,114,114,101,110,116,78,111,100,101,32,43,32,109,105,110,67,111,108,117,109,110,59,32,110,101,120,116,78,111,100,101,32,60,61,32,108,101,110,103,116,104,59,32,43,43,110,101,120,116,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,101,120,116,78,111,100,101,32,61,61,61,32,99,117,114,114,101,110,116,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,110,101,120,116,67,111,115,116,32,61,32,77,97,116,104,46,97,98,115,40,116,104,105,115,46,95,103,101,116,67,111,115,116,40,105,116,101,109,115,44,32,99,117,114,114,101,110,116,78,111,100,101,44,32,110,101,120,116,78,111,100,101,41,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,110,101,120,116,76,105,110,107,32,61,32,116,104,105,115,46,95,103,101,116,82,111,119,76,105,110,107,40,105,116,101,109,115,44,32,123,92,110,32,32,32,32,32,32,32,32,112,97,116,104,58,32,95,95,115,112,114,101,97,100,65,114,114,97,121,115,40,112,97,116,104,44,32,91,110,101,120,116,78,111,100,101,93,41,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,58,32,112,97,116,104,76,101,110,103,116,104,32,43,32,49,44,92,110,32,32,32,32,32,32,32,32,99,111,115,116,58,32,99,111,115,116,32,43,32,110,101,120,116,67,111,115,116,44,92,110,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,78,111,100,101,58,32,110,101,120,116,78,111,100,101,92,110,32,32,32,32,32,32,125,44,32,99,111,108,117,109,110,82,97,110,103,101,44,32,114,111,119,82,97,110,103,101,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,110,101,120,116,76,105,110,107,41,32,123,92,110,32,32,32,32,32,32,32,32,108,105,110,107,115,46,112,117,115,104,40,110,101,120,116,76,105,110,107,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,108,105,110,107,115,46,115,111,114,116,40,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,73,115,79,118,101,114,32,61,32,97,46,105,115,79,118,101,114,59,92,110,32,32,32,32,32,32,118,97,114,32,98,73,115,79,118,101,114,32,61,32,98,46,105,115,79,118,101,114,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,97,73,115,79,118,101,114,32,33,61,61,32,98,73,115,79,118,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,105,116,32,105,115,32,111,118,101,114,44,32,116,104,101,32,99,111,115,116,32,105,115,32,104,105,103,104,46,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,73,115,79,118,101,114,32,63,32,49,32,58,32,45,49,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,97,82,97,110,103,101,67,111,115,116,32,61,32,103,101,116,82,97,110,103,101,67,111,115,116,40,97,46,108,101,110,103,116,104,44,32,114,111,119,82,97,110,103,101,41,59,92,110,32,32,32,32,32,32,118,97,114,32,98,82,97,110,103,101,67,111,115,116,32,61,32,103,101,116,82,97,110,103,101,67,111,115,116,40,98,46,108,101,110,103,116,104,44,32,114,111,119,82,97,110,103,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,82,97,110,103,101,67,111,115,116,32,45,32,98,82,97,110,103,101,67,111,115,116,32,124,124,32,97,46,99,111,115,116,32,45,32,98,46,99,111,115,116,59,92,110,32,32,32,32,125,41,59,32,47,47,32,73,116,32,114,101,116,117,114,110,115,32,116,104,101,32,108,111,119,101,115,116,32,99,111,115,116,32,108,105,110,107,46,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,108,105,110,107,115,91,48,93,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,103,101,116,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,115,105,122,101,49,78,97,109,101,44,32,115,105,122,101,50,78,97,109,101,41,32,123,92,110,32,32,32,32,118,97,114,32,109,97,114,103,105,110,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,114,103,105,110,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,105,116,101,109,115,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,115,117,109,44,32,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,117,109,32,43,32,105,116,101,109,46,111,114,103,83,105,122,101,91,115,105,122,101,50,78,97,109,101,93,32,47,32,105,116,101,109,46,111,114,103,83,105,122,101,91,115,105,122,101,49,78,97,109,101,93,59,92,110,32,32,32,32,125,44,32,48,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,116,104,105,115,46,95,115,105,122,101,32,45,32,109,97,114,103,105,110,32,42,32,40,105,116,101,109,115,46,108,101,110,103,116,104,32,45,32,49,41,41,32,47,32,115,105,122,101,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,103,101,116,67,111,115,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,105,44,32,106,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,121,108,101,32,61,32,116,104,105,115,46,95,115,116,121,108,101,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,49,78,97,109,101,32,61,32,115,116,121,108,101,46,115,105,122,101,49,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,50,78,97,109,101,32,61,32,115,116,121,108,101,46,115,105,122,101,50,59,92,110,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,116,104,105,115,46,95,103,101,116,83,105,122,101,40,105,116,101,109,115,46,115,108,105,99,101,40,105,44,32,106,41,44,32,115,105,122,101,49,78,97,109,101,44,32,115,105,122,101,50,78,97,109,101,41,59,92,110,92,110,32,32,32,32,118,97,114,32,109,105,110,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,83,105,122,101,32,124,124,32,48,59,92,110,32,32,32,32,118,97,114,32,109,97,120,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,83,105,122,101,32,124,124,32,73,110,102,105,110,105,116,121,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,70,105,110,105,116,101,40,109,97,120,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,105,102,32,116,104,105,115,32,115,105,122,101,32,105,115,32,110,111,116,32,105,110,32,114,97,110,103,101,44,32,116,104,101,32,99,111,115,116,32,105,110,99,114,101,97,115,101,115,32,115,104,97,114,112,108,121,46,92,110,32,32,32,32,32,32,105,102,32,40,115,105,122,101,32,60,32,109,105,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,115,105,122,101,32,45,32,109,105,110,44,32,50,41,32,43,32,77,97,116,104,46,112,111,119,40,109,97,120,44,32,50,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,105,122,101,32,62,32,109,97,120,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,115,105,122,101,32,45,32,109,97,120,44,32,50,41,32,43,32,77,97,116,104,46,112,111,119,40,109,97,120,44,32,50,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,105,102,32,116,104,105,115,32,115,105,122,101,32,105,110,32,114,97,110,103,101,44,32,116,104,101,32,99,111,115,116,32,105,115,32,110,101,103,97,116,105,118,101,32,111,114,32,108,111,119,46,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,109,105,110,40,115,105,122,101,32,45,32,109,97,120,44,32,109,105,110,32,45,32,115,105,122,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,47,47,32,105,102,32,109,97,120,32,105,115,32,105,110,102,105,110,105,116,101,32,116,121,112,101,44,32,99,97,99,117,108,97,116,101,32,99,111,115,116,32,111,110,108,121,32,119,105,116,104,32,92,34,109,105,110,92,34,46,92,110,92,110,92,110,32,32,32,32,105,102,32,40,115,105,122,101,32,60,32,109,105,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,77,97,116,104,46,112,111,119,40,109,105,110,44,32,50,41,44,32,77,97,116,104,46,112,111,119,40,115,105,122,101,44,32,50,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,115,105,122,101,32,45,32,109,105,110,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,115,101,116,83,116,121,108,101,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,112,97,116,104,44,32,111,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,59,92,110,92,110,32,32,32,32,105,102,32,40,111,117,116,108,105,110,101,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,115,116,121,108,101,32,61,32,116,104,105,115,46,95,115,116,121,108,101,59,32,47,47,32,105,102,32,100,105,114,101,99,116,105,111,110,32,105,115,32,118,101,114,116,105,99,97,108,92,110,32,32,32,32,47,47,32,115,116,97,114,116,80,111,115,49,32,58,32,116,111,112,44,32,101,110,100,80,111,115,49,32,58,32,98,111,116,116,111,109,92,110,32,32,32,32,47,47,32,115,105,122,101,49,32,58,32,104,101,105,103,104,116,92,110,32,32,32,32,47,47,32,115,116,97,114,116,80,111,115,50,32,58,32,108,101,102,116,44,32,101,110,100,80,111,115,50,32,58,32,114,105,103,104,116,92,110,32,32,32,32,47,47,32,115,105,122,101,50,32,58,32,119,105,100,116,104,92,110,32,32,32,32,47,47,32,105,102,32,100,105,114,101,99,116,105,111,110,32,105,115,32,104,111,114,105,122,111,110,116,97,108,92,110,32,32,32,32,47,47,32,115,116,97,114,116,80,111,115,49,32,58,32,108,101,102,116,44,32,101,110,100,80,111,115,49,32,58,32,114,105,103,104,116,92,110,32,32,32,32,47,47,32,115,105,122,101,49,32,58,32,119,105,100,116,104,92,110,32,32,32,32,47,47,32,115,116,97,114,116,80,111,115,50,32,58,32,116,111,112,44,32,101,110,100,80,111,115,50,32,58,32,98,111,116,116,111,109,92,110,32,32,32,32,47,47,32,115,105,122,101,50,32,58,32,104,101,105,103,104,116,92,110,92,110,32,32,32,32,118,97,114,32,112,111,115,49,78,97,109,101,32,61,32,115,116,121,108,101,46,115,116,97,114,116,80,111,115,49,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,49,78,97,109,101,32,61,32,115,116,121,108,101,46,115,105,122,101,49,59,92,110,32,32,32,32,118,97,114,32,112,111,115,50,78,97,109,101,32,61,32,115,116,121,108,101,46,115,116,97,114,116,80,111,115,50,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,50,78,97,109,101,32,61,32,115,116,121,108,101,46,115,105,122,101,50,59,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,112,97,116,104,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,109,97,114,103,105,110,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,114,103,105,110,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,80,111,105,110,116,32,61,32,111,117,116,108,105,110,101,91,48,93,32,124,124,32,48,59,92,110,32,32,32,32,118,97,114,32,101,110,100,80,111,105,110,116,32,61,32,115,116,97,114,116,80,111,105,110,116,59,92,110,32,32,32,32,118,97,114,32,104,101,105,103,104,116,32,61,32,48,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,32,45,32,49,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,97,116,104,49,32,61,32,112,97,114,115,101,73,110,116,40,112,97,116,104,91,105,93,44,32,49,48,41,59,92,110,32,32,32,32,32,32,118,97,114,32,112,97,116,104,50,32,61,32,112,97,114,115,101,73,110,116,40,112,97,116,104,91,105,32,43,32,49,93,44,32,49,48,41,59,32,47,47,32,112,97,116,104,73,116,101,109,115,40,112,97,116,104,49,32,116,111,32,112,97,116,104,50,41,32,97,114,101,32,105,110,32,49,32,108,105,110,101,46,92,110,92,110,32,32,32,32,32,32,118,97,114,32,112,97,116,104,73,116,101,109,115,32,61,32,105,116,101,109,115,46,115,108,105,99,101,40,112,97,116,104,49,44,32,112,97,116,104,50,41,59,92,110,32,32,32,32,32,32,118,97,114,32,112,97,116,104,73,116,101,109,115,76,101,110,103,116,104,32,61,32,112,97,116,104,73,116,101,109,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,105,122,101,49,32,61,32,116,104,105,115,46,95,103,101,116,83,105,122,101,40,112,97,116,104,73,116,101,109,115,44,32,115,105,122,101,49,78,97,109,101,44,32,115,105,122,101,50,78,97,109,101,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,112,111,115,49,32,61,32,101,110,100,80,111,105,110,116,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,59,32,106,32,60,32,112,97,116,104,73,116,101,109,115,76,101,110,103,116,104,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,112,97,116,104,73,116,101,109,115,91,106,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,105,122,101,50,32,61,32,105,116,101,109,46,111,114,103,83,105,122,101,91,115,105,122,101,50,78,97,109,101,93,32,47,32,105,116,101,109,46,111,114,103,83,105,122,101,91,115,105,122,101,49,78,97,109,101,93,32,42,32,115,105,122,101,49,59,32,47,47,32,105,116,101,109,32,104,97,115,32,109,97,114,103,105,110,32,98,111,116,116,111,109,32,97,110,100,32,114,105,103,104,116,46,92,110,32,32,32,32,32,32,32,32,47,47,32,102,105,114,115,116,32,105,116,101,109,32,104,97,115,32,110,111,116,32,109,97,114,103,105,110,46,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,101,118,73,116,101,109,82,101,99,116,32,61,32,106,32,61,61,61,32,48,32,63,32,48,32,58,32,112,97,116,104,73,116,101,109,115,91,106,32,45,32,49,93,46,114,101,99,116,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,111,115,50,32,61,32,112,114,101,118,73,116,101,109,82,101,99,116,32,63,32,112,114,101,118,73,116,101,109,82,101,99,116,91,112,111,115,50,78,97,109,101,93,32,43,32,112,114,101,118,73,116,101,109,82,101,99,116,91,115,105,122,101,50,78,97,109,101,93,32,43,32,109,97,114,103,105,110,32,58,32,48,59,92,110,32,32,32,32,32,32,32,32,105,116,101,109,46,114,101,99,116,32,61,32,40,95,97,32,61,32,123,125,44,32,95,97,91,112,111,115,49,78,97,109,101,93,32,61,32,112,111,115,49,44,32,95,97,91,112,111,115,50,78,97,109,101,93,32,61,32,112,111,115,50,44,32,95,97,91,115,105,122,101,49,78,97,109,101,93,32,61,32,115,105,122,101,49,44,32,95,97,91,115,105,122,101,50,78,97,109,101,93,32,61,32,115,105,122,101,50,44,32,95,97,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,104,101,105,103,104,116,32,43,61,32,109,97,114,103,105,110,32,43,32,115,105,122,101,49,59,92,110,32,32,32,32,32,32,101,110,100,80,111,105,110,116,32,61,32,115,116,97,114,116,80,111,105,110,116,32,43,32,104,101,105,103,104,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,76,101,110,103,116,104,32,61,32,105,116,101,109,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,65,112,112,101,110,100,41,32,123,92,110,32,32,32,32,32,32,47,47,32,112,114,101,118,105,111,117,115,32,103,114,111,117,112,39,115,32,101,110,100,32,111,117,116,108,105,110,101,32,105,115,32,99,117,114,114,101,110,116,32,103,114,111,117,112,39,115,32,115,116,97,114,116,32,111,117,116,108,105,110,101,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,58,32,91,115,116,97,114,116,80,111,105,110,116,93,44,92,110,32,32,32,32,32,32,32,32,101,110,100,58,32,91,101,110,100,80,111,105,110,116,93,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,32,47,47,32,102,111,114,32,112,114,101,112,101,110,100,44,32,111,110,108,121,32,115,117,98,115,116,114,97,99,116,32,104,101,105,103,104,116,32,102,114,111,109,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,47,47,32,97,108,119,97,121,115,32,115,116,97,114,116,32,105,115,32,108,111,119,101,114,32,116,104,97,110,32,101,110,100,46,92,110,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,105,116,101,109,115,76,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,105,116,101,109,115,91,105,93,59,32,47,47,32,109,111,118,101,32,105,116,101,109,115,32,97,115,32,108,111,110,103,32,97,115,32,104,101,105,103,104,116,32,102,111,114,32,112,114,101,112,101,110,100,92,110,92,110,32,32,32,32,32,32,105,116,101,109,46,114,101,99,116,91,112,111,115,49,78,97,109,101,93,32,45,61,32,104,101,105,103,104,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,58,32,91,115,116,97,114,116,80,111,105,110,116,32,45,32,104,101,105,103,104,116,93,44,92,110,32,32,32,32,32,32,101,110,100,58,32,91,115,116,97,114,116,80,111,105,110,116,93,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,95,105,110,115,101,114,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,44,32,111,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,44,32,99,97,99,104,101,41,32,123,92,110,32,32,32,32,105,102,32,40,105,116,101,109,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,105,116,101,109,115,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,111,117,116,108,105,110,101,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,32,61,32,91,93,59,92,110,32,32,32,32,125,32,47,47,32,116,104,105,115,32,111,110,108,121,32,110,101,101,100,115,32,116,104,101,32,115,105,122,101,32,111,102,32,116,104,101,32,105,116,101,109,46,92,110,92,110,92,110,32,32,32,32,118,97,114,32,99,108,111,110,101,32,61,32,99,97,99,104,101,32,63,32,105,116,101,109,115,32,58,32,99,108,111,110,101,73,116,101,109,115,40,105,116,101,109,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,105,116,101,109,115,58,32,99,108,111,110,101,44,92,110,32,32,32,32,32,32,111,117,116,108,105,110,101,115,58,32,116,104,105,115,46,95,108,97,121,111,117,116,40,99,108,111,110,101,44,32,111,117,116,108,105,110,101,44,32,105,115,65,112,112,101,110,100,41,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,59,92,110,125,40,41,59,92,110,92,110,47,42,42,92,110,32,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,78,65,86,69,82,32,67,111,114,112,46,92,110,32,42,32,101,103,106,115,45,105,110,102,105,110,105,116,101,103,114,105,100,32,112,114,111,106,101,99,116,115,32,97,114,101,32,108,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,92,110,32,42,47,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,73,110,102,105,110,105,116,101,71,114,105,100,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,105,110,102,105,110,105,116,101,103,114,105,100,46,101,115,109,46,106,115,46,109,97,112,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,105,110,102,105,110,105,116,101,103,114,105,100,47,100,105,115,116,47,105,110,102,105,110,105,116,101,103,114,105,100,46,101,115,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,108,105,115,116,45,100,105,102,102,101,114,47,100,105,115,116,47,108,105,115,116,45,100,105,102,102,101,114,46,101,115,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,108,105,115,116,45,100,105,102,102,101,114,47,100,105,115,116,47,108,105,115,116,45,100,105,102,102,101,114,46,101,115,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,105,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,105,102,102,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,57,45,112,114,101,115,101,110,116,32,78,65,86,69,82,32,67,111,114,112,46,92,110,110,97,109,101,58,32,64,101,103,106,115,47,108,105,115,116,45,100,105,102,102,101,114,92,110,108,105,99,101,110,115,101,58,32,77,73,84,92,110,97,117,116,104,111,114,58,32,78,65,86,69,82,32,67,111,114,112,46,92,110,114,101,112,111,115,105,116,111,114,121,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,110,97,118,101,114,47,101,103,106,115,45,108,105,115,116,45,100,105,102,102,101,114,92,110,118,101,114,115,105,111,110,58,32,49,46,48,46,48,92,110,42,47,92,110,47,42,92,110,101,103,106,115,45,108,105,115,116,45,100,105,102,102,101,114,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,57,45,112,114,101,115,101,110,116,32,78,65,86,69,82,32,67,111,114,112,46,92,110,77,73,84,32,108,105,99,101,110,115,101,92,110,42,47,92,110,118,97,114,32,80,111,108,121,77,97,112,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,80,111,108,121,77,97,112,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,107,101,121,115,32,61,32,91,93,59,92,110,32,32,32,32,116,104,105,115,46,118,97,108,117,101,115,32,61,32,91,93,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,80,111,108,121,77,97,112,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,118,97,108,117,101,115,91,116,104,105,115,46,107,101,121,115,46,105,110,100,101,120,79,102,40,107,101,121,41,93,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,107,101,121,115,32,61,32,116,104,105,115,46,107,101,121,115,59,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,116,104,105,115,46,118,97,108,117,101,115,59,92,110,32,32,32,32,118,97,114,32,112,114,101,118,73,110,100,101,120,32,61,32,107,101,121,115,46,105,110,100,101,120,79,102,40,107,101,121,41,59,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,112,114,101,118,73,110,100,101,120,32,61,61,61,32,45,49,32,63,32,107,101,121,115,46,108,101,110,103,116,104,32,58,32,112,114,101,118,73,110,100,101,120,59,92,110,32,32,32,32,107,101,121,115,91,105,110,100,101,120,93,32,61,32,107,101,121,59,92,110,32,32,32,32,118,97,108,117,101,115,91,105,110,100,101,120,93,32,61,32,118,97,108,117,101,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,80,111,108,121,77,97,112,59,92,110,125,40,41,59,92,110,92,110,47,42,92,110,101,103,106,115,45,108,105,115,116,45,100,105,102,102,101,114,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,57,45,112,114,101,115,101,110,116,32,78,65,86,69,82,32,67,111,114,112,46,92,110,77,73,84,32,108,105,99,101,110,115,101,92,110,42,47,92,110,118,97,114,32,72,97,115,104,77,97,112,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,72,97,115,104,77,97,112,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,111,98,106,101,99,116,32,61,32,123,125,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,72,97,115,104,77,97,112,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,111,98,106,101,99,116,91,107,101,121,93,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,111,98,106,101,99,116,91,107,101,121,93,32,61,32,118,97,108,117,101,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,72,97,115,104,77,97,112,59,92,110,125,40,41,59,92,110,92,110,47,42,92,110,101,103,106,115,45,108,105,115,116,45,100,105,102,102,101,114,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,57,45,112,114,101,115,101,110,116,32,78,65,86,69,82,32,67,111,114,112,46,92,110,77,73,84,32,108,105,99,101,110,115,101,92,110,42,47,92,110,118,97,114,32,83,85,80,80,79,82,84,95,77,65,80,32,61,32,116,121,112,101,111,102,32,77,97,112,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,59,92,110,92,110,47,42,92,110,101,103,106,115,45,108,105,115,116,45,100,105,102,102,101,114,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,57,45,112,114,101,115,101,110,116,32,78,65,86,69,82,32,67,111,114,112,46,92,110,77,73,84,32,108,105,99,101,110,115,101,92,110,42,47,92,110,118,97,114,32,76,105,110,107,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,76,105,110,107,40,41,32,123,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,76,105,110,107,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,111,110,110,101,99,116,32,61,32,102,117,110,99,116,105,111,110,32,40,112,114,101,118,76,105,110,107,44,32,110,101,120,116,76,105,110,107,41,32,123,92,110,32,32,32,32,116,104,105,115,46,112,114,101,118,32,61,32,112,114,101,118,76,105,110,107,59,92,110,32,32,32,32,116,104,105,115,46,110,101,120,116,32,61,32,110,101,120,116,76,105,110,107,59,92,110,32,32,32,32,112,114,101,118,76,105,110,107,32,38,38,32,40,112,114,101,118,76,105,110,107,46,110,101,120,116,32,61,32,116,104,105,115,41,59,92,110,32,32,32,32,110,101,120,116,76,105,110,107,32,38,38,32,40,110,101,120,116,76,105,110,107,46,112,114,101,118,32,61,32,116,104,105,115,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,100,105,115,99,111,110,110,101,99,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,47,47,32,73,110,32,100,111,117,98,108,101,32,108,105,110,107,101,100,32,108,105,115,116,44,32,100,105,99,111,110,110,101,99,116,32,116,104,101,32,105,110,116,101,114,99,111,110,110,101,99,116,101,100,32,114,101,108,97,116,105,111,110,115,104,105,112,46,92,110,32,32,32,32,118,97,114,32,112,114,101,118,76,105,110,107,32,61,32,116,104,105,115,46,112,114,101,118,59,92,110,32,32,32,32,118,97,114,32,110,101,120,116,76,105,110,107,32,61,32,116,104,105,115,46,110,101,120,116,59,92,110,32,32,32,32,112,114,101,118,76,105,110,107,32,38,38,32,40,112,114,101,118,76,105,110,107,46,110,101,120,116,32,61,32,110,101,120,116,76,105,110,107,41,59,92,110,32,32,32,32,110,101,120,116,76,105,110,107,32,38,38,32,40,110,101,120,116,76,105,110,107,46,112,114,101,118,32,61,32,112,114,101,118,76,105,110,107,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,103,101,116,73,110,100,101,120,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,108,105,110,107,32,61,32,116,104,105,115,59,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,108,105,110,107,41,32,123,92,110,32,32,32,32,32,32,108,105,110,107,32,61,32,108,105,110,107,46,112,114,101,118,59,92,110,32,32,32,32,32,32,43,43,105,110,100,101,120,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,76,105,110,107,59,92,110,125,40,41,59,92,110,92,110,47,42,92,110,101,103,106,115,45,108,105,115,116,45,100,105,102,102,101,114,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,57,45,112,114,101,115,101,110,116,32,78,65,86,69,82,32,67,111,114,112,46,92,110,77,73,84,32,108,105,99,101,110,115,101,92,110,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,111,114,100,101,114,67,104,97,110,103,101,100,40,99,104,97,110,103,101,100,44,32,102,105,120,101,100,41,32,123,92,110,32,32,47,47,32,73,116,32,105,115,32,114,111,117,103,104,108,121,32,105,110,32,116,104,101,32,111,114,100,101,114,32,111,102,32,116,104,101,115,101,32,101,120,97,109,112,108,101,115,46,92,110,32,32,47,47,32,52,44,32,54,44,32,48,44,32,50,44,32,49,44,32,51,44,32,53,44,32,55,92,110,32,32,118,97,114,32,102,114,111,109,76,105,110,107,115,32,61,32,91,93,59,32,47,47,32,48,44,32,49,44,32,50,44,32,51,44,32,52,44,32,53,44,32,54,44,32,55,92,110,92,110,32,32,118,97,114,32,116,111,76,105,110,107,115,32,61,32,91,93,59,92,110,32,32,99,104,97,110,103,101,100,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,118,97,114,32,102,114,111,109,32,61,32,95,97,91,48,93,44,92,110,32,32,32,32,32,32,32,32,116,111,32,61,32,95,97,91,49,93,59,92,110,32,32,32,32,118,97,114,32,108,105,110,107,32,61,32,110,101,119,32,76,105,110,107,40,41,59,92,110,32,32,32,32,102,114,111,109,76,105,110,107,115,91,102,114,111,109,93,32,61,32,108,105,110,107,59,92,110,32,32,32,32,116,111,76,105,110,107,115,91,116,111,93,32,61,32,108,105,110,107,59,92,110,32,32,125,41,59,32,47,47,32,96,102,114,111,109,76,105,110,107,115,96,32,97,114,101,32,99,111,110,110,101,99,116,101,100,32,116,111,32,101,97,99,104,32,111,116,104,101,114,32,98,121,32,100,111,117,98,108,101,32,108,105,110,107,101,100,32,108,105,115,116,46,92,110,92,110,32,32,102,114,111,109,76,105,110,107,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,108,105,110,107,44,32,105,41,32,123,92,110,32,32,32,32,108,105,110,107,46,99,111,110,110,101,99,116,40,102,114,111,109,76,105,110,107,115,91,105,32,45,32,49,93,41,59,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,99,104,97,110,103,101,100,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,95,44,32,105,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,33,102,105,120,101,100,91,105,93,59,92,110,32,32,125,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,95,97,44,32,105,41,32,123,92,110,32,32,32,32,118,97,114,32,102,114,111,109,32,61,32,95,97,91,48,93,44,92,110,32,32,32,32,32,32,32,32,116,111,32,61,32,95,97,91,49,93,59,92,110,92,110,32,32,32,32,105,102,32,40,102,114,111,109,32,61,61,61,32,116,111,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,48,44,32,48,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,102,114,111,109,76,105,110,107,32,61,32,102,114,111,109,76,105,110,107,115,91,102,114,111,109,93,59,92,110,32,32,32,32,118,97,114,32,116,111,76,105,110,107,32,61,32,116,111,76,105,110,107,115,91,116,111,32,45,32,49,93,59,92,110,32,32,32,32,118,97,114,32,102,114,111,109,73,110,100,101,120,32,61,32,102,114,111,109,76,105,110,107,46,103,101,116,73,110,100,101,120,40,41,59,32,47,47,32,68,105,115,99,111,110,110,101,99,116,32,116,104,101,32,108,105,110,107,32,99,111,110,110,101,99,116,101,100,32,116,111,32,96,102,114,111,109,76,105,110,107,96,46,92,110,92,110,32,32,32,32,102,114,111,109,76,105,110,107,46,100,105,115,99,111,110,110,101,99,116,40,41,59,32,47,47,32,67,111,110,110,101,99,116,32,96,102,114,111,109,76,105,110,107,96,32,116,111,32,116,104,101,32,114,105,103,104,116,32,111,102,32,96,116,111,76,105,110,107,96,46,92,110,92,110,32,32,32,32,105,102,32,40,33,116,111,76,105,110,107,41,32,123,92,110,32,32,32,32,32,32,102,114,111,109,76,105,110,107,46,99,111,110,110,101,99,116,40,117,110,100,101,102,105,110,101,100,44,32,102,114,111,109,76,105,110,107,115,91,48,93,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,102,114,111,109,76,105,110,107,46,99,111,110,110,101,99,116,40,116,111,76,105,110,107,44,32,116,111,76,105,110,107,46,110,101,120,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,116,111,73,110,100,101,120,32,61,32,102,114,111,109,76,105,110,107,46,103,101,116,73,110,100,101,120,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,102,114,111,109,73,110,100,101,120,44,32,116,111,73,110,100,101,120,93,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,118,97,114,32,82,101,115,117,108,116,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,82,101,115,117,108,116,40,112,114,101,118,76,105,115,116,44,32,108,105,115,116,44,32,97,100,100,101,100,44,32,114,101,109,111,118,101,100,44,32,99,104,97,110,103,101,100,44,32,109,97,105,110,116,97,105,110,101,100,44,32,99,104,97,110,103,101,100,66,101,102,111,114,101,65,100,100,101,100,44,32,102,105,120,101,100,41,32,123,92,110,32,32,32,32,116,104,105,115,46,112,114,101,118,76,105,115,116,32,61,32,112,114,101,118,76,105,115,116,59,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,32,61,32,108,105,115,116,59,92,110,32,32,32,32,116,104,105,115,46,97,100,100,101,100,32,61,32,97,100,100,101,100,59,92,110,32,32,32,32,116,104,105,115,46,114,101,109,111,118,101,100,32,61,32,114,101,109,111,118,101,100,59,92,110,32,32,32,32,116,104,105,115,46,99,104,97,110,103,101,100,32,61,32,99,104,97,110,103,101,100,59,92,110,32,32,32,32,116,104,105,115,46,109,97,105,110,116,97,105,110,101,100,32,61,32,109,97,105,110,116,97,105,110,101,100,59,92,110,32,32,32,32,116,104,105,115,46,99,104,97,110,103,101,100,66,101,102,111,114,101,65,100,100,101,100,32,61,32,99,104,97,110,103,101,100,66,101,102,111,114,101,65,100,100,101,100,59,92,110,32,32,32,32,116,104,105,115,46,102,105,120,101,100,32,61,32,102,105,120,101,100,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,82,101,115,117,108,116,46,112,114,111,116,111,116,121,112,101,59,92,110,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,95,112,114,111,116,111,44,32,92,34,111,114,100,101,114,101,100,92,34,44,32,123,92,110,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,99,97,99,104,101,79,114,100,101,114,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,99,117,108,97,116,101,79,114,100,101,114,101,100,40,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,97,99,104,101,79,114,100,101,114,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,92,110,32,32,125,41,59,92,110,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,95,112,114,111,116,111,44,32,92,34,112,117,114,101,67,104,97,110,103,101,100,92,34,44,32,123,92,110,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,99,97,99,104,101,80,117,114,101,67,104,97,110,103,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,99,117,108,97,116,101,79,114,100,101,114,101,100,40,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,97,99,104,101,80,117,114,101,67,104,97,110,103,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,92,110,32,32,125,41,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,99,97,99,117,108,97,116,101,79,114,100,101,114,101,100,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,111,114,100,101,114,101,100,32,61,32,111,114,100,101,114,67,104,97,110,103,101,100,40,116,104,105,115,46,99,104,97,110,103,101,100,66,101,102,111,114,101,65,100,100,101,100,44,32,116,104,105,115,46,102,105,120,101,100,41,59,92,110,32,32,32,32,118,97,114,32,99,104,97,110,103,101,100,32,61,32,116,104,105,115,46,99,104,97,110,103,101,100,59,92,110,32,32,32,32,118,97,114,32,112,117,114,101,67,104,97,110,103,101,100,32,61,32,91,93,59,92,110,32,32,32,32,116,104,105,115,46,99,97,99,104,101,79,114,100,101,114,101,100,32,61,32,111,114,100,101,114,101,100,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,95,97,44,32,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,114,111,109,32,61,32,95,97,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,95,97,91,49,93,59,92,110,32,32,32,32,32,32,118,97,114,32,95,98,32,61,32,99,104,97,110,103,101,100,91,105,93,44,92,110,32,32,32,32,32,32,32,32,32,32,102,114,111,109,66,101,102,111,114,101,32,61,32,95,98,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,116,111,66,101,102,111,114,101,32,61,32,95,98,91,49,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,102,114,111,109,32,33,61,61,32,116,111,41,32,123,92,110,32,32,32,32,32,32,32,32,112,117,114,101,67,104,97,110,103,101,100,46,112,117,115,104,40,91,102,114,111,109,66,101,102,111,114,101,44,32,116,111,66,101,102,111,114,101,93,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,116,104,105,115,46,99,97,99,104,101,80,117,114,101,67,104,97,110,103,101,100,32,61,32,112,117,114,101,67,104,97,110,103,101,100,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,82,101,115,117,108,116,59,92,110,125,40,41,59,92,110,92,110,47,42,42,92,110,32,42,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,101,103,46,76,105,115,116,68,105,102,102,101,114,92,110,32,42,32,64,115,116,97,116,105,99,92,110,32,42,32,64,102,117,110,99,116,105,111,110,92,110,32,42,32,64,112,97,114,97,109,32,45,32,80,114,101,118,105,111,117,115,32,76,105,115,116,32,60,107,111,62,32,236,157,180,236,160,132,32,235,170,169,235,161,157,32,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,45,32,76,105,115,116,32,116,111,32,85,112,100,97,116,101,32,60,107,111,62,32,236,151,133,235,141,176,236,157,180,237,138,184,32,237,149,160,32,235,170,169,235,161,157,32,60,47,107,111,62,92,110,32,42,32,64,112,97,114,97,109,32,45,32,84,104,105,115,32,99,97,108,108,98,97,99,107,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,115,32,116,104,101,32,107,101,121,32,111,102,32,116,104,101,32,105,116,101,109,46,32,60,107,111,62,32,236,149,132,236,157,180,237,133,156,236,157,152,32,237,130,164,235,165,188,32,235,176,152,237,153,152,237,149,152,235,138,148,32,236,189,156,235,176,177,32,237,149,168,236,136,152,236,158,133,235,139,136,235,139,164,46,60,47,107,111,62,92,110,32,42,32,64,114,101,116,117,114,110,32,45,32,82,101,116,117,114,110,115,32,116,104,101,32,100,105,102,102,32,98,101,116,119,101,101,110,32,96,112,114,101,118,76,105,115,116,96,32,97,110,100,32,96,108,105,115,116,96,32,60,107,111,62,32,96,112,114,101,118,76,105,115,116,96,236,153,128,32,96,108,105,115,116,96,236,157,152,32,235,139,164,235,165,184,32,236,160,144,236,157,132,32,235,176,152,237,153,152,237,149,156,235,139,164,46,60,47,107,111,62,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,32,105,109,112,111,114,116,32,123,32,100,105,102,102,32,125,32,102,114,111,109,32,92,34,64,101,103,106,115,47,108,105,115,116,45,100,105,102,102,101,114,92,34,59,92,110,32,42,32,47,47,32,115,99,114,105,112,116,32,61,62,32,101,103,46,76,105,115,116,68,105,102,102,101,114,46,100,105,102,102,92,110,32,42,32,99,111,110,115,116,32,114,101,115,117,108,116,32,61,32,100,105,102,102,40,91,48,44,32,49,44,32,50,44,32,51,44,32,52,44,32,53,93,44,32,91,55,44,32,56,44,32,48,44,32,52,44,32,51,44,32,54,44,32,50,44,32,49,93,44,32,101,32,61,62,32,101,41,59,92,110,32,42,32,47,47,32,76,105,115,116,32,98,101,102,111,114,101,32,117,112,100,97,116,101,92,110,32,42,32,47,47,32,91,49,44,32,50,44,32,51,44,32,52,44,32,53,93,92,110,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,112,114,101,118,76,105,115,116,41,59,92,110,32,42,32,47,47,32,85,112,100,97,116,101,100,32,108,105,115,116,92,110,32,42,32,47,47,32,91,52,44,32,51,44,32,54,44,32,50,44,32,49,93,92,110,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,108,105,115,116,41,59,92,110,32,42,32,47,47,32,73,110,100,101,120,32,97,114,114,97,121,32,111,102,32,118,97,108,117,101,115,32,97,100,100,101,100,32,116,111,32,96,108,105,115,116,96,92,110,32,42,32,47,47,32,91,48,44,32,49,44,32,53,93,92,110,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,97,100,100,101,100,41,59,92,110,32,42,32,47,47,32,73,110,100,101,120,32,97,114,114,97,121,32,111,102,32,118,97,108,117,101,115,32,114,101,109,111,118,101,100,32,105,110,32,96,112,114,101,118,76,105,115,116,96,92,110,32,42,32,47,47,32,91,53,93,92,110,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,114,101,109,111,118,101,100,41,59,92,110,32,42,32,47,47,32,65,110,32,97,114,114,97,121,32,111,102,32,105,110,100,101,120,32,112,97,105,114,115,32,111,102,32,96,112,114,101,118,76,105,115,116,96,32,97,110,100,32,96,108,105,115,116,96,32,119,105,116,104,32,100,105,102,102,101,114,101,110,116,32,105,110,100,101,120,101,115,32,102,114,111,109,32,96,112,114,101,118,76,105,115,116,96,32,97,110,100,32,96,108,105,115,116,96,92,110,32,42,32,47,47,32,91,91,48,44,32,50,93,44,32,91,52,44,32,51,93,44,32,91,51,44,32,52,93,44,32,91,50,44,32,54,93,44,32,91,49,44,32,55,93,93,92,110,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,99,104,97,110,103,101,100,41,59,92,110,32,42,32,47,47,32,84,104,101,32,115,117,98,115,101,116,32,111,102,32,96,99,104,97,110,103,101,100,96,32,97,110,100,32,97,110,32,97,114,114,97,121,32,111,102,32,105,110,100,101,120,32,112,97,105,114,115,32,116,104,97,116,32,109,111,118,101,100,32,100,97,116,97,32,100,105,114,101,99,116,108,121,46,32,73,110,100,105,99,97,116,101,32,97,110,32,97,114,114,97,121,32,111,102,32,97,98,115,111,108,117,116,101,32,105,110,100,101,120,32,112,97,105,114,115,32,111,102,32,96,111,114,100,101,114,101,100,96,46,40,70,111,114,109,97,116,116,101,100,32,98,121,58,32,65,114,114,97,121,60,91,105,110,100,101,120,32,111,102,32,112,114,101,118,76,105,115,116,44,32,105,110,100,101,120,32,111,102,32,108,105,115,116,93,62,41,92,110,32,42,32,47,47,32,91,91,52,44,32,51,93,44,32,91,51,44,32,52,93,44,32,91,50,44,32,54,93,93,92,110,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,112,117,114,101,67,104,97,110,103,101,100,41,59,92,110,32,42,32,47,47,32,65,110,32,97,114,114,97,121,32,111,102,32,105,110,100,101,120,32,112,97,105,114,115,32,116,111,32,98,101,32,96,111,114,100,101,114,101,100,96,32,116,104,97,116,32,99,97,110,32,115,121,110,99,104,114,111,110,105,122,101,32,96,108,105,115,116,96,32,98,101,102,111,114,101,32,97,100,100,105,110,103,32,100,97,116,97,46,32,40,70,111,114,109,97,116,116,101,100,32,98,121,58,32,65,114,114,97,121,60,91,112,114,101,118,73,110,100,101,120,44,32,110,101,120,116,73,110,100,101,120,93,62,41,92,110,32,42,32,47,47,32,91,91,52,44,32,49,93,44,32,91,52,44,32,50,93,44,32,91,52,44,32,51,93,93,92,110,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,111,114,100,101,114,101,100,41,59,92,110,32,42,32,47,47,32,65,110,32,97,114,114,97,121,32,111,102,32,105,110,100,101,120,32,112,97,105,114,115,32,111,102,32,96,112,114,101,118,76,105,115,116,96,32,97,110,100,32,96,108,105,115,116,96,32,116,104,97,116,32,104,97,118,101,32,110,111,116,32,98,101,101,110,32,97,100,100,101,100,47,114,101,109,111,118,101,100,32,115,111,32,100,97,116,97,32,105,115,32,112,114,101,115,101,114,118,101,100,92,110,32,42,32,47,47,32,91,91,48,44,32,50,93,44,32,91,52,44,32,51,93,44,32,91,51,44,32,52,93,44,32,91,50,44,32,54,93,44,32,91,49,44,32,55,93,93,92,110,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,109,97,105,110,116,97,105,110,101,100,41,59,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,100,105,102,102,40,112,114,101,118,76,105,115,116,44,32,108,105,115,116,44,32,102,105,110,100,75,101,121,67,97,108,108,98,97,99,107,41,32,123,92,110,32,32,118,97,114,32,109,97,112,67,108,97,115,115,32,61,32,83,85,80,80,79,82,84,95,77,65,80,32,63,32,77,97,112,32,58,32,102,105,110,100,75,101,121,67,97,108,108,98,97,99,107,32,63,32,72,97,115,104,77,97,112,32,58,32,80,111,108,121,77,97,112,59,92,110,92,110,32,32,118,97,114,32,99,97,108,108,98,97,99,107,32,61,32,102,105,110,100,75,101,121,67,97,108,108,98,97,99,107,32,124,124,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,59,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,97,100,100,101,100,32,61,32,91,93,59,92,110,32,32,118,97,114,32,114,101,109,111,118,101,100,32,61,32,91,93,59,92,110,32,32,118,97,114,32,109,97,105,110,116,97,105,110,101,100,32,61,32,91,93,59,92,110,32,32,118,97,114,32,112,114,101,118,75,101,121,115,32,61,32,112,114,101,118,76,105,115,116,46,109,97,112,40,99,97,108,108,98,97,99,107,41,59,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,108,105,115,116,46,109,97,112,40,99,97,108,108,98,97,99,107,41,59,92,110,32,32,118,97,114,32,112,114,101,118,75,101,121,77,97,112,32,61,32,110,101,119,32,109,97,112,67,108,97,115,115,40,41,59,92,110,32,32,118,97,114,32,107,101,121,77,97,112,32,61,32,110,101,119,32,109,97,112,67,108,97,115,115,40,41,59,92,110,32,32,118,97,114,32,99,104,97,110,103,101,100,66,101,102,111,114,101,65,100,100,101,100,32,61,32,91,93,59,92,110,32,32,118,97,114,32,102,105,120,101,100,32,61,32,91,93,59,92,110,32,32,118,97,114,32,114,101,109,111,118,101,100,77,97,112,32,61,32,123,125,59,92,110,32,32,118,97,114,32,99,104,97,110,103,101,100,32,61,32,91,93,59,92,110,32,32,118,97,114,32,97,100,100,101,100,67,111,117,110,116,32,61,32,48,59,92,110,32,32,118,97,114,32,114,101,109,111,118,101,100,67,111,117,110,116,32,61,32,48,59,32,47,47,32,65,100,100,32,112,114,101,118,75,101,121,115,32,97,110,100,32,107,101,121,115,32,116,111,32,116,104,101,32,104,97,115,104,109,97,112,46,92,110,92,110,32,32,112,114,101,118,75,101,121,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,44,32,112,114,101,118,76,105,115,116,73,110,100,101,120,41,32,123,92,110,32,32,32,32,112,114,101,118,75,101,121,77,97,112,46,115,101,116,40,107,101,121,44,32,112,114,101,118,76,105,115,116,73,110,100,101,120,41,59,92,110,32,32,125,41,59,92,110,32,32,107,101,121,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,44,32,108,105,115,116,73,110,100,101,120,41,32,123,92,110,32,32,32,32,107,101,121,77,97,112,46,115,101,116,40,107,101,121,44,32,108,105,115,116,73,110,100,101,120,41,59,92,110,32,32,125,41,59,32,47,47,32,67,111,109,112,97,114,101,32,96,112,114,101,118,75,101,121,115,96,32,97,110,100,32,96,107,101,121,115,96,32,97,110,100,32,97,100,100,32,116,104,101,109,32,116,111,32,96,114,101,109,111,118,101,100,96,32,105,102,32,116,104,101,121,32,97,114,101,32,110,111,116,32,105,110,32,96,107,101,121,115,96,46,92,110,92,110,32,32,112,114,101,118,75,101,121,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,44,32,112,114,101,118,76,105,115,116,73,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,108,105,115,116,73,110,100,101,120,32,61,32,107,101,121,77,97,112,46,103,101,116,40,107,101,121,41,59,32,47,47,32,73,110,32,112,114,101,118,76,105,115,116,44,32,98,117,116,32,110,111,116,32,105,110,32,108,105,115,116,44,32,105,116,32,105,115,32,114,101,109,111,118,101,100,46,92,110,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,108,105,115,116,73,110,100,101,120,32,61,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,41,32,123,92,110,32,32,32,32,32,32,43,43,114,101,109,111,118,101,100,67,111,117,110,116,59,92,110,32,32,32,32,32,32,114,101,109,111,118,101,100,46,112,117,115,104,40,112,114,101,118,76,105,115,116,73,110,100,101,120,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,109,111,118,101,100,77,97,112,91,108,105,115,116,73,110,100,101,120,93,32,61,32,114,101,109,111,118,101,100,67,111,117,110,116,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,67,111,109,112,97,114,101,32,96,112,114,101,118,75,101,121,115,96,32,97,110,100,32,96,107,101,121,115,96,32,97,110,100,32,97,100,100,32,116,104,101,109,32,116,111,32,96,97,100,100,101,100,96,32,105,102,32,116,104,101,121,32,97,114,101,32,110,111,116,32,105,110,32,96,112,114,101,118,75,101,121,115,96,46,92,110,92,110,32,32,107,101,121,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,44,32,108,105,115,116,73,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,101,118,76,105,115,116,73,110,100,101,120,32,61,32,112,114,101,118,75,101,121,77,97,112,46,103,101,116,40,107,101,121,41,59,32,47,47,32,73,110,32,108,105,115,116,44,32,98,117,116,32,110,111,116,32,105,110,32,112,114,101,118,76,105,115,116,44,32,105,116,32,105,115,32,97,100,100,101,100,46,92,110,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,112,114,101,118,76,105,115,116,73,110,100,101,120,32,61,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,41,32,123,92,110,32,32,32,32,32,32,97,100,100,101,100,46,112,117,115,104,40,108,105,115,116,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,43,43,97,100,100,101,100,67,111,117,110,116,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,109,97,105,110,116,97,105,110,101,100,46,112,117,115,104,40,91,112,114,101,118,76,105,115,116,73,110,100,101,120,44,32,108,105,115,116,73,110,100,101,120,93,41,59,92,110,32,32,32,32,32,32,114,101,109,111,118,101,100,67,111,117,110,116,32,61,32,114,101,109,111,118,101,100,77,97,112,91,108,105,115,116,73,110,100,101,120,93,32,124,124,32,48,59,92,110,32,32,32,32,32,32,99,104,97,110,103,101,100,66,101,102,111,114,101,65,100,100,101,100,46,112,117,115,104,40,91,112,114,101,118,76,105,115,116,73,110,100,101,120,32,45,32,114,101,109,111,118,101,100,67,111,117,110,116,44,32,108,105,115,116,73,110,100,101,120,32,45,32,97,100,100,101,100,67,111,117,110,116,93,41,59,92,110,32,32,32,32,32,32,102,105,120,101,100,46,112,117,115,104,40,108,105,115,116,73,110,100,101,120,32,61,61,61,32,112,114,101,118,76,105,115,116,73,110,100,101,120,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,112,114,101,118,76,105,115,116,73,110,100,101,120,32,33,61,61,32,108,105,115,116,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,99,104,97,110,103,101,100,46,112,117,115,104,40,91,112,114,101,118,76,105,115,116,73,110,100,101,120,44,32,108,105,115,116,73,110,100,101,120,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,83,111,114,116,32,98,121,32,97,115,99,101,110,100,105,110,103,32,111,114,100,101,114,32,111,102,32,39,116,111,40,108,105,115,116,39,115,32,105,110,100,101,120,41,46,92,110,92,110,32,32,114,101,109,111,118,101,100,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,82,101,115,117,108,116,40,112,114,101,118,76,105,115,116,44,32,108,105,115,116,44,32,97,100,100,101,100,44,32,114,101,109,111,118,101,100,44,32,99,104,97,110,103,101,100,44,32,109,97,105,110,116,97,105,110,101,100,44,32,99,104,97,110,103,101,100,66,101,102,111,114,101,65,100,100,101,100,44,32,102,105,120,101,100,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,65,32,109,111,100,117,108,101,32,116,104,97,116,32,99,104,101,99,107,115,32,100,105,102,102,32,119,104,101,110,32,118,97,108,117,101,115,32,97,114,101,32,97,100,100,101,100,44,32,114,101,109,111,118,101,100,44,32,111,114,32,99,104,97,110,103,101,100,32,105,110,32,97,110,32,97,114,114,97,121,46,92,110,32,42,32,64,107,111,32,235,176,176,236,151,180,32,235,152,144,235,138,148,32,236,152,164,235,184,140,236,160,157,237,138,184,236,151,144,236,132,156,32,234,176,146,236,157,180,32,236,182,148,234,176,128,235,144,152,234,177,176,235,130,152,32,236,130,173,236,160,156,235,144,152,234,177,176,235,130,152,32,236,136,156,236,132,156,234,176,128,32,235,179,128,234,178,189,236,130,172,237,149,173,236,157,132,32,236,178,180,237,129,172,237,149,152,235,138,148,32,235,170,168,235,147,136,236,158,133,235,139,136,235,139,164,46,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,101,103,92,110,32,42,47,92,110,92,110,118,97,114,32,76,105,115,116,68,105,102,102,101,114,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,47,42,42,92,110,32,32,32,42,32,64,112,97,114,97,109,32,45,32,73,110,105,116,105,97,108,105,122,105,110,103,32,68,97,116,97,32,65,114,114,97,121,46,32,60,107,111,62,32,236,180,136,234,184,176,32,236,132,164,236,160,149,237,149,160,32,235,141,176,236,157,180,237,132,176,32,235,176,176,236,151,180,46,60,47,107,111,62,92,110,32,32,32,42,32,64,112,97,114,97,109,32,45,32,84,104,105,115,32,99,97,108,108,98,97,99,107,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,115,32,116,104,101,32,107,101,121,32,111,102,32,116,104,101,32,105,116,101,109,46,32,60,107,111,62,32,236,149,132,236,157,180,237,133,156,236,157,152,32,237,130,164,235,165,188,32,235,176,152,237,153,152,237,149,152,235,138,148,32,236,189,156,235,176,177,32,237,149,168,236,136,152,236,158,133,235,139,136,235,139,164,46,60,47,107,111,62,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,32,105,109,112,111,114,116,32,76,105,115,116,68,105,102,102,101,114,32,102,114,111,109,32,92,34,64,101,103,106,115,47,108,105,115,116,45,100,105,102,102,101,114,92,34,59,92,110,32,32,32,42,32,47,47,32,115,99,114,105,112,116,32,61,62,32,101,103,46,76,105,115,116,68,105,102,102,101,114,92,110,32,32,32,42,32,99,111,110,115,116,32,100,105,102,102,101,114,32,61,32,110,101,119,32,76,105,115,116,68,105,102,102,101,114,40,91,48,44,32,49,44,32,50,44,32,51,44,32,52,44,32,53,93,44,32,101,32,61,62,32,101,41,59,92,110,32,32,32,42,32,99,111,110,115,116,32,114,101,115,117,108,116,32,61,32,100,105,102,102,101,114,46,117,112,100,97,116,101,40,91,55,44,32,56,44,32,48,44,32,52,44,32,51,44,32,54,44,32,50,44,32,49,93,41,59,92,110,32,32,32,42,32,47,47,32,76,105,115,116,32,98,101,102,111,114,101,32,117,112,100,97,116,101,92,110,32,32,32,42,32,47,47,32,91,49,44,32,50,44,32,51,44,32,52,44,32,53,93,92,110,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,112,114,101,118,76,105,115,116,41,59,92,110,32,32,32,42,32,47,47,32,85,112,100,97,116,101,100,32,108,105,115,116,92,110,32,32,32,42,32,47,47,32,91,52,44,32,51,44,32,54,44,32,50,44,32,49,93,92,110,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,108,105,115,116,41,59,92,110,32,32,32,42,32,47,47,32,73,110,100,101,120,32,97,114,114,97,121,32,111,102,32,118,97,108,117,101,115,32,97,100,100,101,100,32,116,111,32,96,108,105,115,116,96,46,92,110,32,32,32,42,32,47,47,32,91,48,44,32,49,44,32,53,93,92,110,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,97,100,100,101,100,41,59,92,110,32,32,32,42,32,47,47,32,73,110,100,101,120,32,97,114,114,97,121,32,111,102,32,118,97,108,117,101,115,32,114,101,109,111,118,101,100,32,105,110,32,96,112,114,101,118,76,105,115,116,96,46,92,110,32,32,32,42,32,47,47,32,91,53,93,92,110,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,114,101,109,111,118,101,100,41,59,92,110,32,32,32,42,32,47,47,32,65,110,32,97,114,114,97,121,32,111,102,32,105,110,100,101,120,32,112,97,105,114,115,32,111,102,32,96,112,114,101,118,76,105,115,116,96,32,97,110,100,32,96,108,105,115,116,96,32,119,105,116,104,32,100,105,102,102,101,114,101,110,116,32,105,110,100,101,120,101,115,32,102,114,111,109,32,96,112,114,101,118,76,105,115,116,96,32,97,110,100,32,96,108,105,115,116,96,46,92,110,32,32,32,42,32,47,47,32,91,91,48,44,32,50,93,44,32,91,52,44,32,51,93,44,32,91,51,44,32,52,93,44,32,91,50,44,32,54,93,44,32,91,49,44,32,55,93,93,92,110,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,99,104,97,110,103,101,100,41,59,92,110,32,32,32,42,32,47,47,32,84,104,101,32,115,117,98,115,101,116,32,111,102,32,96,99,104,97,110,103,101,100,96,32,97,110,100,32,97,110,32,97,114,114,97,121,32,111,102,32,105,110,100,101,120,32,112,97,105,114,115,32,116,104,97,116,32,109,111,118,101,100,32,100,97,116,97,32,100,105,114,101,99,116,108,121,46,32,73,110,100,105,99,97,116,101,32,97,110,32,97,114,114,97,121,32,111,102,32,97,98,115,111,108,117,116,101,32,105,110,100,101,120,32,112,97,105,114,115,32,111,102,32,96,111,114,100,101,114,101,100,96,46,40,70,111,114,109,97,116,116,101,100,32,98,121,58,32,65,114,114,97,121,60,91,105,110,100,101,120,32,111,102,32,112,114,101,118,76,105,115,116,44,32,105,110,100,101,120,32,111,102,32,108,105,115,116,93,62,41,92,110,32,32,32,42,32,47,47,32,91,91,52,44,32,51,93,44,32,91,51,44,32,52,93,44,32,91,50,44,32,54,93,93,92,110,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,112,117,114,101,67,104,97,110,103,101,100,41,59,92,110,32,32,32,42,32,47,47,32,65,110,32,97,114,114,97,121,32,111,102,32,105,110,100,101,120,32,112,97,105,114,115,32,116,111,32,98,101,32,96,111,114,100,101,114,101,100,96,32,116,104,97,116,32,99,97,110,32,115,121,110,99,104,114,111,110,105,122,101,32,96,108,105,115,116,96,32,98,101,102,111,114,101,32,97,100,100,105,110,103,32,100,97,116,97,46,32,40,70,111,114,109,97,116,116,101,100,32,98,121,58,32,65,114,114,97,121,60,91,112,114,101,118,73,110,100,101,120,44,32,110,101,120,116,73,110,100,101,120,93,62,41,92,110,32,32,32,42,32,47,47,32,91,91,52,44,32,49,93,44,32,91,52,44,32,50,93,44,32,91,52,44,32,51,93,93,92,110,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,111,114,100,101,114,101,100,41,59,92,110,32,32,32,42,32,47,47,32,65,110,32,97,114,114,97,121,32,111,102,32,105,110,100,101,120,32,112,97,105,114,115,32,111,102,32,96,112,114,101,118,76,105,115,116,96,32,97,110,100,32,96,108,105,115,116,96,32,116,104,97,116,32,104,97,118,101,32,110,111,116,32,98,101,101,110,32,97,100,100,101,100,47,114,101,109,111,118,101,100,32,115,111,32,100,97,116,97,32,105,115,32,112,114,101,115,101,114,118,101,100,46,92,110,32,32,32,42,32,47,47,32,91,91,48,44,32,50,93,44,32,91,52,44,32,51,93,44,32,91,51,44,32,52,93,44,32,91,50,44,32,54,93,44,32,91,49,44,32,55,93,93,92,110,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,109,97,105,110,116,97,105,110,101,100,41,59,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,76,105,115,116,68,105,102,102,101,114,40,108,105,115,116,44,32,102,105,110,100,75,101,121,67,97,108,108,98,97,99,107,41,32,123,92,110,32,32,32,32,105,102,32,40,108,105,115,116,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,108,105,115,116,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,102,105,110,100,75,101,121,67,97,108,108,98,97,99,107,32,61,32,102,105,110,100,75,101,121,67,97,108,108,98,97,99,107,59,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,32,61,32,91,93,46,115,108,105,99,101,46,99,97,108,108,40,108,105,115,116,41,59,92,110,32,32,125,92,110,32,32,47,42,42,92,110,32,32,32,42,32,85,112,100,97,116,101,32,108,105,115,116,46,92,110,32,32,32,42,32,64,107,111,32,235,166,172,236,138,164,237,138,184,235,165,188,32,236,151,133,235,141,176,236,157,180,237,138,184,235,165,188,32,237,149,169,235,139,136,235,139,164,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,45,32,76,105,115,116,32,116,111,32,117,112,100,97,116,101,32,60,107,111,62,32,236,151,133,235,141,176,236,157,180,237,138,184,237,149,160,32,235,166,172,236,138,164,237,138,184,32,60,47,107,111,62,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,45,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,115,117,108,116,115,32,111,102,32,97,110,32,117,112,100,97,116,101,32,102,114,111,109,32,96,112,114,101,118,76,105,115,116,96,32,116,111,32,96,108,105,115,116,96,46,60,107,111,62,32,96,112,114,101,118,76,105,115,116,96,236,151,144,236,132,156,32,96,108,105,115,116,96,235,161,156,32,236,151,133,235,141,176,236,157,180,237,138,184,237,149,156,32,234,178,176,234,179,188,235,165,188,32,235,176,152,237,153,152,237,149,156,235,139,164,46,32,60,47,107,111,62,92,110,32,32,32,42,47,92,110,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,76,105,115,116,68,105,102,102,101,114,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,117,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,40,108,105,115,116,41,32,123,92,110,32,32,32,32,118,97,114,32,110,101,119,68,97,116,97,32,61,32,91,93,46,115,108,105,99,101,46,99,97,108,108,40,108,105,115,116,41,59,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,100,105,102,102,40,116,104,105,115,46,108,105,115,116,44,32,110,101,119,68,97,116,97,44,32,116,104,105,115,46,102,105,110,100,75,101,121,67,97,108,108,98,97,99,107,41,59,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,32,61,32,110,101,119,68,97,116,97,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,76,105,115,116,68,105,102,102,101,114,59,92,110,125,40,41,59,92,110,92,110,47,42,92,110,101,103,106,115,45,108,105,115,116,45,100,105,102,102,101,114,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,57,45,112,114,101,115,101,110,116,32,78,65,86,69,82,32,67,111,114,112,46,92,110,77,73,84,32,108,105,99,101,110,115,101,92,110,42,47,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,76,105,115,116,68,105,102,102,101,114,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,108,105,115,116,45,100,105,102,102,101,114,46,101,115,109,46,106,115,46,109,97,112,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,108,105,115,116,45,100,105,102,102,101,114,47,100,105,115,116,47,108,105,115,116,45,100,105,102,102,101,114,46,101,115,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,118,117,101,45,105,110,102,105,110,105,116,101,103,114,105,100,47,100,105,115,116,47,105,110,102,105,110,105,116,101,103,114,105,100,46,101,115,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,118,117,101,45,105,110,102,105,110,105,116,101,103,114,105,100,47,100,105,115,116,47,105,110,102,105,110,105,116,101,103,114,105,100,46,101,115,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,114,97,109,101,76,97,121,111,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,114,97,109,101,76,97,121,111,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,71,114,105,100,76,97,121,111,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,71,114,105,100,76,97,121,111,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,110,102,105,110,105,116,101,71,114,105,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,110,102,105,110,105,116,101,71,114,105,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,97,99,107,105,110,103,76,97,121,111,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,97,99,107,105,110,103,76,97,121,111,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,113,117,97,114,101,76,97,121,111,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,113,117,97,114,101,76,97,121,111,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,115,116,97,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,110,115,116,97,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,118,101,114,115,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,118,101,114,115,105,111,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,101,103,106,115,47,105,110,102,105,110,105,116,101,103,114,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,105,110,102,105,110,105,116,101,103,114,105,100,47,100,105,115,116,47,105,110,102,105,110,105,116,101,103,114,105,100,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,45,112,114,111,112,101,114,116,121,45,100,101,99,111,114,97,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,112,114,111,112,101,114,116,121,45,100,101,99,111,114,97,116,111,114,47,108,105,98,47,118,117,101,45,112,114,111,112,101,114,116,121,45,100,101,99,111,114,97,116,111,114,46,106,115,92,34,41,59,92,110,47,42,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,78,65,86,69,82,32,67,111,114,112,46,92,110,110,97,109,101,58,32,64,101,103,106,115,47,118,117,101,45,105,110,102,105,110,105,116,101,103,114,105,100,92,110,108,105,99,101,110,115,101,58,32,77,73,84,92,110,97,117,116,104,111,114,58,32,78,65,86,69,82,32,67,111,114,112,46,92,110,114,101,112,111,115,105,116,111,114,121,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,110,97,118,101,114,47,101,103,106,115,45,105,110,102,105,110,105,116,101,103,114,105,100,47,116,114,101,101,47,109,97,115,116,101,114,47,112,97,99,107,97,103,101,115,47,118,117,101,45,105,110,102,105,110,105,116,101,103,114,105,100,92,110,118,101,114,115,105,111,110,58,32,51,46,51,46,48,92,110,42,47,92,110,92,110,92,110,92,110,47,42,33,32,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,92,114,92,110,67,111,112,121,114,105,103,104,116,32,40,99,41,32,77,105,99,114,111,115,111,102,116,32,67,111,114,112,111,114,97,116,105,111,110,46,32,65,108,108,32,114,105,103,104,116,115,32,114,101,115,101,114,118,101,100,46,92,114,92,110,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,40,116,104,101,32,92,34,76,105,99,101,110,115,101,92,34,41,59,32,121,111,117,32,109,97,121,32,110,111,116,32,117,115,101,92,114,92,110,116,104,105,115,32,102,105,108,101,32,101,120,99,101,112,116,32,105,110,32,99,111,109,112,108,105,97,110,99,101,32,119,105,116,104,32,116,104,101,32,76,105,99,101,110,115,101,46,32,89,111,117,32,109,97,121,32,111,98,116,97,105,110,32,97,32,99,111,112,121,32,111,102,32,116,104,101,92,114,92,110,76,105,99,101,110,115,101,32,97,116,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,92,114,92,110,92,114,92,110,84,72,73,83,32,67,79,68,69,32,73,83,32,80,82,79,86,73,68,69,68,32,79,78,32,65,78,32,42,65,83,32,73,83,42,32,66,65,83,73,83,44,32,87,73,84,72,79,85,84,32,87,65,82,82,65,78,84,73,69,83,32,79,82,32,67,79,78,68,73,84,73,79,78,83,32,79,70,32,65,78,89,92,114,92,110,75,73,78,68,44,32,69,73,84,72,69,82,32,69,88,80,82,69,83,83,32,79,82,32,73,77,80,76,73,69,68,44,32,73,78,67,76,85,68,73,78,71,32,87,73,84,72,79,85,84,32,76,73,77,73,84,65,84,73,79,78,32,65,78,89,32,73,77,80,76,73,69,68,92,114,92,110,87,65,82,82,65,78,84,73,69,83,32,79,82,32,67,79,78,68,73,84,73,79,78,83,32,79,70,32,84,73,84,76,69,44,32,70,73,84,78,69,83,83,32,70,79,82,32,65,32,80,65,82,84,73,67,85,76,65,82,32,80,85,82,80,79,83,69,44,92,114,92,110,77,69,82,67,72,65,78,84,65,66,76,73,84,89,32,79,82,32,78,79,78,45,73,78,70,82,73,78,71,69,77,69,78,84,46,92,114,92,110,92,114,92,110,83,101,101,32,116,104,101,32,65,112,97,99,104,101,32,86,101,114,115,105,111,110,32,50,46,48,32,76,105,99,101,110,115,101,32,102,111,114,32,115,112,101,99,105,102,105,99,32,108,97,110,103,117,97,103,101,32,103,111,118,101,114,110,105,110,103,32,112,101,114,109,105,115,115,105,111,110,115,92,114,92,110,97,110,100,32,108,105,109,105,116,97,116,105,111,110,115,32,117,110,100,101,114,32,116,104,101,32,76,105,99,101,110,115,101,46,92,114,92,110,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,32,42,47,92,110,92,110,47,42,32,103,108,111,98,97,108,32,82,101,102,108,101,99,116,44,32,80,114,111,109,105,115,101,32,42,47,92,110,118,97,114,32,101,120,116,101,110,100,83,116,97,116,105,99,115,32,61,32,102,117,110,99,116,105,111,110,32,40,100,44,32,98,41,32,123,92,110,32,32,101,120,116,101,110,100,83,116,97,116,105,99,115,32,61,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,32,124,124,32,123,92,110,32,32,32,32,95,95,112,114,111,116,111,95,95,58,32,91,93,92,110,32,32,125,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,32,38,38,32,102,117,110,99,116,105,111,110,32,40,100,44,32,98,41,32,123,92,110,32,32,32,32,100,46,95,95,112,114,111,116,111,95,95,32,61,32,98,59,92,110,32,32,125,32,124,124,32,102,117,110,99,116,105,111,110,32,40,100,44,32,98,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,112,32,105,110,32,98,41,32,105,102,32,40,98,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,112,41,41,32,100,91,112,93,32,61,32,98,91,112,93,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,101,120,116,101,110,100,83,116,97,116,105,99,115,40,100,44,32,98,41,59,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,95,95,101,120,116,101,110,100,115,40,100,44,32,98,41,32,123,92,110,32,32,101,120,116,101,110,100,83,116,97,116,105,99,115,40,100,44,32,98,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,95,95,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,100,59,92,110,32,32,125,92,110,92,110,32,32,100,46,112,114,111,116,111,116,121,112,101,32,61,32,98,32,61,61,61,32,110,117,108,108,32,63,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,98,41,32,58,32,40,95,95,46,112,114,111,116,111,116,121,112,101,32,61,32,98,46,112,114,111,116,111,116,121,112,101,44,32,110,101,119,32,95,95,40,41,41,59,92,110,125,92,110,118,97,114,32,95,95,97,115,115,105,103,110,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,95,95,97,115,115,105,103,110,32,61,32,79,98,106,101,99,116,46,97,115,115,105,103,110,32,124,124,32,102,117,110,99,116,105,111,110,32,95,95,97,115,115,105,103,110,40,116,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,115,44,32,105,32,61,32,49,44,32,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,115,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,112,32,105,110,32,115,41,32,105,102,32,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,115,44,32,112,41,41,32,116,91,112,93,32,61,32,115,91,112,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,95,97,115,115,105,103,110,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,59,92,110,102,117,110,99,116,105,111,110,32,95,95,100,101,99,111,114,97,116,101,40,100,101,99,111,114,97,116,111,114,115,44,32,116,97,114,103,101,116,44,32,107,101,121,44,32,100,101,115,99,41,32,123,92,110,32,32,118,97,114,32,99,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,114,32,61,32,99,32,60,32,51,32,63,32,116,97,114,103,101,116,32,58,32,100,101,115,99,32,61,61,61,32,110,117,108,108,32,63,32,100,101,115,99,32,61,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,116,97,114,103,101,116,44,32,107,101,121,41,32,58,32,100,101,115,99,44,92,110,32,32,32,32,32,32,100,59,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,82,101,102,108,101,99,116,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,32,38,38,32,116,121,112,101,111,102,32,82,101,102,108,101,99,116,46,100,101,99,111,114,97,116,101,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,114,32,61,32,82,101,102,108,101,99,116,46,100,101,99,111,114,97,116,101,40,100,101,99,111,114,97,116,111,114,115,44,32,116,97,114,103,101,116,44,32,107,101,121,44,32,100,101,115,99,41,59,101,108,115,101,32,102,111,114,32,40,118,97,114,32,105,32,61,32,100,101,99,111,114,97,116,111,114,115,46,108,101,110,103,116,104,32,45,32,49,59,32,105,32,62,61,32,48,59,32,105,45,45,41,32,105,102,32,40,100,32,61,32,100,101,99,111,114,97,116,111,114,115,91,105,93,41,32,114,32,61,32,40,99,32,60,32,51,32,63,32,100,40,114,41,32,58,32,99,32,62,32,51,32,63,32,100,40,116,97,114,103,101,116,44,32,107,101,121,44,32,114,41,32,58,32,100,40,116,97,114,103,101,116,44,32,107,101,121,41,41,32,124,124,32,114,59,92,110,32,32,114,101,116,117,114,110,32,99,32,62,32,51,32,38,38,32,114,32,38,38,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,114,41,44,32,114,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,95,95,114,101,97,100,40,111,44,32,110,41,32,123,92,110,32,32,118,97,114,32,109,32,61,32,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,111,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,59,92,110,32,32,105,102,32,40,33,109,41,32,114,101,116,117,114,110,32,111,59,92,110,32,32,118,97,114,32,105,32,61,32,109,46,99,97,108,108,40,111,41,44,92,110,32,32,32,32,32,32,114,44,92,110,32,32,32,32,32,32,97,114,32,61,32,91,93,44,92,110,32,32,32,32,32,32,101,59,92,110,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,40,110,32,61,61,61,32,118,111,105,100,32,48,32,124,124,32,110,45,45,32,62,32,48,41,32,38,38,32,33,40,114,32,61,32,105,46,110,101,120,116,40,41,41,46,100,111,110,101,41,32,97,114,46,112,117,115,104,40,114,46,118,97,108,117,101,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,114,114,111,114,41,32,123,92,110,32,32,32,32,101,32,61,32,123,92,110,32,32,32,32,32,32,101,114,114,111,114,58,32,101,114,114,111,114,92,110,32,32,32,32,125,59,92,110,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,105,102,32,40,114,32,38,38,32,33,114,46,100,111,110,101,32,38,38,32,40,109,32,61,32,105,91,92,34,114,101,116,117,114,110,92,34,93,41,41,32,109,46,99,97,108,108,40,105,41,59,92,110,32,32,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,32,32,105,102,32,40,101,41,32,116,104,114,111,119,32,101,46,101,114,114,111,114,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,97,114,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,95,95,115,112,114,101,97,100,40,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,97,114,32,61,32,91,93,44,32,105,32,61,32,48,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,97,114,32,61,32,97,114,46,99,111,110,99,97,116,40,95,95,114,101,97,100,40,97,114,103,117,109,101,110,116,115,91,105,93,41,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,97,114,59,92,110,125,92,110,92,110,118,97,114,32,73,110,102,105,110,105,116,101,71,114,105,100,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,95,115,117,112,101,114,41,32,123,92,110,32,32,95,95,101,120,116,101,110,100,115,40,73,110,102,105,110,105,116,101,71,114,105,100,44,32,95,115,117,112,101,114,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,73,110,102,105,110,105,116,101,71,114,105,100,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,117,112,101,114,32,33,61,61,32,110,117,108,108,32,38,38,32,95,115,117,112,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,124,124,32,116,104,105,115,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,95,112,114,111,116,111,32,61,32,73,110,102,105,110,105,116,101,71,114,105,100,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,109,111,117,110,116,101,100,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,119,114,97,112,112,101,114,69,108,101,109,101,110,116,32,61,32,116,104,105,115,46,36,101,108,59,92,110,32,32,32,32,116,104,105,115,46,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,32,61,32,110,101,119,32,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,119,114,97,112,112,101,114,69,108,101,109,101,110,116,44,32,95,95,97,115,115,105,103,110,40,123,125,44,32,116,104,105,115,46,111,112,116,105,111,110,115,44,32,123,92,110,32,32,32,32,32,32,114,101,110,100,101,114,69,120,116,101,114,110,97,108,58,32,116,114,117,101,92,110,32,32,32,32,125,41,41,59,92,110,32,32,32,32,116,104,105,115,46,36,95,119,114,97,112,112,101,114,69,108,101,109,101,110,116,32,61,32,119,114,97,112,112,101,114,69,108,101,109,101,110,116,59,92,110,32,32,32,32,116,104,105,115,46,36,95,108,97,121,111,117,116,32,61,32,92,34,92,34,59,92,110,32,32,32,32,116,104,105,115,46,36,95,98,105,110,100,69,118,101,110,116,115,40,41,59,92,110,32,32,32,32,118,97,114,32,110,97,116,105,118,101,73,71,32,61,32,116,104,105,115,46,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,59,92,110,32,32,32,32,110,97,116,105,118,101,73,71,46,115,101,116,76,97,121,111,117,116,40,116,104,105,115,46,108,97,121,111,117,116,84,121,112,101,44,32,116,104,105,115,46,108,97,121,111,117,116,79,112,116,105,111,110,115,41,59,92,110,32,32,32,32,116,104,105,115,46,36,95,115,101,116,76,111,97,100,105,110,103,69,108,101,109,101,110,116,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,115,116,97,116,117,115,41,32,123,92,110,32,32,32,32,32,32,110,97,116,105,118,101,73,71,46,115,101,116,83,116,97,116,117,115,40,116,104,105,115,46,115,116,97,116,117,115,44,32,116,114,117,101,44,32,116,104,105,115,46,36,95,103,101,116,69,108,101,109,101,110,116,115,40,41,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,110,97,116,105,118,101,73,71,46,98,101,102,111,114,101,83,121,110,99,40,116,104,105,115,46,36,95,116,111,73,116,101,109,115,40,41,41,59,92,110,32,32,32,32,32,32,110,97,116,105,118,101,73,71,46,108,97,121,111,117,116,40,116,114,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,117,112,100,97,116,101,100,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,110,97,116,105,118,101,73,71,32,61,32,116,104,105,115,46,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,59,92,110,32,32,32,32,118,97,114,32,108,97,121,111,117,116,32,61,32,116,104,105,115,46,36,95,108,97,121,111,117,116,59,92,110,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,115,32,61,32,116,104,105,115,46,36,95,103,101,116,69,108,101,109,101,110,116,115,40,41,59,92,110,32,32,32,32,116,104,105,115,46,36,95,115,101,116,76,111,97,100,105,110,103,69,108,101,109,101,110,116,40,41,59,92,110,32,32,32,32,110,97,116,105,118,101,73,71,46,115,121,110,99,40,101,108,101,109,101,110,116,115,41,59,92,110,92,110,32,32,32,32,105,102,32,40,108,97,121,111,117,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,108,97,121,111,117,116,32,61,32,92,34,92,34,59,92,110,32,32,32,32,32,32,110,97,116,105,118,101,73,71,46,108,97,121,111,117,116,40,108,97,121,111,117,116,32,61,61,61,32,92,34,114,101,108,97,121,111,117,116,92,34,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,110,97,116,105,118,101,73,71,32,61,32,116,104,105,115,46,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,36,95,116,111,73,116,101,109,115,40,41,59,92,110,32,32,32,32,118,97,114,32,118,105,115,105,98,108,101,67,104,105,108,100,114,101,110,32,61,32,91,93,59,92,110,92,110,32,32,32,32,105,102,32,40,110,97,116,105,118,101,73,71,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,110,97,116,105,118,101,73,71,46,98,101,102,111,114,101,83,121,110,99,40,105,116,101,109,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,118,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,118,97,108,46,105,115,76,111,97,100,105,110,103,59,92,110,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,108,97,121,111,117,116,32,61,32,114,101,115,117,108,116,32,61,61,61,32,92,34,114,101,108,97,121,111,117,116,92,34,32,63,32,114,101,115,117,108,116,32,58,32,116,104,105,115,46,36,95,108,97,121,111,117,116,32,124,124,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,118,105,115,105,98,108,101,67,104,105,108,100,114,101,110,32,61,32,110,97,116,105,118,101,73,71,46,103,101,116,82,101,110,100,101,114,105,110,103,73,116,101,109,115,40,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,46,118,110,111,100,101,59,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,115,108,111,116,115,46,108,111,97,100,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,67,104,105,108,100,114,101,110,46,112,117,115,104,46,97,112,112,108,121,40,118,105,115,105,98,108,101,67,104,105,108,100,114,101,110,44,32,95,95,115,112,114,101,97,100,40,116,104,105,115,46,36,115,108,111,116,115,46,108,111,97,100,105,110,103,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,103,114,111,117,112,115,32,61,32,40,48,44,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,97,116,101,103,111,114,105,122,101,41,40,105,116,101,109,115,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,115,116,97,116,117,115,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,95,97,32,61,32,116,104,105,115,46,115,116,97,116,117,115,46,95,105,110,102,105,110,105,116,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,67,117,114,115,111,114,32,61,32,95,97,46,115,116,97,114,116,67,117,114,115,111,114,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,67,117,114,115,111,114,32,61,32,95,97,46,101,110,100,67,117,114,115,111,114,59,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,67,104,105,108,100,114,101,110,32,61,32,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,73,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,103,114,111,117,112,115,46,115,108,105,99,101,40,115,116,97,114,116,67,117,114,115,111,114,44,32,101,110,100,67,117,114,115,111,114,32,43,32,49,41,44,32,92,34,105,116,101,109,115,92,34,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,46,118,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,117,115,101,70,105,114,115,116,82,101,110,100,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,67,104,105,108,100,114,101,110,32,61,32,105,116,101,109,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,46,118,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,47,47,32,84,111,32,98,121,112,97,115,115,92,110,32,32,32,32,47,47,32,91,86,117,101,32,119,97,114,110,93,58,32,65,118,111,105,100,32,117,115,105,110,103,32,111,98,115,101,114,118,101,100,32,100,97,116,97,32,111,98,106,101,99,116,32,97,115,32,118,110,111,100,101,32,100,97,116,97,58,32,123,125,92,110,92,110,92,110,32,32,32,32,118,97,114,32,119,114,97,112,112,101,114,68,97,116,97,32,61,32,123,125,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,116,104,105,115,46,119,114,97,112,112,101,114,68,97,116,97,41,32,123,92,110,32,32,32,32,32,32,119,114,97,112,112,101,114,68,97,116,97,91,107,101,121,93,32,61,32,116,104,105,115,46,119,114,97,112,112,101,114,68,97,116,97,91,107,101,121,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,104,105,115,46,116,97,103,44,32,119,114,97,112,112,101,114,68,97,116,97,44,32,116,104,105,115,46,36,95,103,101,116,67,111,110,116,97,105,110,101,114,40,118,105,115,105,98,108,101,67,104,105,108,100,114,101,110,44,32,104,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,98,101,102,111,114,101,68,101,115,116,114,111,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,46,100,101,115,116,114,111,121,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,115,101,116,83,116,97,116,117,115,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,97,116,117,115,44,32,97,112,112,108,121,83,99,114,111,108,108,80,111,115,44,32,115,121,110,99,69,108,101,109,101,110,116,115,41,32,123,92,110,32,32,32,32,105,102,32,40,115,121,110,99,69,108,101,109,101,110,116,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,115,121,110,99,69,108,101,109,101,110,116,115,32,61,32,116,104,105,115,46,36,95,103,101,116,69,108,101,109,101,110,116,115,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,46,115,101,116,83,116,97,116,117,115,40,115,116,97,116,117,115,44,32,97,112,112,108,121,83,99,114,111,108,108,80,111,115,44,32,115,121,110,99,69,108,101,109,101,110,116,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,36,95,98,105,110,100,69,118,101,110,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,110,97,116,105,118,101,73,71,32,61,32,116,104,105,115,46,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,59,92,110,32,32,32,32,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,73,78,70,73,78,73,84,69,71,82,73,68,95,69,86,69,78,84,83,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,110,97,116,105,118,101,73,71,46,111,110,40,101,118,101,110,116,78,97,109,101,44,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,32,61,32,95,116,104,105,115,59,32,47,47,32,77,97,107,101,32,101,118,101,110,116,115,32,102,114,111,109,32,99,97,109,101,108,67,97,115,101,32,116,111,32,107,101,98,97,98,45,99,97,115,101,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,101,118,101,110,116,78,97,109,101,46,114,101,112,108,97,99,101,40,47,40,91,65,45,90,93,41,47,103,44,32,92,34,45,36,49,92,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,32,101,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,110,97,116,105,118,101,73,71,46,111,110,40,92,34,114,101,110,100,101,114,92,34,44,32,102,117,110,99,116,105,111,110,32,40,95,97,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,110,101,120,116,32,61,32,95,97,46,110,101,120,116,59,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,59,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,110,101,120,116,40,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,36,95,103,101,116,67,111,110,116,97,105,110,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,99,104,105,108,100,114,101,110,44,32,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,97,59,92,110,92,110,32,32,32,32,118,97,114,32,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,59,92,110,92,110,32,32,32,32,105,102,32,40,33,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,68,97,116,97,32,61,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,40,95,97,32,61,32,123,125,44,32,95,97,91,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,67,79,78,84,65,73,78,69,82,95,67,76,65,83,83,78,65,77,69,93,32,61,32,116,114,117,101,44,32,95,97,41,44,92,110,32,32,32,32,32,32,114,101,102,58,32,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,67,79,78,84,65,73,78,69,82,95,67,76,65,83,83,78,65,77,69,92,110,32,32,32,32,125,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,104,40,116,104,105,115,46,99,111,110,116,97,105,110,101,114,84,97,103,44,32,99,111,110,116,97,105,110,101,114,68,97,116,97,44,32,99,104,105,108,100,114,101,110,41,93,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,36,95,103,101,116,69,108,101,109,101,110,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,32,61,32,116,104,105,115,46,36,114,101,102,115,32,38,38,32,116,104,105,115,46,36,114,101,102,115,91,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,67,79,78,84,65,73,78,69,82,95,67,76,65,83,83,78,65,77,69,93,59,92,110,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,115,32,61,32,91,93,46,115,108,105,99,101,46,99,97,108,108,40,40,99,111,110,116,97,105,110,101,114,32,124,124,32,116,104,105,115,46,36,95,119,114,97,112,112,101,114,69,108,101,109,101,110,116,41,46,99,104,105,108,100,114,101,110,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,36,115,108,111,116,115,46,108,111,97,100,105,110,103,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,101,108,101,109,101,110,116,115,46,115,108,105,99,101,40,48,44,32,45,49,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,101,108,101,109,101,110,116,115,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,36,95,116,111,73,116,101,109,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,59,92,110,92,110,32,32,32,32,105,102,32,40,33,105,116,101,109,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,99,104,105,108,100,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,103,114,111,117,112,75,101,121,32,61,32,95,116,104,105,115,46,103,114,111,117,112,66,121,40,99,104,105,108,100,44,32,105,110,100,101,120,41,32,124,124,32,92,34,92,34,59,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,75,101,121,32,61,32,99,104,105,108,100,46,107,101,121,32,33,61,32,110,117,108,108,32,63,32,99,104,105,108,100,46,107,101,121,32,58,32,99,104,105,108,100,46,116,97,103,32,43,32,92,34,45,92,34,32,43,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,75,101,121,58,32,103,114,111,117,112,75,101,121,44,92,110,32,32,32,32,32,32,32,32,105,116,101,109,75,101,121,58,32,105,116,101,109,75,101,121,44,92,110,32,32,32,32,32,32,32,32,118,110,111,100,101,58,32,99,104,105,108,100,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,112,114,111,116,111,46,36,95,115,101,116,76,111,97,100,105,110,103,69,108,101,109,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,105,103,32,61,32,116,104,105,115,46,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,36,115,108,111,116,115,46,108,111,97,100,105,110,103,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,32,61,32,116,104,105,115,46,36,114,101,102,115,32,38,38,32,116,104,105,115,46,36,114,101,102,115,91,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,67,79,78,84,65,73,78,69,82,95,67,76,65,83,83,78,65,77,69,93,59,92,110,32,32,32,32,32,32,118,97,114,32,108,111,97,100,105,110,103,69,108,101,109,101,110,116,32,61,32,40,99,111,110,116,97,105,110,101,114,32,124,124,32,116,104,105,115,46,36,95,119,114,97,112,112,101,114,69,108,101,109,101,110,116,41,46,108,97,115,116,69,108,101,109,101,110,116,67,104,105,108,100,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,108,111,97,100,105,110,103,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,103,46,115,101,116,76,111,97,100,105,110,103,66,97,114,40,123,92,110,32,32,32,32,32,32,32,32,32,32,97,112,112,101,110,100,58,32,108,111,97,100,105,110,103,69,108,101,109,101,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,101,112,101,110,100,58,32,108,111,97,100,105,110,103,69,108,101,109,101,110,116,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,103,46,115,101,116,76,111,97,100,105,110,103,66,97,114,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,114,111,112,41,40,123,92,110,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,114,101,113,117,105,114,101,100,58,32,102,97,108,115,101,92,110,32,32,125,41,93,44,32,73,110,102,105,110,105,116,101,71,114,105,100,46,112,114,111,116,111,116,121,112,101,44,32,92,34,116,97,103,92,34,44,32,118,111,105,100,32,48,41,59,92,110,92,110,32,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,114,111,112,41,40,123,92,110,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,114,101,113,117,105,114,101,100,58,32,102,97,108,115,101,92,110,32,32,125,41,93,44,32,73,110,102,105,110,105,116,101,71,114,105,100,46,112,114,111,116,111,116,121,112,101,44,32,92,34,99,111,110,116,97,105,110,101,114,84,97,103,92,34,44,32,118,111,105,100,32,48,41,59,92,110,92,110,32,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,114,111,112,41,40,123,92,110,32,32,32,32,116,121,112,101,58,32,66,111,111,108,101,97,110,44,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,102,97,108,115,101,44,92,110,32,32,32,32,114,101,113,117,105,114,101,100,58,32,102,97,108,115,101,92,110,32,32,125,41,93,44,32,73,110,102,105,110,105,116,101,71,114,105,100,46,112,114,111,116,111,116,121,112,101,44,32,92,34,117,115,101,70,105,114,115,116,82,101,110,100,101,114,92,34,44,32,118,111,105,100,32,48,41,59,92,110,92,110,32,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,114,111,112,41,40,123,92,110,32,32,32,32,116,121,112,101,58,32,79,98,106,101,99,116,44,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,110,117,108,108,44,92,110,32,32,32,32,114,101,113,117,105,114,101,100,58,32,102,97,108,115,101,92,110,32,32,125,41,93,44,32,73,110,102,105,110,105,116,101,71,114,105,100,46,112,114,111,116,111,116,121,112,101,44,32,92,34,115,116,97,116,117,115,92,34,44,32,118,111,105,100,32,48,41,59,92,110,92,110,32,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,114,111,112,41,40,123,92,110,32,32,32,32,116,121,112,101,58,32,79,98,106,101,99,116,44,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,113,117,105,114,101,100,58,32,102,97,108,115,101,92,110,32,32,125,41,93,44,32,73,110,102,105,110,105,116,101,71,114,105,100,46,112,114,111,116,111,116,121,112,101,44,32,92,34,111,112,116,105,111,110,115,92,34,44,32,118,111,105,100,32,48,41,59,92,110,92,110,32,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,114,111,112,41,40,123,92,110,32,32,32,32,116,121,112,101,58,32,79,98,106,101,99,116,44,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,113,117,105,114,101,100,58,32,102,97,108,115,101,92,110,32,32,125,41,93,44,32,73,110,102,105,110,105,116,101,71,114,105,100,46,112,114,111,116,111,116,121,112,101,44,32,92,34,108,97,121,111,117,116,79,112,116,105,111,110,115,92,34,44,32,118,111,105,100,32,48,41,59,92,110,92,110,32,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,114,111,112,41,40,123,92,110,32,32,32,32,116,121,112,101,58,32,70,117,110,99,116,105,111,110,44,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,71,114,105,100,76,97,121,111,117,116,44,92,110,32,32,32,32,114,101,113,117,105,114,101,100,58,32,102,97,108,115,101,92,110,32,32,125,41,93,44,32,73,110,102,105,110,105,116,101,71,114,105,100,46,112,114,111,116,111,116,121,112,101,44,32,92,34,108,97,121,111,117,116,84,121,112,101,92,34,44,32,118,111,105,100,32,48,41,59,92,110,92,110,32,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,114,111,112,41,40,123,92,110,32,32,32,32,116,121,112,101,58,32,79,98,106,101,99,116,44,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,113,117,105,114,101,100,58,32,102,97,108,115,101,92,110,32,32,125,41,93,44,32,73,110,102,105,110,105,116,101,71,114,105,100,46,112,114,111,116,111,116,121,112,101,44,32,92,34,119,114,97,112,112,101,114,68,97,116,97,92,34,44,32,118,111,105,100,32,48,41,59,92,110,92,110,32,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,114,111,112,41,40,123,92,110,32,32,32,32,116,121,112,101,58,32,70,117,110,99,116,105,111,110,44,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,116,116,114,115,32,61,32,105,116,101,109,46,100,97,116,97,32,38,38,32,105,116,101,109,46,100,97,116,97,46,97,116,116,114,115,59,92,110,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,105,116,101,109,46,100,97,116,97,32,38,38,32,105,116,101,109,46,100,97,116,97,46,112,114,111,112,115,59,32,47,47,32,70,111,114,32,68,79,77,32,101,108,101,109,101,110,116,115,92,110,92,110,32,32,32,32,32,32,105,102,32,40,97,116,116,114,115,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,92,34,100,97,116,97,45,103,114,111,117,112,107,101,121,92,34,32,105,110,32,97,116,116,114,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,116,116,114,115,91,92,34,100,97,116,97,45,103,114,111,117,112,107,101,121,92,34,93,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,92,34,103,114,111,117,112,75,101,121,92,34,32,105,110,32,97,116,116,114,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,116,116,114,115,46,103,114,111,117,112,75,101,121,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,47,47,32,70,111,114,32,99,111,109,112,111,110,101,110,116,115,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,92,34,100,97,116,97,45,103,114,111,117,112,107,101,121,92,34,32,105,110,32,112,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,115,91,92,34,100,97,116,97,45,103,114,111,117,112,107,101,121,92,34,93,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,92,34,103,114,111,117,112,75,101,121,92,34,32,105,110,32,112,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,115,46,103,114,111,117,112,75,101,121,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,92,34,59,92,110,32,32,32,32,125,92,110,32,32,125,41,93,44,32,73,110,102,105,110,105,116,101,71,114,105,100,46,112,114,111,116,111,116,121,112,101,44,32,92,34,103,114,111,117,112,66,121,92,34,44,32,118,111,105,100,32,48,41,59,92,110,92,110,32,32,95,95,100,101,99,111,114,97,116,101,40,91,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,119,105,116,104,73,110,102,105,110,105,116,101,71,114,105,100,77,101,116,104,111,100,115,93,44,32,73,110,102,105,110,105,116,101,71,114,105,100,46,112,114,111,116,111,116,121,112,101,44,32,92,34,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,92,34,44,32,118,111,105,100,32,48,41,59,92,110,92,110,32,32,73,110,102,105,110,105,116,101,71,114,105,100,32,61,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,67,111,109,112,111,110,101,110,116,41,40,123,125,41,93,44,32,73,110,102,105,110,105,116,101,71,114,105,100,41,59,92,110,32,32,114,101,116,117,114,110,32,73,110,102,105,110,105,116,101,71,114,105,100,59,92,110,125,40,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,86,117,101,41,59,92,110,92,110,118,97,114,32,71,114,105,100,76,97,121,111,117,116,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,95,115,117,112,101,114,41,32,123,92,110,32,32,95,95,101,120,116,101,110,100,115,40,71,114,105,100,76,97,121,111,117,116,44,32,95,115,117,112,101,114,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,71,114,105,100,76,97,121,111,117,116,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,117,112,101,114,32,33,61,61,32,110,117,108,108,32,38,38,32,95,115,117,112,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,124,124,32,116,104,105,115,59,92,110,32,32,125,92,110,92,110,32,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,114,111,112,41,40,123,92,110,32,32,32,32,116,121,112,101,58,32,70,117,110,99,116,105,111,110,44,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,71,114,105,100,76,97,121,111,117,116,44,92,110,32,32,32,32,114,101,113,117,105,114,101,100,58,32,102,97,108,115,101,92,110,32,32,125,41,93,44,32,71,114,105,100,76,97,121,111,117,116,46,112,114,111,116,111,116,121,112,101,44,32,92,34,108,97,121,111,117,116,84,121,112,101,92,34,44,32,118,111,105,100,32,48,41,59,92,110,92,110,32,32,71,114,105,100,76,97,121,111,117,116,32,61,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,67,111,109,112,111,110,101,110,116,41,40,123,125,41,93,44,32,71,114,105,100,76,97,121,111,117,116,41,59,92,110,32,32,114,101,116,117,114,110,32,71,114,105,100,76,97,121,111,117,116,59,92,110,125,40,73,110,102,105,110,105,116,101,71,114,105,100,41,59,92,110,92,110,118,97,114,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,95,115,117,112,101,114,41,32,123,92,110,32,32,95,95,101,120,116,101,110,100,115,40,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,44,32,95,115,117,112,101,114,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,117,112,101,114,32,33,61,61,32,110,117,108,108,32,38,38,32,95,115,117,112,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,124,124,32,116,104,105,115,59,92,110,32,32,125,92,110,92,110,32,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,114,111,112,41,40,123,92,110,32,32,32,32,116,121,112,101,58,32,70,117,110,99,116,105,111,110,44,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,44,92,110,32,32,32,32,114,101,113,117,105,114,101,100,58,32,102,97,108,115,101,92,110,32,32,125,41,93,44,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,46,112,114,111,116,111,116,121,112,101,44,32,92,34,108,97,121,111,117,116,84,121,112,101,92,34,44,32,118,111,105,100,32,48,41,59,92,110,92,110,32,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,32,61,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,67,111,109,112,111,110,101,110,116,41,40,123,125,41,93,44,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,41,59,92,110,32,32,114,101,116,117,114,110,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,59,92,110,125,40,73,110,102,105,110,105,116,101,71,114,105,100,41,59,92,110,92,110,118,97,114,32,70,114,97,109,101,76,97,121,111,117,116,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,95,115,117,112,101,114,41,32,123,92,110,32,32,95,95,101,120,116,101,110,100,115,40,70,114,97,109,101,76,97,121,111,117,116,44,32,95,115,117,112,101,114,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,70,114,97,109,101,76,97,121,111,117,116,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,117,112,101,114,32,33,61,61,32,110,117,108,108,32,38,38,32,95,115,117,112,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,124,124,32,116,104,105,115,59,92,110,32,32,125,92,110,92,110,32,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,114,111,112,41,40,123,92,110,32,32,32,32,116,121,112,101,58,32,70,117,110,99,116,105,111,110,44,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,70,114,97,109,101,76,97,121,111,117,116,44,92,110,32,32,32,32,114,101,113,117,105,114,101,100,58,32,102,97,108,115,101,92,110,32,32,125,41,93,44,32,70,114,97,109,101,76,97,121,111,117,116,46,112,114,111,116,111,116,121,112,101,44,32,92,34,108,97,121,111,117,116,84,121,112,101,92,34,44,32,118,111,105,100,32,48,41,59,92,110,92,110,32,32,70,114,97,109,101,76,97,121,111,117,116,32,61,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,67,111,109,112,111,110,101,110,116,41,40,123,125,41,93,44,32,70,114,97,109,101,76,97,121,111,117,116,41,59,92,110,32,32,114,101,116,117,114,110,32,70,114,97,109,101,76,97,121,111,117,116,59,92,110,125,40,73,110,102,105,110,105,116,101,71,114,105,100,41,59,92,110,92,110,118,97,114,32,83,113,117,97,114,101,76,97,121,111,117,116,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,95,115,117,112,101,114,41,32,123,92,110,32,32,95,95,101,120,116,101,110,100,115,40,83,113,117,97,114,101,76,97,121,111,117,116,44,32,95,115,117,112,101,114,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,83,113,117,97,114,101,76,97,121,111,117,116,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,117,112,101,114,32,33,61,61,32,110,117,108,108,32,38,38,32,95,115,117,112,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,124,124,32,116,104,105,115,59,92,110,32,32,125,92,110,92,110,32,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,114,111,112,41,40,123,92,110,32,32,32,32,116,121,112,101,58,32,70,117,110,99,116,105,111,110,44,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,83,113,117,97,114,101,76,97,121,111,117,116,44,92,110,32,32,32,32,114,101,113,117,105,114,101,100,58,32,102,97,108,115,101,92,110,32,32,125,41,93,44,32,83,113,117,97,114,101,76,97,121,111,117,116,46,112,114,111,116,111,116,121,112,101,44,32,92,34,108,97,121,111,117,116,84,121,112,101,92,34,44,32,118,111,105,100,32,48,41,59,92,110,92,110,32,32,83,113,117,97,114,101,76,97,121,111,117,116,32,61,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,67,111,109,112,111,110,101,110,116,41,40,123,125,41,93,44,32,83,113,117,97,114,101,76,97,121,111,117,116,41,59,92,110,32,32,114,101,116,117,114,110,32,83,113,117,97,114,101,76,97,121,111,117,116,59,92,110,125,40,73,110,102,105,110,105,116,101,71,114,105,100,41,59,92,110,92,110,118,97,114,32,80,97,99,107,105,110,103,76,97,121,111,117,116,32,61,92,110,47,42,35,95,95,80,85,82,69,95,95,42,47,92,110,102,117,110,99,116,105,111,110,32,40,95,115,117,112,101,114,41,32,123,92,110,32,32,95,95,101,120,116,101,110,100,115,40,80,97,99,107,105,110,103,76,97,121,111,117,116,44,32,95,115,117,112,101,114,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,80,97,99,107,105,110,103,76,97,121,111,117,116,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,117,112,101,114,32,33,61,61,32,110,117,108,108,32,38,38,32,95,115,117,112,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,124,124,32,116,104,105,115,59,92,110,32,32,125,92,110,92,110,32,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,114,111,112,41,40,123,92,110,32,32,32,32,116,121,112,101,58,32,70,117,110,99,116,105,111,110,44,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,95,101,103,106,115,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,97,99,107,105,110,103,76,97,121,111,117,116,44,92,110,32,32,32,32,114,101,113,117,105,114,101,100,58,32,102,97,108,115,101,92,110,32,32,125,41,93,44,32,80,97,99,107,105,110,103,76,97,121,111,117,116,46,112,114,111,116,111,116,121,112,101,44,32,92,34,108,97,121,111,117,116,84,121,112,101,92,34,44,32,118,111,105,100,32,48,41,59,92,110,92,110,32,32,80,97,99,107,105,110,103,76,97,121,111,117,116,32,61,32,95,95,100,101,99,111,114,97,116,101,40,91,40,48,44,118,117,101,95,112,114,111,112,101,114,116,121,95,100,101,99,111,114,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,67,111,109,112,111,110,101,110,116,41,40,123,125,41,93,44,32,80,97,99,107,105,110,103,76,97,121,111,117,116,41,59,92,110,32,32,114,101,116,117,114,110,32,80,97,99,107,105,110,103,76,97,121,111,117,116,59,92,110,125,40,73,110,102,105,110,105,116,101,71,114,105,100,41,59,92,110,92,110,118,97,114,32,118,101,114,115,105,111,110,32,61,32,92,34,51,46,51,46,48,92,34,59,92,110,92,110,118,97,114,32,105,110,115,116,97,108,108,32,61,32,102,117,110,99,116,105,111,110,32,40,86,117,101,41,32,123,92,110,32,32,86,117,101,46,99,111,109,112,111,110,101,110,116,40,92,34,73,110,102,105,110,105,116,101,71,114,105,100,92,34,44,32,73,110,102,105,110,105,116,101,71,114,105,100,41,59,92,110,32,32,86,117,101,46,99,111,109,112,111,110,101,110,116,40,92,34,71,114,105,100,76,97,121,111,117,116,92,34,44,32,71,114,105,100,76,97,121,111,117,116,41,59,92,110,32,32,86,117,101,46,99,111,109,112,111,110,101,110,116,40,92,34,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,92,34,44,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,41,59,92,110,32,32,86,117,101,46,99,111,109,112,111,110,101,110,116,40,92,34,70,114,97,109,101,76,97,121,111,117,116,92,34,44,32,70,114,97,109,101,76,97,121,111,117,116,41,59,92,110,32,32,86,117,101,46,99,111,109,112,111,110,101,110,116,40,92,34,83,113,117,97,114,101,76,97,121,111,117,116,92,34,44,32,83,113,117,97,114,101,76,97,121,111,117,116,41,59,92,110,32,32,86,117,101,46,99,111,109,112,111,110,101,110,116,40,92,34,80,97,99,107,105,110,103,76,97,121,111,117,116,92,34,44,32,80,97,99,107,105,110,103,76,97,121,111,117,116,41,59,92,110,125,59,92,110,92,110,118,97,114,32,112,108,117,103,105,110,32,61,32,123,92,110,32,32,73,110,102,105,110,105,116,101,71,114,105,100,58,32,73,110,102,105,110,105,116,101,71,114,105,100,44,92,110,32,32,71,114,105,100,76,97,121,111,117,116,58,32,71,114,105,100,76,97,121,111,117,116,44,92,110,32,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,58,32,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,44,92,110,32,32,70,114,97,109,101,76,97,121,111,117,116,58,32,70,114,97,109,101,76,97,121,111,117,116,44,92,110,32,32,83,113,117,97,114,101,76,97,121,111,117,116,58,32,83,113,117,97,114,101,76,97,121,111,117,116,44,92,110,32,32,80,97,99,107,105,110,103,76,97,121,111,117,116,58,32,80,97,99,107,105,110,103,76,97,121,111,117,116,44,92,110,32,32,105,110,115,116,97,108,108,58,32,105,110,115,116,97,108,108,44,92,110,32,32,118,101,114,115,105,111,110,58,32,118,101,114,115,105,111,110,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,112,108,117,103,105,110,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,105,110,102,105,110,105,116,101,103,114,105,100,46,101,115,109,46,106,115,46,109,97,112,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,118,117,101,45,105,110,102,105,110,105,116,101,103,114,105,100,47,100,105,115,116,47,105,110,102,105,110,105,116,101,103,114,105,100,46,101,115,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,111,114,109,97,108,105,122,101,67,111,109,112,111,110,101,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,103,108,111,98,97,108,115,32,95,95,86,85,69,95,83,83,82,95,67,79,78,84,69,88,84,95,95,32,42,47,92,110,92,110,47,47,32,73,77,80,79,82,84,65,78,84,58,32,68,111,32,78,79,84,32,117,115,101,32,69,83,50,48,49,53,32,102,101,97,116,117,114,101,115,32,105,110,32,116,104,105,115,32,102,105,108,101,32,40,101,120,99,101,112,116,32,102,111,114,32,109,111,100,117,108,101,115,41,46,92,110,47,47,32,84,104,105,115,32,109,111,100,117,108,101,32,105,115,32,97,32,114,117,110,116,105,109,101,32,117,116,105,108,105,116,121,32,102,111,114,32,99,108,101,97,110,101,114,32,99,111,109,112,111,110,101,110,116,32,109,111,100,117,108,101,32,111,117,116,112,117,116,32,97,110,100,32,119,105,108,108,92,110,47,47,32,98,101,32,105,110,99,108,117,100,101,100,32,105,110,32,116,104,101,32,102,105,110,97,108,32,119,101,98,112,97,99,107,32,117,115,101,114,32,98,117,110,100,108,101,46,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,67,111,109,112,111,110,101,110,116,40,92,110,32,32,115,99,114,105,112,116,69,120,112,111,114,116,115,44,92,110,32,32,114,101,110,100,101,114,44,92,110,32,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,84,101,109,112,108,97,116,101,44,92,110,32,32,105,110,106,101,99,116,83,116,121,108,101,115,44,92,110,32,32,115,99,111,112,101,73,100,44,92,110,32,32,109,111,100,117,108,101,73,100,101,110,116,105,102,105,101,114,32,47,42,32,115,101,114,118,101,114,32,111,110,108,121,32,42,47,44,92,110,32,32,115,104,97,100,111,119,77,111,100,101,32,47,42,32,118,117,101,45,99,108,105,32,111,110,108,121,32,42,47,92,110,41,32,123,92,110,32,32,47,47,32,86,117,101,46,101,120,116,101,110,100,32,99,111,110,115,116,114,117,99,116,111,114,32,101,120,112,111,114,116,32,105,110,116,101,114,111,112,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,92,110,32,32,32,32,116,121,112,101,111,102,32,115,99,114,105,112,116,69,120,112,111,114,116,115,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,115,99,114,105,112,116,69,120,112,111,114,116,115,46,111,112,116,105,111,110,115,32,58,32,115,99,114,105,112,116,69,120,112,111,114,116,115,92,110,92,110,32,32,47,47,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,115,92,110,32,32,105,102,32,40,114,101,110,100,101,114,41,32,123,92,110,32,32,32,32,111,112,116,105,111,110,115,46,114,101,110,100,101,114,32,61,32,114,101,110,100,101,114,92,110,32,32,32,32,111,112,116,105,111,110,115,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,110,32,32,32,32,111,112,116,105,111,110,115,46,95,99,111,109,112,105,108,101,100,32,61,32,116,114,117,101,92,110,32,32,125,92,110,92,110,32,32,47,47,32,102,117,110,99,116,105,111,110,97,108,32,116,101,109,112,108,97,116,101,92,110,32,32,105,102,32,40,102,117,110,99,116,105,111,110,97,108,84,101,109,112,108,97,116,101,41,32,123,92,110,32,32,32,32,111,112,116,105,111,110,115,46,102,117,110,99,116,105,111,110,97,108,32,61,32,116,114,117,101,92,110,32,32,125,92,110,92,110,32,32,47,47,32,115,99,111,112,101,100,73,100,92,110,32,32,105,102,32,40,115,99,111,112,101,73,100,41,32,123,92,110,32,32,32,32,111,112,116,105,111,110,115,46,95,115,99,111,112,101,73,100,32,61,32,39,100,97,116,97,45,118,45,39,32,43,32,115,99,111,112,101,73,100,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,104,111,111,107,92,110,32,32,105,102,32,40,109,111,100,117,108,101,73,100,101,110,116,105,102,105,101,114,41,32,123,92,110,32,32,32,32,47,47,32,115,101,114,118,101,114,32,98,117,105,108,100,92,110,32,32,32,32,104,111,111,107,32,61,32,102,117,110,99,116,105,111,110,32,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,50,46,51,32,105,110,106,101,99,116,105,111,110,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,32,61,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,32,124,124,32,47,47,32,99,97,99,104,101,100,32,99,97,108,108,92,110,32,32,32,32,32,32,32,32,40,116,104,105,115,46,36,118,110,111,100,101,32,38,38,32,116,104,105,115,46,36,118,110,111,100,101,46,115,115,114,67,111,110,116,101,120,116,41,32,124,124,32,47,47,32,115,116,97,116,101,102,117,108,92,110,32,32,32,32,32,32,32,32,40,116,104,105,115,46,112,97,114,101,110,116,32,38,38,32,116,104,105,115,46,112,97,114,101,110,116,46,36,118,110,111,100,101,32,38,38,32,116,104,105,115,46,112,97,114,101,110,116,46,36,118,110,111,100,101,46,115,115,114,67,111,110,116,101,120,116,41,32,47,47,32,102,117,110,99,116,105,111,110,97,108,92,110,32,32,32,32,32,32,47,47,32,50,46,50,32,119,105,116,104,32,114,117,110,73,110,78,101,119,67,111,110,116,101,120,116,58,32,116,114,117,101,92,110,32,32,32,32,32,32,105,102,32,40,33,99,111,110,116,101,120,116,32,38,38,32,116,121,112,101,111,102,32,95,95,86,85,69,95,83,83,82,95,67,79,78,84,69,88,84,95,95,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,32,61,32,95,95,86,85,69,95,83,83,82,95,67,79,78,84,69,88,84,95,95,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,105,110,106,101,99,116,32,99,111,109,112,111,110,101,110,116,32,115,116,121,108,101,115,92,110,32,32,32,32,32,32,105,102,32,40,105,110,106,101,99,116,83,116,121,108,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,106,101,99,116,83,116,121,108,101,115,46,99,97,108,108,40,116,104,105,115,44,32,99,111,110,116,101,120,116,41,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,114,101,103,105,115,116,101,114,32,99,111,109,112,111,110,101,110,116,32,109,111,100,117,108,101,32,105,100,101,110,116,105,102,105,101,114,32,102,111,114,32,97,115,121,110,99,32,99,104,117,110,107,32,105,110,102,101,114,114,101,110,99,101,92,110,32,32,32,32,32,32,105,102,32,40,99,111,110,116,101,120,116,32,38,38,32,99,111,110,116,101,120,116,46,95,114,101,103,105,115,116,101,114,101,100,67,111,109,112,111,110,101,110,116,115,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,95,114,101,103,105,115,116,101,114,101,100,67,111,109,112,111,110,101,110,116,115,46,97,100,100,40,109,111,100,117,108,101,73,100,101,110,116,105,102,105,101,114,41,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,117,115,101,100,32,98,121,32,115,115,114,32,105,110,32,99,97,115,101,32,99,111,109,112,111,110,101,110,116,32,105,115,32,99,97,99,104,101,100,32,97,110,100,32,98,101,102,111,114,101,67,114,101,97,116,101,92,110,32,32,32,32,47,47,32,110,101,118,101,114,32,103,101,116,115,32,99,97,108,108,101,100,92,110,32,32,32,32,111,112,116,105,111,110,115,46,95,115,115,114,82,101,103,105,115,116,101,114,32,61,32,104,111,111,107,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,110,106,101,99,116,83,116,121,108,101,115,41,32,123,92,110,32,32,32,32,104,111,111,107,32,61,32,115,104,97,100,111,119,77,111,100,101,92,110,32,32,32,32,32,32,63,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,110,106,101,99,116,83,116,121,108,101,115,46,99,97,108,108,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,111,112,116,105,111,110,115,46,102,117,110,99,116,105,111,110,97,108,32,63,32,116,104,105,115,46,112,97,114,101,110,116,32,58,32,116,104,105,115,41,46,36,114,111,111,116,46,36,111,112,116,105,111,110,115,46,115,104,97,100,111,119,82,111,111,116,92,110,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,58,32,105,110,106,101,99,116,83,116,121,108,101,115,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,104,111,111,107,41,32,123,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,102,117,110,99,116,105,111,110,97,108,41,32,123,92,110,32,32,32,32,32,32,47,47,32,102,111,114,32,116,101,109,112,108,97,116,101,45,111,110,108,121,32,104,111,116,45,114,101,108,111,97,100,32,98,101,99,97,117,115,101,32,105,110,32,116,104,97,116,32,99,97,115,101,32,116,104,101,32,114,101,110,100,101,114,32,102,110,32,100,111,101,115,110,39,116,92,110,32,32,32,32,32,32,47,47,32,103,111,32,116,104,114,111,117,103,104,32,116,104,101,32,110,111,114,109,97,108,105,122,101,114,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,46,95,105,110,106,101,99,116,83,116,121,108,101,115,32,61,32,104,111,111,107,92,110,32,32,32,32,32,32,47,47,32,114,101,103,105,115,116,101,114,32,102,111,114,32,102,117,110,99,116,105,111,110,97,108,32,99,111,109,112,111,110,101,110,116,32,105,110,32,118,117,101,32,102,105,108,101,92,110,32,32,32,32,32,32,118,97,114,32,111,114,105,103,105,110,97,108,82,101,110,100,101,114,32,61,32,111,112,116,105,111,110,115,46,114,101,110,100,101,114,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,46,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,87,105,116,104,83,116,121,108,101,73,110,106,101,99,116,105,111,110,40,104,44,32,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,32,32,32,32,104,111,111,107,46,99,97,108,108,40,99,111,110,116,101,120,116,41,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,114,105,103,105,110,97,108,82,101,110,100,101,114,40,104,44,32,99,111,110,116,101,120,116,41,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,105,110,106,101,99,116,32,99,111,109,112,111,110,101,110,116,32,114,101,103,105,115,116,114,97,116,105,111,110,32,97,115,32,98,101,102,111,114,101,67,114,101,97,116,101,32,104,111,111,107,92,110,32,32,32,32,32,32,118,97,114,32,101,120,105,115,116,105,110,103,32,61,32,111,112,116,105,111,110,115,46,98,101,102,111,114,101,67,114,101,97,116,101,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,46,98,101,102,111,114,101,67,114,101,97,116,101,32,61,32,101,120,105,115,116,105,110,103,32,63,32,91,93,46,99,111,110,99,97,116,40,101,120,105,115,116,105,110,103,44,32,104,111,111,107,41,32,58,32,91,104,111,111,107,93,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,101,120,112,111,114,116,115,58,32,115,99,114,105,112,116,69,120,112,111,114,116,115,44,92,110,32,32,32,32,111,112,116,105,111,110,115,58,32,111,112,116,105,111,110,115,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,100,105,115,116,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,109,105,110,46,99,115,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,100,105,115,116,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,109,105,110,46,99,115,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,103,101,116,85,114,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,103,101,116,85,114,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,48,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,50,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,51,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,52,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,53,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,48,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,48,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,50,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,51,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,51,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,52,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,52,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,53,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,53,95,95,95,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,64,99,104,97,114,115,101,116,32,92,92,92,34,85,84,70,45,56,92,92,92,34,59,47,42,33,92,92,110,32,42,32,66,111,111,116,115,116,114,97,112,86,117,101,32,67,117,115,116,111,109,32,67,83,83,32,40,104,116,116,112,115,58,47,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,111,114,103,41,92,92,110,32,42,47,46,98,118,45,110,111,45,102,111,99,117,115,45,114,105,110,103,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,98,118,45,100,45,120,115,45,100,111,119,110,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,98,118,45,100,45,115,109,45,100,111,119,110,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,98,118,45,100,45,109,100,45,100,111,119,110,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,98,118,45,100,45,108,103,45,100,111,119,110,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,46,98,118,45,100,45,120,108,45,100,111,119,110,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,102,111,99,117,115,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,102,111,99,117,115,46,105,115,45,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,102,111,99,117,115,46,105,115,45,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,98,45,97,118,97,116,97,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,102,108,101,120,45,115,104,114,105,110,107,58,48,59,119,105,100,116,104,58,50,46,53,114,101,109,59,104,101,105,103,104,116,58,50,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,104,101,105,103,104,116,58,97,117,116,111,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,46,98,45,97,118,97,116,97,114,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,46,98,45,97,118,97,116,97,114,46,98,116,110,44,46,98,45,97,118,97,116,97,114,91,104,114,101,102,93,123,112,97,100,100,105,110,103,58,48,59,98,111,114,100,101,114,58,48,125,46,98,45,97,118,97,116,97,114,46,98,116,110,32,46,98,45,97,118,97,116,97,114,45,105,109,103,32,105,109,103,44,46,98,45,97,118,97,116,97,114,91,104,114,101,102,93,32,46,98,45,97,118,97,116,97,114,45,105,109,103,32,105,109,103,123,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,46,98,45,97,118,97,116,97,114,46,98,116,110,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,44,46,98,45,97,118,97,116,97,114,91,104,114,101,102,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,98,45,97,118,97,116,97,114,46,98,116,110,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,104,111,118,101,114,32,46,98,45,97,118,97,116,97,114,45,105,109,103,32,105,109,103,44,46,98,45,97,118,97,116,97,114,91,104,114,101,102,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,104,111,118,101,114,32,46,98,45,97,118,97,116,97,114,45,105,109,103,32,105,109,103,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,46,49,53,41,125,46,98,45,97,118,97,116,97,114,46,100,105,115,97,98,108,101,100,44,46,98,45,97,118,97,116,97,114,58,100,105,115,97,98,108,101,100,44,46,98,45,97,118,97,116,97,114,91,100,105,115,97,98,108,101,100,93,123,111,112,97,99,105,116,121,58,46,54,53,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,45,97,118,97,116,97,114,32,46,98,45,97,118,97,116,97,114,45,99,117,115,116,111,109,44,46,98,45,97,118,97,116,97,114,32,46,98,45,97,118,97,116,97,114,45,105,109,103,44,46,98,45,97,118,97,116,97,114,32,46,98,45,97,118,97,116,97,114,45,116,101,120,116,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,105,110,104,101,114,105,116,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,100,105,115,112,108,97,121,58,102,108,101,120,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,109,97,115,107,45,105,109,97,103,101,58,114,97,100,105,97,108,45,103,114,97,100,105,101,110,116,40,119,104,105,116,101,44,35,48,48,48,41,59,109,97,115,107,45,105,109,97,103,101,58,114,97,100,105,97,108,45,103,114,97,100,105,101,110,116,40,119,104,105,116,101,44,35,48,48,48,41,125,46,98,45,97,118,97,116,97,114,32,46,98,45,97,118,97,116,97,114,45,116,101,120,116,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,98,45,97,118,97,116,97,114,91,104,114,101,102,93,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,45,97,118,97,116,97,114,62,46,98,45,105,99,111,110,123,119,105,100,116,104,58,54,48,37,59,104,101,105,103,104,116,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,98,45,97,118,97,116,97,114,32,46,98,45,97,118,97,116,97,114,45,105,109,103,32,105,109,103,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,109,97,120,45,104,101,105,103,104,116,58,97,117,116,111,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,105,110,104,101,114,105,116,59,45,111,45,111,98,106,101,99,116,45,102,105,116,58,99,111,118,101,114,59,111,98,106,101,99,116,45,102,105,116,58,99,111,118,101,114,125,46,98,45,97,118,97,116,97,114,32,46,98,45,97,118,97,116,97,114,45,98,97,100,103,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,109,105,110,45,104,101,105,103,104,116,58,49,46,53,101,109,59,109,105,110,45,119,105,100,116,104,58,49,46,53,101,109,59,112,97,100,100,105,110,103,58,46,50,53,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,48,101,109,59,102,111,110,116,45,115,105,122,101,58,55,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,122,45,105,110,100,101,120,58,49,125,46,98,45,97,118,97,116,97,114,45,115,109,123,119,105,100,116,104,58,49,46,53,114,101,109,59,104,101,105,103,104,116,58,49,46,53,114,101,109,125,46,98,45,97,118,97,116,97,114,45,115,109,32,46,98,45,97,118,97,116,97,114,45,116,101,120,116,123,102,111,110,116,45,115,105,122,101,58,99,97,108,99,40,46,54,114,101,109,41,125,46,98,45,97,118,97,116,97,114,45,115,109,32,46,98,45,97,118,97,116,97,114,45,98,97,100,103,101,123,102,111,110,116,45,115,105,122,101,58,99,97,108,99,40,46,52,50,114,101,109,41,125,46,98,45,97,118,97,116,97,114,45,108,103,123,119,105,100,116,104,58,51,46,53,114,101,109,59,104,101,105,103,104,116,58,51,46,53,114,101,109,125,46,98,45,97,118,97,116,97,114,45,108,103,32,46,98,45,97,118,97,116,97,114,45,116,101,120,116,123,102,111,110,116,45,115,105,122,101,58,99,97,108,99,40,49,46,52,114,101,109,41,125,46,98,45,97,118,97,116,97,114,45,108,103,32,46,98,45,97,118,97,116,97,114,45,98,97,100,103,101,123,102,111,110,116,45,115,105,122,101,58,99,97,108,99,40,46,57,56,114,101,109,41,125,46,98,45,97,118,97,116,97,114,45,103,114,111,117,112,32,46,98,45,97,118,97,116,97,114,45,103,114,111,117,112,45,105,110,110,101,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,125,46,98,45,97,118,97,116,97,114,45,103,114,111,117,112,32,46,98,45,97,118,97,116,97,114,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,98,45,97,118,97,116,97,114,45,103,114,111,117,112,32,46,98,116,110,46,98,45,97,118,97,116,97,114,58,104,111,118,101,114,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,100,105,115,97,98,108,101,100,41,44,46,98,45,97,118,97,116,97,114,45,103,114,111,117,112,32,97,46,98,45,97,118,97,116,97,114,58,104,111,118,101,114,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,100,105,115,97,98,108,101,100,41,123,122,45,105,110,100,101,120,58,49,125,46,98,45,99,97,108,101,110,100,97,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,105,110,110,101,114,123,109,105,110,45,119,105,100,116,104,58,50,53,48,112,120,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,104,101,97,100,101,114,44,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,110,97,118,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,110,97,118,32,46,98,116,110,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,125,46,98,45,99,97,108,101,110,100,97,114,32,111,117,116,112,117,116,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,125,46,98,45,99,97,108,101,110,100,97,114,32,111,117,116,112,117,116,46,114,101,97,100,111,110,108,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,111,112,97,99,105,116,121,58,49,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,102,111,111,116,101,114,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,123,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,32,46,114,111,119,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,45,99,97,112,116,105,111,110,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,45,98,111,100,121,32,46,99,111,108,91,100,97,116,97,45,100,97,116,101,93,32,46,98,116,110,123,119,105,100,116,104,58,51,50,112,120,59,104,101,105,103,104,116,58,51,50,112,120,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,109,97,114,103,105,110,58,51,112,120,32,97,117,116,111,59,112,97,100,100,105,110,103,58,57,112,120,32,48,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,116,110,46,100,105,115,97,98,108,101,100,44,46,98,45,99,97,108,101,110,100,97,114,32,46,98,116,110,58,100,105,115,97,98,108,101,100,44,46,98,45,99,97,108,101,110,100,97,114,32,46,98,116,110,91,97,114,105,97,45,100,105,115,97,98,108,101,100,61,116,114,117,101,93,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,99,97,114,100,45,105,109,103,45,108,101,102,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,45,114,105,103,104,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,100,114,111,112,100,111,119,110,58,110,111,116,40,46,100,114,111,112,108,101,102,116,41,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,110,111,45,99,97,114,101,116,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,114,111,112,100,111,119,110,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,110,111,45,99,97,114,101,116,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,114,111,112,100,111,119,110,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,46,98,45,100,114,111,112,100,111,119,110,45,102,111,114,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,119,105,100,116,104,58,49,48,48,37,59,99,108,101,97,114,58,98,111,116,104,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,125,46,98,45,100,114,111,112,100,111,119,110,45,102,111,114,109,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,49,112,120,32,100,111,116,116,101,100,33,105,109,112,111,114,116,97,110,116,59,111,117,116,108,105,110,101,58,53,112,120,32,97,117,116,111,32,45,119,101,98,107,105,116,45,102,111,99,117,115,45,114,105,110,103,45,99,111,108,111,114,33,105,109,112,111,114,116,97,110,116,125,46,98,45,100,114,111,112,100,111,119,110,45,102,111,114,109,46,100,105,115,97,98,108,101,100,44,46,98,45,100,114,111,112,100,111,119,110,45,102,111,114,109,58,100,105,115,97,98,108,101,100,123,111,117,116,108,105,110,101,58,48,33,105,109,112,111,114,116,97,110,116,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,45,100,114,111,112,100,111,119,110,45,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,119,105,100,116,104,58,49,48,48,37,59,99,108,101,97,114,58,98,111,116,104,59,102,111,110,116,45,119,101,105,103,104,116,58,108,105,103,104,116,101,114,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,56,55,53,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,116,111,112,58,46,51,49,50,53,114,101,109,59,108,101,102,116,58,45,49,46,56,55,53,114,101,109,59,119,105,100,116,104,58,49,46,50,53,114,101,109,59,104,101,105,103,104,116,58,49,46,50,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,111,112,58,46,51,49,50,53,114,101,109,59,108,101,102,116,58,45,49,46,56,55,53,114,101,109,59,119,105,100,116,104,58,49,46,50,53,114,101,109,59,104,101,105,103,104,116,58,49,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,123,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,51,49,50,53,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,116,111,112,58,46,50,49,56,55,53,114,101,109,59,108,101,102,116,58,45,49,46,51,49,50,53,114,101,109,59,119,105,100,116,104,58,46,56,55,53,114,101,109,59,104,101,105,103,104,116,58,46,56,55,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,111,112,58,46,50,49,56,55,53,114,101,109,59,108,101,102,116,58,45,49,46,51,49,50,53,114,101,109,59,119,105,100,116,104,58,46,56,55,53,114,101,109,59,104,101,105,103,104,116,58,46,56,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,46,56,49,50,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,116,111,112,58,46,51,49,50,53,114,101,109,59,104,101,105,103,104,116,58,49,46,50,53,114,101,109,59,108,101,102,116,58,45,50,46,56,49,50,53,114,101,109,59,119,105,100,116,104,58,50,46,49,56,55,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,54,50,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,111,112,58,99,97,108,99,40,46,51,49,50,53,114,101,109,32,43,32,50,112,120,41,59,108,101,102,116,58,99,97,108,99,40,45,50,46,56,49,50,53,114,101,109,32,43,32,50,112,120,41,59,119,105,100,116,104,58,99,97,108,99,40,49,46,50,53,114,101,109,32,45,32,52,112,120,41,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,50,53,114,101,109,32,45,32,52,112,120,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,54,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,57,51,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,57,54,56,55,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,116,111,112,58,46,50,49,56,55,53,114,101,109,59,108,101,102,116,58,45,49,46,57,54,56,55,53,114,101,109,59,119,105,100,116,104,58,49,46,53,51,49,50,53,114,101,109,59,104,101,105,103,104,116,58,46,56,55,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,52,51,55,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,111,112,58,99,97,108,99,40,46,50,49,56,55,53,114,101,109,32,43,32,50,112,120,41,59,108,101,102,116,58,99,97,108,99,40,45,49,46,57,54,56,55,53,114,101,109,32,43,32,50,112,120,41,59,119,105,100,116,104,58,99,97,108,99,40,46,56,55,53,114,101,109,32,45,32,52,112,120,41,59,104,101,105,103,104,116,58,99,97,108,99,40,46,56,55,53,114,101,109,32,45,32,52,112,120,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,52,51,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,54,53,54,50,53,114,101,109,41,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,59,104,101,105,103,104,116,58,97,117,116,111,59,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,105,110,112,117,116,45,103,114,111,117,112,32,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,123,112,97,100,100,105,110,103,58,48,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,91,100,105,114,61,114,116,108,93,44,91,100,105,114,61,114,116,108,93,32,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,91,100,105,114,61,114,116,108,93,62,108,97,98,101,108,44,91,100,105,114,61,114,116,108,93,32,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,108,97,98,101,108,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,98,116,110,123,108,105,110,101,45,104,101,105,103,104,116,58,49,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,58,48,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,98,116,110,58,100,105,115,97,98,108,101,100,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,62,46,98,116,110,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,62,46,98,116,110,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,97,100,100,105,110,103,58,46,53,114,101,109,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,102,111,114,109,45,99,111,110,116,114,111,108,123,104,101,105,103,104,116,58,97,117,116,111,59,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,32,45,32,50,112,120,41,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,59,109,97,114,103,105,110,58,48,59,98,111,114,100,101,114,58,48,59,111,117,116,108,105,110,101,58,48,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,102,111,114,109,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,32,45,32,50,112,120,41,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,102,111,114,109,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,32,45,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,102,111,114,109,45,99,111,110,116,114,111,108,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,32,45,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,102,111,114,109,45,99,111,110,116,114,111,108,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,32,45,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,91,97,114,105,97,45,100,105,115,97,98,108,101,100,61,116,114,117,101,93,44,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,91,97,114,105,97,45,114,101,97,100,111,110,108,121,61,116,114,117,101,93,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,111,112,97,99,105,116,121,58,49,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,91,97,114,105,97,45,100,105,115,97,98,108,101,100,61,116,114,117,101,93,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,91,97,114,105,97,45,100,105,115,97,98,108,101,100,61,116,114,117,101,93,62,108,97,98,101,108,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,98,116,110,45,103,114,111,117,112,62,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,97,100,100,105,110,103,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,111,118,101,114,102,108,111,119,45,120,58,104,105,100,100,101,110,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,44,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,46,99,117,115,116,111,109,45,102,105,108,101,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,46,51,114,101,109,32,46,51,114,101,109,32,48,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,44,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,46,99,117,115,116,111,109,45,102,105,108,101,123,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,46,50,114,101,109,32,46,50,114,101,109,32,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,44,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,99,101,110,116,101,114,125,105,110,112,117,116,91,116,121,112,101,61,99,111,108,111,114,93,46,102,111,114,109,45,99,111,110,116,114,111,108,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,49,50,53,114,101,109,32,46,50,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,105,110,112,117,116,91,116,121,112,101,61,99,111,108,111,114,93,46,102,111,114,109,45,99,111,110,116,114,111,108,44,105,110,112,117,116,91,116,121,112,101,61,99,111,108,111,114,93,46,102,111,114,109,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,49,50,53,114,101,109,32,46,50,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,105,110,112,117,116,91,116,121,112,101,61,99,111,108,111,114,93,46,102,111,114,109,45,99,111,110,116,114,111,108,44,105,110,112,117,116,91,116,121,112,101,61,99,111,108,111,114,93,46,102,111,114,109,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,49,50,53,114,101,109,32,46,50,53,114,101,109,125,105,110,112,117,116,91,116,121,112,101,61,99,111,108,111,114,93,46,102,111,114,109,45,99,111,110,116,114,111,108,58,100,105,115,97,98,108,101,100,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,59,111,112,97,99,105,116,121,58,46,54,53,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,119,105,100,116,104,58,49,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,43,46,99,117,115,116,111,109,45,114,97,110,103,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,43,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,114,97,110,103,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,43,46,99,117,115,116,111,109,45,114,97,110,103,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,114,97,110,103,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,114,97,110,103,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,114,97,110,103,101,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,48,32,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,91,114,101,97,100,111,110,108,121,93,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,114,97,110,103,101,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,48,32,49,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,114,97,110,103,101,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,48,32,46,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,35,57,98,101,55,97,99,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,35,57,98,101,55,97,99,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,35,57,98,101,55,97,99,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,98,101,55,97,99,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,51,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,98,101,55,97,99,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,51,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,98,101,55,97,99,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,108,111,119,101,114,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,108,111,119,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,51,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,117,112,112,101,114,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,117,112,112,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,51,53,41,125,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,35,102,54,99,100,100,49,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,35,102,54,99,100,100,49,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,35,102,54,99,100,100,49,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,54,99,100,100,49,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,51,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,54,99,100,100,49,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,51,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,54,99,100,100,49,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,108,111,119,101,114,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,108,111,119,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,51,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,117,112,112,101,114,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,117,112,112,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,51,53,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,114,97,100,105,111,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,56,55,53,114,101,109,125,46,99,117,115,116,111,109,45,114,97,100,105,111,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,116,111,112,58,46,51,49,50,53,114,101,109,59,108,101,102,116,58,45,49,46,56,55,53,114,101,109,59,119,105,100,116,104,58,49,46,50,53,114,101,109,59,104,101,105,103,104,116,58,49,46,50,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,125,46,99,117,115,116,111,109,45,114,97,100,105,111,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,111,112,58,46,51,49,50,53,114,101,109,59,108,101,102,116,58,45,49,46,56,55,53,114,101,109,59,119,105,100,116,104,58,49,46,50,53,114,101,109,59,104,101,105,103,104,116,58,49,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,114,97,100,105,111,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,114,97,100,105,111,123,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,51,49,50,53,114,101,109,125,46,99,117,115,116,111,109,45,114,97,100,105,111,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,116,111,112,58,46,50,49,56,55,53,114,101,109,59,108,101,102,116,58,45,49,46,51,49,50,53,114,101,109,59,119,105,100,116,104,58,46,56,55,53,114,101,109,59,104,101,105,103,104,116,58,46,56,55,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,125,46,99,117,115,116,111,109,45,114,97,100,105,111,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,111,112,58,46,50,49,56,55,53,114,101,109,59,108,101,102,116,58,45,49,46,51,49,50,53,114,101,109,59,119,105,100,116,104,58,46,56,55,53,114,101,109,59,104,101,105,103,104,116,58,46,56,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,53,48,37,32,53,48,37,125,46,98,45,114,97,116,105,110,103,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,98,45,114,97,116,105,110,103,46,100,45,105,110,108,105,110,101,45,102,108,101,120,123,119,105,100,116,104,58,97,117,116,111,125,46,98,45,114,97,116,105,110,103,32,46,98,45,114,97,116,105,110,103,45,115,116,97,114,44,46,98,45,114,97,116,105,110,103,32,46,98,45,114,97,116,105,110,103,45,118,97,108,117,101,123,112,97,100,100,105,110,103,58,48,32,46,50,53,101,109,125,46,98,45,114,97,116,105,110,103,32,46,98,45,114,97,116,105,110,103,45,118,97,108,117,101,123,109,105,110,45,119,105,100,116,104,58,50,46,53,101,109,125,46,98,45,114,97,116,105,110,103,32,46,98,45,114,97,116,105,110,103,45,115,116,97,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,111,117,116,108,105,110,101,58,48,125,46,98,45,114,97,116,105,110,103,32,46,98,45,114,97,116,105,110,103,45,115,116,97,114,32,46,98,45,114,97,116,105,110,103,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,46,98,45,114,97,116,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,45,114,97,116,105,110,103,58,100,105,115,97,98,108,101,100,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,45,114,97,116,105,110,103,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,114,101,97,100,111,110,108,121,41,32,46,98,45,114,97,116,105,110,103,45,115,116,97,114,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,98,45,114,97,116,105,110,103,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,114,101,97,100,111,110,108,121,41,32,46,98,45,114,97,116,105,110,103,45,115,116,97,114,58,104,111,118,101,114,32,46,98,45,114,97,116,105,110,103,45,105,99,111,110,44,46,98,45,114,97,116,105,110,103,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,114,101,97,100,111,110,108,121,41,58,102,111,99,117,115,58,110,111,116,40,58,104,111,118,101,114,41,32,46,98,45,114,97,116,105,110,103,45,115,116,97,114,46,102,111,99,117,115,101,100,32,46,98,45,114,97,116,105,110,103,45,105,99,111,110,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,46,53,41,125,46,98,45,114,97,116,105,110,103,91,100,105,114,61,114,116,108,93,32,46,98,45,114,97,116,105,110,103,45,115,116,97,114,45,104,97,108,102,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,45,49,44,49,41,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,59,112,97,100,100,105,110,103,58,48,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,91,100,105,114,61,114,116,108,93,58,110,111,116,40,46,102,108,101,120,45,99,111,108,117,109,110,41,44,91,100,105,114,61,114,116,108,93,32,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,58,110,111,116,40,46,102,108,101,120,45,99,111,108,117,109,110,41,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,111,117,116,112,117,116,123,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,111,117,116,108,105,110,101,58,48,59,98,111,114,100,101,114,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,119,105,100,116,104,58,97,117,116,111,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,32,46,50,53,114,101,109,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,111,117,116,112,117,116,62,98,100,105,44,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,111,117,116,112,117,116,62,100,105,118,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,105,110,45,119,105,100,116,104,58,50,46,50,53,101,109,59,104,101,105,103,104,116,58,49,46,53,101,109,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,102,108,101,120,45,99,111,108,117,109,110,123,104,101,105,103,104,116,58,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,102,108,101,120,45,99,111,108,117,109,110,32,111,117,116,112,117,116,123,109,97,114,103,105,110,58,48,32,46,50,53,114,101,109,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,48,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,58,110,111,116,40,46,100,45,105,110,108,105,110,101,45,102,108,101,120,41,58,110,111,116,40,46,102,108,101,120,45,99,111,108,117,109,110,41,123,111,117,116,112,117,116,45,119,105,100,116,104,58,49,48,48,37,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,100,45,105,110,108,105,110,101,45,102,108,101,120,58,110,111,116,40,46,102,108,101,120,45,99,111,108,117,109,110,41,123,119,105,100,116,104,58,97,117,116,111,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,46,98,116,110,123,108,105,110,101,45,104,101,105,103,104,116,58,49,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,46,98,116,110,58,100,105,115,97,98,108,101,100,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,46,98,116,110,58,104,111,118,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,62,100,105,118,62,46,98,45,105,99,111,110,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,46,50,53,41,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,100,105,115,97,98,108,101,100,44,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,114,101,97,100,111,110,108,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,100,105,115,97,98,108,101,100,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,45,102,111,114,109,45,116,97,103,115,32,46,98,45,102,111,114,109,45,116,97,103,115,45,108,105,115,116,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,125,46,98,45,102,111,114,109,45,116,97,103,115,32,46,98,45,102,111,114,109,45,116,97,103,115,45,108,105,115,116,32,46,98,45,102,111,114,109,45,116,97,103,44,46,98,45,102,111,114,109,45,116,97,103,115,32,46,98,45,102,111,114,109,45,116,97,103,115,45,108,105,115,116,32,46,98,45,102,114,111,109,45,116,97,103,115,45,102,105,101,108,100,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,125,46,98,45,102,111,114,109,45,116,97,103,115,46,102,111,99,117,115,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,98,45,102,111,114,109,45,116,97,103,115,46,102,111,99,117,115,46,105,115,45,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,98,45,102,111,114,109,45,116,97,103,115,46,102,111,99,117,115,46,105,115,45,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,98,45,102,111,114,109,45,116,97,103,115,46,100,105,115,97,98,108,101,100,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,98,45,102,111,114,109,45,116,97,103,123,102,111,110,116,45,115,105,122,101,58,55,53,37,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,125,46,98,45,102,111,114,109,45,116,97,103,46,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,46,55,53,125,46,98,45,102,111,114,109,45,116,97,103,62,98,117,116,116,111,110,46,98,45,102,111,114,109,45,116,97,103,45,114,101,109,111,118,101,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,102,111,110,116,45,115,105,122,101,58,49,50,53,37,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,102,108,111,97,116,58,110,111,110,101,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,32,46,98,45,102,111,114,109,45,116,97,103,123,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,32,46,98,45,102,111,114,109,45,116,97,103,123,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,109,101,100,105,97,45,97,115,105,100,101,123,100,105,115,112,108,97,121,58,102,108,101,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,125,46,109,101,100,105,97,45,97,115,105,100,101,45,114,105,103,104,116,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,123,111,112,97,99,105,116,121,58,46,53,125,46,98,45,112,97,103,105,110,97,116,105,111,110,45,112,105,108,108,115,32,46,112,97,103,101,45,105,116,101,109,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,114,101,109,33,105,109,112,111,114,116,97,110,116,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,125,46,98,45,112,97,103,105,110,97,116,105,111,110,45,112,105,108,108,115,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,112,111,112,111,118,101,114,46,98,45,112,111,112,111,118,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,112,97,99,105,116,121,58,49,59,111,117,116,108,105,110,101,58,48,125,46,112,111,112,111,118,101,114,46,98,45,112,111,112,111,118,101,114,46,102,97,100,101,58,110,111,116,40,46,115,104,111,119,41,123,111,112,97,99,105,116,121,58,48,125,46,112,111,112,111,118,101,114,46,98,45,112,111,112,111,118,101,114,46,115,104,111,119,123,111,112,97,99,105,116,121,58,49,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,99,101,53,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,99,99,101,53,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,99,99,101,53,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,98,100,100,100,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,98,100,100,100,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,99,99,101,53,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,100,100,102,102,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,97,51,100,48,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,51,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,101,50,101,51,101,53,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,101,50,101,51,101,53,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,100,97,100,98,100,101,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,100,97,100,98,100,101,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,101,50,101,51,101,53,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,100,98,100,101,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,99,99,101,100,50,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,52,101,100,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,100,52,101,100,100,97,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,100,52,101,100,100,97,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,57,101,56,100,49,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,57,101,56,100,49,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,100,52,101,100,100,97,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,57,101,56,100,49,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,98,55,101,49,99,49,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,49,53,53,55,50,52,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,49,101,99,102,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,100,49,101,99,102,49,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,100,49,101,99,102,49,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,53,101,55,101,100,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,53,101,55,101,100,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,100,49,101,99,102,49,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,53,101,55,101,100,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,98,50,100,102,101,55,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,48,99,53,52,54,48,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,51,99,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,102,51,99,100,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,102,102,51,99,100,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,101,102,98,101,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,101,102,98,101,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,102,102,51,99,100,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,102,98,101,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,101,57,97,52,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,56,53,54,52,48,52,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,100,55,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,56,100,55,100,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,56,100,55,100,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,54,99,97,99,101,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,54,99,97,99,101,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,56,100,55,100,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,54,99,97,99,101,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,50,98,52,98,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,55,50,49,99,50,52,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,101,102,101,102,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,101,102,101,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,101,102,101,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,54,102,54,102,54,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,54,102,54,102,54,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,101,102,101,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,54,102,54,102,54,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,101,97,101,97,101,97,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,56,49,56,49,56,50,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,100,54,100,56,100,57,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,100,54,100,56,100,57,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,101,100,48,100,50,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,101,100,48,100,50,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,100,54,100,56,100,57,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,101,100,48,100,50,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,49,99,52,99,53,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,49,98,49,101,50,49,125,46,98,45,115,105,100,101,98,97,114,45,111,117,116,101,114,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,114,105,103,104,116,58,48,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,59,122,45,105,110,100,101,120,58,99,97,108,99,40,49,48,51,48,32,43,32,53,41,125,46,98,45,115,105,100,101,98,97,114,45,98,97,99,107,100,114,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,45,49,59,119,105,100,116,104,58,49,48,48,118,119,59,104,101,105,103,104,116,58,49,48,48,118,104,59,111,112,97,99,105,116,121,58,46,54,125,46,98,45,115,105,100,101,98,97,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,119,105,100,116,104,58,51,50,48,112,120,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,118,104,59,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,59,109,97,114,103,105,110,58,48,59,111,117,116,108,105,110,101,58,48,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,48,41,125,46,98,45,115,105,100,101,98,97,114,46,115,108,105,100,101,123,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,115,105,100,101,98,97,114,46,115,108,105,100,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,98,45,115,105,100,101,98,97,114,58,110,111,116,40,46,98,45,115,105,100,101,98,97,114,45,114,105,103,104,116,41,123,108,101,102,116,58,48,59,114,105,103,104,116,58,97,117,116,111,125,46,98,45,115,105,100,101,98,97,114,58,110,111,116,40,46,98,45,115,105,100,101,98,97,114,45,114,105,103,104,116,41,46,115,108,105,100,101,58,110,111,116,40,46,115,104,111,119,41,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,125,46,98,45,115,105,100,101,98,97,114,58,110,111,116,40,46,98,45,115,105,100,101,98,97,114,45,114,105,103,104,116,41,62,46,98,45,115,105,100,101,98,97,114,45,104,101,97,100,101,114,32,46,99,108,111,115,101,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,46,98,45,115,105,100,101,98,97,114,46,98,45,115,105,100,101,98,97,114,45,114,105,103,104,116,123,108,101,102,116,58,97,117,116,111,59,114,105,103,104,116,58,48,125,46,98,45,115,105,100,101,98,97,114,46,98,45,115,105,100,101,98,97,114,45,114,105,103,104,116,46,115,108,105,100,101,58,110,111,116,40,46,115,104,111,119,41,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,125,46,98,45,115,105,100,101,98,97,114,46,98,45,115,105,100,101,98,97,114,45,114,105,103,104,116,62,46,98,45,115,105,100,101,98,97,114,45,104,101,97,100,101,114,32,46,99,108,111,115,101,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,125,46,98,45,115,105,100,101,98,97,114,62,46,98,45,115,105,100,101,98,97,114,45,104,101,97,100,101,114,123,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,103,114,111,119,58,48,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,91,100,105,114,61,114,116,108,93,32,46,98,45,115,105,100,101,98,97,114,62,46,98,45,115,105,100,101,98,97,114,45,104,101,97,100,101,114,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,125,46,98,45,115,105,100,101,98,97,114,62,46,98,45,115,105,100,101,98,97,114,45,104,101,97,100,101,114,32,46,99,108,111,115,101,123,102,108,111,97,116,58,110,111,110,101,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,125,46,98,45,115,105,100,101,98,97,114,62,46,98,45,115,105,100,101,98,97,114,45,98,111,100,121,123,102,108,101,120,45,103,114,111,119,58,49,59,104,101,105,103,104,116,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,98,45,115,105,100,101,98,97,114,62,46,98,45,115,105,100,101,98,97,114,45,102,111,111,116,101,114,123,102,108,101,120,45,103,114,111,119,58,48,125,46,98,45,115,107,101,108,101,116,111,110,45,119,114,97,112,112,101,114,123,99,117,114,115,111,114,58,119,97,105,116,125,46,98,45,115,107,101,108,101,116,111,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,49,50,41,59,99,117,114,115,111,114,58,119,97,105,116,59,45,119,101,98,107,105,116,45,109,97,115,107,45,105,109,97,103,101,58,114,97,100,105,97,108,45,103,114,97,100,105,101,110,116,40,119,104,105,116,101,44,35,48,48,48,41,59,109,97,115,107,45,105,109,97,103,101,58,114,97,100,105,97,108,45,103,114,97,100,105,101,110,116,40,119,104,105,116,101,44,35,48,48,48,41,125,46,98,45,115,107,101,108,101,116,111,110,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,92,92,92,34,194,160,92,92,92,34,125,46,98,45,115,107,101,108,101,116,111,110,45,116,101,120,116,123,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,45,115,107,101,108,101,116,111,110,45,98,117,116,116,111,110,123,119,105,100,116,104,58,55,53,112,120,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,45,115,107,101,108,101,116,111,110,45,97,118,97,116,97,114,123,119,105,100,116,104,58,50,46,53,101,109,59,104,101,105,103,104,116,58,50,46,53,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,125,46,98,45,115,107,101,108,101,116,111,110,45,105,110,112,117,116,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,58,35,99,101,100,52,100,97,32,115,111,108,105,100,32,49,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,45,115,107,101,108,101,116,111,110,45,105,99,111,110,45,119,114,97,112,112,101,114,32,115,118,103,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,49,50,41,125,46,98,45,115,107,101,108,101,116,111,110,45,105,109,103,123,104,101,105,103,104,116,58,49,48,48,37,59,119,105,100,116,104,58,49,48,48,37,125,46,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,119,97,118,101,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,48,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,57,48,100,101,103,44,116,114,97,110,115,112,97,114,101,110,116,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,52,41,44,116,114,97,110,115,112,97,114,101,110,116,41,59,97,110,105,109,97,116,105,111,110,58,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,119,97,118,101,32,49,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,119,97,118,101,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,119,97,118,101,123,102,114,111,109,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,125,116,111,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,125,125,46,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,102,97,100,101,123,97,110,105,109,97,116,105,111,110,58,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,102,97,100,101,32,56,55,53,109,115,32,101,97,115,101,45,105,110,45,111,117,116,32,97,108,116,101,114,110,97,116,101,32,105,110,102,105,110,105,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,102,97,100,101,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,102,97,100,101,123,48,37,123,111,112,97,99,105,116,121,58,49,125,49,48,48,37,123,111,112,97,99,105,116,121,58,46,52,125,125,46,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,116,104,114,111,98,123,97,110,105,109,97,116,105,111,110,58,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,116,104,114,111,98,32,56,55,53,109,115,32,101,97,115,101,45,105,110,32,97,108,116,101,114,110,97,116,101,32,105,110,102,105,110,105,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,116,104,114,111,98,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,116,104,114,111,98,123,48,37,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,125,49,48,48,37,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,57,55,53,41,125,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,102,105,120,101,100,123,116,97,98,108,101,45,108,97,121,111,117,116,58,102,105,120,101,100,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,110,111,45,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,115,101,112,97,114,97,116,101,59,98,111,114,100,101,114,45,115,112,97,99,105,110,103,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,91,97,114,105,97,45,98,117,115,121,61,116,114,117,101,93,123,111,112,97,99,105,116,121,58,46,53,53,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,46,98,45,116,97,98,108,101,45,100,101,116,97,105,108,115,62,116,100,123,98,111,114,100,101,114,45,116,111,112,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,99,97,112,116,105,111,110,123,99,97,112,116,105,111,110,45,115,105,100,101,58,98,111,116,116,111,109,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,99,97,112,116,105,111,110,45,116,111,112,62,99,97,112,116,105,111,110,123,99,97,112,116,105,111,110,45,115,105,100,101,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,46,116,97,98,108,101,45,97,99,116,105,118,101,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,104,111,118,101,114,62,116,98,111,100,121,62,116,114,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,32,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,104,111,118,101,114,62,116,98,111,100,121,62,116,114,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,32,116,104,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,44,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,46,98,103,45,97,99,116,105,118,101,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,46,98,103,45,97,99,116,105,118,101,62,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,46,98,103,45,97,99,116,105,118,101,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,104,111,118,101,114,46,116,97,98,108,101,45,100,97,114,107,62,116,98,111,100,121,62,116,114,46,98,103,45,97,99,116,105,118,101,58,104,111,118,101,114,32,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,104,111,118,101,114,46,116,97,98,108,101,45,100,97,114,107,62,116,98,111,100,121,62,116,114,46,98,103,45,97,99,116,105,118,101,58,104,111,118,101,114,32,116,104,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,55,53,41,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,55,53,41,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,62,46,116,97,98,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,123,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,59,109,97,120,45,104,101,105,103,104,116,58,51,48,48,112,120,125,64,109,101,100,105,97,32,112,114,105,110,116,123,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,123,111,118,101,114,102,108,111,119,45,121,58,118,105,115,105,98,108,101,33,105,109,112,111,114,116,97,110,116,59,109,97,120,45,104,101,105,103,104,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,115,117,112,112,111,114,116,115,32,40,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,41,123,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,116,104,123,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,59,116,111,112,58,48,59,122,45,105,110,100,101,120,58,50,125,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,123,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,59,108,101,102,116,58,48,125,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,123,122,45,105,110,100,101,120,58,53,125,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,123,122,45,105,110,100,101,120,58,50,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,62,46,116,97,98,108,101,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,116,97,98,108,101,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,116,97,98,108,101,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,98,111,100,121,62,116,114,62,46,98,103,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,102,111,111,116,62,116,114,62,46,98,103,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,104,101,97,100,62,116,114,62,46,98,103,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,115,116,114,105,112,101,100,62,116,98,111,100,121,62,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,62,46,116,97,98,108,101,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,44,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,115,116,114,105,112,101,100,46,116,97,98,108,101,45,100,97,114,107,62,116,98,111,100,121,62,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,62,46,98,103,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,53,41,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,53,41,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,104,111,118,101,114,62,116,98,111,100,121,62,116,114,58,104,111,118,101,114,62,46,116,97,98,108,101,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,44,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,104,111,118,101,114,46,116,97,98,108,101,45,100,97,114,107,62,116,98,111,100,121,62,116,114,58,104,111,118,101,114,62,46,98,103,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,55,53,41,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,55,53,41,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,46,54,53,101,109,32,49,101,109,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,58,110,111,116,40,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,41,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,58,110,111,116,40,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,41,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,114,105,103,104,116,32,99,97,108,99,40,46,55,53,114,101,109,32,47,32,50,41,32,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,46,55,53,114,101,109,32,43,32,46,54,53,101,109,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,108,101,102,116,32,99,97,108,99,40,46,55,53,114,101,109,32,47,32,50,41,32,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,99,97,108,99,40,46,55,53,114,101,109,32,43,32,46,54,53,101,109,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,110,111,110,101,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,110,111,110,101,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,48,95,95,95,32,43,32,92,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,97,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,97,115,99,101,110,100,105,110,103,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,95,95,95,32,43,32,92,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,100,101,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,100,101,115,99,101,110,100,105,110,103,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,95,95,95,32,43,32,92,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,110,111,110,101,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,110,111,110,101,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,46,116,104,101,97,100,45,100,97,114,107,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,110,111,110,101,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,51,95,95,95,32,43,32,92,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,97,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,97,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,46,116,104,101,97,100,45,100,97,114,107,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,97,115,99,101,110,100,105,110,103,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,52,95,95,95,32,43,32,92,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,100,101,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,100,101,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,46,116,104,101,97,100,45,100,97,114,107,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,100,101,115,99,101,110,100,105,110,103,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,53,95,95,95,32,43,32,92,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,116,97,98,108,101,45,100,97,114,107,91,97,114,105,97,45,115,111,114,116,61,110,111,110,101,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,116,97,98,108,101,45,100,97,114,107,91,97,114,105,97,45,115,111,114,116,61,110,111,110,101,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,51,95,95,95,32,43,32,92,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,116,97,98,108,101,45,100,97,114,107,91,97,114,105,97,45,115,111,114,116,61,97,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,116,97,98,108,101,45,100,97,114,107,91,97,114,105,97,45,115,111,114,116,61,97,115,99,101,110,100,105,110,103,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,52,95,95,95,32,43,32,92,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,116,97,98,108,101,45,100,97,114,107,91,97,114,105,97,45,115,111,114,116,61,100,101,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,116,97,98,108,101,45,100,97,114,107,91,97,114,105,97,45,115,111,114,116,61,100,101,115,99,101,110,100,105,110,103,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,53,95,95,95,32,43,32,92,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,115,109,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,58,110,111,116,40,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,41,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,115,109,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,58,110,111,116,40,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,41,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,114,105,103,104,116,32,99,97,108,99,40,46,51,114,101,109,32,47,32,50,41,32,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,46,51,114,101,109,32,43,32,46,54,53,101,109,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,115,109,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,115,109,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,108,101,102,116,32,99,97,108,99,40,46,51,114,101,109,32,47,32,50,41,32,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,99,97,108,99,40,46,51,114,101,109,32,43,32,46,54,53,101,109,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,101,108,101,99,116,97,98,108,101,58,110,111,116,40,46,98,45,116,97,98,108,101,45,115,101,108,101,99,116,97,98,108,101,45,110,111,45,99,108,105,99,107,41,62,116,98,111,100,121,62,116,114,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,101,108,101,99,116,97,98,108,101,58,110,111,116,40,46,98,45,116,97,98,108,101,45,115,101,108,101,99,116,97,98,108,101,45,110,111,45,99,108,105,99,107,41,46,98,45,116,97,98,108,101,45,115,101,108,101,99,116,105,110,103,46,98,45,116,97,98,108,101,45,115,101,108,101,99,116,45,114,97,110,103,101,62,116,98,111,100,121,62,116,114,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,99,97,112,116,105,111,110,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,116,104,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,102,111,111,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,104,101,97,100,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,99,97,112,116,105,111,110,123,99,97,112,116,105,111,110,45,115,105,100,101,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,108,97,98,101,108,41,59,119,105,100,116,104,58,52,48,37,59,102,108,111,97,116,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,112,97,100,100,105,110,103,58,48,32,99,97,108,99,40,49,114,101,109,32,47,32,50,41,32,48,32,48,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,62,100,105,118,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,99,97,108,99,40,49,48,48,37,32,45,32,52,48,37,41,59,112,97,100,100,105,110,103,58,48,32,48,32,48,32,99,97,108,99,40,49,114,101,109,32,47,32,50,41,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,46,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,46,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,51,112,120,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,104,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,51,112,120,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,99,97,112,116,105,111,110,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,116,104,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,102,111,111,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,104,101,97,100,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,99,97,112,116,105,111,110,123,99,97,112,116,105,111,110,45,115,105,100,101,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,108,97,98,101,108,41,59,119,105,100,116,104,58,52,48,37,59,102,108,111,97,116,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,112,97,100,100,105,110,103,58,48,32,99,97,108,99,40,49,114,101,109,32,47,32,50,41,32,48,32,48,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,62,100,105,118,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,99,97,108,99,40,49,48,48,37,32,45,32,52,48,37,41,59,112,97,100,100,105,110,103,58,48,32,48,32,48,32,99,97,108,99,40,49,114,101,109,32,47,32,50,41,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,46,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,46,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,51,112,120,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,104,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,51,112,120,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,99,97,112,116,105,111,110,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,116,104,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,102,111,111,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,104,101,97,100,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,99,97,112,116,105,111,110,123,99,97,112,116,105,111,110,45,115,105,100,101,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,108,97,98,101,108,41,59,119,105,100,116,104,58,52,48,37,59,102,108,111,97,116,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,112,97,100,100,105,110,103,58,48,32,99,97,108,99,40,49,114,101,109,32,47,32,50,41,32,48,32,48,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,62,100,105,118,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,99,97,108,99,40,49,48,48,37,32,45,32,52,48,37,41,59,112,97,100,100,105,110,103,58,48,32,48,32,48,32,99,97,108,99,40,49,114,101,109,32,47,32,50,41,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,46,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,46,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,51,112,120,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,104,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,51,112,120,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,99,97,112,116,105,111,110,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,116,104,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,102,111,111,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,104,101,97,100,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,99,97,112,116,105,111,110,123,99,97,112,116,105,111,110,45,115,105,100,101,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,108,97,98,101,108,41,59,119,105,100,116,104,58,52,48,37,59,102,108,111,97,116,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,112,97,100,100,105,110,103,58,48,32,99,97,108,99,40,49,114,101,109,32,47,32,50,41,32,48,32,48,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,62,100,105,118,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,99,97,108,99,40,49,48,48,37,32,45,32,52,48,37,41,59,112,97,100,100,105,110,103,58,48,32,48,32,48,32,99,97,108,99,40,49,114,101,109,32,47,32,50,41,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,46,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,46,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,51,112,120,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,104,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,51,112,120,125,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,99,97,112,116,105,111,110,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,116,104,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,102,111,111,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,104,101,97,100,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,99,97,112,116,105,111,110,123,99,97,112,116,105,111,110,45,115,105,100,101,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,108,97,98,101,108,41,59,119,105,100,116,104,58,52,48,37,59,102,108,111,97,116,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,112,97,100,100,105,110,103,58,48,32,99,97,108,99,40,49,114,101,109,32,47,32,50,41,32,48,32,48,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,62,100,105,118,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,99,97,108,99,40,49,48,48,37,32,45,32,52,48,37,41,59,112,97,100,100,105,110,103,58,48,32,48,32,48,32,99,97,108,99,40,49,114,101,109,32,47,32,50,41,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,46,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,46,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,51,112,120,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,104,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,51,112,120,125,46,98,45,116,105,109,101,123,109,105,110,45,119,105,100,116,104,58,49,53,48,112,120,125,46,98,45,116,105,109,101,32,111,117,116,112,117,116,46,100,105,115,97,98,108,101,100,44,46,98,45,116,105,109,101,91,97,114,105,97,45,100,105,115,97,98,108,101,100,61,116,114,117,101,93,32,111,117,116,112,117,116,44,46,98,45,116,105,109,101,91,97,114,105,97,45,114,101,97,100,111,110,108,121,61,116,114,117,101,93,32,111,117,116,112,117,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,111,112,97,99,105,116,121,58,49,125,46,98,45,116,105,109,101,91,97,114,105,97,45,100,105,115,97,98,108,101,100,61,116,114,117,101,93,32,111,117,116,112,117,116,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,91,100,105,114,61,114,116,108,93,32,46,98,45,116,105,109,101,62,46,100,45,102,108,101,120,58,110,111,116,40,46,102,108,101,120,45,99,111,108,117,109,110,41,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,125,46,98,45,116,105,109,101,32,46,98,45,116,105,109,101,45,104,101,97,100,101,114,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,98,45,116,105,109,101,32,46,98,45,116,105,109,101,45,104,101,97,100,101,114,32,111,117,116,112,117,116,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,125,46,98,45,116,105,109,101,32,46,98,45,116,105,109,101,45,102,111,111,116,101,114,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,46,98,45,116,105,109,101,32,46,98,45,116,105,109,101,45,97,109,112,109,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,125,46,98,45,116,111,97,115,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,109,97,120,45,119,105,100,116,104,58,51,53,48,112,120,59,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,122,45,105,110,100,101,120,58,49,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,45,116,111,97,115,116,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,125,46,98,45,116,111,97,115,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,98,45,116,111,97,115,116,32,46,116,111,97,115,116,123,111,112,97,99,105,116,121,58,49,125,46,98,45,116,111,97,115,116,32,46,116,111,97,115,116,46,102,97,100,101,58,110,111,116,40,46,115,104,111,119,41,123,111,112,97,99,105,116,121,58,48,125,46,98,45,116,111,97,115,116,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,98,111,100,121,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,98,45,116,111,97,115,116,45,112,114,105,109,97,114,121,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,51,48,44,50,52,50,44,50,53,53,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,49,56,52,44,50,49,56,44,50,53,53,44,46,56,53,41,59,99,111,108,111,114,58,35,48,48,52,48,56,53,125,46,98,45,116,111,97,115,116,45,112,114,105,109,97,114,121,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,48,52,44,50,50,57,44,50,53,53,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,49,56,52,44,50,49,56,44,50,53,53,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,112,114,105,109,97,114,121,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,54,102,50,102,102,125,46,98,45,116,111,97,115,116,45,115,101,99,111,110,100,97,114,121,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,51,57,44,50,52,48,44,50,52,49,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,50,49,52,44,50,49,54,44,50,49,57,44,46,56,53,41,59,99,111,108,111,114,58,35,51,56,51,100,52,49,125,46,98,45,116,111,97,115,116,45,115,101,99,111,110,100,97,114,121,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,50,54,44,50,50,55,44,50,50,57,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,50,49,52,44,50,49,54,44,50,49,57,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,115,101,99,111,110,100,97,114,121,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,102,102,48,102,49,125,46,98,45,116,111,97,115,116,45,115,117,99,99,101,115,115,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,51,48,44,50,52,53,44,50,51,51,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,49,57,53,44,50,51,48,44,50,48,51,44,46,56,53,41,59,99,111,108,111,114,58,35,49,53,53,55,50,52,125,46,98,45,116,111,97,115,116,45,115,117,99,99,101,115,115,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,49,50,44,50,51,55,44,50,49,56,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,49,57,53,44,50,51,48,44,50,48,51,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,115,117,99,99,101,115,115,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,54,102,53,101,57,125,46,98,45,116,111,97,115,116,45,105,110,102,111,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,50,57,44,50,52,52,44,50,52,55,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,49,57,48,44,50,50,57,44,50,51,53,44,46,56,53,41,59,99,111,108,111,114,58,35,48,99,53,52,54,48,125,46,98,45,116,111,97,115,116,45,105,110,102,111,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,48,57,44,50,51,54,44,50,52,49,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,49,57,48,44,50,50,57,44,50,51,53,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,105,110,102,111,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,53,102,52,102,55,125,46,98,45,116,111,97,115,116,45,119,97,114,110,105,110,103,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,52,57,44,50,51,49,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,51,56,44,49,56,54,44,46,56,53,41,59,99,111,108,111,114,58,35,56,53,54,52,48,52,125,46,98,45,116,111,97,115,116,45,119,97,114,110,105,110,103,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,52,51,44,50,48,53,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,51,56,44,49,56,54,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,119,97,114,110,105,110,103,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,57,101,55,125,46,98,45,116,111,97,115,116,45,100,97,110,103,101,114,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,50,44,50,51,55,44,50,51,56,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,50,52,53,44,49,57,56,44,50,48,51,44,46,56,53,41,59,99,111,108,111,114,58,35,55,50,49,99,50,52,125,46,98,45,116,111,97,115,116,45,100,97,110,103,101,114,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,52,56,44,50,49,53,44,50,49,56,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,50,52,53,44,49,57,56,44,50,48,51,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,100,97,110,103,101,114,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,99,101,100,101,101,125,46,98,45,116,111,97,115,116,45,108,105,103,104,116,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,50,53,51,44,50,53,51,44,50,53,52,44,46,56,53,41,59,99,111,108,111,114,58,35,56,49,56,49,56,50,125,46,98,45,116,111,97,115,116,45,108,105,103,104,116,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,52,44,50,53,52,44,50,53,52,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,50,53,51,44,50,53,51,44,50,53,52,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,108,105,103,104,116,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,98,45,116,111,97,115,116,45,100,97,114,107,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,50,55,44,50,50,57,44,50,50,57,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,49,57,56,44,50,48,48,44,50,48,50,44,46,56,53,41,59,99,111,108,111,114,58,35,49,98,49,101,50,49,125,46,98,45,116,111,97,115,116,45,100,97,114,107,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,49,52,44,50,49,54,44,50,49,55,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,49,57,56,44,50,48,48,44,50,48,50,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,100,97,114,107,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,51,101,53,101,53,125,46,98,45,116,111,97,115,116,101,114,123,122,45,105,110,100,101,120,58,49,49,48,48,125,46,98,45,116,111,97,115,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,123,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,125,46,98,45,116,111,97,115,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,99,101,110,116,101,114,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,102,117,108,108,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,99,101,110,116,101,114,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,102,117,108,108,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,108,101,102,116,58,46,53,114,101,109,59,114,105,103,104,116,58,46,53,114,101,109,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,109,97,120,45,119,105,100,116,104,58,51,53,48,112,120,59,119,105,100,116,104,58,49,48,48,37,59,108,101,102,116,58,48,59,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,58,48,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,123,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,32,46,98,45,116,111,97,115,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,32,46,116,111,97,115,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,32,46,98,45,116,111,97,115,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,32,46,116,111,97,115,116,123,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,99,101,110,116,101,114,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,102,117,108,108,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,123,116,111,112,58,48,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,123,116,111,112,58,46,53,114,101,109,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,99,101,110,116,101,114,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,102,117,108,108,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,123,98,111,116,116,111,109,58,48,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,123,98,111,116,116,111,109,58,46,53,114,101,109,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,109,111,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,109,111,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,109,111,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,109,111,118,101,123,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,49,55,53,109,115,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,116,111,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,116,111,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,116,111,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,116,111,32,46,116,111,97,115,116,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,45,100,101,108,97,121,58,49,55,53,109,115,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,114,97,110,115,105,116,105,111,110,45,100,101,108,97,121,58,49,55,53,109,115,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,45,100,101,108,97,121,58,48,115,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,112,97,99,105,116,121,58,46,57,59,111,117,116,108,105,110,101,58,48,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,102,97,100,101,58,110,111,116,40,46,115,104,111,119,41,123,111,112,97,99,105,116,121,58,48,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,57,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,110,111,110,105,110,116,101,114,97,99,116,105,118,101,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,32,46,97,114,114,111,119,123,109,97,114,103,105,110,58,48,32,46,50,53,114,101,109,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,123,109,97,114,103,105,110,58,46,50,53,114,101,109,32,48,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,45,105,99,111,110,46,98,105,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,45,46,49,53,101,109,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,46,55,53,115,32,105,110,102,105,110,105,116,101,32,101,97,115,101,45,105,110,45,111,117,116,32,97,108,116,101,114,110,97,116,101,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,45,118,101,114,116,105,99,97,108,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,45,118,101,114,116,105,99,97,108,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,46,55,53,115,32,105,110,102,105,110,105,116,101,32,101,97,115,101,45,105,110,45,111,117,116,32,97,108,116,101,114,110,97,116,101,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,45,118,101,114,116,105,99,97,108,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,45,118,101,114,116,105,99,97,108,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,45,118,101,114,116,105,99,97,108,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,102,97,100,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,102,97,100,101,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,46,55,53,115,32,105,110,102,105,110,105,116,101,32,101,97,115,101,45,105,110,45,111,117,116,32,97,108,116,101,114,110,97,116,101,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,102,97,100,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,102,97,100,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,102,97,100,101,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,50,115,32,105,110,102,105,110,105,116,101,32,108,105,110,101,97,114,32,110,111,114,109,97,108,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,50,115,32,105,110,102,105,110,105,116,101,32,108,105,110,101,97,114,32,114,101,118,101,114,115,101,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,112,117,108,115,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,112,117,108,115,101,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,49,115,32,105,110,102,105,110,105,116,101,32,115,116,101,112,115,40,56,41,32,110,111,114,109,97,108,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,112,117,108,115,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,112,117,108,115,101,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,45,112,117,108,115,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,45,112,117,108,115,101,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,49,115,32,105,110,102,105,110,105,116,101,32,115,116,101,112,115,40,56,41,32,114,101,118,101,114,115,101,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,45,112,117,108,115,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,45,112,117,108,115,101,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,116,104,114,111,98,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,116,104,114,111,98,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,46,55,53,115,32,105,110,102,105,110,105,116,101,32,101,97,115,101,45,105,110,45,111,117,116,32,97,108,116,101,114,110,97,116,101,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,116,104,114,111,98,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,116,104,114,111,98,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,116,104,114,111,98,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,123,48,37,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,50,53,37,41,125,49,48,48,37,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,50,53,37,41,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,45,118,101,114,116,105,99,97,108,123,48,37,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,50,53,37,41,125,49,48,48,37,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,50,53,37,41,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,102,97,100,101,123,48,37,123,111,112,97,99,105,116,121,58,46,49,125,49,48,48,37,123,111,112,97,99,105,116,121,58,49,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,123,48,37,123,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,48,41,125,49,48,48,37,123,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,53,57,100,101,103,41,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,116,104,114,111,98,123,48,37,123,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,53,41,125,49,48,48,37,123,111,112,97,99,105,116,121,58,49,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,125,125,46,98,116,110,32,46,98,45,105,99,111,110,46,98,105,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,32,46,98,45,105,99,111,110,46,98,105,44,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,32,46,98,45,105,99,111,110,46,98,105,44,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,46,98,45,105,99,111,110,46,98,105,44,46,110,97,118,45,108,105,110,107,32,46,98,45,105,99,111,110,46,98,105,123,102,111,110,116,45,115,105,122,101,58,49,50,53,37,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,125,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,100,105,115,116,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,109,105,110,46,99,115,115,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,37,53,66,50,37,53,68,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,47,100,105,115,116,47,99,115,115,47,98,111,111,116,115,116,114,97,112,46,109,105,110,46,99,115,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,47,100,105,115,116,47,99,115,115,47,98,111,111,116,115,116,114,97,112,46,109,105,110,46,99,115,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,103,101,116,85,114,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,103,101,116,85,114,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,48,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,37,50,51,50,56,97,55,52,53,37,50,55,32,100,61,37,50,55,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,37,50,51,50,56,97,55,52,53,37,50,55,32,100,61,37,50,55,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,52,37,50,55,32,104,101,105,103,104,116,61,37,50,55,53,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,52,32,53,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,37,50,51,51,52,51,97,52,48,37,50,55,32,100,61,37,50,55,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,52,37,50,55,32,104,101,105,103,104,116,61,37,50,55,53,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,52,32,53,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,37,50,51,51,52,51,97,52,48,37,50,55,32,100,61,37,50,55,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,50,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,50,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,50,37,50,55,32,102,105,108,108,61,37,50,55,110,111,110,101,37,50,55,32,115,116,114,111,107,101,61,37,50,55,37,50,51,100,99,51,53,52,53,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,49,50,32,49,50,37,50,55,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,37,50,55,54,37,50,55,32,99,121,61,37,50,55,54,37,50,55,32,114,61,37,50,55,52,46,53,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,45,108,105,110,101,106,111,105,110,61,37,50,55,114,111,117,110,100,37,50,55,32,100,61,37,50,55,77,53,46,56,32,51,46,54,104,46,52,76,54,32,54,46,53,122,37,50,55,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,37,50,55,54,37,50,55,32,99,121,61,37,50,55,56,46,50,37,50,55,32,114,61,37,50,55,46,54,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,100,99,51,53,52,53,37,50,55,32,115,116,114,111,107,101,61,37,50,55,110,111,110,101,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,50,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,50,37,50,55,32,102,105,108,108,61,37,50,55,110,111,110,101,37,50,55,32,115,116,114,111,107,101,61,37,50,55,37,50,51,100,99,51,53,52,53,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,49,50,32,49,50,37,50,55,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,37,50,55,54,37,50,55,32,99,121,61,37,50,55,54,37,50,55,32,114,61,37,50,55,52,46,53,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,45,108,105,110,101,106,111,105,110,61,37,50,55,114,111,117,110,100,37,50,55,32,100,61,37,50,55,77,53,46,56,32,51,46,54,104,46,52,76,54,32,54,46,53,122,37,50,55,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,37,50,55,54,37,50,55,32,99,121,61,37,50,55,56,46,50,37,50,55,32,114,61,37,50,55,46,54,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,100,99,51,53,52,53,37,50,55,32,115,116,114,111,107,101,61,37,50,55,110,111,110,101,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,51,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,32,100,61,37,50,55,77,54,46,53,54,52,46,55,53,108,45,51,46,53,57,32,51,46,54,49,50,45,49,46,53,51,56,45,49,46,53,53,76,48,32,52,46,50,54,108,50,46,57,55,52,32,50,46,57,57,76,56,32,50,46,49,57,51,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,32,100,61,37,50,55,77,54,46,53,54,52,46,55,53,108,45,51,46,53,57,32,51,46,54,49,50,45,49,46,53,51,56,45,49,46,53,53,76,48,32,52,46,50,54,108,50,46,57,55,52,32,50,46,57,57,76,56,32,50,46,49,57,51,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,52,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,52,37,50,55,32,104,101,105,103,104,116,61,37,50,55,52,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,52,32,52,37,50,55,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,37,50,55,37,50,51,102,102,102,37,50,55,32,100,61,37,50,55,77,48,32,50,104,52,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,52,37,50,55,32,104,101,105,103,104,116,61,37,50,55,52,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,52,32,52,37,50,55,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,37,50,55,37,50,51,102,102,102,37,50,55,32,100,61,37,50,55,77,48,32,50,104,52,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,53,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,50,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,50,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,45,52,32,45,52,32,56,32,56,37,50,55,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,37,50,55,51,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,50,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,50,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,45,52,32,45,52,32,56,32,56,37,50,55,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,37,50,55,51,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,54,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,51,48,37,50,55,32,104,101,105,103,104,116,61,37,50,55,51,48,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,51,48,32,51,48,37,50,55,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,37,50,55,114,103,98,97,37,50,56,48,44,32,48,44,32,48,44,32,48,46,53,37,50,57,37,50,55,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,37,50,55,114,111,117,110,100,37,50,55,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,37,50,55,49,48,37,50,55,32,115,116,114,111,107,101,45,119,105,100,116,104,61,37,50,55,50,37,50,55,32,100,61,37,50,55,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,51,48,37,50,55,32,104,101,105,103,104,116,61,37,50,55,51,48,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,51,48,32,51,48,37,50,55,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,37,50,55,114,103,98,97,37,50,56,48,44,32,48,44,32,48,44,32,48,46,53,37,50,57,37,50,55,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,37,50,55,114,111,117,110,100,37,50,55,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,37,50,55,49,48,37,50,55,32,115,116,114,111,107,101,45,119,105,100,116,104,61,37,50,55,50,37,50,55,32,100,61,37,50,55,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,55,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,51,48,37,50,55,32,104,101,105,103,104,116,61,37,50,55,51,48,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,51,48,32,51,48,37,50,55,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,37,50,55,114,103,98,97,37,50,56,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,37,50,57,37,50,55,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,37,50,55,114,111,117,110,100,37,50,55,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,37,50,55,49,48,37,50,55,32,115,116,114,111,107,101,45,119,105,100,116,104,61,37,50,55,50,37,50,55,32,100,61,37,50,55,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,51,48,37,50,55,32,104,101,105,103,104,116,61,37,50,55,51,48,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,51,48,32,51,48,37,50,55,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,37,50,55,114,103,98,97,37,50,56,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,37,50,57,37,50,55,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,37,50,55,114,111,117,110,100,37,50,55,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,37,50,55,49,48,37,50,55,32,115,116,114,111,107,101,45,119,105,100,116,104,61,37,50,55,50,37,50,55,32,100,61,37,50,55,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,56,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,100,61,37,50,55,77,53,46,50,53,32,48,108,45,52,32,52,32,52,32,52,32,49,46,53,45,49,46,53,76,52,46,50,53,32,52,108,50,46,53,45,50,46,53,76,53,46,50,53,32,48,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,100,61,37,50,55,77,53,46,50,53,32,48,108,45,52,32,52,32,52,32,52,32,49,46,53,45,49,46,53,76,52,46,50,53,32,52,108,50,46,53,45,50,46,53,76,53,46,50,53,32,48,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,57,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,100,61,37,50,55,77,50,46,55,53,32,48,108,45,49,46,53,32,49,46,53,76,51,46,55,53,32,52,108,45,50,46,53,32,50,46,53,76,50,46,55,53,32,56,108,52,45,52,45,52,45,52,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,100,61,37,50,55,77,50,46,55,53,32,48,108,45,49,46,53,32,49,46,53,76,51,46,55,53,32,52,108,45,50,46,53,32,50,46,53,76,50,46,55,53,32,56,108,52,45,52,45,52,45,52,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,48,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,48,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,50,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,51,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,51,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,52,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,52,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,53,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,53,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,54,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,54,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,55,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,55,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,56,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,56,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,57,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,57,95,95,95,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,47,42,33,92,92,110,32,42,32,66,111,111,116,115,116,114,97,112,32,118,52,46,54,46,48,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,92,92,110,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,50,49,32,84,104,101,32,66,111,111,116,115,116,114,97,112,32,65,117,116,104,111,114,115,92,92,110,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,50,49,32,84,119,105,116,116,101,114,44,32,73,110,99,46,92,92,110,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,105,110,47,76,73,67,69,78,83,69,41,92,92,110,32,42,47,58,114,111,111,116,123,45,45,98,108,117,101,58,35,48,48,55,98,102,102,59,45,45,105,110,100,105,103,111,58,35,54,54,49,48,102,50,59,45,45,112,117,114,112,108,101,58,35,54,102,52,50,99,49,59,45,45,112,105,110,107,58,35,101,56,51,101,56,99,59,45,45,114,101,100,58,35,100,99,51,53,52,53,59,45,45,111,114,97,110,103,101,58,35,102,100,55,101,49,52,59,45,45,121,101,108,108,111,119,58,35,102,102,99,49,48,55,59,45,45,103,114,101,101,110,58,35,50,56,97,55,52,53,59,45,45,116,101,97,108,58,35,50,48,99,57,57,55,59,45,45,99,121,97,110,58,35,49,55,97,50,98,56,59,45,45,119,104,105,116,101,58,35,102,102,102,59,45,45,103,114,97,121,58,35,54,99,55,53,55,100,59,45,45,103,114,97,121,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,112,114,105,109,97,114,121,58,35,48,48,55,98,102,102,59,45,45,115,101,99,111,110,100,97,114,121,58,35,54,99,55,53,55,100,59,45,45,115,117,99,99,101,115,115,58,35,50,56,97,55,52,53,59,45,45,105,110,102,111,58,35,49,55,97,50,98,56,59,45,45,119,97,114,110,105,110,103,58,35,102,102,99,49,48,55,59,45,45,100,97,110,103,101,114,58,35,100,99,51,53,52,53,59,45,45,108,105,103,104,116,58,35,102,56,102,57,102,97,59,45,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,115,58,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,115,109,58,53,55,54,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,109,100,58,55,54,56,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,108,103,58,57,57,50,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,108,58,49,50,48,48,112,120,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,115,97,110,115,45,115,101,114,105,102,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,92,92,92,34,83,101,103,111,101,32,85,73,92,92,92,34,44,82,111,98,111,116,111,44,92,92,92,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,92,92,92,34,44,65,114,105,97,108,44,92,92,92,34,78,111,116,111,32,83,97,110,115,92,92,92,34,44,92,92,92,34,76,105,98,101,114,97,116,105,111,110,32,83,97,110,115,92,92,92,34,44,115,97,110,115,45,115,101,114,105,102,44,92,92,92,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,92,92,92,34,44,92,92,92,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,92,92,92,34,44,92,92,92,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,92,92,92,34,44,92,92,92,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,92,92,92,34,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,109,111,110,111,115,112,97,99,101,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,92,92,92,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,92,92,92,34,44,92,92,92,34,67,111,117,114,105,101,114,32,78,101,119,92,92,92,34,44,109,111,110,111,115,112,97,99,101,125,42,44,58,58,97,102,116,101,114,44,58,58,98,101,102,111,114,101,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,104,116,109,108,123,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,49,53,59,45,119,101,98,107,105,116,45,116,101,120,116,45,115,105,122,101,45,97,100,106,117,115,116,58,49,48,48,37,59,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,114,116,105,99,108,101,44,97,115,105,100,101,44,102,105,103,99,97,112,116,105,111,110,44,102,105,103,117,114,101,44,102,111,111,116,101,114,44,104,101,97,100,101,114,44,104,103,114,111,117,112,44,109,97,105,110,44,110,97,118,44,115,101,99,116,105,111,110,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,98,111,100,121,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,92,92,92,34,83,101,103,111,101,32,85,73,92,92,92,34,44,82,111,98,111,116,111,44,92,92,92,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,92,92,92,34,44,65,114,105,97,108,44,92,92,92,34,78,111,116,111,32,83,97,110,115,92,92,92,34,44,92,92,92,34,76,105,98,101,114,97,116,105,111,110,32,83,97,110,115,92,92,92,34,44,115,97,110,115,45,115,101,114,105,102,44,92,92,92,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,92,92,92,34,44,92,92,92,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,92,92,92,34,44,92,92,92,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,92,92,92,34,44,92,92,92,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,92,92,92,34,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,91,116,97,98,105,110,100,101,120,61,92,92,92,34,45,49,92,92,92,34,93,58,102,111,99,117,115,58,110,111,116,40,58,102,111,99,117,115,45,118,105,115,105,98,108,101,41,123,111,117,116,108,105,110,101,58,48,33,105,109,112,111,114,116,97,110,116,125,104,114,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,112,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,97,98,98,114,91,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,93,44,97,98,98,114,91,116,105,116,108,101,93,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,99,117,114,115,111,114,58,104,101,108,112,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,125,97,100,100,114,101,115,115,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,100,108,44,111,108,44,117,108,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,111,108,32,111,108,44,111,108,32,117,108,44,117,108,32,111,108,44,117,108,32,117,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,100,116,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,100,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,98,44,115,116,114,111,110,103,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,125,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,125,115,117,98,44,115,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,115,117,98,123,98,111,116,116,111,109,58,45,46,50,53,101,109,125,115,117,112,123,116,111,112,58,45,46,53,101,109,125,97,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,99,108,97,115,115,93,41,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,99,108,97,115,115,93,41,58,104,111,118,101,114,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,99,111,100,101,44,107,98,100,44,112,114,101,44,115,97,109,112,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,92,92,92,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,92,92,92,34,44,92,92,92,34,67,111,117,114,105,101,114,32,78,101,119,92,92,92,34,44,109,111,110,111,115,112,97,99,101,59,102,111,110,116,45,115,105,122,101,58,49,101,109,125,112,114,101,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,111,118,101,114,102,108,111,119,58,97,117,116,111,59,45,109,115,45,111,118,101,114,102,108,111,119,45,115,116,121,108,101,58,115,99,114,111,108,108,98,97,114,125,102,105,103,117,114,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,105,109,103,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,115,118,103,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,125,99,97,112,116,105,111,110,123,112,97,100,100,105,110,103,45,116,111,112,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,99,97,112,116,105,111,110,45,115,105,100,101,58,98,111,116,116,111,109,125,116,104,123,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,59,116,101,120,116,45,97,108,105,103,110,58,45,119,101,98,107,105,116,45,109,97,116,99,104,45,112,97,114,101,110,116,125,108,97,98,101,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,98,117,116,116,111,110,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,98,117,116,116,111,110,58,102,111,99,117,115,58,110,111,116,40,58,102,111,99,117,115,45,118,105,115,105,98,108,101,41,123,111,117,116,108,105,110,101,58,48,125,98,117,116,116,111,110,44,105,110,112,117,116,44,111,112,116,103,114,111,117,112,44,115,101,108,101,99,116,44,116,101,120,116,97,114,101,97,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,105,110,104,101,114,105,116,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,98,117,116,116,111,110,44,105,110,112,117,116,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,98,117,116,116,111,110,44,115,101,108,101,99,116,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,91,114,111,108,101,61,98,117,116,116,111,110,93,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,115,101,108,101,99,116,123,119,111,114,100,45,119,114,97,112,58,110,111,114,109,97,108,125,91,116,121,112,101,61,98,117,116,116,111,110,93,44,91,116,121,112,101,61,114,101,115,101,116,93,44,91,116,121,112,101,61,115,117,98,109,105,116,93,44,98,117,116,116,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,114,101,115,101,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,98,117,116,116,111,110,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,114,101,115,101,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,98,117,116,116,111,110,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,123,112,97,100,100,105,110,103,58,48,59,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,112,97,100,100,105,110,103,58,48,125,116,101,120,116,97,114,101,97,123,111,118,101,114,102,108,111,119,58,97,117,116,111,59,114,101,115,105,122,101,58,118,101,114,116,105,99,97,108,125,102,105,101,108,100,115,101,116,123,109,105,110,45,119,105,100,116,104,58,48,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,58,48,59,98,111,114,100,101,114,58,48,125,108,101,103,101,110,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,112,114,111,103,114,101,115,115,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,105,110,110,101,114,45,115,112,105,110,45,98,117,116,116,111,110,44,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,111,117,116,101,114,45,115,112,105,110,45,98,117,116,116,111,110,123,104,101,105,103,104,116,58,97,117,116,111,125,91,116,121,112,101,61,115,101,97,114,99,104,93,123,111,117,116,108,105,110,101,45,111,102,102,115,101,116,58,45,50,112,120,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,91,116,121,112,101,61,115,101,97,114,99,104,93,58,58,45,119,101,98,107,105,116,45,115,101,97,114,99,104,45,100,101,99,111,114,97,116,105,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,58,58,45,119,101,98,107,105,116,45,102,105,108,101,45,117,112,108,111,97,100,45,98,117,116,116,111,110,123,102,111,110,116,58,105,110,104,101,114,105,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,111,117,116,112,117,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,115,117,109,109,97,114,121,123,100,105,115,112,108,97,121,58,108,105,115,116,45,105,116,101,109,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,116,101,109,112,108,97,116,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,91,104,105,100,100,101,110,93,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,104,49,44,46,104,50,44,46,104,51,44,46,104,52,44,46,104,53,44,46,104,54,44,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,53,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,104,49,44,104,49,123,102,111,110,116,45,115,105,122,101,58,50,46,53,114,101,109,125,46,104,50,44,104,50,123,102,111,110,116,45,115,105,122,101,58,50,114,101,109,125,46,104,51,44,104,51,123,102,111,110,116,45,115,105,122,101,58,49,46,55,53,114,101,109,125,46,104,52,44,104,52,123,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,125,46,104,53,44,104,53,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,104,54,44,104,54,123,102,111,110,116,45,115,105,122,101,58,49,114,101,109,125,46,108,101,97,100,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,125,46,100,105,115,112,108,97,121,45,49,123,102,111,110,116,45,115,105,122,101,58,54,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,50,123,102,111,110,116,45,115,105,122,101,58,53,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,51,123,102,111,110,116,45,115,105,122,101,58,52,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,52,123,102,111,110,116,45,115,105,122,101,58,51,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,104,114,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,115,109,97,108,108,44,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,125,46,109,97,114,107,44,109,97,114,107,123,112,97,100,100,105,110,103,58,46,50,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,99,102,56,101,51,125,46,108,105,115,116,45,117,110,115,116,121,108,101,100,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,108,105,115,116,45,105,110,108,105,110,101,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,105,110,105,116,105,97,108,105,115,109,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,125,46,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,92,50,48,49,52,92,92,92,92,48,48,65,48,92,92,92,34,125,46,105,109,103,45,102,108,117,105,100,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,97,117,116,111,125,46,105,109,103,45,116,104,117,109,98,110,97,105,108,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,97,117,116,111,125,46,102,105,103,117,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,105,103,117,114,101,45,105,109,103,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,125,46,102,105,103,117,114,101,45,99,97,112,116,105,111,110,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,101,56,51,101,56,99,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,125,97,62,99,111,100,101,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,107,98,100,123,112,97,100,100,105,110,103,58,46,50,114,101,109,32,46,52,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,107,98,100,32,107,98,100,123,112,97,100,100,105,110,103,58,48,59,102,111,110,116,45,115,105,122,101,58,49,48,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,112,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,112,114,101,32,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,125,46,112,114,101,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,51,52,48,112,120,59,111,118,101,114,102,108,111,119,45,121,58,115,99,114,111,108,108,125,46,99,111,110,116,97,105,110,101,114,44,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,99,111,110,116,97,105,110,101,114,45,120,108,123,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,59,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,110,116,97,105,110,101,114,44,46,99,111,110,116,97,105,110,101,114,45,115,109,123,109,97,120,45,119,105,100,116,104,58,53,52,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,110,116,97,105,110,101,114,44,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,99,111,110,116,97,105,110,101,114,45,115,109,123,109,97,120,45,119,105,100,116,104,58,55,50,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,110,116,97,105,110,101,114,44,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,99,111,110,116,97,105,110,101,114,45,115,109,123,109,97,120,45,119,105,100,116,104,58,57,54,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,110,116,97,105,110,101,114,44,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,99,111,110,116,97,105,110,101,114,45,120,108,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,114,111,119,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,110,111,45,103,117,116,116,101,114,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,110,111,45,103,117,116,116,101,114,115,62,46,99,111,108,44,46,110,111,45,103,117,116,116,101,114,115,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,99,111,108,44,46,99,111,108,45,49,44,46,99,111,108,45,49,48,44,46,99,111,108,45,49,49,44,46,99,111,108,45,49,50,44,46,99,111,108,45,50,44,46,99,111,108,45,51,44,46,99,111,108,45,52,44,46,99,111,108,45,53,44,46,99,111,108,45,54,44,46,99,111,108,45,55,44,46,99,111,108,45,56,44,46,99,111,108,45,57,44,46,99,111,108,45,97,117,116,111,44,46,99,111,108,45,108,103,44,46,99,111,108,45,108,103,45,49,44,46,99,111,108,45,108,103,45,49,48,44,46,99,111,108,45,108,103,45,49,49,44,46,99,111,108,45,108,103,45,49,50,44,46,99,111,108,45,108,103,45,50,44,46,99,111,108,45,108,103,45,51,44,46,99,111,108,45,108,103,45,52,44,46,99,111,108,45,108,103,45,53,44,46,99,111,108,45,108,103,45,54,44,46,99,111,108,45,108,103,45,55,44,46,99,111,108,45,108,103,45,56,44,46,99,111,108,45,108,103,45,57,44,46,99,111,108,45,108,103,45,97,117,116,111,44,46,99,111,108,45,109,100,44,46,99,111,108,45,109,100,45,49,44,46,99,111,108,45,109,100,45,49,48,44,46,99,111,108,45,109,100,45,49,49,44,46,99,111,108,45,109,100,45,49,50,44,46,99,111,108,45,109,100,45,50,44,46,99,111,108,45,109,100,45,51,44,46,99,111,108,45,109,100,45,52,44,46,99,111,108,45,109,100,45,53,44,46,99,111,108,45,109,100,45,54,44,46,99,111,108,45,109,100,45,55,44,46,99,111,108,45,109,100,45,56,44,46,99,111,108,45,109,100,45,57,44,46,99,111,108,45,109,100,45,97,117,116,111,44,46,99,111,108,45,115,109,44,46,99,111,108,45,115,109,45,49,44,46,99,111,108,45,115,109,45,49,48,44,46,99,111,108,45,115,109,45,49,49,44,46,99,111,108,45,115,109,45,49,50,44,46,99,111,108,45,115,109,45,50,44,46,99,111,108,45,115,109,45,51,44,46,99,111,108,45,115,109,45,52,44,46,99,111,108,45,115,109,45,53,44,46,99,111,108,45,115,109,45,54,44,46,99,111,108,45,115,109,45,55,44,46,99,111,108,45,115,109,45,56,44,46,99,111,108,45,115,109,45,57,44,46,99,111,108,45,115,109,45,97,117,116,111,44,46,99,111,108,45,120,108,44,46,99,111,108,45,120,108,45,49,44,46,99,111,108,45,120,108,45,49,48,44,46,99,111,108,45,120,108,45,49,49,44,46,99,111,108,45,120,108,45,49,50,44,46,99,111,108,45,120,108,45,50,44,46,99,111,108,45,120,108,45,51,44,46,99,111,108,45,120,108,45,52,44,46,99,111,108,45,120,108,45,53,44,46,99,111,108,45,120,108,45,54,44,46,99,111,108,45,120,108,45,55,44,46,99,111,108,45,120,108,45,56,44,46,99,111,108,45,120,108,45,57,44,46,99,111,108,45,120,108,45,97,117,116,111,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,125,46,99,111,108,123,102,108,101,120,45,98,97,115,105,115,58,48,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,49,62,42,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,50,62,42,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,114,111,119,45,99,111,108,115,45,51,62,42,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,114,111,119,45,99,111,108,115,45,52,62,42,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,114,111,119,45,99,111,108,115,45,53,62,42,123,102,108,101,120,58,48,32,48,32,50,48,37,59,109,97,120,45,119,105,100,116,104,58,50,48,37,125,46,114,111,119,45,99,111,108,115,45,54,62,42,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,97,117,116,111,123,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,49,123,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,50,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,51,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,52,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,53,123,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,54,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,55,123,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,56,123,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,57,123,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,49,48,123,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,49,49,123,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,49,50,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,102,105,114,115,116,123,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,97,115,116,123,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,48,123,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,49,123,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,50,123,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,51,123,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,52,123,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,53,123,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,54,123,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,55,123,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,56,123,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,57,123,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,49,48,123,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,49,49,123,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,49,50,123,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,108,45,115,109,123,102,108,101,120,45,98,97,115,105,115,58,48,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,115,109,45,49,62,42,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,115,109,45,50,62,42,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,114,111,119,45,99,111,108,115,45,115,109,45,51,62,42,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,114,111,119,45,99,111,108,115,45,115,109,45,52,62,42,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,114,111,119,45,99,111,108,115,45,115,109,45,53,62,42,123,102,108,101,120,58,48,32,48,32,50,48,37,59,109,97,120,45,119,105,100,116,104,58,50,48,37,125,46,114,111,119,45,99,111,108,115,45,115,109,45,54,62,42,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,97,117,116,111,123,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,115,109,45,49,123,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,50,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,51,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,115,109,45,52,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,53,123,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,54,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,115,109,45,55,123,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,56,123,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,57,123,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,115,109,45,49,48,123,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,49,49,123,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,49,50,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,115,109,45,102,105,114,115,116,123,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,115,109,45,108,97,115,116,123,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,115,109,45,48,123,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,115,109,45,49,123,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,115,109,45,50,123,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,115,109,45,51,123,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,115,109,45,52,123,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,115,109,45,53,123,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,115,109,45,54,123,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,115,109,45,55,123,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,115,109,45,56,123,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,115,109,45,57,123,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,115,109,45,49,48,123,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,115,109,45,49,49,123,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,115,109,45,49,50,123,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,115,109,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,115,109,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,108,45,109,100,123,102,108,101,120,45,98,97,115,105,115,58,48,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,109,100,45,49,62,42,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,109,100,45,50,62,42,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,114,111,119,45,99,111,108,115,45,109,100,45,51,62,42,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,114,111,119,45,99,111,108,115,45,109,100,45,52,62,42,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,114,111,119,45,99,111,108,115,45,109,100,45,53,62,42,123,102,108,101,120,58,48,32,48,32,50,48,37,59,109,97,120,45,119,105,100,116,104,58,50,48,37,125,46,114,111,119,45,99,111,108,115,45,109,100,45,54,62,42,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,97,117,116,111,123,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,109,100,45,49,123,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,50,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,51,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,109,100,45,52,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,53,123,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,54,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,109,100,45,55,123,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,56,123,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,57,123,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,109,100,45,49,48,123,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,49,49,123,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,49,50,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,109,100,45,102,105,114,115,116,123,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,109,100,45,108,97,115,116,123,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,109,100,45,48,123,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,109,100,45,49,123,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,109,100,45,50,123,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,109,100,45,51,123,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,109,100,45,52,123,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,109,100,45,53,123,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,109,100,45,54,123,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,109,100,45,55,123,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,109,100,45,56,123,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,109,100,45,57,123,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,109,100,45,49,48,123,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,109,100,45,49,49,123,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,109,100,45,49,50,123,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,109,100,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,109,100,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,108,45,108,103,123,102,108,101,120,45,98,97,115,105,115,58,48,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,108,103,45,49,62,42,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,108,103,45,50,62,42,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,114,111,119,45,99,111,108,115,45,108,103,45,51,62,42,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,114,111,119,45,99,111,108,115,45,108,103,45,52,62,42,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,114,111,119,45,99,111,108,115,45,108,103,45,53,62,42,123,102,108,101,120,58,48,32,48,32,50,48,37,59,109,97,120,45,119,105,100,116,104,58,50,48,37,125,46,114,111,119,45,99,111,108,115,45,108,103,45,54,62,42,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,97,117,116,111,123,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,108,103,45,49,123,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,50,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,51,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,108,103,45,52,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,53,123,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,54,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,108,103,45,55,123,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,56,123,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,57,123,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,108,103,45,49,48,123,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,49,49,123,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,49,50,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,108,103,45,102,105,114,115,116,123,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,103,45,108,97,115,116,123,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,108,103,45,48,123,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,108,103,45,49,123,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,108,103,45,50,123,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,108,103,45,51,123,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,108,103,45,52,123,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,108,103,45,53,123,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,108,103,45,54,123,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,108,103,45,55,123,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,108,103,45,56,123,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,108,103,45,57,123,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,108,103,45,49,48,123,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,108,103,45,49,49,123,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,108,103,45,49,50,123,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,108,103,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,108,103,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,108,45,120,108,123,102,108,101,120,45,98,97,115,105,115,58,48,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,120,108,45,49,62,42,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,120,108,45,50,62,42,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,114,111,119,45,99,111,108,115,45,120,108,45,51,62,42,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,114,111,119,45,99,111,108,115,45,120,108,45,52,62,42,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,114,111,119,45,99,111,108,115,45,120,108,45,53,62,42,123,102,108,101,120,58,48,32,48,32,50,48,37,59,109,97,120,45,119,105,100,116,104,58,50,48,37,125,46,114,111,119,45,99,111,108,115,45,120,108,45,54,62,42,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,97,117,116,111,123,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,120,108,45,49,123,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,50,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,51,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,120,108,45,52,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,53,123,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,54,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,120,108,45,55,123,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,56,123,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,57,123,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,120,108,45,49,48,123,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,49,49,123,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,49,50,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,120,108,45,102,105,114,115,116,123,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,120,108,45,108,97,115,116,123,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,120,108,45,48,123,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,120,108,45,49,123,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,120,108,45,50,123,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,120,108,45,51,123,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,120,108,45,52,123,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,120,108,45,53,123,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,120,108,45,54,123,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,120,108,45,55,123,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,120,108,45,56,123,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,120,108,45,57,123,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,120,108,45,49,48,123,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,120,108,45,49,49,123,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,120,108,45,49,50,123,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,120,108,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,120,108,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,46,116,97,98,108,101,123,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,104,101,97,100,32,116,104,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,98,111,100,121,43,116,98,111,100,121,123,98,111,114,100,101,114,45,116,111,112,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,115,109,32,116,100,44,46,116,97,98,108,101,45,115,109,32,116,104,123,112,97,100,100,105,110,103,58,46,51,114,101,109,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,58,50,112,120,125,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,97,98,97,102,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,98,55,98,98,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,102,100,49,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,116,97,98,108,101,45,105,110,102,111,44,46,116,97,98,108,101,45,105,110,102,111,62,116,100,44,46,116,97,98,108,101,45,105,110,102,111,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,116,97,98,108,101,45,105,110,102,111,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,105,110,102,111,32,116,100,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,54,99,102,100,97,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,100,102,55,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,116,97,98,108,101,45,100,97,110,103,101,114,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,100,57,54,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,116,97,98,108,101,45,108,105,103,104,116,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,116,97,98,108,101,45,108,105,103,104,116,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,98,102,99,102,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,116,97,98,108,101,45,100,97,114,107,44,46,116,97,98,108,101,45,100,97,114,107,62,116,100,44,46,116,97,98,108,101,45,100,97,114,107,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,57,53,57,57,57,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,116,97,98,108,101,45,97,99,116,105,118,101,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,100,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,108,105,103,104,116,32,116,104,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,53,41,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,55,53,41,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,111,114,109,45,99,111,110,116,114,111,108,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,115,45,101,120,112,97,110,100,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,45,109,111,122,45,102,111,99,117,115,114,105,110,103,123,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,48,32,48,32,35,52,57,53,48,53,55,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,111,122,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,100,105,115,97,98,108,101,100,44,46,102,111,114,109,45,99,111,110,116,114,111,108,91,114,101,97,100,111,110,108,121,93,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,111,112,97,99,105,116,121,58,49,125,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,93,46,102,111,114,109,45,99,111,110,116,114,111,108,44,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,116,105,109,101,45,108,111,99,97,108,93,46,102,111,114,109,45,99,111,110,116,114,111,108,44,105,110,112,117,116,91,116,121,112,101,61,109,111,110,116,104,93,46,102,111,114,109,45,99,111,110,116,114,111,108,44,105,110,112,117,116,91,116,121,112,101,61,116,105,109,101,93,46,102,111,114,109,45,99,111,110,116,114,111,108,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,114,97,110,103,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,108,103,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,115,109,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,49,112,120,32,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,109,117,108,116,105,112,108,101,93,44,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,115,105,122,101,93,123,104,101,105,103,104,116,58,97,117,116,111,125,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,123,104,101,105,103,104,116,58,97,117,116,111,125,46,102,111,114,109,45,103,114,111,117,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,46,102,111,114,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,125,46,102,111,114,109,45,114,111,119,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,53,112,120,125,46,102,111,114,109,45,114,111,119,62,46,99,111,108,44,46,102,111,114,109,45,114,111,119,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,53,112,120,125,46,102,111,114,109,45,99,104,101,99,107,123,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,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,109,97,114,103,105,110,45,116,111,112,58,46,51,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,91,100,105,115,97,98,108,101,100,93,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,55,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,114,111,119,62,46,99,111,108,62,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,102,111,114,109,45,114,111,119,62,91,99,108,97,115,115,42,61,99,111,108,45,93,62,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,108,101,102,116,58,53,112,120,125,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,48,95,95,95,32,43,32,92,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,46,55,53,101,109,32,43,32,50,46,51,49,50,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,95,95,95,32,43,32,92,34,41,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,32,110,111,45,114,101,112,101,97,116,44,35,102,102,102,32,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,48,95,95,95,32,43,32,92,34,41,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,110,111,45,114,101,112,101,97,116,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,99,101,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,99,101,53,55,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,114,111,119,62,46,99,111,108,62,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,102,111,114,109,45,114,111,119,62,91,99,108,97,115,115,42,61,99,111,108,45,93,62,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,108,101,102,116,58,53,112,120,125,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,95,95,95,32,43,32,92,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,46,55,53,101,109,32,43,32,50,46,51,49,50,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,95,95,95,32,43,32,92,34,41,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,32,110,111,45,114,101,112,101,97,116,44,35,102,102,102,32,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,95,95,95,32,43,32,92,34,41,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,110,111,45,114,101,112,101,97,116,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,52,54,48,54,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,52,54,48,54,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,119,105,100,116,104,58,49,48,48,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,111,114,109,45,105,110,108,105,110,101,32,108,97,98,101,108,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,97,117,116,111,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,102,111,114,109,45,105,110,108,105,110,101,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,97,117,116,111,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,108,101,120,45,115,104,114,105,110,107,58,48,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,125,46,98,116,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,116,110,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,98,116,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,46,102,111,99,117,115,44,46,98,116,110,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,98,116,110,46,100,105,115,97,98,108,101,100,44,46,98,116,110,58,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,46,54,53,125,46,98,116,110,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,97,46,98,116,110,46,100,105,115,97,98,108,101,100,44,102,105,101,108,100,115,101,116,58,100,105,115,97,98,108,101,100,32,97,46,98,116,110,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,57,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,46,98,116,110,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,57,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,54,50,99,99,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,53,99,98,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,97,54,50,54,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,97,54,50,54,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,53,52,53,98,54,50,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,51,48,44,49,51,56,44,49,52,53,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,101,53,53,53,98,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,51,48,44,49,51,56,44,49,52,53,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,56,56,51,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,46,98,116,110,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,56,56,51,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,101,55,101,51,52,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,99,55,52,51,48,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,51,56,52,57,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,46,98,116,110,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,102,111,99,117,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,51,56,52,57,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,49,55,97,56,98,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,48,55,48,55,102,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,48,97,56,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,48,97,56,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,57,101,48,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,57,53,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,50,51,51,51,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,46,98,116,110,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,102,111,99,117,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,50,51,51,51,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,100,50,49,51,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,50,49,102,50,100,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,54,101,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,46,98,116,110,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,102,111,99,117,115,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,54,101,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,97,101,48,101,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,49,54,44,50,49,55,44,50,49,57,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,100,57,100,102,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,49,54,44,50,49,55,44,50,49,57,44,46,53,41,125,46,98,116,110,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,51,50,55,50,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,46,98,116,110,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,102,111,99,117,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,51,50,55,50,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,100,50,49,50,52,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,49,97,49,100,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,116,110,45,108,105,110,107,46,102,111,99,117,115,44,46,98,116,110,45,108,105,110,107,58,102,111,99,117,115,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,116,110,45,108,105,110,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,110,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,44,46,98,116,110,45,108,103,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,44,46,98,116,110,45,115,109,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,116,110,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,98,108,111,99,107,43,46,98,116,110,45,98,108,111,99,107,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,105,110,112,117,116,91,116,121,112,101,61,98,117,116,116,111,110,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,114,101,115,101,116,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,115,117,98,109,105,116,93,46,98,116,110,45,98,108,111,99,107,123,119,105,100,116,104,58,49,48,48,37,125,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,108,105,110,101,97,114,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,97,100,101,58,110,111,116,40,46,115,104,111,119,41,123,111,112,97,99,105,116,121,58,48,125,46,99,111,108,108,97,112,115,101,58,110,111,116,40,46,115,104,111,119,41,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,108,97,112,115,105,110,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,104,101,105,103,104,116,32,46,51,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,111,108,108,97,112,115,105,110,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,100,114,111,112,100,111,119,110,44,46,100,114,111,112,108,101,102,116,44,46,100,114,111,112,114,105,103,104,116,44,46,100,114,111,112,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,48,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,109,105,110,45,119,105,100,116,104,58,49,48,114,101,109,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,48,59,109,97,114,103,105,110,58,46,49,50,53,114,101,109,32,48,32,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,97,117,116,111,59,98,111,116,116,111,109,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,49,50,53,114,101,109,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,59,98,111,114,100,101,114,45,116,111,112,58,48,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,49,48,48,37,59,108,101,102,116,58,97,117,116,111,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,123,114,105,103,104,116,58,97,117,116,111,59,98,111,116,116,111,109,58,97,117,116,111,125,46,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,123,104,101,105,103,104,116,58,48,59,109,97,114,103,105,110,58,46,53,114,101,109,32,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,101,57,101,99,101,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,108,101,97,114,58,98,111,116,104,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,102,111,99,117,115,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,54,49,56,49,98,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,97,99,116,105,118,101,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,97,100,98,53,98,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,46,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,98,116,110,45,103,114,111,117,112,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,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,105,110,108,105,110,101,45,102,108,101,120,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,108,101,120,58,49,32,49,32,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,104,111,118,101,114,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,102,111,99,117,115,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,49,125,46,98,116,110,45,116,111,111,108,98,97,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,98,116,110,45,116,111,111,108,98,97,114,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,54,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,54,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,44,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,44,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,98,101,102,111,114,101,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,115,109,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,51,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,51,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,108,103,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,123,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,105,110,112,117,116,45,103,114,111,117,112,123,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,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,59,119,105,100,116,104,58,49,48,48,37,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,119,105,100,116,104,58,49,37,59,109,105,110,45,119,105,100,116,104,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,52,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,58,110,111,116,40,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,41,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,58,110,111,116,40,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,41,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,58,110,111,116,40,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,41,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,116,104,45,108,97,115,116,45,99,104,105,108,100,40,110,43,51,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,116,104,45,108,97,115,116,45,99,104,105,108,100,40,110,43,51,41,44,46,105,110,112,117,116,45,103,114,111,117,112,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,116,104,45,108,97,115,116,45,99,104,105,108,100,40,110,43,51,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,100,105,115,112,108,97,121,58,102,108,101,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,55,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,116,104,45,108,97,115,116,45,99,104,105,108,100,40,110,43,51,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,116,104,45,108,97,115,116,45,99,104,105,108,100,40,110,43,51,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,58,110,111,116,40,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,58,110,111,116,40,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,49,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,105,110,45,104,101,105,103,104,116,58,49,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,59,45,119,101,98,107,105,116,45,112,114,105,110,116,45,99,111,108,111,114,45,97,100,106,117,115,116,58,101,120,97,99,116,59,99,111,108,111,114,45,97,100,106,117,115,116,58,101,120,97,99,116,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,45,49,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,46,50,53,114,101,109,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,91,100,105,115,97,98,108,101,100,93,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,91,100,105,115,97,98,108,101,100,93,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,46,50,53,114,101,109,59,108,101,102,116,58,45,49,46,53,114,101,109,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,35,97,100,98,53,98,100,32,115,111,108,105,100,32,49,112,120,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,46,50,53,114,101,109,59,108,101,102,116,58,45,49,46,53,114,101,109,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,59,98,97,99,107,103,114,111,117,110,100,58,53,48,37,47,53,48,37,32,53,48,37,32,110,111,45,114,101,112,101,97,116,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,51,95,95,95,32,43,32,92,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,52,95,95,95,32,43,32,92,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,53,95,95,95,32,43,32,92,34,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,108,101,102,116,58,45,50,46,50,53,114,101,109,59,119,105,100,116,104,58,49,46,55,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,50,112,120,41,59,108,101,102,116,58,99,97,108,99,40,45,50,46,50,53,114,101,109,32,43,32,50,112,120,41,59,119,105,100,116,104,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,104,101,105,103,104,116,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,49,46,55,53,114,101,109,32,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,98,97,99,107,103,114,111,117,110,100,58,35,102,102,102,32,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,95,95,95,32,43,32,92,34,41,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,32,110,111,45,114,101,112,101,97,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,109,117,108,116,105,112,108,101,93,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,115,105,122,101,93,58,110,111,116,40,91,115,105,122,101,61,92,92,92,34,49,92,92,92,34,93,41,123,104,101,105,103,104,116,58,97,117,116,111,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,58,45,109,115,45,101,120,112,97,110,100,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,45,109,111,122,45,102,111,99,117,115,114,105,110,103,123,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,48,32,48,32,35,52,57,53,48,53,55,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,123,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,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,109,97,114,103,105,110,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,91,100,105,115,97,98,108,101,100,93,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,108,97,110,103,40,101,110,41,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,92,92,92,34,66,114,111,119,115,101,92,92,92,34,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,91,100,97,116,97,45,98,114,111,119,115,101,93,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,98,114,111,119,115,101,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,51,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,99,111,110,116,101,110,116,58,92,92,92,34,66,114,111,119,115,101,92,92,92,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,108,101,102,116,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,46,50,53,114,101,109,32,46,50,53,114,101,109,32,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,46,52,114,101,109,59,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,102,111,99,117,115,45,111,117,116,101,114,123,98,111,114,100,101,114,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,59,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,45,109,111,122,45,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,45,109,111,122,45,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,59,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,45,109,115,45,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,45,109,115,45,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,59,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,108,111,119,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,117,112,112,101,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,115,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,110,97,118,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,110,97,118,45,116,97,98,115,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,57,101,99,101,102,32,35,101,57,101,99,101,102,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,46,115,104,111,119,32,46,110,97,118,45,108,105,110,107,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,32,35,100,101,101,50,101,54,32,35,102,102,102,125,46,110,97,118,45,116,97,98,115,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,45,112,105,108,108,115,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,110,97,118,45,102,105,108,108,32,46,110,97,118,45,105,116,101,109,44,46,110,97,118,45,102,105,108,108,62,46,110,97,118,45,108,105,110,107,123,102,108,101,120,58,49,32,49,32,97,117,116,111,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,110,97,118,45,106,117,115,116,105,102,105,101,100,32,46,110,97,118,45,105,116,101,109,44,46,110,97,118,45,106,117,115,116,105,102,105,101,100,62,46,110,97,118,45,108,105,110,107,123,102,108,101,120,45,98,97,115,105,115,58,48,59,102,108,101,120,45,103,114,111,119,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,116,97,98,45,112,97,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,110,97,118,98,97,114,123,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,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,98,97,114,32,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,32,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,32,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,32,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,32,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,32,46,99,111,110,116,97,105,110,101,114,45,120,108,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,125,46,110,97,118,98,97,114,45,98,114,97,110,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,51,49,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,102,108,111,97,116,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,102,108,101,120,45,98,97,115,105,115,58,49,48,48,37,59,102,108,101,120,45,103,114,111,119,58,49,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,46,53,101,109,59,104,101,105,103,104,116,58,49,46,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,59,98,97,99,107,103,114,111,117,110,100,58,53,48,37,47,49,48,48,37,32,49,48,48,37,32,110,111,45,114,101,112,101,97,116,125,46,110,97,118,98,97,114,45,110,97,118,45,115,99,114,111,108,108,123,109,97,120,45,104,101,105,103,104,116,58,55,53,118,104,59,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,123,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,45,115,99,114,111,108,108,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,123,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,45,115,99,114,111,108,108,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,123,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,45,115,99,114,111,108,108,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,123,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,45,115,99,114,111,108,108,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,123,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,45,115,99,114,111,108,108,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,55,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,51,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,54,95,95,95,32,43,32,92,34,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,55,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,50,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,55,95,95,95,32,43,32,92,34,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,99,97,114,100,123,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,102,108,101,120,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,109,105,110,45,119,105,100,116,104,58,48,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,98,111,114,100,101,114,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,62,104,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,123,98,111,114,100,101,114,45,116,111,112,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,105,110,104,101,114,105,116,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,48,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,62,46,99,97,114,100,45,104,101,97,100,101,114,43,46,108,105,115,116,45,103,114,111,117,112,44,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,43,46,99,97,114,100,45,102,111,111,116,101,114,123,98,111,114,100,101,114,45,116,111,112,58,48,125,46,99,97,114,100,45,98,111,100,121,123,102,108,101,120,58,49,32,49,32,97,117,116,111,59,109,105,110,45,104,101,105,103,104,116,58,49,112,120,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,99,97,114,100,45,115,117,98,116,105,116,108,101,123,109,97,114,103,105,110,45,116,111,112,58,45,46,51,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,116,101,120,116,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,97,114,100,45,108,105,110,107,43,46,99,97,114,100,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,104,101,97,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,48,32,48,125,46,99,97,114,100,45,102,111,111,116,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,102,111,111,116,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,48,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,104,101,97,100,101,114,45,116,97,98,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,54,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,55,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,54,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,104,101,97,100,101,114,45,112,105,108,108,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,54,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,54,50,53,114,101,109,125,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,44,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,44,46,99,97,114,100,45,105,109,103,45,116,111,112,123,102,108,101,120,45,115,104,114,105,110,107,58,48,59,119,105,100,116,104,58,49,48,48,37,125,46,99,97,114,100,45,105,109,103,44,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,44,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,100,101,99,107,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,102,108,101,120,58,49,32,48,32,48,37,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,112,120,125,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,102,108,101,120,58,49,32,48,32,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,43,46,99,97,114,100,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,99,111,108,117,109,110,115,123,45,109,111,122,45,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,45,109,111,122,45,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,111,114,112,104,97,110,115,58,49,59,119,105,100,111,119,115,58,49,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,125,46,97,99,99,111,114,100,105,111,110,123,111,118,101,114,102,108,111,119,45,97,110,99,104,111,114,58,110,111,110,101,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,111,102,45,116,121,112,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,111,102,45,116,121,112,101,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,62,46,99,97,114,100,45,104,101,97,100,101,114,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,98,114,101,97,100,99,114,117,109,98,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,58,98,101,102,111,114,101,123,102,108,111,97,116,58,108,101,102,116,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,99,111,110,116,101,110,116,58,92,92,92,34,47,92,92,92,34,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,112,97,103,105,110,97,116,105,111,110,123,100,105,115,112,108,97,121,58,102,108,101,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,108,105,110,107,123,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,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,53,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,46,97,99,116,105,118,101,32,46,112,97,103,101,45,108,105,110,107,123,122,45,105,110,100,101,120,58,51,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,112,97,103,101,45,105,116,101,109,46,100,105,115,97,98,108,101,100,32,46,112,97,103,101,45,108,105,110,107,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,97,100,103,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,101,109,32,46,52,101,109,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,97,100,103,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,97,46,98,97,100,103,101,58,102,111,99,117,115,44,97,46,98,97,100,103,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,97,100,103,101,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,116,110,32,46,98,97,100,103,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,111,112,58,45,49,112,120,125,46,98,97,100,103,101,45,112,105,108,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,54,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,54,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,48,114,101,109,125,46,98,97,100,103,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,97,100,103,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,97,46,98,97,100,103,101,45,105,110,102,111,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,97,100,103,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,97,100,103,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,97,46,98,97,100,103,101,45,108,105,103,104,116,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,97,100,103,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,97,46,98,97,100,103,101,45,100,97,114,107,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,50,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,52,114,101,109,32,50,114,101,109,125,125,46,106,117,109,98,111,116,114,111,110,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,108,101,114,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,97,108,101,114,116,45,104,101,97,100,105,110,103,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,52,114,101,109,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,32,46,99,108,111,115,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,122,45,105,110,100,101,120,58,50,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,99,101,53,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,48,50,55,53,50,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,51,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,50,48,50,51,50,54,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,52,101,100,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,98,50,101,49,51,125,46,97,108,101,114,116,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,49,101,99,102,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,97,108,101,114,116,45,105,110,102,111,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,97,108,101,114,116,45,105,110,102,111,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,54,50,99,51,51,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,51,99,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,53,51,51,102,48,51,125,46,97,108,101,114,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,100,55,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,52,57,49,50,49,55,125,46,97,108,101,114,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,101,102,101,102,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,97,108,101,114,116,45,108,105,103,104,116,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,97,108,101,114,116,45,108,105,103,104,116,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,54,56,54,56,54,56,125,46,97,108,101,114,116,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,97,108,101,114,116,45,100,97,114,107,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,97,108,101,114,116,45,100,97,114,107,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,52,48,53,48,53,125,64,107,101,121,102,114,97,109,101,115,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,123,102,114,111,109,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,114,101,109,32,48,125,116,111,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,125,46,112,114,111,103,114,101,115,115,123,100,105,115,112,108,97,121,58,102,108,101,120,59,104,101,105,103,104,116,58,49,114,101,109,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,102,111,110,116,45,115,105,122,101,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,114,111,103,114,101,115,115,45,98,97,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,114,97,110,115,105,116,105,111,110,58,119,105,100,116,104,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,53,48,37,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,53,48,37,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,55,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,116,114,97,110,115,112,97,114,101,110,116,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,114,101,109,32,49,114,101,109,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,97,110,105,109,97,116,105,111,110,58,49,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,109,101,100,105,97,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,125,46,109,101,100,105,97,45,98,111,100,121,123,102,108,101,120,58,49,125,46,108,105,115,116,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,123,119,105,100,116,104,58,49,48,48,37,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,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,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,105,110,104,101,114,105,116,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,105,110,104,101,114,105,116,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,59,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,49,112,120,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,49,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,49,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,49,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,49,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,49,112,120,125,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,48,32,49,112,120,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,52,48,56,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,56,51,100,52,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,53,53,55,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,99,53,52,54,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,53,54,52,48,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,50,49,99,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,49,56,49,56,50,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,98,49,101,50,49,125,46,99,108,111,115,101,123,102,108,111,97,116,58,114,105,103,104,116,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,48,32,35,102,102,102,59,111,112,97,99,105,116,121,58,46,53,125,46,99,108,111,115,101,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,102,111,99,117,115,44,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,104,111,118,101,114,123,111,112,97,99,105,116,121,58,46,55,53,125,98,117,116,116,111,110,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,97,46,99,108,111,115,101,46,100,105,115,97,98,108,101,100,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,116,111,97,115,116,123,102,108,101,120,45,98,97,115,105,115,58,51,53,48,112,120,59,109,97,120,45,119,105,100,116,104,58,51,53,48,112,120,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,46,50,53,114,101,109,32,46,55,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,111,112,97,99,105,116,121,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,116,111,97,115,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,116,111,97,115,116,46,115,104,111,119,105,110,103,123,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,104,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,111,97,115,116,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,116,111,97,115,116,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,125,46,109,111,100,97,108,45,111,112,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,111,112,101,110,32,46,109,111,100,97,108,123,111,118,101,114,102,108,111,119,45,120,58,104,105,100,100,101,110,59,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,53,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,97,117,116,111,59,109,97,114,103,105,110,58,46,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,48,44,45,53,48,112,120,41,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,109,111,100,97,108,46,115,104,111,119,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,109,111,100,97,108,46,109,111,100,97,108,45,115,116,97,116,105,99,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,46,48,50,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,100,105,115,112,108,97,121,58,102,108,101,120,59,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,102,111,111,116,101,114,44,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,104,101,97,100,101,114,123,102,108,101,120,45,115,104,114,105,110,107,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,98,111,100,121,123,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,104,101,105,103,104,116,58,45,109,111,122,45,109,105,110,45,99,111,110,116,101,110,116,59,104,101,105,103,104,116,58,109,105,110,45,99,111,110,116,101,110,116,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,104,101,105,103,104,116,58,49,48,48,37,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,110,111,110,101,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,110,111,110,101,125,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,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,102,108,101,120,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,119,105,100,116,104,58,49,48,48,37,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,52,48,59,119,105,100,116,104,58,49,48,48,118,119,59,104,101,105,103,104,116,58,49,48,48,118,104,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,102,97,100,101,123,111,112,97,99,105,116,121,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,53,125,46,109,111,100,97,108,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,59,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,125,46,109,111,100,97,108,45,104,101,97,100,101,114,32,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,58,45,49,114,101,109,32,45,49,114,101,109,32,45,49,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,109,111,100,97,108,45,98,111,100,121,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,112,97,100,100,105,110,103,58,49,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,125,46,109,111,100,97,108,45,102,111,111,116,101,114,62,42,123,109,97,114,103,105,110,58,46,50,53,114,101,109,125,46,109,111,100,97,108,45,115,99,114,111,108,108,98,97,114,45,109,101,97,115,117,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,57,57,57,57,112,120,59,119,105,100,116,104,58,53,48,112,120,59,104,101,105,103,104,116,58,53,48,112,120,59,111,118,101,114,102,108,111,119,58,115,99,114,111,108,108,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,111,100,97,108,45,100,105,97,108,111,103,123,109,97,120,45,119,105,100,116,104,58,53,48,48,112,120,59,109,97,114,103,105,110,58,49,46,55,53,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,58,98,101,102,111,114,101,123,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,59,104,101,105,103,104,116,58,45,109,111,122,45,109,105,110,45,99,111,110,116,101,110,116,59,104,101,105,103,104,116,58,109,105,110,45,99,111,110,116,101,110,116,125,46,109,111,100,97,108,45,115,109,123,109,97,120,45,119,105,100,116,104,58,51,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,111,100,97,108,45,108,103,44,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,56,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,48,55,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,92,92,92,34,83,101,103,111,101,32,85,73,92,92,92,34,44,82,111,98,111,116,111,44,92,92,92,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,92,92,92,34,44,65,114,105,97,108,44,92,92,92,34,78,111,116,111,32,83,97,110,115,92,92,92,34,44,92,92,92,34,76,105,98,101,114,97,116,105,111,110,32,83,97,110,115,92,92,92,34,44,115,97,110,115,45,115,101,114,105,102,44,92,92,92,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,92,92,92,34,44,92,92,92,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,92,92,92,34,44,92,92,92,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,92,92,92,34,44,92,92,92,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,92,92,92,34,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,111,112,97,99,105,116,121,58,48,125,46,116,111,111,108,116,105,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,57,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,46,56,114,101,109,59,104,101,105,103,104,116,58,46,52,114,101,109,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,123,98,111,116,116,111,109,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,123,108,101,102,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,123,116,111,112,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,123,114,105,103,104,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,48,48,48,125,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,109,97,120,45,119,105,100,116,104,58,50,48,48,112,120,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,111,112,111,118,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,54,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,120,45,119,105,100,116,104,58,50,55,54,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,92,92,92,34,83,101,103,111,101,32,85,73,92,92,92,34,44,82,111,98,111,116,111,44,92,92,92,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,92,92,92,34,44,65,114,105,97,108,44,92,92,92,34,78,111,116,111,32,83,97,110,115,92,92,92,34,44,92,92,92,34,76,105,98,101,114,97,116,105,111,110,32,83,97,110,115,92,92,92,34,44,115,97,110,115,45,115,101,114,105,102,44,92,92,92,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,92,92,92,34,44,92,92,92,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,92,92,92,34,44,92,92,92,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,92,92,92,34,44,92,92,92,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,92,92,92,34,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,46,53,114,101,109,59,109,97,114,103,105,110,58,48,32,46,51,114,101,109,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,123,98,111,116,116,111,109,58,99,97,108,99,40,45,46,53,114,101,109,32,45,32,49,112,120,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,116,116,111,109,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,123,108,101,102,116,58,99,97,108,99,40,45,46,53,114,101,109,32,45,32,49,112,120,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,108,101,102,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,123,116,111,112,58,99,97,108,99,40,45,46,53,114,101,109,32,45,32,49,112,120,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,116,111,112,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,53,48,37,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,102,55,102,55,102,55,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,123,114,105,103,104,116,58,99,97,108,99,40,45,46,53,114,101,109,32,45,32,49,112,120,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,114,105,103,104,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,102,102,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,55,102,55,102,55,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,101,98,101,98,101,98,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,112,111,112,111,118,101,114,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,99,97,114,111,117,115,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,99,97,114,111,117,115,101,108,46,112,111,105,110,116,101,114,45,101,118,101,110,116,123,116,111,117,99,104,45,97,99,116,105,111,110,58,112,97,110,45,121,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,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,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,48,48,37,59,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,41,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,41,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,45,112,114,111,112,101,114,116,121,58,111,112,97,99,105,116,121,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,49,59,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,122,45,105,110,100,101,120,58,48,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,48,115,32,46,54,115,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,49,59,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,49,53,37,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,104,111,118,101,114,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,111,117,116,108,105,110,101,58,48,59,111,112,97,99,105,116,121,58,46,57,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,108,101,102,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,123,114,105,103,104,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,48,112,120,59,104,101,105,103,104,116,58,50,48,112,120,59,98,97,99,107,103,114,111,117,110,100,58,53,48,37,47,49,48,48,37,32,49,48,48,37,32,110,111,45,114,101,112,101,97,116,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,56,95,95,95,32,43,32,92,34,41,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,57,95,95,95,32,43,32,92,34,41,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,53,59,100,105,115,112,108,97,121,58,102,108,101,120,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,37,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,37,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,102,108,101,120,58,48,32,49,32,97,117,116,111,59,119,105,100,116,104,58,51,48,112,120,59,104,101,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,51,112,120,59,116,101,120,116,45,105,110,100,101,110,116,58,45,57,57,57,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,116,111,112,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,46,97,99,116,105,118,101,123,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,99,97,112,116,105,111,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,53,37,59,98,111,116,116,111,109,58,50,48,112,120,59,108,101,102,116,58,49,53,37,59,122,45,105,110,100,101,120,58,49,48,59,112,97,100,100,105,110,103,45,116,111,112,58,50,48,112,120,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,50,48,112,120,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,116,111,123,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,125,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,111,114,100,101,114,58,46,50,53,101,109,32,115,111,108,105,100,32,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,97,110,105,109,97,116,105,111,110,58,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,32,115,112,105,110,110,101,114,45,98,111,114,100,101,114,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,50,101,109,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,103,114,111,119,123,48,37,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,125,53,48,37,123,111,112,97,99,105,116,121,58,49,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,125,46,115,112,105,110,110,101,114,45,103,114,111,119,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,111,112,97,99,105,116,121,58,48,59,97,110,105,109,97,116,105,111,110,58,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,32,115,112,105,110,110,101,114,45,103,114,111,119,125,46,115,112,105,110,110,101,114,45,103,114,111,119,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,44,46,115,112,105,110,110,101,114,45,103,114,111,119,123,97,110,105,109,97,116,105,111,110,45,100,117,114,97,116,105,111,110,58,49,46,53,115,125,125,46,97,108,105,103,110,45,98,97,115,101,108,105,110,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,109,105,100,100,108,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,112,114,105,109,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,101,99,111,110,100,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,117,99,99,101,115,115,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,105,110,102,111,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,103,45,105,110,102,111,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,97,114,110,105,110,103,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,110,103,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,108,105,103,104,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,114,107,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,103,45,100,97,114,107,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,104,105,116,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,116,114,97,110,115,112,97,114,101,110,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,123,98,111,114,100,101,114,45,114,105,103,104,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,123,98,111,114,100,101,114,45,108,101,102,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,48,123,98,111,114,100,101,114,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,45,48,123,98,111,114,100,101,114,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,45,48,123,98,111,114,100,101,114,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,45,48,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,45,48,123,98,111,114,100,101,114,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,112,114,105,109,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,101,99,111,110,100,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,117,99,99,101,115,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,105,110,102,111,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,97,114,110,105,110,103,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,110,103,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,105,103,104,116,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,114,107,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,104,105,116,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,115,109,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,114,105,103,104,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,101,102,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,103,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,99,105,114,99,108,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,112,105,108,108,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,48,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,33,105,109,112,111,114,116,97,110,116,125,46,99,108,101,97,114,102,105,120,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,125,46,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,45,115,109,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,102,108,101,120,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,45,109,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,45,108,103,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,102,108,101,120,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,45,120,108,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,102,108,101,120,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,112,114,105,110,116,123,46,100,45,112,114,105,110,116,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,102,108,101,120,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,123,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,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,105,116,101,109,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,101,109,98,101,100,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,105,102,114,97,109,101,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,111,98,106,101,99,116,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,118,105,100,101,111,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,98,111,114,100,101,114,58,48,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,50,49,98,121,57,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,52,50,46,56,53,55,49,52,51,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,54,98,121,57,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,53,54,46,50,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,52,98,121,51,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,55,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,98,121,49,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,49,48,48,37,125,46,102,108,101,120,45,114,111,119,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,114,111,119,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,110,111,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,45,114,101,118,101,114,115,101,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,102,105,108,108,123,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,48,123,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,49,123,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,48,123,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,49,123,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,101,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,97,114,116,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,101,110,100,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,123,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,101,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,97,117,116,111,123,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,97,114,116,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,101,110,100,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,99,101,110,116,101,114,123,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,101,120,45,115,109,45,114,111,119,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,114,111,119,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,110,111,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,45,114,101,118,101,114,115,101,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,102,105,108,108,123,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,48,123,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,49,123,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,48,123,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,49,123,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,97,114,116,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,101,110,100,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,99,101,110,116,101,114,123,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,97,117,116,111,123,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,97,114,116,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,101,110,100,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,99,101,110,116,101,114,123,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,101,120,45,109,100,45,114,111,119,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,114,111,119,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,110,111,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,45,114,101,118,101,114,115,101,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,102,105,108,108,123,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,48,123,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,49,123,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,48,123,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,49,123,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,97,114,116,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,101,110,100,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,99,101,110,116,101,114,123,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,97,117,116,111,123,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,97,114,116,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,101,110,100,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,99,101,110,116,101,114,123,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,101,120,45,108,103,45,114,111,119,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,114,111,119,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,110,111,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,45,114,101,118,101,114,115,101,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,102,105,108,108,123,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,48,123,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,49,123,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,48,123,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,49,123,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,97,114,116,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,101,110,100,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,99,101,110,116,101,114,123,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,97,117,116,111,123,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,97,114,116,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,101,110,100,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,99,101,110,116,101,114,123,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,101,120,45,120,108,45,114,111,119,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,114,111,119,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,110,111,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,45,114,101,118,101,114,115,101,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,102,105,108,108,123,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,48,123,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,49,123,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,48,123,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,49,123,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,97,114,116,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,101,110,100,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,99,101,110,116,101,114,123,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,97,117,116,111,123,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,97,114,116,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,101,110,100,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,99,101,110,116,101,114,123,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,46,102,108,111,97,116,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,111,97,116,45,115,109,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,111,97,116,45,109,100,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,111,97,116,45,108,103,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,111,97,116,45,120,108,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,46,117,115,101,114,45,115,101,108,101,99,116,45,97,108,108,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,97,108,108,33,105,109,112,111,114,116,97,110,116,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,97,108,108,33,105,109,112,111,114,116,97,110,116,59,117,115,101,114,45,115,101,108,101,99,116,58,97,108,108,33,105,109,112,111,114,116,97,110,116,125,46,117,115,101,114,45,115,101,108,101,99,116,45,97,117,116,111,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,117,115,101,114,45,115,101,108,101,99,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,117,115,101,114,45,115,101,108,101,99,116,45,110,111,110,101,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,111,118,101,114,102,108,111,119,45,97,117,116,111,123,111,118,101,114,102,108,111,119,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,111,118,101,114,102,108,111,119,45,104,105,100,100,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,114,101,108,97,116,105,118,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,97,98,115,111,108,117,116,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,105,99,107,121,123,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,33,105,109,112,111,114,116,97,110,116,125,46,102,105,120,101,100,45,116,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,51,48,125,46,102,105,120,101,100,45,98,111,116,116,111,109,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,51,48,125,64,115,117,112,112,111,114,116,115,32,40,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,41,123,46,115,116,105,99,107,121,45,116,111,112,123,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,59,116,111,112,58,48,59,122,45,105,110,100,101,120,58,49,48,50,48,125,125,46,115,114,45,111,110,108,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,49,112,120,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,58,45,49,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,111,114,100,101,114,58,48,125,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,97,99,116,105,118,101,44,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,102,111,99,117,115,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,59,99,108,105,112,58,97,117,116,111,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,46,115,104,97,100,111,119,45,115,109,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,53,114,101,109,32,49,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,108,103,123,98,111,120,45,115,104,97,100,111,119,58,48,32,49,114,101,109,32,51,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,110,111,110,101,123,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,119,45,50,53,123,119,105,100,116,104,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,53,48,123,119,105,100,116,104,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,55,53,123,119,105,100,116,104,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,97,117,116,111,123,119,105,100,116,104,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,104,45,50,53,123,104,101,105,103,104,116,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,53,48,123,104,101,105,103,104,116,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,55,53,123,104,101,105,103,104,116,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,97,117,116,111,123,104,101,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,119,45,49,48,48,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,104,45,49,48,48,123,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,119,45,49,48,48,123,109,105,110,45,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,104,45,49,48,48,123,109,105,110,45,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,118,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,118,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,45,115,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,109,45,109,100,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,45,108,103,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,45,120,108,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,46,115,116,114,101,116,99,104,101,100,45,108,105,110,107,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,48,41,125,46,116,101,120,116,45,109,111,110,111,115,112,97,99,101,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,92,92,92,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,92,92,92,34,44,92,92,92,34,67,111,117,114,105,101,114,32,78,101,119,92,92,92,34,44,109,111,110,111,115,112,97,99,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,106,117,115,116,105,102,121,123,116,101,120,116,45,97,108,105,103,110,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,110,111,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,116,114,117,110,99,97,116,101,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,116,101,120,116,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,116,101,120,116,45,115,109,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,116,101,120,116,45,109,100,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,116,101,120,116,45,108,103,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,116,101,120,116,45,120,108,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,46,116,101,120,116,45,108,111,119,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,108,111,119,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,117,112,112,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,97,112,105,116,97,108,105,122,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,99,97,112,105,116,97,108,105,122,101,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,123,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,108,105,103,104,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,110,111,114,109,97,108,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,105,116,97,108,105,99,123,102,111,110,116,45,115,116,121,108,101,58,105,116,97,108,105,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,123,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,52,57,52,102,53,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,57,54,57,50,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,105,110,102,111,58,102,111,99,117,115,44,97,46,116,101,120,116,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,102,54,54,55,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,98,97,56,98,48,48,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,97,55,49,100,50,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,116,101,120,116,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,99,98,100,51,100,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,114,107,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,50,49,52,49,54,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,111,100,121,123,99,111,108,111,114,58,35,50,49,50,53,50,57,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,117,116,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,108,97,99,107,45,53,48,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,45,53,48,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,104,105,100,101,123,102,111,110,116,58,48,47,48,32,97,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,110,111,110,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,114,101,97,107,123,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,101,115,101,116,123,99,111,108,111,114,58,105,110,104,101,114,105,116,33,105,109,112,111,114,116,97,110,116,125,46,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,118,105,115,105,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,105,110,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,112,114,105,110,116,123,42,44,58,58,97,102,116,101,114,44,58,58,98,101,102,111,114,101,123,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,97,58,110,111,116,40,46,98,116,110,41,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,98,98,114,91,116,105,116,108,101,93,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,92,92,92,34,32,40,92,92,92,34,32,97,116,116,114,40,116,105,116,108,101,41,32,92,92,92,34,41,92,92,92,34,125,112,114,101,123,119,104,105,116,101,45,115,112,97,99,101,58,112,114,101,45,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,98,108,111,99,107,113,117,111,116,101,44,112,114,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,97,100,98,53,98,100,59,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,116,104,101,97,100,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,104,101,97,100,101,114,45,103,114,111,117,112,125,105,109,103,44,116,114,123,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,104,50,44,104,51,44,112,123,111,114,112,104,97,110,115,58,51,59,119,105,100,111,119,115,58,51,125,104,50,44,104,51,123,112,97,103,101,45,98,114,101,97,107,45,97,102,116,101,114,58,97,118,111,105,100,125,64,112,97,103,101,123,115,105,122,101,58,97,51,125,98,111,100,121,123,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,33,105,109,112,111,114,116,97,110,116,125,46,99,111,110,116,97,105,110,101,114,123,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,33,105,109,112,111,114,116,97,110,116,125,46,110,97,118,98,97,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,97,100,103,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,48,48,48,125,46,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,125,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,47,100,105,115,116,47,99,115,115,47,98,111,111,116,115,116,114,97,112,46,109,105,110,46,99,115,115,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,37,53,66,50,37,53,68,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,108,105,103,104,116,46,109,105,110,46,99,115,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,108,105,103,104,116,46,109,105,110,46,99,115,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,103,101,116,85,114,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,103,101,116,85,114,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,48,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,50,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,51,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,78,67,65,89,65,65,65,66,121,54,43,82,56,65,65,65,65,75,107,108,69,81,86,81,111,85,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,74,111,65,71,85,90,77,51,50,90,48,85,56,116,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,78,67,65,89,65,65,65,66,121,54,43,82,56,65,65,65,65,75,107,108,69,81,86,81,111,85,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,74,111,65,71,85,90,77,51,50,90,48,85,56,116,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,52,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,53,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,54,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,56,37,50,48,49,49,104,56,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,56,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,56,37,50,48,49,49,104,56,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,56,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,55,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,56,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,57,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,49,50,37,50,48,55,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,118,51,104,51,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,51,118,51,113,48,37,50,48,48,46,52,49,52,45,48,46,50,57,51,37,50,48,48,46,55,48,55,116,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,45,48,46,50,57,51,45,48,46,50,57,51,45,48,46,55,48,55,118,45,51,104,45,51,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,104,51,118,45,51,113,48,45,48,46,52,49,52,37,50,48,48,46,50,57,51,45,48,46,55,48,55,116,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,49,50,37,50,48,55,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,118,51,104,51,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,51,118,51,113,48,37,50,48,48,46,52,49,52,45,48,46,50,57,51,37,50,48,48,46,55,48,55,116,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,45,48,46,50,57,51,45,48,46,50,57,51,45,48,46,55,48,55,118,45,51,104,45,51,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,104,51,118,45,51,113,48,45,48,46,52,49,52,37,50,48,48,46,50,57,51,45,48,46,55,48,55,116,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,48,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,53,97,53,97,53,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,53,97,53,97,53,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,49,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,50,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,51,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,52,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,53,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,50,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,49,56,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,54,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,50,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,49,56,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,54,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,54,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,55,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,56,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,57,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,50,48,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,50,49,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,50,50,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,50,51,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,119,105,100,116,104,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,104,101,105,103,104,116,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,49,48,48,37,50,48,49,48,48,37,50,50,37,50,48,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,37,51,68,37,50,50,120,77,105,100,89,77,105,100,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,117,105,108,45,114,105,110,103,37,50,50,37,51,69,37,51,67,114,101,99,116,37,50,48,120,37,51,68,37,50,50,48,37,50,50,37,50,48,121,37,51,68,37,50,50,48,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,110,111,110,101,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,98,107,37,50,50,37,51,69,37,51,67,37,50,70,114,101,99,116,37,51,69,37,51,67,100,101,102,115,37,51,69,37,51,67,102,105,108,116,101,114,37,50,48,105,100,37,51,68,37,50,50,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,50,37,50,48,120,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,121,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,51,69,37,51,67,102,101,79,102,102,115,101,116,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,100,120,37,51,68,37,50,50,48,37,50,50,37,50,48,100,121,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,79,102,102,115,101,116,37,51,69,37,51,67,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,115,116,100,68,101,118,105,97,116,105,111,110,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,51,69,37,51,67,102,101,66,108,101,110,100,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,105,110,50,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,109,111,100,101,37,51,68,37,50,50,110,111,114,109,97,108,37,50,50,37,51,69,37,51,67,37,50,70,102,101,66,108,101,110,100,37,51,69,37,51,67,37,50,70,102,105,108,116,101,114,37,51,69,37,51,67,37,50,70,100,101,102,115,37,51,69,37,51,67,112,97,116,104,37,50,48,100,37,51,68,37,50,50,77,49,48,37,50,67,53,48,99,48,37,50,67,48,37,50,67,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,37,50,67,48,46,50,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,46,49,37,50,67,48,46,55,37,50,67,48,46,49,37,50,67,49,46,49,99,48,46,49,37,50,67,48,46,52,37,50,67,48,46,49,37,50,67,48,46,56,37,50,67,48,46,50,37,50,67,49,46,50,99,48,46,50,37,50,67,48,46,56,37,50,67,48,46,51,37,50,67,49,46,56,37,50,67,48,46,53,37,50,67,50,46,56,37,50,48,99,48,46,51,37,50,67,49,37,50,67,48,46,54,37,50,67,50,46,49,37,50,67,48,46,57,37,50,67,51,46,50,99,48,46,51,37,50,67,49,46,49,37,50,67,48,46,57,37,50,67,50,46,51,37,50,67,49,46,52,37,50,67,51,46,53,99,48,46,53,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,50,46,52,37,50,67,49,46,56,37,50,67,51,46,55,99,48,46,51,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,49,46,57,99,48,46,52,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,51,37,50,67,49,46,51,37,50,67,49,46,57,37,50,48,99,49,37,50,67,49,46,50,37,50,67,49,46,57,37,50,67,50,46,54,37,50,67,51,46,49,37,50,67,51,46,55,99,50,46,50,37,50,67,50,46,53,37,50,67,53,37,50,67,52,46,55,37,50,67,55,46,57,37,50,67,54,46,55,99,51,37,50,67,50,37,50,67,54,46,53,37,50,67,51,46,52,37,50,67,49,48,46,49,37,50,67,52,46,54,99,51,46,54,37,50,67,49,46,49,37,50,67,55,46,53,37,50,67,49,46,53,37,50,67,49,49,46,50,37,50,67,49,46,54,99,52,45,48,46,49,37,50,67,55,46,55,45,48,46,54,37,50,67,49,49,46,51,45,49,46,54,37,50,48,99,51,46,54,45,49,46,50,37,50,67,55,45,50,46,54,37,50,67,49,48,45,52,46,54,99,51,45,50,37,50,67,53,46,56,45,52,46,50,37,50,67,55,46,57,45,54,46,55,99,49,46,50,45,49,46,50,37,50,67,50,46,49,45,50,46,53,37,50,67,51,46,49,45,51,46,55,99,48,46,53,45,48,46,54,37,50,67,48,46,57,45,49,46,51,37,50,67,49,46,51,45,49,46,57,99,48,46,52,45,48,46,54,37,50,67,48,46,56,45,49,46,51,37,50,67,49,46,50,45,49,46,57,37,50,48,99,48,46,54,45,49,46,51,37,50,67,49,46,51,45,50,46,53,37,50,67,49,46,56,45,51,46,55,99,48,46,53,45,49,46,50,37,50,67,49,45,50,46,52,37,50,67,49,46,52,45,51,46,53,99,48,46,51,45,49,46,49,37,50,67,48,46,54,45,50,46,50,37,50,67,48,46,57,45,51,46,50,99,48,46,50,45,49,37,50,67,48,46,52,45,49,46,57,37,50,67,48,46,53,45,50,46,56,99,48,46,49,45,48,46,52,37,50,67,48,46,49,45,48,46,56,37,50,67,48,46,50,45,49,46,50,37,50,48,99,48,45,48,46,52,37,50,67,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,49,99,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,50,37,50,67,48,46,50,45,49,46,55,67,57,48,37,50,67,53,48,46,53,37,50,67,57,48,37,50,67,53,48,37,50,67,57,48,37,50,67,53,48,115,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,37,50,67,48,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,37,50,67,48,46,55,37,50,67,48,37,50,67,49,46,49,37,50,48,99,48,37,50,67,48,46,52,45,48,46,49,37,50,67,48,46,56,45,48,46,49,37,50,67,49,46,50,99,45,48,46,49,37,50,67,48,46,57,45,48,46,50,37,50,67,49,46,56,45,48,46,52,37,50,67,50,46,56,99,45,48,46,50,37,50,67,49,45,48,46,53,37,50,67,50,46,49,45,48,46,55,37,50,67,51,46,51,99,45,48,46,51,37,50,67,49,46,50,45,48,46,56,37,50,67,50,46,52,45,49,46,50,37,50,67,51,46,55,99,45,48,46,50,37,50,67,48,46,55,45,48,46,53,37,50,67,49,46,51,45,48,46,56,37,50,67,49,46,57,37,50,48,99,45,48,46,51,37,50,67,48,46,55,45,48,46,54,37,50,67,49,46,51,45,48,46,57,37,50,67,50,99,45,48,46,51,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,51,45,49,46,49,37,50,67,50,99,45,48,46,52,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,52,45,49,46,50,37,50,67,50,99,45,49,37,50,67,49,46,51,45,49,46,57,37,50,67,50,46,55,45,51,46,49,37,50,67,52,99,45,50,46,50,37,50,67,50,46,55,45,53,37,50,67,53,45,56,46,49,37,50,67,55,46,49,37,50,48,99,45,48,46,56,37,50,67,48,46,53,45,49,46,54,37,50,67,49,45,50,46,52,37,50,67,49,46,53,99,45,48,46,56,37,50,67,48,46,53,45,49,46,55,37,50,67,48,46,57,45,50,46,54,37,50,67,49,46,51,76,54,54,37,50,67,56,55,46,55,108,45,49,46,52,37,50,67,48,46,53,99,45,48,46,57,37,50,67,48,46,51,45,49,46,56,37,50,67,48,46,55,45,50,46,56,37,50,67,49,99,45,51,46,56,37,50,67,49,46,49,45,55,46,57,37,50,67,49,46,55,45,49,49,46,56,37,50,67,49,46,56,76,52,55,37,50,67,57,48,46,56,37,50,48,99,45,49,37,50,67,48,45,50,45,48,46,50,45,51,45,48,46,51,108,45,49,46,53,45,48,46,50,108,45,48,46,55,45,48,46,49,76,52,49,46,49,37,50,67,57,48,99,45,49,45,48,46,51,45,49,46,57,45,48,46,53,45,50,46,57,45,48,46,55,99,45,48,46,57,45,48,46,51,45,49,46,57,45,48,46,55,45,50,46,56,45,49,76,51,52,37,50,67,56,55,46,55,108,45,49,46,51,45,48,46,54,37,50,48,99,45,48,46,57,45,48,46,52,45,49,46,56,45,48,46,56,45,50,46,54,45,49,46,51,99,45,48,46,56,45,48,46,53,45,49,46,54,45,49,45,50,46,52,45,49,46,53,99,45,51,46,49,45,50,46,49,45,53,46,57,45,52,46,53,45,56,46,49,45,55,46,49,99,45,49,46,50,45,49,46,50,45,50,46,49,45,50,46,55,45,51,46,49,45,52,99,45,48,46,53,45,48,46,54,45,48,46,56,45,49,46,52,45,49,46,50,45,50,37,50,48,99,45,48,46,52,45,48,46,55,45,48,46,56,45,49,46,51,45,49,46,49,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,57,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,56,45,49,46,57,99,45,48,46,52,45,49,46,51,45,48,46,57,45,50,46,53,45,49,46,50,45,51,46,55,99,45,48,46,51,45,49,46,50,45,48,46,53,45,50,46,51,45,48,46,55,45,51,46,51,37,50,48,99,45,48,46,50,45,49,45,48,46,51,45,50,45,48,46,52,45,50,46,56,99,45,48,46,49,45,48,46,52,45,48,46,49,45,48,46,56,45,48,46,49,45,49,46,50,99,48,45,48,46,52,37,50,67,48,45,48,46,55,37,50,67,48,45,49,46,49,99,48,45,48,46,55,37,50,67,48,45,49,46,50,37,50,67,48,45,49,46,55,67,49,48,37,50,67,53,48,46,53,37,50,67,49,48,37,50,67,53,48,37,50,67,49,48,37,50,67,53,48,122,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,49,51,49,51,56,37,50,50,37,50,48,102,105,108,116,101,114,37,51,68,37,50,50,117,114,108,37,50,56,37,50,51,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,57,37,50,50,37,51,69,37,51,67,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,50,48,97,116,116,114,105,98,117,116,101,78,97,109,101,37,51,68,37,50,50,116,114,97,110,115,102,111,114,109,37,50,50,37,50,48,116,121,112,101,37,51,68,37,50,50,114,111,116,97,116,101,37,50,50,37,50,48,102,114,111,109,37,51,68,37,50,50,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,116,111,37,51,68,37,50,50,51,54,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,114,101,112,101,97,116,67,111,117,110,116,37,51,68,37,50,50,105,110,100,101,102,105,110,105,116,101,37,50,50,37,50,48,100,117,114,37,51,68,37,50,50,49,115,37,50,50,37,51,69,37,51,67,37,50,70,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,119,105,100,116,104,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,104,101,105,103,104,116,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,49,48,48,37,50,48,49,48,48,37,50,50,37,50,48,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,37,51,68,37,50,50,120,77,105,100,89,77,105,100,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,117,105,108,45,114,105,110,103,37,50,50,37,51,69,37,51,67,114,101,99,116,37,50,48,120,37,51,68,37,50,50,48,37,50,50,37,50,48,121,37,51,68,37,50,50,48,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,110,111,110,101,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,98,107,37,50,50,37,51,69,37,51,67,37,50,70,114,101,99,116,37,51,69,37,51,67,100,101,102,115,37,51,69,37,51,67,102,105,108,116,101,114,37,50,48,105,100,37,51,68,37,50,50,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,50,37,50,48,120,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,121,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,51,69,37,51,67,102,101,79,102,102,115,101,116,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,100,120,37,51,68,37,50,50,48,37,50,50,37,50,48,100,121,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,79,102,102,115,101,116,37,51,69,37,51,67,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,115,116,100,68,101,118,105,97,116,105,111,110,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,51,69,37,51,67,102,101,66,108,101,110,100,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,105,110,50,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,109,111,100,101,37,51,68,37,50,50,110,111,114,109,97,108,37,50,50,37,51,69,37,51,67,37,50,70,102,101,66,108,101,110,100,37,51,69,37,51,67,37,50,70,102,105,108,116,101,114,37,51,69,37,51,67,37,50,70,100,101,102,115,37,51,69,37,51,67,112,97,116,104,37,50,48,100,37,51,68,37,50,50,77,49,48,37,50,67,53,48,99,48,37,50,67,48,37,50,67,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,37,50,67,48,46,50,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,46,49,37,50,67,48,46,55,37,50,67,48,46,49,37,50,67,49,46,49,99,48,46,49,37,50,67,48,46,52,37,50,67,48,46,49,37,50,67,48,46,56,37,50,67,48,46,50,37,50,67,49,46,50,99,48,46,50,37,50,67,48,46,56,37,50,67,48,46,51,37,50,67,49,46,56,37,50,67,48,46,53,37,50,67,50,46,56,37,50,48,99,48,46,51,37,50,67,49,37,50,67,48,46,54,37,50,67,50,46,49,37,50,67,48,46,57,37,50,67,51,46,50,99,48,46,51,37,50,67,49,46,49,37,50,67,48,46,57,37,50,67,50,46,51,37,50,67,49,46,52,37,50,67,51,46,53,99,48,46,53,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,50,46,52,37,50,67,49,46,56,37,50,67,51,46,55,99,48,46,51,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,49,46,57,99,48,46,52,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,51,37,50,67,49,46,51,37,50,67,49,46,57,37,50,48,99,49,37,50,67,49,46,50,37,50,67,49,46,57,37,50,67,50,46,54,37,50,67,51,46,49,37,50,67,51,46,55,99,50,46,50,37,50,67,50,46,53,37,50,67,53,37,50,67,52,46,55,37,50,67,55,46,57,37,50,67,54,46,55,99,51,37,50,67,50,37,50,67,54,46,53,37,50,67,51,46,52,37,50,67,49,48,46,49,37,50,67,52,46,54,99,51,46,54,37,50,67,49,46,49,37,50,67,55,46,53,37,50,67,49,46,53,37,50,67,49,49,46,50,37,50,67,49,46,54,99,52,45,48,46,49,37,50,67,55,46,55,45,48,46,54,37,50,67,49,49,46,51,45,49,46,54,37,50,48,99,51,46,54,45,49,46,50,37,50,67,55,45,50,46,54,37,50,67,49,48,45,52,46,54,99,51,45,50,37,50,67,53,46,56,45,52,46,50,37,50,67,55,46,57,45,54,46,55,99,49,46,50,45,49,46,50,37,50,67,50,46,49,45,50,46,53,37,50,67,51,46,49,45,51,46,55,99,48,46,53,45,48,46,54,37,50,67,48,46,57,45,49,46,51,37,50,67,49,46,51,45,49,46,57,99,48,46,52,45,48,46,54,37,50,67,48,46,56,45,49,46,51,37,50,67,49,46,50,45,49,46,57,37,50,48,99,48,46,54,45,49,46,51,37,50,67,49,46,51,45,50,46,53,37,50,67,49,46,56,45,51,46,55,99,48,46,53,45,49,46,50,37,50,67,49,45,50,46,52,37,50,67,49,46,52,45,51,46,53,99,48,46,51,45,49,46,49,37,50,67,48,46,54,45,50,46,50,37,50,67,48,46,57,45,51,46,50,99,48,46,50,45,49,37,50,67,48,46,52,45,49,46,57,37,50,67,48,46,53,45,50,46,56,99,48,46,49,45,48,46,52,37,50,67,48,46,49,45,48,46,56,37,50,67,48,46,50,45,49,46,50,37,50,48,99,48,45,48,46,52,37,50,67,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,49,99,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,50,37,50,67,48,46,50,45,49,46,55,67,57,48,37,50,67,53,48,46,53,37,50,67,57,48,37,50,67,53,48,37,50,67,57,48,37,50,67,53,48,115,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,37,50,67,48,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,37,50,67,48,46,55,37,50,67,48,37,50,67,49,46,49,37,50,48,99,48,37,50,67,48,46,52,45,48,46,49,37,50,67,48,46,56,45,48,46,49,37,50,67,49,46,50,99,45,48,46,49,37,50,67,48,46,57,45,48,46,50,37,50,67,49,46,56,45,48,46,52,37,50,67,50,46,56,99,45,48,46,50,37,50,67,49,45,48,46,53,37,50,67,50,46,49,45,48,46,55,37,50,67,51,46,51,99,45,48,46,51,37,50,67,49,46,50,45,48,46,56,37,50,67,50,46,52,45,49,46,50,37,50,67,51,46,55,99,45,48,46,50,37,50,67,48,46,55,45,48,46,53,37,50,67,49,46,51,45,48,46,56,37,50,67,49,46,57,37,50,48,99,45,48,46,51,37,50,67,48,46,55,45,48,46,54,37,50,67,49,46,51,45,48,46,57,37,50,67,50,99,45,48,46,51,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,51,45,49,46,49,37,50,67,50,99,45,48,46,52,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,52,45,49,46,50,37,50,67,50,99,45,49,37,50,67,49,46,51,45,49,46,57,37,50,67,50,46,55,45,51,46,49,37,50,67,52,99,45,50,46,50,37,50,67,50,46,55,45,53,37,50,67,53,45,56,46,49,37,50,67,55,46,49,37,50,48,99,45,48,46,56,37,50,67,48,46,53,45,49,46,54,37,50,67,49,45,50,46,52,37,50,67,49,46,53,99,45,48,46,56,37,50,67,48,46,53,45,49,46,55,37,50,67,48,46,57,45,50,46,54,37,50,67,49,46,51,76,54,54,37,50,67,56,55,46,55,108,45,49,46,52,37,50,67,48,46,53,99,45,48,46,57,37,50,67,48,46,51,45,49,46,56,37,50,67,48,46,55,45,50,46,56,37,50,67,49,99,45,51,46,56,37,50,67,49,46,49,45,55,46,57,37,50,67,49,46,55,45,49,49,46,56,37,50,67,49,46,56,76,52,55,37,50,67,57,48,46,56,37,50,48,99,45,49,37,50,67,48,45,50,45,48,46,50,45,51,45,48,46,51,108,45,49,46,53,45,48,46,50,108,45,48,46,55,45,48,46,49,76,52,49,46,49,37,50,67,57,48,99,45,49,45,48,46,51,45,49,46,57,45,48,46,53,45,50,46,57,45,48,46,55,99,45,48,46,57,45,48,46,51,45,49,46,57,45,48,46,55,45,50,46,56,45,49,76,51,52,37,50,67,56,55,46,55,108,45,49,46,51,45,48,46,54,37,50,48,99,45,48,46,57,45,48,46,52,45,49,46,56,45,48,46,56,45,50,46,54,45,49,46,51,99,45,48,46,56,45,48,46,53,45,49,46,54,45,49,45,50,46,52,45,49,46,53,99,45,51,46,49,45,50,46,49,45,53,46,57,45,52,46,53,45,56,46,49,45,55,46,49,99,45,49,46,50,45,49,46,50,45,50,46,49,45,50,46,55,45,51,46,49,45,52,99,45,48,46,53,45,48,46,54,45,48,46,56,45,49,46,52,45,49,46,50,45,50,37,50,48,99,45,48,46,52,45,48,46,55,45,48,46,56,45,49,46,51,45,49,46,49,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,57,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,56,45,49,46,57,99,45,48,46,52,45,49,46,51,45,48,46,57,45,50,46,53,45,49,46,50,45,51,46,55,99,45,48,46,51,45,49,46,50,45,48,46,53,45,50,46,51,45,48,46,55,45,51,46,51,37,50,48,99,45,48,46,50,45,49,45,48,46,51,45,50,45,48,46,52,45,50,46,56,99,45,48,46,49,45,48,46,52,45,48,46,49,45,48,46,56,45,48,46,49,45,49,46,50,99,48,45,48,46,52,37,50,67,48,45,48,46,55,37,50,67,48,45,49,46,49,99,48,45,48,46,55,37,50,67,48,45,49,46,50,37,50,67,48,45,49,46,55,67,49,48,37,50,67,53,48,46,53,37,50,67,49,48,37,50,67,53,48,37,50,67,49,48,37,50,67,53,48,122,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,49,51,49,51,56,37,50,50,37,50,48,102,105,108,116,101,114,37,51,68,37,50,50,117,114,108,37,50,56,37,50,51,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,57,37,50,50,37,51,69,37,51,67,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,50,48,97,116,116,114,105,98,117,116,101,78,97,109,101,37,51,68,37,50,50,116,114,97,110,115,102,111,114,109,37,50,50,37,50,48,116,121,112,101,37,51,68,37,50,50,114,111,116,97,116,101,37,50,50,37,50,48,102,114,111,109,37,51,68,37,50,50,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,116,111,37,51,68,37,50,50,51,54,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,114,101,112,101,97,116,67,111,117,110,116,37,51,68,37,50,50,105,110,100,101,102,105,110,105,116,101,37,50,50,37,50,48,100,117,114,37,51,68,37,50,50,49,115,37,50,50,37,51,69,37,51,67,37,50,70,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,48,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,48,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,50,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,51,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,51,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,52,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,52,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,53,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,53,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,54,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,54,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,55,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,55,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,56,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,56,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,57,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,57,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,48,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,48,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,49,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,49,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,50,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,50,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,51,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,51,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,52,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,52,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,53,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,53,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,54,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,54,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,55,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,55,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,56,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,56,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,57,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,49,57,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,48,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,50,48,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,49,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,50,49,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,50,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,50,50,95,95,95,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,51,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,50,51,95,95,95,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,52,41,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,48,112,120,59,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,46,49,53,115,32,108,105,110,101,97,114,59,119,105,100,116,104,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,58,104,111,118,101,114,123,98,111,120,45,115,104,97,100,111,119,58,48,32,50,112,120,32,51,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,43,46,98,116,110,123,109,97,114,103,105,110,45,108,101,102,116,58,53,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,45,53,48,37,41,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,125,46,105,116,114,101,101,45,109,101,110,117,123,98,97,99,107,103,114,111,117,110,100,58,35,100,100,100,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,52,99,52,99,52,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,109,105,110,45,119,105,100,116,104,58,49,53,48,112,120,59,112,97,100,100,105,110,103,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,52,125,46,105,116,114,101,101,45,109,101,110,117,32,97,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,51,112,120,32,56,112,120,125,46,105,116,114,101,101,45,109,101,110,117,32,97,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,49,56,44,50,53,48,44,50,53,53,44,46,53,41,59,99,111,108,111,114,58,114,103,98,97,40,49,54,52,44,50,51,52,44,50,52,53,44,46,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,42,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,123,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,32,111,108,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,99,111,108,108,97,112,115,101,100,62,111,108,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,104,105,100,100,101,110,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,62,46,116,105,116,108,101,45,119,114,97,112,123,109,105,110,45,104,101,105,103,104,116,58,50,53,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,119,105,100,116,104,58,50,53,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,45,53,48,37,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,123,108,101,102,116,58,49,56,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,52,112,120,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,119,105,100,116,104,58,50,48,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,52,50,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,123,99,111,108,111,114,58,35,52,55,54,99,98,56,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,98,101,102,111,114,101,123,108,101,102,116,58,50,52,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,100,114,97,103,45,97,110,100,45,100,114,111,112,32,108,105,58,110,111,116,40,46,100,114,111,112,45,116,97,114,103,101,116,41,123,111,112,97,99,105,116,121,58,46,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,46,105,110,115,112,105,114,101,45,116,114,101,101,44,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,62,46,116,105,116,108,101,45,119,114,97,112,62,46,116,105,116,108,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,62,46,116,105,116,108,101,45,119,114,97,112,62,46,116,105,116,108,101,123,98,111,114,100,101,114,45,116,111,112,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,62,46,116,105,116,108,101,45,119,114,97,112,62,46,116,105,116,108,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,104,101,105,103,104,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,46,98,116,110,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,62,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,110,111,110,101,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,48,112,120,59,122,45,105,110,100,101,120,58,51,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,58,104,111,118,101,114,62,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,105,110,112,117,116,43,46,98,116,110,45,103,114,111,117,112,123,109,97,114,103,105,110,45,108,101,102,116,58,49,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,62,46,98,116,110,46,105,99,111,110,123,109,97,114,103,105,110,45,108,101,102,116,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,62,111,108,62,46,102,111,108,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,49,51,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,62,111,108,62,46,102,111,108,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,48,95,95,95,32,43,32,92,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,62,111,108,62,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,95,95,95,32,43,32,92,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,62,111,108,32,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,62,111,108,32,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,111,108,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,95,95,95,32,43,32,92,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,111,108,123,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,46,102,111,108,100,101,114,58,110,111,116,40,46,108,111,97,100,105,110,103,41,62,46,116,105,116,108,101,45,119,114,97,112,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,48,95,95,95,32,43,32,92,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,51,49,112,120,32,49,51,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,101,116,97,99,104,101,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,95,95,95,32,43,32,92,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,51,95,95,95,32,43,32,92,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,46,100,101,116,97,99,104,101,100,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,48,95,95,95,32,43,32,92,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,62,111,108,62,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,52,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,104,111,118,101,114,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,53,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,111,108,108,97,112,115,101,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,54,95,95,95,32,43,32,92,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,55,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,104,111,118,101,114,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,56,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,101,120,112,97,110,100,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,57,95,95,95,32,43,32,92,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,48,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,49,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,50,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,51,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,104,111,118,101,114,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,52,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,111,114,101,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,53,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,54,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,104,111,118,101,114,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,55,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,56,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,104,111,118,101,114,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,49,57,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,62,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,48,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,62,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,49,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,62,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,50,95,95,95,32,43,32,92,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,62,46,116,105,116,108,101,45,119,114,97,112,32,105,110,112,117,116,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,62,46,116,105,116,108,101,45,119,114,97,112,32,46,116,105,116,108,101,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,50,51,95,95,95,32,43,32,92,34,41,59,99,111,110,116,101,110,116,58,92,92,92,34,92,92,92,34,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,62,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,119,104,111,108,101,114,111,119,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,109,97,114,103,105,110,45,116,111,112,58,45,50,53,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,48,48,37,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,99,117,115,101,100,62,46,119,104,111,108,101,114,111,119,123,98,111,114,100,101,114,58,49,112,120,32,100,111,116,116,101,100,32,35,48,48,48,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,43,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,119,104,111,108,101,114,111,119,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,49,56,44,50,53,48,44,50,53,53,44,46,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,62,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,43,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,62,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,62,46,119,104,111,108,101,114,111,119,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,49,54,52,44,50,51,52,44,50,52,53,44,46,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,109,97,116,99,104,101,100,62,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,43,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,109,97,116,99,104,101,100,62,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,109,97,116,99,104,101,100,62,46,119,104,111,108,101,114,111,119,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,52,55,44,50,53,53,44,49,55,48,44,46,53,41,125,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,108,105,103,104,116,46,109,105,110,46,99,115,115,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,37,53,66,50,37,53,68,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,99,115,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,99,115,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,47,42,32,70,117,110,99,116,105,111,110,97,108,32,115,116,121,108,105,110,103,59,92,92,110,32,42,32,84,104,101,115,101,32,115,116,121,108,101,115,32,97,114,101,32,114,101,113,117,105,114,101,100,32,102,111,114,32,110,111,85,105,83,108,105,100,101,114,32,116,111,32,102,117,110,99,116,105,111,110,46,92,92,110,32,42,32,89,111,117,32,100,111,110,39,116,32,110,101,101,100,32,116,111,32,99,104,97,110,103,101,32,116,104,101,115,101,32,114,117,108,101,115,32,116,111,32,97,112,112,108,121,32,121,111,117,114,32,100,101,115,105,103,110,46,92,92,110,32,42,47,92,92,110,46,110,111,85,105,45,116,97,114,103,101,116,44,92,92,110,46,110,111,85,105,45,116,97,114,103,101,116,32,42,32,123,92,92,110,32,32,45,119,101,98,107,105,116,45,116,111,117,99,104,45,99,97,108,108,111,117,116,58,32,110,111,110,101,59,92,92,110,32,32,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,41,59,92,92,110,32,32,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,32,32,116,111,117,99,104,45,97,99,116,105,111,110,58,32,110,111,110,101,59,92,92,110,32,32,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,32,32,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,32,32,98,111,120,45,115,105,122,105,110,103,58,32,98,111,114,100,101,114,45,98,111,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,116,97,114,103,101,116,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,125,92,92,110,46,110,111,85,105,45,98,97,115,101,44,92,92,110,46,110,111,85,105,45,99,111,110,110,101,99,116,115,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,48,48,37,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,122,45,105,110,100,101,120,58,32,49,59,92,92,110,125,92,92,110,47,42,32,87,114,97,112,112,101,114,32,102,111,114,32,97,108,108,32,99,111,110,110,101,99,116,32,101,108,101,109,101,110,116,115,46,92,92,110,32,42,47,92,92,110,46,110,111,85,105,45,99,111,110,110,101,99,116,115,32,123,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,32,32,122,45,105,110,100,101,120,58,32,48,59,92,92,110,125,92,92,110,46,110,111,85,105,45,99,111,110,110,101,99,116,44,92,92,110,46,110,111,85,105,45,111,114,105,103,105,110,32,123,92,92,110,32,32,119,105,108,108,45,99,104,97,110,103,101,58,32,116,114,97,110,115,102,111,114,109,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,122,45,105,110,100,101,120,58,32,49,59,92,92,110,32,32,116,111,112,58,32,48,59,92,92,110,32,32,114,105,103,104,116,58,32,48,59,92,92,110,32,32,45,109,115,45,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,32,48,32,48,59,92,92,110,32,32,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,32,48,32,48,59,92,92,110,32,32,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,45,115,116,121,108,101,58,32,112,114,101,115,101,114,118,101,45,51,100,59,92,92,110,32,32,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,32,48,32,48,59,92,92,110,32,32,116,114,97,110,115,102,111,114,109,45,115,116,121,108,101,58,32,102,108,97,116,59,92,92,110,125,92,92,110,46,110,111,85,105,45,99,111,110,110,101,99,116,32,123,92,92,110,32,32,104,101,105,103,104,116,58,32,49,48,48,37,59,92,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,125,92,92,110,46,110,111,85,105,45,111,114,105,103,105,110,32,123,92,92,110,32,32,104,101,105,103,104,116,58,32,49,48,37,59,92,92,110,32,32,119,105,100,116,104,58,32,49,48,37,59,92,92,110,125,92,92,110,47,42,32,79,102,102,115,101,116,32,100,105,114,101,99,116,105,111,110,92,92,110,32,42,47,92,92,110,46,110,111,85,105,45,116,120,116,45,100,105,114,45,114,116,108,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,111,114,105,103,105,110,32,123,92,92,110,32,32,108,101,102,116,58,32,48,59,92,92,110,32,32,114,105,103,104,116,58,32,97,117,116,111,59,92,92,110,125,92,92,110,47,42,32,71,105,118,101,32,111,114,105,103,105,110,115,32,48,32,104,101,105,103,104,116,47,119,105,100,116,104,32,115,111,32,116,104,101,121,32,100,111,110,39,116,32,105,110,116,101,114,102,101,114,101,32,119,105,116,104,32,99,108,105,99,107,105,110,103,32,116,104,101,92,92,110,32,42,32,99,111,110,110,101,99,116,32,101,108,101,109,101,110,116,115,46,92,92,110,32,42,47,92,92,110,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,111,114,105,103,105,110,32,123,92,92,110,32,32,119,105,100,116,104,58,32,48,59,92,92,110,125,92,92,110,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,111,114,105,103,105,110,32,123,92,92,110,32,32,104,101,105,103,104,116,58,32,48,59,92,92,110,125,92,92,110,46,110,111,85,105,45,104,97,110,100,108,101,32,123,92,92,110,32,32,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,32,104,105,100,100,101,110,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,125,92,92,110,46,110,111,85,105,45,116,111,117,99,104,45,97,114,101,97,32,123,92,92,110,32,32,104,101,105,103,104,116,58,32,49,48,48,37,59,92,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,125,92,92,110,46,110,111,85,105,45,115,116,97,116,101,45,116,97,112,32,46,110,111,85,105,45,99,111,110,110,101,99,116,44,92,92,110,46,110,111,85,105,45,115,116,97,116,101,45,116,97,112,32,46,110,111,85,105,45,111,114,105,103,105,110,32,123,92,92,110,32,32,116,114,97,110,115,105,116,105,111,110,58,32,116,114,97,110,115,102,111,114,109,32,48,46,51,115,59,92,92,110,125,92,92,110,46,110,111,85,105,45,115,116,97,116,101,45,100,114,97,103,32,42,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,105,110,104,101,114,105,116,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,47,42,32,83,108,105,100,101,114,32,115,105,122,101,32,97,110,100,32,104,97,110,100,108,101,32,112,108,97,99,101,109,101,110,116,59,92,92,110,32,42,47,92,92,110,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,123,92,92,110,32,32,104,101,105,103,104,116,58,32,49,56,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,32,123,92,92,110,32,32,119,105,100,116,104,58,32,51,52,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,56,112,120,59,92,92,110,32,32,114,105,103,104,116,58,32,45,49,55,112,120,59,92,92,110,32,32,116,111,112,58,32,45,54,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,56,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,32,123,92,92,110,32,32,119,105,100,116,104,58,32,50,56,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,51,52,112,120,59,92,92,110,32,32,114,105,103,104,116,58,32,45,54,112,120,59,92,92,110,32,32,116,111,112,58,32,45,49,55,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,116,120,116,45,100,105,114,45,114,116,108,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,32,123,92,92,110,32,32,108,101,102,116,58,32,45,49,55,112,120,59,92,92,110,32,32,114,105,103,104,116,58,32,97,117,116,111,59,92,92,110,125,92,92,110,47,42,32,83,116,121,108,105,110,103,59,92,92,110,32,42,32,71,105,118,105,110,103,32,116,104,101,32,99,111,110,110,101,99,116,32,101,108,101,109,101,110,116,32,97,32,98,111,114,100,101,114,32,114,97,100,105,117,115,32,99,97,117,115,101,115,32,105,115,115,117,101,115,32,119,105,116,104,32,117,115,105,110,103,32,116,114,97,110,115,102,111,114,109,58,32,115,99,97,108,101,92,92,110,32,42,47,92,92,110,46,110,111,85,105,45,116,97,114,103,101,116,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,70,65,70,65,70,65,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,68,51,68,51,68,51,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,49,112,120,32,49,112,120,32,35,70,48,70,48,70,48,44,32,48,32,51,112,120,32,54,112,120,32,45,53,112,120,32,35,66,66,66,59,92,92,110,125,92,92,110,46,110,111,85,105,45,99,111,110,110,101,99,116,115,32,123,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,51,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,99,111,110,110,101,99,116,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,51,70,66,56,65,70,59,92,92,110,125,92,92,110,47,42,32,72,97,110,100,108,101,115,32,97,110,100,32,99,117,114,115,111,114,115,59,92,92,110,32,42,47,92,92,110,46,110,111,85,105,45,100,114,97,103,103,97,98,108,101,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,101,119,45,114,101,115,105,122,101,59,92,92,110,125,92,92,110,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,100,114,97,103,103,97,98,108,101,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,110,115,45,114,101,115,105,122,101,59,92,92,110,125,92,92,110,46,110,111,85,105,45,104,97,110,100,108,101,32,123,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,68,57,68,57,68,57,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,51,112,120,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,70,70,70,59,92,92,110,32,32,99,117,114,115,111,114,58,32,100,101,102,97,117,108,116,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,49,112,120,32,35,70,70,70,44,32,105,110,115,101,116,32,48,32,49,112,120,32,55,112,120,32,35,69,66,69,66,69,66,44,32,48,32,51,112,120,32,54,112,120,32,45,51,112,120,32,35,66,66,66,59,92,92,110,125,92,92,110,46,110,111,85,105,45,97,99,116,105,118,101,32,123,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,49,112,120,32,35,70,70,70,44,32,105,110,115,101,116,32,48,32,49,112,120,32,55,112,120,32,35,68,68,68,44,32,48,32,51,112,120,32,54,112,120,32,45,51,112,120,32,35,66,66,66,59,92,92,110,125,92,92,110,47,42,32,72,97,110,100,108,101,32,115,116,114,105,112,101,115,59,92,92,110,32,42,47,92,92,110,46,110,111,85,105,45,104,97,110,100,108,101,58,98,101,102,111,114,101,44,92,92,110,46,110,111,85,105,45,104,97,110,100,108,101,58,97,102,116,101,114,32,123,92,92,110,32,32,99,111,110,116,101,110,116,58,32,92,92,92,34,92,92,92,34,59,92,92,110,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,52,112,120,59,92,92,110,32,32,119,105,100,116,104,58,32,49,112,120,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,69,56,69,55,69,54,59,92,92,110,32,32,108,101,102,116,58,32,49,52,112,120,59,92,92,110,32,32,116,111,112,58,32,54,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,104,97,110,100,108,101,58,97,102,116,101,114,32,123,92,92,110,32,32,108,101,102,116,58,32,49,55,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,58,98,101,102,111,114,101,44,92,92,110,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,58,97,102,116,101,114,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,52,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,112,120,59,92,92,110,32,32,108,101,102,116,58,32,54,112,120,59,92,92,110,32,32,116,111,112,58,32,49,52,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,58,97,102,116,101,114,32,123,92,92,110,32,32,116,111,112,58,32,49,55,112,120,59,92,92,110,125,92,92,110,47,42,32,68,105,115,97,98,108,101,100,32,115,116,97,116,101,59,92,92,110,32,42,47,92,92,110,91,100,105,115,97,98,108,101,100,93,32,46,110,111,85,105,45,99,111,110,110,101,99,116,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,66,56,66,56,66,56,59,92,92,110,125,92,92,110,91,100,105,115,97,98,108,101,100,93,46,110,111,85,105,45,116,97,114,103,101,116,44,92,92,110,91,100,105,115,97,98,108,101,100,93,46,110,111,85,105,45,104,97,110,100,108,101,44,92,92,110,91,100,105,115,97,98,108,101,100,93,32,46,110,111,85,105,45,104,97,110,100,108,101,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,110,111,116,45,97,108,108,111,119,101,100,59,92,92,110,125,92,92,110,47,42,32,66,97,115,101,59,92,92,110,32,42,92,92,110,32,42,47,92,92,110,46,110,111,85,105,45,112,105,112,115,44,92,92,110,46,110,111,85,105,45,112,105,112,115,32,42,32,123,92,92,110,32,32,98,111,120,45,115,105,122,105,110,103,58,32,98,111,114,100,101,114,45,98,111,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,112,105,112,115,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,99,111,108,111,114,58,32,35,57,57,57,59,92,92,110,125,92,92,110,47,42,32,86,97,108,117,101,115,59,92,92,110,32,42,92,92,110,32,42,47,92,92,110,46,110,111,85,105,45,118,97,108,117,101,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,92,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,92,110,125,92,92,110,46,110,111,85,105,45,118,97,108,117,101,45,115,117,98,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,99,99,99,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,48,112,120,59,92,92,110,125,92,92,110,47,42,32,77,97,114,107,105,110,103,115,59,92,92,110,32,42,92,92,110,32,42,47,92,92,110,46,110,111,85,105,45,109,97,114,107,101,114,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,67,67,67,59,92,92,110,125,92,92,110,46,110,111,85,105,45,109,97,114,107,101,114,45,115,117,98,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,65,65,65,59,92,92,110,125,92,92,110,46,110,111,85,105,45,109,97,114,107,101,114,45,108,97,114,103,101,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,65,65,65,59,92,92,110,125,92,92,110,47,42,32,72,111,114,105,122,111,110,116,97,108,32,108,97,121,111,117,116,59,92,92,110,32,42,92,92,110,32,42,47,92,92,110,46,110,111,85,105,45,112,105,112,115,45,104,111,114,105,122,111,110,116,97,108,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,49,48,112,120,32,48,59,92,92,110,32,32,104,101,105,103,104,116,58,32,56,48,112,120,59,92,92,110,32,32,116,111,112,58,32,49,48,48,37,59,92,92,110,32,32,108,101,102,116,58,32,48,59,92,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,125,92,92,110,46,110,111,85,105,45,118,97,108,117,101,45,104,111,114,105,122,111,110,116,97,108,32,123,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,53,48,37,41,59,92,92,110,125,92,92,110,46,110,111,85,105,45,114,116,108,32,46,110,111,85,105,45,118,97,108,117,101,45,104,111,114,105,122,111,110,116,97,108,32,123,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,53,48,37,44,32,53,48,37,41,59,92,92,110,125,92,92,110,46,110,111,85,105,45,109,97,114,107,101,114,45,104,111,114,105,122,111,110,116,97,108,46,110,111,85,105,45,109,97,114,107,101,114,32,123,92,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,45,49,112,120,59,92,92,110,32,32,119,105,100,116,104,58,32,50,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,53,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,109,97,114,107,101,114,45,104,111,114,105,122,111,110,116,97,108,46,110,111,85,105,45,109,97,114,107,101,114,45,115,117,98,32,123,92,92,110,32,32,104,101,105,103,104,116,58,32,49,48,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,109,97,114,107,101,114,45,104,111,114,105,122,111,110,116,97,108,46,110,111,85,105,45,109,97,114,107,101,114,45,108,97,114,103,101,32,123,92,92,110,32,32,104,101,105,103,104,116,58,32,49,53,112,120,59,92,92,110,125,92,92,110,47,42,32,86,101,114,116,105,99,97,108,32,108,97,121,111,117,116,59,92,92,110,32,42,92,92,110,32,42,47,92,92,110,46,110,111,85,105,45,112,105,112,115,45,118,101,114,116,105,99,97,108,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,32,49,48,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,48,48,37,59,92,92,110,32,32,116,111,112,58,32,48,59,92,92,110,32,32,108,101,102,116,58,32,49,48,48,37,59,92,92,110,125,92,92,110,46,110,111,85,105,45,118,97,108,117,101,45,118,101,114,116,105,99,97,108,32,123,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,48,44,32,45,53,48,37,41,59,92,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,50,53,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,114,116,108,32,46,110,111,85,105,45,118,97,108,117,101,45,118,101,114,116,105,99,97,108,32,123,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,48,44,32,53,48,37,41,59,92,92,110,125,92,92,110,46,110,111,85,105,45,109,97,114,107,101,114,45,118,101,114,116,105,99,97,108,46,110,111,85,105,45,109,97,114,107,101,114,32,123,92,92,110,32,32,119,105,100,116,104,58,32,53,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,45,49,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,109,97,114,107,101,114,45,118,101,114,116,105,99,97,108,46,110,111,85,105,45,109,97,114,107,101,114,45,115,117,98,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,48,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,109,97,114,107,101,114,45,118,101,114,116,105,99,97,108,46,110,111,85,105,45,109,97,114,107,101,114,45,108,97,114,103,101,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,53,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,116,111,111,108,116,105,112,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,68,57,68,57,68,57,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,51,112,120,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,92,92,110,32,32,99,111,108,111,114,58,32,35,48,48,48,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,53,112,120,59,92,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,92,110,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,92,92,110,125,92,92,110,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,116,111,111,108,116,105,112,32,123,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,48,41,59,92,92,110,32,32,108,101,102,116,58,32,53,48,37,59,92,92,110,32,32,98,111,116,116,111,109,58,32,49,50,48,37,59,92,92,110,125,92,92,110,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,116,111,111,108,116,105,112,32,123,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,48,44,32,45,53,48,37,41,59,92,92,110,32,32,116,111,112,58,32,53,48,37,59,92,92,110,32,32,114,105,103,104,116,58,32,49,50,48,37,59,92,92,110,125,92,92,110,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,111,114,105,103,105,110,32,62,32,46,110,111,85,105,45,116,111,111,108,116,105,112,32,123,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,53,48,37,44,32,48,41,59,92,92,110,32,32,108,101,102,116,58,32,97,117,116,111,59,92,92,110,32,32,98,111,116,116,111,109,58,32,49,48,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,111,114,105,103,105,110,32,62,32,46,110,111,85,105,45,116,111,111,108,116,105,112,32,123,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,48,44,32,45,49,56,112,120,41,59,92,92,110,32,32,116,111,112,58,32,97,117,116,111,59,92,92,110,32,32,114,105,103,104,116,58,32,50,56,112,120,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,99,115,115,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,37,53,66,50,37,53,68,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,100,105,115,116,47,115,116,121,108,101,115,46,99,115,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,100,105,115,116,47,115,116,121,108,101,115,46,99,115,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,92,92,110,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,32,62,32,117,108,32,123,92,92,110,32,32,108,105,115,116,45,115,116,121,108,101,58,32,110,111,110,101,59,92,92,110,32,32,109,97,114,103,105,110,58,32,48,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,59,92,92,110,125,92,92,110,92,92,110,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,125,92,92,110,92,92,110,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,44,32,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,42,32,123,92,92,110,32,32,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,32,98,111,114,100,101,114,45,98,111,120,59,92,92,110,32,32,32,32,32,32,32,32,32,32,98,111,120,45,115,105,122,105,110,103,58,32,98,111,114,100,101,114,45,98,111,120,59,92,92,110,125,92,92,110,92,92,110,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,46,105,110,112,117,116,45,119,114,97,112,112,101,114,32,105,110,112,117,116,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,92,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,49,48,112,120,59,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,99,100,101,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,51,112,120,59,92,92,110,32,32,99,111,108,111,114,58,32,98,108,97,99,107,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,119,104,105,116,101,59,92,92,110,32,32,111,117,116,108,105,110,101,58,110,111,110,101,59,92,92,110,32,32,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,32,97,108,108,32,46,49,115,59,92,92,110,32,32,116,114,97,110,115,105,116,105,111,110,58,32,97,108,108,32,46,49,115,59,92,92,110,32,32,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,45,100,101,108,97,121,58,32,46,48,53,115,59,92,92,110,32,32,32,32,32,32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,45,100,101,108,97,121,58,32,46,48,53,115,92,92,110,125,92,92,110,92,92,110,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,46,102,111,99,117,115,32,46,105,110,112,117,116,45,119,114,97,112,112,101,114,32,105,110,112,117,116,32,123,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,97,97,97,59,92,92,110,125,92,92,110,92,92,110,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,46,115,117,103,103,101,115,116,105,111,110,115,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,108,101,102,116,58,32,48,59,92,92,110,32,32,114,105,103,104,116,58,32,48,59,92,92,110,32,32,116,111,112,58,32,49,48,48,37,59,92,92,110,32,32,116,111,112,58,32,99,97,108,99,40,49,48,48,37,32,43,32,53,112,120,41,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,51,112,120,59,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,97,97,97,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,102,102,59,92,92,110,32,32,111,112,97,99,105,116,121,58,32,49,59,92,92,110,32,32,122,45,105,110,100,101,120,58,32,49,48,48,48,59,92,92,110,125,92,92,110,92,92,110,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,46,115,117,103,103,101,115,116,105,111,110,115,32,46,115,117,103,103,101,115,116,45,105,116,101,109,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,32,32,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,32,32,32,32,32,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,32,32,32,32,32,32,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,32,32,32,32,32,32,32,32,32,32,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,125,92,92,110,92,92,110,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,46,115,117,103,103,101,115,116,105,111,110,115,32,46,115,117,103,103,101,115,116,45,105,116,101,109,44,92,92,110,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,46,115,117,103,103,101,115,116,105,111,110,115,32,46,109,105,115,99,45,105,116,101,109,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,53,112,120,32,49,48,112,120,59,92,92,110,125,92,92,110,92,92,110,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,46,115,117,103,103,101,115,116,105,111,110,115,32,46,115,117,103,103,101,115,116,45,105,116,101,109,46,104,111,118,101,114,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,50,56,55,52,68,53,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,99,111,108,111,114,58,32,35,102,102,102,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,92,92,110,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,46,115,117,103,103,101,115,116,105,111,110,115,32,46,115,117,103,103,101,115,116,45,105,116,101,109,46,115,101,108,101,99,116,101,100,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,50,56,51,50,68,53,59,92,92,110,32,32,99,111,108,111,114,58,32,35,102,102,102,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,100,105,115,116,47,115,116,121,108,101,115,46,99,115,115,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,37,53,66,50,37,53,68,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,47,42,92,110,32,32,77,73,84,32,76,105,99,101,110,115,101,32,104,116,116,112,58,47,47,119,119,119,46,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,109,105,116,45,108,105,99,101,110,115,101,46,112,104,112,92,110,32,32,65,117,116,104,111,114,32,84,111,98,105,97,115,32,75,111,112,112,101,114,115,32,64,115,111,107,114,97,92,110,42,47,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,99,115,115,87,105,116,104,77,97,112,112,105,110,103,84,111,83,116,114,105,110,103,41,32,123,92,110,32,32,118,97,114,32,108,105,115,116,32,61,32,91,93,59,92,110,92,110,32,32,47,47,32,114,101,116,117,114,110,32,116,104,101,32,108,105,115,116,32,111,102,32,109,111,100,117,108,101,115,32,97,115,32,99,115,115,32,115,116,114,105,110,103,92,110,32,32,108,105,115,116,46,116,111,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,116,111,83,116,114,105,110,103,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,116,101,110,116,32,61,32,92,34,92,34,59,92,110,32,32,32,32,32,32,118,97,114,32,110,101,101,100,76,97,121,101,114,32,61,32,116,121,112,101,111,102,32,105,116,101,109,91,53,93,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,59,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,109,91,52,93,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,32,43,61,32,92,34,64,115,117,112,112,111,114,116,115,32,40,92,34,46,99,111,110,99,97,116,40,105,116,101,109,91,52,93,44,32,92,34,41,32,123,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,109,91,50,93,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,32,43,61,32,92,34,64,109,101,100,105,97,32,92,34,46,99,111,110,99,97,116,40,105,116,101,109,91,50,93,44,32,92,34,32,123,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,110,101,101,100,76,97,121,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,32,43,61,32,92,34,64,108,97,121,101,114,92,34,46,99,111,110,99,97,116,40,105,116,101,109,91,53,93,46,108,101,110,103,116,104,32,62,32,48,32,63,32,92,34,32,92,34,46,99,111,110,99,97,116,40,105,116,101,109,91,53,93,41,32,58,32,92,34,92,34,44,32,92,34,32,123,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,111,110,116,101,110,116,32,43,61,32,99,115,115,87,105,116,104,77,97,112,112,105,110,103,84,111,83,116,114,105,110,103,40,105,116,101,109,41,59,92,110,32,32,32,32,32,32,105,102,32,40,110,101,101,100,76,97,121,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,32,43,61,32,92,34,125,92,34,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,109,91,50,93,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,32,43,61,32,92,34,125,92,34,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,109,91,52,93,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,32,43,61,32,92,34,125,92,34,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,110,116,101,110,116,59,92,110,32,32,32,32,125,41,46,106,111,105,110,40,92,34,92,34,41,59,92,110,32,32,125,59,92,110,92,110,32,32,47,47,32,105,109,112,111,114,116,32,97,32,108,105,115,116,32,111,102,32,109,111,100,117,108,101,115,32,105,110,116,111,32,116,104,101,32,108,105,115,116,92,110,32,32,108,105,115,116,46,105,32,61,32,102,117,110,99,116,105,111,110,32,105,40,109,111,100,117,108,101,115,44,32,109,101,100,105,97,44,32,100,101,100,117,112,101,44,32,115,117,112,112,111,114,116,115,44,32,108,97,121,101,114,41,32,123,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,109,111,100,117,108,101,115,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,123,92,110,32,32,32,32,32,32,109,111,100,117,108,101,115,32,61,32,91,91,110,117,108,108,44,32,109,111,100,117,108,101,115,44,32,117,110,100,101,102,105,110,101,100,93,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,118,97,114,32,97,108,114,101,97,100,121,73,109,112,111,114,116,101,100,77,111,100,117,108,101,115,32,61,32,123,125,59,92,110,32,32,32,32,105,102,32,40,100,101,100,117,112,101,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,32,61,32,48,59,32,107,32,60,32,116,104,105,115,46,108,101,110,103,116,104,59,32,107,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,100,32,61,32,116,104,105,115,91,107,93,91,48,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,100,32,33,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,108,114,101,97,100,121,73,109,112,111,114,116,101,100,77,111,100,117,108,101,115,91,105,100,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,95,107,32,61,32,48,59,32,95,107,32,60,32,109,111,100,117,108,101,115,46,108,101,110,103,116,104,59,32,95,107,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,91,93,46,99,111,110,99,97,116,40,109,111,100,117,108,101,115,91,95,107,93,41,59,92,110,32,32,32,32,32,32,105,102,32,40,100,101,100,117,112,101,32,38,38,32,97,108,114,101,97,100,121,73,109,112,111,114,116,101,100,77,111,100,117,108,101,115,91,105,116,101,109,91,48,93,93,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,108,97,121,101,114,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,105,116,101,109,91,53,93,32,61,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,91,53,93,32,61,32,108,97,121,101,114,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,91,49,93,32,61,32,92,34,64,108,97,121,101,114,92,34,46,99,111,110,99,97,116,40,105,116,101,109,91,53,93,46,108,101,110,103,116,104,32,62,32,48,32,63,32,92,34,32,92,34,46,99,111,110,99,97,116,40,105,116,101,109,91,53,93,41,32,58,32,92,34,92,34,44,32,92,34,32,123,92,34,41,46,99,111,110,99,97,116,40,105,116,101,109,91,49,93,44,32,92,34,125,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,91,53,93,32,61,32,108,97,121,101,114,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,109,101,100,105,97,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,116,101,109,91,50,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,91,50,93,32,61,32,109,101,100,105,97,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,91,49,93,32,61,32,92,34,64,109,101,100,105,97,32,92,34,46,99,111,110,99,97,116,40,105,116,101,109,91,50,93,44,32,92,34,32,123,92,34,41,46,99,111,110,99,97,116,40,105,116,101,109,91,49,93,44,32,92,34,125,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,91,50,93,32,61,32,109,101,100,105,97,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,115,117,112,112,111,114,116,115,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,116,101,109,91,52,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,91,52,93,32,61,32,92,34,92,34,46,99,111,110,99,97,116,40,115,117,112,112,111,114,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,91,49,93,32,61,32,92,34,64,115,117,112,112,111,114,116,115,32,40,92,34,46,99,111,110,99,97,116,40,105,116,101,109,91,52,93,44,32,92,34,41,32,123,92,34,41,46,99,111,110,99,97,116,40,105,116,101,109,91,49,93,44,32,92,34,125,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,91,52,93,32,61,32,115,117,112,112,111,114,116,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,108,105,115,116,46,112,117,115,104,40,105,116,101,109,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,32,32,114,101,116,117,114,110,32,108,105,115,116,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,103,101,116,85,114,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,103,101,116,85,114,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,117,114,108,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,105,102,32,40,33,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,32,32,125,92,110,32,32,105,102,32,40,33,117,114,108,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,117,114,108,59,92,110,32,32,125,92,110,32,32,117,114,108,32,61,32,83,116,114,105,110,103,40,117,114,108,46,95,95,101,115,77,111,100,117,108,101,32,63,32,117,114,108,46,100,101,102,97,117,108,116,32,58,32,117,114,108,41,59,92,110,92,110,32,32,47,47,32,73,102,32,117,114,108,32,105,115,32,97,108,114,101,97,100,121,32,119,114,97,112,112,101,100,32,105,110,32,113,117,111,116,101,115,44,32,114,101,109,111,118,101,32,116,104,101,109,92,110,32,32,105,102,32,40,47,94,91,39,92,34,93,46,42,91,39,92,34,93,36,47,46,116,101,115,116,40,117,114,108,41,41,32,123,92,110,32,32,32,32,117,114,108,32,61,32,117,114,108,46,115,108,105,99,101,40,49,44,32,45,49,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,111,112,116,105,111,110,115,46,104,97,115,104,41,32,123,92,110,32,32,32,32,117,114,108,32,43,61,32,111,112,116,105,111,110,115,46,104,97,115,104,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,83,104,111,117,108,100,32,117,114,108,32,98,101,32,119,114,97,112,112,101,100,63,92,110,32,32,47,47,32,83,101,101,32,104,116,116,112,115,58,47,47,100,114,97,102,116,115,46,99,115,115,119,103,46,111,114,103,47,99,115,115,45,118,97,108,117,101,115,45,51,47,35,117,114,108,115,92,110,32,32,105,102,32,40,47,91,92,34,39,40,41,32,92,92,116,92,92,110,93,124,40,37,50,48,41,47,46,116,101,115,116,40,117,114,108,41,32,124,124,32,111,112,116,105,111,110,115,46,110,101,101,100,81,117,111,116,101,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,92,34,92,92,92,34,92,34,46,99,111,110,99,97,116,40,117,114,108,46,114,101,112,108,97,99,101,40,47,92,34,47,103,44,32,39,92,92,92,92,92,34,39,41,46,114,101,112,108,97,99,101,40,47,92,92,110,47,103,44,32,92,34,92,92,92,92,110,92,34,41,44,32,92,34,92,92,92,34,92,34,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,117,114,108,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,103,101,116,85,114,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,105,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,91,49,93,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,98,47,97,120,105,111,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,97,120,105,111,115,46,106,115,92,34,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,97,100,97,112,116,101,114,115,47,120,104,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,97,100,97,112,116,101,114,115,47,120,104,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,117,116,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,117,116,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,115,101,116,116,108,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,99,111,114,101,47,115,101,116,116,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,115,101,116,116,108,101,46,106,115,92,34,41,59,92,110,118,97,114,32,99,111,111,107,105,101,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,104,101,108,112,101,114,115,47,99,111,111,107,105,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,99,111,111,107,105,101,115,46,106,115,92,34,41,59,92,110,118,97,114,32,98,117,105,108,100,85,82,76,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,104,101,108,112,101,114,115,47,98,117,105,108,100,85,82,76,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,98,117,105,108,100,85,82,76,46,106,115,92,34,41,59,92,110,118,97,114,32,98,117,105,108,100,70,117,108,108,80,97,116,104,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,114,101,47,98,117,105,108,100,70,117,108,108,80,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,98,117,105,108,100,70,117,108,108,80,97,116,104,46,106,115,92,34,41,59,92,110,118,97,114,32,112,97,114,115,101,72,101,97,100,101,114,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,104,101,108,112,101,114,115,47,112,97,114,115,101,72,101,97,100,101,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,112,97,114,115,101,72,101,97,100,101,114,115,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,85,82,76,83,97,109,101,79,114,105,103,105,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,104,101,108,112,101,114,115,47,105,115,85,82,76,83,97,109,101,79,114,105,103,105,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,105,115,85,82,76,83,97,109,101,79,114,105,103,105,110,46,106,115,92,34,41,59,92,110,118,97,114,32,99,114,101,97,116,101,69,114,114,111,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,114,101,47,99,114,101,97,116,101,69,114,114,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,99,114,101,97,116,101,69,114,114,111,114,46,106,115,92,34,41,59,92,110,118,97,114,32,100,101,102,97,117,108,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,100,101,102,97,117,108,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,100,101,102,97,117,108,116,115,46,106,115,92,34,41,59,92,110,118,97,114,32,67,97,110,99,101,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,97,110,99,101,108,47,67,97,110,99,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,67,97,110,99,101,108,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,120,104,114,65,100,97,112,116,101,114,40,99,111,110,102,105,103,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,100,105,115,112,97,116,99,104,88,104,114,82,101,113,117,101,115,116,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,113,117,101,115,116,68,97,116,97,32,61,32,99,111,110,102,105,103,46,100,97,116,97,59,92,110,32,32,32,32,118,97,114,32,114,101,113,117,101,115,116,72,101,97,100,101,114,115,32,61,32,99,111,110,102,105,103,46,104,101,97,100,101,114,115,59,92,110,32,32,32,32,118,97,114,32,114,101,115,112,111,110,115,101,84,121,112,101,32,61,32,99,111,110,102,105,103,46,114,101,115,112,111,110,115,101,84,121,112,101,59,92,110,32,32,32,32,118,97,114,32,111,110,67,97,110,99,101,108,101,100,59,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,100,111,110,101,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,99,111,110,102,105,103,46,99,97,110,99,101,108,84,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,102,105,103,46,99,97,110,99,101,108,84,111,107,101,110,46,117,110,115,117,98,115,99,114,105,98,101,40,111,110,67,97,110,99,101,108,101,100,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,99,111,110,102,105,103,46,115,105,103,110,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,102,105,103,46,115,105,103,110,97,108,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,97,98,111,114,116,39,44,32,111,110,67,97,110,99,101,108,101,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,117,116,105,108,115,46,105,115,70,111,114,109,68,97,116,97,40,114,101,113,117,101,115,116,68,97,116,97,41,41,32,123,92,110,32,32,32,32,32,32,100,101,108,101,116,101,32,114,101,113,117,101,115,116,72,101,97,100,101,114,115,91,39,67,111,110,116,101,110,116,45,84,121,112,101,39,93,59,32,47,47,32,76,101,116,32,116,104,101,32,98,114,111,119,115,101,114,32,115,101,116,32,105,116,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,114,101,113,117,101,115,116,32,61,32,110,101,119,32,88,77,76,72,116,116,112,82,101,113,117,101,115,116,40,41,59,92,110,92,110,32,32,32,32,47,47,32,72,84,84,80,32,98,97,115,105,99,32,97,117,116,104,101,110,116,105,99,97,116,105,111,110,92,110,32,32,32,32,105,102,32,40,99,111,110,102,105,103,46,97,117,116,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,117,115,101,114,110,97,109,101,32,61,32,99,111,110,102,105,103,46,97,117,116,104,46,117,115,101,114,110,97,109,101,32,124,124,32,39,39,59,92,110,32,32,32,32,32,32,118,97,114,32,112,97,115,115,119,111,114,100,32,61,32,99,111,110,102,105,103,46,97,117,116,104,46,112,97,115,115,119,111,114,100,32,63,32,117,110,101,115,99,97,112,101,40,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,99,111,110,102,105,103,46,97,117,116,104,46,112,97,115,115,119,111,114,100,41,41,32,58,32,39,39,59,92,110,32,32,32,32,32,32,114,101,113,117,101,115,116,72,101,97,100,101,114,115,46,65,117,116,104,111,114,105,122,97,116,105,111,110,32,61,32,39,66,97,115,105,99,32,39,32,43,32,98,116,111,97,40,117,115,101,114,110,97,109,101,32,43,32,39,58,39,32,43,32,112,97,115,115,119,111,114,100,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,102,117,108,108,80,97,116,104,32,61,32,98,117,105,108,100,70,117,108,108,80,97,116,104,40,99,111,110,102,105,103,46,98,97,115,101,85,82,76,44,32,99,111,110,102,105,103,46,117,114,108,41,59,92,110,32,32,32,32,114,101,113,117,101,115,116,46,111,112,101,110,40,99,111,110,102,105,103,46,109,101,116,104,111,100,46,116,111,85,112,112,101,114,67,97,115,101,40,41,44,32,98,117,105,108,100,85,82,76,40,102,117,108,108,80,97,116,104,44,32,99,111,110,102,105,103,46,112,97,114,97,109,115,44,32,99,111,110,102,105,103,46,112,97,114,97,109,115,83,101,114,105,97,108,105,122,101,114,41,44,32,116,114,117,101,41,59,92,110,92,110,32,32,32,32,47,47,32,83,101,116,32,116,104,101,32,114,101,113,117,101,115,116,32,116,105,109,101,111,117,116,32,105,110,32,77,83,92,110,32,32,32,32,114,101,113,117,101,115,116,46,116,105,109,101,111,117,116,32,61,32,99,111,110,102,105,103,46,116,105,109,101,111,117,116,59,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,111,110,108,111,97,100,101,110,100,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,114,101,113,117,101,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,80,114,101,112,97,114,101,32,116,104,101,32,114,101,115,112,111,110,115,101,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,112,111,110,115,101,72,101,97,100,101,114,115,32,61,32,39,103,101,116,65,108,108,82,101,115,112,111,110,115,101,72,101,97,100,101,114,115,39,32,105,110,32,114,101,113,117,101,115,116,32,63,32,112,97,114,115,101,72,101,97,100,101,114,115,40,114,101,113,117,101,115,116,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,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,112,111,110,115,101,68,97,116,97,32,61,32,33,114,101,115,112,111,110,115,101,84,121,112,101,32,124,124,32,114,101,115,112,111,110,115,101,84,121,112,101,32,61,61,61,32,39,116,101,120,116,39,32,124,124,32,32,114,101,115,112,111,110,115,101,84,121,112,101,32,61,61,61,32,39,106,115,111,110,39,32,63,92,110,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,46,114,101,115,112,111,110,115,101,84,101,120,116,32,58,32,114,101,113,117,101,115,116,46,114,101,115,112,111,110,115,101,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,112,111,110,115,101,32,61,32,123,92,110,32,32,32,32,32,32,32,32,100,97,116,97,58,32,114,101,115,112,111,110,115,101,68,97,116,97,44,92,110,32,32,32,32,32,32,32,32,115,116,97,116,117,115,58,32,114,101,113,117,101,115,116,46,115,116,97,116,117,115,44,92,110,32,32,32,32,32,32,32,32,115,116,97,116,117,115,84,101,120,116,58,32,114,101,113,117,101,115,116,46,115,116,97,116,117,115,84,101,120,116,44,92,110,32,32,32,32,32,32,32,32,104,101,97,100,101,114,115,58,32,114,101,115,112,111,110,115,101,72,101,97,100,101,114,115,44,92,110,32,32,32,32,32,32,32,32,99,111,110,102,105,103,58,32,99,111,110,102,105,103,44,92,110,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,58,32,114,101,113,117,101,115,116,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,115,101,116,116,108,101,40,102,117,110,99,116,105,111,110,32,95,114,101,115,111,108,118,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,111,108,118,101,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,100,111,110,101,40,41,59,92,110,32,32,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,32,95,114,101,106,101,99,116,40,101,114,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,106,101,99,116,40,101,114,114,41,59,92,110,32,32,32,32,32,32,32,32,100,111,110,101,40,41,59,92,110,32,32,32,32,32,32,125,44,32,114,101,115,112,111,110,115,101,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,67,108,101,97,110,32,117,112,32,114,101,113,117,101,115,116,92,110,32,32,32,32,32,32,114,101,113,117,101,115,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,39,111,110,108,111,97,100,101,110,100,39,32,105,110,32,114,101,113,117,101,115,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,85,115,101,32,111,110,108,111,97,100,101,110,100,32,105,102,32,97,118,97,105,108,97,98,108,101,92,110,32,32,32,32,32,32,114,101,113,117,101,115,116,46,111,110,108,111,97,100,101,110,100,32,61,32,111,110,108,111,97,100,101,110,100,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,76,105,115,116,101,110,32,102,111,114,32,114,101,97,100,121,32,115,116,97,116,101,32,116,111,32,101,109,117,108,97,116,101,32,111,110,108,111,97,100,101,110,100,92,110,32,32,32,32,32,32,114,101,113,117,101,115,116,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,76,111,97,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,114,101,113,117,101,115,116,32,124,124,32,114,101,113,117,101,115,116,46,114,101,97,100,121,83,116,97,116,101,32,33,61,61,32,52,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,114,101,113,117,101,115,116,32,101,114,114,111,114,101,100,32,111,117,116,32,97,110,100,32,119,101,32,100,105,100,110,39,116,32,103,101,116,32,97,32,114,101,115,112,111,110,115,101,44,32,116,104,105,115,32,119,105,108,108,32,98,101,92,110,32,32,32,32,32,32,32,32,47,47,32,104,97,110,100,108,101,100,32,98,121,32,111,110,101,114,114,111,114,32,105,110,115,116,101,97,100,92,110,32,32,32,32,32,32,32,32,47,47,32,87,105,116,104,32,111,110,101,32,101,120,99,101,112,116,105,111,110,58,32,114,101,113,117,101,115,116,32,116,104,97,116,32,117,115,105,110,103,32,102,105,108,101,58,32,112,114,111,116,111,99,111,108,44,32,109,111,115,116,32,98,114,111,119,115,101,114,115,92,110,32,32,32,32,32,32,32,32,47,47,32,119,105,108,108,32,114,101,116,117,114,110,32,115,116,97,116,117,115,32,97,115,32,48,32,101,118,101,110,32,116,104,111,117,103,104,32,105,116,39,115,32,97,32,115,117,99,99,101,115,115,102,117,108,32,114,101,113,117,101,115,116,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,101,113,117,101,115,116,46,115,116,97,116,117,115,32,61,61,61,32,48,32,38,38,32,33,40,114,101,113,117,101,115,116,46,114,101,115,112,111,110,115,101,85,82,76,32,38,38,32,114,101,113,117,101,115,116,46,114,101,115,112,111,110,115,101,85,82,76,46,105,110,100,101,120,79,102,40,39,102,105,108,101,58,39,41,32,61,61,61,32,48,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,114,101,97,100,121,115,116,97,116,101,32,104,97,110,100,108,101,114,32,105,115,32,99,97,108,108,105,110,103,32,98,101,102,111,114,101,32,111,110,101,114,114,111,114,32,111,114,32,111,110,116,105,109,101,111,117,116,32,104,97,110,100,108,101,114,115,44,92,110,32,32,32,32,32,32,32,32,47,47,32,115,111,32,119,101,32,115,104,111,117,108,100,32,99,97,108,108,32,111,110,108,111,97,100,101,110,100,32,111,110,32,116,104,101,32,110,101,120,116,32,39,116,105,99,107,39,92,110,32,32,32,32,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,111,110,108,111,97,100,101,110,100,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,72,97,110,100,108,101,32,98,114,111,119,115,101,114,32,114,101,113,117,101,115,116,32,99,97,110,99,101,108,108,97,116,105,111,110,32,40,97,115,32,111,112,112,111,115,101,100,32,116,111,32,97,32,109,97,110,117,97,108,32,99,97,110,99,101,108,108,97,116,105,111,110,41,92,110,32,32,32,32,114,101,113,117,101,115,116,46,111,110,97,98,111,114,116,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,65,98,111,114,116,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,114,101,113,117,101,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,106,101,99,116,40,99,114,101,97,116,101,69,114,114,111,114,40,39,82,101,113,117,101,115,116,32,97,98,111,114,116,101,100,39,44,32,99,111,110,102,105,103,44,32,39,69,67,79,78,78,65,66,79,82,84,69,68,39,44,32,114,101,113,117,101,115,116,41,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,67,108,101,97,110,32,117,112,32,114,101,113,117,101,115,116,92,110,32,32,32,32,32,32,114,101,113,117,101,115,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,47,32,72,97,110,100,108,101,32,108,111,119,32,108,101,118,101,108,32,110,101,116,119,111,114,107,32,101,114,114,111,114,115,92,110,32,32,32,32,114,101,113,117,101,115,116,46,111,110,101,114,114,111,114,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,69,114,114,111,114,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,97,108,32,101,114,114,111,114,115,32,97,114,101,32,104,105,100,100,101,110,32,102,114,111,109,32,117,115,32,98,121,32,116,104,101,32,98,114,111,119,115,101,114,92,110,32,32,32,32,32,32,47,47,32,111,110,101,114,114,111,114,32,115,104,111,117,108,100,32,111,110,108,121,32,102,105,114,101,32,105,102,32,105,116,39,115,32,97,32,110,101,116,119,111,114,107,32,101,114,114,111,114,92,110,32,32,32,32,32,32,114,101,106,101,99,116,40,99,114,101,97,116,101,69,114,114,111,114,40,39,78,101,116,119,111,114,107,32,69,114,114,111,114,39,44,32,99,111,110,102,105,103,44,32,110,117,108,108,44,32,114,101,113,117,101,115,116,41,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,67,108,101,97,110,32,117,112,32,114,101,113,117,101,115,116,92,110,32,32,32,32,32,32,114,101,113,117,101,115,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,47,32,72,97,110,100,108,101,32,116,105,109,101,111,117,116,92,110,32,32,32,32,114,101,113,117,101,115,116,46,111,110,116,105,109,101,111,117,116,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,84,105,109,101,111,117,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,105,109,101,111,117,116,69,114,114,111,114,77,101,115,115,97,103,101,32,61,32,99,111,110,102,105,103,46,116,105,109,101,111,117,116,32,63,32,39,116,105,109,101,111,117,116,32,111,102,32,39,32,43,32,99,111,110,102,105,103,46,116,105,109,101,111,117,116,32,43,32,39,109,115,32,101,120,99,101,101,100,101,100,39,32,58,32,39,116,105,109,101,111,117,116,32,101,120,99,101,101,100,101,100,39,59,92,110,32,32,32,32,32,32,118,97,114,32,116,114,97,110,115,105,116,105,111,110,97,108,32,61,32,99,111,110,102,105,103,46,116,114,97,110,115,105,116,105,111,110,97,108,32,124,124,32,100,101,102,97,117,108,116,115,46,116,114,97,110,115,105,116,105,111,110,97,108,59,92,110,32,32,32,32,32,32,105,102,32,40,99,111,110,102,105,103,46,116,105,109,101,111,117,116,69,114,114,111,114,77,101,115,115,97,103,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,105,109,101,111,117,116,69,114,114,111,114,77,101,115,115,97,103,101,32,61,32,99,111,110,102,105,103,46,116,105,109,101,111,117,116,69,114,114,111,114,77,101,115,115,97,103,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,106,101,99,116,40,99,114,101,97,116,101,69,114,114,111,114,40,92,110,32,32,32,32,32,32,32,32,116,105,109,101,111,117,116,69,114,114,111,114,77,101,115,115,97,103,101,44,92,110,32,32,32,32,32,32,32,32,99,111,110,102,105,103,44,92,110,32,32,32,32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,97,108,46,99,108,97,114,105,102,121,84,105,109,101,111,117,116,69,114,114,111,114,32,63,32,39,69,84,73,77,69,68,79,85,84,39,32,58,32,39,69,67,79,78,78,65,66,79,82,84,69,68,39,44,92,110,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,41,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,67,108,101,97,110,32,117,112,32,114,101,113,117,101,115,116,92,110,32,32,32,32,32,32,114,101,113,117,101,115,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,120,115,114,102,32,104,101,97,100,101,114,92,110,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,111,110,108,121,32,100,111,110,101,32,105,102,32,114,117,110,110,105,110,103,32,105,110,32,97,32,115,116,97,110,100,97,114,100,32,98,114,111,119,115,101,114,32,101,110,118,105,114,111,110,109,101,110,116,46,92,110,32,32,32,32,47,47,32,83,112,101,99,105,102,105,99,97,108,108,121,32,110,111,116,32,105,102,32,119,101,39,114,101,32,105,110,32,97,32,119,101,98,32,119,111,114,107,101,114,44,32,111,114,32,114,101,97,99,116,45,110,97,116,105,118,101,46,92,110,32,32,32,32,105,102,32,40,117,116,105,108,115,46,105,115,83,116,97,110,100,97,114,100,66,114,111,119,115,101,114,69,110,118,40,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,65,100,100,32,120,115,114,102,32,104,101,97,100,101,114,92,110,32,32,32,32,32,32,118,97,114,32,120,115,114,102,86,97,108,117,101,32,61,32,40,99,111,110,102,105,103,46,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,32,124,124,32,105,115,85,82,76,83,97,109,101,79,114,105,103,105,110,40,102,117,108,108,80,97,116,104,41,41,32,38,38,32,99,111,110,102,105,103,46,120,115,114,102,67,111,111,107,105,101,78,97,109,101,32,63,92,110,32,32,32,32,32,32,32,32,99,111,111,107,105,101,115,46,114,101,97,100,40,99,111,110,102,105,103,46,120,115,114,102,67,111,111,107,105,101,78,97,109,101,41,32,58,92,110,32,32,32,32,32,32,32,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,120,115,114,102,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,72,101,97,100,101,114,115,91,99,111,110,102,105,103,46,120,115,114,102,72,101,97,100,101,114,78,97,109,101,93,32,61,32,120,115,114,102,86,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,104,101,97,100,101,114,115,32,116,111,32,116,104,101,32,114,101,113,117,101,115,116,92,110,32,32,32,32,105,102,32,40,39,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,39,32,105,110,32,114,101,113,117,101,115,116,41,32,123,92,110,32,32,32,32,32,32,117,116,105,108,115,46,102,111,114,69,97,99,104,40,114,101,113,117,101,115,116,72,101,97,100,101,114,115,44,32,102,117,110,99,116,105,111,110,32,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,118,97,108,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,114,101,113,117,101,115,116,68,97,116,97,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,107,101,121,46,116,111,76,111,119,101,114,67,97,115,101,40,41,32,61,61,61,32,39,99,111,110,116,101,110,116,45,116,121,112,101,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,67,111,110,116,101,110,116,45,84,121,112,101,32,105,102,32,100,97,116,97,32,105,115,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,114,101,113,117,101,115,116,72,101,97,100,101,114,115,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,32,97,100,100,32,104,101,97,100,101,114,32,116,111,32,116,104,101,32,114,101,113,117,101,115,116,92,110,32,32,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,107,101,121,44,32,118,97,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,32,116,111,32,114,101,113,117,101,115,116,32,105,102,32,110,101,101,100,101,100,92,110,32,32,32,32,105,102,32,40,33,117,116,105,108,115,46,105,115,85,110,100,101,102,105,110,101,100,40,99,111,110,102,105,103,46,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,41,41,32,123,92,110,32,32,32,32,32,32,114,101,113,117,101,115,116,46,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,32,61,32,33,33,99,111,110,102,105,103,46,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,114,101,115,112,111,110,115,101,84,121,112,101,32,116,111,32,114,101,113,117,101,115,116,32,105,102,32,110,101,101,100,101,100,92,110,32,32,32,32,105,102,32,40,114,101,115,112,111,110,115,101,84,121,112,101,32,38,38,32,114,101,115,112,111,110,115,101,84,121,112,101,32,33,61,61,32,39,106,115,111,110,39,41,32,123,92,110,32,32,32,32,32,32,114,101,113,117,101,115,116,46,114,101,115,112,111,110,115,101,84,121,112,101,32,61,32,99,111,110,102,105,103,46,114,101,115,112,111,110,115,101,84,121,112,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,72,97,110,100,108,101,32,112,114,111,103,114,101,115,115,32,105,102,32,110,101,101,100,101,100,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,99,111,110,102,105,103,46,111,110,68,111,119,110,108,111,97,100,80,114,111,103,114,101,115,115,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,114,101,113,117,101,115,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,112,114,111,103,114,101,115,115,39,44,32,99,111,110,102,105,103,46,111,110,68,111,119,110,108,111,97,100,80,114,111,103,114,101,115,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,78,111,116,32,97,108,108,32,98,114,111,119,115,101,114,115,32,115,117,112,112,111,114,116,32,117,112,108,111,97,100,32,101,118,101,110,116,115,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,99,111,110,102,105,103,46,111,110,85,112,108,111,97,100,80,114,111,103,114,101,115,115,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,114,101,113,117,101,115,116,46,117,112,108,111,97,100,41,32,123,92,110,32,32,32,32,32,32,114,101,113,117,101,115,116,46,117,112,108,111,97,100,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,112,114,111,103,114,101,115,115,39,44,32,99,111,110,102,105,103,46,111,110,85,112,108,111,97,100,80,114,111,103,114,101,115,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,99,111,110,102,105,103,46,99,97,110,99,101,108,84,111,107,101,110,32,124,124,32,99,111,110,102,105,103,46,115,105,103,110,97,108,41,32,123,92,110,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,99,97,110,99,101,108,108,97,116,105,111,110,92,110,32,32,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,102,117,110,99,45,110,97,109,101,115,92,110,32,32,32,32,32,32,111,110,67,97,110,99,101,108,101,100,32,61,32,102,117,110,99,116,105,111,110,40,99,97,110,99,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,114,101,113,117,101,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,106,101,99,116,40,33,99,97,110,99,101,108,32,124,124,32,40,99,97,110,99,101,108,32,38,38,32,99,97,110,99,101,108,46,116,121,112,101,41,32,63,32,110,101,119,32,67,97,110,99,101,108,40,39,99,97,110,99,101,108,101,100,39,41,32,58,32,99,97,110,99,101,108,41,59,92,110,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,46,97,98,111,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,99,97,110,99,101,108,84,111,107,101,110,32,38,38,32,99,111,110,102,105,103,46,99,97,110,99,101,108,84,111,107,101,110,46,115,117,98,115,99,114,105,98,101,40,111,110,67,97,110,99,101,108,101,100,41,59,92,110,32,32,32,32,32,32,105,102,32,40,99,111,110,102,105,103,46,115,105,103,110,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,102,105,103,46,115,105,103,110,97,108,46,97,98,111,114,116,101,100,32,63,32,111,110,67,97,110,99,101,108,101,100,40,41,32,58,32,99,111,110,102,105,103,46,115,105,103,110,97,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,97,98,111,114,116,39,44,32,111,110,67,97,110,99,101,108,101,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,114,101,113,117,101,115,116,68,97,116,97,41,32,123,92,110,32,32,32,32,32,32,114,101,113,117,101,115,116,68,97,116,97,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,83,101,110,100,32,116,104,101,32,114,101,113,117,101,115,116,92,110,32,32,32,32,114,101,113,117,101,115,116,46,115,101,110,100,40,114,101,113,117,101,115,116,68,97,116,97,41,59,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,97,100,97,112,116,101,114,115,47,120,104,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,97,120,105,111,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,97,120,105,111,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,117,116,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,117,116,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,98,105,110,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,98,105,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,98,105,110,100,46,106,115,92,34,41,59,92,110,118,97,114,32,65,120,105,111,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,114,101,47,65,120,105,111,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,65,120,105,111,115,46,106,115,92,34,41,59,92,110,118,97,114,32,109,101,114,103,101,67,111,110,102,105,103,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,114,101,47,109,101,114,103,101,67,111,110,102,105,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,109,101,114,103,101,67,111,110,102,105,103,46,106,115,92,34,41,59,92,110,118,97,114,32,100,101,102,97,117,108,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,102,97,117,108,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,100,101,102,97,117,108,116,115,46,106,115,92,34,41,59,92,110,92,110,47,42,42,92,110,32,42,32,67,114,101,97,116,101,32,97,110,32,105,110,115,116,97,110,99,101,32,111,102,32,65,120,105,111,115,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,100,101,102,97,117,108,116,67,111,110,102,105,103,32,84,104,101,32,100,101,102,97,117,108,116,32,99,111,110,102,105,103,32,102,111,114,32,116,104,101,32,105,110,115,116,97,110,99,101,92,110,32,42,32,64,114,101,116,117,114,110,32,123,65,120,105,111,115,125,32,65,32,110,101,119,32,105,110,115,116,97,110,99,101,32,111,102,32,65,120,105,111,115,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,73,110,115,116,97,110,99,101,40,100,101,102,97,117,108,116,67,111,110,102,105,103,41,32,123,92,110,32,32,118,97,114,32,99,111,110,116,101,120,116,32,61,32,110,101,119,32,65,120,105,111,115,40,100,101,102,97,117,108,116,67,111,110,102,105,103,41,59,92,110,32,32,118,97,114,32,105,110,115,116,97,110,99,101,32,61,32,98,105,110,100,40,65,120,105,111,115,46,112,114,111,116,111,116,121,112,101,46,114,101,113,117,101,115,116,44,32,99,111,110,116,101,120,116,41,59,92,110,92,110,32,32,47,47,32,67,111,112,121,32,97,120,105,111,115,46,112,114,111,116,111,116,121,112,101,32,116,111,32,105,110,115,116,97,110,99,101,92,110,32,32,117,116,105,108,115,46,101,120,116,101,110,100,40,105,110,115,116,97,110,99,101,44,32,65,120,105,111,115,46,112,114,111,116,111,116,121,112,101,44,32,99,111,110,116,101,120,116,41,59,92,110,92,110,32,32,47,47,32,67,111,112,121,32,99,111,110,116,101,120,116,32,116,111,32,105,110,115,116,97,110,99,101,92,110,32,32,117,116,105,108,115,46,101,120,116,101,110,100,40,105,110,115,116,97,110,99,101,44,32,99,111,110,116,101,120,116,41,59,92,110,92,110,32,32,47,47,32,70,97,99,116,111,114,121,32,102,111,114,32,99,114,101,97,116,105,110,103,32,110,101,119,32,105,110,115,116,97,110,99,101,115,92,110,32,32,105,110,115,116,97,110,99,101,46,99,114,101,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,40,105,110,115,116,97,110,99,101,67,111,110,102,105,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,73,110,115,116,97,110,99,101,40,109,101,114,103,101,67,111,110,102,105,103,40,100,101,102,97,117,108,116,67,111,110,102,105,103,44,32,105,110,115,116,97,110,99,101,67,111,110,102,105,103,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,105,110,115,116,97,110,99,101,59,92,110,125,92,110,92,110,47,47,32,67,114,101,97,116,101,32,116,104,101,32,100,101,102,97,117,108,116,32,105,110,115,116,97,110,99,101,32,116,111,32,98,101,32,101,120,112,111,114,116,101,100,92,110,118,97,114,32,97,120,105,111,115,32,61,32,99,114,101,97,116,101,73,110,115,116,97,110,99,101,40,100,101,102,97,117,108,116,115,41,59,92,110,92,110,47,47,32,69,120,112,111,115,101,32,65,120,105,111,115,32,99,108,97,115,115,32,116,111,32,97,108,108,111,119,32,99,108,97,115,115,32,105,110,104,101,114,105,116,97,110,99,101,92,110,97,120,105,111,115,46,65,120,105,111,115,32,61,32,65,120,105,111,115,59,92,110,92,110,47,47,32,69,120,112,111,115,101,32,67,97,110,99,101,108,32,38,32,67,97,110,99,101,108,84,111,107,101,110,92,110,97,120,105,111,115,46,67,97,110,99,101,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,110,99,101,108,47,67,97,110,99,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,67,97,110,99,101,108,46,106,115,92,34,41,59,92,110,97,120,105,111,115,46,67,97,110,99,101,108,84,111,107,101,110,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,110,99,101,108,47,67,97,110,99,101,108,84,111,107,101,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,67,97,110,99,101,108,84,111,107,101,110,46,106,115,92,34,41,59,92,110,97,120,105,111,115,46,105,115,67,97,110,99,101,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,110,99,101,108,47,105,115,67,97,110,99,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,105,115,67,97,110,99,101,108,46,106,115,92,34,41,59,92,110,97,120,105,111,115,46,86,69,82,83,73,79,78,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,110,118,47,100,97,116,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,101,110,118,47,100,97,116,97,46,106,115,92,34,41,46,118,101,114,115,105,111,110,41,59,92,110,92,110,47,47,32,69,120,112,111,115,101,32,97,108,108,47,115,112,114,101,97,100,92,110,97,120,105,111,115,46,97,108,108,32,61,32,102,117,110,99,116,105,111,110,32,97,108,108,40,112,114,111,109,105,115,101,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,112,114,111,109,105,115,101,115,41,59,92,110,125,59,92,110,97,120,105,111,115,46,115,112,114,101,97,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,115,112,114,101,97,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,115,112,114,101,97,100,46,106,115,92,34,41,59,92,110,92,110,47,47,32,69,120,112,111,115,101,32,105,115,65,120,105,111,115,69,114,114,111,114,92,110,97,120,105,111,115,46,105,115,65,120,105,111,115,69,114,114,111,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,105,115,65,120,105,111,115,69,114,114,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,105,115,65,120,105,111,115,69,114,114,111,114,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,97,120,105,111,115,59,92,110,92,110,47,47,32,65,108,108,111,119,32,117,115,101,32,111,102,32,100,101,102,97,117,108,116,32,105,109,112,111,114,116,32,115,121,110,116,97,120,32,105,110,32,84,121,112,101,83,99,114,105,112,116,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,97,120,105,111,115,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,97,120,105,111,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,67,97,110,99,101,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,67,97,110,99,101,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,47,42,42,92,110,32,42,32,65,32,96,67,97,110,99,101,108,96,32,105,115,32,97,110,32,111,98,106,101,99,116,32,116,104,97,116,32,105,115,32,116,104,114,111,119,110,32,119,104,101,110,32,97,110,32,111,112,101,114,97,116,105,111,110,32,105,115,32,99,97,110,99,101,108,101,100,46,92,110,32,42,92,110,32,42,32,64,99,108,97,115,115,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,61,125,32,109,101,115,115,97,103,101,32,84,104,101,32,109,101,115,115,97,103,101,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,67,97,110,99,101,108,40,109,101,115,115,97,103,101,41,32,123,92,110,32,32,116,104,105,115,46,109,101,115,115,97,103,101,32,61,32,109,101,115,115,97,103,101,59,92,110,125,92,110,92,110,67,97,110,99,101,108,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,116,111,83,116,114,105,110,103,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,39,67,97,110,99,101,108,39,32,43,32,40,116,104,105,115,46,109,101,115,115,97,103,101,32,63,32,39,58,32,39,32,43,32,116,104,105,115,46,109,101,115,115,97,103,101,32,58,32,39,39,41,59,92,110,125,59,92,110,92,110,67,97,110,99,101,108,46,112,114,111,116,111,116,121,112,101,46,95,95,67,65,78,67,69,76,95,95,32,61,32,116,114,117,101,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,67,97,110,99,101,108,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,67,97,110,99,101,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,67,97,110,99,101,108,84,111,107,101,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,67,97,110,99,101,108,84,111,107,101,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,67,97,110,99,101,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,67,97,110,99,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,67,97,110,99,101,108,46,106,115,92,34,41,59,92,110,92,110,47,42,42,92,110,32,42,32,65,32,96,67,97,110,99,101,108,84,111,107,101,110,96,32,105,115,32,97,110,32,111,98,106,101,99,116,32,116,104,97,116,32,99,97,110,32,98,101,32,117,115,101,100,32,116,111,32,114,101,113,117,101,115,116,32,99,97,110,99,101,108,108,97,116,105,111,110,32,111,102,32,97,110,32,111,112,101,114,97,116,105,111,110,46,92,110,32,42,92,110,32,42,32,64,99,108,97,115,115,92,110,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,101,120,101,99,117,116,111,114,32,84,104,101,32,101,120,101,99,117,116,111,114,32,102,117,110,99,116,105,111,110,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,67,97,110,99,101,108,84,111,107,101,110,40,101,120,101,99,117,116,111,114,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,101,120,101,99,117,116,111,114,32,33,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,101,120,101,99,117,116,111,114,32,109,117,115,116,32,98,101,32,97,32,102,117,110,99,116,105,111,110,46,39,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,114,101,115,111,108,118,101,80,114,111,109,105,115,101,59,92,110,92,110,32,32,116,104,105,115,46,112,114,111,109,105,115,101,32,61,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,112,114,111,109,105,115,101,69,120,101,99,117,116,111,114,40,114,101,115,111,108,118,101,41,32,123,92,110,32,32,32,32,114,101,115,111,108,118,101,80,114,111,109,105,115,101,32,61,32,114,101,115,111,108,118,101,59,92,110,32,32,125,41,59,92,110,92,110,32,32,118,97,114,32,116,111,107,101,110,32,61,32,116,104,105,115,59,92,110,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,102,117,110,99,45,110,97,109,101,115,92,110,32,32,116,104,105,115,46,112,114,111,109,105,115,101,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,99,97,110,99,101,108,41,32,123,92,110,32,32,32,32,105,102,32,40,33,116,111,107,101,110,46,95,108,105,115,116,101,110,101,114,115,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,118,97,114,32,105,59,92,110,32,32,32,32,118,97,114,32,108,32,61,32,116,111,107,101,110,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,116,111,107,101,110,46,95,108,105,115,116,101,110,101,114,115,91,105,93,40,99,97,110,99,101,108,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,111,107,101,110,46,95,108,105,115,116,101,110,101,114,115,32,61,32,110,117,108,108,59,92,110,32,32,125,41,59,92,110,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,102,117,110,99,45,110,97,109,101,115,92,110,32,32,116,104,105,115,46,112,114,111,109,105,115,101,46,116,104,101,110,32,61,32,102,117,110,99,116,105,111,110,40,111,110,102,117,108,102,105,108,108,101,100,41,32,123,92,110,32,32,32,32,118,97,114,32,95,114,101,115,111,108,118,101,59,92,110,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,102,117,110,99,45,110,97,109,101,115,92,110,32,32,32,32,118,97,114,32,112,114,111,109,105,115,101,32,61,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,114,101,115,111,108,118,101,41,32,123,92,110,32,32,32,32,32,32,116,111,107,101,110,46,115,117,98,115,99,114,105,98,101,40,114,101,115,111,108,118,101,41,59,92,110,32,32,32,32,32,32,95,114,101,115,111,108,118,101,32,61,32,114,101,115,111,108,118,101,59,92,110,32,32,32,32,125,41,46,116,104,101,110,40,111,110,102,117,108,102,105,108,108,101,100,41,59,92,110,92,110,32,32,32,32,112,114,111,109,105,115,101,46,99,97,110,99,101,108,32,61,32,102,117,110,99,116,105,111,110,32,114,101,106,101,99,116,40,41,32,123,92,110,32,32,32,32,32,32,116,111,107,101,110,46,117,110,115,117,98,115,99,114,105,98,101,40,95,114,101,115,111,108,118,101,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,109,105,115,101,59,92,110,32,32,125,59,92,110,92,110,32,32,101,120,101,99,117,116,111,114,40,102,117,110,99,116,105,111,110,32,99,97,110,99,101,108,40,109,101,115,115,97,103,101,41,32,123,92,110,32,32,32,32,105,102,32,40,116,111,107,101,110,46,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,97,110,99,101,108,108,97,116,105,111,110,32,104,97,115,32,97,108,114,101,97,100,121,32,98,101,101,110,32,114,101,113,117,101,115,116,101,100,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,111,107,101,110,46,114,101,97,115,111,110,32,61,32,110,101,119,32,67,97,110,99,101,108,40,109,101,115,115,97,103,101,41,59,92,110,32,32,32,32,114,101,115,111,108,118,101,80,114,111,109,105,115,101,40,116,111,107,101,110,46,114,101,97,115,111,110,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,84,104,114,111,119,115,32,97,32,96,67,97,110,99,101,108,96,32,105,102,32,99,97,110,99,101,108,108,97,116,105,111,110,32,104,97,115,32,98,101,101,110,32,114,101,113,117,101,115,116,101,100,46,92,110,32,42,47,92,110,67,97,110,99,101,108,84,111,107,101,110,46,112,114,111,116,111,116,121,112,101,46,116,104,114,111,119,73,102,82,101,113,117,101,115,116,101,100,32,61,32,102,117,110,99,116,105,111,110,32,116,104,114,111,119,73,102,82,101,113,117,101,115,116,101,100,40,41,32,123,92,110,32,32,105,102,32,40,116,104,105,115,46,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,116,104,105,115,46,114,101,97,115,111,110,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,83,117,98,115,99,114,105,98,101,32,116,111,32,116,104,101,32,99,97,110,99,101,108,32,115,105,103,110,97,108,92,110,32,42,47,92,110,92,110,67,97,110,99,101,108,84,111,107,101,110,46,112,114,111,116,111,116,121,112,101,46,115,117,98,115,99,114,105,98,101,32,61,32,102,117,110,99,116,105,111,110,32,115,117,98,115,99,114,105,98,101,40,108,105,115,116,101,110,101,114,41,32,123,92,110,32,32,105,102,32,40,116,104,105,115,46,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,108,105,115,116,101,110,101,114,40,116,104,105,115,46,114,101,97,115,111,110,41,59,92,110,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,116,104,105,115,46,95,108,105,115,116,101,110,101,114,115,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,108,105,115,116,101,110,101,114,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,115,116,101,110,101,114,115,32,61,32,91,108,105,115,116,101,110,101,114,93,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,85,110,115,117,98,115,99,114,105,98,101,32,102,114,111,109,32,116,104,101,32,99,97,110,99,101,108,32,115,105,103,110,97,108,92,110,32,42,47,92,110,92,110,67,97,110,99,101,108,84,111,107,101,110,46,112,114,111,116,111,116,121,112,101,46,117,110,115,117,98,115,99,114,105,98,101,32,61,32,102,117,110,99,116,105,111,110,32,117,110,115,117,98,115,99,114,105,98,101,40,108,105,115,116,101,110,101,114,41,32,123,92,110,32,32,105,102,32,40,33,116,104,105,115,46,95,108,105,115,116,101,110,101,114,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,125,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,116,104,105,115,46,95,108,105,115,116,101,110,101,114,115,46,105,110,100,101,120,79,102,40,108,105,115,116,101,110,101,114,41,59,92,110,32,32,105,102,32,40,105,110,100,101,120,32,33,61,61,32,45,49,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,115,116,101,110,101,114,115,46,115,112,108,105,99,101,40,105,110,100,101,120,44,32,49,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,82,101,116,117,114,110,115,32,97,110,32,111,98,106,101,99,116,32,116,104,97,116,32,99,111,110,116,97,105,110,115,32,97,32,110,101,119,32,96,67,97,110,99,101,108,84,111,107,101,110,96,32,97,110,100,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,44,32,119,104,101,110,32,99,97,108,108,101,100,44,92,110,32,42,32,99,97,110,99,101,108,115,32,116,104,101,32,96,67,97,110,99,101,108,84,111,107,101,110,96,46,92,110,32,42,47,92,110,67,97,110,99,101,108,84,111,107,101,110,46,115,111,117,114,99,101,32,61,32,102,117,110,99,116,105,111,110,32,115,111,117,114,99,101,40,41,32,123,92,110,32,32,118,97,114,32,99,97,110,99,101,108,59,92,110,32,32,118,97,114,32,116,111,107,101,110,32,61,32,110,101,119,32,67,97,110,99,101,108,84,111,107,101,110,40,102,117,110,99,116,105,111,110,32,101,120,101,99,117,116,111,114,40,99,41,32,123,92,110,32,32,32,32,99,97,110,99,101,108,32,61,32,99,59,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,116,111,107,101,110,58,32,116,111,107,101,110,44,92,110,32,32,32,32,99,97,110,99,101,108,58,32,99,97,110,99,101,108,92,110,32,32,125,59,92,110,125,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,67,97,110,99,101,108,84,111,107,101,110,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,67,97,110,99,101,108,84,111,107,101,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,105,115,67,97,110,99,101,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,105,115,67,97,110,99,101,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,105,115,67,97,110,99,101,108,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,33,40,118,97,108,117,101,32,38,38,32,118,97,108,117,101,46,95,95,67,65,78,67,69,76,95,95,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,105,115,67,97,110,99,101,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,65,120,105,111,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,65,120,105,111,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,117,116,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,117,116,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,98,117,105,108,100,85,82,76,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,104,101,108,112,101,114,115,47,98,117,105,108,100,85,82,76,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,98,117,105,108,100,85,82,76,46,106,115,92,34,41,59,92,110,118,97,114,32,73,110,116,101,114,99,101,112,116,111,114,77,97,110,97,103,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,73,110,116,101,114,99,101,112,116,111,114,77,97,110,97,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,73,110,116,101,114,99,101,112,116,111,114,77,97,110,97,103,101,114,46,106,115,92,34,41,59,92,110,118,97,114,32,100,105,115,112,97,116,99,104,82,101,113,117,101,115,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,115,112,97,116,99,104,82,101,113,117,101,115,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,100,105,115,112,97,116,99,104,82,101,113,117,101,115,116,46,106,115,92,34,41,59,92,110,118,97,114,32,109,101,114,103,101,67,111,110,102,105,103,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,114,103,101,67,111,110,102,105,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,109,101,114,103,101,67,111,110,102,105,103,46,106,115,92,34,41,59,92,110,118,97,114,32,118,97,108,105,100,97,116,111,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,104,101,108,112,101,114,115,47,118,97,108,105,100,97,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,118,97,108,105,100,97,116,111,114,46,106,115,92,34,41,59,92,110,92,110,118,97,114,32,118,97,108,105,100,97,116,111,114,115,32,61,32,118,97,108,105,100,97,116,111,114,46,118,97,108,105,100,97,116,111,114,115,59,92,110,47,42,42,92,110,32,42,32,67,114,101,97,116,101,32,97,32,110,101,119,32,105,110,115,116,97,110,99,101,32,111,102,32,65,120,105,111,115,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,105,110,115,116,97,110,99,101,67,111,110,102,105,103,32,84,104,101,32,100,101,102,97,117,108,116,32,99,111,110,102,105,103,32,102,111,114,32,116,104,101,32,105,110,115,116,97,110,99,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,65,120,105,111,115,40,105,110,115,116,97,110,99,101,67,111,110,102,105,103,41,32,123,92,110,32,32,116,104,105,115,46,100,101,102,97,117,108,116,115,32,61,32,105,110,115,116,97,110,99,101,67,111,110,102,105,103,59,92,110,32,32,116,104,105,115,46,105,110,116,101,114,99,101,112,116,111,114,115,32,61,32,123,92,110,32,32,32,32,114,101,113,117,101,115,116,58,32,110,101,119,32,73,110,116,101,114,99,101,112,116,111,114,77,97,110,97,103,101,114,40,41,44,92,110,32,32,32,32,114,101,115,112,111,110,115,101,58,32,110,101,119,32,73,110,116,101,114,99,101,112,116,111,114,77,97,110,97,103,101,114,40,41,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,105,115,112,97,116,99,104,32,97,32,114,101,113,117,101,115,116,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,99,111,110,102,105,103,32,84,104,101,32,99,111,110,102,105,103,32,115,112,101,99,105,102,105,99,32,102,111,114,32,116,104,105,115,32,114,101,113,117,101,115,116,32,40,109,101,114,103,101,100,32,119,105,116,104,32,116,104,105,115,46,100,101,102,97,117,108,116,115,41,92,110,32,42,47,92,110,65,120,105,111,115,46,112,114,111,116,111,116,121,112,101,46,114,101,113,117,101,115,116,32,61,32,102,117,110,99,116,105,111,110,32,114,101,113,117,101,115,116,40,99,111,110,102,105,103,79,114,85,114,108,44,32,99,111,110,102,105,103,41,32,123,92,110,32,32,47,42,101,115,108,105,110,116,32,110,111,45,112,97,114,97,109,45,114,101,97,115,115,105,103,110,58,48,42,47,92,110,32,32,47,47,32,65,108,108,111,119,32,102,111,114,32,97,120,105,111,115,40,39,101,120,97,109,112,108,101,47,117,114,108,39,91,44,32,99,111,110,102,105,103,93,41,32,97,32,108,97,32,102,101,116,99,104,32,65,80,73,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,99,111,110,102,105,103,79,114,85,114,108,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,99,111,110,102,105,103,32,61,32,99,111,110,102,105,103,32,124,124,32,123,125,59,92,110,32,32,32,32,99,111,110,102,105,103,46,117,114,108,32,61,32,99,111,110,102,105,103,79,114,85,114,108,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,99,111,110,102,105,103,32,61,32,99,111,110,102,105,103,79,114,85,114,108,32,124,124,32,123,125,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,99,111,110,102,105,103,46,117,114,108,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,80,114,111,118,105,100,101,100,32,99,111,110,102,105,103,32,117,114,108,32,105,115,32,110,111,116,32,118,97,108,105,100,39,41,59,92,110,32,32,125,92,110,92,110,32,32,99,111,110,102,105,103,32,61,32,109,101,114,103,101,67,111,110,102,105,103,40,116,104,105,115,46,100,101,102,97,117,108,116,115,44,32,99,111,110,102,105,103,41,59,92,110,92,110,32,32,47,47,32,83,101,116,32,99,111,110,102,105,103,46,109,101,116,104,111,100,92,110,32,32,105,102,32,40,99,111,110,102,105,103,46,109,101,116,104,111,100,41,32,123,92,110,32,32,32,32,99,111,110,102,105,103,46,109,101,116,104,111,100,32,61,32,99,111,110,102,105,103,46,109,101,116,104,111,100,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,100,101,102,97,117,108,116,115,46,109,101,116,104,111,100,41,32,123,92,110,32,32,32,32,99,111,110,102,105,103,46,109,101,116,104,111,100,32,61,32,116,104,105,115,46,100,101,102,97,117,108,116,115,46,109,101,116,104,111,100,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,99,111,110,102,105,103,46,109,101,116,104,111,100,32,61,32,39,103,101,116,39,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,116,114,97,110,115,105,116,105,111,110,97,108,32,61,32,99,111,110,102,105,103,46,116,114,97,110,115,105,116,105,111,110,97,108,59,92,110,92,110,32,32,105,102,32,40,116,114,97,110,115,105,116,105,111,110,97,108,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,118,97,108,105,100,97,116,111,114,46,97,115,115,101,114,116,79,112,116,105,111,110,115,40,116,114,97,110,115,105,116,105,111,110,97,108,44,32,123,92,110,32,32,32,32,32,32,115,105,108,101,110,116,74,83,79,78,80,97,114,115,105,110,103,58,32,118,97,108,105,100,97,116,111,114,115,46,116,114,97,110,115,105,116,105,111,110,97,108,40,118,97,108,105,100,97,116,111,114,115,46,98,111,111,108,101,97,110,41,44,92,110,32,32,32,32,32,32,102,111,114,99,101,100,74,83,79,78,80,97,114,115,105,110,103,58,32,118,97,108,105,100,97,116,111,114,115,46,116,114,97,110,115,105,116,105,111,110,97,108,40,118,97,108,105,100,97,116,111,114,115,46,98,111,111,108,101,97,110,41,44,92,110,32,32,32,32,32,32,99,108,97,114,105,102,121,84,105,109,101,111,117,116,69,114,114,111,114,58,32,118,97,108,105,100,97,116,111,114,115,46,116,114,97,110,115,105,116,105,111,110,97,108,40,118,97,108,105,100,97,116,111,114,115,46,98,111,111,108,101,97,110,41,92,110,32,32,32,32,125,44,32,102,97,108,115,101,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,102,105,108,116,101,114,32,111,117,116,32,115,107,105,112,112,101,100,32,105,110,116,101,114,99,101,112,116,111,114,115,92,110,32,32,118,97,114,32,114,101,113,117,101,115,116,73,110,116,101,114,99,101,112,116,111,114,67,104,97,105,110,32,61,32,91,93,59,92,110,32,32,118,97,114,32,115,121,110,99,104,114,111,110,111,117,115,82,101,113,117,101,115,116,73,110,116,101,114,99,101,112,116,111,114,115,32,61,32,116,114,117,101,59,92,110,32,32,116,104,105,115,46,105,110,116,101,114,99,101,112,116,111,114,115,46,114,101,113,117,101,115,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,117,110,115,104,105,102,116,82,101,113,117,101,115,116,73,110,116,101,114,99,101,112,116,111,114,115,40,105,110,116,101,114,99,101,112,116,111,114,41,32,123,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,105,110,116,101,114,99,101,112,116,111,114,46,114,117,110,87,104,101,110,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,105,110,116,101,114,99,101,112,116,111,114,46,114,117,110,87,104,101,110,40,99,111,110,102,105,103,41,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,121,110,99,104,114,111,110,111,117,115,82,101,113,117,101,115,116,73,110,116,101,114,99,101,112,116,111,114,115,32,61,32,115,121,110,99,104,114,111,110,111,117,115,82,101,113,117,101,115,116,73,110,116,101,114,99,101,112,116,111,114,115,32,38,38,32,105,110,116,101,114,99,101,112,116,111,114,46,115,121,110,99,104,114,111,110,111,117,115,59,92,110,92,110,32,32,32,32,114,101,113,117,101,115,116,73,110,116,101,114,99,101,112,116,111,114,67,104,97,105,110,46,117,110,115,104,105,102,116,40,105,110,116,101,114,99,101,112,116,111,114,46,102,117,108,102,105,108,108,101,100,44,32,105,110,116,101,114,99,101,112,116,111,114,46,114,101,106,101,99,116,101,100,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,118,97,114,32,114,101,115,112,111,110,115,101,73,110,116,101,114,99,101,112,116,111,114,67,104,97,105,110,32,61,32,91,93,59,92,110,32,32,116,104,105,115,46,105,110,116,101,114,99,101,112,116,111,114,115,46,114,101,115,112,111,110,115,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,112,117,115,104,82,101,115,112,111,110,115,101,73,110,116,101,114,99,101,112,116,111,114,115,40,105,110,116,101,114,99,101,112,116,111,114,41,32,123,92,110,32,32,32,32,114,101,115,112,111,110,115,101,73,110,116,101,114,99,101,112,116,111,114,67,104,97,105,110,46,112,117,115,104,40,105,110,116,101,114,99,101,112,116,111,114,46,102,117,108,102,105,108,108,101,100,44,32,105,110,116,101,114,99,101,112,116,111,114,46,114,101,106,101,99,116,101,100,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,118,97,114,32,112,114,111,109,105,115,101,59,92,110,92,110,32,32,105,102,32,40,33,115,121,110,99,104,114,111,110,111,117,115,82,101,113,117,101,115,116,73,110,116,101,114,99,101,112,116,111,114,115,41,32,123,92,110,32,32,32,32,118,97,114,32,99,104,97,105,110,32,61,32,91,100,105,115,112,97,116,99,104,82,101,113,117,101,115,116,44,32,117,110,100,101,102,105,110,101,100,93,59,92,110,92,110,32,32,32,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,117,110,115,104,105,102,116,46,97,112,112,108,121,40,99,104,97,105,110,44,32,114,101,113,117,101,115,116,73,110,116,101,114,99,101,112,116,111,114,67,104,97,105,110,41,59,92,110,32,32,32,32,99,104,97,105,110,32,61,32,99,104,97,105,110,46,99,111,110,99,97,116,40,114,101,115,112,111,110,115,101,73,110,116,101,114,99,101,112,116,111,114,67,104,97,105,110,41,59,92,110,92,110,32,32,32,32,112,114,111,109,105,115,101,32,61,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,99,111,110,102,105,103,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,99,104,97,105,110,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,112,114,111,109,105,115,101,32,61,32,112,114,111,109,105,115,101,46,116,104,101,110,40,99,104,97,105,110,46,115,104,105,102,116,40,41,44,32,99,104,97,105,110,46,115,104,105,102,116,40,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,109,105,115,101,59,92,110,32,32,125,92,110,92,110,92,110,32,32,118,97,114,32,110,101,119,67,111,110,102,105,103,32,61,32,99,111,110,102,105,103,59,92,110,32,32,119,104,105,108,101,32,40,114,101,113,117,101,115,116,73,110,116,101,114,99,101,112,116,111,114,67,104,97,105,110,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,118,97,114,32,111,110,70,117,108,102,105,108,108,101,100,32,61,32,114,101,113,117,101,115,116,73,110,116,101,114,99,101,112,116,111,114,67,104,97,105,110,46,115,104,105,102,116,40,41,59,92,110,32,32,32,32,118,97,114,32,111,110,82,101,106,101,99,116,101,100,32,61,32,114,101,113,117,101,115,116,73,110,116,101,114,99,101,112,116,111,114,67,104,97,105,110,46,115,104,105,102,116,40,41,59,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,110,101,119,67,111,110,102,105,103,32,61,32,111,110,70,117,108,102,105,108,108,101,100,40,110,101,119,67,111,110,102,105,103,41,59,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,114,114,111,114,41,32,123,92,110,32,32,32,32,32,32,111,110,82,101,106,101,99,116,101,100,40,101,114,114,111,114,41,59,92,110,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,112,114,111,109,105,115,101,32,61,32,100,105,115,112,97,116,99,104,82,101,113,117,101,115,116,40,110,101,119,67,111,110,102,105,103,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,114,114,111,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,101,114,114,111,114,41,59,92,110,32,32,125,92,110,92,110,32,32,119,104,105,108,101,32,40,114,101,115,112,111,110,115,101,73,110,116,101,114,99,101,112,116,111,114,67,104,97,105,110,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,112,114,111,109,105,115,101,32,61,32,112,114,111,109,105,115,101,46,116,104,101,110,40,114,101,115,112,111,110,115,101,73,110,116,101,114,99,101,112,116,111,114,67,104,97,105,110,46,115,104,105,102,116,40,41,44,32,114,101,115,112,111,110,115,101,73,110,116,101,114,99,101,112,116,111,114,67,104,97,105,110,46,115,104,105,102,116,40,41,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,112,114,111,109,105,115,101,59,92,110,125,59,92,110,92,110,65,120,105,111,115,46,112,114,111,116,111,116,121,112,101,46,103,101,116,85,114,105,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,85,114,105,40,99,111,110,102,105,103,41,32,123,92,110,32,32,105,102,32,40,33,99,111,110,102,105,103,46,117,114,108,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,80,114,111,118,105,100,101,100,32,99,111,110,102,105,103,32,117,114,108,32,105,115,32,110,111,116,32,118,97,108,105,100,39,41,59,92,110,32,32,125,92,110,32,32,99,111,110,102,105,103,32,61,32,109,101,114,103,101,67,111,110,102,105,103,40,116,104,105,115,46,100,101,102,97,117,108,116,115,44,32,99,111,110,102,105,103,41,59,92,110,32,32,114,101,116,117,114,110,32,98,117,105,108,100,85,82,76,40,99,111,110,102,105,103,46,117,114,108,44,32,99,111,110,102,105,103,46,112,97,114,97,109,115,44,32,99,111,110,102,105,103,46,112,97,114,97,109,115,83,101,114,105,97,108,105,122,101,114,41,46,114,101,112,108,97,99,101,40,47,94,92,92,63,47,44,32,39,39,41,59,92,110,125,59,92,110,92,110,47,47,32,80,114,111,118,105,100,101,32,97,108,105,97,115,101,115,32,102,111,114,32,115,117,112,112,111,114,116,101,100,32,114,101,113,117,101,115,116,32,109,101,116,104,111,100,115,92,110,117,116,105,108,115,46,102,111,114,69,97,99,104,40,91,39,100,101,108,101,116,101,39,44,32,39,103,101,116,39,44,32,39,104,101,97,100,39,44,32,39,111,112,116,105,111,110,115,39,93,44,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,77,101,116,104,111,100,78,111,68,97,116,97,40,109,101,116,104,111,100,41,32,123,92,110,32,32,47,42,101,115,108,105,110,116,32,102,117,110,99,45,110,97,109,101,115,58,48,42,47,92,110,32,32,65,120,105,111,115,46,112,114,111,116,111,116,121,112,101,91,109,101,116,104,111,100,93,32,61,32,102,117,110,99,116,105,111,110,40,117,114,108,44,32,99,111,110,102,105,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,101,113,117,101,115,116,40,109,101,114,103,101,67,111,110,102,105,103,40,99,111,110,102,105,103,32,124,124,32,123,125,44,32,123,92,110,32,32,32,32,32,32,109,101,116,104,111,100,58,32,109,101,116,104,111,100,44,92,110,32,32,32,32,32,32,117,114,108,58,32,117,114,108,44,92,110,32,32,32,32,32,32,100,97,116,97,58,32,40,99,111,110,102,105,103,32,124,124,32,123,125,41,46,100,97,116,97,92,110,32,32,32,32,125,41,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,117,116,105,108,115,46,102,111,114,69,97,99,104,40,91,39,112,111,115,116,39,44,32,39,112,117,116,39,44,32,39,112,97,116,99,104,39,93,44,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,77,101,116,104,111,100,87,105,116,104,68,97,116,97,40,109,101,116,104,111,100,41,32,123,92,110,32,32,47,42,101,115,108,105,110,116,32,102,117,110,99,45,110,97,109,101,115,58,48,42,47,92,110,32,32,65,120,105,111,115,46,112,114,111,116,111,116,121,112,101,91,109,101,116,104,111,100,93,32,61,32,102,117,110,99,116,105,111,110,40,117,114,108,44,32,100,97,116,97,44,32,99,111,110,102,105,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,101,113,117,101,115,116,40,109,101,114,103,101,67,111,110,102,105,103,40,99,111,110,102,105,103,32,124,124,32,123,125,44,32,123,92,110,32,32,32,32,32,32,109,101,116,104,111,100,58,32,109,101,116,104,111,100,44,92,110,32,32,32,32,32,32,117,114,108,58,32,117,114,108,44,92,110,32,32,32,32,32,32,100,97,116,97,58,32,100,97,116,97,92,110,32,32,32,32,125,41,41,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,65,120,105,111,115,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,65,120,105,111,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,73,110,116,101,114,99,101,112,116,111,114,77,97,110,97,103,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,73,110,116,101,114,99,101,112,116,111,114,77,97,110,97,103,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,117,116,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,117,116,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,92,34,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,73,110,116,101,114,99,101,112,116,111,114,77,97,110,97,103,101,114,40,41,32,123,92,110,32,32,116,104,105,115,46,104,97,110,100,108,101,114,115,32,61,32,91,93,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,65,100,100,32,97,32,110,101,119,32,105,110,116,101,114,99,101,112,116,111,114,32,116,111,32,116,104,101,32,115,116,97,99,107,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,108,102,105,108,108,101,100,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,104,97,110,100,108,101,32,96,116,104,101,110,96,32,102,111,114,32,97,32,96,80,114,111,109,105,115,101,96,92,110,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,114,101,106,101,99,116,101,100,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,104,97,110,100,108,101,32,96,114,101,106,101,99,116,96,32,102,111,114,32,97,32,96,80,114,111,109,105,115,101,96,92,110,32,42,92,110,32,42,32,64,114,101,116,117,114,110,32,123,78,117,109,98,101,114,125,32,65,110,32,73,68,32,117,115,101,100,32,116,111,32,114,101,109,111,118,101,32,105,110,116,101,114,99,101,112,116,111,114,32,108,97,116,101,114,92,110,32,42,47,92,110,73,110,116,101,114,99,101,112,116,111,114,77,97,110,97,103,101,114,46,112,114,111,116,111,116,121,112,101,46,117,115,101,32,61,32,102,117,110,99,116,105,111,110,32,117,115,101,40,102,117,108,102,105,108,108,101,100,44,32,114,101,106,101,99,116,101,100,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,116,104,105,115,46,104,97,110,100,108,101,114,115,46,112,117,115,104,40,123,92,110,32,32,32,32,102,117,108,102,105,108,108,101,100,58,32,102,117,108,102,105,108,108,101,100,44,92,110,32,32,32,32,114,101,106,101,99,116,101,100,58,32,114,101,106,101,99,116,101,100,44,92,110,32,32,32,32,115,121,110,99,104,114,111,110,111,117,115,58,32,111,112,116,105,111,110,115,32,63,32,111,112,116,105,111,110,115,46,115,121,110,99,104,114,111,110,111,117,115,32,58,32,102,97,108,115,101,44,92,110,32,32,32,32,114,117,110,87,104,101,110,58,32,111,112,116,105,111,110,115,32,63,32,111,112,116,105,111,110,115,46,114,117,110,87,104,101,110,32,58,32,110,117,108,108,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,104,97,110,100,108,101,114,115,46,108,101,110,103,116,104,32,45,32,49,59,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,82,101,109,111,118,101,32,97,110,32,105,110,116,101,114,99,101,112,116,111,114,32,102,114,111,109,32,116,104,101,32,115,116,97,99,107,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,105,100,32,84,104,101,32,73,68,32,116,104,97,116,32,119,97,115,32,114,101,116,117,114,110,101,100,32,98,121,32,96,117,115,101,96,92,110,32,42,47,92,110,73,110,116,101,114,99,101,112,116,111,114,77,97,110,97,103,101,114,46,112,114,111,116,111,116,121,112,101,46,101,106,101,99,116,32,61,32,102,117,110,99,116,105,111,110,32,101,106,101,99,116,40,105,100,41,32,123,92,110,32,32,105,102,32,40,116,104,105,115,46,104,97,110,100,108,101,114,115,91,105,100,93,41,32,123,92,110,32,32,32,32,116,104,105,115,46,104,97,110,100,108,101,114,115,91,105,100,93,32,61,32,110,117,108,108,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,73,116,101,114,97,116,101,32,111,118,101,114,32,97,108,108,32,116,104,101,32,114,101,103,105,115,116,101,114,101,100,32,105,110,116,101,114,99,101,112,116,111,114,115,92,110,32,42,92,110,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,112,97,114,116,105,99,117,108,97,114,108,121,32,117,115,101,102,117,108,32,102,111,114,32,115,107,105,112,112,105,110,103,32,111,118,101,114,32,97,110,121,92,110,32,42,32,105,110,116,101,114,99,101,112,116,111,114,115,32,116,104,97,116,32,109,97,121,32,104,97,118,101,32,98,101,99,111,109,101,32,96,110,117,108,108,96,32,99,97,108,108,105,110,103,32,96,101,106,101,99,116,96,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,110,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,97,108,108,32,102,111,114,32,101,97,99,104,32,105,110,116,101,114,99,101,112,116,111,114,92,110,32,42,47,92,110,73,110,116,101,114,99,101,112,116,111,114,77,97,110,97,103,101,114,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,32,61,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,40,102,110,41,32,123,92,110,32,32,117,116,105,108,115,46,102,111,114,69,97,99,104,40,116,104,105,115,46,104,97,110,100,108,101,114,115,44,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,72,97,110,100,108,101,114,40,104,41,32,123,92,110,32,32,32,32,105,102,32,40,104,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,102,110,40,104,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,73,110,116,101,114,99,101,112,116,111,114,77,97,110,97,103,101,114,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,73,110,116,101,114,99,101,112,116,111,114,77,97,110,97,103,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,98,117,105,108,100,70,117,108,108,80,97,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,98,117,105,108,100,70,117,108,108,80,97,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,105,115,65,98,115,111,108,117,116,101,85,82,76,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,104,101,108,112,101,114,115,47,105,115,65,98,115,111,108,117,116,101,85,82,76,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,105,115,65,98,115,111,108,117,116,101,85,82,76,46,106,115,92,34,41,59,92,110,118,97,114,32,99,111,109,98,105,110,101,85,82,76,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,104,101,108,112,101,114,115,47,99,111,109,98,105,110,101,85,82,76,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,99,111,109,98,105,110,101,85,82,76,115,46,106,115,92,34,41,59,92,110,92,110,47,42,42,92,110,32,42,32,67,114,101,97,116,101,115,32,97,32,110,101,119,32,85,82,76,32,98,121,32,99,111,109,98,105,110,105,110,103,32,116,104,101,32,98,97,115,101,85,82,76,32,119,105,116,104,32,116,104,101,32,114,101,113,117,101,115,116,101,100,85,82,76,44,92,110,32,42,32,111,110,108,121,32,119,104,101,110,32,116,104,101,32,114,101,113,117,101,115,116,101,100,85,82,76,32,105,115,32,110,111,116,32,97,108,114,101,97,100,121,32,97,110,32,97,98,115,111,108,117,116,101,32,85,82,76,46,92,110,32,42,32,73,102,32,116,104,101,32,114,101,113,117,101,115,116,85,82,76,32,105,115,32,97,98,115,111,108,117,116,101,44,32,116,104,105,115,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,115,32,116,104,101,32,114,101,113,117,101,115,116,101,100,85,82,76,32,117,110,116,111,117,99,104,101,100,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,98,97,115,101,85,82,76,32,84,104,101,32,98,97,115,101,32,85,82,76,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,114,101,113,117,101,115,116,101,100,85,82,76,32,65,98,115,111,108,117,116,101,32,111,114,32,114,101,108,97,116,105,118,101,32,85,82,76,32,116,111,32,99,111,109,98,105,110,101,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,84,104,101,32,99,111,109,98,105,110,101,100,32,102,117,108,108,32,112,97,116,104,92,110,32,42,47,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,98,117,105,108,100,70,117,108,108,80,97,116,104,40,98,97,115,101,85,82,76,44,32,114,101,113,117,101,115,116,101,100,85,82,76,41,32,123,92,110,32,32,105,102,32,40,98,97,115,101,85,82,76,32,38,38,32,33,105,115,65,98,115,111,108,117,116,101,85,82,76,40,114,101,113,117,101,115,116,101,100,85,82,76,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,109,98,105,110,101,85,82,76,115,40,98,97,115,101,85,82,76,44,32,114,101,113,117,101,115,116,101,100,85,82,76,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,113,117,101,115,116,101,100,85,82,76,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,98,117,105,108,100,70,117,108,108,80,97,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,99,114,101,97,116,101,69,114,114,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,99,114,101,97,116,101,69,114,114,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,101,110,104,97,110,99,101,69,114,114,111,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,110,104,97,110,99,101,69,114,114,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,101,110,104,97,110,99,101,69,114,114,111,114,46,106,115,92,34,41,59,92,110,92,110,47,42,42,92,110,32,42,32,67,114,101,97,116,101,32,97,110,32,69,114,114,111,114,32,119,105,116,104,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,109,101,115,115,97,103,101,44,32,99,111,110,102,105,103,44,32,101,114,114,111,114,32,99,111,100,101,44,32,114,101,113,117,101,115,116,32,97,110,100,32,114,101,115,112,111,110,115,101,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,109,101,115,115,97,103,101,32,84,104,101,32,101,114,114,111,114,32,109,101,115,115,97,103,101,46,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,99,111,110,102,105,103,32,84,104,101,32,99,111,110,102,105,103,46,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,99,111,100,101,93,32,84,104,101,32,101,114,114,111,114,32,99,111,100,101,32,40,102,111,114,32,101,120,97,109,112,108,101,44,32,39,69,67,79,78,78,65,66,79,82,84,69,68,39,41,46,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,114,101,113,117,101,115,116,93,32,84,104,101,32,114,101,113,117,101,115,116,46,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,114,101,115,112,111,110,115,101,93,32,84,104,101,32,114,101,115,112,111,110,115,101,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,69,114,114,111,114,125,32,84,104,101,32,99,114,101,97,116,101,100,32,101,114,114,111,114,46,92,110,32,42,47,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,69,114,114,111,114,40,109,101,115,115,97,103,101,44,32,99,111,110,102,105,103,44,32,99,111,100,101,44,32,114,101,113,117,101,115,116,44,32,114,101,115,112,111,110,115,101,41,32,123,92,110,32,32,118,97,114,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,109,101,115,115,97,103,101,41,59,92,110,32,32,114,101,116,117,114,110,32,101,110,104,97,110,99,101,69,114,114,111,114,40,101,114,114,111,114,44,32,99,111,110,102,105,103,44,32,99,111,100,101,44,32,114,101,113,117,101,115,116,44,32,114,101,115,112,111,110,115,101,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,99,114,101,97,116,101,69,114,114,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,100,105,115,112,97,116,99,104,82,101,113,117,101,115,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,100,105,115,112,97,116,99,104,82,101,113,117,101,115,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,117,116,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,117,116,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,116,114,97,110,115,102,111,114,109,68,97,116,97,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,97,110,115,102,111,114,109,68,97,116,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,116,114,97,110,115,102,111,114,109,68,97,116,97,46,106,115,92,34,41,59,92,110,118,97,114,32,105,115,67,97,110,99,101,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,97,110,99,101,108,47,105,115,67,97,110,99,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,105,115,67,97,110,99,101,108,46,106,115,92,34,41,59,92,110,118,97,114,32,100,101,102,97,117,108,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,100,101,102,97,117,108,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,100,101,102,97,117,108,116,115,46,106,115,92,34,41,59,92,110,118,97,114,32,67,97,110,99,101,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,97,110,99,101,108,47,67,97,110,99,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,97,110,99,101,108,47,67,97,110,99,101,108,46,106,115,92,34,41,59,92,110,92,110,47,42,42,92,110,32,42,32,84,104,114,111,119,115,32,97,32,96,67,97,110,99,101,108,96,32,105,102,32,99,97,110,99,101,108,108,97,116,105,111,110,32,104,97,115,32,98,101,101,110,32,114,101,113,117,101,115,116,101,100,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,116,104,114,111,119,73,102,67,97,110,99,101,108,108,97,116,105,111,110,82,101,113,117,101,115,116,101,100,40,99,111,110,102,105,103,41,32,123,92,110,32,32,105,102,32,40,99,111,110,102,105,103,46,99,97,110,99,101,108,84,111,107,101,110,41,32,123,92,110,32,32,32,32,99,111,110,102,105,103,46,99,97,110,99,101,108,84,111,107,101,110,46,116,104,114,111,119,73,102,82,101,113,117,101,115,116,101,100,40,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,99,111,110,102,105,103,46,115,105,103,110,97,108,32,38,38,32,99,111,110,102,105,103,46,115,105,103,110,97,108,46,97,98,111,114,116,101,100,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,67,97,110,99,101,108,40,39,99,97,110,99,101,108,101,100,39,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,105,115,112,97,116,99,104,32,97,32,114,101,113,117,101,115,116,32,116,111,32,116,104,101,32,115,101,114,118,101,114,32,117,115,105,110,103,32,116,104,101,32,99,111,110,102,105,103,117,114,101,100,32,97,100,97,112,116,101,114,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,99,111,110,102,105,103,32,84,104,101,32,99,111,110,102,105,103,32,116,104,97,116,32,105,115,32,116,111,32,98,101,32,117,115,101,100,32,102,111,114,32,116,104,101,32,114,101,113,117,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,80,114,111,109,105,115,101,125,32,84,104,101,32,80,114,111,109,105,115,101,32,116,111,32,98,101,32,102,117,108,102,105,108,108,101,100,92,110,32,42,47,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,100,105,115,112,97,116,99,104,82,101,113,117,101,115,116,40,99,111,110,102,105,103,41,32,123,92,110,32,32,116,104,114,111,119,73,102,67,97,110,99,101,108,108,97,116,105,111,110,82,101,113,117,101,115,116,101,100,40,99,111,110,102,105,103,41,59,92,110,92,110,32,32,47,47,32,69,110,115,117,114,101,32,104,101,97,100,101,114,115,32,101,120,105,115,116,92,110,32,32,99,111,110,102,105,103,46,104,101,97,100,101,114,115,32,61,32,99,111,110,102,105,103,46,104,101,97,100,101,114,115,32,124,124,32,123,125,59,92,110,92,110,32,32,47,47,32,84,114,97,110,115,102,111,114,109,32,114,101,113,117,101,115,116,32,100,97,116,97,92,110,32,32,99,111,110,102,105,103,46,100,97,116,97,32,61,32,116,114,97,110,115,102,111,114,109,68,97,116,97,46,99,97,108,108,40,92,110,32,32,32,32,99,111,110,102,105,103,44,92,110,32,32,32,32,99,111,110,102,105,103,46,100,97,116,97,44,92,110,32,32,32,32,99,111,110,102,105,103,46,104,101,97,100,101,114,115,44,92,110,32,32,32,32,99,111,110,102,105,103,46,116,114,97,110,115,102,111,114,109,82,101,113,117,101,115,116,92,110,32,32,41,59,92,110,92,110,32,32,47,47,32,70,108,97,116,116,101,110,32,104,101,97,100,101,114,115,92,110,32,32,99,111,110,102,105,103,46,104,101,97,100,101,114,115,32,61,32,117,116,105,108,115,46,109,101,114,103,101,40,92,110,32,32,32,32,99,111,110,102,105,103,46,104,101,97,100,101,114,115,46,99,111,109,109,111,110,32,124,124,32,123,125,44,92,110,32,32,32,32,99,111,110,102,105,103,46,104,101,97,100,101,114,115,91,99,111,110,102,105,103,46,109,101,116,104,111,100,93,32,124,124,32,123,125,44,92,110,32,32,32,32,99,111,110,102,105,103,46,104,101,97,100,101,114,115,92,110,32,32,41,59,92,110,92,110,32,32,117,116,105,108,115,46,102,111,114,69,97,99,104,40,92,110,32,32,32,32,91,39,100,101,108,101,116,101,39,44,32,39,103,101,116,39,44,32,39,104,101,97,100,39,44,32,39,112,111,115,116,39,44,32,39,112,117,116,39,44,32,39,112,97,116,99,104,39,44,32,39,99,111,109,109,111,110,39,93,44,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,101,97,110,72,101,97,100,101,114,67,111,110,102,105,103,40,109,101,116,104,111,100,41,32,123,92,110,32,32,32,32,32,32,100,101,108,101,116,101,32,99,111,110,102,105,103,46,104,101,97,100,101,114,115,91,109,101,116,104,111,100,93,59,92,110,32,32,32,32,125,92,110,32,32,41,59,92,110,92,110,32,32,118,97,114,32,97,100,97,112,116,101,114,32,61,32,99,111,110,102,105,103,46,97,100,97,112,116,101,114,32,124,124,32,100,101,102,97,117,108,116,115,46,97,100,97,112,116,101,114,59,92,110,92,110,32,32,114,101,116,117,114,110,32,97,100,97,112,116,101,114,40,99,111,110,102,105,103,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,111,110,65,100,97,112,116,101,114,82,101,115,111,108,117,116,105,111,110,40,114,101,115,112,111,110,115,101,41,32,123,92,110,32,32,32,32,116,104,114,111,119,73,102,67,97,110,99,101,108,108,97,116,105,111,110,82,101,113,117,101,115,116,101,100,40,99,111,110,102,105,103,41,59,92,110,92,110,32,32,32,32,47,47,32,84,114,97,110,115,102,111,114,109,32,114,101,115,112,111,110,115,101,32,100,97,116,97,92,110,32,32,32,32,114,101,115,112,111,110,115,101,46,100,97,116,97,32,61,32,116,114,97,110,115,102,111,114,109,68,97,116,97,46,99,97,108,108,40,92,110,32,32,32,32,32,32,99,111,110,102,105,103,44,92,110,32,32,32,32,32,32,114,101,115,112,111,110,115,101,46,100,97,116,97,44,92,110,32,32,32,32,32,32,114,101,115,112,111,110,115,101,46,104,101,97,100,101,114,115,44,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,116,114,97,110,115,102,111,114,109,82,101,115,112,111,110,115,101,92,110,32,32,32,32,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,112,111,110,115,101,59,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,32,111,110,65,100,97,112,116,101,114,82,101,106,101,99,116,105,111,110,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,105,102,32,40,33,105,115,67,97,110,99,101,108,40,114,101,97,115,111,110,41,41,32,123,92,110,32,32,32,32,32,32,116,104,114,111,119,73,102,67,97,110,99,101,108,108,97,116,105,111,110,82,101,113,117,101,115,116,101,100,40,99,111,110,102,105,103,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,84,114,97,110,115,102,111,114,109,32,114,101,115,112,111,110,115,101,32,100,97,116,97,92,110,32,32,32,32,32,32,105,102,32,40,114,101,97,115,111,110,32,38,38,32,114,101,97,115,111,110,46,114,101,115,112,111,110,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,97,115,111,110,46,114,101,115,112,111,110,115,101,46,100,97,116,97,32,61,32,116,114,97,110,115,102,111,114,109,68,97,116,97,46,99,97,108,108,40,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,102,105,103,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,97,115,111,110,46,114,101,115,112,111,110,115,101,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,97,115,111,110,46,114,101,115,112,111,110,115,101,46,104,101,97,100,101,114,115,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,102,105,103,46,116,114,97,110,115,102,111,114,109,82,101,115,112,111,110,115,101,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,114,101,97,115,111,110,41,59,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,100,105,115,112,97,116,99,104,82,101,113,117,101,115,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,101,110,104,97,110,99,101,69,114,114,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,101,110,104,97,110,99,101,69,114,114,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,47,42,42,92,110,32,42,32,85,112,100,97,116,101,32,97,110,32,69,114,114,111,114,32,119,105,116,104,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,99,111,110,102,105,103,44,32,101,114,114,111,114,32,99,111,100,101,44,32,97,110,100,32,114,101,115,112,111,110,115,101,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,69,114,114,111,114,125,32,101,114,114,111,114,32,84,104,101,32,101,114,114,111,114,32,116,111,32,117,112,100,97,116,101,46,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,99,111,110,102,105,103,32,84,104,101,32,99,111,110,102,105,103,46,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,99,111,100,101,93,32,84,104,101,32,101,114,114,111,114,32,99,111,100,101,32,40,102,111,114,32,101,120,97,109,112,108,101,44,32,39,69,67,79,78,78,65,66,79,82,84,69,68,39,41,46,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,114,101,113,117,101,115,116,93,32,84,104,101,32,114,101,113,117,101,115,116,46,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,114,101,115,112,111,110,115,101,93,32,84,104,101,32,114,101,115,112,111,110,115,101,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,69,114,114,111,114,125,32,84,104,101,32,101,114,114,111,114,46,92,110,32,42,47,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,101,110,104,97,110,99,101,69,114,114,111,114,40,101,114,114,111,114,44,32,99,111,110,102,105,103,44,32,99,111,100,101,44,32,114,101,113,117,101,115,116,44,32,114,101,115,112,111,110,115,101,41,32,123,92,110,32,32,101,114,114,111,114,46,99,111,110,102,105,103,32,61,32,99,111,110,102,105,103,59,92,110,32,32,105,102,32,40,99,111,100,101,41,32,123,92,110,32,32,32,32,101,114,114,111,114,46,99,111,100,101,32,61,32,99,111,100,101,59,92,110,32,32,125,92,110,92,110,32,32,101,114,114,111,114,46,114,101,113,117,101,115,116,32,61,32,114,101,113,117,101,115,116,59,92,110,32,32,101,114,114,111,114,46,114,101,115,112,111,110,115,101,32,61,32,114,101,115,112,111,110,115,101,59,92,110,32,32,101,114,114,111,114,46,105,115,65,120,105,111,115,69,114,114,111,114,32,61,32,116,114,117,101,59,92,110,92,110,32,32,101,114,114,111,114,46,116,111,74,83,79,78,32,61,32,102,117,110,99,116,105,111,110,32,116,111,74,83,79,78,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,47,47,32,83,116,97,110,100,97,114,100,92,110,32,32,32,32,32,32,109,101,115,115,97,103,101,58,32,116,104,105,115,46,109,101,115,115,97,103,101,44,92,110,32,32,32,32,32,32,110,97,109,101,58,32,116,104,105,115,46,110,97,109,101,44,92,110,32,32,32,32,32,32,47,47,32,77,105,99,114,111,115,111,102,116,92,110,32,32,32,32,32,32,100,101,115,99,114,105,112,116,105,111,110,58,32,116,104,105,115,46,100,101,115,99,114,105,112,116,105,111,110,44,92,110,32,32,32,32,32,32,110,117,109,98,101,114,58,32,116,104,105,115,46,110,117,109,98,101,114,44,92,110,32,32,32,32,32,32,47,47,32,77,111,122,105,108,108,97,92,110,32,32,32,32,32,32,102,105,108,101,78,97,109,101,58,32,116,104,105,115,46,102,105,108,101,78,97,109,101,44,92,110,32,32,32,32,32,32,108,105,110,101,78,117,109,98,101,114,58,32,116,104,105,115,46,108,105,110,101,78,117,109,98,101,114,44,92,110,32,32,32,32,32,32,99,111,108,117,109,110,78,117,109,98,101,114,58,32,116,104,105,115,46,99,111,108,117,109,110,78,117,109,98,101,114,44,92,110,32,32,32,32,32,32,115,116,97,99,107,58,32,116,104,105,115,46,115,116,97,99,107,44,92,110,32,32,32,32,32,32,47,47,32,65,120,105,111,115,92,110,32,32,32,32,32,32,99,111,110,102,105,103,58,32,116,104,105,115,46,99,111,110,102,105,103,44,92,110,32,32,32,32,32,32,99,111,100,101,58,32,116,104,105,115,46,99,111,100,101,44,92,110,32,32,32,32,32,32,115,116,97,116,117,115,58,32,116,104,105,115,46,114,101,115,112,111,110,115,101,32,38,38,32,116,104,105,115,46,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,32,63,32,116,104,105,115,46,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,32,58,32,110,117,108,108,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,32,32,114,101,116,117,114,110,32,101,114,114,111,114,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,101,110,104,97,110,99,101,69,114,114,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,109,101,114,103,101,67,111,110,102,105,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,109,101,114,103,101,67,111,110,102,105,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,117,116,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,92,34,41,59,92,110,92,110,47,42,42,92,110,32,42,32,67,111,110,102,105,103,45,115,112,101,99,105,102,105,99,32,109,101,114,103,101,45,102,117,110,99,116,105,111,110,32,119,104,105,99,104,32,99,114,101,97,116,101,115,32,97,32,110,101,119,32,99,111,110,102,105,103,45,111,98,106,101,99,116,92,110,32,42,32,98,121,32,109,101,114,103,105,110,103,32,116,119,111,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,111,98,106,101,99,116,115,32,116,111,103,101,116,104,101,114,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,99,111,110,102,105,103,49,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,99,111,110,102,105,103,50,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,78,101,119,32,111,98,106,101,99,116,32,114,101,115,117,108,116,105,110,103,32,102,114,111,109,32,109,101,114,103,105,110,103,32,99,111,110,102,105,103,50,32,116,111,32,99,111,110,102,105,103,49,92,110,32,42,47,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,109,101,114,103,101,67,111,110,102,105,103,40,99,111,110,102,105,103,49,44,32,99,111,110,102,105,103,50,41,32,123,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,112,97,114,97,109,45,114,101,97,115,115,105,103,110,92,110,32,32,99,111,110,102,105,103,50,32,61,32,99,111,110,102,105,103,50,32,124,124,32,123,125,59,92,110,32,32,118,97,114,32,99,111,110,102,105,103,32,61,32,123,125,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,103,101,116,77,101,114,103,101,100,86,97,108,117,101,40,116,97,114,103,101,116,44,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,105,102,32,40,117,116,105,108,115,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,116,97,114,103,101,116,41,32,38,38,32,117,116,105,108,115,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,117,116,105,108,115,46,109,101,114,103,101,40,116,97,114,103,101,116,44,32,115,111,117,114,99,101,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,117,116,105,108,115,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,117,116,105,108,115,46,109,101,114,103,101,40,123,125,44,32,115,111,117,114,99,101,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,117,116,105,108,115,46,105,115,65,114,114,97,121,40,115,111,117,114,99,101,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,111,117,114,99,101,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,115,111,117,114,99,101,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,99,111,110,115,105,115,116,101,110,116,45,114,101,116,117,114,110,92,110,32,32,102,117,110,99,116,105,111,110,32,109,101,114,103,101,68,101,101,112,80,114,111,112,101,114,116,105,101,115,40,112,114,111,112,41,32,123,92,110,32,32,32,32,105,102,32,40,33,117,116,105,108,115,46,105,115,85,110,100,101,102,105,110,101,100,40,99,111,110,102,105,103,50,91,112,114,111,112,93,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,77,101,114,103,101,100,86,97,108,117,101,40,99,111,110,102,105,103,49,91,112,114,111,112,93,44,32,99,111,110,102,105,103,50,91,112,114,111,112,93,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,117,116,105,108,115,46,105,115,85,110,100,101,102,105,110,101,100,40,99,111,110,102,105,103,49,91,112,114,111,112,93,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,77,101,114,103,101,100,86,97,108,117,101,40,117,110,100,101,102,105,110,101,100,44,32,99,111,110,102,105,103,49,91,112,114,111,112,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,99,111,110,115,105,115,116,101,110,116,45,114,101,116,117,114,110,92,110,32,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,70,114,111,109,67,111,110,102,105,103,50,40,112,114,111,112,41,32,123,92,110,32,32,32,32,105,102,32,40,33,117,116,105,108,115,46,105,115,85,110,100,101,102,105,110,101,100,40,99,111,110,102,105,103,50,91,112,114,111,112,93,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,77,101,114,103,101,100,86,97,108,117,101,40,117,110,100,101,102,105,110,101,100,44,32,99,111,110,102,105,103,50,91,112,114,111,112,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,99,111,110,115,105,115,116,101,110,116,45,114,101,116,117,114,110,92,110,32,32,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,40,112,114,111,112,41,32,123,92,110,32,32,32,32,105,102,32,40,33,117,116,105,108,115,46,105,115,85,110,100,101,102,105,110,101,100,40,99,111,110,102,105,103,50,91,112,114,111,112,93,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,77,101,114,103,101,100,86,97,108,117,101,40,117,110,100,101,102,105,110,101,100,44,32,99,111,110,102,105,103,50,91,112,114,111,112,93,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,117,116,105,108,115,46,105,115,85,110,100,101,102,105,110,101,100,40,99,111,110,102,105,103,49,91,112,114,111,112,93,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,77,101,114,103,101,100,86,97,108,117,101,40,117,110,100,101,102,105,110,101,100,44,32,99,111,110,102,105,103,49,91,112,114,111,112,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,99,111,110,115,105,115,116,101,110,116,45,114,101,116,117,114,110,92,110,32,32,102,117,110,99,116,105,111,110,32,109,101,114,103,101,68,105,114,101,99,116,75,101,121,115,40,112,114,111,112,41,32,123,92,110,32,32,32,32,105,102,32,40,112,114,111,112,32,105,110,32,99,111,110,102,105,103,50,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,77,101,114,103,101,100,86,97,108,117,101,40,99,111,110,102,105,103,49,91,112,114,111,112,93,44,32,99,111,110,102,105,103,50,91,112,114,111,112,93,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,112,114,111,112,32,105,110,32,99,111,110,102,105,103,49,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,77,101,114,103,101,100,86,97,108,117,101,40,117,110,100,101,102,105,110,101,100,44,32,99,111,110,102,105,103,49,91,112,114,111,112,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,109,101,114,103,101,77,97,112,32,61,32,123,92,110,32,32,32,32,39,117,114,108,39,58,32,118,97,108,117,101,70,114,111,109,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,109,101,116,104,111,100,39,58,32,118,97,108,117,101,70,114,111,109,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,100,97,116,97,39,58,32,118,97,108,117,101,70,114,111,109,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,98,97,115,101,85,82,76,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,116,114,97,110,115,102,111,114,109,82,101,113,117,101,115,116,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,116,114,97,110,115,102,111,114,109,82,101,115,112,111,110,115,101,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,112,97,114,97,109,115,83,101,114,105,97,108,105,122,101,114,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,116,105,109,101,111,117,116,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,116,105,109,101,111,117,116,77,101,115,115,97,103,101,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,97,100,97,112,116,101,114,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,114,101,115,112,111,110,115,101,84,121,112,101,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,120,115,114,102,67,111,111,107,105,101,78,97,109,101,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,120,115,114,102,72,101,97,100,101,114,78,97,109,101,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,111,110,85,112,108,111,97,100,80,114,111,103,114,101,115,115,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,111,110,68,111,119,110,108,111,97,100,80,114,111,103,114,101,115,115,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,100,101,99,111,109,112,114,101,115,115,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,109,97,120,67,111,110,116,101,110,116,76,101,110,103,116,104,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,109,97,120,66,111,100,121,76,101,110,103,116,104,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,116,114,97,110,115,112,111,114,116,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,104,116,116,112,65,103,101,110,116,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,104,116,116,112,115,65,103,101,110,116,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,99,97,110,99,101,108,84,111,107,101,110,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,115,111,99,107,101,116,80,97,116,104,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,114,101,115,112,111,110,115,101,69,110,99,111,100,105,110,103,39,58,32,100,101,102,97,117,108,116,84,111,67,111,110,102,105,103,50,44,92,110,32,32,32,32,39,118,97,108,105,100,97,116,101,83,116,97,116,117,115,39,58,32,109,101,114,103,101,68,105,114,101,99,116,75,101,121,115,92,110,32,32,125,59,92,110,92,110,32,32,117,116,105,108,115,46,102,111,114,69,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,99,111,110,102,105,103,49,41,46,99,111,110,99,97,116,40,79,98,106,101,99,116,46,107,101,121,115,40,99,111,110,102,105,103,50,41,41,44,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,67,111,110,102,105,103,86,97,108,117,101,40,112,114,111,112,41,32,123,92,110,32,32,32,32,118,97,114,32,109,101,114,103,101,32,61,32,109,101,114,103,101,77,97,112,91,112,114,111,112,93,32,124,124,32,109,101,114,103,101,68,101,101,112,80,114,111,112,101,114,116,105,101,115,59,92,110,32,32,32,32,118,97,114,32,99,111,110,102,105,103,86,97,108,117,101,32,61,32,109,101,114,103,101,40,112,114,111,112,41,59,92,110,32,32,32,32,40,117,116,105,108,115,46,105,115,85,110,100,101,102,105,110,101,100,40,99,111,110,102,105,103,86,97,108,117,101,41,32,38,38,32,109,101,114,103,101,32,33,61,61,32,109,101,114,103,101,68,105,114,101,99,116,75,101,121,115,41,32,124,124,32,40,99,111,110,102,105,103,91,112,114,111,112,93,32,61,32,99,111,110,102,105,103,86,97,108,117,101,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,111,110,102,105,103,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,109,101,114,103,101,67,111,110,102,105,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,115,101,116,116,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,115,101,116,116,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,99,114,101,97,116,101,69,114,114,111,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,114,101,97,116,101,69,114,114,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,99,114,101,97,116,101,69,114,114,111,114,46,106,115,92,34,41,59,92,110,92,110,47,42,42,92,110,32,42,32,82,101,115,111,108,118,101,32,111,114,32,114,101,106,101,99,116,32,97,32,80,114,111,109,105,115,101,32,98,97,115,101,100,32,111,110,32,114,101,115,112,111,110,115,101,32,115,116,97,116,117,115,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,114,101,115,111,108,118,101,32,65,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,114,101,115,111,108,118,101,115,32,116,104,101,32,112,114,111,109,105,115,101,46,92,110,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,114,101,106,101,99,116,32,65,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,114,101,106,101,99,116,115,32,116,104,101,32,112,114,111,109,105,115,101,46,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,114,101,115,112,111,110,115,101,32,84,104,101,32,114,101,115,112,111,110,115,101,46,92,110,32,42,47,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,115,101,116,116,108,101,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,44,32,114,101,115,112,111,110,115,101,41,32,123,92,110,32,32,118,97,114,32,118,97,108,105,100,97,116,101,83,116,97,116,117,115,32,61,32,114,101,115,112,111,110,115,101,46,99,111,110,102,105,103,46,118,97,108,105,100,97,116,101,83,116,97,116,117,115,59,92,110,32,32,105,102,32,40,33,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,32,124,124,32,33,118,97,108,105,100,97,116,101,83,116,97,116,117,115,32,124,124,32,118,97,108,105,100,97,116,101,83,116,97,116,117,115,40,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,41,41,32,123,92,110,32,32,32,32,114,101,115,111,108,118,101,40,114,101,115,112,111,110,115,101,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,106,101,99,116,40,99,114,101,97,116,101,69,114,114,111,114,40,92,110,32,32,32,32,32,32,39,82,101,113,117,101,115,116,32,102,97,105,108,101,100,32,119,105,116,104,32,115,116,97,116,117,115,32,99,111,100,101,32,39,32,43,32,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,44,92,110,32,32,32,32,32,32,114,101,115,112,111,110,115,101,46,99,111,110,102,105,103,44,92,110,32,32,32,32,32,32,110,117,108,108,44,92,110,32,32,32,32,32,32,114,101,115,112,111,110,115,101,46,114,101,113,117,101,115,116,44,92,110,32,32,32,32,32,32,114,101,115,112,111,110,115,101,92,110,32,32,32,32,41,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,115,101,116,116,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,116,114,97,110,115,102,111,114,109,68,97,116,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,116,114,97,110,115,102,111,114,109,68,97,116,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,117,116,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,117,116,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,100,101,102,97,117,108,116,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,100,101,102,97,117,108,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,100,101,102,97,117,108,116,115,46,106,115,92,34,41,59,92,110,92,110,47,42,42,92,110,32,42,32,84,114,97,110,115,102,111,114,109,32,116,104,101,32,100,97,116,97,32,102,111,114,32,97,32,114,101,113,117,101,115,116,32,111,114,32,97,32,114,101,115,112,111,110,115,101,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,124,83,116,114,105,110,103,125,32,100,97,116,97,32,84,104,101,32,100,97,116,97,32,116,111,32,98,101,32,116,114,97,110,115,102,111,114,109,101,100,92,110,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,104,101,97,100,101,114,115,32,84,104,101,32,104,101,97,100,101,114,115,32,102,111,114,32,116,104,101,32,114,101,113,117,101,115,116,32,111,114,32,114,101,115,112,111,110,115,101,92,110,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,70,117,110,99,116,105,111,110,125,32,102,110,115,32,65,32,115,105,110,103,108,101,32,102,117,110,99,116,105,111,110,32,111,114,32,65,114,114,97,121,32,111,102,32,102,117,110,99,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,84,104,101,32,114,101,115,117,108,116,105,110,103,32,116,114,97,110,115,102,111,114,109,101,100,32,100,97,116,97,92,110,32,42,47,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,68,97,116,97,40,100,97,116,97,44,32,104,101,97,100,101,114,115,44,32,102,110,115,41,32,123,92,110,32,32,118,97,114,32,99,111,110,116,101,120,116,32,61,32,116,104,105,115,32,124,124,32,100,101,102,97,117,108,116,115,59,92,110,32,32,47,42,101,115,108,105,110,116,32,110,111,45,112,97,114,97,109,45,114,101,97,115,115,105,103,110,58,48,42,47,92,110,32,32,117,116,105,108,115,46,102,111,114,69,97,99,104,40,102,110,115,44,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,40,102,110,41,32,123,92,110,32,32,32,32,100,97,116,97,32,61,32,102,110,46,99,97,108,108,40,99,111,110,116,101,120,116,44,32,100,97,116,97,44,32,104,101,97,100,101,114,115,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,116,114,97,110,115,102,111,114,109,68,97,116,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,100,101,102,97,117,108,116,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,100,101,102,97,117,108,116,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,117,116,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,117,116,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,92,34,41,59,92,110,118,97,114,32,110,111,114,109,97,108,105,122,101,72,101,97,100,101,114,78,97,109,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,110,111,114,109,97,108,105,122,101,72,101,97,100,101,114,78,97,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,110,111,114,109,97,108,105,122,101,72,101,97,100,101,114,78,97,109,101,46,106,115,92,34,41,59,92,110,118,97,114,32,101,110,104,97,110,99,101,69,114,114,111,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,114,101,47,101,110,104,97,110,99,101,69,114,114,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,99,111,114,101,47,101,110,104,97,110,99,101,69,114,114,111,114,46,106,115,92,34,41,59,92,110,92,110,118,97,114,32,68,69,70,65,85,76,84,95,67,79,78,84,69,78,84,95,84,89,80,69,32,61,32,123,92,110,32,32,39,67,111,110,116,101,110,116,45,84,121,112,101,39,58,32,39,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,39,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,67,111,110,116,101,110,116,84,121,112,101,73,102,85,110,115,101,116,40,104,101,97,100,101,114,115,44,32,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,33,117,116,105,108,115,46,105,115,85,110,100,101,102,105,110,101,100,40,104,101,97,100,101,114,115,41,32,38,38,32,117,116,105,108,115,46,105,115,85,110,100,101,102,105,110,101,100,40,104,101,97,100,101,114,115,91,39,67,111,110,116,101,110,116,45,84,121,112,101,39,93,41,41,32,123,92,110,32,32,32,32,104,101,97,100,101,114,115,91,39,67,111,110,116,101,110,116,45,84,121,112,101,39,93,32,61,32,118,97,108,117,101,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,68,101,102,97,117,108,116,65,100,97,112,116,101,114,40,41,32,123,92,110,32,32,118,97,114,32,97,100,97,112,116,101,114,59,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,88,77,76,72,116,116,112,82,101,113,117,101,115,116,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,47,47,32,70,111,114,32,98,114,111,119,115,101,114,115,32,117,115,101,32,88,72,82,32,97,100,97,112,116,101,114,92,110,32,32,32,32,97,100,97,112,116,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,100,97,112,116,101,114,115,47,120,104,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,97,100,97,112,116,101,114,115,47,120,104,114,46,106,115,92,34,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,111,102,32,112,114,111,99,101,115,115,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,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,112,114,111,99,101,115,115,41,32,61,61,61,32,39,91,111,98,106,101,99,116,32,112,114,111,99,101,115,115,93,39,41,32,123,92,110,32,32,32,32,47,47,32,70,111,114,32,110,111,100,101,32,117,115,101,32,72,84,84,80,32,97,100,97,112,116,101,114,92,110,32,32,32,32,97,100,97,112,116,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,100,97,112,116,101,114,115,47,104,116,116,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,97,100,97,112,116,101,114,115,47,120,104,114,46,106,115,92,34,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,97,100,97,112,116,101,114,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,114,105,110,103,105,102,121,83,97,102,101,108,121,40,114,97,119,86,97,108,117,101,44,32,112,97,114,115,101,114,44,32,101,110,99,111,100,101,114,41,32,123,92,110,32,32,105,102,32,40,117,116,105,108,115,46,105,115,83,116,114,105,110,103,40,114,97,119,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,40,112,97,114,115,101,114,32,124,124,32,74,83,79,78,46,112,97,114,115,101,41,40,114,97,119,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,117,116,105,108,115,46,116,114,105,109,40,114,97,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,101,46,110,97,109,101,32,33,61,61,32,39,83,121,110,116,97,120,69,114,114,111,114,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,40,101,110,99,111,100,101,114,32,124,124,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,41,40,114,97,119,86,97,108,117,101,41,59,92,110,125,92,110,92,110,118,97,114,32,100,101,102,97,117,108,116,115,32,61,32,123,92,110,92,110,32,32,116,114,97,110,115,105,116,105,111,110,97,108,58,32,123,92,110,32,32,32,32,115,105,108,101,110,116,74,83,79,78,80,97,114,115,105,110,103,58,32,116,114,117,101,44,92,110,32,32,32,32,102,111,114,99,101,100,74,83,79,78,80,97,114,115,105,110,103,58,32,116,114,117,101,44,92,110,32,32,32,32,99,108,97,114,105,102,121,84,105,109,101,111,117,116,69,114,114,111,114,58,32,102,97,108,115,101,92,110,32,32,125,44,92,110,92,110,32,32,97,100,97,112,116,101,114,58,32,103,101,116,68,101,102,97,117,108,116,65,100,97,112,116,101,114,40,41,44,92,110,92,110,32,32,116,114,97,110,115,102,111,114,109,82,101,113,117,101,115,116,58,32,91,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,82,101,113,117,101,115,116,40,100,97,116,97,44,32,104,101,97,100,101,114,115,41,32,123,92,110,32,32,32,32,110,111,114,109,97,108,105,122,101,72,101,97,100,101,114,78,97,109,101,40,104,101,97,100,101,114,115,44,32,39,65,99,99,101,112,116,39,41,59,92,110,32,32,32,32,110,111,114,109,97,108,105,122,101,72,101,97,100,101,114,78,97,109,101,40,104,101,97,100,101,114,115,44,32,39,67,111,110,116,101,110,116,45,84,121,112,101,39,41,59,92,110,92,110,32,32,32,32,105,102,32,40,117,116,105,108,115,46,105,115,70,111,114,109,68,97,116,97,40,100,97,116,97,41,32,124,124,92,110,32,32,32,32,32,32,117,116,105,108,115,46,105,115,65,114,114,97,121,66,117,102,102,101,114,40,100,97,116,97,41,32,124,124,92,110,32,32,32,32,32,32,117,116,105,108,115,46,105,115,66,117,102,102,101,114,40,100,97,116,97,41,32,124,124,92,110,32,32,32,32,32,32,117,116,105,108,115,46,105,115,83,116,114,101,97,109,40,100,97,116,97,41,32,124,124,92,110,32,32,32,32,32,32,117,116,105,108,115,46,105,115,70,105,108,101,40,100,97,116,97,41,32,124,124,92,110,32,32,32,32,32,32,117,116,105,108,115,46,105,115,66,108,111,98,40,100,97,116,97,41,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,117,116,105,108,115,46,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,40,100,97,116,97,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,46,98,117,102,102,101,114,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,117,116,105,108,115,46,105,115,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,40,100,97,116,97,41,41,32,123,92,110,32,32,32,32,32,32,115,101,116,67,111,110,116,101,110,116,84,121,112,101,73,102,85,110,115,101,116,40,104,101,97,100,101,114,115,44,32,39,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,99,104,97,114,115,101,116,61,117,116,102,45,56,39,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,46,116,111,83,116,114,105,110,103,40,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,117,116,105,108,115,46,105,115,79,98,106,101,99,116,40,100,97,116,97,41,32,124,124,32,40,104,101,97,100,101,114,115,32,38,38,32,104,101,97,100,101,114,115,91,39,67,111,110,116,101,110,116,45,84,121,112,101,39,93,32,61,61,61,32,39,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,39,41,41,32,123,92,110,32,32,32,32,32,32,115,101,116,67,111,110,116,101,110,116,84,121,112,101,73,102,85,110,115,101,116,40,104,101,97,100,101,114,115,44,32,39,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,39,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,105,102,121,83,97,102,101,108,121,40,100,97,116,97,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,32,32,125,93,44,92,110,92,110,32,32,116,114,97,110,115,102,111,114,109,82,101,115,112,111,110,115,101,58,32,91,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,82,101,115,112,111,110,115,101,40,100,97,116,97,41,32,123,92,110,32,32,32,32,118,97,114,32,116,114,97,110,115,105,116,105,111,110,97,108,32,61,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,97,108,32,124,124,32,100,101,102,97,117,108,116,115,46,116,114,97,110,115,105,116,105,111,110,97,108,59,92,110,32,32,32,32,118,97,114,32,115,105,108,101,110,116,74,83,79,78,80,97,114,115,105,110,103,32,61,32,116,114,97,110,115,105,116,105,111,110,97,108,32,38,38,32,116,114,97,110,115,105,116,105,111,110,97,108,46,115,105,108,101,110,116,74,83,79,78,80,97,114,115,105,110,103,59,92,110,32,32,32,32,118,97,114,32,102,111,114,99,101,100,74,83,79,78,80,97,114,115,105,110,103,32,61,32,116,114,97,110,115,105,116,105,111,110,97,108,32,38,38,32,116,114,97,110,115,105,116,105,111,110,97,108,46,102,111,114,99,101,100,74,83,79,78,80,97,114,115,105,110,103,59,92,110,32,32,32,32,118,97,114,32,115,116,114,105,99,116,74,83,79,78,80,97,114,115,105,110,103,32,61,32,33,115,105,108,101,110,116,74,83,79,78,80,97,114,115,105,110,103,32,38,38,32,116,104,105,115,46,114,101,115,112,111,110,115,101,84,121,112,101,32,61,61,61,32,39,106,115,111,110,39,59,92,110,92,110,32,32,32,32,105,102,32,40,115,116,114,105,99,116,74,83,79,78,80,97,114,115,105,110,103,32,124,124,32,40,102,111,114,99,101,100,74,83,79,78,80,97,114,115,105,110,103,32,38,38,32,117,116,105,108,115,46,105,115,83,116,114,105,110,103,40,100,97,116,97,41,32,38,38,32,100,97,116,97,46,108,101,110,103,116,104,41,41,32,123,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,74,83,79,78,46,112,97,114,115,101,40,100,97,116,97,41,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,116,114,105,99,116,74,83,79,78,80,97,114,115,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,46,110,97,109,101,32,61,61,61,32,39,83,121,110,116,97,120,69,114,114,111,114,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,101,110,104,97,110,99,101,69,114,114,111,114,40,101,44,32,116,104,105,115,44,32,39,69,95,74,83,79,78,95,80,65,82,83,69,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,32,32,125,93,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,32,116,105,109,101,111,117,116,32,105,110,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,111,32,97,98,111,114,116,32,97,32,114,101,113,117,101,115,116,46,32,73,102,32,115,101,116,32,116,111,32,48,32,40,100,101,102,97,117,108,116,41,32,97,92,110,32,32,32,42,32,116,105,109,101,111,117,116,32,105,115,32,110,111,116,32,99,114,101,97,116,101,100,46,92,110,32,32,32,42,47,92,110,32,32,116,105,109,101,111,117,116,58,32,48,44,92,110,92,110,32,32,120,115,114,102,67,111,111,107,105,101,78,97,109,101,58,32,39,88,83,82,70,45,84,79,75,69,78,39,44,92,110,32,32,120,115,114,102,72,101,97,100,101,114,78,97,109,101,58,32,39,88,45,88,83,82,70,45,84,79,75,69,78,39,44,92,110,92,110,32,32,109,97,120,67,111,110,116,101,110,116,76,101,110,103,116,104,58,32,45,49,44,92,110,32,32,109,97,120,66,111,100,121,76,101,110,103,116,104,58,32,45,49,44,92,110,92,110,32,32,118,97,108,105,100,97,116,101,83,116,97,116,117,115,58,32,102,117,110,99,116,105,111,110,32,118,97,108,105,100,97,116,101,83,116,97,116,117,115,40,115,116,97,116,117,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,97,116,117,115,32,62,61,32,50,48,48,32,38,38,32,115,116,97,116,117,115,32,60,32,51,48,48,59,92,110,32,32,125,44,92,110,92,110,32,32,104,101,97,100,101,114,115,58,32,123,92,110,32,32,32,32,99,111,109,109,111,110,58,32,123,92,110,32,32,32,32,32,32,39,65,99,99,101,112,116,39,58,32,39,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,44,32,116,101,120,116,47,112,108,97,105,110,44,32,42,47,42,39,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,117,116,105,108,115,46,102,111,114,69,97,99,104,40,91,39,100,101,108,101,116,101,39,44,32,39,103,101,116,39,44,32,39,104,101,97,100,39,93,44,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,77,101,116,104,111,100,78,111,68,97,116,97,40,109,101,116,104,111,100,41,32,123,92,110,32,32,100,101,102,97,117,108,116,115,46,104,101,97,100,101,114,115,91,109,101,116,104,111,100,93,32,61,32,123,125,59,92,110,125,41,59,92,110,92,110,117,116,105,108,115,46,102,111,114,69,97,99,104,40,91,39,112,111,115,116,39,44,32,39,112,117,116,39,44,32,39,112,97,116,99,104,39,93,44,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,77,101,116,104,111,100,87,105,116,104,68,97,116,97,40,109,101,116,104,111,100,41,32,123,92,110,32,32,100,101,102,97,117,108,116,115,46,104,101,97,100,101,114,115,91,109,101,116,104,111,100,93,32,61,32,117,116,105,108,115,46,109,101,114,103,101,40,68,69,70,65,85,76,84,95,67,79,78,84,69,78,84,95,84,89,80,69,41,59,92,110,125,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,100,101,102,97,117,108,116,115,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,100,101,102,97,117,108,116,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,101,110,118,47,100,97,116,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,101,110,118,47,100,97,116,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,123,92,110,32,32,92,34,118,101,114,115,105,111,110,92,34,58,32,92,34,48,46,50,53,46,48,92,34,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,101,110,118,47,100,97,116,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,98,105,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,98,105,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,98,105,110,100,40,102,110,44,32,116,104,105,115,65,114,103,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,119,114,97,112,40,41,32,123,92,110,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,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,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,97,114,103,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,97,114,103,115,91,105,93,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,102,110,46,97,112,112,108,121,40,116,104,105,115,65,114,103,44,32,97,114,103,115,41,59,92,110,32,32,125,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,98,105,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,98,117,105,108,100,85,82,76,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,98,117,105,108,100,85,82,76,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,117,116,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,117,116,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,92,34,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,101,110,99,111,100,101,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,118,97,108,41,46,92,110,32,32,32,32,114,101,112,108,97,99,101,40,47,37,51,65,47,103,105,44,32,39,58,39,41,46,92,110,32,32,32,32,114,101,112,108,97,99,101,40,47,37,50,52,47,103,44,32,39,36,39,41,46,92,110,32,32,32,32,114,101,112,108,97,99,101,40,47,37,50,67,47,103,105,44,32,39,44,39,41,46,92,110,32,32,32,32,114,101,112,108,97,99,101,40,47,37,50,48,47,103,44,32,39,43,39,41,46,92,110,32,32,32,32,114,101,112,108,97,99,101,40,47,37,53,66,47,103,105,44,32,39,91,39,41,46,92,110,32,32,32,32,114,101,112,108,97,99,101,40,47,37,53,68,47,103,105,44,32,39,93,39,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,66,117,105,108,100,32,97,32,85,82,76,32,98,121,32,97,112,112,101,110,100,105,110,103,32,112,97,114,97,109,115,32,116,111,32,116,104,101,32,101,110,100,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,117,114,108,32,84,104,101,32,98,97,115,101,32,111,102,32,116,104,101,32,117,114,108,32,40,101,46,103,46,44,32,104,116,116,112,58,47,47,119,119,119,46,103,111,111,103,108,101,46,99,111,109,41,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,91,112,97,114,97,109,115,93,32,84,104,101,32,112,97,114,97,109,115,32,116,111,32,98,101,32,97,112,112,101,110,100,101,100,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,84,104,101,32,102,111,114,109,97,116,116,101,100,32,117,114,108,92,110,32,42,47,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,98,117,105,108,100,85,82,76,40,117,114,108,44,32,112,97,114,97,109,115,44,32,112,97,114,97,109,115,83,101,114,105,97,108,105,122,101,114,41,32,123,92,110,32,32,47,42,101,115,108,105,110,116,32,110,111,45,112,97,114,97,109,45,114,101,97,115,115,105,103,110,58,48,42,47,92,110,32,32,105,102,32,40,33,112,97,114,97,109,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,117,114,108,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,115,101,114,105,97,108,105,122,101,100,80,97,114,97,109,115,59,92,110,32,32,105,102,32,40,112,97,114,97,109,115,83,101,114,105,97,108,105,122,101,114,41,32,123,92,110,32,32,32,32,115,101,114,105,97,108,105,122,101,100,80,97,114,97,109,115,32,61,32,112,97,114,97,109,115,83,101,114,105,97,108,105,122,101,114,40,112,97,114,97,109,115,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,117,116,105,108,115,46,105,115,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,40,112,97,114,97,109,115,41,41,32,123,92,110,32,32,32,32,115,101,114,105,97,108,105,122,101,100,80,97,114,97,109,115,32,61,32,112,97,114,97,109,115,46,116,111,83,116,114,105,110,103,40,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,116,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,117,116,105,108,115,46,102,111,114,69,97,99,104,40,112,97,114,97,109,115,44,32,102,117,110,99,116,105,111,110,32,115,101,114,105,97,108,105,122,101,40,118,97,108,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,32,61,61,61,32,110,117,108,108,32,124,124,32,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,117,116,105,108,115,46,105,115,65,114,114,97,121,40,118,97,108,41,41,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,32,61,32,107,101,121,32,43,32,39,91,93,39,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,32,61,32,91,118,97,108,93,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,117,116,105,108,115,46,102,111,114,69,97,99,104,40,118,97,108,44,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,86,97,108,117,101,40,118,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,117,116,105,108,115,46,105,115,68,97,116,101,40,118,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,32,61,32,118,46,116,111,73,83,79,83,116,114,105,110,103,40,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,117,116,105,108,115,46,105,115,79,98,106,101,99,116,40,118,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,32,61,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,118,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,97,114,116,115,46,112,117,115,104,40,101,110,99,111,100,101,40,107,101,121,41,32,43,32,39,61,39,32,43,32,101,110,99,111,100,101,40,118,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,115,101,114,105,97,108,105,122,101,100,80,97,114,97,109,115,32,61,32,112,97,114,116,115,46,106,111,105,110,40,39,38,39,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,115,101,114,105,97,108,105,122,101,100,80,97,114,97,109,115,41,32,123,92,110,32,32,32,32,118,97,114,32,104,97,115,104,109,97,114,107,73,110,100,101,120,32,61,32,117,114,108,46,105,110,100,101,120,79,102,40,39,35,39,41,59,92,110,32,32,32,32,105,102,32,40,104,97,115,104,109,97,114,107,73,110,100,101,120,32,33,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,117,114,108,32,61,32,117,114,108,46,115,108,105,99,101,40,48,44,32,104,97,115,104,109,97,114,107,73,110,100,101,120,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,117,114,108,32,43,61,32,40,117,114,108,46,105,110,100,101,120,79,102,40,39,63,39,41,32,61,61,61,32,45,49,32,63,32,39,63,39,32,58,32,39,38,39,41,32,43,32,115,101,114,105,97,108,105,122,101,100,80,97,114,97,109,115,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,117,114,108,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,98,117,105,108,100,85,82,76,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,99,111,109,98,105,110,101,85,82,76,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,99,111,109,98,105,110,101,85,82,76,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,47,42,42,92,110,32,42,32,67,114,101,97,116,101,115,32,97,32,110,101,119,32,85,82,76,32,98,121,32,99,111,109,98,105,110,105,110,103,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,85,82,76,115,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,98,97,115,101,85,82,76,32,84,104,101,32,98,97,115,101,32,85,82,76,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,114,101,108,97,116,105,118,101,85,82,76,32,84,104,101,32,114,101,108,97,116,105,118,101,32,85,82,76,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,84,104,101,32,99,111,109,98,105,110,101,100,32,85,82,76,92,110,32,42,47,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,98,105,110,101,85,82,76,115,40,98,97,115,101,85,82,76,44,32,114,101,108,97,116,105,118,101,85,82,76,41,32,123,92,110,32,32,114,101,116,117,114,110,32,114,101,108,97,116,105,118,101,85,82,76,92,110,32,32,32,32,63,32,98,97,115,101,85,82,76,46,114,101,112,108,97,99,101,40,47,92,92,47,43,36,47,44,32,39,39,41,32,43,32,39,47,39,32,43,32,114,101,108,97,116,105,118,101,85,82,76,46,114,101,112,108,97,99,101,40,47,94,92,92,47,43,47,44,32,39,39,41,92,110,32,32,32,32,58,32,98,97,115,101,85,82,76,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,99,111,109,98,105,110,101,85,82,76,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,99,111,111,107,105,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,99,111,111,107,105,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,117,116,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,117,116,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,40,92,110,32,32,117,116,105,108,115,46,105,115,83,116,97,110,100,97,114,100,66,114,111,119,115,101,114,69,110,118,40,41,32,63,92,110,92,110,32,32,47,47,32,83,116,97,110,100,97,114,100,32,98,114,111,119,115,101,114,32,101,110,118,115,32,115,117,112,112,111,114,116,32,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,92,110,32,32,32,32,40,102,117,110,99,116,105,111,110,32,115,116,97,110,100,97,114,100,66,114,111,119,115,101,114,69,110,118,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,119,114,105,116,101,58,32,102,117,110,99,116,105,111,110,32,119,114,105,116,101,40,110,97,109,101,44,32,118,97,108,117,101,44,32,101,120,112,105,114,101,115,44,32,112,97,116,104,44,32,100,111,109,97,105,110,44,32,115,101,99,117,114,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,111,107,105,101,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,111,107,105,101,46,112,117,115,104,40,110,97,109,101,32,43,32,39,61,39,32,43,32,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,118,97,108,117,101,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,117,116,105,108,115,46,105,115,78,117,109,98,101,114,40,101,120,112,105,114,101,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,111,107,105,101,46,112,117,115,104,40,39,101,120,112,105,114,101,115,61,39,32,43,32,110,101,119,32,68,97,116,101,40,101,120,112,105,114,101,115,41,46,116,111,71,77,84,83,116,114,105,110,103,40,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,117,116,105,108,115,46,105,115,83,116,114,105,110,103,40,112,97,116,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,111,107,105,101,46,112,117,115,104,40,39,112,97,116,104,61,39,32,43,32,112,97,116,104,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,117,116,105,108,115,46,105,115,83,116,114,105,110,103,40,100,111,109,97,105,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,111,107,105,101,46,112,117,115,104,40,39,100,111,109,97,105,110,61,39,32,43,32,100,111,109,97,105,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,101,99,117,114,101,32,61,61,61,32,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,111,107,105,101,46,112,117,115,104,40,39,115,101,99,117,114,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,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,99,111,111,107,105,101,46,106,111,105,110,40,39,59,32,39,41,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,92,110,32,32,32,32,32,32,32,32,114,101,97,100,58,32,102,117,110,99,116,105,111,110,32,114,101,97,100,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,32,61,32,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,46,109,97,116,99,104,40,110,101,119,32,82,101,103,69,120,112,40,39,40,94,124,59,92,92,92,92,115,42,41,40,39,32,43,32,110,97,109,101,32,43,32,39,41,61,40,91,94,59,93,42,41,39,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,109,97,116,99,104,32,63,32,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,109,97,116,99,104,91,51,93,41,32,58,32,110,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,58,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,119,114,105,116,101,40,110,97,109,101,44,32,39,39,44,32,68,97,116,101,46,110,111,119,40,41,32,45,32,56,54,52,48,48,48,48,48,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,40,41,32,58,92,110,92,110,32,32,47,47,32,78,111,110,32,115,116,97,110,100,97,114,100,32,98,114,111,119,115,101,114,32,101,110,118,32,40,119,101,98,32,119,111,114,107,101,114,115,44,32,114,101,97,99,116,45,110,97,116,105,118,101,41,32,108,97,99,107,32,110,101,101,100,101,100,32,115,117,112,112,111,114,116,46,92,110,32,32,32,32,40,102,117,110,99,116,105,111,110,32,110,111,110,83,116,97,110,100,97,114,100,66,114,111,119,115,101,114,69,110,118,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,119,114,105,116,101,58,32,102,117,110,99,116,105,111,110,32,119,114,105,116,101,40,41,32,123,125,44,92,110,32,32,32,32,32,32,32,32,114,101,97,100,58,32,102,117,110,99,116,105,111,110,32,114,101,97,100,40,41,32,123,32,114,101,116,117,114,110,32,110,117,108,108,59,32,125,44,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,58,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,40,41,32,123,125,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,40,41,92,110,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,99,111,111,107,105,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,105,115,65,98,115,111,108,117,116,101,85,82,76,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,105,115,65,98,115,111,108,117,116,101,85,82,76,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,115,32,119,104,101,116,104,101,114,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,85,82,76,32,105,115,32,97,98,115,111,108,117,116,101,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,117,114,108,32,84,104,101,32,85,82,76,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,85,82,76,32,105,115,32,97,98,115,111,108,117,116,101,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,105,115,65,98,115,111,108,117,116,101,85,82,76,40,117,114,108,41,32,123,92,110,32,32,47,47,32,65,32,85,82,76,32,105,115,32,99,111,110,115,105,100,101,114,101,100,32,97,98,115,111,108,117,116,101,32,105,102,32,105,116,32,98,101,103,105,110,115,32,119,105,116,104,32,92,34,60,115,99,104,101,109,101,62,58,47,47,92,34,32,111,114,32,92,34,47,47,92,34,32,40,112,114,111,116,111,99,111,108,45,114,101,108,97,116,105,118,101,32,85,82,76,41,46,92,110,32,32,47,47,32,82,70,67,32,51,57,56,54,32,100,101,102,105,110,101,115,32,115,99,104,101,109,101,32,110,97,109,101,32,97,115,32,97,32,115,101,113,117,101,110,99,101,32,111,102,32,99,104,97,114,97,99,116,101,114,115,32,98,101,103,105,110,110,105,110,103,32,119,105,116,104,32,97,32,108,101,116,116,101,114,32,97,110,100,32,102,111,108,108,111,119,101,100,92,110,32,32,47,47,32,98,121,32,97,110,121,32,99,111,109,98,105,110,97,116,105,111,110,32,111,102,32,108,101,116,116,101,114,115,44,32,100,105,103,105,116,115,44,32,112,108,117,115,44,32,112,101,114,105,111,100,44,32,111,114,32,104,121,112,104,101,110,46,92,110,32,32,114,101,116,117,114,110,32,47,94,40,91,97,45,122,93,91,97,45,122,92,92,100,43,92,92,45,46,93,42,58,41,63,92,92,47,92,92,47,47,105,46,116,101,115,116,40,117,114,108,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,105,115,65,98,115,111,108,117,116,101,85,82,76,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,105,115,65,120,105,111,115,69,114,114,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,105,115,65,120,105,111,115,69,114,114,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,117,116,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,117,116,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,92,34,41,59,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,115,32,119,104,101,116,104,101,114,32,116,104,101,32,112,97,121,108,111,97,100,32,105,115,32,97,110,32,101,114,114,111,114,32,116,104,114,111,119,110,32,98,121,32,65,120,105,111,115,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,42,125,32,112,97,121,108,111,97,100,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,116,104,101,32,112,97,121,108,111,97,100,32,105,115,32,97,110,32,101,114,114,111,114,32,116,104,114,111,119,110,32,98,121,32,65,120,105,111,115,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,105,115,65,120,105,111,115,69,114,114,111,114,40,112,97,121,108,111,97,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,117,116,105,108,115,46,105,115,79,98,106,101,99,116,40,112,97,121,108,111,97,100,41,32,38,38,32,40,112,97,121,108,111,97,100,46,105,115,65,120,105,111,115,69,114,114,111,114,32,61,61,61,32,116,114,117,101,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,105,115,65,120,105,111,115,69,114,114,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,105,115,85,82,76,83,97,109,101,79,114,105,103,105,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,105,115,85,82,76,83,97,109,101,79,114,105,103,105,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,117,116,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,117,116,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,40,92,110,32,32,117,116,105,108,115,46,105,115,83,116,97,110,100,97,114,100,66,114,111,119,115,101,114,69,110,118,40,41,32,63,92,110,92,110,32,32,47,47,32,83,116,97,110,100,97,114,100,32,98,114,111,119,115,101,114,32,101,110,118,115,32,104,97,118,101,32,102,117,108,108,32,115,117,112,112,111,114,116,32,111,102,32,116,104,101,32,65,80,73,115,32,110,101,101,100,101,100,32,116,111,32,116,101,115,116,92,110,32,32,47,47,32,119,104,101,116,104,101,114,32,116,104,101,32,114,101,113,117,101,115,116,32,85,82,76,32,105,115,32,111,102,32,116,104,101,32,115,97,109,101,32,111,114,105,103,105,110,32,97,115,32,99,117,114,114,101,110,116,32,108,111,99,97,116,105,111,110,46,92,110,32,32,32,32,40,102,117,110,99,116,105,111,110,32,115,116,97,110,100,97,114,100,66,114,111,119,115,101,114,69,110,118,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,115,105,101,32,61,32,47,40,109,115,105,101,124,116,114,105,100,101,110,116,41,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,92,110,32,32,32,32,32,32,118,97,114,32,117,114,108,80,97,114,115,105,110,103,78,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,39,97,39,41,59,92,110,32,32,32,32,32,32,118,97,114,32,111,114,105,103,105,110,85,82,76,59,92,110,92,110,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,42,32,80,97,114,115,101,32,97,32,85,82,76,32,116,111,32,100,105,115,99,111,118,101,114,32,105,116,39,115,32,99,111,109,112,111,110,101,110,116,115,92,110,32,32,32,32,42,92,110,32,32,32,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,117,114,108,32,84,104,101,32,85,82,76,32,116,111,32,98,101,32,112,97,114,115,101,100,92,110,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,92,110,32,32,32,32,42,47,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,85,82,76,40,117,114,108,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,104,114,101,102,32,61,32,117,114,108,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,109,115,105,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,69,32,110,101,101,100,115,32,97,116,116,114,105,98,117,116,101,32,115,101,116,32,116,119,105,99,101,32,116,111,32,110,111,114,109,97,108,105,122,101,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,32,32,32,32,32,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,104,114,101,102,39,44,32,104,114,101,102,41,59,92,110,32,32,32,32,32,32,32,32,32,32,104,114,101,102,32,61,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,104,114,101,102,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,104,114,101,102,39,44,32,104,114,101,102,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,32,112,114,111,118,105,100,101,115,32,116,104,101,32,85,114,108,85,116,105,108,115,32,105,110,116,101,114,102,97,99,101,32,45,32,104,116,116,112,58,47,47,117,114,108,46,115,112,101,99,46,119,104,97,116,119,103,46,111,114,103,47,35,117,114,108,117,116,105,108,115,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,114,101,102,58,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,104,114,101,102,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,116,111,99,111,108,58,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,112,114,111,116,111,99,111,108,32,63,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,112,114,111,116,111,99,111,108,46,114,101,112,108,97,99,101,40,47,58,36,47,44,32,39,39,41,32,58,32,39,39,44,92,110,32,32,32,32,32,32,32,32,32,32,104,111,115,116,58,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,104,111,115,116,44,92,110,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,58,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,115,101,97,114,99,104,32,63,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,115,101,97,114,99,104,46,114,101,112,108,97,99,101,40,47,94,92,92,63,47,44,32,39,39,41,32,58,32,39,39,44,92,110,32,32,32,32,32,32,32,32,32,32,104,97,115,104,58,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,104,97,115,104,32,63,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,104,97,115,104,46,114,101,112,108,97,99,101,40,47,94,35,47,44,32,39,39,41,32,58,32,39,39,44,92,110,32,32,32,32,32,32,32,32,32,32,104,111,115,116,110,97,109,101,58,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,104,111,115,116,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,112,111,114,116,58,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,112,111,114,116,44,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,110,97,109,101,58,32,40,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,112,97,116,104,110,97,109,101,46,99,104,97,114,65,116,40,48,41,32,61,61,61,32,39,47,39,41,32,63,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,112,97,116,104,110,97,109,101,32,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,47,39,32,43,32,117,114,108,80,97,114,115,105,110,103,78,111,100,101,46,112,97,116,104,110,97,109,101,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,111,114,105,103,105,110,85,82,76,32,61,32,114,101,115,111,108,118,101,85,82,76,40,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,114,101,102,41,59,92,110,92,110,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,85,82,76,32,115,104,97,114,101,115,32,116,104,101,32,115,97,109,101,32,111,114,105,103,105,110,32,97,115,32,116,104,101,32,99,117,114,114,101,110,116,32,108,111,99,97,116,105,111,110,92,110,32,32,32,32,42,92,110,32,32,32,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,114,101,113,117,101,115,116,85,82,76,32,84,104,101,32,85,82,76,32,116,111,32,116,101,115,116,92,110,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,85,82,76,32,115,104,97,114,101,115,32,116,104,101,32,115,97,109,101,32,111,114,105,103,105,110,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,32,32,32,42,47,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,105,115,85,82,76,83,97,109,101,79,114,105,103,105,110,40,114,101,113,117,101,115,116,85,82,76,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,97,114,115,101,100,32,61,32,40,117,116,105,108,115,46,105,115,83,116,114,105,110,103,40,114,101,113,117,101,115,116,85,82,76,41,41,32,63,32,114,101,115,111,108,118,101,85,82,76,40,114,101,113,117,101,115,116,85,82,76,41,32,58,32,114,101,113,117,101,115,116,85,82,76,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,112,97,114,115,101,100,46,112,114,111,116,111,99,111,108,32,61,61,61,32,111,114,105,103,105,110,85,82,76,46,112,114,111,116,111,99,111,108,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,104,111,115,116,32,61,61,61,32,111,114,105,103,105,110,85,82,76,46,104,111,115,116,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,40,41,32,58,92,110,92,110,32,32,47,47,32,78,111,110,32,115,116,97,110,100,97,114,100,32,98,114,111,119,115,101,114,32,101,110,118,115,32,40,119,101,98,32,119,111,114,107,101,114,115,44,32,114,101,97,99,116,45,110,97,116,105,118,101,41,32,108,97,99,107,32,110,101,101,100,101,100,32,115,117,112,112,111,114,116,46,92,110,32,32,32,32,40,102,117,110,99,116,105,111,110,32,110,111,110,83,116,97,110,100,97,114,100,66,114,111,119,115,101,114,69,110,118,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,105,115,85,82,76,83,97,109,101,79,114,105,103,105,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,40,41,92,110,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,105,115,85,82,76,83,97,109,101,79,114,105,103,105,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,110,111,114,109,97,108,105,122,101,72,101,97,100,101,114,78,97,109,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,110,111,114,109,97,108,105,122,101,72,101,97,100,101,114,78,97,109,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,117,116,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,92,34,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,72,101,97,100,101,114,78,97,109,101,40,104,101,97,100,101,114,115,44,32,110,111,114,109,97,108,105,122,101,100,78,97,109,101,41,32,123,92,110,32,32,117,116,105,108,115,46,102,111,114,69,97,99,104,40,104,101,97,100,101,114,115,44,32,102,117,110,99,116,105,111,110,32,112,114,111,99,101,115,115,72,101,97,100,101,114,40,118,97,108,117,101,44,32,110,97,109,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,97,109,101,32,33,61,61,32,110,111,114,109,97,108,105,122,101,100,78,97,109,101,32,38,38,32,110,97,109,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,32,61,61,61,32,110,111,114,109,97,108,105,122,101,100,78,97,109,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,41,32,123,92,110,32,32,32,32,32,32,104,101,97,100,101,114,115,91,110,111,114,109,97,108,105,122,101,100,78,97,109,101,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,100,101,108,101,116,101,32,104,101,97,100,101,114,115,91,110,97,109,101,93,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,110,111,114,109,97,108,105,122,101,72,101,97,100,101,114,78,97,109,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,112,97,114,115,101,72,101,97,100,101,114,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,112,97,114,115,101,72,101,97,100,101,114,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,117,116,105,108,115,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,46,46,47,117,116,105,108,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,92,34,41,59,92,110,92,110,47,47,32,72,101,97,100,101,114,115,32,119,104,111,115,101,32,100,117,112,108,105,99,97,116,101,115,32,97,114,101,32,105,103,110,111,114,101,100,32,98,121,32,110,111,100,101,92,110,47,47,32,99,46,102,46,32,104,116,116,112,115,58,47,47,110,111,100,101,106,115,46,111,114,103,47,97,112,105,47,104,116,116,112,46,104,116,109,108,35,104,116,116,112,95,109,101,115,115,97,103,101,95,104,101,97,100,101,114,115,92,110,118,97,114,32,105,103,110,111,114,101,68,117,112,108,105,99,97,116,101,79,102,32,61,32,91,92,110,32,32,39,97,103,101,39,44,32,39,97,117,116,104,111,114,105,122,97,116,105,111,110,39,44,32,39,99,111,110,116,101,110,116,45,108,101,110,103,116,104,39,44,32,39,99,111,110,116,101,110,116,45,116,121,112,101,39,44,32,39,101,116,97,103,39,44,92,110,32,32,39,101,120,112,105,114,101,115,39,44,32,39,102,114,111,109,39,44,32,39,104,111,115,116,39,44,32,39,105,102,45,109,111,100,105,102,105,101,100,45,115,105,110,99,101,39,44,32,39,105,102,45,117,110,109,111,100,105,102,105,101,100,45,115,105,110,99,101,39,44,92,110,32,32,39,108,97,115,116,45,109,111,100,105,102,105,101,100,39,44,32,39,108,111,99,97,116,105,111,110,39,44,32,39,109,97,120,45,102,111,114,119,97,114,100,115,39,44,32,39,112,114,111,120,121,45,97,117,116,104,111,114,105,122,97,116,105,111,110,39,44,92,110,32,32,39,114,101,102,101,114,101,114,39,44,32,39,114,101,116,114,121,45,97,102,116,101,114,39,44,32,39,117,115,101,114,45,97,103,101,110,116,39,92,110,93,59,92,110,92,110,47,42,42,92,110,32,42,32,80,97,114,115,101,32,104,101,97,100,101,114,115,32,105,110,116,111,32,97,110,32,111,98,106,101,99,116,92,110,32,42,92,110,32,42,32,96,96,96,92,110,32,42,32,68,97,116,101,58,32,87,101,100,44,32,50,55,32,65,117,103,32,50,48,49,52,32,48,56,58,53,56,58,52,57,32,71,77,84,92,110,32,42,32,67,111,110,116,101,110,116,45,84,121,112,101,58,32,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,92,110,32,42,32,67,111,110,110,101,99,116,105,111,110,58,32,107,101,101,112,45,97,108,105,118,101,92,110,32,42,32,84,114,97,110,115,102,101,114,45,69,110,99,111,100,105,110,103,58,32,99,104,117,110,107,101,100,92,110,32,42,32,96,96,96,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,104,101,97,100,101,114,115,32,72,101,97,100,101,114,115,32,110,101,101,100,105,110,103,32,116,111,32,98,101,32,112,97,114,115,101,100,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,72,101,97,100,101,114,115,32,112,97,114,115,101,100,32,105,110,116,111,32,97,110,32,111,98,106,101,99,116,92,110,32,42,47,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,72,101,97,100,101,114,115,40,104,101,97,100,101,114,115,41,32,123,92,110,32,32,118,97,114,32,112,97,114,115,101,100,32,61,32,123,125,59,92,110,32,32,118,97,114,32,107,101,121,59,92,110,32,32,118,97,114,32,118,97,108,59,92,110,32,32,118,97,114,32,105,59,92,110,92,110,32,32,105,102,32,40,33,104,101,97,100,101,114,115,41,32,123,32,114,101,116,117,114,110,32,112,97,114,115,101,100,59,32,125,92,110,92,110,32,32,117,116,105,108,115,46,102,111,114,69,97,99,104,40,104,101,97,100,101,114,115,46,115,112,108,105,116,40,39,92,92,110,39,41,44,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,114,40,108,105,110,101,41,32,123,92,110,32,32,32,32,105,32,61,32,108,105,110,101,46,105,110,100,101,120,79,102,40,39,58,39,41,59,92,110,32,32,32,32,107,101,121,32,61,32,117,116,105,108,115,46,116,114,105,109,40,108,105,110,101,46,115,117,98,115,116,114,40,48,44,32,105,41,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,32,32,118,97,108,32,61,32,117,116,105,108,115,46,116,114,105,109,40,108,105,110,101,46,115,117,98,115,116,114,40,105,32,43,32,49,41,41,59,92,110,92,110,32,32,32,32,105,102,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,112,97,114,115,101,100,91,107,101,121,93,32,38,38,32,105,103,110,111,114,101,68,117,112,108,105,99,97,116,101,79,102,46,105,110,100,101,120,79,102,40,107,101,121,41,32,62,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,32,61,61,61,32,39,115,101,116,45,99,111,111,107,105,101,39,41,32,123,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,91,107,101,121,93,32,61,32,40,112,97,114,115,101,100,91,107,101,121,93,32,63,32,112,97,114,115,101,100,91,107,101,121,93,32,58,32,91,93,41,46,99,111,110,99,97,116,40,91,118,97,108,93,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,91,107,101,121,93,32,61,32,112,97,114,115,101,100,91,107,101,121,93,32,63,32,112,97,114,115,101,100,91,107,101,121,93,32,43,32,39,44,32,39,32,43,32,118,97,108,32,58,32,118,97,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,112,97,114,115,101,100,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,112,97,114,115,101,72,101,97,100,101,114,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,115,112,114,101,97,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,115,112,114,101,97,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,47,42,42,92,110,32,42,32,83,121,110,116,97,99,116,105,99,32,115,117,103,97,114,32,102,111,114,32,105,110,118,111,107,105,110,103,32,97,32,102,117,110,99,116,105,111,110,32,97,110,100,32,101,120,112,97,110,100,105,110,103,32,97,110,32,97,114,114,97,121,32,102,111,114,32,97,114,103,117,109,101,110,116,115,46,92,110,32,42,92,110,32,42,32,67,111,109,109,111,110,32,117,115,101,32,99,97,115,101,32,119,111,117,108,100,32,98,101,32,116,111,32,117,115,101,32,96,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,97,112,112,108,121,96,46,92,110,32,42,92,110,32,42,32,32,96,96,96,106,115,92,110,32,42,32,32,102,117,110,99,116,105,111,110,32,102,40,120,44,32,121,44,32,122,41,32,123,125,92,110,32,42,32,32,118,97,114,32,97,114,103,115,32,61,32,91,49,44,32,50,44,32,51,93,59,92,110,32,42,32,32,102,46,97,112,112,108,121,40,110,117,108,108,44,32,97,114,103,115,41,59,92,110,32,42,32,32,96,96,96,92,110,32,42,92,110,32,42,32,87,105,116,104,32,96,115,112,114,101,97,100,96,32,116,104,105,115,32,101,120,97,109,112,108,101,32,99,97,110,32,98,101,32,114,101,45,119,114,105,116,116,101,110,46,92,110,32,42,92,110,32,42,32,32,96,96,96,106,115,92,110,32,42,32,32,115,112,114,101,97,100,40,102,117,110,99,116,105,111,110,40,120,44,32,121,44,32,122,41,32,123,125,41,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,42,32,32,96,96,96,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,99,97,108,108,98,97,99,107,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,92,110,32,42,47,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,115,112,114,101,97,100,40,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,119,114,97,112,40,97,114,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,97,108,108,98,97,99,107,46,97,112,112,108,121,40,110,117,108,108,44,32,97,114,114,41,59,92,110,32,32,125,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,115,112,114,101,97,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,118,97,108,105,100,97,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,118,97,108,105,100,97,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,86,69,82,83,73,79,78,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,101,110,118,47,100,97,116,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,101,110,118,47,100,97,116,97,46,106,115,92,34,41,46,118,101,114,115,105,111,110,41,59,92,110,92,110,118,97,114,32,118,97,108,105,100,97,116,111,114,115,32,61,32,123,125,59,92,110,92,110,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,102,117,110,99,45,110,97,109,101,115,92,110,91,39,111,98,106,101,99,116,39,44,32,39,98,111,111,108,101,97,110,39,44,32,39,110,117,109,98,101,114,39,44,32,39,102,117,110,99,116,105,111,110,39,44,32,39,115,116,114,105,110,103,39,44,32,39,115,121,109,98,111,108,39,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,121,112,101,44,32,105,41,32,123,92,110,32,32,118,97,108,105,100,97,116,111,114,115,91,116,121,112,101,93,32,61,32,102,117,110,99,116,105,111,110,32,118,97,108,105,100,97,116,111,114,40,116,104,105,110,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,104,105,110,103,32,61,61,61,32,116,121,112,101,32,124,124,32,39,97,39,32,43,32,40,105,32,60,32,49,32,63,32,39,110,32,39,32,58,32,39,32,39,41,32,43,32,116,121,112,101,59,92,110,32,32,125,59,92,110,125,41,59,92,110,92,110,118,97,114,32,100,101,112,114,101,99,97,116,101,100,87,97,114,110,105,110,103,115,32,61,32,123,125,59,92,110,92,110,47,42,42,92,110,32,42,32,84,114,97,110,115,105,116,105,111,110,97,108,32,111,112,116,105,111,110,32,118,97,108,105,100,97,116,111,114,92,110,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,124,98,111,111,108,101,97,110,63,125,32,118,97,108,105,100,97,116,111,114,32,45,32,115,101,116,32,116,111,32,102,97,108,115,101,32,105,102,32,116,104,101,32,116,114,97,110,115,105,116,105,111,110,97,108,32,111,112,116,105,111,110,32,104,97,115,32,98,101,101,110,32,114,101,109,111,118,101,100,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,63,125,32,118,101,114,115,105,111,110,32,45,32,100,101,112,114,101,99,97,116,101,100,32,118,101,114,115,105,111,110,32,47,32,114,101,109,111,118,101,100,32,115,105,110,99,101,32,118,101,114,115,105,111,110,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,63,125,32,109,101,115,115,97,103,101,32,45,32,115,111,109,101,32,109,101,115,115,97,103,101,32,119,105,116,104,32,97,100,100,105,116,105,111,110,97,108,32,105,110,102,111,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,102,117,110,99,116,105,111,110,125,92,110,32,42,47,92,110,118,97,108,105,100,97,116,111,114,115,46,116,114,97,110,115,105,116,105,111,110,97,108,32,61,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,105,116,105,111,110,97,108,40,118,97,108,105,100,97,116,111,114,44,32,118,101,114,115,105,111,110,44,32,109,101,115,115,97,103,101,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,77,101,115,115,97,103,101,40,111,112,116,44,32,100,101,115,99,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,39,91,65,120,105,111,115,32,118,39,32,43,32,86,69,82,83,73,79,78,32,43,32,39,93,32,84,114,97,110,115,105,116,105,111,110,97,108,32,111,112,116,105,111,110,32,92,92,39,39,32,43,32,111,112,116,32,43,32,39,92,92,39,39,32,43,32,100,101,115,99,32,43,32,40,109,101,115,115,97,103,101,32,63,32,39,46,32,39,32,43,32,109,101,115,115,97,103,101,32,58,32,39,39,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,102,117,110,99,45,110,97,109,101,115,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,111,112,116,44,32,111,112,116,115,41,32,123,92,110,32,32,32,32,105,102,32,40,118,97,108,105,100,97,116,111,114,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,102,111,114,109,97,116,77,101,115,115,97,103,101,40,111,112,116,44,32,39,32,104,97,115,32,98,101,101,110,32,114,101,109,111,118,101,100,39,32,43,32,40,118,101,114,115,105,111,110,32,63,32,39,32,105,110,32,39,32,43,32,118,101,114,115,105,111,110,32,58,32,39,39,41,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,118,101,114,115,105,111,110,32,38,38,32,33,100,101,112,114,101,99,97,116,101,100,87,97,114,110,105,110,103,115,91,111,112,116,93,41,32,123,92,110,32,32,32,32,32,32,100,101,112,114,101,99,97,116,101,100,87,97,114,110,105,110,103,115,91,111,112,116,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,99,111,110,115,111,108,101,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,102,111,114,109,97,116,77,101,115,115,97,103,101,40,92,110,32,32,32,32,32,32,32,32,32,32,111,112,116,44,92,110,32,32,32,32,32,32,32,32,32,32,39,32,104,97,115,32,98,101,101,110,32,100,101,112,114,101,99,97,116,101,100,32,115,105,110,99,101,32,118,39,32,43,32,118,101,114,115,105,111,110,32,43,32,39,32,97,110,100,32,119,105,108,108,32,98,101,32,114,101,109,111,118,101,100,32,105,110,32,116,104,101,32,110,101,97,114,32,102,117,116,117,114,101,39,92,110,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,105,100,97,116,111,114,32,63,32,118,97,108,105,100,97,116,111,114,40,118,97,108,117,101,44,32,111,112,116,44,32,111,112,116,115,41,32,58,32,116,114,117,101,59,92,110,32,32,125,59,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,65,115,115,101,114,116,32,111,98,106,101,99,116,39,115,32,112,114,111,112,101,114,116,105,101,115,32,116,121,112,101,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,111,112,116,105,111,110,115,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,115,99,104,101,109,97,92,110,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,63,125,32,97,108,108,111,119,85,110,107,110,111,119,110,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,97,115,115,101,114,116,79,112,116,105,111,110,115,40,111,112,116,105,111,110,115,44,32,115,99,104,101,109,97,44,32,97,108,108,111,119,85,110,107,110,111,119,110,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,111,112,116,105,111,110,115,32,33,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,111,112,116,105,111,110,115,32,109,117,115,116,32,98,101,32,97,110,32,111,98,106,101,99,116,39,41,59,92,110,32,32,125,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,112,116,105,111,110,115,41,59,92,110,32,32,118,97,114,32,105,32,61,32,107,101,121,115,46,108,101,110,103,116,104,59,92,110,32,32,119,104,105,108,101,32,40,105,45,45,32,62,32,48,41,32,123,92,110,32,32,32,32,118,97,114,32,111,112,116,32,61,32,107,101,121,115,91,105,93,59,92,110,32,32,32,32,118,97,114,32,118,97,108,105,100,97,116,111,114,32,61,32,115,99,104,101,109,97,91,111,112,116,93,59,92,110,32,32,32,32,105,102,32,40,118,97,108,105,100,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,111,112,116,105,111,110,115,91,111,112,116,93,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,32,118,97,108,105,100,97,116,111,114,40,118,97,108,117,101,44,32,111,112,116,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,117,108,116,32,33,61,61,32,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,111,112,116,105,111,110,32,39,32,43,32,111,112,116,32,43,32,39,32,109,117,115,116,32,98,101,32,39,32,43,32,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,97,108,108,111,119,85,110,107,110,111,119,110,32,33,61,61,32,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,114,111,119,32,69,114,114,111,114,40,39,85,110,107,110,111,119,110,32,111,112,116,105,111,110,32,39,32,43,32,111,112,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,123,92,110,32,32,97,115,115,101,114,116,79,112,116,105,111,110,115,58,32,97,115,115,101,114,116,79,112,116,105,111,110,115,44,92,110,32,32,118,97,108,105,100,97,116,111,114,115,58,32,118,97,108,105,100,97,116,111,114,115,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,118,97,108,105,100,97,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,92,110,118,97,114,32,98,105,110,100,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,98,105,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,104,101,108,112,101,114,115,47,98,105,110,100,46,106,115,92,34,41,59,92,110,92,110,47,47,32,117,116,105,108,115,32,105,115,32,97,32,108,105,98,114,97,114,121,32,111,102,32,103,101,110,101,114,105,99,32,104,101,108,112,101,114,32,102,117,110,99,116,105,111,110,115,32,110,111,110,45,115,112,101,99,105,102,105,99,32,116,111,32,97,120,105,111,115,92,110,92,110,118,97,114,32,116,111,83,116,114,105,110,103,32,61,32,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,59,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,97,110,32,65,114,114,97,121,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,118,97,108,117,101,32,105,115,32,97,110,32,65,114,114,97,121,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,65,114,114,97,121,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,117,110,100,101,102,105,110,101,100,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,116,104,101,32,118,97,108,117,101,32,105,115,32,117,110,100,101,102,105,110,101,100,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,85,110,100,101,102,105,110,101,100,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,97,32,66,117,102,102,101,114,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,118,97,108,117,101,32,105,115,32,97,32,66,117,102,102,101,114,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,66,117,102,102,101,114,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,32,33,61,61,32,110,117,108,108,32,38,38,32,33,105,115,85,110,100,101,102,105,110,101,100,40,118,97,108,41,32,38,38,32,118,97,108,46,99,111,110,115,116,114,117,99,116,111,114,32,33,61,61,32,110,117,108,108,32,38,38,32,33,105,115,85,110,100,101,102,105,110,101,100,40,118,97,108,46,99,111,110,115,116,114,117,99,116,111,114,41,92,110,32,32,32,32,38,38,32,116,121,112,101,111,102,32,118,97,108,46,99,111,110,115,116,114,117,99,116,111,114,46,105,115,66,117,102,102,101,114,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,118,97,108,46,99,111,110,115,116,114,117,99,116,111,114,46,105,115,66,117,102,102,101,114,40,118,97,108,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,97,110,32,65,114,114,97,121,66,117,102,102,101,114,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,118,97,108,117,101,32,105,115,32,97,110,32,65,114,114,97,121,66,117,102,102,101,114,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,65,114,114,97,121,66,117,102,102,101,114,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,41,32,61,61,61,32,39,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,39,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,97,32,70,111,114,109,68,97,116,97,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,118,97,108,117,101,32,105,115,32,97,110,32,70,111,114,109,68,97,116,97,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,70,111,114,109,68,97,116,97,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,41,32,61,61,61,32,39,91,111,98,106,101,99,116,32,70,111,114,109,68,97,116,97,93,39,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,97,32,118,105,101,119,32,111,110,32,97,110,32,65,114,114,97,121,66,117,102,102,101,114,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,118,97,108,117,101,32,105,115,32,97,32,118,105,101,119,32,111,110,32,97,110,32,65,114,114,97,121,66,117,102,102,101,114,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,40,118,97,108,41,32,123,92,110,32,32,118,97,114,32,114,101,115,117,108,116,59,92,110,32,32,105,102,32,40,40,116,121,112,101,111,102,32,65,114,114,97,121,66,117,102,102,101,114,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,38,38,32,40,65,114,114,97,121,66,117,102,102,101,114,46,105,115,86,105,101,119,41,41,32,123,92,110,32,32,32,32,114,101,115,117,108,116,32,61,32,65,114,114,97,121,66,117,102,102,101,114,46,105,115,86,105,101,119,40,118,97,108,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,115,117,108,116,32,61,32,40,118,97,108,41,32,38,38,32,40,118,97,108,46,98,117,102,102,101,114,41,32,38,38,32,40,105,115,65,114,114,97,121,66,117,102,102,101,114,40,118,97,108,46,98,117,102,102,101,114,41,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,97,32,83,116,114,105,110,103,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,118,97,108,117,101,32,105,115,32,97,32,83,116,114,105,110,103,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,83,116,114,105,110,103,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,115,116,114,105,110,103,39,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,97,32,78,117,109,98,101,114,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,118,97,108,117,101,32,105,115,32,97,32,78,117,109,98,101,114,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,78,117,109,98,101,114,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,110,117,109,98,101,114,39,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,97,110,32,79,98,106,101,99,116,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,118,97,108,117,101,32,105,115,32,97,110,32,79,98,106,101,99,116,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,79,98,106,101,99,116,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,32,33,61,61,32,110,117,108,108,32,38,38,32,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,111,98,106,101,99,116,39,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,97,32,112,108,97,105,110,32,79,98,106,101,99,116,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,118,97,108,117,101,32,105,115,32,97,32,112,108,97,105,110,32,79,98,106,101,99,116,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,41,32,123,92,110,32,32,105,102,32,40,116,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,41,32,33,61,61,32,39,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,118,97,108,41,59,92,110,32,32,114,101,116,117,114,110,32,112,114,111,116,111,116,121,112,101,32,61,61,61,32,110,117,108,108,32,124,124,32,112,114,111,116,111,116,121,112,101,32,61,61,61,32,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,97,32,68,97,116,101,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,118,97,108,117,101,32,105,115,32,97,32,68,97,116,101,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,68,97,116,101,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,41,32,61,61,61,32,39,91,111,98,106,101,99,116,32,68,97,116,101,93,39,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,97,32,70,105,108,101,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,118,97,108,117,101,32,105,115,32,97,32,70,105,108,101,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,70,105,108,101,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,41,32,61,61,61,32,39,91,111,98,106,101,99,116,32,70,105,108,101,93,39,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,97,32,66,108,111,98,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,118,97,108,117,101,32,105,115,32,97,32,66,108,111,98,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,66,108,111,98,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,41,32,61,61,61,32,39,91,111,98,106,101,99,116,32,66,108,111,98,93,39,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,97,32,70,117,110,99,116,105,111,110,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,118,97,108,117,101,32,105,115,32,97,32,70,117,110,99,116,105,111,110,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,70,117,110,99,116,105,111,110,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,41,32,61,61,61,32,39,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,39,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,97,32,83,116,114,101,97,109,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,118,97,108,117,101,32,105,115,32,97,32,83,116,114,101,97,109,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,83,116,114,101,97,109,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,40,118,97,108,41,32,38,38,32,105,115,70,117,110,99,116,105,111,110,40,118,97,108,46,112,105,112,101,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,118,97,108,117,101,32,105,115,32,97,32,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,32,111,98,106,101,99,116,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,118,97,108,32,84,104,101,32,118,97,108,117,101,32,116,111,32,116,101,115,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,118,97,108,117,101,32,105,115,32,97,32,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,32,111,98,106,101,99,116,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,41,32,61,61,61,32,39,91,111,98,106,101,99,116,32,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,93,39,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,84,114,105,109,32,101,120,99,101,115,115,32,119,104,105,116,101,115,112,97,99,101,32,111,102,102,32,116,104,101,32,98,101,103,105,110,110,105,110,103,32,97,110,100,32,101,110,100,32,111,102,32,97,32,115,116,114,105,110,103,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,115,116,114,32,84,104,101,32,83,116,114,105,110,103,32,116,111,32,116,114,105,109,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,83,116,114,105,110,103,125,32,84,104,101,32,83,116,114,105,110,103,32,102,114,101,101,100,32,111,102,32,101,120,99,101,115,115,32,119,104,105,116,101,115,112,97,99,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,116,114,105,109,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,116,114,46,116,114,105,109,32,63,32,115,116,114,46,116,114,105,109,40,41,32,58,32,115,116,114,46,114,101,112,108,97,99,101,40,47,94,92,92,115,43,124,92,92,115,43,36,47,103,44,32,39,39,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,105,102,32,119,101,39,114,101,32,114,117,110,110,105,110,103,32,105,110,32,97,32,115,116,97,110,100,97,114,100,32,98,114,111,119,115,101,114,32,101,110,118,105,114,111,110,109,101,110,116,92,110,32,42,92,110,32,42,32,84,104,105,115,32,97,108,108,111,119,115,32,97,120,105,111,115,32,116,111,32,114,117,110,32,105,110,32,97,32,119,101,98,32,119,111,114,107,101,114,44,32,97,110,100,32,114,101,97,99,116,45,110,97,116,105,118,101,46,92,110,32,42,32,66,111,116,104,32,101,110,118,105,114,111,110,109,101,110,116,115,32,115,117,112,112,111,114,116,32,88,77,76,72,116,116,112,82,101,113,117,101,115,116,44,32,98,117,116,32,110,111,116,32,102,117,108,108,121,32,115,116,97,110,100,97,114,100,32,103,108,111,98,97,108,115,46,92,110,32,42,92,110,32,42,32,119,101,98,32,119,111,114,107,101,114,115,58,92,110,32,42,32,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,45,62,32,117,110,100,101,102,105,110,101,100,92,110,32,42,32,32,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,32,45,62,32,117,110,100,101,102,105,110,101,100,92,110,32,42,92,110,32,42,32,114,101,97,99,116,45,110,97,116,105,118,101,58,92,110,32,42,32,32,110,97,118,105,103,97,116,111,114,46,112,114,111,100,117,99,116,32,45,62,32,39,82,101,97,99,116,78,97,116,105,118,101,39,92,110,32,42,32,110,97,116,105,118,101,115,99,114,105,112,116,92,110,32,42,32,32,110,97,118,105,103,97,116,111,114,46,112,114,111,100,117,99,116,32,45,62,32,39,78,97,116,105,118,101,83,99,114,105,112,116,39,32,111,114,32,39,78,83,39,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,83,116,97,110,100,97,114,100,66,114,111,119,115,101,114,69,110,118,40,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,110,97,118,105,103,97,116,111,114,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,40,110,97,118,105,103,97,116,111,114,46,112,114,111,100,117,99,116,32,61,61,61,32,39,82,101,97,99,116,78,97,116,105,118,101,39,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,97,118,105,103,97,116,111,114,46,112,114,111,100,117,99,116,32,61,61,61,32,39,78,97,116,105,118,101,83,99,114,105,112,116,39,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,97,118,105,103,97,116,111,114,46,112,114,111,100,117,99,116,32,61,61,61,32,39,78,83,39,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,40,92,110,32,32,32,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,92,110,32,32,32,32,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,92,110,32,32,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,73,116,101,114,97,116,101,32,111,118,101,114,32,97,110,32,65,114,114,97,121,32,111,114,32,97,110,32,79,98,106,101,99,116,32,105,110,118,111,107,105,110,103,32,97,32,102,117,110,99,116,105,111,110,32,102,111,114,32,101,97,99,104,32,105,116,101,109,46,92,110,32,42,92,110,32,42,32,73,102,32,96,111,98,106,96,32,105,115,32,97,110,32,65,114,114,97,121,32,99,97,108,108,98,97,99,107,32,119,105,108,108,32,98,101,32,99,97,108,108,101,100,32,112,97,115,115,105,110,103,92,110,32,42,32,116,104,101,32,118,97,108,117,101,44,32,105,110,100,101,120,44,32,97,110,100,32,99,111,109,112,108,101,116,101,32,97,114,114,97,121,32,102,111,114,32,101,97,99,104,32,105,116,101,109,46,92,110,32,42,92,110,32,42,32,73,102,32,39,111,98,106,39,32,105,115,32,97,110,32,79,98,106,101,99,116,32,99,97,108,108,98,97,99,107,32,119,105,108,108,32,98,101,32,99,97,108,108,101,100,32,112,97,115,115,105,110,103,92,110,32,42,32,116,104,101,32,118,97,108,117,101,44,32,107,101,121,44,32,97,110,100,32,99,111,109,112,108,101,116,101,32,111,98,106,101,99,116,32,102,111,114,32,101,97,99,104,32,112,114,111,112,101,114,116,121,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,124,65,114,114,97,121,125,32,111,98,106,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,116,101,114,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,110,32,84,104,101,32,99,97,108,108,98,97,99,107,32,116,111,32,105,110,118,111,107,101,32,102,111,114,32,101,97,99,104,32,105,116,101,109,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,40,111,98,106,44,32,102,110,41,32,123,92,110,32,32,47,47,32,68,111,110,39,116,32,98,111,116,104,101,114,32,105,102,32,110,111,32,118,97,108,117,101,32,112,114,111,118,105,100,101,100,92,110,32,32,105,102,32,40,111,98,106,32,61,61,61,32,110,117,108,108,32,124,124,32,116,121,112,101,111,102,32,111,98,106,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,70,111,114,99,101,32,97,110,32,97,114,114,97,121,32,105,102,32,110,111,116,32,97,108,114,101,97,100,121,32,115,111,109,101,116,104,105,110,103,32,105,116,101,114,97,98,108,101,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,111,98,106,32,33,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,47,42,101,115,108,105,110,116,32,110,111,45,112,97,114,97,109,45,114,101,97,115,115,105,103,110,58,48,42,47,92,110,32,32,32,32,111,98,106,32,61,32,91,111,98,106,93,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,105,115,65,114,114,97,121,40,111,98,106,41,41,32,123,92,110,32,32,32,32,47,47,32,73,116,101,114,97,116,101,32,111,118,101,114,32,97,114,114,97,121,32,118,97,108,117,101,115,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,32,61,32,111,98,106,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,102,110,46,99,97,108,108,40,110,117,108,108,44,32,111,98,106,91,105,93,44,32,105,44,32,111,98,106,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,47,32,73,116,101,114,97,116,101,32,111,118,101,114,32,111,98,106,101,99,116,32,107,101,121,115,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,111,98,106,41,32,123,92,110,32,32,32,32,32,32,105,102,32,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,111,98,106,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,102,110,46,99,97,108,108,40,110,117,108,108,44,32,111,98,106,91,107,101,121,93,44,32,107,101,121,44,32,111,98,106,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,65,99,99,101,112,116,115,32,118,97,114,97,114,103,115,32,101,120,112,101,99,116,105,110,103,32,101,97,99,104,32,97,114,103,117,109,101,110,116,32,116,111,32,98,101,32,97,110,32,111,98,106,101,99,116,44,32,116,104,101,110,92,110,32,42,32,105,109,109,117,116,97,98,108,121,32,109,101,114,103,101,115,32,116,104,101,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,101,97,99,104,32,111,98,106,101,99,116,32,97,110,100,32,114,101,116,117,114,110,115,32,114,101,115,117,108,116,46,92,110,32,42,92,110,32,42,32,87,104,101,110,32,109,117,108,116,105,112,108,101,32,111,98,106,101,99,116,115,32,99,111,110,116,97,105,110,32,116,104,101,32,115,97,109,101,32,107,101,121,32,116,104,101,32,108,97,116,101,114,32,111,98,106,101,99,116,32,105,110,92,110,32,42,32,116,104,101,32,97,114,103,117,109,101,110,116,115,32,108,105,115,116,32,119,105,108,108,32,116,97,107,101,32,112,114,101,99,101,100,101,110,99,101,46,92,110,32,42,92,110,32,42,32,69,120,97,109,112,108,101,58,92,110,32,42,92,110,32,42,32,96,96,96,106,115,92,110,32,42,32,118,97,114,32,114,101,115,117,108,116,32,61,32,109,101,114,103,101,40,123,102,111,111,58,32,49,50,51,125,44,32,123,102,111,111,58,32,52,53,54,125,41,59,92,110,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,117,108,116,46,102,111,111,41,59,32,47,47,32,111,117,116,112,117,116,115,32,52,53,54,92,110,32,42,32,96,96,96,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,49,32,79,98,106,101,99,116,32,116,111,32,109,101,114,103,101,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,115,117,108,116,32,111,102,32,97,108,108,32,109,101,114,103,101,32,112,114,111,112,101,114,116,105,101,115,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,109,101,114,103,101,40,47,42,32,111,98,106,49,44,32,111,98,106,50,44,32,111,98,106,51,44,32,46,46,46,32,42,47,41,32,123,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,123,125,59,92,110,32,32,102,117,110,99,116,105,111,110,32,97,115,115,105,103,110,86,97,108,117,101,40,118,97,108,44,32,107,101,121,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,80,108,97,105,110,79,98,106,101,99,116,40,114,101,115,117,108,116,91,107,101,121,93,41,32,38,38,32,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,41,41,32,123,92,110,32,32,32,32,32,32,114,101,115,117,108,116,91,107,101,121,93,32,61,32,109,101,114,103,101,40,114,101,115,117,108,116,91,107,101,121,93,44,32,118,97,108,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,41,41,32,123,92,110,32,32,32,32,32,32,114,101,115,117,108,116,91,107,101,121,93,32,61,32,109,101,114,103,101,40,123,125,44,32,118,97,108,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,65,114,114,97,121,40,118,97,108,41,41,32,123,92,110,32,32,32,32,32,32,114,101,115,117,108,116,91,107,101,121,93,32,61,32,118,97,108,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,115,117,108,116,91,107,101,121,93,32,61,32,118,97,108,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,102,111,114,69,97,99,104,40,97,114,103,117,109,101,110,116,115,91,105,93,44,32,97,115,115,105,103,110,86,97,108,117,101,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,69,120,116,101,110,100,115,32,111,98,106,101,99,116,32,97,32,98,121,32,109,117,116,97,98,108,121,32,97,100,100,105,110,103,32,116,111,32,105,116,32,116,104,101,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,111,98,106,101,99,116,32,98,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,97,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,98,101,32,101,120,116,101,110,100,101,100,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,98,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,99,111,112,121,32,112,114,111,112,101,114,116,105,101,115,32,102,114,111,109,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,116,104,105,115,65,114,103,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,98,105,110,100,32,102,117,110,99,116,105,111,110,32,116,111,92,110,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,32,84,104,101,32,114,101,115,117,108,116,105,110,103,32,118,97,108,117,101,32,111,102,32,111,98,106,101,99,116,32,97,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,101,120,116,101,110,100,40,97,44,32,98,44,32,116,104,105,115,65,114,103,41,32,123,92,110,32,32,102,111,114,69,97,99,104,40,98,44,32,102,117,110,99,116,105,111,110,32,97,115,115,105,103,110,86,97,108,117,101,40,118,97,108,44,32,107,101,121,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,65,114,103,32,38,38,32,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,97,91,107,101,121,93,32,61,32,98,105,110,100,40,118,97,108,44,32,116,104,105,115,65,114,103,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,97,91,107,101,121,93,32,61,32,118,97,108,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,97,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,101,109,111,118,101,32,98,121,116,101,32,111,114,100,101,114,32,109,97,114,107,101,114,46,32,84,104,105,115,32,99,97,116,99,104,101,115,32,69,70,32,66,66,32,66,70,32,40,116,104,101,32,85,84,70,45,56,32,66,79,77,41,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,99,111,110,116,101,110,116,32,119,105,116,104,32,66,79,77,92,110,32,42,32,64,114,101,116,117,114,110,32,123,115,116,114,105,110,103,125,32,99,111,110,116,101,110,116,32,118,97,108,117,101,32,119,105,116,104,111,117,116,32,66,79,77,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,115,116,114,105,112,66,79,77,40,99,111,110,116,101,110,116,41,32,123,92,110,32,32,105,102,32,40,99,111,110,116,101,110,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,32,61,61,61,32,48,120,70,69,70,70,41,32,123,92,110,32,32,32,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,115,108,105,99,101,40,49,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,99,111,110,116,101,110,116,59,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,123,92,110,32,32,105,115,65,114,114,97,121,58,32,105,115,65,114,114,97,121,44,92,110,32,32,105,115,65,114,114,97,121,66,117,102,102,101,114,58,32,105,115,65,114,114,97,121,66,117,102,102,101,114,44,92,110,32,32,105,115,66,117,102,102,101,114,58,32,105,115,66,117,102,102,101,114,44,92,110,32,32,105,115,70,111,114,109,68,97,116,97,58,32,105,115,70,111,114,109,68,97,116,97,44,92,110,32,32,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,58,32,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,44,92,110,32,32,105,115,83,116,114,105,110,103,58,32,105,115,83,116,114,105,110,103,44,92,110,32,32,105,115,78,117,109,98,101,114,58,32,105,115,78,117,109,98,101,114,44,92,110,32,32,105,115,79,98,106,101,99,116,58,32,105,115,79,98,106,101,99,116,44,92,110,32,32,105,115,80,108,97,105,110,79,98,106,101,99,116,58,32,105,115,80,108,97,105,110,79,98,106,101,99,116,44,92,110,32,32,105,115,85,110,100,101,102,105,110,101,100,58,32,105,115,85,110,100,101,102,105,110,101,100,44,92,110,32,32,105,115,68,97,116,101,58,32,105,115,68,97,116,101,44,92,110,32,32,105,115,70,105,108,101,58,32,105,115,70,105,108,101,44,92,110,32,32,105,115,66,108,111,98,58,32,105,115,66,108,111,98,44,92,110,32,32,105,115,70,117,110,99,116,105,111,110,58,32,105,115,70,117,110,99,116,105,111,110,44,92,110,32,32,105,115,83,116,114,101,97,109,58,32,105,115,83,116,114,101,97,109,44,92,110,32,32,105,115,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,58,32,105,115,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,44,92,110,32,32,105,115,83,116,97,110,100,97,114,100,66,114,111,119,115,101,114,69,110,118,58,32,105,115,83,116,97,110,100,97,114,100,66,114,111,119,115,101,114,69,110,118,44,92,110,32,32,102,111,114,69,97,99,104,58,32,102,111,114,69,97,99,104,44,92,110,32,32,109,101,114,103,101,58,32,109,101,114,103,101,44,92,110,32,32,101,120,116,101,110,100,58,32,101,120,116,101,110,100,44,92,110,32,32,116,114,105,109,58,32,116,114,105,109,44,92,110,32,32,115,116,114,105,112,66,79,77,58,32,115,116,114,105,112,66,79,77,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,108,105,98,47,117,116,105,108,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,98,118,45,99,111,110,102,105,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,98,118,45,99,111,110,102,105,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,67,111,110,102,105,103,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,86,67,111,110,102,105,103,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,47,47,92,110,47,47,32,85,116,105,108,105,116,121,32,80,108,117,103,105,110,32,102,111,114,32,115,101,116,116,105,110,103,32,116,104,101,32,99,111,110,102,105,103,117,114,97,116,105,111,110,92,110,47,47,92,110,92,110,118,97,114,32,66,86,67,111,110,102,105,103,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,98,118,45,99,111,110,102,105,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,108,101,114,116,47,97,108,101,114,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,108,101,114,116,47,97,108,101,114,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,65,108,101,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,65,108,101,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,118,117,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,105,116,105,111,110,95,98,118,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,115,104,111,119,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,92,110,32,32,100,101,102,97,117,108,116,86,97,108,117,101,58,32,102,97,108,115,101,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,67,111,110,118,101,114,116,32,96,115,104,111,119,96,32,118,97,108,117,101,32,116,111,32,97,32,110,117,109,98,101,114,92,110,92,110,92,110,118,97,114,32,112,97,114,115,101,67,111,117,110,116,68,111,119,110,32,61,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,67,111,117,110,116,68,111,119,110,40,115,104,111,119,41,32,123,92,110,32,32,105,102,32,40,115,104,111,119,32,61,61,61,32,39,39,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,66,111,111,108,101,97,110,41,40,115,104,111,119,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,48,59,92,110,32,32,125,92,110,92,110,32,32,115,104,111,119,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,116,111,73,110,116,101,103,101,114,41,40,115,104,111,119,44,32,48,41,59,92,110,32,32,114,101,116,117,114,110,32,115,104,111,119,32,62,32,48,32,63,32,115,104,111,119,32,58,32,48,59,92,110,125,59,32,47,47,32,67,111,110,118,101,114,116,32,96,115,104,111,119,96,32,118,97,108,117,101,32,116,111,32,97,32,98,111,111,108,101,97,110,92,110,92,110,92,110,118,97,114,32,112,97,114,115,101,83,104,111,119,32,61,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,83,104,111,119,40,115,104,111,119,41,32,123,92,110,32,32,105,102,32,40,115,104,111,119,32,61,61,61,32,39,39,32,124,124,32,115,104,111,119,32,61,61,61,32,116,114,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,116,111,73,110,116,101,103,101,114,41,40,115,104,111,119,44,32,48,41,32,60,32,49,41,32,123,92,110,32,32,32,32,47,47,32,66,111,111,108,101,97,110,32,119,105,108,108,32,97,108,119,97,121,115,32,114,101,116,117,114,110,32,102,97,108,115,101,32,102,111,114,32,116,104,101,32,97,98,111,118,101,32,99,111,109,112,97,114,105,115,111,110,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,33,33,115,104,111,119,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,100,105,115,109,105,115,115,76,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,67,108,111,115,101,39,41,44,92,110,32,32,100,105,115,109,105,115,115,105,98,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,102,97,100,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,105,110,102,111,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,65,76,69,82,84,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,65,108,101,114,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,65,76,69,82,84,44,92,110,32,32,109,105,120,105,110,115,58,32,91,109,111,100,101,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,99,111,117,110,116,68,111,119,110,58,32,48,44,92,110,32,32,32,32,32,32,47,47,32,73,102,32,105,110,105,116,105,97,108,108,121,32,115,104,111,119,110,44,32,119,101,32,110,101,101,100,32,116,111,32,115,101,116,32,116,104,101,115,101,32,102,111,114,32,83,83,82,92,110,32,32,32,32,32,32,108,111,99,97,108,83,104,111,119,58,32,112,97,114,115,101,83,104,111,119,40,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,41,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,111,117,110,116,68,111,119,110,32,61,32,112,97,114,115,101,67,111,117,110,116,68,111,119,110,40,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,112,97,114,115,101,83,104,111,119,40,110,101,119,86,97,108,117,101,41,59,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,99,111,117,110,116,68,111,119,110,92,34,44,32,102,117,110,99,116,105,111,110,32,99,111,117,110,116,68,111,119,110,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,67,111,117,110,116,68,111,119,110,73,110,116,101,114,118,97,108,40,41,59,92,110,32,32,32,32,118,97,114,32,115,104,111,119,32,61,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,59,32,47,47,32,73,103,110,111,114,101,32,105,102,32,96,115,104,111,119,96,32,116,114,97,110,115,105,116,105,111,110,115,32,116,111,32,97,32,98,111,111,108,101,97,110,32,118,97,108,117,101,92,110,92,110,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,78,117,109,101,114,105,99,41,40,115,104,111,119,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,69,86,69,78,84,95,78,65,77,69,95,68,73,83,77,73,83,83,95,67,79,85,78,84,95,68,79,87,78,44,32,110,101,119,86,97,108,117,101,41,59,32,47,47,32,85,112,100,97,116,101,32,116,104,101,32,118,45,109,111,100,101,108,32,105,102,32,110,101,101,100,101,100,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,104,111,119,32,33,61,61,32,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,99,111,117,110,116,68,111,119,110,84,105,109,101,111,117,116,32,61,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,99,111,117,110,116,68,111,119,110,45,45,59,92,110,32,32,32,32,32,32,32,32,125,44,32,49,48,48,48,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,108,105,103,104,116,108,121,32,100,101,108,97,121,32,116,104,101,32,104,105,100,101,32,116,111,32,97,108,108,111,119,32,97,110,121,32,85,73,32,117,112,100,97,116,101,115,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,108,111,99,97,108,83,104,111,119,92,34,44,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,83,104,111,119,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,115,104,111,119,32,61,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,59,32,47,47,32,79,110,108,121,32,101,109,105,116,32,100,105,115,109,105,115,115,101,100,32,101,118,101,110,116,115,32,102,111,114,32,100,105,115,109,105,115,115,105,98,108,101,32,111,114,32,97,117,116,111,45,100,105,115,109,105,115,115,105,110,103,32,97,108,101,114,116,115,92,110,92,110,32,32,32,32,105,102,32,40,33,110,101,119,86,97,108,117,101,32,38,38,32,40,116,104,105,115,46,100,105,115,109,105,115,115,105,98,108,101,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,78,117,109,101,114,105,99,41,40,115,104,111,119,41,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,69,86,69,78,84,95,78,65,77,69,95,68,73,83,77,73,83,83,69,68,41,59,92,110,32,32,32,32,125,32,47,47,32,79,110,108,121,32,101,109,105,116,32,98,111,111,108,101,97,110,115,32,105,102,32,119,101,32,119,101,114,101,110,39,116,32,112,97,115,115,101,100,32,97,32,110,117,109,98,101,114,32,118,105,97,32,118,45,109,111,100,101,108,92,110,92,110,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,78,117,109,101,114,105,99,41,40,115,104,111,119,41,32,38,38,32,115,104,111,119,32,33,61,61,32,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,67,114,101,97,116,101,32,112,114,105,118,97,116,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,115,92,110,32,32,32,32,116,104,105,115,46,36,95,102,105,108,116,101,114,84,105,109,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,118,97,114,32,115,104,111,119,32,61,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,59,92,110,32,32,32,32,116,104,105,115,46,99,111,117,110,116,68,111,119,110,32,61,32,112,97,114,115,101,67,111,117,110,116,68,111,119,110,40,115,104,111,119,41,59,92,110,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,112,97,114,115,101,83,104,111,119,40,115,104,111,119,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,67,111,117,110,116,68,111,119,110,73,110,116,101,114,118,97,108,40,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,100,105,115,109,105,115,115,58,32,102,117,110,99,116,105,111,110,32,100,105,115,109,105,115,115,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,67,111,117,110,116,68,111,119,110,73,110,116,101,114,118,97,108,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,99,111,117,110,116,68,111,119,110,32,61,32,48,59,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,108,101,97,114,67,111,117,110,116,68,111,119,110,73,110,116,101,114,118,97,108,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,67,111,117,110,116,68,111,119,110,73,110,116,101,114,118,97,108,40,41,32,123,92,110,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,36,95,99,111,117,110,116,68,111,119,110,84,105,109,101,111,117,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,99,111,117,110,116,68,111,119,110,84,105,109,101,111,117,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,36,97,108,101,114,116,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,105,115,109,105,115,115,105,98,108,101,32,61,32,116,104,105,115,46,100,105,115,109,105,115,115,105,98,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,118,97,114,105,97,110,116,59,92,110,32,32,32,32,32,32,118,97,114,32,36,100,105,115,109,105,115,115,66,117,116,116,111,110,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,100,105,115,109,105,115,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,100,105,115,109,105,115,115,32,98,117,116,116,111,110,92,110,32,32,32,32,32,32,32,32,36,100,105,115,109,105,115,115,66,117,116,116,111,110,32,61,32,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,66,66,117,116,116,111,110,67,108,111,115,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,116,104,105,115,46,100,105,115,109,105,115,115,76,97,98,101,108,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,100,105,115,109,105,115,115,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,83,76,79,84,95,78,65,77,69,95,68,73,83,77,73,83,83,41,93,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,36,97,108,101,114,116,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,97,108,101,114,116,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,39,58,32,100,105,115,109,105,115,115,105,98,108,101,92,110,32,32,32,32,32,32,32,32,125,44,32,92,34,97,108,101,114,116,45,92,34,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,44,32,118,97,114,105,97,110,116,41,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,97,108,101,114,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,39,112,111,108,105,116,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,97,116,111,109,105,99,39,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,116,104,105,115,91,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,67,79,77,80,79,78,69,78,84,95,85,73,68,95,75,69,89,93,92,110,32,32,32,32,32,32,125,44,32,91,36,100,105,115,109,105,115,115,66,117,116,116,111,110,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,95,116,114,97,110,115,105,116,105,111,110,95,98,118,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,66,86,84,114,97,110,115,105,116,105,111,110,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,110,111,70,97,100,101,58,32,33,116,104,105,115,46,102,97,100,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,97,108,101,114,116,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,108,101,114,116,47,97,108,101,114,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,108,101,114,116,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,108,101,114,116,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,65,108,101,114,116,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,65,108,101,114,116,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,65,108,101,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,108,101,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,65,108,101,114,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,108,101,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,108,101,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,108,101,114,116,47,97,108,101,114,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,65,108,101,114,116,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,65,108,101,114,116,58,32,95,97,108,101,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,65,108,101,114,116,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,108,101,114,116,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,115,112,101,99,116,47,97,115,112,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,115,112,101,99,116,47,97,115,112,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,65,115,112,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,65,115,112,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,115,108,105,99,101,100,84,111,65,114,114,97,121,40,97,114,114,44,32,105,41,32,123,32,114,101,116,117,114,110,32,95,97,114,114,97,121,87,105,116,104,72,111,108,101,115,40,97,114,114,41,32,124,124,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,76,105,109,105,116,40,97,114,114,44,32,105,41,32,124,124,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,44,32,105,41,32,124,124,32,95,110,111,110,73,116,101,114,97,98,108,101,82,101,115,116,40,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,110,111,110,73,116,101,114,97,98,108,101,82,101,115,116,40,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,100,101,115,116,114,117,99,116,117,114,101,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,92,34,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,32,123,32,105,102,32,40,33,111,41,32,114,101,116,117,114,110,59,32,105,102,32,40,116,121,112,101,111,102,32,111,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,118,97,114,32,110,32,61,32,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,111,41,46,115,108,105,99,101,40,56,44,32,45,49,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,79,98,106,101,99,116,92,34,32,38,38,32,111,46,99,111,110,115,116,114,117,99,116,111,114,41,32,110,32,61,32,111,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,59,32,105,102,32,40,110,32,61,61,61,32,92,34,77,97,112,92,34,32,124,124,32,110,32,61,61,61,32,92,34,83,101,116,92,34,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,111,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,65,114,103,117,109,101,110,116,115,92,34,32,124,124,32,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,44,32,108,101,110,41,32,123,32,105,102,32,40,108,101,110,32,61,61,32,110,117,108,108,32,124,124,32,108,101,110,32,62,32,97,114,114,46,108,101,110,103,116,104,41,32,108,101,110,32,61,32,97,114,114,46,108,101,110,103,116,104,59,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,97,114,114,50,32,61,32,110,101,119,32,65,114,114,97,121,40,108,101,110,41,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,32,97,114,114,50,91,105,93,32,61,32,97,114,114,91,105,93,59,32,125,32,114,101,116,117,114,110,32,97,114,114,50,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,76,105,109,105,116,40,97,114,114,44,32,105,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,124,124,32,33,40,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,97,114,114,41,41,41,32,114,101,116,117,114,110,59,32,118,97,114,32,95,97,114,114,32,61,32,91,93,59,32,118,97,114,32,95,110,32,61,32,116,114,117,101,59,32,118,97,114,32,95,100,32,61,32,102,97,108,115,101,59,32,118,97,114,32,95,101,32,61,32,117,110,100,101,102,105,110,101,100,59,32,116,114,121,32,123,32,102,111,114,32,40,118,97,114,32,95,105,32,61,32,97,114,114,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,44,32,95,115,59,32,33,40,95,110,32,61,32,40,95,115,32,61,32,95,105,46,110,101,120,116,40,41,41,46,100,111,110,101,41,59,32,95,110,32,61,32,116,114,117,101,41,32,123,32,95,97,114,114,46,112,117,115,104,40,95,115,46,118,97,108,117,101,41,59,32,105,102,32,40,105,32,38,38,32,95,97,114,114,46,108,101,110,103,116,104,32,61,61,61,32,105,41,32,98,114,101,97,107,59,32,125,32,125,32,99,97,116,99,104,32,40,101,114,114,41,32,123,32,95,100,32,61,32,116,114,117,101,59,32,95,101,32,61,32,101,114,114,59,32,125,32,102,105,110,97,108,108,121,32,123,32,116,114,121,32,123,32,105,102,32,40,33,95,110,32,38,38,32,95,105,91,92,34,114,101,116,117,114,110,92,34,93,32,33,61,32,110,117,108,108,41,32,95,105,91,92,34,114,101,116,117,114,110,92,34,93,40,41,59,32,125,32,102,105,110,97,108,108,121,32,123,32,105,102,32,40,95,100,41,32,116,104,114,111,119,32,95,101,59,32,125,32,125,32,114,101,116,117,114,110,32,95,97,114,114,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,87,105,116,104,72,111,108,101,115,40,97,114,114,41,32,123,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,41,41,32,114,101,116,117,114,110,32,97,114,114,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,67,76,65,83,83,95,78,65,77,69,32,61,32,39,98,45,97,115,112,101,99,116,39,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,47,47,32,65,99,99,101,112,116,115,32,97,32,110,117,109,98,101,114,32,40,105,46,101,46,32,96,49,54,32,47,32,57,96,44,32,96,49,96,44,32,96,52,32,47,32,51,96,41,92,110,32,32,47,47,32,79,114,32,97,32,115,116,114,105,110,103,32,40,105,46,101,46,32,39,49,54,47,57,39,44,32,39,49,54,58,57,39,44,32,39,52,58,51,39,32,39,49,58,49,39,41,92,110,32,32,97,115,112,101,99,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,39,49,58,49,39,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,65,83,80,69,67,84,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,65,115,112,101,99,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,65,83,80,69,67,84,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,112,97,100,100,105,110,103,58,32,102,117,110,99,116,105,111,110,32,112,97,100,100,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,115,112,101,99,116,32,61,32,116,104,105,115,46,97,115,112,101,99,116,59,92,110,32,32,32,32,32,32,118,97,114,32,114,97,116,105,111,32,61,32,49,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,82,88,95,65,83,80,69,67,84,46,116,101,115,116,40,97,115,112,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,105,100,116,104,32,97,110,100,47,111,114,32,72,101,105,103,104,116,32,99,97,110,32,98,101,32,97,32,100,101,99,105,109,97,108,32,118,97,108,117,101,32,98,101,108,111,119,32,96,49,96,44,32,115,111,92,110,32,32,32,32,32,32,32,32,47,47,32,119,101,32,111,110,108,121,32,102,97,108,108,98,97,99,107,32,116,111,32,96,49,96,32,105,102,32,116,104,101,32,118,97,108,117,101,32,105,115,32,96,48,96,32,111,114,32,96,78,97,78,96,92,110,32,32,32,32,32,32,32,32,118,97,114,32,95,97,115,112,101,99,116,36,115,112,108,105,116,36,109,97,112,32,61,32,97,115,112,101,99,116,46,115,112,108,105,116,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,82,88,95,65,83,80,69,67,84,95,83,69,80,65,82,65,84,79,82,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,118,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,111,70,108,111,97,116,41,40,118,41,32,124,124,32,49,59,92,110,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,97,115,112,101,99,116,36,115,112,108,105,116,36,109,97,112,50,32,61,32,95,115,108,105,99,101,100,84,111,65,114,114,97,121,40,95,97,115,112,101,99,116,36,115,112,108,105,116,36,109,97,112,44,32,50,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,32,61,32,95,97,115,112,101,99,116,36,115,112,108,105,116,36,109,97,112,50,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,101,105,103,104,116,32,61,32,95,97,115,112,101,99,116,36,115,112,108,105,116,36,109,97,112,50,91,49,93,59,92,110,92,110,32,32,32,32,32,32,32,32,114,97,116,105,111,32,61,32,119,105,100,116,104,32,47,32,104,101,105,103,104,116,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,114,97,116,105,111,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,111,70,108,111,97,116,41,40,97,115,112,101,99,116,41,32,124,124,32,49,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,92,34,46,99,111,110,99,97,116,40,49,48,48,32,47,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,109,97,116,104,65,98,115,41,40,114,97,116,105,111,41,44,32,92,34,37,92,34,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,36,115,105,122,101,114,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,92,34,46,99,111,110,99,97,116,40,67,76,65,83,83,95,78,65,77,69,44,32,92,34,45,115,105,122,101,114,32,102,108,101,120,45,103,114,111,119,45,49,92,34,41,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,123,92,110,32,32,32,32,32,32,32,32,112,97,100,100,105,110,103,66,111,116,116,111,109,58,32,116,104,105,115,46,112,97,100,100,105,110,103,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,48,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,92,34,46,99,111,110,99,97,116,40,67,76,65,83,83,95,78,65,77,69,44,32,92,34,45,99,111,110,116,101,110,116,32,102,108,101,120,45,103,114,111,119,45,49,32,119,45,49,48,48,32,109,119,45,49,48,48,92,34,41,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,123,92,110,32,32,32,32,32,32,32,32,109,97,114,103,105,110,76,101,102,116,58,32,39,45,49,48,48,37,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,104,105,115,46,116,97,103,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,92,34,46,99,111,110,99,97,116,40,67,76,65,83,83,95,78,65,77,69,44,32,92,34,32,100,45,102,108,101,120,92,34,41,92,110,32,32,32,32,125,44,32,91,36,115,105,122,101,114,44,32,36,99,111,110,116,101,110,116,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,115,112,101,99,116,47,97,115,112,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,115,112,101,99,116,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,115,112,101,99,116,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,65,115,112,101,99,116,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,65,115,112,101,99,116,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,65,115,112,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,65,115,112,101,99,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,115,112,101,99,116,47,97,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,65,115,112,101,99,116,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,65,115,112,101,99,116,58,32,95,97,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,65,115,112,101,99,116,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,115,112,101,99,116,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,97,118,97,116,97,114,45,103,114,111,117,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,97,118,97,116,97,114,45,103,114,111,117,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,65,118,97,116,97,114,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,65,118,97,116,97,114,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,118,97,116,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,118,97,116,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,97,118,97,116,97,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,111,118,101,114,108,97,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,48,46,51,41,44,92,110,32,32,47,47,32,67,104,105,108,100,32,97,118,97,116,97,114,115,32,119,105,108,108,32,112,114,101,102,101,114,32,116,104,105,115,32,112,114,111,112,32,40,105,102,32,115,101,116,41,32,111,118,101,114,32,116,104,101,105,114,32,111,119,110,92,110,32,32,114,111,117,110,100,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,67,104,105,108,100,32,97,118,97,116,97,114,115,32,119,105,108,108,32,97,108,119,97,121,115,32,117,115,101,32,116,104,105,115,32,111,118,101,114,32,116,104,101,105,114,32,111,119,110,32,115,105,122,101,92,110,32,32,115,105,122,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,67,104,105,108,100,32,97,118,97,116,97,114,115,32,119,105,108,108,32,112,114,101,102,101,114,32,116,104,105,115,32,112,114,111,112,32,40,105,102,32,115,101,116,41,32,111,118,101,114,32,116,104,101,105,114,32,111,119,110,92,110,32,32,115,113,117,97,114,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,44,92,110,32,32,47,47,32,67,104,105,108,100,32,97,118,97,116,97,114,115,32,119,105,108,108,32,112,114,101,102,101,114,32,116,104,105,115,32,118,97,114,105,97,110,116,32,111,118,101,114,32,116,104,101,105,114,32,111,119,110,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,65,86,65,84,65,82,95,71,82,79,85,80,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,65,118,97,116,97,114,71,114,111,117,112,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,65,86,65,84,65,82,95,71,82,79,85,80,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,118,105,100,101,58,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,98,118,65,118,97,116,97,114,71,114,111,117,112,58,32,116,104,105,115,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,105,122,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,105,122,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,118,97,116,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,99,111,109,112,117,116,101,83,105,122,101,41,40,116,104,105,115,46,115,105,122,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,118,101,114,108,97,112,83,99,97,108,101,58,32,102,117,110,99,116,105,111,110,32,111,118,101,114,108,97,112,83,99,97,108,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,116,104,77,105,110,41,40,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,116,111,70,108,111,97,116,41,40,116,104,105,115,46,111,118,101,114,108,97,112,44,32,48,41,44,32,48,41,44,32,49,41,32,47,32,50,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,97,100,100,105,110,103,83,116,121,108,101,58,32,102,117,110,99,116,105,111,110,32,112,97,100,100,105,110,103,83,116,121,108,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,59,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,118,97,108,117,101,32,63,32,92,34,99,97,108,99,40,92,34,46,99,111,110,99,97,116,40,118,97,108,117,101,44,32,92,34,32,42,32,92,34,41,46,99,111,110,99,97,116,40,116,104,105,115,46,111,118,101,114,108,97,112,83,99,97,108,101,44,32,92,34,41,92,34,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,63,32,123,92,110,32,32,32,32,32,32,32,32,112,97,100,100,105,110,103,76,101,102,116,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,112,97,100,100,105,110,103,82,105,103,104,116,58,32,118,97,108,117,101,92,110,32,32,32,32,32,32,125,32,58,32,123,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,36,105,110,110,101,114,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,97,118,97,116,97,114,45,103,114,111,117,112,45,105,110,110,101,114,39,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,116,104,105,115,46,112,97,100,100,105,110,103,83,116,121,108,101,92,110,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,104,105,115,46,116,97,103,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,97,118,97,116,97,114,45,103,114,111,117,112,39,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,103,114,111,117,112,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,105,110,110,101,114,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,97,118,97,116,97,114,45,103,114,111,117,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,97,118,97,116,97,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,97,118,97,116,97,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,65,118,97,116,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,65,118,97,116,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,109,112,117,116,101,83,105,122,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,109,112,117,116,101,83,105,122,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,114,111,117,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,114,111,117,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,105,99,111,110,115,47,105,99,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,105,99,111,110,115,47,105,99,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,98,117,116,116,111,110,47,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,105,110,107,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,67,76,65,83,83,95,78,65,77,69,32,61,32,39,98,45,97,118,97,116,97,114,39,59,92,110,118,97,114,32,83,73,90,69,83,32,61,32,91,39,115,109,39,44,32,110,117,108,108,44,32,39,108,103,39,93,59,92,110,118,97,114,32,70,79,78,84,95,83,73,90,69,95,83,67,65,76,69,32,61,32,48,46,52,59,92,110,118,97,114,32,66,65,68,71,69,95,70,79,78,84,95,83,73,90,69,95,83,67,65,76,69,32,61,32,70,79,78,84,95,83,73,90,69,95,83,67,65,76,69,32,42,32,48,46,55,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,92,110,118,97,114,32,99,111,109,112,117,116,101,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,83,105,122,101,40,118,97,108,117,101,41,32,123,92,110,32,32,47,47,32,80,97,114,115,101,32,116,111,32,110,117,109,98,101,114,32,119,104,101,110,32,118,97,108,117,101,32,105,115,32,97,32,102,108,111,97,116,45,108,105,107,101,32,115,116,114,105,110,103,92,110,32,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,83,116,114,105,110,103,41,40,118,97,108,117,101,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,78,117,109,101,114,105,99,41,40,118,97,108,117,101,41,32,63,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,111,70,108,111,97,116,41,40,118,97,108,117,101,44,32,48,41,32,58,32,118,97,108,117,101,59,32,47,47,32,67,111,110,118,101,114,116,32,97,108,108,32,110,117,109,98,101,114,115,32,116,111,32,112,105,120,101,108,32,118,97,108,117,101,115,92,110,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,78,117,109,98,101,114,41,40,118,97,108,117,101,41,32,63,32,92,34,92,34,46,99,111,110,99,97,116,40,118,97,108,117,101,44,32,92,34,112,120,92,34,41,32,58,32,118,97,108,117,101,32,124,124,32,110,117,108,108,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,108,105,110,107,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,111,109,105,116,41,40,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,44,32,91,39,97,99,116,105,118,101,39,44,32,39,101,118,101,110,116,39,44,32,39,114,111,117,116,101,114,84,97,103,39,93,41,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,108,105,110,107,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,108,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,97,118,97,116,97,114,39,41,44,92,110,32,32,97,114,105,97,76,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,98,97,100,103,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,44,92,110,32,32,98,97,100,103,101,76,101,102,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,98,97,100,103,101,79,102,102,115,101,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,98,97,100,103,101,84,111,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,98,97,100,103,101,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,112,114,105,109,97,114,121,39,41,44,92,110,32,32,98,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,98,117,116,116,111,110,84,121,112,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,98,117,116,116,111,110,39,41,44,92,110,32,32,105,99,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,114,111,117,110,100,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,44,92,110,32,32,115,105,122,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,44,92,110,32,32,115,113,117,97,114,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,114,99,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,101,99,111,110,100,97,114,121,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,65,86,65,84,65,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,65,118,97,116,97,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,65,86,65,84,65,82,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,105,110,106,101,99,116,58,32,123,92,110,32,32,32,32,98,118,65,118,97,116,97,114,71,114,111,117,112,58,32,123,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,110,117,108,108,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,83,114,99,58,32,116,104,105,115,46,115,114,99,32,124,124,32,110,117,108,108,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,105,122,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,105,122,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,65,108,119,97,121,115,32,117,115,101,32,116,104,101,32,97,118,97,116,97,114,32,103,114,111,117,112,32,115,105,122,101,92,110,32,32,32,32,32,32,118,97,114,32,98,118,65,118,97,116,97,114,71,114,111,117,112,32,61,32,116,104,105,115,46,98,118,65,118,97,116,97,114,71,114,111,117,112,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,117,116,101,83,105,122,101,40,98,118,65,118,97,116,97,114,71,114,111,117,112,32,63,32,98,118,65,118,97,116,97,114,71,114,111,117,112,46,115,105,122,101,32,58,32,116,104,105,115,46,115,105,122,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,118,65,118,97,116,97,114,71,114,111,117,112,32,61,32,116,104,105,115,46,98,118,65,118,97,116,97,114,71,114,111,117,112,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,118,65,118,97,116,97,114,71,114,111,117,112,32,38,38,32,98,118,65,118,97,116,97,114,71,114,111,117,112,46,118,97,114,105,97,110,116,32,63,32,98,118,65,118,97,116,97,114,71,114,111,117,112,46,118,97,114,105,97,110,116,32,58,32,116,104,105,115,46,118,97,114,105,97,110,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,82,111,117,110,100,101,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,82,111,117,110,100,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,118,65,118,97,116,97,114,71,114,111,117,112,32,61,32,116,104,105,115,46,98,118,65,118,97,116,97,114,71,114,111,117,112,59,92,110,32,32,32,32,32,32,118,97,114,32,115,113,117,97,114,101,32,61,32,98,118,65,118,97,116,97,114,71,114,111,117,112,32,38,38,32,98,118,65,118,97,116,97,114,71,114,111,117,112,46,115,113,117,97,114,101,32,63,32,116,114,117,101,32,58,32,116,104,105,115,46,115,113,117,97,114,101,59,92,110,32,32,32,32,32,32,118,97,114,32,114,111,117,110,100,101,100,32,61,32,98,118,65,118,97,116,97,114,71,114,111,117,112,32,38,38,32,98,118,65,118,97,116,97,114,71,114,111,117,112,46,114,111,117,110,100,101,100,32,63,32,98,118,65,118,97,116,97,114,71,114,111,117,112,46,114,111,117,110,100,101,100,32,58,32,116,104,105,115,46,114,111,117,110,100,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,113,117,97,114,101,32,63,32,39,48,39,32,58,32,114,111,117,110,100,101,100,32,61,61,61,32,39,39,32,63,32,116,114,117,101,32,58,32,114,111,117,110,100,101,100,32,124,124,32,39,99,105,114,99,108,101,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,110,116,83,116,121,108,101,58,32,102,117,110,99,116,105,111,110,32,102,111,110,116,83,116,121,108,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,59,92,110,32,32,32,32,32,32,118,97,114,32,102,111,110,116,83,105,122,101,32,61,32,83,73,90,69,83,46,105,110,100,101,120,79,102,40,115,105,122,101,41,32,61,61,61,32,45,49,32,63,32,92,34,99,97,108,99,40,92,34,46,99,111,110,99,97,116,40,115,105,122,101,44,32,92,34,32,42,32,92,34,41,46,99,111,110,99,97,116,40,70,79,78,84,95,83,73,90,69,95,83,67,65,76,69,44,32,92,34,41,92,34,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,110,116,83,105,122,101,32,63,32,123,92,110,32,32,32,32,32,32,32,32,102,111,110,116,83,105,122,101,58,32,102,111,110,116,83,105,122,101,92,110,32,32,32,32,32,32,125,32,58,32,123,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,97,114,103,105,110,83,116,121,108,101,58,32,102,117,110,99,116,105,111,110,32,109,97,114,103,105,110,83,116,121,108,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,32,32,98,118,65,118,97,116,97,114,71,114,111,117,112,32,61,32,116,104,105,115,46,98,118,65,118,97,116,97,114,71,114,111,117,112,59,92,110,32,32,32,32,32,32,118,97,114,32,111,118,101,114,108,97,112,83,99,97,108,101,32,61,32,98,118,65,118,97,116,97,114,71,114,111,117,112,32,63,32,98,118,65,118,97,116,97,114,71,114,111,117,112,46,111,118,101,114,108,97,112,83,99,97,108,101,32,58,32,48,59,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,115,105,122,101,32,38,38,32,111,118,101,114,108,97,112,83,99,97,108,101,32,63,32,92,34,99,97,108,99,40,92,34,46,99,111,110,99,97,116,40,115,105,122,101,44,32,92,34,32,42,32,45,92,34,41,46,99,111,110,99,97,116,40,111,118,101,114,108,97,112,83,99,97,108,101,44,32,92,34,41,92,34,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,63,32,123,92,110,32,32,32,32,32,32,32,32,109,97,114,103,105,110,76,101,102,116,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,109,97,114,103,105,110,82,105,103,104,116,58,32,118,97,108,117,101,92,110,32,32,32,32,32,32,125,32,58,32,123,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,97,100,103,101,83,116,121,108,101,58,32,102,117,110,99,116,105,111,110,32,98,97,100,103,101,83,116,121,108,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,32,32,98,97,100,103,101,84,111,112,32,61,32,116,104,105,115,46,98,97,100,103,101,84,111,112,44,92,110,32,32,32,32,32,32,32,32,32,32,98,97,100,103,101,76,101,102,116,32,61,32,116,104,105,115,46,98,97,100,103,101,76,101,102,116,44,92,110,32,32,32,32,32,32,32,32,32,32,98,97,100,103,101,79,102,102,115,101,116,32,61,32,116,104,105,115,46,98,97,100,103,101,79,102,102,115,101,116,59,92,110,32,32,32,32,32,32,118,97,114,32,111,102,102,115,101,116,32,61,32,98,97,100,103,101,79,102,102,115,101,116,32,124,124,32,39,48,112,120,39,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,102,111,110,116,83,105,122,101,58,32,83,73,90,69,83,46,105,110,100,101,120,79,102,40,115,105,122,101,41,32,61,61,61,32,45,49,32,63,32,92,34,99,97,108,99,40,92,34,46,99,111,110,99,97,116,40,115,105,122,101,44,32,92,34,32,42,32,92,34,41,46,99,111,110,99,97,116,40,66,65,68,71,69,95,70,79,78,84,95,83,73,90,69,95,83,67,65,76,69,44,32,92,34,32,41,92,34,41,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,116,111,112,58,32,98,97,100,103,101,84,111,112,32,63,32,111,102,102,115,101,116,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,98,111,116,116,111,109,58,32,98,97,100,103,101,84,111,112,32,63,32,110,117,108,108,32,58,32,111,102,102,115,101,116,44,92,110,32,32,32,32,32,32,32,32,108,101,102,116,58,32,98,97,100,103,101,76,101,102,116,32,63,32,111,102,102,115,101,116,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,114,105,103,104,116,58,32,98,97,100,103,101,76,101,102,116,32,63,32,110,117,108,108,32,58,32,111,102,102,115,101,116,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,115,114,99,58,32,102,117,110,99,116,105,111,110,32,115,114,99,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,114,99,32,61,32,110,101,119,86,97,108,117,101,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,111,110,73,109,103,69,114,114,111,114,58,32,102,117,110,99,116,105,111,110,32,111,110,73,109,103,69,114,114,111,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,114,99,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,69,86,69,78,84,95,78,65,77,69,95,73,77,71,95,69,82,82,79,82,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,111,110,67,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,99,108,97,115,115,50,59,92,110,92,110,32,32,32,32,118,97,114,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,111,117,110,100,101,100,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,82,111,117,110,100,101,100,44,92,110,32,32,32,32,32,32,32,32,105,99,111,110,32,61,32,116,104,105,115,46,105,99,111,110,44,92,110,32,32,32,32,32,32,32,32,115,114,99,32,61,32,116,104,105,115,46,108,111,99,97,108,83,114,99,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,32,61,32,116,104,105,115,46,116,101,120,116,44,92,110,32,32,32,32,32,32,32,32,102,111,110,116,83,116,121,108,101,32,61,32,116,104,105,115,46,102,111,110,116,83,116,121,108,101,44,92,110,32,32,32,32,32,32,32,32,109,97,114,103,105,110,83,116,121,108,101,32,61,32,116,104,105,115,46,109,97,114,103,105,110,83,116,121,108,101,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,98,117,116,116,111,110,32,61,32,116,104,105,115,46,98,117,116,116,111,110,44,92,110,32,32,32,32,32,32,32,32,116,121,112,101,32,61,32,116,104,105,115,46,98,117,116,116,111,110,84,121,112,101,44,92,110,32,32,32,32,32,32,32,32,98,97,100,103,101,32,61,32,116,104,105,115,46,98,97,100,103,101,44,92,110,32,32,32,32,32,32,32,32,98,97,100,103,101,86,97,114,105,97,110,116,32,61,32,116,104,105,115,46,98,97,100,103,101,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,98,97,100,103,101,83,116,121,108,101,32,61,32,116,104,105,115,46,98,97,100,103,101,83,116,121,108,101,59,92,110,32,32,32,32,118,97,114,32,108,105,110,107,32,61,32,33,98,117,116,116,111,110,32,38,38,32,40,48,44,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,105,115,76,105,110,107,41,40,116,104,105,115,41,59,92,110,32,32,32,32,118,97,114,32,116,97,103,32,61,32,98,117,116,116,111,110,32,63,32,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,66,66,117,116,116,111,110,32,58,32,108,105,110,107,32,63,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,76,105,110,107,32,58,32,39,115,112,97,110,39,59,92,110,32,32,32,32,118,97,114,32,97,108,116,32,61,32,116,104,105,115,46,97,108,116,59,92,110,32,32,32,32,118,97,114,32,97,114,105,97,76,97,98,101,108,32,61,32,116,104,105,115,46,97,114,105,97,76,97,98,101,108,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,115,108,111,116,32,111,118,101,114,114,105,100,101,115,32,112,114,111,112,115,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,32,61,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,97,118,97,116,97,114,45,99,117,115,116,111,109,39,92,110,32,32,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,114,99,41,32,123,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,32,61,32,104,40,39,105,109,103,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,118,97,114,105,97,110,116,32,63,32,123,125,32,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,49,48,48,37,39,44,92,110,32,32,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,39,49,48,48,37,39,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,114,99,58,32,115,114,99,44,92,110,32,32,32,32,32,32,32,32,32,32,97,108,116,58,32,97,108,116,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,114,114,111,114,58,32,116,104,105,115,46,111,110,73,109,103,69,114,114,111,114,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,32,61,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,97,118,97,116,97,114,45,105,109,103,39,92,110,32,32,32,32,32,32,125,44,32,91,36,99,111,110,116,101,110,116,93,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,99,111,110,41,32,123,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,32,61,32,104,40,95,105,99,111,110,115,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,66,73,99,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,99,111,110,58,32,105,99,111,110,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,39,116,114,117,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,97,108,116,58,32,97,108,116,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,101,120,116,41,32,123,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,32,61,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,97,118,97,116,97,114,45,116,101,120,116,39,44,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,102,111,110,116,83,116,121,108,101,92,110,32,32,32,32,32,32,125,44,32,91,104,40,39,115,112,97,110,39,44,32,116,101,120,116,41,93,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,70,97,108,108,98,97,99,107,32,100,101,102,97,117,108,116,32,97,118,97,116,97,114,32,99,111,110,116,101,110,116,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,32,61,32,104,40,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,70,105,108,108,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,39,116,114,117,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,97,108,116,58,32,97,108,116,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,98,97,100,103,101,32,61,32,104,40,41,59,92,110,32,32,32,32,118,97,114,32,104,97,115,66,97,100,103,101,83,108,111,116,32,61,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,83,76,79,84,95,78,65,77,69,95,66,65,68,71,69,41,59,92,110,92,110,32,32,32,32,105,102,32,40,98,97,100,103,101,32,124,124,32,98,97,100,103,101,32,61,61,61,32,39,39,32,124,124,32,104,97,115,66,97,100,103,101,83,108,111,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,97,100,103,101,84,101,120,116,32,61,32,98,97,100,103,101,32,61,61,61,32,116,114,117,101,32,63,32,39,39,32,58,32,98,97,100,103,101,59,92,110,32,32,32,32,32,32,36,98,97,100,103,101,32,61,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,97,118,97,116,97,114,45,98,97,100,103,101,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,92,34,98,97,100,103,101,45,92,34,46,99,111,110,99,97,116,40,98,97,100,103,101,86,97,114,105,97,110,116,41,44,32,98,97,100,103,101,86,97,114,105,97,110,116,41,44,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,98,97,100,103,101,83,116,121,108,101,92,110,32,32,32,32,32,32,125,44,32,91,104,97,115,66,97,100,103,101,83,108,111,116,32,63,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,83,76,79,84,95,78,65,77,69,95,66,65,68,71,69,41,32,58,32,98,97,100,103,101,84,101,120,116,93,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,99,111,109,112,111,110,101,110,116,68,97,116,97,32,61,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,67,76,65,83,83,95,78,65,77,69,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,40,95,99,108,97,115,115,50,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,50,44,32,92,34,92,34,46,99,111,110,99,97,116,40,67,76,65,83,83,95,78,65,77,69,44,32,92,34,45,92,34,41,46,99,111,110,99,97,116,40,115,105,122,101,41,44,32,115,105,122,101,32,38,38,32,83,73,90,69,83,46,105,110,100,101,120,79,102,40,115,105,122,101,41,32,33,61,61,32,45,49,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,50,44,32,92,34,98,97,100,103,101,45,92,34,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,44,32,33,98,117,116,116,111,110,32,38,38,32,118,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,50,44,32,92,34,114,111,117,110,100,101,100,92,34,44,32,114,111,117,110,100,101,100,32,61,61,61,32,116,114,117,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,50,44,32,92,34,114,111,117,110,100,101,100,45,92,34,46,99,111,110,99,97,116,40,114,111,117,110,100,101,100,41,44,32,114,111,117,110,100,101,100,32,38,38,32,114,111,117,110,100,101,100,32,33,61,61,32,116,114,117,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,50,44,32,92,34,100,105,115,97,98,108,101,100,92,34,44,32,100,105,115,97,98,108,101,100,41,44,32,95,99,108,97,115,115,50,41,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,109,97,114,103,105,110,83,116,121,108,101,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,115,105,122,101,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,115,105,122,101,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,97,114,105,97,76,97,98,101,108,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,98,117,116,116,111,110,32,63,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,116,121,112,101,58,32,116,121,112,101,92,110,32,32,32,32,32,32,125,32,58,32,108,105,110,107,32,63,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,108,105,110,107,80,114,111,112,115,44,32,116,104,105,115,41,32,58,32,123,125,44,92,110,32,32,32,32,32,32,111,110,58,32,98,117,116,116,111,110,32,124,124,32,108,105,110,107,32,63,32,123,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,67,108,105,99,107,92,110,32,32,32,32,32,32,125,32,58,32,123,125,92,110,32,32,32,32,125,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,97,103,44,32,99,111,109,112,111,110,101,110,116,68,97,116,97,44,32,91,36,99,111,110,116,101,110,116,44,32,36,98,97,100,103,101,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,97,118,97,116,97,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,65,118,97,116,97,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,65,118,97,116,97,114,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,65,118,97,116,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,118,97,116,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,65,118,97,116,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,65,118,97,116,97,114,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,118,97,116,97,114,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,65,118,97,116,97,114,71,114,111,117,112,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,118,97,116,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,118,97,116,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,97,118,97,116,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,118,97,116,97,114,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,118,97,116,97,114,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,97,118,97,116,97,114,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,65,118,97,116,97,114,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,65,118,97,116,97,114,58,32,95,97,118,97,116,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,65,118,97,116,97,114,44,92,110,32,32,32,32,66,65,118,97,116,97,114,71,114,111,117,112,58,32,95,97,118,97,116,97,114,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,65,118,97,116,97,114,71,114,111,117,112,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,97,100,103,101,47,98,97,100,103,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,97,100,103,101,47,98,97,100,103,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,97,100,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,66,97,100,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,114,111,117,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,114,111,117,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,105,110,107,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,108,105,110,107,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,91,39,101,118,101,110,116,39,44,32,39,114,111,117,116,101,114,84,97,103,39,93,41,59,92,110,100,101,108,101,116,101,32,108,105,110,107,80,114,111,112,115,46,104,114,101,102,46,100,101,102,97,117,108,116,59,92,110,100,101,108,101,116,101,32,108,105,110,107,80,114,111,112,115,46,116,111,46,100,101,102,97,117,108,116,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,108,105,110,107,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,112,105,108,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,112,97,110,39,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,101,99,111,110,100,97,114,121,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,66,65,68,71,69,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,66,97,100,103,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,66,65,68,71,69,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,97,99,116,105,118,101,32,61,32,112,114,111,112,115,46,97,99,116,105,118,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,112,114,111,112,115,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,118,97,114,32,108,105,110,107,32,61,32,40,48,44,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,76,105,110,107,41,40,112,114,111,112,115,41,59,92,110,32,32,32,32,118,97,114,32,116,97,103,32,61,32,108,105,110,107,32,63,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,76,105,110,107,32,58,32,112,114,111,112,115,46,116,97,103,59,92,110,32,32,32,32,118,97,114,32,118,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,118,97,114,105,97,110,116,32,124,124,32,39,115,101,99,111,110,100,97,114,121,39,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,97,100,103,101,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,92,34,98,97,100,103,101,45,92,34,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,44,32,123,92,110,32,32,32,32,32,32,32,32,39,98,97,100,103,101,45,112,105,108,108,39,58,32,112,114,111,112,115,46,112,105,108,108,44,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,58,32,97,99,116,105,118,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,108,105,110,107,32,63,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,108,105,110,107,80,114,111,112,115,44,32,112,114,111,112,115,41,32,58,32,123,125,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,97,100,103,101,47,98,97,100,103,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,97,100,103,101,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,97,100,103,101,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,97,100,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,97,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,66,97,100,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,97,100,103,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,97,100,103,101,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,97,100,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,97,100,103,101,47,98,97,100,103,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,66,97,100,103,101,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,66,97,100,103,101,58,32,95,98,97,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,66,97,100,103,101,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,97,100,103,101,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,114,101,97,100,99,114,117,109,98,73,116,101,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,66,114,101,97,100,99,114,117,109,98,73,116,101,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,114,101,97,100,99,114,117,109,98,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,114,101,97,100,99,114,117,109,98,45,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,45,108,105,110,107,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,95,98,114,101,97,100,99,114,117,109,98,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,66,82,69,65,68,67,82,85,77,66,95,73,84,69,77,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,66,114,101,97,100,99,114,117,109,98,73,116,101,109,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,66,82,69,65,68,67,82,85,77,66,95,73,84,69,77,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,58,32,112,114,111,112,115,46,97,99,116,105,118,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,44,32,91,104,40,95,98,114,101,97,100,99,114,117,109,98,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,66,114,101,97,100,99,114,117,109,98,76,105,110,107,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,112,114,111,112,115,92,110,32,32,32,32,125,44,32,99,104,105,108,100,114,101,110,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,45,108,105,110,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,45,108,105,110,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,114,101,97,100,99,114,117,109,98,76,105,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,66,114,101,97,100,99,114,117,109,98,76,105,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,105,110,107,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,111,109,105,116,41,40,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,44,32,91,39,101,118,101,110,116,39,44,32,39,114,111,117,116,101,114,84,97,103,39,93,41,41,44,32,123,125,44,32,123,92,110,32,32,97,114,105,97,67,117,114,114,101,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,108,111,99,97,116,105,111,110,39,41,44,92,110,32,32,104,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,66,82,69,65,68,67,82,85,77,66,95,76,73,78,75,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,66,114,101,97,100,99,114,117,109,98,76,105,110,107,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,66,82,69,65,68,67,82,85,77,66,95,76,73,78,75,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,115,117,112,112,108,105,101,100,80,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,97,99,116,105,118,101,32,61,32,115,117,112,112,108,105,101,100,80,114,111,112,115,46,97,99,116,105,118,101,59,92,110,32,32,32,32,118,97,114,32,116,97,103,32,61,32,97,99,116,105,118,101,32,63,32,39,115,112,97,110,39,32,58,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,76,105,110,107,59,92,110,32,32,32,32,118,97,114,32,99,111,109,112,111,110,101,110,116,68,97,116,97,32,61,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,117,114,114,101,110,116,39,58,32,97,99,116,105,118,101,32,63,32,115,117,112,112,108,105,101,100,80,114,111,112,115,46,97,114,105,97,67,117,114,114,101,110,116,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,112,114,111,112,115,44,32,115,117,112,112,108,105,101,100,80,114,111,112,115,41,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,105,102,32,40,33,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,68,97,116,97,46,100,111,109,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,115,117,112,112,108,105,101,100,80,114,111,112,115,46,104,116,109,108,44,32,115,117,112,112,108,105,101,100,80,114,111,112,115,46,116,101,120,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,99,111,109,112,111,110,101,110,116,68,97,116,97,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,45,108,105,110,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,114,101,97,100,99,114,117,109,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,66,114,101,97,100,99,114,117,109,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,114,101,97,100,99,114,117,109,98,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,105,116,101,109,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,66,82,69,65,68,67,82,85,77,66,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,66,114,101,97,100,99,114,117,109,98,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,66,82,69,65,68,67,82,85,77,66,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,112,114,111,112,115,46,105,116,101,109,115,59,32,47,47,32,66,117,105,108,100,32,99,104,105,108,100,32,110,111,100,101,115,32,102,114,111,109,32,105,116,101,109,115,44,32,105,102,32,103,105,118,101,110,92,110,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,78,111,100,101,115,32,61,32,99,104,105,108,100,114,101,110,59,92,110,92,110,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,65,114,114,97,121,41,40,105,116,101,109,115,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,99,116,105,118,101,68,101,102,105,110,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,99,104,105,108,100,78,111,100,101,115,32,61,32,105,116,101,109,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,44,32,105,100,120,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,79,98,106,101,99,116,41,40,105,116,101,109,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,83,116,114,105,110,103,41,40,105,116,101,109,41,92,110,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,67,111,112,121,32,116,104,101,32,118,97,108,117,101,32,104,101,114,101,32,115,111,32,119,101,32,99,97,110,32,110,111,114,109,97,108,105,122,101,32,105,116,92,110,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,95,105,116,101,109,32,61,32,105,116,101,109,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,32,61,32,95,105,116,101,109,46,97,99,116,105,118,101,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,97,99,116,105,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,68,101,102,105,110,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,65,117,116,111,45,100,101,116,101,99,116,32,97,99,116,105,118,101,32,98,121,32,112,111,115,105,116,105,111,110,32,105,110,32,108,105,115,116,92,110,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,97,99,116,105,118,101,32,38,38,32,33,97,99,116,105,118,101,68,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,32,61,32,105,100,120,32,43,32,49,32,61,61,61,32,105,116,101,109,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,95,98,114,101,97,100,99,114,117,109,98,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,66,114,101,97,100,99,114,117,109,98,73,116,101,109,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,105,116,101,109,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,58,32,97,99,116,105,118,101,92,110,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,111,108,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,114,101,97,100,99,114,117,109,98,39,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,78,111,100,101,115,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,114,101,97,100,99,114,117,109,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,114,101,97,100,99,114,117,109,98,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,66,114,101,97,100,99,114,117,109,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,114,101,97,100,99,114,117,109,98,73,116,101,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,114,101,97,100,99,114,117,109,98,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,66,114,101,97,100,99,114,117,109,98,73,116,101,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,114,101,97,100,99,114,117,109,98,76,105,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,114,101,97,100,99,114,117,109,98,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,66,114,101,97,100,99,114,117,109,98,76,105,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,114,101,97,100,99,114,117,109,98,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,114,101,97,100,99,114,117,109,98,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,114,101,97,100,99,114,117,109,98,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,114,101,97,100,99,114,117,109,98,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,114,101,97,100,99,114,117,109,98,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,114,101,97,100,99,114,117,109,98,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,114,101,97,100,99,114,117,109,98,45,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,45,108,105,110,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,66,114,101,97,100,99,114,117,109,98,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,66,114,101,97,100,99,114,117,109,98,58,32,95,98,114,101,97,100,99,114,117,109,98,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,66,114,101,97,100,99,114,117,109,98,44,92,110,32,32,32,32,66,66,114,101,97,100,99,114,117,109,98,73,116,101,109,58,32,95,98,114,101,97,100,99,114,117,109,98,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,66,114,101,97,100,99,114,117,109,98,73,116,101,109,44,92,110,32,32,32,32,66,66,114,101,97,100,99,114,117,109,98,76,105,110,107,58,32,95,98,114,101,97,100,99,114,117,109,98,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,66,114,101,97,100,99,114,117,109,98,76,105,110,107,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,103,114,111,117,112,47,98,117,116,116,111,110,45,103,114,111,117,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,103,114,111,117,112,47,98,117,116,116,111,110,45,103,114,111,117,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,117,116,116,111,110,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,66,117,116,116,111,110,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,98,117,116,116,111,110,47,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,99,107,41,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,44,32,91,39,115,105,122,101,39,93,41,41,44,32,123,125,44,32,123,92,110,32,32,97,114,105,97,82,111,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,103,114,111,117,112,39,41,44,92,110,32,32,115,105,122,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,44,92,110,32,32,118,101,114,116,105,99,97,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,66,85,84,84,79,78,95,71,82,79,85,80,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,66,117,116,116,111,110,71,114,111,117,112,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,66,85,84,84,79,78,95,71,82,79,85,80,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,92,110,32,32,32,32,32,32,32,32,39,98,116,110,45,103,114,111,117,112,39,58,32,33,112,114,111,112,115,46,118,101,114,116,105,99,97,108,44,92,110,32,32,32,32,32,32,32,32,39,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,39,58,32,112,114,111,112,115,46,118,101,114,116,105,99,97,108,92,110,32,32,32,32,32,32,125,44,32,92,34,98,116,110,45,103,114,111,117,112,45,92,34,46,99,111,110,99,97,116,40,112,114,111,112,115,46,115,105,122,101,41,44,32,112,114,111,112,115,46,115,105,122,101,41,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,112,114,111,112,115,46,97,114,105,97,82,111,108,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,103,114,111,117,112,47,98,117,116,116,111,110,45,103,114,111,117,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,117,116,116,111,110,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,117,116,116,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,66,117,116,116,111,110,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,117,116,116,111,110,71,114,111,117,112,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,117,116,116,111,110,71,114,111,117,112,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,117,116,116,111,110,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,103,114,111,117,112,47,98,117,116,116,111,110,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,66,117,116,116,111,110,71,114,111,117,112,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,66,117,116,116,111,110,71,114,111,117,112,58,32,95,98,117,116,116,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,66,117,116,116,111,110,71,114,111,117,112,44,92,110,32,32,32,32,66,66,116,110,71,114,111,117,112,58,32,95,98,117,116,116,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,66,117,116,116,111,110,71,114,111,117,112,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,117,116,116,111,110,84,111,111,108,98,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,66,117,116,116,111,110,84,111,111,108,98,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,73,84,69,77,95,83,69,76,69,67,84,79,82,32,61,32,91,39,46,98,116,110,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,105,116,101,109,41,39,44,32,39,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,39,44,32,39,115,101,108,101,99,116,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,39,44,32,39,105,110,112,117,116,91,116,121,112,101,61,92,34,99,104,101,99,107,98,111,120,92,34,93,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,39,44,32,39,105,110,112,117,116,91,116,121,112,101,61,92,34,114,97,100,105,111,92,34,93,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,39,93,46,106,111,105,110,40,39,44,39,41,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,106,117,115,116,105,102,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,107,101,121,78,97,118,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,66,85,84,84,79,78,95,84,79,79,76,66,65,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,66,117,116,116,111,110,84,111,111,108,98,97,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,66,85,84,84,79,78,95,84,79,79,76,66,65,82,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,80,114,101,45,115,101,116,32,116,104,101,32,116,97,98,105,110,100,101,120,101,115,32,105,102,32,116,104,101,32,109,97,114,107,117,112,32,100,111,101,115,32,110,111,116,32,105,110,99,108,117,100,101,92,110,32,32,32,32,47,47,32,96,116,97,98,105,110,100,101,120,61,92,34,45,49,92,34,96,32,111,110,32,116,104,101,32,116,111,111,108,98,97,114,32,105,116,101,109,115,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,107,101,121,78,97,118,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,103,101,116,73,116,101,109,115,58,32,102,117,110,99,116,105,111,110,32,103,101,116,73,116,101,109,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,101,108,101,99,116,65,108,108,41,40,73,84,69,77,95,83,69,76,69,67,84,79,82,44,32,116,104,105,115,46,36,101,108,41,59,32,47,47,32,69,110,115,117,114,101,32,96,116,97,98,105,110,100,101,120,61,92,34,45,49,92,34,96,32,105,115,32,115,101,116,32,111,110,32,101,118,101,114,121,32,105,116,101,109,92,110,92,110,32,32,32,32,32,32,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,109,46,116,97,98,73,110,100,101,120,32,61,32,45,49,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,86,105,115,105,98,108,101,41,40,101,108,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,99,117,115,70,105,114,115,116,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,70,105,114,115,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,105,116,101,109,115,91,48,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,99,117,115,80,114,101,118,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,80,114,101,118,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,105,116,101,109,115,46,105,110,100,101,120,79,102,40,101,118,101,110,116,46,116,97,114,103,101,116,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,109,115,32,61,32,105,116,101,109,115,46,115,108,105,99,101,40,48,44,32,105,110,100,101,120,41,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,105,116,101,109,115,91,48,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,99,117,115,78,101,120,116,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,78,101,120,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,105,116,101,109,115,46,105,110,100,101,120,79,102,40,101,118,101,110,116,46,116,97,114,103,101,116,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,109,115,32,61,32,105,116,101,109,115,46,115,108,105,99,101,40,105,110,100,101,120,32,43,32,49,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,105,116,101,109,115,91,48,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,99,117,115,76,97,115,116,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,76,97,115,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,105,116,101,109,115,91,48,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,70,111,99,117,115,105,110,58,32,102,117,110,99,116,105,111,110,32,111,110,70,111,99,117,115,105,110,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,101,108,32,61,32,116,104,105,115,46,36,101,108,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,116,97,114,103,101,116,32,61,61,61,32,36,101,108,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,99,111,110,116,97,105,110,115,41,40,36,101,108,44,32,101,118,101,110,116,46,114,101,108,97,116,101,100,84,97,114,103,101,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,102,111,99,117,115,70,105,114,115,116,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,75,101,121,100,111,119,110,58,32,102,117,110,99,116,105,111,110,32,111,110,75,101,121,100,111,119,110,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,115,104,105,102,116,75,101,121,32,61,32,101,118,101,110,116,46,115,104,105,102,116,75,101,121,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,67,79,68,69,95,85,80,32,124,124,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,67,79,68,69,95,76,69,70,84,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,115,104,105,102,116,75,101,121,32,63,32,116,104,105,115,46,102,111,99,117,115,70,105,114,115,116,40,101,118,101,110,116,41,32,58,32,116,104,105,115,46,102,111,99,117,115,80,114,101,118,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,67,79,68,69,95,68,79,87,78,32,124,124,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,67,79,68,69,95,82,73,71,72,84,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,115,104,105,102,116,75,101,121,32,63,32,116,104,105,115,46,102,111,99,117,115,76,97,115,116,40,101,118,101,110,116,41,32,58,32,116,104,105,115,46,102,111,99,117,115,78,101,120,116,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,107,101,121,78,97,118,32,61,32,116,104,105,115,46,107,101,121,78,97,118,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,116,110,45,116,111,111,108,98,97,114,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,39,58,32,116,104,105,115,46,106,117,115,116,105,102,121,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,116,111,111,108,98,97,114,39,44,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,107,101,121,78,97,118,32,63,32,39,48,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,107,101,121,78,97,118,32,63,32,123,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,105,110,58,32,116,104,105,115,46,111,110,70,111,99,117,115,105,110,44,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,111,110,75,101,121,100,111,119,110,92,110,32,32,32,32,32,32,125,32,58,32,123,125,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,117,116,116,111,110,84,111,111,108,98,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,117,116,116,111,110,95,116,111,111,108,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,66,117,116,116,111,110,84,111,111,108,98,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,117,116,116,111,110,84,111,111,108,98,97,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,117,116,116,111,110,84,111,111,108,98,97,114,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,116,111,111,108,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,66,117,116,116,111,110,84,111,111,108,98,97,114,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,66,117,116,116,111,110,84,111,111,108,98,97,114,58,32,95,98,117,116,116,111,110,95,116,111,111,108,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,66,117,116,116,111,110,84,111,111,108,98,97,114,44,92,110,32,32,32,32,66,66,116,110,84,111,111,108,98,97,114,58,32,95,98,117,116,116,111,110,95,116,111,111,108,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,66,117,116,116,111,110,84,111,111,108,98,97,114,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,117,116,116,111,110,67,108,111,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,66,117,116,116,111,110,67,108,111,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,114,105,97,76,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,67,108,111,115,101,39,41,44,92,110,32,32,99,111,110,116,101,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,38,116,105,109,101,115,59,39,41,44,92,110,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,101,120,116,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,66,85,84,84,79,78,95,67,76,79,83,69,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,66,117,116,116,111,110,67,108,111,115,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,66,85,84,84,79,78,95,67,76,79,83,69,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,115,108,111,116,115,32,61,32,95,114,101,102,46,115,108,111,116,115,44,92,110,32,32,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,32,61,32,95,114,101,102,46,115,99,111,112,101,100,83,108,111,116,115,59,92,110,32,32,32,32,118,97,114,32,36,115,108,111,116,115,32,61,32,115,108,111,116,115,40,41,59,92,110,32,32,32,32,118,97,114,32,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,115,99,111,112,101,100,83,108,111,116,115,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,99,111,109,112,111,110,101,110,116,68,97,116,97,32,61,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,108,111,115,101,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,112,114,111,112,115,46,116,101,120,116,86,97,114,105,97,110,116,41,44,32,112,114,111,112,115,46,116,101,120,116,86,97,114,105,97,110,116,41,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,116,121,112,101,58,32,39,98,117,116,116,111,110,39,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,112,114,111,112,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,112,114,111,112,115,46,97,114,105,97,76,97,98,101,108,32,63,32,83,116,114,105,110,103,40,112,114,111,112,115,46,97,114,105,97,76,97,98,101,108,41,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,69,110,115,117,114,101,32,99,108,105,99,107,32,111,110,32,98,117,116,116,111,110,32,72,84,77,76,32,99,111,110,116,101,110,116,32,105,115,32,97,108,115,111,32,100,105,115,97,98,108,101,100,92,110,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,58,32,98,117,103,32,105,110,32,74,83,68,79,77,32,115,116,105,108,108,32,101,109,105,116,115,32,99,108,105,99,107,32,111,110,32,105,110,110,101,114,32,101,108,101,109,101,110,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,46,100,105,115,97,98,108,101,100,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,69,118,101,110,116,41,40,101,118,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,32,47,47,32,67,97,114,101,102,117,108,32,110,111,116,32,116,111,32,111,118,101,114,114,105,100,101,32,116,104,101,32,100,101,102,97,117,108,116,32,115,108,111,116,32,119,105,116,104,32,105,110,110,101,114,72,84,77,76,92,110,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,41,32,123,92,110,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,68,97,116,97,46,100,111,109,80,114,111,112,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,105,110,110,101,114,72,84,77,76,58,32,112,114,111,112,115,46,99,111,110,116,101,110,116,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,98,117,116,116,111,110,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,99,111,109,112,111,110,101,110,116,68,97,116,97,41,44,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,123,125,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,117,116,116,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,66,117,116,116,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,114,111,117,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,114,111,117,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,105,110,107,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,108,105,110,107,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,91,39,101,118,101,110,116,39,44,32,39,114,111,117,116,101,114,84,97,103,39,93,41,59,92,110,100,101,108,101,116,101,32,108,105,110,107,80,114,111,112,115,46,104,114,101,102,46,100,101,102,97,117,108,116,59,92,110,100,101,108,101,116,101,32,108,105,110,107,80,114,111,112,115,46,116,111,46,100,101,102,97,117,108,116,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,108,105,110,107,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,98,108,111,99,107,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,112,105,108,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,84,114,105,45,115,116,97,116,101,58,32,96,116,114,117,101,96,44,32,96,102,97,108,115,101,96,32,111,114,32,96,110,117,108,108,96,92,110,32,32,47,47,32,61,62,32,79,110,44,32,111,102,102,44,32,110,111,116,32,97,32,116,111,103,103,108,101,92,110,32,32,112,114,101,115,115,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,110,117,108,108,41,44,92,110,32,32,115,105,122,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,115,113,117,97,114,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,98,117,116,116,111,110,39,41,44,92,110,32,32,116,121,112,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,98,117,116,116,111,110,39,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,101,99,111,110,100,97,114,121,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,66,85,84,84,79,78,41,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,70,111,99,117,115,32,104,97,110,100,108,101,114,32,102,111,114,32,116,111,103,103,108,101,32,98,117,116,116,111,110,115,92,110,47,47,32,78,101,101,100,115,32,99,108,97,115,115,32,111,102,32,39,102,111,99,117,115,39,32,119,104,101,110,32,102,111,99,117,115,101,100,92,110,92,110,118,97,114,32,104,97,110,100,108,101,70,111,99,117,115,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,70,111,99,117,115,40,101,118,101,110,116,41,32,123,92,110,32,32,105,102,32,40,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,39,102,111,99,117,115,105,110,39,41,32,123,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,97,100,100,67,108,97,115,115,41,40,101,118,101,110,116,46,116,97,114,103,101,116,44,32,39,102,111,99,117,115,39,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,39,102,111,99,117,115,111,117,116,39,41,32,123,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,101,118,101,110,116,46,116,97,114,103,101,116,44,32,39,102,111,99,117,115,39,41,59,92,110,32,32,125,92,110,125,59,32,47,47,32,73,115,32,116,104,101,32,114,101,113,117,101,115,116,101,100,32,98,117,116,116,111,110,32,97,32,108,105,110,107,63,92,110,47,47,32,73,102,32,116,97,103,32,112,114,111,112,32,105,115,32,115,101,116,32,116,111,32,96,97,96,44,32,119,101,32,117,115,101,32,97,32,60,98,45,108,105,110,107,62,32,116,111,32,103,101,116,32,112,114,111,112,101,114,32,100,105,115,97,98,108,101,100,32,104,97,110,100,108,105,110,103,92,110,92,110,92,110,118,97,114,32,105,115,76,105,110,107,32,61,32,102,117,110,99,116,105,111,110,32,105,115,76,105,110,107,40,112,114,111,112,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,76,105,110,107,41,40,112,114,111,112,115,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,84,97,103,41,40,112,114,111,112,115,46,116,97,103,44,32,39,97,39,41,59,92,110,125,59,32,47,47,32,73,115,32,116,104,101,32,98,117,116,116,111,110,32,116,111,32,98,101,32,97,32,116,111,103,103,108,101,32,98,117,116,116,111,110,63,92,110,92,110,92,110,118,97,114,32,105,115,84,111,103,103,108,101,32,61,32,102,117,110,99,116,105,111,110,32,105,115,84,111,103,103,108,101,40,112,114,111,112,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,66,111,111,108,101,97,110,41,40,112,114,111,112,115,46,112,114,101,115,115,101,100,41,59,92,110,125,59,32,47,47,32,73,115,32,116,104,101,32,98,117,116,116,111,110,32,92,34,114,101,97,108,108,121,92,34,32,97,32,98,117,116,116,111,110,63,92,110,92,110,92,110,118,97,114,32,105,115,66,117,116,116,111,110,32,61,32,102,117,110,99,116,105,111,110,32,105,115,66,117,116,116,111,110,40,112,114,111,112,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,40,105,115,76,105,110,107,40,112,114,111,112,115,41,32,124,124,32,112,114,111,112,115,46,116,97,103,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,84,97,103,41,40,112,114,111,112,115,46,116,97,103,44,32,39,98,117,116,116,111,110,39,41,41,59,92,110,125,59,32,47,47,32,73,115,32,116,104,101,32,114,101,113,117,101,115,116,101,100,32,116,97,103,32,110,111,116,32,97,32,98,117,116,116,111,110,32,111,114,32,108,105,110,107,63,92,110,92,110,92,110,118,97,114,32,105,115,78,111,110,83,116,97,110,100,97,114,100,84,97,103,32,61,32,102,117,110,99,116,105,111,110,32,105,115,78,111,110,83,116,97,110,100,97,114,100,84,97,103,40,112,114,111,112,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,105,115,76,105,110,107,40,112,114,111,112,115,41,32,38,38,32,33,105,115,66,117,116,116,111,110,40,112,114,111,112,115,41,59,92,110,125,59,32,47,47,32,67,111,109,112,117,116,101,32,114,101,113,117,105,114,101,100,32,99,108,97,115,115,101,115,32,40,110,111,110,32,115,116,97,116,105,99,32,99,108,97,115,115,101,115,41,92,110,92,110,92,110,118,97,114,32,99,111,109,112,117,116,101,67,108,97,115,115,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,67,108,97,115,115,40,112,114,111,112,115,41,32,123,92,110,32,32,118,97,114,32,95,114,101,102,59,92,110,92,110,32,32,114,101,116,117,114,110,32,91,92,34,98,116,110,45,92,34,46,99,111,110,99,97,116,40,112,114,111,112,115,46,118,97,114,105,97,110,116,32,124,124,32,39,115,101,99,111,110,100,97,114,121,39,41,44,32,40,95,114,101,102,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,98,116,110,45,92,34,46,99,111,110,99,97,116,40,112,114,111,112,115,46,115,105,122,101,41,44,32,112,114,111,112,115,46,115,105,122,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,39,98,116,110,45,98,108,111,99,107,39,44,32,112,114,111,112,115,46,98,108,111,99,107,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,39,114,111,117,110,100,101,100,45,112,105,108,108,39,44,32,112,114,111,112,115,46,112,105,108,108,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,39,114,111,117,110,100,101,100,45,48,39,44,32,112,114,111,112,115,46,115,113,117,97,114,101,100,32,38,38,32,33,112,114,111,112,115,46,112,105,108,108,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,100,105,115,97,98,108,101,100,92,34,44,32,112,114,111,112,115,46,100,105,115,97,98,108,101,100,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,97,99,116,105,118,101,92,34,44,32,112,114,111,112,115,46,112,114,101,115,115,101,100,41,44,32,95,114,101,102,41,93,59,92,110,125,59,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,108,105,110,107,32,112,114,111,112,115,32,116,111,32,112,97,115,115,32,116,111,32,98,45,108,105,110,107,32,40,105,102,32,114,101,113,117,105,114,101,100,41,92,110,92,110,92,110,118,97,114,32,99,111,109,112,117,116,101,76,105,110,107,80,114,111,112,115,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,76,105,110,107,80,114,111,112,115,40,112,114,111,112,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,76,105,110,107,40,112,114,111,112,115,41,32,63,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,108,105,110,107,80,114,111,112,115,44,32,112,114,111,112,115,41,32,58,32,123,125,59,92,110,125,59,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,97,116,116,114,105,98,117,116,101,115,32,102,111,114,32,97,32,98,117,116,116,111,110,92,110,92,110,92,110,118,97,114,32,99,111,109,112,117,116,101,65,116,116,114,115,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,65,116,116,114,115,40,112,114,111,112,115,44,32,100,97,116,97,41,32,123,92,110,32,32,118,97,114,32,98,117,116,116,111,110,32,61,32,105,115,66,117,116,116,111,110,40,112,114,111,112,115,41,59,92,110,32,32,118,97,114,32,108,105,110,107,32,61,32,105,115,76,105,110,107,40,112,114,111,112,115,41,59,92,110,32,32,118,97,114,32,116,111,103,103,108,101,32,61,32,105,115,84,111,103,103,108,101,40,112,114,111,112,115,41,59,92,110,32,32,118,97,114,32,110,111,110,83,116,97,110,100,97,114,100,84,97,103,32,61,32,105,115,78,111,110,83,116,97,110,100,97,114,100,84,97,103,40,112,114,111,112,115,41,59,92,110,32,32,118,97,114,32,104,97,115,104,76,105,110,107,32,61,32,108,105,110,107,32,38,38,32,112,114,111,112,115,46,104,114,101,102,32,61,61,61,32,39,35,39,59,92,110,32,32,118,97,114,32,114,111,108,101,32,61,32,100,97,116,97,46,97,116,116,114,115,32,38,38,32,100,97,116,97,46,97,116,116,114,115,46,114,111,108,101,32,63,32,100,97,116,97,46,97,116,116,114,115,46,114,111,108,101,32,58,32,110,117,108,108,59,92,110,32,32,118,97,114,32,116,97,98,105,110,100,101,120,32,61,32,100,97,116,97,46,97,116,116,114,115,32,63,32,100,97,116,97,46,97,116,116,114,115,46,116,97,98,105,110,100,101,120,32,58,32,110,117,108,108,59,92,110,92,110,32,32,105,102,32,40,110,111,110,83,116,97,110,100,97,114,100,84,97,103,32,124,124,32,104,97,115,104,76,105,110,107,41,32,123,92,110,32,32,32,32,116,97,98,105,110,100,101,120,32,61,32,39,48,39,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,47,47,32,84,121,112,101,32,111,110,108,121,32,117,115,101,100,32,102,111,114,32,92,34,114,101,97,108,92,34,32,98,117,116,116,111,110,115,92,110,32,32,32,32,116,121,112,101,58,32,98,117,116,116,111,110,32,38,38,32,33,108,105,110,107,32,63,32,112,114,111,112,115,46,116,121,112,101,32,58,32,110,117,108,108,44,92,110,32,32,32,32,47,47,32,68,105,115,97,98,108,101,100,32,111,110,108,121,32,115,101,116,32,111,110,32,92,34,114,101,97,108,92,34,32,98,117,116,116,111,110,115,92,110,32,32,32,32,100,105,115,97,98,108,101,100,58,32,98,117,116,116,111,110,32,63,32,112,114,111,112,115,46,100,105,115,97,98,108,101,100,32,58,32,110,117,108,108,44,92,110,32,32,32,32,47,47,32,87,101,32,97,100,100,32,97,32,114,111,108,101,32,111,102,32,98,117,116,116,111,110,32,119,104,101,110,32,116,104,101,32,116,97,103,32,105,115,32,110,111,116,32,97,32,108,105,110,107,32,111,114,32,98,117,116,116,111,110,32,102,111,114,32,65,82,73,65,92,110,32,32,32,32,47,47,32,68,111,110,39,116,32,98,111,114,107,32,97,110,121,32,114,111,108,101,32,112,114,111,118,105,100,101,100,32,105,110,32,96,100,97,116,97,46,97,116,116,114,115,96,32,119,104,101,110,32,96,105,115,76,105,110,107,96,32,111,114,32,96,105,115,66,117,116,116,111,110,96,92,110,32,32,32,32,47,47,32,69,120,99,101,112,116,32,119,104,101,110,32,108,105,110,107,32,104,97,115,32,96,104,114,101,102,96,32,111,102,32,96,35,96,92,110,32,32,32,32,114,111,108,101,58,32,110,111,110,83,116,97,110,100,97,114,100,84,97,103,32,124,124,32,104,97,115,104,76,105,110,107,32,63,32,39,98,117,116,116,111,110,39,32,58,32,114,111,108,101,44,92,110,32,32,32,32,47,47,32,87,101,32,115,101,116,32,116,104,101,32,96,97,114,105,97,45,100,105,115,97,98,108,101,100,96,32,115,116,97,116,101,32,102,111,114,32,110,111,110,45,115,116,97,110,100,97,114,100,32,116,97,103,115,92,110,32,32,32,32,39,97,114,105,97,45,100,105,115,97,98,108,101,100,39,58,32,110,111,110,83,116,97,110,100,97,114,100,84,97,103,32,63,32,83,116,114,105,110,103,40,112,114,111,112,115,46,100,105,115,97,98,108,101,100,41,32,58,32,110,117,108,108,44,92,110,32,32,32,32,47,47,32,70,111,114,32,116,111,103,103,108,101,115,44,32,119,101,32,110,101,101,100,32,116,111,32,115,101,116,32,116,104,101,32,112,114,101,115,115,101,100,32,115,116,97,116,101,32,102,111,114,32,65,82,73,65,92,110,32,32,32,32,39,97,114,105,97,45,112,114,101,115,115,101,100,39,58,32,116,111,103,103,108,101,32,63,32,83,116,114,105,110,103,40,112,114,111,112,115,46,112,114,101,115,115,101,100,41,32,58,32,110,117,108,108,44,92,110,32,32,32,32,47,47,32,96,97,117,116,111,99,111,109,112,108,101,116,101,61,92,34,111,102,102,92,34,96,32,105,115,32,110,101,101,100,101,100,32,105,110,32,116,111,103,103,108,101,32,109,111,100,101,32,116,111,32,112,114,101,118,101,110,116,32,115,111,109,101,32,98,114,111,119,115,101,114,115,92,110,32,32,32,32,47,47,32,102,114,111,109,32,114,101,109,101,109,98,101,114,105,110,103,32,116,104,101,32,112,114,101,118,105,111,117,115,32,115,101,116,116,105,110,103,32,119,104,101,110,32,117,115,105,110,103,32,116,104,101,32,98,97,99,107,32,98,117,116,116,111,110,92,110,32,32,32,32,97,117,116,111,99,111,109,112,108,101,116,101,58,32,116,111,103,103,108,101,32,63,32,39,111,102,102,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,47,47,32,96,116,97,98,105,110,100,101,120,96,32,105,115,32,117,115,101,100,32,119,104,101,110,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105,115,32,110,111,116,32,97,32,98,117,116,116,111,110,92,110,32,32,32,32,47,47,32,76,105,110,107,115,32,97,114,101,32,116,97,98,98,97,98,108,101,44,32,98,117,116,32,100,111,110,39,116,32,97,108,108,111,119,32,100,105,115,97,98,108,101,100,44,32,119,104,105,108,101,32,110,111,110,32,98,117,116,116,111,110,115,32,111,114,32,108,105,110,107,115,92,110,32,32,32,32,47,47,32,97,114,101,32,110,111,116,32,116,97,98,98,97,98,108,101,44,32,115,111,32,119,101,32,109,105,109,105,99,32,116,104,97,116,32,102,117,110,99,116,105,111,110,97,108,105,116,121,32,98,121,32,100,105,115,97,98,108,105,110,103,32,116,97,98,98,105,110,103,92,110,32,32,32,32,47,47,32,119,104,101,110,32,100,105,115,97,98,108,101,100,44,32,97,110,100,32,97,100,100,105,110,103,32,97,32,96,116,97,98,105,110,100,101,120,61,92,34,48,92,34,96,32,116,111,32,110,111,110,32,98,117,116,116,111,110,115,32,111,114,32,110,111,110,32,108,105,110,107,115,92,110,32,32,32,32,116,97,98,105,110,100,101,120,58,32,112,114,111,112,115,46,100,105,115,97,98,108,101,100,32,38,38,32,33,98,117,116,116,111,110,32,63,32,39,45,49,39,32,58,32,116,97,98,105,110,100,101,120,92,110,32,32,125,59,92,110,125,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,92,110,118,97,114,32,66,66,117,116,116,111,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,66,85,84,84,79,78,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,50,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,50,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,50,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,32,61,32,95,114,101,102,50,46,108,105,115,116,101,110,101,114,115,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,50,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,116,111,103,103,108,101,32,61,32,105,115,84,111,103,103,108,101,40,112,114,111,112,115,41,59,92,110,32,32,32,32,118,97,114,32,108,105,110,107,32,61,32,105,115,76,105,110,107,40,112,114,111,112,115,41,59,92,110,32,32,32,32,118,97,114,32,110,111,110,83,116,97,110,100,97,114,100,84,97,103,32,61,32,105,115,78,111,110,83,116,97,110,100,97,114,100,84,97,103,40,112,114,111,112,115,41,59,92,110,32,32,32,32,118,97,114,32,104,97,115,104,76,105,110,107,32,61,32,108,105,110,107,32,38,38,32,112,114,111,112,115,46,104,114,101,102,32,61,61,61,32,39,35,39,59,92,110,32,32,32,32,118,97,114,32,111,110,32,61,32,123,92,110,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,102,117,110,99,116,105,111,110,32,107,101,121,100,111,119,110,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,104,101,110,32,116,104,101,32,108,105,110,107,32,105,115,32,97,32,96,104,114,101,102,61,92,34,35,92,34,96,32,111,114,32,97,32,110,111,110,45,115,116,97,110,100,97,114,100,32,116,97,103,32,40,104,97,115,32,96,114,111,108,101,61,92,34,98,117,116,116,111,110,92,34,96,41,44,92,110,32,32,32,32,32,32,32,32,47,47,32,119,101,32,97,100,100,32,97,32,107,101,121,100,111,119,110,32,104,97,110,100,108,101,114,115,32,102,111,114,32,67,79,68,69,95,83,80,65,67,69,47,67,79,68,69,95,69,78,84,69,82,92,110,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,46,100,105,115,97,98,108,101,100,32,124,124,32,33,40,110,111,110,83,116,97,110,100,97,114,100,84,97,103,32,124,124,32,104,97,115,104,76,105,110,107,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,59,32,47,47,32,65,100,100,32,67,79,68,69,95,83,80,65,67,69,32,104,97,110,100,108,101,114,32,102,111,114,32,96,104,114,101,102,61,92,34,35,92,34,96,32,97,110,100,32,67,79,68,69,95,69,78,84,69,82,32,104,97,110,100,108,101,114,32,102,111,114,32,110,111,110,45,115,116,97,110,100,97,114,100,32,116,97,103,115,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,67,79,68,69,95,83,80,65,67,69,32,124,124,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,67,79,68,69,95,69,78,84,69,82,32,38,38,32,110,111,110,83,116,97,110,100,97,114,100,84,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,101,118,101,110,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,32,124,124,32,101,118,101,110,116,46,116,97,114,103,101,116,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,46,99,108,105,99,107,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,58,32,98,108,105,110,107,47,98,117,116,116,111,110,32,100,105,115,97,98,108,101,100,32,115,104,111,117,108,100,32,104,97,110,100,108,101,32,116,104,105,115,32,42,47,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,46,100,105,115,97,98,108,101,100,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,69,118,101,110,116,41,40,101,118,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,111,103,103,108,101,32,38,38,32,108,105,115,116,101,110,101,114,115,32,38,38,32,108,105,115,116,101,110,101,114,115,91,39,117,112,100,97,116,101,58,112,114,101,115,115,101,100,39,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,110,100,32,96,46,115,121,110,99,96,32,117,112,100,97,116,101,115,32,116,111,32,97,110,121,32,92,34,112,114,101,115,115,101,100,92,34,32,112,114,111,112,32,40,105,102,32,96,46,115,121,110,99,96,32,108,105,115,116,101,110,101,114,115,41,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,96,99,111,110,99,97,116,40,41,96,32,119,105,108,108,32,110,111,114,109,97,108,105,122,101,32,116,104,101,32,118,97,108,117,101,32,116,111,32,97,110,32,97,114,114,97,121,32,119,105,116,104,111,117,116,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,100,111,117,98,108,101,32,119,114,97,112,112,105,110,103,32,97,110,32,97,114,114,97,121,32,118,97,108,117,101,32,105,110,32,97,110,32,97,114,114,97,121,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,111,110,99,97,116,41,40,108,105,115,116,101,110,101,114,115,91,39,117,112,100,97,116,101,58,112,114,101,115,115,101,100,39,93,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,102,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,102,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,110,40,33,112,114,111,112,115,46,112,114,101,115,115,101,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,105,102,32,40,116,111,103,103,108,101,41,32,123,92,110,32,32,32,32,32,32,111,110,46,102,111,99,117,115,105,110,32,61,32,104,97,110,100,108,101,70,111,99,117,115,59,92,110,32,32,32,32,32,32,111,110,46,102,111,99,117,115,111,117,116,32,61,32,104,97,110,100,108,101,70,111,99,117,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,99,111,109,112,111,110,101,110,116,68,97,116,97,32,61,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,116,110,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,99,111,109,112,117,116,101,67,108,97,115,115,40,112,114,111,112,115,41,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,99,111,109,112,117,116,101,76,105,110,107,80,114,111,112,115,40,112,114,111,112,115,41,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,99,111,109,112,117,116,101,65,116,116,114,115,40,112,114,111,112,115,44,32,100,97,116,97,41,44,92,110,32,32,32,32,32,32,111,110,58,32,111,110,92,110,32,32,32,32,125,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,108,105,110,107,32,63,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,76,105,110,107,32,58,32,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,99,111,109,112,111,110,101,110,116,68,97,116,97,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,117,116,116,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,66,117,116,116,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,117,116,116,111,110,67,108,111,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,66,117,116,116,111,110,67,108,111,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,117,116,116,111,110,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,117,116,116,111,110,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,117,116,116,111,110,45,99,108,111,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,66,117,116,116,111,110,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,66,117,116,116,111,110,58,32,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,66,117,116,116,111,110,44,92,110,32,32,32,32,66,66,116,110,58,32,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,66,117,116,116,111,110,44,92,110,32,32,32,32,66,66,117,116,116,111,110,67,108,111,115,101,58,32,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,66,117,116,116,111,110,67,108,111,115,101,44,92,110,32,32,32,32,66,66,116,110,67,108,111,115,101,58,32,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,66,117,116,116,111,110,67,108,111,115,101,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,108,101,110,100,97,114,47,99,97,108,101,110,100,97,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,108,101,110,100,97,114,47,99,97,108,101,110,100,97,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,108,101,110,100,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,97,108,101,110,100,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,100,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,100,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,99,97,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,99,97,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,105,99,111,110,115,47,105,99,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,97,108,117,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,68,65,84,69,95,83,84,82,73,78,71,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,114,105,97,67,111,110,116,114,111,108,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,77,97,107,101,115,32,99,97,108,101,110,100,97,114,32,116,104,101,32,102,117,108,108,32,119,105,100,116,104,32,111,102,32,105,116,115,32,112,97,114,101,110,116,32,99,111,110,116,97,105,110,101,114,92,110,32,32,98,108,111,99,107,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,100,97,116,101,68,105,115,97,98,108,101,100,70,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,41,44,92,110,32,32,47,47,32,96,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,96,32,111,98,106,101,99,116,92,110,32,32,100,97,116,101,70,111,114,109,97,116,79,112,116,105,111,110,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,44,32,123,92,110,32,32,32,32,121,101,97,114,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,68,65,84,69,95,70,79,82,77,65,84,95,78,85,77,69,82,73,67,44,92,110,32,32,32,32,109,111,110,116,104,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,76,79,78,71,44,92,110,32,32,32,32,100,97,121,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,68,65,84,69,95,70,79,82,77,65,84,95,78,85,77,69,82,73,67,44,92,110,32,32,32,32,119,101,101,107,100,97,121,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,76,79,78,71,92,110,32,32,125,41,44,92,110,32,32,47,47,32,70,117,110,99,116,105,111,110,32,116,111,32,115,101,116,32,97,32,99,108,97,115,115,32,111,102,32,40,99,108,97,115,115,101,115,41,32,111,110,32,116,104,101,32,100,97,116,101,32,99,101,108,108,92,110,32,32,47,47,32,105,102,32,112,97,115,115,101,100,32,97,32,115,116,114,105,110,103,32,111,114,32,97,110,32,97,114,114,97,121,92,110,32,32,47,47,32,84,79,68,79,58,92,110,32,32,47,47,32,32,32,73,102,32,116,104,101,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,115,32,97,110,32,111,98,106,101,99,116,44,32,108,111,111,107,32,102,111,114,32,99,108,97,115,115,32,112,114,111,112,32,102,111,114,32,99,108,97,115,115,101,115,44,92,110,32,32,47,47,32,32,32,97,110,100,32,111,116,104,101,114,32,112,114,111,112,115,32,102,111,114,32,104,97,110,100,108,105,110,103,32,101,118,101,110,116,115,47,100,101,116,97,105,108,115,47,100,101,115,99,114,105,112,116,105,111,110,115,92,110,32,32,100,97,116,101,73,110,102,111,70,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,41,44,92,110,32,32,47,47,32,39,108,116,114,39,44,32,39,114,116,108,39,44,32,111,114,32,96,110,117,108,108,96,32,40,102,111,114,32,97,117,116,111,32,100,101,116,101,99,116,41,92,110,32,32,100,105,114,101,99,116,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,87,104,101,110,32,96,116,114,117,101,96,44,32,114,101,110,100,101,114,115,32,97,32,99,111,109,109,101,110,116,32,110,111,100,101,44,32,98,117,116,32,107,101,101,112,115,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105,110,115,116,97,110,99,101,32,97,99,116,105,118,101,92,110,32,32,47,47,32,77,97,105,110,108,121,32,102,111,114,32,60,98,45,102,111,114,109,45,100,97,116,101,62,44,32,115,111,32,116,104,97,116,32,119,101,32,99,97,110,32,103,101,116,32,116,104,101,32,99,111,109,112,111,110,101,110,116,39,115,32,118,97,108,117,101,32,97,110,100,32,108,111,99,97,108,101,92,110,32,32,47,47,32,66,117,116,32,119,101,32,109,105,103,104,116,32,106,117,115,116,32,117,115,101,32,115,101,112,97,114,97,116,101,32,100,97,116,101,32,102,111,114,109,97,116,116,101,114,115,44,32,117,115,105,110,103,32,116,104,101,32,114,101,115,111,108,118,101,100,32,108,111,99,97,108,101,92,110,32,32,47,47,32,40,97,100,106,117,115,116,101,100,32,102,111,114,32,116,104,101,32,103,114,101,103,111,114,105,97,110,32,99,97,108,101,110,100,97,114,41,92,110,32,32,104,105,100,100,101,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,87,104,101,110,32,96,116,114,117,101,96,32,109,97,107,101,115,32,116,104,101,32,115,101,108,101,99,116,101,100,32,100,97,116,101,32,104,101,97,100,101,114,32,96,115,114,45,111,110,108,121,96,92,110,32,32,104,105,100,101,72,101,97,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,84,104,105,115,32,115,112,101,99,105,102,105,101,115,32,116,104,101,32,99,97,108,101,110,100,97,114,32,121,101,97,114,47,109,111,110,116,104,47,100,97,121,32,116,104,97,116,32,119,105,108,108,32,98,101,32,115,104,111,119,110,32,119,104,101,110,92,110,32,32,47,47,32,102,105,114,115,116,32,111,112,101,110,105,110,103,32,116,104,101,32,100,97,116,101,112,105,99,107,101,114,32,105,102,32,110,111,32,118,45,109,111,100,101,108,32,118,97,108,117,101,32,105,115,32,112,114,111,118,105,100,101,100,92,110,32,32,47,47,32,68,101,102,97,117,108,116,32,105,115,32,116,104,101,32,99,117,114,114,101,110,116,32,100,97,116,101,32,40,111,114,32,96,109,105,110,96,47,96,109,97,120,96,41,92,110,32,32,105,110,105,116,105,97,108,68,97,116,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,68,65,84,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,76,97,98,101,108,115,32,102,111,114,32,98,117,116,116,111,110,115,32,97,110,100,32,107,101,121,98,111,97,114,100,32,115,104,111,114,116,99,117,116,115,92,110,32,32,108,97,98,101,108,67,97,108,101,110,100,97,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,67,97,108,101,110,100,97,114,39,41,44,92,110,32,32,108,97,98,101,108,67,117,114,114,101,110,116,77,111,110,116,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,67,117,114,114,101,110,116,32,109,111,110,116,104,39,41,44,92,110,32,32,108,97,98,101,108,72,101,108,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,85,115,101,32,99,117,114,115,111,114,32,107,101,121,115,32,116,111,32,110,97,118,105,103,97,116,101,32,99,97,108,101,110,100,97,114,32,100,97,116,101,115,39,41,44,92,110,32,32,108,97,98,101,108,78,97,118,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,67,97,108,101,110,100,97,114,32,110,97,118,105,103,97,116,105,111,110,39,41,44,92,110,32,32,108,97,98,101,108,78,101,120,116,68,101,99,97,100,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,78,101,120,116,32,100,101,99,97,100,101,39,41,44,92,110,32,32,108,97,98,101,108,78,101,120,116,77,111,110,116,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,78,101,120,116,32,109,111,110,116,104,39,41,44,92,110,32,32,108,97,98,101,108,78,101,120,116,89,101,97,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,78,101,120,116,32,121,101,97,114,39,41,44,92,110,32,32,108,97,98,101,108,78,111,68,97,116,101,83,101,108,101,99,116,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,78,111,32,100,97,116,101,32,115,101,108,101,99,116,101,100,39,41,44,92,110,32,32,108,97,98,101,108,80,114,101,118,68,101,99,97,100,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,80,114,101,118,105,111,117,115,32,100,101,99,97,100,101,39,41,44,92,110,32,32,108,97,98,101,108,80,114,101,118,77,111,110,116,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,80,114,101,118,105,111,117,115,32,109,111,110,116,104,39,41,44,92,110,32,32,108,97,98,101,108,80,114,101,118,89,101,97,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,80,114,101,118,105,111,117,115,32,121,101,97,114,39,41,44,92,110,32,32,108,97,98,101,108,83,101,108,101,99,116,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,83,101,108,101,99,116,101,100,32,100,97,116,101,39,41,44,92,110,32,32,108,97,98,101,108,84,111,100,97,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,84,111,100,97,121,39,41,44,92,110,32,32,47,47,32,76,111,99,97,108,101,40,115,41,32,116,111,32,117,115,101,92,110,32,32,47,47,32,68,101,102,97,117,108,116,32,105,115,32,116,111,32,117,115,101,32,112,97,103,101,47,98,114,111,119,115,101,114,32,100,101,102,97,117,108,116,32,115,101,116,116,105,110,103,92,110,32,32,108,111,99,97,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,41,44,92,110,32,32,109,97,120,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,68,65,84,69,95,83,84,82,73,78,71,41,44,92,110,32,32,109,105,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,68,65,84,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,86,97,114,105,97,110,116,32,99,111,108,111,114,32,116,111,32,117,115,101,32,102,111,114,32,116,104,101,32,110,97,118,105,103,97,116,105,111,110,32,98,117,116,116,111,110,115,92,110,32,32,110,97,118,66,117,116,116,111,110,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,101,99,111,110,100,97,114,121,39,41,44,92,110,32,32,47,47,32,68,105,115,97,98,108,101,32,104,105,103,104,108,105,103,104,116,105,110,103,32,116,111,100,97,121,39,115,32,100,97,116,101,92,110,32,32,110,111,72,105,103,104,108,105,103,104,116,84,111,100,97,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,75,101,121,78,97,118,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,101,97,100,111,110,108,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,111,108,101,68,101,115,99,114,105,112,116,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,86,97,114,105,97,110,116,32,99,111,108,111,114,32,116,111,32,117,115,101,32,102,111,114,32,116,104,101,32,115,101,108,101,99,116,101,100,32,100,97,116,101,92,110,32,32,115,101,108,101,99,116,101,100,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,112,114,105,109,97,114,121,39,41,44,92,110,32,32,47,47,32,87,104,101,110,32,96,116,114,117,101,96,32,101,110,97,98,108,101,115,32,116,104,101,32,100,101,99,97,100,101,32,110,97,118,105,103,97,116,105,111,110,32,98,117,116,116,111,110,115,92,110,32,32,115,104,111,119,68,101,99,97,100,101,78,97,118,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,68,97,121,32,111,102,32,119,101,101,107,32,116,111,32,115,116,97,114,116,32,99,97,108,101,110,100,97,114,32,111,110,92,110,32,32,47,47,32,96,48,96,32,40,83,117,110,100,97,121,41,44,32,96,49,96,32,40,77,111,110,100,97,121,41,44,32,46,46,46,32,96,54,96,32,40,83,97,116,117,114,100,97,121,41,92,110,32,32,115,116,97,114,116,87,101,101,107,100,97,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,48,41,44,92,110,32,32,47,47,32,86,97,114,105,97,110,116,32,99,111,108,111,114,32,116,111,32,117,115,101,32,102,111,114,32,116,111,100,97,121,39,115,32,100,97,116,101,32,40,100,101,102,97,117,108,116,115,32,116,111,32,96,115,101,108,101,99,116,101,100,86,97,114,105,97,110,116,96,41,92,110,32,32,116,111,100,97,121,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,65,108,119,97,121,115,32,114,101,116,117,114,110,32,116,104,101,32,96,118,45,109,111,100,101,108,96,32,118,97,108,117,101,32,97,115,32,97,32,100,97,116,101,32,111,98,106,101,99,116,92,110,32,32,118,97,108,117,101,65,115,68,97,116,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,70,111,114,109,97,116,32,111,102,32,116,104,101,32,119,101,101,107,100,97,121,32,110,97,109,101,115,32,97,116,32,116,104,101,32,116,111,112,32,111,102,32,116,104,101,32,99,97,108,101,110,100,97,114,92,110,32,32,47,47,32,96,115,104,111,114,116,96,32,105,115,32,116,121,112,105,99,97,108,108,121,32,97,32,51,32,108,101,116,116,101,114,32,97,98,98,114,101,118,105,97,116,105,111,110,44,92,110,32,32,47,47,32,96,110,97,114,114,111,119,96,32,105,115,32,116,121,112,105,99,97,108,108,121,32,97,32,115,105,110,103,108,101,32,108,101,116,116,101,114,92,110,32,32,47,47,32,96,108,111,110,103,96,32,105,115,32,116,104,101,32,102,117,108,108,32,119,101,101,107,32,100,97,121,32,110,97,109,101,92,110,32,32,47,47,32,65,108,116,104,111,117,103,104,32,115,111,109,101,32,108,111,99,97,108,101,115,32,109,97,121,32,111,118,101,114,114,105,100,101,32,116,104,105,115,32,40,105,46,101,32,96,97,114,96,44,32,101,116,99,46,41,92,110,32,32,119,101,101,107,100,97,121,72,101,97,100,101,114,70,111,114,109,97,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,83,72,79,82,84,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,91,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,76,79,78,71,44,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,83,72,79,82,84,44,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,78,65,82,82,79,87,93,44,32,118,97,108,117,101,41,59,92,110,32,32,125,41,44,92,110,32,32,47,47,32,72,97,115,32,110,111,32,101,102,102,101,99,116,32,105,102,32,112,114,111,112,32,96,98,108,111,99,107,96,32,105,115,32,115,101,116,92,110,32,32,119,105,100,116,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,50,55,48,112,120,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,78,65,77,69,95,67,65,76,69,78,68,65,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,97,108,101,110,100,97,114,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,78,65,77,69,95,67,65,76,69,78,68,65,82,44,92,110,32,32,47,47,32,77,105,120,105,110,32,111,114,100,101,114,32,105,115,32,105,109,112,111,114,116,97,110,116,33,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,101,108,101,99,116,101,100,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,41,32,124,124,32,39,39,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,47,47,32,83,101,108,101,99,116,101,100,32,100,97,116,101,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,89,77,68,58,32,115,101,108,101,99,116,101,100,44,92,110,32,32,32,32,32,32,47,47,32,68,97,116,101,32,105,110,32,99,97,108,101,110,100,97,114,32,103,114,105,100,32,116,104,97,116,32,104,97,115,32,96,116,97,98,105,110,100,101,120,96,32,111,102,32,96,48,96,92,110,32,32,32,32,32,32,97,99,116,105,118,101,89,77,68,58,32,115,101,108,101,99,116,101,100,32,124,124,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,111,110,115,116,114,97,105,110,68,97,116,101,41,40,116,104,105,115,46,105,110,105,116,105,97,108,68,97,116,101,32,124,124,32,116,104,105,115,46,103,101,116,84,111,100,97,121,40,41,41,44,32,116,104,105,115,46,109,105,110,44,32,116,104,105,115,46,109,97,120,41,44,92,110,32,32,32,32,32,32,47,47,32,87,105,108,108,32,98,101,32,116,114,117,101,32,105,102,32,116,104,101,32,99,97,108,101,110,100,97,114,32,103,114,105,100,32,104,97,115,47,99,111,110,116,97,105,110,115,32,102,111,99,117,115,92,110,32,32,32,32,32,32,103,114,105,100,72,97,115,70,111,99,117,115,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,47,47,32,70,108,97,103,32,116,111,32,101,110,97,98,108,101,32,116,104,101,32,96,97,114,105,97,45,108,105,118,101,96,32,114,101,103,105,111,110,40,115,41,32,97,102,116,101,114,32,109,111,117,110,116,92,110,32,32,32,32,32,32,47,47,32,116,111,32,112,114,101,118,101,110,116,32,115,99,114,101,101,110,32,114,101,97,100,101,114,32,92,34,111,117,116,98,117,114,115,116,115,92,34,32,119,104,101,110,32,109,111,117,110,116,105,110,103,92,110,32,32,32,32,32,32,105,115,76,105,118,101,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,118,97,108,117,101,73,100,58,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,119,105,100,103,101,116,73,100,58,32,102,117,110,99,116,105,111,110,32,119,105,100,103,101,116,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,99,97,108,101,110,100,97,114,45,119,114,97,112,112,101,114,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,110,97,118,73,100,58,32,102,117,110,99,116,105,111,110,32,110,97,118,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,99,97,108,101,110,100,97,114,45,110,97,118,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,114,105,100,73,100,58,32,102,117,110,99,116,105,111,110,32,103,114,105,100,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,99,97,108,101,110,100,97,114,45,103,114,105,100,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,114,105,100,67,97,112,116,105,111,110,73,100,58,32,102,117,110,99,116,105,111,110,32,103,114,105,100,67,97,112,116,105,111,110,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,99,97,108,101,110,100,97,114,45,103,114,105,100,45,99,97,112,116,105,111,110,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,114,105,100,72,101,108,112,73,100,58,32,102,117,110,99,116,105,111,110,32,103,114,105,100,72,101,108,112,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,99,97,108,101,110,100,97,114,45,103,114,105,100,45,104,101,108,112,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,99,116,105,118,101,73,100,58,32,102,117,110,99,116,105,111,110,32,97,99,116,105,118,101,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,32,63,32,116,104,105,115,46,115,97,102,101,73,100,40,92,34,95,99,101,108,108,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,97,99,116,105,118,101,89,77,68,44,32,92,34,95,92,34,41,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,84,79,68,79,58,32,85,115,101,32,99,111,109,112,117,116,101,100,32,112,114,111,112,115,32,116,111,32,99,111,110,118,101,114,116,32,96,89,89,89,89,45,77,77,45,68,68,96,32,116,111,32,96,68,97,116,101,96,32,111,98,106,101,99,116,92,110,32,32,32,32,115,101,108,101,99,116,101,100,68,97,116,101,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,101,100,68,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,101,108,101,99,116,101,100,32,97,115,32,97,32,96,68,97,116,101,96,32,111,98,106,101,99,116,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,99,116,105,118,101,68,97,116,101,58,32,102,117,110,99,116,105,111,110,32,97,99,116,105,118,101,68,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,65,99,116,105,118,101,32,97,115,32,97,32,96,68,97,116,101,96,32,111,98,106,101,99,116,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,116,104,105,115,46,97,99,116,105,118,101,89,77,68,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,77,105,110,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,77,105,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,116,104,105,115,46,109,105,110,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,77,97,120,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,77,97,120,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,116,104,105,115,46,109,97,120,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,87,101,101,107,83,116,97,114,116,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,87,101,101,107,83,116,97,114,116,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,96,115,116,97,114,116,87,101,101,107,100,97,121,96,32,105,115,32,97,32,112,114,111,112,32,40,99,111,110,115,116,114,97,105,110,101,100,32,116,111,32,96,48,96,32,116,104,114,111,117,103,104,32,96,54,96,41,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,115,116,97,114,116,87,101,101,107,100,97,121,44,32,48,41,44,32,48,41,32,37,32,55,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,76,111,99,97,108,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,76,111,99,97,108,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,115,111,108,118,101,100,32,108,111,99,97,108,101,32,117,115,101,100,32,98,121,32,116,104,101,32,99,97,108,101,110,100,97,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,114,101,115,111,108,118,101,76,111,99,97,108,101,41,40,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,99,111,110,99,97,116,41,40,116,104,105,115,46,108,111,99,97,108,101,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,105,100,101,110,116,105,116,121,41,44,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,71,82,69,71,79,82,89,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,68,97,116,101,68,105,115,97,98,108,101,100,70,110,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,68,97,116,101,68,105,115,97,98,108,101,100,70,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,101,68,105,115,97,98,108,101,100,70,110,32,61,32,116,104,105,115,46,100,97,116,101,68,105,115,97,98,108,101,100,70,110,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,97,115,80,114,111,112,70,117,110,99,116,105,111,110,41,40,100,97,116,101,68,105,115,97,98,108,101,100,70,110,41,32,63,32,100,97,116,101,68,105,115,97,98,108,101,100,70,110,32,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,84,79,68,79,58,32,67,104,97,110,103,101,32,96,100,97,116,101,73,110,102,111,70,110,96,32,116,111,32,104,97,110,100,108,101,32,101,118,101,110,116,115,32,97,110,100,32,110,111,116,101,115,32,97,115,32,119,101,108,108,32,97,115,32,99,108,97,115,115,101,115,92,110,32,32,32,32,99,111,109,112,117,116,101,100,68,97,116,101,73,110,102,111,70,110,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,68,97,116,101,73,110,102,111,70,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,101,73,110,102,111,70,110,32,61,32,116,104,105,115,46,100,97,116,101,73,110,102,111,70,110,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,97,115,80,114,111,112,70,117,110,99,116,105,111,110,41,40,100,97,116,101,73,110,102,111,70,110,41,32,63,32,100,97,116,101,73,110,102,111,70,110,32,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,97,108,101,110,100,97,114,76,111,99,97,108,101,58,32,102,117,110,99,116,105,111,110,32,99,97,108,101,110,100,97,114,76,111,99,97,108,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,104,105,115,32,108,111,99,97,108,101,32,101,110,102,111,114,99,101,115,32,116,104,101,32,103,114,101,103,111,114,105,97,110,32,99,97,108,101,110,100,97,114,32,40,102,111,114,32,117,115,101,32,105,110,32,102,111,114,109,97,116,116,101,114,32,102,117,110,99,116,105,111,110,115,41,92,110,32,32,32,32,32,32,47,47,32,78,101,101,100,101,100,32,98,101,99,97,117,115,101,32,73,69,32,49,49,32,114,101,115,111,108,118,101,115,32,96,97,114,45,73,82,96,32,97,115,32,105,115,108,97,109,105,99,45,99,105,118,105,108,32,99,97,108,101,110,100,97,114,92,110,32,32,32,32,32,32,47,47,32,97,110,100,32,73,69,32,49,49,32,40,97,110,100,32,115,111,109,101,32,111,116,104,101,114,32,98,114,111,119,115,101,114,115,41,32,100,111,32,110,111,116,32,115,117,112,112,111,114,116,32,116,104,101,32,96,99,97,108,101,110,100,97,114,96,32,111,112,116,105,111,110,92,110,32,32,32,32,32,32,47,47,32,65,110,100,32,119,101,32,99,117,114,114,101,110,116,108,121,32,111,110,108,121,32,115,117,112,112,111,114,116,32,116,104,101,32,103,114,101,103,111,114,105,97,110,32,99,97,108,101,110,100,97,114,92,110,32,32,32,32,32,32,118,97,114,32,102,109,116,32,61,32,110,101,119,32,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,32,123,92,110,32,32,32,32,32,32,32,32,99,97,108,101,110,100,97,114,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,71,82,69,71,79,82,89,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,118,97,114,32,99,97,108,101,110,100,97,114,32,61,32,102,109,116,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,40,41,46,99,97,108,101,110,100,97,114,59,92,110,32,32,32,32,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,102,109,116,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,40,41,46,108,111,99,97,108,101,59,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,58,32,109,97,105,110,108,121,32,102,111,114,32,73,69,32,49,49,32,97,110,100,32,97,32,102,101,119,32,111,116,104,101,114,32,98,114,111,119,115,101,114,115,44,32,104,97,114,100,32,116,111,32,116,101,115,116,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,99,97,108,101,110,100,97,114,32,33,61,61,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,71,82,69,71,79,82,89,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,69,110,115,117,114,101,32,116,104,101,32,108,111,99,97,108,101,32,114,101,113,117,101,115,116,115,32,116,104,101,32,103,114,101,103,111,114,105,97,110,32,99,97,108,101,110,100,97,114,92,110,32,32,32,32,32,32,32,32,47,47,32,77,97,105,110,108,121,32,102,111,114,32,73,69,32,49,49,44,32,97,110,100,32,99,117,114,114,101,110,116,108,121,32,119,101,32,99,97,110,39,116,32,104,97,110,100,108,101,32,110,111,110,45,103,114,101,103,111,114,105,97,110,32,99,97,108,101,110,100,97,114,115,92,110,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,83,104,111,117,108,100,32,119,101,32,97,108,119,97,121,115,32,114,101,116,117,114,110,32,116,104,105,115,32,118,97,108,117,101,63,92,110,32,32,32,32,32,32,32,32,108,111,99,97,108,101,32,61,32,108,111,99,97,108,101,46,114,101,112,108,97,99,101,40,47,45,117,45,46,43,36,47,105,44,32,39,39,41,46,99,111,110,99,97,116,40,39,45,117,45,99,97,45,103,114,101,103,111,114,121,39,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,97,108,101,110,100,97,114,89,101,97,114,58,32,102,117,110,99,116,105,111,110,32,99,97,108,101,110,100,97,114,89,101,97,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,46,103,101,116,70,117,108,108,89,101,97,114,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,97,108,101,110,100,97,114,77,111,110,116,104,58,32,102,117,110,99,116,105,111,110,32,99,97,108,101,110,100,97,114,77,111,110,116,104,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,46,103,101,116,77,111,110,116,104,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,97,108,101,110,100,97,114,70,105,114,115,116,68,97,121,58,32,102,117,110,99,116,105,111,110,32,99,97,108,101,110,100,97,114,70,105,114,115,116,68,97,121,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,115,101,116,32,116,104,101,32,116,105,109,101,32,102,111,114,32,116,104,105,115,32,100,97,116,101,32,116,111,32,49,50,112,109,32,116,111,32,119,111,114,107,32,97,114,111,117,110,100,92,110,32,32,32,32,32,32,47,47,32,100,97,116,101,32,102,111,114,109,97,116,116,105,110,103,32,105,115,115,117,101,115,32,105,110,32,70,105,114,101,102,111,120,32,97,110,100,32,83,97,102,97,114,105,92,110,32,32,32,32,32,32,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,53,56,49,56,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,114,101,97,116,101,68,97,116,101,41,40,116,104,105,115,46,99,97,108,101,110,100,97,114,89,101,97,114,44,32,116,104,105,115,46,99,97,108,101,110,100,97,114,77,111,110,116,104,44,32,49,44,32,49,50,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,97,108,101,110,100,97,114,68,97,121,115,73,110,77,111,110,116,104,58,32,102,117,110,99,116,105,111,110,32,99,97,108,101,110,100,97,114,68,97,121,115,73,110,77,111,110,116,104,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,99,114,101,97,116,101,32,97,32,110,101,119,32,100,97,116,101,32,97,115,32,116,111,32,110,111,116,32,109,117,116,97,116,101,32,116,104,101,32,111,114,105,103,105,110,97,108,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,114,101,97,116,101,68,97,116,101,41,40,116,104,105,115,46,99,97,108,101,110,100,97,114,70,105,114,115,116,68,97,121,41,59,92,110,32,32,32,32,32,32,100,97,116,101,46,115,101,116,77,111,110,116,104,40,100,97,116,101,46,103,101,116,77,111,110,116,104,40,41,32,43,32,49,44,32,48,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,68,97,116,101,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,98,116,110,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,101,108,101,99,116,101,100,86,97,114,105,97,110,116,32,124,124,32,39,112,114,105,109,97,114,121,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,84,111,100,97,121,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,84,111,100,97,121,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,98,116,110,45,111,117,116,108,105,110,101,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,116,111,100,97,121,86,97,114,105,97,110,116,32,124,124,32,116,104,105,115,46,115,101,108,101,99,116,101,100,86,97,114,105,97,110,116,32,124,124,32,39,112,114,105,109,97,114,121,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,78,97,118,66,117,116,116,111,110,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,78,97,118,66,117,116,116,111,110,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,98,116,110,45,111,117,116,108,105,110,101,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,110,97,118,66,117,116,116,111,110,86,97,114,105,97,110,116,32,124,124,32,39,112,114,105,109,97,114,121,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,82,84,76,58,32,102,117,110,99,116,105,111,110,32,105,115,82,84,76,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,108,97,110,103,117,97,103,101,32,114,101,113,117,101,115,116,101,100,32,105,115,32,82,84,76,92,110,32,32,32,32,32,32,118,97,114,32,100,105,114,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,116,111,83,116,114,105,110,103,41,40,116,104,105,115,46,100,105,114,101,99,116,105,111,110,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,100,105,114,32,61,61,61,32,39,114,116,108,39,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,105,114,32,61,61,61,32,39,108,116,114,39,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,108,111,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,105,115,76,111,99,97,108,101,82,84,76,41,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,110,116,101,120,116,58,32,102,117,110,99,116,105,111,110,32,99,111,110,116,101,120,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,101,100,89,77,68,32,61,32,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,44,92,110,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,89,77,68,32,61,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,59,92,110,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,101,100,68,97,116,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,115,101,108,101,99,116,101,100,89,77,68,41,59,92,110,32,32,32,32,32,32,118,97,114,32,97,99,116,105,118,101,68,97,116,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,97,99,116,105,118,101,89,77,68,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,111,102,32,116,104,101,32,96,118,45,109,111,100,101,108,96,92,110,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,89,77,68,58,32,115,101,108,101,99,116,101,100,89,77,68,44,92,110,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,68,97,116,101,58,32,115,101,108,101,99,116,101,100,68,97,116,101,44,92,110,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,70,111,114,109,97,116,116,101,100,58,32,115,101,108,101,99,116,101,100,68,97,116,101,32,63,32,116,104,105,115,46,102,111,114,109,97,116,68,97,116,101,83,116,114,105,110,103,40,115,101,108,101,99,116,101,100,68,97,116,101,41,32,58,32,116,104,105,115,46,108,97,98,101,108,78,111,68,97,116,101,83,101,108,101,99,116,101,100,44,92,110,32,32,32,32,32,32,32,32,47,47,32,87,104,105,99,104,32,100,97,116,101,32,99,101,108,108,32,105,115,32,99,111,110,115,105,100,101,114,101,100,32,97,99,116,105,118,101,32,100,117,101,32,116,111,32,110,97,118,105,103,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,89,77,68,58,32,97,99,116,105,118,101,89,77,68,44,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,68,97,116,101,58,32,97,99,116,105,118,101,68,97,116,101,44,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,70,111,114,109,97,116,116,101,100,58,32,97,99,116,105,118,101,68,97,116,101,32,63,32,116,104,105,115,46,102,111,114,109,97,116,68,97,116,101,83,116,114,105,110,103,40,97,99,116,105,118,101,68,97,116,101,41,32,58,32,39,39,44,92,110,32,32,32,32,32,32,32,32,47,47,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,100,97,116,101,32,105,115,32,100,105,115,97,98,108,101,100,32,40,119,104,101,110,32,117,115,105,110,103,32,107,101,121,98,111,97,114,100,32,110,97,118,105,103,97,116,105,111,110,41,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,116,104,105,115,46,100,97,116,101,68,105,115,97,98,108,101,100,40,97,99,116,105,118,101,68,97,116,101,41,44,92,110,32,32,32,32,32,32,32,32,47,47,32,76,111,99,97,108,101,115,32,117,115,101,100,32,105,110,32,102,111,114,109,97,116,116,105,110,103,32,100,97,116,101,115,92,110,32,32,32,32,32,32,32,32,108,111,99,97,108,101,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,92,110,32,32,32,32,32,32,32,32,99,97,108,101,110,100,97,114,76,111,99,97,108,101,58,32,116,104,105,115,46,99,97,108,101,110,100,97,114,76,111,99,97,108,101,44,92,110,32,32,32,32,32,32,32,32,114,116,108,58,32,116,104,105,115,46,105,115,82,84,76,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,67,111,109,112,117,116,101,100,32,112,114,111,112,115,32,116,104,97,116,32,114,101,116,117,114,110,32,97,32,102,117,110,99,116,105,111,110,32,114,101,102,101,114,101,110,99,101,92,110,32,32,32,32,100,97,116,101,79,117,116,79,102,82,97,110,103,101,58,32,102,117,110,99,116,105,111,110,32,100,97,116,101,79,117,116,79,102,82,97,110,103,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,104,101,99,107,32,119,104,101,116,104,101,114,32,97,32,100,97,116,101,32,105,115,32,119,105,116,104,105,110,32,116,104,101,32,109,105,110,47,109,97,120,32,114,97,110,103,101,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,97,32,110,101,119,32,102,117,110,99,116,105,111,110,32,114,101,102,32,105,102,32,116,104,101,32,112,111,112,115,32,99,104,97,110,103,101,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,111,32,116,104,105,115,32,97,115,32,119,101,32,110,101,101,100,32,116,111,32,116,114,105,103,103,101,114,32,116,104,101,32,99,97,108,101,110,100,97,114,32,99,111,109,112,117,116,101,100,32,112,114,111,112,92,110,32,32,32,32,32,32,47,47,32,116,111,32,117,112,100,97,116,101,32,119,104,101,110,32,116,104,101,115,101,32,112,114,111,112,115,32,117,112,100,97,116,101,92,110,32,32,32,32,32,32,118,97,114,32,109,105,110,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,44,92,110,32,32,32,32,32,32,32,32,32,32,109,97,120,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,98,111,116,104,32,96,89,89,89,89,45,77,77,45,68,68,96,32,97,110,100,32,96,68,97,116,101,96,32,111,98,106,101,99,116,115,92,110,32,32,32,32,32,32,32,32,100,97,116,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,100,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,105,110,32,38,38,32,100,97,116,101,32,60,32,109,105,110,32,124,124,32,109,97,120,32,38,38,32,100,97,116,101,32,62,32,109,97,120,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,97,116,101,68,105,115,97,98,108,101,100,58,32,102,117,110,99,116,105,111,110,32,100,97,116,101,68,105,115,97,98,108,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,97,32,102,117,110,99,116,105,111,110,32,102,111,114,32,118,97,108,105,100,97,116,105,110,103,32,105,102,32,97,32,100,97,116,101,32,105,115,32,119,105,116,104,105,110,32,114,97,110,103,101,92,110,32,32,32,32,32,32,47,47,32,87,101,32,103,114,97,98,32,116,104,105,115,32,118,97,114,105,97,98,108,101,115,32,102,105,114,115,116,32,116,111,32,101,110,115,117,114,101,32,97,32,110,101,119,32,102,117,110,99,116,105,111,110,32,114,101,102,92,110,32,32,32,32,32,32,47,47,32,105,115,32,103,101,110,101,114,97,116,101,100,32,119,104,101,110,32,116,104,101,32,112,114,111,112,115,32,118,97,108,117,101,32,99,104,97,110,103,101,115,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,111,32,116,104,105,115,32,97,115,32,119,101,32,110,101,101,100,32,116,111,32,116,114,105,103,103,101,114,32,116,104,101,32,99,97,108,101,110,100,97,114,32,99,111,109,112,117,116,101,100,32,112,114,111,112,92,110,32,32,32,32,32,32,47,47,32,116,111,32,117,112,100,97,116,101,32,119,104,101,110,32,116,104,101,115,101,32,112,114,111,112,115,32,117,112,100,97,116,101,92,110,32,32,32,32,32,32,118,97,114,32,114,97,110,103,101,70,110,32,61,32,116,104,105,115,46,100,97,116,101,79,117,116,79,102,82,97,110,103,101,59,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,102,117,110,99,116,105,111,110,32,114,101,102,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,98,111,116,104,32,96,89,89,89,89,45,77,77,45,68,68,96,32,97,110,100,32,96,68,97,116,101,96,32,111,98,106,101,99,116,115,92,110,32,32,32,32,32,32,32,32,100,97,116,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,100,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,121,109,100,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,100,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,40,114,97,110,103,101,70,110,40,100,97,116,101,41,32,124,124,32,95,116,104,105,115,46,99,111,109,112,117,116,101,100,68,97,116,101,68,105,115,97,98,108,101,100,70,110,40,121,109,100,44,32,100,97,116,101,41,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,67,111,109,112,117,116,101,100,32,112,114,111,112,115,32,116,104,97,116,32,114,101,116,117,114,110,32,100,97,116,101,32,102,111,114,109,97,116,116,101,114,32,102,117,110,99,116,105,111,110,115,92,110,32,32,32,32,102,111,114,109,97,116,68,97,116,101,83,116,114,105,110,103,58,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,68,97,116,101,83,116,114,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,97,32,100,97,116,101,32,102,111,114,109,97,116,116,101,114,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,114,101,97,116,101,68,97,116,101,70,111,114,109,97,116,116,101,114,41,40,116,104,105,115,46,99,97,108,101,110,100,97,114,76,111,99,97,108,101,44,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,47,47,32,69,110,115,117,114,101,32,119,101,32,104,97,118,101,32,121,101,97,114,44,32,109,111,110,116,104,44,32,100,97,121,32,115,104,111,119,110,32,102,111,114,32,115,99,114,101,101,110,32,114,101,97,100,101,114,115,47,65,82,73,65,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,117,115,101,114,115,32,114,101,97,108,108,121,32,119,97,110,116,32,116,111,32,108,101,97,118,101,32,111,110,101,32,111,102,32,116,104,101,115,101,32,111,117,116,44,32,116,104,101,121,32,99,97,110,92,110,32,32,32,32,32,32,32,32,47,47,32,112,97,115,115,32,96,117,110,100,101,102,105,110,101,100,96,32,102,111,114,32,116,104,101,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,121,101,97,114,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,68,65,84,69,95,70,79,82,77,65,84,95,78,85,77,69,82,73,67,44,92,110,32,32,32,32,32,32,32,32,109,111,110,116,104,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,68,65,84,69,95,70,79,82,77,65,84,95,50,95,68,73,71,73,84,44,92,110,32,32,32,32,32,32,32,32,100,97,121,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,68,65,84,69,95,70,79,82,77,65,84,95,50,95,68,73,71,73,84,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,100,97,116,101,70,111,114,109,97,116,79,112,116,105,111,110,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,69,110,115,117,114,101,32,104,111,117,114,115,47,109,105,110,117,116,101,115,47,115,101,99,111,110,100,115,32,97,114,101,32,110,111,116,32,115,104,111,119,110,92,110,32,32,32,32,32,32,32,32,47,47,32,65,115,32,119,101,32,100,111,32,110,111,116,32,115,117,112,112,111,114,116,32,116,104,101,32,116,105,109,101,32,112,111,114,116,105,111,110,32,40,121,101,116,41,92,110,32,32,32,32,32,32,32,32,104,111,117,114,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,109,105,110,117,116,101,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,115,101,99,111,110,100,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,47,47,32,69,110,115,117,114,101,32,99,97,108,101,110,100,97,114,32,105,115,32,103,114,101,103,111,114,105,97,110,92,110,32,32,32,32,32,32,32,32,99,97,108,101,110,100,97,114,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,71,82,69,71,79,82,89,92,110,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,114,109,97,116,89,101,97,114,77,111,110,116,104,58,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,89,101,97,114,77,111,110,116,104,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,97,32,100,97,116,101,32,102,111,114,109,97,116,116,101,114,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,114,101,97,116,101,68,97,116,101,70,111,114,109,97,116,116,101,114,41,40,116,104,105,115,46,99,97,108,101,110,100,97,114,76,111,99,97,108,101,44,32,123,92,110,32,32,32,32,32,32,32,32,121,101,97,114,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,68,65,84,69,95,70,79,82,77,65,84,95,78,85,77,69,82,73,67,44,92,110,32,32,32,32,32,32,32,32,109,111,110,116,104,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,76,79,78,71,44,92,110,32,32,32,32,32,32,32,32,99,97,108,101,110,100,97,114,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,71,82,69,71,79,82,89,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,114,109,97,116,87,101,101,107,100,97,121,78,97,109,101,58,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,87,101,101,107,100,97,121,78,97,109,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,76,111,110,103,32,119,101,101,107,100,97,121,32,110,97,109,101,32,102,111,114,32,119,101,101,107,100,97,121,32,104,101,97,100,101,114,32,97,114,105,97,45,108,97,98,101,108,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,114,101,97,116,101,68,97,116,101,70,111,114,109,97,116,116,101,114,41,40,116,104,105,115,46,99,97,108,101,110,100,97,114,76,111,99,97,108,101,44,32,123,92,110,32,32,32,32,32,32,32,32,119,101,101,107,100,97,121,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,76,79,78,71,44,92,110,32,32,32,32,32,32,32,32,99,97,108,101,110,100,97,114,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,71,82,69,71,79,82,89,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,114,109,97,116,87,101,101,107,100,97,121,78,97,109,101,83,104,111,114,116,58,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,87,101,101,107,100,97,121,78,97,109,101,83,104,111,114,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,101,107,100,97,121,32,104,101,97,100,101,114,32,99,101,108,108,32,102,111,114,109,97,116,92,110,32,32,32,32,32,32,47,47,32,100,101,102,97,117,108,116,115,32,116,111,32,39,115,104,111,114,116,39,32,51,32,108,101,116,116,101,114,32,100,97,121,115,44,32,119,104,101,114,101,32,112,111,115,115,105,98,108,101,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,114,101,97,116,101,68,97,116,101,70,111,114,109,97,116,116,101,114,41,40,116,104,105,115,46,99,97,108,101,110,100,97,114,76,111,99,97,108,101,44,32,123,92,110,32,32,32,32,32,32,32,32,119,101,101,107,100,97,121,58,32,116,104,105,115,46,119,101,101,107,100,97,121,72,101,97,100,101,114,70,111,114,109,97,116,32,124,124,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,83,72,79,82,84,44,92,110,32,32,32,32,32,32,32,32,99,97,108,101,110,100,97,114,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,65,76,69,78,68,65,82,95,71,82,69,71,79,82,89,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,114,109,97,116,68,97,121,58,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,68,97,121,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,97,108,101,110,100,97,114,32,103,114,105,100,32,100,97,121,32,110,117,109,98,101,114,32,102,111,114,109,97,116,116,101,114,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,111,110,39,116,32,117,115,101,32,68,97,116,101,84,105,109,101,70,111,114,109,97,116,116,101,114,32,104,101,114,101,32,97,115,32,105,116,32,99,97,110,32,112,108,97,99,101,32,101,120,116,114,97,92,110,32,32,32,32,32,32,47,47,32,99,104,97,114,97,99,116,101,114,40,115,41,32,97,102,116,101,114,32,116,104,101,32,110,117,109,98,101,114,32,40,105,46,101,32,116,104,101,32,96,122,104,96,32,108,111,99,97,108,101,41,92,110,32,32,32,32,32,32,118,97,114,32,110,102,32,61,32,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,91,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,93,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,39,100,101,99,105,109,97,108,39,44,92,110,32,32,32,32,32,32,32,32,109,105,110,105,109,117,109,73,110,116,101,103,101,114,68,105,103,105,116,115,58,32,49,44,92,110,32,32,32,32,32,32,32,32,109,105,110,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,32,48,44,92,110,32,32,32,32,32,32,32,32,109,97,120,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,32,48,44,92,110,32,32,32,32,32,32,32,32,110,111,116,97,116,105,111,110,58,32,39,115,116,97,110,100,97,114,100,39,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,82,101,116,117,114,110,32,97,32,102,111,114,109,97,116,116,101,114,32,102,117,110,99,116,105,111,110,32,105,110,115,116,97,110,99,101,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,102,46,102,111,114,109,97,116,40,100,97,116,101,46,103,101,116,68,97,116,101,40,41,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,68,105,115,97,98,108,101,100,32,115,116,97,116,101,115,32,102,111,114,32,116,104,101,32,110,97,118,32,98,117,116,116,111,110,115,92,110,32,32,32,32,112,114,101,118,68,101,99,97,100,101,68,105,115,97,98,108,101,100,58,32,102,117,110,99,116,105,111,110,32,112,114,101,118,68,101,99,97,100,101,68,105,115,97,98,108,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,105,110,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,109,105,110,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,108,97,115,116,68,97,116,101,79,102,77,111,110,116,104,41,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,68,101,99,97,100,101,65,103,111,41,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,32,60,32,109,105,110,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,114,101,118,89,101,97,114,68,105,115,97,98,108,101,100,58,32,102,117,110,99,116,105,111,110,32,112,114,101,118,89,101,97,114,68,105,115,97,98,108,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,105,110,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,109,105,110,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,108,97,115,116,68,97,116,101,79,102,77,111,110,116,104,41,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,89,101,97,114,65,103,111,41,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,32,60,32,109,105,110,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,114,101,118,77,111,110,116,104,68,105,115,97,98,108,101,100,58,32,102,117,110,99,116,105,111,110,32,112,114,101,118,77,111,110,116,104,68,105,115,97,98,108,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,105,110,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,109,105,110,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,108,97,115,116,68,97,116,101,79,102,77,111,110,116,104,41,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,77,111,110,116,104,65,103,111,41,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,32,60,32,109,105,110,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,104,105,115,77,111,110,116,104,68,105,115,97,98,108,101,100,58,32,102,117,110,99,116,105,111,110,32,116,104,105,115,77,111,110,116,104,68,105,115,97,98,108,101,100,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,87,101,32,99,111,117,108,100,47,115,104,111,117,108,100,32,99,104,101,99,107,32,105,102,32,116,111,100,97,121,32,105,115,32,111,117,116,32,111,102,32,114,97,110,103,101,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,110,101,120,116,77,111,110,116,104,68,105,115,97,98,108,101,100,58,32,102,117,110,99,116,105,111,110,32,110,101,120,116,77,111,110,116,104,68,105,115,97,98,108,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,97,120,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,109,97,120,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,105,114,115,116,68,97,116,101,79,102,77,111,110,116,104,41,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,77,111,110,116,104,65,104,101,97,100,41,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,32,62,32,109,97,120,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,110,101,120,116,89,101,97,114,68,105,115,97,98,108,101,100,58,32,102,117,110,99,116,105,111,110,32,110,101,120,116,89,101,97,114,68,105,115,97,98,108,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,97,120,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,109,97,120,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,105,114,115,116,68,97,116,101,79,102,77,111,110,116,104,41,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,89,101,97,114,65,104,101,97,100,41,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,32,62,32,109,97,120,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,110,101,120,116,68,101,99,97,100,101,68,105,115,97,98,108,101,100,58,32,102,117,110,99,116,105,111,110,32,110,101,120,116,68,101,99,97,100,101,68,105,115,97,98,108,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,97,120,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,109,97,120,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,105,114,115,116,68,97,116,101,79,102,77,111,110,116,104,41,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,68,101,99,97,100,101,65,104,101,97,100,41,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,32,62,32,109,97,120,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,67,97,108,101,110,100,97,114,32,100,97,116,101,115,32,103,101,110,101,114,97,116,105,111,110,92,110,32,32,32,32,99,97,108,101,110,100,97,114,58,32,102,117,110,99,116,105,111,110,32,99,97,108,101,110,100,97,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,97,116,114,105,120,32,61,32,91,93,59,92,110,32,32,32,32,32,32,118,97,114,32,102,105,114,115,116,68,97,121,32,61,32,116,104,105,115,46,99,97,108,101,110,100,97,114,70,105,114,115,116,68,97,121,59,92,110,32,32,32,32,32,32,118,97,114,32,99,97,108,101,110,100,97,114,89,101,97,114,32,61,32,102,105,114,115,116,68,97,121,46,103,101,116,70,117,108,108,89,101,97,114,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,99,97,108,101,110,100,97,114,77,111,110,116,104,32,61,32,102,105,114,115,116,68,97,121,46,103,101,116,77,111,110,116,104,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,100,97,121,115,73,110,77,111,110,116,104,32,61,32,116,104,105,115,46,99,97,108,101,110,100,97,114,68,97,121,115,73,110,77,111,110,116,104,59,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,114,116,73,110,100,101,120,32,61,32,102,105,114,115,116,68,97,121,46,103,101,116,68,97,121,40,41,59,32,47,47,32,96,48,96,46,46,96,54,96,92,110,92,110,32,32,32,32,32,32,118,97,114,32,119,101,101,107,79,102,102,115,101,116,32,61,32,40,116,104,105,115,46,99,111,109,112,117,116,101,100,87,101,101,107,83,116,97,114,116,115,32,62,32,115,116,97,114,116,73,110,100,101,120,32,63,32,55,32,58,32,48,41,32,45,32,116,104,105,115,46,99,111,109,112,117,116,101,100,87,101,101,107,83,116,97,114,116,115,59,32,47,47,32,66,117,105,108,100,32,116,104,101,32,99,97,108,101,110,100,97,114,32,109,97,116,114,105,120,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,68,97,121,32,61,32,48,32,45,32,119,101,101,107,79,102,102,115,101,116,32,45,32,115,116,97,114,116,73,110,100,101,120,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,119,101,101,107,32,61,32,48,59,32,119,101,101,107,32,60,32,54,32,38,38,32,99,117,114,114,101,110,116,68,97,121,32,60,32,100,97,121,115,73,110,77,111,110,116,104,59,32,119,101,101,107,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,70,111,114,32,101,97,99,104,32,119,101,101,107,92,110,32,32,32,32,32,32,32,32,109,97,116,114,105,120,91,119,101,101,107,93,32,61,32,91,93,59,32,47,47,32,84,104,101,32,102,111,108,108,111,119,105,110,103,32,99,111,117,108,100,32,98,101,32,97,32,109,97,112,32,102,117,110,99,116,105,111,110,92,110,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,59,32,106,32,60,32,55,59,32,106,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,70,111,114,32,101,97,99,104,32,100,97,121,32,105,110,32,119,101,101,107,92,110,32,32,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,68,97,121,43,43,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,97,116,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,114,101,97,116,101,68,97,116,101,41,40,99,97,108,101,110,100,97,114,89,101,97,114,44,32,99,97,108,101,110,100,97,114,77,111,110,116,104,44,32,99,117,114,114,101,110,116,68,97,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,111,110,116,104,32,61,32,100,97,116,101,46,103,101,116,77,111,110,116,104,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,97,121,89,77,68,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,100,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,97,121,68,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,97,116,101,68,105,115,97,98,108,101,100,40,100,97,116,101,41,59,32,47,47,32,84,79,68,79,58,32,84,104,105,115,32,99,111,117,108,100,32,98,101,32,97,32,110,111,114,109,97,108,105,122,101,114,32,109,101,116,104,111,100,92,110,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,97,116,101,73,110,102,111,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,68,97,116,101,73,110,102,111,70,110,40,100,97,121,89,77,68,44,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,100,97,121,89,77,68,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,100,97,116,101,73,110,102,111,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,115,83,116,114,105,110,103,41,40,100,97,116,101,73,110,102,111,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,115,65,114,114,97,121,41,40,100,97,116,101,73,110,102,111,41,32,63,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,100,97,116,101,73,110,102,111,92,110,32,32,32,32,32,32,32,32,32,32,125,32,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,100,97,116,101,73,110,102,111,41,32,63,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,39,39,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,100,97,116,101,73,110,102,111,41,32,58,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,39,39,92,110,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,109,97,116,114,105,120,91,119,101,101,107,93,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,121,109,100,58,32,100,97,121,89,77,68,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,101,108,108,32,99,111,110,116,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,97,121,58,32,116,104,105,115,46,102,111,114,109,97,116,68,97,121,40,100,97,116,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,58,32,116,104,105,115,46,102,111,114,109,97,116,68,97,116,101,83,116,114,105,110,103,40,100,97,116,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,108,97,103,115,32,102,111,114,32,115,116,121,108,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,84,104,105,115,77,111,110,116,104,58,32,109,111,110,116,104,32,61,61,61,32,99,97,108,101,110,100,97,114,77,111,110,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,68,105,115,97,98,108,101,100,58,32,100,97,121,68,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,72,97,110,100,108,101,32,111,116,104,101,114,32,100,97,116,101,73,110,102,111,32,112,114,111,112,101,114,116,105,101,115,32,115,117,99,104,32,97,115,32,110,111,116,101,115,47,101,118,101,110,116,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,102,111,58,32,100,97,116,101,73,110,102,111,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,116,114,105,120,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,97,108,101,110,100,97,114,72,101,97,100,105,110,103,115,58,32,102,117,110,99,116,105,111,110,32,99,97,108,101,110,100,97,114,72,101,97,100,105,110,103,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,97,108,101,110,100,97,114,91,48,93,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,95,116,104,105,115,50,46,102,111,114,109,97,116,87,101,101,107,100,97,121,78,97,109,101,83,104,111,114,116,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,100,46,121,109,100,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,58,32,95,116,104,105,115,50,46,102,111,114,109,97,116,87,101,101,107,100,97,121,78,97,109,101,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,100,46,121,109,100,41,41,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,115,101,108,101,99,116,101,100,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,110,101,119,86,97,108,117,101,41,32,124,124,32,39,39,59,92,110,32,32,32,32,118,97,114,32,111,108,100,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,111,108,100,86,97,108,117,101,41,32,124,124,32,39,39,59,92,110,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,100,97,116,101,115,69,113,117,97,108,41,40,115,101,108,101,99,116,101,100,44,32,111,108,100,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,32,61,32,115,101,108,101,99,116,101,100,32,124,124,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,32,61,32,115,101,108,101,99,116,101,100,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,115,101,108,101,99,116,101,100,89,77,68,92,34,44,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,101,100,89,77,68,40,110,101,119,89,77,68,44,32,111,108,100,89,77,68,41,32,123,92,110,32,32,32,32,47,47,32,84,79,68,79,58,92,110,32,32,32,32,47,47,32,32,32,83,104,111,117,108,100,32,119,101,32,99,111,109,112,97,114,101,32,116,111,32,96,102,111,114,109,97,116,89,77,68,40,116,104,105,115,46,118,97,108,117,101,41,96,32,97,110,100,32,101,109,105,116,92,110,32,32,32,32,47,47,32,32,32,111,110,108,121,32,105,102,32,116,104,101,121,32,97,114,101,32,100,105,102,102,101,114,101,110,116,63,92,110,32,32,32,32,105,102,32,40,110,101,119,89,77,68,32,33,61,61,32,111,108,100,89,77,68,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,116,104,105,115,46,118,97,108,117,101,65,115,68,97,116,101,32,63,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,110,101,119,89,77,68,41,32,124,124,32,110,117,108,108,32,58,32,110,101,119,89,77,68,32,124,124,32,39,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,99,111,110,116,101,120,116,92,34,44,32,102,117,110,99,116,105,111,110,32,99,111,110,116,101,120,116,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,79,78,84,69,88,84,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,104,105,100,100,101,110,92,34,44,32,102,117,110,99,116,105,111,110,32,104,105,100,100,101,110,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,47,47,32,82,101,115,101,116,32,116,104,101,32,97,99,116,105,118,101,32,102,111,99,117,115,101,100,32,100,97,121,32,119,104,101,110,32,104,105,100,100,101,110,92,110,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,32,61,32,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,32,124,124,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,32,124,124,32,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,116,104,105,115,46,105,110,105,116,105,97,108,68,97,116,101,32,124,124,32,116,104,105,115,46,103,101,116,84,111,100,97,121,40,41,41,41,59,32,47,47,32,69,110,97,98,108,101,47,100,105,115,97,98,108,101,32,116,104,101,32,108,105,118,101,32,114,101,103,105,111,110,115,92,110,92,110,32,32,32,32,116,104,105,115,46,115,101,116,76,105,118,101,40,33,110,101,119,86,97,108,117,101,41,59,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,51,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,79,78,84,69,88,84,44,32,95,116,104,105,115,51,46,99,111,110,116,101,120,116,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,76,105,118,101,40,116,114,117,101,41,59,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,97,99,116,105,118,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,97,99,116,105,118,97,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,76,105,118,101,40,116,114,117,101,41,59,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,100,101,97,99,116,105,118,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,100,101,97,99,116,105,118,97,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,76,105,118,101,40,102,97,108,115,101,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,76,105,118,101,40,102,97,108,115,101,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,80,117,98,108,105,99,32,109,101,116,104,111,100,40,115,41,92,110,32,32,32,32,102,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,104,105,115,46,36,114,101,102,115,46,103,114,105,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,108,117,114,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,97,116,116,101,109,112,116,66,108,117,114,41,40,116,104,105,115,46,36,114,101,102,115,46,103,114,105,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,114,105,118,97,116,101,32,109,101,116,104,111,100,115,92,110,32,32,32,32,115,101,116,76,105,118,101,58,32,102,117,110,99,116,105,111,110,32,115,101,116,76,105,118,101,40,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,105,115,76,105,118,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,76,105,118,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,84,111,100,97,121,58,32,102,117,110,99,116,105,111,110,32,103,101,116,84,111,100,97,121,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,114,101,97,116,101,68,97,116,101,41,40,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,110,115,116,114,97,105,110,68,97,116,101,58,32,102,117,110,99,116,105,111,110,32,99,111,110,115,116,114,97,105,110,68,97,116,101,40,100,97,116,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,111,110,115,116,114,97,105,110,115,32,97,32,100,97,116,101,32,98,101,116,119,101,101,110,32,109,105,110,32,97,110,100,32,109,97,120,92,110,32,32,32,32,32,32,47,47,32,114,101,116,117,114,110,115,32,97,32,110,101,119,32,96,68,97,116,101,96,32,111,98,106,101,99,116,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,111,110,115,116,114,97,105,110,68,97,116,101,41,40,100,97,116,101,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,109,105,116,83,101,108,101,99,116,101,100,58,32,102,117,110,99,116,105,111,110,32,101,109,105,116,83,101,108,101,99,116,101,100,40,100,97,116,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,53,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,80,101,114,102,111,114,109,101,100,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,40,112,114,111,98,97,98,108,121,41,32,101,110,115,117,114,101,92,110,32,32,32,32,32,32,47,47,32,116,104,101,32,105,110,112,117,116,32,101,118,101,110,116,32,104,97,115,32,101,109,105,116,116,101,100,32,102,105,114,115,116,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,53,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,69,76,69,67,84,69,68,44,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,100,97,116,101,41,32,124,124,32,39,39,44,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,100,97,116,101,41,32,124,124,32,110,117,108,108,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,69,118,101,110,116,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,115,101,116,71,114,105,100,70,111,99,117,115,70,108,97,103,58,32,102,117,110,99,116,105,111,110,32,115,101,116,71,114,105,100,70,111,99,117,115,70,108,97,103,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,101,116,115,32,116,104,101,32,103,114,105,100,72,97,115,70,111,99,117,115,32,102,108,97,103,32,116,111,32,109,97,107,101,32,100,97,116,101,32,92,34,98,117,116,116,111,110,92,34,32,108,111,111,107,32,102,111,99,117,115,101,100,92,110,32,32,32,32,32,32,116,104,105,115,46,103,114,105,100,72,97,115,70,111,99,117,115,32,61,32,33,116,104,105,115,46,100,105,115,97,98,108,101,100,32,38,38,32,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,39,102,111,99,117,115,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,75,101,121,100,111,119,110,87,114,97,112,112,101,114,58,32,102,117,110,99,116,105,111,110,32,111,110,75,101,121,100,111,119,110,87,114,97,112,112,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,97,108,101,110,100,97,114,32,107,101,121,98,111,97,114,100,32,110,97,118,105,103,97,116,105,111,110,92,110,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,115,32,80,65,71,69,85,80,47,80,65,71,69,68,79,87,78,47,69,78,68,47,72,79,77,69,47,76,69,70,84,47,85,80,47,82,73,71,72,84,47,68,79,87,78,92,110,32,32,32,32,32,32,47,47,32,70,111,99,117,115,101,115,32,103,114,105,100,32,97,102,116,101,114,32,117,112,100,97,116,105,110,103,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,110,111,75,101,121,78,97,118,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,97,108,116,75,101,121,32,61,32,101,118,101,110,116,46,97,108,116,75,101,121,44,92,110,32,32,32,32,32,32,32,32,32,32,99,116,114,108,75,101,121,32,61,32,101,118,101,110,116,46,99,116,114,108,75,101,121,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,91,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,80,65,71,69,85,80,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,80,65,71,69,68,79,87,78,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,69,78,68,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,72,79,77,69,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,76,69,70,84,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,85,80,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,82,73,71,72,84,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,68,79,87,78,93,44,32,107,101,121,67,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,118,97,114,32,97,99,116,105,118,101,68,97,116,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,114,101,97,116,101,68,97,116,101,41,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,59,92,110,32,32,32,32,32,32,118,97,114,32,99,104,101,99,107,68,97,116,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,114,101,97,116,101,68,97,116,101,41,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,59,92,110,32,32,32,32,32,32,118,97,114,32,100,97,121,32,61,32,97,99,116,105,118,101,68,97,116,101,46,103,101,116,68,97,116,101,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,115,116,114,97,105,110,101,100,84,111,100,97,121,32,61,32,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,116,104,105,115,46,103,101,116,84,111,100,97,121,40,41,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,115,82,84,76,32,61,32,116,104,105,115,46,105,115,82,84,76,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,80,65,71,69,85,80,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,80,65,71,69,85,80,32,45,32,80,114,101,118,105,111,117,115,32,109,111,110,116,104,47,121,101,97,114,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,68,97,116,101,32,61,32,40,97,108,116,75,101,121,32,63,32,99,116,114,108,75,101,121,32,63,32,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,68,101,99,97,100,101,65,103,111,32,58,32,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,89,101,97,114,65,103,111,32,58,32,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,77,111,110,116,104,65,103,111,41,40,97,99,116,105,118,101,68,97,116,101,41,59,32,47,47,32,87,101,32,99,104,101,99,107,32,116,104,101,32,102,105,114,115,116,32,100,97,121,32,111,102,32,109,111,110,116,104,32,116,111,32,98,101,32,105,110,32,114,97,103,101,92,110,92,110,32,32,32,32,32,32,32,32,99,104,101,99,107,68,97,116,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,114,101,97,116,101,68,97,116,101,41,40,97,99,116,105,118,101,68,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,99,104,101,99,107,68,97,116,101,46,115,101,116,68,97,116,101,40,49,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,80,65,71,69,68,79,87,78,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,80,65,71,69,68,79,87,78,32,45,32,78,101,120,116,32,109,111,110,116,104,47,121,101,97,114,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,68,97,116,101,32,61,32,40,97,108,116,75,101,121,32,63,32,99,116,114,108,75,101,121,32,63,32,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,68,101,99,97,100,101,65,104,101,97,100,32,58,32,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,89,101,97,114,65,104,101,97,100,32,58,32,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,77,111,110,116,104,65,104,101,97,100,41,40,97,99,116,105,118,101,68,97,116,101,41,59,32,47,47,32,87,101,32,99,104,101,99,107,32,116,104,101,32,108,97,115,116,32,100,97,121,32,111,102,32,109,111,110,116,104,32,116,111,32,98,101,32,105,110,32,114,97,103,101,92,110,92,110,32,32,32,32,32,32,32,32,99,104,101,99,107,68,97,116,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,114,101,97,116,101,68,97,116,101,41,40,97,99,116,105,118,101,68,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,99,104,101,99,107,68,97,116,101,46,115,101,116,77,111,110,116,104,40,99,104,101,99,107,68,97,116,101,46,103,101,116,77,111,110,116,104,40,41,32,43,32,49,41,59,92,110,32,32,32,32,32,32,32,32,99,104,101,99,107,68,97,116,101,46,115,101,116,68,97,116,101,40,48,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,76,69,70,84,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,76,69,70,84,32,45,32,80,114,101,118,105,111,117,115,32,100,97,121,32,40,111,114,32,110,101,120,116,32,100,97,121,32,102,111,114,32,82,84,76,41,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,68,97,116,101,46,115,101,116,68,97,116,101,40,100,97,121,32,43,32,40,105,115,82,84,76,32,63,32,49,32,58,32,45,49,41,41,59,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,68,97,116,101,32,61,32,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,97,99,116,105,118,101,68,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,99,104,101,99,107,68,97,116,101,32,61,32,97,99,116,105,118,101,68,97,116,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,82,73,71,72,84,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,82,73,71,72,84,32,45,32,78,101,120,116,32,100,97,121,32,40,111,114,32,112,114,101,118,105,111,117,115,32,100,97,121,32,102,111,114,32,82,84,76,41,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,68,97,116,101,46,115,101,116,68,97,116,101,40,100,97,121,32,43,32,40,105,115,82,84,76,32,63,32,45,49,32,58,32,49,41,41,59,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,68,97,116,101,32,61,32,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,97,99,116,105,118,101,68,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,99,104,101,99,107,68,97,116,101,32,61,32,97,99,116,105,118,101,68,97,116,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,85,80,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,85,80,32,45,32,80,114,101,118,105,111,117,115,32,119,101,101,107,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,68,97,116,101,46,115,101,116,68,97,116,101,40,100,97,121,32,45,32,55,41,59,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,68,97,116,101,32,61,32,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,97,99,116,105,118,101,68,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,99,104,101,99,107,68,97,116,101,32,61,32,97,99,116,105,118,101,68,97,116,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,68,79,87,78,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,79,87,78,32,45,32,78,101,120,116,32,119,101,101,107,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,68,97,116,101,46,115,101,116,68,97,116,101,40,100,97,121,32,43,32,55,41,59,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,68,97,116,101,32,61,32,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,97,99,116,105,118,101,68,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,99,104,101,99,107,68,97,116,101,32,61,32,97,99,116,105,118,101,68,97,116,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,72,79,77,69,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,72,79,77,69,32,45,32,84,111,100,97,121,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,68,97,116,101,32,61,32,99,111,110,115,116,114,97,105,110,101,100,84,111,100,97,121,59,92,110,32,32,32,32,32,32,32,32,99,104,101,99,107,68,97,116,101,32,61,32,97,99,116,105,118,101,68,97,116,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,69,78,68,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,69,78,68,32,45,32,83,101,108,101,99,116,101,100,32,100,97,116,101,44,32,111,114,32,116,111,100,97,121,32,105,102,32,110,111,32,115,101,108,101,99,116,101,100,32,100,97,116,101,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,68,97,116,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,116,104,105,115,46,115,101,108,101,99,116,101,100,68,97,116,101,41,32,124,124,32,99,111,110,115,116,114,97,105,110,101,100,84,111,100,97,121,59,92,110,32,32,32,32,32,32,32,32,99,104,101,99,107,68,97,116,101,32,61,32,97,99,116,105,118,101,68,97,116,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,97,116,101,79,117,116,79,102,82,97,110,103,101,40,99,104,101,99,107,68,97,116,101,41,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,100,97,116,101,115,69,113,117,97,108,41,40,97,99,116,105,118,101,68,97,116,101,44,32,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,106,117,109,112,32,116,111,32,100,97,116,101,32,105,102,32,119,105,116,104,105,110,32,109,105,110,47,109,97,120,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,100,111,110,39,116,32,99,104,101,99,107,32,102,111,114,32,105,110,100,105,118,105,100,117,97,108,32,100,105,115,97,98,108,101,100,32,100,97,116,101,115,32,116,104,111,117,103,104,32,40,118,105,97,32,117,115,101,114,32,102,117,110,99,116,105,111,110,41,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,97,99,116,105,118,101,68,97,116,101,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,69,110,115,117,114,101,32,103,114,105,100,32,105,115,32,102,111,99,117,115,101,100,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,102,111,99,117,115,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,75,101,121,100,111,119,110,71,114,105,100,58,32,102,117,110,99,116,105,111,110,32,111,110,75,101,121,100,111,119,110,71,114,105,100,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,114,101,115,115,105,110,103,32,101,110,116,101,114,47,115,112,97,99,101,32,111,110,32,103,114,105,100,32,116,111,32,115,101,108,101,99,116,32,97,99,116,105,118,101,32,100,97,116,101,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,59,92,110,32,32,32,32,32,32,118,97,114,32,97,99,116,105,118,101,68,97,116,101,32,61,32,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,69,78,84,69,82,32,124,124,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,83,80,65,67,69,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,32,38,38,32,33,116,104,105,115,46,114,101,97,100,111,110,108,121,32,38,38,32,33,116,104,105,115,46,100,97,116,101,68,105,115,97,98,108,101,100,40,97,99,116,105,118,101,68,97,116,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,97,99,116,105,118,101,68,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,83,101,108,101,99,116,101,100,40,97,99,116,105,118,101,68,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,69,110,115,117,114,101,32,103,114,105,100,32,105,115,32,102,111,99,117,115,101,100,92,110,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,102,111,99,117,115,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,108,105,99,107,68,97,121,58,32,102,117,110,99,116,105,111,110,32,111,110,67,108,105,99,107,68,97,121,40,100,97,121,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,108,105,99,107,105,110,103,32,111,110,32,97,32,100,97,116,101,32,92,34,98,117,116,116,111,110,92,34,32,116,111,32,115,101,108,101,99,116,32,105,116,92,110,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,101,100,68,97,116,101,32,61,32,116,104,105,115,46,115,101,108,101,99,116,101,100,68,97,116,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,68,97,116,101,32,61,32,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,59,92,110,32,32,32,32,32,32,118,97,114,32,99,108,105,99,107,101,100,68,97,116,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,97,114,115,101,89,77,68,41,40,100,97,121,46,121,109,100,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,32,38,38,32,33,100,97,121,46,105,115,68,105,115,97,98,108,101,100,32,38,38,32,33,116,104,105,115,46,100,97,116,101,68,105,115,97,98,108,101,100,40,99,108,105,99,107,101,100,68,97,116,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,114,101,97,100,111,110,108,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,114,101,97,100,111,110,108,121,32,109,111,100,101,44,32,119,101,32,100,111,110,39,116,32,115,101,116,32,116,104,101,32,115,101,108,101,99,116,101,100,32,100,97,116,101,44,32,106,117,115,116,32,116,104,101,32,97,99,116,105,118,101,32,100,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,99,108,105,99,107,101,100,32,100,97,116,101,32,105,115,32,101,113,117,97,108,32,116,111,32,116,104,101,32,97,108,114,101,97,100,121,32,115,101,108,101,99,116,101,100,32,100,97,116,101,44,32,119,101,32,100,111,110,39,116,32,117,112,100,97,116,101,32,116,104,101,32,109,111,100,101,108,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,100,97,116,101,115,69,113,117,97,108,41,40,99,108,105,99,107,101,100,68,97,116,101,44,32,115,101,108,101,99,116,101,100,68,97,116,101,41,32,63,32,115,101,108,101,99,116,101,100,68,97,116,101,32,58,32,99,108,105,99,107,101,100,68,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,83,101,108,101,99,116,101,100,40,99,108,105,99,107,101,100,68,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,100,97,116,101,115,69,113,117,97,108,41,40,99,108,105,99,107,101,100,68,97,116,101,44,32,97,99,116,105,118,101,68,97,116,101,41,32,63,32,97,99,116,105,118,101,68,97,116,101,32,58,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,114,101,97,116,101,68,97,116,101,41,40,99,108,105,99,107,101,100,68,97,116,101,41,41,59,32,47,47,32,69,110,115,117,114,101,32,103,114,105,100,32,105,115,32,102,111,99,117,115,101,100,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,102,111,99,117,115,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,111,116,111,80,114,101,118,68,101,99,97,100,101,58,32,102,117,110,99,116,105,111,110,32,103,111,116,111,80,114,101,118,68,101,99,97,100,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,68,101,99,97,100,101,65,103,111,41,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,111,116,111,80,114,101,118,89,101,97,114,58,32,102,117,110,99,116,105,111,110,32,103,111,116,111,80,114,101,118,89,101,97,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,89,101,97,114,65,103,111,41,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,111,116,111,80,114,101,118,77,111,110,116,104,58,32,102,117,110,99,116,105,111,110,32,103,111,116,111,80,114,101,118,77,111,110,116,104,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,77,111,110,116,104,65,103,111,41,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,111,116,111,67,117,114,114,101,110,116,77,111,110,116,104,58,32,102,117,110,99,116,105,111,110,32,103,111,116,111,67,117,114,114,101,110,116,77,111,110,116,104,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,77,97,121,98,101,32,116,104,105,115,32,103,111,116,111,32,100,97,116,101,32,115,104,111,117,108,100,32,98,101,32,99,111,110,102,105,103,117,114,97,98,108,101,63,92,110,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,116,104,105,115,46,103,101,116,84,111,100,97,121,40,41,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,111,116,111,78,101,120,116,77,111,110,116,104,58,32,102,117,110,99,116,105,111,110,32,103,111,116,111,78,101,120,116,77,111,110,116,104,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,77,111,110,116,104,65,104,101,97,100,41,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,111,116,111,78,101,120,116,89,101,97,114,58,32,102,117,110,99,116,105,111,110,32,103,111,116,111,78,101,120,116,89,101,97,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,89,101,97,114,65,104,101,97,100,41,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,111,116,111,78,101,120,116,68,101,99,97,100,101,58,32,102,117,110,99,116,105,111,110,32,103,111,116,111,78,101,120,116,68,101,99,97,100,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,110,101,68,101,99,97,100,101,65,104,101,97,100,41,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,72,101,97,100,101,114,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,111,110,72,101,97,100,101,114,67,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,32,61,32,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,32,124,124,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,116,104,105,115,46,103,101,116,84,111,100,97,121,40,41,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,102,111,99,117,115,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,54,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,47,47,32,73,102,32,96,104,105,100,100,101,110,96,32,112,114,111,112,32,105,115,32,115,101,116,44,32,114,101,110,100,101,114,32,106,117,115,116,32,97,32,112,108,97,99,101,104,111,108,100,101,114,32,110,111,100,101,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,104,105,100,100,101,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,73,100,32,61,32,116,104,105,115,46,118,97,108,117,101,73,100,44,92,110,32,32,32,32,32,32,32,32,119,105,100,103,101,116,73,100,32,61,32,116,104,105,115,46,119,105,100,103,101,116,73,100,44,92,110,32,32,32,32,32,32,32,32,110,97,118,73,100,32,61,32,116,104,105,115,46,110,97,118,73,100,44,92,110,32,32,32,32,32,32,32,32,103,114,105,100,73,100,32,61,32,116,104,105,115,46,103,114,105,100,73,100,44,92,110,32,32,32,32,32,32,32,32,103,114,105,100,67,97,112,116,105,111,110,73,100,32,61,32,116,104,105,115,46,103,114,105,100,67,97,112,116,105,111,110,73,100,44,92,110,32,32,32,32,32,32,32,32,103,114,105,100,72,101,108,112,73,100,32,61,32,116,104,105,115,46,103,114,105,100,72,101,108,112,73,100,44,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,73,100,32,61,32,116,104,105,115,46,97,99,116,105,118,101,73,100,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,110,111,75,101,121,78,97,118,32,61,32,116,104,105,115,46,110,111,75,101,121,78,97,118,44,92,110,32,32,32,32,32,32,32,32,105,115,76,105,118,101,32,61,32,116,104,105,115,46,105,115,76,105,118,101,44,92,110,32,32,32,32,32,32,32,32,105,115,82,84,76,32,61,32,116,104,105,115,46,105,115,82,84,76,44,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,89,77,68,32,61,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,44,92,110,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,89,77,68,32,61,32,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,44,92,110,32,32,32,32,32,32,32,32,115,97,102,101,73,100,32,61,32,116,104,105,115,46,115,97,102,101,73,100,59,92,110,32,32,32,32,118,97,114,32,104,105,100,101,68,101,99,97,100,101,78,97,118,32,61,32,33,116,104,105,115,46,115,104,111,119,68,101,99,97,100,101,78,97,118,59,92,110,32,32,32,32,118,97,114,32,116,111,100,97,121,89,77,68,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,97,116,89,77,68,41,40,116,104,105,115,46,103,101,116,84,111,100,97,121,40,41,41,59,92,110,32,32,32,32,118,97,114,32,104,105,103,104,108,105,103,104,116,84,111,100,97,121,32,61,32,33,116,104,105,115,46,110,111,72,105,103,104,108,105,103,104,116,84,111,100,97,121,59,32,47,47,32,72,101,97,100,101,114,32,115,104,111,119,105,110,103,32,99,117,114,114,101,110,116,32,115,101,108,101,99,116,101,100,32,100,97,116,101,92,110,92,110,32,32,32,32,118,97,114,32,36,104,101,97,100,101,114,32,61,32,104,40,39,111,117,116,112,117,116,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,102,111,114,109,45,99,111,110,116,114,111,108,32,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,32,116,101,120,116,45,99,101,110,116,101,114,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,116,101,120,116,45,109,117,116,101,100,39,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,101,97,100,111,110,108,121,58,32,116,104,105,115,46,114,101,97,100,111,110,108,121,32,124,124,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,118,97,108,117,101,73,100,44,92,110,32,32,32,32,32,32,32,32,102,111,114,58,32,103,114,105,100,73,100,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,115,116,97,116,117,115,39,44,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,100,105,115,97,98,108,101,100,32,63,32,110,117,108,108,32,58,32,39,45,49,39,44,92,110,32,32,32,32,32,32,32,32,47,47,32,77,97,105,110,108,121,32,102,111,114,32,116,101,115,116,105,110,103,32,112,117,114,112,111,115,101,115,44,32,97,115,32,119,101,32,100,111,32,110,111,116,32,107,110,111,119,92,110,32,32,32,32,32,32,32,32,47,47,32,116,104,101,32,101,120,97,99,116,32,102,111,114,109,97,116,32,96,73,110,116,108,96,32,119,105,108,108,32,102,111,114,109,97,116,32,116,104,101,32,100,97,116,101,32,115,116,114,105,110,103,92,110,32,32,32,32,32,32,32,32,39,100,97,116,97,45,115,101,108,101,99,116,101,100,39,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,116,111,83,116,114,105,110,103,41,40,115,101,108,101,99,116,101,100,89,77,68,41,44,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,119,97,105,116,32,117,110,116,105,108,32,97,102,116,101,114,32,109,111,117,110,116,32,116,111,32,101,110,97,98,108,101,32,96,97,114,105,97,45,108,105,118,101,96,92,110,32,32,32,32,32,32,32,32,47,47,32,116,111,32,112,114,101,118,101,110,116,32,105,110,105,116,105,97,108,32,97,110,110,111,117,110,99,101,109,101,110,116,32,111,110,32,112,97,103,101,32,114,101,110,100,101,114,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,105,115,76,105,118,101,32,63,32,39,112,111,108,105,116,101,39,32,58,32,39,111,102,102,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,97,116,111,109,105,99,39,58,32,105,115,76,105,118,101,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,114,97,110,115,102,101,114,32,102,111,99,117,115,47,99,108,105,99,107,32,116,111,32,102,111,99,117,115,32,103,114,105,100,92,110,32,32,32,32,32,32,32,32,47,47,32,97,110,100,32,102,111,99,117,115,32,97,99,116,105,118,101,32,100,97,116,101,32,40,111,114,32,116,111,100,97,121,32,105,102,32,110,111,32,115,101,108,101,99,116,105,111,110,41,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,72,101,97,100,101,114,67,108,105,99,107,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,58,32,116,104,105,115,46,111,110,72,101,97,100,101,114,67,108,105,99,107,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,116,104,105,115,46,115,101,108,101,99,116,101,100,68,97,116,101,32,63,32,91,47,47,32,87,101,32,117,115,101,32,96,98,100,105,96,32,101,108,101,109,101,110,116,115,32,104,101,114,101,32,105,110,32,99,97,115,101,32,116,104,101,32,108,97,98,101,108,32,100,111,101,115,110,39,116,32,109,97,116,99,104,32,116,104,101,32,108,111,99,97,108,101,92,110,32,32,32,32,47,47,32,65,108,116,104,111,117,103,104,32,73,69,32,49,49,32,100,111,101,115,32,110,111,116,32,100,101,97,108,32,119,105,116,104,32,60,66,68,73,62,32,97,116,32,97,108,108,32,40,101,113,117,105,118,97,108,101,110,116,32,116,111,32,97,32,115,112,97,110,41,92,110,32,32,32,32,104,40,39,98,100,105,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,115,114,45,111,110,108,121,39,92,110,32,32,32,32,125,44,32,92,34,32,40,92,34,46,99,111,110,99,97,116,40,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,116,111,83,116,114,105,110,103,41,40,116,104,105,115,46,108,97,98,101,108,83,101,108,101,99,116,101,100,41,44,32,92,34,41,32,92,34,41,41,44,32,104,40,39,98,100,105,39,44,32,116,104,105,115,46,102,111,114,109,97,116,68,97,116,101,83,116,114,105,110,103,40,116,104,105,115,46,115,101,108,101,99,116,101,100,68,97,116,101,41,41,93,32,58,32,116,104,105,115,46,108,97,98,101,108,78,111,68,97,116,101,83,101,108,101,99,116,101,100,32,124,124,32,92,34,92,92,120,65,48,92,34,32,47,47,32,39,38,110,98,115,112,59,39,92,110,32,32,32,32,41,59,92,110,32,32,32,32,36,104,101,97,100,101,114,32,61,32,104,40,39,104,101,97,100,101,114,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,99,97,108,101,110,100,97,114,45,104,101,97,100,101,114,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,115,114,45,111,110,108,121,39,58,32,116,104,105,115,46,104,105,100,101,72,101,97,100,101,114,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,116,104,105,115,46,115,101,108,101,99,116,101,100,68,97,116,101,32,63,32,116,104,105,115,46,108,97,98,101,108,83,101,108,101,99,116,101,100,68,97,116,101,32,124,124,32,110,117,108,108,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,104,101,97,100,101,114,93,41,59,32,47,47,32,67,111,110,116,101,110,116,32,102,111,114,32,116,104,101,32,100,97,116,101,32,110,97,118,105,103,97,116,105,111,110,32,98,117,116,116,111,110,115,92,110,92,110,32,32,32,32,118,97,114,32,110,97,118,83,99,111,112,101,32,61,32,123,92,110,32,32,32,32,32,32,105,115,82,84,76,58,32,105,115,82,84,76,92,110,32,32,32,32,125,59,92,110,32,32,32,32,118,97,114,32,110,97,118,80,114,111,112,115,32,61,32,123,92,110,32,32,32,32,32,32,115,104,105,102,116,86,58,32,48,46,53,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,118,97,114,32,110,97,118,80,114,101,118,80,114,111,112,115,32,61,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,110,97,118,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,102,108,105,112,72,58,32,105,115,82,84,76,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,118,97,114,32,110,97,118,78,101,120,116,80,114,111,112,115,32,61,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,110,97,118,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,102,108,105,112,72,58,32,33,105,115,82,84,76,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,118,97,114,32,36,112,114,101,118,68,101,99,97,100,101,73,99,111,110,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,83,76,79,84,95,78,65,77,69,95,78,65,86,95,80,69,86,95,68,69,67,65,68,69,44,32,110,97,118,83,99,111,112,101,41,32,124,124,32,104,40,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,76,101,102,116,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,110,97,118,80,114,101,118,80,114,111,112,115,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,36,112,114,101,118,89,101,97,114,73,99,111,110,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,83,76,79,84,95,78,65,77,69,95,78,65,86,95,80,69,86,95,89,69,65,82,44,32,110,97,118,83,99,111,112,101,41,32,124,124,32,104,40,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,76,101,102,116,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,110,97,118,80,114,101,118,80,114,111,112,115,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,36,112,114,101,118,77,111,110,116,104,73,99,111,110,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,83,76,79,84,95,78,65,77,69,95,78,65,86,95,80,69,86,95,77,79,78,84,72,44,32,110,97,118,83,99,111,112,101,41,32,124,124,32,104,40,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,76,101,102,116,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,110,97,118,80,114,101,118,80,114,111,112,115,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,36,116,104,105,115,77,111,110,116,104,73,99,111,110,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,83,76,79,84,95,78,65,77,69,95,78,65,86,95,84,72,73,83,95,77,79,78,84,72,44,32,110,97,118,83,99,111,112,101,41,32,124,124,32,104,40,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,66,73,99,111,110,67,105,114,99,108,101,70,105,108,108,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,110,97,118,80,114,111,112,115,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,36,110,101,120,116,77,111,110,116,104,73,99,111,110,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,83,76,79,84,95,78,65,77,69,95,78,65,86,95,78,69,88,84,95,77,79,78,84,72,44,32,110,97,118,83,99,111,112,101,41,32,124,124,32,104,40,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,76,101,102,116,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,110,97,118,78,101,120,116,80,114,111,112,115,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,36,110,101,120,116,89,101,97,114,73,99,111,110,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,83,76,79,84,95,78,65,77,69,95,78,65,86,95,78,69,88,84,95,89,69,65,82,44,32,110,97,118,83,99,111,112,101,41,32,124,124,32,104,40,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,76,101,102,116,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,110,97,118,78,101,120,116,80,114,111,112,115,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,36,110,101,120,116,68,101,99,97,100,101,73,99,111,110,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,83,76,79,84,95,78,65,77,69,95,78,65,86,95,78,69,88,84,95,68,69,67,65,68,69,44,32,110,97,118,83,99,111,112,101,41,32,124,124,32,104,40,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,76,101,102,116,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,110,97,118,78,101,120,116,80,114,111,112,115,92,110,32,32,32,32,125,41,59,32,47,47,32,85,116,105,108,105,116,121,32,116,111,32,99,114,101,97,116,101,32,116,104,101,32,100,97,116,101,32,110,97,118,105,103,97,116,105,111,110,32,98,117,116,116,111,110,115,92,110,92,110,32,32,32,32,118,97,114,32,109,97,107,101,78,97,118,66,116,110,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,78,97,118,66,116,110,40,99,111,110,116,101,110,116,44,32,108,97,98,101,108,44,32,104,97,110,100,108,101,114,44,32,98,116,110,68,105,115,97,98,108,101,100,44,32,115,104,111,114,116,99,117,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,98,117,116,116,111,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,116,110,32,98,116,110,45,115,109,32,98,111,114,100,101,114,45,48,32,102,108,101,120,45,102,105,108,108,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,95,116,104,105,115,54,46,99,111,109,112,117,116,101,100,78,97,118,66,117,116,116,111,110,86,97,114,105,97,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,98,116,110,68,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,108,97,98,101,108,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,58,32,39,98,117,116,116,111,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,110,111,75,101,121,78,97,118,32,63,32,39,45,49,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,108,97,98,101,108,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,105,115,97,98,108,101,100,39,58,32,98,116,110,68,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,107,101,121,115,104,111,114,116,99,117,116,115,39,58,32,115,104,111,114,116,99,117,116,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,98,116,110,68,105,115,97,98,108,101,100,32,63,32,123,125,32,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,99,111,110,116,101,110,116,93,41,93,41,59,92,110,32,32,32,32,125,59,32,47,47,32,71,101,110,101,114,97,116,101,32,116,104,101,32,100,97,116,101,32,110,97,118,105,103,97,116,105,111,110,32,98,117,116,116,111,110,115,92,110,92,110,92,110,32,32,32,32,118,97,114,32,36,110,97,118,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,99,97,108,101,110,100,97,114,45,110,97,118,32,100,45,102,108,101,120,39,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,110,97,118,73,100,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,103,114,111,117,112,39,44,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,110,111,75,101,121,78,97,118,32,63,32,39,45,49,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,100,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,116,104,105,115,46,108,97,98,101,108,78,97,118,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,111,110,116,114,111,108,115,39,58,32,103,114,105,100,73,100,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,104,105,100,101,68,101,99,97,100,101,78,97,118,32,63,32,104,40,41,32,58,32,109,97,107,101,78,97,118,66,116,110,40,36,112,114,101,118,68,101,99,97,100,101,73,99,111,110,44,32,116,104,105,115,46,108,97,98,101,108,80,114,101,118,68,101,99,97,100,101,44,32,116,104,105,115,46,103,111,116,111,80,114,101,118,68,101,99,97,100,101,44,32,116,104,105,115,46,112,114,101,118,68,101,99,97,100,101,68,105,115,97,98,108,101,100,44,32,39,67,116,114,108,43,65,108,116,43,80,97,103,101,68,111,119,110,39,41,44,32,109,97,107,101,78,97,118,66,116,110,40,36,112,114,101,118,89,101,97,114,73,99,111,110,44,32,116,104,105,115,46,108,97,98,101,108,80,114,101,118,89,101,97,114,44,32,116,104,105,115,46,103,111,116,111,80,114,101,118,89,101,97,114,44,32,116,104,105,115,46,112,114,101,118,89,101,97,114,68,105,115,97,98,108,101,100,44,32,39,65,108,116,43,80,97,103,101,68,111,119,110,39,41,44,32,109,97,107,101,78,97,118,66,116,110,40,36,112,114,101,118,77,111,110,116,104,73,99,111,110,44,32,116,104,105,115,46,108,97,98,101,108,80,114,101,118,77,111,110,116,104,44,32,116,104,105,115,46,103,111,116,111,80,114,101,118,77,111,110,116,104,44,32,116,104,105,115,46,112,114,101,118,77,111,110,116,104,68,105,115,97,98,108,101,100,44,32,39,80,97,103,101,68,111,119,110,39,41,44,32,109,97,107,101,78,97,118,66,116,110,40,36,116,104,105,115,77,111,110,116,104,73,99,111,110,44,32,116,104,105,115,46,108,97,98,101,108,67,117,114,114,101,110,116,77,111,110,116,104,44,32,116,104,105,115,46,103,111,116,111,67,117,114,114,101,110,116,77,111,110,116,104,44,32,116,104,105,115,46,116,104,105,115,77,111,110,116,104,68,105,115,97,98,108,101,100,44,32,39,72,111,109,101,39,41,44,32,109,97,107,101,78,97,118,66,116,110,40,36,110,101,120,116,77,111,110,116,104,73,99,111,110,44,32,116,104,105,115,46,108,97,98,101,108,78,101,120,116,77,111,110,116,104,44,32,116,104,105,115,46,103,111,116,111,78,101,120,116,77,111,110,116,104,44,32,116,104,105,115,46,110,101,120,116,77,111,110,116,104,68,105,115,97,98,108,101,100,44,32,39,80,97,103,101,85,112,39,41,44,32,109,97,107,101,78,97,118,66,116,110,40,36,110,101,120,116,89,101,97,114,73,99,111,110,44,32,116,104,105,115,46,108,97,98,101,108,78,101,120,116,89,101,97,114,44,32,116,104,105,115,46,103,111,116,111,78,101,120,116,89,101,97,114,44,32,116,104,105,115,46,110,101,120,116,89,101,97,114,68,105,115,97,98,108,101,100,44,32,39,65,108,116,43,80,97,103,101,85,112,39,41,44,32,104,105,100,101,68,101,99,97,100,101,78,97,118,32,63,32,104,40,41,32,58,32,109,97,107,101,78,97,118,66,116,110,40,36,110,101,120,116,68,101,99,97,100,101,73,99,111,110,44,32,116,104,105,115,46,108,97,98,101,108,78,101,120,116,68,101,99,97,100,101,44,32,116,104,105,115,46,103,111,116,111,78,101,120,116,68,101,99,97,100,101,44,32,116,104,105,115,46,110,101,120,116,68,101,99,97,100,101,68,105,115,97,98,108,101,100,44,32,39,67,116,114,108,43,65,108,116,43,80,97,103,101,85,112,39,41,93,41,59,32,47,47,32,67,97,112,116,105,111,110,32,102,111,114,32,99,97,108,101,110,100,97,114,32,103,114,105,100,92,110,92,110,32,32,32,32,118,97,114,32,36,103,114,105,100,67,97,112,116,105,111,110,32,61,32,104,40,39,104,101,97,100,101,114,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,45,99,97,112,116,105,111,110,32,116,101,120,116,45,99,101,110,116,101,114,32,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,116,101,120,116,45,109,117,116,101,100,39,58,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,103,114,105,100,67,97,112,116,105,111,110,73,100,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,105,115,76,105,118,101,32,63,32,39,112,111,108,105,116,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,97,116,111,109,105,99,39,58,32,105,115,76,105,118,101,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,107,101,121,58,32,39,103,114,105,100,45,99,97,112,116,105,111,110,39,92,110,32,32,32,32,125,44,32,116,104,105,115,46,102,111,114,109,97,116,89,101,97,114,77,111,110,116,104,40,116,104,105,115,46,99,97,108,101,110,100,97,114,70,105,114,115,116,68,97,121,41,41,59,32,47,47,32,67,97,108,101,110,100,97,114,32,119,101,101,107,100,97,121,32,104,101,97,100,105,110,103,115,92,110,92,110,32,32,32,32,118,97,114,32,36,103,114,105,100,87,101,101,107,68,97,121,115,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,45,119,101,101,107,100,97,121,115,32,114,111,119,32,110,111,45,103,117,116,116,101,114,115,32,98,111,114,100,101,114,45,98,111,116,116,111,109,39,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,116,104,105,115,46,99,97,108,101,110,100,97,114,72,101,97,100,105,110,103,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,100,44,32,105,100,120,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,115,109,97,108,108,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,111,108,32,116,101,120,116,45,116,114,117,110,99,97,116,101,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,116,101,120,116,45,109,117,116,101,100,39,58,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,100,46,108,97,98,101,108,32,61,61,61,32,100,46,116,101,120,116,32,63,32,110,117,108,108,32,58,32,100,46,108,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,100,46,108,97,98,101,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,105,100,120,92,110,32,32,32,32,32,32,125,44,32,100,46,116,101,120,116,41,59,92,110,32,32,32,32,125,41,41,59,32,47,47,32,67,97,108,101,110,100,97,114,32,100,97,121,32,103,114,105,100,92,110,92,110,32,32,32,32,118,97,114,32,36,103,114,105,100,66,111,100,121,32,61,32,116,104,105,115,46,99,97,108,101,110,100,97,114,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,119,101,101,107,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,99,101,108,108,115,32,61,32,119,101,101,107,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,100,97,121,44,32,100,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,95,99,108,97,115,115,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,115,83,101,108,101,99,116,101,100,32,61,32,100,97,121,46,121,109,100,32,61,61,61,32,115,101,108,101,99,116,101,100,89,77,68,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,115,65,99,116,105,118,101,32,61,32,100,97,121,46,121,109,100,32,61,61,61,32,97,99,116,105,118,101,89,77,68,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,115,84,111,100,97,121,32,61,32,100,97,121,46,121,109,100,32,61,61,61,32,116,111,100,97,121,89,77,68,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,100,67,101,108,108,32,61,32,115,97,102,101,73,100,40,92,34,95,99,101,108,108,45,92,34,46,99,111,110,99,97,116,40,100,97,121,46,121,109,100,44,32,92,34,95,92,34,41,41,59,32,47,47,32,92,34,102,97,107,101,92,34,32,98,117,116,116,111,110,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,36,98,116,110,32,61,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,116,110,32,98,111,114,100,101,114,45,48,32,114,111,117,110,100,101,100,45,99,105,114,99,108,101,32,116,101,120,116,45,110,111,119,114,97,112,39,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,83,104,111,117,108,100,32,119,101,32,97,100,100,32,115,111,109,101,32,99,108,97,115,115,101,115,32,116,111,32,115,105,103,110,105,102,121,32,105,102,32,116,111,100,97,121,47,115,101,108,101,99,116,101,100,47,101,116,99,63,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,40,95,99,108,97,115,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,71,105,118,101,32,116,104,101,32,102,97,107,101,32,98,117,116,116,111,110,32,97,32,102,111,99,117,115,32,114,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,99,117,115,58,32,105,115,65,99,116,105,118,101,32,38,38,32,95,116,104,105,115,54,46,103,114,105,100,72,97,115,70,111,99,117,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,116,121,108,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,97,121,46,105,115,68,105,115,97,98,108,101,100,32,124,124,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,58,32,105,115,83,101,108,101,99,116,101,100,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,95,116,104,105,115,54,46,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,44,32,105,115,83,101,108,101,99,116,101,100,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,95,116,104,105,115,54,46,99,111,109,112,117,116,101,100,84,111,100,97,121,86,97,114,105,97,110,116,44,32,105,115,84,111,100,97,121,32,38,38,32,104,105,103,104,108,105,103,104,116,84,111,100,97,121,32,38,38,32,33,105,115,83,101,108,101,99,116,101,100,32,38,38,32,100,97,121,46,105,115,84,104,105,115,77,111,110,116,104,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,39,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,39,44,32,33,40,105,115,84,111,100,97,121,32,38,38,32,104,105,103,104,108,105,103,104,116,84,111,100,97,121,41,32,38,38,32,33,105,115,83,101,108,101,99,116,101,100,32,38,38,32,33,105,115,65,99,116,105,118,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,39,98,116,110,45,108,105,103,104,116,39,44,32,33,40,105,115,84,111,100,97,121,32,38,38,32,104,105,103,104,108,105,103,104,116,84,111,100,97,121,41,32,38,38,32,33,105,115,83,101,108,101,99,116,101,100,32,38,38,32,105,115,65,99,116,105,118,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,39,116,101,120,116,45,109,117,116,101,100,39,44,32,33,100,97,121,46,105,115,84,104,105,115,77,111,110,116,104,32,38,38,32,33,105,115,83,101,108,101,99,116,101,100,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,39,116,101,120,116,45,100,97,114,107,39,44,32,33,40,105,115,84,111,100,97,121,32,38,38,32,104,105,103,104,108,105,103,104,116,84,111,100,97,121,41,32,38,38,32,33,105,115,83,101,108,101,99,116,101,100,32,38,38,32,33,105,115,65,99,116,105,118,101,32,38,38,32,100,97,121,46,105,115,84,104,105,115,77,111,110,116,104,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,39,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,39,44,32,40,105,115,83,101,108,101,99,116,101,100,32,124,124,32,100,97,121,46,105,115,84,104,105,115,77,111,110,116,104,41,32,38,38,32,33,100,97,121,46,105,115,68,105,115,97,98,108,101,100,41,44,32,95,99,108,97,115,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,54,46,111,110,67,108,105,99,107,68,97,121,40,100,97,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,100,97,121,46,100,97,121,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,47,47,32,67,101,108,108,32,119,105,116,104,32,98,117,116,116,111,110,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,111,108,32,112,45,48,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,100,97,121,46,105,115,68,105,115,97,98,108,101,100,32,63,32,39,98,103,45,108,105,103,104,116,39,32,58,32,100,97,121,46,105,110,102,111,46,99,108,97,115,115,32,124,124,32,39,39,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,105,100,67,101,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,98,117,116,116,111,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,100,97,116,97,45,100,97,116,101,39,58,32,100,97,121,46,121,109,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,80,114,105,109,97,114,105,108,121,32,102,111,114,32,116,101,115,116,105,110,103,32,112,117,114,112,111,115,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,79,110,108,121,32,100,97,121,115,32,105,110,32,116,104,101,32,109,111,110,116,104,32,97,114,101,32,112,114,101,115,101,110,116,101,100,32,97,115,32,98,117,116,116,111,110,115,32,116,111,32,115,99,114,101,101,110,32,114,101,97,100,101,114,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,100,97,121,46,105,115,84,104,105,115,77,111,110,116,104,32,63,32,110,117,108,108,32,58,32,39,116,114,117,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,105,115,97,98,108,101,100,39,58,32,100,97,121,46,105,115,68,105,115,97,98,108,101,100,32,124,124,32,100,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,91,100,97,121,46,108,97,98,101,108,44,32,105,115,83,101,108,101,99,116,101,100,32,63,32,92,34,40,92,34,46,99,111,110,99,97,116,40,95,116,104,105,115,54,46,108,97,98,101,108,83,101,108,101,99,116,101,100,44,32,92,34,41,92,34,41,32,58,32,110,117,108,108,44,32,105,115,84,111,100,97,121,32,63,32,92,34,40,92,34,46,99,111,110,99,97,116,40,95,116,104,105,115,54,46,108,97,98,101,108,84,111,100,97,121,44,32,92,34,41,92,34,41,32,58,32,110,117,108,108,93,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,32,39,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,78,86,68,65,32,100,111,101,115,110,39,116,32,99,111,110,118,101,121,32,96,97,114,105,97,45,115,101,108,101,99,116,101,100,96,44,32,98,117,116,32,100,111,101,115,32,96,97,114,105,97,45,99,117,114,114,101,110,116,96,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,104,114,111,109,101,86,111,120,32,100,111,101,115,110,39,116,32,99,111,110,118,101,121,32,96,97,114,105,97,45,99,117,114,114,101,110,116,96,44,32,98,117,116,32,100,111,101,115,32,96,97,114,105,97,45,115,101,108,101,99,116,101,100,96,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,115,111,32,119,101,32,115,101,116,32,98,111,116,104,32,97,116,116,114,105,98,117,116,101,115,32,102,111,114,32,114,111,98,117,115,116,110,101,115,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,115,101,108,101,99,116,101,100,39,58,32,105,115,83,101,108,101,99,116,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,117,114,114,101,110,116,39,58,32,105,115,83,101,108,101,99,116,101,100,32,63,32,39,100,97,116,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,100,73,110,100,101,120,92,110,32,32,32,32,32,32,32,32,125,44,32,91,36,98,116,110,93,41,59,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,119,101,101,107,32,92,34,114,111,119,92,34,92,110,32,32,32,32,32,32,47,47,32,87,101,32,117,115,101,32,116,104,101,32,102,105,114,115,116,32,100,97,121,32,111,102,32,116,104,101,32,119,101,101,107,115,32,89,77,68,32,118,97,108,117,101,32,97,115,32,97,92,110,32,32,32,32,32,32,47,47,32,107,101,121,32,102,111,114,32,101,102,102,105,99,105,101,110,116,32,68,79,77,32,112,97,116,99,104,105,110,103,32,47,32,101,108,101,109,101,110,116,32,114,101,45,117,115,101,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,114,111,119,32,110,111,45,103,117,116,116,101,114,115,39,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,119,101,101,107,91,48,93,46,121,109,100,92,110,32,32,32,32,32,32,125,44,32,36,99,101,108,108,115,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,36,103,114,105,100,66,111,100,121,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,47,47,32,65,32,107,101,121,32,105,115,32,111,110,108,121,32,114,101,113,117,105,114,101,100,32,111,110,32,116,104,101,32,98,111,100,121,32,105,102,32,119,101,32,97,100,100,32,105,110,32,116,114,97,110,115,105,116,105,111,110,32,115,117,112,112,111,114,116,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,45,98,111,100,121,39,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,100,105,115,97,98,108,101,100,32,63,32,123,92,110,32,32,32,32,32,32,32,32,112,111,105,110,116,101,114,69,118,101,110,116,115,58,32,39,110,111,110,101,39,92,110,32,32,32,32,32,32,125,32,58,32,123,125,32,47,47,32,107,101,121,58,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,46,115,108,105,99,101,40,48,44,32,45,51,41,92,110,92,110,32,32,32,32,125,44,32,36,103,114,105,100,66,111,100,121,41,59,92,110,32,32,32,32,118,97,114,32,36,103,114,105,100,72,101,108,112,32,61,32,104,40,39,102,111,111,116,101,114,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,45,104,101,108,112,32,98,111,114,100,101,114,45,116,111,112,32,115,109,97,108,108,32,116,101,120,116,45,109,117,116,101,100,32,116,101,120,116,45,99,101,110,116,101,114,32,98,103,45,108,105,103,104,116,39,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,103,114,105,100,72,101,108,112,73,100,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,115,109,97,108,108,39,92,110,32,32,32,32,125,44,32,116,104,105,115,46,108,97,98,101,108,72,101,108,112,41,93,41,59,92,110,32,32,32,32,118,97,114,32,36,103,114,105,100,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,32,102,111,114,109,45,99,111,110,116,114,111,108,32,104,45,97,117,116,111,32,116,101,120,116,45,99,101,110,116,101,114,39,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,103,114,105,100,73,100,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,97,112,112,108,105,99,97,116,105,111,110,39,44,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,110,111,75,101,121,78,97,118,32,63,32,39,45,49,39,32,58,32,100,105,115,97,98,108,101,100,32,63,32,110,117,108,108,32,58,32,39,48,39,44,92,110,32,32,32,32,32,32,32,32,39,100,97,116,97,45,109,111,110,116,104,39,58,32,97,99,116,105,118,101,89,77,68,46,115,108,105,99,101,40,48,44,32,45,51,41,44,92,110,32,32,32,32,32,32,32,32,47,47,32,96,89,89,89,89,45,77,77,96,44,32,109,97,105,110,108,121,32,102,111,114,32,116,101,115,116,105,110,103,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,111,108,101,100,101,115,99,114,105,112,116,105,111,110,39,58,32,116,104,105,115,46,108,97,98,101,108,67,97,108,101,110,100,97,114,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,39,58,32,103,114,105,100,67,97,112,116,105,111,110,73,100,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,58,32,103,114,105,100,72,101,108,112,73,100,44,92,110,32,32,32,32,32,32,32,32,47,47,32,96,97,114,105,97,45,114,101,97,100,111,110,108,121,96,32,105,115,32,110,111,116,32,99,111,110,115,105,100,101,114,101,100,32,118,97,108,105,100,32,111,110,32,96,114,111,108,101,61,92,34,97,112,112,108,105,99,97,116,105,111,110,92,34,96,92,110,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,119,119,119,46,119,51,46,111,114,103,47,84,82,47,119,97,105,45,97,114,105,97,45,49,46,49,47,35,97,114,105,97,45,114,101,97,100,111,110,108,121,92,110,32,32,32,32,32,32,32,32,47,47,32,39,97,114,105,97,45,114,101,97,100,111,110,108,121,39,58,32,116,104,105,115,46,114,101,97,100,111,110,108,121,32,38,38,32,33,100,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,105,115,97,98,108,101,100,39,58,32,100,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,97,99,116,105,118,101,100,101,115,99,101,110,100,97,110,116,39,58,32,97,99,116,105,118,101,73,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,111,110,75,101,121,100,111,119,110,71,114,105,100,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,58,32,116,104,105,115,46,115,101,116,71,114,105,100,70,111,99,117,115,70,108,97,103,44,92,110,32,32,32,32,32,32,32,32,98,108,117,114,58,32,116,104,105,115,46,115,101,116,71,114,105,100,70,111,99,117,115,70,108,97,103,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,103,114,105,100,39,92,110,32,32,32,32,125,44,32,91,36,103,114,105,100,67,97,112,116,105,111,110,44,32,36,103,114,105,100,87,101,101,107,68,97,121,115,44,32,36,103,114,105,100,66,111,100,121,44,32,36,103,114,105,100,72,101,108,112,93,41,59,32,47,47,32,79,112,116,105,111,110,97,108,32,98,111,116,116,111,109,32,115,108,111,116,92,110,92,110,32,32,32,32,118,97,114,32,36,115,108,111,116,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,59,92,110,32,32,32,32,36,115,108,111,116,32,61,32,36,115,108,111,116,32,63,32,104,40,39,102,111,111,116,101,114,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,99,97,108,101,110,100,97,114,45,102,111,111,116,101,114,39,92,110,32,32,32,32,125,44,32,36,115,108,111,116,41,32,58,32,104,40,41,59,92,110,32,32,32,32,118,97,114,32,36,119,105,100,103,101,116,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,99,97,108,101,110,100,97,114,45,105,110,110,101,114,39,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,116,104,105,115,46,98,108,111,99,107,32,63,32,123,125,32,58,32,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,116,104,105,115,46,119,105,100,116,104,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,119,105,100,103,101,116,73,100,44,92,110,32,32,32,32,32,32,32,32,100,105,114,58,32,105,115,82,84,76,32,63,32,39,114,116,108,39,32,58,32,39,108,116,114,39,44,92,110,32,32,32,32,32,32,32,32,108,97,110,103,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,103,114,111,117,112,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,105,115,97,98,108,101,100,39,58,32,100,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,100,97,116,101,112,105,99,107,101,114,32,99,111,110,116,114,111,108,115,32,97,110,32,105,110,112,117,116,44,32,116,104,105,115,32,119,105,108,108,32,115,112,101,99,105,102,121,32,116,104,101,32,73,68,32,111,102,32,116,104,101,32,105,110,112,117,116,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,111,110,116,114,111,108,115,39,58,32,116,104,105,115,46,97,114,105,97,67,111,110,116,114,111,108,115,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,105,115,32,115,104,111,117,108,100,32,98,101,32,97,32,112,114,111,112,32,40,115,111,32,105,116,32,99,97,110,32,98,101,32,99,104,97,110,103,101,100,32,116,111,32,68,97,116,101,32,112,105,99,107,101,114,44,32,101,116,99,44,32,108,111,99,97,108,105,122,101,100,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,111,108,101,100,101,115,99,114,105,112,116,105,111,110,39,58,32,116,104,105,115,46,114,111,108,101,68,101,115,99,114,105,112,116,105,111,110,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,58,32,91,47,47,32,83,104,111,117,108,100,32,116,104,101,32,97,116,116,114,32,40,105,102,32,112,114,101,115,101,110,116,41,32,103,111,32,108,97,115,116,63,92,110,32,32,32,32,32,32,32,32,47,47,32,79,114,32,115,104,111,117,108,100,32,116,104,105,115,32,97,116,116,114,32,98,101,32,97,32,112,114,111,112,63,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,98,118,65,116,116,114,115,91,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,93,44,32,118,97,108,117,101,73,100,44,32,103,114,105,100,72,101,108,112,73,100,93,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,32,39,41,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,111,110,75,101,121,100,111,119,110,87,114,97,112,112,101,114,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,104,101,97,100,101,114,44,32,36,110,97,118,44,32,36,103,114,105,100,44,32,36,115,108,111,116,93,41,59,32,47,47,32,87,114,97,112,32,105,110,32,97,110,32,111,117,116,101,114,32,100,105,118,32,116,104,97,116,32,99,97,110,32,98,101,32,115,116,121,108,101,100,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,99,97,108,101,110,100,97,114,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,100,45,98,108,111,99,107,39,58,32,116,104,105,115,46,98,108,111,99,107,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,119,105,100,103,101,116,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,108,101,110,100,97,114,47,99,97,108,101,110,100,97,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,108,101,110,100,97,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,108,101,110,100,97,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,108,101,110,100,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,108,101,110,100,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,67,97,108,101,110,100,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,97,108,101,110,100,97,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,97,108,101,110,100,97,114,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,108,101,110,100,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,108,101,110,100,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,108,101,110,100,97,114,47,99,97,108,101,110,100,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,67,97,108,101,110,100,97,114,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,67,97,108,101,110,100,97,114,58,32,95,99,97,108,101,110,100,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,67,97,108,101,110,100,97,114,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,108,101,110,100,97,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,98,111,100,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,98,111,100,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,66,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,97,114,100,66,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,99,97,114,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,99,97,114,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,116,105,116,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,116,105,116,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,115,117,98,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,115,117,98,45,116,105,116,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,115,117,98,45,116,105,116,108,101,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,99,97,114,100,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,95,99,97,114,100,95,115,117,98,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,112,121,80,114,111,112,115,41,40,95,109,105,120,105,110,115,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,44,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,114,101,102,105,120,80,114,111,112,78,97,109,101,46,98,105,110,100,40,110,117,108,108,44,32,39,98,111,100,121,39,41,41,41,44,32,123,125,44,32,123,92,110,32,32,98,111,100,121,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,111,118,101,114,108,97,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,67,65,82,68,95,66,79,68,89,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,97,114,100,66,111,100,121,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,67,65,82,68,95,66,79,68,89,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,95,114,101,102,50,59,92,110,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,98,111,100,121,66,103,86,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,98,111,100,121,66,103,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,98,111,100,121,66,111,114,100,101,114,86,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,98,111,100,121,66,111,114,100,101,114,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,98,111,100,121,84,101,120,116,86,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,98,111,100,121,84,101,120,116,86,97,114,105,97,110,116,59,92,110,32,32,32,32,118,97,114,32,36,116,105,116,108,101,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,112,114,111,112,115,46,116,105,116,108,101,41,32,123,92,110,32,32,32,32,32,32,36,116,105,116,108,101,32,61,32,104,40,95,99,97,114,100,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,67,97,114,100,84,105,116,108,101,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,95,99,97,114,100,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,44,32,112,114,111,112,115,41,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,115,117,98,84,105,116,108,101,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,112,114,111,112,115,46,115,117,98,84,105,116,108,101,41,32,123,92,110,32,32,32,32,32,32,36,115,117,98,84,105,116,108,101,32,61,32,104,40,95,99,97,114,100,95,115,117,98,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,67,97,114,100,83,117,98,84,105,116,108,101,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,95,99,97,114,100,95,115,117,98,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,44,32,112,114,111,112,115,41,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,39,109,98,45,50,39,93,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,98,111,100,121,84,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,97,114,100,45,98,111,100,121,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,40,95,114,101,102,50,32,61,32,123,92,110,32,32,32,32,32,32,32,32,39,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,39,58,32,112,114,111,112,115,46,111,118,101,114,108,97,121,92,110,32,32,32,32,32,32,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,50,44,32,92,34,98,103,45,92,34,46,99,111,110,99,97,116,40,98,111,100,121,66,103,86,97,114,105,97,110,116,41,44,32,98,111,100,121,66,103,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,50,44,32,92,34,98,111,114,100,101,114,45,92,34,46,99,111,110,99,97,116,40,98,111,100,121,66,111,114,100,101,114,86,97,114,105,97,110,116,41,44,32,98,111,100,121,66,111,114,100,101,114,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,50,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,98,111,100,121,84,101,120,116,86,97,114,105,97,110,116,41,44,32,98,111,100,121,84,101,120,116,86,97,114,105,97,110,116,41,44,32,95,114,101,102,50,41,44,32,112,114,111,112,115,46,98,111,100,121,67,108,97,115,115,93,92,110,32,32,32,32,125,41,44,32,91,36,116,105,116,108,101,44,32,36,115,117,98,84,105,116,108,101,44,32,99,104,105,108,100,114,101,110,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,98,111,100,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,102,111,111,116,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,102,111,111,116,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,70,111,111,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,97,114,100,70,111,111,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,99,97,114,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,99,97,114,100,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,112,121,80,114,111,112,115,41,40,95,109,105,120,105,110,115,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,44,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,114,101,102,105,120,80,114,111,112,78,97,109,101,46,98,105,110,100,40,110,117,108,108,44,32,39,102,111,111,116,101,114,39,41,41,41,44,32,123,125,44,32,123,92,110,32,32,102,111,111,116,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,102,111,111,116,101,114,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,102,111,111,116,101,114,72,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,67,65,82,68,95,70,79,79,84,69,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,97,114,100,70,111,111,116,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,67,65,82,68,95,70,79,79,84,69,82,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,95,114,101,102,50,59,92,110,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,102,111,111,116,101,114,66,103,86,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,102,111,111,116,101,114,66,103,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,102,111,111,116,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,102,111,111,116,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,102,111,111,116,101,114,84,101,120,116,86,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,102,111,111,116,101,114,84,101,120,116,86,97,114,105,97,110,116,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,102,111,111,116,101,114,84,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,97,114,100,45,102,111,111,116,101,114,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,112,114,111,112,115,46,102,111,111,116,101,114,67,108,97,115,115,44,32,40,95,114,101,102,50,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,50,44,32,92,34,98,103,45,92,34,46,99,111,110,99,97,116,40,102,111,111,116,101,114,66,103,86,97,114,105,97,110,116,41,44,32,102,111,111,116,101,114,66,103,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,50,44,32,92,34,98,111,114,100,101,114,45,92,34,46,99,111,110,99,97,116,40,102,111,111,116,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,41,44,32,102,111,111,116,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,50,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,102,111,111,116,101,114,84,101,120,116,86,97,114,105,97,110,116,41,44,32,102,111,111,116,101,114,84,101,120,116,86,97,114,105,97,110,116,41,44,32,95,114,101,102,50,41,93,44,92,110,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,99,104,105,108,100,114,101,110,32,63,32,123,125,32,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,112,114,111,112,115,46,102,111,111,116,101,114,72,116,109,108,44,32,112,114,111,112,115,46,102,111,111,116,101,114,41,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,102,111,111,116,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,103,114,111,117,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,103,114,111,117,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,97,114,100,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,99,111,108,117,109,110,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,100,101,99,107,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,67,65,82,68,95,71,82,79,85,80,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,97,114,100,71,114,111,117,112,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,67,65,82,68,95,71,82,79,85,80,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,112,114,111,112,115,46,100,101,99,107,32,63,32,39,99,97,114,100,45,100,101,99,107,39,32,58,32,112,114,111,112,115,46,99,111,108,117,109,110,115,32,63,32,39,99,97,114,100,45,99,111,108,117,109,110,115,39,32,58,32,39,99,97,114,100,45,103,114,111,117,112,39,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,103,114,111,117,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,104,101,97,100,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,104,101,97,100,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,72,101,97,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,97,114,100,72,101,97,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,99,97,114,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,99,97,114,100,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,112,121,80,114,111,112,115,41,40,95,109,105,120,105,110,115,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,44,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,114,101,102,105,120,80,114,111,112,78,97,109,101,46,98,105,110,100,40,110,117,108,108,44,32,39,104,101,97,100,101,114,39,41,41,41,44,32,123,125,44,32,123,92,110,32,32,104,101,97,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,104,101,97,100,101,114,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,104,101,97,100,101,114,72,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,67,65,82,68,95,72,69,65,68,69,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,97,114,100,72,101,97,100,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,67,65,82,68,95,72,69,65,68,69,82,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,95,114,101,102,50,59,92,110,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,104,101,97,100,101,114,66,103,86,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,104,101,97,100,101,114,66,103,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,104,101,97,100,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,104,101,97,100,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,104,101,97,100,101,114,84,101,120,116,86,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,104,101,97,100,101,114,84,101,120,116,86,97,114,105,97,110,116,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,104,101,97,100,101,114,84,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,97,114,100,45,104,101,97,100,101,114,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,112,114,111,112,115,46,104,101,97,100,101,114,67,108,97,115,115,44,32,40,95,114,101,102,50,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,50,44,32,92,34,98,103,45,92,34,46,99,111,110,99,97,116,40,104,101,97,100,101,114,66,103,86,97,114,105,97,110,116,41,44,32,104,101,97,100,101,114,66,103,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,50,44,32,92,34,98,111,114,100,101,114,45,92,34,46,99,111,110,99,97,116,40,104,101,97,100,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,41,44,32,104,101,97,100,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,50,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,104,101,97,100,101,114,84,101,120,116,86,97,114,105,97,110,116,41,44,32,104,101,97,100,101,114,84,101,120,116,86,97,114,105,97,110,116,41,44,32,95,114,101,102,50,41,93,44,92,110,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,99,104,105,108,100,114,101,110,32,63,32,123,125,32,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,112,114,111,112,115,46,104,101,97,100,101,114,72,116,109,108,44,32,112,114,111,112,115,46,104,101,97,100,101,114,41,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,104,101,97,100,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,105,109,103,45,108,97,122,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,105,109,103,45,108,97,122,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,73,109,103,76,97,122,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,97,114,100,73,109,103,76,97,122,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,109,97,103,101,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,105,109,97,103,101,47,105,109,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,109,97,103,101,95,105,109,103,95,108,97,122,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,105,109,97,103,101,47,105,109,103,45,108,97,122,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,45,108,97,122,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,105,109,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,105,109,103,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,111,109,105,116,41,40,95,105,109,97,103,101,95,105,109,103,95,108,97,122,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,107,101,121,115,41,40,95,105,109,97,103,101,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,41,41,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,111,109,105,116,41,40,95,99,97,114,100,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,44,32,91,39,115,114,99,39,44,32,39,97,108,116,39,44,32,39,119,105,100,116,104,39,44,32,39,104,101,105,103,104,116,39,93,41,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,67,65,82,68,95,73,77,71,95,76,65,90,89,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,97,114,100,73,109,103,76,97,122,121,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,67,65,82,68,95,73,77,71,95,76,65,90,89,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,59,92,110,32,32,32,32,118,97,114,32,98,97,115,101,67,108,97,115,115,32,61,32,39,99,97,114,100,45,105,109,103,39,59,92,110,92,110,32,32,32,32,105,102,32,40,112,114,111,112,115,46,116,111,112,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,67,108,97,115,115,32,43,61,32,39,45,116,111,112,39,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,112,114,111,112,115,46,114,105,103,104,116,32,124,124,32,112,114,111,112,115,46,101,110,100,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,67,108,97,115,115,32,43,61,32,39,45,114,105,103,104,116,39,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,112,114,111,112,115,46,98,111,116,116,111,109,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,67,108,97,115,115,32,43,61,32,39,45,98,111,116,116,111,109,39,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,112,114,111,112,115,46,108,101,102,116,32,124,124,32,112,114,111,112,115,46,115,116,97,114,116,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,67,108,97,115,115,32,43,61,32,39,45,108,101,102,116,39,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,95,105,109,97,103,101,95,105,109,103,95,108,97,122,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,73,109,103,76,97,122,121,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,98,97,115,101,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,47,47,32,69,120,99,108,117,100,101,32,96,108,101,102,116,96,32,97,110,100,32,96,114,105,103,104,116,96,32,112,114,111,112,115,32,98,101,102,111,114,101,32,112,97,115,115,105,110,103,32,116,111,32,96,60,98,45,105,109,103,45,108,97,122,121,62,96,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,111,109,105,116,41,40,112,114,111,112,115,44,32,91,39,108,101,102,116,39,44,32,39,114,105,103,104,116,39,93,41,92,110,32,32,32,32,125,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,105,109,103,45,108,97,122,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,105,109,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,105,109,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,73,109,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,97,114,100,73,109,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,109,97,103,101,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,105,109,97,103,101,47,105,109,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,99,107,41,40,95,105,109,97,103,101,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,44,32,91,39,115,114,99,39,44,32,39,97,108,116,39,44,32,39,119,105,100,116,104,39,44,32,39,104,101,105,103,104,116,39,44,32,39,108,101,102,116,39,44,32,39,114,105,103,104,116,39,93,41,41,44,32,123,125,44,32,123,92,110,32,32,98,111,116,116,111,109,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,101,110,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,116,97,114,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,111,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,67,65,82,68,95,73,77,71,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,97,114,100,73,109,103,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,67,65,82,68,95,73,77,71,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,59,92,110,32,32,32,32,118,97,114,32,115,114,99,32,61,32,112,114,111,112,115,46,115,114,99,44,92,110,32,32,32,32,32,32,32,32,97,108,116,32,61,32,112,114,111,112,115,46,97,108,116,44,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,32,61,32,112,114,111,112,115,46,119,105,100,116,104,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,32,61,32,112,114,111,112,115,46,104,101,105,103,104,116,59,92,110,32,32,32,32,118,97,114,32,98,97,115,101,67,108,97,115,115,32,61,32,39,99,97,114,100,45,105,109,103,39,59,92,110,92,110,32,32,32,32,105,102,32,40,112,114,111,112,115,46,116,111,112,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,67,108,97,115,115,32,43,61,32,39,45,116,111,112,39,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,112,114,111,112,115,46,114,105,103,104,116,32,124,124,32,112,114,111,112,115,46,101,110,100,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,67,108,97,115,115,32,43,61,32,39,45,114,105,103,104,116,39,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,112,114,111,112,115,46,98,111,116,116,111,109,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,67,108,97,115,115,32,43,61,32,39,45,98,111,116,116,111,109,39,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,112,114,111,112,115,46,108,101,102,116,32,124,124,32,112,114,111,112,115,46,115,116,97,114,116,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,67,108,97,115,115,32,43,61,32,39,45,108,101,102,116,39,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,105,109,103,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,98,97,115,101,67,108,97,115,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,115,114,99,58,32,115,114,99,44,92,110,32,32,32,32,32,32,32,32,97,108,116,58,32,97,108,116,44,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,119,105,100,116,104,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,104,101,105,103,104,116,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,105,109,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,115,117,98,45,116,105,116,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,115,117,98,45,116,105,116,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,83,117,98,84,105,116,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,97,114,100,83,117,98,84,105,116,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,115,117,98,84,105,116,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,115,117,98,84,105,116,108,101,84,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,104,54,39,41,44,92,110,32,32,115,117,98,84,105,116,108,101,84,101,120,116,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,109,117,116,101,100,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,67,65,82,68,95,83,85,66,95,84,73,84,76,69,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,97,114,100,83,117,98,84,105,116,108,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,67,65,82,68,95,83,85,66,95,84,73,84,76,69,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,115,117,98,84,105,116,108,101,84,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,97,114,100,45,115,117,98,116,105,116,108,101,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,112,114,111,112,115,46,115,117,98,84,105,116,108,101,84,101,120,116,86,97,114,105,97,110,116,32,63,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,112,114,111,112,115,46,115,117,98,84,105,116,108,101,84,101,120,116,86,97,114,105,97,110,116,41,32,58,32,110,117,108,108,93,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,32,124,124,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,83,116,114,105,110,103,41,40,112,114,111,112,115,46,115,117,98,84,105,116,108,101,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,115,117,98,45,116,105,116,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,116,101,120,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,116,101,120,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,97,114,100,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,116,101,120,116,84,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,112,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,67,65,82,68,95,84,69,88,84,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,97,114,100,84,101,120,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,67,65,82,68,95,84,69,88,84,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,101,120,116,84,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,97,114,100,45,116,101,120,116,39,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,116,101,120,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,116,105,116,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,116,105,116,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,84,105,116,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,97,114,100,84,105,116,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,116,105,116,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,105,116,108,101,84,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,104,52,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,67,65,82,68,95,84,73,84,76,69,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,97,114,100,84,105,116,108,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,67,65,82,68,95,84,73,84,76,69,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,105,116,108,101,84,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,97,114,100,45,116,105,116,108,101,39,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,32,124,124,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,83,116,114,105,110,103,41,40,112,114,111,112,115,46,116,105,116,108,101,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,116,105,116,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,99,97,114,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,99,97,114,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,98,111,100,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,98,111,100,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,104,101,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,104,101,97,100,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,104,101,97,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,102,111,111,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,102,111,111,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,102,111,111,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,105,109,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,105,109,103,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,99,97,114,100,73,109,103,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,112,121,80,114,111,112,115,41,40,95,99,97,114,100,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,114,101,102,105,120,80,114,111,112,78,97,109,101,46,98,105,110,100,40,110,117,108,108,44,32,39,105,109,103,39,41,41,59,92,110,99,97,114,100,73,109,103,80,114,111,112,115,46,105,109,103,83,114,99,46,114,101,113,117,105,114,101,100,32,61,32,102,97,108,115,101,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,99,97,114,100,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,95,99,97,114,100,95,104,101,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,41,44,32,95,99,97,114,100,95,102,111,111,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,41,44,32,99,97,114,100,73,109,103,80,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,108,105,103,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,110,111,66,111,100,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,67,65,82,68,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,97,114,100,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,67,65,82,68,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,95,99,108,97,115,115,59,92,110,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,115,108,111,116,115,32,61,32,95,114,101,102,46,115,108,111,116,115,44,92,110,32,32,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,32,61,32,95,114,101,102,46,115,99,111,112,101,100,83,108,111,116,115,59,92,110,32,32,32,32,118,97,114,32,105,109,103,83,114,99,32,61,32,112,114,111,112,115,46,105,109,103,83,114,99,44,92,110,32,32,32,32,32,32,32,32,105,109,103,76,101,102,116,32,61,32,112,114,111,112,115,46,105,109,103,76,101,102,116,44,92,110,32,32,32,32,32,32,32,32,105,109,103,82,105,103,104,116,32,61,32,112,114,111,112,115,46,105,109,103,82,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,105,109,103,83,116,97,114,116,32,61,32,112,114,111,112,115,46,105,109,103,83,116,97,114,116,44,92,110,32,32,32,32,32,32,32,32,105,109,103,69,110,100,32,61,32,112,114,111,112,115,46,105,109,103,69,110,100,44,92,110,32,32,32,32,32,32,32,32,105,109,103,66,111,116,116,111,109,32,61,32,112,114,111,112,115,46,105,109,103,66,111,116,116,111,109,44,92,110,32,32,32,32,32,32,32,32,104,101,97,100,101,114,32,61,32,112,114,111,112,115,46,104,101,97,100,101,114,44,92,110,32,32,32,32,32,32,32,32,104,101,97,100,101,114,72,116,109,108,32,61,32,112,114,111,112,115,46,104,101,97,100,101,114,72,116,109,108,44,92,110,32,32,32,32,32,32,32,32,102,111,111,116,101,114,32,61,32,112,114,111,112,115,46,102,111,111,116,101,114,44,92,110,32,32,32,32,32,32,32,32,102,111,111,116,101,114,72,116,109,108,32,61,32,112,114,111,112,115,46,102,111,111,116,101,114,72,116,109,108,44,92,110,32,32,32,32,32,32,32,32,97,108,105,103,110,32,61,32,112,114,111,112,115,46,97,108,105,103,110,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,86,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,116,101,120,116,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,98,103,86,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,98,103,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,98,111,114,100,101,114,86,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,98,111,114,100,101,114,86,97,114,105,97,110,116,59,92,110,32,32,32,32,118,97,114,32,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,115,99,111,112,101,100,83,108,111,116,115,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,36,115,108,111,116,115,32,61,32,115,108,111,116,115,40,41,59,92,110,32,32,32,32,118,97,114,32,115,108,111,116,83,99,111,112,101,32,61,32,123,125,59,92,110,32,32,32,32,118,97,114,32,36,105,109,103,70,105,114,115,116,32,61,32,104,40,41,59,92,110,32,32,32,32,118,97,114,32,36,105,109,103,76,97,115,116,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,105,109,103,83,114,99,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,105,109,103,32,61,32,104,40,95,99,97,114,100,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,67,97,114,100,73,109,103,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,99,97,114,100,73,109,103,80,114,111,112,115,44,32,112,114,111,112,115,44,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,110,112,114,101,102,105,120,80,114,111,112,78,97,109,101,46,98,105,110,100,40,110,117,108,108,44,32,39,105,109,103,39,41,41,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,109,103,66,111,116,116,111,109,41,32,123,92,110,32,32,32,32,32,32,32,32,36,105,109,103,76,97,115,116,32,61,32,36,105,109,103,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,36,105,109,103,70,105,114,115,116,32,61,32,36,105,109,103,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,104,101,97,100,101,114,32,61,32,104,40,41,59,92,110,32,32,32,32,118,97,114,32,104,97,115,72,101,97,100,101,114,83,108,111,116,32,61,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,83,76,79,84,95,78,65,77,69,95,72,69,65,68,69,82,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,59,92,110,92,110,32,32,32,32,105,102,32,40,104,97,115,72,101,97,100,101,114,83,108,111,116,32,124,124,32,104,101,97,100,101,114,32,124,124,32,104,101,97,100,101,114,72,116,109,108,41,32,123,92,110,32,32,32,32,32,32,36,104,101,97,100,101,114,32,61,32,104,40,95,99,97,114,100,95,104,101,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,67,97,114,100,72,101,97,100,101,114,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,95,99,97,114,100,95,104,101,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,44,32,112,114,111,112,115,41,44,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,104,97,115,72,101,97,100,101,114,83,108,111,116,32,63,32,123,125,32,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,104,101,97,100,101,114,72,116,109,108,44,32,104,101,97,100,101,114,41,92,110,32,32,32,32,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,83,76,79,84,95,78,65,77,69,95,72,69,65,68,69,82,44,32,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,59,32,47,47,32,87,114,97,112,32,99,111,110,116,101,110,116,32,105,110,32,96,60,99,97,114,100,45,98,111,100,121,62,96,32,119,104,101,110,32,96,110,111,66,111,100,121,96,32,112,114,111,112,32,115,101,116,92,110,92,110,32,32,32,32,105,102,32,40,33,112,114,111,112,115,46,110,111,66,111,100,121,41,32,123,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,32,61,32,104,40,95,99,97,114,100,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,67,97,114,100,66,111,100,121,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,95,99,97,114,100,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,44,32,112,114,111,112,115,41,92,110,32,32,32,32,32,32,125,44,32,36,99,111,110,116,101,110,116,41,59,32,47,47,32,87,104,101,110,32,116,104,101,32,96,111,118,101,114,108,97,112,96,32,112,114,111,112,32,105,115,32,115,101,116,32,119,101,32,110,101,101,100,32,116,111,32,119,114,97,112,32,116,104,101,32,96,60,98,45,99,97,114,100,45,105,109,103,62,96,32,97,110,100,32,96,60,98,45,99,97,114,100,45,98,111,100,121,62,96,92,110,32,32,32,32,32,32,47,47,32,105,110,116,111,32,97,32,114,101,108,97,116,105,118,101,32,112,111,115,105,116,105,111,110,101,100,32,119,114,97,112,112,101,114,32,116,111,32,100,111,110,39,116,32,100,105,115,116,114,97,99,116,32,97,32,112,111,116,101,110,116,105,97,108,32,104,101,97,100,101,114,32,111,114,32,102,111,111,116,101,114,92,110,92,110,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,46,111,118,101,114,108,97,121,32,38,38,32,105,109,103,83,114,99,41,32,123,92,110,32,32,32,32,32,32,32,32,36,99,111,110,116,101,110,116,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,112,111,115,105,116,105,111,110,45,114,101,108,97,116,105,118,101,39,92,110,32,32,32,32,32,32,32,32,125,44,32,91,36,105,109,103,70,105,114,115,116,44,32,36,99,111,110,116,101,110,116,44,32,36,105,109,103,76,97,115,116,93,41,59,32,47,47,32,82,101,115,101,116,32,105,109,97,103,101,32,118,97,114,105,97,98,108,101,115,32,115,105,110,99,101,32,116,104,101,121,32,97,114,101,32,97,108,114,101,97,100,121,32,105,110,32,116,104,101,32,119,114,97,112,112,101,114,92,110,92,110,32,32,32,32,32,32,32,32,36,105,109,103,70,105,114,115,116,32,61,32,104,40,41,59,92,110,32,32,32,32,32,32,32,32,36,105,109,103,76,97,115,116,32,61,32,104,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,102,111,111,116,101,114,32,61,32,104,40,41,59,92,110,32,32,32,32,118,97,114,32,104,97,115,70,111,111,116,101,114,83,108,111,116,32,61,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,83,76,79,84,95,78,65,77,69,95,70,79,79,84,69,82,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,59,92,110,92,110,32,32,32,32,105,102,32,40,104,97,115,70,111,111,116,101,114,83,108,111,116,32,124,124,32,102,111,111,116,101,114,32,124,124,32,102,111,111,116,101,114,72,116,109,108,41,32,123,92,110,32,32,32,32,32,32,36,102,111,111,116,101,114,32,61,32,104,40,95,99,97,114,100,95,102,111,111,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,67,97,114,100,70,111,111,116,101,114,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,95,99,97,114,100,95,102,111,111,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,44,32,112,114,111,112,115,41,44,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,104,97,115,72,101,97,100,101,114,83,108,111,116,32,63,32,123,125,32,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,102,111,111,116,101,114,72,116,109,108,44,32,102,111,111,116,101,114,41,92,110,32,32,32,32,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,83,76,79,84,95,78,65,77,69,95,70,79,79,84,69,82,44,32,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,97,114,100,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,40,95,99,108,97,115,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,39,102,108,101,120,45,114,111,119,39,58,32,105,109,103,76,101,102,116,32,124,124,32,105,109,103,83,116,97,114,116,44,92,110,32,32,32,32,32,32,32,32,39,102,108,101,120,45,114,111,119,45,114,101,118,101,114,115,101,39,58,32,40,105,109,103,82,105,103,104,116,32,124,124,32,105,109,103,69,110,100,41,32,38,38,32,33,40,105,109,103,76,101,102,116,32,124,124,32,105,109,103,83,116,97,114,116,41,92,110,32,32,32,32,32,32,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,97,108,105,103,110,41,44,32,97,108,105,103,110,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,98,103,45,92,34,46,99,111,110,99,97,116,40,98,103,86,97,114,105,97,110,116,41,44,32,98,103,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,98,111,114,100,101,114,45,92,34,46,99,111,110,99,97,116,40,98,111,114,100,101,114,86,97,114,105,97,110,116,41,44,32,98,111,114,100,101,114,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,116,101,120,116,86,97,114,105,97,110,116,41,44,32,116,101,120,116,86,97,114,105,97,110,116,41,44,32,95,99,108,97,115,115,41,92,110,32,32,32,32,125,41,44,32,91,36,105,109,103,70,105,114,115,116,44,32,36,104,101,97,100,101,114,44,32,36,99,111,110,116,101,110,116,44,32,36,102,111,111,116,101,114,44,32,36,105,109,103,76,97,115,116,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,67,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,66,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,114,100,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,67,97,114,100,66,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,70,111,111,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,114,100,95,102,111,111,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,67,97,114,100,70,111,111,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,114,100,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,66,67,97,114,100,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,72,101,97,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,114,100,95,104,101,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,67,97,114,100,72,101,97,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,73,109,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,114,100,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,66,67,97,114,100,73,109,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,73,109,103,76,97,122,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,114,100,95,105,109,103,95,108,97,122,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,67,97,114,100,73,109,103,76,97,122,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,83,117,98,84,105,116,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,114,100,95,115,117,98,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,67,97,114,100,83,117,98,84,105,116,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,114,100,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,67,97,114,100,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,84,105,116,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,114,100,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,67,97,114,100,84,105,116,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,97,114,100,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,97,114,100,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,104,101,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,104,101,97,100,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,104,101,97,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,98,111,100,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,98,111,100,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,116,105,116,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,116,105,116,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,115,117,98,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,115,117,98,45,116,105,116,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,115,117,98,45,116,105,116,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,102,111,111,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,102,111,111,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,102,111,111,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,105,109,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,105,109,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,105,109,103,95,108,97,122,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,105,109,103,45,108,97,122,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,105,109,103,45,108,97,122,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,67,97,114,100,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,67,97,114,100,58,32,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,67,97,114,100,44,92,110,32,32,32,32,66,67,97,114,100,72,101,97,100,101,114,58,32,95,99,97,114,100,95,104,101,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,67,97,114,100,72,101,97,100,101,114,44,92,110,32,32,32,32,66,67,97,114,100,66,111,100,121,58,32,95,99,97,114,100,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,67,97,114,100,66,111,100,121,44,92,110,32,32,32,32,66,67,97,114,100,84,105,116,108,101,58,32,95,99,97,114,100,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,67,97,114,100,84,105,116,108,101,44,92,110,32,32,32,32,66,67,97,114,100,83,117,98,84,105,116,108,101,58,32,95,99,97,114,100,95,115,117,98,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,67,97,114,100,83,117,98,84,105,116,108,101,44,92,110,32,32,32,32,66,67,97,114,100,70,111,111,116,101,114,58,32,95,99,97,114,100,95,102,111,111,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,67,97,114,100,70,111,111,116,101,114,44,92,110,32,32,32,32,66,67,97,114,100,73,109,103,58,32,95,99,97,114,100,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,66,67,97,114,100,73,109,103,44,92,110,32,32,32,32,66,67,97,114,100,73,109,103,76,97,122,121,58,32,95,99,97,114,100,95,105,109,103,95,108,97,122,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,67,97,114,100,73,109,103,76,97,122,121,44,92,110,32,32,32,32,66,67,97,114,100,84,101,120,116,58,32,95,99,97,114,100,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,67,97,114,100,84,101,120,116,44,92,110,32,32,32,32,66,67,97,114,100,71,114,111,117,112,58,32,95,99,97,114,100,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,66,67,97,114,100,71,114,111,117,112,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,99,97,114,111,117,115,101,108,45,115,108,105,100,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,99,97,114,111,117,115,101,108,45,115,108,105,100,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,111,117,115,101,108,83,108,105,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,97,114,111,117,115,101,108,83,108,105,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,109,97,103,101,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,105,109,97,103,101,47,105,109,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,105,109,103,80,114,111,112,115,32,61,32,123,92,110,32,32,105,109,103,65,108,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,105,109,103,66,108,97,110,107,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,105,109,103,66,108,97,110,107,67,111,108,111,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,116,114,97,110,115,112,97,114,101,110,116,39,41,44,92,110,32,32,105,109,103,72,101,105,103,104,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,44,92,110,32,32,105,109,103,83,114,99,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,105,109,103,87,105,100,116,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,92,110,125,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,105,109,103,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,99,97,112,116,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,99,97,112,116,105,111,110,72,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,99,97,112,116,105,111,110,84,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,104,51,39,41,44,92,110,32,32,99,111,110,116,101,110,116,84,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,44,92,110,32,32,99,111,110,116,101,110,116,86,105,115,105,98,108,101,85,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,101,120,116,72,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,101,120,116,84,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,112,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,67,65,82,79,85,83,69,76,95,83,76,73,68,69,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,97,114,111,117,115,101,108,83,108,105,100,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,67,65,82,79,85,83,69,76,95,83,76,73,68,69,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,100,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,105,110,106,101,99,116,58,32,123,92,110,32,32,32,32,98,118,67,97,114,111,117,115,101,108,58,32,123,92,110,32,32,32,32,32,32,47,47,32,69,120,112,108,105,99,105,116,108,121,32,100,105,115,97,98,108,101,32,116,111,117,99,104,32,105,102,32,110,111,116,32,97,32,99,104,105,108,100,32,111,102,32,99,97,114,111,117,115,101,108,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,110,111,84,111,117,99,104,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,110,116,101,110,116,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,99,111,110,116,101,110,116,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,104,105,115,46,99,111,110,116,101,110,116,86,105,115,105,98,108,101,85,112,32,63,32,39,100,45,110,111,110,101,39,32,58,32,39,39,44,32,116,104,105,115,46,99,111,110,116,101,110,116,86,105,115,105,98,108,101,85,112,32,63,32,92,34,100,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,99,111,110,116,101,110,116,86,105,115,105,98,108,101,85,112,44,32,92,34,45,98,108,111,99,107,92,34,41,32,58,32,39,39,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,87,105,100,116,104,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,87,105,100,116,104,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,85,115,101,32,108,111,99,97,108,32,119,105,100,116,104,44,32,111,114,32,116,114,121,32,112,97,114,101,110,116,32,119,105,100,116,104,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,109,103,87,105,100,116,104,32,124,124,32,116,104,105,115,46,98,118,67,97,114,111,117,115,101,108,46,105,109,103,87,105,100,116,104,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,72,101,105,103,104,116,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,72,101,105,103,104,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,85,115,101,32,108,111,99,97,108,32,104,101,105,103,104,116,44,32,111,114,32,116,114,121,32,112,97,114,101,110,116,32,104,101,105,103,104,116,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,109,103,72,101,105,103,104,116,32,124,124,32,116,104,105,115,46,98,118,67,97,114,111,117,115,101,108,46,105,109,103,72,101,105,103,104,116,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,36,105,109,103,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,83,76,79,84,95,78,65,77,69,95,73,77,71,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,36,105,109,103,32,38,38,32,40,116,104,105,115,46,105,109,103,83,114,99,32,124,124,32,116,104,105,115,46,105,109,103,66,108,97,110,107,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,110,32,61,32,123,125,59,32,47,47,32,84,111,117,99,104,32,115,117,112,112,111,114,116,32,101,118,101,110,116,32,104,97,110,100,108,101,114,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,58,32,100,105,102,102,105,99,117,108,116,32,116,111,32,116,101,115,116,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,98,118,67,97,114,111,117,115,101,108,46,110,111,84,111,117,99,104,32,38,38,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,72,65,83,95,84,79,85,67,72,95,83,85,80,80,79,82,84,41,32,123,92,110,32,32,32,32,32,32,32,32,111,110,46,100,114,97,103,115,116,97,114,116,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,36,105,109,103,32,61,32,104,40,95,105,109,97,103,101,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,66,73,109,103,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,105,109,103,80,114,111,112,115,44,32,116,104,105,115,46,36,112,114,111,112,115,44,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,110,112,114,101,102,105,120,80,114,111,112,78,97,109,101,46,98,105,110,100,40,110,117,108,108,44,32,39,105,109,103,39,41,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,87,105,100,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,72,101,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,32,32,102,108,117,105,100,71,114,111,119,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,98,108,111,99,107,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,111,110,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,67,104,105,108,100,114,101,110,32,61,32,91,47,47,32,67,97,112,116,105,111,110,92,110,32,32,32,32,116,104,105,115,46,99,97,112,116,105,111,110,32,124,124,32,116,104,105,115,46,99,97,112,116,105,111,110,72,116,109,108,32,63,32,104,40,116,104,105,115,46,99,97,112,116,105,111,110,84,97,103,44,32,123,92,110,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,116,104,105,115,46,99,97,112,116,105,111,110,72,116,109,108,44,32,116,104,105,115,46,99,97,112,116,105,111,110,41,92,110,32,32,32,32,125,41,32,58,32,102,97,108,115,101,44,32,47,47,32,84,101,120,116,92,110,32,32,32,32,116,104,105,115,46,116,101,120,116,32,124,124,32,116,104,105,115,46,116,101,120,116,72,116,109,108,32,63,32,104,40,116,104,105,115,46,116,101,120,116,84,97,103,44,32,123,92,110,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,116,104,105,115,46,116,101,120,116,72,116,109,108,44,32,116,104,105,115,46,116,101,120,116,41,92,110,32,32,32,32,125,41,32,58,32,102,97,108,115,101,44,32,47,47,32,67,104,105,108,100,114,101,110,92,110,32,32,32,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,32,124,124,32,102,97,108,115,101,93,59,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,36,99,111,110,116,101,110,116,67,104,105,108,100,114,101,110,46,115,111,109,101,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,105,100,101,110,116,105,116,121,41,41,32,123,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,32,61,32,104,40,116,104,105,115,46,99,111,110,116,101,110,116,84,97,103,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,97,114,111,117,115,101,108,45,99,97,112,116,105,111,110,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,99,111,110,116,101,110,116,67,108,97,115,115,101,115,92,110,32,32,32,32,32,32,125,44,32,36,99,111,110,116,101,110,116,67,104,105,108,100,114,101,110,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,36,99,104,105,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,99,104,105,108,100,32,124,124,32,104,40,41,59,92,110,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,97,114,111,117,115,101,108,45,105,116,101,109,39,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,123,92,110,32,32,32,32,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,116,104,105,115,46,98,97,99,107,103,114,111,117,110,100,32,124,124,32,116,104,105,115,46,98,118,67,97,114,111,117,115,101,108,46,98,97,99,107,103,114,111,117,110,100,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,108,105,115,116,105,116,101,109,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,105,109,103,44,32,36,99,111,110,116,101,110,116,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,99,97,114,111,117,115,101,108,45,115,108,105,100,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,99,97,114,111,117,115,101,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,99,97,114,111,117,115,101,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,111,117,115,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,97,114,111,117,115,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,111,111,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,111,111,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,111,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,115,101,114,118,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,115,101,114,118,101,45,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,115,101,114,118,101,45,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,97,108,117,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,44,92,110,32,32,100,101,102,97,117,108,116,86,97,108,117,101,58,32,48,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,32,47,47,32,83,108,105,100,101,32,100,105,114,101,99,116,105,111,110,97,108,32,99,108,97,115,115,101,115,92,110,92,110,92,110,118,97,114,32,68,73,82,69,67,84,73,79,78,32,61,32,123,92,110,32,32,110,101,120,116,58,32,123,92,110,32,32,32,32,100,105,114,67,108,97,115,115,58,32,39,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,39,44,92,110,32,32,32,32,111,118,101,114,108,97,121,67,108,97,115,115,58,32,39,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,39,92,110,32,32,125,44,92,110,32,32,112,114,101,118,58,32,123,92,110,32,32,32,32,100,105,114,67,108,97,115,115,58,32,39,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,39,44,92,110,32,32,32,32,111,118,101,114,108,97,121,67,108,97,115,115,58,32,39,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,39,92,110,32,32,125,92,110,125,59,32,47,47,32,70,97,108,108,98,97,99,107,32,84,114,97,110,115,105,116,105,111,110,32,100,117,114,97,116,105,111,110,32,40,119,105,116,104,32,97,32,108,105,116,116,108,101,32,98,117,102,102,101,114,41,32,105,110,32,109,115,92,110,92,110,118,97,114,32,84,82,65,78,83,95,68,85,82,65,84,73,79,78,32,61,32,54,48,48,32,43,32,53,48,59,32,47,47,32,84,105,109,101,32,102,111,114,32,109,111,117,115,101,32,99,111,109,112,97,116,32,101,118,101,110,116,115,32,116,111,32,102,105,114,101,32,97,102,116,101,114,32,116,111,117,99,104,92,110,92,110,118,97,114,32,84,79,85,67,72,95,69,86,69,78,84,95,67,79,77,80,65,84,95,87,65,73,84,32,61,32,53,48,48,59,32,47,47,32,78,117,109,98,101,114,32,111,102,32,112,105,120,101,108,115,32,116,111,32,99,111,110,115,105,100,101,114,32,116,111,117,99,104,32,109,111,118,101,32,97,32,115,119,105,112,101,92,110,92,110,118,97,114,32,83,87,73,80,69,95,84,72,82,69,83,72,79,76,68,32,61,32,52,48,59,32,47,47,32,80,111,105,110,116,101,114,69,118,101,110,116,32,112,111,105,110,116,101,114,32,116,121,112,101,115,92,110,92,110,118,97,114,32,80,111,105,110,116,101,114,84,121,112,101,32,61,32,123,92,110,32,32,84,79,85,67,72,58,32,39,116,111,117,99,104,39,44,92,110,32,32,80,69,78,58,32,39,112,101,110,39,92,110,125,59,32,47,47,32,84,114,97,110,115,105,116,105,111,110,32,69,118,101,110,116,32,110,97,109,101,115,92,110,92,110,118,97,114,32,84,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,115,32,61,32,123,92,110,32,32,87,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,58,32,39,119,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,69,110,100,39,44,92,110,32,32,77,111,122,84,114,97,110,115,105,116,105,111,110,58,32,39,116,114,97,110,115,105,116,105,111,110,101,110,100,39,44,92,110,32,32,79,84,114,97,110,115,105,116,105,111,110,58,32,39,111,116,114,97,110,115,105,116,105,111,110,101,110,100,32,111,84,114,97,110,115,105,116,105,111,110,69,110,100,39,44,92,110,32,32,116,114,97,110,115,105,116,105,111,110,58,32,39,116,114,97,110,115,105,116,105,111,110,101,110,100,39,92,110,125,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,82,101,116,117,114,110,32,116,104,101,32,98,114,111,119,115,101,114,32,115,112,101,99,105,102,105,99,32,116,114,97,110,115,105,116,105,111,110,69,110,100,32,101,118,101,110,116,32,110,97,109,101,92,110,92,110,118,97,114,32,103,101,116,84,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,84,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,40,101,108,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,110,97,109,101,32,105,110,32,84,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,115,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,101,108,46,115,116,121,108,101,91,110,97,109,101,93,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,84,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,115,91,110,97,109,101,93,59,92,110,32,32,32,32,125,92,110,32,32,125,32,47,47,32,70,97,108,108,98,97,99,107,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,92,110,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,99,111,110,116,114,111,108,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,69,110,97,98,108,101,32,99,114,111,115,115,45,102,97,100,101,32,97,110,105,109,97,116,105,111,110,32,105,110,115,116,101,97,100,32,111,102,32,115,108,105,100,101,32,97,110,105,109,97,116,105,111,110,92,110,32,32,102,97,100,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,99,97,114,111,117,115,101,108,45,115,108,105,100,101,92,110,32,32,105,109,103,72,101,105,103,104,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,99,97,114,111,117,115,101,108,45,115,108,105,100,101,92,110,32,32,105,109,103,87,105,100,116,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,44,92,110,32,32,105,110,100,105,99,97,116,111,114,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,105,110,116,101,114,118,97,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,44,32,53,48,48,48,41,44,92,110,32,32,108,97,98,101,108,71,111,116,111,83,108,105,100,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,71,111,116,111,32,115,108,105,100,101,39,41,44,92,110,32,32,108,97,98,101,108,73,110,100,105,99,97,116,111,114,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,83,101,108,101,99,116,32,97,32,115,108,105,100,101,32,116,111,32,100,105,115,112,108,97,121,39,41,44,92,110,32,32,108,97,98,101,108,78,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,78,101,120,116,32,115,108,105,100,101,39,41,44,92,110,32,32,108,97,98,101,108,80,114,101,118,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,80,114,101,118,105,111,117,115,32,115,108,105,100,101,39,41,44,92,110,32,32,47,47,32,68,105,115,97,98,108,101,32,115,108,105,100,101,47,102,97,100,101,32,97,110,105,109,97,116,105,111,110,92,110,32,32,110,111,65,110,105,109,97,116,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,68,105,115,97,98,108,101,32,112,97,117,115,101,32,111,110,32,104,111,118,101,114,92,110,32,32,110,111,72,111,118,101,114,80,97,117,115,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,99,97,114,111,117,115,101,108,45,115,108,105,100,101,92,110,32,32,110,111,84,111,117,99,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,68,105,115,97,98,108,101,32,119,114,97,112,112,105,110,103,47,108,111,111,112,105,110,103,32,119,104,101,110,32,115,116,97,114,116,47,101,110,100,32,105,115,32,114,101,97,99,104,101,100,92,110,32,32,110,111,87,114,97,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,67,65,82,79,85,83,69,76,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,97,114,111,117,115,101,108,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,67,65,82,79,85,83,69,76,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,118,105,100,101,58,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,98,118,67,97,114,111,117,115,101,108,58,32,116,104,105,115,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,105,110,100,101,120,58,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,32,124,124,32,48,44,92,110,32,32,32,32,32,32,105,115,83,108,105,100,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,115,108,105,100,101,115,58,32,91,93,44,92,110,32,32,32,32,32,32,100,105,114,101,99,116,105,111,110,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,105,115,80,97,117,115,101,100,58,32,33,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,105,110,116,101,114,118,97,108,44,32,48,41,32,62,32,48,41,44,92,110,32,32,32,32,32,32,47,47,32,84,111,117,99,104,32,101,118,101,110,116,32,104,97,110,100,108,105,110,103,32,118,97,108,117,101,115,92,110,32,32,32,32,32,32,116,111,117,99,104,83,116,97,114,116,88,58,32,48,44,92,110,32,32,32,32,32,32,116,111,117,99,104,68,101,108,116,97,88,58,32,48,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,110,117,109,83,108,105,100,101,115,58,32,102,117,110,99,116,105,111,110,32,110,117,109,83,108,105,100,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,108,105,100,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,108,105,100,101,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,116,111,73,110,116,101,103,101,114,41,40,110,101,119,86,97,108,117,101,44,32,48,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,105,110,116,101,114,118,97,108,92,34,44,32,102,117,110,99,116,105,111,110,32,105,110,116,101,114,118,97,108,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,61,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,97,117,115,105,110,103,32,115,108,105,100,101,32,115,104,111,119,92,110,32,32,32,32,32,32,116,104,105,115,46,112,97,117,115,101,40,102,97,108,115,101,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,115,116,97,114,116,105,110,103,32,111,114,32,67,104,97,110,103,105,110,103,32,105,110,116,101,114,118,97,108,92,110,32,32,32,32,32,32,116,104,105,115,46,112,97,117,115,101,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,116,97,114,116,40,102,97,108,115,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,105,115,80,97,117,115,101,100,92,34,44,32,102,117,110,99,116,105,111,110,32,105,115,80,97,117,115,101,100,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,110,101,119,86,97,108,117,101,32,63,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,80,65,85,83,69,68,32,58,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,85,78,80,65,85,83,69,68,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,105,110,100,101,120,92,34,44,32,102,117,110,99,116,105,111,110,32,105,110,100,101,120,40,116,111,44,32,102,114,111,109,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,105,102,32,40,116,111,32,61,61,61,32,102,114,111,109,32,124,124,32,116,104,105,115,46,105,115,83,108,105,100,105,110,103,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,100,111,83,108,105,100,101,40,116,111,44,32,102,114,111,109,41,59,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,67,114,101,97,116,101,32,112,114,105,118,97,116,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,115,92,110,32,32,32,32,116,104,105,115,46,36,95,105,110,116,101,114,118,97,108,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,95,97,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,95,116,111,117,99,104,84,105,109,101,111,117,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,32,61,32,110,117,108,108,59,32,47,47,32,83,101,116,32,105,110,105,116,105,97,108,32,112,97,117,115,101,100,32,115,116,97,116,101,92,110,92,110,32,32,32,32,116,104,105,115,46,105,115,80,97,117,115,101,100,32,61,32,33,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,105,110,116,101,114,118,97,108,44,32,48,41,32,62,32,48,41,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,67,97,99,104,101,32,99,117,114,114,101,110,116,32,98,114,111,119,115,101,114,32,116,114,97,110,115,105,116,105,111,110,101,110,100,32,101,118,101,110,116,32,110,97,109,101,92,110,32,32,32,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,32,61,32,103,101,116,84,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,40,116,104,105,115,46,36,101,108,41,32,124,124,32,110,117,108,108,59,32,47,47,32,71,101,116,32,97,108,108,32,115,108,105,100,101,115,92,110,92,110,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,83,108,105,100,101,115,40,41,59,32,47,47,32,79,98,115,101,114,118,101,32,99,104,105,108,100,32,99,104,97,110,103,101,115,32,115,111,32,119,101,32,99,97,110,32,117,112,100,97,116,101,32,115,108,105,100,101,32,108,105,115,116,92,110,92,110,32,32,32,32,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,40,116,114,117,101,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,73,110,116,101,114,118,97,108,40,41,59,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,65,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,40,41,59,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,84,111,117,99,104,84,105,109,101,111,117,116,40,41,59,92,110,32,32,32,32,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,40,102,97,108,115,101,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,99,108,101,97,114,73,110,116,101,114,118,97,108,58,32,102,117,110,99,116,105,111,110,32,40,95,99,108,101,97,114,73,110,116,101,114,118,97,108,41,32,123,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,73,110,116,101,114,118,97,108,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,108,101,97,114,73,110,116,101,114,118,97,108,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,99,108,101,97,114,73,110,116,101,114,118,97,108,46,116,111,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,108,101,97,114,73,110,116,101,114,118,97,108,46,116,111,83,116,114,105,110,103,40,41,59,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,101,97,114,73,110,116,101,114,118,97,108,59,92,110,32,32,32,32,125,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,36,95,105,110,116,101,114,118,97,108,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,105,110,116,101,114,118,97,108,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,41,44,92,110,32,32,32,32,99,108,101,97,114,65,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,65,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,40,41,32,123,92,110,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,36,95,97,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,97,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,108,101,97,114,84,111,117,99,104,84,105,109,101,111,117,116,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,84,111,117,99,104,84,105,109,101,111,117,116,40,41,32,123,92,110,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,36,95,116,111,117,99,104,84,105,109,101,111,117,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,116,111,117,99,104,84,105,109,101,111,117,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,79,98,115,101,114,118,101,114,58,32,102,117,110,99,116,105,111,110,32,115,101,116,79,98,115,101,114,118,101,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,32,38,38,32,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,46,100,105,115,99,111,110,110,101,99,116,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,115,101,114,118,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,98,115,101,114,118,101,68,111,109,41,40,116,104,105,115,46,36,114,101,102,115,46,105,110,110,101,114,44,32,116,104,105,115,46,117,112,100,97,116,101,83,108,105,100,101,115,46,98,105,110,100,40,116,104,105,115,41,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,117,98,116,114,101,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,76,105,115,116,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,58,32,91,39,105,100,39,93,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,101,116,32,115,108,105,100,101,92,110,32,32,32,32,115,101,116,83,108,105,100,101,58,32,102,117,110,99,116,105,111,110,32,115,101,116,83,108,105,100,101,40,115,108,105,100,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,100,105,114,101,99,116,105,111,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,47,47,32,68,111,110,39,116,32,97,110,105,109,97,116,101,32,119,104,101,110,32,112,97,103,101,32,105,115,32,110,111,116,32,118,105,115,105,98,108,101,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,58,32,100,105,102,102,105,99,117,108,116,32,116,111,32,116,101,115,116,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,73,83,95,66,82,79,87,83,69,82,32,38,38,32,100,111,99,117,109,101,110,116,46,118,105,115,105,98,105,108,105,116,121,83,116,97,116,101,32,38,38,32,100,111,99,117,109,101,110,116,46,104,105,100,100,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,110,111,87,114,97,112,32,61,32,116,104,105,115,46,110,111,87,114,97,112,59,92,110,32,32,32,32,32,32,118,97,114,32,110,117,109,83,108,105,100,101,115,32,61,32,116,104,105,115,46,110,117,109,83,108,105,100,101,115,59,32,47,47,32,77,97,107,101,32,115,117,114,101,32,119,101,32,104,97,118,101,32,97,110,32,105,110,116,101,103,101,114,32,40,121,111,117,32,110,101,118,101,114,32,107,110,111,119,33,41,92,110,92,110,32,32,32,32,32,32,115,108,105,100,101,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,109,97,116,104,70,108,111,111,114,41,40,115,108,105,100,101,41,59,32,47,47,32,68,111,110,39,116,32,100,111,32,97,110,121,116,104,105,110,103,32,105,102,32,110,111,116,104,105,110,103,32,116,111,32,115,108,105,100,101,32,116,111,92,110,92,110,32,32,32,32,32,32,105,102,32,40,110,117,109,83,108,105,100,101,115,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,68,111,110,39,116,32,99,104,97,110,103,101,32,115,108,105,100,101,32,119,104,105,108,101,32,116,114,97,110,115,105,116,105,111,110,105,110,103,44,32,119,97,105,116,32,117,110,116,105,108,32,116,114,97,110,115,105,116,105,111,110,32,105,115,32,100,111,110,101,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,108,105,100,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,99,104,101,100,117,108,101,32,115,108,105,100,101,32,97,102,116,101,114,32,115,108,105,100,105,110,103,32,99,111,109,112,108,101,116,101,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,76,73,68,73,78,71,95,69,78,68,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,87,114,97,112,32,105,110,32,96,114,101,113,117,101,115,116,65,70,40,41,96,32,116,111,32,97,108,108,111,119,32,116,104,101,32,115,108,105,100,101,32,116,111,32,112,114,111,112,101,114,108,121,32,102,105,110,105,115,104,32,116,111,32,97,118,111,105,100,32,103,108,105,116,99,104,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,46,115,101,116,83,108,105,100,101,40,115,108,105,100,101,44,32,100,105,114,101,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,100,105,114,101,99,116,105,111,110,32,61,32,100,105,114,101,99,116,105,111,110,59,32,47,47,32,83,101,116,32,110,101,119,32,115,108,105,100,101,32,105,110,100,101,120,92,110,32,32,32,32,32,32,47,47,32,87,114,97,112,32,97,114,111,117,110,100,32,105,102,32,110,101,99,101,115,115,97,114,121,32,40,105,102,32,110,111,45,119,114,97,112,32,110,111,116,32,101,110,97,98,108,101,100,41,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,105,110,100,101,120,32,61,32,115,108,105,100,101,32,62,61,32,110,117,109,83,108,105,100,101,115,32,63,32,110,111,87,114,97,112,32,63,32,110,117,109,83,108,105,100,101,115,32,45,32,49,32,58,32,48,32,58,32,115,108,105,100,101,32,60,32,48,32,63,32,110,111,87,114,97,112,32,63,32,48,32,58,32,110,117,109,83,108,105,100,101,115,32,45,32,49,32,58,32,115,108,105,100,101,59,32,47,47,32,69,110,115,117,114,101,32,116,104,101,32,118,45,109,111,100,101,108,32,105,115,32,115,121,110,99,104,101,100,32,117,112,32,105,102,32,110,111,45,119,114,97,112,32,105,115,32,101,110,97,98,108,101,100,92,110,32,32,32,32,32,32,47,47,32,97,110,100,32,117,115,101,114,32,116,114,105,101,100,32,116,111,32,115,108,105,100,101,32,112,97,115,115,32,101,105,116,104,101,114,32,101,110,100,115,92,110,92,110,32,32,32,32,32,32,105,102,32,40,110,111,87,114,97,112,32,38,38,32,116,104,105,115,46,105,110,100,101,120,32,33,61,61,32,115,108,105,100,101,32,38,38,32,116,104,105,115,46,105,110,100,101,120,32,33,61,61,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,116,104,105,115,46,105,110,100,101,120,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,114,101,118,105,111,117,115,32,115,108,105,100,101,92,110,32,32,32,32,112,114,101,118,58,32,102,117,110,99,116,105,111,110,32,112,114,101,118,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,108,105,100,101,40,116,104,105,115,46,105,110,100,101,120,32,45,32,49,44,32,39,112,114,101,118,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,78,101,120,116,32,115,108,105,100,101,92,110,32,32,32,32,110,101,120,116,58,32,102,117,110,99,116,105,111,110,32,110,101,120,116,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,108,105,100,101,40,116,104,105,115,46,105,110,100,101,120,32,43,32,49,44,32,39,110,101,120,116,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,97,117,115,101,32,97,117,116,111,32,114,111,116,97,116,105,111,110,92,110,32,32,32,32,112,97,117,115,101,58,32,102,117,110,99,116,105,111,110,32,112,97,117,115,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,80,97,117,115,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,73,110,116,101,114,118,97,108,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,116,97,114,116,32,97,117,116,111,32,114,111,116,97,116,101,32,115,108,105,100,101,115,92,110,32,32,32,32,115,116,97,114,116,58,32,102,117,110,99,116,105,111,110,32,115,116,97,114,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,80,97,117,115,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,109,111,115,116,32,108,105,107,101,108,121,32,119,105,108,108,32,110,101,118,101,114,32,104,97,112,112,101,110,44,32,98,117,116,32,106,117,115,116,32,105,110,32,99,97,115,101,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,73,110,116,101,114,118,97,108,40,41,59,32,47,47,32,68,111,110,39,116,32,115,116,97,114,116,32,105,102,32,110,111,32,105,110,116,101,114,118,97,108,44,32,111,114,32,108,101,115,115,32,116,104,97,110,32,50,32,115,108,105,100,101,115,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,110,116,101,114,118,97,108,32,38,38,32,116,104,105,115,46,110,117,109,83,108,105,100,101,115,32,62,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,105,110,116,101,114,118,97,108,32,61,32,115,101,116,73,110,116,101,114,118,97,108,40,116,104,105,115,46,110,101,120,116,44,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,109,97,116,104,77,97,120,41,40,49,48,48,48,44,32,116,104,105,115,46,105,110,116,101,114,118,97,108,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,82,101,115,116,97,114,116,32,97,117,116,111,32,114,111,116,97,116,101,32,115,108,105,100,101,115,32,119,104,101,110,32,102,111,99,117,115,47,104,111,118,101,114,32,108,101,97,118,101,115,32,116,104,101,32,99,97,114,111,117,115,101,108,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,114,101,115,116,97,114,116,58,32,102,117,110,99,116,105,111,110,32,114,101,115,116,97,114,116,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,36,101,108,46,99,111,110,116,97,105,110,115,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,41,40,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,111,83,108,105,100,101,58,32,102,117,110,99,116,105,111,110,32,100,111,83,108,105,100,101,40,116,111,44,32,102,114,111,109,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,115,67,121,99,108,105,110,103,32,61,32,66,111,111,108,101,97,110,40,116,104,105,115,46,105,110,116,101,114,118,97,108,41,59,32,47,47,32,68,101,116,101,114,109,105,110,101,32,115,108,105,100,105,110,103,32,100,105,114,101,99,116,105,111,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,100,105,114,101,99,116,105,111,110,32,61,32,116,104,105,115,46,99,97,108,99,68,105,114,101,99,116,105,111,110,40,116,104,105,115,46,100,105,114,101,99,116,105,111,110,44,32,102,114,111,109,44,32,116,111,41,59,92,110,32,32,32,32,32,32,118,97,114,32,111,118,101,114,108,97,121,67,108,97,115,115,32,61,32,100,105,114,101,99,116,105,111,110,46,111,118,101,114,108,97,121,67,108,97,115,115,59,92,110,32,32,32,32,32,32,118,97,114,32,100,105,114,67,108,97,115,115,32,61,32,100,105,114,101,99,116,105,111,110,46,100,105,114,67,108,97,115,115,59,32,47,47,32,68,101,116,101,114,109,105,110,101,32,99,117,114,114,101,110,116,32,97,110,100,32,110,101,120,116,32,115,108,105,100,101,115,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,83,108,105,100,101,32,61,32,116,104,105,115,46,115,108,105,100,101,115,91,102,114,111,109,93,59,92,110,32,32,32,32,32,32,118,97,114,32,110,101,120,116,83,108,105,100,101,32,61,32,116,104,105,115,46,115,108,105,100,101,115,91,116,111,93,59,32,47,47,32,68,111,110,39,116,32,100,111,32,97,110,121,116,104,105,110,103,32,105,102,32,116,104,101,114,101,32,97,114,101,110,39,116,32,97,110,121,32,115,108,105,100,101,115,32,116,111,32,115,108,105,100,101,32,116,111,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,99,117,114,114,101,110,116,83,108,105,100,101,32,124,124,32,33,110,101,120,116,83,108,105,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,83,116,97,114,116,32,97,110,105,109,97,116,105,110,103,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,83,108,105,100,105,110,103,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,67,121,99,108,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,112,97,117,115,101,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,76,73,68,73,78,71,95,83,84,65,82,84,44,32,116,111,41,59,32,47,47,32,85,112,100,97,116,101,32,118,45,109,111,100,101,108,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,116,104,105,115,46,105,110,100,101,120,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,110,111,65,110,105,109,97,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,97,100,100,67,108,97,115,115,41,40,110,101,120,116,83,108,105,100,101,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,99,117,114,114,101,110,116,83,108,105,100,101,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,83,108,105,100,105,110,103,32,61,32,102,97,108,115,101,59,32,47,47,32,78,111,116,105,102,121,32,111,117,114,115,101,108,118,101,115,32,116,104,97,116,32,119,101,39,114,101,32,100,111,110,101,32,115,108,105,100,105,110,103,32,40,115,108,105,100,41,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,50,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,76,73,68,73,78,71,95,69,78,68,44,32,116,111,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,97,100,100,67,108,97,115,115,41,40,110,101,120,116,83,108,105,100,101,44,32,111,118,101,114,108,97,121,67,108,97,115,115,41,59,32,47,47,32,84,114,105,103,103,101,114,32,97,32,114,101,102,108,111,119,32,111,102,32,110,101,120,116,32,115,108,105,100,101,92,110,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,114,101,102,108,111,119,41,40,110,101,120,116,83,108,105,100,101,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,97,100,100,67,108,97,115,115,41,40,99,117,114,114,101,110,116,83,108,105,100,101,44,32,100,105,114,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,97,100,100,67,108,97,115,115,41,40,110,101,120,116,83,108,105,100,101,44,32,100,105,114,67,108,97,115,115,41,59,32,47,47,32,84,114,97,110,115,105,116,105,111,110,32,69,110,100,32,104,97,110,100,108,101,114,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,97,108,108,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,100,105,102,102,105,99,117,108,116,32,116,111,32,116,101,115,116,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,110,99,101,84,114,97,110,115,69,110,100,32,61,32,102,117,110,99,116,105,111,110,32,111,110,99,101,84,114,97,110,115,69,110,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,97,108,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,99,97,108,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,58,32,116,114,97,110,115,105,116,105,111,110,32,101,118,101,110,116,115,32,99,97,110,116,32,98,101,32,116,101,115,116,101,100,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,50,46,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,115,32,61,32,95,116,104,105,115,50,46,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,46,115,112,108,105,116,40,47,92,92,115,43,47,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,101,118,101,110,116,79,102,102,41,40,110,101,120,116,83,108,105,100,101,44,32,101,118,101,110,116,44,32,111,110,99,101,84,114,97,110,115,69,110,100,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,99,108,101,97,114,65,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,110,101,120,116,83,108,105,100,101,44,32,100,105,114,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,110,101,120,116,83,108,105,100,101,44,32,111,118,101,114,108,97,121,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,97,100,100,67,108,97,115,115,41,40,110,101,120,116,83,108,105,100,101,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,99,117,114,114,101,110,116,83,108,105,100,101,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,99,117,114,114,101,110,116,83,108,105,100,101,44,32,100,105,114,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,99,117,114,114,101,110,116,83,108,105,100,101,44,32,111,118,101,114,108,97,121,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,115,101,116,65,116,116,114,41,40,99,117,114,114,101,110,116,83,108,105,100,101,44,32,39,97,114,105,97,45,99,117,114,114,101,110,116,39,44,32,39,102,97,108,115,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,115,101,116,65,116,116,114,41,40,110,101,120,116,83,108,105,100,101,44,32,39,97,114,105,97,45,99,117,114,114,101,110,116,39,44,32,39,116,114,117,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,115,101,116,65,116,116,114,41,40,99,117,114,114,101,110,116,83,108,105,100,101,44,32,39,97,114,105,97,45,104,105,100,100,101,110,39,44,32,39,116,114,117,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,115,101,116,65,116,116,114,41,40,110,101,120,116,83,108,105,100,101,44,32,39,97,114,105,97,45,104,105,100,100,101,110,39,44,32,39,102,97,108,115,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,105,115,83,108,105,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,100,105,114,101,99,116,105,111,110,32,61,32,110,117,108,108,59,32,47,47,32,78,111,116,105,102,121,32,111,117,114,115,101,108,118,101,115,32,116,104,97,116,32,119,101,39,114,101,32,100,111,110,101,32,115,108,105,100,105,110,103,32,40,115,108,105,100,41,92,110,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,50,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,76,73,68,73,78,71,95,69,78,68,44,32,116,111,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,59,32,47,47,32,83,101,116,32,117,112,32,116,114,97,110,115,105,116,105,111,110,101,110,100,32,104,97,110,100,108,101,114,92,110,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,58,32,116,114,97,110,115,105,116,105,111,110,32,101,118,101,110,116,115,32,99,97,110,116,32,98,101,32,116,101,115,116,101,100,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,115,32,61,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,46,115,112,108,105,116,40,47,92,92,115,43,47,41,59,92,110,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,101,118,101,110,116,79,110,41,40,110,101,120,116,83,108,105,100,101,44,32,101,118,101,110,116,44,32,111,110,99,101,84,114,97,110,115,69,110,100,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,70,97,108,108,98,97,99,107,32,116,111,32,115,101,116,84,105,109,101,111,117,116,40,41,92,110,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,97,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,32,61,32,115,101,116,84,105,109,101,111,117,116,40,111,110,99,101,84,114,97,110,115,69,110,100,44,32,84,82,65,78,83,95,68,85,82,65,84,73,79,78,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,67,121,99,108,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,114,116,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,85,112,100,97,116,101,32,115,108,105,100,101,32,108,105,115,116,92,110,32,32,32,32,117,112,100,97,116,101,83,108,105,100,101,115,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,83,108,105,100,101,115,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,112,97,117,115,101,40,116,114,117,101,41,59,32,47,47,32,71,101,116,32,97,108,108,32,115,108,105,100,101,115,32,97,115,32,68,79,77,32,101,108,101,109,101,110,116,115,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,115,108,105,100,101,115,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,115,101,108,101,99,116,65,108,108,41,40,39,46,99,97,114,111,117,115,101,108,45,105,116,101,109,39,44,32,116,104,105,115,46,36,114,101,102,115,46,105,110,110,101,114,41,59,92,110,32,32,32,32,32,32,118,97,114,32,110,117,109,83,108,105,100,101,115,32,61,32,116,104,105,115,46,115,108,105,100,101,115,46,108,101,110,103,116,104,59,32,47,47,32,75,101,101,112,32,115,108,105,100,101,32,110,117,109,98,101,114,32,105,110,32,114,97,110,103,101,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,109,97,116,104,77,97,120,41,40,48,44,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,109,97,116,104,77,105,110,41,40,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,109,97,116,104,70,108,111,111,114,41,40,116,104,105,115,46,105,110,100,101,120,41,44,32,110,117,109,83,108,105,100,101,115,32,45,32,49,41,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,108,105,100,101,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,115,108,105,100,101,44,32,105,100,120,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,32,61,32,105,100,120,32,43,32,49,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,100,120,32,61,61,61,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,97,100,100,67,108,97,115,115,41,40,115,108,105,100,101,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,115,101,116,65,116,116,114,41,40,115,108,105,100,101,44,32,39,97,114,105,97,45,99,117,114,114,101,110,116,39,44,32,39,116,114,117,101,39,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,115,108,105,100,101,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,115,101,116,65,116,116,114,41,40,115,108,105,100,101,44,32,39,97,114,105,97,45,99,117,114,114,101,110,116,39,44,32,39,102,97,108,115,101,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,115,101,116,65,116,116,114,41,40,115,108,105,100,101,44,32,39,97,114,105,97,45,112,111,115,105,110,115,101,116,39,44,32,83,116,114,105,110,103,40,110,41,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,115,101,116,65,116,116,114,41,40,115,108,105,100,101,44,32,39,97,114,105,97,45,115,101,116,115,105,122,101,39,44,32,83,116,114,105,110,103,40,110,117,109,83,108,105,100,101,115,41,41,59,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,83,101,116,32,115,108,105,100,101,32,97,115,32,97,99,116,105,118,101,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,108,105,100,101,40,105,110,100,101,120,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,116,97,114,116,40,116,104,105,115,46,105,115,80,97,117,115,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,97,108,99,68,105,114,101,99,116,105,111,110,58,32,102,117,110,99,116,105,111,110,32,99,97,108,99,68,105,114,101,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,105,114,101,99,116,105,111,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,73,110,100,101,120,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,48,59,92,110,32,32,32,32,32,32,118,97,114,32,110,101,120,116,73,110,100,101,120,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,48,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,100,105,114,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,73,110,100,101,120,32,62,32,99,117,114,73,110,100,101,120,32,63,32,68,73,82,69,67,84,73,79,78,46,110,101,120,116,32,58,32,68,73,82,69,67,84,73,79,78,46,112,114,101,118,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,68,73,82,69,67,84,73,79,78,91,100,105,114,101,99,116,105,111,110,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,67,108,105,99,107,40,101,118,101,110,116,44,32,102,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,39,99,108,105,99,107,39,32,124,124,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,67,79,68,69,95,83,80,65,67,69,32,124,124,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,67,79,68,69,95,69,78,84,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,102,110,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,74,83,68,79,77,32,100,111,101,115,110,39,116,32,115,117,112,112,111,114,116,32,116,111,117,99,104,32,101,118,101,110,116,115,32,42,47,92,110,32,32,32,32,104,97,110,100,108,101,83,119,105,112,101,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,83,119,105,112,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,98,115,68,101,108,116,97,88,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,109,97,116,104,65,98,115,41,40,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,97,98,115,68,101,108,116,97,88,32,60,61,32,83,87,73,80,69,95,84,72,82,69,83,72,79,76,68,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,100,105,114,101,99,116,105,111,110,32,61,32,97,98,115,68,101,108,116,97,88,32,47,32,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,59,32,47,47,32,82,101,115,101,116,32,116,111,117,99,104,32,100,101,108,116,97,32,88,92,110,32,32,32,32,32,32,47,47,32,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,112,117,108,108,47,50,56,53,53,56,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,32,61,32,48,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,100,105,114,101,99,116,105,111,110,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,119,105,112,101,32,108,101,102,116,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,112,114,101,118,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,105,114,101,99,116,105,111,110,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,119,105,112,101,32,114,105,103,104,116,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,110,101,120,116,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,74,83,68,79,77,32,100,111,101,115,110,39,116,32,115,117,112,112,111,114,116,32,116,111,117,99,104,32,101,118,101,110,116,115,32,42,47,92,110,32,32,32,32,116,111,117,99,104,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,32,116,111,117,99,104,83,116,97,114,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,72,65,83,95,80,79,73,78,84,69,82,95,69,86,69,78,84,95,83,85,80,80,79,82,84,32,38,38,32,80,111,105,110,116,101,114,84,121,112,101,91,101,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,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,111,117,99,104,83,116,97,114,116,88,32,61,32,101,118,101,110,116,46,99,108,105,101,110,116,88,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,72,65,83,95,80,79,73,78,84,69,82,95,69,86,69,78,84,95,83,85,80,80,79,82,84,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,111,117,99,104,83,116,97,114,116,88,32,61,32,101,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,74,83,68,79,77,32,100,111,101,115,110,39,116,32,115,117,112,112,111,114,116,32,116,111,117,99,104,32,101,118,101,110,116,115,32,42,47,92,110,32,32,32,32,116,111,117,99,104,77,111,118,101,58,32,102,117,110,99,116,105,111,110,32,116,111,117,99,104,77,111,118,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,69,110,115,117,114,101,32,115,119,105,112,105,110,103,32,119,105,116,104,32,111,110,101,32,116,111,117,99,104,32,97,110,100,32,110,111,116,32,112,105,110,99,104,105,110,103,92,110,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,116,111,117,99,104,101,115,32,38,38,32,101,118,101,110,116,46,116,111,117,99,104,101,115,46,108,101,110,103,116,104,32,62,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,32,61,32,48,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,32,61,32,101,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,32,45,32,116,104,105,115,46,116,111,117,99,104,83,116,97,114,116,88,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,74,83,68,79,77,32,100,111,101,115,110,39,116,32,115,117,112,112,111,114,116,32,116,111,117,99,104,32,101,118,101,110,116,115,32,42,47,92,110,32,32,32,32,116,111,117,99,104,69,110,100,58,32,102,117,110,99,116,105,111,110,32,116,111,117,99,104,69,110,100,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,72,65,83,95,80,79,73,78,84,69,82,95,69,86,69,78,84,95,83,85,80,80,79,82,84,32,38,38,32,80,111,105,110,116,101,114,84,121,112,101,91,101,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,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,32,61,32,101,118,101,110,116,46,99,108,105,101,110,116,88,32,45,32,116,104,105,115,46,116,111,117,99,104,83,116,97,114,116,88,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,104,97,110,100,108,101,83,119,105,112,101,40,41,59,32,47,47,32,73,102,32,105,116,39,115,32,97,32,116,111,117,99,104,45,101,110,97,98,108,101,100,32,100,101,118,105,99,101,44,32,109,111,117,115,101,101,110,116,101,114,47,108,101,97,118,101,32,97,114,101,32,102,105,114,101,100,32,97,115,92,110,32,32,32,32,32,32,47,47,32,112,97,114,116,32,111,102,32,116,104,101,32,109,111,117,115,101,32,99,111,109,112,97,116,105,98,105,108,105,116,121,32,101,118,101,110,116,115,32,111,110,32,102,105,114,115,116,32,116,97,112,32,45,32,116,104,101,32,99,97,114,111,117,115,101,108,92,110,32,32,32,32,32,32,47,47,32,119,111,117,108,100,32,115,116,111,112,32,99,121,99,108,105,110,103,32,117,110,116,105,108,32,117,115,101,114,32,116,97,112,112,101,100,32,111,117,116,32,111,102,32,105,116,59,92,110,32,32,32,32,32,32,47,47,32,104,101,114,101,44,32,119,101,32,108,105,115,116,101,110,32,102,111,114,32,116,111,117,99,104,101,110,100,44,32,101,120,112,108,105,99,105,116,108,121,32,112,97,117,115,101,32,116,104,101,32,99,97,114,111,117,115,101,108,92,110,32,32,32,32,32,32,47,47,32,40,97,115,32,105,102,32,105,116,39,115,32,116,104,101,32,115,101,99,111,110,100,32,116,105,109,101,32,119,101,32,116,97,112,32,111,110,32,105,116,44,32,109,111,117,115,101,101,110,116,101,114,32,99,111,109,112,97,116,32,101,118,101,110,116,92,110,32,32,32,32,32,32,47,47,32,105,115,32,78,79,84,32,102,105,114,101,100,41,32,97,110,100,32,97,102,116,101,114,32,97,32,116,105,109,101,111,117,116,32,40,116,111,32,97,108,108,111,119,32,102,111,114,32,109,111,117,115,101,32,99,111,109,112,97,116,105,98,105,108,105,116,121,92,110,32,32,32,32,32,32,47,47,32,101,118,101,110,116,115,32,116,111,32,102,105,114,101,41,32,119,101,32,101,120,112,108,105,99,105,116,108,121,32,114,101,115,116,97,114,116,32,99,121,99,108,105,110,103,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,112,97,117,115,101,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,84,111,117,99,104,84,105,109,101,111,117,116,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,116,111,117,99,104,84,105,109,101,111,117,116,32,61,32,115,101,116,84,105,109,101,111,117,116,40,116,104,105,115,46,115,116,97,114,116,44,32,84,79,85,67,72,95,69,86,69,78,84,95,67,79,77,80,65,84,95,87,65,73,84,32,43,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,109,97,116,104,77,97,120,41,40,49,48,48,48,44,32,116,104,105,115,46,105,110,116,101,114,118,97,108,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,105,110,100,105,99,97,116,111,114,115,32,61,32,116,104,105,115,46,105,110,100,105,99,97,116,111,114,115,44,92,110,32,32,32,32,32,32,32,32,98,97,99,107,103,114,111,117,110,100,32,61,32,116,104,105,115,46,98,97,99,107,103,114,111,117,110,100,44,92,110,32,32,32,32,32,32,32,32,110,111,65,110,105,109,97,116,105,111,110,32,61,32,116,104,105,115,46,110,111,65,110,105,109,97,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,110,111,72,111,118,101,114,80,97,117,115,101,32,61,32,116,104,105,115,46,110,111,72,111,118,101,114,80,97,117,115,101,44,92,110,32,32,32,32,32,32,32,32,110,111,84,111,117,99,104,32,61,32,116,104,105,115,46,110,111,84,111,117,99,104,44,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,116,104,105,115,46,105,110,100,101,120,44,92,110,32,32,32,32,32,32,32,32,105,115,83,108,105,100,105,110,103,32,61,32,116,104,105,115,46,105,115,83,108,105,100,105,110,103,44,92,110,32,32,32,32,32,32,32,32,112,97,117,115,101,32,61,32,116,104,105,115,46,112,97,117,115,101,44,92,110,32,32,32,32,32,32,32,32,114,101,115,116,97,114,116,32,61,32,116,104,105,115,46,114,101,115,116,97,114,116,44,92,110,32,32,32,32,32,32,32,32,116,111,117,99,104,83,116,97,114,116,32,61,32,116,104,105,115,46,116,111,117,99,104,83,116,97,114,116,44,92,110,32,32,32,32,32,32,32,32,116,111,117,99,104,69,110,100,32,61,32,116,104,105,115,46,116,111,117,99,104,69,110,100,59,92,110,32,32,32,32,118,97,114,32,105,100,73,110,110,101,114,32,61,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,66,86,95,105,110,110,101,114,95,39,41,59,32,47,47,32,87,114,97,112,112,101,114,32,102,111,114,32,115,108,105,100,101,115,92,110,92,110,32,32,32,32,118,97,114,32,36,105,110,110,101,114,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,97,114,111,117,115,101,108,45,105,110,110,101,114,39,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,105,100,73,110,110,101,114,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,108,105,115,116,39,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,105,110,110,101,114,39,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,59,32,47,47,32,80,114,101,118,32,97,110,100,32,110,101,120,116,32,99,111,110,116,114,111,108,115,92,110,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,114,111,108,115,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,99,111,110,116,114,111,108,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,97,107,101,67,111,110,116,114,111,108,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,67,111,110,116,114,111,108,40,100,105,114,101,99,116,105,111,110,44,32,108,97,98,101,108,44,32,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,87,114,97,112,112,101,114,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,87,114,97,112,112,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,83,108,105,100,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,104,97,110,100,108,101,67,108,105,99,107,40,101,118,101,110,116,44,32,104,97,110,100,108,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,97,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,92,34,46,99,111,110,99,97,116,40,100,105,114,101,99,116,105,111,110,41,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,114,101,102,58,32,39,35,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,98,117,116,116,111,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,111,110,116,114,111,108,115,39,58,32,105,100,73,110,110,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,105,115,97,98,108,101,100,39,58,32,105,115,83,108,105,100,105,110,103,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,104,97,110,100,108,101,114,87,114,97,112,112,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,104,97,110,100,108,101,114,87,114,97,112,112,101,114,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,91,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,92,34,46,99,111,110,99,97,116,40,100,105,114,101,99,116,105,111,110,44,32,92,34,45,105,99,111,110,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,44,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,39,115,114,45,111,110,108,121,39,92,110,32,32,32,32,32,32,32,32,125,44,32,91,108,97,98,101,108,93,41,93,41,59,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,36,99,111,110,116,114,111,108,115,32,61,32,91,109,97,107,101,67,111,110,116,114,111,108,40,39,112,114,101,118,39,44,32,116,104,105,115,46,108,97,98,101,108,80,114,101,118,44,32,116,104,105,115,46,112,114,101,118,41,44,32,109,97,107,101,67,111,110,116,114,111,108,40,39,110,101,120,116,39,44,32,116,104,105,115,46,108,97,98,101,108,78,101,120,116,44,32,116,104,105,115,46,110,101,120,116,41,93,59,92,110,32,32,32,32,125,32,47,47,32,73,110,100,105,99,97,116,111,114,115,92,110,92,110,92,110,32,32,32,32,118,97,114,32,36,105,110,100,105,99,97,116,111,114,115,32,61,32,104,40,39,111,108,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,39,44,92,110,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,39,115,104,111,119,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,105,110,100,105,99,97,116,111,114,115,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,66,86,95,105,110,100,105,99,97,116,111,114,115,95,39,41,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,105,110,100,105,99,97,116,111,114,115,32,63,32,39,102,97,108,115,101,39,32,58,32,39,116,114,117,101,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,116,104,105,115,46,108,97,98,101,108,73,110,100,105,99,97,116,111,114,115,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,111,119,110,115,39,58,32,105,100,73,110,110,101,114,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,116,104,105,115,46,115,108,105,100,101,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,115,108,105,100,101,44,32,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,104,97,110,100,108,101,67,108,105,99,107,40,101,118,101,110,116,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,115,101,116,83,108,105,100,101,40,105,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,58,32,105,32,61,61,61,32,105,110,100,101,120,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,98,117,116,116,111,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,95,116,104,105,115,51,46,115,97,102,101,73,100,40,92,34,95,95,66,86,95,105,110,100,105,99,97,116,111,114,95,92,34,46,99,111,110,99,97,116,40,105,32,43,32,49,44,32,92,34,95,92,34,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,105,110,100,105,99,97,116,111,114,115,32,63,32,39,48,39,32,58,32,39,45,49,39,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,117,114,114,101,110,116,39,58,32,105,32,61,61,61,32,105,110,100,101,120,32,63,32,39,116,114,117,101,39,32,58,32,39,102,97,108,115,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,92,34,92,34,46,99,111,110,99,97,116,40,95,116,104,105,115,51,46,108,97,98,101,108,71,111,116,111,83,108,105,100,101,44,32,92,34,32,92,34,41,46,99,111,110,99,97,116,40,105,32,43,32,49,41,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,58,32,115,108,105,100,101,46,105,100,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,111,110,116,114,111,108,115,39,58,32,105,100,73,110,110,101,114,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,104,97,110,100,108,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,115,108,105,100,101,95,92,34,46,99,111,110,99,97,116,40,105,41,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,41,59,92,110,32,32,32,32,118,97,114,32,111,110,32,61,32,123,92,110,32,32,32,32,32,32,109,111,117,115,101,101,110,116,101,114,58,32,110,111,72,111,118,101,114,80,97,117,115,101,32,63,32,95,117,116,105,108,115,95,110,111,111,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,110,111,111,112,32,58,32,112,97,117,115,101,44,92,110,32,32,32,32,32,32,109,111,117,115,101,108,101,97,118,101,58,32,110,111,72,111,118,101,114,80,97,117,115,101,32,63,32,95,117,116,105,108,115,95,110,111,111,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,110,111,111,112,32,58,32,114,101,115,116,97,114,116,44,92,110,32,32,32,32,32,32,102,111,99,117,115,105,110,58,32,112,97,117,115,101,44,92,110,32,32,32,32,32,32,102,111,99,117,115,111,117,116,58,32,114,101,115,116,97,114,116,44,92,110,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,102,117,110,99,116,105,111,110,32,107,101,121,100,111,119,110,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,105,102,32,40,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,101,118,101,110,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,67,79,68,69,95,76,69,70,84,32,124,124,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,67,79,68,69,95,82,73,71,72,84,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,91,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,67,79,68,69,95,76,69,70,84,32,63,32,39,112,114,101,118,39,32,58,32,39,110,101,120,116,39,93,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,32,47,47,32,84,111,117,99,104,32,115,117,112,112,111,114,116,32,101,118,101,110,116,32,104,97,110,100,108,101,114,115,32,102,111,114,32,101,110,118,105,114,111,110,109,101,110,116,92,110,92,110,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,72,65,83,95,84,79,85,67,72,95,83,85,80,80,79,82,84,32,38,38,32,33,110,111,84,111,117,99,104,41,32,123,92,110,32,32,32,32,32,32,47,47,32,65,116,116,97,99,104,32,97,112,112,114,111,112,114,105,97,116,101,32,108,105,115,116,101,110,101,114,115,32,40,112,114,101,112,101,110,100,32,101,118,101,110,116,32,110,97,109,101,32,119,105,116,104,32,39,38,39,32,102,111,114,32,112,97,115,115,105,118,101,32,109,111,100,101,41,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,74,83,68,79,77,32,100,111,101,115,110,39,116,32,115,117,112,112,111,114,116,32,116,111,117,99,104,32,101,118,101,110,116,115,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,72,65,83,95,80,79,73,78,84,69,82,95,69,86,69,78,84,95,83,85,80,80,79,82,84,41,32,123,92,110,32,32,32,32,32,32,32,32,111,110,91,39,38,112,111,105,110,116,101,114,100,111,119,110,39,93,32,61,32,116,111,117,99,104,83,116,97,114,116,59,92,110,32,32,32,32,32,32,32,32,111,110,91,39,38,112,111,105,110,116,101,114,117,112,39,93,32,61,32,116,111,117,99,104,69,110,100,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,111,110,91,39,38,116,111,117,99,104,115,116,97,114,116,39,93,32,61,32,116,111,117,99,104,83,116,97,114,116,59,92,110,32,32,32,32,32,32,32,32,111,110,91,39,38,116,111,117,99,104,109,111,118,101,39,93,32,61,32,116,104,105,115,46,116,111,117,99,104,77,111,118,101,59,92,110,32,32,32,32,32,32,32,32,111,110,91,39,38,116,111,117,99,104,101,110,100,39,93,32,61,32,116,111,117,99,104,69,110,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,99,97,114,111,117,115,101,108,92,110,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,97,114,111,117,115,101,108,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,115,108,105,100,101,58,32,33,110,111,65,110,105,109,97,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,39,99,97,114,111,117,115,101,108,45,102,97,100,101,39,58,32,33,110,111,65,110,105,109,97,116,105,111,110,32,38,38,32,116,104,105,115,46,102,97,100,101,44,92,110,32,32,32,32,32,32,32,32,39,112,111,105,110,116,101,114,45,101,118,101,110,116,39,58,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,72,65,83,95,84,79,85,67,72,95,83,85,80,80,79,82,84,32,38,38,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,72,65,83,95,80,79,73,78,84,69,82,95,69,86,69,78,84,95,83,85,80,80,79,82,84,32,38,38,32,33,110,111,84,111,117,99,104,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,123,92,110,32,32,32,32,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,98,97,99,107,103,114,111,117,110,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,114,101,103,105,111,110,39,44,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,98,117,115,121,39,58,32,105,115,83,108,105,100,105,110,103,32,63,32,39,116,114,117,101,39,32,58,32,39,102,97,108,115,101,39,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,111,110,92,110,32,32,32,32,125,44,32,91,36,105,110,110,101,114,44,32,36,99,111,110,116,114,111,108,115,44,32,36,105,110,100,105,99,97,116,111,114,115,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,99,97,114,111,117,115,101,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,111,117,115,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,114,111,117,115,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,67,97,114,111,117,115,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,111,117,115,101,108,83,108,105,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,114,111,117,115,101,108,95,115,108,105,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,67,97,114,111,117,115,101,108,83,108,105,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,97,114,111,117,115,101,108,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,97,114,111,117,115,101,108,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,111,117,115,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,111,117,115,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,99,97,114,111,117,115,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,111,117,115,101,108,95,115,108,105,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,111,117,115,101,108,45,115,108,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,99,97,114,111,117,115,101,108,45,115,108,105,100,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,67,97,114,111,117,115,101,108,80,108,117,103,105,110,32,61,92,110,47,42,35,95,95,80,85,82,69,42,47,92,110,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,67,97,114,111,117,115,101,108,58,32,95,99,97,114,111,117,115,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,67,97,114,111,117,115,101,108,44,92,110,32,32,32,32,66,67,97,114,111,117,115,101,108,83,108,105,100,101,58,32,95,99,97,114,111,117,115,101,108,95,115,108,105,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,67,97,114,111,117,115,101,108,83,108,105,100,101,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,99,111,108,108,97,112,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,99,111,108,108,97,112,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,111,108,108,97,112,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,111,108,108,97,112,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,108,97,115,115,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,108,97,115,115,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,108,97,115,115,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,98,118,95,99,111,108,108,97,112,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,98,118,45,99,111,108,108,97,112,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,104,101,108,112,101,114,115,47,98,118,45,99,111,108,108,97,112,115,101,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,84,79,71,71,76,69,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,32,39,116,111,103,103,108,101,39,41,59,92,110,118,97,114,32,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,82,69,81,85,69,83,84,95,83,84,65,84,69,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,32,39,114,101,113,117,101,115,116,45,115,116,97,116,101,39,41,59,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,65,67,67,79,82,68,73,79,78,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,32,39,97,99,99,111,114,100,105,111,110,39,41,59,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,84,65,84,69,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,32,39,115,116,97,116,101,39,41,59,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,89,78,67,95,83,84,65,84,69,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,32,39,115,121,110,99,45,115,116,97,116,101,39,41,59,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,105,115,105,98,108,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,92,110,32,32,100,101,102,97,117,108,116,86,97,108,117,101,58,32,102,97,108,115,101,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,47,47,32,73,102,32,96,116,114,117,101,96,32,40,97,110,100,32,96,118,105,115,105,98,108,101,96,32,105,115,32,96,116,114,117,101,96,32,111,110,32,109,111,117,110,116,41,44,32,97,110,105,109,97,116,101,32,105,110,105,116,105,97,108,108,121,32,118,105,115,105,98,108,101,92,110,32,32,97,99,99,111,114,100,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,97,112,112,101,97,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,105,115,78,97,118,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,111,108,108,97,112,115,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,108,105,115,116,101,110,79,110,82,111,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,115,104,111,119,58,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,44,92,110,32,32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,105,110,103,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,108,97,115,115,79,98,106,101,99,116,58,32,102,117,110,99,116,105,111,110,32,99,108,97,115,115,79,98,106,101,99,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,114,97,110,115,105,116,105,111,110,105,110,103,32,61,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,105,110,103,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,39,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,39,58,32,116,104,105,115,46,105,115,78,97,118,44,92,110,32,32,32,32,32,32,32,32,99,111,108,108,97,112,115,101,58,32,33,116,114,97,110,115,105,116,105,111,110,105,110,103,44,92,110,32,32,32,32,32,32,32,32,115,104,111,119,58,32,116,104,105,115,46,115,104,111,119,32,38,38,32,33,116,114,97,110,115,105,116,105,111,110,105,110,103,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,108,111,116,83,99,111,112,101,58,32,102,117,110,99,116,105,111,110,32,115,108,111,116,83,99,111,112,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,58,32,116,104,105,115,46,115,104,111,119,44,92,110,32,32,32,32,32,32,32,32,99,108,111,115,101,58,32,102,117,110,99,116,105,111,110,32,99,108,111,115,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,115,104,111,119,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,116,104,105,115,46,115,104,111,119,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,32,61,32,110,101,119,86,97,108,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,115,104,111,119,92,34,44,32,102,117,110,99,116,105,111,110,32,115,104,111,119,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,83,116,97,116,101,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,104,111,119,32,61,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,116,104,105,115,46,115,104,111,119,32,61,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,59,32,47,47,32,76,105,115,116,101,110,32,102,111,114,32,116,111,103,103,108,101,32,101,118,101,110,116,115,32,116,111,32,111,112,101,110,47,99,108,111,115,101,32,117,115,92,110,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,84,79,71,71,76,69,44,32,116,104,105,115,46,104,97,110,100,108,101,84,111,103,103,108,101,69,118,116,41,59,32,47,47,32,76,105,115,116,101,110,32,116,111,32,111,116,104,101,114,32,99,111,108,108,97,112,115,101,115,32,102,111,114,32,97,99,99,111,114,100,105,111,110,32,101,118,101,110,116,115,92,110,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,65,67,67,79,82,68,73,79,78,44,32,116,104,105,115,46,104,97,110,100,108,101,65,99,99,111,114,100,105,111,110,69,118,116,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,78,97,118,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,101,116,32,117,112,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,87,105,110,100,111,119,69,118,101,110,116,115,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,104,97,110,100,108,101,82,101,115,105,122,101,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,50,46,101,109,105,116,83,116,97,116,101,40,41,59,92,110,32,32,32,32,125,41,59,32,47,47,32,76,105,115,116,101,110,32,102,111,114,32,92,34,83,121,110,99,32,115,116,97,116,101,92,34,32,114,101,113,117,101,115,116,115,32,102,114,111,109,32,96,118,45,98,45,116,111,103,103,108,101,96,92,110,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,82,69,81,85,69,83,84,95,83,84,65,84,69,44,32,102,117,110,99,116,105,111,110,32,40,105,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,100,32,61,61,61,32,95,116,104,105,115,50,46,115,97,102,101,73,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,36,110,101,120,116,84,105,99,107,40,95,116,104,105,115,50,46,101,109,105,116,83,121,110,99,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,117,112,100,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,69,109,105,116,32,97,32,112,114,105,118,97,116,101,32,101,118,101,110,116,32,101,118,101,114,121,32,116,105,109,101,32,116,104,105,115,32,99,111,109,112,111,110,101,110,116,32,117,112,100,97,116,101,115,32,116,111,32,101,110,115,117,114,101,92,110,32,32,32,32,47,47,32,116,104,101,32,116,111,103,103,108,101,32,98,117,116,116,111,110,32,105,115,32,105,110,32,115,121,110,99,32,119,105,116,104,32,116,104,101,32,99,111,108,108,97,112,115,101,39,115,32,115,116,97,116,101,92,110,32,32,32,32,47,47,32,73,116,32,105,115,32,101,109,105,116,116,101,100,32,114,101,103,97,114,100,108,101,115,115,32,105,102,32,116,104,101,32,118,105,115,105,98,108,101,32,115,116,97,116,101,32,99,104,97,110,103,101,115,92,110,32,32,32,32,116,104,105,115,46,101,109,105,116,83,121,110,99,40,41,59,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,100,101,97,99,116,105,118,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,100,101,97,99,116,105,118,97,116,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,78,97,118,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,87,105,110,100,111,119,69,118,101,110,116,115,40,102,97,108,115,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,97,99,116,105,118,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,97,99,116,105,118,97,116,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,78,97,118,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,87,105,110,100,111,119,69,118,101,110,116,115,40,116,114,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,101,109,105,116,83,121,110,99,40,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,47,47,32,84,114,105,103,103,101,114,32,115,116,97,116,101,32,101,109,105,116,32,105,102,32,110,101,101,100,101,100,92,110,32,32,32,32,116,104,105,115,46,115,104,111,119,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,78,97,118,32,38,38,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,73,83,95,66,82,79,87,83,69,82,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,87,105,110,100,111,119,69,118,101,110,116,115,40,102,97,108,115,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,115,101,116,87,105,110,100,111,119,69,118,101,110,116,115,58,32,102,117,110,99,116,105,111,110,32,115,101,116,87,105,110,100,111,119,69,118,101,110,116,115,40,111,110,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,79,102,102,41,40,111,110,44,32,119,105,110,100,111,119,44,32,39,114,101,115,105,122,101,39,44,32,116,104,105,115,46,104,97,110,100,108,101,82,101,115,105,122,101,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,79,102,102,41,40,111,110,44,32,119,105,110,100,111,119,44,32,39,111,114,105,101,110,116,97,116,105,111,110,99,104,97,110,103,101,39,44,32,116,104,105,115,46,104,97,110,100,108,101,82,101,115,105,122,101,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,111,103,103,108,101,58,32,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,32,61,32,33,116,104,105,115,46,115,104,111,119,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,69,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,111,110,69,110,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,105,110,103,32,61,32,116,114,117,101,59,32,47,47,32,84,104,105,115,32,115,104,111,117,108,100,32,98,101,32,109,111,118,101,100,32,111,117,116,32,115,111,32,119,101,32,99,97,110,32,97,100,100,32,99,97,110,99,101,108,108,97,98,108,101,32,101,118,101,110,116,115,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,65,102,116,101,114,69,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,111,110,65,102,116,101,114,69,110,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,76,101,97,118,101,58,32,102,117,110,99,116,105,111,110,32,111,110,76,101,97,118,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,105,110,103,32,61,32,116,114,117,101,59,32,47,47,32,84,104,105,115,32,115,104,111,117,108,100,32,98,101,32,109,111,118,101,100,32,111,117,116,32,115,111,32,119,101,32,99,97,110,32,97,100,100,32,99,97,110,99,101,108,108,97,98,108,101,32,101,118,101,110,116,115,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,65,102,116,101,114,76,101,97,118,101,58,32,102,117,110,99,116,105,111,110,32,111,110,65,102,116,101,114,76,101,97,118,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,109,105,116,83,116,97,116,101,58,32,102,117,110,99,116,105,111,110,32,101,109,105,116,83,116,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,104,111,119,32,61,32,116,104,105,115,46,115,104,111,119,44,92,110,32,32,32,32,32,32,32,32,32,32,97,99,99,111,114,100,105,111,110,32,61,32,116,104,105,115,46,97,99,99,111,114,100,105,111,110,59,92,110,32,32,32,32,32,32,118,97,114,32,105,100,32,61,32,116,104,105,115,46,115,97,102,101,73,100,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,115,104,111,119,41,59,32,47,47,32,76,101,116,32,96,118,45,98,45,116,111,103,103,108,101,96,32,107,110,111,119,32,116,104,101,32,115,116,97,116,101,32,111,102,32,116,104,105,115,32,99,111,108,108,97,112,115,101,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,84,65,84,69,44,32,105,100,44,32,115,104,111,119,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,97,99,99,111,114,100,105,111,110,32,38,38,32,115,104,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,101,108,108,32,116,104,101,32,111,116,104,101,114,32,99,111,108,108,97,112,115,101,115,32,105,110,32,116,104,105,115,32,97,99,99,111,114,100,105,111,110,32,116,111,32,99,108,111,115,101,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,65,67,67,79,82,68,73,79,78,44,32,105,100,44,32,97,99,99,111,114,100,105,111,110,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,109,105,116,83,121,110,99,58,32,102,117,110,99,116,105,111,110,32,101,109,105,116,83,121,110,99,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,69,109,105,116,32,97,32,112,114,105,118,97,116,101,32,101,118,101,110,116,32,101,118,101,114,121,32,116,105,109,101,32,116,104,105,115,32,99,111,109,112,111,110,101,110,116,32,117,112,100,97,116,101,115,32,116,111,32,101,110,115,117,114,101,92,110,32,32,32,32,32,32,47,47,32,116,104,101,32,116,111,103,103,108,101,32,98,117,116,116,111,110,32,105,115,32,105,110,32,115,121,110,99,32,119,105,116,104,32,116,104,101,32,99,111,108,108,97,112,115,101,39,115,32,115,116,97,116,101,92,110,32,32,32,32,32,32,47,47,32,73,116,32,105,115,32,101,109,105,116,116,101,100,32,114,101,103,97,114,100,108,101,115,115,32,105,102,32,116,104,101,32,118,105,115,105,98,108,101,32,115,116,97,116,101,32,99,104,97,110,103,101,115,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,89,78,67,95,83,84,65,84,69,44,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,32,116,104,105,115,46,115,104,111,119,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,104,101,99,107,68,105,115,112,108,97,121,66,108,111,99,107,58,32,102,117,110,99,116,105,111,110,32,99,104,101,99,107,68,105,115,112,108,97,121,66,108,111,99,107,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,104,101,99,107,32,116,111,32,115,101,101,32,105,102,32,116,104,101,32,99,111,108,108,97,112,115,101,32,104,97,115,32,96,100,105,115,112,108,97,121,58,32,98,108,111,99,107,32,33,105,109,112,111,114,116,97,110,116,96,32,115,101,116,92,110,32,32,32,32,32,32,47,47,32,87,101,32,99,97,110,39,116,32,115,101,116,32,96,100,105,115,112,108,97,121,58,32,110,111,110,101,96,32,100,105,114,101,99,116,108,121,32,111,110,32,96,116,104,105,115,46,36,101,108,96,44,32,97,115,32,105,116,32,119,111,117,108,100,92,110,32,32,32,32,32,32,47,47,32,116,114,105,103,103,101,114,32,97,32,110,101,119,32,116,114,97,110,115,105,116,105,111,110,32,116,111,32,115,116,97,114,116,32,40,111,114,32,99,97,110,99,101,108,32,97,32,99,117,114,114,101,110,116,32,111,110,101,41,92,110,32,32,32,32,32,32,118,97,114,32,36,101,108,32,61,32,116,104,105,115,46,36,101,108,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,116,111,114,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,104,97,115,67,108,97,115,115,41,40,36,101,108,44,32,95,99,111,110,115,116,97,110,116,115,95,99,108,97,115,115,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,67,76,65,83,83,95,78,65,77,69,95,83,72,79,87,41,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,36,101,108,44,32,95,99,111,110,115,116,97,110,116,115,95,99,108,97,115,115,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,67,76,65,83,83,95,78,65,77,69,95,83,72,79,87,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,115,66,108,111,99,107,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,103,101,116,67,83,41,40,36,101,108,41,46,100,105,115,112,108,97,121,32,61,61,61,32,39,98,108,111,99,107,39,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,116,111,114,101,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,97,100,100,67,108,97,115,115,41,40,36,101,108,44,32,95,99,111,110,115,116,97,110,116,115,95,99,108,97,115,115,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,67,76,65,83,83,95,78,65,77,69,95,83,72,79,87,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,66,108,111,99,107,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,108,105,99,107,72,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,72,97,110,100,108,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,101,108,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,59,32,47,47,32,73,102,32,119,101,32,97,114,101,32,105,110,32,97,32,110,97,118,47,110,97,118,98,97,114,44,32,99,108,111,115,101,32,116,104,101,32,99,111,108,108,97,112,115,101,32,119,104,101,110,32,110,111,110,45,100,105,115,97,98,108,101,100,32,108,105,110,107,32,99,108,105,99,107,101,100,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,99,97,110,39,116,32,116,101,115,116,32,96,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,41,96,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,78,97,118,32,124,124,32,33,101,108,32,124,124,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,103,101,116,67,83,41,40,116,104,105,115,46,36,101,108,41,46,100,105,115,112,108,97,121,32,33,61,61,32,39,98,108,111,99,107,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,79,110,108,121,32,99,108,111,115,101,32,116,104,101,32,99,111,108,108,97,112,115,101,32,105,102,32,105,116,32,105,115,32,110,111,116,32,102,111,114,99,101,100,32,116,111,32,98,101,32,96,100,105,115,112,108,97,121,58,32,98,108,111,99,107,32,33,105,109,112,111,114,116,97,110,116,96,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,109,97,116,99,104,101,115,41,40,101,108,44,32,39,46,110,97,118,45,108,105,110,107,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,39,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,99,108,111,115,101,115,116,41,40,39,46,110,97,118,45,108,105,110,107,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,39,44,32,101,108,41,41,32,38,38,32,33,116,104,105,115,46,99,104,101,99,107,68,105,115,112,108,97,121,66,108,111,99,107,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,84,111,103,103,108,101,69,118,116,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,84,111,103,103,108,101,69,118,116,40,105,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,100,32,61,61,61,32,116,104,105,115,46,115,97,102,101,73,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,111,103,103,108,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,65,99,99,111,114,100,105,111,110,69,118,116,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,65,99,99,111,114,100,105,111,110,69,118,116,40,111,112,101,110,101,100,73,100,44,32,111,112,101,110,65,99,99,111,114,100,105,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,99,99,111,114,100,105,111,110,32,61,32,116,104,105,115,46,97,99,99,111,114,100,105,111,110,44,92,110,32,32,32,32,32,32,32,32,32,32,115,104,111,119,32,61,32,116,104,105,115,46,115,104,111,119,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,97,99,99,111,114,100,105,111,110,32,124,124,32,97,99,99,111,114,100,105,111,110,32,33,61,61,32,111,112,101,110,65,99,99,111,114,100,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,115,84,104,105,115,32,61,32,111,112,101,110,101,100,73,100,32,61,61,61,32,116,104,105,115,46,115,97,102,101,73,100,40,41,59,32,47,47,32,79,112,101,110,32,116,104,105,115,32,99,111,108,108,97,112,115,101,32,105,102,32,110,111,116,32,115,104,111,119,110,32,111,114,92,110,32,32,32,32,32,32,47,47,32,99,108,111,115,101,32,116,104,105,115,32,99,111,108,108,97,112,115,101,32,105,102,32,115,104,111,119,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,84,104,105,115,32,38,38,32,33,115,104,111,119,32,124,124,32,33,105,115,84,104,105,115,32,38,38,32,115,104,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,111,103,103,108,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,82,101,115,105,122,101,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,82,101,115,105,122,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,114,32,102,111,114,32,111,114,105,101,110,116,97,116,105,111,110,47,114,101,115,105,122,101,32,116,111,32,115,101,116,32,99,111,108,108,97,112,115,101,100,32,115,116,97,116,101,32,105,110,32,110,97,118,47,110,97,118,98,97,114,92,110,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,103,101,116,67,83,41,40,116,104,105,115,46,36,101,108,41,46,100,105,115,112,108,97,121,32,61,61,61,32,39,98,108,111,99,107,39,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,97,112,112,101,97,114,32,61,32,116,104,105,115,46,97,112,112,101,97,114,59,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,104,40,116,104,105,115,46,116,97,103,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,99,108,97,115,115,79,98,106,101,99,116,44,92,110,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,39,115,104,111,119,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,115,104,111,119,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,99,108,105,99,107,72,97,110,100,108,101,114,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,116,104,105,115,46,115,108,111,116,83,99,111,112,101,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,95,104,101,108,112,101,114,115,95,98,118,95,99,111,108,108,97,112,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,66,86,67,111,108,108,97,112,115,101,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,97,112,112,101,97,114,58,32,97,112,112,101,97,114,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,101,110,116,101,114,58,32,116,104,105,115,46,111,110,69,110,116,101,114,44,92,110,32,32,32,32,32,32,32,32,97,102,116,101,114,69,110,116,101,114,58,32,116,104,105,115,46,111,110,65,102,116,101,114,69,110,116,101,114,44,92,110,32,32,32,32,32,32,32,32,108,101,97,118,101,58,32,116,104,105,115,46,111,110,76,101,97,118,101,44,92,110,32,32,32,32,32,32,32,32,97,102,116,101,114,76,101,97,118,101,58,32,116,104,105,115,46,111,110,65,102,116,101,114,76,101,97,118,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,99,111,110,116,101,110,116,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,99,111,108,108,97,112,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,104,101,108,112,101,114,115,47,98,118,45,99,111,108,108,97,112,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,104,101,108,112,101,114,115,47,98,118,45,99,111,108,108,97,112,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,67,111,108,108,97,112,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,86,67,111,108,108,97,112,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,47,32,71,101,110,101,114,105,99,32,99,111,108,108,97,112,115,101,32,116,114,97,110,115,105,111,110,32,104,101,108,112,101,114,32,99,111,109,112,111,110,101,110,116,92,110,47,47,92,110,47,47,32,78,111,116,101,58,92,110,47,47,32,32,32,65,112,112,108,105,101,115,32,116,104,101,32,99,108,97,115,115,101,115,32,96,99,111,108,108,97,112,115,101,96,44,32,96,115,104,111,119,96,32,97,110,100,32,96,99,111,108,108,97,112,115,105,110,103,96,92,110,47,47,32,32,32,100,117,114,105,110,103,32,116,104,101,32,101,110,116,101,114,47,108,101,97,118,101,32,116,114,97,110,115,105,116,105,111,110,32,112,104,97,115,101,115,32,111,110,108,121,92,110,47,47,32,32,32,65,108,116,104,111,117,103,104,32,105,116,32,97,112,112,101,97,114,115,32,116,104,97,116,32,86,117,101,32,109,97,121,32,98,101,32,108,101,97,118,105,110,103,32,116,104,101,32,99,108,97,115,115,101,115,92,110,47,47,32,32,32,105,110,45,112,108,97,99,101,32,97,102,116,101,114,32,116,104,101,32,116,114,97,110,115,105,116,105,111,110,32,99,111,109,112,108,101,116,101,115,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,84,114,97,110,115,105,116,105,111,110,32,101,118,101,110,116,32,104,97,110,100,108,101,114,32,104,101,108,112,101,114,115,92,110,92,110,118,97,114,32,111,110,69,110,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,111,110,69,110,116,101,114,40,101,108,41,32,123,92,110,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,116,83,116,121,108,101,41,40,101,108,44,32,39,104,101,105,103,104,116,39,44,32,48,41,59,32,47,47,32,73,110,32,97,32,96,114,101,113,117,101,115,116,65,70,40,41,96,32,102,111,114,32,96,97,112,112,101,97,114,96,32,116,111,32,119,111,114,107,92,110,92,110,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,102,108,111,119,41,40,101,108,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,116,83,116,121,108,101,41,40,101,108,44,32,39,104,101,105,103,104,116,39,44,32,92,34,92,34,46,99,111,110,99,97,116,40,101,108,46,115,99,114,111,108,108,72,101,105,103,104,116,44,32,92,34,112,120,92,34,41,41,59,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,118,97,114,32,111,110,65,102,116,101,114,69,110,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,111,110,65,102,116,101,114,69,110,116,101,114,40,101,108,41,32,123,92,110,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,109,111,118,101,83,116,121,108,101,41,40,101,108,44,32,39,104,101,105,103,104,116,39,41,59,92,110,125,59,92,110,92,110,118,97,114,32,111,110,76,101,97,118,101,32,61,32,102,117,110,99,116,105,111,110,32,111,110,76,101,97,118,101,40,101,108,41,32,123,92,110,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,116,83,116,121,108,101,41,40,101,108,44,32,39,104,101,105,103,104,116,39,44,32,39,97,117,116,111,39,41,59,92,110,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,116,83,116,121,108,101,41,40,101,108,44,32,39,100,105,115,112,108,97,121,39,44,32,39,98,108,111,99,107,39,41,59,92,110,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,116,83,116,121,108,101,41,40,101,108,44,32,39,104,101,105,103,104,116,39,44,32,92,34,92,34,46,99,111,110,99,97,116,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,66,67,82,41,40,101,108,41,46,104,101,105,103,104,116,44,32,92,34,112,120,92,34,41,41,59,92,110,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,102,108,111,119,41,40,101,108,41,59,92,110,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,116,83,116,121,108,101,41,40,101,108,44,32,39,104,101,105,103,104,116,39,44,32,48,41,59,92,110,125,59,92,110,92,110,118,97,114,32,111,110,65,102,116,101,114,76,101,97,118,101,32,61,32,102,117,110,99,116,105,111,110,32,111,110,65,102,116,101,114,76,101,97,118,101,40,101,108,41,32,123,92,110,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,109,111,118,101,83,116,121,108,101,41,40,101,108,44,32,39,104,101,105,103,104,116,39,41,59,92,110,125,59,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,47,47,32,68,101,102,97,117,108,116,32,116,114,97,110,115,105,116,105,111,110,32,112,114,111,112,115,92,110,47,47,32,96,97,112,112,101,97,114,96,32,119,105,108,108,32,117,115,101,32,116,104,101,32,101,110,116,101,114,32,99,108,97,115,115,101,115,92,110,92,110,92,110,118,97,114,32,84,82,65,78,83,73,84,73,79,78,95,80,82,79,80,83,32,61,32,123,92,110,32,32,99,115,115,58,32,116,114,117,101,44,92,110,32,32,101,110,116,101,114,67,108,97,115,115,58,32,39,39,44,92,110,32,32,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,58,32,39,99,111,108,108,97,112,115,105,110,103,39,44,92,110,32,32,101,110,116,101,114,84,111,67,108,97,115,115,58,32,39,99,111,108,108,97,112,115,101,32,115,104,111,119,39,44,92,110,32,32,108,101,97,118,101,67,108,97,115,115,58,32,39,99,111,108,108,97,112,115,101,32,115,104,111,119,39,44,92,110,32,32,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,58,32,39,99,111,108,108,97,112,115,105,110,103,39,44,92,110,32,32,108,101,97,118,101,84,111,67,108,97,115,115,58,32,39,99,111,108,108,97,112,115,101,39,92,110,125,59,32,47,47,32,68,101,102,97,117,108,116,32,116,114,97,110,115,105,116,105,111,110,32,104,97,110,100,108,101,114,115,92,110,47,47,32,96,97,112,112,101,97,114,96,32,119,105,108,108,32,117,115,101,32,116,104,101,32,101,110,116,101,114,32,104,97,110,100,108,101,114,115,92,110,92,110,118,97,114,32,84,82,65,78,83,73,84,73,79,78,95,72,65,78,68,76,69,82,83,32,61,32,123,92,110,32,32,101,110,116,101,114,58,32,111,110,69,110,116,101,114,44,92,110,32,32,97,102,116,101,114,69,110,116,101,114,58,32,111,110,65,102,116,101,114,69,110,116,101,114,44,92,110,32,32,108,101,97,118,101,58,32,111,110,76,101,97,118,101,44,92,110,32,32,97,102,116,101,114,76,101,97,118,101,58,32,111,110,65,102,116,101,114,76,101,97,118,101,92,110,125,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,47,47,32,47,47,32,73,102,32,96,116,114,117,101,96,32,40,97,110,100,32,96,118,105,115,105,98,108,101,96,32,105,115,32,96,116,114,117,101,96,32,111,110,32,109,111,117,110,116,41,44,32,97,110,105,109,97,116,101,32,105,110,105,116,105,97,108,108,121,32,118,105,115,105,98,108,101,92,110,32,32,97,112,112,101,97,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,86,67,111,108,108,97,112,115,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,95,72,69,76,80,69,82,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,116,114,97,110,115,105,116,105,111,110,39,44,32,47,47,32,87,101,32,109,101,114,103,101,32,105,110,32,116,104,101,32,96,97,112,112,101,97,114,96,32,112,114,111,112,32,108,97,115,116,92,110,32,32,32,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,84,82,65,78,83,73,84,73,79,78,95,80,82,79,80,83,44,92,110,32,32,32,32,32,32,111,110,58,32,84,82,65,78,83,73,84,73,79,78,95,72,65,78,68,76,69,82,83,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,112,114,111,112,115,92,110,32,32,32,32,125,41,44,32,47,47,32,78,111,116,101,58,32,96,60,116,114,97,110,115,105,116,105,111,110,62,96,32,115,117,112,112,111,114,116,115,32,97,32,115,105,110,103,108,101,32,114,111,111,116,32,101,108,101,109,101,110,116,32,111,110,108,121,92,110,32,32,32,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,104,101,108,112,101,114,115,47,98,118,45,99,111,108,108,97,112,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,111,108,108,97,112,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,108,108,97,112,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,67,111,108,108,97,112,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,111,108,108,97,112,115,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,111,108,108,97,112,115,101,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,108,97,112,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,108,108,97,112,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,99,111,108,108,97,112,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,67,111,108,108,97,112,115,101,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,67,111,108,108,97,112,115,101,58,32,95,99,111,108,108,97,112,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,67,111,108,108,97,112,115,101,92,110,32,32,125,44,92,110,32,32,112,108,117,103,105,110,115,58,32,123,92,110,32,32,32,32,86,66,84,111,103,103,108,101,80,108,117,103,105,110,58,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,86,66,84,111,103,103,108,101,80,108,117,103,105,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,68,105,118,105,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,68,114,111,112,100,111,119,110,68,105,118,105,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,104,114,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,95,68,73,86,73,68,69,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,68,114,111,112,100,111,119,110,68,105,118,105,100,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,95,68,73,86,73,68,69,82,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,111,109,105,116,41,40,100,97,116,97,44,32,91,39,97,116,116,114,115,39,93,41,44,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,112,114,101,115,101,110,116,97,116,105,111,110,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,44,32,91,104,40,112,114,111,112,115,46,116,97,103,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,39,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,100,97,116,97,46,97,116,116,114,115,32,124,124,32,123,125,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,115,101,112,97,114,97,116,111,114,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,111,114,105,101,110,116,97,116,105,111,110,39,58,32,39,104,111,114,105,122,111,110,116,97,108,39,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,100,105,118,105,100,101,114,39,92,110,32,32,32,32,125,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,102,111,114,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,102,111,114,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,70,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,68,114,111,112,100,111,119,110,70,111,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,102,111,114,109,47,102,111,114,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,102,111,114,109,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,102,111,114,109,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,95,70,79,82,77,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,68,114,111,112,100,111,119,110,70,111,114,109,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,95,70,79,82,77,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,32,61,32,95,114,101,102,46,108,105,115,116,101,110,101,114,115,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,101,114,103,101,68,97,116,97,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,111,109,105,116,41,40,100,97,116,97,44,32,91,39,97,116,116,114,115,39,44,32,39,111,110,39,93,41,44,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,112,114,101,115,101,110,116,97,116,105,111,110,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,44,32,91,104,40,95,102,111,114,109,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,100,114,111,112,100,111,119,110,45,102,111,114,109,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,112,114,111,112,115,46,102,111,114,109,67,108,97,115,115,44,32,123,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,112,114,111,112,115,46,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,100,97,116,97,46,97,116,116,114,115,32,124,124,32,123,125,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,112,114,111,112,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,47,47,32,84,97,98,32,105,110,100,101,120,32,111,102,32,45,49,32,102,111,114,32,107,101,121,98,111,97,114,100,32,110,97,118,105,103,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,112,114,111,112,115,46,100,105,115,97,98,108,101,100,32,63,32,110,117,108,108,32,58,32,39,45,49,39,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,111,110,58,32,108,105,115,116,101,110,101,114,115,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,102,111,114,109,39,92,110,32,32,32,32,125,44,32,99,104,105,108,100,114,101,110,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,102,111,114,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,103,114,111,117,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,103,114,111,117,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,68,114,111,112,100,111,119,110,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,104,101,97,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,104,101,97,100,101,114,67,108,97,115,115,101,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,104,101,97,100,101,114,84,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,104,101,97,100,101,114,39,41,44,92,110,32,32,104,101,97,100,101,114,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,95,71,82,79,85,80,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,68,114,111,112,100,111,119,110,71,114,111,117,112,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,95,71,82,79,85,80,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,115,108,111,116,115,32,61,32,95,114,101,102,46,115,108,111,116,115,44,92,110,32,32,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,32,61,32,95,114,101,102,46,115,99,111,112,101,100,83,108,111,116,115,59,92,110,32,32,32,32,118,97,114,32,105,100,32,61,32,112,114,111,112,115,46,105,100,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,104,101,97,100,101,114,32,61,32,112,114,111,112,115,46,104,101,97,100,101,114,44,92,110,32,32,32,32,32,32,32,32,104,101,97,100,101,114,84,97,103,32,61,32,112,114,111,112,115,46,104,101,97,100,101,114,84,97,103,59,92,110,32,32,32,32,118,97,114,32,36,115,108,111,116,115,32,61,32,115,108,111,116,115,40,41,59,92,110,32,32,32,32,118,97,114,32,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,115,99,111,112,101,100,83,108,111,116,115,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,115,108,111,116,83,99,111,112,101,32,61,32,123,125,59,92,110,32,32,32,32,118,97,114,32,104,101,97,100,101,114,73,100,32,61,32,105,100,32,63,32,92,34,95,98,118,95,92,34,46,99,111,110,99,97,116,40,105,100,44,32,92,34,95,103,114,111,117,112,95,100,100,95,104,101,97,100,101,114,92,34,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,118,97,114,32,36,104,101,97,100,101,114,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,72,69,65,68,69,82,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,32,124,124,32,104,101,97,100,101,114,41,32,123,92,110,32,32,32,32,32,32,36,104,101,97,100,101,114,32,61,32,104,40,104,101,97,100,101,114,84,97,103,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,112,114,111,112,115,46,104,101,97,100,101,114,67,108,97,115,115,101,115,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,44,32,118,97,114,105,97,110,116,41,93,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,104,101,97,100,101,114,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,84,97,103,41,40,104,101,97,100,101,114,84,97,103,44,32,39,104,101,97,100,101,114,39,41,32,63,32,110,117,108,108,32,58,32,39,104,101,97,100,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,72,69,65,68,69,82,44,32,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,32,124,124,32,104,101,97,100,101,114,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,109,101,114,103,101,68,97,116,97,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,111,109,105,116,41,40,100,97,116,97,44,32,91,39,97,116,116,114,115,39,93,41,44,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,112,114,101,115,101,110,116,97,116,105,111,110,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,44,32,91,36,104,101,97,100,101,114,44,32,104,40,39,117,108,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,108,105,115,116,45,117,110,115,116,121,108,101,100,39,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,100,97,116,97,46,97,116,116,114,115,32,124,124,32,123,125,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,105,100,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,103,114,111,117,112,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,58,32,91,104,101,97,100,101,114,73,100,44,32,112,114,111,112,115,46,97,114,105,97,68,101,115,99,114,105,98,101,100,66,121,93,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,32,39,41,46,116,114,105,109,40,41,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,125,41,92,110,32,32,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,103,114,111,117,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,72,101,97,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,68,114,111,112,100,111,119,110,72,101,97,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,104,101,97,100,101,114,39,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,95,72,69,65,68,69,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,68,114,111,112,100,111,119,110,72,101,97,100,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,95,72,69,65,68,69,82,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,116,97,103,32,61,32,112,114,111,112,115,46,116,97,103,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,118,97,114,105,97,110,116,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,111,109,105,116,41,40,100,97,116,97,44,32,91,39,97,116,116,114,115,39,93,41,44,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,112,114,101,115,101,110,116,97,116,105,111,110,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,44,32,91,104,40,116,97,103,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,44,32,118,97,114,105,97,110,116,41,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,100,97,116,97,46,97,116,116,114,115,32,124,124,32,123,125,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,112,114,111,112,115,46,105,100,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,84,97,103,41,40,116,97,103,44,32,39,104,101,97,100,101,114,39,41,32,63,32,110,117,108,108,32,58,32,39,104,101,97,100,105,110,103,39,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,104,101,97,100,101,114,39,92,110,32,32,32,32,125,44,32,99,104,105,108,100,114,101,110,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,105,116,101,109,45,98,117,116,116,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,105,116,101,109,45,98,117,116,116,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,73,116,101,109,66,117,116,116,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,68,114,111,112,100,111,119,110,73,116,101,109,66,117,116,116,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,99,116,105,118,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,97,99,116,105,118,101,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,97,99,116,105,118,101,39,41,44,92,110,32,32,98,117,116,116,111,110,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,95,73,84,69,77,95,66,85,84,84,79,78,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,68,114,111,112,100,111,119,110,73,116,101,109,66,117,116,116,111,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,95,73,84,69,77,95,66,85,84,84,79,78,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,105,110,106,101,99,116,58,32,123,92,110,32,32,32,32,98,118,68,114,111,112,100,111,119,110,58,32,123,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,110,117,108,108,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,104,105,115,46,98,118,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,109,101,110,117,105,116,101,109,39,44,92,110,32,32,32,32,32,32,32,32,116,121,112,101,58,32,39,98,117,116,116,111,110,39,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,116,104,105,115,46,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,99,108,111,115,101,68,114,111,112,100,111,119,110,58,32,102,117,110,99,116,105,111,110,32,99,108,111,115,101,68,114,111,112,100,111,119,110,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,98,118,68,114,111,112,100,111,119,110,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,98,118,68,114,111,112,100,111,119,110,46,104,105,100,101,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,111,110,67,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,111,115,101,68,114,111,112,100,111,119,110,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,114,101,102,59,92,110,92,110,32,32,32,32,118,97,114,32,97,99,116,105,118,101,32,61,32,116,104,105,115,46,97,99,116,105,118,101,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,98,118,65,116,116,114,115,32,61,32,116,104,105,115,46,98,118,65,116,116,114,115,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,98,118,65,116,116,114,115,46,99,108,97,115,115,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,98,118,65,116,116,114,115,46,115,116,121,108,101,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,112,114,101,115,101,110,116,97,116,105,111,110,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,104,40,39,98,117,116,116,111,110,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,100,114,111,112,100,111,119,110,45,105,116,101,109,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,116,104,105,115,46,98,117,116,116,111,110,67,108,97,115,115,44,32,40,95,114,101,102,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,116,104,105,115,46,97,99,116,105,118,101,67,108,97,115,115,44,32,97,99,116,105,118,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,44,32,118,97,114,105,97,110,116,32,38,38,32,33,40,97,99,116,105,118,101,32,124,124,32,116,104,105,115,46,100,105,115,97,98,108,101,100,41,41,44,32,95,114,101,102,41,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,67,108,105,99,107,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,98,117,116,116,111,110,39,92,110,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,105,116,101,109,45,98,117,116,116,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,105,116,101,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,105,116,101,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,73,116,101,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,68,114,111,112,100,111,119,110,73,116,101,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,105,110,107,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,108,105,110,107,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,91,39,101,118,101,110,116,39,44,32,39,114,111,117,116,101,114,84,97,103,39,93,41,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,108,105,110,107,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,108,105,110,107,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,95,73,84,69,77,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,68,114,111,112,100,111,119,110,73,116,101,109,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,95,73,84,69,77,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,105,110,106,101,99,116,58,32,123,92,110,32,32,32,32,98,118,68,114,111,112,100,111,119,110,58,32,123,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,110,117,108,108,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,104,105,115,46,98,118,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,109,101,110,117,105,116,101,109,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,99,108,111,115,101,68,114,111,112,100,111,119,110,58,32,102,117,110,99,116,105,111,110,32,99,108,111,115,101,68,114,111,112,100,111,119,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,67,108,111,115,101,32,111,110,32,110,101,120,116,32,97,110,105,109,97,116,105,111,110,32,102,114,97,109,101,32,116,111,32,97,108,108,111,119,32,60,98,45,108,105,110,107,62,32,116,105,109,101,32,116,111,32,112,114,111,99,101,115,115,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,46,98,118,68,114,111,112,100,111,119,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,98,118,68,114,111,112,100,111,119,110,46,104,105,100,101,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,111,110,67,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,111,115,101,68,114,111,112,100,111,119,110,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,108,105,110,107,67,108,97,115,115,32,61,32,116,104,105,115,46,108,105,110,107,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,32,61,32,116,104,105,115,46,97,99,116,105,118,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,111,110,67,108,105,99,107,32,61,32,116,104,105,115,46,111,110,67,108,105,99,107,44,92,110,32,32,32,32,32,32,32,32,98,118,65,116,116,114,115,32,61,32,116,104,105,115,46,98,118,65,116,116,114,115,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,98,118,65,116,116,114,115,46,99,108,97,115,115,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,98,118,65,116,116,114,115,46,115,116,121,108,101,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,112,114,101,115,101,110,116,97,116,105,111,110,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,104,40,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,76,105,110,107,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,100,114,111,112,100,111,119,110,45,105,116,101,109,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,108,105,110,107,67,108,97,115,115,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,44,32,118,97,114,105,97,110,116,32,38,38,32,33,40,97,99,116,105,118,101,32,124,124,32,100,105,115,97,98,108,101,100,41,41,93,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,108,105,110,107,80,114,111,112,115,44,32,116,104,105,115,46,36,112,114,111,112,115,41,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,111,110,67,108,105,99,107,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,105,116,101,109,39,92,110,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,105,116,101,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,116,101,120,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,116,101,120,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,68,114,111,112,100,111,119,110,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,112,39,41,44,92,110,32,32,116,101,120,116,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,95,84,69,88,84,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,68,114,111,112,100,111,119,110,84,101,120,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,95,84,69,88,84,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,116,97,103,32,61,32,112,114,111,112,115,46,116,97,103,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,67,108,97,115,115,32,61,32,112,114,111,112,115,46,116,101,120,116,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,118,97,114,105,97,110,116,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,111,109,105,116,41,40,100,97,116,97,44,32,91,39,97,116,116,114,115,39,93,41,44,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,112,114,101,115,101,110,116,97,116,105,111,110,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,44,32,91,104,40,116,97,103,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,100,114,111,112,100,111,119,110,45,116,101,120,116,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,116,101,120,116,67,108,97,115,115,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,44,32,118,97,114,105,97,110,116,41,93,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,100,97,116,97,46,97,116,116,114,115,32,124,124,32,123,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,116,101,120,116,39,92,110,32,32,32,32,125,44,32,99,104,105,108,100,114,101,110,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,116,101,120,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,68,114,111,112,100,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,100,114,111,112,100,111,119,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,100,114,111,112,100,111,119,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,98,117,116,116,111,110,47,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,98,108,111,99,107,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,104,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,73,102,32,96,116,114,117,101,96,44,32,111,110,108,121,32,114,101,110,100,101,114,32,109,101,110,117,32,99,111,110,116,101,110,116,115,32,119,104,101,110,32,111,112,101,110,92,110,32,32,108,97,122,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,109,101,110,117,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,110,111,67,97,114,101,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,111,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,109,101,110,117,39,41,44,92,110,32,32,115,105,122,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,115,112,108,105,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,112,108,105,116,66,117,116,116,111,110,84,121,112,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,98,117,116,116,111,110,39,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,91,39,98,117,116,116,111,110,39,44,32,39,115,117,98,109,105,116,39,44,32,39,114,101,115,101,116,39,93,44,32,118,97,108,117,101,41,59,92,110,32,32,125,41,44,92,110,32,32,115,112,108,105,116,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,115,112,108,105,116,72,114,101,102,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,115,112,108,105,116,84,111,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,115,112,108,105,116,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,111,103,103,108,101,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,116,111,103,103,108,101,84,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,98,117,116,116,111,110,39,41,44,92,110,32,32,47,47,32,84,79,68,79,58,32,84,104,105,115,32,114,101,97,108,108,121,32,115,104,111,117,108,100,32,98,101,32,96,116,111,103,103,108,101,76,97,98,101,108,96,92,110,32,32,116,111,103,103,108,101,84,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,84,111,103,103,108,101,32,100,114,111,112,100,111,119,110,39,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,101,99,111,110,100,97,114,121,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,68,114,111,112,100,111,119,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,100,114,111,112,100,111,119,110,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,100,114,111,112,100,111,119,110,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,100,114,111,112,100,111,119,110,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,108,111,99,107,32,61,32,116,104,105,115,46,98,108,111,99,107,44,92,110,32,32,32,32,32,32,32,32,32,32,115,112,108,105,116,32,61,32,116,104,105,115,46,115,112,108,105,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,104,105,115,46,100,105,114,101,99,116,105,111,110,67,108,97,115,115,44,32,116,104,105,115,46,98,111,117,110,100,97,114,121,67,108,97,115,115,44,32,123,92,110,32,32,32,32,32,32,32,32,115,104,111,119,58,32,116,104,105,115,46,118,105,115,105,98,108,101,44,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,39,98,116,110,45,103,114,111,117,112,39,32,99,108,97,115,115,32,105,115,32,114,101,113,117,105,114,101,100,32,105,110,32,96,115,112,108,105,116,96,32,109,111,100,101,32,102,111,114,32,98,117,116,116,111,110,32,97,108,105,103,110,109,101,110,116,92,110,32,32,32,32,32,32,32,32,47,47,32,73,116,32,110,101,101,100,115,32,97,108,115,111,32,116,111,32,98,101,32,97,112,112,108,105,101,100,32,119,104,101,110,32,96,98,108,111,99,107,96,32,105,115,32,100,105,115,97,98,108,101,100,32,116,111,32,97,108,108,111,119,32,109,117,108,116,105,112,108,101,92,110,32,32,32,32,32,32,32,32,47,47,32,100,114,111,112,100,111,119,110,115,32,116,111,32,98,101,32,97,108,105,103,110,101,100,32,111,110,101,32,108,105,110,101,92,110,32,32,32,32,32,32,32,32,39,98,116,110,45,103,114,111,117,112,39,58,32,115,112,108,105,116,32,124,124,32,33,98,108,111,99,107,44,92,110,32,32,32,32,32,32,32,32,47,47,32,87,104,101,110,32,96,98,108,111,99,107,96,32,105,115,32,101,110,97,98,108,101,100,32,97,110,100,32,119,101,32,97,114,101,32,105,110,32,96,115,112,108,105,116,96,32,109,111,100,101,32,116,104,101,32,39,100,45,102,108,101,120,39,32,99,108,97,115,115,92,110,32,32,32,32,32,32,32,32,47,47,32,110,101,101,100,115,32,116,111,32,98,101,32,97,112,112,108,105,101,100,32,116,111,32,97,108,108,111,119,32,116,104,101,32,98,117,116,116,111,110,115,32,116,111,32,115,116,114,101,116,99,104,32,116,111,32,102,117,108,108,32,119,105,100,116,104,92,110,32,32,32,32,32,32,32,32,39,100,45,102,108,101,120,39,58,32,98,108,111,99,107,32,38,38,32,115,112,108,105,116,92,110,32,32,32,32,32,32,125,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,101,110,117,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,109,101,110,117,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,104,105,115,46,109,101,110,117,67,108,97,115,115,44,32,123,92,110,32,32,32,32,32,32,32,32,39,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,39,58,32,116,104,105,115,46,114,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,115,104,111,119,58,32,116,104,105,115,46,118,105,115,105,98,108,101,92,110,32,32,32,32,32,32,125,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,111,103,103,108,101,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,112,108,105,116,32,61,32,116,104,105,115,46,115,112,108,105,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,104,105,115,46,116,111,103,103,108,101,67,108,97,115,115,44,32,123,92,110,32,32,32,32,32,32,32,32,39,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,39,58,32,115,112,108,105,116,44,92,110,32,32,32,32,32,32,32,32,39,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,110,111,45,99,97,114,101,116,39,58,32,116,104,105,115,46,110,111,67,97,114,101,116,32,38,38,32,33,115,112,108,105,116,92,110,32,32,32,32,32,32,125,93,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,118,105,115,105,98,108,101,32,61,32,116,104,105,115,46,118,105,115,105,98,108,101,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,32,61,32,116,104,105,115,46,115,105,122,101,44,92,110,32,32,32,32,32,32,32,32,98,108,111,99,107,32,61,32,116,104,105,115,46,98,108,111,99,107,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,115,112,108,105,116,32,61,32,116,104,105,115,46,115,112,108,105,116,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,32,61,32,116,104,105,115,46,114,111,108,101,44,92,110,32,32,32,32,32,32,32,32,104,105,100,101,32,61,32,116,104,105,115,46,104,105,100,101,44,92,110,32,32,32,32,32,32,32,32,116,111,103,103,108,101,32,61,32,116,104,105,115,46,116,111,103,103,108,101,59,92,110,32,32,32,32,118,97,114,32,99,111,109,109,111,110,80,114,111,112,115,32,61,32,123,92,110,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,115,105,122,101,58,32,115,105,122,101,44,92,110,32,32,32,32,32,32,98,108,111,99,107,58,32,98,108,111,99,107,44,92,110,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,125,59,92,110,32,32,32,32,118,97,114,32,36,98,117,116,116,111,110,67,104,105,108,100,114,101,110,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,83,76,79,84,95,78,65,77,69,95,66,85,84,84,79,78,95,67,79,78,84,69,78,84,41,59,92,110,32,32,32,32,118,97,114,32,98,117,116,116,111,110,67,111,110,116,101,110,116,68,111,109,80,114,111,112,115,32,61,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,83,76,79,84,95,78,65,77,69,95,66,85,84,84,79,78,95,67,79,78,84,69,78,84,41,32,63,32,123,125,32,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,116,104,105,115,46,104,116,109,108,44,32,116,104,105,115,46,116,101,120,116,41,59,92,110,32,32,32,32,118,97,114,32,36,115,112,108,105,116,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,115,112,108,105,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,112,108,105,116,84,111,32,61,32,116,104,105,115,46,115,112,108,105,116,84,111,44,92,110,32,32,32,32,32,32,32,32,32,32,115,112,108,105,116,72,114,101,102,32,61,32,116,104,105,115,46,115,112,108,105,116,72,114,101,102,44,92,110,32,32,32,32,32,32,32,32,32,32,115,112,108,105,116,66,117,116,116,111,110,84,121,112,101,32,61,32,116,104,105,115,46,115,112,108,105,116,66,117,116,116,111,110,84,121,112,101,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,98,116,110,80,114,111,112,115,32,61,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,99,111,109,109,111,110,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,116,104,105,115,46,115,112,108,105,116,86,97,114,105,97,110,116,32,124,124,32,118,97,114,105,97,110,116,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,87,101,32,97,100,100,32,116,104,101,115,101,32,97,115,32,110,101,101,100,101,100,32,100,117,101,32,116,111,32,60,114,111,117,116,101,114,45,108,105,110,107,62,32,105,115,115,117,101,115,32,119,105,116,104,92,110,32,32,32,32,32,32,47,47,32,100,101,102,105,110,101,100,32,112,114,111,112,101,114,116,121,32,119,105,116,104,32,96,117,110,100,101,102,105,110,101,100,96,47,96,110,117,108,108,96,32,118,97,108,117,101,115,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,112,108,105,116,84,111,41,32,123,92,110,32,32,32,32,32,32,32,32,98,116,110,80,114,111,112,115,46,116,111,32,61,32,115,112,108,105,116,84,111,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,112,108,105,116,72,114,101,102,41,32,123,92,110,32,32,32,32,32,32,32,32,98,116,110,80,114,111,112,115,46,104,114,101,102,32,61,32,115,112,108,105,116,72,114,101,102,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,112,108,105,116,66,117,116,116,111,110,84,121,112,101,41,32,123,92,110,32,32,32,32,32,32,32,32,98,116,110,80,114,111,112,115,46,116,121,112,101,32,61,32,115,112,108,105,116,66,117,116,116,111,110,84,121,112,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,36,115,112,108,105,116,32,61,32,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,66,66,117,116,116,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,115,112,108,105,116,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,66,86,95,98,117,116,116,111,110,95,39,41,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,98,116,110,80,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,98,117,116,116,111,110,67,111,110,116,101,110,116,68,111,109,80,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,83,112,108,105,116,67,108,105,99,107,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,39,98,117,116,116,111,110,39,92,110,32,32,32,32,32,32,125,44,32,36,98,117,116,116,111,110,67,104,105,108,100,114,101,110,41,59,32,47,47,32,79,118,101,114,119,114,105,116,101,32,98,117,116,116,111,110,32,99,111,110,116,101,110,116,32,102,111,114,32,116,104,101,32,116,111,103,103,108,101,32,119,104,101,110,32,105,110,32,96,115,112,108,105,116,96,32,109,111,100,101,92,110,92,110,32,32,32,32,32,32,36,98,117,116,116,111,110,67,104,105,108,100,114,101,110,32,61,32,91,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,39,115,114,45,111,110,108,121,39,93,92,110,32,32,32,32,32,32,125,44,32,91,116,104,105,115,46,116,111,103,103,108,101,84,101,120,116,93,41,93,59,92,110,32,32,32,32,32,32,98,117,116,116,111,110,67,111,110,116,101,110,116,68,111,109,80,114,111,112,115,32,61,32,123,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,116,111,103,103,108,101,32,61,32,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,66,66,117,116,116,111,110,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,111,103,103,108,101,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,66,86,95,116,111,103,103,108,101,95,39,41,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,97,115,112,111,112,117,112,39,58,32,39,116,114,117,101,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,101,120,112,97,110,100,101,100,39,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,116,111,83,116,114,105,110,103,41,40,118,105,115,105,98,108,101,41,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,99,111,109,109,111,110,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,116,97,103,58,32,116,104,105,115,46,116,111,103,103,108,101,84,97,103,44,92,110,32,32,32,32,32,32,32,32,98,108,111,99,107,58,32,98,108,111,99,107,32,38,38,32,33,115,112,108,105,116,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,98,117,116,116,111,110,67,111,110,116,101,110,116,68,111,109,80,114,111,112,115,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,109,111,117,115,101,100,111,119,110,58,32,116,104,105,115,46,111,110,77,111,117,115,101,100,111,119,110,44,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,111,103,103,108,101,44,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,111,103,103,108,101,32,47,47,32,72,97,110,100,108,101,32,69,78,84,69,82,44,32,83,80,65,67,69,32,97,110,100,32,68,79,87,78,92,110,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,116,111,103,103,108,101,39,92,110,32,32,32,32,125,44,32,36,98,117,116,116,111,110,67,104,105,108,100,114,101,110,41,59,92,110,32,32,32,32,118,97,114,32,36,109,101,110,117,32,61,32,104,40,39,117,108,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,100,114,111,112,100,111,119,110,45,109,101,110,117,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,109,101,110,117,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,114,111,108,101,44,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,45,49,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,39,58,32,116,104,105,115,46,115,97,102,101,73,100,40,115,112,108,105,116,32,63,32,39,95,66,86,95,98,117,116,116,111,110,95,39,32,58,32,39,95,66,86,95,116,111,103,103,108,101,95,39,41,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,111,110,75,101,121,100,111,119,110,32,47,47,32,72,97,110,100,108,101,32,85,80,44,32,68,79,87,78,32,97,110,100,32,69,83,67,92,110,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,109,101,110,117,39,92,110,32,32,32,32,125,44,32,91,33,116,104,105,115,46,108,97,122,121,32,124,124,32,118,105,115,105,98,108,101,32,63,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,123,92,110,32,32,32,32,32,32,104,105,100,101,58,32,104,105,100,101,92,110,32,32,32,32,125,41,32,58,32,104,40,41,93,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,100,114,111,112,100,111,119,110,32,98,45,100,114,111,112,100,111,119,110,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,100,114,111,112,100,111,119,110,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,115,112,108,105,116,44,32,36,116,111,103,103,108,101,44,32,36,109,101,110,117,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,68,114,111,112,100,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,68,105,118,105,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,114,111,112,100,111,119,110,95,100,105,118,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,68,114,111,112,100,111,119,110,68,105,118,105,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,70,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,114,111,112,100,111,119,110,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,68,114,111,112,100,111,119,110,70,111,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,114,111,112,100,111,119,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,68,114,111,112,100,111,119,110,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,72,101,97,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,114,111,112,100,111,119,110,95,104,101,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,68,114,111,112,100,111,119,110,72,101,97,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,73,116,101,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,114,111,112,100,111,119,110,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,68,114,111,112,100,111,119,110,73,116,101,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,73,116,101,109,66,117,116,116,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,114,111,112,100,111,119,110,95,105,116,101,109,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,68,114,111,112,100,111,119,110,73,116,101,109,66,117,116,116,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,114,111,112,100,111,119,110,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,66,68,114,111,112,100,111,119,110,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,68,114,111,112,100,111,119,110,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,68,114,111,112,100,111,119,110,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,114,111,112,100,111,119,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,114,111,112,100,111,119,110,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,114,111,112,100,111,119,110,45,105,116,101,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,105,116,101,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,114,111,112,100,111,119,110,95,105,116,101,109,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,114,111,112,100,111,119,110,45,105,116,101,109,45,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,105,116,101,109,45,98,117,116,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,114,111,112,100,111,119,110,95,104,101,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,114,111,112,100,111,119,110,95,100,105,118,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,114,111,112,100,111,119,110,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,114,111,112,100,111,119,110,45,102,111,114,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,102,111,114,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,114,111,112,100,111,119,110,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,114,111,112,100,111,119,110,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,114,111,112,100,111,119,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,114,111,112,100,111,119,110,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,68,114,111,112,100,111,119,110,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,68,114,111,112,100,111,119,110,58,32,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,68,114,111,112,100,111,119,110,44,92,110,32,32,32,32,66,68,100,58,32,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,68,114,111,112,100,111,119,110,44,92,110,32,32,32,32,66,68,114,111,112,100,111,119,110,73,116,101,109,58,32,95,100,114,111,112,100,111,119,110,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,68,114,111,112,100,111,119,110,73,116,101,109,44,92,110,32,32,32,32,66,68,100,73,116,101,109,58,32,95,100,114,111,112,100,111,119,110,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,68,114,111,112,100,111,119,110,73,116,101,109,44,92,110,32,32,32,32,66,68,114,111,112,100,111,119,110,73,116,101,109,66,117,116,116,111,110,58,32,95,100,114,111,112,100,111,119,110,95,105,116,101,109,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,68,114,111,112,100,111,119,110,73,116,101,109,66,117,116,116,111,110,44,92,110,32,32,32,32,66,68,114,111,112,100,111,119,110,73,116,101,109,66,116,110,58,32,95,100,114,111,112,100,111,119,110,95,105,116,101,109,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,68,114,111,112,100,111,119,110,73,116,101,109,66,117,116,116,111,110,44,92,110,32,32,32,32,66,68,100,73,116,101,109,66,117,116,116,111,110,58,32,95,100,114,111,112,100,111,119,110,95,105,116,101,109,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,68,114,111,112,100,111,119,110,73,116,101,109,66,117,116,116,111,110,44,92,110,32,32,32,32,66,68,100,73,116,101,109,66,116,110,58,32,95,100,114,111,112,100,111,119,110,95,105,116,101,109,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,68,114,111,112,100,111,119,110,73,116,101,109,66,117,116,116,111,110,44,92,110,32,32,32,32,66,68,114,111,112,100,111,119,110,72,101,97,100,101,114,58,32,95,100,114,111,112,100,111,119,110,95,104,101,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,68,114,111,112,100,111,119,110,72,101,97,100,101,114,44,92,110,32,32,32,32,66,68,100,72,101,97,100,101,114,58,32,95,100,114,111,112,100,111,119,110,95,104,101,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,68,114,111,112,100,111,119,110,72,101,97,100,101,114,44,92,110,32,32,32,32,66,68,114,111,112,100,111,119,110,68,105,118,105,100,101,114,58,32,95,100,114,111,112,100,111,119,110,95,100,105,118,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,68,114,111,112,100,111,119,110,68,105,118,105,100,101,114,44,92,110,32,32,32,32,66,68,100,68,105,118,105,100,101,114,58,32,95,100,114,111,112,100,111,119,110,95,100,105,118,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,68,114,111,112,100,111,119,110,68,105,118,105,100,101,114,44,92,110,32,32,32,32,66,68,114,111,112,100,111,119,110,70,111,114,109,58,32,95,100,114,111,112,100,111,119,110,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,68,114,111,112,100,111,119,110,70,111,114,109,44,92,110,32,32,32,32,66,68,100,70,111,114,109,58,32,95,100,114,111,112,100,111,119,110,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,68,114,111,112,100,111,119,110,70,111,114,109,44,92,110,32,32,32,32,66,68,114,111,112,100,111,119,110,84,101,120,116,58,32,95,100,114,111,112,100,111,119,110,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,66,68,114,111,112,100,111,119,110,84,101,120,116,44,92,110,32,32,32,32,66,68,100,84,101,120,116,58,32,95,100,114,111,112,100,111,119,110,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,66,68,114,111,112,100,111,119,110,84,101,120,116,44,92,110,32,32,32,32,66,68,114,111,112,100,111,119,110,71,114,111,117,112,58,32,95,100,114,111,112,100,111,119,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,68,114,111,112,100,111,119,110,71,114,111,117,112,44,92,110,32,32,32,32,66,68,100,71,114,111,117,112,58,32,95,100,114,111,112,100,111,119,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,68,114,111,112,100,111,119,110,71,114,111,117,112,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,101,109,98,101,100,47,101,109,98,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,101,109,98,101,100,47,101,109,98,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,69,109,98,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,69,109,98,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,84,89,80,69,83,32,61,32,91,39,105,102,114,97,109,101,39,44,32,39,101,109,98,101,100,39,44,32,39,118,105,100,101,111,39,44,32,39,111,98,106,101,99,116,39,44,32,39,105,109,103,39,44,32,39,98,45,105,109,103,39,44,32,39,98,45,105,109,103,45,108,97,122,121,39,93,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,115,112,101,99,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,49,54,98,121,57,39,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,44,92,110,32,32,116,121,112,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,105,102,114,97,109,101,39,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,84,89,80,69,83,44,32,118,97,108,117,101,41,59,92,110,32,32,125,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,69,77,66,69,68,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,69,109,98,101,100,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,69,77,66,69,68,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,97,115,112,101,99,116,32,61,32,112,114,111,112,115,46,97,115,112,101,99,116,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,92,34,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,92,34,46,99,111,110,99,97,116,40,97,115,112,101,99,116,41,44,32,97,115,112,101,99,116,41,44,92,110,32,32,32,32,32,32,114,101,102,58,32,100,97,116,97,46,114,101,102,92,110,32,32,32,32,125,44,32,91,104,40,112,114,111,112,115,46,116,121,112,101,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,101,114,103,101,68,97,116,97,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,111,109,105,116,41,40,100,97,116,97,44,32,91,39,114,101,102,39,93,41,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,105,116,101,109,39,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,101,109,98,101,100,47,101,109,98,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,101,109,98,101,100,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,101,109,98,101,100,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,69,109,98,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,101,109,98,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,69,109,98,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,109,98,101,100,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,109,98,101,100,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,109,98,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,109,98,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,101,109,98,101,100,47,101,109,98,101,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,69,109,98,101,100,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,69,109,98,101,100,58,32,95,101,109,98,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,69,109,98,101,100,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,101,109,98,101,100,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,47,98,118,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,47,98,118,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,70,111,114,109,66,116,110,76,97,98,101,108,67,111,110,116,114,111,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,86,70,111,114,109,66,116,110,76,97,98,101,108,67,111,110,116,114,111,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,100,114,111,112,100,111,119,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,100,114,111,112,100,111,119,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,104,111,118,101,114,95,104,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,100,105,114,101,99,116,105,118,101,115,47,104,111,118,101,114,47,104,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,104,111,118,101,114,47,104,111,118,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,105,99,111,110,115,47,105,99,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,47,47,92,110,47,47,32,80,114,105,118,97,116,101,32,99,111,109,112,111,110,101,110,116,32,117,115,101,100,32,98,121,32,96,98,45,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,96,32,97,110,100,32,96,98,45,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,96,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,95,109,105,120,105,110,115,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,44,32,91,39,100,105,115,97,98,108,101,100,39,93,41,41,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,44,32,91,39,97,117,116,111,102,111,99,117,115,39,93,41,41,44,32,123,125,44,32,123,92,110,32,32,47,47,32,87,104,101,110,32,96,116,114,117,101,96,44,32,114,101,110,100,101,114,115,32,97,32,96,98,116,110,45,103,114,111,117,112,96,32,119,114,97,112,112,101,114,32,97,110,100,32,118,105,115,117,97,108,108,121,32,104,105,100,101,115,32,116,104,101,32,108,97,98,101,108,92,110,32,32,98,117,116,116,111,110,79,110,108,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,65,112,112,108,105,99,97,98,108,101,32,105,110,32,98,117,116,116,111,110,32,109,111,100,101,32,111,110,108,121,92,110,32,32,98,117,116,116,111,110,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,101,99,111,110,100,97,114,121,39,41,44,92,110,32,32,47,47,32,84,104,105,115,32,105,115,32,116,104,101,32,118,97,108,117,101,32,115,104,111,119,110,32,105,110,32,116,104,101,32,108,97,98,101,108,92,110,32,32,47,47,32,68,101,102,97,117,108,116,115,32,98,97,99,107,32,116,111,32,96,118,97,108,117,101,96,92,110,32,32,102,111,114,109,97,116,116,101,100,86,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,86,97,108,117,101,32,112,108,97,99,101,100,32,105,110,32,96,46,115,114,45,111,110,108,121,96,32,115,112,97,110,32,105,110,115,105,100,101,32,108,97,98,101,108,32,119,104,101,110,32,118,97,108,117,101,32,105,115,32,112,114,101,115,101,110,116,92,110,32,32,108,97,98,101,108,83,101,108,101,99,116,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,108,97,110,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,69,120,116,114,97,32,99,108,97,115,115,101,115,32,116,111,32,97,112,112,108,121,32,116,111,32,116,104,101,32,96,100,114,111,112,100,111,119,110,45,109,101,110,117,96,32,100,105,118,92,110,32,32,109,101,110,117,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,84,104,105,115,32,105,115,32,116,104,101,32,118,97,108,117,101,32,112,108,97,99,101,100,32,111,110,32,116,104,101,32,104,105,100,100,101,110,32,105,110,112,117,116,32,119,104,101,110,32,110,111,32,118,97,108,117,101,32,115,101,108,101,99,116,101,100,92,110,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,114,101,97,100,111,110,108,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,84,114,105,45,115,116,97,116,101,32,112,114,111,112,58,32,96,116,114,117,101,96,44,32,96,102,97,108,115,101,96,32,111,114,32,96,110,117,108,108,96,92,110,32,32,114,116,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,110,117,108,108,41,44,92,110,32,32,118,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,39,41,92,110,125,41,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,86,70,111,114,109,66,116,110,76,97,98,101,108,67,111,110,116,114,111,108,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,70,79,82,77,95,66,85,84,84,79,78,95,76,65,66,69,76,95,67,79,78,84,82,79,76,44,92,110,32,32,100,105,114,101,99,116,105,118,101,115,58,32,123,92,110,32,32,32,32,39,98,45,104,111,118,101,114,39,58,32,95,100,105,114,101,99,116,105,118,101,115,95,104,111,118,101,114,95,104,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,86,66,72,111,118,101,114,92,110,32,32,125,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,100,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,102,111,114,109,83,105,122,101,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,102,111,114,109,83,116,97,116,101,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,100,114,111,112,100,111,119,110,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,105,115,72,111,118,101,114,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,104,97,115,70,111,99,117,115,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,105,100,66,117,116,116,111,110,58,32,102,117,110,99,116,105,111,110,32,105,100,66,117,116,116,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,100,76,97,98,101,108,58,32,102,117,110,99,116,105,111,110,32,105,100,76,97,98,101,108,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,118,97,108,117,101,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,100,77,101,110,117,58,32,102,117,110,99,116,105,111,110,32,105,100,77,101,110,117,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,100,105,97,108,111,103,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,100,87,114,97,112,112,101,114,58,32,102,117,110,99,116,105,111,110,32,105,100,87,114,97,112,112,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,111,117,116,101,114,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,68,105,114,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,68,105,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,116,108,32,61,61,61,32,116,114,117,101,32,63,32,39,114,116,108,39,32,58,32,116,104,105,115,46,114,116,108,32,61,61,61,32,102,97,108,115,101,32,63,32,39,108,116,114,39,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,102,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,104,105,115,46,36,114,101,102,115,46,116,111,103,103,108,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,108,117,114,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,97,116,116,101,109,112,116,66,108,117,114,41,40,116,104,105,115,46,36,114,101,102,115,46,116,111,103,103,108,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,70,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,115,101,116,70,111,99,117,115,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,104,97,115,70,111,99,117,115,32,61,32,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,39,102,111,99,117,115,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,72,111,118,101,114,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,72,111,118,101,114,40,104,111,118,101,114,101,100,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,72,111,118,101,114,101,100,32,61,32,104,111,118,101,114,101,100,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,99,108,97,115,115,59,92,110,92,110,32,32,32,32,118,97,114,32,105,100,66,117,116,116,111,110,32,61,32,116,104,105,115,46,105,100,66,117,116,116,111,110,44,92,110,32,32,32,32,32,32,32,32,105,100,76,97,98,101,108,32,61,32,116,104,105,115,46,105,100,76,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,105,100,77,101,110,117,32,61,32,116,104,105,115,46,105,100,77,101,110,117,44,92,110,32,32,32,32,32,32,32,32,105,100,87,114,97,112,112,101,114,32,61,32,116,104,105,115,46,105,100,87,114,97,112,112,101,114,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,101,97,100,111,110,108,121,32,61,32,116,104,105,115,46,114,101,97,100,111,110,108,121,44,92,110,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,32,61,32,116,104,105,115,46,114,101,113,117,105,114,101,100,44,92,110,32,32,32,32,32,32,32,32,110,97,109,101,32,61,32,116,104,105,115,46,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,115,116,97,116,101,32,61,32,116,104,105,115,46,115,116,97,116,101,44,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,32,61,32,116,104,105,115,46,118,105,115,105,98,108,101,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,32,61,32,116,104,105,115,46,115,105,122,101,44,92,110,32,32,32,32,32,32,32,32,105,115,72,111,118,101,114,101,100,32,61,32,116,104,105,115,46,105,115,72,111,118,101,114,101,100,44,92,110,32,32,32,32,32,32,32,32,104,97,115,70,111,99,117,115,32,61,32,116,104,105,115,46,104,97,115,70,111,99,117,115,44,92,110,32,32,32,32,32,32,32,32,108,97,98,101,108,83,101,108,101,99,116,101,100,32,61,32,116,104,105,115,46,108,97,98,101,108,83,101,108,101,99,116,101,100,44,92,110,32,32,32,32,32,32,32,32,98,117,116,116,111,110,86,97,114,105,97,110,116,32,61,32,116,104,105,115,46,98,117,116,116,111,110,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,98,117,116,116,111,110,79,110,108,121,32,61,32,116,104,105,115,46,98,117,116,116,111,110,79,110,108,121,59,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,116,111,83,116,114,105,110,103,41,40,116,104,105,115,46,118,97,108,117,101,41,32,124,124,32,39,39,59,92,110,32,32,32,32,118,97,114,32,105,110,118,97,108,105,100,32,61,32,115,116,97,116,101,32,61,61,61,32,102,97,108,115,101,32,124,124,32,114,101,113,117,105,114,101,100,32,38,38,32,33,118,97,108,117,101,59,92,110,32,32,32,32,118,97,114,32,98,116,110,83,99,111,112,101,32,61,32,123,92,110,32,32,32,32,32,32,105,115,72,111,118,101,114,101,100,58,32,105,115,72,111,118,101,114,101,100,44,92,110,32,32,32,32,32,32,104,97,115,70,111,99,117,115,58,32,104,97,115,70,111,99,117,115,44,92,110,32,32,32,32,32,32,115,116,97,116,101,58,32,115,116,97,116,101,44,92,110,32,32,32,32,32,32,111,112,101,110,101,100,58,32,118,105,115,105,98,108,101,92,110,32,32,32,32,125,59,92,110,32,32,32,32,118,97,114,32,36,98,117,116,116,111,110,32,61,32,104,40,39,98,117,116,116,111,110,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,116,110,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,40,95,99,108,97,115,115,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,98,116,110,45,92,34,46,99,111,110,99,97,116,40,98,117,116,116,111,110,86,97,114,105,97,110,116,41,44,32,98,117,116,116,111,110,79,110,108,121,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,98,116,110,45,92,34,46,99,111,110,99,97,116,40,115,105,122,101,41,44,32,115,105,122,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,39,104,45,97,117,116,111,39,44,32,33,98,117,116,116,111,110,79,110,108,121,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,39,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,39,44,32,98,117,116,116,111,110,79,110,108,121,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,39,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,110,111,45,99,97,114,101,116,39,44,32,98,117,116,116,111,110,79,110,108,121,41,44,32,95,99,108,97,115,115,41,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,105,100,66,117,116,116,111,110,44,92,110,32,32,32,32,32,32,32,32,116,121,112,101,58,32,39,98,117,116,116,111,110,39,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,97,115,112,111,112,117,112,39,58,32,39,100,105,97,108,111,103,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,101,120,112,97,110,100,101,100,39,58,32,118,105,115,105,98,108,101,32,63,32,39,116,114,117,101,39,32,58,32,39,102,97,108,115,101,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,105,110,118,97,108,105,100,39,58,32,105,110,118,97,108,105,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,101,113,117,105,114,101,100,39,58,32,114,101,113,117,105,114,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,39,98,45,104,111,118,101,114,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,104,97,110,100,108,101,72,111,118,101,114,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,109,111,117,115,101,100,111,119,110,58,32,116,104,105,115,46,111,110,77,111,117,115,101,100,111,119,110,44,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,116,111,103,103,108,101,44,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,116,111,103,103,108,101,44,92,110,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,69,78,84,69,82,44,32,83,80,65,67,69,32,97,110,100,32,68,79,87,78,92,110,32,32,32,32,32,32,32,32,39,33,102,111,99,117,115,39,58,32,116,104,105,115,46,115,101,116,70,111,99,117,115,44,92,110,32,32,32,32,32,32,32,32,39,33,98,108,117,114,39,58,32,116,104,105,115,46,115,101,116,70,111,99,117,115,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,116,111,103,103,108,101,39,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,83,76,79,84,95,78,65,77,69,95,66,85,84,84,79,78,95,67,79,78,84,69,78,84,41,32,63,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,83,76,79,84,95,78,65,77,69,95,66,85,84,84,79,78,95,67,79,78,84,69,78,84,44,32,98,116,110,83,99,111,112,101,41,32,58,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,104,40,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,68,111,119,110,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,115,99,97,108,101,58,32,49,46,50,53,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,93,41,59,32,47,47,32,72,105,100,100,101,110,32,105,110,112,117,116,92,110,92,110,32,32,32,32,118,97,114,32,36,104,105,100,100,101,110,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,110,97,109,101,32,38,38,32,33,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,36,104,105,100,100,101,110,32,61,32,104,40,39,105,110,112,117,116,39,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,58,32,39,104,105,100,100,101,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,110,97,109,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,109,58,32,116,104,105,115,46,102,111,114,109,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,47,47,32,68,114,111,112,100,111,119,110,32,99,111,110,116,101,110,116,92,110,92,110,92,110,32,32,32,32,118,97,114,32,36,109,101,110,117,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,100,114,111,112,100,111,119,110,45,109,101,110,117,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,116,104,105,115,46,109,101,110,117,67,108,97,115,115,44,32,123,92,110,32,32,32,32,32,32,32,32,115,104,111,119,58,32,118,105,115,105,98,108,101,44,92,110,32,32,32,32,32,32,32,32,39,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,39,58,32,116,104,105,115,46,114,105,103,104,116,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,105,100,77,101,110,117,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,100,105,97,108,111,103,39,44,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,45,49,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,109,111,100,97,108,39,58,32,39,102,97,108,115,101,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,39,58,32,105,100,76,97,98,101,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,111,110,75,101,121,100,111,119,110,32,47,47,32,72,97,110,100,108,101,32,69,83,67,92,110,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,109,101,110,117,39,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,123,92,110,32,32,32,32,32,32,111,112,101,110,101,100,58,32,118,105,115,105,98,108,101,92,110,32,32,32,32,125,41,93,41,59,32,47,47,32,86,97,108,117,101,32,108,97,98,101,108,92,110,92,110,32,32,32,32,118,97,114,32,36,108,97,98,101,108,32,61,32,104,40,39,108,97,98,101,108,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,98,117,116,116,111,110,79,110,108,121,32,63,32,39,115,114,45,111,110,108,121,39,32,47,47,32,72,105,100,100,101,110,32,105,110,32,98,117,116,116,111,110,32,111,110,108,121,32,109,111,100,101,92,110,32,32,32,32,32,32,58,32,91,39,102,111,114,109,45,99,111,110,116,114,111,108,39,44,32,47,47,32,77,117,116,101,32,116,104,101,32,116,101,120,116,32,105,102,32,115,104,111,119,105,110,103,32,116,104,101,32,112,108,97,99,101,104,111,108,100,101,114,92,110,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,39,116,101,120,116,45,109,117,116,101,100,39,58,32,33,118,97,108,117,101,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,44,32,116,104,105,115,46,115,105,122,101,70,111,114,109,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,105,100,76,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,102,111,114,58,32,105,100,66,117,116,116,111,110,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,105,110,118,97,108,105,100,39,58,32,105,110,118,97,108,105,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,101,113,117,105,114,101,100,39,58,32,114,101,113,117,105,114,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,39,98,45,104,111,118,101,114,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,104,97,110,100,108,101,72,111,118,101,114,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,105,115,97,98,108,101,32,98,117,98,98,108,105,110,103,32,111,102,32,116,104,101,32,99,108,105,99,107,32,101,118,101,110,116,32,116,111,92,110,32,32,32,32,32,32,32,32,47,47,32,112,114,101,118,101,110,116,32,109,101,110,117,32,102,114,111,109,32,99,108,111,115,105,110,103,32,97,110,100,32,114,101,45,111,112,101,110,105,110,103,92,110,32,32,32,32,32,32,32,32,39,33,99,108,105,99,107,39,58,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,118,101,110,116,68,101,102,97,117,108,116,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,118,97,108,117,101,32,63,32,116,104,105,115,46,102,111,114,109,97,116,116,101,100,86,97,108,117,101,32,124,124,32,118,97,108,117,101,32,58,32,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,32,124,124,32,39,39,44,32,47,47,32,65,100,100,32,116,104,101,32,115,101,108,101,99,116,101,100,32,108,97,98,101,108,32,102,111,114,32,115,99,114,101,101,110,32,114,101,97,100,101,114,115,32,119,104,101,110,32,97,32,118,97,108,117,101,32,105,115,32,112,114,111,118,105,100,101,100,92,110,32,32,32,32,118,97,108,117,101,32,38,38,32,108,97,98,101,108,83,101,108,101,99,116,101,100,32,63,32,104,40,39,98,100,105,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,115,114,45,111,110,108,121,39,92,110,32,32,32,32,125,44,32,108,97,98,101,108,83,101,108,101,99,116,101,100,41,32,58,32,39,39,93,41,59,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,99,117,115,116,111,109,32,102,111,114,109,32,99,111,110,116,114,111,108,32,119,114,97,112,112,101,114,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,32,100,114,111,112,100,111,119,110,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,116,104,105,115,46,100,105,114,101,99,116,105,111,110,67,108,97,115,115,44,32,116,104,105,115,46,98,111,117,110,100,97,114,121,67,108,97,115,115,44,32,91,123,92,110,32,32,32,32,32,32,32,32,39,98,116,110,45,103,114,111,117,112,39,58,32,98,117,116,116,111,110,79,110,108,121,44,92,110,32,32,32,32,32,32,32,32,39,102,111,114,109,45,99,111,110,116,114,111,108,39,58,32,33,98,117,116,116,111,110,79,110,108,121,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,58,32,104,97,115,70,111,99,117,115,32,38,38,32,33,98,117,116,116,111,110,79,110,108,121,44,92,110,32,32,32,32,32,32,32,32,115,104,111,119,58,32,118,105,115,105,98,108,101,44,92,110,32,32,32,32,32,32,32,32,39,105,115,45,118,97,108,105,100,39,58,32,115,116,97,116,101,32,61,61,61,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,39,105,115,45,105,110,118,97,108,105,100,39,58,32,115,116,97,116,101,32,61,61,61,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,44,32,98,117,116,116,111,110,79,110,108,121,32,63,32,110,117,108,108,32,58,32,116,104,105,115,46,115,105,122,101,70,111,114,109,67,108,97,115,115,93,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,105,100,87,114,97,112,112,101,114,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,98,117,116,116,111,110,79,110,108,121,32,63,32,110,117,108,108,32,58,32,39,103,114,111,117,112,39,44,92,110,32,32,32,32,32,32,32,32,108,97,110,103,58,32,116,104,105,115,46,108,97,110,103,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,100,105,114,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,68,105,114,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,105,115,97,98,108,101,100,39,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,101,97,100,111,110,108,121,39,58,32,114,101,97,100,111,110,108,121,32,38,38,32,33,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,39,58,32,105,100,76,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,105,110,118,97,108,105,100,39,58,32,115,116,97,116,101,32,61,61,61,32,102,97,108,115,101,32,124,124,32,114,101,113,117,105,114,101,100,32,38,38,32,33,118,97,108,117,101,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,101,113,117,105,114,101,100,39,58,32,114,101,113,117,105,114,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,98,117,116,116,111,110,44,32,36,104,105,100,100,101,110,44,32,36,109,101,110,117,44,32,36,108,97,98,101,108,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,47,98,118,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,102,111,114,109,45,99,104,101,99,107,98,111,120,45,103,114,111,117,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,102,111,114,109,45,99,104,101,99,107,98,111,120,45,103,114,111,117,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,67,104,101,99,107,98,111,120,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,67,104,101,99,107,98,111,120,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,114,97,100,105,111,95,99,104,101,99,107,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,114,97,100,105,111,45,99,104,101,99,107,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,114,97,100,105,111,45,99,104,101,99,107,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,118,97,114,32,95,111,98,106,101,99,116,83,112,114,101,97,100,50,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,114,97,100,105,111,95,99,104,101,99,107,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,114,97,100,105,111,95,99,104,101,99,107,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,44,32,91,93,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,92,34,115,119,105,116,99,104,101,115,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,44,32,95,111,98,106,101,99,116,83,112,114,101,97,100,50,41,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,70,79,82,77,95,67,72,69,67,75,66,79,88,95,71,82,79,85,80,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,67,104,101,99,107,98,111,120,71,114,111,117,112,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,70,79,82,77,95,67,72,69,67,75,66,79,88,95,71,82,79,85,80,44,92,110,32,32,47,47,32,73,110,99,108,117,100,101,115,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,102,111,114,109,95,114,97,100,105,111,95,99,104,101,99,107,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,102,111,114,109,82,97,100,105,111,67,104,101,99,107,71,114,111,117,112,77,105,120,105,110,93,44,92,110,32,32,112,114,111,118,105,100,101,58,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,98,118,67,104,101,99,107,71,114,111,117,112,58,32,116,104,105,115,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,105,115,82,97,100,105,111,71,114,111,117,112,58,32,102,117,110,99,116,105,111,110,32,105,115,82,97,100,105,111,71,114,111,117,112,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,102,111,114,109,45,99,104,101,99,107,98,111,120,45,103,114,111,117,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,102,111,114,109,45,99,104,101,99,107,98,111,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,102,111,114,109,45,99,104,101,99,107,98,111,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,67,104,101,99,107,98,111,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,67,104,101,99,107,98,111,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,105,110,100,101,120,95,111,102,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,105,110,100,101,120,45,111,102,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,105,110,100,101,120,45,111,102,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,114,97,100,105,111,95,99,104,101,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,114,97,100,105,111,45,99,104,101,99,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,114,97,100,105,111,45,99,104,101,99,107,46,106,115,92,34,41,59,92,110,118,97,114,32,95,111,98,106,101,99,116,83,112,114,101,97,100,50,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,73,78,68,69,84,69,82,77,73,78,65,84,69,32,61,32,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,59,92,110,118,97,114,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,73,78,68,69,84,69,82,77,73,78,65,84,69,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,32,43,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,73,78,68,69,84,69,82,77,73,78,65,84,69,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,114,97,100,105,111,95,99,104,101,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,73,78,68,69,84,69,82,77,73,78,65,84,69,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,92,34,115,119,105,116,99,104,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,92,34,117,110,99,104,101,99,107,101,100,86,97,108,117,101,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,65,78,89,44,32,102,97,108,115,101,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,92,34,118,97,108,117,101,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,65,78,89,44,32,116,114,117,101,41,41,44,32,95,111,98,106,101,99,116,83,112,114,101,97,100,50,41,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,70,79,82,77,95,67,72,69,67,75,66,79,88,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,67,104,101,99,107,98,111,120,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,70,79,82,77,95,67,72,69,67,75,66,79,88,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,102,111,114,109,95,114,97,100,105,111,95,99,104,101,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,102,111,114,109,82,97,100,105,111,67,104,101,99,107,77,105,120,105,110,93,44,92,110,32,32,105,110,106,101,99,116,58,32,123,92,110,32,32,32,32,98,118,71,114,111,117,112,58,32,123,92,110,32,32,32,32,32,32,102,114,111,109,58,32,39,98,118,67,104,101,99,107,71,114,111,117,112,39,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,110,117,108,108,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,105,115,67,104,101,99,107,101,100,58,32,102,117,110,99,116,105,111,110,32,105,115,67,104,101,99,107,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,116,104,105,115,46,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,99,104,101,99,107,101,100,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,65,114,114,97,121,41,40,99,104,101,99,107,101,100,41,32,63,32,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,105,110,100,101,120,95,111,102,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,108,111,111,115,101,73,110,100,101,120,79,102,41,40,99,104,101,99,107,101,100,44,32,118,97,108,117,101,41,32,62,32,45,49,32,58,32,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,99,104,101,99,107,101,100,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,82,97,100,105,111,58,32,102,117,110,99,116,105,111,110,32,105,115,82,97,100,105,111,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,73,78,68,69,84,69,82,77,73,78,65,84,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,73,110,100,101,116,101,114,109,105,110,97,116,101,40,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,83,101,116,32,105,110,105,116,105,97,108,32,105,110,100,101,116,101,114,109,105,110,97,116,101,32,115,116,97,116,101,92,110,32,32,32,32,116,104,105,115,46,115,101,116,73,110,100,101,116,101,114,109,105,110,97,116,101,40,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,73,78,68,69,84,69,82,77,73,78,65,84,69,93,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,87,97,116,99,104,101,114,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,87,97,116,99,104,101,114,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,109,105,120,105,110,115,95,102,111,114,109,95,114,97,100,105,111,95,99,104,101,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,36,105,110,112,117,116,32,61,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,36,105,110,112,117,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,73,78,68,69,84,69,82,77,73,78,65,84,69,44,32,36,105,110,112,117,116,46,105,110,100,101,116,101,114,109,105,110,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,67,104,97,110,103,101,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,67,104,97,110,103,101,40,95,114,101,102,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,95,114,101,102,36,116,97,114,103,101,116,32,61,32,95,114,101,102,46,116,97,114,103,101,116,44,92,110,32,32,32,32,32,32,32,32,32,32,99,104,101,99,107,101,100,32,61,32,95,114,101,102,36,116,97,114,103,101,116,46,99,104,101,99,107,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,116,101,114,109,105,110,97,116,101,32,61,32,95,114,101,102,36,116,97,114,103,101,116,46,105,110,100,101,116,101,114,109,105,110,97,116,101,59,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,116,104,105,115,46,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,117,110,99,104,101,99,107,101,100,86,97,108,117,101,32,61,32,116,104,105,115,46,117,110,99,104,101,99,107,101,100,86,97,108,117,101,59,32,47,47,32,85,112,100,97,116,101,32,96,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,96,92,110,92,110,32,32,32,32,32,32,118,97,114,32,108,111,99,97,108,67,104,101,99,107,101,100,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,65,114,114,97,121,41,40,108,111,99,97,108,67,104,101,99,107,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,105,110,100,101,120,95,111,102,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,108,111,111,115,101,73,110,100,101,120,79,102,41,40,108,111,99,97,108,67,104,101,99,107,101,100,44,32,118,97,108,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,104,101,99,107,101,100,32,38,38,32,105,110,100,101,120,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,118,97,108,117,101,32,116,111,32,97,114,114,97,121,92,110,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,67,104,101,99,107,101,100,32,61,32,108,111,99,97,108,67,104,101,99,107,101,100,46,99,111,110,99,97,116,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,99,104,101,99,107,101,100,32,38,38,32,105,110,100,101,120,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,118,97,108,117,101,32,102,114,111,109,32,97,114,114,97,121,92,110,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,67,104,101,99,107,101,100,32,61,32,108,111,99,97,108,67,104,101,99,107,101,100,46,115,108,105,99,101,40,48,44,32,105,110,100,101,120,41,46,99,111,110,99,97,116,40,108,111,99,97,108,67,104,101,99,107,101,100,46,115,108,105,99,101,40,105,110,100,101,120,32,43,32,49,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,108,111,99,97,108,67,104,101,99,107,101,100,32,61,32,99,104,101,99,107,101,100,32,63,32,118,97,108,117,101,32,58,32,117,110,99,104,101,99,107,101,100,86,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,32,61,32,108,111,99,97,108,67,104,101,99,107,101,100,59,32,47,47,32,70,105,114,101,32,101,118,101,110,116,115,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,101,110,115,117,114,101,32,116,104,101,32,96,118,45,109,111,100,101,108,96,32,105,115,32,117,112,100,97,116,101,100,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,104,97,110,103,101,32,105,115,32,111,110,108,121,32,101,109,105,116,116,101,100,32,111,110,32,117,115,101,114,32,105,110,116,101,114,97,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,44,32,108,111,99,97,108,67,104,101,99,107,101,100,41,59,32,47,47,32,73,102,32,116,104,105,115,32,105,115,32,97,32,99,104,105,108,100,32,111,102,32,97,32,103,114,111,117,112,44,32,119,101,32,101,109,105,116,32,97,32,99,104,97,110,103,101,32,101,118,101,110,116,32,111,110,32,105,116,32,97,115,32,119,101,108,108,92,110,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,46,105,115,71,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,98,118,71,114,111,117,112,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,44,32,108,111,99,97,108,67,104,101,99,107,101,100,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,73,78,68,69,84,69,82,77,73,78,65,84,69,44,32,105,110,100,101,116,101,114,109,105,110,97,116,101,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,73,110,100,101,116,101,114,109,105,110,97,116,101,58,32,102,117,110,99,116,105,111,110,32,115,101,116,73,110,100,101,116,101,114,109,105,110,97,116,101,40,115,116,97,116,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,110,100,101,116,101,114,109,105,110,97,116,101,32,111,110,108,121,32,115,117,112,112,111,114,116,101,100,32,105,110,32,115,105,110,103,108,101,32,99,104,101,99,107,98,111,120,32,109,111,100,101,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,65,114,114,97,121,41,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,105,110,112,117,116,32,61,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,36,105,110,112,117,116,41,32,123,92,110,32,32,32,32,32,32,32,32,36,105,110,112,117,116,46,105,110,100,101,116,101,114,109,105,110,97,116,101,32,61,32,115,116,97,116,101,59,32,47,47,32,69,109,105,116,32,117,112,100,97,116,101,32,101,118,101,110,116,32,116,111,32,112,114,111,112,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,73,78,68,69,84,69,82,77,73,78,65,84,69,44,32,115,116,97,116,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,102,111,114,109,45,99,104,101,99,107,98,111,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,67,104,101,99,107,98,111,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,67,104,101,99,107,98,111,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,67,104,101,99,107,98,111,120,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,67,104,101,99,107,98,111,120,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,67,104,101,99,107,98,111,120,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,111,114,109,67,104,101,99,107,98,111,120,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,99,104,101,99,107,98,111,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,102,111,114,109,45,99,104,101,99,107,98,111,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,99,104,101,99,107,98,111,120,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,102,111,114,109,45,99,104,101,99,107,98,111,120,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,70,111,114,109,67,104,101,99,107,98,111,120,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,70,111,114,109,67,104,101,99,107,98,111,120,58,32,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,67,104,101,99,107,98,111,120,44,92,110,32,32,32,32,66,67,104,101,99,107,98,111,120,58,32,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,67,104,101,99,107,98,111,120,44,92,110,32,32,32,32,66,67,104,101,99,107,58,32,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,67,104,101,99,107,98,111,120,44,92,110,32,32,32,32,66,70,111,114,109,67,104,101,99,107,98,111,120,71,114,111,117,112,58,32,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,67,104,101,99,107,98,111,120,71,114,111,117,112,44,92,110,32,32,32,32,66,67,104,101,99,107,98,111,120,71,114,111,117,112,58,32,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,67,104,101,99,107,98,111,120,71,114,111,117,112,44,92,110,32,32,32,32,66,67,104,101,99,107,71,114,111,117,112,58,32,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,67,104,101,99,107,98,111,120,71,114,111,117,112,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,68,97,116,101,112,105,99,107,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,68,97,116,101,112,105,99,107,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,105,99,111,110,115,47,105,99,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,98,117,116,116,111,110,47,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,108,101,110,100,97,114,95,99,97,108,101,110,100,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,97,108,101,110,100,97,114,47,99,97,108,101,110,100,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,108,101,110,100,97,114,47,99,97,108,101,110,100,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,98,116,110,95,108,97,98,101,108,95,99,111,110,116,114,111,108,95,98,118,95,102,111,114,109,95,98,116,110,95,108,97,98,101,108,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,47,98,118,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,47,98,118,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,97,108,117,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,68,65,84,69,95,83,84,82,73,78,71,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,99,97,108,101,110,100,97,114,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,111,109,105,116,41,40,95,99,97,108,101,110,100,97,114,95,99,97,108,101,110,100,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,44,32,91,39,98,108,111,99,107,39,44,32,39,104,105,100,100,101,110,39,44,32,39,105,100,39,44,32,39,110,111,75,101,121,78,97,118,39,44,32,39,114,111,108,101,68,101,115,99,114,105,112,116,105,111,110,39,44,32,39,118,97,108,117,101,39,44,32,39,119,105,100,116,104,39,93,41,59,92,110,118,97,114,32,102,111,114,109,66,116,110,76,97,98,101,108,67,111,110,116,114,111,108,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,111,109,105,116,41,40,95,102,111,114,109,95,98,116,110,95,108,97,98,101,108,95,99,111,110,116,114,111,108,95,98,118,95,102,111,114,109,95,98,116,110,95,108,97,98,101,108,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,44,32,91,39,102,111,114,109,97,116,116,101,100,86,97,108,117,101,39,44,32,39,105,100,39,44,32,39,108,97,110,103,39,44,32,39,114,116,108,39,44,32,39,118,97,108,117,101,39,93,41,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,99,97,108,101,110,100,97,114,80,114,111,112,115,41,44,32,102,111,114,109,66,116,110,76,97,98,101,108,67,111,110,116,114,111,108,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,47,47,32,87,105,100,116,104,32,111,102,32,116,104,101,32,99,97,108,101,110,100,97,114,32,100,114,111,112,100,111,119,110,92,110,32,32,99,97,108,101,110,100,97,114,87,105,100,116,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,50,55,48,112,120,39,41,44,92,110,32,32,99,108,111,115,101,66,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,99,108,111,115,101,66,117,116,116,111,110,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,39,41,44,92,110,32,32,47,47,32,68,97,114,107,32,109,111,100,101,92,110,32,32,100,97,114,107,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,108,97,98,101,108,67,108,111,115,101,66,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,67,108,111,115,101,39,41,44,92,110,32,32,108,97,98,101,108,82,101,115,101,116,66,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,82,101,115,101,116,39,41,44,92,110,32,32,108,97,98,101,108,84,111,100,97,121,66,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,83,101,108,101,99,116,32,116,111,100,97,121,39,41,44,92,110,32,32,110,111,67,108,111,115,101,79,110,83,101,108,101,99,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,101,115,101,116,66,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,101,115,101,116,66,117,116,116,111,110,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,111,117,116,108,105,110,101,45,100,97,110,103,101,114,39,41,44,92,110,32,32,114,101,115,101,116,86,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,68,65,84,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,111,100,97,121,66,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,111,100,97,121,66,117,116,116,111,110,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,78,65,77,69,95,70,79,82,77,95,68,65,84,69,80,73,67,75,69,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,68,97,116,101,112,105,99,107,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,78,65,77,69,95,70,79,82,77,95,68,65,84,69,80,73,67,75,69,82,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,97,108,119,97,121,115,32,117,115,101,32,96,89,89,89,89,45,77,77,45,68,68,96,32,118,97,108,117,101,32,105,110,116,101,114,110,97,108,108,121,92,110,32,32,32,32,32,32,108,111,99,97,108,89,77,68,58,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,102,111,114,109,97,116,89,77,68,41,40,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,41,32,124,124,32,39,39,44,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,112,111,112,117,112,32,105,115,32,111,112,101,110,92,110,32,32,32,32,32,32,105,115,86,105,115,105,98,108,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,47,47,32,67,111,110,116,101,120,116,32,100,97,116,97,32,102,114,111,109,32,66,67,97,108,101,110,100,97,114,92,110,32,32,32,32,32,32,108,111,99,97,108,76,111,99,97,108,101,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,105,115,82,84,76,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,102,111,114,109,97,116,116,101,100,86,97,108,117,101,58,32,39,39,44,92,110,32,32,32,32,32,32,97,99,116,105,118,101,89,77,68,58,32,39,39,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,97,108,101,110,100,97,114,89,77,58,32,102,117,110,99,116,105,111,110,32,99,97,108,101,110,100,97,114,89,77,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,116,104,101,32,99,97,108,101,110,100,97,114,32,121,101,97,114,47,109,111,110,116,104,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,116,104,101,32,96,89,89,89,89,45,77,77,96,32,112,111,114,116,105,111,110,32,111,102,32,116,104,101,32,97,99,116,105,118,101,32,99,97,108,101,110,100,97,114,32,100,97,116,101,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,46,115,108,105,99,101,40,48,44,32,45,51,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,76,97,110,103,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,76,97,110,103,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,116,104,105,115,46,108,111,99,97,108,76,111,99,97,108,101,32,124,124,32,39,39,41,46,114,101,112,108,97,99,101,40,47,45,117,45,46,42,36,47,105,44,32,39,39,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,82,101,115,101,116,86,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,82,101,115,101,116,86,97,108,117,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,102,111,114,109,97,116,89,77,68,41,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,99,111,110,115,116,114,97,105,110,68,97,116,101,41,40,116,104,105,115,46,114,101,115,101,116,86,97,108,117,101,41,41,32,124,124,32,39,39,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,108,111,99,97,108,89,77,68,32,61,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,102,111,114,109,97,116,89,77,68,41,40,110,101,119,86,97,108,117,101,41,32,124,124,32,39,39,59,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,108,111,99,97,108,89,77,68,92,34,44,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,89,77,68,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,117,112,100,97,116,101,32,116,104,101,32,118,45,109,111,100,101,108,32,119,104,101,110,32,116,104,101,32,100,97,116,101,112,105,99,107,101,114,32,105,115,32,111,112,101,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,86,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,116,104,105,115,46,118,97,108,117,101,65,115,68,97,116,101,32,63,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,112,97,114,115,101,89,77,68,41,40,110,101,119,86,97,108,117,101,41,32,124,124,32,110,117,108,108,32,58,32,110,101,119,86,97,108,117,101,32,124,124,32,39,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,99,97,108,101,110,100,97,114,89,77,92,34,44,32,102,117,110,99,116,105,111,110,32,99,97,108,101,110,100,97,114,89,77,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,47,47,32,68,105,115,112,108,97,121,101,100,32,99,97,108,101,110,100,97,114,32,109,111,110,116,104,32,104,97,115,32,99,104,97,110,103,101,100,92,110,32,32,32,32,47,47,32,83,111,32,112,111,115,115,105,98,108,121,32,116,104,101,32,99,97,108,101,110,100,97,114,32,104,101,105,103,104,116,32,104,97,115,32,99,104,97,110,103,101,100,46,46,46,92,110,32,32,32,32,47,47,32,87,101,32,110,101,101,100,32,116,111,32,117,112,100,97,116,101,32,112,111,112,112,101,114,32,99,111,109,112,117,116,101,100,32,112,111,115,105,116,105,111,110,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,32,38,38,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,46,117,112,100,97,116,101,80,111,112,112,101,114,40,41,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,95,117,110,117,115,101,100,41,32,123,125,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,80,117,98,108,105,99,32,109,101,116,104,111,100,115,92,110,32,32,32,32,102,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,108,117,114,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,97,116,116,101,109,112,116,66,108,117,114,41,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,114,105,118,97,116,101,32,109,101,116,104,111,100,115,92,110,32,32,32,32,115,101,116,65,110,100,67,108,111,115,101,58,32,102,117,110,99,116,105,111,110,32,115,101,116,65,110,100,67,108,111,115,101,40,121,109,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,89,77,68,32,61,32,121,109,100,59,32,47,47,32,67,108,111,115,101,32,99,97,108,101,110,100,97,114,32,112,111,112,117,112,44,32,117,110,108,101,115,115,32,96,110,111,67,108,111,115,101,79,110,83,101,108,101,99,116,96,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,110,111,67,108,111,115,101,79,110,83,101,108,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,46,104,105,100,101,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,83,101,108,101,99,116,101,100,58,32,102,117,110,99,116,105,111,110,32,111,110,83,101,108,101,99,116,101,100,40,121,109,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,115,101,116,65,110,100,67,108,111,115,101,40,121,109,100,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,73,110,112,117,116,58,32,102,117,110,99,116,105,111,110,32,111,110,73,110,112,117,116,40,121,109,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,111,99,97,108,89,77,68,32,33,61,61,32,121,109,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,89,77,68,32,61,32,121,109,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,111,110,116,101,120,116,58,32,102,117,110,99,116,105,111,110,32,111,110,67,111,110,116,101,120,116,40,99,116,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,99,116,105,118,101,89,77,68,32,61,32,99,116,120,46,97,99,116,105,118,101,89,77,68,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,82,84,76,32,61,32,99,116,120,46,105,115,82,84,76,44,92,110,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,101,32,61,32,99,116,120,46,108,111,99,97,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,89,77,68,32,61,32,99,116,120,46,115,101,108,101,99,116,101,100,89,77,68,44,92,110,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,70,111,114,109,97,116,116,101,100,32,61,32,99,116,120,46,115,101,108,101,99,116,101,100,70,111,114,109,97,116,116,101,100,59,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,82,84,76,32,61,32,105,115,82,84,76,59,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,76,111,99,97,108,101,32,61,32,108,111,99,97,108,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,102,111,114,109,97,116,116,101,100,86,97,108,117,101,32,61,32,115,101,108,101,99,116,101,100,70,111,114,109,97,116,116,101,100,59,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,89,77,68,32,61,32,115,101,108,101,99,116,101,100,89,77,68,59,92,110,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,32,61,32,97,99,116,105,118,101,89,77,68,59,32,47,47,32,82,101,45,101,109,105,116,32,116,104,101,32,99,111,110,116,101,120,116,32,101,118,101,110,116,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,79,78,84,69,88,84,44,32,99,116,120,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,84,111,100,97,121,66,117,116,116,111,110,58,32,102,117,110,99,116,105,111,110,32,111,110,84,111,100,97,121,66,117,116,116,111,110,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,101,116,32,116,111,32,116,111,100,97,121,32,40,111,114,32,109,105,110,47,109,97,120,32,105,102,32,116,111,100,97,121,32,105,115,32,111,117,116,32,111,102,32,114,97,110,103,101,41,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,65,110,100,67,108,111,115,101,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,102,111,114,109,97,116,89,77,68,41,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,99,111,110,115,116,114,97,105,110,68,97,116,101,41,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,99,114,101,97,116,101,68,97,116,101,41,40,41,44,32,116,104,105,115,46,109,105,110,44,32,116,104,105,115,46,109,97,120,41,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,82,101,115,101,116,66,117,116,116,111,110,58,32,102,117,110,99,116,105,111,110,32,111,110,82,101,115,101,116,66,117,116,116,111,110,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,65,110,100,67,108,111,115,101,40,116,104,105,115,46,99,111,109,112,117,116,101,100,82,101,115,101,116,86,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,108,111,115,101,66,117,116,116,111,110,58,32,102,117,110,99,116,105,111,110,32,111,110,67,108,111,115,101,66,117,116,116,111,110,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,46,104,105,100,101,40,116,114,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,77,101,110,117,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,111,110,83,104,111,119,58,32,102,117,110,99,116,105,111,110,32,111,110,83,104,111,119,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,86,105,115,105,98,108,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,83,104,111,119,110,58,32,102,117,110,99,116,105,111,110,32,111,110,83,104,111,119,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,95,116,104,105,115,51,46,36,114,101,102,115,46,99,97,108,101,110,100,97,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,72,105,100,100,101,110,58,32,102,117,110,99,116,105,111,110,32,111,110,72,105,100,100,101,110,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,86,105,115,105,98,108,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,82,101,110,100,101,114,32,104,101,108,112,101,114,115,92,110,32,32,32,32,100,101,102,97,117,108,116,66,117,116,116,111,110,70,110,58,32,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,66,117,116,116,111,110,70,110,40,95,114,101,102,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,72,111,118,101,114,101,100,32,61,32,95,114,101,102,46,105,115,72,111,118,101,114,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,104,97,115,70,111,99,117,115,32,61,32,95,114,101,102,46,104,97,115,70,111,99,117,115,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,105,115,72,111,118,101,114,101,100,32,124,124,32,104,97,115,70,111,99,117,115,32,63,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,70,105,108,108,32,58,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,108,111,99,97,108,89,77,68,32,61,32,116,104,105,115,46,108,111,99,97,108,89,77,68,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,101,97,100,111,110,108,121,32,61,32,116,104,105,115,46,114,101,97,100,111,110,108,121,44,92,110,32,32,32,32,32,32,32,32,100,97,114,107,32,61,32,116,104,105,115,46,100,97,114,107,44,92,110,32,32,32,32,32,32,32,32,36,112,114,111,112,115,32,61,32,116,104,105,115,46,36,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,59,92,110,32,32,32,32,118,97,114,32,112,108,97,99,101,104,111,108,100,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,41,32,63,32,116,104,105,115,46,108,97,98,101,108,78,111,68,97,116,101,83,101,108,101,99,116,101,100,32,58,32,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,59,32,47,47,32,79,112,116,105,111,110,97,108,32,102,111,111,116,101,114,32,98,117,116,116,111,110,115,92,110,92,110,32,32,32,32,118,97,114,32,36,102,111,111,116,101,114,32,61,32,91,93,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,116,111,100,97,121,66,117,116,116,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,97,98,101,108,32,61,32,116,104,105,115,46,108,97,98,101,108,84,111,100,97,121,66,117,116,116,111,110,59,92,110,32,32,32,32,32,32,36,102,111,111,116,101,114,46,112,117,115,104,40,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,66,66,117,116,116,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,32,124,124,32,114,101,97,100,111,110,108,121,44,92,110,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,39,115,109,39,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,116,104,105,115,46,116,111,100,97,121,66,117,116,116,111,110,86,97,114,105,97,110,116,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,108,97,98,101,108,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,84,111,100,97,121,66,117,116,116,111,110,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,108,97,98,101,108,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,114,101,115,101,116,66,117,116,116,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,108,97,98,101,108,32,61,32,116,104,105,115,46,108,97,98,101,108,82,101,115,101,116,66,117,116,116,111,110,59,92,110,32,32,32,32,32,32,36,102,111,111,116,101,114,46,112,117,115,104,40,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,66,66,117,116,116,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,32,124,124,32,114,101,97,100,111,110,108,121,44,92,110,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,39,115,109,39,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,116,104,105,115,46,114,101,115,101,116,66,117,116,116,111,110,86,97,114,105,97,110,116,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,95,108,97,98,101,108,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,82,101,115,101,116,66,117,116,116,111,110,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,95,108,97,98,101,108,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,99,108,111,115,101,66,117,116,116,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,108,97,98,101,108,50,32,61,32,116,104,105,115,46,108,97,98,101,108,67,108,111,115,101,66,117,116,116,111,110,59,92,110,32,32,32,32,32,32,36,102,111,111,116,101,114,46,112,117,115,104,40,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,66,66,117,116,116,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,39,115,109,39,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,116,104,105,115,46,99,108,111,115,101,66,117,116,116,111,110,86,97,114,105,97,110,116,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,95,108,97,98,101,108,50,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,67,108,111,115,101,66,117,116,116,111,110,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,95,108,97,98,101,108,50,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,36,102,111,111,116,101,114,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,36,102,111,111,116,101,114,32,61,32,91,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,111,114,109,45,100,97,116,101,45,99,111,110,116,114,111,108,115,32,100,45,102,108,101,120,32,102,108,101,120,45,119,114,97,112,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,39,58,32,36,102,111,111,116,101,114,46,108,101,110,103,116,104,32,62,32,49,44,92,110,32,32,32,32,32,32,32,32,32,32,39,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,101,110,100,39,58,32,36,102,111,111,116,101,114,46,108,101,110,103,116,104,32,60,32,50,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,36,102,111,111,116,101,114,41,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,99,97,108,101,110,100,97,114,32,61,32,104,40,95,99,97,108,101,110,100,97,114,95,99,97,108,101,110,100,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,67,97,108,101,110,100,97,114,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,111,114,109,45,100,97,116,101,45,99,97,108,101,110,100,97,114,32,119,45,49,48,48,39,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,99,97,108,101,110,100,97,114,80,114,111,112,115,44,32,36,112,114,111,112,115,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,104,105,100,100,101,110,58,32,33,116,104,105,115,46,105,115,86,105,115,105,98,108,101,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,108,111,99,97,108,89,77,68,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,65,115,68,97,116,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,116,104,105,115,46,99,97,108,101,110,100,97,114,87,105,100,116,104,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,58,32,116,104,105,115,46,111,110,83,101,108,101,99,116,101,100,44,92,110,32,32,32,32,32,32,32,32,105,110,112,117,116,58,32,116,104,105,115,46,111,110,73,110,112,117,116,44,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,116,104,105,115,46,111,110,67,111,110,116,101,120,116,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,58,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,105,99,107,41,40,36,115,99,111,112,101,100,83,108,111,116,115,44,32,91,39,110,97,118,45,112,114,101,118,45,100,101,99,97,100,101,39,44,32,39,110,97,118,45,112,114,101,118,45,121,101,97,114,39,44,32,39,110,97,118,45,112,114,101,118,45,109,111,110,116,104,39,44,32,39,110,97,118,45,116,104,105,115,45,109,111,110,116,104,39,44,32,39,110,97,118,45,110,101,120,116,45,109,111,110,116,104,39,44,32,39,110,97,118,45,110,101,120,116,45,121,101,97,114,39,44,32,39,110,97,118,45,110,101,120,116,45,100,101,99,97,100,101,39,93,41,44,92,110,32,32,32,32,32,32,107,101,121,58,32,39,99,97,108,101,110,100,97,114,39,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,99,97,108,101,110,100,97,114,39,92,110,32,32,32,32,125,44,32,36,102,111,111,116,101,114,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,95,102,111,114,109,95,98,116,110,95,108,97,98,101,108,95,99,111,110,116,114,111,108,95,98,118,95,102,111,114,109,95,98,116,110,95,108,97,98,101,108,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,86,70,111,114,109,66,116,110,76,97,98,101,108,67,111,110,116,114,111,108,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,39,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,102,111,114,109,66,116,110,76,97,98,101,108,67,111,110,116,114,111,108,80,114,111,112,115,44,32,36,112,114,111,112,115,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,109,97,116,116,101,100,86,97,108,117,101,58,32,108,111,99,97,108,89,77,68,32,63,32,116,104,105,115,46,102,111,114,109,97,116,116,101,100,86,97,108,117,101,32,58,32,39,39,44,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,108,97,110,103,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,97,110,103,44,92,110,32,32,32,32,32,32,32,32,109,101,110,117,67,108,97,115,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,39,98,103,45,100,97,114,107,39,58,32,100,97,114,107,44,92,110,32,32,32,32,32,32,32,32,32,32,39,116,101,120,116,45,108,105,103,104,116,39,58,32,100,97,114,107,92,110,32,32,32,32,32,32,32,32,125,44,32,116,104,105,115,46,109,101,110,117,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,112,108,97,99,101,104,111,108,100,101,114,44,92,110,32,32,32,32,32,32,32,32,114,116,108,58,32,116,104,105,115,46,105,115,82,84,76,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,108,111,99,97,108,89,77,68,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,115,104,111,119,58,32,116,104,105,115,46,111,110,83,104,111,119,44,92,110,32,32,32,32,32,32,32,32,115,104,111,119,110,58,32,116,104,105,115,46,111,110,83,104,111,119,110,44,92,110,32,32,32,32,32,32,32,32,104,105,100,100,101,110,58,32,116,104,105,115,46,111,110,72,105,100,100,101,110,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,83,76,79,84,95,78,65,77,69,95,66,85,84,84,79,78,95,67,79,78,84,69,78,84,44,32,36,115,99,111,112,101,100,83,108,111,116,115,91,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,83,76,79,84,95,78,65,77,69,95,66,85,84,84,79,78,95,67,79,78,84,69,78,84,93,32,124,124,32,116,104,105,115,46,100,101,102,97,117,108,116,66,117,116,116,111,110,70,110,41,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,99,111,110,116,114,111,108,39,92,110,32,32,32,32,125,44,32,91,36,99,97,108,101,110,100,97,114,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,68,97,116,101,112,105,99,107,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,100,97,116,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,68,97,116,101,112,105,99,107,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,68,97,116,101,112,105,99,107,101,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,111,114,109,68,97,116,101,112,105,99,107,101,114,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,100,97,116,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,70,111,114,109,68,97,116,101,112,105,99,107,101,114,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,70,111,114,109,68,97,116,101,112,105,99,107,101,114,58,32,95,102,111,114,109,95,100,97,116,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,68,97,116,101,112,105,99,107,101,114,44,92,110,32,32,32,32,66,68,97,116,101,112,105,99,107,101,114,58,32,95,102,111,114,109,95,100,97,116,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,68,97,116,101,112,105,99,107,101,114,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,102,105,108,101,47,102,111,114,109,45,102,105,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,102,105,108,101,47,102,111,114,109,45,102,105,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,70,105,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,70,105,108,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,99,108,111,110,101,45,100,101,101,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,108,111,110,101,45,100,101,101,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,119,97,114,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,117,115,116,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,99,117,115,116,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,117,115,116,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,97,108,117,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,91,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,44,32,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,70,105,108,101,93,44,92,110,32,32,100,101,102,97,117,108,116,86,97,108,117,101,58,32,110,117,108,108,44,92,110,32,32,118,97,108,105,100,97,116,111,114,58,32,102,117,110,99,116,105,111,110,32,118,97,108,105,100,97,116,111,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,39,39,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,119,97,114,110,41,40,86,65,76,85,69,95,69,77,80,84,89,95,68,69,80,82,69,67,65,84,69,68,95,77,83,71,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,70,79,82,77,95,70,73,76,69,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,118,97,108,117,101,41,32,124,124,32,105,115,86,97,108,105,100,86,97,108,117,101,40,118,97,108,117,101,41,59,92,110,32,32,125,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,92,110,92,110,118,97,114,32,86,65,76,85,69,95,69,77,80,84,89,95,68,69,80,82,69,67,65,84,69,68,95,77,83,71,32,61,32,39,83,101,116,116,105,110,103,32,92,34,118,97,108,117,101,92,34,47,92,34,118,45,109,111,100,101,108,92,34,32,116,111,32,97,110,32,101,109,112,116,121,32,115,116,114,105,110,103,32,102,111,114,32,114,101,115,101,116,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,83,101,116,32,116,111,32,92,34,110,117,108,108,92,34,32,105,110,115,116,101,97,100,46,39,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,92,110,118,97,114,32,105,115,86,97,108,105,100,86,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,32,105,115,86,97,108,105,100,86,97,108,117,101,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,70,105,108,101,41,40,118,97,108,117,101,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,65,114,114,97,121,41,40,118,97,108,117,101,41,32,38,38,32,118,97,108,117,101,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,32,40,118,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,86,97,108,105,100,86,97,108,117,101,40,118,41,59,92,110,32,32,125,41,59,92,110,125,59,32,47,47,32,72,101,108,112,101,114,32,109,101,116,104,111,100,32,116,111,32,92,34,115,97,102,101,108,121,92,34,32,103,101,116,32,116,104,101,32,101,110,116,114,121,32,102,114,111,109,32,97,32,100,97,116,97,45,116,114,97,110,115,102,101,114,32,105,116,101,109,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,115,117,112,112,111,114,116,101,100,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,92,110,118,97,114,32,103,101,116,68,97,116,97,84,114,97,110,115,102,101,114,73,116,101,109,69,110,116,114,121,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,68,97,116,97,84,114,97,110,115,102,101,114,73,116,101,109,69,110,116,114,121,40,105,116,101,109,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,105,116,101,109,46,103,101,116,65,115,69,110,116,114,121,41,32,63,32,105,116,101,109,46,103,101,116,65,115,69,110,116,114,121,40,41,32,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,105,116,101,109,46,119,101,98,107,105,116,71,101,116,65,115,69,110,116,114,121,41,32,63,32,105,116,101,109,46,119,101,98,107,105,116,71,101,116,65,115,69,110,116,114,121,40,41,32,58,32,110,117,108,108,59,92,110,125,59,32,47,47,32,68,114,111,112,32,104,97,110,100,108,101,114,32,102,117,110,99,116,105,111,110,32,116,111,32,103,101,116,32,97,108,108,32,102,105,108,101,115,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,115,117,112,112,111,114,116,101,100,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,92,110,118,97,114,32,103,101,116,65,108,108,70,105,108,101,69,110,116,114,105,101,115,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,65,108,108,70,105,108,101,69,110,116,114,105,101,115,40,100,97,116,97,84,114,97,110,115,102,101,114,73,116,101,109,76,105,115,116,41,32,123,92,110,32,32,118,97,114,32,116,114,97,118,101,114,115,101,68,105,114,101,99,116,111,114,105,101,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,116,114,117,101,59,92,110,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,114,111,109,41,40,100,97,116,97,84,114,97,110,115,102,101,114,73,116,101,109,76,105,115,116,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,46,107,105,110,100,32,61,61,61,32,39,102,105,108,101,39,59,92,110,32,32,125,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,103,101,116,68,97,116,97,84,114,97,110,115,102,101,114,73,116,101,109,69,110,116,114,121,40,105,116,101,109,41,59,92,110,92,110,32,32,32,32,105,102,32,40,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,46,105,115,68,105,114,101,99,116,111,114,121,32,38,38,32,116,114,97,118,101,114,115,101,68,105,114,101,99,116,111,114,105,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,65,108,108,70,105,108,101,69,110,116,114,105,101,115,73,110,68,105,114,101,99,116,111,114,121,40,101,110,116,114,121,46,99,114,101,97,116,101,82,101,97,100,101,114,40,41,44,32,92,34,92,34,46,99,111,110,99,97,116,40,101,110,116,114,121,46,110,97,109,101,44,32,92,34,47,92,34,41,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,101,110,116,114,121,46,105,115,70,105,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,110,116,114,121,46,102,105,108,101,40,102,117,110,99,116,105,111,110,32,40,102,105,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,101,46,36,112,97,116,104,32,61,32,39,39,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,118,101,40,102,105,108,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,125,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,100,101,110,116,105,116,121,41,41,59,92,110,125,59,32,47,47,32,71,101,116,32,97,108,108,32,116,104,101,32,102,105,108,101,32,101,110,116,114,105,101,115,32,40,114,101,99,117,114,115,105,118,101,41,32,105,110,32,97,32,100,105,114,101,99,116,111,114,121,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,115,117,112,112,111,114,116,101,100,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,92,110,118,97,114,32,103,101,116,65,108,108,70,105,108,101,69,110,116,114,105,101,115,73,110,68,105,114,101,99,116,111,114,121,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,65,108,108,70,105,108,101,69,110,116,114,105,101,115,73,110,68,105,114,101,99,116,111,114,121,40,100,105,114,101,99,116,111,114,121,82,101,97,100,101,114,41,32,123,92,110,32,32,118,97,114,32,112,97,116,104,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,39,39,59,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,41,32,123,92,110,32,32,32,32,118,97,114,32,101,110,116,114,121,80,114,111,109,105,115,101,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,118,97,114,32,114,101,97,100,68,105,114,101,99,116,111,114,121,69,110,116,114,105,101,115,32,61,32,102,117,110,99,116,105,111,110,32,114,101,97,100,68,105,114,101,99,116,111,114,121,69,110,116,114,105,101,115,40,41,32,123,92,110,32,32,32,32,32,32,100,105,114,101,99,116,111,114,121,82,101,97,100,101,114,46,114,101,97,100,69,110,116,114,105,101,115,40,102,117,110,99,116,105,111,110,32,40,101,110,116,114,105,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,105,101,115,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,118,101,40,80,114,111,109,105,115,101,46,97,108,108,40,101,110,116,114,121,80,114,111,109,105,115,101,115,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,101,110,116,114,105,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,108,97,116,116,101,110,41,40,101,110,116,114,105,101,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,110,116,114,121,80,114,111,109,105,115,101,115,46,112,117,115,104,40,80,114,111,109,105,115,101,46,97,108,108,40,101,110,116,114,105,101,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,46,105,115,68,105,114,101,99,116,111,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,65,108,108,70,105,108,101,69,110,116,114,105,101,115,73,110,68,105,114,101,99,116,111,114,121,40,101,110,116,114,121,46,99,114,101,97,116,101,82,101,97,100,101,114,40,41,44,32,92,34,92,34,46,99,111,110,99,97,116,40,112,97,116,104,41,46,99,111,110,99,97,116,40,101,110,116,114,121,46,110,97,109,101,44,32,92,34,47,92,34,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,101,110,116,114,121,46,105,115,70,105,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,110,116,114,121,46,102,105,108,101,40,102,117,110,99,116,105,111,110,32,40,102,105,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,101,46,36,112,97,116,104,32,61,32,92,34,92,34,46,99,111,110,99,97,116,40,112,97,116,104,41,46,99,111,110,99,97,116,40,102,105,108,101,46,110,97,109,101,41,59,92,110,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,118,101,40,102,105,108,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,100,101,110,116,105,116,121,41,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,97,100,68,105,114,101,99,116,111,114,121,69,110,116,114,105,101,115,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,114,101,97,100,68,105,114,101,99,116,111,114,121,69,110,116,114,105,101,115,40,41,59,92,110,32,32,125,41,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,117,115,116,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,99,99,101,112,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,39,41,44,92,110,32,32,98,114,111,119,115,101,84,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,66,114,111,119,115,101,39,41,44,92,110,32,32,47,47,32,73,110,115,116,114,117,99,116,32,105,110,112,117,116,32,116,111,32,99,97,112,116,117,114,101,32,102,114,111,109,32,99,97,109,101,114,97,92,110,32,32,99,97,112,116,117,114,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,100,105,114,101,99,116,111,114,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,100,114,111,112,80,108,97,99,101,104,111,108,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,68,114,111,112,32,102,105,108,101,115,32,104,101,114,101,39,41,44,92,110,32,32,102,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,41,44,92,110,32,32,109,117,108,116,105,112,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,68,114,111,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,68,114,111,112,80,108,97,99,101,104,111,108,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,78,111,116,32,97,108,108,111,119,101,100,39,41,44,92,110,32,32,47,47,32,84,79,68,79,58,92,110,32,32,47,47,32,32,32,83,104,111,117,108,100,32,119,101,32,100,101,112,114,101,99,97,116,101,32,116,104,105,115,32,97,110,100,32,111,110,108,121,32,115,117,112,112,111,114,116,32,102,108,97,116,32,102,105,108,101,32,115,116,114,117,99,116,117,114,101,115,63,92,110,32,32,47,47,32,32,32,78,101,115,116,101,100,32,102,105,108,101,32,115,116,114,117,99,116,117,114,101,115,32,97,114,101,32,111,110,108,121,32,115,117,112,112,111,114,116,101,100,32,119,104,101,110,32,102,105,108,101,115,32,97,114,101,32,100,114,111,112,112,101,100,92,110,32,32,47,47,32,32,32,65,32,67,104,114,111,109,105,117,109,32,92,34,98,117,103,92,34,32,112,114,101,118,101,110,116,115,32,96,119,101,98,107,105,116,69,110,116,114,105,101,115,96,32,102,114,111,109,32,98,101,105,110,103,32,112,111,112,117,108,97,116,101,100,92,110,32,32,47,47,32,32,32,111,110,32,116,104,101,32,102,105,108,101,32,105,110,112,117,116,39,115,32,96,99,104,97,110,103,101,96,32,101,118,101,110,116,32,97,110,100,32,105,115,32,109,97,114,107,101,100,32,97,115,32,92,34,87,111,110,116,70,105,120,92,34,92,110,32,32,47,47,32,32,32,77,111,122,105,108,108,97,32,105,109,112,108,101,109,101,110,116,101,100,32,116,104,101,32,98,101,104,97,118,105,111,114,32,116,104,101,32,115,97,109,101,32,119,97,121,32,97,115,32,67,104,114,111,109,105,117,109,92,110,32,32,47,47,32,32,32,83,101,101,58,32,104,116,116,112,115,58,47,47,98,117,103,115,46,99,104,114,111,109,105,117,109,46,111,114,103,47,112,47,99,104,114,111,109,105,117,109,47,105,115,115,117,101,115,47,100,101,116,97,105,108,63,105,100,61,49,51,56,57,56,55,92,110,32,32,47,47,32,32,32,83,101,101,58,32,104,116,116,112,115,58,47,47,98,117,103,122,105,108,108,97,46,109,111,122,105,108,108,97,46,111,114,103,47,115,104,111,119,95,98,117,103,46,99,103,105,63,105,100,61,49,51,50,54,48,51,49,92,110,32,32,110,111,84,114,97,118,101,114,115,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,78,111,32,102,105,108,101,32,99,104,111,115,101,110,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,70,79,82,77,95,70,73,76,69,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,70,105,108,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,70,79,82,77,95,70,73,76,69,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,67,111,110,116,114,111,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,102,111,114,109,83,116,97,116,101,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,117,115,116,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,102,111,114,109,67,117,115,116,111,109,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,102,105,108,101,115,58,32,91,93,44,92,110,32,32,32,32,32,32,100,114,97,103,103,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,47,47,32,73,69,32,49,49,32,100,111,101,115,110,39,116,32,114,101,115,112,101,99,116,32,115,101,116,116,105,110,103,32,96,101,118,101,110,116,46,100,97,116,97,84,114,97,110,115,102,101,114,46,100,114,111,112,69,102,102,101,99,116,96,44,92,110,32,32,32,32,32,32,47,47,32,115,111,32,119,101,32,104,97,110,100,108,101,32,105,116,32,111,117,114,115,101,108,118,101,115,32,97,115,32,119,101,108,108,92,110,32,32,32,32,32,32,47,47,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,97,47,52,54,57,49,53,57,55,49,47,50,55,52,52,55,55,54,92,110,32,32,32,32,32,32,100,114,111,112,65,108,108,111,119,101,100,58,32,33,116,104,105,115,46,110,111,68,114,111,112,44,92,110,32,32,32,32,32,32,104,97,115,70,111,99,117,115,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,96,97,99,99,101,112,116,96,32,116,111,32,97,110,32,97,114,114,97,121,32,111,102,32,96,91,123,32,82,101,103,69,120,112,114,44,32,105,115,77,105,109,101,32,125,44,32,46,46,46,93,96,92,110,32,32,32,32,99,111,109,112,117,116,101,100,65,99,99,101,112,116,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,65,99,99,101,112,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,99,99,101,112,116,32,61,32,116,104,105,115,46,97,99,99,101,112,116,59,92,110,32,32,32,32,32,32,97,99,99,101,112,116,32,61,32,40,97,99,99,101,112,116,32,124,124,32,39,39,41,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,91,44,92,92,115,93,43,47,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,100,101,110,116,105,116,121,41,59,32,47,47,32,65,108,108,111,119,32,97,110,121,32,102,105,108,101,32,116,121,112,101,47,101,120,116,101,110,115,105,111,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,97,99,99,101,112,116,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,99,99,101,112,116,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,101,120,116,79,114,84,121,112,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,32,61,32,39,110,97,109,101,39,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,116,97,114,116,77,97,116,99,104,32,61,32,39,94,39,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,110,100,77,97,116,99,104,32,61,32,39,36,39,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,82,88,95,69,88,84,69,78,83,73,79,78,46,116,101,115,116,40,101,120,116,79,114,84,121,112,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,108,101,32,101,120,116,101,110,115,105,111,110,32,47,92,92,46,101,120,116,36,47,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,77,97,116,99,104,32,61,32,39,39,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,77,73,77,69,32,116,121,112,101,32,47,94,109,105,109,101,92,92,47,46,43,36,47,32,111,114,32,47,94,109,105,109,101,92,92,47,116,121,112,101,36,47,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,32,61,32,39,116,121,112,101,39,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,82,88,95,83,84,65,82,46,116,101,115,116,40,101,120,116,79,114,84,121,112,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,77,97,116,99,104,32,61,32,39,46,43,36,39,59,32,47,47,32,82,101,109,111,118,101,32,116,114,97,105,108,105,110,103,32,96,42,96,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,120,116,79,114,84,121,112,101,32,61,32,101,120,116,79,114,84,121,112,101,46,115,108,105,99,101,40,48,44,32,45,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,69,115,99,97,112,101,32,97,108,108,32,82,101,103,69,120,112,32,115,112,101,99,105,97,108,32,99,104,97,114,115,92,110,92,110,92,110,32,32,32,32,32,32,32,32,101,120,116,79,114,84,121,112,101,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,101,115,99,97,112,101,82,101,103,69,120,112,41,40,101,120,116,79,114,84,121,112,101,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,120,32,61,32,110,101,119,32,82,101,103,69,120,112,40,92,34,92,34,46,99,111,110,99,97,116,40,115,116,97,114,116,77,97,116,99,104,41,46,99,111,110,99,97,116,40,101,120,116,79,114,84,121,112,101,41,46,99,111,110,99,97,116,40,101,110,100,77,97,116,99,104,41,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,120,58,32,114,120,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,58,32,112,114,111,112,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,67,97,112,116,117,114,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,67,97,112,116,117,114,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,97,112,116,117,114,101,32,61,32,116,104,105,115,46,99,97,112,116,117,114,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,112,116,117,114,101,32,61,61,61,32,116,114,117,101,32,124,124,32,99,97,112,116,117,114,101,32,61,61,61,32,39,39,32,63,32,116,114,117,101,32,58,32,99,97,112,116,117,114,101,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,116,104,105,115,46,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,32,61,32,116,104,105,115,46,114,101,113,117,105,114,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,109,32,61,32,116,104,105,115,46,102,111,114,109,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,67,97,112,116,117,114,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,67,97,112,116,117,114,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,99,99,101,112,116,32,61,32,116,104,105,115,46,97,99,99,101,112,116,44,92,110,32,32,32,32,32,32,32,32,32,32,109,117,108,116,105,112,108,101,32,61,32,116,104,105,115,46,109,117,108,116,105,112,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,114,101,99,116,111,114,121,32,61,32,116,104,105,115,46,100,105,114,101,99,116,111,114,121,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,104,105,115,46,98,118,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,116,121,112,101,58,32,39,102,105,108,101,39,44,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,58,32,114,101,113,117,105,114,101,100,44,92,110,32,32,32,32,32,32,32,32,102,111,114,109,58,32,102,111,114,109,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,99,97,112,116,117,114,101,58,32,99,111,109,112,117,116,101,100,67,97,112,116,117,114,101,44,92,110,32,32,32,32,32,32,32,32,97,99,99,101,112,116,58,32,97,99,99,101,112,116,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,109,117,108,116,105,112,108,101,58,32,109,117,108,116,105,112,108,101,44,92,110,32,32,32,32,32,32,32,32,100,105,114,101,99,116,111,114,121,58,32,100,105,114,101,99,116,111,114,121,44,92,110,32,32,32,32,32,32,32,32,119,101,98,107,105,116,100,105,114,101,99,116,111,114,121,58,32,100,105,114,101,99,116,111,114,121,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,101,113,117,105,114,101,100,39,58,32,114,101,113,117,105,114,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,70,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,70,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,32,61,32,116,104,105,115,46,102,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,104,97,115,80,114,111,112,70,117,110,99,116,105,111,110,41,40,102,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,41,32,63,32,102,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,32,58,32,116,104,105,115,46,100,101,102,97,117,108,116,70,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,108,111,110,101,100,70,105,108,101,115,58,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,100,70,105,108,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,99,108,111,110,101,68,101,101,112,41,40,116,104,105,115,46,102,105,108,101,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,108,97,116,116,101,110,101,100,70,105,108,101,115,58,32,102,117,110,99,116,105,111,110,32,102,108,97,116,116,101,110,101,100,70,105,108,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,108,97,116,116,101,110,68,101,101,112,41,40,116,104,105,115,46,102,105,108,101,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,105,108,101,78,97,109,101,115,58,32,102,117,110,99,116,105,111,110,32,102,105,108,101,78,97,109,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,102,108,97,116,116,101,110,101,100,70,105,108,101,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,102,105,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,101,46,110,97,109,101,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,97,98,101,108,67,111,110,116,101,110,116,58,32,102,117,110,99,116,105,111,110,32,108,97,98,101,108,67,111,110,116,101,110,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,114,97,103,105,110,103,32,97,99,116,105,118,101,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,117,115,101,100,32,98,121,32,100,114,97,103,47,100,114,111,112,32,119,104,105,99,104,32,99,97,110,39,116,32,98,101,32,116,101,115,116,101,100,32,101,97,115,105,108,121,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,114,97,103,103,105,110,103,32,38,38,32,33,116,104,105,115,46,110,111,68,114,111,112,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,47,47,32,84,79,68,79,58,32,65,100,100,32,97,100,100,105,116,105,111,110,97,108,32,115,99,111,112,101,32,119,105,116,104,32,102,105,108,101,32,99,111,117,110,116,44,32,97,110,100,32,111,116,104,101,114,32,110,111,116,45,97,108,108,111,119,101,100,32,114,101,97,115,111,110,115,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,83,76,79,84,95,78,65,77,69,95,68,82,79,80,95,80,76,65,67,69,72,79,76,68,69,82,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,108,108,111,119,101,100,58,32,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,92,110,32,32,32,32,32,32,32,32,32,32,125,41,32,124,124,32,40,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,32,63,32,116,104,105,115,46,100,114,111,112,80,108,97,99,101,104,111,108,100,101,114,32,58,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,116,101,120,116,45,100,97,110,103,101,114,39,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,116,104,105,115,46,110,111,68,114,111,112,80,108,97,99,101,104,111,108,100,101,114,41,41,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,78,111,32,102,105,108,101,32,99,104,111,115,101,110,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,102,105,108,101,115,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,83,76,79,84,95,78,65,77,69,95,80,76,65,67,69,72,79,76,68,69,82,41,32,124,124,32,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,102,108,97,116,116,101,110,101,100,70,105,108,101,115,32,61,32,116,104,105,115,46,102,108,97,116,116,101,110,101,100,70,105,108,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,99,108,111,110,101,100,70,105,108,101,115,32,61,32,116,104,105,115,46,99,108,111,110,101,100,70,105,108,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,102,105,108,101,78,97,109,101,115,32,61,32,116,104,105,115,46,102,105,108,101,78,97,109,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,70,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,59,32,47,47,32,84,104,101,114,101,32,105,115,32,97,32,115,108,111,116,32,102,111,114,32,102,111,114,109,97,116,116,105,110,103,32,116,104,101,32,102,105,108,101,115,47,110,97,109,101,115,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,83,76,79,84,95,78,65,77,69,95,70,73,76,69,95,78,65,77,69,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,83,76,79,84,95,78,65,77,69,95,70,73,76,69,95,78,65,77,69,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,105,108,101,115,58,32,102,108,97,116,116,101,110,101,100,70,105,108,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,102,105,108,101,115,84,114,97,118,101,114,115,101,100,58,32,99,108,111,110,101,100,70,105,108,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,110,97,109,101,115,58,32,102,105,108,101,78,97,109,101,115,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,117,116,101,100,70,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,40,102,108,97,116,116,101,110,101,100,70,105,108,101,115,44,32,99,108,111,110,101,100,70,105,108,101,115,44,32,102,105,108,101,78,97,109,101,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,110,101,119,86,97,108,117,101,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,65,114,114,97,121,41,40,110,101,119,86,97,108,117,101,41,32,38,38,32,110,101,119,86,97,108,117,101,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,114,101,115,101,116,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,102,105,108,101,115,92,34,44,32,102,117,110,99,116,105,111,110,32,102,105,108,101,115,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,117,108,116,105,112,108,101,32,61,32,116,104,105,115,46,109,117,108,116,105,112,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,110,111,84,114,97,118,101,114,115,101,32,61,32,116,104,105,115,46,110,111,84,114,97,118,101,114,115,101,59,92,110,32,32,32,32,32,32,118,97,114,32,102,105,108,101,115,32,61,32,33,109,117,108,116,105,112,108,101,32,124,124,32,110,111,84,114,97,118,101,114,115,101,32,63,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,108,97,116,116,101,110,68,101,101,112,41,40,110,101,119,86,97,108,117,101,41,32,58,32,110,101,119,86,97,108,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,109,117,108,116,105,112,108,101,32,63,32,102,105,108,101,115,32,58,32,102,105,108,101,115,91,48,93,32,124,124,32,110,117,108,108,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,67,114,101,97,116,101,32,112,114,105,118,97,116,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,115,92,110,32,32,32,32,116,104,105,115,46,36,95,102,111,114,109,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,76,105,115,116,101,110,32,102,111,114,32,102,111,114,109,32,114,101,115,101,116,32,101,118,101,110,116,115,44,32,116,111,32,114,101,115,101,116,32,116,104,101,32,102,105,108,101,32,105,110,112,117,116,92,110,32,32,32,32,118,97,114,32,36,102,111,114,109,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,99,108,111,115,101,115,116,41,40,39,102,111,114,109,39,44,32,116,104,105,115,46,36,101,108,41,59,92,110,92,110,32,32,32,32,105,102,32,40,36,102,111,114,109,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,101,118,101,110,116,79,110,41,40,36,102,111,114,109,44,32,39,114,101,115,101,116,39,44,32,116,104,105,115,46,114,101,115,101,116,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,102,111,114,109,32,61,32,36,102,111,114,109,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,118,97,114,32,36,102,111,114,109,32,61,32,116,104,105,115,46,36,95,102,111,114,109,59,92,110,92,110,32,32,32,32,105,102,32,40,36,102,111,114,109,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,101,118,101,110,116,79,102,102,41,40,36,102,111,114,109,44,32,39,114,101,115,101,116,39,44,32,116,104,105,115,46,114,101,115,101,116,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,105,115,70,105,108,101,86,97,108,105,100,58,32,102,117,110,99,116,105,111,110,32,105,115,70,105,108,101,86,97,108,105,100,40,102,105,108,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,102,105,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,97,99,99,101,112,116,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,99,99,101,112,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,99,99,101,112,116,32,63,32,97,99,99,101,112,116,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,97,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,46,114,120,46,116,101,115,116,40,102,105,108,101,91,97,46,112,114,111,112,93,41,59,92,110,32,32,32,32,32,32,125,41,32,58,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,70,105,108,101,115,65,114,114,97,121,86,97,108,105,100,58,32,102,117,110,99,116,105,111,110,32,105,115,70,105,108,101,115,65,114,114,97,121,86,97,108,105,100,40,102,105,108,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,65,114,114,97,121,41,40,102,105,108,101,115,41,32,63,32,102,105,108,101,115,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,32,40,102,105,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,46,105,115,70,105,108,101,86,97,108,105,100,40,102,105,108,101,41,59,92,110,32,32,32,32,32,32,125,41,32,58,32,116,104,105,115,46,105,115,70,105,108,101,86,97,108,105,100,40,102,105,108,101,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,101,102,97,117,108,116,70,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,58,32,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,70,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,40,102,108,97,116,116,101,110,101,100,70,105,108,101,115,44,32,99,108,111,110,101,100,70,105,108,101,115,44,32,102,105,108,101,78,97,109,101,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,101,78,97,109,101,115,46,106,111,105,110,40,39,44,32,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,70,105,108,101,115,58,32,102,117,110,99,116,105,111,110,32,115,101,116,70,105,108,101,115,40,102,105,108,101,115,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,115,101,116,32,116,104,101,32,100,114,97,103,103,105,110,103,32,102,108,97,103,115,92,110,32,32,32,32,32,32,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,32,61,32,33,116,104,105,115,46,110,111,68,114,111,112,59,92,110,32,32,32,32,32,32,116,104,105,115,46,100,114,97,103,103,105,110,103,32,61,32,102,97,108,115,101,59,32,47,47,32,83,101,116,32,116,104,101,32,115,101,108,101,99,116,101,100,32,102,105,108,101,115,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,102,105,108,101,115,32,61,32,116,104,105,115,46,109,117,108,116,105,112,108,101,32,63,32,116,104,105,115,46,100,105,114,101,99,116,111,114,121,32,63,32,102,105,108,101,115,32,58,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,108,97,116,116,101,110,68,101,101,112,41,40,102,105,108,101,115,41,32,58,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,108,97,116,116,101,110,68,101,101,112,41,40,102,105,108,101,115,41,46,115,108,105,99,101,40,48,44,32,49,41,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,117,115,101,100,32,98,121,32,68,114,97,103,47,68,114,111,112,32,42,47,92,110,32,32,32,32,115,101,116,73,110,112,117,116,70,105,108,101,115,58,32,102,117,110,99,116,105,111,110,32,115,101,116,73,110,112,117,116,70,105,108,101,115,40,102,105,108,101,115,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,114,121,32,97,110,32,115,101,116,32,116,104,101,32,102,105,108,101,32,105,110,112,117,116,32,102,105,108,101,115,32,97,114,114,97,121,32,115,111,32,116,104,97,116,32,96,114,101,113,117,105,114,101,100,96,92,110,32,32,32,32,32,32,47,47,32,99,111,110,115,116,114,97,105,110,116,32,119,111,114,107,115,32,102,111,114,32,100,114,111,112,112,101,100,32,102,105,108,101,115,32,40,119,105,108,108,32,102,97,105,108,32,105,110,32,73,69,49,49,32,116,104,111,117,103,104,41,92,110,32,32,32,32,32,32,47,47,32,84,111,32,98,101,32,117,115,101,100,32,111,110,108,121,32,119,104,101,110,32,100,114,111,112,112,105,110,103,32,102,105,108,101,115,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,70,105,114,101,102,111,120,32,60,32,54,50,32,119,111,114,107,97,114,111,117,110,100,32,101,120,112,108,111,105,116,105,110,103,32,104,116,116,112,115,58,47,47,98,117,103,122,105,108,108,97,46,109,111,122,105,108,108,97,46,111,114,103,47,115,104,111,119,95,98,117,103,46,99,103,105,63,105,100,61,49,52,50,50,54,53,53,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,97,116,97,84,114,97,110,115,102,101,114,32,61,32,110,101,119,32,67,108,105,112,98,111,97,114,100,69,118,101,110,116,40,39,39,41,46,99,108,105,112,98,111,97,114,100,68,97,116,97,32,124,124,32,110,101,119,32,68,97,116,97,84,114,97,110,115,102,101,114,40,41,59,32,47,47,32,65,100,100,32,102,108,97,116,116,101,110,101,100,32,102,105,108,101,115,32,116,111,32,116,101,109,112,32,96,100,97,116,97,84,114,97,110,115,102,101,114,96,32,111,98,106,101,99,116,32,116,111,32,103,101,116,32,97,32,116,114,117,101,32,96,70,105,108,101,76,105,115,116,96,32,97,114,114,97,121,92,110,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,108,97,116,116,101,110,68,101,101,112,41,40,40,48,44,95,117,116,105,108,115,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,99,108,111,110,101,68,101,101,112,41,40,102,105,108,101,115,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,102,105,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,107,101,32,115,117,114,101,32,116,111,32,114,101,109,111,118,101,32,116,104,101,32,99,117,115,116,111,109,32,96,36,112,97,116,104,96,32,97,116,116,114,105,98,117,116,101,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,102,105,108,101,46,36,112,97,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,100,97,116,97,84,114,97,110,115,102,101,114,46,105,116,101,109,115,46,97,100,100,40,102,105,108,101,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,102,105,108,101,115,32,61,32,100,97,116,97,84,114,97,110,115,102,101,114,46,102,105,108,101,115,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,95,117,110,117,115,101,100,41,32,123,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,115,101,116,58,32,102,117,110,99,116,105,111,110,32,114,101,115,101,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,69,32,49,49,32,100,111,101,115,110,39,116,32,115,117,112,112,111,114,116,32,115,101,116,116,105,110,103,32,96,36,105,110,112,117,116,46,118,97,108,117,101,96,32,116,111,32,96,39,39,96,32,111,114,32,96,110,117,108,108,96,92,110,32,32,32,32,32,32,47,47,32,83,111,32,119,101,32,117,115,101,32,116,104,105,115,32,108,105,116,116,108,101,32,101,120,116,114,97,32,104,97,99,107,32,116,111,32,114,101,115,101,116,32,116,104,101,32,118,97,108,117,101,44,32,106,117,115,116,32,105,110,32,99,97,115,101,92,110,32,32,32,32,32,32,47,47,32,84,104,105,115,32,97,108,115,111,32,97,112,112,101,97,114,115,32,116,111,32,119,111,114,107,32,111,110,32,109,111,100,101,114,110,32,98,114,111,119,115,101,114,115,32,97,115,32,119,101,108,108,92,110,32,32,32,32,32,32,47,47,32,87,114,97,112,112,101,100,32,105,110,32,116,114,121,32,105,110,32,99,97,115,101,32,73,69,32,49,49,32,111,114,32,109,111,98,105,108,101,32,83,97,102,97,114,105,32,99,114,97,112,32,111,117,116,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,36,105,110,112,117,116,32,61,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,59,92,110,32,32,32,32,32,32,32,32,36,105,110,112,117,116,46,118,97,108,117,101,32,61,32,39,39,59,92,110,32,32,32,32,32,32,32,32,36,105,110,112,117,116,46,116,121,112,101,32,61,32,39,39,59,92,110,32,32,32,32,32,32,32,32,36,105,110,112,117,116,46,116,121,112,101,32,61,32,39,102,105,108,101,39,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,95,117,110,117,115,101,100,50,41,32,123,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,102,105,108,101,115,32,61,32,91,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,70,105,108,101,115,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,70,105,108,101,115,40,102,105,108,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,68,114,111,112,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,114,111,112,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,104,101,110,32,100,114,111,112,112,101,100,44,32,109,97,107,101,32,115,117,114,101,32,116,111,32,102,105,108,116,101,114,32,102,105,108,101,115,32,119,105,116,104,32,116,104,101,32,105,110,116,101,114,110,97,108,32,96,97,99,99,101,112,116,96,32,108,111,103,105,99,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,105,108,116,101,114,101,100,70,105,108,101,115,32,61,32,102,105,108,101,115,46,102,105,108,116,101,114,40,116,104,105,115,46,105,115,70,105,108,101,115,65,114,114,97,121,86,97,108,105,100,41,59,32,47,47,32,79,110,108,121,32,117,112,100,97,116,101,32,102,105,108,101,115,32,119,104,101,110,32,119,101,32,104,97,118,101,32,97,110,121,32,97,102,116,101,114,32,102,105,108,116,101,114,105,110,103,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,105,108,116,101,114,101,100,70,105,108,101,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,70,105,108,101,115,40,102,105,108,116,101,114,101,100,70,105,108,101,115,41,59,32,47,47,32,84,114,121,32,97,110,32,115,101,116,32,116,104,101,32,102,105,108,101,32,105,110,112,117,116,39,115,32,102,105,108,101,115,32,97,114,114,97,121,32,115,111,32,116,104,97,116,32,96,114,101,113,117,105,114,101,100,96,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,99,111,110,115,116,114,97,105,110,116,32,119,111,114,107,115,32,102,111,114,32,100,114,111,112,112,101,100,32,102,105,108,101,115,32,40,119,105,108,108,32,102,97,105,108,32,105,110,32,73,69,32,49,49,32,116,104,111,117,103,104,41,92,110,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,73,110,112,117,116,70,105,108,101,115,40,102,105,108,116,101,114,101,100,70,105,108,101,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,97,108,119,97,121,115,32,117,112,100,97,116,101,32,116,104,101,32,102,105,108,101,115,32,102,114,111,109,32,116,104,101,32,96,99,104,97,110,103,101,96,32,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,70,105,108,101,115,40,102,105,108,101,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,99,117,115,72,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,72,97,110,100,108,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,66,111,111,116,115,116,114,97,112,32,118,52,32,100,111,101,115,110,39,116,32,104,97,118,101,32,102,111,99,117,115,32,115,116,121,108,105,110,103,32,102,111,114,32,99,117,115,116,111,109,32,102,105,108,101,32,105,110,112,117,116,92,110,32,32,32,32,32,32,47,47,32,70,105,114,101,102,111,120,32,104,97,115,32,97,32,96,91,116,121,112,101,61,102,105,108,101,93,58,102,111,99,117,115,32,126,32,115,105,98,108,105,110,103,96,32,115,101,108,101,99,116,111,114,32,105,115,115,117,101,44,92,110,32,32,32,32,32,32,47,47,32,115,111,32,119,101,32,97,100,100,32,97,32,96,102,111,99,117,115,96,32,99,108,97,115,115,32,116,111,32,103,101,116,32,97,114,111,117,110,100,32,116,104,101,115,101,32,98,117,103,115,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,112,108,97,105,110,32,124,124,32,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,39,102,111,99,117,115,111,117,116,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,97,115,70,111,99,117,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,102,111,99,117,115,32,115,116,121,108,105,110,103,32,102,111,114,32,99,117,115,116,111,109,32,102,105,108,101,32,105,110,112,117,116,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,97,115,70,111,99,117,115,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,104,97,110,103,101,58,32,102,117,110,99,116,105,111,110,32,111,110,67,104,97,110,103,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,101,118,101,110,116,46,116,121,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,44,92,110,32,32,32,32,32,32,32,32,32,32,95,101,118,101,110,116,36,100,97,116,97,84,114,97,110,115,102,101,114,32,61,32,101,118,101,110,116,46,100,97,116,97,84,114,97,110,115,102,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,100,97,116,97,84,114,97,110,115,102,101,114,32,61,32,95,101,118,101,110,116,36,100,97,116,97,84,114,97,110,115,102,101,114,32,61,61,61,32,118,111,105,100,32,48,32,63,32,123,125,32,58,32,95,101,118,101,110,116,36,100,97,116,97,84,114,97,110,115,102,101,114,59,92,110,32,32,32,32,32,32,118,97,114,32,105,115,68,114,111,112,32,61,32,116,121,112,101,32,61,61,61,32,39,100,114,111,112,39,59,32,47,47,32,65,108,119,97,121,115,32,101,109,105,116,32,111,114,105,103,105,110,97,108,32,101,118,101,110,116,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,114,111,109,41,40,100,97,116,97,84,114,97,110,115,102,101,114,46,105,116,101,109,115,32,124,124,32,91,93,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,72,65,83,95,80,82,79,77,73,83,69,95,83,85,80,80,79,82,84,32,38,38,32,105,116,101,109,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,78,117,108,108,41,40,103,101,116,68,97,116,97,84,114,97,110,115,102,101,114,73,116,101,109,69,110,116,114,121,40,105,116,101,109,115,91,48,93,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,114,111,112,32,104,97,110,100,108,105,110,103,32,102,111,114,32,109,111,100,101,114,110,32,98,114,111,119,115,101,114,115,92,110,32,32,32,32,32,32,32,32,47,47,32,83,117,112,112,111,114,116,115,32,110,101,115,116,101,100,32,100,105,114,101,99,116,111,114,121,32,115,116,114,117,99,116,117,114,101,115,32,105,110,32,96,100,105,114,101,99,116,111,114,121,96,32,109,111,100,101,92,110,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,115,117,112,112,111,114,116,101,100,32,105,110,32,74,83,68,79,77,32,42,47,92,110,32,32,32,32,32,32,32,32,103,101,116,65,108,108,70,105,108,101,69,110,116,114,105,101,115,40,105,116,101,109,115,44,32,116,104,105,115,46,100,105,114,101,99,116,111,114,121,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,102,105,108,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,50,46,104,97,110,100,108,101,70,105,108,101,115,40,102,105,108,101,115,44,32,105,115,68,114,111,112,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,116,97,110,100,97,114,100,32,102,105,108,101,32,105,110,112,117,116,32,104,97,110,100,108,105,110,103,32,40,110,97,116,105,118,101,32,102,105,108,101,32,105,110,112,117,116,32,99,104,97,110,103,101,32,101,118,101,110,116,41,44,92,110,32,32,32,32,32,32,32,32,47,47,32,111,114,32,102,97,108,108,98,97,99,107,32,100,114,111,112,32,109,111,100,101,32,40,73,69,32,49,49,32,47,32,79,112,101,114,97,41,32,119,104,105,99,104,32,100,111,110,39,116,32,115,117,112,112,111,114,116,32,96,100,105,114,101,99,116,111,114,121,96,32,109,111,100,101,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,105,108,101,115,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,114,111,109,41,40,116,97,114,103,101,116,46,102,105,108,101,115,32,124,124,32,100,97,116,97,84,114,97,110,115,102,101,114,46,102,105,108,101,115,32,124,124,32,91,93,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,102,105,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,99,117,115,116,111,109,32,96,36,112,97,116,104,96,32,112,114,111,112,101,114,116,121,32,116,111,32,101,97,99,104,32,102,105,108,101,32,40,116,111,32,98,101,32,99,111,110,115,105,115,116,101,110,116,32,119,105,116,104,32,100,114,111,112,32,109,111,100,101,41,92,110,32,32,32,32,32,32,32,32,32,32,102,105,108,101,46,36,112,97,116,104,32,61,32,102,105,108,101,46,119,101,98,107,105,116,82,101,108,97,116,105,118,101,80,97,116,104,32,124,124,32,39,39,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,101,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,97,110,100,108,101,70,105,108,101,115,40,102,105,108,101,115,44,32,105,115,68,114,111,112,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,68,114,97,103,101,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,111,110,68,114,97,103,101,110,116,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,100,114,97,103,103,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,118,97,114,32,95,101,118,101,110,116,36,100,97,116,97,84,114,97,110,115,102,101,114,50,32,61,32,101,118,101,110,116,46,100,97,116,97,84,114,97,110,115,102,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,100,97,116,97,84,114,97,110,115,102,101,114,32,61,32,95,101,118,101,110,116,36,100,97,116,97,84,114,97,110,115,102,101,114,50,32,61,61,61,32,118,111,105,100,32,48,32,63,32,123,125,32,58,32,95,101,118,101,110,116,36,100,97,116,97,84,114,97,110,115,102,101,114,50,59,32,47,47,32,69,97,114,108,121,32,101,120,105,116,32,119,104,101,110,32,116,104,101,32,105,110,112,117,116,32,111,114,32,100,114,111,112,112,105,110,103,32,105,115,32,100,105,115,97,98,108,101,100,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,110,111,68,114,111,112,32,124,124,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,33,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,104,111,119,32,100,101,110,121,32,102,101,101,100,98,97,99,107,92,110,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,115,117,112,112,111,114,116,101,100,32,105,110,32,74,83,68,79,77,32,42,47,92,110,32,32,32,32,32,32,32,32,100,97,116,97,84,114,97,110,115,102,101,114,46,100,114,111,112,69,102,102,101,99,116,32,61,32,39,110,111,110,101,39,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,115,117,112,112,111,114,116,101,100,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,100,97,116,97,84,114,97,110,115,102,101,114,46,100,114,111,112,69,102,102,101,99,116,32,61,32,39,99,111,112,121,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,78,111,116,101,32,116,104,105,115,32,101,118,101,110,116,32,102,105,114,101,115,32,114,101,112,101,97,116,101,100,108,121,32,119,104,105,108,101,32,116,104,101,32,109,111,117,115,101,32,105,115,32,111,118,101,114,32,116,104,101,32,100,114,111,112,122,111,110,101,32,97,116,92,110,32,32,32,32,47,47,32,105,110,116,101,114,118,97,108,115,32,105,110,32,116,104,101,32,109,105,108,108,105,115,101,99,111,110,100,115,44,32,115,111,32,97,118,111,105,100,32,100,111,105,110,103,32,109,117,99,104,32,112,114,111,99,101,115,115,105,110,103,32,105,110,32,104,101,114,101,92,110,32,32,32,32,111,110,68,114,97,103,111,118,101,114,58,32,102,117,110,99,116,105,111,110,32,111,110,68,114,97,103,111,118,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,100,114,97,103,103,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,118,97,114,32,95,101,118,101,110,116,36,100,97,116,97,84,114,97,110,115,102,101,114,51,32,61,32,101,118,101,110,116,46,100,97,116,97,84,114,97,110,115,102,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,100,97,116,97,84,114,97,110,115,102,101,114,32,61,32,95,101,118,101,110,116,36,100,97,116,97,84,114,97,110,115,102,101,114,51,32,61,61,61,32,118,111,105,100,32,48,32,63,32,123,125,32,58,32,95,101,118,101,110,116,36,100,97,116,97,84,114,97,110,115,102,101,114,51,59,32,47,47,32,69,97,114,108,121,32,101,120,105,116,32,119,104,101,110,32,116,104,101,32,105,110,112,117,116,32,111,114,32,100,114,111,112,112,105,110,103,32,105,115,32,100,105,115,97,98,108,101,100,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,110,111,68,114,111,112,32,124,124,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,33,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,104,111,119,32,100,101,110,121,32,102,101,101,100,98,97,99,107,92,110,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,115,117,112,112,111,114,116,101,100,32,105,110,32,74,83,68,79,77,32,42,47,92,110,32,32,32,32,32,32,32,32,100,97,116,97,84,114,97,110,115,102,101,114,46,100,114,111,112,69,102,102,101,99,116,32,61,32,39,110,111,110,101,39,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,115,117,112,112,111,114,116,101,100,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,100,97,116,97,84,114,97,110,115,102,101,114,46,100,114,111,112,69,102,102,101,99,116,32,61,32,39,99,111,112,121,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,68,114,97,103,108,101,97,118,101,58,32,102,117,110,99,116,105,111,110,32,111,110,68,114,97,103,108,101,97,118,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,100,114,97,103,103,105,110,103,32,61,32,102,97,108,115,101,59,32,47,47,32,82,101,115,101,116,32,96,100,114,111,112,65,108,108,111,119,101,100,96,32,116,111,32,100,101,102,97,117,108,116,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,100,114,111,112,65,108,108,111,119,101,100,32,61,32,33,95,116,104,105,115,51,46,110,111,68,114,111,112,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,84,114,105,103,103,101,114,101,100,32,98,121,32,97,32,102,105,108,101,32,100,114,111,112,32,111,110,116,111,32,100,114,111,112,32,116,97,114,103,101,116,92,110,32,32,32,32,111,110,68,114,111,112,58,32,102,117,110,99,116,105,111,110,32,111,110,68,114,111,112,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,100,114,97,103,103,105,110,103,32,61,32,102,97,108,115,101,59,32,47,47,32,69,97,114,108,121,32,101,120,105,116,32,119,104,101,110,32,116,104,101,32,105,110,112,117,116,32,111,114,32,100,114,111,112,112,105,110,103,32,105,115,32,100,105,115,97,98,108,101,100,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,110,111,68,114,111,112,32,124,124,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,33,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,115,101,116,32,96,100,114,111,112,65,108,108,111,119,101,100,96,32,116,111,32,100,101,102,97,117,108,116,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,100,114,111,112,65,108,108,111,119,101,100,32,61,32,33,95,116,104,105,115,52,46,110,111,68,114,111,112,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,111,110,67,104,97,110,103,101,40,101,118,101,110,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,99,117,115,116,111,109,32,61,32,116,104,105,115,46,99,117,115,116,111,109,44,92,110,32,32,32,32,32,32,32,32,112,108,97,105,110,32,61,32,116,104,105,115,46,112,108,97,105,110,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,32,61,32,116,104,105,115,46,115,105,122,101,44,92,110,32,32,32,32,32,32,32,32,100,114,97,103,103,105,110,103,32,61,32,116,104,105,115,46,100,114,97,103,103,105,110,103,44,92,110,32,32,32,32,32,32,32,32,115,116,97,116,101,67,108,97,115,115,32,61,32,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,98,118,65,116,116,114,115,32,61,32,116,104,105,115,46,98,118,65,116,116,114,115,59,32,47,47,32,70,111,114,109,32,73,110,112,117,116,92,110,92,110,32,32,32,32,118,97,114,32,36,105,110,112,117,116,32,61,32,104,40,39,105,110,112,117,116,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,39,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,39,58,32,112,108,97,105,110,44,92,110,32,32,32,32,32,32,32,32,39,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,39,58,32,99,117,115,116,111,109,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,58,32,99,117,115,116,111,109,32,38,38,32,116,104,105,115,46,104,97,115,70,111,99,117,115,92,110,32,32,32,32,32,32,125,44,32,115,116,97,116,101,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,47,47,32,87,105,116,104,32,73,69,32,49,49,44,32,116,104,101,32,105,110,112,117,116,32,103,101,116,115,32,105,110,32,116,104,101,32,92,34,119,97,121,92,34,32,111,102,32,116,104,101,32,100,114,111,112,32,101,118,101,110,116,115,44,92,110,32,32,32,32,32,32,47,47,32,115,111,32,119,101,32,109,111,118,101,32,105,116,32,111,117,116,32,111,102,32,116,104,101,32,119,97,121,32,98,121,32,112,117,116,116,105,110,103,32,105,116,32,98,101,104,105,110,100,32,116,104,101,32,108,97,98,101,108,92,110,32,32,32,32,32,32,47,47,32,66,111,111,116,115,116,114,97,112,32,118,52,32,104,97,115,32,105,116,32,105,110,32,102,114,111,110,116,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,99,117,115,116,111,109,32,63,32,123,92,110,32,32,32,32,32,32,32,32,122,73,110,100,101,120,58,32,45,53,92,110,32,32,32,32,32,32,125,32,58,32,123,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,99,104,97,110,103,101,58,32,116,104,105,115,46,111,110,67,104,97,110,103,101,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,105,110,58,32,116,104,105,115,46,102,111,99,117,115,72,97,110,100,108,101,114,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,111,117,116,58,32,116,104,105,115,46,102,111,99,117,115,72,97,110,100,108,101,114,44,92,110,32,32,32,32,32,32,32,32,114,101,115,101,116,58,32,116,104,105,115,46,114,101,115,101,116,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,105,110,112,117,116,39,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,112,108,97,105,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,36,105,110,112,117,116,59,92,110,32,32,32,32,125,32,47,47,32,79,118,101,114,108,97,121,32,108,97,98,101,108,92,110,92,110,92,110,32,32,32,32,118,97,114,32,36,108,97,98,101,108,32,61,32,104,40,39,108,97,98,101,108,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,100,114,97,103,103,105,110,103,58,32,100,114,97,103,103,105,110,103,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,105,115,32,103,111,101,115,32,97,119,97,121,32,105,110,32,66,111,111,116,115,116,114,97,112,32,118,53,92,110,32,32,32,32,32,32,32,32,39,100,97,116,97,45,98,114,111,119,115,101,39,58,32,116,104,105,115,46,98,114,111,119,115,101,84,101,120,116,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,100,45,98,108,111,99,107,32,102,111,114,109,45,102,105,108,101,45,116,101,120,116,39,44,92,110,32,32,32,32,32,32,47,47,32,96,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,96,32,105,115,32,117,115,101,100,32,116,111,32,109,97,107,101,32,115,117,114,101,92,110,32,32,32,32,32,32,47,47,32,116,104,101,32,100,114,97,103,32,101,118,101,110,116,115,32,102,105,114,101,32,111,110,108,121,32,111,110,32,116,104,101,32,108,97,98,101,108,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,123,92,110,32,32,32,32,32,32,32,32,112,111,105,110,116,101,114,69,118,101,110,116,115,58,32,39,110,111,110,101,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,108,97,98,101,108,67,111,110,116,101,110,116,93,41,93,41,59,32,47,47,32,82,101,116,117,114,110,32,114,101,110,100,101,114,101,100,32,99,117,115,116,111,109,32,102,105,108,101,32,105,110,112,117,116,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,99,117,115,116,111,109,45,102,105,108,101,32,98,45,102,111,114,109,45,102,105,108,101,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,92,34,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,92,34,46,99,111,110,99,97,116,40,115,105,122,101,41,44,32,115,105,122,101,41,44,32,115,116,97,116,101,67,108,97,115,115,44,32,98,118,65,116,116,114,115,46,99,108,97,115,115,93,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,98,118,65,116,116,114,115,46,115,116,121,108,101,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,66,86,95,102,105,108,101,95,111,117,116,101,114,95,39,41,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,100,114,97,103,101,110,116,101,114,58,32,116,104,105,115,46,111,110,68,114,97,103,101,110,116,101,114,44,92,110,32,32,32,32,32,32,32,32,100,114,97,103,111,118,101,114,58,32,116,104,105,115,46,111,110,68,114,97,103,111,118,101,114,44,92,110,32,32,32,32,32,32,32,32,100,114,97,103,108,101,97,118,101,58,32,116,104,105,115,46,111,110,68,114,97,103,108,101,97,118,101,44,92,110,32,32,32,32,32,32,32,32,100,114,111,112,58,32,116,104,105,115,46,111,110,68,114,111,112,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,105,110,112,117,116,44,32,36,108,97,98,101,108,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,102,105,108,101,47,102,111,114,109,45,102,105,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,102,105,108,101,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,102,105,108,101,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,70,105,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,102,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,70,105,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,70,105,108,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,111,114,109,70,105,108,101,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,102,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,102,105,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,102,105,108,101,47,102,111,114,109,45,102,105,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,70,111,114,109,70,105,108,101,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,70,111,114,109,70,105,108,101,58,32,95,102,111,114,109,95,102,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,70,105,108,101,44,92,110,32,32,32,32,66,70,105,108,101,58,32,95,102,111,114,109,95,102,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,70,105,108,101,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,102,105,108,101,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,103,114,111,117,112,47,102,111,114,109,45,103,114,111,117,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,103,114,111,117,112,47,102,111,114,109,45,103,114,111,117,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,110,101,114,97,116,101,80,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,110,101,114,97,116,101,80,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,99,111,110,102,105,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,99,115,115,95,101,115,99,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,99,115,115,45,101,115,99,97,112,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,115,115,45,101,115,99,97,112,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,97,121,111,117,116,95,99,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,97,121,111,117,116,47,99,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,99,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,97,121,111,117,116,95,102,111,114,109,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,97,121,111,117,116,47,102,111,114,109,45,114,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,102,111,114,109,45,114,111,119,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,102,111,114,109,47,102,111,114,109,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,102,111,114,109,95,105,110,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,102,111,114,109,47,102,111,114,109,45,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,102,111,114,109,95,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,102,111,114,109,47,102,111,114,109,45,118,97,108,105,100,45,102,101,101,100,98,97,99,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,118,97,108,105,100,45,102,101,101,100,98,97,99,107,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,73,78,80,85,84,83,32,61,32,91,39,105,110,112,117,116,39,44,32,39,115,101,108,101,99,116,39,44,32,39,116,101,120,116,97,114,101,97,39,93,59,32,47,47,32,83,101,108,101,99,116,111,114,32,102,111,114,32,102,105,110,100,105,110,103,32,102,105,114,115,116,32,105,110,112,117,116,32,105,110,32,116,104,101,32,102,111,114,109,32,103,114,111,117,112,92,110,92,110,118,97,114,32,73,78,80,85,84,95,83,69,76,69,67,84,79,82,32,61,32,73,78,80,85,84,83,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,118,41,32,123,92,110,32,32,114,101,116,117,114,110,32,92,34,92,34,46,99,111,110,99,97,116,40,118,44,32,92,34,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,92,34,41,59,92,110,125,41,46,106,111,105,110,40,41,59,32,47,47,32,65,32,108,105,115,116,32,111,102,32,105,110,116,101,114,97,99,116,105,118,101,32,101,108,101,109,101,110,116,115,32,40,116,97,103,32,110,97,109,101,115,41,32,105,110,115,105,100,101,32,96,60,98,45,102,111,114,109,45,103,114,111,117,112,62,96,39,115,32,108,101,103,101,110,100,92,110,92,110,118,97,114,32,76,69,71,69,78,68,95,73,78,84,69,82,65,67,84,73,86,69,95,69,76,69,77,69,78,84,83,32,61,32,91,93,46,99,111,110,99,97,116,40,73,78,80,85,84,83,44,32,91,39,97,39,44,32,39,98,117,116,116,111,110,39,44,32,39,108,97,98,101,108,39,93,41,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,47,47,32,80,114,111,112,32,103,101,110,101,114,97,116,111,114,32,102,111,114,32,108,97,122,121,32,103,101,110,101,114,97,116,105,111,110,32,111,102,32,112,114,111,112,115,92,110,92,110,118,97,114,32,103,101,110,101,114,97,116,101,80,114,111,112,115,32,61,32,102,117,110,99,116,105,111,110,32,103,101,110,101,114,97,116,101,80,114,111,112,115,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,103,101,116,66,114,101,97,107,112,111,105,110,116,115,85,112,67,97,99,104,101,100,41,40,41,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,115,44,32,98,114,101,97,107,112,111,105,110,116,41,32,123,92,110,32,32,32,32,47,47,32,105,46,101,46,32,39,99,111,110,116,101,110,116,45,99,111,108,115,39,44,32,39,99,111,110,116,101,110,116,45,99,111,108,115,45,115,109,39,44,32,39,99,111,110,116,101,110,116,45,99,111,108,115,45,109,100,39,44,32,46,46,46,92,110,32,32,32,32,112,114,111,112,115,91,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,117,102,102,105,120,80,114,111,112,78,97,109,101,41,40,98,114,101,97,107,112,111,105,110,116,44,32,39,99,111,110,116,101,110,116,67,111,108,115,39,41,93,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,59,32,47,47,32,105,46,101,46,32,39,108,97,98,101,108,45,97,108,105,103,110,39,44,32,39,108,97,98,101,108,45,97,108,105,103,110,45,115,109,39,44,32,39,108,97,98,101,108,45,97,108,105,103,110,45,109,100,39,44,32,46,46,46,92,110,92,110,32,32,32,32,112,114,111,112,115,91,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,117,102,102,105,120,80,114,111,112,78,97,109,101,41,40,98,114,101,97,107,112,111,105,110,116,44,32,39,108,97,98,101,108,65,108,105,103,110,39,41,93,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,59,32,47,47,32,105,46,101,46,32,39,108,97,98,101,108,45,99,111,108,115,39,44,32,39,108,97,98,101,108,45,99,111,108,115,45,115,109,39,44,32,39,108,97,98,101,108,45,99,111,108,115,45,109,100,39,44,32,46,46,46,92,110,92,110,32,32,32,32,112,114,111,112,115,91,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,117,102,102,105,120,80,114,111,112,78,97,109,101,41,40,98,114,101,97,107,112,111,105,110,116,44,32,39,108,97,98,101,108,67,111,108,115,39,41,93,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,115,59,92,110,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,114,101,97,116,101,41,40,110,117,108,108,41,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,100,101,115,99,114,105,112,116,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,32,32,102,101,101,100,98,97,99,107,65,114,105,97,76,105,118,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,97,115,115,101,114,116,105,118,101,39,41,44,92,110,32,32,32,32,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,32,32,108,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,32,32,108,97,98,101,108,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,32,32,108,97,98,101,108,70,111,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,32,32,108,97,98,101,108,83,105,122,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,32,32,108,97,98,101,108,83,114,79,110,108,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,32,32,116,111,111,108,116,105,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,32,32,118,97,108,105,100,70,101,101,100,98,97,99,107,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,32,32,118,97,108,105,100,97,116,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,32,32,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,70,79,82,77,95,71,82,79,85,80,41,59,92,110,125,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,87,101,32,100,111,32,110,111,116,32,117,115,101,32,96,86,117,101,46,101,120,116,101,110,100,40,41,96,32,104,101,114,101,32,97,115,32,116,104,97,116,32,119,111,117,108,100,32,101,118,97,108,117,97,116,101,32,116,104,101,32,112,114,111,112,115,92,110,47,47,32,105,109,109,101,100,105,97,116,101,108,121,44,32,119,104,105,99,104,32,119,101,32,100,111,32,110,111,116,32,119,97,110,116,32,116,111,32,104,97,112,112,101,110,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,71,114,111,117,112,32,61,32,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,70,79,82,77,95,71,82,79,85,80,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,102,111,114,109,83,116,97,116,101,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,92,110,32,32,103,101,116,32,112,114,111,112,115,40,41,32,123,92,110,32,32,32,32,47,47,32,65,108,108,111,119,32,112,114,111,112,115,32,116,111,32,98,101,32,108,97,122,121,32,101,118,97,108,101,100,32,111,110,32,102,105,114,115,116,32,97,99,99,101,115,115,32,97,110,100,92,110,32,32,32,32,47,47,32,116,104,101,110,32,116,104,101,121,32,98,101,99,111,109,101,32,97,32,110,111,110,45,103,101,116,116,101,114,32,97,102,116,101,114,119,97,114,100,115,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,100,101,118,101,108,111,112,101,114,46,109,111,122,105,108,108,97,46,111,114,103,47,101,110,45,85,83,47,100,111,99,115,47,87,101,98,47,74,97,118,97,83,99,114,105,112,116,47,82,101,102,101,114,101,110,99,101,47,70,117,110,99,116,105,111,110,115,47,103,101,116,35,83,109,97,114,116,95,115,101,108,102,45,111,118,101,114,119,114,105,116,105,110,103,95,108,97,122,121,95,103,101,116,116,101,114,115,92,110,32,32,32,32,100,101,108,101,116,101,32,116,104,105,115,46,112,114,111,112,115,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,114,101,116,117,114,110,45,97,115,115,105,103,110,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,32,61,32,103,101,110,101,114,97,116,101,80,114,111,112,115,40,41,59,92,110,32,32,125,44,92,110,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,58,32,110,117,108,108,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,110,116,101,110,116,67,111,108,80,114,111,112,115,58,32,102,117,110,99,116,105,111,110,32,99,111,110,116,101,110,116,67,111,108,80,114,111,112,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,103,101,116,67,111,108,80,114,111,112,115,40,116,104,105,115,46,36,112,114,111,112,115,44,32,39,99,111,110,116,101,110,116,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,97,98,101,108,65,108,105,103,110,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,108,97,98,101,108,65,108,105,103,110,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,103,101,116,65,108,105,103,110,67,108,97,115,115,101,115,40,116,104,105,115,46,36,112,114,111,112,115,44,32,39,108,97,98,101,108,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,97,98,101,108,67,111,108,80,114,111,112,115,58,32,102,117,110,99,116,105,111,110,32,108,97,98,101,108,67,111,108,80,114,111,112,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,103,101,116,67,111,108,80,114,111,112,115,40,116,104,105,115,46,36,112,114,111,112,115,44,32,39,108,97,98,101,108,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,72,111,114,105,122,111,110,116,97,108,58,32,102,117,110,99,116,105,111,110,32,105,115,72,111,114,105,122,111,110,116,97,108,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,101,116,101,114,109,105,110,101,32,105,102,32,116,104,101,32,102,111,114,109,32,103,114,111,117,112,32,119,105,108,108,32,98,101,32,114,101,110,100,101,114,101,100,32,104,111,114,105,122,111,110,116,97,108,92,110,32,32,32,32,32,32,47,47,32,98,97,115,101,100,32,111,110,32,116,104,101,32,101,120,105,115,116,101,110,99,101,32,111,102,32,39,99,111,110,116,101,110,116,45,99,111,108,39,32,111,114,32,39,108,97,98,101,108,45,99,111,108,39,32,112,114,111,112,115,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,107,101,121,115,41,40,116,104,105,115,46,99,111,110,116,101,110,116,67,111,108,80,114,111,112,115,41,46,108,101,110,103,116,104,32,62,32,48,32,124,124,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,107,101,121,115,41,40,116,104,105,115,46,108,97,98,101,108,67,111,108,80,114,111,112,115,41,46,108,101,110,103,116,104,32,62,32,48,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,58,32,102,117,110,99,116,105,111,110,32,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,101,116,32,96,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,96,32,111,110,32,116,104,101,32,105,110,112,117,116,32,115,112,101,99,105,102,105,101,100,32,98,121,32,96,108,97,98,101,108,70,111,114,96,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,111,32,116,104,105,115,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,101,110,115,117,114,101,32,116,104,101,32,99,104,105,108,100,114,101,110,32,104,97,118,101,32,102,105,110,105,115,104,101,100,32,114,101,110,100,101,114,105,110,103,92,110,32,32,32,32,32,32,95,116,104,105,115,46,117,112,100,97,116,101,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,40,95,116,104,105,115,46,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,103,101,116,65,108,105,103,110,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,103,101,116,65,108,105,103,110,67,108,97,115,115,101,115,40,112,114,111,112,115,44,32,112,114,101,102,105,120,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,103,101,116,66,114,101,97,107,112,111,105,110,116,115,85,112,67,97,99,104,101,100,41,40,41,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,117,108,116,44,32,98,114,101,97,107,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,86,97,108,117,101,32,61,32,112,114,111,112,115,91,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,117,102,102,105,120,80,114,111,112,78,97,109,101,41,40,98,114,101,97,107,112,111,105,110,116,44,32,92,34,92,34,46,99,111,110,99,97,116,40,112,114,101,102,105,120,44,32,92,34,65,108,105,103,110,92,34,41,41,93,32,124,124,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,91,39,116,101,120,116,39,44,32,98,114,101,97,107,112,111,105,110,116,44,32,112,114,111,112,86,97,108,117,101,93,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,45,39,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,44,32,91,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,67,111,108,80,114,111,112,115,58,32,102,117,110,99,116,105,111,110,32,103,101,116,67,111,108,80,114,111,112,115,40,112,114,111,112,115,44,32,112,114,101,102,105,120,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,103,101,116,66,114,101,97,107,112,111,105,110,116,115,85,112,67,97,99,104,101,100,41,40,41,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,117,108,116,44,32,98,114,101,97,107,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,86,97,108,117,101,32,61,32,112,114,111,112,115,91,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,117,102,102,105,120,80,114,111,112,78,97,109,101,41,40,98,114,101,97,107,112,111,105,110,116,44,32,92,34,92,34,46,99,111,110,99,97,116,40,112,114,101,102,105,120,44,32,92,34,67,111,108,115,92,34,41,41,93,59,32,47,47,32,72,97,110,100,108,101,32,99,97,115,101,32,119,104,101,114,101,32,116,104,101,32,112,114,111,112,39,115,32,118,97,108,117,101,32,105,115,32,97,110,32,101,109,112,116,121,32,115,116,114,105,110,103,44,92,110,32,32,32,32,32,32,32,32,47,47,32,119,104,105,99,104,32,114,101,112,114,101,115,101,110,116,115,32,96,116,114,117,101,96,92,110,92,110,32,32,32,32,32,32,32,32,112,114,111,112,86,97,108,117,101,32,61,32,112,114,111,112,86,97,108,117,101,32,61,61,61,32,39,39,32,63,32,116,114,117,101,32,58,32,112,114,111,112,86,97,108,117,101,32,124,124,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,105,115,66,111,111,108,101,97,110,41,40,112,114,111,112,86,97,108,117,101,41,32,38,38,32,112,114,111,112,86,97,108,117,101,32,33,61,61,32,39,97,117,116,111,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,116,111,32,99,111,108,117,109,110,32,115,105,122,101,32,116,111,32,110,117,109,98,101,114,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,86,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,116,111,73,110,116,101,103,101,114,41,40,112,114,111,112,86,97,108,117,101,44,32,48,41,59,32,47,47,32,69,110,115,117,114,101,32,99,111,108,117,109,110,32,115,105,122,101,32,105,115,32,103,114,101,97,116,101,114,32,116,104,97,110,32,96,48,96,92,110,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,86,97,108,117,101,32,61,32,112,114,111,112,86,97,108,117,101,32,62,32,48,32,63,32,112,114,111,112,86,97,108,117,101,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,65,100,100,32,116,104,101,32,112,114,111,112,32,116,111,32,116,104,101,32,108,105,115,116,32,111,102,32,112,114,111,112,115,32,116,111,32,103,105,118,101,32,116,111,32,96,60,98,45,99,111,108,62,96,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,98,114,101,97,107,112,111,105,110,116,32,105,115,32,39,39,32,40,96,36,123,112,114,101,102,105,120,125,67,111,108,115,96,32,105,115,32,96,116,114,117,101,96,41,44,32,116,104,101,110,32,119,101,32,117,115,101,92,110,32,32,32,32,32,32,32,32,47,47,32,116,104,101,32,39,99,111,108,39,32,112,114,111,112,32,116,111,32,109,97,107,101,32,101,113,117,97,108,32,119,105,100,116,104,32,97,116,32,39,120,115,39,92,110,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,98,114,101,97,107,112,111,105,110,116,32,124,124,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,105,115,66,111,111,108,101,97,110,41,40,112,114,111,112,86,97,108,117,101,41,32,63,32,39,99,111,108,39,32,58,32,39,99,111,108,115,39,41,93,32,61,32,112,114,111,112,86,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,44,32,123,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,101,116,115,32,116,104,101,32,96,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,96,32,97,116,116,114,105,98,117,116,101,32,111,110,32,116,104,101,32,105,110,112,117,116,32,105,102,32,96,108,97,98,101,108,70,111,114,96,32,105,115,32,115,101,116,92,110,32,32,32,32,47,47,32,79,112,116,105,111,110,97,108,108,121,32,97,99,99,101,112,116,115,32,97,32,115,116,114,105,110,103,32,111,102,32,73,68,115,32,116,111,32,114,101,109,111,118,101,32,97,115,32,116,104,101,32,115,101,99,111,110,100,32,112,97,114,97,109,101,116,101,114,92,110,32,32,32,32,47,47,32,80,114,101,115,101,114,118,101,115,32,97,110,121,32,96,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,96,32,118,97,108,117,101,40,115,41,32,117,115,101,114,32,109,97,121,32,104,97,118,101,32,111,110,32,105,110,112,117,116,92,110,32,32,32,32,117,112,100,97,116,101,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,97,98,101,108,70,111,114,32,61,32,116,104,105,115,46,108,97,98,101,108,70,111,114,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,73,83,95,66,82,79,87,83,69,82,32,38,38,32,108,97,98,101,108,70,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,110,101,101,100,32,116,111,32,101,115,99,97,112,101,32,96,108,97,98,101,108,70,111,114,96,32,115,105,110,99,101,32,105,116,32,99,97,110,32,98,101,32,117,115,101,114,45,112,114,111,118,105,100,101,100,92,110,32,32,32,32,32,32,32,32,118,97,114,32,36,105,110,112,117,116,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,115,101,108,101,99,116,41,40,92,34,35,92,34,46,99,111,110,99,97,116,40,40,48,44,95,117,116,105,108,115,95,99,115,115,95,101,115,99,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,99,115,115,69,115,99,97,112,101,41,40,108,97,98,101,108,70,111,114,41,41,44,32,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,36,105,110,112,117,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,116,116,114,32,61,32,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,73,100,115,32,61,32,40,110,101,119,86,97,108,117,101,32,124,124,32,39,39,41,46,115,112,108,105,116,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,82,88,95,83,80,65,67,69,95,83,80,76,73,84,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,108,100,73,100,115,32,61,32,40,111,108,100,86,97,108,117,101,32,124,124,32,39,39,41,46,115,112,108,105,116,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,82,88,95,83,80,65,67,69,95,83,80,76,73,84,41,59,32,47,47,32,85,112,100,97,116,101,32,73,68,32,108,105,115,116,44,32,112,114,101,115,101,114,118,105,110,103,32,97,110,121,32,111,114,105,103,105,110,97,108,32,73,68,115,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,97,110,100,32,101,110,115,117,114,105,110,103,32,116,104,101,32,73,68,39,115,32,97,114,101,32,117,110,105,113,117,101,92,110,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,100,115,32,61,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,103,101,116,65,116,116,114,41,40,36,105,110,112,117,116,44,32,97,116,116,114,41,32,124,124,32,39,39,41,46,115,112,108,105,116,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,82,88,95,83,80,65,67,69,95,83,80,76,73,84,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,111,108,100,73,100,115,44,32,105,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,46,99,111,110,99,97,116,40,110,101,119,73,100,115,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,105,100,44,32,105,110,100,101,120,44,32,105,100,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,100,115,46,105,110,100,101,120,79,102,40,105,100,41,32,61,61,61,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,32,39,41,46,116,114,105,109,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,100,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,115,101,116,65,116,116,114,41,40,36,105,110,112,117,116,44,32,97,116,116,114,44,32,105,100,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,114,101,109,111,118,101,65,116,116,114,41,40,36,105,110,112,117,116,44,32,97,116,116,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,76,101,103,101,110,100,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,111,110,76,101,103,101,110,100,67,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,111,110,39,116,32,100,111,32,97,110,121,116,104,105,110,103,32,105,102,32,96,108,97,98,101,108,70,111,114,96,32,105,115,32,115,101,116,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,99,108,105,99,107,105,110,103,32,97,32,108,97,98,101,108,32,119,105,108,108,32,102,111,99,117,115,32,116,104,101,32,105,110,112,117,116,44,32,115,111,32,110,111,32,110,101,101,100,32,116,111,32,116,101,115,116,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,97,98,101,108,70,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,59,92,110,32,32,32,32,32,32,118,97,114,32,116,97,103,78,97,109,101,32,61,32,116,97,114,103,101,116,32,63,32,116,97,114,103,101,116,46,116,97,103,78,97,109,101,32,58,32,39,39,59,32,47,47,32,73,102,32,99,108,105,99,107,101,100,32,97,110,32,105,110,116,101,114,97,99,116,105,118,101,32,101,108,101,109,101,110,116,32,105,110,115,105,100,101,32,108,101,103,101,110,100,44,92,110,32,32,32,32,32,32,47,47,32,119,101,32,106,117,115,116,32,108,101,116,32,116,104,101,32,100,101,102,97,117,108,116,32,104,97,112,112,101,110,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,76,69,71,69,78,68,95,73,78,84,69,82,65,67,84,73,86,69,95,69,76,69,77,69,78,84,83,46,105,110,100,101,120,79,102,40,116,97,103,78,97,109,101,41,32,33,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,73,102,32,111,110,108,121,32,97,32,115,105,110,103,108,101,32,105,110,112,117,116,44,32,102,111,99,117,115,32,105,116,44,32,101,109,117,108,97,116,105,110,103,32,108,97,98,101,108,32,98,101,104,97,118,105,111,117,114,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,110,112,117,116,115,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,115,101,108,101,99,116,65,108,108,41,40,73,78,80,85,84,95,83,69,76,69,67,84,79,82,44,32,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,105,115,86,105,115,105,98,108,101,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,110,112,117,116,115,46,108,101,110,103,116,104,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,105,110,112,117,116,115,91,48,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,97,116,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,116,101,44,92,110,32,32,32,32,32,32,32,32,102,101,101,100,98,97,99,107,65,114,105,97,76,105,118,101,32,61,32,116,104,105,115,46,102,101,101,100,98,97,99,107,65,114,105,97,76,105,118,101,44,92,110,32,32,32,32,32,32,32,32,105,115,72,111,114,105,122,111,110,116,97,108,32,61,32,116,104,105,115,46,105,115,72,111,114,105,122,111,110,116,97,108,44,92,110,32,32,32,32,32,32,32,32,108,97,98,101,108,70,111,114,32,61,32,116,104,105,115,46,108,97,98,101,108,70,111,114,44,92,110,32,32,32,32,32,32,32,32,110,111,114,109,97,108,105,122,101,83,108,111,116,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,44,92,110,32,32,32,32,32,32,32,32,115,97,102,101,73,100,32,61,32,116,104,105,115,46,115,97,102,101,73,100,44,92,110,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,32,61,32,116,104,105,115,46,116,111,111,108,116,105,112,59,92,110,32,32,32,32,118,97,114,32,105,100,32,61,32,115,97,102,101,73,100,40,41,59,92,110,32,32,32,32,118,97,114,32,105,115,70,105,101,108,100,115,101,116,32,61,32,33,108,97,98,101,108,70,111,114,59,92,110,32,32,32,32,118,97,114,32,36,108,97,98,101,108,32,61,32,104,40,41,59,92,110,32,32,32,32,118,97,114,32,108,97,98,101,108,67,111,110,116,101,110,116,32,61,32,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,83,76,79,84,95,78,65,77,69,95,76,65,66,69,76,41,32,124,124,32,116,104,105,115,46,108,97,98,101,108,59,92,110,32,32,32,32,118,97,114,32,108,97,98,101,108,73,100,32,61,32,108,97,98,101,108,67,111,110,116,101,110,116,32,63,32,115,97,102,101,73,100,40,39,95,66,86,95,108,97,98,101,108,95,39,41,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,105,102,32,40,108,97,98,101,108,67,111,110,116,101,110,116,32,124,124,32,105,115,72,111,114,105,122,111,110,116,97,108,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,97,98,101,108,83,105,122,101,32,61,32,116,104,105,115,46,108,97,98,101,108,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,67,111,108,80,114,111,112,115,32,61,32,116,104,105,115,46,108,97,98,101,108,67,111,108,80,114,111,112,115,59,92,110,32,32,32,32,32,32,118,97,114,32,108,97,98,101,108,84,97,103,32,61,32,105,115,70,105,101,108,100,115,101,116,32,63,32,39,108,101,103,101,110,100,39,32,58,32,39,108,97,98,101,108,39,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,97,98,101,108,83,114,79,110,108,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,97,98,101,108,67,111,110,116,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,36,108,97,98,101,108,32,61,32,104,40,108,97,98,101,108,84,97,103,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,39,115,114,45,111,110,108,121,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,108,97,98,101,108,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,58,32,108,97,98,101,108,70,111,114,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,91,108,97,98,101,108,67,111,110,116,101,110,116,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,36,108,97,98,101,108,32,61,32,104,40,105,115,72,111,114,105,122,111,110,116,97,108,32,63,32,95,108,97,121,111,117,116,95,99,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,66,67,111,108,32,58,32,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,105,115,72,111,114,105,122,111,110,116,97,108,32,63,32,108,97,98,101,108,67,111,108,80,114,111,112,115,32,58,32,123,125,92,110,32,32,32,32,32,32,32,32,125,44,32,91,36,108,97,98,101,108,93,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,36,108,97,98,101,108,32,61,32,104,40,105,115,72,111,114,105,122,111,110,116,97,108,32,63,32,95,108,97,121,111,117,116,95,99,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,66,67,111,108,32,58,32,108,97,98,101,108,84,97,103,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,105,115,70,105,101,108,100,115,101,116,32,63,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,76,101,103,101,110,100,67,108,105,99,107,92,110,32,32,32,32,32,32,32,32,32,32,125,32,58,32,123,125,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,105,115,72,111,114,105,122,111,110,116,97,108,32,63,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,108,97,98,101,108,67,111,108,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,58,32,108,97,98,101,108,84,97,103,92,110,32,32,32,32,32,32,32,32,32,32,125,41,32,58,32,123,125,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,108,97,98,101,108,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,58,32,108,97,98,101,108,70,111,114,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,97,100,100,32,97,32,96,116,97,98,105,110,100,101,120,96,32,116,111,32,108,101,103,101,110,100,32,115,111,32,116,104,97,116,32,115,99,114,101,101,110,32,114,101,97,100,101,114,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,119,105,108,108,32,112,114,111,112,101,114,108,121,32,114,101,97,100,32,116,104,101,32,96,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,96,32,105,110,32,73,69,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,105,115,70,105,101,108,100,115,101,116,32,63,32,39,45,49,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,47,47,32,72,105,100,101,32,116,104,101,32,102,111,99,117,115,32,114,105,110,103,32,111,110,32,116,104,101,32,108,101,103,101,110,100,92,110,32,32,32,32,32,32,32,32,32,32,105,115,70,105,101,108,100,115,101,116,32,63,32,39,98,118,45,110,111,45,102,111,99,117,115,45,114,105,110,103,39,32,58,32,39,39,44,32,47,47,32,87,104,101,110,32,104,111,114,105,122,111,110,116,97,108,32,111,114,32,105,102,32,97,32,108,101,103,101,110,100,32,105,115,32,114,101,110,100,101,114,101,100,44,32,97,100,100,32,39,99,111,108,45,102,111,114,109,45,108,97,98,101,108,39,32,99,108,97,115,115,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,102,111,114,32,99,111,114,114,101,99,116,32,115,105,122,105,110,103,32,97,115,32,66,111,111,116,115,116,114,97,112,32,104,97,115,32,105,110,99,111,110,115,105,115,116,101,110,116,32,102,111,110,116,32,115,116,121,108,105,110,103,32,102,111,114,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,108,101,103,101,110,100,32,105,110,32,110,111,110,45,104,111,114,105,122,111,110,116,97,108,32,102,111,114,109,32,103,114,111,117,112,115,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,101,58,32,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,105,115,115,117,101,115,47,50,55,56,48,53,92,110,32,32,32,32,32,32,32,32,32,32,105,115,72,111,114,105,122,111,110,116,97,108,32,124,124,32,105,115,70,105,101,108,100,115,101,116,32,63,32,39,99,111,108,45,102,111,114,109,45,108,97,98,101,108,39,32,58,32,39,39,44,32,47,47,32,69,109,117,108,97,116,101,32,108,97,98,101,108,32,112,97,100,100,105,110,103,32,116,111,112,32,111,102,32,96,48,96,32,111,110,32,108,101,103,101,110,100,32,119,104,101,110,32,110,111,116,32,104,111,114,105,122,111,110,116,97,108,92,110,32,32,32,32,32,32,32,32,32,32,33,105,115,72,111,114,105,122,111,110,116,97,108,32,38,38,32,105,115,70,105,101,108,100,115,101,116,32,63,32,39,112,116,45,48,39,32,58,32,39,39,44,32,47,47,32,73,102,32,110,111,116,32,104,111,114,105,122,111,110,116,97,108,32,97,110,100,32,110,111,116,32,97,32,108,101,103,101,110,100,44,32,119,101,32,97,100,100,32,39,100,45,98,108,111,99,107,39,32,99,108,97,115,115,32,116,111,32,108,97,98,101,108,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,115,111,32,116,104,97,116,32,108,97,98,101,108,45,97,108,105,103,110,32,119,111,114,107,115,92,110,32,32,32,32,32,32,32,32,32,32,33,105,115,72,111,114,105,122,111,110,116,97,108,32,38,38,32,33,105,115,70,105,101,108,100,115,101,116,32,63,32,39,100,45,98,108,111,99,107,39,32,58,32,39,39,44,32,108,97,98,101,108,83,105,122,101,32,63,32,92,34,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,92,34,46,99,111,110,99,97,116,40,108,97,98,101,108,83,105,122,101,41,32,58,32,39,39,44,32,116,104,105,115,46,108,97,98,101,108,65,108,105,103,110,67,108,97,115,115,101,115,44,32,116,104,105,115,46,108,97,98,101,108,67,108,97,115,115,93,92,110,32,32,32,32,32,32,32,32,125,44,32,91,108,97,98,101,108,67,111,110,116,101,110,116,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,32,61,32,104,40,41,59,92,110,32,32,32,32,118,97,114,32,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,67,111,110,116,101,110,116,32,61,32,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,83,76,79,84,95,78,65,77,69,95,73,78,86,65,76,73,68,95,70,69,69,68,66,65,67,75,41,32,124,124,32,116,104,105,115,46,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,59,92,110,32,32,32,32,118,97,114,32,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,73,100,32,61,32,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,67,111,110,116,101,110,116,32,63,32,115,97,102,101,73,100,40,39,95,66,86,95,102,101,101,100,98,97,99,107,95,105,110,118,97,108,105,100,95,39,41,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,105,102,32,40,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,67,111,110,116,101,110,116,41,32,123,92,110,32,32,32,32,32,32,36,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,32,61,32,104,40,95,102,111,114,109,95,102,111,114,109,95,105,110,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,66,70,111,114,109,73,110,118,97,108,105,100,70,101,101,100,98,97,99,107,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,105,97,76,105,118,101,58,32,102,101,101,100,98,97,99,107,65,114,105,97,76,105,118,101,44,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,102,101,101,100,98,97,99,107,65,114,105,97,76,105,118,101,32,63,32,39,97,108,101,114,116,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,115,116,97,116,101,32,105,115,32,101,120,112,108,105,99,105,116,108,121,32,96,102,97,108,115,101,96,44,32,97,108,119,97,121,115,32,115,104,111,119,32,116,104,101,32,102,101,101,100,98,97,99,107,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,101,58,32,115,116,97,116,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,58,32,116,111,111,108,116,105,112,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,67,111,110,116,101,110,116,32,63,32,39,45,49,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,67,111,110,116,101,110,116,93,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,118,97,108,105,100,70,101,101,100,98,97,99,107,32,61,32,104,40,41,59,92,110,32,32,32,32,118,97,114,32,118,97,108,105,100,70,101,101,100,98,97,99,107,67,111,110,116,101,110,116,32,61,32,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,83,76,79,84,95,78,65,77,69,95,86,65,76,73,68,95,70,69,69,68,66,65,67,75,41,32,124,124,32,116,104,105,115,46,118,97,108,105,100,70,101,101,100,98,97,99,107,59,92,110,32,32,32,32,118,97,114,32,118,97,108,105,100,70,101,101,100,98,97,99,107,73,100,32,61,32,118,97,108,105,100,70,101,101,100,98,97,99,107,67,111,110,116,101,110,116,32,63,32,115,97,102,101,73,100,40,39,95,66,86,95,102,101,101,100,98,97,99,107,95,118,97,108,105,100,95,39,41,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,105,102,32,40,118,97,108,105,100,70,101,101,100,98,97,99,107,67,111,110,116,101,110,116,41,32,123,92,110,32,32,32,32,32,32,36,118,97,108,105,100,70,101,101,100,98,97,99,107,32,61,32,104,40,95,102,111,114,109,95,102,111,114,109,95,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,66,70,111,114,109,86,97,108,105,100,70,101,101,100,98,97,99,107,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,105,97,76,105,118,101,58,32,102,101,101,100,98,97,99,107,65,114,105,97,76,105,118,101,44,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,118,97,108,105,100,70,101,101,100,98,97,99,107,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,102,101,101,100,98,97,99,107,65,114,105,97,76,105,118,101,32,63,32,39,97,108,101,114,116,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,115,116,97,116,101,32,105,115,32,101,120,112,108,105,99,105,116,108,121,32,96,116,114,117,101,96,44,32,97,108,119,97,121,115,32,115,104,111,119,32,116,104,101,32,102,101,101,100,98,97,99,107,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,101,58,32,115,116,97,116,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,58,32,116,111,111,108,116,105,112,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,118,97,108,105,100,70,101,101,100,98,97,99,107,67,111,110,116,101,110,116,32,63,32,39,45,49,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,118,97,108,105,100,70,101,101,100,98,97,99,107,67,111,110,116,101,110,116,93,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,100,101,115,99,114,105,112,116,105,111,110,32,61,32,104,40,41,59,92,110,32,32,32,32,118,97,114,32,100,101,115,99,114,105,112,116,105,111,110,67,111,110,116,101,110,116,32,61,32,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,83,67,82,73,80,84,73,79,78,41,32,124,124,32,116,104,105,115,46,100,101,115,99,114,105,112,116,105,111,110,59,92,110,32,32,32,32,118,97,114,32,100,101,115,99,114,105,112,116,105,111,110,73,100,32,61,32,100,101,115,99,114,105,112,116,105,111,110,67,111,110,116,101,110,116,32,63,32,115,97,102,101,73,100,40,39,95,66,86,95,100,101,115,99,114,105,112,116,105,111,110,95,39,41,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,105,102,32,40,100,101,115,99,114,105,112,116,105,111,110,67,111,110,116,101,110,116,41,32,123,92,110,32,32,32,32,32,32,36,100,101,115,99,114,105,112,116,105,111,110,32,61,32,104,40,95,102,111,114,109,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,66,70,111,114,109,84,101,120,116,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,100,101,115,99,114,105,112,116,105,111,110,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,45,49,39,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,100,101,115,99,114,105,112,116,105,111,110,67,111,110,116,101,110,116,93,41,59,92,110,32,32,32,32,125,32,47,47,32,85,112,100,97,116,101,32,96,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,96,92,110,32,32,32,32,47,47,32,83,99,114,101,101,110,32,114,101,97,100,101,114,115,32,119,105,108,108,32,114,101,97,100,32,111,117,116,32,97,110,121,32,99,111,110,116,101,110,116,32,108,105,110,107,101,100,32,116,111,32,98,121,32,96,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,96,92,110,32,32,32,32,47,47,32,101,118,101,110,32,105,102,32,116,104,101,32,99,111,110,116,101,110,116,32,105,115,32,104,105,100,100,101,110,32,119,105,116,104,32,96,100,105,115,112,108,97,121,58,32,110,111,110,101,59,96,44,32,104,101,110,99,101,32,119,101,32,111,110,108,121,32,105,110,99,108,117,100,101,92,110,32,32,32,32,47,47,32,102,101,101,100,98,97,99,107,32,73,68,115,32,105,102,32,116,104,101,32,102,111,114,109,32,103,114,111,117,112,39,115,32,115,116,97,116,101,32,105,115,32,101,120,112,108,105,99,105,116,108,121,32,118,97,108,105,100,32,111,114,32,105,110,118,97,108,105,100,92,110,92,110,92,110,32,32,32,32,118,97,114,32,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,32,61,32,116,104,105,115,46,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,32,61,32,91,100,101,115,99,114,105,112,116,105,111,110,73,100,44,32,115,116,97,116,101,32,61,61,61,32,102,97,108,115,101,32,63,32,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,73,100,32,58,32,110,117,108,108,44,32,115,116,97,116,101,32,61,61,61,32,116,114,117,101,32,63,32,118,97,108,105,100,70,101,101,100,98,97,99,107,73,100,32,58,32,110,117,108,108,93,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,32,39,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,104,40,105,115,72,111,114,105,122,111,110,116,97,108,32,63,32,95,108,97,121,111,117,116,95,99,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,66,67,111,108,32,58,32,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,105,115,72,111,114,105,122,111,110,116,97,108,32,63,32,116,104,105,115,46,99,111,110,116,101,110,116,67,111,108,80,114,111,112,115,32,58,32,123,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,99,111,110,116,101,110,116,39,92,110,32,32,32,32,125,44,32,91,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,123,92,110,32,32,32,32,32,32,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,58,32,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,44,92,110,32,32,32,32,32,32,100,101,115,99,114,105,112,116,105,111,110,73,100,58,32,100,101,115,99,114,105,112,116,105,111,110,73,100,44,92,110,32,32,32,32,32,32,105,100,58,32,105,100,44,92,110,32,32,32,32,32,32,108,97,98,101,108,73,100,58,32,108,97,98,101,108,73,100,92,110,32,32,32,32,125,41,32,124,124,32,104,40,41,44,32,36,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,44,32,36,118,97,108,105,100,70,101,101,100,98,97,99,107,44,32,36,100,101,115,99,114,105,112,116,105,111,110,93,41,59,32,47,47,32,82,101,116,117,114,110,32,105,116,32,119,114,97,112,112,101,100,32,105,110,32,97,32,102,111,114,109,32,103,114,111,117,112,92,110,32,32,32,32,47,47,32,78,111,116,101,58,32,70,105,101,108,100,115,101,116,115,32,100,111,32,110,111,116,32,115,117,112,112,111,114,116,32,97,100,100,105,110,103,32,96,114,111,119,96,32,111,114,32,96,102,111,114,109,45,114,111,119,96,32,100,105,114,101,99,116,108,121,92,110,32,32,32,32,47,47,32,116,111,32,116,104,101,109,32,100,117,101,32,116,111,32,98,114,111,119,115,101,114,32,115,112,101,99,105,102,105,99,32,114,101,110,100,101,114,32,105,115,115,117,101,115,44,32,115,111,32,119,101,32,109,111,118,101,32,116,104,101,32,96,102,111,114,109,45,114,111,119,96,92,110,32,32,32,32,47,47,32,116,111,32,97,110,32,105,110,110,101,114,32,119,114,97,112,112,101,114,32,100,105,118,32,119,104,101,110,32,104,111,114,105,122,111,110,116,97,108,32,97,110,100,32,117,115,105,110,103,32,97,32,102,105,101,108,100,115,101,116,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,105,115,70,105,101,108,100,115,101,116,32,63,32,39,102,105,101,108,100,115,101,116,39,32,58,32,105,115,72,111,114,105,122,111,110,116,97,108,32,63,32,95,108,97,121,111,117,116,95,102,111,114,109,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,66,70,111,114,109,82,111,119,32,58,32,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,102,111,114,109,45,103,114,111,117,112,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,39,119,97,115,45,118,97,108,105,100,97,116,101,100,39,58,32,116,104,105,115,46,118,97,108,105,100,97,116,101,100,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,105,100,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,105,115,70,105,101,108,100,115,101,116,32,63,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,105,115,70,105,101,108,100,115,101,116,32,63,32,110,117,108,108,32,58,32,39,103,114,111,117,112,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,105,110,118,97,108,105,100,39,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,114,105,97,73,110,118,97,108,105,100,44,92,110,32,32,32,32,32,32,32,32,47,47,32,79,110,108,121,32,97,112,112,108,121,32,96,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,96,32,105,102,32,119,101,32,97,114,101,32,97,32,104,111,114,105,122,111,110,116,97,108,32,102,105,101,108,100,115,101,116,92,110,32,32,32,32,32,32,32,32,47,47,32,97,115,32,116,104,101,32,108,101,103,101,110,100,32,105,115,32,110,111,32,108,111,110,103,101,114,32,97,32,100,105,114,101,99,116,32,99,104,105,108,100,32,111,102,32,102,105,101,108,100,115,101,116,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,39,58,32,105,115,70,105,101,108,100,115,101,116,32,38,38,32,105,115,72,111,114,105,122,111,110,116,97,108,32,63,32,108,97,98,101,108,73,100,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,105,115,72,111,114,105,122,111,110,116,97,108,32,38,38,32,105,115,70,105,101,108,100,115,101,116,32,63,32,91,104,40,95,108,97,121,111,117,116,95,102,111,114,109,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,66,70,111,114,109,82,111,119,44,32,91,36,108,97,98,101,108,44,32,36,99,111,110,116,101,110,116,93,41,93,32,58,32,91,36,108,97,98,101,108,44,32,36,99,111,110,116,101,110,116,93,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,103,114,111,117,112,47,102,111,114,109,45,103,114,111,117,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,71,114,111,117,112,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,111,114,109,71,114,111,117,112,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,103,114,111,117,112,47,102,111,114,109,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,70,111,114,109,71,114,111,117,112,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,70,111,114,109,71,114,111,117,112,58,32,95,102,111,114,109,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,71,114,111,117,112,44,92,110,32,32,32,32,66,70,111,114,109,70,105,101,108,100,115,101,116,58,32,95,102,111,114,109,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,71,114,111,117,112,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,105,110,112,117,116,47,102,111,114,109,45,105,110,112,117,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,105,110,112,117,116,47,102,111,114,109,45,105,110,112,117,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,73,110,112,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,73,110,112,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,101,108,101,99,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,118,97,108,105,100,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,118,97,108,105,100,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,118,97,108,105,100,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,47,47,32,86,97,108,105,100,32,115,117,112,112,111,114,116,101,100,32,105,110,112,117,116,32,116,121,112,101,115,92,110,92,110,118,97,114,32,84,89,80,69,83,32,61,32,91,39,116,101,120,116,39,44,32,39,112,97,115,115,119,111,114,100,39,44,32,39,101,109,97,105,108,39,44,32,39,110,117,109,98,101,114,39,44,32,39,117,114,108,39,44,32,39,116,101,108,39,44,32,39,115,101,97,114,99,104,39,44,32,39,114,97,110,103,101,39,44,32,39,99,111,108,111,114,39,44,32,39,100,97,116,101,39,44,32,39,116,105,109,101,39,44,32,39,100,97,116,101,116,105,109,101,39,44,32,39,100,97,116,101,116,105,109,101,45,108,111,99,97,108,39,44,32,39,109,111,110,116,104,39,44,32,39,119,101,101,107,39,93,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,108,105,115,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,109,97,120,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,44,92,110,32,32,109,105,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,68,105,115,97,98,108,101,32,109,111,117,115,101,119,104,101,101,108,32,116,111,32,112,114,101,118,101,110,116,32,119,104,101,101,108,32,102,114,111,109,32,99,104,97,110,103,105,110,103,32,118,97,108,117,101,115,32,40,105,46,101,46,32,110,117,109,98,101,114,47,100,97,116,101,41,92,110,32,32,110,111,87,104,101,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,116,101,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,44,92,110,32,32,116,121,112,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,116,101,120,116,39,44,32,102,117,110,99,116,105,111,110,32,40,116,121,112,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,84,89,80,69,83,44,32,116,121,112,101,41,59,92,110,32,32,125,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,70,79,82,77,95,73,78,80,85,84,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,73,110,112,117,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,70,79,82,77,95,73,78,80,85,84,44,92,110,32,32,47,47,32,77,105,120,105,110,32,111,114,100,101,114,32,105,115,32,105,109,112,111,114,116,97,110,116,33,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,108,105,115,116,101,110,101,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,102,111,114,109,67,111,110,116,114,111,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,102,111,114,109,83,105,122,101,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,102,111,114,109,83,116,97,116,101,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,111,114,109,84,101,120,116,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,102,111,114,109,83,101,108,101,99,116,105,111,110,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,118,97,108,105,100,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,102,111,114,109,86,97,108,105,100,105,116,121,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,108,111,99,97,108,84,121,112,101,58,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,84,121,112,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,97,108,108,111,119,32,99,101,114,116,97,105,110,32,116,121,112,101,115,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,116,104,105,115,46,116,121,112,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,84,89,80,69,83,44,32,116,121,112,101,41,32,63,32,116,121,112,101,32,58,32,39,116,101,120,116,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,116,104,105,115,46,108,111,99,97,108,84,121,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,110,97,109,101,32,61,32,116,104,105,115,46,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,109,32,61,32,116,104,105,115,46,102,111,114,109,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,32,61,32,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,32,61,32,116,104,105,115,46,114,101,113,117,105,114,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,109,105,110,32,61,32,116,104,105,115,46,109,105,110,44,92,110,32,32,32,32,32,32,32,32,32,32,109,97,120,32,61,32,116,104,105,115,46,109,97,120,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,101,112,32,61,32,116,104,105,115,46,115,116,101,112,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,102,111,114,109,58,32,102,111,114,109,44,92,110,32,32,32,32,32,32,32,32,116,121,112,101,58,32,116,121,112,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,112,108,97,99,101,104,111,108,100,101,114,44,92,110,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,58,32,114,101,113,117,105,114,101,100,44,92,110,32,32,32,32,32,32,32,32,97,117,116,111,99,111,109,112,108,101,116,101,58,32,116,104,105,115,46,97,117,116,111,99,111,109,112,108,101,116,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,114,101,97,100,111,110,108,121,58,32,116,104,105,115,46,114,101,97,100,111,110,108,121,32,124,124,32,116,104,105,115,46,112,108,97,105,110,116,101,120,116,44,92,110,32,32,32,32,32,32,32,32,109,105,110,58,32,109,105,110,44,92,110,32,32,32,32,32,32,32,32,109,97,120,58,32,109,97,120,44,92,110,32,32,32,32,32,32,32,32,115,116,101,112,58,32,115,116,101,112,44,92,110,32,32,32,32,32,32,32,32,108,105,115,116,58,32,116,121,112,101,32,33,61,61,32,39,112,97,115,115,119,111,114,100,39,32,63,32,116,104,105,115,46,108,105,115,116,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,101,113,117,105,114,101,100,39,58,32,114,101,113,117,105,114,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,105,110,118,97,108,105,100,39,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,114,105,97,73,110,118,97,108,105,100,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,76,105,115,116,101,110,101,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,76,105,115,116,101,110,101,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,105,110,112,117,116,58,32,116,104,105,115,46,111,110,73,110,112,117,116,44,92,110,32,32,32,32,32,32,32,32,99,104,97,110,103,101,58,32,116,104,105,115,46,111,110,67,104,97,110,103,101,44,92,110,32,32,32,32,32,32,32,32,98,108,117,114,58,32,116,104,105,115,46,111,110,66,108,117,114,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,110,111,87,104,101,101,108,58,32,102,117,110,99,116,105,111,110,32,110,111,87,104,101,101,108,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,87,104,101,101,108,83,116,111,112,112,101,114,40,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,87,104,101,101,108,83,116,111,112,112,101,114,40,116,104,105,115,46,110,111,87,104,101,101,108,41,59,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,100,101,97,99,116,105,118,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,100,101,97,99,116,105,118,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,84,117,114,110,32,111,102,102,32,108,105,115,116,101,110,101,114,115,32,119,104,101,110,32,107,101,101,112,45,97,108,105,118,101,32,99,111,109,112,111,110,101,110,116,32,100,101,97,99,116,105,118,97,116,101,100,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,116,104,105,115,46,115,101,116,87,104,101,101,108,83,116,111,112,112,101,114,40,102,97,108,115,101,41,59,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,97,99,116,105,118,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,97,99,116,105,118,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,84,117,114,110,32,111,110,32,108,105,115,116,101,110,101,114,115,32,40,105,102,32,110,111,45,119,104,101,101,108,41,32,119,104,101,110,32,107,101,101,112,45,97,108,105,118,101,32,99,111,109,112,111,110,101,110,116,32,97,99,116,105,118,97,116,101,100,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,116,104,105,115,46,115,101,116,87,104,101,101,108,83,116,111,112,112,101,114,40,116,104,105,115,46,110,111,87,104,101,101,108,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,116,104,105,115,46,115,101,116,87,104,101,101,108,83,116,111,112,112,101,114,40,102,97,108,115,101,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,115,101,116,87,104,101,101,108,83,116,111,112,112,101,114,58,32,102,117,110,99,116,105,111,110,32,115,101,116,87,104,101,101,108,83,116,111,112,112,101,114,40,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,112,117,116,32,61,32,116,104,105,115,46,36,101,108,59,32,47,47,32,87,101,32,117,115,101,32,110,97,116,105,118,101,32,101,118,101,110,116,115,44,32,115,111,32,116,104,97,116,32,119,101,32,100,111,110,39,116,32,105,110,116,101,114,102,101,114,101,32,119,105,116,104,32,112,114,111,112,97,103,97,116,105,111,110,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,101,118,101,110,116,79,110,79,102,102,41,40,111,110,44,32,105,110,112,117,116,44,32,39,102,111,99,117,115,39,44,32,116,104,105,115,46,111,110,87,104,101,101,108,70,111,99,117,115,41,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,101,118,101,110,116,79,110,79,102,102,41,40,111,110,44,32,105,110,112,117,116,44,32,39,98,108,117,114,39,44,32,116,104,105,115,46,111,110,87,104,101,101,108,66,108,117,114,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,101,118,101,110,116,79,102,102,41,40,100,111,99,117,109,101,110,116,44,32,39,119,104,101,101,108,39,44,32,116,104,105,115,46,115,116,111,112,87,104,101,101,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,87,104,101,101,108,70,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,111,110,87,104,101,101,108,70,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,101,118,101,110,116,79,110,41,40,100,111,99,117,109,101,110,116,44,32,39,119,104,101,101,108,39,44,32,116,104,105,115,46,115,116,111,112,87,104,101,101,108,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,87,104,101,101,108,66,108,117,114,58,32,102,117,110,99,116,105,111,110,32,111,110,87,104,101,101,108,66,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,101,118,101,110,116,79,102,102,41,40,100,111,99,117,109,101,110,116,44,32,39,119,104,101,101,108,39,44,32,116,104,105,115,46,115,116,111,112,87,104,101,101,108,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,116,111,112,87,104,101,101,108,58,32,102,117,110,99,116,105,111,110,32,115,116,111,112,87,104,101,101,108,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,97,116,116,101,109,112,116,66,108,117,114,41,40,116,104,105,115,46,36,101,108,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,105,110,112,117,116,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,67,108,97,115,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,92,110,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,105,115,116,101,110,101,114,115,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,105,110,112,117,116,39,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,105,110,112,117,116,47,102,111,114,109,45,105,110,112,117,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,105,110,112,117,116,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,105,110,112,117,116,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,73,110,112,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,105,110,112,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,73,110,112,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,73,110,112,117,116,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,111,114,109,73,110,112,117,116,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,105,110,112,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,105,110,112,117,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,105,110,112,117,116,47,102,111,114,109,45,105,110,112,117,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,70,111,114,109,73,110,112,117,116,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,70,111,114,109,73,110,112,117,116,58,32,95,102,111,114,109,95,105,110,112,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,73,110,112,117,116,44,92,110,32,32,32,32,66,73,110,112,117,116,58,32,95,102,111,114,109,95,105,110,112,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,73,110,112,117,116,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,105,110,112,117,116,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,102,111,114,109,45,114,97,100,105,111,45,103,114,111,117,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,102,111,114,109,45,114,97,100,105,111,45,103,114,111,117,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,82,97,100,105,111,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,82,97,100,105,111,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,114,97,100,105,111,95,99,104,101,99,107,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,114,97,100,105,111,45,99,104,101,99,107,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,114,97,100,105,111,45,99,104,101,99,107,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,95,109,105,120,105,110,115,95,102,111,114,109,95,114,97,100,105,111,95,99,104,101,99,107,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,70,79,82,77,95,82,65,68,73,79,95,71,82,79,85,80,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,82,97,100,105,111,71,114,111,117,112,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,70,79,82,77,95,82,65,68,73,79,95,71,82,79,85,80,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,102,111,114,109,95,114,97,100,105,111,95,99,104,101,99,107,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,102,111,114,109,82,97,100,105,111,67,104,101,99,107,71,114,111,117,112,77,105,120,105,110,93,44,92,110,32,32,112,114,111,118,105,100,101,58,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,98,118,82,97,100,105,111,71,114,111,117,112,58,32,116,104,105,115,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,105,115,82,97,100,105,111,71,114,111,117,112,58,32,102,117,110,99,116,105,111,110,32,105,115,82,97,100,105,111,71,114,111,117,112,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,102,111,114,109,45,114,97,100,105,111,45,103,114,111,117,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,102,111,114,109,45,114,97,100,105,111,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,102,111,114,109,45,114,97,100,105,111,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,82,97,100,105,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,82,97,100,105,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,114,97,100,105,111,95,99,104,101,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,114,97,100,105,111,45,99,104,101,99,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,114,97,100,105,111,45,99,104,101,99,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,114,97,100,105,111,95,99,104,101,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,114,111,112,115,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,78,65,77,69,95,70,79,82,77,95,82,65,68,73,79,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,82,97,100,105,111,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,78,65,77,69,95,70,79,82,77,95,82,65,68,73,79,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,114,97,100,105,111,95,99,104,101,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,102,111,114,109,82,97,100,105,111,67,104,101,99,107,77,105,120,105,110,44,32,47,47,32,73,110,99,108,117,100,101,115,32,115,104,97,114,101,100,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,92,110,32,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,102,111,114,109,67,111,110,116,114,111,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,102,111,114,109,83,105,122,101,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,111,114,109,83,116,97,116,101,77,105,120,105,110,93,44,92,110,32,32,105,110,106,101,99,116,58,32,123,92,110,32,32,32,32,98,118,71,114,111,117,112,58,32,123,92,110,32,32,32,32,32,32,102,114,111,109,58,32,39,98,118,82,97,100,105,111,71,114,111,117,112,39,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,97,108,115,101,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,109,105,120,105,110,115,95,102,111,114,109,95,114,97,100,105,111,95,99,104,101,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,102,111,114,109,45,114,97,100,105,111,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,82,97,100,105,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,114,97,100,105,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,82,97,100,105,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,82,97,100,105,111,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,114,97,100,105,111,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,82,97,100,105,111,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,82,97,100,105,111,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,111,114,109,82,97,100,105,111,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,114,97,100,105,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,114,97,100,105,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,102,111,114,109,45,114,97,100,105,111,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,114,97,100,105,111,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,114,97,100,105,111,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,102,111,114,109,45,114,97,100,105,111,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,70,111,114,109,82,97,100,105,111,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,70,111,114,109,82,97,100,105,111,58,32,95,102,111,114,109,95,114,97,100,105,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,82,97,100,105,111,44,92,110,32,32,32,32,66,82,97,100,105,111,58,32,95,102,111,114,109,95,114,97,100,105,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,82,97,100,105,111,44,92,110,32,32,32,32,66,70,111,114,109,82,97,100,105,111,71,114,111,117,112,58,32,95,102,111,114,109,95,114,97,100,105,111,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,82,97,100,105,111,71,114,111,117,112,44,92,110,32,32,32,32,66,82,97,100,105,111,71,114,111,117,112,58,32,95,102,111,114,109,95,114,97,100,105,111,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,82,97,100,105,111,71,114,111,117,112,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,116,105,110,103,47,102,111,114,109,45,114,97,116,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,116,105,110,103,47,102,111,114,109,45,114,97,116,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,82,97,116,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,82,97,116,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,99,97,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,99,97,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,105,99,111,110,115,47,105,99,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,105,99,111,110,115,47,105,99,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,97,108,117,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,92,110,32,32,101,118,101,110,116,58,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,92,110,92,110,118,97,114,32,77,73,78,95,83,84,65,82,83,32,61,32,51,59,92,110,118,97,114,32,68,69,70,65,85,76,84,95,83,84,65,82,83,32,61,32,53,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,92,110,118,97,114,32,99,111,109,112,117,116,101,83,116,97,114,115,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,83,116,97,114,115,40,115,116,97,114,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,116,104,77,97,120,41,40,77,73,78,95,83,84,65,82,83,44,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,116,111,73,110,116,101,103,101,114,41,40,115,116,97,114,115,44,32,68,69,70,65,85,76,84,95,83,84,65,82,83,41,41,59,92,110,125,59,92,110,92,110,118,97,114,32,99,108,97,109,112,86,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,32,99,108,97,109,112,86,97,108,117,101,40,118,97,108,117,101,44,32,109,105,110,44,32,109,97,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,116,104,77,105,110,41,40,118,97,108,117,101,44,32,109,97,120,41,44,32,109,105,110,41,59,92,110,125,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,99,111,109,112,111,110,101,110,116,115,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,92,110,118,97,114,32,66,86,70,111,114,109,82,97,116,105,110,103,83,116,97,114,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,70,79,82,77,95,82,65,84,73,78,71,95,83,84,65,82,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,32,32,47,47,32,73,102,32,112,97,114,101,110,116,32,105,115,32,102,111,99,117,115,101,100,92,110,32,32,32,32,102,111,99,117,115,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,32,32,104,97,115,67,108,101,97,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,32,32,114,97,116,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,44,32,48,41,44,92,110,32,32,32,32,114,101,97,100,111,110,108,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,32,32,115,116,97,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,44,32,48,41,44,92,110,32,32,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,111,110,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,111,110,67,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,32,38,38,32,33,116,104,105,115,46,114,101,97,100,111,110,108,121,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,69,76,69,67,84,69,68,44,32,116,104,105,115,46,115,116,97,114,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,114,97,116,105,110,103,32,61,32,116,104,105,115,46,114,97,116,105,110,103,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,32,61,32,116,104,105,115,46,115,116,97,114,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,101,100,32,61,32,116,104,105,115,46,102,111,99,117,115,101,100,44,92,110,32,32,32,32,32,32,32,32,104,97,115,67,108,101,97,114,32,61,32,116,104,105,115,46,104,97,115,67,108,101,97,114,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,101,97,100,111,110,108,121,32,61,32,116,104,105,115,46,114,101,97,100,111,110,108,121,59,92,110,32,32,32,32,118,97,114,32,109,105,110,83,116,97,114,32,61,32,104,97,115,67,108,101,97,114,32,63,32,48,32,58,32,49,59,92,110,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,114,97,116,105,110,103,32,62,61,32,115,116,97,114,32,63,32,39,102,117,108,108,39,32,58,32,114,97,116,105,110,103,32,62,61,32,115,116,97,114,32,45,32,48,46,53,32,63,32,39,104,97,108,102,39,32,58,32,39,101,109,112,116,121,39,59,92,110,32,32,32,32,118,97,114,32,115,108,111,116,83,99,111,112,101,32,61,32,123,92,110,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,114,101,97,100,111,110,108,121,58,32,114,101,97,100,111,110,108,121,92,110,32,32,32,32,125,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,114,97,116,105,110,103,45,115,116,97,114,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,104,101,110,32,110,111,116,32,104,111,118,101,114,101,100,44,32,119,101,32,117,115,101,32,116,104,105,115,32,99,108,97,115,115,32,116,111,32,102,111,99,117,115,32,116,104,101,32,99,117,114,114,101,110,116,32,40,111,114,32,102,105,114,115,116,41,32,115,116,97,114,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,101,100,58,32,102,111,99,117,115,101,100,32,38,38,32,114,97,116,105,110,103,32,61,61,61,32,115,116,97,114,32,124,124,32,33,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,116,111,73,110,116,101,103,101,114,41,40,114,97,116,105,110,103,41,32,38,38,32,115,116,97,114,32,61,61,61,32,109,105,110,83,116,97,114,44,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,97,100,100,32,116,121,112,101,32,99,108,97,115,115,101,115,32,116,111,32,119,101,32,99,97,110,32,104,97,110,100,108,101,32,82,84,76,32,115,116,121,108,105,110,103,92,110,32,32,32,32,32,32,32,32,39,98,45,114,97,116,105,110,103,45,115,116,97,114,45,101,109,112,116,121,39,58,32,116,121,112,101,32,61,61,61,32,39,101,109,112,116,121,39,44,92,110,32,32,32,32,32,32,32,32,39,98,45,114,97,116,105,110,103,45,115,116,97,114,45,104,97,108,102,39,58,32,116,121,112,101,32,61,61,61,32,39,104,97,108,102,39,44,92,110,32,32,32,32,32,32,32,32,39,98,45,114,97,116,105,110,103,45,115,116,97,114,45,102,117,108,108,39,58,32,116,121,112,101,32,61,61,61,32,39,102,117,108,108,39,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,33,100,105,115,97,98,108,101,100,32,38,38,32,33,114,101,97,100,111,110,108,121,32,63,32,39,45,49,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,67,108,105,99,107,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,114,97,116,105,110,103,45,105,99,111,110,39,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,116,121,112,101,44,32,115,108,111,116,83,99,111,112,101,41,93,41,93,41,59,92,110,32,32,125,92,110,125,41,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,111,109,105,116,41,40,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,112,114,111,112,115,44,32,91,39,114,101,113,117,105,114,101,100,39,44,32,39,97,117,116,111,102,111,99,117,115,39,93,41,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,47,47,32,67,83,83,32,99,111,108,111,114,32,115,116,114,105,110,103,32,40,111,118,101,114,114,105,100,101,115,32,118,97,114,105,97,110,116,41,92,110,32,32,99,111,108,111,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,105,99,111,110,67,108,101,97,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,120,39,41,44,92,110,32,32,105,99,111,110,69,109,112,116,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,116,97,114,39,41,44,92,110,32,32,105,99,111,110,70,117,108,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,116,97,114,45,102,105,108,108,39,41,44,92,110,32,32,105,99,111,110,72,97,108,102,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,116,97,114,45,104,97,108,102,39,41,44,92,110,32,32,105,110,108,105,110,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,76,111,99,97,108,101,32,102,111,114,32,116,104,101,32,102,111,114,109,97,116,116,101,100,32,118,97,108,117,101,32,40,105,102,32,115,104,111,119,110,41,92,110,32,32,47,47,32,68,101,102,97,117,108,116,115,32,116,111,32,116,104,101,32,98,114,111,119,115,101,114,32,108,111,99,97,108,101,46,32,70,97,108,108,115,32,98,97,99,107,32,116,111,32,96,101,110,96,92,110,32,32,108,111,99,97,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,41,44,92,110,32,32,110,111,66,111,114,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,112,114,101,99,105,115,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,44,92,110,32,32,114,101,97,100,111,110,108,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,104,111,119,67,108,101,97,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,104,111,119,86,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,104,111,119,86,97,108,117,101,77,97,120,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,116,97,114,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,68,69,70,65,85,76,84,95,83,84,65,82,83,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,116,111,73,110,116,101,103,101,114,41,40,118,97,108,117,101,41,32,62,61,32,77,73,78,95,83,84,65,82,83,59,92,110,32,32,125,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,70,79,82,77,95,82,65,84,73,78,71,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,82,97,116,105,110,103,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,70,79,82,77,95,82,65,84,73,78,71,44,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,73,99,111,110,83,116,97,114,58,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,66,73,99,111,110,83,116,97,114,44,92,110,32,32,32,32,66,73,99,111,110,83,116,97,114,72,97,108,102,58,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,66,73,99,111,110,83,116,97,114,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,83,116,97,114,70,105,108,108,58,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,66,73,99,111,110,83,116,97,114,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,88,58,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,66,73,99,111,110,88,92,110,32,32,125,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,102,111,114,109,83,105,122,101,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,116,111,70,108,111,97,116,41,40,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,44,32,110,117,108,108,41,59,92,110,32,32,32,32,118,97,114,32,115,116,97,114,115,32,61,32,99,111,109,112,117,116,101,83,116,97,114,115,40,116,104,105,115,46,115,116,97,114,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,86,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,115,78,117,108,108,41,40,118,97,108,117,101,41,32,63,32,110,117,108,108,32,58,32,99,108,97,109,112,86,97,108,117,101,40,118,97,108,117,101,44,32,48,44,32,115,116,97,114,115,41,44,92,110,32,32,32,32,32,32,104,97,115,70,111,99,117,115,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,116,97,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,116,97,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,117,116,101,83,116,97,114,115,40,116,104,105,115,46,115,116,97,114,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,82,97,116,105,110,103,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,82,97,116,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,116,111,70,108,111,97,116,41,40,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,44,32,48,41,59,92,110,32,32,32,32,32,32,118,97,114,32,112,114,101,99,105,115,105,111,110,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,112,114,101,99,105,115,105,111,110,44,32,51,41,59,32,47,47,32,87,101,32,99,108,97,109,112,32,116,104,101,32,118,97,108,117,101,32,98,101,116,119,101,101,110,32,96,48,96,32,97,110,100,32,115,116,97,114,115,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,97,109,112,86,97,108,117,101,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,116,111,70,108,111,97,116,41,40,118,97,108,117,101,46,116,111,70,105,120,101,100,40,112,114,101,99,105,115,105,111,110,41,41,44,32,48,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,114,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,76,111,99,97,108,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,76,111,99,97,108,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,111,99,97,108,101,115,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,99,111,110,99,97,116,41,40,116,104,105,115,46,108,111,99,97,108,101,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,32,32,32,32,32,32,118,97,114,32,110,102,32,61,32,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,108,111,99,97,108,101,115,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,102,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,40,41,46,108,111,99,97,108,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,73,110,116,101,114,97,99,116,105,118,101,58,32,102,117,110,99,116,105,111,110,32,105,115,73,110,116,101,114,97,99,116,105,118,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,100,105,115,97,98,108,101,100,32,38,38,32,33,116,104,105,115,46,114,101,97,100,111,110,108,121,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,82,84,76,58,32,102,117,110,99,116,105,111,110,32,105,115,82,84,76,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,108,111,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,105,115,76,111,99,97,108,101,82,84,76,41,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,114,109,97,116,116,101,100,82,97,116,105,110,103,58,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,116,101,100,82,97,116,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,114,101,99,105,115,105,111,110,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,112,114,101,99,105,115,105,111,110,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,104,111,119,86,97,108,117,101,77,97,120,32,61,32,116,104,105,115,46,115,104,111,119,86,97,108,117,101,77,97,120,59,92,110,32,32,32,32,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,59,92,110,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,79,112,116,105,111,110,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,110,111,116,97,116,105,111,110,58,32,39,115,116,97,110,100,97,114,100,39,44,92,110,32,32,32,32,32,32,32,32,109,105,110,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,32,105,115,78,97,78,40,112,114,101,99,105,115,105,111,110,41,32,63,32,48,32,58,32,112,114,101,99,105,115,105,111,110,44,92,110,32,32,32,32,32,32,32,32,109,97,120,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,32,105,115,78,97,78,40,112,114,101,99,105,115,105,111,110,41,32,63,32,51,32,58,32,112,114,101,99,105,115,105,111,110,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,114,115,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,114,115,46,116,111,76,111,99,97,108,101,83,116,114,105,110,103,40,108,111,99,97,108,101,41,59,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,59,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,115,78,117,108,108,41,40,118,97,108,117,101,41,32,63,32,115,104,111,119,86,97,108,117,101,77,97,120,32,63,32,39,45,39,32,58,32,39,39,32,58,32,118,97,108,117,101,46,116,111,76,111,99,97,108,101,83,116,114,105,110,103,40,108,111,99,97,108,101,44,32,102,111,114,109,97,116,79,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,104,111,119,86,97,108,117,101,77,97,120,32,63,32,92,34,92,34,46,99,111,110,99,97,116,40,118,97,108,117,101,44,32,92,34,47,92,34,41,46,99,111,110,99,97,116,40,115,116,97,114,115,41,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,116,111,70,108,111,97,116,41,40,110,101,119,86,97,108,117,101,44,32,110,117,108,108,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,115,78,117,108,108,41,40,118,97,108,117,101,41,32,63,32,110,117,108,108,32,58,32,99,108,97,109,112,86,97,108,117,101,40,118,97,108,117,101,44,32,48,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,114,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,108,111,99,97,108,86,97,108,117,101,92,34,44,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,86,97,108,117,101,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,32,38,38,32,110,101,119,86,97,108,117,101,32,33,61,61,32,40,116,104,105,115,46,118,97,108,117,101,32,124,124,32,48,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,110,101,119,86,97,108,117,101,32,124,124,32,110,117,108,108,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,100,105,115,97,98,108,101,100,92,34,44,32,102,117,110,99,116,105,111,110,32,100,105,115,97,98,108,101,100,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,104,97,115,70,111,99,117,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,98,108,117,114,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,45,45,45,32,80,117,98,108,105,99,32,109,101,116,104,111,100,115,32,45,45,45,92,110,32,32,32,32,102,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,104,105,115,46,36,101,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,108,117,114,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,97,116,116,101,109,112,116,66,108,117,114,41,40,116,104,105,115,46,36,101,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,45,45,45,32,80,114,105,118,97,116,101,32,109,101,116,104,111,100,115,32,45,45,45,92,110,32,32,32,32,111,110,75,101,121,100,111,119,110,58,32,102,117,110,99,116,105,111,110,32,111,110,75,101,121,100,111,119,110,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,73,110,116,101,114,97,99,116,105,118,101,32,38,38,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,91,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,67,79,68,69,95,76,69,70,84,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,67,79,68,69,95,68,79,87,78,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,67,79,68,69,95,82,73,71,72,84,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,67,79,68,69,95,85,80,93,44,32,107,101,121,67,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,44,32,48,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,105,110,32,61,32,116,104,105,115,46,115,104,111,119,67,108,101,97,114,32,63,32,48,32,58,32,49,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,116,97,114,115,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,114,115,59,32,47,47,32,73,110,32,82,84,76,32,109,111,100,101,44,32,76,69,70,84,47,82,73,71,72,84,32,97,114,101,32,115,119,97,112,112,101,100,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,109,111,117,110,116,82,116,108,32,61,32,116,104,105,115,46,105,115,82,84,76,32,63,32,45,49,32,58,32,49,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,67,79,68,69,95,76,69,70,84,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,99,108,97,109,112,86,97,108,117,101,40,118,97,108,117,101,32,45,32,97,109,111,117,110,116,82,116,108,44,32,109,105,110,44,32,115,116,97,114,115,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,67,79,68,69,95,82,73,71,72,84,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,99,108,97,109,112,86,97,108,117,101,40,118,97,108,117,101,32,43,32,97,109,111,117,110,116,82,116,108,44,32,109,105,110,44,32,115,116,97,114,115,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,67,79,68,69,95,68,79,87,78,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,99,108,97,109,112,86,97,108,117,101,40,118,97,108,117,101,32,45,32,49,44,32,109,105,110,44,32,115,116,97,114,115,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,67,79,68,69,95,85,80,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,99,108,97,109,112,86,97,108,117,101,40,118,97,108,117,101,32,43,32,49,44,32,109,105,110,44,32,115,116,97,114,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,83,101,108,101,99,116,101,100,58,32,102,117,110,99,116,105,111,110,32,111,110,83,101,108,101,99,116,101,100,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,73,110,116,101,114,97,99,116,105,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,70,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,111,110,70,111,99,117,115,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,104,97,115,70,111,99,117,115,32,61,32,33,116,104,105,115,46,105,115,73,110,116,101,114,97,99,116,105,118,101,32,63,32,102,97,108,115,101,32,58,32,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,39,102,111,99,117,115,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,45,45,45,32,82,101,110,100,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,32,32,32,32,114,101,110,100,101,114,73,99,111,110,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,73,99,111,110,40,105,99,111,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,95,105,99,111,110,115,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,66,73,99,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,99,111,110,58,32,105,99,111,110,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,116,104,105,115,46,99,111,108,111,114,32,63,32,110,117,108,108,32,58,32,116,104,105,115,46,118,97,114,105,97,110,116,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,99,111,110,69,109,112,116,121,70,110,58,32,102,117,110,99,116,105,111,110,32,105,99,111,110,69,109,112,116,121,70,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,101,110,100,101,114,73,99,111,110,40,116,104,105,115,46,105,99,111,110,69,109,112,116,121,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,99,111,110,72,97,108,102,70,110,58,32,102,117,110,99,116,105,111,110,32,105,99,111,110,72,97,108,102,70,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,101,110,100,101,114,73,99,111,110,40,116,104,105,115,46,105,99,111,110,72,97,108,102,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,99,111,110,70,117,108,108,70,110,58,32,102,117,110,99,116,105,111,110,32,105,99,111,110,70,117,108,108,70,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,101,110,100,101,114,73,99,111,110,40,116,104,105,115,46,105,99,111,110,70,117,108,108,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,99,111,110,67,108,101,97,114,70,110,58,32,102,117,110,99,116,105,111,110,32,105,99,111,110,67,108,101,97,114,70,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,95,105,99,111,110,115,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,66,73,99,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,99,111,110,58,32,116,104,105,115,46,105,99,111,110,67,108,101,97,114,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,101,97,100,111,110,108,121,32,61,32,116,104,105,115,46,114,101,97,100,111,110,108,121,44,92,110,32,32,32,32,32,32,32,32,110,97,109,101,32,61,32,116,104,105,115,46,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,102,111,114,109,32,61,32,116,104,105,115,46,102,111,114,109,44,92,110,32,32,32,32,32,32,32,32,105,110,108,105,110,101,32,61,32,116,104,105,115,46,105,110,108,105,110,101,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,99,111,108,111,114,32,61,32,116,104,105,115,46,99,111,108,111,114,44,92,110,32,32,32,32,32,32,32,32,110,111,66,111,114,100,101,114,32,61,32,116,104,105,115,46,110,111,66,111,114,100,101,114,44,92,110,32,32,32,32,32,32,32,32,104,97,115,70,111,99,117,115,32,61,32,116,104,105,115,46,104,97,115,70,111,99,117,115,44,92,110,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,82,97,116,105,110,103,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,82,97,116,105,110,103,44,92,110,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,83,116,97,114,115,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,114,115,44,92,110,32,32,32,32,32,32,32,32,102,111,114,109,97,116,116,101,100,82,97,116,105,110,103,32,61,32,116,104,105,115,46,102,111,114,109,97,116,116,101,100,82,97,116,105,110,103,44,92,110,32,32,32,32,32,32,32,32,115,104,111,119,67,108,101,97,114,32,61,32,116,104,105,115,46,115,104,111,119,67,108,101,97,114,44,92,110,32,32,32,32,32,32,32,32,105,115,82,84,76,32,61,32,116,104,105,115,46,105,115,82,84,76,44,92,110,32,32,32,32,32,32,32,32,105,115,73,110,116,101,114,97,99,116,105,118,101,32,61,32,116,104,105,115,46,105,115,73,110,116,101,114,97,99,116,105,118,101,44,92,110,32,32,32,32,32,32,32,32,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,59,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,91,93,59,92,110,92,110,32,32,32,32,105,102,32,40,115,104,111,119,67,108,101,97,114,32,38,38,32,33,100,105,115,97,98,108,101,100,32,38,38,32,33,114,101,97,100,111,110,108,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,105,99,111,110,32,61,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,114,97,116,105,110,103,45,105,99,111,110,39,92,110,32,32,32,32,32,32,125,44,32,91,40,36,115,99,111,112,101,100,83,108,111,116,115,91,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,67,76,69,65,82,93,32,124,124,32,116,104,105,115,46,105,99,111,110,67,108,101,97,114,70,110,41,40,41,93,41,59,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,46,112,117,115,104,40,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,114,97,116,105,110,103,45,115,116,97,114,32,98,45,114,97,116,105,110,103,45,115,116,97,114,45,99,108,101,97,114,32,102,108,101,120,45,103,114,111,119,45,49,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,111,99,117,115,101,100,58,32,104,97,115,70,111,99,117,115,32,38,38,32,99,111,109,112,117,116,101,100,82,97,116,105,110,103,32,61,61,61,32,48,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,105,115,73,110,116,101,114,97,99,116,105,118,101,32,63,32,39,45,49,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,46,111,110,83,101,108,101,99,116,101,100,40,110,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,108,101,97,114,39,92,110,32,32,32,32,32,32,125,44,32,91,36,105,99,111,110,93,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,110,100,101,120,32,61,32,48,59,32,105,110,100,101,120,32,60,32,99,111,109,112,117,116,101,100,83,116,97,114,115,59,32,105,110,100,101,120,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,105,110,100,101,120,32,43,32,49,59,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,46,112,117,115,104,40,104,40,66,86,70,111,114,109,82,97,116,105,110,103,83,116,97,114,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,102,108,101,120,45,103,114,111,119,45,49,39,44,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,99,111,108,111,114,32,38,38,32,33,100,105,115,97,98,108,101,100,32,63,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,58,32,99,111,108,111,114,92,110,32,32,32,32,32,32,32,32,125,32,58,32,123,125,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,97,116,105,110,103,58,32,99,111,109,112,117,116,101,100,82,97,116,105,110,103,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,100,105,115,97,98,108,101,100,32,63,32,110,117,108,108,32,58,32,118,97,114,105,97,110,116,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,97,100,111,110,108,121,58,32,114,101,97,100,111,110,108,121,44,92,110,32,32,32,32,32,32,32,32,32,32,102,111,99,117,115,101,100,58,32,104,97,115,70,111,99,117,115,44,92,110,32,32,32,32,32,32,32,32,32,32,104,97,115,67,108,101,97,114,58,32,115,104,111,119,67,108,101,97,114,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,58,32,116,104,105,115,46,111,110,83,101,108,101,99,116,101,100,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,109,112,116,121,58,32,36,115,99,111,112,101,100,83,108,111,116,115,91,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,69,77,80,84,89,93,32,124,124,32,116,104,105,115,46,105,99,111,110,69,109,112,116,121,70,110,44,92,110,32,32,32,32,32,32,32,32,32,32,104,97,108,102,58,32,36,115,99,111,112,101,100,83,108,111,116,115,91,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,72,65,76,70,93,32,124,124,32,116,104,105,115,46,105,99,111,110,72,97,108,102,70,110,44,92,110,32,32,32,32,32,32,32,32,32,32,102,117,108,108,58,32,36,115,99,111,112,101,100,83,108,111,116,115,91,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,70,85,76,76,93,32,124,124,32,116,104,105,115,46,105,99,111,110,70,117,108,108,70,110,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,105,110,100,101,120,92,110,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,46,112,117,115,104,40,104,40,39,105,110,112,117,116,39,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,58,32,39,104,105,100,100,101,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,115,78,117,108,108,41,40,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,41,32,63,32,39,39,32,58,32,99,111,109,112,117,116,101,100,82,97,116,105,110,103,44,92,110,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,109,58,32,102,111,114,109,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,105,100,100,101,110,39,92,110,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,115,104,111,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,46,112,117,115,104,40,104,40,39,98,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,114,97,116,105,110,103,45,118,97,108,117,101,32,102,108,101,120,45,103,114,111,119,45,49,39,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,118,97,108,117,101,39,92,110,32,32,32,32,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,116,111,83,116,114,105,110,103,41,40,102,111,114,109,97,116,116,101,100,82,97,116,105,110,103,41,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,111,117,116,112,117,116,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,114,97,116,105,110,103,32,102,111,114,109,45,99,111,110,116,114,111,108,32,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,39,100,45,105,110,108,105,110,101,45,102,108,101,120,39,58,32,105,110,108,105,110,101,44,92,110,32,32,32,32,32,32,32,32,39,100,45,102,108,101,120,39,58,32,33,105,110,108,105,110,101,44,92,110,32,32,32,32,32,32,32,32,39,98,111,114,100,101,114,45,48,39,58,32,110,111,66,111,114,100,101,114,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,101,97,100,111,110,108,121,58,32,33,100,105,115,97,98,108,101,100,32,38,38,32,114,101,97,100,111,110,108,121,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,115,105,122,101,70,111,114,109,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,100,105,114,58,32,105,115,82,84,76,32,63,32,39,114,116,108,39,32,58,32,39,108,116,114,39,44,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,100,105,115,97,98,108,101,100,32,63,32,110,117,108,108,32,58,32,39,48,39,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,115,108,105,100,101,114,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,105,115,97,98,108,101,100,39,58,32,100,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,101,97,100,111,110,108,121,39,58,32,33,100,105,115,97,98,108,101,100,32,38,38,32,114,101,97,100,111,110,108,121,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,39,111,102,102,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,118,97,108,117,101,109,105,110,39,58,32,115,104,111,119,67,108,101,97,114,32,63,32,39,48,39,32,58,32,39,49,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,118,97,108,117,101,109,97,120,39,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,116,111,83,116,114,105,110,103,41,40,99,111,109,112,117,116,101,100,83,116,97,114,115,41,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,118,97,108,117,101,110,111,119,39,58,32,99,111,109,112,117,116,101,100,82,97,116,105,110,103,32,63,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,116,111,83,116,114,105,110,103,41,40,99,111,109,112,117,116,101,100,82,97,116,105,110,103,41,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,111,110,75,101,121,100,111,119,110,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,58,32,116,104,105,115,46,111,110,70,111,99,117,115,44,92,110,32,32,32,32,32,32,32,32,98,108,117,114,58,32,116,104,105,115,46,111,110,70,111,99,117,115,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,36,99,111,110,116,101,110,116,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,116,105,110,103,47,102,111,114,109,45,114,97,116,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,116,105,110,103,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,116,105,110,103,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,82,97,116,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,114,97,116,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,82,97,116,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,82,97,116,105,110,103,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,111,114,109,82,97,116,105,110,103,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,114,97,116,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,114,97,116,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,116,105,110,103,47,102,111,114,109,45,114,97,116,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,70,111,114,109,82,97,116,105,110,103,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,70,111,114,109,82,97,116,105,110,103,58,32,95,102,111,114,109,95,114,97,116,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,82,97,116,105,110,103,44,92,110,32,32,32,32,66,82,97,116,105,110,103,58,32,95,102,111,114,109,95,114,97,116,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,82,97,116,105,110,103,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,116,105,110,103,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,45,103,114,111,117,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,45,103,114,111,117,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,111,112,116,105,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,111,112,116,105,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,111,112,116,105,111,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,111,112,116,105,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,108,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,117,110,100,101,102,105,110,101,100,44,32,116,114,117,101,41,32,47,47,32,82,101,113,117,105,114,101,100,92,110,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,70,79,82,77,95,83,69,76,69,67,84,95,79,80,84,73,79,78,95,71,82,79,85,80,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,70,79,82,77,95,83,69,76,69,67,84,95,79,80,84,73,79,78,95,71,82,79,85,80,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,111,112,116,105,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,102,111,114,109,79,112,116,105,111,110,115,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,108,97,98,101,108,32,61,32,116,104,105,115,46,108,97,98,101,108,59,92,110,32,32,32,32,118,97,114,32,36,111,112,116,105,111,110,115,32,61,32,116,104,105,115,46,102,111,114,109,79,112,116,105,111,110,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,111,112,116,105,111,110,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,111,112,116,105,111,110,46,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,101,120,116,32,61,32,111,112,116,105,111,110,46,116,101,120,116,44,92,110,32,32,32,32,32,32,32,32,32,32,104,116,109,108,32,61,32,111,112,116,105,111,110,46,104,116,109,108,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,111,112,116,105,111,110,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,104,116,109,108,44,32,116,101,120,116,41,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,111,112,116,105,111,110,95,92,34,46,99,111,110,99,97,116,40,105,110,100,101,120,41,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,111,112,116,103,114,111,117,112,39,44,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,108,97,98,101,108,58,32,108,97,98,101,108,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,83,76,79,84,95,78,65,77,69,95,70,73,82,83,84,41,44,32,36,111,112,116,105,111,110,115,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,45,103,114,111,117,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,118,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,78,89,44,32,117,110,100,101,102,105,110,101,100,44,32,116,114,117,101,41,32,47,47,32,82,101,113,117,105,114,101,100,92,110,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,70,79,82,77,95,83,69,76,69,67,84,95,79,80,84,73,79,78,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,70,79,82,77,95,83,69,76,69,67,84,95,79,80,84,73,79,78,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,112,114,111,112,115,46,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,112,114,111,112,115,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,111,112,116,105,111,110,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,118,97,108,117,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,83,101,108,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,83,101,108,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,117,115,116,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,99,117,115,116,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,117,115,116,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,111,112,116,105,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,111,112,116,105,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,111,112,116,105,111,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,117,115,116,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,114,105,97,73,110,118,97,108,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,44,92,110,32,32,109,117,108,116,105,112,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,66,114,111,119,115,101,114,115,32,100,101,102,97,117,108,116,32,115,105,122,101,32,116,111,32,96,48,96,44,32,119,104,105,99,104,32,115,104,111,119,115,32,52,32,114,111,119,115,32,105,110,32,109,111,115,116,32,98,114,111,119,115,101,114,115,32,105,110,32,109,117,108,116,105,112,108,101,32,109,111,100,101,92,110,32,32,47,47,32,83,105,122,101,32,111,102,32,96,49,96,32,99,97,110,32,98,111,114,107,32,111,117,116,32,70,105,114,101,102,111,120,92,110,32,32,115,101,108,101,99,116,83,105,122,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,44,32,48,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,70,79,82,77,95,83,69,76,69,67,84,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,83,101,108,101,99,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,70,79,82,77,95,83,69,76,69,67,84,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,111,100,101,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,102,111,114,109,67,111,110,116,114,111,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,111,114,109,83,105,122,101,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,102,111,114,109,83,116,97,116,101,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,117,115,116,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,102,111,114,109,67,117,115,116,111,109,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,111,112,116,105,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,112,116,105,111,110,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,86,97,108,117,101,58,32,116,104,105,115,91,95,109,105,120,105,110,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,101,108,101,99,116,83,105,122,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,101,108,101,99,116,83,105,122,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,117,115,116,111,109,32,115,101,108,101,99,116,115,32,119,105,116,104,32,97,32,115,105,122,101,32,111,102,32,122,101,114,111,32,99,97,117,115,101,115,32,116,104,101,32,97,114,114,111,119,115,32,116,111,32,98,101,32,104,105,100,100,101,110,44,92,110,32,32,32,32,32,32,47,47,32,115,111,32,100,111,110,116,32,114,101,110,100,101,114,32,116,104,101,32,115,105,122,101,32,97,116,116,114,105,98,117,116,101,32,105,110,32,116,104,105,115,32,99,97,115,101,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,112,108,97,105,110,32,38,38,32,116,104,105,115,46,115,101,108,101,99,116,83,105,122,101,32,61,61,61,32,48,32,63,32,110,117,108,108,32,58,32,116,104,105,115,46,115,101,108,101,99,116,83,105,122,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,110,112,117,116,67,108,97,115,115,58,32,102,117,110,99,116,105,111,110,32,105,110,112,117,116,67,108,97,115,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,104,105,115,46,112,108,97,105,110,32,63,32,39,102,111,114,109,45,99,111,110,116,114,111,108,39,32,58,32,39,99,117,115,116,111,109,45,115,101,108,101,99,116,39,44,32,116,104,105,115,46,115,105,122,101,32,38,38,32,116,104,105,115,46,112,108,97,105,110,32,63,32,92,34,102,111,114,109,45,99,111,110,116,114,111,108,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,105,122,101,41,32,58,32,110,117,108,108,44,32,116,104,105,115,46,115,105,122,101,32,38,38,32,33,116,104,105,115,46,112,108,97,105,110,32,63,32,92,34,99,117,115,116,111,109,45,115,101,108,101,99,116,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,105,122,101,41,32,58,32,110,117,108,108,44,32,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,93,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,110,101,119,86,97,108,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,111,99,97,108,86,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,86,97,108,117,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,109,105,120,105,110,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,102,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,108,117,114,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,97,116,116,101,109,112,116,66,108,117,114,41,40,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,104,97,110,103,101,58,32,102,117,110,99,116,105,111,110,32,111,110,67,104,97,110,103,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,59,92,110,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,101,100,86,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,102,114,111,109,41,40,116,97,114,103,101,116,46,111,112,116,105,111,110,115,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,111,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,46,115,101,108,101,99,116,101,100,59,92,110,32,32,32,32,32,32,125,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,111,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,95,118,97,108,117,101,39,32,105,110,32,111,32,63,32,111,46,95,118,97,108,117,101,32,58,32,111,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,116,97,114,103,101,116,46,109,117,108,116,105,112,108,101,32,63,32,115,101,108,101,99,116,101,100,86,97,108,117,101,32,58,32,115,101,108,101,99,116,101,100,86,97,108,117,101,91,48,93,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,44,32,95,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,116,104,105,115,46,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,32,61,32,116,104,105,115,46,114,101,113,117,105,114,101,100,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,101,108,101,99,116,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,59,92,110,32,32,32,32,118,97,114,32,36,111,112,116,105,111,110,115,32,61,32,116,104,105,115,46,102,111,114,109,79,112,116,105,111,110,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,111,112,116,105,111,110,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,111,112,116,105,111,110,46,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,32,61,32,111,112,116,105,111,110,46,108,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,111,112,116,105,111,110,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,92,34,111,112,116,105,111,110,95,92,34,46,99,111,110,99,97,116,40,105,110,100,101,120,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,105,115,65,114,114,97,121,41,40,111,112,116,105,111,110,115,41,32,63,32,104,40,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,58,32,108,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,58,32,111,112,116,105,111,110,115,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,107,101,121,92,110,32,32,32,32,32,32,125,41,32,58,32,104,40,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,111,112,116,105,111,110,46,104,116,109,108,44,32,111,112,116,105,111,110,46,116,101,120,116,41,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,107,101,121,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,115,101,108,101,99,116,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,105,110,112,117,116,67,108,97,115,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,102,111,114,109,58,32,116,104,105,115,46,102,111,114,109,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,109,117,108,116,105,112,108,101,58,32,116,104,105,115,46,109,117,108,116,105,112,108,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,58,32,115,105,122,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,58,32,114,101,113,117,105,114,101,100,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,101,113,117,105,114,101,100,39,58,32,114,101,113,117,105,114,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,105,110,118,97,108,105,100,39,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,114,105,97,73,110,118,97,108,105,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,99,104,97,110,103,101,58,32,116,104,105,115,46,111,110,67,104,97,110,103,101,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,39,109,111,100,101,108,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,118,97,108,117,101,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,105,110,112,117,116,39,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,83,76,79,84,95,78,65,77,69,95,70,73,82,83,84,41,44,32,36,111,112,116,105,111,110,115,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,111,112,116,105,111,110,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,111,112,116,105,111,110,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,111,112,116,105,111,110,115,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,111,112,116,105,111,110,115,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,103,101,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,111,112,116,105,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,111,112,116,105,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,111,112,116,105,111,110,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,111,112,116,105,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,108,97,98,101,108,70,105,101,108,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,108,97,98,101,108,39,41,44,92,110,32,32,111,112,116,105,111,110,115,70,105,101,108,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,111,112,116,105,111,110,115,39,41,92,110,125,41,41,44,32,39,102,111,114,109,79,112,116,105,111,110,115,39,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,111,112,116,105,111,110,115,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,102,111,114,109,95,111,112,116,105,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,102,111,114,109,79,112,116,105,111,110,115,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,58,32,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,40,111,112,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,47,47,32,87,104,101,110,32,116,104,101,32,111,112,116,105,111,110,32,105,115,32,97,110,32,111,98,106,101,99,116,44,32,110,111,114,109,97,108,105,122,101,32,105,116,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,111,112,116,105,111,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,103,101,116,41,40,111,112,116,105,111,110,44,32,116,104,105,115,46,118,97,108,117,101,70,105,101,108,100,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,101,120,116,32,61,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,103,101,116,41,40,111,112,116,105,111,110,44,32,116,104,105,115,46,116,101,120,116,70,105,101,108,100,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,103,101,116,41,40,111,112,116,105,111,110,44,32,116,104,105,115,46,111,112,116,105,111,110,115,70,105,101,108,100,44,32,110,117,108,108,41,59,32,47,47,32,87,104,101,110,32,105,116,32,104,97,115,32,111,112,116,105,111,110,115,44,32,99,114,101,97,116,101,32,97,110,32,96,60,111,112,116,103,114,111,117,112,62,96,32,111,98,106,101,99,116,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,78,117,108,108,41,40,111,112,116,105,111,110,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,58,32,83,116,114,105,110,103,40,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,103,101,116,41,40,111,112,116,105,111,110,44,32,116,104,105,115,46,108,97,98,101,108,70,105,101,108,100,41,32,124,124,32,116,101,120,116,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,58,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,115,40,111,112,116,105,111,110,115,41,92,110,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,79,116,104,101,114,119,105,115,101,32,99,114,101,97,116,101,32,97,110,32,96,60,111,112,116,105,111,110,62,96,32,111,98,106,101,99,116,92,110,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,118,97,108,117,101,41,32,63,32,107,101,121,32,124,124,32,116,101,120,116,32,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,83,116,114,105,110,103,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,116,101,120,116,41,32,63,32,107,101,121,32,58,32,116,101,120,116,41,44,92,110,32,32,32,32,32,32,32,32,32,32,104,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,103,101,116,41,40,111,112,116,105,111,110,44,32,116,104,105,115,46,104,116,109,108,70,105,101,108,100,41,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,66,111,111,108,101,97,110,40,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,103,101,116,41,40,111,112,116,105,111,110,44,32,116,104,105,115,46,100,105,115,97,98,108,101,100,70,105,101,108,100,41,41,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,32,47,47,32,79,116,104,101,114,119,105,115,101,32,99,114,101,97,116,101,32,97,110,32,96,60,111,112,116,105,111,110,62,96,32,111,98,106,101,99,116,32,102,114,111,109,32,116,104,101,32,103,105,118,101,110,32,118,97,108,117,101,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,107,101,121,32,124,124,32,111,112,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,83,116,114,105,110,103,40,111,112,116,105,111,110,41,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,111,112,116,105,111,110,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,83,101,108,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,83,101,108,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,83,101,108,101,99,116,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,111,114,109,83,101,108,101,99,116,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,115,101,108,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,70,111,114,109,83,101,108,101,99,116,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,70,111,114,109,83,101,108,101,99,116,58,32,95,102,111,114,109,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,83,101,108,101,99,116,44,92,110,32,32,32,32,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,58,32,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,44,92,110,32,32,32,32,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,58,32,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,44,92,110,32,32,32,32,66,83,101,108,101,99,116,58,32,95,102,111,114,109,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,83,101,108,101,99,116,44,92,110,32,32,32,32,66,83,101,108,101,99,116,79,112,116,105,111,110,58,32,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,44,92,110,32,32,32,32,66,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,58,32,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,83,112,105,110,98,117,116,116,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,83,112,105,110,98,117,116,116,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,99,97,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,99,97,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,105,99,111,110,115,47,105,99,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,97,108,117,101,39,44,32,123,92,110,32,32,47,47,32,83,104,111,117,108,100,32,116,104,105,115,32,114,101,97,108,108,121,32,98,101,32,83,116,114,105,110,103,44,32,116,111,32,109,97,116,99,104,32,110,97,116,105,118,101,32,110,117,109,98,101,114,32,105,110,112,117,116,115,63,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,78,85,77,66,69,82,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,32,47,47,32,68,101,102,97,117,108,116,32,102,111,114,32,115,112,105,110,32,98,117,116,116,111,110,32,114,97,110,103,101,32,97,110,100,32,115,116,101,112,92,110,92,110,92,110,118,97,114,32,68,69,70,65,85,76,84,95,77,73,78,32,61,32,49,59,92,110,118,97,114,32,68,69,70,65,85,76,84,95,77,65,88,32,61,32,49,48,48,59,92,110,118,97,114,32,68,69,70,65,85,76,84,95,83,84,69,80,32,61,32,49,59,32,47,47,32,68,101,108,97,121,32,98,101,102,111,114,101,32,97,117,116,111,45,114,101,112,101,97,116,32,105,110,32,109,115,92,110,92,110,118,97,114,32,68,69,70,65,85,76,84,95,82,69,80,69,65,84,95,68,69,76,65,89,32,61,32,53,48,48,59,32,47,47,32,82,101,112,101,97,116,32,105,110,116,101,114,118,97,108,32,105,110,32,109,115,92,110,92,110,118,97,114,32,68,69,70,65,85,76,84,95,82,69,80,69,65,84,95,73,78,84,69,82,86,65,76,32,61,32,49,48,48,59,32,47,47,32,82,101,112,101,97,116,32,114,97,116,101,32,105,110,99,114,101,97,115,101,100,32,97,102,116,101,114,32,110,117,109,98,101,114,32,111,102,32,114,101,112,101,97,116,115,92,110,92,110,118,97,114,32,68,69,70,65,85,76,84,95,82,69,80,69,65,84,95,84,72,82,69,83,72,79,76,68,32,61,32,49,48,59,32,47,47,32,82,101,112,101,97,116,32,115,112,101,101,100,32,109,117,108,116,105,112,108,105,101,114,32,40,115,116,101,112,32,109,117,108,116,105,112,108,105,101,114,44,32,109,117,115,116,32,98,101,32,97,110,32,105,110,116,101,103,101,114,41,92,110,92,110,118,97,114,32,68,69,70,65,85,76,84,95,82,69,80,69,65,84,95,77,85,76,84,73,80,76,73,69,82,32,61,32,52,59,92,110,118,97,114,32,75,69,89,95,67,79,68,69,83,32,61,32,91,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,85,80,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,68,79,87,78,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,72,79,77,69,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,69,78,68,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,80,65,71,69,85,80,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,80,65,71,69,68,79,87,78,93,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,111,109,105,116,41,40,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,114,111,112,115,44,32,91,39,114,101,113,117,105,114,101,100,39,44,32,39,97,117,116,111,102,111,99,117,115,39,93,41,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,114,105,97,67,111,110,116,114,111,108,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,97,114,105,97,76,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,102,111,114,109,97,116,116,101,114,70,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,41,44,92,110,32,32,105,110,108,105,110,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,108,97,98,101,108,68,101,99,114,101,109,101,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,68,101,99,114,101,109,101,110,116,39,41,44,92,110,32,32,108,97,98,101,108,73,110,99,114,101,109,101,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,73,110,99,114,101,109,101,110,116,39,41,44,92,110,32,32,108,111,99,97,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,41,44,92,110,32,32,109,97,120,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,68,69,70,65,85,76,84,95,77,65,88,41,44,92,110,32,32,109,105,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,68,69,70,65,85,76,84,95,77,73,78,41,44,92,110,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,114,101,97,100,111,110,108,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,101,112,101,97,116,68,101,108,97,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,68,69,70,65,85,76,84,95,82,69,80,69,65,84,95,68,69,76,65,89,41,44,92,110,32,32,114,101,112,101,97,116,73,110,116,101,114,118,97,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,68,69,70,65,85,76,84,95,82,69,80,69,65,84,95,73,78,84,69,82,86,65,76,41,44,92,110,32,32,114,101,112,101,97,116,83,116,101,112,77,117,108,116,105,112,108,105,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,68,69,70,65,85,76,84,95,82,69,80,69,65,84,95,77,85,76,84,73,80,76,73,69,82,41,44,92,110,32,32,114,101,112,101,97,116,84,104,114,101,115,104,111,108,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,68,69,70,65,85,76,84,95,82,69,80,69,65,84,95,84,72,82,69,83,72,79,76,68,41,44,92,110,32,32,115,116,101,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,68,69,70,65,85,76,84,95,83,84,69,80,41,44,92,110,32,32,118,101,114,116,105,99,97,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,119,114,97,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,70,79,82,77,95,83,80,73,78,66,85,84,84,79,78,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,67,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,83,112,105,110,98,117,116,116,111,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,70,79,82,77,95,83,80,73,78,66,85,84,84,79,78,44,92,110,32,32,47,47,32,77,105,120,105,110,32,111,114,100,101,114,32,105,115,32,105,109,112,111,114,116,97,110,116,33,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,102,111,114,109,83,105,122,101,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,102,111,114,109,83,116,97,116,101,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,86,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,116,111,70,108,111,97,116,41,40,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,44,32,110,117,108,108,41,44,92,110,32,32,32,32,32,32,104,97,115,70,111,99,117,115,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,115,112,105,110,73,100,58,32,102,117,110,99,116,105,111,110,32,115,112,105,110,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,73,110,108,105,110,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,73,110,108,105,110,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,108,105,110,101,32,38,38,32,33,116,104,105,115,46,118,101,114,116,105,99,97,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,82,101,97,100,111,110,108,121,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,82,101,97,100,111,110,108,121,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,101,97,100,111,110,108,121,32,38,38,32,33,116,104,105,115,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,82,101,113,117,105,114,101,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,82,101,113,117,105,114,101,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,101,113,117,105,114,101,100,32,38,38,32,33,116,104,105,115,46,99,111,109,112,117,116,101,100,82,101,97,100,111,110,108,121,32,38,38,32,33,116,104,105,115,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,116,101,112,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,116,101,112,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,116,111,70,108,111,97,116,41,40,116,104,105,115,46,115,116,101,112,44,32,68,69,70,65,85,76,84,95,83,84,69,80,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,77,105,110,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,77,105,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,116,111,70,108,111,97,116,41,40,116,104,105,115,46,109,105,110,44,32,68,69,70,65,85,76,84,95,77,73,78,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,77,97,120,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,77,97,120,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,114,111,117,110,100,32,100,111,119,110,32,116,111,32,116,104,101,32,110,101,97,114,101,115,116,32,109,97,120,105,109,117,109,32,115,116,101,112,32,118,97,108,117,101,92,110,32,32,32,32,32,32,118,97,114,32,109,97,120,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,116,111,70,108,111,97,116,41,40,116,104,105,115,46,109,97,120,44,32,68,69,70,65,85,76,84,95,77,65,88,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,116,101,112,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,101,112,59,92,110,32,32,32,32,32,32,118,97,114,32,109,105,110,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,109,97,116,104,70,108,111,111,114,41,40,40,109,97,120,32,45,32,109,105,110,41,32,47,32,115,116,101,112,41,32,42,32,115,116,101,112,32,43,32,109,105,110,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,68,101,108,97,121,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,68,101,108,97,121,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,101,108,97,121,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,114,101,112,101,97,116,68,101,108,97,121,44,32,48,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,108,97,121,32,62,32,48,32,63,32,100,101,108,97,121,32,58,32,68,69,70,65,85,76,84,95,82,69,80,69,65,84,95,68,69,76,65,89,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,73,110,116,101,114,118,97,108,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,73,110,116,101,114,118,97,108,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,116,101,114,118,97,108,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,114,101,112,101,97,116,73,110,116,101,114,118,97,108,44,32,48,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,116,101,114,118,97,108,32,62,32,48,32,63,32,105,110,116,101,114,118,97,108,32,58,32,68,69,70,65,85,76,84,95,82,69,80,69,65,84,95,73,78,84,69,82,86,65,76,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,84,104,114,101,115,104,111,108,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,84,104,114,101,115,104,111,108,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,114,101,112,101,97,116,84,104,114,101,115,104,111,108,100,44,32,68,69,70,65,85,76,84,95,82,69,80,69,65,84,95,84,72,82,69,83,72,79,76,68,41,44,32,49,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,116,101,112,77,117,108,116,105,112,108,105,101,114,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,116,101,112,77,117,108,116,105,112,108,105,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,114,101,112,101,97,116,83,116,101,112,77,117,108,116,105,112,108,105,101,114,44,32,68,69,70,65,85,76,84,95,82,69,80,69,65,84,95,77,85,76,84,73,80,76,73,69,82,41,44,32,49,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,81,117,105,99,107,32,97,110,100,32,100,105,114,116,121,32,119,97,121,32,116,111,32,103,101,116,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,100,101,99,105,109,97,108,115,92,110,32,32,32,32,32,32,118,97,114,32,115,116,101,112,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,101,112,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,109,97,116,104,70,108,111,111,114,41,40,115,116,101,112,41,32,61,61,61,32,115,116,101,112,32,63,32,48,32,58,32,40,115,116,101,112,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,39,46,39,41,91,49,93,32,124,124,32,39,39,41,46,108,101,110,103,116,104,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,77,117,108,116,105,112,108,105,101,114,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,77,117,108,116,105,112,108,105,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,109,97,116,104,80,111,119,41,40,49,48,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,32,124,124,32,48,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,118,97,108,117,101,65,115,70,105,120,101,100,58,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,65,115,70,105,120,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,115,78,117,108,108,41,40,118,97,108,117,101,41,32,63,32,39,39,32,58,32,118,97,108,117,101,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,76,111,99,97,108,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,76,111,99,97,108,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,111,99,97,108,101,115,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,99,111,110,99,97,116,41,40,116,104,105,115,46,108,111,99,97,108,101,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,32,32,32,32,32,32,118,97,114,32,110,102,32,61,32,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,108,111,99,97,108,101,115,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,102,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,40,41,46,108,111,99,97,108,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,82,84,76,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,82,84,76,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,108,111,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,105,115,76,111,99,97,108,101,82,84,76,41,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,101,102,97,117,108,116,70,111,114,109,97,116,116,101,114,58,32,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,70,111,114,109,97,116,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,97,110,100,32,96,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,96,32,102,111,114,109,97,116,116,101,114,32,109,101,116,104,111,100,32,114,101,102,101,114,101,110,99,101,92,110,32,32,32,32,32,32,118,97,114,32,112,114,101,99,105,115,105,111,110,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,59,92,110,32,32,32,32,32,32,118,97,114,32,110,102,32,61,32,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,39,100,101,99,105,109,97,108,39,44,92,110,32,32,32,32,32,32,32,32,117,115,101,71,114,111,117,112,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,109,105,110,105,109,117,109,73,110,116,101,103,101,114,68,105,103,105,116,115,58,32,49,44,92,110,32,32,32,32,32,32,32,32,109,105,110,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,32,112,114,101,99,105,115,105,111,110,44,92,110,32,32,32,32,32,32,32,32,109,97,120,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,32,112,114,101,99,105,115,105,111,110,44,92,110,32,32,32,32,32,32,32,32,110,111,116,97,116,105,111,110,58,32,39,115,116,97,110,100,97,114,100,39,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,102,111,114,109,97,116,32,109,101,116,104,111,100,32,114,101,102,101,114,101,110,99,101,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,102,46,102,111,114,109,97,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,70,111,114,109,97,116,116,101,114,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,70,111,114,109,97,116,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,114,70,110,32,61,32,116,104,105,115,46,102,111,114,109,97,116,116,101,114,70,110,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,104,97,115,80,114,111,112,70,117,110,99,116,105,111,110,41,40,102,111,114,109,97,116,116,101,114,70,110,41,32,63,32,102,111,114,109,97,116,116,101,114,70,110,32,58,32,116,104,105,115,46,100,101,102,97,117,108,116,70,111,114,109,97,116,116,101,114,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,104,105,115,46,98,118,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,103,114,111,117,112,39,44,92,110,32,32,32,32,32,32,32,32,108,97,110,103,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,63,32,110,117,108,108,32,58,32,39,45,49,39,44,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,116,104,105,115,46,97,114,105,97,76,97,98,101,108,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,112,105,110,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,112,105,110,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,112,105,110,73,100,32,61,32,116,104,105,115,46,115,112,105,110,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,82,101,113,117,105,114,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,101,32,61,32,116,104,105,115,46,115,116,97,116,101,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,70,111,114,109,97,116,116,101,114,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,111,114,109,97,116,116,101,114,59,92,110,32,32,32,32,32,32,118,97,114,32,104,97,115,86,97,108,117,101,32,61,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,115,78,117,108,108,41,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,100,105,114,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,82,84,76,32,63,32,39,114,116,108,39,32,58,32,39,108,116,114,39,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,98,118,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,115,112,105,110,73,100,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,115,112,105,110,98,117,116,116,111,110,39,44,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,100,105,115,97,98,108,101,100,32,63,32,110,117,108,108,32,58,32,39,48,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,39,111,102,102,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,116,104,105,115,46,97,114,105,97,76,97,98,101,108,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,111,110,116,114,111,108,115,39,58,32,116,104,105,115,46,97,114,105,97,67,111,110,116,114,111,108,115,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,77,97,121,32,119,97,110,116,32,116,111,32,99,104,101,99,107,32,105,102,32,116,104,101,32,118,97,108,117,101,32,105,115,32,105,110,32,114,97,110,103,101,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,105,110,118,97,108,105,100,39,58,32,115,116,97,116,101,32,61,61,61,32,102,97,108,115,101,32,124,124,32,33,104,97,115,86,97,108,117,101,32,38,38,32,114,101,113,117,105,114,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,101,113,117,105,114,101,100,39,58,32,114,101,113,117,105,114,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,101,115,101,32,97,116,116,114,115,32,97,114,101,32,114,101,113,117,105,114,101,100,32,102,111,114,32,114,111,108,101,32,115,112,105,110,98,117,116,116,111,110,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,118,97,108,117,101,109,105,110,39,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,116,111,83,116,114,105,110,103,41,40,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,41,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,118,97,108,117,101,109,97,120,39,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,116,111,83,116,114,105,110,103,41,40,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,41,44,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,101,115,101,32,115,104,111,117,108,100,32,98,101,32,96,110,117,108,108,96,32,105,102,32,116,104,101,32,118,97,108,117,101,32,105,115,32,111,117,116,32,111,102,32,114,97,110,103,101,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,101,121,32,109,117,115,116,32,97,108,115,111,32,98,101,32,110,111,110,45,101,120,105,115,116,101,110,116,32,97,116,116,114,115,32,105,102,32,116,104,101,32,118,97,108,117,101,32,105,115,32,111,117,116,32,111,102,32,114,97,110,103,101,32,111,114,32,96,110,117,108,108,96,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,118,97,108,117,101,110,111,119,39,58,32,104,97,115,86,97,108,117,101,32,63,32,118,97,108,117,101,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,118,97,108,117,101,116,101,120,116,39,58,32,104,97,115,86,97,108,117,101,32,63,32,99,111,109,112,117,116,101,100,70,111,114,109,97,116,116,101,114,40,118,97,108,117,101,41,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,116,111,70,108,111,97,116,41,40,118,97,108,117,101,44,32,110,117,108,108,41,59,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,108,111,99,97,108,86,97,108,117,101,92,34,44,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,86,97,108,117,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,118,97,108,117,101,41,59,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,100,105,115,97,98,108,101,100,92,34,44,32,102,117,110,99,116,105,111,110,32,100,105,115,97,98,108,101,100,40,95,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,105,102,32,40,95,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,82,101,112,101,97,116,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,114,101,97,100,111,110,108,121,92,34,44,32,102,117,110,99,116,105,111,110,32,114,101,97,100,111,110,108,121,40,95,114,101,97,100,111,110,108,121,41,32,123,92,110,32,32,32,32,105,102,32,40,95,114,101,97,100,111,110,108,121,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,82,101,112,101,97,116,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,67,114,101,97,116,101,32,110,111,110,32,114,101,97,99,116,105,118,101,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,116,104,105,115,46,36,95,97,117,116,111,68,101,108,97,121,84,105,109,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,95,97,117,116,111,82,101,112,101,97,116,84,105,109,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,95,107,101,121,73,115,68,111,119,110,32,61,32,102,97,108,115,101,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,82,101,112,101,97,116,40,41,59,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,100,101,97,99,116,105,118,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,100,101,97,99,116,105,118,97,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,82,101,112,101,97,116,40,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,45,45,45,32,80,117,98,108,105,99,32,109,101,116,104,111,100,115,32,45,45,45,92,110,32,32,32,32,102,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,104,105,115,46,36,114,101,102,115,46,115,112,105,110,110,101,114,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,108,117,114,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,97,116,116,101,109,112,116,66,108,117,114,41,40,116,104,105,115,46,36,114,101,102,115,46,115,112,105,110,110,101,114,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,45,45,45,32,80,114,105,118,97,116,101,32,109,101,116,104,111,100,115,32,45,45,45,92,110,32,32,32,32,101,109,105,116,67,104,97,110,103,101,58,32,102,117,110,99,116,105,111,110,32,101,109,105,116,67,104,97,110,103,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,44,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,116,101,112,86,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,116,101,112,86,97,108,117,101,40,100,105,114,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,101,116,115,32,97,32,110,101,119,32,105,110,99,114,101,109,101,110,116,101,100,32,111,114,32,100,101,99,114,101,109,101,110,116,101,100,32,118,97,108,117,101,44,32,115,117,112,112,111,114,116,105,110,103,32,111,112,116,105,111,110,97,108,32,119,114,97,112,112,105,110,103,92,110,32,32,32,32,32,32,47,47,32,68,105,114,101,99,116,105,111,110,32,105,115,32,101,105,116,104,101,114,32,43,49,32,111,114,32,45,49,32,40,111,114,32,97,32,109,117,108,116,105,112,108,101,32,116,104,101,114,101,111,102,41,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,115,78,117,108,108,41,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,116,101,112,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,101,112,32,42,32,100,105,114,101,99,116,105,111,110,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,105,110,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,97,120,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,117,108,116,105,112,108,105,101,114,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,117,108,116,105,112,108,105,101,114,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,119,114,97,112,32,61,32,116,104,105,115,46,119,114,97,112,59,32,47,47,32,87,101,32,101,110,115,117,114,101,32,116,104,97,116,32,116,104,101,32,118,97,108,117,101,32,115,116,101,112,115,32,108,105,107,101,32,97,32,110,97,116,105,118,101,32,105,110,112,117,116,92,110,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,109,97,116,104,82,111,117,110,100,41,40,40,118,97,108,117,101,32,45,32,109,105,110,41,32,47,32,115,116,101,112,41,32,42,32,115,116,101,112,32,43,32,109,105,110,32,43,32,115,116,101,112,59,32,47,47,32,87,101,32,101,110,115,117,114,101,32,116,104,97,116,32,112,114,101,99,105,115,105,111,110,32,105,115,32,109,97,105,110,116,97,105,110,101,100,32,40,100,101,99,105,109,97,108,115,41,92,110,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,109,97,116,104,82,111,117,110,100,41,40,118,97,108,117,101,32,42,32,109,117,108,116,105,112,108,105,101,114,41,32,47,32,109,117,108,116,105,112,108,105,101,114,59,32,47,47,32,72,97,110,100,108,101,32,105,102,32,119,114,97,112,112,105,110,103,32,105,115,32,101,110,97,98,108,101,100,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,118,97,108,117,101,32,62,32,109,97,120,32,63,32,119,114,97,112,32,63,32,109,105,110,32,58,32,109,97,120,32,58,32,118,97,108,117,101,32,60,32,109,105,110,32,63,32,119,114,97,112,32,63,32,109,97,120,32,58,32,109,105,110,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,70,111,99,117,115,66,108,117,114,58,32,102,117,110,99,116,105,111,110,32,111,110,70,111,99,117,115,66,108,117,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,97,115,70,111,99,117,115,32,61,32,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,39,102,111,99,117,115,39,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,97,115,70,111,99,117,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,116,101,112,85,112,58,32,102,117,110,99,116,105,111,110,32,115,116,101,112,85,112,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,117,108,116,105,112,108,105,101,114,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,49,59,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,115,78,117,108,108,41,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,101,112,86,97,108,117,101,40,43,49,32,42,32,109,117,108,116,105,112,108,105,101,114,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,116,101,112,68,111,119,110,58,32,102,117,110,99,116,105,111,110,32,115,116,101,112,68,111,119,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,117,108,116,105,112,108,105,101,114,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,49,59,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,115,78,117,108,108,41,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,116,104,105,115,46,119,114,97,112,32,63,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,32,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,101,112,86,97,108,117,101,40,45,49,32,42,32,109,117,108,116,105,112,108,105,101,114,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,75,101,121,100,111,119,110,58,32,102,117,110,99,116,105,111,110,32,111,110,75,101,121,100,111,119,110,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,108,116,75,101,121,32,61,32,101,118,101,110,116,46,97,108,116,75,101,121,44,92,110,32,32,32,32,32,32,32,32,32,32,99,116,114,108,75,101,121,32,61,32,101,118,101,110,116,46,99,116,114,108,75,101,121,44,92,110,32,32,32,32,32,32,32,32,32,32,109,101,116,97,75,101,121,32,61,32,101,118,101,110,116,46,109,101,116,97,75,101,121,59,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,116,104,105,115,46,114,101,97,100,111,110,108,121,32,124,124,32,97,108,116,75,101,121,32,124,124,32,99,116,114,108,75,101,121,32,124,124,32,109,101,116,97,75,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,75,69,89,95,67,79,68,69,83,44,32,107,101,121,67,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,119,51,99,46,103,105,116,104,117,98,46,105,111,47,97,114,105,97,45,112,114,97,99,116,105,99,101,115,47,35,115,112,105,110,98,117,116,116,111,110,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,95,107,101,121,73,115,68,111,119,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,75,101,121,112,114,101,115,115,32,105,115,32,97,108,114,101,97,100,121,32,105,110,32,112,114,111,103,114,101,115,115,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,115,101,116,84,105,109,101,114,115,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,91,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,85,80,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,68,79,87,78,93,44,32,107,101,121,67,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,102,111,108,108,111,119,105,110,103,32,117,115,101,32,116,104,101,32,99,117,115,116,111,109,32,97,117,116,111,45,114,101,112,101,97,116,32,104,97,110,100,108,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,107,101,121,73,115,68,111,119,110,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,85,80,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,104,97,110,100,108,101,83,116,101,112,82,101,112,101,97,116,40,101,118,101,110,116,44,32,116,104,105,115,46,115,116,101,112,85,112,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,68,79,87,78,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,104,97,110,100,108,101,83,116,101,112,82,101,112,101,97,116,40,101,118,101,110,116,44,32,116,104,105,115,46,115,116,101,112,68,111,119,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,115,101,32,117,115,101,32,110,97,116,105,118,101,32,79,83,32,107,101,121,32,114,101,112,101,97,116,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,80,65,71,69,85,80,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,101,112,85,112,40,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,101,112,77,117,108,116,105,112,108,105,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,80,65,71,69,68,79,87,78,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,101,112,68,111,119,110,40,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,101,112,77,117,108,116,105,112,108,105,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,72,79,77,69,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,69,78,68,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,75,101,121,117,112,58,32,102,117,110,99,116,105,111,110,32,111,110,75,101,121,117,112,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,69,109,105,116,32,97,32,99,104,97,110,103,101,32,101,118,101,110,116,32,119,104,101,110,32,116,104,101,32,107,101,121,117,112,32,104,97,112,112,101,110,115,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,108,116,75,101,121,32,61,32,101,118,101,110,116,46,97,108,116,75,101,121,44,92,110,32,32,32,32,32,32,32,32,32,32,99,116,114,108,75,101,121,32,61,32,101,118,101,110,116,46,99,116,114,108,75,101,121,44,92,110,32,32,32,32,32,32,32,32,32,32,109,101,116,97,75,101,121,32,61,32,101,118,101,110,116,46,109,101,116,97,75,101,121,59,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,116,104,105,115,46,114,101,97,100,111,110,108,121,32,124,124,32,97,108,116,75,101,121,32,124,124,32,99,116,114,108,75,101,121,32,124,124,32,109,101,116,97,75,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,75,69,89,95,67,79,68,69,83,44,32,107,101,121,67,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,115,101,116,84,105,109,101,114,115,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,107,101,121,73,115,68,111,119,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,67,104,97,110,103,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,83,116,101,112,82,101,112,101,97,116,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,83,116,101,112,82,101,112,101,97,116,40,101,118,101,110,116,44,32,115,116,101,112,112,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,95,114,101,102,32,61,32,101,118,101,110,116,32,124,124,32,123,125,44,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,32,61,32,95,114,101,102,46,116,121,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,98,117,116,116,111,110,32,61,32,95,114,101,102,46,98,117,116,116,111,110,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,32,38,38,32,33,116,104,105,115,46,114,101,97,100,111,110,108,121,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,109,111,117,115,101,100,111,119,110,39,32,38,38,32,98,117,116,116,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,114,101,115,112,111,110,100,32,116,111,32,108,101,102,116,32,40,109,97,105,110,32,61,61,61,32,48,41,32,98,117,116,116,111,110,32,99,108,105,99,107,115,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,115,101,116,84,105,109,101,114,115,40,41,59,32,47,47,32,83,116,101,112,32,116,104,101,32,99,111,117,110,116,101,114,32,105,110,105,116,105,97,108,108,121,92,110,92,110,32,32,32,32,32,32,32,32,115,116,101,112,112,101,114,40,49,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,104,114,101,115,104,111,108,100,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,84,104,114,101,115,104,111,108,100,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,117,108,116,105,112,108,105,101,114,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,101,112,77,117,108,116,105,112,108,105,101,114,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,101,108,97,121,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,68,101,108,97,121,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,116,101,114,118,97,108,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,116,101,114,118,97,108,59,32,47,47,32,73,110,105,116,105,97,116,101,32,116,104,101,32,100,101,108,97,121,47,114,101,112,101,97,116,32,105,110,116,101,114,118,97,108,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,97,117,116,111,68,101,108,97,121,84,105,109,101,114,32,61,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,117,110,116,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,95,97,117,116,111,82,101,112,101,97,116,84,105,109,101,114,32,61,32,115,101,116,73,110,116,101,114,118,97,108,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,102,116,101,114,32,78,32,105,110,105,116,105,97,108,32,114,101,112,101,97,116,115,44,32,119,101,32,105,110,99,114,101,97,115,101,32,116,104,101,32,105,110,99,114,101,109,101,110,116,105,110,103,32,115,116,101,112,32,97,109,111,117,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,100,111,32,116,104,105,115,32,116,111,32,109,105,110,105,109,105,122,101,32,115,99,114,101,101,110,32,114,101,97,100,101,114,32,97,110,110,111,117,110,99,101,109,101,110,116,115,32,111,102,32,116,104,101,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,40,118,97,108,117,101,115,32,97,114,101,32,97,110,110,111,117,110,99,101,100,32,101,118,101,114,121,32,99,104,97,110,103,101,44,32,119,104,105,99,104,32,99,97,110,32,98,101,32,99,104,97,116,116,121,32,102,111,114,32,83,82,32,117,115,101,114,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,110,100,32,116,111,32,109,97,107,101,32,105,116,32,101,97,115,101,114,32,116,111,32,115,101,108,101,99,116,32,97,32,118,97,108,117,101,32,119,104,101,110,32,116,104,101,32,114,97,110,103,101,32,105,115,32,108,97,114,103,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,112,101,114,40,99,111,117,110,116,32,60,32,116,104,114,101,115,104,111,108,100,32,63,32,49,32,58,32,109,117,108,116,105,112,108,105,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,117,110,116,43,43,59,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,105,110,116,101,114,118,97,108,41,59,92,110,32,32,32,32,32,32,32,32,125,44,32,100,101,108,97,121,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,77,111,117,115,101,117,112,58,32,102,117,110,99,116,105,111,110,32,111,110,77,111,117,115,101,117,112,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,96,60,98,111,100,121,62,96,32,108,105,115,116,101,110,101,114,44,32,111,110,108,121,32,101,110,97,98,108,101,100,32,119,104,101,110,32,109,111,117,115,101,100,111,119,110,32,115,116,97,114,116,115,92,110,32,32,32,32,32,32,118,97,114,32,95,114,101,102,50,32,61,32,101,118,101,110,116,32,124,124,32,123,125,44,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,32,61,32,95,114,101,102,50,46,116,121,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,98,117,116,116,111,110,32,61,32,95,114,101,102,50,46,98,117,116,116,111,110,59,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,109,111,117,115,101,117,112,39,32,38,38,32,98,117,116,116,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,103,110,111,114,101,32,110,111,110,32,108,101,102,116,32,98,117,116,116,111,110,32,40,109,97,105,110,32,61,61,61,32,48,41,32,109,111,117,115,101,32,98,117,116,116,111,110,32,99,108,105,99,107,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,114,101,115,101,116,84,105,109,101,114,115,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,77,111,117,115,101,117,112,40,102,97,108,115,101,41,59,32,47,47,32,84,114,105,103,103,101,114,32,116,104,101,32,99,104,97,110,103,101,32,101,118,101,110,116,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,67,104,97,110,103,101,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,77,111,117,115,101,117,112,58,32,102,117,110,99,116,105,111,110,32,115,101,116,77,111,117,115,101,117,112,40,111,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,69,110,97,98,108,101,32,111,114,32,100,105,115,97,98,108,101,100,32,116,104,101,32,98,111,100,121,32,109,111,117,115,101,117,112,47,116,111,117,99,104,101,110,100,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,32,32,47,47,32,85,115,101,32,116,114,121,47,99,97,116,99,104,32,116,111,32,104,97,110,100,108,101,32,99,97,115,101,32,119,104,101,110,32,99,97,108,108,101,100,32,115,101,114,118,101,114,32,115,105,100,101,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,101,118,101,110,116,79,110,79,102,102,41,40,111,110,44,32,100,111,99,117,109,101,110,116,46,98,111,100,121,44,32,39,109,111,117,115,101,117,112,39,44,32,116,104,105,115,46,111,110,77,111,117,115,101,117,112,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,101,118,101,110,116,79,110,79,102,102,41,40,111,110,44,32,100,111,99,117,109,101,110,116,46,98,111,100,121,44,32,39,116,111,117,99,104,101,110,100,39,44,32,116,104,105,115,46,111,110,77,111,117,115,101,117,112,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,95,117,110,117,115,101,100,41,32,123,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,115,101,116,84,105,109,101,114,115,58,32,102,117,110,99,116,105,111,110,32,114,101,115,101,116,84,105,109,101,114,115,40,41,32,123,92,110,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,36,95,97,117,116,111,68,101,108,97,121,84,105,109,101,114,41,59,92,110,32,32,32,32,32,32,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,36,95,97,117,116,111,82,101,112,101,97,116,84,105,109,101,114,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,97,117,116,111,68,101,108,97,121,84,105,109,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,97,117,116,111,82,101,112,101,97,116,84,105,109,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,108,101,97,114,82,101,112,101,97,116,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,82,101,112,101,97,116,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,114,101,115,101,116,84,105,109,101,114,115,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,77,111,117,115,101,117,112,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,107,101,121,73,115,68,111,119,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,115,112,105,110,73,100,32,61,32,116,104,105,115,46,115,112,105,110,73,100,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,105,110,108,105,110,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,108,105,110,101,44,92,110,32,32,32,32,32,32,32,32,114,101,97,100,111,110,108,121,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,82,101,97,100,111,110,108,121,44,92,110,32,32,32,32,32,32,32,32,118,101,114,116,105,99,97,108,32,61,32,116,104,105,115,46,118,101,114,116,105,99,97,108,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,70,111,114,109,97,116,116,101,114,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,111,114,109,97,116,116,101,114,59,92,110,32,32,32,32,118,97,114,32,104,97,115,86,97,108,117,101,32,61,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,115,78,117,108,108,41,40,118,97,108,117,101,41,59,92,110,92,110,32,32,32,32,118,97,114,32,109,97,107,101,66,117,116,116,111,110,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,66,117,116,116,111,110,40,115,116,101,112,112,101,114,44,32,108,97,98,101,108,44,32,73,99,111,110,67,109,112,44,32,107,101,121,82,101,102,44,32,115,104,111,114,116,99,117,116,44,32,98,116,110,68,105,115,97,98,108,101,100,44,32,115,108,111,116,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,105,99,111,110,32,61,32,104,40,73,99,111,110,67,109,112,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,99,97,108,101,58,32,95,116,104,105,115,50,46,104,97,115,70,111,99,117,115,32,63,32,49,46,53,32,58,32,49,46,50,53,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,32,61,32,123,92,110,32,32,32,32,32,32,32,32,104,97,115,70,111,99,117,115,58,32,95,116,104,105,115,50,46,104,97,115,70,111,99,117,115,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,100,105,115,97,98,108,101,100,32,38,38,32,33,114,101,97,100,111,110,108,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,115,101,116,77,111,117,115,101,117,112,40,116,114,117,101,41,59,32,47,47,32,83,105,110,99,101,32,119,101,32,96,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,96,44,32,119,101,32,109,117,115,116,32,109,97,110,117,97,108,108,121,32,102,111,99,117,115,32,116,104,101,32,98,117,116,116,111,110,92,110,92,110,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,101,118,101,110,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,104,97,110,100,108,101,83,116,101,112,82,101,112,101,97,116,40,101,118,101,110,116,44,32,115,116,101,112,112,101,114,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,98,117,116,116,111,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,116,110,32,98,116,110,45,115,109,32,98,111,114,100,101,114,45,48,32,114,111,117,110,100,101,100,45,48,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,112,121,45,48,39,58,32,33,118,101,114,116,105,99,97,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,45,49,39,44,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,58,32,39,98,117,116,116,111,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,32,124,124,32,114,101,97,100,111,110,108,121,32,124,124,32,98,116,110,68,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,105,115,97,98,108,101,100,39,58,32,100,105,115,97,98,108,101,100,32,124,124,32,114,101,97,100,111,110,108,121,32,124,124,32,98,116,110,68,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,111,110,116,114,111,108,115,39,58,32,115,112,105,110,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,108,97,98,101,108,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,107,101,121,115,104,111,114,116,99,117,116,115,39,58,32,115,104,111,114,116,99,117,116,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,109,111,117,115,101,100,111,119,110,58,32,104,97,110,100,108,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,116,111,117,99,104,115,116,97,114,116,58,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,107,101,121,82,101,102,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,107,101,121,82,101,102,92,110,32,32,32,32,32,32,125,44,32,91,95,116,104,105,115,50,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,115,108,111,116,78,97,109,101,44,32,115,99,111,112,101,41,32,124,124,32,36,105,99,111,110,93,41,59,92,110,32,32,32,32,125,59,32,47,47,32,84,79,68,79,58,32,65,100,100,32,98,117,116,116,111,110,32,100,105,115,97,98,108,101,100,32,115,116,97,116,101,32,119,104,101,110,32,96,119,114,97,112,96,32,105,115,32,96,102,97,108,115,101,96,32,97,110,100,32,97,116,32,118,97,108,117,101,32,109,97,120,47,109,105,110,92,110,92,110,92,110,32,32,32,32,118,97,114,32,36,105,110,99,114,101,109,101,110,116,32,61,32,109,97,107,101,66,117,116,116,111,110,40,116,104,105,115,46,115,116,101,112,85,112,44,32,116,104,105,115,46,108,97,98,101,108,73,110,99,114,101,109,101,110,116,44,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,66,73,99,111,110,80,108,117,115,44,32,39,105,110,99,39,44,32,39,65,114,114,111,119,85,112,39,44,32,102,97,108,115,101,44,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,83,76,79,84,95,78,65,77,69,95,73,78,67,82,69,77,69,78,84,41,59,92,110,32,32,32,32,118,97,114,32,36,100,101,99,114,101,109,101,110,116,32,61,32,109,97,107,101,66,117,116,116,111,110,40,116,104,105,115,46,115,116,101,112,68,111,119,110,44,32,116,104,105,115,46,108,97,98,101,108,68,101,99,114,101,109,101,110,116,44,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,66,73,99,111,110,68,97,115,104,44,32,39,100,101,99,39,44,32,39,65,114,114,111,119,68,111,119,110,39,44,32,102,97,108,115,101,44,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,67,82,69,77,69,78,84,41,59,92,110,32,32,32,32,118,97,114,32,36,104,105,100,100,101,110,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,110,97,109,101,32,38,38,32,33,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,36,104,105,100,100,101,110,32,61,32,104,40,39,105,110,112,117,116,39,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,58,32,39,104,105,100,100,101,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,116,104,105,115,46,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,109,58,32,116,104,105,115,46,102,111,114,109,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,83,104,111,117,108,100,32,116,104,105,115,32,98,101,32,115,101,116,32,116,111,32,39,39,32,105,102,32,118,97,108,117,101,32,105,115,32,111,117,116,32,111,102,32,114,97,110,103,101,63,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,118,97,108,117,101,65,115,70,105,120,101,100,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,105,100,100,101,110,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,115,112,105,110,32,61,32,104,40,32,47,47,32,87,101,32,117,115,101,32,39,111,117,116,112,117,116,39,32,101,108,101,109,101,110,116,32,116,111,32,109,97,107,101,32,116,104,105,115,32,97,99,99,101,112,116,32,97,32,96,60,108,97,98,101,108,32,102,111,114,61,92,34,105,100,92,34,62,96,32,40,69,120,99,101,112,116,32,73,69,41,92,110,32,32,32,32,39,111,117,116,112,117,116,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,102,108,101,120,45,103,114,111,119,45,49,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,100,45,102,108,101,120,39,58,32,118,101,114,116,105,99,97,108,44,92,110,32,32,32,32,32,32,32,32,39,97,108,105,103,110,45,115,101,108,102,45,99,101,110,116,101,114,39,58,32,33,118,101,114,116,105,99,97,108,44,92,110,32,32,32,32,32,32,32,32,39,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,39,58,32,118,101,114,116,105,99,97,108,44,92,110,32,32,32,32,32,32,32,32,39,98,111,114,100,101,114,45,116,111,112,39,58,32,118,101,114,116,105,99,97,108,44,92,110,32,32,32,32,32,32,32,32,39,98,111,114,100,101,114,45,98,111,116,116,111,109,39,58,32,118,101,114,116,105,99,97,108,44,92,110,32,32,32,32,32,32,32,32,39,98,111,114,100,101,114,45,108,101,102,116,39,58,32,33,118,101,114,116,105,99,97,108,44,92,110,32,32,32,32,32,32,32,32,39,98,111,114,100,101,114,45,114,105,103,104,116,39,58,32,33,118,101,114,116,105,99,97,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,112,105,110,65,116,116,114,115,44,92,110,32,32,32,32,32,32,107,101,121,58,32,39,111,117,116,112,117,116,39,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,115,112,105,110,110,101,114,39,92,110,32,32,32,32,125,44,32,91,104,40,39,98,100,105,39,44,32,104,97,115,86,97,108,117,101,32,63,32,99,111,109,112,117,116,101,100,70,111,114,109,97,116,116,101,114,40,118,97,108,117,101,41,32,58,32,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,32,124,124,32,39,39,41,93,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,102,111,114,109,45,99,111,110,116,114,111,108,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,101,97,100,111,110,108,121,58,32,114,101,97,100,111,110,108,121,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,58,32,116,104,105,115,46,104,97,115,70,111,99,117,115,44,92,110,32,32,32,32,32,32,32,32,39,100,45,105,110,108,105,110,101,45,102,108,101,120,39,58,32,105,110,108,105,110,101,32,124,124,32,118,101,114,116,105,99,97,108,44,92,110,32,32,32,32,32,32,32,32,39,100,45,102,108,101,120,39,58,32,33,105,110,108,105,110,101,32,38,38,32,33,118,101,114,116,105,99,97,108,44,92,110,32,32,32,32,32,32,32,32,39,97,108,105,103,110,45,105,116,101,109,115,45,115,116,114,101,116,99,104,39,58,32,33,118,101,114,116,105,99,97,108,44,92,110,32,32,32,32,32,32,32,32,39,102,108,101,120,45,99,111,108,117,109,110,39,58,32,118,101,114,116,105,99,97,108,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,115,105,122,101,70,111,114,109,67,108,97,115,115,44,32,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,111,110,75,101,121,100,111,119,110,44,92,110,32,32,32,32,32,32,32,32,107,101,121,117,112,58,32,116,104,105,115,46,111,110,75,101,121,117,112,44,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,117,115,101,32,99,97,112,116,117,114,101,32,112,104,97,115,101,32,40,96,33,96,32,112,114,101,102,105,120,41,32,115,105,110,99,101,32,102,111,99,117,115,32,97,110,100,32,98,108,117,114,32,100,111,32,110,111,116,32,98,117,98,98,108,101,92,110,32,32,32,32,32,32,32,32,39,33,102,111,99,117,115,39,58,32,116,104,105,115,46,111,110,70,111,99,117,115,66,108,117,114,44,92,110,32,32,32,32,32,32,32,32,39,33,98,108,117,114,39,58,32,116,104,105,115,46,111,110,70,111,99,117,115,66,108,117,114,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,118,101,114,116,105,99,97,108,32,63,32,91,36,105,110,99,114,101,109,101,110,116,44,32,36,104,105,100,100,101,110,44,32,36,115,112,105,110,44,32,36,100,101,99,114,101,109,101,110,116,93,32,58,32,91,36,100,101,99,114,101,109,101,110,116,44,32,36,104,105,100,100,101,110,44,32,36,115,112,105,110,44,32,36,105,110,99,114,101,109,101,110,116,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,83,112,105,110,98,117,116,116,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,83,112,105,110,98,117,116,116,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,83,112,105,110,98,117,116,116,111,110,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,111,114,109,83,112,105,110,98,117,116,116,111,110,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,70,111,114,109,83,112,105,110,98,117,116,116,111,110,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,70,111,114,109,83,112,105,110,98,117,116,116,111,110,58,32,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,83,112,105,110,98,117,116,116,111,110,44,92,110,32,32,32,32,66,83,112,105,110,98,117,116,116,111,110,58,32,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,83,112,105,110,98,117,116,116,111,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,102,111,114,109,45,116,97,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,102,111,114,109,45,116,97,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,84,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,84,97,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,100,103,101,95,98,97,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,98,97,100,103,101,47,98,97,100,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,97,100,103,101,47,98,97,100,103,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,82,101,109,111,118,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,112,105,108,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,101,109,111,118,101,76,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,82,101,109,111,118,101,32,116,97,103,39,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,112,97,110,39,41,44,92,110,32,32,116,105,116,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,101,99,111,110,100,97,114,121,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,70,79,82,77,95,84,65,71,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,84,97,103,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,70,79,82,77,95,84,65,71,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,111,110,82,101,109,111,118,101,58,32,102,117,110,99,116,105,111,110,32,111,110,82,101,109,111,118,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,101,118,101,110,116,46,116,121,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,32,38,38,32,40,116,121,112,101,32,61,61,61,32,39,99,108,105,99,107,39,32,124,124,32,116,121,112,101,32,61,61,61,32,39,107,101,121,100,111,119,110,39,32,38,38,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,67,79,68,69,95,68,69,76,69,84,69,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,69,77,79,86,69,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,116,105,116,108,101,32,61,32,116,104,105,115,46,116,105,116,108,101,44,92,110,32,32,32,32,32,32,32,32,116,97,103,32,61,32,116,104,105,115,46,116,97,103,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,112,105,108,108,32,61,32,116,104,105,115,46,112,105,108,108,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,118,97,114,32,116,97,103,73,100,32,61,32,116,104,105,115,46,115,97,102,101,73,100,40,41,59,92,110,32,32,32,32,118,97,114,32,116,97,103,76,97,98,101,108,73,100,32,61,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,116,97,103,108,97,98,101,108,95,39,41,59,92,110,32,32,32,32,118,97,114,32,36,114,101,109,111,118,101,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,110,111,82,101,109,111,118,101,32,38,38,32,33,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,36,114,101,109,111,118,101,32,61,32,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,66,117,116,116,111,110,67,108,111,115,101,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,111,114,109,45,116,97,103,45,114,101,109,111,118,101,39,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,105,97,76,97,98,101,108,58,32,116,104,105,115,46,114,101,109,111,118,101,76,97,98,101,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,111,110,116,114,111,108,115,39,58,32,116,97,103,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,58,32,116,97,103,76,97,98,101,108,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,107,101,121,115,104,111,114,116,99,117,116,115,39,58,32,39,68,101,108,101,116,101,39,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,82,101,109,111,118,101,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,111,110,82,101,109,111,118,101,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,116,97,103,32,61,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,111,114,109,45,116,97,103,45,99,111,110,116,101,110,116,32,102,108,101,120,45,103,114,111,119,45,49,32,116,101,120,116,45,116,114,117,110,99,97,116,101,39,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,97,103,76,97,98,101,108,73,100,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,32,124,124,32,116,105,116,108,101,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,95,98,97,100,103,101,95,98,97,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,66,66,97,100,103,101,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,111,114,109,45,116,97,103,32,100,45,105,110,108,105,110,101,45,102,108,101,120,32,97,108,105,103,110,45,105,116,101,109,115,45,98,97,115,101,108,105,110,101,32,109,119,45,49,48,48,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,116,97,103,58,32,116,97,103,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,112,105,108,108,58,32,112,105,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,97,103,73,100,44,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,116,105,116,108,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,39,58,32,116,97,103,76,97,98,101,108,73,100,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,116,97,103,44,32,36,114,101,109,111,118,101,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,102,111,114,109,45,116,97,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,102,111,114,109,45,116,97,103,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,102,111,114,109,45,116,97,103,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,84,97,103,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,84,97,103,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,99,115,115,95,101,115,99,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,99,115,115,45,101,115,99,97,112,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,115,115,45,101,115,99,97,112,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,98,117,116,116,111,110,47,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,102,111,114,109,95,105,110,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,102,111,114,109,47,102,111,114,109,45,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,102,111,114,109,47,102,111,114,109,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,116,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,116,97,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,102,111,114,109,45,116,97,103,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,97,114,114,41,32,123,32,114,101,116,117,114,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,124,124,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,92,34,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,32,123,32,105,102,32,40,33,111,41,32,114,101,116,117,114,110,59,32,105,102,32,40,116,121,112,101,111,102,32,111,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,118,97,114,32,110,32,61,32,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,111,41,46,115,108,105,99,101,40,56,44,32,45,49,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,79,98,106,101,99,116,92,34,32,38,38,32,111,46,99,111,110,115,116,114,117,99,116,111,114,41,32,110,32,61,32,111,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,59,32,105,102,32,40,110,32,61,61,61,32,92,34,77,97,112,92,34,32,124,124,32,110,32,61,61,61,32,92,34,83,101,116,92,34,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,111,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,65,114,103,117,109,101,110,116,115,92,34,32,124,124,32,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,105,116,101,114,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,38,38,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,105,116,101,114,41,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,105,116,101,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,123,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,44,32,108,101,110,41,32,123,32,105,102,32,40,108,101,110,32,61,61,32,110,117,108,108,32,124,124,32,108,101,110,32,62,32,97,114,114,46,108,101,110,103,116,104,41,32,108,101,110,32,61,32,97,114,114,46,108,101,110,103,116,104,59,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,97,114,114,50,32,61,32,110,101,119,32,65,114,114,97,121,40,108,101,110,41,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,32,97,114,114,50,91,105,93,32,61,32,97,114,114,91,105,93,59,32,125,32,114,101,116,117,114,110,32,97,114,114,50,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,47,47,32,84,97,103,103,101,100,32,105,110,112,117,116,32,102,111,114,109,32,99,111,110,116,114,111,108,92,110,47,47,32,66,97,115,101,100,32,108,111,111,115,101,108,121,32,111,110,32,104,116,116,112,115,58,47,47,97,100,97,109,119,97,116,104,97,110,46,109,101,47,114,101,110,100,101,114,108,101,115,115,45,99,111,109,112,111,110,101,110,116,115,45,105,110,45,118,117,101,106,115,47,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,97,108,117,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,44,92,110,32,32,100,101,102,97,117,108,116,86,97,108,117,101,58,32,91,93,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,32,47,47,32,83,117,112,112,111,114,116,101,100,32,105,110,112,117,116,32,116,121,112,101,115,32,40,102,111,114,32,98,117,105,108,116,32,105,110,32,105,110,112,117,116,41,92,110,92,110,92,110,118,97,114,32,84,89,80,69,83,32,61,32,91,39,116,101,120,116,39,44,32,39,101,109,97,105,108,39,44,32,39,116,101,108,39,44,32,39,117,114,108,39,44,32,39,110,117,109,98,101,114,39,93,59,32,47,47,32,68,101,102,97,117,108,116,32,105,103,110,111,114,101,32,105,110,112,117,116,32,102,111,99,117,115,32,115,101,108,101,99,116,111,114,92,110,92,110,118,97,114,32,68,69,70,65,85,76,84,95,73,78,80,85,84,95,70,79,67,85,83,95,83,69,76,69,67,84,79,82,32,61,32,91,39,46,98,45,102,111,114,109,45,116,97,103,39,44,32,39,98,117,116,116,111,110,39,44,32,39,105,110,112,117,116,39,44,32,39,115,101,108,101,99,116,39,93,46,106,111,105,110,40,39,32,39,41,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,69,115,99,97,112,101,32,115,112,101,99,105,97,108,32,99,104,97,114,115,32,105,110,32,115,116,114,105,110,103,32,97,110,100,32,114,101,112,108,97,99,101,92,110,47,47,32,99,111,110,116,105,103,117,111,117,115,32,115,112,97,99,101,115,32,119,105,116,104,32,97,32,119,104,105,116,101,115,112,97,99,101,32,109,97,116,99,104,92,110,92,110,118,97,114,32,101,115,99,97,112,101,82,101,103,69,120,112,67,104,97,114,115,32,61,32,102,117,110,99,116,105,111,110,32,101,115,99,97,112,101,82,101,103,69,120,112,67,104,97,114,115,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,115,99,97,112,101,82,101,103,69,120,112,41,40,115,116,114,41,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,82,88,95,83,80,65,67,69,83,44,32,39,92,92,92,92,115,39,41,59,92,110,125,59,32,47,47,32,82,101,109,111,118,101,32,108,101,97,100,105,110,103,47,116,114,97,105,108,105,110,103,32,115,112,97,99,101,115,32,102,114,111,109,32,97,114,114,97,121,32,111,102,32,116,97,103,115,32,97,110,100,32,114,101,109,111,118,101,32,100,117,112,108,105,99,97,116,101,115,92,110,92,110,92,110,118,97,114,32,99,108,101,97,110,84,97,103,115,32,61,32,102,117,110,99,116,105,111,110,32,99,108,101,97,110,84,97,103,115,40,116,97,103,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,111,110,99,97,116,41,40,116,97,103,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,116,97,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,114,105,109,41,40,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,83,116,114,105,110,103,41,40,116,97,103,41,41,59,92,110,32,32,125,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,116,97,103,44,32,105,110,100,101,120,44,32,97,114,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,97,103,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,114,46,105,110,100,101,120,79,102,40,116,97,103,41,32,61,61,61,32,105,110,100,101,120,59,92,110,32,32,125,41,59,92,110,125,59,32,47,47,32,80,114,111,99,101,115,115,101,115,32,97,110,32,105,110,112,117,116,47,99,104,97,110,103,101,32,101,118,101,110,116,44,32,110,111,114,109,97,108,105,122,105,110,103,32,115,116,114,105,110,103,32,111,114,32,101,118,101,110,116,32,97,114,103,117,109,101,110,116,92,110,92,110,92,110,118,97,114,32,112,114,111,99,101,115,115,69,118,101,110,116,86,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,32,112,114,111,99,101,115,115,69,118,101,110,116,86,97,108,117,101,40,101,118,101,110,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,83,116,114,105,110,103,41,40,101,118,101,110,116,41,32,63,32,101,118,101,110,116,32,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,69,118,101,110,116,41,40,101,118,101,110,116,41,32,63,32,101,118,101,110,116,46,116,97,114,103,101,116,46,118,97,108,117,101,32,124,124,32,39,39,32,58,32,39,39,59,92,110,125,59,32,47,47,32,82,101,116,117,114,110,115,32,97,32,102,114,101,115,104,32,101,109,112,116,121,32,96,116,97,103,115,83,116,97,116,101,96,32,111,98,106,101,99,116,92,110,92,110,92,110,118,97,114,32,99,108,101,97,110,84,97,103,115,83,116,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,99,108,101,97,110,84,97,103,115,83,116,97,116,101,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,97,108,108,58,32,91,93,44,92,110,32,32,32,32,118,97,108,105,100,58,32,91,93,44,92,110,32,32,32,32,105,110,118,97,108,105,100,58,32,91,93,44,92,110,32,32,32,32,100,117,112,108,105,99,97,116,101,58,32,91,93,92,110,32,32,125,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,100,100,66,117,116,116,111,110,84,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,65,100,100,39,41,44,92,110,32,32,97,100,100,66,117,116,116,111,110,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,39,41,44,92,110,32,32,47,47,32,69,110,97,98,108,101,32,99,104,97,110,103,101,32,101,118,101,110,116,32,116,114,105,103,103,101,114,105,110,103,32,116,97,103,32,97,100,100,105,116,105,111,110,92,110,32,32,47,47,32,72,97,110,100,121,32,105,102,32,117,115,105,110,103,32,60,115,101,108,101,99,116,62,32,97,115,32,116,104,101,32,105,110,112,117,116,92,110,32,32,97,100,100,79,110,67,104,97,110,103,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,100,117,112,108,105,99,97,116,101,84,97,103,84,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,68,117,112,108,105,99,97,116,101,32,116,97,103,40,115,41,39,41,44,92,110,32,32,47,47,32,68,105,115,97,98,108,101,32,116,104,101,32,105,110,112,117,116,32,102,111,99,117,115,32,98,101,104,97,118,105,111,114,32,119,104,101,110,32,99,108,105,99,107,105,110,103,92,110,32,32,47,47,32,111,110,32,101,108,101,109,101,110,116,32,109,97,116,99,104,105,110,103,32,116,104,101,32,115,101,108,101,99,116,111,114,32,40,111,114,32,115,101,108,101,99,116,111,114,115,41,92,110,32,32,105,103,110,111,114,101,73,110,112,117,116,70,111,99,117,115,83,101,108,101,99,116,111,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,44,32,68,69,70,65,85,76,84,95,73,78,80,85,84,95,70,79,67,85,83,95,83,69,76,69,67,84,79,82,41,44,92,110,32,32,47,47,32,65,100,100,105,116,105,111,110,97,108,32,97,116,116,114,105,98,117,116,101,115,32,116,111,32,97,100,100,32,116,111,32,116,104,101,32,105,110,112,117,116,32,101,108,101,109,101,110,116,92,110,32,32,105,110,112,117,116,65,116,116,114,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,44,32,123,125,41,44,92,110,32,32,105,110,112,117,116,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,105,110,112,117,116,73,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,105,110,112,117,116,84,121,112,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,116,101,120,116,39,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,84,89,80,69,83,44,32,118,97,108,117,101,41,59,92,110,32,32,125,41,44,92,110,32,32,105,110,118,97,108,105,100,84,97,103,84,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,73,110,118,97,108,105,100,32,116,97,103,40,115,41,39,41,44,92,110,32,32,108,105,109,105,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,41,44,92,110,32,32,108,105,109,105,116,84,97,103,115,84,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,84,97,103,32,108,105,109,105,116,32,114,101,97,99,104,101,100,39,41,44,92,110,32,32,47,47,32,68,105,115,97,98,108,101,32,69,78,84,69,82,32,107,101,121,32,102,114,111,109,32,116,114,105,103,103,101,114,105,110,103,32,116,97,103,32,97,100,100,105,116,105,111,110,92,110,32,32,110,111,65,100,100,79,110,69,110,116,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,68,105,115,97,98,108,101,32,116,104,101,32,102,111,99,117,115,32,114,105,110,103,32,111,110,32,116,104,101,32,114,111,111,116,32,101,108,101,109,101,110,116,92,110,32,32,110,111,79,117,116,101,114,70,111,99,117,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,84,97,103,82,101,109,111,118,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,65,100,100,32,116,97,103,46,46,46,39,41,44,92,110,32,32,47,47,32,69,110,97,98,108,101,32,100,101,108,101,116,105,110,103,32,108,97,115,116,32,116,97,103,32,105,110,32,108,105,115,116,32,119,104,101,110,32,67,79,68,69,95,66,65,67,75,83,80,65,67,69,32,105,115,92,110,32,32,47,47,32,112,114,101,115,115,101,100,32,97,110,100,32,105,110,112,117,116,32,105,115,32,101,109,112,116,121,92,110,32,32,114,101,109,111,118,101,79,110,68,101,108,101,116,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,67,104,97,114,97,99,116,101,114,32,40,111,114,32,99,104,97,114,97,99,116,101,114,115,41,32,116,104,97,116,32,116,114,105,103,103,101,114,32,97,100,100,105,110,103,32,116,97,103,115,92,110,32,32,115,101,112,97,114,97,116,111,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,41,44,92,110,32,32,116,97,103,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,116,97,103,80,105,108,108,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,82,101,109,111,118,101,76,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,82,101,109,111,118,101,32,116,97,103,39,41,44,92,110,32,32,116,97,103,82,101,109,111,118,101,100,76,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,84,97,103,32,114,101,109,111,118,101,100,39,41,44,92,110,32,32,116,97,103,86,97,108,105,100,97,116,111,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,41,44,92,110,32,32,116,97,103,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,101,99,111,110,100,97,114,121,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,78,65,77,69,95,70,79,82,77,95,84,65,71,83,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,84,97,103,115,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,78,65,77,69,95,70,79,82,77,95,84,65,71,83,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,102,111,114,109,67,111,110,116,114,111,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,102,111,114,109,83,105,122,101,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,102,111,114,109,83,116,97,116,101,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,104,97,115,70,111,99,117,115,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,110,101,119,84,97,103,58,32,39,39,44,92,110,32,32,32,32,32,32,116,97,103,115,58,32,91,93,44,92,110,32,32,32,32,32,32,47,47,32,84,97,103,115,32,116,104,97,116,32,119,101,114,101,32,114,101,109,111,118,101,100,92,110,32,32,32,32,32,32,114,101,109,111,118,101,100,84,97,103,115,58,32,91,93,44,92,110,32,32,32,32,32,32,47,47,32,80,111,112,117,108,97,116,101,100,32,119,104,101,110,32,116,97,103,115,32,97,114,101,32,112,97,114,115,101,100,92,110,32,32,32,32,32,32,116,97,103,115,83,116,97,116,101,58,32,99,108,101,97,110,84,97,103,115,83,116,97,116,101,40,41,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,73,110,112,117,116,73,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,73,110,112,117,116,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,112,117,116,73,100,32,124,124,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,105,110,112,117,116,95,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,73,110,112,117,116,84,121,112,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,73,110,112,117,116,84,121,112,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,97,108,108,111,119,32,99,101,114,116,97,105,110,32,116,121,112,101,115,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,84,89,80,69,83,44,32,116,104,105,115,46,105,110,112,117,116,84,121,112,101,41,32,63,32,116,104,105,115,46,105,110,112,117,116,84,121,112,101,32,58,32,39,116,101,120,116,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,73,110,112,117,116,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,73,110,112,117,116,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,109,32,61,32,116,104,105,115,46,102,111,114,109,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,104,105,115,46,105,110,112,117,116,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,77,117,115,116,32,104,97,118,101,32,97,116,116,114,105,98,117,116,101,115,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,112,117,116,73,100,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,110,101,119,84,97,103,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,102,111,114,109,58,32,102,111,114,109,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,73,110,112,117,116,72,97,110,100,108,101,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,73,110,112,117,116,72,97,110,100,108,101,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,105,110,112,117,116,58,32,116,104,105,115,46,111,110,73,110,112,117,116,73,110,112,117,116,44,92,110,32,32,32,32,32,32,32,32,99,104,97,110,103,101,58,32,116,104,105,115,46,111,110,73,110,112,117,116,67,104,97,110,103,101,44,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,111,110,73,110,112,117,116,75,101,121,100,111,119,110,44,92,110,32,32,32,32,32,32,32,32,114,101,115,101,116,58,32,116,104,105,115,46,114,101,115,101,116,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,101,112,97,114,97,116,111,114,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,101,112,97,114,97,116,111,114,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,77,101,114,103,101,32,116,104,101,32,97,114,114,97,121,32,105,110,116,111,32,97,32,115,116,114,105,110,103,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,111,110,99,97,116,41,40,116,104,105,115,46,115,101,112,97,114,97,116,111,114,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,83,116,114,105,110,103,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,101,112,97,114,97,116,111,114,82,101,103,69,120,112,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,101,112,97,114,97,116,111,114,82,101,103,69,120,112,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,117,115,101,32,97,32,99,111,109,112,117,116,101,100,32,112,114,111,112,32,104,101,114,101,32,116,111,32,112,114,101,99,111,109,112,105,108,101,32,116,104,101,32,82,101,103,69,120,112,92,110,32,32,32,32,32,32,47,47,32,84,104,101,32,82,101,103,69,120,112,32,105,115,32,97,32,99,104,97,114,97,99,116,101,114,32,99,108,97,115,115,32,82,69,32,105,110,32,116,104,101,32,102,111,114,109,32,111,102,32,96,47,91,97,98,99,93,43,47,96,92,110,32,32,32,32,32,32,47,47,32,119,104,101,114,101,32,97,44,32,98,44,32,97,110,100,32,99,32,97,114,101,32,116,104,101,32,118,97,108,105,100,32,115,101,112,97,114,97,116,111,114,32,99,104,97,114,97,99,116,101,114,115,92,110,32,32,32,32,32,32,47,47,32,45,62,32,96,116,97,103,115,32,61,32,115,116,114,46,115,112,108,105,116,40,47,91,97,98,99,93,43,47,41,46,102,105,108,116,101,114,40,116,32,61,62,32,116,41,96,92,110,32,32,32,32,32,32,118,97,114,32,115,101,112,97,114,97,116,111,114,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,101,112,97,114,97,116,111,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,101,112,97,114,97,116,111,114,32,63,32,110,101,119,32,82,101,103,69,120,112,40,92,34,91,92,34,46,99,111,110,99,97,116,40,101,115,99,97,112,101,82,101,103,69,120,112,67,104,97,114,115,40,115,101,112,97,114,97,116,111,114,41,44,32,92,34,93,43,92,34,41,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,74,111,105,110,101,114,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,74,111,105,110,101,114,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,104,101,110,32,116,97,103,40,115,41,32,97,114,101,32,105,110,118,97,108,105,100,32,111,114,32,100,117,112,108,105,99,97,116,101,44,32,119,101,32,108,101,97,118,101,32,116,104,101,109,92,110,32,32,32,32,32,32,47,47,32,105,110,32,116,104,101,32,105,110,112,117,116,32,115,111,32,116,104,97,116,32,116,104,101,32,117,115,101,114,32,99,97,110,32,115,101,101,32,116,104,101,109,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,114,101,32,97,114,101,32,109,111,114,101,32,116,104,97,110,32,111,110,101,32,116,97,103,32,105,110,32,116,104,101,32,105,110,112,117,116,44,32,119,101,32,117,115,101,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,102,105,114,115,116,32,115,101,112,97,114,97,116,111,114,32,99,104,97,114,97,99,116,101,114,32,97,115,32,116,104,101,32,115,101,112,97,114,97,116,111,114,32,105,110,32,116,104,101,32,105,110,112,117,116,92,110,32,32,32,32,32,32,47,47,32,87,101,32,97,112,112,101,110,100,32,97,32,115,112,97,99,101,32,105,102,32,116,104,101,32,102,105,114,115,116,32,115,101,112,97,114,97,116,111,114,32,105,115,32,110,111,116,32,97,32,115,112,97,99,101,92,110,32,32,32,32,32,32,118,97,114,32,106,111,105,110,101,114,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,101,112,97,114,97,116,111,114,46,99,104,97,114,65,116,40,48,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,106,111,105,110,101,114,32,33,61,61,32,39,32,39,32,63,32,92,34,92,34,46,99,111,110,99,97,116,40,106,111,105,110,101,114,44,32,92,34,32,92,34,41,32,58,32,106,111,105,110,101,114,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,73,103,110,111,114,101,73,110,112,117,116,70,111,99,117,115,83,101,108,101,99,116,111,114,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,73,103,110,111,114,101,73,110,112,117,116,70,111,99,117,115,83,101,108,101,99,116,111,114,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,78,111,114,109,97,108,105,122,101,32,116,111,32,97,110,32,115,105,110,103,108,101,32,115,101,108,101,99,116,111,114,32,119,105,116,104,32,115,101,108,101,99,116,111,114,115,32,115,101,112,97,114,97,116,101,100,32,98,121,32,96,44,96,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,111,110,99,97,116,41,40,116,104,105,115,46,105,103,110,111,114,101,73,110,112,117,116,70,111,99,117,115,83,101,108,101,99,116,111,114,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,44,39,41,46,116,114,105,109,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,105,115,97,98,108,101,65,100,100,66,117,116,116,111,110,58,32,102,117,110,99,116,105,111,110,32,100,105,115,97,98,108,101,65,100,100,66,117,116,116,111,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,73,102,32,39,65,100,100,39,32,98,117,116,116,111,110,32,115,104,111,117,108,100,32,98,101,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,105,110,112,117,116,32,99,111,110,116,97,105,110,115,32,97,116,32,108,101,97,115,116,32,111,110,101,32,116,97,103,32,116,104,97,116,32,99,97,110,92,110,32,32,32,32,32,32,47,47,32,98,101,32,97,100,100,101,100,44,32,116,104,101,110,32,116,104,101,32,39,65,100,100,39,32,98,117,116,116,111,110,32,115,104,111,117,108,100,32,98,101,32,101,110,97,98,108,101,100,92,110,32,32,32,32,32,32,118,97,114,32,110,101,119,84,97,103,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,114,105,109,41,40,116,104,105,115,46,110,101,119,84,97,103,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,84,97,103,32,61,61,61,32,39,39,32,124,124,32,33,116,104,105,115,46,115,112,108,105,116,84,97,103,115,40,110,101,119,84,97,103,41,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,95,116,104,105,115,46,116,97,103,115,44,32,116,41,32,38,38,32,95,116,104,105,115,46,118,97,108,105,100,97,116,101,84,97,103,40,116,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,117,112,108,105,99,97,116,101,84,97,103,115,58,32,102,117,110,99,116,105,111,110,32,100,117,112,108,105,99,97,116,101,84,97,103,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,97,103,115,83,116,97,116,101,46,100,117,112,108,105,99,97,116,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,115,68,117,112,108,105,99,97,116,101,84,97,103,115,58,32,102,117,110,99,116,105,111,110,32,104,97,115,68,117,112,108,105,99,97,116,101,84,97,103,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,117,112,108,105,99,97,116,101,84,97,103,115,46,108,101,110,103,116,104,32,62,32,48,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,110,118,97,108,105,100,84,97,103,115,58,32,102,117,110,99,116,105,111,110,32,105,110,118,97,108,105,100,84,97,103,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,97,103,115,83,116,97,116,101,46,105,110,118,97,108,105,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,115,73,110,118,97,108,105,100,84,97,103,115,58,32,102,117,110,99,116,105,111,110,32,104,97,115,73,110,118,97,108,105,100,84,97,103,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,97,108,105,100,84,97,103,115,46,108,101,110,103,116,104,32,62,32,48,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,76,105,109,105,116,82,101,97,99,104,101,100,58,32,102,117,110,99,116,105,111,110,32,105,115,76,105,109,105,116,82,101,97,99,104,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,105,109,105,116,32,61,32,116,104,105,115,46,108,105,109,105,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,78,117,109,98,101,114,41,40,108,105,109,105,116,41,32,38,38,32,108,105,109,105,116,32,62,61,32,48,32,38,38,32,116,104,105,115,46,116,97,103,115,46,108,101,110,103,116,104,32,62,61,32,108,105,109,105,116,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,116,97,103,115,32,61,32,99,108,101,97,110,84,97,103,115,40,110,101,119,86,97,108,117,101,41,59,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,116,97,103,115,92,34,44,32,102,117,110,99,116,105,111,110,32,116,97,103,115,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,47,47,32,85,112,100,97,116,101,32,116,104,101,32,96,118,45,109,111,100,101,108,96,32,40,105,102,32,105,116,32,100,105,102,102,101,114,115,32,102,114,111,109,32,116,104,101,32,118,97,108,117,101,32,112,114,111,112,41,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,111,110,99,97,116,41,40,110,101,119,86,97,108,117,101,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,32,32,32,32,32,32,111,108,100,86,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,111,110,99,97,116,41,40,111,108,100,86,97,108,117,101,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,114,101,109,111,118,101,100,84,97,103,115,32,61,32,111,108,100,86,97,108,117,101,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,111,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,110,101,119,86,97,108,117,101,44,32,111,108,100,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,116,97,103,115,83,116,97,116,101,92,34,44,32,102,117,110,99,116,105,111,110,32,116,97,103,115,83,116,97,116,101,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,47,47,32,69,109,105,116,32,97,32,116,97,103,45,115,116,97,116,101,32,101,118,101,110,116,32,119,104,101,110,32,116,104,101,32,96,116,97,103,115,83,116,97,116,101,96,32,111,98,106,101,99,116,32,99,104,97,110,103,101,115,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,69,86,69,78,84,95,78,65,77,69,95,84,65,71,95,83,84,65,84,69,44,32,110,101,119,86,97,108,117,101,46,118,97,108,105,100,44,32,110,101,119,86,97,108,117,101,46,105,110,118,97,108,105,100,44,32,110,101,119,86,97,108,117,101,46,100,117,112,108,105,99,97,116,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,87,101,32,100,111,32,116,104,105,115,32,105,110,32,99,114,101,97,116,101,100,32,116,111,32,109,97,107,101,32,115,117,114,101,32,97,110,32,105,110,112,117,116,32,101,118,101,110,116,32,101,109,105,116,115,92,110,32,32,32,32,47,47,32,105,102,32,116,104,101,32,99,108,101,97,110,101,100,32,116,97,103,115,32,97,114,101,32,110,111,116,32,101,113,117,97,108,32,116,111,32,116,104,101,32,118,97,108,117,101,32,112,114,111,112,92,110,32,32,32,32,116,104,105,115,46,116,97,103,115,32,61,32,99,108,101,97,110,84,97,103,115,40,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,41,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,47,47,32,76,105,115,116,101,110,32,102,111,114,32,102,111,114,109,32,114,101,115,101,116,32,101,118,101,110,116,115,44,32,116,111,32,114,101,115,101,116,32,116,104,101,32,116,97,103,115,32,105,110,112,117,116,92,110,32,32,32,32,118,97,114,32,36,102,111,114,109,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,99,108,111,115,101,115,116,41,40,39,102,111,114,109,39,44,32,116,104,105,115,46,36,101,108,41,59,92,110,92,110,32,32,32,32,105,102,32,40,36,102,111,114,109,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,101,118,101,110,116,79,110,41,40,36,102,111,114,109,44,32,39,114,101,115,101,116,39,44,32,116,104,105,115,46,114,101,115,101,116,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,66,69,70,79,82,69,95,68,69,83,84,82,79,89,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,101,118,101,110,116,79,102,102,41,40,36,102,111,114,109,44,32,39,114,101,115,101,116,39,44,32,95,116,104,105,115,50,46,114,101,115,101,116,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,97,100,100,84,97,103,58,32,102,117,110,99,116,105,111,110,32,97,100,100,84,97,103,40,110,101,119,84,97,103,41,32,123,92,110,32,32,32,32,32,32,110,101,119,84,97,103,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,83,116,114,105,110,103,41,40,110,101,119,84,97,103,41,32,63,32,110,101,119,84,97,103,32,58,32,116,104,105,115,46,110,101,119,84,97,103,59,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,114,105,109,41,40,110,101,119,84,97,103,41,32,61,61,61,32,39,39,32,124,124,32,116,104,105,115,46,105,115,76,105,109,105,116,82,101,97,99,104,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,69,97,114,108,121,32,101,120,105,116,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,112,97,114,115,101,100,32,61,32,116,104,105,115,46,112,97,114,115,101,84,97,103,115,40,110,101,119,84,97,103,41,59,32,47,47,32,65,100,100,32,97,110,121,32,110,101,119,32,116,97,103,115,32,116,111,32,116,104,101,32,96,116,97,103,115,96,32,97,114,114,97,121,44,32,111,114,32,105,102,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,97,114,114,97,121,32,111,102,32,96,97,108,108,84,97,103,115,96,32,105,115,32,101,109,112,116,121,44,32,119,101,32,99,108,101,97,114,32,116,104,101,32,105,110,112,117,116,92,110,92,110,32,32,32,32,32,32,105,102,32,40,112,97,114,115,101,100,46,118,97,108,105,100,46,108,101,110,103,116,104,32,62,32,48,32,124,124,32,112,97,114,115,101,100,46,97,108,108,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,108,101,97,114,32,116,104,101,32,117,115,101,114,32,105,110,112,117,116,32,101,108,101,109,101,110,116,32,40,97,110,100,32,108,101,97,118,101,32,105,110,32,97,110,121,32,105,110,118,97,108,105,100,47,100,117,112,108,105,99,97,116,101,32,116,97,103,40,115,41,92,110,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,58,32,102,117,108,108,32,116,101,115,116,105,110,103,32,116,111,32,98,101,32,97,100,100,101,100,32,108,97,116,101,114,32,42,47,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,109,97,116,99,104,101,115,41,40,116,104,105,115,46,103,101,116,73,110,112,117,116,40,41,44,32,39,115,101,108,101,99,116,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,102,111,108,108,111,119,105,110,103,32,105,115,32,110,101,101,100,101,100,32,116,111,32,112,114,111,112,101,114,108,121,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,119,111,114,107,32,119,105,116,104,32,96,60,115,101,108,101,99,116,62,96,32,101,108,101,109,101,110,116,115,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,110,101,119,84,97,103,32,61,32,39,39,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,118,97,108,105,100,65,110,100,68,117,112,108,105,99,97,116,101,115,32,61,32,91,93,46,99,111,110,99,97,116,40,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,112,97,114,115,101,100,46,105,110,118,97,108,105,100,41,44,32,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,112,97,114,115,101,100,46,100,117,112,108,105,99,97,116,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,110,101,119,84,97,103,32,61,32,112,97,114,115,101,100,46,97,108,108,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,116,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,105,110,118,97,108,105,100,65,110,100,68,117,112,108,105,99,97,116,101,115,44,32,116,97,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,46,106,111,105,110,40,116,104,105,115,46,99,111,109,112,117,116,101,100,74,111,105,110,101,114,41,46,99,111,110,99,97,116,40,105,110,118,97,108,105,100,65,110,100,68,117,112,108,105,99,97,116,101,115,46,108,101,110,103,116,104,32,62,32,48,32,63,32,116,104,105,115,46,99,111,109,112,117,116,101,100,74,111,105,110,101,114,46,99,104,97,114,65,116,40,48,41,32,58,32,39,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,112,97,114,115,101,100,46,118,97,108,105,100,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,97,100,100,32,116,104,101,32,110,101,119,32,116,97,103,115,32,105,110,32,111,110,101,32,97,116,111,109,105,99,32,111,112,101,114,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,47,47,32,116,111,32,116,114,105,103,103,101,114,32,114,101,97,99,116,105,118,105,116,121,32,111,110,99,101,32,40,105,110,115,116,101,97,100,32,111,102,32,111,110,99,101,32,112,101,114,32,116,97,103,41,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,100,111,32,116,104,105,115,32,97,102,116,101,114,32,119,101,32,117,112,100,97,116,101,32,116,104,101,32,110,101,119,32,116,97,103,32,105,110,112,117,116,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,47,47,32,96,99,111,110,99,97,116,40,41,96,32,99,97,110,32,98,101,32,102,97,115,116,101,114,32,116,104,97,110,32,97,114,114,97,121,32,115,112,114,101,97,100,44,32,119,104,101,110,32,98,111,116,104,32,97,114,103,115,32,97,114,101,32,97,114,114,97,121,115,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,97,103,115,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,111,110,99,97,116,41,40,116,104,105,115,46,116,97,103,115,44,32,112,97,114,115,101,100,46,118,97,108,105,100,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,116,97,103,115,83,116,97,116,101,32,61,32,112,97,114,115,101,100,59,32,47,47,32,65,116,116,101,109,112,116,32,116,111,32,114,101,45,102,111,99,117,115,32,116,104,101,32,105,110,112,117,116,32,40,115,112,101,99,105,102,105,99,97,108,108,121,32,102,111,114,32,119,104,101,110,32,117,115,105,110,103,32,116,104,101,32,65,100,100,92,110,32,32,32,32,32,32,47,47,32,98,117,116,116,111,110,44,32,97,115,32,116,104,101,32,98,117,116,116,111,110,32,100,105,115,97,112,112,101,97,114,115,32,97,102,116,101,114,32,115,117,99,99,101,115,115,102,117,108,108,121,32,97,100,100,105,110,103,32,97,32,116,97,103,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,102,111,99,117,115,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,109,111,118,101,84,97,103,58,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,84,97,103,40,116,97,103,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,84,79,68,79,58,92,110,32,32,32,32,32,32,47,47,32,32,32,65,100,100,32,96,111,110,82,101,109,111,118,101,84,97,103,40,116,97,103,41,96,32,117,115,101,114,32,109,101,116,104,111,100,44,32,119,104,105,99,104,32,105,102,32,114,101,116,117,114,110,115,32,96,102,97,108,115,101,96,92,110,32,32,32,32,32,32,47,47,32,32,32,119,105,108,108,32,112,114,101,118,101,110,116,32,116,104,101,32,116,97,103,32,102,114,111,109,32,98,101,105,110,103,32,114,101,109,111,118,101,100,32,40,105,46,101,46,32,99,111,110,102,105,114,109,97,116,105,111,110,41,92,110,32,32,32,32,32,32,47,47,32,32,32,79,114,32,101,109,105,116,32,99,97,110,99,101,108,97,98,108,101,32,96,66,118,69,118,101,110,116,96,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,116,97,103,115,32,61,32,116,104,105,115,46,116,97,103,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,32,33,61,61,32,116,97,103,59,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,82,101,116,117,114,110,32,102,111,99,117,115,32,116,111,32,116,104,101,32,105,110,112,117,116,32,40,105,102,32,112,111,115,115,105,98,108,101,41,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,102,111,99,117,115,40,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,115,101,116,58,32,102,117,110,99,116,105,111,110,32,114,101,115,101,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,110,101,119,84,97,103,32,61,32,39,39,59,92,110,32,32,32,32,32,32,116,104,105,115,46,116,97,103,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,114,101,109,111,118,101,100,84,97,103,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,116,97,103,115,83,116,97,116,101,32,61,32,99,108,101,97,110,84,97,103,115,83,116,97,116,101,40,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,45,45,45,32,73,110,112,117,116,32,101,108,101,109,101,110,116,32,101,118,101,110,116,32,104,97,110,100,108,101,114,115,32,45,45,45,92,110,32,32,32,32,111,110,73,110,112,117,116,73,110,112,117,116,58,32,102,117,110,99,116,105,111,110,32,111,110,73,110,112,117,116,73,110,112,117,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,104,97,114,100,32,116,111,32,116,101,115,116,32,99,111,109,112,111,115,105,116,105,111,110,32,101,118,101,110,116,115,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,69,118,101,110,116,41,40,101,118,101,110,116,41,32,38,38,32,101,118,101,110,116,46,116,97,114,103,101,116,46,99,111,109,112,111,115,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,96,101,118,101,110,116,46,116,97,114,103,101,116,46,99,111,109,112,111,115,105,110,103,96,32,105,115,32,115,101,116,32,98,121,32,86,117,101,32,40,96,118,45,109,111,100,101,108,96,32,100,105,114,101,99,116,105,118,101,41,92,110,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,47,98,108,111,98,47,100,101,118,47,115,114,99,47,112,108,97,116,102,111,114,109,115,47,119,101,98,47,114,117,110,116,105,109,101,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,101,108,46,106,115,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,110,101,119,84,97,103,32,61,32,112,114,111,99,101,115,115,69,118,101,110,116,86,97,108,117,101,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,101,112,97,114,97,116,111,114,82,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,101,112,97,114,97,116,111,114,82,101,103,69,120,112,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,110,101,119,84,97,103,32,33,61,61,32,110,101,119,84,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,110,101,119,84,97,103,32,61,32,110,101,119,84,97,103,59,92,110,32,32,32,32,32,32,125,32,47,47,32,87,101,32,105,103,110,111,114,101,32,108,101,97,100,105,110,103,32,119,104,105,116,101,115,112,97,99,101,32,102,111,114,32,116,104,101,32,102,111,108,108,111,119,105,110,103,92,110,92,110,92,110,32,32,32,32,32,32,110,101,119,84,97,103,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,114,105,109,76,101,102,116,41,40,110,101,119,84,97,103,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,101,112,97,114,97,116,111,114,82,101,32,38,38,32,115,101,112,97,114,97,116,111,114,82,101,46,116,101,115,116,40,110,101,119,84,97,103,46,115,108,105,99,101,40,45,49,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,65,32,116,114,97,105,108,105,110,103,32,115,101,112,97,114,97,116,111,114,32,99,104,97,114,97,99,116,101,114,32,119,97,115,32,101,110,116,101,114,101,100,44,32,115,111,32,97,100,100,32,116,104,101,32,116,97,103,40,115,41,92,110,32,32,32,32,32,32,32,32,47,47,32,78,111,116,101,58,32,77,111,114,101,32,116,104,97,110,32,111,110,101,32,116,97,103,32,111,110,32,105,110,112,117,116,32,101,118,101,110,116,32,105,115,32,112,111,115,115,105,98,108,101,32,118,105,97,32,99,111,112,121,47,112,97,115,116,101,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,100,100,84,97,103,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,86,97,108,105,100,97,116,101,32,40,112,97,114,115,101,32,116,97,103,115,41,32,111,110,32,105,110,112,117,116,32,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,97,103,115,83,116,97,116,101,32,61,32,110,101,119,84,97,103,32,61,61,61,32,39,39,32,63,32,99,108,101,97,110,84,97,103,115,83,116,97,116,101,40,41,32,58,32,116,104,105,115,46,112,97,114,115,101,84,97,103,115,40,110,101,119,84,97,103,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,73,110,112,117,116,67,104,97,110,103,101,58,32,102,117,110,99,116,105,111,110,32,111,110,73,110,112,117,116,67,104,97,110,103,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,104,97,110,103,101,32,105,115,32,116,114,105,103,103,101,114,101,100,32,111,110,32,96,60,105,110,112,117,116,62,96,32,98,108,117,114,44,32,111,114,32,96,60,115,101,108,101,99,116,62,96,32,115,101,108,101,99,116,101,100,92,110,32,32,32,32,32,32,47,47,32,84,104,105,115,32,101,118,101,110,116,32,105,115,32,111,112,116,45,105,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,32,38,38,32,116,104,105,115,46,97,100,100,79,110,67,104,97,110,103,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,84,97,103,32,61,32,112,114,111,99,101,115,115,69,118,101,110,116,86,97,108,117,101,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,110,101,119,84,97,103,32,33,61,61,32,110,101,119,84,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,110,101,119,84,97,103,32,61,32,110,101,119,84,97,103,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,100,100,84,97,103,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,73,110,112,117,116,75,101,121,100,111,119,110,58,32,102,117,110,99,116,105,111,110,32,111,110,73,110,112,117,116,75,101,121,100,111,119,110,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,69,97,114,108,121,32,101,120,105,116,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,69,118,101,110,116,41,40,101,118,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,59,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,46,118,97,108,117,101,32,124,124,32,39,39,59,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,58,32,116,101,115,116,105,110,103,32,116,111,32,98,101,32,97,100,100,101,100,32,108,97,116,101,114,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,110,111,65,100,100,79,110,69,110,116,101,114,32,38,38,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,67,79,68,69,95,69,78,84,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,65,116,116,101,109,112,116,32,116,111,32,97,100,100,32,116,104,101,32,116,97,103,32,119,104,101,110,32,117,115,101,114,32,112,114,101,115,115,101,115,32,101,110,116,101,114,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,100,100,84,97,103,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,114,101,109,111,118,101,79,110,68,101,108,101,116,101,32,38,38,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,67,79,68,69,95,66,65,67,75,83,80,65,67,69,32,124,124,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,67,79,68,69,95,68,69,76,69,84,69,41,32,38,38,32,118,97,108,117,101,32,61,61,61,32,39,39,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,116,104,101,32,108,97,115,116,32,116,97,103,32,105,102,32,116,104,101,32,117,115,101,114,32,112,114,101,115,115,101,100,32,98,97,99,107,115,112,97,99,101,47,100,101,108,101,116,101,32,97,110,100,32,116,104,101,32,105,110,112,117,116,32,105,115,32,101,109,112,116,121,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,97,103,115,32,61,32,116,104,105,115,46,116,97,103,115,46,115,108,105,99,101,40,48,44,32,45,49,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,45,45,45,32,87,114,97,112,112,101,114,32,101,118,101,110,116,32,104,97,110,100,108,101,114,115,32,45,45,45,92,110,32,32,32,32,111,110,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,111,110,67,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,53,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,103,110,111,114,101,70,111,99,117,115,83,101,108,101,99,116,111,114,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,73,103,110,111,114,101,73,110,112,117,116,70,111,99,117,115,83,101,108,101,99,116,111,114,59,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,105,115,65,99,116,105,118,101,69,108,101,109,101,110,116,41,40,116,97,114,103,101,116,41,32,38,38,32,40,33,105,103,110,111,114,101,70,111,99,117,115,83,101,108,101,99,116,111,114,32,124,124,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,99,108,111,115,101,115,116,41,40,105,103,110,111,114,101,70,111,99,117,115,83,101,108,101,99,116,111,114,44,32,116,97,114,103,101,116,44,32,116,114,117,101,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,53,46,102,111,99,117,115,40,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,70,111,99,117,115,105,110,58,32,102,117,110,99,116,105,111,110,32,111,110,70,111,99,117,115,105,110,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,104,97,115,70,111,99,117,115,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,70,111,99,117,115,111,117,116,58,32,102,117,110,99,116,105,111,110,32,111,110,70,111,99,117,115,111,117,116,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,104,97,115,70,111,99,117,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,65,117,116,111,102,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,65,117,116,111,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,54,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,54,46,97,117,116,111,102,111,99,117,115,32,38,38,32,33,95,116,104,105,115,54,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,54,46,102,111,99,117,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,45,45,45,32,80,117,98,108,105,99,32,109,101,116,104,111,100,115,32,45,45,45,92,110,32,32,32,32,102,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,104,105,115,46,103,101,116,73,110,112,117,116,40,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,108,117,114,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,97,116,116,101,109,112,116,66,108,117,114,41,40,116,104,105,115,46,103,101,116,73,110,112,117,116,40,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,45,45,45,32,80,114,105,118,97,116,101,32,109,101,116,104,111,100,115,32,45,45,45,92,110,32,32,32,32,115,112,108,105,116,84,97,103,115,58,32,102,117,110,99,116,105,111,110,32,115,112,108,105,116,84,97,103,115,40,110,101,119,84,97,103,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,112,108,105,116,32,116,104,101,32,105,110,112,117,116,32,105,110,116,111,32,97,110,32,97,114,114,97,121,32,111,102,32,114,97,119,32,116,97,103,115,92,110,32,32,32,32,32,32,110,101,119,84,97,103,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,83,116,114,105,110,103,41,40,110,101,119,84,97,103,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,101,112,97,114,97,116,111,114,82,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,101,112,97,114,97,116,111,114,82,101,103,69,120,112,59,32,47,47,32,83,112,108,105,116,32,116,104,101,32,116,97,103,40,115,41,32,118,105,97,32,116,104,101,32,111,112,116,105,111,110,97,108,32,115,101,112,97,114,97,116,111,114,92,110,32,32,32,32,32,32,47,47,32,78,111,114,109,97,108,108,121,32,111,110,108,121,32,97,32,115,105,110,103,108,101,32,116,97,103,32,105,115,32,112,114,111,118,105,100,101,100,44,32,98,117,116,32,99,111,112,121,47,112,97,115,116,101,92,110,32,32,32,32,32,32,47,47,32,99,97,110,32,101,110,116,101,114,32,109,117,108,116,105,112,108,101,32,116,97,103,115,32,105,110,32,97,32,115,105,110,103,108,101,32,111,112,101,114,97,116,105,111,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,115,101,112,97,114,97,116,111,114,82,101,32,63,32,110,101,119,84,97,103,46,115,112,108,105,116,40,115,101,112,97,114,97,116,111,114,82,101,41,32,58,32,91,110,101,119,84,97,103,93,41,46,109,97,112,40,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,114,105,109,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,97,114,115,101,84,97,103,115,58,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,84,97,103,115,40,110,101,119,84,97,103,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,55,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,84,97,107,101,115,32,96,110,101,119,84,97,103,96,32,118,97,108,117,101,32,97,110,100,32,112,97,114,115,101,115,32,105,116,32,105,110,116,111,32,96,118,97,108,105,100,84,97,103,115,96,44,92,110,32,32,32,32,32,32,47,47,32,96,105,110,118,97,108,105,100,84,97,103,115,96,44,32,97,110,100,32,100,117,112,108,105,99,97,116,101,32,116,97,103,115,32,97,115,32,97,110,32,111,98,106,101,99,116,92,110,32,32,32,32,32,32,47,47,32,83,112,108,105,116,32,116,104,101,32,105,110,112,117,116,32,105,110,116,111,32,114,97,119,32,116,97,103,115,92,110,32,32,32,32,32,32,118,97,114,32,116,97,103,115,32,61,32,116,104,105,115,46,115,112,108,105,116,84,97,103,115,40,110,101,119,84,97,103,41,59,32,47,47,32,66,97,115,101,32,114,101,115,117,108,116,115,92,110,92,110,32,32,32,32,32,32,118,97,114,32,112,97,114,115,101,100,32,61,32,123,92,110,32,32,32,32,32,32,32,32,97,108,108,58,32,116,97,103,115,44,92,110,32,32,32,32,32,32,32,32,118,97,108,105,100,58,32,91,93,44,92,110,32,32,32,32,32,32,32,32,105,110,118,97,108,105,100,58,32,91,93,44,92,110,32,32,32,32,32,32,32,32,100,117,112,108,105,99,97,116,101,58,32,91,93,92,110,32,32,32,32,32,32,125,59,32,47,47,32,80,97,114,115,101,32,116,104,101,32,117,110,105,113,117,101,32,116,97,103,115,92,110,92,110,32,32,32,32,32,32,116,97,103,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,95,116,104,105,115,55,46,116,97,103,115,44,32,116,97,103,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,112,97,114,115,101,100,46,118,97,108,105,100,44,32,116,97,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,85,110,105,113,117,101,32,100,117,112,108,105,99,97,116,101,32,116,97,103,115,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,112,97,114,115,101,100,46,100,117,112,108,105,99,97,116,101,44,32,116,97,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,100,117,112,108,105,99,97,116,101,46,112,117,115,104,40,116,97,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,95,116,104,105,115,55,46,118,97,108,105,100,97,116,101,84,97,103,40,116,97,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,97,100,100,32,117,110,105,113,117,101,47,118,97,108,105,100,32,116,97,103,115,92,110,32,32,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,118,97,108,105,100,46,112,117,115,104,40,116,97,103,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,85,110,105,113,117,101,32,105,110,118,97,108,105,100,32,116,97,103,115,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,112,97,114,115,101,100,46,105,110,118,97,108,105,100,44,32,116,97,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,105,110,118,97,108,105,100,46,112,117,115,104,40,116,97,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,114,115,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,118,97,108,105,100,97,116,101,84,97,103,58,32,102,117,110,99,116,105,111,110,32,118,97,108,105,100,97,116,101,84,97,103,40,116,97,103,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,97,103,86,97,108,105,100,97,116,111,114,32,61,32,116,104,105,115,46,116,97,103,86,97,108,105,100,97,116,111,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,104,97,115,80,114,111,112,70,117,110,99,116,105,111,110,41,40,116,97,103,86,97,108,105,100,97,116,111,114,41,32,63,32,116,97,103,86,97,108,105,100,97,116,111,114,40,116,97,103,41,32,58,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,73,110,112,117,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,73,110,112,117,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,112,117,116,32,101,108,101,109,101,110,116,32,114,101,102,101,114,101,110,99,101,32,40,111,114,32,110,117,108,108,32,105,102,32,110,111,116,32,102,111,117,110,100,41,92,110,32,32,32,32,32,32,47,47,32,87,101,32,110,101,101,100,32,116,111,32,101,115,99,97,112,101,32,96,99,111,109,112,117,116,101,100,73,110,112,117,116,73,100,96,32,115,105,110,99,101,32,105,116,32,99,97,110,32,98,101,32,117,115,101,114,45,112,114,111,118,105,100,101,100,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,115,101,108,101,99,116,41,40,92,34,35,92,34,46,99,111,110,99,97,116,40,40,48,44,95,117,116,105,108,115,95,99,115,115,95,101,115,99,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,99,115,115,69,115,99,97,112,101,41,40,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,112,117,116,73,100,41,41,44,32,116,104,105,115,46,36,101,108,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,85,115,101,114,32,73,110,116,101,114,102,97,99,101,32,114,101,110,100,101,114,92,110,32,32,32,32,100,101,102,97,117,108,116,82,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,82,101,110,100,101,114,40,95,114,101,102,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,100,100,66,117,116,116,111,110,84,101,120,116,32,61,32,95,114,101,102,46,97,100,100,66,117,116,116,111,110,84,101,120,116,44,92,110,32,32,32,32,32,32,32,32,32,32,97,100,100,66,117,116,116,111,110,86,97,114,105,97,110,116,32,61,32,95,114,101,102,46,97,100,100,66,117,116,116,111,110,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,97,100,100,84,97,103,32,61,32,95,114,101,102,46,97,100,100,84,97,103,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,65,100,100,66,117,116,116,111,110,32,61,32,95,114,101,102,46,100,105,115,97,98,108,101,65,100,100,66,117,116,116,111,110,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,95,114,101,102,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,100,117,112,108,105,99,97,116,101,84,97,103,84,101,120,116,32,61,32,95,114,101,102,46,100,117,112,108,105,99,97,116,101,84,97,103,84,101,120,116,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,112,117,116,65,116,116,114,115,32,61,32,95,114,101,102,46,105,110,112,117,116,65,116,116,114,115,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,112,117,116,67,108,97,115,115,32,61,32,95,114,101,102,46,105,110,112,117,116,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,112,117,116,72,97,110,100,108,101,114,115,32,61,32,95,114,101,102,46,105,110,112,117,116,72,97,110,100,108,101,114,115,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,112,117,116,84,121,112,101,32,61,32,95,114,101,102,46,105,110,112,117,116,84,121,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,118,97,108,105,100,84,97,103,84,101,120,116,32,61,32,95,114,101,102,46,105,110,118,97,108,105,100,84,97,103,84,101,120,116,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,68,117,112,108,105,99,97,116,101,32,61,32,95,114,101,102,46,105,115,68,117,112,108,105,99,97,116,101,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,73,110,118,97,108,105,100,32,61,32,95,114,101,102,46,105,115,73,110,118,97,108,105,100,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,76,105,109,105,116,82,101,97,99,104,101,100,32,61,32,95,114,101,102,46,105,115,76,105,109,105,116,82,101,97,99,104,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,108,105,109,105,116,84,97,103,115,84,101,120,116,32,61,32,95,114,101,102,46,108,105,109,105,116,84,97,103,115,84,101,120,116,44,92,110,32,32,32,32,32,32,32,32,32,32,110,111,84,97,103,82,101,109,111,118,101,32,61,32,95,114,101,102,46,110,111,84,97,103,82,101,109,111,118,101,44,92,110,32,32,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,32,61,32,95,114,101,102,46,112,108,97,99,101,104,111,108,100,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,84,97,103,32,61,32,95,114,101,102,46,114,101,109,111,118,101,84,97,103,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,103,67,108,97,115,115,32,61,32,95,114,101,102,46,116,97,103,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,103,80,105,108,108,115,32,61,32,95,114,101,102,46,116,97,103,80,105,108,108,115,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,103,82,101,109,111,118,101,76,97,98,101,108,32,61,32,95,114,101,102,46,116,97,103,82,101,109,111,118,101,76,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,103,86,97,114,105,97,110,116,32,61,32,95,114,101,102,46,116,97,103,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,103,115,32,61,32,95,114,101,102,46,116,97,103,115,59,92,110,32,32,32,32,32,32,118,97,114,32,104,32,61,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,32,47,47,32,77,97,107,101,32,116,104,101,32,108,105,115,116,32,111,102,32,116,97,103,115,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,116,97,103,115,32,61,32,116,97,103,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,116,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,116,97,103,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,83,116,114,105,110,103,41,40,116,97,103,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,95,102,111,114,109,95,116,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,66,70,111,114,109,84,97,103,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,97,103,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,96,66,70,111,114,109,84,97,103,96,32,119,105,108,108,32,97,117,116,111,32,103,101,110,101,114,97,116,101,32,97,110,32,73,68,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,115,111,32,119,101,32,100,111,32,110,111,116,32,110,101,101,100,32,116,111,32,115,101,116,32,116,104,101,32,73,68,32,112,114,111,112,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,111,82,101,109,111,118,101,58,32,110,111,84,97,103,82,101,109,111,118,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,105,108,108,58,32,116,97,103,80,105,108,108,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,76,97,98,101,108,58,32,116,97,103,82,101,109,111,118,101,76,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,58,32,39,108,105,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,116,97,103,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,116,97,103,86,97,114,105,97,110,116,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,58,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,109,111,118,101,84,97,103,40,116,97,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,116,97,103,115,95,92,34,46,99,111,110,99,97,116,40,116,97,103,41,92,110,32,32,32,32,32,32,32,32,125,44,32,116,97,103,41,59,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,70,101,101,100,98,97,99,107,32,73,68,115,32,105,102,32,110,101,101,100,101,100,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,73,100,32,61,32,105,110,118,97,108,105,100,84,97,103,84,101,120,116,32,38,38,32,105,115,73,110,118,97,108,105,100,32,63,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,105,110,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,39,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,118,97,114,32,100,117,112,108,105,99,97,116,101,70,101,101,100,98,97,99,107,73,100,32,61,32,100,117,112,108,105,99,97,116,101,84,97,103,84,101,120,116,32,38,38,32,105,115,68,117,112,108,105,99,97,116,101,32,63,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,100,117,112,108,105,99,97,116,101,95,102,101,101,100,98,97,99,107,95,95,39,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,118,97,114,32,108,105,109,105,116,70,101,101,100,98,97,99,107,73,100,32,61,32,108,105,109,105,116,84,97,103,115,84,101,120,116,32,38,38,32,105,115,76,105,109,105,116,82,101,97,99,104,101,100,32,63,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,108,105,109,105,116,95,102,101,101,100,98,97,99,107,95,95,39,41,32,58,32,110,117,108,108,59,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,96,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,96,32,97,116,116,114,105,98,117,116,101,32,118,97,108,117,101,92,110,92,110,32,32,32,32,32,32,118,97,114,32,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,32,61,32,91,105,110,112,117,116,65,116,116,114,115,91,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,93,44,32,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,73,100,44,32,100,117,112,108,105,99,97,116,101,70,101,101,100,98,97,99,107,73,100,44,32,108,105,109,105,116,70,101,101,100,98,97,99,107,73,100,93,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,32,39,41,59,32,47,47,32,73,110,112,117,116,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,105,110,112,117,116,32,61,32,104,40,39,105,110,112,117,116,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,111,114,109,45,116,97,103,115,45,105,110,112,117,116,32,119,45,49,48,48,32,102,108,101,120,45,103,114,111,119,45,49,32,112,45,48,32,109,45,48,32,98,103,45,116,114,97,110,115,112,97,114,101,110,116,32,98,111,114,100,101,114,45,48,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,105,110,112,117,116,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,111,117,116,108,105,110,101,58,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,109,105,110,87,105,100,116,104,58,32,39,53,114,101,109,39,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,105,110,112,117,116,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,58,32,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,58,32,105,110,112,117,116,84,121,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,112,108,97,99,101,104,111,108,100,101,114,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,105,110,112,117,116,65,116,116,114,115,46,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,105,110,112,117,116,72,97,110,100,108,101,114,115,44,92,110,32,32,32,32,32,32,32,32,47,47,32,68,105,114,101,99,116,105,118,101,32,110,101,101,100,101,100,32,116,111,32,103,101,116,32,96,101,118,101,110,116,46,116,97,114,103,101,116,46,99,111,109,112,111,115,105,110,103,96,32,115,101,116,32,40,105,102,32,110,101,101,100,101,100,41,92,110,32,32,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,39,109,111,100,101,108,39,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,105,110,112,117,116,65,116,116,114,115,46,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,39,105,110,112,117,116,39,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,65,100,100,32,98,117,116,116,111,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,98,117,116,116,111,110,32,61,32,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,66,66,117,116,116,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,111,114,109,45,116,97,103,115,45,98,117,116,116,111,110,32,112,121,45,48,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,79,110,108,121,32,115,104,111,119,32,116,104,101,32,98,117,116,116,111,110,32,105,102,32,116,104,101,32,116,97,103,32,99,97,110,32,98,101,32,97,100,100,101,100,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,117,115,101,32,116,104,101,32,96,105,110,118,105,115,105,98,108,101,96,32,99,108,97,115,115,32,105,110,115,116,101,97,100,32,111,102,32,110,111,116,32,114,101,110,100,101,114,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,116,104,101,32,98,117,116,116,111,110,44,32,115,111,32,116,104,97,116,32,119,101,32,109,97,105,110,116,97,105,110,32,108,97,121,111,117,116,32,116,111,32,112,114,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,116,104,101,32,117,115,101,114,32,105,110,112,117,116,32,102,114,111,109,32,106,117,109,112,105,110,103,32,97,114,111,117,110,100,92,110,32,32,32,32,32,32,32,32,32,32,105,110,118,105,115,105,98,108,101,58,32,100,105,115,97,98,108,101,65,100,100,66,117,116,116,111,110,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,111,110,116,83,105,122,101,58,32,39,57,48,37,39,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,65,100,100,66,117,116,116,111,110,32,124,124,32,105,115,76,105,109,105,116,82,101,97,99,104,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,97,100,100,66,117,116,116,111,110,86,97,114,105,97,110,116,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,100,100,84,97,103,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,39,98,117,116,116,111,110,39,92,110,32,32,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,83,76,79,84,95,78,65,77,69,95,65,68,68,95,66,85,84,84,79,78,95,84,69,88,84,41,32,124,124,32,97,100,100,66,117,116,116,111,110,84,101,120,116,93,41,59,32,47,47,32,73,68,32,111,102,32,116,104,101,32,116,97,103,115,32,43,32,105,110,112,117,116,32,96,60,117,108,62,96,32,108,105,115,116,92,110,32,32,32,32,32,32,47,47,32,78,111,116,101,32,119,101,32,99,111,117,108,100,32,99,111,110,99,97,116,101,110,97,116,101,32,96,105,110,112,117,116,65,116,116,114,115,46,105,100,96,32,119,105,116,104,32,39,95,95,116,97,103,95,108,105,115,116,95,95,39,92,110,32,32,32,32,32,32,47,47,32,98,117,116,32,96,105,110,112,117,116,73,100,96,32,109,97,121,32,98,101,32,96,110,117,108,108,96,32,117,110,116,105,108,32,97,102,116,101,114,32,109,111,117,110,116,92,110,32,32,32,32,32,32,47,47,32,96,115,97,102,101,73,100,40,41,96,32,114,101,116,117,114,110,115,32,96,110,117,108,108,96,44,32,105,102,32,110,111,32,117,115,101,114,32,112,114,111,118,105,100,101,100,32,73,68,44,92,110,32,32,32,32,32,32,47,47,32,117,110,116,105,108,32,97,102,116,101,114,32,109,111,117,110,116,32,119,104,101,110,32,97,32,117,110,105,113,117,101,32,73,68,32,105,115,32,103,101,110,101,114,97,116,101,100,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,97,103,76,105,115,116,73,100,32,61,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,116,97,103,95,108,105,115,116,95,95,39,41,59,92,110,32,32,32,32,32,32,118,97,114,32,36,102,105,101,108,100,32,61,32,104,40,39,108,105,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,114,111,109,45,116,97,103,115,45,102,105,101,108,100,32,102,108,101,120,45,103,114,111,119,45,49,39,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,110,111,110,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,39,111,102,102,39,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,111,110,116,114,111,108,115,39,58,32,116,97,103,76,105,115,116,73,100,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,97,103,115,95,102,105,101,108,100,39,92,110,32,32,32,32,32,32,125,44,32,91,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,100,45,102,108,101,120,39,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,103,114,111,117,112,39,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,36,105,110,112,117,116,44,32,36,98,117,116,116,111,110,93,41,93,41,59,32,47,47,32,87,114,97,112,32,105,110,32,97,110,32,117,110,111,114,100,101,114,101,100,32,108,105,115,116,32,101,108,101,109,101,110,116,32,40,119,101,32,117,115,101,32,97,32,108,105,115,116,32,102,111,114,32,97,99,99,101,115,115,105,98,105,108,105,116,121,41,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,117,108,32,61,32,104,40,39,117,108,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,111,114,109,45,116,97,103,115,45,108,105,115,116,32,108,105,115,116,45,117,110,115,116,121,108,101,100,32,109,98,45,48,32,100,45,102,108,101,120,32,102,108,101,120,45,119,114,97,112,32,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,39,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,116,97,103,76,105,115,116,73,100,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,97,103,115,95,108,105,115,116,39,92,110,32,32,32,32,32,32,125,44,32,91,36,116,97,103,115,44,32,36,102,105,101,108,100,93,41,59,32,47,47,32,65,115,115,101,109,98,108,101,32,116,104,101,32,102,101,101,100,98,97,99,107,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,102,101,101,100,98,97,99,107,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,110,118,97,108,105,100,84,97,103,84,101,120,116,32,124,124,32,100,117,112,108,105,99,97,116,101,84,97,103,84,101,120,116,32,124,124,32,108,105,109,105,116,84,97,103,115,84,101,120,116,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,97,110,32,97,114,105,97,32,108,105,118,101,32,114,101,103,105,111,110,32,102,111,114,32,116,104,101,32,105,110,118,97,108,105,100,47,100,117,112,108,105,99,97,116,101,32,116,97,103,92,110,32,32,32,32,32,32,32,32,47,47,32,109,101,115,115,97,103,101,115,32,105,102,32,116,104,101,32,117,115,101,114,32,104,97,115,32,110,111,116,32,100,105,115,97,98,108,101,100,32,116,104,101,32,109,101,115,115,97,103,101,115,92,110,32,32,32,32,32,32,32,32,118,97,114,32,106,111,105,110,101,114,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,74,111,105,110,101,114,59,32,47,47,32,73,110,118,97,108,105,100,32,116,97,103,32,102,101,101,100,98,97,99,107,32,105,102,32,110,101,101,100,101,100,32,40,101,114,114,111,114,41,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,36,105,110,118,97,108,105,100,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,73,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,36,105,110,118,97,108,105,100,32,61,32,104,40,95,102,111,114,109,95,102,111,114,109,95,105,110,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,66,70,111,114,109,73,110,118,97,108,105,100,70,101,101,100,98,97,99,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,99,101,83,104,111,119,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,97,103,115,95,105,110,118,97,108,105,100,95,102,101,101,100,98,97,99,107,39,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,91,116,104,105,115,46,105,110,118,97,108,105,100,84,97,103,84,101,120,116,44,32,39,58,32,39,44,32,116,104,105,115,46,105,110,118,97,108,105,100,84,97,103,115,46,106,111,105,110,40,106,111,105,110,101,114,41,93,41,59,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,68,117,112,108,105,99,97,116,101,32,116,97,103,32,102,101,101,100,98,97,99,107,32,105,102,32,110,101,101,100,101,100,32,40,119,97,114,110,105,110,103,44,32,110,111,116,32,101,114,114,111,114,41,92,110,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,36,100,117,112,108,105,99,97,116,101,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,117,112,108,105,99,97,116,101,70,101,101,100,98,97,99,107,73,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,36,100,117,112,108,105,99,97,116,101,32,61,32,104,40,95,102,111,114,109,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,66,70,111,114,109,84,101,120,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,100,117,112,108,105,99,97,116,101,70,101,101,100,98,97,99,107,73,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,97,103,115,95,100,117,112,108,105,99,97,116,101,95,102,101,101,100,98,97,99,107,39,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,91,116,104,105,115,46,100,117,112,108,105,99,97,116,101,84,97,103,84,101,120,116,44,32,39,58,32,39,44,32,116,104,105,115,46,100,117,112,108,105,99,97,116,101,84,97,103,115,46,106,111,105,110,40,106,111,105,110,101,114,41,93,41,59,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,76,105,109,105,116,32,116,97,103,115,32,102,101,101,100,98,97,99,107,32,105,102,32,110,101,101,100,101,100,32,40,119,97,114,110,105,110,103,44,32,110,111,116,32,101,114,114,111,114,41,92,110,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,36,108,105,109,105,116,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,105,109,105,116,70,101,101,100,98,97,99,107,73,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,36,108,105,109,105,116,32,61,32,104,40,95,102,111,114,109,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,66,70,111,114,109,84,101,120,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,108,105,109,105,116,70,101,101,100,98,97,99,107,73,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,97,103,115,95,108,105,109,105,116,95,102,101,101,100,98,97,99,107,39,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,91,108,105,109,105,116,84,97,103,115,84,101,120,116,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,36,102,101,101,100,98,97,99,107,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,39,112,111,108,105,116,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,97,116,111,109,105,99,39,58,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,97,103,115,95,102,101,101,100,98,97,99,107,39,92,110,32,32,32,32,32,32,32,32,125,44,32,91,36,105,110,118,97,108,105,100,44,32,36,100,117,112,108,105,99,97,116,101,44,32,36,108,105,109,105,116,93,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,99,111,110,116,101,110,116,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,36,117,108,44,32,36,102,101,101,100,98,97,99,107,93,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,116,104,105,115,46,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,32,61,32,116,104,105,115,46,114,101,113,117,105,114,101,100,44,92,110,32,32,32,32,32,32,32,32,102,111,114,109,32,61,32,116,104,105,115,46,102,111,114,109,44,92,110,32,32,32,32,32,32,32,32,116,97,103,115,32,61,32,116,104,105,115,46,116,97,103,115,44,92,110,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,73,110,112,117,116,73,100,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,112,117,116,73,100,44,92,110,32,32,32,32,32,32,32,32,104,97,115,70,111,99,117,115,32,61,32,116,104,105,115,46,104,97,115,70,111,99,117,115,44,92,110,32,32,32,32,32,32,32,32,110,111,79,117,116,101,114,70,111,99,117,115,32,61,32,116,104,105,115,46,110,111,79,117,116,101,114,70,111,99,117,115,59,32,47,47,32,83,99,111,112,101,100,32,115,108,111,116,32,112,114,111,112,101,114,116,105,101,115,92,110,92,110,32,32,32,32,118,97,114,32,115,99,111,112,101,32,61,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,47,47,32,65,114,114,97,121,32,111,102,32,116,97,103,115,32,40,115,104,97,108,108,111,119,32,99,111,112,121,32,116,111,32,112,114,101,118,101,110,116,32,109,117,116,97,116,105,111,110,115,41,92,110,32,32,32,32,32,32,116,97,103,115,58,32,116,97,103,115,46,115,108,105,99,101,40,41,44,92,110,32,32,32,32,32,32,47,47,32,60,105,110,112,117,116,62,32,118,45,98,105,110,100,58,105,110,112,117,116,65,116,116,114,115,92,110,32,32,32,32,32,32,105,110,112,117,116,65,116,116,114,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,112,117,116,65,116,116,114,115,44,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,111,110,39,116,32,105,110,99,108,117,100,101,32,116,104,105,115,32,105,110,32,116,104,101,32,97,116,116,114,115,44,32,97,115,32,117,115,101,114,115,32,109,97,121,32,119,97,110,116,32,116,111,32,111,118,101,114,114,105,100,101,32,116,104,105,115,92,110,32,32,32,32,32,32,105,110,112,117,116,84,121,112,101,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,112,117,116,84,121,112,101,44,92,110,32,32,32,32,32,32,47,47,32,60,105,110,112,117,116,62,32,118,45,111,110,58,105,110,112,117,116,72,97,110,100,108,101,114,115,92,110,32,32,32,32,32,32,105,110,112,117,116,72,97,110,100,108,101,114,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,112,117,116,72,97,110,100,108,101,114,115,44,92,110,32,32,32,32,32,32,47,47,32,77,101,116,104,111,100,115,92,110,32,32,32,32,32,32,114,101,109,111,118,101,84,97,103,58,32,116,104,105,115,46,114,101,109,111,118,101,84,97,103,44,92,110,32,32,32,32,32,32,97,100,100,84,97,103,58,32,116,104,105,115,46,97,100,100,84,97,103,44,92,110,32,32,32,32,32,32,114,101,115,101,116,58,32,116,104,105,115,46,114,101,115,101,116,44,92,110,32,32,32,32,32,32,47,47,32,60,105,110,112,117,116,62,32,58,105,100,61,92,34,105,110,112,117,116,73,100,92,34,92,110,32,32,32,32,32,32,105,110,112,117,116,73,100,58,32,99,111,109,112,117,116,101,100,73,110,112,117,116,73,100,44,92,110,32,32,32,32,32,32,47,47,32,73,110,118,97,108,105,100,47,68,117,112,108,105,99,97,116,101,32,115,116,97,116,101,32,105,110,102,111,114,109,97,116,105,111,110,92,110,32,32,32,32,32,32,105,115,73,110,118,97,108,105,100,58,32,116,104,105,115,46,104,97,115,73,110,118,97,108,105,100,84,97,103,115,44,92,110,32,32,32,32,32,32,105,110,118,97,108,105,100,84,97,103,115,58,32,116,104,105,115,46,105,110,118,97,108,105,100,84,97,103,115,46,115,108,105,99,101,40,41,44,92,110,32,32,32,32,32,32,105,115,68,117,112,108,105,99,97,116,101,58,32,116,104,105,115,46,104,97,115,68,117,112,108,105,99,97,116,101,84,97,103,115,44,92,110,32,32,32,32,32,32,100,117,112,108,105,99,97,116,101,84,97,103,115,58,32,116,104,105,115,46,100,117,112,108,105,99,97,116,101,84,97,103,115,46,115,108,105,99,101,40,41,44,92,110,32,32,32,32,32,32,105,115,76,105,109,105,116,82,101,97,99,104,101,100,58,32,116,104,105,115,46,105,115,76,105,109,105,116,82,101,97,99,104,101,100,44,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,39,65,100,100,39,32,98,117,116,116,111,110,32,115,104,111,117,108,100,32,98,101,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,100,105,115,97,98,108,101,65,100,100,66,117,116,116,111,110,58,32,116,104,105,115,46,100,105,115,97,98,108,101,65,100,100,66,117,116,116,111,110,92,110,32,32,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,112,105,99,107,41,40,116,104,105,115,46,36,112,114,111,112,115,44,32,91,39,97,100,100,66,117,116,116,111,110,84,101,120,116,39,44,32,39,97,100,100,66,117,116,116,111,110,86,97,114,105,97,110,116,39,44,32,39,100,105,115,97,98,108,101,100,39,44,32,39,100,117,112,108,105,99,97,116,101,84,97,103,84,101,120,116,39,44,32,39,102,111,114,109,39,44,32,39,105,110,112,117,116,67,108,97,115,115,39,44,32,39,105,110,118,97,108,105,100,84,97,103,84,101,120,116,39,44,32,39,108,105,109,105,116,39,44,32,39,108,105,109,105,116,84,97,103,115,84,101,120,116,39,44,32,39,110,111,84,97,103,82,101,109,111,118,101,39,44,32,39,112,108,97,99,101,104,111,108,100,101,114,39,44,32,39,114,101,113,117,105,114,101,100,39,44,32,39,115,101,112,97,114,97,116,111,114,39,44,32,39,115,105,122,101,39,44,32,39,115,116,97,116,101,39,44,32,39,116,97,103,67,108,97,115,115,39,44,32,39,116,97,103,80,105,108,108,115,39,44,32,39,116,97,103,82,101,109,111,118,101,76,97,98,101,108,39,44,32,39,116,97,103,86,97,114,105,97,110,116,39,93,41,41,59,32,47,47,32,71,101,110,101,114,97,116,101,32,116,104,101,32,117,115,101,114,32,105,110,116,101,114,102,97,99,101,92,110,92,110,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,115,99,111,112,101,41,32,124,124,32,116,104,105,115,46,100,101,102,97,117,108,116,82,101,110,100,101,114,40,115,99,111,112,101,41,59,32,47,47,32,71,101,110,101,114,97,116,101,32,116,104,101,32,96,97,114,105,97,45,108,105,118,101,96,32,114,101,103,105,111,110,32,102,111,114,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,40,115,41,92,110,92,110,32,32,32,32,118,97,114,32,36,111,117,116,112,117,116,32,61,32,104,40,39,111,117,116,112,117,116,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,115,114,45,111,110,108,121,39,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,115,101,108,101,99,116,101,100,95,116,97,103,115,95,95,39,41,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,115,116,97,116,117,115,39,44,92,110,32,32,32,32,32,32,32,32,102,111,114,58,32,99,111,109,112,117,116,101,100,73,110,112,117,116,73,100,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,104,97,115,70,111,99,117,115,32,63,32,39,112,111,108,105,116,101,39,32,58,32,39,111,102,102,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,97,116,111,109,105,99,39,58,32,39,116,114,117,101,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,101,108,101,118,97,110,116,39,58,32,39,97,100,100,105,116,105,111,110,115,32,116,101,120,116,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,116,104,105,115,46,116,97,103,115,46,106,111,105,110,40,39,44,32,39,41,41,59,32,47,47,32,82,101,109,111,118,101,100,32,116,97,103,32,108,105,118,101,32,114,101,103,105,111,110,92,110,92,110,32,32,32,32,118,97,114,32,36,114,101,109,111,118,101,100,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,115,114,45,111,110,108,121,39,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,114,101,109,111,118,101,100,95,116,97,103,115,95,95,39,41,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,115,116,97,116,117,115,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,104,97,115,70,111,99,117,115,32,63,32,39,97,115,115,101,114,116,105,118,101,39,32,58,32,39,111,102,102,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,97,116,111,109,105,99,39,58,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,116,104,105,115,46,114,101,109,111,118,101,100,84,97,103,115,46,108,101,110,103,116,104,32,62,32,48,32,63,32,92,34,40,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,116,97,103,82,101,109,111,118,101,100,76,97,98,101,108,44,32,92,34,41,32,92,34,41,46,99,111,110,99,97,116,40,116,104,105,115,46,114,101,109,111,118,101,100,84,97,103,115,46,106,111,105,110,40,39,44,32,39,41,41,32,58,32,39,39,41,59,32,47,47,32,65,100,100,32,104,105,100,100,101,110,32,105,110,112,117,116,115,32,102,111,114,32,102,111,114,109,32,115,117,98,109,105,115,115,105,111,110,92,110,92,110,32,32,32,32,118,97,114,32,36,104,105,100,100,101,110,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,110,97,109,101,32,38,38,32,33,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,97,100,100,32,104,105,100,100,101,110,32,105,110,112,117,116,115,32,102,111,114,32,101,97,99,104,32,116,97,103,32,105,102,32,97,32,110,97,109,101,32,105,115,32,112,114,111,118,105,100,101,100,92,110,32,32,32,32,32,32,47,47,32,87,104,101,110,32,116,104,101,114,101,32,97,114,101,32,99,117,114,114,101,110,116,108,121,32,110,111,32,116,97,103,115,44,32,97,32,118,105,115,117,97,108,108,121,32,104,105,100,100,101,110,32,105,110,112,117,116,92,110,32,32,32,32,32,32,47,47,32,119,105,116,104,32,101,109,112,116,121,32,118,97,108,117,101,32,105,115,32,114,101,110,100,101,114,101,100,32,102,111,114,32,112,114,111,112,101,114,32,114,101,113,117,105,114,101,100,32,104,97,110,100,108,105,110,103,92,110,32,32,32,32,32,32,118,97,114,32,104,97,115,84,97,103,115,32,61,32,116,97,103,115,46,108,101,110,103,116,104,32,62,32,48,59,92,110,32,32,32,32,32,32,36,104,105,100,100,101,110,32,61,32,40,104,97,115,84,97,103,115,32,63,32,116,97,103,115,32,58,32,91,39,39,93,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,116,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,105,110,112,117,116,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,115,114,45,111,110,108,121,39,58,32,33,104,97,115,84,97,103,115,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,58,32,104,97,115,84,97,103,115,32,63,32,39,104,105,100,100,101,110,39,32,58,32,39,116,101,120,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,97,103,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,58,32,114,101,113,117,105,114,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,58,32,102,111,114,109,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,116,97,103,95,105,110,112,117,116,95,92,34,46,99,111,110,99,97,116,40,116,97,103,41,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,114,101,110,100,101,114,101,100,32,111,117,116,112,117,116,92,110,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,111,114,109,45,116,97,103,115,32,102,111,114,109,45,99,111,110,116,114,111,108,32,104,45,97,117,116,111,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,58,32,104,97,115,70,111,99,117,115,32,38,38,32,33,110,111,79,117,116,101,114,70,111,99,117,115,32,38,38,32,33,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,115,105,122,101,70,111,114,109,67,108,97,115,115,44,32,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,103,114,111,117,112,39,44,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,100,105,115,97,98,108,101,100,32,124,124,32,110,111,79,117,116,101,114,70,111,99,117,115,32,63,32,110,117,108,108,32,58,32,39,45,49,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,58,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,115,101,108,101,99,116,101,100,95,116,97,103,115,95,95,39,41,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,67,108,105,99,107,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,105,110,58,32,116,104,105,115,46,111,110,70,111,99,117,115,105,110,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,111,117,116,58,32,116,104,105,115,46,111,110,70,111,99,117,115,111,117,116,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,111,117,116,112,117,116,44,32,36,114,101,109,111,118,101,100,44,32,36,99,111,110,116,101,110,116,44,32,36,104,105,100,100,101,110,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,102,111,114,109,45,116,97,103,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,84,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,116,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,84,97,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,84,97,103,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,116,97,103,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,84,97,103,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,84,97,103,115,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,111,114,109,84,97,103,115,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,116,97,103,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,116,97,103,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,102,111,114,109,45,116,97,103,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,116,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,116,97,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,102,111,114,109,45,116,97,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,70,111,114,109,84,97,103,115,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,70,111,114,109,84,97,103,115,58,32,95,102,111,114,109,95,116,97,103,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,84,97,103,115,44,92,110,32,32,32,32,66,84,97,103,115,58,32,95,102,111,114,109,95,116,97,103,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,84,97,103,115,44,92,110,32,32,32,32,66,70,111,114,109,84,97,103,58,32,95,102,111,114,109,95,116,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,84,97,103,44,92,110,32,32,32,32,66,84,97,103,58,32,95,102,111,114,109,95,116,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,84,97,103,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,101,120,116,97,114,101,97,47,102,111,114,109,45,116,101,120,116,97,114,101,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,101,120,116,97,114,101,97,47,102,111,114,109,45,116,101,120,116,97,114,101,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,84,101,120,116,97,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,84,101,120,116,97,114,101,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,101,108,101,99,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,118,97,108,105,100,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,118,97,108,105,100,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,118,97,108,105,100,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,118,105,115,105,98,108,101,95,118,105,115,105,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,47,118,105,115,105,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,47,118,105,115,105,98,108,101,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,109,97,120,82,111,119,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,87,104,101,110,32,105,110,32,97,117,116,111,32,114,101,115,105,122,101,32,109,111,100,101,44,32,100,105,115,97,98,108,101,32,115,104,114,105,110,107,105,110,103,32,116,111,32,99,111,110,116,101,110,116,32,104,101,105,103,104,116,92,110,32,32,110,111,65,117,116,111,83,104,114,105,110,107,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,68,105,115,97,98,108,101,32,116,104,101,32,114,101,115,105,122,101,32,104,97,110,100,108,101,32,111,102,32,116,101,120,116,97,114,101,97,92,110,32,32,110,111,82,101,115,105,122,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,111,119,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,50,41,44,92,110,32,32,47,47,32,39,115,111,102,116,39,44,32,39,104,97,114,100,39,32,111,114,32,39,111,102,102,39,92,110,32,32,47,47,32,66,114,111,119,115,101,114,32,100,101,102,97,117,108,116,32,105,115,32,39,115,111,102,116,39,92,110,32,32,119,114,97,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,111,102,116,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,70,79,82,77,95,84,69,88,84,65,82,69,65,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,84,101,120,116,97,114,101,97,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,70,79,82,77,95,84,69,88,84,65,82,69,65,44,92,110,32,32,100,105,114,101,99,116,105,118,101,115,58,32,123,92,110,32,32,32,32,39,98,45,118,105,115,105,98,108,101,39,58,32,95,100,105,114,101,99,116,105,118,101,115,95,118,105,115,105,98,108,101,95,118,105,115,105,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,86,66,86,105,115,105,98,108,101,92,110,32,32,125,44,92,110,32,32,47,47,32,77,105,120,105,110,32,111,114,100,101,114,32,105,115,32,105,109,112,111,114,116,97,110,116,33,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,108,105,115,116,101,110,101,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,108,105,115,116,101,110,79,110,82,111,111,116,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,102,111,114,109,67,111,110,116,114,111,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,102,111,114,109,83,105,122,101,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,102,111,114,109,83,116,97,116,101,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,111,114,109,84,101,120,116,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,102,111,114,109,83,101,108,101,99,116,105,111,110,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,118,97,108,105,100,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,102,111,114,109,86,97,108,105,100,105,116,121,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,104,101,105,103,104,116,73,110,80,120,58,32,110,117,108,108,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,116,121,108,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,116,121,108,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,116,121,108,101,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,101,116,116,105,110,103,32,96,110,111,82,101,115,105,122,101,96,32,116,111,32,116,114,117,101,32,119,105,108,108,32,100,105,115,97,98,108,101,32,116,104,101,32,97,98,105,108,105,116,121,32,102,111,114,32,116,104,101,32,117,115,101,114,32,116,111,92,110,32,32,32,32,32,32,32,32,47,47,32,109,97,110,117,97,108,108,121,32,114,101,115,105,122,101,32,116,104,101,32,116,101,120,116,97,114,101,97,46,32,87,101,32,97,108,115,111,32,100,105,115,97,98,108,101,32,119,104,101,110,32,105,110,32,97,117,116,111,32,104,101,105,103,104,116,32,109,111,100,101,92,110,32,32,32,32,32,32,32,32,114,101,115,105,122,101,58,32,33,116,104,105,115,46,99,111,109,112,117,116,101,100,82,111,119,115,32,124,124,32,116,104,105,115,46,110,111,82,101,115,105,122,101,32,63,32,39,110,111,110,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,99,111,109,112,117,116,101,100,82,111,119,115,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,111,110,100,105,116,105,111,110,97,108,108,121,32,115,101,116,32,116,104,101,32,99,111,109,112,117,116,101,100,32,67,83,83,32,104,101,105,103,104,116,32,119,104,101,110,32,97,117,116,111,32,114,111,119,115,47,104,101,105,103,104,116,32,105,115,32,101,110,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,97,118,111,105,100,32,115,101,116,116,105,110,103,32,116,104,101,32,115,116,121,108,101,32,116,111,32,96,110,117,108,108,96,44,32,119,104,105,99,104,32,99,97,110,32,111,118,101,114,114,105,100,101,32,117,115,101,114,32,109,97,110,117,97,108,32,114,101,115,105,122,101,32,104,97,110,100,108,101,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,115,46,104,101,105,103,104,116,32,61,32,116,104,105,115,46,104,101,105,103,104,116,73,110,80,120,59,32,47,47,32,87,101,32,97,108,119,97,121,115,32,97,100,100,32,97,32,118,101,114,116,105,99,97,108,32,115,99,114,111,108,108,98,97,114,32,116,111,32,116,104,101,32,116,101,120,116,97,114,101,97,32,119,104,101,110,32,97,117,116,111,45,104,101,105,103,104,116,32,105,115,92,110,32,32,32,32,32,32,32,32,47,47,32,101,110,97,98,108,101,100,32,115,111,32,116,104,97,116,32,116,104,101,32,99,111,109,112,117,116,101,100,32,104,101,105,103,104,116,32,99,97,108,99,117,108,97,116,105,111,110,32,114,101,116,117,114,110,115,32,97,32,115,116,97,98,108,101,32,118,97,108,117,101,92,110,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,115,46,111,118,101,114,102,108,111,119,89,32,61,32,39,115,99,114,111,108,108,39,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,121,108,101,115,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,77,105,110,82,111,119,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,77,105,110,82,111,119,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,69,110,115,117,114,101,32,114,111,119,115,32,105,115,32,97,116,32,108,101,97,115,116,32,50,32,97,110,100,32,112,111,115,105,116,105,118,101,32,40,50,32,105,115,32,116,104,101,32,110,97,116,105,118,101,32,116,101,120,116,97,114,101,97,32,118,97,108,117,101,41,92,110,32,32,32,32,32,32,47,47,32,65,32,118,97,108,117,101,32,111,102,32,49,32,99,97,110,32,99,97,117,115,101,32,105,115,115,117,101,115,32,105,110,32,115,111,109,101,32,98,114,111,119,115,101,114,115,44,32,97,110,100,32,109,111,115,116,32,98,114,111,119,115,101,114,115,92,110,32,32,32,32,32,32,47,47,32,111,110,108,121,32,115,117,112,112,111,114,116,32,50,32,97,115,32,116,104,101,32,115,109,97,108,108,101,115,116,32,118,97,108,117,101,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,114,111,119,115,44,32,50,41,44,32,50,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,77,97,120,82,111,119,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,77,97,120,82,111,119,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,109,97,116,104,77,97,120,41,40,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,82,111,119,115,44,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,109,97,120,82,111,119,115,44,32,48,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,82,111,119,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,82,111,119,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,117,115,101,100,32,116,111,32,115,101,116,32,116,104,101,32,97,116,116,114,105,98,117,116,101,32,39,114,111,119,115,39,32,111,110,32,116,104,101,32,116,101,120,116,97,114,101,97,92,110,32,32,32,32,32,32,47,47,32,73,102,32,97,117,116,111,45,104,101,105,103,104,116,32,105,115,32,101,110,97,98,108,101,100,44,32,116,104,101,110,32,119,101,32,114,101,116,117,114,110,32,96,110,117,108,108,96,32,97,115,32,119,101,32,117,115,101,32,67,83,83,32,116,111,32,99,111,110,116,114,111,108,32,104,101,105,103,104,116,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,82,111,119,115,32,61,61,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,82,111,119,115,32,63,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,82,111,119,115,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,32,61,32,116,104,105,115,46,114,101,113,117,105,114,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,116,104,105,115,46,110,97,109,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,102,111,114,109,58,32,116,104,105,115,46,102,111,114,109,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,58,32,114,101,113,117,105,114,101,100,44,92,110,32,32,32,32,32,32,32,32,97,117,116,111,99,111,109,112,108,101,116,101,58,32,116,104,105,115,46,97,117,116,111,99,111,109,112,108,101,116,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,114,101,97,100,111,110,108,121,58,32,116,104,105,115,46,114,101,97,100,111,110,108,121,32,124,124,32,116,104,105,115,46,112,108,97,105,110,116,101,120,116,44,92,110,32,32,32,32,32,32,32,32,114,111,119,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,82,111,119,115,44,92,110,32,32,32,32,32,32,32,32,119,114,97,112,58,32,116,104,105,115,46,119,114,97,112,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,101,113,117,105,114,101,100,39,58,32,116,104,105,115,46,114,101,113,117,105,114,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,105,110,118,97,108,105,100,39,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,114,105,97,73,110,118,97,108,105,100,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,76,105,115,116,101,110,101,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,76,105,115,116,101,110,101,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,105,110,112,117,116,58,32,116,104,105,115,46,111,110,73,110,112,117,116,44,92,110,32,32,32,32,32,32,32,32,99,104,97,110,103,101,58,32,116,104,105,115,46,111,110,67,104,97,110,103,101,44,92,110,32,32,32,32,32,32,32,32,98,108,117,114,58,32,116,104,105,115,46,111,110,66,108,117,114,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,108,111,99,97,108,86,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,86,97,108,117,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,72,101,105,103,104,116,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,72,101,105,103,104,116,40,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,67,97,108,108,101,100,32,98,121,32,105,110,116,101,114,115,101,99,116,105,111,110,32,111,98,115,101,114,118,101,114,32,100,105,114,101,99,116,105,118,101,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,118,105,115,105,98,108,101,67,97,108,108,98,97,99,107,58,32,102,117,110,99,116,105,111,110,32,118,105,115,105,98,108,101,67,97,108,108,98,97,99,107,40,118,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,117,115,101,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,104,101,114,101,32,106,117,115,116,32,116,111,32,109,97,107,101,32,115,117,114,101,32,97,110,121,92,110,32,32,32,32,32,32,32,32,47,47,32,116,114,97,110,115,105,116,105,111,110,115,32,111,114,32,112,111,114,116,97,108,108,105,110,103,32,104,97,118,101,32,99,111,109,112,108,101,116,101,100,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,115,101,116,72,101,105,103,104,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,72,101,105,103,104,116,58,32,102,117,110,99,116,105,111,110,32,115,101,116,72,101,105,103,104,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,104,101,105,103,104,116,73,110,80,120,32,61,32,95,116,104,105,115,46,99,111,109,112,117,116,101,72,101,105,103,104,116,40,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,99,97,110,39,116,32,116,101,115,116,32,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,32,105,110,32,74,83,68,79,77,32,42,47,92,110,32,32,32,32,99,111,109,112,117,116,101,72,101,105,103,104,116,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,72,101,105,103,104,116,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,105,115,83,101,114,118,101,114,32,124,124,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,105,115,78,117,108,108,41,40,116,104,105,115,46,99,111,109,112,117,116,101,100,82,111,119,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,101,108,32,61,32,116,104,105,115,46,36,101,108,59,32,47,47,32,69,108,101,109,101,110,116,32,109,117,115,116,32,98,101,32,118,105,115,105,98,108,101,32,40,110,111,116,32,104,105,100,100,101,110,41,32,97,110,100,32,105,110,32,100,111,99,117,109,101,110,116,92,110,32,32,32,32,32,32,47,47,32,77,117,115,116,32,98,101,32,99,104,101,99,107,101,100,32,97,102,116,101,114,32,97,98,111,118,101,32,99,104,101,99,107,115,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,115,86,105,115,105,98,108,101,41,40,101,108,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,32,47,47,32,71,101,116,32,99,117,114,114,101,110,116,32,99,111,109,112,117,116,101,100,32,115,116,121,108,101,115,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,111,109,112,117,116,101,100,83,116,121,108,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,103,101,116,67,83,41,40,101,108,41,59,32,47,47,32,72,101,105,103,104,116,32,111,102,32,111,110,101,32,108,105,110,101,32,111,102,32,116,101,120,116,32,105,110,32,112,120,92,110,92,110,32,32,32,32,32,32,118,97,114,32,108,105,110,101,72,101,105,103,104,116,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,111,70,108,111,97,116,41,40,99,111,109,112,117,116,101,100,83,116,121,108,101,46,108,105,110,101,72,101,105,103,104,116,44,32,49,41,59,32,47,47,32,67,97,108,99,117,108,97,116,101,32,104,101,105,103,104,116,32,111,102,32,98,111,114,100,101,114,32,97,110,100,32,112,97,100,100,105,110,103,92,110,92,110,32,32,32,32,32,32,118,97,114,32,98,111,114,100,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,111,70,108,111,97,116,41,40,99,111,109,112,117,116,101,100,83,116,121,108,101,46,98,111,114,100,101,114,84,111,112,87,105,100,116,104,44,32,48,41,32,43,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,111,70,108,111,97,116,41,40,99,111,109,112,117,116,101,100,83,116,121,108,101,46,98,111,114,100,101,114,66,111,116,116,111,109,87,105,100,116,104,44,32,48,41,59,92,110,32,32,32,32,32,32,118,97,114,32,112,97,100,100,105,110,103,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,111,70,108,111,97,116,41,40,99,111,109,112,117,116,101,100,83,116,121,108,101,46,112,97,100,100,105,110,103,84,111,112,44,32,48,41,32,43,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,111,70,108,111,97,116,41,40,99,111,109,112,117,116,101,100,83,116,121,108,101,46,112,97,100,100,105,110,103,66,111,116,116,111,109,44,32,48,41,59,32,47,47,32,67,97,108,99,117,108,97,116,101,32,111,102,102,115,101,116,92,110,92,110,32,32,32,32,32,32,118,97,114,32,111,102,102,115,101,116,32,61,32,98,111,114,100,101,114,32,43,32,112,97,100,100,105,110,103,59,32,47,47,32,77,105,110,105,109,117,109,32,104,101,105,103,104,116,32,102,111,114,32,109,105,110,32,114,111,119,115,32,40,119,104,105,99,104,32,109,117,115,116,32,98,101,32,50,32,114,111,119,115,32,111,114,32,103,114,101,97,116,101,114,32,102,111,114,32,99,114,111,115,115,45,98,114,111,119,115,101,114,32,115,117,112,112,111,114,116,41,92,110,92,110,32,32,32,32,32,32,118,97,114,32,109,105,110,72,101,105,103,104,116,32,61,32,108,105,110,101,72,101,105,103,104,116,32,42,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,82,111,119,115,32,43,32,111,102,102,115,101,116,59,32,47,47,32,71,101,116,32,116,104,101,32,99,117,114,114,101,110,116,32,115,116,121,108,101,32,104,101,105,103,104,116,32,40,119,105,116,104,32,96,112,120,96,32,117,110,105,116,115,41,92,110,92,110,32,32,32,32,32,32,118,97,114,32,111,108,100,72,101,105,103,104,116,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,103,101,116,83,116,121,108,101,41,40,101,108,44,32,39,104,101,105,103,104,116,39,41,32,124,124,32,99,111,109,112,117,116,101,100,83,116,121,108,101,46,104,101,105,103,104,116,59,32,47,47,32,80,114,111,98,101,32,115,99,114,111,108,108,72,101,105,103,104,116,32,98,121,32,116,101,109,112,111,114,97,114,105,108,121,32,99,104,97,110,103,105,110,103,32,116,104,101,32,104,101,105,103,104,116,32,116,111,32,96,97,117,116,111,96,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,115,101,116,83,116,121,108,101,41,40,101,108,44,32,39,104,101,105,103,104,116,39,44,32,39,97,117,116,111,39,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,72,101,105,103,104,116,32,61,32,101,108,46,115,99,114,111,108,108,72,101,105,103,104,116,59,32,47,47,32,80,108,97,99,101,32,116,104,101,32,111,114,105,103,105,110,97,108,32,111,108,100,32,104,101,105,103,104,116,32,98,97,99,107,32,111,110,32,116,104,101,32,101,108,101,109,101,110,116,44,32,106,117,115,116,32,105,110,32,99,97,115,101,32,96,99,111,109,112,117,116,101,100,80,114,111,112,96,92,110,32,32,32,32,32,32,47,47,32,114,101,116,117,114,110,115,32,116,104,101,32,115,97,109,101,32,118,97,108,117,101,32,97,115,32,98,101,102,111,114,101,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,115,101,116,83,116,121,108,101,41,40,101,108,44,32,39,104,101,105,103,104,116,39,44,32,111,108,100,72,101,105,103,104,116,41,59,32,47,47,32,67,97,108,99,117,108,97,116,101,32,99,111,110,116,101,110,116,32,104,101,105,103,104,116,32,105,110,32,39,114,111,119,115,39,32,40,115,99,114,111,108,108,72,101,105,103,104,116,32,105,110,99,108,117,100,101,115,32,112,97,100,100,105,110,103,32,98,117,116,32,110,111,116,32,98,111,114,100,101,114,41,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,116,101,110,116,82,111,119,115,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,109,97,116,104,77,97,120,41,40,40,115,99,114,111,108,108,72,101,105,103,104,116,32,45,32,112,97,100,100,105,110,103,41,32,47,32,108,105,110,101,72,101,105,103,104,116,44,32,50,41,59,32,47,47,32,67,97,108,99,117,108,97,116,101,32,110,117,109,98,101,114,32,111,102,32,114,111,119,115,32,116,111,32,100,105,115,112,108,97,121,32,40,108,105,109,105,116,101,100,32,119,105,116,104,105,110,32,109,105,110,47,109,97,120,32,114,111,119,115,41,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,111,119,115,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,109,97,116,104,77,105,110,41,40,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,109,97,116,104,77,97,120,41,40,99,111,110,116,101,110,116,82,111,119,115,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,82,111,119,115,41,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,82,111,119,115,41,59,32,47,47,32,67,97,108,99,117,108,97,116,101,32,116,104,101,32,114,101,113,117,105,114,101,100,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,116,101,120,116,97,114,101,97,32,105,110,99,108,117,100,105,110,103,32,98,111,114,100,101,114,32,97,110,100,32,112,97,100,100,105,110,103,32,40,105,110,32,112,105,120,101,108,115,41,92,110,92,110,32,32,32,32,32,32,118,97,114,32,104,101,105,103,104,116,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,109,97,116,104,67,101,105,108,41,40,114,111,119,115,32,42,32,108,105,110,101,72,101,105,103,104,116,32,43,32,111,102,102,115,101,116,41,44,32,109,105,110,72,101,105,103,104,116,41,59,32,47,47,32,67,111,109,112,117,116,101,100,32,104,101,105,103,104,116,32,114,101,109,97,105,110,115,32,116,104,101,32,108,97,114,103,101,114,32,111,102,32,96,111,108,100,72,101,105,103,104,116,96,32,97,110,100,32,110,101,119,32,96,104,101,105,103,104,116,96,44,92,110,32,32,32,32,32,32,47,47,32,119,104,101,110,32,104,101,105,103,104,116,32,105,115,32,105,110,32,96,115,116,105,99,107,121,96,32,109,111,100,101,32,40,112,114,111,112,32,96,110,111,45,97,117,116,111,45,115,104,114,105,110,107,96,32,105,115,32,116,114,117,101,41,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,110,111,65,117,116,111,83,104,114,105,110,107,32,38,38,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,111,70,108,111,97,116,41,40,111,108,100,72,101,105,103,104,116,44,32,48,41,32,62,32,104,101,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,108,100,72,101,105,103,104,116,59,92,110,32,32,32,32,32,32,125,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,110,101,119,32,99,111,109,112,117,116,101,100,32,67,83,83,32,104,101,105,103,104,116,32,105,110,32,112,120,32,117,110,105,116,115,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,92,34,46,99,111,110,99,97,116,40,104,101,105,103,104,116,44,32,92,34,112,120,92,34,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,116,101,120,116,97,114,101,97,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,67,108,97,115,115,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,121,108,101,44,92,110,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,39,98,45,118,105,115,105,98,108,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,118,105,115,105,98,108,101,67,97,108,108,98,97,99,107,44,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,101,120,116,97,114,101,97,32,105,115,32,119,105,116,104,105,110,32,54,52,48,112,120,32,111,102,32,118,105,101,119,112,111,114,116,44,32,99,111,110,115,105,100,101,114,32,105,116,32,118,105,115,105,98,108,101,92,110,32,32,32,32,32,32,32,32,109,111,100,105,102,105,101,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,54,52,48,39,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,92,110,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,105,115,116,101,110,101,114,115,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,105,110,112,117,116,39,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,101,120,116,97,114,101,97,47,102,111,114,109,45,116,101,120,116,97,114,101,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,101,120,116,97,114,101,97,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,101,120,116,97,114,101,97,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,84,101,120,116,97,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,116,101,120,116,97,114,101,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,84,101,120,116,97,114,101,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,84,101,120,116,97,114,101,97,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,111,114,109,84,101,120,116,97,114,101,97,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,116,101,120,116,97,114,101,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,116,101,120,116,97,114,101,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,101,120,116,97,114,101,97,47,102,111,114,109,45,116,101,120,116,97,114,101,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,70,111,114,109,84,101,120,116,97,114,101,97,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,70,111,114,109,84,101,120,116,97,114,101,97,58,32,95,102,111,114,109,95,116,101,120,116,97,114,101,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,84,101,120,116,97,114,101,97,44,92,110,32,32,32,32,66,84,101,120,116,97,114,101,97,58,32,95,102,111,114,109,95,116,101,120,116,97,114,101,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,84,101,120,116,97,114,101,97,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,101,120,116,97,114,101,97,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,84,105,109,101,112,105,99,107,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,84,105,109,101,112,105,99,107,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,105,99,111,110,115,47,105,99,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,98,117,116,116,111,110,47,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,98,116,110,95,108,97,98,101,108,95,99,111,110,116,114,111,108,95,98,118,95,102,111,114,109,95,98,116,110,95,108,97,98,101,108,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,47,98,118,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,47,98,118,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,105,109,101,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,105,109,101,47,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,105,109,101,47,116,105,109,101,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,97,108,117,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,92,110,32,32,100,101,102,97,117,108,116,86,97,108,117,101,58,32,39,39,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,116,105,109,101,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,111,109,105,116,41,40,95,116,105,109,101,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,44,32,91,39,104,105,100,100,101,110,39,44,32,39,105,100,39,44,32,39,118,97,108,117,101,39,93,41,59,92,110,118,97,114,32,102,111,114,109,66,116,110,76,97,98,101,108,67,111,110,116,114,111,108,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,111,109,105,116,41,40,95,102,111,114,109,95,98,116,110,95,108,97,98,101,108,95,99,111,110,116,114,111,108,95,98,118,95,102,111,114,109,95,98,116,110,95,108,97,98,101,108,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,44,32,91,39,102,111,114,109,97,116,116,101,100,86,97,108,117,101,39,44,32,39,105,100,39,44,32,39,108,97,110,103,39,44,32,39,114,116,108,39,44,32,39,118,97,108,117,101,39,93,41,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,116,105,109,101,80,114,111,112,115,41,44,32,102,111,114,109,66,116,110,76,97,98,101,108,67,111,110,116,114,111,108,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,99,108,111,115,101,66,117,116,116,111,110,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,39,41,44,92,110,32,32,108,97,98,101,108,67,108,111,115,101,66,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,67,108,111,115,101,39,41,44,92,110,32,32,108,97,98,101,108,78,111,119,66,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,83,101,108,101,99,116,32,110,111,119,39,41,44,92,110,32,32,108,97,98,101,108,82,101,115,101,116,66,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,82,101,115,101,116,39,41,44,92,110,32,32,110,111,67,108,111,115,101,66,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,119,66,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,119,66,117,116,116,111,110,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,39,41,44,92,110,32,32,114,101,115,101,116,66,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,101,115,101,116,66,117,116,116,111,110,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,111,117,116,108,105,110,101,45,100,97,110,103,101,114,39,41,44,92,110,32,32,114,101,115,101,116,86,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,68,65,84,69,95,83,84,82,73,78,71,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,78,65,77,69,95,70,79,82,77,95,84,73,77,69,80,73,67,75,69,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,84,105,109,101,112,105,99,107,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,78,65,77,69,95,70,79,82,77,95,84,73,77,69,80,73,67,75,69,82,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,97,108,119,97,121,115,32,117,115,101,32,96,72,72,58,109,109,58,115,115,96,32,118,97,108,117,101,32,105,110,116,101,114,110,97,108,108,121,92,110,32,32,32,32,32,32,108,111,99,97,108,72,77,83,58,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,32,124,124,32,39,39,44,92,110,32,32,32,32,32,32,47,47,32,67,111,110,116,101,120,116,32,100,97,116,97,32,102,114,111,109,32,66,84,105,109,101,92,110,32,32,32,32,32,32,108,111,99,97,108,76,111,99,97,108,101,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,105,115,82,84,76,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,102,111,114,109,97,116,116,101,100,86,97,108,117,101,58,32,39,39,44,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,109,101,110,117,32,105,115,32,111,112,101,110,101,100,92,110,32,32,32,32,32,32,105,115,86,105,115,105,98,108,101,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,76,97,110,103,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,76,97,110,103,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,116,104,105,115,46,108,111,99,97,108,76,111,99,97,108,101,32,124,124,32,39,39,41,46,114,101,112,108,97,99,101,40,47,45,117,45,46,42,36,47,105,44,32,39,39,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,108,111,99,97,108,72,77,83,32,61,32,110,101,119,86,97,108,117,101,32,124,124,32,39,39,59,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,108,111,99,97,108,72,77,83,92,34,44,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,72,77,83,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,117,112,100,97,116,101,32,116,104,101,32,118,45,109,111,100,101,108,32,118,97,108,117,101,32,119,104,101,110,32,116,104,101,32,116,105,109,101,112,105,99,107,101,114,92,110,32,32,32,32,47,47,32,105,115,32,111,112,101,110,44,32,116,111,32,112,114,101,118,101,110,116,32,99,117,114,115,111,114,32,106,117,109,112,115,32,119,104,101,110,32,98,111,117,110,100,32,116,111,32,97,92,110,32,32,32,32,47,47,32,116,101,120,116,32,105,110,112,117,116,32,105,110,32,98,117,116,116,111,110,32,111,110,108,121,32,109,111,100,101,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,86,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,110,101,119,86,97,108,117,101,32,124,124,32,39,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,80,117,98,108,105,99,32,109,101,116,104,111,100,115,92,110,32,32,32,32,102,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,108,117,114,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,97,116,116,101,109,112,116,66,108,117,114,41,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,114,105,118,97,116,101,32,109,101,116,104,111,100,115,92,110,32,32,32,32,115,101,116,65,110,100,67,108,111,115,101,58,32,102,117,110,99,116,105,111,110,32,115,101,116,65,110,100,67,108,111,115,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,72,77,83,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,46,104,105,100,101,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,73,110,112,117,116,58,32,102,117,110,99,116,105,111,110,32,111,110,73,110,112,117,116,40,104,109,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,111,99,97,108,72,77,83,32,33,61,61,32,104,109,115,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,72,77,83,32,61,32,104,109,115,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,111,110,116,101,120,116,58,32,102,117,110,99,116,105,111,110,32,111,110,67,111,110,116,101,120,116,40,99,116,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,82,84,76,32,61,32,99,116,120,46,105,115,82,84,76,44,92,110,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,101,32,61,32,99,116,120,46,108,111,99,97,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,99,116,120,46,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,116,101,100,32,61,32,99,116,120,46,102,111,114,109,97,116,116,101,100,59,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,82,84,76,32,61,32,105,115,82,84,76,59,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,76,111,99,97,108,101,32,61,32,108,111,99,97,108,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,102,111,114,109,97,116,116,101,100,86,97,108,117,101,32,61,32,102,111,114,109,97,116,116,101,100,59,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,72,77,83,32,61,32,118,97,108,117,101,32,124,124,32,39,39,59,32,47,47,32,82,101,45,101,109,105,116,32,116,104,101,32,99,111,110,116,101,120,116,32,101,118,101,110,116,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,79,78,84,69,88,84,44,32,99,116,120,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,78,111,119,66,117,116,116,111,110,58,32,102,117,110,99,116,105,111,110,32,111,110,78,111,119,66,117,116,116,111,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,110,111,119,32,61,32,110,101,119,32,68,97,116,101,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,104,111,117,114,115,32,61,32,110,111,119,46,103,101,116,72,111,117,114,115,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,109,105,110,117,116,101,115,32,61,32,110,111,119,46,103,101,116,77,105,110,117,116,101,115,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,101,99,111,110,100,115,32,61,32,116,104,105,115,46,115,104,111,119,83,101,99,111,110,100,115,32,63,32,110,111,119,46,103,101,116,83,101,99,111,110,100,115,40,41,32,58,32,48,59,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,91,104,111,117,114,115,44,32,109,105,110,117,116,101,115,44,32,115,101,99,111,110,100,115,93,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,118,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,48,48,92,34,46,99,111,110,99,97,116,40,118,32,124,124,32,39,39,41,46,115,108,105,99,101,40,45,50,41,59,92,110,32,32,32,32,32,32,125,41,46,106,111,105,110,40,39,58,39,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,65,110,100,67,108,111,115,101,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,82,101,115,101,116,66,117,116,116,111,110,58,32,102,117,110,99,116,105,111,110,32,111,110,82,101,115,101,116,66,117,116,116,111,110,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,65,110,100,67,108,111,115,101,40,116,104,105,115,46,114,101,115,101,116,86,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,108,111,115,101,66,117,116,116,111,110,58,32,102,117,110,99,116,105,111,110,32,111,110,67,108,111,115,101,66,117,116,116,111,110,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,46,104,105,100,101,40,116,114,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,83,104,111,119,58,32,102,117,110,99,116,105,111,110,32,111,110,83,104,111,119,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,86,105,115,105,98,108,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,83,104,111,119,110,58,32,102,117,110,99,116,105,111,110,32,111,110,83,104,111,119,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,95,116,104,105,115,50,46,36,114,101,102,115,46,116,105,109,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,72,105,100,100,101,110,58,32,102,117,110,99,116,105,111,110,32,111,110,72,105,100,100,101,110,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,86,105,115,105,98,108,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,82,101,110,100,101,114,32,102,117,110,99,116,105,111,110,32,104,101,108,112,101,114,115,92,110,32,32,32,32,100,101,102,97,117,108,116,66,117,116,116,111,110,70,110,58,32,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,66,117,116,116,111,110,70,110,40,95,114,101,102,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,72,111,118,101,114,101,100,32,61,32,95,114,101,102,46,105,115,72,111,118,101,114,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,104,97,115,70,111,99,117,115,32,61,32,95,114,101,102,46,104,97,115,70,111,99,117,115,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,105,115,72,111,118,101,114,101,100,32,124,124,32,104,97,115,70,111,99,117,115,32,63,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,66,73,99,111,110,67,108,111,99,107,70,105,108,108,32,58,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,66,73,99,111,110,67,108,111,99,107,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,108,111,99,97,108,72,77,83,32,61,32,116,104,105,115,46,108,111,99,97,108,72,77,83,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,101,97,100,111,110,108,121,32,61,32,116,104,105,115,46,114,101,97,100,111,110,108,121,44,92,110,32,32,32,32,32,32,32,32,36,112,114,111,112,115,32,61,32,116,104,105,115,46,36,112,114,111,112,115,59,92,110,32,32,32,32,118,97,114,32,112,108,97,99,101,104,111,108,100,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,41,32,63,32,116,104,105,115,46,108,97,98,101,108,78,111,84,105,109,101,83,101,108,101,99,116,101,100,32,58,32,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,59,32,47,47,32,70,111,111,116,101,114,32,98,117,116,116,111,110,115,92,110,92,110,32,32,32,32,118,97,114,32,36,102,111,111,116,101,114,32,61,32,91,93,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,110,111,119,66,117,116,116,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,97,98,101,108,32,61,32,116,104,105,115,46,108,97,98,101,108,78,111,119,66,117,116,116,111,110,59,92,110,32,32,32,32,32,32,36,102,111,111,116,101,114,46,112,117,115,104,40,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,66,66,117,116,116,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,39,115,109,39,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,32,124,124,32,114,101,97,100,111,110,108,121,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,116,104,105,115,46,110,111,119,66,117,116,116,111,110,86,97,114,105,97,110,116,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,108,97,98,101,108,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,78,111,119,66,117,116,116,111,110,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,110,111,119,45,98,116,110,39,92,110,32,32,32,32,32,32,125,44,32,108,97,98,101,108,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,114,101,115,101,116,66,117,116,116,111,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,36,102,111,111,116,101,114,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,97,32,92,34,115,112,97,99,101,114,92,34,32,98,101,116,119,101,101,110,32,98,117,116,116,111,110,115,32,40,39,38,110,98,115,112,59,39,41,92,110,32,32,32,32,32,32,32,32,36,102,111,111,116,101,114,46,112,117,115,104,40,104,40,39,115,112,97,110,39,44,32,92,34,92,92,120,65,48,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,95,108,97,98,101,108,32,61,32,116,104,105,115,46,108,97,98,101,108,82,101,115,101,116,66,117,116,116,111,110,59,92,110,32,32,32,32,32,32,36,102,111,111,116,101,114,46,112,117,115,104,40,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,66,66,117,116,116,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,39,115,109,39,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,32,124,124,32,114,101,97,100,111,110,108,121,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,116,104,105,115,46,114,101,115,101,116,66,117,116,116,111,110,86,97,114,105,97,110,116,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,95,108,97,98,101,108,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,82,101,115,101,116,66,117,116,116,111,110,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,115,101,116,45,98,116,110,39,92,110,32,32,32,32,32,32,125,44,32,95,108,97,98,101,108,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,110,111,67,108,111,115,101,66,117,116,116,111,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,65,100,100,32,97,32,92,34,115,112,97,99,101,114,92,34,32,98,101,116,119,101,101,110,32,98,117,116,116,111,110,115,32,40,39,38,110,98,115,112,59,39,41,92,110,32,32,32,32,32,32,105,102,32,40,36,102,111,111,116,101,114,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,36,102,111,111,116,101,114,46,112,117,115,104,40,104,40,39,115,112,97,110,39,44,32,92,34,92,92,120,65,48,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,95,108,97,98,101,108,50,32,61,32,116,104,105,115,46,108,97,98,101,108,67,108,111,115,101,66,117,116,116,111,110,59,92,110,32,32,32,32,32,32,36,102,111,111,116,101,114,46,112,117,115,104,40,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,66,66,117,116,116,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,39,115,109,39,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,116,104,105,115,46,99,108,111,115,101,66,117,116,116,111,110,86,97,114,105,97,110,116,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,95,108,97,98,101,108,50,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,67,108,111,115,101,66,117,116,116,111,110,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,108,111,115,101,45,98,116,110,39,92,110,32,32,32,32,32,32,125,44,32,95,108,97,98,101,108,50,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,36,102,111,111,116,101,114,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,36,102,111,111,116,101,114,32,61,32,91,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,111,114,109,45,100,97,116,101,45,99,111,110,116,114,111,108,115,32,100,45,102,108,101,120,32,102,108,101,120,45,119,114,97,112,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,39,58,32,36,102,111,111,116,101,114,46,108,101,110,103,116,104,32,62,32,49,44,92,110,32,32,32,32,32,32,32,32,32,32,39,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,101,110,100,39,58,32,36,102,111,111,116,101,114,46,108,101,110,103,116,104,32,60,32,50,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,36,102,111,111,116,101,114,41,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,116,105,109,101,32,61,32,104,40,95,116,105,109,101,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,84,105,109,101,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,111,114,109,45,116,105,109,101,45,99,111,110,116,114,111,108,39,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,116,105,109,101,80,114,111,112,115,44,32,36,112,114,111,112,115,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,108,111,99,97,108,72,77,83,44,92,110,32,32,32,32,32,32,32,32,104,105,100,100,101,110,58,32,33,116,104,105,115,46,105,115,86,105,115,105,98,108,101,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,105,110,112,117,116,58,32,116,104,105,115,46,111,110,73,110,112,117,116,44,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,116,104,105,115,46,111,110,67,111,110,116,101,120,116,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,116,105,109,101,39,92,110,32,32,32,32,125,44,32,36,102,111,111,116,101,114,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,95,102,111,114,109,95,98,116,110,95,108,97,98,101,108,95,99,111,110,116,114,111,108,95,98,118,95,102,111,114,109,95,98,116,110,95,108,97,98,101,108,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,86,70,111,114,109,66,116,110,76,97,98,101,108,67,111,110,116,114,111,108,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,39,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,102,111,114,109,66,116,110,76,97,98,101,108,67,111,110,116,114,111,108,80,114,111,112,115,44,32,36,112,114,111,112,115,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,108,111,99,97,108,72,77,83,44,92,110,32,32,32,32,32,32,32,32,102,111,114,109,97,116,116,101,100,86,97,108,117,101,58,32,108,111,99,97,108,72,77,83,32,63,32,116,104,105,115,46,102,111,114,109,97,116,116,101,100,86,97,108,117,101,32,58,32,39,39,44,92,110,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,112,108,97,99,101,104,111,108,100,101,114,44,92,110,32,32,32,32,32,32,32,32,114,116,108,58,32,116,104,105,115,46,105,115,82,84,76,44,92,110,32,32,32,32,32,32,32,32,108,97,110,103,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,97,110,103,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,115,104,111,119,58,32,116,104,105,115,46,111,110,83,104,111,119,44,92,110,32,32,32,32,32,32,32,32,115,104,111,119,110,58,32,116,104,105,115,46,111,110,83,104,111,119,110,44,92,110,32,32,32,32,32,32,32,32,104,105,100,100,101,110,58,32,116,104,105,115,46,111,110,72,105,100,100,101,110,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,83,76,79,84,95,78,65,77,69,95,66,85,84,84,79,78,95,67,79,78,84,69,78,84,44,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,91,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,83,76,79,84,95,78,65,77,69,95,66,85,84,84,79,78,95,67,79,78,84,69,78,84,93,32,124,124,32,116,104,105,115,46,100,101,102,97,117,108,116,66,117,116,116,111,110,70,110,41,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,99,111,110,116,114,111,108,39,92,110,32,32,32,32,125,44,32,91,36,116,105,109,101,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,84,105,109,101,112,105,99,107,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,116,105,109,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,84,105,109,101,112,105,99,107,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,84,105,109,101,112,105,99,107,101,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,111,114,109,84,105,109,101,112,105,99,107,101,114,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,116,105,109,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,70,111,114,109,84,105,109,101,112,105,99,107,101,114,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,70,111,114,109,84,105,109,101,112,105,99,107,101,114,58,32,95,102,111,114,109,95,116,105,109,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,84,105,109,101,112,105,99,107,101,114,44,92,110,32,32,32,32,66,84,105,109,101,112,105,99,107,101,114,58,32,95,102,111,114,109,95,116,105,109,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,84,105,109,101,112,105,99,107,101,114,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,100,97,116,97,108,105,115,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,100,97,116,97,108,105,115,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,68,97,116,97,108,105,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,68,97,116,97,108,105,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,102,111,114,109,95,111,112,116,105,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,102,111,114,109,45,111,112,116,105,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,111,112,116,105,111,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,102,111,114,109,95,111,112,116,105,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,117,110,100,101,102,105,110,101,100,44,32,116,114,117,101,41,32,47,47,32,82,101,113,117,105,114,101,100,92,110,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,70,79,82,77,95,68,65,84,65,76,73,83,84,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,68,97,116,97,108,105,115,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,70,79,82,77,95,68,65,84,65,76,73,83,84,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,102,111,114,109,95,111,112,116,105,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,102,111,114,109,79,112,116,105,111,110,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,105,100,32,61,32,116,104,105,115,46,105,100,59,92,110,32,32,32,32,118,97,114,32,36,111,112,116,105,111,110,115,32,61,32,116,104,105,115,46,102,111,114,109,79,112,116,105,111,110,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,111,112,116,105,111,110,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,111,112,116,105,111,110,46,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,101,120,116,32,61,32,111,112,116,105,111,110,46,116,101,120,116,44,92,110,32,32,32,32,32,32,32,32,32,32,104,116,109,108,32,61,32,111,112,116,105,111,110,46,104,116,109,108,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,111,112,116,105,111,110,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,111,112,116,105,111,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,104,116,109,108,44,32,116,101,120,116,41,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,111,112,116,105,111,110,95,92,34,46,99,111,110,99,97,116,40,105,110,100,101,120,41,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,97,116,97,108,105,115,116,39,44,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,105,100,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,111,112,116,105,111,110,115,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,100,97,116,97,108,105,115,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,73,110,118,97,108,105,100,70,101,101,100,98,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,73,110,118,97,108,105,100,70,101,101,100,98,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,114,105,97,76,105,118,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,102,111,114,99,101,83,104,111,119,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,114,111,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,84,114,105,45,115,116,97,116,101,32,112,114,111,112,58,32,96,116,114,117,101,96,44,32,96,102,97,108,115,101,96,44,32,111,114,32,96,110,117,108,108,96,92,110,32,32,115,116,97,116,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,110,117,108,108,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,44,92,110,32,32,116,111,111,108,116,105,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,70,79,82,77,95,73,78,86,65,76,73,68,95,70,69,69,68,66,65,67,75,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,73,110,118,97,108,105,100,70,101,101,100,98,97,99,107,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,70,79,82,77,95,73,78,86,65,76,73,68,95,70,69,69,68,66,65,67,75,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,116,111,111,108,116,105,112,32,61,32,112,114,111,112,115,46,116,111,111,108,116,105,112,44,92,110,32,32,32,32,32,32,32,32,97,114,105,97,76,105,118,101,32,61,32,112,114,111,112,115,46,97,114,105,97,76,105,118,101,59,92,110,32,32,32,32,118,97,114,32,115,104,111,119,32,61,32,112,114,111,112,115,46,102,111,114,99,101,83,104,111,119,32,61,61,61,32,116,114,117,101,32,124,124,32,112,114,111,112,115,46,115,116,97,116,101,32,61,61,61,32,102,97,108,115,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,100,45,98,108,111,99,107,39,58,32,115,104,111,119,44,92,110,32,32,32,32,32,32,32,32,39,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,39,58,32,33,116,111,111,108,116,105,112,44,92,110,32,32,32,32,32,32,32,32,39,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,39,58,32,116,111,111,108,116,105,112,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,112,114,111,112,115,46,105,100,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,112,114,111,112,115,46,114,111,108,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,97,114,105,97,76,105,118,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,97,116,111,109,105,99,39,58,32,97,114,105,97,76,105,118,101,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,116,101,120,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,116,101,120,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,105,110,108,105,110,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,109,97,108,108,39,41,44,92,110,32,32,116,101,120,116,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,109,117,116,101,100,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,70,79,82,77,95,84,69,88,84,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,84,101,120,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,70,79,82,77,95,84,69,88,84,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,92,110,32,32,32,32,32,32,32,32,39,102,111,114,109,45,116,101,120,116,39,58,32,33,112,114,111,112,115,46,105,110,108,105,110,101,92,110,32,32,32,32,32,32,125,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,112,114,111,112,115,46,116,101,120,116,86,97,114,105,97,110,116,41,44,32,112,114,111,112,115,46,116,101,120,116,86,97,114,105,97,110,116,41,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,112,114,111,112,115,46,105,100,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,116,101,120,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,118,97,108,105,100,45,102,101,101,100,98,97,99,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,118,97,108,105,100,45,102,101,101,100,98,97,99,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,86,97,108,105,100,70,101,101,100,98,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,86,97,108,105,100,70,101,101,100,98,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,114,105,97,76,105,118,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,102,111,114,99,101,83,104,111,119,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,114,111,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,84,114,105,45,115,116,97,116,101,32,112,114,111,112,58,32,96,116,114,117,101,96,44,32,96,102,97,108,115,101,96,44,32,111,114,32,96,110,117,108,108,96,92,110,32,32,115,116,97,116,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,110,117,108,108,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,44,92,110,32,32,116,111,111,108,116,105,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,70,79,82,77,95,86,65,76,73,68,95,70,69,69,68,66,65,67,75,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,86,97,108,105,100,70,101,101,100,98,97,99,107,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,70,79,82,77,95,86,65,76,73,68,95,70,69,69,68,66,65,67,75,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,116,111,111,108,116,105,112,32,61,32,112,114,111,112,115,46,116,111,111,108,116,105,112,44,92,110,32,32,32,32,32,32,32,32,97,114,105,97,76,105,118,101,32,61,32,112,114,111,112,115,46,97,114,105,97,76,105,118,101,59,92,110,32,32,32,32,118,97,114,32,115,104,111,119,32,61,32,112,114,111,112,115,46,102,111,114,99,101,83,104,111,119,32,61,61,61,32,116,114,117,101,32,124,124,32,112,114,111,112,115,46,115,116,97,116,101,32,61,61,61,32,116,114,117,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,100,45,98,108,111,99,107,39,58,32,115,104,111,119,44,92,110,32,32,32,32,32,32,32,32,39,118,97,108,105,100,45,102,101,101,100,98,97,99,107,39,58,32,33,116,111,111,108,116,105,112,44,92,110,32,32,32,32,32,32,32,32,39,118,97,108,105,100,45,116,111,111,108,116,105,112,39,58,32,116,111,111,108,116,105,112,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,112,114,111,112,115,46,105,100,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,112,114,111,112,115,46,114,111,108,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,97,114,105,97,76,105,118,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,97,116,111,109,105,99,39,58,32,97,114,105,97,76,105,118,101,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,118,97,108,105,100,45,102,101,101,100,98,97,99,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,105,110,108,105,110,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,118,97,108,105,100,97,116,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,118,97,108,105,100,97,116,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,70,79,82,77,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,70,79,82,77,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,102,111,114,109,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,102,111,114,109,45,105,110,108,105,110,101,39,58,32,112,114,111,112,115,46,105,110,108,105,110,101,44,92,110,32,32,32,32,32,32,32,32,39,119,97,115,45,118,97,108,105,100,97,116,101,100,39,58,32,112,114,111,112,115,46,118,97,108,105,100,97,116,101,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,112,114,111,112,115,46,105,100,44,92,110,32,32,32,32,32,32,32,32,110,111,118,97,108,105,100,97,116,101,58,32,112,114,111,112,115,46,110,111,118,97,108,105,100,97,116,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,68,97,116,97,108,105,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,100,97,116,97,108,105,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,68,97,116,97,108,105,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,73,110,118,97,108,105,100,70,101,101,100,98,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,105,110,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,70,111,114,109,73,110,118,97,108,105,100,70,101,101,100,98,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,70,111,114,109,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,86,97,108,105,100,70,101,101,100,98,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,70,111,114,109,86,97,108,105,100,70,101,101,100,98,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,111,114,109,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,100,97,116,97,108,105,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,100,97,116,97,108,105,115,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,100,97,116,97,108,105,115,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,105,110,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,118,97,108,105,100,45,102,101,101,100,98,97,99,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,118,97,108,105,100,45,102,101,101,100,98,97,99,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,97,121,111,117,116,95,102,111,114,109,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,97,121,111,117,116,47,102,111,114,109,45,114,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,102,111,114,109,45,114,111,119,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,70,111,114,109,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,70,111,114,109,58,32,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,44,92,110,32,32,32,32,66,70,111,114,109,68,97,116,97,108,105,115,116,58,32,95,102,111,114,109,95,100,97,116,97,108,105,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,68,97,116,97,108,105,115,116,44,92,110,32,32,32,32,66,68,97,116,97,108,105,115,116,58,32,95,102,111,114,109,95,100,97,116,97,108,105,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,70,111,114,109,68,97,116,97,108,105,115,116,44,92,110,32,32,32,32,66,70,111,114,109,84,101,120,116,58,32,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,70,111,114,109,84,101,120,116,44,92,110,32,32,32,32,66,70,111,114,109,73,110,118,97,108,105,100,70,101,101,100,98,97,99,107,58,32,95,102,111,114,109,95,105,110,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,70,111,114,109,73,110,118,97,108,105,100,70,101,101,100,98,97,99,107,44,92,110,32,32,32,32,66,70,111,114,109,70,101,101,100,98,97,99,107,58,32,95,102,111,114,109,95,105,110,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,70,111,114,109,73,110,118,97,108,105,100,70,101,101,100,98,97,99,107,44,92,110,32,32,32,32,66,70,111,114,109,86,97,108,105,100,70,101,101,100,98,97,99,107,58,32,95,102,111,114,109,95,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,70,111,114,109,86,97,108,105,100,70,101,101,100,98,97,99,107,44,92,110,32,32,32,32,47,47,32,65,100,100,101,100,32,104,101,114,101,32,102,111,114,32,99,111,110,118,101,110,105,101,110,99,101,92,110,32,32,32,32,66,70,111,114,109,82,111,119,58,32,95,108,97,121,111,117,116,95,102,111,114,109,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,70,111,114,109,82,111,119,92,110,32,32,125,92,110,125,41,59,32,47,47,32,66,70,111,114,109,82,111,119,32,105,115,32,110,111,116,32,101,120,112,111,114,116,101,100,32,104,101,114,101,32,97,115,32,97,32,110,97,109,101,100,32,101,120,112,111,114,116,44,32,97,115,32,105,116,32,105,115,32,101,120,112,111,114,116,101,100,32,98,121,32,76,97,121,111,117,116,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,45,108,97,122,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,45,108,97,122,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,109,103,76,97,122,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,109,103,76,97,122,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,118,105,115,105,98,108,101,95,118,105,115,105,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,47,118,105,115,105,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,47,118,105,115,105,98,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,109,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,72,79,87,32,61,32,39,115,104,111,119,39,59,92,110,118,97,114,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,32,43,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,72,79,87,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,105,109,103,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,111,109,105,116,41,40,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,44,32,91,39,98,108,97,110,107,39,93,41,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,105,109,103,80,114,111,112,115,41,44,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,92,110,32,32,98,108,97,110,107,67,111,108,111,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,116,114,97,110,115,112,97,114,101,110,116,39,41,44,92,110,32,32,98,108,97,110,107,72,101,105,103,104,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,73,102,32,96,110,117,108,108,96,44,32,97,32,98,108,97,110,107,32,105,109,97,103,101,32,105,115,32,103,101,110,101,114,97,116,101,100,92,110,32,32,98,108,97,110,107,83,114,99,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,110,117,108,108,41,44,92,110,32,32,98,108,97,110,107,87,105,100,116,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,68,105,115,116,97,110,99,101,32,97,119,97,121,32,102,114,111,109,32,118,105,101,119,112,111,114,116,32,40,105,110,32,112,105,120,101,108,115,41,92,110,32,32,47,47,32,98,101,102,111,114,101,32,98,101,105,110,103,32,99,111,110,115,105,100,101,114,101,100,32,92,34,118,105,115,105,98,108,101,92,34,92,110,32,32,111,102,102,115,101,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,51,54,48,41,92,110,125,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,72,79,87,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,73,77,71,95,76,65,90,89,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,73,109,103,76,97,122,121,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,73,77,71,95,76,65,90,89,44,92,110,32,32,100,105,114,101,99,116,105,118,101,115,58,32,123,92,110,32,32,32,32,39,98,45,118,105,115,105,98,108,101,39,58,32,95,100,105,114,101,99,116,105,118,101,115,95,118,105,115,105,98,108,101,95,118,105,115,105,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,86,66,86,105,115,105,98,108,101,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,105,115,83,104,111,119,110,58,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,72,79,87,93,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,114,99,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,114,99,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,108,97,110,107,83,114,99,32,61,32,116,104,105,115,46,98,108,97,110,107,83,114,99,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,98,108,97,110,107,83,114,99,32,124,124,32,116,104,105,115,46,105,115,83,104,111,119,110,32,63,32,116,104,105,115,46,115,114,99,32,58,32,98,108,97,110,107,83,114,99,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,66,108,97,110,107,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,66,108,97,110,107,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,40,116,104,105,115,46,105,115,83,104,111,119,110,32,124,124,32,116,104,105,115,46,98,108,97,110,107,83,114,99,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,87,105,100,116,104,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,87,105,100,116,104,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,119,105,100,116,104,32,61,32,116,104,105,115,46,119,105,100,116,104,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,104,111,119,110,32,63,32,119,105,100,116,104,32,58,32,116,104,105,115,46,98,108,97,110,107,87,105,100,116,104,32,124,124,32,119,105,100,116,104,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,72,101,105,103,104,116,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,72,101,105,103,104,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,101,105,103,104,116,32,61,32,116,104,105,115,46,104,101,105,103,104,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,104,111,119,110,32,63,32,104,101,105,103,104,116,32,58,32,116,104,105,115,46,98,108,97,110,107,72,101,105,103,104,116,32,124,124,32,104,101,105,103,104,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,114,99,115,101,116,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,114,99,115,101,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,114,99,115,101,116,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,99,111,110,99,97,116,41,40,116,104,105,115,46,115,114,99,115,101,116,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,44,39,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,98,108,97,110,107,83,114,99,32,124,124,32,116,104,105,115,46,105,115,83,104,111,119,110,32,63,32,115,114,99,115,101,116,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,105,122,101,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,105,122,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,105,122,101,115,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,99,111,110,99,97,116,41,40,116,104,105,115,46,115,105,122,101,115,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,44,39,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,98,108,97,110,107,83,114,99,32,124,124,32,116,104,105,115,46,105,115,83,104,111,119,110,32,63,32,115,105,122,101,115,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,72,79,87,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,96,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,96,32,115,117,112,112,111,114,116,32,105,115,32,110,111,116,32,97,118,97,105,108,97,98,108,101,44,32,105,109,97,103,101,32,105,115,32,97,108,119,97,121,115,32,115,104,111,119,110,92,110,32,32,32,32,32,32,118,97,114,32,118,105,115,105,98,108,101,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,72,65,83,95,73,78,84,69,82,65,67,84,73,79,78,95,79,66,83,69,82,86,69,82,95,83,85,80,80,79,82,84,32,63,32,110,101,119,86,97,108,117,101,32,58,32,116,114,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,83,104,111,119,110,32,61,32,118,105,115,105,98,108,101,59,32,47,47,32,69,110,115,117,114,101,32,116,104,101,32,115,104,111,119,32,112,114,111,112,32,105,115,32,115,121,110,99,101,100,32,40,119,104,101,110,32,110,111,32,96,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,96,41,92,110,92,110,32,32,32,32,32,32,105,102,32,40,118,105,115,105,98,108,101,32,33,61,61,32,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,117,112,100,97,116,101,83,104,111,119,80,114,111,112,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,105,115,83,104,111,119,110,92,34,44,32,102,117,110,99,116,105,111,110,32,105,115,83,104,111,119,110,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,47,47,32,85,112,100,97,116,101,32,115,121,110,99,104,101,100,32,115,104,111,119,32,112,114,111,112,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,83,104,111,119,80,114,111,112,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,73,102,32,96,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,96,32,105,115,32,110,111,116,32,97,118,97,105,108,97,98,108,101,44,32,105,109,97,103,101,32,105,115,32,97,108,119,97,121,115,32,115,104,111,119,110,92,110,32,32,32,32,116,104,105,115,46,105,115,83,104,111,119,110,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,72,65,83,95,73,78,84,69,82,65,67,84,73,79,78,95,79,66,83,69,82,86,69,82,95,83,85,80,80,79,82,84,32,63,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,72,79,87,93,32,58,32,116,114,117,101,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,117,112,100,97,116,101,83,104,111,119,80,114,111,112,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,83,104,111,119,80,114,111,112,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,44,32,116,104,105,115,46,105,115,83,104,111,119,110,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,111,83,104,111,119,58,32,102,117,110,99,116,105,111,110,32,100,111,83,104,111,119,40,118,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,32,105,115,32,110,111,116,32,115,117,112,112,111,114,116,101,100,44,32,116,104,101,32,99,97,108,108,98,97,99,107,92,110,32,32,32,32,32,32,47,47,32,119,105,108,108,32,98,101,32,99,97,108,108,101,100,32,119,105,116,104,32,96,110,117,108,108,96,32,114,97,116,104,101,114,32,116,104,97,110,32,96,116,114,117,101,96,32,111,114,32,96,102,97,108,115,101,96,92,110,32,32,32,32,32,32,105,102,32,40,40,118,105,115,105,98,108,101,32,124,124,32,118,105,115,105,98,108,101,32,61,61,61,32,110,117,108,108,41,32,38,38,32,33,116,104,105,115,46,105,115,83,104,111,119,110,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,83,104,111,119,110,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,100,105,114,101,99,116,105,118,101,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,83,104,111,119,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,109,111,100,105,102,105,101,114,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,97,100,100,32,116,104,101,32,118,105,115,105,98,108,101,32,100,105,114,101,99,116,105,118,101,32,105,102,32,119,101,32,97,114,101,32,110,111,116,32,115,104,111,119,110,92,110,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,47,47,32,86,105,115,105,98,108,101,32,100,105,114,101,99,116,105,118,101,32,119,105,108,108,32,115,105,108,101,110,116,108,121,32,100,111,32,110,111,116,104,105,110,103,32,105,102,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,32,105,115,32,110,111,116,32,115,117,112,112,111,114,116,101,100,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,39,98,45,118,105,115,105,98,108,101,39,44,92,110,32,32,32,32,32,32,32,32,47,47,32,86,97,108,117,101,32,101,120,112,101,99,116,115,32,97,32,99,97,108,108,98,97,99,107,32,40,112,97,115,115,101,100,32,111,110,101,32,97,114,103,32,111,102,32,96,118,105,115,105,98,108,101,96,32,61,32,96,116,114,117,101,96,32,111,114,32,96,102,97,108,115,101,96,41,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,100,111,83,104,111,119,44,92,110,32,32,32,32,32,32,32,32,109,111,100,105,102,105,101,114,115,58,32,40,95,109,111,100,105,102,105,101,114,115,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,111,100,105,102,105,101,114,115,44,32,92,34,92,34,46,99,111,110,99,97,116,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,111,102,102,115,101,116,44,32,48,41,41,44,32,116,114,117,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,111,100,105,102,105,101,114,115,44,32,92,34,111,110,99,101,92,34,44,32,116,114,117,101,41,44,32,95,109,111,100,105,102,105,101,114,115,41,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,73,109,103,44,32,123,92,110,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,100,105,114,101,99,116,105,118,101,115,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,111,109,112,117,116,101,100,32,118,97,108,117,101,32,112,114,111,112,115,92,110,32,32,32,32,32,32,32,32,115,114,99,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,114,99,44,92,110,32,32,32,32,32,32,32,32,98,108,97,110,107,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,66,108,97,110,107,44,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,87,105,100,116,104,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,72,101,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,115,114,99,115,101,116,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,114,99,115,101,116,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,115,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,105,109,103,80,114,111,112,115,44,32,116,104,105,115,46,36,112,114,111,112,115,41,41,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,45,108,97,122,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,109,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,109,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,92,110,47,47,32,66,108,97,110,107,32,105,109,97,103,101,32,119,105,116,104,32,102,105,108,108,32,116,101,109,112,108,97,116,101,92,110,92,110,118,97,114,32,66,76,65,78,75,95,84,69,77,80,76,65,84,69,32,61,32,39,60,115,118,103,32,119,105,100,116,104,61,92,34,37,123,119,125,92,34,32,104,101,105,103,104,116,61,92,34,37,123,104,125,92,34,32,39,32,43,32,39,120,109,108,110,115,61,92,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,92,34,32,39,32,43,32,39,118,105,101,119,66,111,120,61,92,34,48,32,48,32,37,123,119,125,32,37,123,104,125,92,34,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,92,34,110,111,110,101,92,34,62,39,32,43,32,39,60,114,101,99,116,32,119,105,100,116,104,61,92,34,49,48,48,37,92,34,32,104,101,105,103,104,116,61,92,34,49,48,48,37,92,34,32,115,116,121,108,101,61,92,34,102,105,108,108,58,37,123,102,125,59,92,34,62,60,47,114,101,99,116,62,39,32,43,32,39,60,47,115,118,103,62,39,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,92,110,118,97,114,32,109,97,107,101,66,108,97,110,107,73,109,103,83,114,99,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,66,108,97,110,107,73,109,103,83,114,99,40,119,105,100,116,104,44,32,104,101,105,103,104,116,44,32,99,111,108,111,114,41,32,123,92,110,32,32,118,97,114,32,115,114,99,32,61,32,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,66,76,65,78,75,95,84,69,77,80,76,65,84,69,46,114,101,112,108,97,99,101,40,39,37,123,119,125,39,44,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,111,83,116,114,105,110,103,41,40,119,105,100,116,104,41,41,46,114,101,112,108,97,99,101,40,39,37,123,104,125,39,44,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,111,83,116,114,105,110,103,41,40,104,101,105,103,104,116,41,41,46,114,101,112,108,97,99,101,40,39,37,123,102,125,39,44,32,99,111,108,111,114,41,41,59,92,110,32,32,114,101,116,117,114,110,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,84,70,45,56,44,92,34,46,99,111,110,99,97,116,40,115,114,99,41,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,108,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,98,108,97,110,107,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,98,108,97,110,107,67,111,108,111,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,116,114,97,110,115,112,97,114,101,110,116,39,41,44,92,110,32,32,98,108,111,99,107,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,99,101,110,116,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,102,108,117,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,71,105,118,101,115,32,102,108,117,105,100,32,105,109,97,103,101,115,32,99,108,97,115,115,32,96,119,45,49,48,48,96,32,116,111,32,109,97,107,101,32,116,104,101,109,32,103,114,111,119,32,116,111,32,102,105,116,32,99,111,110,116,97,105,110,101,114,92,110,32,32,102,108,117,105,100,71,114,111,119,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,104,101,105,103,104,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,44,92,110,32,32,108,101,102,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,105,103,104,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,80,111,115,115,105,98,108,101,32,118,97,108,117,101,115,58,92,110,32,32,47,47,32,32,32,96,102,97,108,115,101,96,58,32,110,111,32,114,111,117,110,100,105,110,103,32,111,102,32,99,111,114,110,101,114,115,92,110,32,32,47,47,32,32,32,96,116,114,117,101,96,58,32,115,108,105,103,104,116,108,121,32,114,111,117,110,100,101,100,32,99,111,114,110,101,114,115,92,110,32,32,47,47,32,32,32,39,116,111,112,39,58,32,116,111,112,32,99,111,114,110,101,114,115,32,114,111,117,110,100,101,100,92,110,32,32,47,47,32,32,32,39,114,105,103,104,116,39,58,32,114,105,103,104,116,32,99,111,114,110,101,114,115,32,114,111,117,110,100,101,100,92,110,32,32,47,47,32,32,32,39,98,111,116,116,111,109,39,58,32,98,111,116,116,111,109,32,99,111,114,110,101,114,115,32,114,111,117,110,100,101,100,92,110,32,32,47,47,32,32,32,39,108,101,102,116,39,58,32,108,101,102,116,32,99,111,114,110,101,114,115,32,114,111,117,110,100,101,100,92,110,32,32,47,47,32,32,32,39,99,105,114,99,108,101,39,58,32,99,105,114,99,108,101,47,111,118,97,108,92,110,32,32,47,47,32,32,32,39,48,39,58,32,102,111,114,99,101,32,114,111,117,110,100,105,110,103,32,111,102,102,92,110,32,32,114,111,117,110,100,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,44,92,110,32,32,115,105,122,101,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,41,44,92,110,32,32,115,114,99,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,115,114,99,115,101,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,41,44,92,110,32,32,116,104,117,109,98,110,97,105,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,119,105,100,116,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,73,77,71,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,73,109,103,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,73,77,71,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,95,99,108,97,115,115,59,92,110,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,59,92,110,32,32,32,32,118,97,114,32,97,108,116,32,61,32,112,114,111,112,115,46,97,108,116,44,92,110,32,32,32,32,32,32,32,32,115,114,99,32,61,32,112,114,111,112,115,46,115,114,99,44,92,110,32,32,32,32,32,32,32,32,98,108,111,99,107,32,61,32,112,114,111,112,115,46,98,108,111,99,107,44,92,110,32,32,32,32,32,32,32,32,102,108,117,105,100,71,114,111,119,32,61,32,112,114,111,112,115,46,102,108,117,105,100,71,114,111,119,44,92,110,32,32,32,32,32,32,32,32,114,111,117,110,100,101,100,32,61,32,112,114,111,112,115,46,114,111,117,110,100,101,100,59,92,110,32,32,32,32,118,97,114,32,119,105,100,116,104,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,73,110,116,101,103,101,114,41,40,112,114,111,112,115,46,119,105,100,116,104,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,118,97,114,32,104,101,105,103,104,116,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,73,110,116,101,103,101,114,41,40,112,114,111,112,115,46,104,101,105,103,104,116,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,118,97,114,32,97,108,105,103,110,32,61,32,110,117,108,108,59,92,110,32,32,32,32,118,97,114,32,115,114,99,115,101,116,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,99,111,110,99,97,116,41,40,112,114,111,112,115,46,115,114,99,115,101,116,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,44,39,41,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,115,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,99,111,110,99,97,116,41,40,112,114,111,112,115,46,115,105,122,101,115,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,44,39,41,59,92,110,92,110,32,32,32,32,105,102,32,40,112,114,111,112,115,46,98,108,97,110,107,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,104,101,105,103,104,116,32,38,38,32,119,105,100,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,32,61,32,119,105,100,116,104,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,119,105,100,116,104,32,38,38,32,104,101,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,32,61,32,104,101,105,103,104,116,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,119,105,100,116,104,32,38,38,32,33,104,101,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,32,61,32,49,59,92,110,32,32,32,32,32,32,125,32,47,47,32,77,97,107,101,32,97,32,98,108,97,110,107,32,83,86,71,32,105,109,97,103,101,92,110,92,110,92,110,32,32,32,32,32,32,115,114,99,32,61,32,109,97,107,101,66,108,97,110,107,73,109,103,83,114,99,40,119,105,100,116,104,44,32,104,101,105,103,104,116,44,32,112,114,111,112,115,46,98,108,97,110,107,67,111,108,111,114,32,124,124,32,39,116,114,97,110,115,112,97,114,101,110,116,39,41,59,32,47,47,32,68,105,115,97,98,108,101,32,115,114,99,115,101,116,32,97,110,100,32,115,105,122,101,115,92,110,92,110,32,32,32,32,32,32,115,114,99,115,101,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,115,105,122,101,115,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,112,114,111,112,115,46,108,101,102,116,41,32,123,92,110,32,32,32,32,32,32,97,108,105,103,110,32,61,32,39,102,108,111,97,116,45,108,101,102,116,39,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,112,114,111,112,115,46,114,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,97,108,105,103,110,32,61,32,39,102,108,111,97,116,45,114,105,103,104,116,39,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,112,114,111,112,115,46,99,101,110,116,101,114,41,32,123,92,110,32,32,32,32,32,32,97,108,105,103,110,32,61,32,39,109,120,45,97,117,116,111,39,59,92,110,32,32,32,32,32,32,98,108,111,99,107,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,105,109,103,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,115,114,99,58,32,115,114,99,44,92,110,32,32,32,32,32,32,32,32,97,108,116,58,32,97,108,116,44,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,119,105,100,116,104,32,63,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,111,83,116,114,105,110,103,41,40,119,105,100,116,104,41,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,104,101,105,103,104,116,32,63,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,111,83,116,114,105,110,103,41,40,104,101,105,103,104,116,41,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,115,114,99,115,101,116,58,32,115,114,99,115,101,116,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,115,58,32,115,105,122,101,115,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,40,95,99,108,97,115,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,39,105,109,103,45,116,104,117,109,98,110,97,105,108,39,58,32,112,114,111,112,115,46,116,104,117,109,98,110,97,105,108,44,92,110,32,32,32,32,32,32,32,32,39,105,109,103,45,102,108,117,105,100,39,58,32,112,114,111,112,115,46,102,108,117,105,100,32,124,124,32,102,108,117,105,100,71,114,111,119,44,92,110,32,32,32,32,32,32,32,32,39,119,45,49,48,48,39,58,32,102,108,117,105,100,71,114,111,119,44,92,110,32,32,32,32,32,32,32,32,114,111,117,110,100,101,100,58,32,114,111,117,110,100,101,100,32,61,61,61,32,39,39,32,124,124,32,114,111,117,110,100,101,100,32,61,61,61,32,116,114,117,101,92,110,32,32,32,32,32,32,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,114,111,117,110,100,101,100,45,92,34,46,99,111,110,99,97,116,40,114,111,117,110,100,101,100,41,44,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,105,115,83,116,114,105,110,103,41,40,114,111,117,110,100,101,100,41,32,38,38,32,114,111,117,110,100,101,100,32,33,61,61,32,39,39,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,97,108,105,103,110,44,32,97,108,105,103,110,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,39,100,45,98,108,111,99,107,39,44,32,98,108,111,99,107,41,44,32,95,99,108,97,115,115,41,92,110,32,32,32,32,125,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,109,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,73,109,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,109,103,76,97,122,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,109,103,95,108,97,122,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,73,109,103,76,97,122,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,109,97,103,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,109,97,103,101,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,109,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,109,103,95,108,97,122,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,109,103,45,108,97,122,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,45,108,97,122,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,73,109,97,103,101,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,73,109,103,58,32,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,73,109,103,44,92,110,32,32,32,32,66,73,109,103,76,97,122,121,58,32,95,105,109,103,95,108,97,122,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,73,109,103,76,97,122,121,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,109,112,111,110,101,110,116,115,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,109,112,111,110,101,110,116,115,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,108,101,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,108,101,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,108,101,114,116,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,115,112,101,99,116,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,118,97,116,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,118,97,116,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,97,100,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,97,100,103,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,114,101,97,100,99,114,117,109,98,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,114,101,97,100,99,114,117,109,98,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,117,116,116,111,110,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,116,111,111,108,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,108,101,110,100,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,108,101,110,100,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,108,101,110,100,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,111,117,115,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,111,117,115,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,108,97,112,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,108,108,97,112,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,114,111,112,100,111,119,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,109,98,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,109,98,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,101,109,98,101,100,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,99,104,101,99,107,98,111,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,100,97,116,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,102,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,102,105,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,102,105,108,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,105,110,112,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,105,110,112,117,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,105,110,112,117,116,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,114,97,100,105,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,114,97,100,105,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,114,97,116,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,114,97,116,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,116,105,110,103,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,115,101,108,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,116,97,103,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,116,97,103,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,116,101,120,116,97,114,101,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,116,101,120,116,97,114,101,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,101,120,116,97,114,101,97,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,116,105,109,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,109,97,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,109,97,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,112,117,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,112,117,116,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,106,117,109,98,111,116,114,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,106,117,109,98,111,116,114,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,106,117,109,98,111,116,114,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,97,121,111,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,97,121,111,117,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,115,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,115,116,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,101,100,105,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,100,105,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,111,100,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,118,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,118,98,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,118,101,114,108,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,118,101,114,108,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,111,118,101,114,108,97,121,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,97,103,105,110,97,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,97,103,105,110,97,116,105,111,110,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,112,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,103,114,101,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,103,114,101,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,105,100,101,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,105,100,101,98,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,105,100,101,98,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,107,101,108,101,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,107,101,108,101,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,112,105,110,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,112,105,110,110,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,112,105,110,110,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,97,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,97,98,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,97,98,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,105,109,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,111,97,115,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,111,111,108,116,105,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,32,47,47,32,67,111,109,112,111,110,101,110,116,32,103,114,111,117,112,32,112,108,117,103,105,110,115,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,84,97,98,108,101,32,112,108,117,103,105,110,32,105,110,99,108,117,100,101,115,32,84,97,98,108,101,76,105,116,101,80,108,117,103,105,110,32,97,110,100,32,84,97,98,108,101,83,105,109,112,108,101,80,108,117,103,105,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,77,97,105,110,32,112,108,117,103,105,110,32,116,111,32,105,110,115,116,97,108,108,32,97,108,108,32,99,111,109,112,111,110,101,110,116,32,103,114,111,117,112,32,112,108,117,103,105,110,115,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,115,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,112,108,117,103,105,110,115,58,32,123,92,110,32,32,32,32,65,108,101,114,116,80,108,117,103,105,110,58,32,95,97,108,101,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,65,108,101,114,116,80,108,117,103,105,110,44,92,110,32,32,32,32,65,115,112,101,99,116,80,108,117,103,105,110,58,32,95,97,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,65,115,112,101,99,116,80,108,117,103,105,110,44,92,110,32,32,32,32,65,118,97,116,97,114,80,108,117,103,105,110,58,32,95,97,118,97,116,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,65,118,97,116,97,114,80,108,117,103,105,110,44,92,110,32,32,32,32,66,97,100,103,101,80,108,117,103,105,110,58,32,95,98,97,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,97,100,103,101,80,108,117,103,105,110,44,92,110,32,32,32,32,66,114,101,97,100,99,114,117,109,98,80,108,117,103,105,110,58,32,95,98,114,101,97,100,99,114,117,109,98,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,114,101,97,100,99,114,117,109,98,80,108,117,103,105,110,44,92,110,32,32,32,32,66,117,116,116,111,110,80,108,117,103,105,110,58,32,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,117,116,116,111,110,80,108,117,103,105,110,44,92,110,32,32,32,32,66,117,116,116,111,110,71,114,111,117,112,80,108,117,103,105,110,58,32,95,98,117,116,116,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,66,117,116,116,111,110,71,114,111,117,112,80,108,117,103,105,110,44,92,110,32,32,32,32,66,117,116,116,111,110,84,111,111,108,98,97,114,80,108,117,103,105,110,58,32,95,98,117,116,116,111,110,95,116,111,111,108,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,117,116,116,111,110,84,111,111,108,98,97,114,80,108,117,103,105,110,44,92,110,32,32,32,32,67,97,108,101,110,100,97,114,80,108,117,103,105,110,58,32,95,99,97,108,101,110,100,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,67,97,108,101,110,100,97,114,80,108,117,103,105,110,44,92,110,32,32,32,32,67,97,114,100,80,108,117,103,105,110,58,32,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,67,97,114,100,80,108,117,103,105,110,44,92,110,32,32,32,32,67,97,114,111,117,115,101,108,80,108,117,103,105,110,58,32,95,99,97,114,111,117,115,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,67,97,114,111,117,115,101,108,80,108,117,103,105,110,44,92,110,32,32,32,32,67,111,108,108,97,112,115,101,80,108,117,103,105,110,58,32,95,99,111,108,108,97,112,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,67,111,108,108,97,112,115,101,80,108,117,103,105,110,44,92,110,32,32,32,32,68,114,111,112,100,111,119,110,80,108,117,103,105,110,58,32,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,68,114,111,112,100,111,119,110,80,108,117,103,105,110,44,92,110,32,32,32,32,69,109,98,101,100,80,108,117,103,105,110,58,32,95,101,109,98,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,69,109,98,101,100,80,108,117,103,105,110,44,92,110,32,32,32,32,70,111,114,109,80,108,117,103,105,110,58,32,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,70,111,114,109,80,108,117,103,105,110,44,92,110,32,32,32,32,70,111,114,109,67,104,101,99,107,98,111,120,80,108,117,103,105,110,58,32,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,70,111,114,109,67,104,101,99,107,98,111,120,80,108,117,103,105,110,44,92,110,32,32,32,32,70,111,114,109,68,97,116,101,112,105,99,107,101,114,80,108,117,103,105,110,58,32,95,102,111,114,109,95,100,97,116,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,70,111,114,109,68,97,116,101,112,105,99,107,101,114,80,108,117,103,105,110,44,92,110,32,32,32,32,70,111,114,109,70,105,108,101,80,108,117,103,105,110,58,32,95,102,111,114,109,95,102,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,70,111,114,109,70,105,108,101,80,108,117,103,105,110,44,92,110,32,32,32,32,70,111,114,109,71,114,111,117,112,80,108,117,103,105,110,58,32,95,102,111,114,109,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,70,111,114,109,71,114,111,117,112,80,108,117,103,105,110,44,92,110,32,32,32,32,70,111,114,109,73,110,112,117,116,80,108,117,103,105,110,58,32,95,102,111,114,109,95,105,110,112,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,70,111,114,109,73,110,112,117,116,80,108,117,103,105,110,44,92,110,32,32,32,32,70,111,114,109,82,97,100,105,111,80,108,117,103,105,110,58,32,95,102,111,114,109,95,114,97,100,105,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,70,111,114,109,82,97,100,105,111,80,108,117,103,105,110,44,92,110,32,32,32,32,70,111,114,109,82,97,116,105,110,103,80,108,117,103,105,110,58,32,95,102,111,114,109,95,114,97,116,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,70,111,114,109,82,97,116,105,110,103,80,108,117,103,105,110,44,92,110,32,32,32,32,70,111,114,109,83,101,108,101,99,116,80,108,117,103,105,110,58,32,95,102,111,114,109,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,70,111,114,109,83,101,108,101,99,116,80,108,117,103,105,110,44,92,110,32,32,32,32,70,111,114,109,83,112,105,110,98,117,116,116,111,110,80,108,117,103,105,110,58,32,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,70,111,114,109,83,112,105,110,98,117,116,116,111,110,80,108,117,103,105,110,44,92,110,32,32,32,32,70,111,114,109,84,97,103,115,80,108,117,103,105,110,58,32,95,102,111,114,109,95,116,97,103,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,70,111,114,109,84,97,103,115,80,108,117,103,105,110,44,92,110,32,32,32,32,70,111,114,109,84,101,120,116,97,114,101,97,80,108,117,103,105,110,58,32,95,102,111,114,109,95,116,101,120,116,97,114,101,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,70,111,114,109,84,101,120,116,97,114,101,97,80,108,117,103,105,110,44,92,110,32,32,32,32,70,111,114,109,84,105,109,101,112,105,99,107,101,114,80,108,117,103,105,110,58,32,95,102,111,114,109,95,116,105,109,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,46,70,111,114,109,84,105,109,101,112,105,99,107,101,114,80,108,117,103,105,110,44,92,110,32,32,32,32,73,109,97,103,101,80,108,117,103,105,110,58,32,95,105,109,97,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,46,73,109,97,103,101,80,108,117,103,105,110,44,92,110,32,32,32,32,73,110,112,117,116,71,114,111,117,112,80,108,117,103,105,110,58,32,95,105,110,112,117,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,46,73,110,112,117,116,71,114,111,117,112,80,108,117,103,105,110,44,92,110,32,32,32,32,74,117,109,98,111,116,114,111,110,80,108,117,103,105,110,58,32,95,106,117,109,98,111,116,114,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,46,74,117,109,98,111,116,114,111,110,80,108,117,103,105,110,44,92,110,32,32,32,32,76,97,121,111,117,116,80,108,117,103,105,110,58,32,95,108,97,121,111,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,46,76,97,121,111,117,116,80,108,117,103,105,110,44,92,110,32,32,32,32,76,105,110,107,80,108,117,103,105,110,58,32,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,50,95,95,46,76,105,110,107,80,108,117,103,105,110,44,92,110,32,32,32,32,76,105,115,116,71,114,111,117,112,80,108,117,103,105,110,58,32,95,108,105,115,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,51,95,95,46,76,105,115,116,71,114,111,117,112,80,108,117,103,105,110,44,92,110,32,32,32,32,77,101,100,105,97,80,108,117,103,105,110,58,32,95,109,101,100,105,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,52,95,95,46,77,101,100,105,97,80,108,117,103,105,110,44,92,110,32,32,32,32,77,111,100,97,108,80,108,117,103,105,110,58,32,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,53,95,95,46,77,111,100,97,108,80,108,117,103,105,110,44,92,110,32,32,32,32,78,97,118,80,108,117,103,105,110,58,32,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,54,95,95,46,78,97,118,80,108,117,103,105,110,44,92,110,32,32,32,32,78,97,118,98,97,114,80,108,117,103,105,110,58,32,95,110,97,118,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,55,95,95,46,78,97,118,98,97,114,80,108,117,103,105,110,44,92,110,32,32,32,32,79,118,101,114,108,97,121,80,108,117,103,105,110,58,32,95,111,118,101,114,108,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,56,95,95,46,79,118,101,114,108,97,121,80,108,117,103,105,110,44,92,110,32,32,32,32,80,97,103,105,110,97,116,105,111,110,80,108,117,103,105,110,58,32,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,57,95,95,46,80,97,103,105,110,97,116,105,111,110,80,108,117,103,105,110,44,92,110,32,32,32,32,80,97,103,105,110,97,116,105,111,110,78,97,118,80,108,117,103,105,110,58,32,95,112,97,103,105,110,97,116,105,111,110,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,48,95,95,46,80,97,103,105,110,97,116,105,111,110,78,97,118,80,108,117,103,105,110,44,92,110,32,32,32,32,80,111,112,111,118,101,114,80,108,117,103,105,110,58,32,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,49,95,95,46,80,111,112,111,118,101,114,80,108,117,103,105,110,44,92,110,32,32,32,32,80,114,111,103,114,101,115,115,80,108,117,103,105,110,58,32,95,112,114,111,103,114,101,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,50,95,95,46,80,114,111,103,114,101,115,115,80,108,117,103,105,110,44,92,110,32,32,32,32,83,105,100,101,98,97,114,80,108,117,103,105,110,58,32,95,115,105,100,101,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,51,95,95,46,83,105,100,101,98,97,114,80,108,117,103,105,110,44,92,110,32,32,32,32,83,107,101,108,101,116,111,110,80,108,117,103,105,110,58,32,95,115,107,101,108,101,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,52,95,95,46,83,107,101,108,101,116,111,110,80,108,117,103,105,110,44,92,110,32,32,32,32,83,112,105,110,110,101,114,80,108,117,103,105,110,58,32,95,115,112,105,110,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,53,95,95,46,83,112,105,110,110,101,114,80,108,117,103,105,110,44,92,110,32,32,32,32,84,97,98,108,101,80,108,117,103,105,110,58,32,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,54,95,95,46,84,97,98,108,101,80,108,117,103,105,110,44,92,110,32,32,32,32,84,97,98,115,80,108,117,103,105,110,58,32,95,116,97,98,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,55,95,95,46,84,97,98,115,80,108,117,103,105,110,44,92,110,32,32,32,32,84,105,109,101,80,108,117,103,105,110,58,32,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,56,95,95,46,84,105,109,101,80,108,117,103,105,110,44,92,110,32,32,32,32,84,111,97,115,116,80,108,117,103,105,110,58,32,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,57,95,95,46,84,111,97,115,116,80,108,117,103,105,110,44,92,110,32,32,32,32,84,111,111,108,116,105,112,80,108,117,103,105,110,58,32,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,48,95,95,46,84,111,111,108,116,105,112,80,108,117,103,105,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,110,112,117,116,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,110,112,117,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,73,110,112,117,116,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,110,112,117,116,71,114,111,117,112,65,100,100,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,110,112,117,116,95,103,114,111,117,112,95,97,100,100,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,73,110,112,117,116,71,114,111,117,112,65,100,100,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,110,112,117,116,71,114,111,117,112,65,112,112,101,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,110,112,117,116,95,103,114,111,117,112,95,97,112,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,73,110,112,117,116,71,114,111,117,112,65,112,112,101,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,110,112,117,116,71,114,111,117,112,80,114,101,112,101,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,110,112,117,116,95,103,114,111,117,112,95,112,114,101,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,110,112,117,116,71,114,111,117,112,80,114,101,112,101,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,110,112,117,116,71,114,111,117,112,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,110,112,117,116,95,103,114,111,117,112,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,73,110,112,117,116,71,114,111,117,112,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,110,112,117,116,71,114,111,117,112,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,110,112,117,116,71,114,111,117,112,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,112,117,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,112,117,116,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,112,117,116,95,103,114,111,117,112,95,97,100,100,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,112,117,116,45,103,114,111,117,112,45,97,100,100,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,97,100,100,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,112,117,116,95,103,114,111,117,112,95,112,114,101,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,112,117,116,95,103,114,111,117,112,95,97,112,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,112,117,116,95,103,114,111,117,112,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,73,110,112,117,116,71,114,111,117,112,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,73,110,112,117,116,71,114,111,117,112,58,32,95,105,110,112,117,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,73,110,112,117,116,71,114,111,117,112,44,92,110,32,32,32,32,66,73,110,112,117,116,71,114,111,117,112,65,100,100,111,110,58,32,95,105,110,112,117,116,95,103,114,111,117,112,95,97,100,100,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,73,110,112,117,116,71,114,111,117,112,65,100,100,111,110,44,92,110,32,32,32,32,66,73,110,112,117,116,71,114,111,117,112,80,114,101,112,101,110,100,58,32,95,105,110,112,117,116,95,103,114,111,117,112,95,112,114,101,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,110,112,117,116,71,114,111,117,112,80,114,101,112,101,110,100,44,92,110,32,32,32,32,66,73,110,112,117,116,71,114,111,117,112,65,112,112,101,110,100,58,32,95,105,110,112,117,116,95,103,114,111,117,112,95,97,112,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,73,110,112,117,116,71,114,111,117,112,65,112,112,101,110,100,44,92,110,32,32,32,32,66,73,110,112,117,116,71,114,111,117,112,84,101,120,116,58,32,95,105,110,112,117,116,95,103,114,111,117,112,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,73,110,112,117,116,71,114,111,117,112,84,101,120,116,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,97,100,100,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,97,100,100,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,110,112,117,116,71,114,111,117,112,65,100,100,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,110,112,117,116,71,114,111,117,112,65,100,100,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,112,117,116,95,103,114,111,117,112,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,112,112,101,110,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,105,115,84,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,65,68,68,79,78,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,73,110,112,117,116,71,114,111,117,112,65,100,100,111,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,65,68,68,79,78,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,97,112,112,101,110,100,32,61,32,112,114,111,112,115,46,97,112,112,101,110,100,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,39,58,32,97,112,112,101,110,100,44,92,110,32,32,32,32,32,32,32,32,39,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,39,58,32,33,97,112,112,101,110,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,112,114,111,112,115,46,105,100,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,44,32,112,114,111,112,115,46,105,115,84,101,120,116,32,63,32,91,104,40,95,105,110,112,117,116,95,103,114,111,117,112,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,73,110,112,117,116,71,114,111,117,112,84,101,120,116,44,32,99,104,105,108,100,114,101,110,41,93,32,58,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,97,100,100,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,110,112,117,116,71,114,111,117,112,65,112,112,101,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,110,112,117,116,71,114,111,117,112,65,112,112,101,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,112,117,116,95,103,114,111,117,112,95,97,100,100,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,112,117,116,45,103,114,111,117,112,45,97,100,100,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,97,100,100,111,110,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,111,109,105,116,41,40,95,105,110,112,117,116,95,103,114,111,117,112,95,97,100,100,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,44,32,91,39,97,112,112,101,110,100,39,93,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,65,80,80,69,78,68,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,73,110,112,117,116,71,114,111,117,112,65,112,112,101,110,100,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,65,80,80,69,78,68,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,47,47,32,80,97,115,115,32,97,108,108,32,111,117,114,32,100,97,116,97,32,100,111,119,110,32,116,111,32,99,104,105,108,100,44,32,97,110,100,32,115,101,116,32,96,97,112,112,101,110,100,96,32,116,111,32,96,116,114,117,101,96,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,95,105,110,112,117,116,95,103,114,111,117,112,95,97,100,100,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,73,110,112,117,116,71,114,111,117,112,65,100,100,111,110,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,97,112,112,101,110,100,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,110,112,117,116,71,114,111,117,112,80,114,101,112,101,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,110,112,117,116,71,114,111,117,112,80,114,101,112,101,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,112,117,116,95,103,114,111,117,112,95,97,100,100,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,112,117,116,45,103,114,111,117,112,45,97,100,100,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,97,100,100,111,110,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,111,109,105,116,41,40,95,105,110,112,117,116,95,103,114,111,117,112,95,97,100,100,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,44,32,91,39,97,112,112,101,110,100,39,93,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,80,82,69,80,69,78,68,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,73,110,112,117,116,71,114,111,117,112,80,114,101,112,101,110,100,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,80,82,69,80,69,78,68,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,47,47,32,80,97,115,115,32,97,108,108,32,111,117,114,32,100,97,116,97,32,100,111,119,110,32,116,111,32,99,104,105,108,100,44,32,97,110,100,32,115,101,116,32,96,97,112,112,101,110,100,96,32,116,111,32,96,116,114,117,101,96,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,95,105,110,112,117,116,95,103,114,111,117,112,95,97,100,100,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,73,110,112,117,116,71,114,111,117,112,65,100,100,111,110,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,97,112,112,101,110,100,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,41,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,110,112,117,116,71,114,111,117,112,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,110,112,117,116,71,114,111,117,112,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,84,69,88,84,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,73,110,112,117,116,71,114,111,117,112,84,101,120,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,84,69,88,84,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,39,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,110,112,117,116,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,110,112,117,116,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,112,117,116,95,103,114,111,117,112,95,97,112,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,112,117,116,95,103,114,111,117,112,95,112,114,101,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,112,117,116,95,103,114,111,117,112,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,112,112,101,110,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,97,112,112,101,110,100,72,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,112,114,101,112,101,110,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,112,114,101,112,101,110,100,72,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,115,105,122,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,73,110,112,117,116,71,114,111,117,112,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,115,108,111,116,115,32,61,32,95,114,101,102,46,115,108,111,116,115,44,92,110,32,32,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,32,61,32,95,114,101,102,46,115,99,111,112,101,100,83,108,111,116,115,59,92,110,32,32,32,32,118,97,114,32,112,114,101,112,101,110,100,32,61,32,112,114,111,112,115,46,112,114,101,112,101,110,100,44,92,110,32,32,32,32,32,32,32,32,112,114,101,112,101,110,100,72,116,109,108,32,61,32,112,114,111,112,115,46,112,114,101,112,101,110,100,72,116,109,108,44,92,110,32,32,32,32,32,32,32,32,97,112,112,101,110,100,32,61,32,112,114,111,112,115,46,97,112,112,101,110,100,44,92,110,32,32,32,32,32,32,32,32,97,112,112,101,110,100,72,116,109,108,32,61,32,112,114,111,112,115,46,97,112,112,101,110,100,72,116,109,108,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,32,61,32,112,114,111,112,115,46,115,105,122,101,59,92,110,32,32,32,32,118,97,114,32,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,115,99,111,112,101,100,83,108,111,116,115,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,36,115,108,111,116,115,32,61,32,115,108,111,116,115,40,41,59,92,110,32,32,32,32,118,97,114,32,115,108,111,116,83,99,111,112,101,32,61,32,123,125,59,92,110,32,32,32,32,118,97,114,32,36,112,114,101,112,101,110,100,32,61,32,104,40,41,59,92,110,32,32,32,32,118,97,114,32,104,97,115,80,114,101,112,101,110,100,83,108,111,116,32,61,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,80,82,69,80,69,78,68,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,59,92,110,92,110,32,32,32,32,105,102,32,40,104,97,115,80,114,101,112,101,110,100,83,108,111,116,32,124,124,32,112,114,101,112,101,110,100,32,124,124,32,112,114,101,112,101,110,100,72,116,109,108,41,32,123,92,110,32,32,32,32,32,32,36,112,114,101,112,101,110,100,32,61,32,104,40,95,105,110,112,117,116,95,103,114,111,117,112,95,112,114,101,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,73,110,112,117,116,71,114,111,117,112,80,114,101,112,101,110,100,44,32,91,104,97,115,80,114,101,112,101,110,100,83,108,111,116,32,63,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,80,82,69,80,69,78,68,44,32,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,32,58,32,104,40,95,105,110,112,117,116,95,103,114,111,117,112,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,66,73,110,112,117,116,71,114,111,117,112,84,101,120,116,44,32,123,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,112,114,101,112,101,110,100,72,116,109,108,44,32,112,114,101,112,101,110,100,41,92,110,32,32,32,32,32,32,125,41,93,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,97,112,112,101,110,100,32,61,32,104,40,41,59,92,110,32,32,32,32,118,97,114,32,104,97,115,65,112,112,101,110,100,83,108,111,116,32,61,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,65,80,80,69,78,68,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,59,92,110,92,110,32,32,32,32,105,102,32,40,104,97,115,65,112,112,101,110,100,83,108,111,116,32,124,124,32,97,112,112,101,110,100,32,124,124,32,97,112,112,101,110,100,72,116,109,108,41,32,123,92,110,32,32,32,32,32,32,36,97,112,112,101,110,100,32,61,32,104,40,95,105,110,112,117,116,95,103,114,111,117,112,95,97,112,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,110,112,117,116,71,114,111,117,112,65,112,112,101,110,100,44,32,91,104,97,115,65,112,112,101,110,100,83,108,111,116,32,63,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,65,80,80,69,78,68,44,32,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,32,58,32,104,40,95,105,110,112,117,116,95,103,114,111,117,112,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,66,73,110,112,117,116,71,114,111,117,112,84,101,120,116,44,32,123,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,97,112,112,101,110,100,72,116,109,108,44,32,97,112,112,101,110,100,41,92,110,32,32,32,32,32,32,125,41,93,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,105,110,112,117,116,45,103,114,111,117,112,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,92,34,105,110,112,117,116,45,103,114,111,117,112,45,92,34,46,99,111,110,99,97,116,40,115,105,122,101,41,44,32,115,105,122,101,41,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,112,114,111,112,115,46,105,100,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,103,114,111,117,112,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,44,32,91,36,112,114,101,112,101,110,100,44,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,44,32,36,97,112,112,101,110,100,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,106,117,109,98,111,116,114,111,110,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,106,117,109,98,111,116,114,111,110,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,74,117,109,98,111,116,114,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,106,117,109,98,111,116,114,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,74,117,109,98,111,116,114,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,74,117,109,98,111,116,114,111,110,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,74,117,109,98,111,116,114,111,110,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,106,117,109,98,111,116,114,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,106,117,109,98,111,116,114,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,106,117,109,98,111,116,114,111,110,47,106,117,109,98,111,116,114,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,74,117,109,98,111,116,114,111,110,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,74,117,109,98,111,116,114,111,110,58,32,95,106,117,109,98,111,116,114,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,74,117,109,98,111,116,114,111,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,106,117,109,98,111,116,114,111,110,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,106,117,109,98,111,116,114,111,110,47,106,117,109,98,111,116,114,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,106,117,109,98,111,116,114,111,110,47,106,117,109,98,111,116,114,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,74,117,109,98,111,116,114,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,74,117,109,98,111,116,114,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,97,121,111,117,116,95,99,111,110,116,97,105,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,97,121,111,117,116,47,99,111,110,116,97,105,110,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,99,111,110,116,97,105,110,101,114,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,98,103,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,98,111,114,100,101,114,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,99,111,110,116,97,105,110,101,114,70,108,117,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,44,92,110,32,32,102,108,117,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,104,101,97,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,104,101,97,100,101,114,72,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,104,101,97,100,101,114,76,101,118,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,51,41,44,92,110,32,32,104,101,97,100,101,114,84,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,104,49,39,41,44,92,110,32,32,108,101,97,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,108,101,97,100,72,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,108,101,97,100,84,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,112,39,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,44,92,110,32,32,116,101,120,116,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,74,85,77,66,79,84,82,79,78,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,74,117,109,98,111,116,114,111,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,74,85,77,66,79,84,82,79,78,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,95,99,108,97,115,115,50,59,92,110,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,115,108,111,116,115,32,61,32,95,114,101,102,46,115,108,111,116,115,44,92,110,32,32,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,32,61,32,95,114,101,102,46,115,99,111,112,101,100,83,108,111,116,115,59,92,110,32,32,32,32,118,97,114,32,104,101,97,100,101,114,32,61,32,112,114,111,112,115,46,104,101,97,100,101,114,44,92,110,32,32,32,32,32,32,32,32,104,101,97,100,101,114,72,116,109,108,32,61,32,112,114,111,112,115,46,104,101,97,100,101,114,72,116,109,108,44,92,110,32,32,32,32,32,32,32,32,108,101,97,100,32,61,32,112,114,111,112,115,46,108,101,97,100,44,92,110,32,32,32,32,32,32,32,32,108,101,97,100,72,116,109,108,32,61,32,112,114,111,112,115,46,108,101,97,100,72,116,109,108,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,86,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,116,101,120,116,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,98,103,86,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,98,103,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,98,111,114,100,101,114,86,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,98,111,114,100,101,114,86,97,114,105,97,110,116,59,92,110,32,32,32,32,118,97,114,32,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,115,99,111,112,101,100,83,108,111,116,115,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,36,115,108,111,116,115,32,61,32,115,108,111,116,115,40,41,59,92,110,32,32,32,32,118,97,114,32,115,108,111,116,83,99,111,112,101,32,61,32,123,125,59,92,110,32,32,32,32,118,97,114,32,36,104,101,97,100,101,114,32,61,32,104,40,41,59,92,110,32,32,32,32,118,97,114,32,104,97,115,72,101,97,100,101,114,83,108,111,116,32,61,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,72,69,65,68,69,82,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,59,92,110,92,110,32,32,32,32,105,102,32,40,104,97,115,72,101,97,100,101,114,83,108,111,116,32,124,124,32,104,101,97,100,101,114,32,124,124,32,104,101,97,100,101,114,72,116,109,108,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,101,97,100,101,114,76,101,118,101,108,32,61,32,112,114,111,112,115,46,104,101,97,100,101,114,76,101,118,101,108,59,92,110,32,32,32,32,32,32,36,104,101,97,100,101,114,32,61,32,104,40,112,114,111,112,115,46,104,101,97,100,101,114,84,97,103,44,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,92,34,100,105,115,112,108,97,121,45,92,34,46,99,111,110,99,97,116,40,104,101,97,100,101,114,76,101,118,101,108,41,44,32,104,101,97,100,101,114,76,101,118,101,108,41,44,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,104,97,115,72,101,97,100,101,114,83,108,111,116,32,63,32,123,125,32,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,104,101,97,100,101,114,72,116,109,108,44,32,104,101,97,100,101,114,41,92,110,32,32,32,32,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,72,69,65,68,69,82,44,32,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,108,101,97,100,32,61,32,104,40,41,59,92,110,32,32,32,32,118,97,114,32,104,97,115,76,101,97,100,83,108,111,116,32,61,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,76,69,65,68,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,59,92,110,92,110,32,32,32,32,105,102,32,40,104,97,115,76,101,97,100,83,108,111,116,32,124,124,32,108,101,97,100,32,124,124,32,108,101,97,100,72,116,109,108,41,32,123,92,110,32,32,32,32,32,32,36,108,101,97,100,32,61,32,104,40,112,114,111,112,115,46,108,101,97,100,84,97,103,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,108,101,97,100,39,44,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,104,97,115,76,101,97,100,83,108,111,116,32,63,32,123,125,32,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,108,101,97,100,72,116,109,108,44,32,108,101,97,100,41,92,110,32,32,32,32,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,76,69,65,68,44,32,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,99,104,105,108,100,114,101,110,32,61,32,91,36,104,101,97,100,101,114,44,32,36,108,101,97,100,44,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,93,59,32,47,47,32,73,102,32,102,108,117,105,100,44,32,119,114,97,112,32,99,111,110,116,101,110,116,32,105,110,32,97,32,99,111,110,116,97,105,110,101,114,92,110,92,110,32,32,32,32,105,102,32,40,112,114,111,112,115,46,102,108,117,105,100,41,32,123,92,110,32,32,32,32,32,32,36,99,104,105,108,100,114,101,110,32,61,32,91,104,40,95,108,97,121,111,117,116,95,99,111,110,116,97,105,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,66,67,111,110,116,97,105,110,101,114,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,108,117,105,100,58,32,112,114,111,112,115,46,99,111,110,116,97,105,110,101,114,70,108,117,105,100,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,36,99,104,105,108,100,114,101,110,41,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,106,117,109,98,111,116,114,111,110,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,40,95,99,108,97,115,115,50,32,61,32,123,92,110,32,32,32,32,32,32,32,32,39,106,117,109,98,111,116,114,111,110,45,102,108,117,105,100,39,58,32,112,114,111,112,115,46,102,108,117,105,100,92,110,32,32,32,32,32,32,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,50,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,116,101,120,116,86,97,114,105,97,110,116,41,44,32,116,101,120,116,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,50,44,32,92,34,98,103,45,92,34,46,99,111,110,99,97,116,40,98,103,86,97,114,105,97,110,116,41,44,32,98,103,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,50,44,32,92,34,98,111,114,100,101,114,45,92,34,46,99,111,110,99,97,116,40,98,111,114,100,101,114,86,97,114,105,97,110,116,41,44,32,98,111,114,100,101,114,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,50,44,32,92,34,98,111,114,100,101,114,92,34,44,32,98,111,114,100,101,114,86,97,114,105,97,110,116,41,44,32,95,99,108,97,115,115,50,41,92,110,32,32,32,32,125,41,44,32,36,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,106,117,109,98,111,116,114,111,110,47,106,117,109,98,111,116,114,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,99,111,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,99,111,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,111,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,111,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,110,101,114,97,116,101,80,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,110,101,114,97,116,101,80,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,99,111,110,102,105,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,101,109,111,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,101,109,111,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,101,109,111,105,122,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,65,76,73,71,78,95,83,69,76,70,95,86,65,76,85,69,83,32,61,32,91,39,97,117,116,111,39,44,32,39,115,116,97,114,116,39,44,32,39,101,110,100,39,44,32,39,99,101,110,116,101,114,39,44,32,39,98,97,115,101,108,105,110,101,39,44,32,39,115,116,114,101,116,99,104,39,93,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,67,111,109,112,117,116,101,32,97,32,98,114,101,97,107,112,111,105,110,116,32,99,108,97,115,115,32,110,97,109,101,92,110,92,110,118,97,114,32,99,111,109,112,117,116,101,66,114,101,97,107,112,111,105,110,116,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,66,114,101,97,107,112,111,105,110,116,40,116,121,112,101,44,32,98,114,101,97,107,112,111,105,110,116,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,99,108,97,115,115,78,97,109,101,32,61,32,116,121,112,101,59,92,110,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,118,97,108,117,101,41,32,124,124,32,118,97,108,117,101,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,98,114,101,97,107,112,111,105,110,116,41,32,123,92,110,32,32,32,32,99,108,97,115,115,78,97,109,101,32,43,61,32,92,34,45,92,34,46,99,111,110,99,97,116,40,98,114,101,97,107,112,111,105,110,116,41,59,92,110,32,32,125,32,47,47,32,72,97,110,100,108,105,110,103,32,116,104,101,32,98,111,111,108,101,97,110,32,115,116,121,108,101,32,112,114,111,112,32,119,104,101,110,32,97,99,99,101,112,116,105,110,103,32,96,91,66,111,111,108,101,97,110,44,32,83,116,114,105,110,103,44,32,78,117,109,98,101,114,93,96,92,110,32,32,47,47,32,109,101,97,110,115,32,86,117,101,32,119,105,108,108,32,110,111,116,32,99,111,110,118,101,114,116,32,96,60,98,45,99,111,108,32,115,109,62,60,47,98,45,99,111,108,62,96,32,116,111,32,96,115,109,58,32,116,114,117,101,96,32,102,111,114,32,117,115,92,110,32,32,47,47,32,83,105,110,99,101,32,116,104,101,32,100,101,102,97,117,108,116,32,105,115,32,96,102,97,108,115,101,96,44,32,39,39,32,105,110,100,105,99,97,116,101,115,32,116,104,101,32,112,114,111,112,39,115,32,112,114,101,115,101,110,99,101,92,110,92,110,92,110,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,99,111,108,39,32,38,38,32,40,118,97,108,117,101,32,61,61,61,32,39,39,32,124,124,32,118,97,108,117,101,32,61,61,61,32,116,114,117,101,41,41,32,123,92,110,32,32,32,32,47,47,32,46,99,111,108,45,109,100,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,108,111,119,101,114,67,97,115,101,41,40,99,108,97,115,115,78,97,109,101,41,59,92,110,32,32,125,32,47,47,32,46,111,114,100,101,114,45,109,100,45,54,92,110,92,110,92,110,32,32,99,108,97,115,115,78,97,109,101,32,43,61,32,92,34,45,92,34,46,99,111,110,99,97,116,40,118,97,108,117,101,41,59,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,108,111,119,101,114,67,97,115,101,41,40,99,108,97,115,115,78,97,109,101,41,59,92,110,125,59,32,47,47,32,77,101,109,111,105,122,101,100,32,102,117,110,99,116,105,111,110,32,102,111,114,32,98,101,116,116,101,114,32,112,101,114,102,111,114,109,97,110,99,101,32,111,110,32,103,101,110,101,114,97,116,105,110,103,32,99,108,97,115,115,32,110,97,109,101,115,92,110,92,110,92,110,118,97,114,32,99,111,109,112,117,116,101,66,114,101,97,107,112,111,105,110,116,67,108,97,115,115,32,61,32,40,48,44,95,117,116,105,108,115,95,109,101,109,111,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,101,109,111,105,122,101,41,40,99,111,109,112,117,116,101,66,114,101,97,107,112,111,105,110,116,41,59,32,47,47,32,67,97,99,104,101,100,32,99,111,112,121,32,111,102,32,116,104,101,32,98,114,101,97,107,112,111,105,110,116,32,112,114,111,112,32,110,97,109,101,115,92,110,92,110,118,97,114,32,98,114,101,97,107,112,111,105,110,116,80,114,111,112,77,97,112,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,114,101,97,116,101,41,40,110,117,108,108,41,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,47,47,32,80,114,111,112,32,103,101,110,101,114,97,116,111,114,32,102,111,114,32,108,97,122,121,32,103,101,110,101,114,97,116,105,111,110,32,111,102,32,112,114,111,112,115,92,110,92,110,118,97,114,32,103,101,110,101,114,97,116,101,80,114,111,112,115,32,61,32,102,117,110,99,116,105,111,110,32,103,101,110,101,114,97,116,101,80,114,111,112,115,40,41,32,123,92,110,32,32,47,47,32,71,114,97,98,32,116,104,101,32,98,114,101,97,107,112,111,105,110,116,115,32,102,114,111,109,32,116,104,101,32,99,97,99,104,101,100,32,99,111,110,102,105,103,32,40,101,120,99,108,117,100,101,32,116,104,101,32,39,39,32,40,120,115,41,32,98,114,101,97,107,112,111,105,110,116,41,92,110,32,32,118,97,114,32,98,114,101,97,107,112,111,105,110,116,115,32,61,32,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,103,101,116,66,114,101,97,107,112,111,105,110,116,115,85,112,67,97,99,104,101,100,41,40,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,100,101,110,116,105,116,121,41,59,32,47,47,32,105,46,101,46,32,39,99,111,108,45,115,109,39,44,32,39,99,111,108,45,109,100,45,54,39,44,32,39,99,111,108,45,108,103,45,97,117,116,111,39,44,32,46,46,46,92,110,92,110,32,32,118,97,114,32,98,114,101,97,107,112,111,105,110,116,67,111,108,32,61,32,98,114,101,97,107,112,111,105,110,116,115,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,115,44,32,98,114,101,97,107,112,111,105,110,116,41,32,123,92,110,32,32,32,32,112,114,111,112,115,91,98,114,101,97,107,112,111,105,110,116,93,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,115,59,92,110,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,114,101,97,116,101,41,40,110,117,108,108,41,41,59,32,47,47,32,105,46,101,46,32,39,111,102,102,115,101,116,45,109,100,45,49,39,44,32,39,111,102,102,115,101,116,45,108,103,45,49,50,39,44,32,46,46,46,92,110,92,110,32,32,118,97,114,32,98,114,101,97,107,112,111,105,110,116,79,102,102,115,101,116,32,61,32,98,114,101,97,107,112,111,105,110,116,115,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,115,44,32,98,114,101,97,107,112,111,105,110,116,41,32,123,92,110,32,32,32,32,112,114,111,112,115,91,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,117,102,102,105,120,80,114,111,112,78,97,109,101,41,40,98,114,101,97,107,112,111,105,110,116,44,32,39,111,102,102,115,101,116,39,41,93,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,115,59,92,110,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,114,101,97,116,101,41,40,110,117,108,108,41,41,59,32,47,47,32,105,46,101,46,32,39,111,114,100,101,114,45,109,100,45,49,39,44,32,39,111,114,100,101,114,45,108,103,45,49,50,39,44,32,46,46,46,92,110,92,110,32,32,118,97,114,32,98,114,101,97,107,112,111,105,110,116,79,114,100,101,114,32,61,32,98,114,101,97,107,112,111,105,110,116,115,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,115,44,32,98,114,101,97,107,112,111,105,110,116,41,32,123,92,110,32,32,32,32,112,114,111,112,115,91,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,117,102,102,105,120,80,114,111,112,78,97,109,101,41,40,98,114,101,97,107,112,111,105,110,116,44,32,39,111,114,100,101,114,39,41,93,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,115,59,92,110,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,114,101,97,116,101,41,40,110,117,108,108,41,41,59,32,47,47,32,70,111,114,32,108,111,111,112,32,100,111,101,115,110,39,116,32,110,101,101,100,32,116,111,32,99,104,101,99,107,32,96,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,41,96,92,110,32,32,47,47,32,119,104,101,110,32,117,115,105,110,103,32,97,110,32,111,98,106,101,99,116,32,99,114,101,97,116,101,100,32,102,114,111,109,32,96,110,117,108,108,96,92,110,92,110,32,32,98,114,101,97,107,112,111,105,110,116,80,114,111,112,77,97,112,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,97,115,115,105,103,110,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,114,101,97,116,101,41,40,110,117,108,108,41,44,32,123,92,110,32,32,32,32,99,111,108,58,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,107,101,121,115,41,40,98,114,101,97,107,112,111,105,110,116,67,111,108,41,44,92,110,32,32,32,32,111,102,102,115,101,116,58,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,107,101,121,115,41,40,98,114,101,97,107,112,111,105,110,116,79,102,102,115,101,116,41,44,92,110,32,32,32,32,111,114,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,107,101,121,115,41,40,98,114,101,97,107,112,111,105,110,116,79,114,100,101,114,41,92,110,32,32,125,41,59,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,103,101,110,101,114,97,116,101,100,32,112,114,111,112,115,92,110,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,98,114,101,97,107,112,111,105,110,116,67,111,108,41,44,32,98,114,101,97,107,112,111,105,110,116,79,102,102,115,101,116,41,44,32,98,114,101,97,107,112,111,105,110,116,79,114,100,101,114,41,44,32,123,125,44,32,123,92,110,32,32,32,32,47,47,32,70,108,101,120,32,97,108,105,103,110,109,101,110,116,92,110,32,32,32,32,97,108,105,103,110,83,101,108,102,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,110,117,108,108,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,65,76,73,71,78,95,83,69,76,70,95,86,65,76,85,69,83,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,41,44,92,110,32,32,32,32,47,47,32,71,101,110,101,114,105,99,32,102,108,101,120,98,111,120,32,39,99,111,108,39,32,40,120,115,41,92,110,32,32,32,32,99,111,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,32,32,47,47,32,105,46,101,46,32,39,99,111,108,45,49,39,44,32,39,99,111,108,45,50,39,44,32,39,99,111,108,45,97,117,116,111,39,44,32,46,46,46,92,110,32,32,32,32,99,111,108,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,44,92,110,32,32,32,32,111,102,102,115,101,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,44,92,110,32,32,32,32,111,114,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,44,92,110,32,32,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,92,110,32,32,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,67,79,76,41,59,92,110,125,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,87,101,32,100,111,32,110,111,116,32,117,115,101,32,86,117,101,46,101,120,116,101,110,100,32,104,101,114,101,32,97,115,32,116,104,97,116,32,119,111,117,108,100,32,101,118,97,108,117,97,116,101,32,116,104,101,32,112,114,111,112,115,92,110,47,47,32,105,109,109,101,100,105,97,116,101,108,121,44,32,119,104,105,99,104,32,119,101,32,100,111,32,110,111,116,32,119,97,110,116,32,116,111,32,104,97,112,112,101,110,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,111,108,32,61,32,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,67,79,76,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,92,110,32,32,103,101,116,32,112,114,111,112,115,40,41,32,123,92,110,32,32,32,32,47,47,32,65,108,108,111,119,32,112,114,111,112,115,32,116,111,32,98,101,32,108,97,122,121,32,101,118,97,108,101,100,32,111,110,32,102,105,114,115,116,32,97,99,99,101,115,115,32,97,110,100,92,110,32,32,32,32,47,47,32,116,104,101,110,32,116,104,101,121,32,98,101,99,111,109,101,32,97,32,110,111,110,45,103,101,116,116,101,114,32,97,102,116,101,114,119,97,114,100,115,46,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,100,101,118,101,108,111,112,101,114,46,109,111,122,105,108,108,97,46,111,114,103,47,101,110,45,85,83,47,100,111,99,115,47,87,101,98,47,74,97,118,97,83,99,114,105,112,116,47,82,101,102,101,114,101,110,99,101,47,70,117,110,99,116,105,111,110,115,47,103,101,116,35,83,109,97,114,116,95,115,101,108,102,45,111,118,101,114,119,114,105,116,105,110,103,95,108,97,122,121,95,103,101,116,116,101,114,115,92,110,32,32,32,32,100,101,108,101,116,101,32,116,104,105,115,46,112,114,111,112,115,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,114,101,116,117,114,110,45,97,115,115,105,103,110,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,32,61,32,103,101,110,101,114,97,116,101,80,114,111,112,115,40,41,59,92,110,32,32,125,44,92,110,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,95,99,108,97,115,115,76,105,115,116,36,112,117,115,104,59,92,110,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,99,111,108,115,32,61,32,112,114,111,112,115,46,99,111,108,115,44,92,110,32,32,32,32,32,32,32,32,111,102,102,115,101,116,32,61,32,112,114,111,112,115,46,111,102,102,115,101,116,44,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,32,61,32,112,114,111,112,115,46,111,114,100,101,114,44,92,110,32,32,32,32,32,32,32,32,97,108,105,103,110,83,101,108,102,32,61,32,112,114,111,112,115,46,97,108,105,103,110,83,101,108,102,59,92,110,32,32,32,32,118,97,114,32,99,108,97,115,115,76,105,115,116,32,61,32,91,93,59,32,47,47,32,76,111,111,112,32,116,104,114,111,117,103,104,32,96,99,111,108,96,44,32,96,111,102,102,115,101,116,96,44,32,96,111,114,100,101,114,96,32,98,114,101,97,107,112,111,105,110,116,32,112,114,111,112,115,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,116,121,112,101,32,105,110,32,98,114,101,97,107,112,111,105,110,116,80,114,111,112,77,97,112,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,99,111,108,83,109,44,32,111,102,102,115,101,116,44,32,111,102,102,115,101,116,83,109,44,32,111,114,100,101,114,77,100,44,32,101,116,99,46,92,110,32,32,32,32,32,32,118,97,114,32,95,107,101,121,115,32,61,32,98,114,101,97,107,112,111,105,110,116,80,114,111,112,77,97,112,91,116,121,112,101,93,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,95,107,101,121,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,99,111,109,112,117,116,101,66,114,101,97,107,112,111,105,110,116,40,99,111,108,44,32,99,111,108,83,109,32,61,62,32,83,109,44,32,118,97,108,117,101,61,91,83,116,114,105,110,103,44,32,78,117,109,98,101,114,44,32,66,111,111,108,101,97,110,93,41,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,32,61,32,99,111,109,112,117,116,101,66,114,101,97,107,112,111,105,110,116,67,108,97,115,115,40,116,121,112,101,44,32,95,107,101,121,115,91,105,93,46,114,101,112,108,97,99,101,40,116,121,112,101,44,32,39,39,41,44,32,112,114,111,112,115,91,95,107,101,121,115,91,105,93,93,41,59,32,47,47,32,73,102,32,97,32,99,108,97,115,115,32,105,115,32,114,101,116,117,114,110,101,100,44,32,112,117,115,104,32,105,116,32,111,110,116,111,32,116,104,101,32,97,114,114,97,121,46,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,76,105,115,116,46,112,117,115,104,40,99,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,104,97,115,67,111,108,67,108,97,115,115,101,115,32,61,32,99,108,97,115,115,76,105,115,116,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,99,108,97,115,115,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,82,88,95,67,79,76,95,67,76,65,83,83,46,116,101,115,116,40,99,108,97,115,115,78,97,109,101,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,99,108,97,115,115,76,105,115,116,46,112,117,115,104,40,40,95,99,108,97,115,115,76,105,115,116,36,112,117,115,104,32,61,32,123,92,110,32,32,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,116,111,32,46,99,111,108,32,105,102,32,110,111,32,111,116,104,101,114,32,99,111,108,45,123,98,112,125,45,42,32,99,108,97,115,115,101,115,32,103,101,110,101,114,97,116,101,100,32,110,111,114,32,96,99,111,108,115,96,32,115,112,101,99,105,102,105,101,100,46,92,110,32,32,32,32,32,32,99,111,108,58,32,112,114,111,112,115,46,99,111,108,32,124,124,32,33,104,97,115,67,111,108,67,108,97,115,115,101,115,32,38,38,32,33,99,111,108,115,92,110,32,32,32,32,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,76,105,115,116,36,112,117,115,104,44,32,92,34,99,111,108,45,92,34,46,99,111,110,99,97,116,40,99,111,108,115,41,44,32,99,111,108,115,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,76,105,115,116,36,112,117,115,104,44,32,92,34,111,102,102,115,101,116,45,92,34,46,99,111,110,99,97,116,40,111,102,102,115,101,116,41,44,32,111,102,102,115,101,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,76,105,115,116,36,112,117,115,104,44,32,92,34,111,114,100,101,114,45,92,34,46,99,111,110,99,97,116,40,111,114,100,101,114,41,44,32,111,114,100,101,114,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,76,105,115,116,36,112,117,115,104,44,32,92,34,97,108,105,103,110,45,115,101,108,102,45,92,34,46,99,111,110,99,97,116,40,97,108,105,103,110,83,101,108,102,41,44,32,97,108,105,103,110,83,101,108,102,41,44,32,95,99,108,97,115,115,76,105,115,116,36,112,117,115,104,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,99,108,97,115,115,76,105,115,116,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,99,111,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,99,111,110,116,97,105,110,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,99,111,110,116,97,105,110,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,111,110,116,97,105,110,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,67,111,110,116,97,105,110,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,47,47,32,83,116,114,105,110,103,32,98,114,101,97,107,112,111,105,110,116,32,110,97,109,101,32,110,101,119,32,105,110,32,66,111,111,116,115,116,114,97,112,32,118,52,46,52,46,120,92,110,32,32,102,108,117,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,67,79,78,84,65,73,78,69,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,67,111,110,116,97,105,110,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,67,79,78,84,65,73,78,69,82,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,102,108,117,105,100,32,61,32,112,114,111,112,115,46,102,108,117,105,100,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,58,32,33,40,102,108,117,105,100,32,124,124,32,102,108,117,105,100,32,61,61,61,32,39,39,41,44,92,110,32,32,32,32,32,32,32,32,39,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,39,58,32,102,108,117,105,100,32,61,61,61,32,116,114,117,101,32,124,124,32,102,108,117,105,100,32,61,61,61,32,39,39,92,110,32,32,32,32,32,32,125,44,32,92,34,99,111,110,116,97,105,110,101,114,45,92,34,46,99,111,110,99,97,116,40,102,108,117,105,100,41,44,32,102,108,117,105,100,32,38,38,32,102,108,117,105,100,32,33,61,61,32,116,114,117,101,41,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,99,111,110,116,97,105,110,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,102,111,114,109,45,114,111,119,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,102,111,114,109,45,114,111,119,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,82,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,70,111,114,109,82,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,70,79,82,77,95,82,79,87,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,70,111,114,109,82,111,119,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,70,79,82,77,95,82,79,87,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,102,111,114,109,45,114,111,119,39,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,102,111,114,109,45,114,111,119,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,111,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,67,111,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,111,110,116,97,105,110,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,110,116,97,105,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,67,111,110,116,97,105,110,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,82,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,70,111,114,109,82,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,82,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,82,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,76,97,121,111,117,116,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,76,97,121,111,117,116,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,116,97,105,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,116,97,105,110,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,99,111,110,116,97,105,110,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,114,111,119,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,99,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,114,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,102,111,114,109,45,114,111,119,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,76,97,121,111,117,116,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,67,111,110,116,97,105,110,101,114,58,32,95,99,111,110,116,97,105,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,67,111,110,116,97,105,110,101,114,44,92,110,32,32,32,32,66,82,111,119,58,32,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,82,111,119,44,92,110,32,32,32,32,66,67,111,108,58,32,95,99,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,67,111,108,44,92,110,32,32,32,32,66,70,111,114,109,82,111,119,58,32,95,102,111,114,109,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,70,111,114,109,82,111,119,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,114,111,119,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,114,111,119,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,82,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,82,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,110,101,114,97,116,101,80,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,110,101,114,97,116,101,80,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,99,111,110,102,105,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,101,109,111,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,101,109,111,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,101,109,111,105,122,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,67,79,77,77,79,78,95,65,76,73,71,78,77,69,78,84,32,61,32,91,39,115,116,97,114,116,39,44,32,39,101,110,100,39,44,32,39,99,101,110,116,101,114,39,93,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,67,111,109,112,117,116,101,32,97,32,96,114,111,119,45,99,111,108,115,45,123,98,114,101,97,107,112,111,105,110,116,125,45,123,99,111,108,115,125,96,32,99,108,97,115,115,32,110,97,109,101,92,110,47,47,32,77,101,109,111,105,122,101,100,32,102,117,110,99,116,105,111,110,32,102,111,114,32,98,101,116,116,101,114,32,112,101,114,102,111,114,109,97,110,99,101,32,111,110,32,103,101,110,101,114,97,116,105,110,103,32,99,108,97,115,115,32,110,97,109,101,115,92,110,92,110,118,97,114,32,99,111,109,112,117,116,101,82,111,119,67,111,108,115,67,108,97,115,115,32,61,32,40,48,44,95,117,116,105,108,115,95,109,101,109,111,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,101,109,111,105,122,101,41,40,102,117,110,99,116,105,111,110,32,40,98,114,101,97,107,112,111,105,110,116,44,32,99,111,108,115,41,32,123,92,110,32,32,99,111,108,115,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,114,105,109,41,40,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,111,83,116,114,105,110,103,41,40,99,111,108,115,41,41,59,92,110,32,32,114,101,116,117,114,110,32,99,111,108,115,32,63,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,108,111,119,101,114,67,97,115,101,41,40,91,39,114,111,119,45,99,111,108,115,39,44,32,98,114,101,97,107,112,111,105,110,116,44,32,99,111,108,115,93,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,45,39,41,41,32,58,32,110,117,108,108,59,92,110,125,41,59,32,47,47,32,71,101,116,32,116,104,101,32,98,114,101,97,107,112,111,105,110,116,32,110,97,109,101,32,102,114,111,109,32,116,104,101,32,96,114,111,119,67,111,108,115,96,32,112,114,111,112,32,110,97,109,101,92,110,47,47,32,77,101,109,111,105,122,101,100,32,102,117,110,99,116,105,111,110,32,102,111,114,32,98,101,116,116,101,114,32,112,101,114,102,111,114,109,97,110,99,101,32,111,110,32,101,120,116,114,97,99,116,105,110,103,32,98,114,101,97,107,112,111,105,110,116,32,110,97,109,101,115,92,110,92,110,118,97,114,32,99,111,109,112,117,116,101,82,111,119,67,111,108,115,66,114,101,97,107,112,111,105,110,116,32,61,32,40,48,44,95,117,116,105,108,115,95,109,101,109,111,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,101,109,111,105,122,101,41,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,108,111,119,101,114,67,97,115,101,41,40,112,114,111,112,46,114,101,112,108,97,99,101,40,39,99,111,108,115,39,44,32,39,39,41,41,59,92,110,125,41,59,32,47,47,32,67,97,99,104,101,100,32,99,111,112,121,32,111,102,32,116,104,101,32,96,114,111,119,45,99,111,108,115,96,32,98,114,101,97,107,112,111,105,110,116,32,112,114,111,112,32,110,97,109,101,115,92,110,47,47,32,87,105,108,108,32,98,101,32,112,111,112,117,108,97,116,101,100,32,119,104,101,110,32,116,104,101,32,112,114,111,112,115,32,97,114,101,32,103,101,110,101,114,97,116,101,100,92,110,92,110,118,97,114,32,114,111,119,67,111,108,115,80,114,111,112,76,105,115,116,32,61,32,91,93,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,47,47,32,80,114,111,112,32,103,101,110,101,114,97,116,111,114,32,102,111,114,32,108,97,122,121,32,103,101,110,101,114,97,116,105,111,110,32,111,102,32,112,114,111,112,115,92,110,92,110,118,97,114,32,103,101,110,101,114,97,116,101,80,114,111,112,115,32,61,32,102,117,110,99,116,105,111,110,32,103,101,110,101,114,97,116,101,80,114,111,112,115,40,41,32,123,92,110,32,32,47,47,32,105,46,101,46,32,39,114,111,119,45,99,111,108,115,45,50,39,44,32,39,114,111,119,45,99,111,108,115,45,109,100,45,52,39,44,32,39,114,111,119,45,99,111,108,115,45,120,108,45,54,39,44,32,46,46,46,92,110,32,32,118,97,114,32,114,111,119,67,111,108,115,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,103,101,116,66,114,101,97,107,112,111,105,110,116,115,85,112,67,97,99,104,101,100,41,40,41,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,115,44,32,98,114,101,97,107,112,111,105,110,116,41,32,123,92,110,32,32,32,32,112,114,111,112,115,91,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,115,117,102,102,105,120,80,114,111,112,78,97,109,101,41,40,98,114,101,97,107,112,111,105,110,116,44,32,39,99,111,108,115,39,41,93,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,115,59,92,110,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,99,114,101,97,116,101,41,40,110,117,108,108,41,41,59,32,47,47,32,67,97,99,104,101,32,116,104,101,32,114,111,119,45,99,111,108,115,32,112,114,111,112,32,110,97,109,101,115,92,110,92,110,32,32,114,111,119,67,111,108,115,80,114,111,112,76,105,115,116,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,107,101,121,115,41,40,114,111,119,67,111,108,115,80,114,111,112,115,41,59,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,103,101,110,101,114,97,116,101,100,32,112,114,111,112,115,92,110,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,114,111,119,67,111,108,115,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,97,108,105,103,110,67,111,110,116,101,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,110,117,108,108,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,99,111,110,99,97,116,41,40,67,79,77,77,79,78,95,65,76,73,71,78,77,69,78,84,44,32,39,98,101,116,119,101,101,110,39,44,32,39,97,114,111,117,110,100,39,44,32,39,115,116,114,101,116,99,104,39,41,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,41,44,92,110,32,32,32,32,97,108,105,103,110,72,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,110,117,108,108,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,99,111,110,99,97,116,41,40,67,79,77,77,79,78,95,65,76,73,71,78,77,69,78,84,44,32,39,98,101,116,119,101,101,110,39,44,32,39,97,114,111,117,110,100,39,41,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,41,44,92,110,32,32,32,32,97,108,105,103,110,86,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,110,117,108,108,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,99,111,110,99,97,116,41,40,67,79,77,77,79,78,95,65,76,73,71,78,77,69,78,84,44,32,39,98,97,115,101,108,105,110,101,39,44,32,39,115,116,114,101,116,99,104,39,41,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,41,44,92,110,32,32,32,32,110,111,71,117,116,116,101,114,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,92,110,32,32,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,82,79,87,41,59,92,110,125,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,87,101,32,100,111,32,110,111,116,32,117,115,101,32,96,86,117,101,46,101,120,116,101,110,100,40,41,96,32,104,101,114,101,32,97,115,32,116,104,97,116,32,119,111,117,108,100,32,101,118,97,108,117,97,116,101,32,116,104,101,32,112,114,111,112,115,92,110,47,47,32,105,109,109,101,100,105,97,116,101,108,121,44,32,119,104,105,99,104,32,119,101,32,100,111,32,110,111,116,32,119,97,110,116,32,116,111,32,104,97,112,112,101,110,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,82,111,119,32,61,32,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,82,79,87,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,92,110,32,32,103,101,116,32,112,114,111,112,115,40,41,32,123,92,110,32,32,32,32,47,47,32,65,108,108,111,119,32,112,114,111,112,115,32,116,111,32,98,101,32,108,97,122,121,32,101,118,97,108,101,100,32,111,110,32,102,105,114,115,116,32,97,99,99,101,115,115,32,97,110,100,92,110,32,32,32,32,47,47,32,116,104,101,110,32,116,104,101,121,32,98,101,99,111,109,101,32,97,32,110,111,110,45,103,101,116,116,101,114,32,97,102,116,101,114,119,97,114,100,115,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,100,101,118,101,108,111,112,101,114,46,109,111,122,105,108,108,97,46,111,114,103,47,101,110,45,85,83,47,100,111,99,115,47,87,101,98,47,74,97,118,97,83,99,114,105,112,116,47,82,101,102,101,114,101,110,99,101,47,70,117,110,99,116,105,111,110,115,47,103,101,116,35,83,109,97,114,116,95,115,101,108,102,45,111,118,101,114,119,114,105,116,105,110,103,95,108,97,122,121,95,103,101,116,116,101,114,115,92,110,32,32,32,32,100,101,108,101,116,101,32,116,104,105,115,46,112,114,111,112,115,59,92,110,32,32,32,32,116,104,105,115,46,112,114,111,112,115,32,61,32,103,101,110,101,114,97,116,101,80,114,111,112,115,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,59,92,110,32,32,125,44,92,110,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,95,99,108,97,115,115,76,105,115,116,36,112,117,115,104,59,92,110,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,97,108,105,103,110,86,32,61,32,112,114,111,112,115,46,97,108,105,103,110,86,44,92,110,32,32,32,32,32,32,32,32,97,108,105,103,110,72,32,61,32,112,114,111,112,115,46,97,108,105,103,110,72,44,92,110,32,32,32,32,32,32,32,32,97,108,105,103,110,67,111,110,116,101,110,116,32,61,32,112,114,111,112,115,46,97,108,105,103,110,67,111,110,116,101,110,116,59,32,47,47,32,76,111,111,112,32,116,104,114,111,117,103,104,32,114,111,119,45,99,111,108,115,32,98,114,101,97,107,112,111,105,110,116,32,112,114,111,112,115,32,97,110,100,32,103,101,110,101,114,97,116,101,32,116,104,101,32,99,108,97,115,115,101,115,92,110,92,110,32,32,32,32,118,97,114,32,99,108,97,115,115,76,105,115,116,32,61,32,91,93,59,92,110,32,32,32,32,114,111,119,67,111,108,115,80,114,111,112,76,105,115,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,32,61,32,99,111,109,112,117,116,101,82,111,119,67,111,108,115,67,108,97,115,115,40,99,111,109,112,117,116,101,82,111,119,67,111,108,115,66,114,101,97,107,112,111,105,110,116,40,112,114,111,112,41,44,32,112,114,111,112,115,91,112,114,111,112,93,41,59,32,47,47,32,73,102,32,97,32,99,108,97,115,115,32,105,115,32,114,101,116,117,114,110,101,100,44,32,112,117,115,104,32,105,116,32,111,110,116,111,32,116,104,101,32,97,114,114,97,121,92,110,92,110,32,32,32,32,32,32,105,102,32,40,99,41,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,76,105,115,116,46,112,117,115,104,40,99,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,99,108,97,115,115,76,105,115,116,46,112,117,115,104,40,40,95,99,108,97,115,115,76,105,115,116,36,112,117,115,104,32,61,32,123,92,110,32,32,32,32,32,32,39,110,111,45,103,117,116,116,101,114,115,39,58,32,112,114,111,112,115,46,110,111,71,117,116,116,101,114,115,92,110,32,32,32,32,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,76,105,115,116,36,112,117,115,104,44,32,92,34,97,108,105,103,110,45,105,116,101,109,115,45,92,34,46,99,111,110,99,97,116,40,97,108,105,103,110,86,41,44,32,97,108,105,103,110,86,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,76,105,115,116,36,112,117,115,104,44,32,92,34,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,92,34,46,99,111,110,99,97,116,40,97,108,105,103,110,72,41,44,32,97,108,105,103,110,72,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,76,105,115,116,36,112,117,115,104,44,32,92,34,97,108,105,103,110,45,99,111,110,116,101,110,116,45,92,34,46,99,111,110,99,97,116,40,97,108,105,103,110,67,111,110,116,101,110,116,41,44,32,97,108,105,103,110,67,111,110,116,101,110,116,41,44,32,95,99,108,97,115,115,76,105,115,116,36,112,117,115,104,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,114,111,119,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,99,108,97,115,115,76,105,115,116,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,114,111,119,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,76,105,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,76,105,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,76,105,110,107,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,76,105,110,107,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,76,105,110,107,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,76,105,110,107,58,32,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,76,105,110,107,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,76,105,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,76,105,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,117,120,116,76,105,110,107,80,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,117,120,116,76,105,110,107,80,114,111,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,111,117,116,101,114,76,105,110,107,80,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,111,117,116,101,114,76,105,110,107,80,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,114,111,117,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,114,111,117,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,97,114,114,41,32,123,32,114,101,116,117,114,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,124,124,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,92,34,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,32,123,32,105,102,32,40,33,111,41,32,114,101,116,117,114,110,59,32,105,102,32,40,116,121,112,101,111,102,32,111,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,118,97,114,32,110,32,61,32,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,111,41,46,115,108,105,99,101,40,56,44,32,45,49,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,79,98,106,101,99,116,92,34,32,38,38,32,111,46,99,111,110,115,116,114,117,99,116,111,114,41,32,110,32,61,32,111,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,59,32,105,102,32,40,110,32,61,61,61,32,92,34,77,97,112,92,34,32,124,124,32,110,32,61,61,61,32,92,34,83,101,116,92,34,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,111,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,65,114,103,117,109,101,110,116,115,92,34,32,124,124,32,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,105,116,101,114,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,38,38,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,105,116,101,114,41,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,105,116,101,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,123,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,44,32,108,101,110,41,32,123,32,105,102,32,40,108,101,110,32,61,61,32,110,117,108,108,32,124,124,32,108,101,110,32,62,32,97,114,114,46,108,101,110,103,116,104,41,32,108,101,110,32,61,32,97,114,114,46,108,101,110,103,116,104,59,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,97,114,114,50,32,61,32,110,101,119,32,65,114,114,97,121,40,108,101,110,41,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,32,97,114,114,50,91,105,93,32,61,32,97,114,114,91,105,93,59,32,125,32,114,101,116,117,114,110,32,97,114,114,50,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,69,68,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,76,73,78,75,44,32,39,99,108,105,99,107,101,100,39,41,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,47,47,32,96,60,114,111,117,116,101,114,45,108,105,110,107,62,96,32,115,112,101,99,105,102,105,99,32,112,114,111,112,115,92,110,92,110,118,97,114,32,114,111,117,116,101,114,76,105,110,107,80,114,111,112,115,32,61,32,123,92,110,32,32,97,99,116,105,118,101,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,97,112,112,101,110,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,101,118,101,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,41,44,92,110,32,32,101,120,97,99,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,101,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,114,101,112,108,97,99,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,111,117,116,101,114,84,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,97,39,41,44,92,110,32,32,116,111,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,92,110,125,59,32,47,47,32,96,60,110,117,120,116,45,108,105,110,107,62,96,32,115,112,101,99,105,102,105,99,32,112,114,111,112,115,92,110,92,110,118,97,114,32,110,117,120,116,76,105,110,107,80,114,111,112,115,32,61,32,123,92,110,32,32,110,111,80,114,101,102,101,116,99,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,77,117,115,116,32,98,101,32,96,110,117,108,108,96,32,116,111,32,102,97,108,108,32,98,97,99,107,32,116,111,32,116,104,101,32,118,97,108,117,101,32,100,101,102,105,110,101,100,32,105,110,32,116,104,101,92,110,32,32,47,47,32,96,110,117,120,116,46,99,111,110,102,105,103,46,106,115,96,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,102,105,108,101,32,102,111,114,32,96,114,111,117,116,101,114,46,112,114,101,102,101,116,99,104,76,105,110,107,115,96,92,110,32,32,47,47,32,87,101,32,99,111,110,118,101,114,116,32,96,110,117,108,108,96,32,116,111,32,96,117,110,100,101,102,105,110,101,100,96,44,32,115,111,32,116,104,97,116,32,78,117,120,116,46,106,115,32,119,105,108,108,32,117,115,101,32,116,104,101,92,110,32,32,47,47,32,99,111,109,112,105,108,101,100,32,100,101,102,97,117,108,116,92,110,32,32,47,47,32,86,117,101,32,116,114,101,97,116,115,32,96,117,110,100,101,102,105,110,101,100,96,32,97,115,32,100,101,102,97,117,108,116,32,111,102,32,96,102,97,108,115,101,96,32,102,111,114,32,66,111,111,108,101,97,110,32,112,114,111,112,115,44,92,110,32,32,47,47,32,115,111,32,119,101,32,109,117,115,116,32,115,101,116,32,105,116,32,97,115,32,96,110,117,108,108,96,32,104,101,114,101,32,116,111,32,98,101,32,97,32,116,114,117,101,32,116,114,105,45,115,116,97,116,101,32,112,114,111,112,92,110,32,32,112,114,101,102,101,116,99,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,110,117,108,108,41,92,110,125,59,32,47,47,32,65,108,108,32,96,60,98,45,108,105,110,107,62,96,32,112,114,111,112,115,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,110,117,120,116,76,105,110,107,80,114,111,112,115,41,44,32,114,111,117,116,101,114,76,105,110,107,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,99,116,105,118,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,104,114,101,102,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,77,117,115,116,32,98,101,32,96,110,117,108,108,96,32,105,102,32,110,111,32,118,97,108,117,101,32,112,114,111,118,105,100,101,100,92,110,32,32,114,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,110,117,108,108,41,44,92,110,32,32,47,47,32,84,111,32,115,117,112,112,111,114,116,32,51,114,100,32,112,97,114,116,121,32,114,111,117,116,101,114,32,108,105,110,107,115,32,98,97,115,101,100,32,111,110,32,96,60,114,111,117,116,101,114,45,108,105,110,107,62,96,32,40,105,46,101,46,32,96,103,45,108,105,110,107,96,32,102,111,114,32,71,114,105,100,115,111,109,101,41,92,110,32,32,47,47,32,68,101,102,97,117,108,116,32,105,115,32,116,111,32,97,117,116,111,32,99,104,111,111,115,101,32,98,101,116,119,101,101,110,32,96,60,114,111,117,116,101,114,45,108,105,110,107,62,96,32,97,110,100,32,96,60,110,117,120,116,45,108,105,110,107,62,96,92,110,32,32,47,47,32,71,114,105,100,115,111,109,101,32,100,111,101,115,110,39,116,32,112,114,111,118,105,100,101,32,97,32,109,101,99,104,97,110,105,115,109,32,116,111,32,97,117,116,111,32,100,101,116,101,99,116,32,97,110,100,32,104,97,115,32,99,97,118,101,97,116,115,92,110,32,32,47,47,32,115,117,99,104,32,97,115,32,110,111,116,32,115,117,112,112,111,114,116,105,110,103,32,70,81,68,78,32,85,82,76,115,32,111,114,32,104,97,115,104,32,111,110,108,121,32,85,82,76,115,92,110,32,32,114,111,117,116,101,114,67,111,109,112,111,110,101,110,116,78,97,109,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,97,114,103,101,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,95,115,101,108,102,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,76,73,78,75,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,76,105,110,107,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,76,73,78,75,44,92,110,32,32,47,47,32,77,105,120,105,110,32,111,114,100,101,114,32,105,115,32,105,109,112,111,114,116,97,110,116,33,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,108,105,115,116,101,110,101,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,108,105,115,116,101,110,79,110,82,111,111,116,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,84,97,103,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,84,97,103,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,111,110,39,116,32,112,97,115,115,32,96,116,104,105,115,96,32,97,115,32,116,104,101,32,102,105,114,115,116,32,97,114,103,32,97,115,32,119,101,32,110,101,101,100,32,114,101,97,99,116,105,118,105,116,121,32,111,102,32,116,104,101,32,112,114,111,112,115,92,110,32,32,32,32,32,32,118,97,114,32,116,111,32,61,32,116,104,105,115,46,116,111,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,114,111,117,116,101,114,67,111,109,112,111,110,101,110,116,78,97,109,101,32,61,32,116,104,105,115,46,114,111,117,116,101,114,67,111,109,112,111,110,101,110,116,78,97,109,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,111,109,112,117,116,101,84,97,103,41,40,123,92,110,32,32,32,32,32,32,32,32,116,111,58,32,116,111,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,111,117,116,101,114,67,111,109,112,111,110,101,110,116,78,97,109,101,58,32,114,111,117,116,101,114,67,111,109,112,111,110,101,110,116,78,97,109,101,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,82,111,117,116,101,114,76,105,110,107,58,32,102,117,110,99,116,105,111,110,32,105,115,82,111,117,116,101,114,76,105,110,107,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,115,82,111,117,116,101,114,76,105,110,107,41,40,116,104,105,115,46,99,111,109,112,117,116,101,100,84,97,103,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,82,101,108,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,82,101,108,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,111,110,39,116,32,112,97,115,115,32,96,116,104,105,115,96,32,97,115,32,116,104,101,32,102,105,114,115,116,32,97,114,103,32,97,115,32,119,101,32,110,101,101,100,32,114,101,97,99,116,105,118,105,116,121,32,111,102,32,116,104,101,32,112,114,111,112,115,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,116,97,114,103,101,116,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,108,32,61,32,116,104,105,115,46,114,101,108,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,111,109,112,117,116,101,82,101,108,41,40,123,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,97,114,103,101,116,44,92,110,32,32,32,32,32,32,32,32,114,101,108,58,32,114,101,108,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,72,114,101,102,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,72,114,101,102,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,111,110,39,116,32,112,97,115,115,32,96,116,104,105,115,96,32,97,115,32,116,104,101,32,102,105,114,115,116,32,97,114,103,32,97,115,32,119,101,32,110,101,101,100,32,114,101,97,99,116,105,118,105,116,121,32,111,102,32,116,104,101,32,112,114,111,112,115,92,110,32,32,32,32,32,32,118,97,114,32,116,111,32,61,32,116,104,105,115,46,116,111,44,92,110,32,32,32,32,32,32,32,32,32,32,104,114,101,102,32,61,32,116,104,105,115,46,104,114,101,102,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,111,109,112,117,116,101,72,114,101,102,41,40,123,92,110,32,32,32,32,32,32,32,32,116,111,58,32,116,111,44,92,110,32,32,32,32,32,32,32,32,104,114,101,102,58,32,104,114,101,102,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,84,97,103,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,80,114,111,112,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,80,114,111,112,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,114,101,102,101,116,99,104,32,61,32,116,104,105,115,46,112,114,101,102,101,116,99,104,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,82,111,117,116,101,114,76,105,110,107,32,63,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,114,111,117,116,101,114,76,105,110,107,80,114,111,112,115,41,44,32,110,117,120,116,76,105,110,107,80,114,111,112,115,41,44,32,116,104,105,115,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,111,101,114,99,101,32,96,112,114,101,102,101,116,99,104,96,32,118,97,108,117,101,32,96,110,117,108,108,96,32,116,111,32,98,101,32,96,117,110,100,101,102,105,110,101,100,96,92,110,32,32,32,32,32,32,32,32,112,114,101,102,101,116,99,104,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,105,115,66,111,111,108,101,97,110,41,40,112,114,101,102,101,116,99,104,41,32,63,32,112,114,101,102,101,116,99,104,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,47,47,32,80,97,115,115,32,96,114,111,117,116,101,114,45,116,97,103,96,32,97,115,32,96,116,97,103,96,32,112,114,111,112,92,110,32,32,32,32,32,32,32,32,116,97,103,58,32,116,104,105,115,46,114,111,117,116,101,114,84,97,103,92,110,32,32,32,32,32,32,125,41,32,58,32,123,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,118,65,116,116,114,115,32,61,32,116,104,105,115,46,98,118,65,116,116,114,115,44,92,110,32,32,32,32,32,32,32,32,32,32,104,114,101,102,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,72,114,101,102,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,108,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,82,101,108,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,116,97,114,103,101,116,44,92,110,32,32,32,32,32,32,32,32,32,32,114,111,117,116,101,114,84,97,103,32,61,32,116,104,105,115,46,114,111,117,116,101,114,84,97,103,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,82,111,117,116,101,114,76,105,110,107,32,61,32,116,104,105,115,46,105,115,82,111,117,116,101,114,76,105,110,107,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,98,118,65,116,116,114,115,41,44,32,104,114,101,102,32,63,32,123,92,110,32,32,32,32,32,32,32,32,104,114,101,102,58,32,104,114,101,102,92,110,32,32,32,32,32,32,125,32,58,32,123,125,41,44,32,105,115,82,111,117,116,101,114,76,105,110,107,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,105,115,84,97,103,41,40,114,111,117,116,101,114,84,97,103,44,32,39,97,39,41,32,63,32,123,125,32,58,32,123,92,110,32,32,32,32,32,32,32,32,114,101,108,58,32,114,101,108,44,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,125,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,100,105,115,97,98,108,101,100,32,63,32,39,45,49,39,32,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,98,118,65,116,116,114,115,46,116,97,98,105,110,100,101,120,41,32,63,32,110,117,108,108,32,58,32,98,118,65,116,116,114,115,46,116,97,98,105,110,100,101,120,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,105,115,97,98,108,101,100,39,58,32,100,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,76,105,115,116,101,110,101,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,76,105,115,116,101,110,101,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,119,97,110,116,32,116,111,32,111,118,101,114,119,114,105,116,101,32,97,110,121,32,99,108,105,99,107,32,104,97,110,100,108,101,114,32,115,105,110,99,101,32,111,117,114,32,99,97,108,108,98,97,99,107,92,110,32,32,32,32,32,32,32,32,47,47,32,119,105,108,108,32,105,110,118,111,107,101,32,116,104,101,32,117,115,101,114,32,115,117,112,112,108,105,101,100,32,104,97,110,100,108,101,114,40,115,41,32,105,102,32,96,33,116,104,105,115,46,100,105,115,97,98,108,101,100,96,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,67,108,105,99,107,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,111,110,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,111,110,67,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,97,114,103,117,109,101,110,116,115,32,61,32,97,114,103,117,109,101,110,116,115,59,92,110,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,73,115,69,118,101,110,116,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,105,115,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,115,82,111,117,116,101,114,76,105,110,107,32,61,32,116,104,105,115,46,105,115,82,111,117,116,101,114,76,105,110,107,59,92,110,32,32,32,32,32,32,118,97,114,32,115,117,112,112,108,105,101,100,72,97,110,100,108,101,114,32,61,32,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,46,99,108,105,99,107,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,73,115,69,118,101,110,116,32,38,38,32,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,116,111,112,32,101,118,101,110,116,32,102,114,111,109,32,98,117,98,98,108,105,110,103,32,117,112,92,110,32,32,32,32,32,32,32,32,47,47,32,75,105,108,108,32,116,104,101,32,101,118,101,110,116,32,108,111,111,112,32,97,116,116,97,99,104,101,100,32,116,111,32,116,104,105,115,32,115,112,101,99,105,102,105,99,32,96,69,118,101,110,116,84,97,114,103,101,116,96,92,110,32,32,32,32,32,32,32,32,47,47,32,78,101,101,100,101,100,32,116,111,32,112,114,101,118,101,110,116,32,96,118,117,101,45,114,111,117,116,101,114,96,32,102,111,114,32,100,111,105,110,103,32,105,116,115,32,116,104,105,110,103,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,100,105,102,102,105,99,117,108,116,32,116,111,32,116,101,115,116,44,32,98,117,116,32,119,101,32,107,110,111,119,32,105,116,32,119,111,114,107,115,32,42,47,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,82,111,117,116,101,114,76,105,110,107,32,38,38,32,101,118,101,110,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,46,95,95,118,117,101,95,95,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,82,111,117,116,101,114,32,108,105,110,107,115,32,100,111,32,110,111,116,32,101,109,105,116,32,105,110,115,116,97,110,99,101,32,96,99,108,105,99,107,96,32,101,118,101,110,116,115,44,32,115,111,32,119,101,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,97,100,100,32,105,110,32,97,110,32,96,36,101,109,105,116,40,39,99,108,105,99,107,39,44,32,101,118,101,110,116,41,96,32,111,110,32,105,116,115,32,86,117,101,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,46,95,95,118,117,101,95,95,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,67,97,108,108,32,116,104,101,32,115,117,112,112,108,105,101,100,72,97,110,100,108,101,114,40,115,41,44,32,105,102,32,97,110,121,32,112,114,111,118,105,100,101,100,92,110,92,110,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,99,111,110,99,97,116,41,40,115,117,112,112,108,105,101,100,72,97,110,100,108,101,114,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,104,41,59,92,110,32,32,32,32,32,32,32,32,125,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,46,97,112,112,108,121,40,118,111,105,100,32,48,44,32,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,95,97,114,103,117,109,101,110,116,115,41,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,32,47,47,32,69,109,105,116,32,116,104,101,32,103,108,111,98,97,108,32,96,36,114,111,111,116,96,32,99,108,105,99,107,32,101,118,101,110,116,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,69,68,44,32,101,118,101,110,116,41,59,32,47,47,32,84,79,68,79,58,32,82,101,109,111,118,101,32,100,101,112,114,101,99,97,116,101,100,32,39,99,108,105,99,107,101,100,58,58,108,105,110,107,39,32,101,118,101,110,116,32,119,105,116,104,32,110,101,120,116,32,109,97,106,111,114,32,114,101,108,101,97,115,101,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,39,99,108,105,99,107,101,100,58,58,108,105,110,107,39,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,83,116,111,112,32,115,99,114,111,108,108,45,116,111,45,116,111,112,32,98,101,104,97,118,105,111,114,32,111,114,32,110,97,118,105,103,97,116,105,111,110,32,111,110,92,110,32,32,32,32,32,32,47,47,32,114,101,103,117,108,97,114,32,108,105,110,107,115,32,119,104,101,110,32,104,114,101,102,32,105,115,32,106,117,115,116,32,39,35,39,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,73,115,69,118,101,110,116,32,38,38,32,33,105,115,82,111,117,116,101,114,76,105,110,107,32,38,38,32,116,104,105,115,46,99,111,109,112,117,116,101,100,72,114,101,102,32,61,61,61,32,39,35,39,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,104,105,115,46,36,101,108,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,108,117,114,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,97,116,116,101,109,112,116,66,108,117,114,41,40,116,104,105,115,46,36,101,108,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,97,99,116,105,118,101,32,61,32,116,104,105,115,46,97,99,116,105,118,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,104,105,115,46,99,111,109,112,117,116,101,100,84,97,103,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,58,32,97,99,116,105,118,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,80,114,111,112,115,92,110,32,32,32,32,125,44,32,116,104,105,115,46,105,115,82,111,117,116,101,114,76,105,110,107,32,63,32,39,110,97,116,105,118,101,79,110,39,32,58,32,39,111,110,39,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,105,115,116,101,110,101,114,115,41,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,76,105,115,116,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,105,115,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,76,105,115,116,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,76,105,115,116,71,114,111,117,112,73,116,101,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,105,115,116,95,103,114,111,117,112,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,76,105,115,116,71,114,111,117,112,73,116,101,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,76,105,115,116,71,114,111,117,112,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,76,105,115,116,71,114,111,117,112,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,115,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,115,116,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,108,105,115,116,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,115,116,95,103,114,111,117,112,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,76,105,115,116,71,114,111,117,112,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,76,105,115,116,71,114,111,117,112,58,32,95,108,105,115,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,76,105,115,116,71,114,111,117,112,44,92,110,32,32,32,32,66,76,105,115,116,71,114,111,117,112,73,116,101,109,58,32,95,108,105,115,116,95,103,114,111,117,112,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,76,105,115,116,71,114,111,117,112,73,116,101,109,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,76,105,115,116,71,114,111,117,112,73,116,101,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,76,105,115,116,71,114,111,117,112,73,116,101,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,114,111,117,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,114,111,117,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,105,110,107,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,97,99,116,105,111,110,84,97,103,115,32,61,32,91,39,97,39,44,32,39,114,111,117,116,101,114,45,108,105,110,107,39,44,32,39,98,117,116,116,111,110,39,44,32,39,98,45,108,105,110,107,39,93,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,108,105,110,107,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,91,39,101,118,101,110,116,39,44,32,39,114,111,117,116,101,114,84,97,103,39,93,41,59,92,110,100,101,108,101,116,101,32,108,105,110,107,80,114,111,112,115,46,104,114,101,102,46,100,101,102,97,117,108,116,59,92,110,100,101,108,101,116,101,32,108,105,110,107,80,114,111,112,115,46,116,111,46,100,101,102,97,117,108,116,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,108,105,110,107,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,99,116,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,98,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,76,73,83,84,95,71,82,79,85,80,95,73,84,69,77,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,76,105,115,116,71,114,111,117,112,73,116,101,109,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,76,73,83,84,95,71,82,79,85,80,95,73,84,69,77,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,95,99,108,97,115,115,59,92,110,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,98,117,116,116,111,110,32,61,32,112,114,111,112,115,46,98,117,116,116,111,110,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,32,61,32,112,114,111,112,115,46,97,99,116,105,118,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,112,114,111,112,115,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,118,97,114,32,108,105,110,107,32,61,32,40,48,44,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,76,105,110,107,41,40,112,114,111,112,115,41,59,92,110,32,32,32,32,118,97,114,32,116,97,103,32,61,32,98,117,116,116,111,110,32,63,32,39,98,117,116,116,111,110,39,32,58,32,33,108,105,110,107,32,63,32,112,114,111,112,115,46,116,97,103,32,58,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,76,105,110,107,59,92,110,32,32,32,32,118,97,114,32,97,99,116,105,111,110,32,61,32,33,33,40,112,114,111,112,115,46,97,99,116,105,111,110,32,124,124,32,108,105,110,107,32,124,124,32,98,117,116,116,111,110,32,124,124,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,97,99,116,105,111,110,84,97,103,115,44,32,112,114,111,112,115,46,116,97,103,41,41,59,92,110,32,32,32,32,118,97,114,32,97,116,116,114,115,32,61,32,123,125,59,92,110,32,32,32,32,118,97,114,32,105,116,101,109,80,114,111,112,115,32,61,32,123,125,59,92,110,92,110,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,105,115,84,97,103,41,40,116,97,103,44,32,39,98,117,116,116,111,110,39,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,100,97,116,97,46,97,116,116,114,115,32,124,124,32,33,100,97,116,97,46,97,116,116,114,115,46,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,97,32,116,121,112,101,32,102,111,114,32,98,117,116,116,111,110,32,105,115,32,111,110,101,32,110,111,116,32,112,114,111,118,105,100,101,100,32,105,110,32,112,97,115,115,101,100,32,97,116,116,114,105,98,117,116,101,115,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,46,116,121,112,101,32,61,32,39,98,117,116,116,111,110,39,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,100,105,115,97,98,108,101,100,32,97,116,116,114,105,98,117,116,101,32,105,102,32,98,117,116,116,111,110,32,97,110,100,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,46,100,105,115,97,98,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,105,116,101,109,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,108,105,110,107,80,114,111,112,115,44,32,112,114,111,112,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,97,116,116,114,115,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,105,116,101,109,80,114,111,112,115,44,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,40,95,99,108,97,115,115,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,92,34,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,44,32,118,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,39,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,39,44,32,97,99,116,105,111,110,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,97,99,116,105,118,101,92,34,44,32,97,99,116,105,118,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,100,105,115,97,98,108,101,100,92,34,44,32,100,105,115,97,98,108,101,100,41,44,32,95,99,108,97,115,115,41,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,108,105,115,116,45,103,114,111,117,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,108,105,115,116,45,103,114,111,117,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,76,105,115,116,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,76,105,115,116,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,102,108,117,115,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,104,111,114,105,122,111,110,116,97,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,76,73,83,84,95,71,82,79,85,80,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,76,105,115,116,71,114,111,117,112,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,76,73,83,84,95,71,82,79,85,80,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,104,111,114,105,122,111,110,116,97,108,32,61,32,112,114,111,112,115,46,104,111,114,105,122,111,110,116,97,108,32,61,61,61,32,39,39,32,63,32,116,114,117,101,32,58,32,112,114,111,112,115,46,104,111,114,105,122,111,110,116,97,108,59,92,110,32,32,32,32,104,111,114,105,122,111,110,116,97,108,32,61,32,112,114,111,112,115,46,102,108,117,115,104,32,63,32,102,97,108,115,101,32,58,32,104,111,114,105,122,111,110,116,97,108,59,92,110,32,32,32,32,118,97,114,32,99,111,109,112,111,110,101,110,116,68,97,116,97,32,61,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,108,105,115,116,45,103,114,111,117,112,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,92,110,32,32,32,32,32,32,32,32,39,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,39,58,32,112,114,111,112,115,46,102,108,117,115,104,44,92,110,32,32,32,32,32,32,32,32,39,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,39,58,32,104,111,114,105,122,111,110,116,97,108,32,61,61,61,32,116,114,117,101,92,110,32,32,32,32,32,32,125,44,32,92,34,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,92,34,46,99,111,110,99,97,116,40,104,111,114,105,122,111,110,116,97,108,41,44,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,83,116,114,105,110,103,41,40,104,111,114,105,122,111,110,116,97,108,41,41,92,110,32,32,32,32,125,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,99,111,109,112,111,110,101,110,116,68,97,116,97,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,108,105,115,116,45,103,114,111,117,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,77,101,100,105,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,101,100,105,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,77,101,100,105,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,77,101,100,105,97,65,115,105,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,101,100,105,97,95,97,115,105,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,77,101,100,105,97,65,115,105,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,77,101,100,105,97,66,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,101,100,105,97,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,77,101,100,105,97,66,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,101,100,105,97,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,77,101,100,105,97,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,101,100,105,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,100,105,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,101,100,105,97,95,97,115,105,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,100,105,97,45,97,115,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,45,97,115,105,100,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,101,100,105,97,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,100,105,97,45,98,111,100,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,45,98,111,100,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,77,101,100,105,97,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,77,101,100,105,97,58,32,95,109,101,100,105,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,77,101,100,105,97,44,92,110,32,32,32,32,66,77,101,100,105,97,65,115,105,100,101,58,32,95,109,101,100,105,97,95,97,115,105,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,77,101,100,105,97,65,115,105,100,101,44,92,110,32,32,32,32,66,77,101,100,105,97,66,111,100,121,58,32,95,109,101,100,105,97,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,77,101,100,105,97,66,111,100,121,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,45,97,115,105,100,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,45,97,115,105,100,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,77,101,100,105,97,65,115,105,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,77,101,100,105,97,65,115,105,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,114,105,103,104,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,44,92,110,32,32,118,101,114,116,105,99,97,108,65,108,105,103,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,116,111,112,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,77,69,68,73,65,95,65,83,73,68,69,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,77,101,100,105,97,65,115,105,100,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,77,69,68,73,65,95,65,83,73,68,69,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,118,101,114,116,105,99,97,108,65,108,105,103,110,32,61,32,112,114,111,112,115,46,118,101,114,116,105,99,97,108,65,108,105,103,110,59,92,110,32,32,32,32,118,97,114,32,97,108,105,103,110,32,61,32,118,101,114,116,105,99,97,108,65,108,105,103,110,32,61,61,61,32,39,116,111,112,39,32,63,32,39,115,116,97,114,116,39,32,58,32,118,101,114,116,105,99,97,108,65,108,105,103,110,32,61,61,61,32,39,98,111,116,116,111,109,39,32,63,32,39,101,110,100,39,32,58,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,118,101,114,116,105,99,97,108,65,108,105,103,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,109,101,100,105,97,45,97,115,105,100,101,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,92,110,32,32,32,32,32,32,32,32,39,109,101,100,105,97,45,97,115,105,100,101,45,114,105,103,104,116,39,58,32,112,114,111,112,115,46,114,105,103,104,116,92,110,32,32,32,32,32,32,125,44,32,92,34,97,108,105,103,110,45,115,101,108,102,45,92,34,46,99,111,110,99,97,116,40,97,108,105,103,110,41,44,32,97,108,105,103,110,41,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,45,97,115,105,100,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,45,98,111,100,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,45,98,111,100,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,77,101,100,105,97,66,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,77,101,100,105,97,66,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,77,69,68,73,65,95,66,79,68,89,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,77,101,100,105,97,66,111,100,121,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,77,69,68,73,65,95,66,79,68,89,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,109,101,100,105,97,45,98,111,100,121,39,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,45,98,111,100,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,77,101,100,105,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,77,101,100,105,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,101,100,105,97,95,97,115,105,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,100,105,97,45,97,115,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,45,97,115,105,100,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,101,100,105,97,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,100,105,97,45,98,111,100,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,45,98,111,100,121,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,110,111,66,111,100,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,105,103,104,116,65,108,105,103,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,44,92,110,32,32,118,101,114,116,105,99,97,108,65,108,105,103,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,116,111,112,39,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,77,69,68,73,65,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,77,101,100,105,97,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,77,69,68,73,65,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,115,108,111,116,115,32,61,32,95,114,101,102,46,115,108,111,116,115,44,92,110,32,32,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,32,61,32,95,114,101,102,46,115,99,111,112,101,100,83,108,111,116,115,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,110,111,66,111,100,121,32,61,32,112,114,111,112,115,46,110,111,66,111,100,121,44,92,110,32,32,32,32,32,32,32,32,114,105,103,104,116,65,108,105,103,110,32,61,32,112,114,111,112,115,46,114,105,103,104,116,65,108,105,103,110,44,92,110,32,32,32,32,32,32,32,32,118,101,114,116,105,99,97,108,65,108,105,103,110,32,61,32,112,114,111,112,115,46,118,101,114,116,105,99,97,108,65,108,105,103,110,59,92,110,32,32,32,32,118,97,114,32,36,99,104,105,108,100,114,101,110,32,61,32,110,111,66,111,100,121,32,63,32,99,104,105,108,100,114,101,110,32,58,32,91,93,59,92,110,92,110,32,32,32,32,105,102,32,40,33,110,111,66,111,100,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,108,111,116,83,99,111,112,101,32,61,32,123,125,59,92,110,32,32,32,32,32,32,118,97,114,32,36,115,108,111,116,115,32,61,32,115,108,111,116,115,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,115,99,111,112,101,100,83,108,111,116,115,32,124,124,32,123,125,59,92,110,32,32,32,32,32,32,36,99,104,105,108,100,114,101,110,46,112,117,115,104,40,104,40,95,109,101,100,105,97,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,77,101,100,105,97,66,111,100,121,44,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,41,41,59,92,110,32,32,32,32,32,32,118,97,114,32,36,97,115,105,100,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,83,76,79,84,95,78,65,77,69,95,65,83,73,68,69,44,32,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,36,97,115,105,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,36,99,104,105,108,100,114,101,110,91,114,105,103,104,116,65,108,105,103,110,32,63,32,39,112,117,115,104,39,32,58,32,39,117,110,115,104,105,102,116,39,93,40,104,40,95,109,101,100,105,97,95,97,115,105,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,66,77,101,100,105,97,65,115,105,100,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,105,103,104,116,58,32,114,105,103,104,116,65,108,105,103,110,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,101,114,116,105,99,97,108,65,108,105,103,110,58,32,118,101,114,116,105,99,97,108,65,108,105,103,110,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,36,97,115,105,100,101,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,109,101,100,105,97,39,92,110,32,32,32,32,125,41,44,32,36,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,104,101,108,112,101,114,115,47,98,118,45,109,111,100,97,108,45,101,118,101,110,116,46,99,108,97,115,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,104,101,108,112,101,114,115,47,98,118,45,109,111,100,97,108,45,101,118,101,110,116,46,99,108,97,115,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,118,77,111,100,97,108,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,118,77,111,100,97,108,69,118,101,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,98,118,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,116,121,112,101,111,102,40,111,98,106,41,32,123,32,92,34,64,98,97,98,101,108,47,104,101,108,112,101,114,115,32,45,32,116,121,112,101,111,102,92,34,59,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,61,61,61,32,92,34,115,121,109,98,111,108,92,34,41,32,123,32,95,116,121,112,101,111,102,32,61,32,102,117,110,99,116,105,111,110,32,95,116,121,112,101,111,102,40,111,98,106,41,32,123,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,111,98,106,59,32,125,59,32,125,32,101,108,115,101,32,123,32,95,116,121,112,101,111,102,32,61,32,102,117,110,99,116,105,111,110,32,95,116,121,112,101,111,102,40,111,98,106,41,32,123,32,114,101,116,117,114,110,32,111,98,106,32,38,38,32,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,111,98,106,46,99,111,110,115,116,114,117,99,116,111,114,32,61,61,61,32,83,121,109,98,111,108,32,38,38,32,111,98,106,32,33,61,61,32,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,32,63,32,92,34,115,121,109,98,111,108,92,34,32,58,32,116,121,112,101,111,102,32,111,98,106,59,32,125,59,32,125,32,114,101,116,117,114,110,32,95,116,121,112,101,111,102,40,111,98,106,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,105,110,115,116,97,110,99,101,44,32,67,111,110,115,116,114,117,99,116,111,114,41,32,123,32,105,102,32,40,33,40,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,67,111,110,115,116,114,117,99,116,111,114,41,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,32,112,114,111,112,115,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,112,114,111,112,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,100,101,115,99,114,105,112,116,111,114,32,61,32,112,114,111,112,115,91,105,93,59,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,61,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,124,124,32,102,97,108,115,101,59,32,100,101,115,99,114,105,112,116,111,114,46,99,111,110,102,105,103,117,114,97,98,108,101,32,61,32,116,114,117,101,59,32,105,102,32,40,92,34,118,97,108,117,101,92,34,32,105,110,32,100,101,115,99,114,105,112,116,111,114,41,32,100,101,115,99,114,105,112,116,111,114,46,119,114,105,116,97,98,108,101,32,61,32,116,114,117,101,59,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,100,101,115,99,114,105,112,116,111,114,46,107,101,121,44,32,100,101,115,99,114,105,112,116,111,114,41,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,99,114,101,97,116,101,67,108,97,115,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,112,114,111,116,111,80,114,111,112,115,44,32,115,116,97,116,105,99,80,114,111,112,115,41,32,123,32,105,102,32,40,112,114,111,116,111,80,114,111,112,115,41,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,44,32,112,114,111,116,111,80,114,111,112,115,41,59,32,105,102,32,40,115,116,97,116,105,99,80,114,111,112,115,41,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,115,116,97,116,105,99,80,114,111,112,115,41,59,32,114,101,116,117,114,110,32,67,111,110,115,116,114,117,99,116,111,114,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,103,101,116,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,44,32,114,101,99,101,105,118,101,114,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,82,101,102,108,101,99,116,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,38,38,32,82,101,102,108,101,99,116,46,103,101,116,41,32,123,32,95,103,101,116,32,61,32,82,101,102,108,101,99,116,46,103,101,116,59,32,125,32,101,108,115,101,32,123,32,95,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,95,103,101,116,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,44,32,114,101,99,101,105,118,101,114,41,32,123,32,118,97,114,32,98,97,115,101,32,61,32,95,115,117,112,101,114,80,114,111,112,66,97,115,101,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,41,59,32,105,102,32,40,33,98,97,115,101,41,32,114,101,116,117,114,110,59,32,118,97,114,32,100,101,115,99,32,61,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,98,97,115,101,44,32,112,114,111,112,101,114,116,121,41,59,32,105,102,32,40,100,101,115,99,46,103,101,116,41,32,123,32,114,101,116,117,114,110,32,100,101,115,99,46,103,101,116,46,99,97,108,108,40,114,101,99,101,105,118,101,114,41,59,32,125,32,114,101,116,117,114,110,32,100,101,115,99,46,118,97,108,117,101,59,32,125,59,32,125,32,114,101,116,117,114,110,32,95,103,101,116,40,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,44,32,114,101,99,101,105,118,101,114,32,124,124,32,116,97,114,103,101,116,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,115,117,112,101,114,80,114,111,112,66,97,115,101,40,111,98,106,101,99,116,44,32,112,114,111,112,101,114,116,121,41,32,123,32,119,104,105,108,101,32,40,33,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,111,98,106,101,99,116,44,32,112,114,111,112,101,114,116,121,41,41,32,123,32,111,98,106,101,99,116,32,61,32,95,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,98,106,101,99,116,41,59,32,105,102,32,40,111,98,106,101,99,116,32,61,61,61,32,110,117,108,108,41,32,98,114,101,97,107,59,32,125,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,110,104,101,114,105,116,115,40,115,117,98,67,108,97,115,115,44,32,115,117,112,101,114,67,108,97,115,115,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,115,117,112,101,114,67,108,97,115,115,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,115,117,112,101,114,67,108,97,115,115,32,33,61,61,32,110,117,108,108,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,32,125,32,115,117,98,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,115,117,112,101,114,67,108,97,115,115,32,38,38,32,115,117,112,101,114,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,44,32,123,32,99,111,110,115,116,114,117,99,116,111,114,58,32,123,32,118,97,108,117,101,58,32,115,117,98,67,108,97,115,115,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,32,125,41,59,32,105,102,32,40,115,117,112,101,114,67,108,97,115,115,41,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,115,117,98,67,108,97,115,115,44,32,115,117,112,101,114,67,108,97,115,115,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,44,32,112,41,32,123,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,32,61,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,32,124,124,32,102,117,110,99,116,105,111,110,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,44,32,112,41,32,123,32,111,46,95,95,112,114,111,116,111,95,95,32,61,32,112,59,32,114,101,116,117,114,110,32,111,59,32,125,59,32,114,101,116,117,114,110,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,44,32,112,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,99,114,101,97,116,101,83,117,112,101,114,40,68,101,114,105,118,101,100,41,32,123,32,118,97,114,32,104,97,115,78,97,116,105,118,101,82,101,102,108,101,99,116,67,111,110,115,116,114,117,99,116,32,61,32,95,105,115,78,97,116,105,118,101,82,101,102,108,101,99,116,67,111,110,115,116,114,117,99,116,40,41,59,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,95,99,114,101,97,116,101,83,117,112,101,114,73,110,116,101,114,110,97,108,40,41,32,123,32,118,97,114,32,83,117,112,101,114,32,61,32,95,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,68,101,114,105,118,101,100,41,44,32,114,101,115,117,108,116,59,32,105,102,32,40,104,97,115,78,97,116,105,118,101,82,101,102,108,101,99,116,67,111,110,115,116,114,117,99,116,41,32,123,32,118,97,114,32,78,101,119,84,97,114,103,101,116,32,61,32,95,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,41,46,99,111,110,115,116,114,117,99,116,111,114,59,32,114,101,115,117,108,116,32,61,32,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,40,83,117,112,101,114,44,32,97,114,103,117,109,101,110,116,115,44,32,78,101,119,84,97,114,103,101,116,41,59,32,125,32,101,108,115,101,32,123,32,114,101,115,117,108,116,32,61,32,83,117,112,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,32,125,32,114,101,116,117,114,110,32,95,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,40,116,104,105,115,44,32,114,101,115,117,108,116,41,59,32,125,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,40,115,101,108,102,44,32,99,97,108,108,41,32,123,32,105,102,32,40,99,97,108,108,32,38,38,32,40,95,116,121,112,101,111,102,40,99,97,108,108,41,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,32,124,124,32,116,121,112,101,111,102,32,99,97,108,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,41,32,123,32,114,101,116,117,114,110,32,99,97,108,108,59,32,125,32,114,101,116,117,114,110,32,95,97,115,115,101,114,116,84,104,105,115,73,110,105,116,105,97,108,105,122,101,100,40,115,101,108,102,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,115,115,101,114,116,84,104,105,115,73,110,105,116,105,97,108,105,122,101,100,40,115,101,108,102,41,32,123,32,105,102,32,40,115,101,108,102,32,61,61,61,32,118,111,105,100,32,48,41,32,123,32,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,92,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,92,34,41,59,32,125,32,114,101,116,117,114,110,32,115,101,108,102,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,115,78,97,116,105,118,101,82,101,102,108,101,99,116,67,111,110,115,116,114,117,99,116,40,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,82,101,102,108,101,99,116,32,61,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,124,124,32,33,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,32,105,102,32,40,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,46,115,104,97,109,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,32,105,102,32,40,116,121,112,101,111,102,32,80,114,111,120,121,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,114,101,116,117,114,110,32,116,114,117,101,59,32,116,114,121,32,123,32,68,97,116,101,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,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,40,68,97,116,101,44,32,91,93,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,125,41,41,59,32,114,101,116,117,114,110,32,116,114,117,101,59,32,125,32,99,97,116,99,104,32,40,101,41,32,123,32,114,101,116,117,114,110,32,102,97,108,115,101,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,41,32,123,32,95,103,101,116,80,114,111,116,111,116,121,112,101,79,102,32,61,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,32,63,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,32,58,32,102,117,110,99,116,105,111,110,32,95,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,95,95,112,114,111,116,111,95,95,32,124,124,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,41,59,32,125,59,32,114,101,116,117,114,110,32,95,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,41,59,32,125,92,110,92,110,92,110,92,110,92,110,118,97,114,32,66,118,77,111,100,97,108,69,118,101,110,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,102,117,110,99,116,105,111,110,32,40,95,66,118,69,118,101,110,116,41,32,123,92,110,32,32,95,105,110,104,101,114,105,116,115,40,66,118,77,111,100,97,108,69,118,101,110,116,44,32,95,66,118,69,118,101,110,116,41,59,92,110,92,110,32,32,118,97,114,32,95,115,117,112,101,114,32,61,32,95,99,114,101,97,116,101,83,117,112,101,114,40,66,118,77,111,100,97,108,69,118,101,110,116,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,66,118,77,111,100,97,108,69,118,101,110,116,40,116,121,112,101,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,101,118,101,110,116,73,110,105,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,92,110,32,32,32,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,66,118,77,111,100,97,108,69,118,101,110,116,41,59,92,110,92,110,32,32,32,32,95,116,104,105,115,32,61,32,95,115,117,112,101,114,46,99,97,108,108,40,116,104,105,115,44,32,116,121,112,101,44,32,101,118,101,110,116,73,110,105,116,41,59,32,47,47,32,70,114,101,101,122,101,32,111,117,114,32,110,101,119,32,112,114,111,112,115,32,97,115,32,114,101,97,100,111,110,108,121,44,32,98,117,116,32,108,101,97,118,101,32,116,104,101,109,32,101,110,117,109,101,114,97,98,108,101,92,110,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,41,40,95,97,115,115,101,114,116,84,104,105,115,73,110,105,116,105,97,108,105,122,101,100,40,95,116,104,105,115,41,44,32,123,92,110,32,32,32,32,32,32,116,114,105,103,103,101,114,58,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,41,40,41,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,59,92,110,32,32,125,92,110,92,110,32,32,95,99,114,101,97,116,101,67,108,97,115,115,40,66,118,77,111,100,97,108,69,118,101,110,116,44,32,110,117,108,108,44,32,91,123,92,110,32,32,32,32,107,101,121,58,32,92,34,68,101,102,97,117,108,116,115,92,34,44,92,110,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,103,101,116,40,95,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,66,118,77,111,100,97,108,69,118,101,110,116,41,44,32,92,34,68,101,102,97,117,108,116,115,92,34,44,32,116,104,105,115,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,116,114,105,103,103,101,114,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,93,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,66,118,77,111,100,97,108,69,118,101,110,116,59,92,110,125,40,95,117,116,105,108,115,95,98,118,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,118,69,118,101,110,116,41,59,32,47,47,32,78,97,109,101,100,32,101,120,112,111,114,116,115,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,104,101,108,112,101,114,115,47,98,118,45,109,111,100,97,108,45,101,118,101,110,116,46,99,108,97,115,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,104,101,108,112,101,114,115,47,98,118,45,109,111,100,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,104,101,108,112,101,114,115,47,98,118,45,109,111,100,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,77,111,100,97,108,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,86,77,111,100,97,108,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,99,111,110,102,105,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,119,97,114,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,111,100,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,109,111,100,97,108,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,105,110,115,116,97,110,99,101,44,32,67,111,110,115,116,114,117,99,116,111,114,41,32,123,32,105,102,32,40,33,40,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,67,111,110,115,116,114,117,99,116,111,114,41,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,32,112,114,111,112,115,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,112,114,111,112,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,100,101,115,99,114,105,112,116,111,114,32,61,32,112,114,111,112,115,91,105,93,59,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,61,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,124,124,32,102,97,108,115,101,59,32,100,101,115,99,114,105,112,116,111,114,46,99,111,110,102,105,103,117,114,97,98,108,101,32,61,32,116,114,117,101,59,32,105,102,32,40,92,34,118,97,108,117,101,92,34,32,105,110,32,100,101,115,99,114,105,112,116,111,114,41,32,100,101,115,99,114,105,112,116,111,114,46,119,114,105,116,97,98,108,101,32,61,32,116,114,117,101,59,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,100,101,115,99,114,105,112,116,111,114,46,107,101,121,44,32,100,101,115,99,114,105,112,116,111,114,41,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,99,114,101,97,116,101,67,108,97,115,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,112,114,111,116,111,80,114,111,112,115,44,32,115,116,97,116,105,99,80,114,111,112,115,41,32,123,32,105,102,32,40,112,114,111,116,111,80,114,111,112,115,41,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,44,32,112,114,111,116,111,80,114,111,112,115,41,59,32,105,102,32,40,115,116,97,116,105,99,80,114,111,112,115,41,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,115,116,97,116,105,99,80,114,111,112,115,41,59,32,114,101,116,117,114,110,32,67,111,110,115,116,114,117,99,116,111,114,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,97,114,114,41,32,123,32,114,101,116,117,114,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,124,124,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,92,34,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,32,123,32,105,102,32,40,33,111,41,32,114,101,116,117,114,110,59,32,105,102,32,40,116,121,112,101,111,102,32,111,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,118,97,114,32,110,32,61,32,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,111,41,46,115,108,105,99,101,40,56,44,32,45,49,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,79,98,106,101,99,116,92,34,32,38,38,32,111,46,99,111,110,115,116,114,117,99,116,111,114,41,32,110,32,61,32,111,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,59,32,105,102,32,40,110,32,61,61,61,32,92,34,77,97,112,92,34,32,124,124,32,110,32,61,61,61,32,92,34,83,101,116,92,34,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,111,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,65,114,103,117,109,101,110,116,115,92,34,32,124,124,32,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,105,116,101,114,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,38,38,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,105,116,101,114,41,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,105,116,101,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,123,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,44,32,108,101,110,41,32,123,32,105,102,32,40,108,101,110,32,61,61,32,110,117,108,108,32,124,124,32,108,101,110,32,62,32,97,114,114,46,108,101,110,103,116,104,41,32,108,101,110,32,61,32,97,114,114,46,108,101,110,103,116,104,59,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,97,114,114,50,32,61,32,110,101,119,32,65,114,114,97,121,40,108,101,110,41,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,32,97,114,114,50,91,105,93,32,61,32,97,114,114,91,105,93,59,32,125,32,114,101,116,117,114,110,32,97,114,114,50,59,32,125,92,110,92,110,47,47,32,80,108,117,103,105,110,32,102,111,114,32,97,100,100,105,110,103,32,96,36,98,118,77,111,100,97,108,96,32,112,114,111,112,101,114,116,121,32,116,111,32,97,108,108,32,86,117,101,32,105,110,115,116,97,110,99,101,115,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,80,82,79,80,95,78,65,77,69,32,61,32,39,36,98,118,77,111,100,97,108,39,59,92,110,118,97,114,32,80,82,79,80,95,78,65,77,69,95,80,82,73,86,32,61,32,39,95,98,118,95,95,109,111,100,97,108,39,59,32,47,47,32,66,97,115,101,32,109,111,100,97,108,32,112,114,111,112,115,32,116,104,97,116,32,97,114,101,32,97,108,108,111,119,101,100,92,110,47,47,32,83,111,109,101,32,109,97,121,32,98,101,32,105,103,110,111,114,101,100,32,111,114,32,111,118,101,114,114,105,100,100,101,110,32,111,110,32,115,111,109,101,32,109,101,115,115,97,103,101,32,98,111,120,101,115,92,110,47,47,32,80,114,111,112,32,73,68,32,105,115,32,97,108,108,111,119,101,100,44,32,98,117,116,32,114,101,97,108,108,121,32,111,110,108,121,32,115,104,111,117,108,100,32,98,101,32,117,115,101,100,32,102,111,114,32,116,101,115,116,105,110,103,92,110,47,47,32,87,101,32,110,101,101,100,32,116,111,32,97,100,100,32,105,116,32,105,110,32,101,120,112,108,105,99,105,116,108,121,32,97,115,32,105,116,32,99,111,109,101,115,32,102,114,111,109,32,116,104,101,32,96,105,100,77,105,120,105,110,96,92,110,92,110,118,97,114,32,66,65,83,69,95,80,82,79,80,83,32,61,32,91,39,105,100,39,93,46,99,111,110,99,97,116,40,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,107,101,121,115,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,91,39,98,117,115,121,39,44,32,39,108,97,122,121,39,44,32,39,110,111,83,116,97,99,107,105,110,103,39,44,32,39,115,116,97,116,105,99,39,44,32,39,118,105,115,105,98,108,101,39,93,41,41,41,41,59,32,47,47,32,70,97,108,108,98,97,99,107,32,101,118,101,110,116,32,114,101,115,111,108,118,101,114,32,40,114,101,116,117,114,110,115,32,117,110,100,101,102,105,110,101,100,41,92,110,92,110,118,97,114,32,100,101,102,97,117,108,116,82,101,115,111,108,118,101,114,32,61,32,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,82,101,115,111,108,118,101,114,40,41,32,123,125,59,32,47,47,32,77,97,112,32,112,114,111,112,32,110,97,109,101,115,32,116,111,32,109,111,100,97,108,32,115,108,111,116,32,110,97,109,101,115,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,84,111,83,108,111,116,115,32,61,32,123,92,110,32,32,109,115,103,66,111,120,67,111,110,116,101,110,116,58,32,39,100,101,102,97,117,108,116,39,44,92,110,32,32,116,105,116,108,101,58,32,39,109,111,100,97,108,45,116,105,116,108,101,39,44,92,110,32,32,111,107,84,105,116,108,101,58,32,39,109,111,100,97,108,45,111,107,39,44,92,110,32,32,99,97,110,99,101,108,84,105,116,108,101,58,32,39,109,111,100,97,108,45,99,97,110,99,101,108,39,92,110,125,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,77,101,116,104,111,100,32,116,111,32,102,105,108,116,101,114,32,111,110,108,121,32,114,101,99,111,103,110,105,122,101,100,32,112,114,111,112,115,32,116,104,97,116,32,97,114,101,32,110,111,116,32,117,110,100,101,102,105,110,101,100,92,110,92,110,118,97,114,32,102,105,108,116,101,114,79,112,116,105,111,110,115,32,61,32,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,79,112,116,105,111,110,115,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,66,65,83,69,95,80,82,79,80,83,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,109,101,109,111,44,32,107,101,121,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,111,112,116,105,111,110,115,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,109,101,109,111,91,107,101,121,93,32,61,32,111,112,116,105,111,110,115,91,107,101,121,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,109,101,109,111,59,92,110,32,32,125,44,32,123,125,41,59,92,110,125,59,32,47,47,32,77,101,116,104,111,100,32,116,111,32,105,110,115,116,97,108,108,32,96,36,98,118,77,111,100,97,108,96,32,86,77,32,105,110,106,101,99,116,105,111,110,92,110,92,110,92,110,118,97,114,32,112,108,117,103,105,110,32,61,32,102,117,110,99,116,105,111,110,32,112,108,117,103,105,110,40,86,117,101,41,32,123,92,110,32,32,47,47,32,67,114,101,97,116,101,32,97,32,112,114,105,118,97,116,101,32,115,117,98,45,99,111,109,112,111,110,101,110,116,32,116,104,97,116,32,101,120,116,101,110,100,115,32,66,77,111,100,97,108,92,110,32,32,47,47,32,119,104,105,99,104,32,115,101,108,102,45,100,101,115,116,114,117,99,116,115,32,97,102,116,101,114,32,104,105,100,100,101,110,92,110,32,32,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,32,32,118,97,114,32,66,77,115,103,66,111,120,32,61,32,86,117,101,46,101,120,116,101,110,100,40,123,92,110,32,32,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,77,83,71,95,66,79,88,44,92,110,32,32,32,32,101,120,116,101,110,100,115,58,32,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,77,111,100,97,108,44,92,110,32,32,32,32,100,101,115,116,114,111,121,101,100,58,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,101,100,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,77,97,107,101,32,115,117,114,101,32,119,101,32,110,111,116,32,105,110,32,100,111,99,117,109,101,110,116,32,97,110,121,32,109,111,114,101,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,101,108,32,38,38,32,116,104,105,115,46,36,101,108,46,112,97,114,101,110,116,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,108,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,36,101,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,83,101,108,102,32,100,101,115,116,114,117,99,116,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,68,101,115,116,114,111,121,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,32,97,32,96,114,101,113,117,101,115,116,65,70,40,41,96,32,116,111,32,114,101,108,101,97,115,101,32,99,111,110,116,114,111,108,32,98,97,99,107,32,116,111,32,97,112,112,108,105,99,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,100,101,115,116,114,111,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,59,32,47,47,32,83,101,108,102,32,100,101,115,116,114,117,99,116,32,105,102,32,112,97,114,101,110,116,32,100,101,115,116,114,111,121,101,100,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,112,97,114,101,110,116,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,68,69,83,84,82,79,89,69,68,44,32,104,97,110,100,108,101,68,101,115,116,114,111,121,41,59,32,47,47,32,83,101,108,102,32,100,101,115,116,114,117,99,116,32,97,102,116,101,114,32,104,105,100,100,101,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,44,32,104,97,110,100,108,101,68,101,115,116,114,111,121,41,59,32,47,47,32,83,101,108,102,32,100,101,115,116,114,117,99,116,32,111,110,32,114,111,117,116,101,32,99,104,97,110,103,101,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,114,111,117,116,101,114,32,38,38,32,116,104,105,115,46,36,114,111,117,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,101,115,116,114,111,121,32,111,117,114,115,101,108,118,101,115,32,105,102,32,114,111,117,116,101,32,99,104,97,110,103,101,115,92,110,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,66,69,70,79,82,69,95,68,69,83,84,82,79,89,44,32,116,104,105,115,46,36,119,97,116,99,104,40,39,36,114,111,117,116,101,114,39,44,32,104,97,110,100,108,101,68,101,115,116,114,111,121,41,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,83,104,111,119,32,116,104,101,32,96,66,77,115,103,66,111,120,96,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,77,101,116,104,111,100,32,116,111,32,103,101,110,101,114,97,116,101,32,116,104,101,32,111,110,45,100,101,109,97,110,100,32,109,111,100,97,108,32,109,101,115,115,97,103,101,32,98,111,120,92,110,32,32,47,47,32,82,101,116,117,114,110,115,32,97,32,112,114,111,109,105,115,101,32,116,104,97,116,32,114,101,115,111,108,118,101,115,32,116,111,32,97,32,118,97,108,117,101,32,114,101,116,117,114,110,101,100,32,98,121,32,116,104,101,32,114,101,115,111,108,118,101,92,110,92,110,32,32,118,97,114,32,97,115,121,110,99,77,115,103,66,111,120,32,61,32,102,117,110,99,116,105,111,110,32,97,115,121,110,99,77,115,103,66,111,120,40,36,112,97,114,101,110,116,44,32,112,114,111,112,115,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,111,108,118,101,114,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,100,101,102,97,117,108,116,82,101,115,111,108,118,101,114,59,92,110,92,110,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,119,97,114,110,78,111,116,67,108,105,101,110,116,41,40,80,82,79,80,95,78,65,77,69,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,119,97,114,110,78,111,80,114,111,109,105,115,101,83,117,112,112,111,114,116,41,40,80,82,79,80,95,78,65,77,69,41,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,32,47,47,32,67,114,101,97,116,101,32,97,110,32,105,110,115,116,97,110,99,101,32,111,102,32,96,66,77,115,103,66,111,120,96,32,99,111,109,112,111,110,101,110,116,92,110,92,110,92,110,32,32,32,32,118,97,114,32,109,115,103,66,111,120,32,61,32,110,101,119,32,66,77,115,103,66,111,120,40,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,115,101,116,32,112,97,114,101,110,116,32,97,115,32,116,104,101,32,108,111,99,97,108,32,86,77,32,115,111,32,116,104,101,115,101,32,109,111,100,97,108,115,32,99,97,110,32,101,109,105,116,32,101,118,101,110,116,115,32,111,110,92,110,32,32,32,32,32,32,47,47,32,116,104,101,32,97,112,112,32,96,36,114,111,111,116,96,44,32,97,115,32,110,101,101,100,101,100,32,98,121,32,116,104,105,110,103,115,32,108,105,107,101,32,116,111,111,108,116,105,112,115,32,97,110,100,32,112,111,112,111,118,101,114,115,92,110,32,32,32,32,32,32,47,47,32,65,110,100,32,105,116,32,104,101,108,112,115,32,116,111,32,101,110,115,117,114,101,32,96,66,77,115,103,66,111,120,96,32,105,115,32,100,101,115,116,114,111,121,101,100,32,119,104,101,110,32,112,97,114,101,110,116,32,105,115,32,100,101,115,116,114,111,121,101,100,92,110,32,32,32,32,32,32,112,97,114,101,110,116,58,32,36,112,97,114,101,110,116,44,92,110,32,32,32,32,32,32,47,47,32,80,114,101,115,101,116,32,116,104,101,32,112,114,111,112,32,118,97,108,117,101,115,92,110,32,32,32,32,32,32,112,114,111,112,115,68,97,116,97,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,102,105,108,116,101,114,79,112,116,105,111,110,115,40,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,77,79,68,65,76,41,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,101,102,97,117,108,116,115,32,116,104,97,116,32,117,115,101,114,32,99,97,110,32,111,118,101,114,114,105,100,101,92,110,32,32,32,32,32,32,32,32,104,105,100,101,72,101,97,100,101,114,67,108,111,115,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,104,105,100,101,72,101,97,100,101,114,58,32,33,40,112,114,111,112,115,46,116,105,116,108,101,32,124,124,32,112,114,111,112,115,46,116,105,116,108,101,72,116,109,108,41,92,110,32,32,32,32,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,112,114,111,112,115,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,107,101,121,115,41,40,112,114,111,112,115,84,111,83,108,111,116,115,41,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,80,114,111,112,115,32,116,104,97,116,32,99,97,110,39,116,32,98,101,32,111,118,101,114,114,105,100,100,101,110,92,110,32,32,32,32,32,32,32,32,108,97,122,121,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,98,117,115,121,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,110,111,83,116,97,99,107,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,110,111,69,110,102,111,114,99,101,70,111,99,117,115,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,41,92,110,32,32,32,32,125,41,59,32,47,47,32,67,111,110,118,101,114,116,32,99,101,114,116,97,105,110,32,112,114,111,112,115,32,116,111,32,115,99,111,112,101,100,32,115,108,111,116,115,92,110,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,107,101,121,115,41,40,112,114,111,112,115,84,111,83,108,111,116,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,112,114,111,112,115,91,112,114,111,112,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,97,110,32,98,101,32,97,32,115,116,114,105,110,103,44,32,111,114,32,97,114,114,97,121,32,111,102,32,86,78,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,47,47,32,65,108,116,101,114,110,97,116,105,118,101,108,121,44,32,117,115,101,114,32,99,97,110,32,117,115,101,32,72,84,77,76,32,118,101,114,115,105,111,110,32,111,102,32,112,114,111,112,32,116,111,32,112,97,115,115,32,97,110,32,72,84,77,76,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,32,32,32,109,115,103,66,111,120,46,36,115,108,111,116,115,91,112,114,111,112,115,84,111,83,108,111,116,115,91,112,114,111,112,93,93,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,99,111,110,99,97,116,41,40,112,114,111,112,115,91,112,114,111,112,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,32,47,47,32,82,101,116,117,114,110,32,97,32,112,114,111,109,105,115,101,32,116,104,97,116,32,114,101,115,111,108,118,101,115,32,119,104,101,110,32,104,105,100,100,101,110,44,32,111,114,32,114,101,106,101,99,116,115,32,111,110,32,100,101,115,116,114,111,121,101,100,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,111,108,118,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,109,115,103,66,111,120,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,68,69,83,84,82,79,89,69,68,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,114,101,115,111,108,118,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,39,66,111,111,116,115,116,114,97,112,86,117,101,32,77,115,103,66,111,120,32,100,101,115,116,114,111,121,101,100,32,98,101,102,111,114,101,32,114,101,115,111,108,118,101,39,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,109,115,103,66,111,120,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,44,32,102,117,110,99,116,105,111,110,32,40,98,118,77,111,100,97,108,69,118,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,98,118,77,111,100,97,108,69,118,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,114,101,115,111,108,118,101,114,40,98,118,77,111,100,97,108,69,118,116,41,59,32,47,47,32,73,102,32,114,101,115,111,108,118,101,114,32,100,105,100,110,39,116,32,99,97,110,99,101,108,32,104,105,100,101,44,32,119,101,32,114,101,115,111,108,118,101,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,98,118,77,111,100,97,108,69,118,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,118,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,118,101,40,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,67,114,101,97,116,101,32,97,32,109,111,117,110,116,32,112,111,105,110,116,32,40,97,32,68,73,86,41,32,97,110,100,32,109,111,117,110,116,32,116,104,101,32,109,115,103,66,111,32,119,104,105,99,104,32,119,105,108,108,32,116,114,105,103,103,101,114,32,105,116,32,116,111,32,115,104,111,119,92,110,92,110,32,32,32,32,32,32,118,97,114,32,100,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,39,100,105,118,39,41,59,92,110,32,32,32,32,32,32,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,100,105,118,41,59,92,110,32,32,32,32,32,32,109,115,103,66,111,120,46,36,109,111,117,110,116,40,100,105,118,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,32,47,47,32,80,114,105,118,97,116,101,32,117,116,105,108,105,116,121,32,109,101,116,104,111,100,32,116,111,32,111,112,101,110,32,97,32,117,115,101,114,32,100,101,102,105,110,101,100,32,109,101,115,115,97,103,101,32,98,111,120,32,97,110,100,32,114,101,116,117,114,110,115,32,97,32,112,114,111,109,105,115,101,46,92,110,32,32,47,47,32,78,111,116,32,116,111,32,98,101,32,117,115,101,100,32,100,105,114,101,99,116,108,121,32,98,121,32,99,111,110,115,117,109,101,114,115,44,32,97,115,32,116,104,105,115,32,109,101,116,104,111,100,32,109,97,121,32,99,104,97,110,103,101,32,99,97,108,108,105,110,103,32,115,121,110,116,97,120,92,110,92,110,92,110,32,32,118,97,114,32,109,97,107,101,77,115,103,66,111,120,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,77,115,103,66,111,120,40,36,112,97,114,101,110,116,44,32,99,111,110,116,101,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,123,125,59,92,110,32,32,32,32,118,97,114,32,114,101,115,111,108,118,101,114,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,51,32,38,38,32,97,114,103,117,109,101,110,116,115,91,51,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,51,93,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,105,102,32,40,33,99,111,110,116,101,110,116,32,124,124,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,119,97,114,110,78,111,80,114,111,109,105,115,101,83,117,112,112,111,114,116,41,40,80,82,79,80,95,78,65,77,69,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,119,97,114,110,78,111,116,67,108,105,101,110,116,41,40,80,82,79,80,95,78,65,77,69,41,32,124,124,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,114,101,115,111,108,118,101,114,41,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,97,115,121,110,99,77,115,103,66,111,120,40,36,112,97,114,101,110,116,44,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,102,105,108,116,101,114,79,112,116,105,111,110,115,40,111,112,116,105,111,110,115,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,109,115,103,66,111,120,67,111,110,116,101,110,116,58,32,99,111,110,116,101,110,116,92,110,32,32,32,32,125,41,44,32,114,101,115,111,108,118,101,114,41,59,92,110,32,32,125,59,32,47,47,32,66,118,77,111,100,97,108,32,105,110,115,116,97,110,99,101,32,99,108,97,115,115,92,110,92,110,92,110,32,32,118,97,114,32,66,118,77,111,100,97,108,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,66,118,77,111,100,97,108,40,118,109,41,32,123,92,110,32,32,32,32,32,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,66,118,77,111,100,97,108,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,65,115,115,105,103,110,32,116,104,101,32,110,101,119,32,112,114,111,112,101,114,116,105,101,115,32,116,111,32,116,104,105,115,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,115,105,103,110,41,40,116,104,105,115,44,32,123,92,110,32,32,32,32,32,32,32,32,95,118,109,58,32,118,109,44,92,110,32,32,32,32,32,32,32,32,95,114,111,111,116,58,32,118,109,46,36,114,111,111,116,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,83,101,116,32,116,104,101,115,101,32,112,114,111,112,101,114,116,105,101,115,32,97,115,32,114,101,97,100,45,111,110,108,121,32,97,110,100,32,110,111,110,45,101,110,117,109,101,114,97,98,108,101,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,41,40,116,104,105,115,44,32,123,92,110,32,32,32,32,32,32,32,32,95,118,109,58,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,41,40,41,44,92,110,32,32,32,32,32,32,32,32,95,114,111,111,116,58,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,41,40,41,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,47,47,32,45,45,45,32,73,110,115,116,97,110,99,101,32,109,101,116,104,111,100,115,32,45,45,45,92,110,32,32,32,32,47,47,32,83,104,111,119,32,109,111,100,97,108,32,119,105,116,104,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,73,68,32,97,114,103,115,32,97,114,101,32,102,111,114,32,102,117,116,117,114,101,32,117,115,101,92,110,92,110,92,110,32,32,32,32,95,99,114,101,97,116,101,67,108,97,115,115,40,66,118,77,111,100,97,108,44,32,91,123,92,110,32,32,32,32,32,32,107,101,121,58,32,92,34,115,104,111,119,92,34,44,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,104,111,119,40,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,100,32,38,38,32,116,104,105,115,46,95,114,111,111,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,36,95,114,111,111,116,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,95,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,32,97,114,103,115,32,61,32,110,101,119,32,65,114,114,97,121,40,95,108,101,110,32,62,32,49,32,63,32,95,108,101,110,32,45,32,49,32,58,32,48,41,44,32,95,107,101,121,32,61,32,49,59,32,95,107,101,121,32,60,32,95,108,101,110,59,32,95,107,101,121,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,114,103,115,91,95,107,101,121,32,45,32,49,93,32,61,32,97,114,103,117,109,101,110,116,115,91,95,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,40,95,116,104,105,115,36,95,114,111,111,116,32,61,32,116,104,105,115,46,95,114,111,111,116,41,46,36,101,109,105,116,46,97,112,112,108,121,40,95,116,104,105,115,36,95,114,111,111,116,44,32,91,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,77,79,68,65,76,44,32,39,115,104,111,119,39,41,44,32,105,100,93,46,99,111,110,99,97,116,40,97,114,103,115,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,47,47,32,72,105,100,101,32,109,111,100,97,108,32,119,105,116,104,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,73,68,32,97,114,103,115,32,97,114,101,32,102,111,114,32,102,117,116,117,114,101,32,117,115,101,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,107,101,121,58,32,92,34,104,105,100,101,92,34,44,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,40,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,100,32,38,38,32,116,104,105,115,46,95,114,111,111,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,36,95,114,111,111,116,50,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,95,108,101,110,50,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,32,97,114,103,115,32,61,32,110,101,119,32,65,114,114,97,121,40,95,108,101,110,50,32,62,32,49,32,63,32,95,108,101,110,50,32,45,32,49,32,58,32,48,41,44,32,95,107,101,121,50,32,61,32,49,59,32,95,107,101,121,50,32,60,32,95,108,101,110,50,59,32,95,107,101,121,50,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,114,103,115,91,95,107,101,121,50,32,45,32,49,93,32,61,32,97,114,103,117,109,101,110,116,115,91,95,107,101,121,50,93,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,40,95,116,104,105,115,36,95,114,111,111,116,50,32,61,32,116,104,105,115,46,95,114,111,111,116,41,46,36,101,109,105,116,46,97,112,112,108,121,40,95,116,104,105,115,36,95,114,111,111,116,50,44,32,91,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,77,79,68,65,76,44,32,39,104,105,100,101,39,41,44,32,105,100,93,46,99,111,110,99,97,116,40,97,114,103,115,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,47,47,32,84,104,101,32,102,111,108,108,111,119,105,110,103,32,109,101,116,104,111,100,115,32,114,101,113,117,105,114,101,32,80,114,111,109,105,115,101,32,115,117,112,112,111,114,116,33,92,110,32,32,32,32,32,32,47,47,32,73,69,32,49,49,32,97,110,100,32,111,116,104,101,114,115,32,100,111,32,110,111,116,32,115,117,112,112,111,114,116,32,80,114,111,109,105,115,101,32,110,97,116,105,118,101,108,121,44,32,115,111,32,117,115,101,114,115,92,110,32,32,32,32,32,32,47,47,32,115,104,111,117,108,100,32,104,97,118,101,32,97,32,80,111,108,121,102,105,108,108,32,108,111,97,100,101,100,32,40,119,104,105,99,104,32,116,104,101,121,32,110,101,101,100,32,97,110,121,119,97,121,115,32,102,111,114,32,73,69,32,49,49,32,115,117,112,112,111,114,116,41,92,110,32,32,32,32,32,32,47,47,32,79,112,101,110,32,97,32,109,101,115,115,97,103,101,32,98,111,120,32,119,105,116,104,32,79,75,32,98,117,116,116,111,110,32,111,110,108,121,32,97,110,100,32,114,101,116,117,114,110,115,32,97,32,112,114,111,109,105,115,101,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,107,101,121,58,32,92,34,109,115,103,66,111,120,79,107,92,34,44,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,109,115,103,66,111,120,79,107,40,109,101,115,115,97,103,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,80,105,99,107,32,116,104,101,32,109,111,100,97,108,32,112,114,111,112,115,32,119,101,32,115,117,112,112,111,114,116,32,102,114,111,109,32,111,112,116,105,111,110,115,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,111,112,116,105,111,110,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,105,110,32,111,118,101,114,114,105,100,101,115,32,97,110,100,32,111,117,114,32,99,111,110,116,101,110,116,32,112,114,111,112,92,110,32,32,32,32,32,32,32,32,32,32,111,107,79,110,108,121,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,111,107,68,105,115,97,98,108,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,104,105,100,101,70,111,111,116,101,114,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,109,115,103,66,111,120,67,111,110,116,101,110,116,58,32,109,101,115,115,97,103,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,107,101,77,115,103,66,111,120,40,116,104,105,115,46,95,118,109,44,32,109,101,115,115,97,103,101,44,32,112,114,111,112,115,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,65,108,119,97,121,115,32,114,101,115,111,108,118,101,32,116,111,32,116,114,117,101,32,102,111,114,32,79,75,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,79,112,101,110,32,97,32,109,101,115,115,97,103,101,32,98,111,120,32,109,111,100,97,108,32,119,105,116,104,32,79,75,32,97,110,100,32,67,65,78,67,69,76,32,98,117,116,116,111,110,115,92,110,32,32,32,32,32,32,47,47,32,97,110,100,32,114,101,116,117,114,110,115,32,97,32,112,114,111,109,105,115,101,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,107,101,121,58,32,92,34,109,115,103,66,111,120,67,111,110,102,105,114,109,92,34,44,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,109,115,103,66,111,120,67,111,110,102,105,114,109,40,109,101,115,115,97,103,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,116,104,101,32,109,111,100,97,108,32,112,114,111,112,115,32,119,101,32,115,117,112,112,111,114,116,32,102,114,111,109,32,111,112,116,105,111,110,115,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,111,112,116,105,111,110,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,105,110,32,111,118,101,114,114,105,100,101,115,32,97,110,100,32,111,117,114,32,99,111,110,116,101,110,116,32,112,114,111,112,92,110,32,32,32,32,32,32,32,32,32,32,111,107,79,110,108,121,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,111,107,68,105,115,97,98,108,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,99,97,110,99,101,108,68,105,115,97,98,108,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,104,105,100,101,70,111,111,116,101,114,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,107,101,77,115,103,66,111,120,40,116,104,105,115,46,95,118,109,44,32,109,101,115,115,97,103,101,44,32,112,114,111,112,115,44,32,102,117,110,99,116,105,111,110,32,40,98,118,77,111,100,97,108,69,118,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,114,105,103,103,101,114,32,61,32,98,118,77,111,100,97,108,69,118,116,46,116,114,105,103,103,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,105,103,103,101,114,32,61,61,61,32,39,111,107,39,32,63,32,116,114,117,101,32,58,32,116,114,105,103,103,101,114,32,61,61,61,32,39,99,97,110,99,101,108,39,32,63,32,102,97,108,115,101,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,93,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,66,118,77,111,100,97,108,59,92,110,32,32,125,40,41,59,32,47,47,32,65,100,100,32,111,117,114,32,105,110,115,116,97,110,99,101,32,109,105,120,105,110,92,110,92,110,92,110,32,32,86,117,101,46,109,105,120,105,110,40,123,92,110,32,32,32,32,98,101,102,111,114,101,67,114,101,97,116,101,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,67,114,101,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,66,101,99,97,117,115,101,32,119,101,32,110,101,101,100,32,97,99,99,101,115,115,32,116,111,32,96,36,114,111,111,116,96,32,102,111,114,32,96,36,101,109,105,116,115,96,44,32,97,110,100,32,86,77,32,102,111,114,32,112,97,114,101,110,116,105,110,103,44,92,110,32,32,32,32,32,32,47,47,32,119,101,32,104,97,118,101,32,116,111,32,99,114,101,97,116,101,32,97,32,102,114,101,115,104,32,105,110,115,116,97,110,99,101,32,111,102,32,96,66,118,77,111,100,97,108,96,32,102,111,114,32,101,97,99,104,32,86,77,92,110,32,32,32,32,32,32,116,104,105,115,91,80,82,79,80,95,78,65,77,69,95,80,82,73,86,93,32,61,32,110,101,119,32,66,118,77,111,100,97,108,40,116,104,105,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,68,101,102,105,110,101,32,111,117,114,32,114,101,97,100,45,111,110,108,121,32,96,36,98,118,77,111,100,97,108,96,32,105,110,115,116,97,110,99,101,32,112,114,111,112,101,114,116,121,92,110,32,32,47,47,32,80,108,97,99,101,100,32,105,110,32,97,110,32,105,102,32,106,117,115,116,32,105,110,32,99,97,115,101,32,105,110,32,72,77,82,32,109,111,100,101,92,110,92,110,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,41,40,86,117,101,46,112,114,111,116,111,116,121,112,101,44,32,80,82,79,80,95,78,65,77,69,41,41,32,123,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,41,40,86,117,101,46,112,114,111,116,111,116,121,112,101,44,32,80,82,79,80,95,78,65,77,69,44,32,123,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,32,124,124,32,33,116,104,105,115,91,80,82,79,80,95,78,65,77,69,95,80,82,73,86,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,119,97,114,110,41,40,92,34,92,92,92,34,92,34,46,99,111,110,99,97,116,40,80,82,79,80,95,78,65,77,69,44,32,92,34,92,92,92,34,32,109,117,115,116,32,98,101,32,97,99,99,101,115,115,101,100,32,102,114,111,109,32,97,32,86,117,101,32,105,110,115,116,97,110,99,101,32,92,92,92,34,116,104,105,115,92,92,92,34,32,99,111,110,116,101,120,116,46,92,34,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,77,79,68,65,76,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,80,82,79,80,95,78,65,77,69,95,80,82,73,86,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,66,86,77,111,100,97,108,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,112,108,117,103,105,110,115,58,32,123,92,110,32,32,32,32,112,108,117,103,105,110,58,32,112,108,117,103,105,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,104,101,108,112,101,114,115,47,98,118,45,109,111,100,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,104,101,108,112,101,114,115,47,109,111,100,97,108,45,109,97,110,97,103,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,104,101,108,112,101,114,115,47,109,111,100,97,108,45,109,97,110,97,103,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,111,100,97,108,77,97,110,97,103,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,111,100,97,108,77,97,110,97,103,101,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,42,92,110,32,42,32,80,114,105,118,97,116,101,32,77,111,100,97,108,77,97,110,97,103,101,114,32,104,101,108,112,101,114,92,110,32,42,32,72,97,110,100,108,101,115,32,99,111,110,116,114,111,108,108,105,110,103,32,109,111,100,97,108,32,115,116,97,99,107,105,110,103,32,122,73,110,100,101,120,101,115,32,97,110,100,32,98,111,100,121,32,97,100,106,117,115,116,109,101,110,116,115,47,99,108,97,115,115,101,115,92,110,32,42,47,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,47,47,32,68,101,102,97,117,108,116,32,109,111,100,97,108,32,98,97,99,107,100,114,111,112,32,122,45,105,110,100,101,120,92,110,92,110,118,97,114,32,68,69,70,65,85,76,84,95,90,73,78,68,69,88,32,61,32,49,48,52,48,59,32,47,47,32,83,101,108,101,99,116,111,114,115,32,102,111,114,32,112,97,100,100,105,110,103,47,109,97,114,103,105,110,32,97,100,106,117,115,116,109,101,110,116,115,92,110,92,110,118,97,114,32,83,69,76,69,67,84,79,82,95,70,73,88,69,68,95,67,79,78,84,69,78,84,32,61,32,39,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,39,59,92,110,118,97,114,32,83,69,76,69,67,84,79,82,95,83,84,73,67,75,89,95,67,79,78,84,69,78,84,32,61,32,39,46,115,116,105,99,107,121,45,116,111,112,39,59,92,110,118,97,114,32,83,69,76,69,67,84,79,82,95,78,65,86,66,65,82,95,84,79,71,71,76,69,82,32,61,32,39,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,39,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,77,111,100,97,108,77,97,110,97,103,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,109,111,100,97,108,115,58,32,91,93,44,92,110,32,32,32,32,32,32,98,97,115,101,90,73,110,100,101,120,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,115,99,114,111,108,108,98,97,114,87,105,100,116,104,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,109,111,100,97,108,67,111,117,110,116,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,67,111,117,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,97,108,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,100,97,108,115,65,114,101,79,112,101,110,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,115,65,114,101,79,112,101,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,97,108,67,111,117,110,116,32,62,32,48,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,109,111,100,97,108,67,111,117,110,116,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,67,111,117,110,116,40,110,101,119,67,111,117,110,116,44,32,111,108,100,67,111,117,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,73,83,95,66,82,79,87,83,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,101,119,67,111,117,110,116,32,62,32,48,32,38,38,32,111,108,100,67,111,117,110,116,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,84,114,97,110,115,105,116,105,111,110,105,110,103,32,116,111,32,109,111,100,97,108,40,115,41,32,111,112,101,110,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,99,104,101,99,107,83,99,114,111,108,108,98,97,114,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,99,114,111,108,108,98,97,114,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,100,100,67,108,97,115,115,41,40,100,111,99,117,109,101,110,116,46,98,111,100,121,44,32,39,109,111,100,97,108,45,111,112,101,110,39,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,101,119,67,111,117,110,116,32,61,61,61,32,48,32,38,38,32,111,108,100,67,111,117,110,116,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,84,114,97,110,115,105,116,105,111,110,105,110,103,32,116,111,32,109,111,100,97,108,40,115,41,32,99,108,111,115,101,100,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,115,101,116,83,99,114,111,108,108,98,97,114,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,100,111,99,117,109,101,110,116,46,98,111,100,121,44,32,39,109,111,100,97,108,45,111,112,101,110,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,116,65,116,116,114,41,40,100,111,99,117,109,101,110,116,46,98,111,100,121,44,32,39,100,97,116,97,45,109,111,100,97,108,45,111,112,101,110,45,99,111,117,110,116,39,44,32,83,116,114,105,110,103,40,110,101,119,67,111,117,110,116,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,100,97,108,115,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,115,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,104,101,99,107,83,99,114,111,108,108,98,97,114,40,41,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,117,112,100,97,116,101,77,111,100,97,108,115,40,110,101,119,86,97,108,117,101,32,124,124,32,91,93,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,80,117,98,108,105,99,32,109,101,116,104,111,100,115,92,110,32,32,32,32,114,101,103,105,115,116,101,114,77,111,100,97,108,58,32,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,77,111,100,97,108,40,109,111,100,97,108,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,82,101,103,105,115,116,101,114,32,116,104,101,32,109,111,100,97,108,32,105,102,32,110,111,116,32,97,108,114,101,97,100,121,32,114,101,103,105,115,116,101,114,101,100,92,110,32,32,32,32,32,32,105,102,32,40,109,111,100,97,108,32,38,38,32,116,104,105,115,46,109,111,100,97,108,115,46,105,110,100,101,120,79,102,40,109,111,100,97,108,41,32,61,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,109,111,100,97,108,32,116,111,32,109,111,100,97,108,115,32,97,114,114,97,121,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,109,111,100,97,108,115,46,112,117,115,104,40,109,111,100,97,108,41,59,92,110,32,32,32,32,32,32,32,32,109,111,100,97,108,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,66,69,70,79,82,69,95,68,69,83,84,82,79,89,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,117,110,114,101,103,105,115,116,101,114,77,111,100,97,108,40,109,111,100,97,108,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,110,114,101,103,105,115,116,101,114,77,111,100,97,108,58,32,102,117,110,99,116,105,111,110,32,117,110,114,101,103,105,115,116,101,114,77,111,100,97,108,40,109,111,100,97,108,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,116,104,105,115,46,109,111,100,97,108,115,46,105,110,100,101,120,79,102,40,109,111,100,97,108,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,109,111,100,97,108,32,102,114,111,109,32,109,111,100,97,108,115,32,97,114,114,97,121,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,109,111,100,97,108,115,46,115,112,108,105,99,101,40,105,110,100,101,120,44,32,49,41,59,32,47,47,32,82,101,115,101,116,32,116,104,101,32,109,111,100,97,108,39,115,32,100,97,116,97,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,109,111,100,97,108,46,95,105,115,66,101,105,110,103,68,101,115,116,114,111,121,101,100,32,124,124,32,109,111,100,97,108,46,95,105,115,68,101,115,116,114,111,121,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,115,101,116,77,111,100,97,108,40,109,111,100,97,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,66,97,115,101,90,73,110,100,101,120,58,32,102,117,110,99,116,105,111,110,32,103,101,116,66,97,115,101,90,73,110,100,101,120,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,78,117,108,108,41,40,116,104,105,115,46,98,97,115,101,90,73,110,100,101,120,41,32,38,38,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,73,83,95,66,82,79,87,83,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,114,101,97,116,101,32,97,32,116,101,109,112,111,114,97,114,121,32,96,100,105,118,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,96,32,116,111,32,103,101,116,32,99,111,109,112,117,116,101,100,32,122,45,105,110,100,101,120,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,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,39,100,105,118,39,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,100,100,67,108,97,115,115,41,40,100,105,118,44,32,39,109,111,100,97,108,45,98,97,99,107,100,114,111,112,39,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,100,100,67,108,97,115,115,41,40,100,105,118,44,32,39,100,45,110,111,110,101,39,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,116,83,116,121,108,101,41,40,100,105,118,44,32,39,100,105,115,112,108,97,121,39,44,32,39,110,111,110,101,39,41,59,92,110,32,32,32,32,32,32,32,32,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,100,105,118,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,98,97,115,101,90,73,110,100,101,120,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,73,110,116,101,103,101,114,41,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,67,83,41,40,100,105,118,41,46,122,73,110,100,101,120,44,32,68,69,70,65,85,76,84,95,90,73,78,68,69,88,41,59,92,110,32,32,32,32,32,32,32,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,100,105,118,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,97,115,101,90,73,110,100,101,120,32,124,124,32,68,69,70,65,85,76,84,95,90,73,78,68,69,88,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,58,32,102,117,110,99,116,105,111,110,32,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,78,117,108,108,41,40,116,104,105,115,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,41,32,38,38,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,73,83,95,66,82,79,87,83,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,114,101,97,116,101,32,97,32,116,101,109,112,111,114,97,114,121,32,96,100,105,118,46,109,101,97,115,117,114,101,45,115,99,114,111,108,108,98,97,114,96,32,116,111,32,103,101,116,32,99,111,109,112,117,116,101,100,32,122,45,105,110,100,101,120,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,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,39,100,105,118,39,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,100,100,67,108,97,115,115,41,40,100,105,118,44,32,39,109,111,100,97,108,45,115,99,114,111,108,108,98,97,114,45,109,101,97,115,117,114,101,39,41,59,92,110,32,32,32,32,32,32,32,32,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,100,105,118,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,66,67,82,41,40,100,105,118,41,46,119,105,100,116,104,32,45,32,100,105,118,46,99,108,105,101,110,116,87,105,100,116,104,59,92,110,32,32,32,32,32,32,32,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,100,105,118,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,32,124,124,32,48,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,114,105,118,97,116,101,32,109,101,116,104,111,100,115,92,110,32,32,32,32,117,112,100,97,116,101,77,111,100,97,108,115,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,77,111,100,97,108,115,40,109,111,100,97,108,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,98,97,115,101,90,73,110,100,101,120,32,61,32,116,104,105,115,46,103,101,116,66,97,115,101,90,73,110,100,101,120,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,98,97,114,87,105,100,116,104,32,61,32,116,104,105,115,46,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,40,41,59,92,110,32,32,32,32,32,32,109,111,100,97,108,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,109,111,100,97,108,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,117,112,100,97,116,101,32,100,97,116,97,32,118,97,108,117,101,115,32,111,110,32,101,97,99,104,32,109,111,100,97,108,92,110,32,32,32,32,32,32,32,32,109,111,100,97,108,46,122,73,110,100,101,120,32,61,32,98,97,115,101,90,73,110,100,101,120,32,43,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,109,111,100,97,108,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,32,61,32,115,99,114,111,108,108,98,97,114,87,105,100,116,104,59,92,110,32,32,32,32,32,32,32,32,109,111,100,97,108,46,105,115,84,111,112,32,61,32,105,110,100,101,120,32,61,61,61,32,95,116,104,105,115,51,46,109,111,100,97,108,115,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,32,32,32,32,109,111,100,97,108,46,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,32,61,32,95,116,104,105,115,51,46,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,115,101,116,77,111,100,97,108,58,32,102,117,110,99,116,105,111,110,32,114,101,115,101,116,77,111,100,97,108,40,109,111,100,97,108,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,109,111,100,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,109,111,100,97,108,46,122,73,110,100,101,120,32,61,32,116,104,105,115,46,103,101,116,66,97,115,101,90,73,110,100,101,120,40,41,59,92,110,32,32,32,32,32,32,32,32,109,111,100,97,108,46,105,115,84,111,112,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,109,111,100,97,108,46,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,104,101,99,107,83,99,114,111,108,108,98,97,114,58,32,102,117,110,99,116,105,111,110,32,99,104,101,99,107,83,99,114,111,108,108,98,97,114,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,101,116,101,114,109,105,110,101,32,105,102,32,116,104,101,32,98,111,100,121,32,101,108,101,109,101,110,116,32,105,115,32,111,118,101,114,102,108,111,119,105,110,103,92,110,32,32,32,32,32,32,118,97,114,32,95,103,101,116,66,67,82,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,66,67,82,41,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,102,116,32,61,32,95,103,101,116,66,67,82,46,108,101,102,116,44,92,110,32,32,32,32,32,32,32,32,32,32,114,105,103,104,116,32,61,32,95,103,101,116,66,67,82,46,114,105,103,104,116,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,32,61,32,108,101,102,116,32,43,32,114,105,103,104,116,32,60,32,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,83,99,114,111,108,108,98,97,114,58,32,102,117,110,99,116,105,111,110,32,115,101,116,83,99,114,111,108,108,98,97,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,111,100,121,32,61,32,100,111,99,117,109,101,110,116,46,98,111,100,121,59,32,47,47,32,83,116,111,114,97,103,101,32,112,108,97,99,101,32,116,111,32,99,97,99,104,101,32,99,104,97,110,103,101,115,32,116,111,32,109,97,114,103,105,110,115,32,97,110,100,32,112,97,100,100,105,110,103,92,110,32,32,32,32,32,32,47,47,32,78,111,116,101,58,32,84,104,105,115,32,97,115,115,117,109,101,115,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,101,108,101,109,101,110,116,32,116,121,112,101,115,32,97,114,101,32,110,111,116,32,97,100,100,101,100,32,116,111,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,100,111,99,117,109,101,110,116,32,97,102,116,101,114,32,116,104,101,32,109,111,100,97,108,32,104,97,115,32,111,112,101,110,101,100,46,92,110,92,110,32,32,32,32,32,32,98,111,100,121,46,95,112,97,100,100,105,110,103,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,32,61,32,98,111,100,121,46,95,112,97,100,100,105,110,103,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,32,124,124,32,91,93,59,92,110,32,32,32,32,32,32,98,111,100,121,46,95,109,97,114,103,105,110,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,32,61,32,98,111,100,121,46,95,109,97,114,103,105,110,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,32,124,124,32,91,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,98,97,114,87,105,100,116,104,32,61,32,116,104,105,115,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,59,32,47,47,32,65,100,106,117,115,116,32,102,105,120,101,100,32,99,111,110,116,101,110,116,32,112,97,100,100,105,110,103,92,110,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,100,105,102,102,105,99,117,108,116,32,116,111,32,116,101,115,116,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,108,101,99,116,65,108,108,41,40,83,69,76,69,67,84,79,82,95,70,73,88,69,68,95,67,79,78,84,69,78,84,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,99,116,117,97,108,80,97,100,100,105,110,103,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,83,116,121,108,101,41,40,101,108,44,32,39,112,97,100,100,105,110,103,82,105,103,104,116,39,41,32,124,124,32,39,39,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,116,65,116,116,114,41,40,101,108,44,32,39,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,39,44,32,97,99,116,117,97,108,80,97,100,100,105,110,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,116,83,116,121,108,101,41,40,101,108,44,32,39,112,97,100,100,105,110,103,82,105,103,104,116,39,44,32,92,34,92,34,46,99,111,110,99,97,116,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,67,83,41,40,101,108,41,46,112,97,100,100,105,110,103,82,105,103,104,116,44,32,48,41,32,43,32,115,99,114,111,108,108,98,97,114,87,105,100,116,104,44,32,92,34,112,120,92,34,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,98,111,100,121,46,95,112,97,100,100,105,110,103,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,46,112,117,115,104,40,101,108,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,32,47,47,32,65,100,106,117,115,116,32,115,116,105,99,107,121,32,99,111,110,116,101,110,116,32,109,97,114,103,105,110,92,110,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,100,105,102,102,105,99,117,108,116,32,116,111,32,116,101,115,116,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,108,101,99,116,65,108,108,41,40,83,69,76,69,67,84,79,82,95,83,84,73,67,75,89,95,67,79,78,84,69,78,84,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,108,41,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,99,116,117,97,108,77,97,114,103,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,83,116,121,108,101,41,40,101,108,44,32,39,109,97,114,103,105,110,82,105,103,104,116,39,41,32,124,124,32,39,39,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,116,65,116,116,114,41,40,101,108,44,32,39,100,97,116,97,45,109,97,114,103,105,110,45,114,105,103,104,116,39,44,32,97,99,116,117,97,108,77,97,114,103,105,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,116,83,116,121,108,101,41,40,101,108,44,32,39,109,97,114,103,105,110,82,105,103,104,116,39,44,32,92,34,92,34,46,99,111,110,99,97,116,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,67,83,41,40,101,108,41,46,109,97,114,103,105,110,82,105,103,104,116,44,32,48,41,32,45,32,115,99,114,111,108,108,98,97,114,87,105,100,116,104,44,32,92,34,112,120,92,34,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,98,111,100,121,46,95,109,97,114,103,105,110,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,46,112,117,115,104,40,101,108,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,32,47,47,32,65,100,106,117,115,116,32,60,98,45,110,97,118,98,97,114,45,116,111,103,103,108,101,114,62,32,109,97,114,103,105,110,92,110,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,100,105,102,102,105,99,117,108,116,32,116,111,32,116,101,115,116,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,108,101,99,116,65,108,108,41,40,83,69,76,69,67,84,79,82,95,78,65,86,66,65,82,95,84,79,71,71,76,69,82,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,108,41,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,99,116,117,97,108,77,97,114,103,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,83,116,121,108,101,41,40,101,108,44,32,39,109,97,114,103,105,110,82,105,103,104,116,39,41,32,124,124,32,39,39,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,116,65,116,116,114,41,40,101,108,44,32,39,100,97,116,97,45,109,97,114,103,105,110,45,114,105,103,104,116,39,44,32,97,99,116,117,97,108,77,97,114,103,105,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,116,83,116,121,108,101,41,40,101,108,44,32,39,109,97,114,103,105,110,82,105,103,104,116,39,44,32,92,34,92,34,46,99,111,110,99,97,116,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,67,83,41,40,101,108,41,46,109,97,114,103,105,110,82,105,103,104,116,44,32,48,41,32,43,32,115,99,114,111,108,108,98,97,114,87,105,100,116,104,44,32,92,34,112,120,92,34,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,98,111,100,121,46,95,109,97,114,103,105,110,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,46,112,117,115,104,40,101,108,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,32,47,47,32,65,100,106,117,115,116,32,98,111,100,121,32,112,97,100,100,105,110,103,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,99,116,117,97,108,80,97,100,100,105,110,103,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,83,116,121,108,101,41,40,98,111,100,121,44,32,39,112,97,100,100,105,110,103,82,105,103,104,116,39,41,32,124,124,32,39,39,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,116,65,116,116,114,41,40,98,111,100,121,44,32,39,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,39,44,32,97,99,116,117,97,108,80,97,100,100,105,110,103,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,116,83,116,121,108,101,41,40,98,111,100,121,44,32,39,112,97,100,100,105,110,103,82,105,103,104,116,39,44,32,92,34,92,34,46,99,111,110,99,97,116,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,67,83,41,40,98,111,100,121,41,46,112,97,100,100,105,110,103,82,105,103,104,116,44,32,48,41,32,43,32,115,99,114,111,108,108,98,97,114,87,105,100,116,104,44,32,92,34,112,120,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,115,101,116,83,99,114,111,108,108,98,97,114,58,32,102,117,110,99,116,105,111,110,32,114,101,115,101,116,83,99,114,111,108,108,98,97,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,111,100,121,32,61,32,100,111,99,117,109,101,110,116,46,98,111,100,121,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,98,111,100,121,46,95,112,97,100,100,105,110,103,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,115,116,111,114,101,32,102,105,120,101,100,32,99,111,110,116,101,110,116,32,112,97,100,100,105,110,103,92,110,32,32,32,32,32,32,32,32,98,111,100,121,46,95,112,97,100,100,105,110,103,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,100,105,102,102,105,99,117,108,116,32,116,111,32,116,101,115,116,32,105,110,32,74,83,68,79,77,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,97,115,65,116,116,114,41,40,101,108,44,32,39,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,116,83,116,121,108,101,41,40,101,108,44,32,39,112,97,100,100,105,110,103,82,105,103,104,116,39,44,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,65,116,116,114,41,40,101,108,44,32,39,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,39,41,32,124,124,32,39,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,101,109,111,118,101,65,116,116,114,41,40,101,108,44,32,39,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,98,111,100,121,46,95,109,97,114,103,105,110,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,115,116,111,114,101,32,115,116,105,99,107,121,32,99,111,110,116,101,110,116,32,97,110,100,32,110,97,118,98,97,114,45,116,111,103,103,108,101,114,32,109,97,114,103,105,110,92,110,32,32,32,32,32,32,32,32,98,111,100,121,46,95,109,97,114,103,105,110,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,100,105,102,102,105,99,117,108,116,32,116,111,32,116,101,115,116,32,105,110,32,74,83,68,79,77,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,97,115,65,116,116,114,41,40,101,108,44,32,39,100,97,116,97,45,109,97,114,103,105,110,45,114,105,103,104,116,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,116,83,116,121,108,101,41,40,101,108,44,32,39,109,97,114,103,105,110,82,105,103,104,116,39,44,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,65,116,116,114,41,40,101,108,44,32,39,100,97,116,97,45,109,97,114,103,105,110,45,114,105,103,104,116,39,41,32,124,124,32,39,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,101,109,111,118,101,65,116,116,114,41,40,101,108,44,32,39,100,97,116,97,45,109,97,114,103,105,110,45,114,105,103,104,116,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,98,111,100,121,46,95,112,97,100,100,105,110,103,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,98,111,100,121,46,95,109,97,114,103,105,110,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,32,61,32,110,117,108,108,59,32,47,47,32,82,101,115,116,111,114,101,32,98,111,100,121,32,112,97,100,100,105,110,103,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,97,115,65,116,116,114,41,40,98,111,100,121,44,32,39,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,116,83,116,121,108,101,41,40,98,111,100,121,44,32,39,112,97,100,100,105,110,103,82,105,103,104,116,39,44,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,65,116,116,114,41,40,98,111,100,121,44,32,39,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,39,41,32,124,124,32,39,39,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,101,109,111,118,101,65,116,116,114,41,40,98,111,100,121,44,32,39,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,39,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,32,47,47,32,67,114,101,97,116,101,32,97,110,100,32,101,120,112,111,114,116,32,111,117,114,32,109,111,100,97,108,32,109,97,110,97,103,101,114,32,105,110,115,116,97,110,99,101,92,110,92,110,118,97,114,32,109,111,100,97,108,77,97,110,97,103,101,114,32,61,32,110,101,119,32,77,111,100,97,108,77,97,110,97,103,101,114,40,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,104,101,108,112,101,114,115,47,109,111,100,97,108,45,109,97,110,97,103,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,77,111,100,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,77,111,100,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,111,100,97,108,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,77,111,100,97,108,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,111,100,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,109,111,100,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,109,111,100,97,108,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,97,108,47,109,111,100,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,97,108,47,109,111,100,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,98,118,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,98,118,45,109,111,100,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,104,101,108,112,101,114,115,47,98,118,45,109,111,100,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,77,111,100,97,108,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,77,111,100,97,108,58,32,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,77,111,100,97,108,92,110,32,32,125,44,92,110,32,32,100,105,114,101,99,116,105,118,101,115,58,32,123,92,110,32,32,32,32,86,66,77,111,100,97,108,58,32,95,100,105,114,101,99,116,105,118,101,115,95,109,111,100,97,108,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,86,66,77,111,100,97,108,92,110,32,32,125,44,92,110,32,32,47,47,32,36,98,118,77,111,100,97,108,32,105,110,106,101,99,116,105,111,110,92,110,32,32,112,108,117,103,105,110,115,58,32,123,92,110,32,32,32,32,66,86,77,111,100,97,108,80,108,117,103,105,110,58,32,95,104,101,108,112,101,114,115,95,98,118,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,86,77,111,100,97,108,80,108,117,103,105,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,109,111,100,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,109,111,100,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,77,111,100,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,77,111,100,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,118,117,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,115,101,114,118,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,115,101,114,118,101,45,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,115,101,114,118,101,45,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,100,111,99,117,109,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,100,111,99,117,109,101,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,100,111,99,117,109,101,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,119,105,110,100,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,119,105,110,100,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,119,105,110,100,111,119,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,115,99,111,112,101,100,95,115,116,121,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,115,99,111,112,101,100,45,115,116,121,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,115,99,111,112,101,100,45,115,116,121,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,98,117,116,116,111,110,47,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,105,116,105,111,110,95,98,118,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,112,111,114,116,101,114,95,116,114,97,110,115,112,111,114,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,97,110,115,112,111,114,116,101,114,47,116,114,97,110,115,112,111,114,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,114,97,110,115,112,111,114,116,101,114,47,116,114,97,110,115,112,111,114,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,98,118,95,109,111,100,97,108,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,98,118,45,109,111,100,97,108,45,101,118,101,110,116,46,99,108,97,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,104,101,108,112,101,114,115,47,98,118,45,109,111,100,97,108,45,101,118,101,110,116,46,99,108,97,115,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,111,100,97,108,95,109,97,110,97,103,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,111,100,97,108,45,109,97,110,97,103,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,104,101,108,112,101,114,115,47,109,111,100,97,108,45,109,97,110,97,103,101,114,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,105,115,105,98,108,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,92,110,32,32,100,101,102,97,117,108,116,86,97,108,117,101,58,32,102,97,108,115,101,44,92,110,32,32,101,118,101,110,116,58,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,92,110,92,110,118,97,114,32,84,82,73,71,71,69,82,95,66,65,67,75,68,82,79,80,32,61,32,39,98,97,99,107,100,114,111,112,39,59,92,110,118,97,114,32,84,82,73,71,71,69,82,95,69,83,67,32,61,32,39,101,115,99,39,59,92,110,118,97,114,32,84,82,73,71,71,69,82,95,70,79,82,67,69,32,61,32,39,70,79,82,67,69,39,59,92,110,118,97,114,32,84,82,73,71,71,69,82,95,84,79,71,71,76,69,32,61,32,39,116,111,103,103,108,101,39,59,92,110,118,97,114,32,66,85,84,84,79,78,95,67,65,78,67,69,76,32,61,32,39,99,97,110,99,101,108,39,59,32,47,47,32,84,79,68,79,58,32,84,104,105,115,32,115,104,111,117,108,100,32,98,101,32,114,101,110,97,109,101,100,32,116,111,32,39,99,108,111,115,101,39,92,110,92,110,118,97,114,32,66,85,84,84,79,78,95,67,76,79,83,69,32,61,32,39,104,101,97,100,101,114,99,108,111,115,101,39,59,92,110,118,97,114,32,66,85,84,84,79,78,95,79,75,32,61,32,39,111,107,39,59,92,110,118,97,114,32,66,85,84,84,79,78,83,32,61,32,91,66,85,84,84,79,78,95,67,65,78,67,69,76,44,32,66,85,84,84,79,78,95,67,76,79,83,69,44,32,66,85,84,84,79,78,95,79,75,93,59,32,47,47,32,96,79,98,115,101,114,118,101,68,111,109,96,32,99,111,110,102,105,103,32,116,111,32,100,101,116,101,99,116,32,99,104,97,110,103,101,115,32,105,110,32,109,111,100,97,108,32,99,111,110,116,101,110,116,92,110,47,47,32,115,111,32,116,104,97,116,32,119,101,32,99,97,110,32,97,100,106,117,115,116,32,116,104,101,32,109,111,100,97,108,32,112,97,100,100,105,110,103,32,105,102,32,110,101,101,100,101,100,92,110,92,110,118,97,114,32,79,66,83,69,82,86,69,82,95,67,79,78,70,73,71,32,61,32,123,92,110,32,32,115,117,98,116,114,101,101,58,32,116,114,117,101,44,92,110,32,32,99,104,105,108,100,76,105,115,116,58,32,116,114,117,101,44,92,110,32,32,99,104,97,114,97,99,116,101,114,68,97,116,97,58,32,116,114,117,101,44,92,110,32,32,97,116,116,114,105,98,117,116,101,115,58,32,116,114,117,101,44,92,110,32,32,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,58,32,91,39,115,116,121,108,101,39,44,32,39,99,108,97,115,115,39,93,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,114,105,97,76,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,97,117,116,111,70,111,99,117,115,66,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,110,117,108,108,44,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,118,97,108,117,101,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,66,85,84,84,79,78,83,44,32,118,97,108,117,101,41,59,92,110,32,32,125,41,44,92,110,32,32,98,111,100,121,66,103,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,98,111,100,121,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,98,111,100,121,84,101,120,116,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,98,117,115,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,98,117,116,116,111,110,83,105,122,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,99,97,110,99,101,108,68,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,99,97,110,99,101,108,84,105,116,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,67,97,110,99,101,108,39,41,44,92,110,32,32,99,97,110,99,101,108,84,105,116,108,101,72,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,99,97,110,99,101,108,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,101,99,111,110,100,97,114,121,39,41,44,92,110,32,32,99,101,110,116,101,114,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,99,111,110,116,101,110,116,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,100,105,97,108,111,103,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,102,111,111,116,101,114,66,103,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,102,111,111,116,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,102,111,111,116,101,114,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,102,111,111,116,101,114,84,101,120,116,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,104,101,97,100,101,114,66,103,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,104,101,97,100,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,104,101,97,100,101,114,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,104,101,97,100,101,114,67,108,111,115,101,67,111,110,116,101,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,38,116,105,109,101,115,59,39,41,44,92,110,32,32,104,101,97,100,101,114,67,108,111,115,101,76,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,67,108,111,115,101,39,41,44,92,110,32,32,104,101,97,100,101,114,67,108,111,115,101,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,104,101,97,100,101,114,84,101,120,116,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,84,79,68,79,58,32,82,101,110,97,109,101,32,116,111,32,96,110,111,66,97,99,107,100,114,111,112,96,32,97,110,100,32,100,101,112,114,101,99,97,116,101,32,96,104,105,100,101,66,97,99,107,100,114,111,112,96,92,110,32,32,104,105,100,101,66,97,99,107,100,114,111,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,84,79,68,79,58,32,82,101,110,97,109,101,32,116,111,32,96,110,111,70,111,111,116,101,114,96,32,97,110,100,32,100,101,112,114,101,99,97,116,101,32,96,104,105,100,101,70,111,111,116,101,114,96,92,110,32,32,104,105,100,101,70,111,111,116,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,84,79,68,79,58,32,82,101,110,97,109,101,32,116,111,32,96,110,111,72,101,97,100,101,114,96,32,97,110,100,32,100,101,112,114,101,99,97,116,101,32,96,104,105,100,101,72,101,97,100,101,114,96,92,110,32,32,104,105,100,101,72,101,97,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,84,79,68,79,58,32,82,101,110,97,109,101,32,116,111,32,96,110,111,72,101,97,100,101,114,67,108,111,115,101,96,32,97,110,100,32,100,101,112,114,101,99,97,116,101,32,96,104,105,100,101,72,101,97,100,101,114,67,108,111,115,101,96,92,110,32,32,104,105,100,101,72,101,97,100,101,114,67,108,111,115,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,105,103,110,111,114,101,69,110,102,111,114,99,101,70,111,99,117,115,83,101,108,101,99,116,111,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,41,44,92,110,32,32,108,97,122,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,109,111,100,97,108,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,110,111,67,108,111,115,101,79,110,66,97,99,107,100,114,111,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,67,108,111,115,101,79,110,69,115,99,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,69,110,102,111,114,99,101,70,111,99,117,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,70,97,100,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,83,116,97,99,107,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,111,107,68,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,111,107,79,110,108,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,111,107,84,105,116,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,79,75,39,41,44,92,110,32,32,111,107,84,105,116,108,101,72,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,111,107,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,112,114,105,109,97,114,121,39,41,44,92,110,32,32,47,47,32,72,84,77,76,32,69,108,101,109,101,110,116,44,32,67,83,83,32,115,101,108,101,99,116,111,114,32,115,116,114,105,110,103,32,111,114,32,86,117,101,32,99,111,109,112,111,110,101,110,116,32,105,110,115,116,97,110,99,101,92,110,32,32,114,101,116,117,114,110,70,111,99,117,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,91,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,72,84,77,76,69,108,101,109,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,44,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,41,44,92,110,32,32,115,99,114,111,108,108,97,98,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,105,122,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,109,100,39,41,44,92,110,32,32,115,116,97,116,105,99,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,105,116,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,105,116,108,101,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,116,105,116,108,101,72,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,105,116,108,101,83,114,79,110,108,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,105,116,108,101,84,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,104,53,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,77,79,68,65,76,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,77,111,100,97,108,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,77,79,68,65,76,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,100,111,99,117,109,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,108,105,115,116,101,110,79,110,68,111,99,117,109,101,110,116,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,108,105,115,116,101,110,79,110,82,111,111,116,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,119,105,110,100,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,108,105,115,116,101,110,79,110,87,105,110,100,111,119,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,115,99,111,112,101,100,95,115,116,121,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,115,99,111,112,101,100,83,116,121,108,101,77,105,120,105,110,93,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,105,115,72,105,100,100,101,110,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,47,47,32,73,102,32,109,111,100,97,108,32,115,104,111,117,108,100,32,110,111,116,32,98,101,32,105,110,32,100,111,99,117,109,101,110,116,92,110,32,32,32,32,32,32,105,115,86,105,115,105,98,108,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,47,47,32,67,111,110,116,114,111,108,115,32,109,111,100,97,108,32,118,105,115,105,98,108,101,32,115,116,97,116,101,92,110,32,32,32,32,32,32,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,47,47,32,85,115,101,100,32,102,111,114,32,115,116,121,108,101,32,99,111,110,116,114,111,108,92,110,32,32,32,32,32,32,105,115,83,104,111,119,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,47,47,32,85,115,101,100,32,102,111,114,32,115,116,121,108,101,32,99,111,110,116,114,111,108,92,110,32,32,32,32,32,32,105,115,66,108,111,99,107,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,47,47,32,85,115,101,100,32,102,111,114,32,115,116,121,108,101,32,99,111,110,116,114,111,108,92,110,32,32,32,32,32,32,105,115,79,112,101,110,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,47,47,32,84,111,32,115,105,103,110,97,108,32,116,104,97,116,32,116,104,101,32,109,111,100,97,108,32,105,115,32,105,110,32,116,104,101,32,112,114,111,99,101,115,115,32,111,102,32,111,112,101,110,105,110,103,92,110,32,32,32,32,32,32,105,115,67,108,111,115,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,47,47,32,84,111,32,115,105,103,110,97,108,32,116,104,97,116,32,116,104,101,32,109,111,100,97,108,32,105,115,32,105,110,32,116,104,101,32,112,114,111,99,101,115,115,32,111,102,32,99,108,111,115,105,110,103,92,110,32,32,32,32,32,32,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,47,47,32,85,115,101,100,32,116,111,32,115,105,103,110,105,102,121,32,105,102,32,99,108,105,99,107,32,111,117,116,32,108,105,115,116,101,110,101,114,32,115,104,111,117,108,100,32,105,103,110,111,114,101,32,116,104,101,32,99,108,105,99,107,92,110,32,32,32,32,32,32,105,115,77,111,100,97,108,79,118,101,114,102,108,111,119,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,47,47,32,84,104,101,32,102,111,108,108,111,119,105,110,103,32,105,116,101,109,115,32,97,114,101,32,99,111,110,116,114,111,108,108,101,100,32,98,121,32,116,104,101,32,109,111,100,97,108,77,97,110,97,103,101,114,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,32,32,115,99,114,111,108,108,98,97,114,87,105,100,116,104,58,32,48,44,92,110,32,32,32,32,32,32,122,73,110,100,101,120,58,32,95,104,101,108,112,101,114,115,95,109,111,100,97,108,95,109,97,110,97,103,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,109,111,100,97,108,77,97,110,97,103,101,114,46,103,101,116,66,97,115,101,90,73,110,100,101,120,40,41,44,92,110,32,32,32,32,32,32,105,115,84,111,112,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,109,111,100,97,108,73,100,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,100,97,108,79,117,116,101,114,73,100,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,79,117,116,101,114,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,66,86,95,109,111,100,97,108,95,111,117,116,101,114,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,100,97,108,72,101,97,100,101,114,73,100,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,72,101,97,100,101,114,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,66,86,95,109,111,100,97,108,95,104,101,97,100,101,114,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,100,97,108,66,111,100,121,73,100,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,66,111,100,121,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,66,86,95,109,111,100,97,108,95,98,111,100,121,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,100,97,108,84,105,116,108,101,73,100,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,84,105,116,108,101,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,66,86,95,109,111,100,97,108,95,116,105,116,108,101,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,100,97,108,67,111,110,116,101,110,116,73,100,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,67,111,110,116,101,110,116,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,66,86,95,109,111,100,97,108,95,99,111,110,116,101,110,116,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,100,97,108,70,111,111,116,101,114,73,100,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,70,111,111,116,101,114,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,66,86,95,109,111,100,97,108,95,102,111,111,116,101,114,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,100,97,108,66,97,99,107,100,114,111,112,73,100,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,66,97,99,107,100,114,111,112,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,66,86,95,109,111,100,97,108,95,98,97,99,107,100,114,111,112,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,100,97,108,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,123,92,110,32,32,32,32,32,32,32,32,102,97,100,101,58,32,33,116,104,105,115,46,110,111,70,97,100,101,44,92,110,32,32,32,32,32,32,32,32,115,104,111,119,58,32,116,104,105,115,46,105,115,83,104,111,119,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,109,111,100,97,108,67,108,97,115,115,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,100,97,108,83,116,121,108,101,115,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,83,116,121,108,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,98,87,105,100,116,104,32,61,32,92,34,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,44,32,92,34,112,120,92,34,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,112,97,100,100,105,110,103,76,101,102,116,58,32,33,116,104,105,115,46,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,32,38,38,32,116,104,105,115,46,105,115,77,111,100,97,108,79,118,101,114,102,108,111,119,105,110,103,32,63,32,115,98,87,105,100,116,104,32,58,32,39,39,44,92,110,32,32,32,32,32,32,32,32,112,97,100,100,105,110,103,82,105,103,104,116,58,32,116,104,105,115,46,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,32,38,38,32,33,116,104,105,115,46,105,115,77,111,100,97,108,79,118,101,114,102,108,111,119,105,110,103,32,63,32,115,98,87,105,100,116,104,32,58,32,39,39,44,92,110,32,32,32,32,32,32,32,32,47,47,32,78,101,101,100,101,100,32,116,111,32,102,105,120,32,105,115,115,117,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,51,52,53,55,92,110,32,32,32,32,32,32,32,32,47,47,32,69,118,101,110,32,116,104,111,117,103,104,32,119,101,32,97,114,101,32,117,115,105,110,103,32,118,45,115,104,111,119,44,32,119,101,32,109,117,115,116,32,101,110,115,117,114,101,32,39,110,111,110,101,39,32,105,115,32,114,101,115,116,111,114,101,100,32,105,110,32,116,104,101,32,115,116,121,108,101,115,92,110,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,116,104,105,115,46,105,115,66,108,111,99,107,32,63,32,39,98,108,111,99,107,39,32,58,32,39,110,111,110,101,39,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,105,97,108,111,103,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,100,105,97,108,111,103,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,114,101,102,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,40,95,114,101,102,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,109,111,100,97,108,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,105,122,101,41,44,32,116,104,105,115,46,115,105,122,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,39,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,39,44,32,116,104,105,115,46,99,101,110,116,101,114,101,100,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,39,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,39,44,32,116,104,105,115,46,115,99,114,111,108,108,97,98,108,101,41,44,32,95,114,101,102,41,44,32,116,104,105,115,46,100,105,97,108,111,103,67,108,97,115,115,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,101,97,100,101,114,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,104,101,97,100,101,114,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,114,101,102,50,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,40,95,114,101,102,50,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,50,44,32,92,34,98,103,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,104,101,97,100,101,114,66,103,86,97,114,105,97,110,116,41,44,32,116,104,105,115,46,104,101,97,100,101,114,66,103,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,50,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,104,101,97,100,101,114,84,101,120,116,86,97,114,105,97,110,116,41,44,32,116,104,105,115,46,104,101,97,100,101,114,84,101,120,116,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,50,44,32,92,34,98,111,114,100,101,114,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,104,101,97,100,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,41,44,32,116,104,105,115,46,104,101,97,100,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,41,44,32,95,114,101,102,50,41,44,32,116,104,105,115,46,104,101,97,100,101,114,67,108,97,115,115,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,105,116,108,101,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,116,105,116,108,101,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,123,92,110,32,32,32,32,32,32,32,32,39,115,114,45,111,110,108,121,39,58,32,116,104,105,115,46,116,105,116,108,101,83,114,79,110,108,121,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,116,105,116,108,101,67,108,97,115,115,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,111,100,121,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,98,111,100,121,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,114,101,102,51,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,40,95,114,101,102,51,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,51,44,32,92,34,98,103,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,98,111,100,121,66,103,86,97,114,105,97,110,116,41,44,32,116,104,105,115,46,98,111,100,121,66,103,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,51,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,98,111,100,121,84,101,120,116,86,97,114,105,97,110,116,41,44,32,116,104,105,115,46,98,111,100,121,84,101,120,116,86,97,114,105,97,110,116,41,44,32,95,114,101,102,51,41,44,32,116,104,105,115,46,98,111,100,121,67,108,97,115,115,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,111,116,101,114,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,102,111,111,116,101,114,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,114,101,102,52,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,40,95,114,101,102,52,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,52,44,32,92,34,98,103,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,102,111,111,116,101,114,66,103,86,97,114,105,97,110,116,41,44,32,116,104,105,115,46,102,111,111,116,101,114,66,103,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,52,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,102,111,111,116,101,114,84,101,120,116,86,97,114,105,97,110,116,41,44,32,116,104,105,115,46,102,111,111,116,101,114,84,101,120,116,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,52,44,32,92,34,98,111,114,100,101,114,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,102,111,111,116,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,41,44,32,116,104,105,115,46,102,111,111,116,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,41,44,32,95,114,101,102,52,41,44,32,116,104,105,115,46,102,111,111,116,101,114,67,108,97,115,115,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,100,97,108,79,117,116,101,114,83,116,121,108,101,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,79,117,116,101,114,83,116,121,108,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,116,121,108,101,115,32,110,101,101,100,101,100,32,102,111,114,32,112,114,111,112,101,114,32,115,116,97,99,107,105,110,103,32,111,102,32,109,111,100,97,108,115,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,58,32,39,97,98,115,111,108,117,116,101,39,44,92,110,32,32,32,32,32,32,32,32,122,73,110,100,101,120,58,32,116,104,105,115,46,122,73,110,100,101,120,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,108,111,116,83,99,111,112,101,58,32,102,117,110,99,116,105,111,110,32,115,108,111,116,83,99,111,112,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,99,97,110,99,101,108,58,32,116,104,105,115,46,111,110,67,97,110,99,101,108,44,92,110,32,32,32,32,32,32,32,32,99,108,111,115,101,58,32,116,104,105,115,46,111,110,67,108,111,115,101,44,92,110,32,32,32,32,32,32,32,32,104,105,100,101,58,32,116,104,105,115,46,104,105,100,101,44,92,110,32,32,32,32,32,32,32,32,111,107,58,32,116,104,105,115,46,111,110,79,107,44,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,58,32,116,104,105,115,46,105,115,86,105,115,105,98,108,101,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,73,103,110,111,114,101,69,110,102,111,114,99,101,70,111,99,117,115,83,101,108,101,99,116,111,114,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,73,103,110,111,114,101,69,110,102,111,114,99,101,70,111,99,117,115,83,101,108,101,99,116,111,114,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,78,111,114,109,97,108,105,122,101,32,116,111,32,97,110,32,115,105,110,103,108,101,32,115,101,108,101,99,116,111,114,32,119,105,116,104,32,115,101,108,101,99,116,111,114,115,32,115,101,112,97,114,97,116,101,100,32,98,121,32,96,44,96,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,99,111,110,99,97,116,41,40,116,104,105,115,46,105,103,110,111,114,101,69,110,102,111,114,99,101,70,111,99,117,115,83,101,108,101,99,116,111,114,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,44,39,41,46,116,114,105,109,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,112,97,114,101,110,116,32,104,97,115,32,97,32,115,99,111,112,101,100,32,115,116,121,108,101,32,97,116,116,114,105,98,117,116,101,44,32,97,110,100,32,116,104,101,32,109,111,100,97,108,92,110,32,32,32,32,32,32,47,47,32,105,115,32,112,111,114,116,97,108,108,101,100,44,32,97,100,100,32,116,104,101,32,115,99,111,112,101,100,32,97,116,116,114,105,98,117,116,101,32,116,111,32,116,104,101,32,109,111,100,97,108,32,119,114,97,112,112,101,114,92,110,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,100,83,116,121,108,101,65,116,116,114,115,32,61,32,33,116,104,105,115,46,115,116,97,116,105,99,32,63,32,116,104,105,115,46,115,99,111,112,101,100,83,116,121,108,101,65,116,116,114,115,32,58,32,123,125,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,115,99,111,112,101,100,83,116,121,108,101,65,116,116,114,115,41,44,32,116,104,105,115,46,98,118,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,109,111,100,97,108,79,117,116,101,114,73,100,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,77,111,100,97,108,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,77,111,100,97,108,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,86,105,115,105,98,108,101,32,61,32,116,104,105,115,46,105,115,86,105,115,105,98,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,114,105,97,76,97,98,101,108,32,61,32,116,104,105,115,46,97,114,105,97,76,97,98,101,108,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,109,111,100,97,108,73,100,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,100,105,97,108,111,103,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,105,115,86,105,115,105,98,108,101,32,63,32,110,117,108,108,32,58,32,39,116,114,117,101,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,109,111,100,97,108,39,58,32,105,115,86,105,115,105,98,108,101,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,97,114,105,97,76,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,39,58,32,116,104,105,115,46,104,105,100,101,72,101,97,100,101,114,32,124,124,32,97,114,105,97,76,97,98,101,108,32,124,124,32,47,47,32,84,79,68,79,58,32,82,101,110,97,109,101,32,115,108,111,116,32,116,111,32,96,116,105,116,108,101,96,32,97,110,100,32,100,101,112,114,101,99,97,116,101,32,96,109,111,100,97,108,45,116,105,116,108,101,96,92,110,32,32,32,32,32,32,32,32,33,40,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,84,73,84,76,69,41,32,124,124,32,116,104,105,115,46,116,105,116,108,101,72,116,109,108,32,124,124,32,116,104,105,115,46,116,105,116,108,101,41,32,63,32,110,117,108,108,32,58,32,116,104,105,115,46,109,111,100,97,108,84,105,116,108,101,73,100,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,58,32,116,104,105,115,46,109,111,100,97,108,66,111,100,121,73,100,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,91,110,101,119,86,97,108,117,101,32,63,32,39,115,104,111,119,39,32,58,32,39,104,105,100,101,39,93,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,68,101,102,105,110,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,32,61,32,116,104,105,115,46,114,101,116,117,114,110,70,111,99,117,115,32,124,124,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,83,101,116,32,105,110,105,116,105,97,108,32,122,45,105,110,100,101,120,32,97,115,32,113,117,101,114,105,101,100,32,102,114,111,109,32,116,104,101,32,68,79,77,92,110,32,32,32,32,116,104,105,115,46,122,73,110,100,101,120,32,61,32,95,104,101,108,112,101,114,115,95,109,111,100,97,108,95,109,97,110,97,103,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,109,111,100,97,108,77,97,110,97,103,101,114,46,103,101,116,66,97,115,101,90,73,110,100,101,120,40,41,59,32,47,47,32,76,105,115,116,101,110,32,102,111,114,32,101,118,101,110,116,115,32,102,114,111,109,32,111,116,104,101,114,115,32,116,111,32,101,105,116,104,101,114,32,111,112,101,110,32,111,114,32,99,108,111,115,101,32,111,117,114,115,101,108,118,101,115,92,110,32,32,32,32,47,47,32,97,110,100,32,108,105,115,116,101,110,32,116,111,32,97,108,108,32,109,111,100,97,108,115,32,116,111,32,101,110,97,98,108,101,47,100,105,115,97,98,108,101,32,101,110,102,111,114,99,101,32,102,111,99,117,115,92,110,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,77,79,68,65,76,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,41,44,32,116,104,105,115,46,115,104,111,119,72,97,110,100,108,101,114,41,59,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,77,79,68,65,76,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,41,44,32,116,104,105,115,46,104,105,100,101,72,97,110,100,108,101,114,41,59,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,77,79,68,65,76,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,84,79,71,71,76,69,41,44,32,116,104,105,115,46,116,111,103,103,108,101,72,97,110,100,108,101,114,41,59,32,47,47,32,76,105,115,116,101,110,32,102,111,114,32,96,98,118,58,109,111,100,97,108,58,58,115,104,111,119,32,101,118,101,110,116,115,96,44,32,97,110,100,32,99,108,111,115,101,32,111,117,114,115,101,108,118,101,115,32,105,102,32,116,104,101,92,110,32,32,32,32,47,47,32,111,112,101,110,105,110,103,32,109,111,100,97,108,32,110,111,116,32,117,115,92,110,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,77,79,68,65,76,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,41,44,32,116,104,105,115,46,109,111,100,97,108,76,105,115,116,101,110,101,114,41,59,32,47,47,32,73,110,105,116,105,97,108,108,121,32,115,104,111,119,32,109,111,100,97,108,63,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,32,61,61,61,32,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,115,104,111,119,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,47,47,32,69,110,115,117,114,101,32,101,118,101,114,121,116,104,105,110,103,32,105,115,32,98,97,99,107,32,116,111,32,110,111,114,109,97,108,92,110,32,32,32,32,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,40,102,97,108,115,101,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,86,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,86,105,115,105,98,108,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,83,104,111,119,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,115,101,116,79,98,115,101,114,118,101,114,58,32,102,117,110,99,116,105,111,110,32,115,101,116,79,98,115,101,114,118,101,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,32,38,38,32,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,46,100,105,115,99,111,110,110,101,99,116,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,115,101,114,118,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,111,98,115,101,114,118,101,68,111,109,41,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,44,32,116,104,105,115,46,99,104,101,99,107,77,111,100,97,108,79,118,101,114,102,108,111,119,46,98,105,110,100,40,116,104,105,115,41,44,32,79,66,83,69,82,86,69,82,95,67,79,78,70,73,71,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,114,105,118,97,116,101,32,109,101,116,104,111,100,32,116,111,32,117,112,100,97,116,101,32,116,104,101,32,118,45,109,111,100,101,108,92,110,32,32,32,32,117,112,100,97,116,101,77,111,100,101,108,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,77,111,100,101,108,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,33,61,61,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,114,105,118,97,116,101,32,109,101,116,104,111,100,32,116,111,32,99,114,101,97,116,101,32,97,32,66,118,77,111,100,97,108,69,118,101,110,116,32,111,98,106,101,99,116,92,110,32,32,32,32,98,117,105,108,100,69,118,101,110,116,58,32,102,117,110,99,116,105,111,110,32,98,117,105,108,100,69,118,101,110,116,40,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,95,104,101,108,112,101,114,115,95,98,118,95,109,111,100,97,108,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,66,118,77,111,100,97,108,69,118,101,110,116,40,116,121,112,101,44,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,111,112,116,105,111,110,115,92,110,32,32,32,32,32,32,32,32,99,97,110,99,101,108,97,98,108,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,104,105,115,46,36,114,101,102,115,46,109,111,100,97,108,32,124,124,32,116,104,105,115,46,36,101,108,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,114,101,108,97,116,101,100,84,97,114,103,101,116,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,116,114,105,103,103,101,114,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,32,111,112,116,105,111,110,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,79,112,116,105,111,110,115,32,116,104,97,116,32,99,97,110,39,116,32,98,101,32,111,118,101,114,114,105,100,100,101,110,92,110,32,32,32,32,32,32,32,32,118,117,101,84,97,114,103,101,116,58,32,116,104,105,115,44,92,110,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,73,100,58,32,116,104,105,115,46,109,111,100,97,108,73,100,92,110,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,117,98,108,105,99,32,109,101,116,104,111,100,32,116,111,32,115,104,111,119,32,109,111,100,97,108,92,110,32,32,32,32,115,104,111,119,58,32,102,117,110,99,116,105,111,110,32,115,104,111,119,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,86,105,115,105,98,108,101,32,124,124,32,116,104,105,115,46,105,115,79,112,101,110,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,97,108,114,101,97,100,121,32,111,112,101,110,44,32,111,114,32,105,110,32,116,104,101,32,112,114,111,99,101,115,115,32,111,102,32,111,112,101,110,105,110,103,44,32,100,111,32,110,111,116,104,105,110,103,92,110,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,67,108,111,115,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,119,101,32,97,114,101,32,105,110,32,116,104,101,32,112,114,111,99,101,115,115,32,111,102,32,99,108,111,115,105,110,103,44,32,119,97,105,116,32,117,110,116,105,108,32,104,105,100,100,101,110,32,98,101,102,111,114,101,32,114,101,45,111,112,101,110,105,110,103,92,110,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,44,32,116,104,105,115,46,115,104,111,119,41,59,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,79,112,101,110,105,110,103,32,61,32,116,114,117,101,59,32,47,47,32,83,101,116,32,116,104,101,32,101,108,101,109,101,110,116,32,116,111,32,114,101,116,117,114,110,32,102,111,99,117,115,32,116,111,32,119,104,101,110,32,99,108,111,115,101,100,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,32,61,32,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,32,124,124,32,116,104,105,115,46,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,104,111,119,69,118,116,32,61,32,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,44,32,123,92,110,32,32,32,32,32,32,32,32,99,97,110,99,101,108,97,98,108,101,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,115,104,111,119,69,118,116,41,59,32,47,47,32,68,111,110,39,116,32,115,104,111,119,32,105,102,32,99,97,110,99,101,108,101,100,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,104,111,119,69,118,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,32,124,124,32,116,104,105,115,46,105,115,86,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,79,112,101,110,105,110,103,32,61,32,102,97,108,115,101,59,32,47,47,32,69,110,115,117,114,101,32,116,104,101,32,118,45,109,111,100,101,108,32,114,101,102,108,101,99,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,115,116,97,116,101,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,77,111,100,101,108,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,83,104,111,119,32,116,104,101,32,109,111,100,97,108,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,100,111,83,104,111,119,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,117,98,108,105,99,32,109,101,116,104,111,100,32,116,111,32,104,105,100,101,32,109,111,100,97,108,92,110,32,32,32,32,104,105,100,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,114,105,103,103,101,114,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,39,39,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,86,105,115,105,98,108,101,32,124,124,32,116,104,105,115,46,105,115,67,108,111,115,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,67,108,111,115,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,118,97,114,32,104,105,100,101,69,118,116,32,61,32,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,44,32,123,92,110,32,32,32,32,32,32,32,32,99,97,110,99,101,108,97,98,108,101,58,32,116,114,105,103,103,101,114,32,33,61,61,32,84,82,73,71,71,69,82,95,70,79,82,67,69,44,92,110,32,32,32,32,32,32,32,32,116,114,105,103,103,101,114,58,32,116,114,105,103,103,101,114,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,87,101,32,101,109,105,116,32,115,112,101,99,105,102,105,99,32,101,118,101,110,116,32,102,111,114,32,111,110,101,32,111,102,32,116,104,101,32,116,104,114,101,101,32,98,117,105,108,116,45,105,110,32,98,117,116,116,111,110,115,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,114,105,103,103,101,114,32,61,61,61,32,66,85,84,84,79,78,95,79,75,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,79,75,44,32,104,105,100,101,69,118,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,114,105,103,103,101,114,32,61,61,61,32,66,85,84,84,79,78,95,67,65,78,67,69,76,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,65,78,67,69,76,44,32,104,105,100,101,69,118,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,114,105,103,103,101,114,32,61,61,61,32,66,85,84,84,79,78,95,67,76,79,83,69,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,79,83,69,44,32,104,105,100,101,69,118,116,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,104,105,100,101,69,118,116,41,59,32,47,47,32,72,105,100,101,32,105,102,32,110,111,116,32,99,97,110,99,101,108,101,100,92,110,92,110,32,32,32,32,32,32,105,102,32,40,104,105,100,101,69,118,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,32,124,124,32,33,116,104,105,115,46,105,115,86,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,67,108,111,115,105,110,103,32,61,32,102,97,108,115,101,59,32,47,47,32,69,110,115,117,114,101,32,118,45,109,111,100,101,108,32,114,101,102,108,101,99,116,115,32,99,117,114,114,101,110,116,32,115,116,97,116,101,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,77,111,100,101,108,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,83,116,111,112,32,111,98,115,101,114,118,105,110,103,32,102,111,114,32,99,111,110,116,101,110,116,32,99,104,97,110,103,101,115,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,40,102,97,108,115,101,41,59,32,47,47,32,84,114,105,103,103,101,114,32,116,104,101,32,104,105,100,101,32,116,114,97,110,115,105,116,105,111,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,86,105,115,105,98,108,101,32,61,32,102,97,108,115,101,59,32,47,47,32,85,112,100,97,116,101,32,116,104,101,32,118,45,109,111,100,101,108,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,77,111,100,101,108,40,102,97,108,115,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,117,98,108,105,99,32,109,101,116,104,111,100,32,116,111,32,116,111,103,103,108,101,32,109,111,100,97,108,32,118,105,115,105,98,105,108,105,116,121,92,110,32,32,32,32,116,111,103,103,108,101,58,32,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,40,116,114,105,103,103,101,114,69,108,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,114,105,103,103,101,114,69,108,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,32,61,32,116,114,105,103,103,101,114,69,108,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,86,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,40,84,82,73,71,71,69,82,95,84,79,71,71,76,69,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,114,105,118,97,116,101,32,109,101,116,104,111,100,32,116,111,32,103,101,116,32,116,104,101,32,99,117,114,114,101,110,116,32,100,111,99,117,109,101,110,116,32,97,99,116,105,118,101,32,101,108,101,109,101,110,116,92,110,32,32,32,32,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,105,110,103,32,102,111,99,117,115,32,116,111,32,96,100,111,99,117,109,101,110,116,46,98,111,100,121,96,32,109,97,121,32,99,97,117,115,101,32,117,110,119,97,110,116,101,100,32,115,99,114,111,108,108,115,44,92,110,32,32,32,32,32,32,47,47,32,115,111,32,119,101,32,101,120,99,108,117,100,101,32,115,101,116,116,105,110,103,32,102,111,99,117,115,32,111,110,32,98,111,100,121,92,110,32,32,32,32,32,32,118,97,114,32,97,99,116,105,118,101,69,108,101,109,101,110,116,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,41,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,73,83,95,66,82,79,87,83,69,82,32,63,32,91,100,111,99,117,109,101,110,116,46,98,111,100,121,93,32,58,32,91,93,41,59,32,47,47,32,80,114,101,115,101,116,32,116,104,101,32,102,97,108,108,98,97,99,107,32,114,101,116,117,114,110,32,102,111,99,117,115,32,118,97,108,117,101,32,105,102,32,105,116,32,105,115,32,110,111,116,32,115,101,116,92,110,32,32,32,32,32,32,47,47,32,96,100,111,99,117,109,101,110,116,46,97,99,116,105,118,101,69,108,101,109,101,110,116,96,32,115,104,111,117,108,100,32,98,101,32,116,104,101,32,116,114,105,103,103,101,114,32,101,108,101,109,101,110,116,32,116,104,97,116,32,119,97,115,32,99,108,105,99,107,101,100,32,111,114,92,110,32,32,32,32,32,32,47,47,32,105,110,32,116,104,101,32,99,97,115,101,32,111,102,32,117,115,105,110,103,32,116,104,101,32,118,45,109,111,100,101,108,44,32,119,104,105,99,104,32,101,118,101,114,32,101,108,101,109,101,110,116,32,104,97,115,32,99,117,114,114,101,110,116,32,102,111,99,117,115,92,110,32,32,32,32,32,32,47,47,32,87,105,108,108,32,98,101,32,111,118,101,114,114,105,100,100,101,110,32,98,121,32,115,111,109,101,32,99,111,109,109,97,110,100,115,32,115,117,99,104,32,97,115,32,116,111,103,103,108,101,44,32,101,116,99,46,92,110,32,32,32,32,32,32,47,47,32,78,111,116,101,58,32,79,110,32,73,69,32,49,49,44,32,96,100,111,99,117,109,101,110,116,46,97,99,116,105,118,101,69,108,101,109,101,110,116,96,32,109,97,121,32,98,101,32,96,110,117,108,108,96,92,110,32,32,32,32,32,32,47,47,32,83,111,32,119,101,32,116,101,115,116,32,105,116,32,102,111,114,32,116,114,117,116,104,105,110,101,115,115,32,102,105,114,115,116,92,110,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,51,50,48,54,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,99,116,105,118,101,69,108,101,109,101,110,116,32,38,38,32,97,99,116,105,118,101,69,108,101,109,101,110,116,46,102,111,99,117,115,32,63,32,97,99,116,105,118,101,69,108,101,109,101,110,116,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,114,105,118,97,116,101,32,109,101,116,104,111,100,32,116,111,32,102,105,110,105,115,104,32,115,104,111,119,105,110,103,32,109,111,100,97,108,92,110,32,32,32,32,100,111,83,104,111,119,58,32,102,117,110,99,116,105,111,110,32,100,111,83,104,111,119,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,99,111,109,109,101,110,116,105,110,103,32,111,117,116,32,102,111,114,32,110,111,119,32,117,110,116,105,108,32,119,101,32,99,97,110,32,116,101,115,116,32,115,116,97,99,107,105,110,103,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,95,104,101,108,112,101,114,115,95,109,111,100,97,108,95,109,97,110,97,103,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,109,111,100,97,108,77,97,110,97,103,101,114,46,109,111,100,97,108,115,65,114,101,79,112,101,110,32,38,38,32,116,104,105,115,46,110,111,83,116,97,99,107,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,97,110,111,116,104,101,114,32,109,111,100,97,108,40,115,41,32,105,115,32,97,108,114,101,97,100,121,32,111,112,101,110,44,32,119,97,105,116,32,102,111,114,32,105,116,40,116,104,101,109,41,32,116,111,32,99,108,111,115,101,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,79,110,99,101,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,77,79,68,65,76,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,41,44,32,116,104,105,115,46,100,111,83,104,111,119,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,95,104,101,108,112,101,114,115,95,109,111,100,97,108,95,109,97,110,97,103,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,109,111,100,97,108,77,97,110,97,103,101,114,46,114,101,103,105,115,116,101,114,77,111,100,97,108,40,116,104,105,115,41,59,32,47,47,32,80,108,97,99,101,32,109,111,100,97,108,32,105,110,32,68,79,77,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,72,105,100,100,101,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,100,111,32,116,104,105,115,32,105,110,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,101,110,115,117,114,101,32,116,104,101,32,109,111,100,97,108,32,105,115,32,105,110,32,68,79,77,32,102,105,114,115,116,92,110,32,32,32,32,32,32,32,32,47,47,32,98,101,102,111,114,101,32,119,101,32,115,104,111,119,32,105,116,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,105,115,86,105,115,105,98,108,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,105,115,79,112,101,110,105,110,103,32,61,32,102,97,108,115,101,59,32,47,47,32,85,112,100,97,116,101,32,116,104,101,32,118,45,109,111,100,101,108,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,117,112,100,97,116,101,77,111,100,101,108,40,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,79,98,115,101,114,118,101,32,99,104,97,110,103,101,115,32,105,110,32,109,111,100,97,108,32,99,111,110,116,101,110,116,32,97,110,100,32,97,100,106,117,115,116,32,105,102,32,110,101,99,101,115,115,97,114,121,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,105,110,32,99,97,115,101,32,109,111,100,97,108,32,99,111,110,116,101,110,116,32,105,115,32,108,97,122,121,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,84,114,97,110,115,105,116,105,111,110,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,111,110,66,101,102,111,114,101,69,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,111,110,66,101,102,111,114,101,69,110,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,82,101,115,105,122,101,69,118,101,110,116,40,116,114,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,69,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,111,110,69,110,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,66,108,111,99,107,32,61,32,116,114,117,101,59,32,47,47,32,87,101,32,97,100,100,32,116,104,101,32,96,115,104,111,119,96,32,99,108,97,115,115,32,49,32,102,114,97,109,101,32,108,97,116,101,114,92,110,32,32,32,32,32,32,47,47,32,96,114,101,113,117,101,115,116,65,70,40,41,96,32,114,117,110,115,32,116,104,101,32,99,97,108,108,98,97,99,107,32,98,101,102,111,114,101,32,116,104,101,32,110,101,120,116,32,114,101,112,97,105,110,116,44,32,115,111,32,119,101,32,110,101,101,100,92,110,32,32,32,32,32,32,47,47,32,116,119,111,32,99,97,108,108,115,32,116,111,32,103,117,97,114,97,110,116,101,101,32,116,104,101,32,110,101,120,116,32,102,114,97,109,101,32,104,97,115,32,98,101,101,110,32,114,101,110,100,101,114,101,100,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,105,115,83,104,111,119,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,65,102,116,101,114,69,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,111,110,65,102,116,101,114,69,110,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,104,101,99,107,77,111,100,97,108,79,118,101,114,102,108,111,119,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,32,61,32,102,97,108,115,101,59,32,47,47,32,87,101,32,117,115,101,32,96,114,101,113,117,101,115,116,65,70,40,41,96,32,116,111,32,97,108,108,111,119,32,116,114,97,110,115,105,116,105,111,110,32,104,111,111,107,115,32,116,111,32,99,111,109,112,108,101,116,101,92,110,32,32,32,32,32,32,47,47,32,98,101,102,111,114,101,32,112,97,115,115,105,110,103,32,99,111,110,116,114,111,108,32,111,118,101,114,32,116,111,32,116,104,101,32,111,116,104,101,114,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,32,32,47,47,32,84,104,105,115,32,119,105,108,108,32,97,108,108,111,119,32,117,115,101,114,115,32,116,111,32,110,111,116,32,104,97,118,101,32,116,111,32,117,115,101,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,111,114,32,96,114,101,113,117,101,115,116,65,70,40,41,96,92,110,32,32,32,32,32,32,47,47,32,119,104,101,110,32,116,114,121,105,110,103,32,116,111,32,112,114,101,45,102,111,99,117,115,32,97,110,32,101,108,101,109,101,110,116,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,101,109,105,116,69,118,101,110,116,40,95,116,104,105,115,51,46,98,117,105,108,100,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,115,101,116,69,110,102,111,114,99,101,70,111,99,117,115,40,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,68,101,108,97,121,101,100,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,97,108,108,111,119,32,117,115,101,114,115,32,116,105,109,101,32,116,111,32,112,114,101,45,102,111,99,117,115,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,97,110,32,101,108,101,109,101,110,116,32,105,102,32,116,104,101,32,119,105,115,104,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,102,111,99,117,115,70,105,114,115,116,40,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,66,101,102,111,114,101,76,101,97,118,101,58,32,102,117,110,99,116,105,111,110,32,111,110,66,101,102,111,114,101,76,101,97,118,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,82,101,115,105,122,101,69,118,101,110,116,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,69,110,102,111,114,99,101,70,111,99,117,115,40,102,97,108,115,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,76,101,97,118,101,58,32,102,117,110,99,116,105,111,110,32,111,110,76,101,97,118,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,116,104,101,32,39,115,104,111,119,39,32,99,108,97,115,115,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,83,104,111,119,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,65,102,116,101,114,76,101,97,118,101,58,32,102,117,110,99,116,105,111,110,32,111,110,65,102,116,101,114,76,101,97,118,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,66,108,111,99,107,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,77,111,100,97,108,79,118,101,114,102,108,111,119,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,72,105,100,100,101,110,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,105,115,67,108,111,115,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,95,104,101,108,112,101,114,115,95,109,111,100,97,108,95,109,97,110,97,103,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,109,111,100,97,108,77,97,110,97,103,101,114,46,117,110,114,101,103,105,115,116,101,114,77,111,100,97,108,40,95,116,104,105,115,52,41,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,114,101,116,117,114,110,70,111,99,117,115,84,111,40,41,59,32,47,47,32,84,79,68,79,58,32,78,101,101,100,32,116,111,32,102,105,110,100,32,97,32,119,97,121,32,116,111,32,112,97,115,115,32,116,104,101,32,96,116,114,105,103,103,101,114,96,32,112,114,111,112,101,114,116,121,92,110,32,32,32,32,32,32,32,32,47,47,32,32,32,32,32,32,32,116,111,32,116,104,101,32,96,104,105,100,100,101,110,96,32,101,118,101,110,116,44,32,110,111,116,32,106,117,115,116,32,111,110,108,121,32,116,104,101,32,96,104,105,100,101,96,32,101,118,101,110,116,92,110,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,101,109,105,116,69,118,101,110,116,40,95,116,104,105,115,52,46,98,117,105,108,100,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,109,105,116,69,118,101,110,116,58,32,102,117,110,99,116,105,111,110,32,101,109,105,116,69,118,101,110,116,40,98,118,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,98,118,69,118,101,110,116,46,116,121,112,101,59,32,47,47,32,87,101,32,101,109,105,116,32,111,110,32,96,36,114,111,111,116,96,32,102,105,114,115,116,32,105,110,32,99,97,115,101,32,97,32,103,108,111,98,97,108,32,108,105,115,116,101,110,101,114,32,119,97,110,116,115,32,116,111,32,99,97,110,99,101,108,92,110,32,32,32,32,32,32,47,47,32,116,104,101,32,101,118,101,110,116,32,102,105,114,115,116,32,98,101,102,111,114,101,32,116,104,101,32,105,110,115,116,97,110,99,101,32,101,109,105,116,115,32,105,116,115,32,101,118,101,110,116,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,78,65,77,69,95,77,79,68,65,76,44,32,116,121,112,101,41,44,32,98,118,69,118,101,110,116,44,32,98,118,69,118,101,110,116,46,99,111,109,112,111,110,101,110,116,73,100,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,116,121,112,101,44,32,98,118,69,118,101,110,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,85,73,32,101,118,101,110,116,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,111,110,68,105,97,108,111,103,77,111,117,115,101,100,111,119,110,58,32,102,117,110,99,116,105,111,110,32,111,110,68,105,97,108,111,103,77,111,117,115,101,100,111,119,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,53,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,87,97,116,99,104,32,116,111,32,115,101,101,32,105,102,32,116,104,101,32,109,97,116,99,104,105,110,103,32,109,111,117,115,101,117,112,32,101,118,101,110,116,32,111,99,99,117,114,115,32,111,117,116,115,105,100,101,32,116,104,101,32,100,105,97,108,111,103,92,110,32,32,32,32,32,32,47,47,32,65,110,100,32,105,102,32,105,116,32,100,111,101,115,44,32,99,97,110,99,101,108,32,116,104,101,32,99,108,105,99,107,79,117,116,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,118,97,114,32,109,111,100,97,108,32,61,32,116,104,105,115,46,36,114,101,102,115,46,109,111,100,97,108,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,111,110,99,101,77,111,100,97,108,77,111,117,115,101,117,112,32,61,32,102,117,110,99,116,105,111,110,32,111,110,99,101,77,111,100,97,108,77,111,117,115,101,117,112,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,101,118,101,110,116,79,102,102,41,40,109,111,100,97,108,44,32,39,109,111,117,115,101,117,112,39,44,32,111,110,99,101,77,111,100,97,108,77,111,117,115,101,117,112,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,116,97,114,103,101,116,32,61,61,61,32,109,111,100,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,53,46,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,101,118,101,110,116,79,110,41,40,109,111,100,97,108,44,32,39,109,111,117,115,101,117,112,39,44,32,111,110,99,101,77,111,100,97,108,77,111,117,115,101,117,112,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,108,105,99,107,79,117,116,58,32,102,117,110,99,116,105,111,110,32,111,110,67,108,105,99,107,79,117,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,108,105,99,107,32,119,97,115,32,105,110,105,116,105,97,116,101,100,32,105,110,115,105,100,101,32,116,104,101,32,109,111,100,97,108,32,99,111,110,116,101,110,116,44,32,98,117,116,32,102,105,110,105,115,104,101,100,32,111,117,116,115,105,100,101,46,92,110,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,98,121,32,116,104,101,32,97,98,111,118,101,32,111,110,68,105,97,108,111,103,77,111,117,115,101,100,111,119,110,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,68,111,32,110,111,116,104,105,110,103,32,105,102,32,110,111,116,32,118,105,115,105,98,108,101,44,32,98,97,99,107,100,114,111,112,32,99,108,105,99,107,32,100,105,115,97,98,108,101,100,44,32,111,114,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,32,47,47,32,116,104,97,116,32,103,101,110,101,114,97,116,101,100,32,99,108,105,99,107,32,101,118,101,110,116,32,105,115,32,110,111,32,108,111,110,103,101,114,32,105,110,32,100,111,99,117,109,101,110,116,32,98,111,100,121,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,86,105,115,105,98,108,101,32,124,124,32,116,104,105,115,46,110,111,67,108,111,115,101,79,110,66,97,99,107,100,114,111,112,32,124,124,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,99,111,110,116,97,105,110,115,41,40,100,111,99,117,109,101,110,116,46,98,111,100,121,44,32,101,118,101,110,116,46,116,97,114,103,101,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,73,102,32,98,97,99,107,100,114,111,112,32,99,108,105,99,107,101,100,44,32,104,105,100,101,32,109,111,100,97,108,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,99,111,110,116,97,105,110,115,41,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,44,32,101,118,101,110,116,46,116,97,114,103,101,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,40,84,82,73,71,71,69,82,95,66,65,67,75,68,82,79,80,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,79,107,58,32,102,117,110,99,116,105,111,110,32,111,110,79,107,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,40,66,85,84,84,79,78,95,79,75,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,97,110,99,101,108,58,32,102,117,110,99,116,105,111,110,32,111,110,67,97,110,99,101,108,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,40,66,85,84,84,79,78,95,67,65,78,67,69,76,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,108,111,115,101,58,32,102,117,110,99,116,105,111,110,32,111,110,67,108,111,115,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,40,66,85,84,84,79,78,95,67,76,79,83,69,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,69,115,99,58,32,102,117,110,99,116,105,111,110,32,111,110,69,115,99,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,69,83,67,32,112,114,101,115,115,101,100,44,32,104,105,100,101,32,109,111,100,97,108,92,110,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,67,79,68,69,95,69,83,67,32,38,38,32,116,104,105,115,46,105,115,86,105,115,105,98,108,101,32,38,38,32,33,116,104,105,115,46,110,111,67,108,111,115,101,79,110,69,115,99,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,40,84,82,73,71,71,69,82,95,69,83,67,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,68,111,99,117,109,101,110,116,32,102,111,99,117,115,105,110,32,108,105,115,116,101,110,101,114,92,110,32,32,32,32,102,111,99,117,115,72,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,72,97,110,100,108,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,102,111,99,117,115,32,108,101,97,118,101,115,32,109,111,100,97,108,32,99,111,110,116,101,110,116,44,32,98,114,105,110,103,32,105,116,32,98,97,99,107,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,116,101,110,116,32,61,32,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,59,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,110,111,69,110,102,111,114,99,101,70,111,99,117,115,32,124,124,32,33,116,104,105,115,46,105,115,84,111,112,32,124,124,32,33,116,104,105,115,46,105,115,86,105,115,105,98,108,101,32,124,124,32,33,99,111,110,116,101,110,116,32,124,124,32,100,111,99,117,109,101,110,116,32,61,61,61,32,116,97,114,103,101,116,32,124,124,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,99,111,110,116,97,105,110,115,41,40,99,111,110,116,101,110,116,44,32,116,97,114,103,101,116,41,32,124,124,32,116,104,105,115,46,99,111,109,112,117,116,101,73,103,110,111,114,101,69,110,102,111,114,99,101,70,111,99,117,115,83,101,108,101,99,116,111,114,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,99,108,111,115,101,115,116,41,40,116,104,105,115,46,99,111,109,112,117,116,101,73,103,110,111,114,101,69,110,102,111,114,99,101,70,111,99,117,115,83,101,108,101,99,116,111,114,44,32,116,97,114,103,101,116,44,32,116,114,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,97,98,97,98,108,101,115,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,103,101,116,84,97,98,97,98,108,101,115,41,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,41,59,92,110,32,32,32,32,32,32,118,97,114,32,98,111,116,116,111,109,84,114,97,112,32,61,32,116,104,105,115,46,36,114,101,102,115,91,39,98,111,116,116,111,109,45,116,114,97,112,39,93,59,92,110,32,32,32,32,32,32,118,97,114,32,116,111,112,84,114,97,112,32,61,32,116,104,105,115,46,36,114,101,102,115,91,39,116,111,112,45,116,114,97,112,39,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,98,111,116,116,111,109,84,114,97,112,32,38,38,32,116,97,114,103,101,116,32,61,61,61,32,98,111,116,116,111,109,84,114,97,112,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,117,115,101,114,32,112,114,101,115,115,101,100,32,84,65,66,32,111,117,116,32,111,102,32,109,111,100,97,108,32,105,110,116,111,32,111,117,114,32,98,111,116,116,111,109,32,116,114,97,98,32,116,114,97,112,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,32,32,32,47,47,32,70,105,110,100,32,116,104,101,32,102,105,114,115,116,32,116,97,98,97,98,108,101,32,101,108,101,109,101,110,116,32,105,110,32,116,104,101,32,109,111,100,97,108,32,99,111,110,116,101,110,116,32,97,110,100,32,102,111,99,117,115,32,105,116,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,97,98,97,98,108,101,115,91,48,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,70,111,99,117,115,32,119,97,115,32,115,117,99,99,101,115,115,102,117,108,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,111,112,84,114,97,112,32,38,38,32,116,97,114,103,101,116,32,61,61,61,32,116,111,112,84,114,97,112,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,117,115,101,114,32,112,114,101,115,115,101,100,32,67,84,82,76,45,84,65,66,32,111,117,116,32,111,102,32,109,111,100,97,108,32,97,110,100,32,105,110,116,111,32,111,117,114,32,116,111,112,32,116,97,98,32,116,114,97,112,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,32,32,32,47,47,32,70,105,110,100,32,116,104,101,32,108,97,115,116,32,116,97,98,97,98,108,101,32,101,108,101,109,101,110,116,32,105,110,32,116,104,101,32,109,111,100,97,108,32,99,111,110,116,101,110,116,32,97,110,100,32,102,111,99,117,115,32,105,116,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,97,98,97,98,108,101,115,91,116,97,98,97,98,108,101,115,46,108,101,110,103,116,104,32,45,32,49,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,70,111,99,117,115,32,119,97,115,32,115,117,99,99,101,115,115,102,117,108,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,47,47,32,79,116,104,101,114,119,105,115,101,32,102,111,99,117,115,32,116,104,101,32,109,111,100,97,108,32,99,111,110,116,101,110,116,32,99,111,110,116,97,105,110,101,114,92,110,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,99,111,110,116,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,101,118,101,110,116,83,99,114,111,108,108,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,84,117,114,110,32,111,110,47,111,102,102,32,102,111,99,117,115,105,110,32,108,105,115,116,101,110,101,114,92,110,32,32,32,32,115,101,116,69,110,102,111,114,99,101,70,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,115,101,116,69,110,102,111,114,99,101,70,111,99,117,115,40,111,110,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,68,111,99,117,109,101,110,116,40,111,110,44,32,39,102,111,99,117,115,105,110,39,44,32,116,104,105,115,46,102,111,99,117,115,72,97,110,100,108,101,114,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,82,101,115,105,122,101,32,108,105,115,116,101,110,101,114,92,110,32,32,32,32,115,101,116,82,101,115,105,122,101,69,118,101,110,116,58,32,102,117,110,99,116,105,111,110,32,115,101,116,82,101,115,105,122,101,69,118,101,110,116,40,111,110,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,87,105,110,100,111,119,40,111,110,44,32,39,114,101,115,105,122,101,39,44,32,116,104,105,115,46,99,104,101,99,107,77,111,100,97,108,79,118,101,114,102,108,111,119,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,87,105,110,100,111,119,40,111,110,44,32,39,111,114,105,101,110,116,97,116,105,111,110,99,104,97,110,103,101,39,44,32,116,104,105,115,46,99,104,101,99,107,77,111,100,97,108,79,118,101,114,102,108,111,119,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,82,111,111,116,32,108,105,115,116,101,110,101,114,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,115,104,111,119,72,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,115,104,111,119,72,97,110,100,108,101,114,40,105,100,44,32,116,114,105,103,103,101,114,69,108,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,100,32,61,61,61,32,116,104,105,115,46,109,111,100,97,108,73,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,32,61,32,116,114,105,103,103,101,114,69,108,32,124,124,32,116,104,105,115,46,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,105,100,101,72,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,72,97,110,100,108,101,114,40,105,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,100,32,61,61,61,32,116,104,105,115,46,109,111,100,97,108,73,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,40,39,101,118,101,110,116,39,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,111,103,103,108,101,72,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,72,97,110,100,108,101,114,40,105,100,44,32,116,114,105,103,103,101,114,69,108,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,100,32,61,61,61,32,116,104,105,115,46,109,111,100,97,108,73,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,111,103,103,108,101,40,116,114,105,103,103,101,114,69,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,100,97,108,76,105,115,116,101,110,101,114,58,32,102,117,110,99,116,105,111,110,32,109,111,100,97,108,76,105,115,116,101,110,101,114,40,98,118,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,97,110,111,116,104,101,114,32,109,111,100,97,108,32,111,112,101,110,115,44,32,99,108,111,115,101,32,116,104,105,115,32,111,110,101,32,105,102,32,115,116,97,99,107,105,110,103,32,110,111,116,32,112,101,114,109,105,116,116,101,100,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,110,111,83,116,97,99,107,105,110,103,32,38,38,32,98,118,69,118,101,110,116,46,118,117,101,84,97,114,103,101,116,32,33,61,61,32,116,104,105,115,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,70,111,99,117,115,32,99,111,110,116,114,111,108,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,102,111,99,117,115,70,105,114,115,116,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,70,105,114,115,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,54,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,68,111,110,39,116,32,116,114,121,32,97,110,100,32,102,111,99,117,115,32,105,102,32,119,101,32,97,114,101,32,83,83,82,92,110,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,73,83,95,66,82,79,87,83,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,111,100,97,108,32,61,32,95,116,104,105,115,54,46,36,114,101,102,115,46,109,111,100,97,108,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,116,104,105,115,54,46,36,114,101,102,115,46,99,111,110,116,101,110,116,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,99,116,105,118,101,69,108,101,109,101,110,116,32,61,32,95,116,104,105,115,54,46,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,40,41,59,32,47,47,32,73,102,32,116,104,101,32,109,111,100,97,108,32,99,111,110,116,97,105,110,115,32,116,104,101,32,97,99,116,105,118,101,69,108,101,109,101,110,116,44,32,119,101,32,100,111,110,39,116,32,100,111,32,97,110,121,116,104,105,110,103,92,110,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,111,100,97,108,32,38,38,32,99,111,110,116,101,110,116,32,38,38,32,33,40,97,99,116,105,118,101,69,108,101,109,101,110,116,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,99,111,110,116,97,105,110,115,41,40,99,111,110,116,101,110,116,44,32,97,99,116,105,118,101,69,108,101,109,101,110,116,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,107,32,61,32,95,116,104,105,115,54,46,36,114,101,102,115,91,39,111,107,45,98,117,116,116,111,110,39,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,97,110,99,101,108,32,61,32,95,116,104,105,115,54,46,36,114,101,102,115,91,39,99,97,110,99,101,108,45,98,117,116,116,111,110,39,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,108,111,115,101,32,61,32,95,116,104,105,115,54,46,36,114,101,102,115,91,39,99,108,111,115,101,45,98,117,116,116,111,110,39,93,59,32,47,47,32,70,111,99,117,115,32,116,104,101,32,97,112,112,114,111,112,114,105,97,116,101,32,98,117,116,116,111,110,32,111,114,32,109,111,100,97,108,32,99,111,110,116,101,110,116,32,119,114,97,112,112,101,114,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,117,116,111,70,111,99,117,115,32,61,32,95,116,104,105,115,54,46,97,117,116,111,70,111,99,117,115,66,117,116,116,111,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,108,32,61,32,97,117,116,111,70,111,99,117,115,32,61,61,61,32,66,85,84,84,79,78,95,79,75,32,38,38,32,111,107,32,63,32,111,107,46,36,101,108,32,124,124,32,111,107,32,58,32,97,117,116,111,70,111,99,117,115,32,61,61,61,32,66,85,84,84,79,78,95,67,65,78,67,69,76,32,38,38,32,99,97,110,99,101,108,32,63,32,99,97,110,99,101,108,46,36,101,108,32,124,124,32,99,97,110,99,101,108,32,58,32,97,117,116,111,70,111,99,117,115,32,61,61,61,32,66,85,84,84,79,78,95,67,76,79,83,69,32,38,38,32,99,108,111,115,101,32,63,32,99,108,111,115,101,46,36,101,108,32,124,124,32,99,108,111,115,101,32,58,32,99,111,110,116,101,110,116,59,32,47,47,32,70,111,99,117,115,32,116,104,101,32,101,108,101,109,101,110,116,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,101,108,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,108,32,61,61,61,32,99,111,110,116,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,107,101,32,115,117,114,101,32,116,111,112,32,111,102,32,109,111,100,97,108,32,105,115,32,115,104,111,119,105,110,103,32,40,105,102,32,108,111,110,103,101,114,32,116,104,97,110,32,116,104,101,32,118,105,101,119,112,111,114,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,54,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,97,108,46,115,99,114,111,108,108,84,111,112,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,116,117,114,110,70,111,99,117,115,84,111,58,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,70,111,99,117,115,84,111,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,114,101,102,101,114,32,96,114,101,116,117,114,110,70,111,99,117,115,96,32,112,114,111,112,32,111,118,101,114,32,101,118,101,110,116,32,115,112,101,99,105,102,105,101,100,92,110,32,32,32,32,32,32,47,47,32,96,114,101,116,117,114,110,95,102,111,99,117,115,96,32,118,97,108,117,101,92,110,32,32,32,32,32,32,118,97,114,32,101,108,32,61,32,116,104,105,115,46,114,101,116,117,114,110,70,111,99,117,115,32,124,124,32,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,115,32,101,108,32,97,32,115,116,114,105,110,103,32,67,83,83,32,115,101,108,101,99,116,111,114,63,92,110,32,32,32,32,32,32,32,32,101,108,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,83,116,114,105,110,103,41,40,101,108,41,32,63,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,101,108,101,99,116,41,40,101,108,41,32,58,32,101,108,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,80,111,115,115,105,98,108,121,32,99,111,117,108,100,32,98,101,32,97,32,99,111,109,112,111,110,101,110,116,32,114,101,102,101,114,101,110,99,101,92,110,32,32,32,32,32,32,32,32,32,32,101,108,32,61,32,101,108,46,36,101,108,32,124,124,32,101,108,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,101,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,104,101,99,107,77,111,100,97,108,79,118,101,114,102,108,111,119,58,32,102,117,110,99,116,105,111,110,32,99,104,101,99,107,77,111,100,97,108,79,118,101,114,102,108,111,119,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,86,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,111,100,97,108,32,61,32,116,104,105,115,46,36,114,101,102,115,46,109,111,100,97,108,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,77,111,100,97,108,79,118,101,114,102,108,111,119,105,110,103,32,61,32,109,111,100,97,108,46,115,99,114,111,108,108,72,101,105,103,104,116,32,62,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,46,99,108,105,101,110,116,72,101,105,103,104,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,97,107,101,77,111,100,97,108,58,32,102,117,110,99,116,105,111,110,32,109,97,107,101,77,111,100,97,108,40,104,41,32,123,92,110,32,32,32,32,32,32,47,47,32,77,111,100,97,108,32,104,101,97,100,101,114,92,110,32,32,32,32,32,32,118,97,114,32,36,104,101,97,100,101,114,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,104,105,100,101,72,101,97,100,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,82,101,110,97,109,101,32,115,108,111,116,32,116,111,32,96,104,101,97,100,101,114,96,32,97,110,100,32,100,101,112,114,101,99,97,116,101,32,96,109,111,100,97,108,45,104,101,97,100,101,114,96,92,110,32,32,32,32,32,32,32,32,118,97,114,32,36,109,111,100,97,108,72,101,97,100,101,114,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,72,69,65,68,69,82,44,32,116,104,105,115,46,115,108,111,116,83,99,111,112,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,36,109,111,100,97,108,72,101,97,100,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,36,99,108,111,115,101,66,117,116,116,111,110,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,104,105,100,101,72,101,97,100,101,114,67,108,111,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,36,99,108,111,115,101,66,117,116,116,111,110,32,61,32,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,66,66,117,116,116,111,110,67,108,111,115,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,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,116,104,105,115,46,104,101,97,100,101,114,67,108,111,115,101,67,111,110,116,101,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,114,105,97,76,97,98,101,108,58,32,116,104,105,115,46,104,101,97,100,101,114,67,108,111,115,101,76,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,86,97,114,105,97,110,116,58,32,116,104,105,115,46,104,101,97,100,101,114,67,108,111,115,101,86,97,114,105,97,110,116,32,124,124,32,116,104,105,115,46,104,101,97,100,101,114,84,101,120,116,86,97,114,105,97,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,67,108,111,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,102,58,32,39,99,108,111,115,101,45,98,117,116,116,111,110,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,32,47,47,32,84,79,68,79,58,32,82,101,110,97,109,101,32,115,108,111,116,32,116,111,32,96,104,101,97,100,101,114,45,99,108,111,115,101,96,32,97,110,100,32,100,101,112,114,101,99,97,116,101,32,96,109,111,100,97,108,45,104,101,97,100,101,114,45,99,108,111,115,101,96,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,72,69,65,68,69,82,95,67,76,79,83,69,41,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,36,109,111,100,97,108,72,101,97,100,101,114,32,61,32,91,104,40,116,104,105,115,46,116,105,116,108,101,84,97,103,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,109,111,100,97,108,45,116,105,116,108,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,105,116,108,101,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,109,111,100,97,108,84,105,116,108,101,73,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,82,101,110,97,109,101,32,115,108,111,116,32,116,111,32,96,116,105,116,108,101,96,32,97,110,100,32,100,101,112,114,101,99,97,116,101,32,96,109,111,100,97,108,45,116,105,116,108,101,96,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,84,73,84,76,69,41,32,63,32,123,125,32,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,116,104,105,115,46,116,105,116,108,101,72,116,109,108,44,32,116,104,105,115,46,116,105,116,108,101,41,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,47,47,32,84,79,68,79,58,32,82,101,110,97,109,101,32,115,108,111,116,32,116,111,32,96,116,105,116,108,101,96,32,97,110,100,32,100,101,112,114,101,99,97,116,101,32,96,109,111,100,97,108,45,116,105,116,108,101,96,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,84,73,84,76,69,44,32,116,104,105,115,46,115,108,111,116,83,99,111,112,101,41,41,44,32,36,99,108,111,115,101,66,117,116,116,111,110,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,36,104,101,97,100,101,114,32,61,32,104,40,39,104,101,97,100,101,114,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,109,111,100,97,108,45,104,101,97,100,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,104,101,97,100,101,114,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,109,111,100,97,108,72,101,97,100,101,114,73,100,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,102,58,32,39,104,101,97,100,101,114,39,92,110,32,32,32,32,32,32,32,32,125,44,32,91,36,109,111,100,97,108,72,101,97,100,101,114,93,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,77,111,100,97,108,32,98,111,100,121,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,98,111,100,121,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,109,111,100,97,108,45,98,111,100,121,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,98,111,100,121,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,109,111,100,97,108,66,111,100,121,73,100,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,39,98,111,100,121,39,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,116,104,105,115,46,115,108,111,116,83,99,111,112,101,41,41,59,32,47,47,32,77,111,100,97,108,32,102,111,111,116,101,114,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,102,111,111,116,101,114,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,104,105,100,101,70,111,111,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,82,101,110,97,109,101,32,115,108,111,116,32,116,111,32,96,102,111,111,116,101,114,96,32,97,110,100,32,100,101,112,114,101,99,97,116,101,32,96,109,111,100,97,108,45,102,111,111,116,101,114,96,92,110,32,32,32,32,32,32,32,32,118,97,114,32,36,109,111,100,97,108,70,111,111,116,101,114,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,70,79,79,84,69,82,44,32,116,104,105,115,46,115,108,111,116,83,99,111,112,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,36,109,111,100,97,108,70,111,111,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,36,99,97,110,99,101,108,66,117,116,116,111,110,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,111,107,79,110,108,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,36,99,97,110,99,101,108,66,117,116,116,111,110,32,61,32,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,46,66,66,117,116,116,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,116,104,105,115,46,99,97,110,99,101,108,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,116,104,105,115,46,98,117,116,116,111,110,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,116,104,105,115,46,99,97,110,99,101,108,68,105,115,97,98,108,101,100,32,124,124,32,116,104,105,115,46,98,117,115,121,32,124,124,32,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,82,101,110,97,109,101,32,115,108,111,116,32,116,111,32,96,99,97,110,99,101,108,45,98,117,116,116,111,110,96,32,97,110,100,32,100,101,112,114,101,99,97,116,101,32,96,109,111,100,97,108,45,99,97,110,99,101,108,96,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,67,65,78,67,69,76,41,32,63,32,123,125,32,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,116,104,105,115,46,99,97,110,99,101,108,84,105,116,108,101,72,116,109,108,44,32,116,104,105,115,46,99,97,110,99,101,108,84,105,116,108,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,67,97,110,99,101,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,102,58,32,39,99,97,110,99,101,108,45,98,117,116,116,111,110,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,32,47,47,32,84,79,68,79,58,32,82,101,110,97,109,101,32,115,108,111,116,32,116,111,32,96,99,97,110,99,101,108,45,98,117,116,116,111,110,96,32,97,110,100,32,100,101,112,114,101,99,97,116,101,32,96,109,111,100,97,108,45,99,97,110,99,101,108,96,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,67,65,78,67,69,76,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,36,111,107,66,117,116,116,111,110,32,61,32,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,46,66,66,117,116,116,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,116,104,105,115,46,111,107,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,116,104,105,115,46,98,117,116,116,111,110,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,116,104,105,115,46,111,107,68,105,115,97,98,108,101,100,32,124,124,32,116,104,105,115,46,98,117,115,121,32,124,124,32,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,82,101,110,97,109,101,32,115,108,111,116,32,116,111,32,96,111,107,45,98,117,116,116,111,110,96,32,97,110,100,32,100,101,112,114,101,99,97,116,101,32,96,109,111,100,97,108,45,111,107,96,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,79,75,41,32,63,32,123,125,32,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,116,104,105,115,46,111,107,84,105,116,108,101,72,116,109,108,44,32,116,104,105,115,46,111,107,84,105,116,108,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,79,107,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,102,58,32,39,111,107,45,98,117,116,116,111,110,39,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,47,47,32,84,79,68,79,58,32,82,101,110,97,109,101,32,115,108,111,116,32,116,111,32,96,111,107,45,98,117,116,116,111,110,96,32,97,110,100,32,100,101,112,114,101,99,97,116,101,32,96,109,111,100,97,108,45,111,107,96,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,79,75,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,36,109,111,100,97,108,70,111,111,116,101,114,32,61,32,91,36,99,97,110,99,101,108,66,117,116,116,111,110,44,32,36,111,107,66,117,116,116,111,110,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,36,102,111,111,116,101,114,32,61,32,104,40,39,102,111,111,116,101,114,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,109,111,100,97,108,45,102,111,111,116,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,102,111,111,116,101,114,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,109,111,100,97,108,70,111,111,116,101,114,73,100,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,102,58,32,39,102,111,111,116,101,114,39,92,110,32,32,32,32,32,32,32,32,125,44,32,91,36,109,111,100,97,108,70,111,111,116,101,114,93,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,65,115,115,101,109,98,108,101,32,109,111,100,97,108,32,99,111,110,116,101,110,116,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,109,111,100,97,108,67,111,110,116,101,110,116,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,109,111,100,97,108,45,99,111,110,116,101,110,116,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,99,111,110,116,101,110,116,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,109,111,100,97,108,67,111,110,116,101,110,116,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,45,49,39,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,39,99,111,110,116,101,110,116,39,92,110,32,32,32,32,32,32,125,44,32,91,36,104,101,97,100,101,114,44,32,36,98,111,100,121,44,32,36,102,111,111,116,101,114,93,41,59,32,47,47,32,84,97,98,32,116,114,97,112,115,32,116,111,32,112,114,101,118,101,110,116,32,112,97,103,101,32,102,114,111,109,32,115,99,114,111,108,108,105,110,103,32,116,111,32,110,101,120,116,32,101,108,101,109,101,110,116,32,105,110,92,110,32,32,32,32,32,32,47,47,32,116,97,98,32,105,110,100,101,120,32,100,117,114,105,110,103,32,101,110,102,111,114,99,101,45,102,111,99,117,115,32,116,97,98,32,99,121,99,108,101,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,116,97,98,84,114,97,112,84,111,112,32,61,32,104,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,36,116,97,98,84,114,97,112,66,111,116,116,111,109,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,86,105,115,105,98,108,101,32,38,38,32,33,116,104,105,115,46,110,111,69,110,102,111,114,99,101,70,111,99,117,115,41,32,123,92,110,32,32,32,32,32,32,32,32,36,116,97,98,84,114,97,112,84,111,112,32,61,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,48,39,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,102,58,32,39,116,111,112,45,116,114,97,112,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,36,116,97,98,84,114,97,112,66,111,116,116,111,109,32,61,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,48,39,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,102,58,32,39,98,111,116,116,111,109,45,116,114,97,112,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,77,111,100,97,108,32,100,105,97,108,111,103,32,119,114,97,112,112,101,114,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,109,111,100,97,108,68,105,97,108,111,103,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,109,111,100,97,108,45,100,105,97,108,111,103,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,100,105,97,108,111,103,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,109,111,117,115,101,100,111,119,110,58,32,116,104,105,115,46,111,110,68,105,97,108,111,103,77,111,117,115,101,100,111,119,110,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,39,100,105,97,108,111,103,39,92,110,32,32,32,32,32,32,125,44,32,91,36,116,97,98,84,114,97,112,84,111,112,44,32,36,109,111,100,97,108,67,111,110,116,101,110,116,44,32,36,116,97,98,84,114,97,112,66,111,116,116,111,109,93,41,59,32,47,47,32,77,111,100,97,108,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,109,111,100,97,108,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,109,111,100,97,108,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,109,111,100,97,108,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,116,104,105,115,46,109,111,100,97,108,83,116,121,108,101,115,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,111,100,97,108,65,116,116,114,115,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,111,110,69,115,99,44,92,110,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,67,108,105,99,107,79,117,116,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,39,115,104,111,119,39,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,105,115,86,105,115,105,98,108,101,92,110,32,32,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,39,109,111,100,97,108,39,92,110,32,32,32,32,32,32,125,44,32,91,36,109,111,100,97,108,68,105,97,108,111,103,93,41,59,32,47,47,32,87,114,97,112,32,109,111,100,97,108,32,105,110,32,116,114,97,110,115,105,116,105,111,110,92,110,32,32,32,32,32,32,47,47,32,83,97,100,108,121,44,32,119,101,32,99,97,110,39,116,32,117,115,101,32,96,66,86,84,114,97,110,115,105,116,105,111,110,96,32,104,101,114,101,32,100,117,101,32,116,111,32,116,104,101,32,100,105,102,102,101,114,101,110,99,101,115,32,105,110,92,110,32,32,32,32,32,32,47,47,32,116,114,97,110,115,105,116,105,111,110,32,100,117,114,97,116,105,111,110,115,32,102,111,114,32,96,46,109,111,100,97,108,96,32,97,110,100,32,96,46,109,111,100,97,108,45,100,105,97,108,111,103,96,92,110,32,32,32,32,32,32,47,47,32,65,116,32,108,101,97,115,116,32,117,110,116,105,108,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,47,105,115,115,117,101,115,47,57,57,56,54,32,105,115,32,114,101,115,111,108,118,101,100,92,110,92,110,32,32,32,32,32,32,36,109,111,100,97,108,32,61,32,104,40,39,116,114,97,110,115,105,116,105,111,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,110,116,101,114,67,108,97,115,115,58,32,39,39,44,92,110,32,32,32,32,32,32,32,32,32,32,101,110,116,101,114,84,111,67,108,97,115,115,58,32,39,39,44,92,110,32,32,32,32,32,32,32,32,32,32,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,58,32,39,39,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,97,118,101,67,108,97,115,115,58,32,39,39,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,58,32,39,39,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,97,118,101,84,111,67,108,97,115,115,58,32,39,39,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,98,101,102,111,114,101,69,110,116,101,114,58,32,116,104,105,115,46,111,110,66,101,102,111,114,101,69,110,116,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,101,110,116,101,114,58,32,116,104,105,115,46,111,110,69,110,116,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,97,102,116,101,114,69,110,116,101,114,58,32,116,104,105,115,46,111,110,65,102,116,101,114,69,110,116,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,98,101,102,111,114,101,76,101,97,118,101,58,32,116,104,105,115,46,111,110,66,101,102,111,114,101,76,101,97,118,101,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,97,118,101,58,32,116,104,105,115,46,111,110,76,101,97,118,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,102,116,101,114,76,101,97,118,101,58,32,116,104,105,115,46,111,110,65,102,116,101,114,76,101,97,118,101,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,36,109,111,100,97,108,93,41,59,32,47,47,32,77,111,100,97,108,32,98,97,99,107,100,114,111,112,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,98,97,99,107,100,114,111,112,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,104,105,100,101,66,97,99,107,100,114,111,112,32,38,38,32,116,104,105,115,46,105,115,86,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,36,98,97,99,107,100,114,111,112,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,109,111,100,97,108,45,98,97,99,107,100,114,111,112,39,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,109,111,100,97,108,66,97,99,107,100,114,111,112,73,100,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,47,47,32,84,79,68,79,58,32,82,101,110,97,109,101,32,115,108,111,116,32,116,111,32,96,98,97,99,107,100,114,111,112,96,32,97,110,100,32,100,101,112,114,101,99,97,116,101,32,96,109,111,100,97,108,45,98,97,99,107,100,114,111,112,96,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,66,65,67,75,68,82,79,80,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,36,98,97,99,107,100,114,111,112,32,61,32,104,40,95,116,114,97,110,115,105,116,105,111,110,95,98,118,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,46,66,86,84,114,97,110,115,105,116,105,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,110,111,70,97,100,101,58,32,116,104,105,115,46,110,111,70,97,100,101,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,36,98,97,99,107,100,114,111,112,93,41,59,32,47,47,32,65,115,115,101,109,98,108,101,32,109,111,100,97,108,32,97,110,100,32,98,97,99,107,100,114,111,112,32,105,110,32,97,110,32,111,117,116,101,114,32,60,100,105,118,62,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,116,104,105,115,46,109,111,100,97,108,79,117,116,101,114,83,116,121,108,101,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,109,111,100,97,108,45,111,117,116,101,114,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,91,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,46,67,79,77,80,79,78,69,78,84,95,85,73,68,95,75,69,89,93,41,92,110,32,32,32,32,32,32,125,44,32,91,36,109,111,100,97,108,44,32,36,98,97,99,107,100,114,111,112,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,115,116,97,116,105,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,108,97,122,121,32,38,38,32,116,104,105,115,46,105,115,72,105,100,100,101,110,32,63,32,104,40,41,32,58,32,116,104,105,115,46,109,97,107,101,77,111,100,97,108,40,104,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,72,105,100,100,101,110,32,63,32,104,40,41,32,58,32,104,40,95,116,114,97,110,115,112,111,114,116,101,114,95,116,114,97,110,115,112,111,114,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,46,66,86,84,114,97,110,115,112,111,114,116,101,114,44,32,91,116,104,105,115,46,109,97,107,101,77,111,100,97,108,40,104,41,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,109,111,100,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,78,97,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,70,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,97,118,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,78,97,118,70,111,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,73,116,101,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,97,118,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,78,97,118,73,116,101,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,73,116,101,109,68,114,111,112,100,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,97,118,95,105,116,101,109,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,78,97,118,73,116,101,109,68,114,111,112,100,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,97,118,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,78,97,118,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,97,118,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,97,118,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,118,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,118,45,105,116,101,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,105,116,101,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,118,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,118,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,118,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,118,45,102,111,114,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,102,111,114,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,118,95,105,116,101,109,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,118,45,105,116,101,109,45,100,114,111,112,100,111,119,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,105,116,101,109,45,100,114,111,112,100,111,119,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,100,114,111,112,100,111,119,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,78,97,118,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,78,97,118,58,32,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,78,97,118,44,92,110,32,32,32,32,66,78,97,118,73,116,101,109,58,32,95,110,97,118,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,78,97,118,73,116,101,109,44,92,110,32,32,32,32,66,78,97,118,84,101,120,116,58,32,95,110,97,118,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,78,97,118,84,101,120,116,44,92,110,32,32,32,32,66,78,97,118,70,111,114,109,58,32,95,110,97,118,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,78,97,118,70,111,114,109,44,92,110,32,32,32,32,66,78,97,118,73,116,101,109,68,114,111,112,100,111,119,110,58,32,95,110,97,118,95,105,116,101,109,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,78,97,118,73,116,101,109,68,114,111,112,100,111,119,110,44,92,110,32,32,32,32,66,78,97,118,73,116,101,109,68,100,58,32,95,110,97,118,95,105,116,101,109,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,78,97,118,73,116,101,109,68,114,111,112,100,111,119,110,44,92,110,32,32,32,32,66,78,97,118,68,114,111,112,100,111,119,110,58,32,95,110,97,118,95,105,116,101,109,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,78,97,118,73,116,101,109,68,114,111,112,100,111,119,110,44,92,110,32,32,32,32,66,78,97,118,68,100,58,32,95,110,97,118,95,105,116,101,109,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,78,97,118,73,116,101,109,68,114,111,112,100,111,119,110,92,110,32,32,125,44,92,110,32,32,112,108,117,103,105,110,115,58,32,123,92,110,32,32,32,32,68,114,111,112,100,111,119,110,80,108,117,103,105,110,58,32,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,68,114,111,112,100,111,119,110,80,108,117,103,105,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,102,111,114,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,102,111,114,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,70,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,78,97,118,70,111,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,102,111,114,109,47,102,111,114,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,102,111,114,109,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,95,102,111,114,109,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,91,39,105,110,108,105,110,101,39,93,41,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,102,111,114,109,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,102,111,114,109,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,78,65,86,95,70,79,82,77,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,78,97,118,70,111,114,109,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,78,65,86,95,70,79,82,77,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,32,61,32,95,114,101,102,46,108,105,115,116,101,110,101,114,115,59,92,110,32,32,32,32,118,97,114,32,36,102,111,114,109,32,61,32,104,40,95,102,111,114,109,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,70,111,114,109,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,112,114,111,112,115,46,102,111,114,109,67,108,97,115,115,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,102,111,114,109,80,114,111,112,115,44,32,112,114,111,112,115,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,105,110,108,105,110,101,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,100,97,116,97,46,97,116,116,114,115,44,92,110,32,32,32,32,32,32,111,110,58,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,125,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,101,114,103,101,68,97,116,97,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,100,97,116,97,44,32,91,39,97,116,116,114,115,39,44,32,39,111,110,39,93,41,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,102,111,114,109,45,105,110,108,105,110,101,39,92,110,32,32,32,32,125,41,44,32,91,36,102,111,114,109,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,102,111,114,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,105,116,101,109,45,100,114,111,112,100,111,119,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,105,116,101,109,45,100,114,111,112,100,111,119,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,73,116,101,109,68,114,111,112,100,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,78,97,118,73,116,101,109,68,114,111,112,100,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,100,114,111,112,100,111,119,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,100,114,111,112,100,111,119,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,105,110,107,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,97,114,114,41,32,123,32,114,101,116,117,114,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,124,124,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,92,34,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,32,123,32,105,102,32,40,33,111,41,32,114,101,116,117,114,110,59,32,105,102,32,40,116,121,112,101,111,102,32,111,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,118,97,114,32,110,32,61,32,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,111,41,46,115,108,105,99,101,40,56,44,32,45,49,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,79,98,106,101,99,116,92,34,32,38,38,32,111,46,99,111,110,115,116,114,117,99,116,111,114,41,32,110,32,61,32,111,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,59,32,105,102,32,40,110,32,61,61,61,32,92,34,77,97,112,92,34,32,124,124,32,110,32,61,61,61,32,92,34,83,101,116,92,34,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,111,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,65,114,103,117,109,101,110,116,115,92,34,32,124,124,32,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,105,116,101,114,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,38,38,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,105,116,101,114,41,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,105,116,101,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,123,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,44,32,108,101,110,41,32,123,32,105,102,32,40,108,101,110,32,61,61,32,110,117,108,108,32,124,124,32,108,101,110,32,62,32,97,114,114,46,108,101,110,103,116,104,41,32,108,101,110,32,61,32,97,114,114,46,108,101,110,103,116,104,59,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,97,114,114,50,32,61,32,110,101,119,32,65,114,114,97,121,40,108,101,110,41,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,32,97,114,114,50,91,105,93,32,61,32,97,114,114,91,105,93,59,32,125,32,114,101,116,117,114,110,32,97,114,114,50,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,99,107,41,40,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,44,32,91,93,46,99,111,110,99,97,116,40,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,107,101,121,115,41,40,95,109,105,120,105,110,115,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,41,41,44,32,91,39,104,116,109,108,39,44,32,39,108,97,122,121,39,44,32,39,109,101,110,117,67,108,97,115,115,39,44,32,39,110,111,67,97,114,101,116,39,44,32,39,114,111,108,101,39,44,32,39,116,101,120,116,39,44,32,39,116,111,103,103,108,101,67,108,97,115,115,39,93,41,41,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,78,65,86,95,73,84,69,77,95,68,82,79,80,68,79,87,78,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,78,97,118,73,116,101,109,68,114,111,112,100,111,119,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,78,65,86,95,73,84,69,77,95,68,82,79,80,68,79,87,78,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,100,114,111,112,100,111,119,110,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,116,111,103,103,108,101,73,100,58,32,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,66,86,95,116,111,103,103,108,101,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,114,111,112,100,111,119,110,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,100,114,111,112,100,111,119,110,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,104,105,115,46,100,105,114,101,99,116,105,111,110,67,108,97,115,115,44,32,116,104,105,115,46,98,111,117,110,100,97,114,121,67,108,97,115,115,44,32,123,92,110,32,32,32,32,32,32,32,32,115,104,111,119,58,32,116,104,105,115,46,118,105,115,105,98,108,101,92,110,32,32,32,32,32,32,125,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,101,110,117,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,109,101,110,117,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,104,105,115,46,109,101,110,117,67,108,97,115,115,44,32,123,92,110,32,32,32,32,32,32,32,32,39,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,39,58,32,116,104,105,115,46,114,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,115,104,111,119,58,32,116,104,105,115,46,118,105,115,105,98,108,101,92,110,32,32,32,32,32,32,125,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,111,103,103,108,101,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,104,105,115,46,116,111,103,103,108,101,67,108,97,115,115,44,32,123,92,110,32,32,32,32,32,32,32,32,39,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,110,111,45,99,97,114,101,116,39,58,32,116,104,105,115,46,110,111,67,97,114,101,116,92,110,32,32,32,32,32,32,125,93,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,116,111,103,103,108,101,73,100,32,61,32,116,104,105,115,46,116,111,103,103,108,101,73,100,44,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,32,61,32,116,104,105,115,46,118,105,115,105,98,108,101,44,92,110,32,32,32,32,32,32,32,32,104,105,100,101,32,61,32,116,104,105,115,46,104,105,100,101,59,92,110,32,32,32,32,118,97,114,32,36,116,111,103,103,108,101,32,61,32,104,40,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,76,105,110,107,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,110,97,118,45,108,105,110,107,32,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,111,103,103,108,101,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,104,114,101,102,58,32,92,34,35,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,105,100,32,124,124,32,39,39,41,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,116,104,105,115,46,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,111,103,103,108,101,73,100,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,98,117,116,116,111,110,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,97,115,112,111,112,117,112,39,58,32,39,116,114,117,101,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,101,120,112,97,110,100,101,100,39,58,32,118,105,115,105,98,108,101,32,63,32,39,116,114,117,101,39,32,58,32,39,102,97,108,115,101,39,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,109,111,117,115,101,100,111,119,110,58,32,116,104,105,115,46,111,110,77,111,117,115,101,100,111,119,110,44,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,116,111,103,103,108,101,44,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,116,111,103,103,108,101,32,47,47,32,72,97,110,100,108,101,32,69,78,84,69,82,44,32,83,80,65,67,69,32,97,110,100,32,68,79,87,78,92,110,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,116,111,103,103,108,101,39,92,110,32,32,32,32,125,44,32,91,47,47,32,84,79,68,79,58,32,84,104,101,32,96,116,101,120,116,96,32,115,108,111,116,32,105,115,32,100,101,112,114,101,99,97,116,101,100,32,105,110,32,102,97,118,111,114,32,111,102,32,116,104,101,32,96,98,117,116,116,111,110,45,99,111,110,116,101,110,116,96,32,115,108,111,116,92,110,32,32,32,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,91,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,83,76,79,84,95,78,65,77,69,95,66,85,84,84,79,78,95,67,79,78,84,69,78,84,44,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,83,76,79,84,95,78,65,77,69,95,84,69,88,84,93,41,32,124,124,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,116,104,105,115,46,104,116,109,108,44,32,116,104,105,115,46,116,101,120,116,41,92,110,32,32,32,32,125,41,93,41,59,92,110,32,32,32,32,118,97,114,32,36,109,101,110,117,32,61,32,104,40,39,117,108,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,100,114,111,112,100,111,119,110,45,109,101,110,117,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,109,101,110,117,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,45,49,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,39,58,32,116,111,103,103,108,101,73,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,111,110,75,101,121,100,111,119,110,32,47,47,32,72,97,110,100,108,101,32,85,80,44,32,68,79,87,78,32,97,110,100,32,69,83,67,92,110,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,109,101,110,117,39,92,110,32,32,32,32,125,44,32,33,116,104,105,115,46,108,97,122,121,32,124,124,32,118,105,115,105,98,108,101,32,63,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,123,92,110,32,32,32,32,32,32,104,105,100,101,58,32,104,105,100,101,92,110,32,32,32,32,125,41,32,58,32,91,104,40,41,93,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,110,97,118,45,105,116,101,109,32,98,45,110,97,118,45,100,114,111,112,100,111,119,110,32,100,114,111,112,100,111,119,110,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,100,114,111,112,100,111,119,110,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,116,111,103,103,108,101,44,32,36,109,101,110,117,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,105,116,101,109,45,100,114,111,112,100,111,119,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,105,116,101,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,105,116,101,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,73,116,101,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,78,97,118,73,116,101,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,105,110,107,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,108,105,110,107,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,91,39,101,118,101,110,116,39,44,32,39,114,111,117,116,101,114,84,97,103,39,93,41,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,108,105,110,107,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,108,105,110,107,65,116,116,114,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,44,32,123,125,41,44,92,110,32,32,108,105,110,107,67,108,97,115,115,101,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,78,65,86,95,73,84,69,77,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,78,97,118,73,116,101,109,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,78,65,86,95,73,84,69,77,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,32,61,32,95,114,101,102,46,108,105,115,116,101,110,101,114,115,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,101,114,103,101,68,97,116,97,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,100,97,116,97,44,32,91,39,111,110,39,93,41,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,110,97,118,45,105,116,101,109,39,92,110,32,32,32,32,125,41,44,32,91,104,40,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,76,105,110,107,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,110,97,118,45,108,105,110,107,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,112,114,111,112,115,46,108,105,110,107,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,112,114,111,112,115,46,108,105,110,107,65,116,116,114,115,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,108,105,110,107,80,114,111,112,115,44,32,112,114,111,112,115,41,44,92,110,32,32,32,32,32,32,111,110,58,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,125,44,32,99,104,105,108,100,114,101,110,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,105,116,101,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,116,101,120,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,116,101,120,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,78,97,118,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,125,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,78,97,118,84,101,120,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,78,65,86,95,84,69,88,84,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,110,97,118,98,97,114,45,116,101,120,116,39,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,116,101,120,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,78,97,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,92,110,118,97,114,32,99,111,109,112,117,116,101,74,117,115,116,105,102,121,67,111,110,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,74,117,115,116,105,102,121,67,111,110,116,101,110,116,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,108,117,101,32,61,32,118,97,108,117,101,32,61,61,61,32,39,108,101,102,116,39,32,63,32,39,115,116,97,114,116,39,32,58,32,118,97,108,117,101,32,61,61,61,32,39,114,105,103,104,116,39,32,63,32,39,101,110,100,39,32,58,32,118,97,108,117,101,59,92,110,32,32,114,101,116,117,114,110,32,92,34,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,92,34,46,99,111,110,99,97,116,40,118,97,108,117,101,41,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,108,105,103,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,83,101,116,32,116,111,32,96,116,114,117,101,96,32,105,102,32,112,108,97,99,105,110,103,32,105,110,32,97,32,99,97,114,100,32,104,101,97,100,101,114,92,110,32,32,99,97,114,100,72,101,97,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,102,105,108,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,106,117,115,116,105,102,105,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,112,105,108,108,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,109,97,108,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,98,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,117,108,39,41,44,92,110,32,32,118,101,114,116,105,99,97,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,78,65,86,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,78,97,118,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,78,65,86,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,95,99,108,97,115,115,59,92,110,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,116,97,98,115,32,61,32,112,114,111,112,115,46,116,97,98,115,44,92,110,32,32,32,32,32,32,32,32,112,105,108,108,115,32,61,32,112,114,111,112,115,46,112,105,108,108,115,44,92,110,32,32,32,32,32,32,32,32,118,101,114,116,105,99,97,108,32,61,32,112,114,111,112,115,46,118,101,114,116,105,99,97,108,44,92,110,32,32,32,32,32,32,32,32,97,108,105,103,110,32,61,32,112,114,111,112,115,46,97,108,105,103,110,44,92,110,32,32,32,32,32,32,32,32,99,97,114,100,72,101,97,100,101,114,32,61,32,112,114,111,112,115,46,99,97,114,100,72,101,97,100,101,114,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,110,97,118,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,40,95,99,108,97,115,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,39,110,97,118,45,116,97,98,115,39,58,32,116,97,98,115,44,92,110,32,32,32,32,32,32,32,32,39,110,97,118,45,112,105,108,108,115,39,58,32,112,105,108,108,115,32,38,38,32,33,116,97,98,115,44,92,110,32,32,32,32,32,32,32,32,39,99,97,114,100,45,104,101,97,100,101,114,45,116,97,98,115,39,58,32,33,118,101,114,116,105,99,97,108,32,38,38,32,99,97,114,100,72,101,97,100,101,114,32,38,38,32,116,97,98,115,44,92,110,32,32,32,32,32,32,32,32,39,99,97,114,100,45,104,101,97,100,101,114,45,112,105,108,108,115,39,58,32,33,118,101,114,116,105,99,97,108,32,38,38,32,99,97,114,100,72,101,97,100,101,114,32,38,38,32,112,105,108,108,115,32,38,38,32,33,116,97,98,115,44,92,110,32,32,32,32,32,32,32,32,39,102,108,101,120,45,99,111,108,117,109,110,39,58,32,118,101,114,116,105,99,97,108,44,92,110,32,32,32,32,32,32,32,32,39,110,97,118,45,102,105,108,108,39,58,32,33,118,101,114,116,105,99,97,108,32,38,38,32,112,114,111,112,115,46,102,105,108,108,44,92,110,32,32,32,32,32,32,32,32,39,110,97,118,45,106,117,115,116,105,102,105,101,100,39,58,32,33,118,101,114,116,105,99,97,108,32,38,38,32,112,114,111,112,115,46,106,117,115,116,105,102,105,101,100,92,110,32,32,32,32,32,32,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,99,111,109,112,117,116,101,74,117,115,116,105,102,121,67,111,110,116,101,110,116,40,97,108,105,103,110,41,44,32,33,118,101,114,116,105,99,97,108,32,38,38,32,97,108,105,103,110,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,115,109,97,108,108,92,34,44,32,112,114,111,112,115,46,115,109,97,108,108,41,44,32,95,99,108,97,115,115,41,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,98,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,97,118,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,78,97,118,98,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,98,97,114,66,114,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,97,118,98,97,114,95,98,114,97,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,78,97,118,98,97,114,66,114,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,98,97,114,78,97,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,97,118,98,97,114,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,78,97,118,98,97,114,78,97,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,98,97,114,84,111,103,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,97,118,98,97,114,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,78,97,118,98,97,114,84,111,103,103,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,97,118,98,97,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,97,118,98,97,114,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,118,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,118,98,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,118,98,97,114,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,118,98,97,114,45,110,97,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,110,97,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,118,98,97,114,95,98,114,97,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,118,98,97,114,45,98,114,97,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,98,114,97,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,118,98,97,114,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,118,98,97,114,45,116,111,103,103,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,116,111,103,103,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,97,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,108,97,112,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,108,97,112,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,100,114,111,112,100,111,119,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,78,97,118,98,97,114,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,78,97,118,98,97,114,58,32,95,110,97,118,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,78,97,118,98,97,114,44,92,110,32,32,32,32,66,78,97,118,98,97,114,78,97,118,58,32,95,110,97,118,98,97,114,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,78,97,118,98,97,114,78,97,118,44,92,110,32,32,32,32,66,78,97,118,98,97,114,66,114,97,110,100,58,32,95,110,97,118,98,97,114,95,98,114,97,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,78,97,118,98,97,114,66,114,97,110,100,44,92,110,32,32,32,32,66,78,97,118,98,97,114,84,111,103,103,108,101,58,32,95,110,97,118,98,97,114,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,78,97,118,98,97,114,84,111,103,103,108,101,44,92,110,32,32,32,32,66,78,97,118,84,111,103,103,108,101,58,32,95,110,97,118,98,97,114,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,78,97,118,98,97,114,84,111,103,103,108,101,92,110,32,32,125,44,92,110,32,32,112,108,117,103,105,110,115,58,32,123,92,110,32,32,32,32,78,97,118,80,108,117,103,105,110,58,32,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,97,118,80,108,117,103,105,110,44,92,110,32,32,32,32,67,111,108,108,97,112,115,101,80,108,117,103,105,110,58,32,95,99,111,108,108,97,112,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,67,111,108,108,97,112,115,101,80,108,117,103,105,110,44,92,110,32,32,32,32,68,114,111,112,100,111,119,110,80,108,117,103,105,110,58,32,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,68,114,111,112,100,111,119,110,80,108,117,103,105,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,98,114,97,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,98,114,97,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,98,97,114,66,114,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,78,97,118,98,97,114,66,114,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,105,110,107,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,108,105,110,107,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,91,39,101,118,101,110,116,39,44,32,39,114,111,117,116,101,114,84,97,103,39,93,41,59,92,110,108,105,110,107,80,114,111,112,115,46,104,114,101,102,46,100,101,102,97,117,108,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,108,105,110,107,80,114,111,112,115,46,116,111,46,100,101,102,97,117,108,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,108,105,110,107,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,78,65,86,66,65,82,95,66,82,65,78,68,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,78,97,118,98,97,114,66,114,97,110,100,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,78,65,86,66,65,82,95,66,82,65,78,68,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,105,115,76,105,110,107,32,61,32,112,114,111,112,115,46,116,111,32,124,124,32,112,114,111,112,115,46,104,114,101,102,59,92,110,32,32,32,32,118,97,114,32,116,97,103,32,61,32,105,115,76,105,110,107,32,63,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,76,105,110,107,32,58,32,112,114,111,112,115,46,116,97,103,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,110,97,118,98,97,114,45,98,114,97,110,100,39,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,105,115,76,105,110,107,32,63,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,108,105,110,107,80,114,111,112,115,44,32,112,114,111,112,115,41,32,58,32,123,125,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,98,114,97,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,110,97,118,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,110,97,118,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,98,97,114,78,97,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,78,97,118,98,97,114,78,97,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,118,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,97,118,47,110,97,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,92,110,118,97,114,32,99,111,109,112,117,116,101,74,117,115,116,105,102,121,67,111,110,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,74,117,115,116,105,102,121,67,111,110,116,101,110,116,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,108,117,101,32,61,32,118,97,108,117,101,32,61,61,61,32,39,108,101,102,116,39,32,63,32,39,115,116,97,114,116,39,32,58,32,118,97,108,117,101,32,61,61,61,32,39,114,105,103,104,116,39,32,63,32,39,101,110,100,39,32,58,32,118,97,108,117,101,59,92,110,32,32,114,101,116,117,114,110,32,92,34,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,92,34,46,99,111,110,99,97,116,40,118,97,108,117,101,41,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,99,107,41,40,95,110,97,118,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,44,32,91,39,116,97,103,39,44,32,39,102,105,108,108,39,44,32,39,106,117,115,116,105,102,105,101,100,39,44,32,39,97,108,105,103,110,39,44,32,39,115,109,97,108,108,39,93,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,78,65,86,66,65,82,95,78,65,86,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,78,97,118,98,97,114,78,97,118,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,78,65,86,66,65,82,95,78,65,86,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,95,99,108,97,115,115,59,92,110,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,97,108,105,103,110,32,61,32,112,114,111,112,115,46,97,108,105,103,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,110,97,118,98,97,114,45,110,97,118,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,40,95,99,108,97,115,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,39,110,97,118,45,102,105,108,108,39,58,32,112,114,111,112,115,46,102,105,108,108,44,92,110,32,32,32,32,32,32,32,32,39,110,97,118,45,106,117,115,116,105,102,105,101,100,39,58,32,112,114,111,112,115,46,106,117,115,116,105,102,105,101,100,92,110,32,32,32,32,32,32,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,99,111,109,112,117,116,101,74,117,115,116,105,102,121,67,111,110,116,101,110,116,40,97,108,105,103,110,41,44,32,97,108,105,103,110,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,115,109,97,108,108,92,34,44,32,112,114,111,112,115,46,115,109,97,108,108,41,44,32,95,99,108,97,115,115,41,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,110,97,118,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,116,111,103,103,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,116,111,103,103,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,98,97,114,84,111,103,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,78,97,118,98,97,114,84,111,103,103,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,103,103,108,101,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,47,116,111,103,103,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,47,116,111,103,103,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,67,76,65,83,83,95,78,65,77,69,32,61,32,39,110,97,118,98,97,114,45,116,111,103,103,108,101,114,39,59,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,84,65,84,69,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,32,39,115,116,97,116,101,39,41,59,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,89,78,67,95,83,84,65,84,69,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,32,39,115,121,110,99,45,115,116,97,116,101,39,41,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,108,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,84,111,103,103,108,101,32,110,97,118,105,103,97,116,105,111,110,39,41,44,92,110,32,32,116,97,114,103,101,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,44,32,117,110,100,101,102,105,110,101,100,44,32,116,114,117,101,41,32,47,47,32,82,101,113,117,105,114,101,100,92,110,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,78,65,86,66,65,82,95,84,79,71,71,76,69,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,78,97,118,98,97,114,84,111,103,103,108,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,78,65,86,66,65,82,95,84,79,71,71,76,69,44,92,110,32,32,100,105,114,101,99,116,105,118,101,115,58,32,123,92,110,32,32,32,32,86,66,84,111,103,103,108,101,58,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,103,103,108,101,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,86,66,84,111,103,103,108,101,92,110,32,32,125,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,108,105,115,116,101,110,79,110,82,111,111,116,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,116,111,103,103,108,101,83,116,97,116,101,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,84,65,84,69,44,32,116,104,105,115,46,104,97,110,100,108,101,83,116,97,116,101,69,118,116,41,59,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,89,78,67,95,83,84,65,84,69,44,32,116,104,105,115,46,104,97,110,100,108,101,83,116,97,116,101,69,118,116,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,111,110,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,111,110,67,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,69,109,105,116,32,99,111,117,114,116,101,115,121,32,96,99,108,105,99,107,96,32,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,83,116,97,116,101,69,118,116,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,83,116,97,116,101,69,118,116,40,105,100,44,32,115,116,97,116,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,108,105,115,116,101,110,32,102,111,114,32,115,116,97,116,101,32,101,118,101,110,116,115,32,115,111,32,116,104,97,116,32,119,101,32,99,97,110,32,112,97,115,115,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,98,111,111,108,101,97,110,32,101,120,112,97,110,100,101,100,32,115,116,97,116,101,32,116,111,32,116,104,101,32,100,101,102,97,117,108,116,32,115,99,111,112,101,100,32,115,108,111,116,92,110,32,32,32,32,32,32,105,102,32,40,105,100,32,61,61,61,32,116,104,105,115,46,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,111,103,103,108,101,83,116,97,116,101,32,61,32,115,116,97,116,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,98,117,116,116,111,110,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,67,76,65,83,83,95,78,65,77,69,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,39,86,66,84,111,103,103,108,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,116,97,114,103,101,116,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,116,121,112,101,58,32,39,98,117,116,116,111,110,39,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,116,104,105,115,46,108,97,98,101,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,67,108,105,99,107,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,123,92,110,32,32,32,32,32,32,101,120,112,97,110,100,101,100,58,32,116,104,105,115,46,116,111,103,103,108,101,83,116,97,116,101,92,110,32,32,32,32,125,41,32,124,124,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,92,34,46,99,111,110,99,97,116,40,67,76,65,83,83,95,78,65,77,69,44,32,92,34,45,105,99,111,110,92,34,41,92,110,32,32,32,32,125,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,116,111,103,103,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,98,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,78,97,118,98,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,99,111,110,102,105,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,102,105,120,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,112,114,105,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,116,105,99,107,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,110,97,118,39,41,44,92,110,32,32,116,111,103,103,108,101,97,98,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,44,92,110,32,32,116,121,112,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,108,105,103,104,116,39,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,78,65,86,66,65,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,78,97,118,98,97,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,78,65,86,66,65,82,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,118,105,100,101,58,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,98,118,78,97,118,98,97,114,58,32,116,104,105,115,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,98,114,101,97,107,112,111,105,110,116,67,108,97,115,115,58,32,102,117,110,99,116,105,111,110,32,98,114,101,97,107,112,111,105,110,116,67,108,97,115,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,111,103,103,108,101,97,98,108,101,32,61,32,116,104,105,115,46,116,111,103,103,108,101,97,98,108,101,59,92,110,32,32,32,32,32,32,118,97,114,32,120,115,32,61,32,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,103,101,116,66,114,101,97,107,112,111,105,110,116,115,41,40,41,91,48,93,59,92,110,32,32,32,32,32,32,118,97,114,32,98,114,101,97,107,112,111,105,110,116,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,111,103,103,108,101,97,98,108,101,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,83,116,114,105,110,103,41,40,116,111,103,103,108,101,97,98,108,101,41,32,38,38,32,116,111,103,103,108,101,97,98,108,101,32,33,61,61,32,120,115,41,32,123,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,112,111,105,110,116,32,61,32,92,34,110,97,118,98,97,114,45,101,120,112,97,110,100,45,92,34,46,99,111,110,99,97,116,40,116,111,103,103,108,101,97,98,108,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,111,103,103,108,101,97,98,108,101,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,112,111,105,110,116,32,61,32,39,110,97,118,98,97,114,45,101,120,112,97,110,100,39,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,114,101,97,107,112,111,105,110,116,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,114,101,102,59,92,110,92,110,32,32,32,32,118,97,114,32,116,97,103,32,61,32,116,104,105,115,46,116,97,103,44,92,110,32,32,32,32,32,32,32,32,116,121,112,101,32,61,32,116,104,105,115,46,116,121,112,101,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,102,105,120,101,100,32,61,32,116,104,105,115,46,102,105,120,101,100,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,97,103,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,110,97,118,98,97,114,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,40,95,114,101,102,32,61,32,123,92,110,32,32,32,32,32,32,32,32,39,100,45,112,114,105,110,116,39,58,32,116,104,105,115,46,112,114,105,110,116,44,92,110,32,32,32,32,32,32,32,32,39,115,116,105,99,107,121,45,116,111,112,39,58,32,116,104,105,115,46,115,116,105,99,107,121,92,110,32,32,32,32,32,32,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,110,97,118,98,97,114,45,92,34,46,99,111,110,99,97,116,40,116,121,112,101,41,44,32,116,121,112,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,98,103,45,92,34,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,44,32,118,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,102,105,120,101,100,45,92,34,46,99,111,110,99,97,116,40,102,105,120,101,100,41,44,32,102,105,120,101,100,41,44,32,95,114,101,102,41,44,32,116,104,105,115,46,98,114,101,97,107,112,111,105,110,116,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,84,97,103,41,40,116,97,103,44,32,39,110,97,118,39,41,32,63,32,110,117,108,108,32,58,32,39,110,97,118,105,103,97,116,105,111,110,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,111,118,101,114,108,97,121,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,111,118,101,114,108,97,121,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,79,118,101,114,108,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,111,118,101,114,108,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,79,118,101,114,108,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,79,118,101,114,108,97,121,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,79,118,101,114,108,97,121,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,118,101,114,108,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,118,101,114,108,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,111,118,101,114,108,97,121,47,111,118,101,114,108,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,79,118,101,114,108,97,121,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,79,118,101,114,108,97,121,58,32,95,111,118,101,114,108,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,79,118,101,114,108,97,121,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,111,118,101,114,108,97,121,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,111,118,101,114,108,97,121,47,111,118,101,114,108,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,111,118,101,114,108,97,121,47,111,118,101,114,108,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,79,118,101,114,108,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,79,118,101,114,108,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,112,105,110,110,101,114,95,115,112,105,110,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,115,112,105,110,110,101,114,47,115,112,105,110,110,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,112,105,110,110,101,114,47,115,112,105,110,110,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,105,116,105,111,110,95,98,118,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,80,79,83,73,84,73,79,78,95,67,79,86,69,82,32,61,32,123,92,110,32,32,116,111,112,58,32,48,44,92,110,32,32,108,101,102,116,58,32,48,44,92,110,32,32,98,111,116,116,111,109,58,32,48,44,92,110,32,32,114,105,103,104,116,58,32,48,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,47,47,32,65,108,116,101,114,110,97,116,105,118,101,32,116,111,32,118,97,114,105,97,110,116,44,32,97,108,108,111,119,105,110,103,32,97,32,115,112,101,99,105,102,105,99,92,110,32,32,47,47,32,67,83,83,32,99,111,108,111,114,32,116,111,32,98,101,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,111,118,101,114,108,97,121,92,110,32,32,98,103,67,111,108,111,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,98,108,117,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,50,112,120,39,41,44,92,110,32,32,102,105,120,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,67,101,110,116,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,70,97,100,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,73,102,32,96,116,114,117,101,44,32,100,111,101,115,32,110,111,116,32,114,101,110,100,101,114,32,116,104,101,32,100,101,102,97,117,108,116,32,115,108,111,116,92,110,32,32,47,47,32,97,110,100,32,115,119,105,116,99,104,101,115,32,116,111,32,97,98,115,111,108,117,116,101,32,112,111,115,105,116,105,111,110,105,110,103,92,110,32,32,110,111,87,114,97,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,111,112,97,99,105,116,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,48,46,56,53,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,110,117,109,98,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,70,108,111,97,116,41,40,118,97,108,117,101,44,32,48,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,117,109,98,101,114,32,62,61,32,48,32,38,38,32,110,117,109,98,101,114,32,60,61,32,49,59,92,110,32,32,125,41,44,92,110,32,32,111,118,101,114,108,97,121,84,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,44,92,110,32,32,114,111,117,110,100,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,44,92,110,32,32,115,104,111,119,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,112,105,110,110,101,114,83,109,97,108,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,112,105,110,110,101,114,84,121,112,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,98,111,114,100,101,114,39,41,44,92,110,32,32,115,112,105,110,110,101,114,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,108,105,103,104,116,39,41,44,92,110,32,32,119,114,97,112,84,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,44,92,110,32,32,122,73,110,100,101,120,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,49,48,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,79,86,69,82,76,65,89,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,79,118,101,114,108,97,121,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,79,86,69,82,76,65,89,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,82,111,117,110,100,101,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,82,111,117,110,100,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,111,117,110,100,101,100,32,61,32,116,104,105,115,46,114,111,117,110,100,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,111,117,110,100,101,100,32,61,61,61,32,116,114,117,101,32,124,124,32,114,111,117,110,100,101,100,32,61,61,61,32,39,39,32,63,32,39,114,111,117,110,100,101,100,39,32,58,32,33,114,111,117,110,100,101,100,32,63,32,39,39,32,58,32,92,34,114,111,117,110,100,101,100,45,92,34,46,99,111,110,99,97,116,40,114,111,117,110,100,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,118,97,114,105,97,110,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,114,105,97,110,116,32,38,38,32,33,116,104,105,115,46,98,103,67,111,108,111,114,32,63,32,92,34,98,103,45,92,34,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,32,58,32,39,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,108,111,116,83,99,111,112,101,58,32,102,117,110,99,116,105,111,110,32,115,108,111,116,83,99,111,112,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,115,112,105,110,110,101,114,84,121,112,101,58,32,116,104,105,115,46,115,112,105,110,110,101,114,84,121,112,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,115,112,105,110,110,101,114,86,97,114,105,97,110,116,58,32,116,104,105,115,46,115,112,105,110,110,101,114,86,97,114,105,97,110,116,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,115,112,105,110,110,101,114,83,109,97,108,108,58,32,116,104,105,115,46,115,112,105,110,110,101,114,83,109,97,108,108,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,100,101,102,97,117,108,116,79,118,101,114,108,97,121,70,110,58,32,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,79,118,101,114,108,97,121,70,110,40,95,114,101,102,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,112,105,110,110,101,114,84,121,112,101,32,61,32,95,114,101,102,46,115,112,105,110,110,101,114,84,121,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,115,112,105,110,110,101,114,86,97,114,105,97,110,116,32,61,32,95,114,101,102,46,115,112,105,110,110,101,114,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,115,112,105,110,110,101,114,83,109,97,108,108,32,61,32,95,114,101,102,46,115,112,105,110,110,101,114,83,109,97,108,108,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,95,115,112,105,110,110,101,114,95,115,112,105,110,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,83,112,105,110,110,101,114,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,58,32,115,112,105,110,110,101,114,84,121,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,115,112,105,110,110,101,114,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,115,109,97,108,108,58,32,115,112,105,110,110,101,114,83,109,97,108,108,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,115,104,111,119,32,61,32,116,104,105,115,46,115,104,111,119,44,92,110,32,32,32,32,32,32,32,32,102,105,120,101,100,32,61,32,116,104,105,115,46,102,105,120,101,100,44,92,110,32,32,32,32,32,32,32,32,110,111,70,97,100,101,32,61,32,116,104,105,115,46,110,111,70,97,100,101,44,92,110,32,32,32,32,32,32,32,32,110,111,87,114,97,112,32,61,32,116,104,105,115,46,110,111,87,114,97,112,44,92,110,32,32,32,32,32,32,32,32,115,108,111,116,83,99,111,112,101,32,61,32,116,104,105,115,46,115,108,111,116,83,99,111,112,101,59,92,110,32,32,32,32,118,97,114,32,36,111,118,101,114,108,97,121,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,115,104,111,119,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,98,97,99,107,103,114,111,117,110,100,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,112,111,115,105,116,105,111,110,45,97,98,115,111,108,117,116,101,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,116,104,105,115,46,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,82,111,117,110,100,101,100,93,44,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,80,79,83,73,84,73,79,78,95,67,79,86,69,82,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,111,112,97,99,105,116,121,58,32,116,104,105,115,46,111,112,97,99,105,116,121,44,92,110,32,32,32,32,32,32,32,32,32,32,98,97,99,107,103,114,111,117,110,100,67,111,108,111,114,58,32,116,104,105,115,46,98,103,67,111,108,111,114,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,98,97,99,107,100,114,111,112,70,105,108,116,101,114,58,32,116,104,105,115,46,98,108,117,114,32,63,32,92,34,98,108,117,114,40,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,98,108,117,114,44,32,92,34,41,92,34,41,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,112,111,115,105,116,105,111,110,45,97,98,115,111,108,117,116,101,39,44,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,116,104,105,115,46,110,111,67,101,110,116,101,114,32,63,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,80,79,83,73,84,73,79,78,95,67,79,86,69,82,41,32,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,111,112,58,32,39,53,48,37,39,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,102,116,58,32,39,53,48,37,39,44,92,110,32,32,32,32,32,32,32,32,32,32,116,114,97,110,115,102,111,114,109,58,32,39,116,114,97,110,115,108,97,116,101,88,40,45,53,48,37,41,32,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,39,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,83,76,79,84,95,78,65,77,69,95,79,86,69,82,76,65,89,44,32,115,108,111,116,83,99,111,112,101,41,32,124,124,32,116,104,105,115,46,100,101,102,97,117,108,116,79,118,101,114,108,97,121,70,110,40,115,108,111,116,83,99,111,112,101,41,93,41,59,92,110,32,32,32,32,32,32,36,111,118,101,114,108,97,121,32,61,32,104,40,116,104,105,115,46,111,118,101,114,108,97,121,84,97,103,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,111,118,101,114,108,97,121,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,112,111,115,105,116,105,111,110,45,97,98,115,111,108,117,116,101,39,58,32,33,110,111,87,114,97,112,32,124,124,32,110,111,87,114,97,112,32,38,38,32,33,102,105,120,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,39,112,111,115,105,116,105,111,110,45,102,105,120,101,100,39,58,32,110,111,87,114,97,112,32,38,38,32,102,105,120,101,100,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,80,79,83,73,84,73,79,78,95,67,79,86,69,82,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,122,73,110,100,101,120,58,32,116,104,105,115,46,122,73,110,100,101,120,32,124,124,32,49,48,92,110,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,111,118,101,114,108,97,121,39,92,110,32,32,32,32,32,32,125,44,32,91,36,98,97,99,107,103,114,111,117,110,100,44,32,36,99,111,110,116,101,110,116,93,41,59,92,110,32,32,32,32,125,32,47,47,32,87,114,97,112,32,105,110,32,97,32,102,97,100,101,32,116,114,97,110,115,105,116,105,111,110,92,110,92,110,92,110,32,32,32,32,36,111,118,101,114,108,97,121,32,61,32,104,40,95,116,114,97,110,115,105,116,105,111,110,95,98,118,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,86,84,114,97,110,115,105,116,105,111,110,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,110,111,70,97,100,101,58,32,110,111,70,97,100,101,44,92,110,32,32,32,32,32,32,32,32,97,112,112,101,97,114,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,39,97,102,116,101,114,45,101,110,116,101,114,39,58,32,102,117,110,99,116,105,111,110,32,97,102,116,101,114,69,110,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,41,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,39,97,102,116,101,114,45,108,101,97,118,101,39,58,32,102,117,110,99,116,105,111,110,32,97,102,116,101,114,76,101,97,118,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,111,118,101,114,108,97,121,93,41,59,92,110,92,110,32,32,32,32,105,102,32,40,110,111,87,114,97,112,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,36,111,118,101,114,108,97,121,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,104,105,115,46,119,114,97,112,84,97,103,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,111,118,101,114,108,97,121,45,119,114,97,112,32,112,111,115,105,116,105,111,110,45,114,101,108,97,116,105,118,101,39,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,98,117,115,121,39,58,32,115,104,111,119,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,110,111,87,114,97,112,32,63,32,91,36,111,118,101,114,108,97,121,93,32,58,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,44,32,36,111,118,101,114,108,97,121,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,111,118,101,114,108,97,121,47,111,118,101,114,108,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,80,97,103,105,110,97,116,105,111,110,78,97,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,97,103,105,110,97,116,105,111,110,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,80,97,103,105,110,97,116,105,111,110,78,97,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,97,103,105,110,97,116,105,111,110,78,97,118,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,97,103,105,110,97,116,105,111,110,78,97,118,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,97,103,105,110,97,116,105,111,110,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,80,97,103,105,110,97,116,105,111,110,78,97,118,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,80,97,103,105,110,97,116,105,111,110,78,97,118,58,32,95,112,97,103,105,110,97,116,105,111,110,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,80,97,103,105,110,97,116,105,111,110,78,97,118,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,80,97,103,105,110,97,116,105,111,110,78,97,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,80,97,103,105,110,97,116,105,111,110,78,97,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,97,110,105,116,105,122,101,78,117,109,98,101,114,79,102,80,97,103,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,97,110,105,116,105,122,101,78,117,109,98,101,114,79,102,80,97,103,101,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,98,118,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,114,111,117,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,114,111,117,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,119,97,114,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,112,97,103,105,110,97,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,112,97,103,105,110,97,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,105,110,107,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,83,97,110,105,116,105,122,101,32,116,104,101,32,112,114,111,118,105,100,101,100,32,110,117,109,98,101,114,32,111,102,32,112,97,103,101,115,32,40,99,111,110,118,101,114,116,105,110,103,32,116,111,32,97,32,110,117,109,98,101,114,41,92,110,92,110,118,97,114,32,115,97,110,105,116,105,122,101,78,117,109,98,101,114,79,102,80,97,103,101,115,32,61,32,102,117,110,99,116,105,111,110,32,115,97,110,105,116,105,122,101,78,117,109,98,101,114,79,102,80,97,103,101,115,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,111,73,110,116,101,103,101,114,41,40,118,97,108,117,101,44,32,48,41,44,32,49,41,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,95,108,105,110,107,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,111,109,105,116,41,40,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,44,32,91,39,101,118,101,110,116,39,44,32,39,114,111,117,116,101,114,84,97,103,39,93,41,59,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,41,44,32,95,108,105,110,107,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,98,97,115,101,85,114,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,47,39,41,44,92,110,32,32,108,105,110,107,71,101,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,41,44,92,110,32,32,47,47,32,68,105,115,97,98,108,101,32,97,117,116,111,32,112,97,103,101,32,110,117,109,98,101,114,32,100,101,116,101,99,116,105,111,110,32,105,102,32,96,116,114,117,101,96,92,110,32,32,110,111,80,97,103,101,68,101,116,101,99,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,117,109,98,101,114,79,102,80,97,103,101,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,49,44,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,110,117,109,98,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,111,73,110,116,101,103,101,114,41,40,118,97,108,117,101,44,32,48,41,59,92,110,92,110,32,32,32,32,105,102,32,40,110,117,109,98,101,114,32,60,32,49,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,119,97,114,110,41,40,39,80,114,111,112,32,92,34,110,117,109,98,101,114,45,111,102,45,112,97,103,101,115,92,34,32,109,117,115,116,32,98,101,32,97,32,110,117,109,98,101,114,32,103,114,101,97,116,101,114,32,116,104,97,110,32,92,34,48,92,34,39,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,80,65,71,73,78,65,84,73,79,78,95,78,65,86,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,41,44,92,110,32,32,112,97,103,101,71,101,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,41,44,92,110,32,32,47,47,32,79,112,116,105,111,110,97,108,32,97,114,114,97,121,32,111,102,32,112,97,103,101,32,108,105,110,107,115,92,110,32,32,112,97,103,101,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,41,44,92,110,32,32,117,115,101,82,111,117,116,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,80,65,71,73,78,65,84,73,79,78,95,78,65,86,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,80,97,103,105,110,97,116,105,111,110,78,97,118,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,80,65,71,73,78,65,84,73,79,78,95,78,65,86,44,92,110,32,32,47,47,32,84,104,101,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,32,105,115,32,98,114,111,117,103,104,116,32,105,110,32,118,105,97,32,116,104,101,32,112,97,103,105,110,97,116,105,111,110,32,109,105,120,105,110,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,97,103,105,110,97,116,105,111,110,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,47,47,32,85,115,101,100,32,98,121,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,32,116,111,32,116,114,105,103,103,101,114,32,119,114,97,112,112,105,110,103,32,105,110,32,39,60,110,97,118,62,39,32,101,108,101,109,101,110,116,92,110,32,32,32,32,105,115,78,97,118,58,32,102,117,110,99,116,105,111,110,32,105,115,78,97,118,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,86,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,86,97,108,117,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,112,114,111,112,32,97,115,32,97,32,110,117,109,98,101,114,32,111,114,32,96,110,117,108,108,96,32,105,102,32,117,110,100,101,102,105,110,101,100,32,111,114,32,60,32,49,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,118,97,108,117,101,44,32,48,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,60,32,49,32,63,32,110,117,108,108,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,110,117,109,98,101,114,79,102,80,97,103,101,115,58,32,102,117,110,99,116,105,111,110,32,110,117,109,98,101,114,79,102,80,97,103,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,115,101,116,78,117,109,98,101,114,79,102,80,97,103,101,115,40,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,97,103,101,115,58,32,102,117,110,99,116,105,111,110,32,112,97,103,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,115,101,116,78,117,109,98,101,114,79,102,80,97,103,101,115,40,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,78,117,109,98,101,114,79,102,80,97,103,101,115,40,41,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,36,114,111,117,116,101,114,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,97,100,100,32,116,104,101,32,119,97,116,99,104,101,114,32,105,102,32,118,117,101,32,114,111,117,116,101,114,32,105,115,32,100,101,116,101,99,116,101,100,92,110,32,32,32,32,32,32,116,104,105,115,46,36,119,97,116,99,104,40,39,36,114,111,117,116,101,39,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,103,117,101,115,115,67,117,114,114,101,110,116,80,97,103,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,115,101,116,78,117,109,98,101,114,79,102,80,97,103,101,115,58,32,102,117,110,99,116,105,111,110,32,115,101,116,78,117,109,98,101,114,79,102,80,97,103,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,115,65,114,114,97,121,41,40,116,104,105,115,46,112,97,103,101,115,41,32,38,38,32,116,104,105,115,46,112,97,103,101,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,32,61,32,116,104,105,115,46,112,97,103,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,32,61,32,115,97,110,105,116,105,122,101,78,117,109,98,101,114,79,102,80,97,103,101,115,40,116,104,105,115,46,110,117,109,98,101,114,79,102,80,97,103,101,115,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,103,117,101,115,115,67,117,114,114,101,110,116,80,97,103,101,40,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,111,110,67,108,105,99,107,40,101,118,101,110,116,44,32,112,97,103,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,53,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,68,111,110,116,32,100,111,32,97,110,121,116,104,105,110,103,32,105,102,32,99,108,105,99,107,105,110,103,32,116,104,101,32,99,117,114,114,101,110,116,32,97,99,116,105,118,101,32,112,97,103,101,92,110,32,32,32,32,32,32,105,102,32,40,112,97,103,101,78,117,109,98,101,114,32,61,61,61,32,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,101,118,101,110,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,32,124,124,32,101,118,101,110,116,46,116,97,114,103,101,116,59,32,47,47,32,69,109,105,116,32,97,32,117,115,101,114,45,99,97,110,99,101,108,97,98,108,101,32,96,112,97,103,101,45,99,108,105,99,107,96,32,101,118,101,110,116,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,108,105,99,107,69,118,116,32,61,32,110,101,119,32,95,117,116,105,108,115,95,98,118,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,66,118,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,69,86,69,78,84,95,78,65,77,69,95,80,65,71,69,95,67,76,73,67,75,44,32,123,92,110,32,32,32,32,32,32,32,32,99,97,110,99,101,108,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,118,117,101,84,97,114,103,101,116,58,32,116,104,105,115,44,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,99,108,105,99,107,69,118,116,46,116,121,112,101,44,32,99,108,105,99,107,69,118,116,44,32,112,97,103,101,78,117,109,98,101,114,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,99,108,105,99,107,69,118,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,85,112,100,97,116,101,32,116,104,101,32,96,118,45,109,111,100,101,108,96,92,110,32,32,32,32,32,32,47,47,32,68,111,110,101,32,105,110,32,105,110,32,114,101,113,117,101,115,116,65,70,40,41,32,116,111,32,97,108,108,111,119,32,98,114,111,119,115,101,114,32,116,111,32,99,111,109,112,108,101,116,101,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,110,97,116,105,118,101,32,98,114,111,119,115,101,114,32,99,108,105,99,107,32,104,97,110,100,108,105,110,103,32,111,102,32,97,32,108,105,110,107,92,110,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,53,46,99,117,114,114,101,110,116,80,97,103,101,32,61,32,112,97,103,101,78,117,109,98,101,114,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,53,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,44,32,112,97,103,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,69,109,117,108,97,116,101,32,110,97,116,105,118,101,32,108,105,110,107,32,99,108,105,99,107,32,112,97,103,101,32,114,101,108,111,97,100,105,110,103,32,98,101,104,97,118,105,111,117,114,32,98,121,32,98,108,117,114,114,105,110,103,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,112,97,103,105,110,97,116,111,114,32,97,110,100,32,114,101,116,117,114,110,105,110,103,32,102,111,99,117,115,32,116,111,32,116,104,101,32,100,111,99,117,109,101,110,116,92,110,32,32,32,32,32,32,47,47,32,68,111,110,101,32,105,110,32,97,32,96,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,101,110,115,117,114,101,32,114,101,110,100,101,114,105,110,103,32,99,111,109,112,108,101,116,101,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,97,116,116,101,109,112,116,66,108,117,114,41,40,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,80,97,103,101,73,110,102,111,58,32,102,117,110,99,116,105,111,110,32,103,101,116,80,97,103,101,73,110,102,111,40,112,97,103,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,115,65,114,114,97,121,41,40,116,104,105,115,46,112,97,103,101,115,41,32,124,124,32,116,104,105,115,46,112,97,103,101,115,46,108,101,110,103,116,104,32,61,61,61,32,48,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,116,104,105,115,46,112,97,103,101,115,91,112,97,103,101,78,117,109,98,101,114,32,45,32,49,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,105,110,107,32,61,32,92,34,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,98,97,115,101,85,114,108,41,46,99,111,110,99,97,116,40,112,97,103,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,108,105,110,107,58,32,116,104,105,115,46,117,115,101,82,111,117,116,101,114,32,63,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,58,32,108,105,110,107,92,110,32,32,32,32,32,32,32,32,32,32,125,32,58,32,108,105,110,107,44,92,110,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,116,111,83,116,114,105,110,103,41,40,112,97,103,101,78,117,109,98,101,114,41,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,110,102,111,32,61,32,116,104,105,115,46,112,97,103,101,115,91,112,97,103,101,78,117,109,98,101,114,32,45,32,49,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,115,79,98,106,101,99,116,41,40,105,110,102,111,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,95,108,105,110,107,32,61,32,105,110,102,111,46,108,105,110,107,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,114,109,97,108,105,122,101,32,108,105,110,107,32,102,111,114,32,114,111,117,116,101,114,32,117,115,101,92,110,32,32,32,32,32,32,32,32,32,32,108,105,110,107,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,115,79,98,106,101,99,116,41,40,95,108,105,110,107,41,32,63,32,95,108,105,110,107,32,58,32,116,104,105,115,46,117,115,101,82,111,117,116,101,114,32,63,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,58,32,95,108,105,110,107,92,110,32,32,32,32,32,32,32,32,32,32,125,32,58,32,95,108,105,110,107,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,107,101,32,115,117,114,101,32,116,101,120,116,32,104,97,115,32,97,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,116,111,83,116,114,105,110,103,41,40,105,110,102,111,46,116,101,120,116,32,124,124,32,112,97,103,101,78,117,109,98,101,114,41,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,108,105,110,107,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,116,111,83,116,114,105,110,103,41,40,105,110,102,111,41,44,92,110,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,116,111,83,116,114,105,110,103,41,40,112,97,103,101,78,117,109,98,101,114,41,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,97,107,101,80,97,103,101,58,32,102,117,110,99,116,105,111,110,32,109,97,107,101,80,97,103,101,40,112,97,103,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,97,103,101,71,101,110,32,61,32,116,104,105,115,46,112,97,103,101,71,101,110,59,92,110,32,32,32,32,32,32,118,97,114,32,105,110,102,111,32,61,32,116,104,105,115,46,103,101,116,80,97,103,101,73,110,102,111,40,112,97,103,101,78,117,109,98,101,114,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,97,115,80,114,111,112,70,117,110,99,116,105,111,110,41,40,112,97,103,101,71,101,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,103,101,71,101,110,40,112,97,103,101,78,117,109,98,101,114,44,32,105,110,102,111,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,102,111,46,116,101,120,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,97,107,101,76,105,110,107,58,32,102,117,110,99,116,105,111,110,32,109,97,107,101,76,105,110,107,40,112,97,103,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,105,110,107,71,101,110,32,61,32,116,104,105,115,46,108,105,110,107,71,101,110,59,92,110,32,32,32,32,32,32,118,97,114,32,105,110,102,111,32,61,32,116,104,105,115,46,103,101,116,80,97,103,101,73,110,102,111,40,112,97,103,101,78,117,109,98,101,114,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,97,115,80,114,111,112,70,117,110,99,116,105,111,110,41,40,108,105,110,107,71,101,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,105,110,107,71,101,110,40,112,97,103,101,78,117,109,98,101,114,44,32,105,110,102,111,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,102,111,46,108,105,110,107,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,105,110,107,80,114,111,112,115,58,32,102,117,110,99,116,105,111,110,32,108,105,110,107,80,114,111,112,115,40,112,97,103,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,95,108,105,110,107,80,114,111,112,115,44,32,116,104,105,115,41,59,92,110,32,32,32,32,32,32,118,97,114,32,108,105,110,107,32,61,32,116,104,105,115,46,109,97,107,101,76,105,110,107,40,112,97,103,101,78,117,109,98,101,114,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,117,115,101,82,111,117,116,101,114,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,115,79,98,106,101,99,116,41,40,108,105,110,107,41,41,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,46,116,111,32,61,32,108,105,110,107,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,46,104,114,101,102,32,61,32,108,105,110,107,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,115,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,115,111,108,118,101,76,105,110,107,58,32,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,76,105,110,107,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,111,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,39,39,59,92,110,32,32,32,32,32,32,47,47,32,71,105,118,101,110,32,97,32,116,111,32,40,111,114,32,104,114,101,102,32,115,116,114,105,110,103,41,44,32,99,111,110,118,101,114,116,32,116,111,32,110,111,114,109,97,108,105,122,101,100,32,114,111,117,116,101,45,108,105,107,101,32,115,116,114,117,99,116,117,114,101,92,110,32,32,32,32,32,32,47,47,32,87,111,114,107,115,32,111,110,108,121,32,99,108,105,101,110,116,32,115,105,100,101,33,92,110,32,32,32,32,32,32,118,97,114,32,108,105,110,107,59,92,110,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,116,104,101,32,96,116,111,96,32,116,111,32,97,32,72,82,69,70,32,118,105,97,32,97,32,116,101,109,112,111,114,97,114,121,32,96,97,96,32,116,97,103,92,110,32,32,32,32,32,32,32,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,39,97,39,41,59,92,110,32,32,32,32,32,32,32,32,108,105,110,107,46,104,114,101,102,32,61,32,40,48,44,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,99,111,109,112,117,116,101,72,114,101,102,41,40,123,92,110,32,32,32,32,32,32,32,32,32,32,116,111,58,32,116,111,92,110,32,32,32,32,32,32,32,32,125,44,32,39,97,39,44,32,39,47,39,44,32,39,47,39,41,59,32,47,47,32,87,101,32,110,101,101,100,32,116,111,32,97,100,100,32,116,104,101,32,97,110,99,104,111,114,32,116,111,32,116,104,101,32,100,111,99,117,109,101,110,116,32,116,111,32,109,97,107,101,32,115,117,114,101,32,116,104,101,92,110,32,32,32,32,32,32,32,32,47,47,32,96,112,97,116,104,110,97,109,101,96,32,105,115,32,99,111,114,114,101,99,116,108,121,32,100,101,116,101,99,116,101,100,32,105,110,32,97,110,121,32,98,114,111,119,115,101,114,32,40,105,46,101,46,32,73,69,41,92,110,92,110,32,32,32,32,32,32,32,32,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,108,105,110,107,41,59,32,47,47,32,79,110,99,101,32,104,114,101,102,32,105,115,32,97,115,115,105,103,110,101,100,44,32,116,104,101,32,108,105,110,107,32,119,105,108,108,32,98,101,32,110,111,114,109,97,108,105,122,101,100,32,116,111,32,116,104,101,32,102,117,108,108,32,85,82,76,32,98,105,116,115,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,95,108,105,110,107,50,32,61,32,108,105,110,107,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,110,97,109,101,32,61,32,95,108,105,110,107,50,46,112,97,116,104,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,97,115,104,32,61,32,95,108,105,110,107,50,46,104,97,115,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,32,61,32,95,108,105,110,107,50,46,115,101,97,114,99,104,59,32,47,47,32,82,101,109,111,118,101,32,108,105,110,107,32,102,114,111,109,32,100,111,99,117,109,101,110,116,92,110,92,110,32,32,32,32,32,32,32,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,108,105,110,107,41,59,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,108,111,99,97,116,105,111,110,32,105,110,32,97,32,114,111,117,116,101,45,108,105,107,101,32,111,98,106,101,99,116,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,58,32,112,97,116,104,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,104,97,115,104,58,32,104,97,115,104,44,92,110,32,32,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,40,48,44,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,112,97,114,115,101,81,117,101,114,121,41,40,115,101,97,114,99,104,41,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,108,105,110,107,32,38,38,32,108,105,110,107,46,112,97,114,101,110,116,78,111,100,101,32,38,38,32,108,105,110,107,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,108,105,110,107,41,59,92,110,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,95,117,110,117,115,101,100,41,32,123,125,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,115,111,108,118,101,82,111,117,116,101,58,32,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,82,111,117,116,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,111,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,39,39,59,92,110,92,110,32,32,32,32,32,32,47,47,32,71,105,118,101,110,32,97,32,116,111,32,40,111,114,32,104,114,101,102,32,115,116,114,105,110,103,41,44,32,99,111,110,118,101,114,116,32,116,111,32,110,111,114,109,97,108,105,122,101,100,32,114,111,117,116,101,32,108,111,99,97,116,105,111,110,32,115,116,114,117,99,116,117,114,101,92,110,32,32,32,32,32,32,47,47,32,87,111,114,107,115,32,111,110,108,121,32,119,104,101,110,32,114,111,117,116,101,114,32,97,118,97,105,108,97,98,108,101,33,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,111,117,116,101,32,61,32,116,104,105,115,46,36,114,111,117,116,101,114,46,114,101,115,111,108,118,101,40,116,111,44,32,116,104,105,115,46,36,114,111,117,116,101,41,46,114,111,117,116,101,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,58,32,114,111,117,116,101,46,112,97,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,104,97,115,104,58,32,114,111,117,116,101,46,104,97,115,104,44,92,110,32,32,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,114,111,117,116,101,46,113,117,101,114,121,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,117,101,115,115,67,117,114,114,101,110,116,80,97,103,101,58,32,102,117,110,99,116,105,111,110,32,103,117,101,115,115,67,117,114,114,101,110,116,80,97,103,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,114,111,117,116,101,114,32,61,32,116,104,105,115,46,36,114,111,117,116,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,36,114,111,117,116,101,32,61,32,116,104,105,115,46,36,114,111,117,116,101,59,92,110,32,32,32,32,32,32,118,97,114,32,103,117,101,115,115,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,86,97,108,117,101,59,32,47,47,32,84,104,105,115,32,115,101,99,116,105,111,110,32,111,110,108,121,32,111,99,99,117,114,115,32,105,102,32,119,101,32,97,114,101,32,99,108,105,101,110,116,32,115,105,100,101,44,32,111,114,32,115,101,114,118,101,114,45,115,105,100,101,32,119,105,116,104,32,96,36,114,111,117,116,101,114,96,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,110,111,80,97,103,101,68,101,116,101,99,116,32,38,38,32,33,103,117,101,115,115,32,38,38,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,73,83,95,66,82,79,87,83,69,82,32,124,124,32,33,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,73,83,95,66,82,79,87,83,69,82,32,38,38,32,36,114,111,117,116,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,117,114,114,101,110,116,32,114,111,117,116,101,32,40,105,102,32,114,111,117,116,101,114,32,97,118,97,105,108,97,98,108,101,41,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,82,111,117,116,101,32,61,32,36,114,111,117,116,101,114,32,38,38,32,36,114,111,117,116,101,32,63,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,58,32,36,114,111,117,116,101,46,112,97,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,104,97,115,104,58,32,36,114,111,117,116,101,46,104,97,115,104,44,92,110,32,32,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,36,114,111,117,116,101,46,113,117,101,114,121,92,110,32,32,32,32,32,32,32,32,125,32,58,32,123,125,59,32,47,47,32,67,117,114,114,101,110,116,32,112,97,103,101,32,102,117,108,108,32,72,82,69,70,32,40,105,102,32,99,108,105,101,110,116,32,115,105,100,101,41,92,110,32,32,32,32,32,32,32,32,47,47,32,67,97,110,39,116,32,98,101,32,100,111,110,101,32,97,115,32,97,32,99,111,109,112,117,116,101,100,32,112,114,111,112,33,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,111,99,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,73,83,95,66,82,79,87,83,69,82,32,63,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,32,124,124,32,100,111,99,117,109,101,110,116,46,108,111,99,97,116,105,111,110,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,76,105,110,107,32,61,32,108,111,99,32,63,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,58,32,108,111,99,46,112,97,116,104,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,104,97,115,104,58,32,108,111,99,46,104,97,115,104,44,92,110,32,32,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,40,48,44,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,112,97,114,115,101,81,117,101,114,121,41,40,108,111,99,46,115,101,97,114,99,104,41,92,110,32,32,32,32,32,32,32,32,125,32,58,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,123,125,59,32,47,47,32,76,111,111,112,32,116,104,114,111,117,103,104,32,116,104,101,32,112,111,115,115,105,98,108,101,32,112,97,103,101,115,32,108,111,111,107,105,110,103,32,102,111,114,32,97,32,109,97,116,99,104,32,117,110,116,105,108,32,102,111,117,110,100,92,110,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,112,97,103,101,78,117,109,98,101,114,32,61,32,49,59,32,33,103,117,101,115,115,32,38,38,32,112,97,103,101,78,117,109,98,101,114,32,60,61,32,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,59,32,112,97,103,101,78,117,109,98,101,114,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,111,32,61,32,116,104,105,115,46,109,97,107,101,76,105,110,107,40,112,97,103,101,78,117,109,98,101,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,36,114,111,117,116,101,114,32,38,38,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,115,79,98,106,101,99,116,41,40,116,111,41,32,124,124,32,116,104,105,115,46,117,115,101,82,111,117,116,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,115,111,108,118,101,32,116,104,101,32,112,97,103,101,32,118,105,97,32,116,104,101,32,96,36,114,111,117,116,101,114,96,92,110,32,32,32,32,32,32,32,32,32,32,32,32,103,117,101,115,115,32,61,32,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,116,104,105,115,46,114,101,115,111,108,118,101,82,111,117,116,101,40,116,111,41,44,32,99,117,114,114,101,110,116,82,111,117,116,101,41,32,63,32,112,97,103,101,78,117,109,98,101,114,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,73,83,95,66,82,79,87,83,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,110,111,32,96,36,114,111,117,116,101,114,96,32,97,118,97,105,108,97,98,108,101,32,40,111,114,32,96,33,116,104,105,115,46,117,115,101,82,111,117,116,101,114,96,32,119,104,101,110,32,96,116,111,96,32,105,115,32,97,32,115,116,114,105,110,103,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,119,101,32,99,111,109,112,97,114,101,32,117,115,105,110,103,32,112,97,114,115,101,100,32,85,82,73,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,103,117,101,115,115,32,61,32,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,116,104,105,115,46,114,101,115,111,108,118,101,76,105,110,107,40,116,111,41,44,32,99,117,114,114,101,110,116,76,105,110,107,41,32,63,32,112,97,103,101,78,117,109,98,101,114,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,80,114,111,98,97,98,108,121,32,83,83,82,44,32,98,117,116,32,110,111,32,96,36,114,111,117,116,101,114,96,32,115,111,32,119,101,32,99,97,110,39,116,32,103,117,101,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,115,111,32,108,101,116,115,32,98,114,101,97,107,32,111,117,116,32,111,102,32,116,104,101,32,108,111,111,112,32,101,97,114,108,121,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,103,117,101,115,115,32,61,32,45,49,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,47,47,32,87,101,32,115,101,116,32,96,99,117,114,114,101,110,116,80,97,103,101,96,32,116,111,32,96,48,96,32,116,111,32,116,114,105,103,103,101,114,32,97,110,32,96,36,101,109,105,116,40,39,105,110,112,117,116,39,44,32,110,117,108,108,41,96,92,110,32,32,32,32,32,32,47,47,32,65,115,32,116,104,101,32,100,101,102,97,117,108,116,32,102,111,114,32,96,99,117,114,114,101,110,116,80,97,103,101,96,32,105,115,32,96,45,49,96,32,119,104,101,110,32,110,111,32,118,97,108,117,101,32,105,115,32,115,112,101,99,105,102,105,101,100,92,110,32,32,32,32,32,32,47,47,32,86,97,108,105,100,32,112,97,103,101,32,110,117,109,98,101,114,115,32,97,114,101,32,103,114,101,97,116,101,114,32,116,104,97,110,32,96,48,96,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,32,61,32,103,117,101,115,115,32,62,32,48,32,63,32,103,117,101,115,115,32,58,32,48,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,80,97,103,105,110,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,80,97,103,105,110,97,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,97,103,105,110,97,116,105,111,110,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,97,103,105,110,97,116,105,111,110,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,97,103,105,110,97,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,47,112,97,103,105,110,97,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,80,97,103,105,110,97,116,105,111,110,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,80,97,103,105,110,97,116,105,111,110,58,32,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,80,97,103,105,110,97,116,105,111,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,47,112,97,103,105,110,97,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,47,112,97,103,105,110,97,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,80,97,103,105,110,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,80,97,103,105,110,97,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,98,118,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,112,97,103,105,110,97,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,112,97,103,105,110,97,116,105,111,110,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,68,69,70,65,85,76,84,95,80,69,82,95,80,65,71,69,32,61,32,50,48,59,92,110,118,97,114,32,68,69,70,65,85,76,84,95,84,79,84,65,76,95,82,79,87,83,32,61,32,48,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,83,97,110,105,116,105,122,101,32,116,104,101,32,112,114,111,118,105,100,101,100,32,112,101,114,32,112,97,103,101,32,110,117,109,98,101,114,32,40,99,111,110,118,101,114,116,105,110,103,32,116,111,32,97,32,110,117,109,98,101,114,41,92,110,92,110,118,97,114,32,115,97,110,105,116,105,122,101,80,101,114,80,97,103,101,32,61,32,102,117,110,99,116,105,111,110,32,115,97,110,105,116,105,122,101,80,101,114,80,97,103,101,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,111,73,110,116,101,103,101,114,41,40,118,97,108,117,101,41,32,124,124,32,68,69,70,65,85,76,84,95,80,69,82,95,80,65,71,69,44,32,49,41,59,92,110,125,59,32,47,47,32,83,97,110,105,116,105,122,101,32,116,104,101,32,112,114,111,118,105,100,101,100,32,116,111,116,97,108,32,114,111,119,115,32,110,117,109,98,101,114,32,40,99,111,110,118,101,114,116,105,110,103,32,116,111,32,97,32,110,117,109,98,101,114,41,92,110,92,110,92,110,118,97,114,32,115,97,110,105,116,105,122,101,84,111,116,97,108,82,111,119,115,32,61,32,102,117,110,99,116,105,111,110,32,115,97,110,105,116,105,122,101,84,111,116,97,108,82,111,119,115,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,111,73,110,116,101,103,101,114,41,40,118,97,108,117,101,41,32,124,124,32,68,69,70,65,85,76,84,95,84,79,84,65,76,95,82,79,87,83,44,32,48,41,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,114,105,97,67,111,110,116,114,111,108,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,112,101,114,80,97,103,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,68,69,70,65,85,76,84,95,80,69,82,95,80,65,71,69,41,44,92,110,32,32,116,111,116,97,108,82,111,119,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,68,69,70,65,85,76,84,95,84,79,84,65,76,95,82,79,87,83,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,80,65,71,73,78,65,84,73,79,78,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,80,97,103,105,110,97,116,105,111,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,80,65,71,73,78,65,84,73,79,78,44,92,110,32,32,47,47,32,84,104,101,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,32,105,115,32,98,114,111,117,103,104,116,32,105,110,32,118,105,97,32,116,104,101,32,96,112,97,103,105,110,97,116,105,111,110,77,105,120,105,110,96,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,97,103,105,110,97,116,105,111,110,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,110,117,109,98,101,114,79,102,80,97,103,101,115,58,32,102,117,110,99,116,105,111,110,32,110,117,109,98,101,114,79,102,80,97,103,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,116,104,67,101,105,108,41,40,115,97,110,105,116,105,122,101,84,111,116,97,108,82,111,119,115,40,116,104,105,115,46,116,111,116,97,108,82,111,119,115,41,32,47,32,115,97,110,105,116,105,122,101,80,101,114,80,97,103,101,40,116,104,105,115,46,112,101,114,80,97,103,101,41,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,60,32,49,32,63,32,49,32,58,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,85,115,101,100,32,102,111,114,32,119,97,116,99,104,105,110,103,32,99,104,97,110,103,101,115,32,116,111,32,96,112,101,114,80,97,103,101,96,32,97,110,100,32,96,110,117,109,98,101,114,79,102,80,97,103,101,115,96,92,110,32,32,32,32,112,97,103,101,83,105,122,101,78,117,109,98,101,114,79,102,80,97,103,101,115,58,32,102,117,110,99,116,105,111,110,32,112,97,103,101,83,105,122,101,78,117,109,98,101,114,79,102,80,97,103,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,112,101,114,80,97,103,101,58,32,115,97,110,105,116,105,122,101,80,101,114,80,97,103,101,40,116,104,105,115,46,112,101,114,80,97,103,101,41,44,92,110,32,32,32,32,32,32,32,32,116,111,116,97,108,82,111,119,115,58,32,115,97,110,105,116,105,122,101,84,111,116,97,108,82,111,119,115,40,116,104,105,115,46,116,111,116,97,108,82,111,119,115,41,44,92,110,32,32,32,32,32,32,32,32,110,117,109,98,101,114,79,102,80,97,103,101,115,58,32,116,104,105,115,46,110,117,109,98,101,114,79,102,80,97,103,101,115,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,112,97,103,101,83,105,122,101,78,117,109,98,101,114,79,102,80,97,103,101,115,58,32,102,117,110,99,116,105,111,110,32,112,97,103,101,83,105,122,101,78,117,109,98,101,114,79,102,80,97,103,101,115,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,46,112,101,114,80,97,103,101,32,33,61,61,32,111,108,100,86,97,108,117,101,46,112,101,114,80,97,103,101,32,38,38,32,110,101,119,86,97,108,117,101,46,116,111,116,97,108,82,111,119,115,32,61,61,61,32,111,108,100,86,97,108,117,101,46,116,111,116,97,108,82,111,119,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,112,97,103,101,32,115,105,122,101,32,99,104,97,110,103,101,115,44,32,114,101,115,101,116,32,116,111,32,112,97,103,101,32,49,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,101,119,86,97,108,117,101,46,110,117,109,98,101,114,79,102,80,97,103,101,115,32,33,61,61,32,111,108,100,86,97,108,117,101,46,110,117,109,98,101,114,79,102,80,97,103,101,115,32,38,38,32,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,32,62,32,110,101,119,86,97,108,117,101,46,110,117,109,98,101,114,79,102,80,97,103,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,96,110,117,109,98,101,114,79,102,80,97,103,101,115,96,32,99,104,97,110,103,101,115,32,97,110,100,32,105,115,32,108,101,115,115,32,116,104,97,110,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,116,104,101,32,96,99,117,114,114,101,110,116,80,97,103,101,96,32,110,117,109,98,101,114,44,32,114,101,115,101,116,32,116,111,32,112,97,103,101,32,49,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,32,61,32,110,101,119,86,97,108,117,101,46,110,117,109,98,101,114,79,102,80,97,103,101,115,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,47,47,32,83,101,116,32,116,104,101,32,105,110,105,116,105,97,108,32,112,97,103,101,32,99,111,117,110,116,92,110,32,32,32,32,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,32,61,32,116,104,105,115,46,110,117,109,98,101,114,79,102,80,97,103,101,115,59,32,47,47,32,83,101,116,32,116,104,101,32,105,110,105,116,105,97,108,32,112,97,103,101,32,118,97,108,117,101,92,110,92,110,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,80,97,103,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,91,95,109,105,120,105,110,115,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,44,32,48,41,59,92,110,92,110,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,80,97,103,101,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,32,61,32,99,117,114,114,101,110,116,80,97,103,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,104,105,115,32,118,97,108,117,101,32,112,97,114,115,101,115,32,116,111,32,96,78,97,78,96,32,111,114,32,97,32,118,97,108,117,101,32,108,101,115,115,32,116,104,97,110,32,96,49,96,92,110,32,32,32,32,32,32,32,32,47,47,32,116,114,105,103,103,101,114,32,97,110,32,105,110,105,116,105,97,108,32,101,109,105,116,32,111,102,32,96,110,117,108,108,96,32,105,102,32,110,111,32,112,97,103,101,32,115,112,101,99,105,102,105,101,100,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,32,61,32,48,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,84,104,101,115,101,32,109,101,116,104,111,100,115,32,97,114,101,32,117,115,101,100,32,98,121,32,116,104,101,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,111,110,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,111,110,67,108,105,99,107,40,101,118,101,110,116,44,32,112,97,103,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,68,111,110,116,32,100,111,32,97,110,121,116,104,105,110,103,32,105,102,32,99,108,105,99,107,105,110,103,32,116,104,101,32,99,117,114,114,101,110,116,32,97,99,116,105,118,101,32,112,97,103,101,92,110,32,32,32,32,32,32,105,102,32,40,112,97,103,101,78,117,109,98,101,114,32,61,61,61,32,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,59,32,47,47,32,69,109,105,116,32,97,32,117,115,101,114,45,99,97,110,99,101,108,97,98,108,101,32,96,112,97,103,101,45,99,108,105,99,107,96,32,101,118,101,110,116,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,108,105,99,107,69,118,116,32,61,32,110,101,119,32,95,117,116,105,108,115,95,98,118,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,118,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,80,65,71,69,95,67,76,73,67,75,44,32,123,92,110,32,32,32,32,32,32,32,32,99,97,110,99,101,108,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,118,117,101,84,97,114,103,101,116,58,32,116,104,105,115,44,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,99,108,105,99,107,69,118,116,46,116,121,112,101,44,32,99,108,105,99,107,69,118,116,44,32,112,97,103,101,78,117,109,98,101,114,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,99,108,105,99,107,69,118,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,85,112,100,97,116,101,32,116,104,101,32,96,118,45,109,111,100,101,108,96,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,32,61,32,112,97,103,101,78,117,109,98,101,114,59,32,47,47,32,69,109,105,116,32,101,118,101,110,116,32,116,114,105,103,103,101,114,101,100,32,98,121,32,117,115,101,114,32,105,110,116,101,114,97,99,116,105,111,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,44,32,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,41,59,32,47,47,32,75,101,101,112,32,116,104,101,32,99,117,114,114,101,110,116,32,98,117,116,116,111,110,32,102,111,99,117,115,101,100,32,105,102,32,112,111,115,115,105,98,108,101,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,115,86,105,115,105,98,108,101,41,40,116,97,114,103,101,116,41,32,38,38,32,95,116,104,105,115,50,46,36,101,108,46,99,111,110,116,97,105,110,115,40,116,97,114,103,101,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,102,111,99,117,115,67,117,114,114,101,110,116,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,97,107,101,80,97,103,101,58,32,102,117,110,99,116,105,111,110,32,109,97,107,101,80,97,103,101,40,112,97,103,101,78,117,109,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,103,101,78,117,109,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,108,105,110,107,80,114,111,112,115,58,32,102,117,110,99,116,105,111,110,32,108,105,110,107,80,114,111,112,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,78,111,32,112,114,111,112,115,44,32,115,105,110,99,101,32,119,101,32,114,101,110,100,101,114,32,97,32,112,108,97,105,110,32,98,117,116,116,111,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,47,112,97,103,105,110,97,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,104,101,108,112,101,114,115,47,98,118,45,112,111,112,111,118,101,114,45,116,101,109,112,108,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,104,101,108,112,101,114,115,47,98,118,45,112,111,112,111,118,101,114,45,116,101,109,112,108,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,80,111,112,111,118,101,114,84,101,109,112,108,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,86,80,111,112,111,118,101,114,84,101,109,112,108,97,116,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,111,108,116,105,112,95,104,101,108,112,101,114,115,95,98,118,95,116,111,111,108,116,105,112,95,116,101,109,112,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,116,111,111,108,116,105,112,45,116,101,109,112,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,116,111,111,108,116,105,112,45,116,101,109,112,108,97,116,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,86,80,111,112,111,118,101,114,84,101,109,112,108,97,116,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,80,79,80,79,86,69,82,95,84,69,77,80,76,65,84,69,44,92,110,32,32,101,120,116,101,110,100,115,58,32,95,116,111,111,108,116,105,112,95,104,101,108,112,101,114,115,95,98,118,95,116,111,111,108,116,105,112,95,116,101,109,112,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,86,84,111,111,108,116,105,112,84,101,109,112,108,97,116,101,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,116,101,109,112,108,97,116,101,84,121,112,101,58,32,102,117,110,99,116,105,111,110,32,116,101,109,112,108,97,116,101,84,121,112,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,112,111,112,111,118,101,114,39,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,114,101,110,100,101,114,84,101,109,112,108,97,116,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,84,101,109,112,108,97,116,101,40,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,105,116,108,101,32,61,32,116,104,105,115,46,116,105,116,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,32,61,32,116,104,105,115,46,99,111,110,116,101,110,116,59,32,47,47,32,84,105,116,108,101,32,97,110,100,32,99,111,110,116,101,110,116,32,99,111,117,108,100,32,98,101,32,97,32,115,99,111,112,101,100,32,115,108,111,116,32,102,117,110,99,116,105,111,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,116,105,116,108,101,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,105,116,108,101,41,32,63,32,116,105,116,108,101,40,123,125,41,32,58,32,116,105,116,108,101,59,92,110,32,32,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,99,111,110,116,101,110,116,41,32,63,32,99,111,110,116,101,110,116,40,123,125,41,32,58,32,99,111,110,116,101,110,116,59,32,47,47,32,68,105,114,101,99,116,105,118,101,32,117,115,97,103,101,32,111,110,108,121,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,105,116,108,101,68,111,109,80,114,111,112,115,32,61,32,116,104,105,115,46,104,116,109,108,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,105,116,108,101,41,32,63,32,123,92,110,32,32,32,32,32,32,32,32,105,110,110,101,114,72,84,77,76,58,32,116,105,116,108,101,92,110,32,32,32,32,32,32,125,32,58,32,123,125,59,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,116,101,110,116,68,111,109,80,114,111,112,115,32,61,32,116,104,105,115,46,104,116,109,108,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,99,111,110,116,101,110,116,41,32,63,32,123,92,110,32,32,32,32,32,32,32,32,105,110,110,101,114,72,84,77,76,58,32,99,111,110,116,101,110,116,92,110,32,32,32,32,32,32,125,32,58,32,123,125,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,112,111,112,111,118,101,114,32,98,45,112,111,112,111,118,101,114,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,101,109,112,108,97,116,101,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,116,101,109,112,108,97,116,101,65,116,116,114,105,98,117,116,101,115,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,116,104,105,115,46,116,101,109,112,108,97,116,101,76,105,115,116,101,110,101,114,115,92,110,32,32,32,32,32,32,125,44,32,91,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,97,114,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,39,97,114,114,111,119,39,92,110,32,32,32,32,32,32,125,41,44,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,36,116,105,116,108,101,41,32,124,124,32,36,116,105,116,108,101,32,61,61,61,32,39,39,32,63,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,104,40,41,32,58,32,104,40,39,104,51,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,112,111,112,111,118,101,114,45,104,101,97,100,101,114,39,44,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,116,105,116,108,101,68,111,109,80,114,111,112,115,92,110,32,32,32,32,32,32,125,44,32,91,36,116,105,116,108,101,93,41,44,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,36,99,111,110,116,101,110,116,41,32,124,124,32,36,99,111,110,116,101,110,116,32,61,61,61,32,39,39,32,63,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,104,40,41,32,58,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,112,111,112,111,118,101,114,45,98,111,100,121,39,44,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,99,111,110,116,101,110,116,68,111,109,80,114,111,112,115,92,110,32,32,32,32,32,32,125,44,32,91,36,99,111,110,116,101,110,116,93,41,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,104,101,108,112,101,114,115,47,98,118,45,112,111,112,111,118,101,114,45,116,101,109,112,108,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,104,101,108,112,101,114,115,47,98,118,45,112,111,112,111,118,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,104,101,108,112,101,114,115,47,98,118,45,112,111,112,111,118,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,80,111,112,111,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,86,80,111,112,111,118,101,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,111,108,116,105,112,95,104,101,108,112,101,114,115,95,98,118,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,116,111,111,108,116,105,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,116,111,111,108,116,105,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,118,95,112,111,112,111,118,101,114,95,116,101,109,112,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,118,45,112,111,112,111,118,101,114,45,116,101,109,112,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,104,101,108,112,101,114,115,47,98,118,45,112,111,112,111,118,101,114,45,116,101,109,112,108,97,116,101,46,106,115,92,34,41,59,92,110,47,47,32,80,111,112,111,118,101,114,32,92,34,67,108,97,115,115,92,34,32,40,66,117,105,108,116,32,97,115,32,97,32,114,101,110,100,101,114,108,101,115,115,32,86,117,101,32,105,110,115,116,97,110,99,101,41,92,110,47,47,32,73,110,104,101,114,105,116,115,32,102,114,111,109,32,66,86,84,111,111,108,116,105,112,92,110,47,47,92,110,47,47,32,72,97,110,100,108,101,115,32,116,114,105,103,103,101,114,32,101,118,101,110,116,115,44,32,101,116,99,46,92,110,47,47,32,73,110,115,116,97,110,116,105,97,116,101,115,32,116,101,109,112,108,97,116,101,32,111,110,32,100,101,109,97,110,100,92,110,92,110,92,110,92,110,32,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,86,80,111,112,111,118,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,80,79,80,79,86,69,82,95,72,69,76,80,69,82,44,92,110,32,32,101,120,116,101,110,100,115,58,32,95,116,111,111,108,116,105,112,95,104,101,108,112,101,114,115,95,98,118,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,86,84,111,111,108,116,105,112,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,47,47,32,79,118,101,114,119,114,105,116,101,115,32,66,86,84,111,111,108,116,105,112,92,110,32,32,32,32,116,101,109,112,108,97,116,101,84,121,112,101,58,32,102,117,110,99,116,105,111,110,32,116,101,109,112,108,97,116,101,84,121,112,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,112,111,112,111,118,101,114,39,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,103,101,116,84,101,109,112,108,97,116,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,84,101,109,112,108,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,79,118,101,114,119,114,105,116,101,115,32,66,86,84,111,111,108,116,105,112,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,98,118,95,112,111,112,111,118,101,114,95,116,101,109,112,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,86,80,111,112,111,118,101,114,84,101,109,112,108,97,116,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,104,101,108,112,101,114,115,47,98,118,45,112,111,112,111,118,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,80,111,112,111,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,80,111,112,111,118,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,111,112,111,118,101,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,111,112,111,118,101,114,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,112,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,112,111,112,111,118,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,100,105,114,101,99,116,105,118,101,115,47,112,111,112,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,112,111,112,111,118,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,80,111,112,111,118,101,114,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,80,111,112,111,118,101,114,58,32,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,80,111,112,111,118,101,114,92,110,32,32,125,44,92,110,32,32,112,108,117,103,105,110,115,58,32,123,92,110,32,32,32,32,86,66,80,111,112,111,118,101,114,80,108,117,103,105,110,58,32,95,100,105,114,101,99,116,105,118,101,115,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,86,66,80,111,112,111,118,101,114,80,108,117,103,105,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,112,111,112,111,118,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,112,111,112,111,118,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,80,111,112,111,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,80,111,112,111,118,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,111,108,116,105,112,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,111,111,108,116,105,112,47,116,111,111,108,116,105,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,116,111,111,108,116,105,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,98,118,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,98,118,45,112,111,112,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,104,101,108,112,101,114,115,47,98,118,45,112,111,112,111,118,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,116,111,111,108,116,105,112,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,99,111,110,116,101,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,112,108,97,99,101,109,101,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,114,105,103,104,116,39,41,44,92,110,32,32,116,114,105,103,103,101,114,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,80,79,80,79,86,69,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,80,111,112,111,118,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,80,79,80,79,86,69,82,44,92,110,32,32,101,120,116,101,110,100,115,58,32,95,116,111,111,108,116,105,112,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,84,111,111,108,116,105,112,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,103,101,116,67,111,109,112,111,110,101,110,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,67,111,109,112,111,110,101,110,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,79,118,101,114,114,105,100,100,101,110,32,98,121,32,66,80,111,112,111,118,101,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,104,101,108,112,101,114,115,95,98,118,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,66,86,80,111,112,111,118,101,114,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,112,100,97,116,101,67,111,110,116,101,110,116,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,67,111,110,116,101,110,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,111,111,108,116,105,112,58,32,68,101,102,97,117,108,116,32,115,108,111,116,32,105,115,32,96,116,105,116,108,101,96,92,110,32,32,32,32,32,32,47,47,32,80,111,112,111,118,101,114,58,32,68,101,102,97,117,108,116,32,115,108,111,116,32,105,115,32,96,99,111,110,116,101,110,116,96,44,32,96,116,105,116,108,101,96,32,115,108,111,116,32,105,115,32,116,105,116,108,101,92,110,32,32,32,32,32,32,47,47,32,87,101,32,112,97,115,115,32,97,32,115,99,111,112,101,100,32,115,108,111,116,32,102,117,110,99,116,105,111,110,32,114,101,102,101,114,101,110,99,101,115,32,98,121,32,100,101,102,97,117,108,116,32,40,86,117,101,32,118,50,46,54,120,41,92,110,32,32,32,32,32,32,47,47,32,65,110,100,32,112,97,115,115,32,116,104,101,32,116,105,116,108,101,32,112,114,111,112,32,97,115,32,97,32,102,97,108,108,98,97,99,107,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,67,111,110,116,101,110,116,40,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,32,124,124,32,116,104,105,115,46,99,111,110,116,101,110,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,84,105,116,108,101,40,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,83,76,79,84,95,78,65,77,69,95,84,73,84,76,69,41,32,124,124,32,116,104,105,115,46,116,105,116,108,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,47,47,32,82,101,110,100,101,114,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,100,32,98,121,32,66,84,111,111,108,116,105,112,92,110,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,112,111,112,111,118,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,80,114,111,103,114,101,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,103,114,101,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,80,114,111,103,114,101,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,80,114,111,103,114,101,115,115,66,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,103,114,101,115,115,95,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,80,114,111,103,114,101,115,115,66,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,114,111,103,114,101,115,115,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,114,111,103,114,101,115,115,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,103,114,101,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,103,114,101,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,112,114,111,103,114,101,115,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,103,114,101,115,115,95,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,103,114,101,115,115,45,98,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,112,114,111,103,114,101,115,115,45,98,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,80,114,111,103,114,101,115,115,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,80,114,111,103,114,101,115,115,58,32,95,112,114,111,103,114,101,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,80,114,111,103,114,101,115,115,44,92,110,32,32,32,32,66,80,114,111,103,114,101,115,115,66,97,114,58,32,95,112,114,111,103,114,101,115,115,95,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,80,114,111,103,114,101,115,115,66,97,114,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,112,114,111,103,114,101,115,115,45,98,97,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,112,114,111,103,114,101,115,115,45,98,97,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,80,114,111,103,114,101,115,115,66,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,80,114,111,103,114,101,115,115,66,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,110,105,109,97,116,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,110,117,108,108,41,44,92,110,32,32,108,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,108,97,98,101,108,72,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,109,97,120,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,110,117,108,108,41,44,92,110,32,32,112,114,101,99,105,115,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,110,117,108,108,41,44,92,110,32,32,115,104,111,119,80,114,111,103,114,101,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,110,117,108,108,41,44,92,110,32,32,115,104,111,119,86,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,110,117,108,108,41,44,92,110,32,32,115,116,114,105,112,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,110,117,108,108,41,44,92,110,32,32,118,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,48,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,80,82,79,71,82,69,83,83,95,66,65,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,80,114,111,103,114,101,115,115,66,97,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,80,82,79,71,82,69,83,83,95,66,65,82,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,105,110,106,101,99,116,58,32,123,92,110,32,32,32,32,98,118,80,114,111,103,114,101,115,115,58,32,123,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,112,114,111,103,114,101,115,115,66,97,114,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,112,114,111,103,114,101,115,115,66,97,114,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,111,109,112,117,116,101,100,65,110,105,109,97,116,101,100,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,110,105,109,97,116,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,32,63,32,92,34,98,103,45,92,34,46,99,111,110,99,97,116,40,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,41,32,58,32,39,39,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,114,105,112,101,100,32,124,124,32,99,111,109,112,117,116,101,100,65,110,105,109,97,116,101,100,32,63,32,39,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,100,39,32,58,32,39,39,44,32,99,111,109,112,117,116,101,100,65,110,105,109,97,116,101,100,32,63,32,39,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,39,32,58,32,39,39,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,114,111,103,114,101,115,115,66,97,114,83,116,121,108,101,115,58,32,102,117,110,99,116,105,111,110,32,112,114,111,103,114,101,115,115,66,97,114,83,116,121,108,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,49,48,48,32,42,32,40,116,104,105,115,46,99,111,109,112,117,116,101,100,86,97,108,117,101,32,47,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,41,32,43,32,39,37,39,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,86,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,86,97,108,117,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,116,104,105,115,46,118,97,108,117,101,44,32,48,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,77,97,120,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,77,97,120,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,114,101,102,101,114,32,111,117,114,32,109,97,120,32,111,118,101,114,32,112,97,114,101,110,116,32,115,101,116,116,105,110,103,92,110,32,32,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,116,111,32,96,49,48,48,96,32,102,111,114,32,105,110,118,97,108,105,100,32,118,97,108,117,101,115,32,40,96,45,120,96,44,32,96,48,96,44,32,96,78,97,78,96,41,92,110,32,32,32,32,32,32,118,97,114,32,109,97,120,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,116,104,105,115,46,109,97,120,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,116,104,105,115,46,98,118,80,114,111,103,114,101,115,115,46,109,97,120,44,32,48,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,120,32,62,32,48,32,63,32,109,97,120,32,58,32,49,48,48,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,114,101,102,101,114,32,111,117,114,32,112,114,101,99,105,115,105,111,110,32,111,118,101,114,32,112,97,114,101,110,116,32,115,101,116,116,105,110,103,92,110,32,32,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,116,111,32,96,48,96,32,102,111,114,32,105,110,118,97,108,105,100,32,118,97,108,117,101,115,32,40,96,45,120,96,44,32,96,78,97,78,96,41,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,112,114,101,99,105,115,105,111,110,44,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,98,118,80,114,111,103,114,101,115,115,46,112,114,101,99,105,115,105,111,110,44,32,48,41,41,44,32,48,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,80,114,111,103,114,101,115,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,80,114,111,103,114,101,115,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,114,101,99,105,115,105,111,110,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,59,92,110,32,32,32,32,32,32,118,97,114,32,112,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,116,104,80,111,119,41,40,49,48,44,32,112,114,101,99,105,115,105,111,110,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,105,120,101,100,41,40,49,48,48,32,42,32,112,32,42,32,116,104,105,115,46,99,111,109,112,117,116,101,100,86,97,108,117,101,32,47,32,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,32,47,32,112,44,32,112,114,101,99,105,115,105,111,110,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,114,101,102,101,114,32,111,117,114,32,118,97,114,105,97,110,116,32,111,118,101,114,32,112,97,114,101,110,116,32,115,101,116,116,105,110,103,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,118,97,114,105,97,110,116,32,124,124,32,116,104,105,115,46,98,118,80,114,111,103,114,101,115,115,46,118,97,114,105,97,110,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,116,114,105,112,101,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,116,114,105,112,101,100,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,114,101,102,101,114,32,111,117,114,32,115,116,114,105,112,101,100,32,111,118,101,114,32,112,97,114,101,110,116,32,115,101,116,116,105,110,103,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,66,111,111,108,101,97,110,41,40,116,104,105,115,46,115,116,114,105,112,101,100,41,32,63,32,116,104,105,115,46,115,116,114,105,112,101,100,32,58,32,116,104,105,115,46,98,118,80,114,111,103,114,101,115,115,46,115,116,114,105,112,101,100,32,124,124,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,65,110,105,109,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,65,110,105,109,97,116,101,100,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,114,101,102,101,114,32,111,117,114,32,97,110,105,109,97,116,101,100,32,111,118,101,114,32,112,97,114,101,110,116,32,115,101,116,116,105,110,103,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,66,111,111,108,101,97,110,41,40,116,104,105,115,46,97,110,105,109,97,116,101,100,41,32,63,32,116,104,105,115,46,97,110,105,109,97,116,101,100,32,58,32,116,104,105,115,46,98,118,80,114,111,103,114,101,115,115,46,97,110,105,109,97,116,101,100,32,124,124,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,104,111,119,80,114,111,103,114,101,115,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,104,111,119,80,114,111,103,114,101,115,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,114,101,102,101,114,32,111,117,114,32,115,104,111,119,80,114,111,103,114,101,115,115,32,111,118,101,114,32,112,97,114,101,110,116,32,115,101,116,116,105,110,103,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,66,111,111,108,101,97,110,41,40,116,104,105,115,46,115,104,111,119,80,114,111,103,114,101,115,115,41,32,63,32,116,104,105,115,46,115,104,111,119,80,114,111,103,114,101,115,115,32,58,32,116,104,105,115,46,98,118,80,114,111,103,114,101,115,115,46,115,104,111,119,80,114,111,103,114,101,115,115,32,124,124,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,104,111,119,86,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,104,111,119,86,97,108,117,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,114,101,102,101,114,32,111,117,114,32,115,104,111,119,86,97,108,117,101,32,111,118,101,114,32,112,97,114,101,110,116,32,115,101,116,116,105,110,103,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,66,111,111,108,101,97,110,41,40,116,104,105,115,46,115,104,111,119,86,97,108,117,101,41,32,63,32,116,104,105,115,46,115,104,111,119,86,97,108,117,101,32,58,32,116,104,105,115,46,98,118,80,114,111,103,114,101,115,115,46,115,104,111,119,86,97,108,117,101,32,124,124,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,108,97,98,101,108,32,61,32,116,104,105,115,46,108,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,108,97,98,101,108,72,116,109,108,32,61,32,116,104,105,115,46,108,97,98,101,108,72,116,109,108,44,92,110,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,86,97,108,117,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,86,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,59,92,110,32,32,32,32,118,97,114,32,36,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,100,111,109,80,114,111,112,115,32,61,32,123,125,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,41,41,32,123,92,110,32,32,32,32,32,32,36,99,104,105,108,100,114,101,110,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,108,97,98,101,108,32,124,124,32,108,97,98,101,108,72,116,109,108,41,32,123,92,110,32,32,32,32,32,32,100,111,109,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,108,97,98,101,108,72,116,109,108,44,32,108,97,98,101,108,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,99,111,109,112,117,116,101,100,83,104,111,119,80,114,111,103,114,101,115,115,41,32,123,92,110,32,32,32,32,32,32,36,99,104,105,108,100,114,101,110,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,80,114,111,103,114,101,115,115,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,99,111,109,112,117,116,101,100,83,104,111,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,36,99,104,105,108,100,114,101,110,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,105,120,101,100,41,40,99,111,109,112,117,116,101,100,86,97,108,117,101,44,32,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,112,114,111,103,114,101,115,115,45,98,97,114,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,112,114,111,103,114,101,115,115,66,97,114,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,116,104,105,115,46,112,114,111,103,114,101,115,115,66,97,114,83,116,121,108,101,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,112,114,111,103,114,101,115,115,98,97,114,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,118,97,108,117,101,109,105,110,39,58,32,39,48,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,118,97,108,117,101,109,97,120,39,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,116,111,83,116,114,105,110,103,41,40,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,41,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,118,97,108,117,101,110,111,119,39,58,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,105,120,101,100,41,40,99,111,109,112,117,116,101,100,86,97,108,117,101,44,32,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,41,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,100,111,109,80,114,111,112,115,92,110,32,32,32,32,125,44,32,36,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,112,114,111,103,114,101,115,115,45,98,97,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,112,114,111,103,114,101,115,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,112,114,111,103,114,101,115,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,80,114,111,103,114,101,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,80,114,111,103,114,101,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,103,114,101,115,115,95,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,103,114,101,115,115,45,98,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,112,114,111,103,114,101,115,115,45,98,97,114,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,103,114,101,115,115,66,97,114,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,95,112,114,111,103,114,101,115,115,95,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,91,39,108,97,98,101,108,39,44,32,39,108,97,98,101,108,72,116,109,108,39,93,41,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,112,114,111,103,114,101,115,115,66,97,114,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,110,105,109,97,116,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,104,101,105,103,104,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,109,97,120,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,49,48,48,41,44,92,110,32,32,112,114,101,99,105,115,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,48,41,44,92,110,32,32,115,104,111,119,80,114,111,103,114,101,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,104,111,119,86,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,116,114,105,112,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,80,82,79,71,82,69,83,83,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,80,114,111,103,114,101,115,115,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,80,82,79,71,82,69,83,83,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,118,105,100,101,58,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,98,118,80,114,111,103,114,101,115,115,58,32,116,104,105,115,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,112,114,111,103,114,101,115,115,72,101,105,103,104,116,58,32,102,117,110,99,116,105,111,110,32,112,114,111,103,114,101,115,115,72,101,105,103,104,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,116,104,105,115,46,104,101,105,103,104,116,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,36,99,104,105,108,100,78,111,100,101,115,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,36,99,104,105,108,100,78,111,100,101,115,41,32,123,92,110,32,32,32,32,32,32,36,99,104,105,108,100,78,111,100,101,115,32,61,32,104,40,95,112,114,111,103,114,101,115,115,95,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,80,114,111,103,114,101,115,115,66,97,114,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,112,114,111,103,114,101,115,115,66,97,114,80,114,111,112,115,44,32,116,104,105,115,46,36,112,114,111,112,115,41,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,112,114,111,103,114,101,115,115,39,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,116,104,105,115,46,112,114,111,103,114,101,115,115,72,101,105,103,104,116,92,110,32,32,32,32,125,44,32,91,36,99,104,105,108,100,78,111,100,101,115,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,112,114,111,103,114,101,115,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,105,100,101,98,97,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,105,100,101,98,97,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,105,100,101,98,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,105,100,101,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,83,105,100,101,98,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,105,100,101,98,97,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,105,100,101,98,97,114,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,105,100,101,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,105,100,101,98,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,105,100,101,98,97,114,47,115,105,100,101,98,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,83,105,100,101,98,97,114,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,83,105,100,101,98,97,114,58,32,95,115,105,100,101,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,83,105,100,101,98,97,114,92,110,32,32,125,44,92,110,32,32,112,108,117,103,105,110,115,58,32,123,92,110,32,32,32,32,86,66,84,111,103,103,108,101,80,108,117,103,105,110,58,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,86,66,84,111,103,103,108,101,80,108,117,103,105,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,105,100,101,98,97,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,105,100,101,98,97,114,47,115,105,100,101,98,97,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,105,100,101,98,97,114,47,115,105,100,101,98,97,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,105,100,101,98,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,83,105,100,101,98,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,105,99,111,110,115,47,105,99,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,105,116,105,111,110,95,98,118,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,67,76,65,83,83,95,78,65,77,69,32,61,32,39,98,45,115,105,100,101,98,97,114,39,59,92,110,118,97,114,32,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,82,69,81,85,69,83,84,95,83,84,65,84,69,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,32,39,114,101,113,117,101,115,116,45,115,116,97,116,101,39,41,59,92,110,118,97,114,32,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,84,79,71,71,76,69,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,32,39,116,111,103,103,108,101,39,41,59,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,84,65,84,69,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,32,39,115,116,97,116,101,39,41,59,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,89,78,67,95,83,84,65,84,69,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,32,39,115,121,110,99,45,115,116,97,116,101,39,41,59,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,105,115,105,98,108,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,92,110,32,32,100,101,102,97,117,108,116,86,97,108,117,101,58,32,102,97,108,115,101,44,92,110,32,32,101,118,101,110,116,58,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,114,105,97,76,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,97,114,105,97,76,97,98,101,108,108,101,100,98,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,73,102,32,96,116,114,117,101,96,44,32,115,104,111,119,115,32,97,32,98,97,115,105,99,32,98,97,99,107,100,114,111,112,92,110,32,32,98,97,99,107,100,114,111,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,98,97,99,107,100,114,111,112,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,97,114,107,39,41,44,92,110,32,32,98,103,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,108,105,103,104,116,39,41,44,92,110,32,32,98,111,100,121,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,96,97,114,105,97,45,108,97,98,101,108,96,32,102,111,114,32,99,108,111,115,101,32,98,117,116,116,111,110,92,110,32,32,99,108,111,115,101,76,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,102,111,111,116,101,114,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,104,101,97,100,101,114,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,108,97,122,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,67,108,111,115,101,79,110,66,97,99,107,100,114,111,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,67,108,111,115,101,79,110,69,115,99,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,67,108,111,115,101,79,110,82,111,117,116,101,67,104,97,110,103,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,69,110,102,111,114,99,101,70,111,99,117,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,72,101,97,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,72,101,97,100,101,114,67,108,111,115,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,83,108,105,100,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,105,103,104,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,104,97,100,111,119,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,44,92,110,32,32,115,105,100,101,98,97,114,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,44,92,110,32,32,116,101,120,116,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,97,114,107,39,41,44,92,110,32,32,116,105,116,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,119,105,100,116,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,122,73,110,100,101,120,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,83,73,68,69,66,65,82,41,59,32,47,47,32,45,45,45,32,82,101,110,100,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,92,110,118,97,114,32,114,101,110,100,101,114,72,101,97,100,101,114,84,105,116,108,101,32,61,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,72,101,97,100,101,114,84,105,116,108,101,40,104,44,32,99,116,120,41,32,123,92,110,32,32,47,47,32,82,101,110,100,101,114,32,97,32,101,109,112,116,121,32,96,60,115,112,97,110,62,96,32,119,104,101,110,32,116,111,32,116,105,116,108,101,32,119,97,115,32,112,114,111,118,105,100,101,100,92,110,32,32,118,97,114,32,116,105,116,108,101,32,61,32,99,116,120,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,83,76,79,84,95,78,65,77,69,95,84,73,84,76,69,44,32,99,116,120,46,115,108,111,116,83,99,111,112,101,41,32,124,124,32,99,116,120,46,116,105,116,108,101,59,92,110,92,110,32,32,105,102,32,40,33,116,105,116,108,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,115,112,97,110,39,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,104,40,39,115,116,114,111,110,103,39,44,32,123,92,110,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,105,100,58,32,99,116,120,46,115,97,102,101,73,100,40,39,95,95,116,105,116,108,101,95,95,39,41,92,110,32,32,32,32,125,92,110,32,32,125,44,32,91,116,105,116,108,101,93,41,59,92,110,125,59,92,110,92,110,118,97,114,32,114,101,110,100,101,114,72,101,97,100,101,114,67,108,111,115,101,32,61,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,72,101,97,100,101,114,67,108,111,115,101,40,104,44,32,99,116,120,41,32,123,92,110,32,32,105,102,32,40,99,116,120,46,110,111,72,101,97,100,101,114,67,108,111,115,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,108,111,115,101,76,97,98,101,108,32,61,32,99,116,120,46,99,108,111,115,101,76,97,98,101,108,44,92,110,32,32,32,32,32,32,116,101,120,116,86,97,114,105,97,110,116,32,61,32,99,116,120,46,116,101,120,116,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,104,105,100,101,32,61,32,99,116,120,46,104,105,100,101,59,92,110,32,32,114,101,116,117,114,110,32,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,66,117,116,116,111,110,67,108,111,115,101,44,32,123,92,110,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,97,114,105,97,76,97,98,101,108,58,32,99,108,111,115,101,76,97,98,101,108,44,92,110,32,32,32,32,32,32,116,101,120,116,86,97,114,105,97,110,116,58,32,116,101,120,116,86,97,114,105,97,110,116,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,99,108,105,99,107,58,32,104,105,100,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,102,58,32,39,99,108,111,115,101,45,98,117,116,116,111,110,39,92,110,32,32,125,44,32,91,99,116,120,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,83,76,79,84,95,78,65,77,69,95,72,69,65,68,69,82,95,67,76,79,83,69,41,32,124,124,32,104,40,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,66,73,99,111,110,88,41,93,41,59,92,110,125,59,92,110,92,110,118,97,114,32,114,101,110,100,101,114,72,101,97,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,72,101,97,100,101,114,40,104,44,32,99,116,120,41,32,123,92,110,32,32,105,102,32,40,99,116,120,46,110,111,72,101,97,100,101,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,99,116,120,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,83,76,79,84,95,78,65,77,69,95,72,69,65,68,69,82,44,32,99,116,120,46,115,108,111,116,83,99,111,112,101,41,59,92,110,92,110,32,32,105,102,32,40,33,36,99,111,110,116,101,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,36,116,105,116,108,101,32,61,32,114,101,110,100,101,114,72,101,97,100,101,114,84,105,116,108,101,40,104,44,32,99,116,120,41,59,92,110,32,32,32,32,118,97,114,32,36,99,108,111,115,101,32,61,32,114,101,110,100,101,114,72,101,97,100,101,114,67,108,111,115,101,40,104,44,32,99,116,120,41,59,92,110,32,32,32,32,36,99,111,110,116,101,110,116,32,61,32,99,116,120,46,114,105,103,104,116,32,63,32,91,36,99,108,111,115,101,44,32,36,116,105,116,108,101,93,32,58,32,91,36,116,105,116,108,101,44,32,36,99,108,111,115,101,93,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,104,40,39,104,101,97,100,101,114,39,44,32,123,92,110,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,92,34,46,99,111,110,99,97,116,40,67,76,65,83,83,95,78,65,77,69,44,32,92,34,45,104,101,97,100,101,114,92,34,41,44,92,110,32,32,32,32,99,108,97,115,115,58,32,99,116,120,46,104,101,97,100,101,114,67,108,97,115,115,44,92,110,32,32,32,32,107,101,121,58,32,39,104,101,97,100,101,114,39,92,110,32,32,125,44,32,36,99,111,110,116,101,110,116,41,59,92,110,125,59,92,110,92,110,118,97,114,32,114,101,110,100,101,114,66,111,100,121,32,61,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,66,111,100,121,40,104,44,32,99,116,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,92,34,46,99,111,110,99,97,116,40,67,76,65,83,83,95,78,65,77,69,44,32,92,34,45,98,111,100,121,92,34,41,44,92,110,32,32,32,32,99,108,97,115,115,58,32,99,116,120,46,98,111,100,121,67,108,97,115,115,44,92,110,32,32,32,32,107,101,121,58,32,39,98,111,100,121,39,92,110,32,32,125,44,32,91,99,116,120,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,99,116,120,46,115,108,111,116,83,99,111,112,101,41,93,41,59,92,110,125,59,92,110,92,110,118,97,114,32,114,101,110,100,101,114,70,111,111,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,70,111,111,116,101,114,40,104,44,32,99,116,120,41,32,123,92,110,32,32,118,97,114,32,36,102,111,111,116,101,114,32,61,32,99,116,120,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,83,76,79,84,95,78,65,77,69,95,70,79,79,84,69,82,44,32,99,116,120,46,115,108,111,116,83,99,111,112,101,41,59,92,110,92,110,32,32,105,102,32,40,33,36,102,111,111,116,101,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,104,40,39,102,111,111,116,101,114,39,44,32,123,92,110,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,92,34,46,99,111,110,99,97,116,40,67,76,65,83,83,95,78,65,77,69,44,32,92,34,45,102,111,111,116,101,114,92,34,41,44,92,110,32,32,32,32,99,108,97,115,115,58,32,99,116,120,46,102,111,111,116,101,114,67,108,97,115,115,44,92,110,32,32,32,32,107,101,121,58,32,39,102,111,111,116,101,114,39,92,110,32,32,125,44,32,91,36,102,111,111,116,101,114,93,41,59,92,110,125,59,92,110,92,110,118,97,114,32,114,101,110,100,101,114,67,111,110,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,67,111,110,116,101,110,116,40,104,44,32,99,116,120,41,32,123,92,110,32,32,47,47,32,87,101,32,114,101,110,100,101,114,32,116,104,101,32,104,101,97,100,101,114,32,101,118,101,110,32,105,102,32,96,108,97,122,121,96,32,105,115,32,101,110,97,98,108,101,100,32,97,115,32,105,116,92,110,32,32,47,47,32,97,99,116,115,32,97,115,32,116,104,101,32,97,99,99,101,115,115,105,98,108,101,32,108,97,98,101,108,32,102,111,114,32,116,104,101,32,115,105,100,101,98,97,114,92,110,32,32,118,97,114,32,36,104,101,97,100,101,114,32,61,32,114,101,110,100,101,114,72,101,97,100,101,114,40,104,44,32,99,116,120,41,59,92,110,92,110,32,32,105,102,32,40,99,116,120,46,108,97,122,121,32,38,38,32,33,99,116,120,46,105,115,79,112,101,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,104,101,97,100,101,114,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,91,36,104,101,97,100,101,114,44,32,114,101,110,100,101,114,66,111,100,121,40,104,44,32,99,116,120,41,44,32,114,101,110,100,101,114,70,111,111,116,101,114,40,104,44,32,99,116,120,41,93,59,92,110,125,59,92,110,92,110,118,97,114,32,114,101,110,100,101,114,66,97,99,107,100,114,111,112,32,61,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,66,97,99,107,100,114,111,112,40,104,44,32,99,116,120,41,32,123,92,110,32,32,105,102,32,40,33,99,116,120,46,98,97,99,107,100,114,111,112,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,98,97,99,107,100,114,111,112,86,97,114,105,97,110,116,32,61,32,99,116,120,46,98,97,99,107,100,114,111,112,86,97,114,105,97,110,116,59,92,110,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,123,92,110,32,32,32,32,32,32,110,97,109,101,58,32,39,115,104,111,119,39,44,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,99,116,120,46,108,111,99,97,108,83,104,111,119,92,110,32,32,32,32,125,93,44,92,110,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,115,105,100,101,98,97,114,45,98,97,99,107,100,114,111,112,39,44,92,110,32,32,32,32,99,108,97,115,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,92,34,98,103,45,92,34,46,99,111,110,99,97,116,40,98,97,99,107,100,114,111,112,86,97,114,105,97,110,116,41,44,32,98,97,99,107,100,114,111,112,86,97,114,105,97,110,116,41,44,92,110,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,99,108,105,99,107,58,32,99,116,120,46,111,110,66,97,99,107,100,114,111,112,67,108,105,99,107,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,92,110,118,97,114,32,66,83,105,100,101,98,97,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,83,73,68,69,66,65,82,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,108,105,115,116,101,110,79,110,82,111,111,116,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,105,115,105,98,108,101,32,61,32,33,33,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,47,47,32,73,110,116,101,114,110,97,108,32,96,118,45,109,111,100,101,108,96,32,115,116,97,116,101,92,110,32,32,32,32,32,32,108,111,99,97,108,83,104,111,119,58,32,118,105,115,105,98,108,101,44,92,110,32,32,32,32,32,32,47,47,32,70,111,114,32,108,97,122,121,32,114,101,110,100,101,114,32,116,114,105,103,103,101,114,105,110,103,92,110,32,32,32,32,32,32,105,115,79,112,101,110,58,32,118,105,115,105,98,108,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,116,114,97,110,115,105,116,105,111,110,80,114,111,112,115,58,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,105,116,105,111,110,80,114,111,112,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,110,111,83,108,105,100,101,32,63,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,99,115,115,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,32,58,32,123,92,110,32,32,32,32,32,32,32,32,99,115,115,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,101,110,116,101,114,67,108,97,115,115,58,32,39,39,44,92,110,32,32,32,32,32,32,32,32,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,58,32,39,115,108,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,101,110,116,101,114,84,111,67,108,97,115,115,58,32,39,115,104,111,119,39,44,92,110,32,32,32,32,32,32,32,32,108,101,97,118,101,67,108,97,115,115,58,32,39,115,104,111,119,39,44,92,110,32,32,32,32,32,32,32,32,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,58,32,39,115,108,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,108,101,97,118,101,84,111,67,108,97,115,115,58,32,39,39,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,108,111,116,83,99,111,112,101,58,32,102,117,110,99,116,105,111,110,32,115,108,111,116,83,99,111,112,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,105,100,101,32,61,32,116,104,105,115,46,104,105,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,114,105,103,104,116,32,61,32,116,104,105,115,46,114,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,32,61,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,104,105,100,101,58,32,104,105,100,101,44,92,110,32,32,32,32,32,32,32,32,114,105,103,104,116,58,32,114,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,58,32,118,105,115,105,98,108,101,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,115,84,105,116,108,101,58,32,102,117,110,99,116,105,111,110,32,104,97,115,84,105,116,108,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,44,92,110,32,32,32,32,32,32,32,32,32,32,36,115,108,111,116,115,32,61,32,116,104,105,115,46,36,115,108,111,116,115,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,110,111,72,101,97,100,101,114,32,38,38,32,33,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,83,76,79,84,95,78,65,77,69,95,72,69,65,68,69,82,41,32,38,38,32,33,33,40,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,83,76,79,84,95,78,65,77,69,95,84,73,84,76,69,44,32,116,104,105,115,46,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,32,124,124,32,116,104,105,115,46,116,105,116,108,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,105,116,108,101,73,100,58,32,102,117,110,99,116,105,111,110,32,116,105,116,108,101,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,84,105,116,108,101,32,63,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,116,105,116,108,101,95,95,39,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,104,105,115,46,98,118,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,45,49,39,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,100,105,97,108,111,103,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,109,111,100,97,108,39,58,32,116,104,105,115,46,98,97,99,107,100,114,111,112,32,63,32,39,116,114,117,101,39,32,58,32,39,102,97,108,115,101,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,63,32,110,117,108,108,32,58,32,39,116,114,117,101,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,116,104,105,115,46,97,114,105,97,76,97,98,101,108,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,39,58,32,116,104,105,115,46,97,114,105,97,76,97,98,101,108,108,101,100,98,121,32,124,124,32,116,104,105,115,46,116,105,116,108,101,73,100,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,110,101,119,86,97,108,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,108,111,99,97,108,83,104,111,119,92,34,44,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,83,104,111,119,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,83,116,97,116,101,40,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,36,114,111,117,116,101,92,34,44,32,102,117,110,99,116,105,111,110,32,36,114,111,117,116,101,40,41,32,123,92,110,32,32,32,32,118,97,114,32,110,101,119,86,97,108,117,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,123,125,59,92,110,32,32,32,32,118,97,114,32,111,108,100,86,97,108,117,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,110,111,67,108,111,115,101,79,110,82,111,117,116,101,67,104,97,110,103,101,32,38,38,32,110,101,119,86,97,108,117,101,46,102,117,108,108,80,97,116,104,32,33,61,61,32,111,108,100,86,97,108,117,101,46,102,117,108,108,80,97,116,104,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,68,101,102,105,110,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,69,108,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,96,36,114,111,111,116,96,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,84,79,71,71,76,69,44,32,116,104,105,115,46,104,97,110,100,108,101,84,111,103,103,108,101,41,59,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,82,69,81,85,69,83,84,95,83,84,65,84,69,44,32,116,104,105,115,46,104,97,110,100,108,101,83,121,110,99,41,59,32,47,47,32,83,101,110,100,32,111,117,116,32,97,32,103,114,97,116,117,105,116,111,117,115,32,115,116,97,116,101,32,101,118,101,110,116,32,116,111,32,101,110,115,117,114,101,32,116,111,103,103,108,101,32,98,117,116,116,111,110,32,105,115,32,115,121,110,99,101,100,92,110,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,46,101,109,105,116,83,116,97,116,101,40,95,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,97,99,116,105,118,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,97,99,116,105,118,97,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,101,109,105,116,83,121,110,99,40,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,69,108,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,104,105,100,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,109,105,116,83,116,97,116,101,58,32,102,117,110,99,116,105,111,110,32,101,109,105,116,83,116,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,116,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,59,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,84,65,84,69,44,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,32,115,116,97,116,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,109,105,116,83,121,110,99,58,32,102,117,110,99,116,105,111,110,32,101,109,105,116,83,121,110,99,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,116,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,59,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,89,78,67,95,83,84,65,84,69,44,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,32,115,116,97,116,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,84,111,103,103,108,101,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,84,111,103,103,108,101,40,105,100,41,32,123,92,110,32,32,32,32,32,32,47,47,32,78,111,116,101,32,96,115,97,102,101,73,100,40,41,96,32,99,97,110,32,98,101,32,110,117,108,108,32,117,110,116,105,108,32,97,102,116,101,114,32,109,111,117,110,116,92,110,32,32,32,32,32,32,105,102,32,40,105,100,32,38,38,32,105,100,32,61,61,61,32,116,104,105,115,46,115,97,102,101,73,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,33,116,104,105,115,46,108,111,99,97,108,83,104,111,119,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,83,121,110,99,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,83,121,110,99,40,105,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,78,111,116,101,32,96,115,97,102,101,73,100,40,41,96,32,99,97,110,32,98,101,32,110,117,108,108,32,117,110,116,105,108,32,97,102,116,101,114,32,109,111,117,110,116,92,110,32,32,32,32,32,32,105,102,32,40,105,100,32,38,38,32,105,100,32,61,61,61,32,116,104,105,115,46,115,97,102,101,73,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,101,109,105,116,83,121,110,99,40,95,116,104,105,115,50,46,108,111,99,97,108,83,104,111,119,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,75,101,121,100,111,119,110,58,32,102,117,110,99,116,105,111,110,32,111,110,75,101,121,100,111,119,110,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,110,111,67,108,111,115,101,79,110,69,115,99,32,38,38,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,67,79,68,69,95,69,83,67,32,38,38,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,66,97,99,107,100,114,111,112,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,111,110,66,97,99,107,100,114,111,112,67,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,38,38,32,33,116,104,105,115,46,110,111,67,108,111,115,101,79,110,66,97,99,107,100,114,111,112,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,111,110,84,111,112,84,114,97,112,70,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,111,110,84,111,112,84,114,97,112,70,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,97,98,97,98,108,101,115,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,103,101,116,84,97,98,97,98,108,101,115,41,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,101,110,102,111,114,99,101,70,111,99,117,115,40,116,97,98,97,98,108,101,115,46,114,101,118,101,114,115,101,40,41,91,48,93,41,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,111,110,66,111,116,116,111,109,84,114,97,112,70,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,111,110,66,111,116,116,111,109,84,114,97,112,70,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,97,98,97,98,108,101,115,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,103,101,116,84,97,98,97,98,108,101,115,41,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,101,110,102,111,114,99,101,70,111,99,117,115,40,116,97,98,97,98,108,101,115,91,48,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,66,101,102,111,114,101,69,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,111,110,66,101,102,111,114,101,69,110,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,105,110,103,32,102,111,99,117,115,32,116,111,32,96,100,111,99,117,109,101,110,116,46,98,111,100,121,96,32,109,97,121,32,99,97,117,115,101,32,117,110,119,97,110,116,101,100,32,115,99,114,111,108,108,115,44,92,110,32,32,32,32,32,32,47,47,32,115,111,32,119,101,32,101,120,99,108,117,100,101,32,115,101,116,116,105,110,103,32,102,111,99,117,115,32,111,110,32,98,111,100,121,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,69,108,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,41,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,73,83,95,66,82,79,87,83,69,82,32,63,32,91,100,111,99,117,109,101,110,116,46,98,111,100,121,93,32,58,32,91,93,41,59,32,47,47,32,84,114,105,103,103,101,114,32,108,97,122,121,32,114,101,110,100,101,114,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,79,112,101,110,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,65,102,116,101,114,69,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,111,110,65,102,116,101,114,69,110,116,101,114,40,101,108,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,99,111,110,116,97,105,110,115,41,40,101,108,44,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,41,40,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,110,102,111,114,99,101,70,111,99,117,115,40,101,108,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,65,102,116,101,114,76,101,97,118,101,58,32,102,117,110,99,116,105,111,110,32,111,110,65,102,116,101,114,76,101,97,118,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,101,110,102,111,114,99,101,70,111,99,117,115,40,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,69,108,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,69,108,32,61,32,110,117,108,108,59,32,47,47,32,84,114,105,103,103,101,114,32,108,97,122,121,32,114,101,110,100,101,114,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,79,112,101,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,110,102,111,114,99,101,70,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,101,110,102,111,114,99,101,70,111,99,117,115,40,101,108,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,110,111,69,110,102,111,114,99,101,70,111,99,117,115,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,101,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,114,101,102,59,92,110,92,110,32,32,32,32,118,97,114,32,98,103,86,97,114,105,97,110,116,32,61,32,116,104,105,115,46,98,103,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,32,61,32,116,104,105,115,46,119,105,100,116,104,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,86,97,114,105,97,110,116,32,61,32,116,104,105,115,46,116,101,120,116,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,108,111,99,97,108,83,104,111,119,32,61,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,59,92,110,32,32,32,32,118,97,114,32,115,104,97,100,111,119,32,61,32,116,104,105,115,46,115,104,97,100,111,119,32,61,61,61,32,39,39,32,63,32,116,114,117,101,32,58,32,116,104,105,115,46,115,104,97,100,111,119,59,92,110,32,32,32,32,118,97,114,32,36,115,105,100,101,98,97,114,32,61,32,104,40,116,104,105,115,46,116,97,103,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,67,76,65,83,83,95,78,65,77,69,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,40,95,114,101,102,32,61,32,123,92,110,32,32,32,32,32,32,32,32,115,104,97,100,111,119,58,32,115,104,97,100,111,119,32,61,61,61,32,116,114,117,101,92,110,32,32,32,32,32,32,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,115,104,97,100,111,119,45,92,34,46,99,111,110,99,97,116,40,115,104,97,100,111,119,41,44,32,115,104,97,100,111,119,32,38,38,32,115,104,97,100,111,119,32,33,61,61,32,116,114,117,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,92,34,46,99,111,110,99,97,116,40,67,76,65,83,83,95,78,65,77,69,44,32,92,34,45,114,105,103,104,116,92,34,41,44,32,116,104,105,115,46,114,105,103,104,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,98,103,45,92,34,46,99,111,110,99,97,116,40,98,103,86,97,114,105,97,110,116,41,44,32,98,103,86,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,116,101,120,116,86,97,114,105,97,110,116,41,44,32,116,101,120,116,86,97,114,105,97,110,116,41,44,32,95,114,101,102,41,44,32,116,104,105,115,46,115,105,100,101,98,97,114,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,119,105,100,116,104,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,92,110,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,39,115,104,111,119,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,108,111,99,97,108,83,104,111,119,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,99,111,110,116,101,110,116,39,92,110,32,32,32,32,125,44,32,91,114,101,110,100,101,114,67,111,110,116,101,110,116,40,104,44,32,116,104,105,115,41,93,41,59,92,110,32,32,32,32,36,115,105,100,101,98,97,114,32,61,32,104,40,39,116,114,97,110,115,105,116,105,111,110,39,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,80,114,111,112,115,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,98,101,102,111,114,101,69,110,116,101,114,58,32,116,104,105,115,46,111,110,66,101,102,111,114,101,69,110,116,101,114,44,92,110,32,32,32,32,32,32,32,32,97,102,116,101,114,69,110,116,101,114,58,32,116,104,105,115,46,111,110,65,102,116,101,114,69,110,116,101,114,44,92,110,32,32,32,32,32,32,32,32,97,102,116,101,114,76,101,97,118,101,58,32,116,104,105,115,46,111,110,65,102,116,101,114,76,101,97,118,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,115,105,100,101,98,97,114,93,41,59,92,110,32,32,32,32,118,97,114,32,36,98,97,99,107,100,114,111,112,32,61,32,104,40,95,116,114,97,110,115,105,116,105,111,110,95,98,118,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,66,86,84,114,97,110,115,105,116,105,111,110,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,110,111,70,97,100,101,58,32,116,104,105,115,46,110,111,83,108,105,100,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,114,101,110,100,101,114,66,97,99,107,100,114,111,112,40,104,44,32,116,104,105,115,41,93,41,59,92,110,32,32,32,32,118,97,114,32,36,116,97,98,84,114,97,112,84,111,112,32,61,32,104,40,41,59,92,110,32,32,32,32,118,97,114,32,36,116,97,98,84,114,97,112,66,111,116,116,111,109,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,98,97,99,107,100,114,111,112,32,38,38,32,108,111,99,97,108,83,104,111,119,41,32,123,92,110,32,32,32,32,32,32,36,116,97,98,84,114,97,112,84,111,112,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,48,39,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,111,99,117,115,58,32,116,104,105,115,46,111,110,84,111,112,84,114,97,112,70,111,99,117,115,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,36,116,97,98,84,114,97,112,66,111,116,116,111,109,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,48,39,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,111,99,117,115,58,32,116,104,105,115,46,111,110,66,111,116,116,111,109,84,114,97,112,70,111,99,117,115,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,115,105,100,101,98,97,114,45,111,117,116,101,114,39,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,123,92,110,32,32,32,32,32,32,32,32,122,73,110,100,101,120,58,32,116,104,105,115,46,122,73,110,100,101,120,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,45,49,39,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,111,110,75,101,121,100,111,119,110,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,116,97,98,84,114,97,112,84,111,112,44,32,36,115,105,100,101,98,97,114,44,32,36,116,97,98,84,114,97,112,66,111,116,116,111,109,44,32,36,98,97,99,107,100,114,111,112,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,105,100,101,98,97,114,47,115,105,100,101,98,97,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,107,101,108,101,116,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,107,101,108,101,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,83,107,101,108,101,116,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,107,101,108,101,116,111,110,73,99,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,107,101,108,101,116,111,110,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,83,107,101,108,101,116,111,110,73,99,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,107,101,108,101,116,111,110,73,109,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,107,101,108,101,116,111,110,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,83,107,101,108,101,116,111,110,73,109,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,107,101,108,101,116,111,110,84,97,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,107,101,108,101,116,111,110,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,83,107,101,108,101,116,111,110,84,97,98,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,107,101,108,101,116,111,110,87,114,97,112,112,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,107,101,108,101,116,111,110,95,119,114,97,112,112,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,83,107,101,108,101,116,111,110,87,114,97,112,112,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,107,101,108,101,116,111,110,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,107,101,108,101,116,111,110,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,107,101,108,101,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,107,101,108,101,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,107,101,108,101,116,111,110,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,107,101,108,101,116,111,110,45,105,99,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,105,99,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,107,101,108,101,116,111,110,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,107,101,108,101,116,111,110,45,105,109,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,105,109,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,107,101,108,101,116,111,110,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,107,101,108,101,116,111,110,45,116,97,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,116,97,98,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,107,101,108,101,116,111,110,95,119,114,97,112,112,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,107,101,108,101,116,111,110,45,119,114,97,112,112,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,119,114,97,112,112,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,83,107,101,108,101,116,111,110,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,83,107,101,108,101,116,111,110,58,32,95,115,107,101,108,101,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,83,107,101,108,101,116,111,110,44,92,110,32,32,32,32,66,83,107,101,108,101,116,111,110,73,99,111,110,58,32,95,115,107,101,108,101,116,111,110,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,83,107,101,108,101,116,111,110,73,99,111,110,44,92,110,32,32,32,32,66,83,107,101,108,101,116,111,110,73,109,103,58,32,95,115,107,101,108,101,116,111,110,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,83,107,101,108,101,116,111,110,73,109,103,44,92,110,32,32,32,32,66,83,107,101,108,101,116,111,110,84,97,98,108,101,58,32,95,115,107,101,108,101,116,111,110,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,83,107,101,108,101,116,111,110,84,97,98,108,101,44,92,110,32,32,32,32,66,83,107,101,108,101,116,111,110,87,114,97,112,112,101,114,58,32,95,115,107,101,108,101,116,111,110,95,119,114,97,112,112,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,83,107,101,108,101,116,111,110,87,114,97,112,112,101,114,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,105,99,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,105,99,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,107,101,108,101,116,111,110,73,99,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,83,107,101,108,101,116,111,110,73,99,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,105,99,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,110,105,109,97,116,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,119,97,118,101,39,41,44,92,110,32,32,105,99,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,105,99,111,110,80,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,44,32,123,125,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,83,75,69,76,69,84,79,78,95,73,67,79,78,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,83,107,101,108,101,116,111,110,73,99,111,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,83,75,69,76,69,84,79,78,95,73,67,79,78,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,59,92,110,32,32,32,32,118,97,114,32,105,99,111,110,32,61,32,112,114,111,112,115,46,105,99,111,110,44,92,110,32,32,32,32,32,32,32,32,97,110,105,109,97,116,105,111,110,32,61,32,112,114,111,112,115,46,97,110,105,109,97,116,105,111,110,59,92,110,32,32,32,32,118,97,114,32,36,105,99,111,110,32,61,32,104,40,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,73,99,111,110,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,115,107,101,108,101,116,111,110,45,105,99,111,110,39,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,112,114,111,112,115,46,105,99,111,110,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,105,99,111,110,58,32,105,99,111,110,92,110,32,32,32,32,32,32,125,41,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,115,107,101,108,101,116,111,110,45,105,99,111,110,45,119,114,97,112,112,101,114,32,112,111,115,105,116,105,111,110,45,114,101,108,97,116,105,118,101,32,100,45,105,110,108,105,110,101,45,98,108,111,99,107,32,111,118,101,114,102,108,111,119,45,104,105,100,100,101,110,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,92,34,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,92,34,46,99,111,110,99,97,116,40,97,110,105,109,97,116,105,111,110,41,44,32,97,110,105,109,97,116,105,111,110,41,92,110,32,32,32,32,125,44,32,91,36,105,99,111,110,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,105,99,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,105,109,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,105,109,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,107,101,108,101,116,111,110,73,109,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,83,107,101,108,101,116,111,110,73,109,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,97,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,115,112,101,99,116,47,97,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,107,101,108,101,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,107,101,108,101,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,110,105,109,97,116,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,97,115,112,101,99,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,49,54,58,57,39,41,44,92,110,32,32,99,97,114,100,73,109,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,104,101,105,103,104,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,110,111,65,115,112,101,99,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,119,105,100,116,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,83,75,69,76,69,84,79,78,95,73,77,71,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,83,107,101,108,101,116,111,110,73,109,103,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,83,75,69,76,69,84,79,78,95,73,77,71,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,59,92,110,32,32,32,32,118,97,114,32,97,115,112,101,99,116,32,61,32,112,114,111,112,115,46,97,115,112,101,99,116,44,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,32,61,32,112,114,111,112,115,46,119,105,100,116,104,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,32,61,32,112,114,111,112,115,46,104,101,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,97,110,105,109,97,116,105,111,110,32,61,32,112,114,111,112,115,46,97,110,105,109,97,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,99,97,114,100,73,109,103,32,61,32,112,114,111,112,115,46,99,97,114,100,73,109,103,59,92,110,32,32,32,32,118,97,114,32,36,105,109,103,32,61,32,104,40,95,115,107,101,108,101,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,83,107,101,108,101,116,111,110,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,116,121,112,101,58,32,39,105,109,103,39,44,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,119,105,100,116,104,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,104,101,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,97,110,105,109,97,116,105,111,110,58,32,97,110,105,109,97,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,118,97,114,105,97,110,116,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,92,34,99,97,114,100,45,105,109,103,45,92,34,46,99,111,110,99,97,116,40,99,97,114,100,73,109,103,41,44,32,99,97,114,100,73,109,103,41,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,115,46,110,111,65,115,112,101,99,116,32,63,32,36,105,109,103,32,58,32,104,40,95,97,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,65,115,112,101,99,116,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,97,115,112,101,99,116,58,32,97,115,112,101,99,116,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,105,109,103,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,105,109,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,116,97,98,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,116,97,98,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,107,101,108,101,116,111,110,84,97,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,83,107,101,108,101,116,111,110,84,97,98,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,107,101,108,101,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,107,101,108,101,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,97,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,45,115,105,109,112,108,101,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,92,110,118,97,114,32,105,115,80,111,115,105,116,105,118,101,78,117,109,98,101,114,32,61,32,102,117,110,99,116,105,111,110,32,105,115,80,111,115,105,116,105,118,101,78,117,109,98,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,62,32,48,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,110,105,109,97,116,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,99,111,108,117,109,110,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,44,32,53,44,32,105,115,80,111,115,105,116,105,118,101,78,117,109,98,101,114,41,44,92,110,32,32,104,105,100,101,72,101,97,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,111,119,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,44,32,51,44,32,105,115,80,111,115,105,116,105,118,101,78,117,109,98,101,114,41,44,92,110,32,32,115,104,111,119,70,111,111,116,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,98,108,101,80,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,44,32,123,125,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,83,75,69,76,69,84,79,78,95,84,65,66,76,69,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,83,107,101,108,101,116,111,110,84,97,98,108,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,83,75,69,76,69,84,79,78,95,84,65,66,76,69,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,59,92,110,32,32,32,32,118,97,114,32,97,110,105,109,97,116,105,111,110,32,61,32,112,114,111,112,115,46,97,110,105,109,97,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,99,111,108,117,109,110,115,32,61,32,112,114,111,112,115,46,99,111,108,117,109,110,115,59,92,110,32,32,32,32,118,97,114,32,36,116,104,32,61,32,104,40,39,116,104,39,44,32,91,104,40,95,115,107,101,108,101,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,83,107,101,108,101,116,111,110,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,97,110,105,109,97,116,105,111,110,58,32,97,110,105,109,97,116,105,111,110,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,93,41,59,92,110,32,32,32,32,118,97,114,32,36,116,104,84,114,32,61,32,104,40,39,116,114,39,44,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,99,114,101,97,116,101,65,114,114,97,121,41,40,99,111,108,117,109,110,115,44,32,36,116,104,41,41,59,92,110,32,32,32,32,118,97,114,32,36,116,100,32,61,32,104,40,39,116,100,39,44,32,91,104,40,95,115,107,101,108,101,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,83,107,101,108,101,116,111,110,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,55,53,37,39,44,92,110,32,32,32,32,32,32,32,32,97,110,105,109,97,116,105,111,110,58,32,97,110,105,109,97,116,105,111,110,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,93,41,59,92,110,32,32,32,32,118,97,114,32,36,116,100,84,114,32,61,32,104,40,39,116,114,39,44,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,99,114,101,97,116,101,65,114,114,97,121,41,40,99,111,108,117,109,110,115,44,32,36,116,100,41,41,59,92,110,32,32,32,32,118,97,114,32,36,116,98,111,100,121,32,61,32,104,40,39,116,98,111,100,121,39,44,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,99,114,101,97,116,101,65,114,114,97,121,41,40,112,114,111,112,115,46,114,111,119,115,44,32,36,116,100,84,114,41,41,59,92,110,32,32,32,32,118,97,114,32,36,116,104,101,97,100,32,61,32,33,112,114,111,112,115,46,104,105,100,101,72,101,97,100,101,114,32,63,32,104,40,39,116,104,101,97,100,39,44,32,91,36,116,104,84,114,93,41,32,58,32,104,40,41,59,92,110,32,32,32,32,118,97,114,32,36,116,102,111,111,116,32,61,32,112,114,111,112,115,46,115,104,111,119,70,111,111,116,101,114,32,63,32,104,40,39,116,102,111,111,116,39,44,32,91,36,116,104,84,114,93,41,32,58,32,104,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,84,97,98,108,101,83,105,109,112,108,101,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,112,114,111,112,115,46,116,97,98,108,101,80,114,111,112,115,41,92,110,32,32,32,32,125,44,32,91,36,116,104,101,97,100,44,32,36,116,98,111,100,121,44,32,36,116,102,111,111,116,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,116,97,98,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,119,114,97,112,112,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,119,114,97,112,112,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,107,101,108,101,116,111,110,87,114,97,112,112,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,83,107,101,108,101,116,111,110,87,114,97,112,112,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,108,111,97,100,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,83,75,69,76,69,84,79,78,95,87,82,65,80,80,69,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,83,107,101,108,101,116,111,110,87,114,97,112,112,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,83,75,69,76,69,84,79,78,95,87,82,65,80,80,69,82,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,115,108,111,116,115,32,61,32,95,114,101,102,46,115,108,111,116,115,44,92,110,32,32,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,32,61,32,95,114,101,102,46,115,99,111,112,101,100,83,108,111,116,115,59,92,110,32,32,32,32,118,97,114,32,36,115,108,111,116,115,32,61,32,115,108,111,116,115,40,41,59,92,110,32,32,32,32,118,97,114,32,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,115,99,111,112,101,100,83,108,111,116,115,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,115,108,111,116,83,99,111,112,101,32,61,32,123,125,59,92,110,92,110,32,32,32,32,105,102,32,40,112,114,111,112,115,46,108,111,97,100,105,110,103,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,97,108,101,114,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,39,112,111,108,105,116,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,98,117,115,121,39,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,115,107,101,108,101,116,111,110,45,119,114,97,112,112,101,114,39,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,108,111,97,100,105,110,103,39,92,110,32,32,32,32,32,32,125,41,44,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,83,76,79,84,95,78,65,77,69,95,76,79,65,68,73,78,71,44,32,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,115,108,111,116,83,99,111,112,101,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,119,114,97,112,112,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,107,101,108,101,116,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,83,107,101,108,101,116,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,110,105,109,97,116,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,119,97,118,101,39,41,44,92,110,32,32,104,101,105,103,104,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,115,105,122,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,121,112,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,116,101,120,116,39,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,119,105,100,116,104,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,83,75,69,76,69,84,79,78,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,83,107,101,108,101,116,111,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,83,75,69,76,69,84,79,78,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,95,99,108,97,115,115,59,92,110,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,59,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,112,114,111,112,115,46,115,105,122,101,44,92,110,32,32,32,32,32,32,32,32,97,110,105,109,97,116,105,111,110,32,61,32,112,114,111,112,115,46,97,110,105,109,97,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,118,97,114,105,97,110,116,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,115,107,101,108,101,116,111,110,39,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,115,105,122,101,32,124,124,32,112,114,111,112,115,46,119,105,100,116,104,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,115,105,122,101,32,124,124,32,112,114,111,112,115,46,104,101,105,103,104,116,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,40,95,99,108,97,115,115,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,98,45,115,107,101,108,101,116,111,110,45,92,34,46,99,111,110,99,97,116,40,112,114,111,112,115,46,116,121,112,101,41,44,32,116,114,117,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,92,34,46,99,111,110,99,97,116,40,97,110,105,109,97,116,105,111,110,41,44,32,97,110,105,109,97,116,105,111,110,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,98,103,45,92,34,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,44,32,118,97,114,105,97,110,116,41,44,32,95,99,108,97,115,115,41,92,110,32,32,32,32,125,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,112,105,110,110,101,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,112,105,110,110,101,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,112,105,110,110,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,112,105,110,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,83,112,105,110,110,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,112,105,110,110,101,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,112,105,110,110,101,114,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,112,105,110,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,112,105,110,110,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,112,105,110,110,101,114,47,115,112,105,110,110,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,83,112,105,110,110,101,114,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,83,112,105,110,110,101,114,58,32,95,115,112,105,110,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,83,112,105,110,110,101,114,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,112,105,110,110,101,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,112,105,110,110,101,114,47,115,112,105,110,110,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,112,105,110,110,101,114,47,115,112,105,110,110,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,112,105,110,110,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,83,112,105,110,110,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,108,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,114,111,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,116,97,116,117,115,39,41,44,92,110,32,32,115,109,97,108,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,115,112,97,110,39,41,44,92,110,32,32,116,121,112,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,98,111,114,100,101,114,39,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,83,80,73,78,78,69,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,83,112,105,110,110,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,83,80,73,78,78,69,82,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,95,99,108,97,115,115,59,92,110,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,115,108,111,116,115,32,61,32,95,114,101,102,46,115,108,111,116,115,44,92,110,32,32,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,32,61,32,95,114,101,102,46,115,99,111,112,101,100,83,108,111,116,115,59,92,110,32,32,32,32,118,97,114,32,36,115,108,111,116,115,32,61,32,115,108,111,116,115,40,41,59,92,110,32,32,32,32,118,97,114,32,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,115,99,111,112,101,100,83,108,111,116,115,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,36,108,97,98,101,108,32,61,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,76,65,66,69,76,44,32,123,125,44,32,36,115,99,111,112,101,100,83,108,111,116,115,44,32,36,115,108,111,116,115,41,32,124,124,32,112,114,111,112,115,46,108,97,98,101,108,59,92,110,92,110,32,32,32,32,105,102,32,40,36,108,97,98,101,108,41,32,123,92,110,32,32,32,32,32,32,36,108,97,98,101,108,32,61,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,115,114,45,111,110,108,121,39,92,110,32,32,32,32,32,32,125,44,32,36,108,97,98,101,108,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,114,111,112,115,46,116,97,103,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,36,108,97,98,101,108,32,63,32,112,114,111,112,115,46,114,111,108,101,32,124,124,32,39,115,116,97,116,117,115,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,36,108,97,98,101,108,32,63,32,110,117,108,108,32,58,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,40,95,99,108,97,115,115,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,115,112,105,110,110,101,114,45,92,34,46,99,111,110,99,97,116,40,112,114,111,112,115,46,116,121,112,101,41,44,32,112,114,111,112,115,46,116,121,112,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,115,112,105,110,110,101,114,45,92,34,46,99,111,110,99,97,116,40,112,114,111,112,115,46,116,121,112,101,44,32,92,34,45,115,109,92,34,41,44,32,112,114,111,112,115,46,115,109,97,108,108,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,112,114,111,112,115,46,118,97,114,105,97,110,116,41,44,32,112,114,111,112,115,46,118,97,114,105,97,110,116,41,44,32,95,99,108,97,115,115,41,92,110,32,32,32,32,125,41,44,32,91,36,108,97,98,101,108,32,124,124,32,104,40,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,112,105,110,110,101,114,47,115,112,105,110,110,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,99,111,110,115,116,97,110,116,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,99,111,110,115,116,97,110,116,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,70,73,76,84,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,70,73,76,84,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,73,69,76,68,95,75,69,89,95,67,69,76,76,95,86,65,82,73,65,78,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,73,69,76,68,95,75,69,89,95,67,69,76,76,95,86,65,82,73,65,78,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,73,69,76,68,95,75,69,89,95,82,79,87,95,86,65,82,73,65,78,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,73,69,76,68,95,75,69,89,95,82,79,87,95,86,65,82,73,65,78,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,73,69,76,68,95,75,69,89,95,83,72,79,87,95,68,69,84,65,73,76,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,73,69,76,68,95,75,69,89,95,83,72,79,87,95,68,69,84,65,73,76,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,71,78,79,82,69,68,95,70,73,69,76,68,95,75,69,89,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,71,78,79,82,69,68,95,70,73,69,76,68,95,75,69,89,83,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,47,47,32,67,111,110,115,116,97,110,116,115,32,117,115,101,100,32,98,121,32,116,97,98,108,101,32,104,101,108,112,101,114,115,92,110,118,97,114,32,70,73,69,76,68,95,75,69,89,95,67,69,76,76,95,86,65,82,73,65,78,84,32,61,32,39,95,99,101,108,108,86,97,114,105,97,110,116,115,39,59,92,110,118,97,114,32,70,73,69,76,68,95,75,69,89,95,82,79,87,95,86,65,82,73,65,78,84,32,61,32,39,95,114,111,119,86,97,114,105,97,110,116,39,59,92,110,118,97,114,32,70,73,69,76,68,95,75,69,89,95,83,72,79,87,95,68,69,84,65,73,76,83,32,61,32,39,95,115,104,111,119,68,101,116,97,105,108,115,39,59,32,47,47,32,79,98,106,101,99,116,32,111,102,32,105,116,101,109,32,107,101,121,115,32,116,104,97,116,32,115,104,111,117,108,100,32,98,101,32,105,103,110,111,114,101,100,32,102,111,114,32,104,101,97,100,101,114,115,32,97,110,100,92,110,47,47,32,115,116,114,105,110,103,105,102,105,99,97,116,105,111,110,32,97,110,100,32,102,105,108,116,101,114,32,101,118,101,110,116,115,92,110,92,110,118,97,114,32,73,71,78,79,82,69,68,95,70,73,69,76,68,95,75,69,89,83,32,61,32,91,70,73,69,76,68,95,75,69,89,95,67,69,76,76,95,86,65,82,73,65,78,84,44,32,70,73,69,76,68,95,75,69,89,95,82,79,87,95,86,65,82,73,65,78,84,44,32,70,73,69,76,68,95,75,69,89,95,83,72,79,87,95,68,69,84,65,73,76,83,93,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,117,108,116,44,32,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,114,101,115,117,108,116,41,44,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,107,101,121,44,32,116,114,117,101,41,41,59,92,110,125,44,32,123,125,41,59,32,47,47,32,70,105,108,116,101,114,32,67,83,83,32,115,101,108,101,99,116,111,114,32,102,111,114,32,99,108,105,99,107,47,100,98,108,99,108,105,99,107,47,101,116,99,46,32,101,118,101,110,116,115,92,110,47,47,32,73,102,32,97,110,121,32,111,102,32,116,104,101,115,101,32,115,101,108,101,99,116,111,114,115,32,109,97,116,99,104,32,116,104,101,32,99,108,105,99,107,101,100,32,101,108,101,109,101,110,116,44,32,119,101,32,105,103,110,111,114,101,32,116,104,101,32,101,118,101,110,116,92,110,92,110,118,97,114,32,69,86,69,78,84,95,70,73,76,84,69,82,32,61,32,91,39,97,39,44,32,39,97,32,42,39,44,32,47,47,32,73,110,99,108,117,100,101,32,99,111,110,116,101,110,116,32,105,110,115,105,100,101,32,108,105,110,107,115,92,110,39,98,117,116,116,111,110,39,44,32,39,98,117,116,116,111,110,32,42,39,44,32,47,47,32,73,110,99,108,117,100,101,32,99,111,110,116,101,110,116,32,105,110,115,105,100,101,32,98,117,116,116,111,110,115,92,110,39,105,110,112,117,116,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,39,44,32,39,115,101,108,101,99,116,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,39,44,32,39,116,101,120,116,97,114,101,97,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,39,44,32,39,91,114,111,108,101,61,92,34,108,105,110,107,92,34,93,39,44,32,39,91,114,111,108,101,61,92,34,108,105,110,107,92,34,93,32,42,39,44,32,39,91,114,111,108,101,61,92,34,98,117,116,116,111,110,92,34,93,39,44,32,39,91,114,111,108,101,61,92,34,98,117,116,116,111,110,92,34,93,32,42,39,44,32,39,91,116,97,98,105,110,100,101,120,93,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,39,93,46,106,111,105,110,40,39,44,39,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,99,111,110,115,116,97,110,116,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,100,101,102,97,117,108,116,45,115,111,114,116,45,99,111,109,112,97,114,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,100,101,102,97,117,108,116,45,115,111,114,116,45,99,111,109,112,97,114,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,83,111,114,116,67,111,109,112,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,101,102,97,117,108,116,83,111,114,116,67,111,109,112,97,114,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,103,101,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,105,102,121,95,111,98,106,101,99,116,95,118,97,108,117,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,105,102,121,45,111,98,106,101,99,116,45,118,97,108,117,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,105,102,121,45,111,98,106,101,99,116,45,118,97,108,117,101,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,110,111,114,109,97,108,105,122,101,86,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,86,97,108,117,101,40,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,39,39,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,78,117,109,101,114,105,99,41,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,111,70,108,111,97,116,41,40,118,97,108,117,101,44,32,118,97,108,117,101,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,125,59,32,47,47,32,68,101,102,97,117,108,116,32,115,111,114,116,32,99,111,109,112,97,114,101,32,114,111,117,116,105,110,101,92,110,47,47,92,110,47,47,32,84,79,68,79,58,92,110,47,47,32,32,32,65,100,100,32,111,112,116,105,111,110,32,116,111,32,115,111,114,116,32,98,121,32,109,117,108,116,105,112,108,101,32,99,111,108,117,109,110,115,32,40,116,114,105,45,115,116,97,116,101,32,112,101,114,32,99,111,108,117,109,110,44,92,110,47,47,32,32,32,112,108,117,115,32,111,114,100,101,114,32,111,102,32,99,111,108,117,109,110,115,32,105,110,32,115,111,114,116,41,32,119,104,101,114,101,32,96,115,111,114,116,66,121,96,32,99,111,117,108,100,32,98,101,32,97,110,32,97,114,114,97,121,92,110,47,47,32,32,32,111,102,32,111,98,106,101,99,116,115,32,96,91,32,123,107,101,121,58,32,39,102,111,111,39,44,32,115,111,114,116,68,105,114,58,32,39,97,115,99,39,125,44,32,123,107,101,121,58,39,98,97,114,39,44,32,115,111,114,116,68,105,114,58,32,39,100,101,115,99,39,125,32,46,46,46,93,96,92,110,47,47,32,32,32,111,114,32,97,110,32,97,114,114,97,121,32,111,102,32,97,114,114,97,121,115,32,96,91,32,91,39,102,111,111,39,44,39,97,115,99,39,93,44,32,91,39,98,97,114,39,44,39,100,101,115,99,39,93,32,93,96,92,110,47,47,32,32,32,77,117,108,116,105,115,111,114,116,32,119,105,108,108,32,109,111,115,116,32,108,105,107,101,108,121,32,98,101,32,104,97,110,100,108,101,100,32,105,110,32,96,109,105,120,105,110,45,115,111,114,116,46,106,115,96,32,98,121,92,110,47,47,32,32,32,99,97,108,108,105,110,103,32,116,104,105,115,32,109,101,116,104,111,100,32,102,111,114,32,101,97,99,104,32,115,111,114,116,66,121,92,110,92,110,92,110,118,97,114,32,100,101,102,97,117,108,116,83,111,114,116,67,111,109,112,97,114,101,32,61,32,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,83,111,114,116,67,111,109,112,97,114,101,40,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,95,114,101,102,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,123,125,44,92,110,32,32,32,32,32,32,95,114,101,102,36,115,111,114,116,66,121,32,61,32,95,114,101,102,46,115,111,114,116,66,121,44,92,110,32,32,32,32,32,32,115,111,114,116,66,121,32,61,32,95,114,101,102,36,115,111,114,116,66,121,32,61,61,61,32,118,111,105,100,32,48,32,63,32,110,117,108,108,32,58,32,95,114,101,102,36,115,111,114,116,66,121,44,92,110,32,32,32,32,32,32,95,114,101,102,36,102,111,114,109,97,116,116,101,114,32,61,32,95,114,101,102,46,102,111,114,109,97,116,116,101,114,44,92,110,32,32,32,32,32,32,102,111,114,109,97,116,116,101,114,32,61,32,95,114,101,102,36,102,111,114,109,97,116,116,101,114,32,61,61,61,32,118,111,105,100,32,48,32,63,32,110,117,108,108,32,58,32,95,114,101,102,36,102,111,114,109,97,116,116,101,114,44,92,110,32,32,32,32,32,32,95,114,101,102,36,108,111,99,97,108,101,32,61,32,95,114,101,102,46,108,111,99,97,108,101,44,92,110,32,32,32,32,32,32,108,111,99,97,108,101,32,61,32,95,114,101,102,36,108,111,99,97,108,101,32,61,61,61,32,118,111,105,100,32,48,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,95,114,101,102,36,108,111,99,97,108,101,44,92,110,32,32,32,32,32,32,95,114,101,102,36,108,111,99,97,108,101,79,112,116,105,111,110,115,32,61,32,95,114,101,102,46,108,111,99,97,108,101,79,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,108,111,99,97,108,101,79,112,116,105,111,110,115,32,61,32,95,114,101,102,36,108,111,99,97,108,101,79,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,32,63,32,123,125,32,58,32,95,114,101,102,36,108,111,99,97,108,101,79,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,95,114,101,102,36,110,117,108,108,76,97,115,116,32,61,32,95,114,101,102,46,110,117,108,108,76,97,115,116,44,92,110,32,32,32,32,32,32,110,117,108,108,76,97,115,116,32,61,32,95,114,101,102,36,110,117,108,108,76,97,115,116,32,61,61,61,32,118,111,105,100,32,48,32,63,32,102,97,108,115,101,32,58,32,95,114,101,102,36,110,117,108,108,76,97,115,116,59,92,110,92,110,32,32,47,47,32,71,101,116,32,116,104,101,32,118,97,108,117,101,32,98,121,32,96,115,111,114,116,66,121,96,92,110,32,32,118,97,114,32,97,97,32,61,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,41,40,97,44,32,115,111,114,116,66,121,44,32,110,117,108,108,41,59,92,110,32,32,118,97,114,32,98,98,32,61,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,41,40,98,44,32,115,111,114,116,66,121,44,32,110,117,108,108,41,59,32,47,47,32,65,112,112,108,121,32,117,115,101,114,45,112,114,111,118,105,100,101,100,32,102,111,114,109,97,116,116,101,114,92,110,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,102,111,114,109,97,116,116,101,114,41,41,32,123,92,110,32,32,32,32,97,97,32,61,32,102,111,114,109,97,116,116,101,114,40,97,97,44,32,115,111,114,116,66,121,44,32,97,41,59,92,110,32,32,32,32,98,98,32,61,32,102,111,114,109,97,116,116,101,114,40,98,98,44,32,115,111,114,116,66,121,44,32,98,41,59,92,110,32,32,125,32,47,47,32,73,110,116,101,114,110,97,108,108,121,32,110,111,114,109,97,108,105,122,101,32,118,97,108,117,101,92,110,32,32,47,47,32,96,110,117,108,108,96,32,47,32,96,117,110,100,101,102,105,110,101,100,96,32,61,62,32,39,39,92,110,32,32,47,47,32,96,39,48,39,96,32,61,62,32,96,48,96,92,110,92,110,92,110,32,32,97,97,32,61,32,110,111,114,109,97,108,105,122,101,86,97,108,117,101,40,97,97,41,59,92,110,32,32,98,98,32,61,32,110,111,114,109,97,108,105,122,101,86,97,108,117,101,40,98,98,41,59,92,110,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,68,97,116,101,41,40,97,97,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,68,97,116,101,41,40,98,98,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,78,117,109,98,101,114,41,40,97,97,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,78,117,109,98,101,114,41,40,98,98,41,41,32,123,92,110,32,32,32,32,47,47,32,83,112,101,99,105,97,108,32,99,97,115,101,32,102,111,114,32,99,111,109,112,97,114,105,110,103,32,100,97,116,101,115,32,97,110,100,32,110,117,109,98,101,114,115,92,110,32,32,32,32,47,47,32,73,110,116,101,114,110,97,108,108,121,32,100,97,116,101,115,32,97,114,101,32,99,111,109,112,97,114,101,100,32,118,105,97,32,116,104,101,105,114,32,101,112,111,99,104,32,110,117,109,98,101,114,32,118,97,108,117,101,115,92,110,32,32,32,32,114,101,116,117,114,110,32,97,97,32,60,32,98,98,32,63,32,45,49,32,58,32,97,97,32,62,32,98,98,32,63,32,49,32,58,32,48,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,110,117,108,108,76,97,115,116,32,38,38,32,97,97,32,61,61,61,32,39,39,32,38,38,32,98,98,32,33,61,61,32,39,39,41,32,123,92,110,32,32,32,32,47,47,32,83,112,101,99,105,97,108,32,99,97,115,101,32,119,104,101,110,32,115,111,114,116,105,110,103,32,96,110,117,108,108,96,32,47,32,96,117,110,100,101,102,105,110,101,100,96,32,47,32,39,39,32,108,97,115,116,92,110,32,32,32,32,114,101,116,117,114,110,32,49,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,110,117,108,108,76,97,115,116,32,38,38,32,97,97,32,33,61,61,32,39,39,32,38,38,32,98,98,32,61,61,61,32,39,39,41,32,123,92,110,32,32,32,32,47,47,32,83,112,101,99,105,97,108,32,99,97,115,101,32,119,104,101,110,32,115,111,114,116,105,110,103,32,96,110,117,108,108,96,32,47,32,96,117,110,100,101,102,105,110,101,100,96,32,47,32,39,39,32,108,97,115,116,92,110,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,125,32,47,47,32,68,111,32,108,111,99,97,108,105,122,101,100,32,115,116,114,105,110,103,32,99,111,109,112,97,114,105,115,111,110,92,110,92,110,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,105,102,121,95,111,98,106,101,99,116,95,118,97,108,117,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,116,114,105,110,103,105,102,121,79,98,106,101,99,116,86,97,108,117,101,115,41,40,97,97,41,46,108,111,99,97,108,101,67,111,109,112,97,114,101,40,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,105,102,121,95,111,98,106,101,99,116,95,118,97,108,117,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,116,114,105,110,103,105,102,121,79,98,106,101,99,116,86,97,108,117,101,115,41,40,98,98,41,44,32,108,111,99,97,108,101,44,32,108,111,99,97,108,101,79,112,116,105,111,110,115,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,100,101,102,97,117,108,116,45,115,111,114,116,45,99,111,109,112,97,114,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,102,105,108,116,101,114,45,101,118,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,102,105,108,116,101,114,45,101,118,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,105,108,116,101,114,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,105,108,116,101,114,69,118,101,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,99,111,110,115,116,97,110,116,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,84,65,66,76,69,95,84,65,71,95,78,65,77,69,83,32,61,32,91,39,84,68,39,44,32,39,84,72,39,44,32,39,84,82,39,93,59,32,47,47,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,119,101,32,115,104,111,117,108,100,32,105,103,110,111,114,101,32,116,104,101,32,99,108,105,99,107,47,100,111,117,98,108,101,45,99,108,105,99,107,47,107,101,121,112,114,101,115,115,32,101,118,101,110,116,92,110,47,47,32,65,118,111,105,100,115,32,104,97,118,105,110,103,32,116,104,101,32,117,115,101,114,32,110,101,101,100,32,116,111,32,117,115,101,32,96,64,99,108,105,99,107,46,115,116,111,112,96,32,111,110,32,116,104,101,32,102,111,114,109,32,99,111,110,116,114,111,108,92,110,92,110,118,97,114,32,102,105,108,116,101,114,69,118,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,69,118,101,110,116,40,101,118,101,110,116,41,32,123,92,110,32,32,47,47,32,69,120,105,116,32,101,97,114,108,121,32,119,104,101,110,32,119,101,32,100,111,110,39,116,32,104,97,118,101,32,97,32,116,97,114,103,101,116,32,101,108,101,109,101,110,116,92,110,32,32,105,102,32,40,33,101,118,101,110,116,32,124,124,32,33,101,118,101,110,116,46,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,101,108,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,59,32,47,47,32,69,120,105,116,32,101,97,114,108,121,32,119,104,101,110,32,101,108,101,109,101,110,116,32,105,115,32,100,105,115,97,98,108,101,100,32,111,114,32,97,32,116,97,98,108,101,32,101,108,101,109,101,110,116,92,110,92,110,32,32,105,102,32,40,101,108,46,100,105,115,97,98,108,101,100,32,124,124,32,84,65,66,76,69,95,84,65,71,95,78,65,77,69,83,46,105,110,100,101,120,79,102,40,101,108,46,116,97,103,78,97,109,101,41,32,33,61,61,32,45,49,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,32,47,47,32,73,103,110,111,114,101,32,116,104,101,32,99,108,105,99,107,32,119,104,101,110,32,105,116,32,119,97,115,32,105,110,115,105,100,101,32,97,32,100,114,111,112,100,111,119,110,32,109,101,110,117,92,110,92,110,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,108,111,115,101,115,116,41,40,39,46,100,114,111,112,100,111,119,110,45,109,101,110,117,39,44,32,101,108,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,108,97,98,101,108,32,61,32,101,108,46,116,97,103,78,97,109,101,32,61,61,61,32,39,76,65,66,69,76,39,32,63,32,101,108,32,58,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,108,111,115,101,115,116,41,40,39,108,97,98,101,108,39,44,32,101,108,41,59,32,47,47,32,73,102,32,116,104,101,32,108,97,98,101,108,39,115,32,102,111,114,109,32,99,111,110,116,114,111,108,32,105,115,32,110,111,116,32,100,105,115,97,98,108,101,100,32,116,104,101,110,32,119,101,32,100,111,110,39,116,32,112,114,111,112,97,103,97,116,101,32,101,118,101,110,116,92,110,32,32,47,47,32,77,111,100,101,114,110,32,98,114,111,119,115,101,114,115,32,104,97,118,101,32,96,108,97,98,101,108,46,99,111,110,116,114,111,108,96,32,116,104,97,116,32,114,101,102,101,114,101,110,99,101,115,32,116,104,101,32,97,115,115,111,99,105,97,116,101,100,32,105,110,112,117,116,44,32,98,117,116,32,73,69,32,49,49,92,110,32,32,47,47,32,100,111,101,115,32,110,111,116,32,104,97,118,101,32,116,104,105,115,32,112,114,111,112,101,114,116,121,32,111,110,32,116,104,101,32,108,97,98,101,108,32,101,108,101,109,101,110,116,44,32,115,111,32,119,101,32,114,101,115,111,114,116,32,116,111,32,68,79,77,32,108,111,111,107,117,112,115,92,110,92,110,32,32,105,102,32,40,108,97,98,101,108,41,32,123,92,110,32,32,32,32,118,97,114,32,108,97,98,101,108,70,111,114,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,65,116,116,114,41,40,108,97,98,101,108,44,32,39,102,111,114,39,41,59,92,110,32,32,32,32,118,97,114,32,105,110,112,117,116,32,61,32,108,97,98,101,108,70,111,114,32,63,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,66,121,73,100,41,40,108,97,98,101,108,70,111,114,41,32,58,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,108,101,99,116,41,40,39,105,110,112,117,116,44,32,115,101,108,101,99,116,44,32,116,101,120,116,97,114,101,97,39,44,32,108,97,98,101,108,41,59,92,110,92,110,32,32,32,32,105,102,32,40,105,110,112,117,116,32,38,38,32,33,105,110,112,117,116,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,32,47,47,32,79,116,104,101,114,119,105,115,101,32,99,104,101,99,107,32,105,102,32,116,104,101,32,101,118,101,110,116,32,116,97,114,103,101,116,32,109,97,116,99,104,101,115,32,111,110,101,32,111,102,32,116,104,101,32,115,101,108,101,99,116,111,114,115,32,105,110,32,116,104,101,92,110,32,32,47,47,32,101,118,101,110,116,32,102,105,108,116,101,114,32,40,105,46,101,46,32,97,110,99,104,111,114,115,44,32,110,111,110,32,100,105,115,97,98,108,101,100,32,105,110,112,117,116,115,44,32,101,116,99,46,41,92,110,32,32,47,47,32,82,101,116,117,114,110,32,96,116,114,117,101,96,32,105,102,32,119,101,32,115,104,111,117,108,100,32,105,103,110,111,114,101,32,116,104,101,32,101,118,101,110,116,92,110,92,110,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,116,99,104,101,115,41,40,101,108,44,32,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,69,86,69,78,84,95,70,73,76,84,69,82,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,102,105,108,116,101,114,45,101,118,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,98,111,116,116,111,109,45,114,111,119,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,98,111,116,116,111,109,45,114,111,119,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,111,116,116,111,109,82,111,119,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,111,116,116,111,109,82,111,119,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,125,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,98,111,116,116,111,109,82,111,119,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,114,101,110,100,101,114,66,111,116,116,111,109,82,111,119,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,66,111,116,116,111,109,82,111,119,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,105,101,108,100,115,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,99,107,101,100,32,61,32,116,104,105,115,46,115,116,97,99,107,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,84,114,67,108,97,115,115,32,61,32,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,84,114,65,116,116,114,32,61,32,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,59,92,110,32,32,32,32,32,32,118,97,114,32,104,32,61,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,32,47,47,32,83,116,97,116,105,99,32,98,111,116,116,111,109,32,114,111,119,32,115,108,111,116,32,40,104,105,100,100,101,110,32,105,110,32,118,105,115,105,98,108,121,32,115,116,97,99,107,101,100,32,109,111,100,101,32,97,115,32,119,101,32,99,97,110,39,116,32,99,111,110,116,114,111,108,32,116,104,101,32,100,97,116,97,45,108,97,98,101,108,41,92,110,32,32,32,32,32,32,47,47,32,73,102,32,105,110,32,42,97,108,119,97,121,115,42,32,115,116,97,99,107,101,100,32,109,111,100,101,44,32,119,101,32,100,111,110,39,116,32,98,111,116,104,101,114,32,114,101,110,100,101,114,105,110,103,32,116,104,101,32,114,111,119,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,83,76,79,84,95,78,65,77,69,95,66,79,84,84,79,77,95,82,79,87,41,32,124,124,32,115,116,97,99,107,101,100,32,61,61,61,32,116,114,117,101,32,124,124,32,115,116,97,99,107,101,100,32,61,61,61,32,39,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,84,114,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,98,111,100,121,84,114,67,108,97,115,115,41,32,63,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,116,98,111,100,121,84,114,67,108,97,115,115,40,110,117,108,108,44,32,39,114,111,119,45,98,111,116,116,111,109,39,41,32,58,32,116,98,111,100,121,84,114,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,98,111,100,121,84,114,65,116,116,114,41,32,63,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,116,98,111,100,121,84,114,65,116,116,114,40,110,117,108,108,44,32,39,114,111,119,45,98,111,116,116,111,109,39,41,32,58,32,116,98,111,100,121,84,114,65,116,116,114,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,98,45,98,111,116,116,111,109,45,114,111,119,39,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,83,76,79,84,95,78,65,77,69,95,66,79,84,84,79,77,95,82,79,87,44,32,123,92,110,32,32,32,32,32,32,32,32,99,111,108,117,109,110,115,58,32,102,105,101,108,100,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,102,105,101,108,100,115,58,32,102,105,101,108,100,115,92,110,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,98,111,116,116,111,109,45,114,111,119,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,98,117,115,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,98,117,115,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,117,115,121,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,117,115,121,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,100,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,66,85,83,89,32,61,32,39,98,117,115,121,39,59,92,110,118,97,114,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,66,85,83,89,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,32,43,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,66,85,83,89,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,66,85,83,89,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,98,117,115,121,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,66,117,115,121,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,66,117,115,121,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,66,117,115,121,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,66,85,83,89,93,32,124,124,32,116,104,105,115,46,108,111,99,97,108,66,117,115,121,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,108,111,99,97,108,66,117,115,121,58,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,66,117,115,121,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,66,85,83,89,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,69,118,101,110,116,32,104,97,110,100,108,101,114,32,104,101,108,112,101,114,92,110,32,32,32,32,115,116,111,112,73,102,66,117,115,121,58,32,102,117,110,99,116,105,111,110,32,115,116,111,112,73,102,66,117,115,121,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,97,98,108,101,32,105,115,32,98,117,115,121,32,40,118,105,97,32,112,114,111,118,105,100,101,114,41,32,116,104,101,110,32,100,111,110,39,116,32,112,114,111,112,97,103,97,116,101,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,115,121,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,82,101,110,100,101,114,32,116,104,101,32,98,117,115,121,32,105,110,100,105,99,97,116,111,114,32,111,114,32,114,101,116,117,114,110,32,96,110,117,108,108,96,32,105,102,32,110,111,116,32,98,117,115,121,92,110,32,32,32,32,114,101,110,100,101,114,66,117,115,121,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,66,117,115,121,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,98,111,100,121,84,114,67,108,97,115,115,32,61,32,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,84,114,65,116,116,114,32,61,32,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,59,92,110,32,32,32,32,32,32,118,97,114,32,104,32,61,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,32,47,47,32,82,101,116,117,114,110,32,97,32,98,117,115,121,32,105,110,100,105,99,97,116,111,114,32,114,111,119,44,32,111,114,32,96,110,117,108,108,96,32,105,102,32,110,111,116,32,98,117,115,121,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,115,121,32,38,38,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,66,85,83,89,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,84,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,116,97,98,108,101,45,98,117,115,121,45,115,108,111,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,98,111,100,121,84,114,67,108,97,115,115,41,32,63,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,84,114,67,108,97,115,115,40,110,117,108,108,44,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,66,85,83,89,41,32,58,32,116,98,111,100,121,84,114,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,98,111,100,121,84,114,65,116,116,114,41,32,63,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,84,114,65,116,116,114,40,110,117,108,108,44,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,66,85,83,89,41,32,58,32,116,98,111,100,121,84,114,65,116,116,114,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,97,98,108,101,45,98,117,115,121,45,115,108,111,116,39,92,110,32,32,32,32,32,32,32,32,125,44,32,91,104,40,95,116,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,84,100,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,115,112,97,110,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,46,108,101,110,103,116,104,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,66,85,83,89,41,93,41,93,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,87,101,32,114,101,116,117,114,110,32,96,110,117,108,108,96,32,104,101,114,101,32,115,111,32,116,104,97,116,32,119,101,32,99,97,110,32,100,101,116,101,114,109,105,110,101,32,105,102,32,119,101,32,110,101,101,100,32,116,111,92,110,32,32,32,32,32,32,47,47,32,114,101,110,100,101,114,32,116,104,101,32,116,97,98,108,101,32,105,116,101,109,115,32,114,111,119,115,32,111,114,32,110,111,116,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,98,117,115,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,99,97,112,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,99,97,112,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,97,112,116,105,111,110,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,97,112,116,105,111,110,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,99,97,112,116,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,99,97,112,116,105,111,110,72,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,32,47,47,32,96,99,97,112,116,105,111,110,45,116,111,112,96,32,105,115,32,112,97,114,116,32,111,102,32,116,97,98,108,101,45,114,101,110,100,101,114,32,109,105,120,105,110,32,40,115,116,121,108,105,110,103,41,92,110,32,32,47,47,32,99,97,112,116,105,111,110,84,111,112,58,32,109,97,107,101,80,114,111,112,40,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,92,110,125,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,99,97,112,116,105,111,110,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,97,112,116,105,111,110,73,100,58,32,102,117,110,99,116,105,111,110,32,99,97,112,116,105,111,110,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,116,97,99,107,101,100,32,63,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,99,97,112,116,105,111,110,95,39,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,114,101,110,100,101,114,67,97,112,116,105,111,110,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,67,97,112,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,97,112,116,105,111,110,32,61,32,116,104,105,115,46,99,97,112,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,32,32,99,97,112,116,105,111,110,72,116,109,108,32,61,32,116,104,105,115,46,99,97,112,116,105,111,110,72,116,109,108,59,92,110,32,32,32,32,32,32,118,97,114,32,104,32,61,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,118,97,114,32,36,99,97,112,116,105,111,110,32,61,32,104,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,104,97,115,67,97,112,116,105,111,110,83,108,111,116,32,61,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,67,65,80,84,73,79,78,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,67,97,112,116,105,111,110,83,108,111,116,32,124,124,32,99,97,112,116,105,111,110,32,124,124,32,99,97,112,116,105,111,110,72,116,109,108,41,32,123,92,110,32,32,32,32,32,32,32,32,36,99,97,112,116,105,111,110,32,61,32,104,40,39,99,97,112,116,105,111,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,99,97,112,116,105,111,110,73,100,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,104,97,115,67,97,112,116,105,111,110,83,108,111,116,32,63,32,123,125,32,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,99,97,112,116,105,111,110,72,116,109,108,44,32,99,97,112,116,105,111,110,41,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,97,112,116,105,111,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,102,58,32,39,99,97,112,116,105,111,110,39,92,110,32,32,32,32,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,67,65,80,84,73,79,78,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,36,99,97,112,116,105,111,110,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,99,97,112,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,99,111,108,103,114,111,117,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,99,111,108,103,114,111,117,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,108,103,114,111,117,112,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,108,103,114,111,117,112,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,125,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,99,111,108,103,114,111,117,112,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,114,101,110,100,101,114,67,111,108,103,114,111,117,112,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,67,111,108,103,114,111,117,112,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,105,101,108,100,115,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,59,92,110,32,32,32,32,32,32,118,97,114,32,104,32,61,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,118,97,114,32,36,99,111,108,103,114,111,117,112,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,67,79,76,71,82,79,85,80,41,41,32,123,92,110,32,32,32,32,32,32,32,32,36,99,111,108,103,114,111,117,112,32,61,32,104,40,39,99,111,108,103,114,111,117,112,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,108,103,114,111,117,112,39,92,110,32,32,32,32,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,67,79,76,71,82,79,85,80,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,108,117,109,110,115,58,32,102,105,101,108,100,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,115,58,32,102,105,101,108,100,115,92,110,32,32,32,32,32,32,32,32,125,41,93,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,36,99,111,108,103,114,111,117,112,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,99,111,108,103,114,111,117,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,101,109,112,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,101,109,112,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,109,112,116,121,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,109,112,116,121,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,100,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,101,109,112,116,121,70,105,108,116,101,114,101,100,72,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,101,109,112,116,121,70,105,108,116,101,114,101,100,84,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,84,104,101,114,101,32,97,114,101,32,110,111,32,114,101,99,111,114,100,115,32,109,97,116,99,104,105,110,103,32,121,111,117,114,32,114,101,113,117,101,115,116,39,41,44,92,110,32,32,101,109,112,116,121,72,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,101,109,112,116,121,84,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,84,104,101,114,101,32,97,114,101,32,110,111,32,114,101,99,111,114,100,115,32,116,111,32,115,104,111,119,39,41,44,92,110,32,32,115,104,111,119,69,109,112,116,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,101,109,112,116,121,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,114,101,110,100,101,114,69,109,112,116,121,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,69,109,112,116,121,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,59,92,110,32,32,32,32,32,32,118,97,114,32,104,32,61,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,118,97,114,32,36,101,109,112,116,121,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,115,104,111,119,69,109,112,116,121,32,38,38,32,40,33,105,116,101,109,115,32,124,124,32,105,116,101,109,115,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,38,38,32,33,40,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,115,121,32,38,38,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,66,85,83,89,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,105,101,108,100,115,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,70,105,108,116,101,114,101,100,32,61,32,116,104,105,115,46,105,115,70,105,108,116,101,114,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,109,112,116,121,84,101,120,116,32,61,32,116,104,105,115,46,101,109,112,116,121,84,101,120,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,109,112,116,121,72,116,109,108,32,61,32,116,104,105,115,46,101,109,112,116,121,72,116,109,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,109,112,116,121,70,105,108,116,101,114,101,100,84,101,120,116,32,61,32,116,104,105,115,46,101,109,112,116,121,70,105,108,116,101,114,101,100,84,101,120,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,109,112,116,121,70,105,108,116,101,114,101,100,72,116,109,108,32,61,32,116,104,105,115,46,101,109,112,116,121,70,105,108,116,101,114,101,100,72,116,109,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,84,114,67,108,97,115,115,32,61,32,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,84,114,65,116,116,114,32,61,32,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,59,92,110,32,32,32,32,32,32,32,32,36,101,109,112,116,121,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,105,115,70,105,108,116,101,114,101,100,32,63,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,83,76,79,84,95,78,65,77,69,95,69,77,80,84,89,70,73,76,84,69,82,69,68,32,58,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,83,76,79,84,95,78,65,77,69,95,69,77,80,84,89,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,109,112,116,121,70,105,108,116,101,114,101,100,72,116,109,108,58,32,101,109,112,116,121,70,105,108,116,101,114,101,100,72,116,109,108,44,92,110,32,32,32,32,32,32,32,32,32,32,101,109,112,116,121,70,105,108,116,101,114,101,100,84,101,120,116,58,32,101,109,112,116,121,70,105,108,116,101,114,101,100,84,101,120,116,44,92,110,32,32,32,32,32,32,32,32,32,32,101,109,112,116,121,72,116,109,108,58,32,101,109,112,116,121,72,116,109,108,44,92,110,32,32,32,32,32,32,32,32,32,32,101,109,112,116,121,84,101,120,116,58,32,101,109,112,116,121,84,101,120,116,44,92,110,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,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,116,32,115,117,114,101,32,119,104,121,32,116,104,105,115,32,105,115,32,105,110,99,108,117,100,101,100,44,32,97,115,32,105,116,32,119,105,108,108,32,97,108,119,97,121,115,32,98,101,32,97,110,32,101,109,112,116,121,32,97,114,114,97,121,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,115,58,32,105,116,101,109,115,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,36,101,109,112,116,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,36,101,109,112,116,121,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,39,116,101,120,116,45,99,101,110,116,101,114,39,44,32,39,109,121,45,50,39,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,105,115,70,105,108,116,101,114,101,100,32,63,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,101,109,112,116,121,70,105,108,116,101,114,101,100,72,116,109,108,44,32,101,109,112,116,121,70,105,108,116,101,114,101,100,84,101,120,116,41,32,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,101,109,112,116,121,72,116,109,108,44,32,101,109,112,116,121,84,101,120,116,41,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,36,101,109,112,116,121,32,61,32,104,40,95,116,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,84,100,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,115,112,97,110,58,32,102,105,101,108,100,115,46,108,101,110,103,116,104,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,91,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,97,108,101,114,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,39,112,111,108,105,116,101,39,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,91,36,101,109,112,116,121,93,41,93,41,59,92,110,32,32,32,32,32,32,32,32,36,101,109,112,116,121,32,61,32,104,40,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,84,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,116,97,98,108,101,45,101,109,112,116,121,45,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,98,111,100,121,84,114,67,108,97,115,115,41,32,63,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,84,114,67,108,97,115,115,40,110,117,108,108,44,32,39,114,111,119,45,101,109,112,116,121,39,41,32,58,32,116,98,111,100,121,84,114,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,98,111,100,121,84,114,65,116,116,114,41,32,63,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,84,114,65,116,116,114,40,110,117,108,108,44,32,39,114,111,119,45,101,109,112,116,121,39,41,32,58,32,116,98,111,100,121,84,114,65,116,116,114,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,105,115,70,105,108,116,101,114,101,100,32,63,32,39,98,45,101,109,112,116,121,45,102,105,108,116,101,114,101,100,45,114,111,119,39,32,58,32,39,98,45,101,109,112,116,121,45,114,111,119,39,92,110,32,32,32,32,32,32,32,32,125,44,32,91,36,101,109,112,116,121,93,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,36,101,109,112,116,121,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,101,109,112,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,102,105,108,116,101,114,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,102,105,108,116,101,114,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,105,108,116,101,114,105,110,103,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,105,108,116,101,114,105,110,103,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,99,108,111,110,101,45,100,101,101,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,108,111,110,101,45,100,101,101,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,119,97,114,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,105,110,103,105,102,121,95,114,101,99,111,114,100,95,118,97,108,117,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,105,110,103,105,102,121,45,114,101,99,111,114,100,45,118,97,108,117,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,115,116,114,105,110,103,105,102,121,45,114,101,99,111,114,100,45,118,97,108,117,101,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,97,114,114,41,32,123,32,114,101,116,117,114,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,124,124,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,92,34,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,32,123,32,105,102,32,40,33,111,41,32,114,101,116,117,114,110,59,32,105,102,32,40,116,121,112,101,111,102,32,111,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,118,97,114,32,110,32,61,32,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,111,41,46,115,108,105,99,101,40,56,44,32,45,49,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,79,98,106,101,99,116,92,34,32,38,38,32,111,46,99,111,110,115,116,114,117,99,116,111,114,41,32,110,32,61,32,111,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,59,32,105,102,32,40,110,32,61,61,61,32,92,34,77,97,112,92,34,32,124,124,32,110,32,61,61,61,32,92,34,83,101,116,92,34,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,111,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,65,114,103,117,109,101,110,116,115,92,34,32,124,124,32,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,105,116,101,114,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,38,38,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,105,116,101,114,41,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,105,116,101,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,123,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,44,32,108,101,110,41,32,123,32,105,102,32,40,108,101,110,32,61,61,32,110,117,108,108,32,124,124,32,108,101,110,32,62,32,97,114,114,46,108,101,110,103,116,104,41,32,108,101,110,32,61,32,97,114,114,46,108,101,110,103,116,104,59,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,97,114,114,50,32,61,32,110,101,119,32,65,114,114,97,121,40,108,101,110,41,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,32,97,114,114,50,91,105,93,32,61,32,97,114,114,91,105,93,59,32,125,32,114,101,116,117,114,110,32,97,114,114,50,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,68,69,66,79,85,78,67,69,95,68,69,80,82,69,67,65,84,69,68,95,77,83,71,32,61,32,39,80,114,111,112,32,92,34,102,105,108,116,101,114,45,100,101,98,111,117,110,99,101,92,34,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,85,115,101,32,116,104,101,32,100,101,98,111,117,110,99,101,32,102,101,97,116,117,114,101,32,111,102,32,92,34,60,98,45,102,111,114,109,45,105,110,112,117,116,62,92,34,32,105,110,115,116,101,97,100,46,39,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,102,105,108,116,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,91,93,46,99,111,110,99,97,116,40,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,32,91,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,82,69,71,95,69,88,80,93,41,41,44,92,110,32,32,102,105,108,116,101,114,68,101,98,111,117,110,99,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,48,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,82,88,95,68,73,71,73,84,83,46,116,101,115,116,40,83,116,114,105,110,103,40,118,97,108,117,101,41,41,59,92,110,32,32,125,41,44,92,110,32,32,102,105,108,116,101,114,70,117,110,99,116,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,41,44,92,110,32,32,102,105,108,116,101,114,73,103,110,111,114,101,100,70,105,101,108,100,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,44,32,91,93,41,44,92,110,32,32,102,105,108,116,101,114,73,110,99,108,117,100,101,100,70,105,101,108,100,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,44,32,91,93,41,92,110,125,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,102,105,108,116,101,114,105,110,103,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,47,47,32,70,108,97,103,32,102,111,114,32,100,105,115,112,108,97,121,105,110,103,32,119,104,105,99,104,32,101,109,112,116,121,32,115,108,111,116,32,116,111,32,115,104,111,119,32,97,110,100,32,115,111,109,101,32,101,118,101,110,116,32,116,114,105,103,103,101,114,105,110,103,92,110,32,32,32,32,32,32,105,115,70,105,108,116,101,114,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,47,47,32,87,104,101,114,101,32,119,101,32,115,116,111,114,101,32,116,104,101,32,99,111,112,121,32,111,102,32,116,104,101,32,102,105,108,116,101,114,32,99,114,105,116,101,114,105,97,32,97,102,116,101,114,32,100,101,98,111,117,110,99,105,110,103,92,110,32,32,32,32,32,32,47,47,32,87,101,32,112,114,101,45,115,101,116,32,105,116,32,119,105,116,104,32,116,104,101,32,115,97,110,105,116,105,122,101,100,32,102,105,108,116,101,114,32,118,97,108,117,101,92,110,32,32,32,32,32,32,108,111,99,97,108,70,105,108,116,101,114,58,32,116,104,105,115,46,102,105,108,116,101,114,83,97,110,105,116,105,122,101,40,116,104,105,115,46,102,105,108,116,101,114,41,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,70,105,108,116,101,114,73,103,110,111,114,101,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,70,105,108,116,101,114,73,103,110,111,114,101,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,111,110,99,97,116,41,40,116,104,105,115,46,102,105,108,116,101,114,73,103,110,111,114,101,100,70,105,101,108,100,115,32,124,124,32,91,93,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,70,105,108,116,101,114,73,110,99,108,117,100,101,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,70,105,108,116,101,114,73,110,99,108,117,100,101,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,111,110,99,97,116,41,40,116,104,105,115,46,102,105,108,116,101,114,73,110,99,108,117,100,101,100,70,105,101,108,100,115,32,124,124,32,91,93,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,70,105,108,116,101,114,68,101,98,111,117,110,99,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,70,105,108,116,101,114,68,101,98,111,117,110,99,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,115,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,102,105,108,116,101,114,68,101,98,111,117,110,99,101,44,32,48,41,59,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,109,115,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,119,97,114,110,41,40,68,69,66,79,85,78,67,69,95,68,69,80,82,69,67,65,84,69,68,95,77,83,71,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,84,65,66,76,69,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,115,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,111,99,97,108,70,105,108,116,101,114,105,110,103,58,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,70,105,108,116,101,114,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,114,111,118,105,100,101,114,32,63,32,33,33,116,104,105,115,46,110,111,80,114,111,118,105,100,101,114,70,105,108,116,101,114,105,110,103,32,58,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,70,111,114,32,119,97,116,99,104,105,110,103,32,99,104,97,110,103,101,115,32,116,111,32,96,102,105,108,116,101,114,101,100,73,116,101,109,115,96,32,118,115,32,96,108,111,99,97,108,73,116,101,109,115,96,92,110,32,32,32,32,102,105,108,116,101,114,101,100,67,104,101,99,107,58,32,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,101,100,67,104,101,99,107,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,105,108,116,101,114,101,100,73,116,101,109,115,32,61,32,116,104,105,115,46,102,105,108,116,101,114,101,100,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,73,116,101,109,115,32,61,32,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,70,105,108,116,101,114,32,61,32,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,102,105,108,116,101,114,101,100,73,116,101,109,115,58,32,102,105,108,116,101,114,101,100,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,108,111,99,97,108,73,116,101,109,115,58,32,108,111,99,97,108,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,108,111,99,97,108,70,105,108,116,101,114,58,32,108,111,99,97,108,70,105,108,116,101,114,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,97,110,105,116,105,122,101,100,47,110,111,114,109,97,108,105,122,101,32,102,105,108,116,101,114,45,102,117,110,99,116,105,111,110,32,112,114,111,112,92,110,32,32,32,32,108,111,99,97,108,70,105,108,116,101,114,70,110,58,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,70,105,108,116,101,114,70,110,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,32,96,110,117,108,108,96,32,116,111,32,115,105,103,110,97,108,32,116,111,32,117,115,101,32,105,110,116,101,114,110,97,108,32,102,105,108,116,101,114,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,118,97,114,32,102,105,108,116,101,114,70,117,110,99,116,105,111,110,32,61,32,116,104,105,115,46,102,105,108,116,101,114,70,117,110,99,116,105,111,110,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,115,80,114,111,112,70,117,110,99,116,105,111,110,41,40,102,105,108,116,101,114,70,117,110,99,116,105,111,110,41,32,63,32,102,105,108,116,101,114,70,117,110,99,116,105,111,110,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,99,111,114,100,115,32,105,110,32,96,108,111,99,97,108,73,116,101,109,115,96,32,116,104,97,116,32,109,97,116,99,104,32,116,104,101,32,102,105,108,116,101,114,32,99,114,105,116,101,114,105,97,92,110,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,116,104,101,32,111,114,105,103,105,110,97,108,32,96,108,111,99,97,108,73,116,101,109,115,96,32,97,114,114,97,121,32,105,102,32,110,111,116,32,115,111,114,116,105,110,103,92,110,32,32,32,32,102,105,108,116,101,114,101,100,73,116,101,109,115,58,32,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,101,100,73,116,101,109,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,78,111,116,101,32,116,104,101,32,99,114,105,116,101,114,105,97,32,105,115,32,100,101,98,111,117,110,99,101,100,32,97,110,100,32,115,97,110,105,116,105,122,101,100,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,99,114,105,116,101,114,105,97,32,61,32,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,59,32,47,47,32,82,101,115,111,108,118,101,32,116,104,101,32,102,105,108,116,101,114,105,110,103,32,102,117,110,99,116,105,111,110,44,32,119,104,101,110,32,114,101,113,117,101,115,116,101,100,92,110,32,32,32,32,32,32,47,47,32,87,101,32,112,114,101,102,101,114,32,116,104,101,32,112,114,111,118,105,100,101,100,32,102,105,108,116,101,114,105,110,103,32,102,117,110,99,116,105,111,110,32,97,110,100,32,102,97,108,108,98,97,99,107,32,116,111,32,116,104,101,32,105,110,116,101,114,110,97,108,32,111,110,101,92,110,32,32,32,32,32,32,47,47,32,87,104,101,110,32,110,111,32,102,105,108,116,101,114,105,110,103,32,99,114,105,116,101,114,105,97,32,105,115,32,115,112,101,99,105,102,105,101,100,32,116,104,101,32,102,105,108,116,101,114,105,110,103,32,102,97,99,116,111,114,105,101,115,32,119,105,108,108,32,114,101,116,117,114,110,32,96,110,117,108,108,96,92,110,92,110,32,32,32,32,32,32,118,97,114,32,102,105,108,116,101,114,70,110,32,61,32,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,105,110,103,32,63,32,116,104,105,115,46,102,105,108,116,101,114,70,110,70,97,99,116,111,114,121,40,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,70,110,44,32,99,114,105,116,101,114,105,97,41,32,124,124,32,116,104,105,115,46,100,101,102,97,117,108,116,70,105,108,116,101,114,70,110,70,97,99,116,111,114,121,40,99,114,105,116,101,114,105,97,41,32,58,32,110,117,108,108,59,32,47,47,32,87,101,32,111,110,108,121,32,100,111,32,108,111,99,97,108,32,102,105,108,116,101,114,105,110,103,32,119,104,101,110,32,114,101,113,117,101,115,116,101,100,32,97,110,100,32,116,104,101,114,101,32,97,114,101,32,114,101,99,111,114,100,115,32,116,111,32,102,105,108,116,101,114,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,70,110,32,38,38,32,105,116,101,109,115,46,108,101,110,103,116,104,32,62,32,48,32,63,32,105,116,101,109,115,46,102,105,108,116,101,114,40,102,105,108,116,101,114,70,110,41,32,58,32,105,116,101,109,115,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,47,47,32,87,97,116,99,104,32,102,111,114,32,100,101,98,111,117,110,99,101,32,98,101,105,110,103,32,115,101,116,32,116,111,32,48,92,110,32,32,32,32,99,111,109,112,117,116,101,100,70,105,108,116,101,114,68,101,98,111,117,110,99,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,70,105,108,116,101,114,68,101,98,111,117,110,99,101,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,110,101,119,86,97,108,117,101,32,38,38,32,116,104,105,115,46,36,95,102,105,108,116,101,114,84,105,109,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,70,105,108,116,101,114,84,105,109,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,32,61,32,116,104,105,115,46,102,105,108,116,101,114,83,97,110,105,116,105,122,101,40,116,104,105,115,46,102,105,108,116,101,114,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,87,97,116,99,104,32,102,111,114,32,99,104,97,110,103,101,115,32,116,111,32,116,104,101,32,102,105,108,116,101,114,32,99,114,105,116,101,114,105,97,44,32,97,110,100,32,100,101,98,111,117,110,99,101,32,105,102,32,110,101,99,101,115,115,97,114,121,92,110,32,32,32,32,102,105,108,116,101,114,58,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,110,101,101,100,32,97,32,100,101,101,112,32,119,97,116,99,104,101,114,32,105,110,32,99,97,115,101,32,116,104,101,32,117,115,101,114,32,112,97,115,115,101,115,92,110,32,32,32,32,32,32,47,47,32,97,110,32,111,98,106,101,99,116,32,119,104,101,110,32,117,115,105,110,103,32,96,102,105,108,116,101,114,45,102,117,110,99,116,105,111,110,96,92,110,32,32,32,32,32,32,100,101,101,112,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,40,110,101,119,67,114,105,116,101,114,105,97,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,105,109,101,111,117,116,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,108,116,101,114,68,101,98,111,117,110,99,101,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,70,105,108,116,101,114,84,105,109,101,114,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,105,109,101,111,117,116,32,38,38,32,116,105,109,101,111,117,116,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,119,101,32,104,97,118,101,32,97,32,100,101,98,111,117,110,99,101,32,116,105,109,101,44,32,100,101,108,97,121,32,116,104,101,32,117,112,100,97,116,101,32,111,102,32,96,108,111,99,97,108,70,105,108,116,101,114,96,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,102,105,108,116,101,114,84,105,109,101,114,32,61,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,32,61,32,95,116,104,105,115,46,102,105,108,116,101,114,83,97,110,105,116,105,122,101,40,110,101,119,67,114,105,116,101,114,105,97,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,116,105,109,101,111,117,116,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,105,109,109,101,100,105,97,116,101,108,121,32,117,112,100,97,116,101,32,96,108,111,99,97,108,70,105,108,116,101,114,96,32,119,105,116,104,32,96,110,101,119,70,105,108,116,101,114,96,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,32,61,32,116,104,105,115,46,102,105,108,116,101,114,83,97,110,105,116,105,122,101,40,110,101,119,67,114,105,116,101,114,105,97,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,87,97,116,99,104,32,102,111,114,32,99,104,97,110,103,101,115,32,116,111,32,116,104,101,32,102,105,108,116,101,114,32,99,114,105,116,101,114,105,97,32,97,110,100,32,102,105,108,116,101,114,101,100,32,105,116,101,109,115,32,118,115,32,96,108,111,99,97,108,73,116,101,109,115,96,92,110,32,32,32,32,47,47,32,83,101,116,32,118,105,115,117,97,108,32,115,116,97,116,101,32,97,110,100,32,101,109,105,116,32,101,118,101,110,116,115,32,97,115,32,114,101,113,117,105,114,101,100,92,110,32,32,32,32,102,105,108,116,101,114,101,100,67,104,101,99,107,58,32,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,101,100,67,104,101,99,107,40,95,114,101,102,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,105,108,116,101,114,101,100,73,116,101,109,115,32,61,32,95,114,101,102,46,102,105,108,116,101,114,101,100,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,70,105,108,116,101,114,32,61,32,95,114,101,102,46,108,111,99,97,108,70,105,108,116,101,114,59,92,110,32,32,32,32,32,32,47,47,32,68,101,116,101,114,109,105,110,101,32,105,102,32,116,104,101,32,100,97,116,97,115,101,116,32,105,115,32,102,105,108,116,101,114,101,100,32,111,114,32,110,111,116,92,110,32,32,32,32,32,32,118,97,114,32,105,115,70,105,108,116,101,114,101,100,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,108,111,99,97,108,70,105,108,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,102,105,108,116,101,114,32,99,114,105,116,101,114,105,97,32,105,115,32,102,97,108,115,101,121,92,110,32,32,32,32,32,32,32,32,105,115,70,105,108,116,101,114,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,108,111,99,97,108,70,105,108,116,101,114,44,32,91,93,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,108,111,99,97,108,70,105,108,116,101,114,44,32,123,125,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,102,105,108,116,101,114,32,99,114,105,116,101,114,105,97,32,105,115,32,97,110,32,101,109,112,116,121,32,97,114,114,97,121,32,111,114,32,111,98,106,101,99,116,92,110,32,32,32,32,32,32,32,32,105,115,70,105,108,116,101,114,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,108,111,99,97,108,70,105,108,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,102,105,108,116,101,114,32,99,114,105,116,101,114,105,97,32,105,115,32,116,114,117,116,104,121,92,110,32,32,32,32,32,32,32,32,105,115,70,105,108,116,101,114,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,70,105,108,116,101,114,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,70,73,76,84,69,82,69,68,44,32,102,105,108,116,101,114,101,100,73,116,101,109,115,44,32,102,105,108,116,101,114,101,100,73,116,101,109,115,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,70,105,108,116,101,114,101,100,32,61,32,105,115,70,105,108,116,101,114,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,70,105,108,116,101,114,101,100,58,32,102,117,110,99,116,105,111,110,32,105,115,70,105,108,116,101,114,101,100,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,61,61,61,32,102,97,108,115,101,32,38,38,32,111,108,100,86,97,108,117,101,32,61,61,61,32,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,110,101,101,100,32,116,111,32,101,109,105,116,32,97,32,102,105,108,116,101,114,101,100,32,101,118,101,110,116,32,105,102,32,96,105,115,70,105,108,116,101,114,101,100,96,32,116,114,97,110,115,105,116,105,111,110,115,32,102,114,111,109,32,96,116,114,117,101,96,32,116,111,92,110,32,32,32,32,32,32,32,32,47,47,32,96,102,97,108,115,101,96,32,115,111,32,116,104,97,116,32,117,115,101,114,115,32,99,97,110,32,117,112,100,97,116,101,32,116,104,101,105,114,32,112,97,103,105,110,97,116,105,111,110,32,99,111,110,116,114,111,108,115,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,111,99,97,108,73,116,101,109,115,32,61,32,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,70,73,76,84,69,82,69,68,44,32,108,111,99,97,108,73,116,101,109,115,44,32,108,111,99,97,108,73,116,101,109,115,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,47,47,32,67,114,101,97,116,101,32,112,114,105,118,97,116,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,115,92,110,32,32,32,32,116,104,105,115,46,36,95,102,105,108,116,101,114,84,105,109,101,114,32,61,32,110,117,108,108,59,32,47,47,32,73,102,32,102,105,108,116,101,114,32,105,115,32,92,34,112,114,101,45,115,101,116,92,34,44,32,115,101,116,32,116,104,101,32,99,114,105,116,101,114,105,97,92,110,32,32,32,32,47,47,32,84,104,105,115,32,119,105,108,108,32,116,114,105,103,103,101,114,32,97,110,121,32,119,97,116,99,104,101,114,115,47,100,101,112,101,110,100,101,110,116,115,92,110,32,32,32,32,47,47,32,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,32,61,32,116,104,105,115,46,102,105,108,116,101,114,83,97,110,105,116,105,122,101,40,116,104,105,115,46,102,105,108,116,101,114,41,92,110,32,32,32,32,47,47,32,83,101,116,32,116,104,101,32,105,110,105,116,105,97,108,32,102,105,108,116,101,114,101,100,32,115,116,97,116,101,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,115,111,32,116,104,97,116,92,110,32,32,32,32,47,47,32,119,101,32,116,114,105,103,103,101,114,32,97,32,102,105,108,116,101,114,101,100,32,101,118,101,110,116,32,105,102,32,110,101,101,100,101,100,92,110,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,50,46,105,115,70,105,108,116,101,114,101,100,32,61,32,66,111,111,108,101,97,110,40,95,116,104,105,115,50,46,108,111,99,97,108,70,105,108,116,101,114,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,70,105,108,116,101,114,84,105,109,101,114,40,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,99,108,101,97,114,70,105,108,116,101,114,84,105,109,101,114,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,70,105,108,116,101,114,84,105,109,101,114,40,41,32,123,92,110,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,36,95,102,105,108,116,101,114,84,105,109,101,114,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,102,105,108,116,101,114,84,105,109,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,105,108,116,101,114,83,97,110,105,116,105,122,101,58,32,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,83,97,110,105,116,105,122,101,40,99,114,105,116,101,114,105,97,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,97,110,105,116,105,122,101,115,32,102,105,108,116,101,114,32,99,114,105,116,101,114,105,97,32,98,97,115,101,100,32,111,110,32,105,110,116,101,114,110,97,108,32,111,114,32,101,120,116,101,114,110,97,108,32,102,105,108,116,101,114,105,110,103,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,105,110,103,32,38,38,32,33,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,70,110,32,38,38,32,33,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,115,83,116,114,105,110,103,41,40,99,114,105,116,101,114,105,97,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,115,82,101,103,69,120,112,41,40,99,114,105,116,101,114,105,97,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,117,115,105,110,103,32,105,110,116,101,114,110,97,108,32,102,105,108,116,101,114,32,102,117,110,99,116,105,111,110,44,32,119,104,105,99,104,32,111,110,108,121,32,97,99,99,101,112,116,115,32,115,116,114,105,110,103,32,111,114,32,82,101,103,69,120,112,44,92,110,32,32,32,32,32,32,32,32,47,47,32,114,101,116,117,114,110,32,39,39,32,116,111,32,115,105,103,110,105,102,121,32,110,111,32,102,105,108,116,101,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,39,59,92,110,32,32,32,32,32,32,125,32,47,47,32,67,111,117,108,100,32,98,101,32,97,32,115,116,114,105,110,103,44,32,111,98,106,101,99,116,32,111,114,32,97,114,114,97,121,44,32,97,115,32,110,101,101,100,101,100,32,98,121,32,101,120,116,101,114,110,97,108,32,102,105,108,116,101,114,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,47,47,32,87,101,32,117,115,101,32,96,99,108,111,110,101,68,101,101,112,96,32,116,111,32,101,110,115,117,114,101,32,119,101,32,104,97,118,101,32,97,32,110,101,119,32,99,111,112,121,32,111,102,32,97,110,32,111,98,106,101,99,116,32,111,114,32,97,114,114,97,121,92,110,32,32,32,32,32,32,47,47,32,119,105,116,104,111,117,116,32,86,117,101,39,115,32,114,101,97,99,116,105,118,101,32,111,98,115,101,114,118,101,114,115,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,99,108,111,110,101,68,101,101,112,41,40,99,114,105,116,101,114,105,97,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,70,105,108,116,101,114,32,70,117,110,99,116,105,111,110,32,102,97,99,116,111,114,105,101,115,92,110,32,32,32,32,102,105,108,116,101,114,70,110,70,97,99,116,111,114,121,58,32,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,70,110,70,97,99,116,111,114,121,40,102,105,108,116,101,114,70,110,44,32,99,114,105,116,101,114,105,97,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,114,97,112,112,101,114,32,102,97,99,116,111,114,121,32,102,111,114,32,101,120,116,101,114,110,97,108,32,102,105,108,116,101,114,32,102,117,110,99,116,105,111,110,115,92,110,32,32,32,32,32,32,47,47,32,87,114,97,112,32,116,104,101,32,112,114,111,118,105,100,101,100,32,102,105,108,116,101,114,45,102,117,110,99,116,105,111,110,32,97,110,100,32,114,101,116,117,114,110,32,97,32,110,101,119,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,96,110,117,108,108,96,32,105,102,32,110,111,32,102,105,108,116,101,114,45,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,100,32,111,114,32,105,102,32,99,114,105,116,101,114,105,97,32,105,115,32,102,97,108,115,101,121,92,110,32,32,32,32,32,32,47,47,32,82,97,116,104,101,114,32,116,104,97,110,32,100,105,114,101,99,116,108,121,32,103,114,97,98,98,105,110,103,32,96,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,70,105,108,116,101,114,70,110,96,32,111,114,32,96,116,104,105,115,46,102,105,108,116,101,114,70,117,110,99,116,105,111,110,96,92,110,32,32,32,32,32,32,47,47,32,119,101,32,104,97,118,101,32,105,116,32,112,97,115,115,101,100,44,32,115,111,32,116,104,97,116,32,116,104,101,32,99,97,108,108,101,114,32,99,111,109,112,117,116,101,100,32,112,114,111,112,32,119,105,108,108,32,98,101,32,114,101,97,99,116,105,118,101,32,116,111,32,99,104,97,110,103,101,115,92,110,32,32,32,32,32,32,47,47,32,105,110,32,116,104,101,32,111,114,105,103,105,110,97,108,32,102,105,108,116,101,114,45,102,117,110,99,116,105,111,110,32,40,97,115,32,116,104,105,115,32,114,111,117,116,105,110,101,32,105,115,32,97,32,109,101,116,104,111,100,41,92,110,32,32,32,32,32,32,105,102,32,40,33,102,105,108,116,101,114,70,110,32,124,124,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,102,105,108,116,101,114,70,110,41,32,124,124,32,33,99,114,105,116,101,114,105,97,32,124,124,32,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,99,114,105,116,101,114,105,97,44,32,91,93,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,99,114,105,116,101,114,105,97,44,32,123,125,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,32,47,47,32,66,117,105,108,100,32,116,104,101,32,119,114,97,112,112,101,100,32,102,105,108,116,101,114,32,116,101,115,116,32,102,117,110,99,116,105,111,110,44,32,112,97,115,115,105,110,103,32,116,104,101,32,99,114,105,116,101,114,105,97,32,116,111,32,116,104,101,32,112,114,111,118,105,100,101,100,32,102,117,110,99,116,105,111,110,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,102,110,32,61,32,102,117,110,99,116,105,111,110,32,102,110,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,71,101,110,101,114,97,116,101,100,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,116,104,101,32,99,114,105,116,101,114,105,97,32,109,97,116,99,104,101,115,32,112,97,114,116,92,110,32,32,32,32,32,32,32,32,47,47,32,111,102,32,116,104,101,32,115,101,114,105,97,108,105,122,101,100,32,100,97,116,97,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,70,110,40,105,116,101,109,44,32,99,114,105,116,101,114,105,97,41,59,92,110,32,32,32,32,32,32,125,59,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,119,114,97,112,112,101,100,32,102,117,110,99,116,105,111,110,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,101,102,97,117,108,116,70,105,108,116,101,114,70,110,70,97,99,116,111,114,121,58,32,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,70,105,108,116,101,114,70,110,70,97,99,116,111,114,121,40,99,114,105,116,101,114,105,97,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,71,101,110,101,114,97,116,101,115,32,116,104,101,32,100,101,102,97,117,108,116,32,102,105,108,116,101,114,32,102,117,110,99,116,105,111,110,44,32,117,115,105,110,103,32,116,104,101,32,103,105,118,101,110,32,102,105,108,116,101,114,32,99,114,105,116,101,114,105,97,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,96,110,117,108,108,96,32,105,102,32,110,111,32,99,114,105,116,101,114,105,97,32,111,114,32,99,114,105,116,101,114,105,97,32,102,111,114,109,97,116,32,110,111,116,32,115,117,112,112,111,114,116,101,100,92,110,32,32,32,32,32,32,105,102,32,40,33,99,114,105,116,101,114,105,97,32,124,124,32,33,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,115,83,116,114,105,110,103,41,40,99,114,105,116,101,114,105,97,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,115,82,101,103,69,120,112,41,40,99,114,105,116,101,114,105,97,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,66,117,105,108,116,32,105,110,32,102,105,108,116,101,114,32,99,97,110,32,111,110,108,121,32,115,117,112,112,111,114,116,32,115,116,114,105,110,103,115,32,111,114,32,82,101,103,69,120,112,32,99,114,105,116,101,114,105,97,32,40,97,116,32,116,104,101,32,109,111,109,101,110,116,41,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,32,47,47,32,66,117,105,108,100,32,116,104,101,32,82,101,103,69,120,112,32,110,101,101,100,101,100,32,102,111,114,32,102,105,108,116,101,114,105,110,103,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,101,103,69,120,112,32,61,32,99,114,105,116,101,114,105,97,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,105,115,83,116,114,105,110,103,41,40,114,101,103,69,120,112,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,69,115,99,97,112,101,32,115,112,101,99,105,97,108,32,82,101,103,69,120,112,32,99,104,97,114,97,99,116,101,114,115,32,105,110,32,116,104,101,32,115,116,114,105,110,103,32,97,110,100,32,99,111,110,118,101,114,116,32,99,111,110,116,105,103,117,111,117,115,92,110,32,32,32,32,32,32,32,32,47,47,32,119,104,105,116,101,115,112,97,99,101,32,116,111,32,92,92,115,43,32,109,97,116,99,104,101,115,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,97,116,116,101,114,110,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,101,115,99,97,112,101,82,101,103,69,120,112,41,40,99,114,105,116,101,114,105,97,41,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,82,88,95,83,80,65,67,69,83,44,32,39,92,92,92,92,115,43,39,41,59,32,47,47,32,66,117,105,108,100,32,116,104,101,32,82,101,103,69,120,112,32,40,110,111,32,110,101,101,100,32,102,111,114,32,103,108,111,98,97,108,32,102,108,97,103,44,32,97,115,32,119,101,32,111,110,108,121,32,110,101,101,100,92,110,32,32,32,32,32,32,32,32,47,47,32,116,111,32,102,105,110,100,32,116,104,101,32,118,97,108,117,101,32,111,110,99,101,32,105,110,32,116,104,101,32,115,116,114,105,110,103,41,92,110,92,110,32,32,32,32,32,32,32,32,114,101,103,69,120,112,32,61,32,110,101,119,32,82,101,103,69,120,112,40,92,34,46,42,92,34,46,99,111,110,99,97,116,40,112,97,116,116,101,114,110,44,32,92,34,46,42,92,34,41,44,32,39,105,39,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,71,101,110,101,114,97,116,101,32,116,104,101,32,119,114,97,112,112,101,100,32,102,105,108,116,101,114,32,116,101,115,116,32,102,117,110,99,116,105,111,110,32,116,111,32,117,115,101,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,102,110,32,61,32,102,117,110,99,116,105,111,110,32,102,110,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,105,115,32,115,101,97,114,99,104,101,115,32,97,108,108,32,114,111,119,32,118,97,108,117,101,115,32,40,97,110,100,32,115,117,98,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,41,32,105,110,32,116,104,101,32,101,110,116,105,114,101,32,40,101,120,99,108,117,100,105,110,103,92,110,32,32,32,32,32,32,32,32,47,47,32,115,112,101,99,105,97,108,32,96,95,96,32,112,114,101,102,105,120,101,100,32,107,101,121,115,41,44,32,98,101,99,97,117,115,101,32,119,101,32,99,111,110,118,101,114,116,32,116,104,101,32,114,101,99,111,114,100,32,116,111,32,97,32,115,112,97,99,101,45,115,101,112,97,114,97,116,101,100,92,110,32,32,32,32,32,32,32,32,47,47,32,115,116,114,105,110,103,32,99,111,110,116,97,105,110,105,110,103,32,97,108,108,32,116,104,101,32,118,97,108,117,101,32,112,114,111,112,101,114,116,105,101,115,32,40,114,101,99,117,114,115,105,118,101,108,121,41,44,32,101,118,101,110,32,111,110,101,115,32,116,104,97,116,32,97,114,101,92,110,32,32,32,32,32,32,32,32,47,47,32,110,111,116,32,118,105,115,105,98,108,101,32,40,110,111,116,32,115,112,101,99,105,102,105,101,100,32,105,110,32,116,104,105,115,46,102,105,101,108,100,115,41,92,110,32,32,32,32,32,32,32,32,47,47,32,85,115,101,114,115,32,99,97,110,32,105,103,110,111,114,101,32,102,105,108,116,101,114,105,110,103,32,111,110,32,115,112,101,99,105,102,105,99,32,102,105,101,108,100,115,44,32,111,114,32,111,110,32,111,110,108,121,32,99,101,114,116,97,105,110,32,102,105,101,108,100,115,44,92,110,32,32,32,32,32,32,32,32,47,47,32,97,110,100,32,99,97,110,32,111,112,116,105,111,110,97,108,108,32,115,112,101,99,105,102,121,32,115,101,97,114,99,104,105,110,103,32,114,101,115,117,108,116,115,32,111,102,32,102,105,101,108,100,115,32,119,105,116,104,32,102,111,114,109,97,116,116,101,114,92,110,32,32,32,32,32,32,32,32,47,47,92,110,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,69,110,97,98,108,101,32,115,101,97,114,99,104,105,110,103,32,111,110,32,115,99,111,112,101,100,32,115,108,111,116,115,32,40,111,112,116,105,111,110,97,108,44,32,97,115,32,105,116,32,119,105,108,108,32,98,101,32,83,76,79,87,41,92,110,32,32,32,32,32,32,32,32,47,47,92,110,32,32,32,32,32,32,32,32,47,47,32,71,101,110,101,114,97,116,101,100,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,116,104,101,32,99,114,105,116,101,114,105,97,32,109,97,116,99,104,101,115,32,112,97,114,116,32,111,102,92,110,32,32,32,32,32,32,32,32,47,47,32,116,104,101,32,115,101,114,105,97,108,105,122,101,100,32,100,97,116,97,44,32,111,116,104,101,114,119,105,115,101,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,47,47,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,115,101,116,32,96,108,97,115,116,73,110,100,101,120,32,61,32,48,96,32,111,110,32,116,104,101,32,96,82,101,103,69,120,112,96,32,105,110,32,99,97,115,101,32,115,111,109,101,111,110,101,32,115,112,101,99,105,102,105,101,115,32,116,104,101,32,96,47,103,96,32,103,108,111,98,97,108,32,102,108,97,103,92,110,32,32,32,32,32,32,32,32,114,101,103,69,120,112,46,108,97,115,116,73,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,103,69,120,112,46,116,101,115,116,40,40,48,44,95,115,116,114,105,110,103,105,102,121,95,114,101,99,111,114,100,95,118,97,108,117,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,115,116,114,105,110,103,105,102,121,82,101,99,111,114,100,86,97,108,117,101,115,41,40,105,116,101,109,44,32,95,116,104,105,115,51,46,99,111,109,112,117,116,101,100,70,105,108,116,101,114,73,103,110,111,114,101,100,44,32,95,116,104,105,115,51,46,99,111,109,112,117,116,101,100,70,105,108,116,101,114,73,110,99,108,117,100,101,100,44,32,95,116,104,105,115,51,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,79,98,106,41,41,59,92,110,32,32,32,32,32,32,125,59,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,103,101,110,101,114,97,116,101,100,32,102,117,110,99,116,105,111,110,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,102,105,108,116,101,114,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,105,116,101,109,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,105,116,101,109,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,116,101,109,115,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,116,101,109,115,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,114,109,97,108,105,122,101,95,102,105,101,108,100,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,114,109,97,108,105,122,101,45,102,105,101,108,100,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,110,111,114,109,97,108,105,122,101,45,102,105,101,108,100,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,97,108,117,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,44,92,110,32,32,100,101,102,97,117,108,116,86,97,108,117,101,58,32,91,93,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,92,110,32,32,102,105,101,108,100,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,44,32,110,117,108,108,41,44,92,110,32,32,47,47,32,80,114,111,118,105,100,101,114,32,109,105,120,105,110,32,97,100,100,115,32,105,110,32,96,70,117,110,99,116,105,111,110,96,32,116,121,112,101,92,110,32,32,105,116,101,109,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,44,32,91,93,41,44,92,110,32,32,47,47,32,80,114,105,109,97,114,121,32,107,101,121,32,102,111,114,32,114,101,99,111,114,100,92,110,32,32,47,47,32,73,102,32,112,114,111,118,105,100,101,100,32,116,104,101,32,118,97,108,117,101,32,105,110,32,101,97,99,104,32,114,111,119,32,109,117,115,116,32,98,101,32,117,110,105,113,117,101,33,92,110,32,32,112,114,105,109,97,114,121,75,101,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,44,32,91,93,41,41,41,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,105,116,101,109,115,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,105,120,105,110,115,58,32,91,109,111,100,101,108,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,105,116,101,109,115,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,47,47,32,79,117,114,32,108,111,99,97,108,32,99,111,112,121,32,111,102,32,116,104,101,32,105,116,101,109,115,92,110,32,32,32,32,32,32,47,47,32,77,117,115,116,32,98,101,32,97,110,32,97,114,114,97,121,92,110,32,32,32,32,32,32,108,111,99,97,108,73,116,101,109,115,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,65,114,114,97,121,41,40,105,116,101,109,115,41,32,63,32,105,116,101,109,115,46,115,108,105,99,101,40,41,32,58,32,91,93,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,70,105,101,108,100,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,70,105,101,108,100,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,110,111,114,109,97,108,105,122,101,32,102,105,101,108,100,115,32,105,110,116,111,32,97,110,32,97,114,114,97,121,32,111,102,32,111,98,106,101,99,116,115,92,110,32,32,32,32,32,32,47,47,32,96,91,32,123,32,107,101,121,58,46,46,46,44,32,108,97,98,101,108,58,46,46,46,44,32,46,46,46,125,44,32,123,46,46,46,125,44,32,46,46,46,44,32,123,46,46,125,93,96,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,110,111,114,109,97,108,105,122,101,95,102,105,101,108,100,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,110,111,114,109,97,108,105,122,101,70,105,101,108,100,115,41,40,116,104,105,115,46,102,105,101,108,100,115,44,32,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,70,105,101,108,100,115,79,98,106,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,70,105,101,108,100,115,79,98,106,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,70,105,101,108,100,115,32,97,115,32,97,32,115,105,109,112,108,101,32,108,111,111,107,117,112,32,104,97,115,104,32,111,98,106,101,99,116,92,110,32,32,32,32,32,32,47,47,32,77,97,105,110,108,121,32,102,111,114,32,102,111,114,109,97,116,116,101,114,32,108,111,111,107,117,112,32,97,110,100,32,117,115,101,32,105,110,32,96,115,99,111,112,101,100,83,108,111,116,115,96,32,102,111,114,32,99,111,110,118,101,110,105,101,110,99,101,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,102,105,101,108,100,32,104,97,115,32,97,32,102,111,114,109,97,116,116,101,114,44,32,105,116,32,110,111,114,109,97,108,105,122,101,115,32,102,111,114,109,97,116,116,101,114,32,116,111,32,97,92,110,32,32,32,32,32,32,47,47,32,102,117,110,99,116,105,111,110,32,114,101,102,32,111,114,32,96,117,110,100,101,102,105,110,101,100,96,32,105,102,32,110,111,32,102,111,114,109,97,116,116,101,114,92,110,32,32,32,32,32,32,118,97,114,32,36,112,97,114,101,110,116,32,61,32,116,104,105,115,46,36,112,97,114,101,110,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,111,98,106,44,32,102,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,117,115,101,32,111,98,106,101,99,116,32,115,112,114,101,97,100,32,104,101,114,101,32,115,111,32,119,101,32,100,111,110,39,116,32,109,117,116,97,116,101,32,116,104,101,32,111,114,105,103,105,110,97,108,32,102,105,101,108,100,32,111,98,106,101,99,116,92,110,32,32,32,32,32,32,32,32,111,98,106,91,102,46,107,101,121,93,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,108,111,110,101,41,40,102,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,46,102,111,114,109,97,116,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,114,109,97,108,105,122,101,32,102,111,114,109,97,116,116,101,114,32,116,111,32,97,32,102,117,110,99,116,105,111,110,32,114,101,102,32,111,114,32,96,117,110,100,101,102,105,110,101,100,96,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,114,32,61,32,102,46,102,111,114,109,97,116,116,101,114,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,83,116,114,105,110,103,41,40,102,111,114,109,97,116,116,101,114,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,36,112,97,114,101,110,116,91,102,111,114,109,97,116,116,101,114,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,116,101,114,32,61,32,36,112,97,114,101,110,116,91,102,111,114,109,97,116,116,101,114,93,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,102,111,114,109,97,116,116,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,116,101,114,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,47,47,32,82,101,116,117,114,110,32,102,111,114,109,97,116,116,101,114,32,102,117,110,99,116,105,111,110,32,111,114,32,96,117,110,100,101,102,105,110,101,100,96,32,105,102,32,110,111,110,101,92,110,92,110,92,110,32,32,32,32,32,32,32,32,32,32,111,98,106,91,102,46,107,101,121,93,46,102,111,114,109,97,116,116,101,114,32,61,32,102,111,114,109,97,116,116,101,114,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,59,92,110,32,32,32,32,32,32,125,44,32,123,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,73,116,101,109,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,73,116,101,109,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,70,97,108,108,98,97,99,107,32,105,102,32,118,97,114,105,111,117,115,32,109,105,120,105,110,115,32,110,111,116,32,112,114,111,118,105,100,101,100,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,116,104,105,115,46,112,97,103,105,110,97,116,101,100,73,116,101,109,115,32,124,124,32,116,104,105,115,46,115,111,114,116,101,100,73,116,101,109,115,32,124,124,32,116,104,105,115,46,102,105,108,116,101,114,101,100,73,116,101,109,115,32,124,124,32,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,32,124,124,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,91,93,41,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,110,116,101,120,116,58,32,102,117,110,99,116,105,111,110,32,99,111,110,116,101,120,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,117,114,114,101,110,116,32,115,116,97,116,101,32,111,102,32,115,111,114,116,105,110,103,44,32,102,105,108,116,101,114,105,110,103,32,97,110,100,32,112,97,103,105,110,97,116,105,111,110,32,112,114,111,112,115,47,118,97,108,117,101,115,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,102,105,108,116,101,114,58,32,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,44,92,110,32,32,32,32,32,32,32,32,115,111,114,116,66,121,58,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,44,92,110,32,32,32,32,32,32,32,32,115,111,114,116,68,101,115,99,58,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,44,92,110,32,32,32,32,32,32,32,32,112,101,114,80,97,103,101,58,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,112,101,114,80,97,103,101,44,32,48,41,44,32,48,41,44,92,110,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,80,97,103,101,58,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,44,32,48,41,44,32,49,41,44,92,110,32,32,32,32,32,32,32,32,97,112,105,85,114,108,58,32,116,104,105,115,46,97,112,105,85,114,108,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,105,116,101,109,115,58,32,102,117,110,99,116,105,111,110,32,105,116,101,109,115,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,101,116,32,96,108,111,99,97,108,73,116,101,109,115,96,47,96,102,105,108,116,101,114,101,100,73,116,101,109,115,96,32,116,111,32,97,32,99,111,112,121,32,111,102,32,116,104,101,32,112,114,111,118,105,100,101,100,32,97,114,114,97,121,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,65,114,114,97,121,41,40,110,101,119,86,97,108,117,101,41,32,63,32,110,101,119,86,97,108,117,101,46,115,108,105,99,101,40,41,32,58,32,91,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,87,97,116,99,104,32,102,111,114,32,99,104,97,110,103,101,115,32,111,110,32,96,99,111,109,112,117,116,101,100,73,116,101,109,115,96,32,97,110,100,32,117,112,100,97,116,101,32,116,104,101,32,96,118,45,109,111,100,101,108,96,92,110,32,32,32,32,99,111,109,112,117,116,101,100,73,116,101,109,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,73,116,101,109,115,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,87,97,116,99,104,32,102,111,114,32,99,111,110,116,101,120,116,32,99,104,97,110,103,101,115,92,110,32,32,32,32,99,111,110,116,101,120,116,58,32,102,117,110,99,116,105,111,110,32,99,111,110,116,101,120,116,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,69,109,105,116,32,99,111,110,116,101,120,116,32,105,110,102,111,114,109,97,116,105,111,110,32,102,111,114,32,101,120,116,101,114,110,97,108,32,112,97,103,105,110,103,47,102,105,108,116,101,114,105,110,103,47,115,111,114,116,105,110,103,32,104,97,110,100,108,105,110,103,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,79,78,84,69,88,84,95,67,72,65,78,71,69,68,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,73,110,105,116,105,97,108,108,121,32,117,112,100,97,116,101,32,116,104,101,32,96,118,45,109,111,100,101,108,96,32,111,102,32,100,105,115,112,108,97,121,101,100,32,105,116,101,109,115,92,110,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,77,101,116,104,111,100,32,116,111,32,103,101,116,32,116,104,101,32,102,111,114,109,97,116,116,101,114,32,109,101,116,104,111,100,32,102,111,114,32,97,32,103,105,118,101,110,32,102,105,101,108,100,32,107,101,121,92,110,32,32,32,32,103,101,116,70,105,101,108,100,70,111,114,109,97,116,116,101,114,58,32,102,117,110,99,116,105,111,110,32,103,101,116,70,105,101,108,100,70,111,114,109,97,116,116,101,114,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,105,101,108,100,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,79,98,106,91,107,101,121,93,59,32,47,47,32,96,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,79,98,106,96,32,104,97,115,32,112,114,101,45,110,111,114,109,97,108,105,122,101,100,32,116,104,101,32,102,111,114,109,97,116,116,101,114,32,116,111,32,97,92,110,32,32,32,32,32,32,47,47,32,102,117,110,99,116,105,111,110,32,114,101,102,32,105,102,32,112,114,101,115,101,110,116,44,32,111,116,104,101,114,119,105,115,101,32,96,117,110,100,101,102,105,110,101,100,96,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,101,108,100,32,63,32,102,105,101,108,100,46,102,111,114,109,97,116,116,101,114,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,105,116,101,109,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,112,97,103,105,110,97,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,112,97,103,105,110,97,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,103,105,110,97,116,105,111,110,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,97,103,105,110,97,116,105,111,110,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,99,117,114,114,101,110,116,80,97,103,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,49,41,44,92,110,32,32,112,101,114,80,97,103,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,48,41,92,110,125,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,112,97,103,105,110,97,116,105,111,110,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,108,111,99,97,108,80,97,103,105,110,103,58,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,80,97,103,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,114,111,118,105,100,101,114,32,63,32,33,33,116,104,105,115,46,110,111,80,114,111,118,105,100,101,114,80,97,103,105,110,103,32,58,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,97,103,105,110,97,116,101,100,73,116,101,109,115,58,32,102,117,110,99,116,105,111,110,32,112,97,103,105,110,97,116,101,100,73,116,101,109,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,115,111,114,116,101,100,73,116,101,109,115,32,124,124,32,116,104,105,115,46,102,105,108,116,101,114,101,100,73,116,101,109,115,32,124,124,32,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,32,124,124,32,91,93,59,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,80,97,103,101,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,44,32,49,41,44,32,49,41,59,92,110,32,32,32,32,32,32,118,97,114,32,112,101,114,80,97,103,101,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,112,101,114,80,97,103,101,44,32,48,41,44,32,48,41,59,32,47,47,32,65,112,112,108,121,32,108,111,99,97,108,32,112,97,103,105,110,97,116,105,111,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,111,99,97,108,80,97,103,105,110,103,32,38,38,32,112,101,114,80,97,103,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,71,114,97,98,32,116,104,101,32,99,117,114,114,101,110,116,32,112,97,103,101,32,111,102,32,100,97,116,97,32,40,119,104,105,99,104,32,109,97,121,32,98,101,32,112,97,115,116,32,102,105,108,116,101,114,101,100,32,105,116,101,109,115,32,108,105,109,105,116,41,92,110,32,32,32,32,32,32,32,32,105,116,101,109,115,32,61,32,105,116,101,109,115,46,115,108,105,99,101,40,40,99,117,114,114,101,110,116,80,97,103,101,32,45,32,49,41,32,42,32,112,101,114,80,97,103,101,44,32,99,117,114,114,101,110,116,80,97,103,101,32,42,32,112,101,114,80,97,103,101,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,105,116,101,109,115,32,116,111,32,100,105,115,112,108,97,121,32,105,110,32,116,104,101,32,116,97,98,108,101,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,115,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,112,97,103,105,110,97,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,112,114,111,118,105,100,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,112,114,111,118,105,100,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,118,105,100,101,114,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,118,105,100,101,114,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,119,97,114,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,69,68,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,84,65,66,76,69,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,69,68,41,59,92,110,118,97,114,32,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,84,65,66,76,69,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,41,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,47,47,32,80,97,115,115,101,100,32,116,111,32,116,104,101,32,99,111,110,116,101,120,116,32,111,98,106,101,99,116,92,110,32,32,47,47,32,78,111,116,32,117,115,101,100,32,98,121,32,96,60,98,45,116,97,98,108,101,62,96,32,100,105,114,101,99,116,108,121,92,110,32,32,97,112,105,85,114,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,65,100,100,115,32,105,110,32,39,70,117,110,99,116,105,111,110,39,32,115,117,112,112,111,114,116,92,110,32,32,105,116,101,109,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,70,85,78,67,84,73,79,78,44,32,91,93,41,44,92,110,32,32,110,111,80,114,111,118,105,100,101,114,70,105,108,116,101,114,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,80,114,111,118,105,100,101,114,80,97,103,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,80,114,111,118,105,100,101,114,83,111,114,116,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,112,114,111,118,105,100,101,114,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,108,105,115,116,101,110,79,110,82,111,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,104,97,115,80,114,111,118,105,100,101,114,58,32,102,117,110,99,116,105,111,110,32,104,97,115,80,114,111,118,105,100,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,104,105,115,46,105,116,101,109,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,114,111,118,105,100,101,114,84,114,105,103,103,101,114,67,111,110,116,101,120,116,58,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,114,84,114,105,103,103,101,114,67,111,110,116,101,120,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,85,115,101,100,32,116,111,32,116,114,105,103,103,101,114,32,116,104,101,32,112,114,111,118,105,100,101,114,32,102,117,110,99,116,105,111,110,32,118,105,97,32,97,32,119,97,116,99,104,101,114,46,32,79,110,108,121,32,116,104,101,32,102,105,101,108,100,115,32,116,104,97,116,92,110,32,32,32,32,32,32,47,47,32,97,114,101,32,110,101,101,100,101,100,32,102,111,114,32,116,114,105,103,103,101,114,105,110,103,32,97,32,112,114,111,118,105,100,101,114,32,117,112,100,97,116,101,32,97,114,101,32,105,110,99,108,117,100,101,100,46,32,78,111,116,101,32,116,104,97,116,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,114,101,103,117,108,97,114,32,116,104,105,115,46,99,111,110,116,101,120,116,32,105,115,32,115,101,110,116,32,116,111,32,116,104,101,32,112,114,111,118,105,100,101,114,32,100,117,114,105,110,103,32,102,101,116,99,104,101,115,32,116,104,111,117,103,104,44,32,97,115,32,116,104,101,121,92,110,32,32,32,32,32,32,47,47,32,109,97,121,32,110,101,101,100,32,97,108,108,32,116,104,101,32,112,114,111,112,32,105,110,102,111,46,92,110,32,32,32,32,32,32,118,97,114,32,99,116,120,32,61,32,123,92,110,32,32,32,32,32,32,32,32,97,112,105,85,114,108,58,32,116,104,105,115,46,97,112,105,85,114,108,44,92,110,32,32,32,32,32,32,32,32,102,105,108,116,101,114,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,115,111,114,116,66,121,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,115,111,114,116,68,101,115,99,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,112,101,114,80,97,103,101,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,80,97,103,101,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,110,111,80,114,111,118,105,100,101,114,70,105,108,116,101,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,69,105,116,104,101,114,32,97,32,115,116,114,105,110,103,44,32,111,114,32,99,111,117,108,100,32,98,101,32,97,110,32,111,98,106,101,99,116,32,111,114,32,97,114,114,97,121,46,92,110,32,32,32,32,32,32,32,32,99,116,120,46,102,105,108,116,101,114,32,61,32,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,110,111,80,114,111,118,105,100,101,114,83,111,114,116,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,99,116,120,46,115,111,114,116,66,121,32,61,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,59,92,110,32,32,32,32,32,32,32,32,99,116,120,46,115,111,114,116,68,101,115,99,32,61,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,110,111,80,114,111,118,105,100,101,114,80,97,103,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,99,116,120,46,112,101,114,80,97,103,101,32,61,32,116,104,105,115,46,112,101,114,80,97,103,101,59,92,110,32,32,32,32,32,32,32,32,99,116,120,46,99,117,114,114,101,110,116,80,97,103,101,32,61,32,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,99,108,111,110,101,41,40,99,116,120,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,47,47,32,80,114,111,118,105,100,101,114,32,117,112,100,97,116,101,32,116,114,105,103,103,101,114,105,110,103,92,110,32,32,32,32,105,116,101,109,115,58,32,102,117,110,99,116,105,111,110,32,105,116,101,109,115,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,97,32,110,101,119,32,112,114,111,118,105,100,101,114,32,104,97,115,32,98,101,101,110,32,115,112,101,99,105,102,105,101,100,44,32,116,114,105,103,103,101,114,32,97,110,32,117,112,100,97,116,101,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,80,114,111,118,105,100,101,114,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,110,101,119,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,95,112,114,111,118,105,100,101,114,85,112,100,97,116,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,114,111,118,105,100,101,114,84,114,105,103,103,101,114,67,111,110,116,101,120,116,58,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,114,84,114,105,103,103,101,114,67,111,110,116,101,120,116,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,114,105,103,103,101,114,32,116,104,101,32,112,114,111,118,105,100,101,114,32,116,111,32,117,112,100,97,116,101,32,97,115,32,116,104,101,32,114,101,108,101,118,97,110,116,32,99,111,110,116,101,120,116,32,118,97,108,117,101,115,32,104,97,118,101,32,99,104,97,110,103,101,100,46,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,95,112,114,111,118,105,100,101,114,85,112,100,97,116,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,47,47,32,67,97,108,108,32,116,104,101,32,105,116,101,109,115,32,112,114,111,118,105,100,101,114,32,105,102,32,110,101,99,101,115,115,97,114,121,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,80,114,111,118,105,100,101,114,32,38,38,32,40,33,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,32,124,124,32,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,46,108,101,110,103,116,104,32,61,61,61,32,48,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,70,101,116,99,104,32,111,110,32,109,111,117,110,116,32,105,102,32,108,111,99,97,108,73,116,101,109,115,32,105,115,32,101,109,112,116,121,92,110,32,32,32,32,32,32,116,104,105,115,46,95,112,114,111,118,105,100,101,114,85,112,100,97,116,101,40,41,59,92,110,32,32,32,32,125,32,47,47,32,76,105,115,116,101,110,32,102,111,114,32,103,108,111,98,97,108,32,109,101,115,115,97,103,101,115,32,116,111,32,116,101,108,108,32,117,115,32,116,111,32,102,111,114,99,101,32,114,101,102,114,101,115,104,32,116,104,101,32,116,97,98,108,101,92,110,92,110,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,44,32,102,117,110,99,116,105,111,110,32,40,105,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,100,32,61,61,61,32,95,116,104,105,115,46,105,100,32,124,124,32,105,100,32,61,61,61,32,95,116,104,105,115,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,114,101,102,114,101,115,104,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,114,101,102,114,101,115,104,58,32,102,117,110,99,116,105,111,110,32,114,101,102,114,101,115,104,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,105,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,102,114,101,115,104,32,61,32,116,104,105,115,46,114,101,102,114,101,115,104,59,32,47,47,32,80,117,98,108,105,99,32,77,101,116,104,111,100,58,32,70,111,114,99,101,32,97,32,114,101,102,114,101,115,104,32,111,102,32,116,104,101,32,112,114,111,118,105,100,101,114,32,102,117,110,99,116,105,111,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,111,102,102,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,69,68,44,32,114,101,102,114,101,115,104,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,115,121,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,97,110,39,116,32,102,111,114,99,101,32,97,110,32,117,112,100,97,116,101,32,119,104,101,110,32,102,111,114,99,101,100,32,98,117,115,121,32,98,121,32,117,115,101,114,32,40,98,117,115,121,32,112,114,111,112,32,61,61,61,32,116,114,117,101,41,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,111,99,97,108,66,117,115,121,32,38,38,32,116,104,105,115,46,104,97,115,80,114,111,118,105,100,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,66,117,116,32,105,102,32,112,114,111,118,105,100,101,114,32,114,117,110,110,105,110,103,32,40,108,111,99,97,108,66,117,115,121,41,44,32,114,101,45,115,99,104,101,100,117,108,101,32,114,101,102,114,101,115,104,32,111,110,99,101,32,96,114,101,102,114,101,115,104,101,100,96,32,101,109,105,116,116,101,100,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,69,68,44,32,114,101,102,114,101,115,104,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,80,114,111,118,105,100,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,95,112,114,111,118,105,100,101,114,85,112,100,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,65,114,114,97,121,41,40,105,116,101,109,115,41,32,63,32,105,116,101,109,115,46,115,108,105,99,101,40,41,32,58,32,91,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,114,111,118,105,100,101,114,32,114,101,108,97,116,101,100,32,109,101,116,104,111,100,115,92,110,32,32,32,32,95,112,114,111,118,105,100,101,114,83,101,116,76,111,99,97,108,58,32,102,117,110,99,116,105,111,110,32,95,112,114,111,118,105,100,101,114,83,101,116,76,111,99,97,108,40,105,116,101,109,115,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,65,114,114,97,121,41,40,105,116,101,109,115,41,32,63,32,105,116,101,109,115,46,115,108,105,99,101,40,41,32,58,32,91,93,59,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,66,117,115,121,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,69,68,41,59,32,47,47,32,78,101,119,32,114,111,111,116,32,101,109,105,116,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,69,68,44,32,116,104,105,115,46,105,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,95,112,114,111,118,105,100,101,114,85,112,100,97,116,101,58,32,102,117,110,99,116,105,111,110,32,95,112,114,111,118,105,100,101,114,85,112,100,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,82,101,102,114,101,115,104,32,116,104,101,32,112,114,111,118,105,100,101,114,32,102,117,110,99,116,105,111,110,32,105,116,101,109,115,46,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,104,97,115,80,114,111,118,105,100,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,111,32,110,111,116,104,105,110,103,32,105,102,32,110,111,32,112,114,111,118,105,100,101,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,73,102,32,116,97,98,108,101,32,105,115,32,98,117,115,121,44,32,119,97,105,116,32,117,110,116,105,108,32,114,101,102,114,101,115,104,101,100,32,98,101,102,111,114,101,32,99,97,108,108,105,110,103,32,97,103,97,105,110,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,115,121,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,99,104,101,100,117,108,101,32,97,32,110,101,119,32,114,101,102,114,101,115,104,32,111,110,99,101,32,96,114,101,102,114,101,115,104,101,100,96,32,105,115,32,101,109,105,116,116,101,100,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,114,101,102,114,101,115,104,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,83,101,116,32,105,110,116,101,114,110,97,108,32,98,117,115,121,32,115,116,97,116,101,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,66,117,115,121,32,61,32,116,114,117,101,59,32,47,47,32,67,97,108,108,32,112,114,111,118,105,100,101,114,32,102,117,110,99,116,105,111,110,32,119,105,116,104,32,99,111,110,116,101,120,116,32,97,110,100,32,111,112,116,105,111,110,97,108,32,99,97,108,108,98,97,99,107,32,97,102,116,101,114,32,68,79,77,32,105,115,32,102,117,108,108,121,32,117,112,100,97,116,101,100,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,67,97,108,108,32,112,114,111,118,105,100,101,114,32,102,117,110,99,116,105,111,110,32,112,97,115,115,105,110,103,32,105,116,32,116,104,101,32,99,111,110,116,101,120,116,32,97,110,100,32,111,112,116,105,111,110,97,108,32,99,97,108,108,98,97,99,107,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,95,116,104,105,115,50,46,105,116,101,109,115,40,95,116,104,105,115,50,46,99,111,110,116,101,120,116,44,32,95,116,104,105,115,50,46,95,112,114,111,118,105,100,101,114,83,101,116,76,111,99,97,108,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,80,114,111,109,105,115,101,41,40,100,97,116,97,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,80,114,111,118,105,100,101,114,32,114,101,116,117,114,110,101,100,32,80,114,111,109,105,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,97,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,80,114,111,118,105,100,101,114,32,114,101,115,111,108,118,101,100,32,119,105,116,104,32,105,116,101,109,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,95,112,114,111,118,105,100,101,114,83,101,116,76,111,99,97,108,40,105,116,101,109,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,65,114,114,97,121,41,40,100,97,116,97,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,80,114,111,118,105,100,101,114,32,114,101,116,117,114,110,101,100,32,65,114,114,97,121,32,100,97,116,97,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,95,112,114,111,118,105,100,101,114,83,101,116,76,111,99,97,108,40,100,97,116,97,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,50,46,105,116,101,109,115,46,108,101,110,103,116,104,32,33,61,61,32,50,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,104,101,99,107,32,110,117,109,98,101,114,32,111,102,32,97,114,103,117,109,101,110,116,115,32,112,114,111,118,105,100,101,114,32,102,117,110,99,116,105,111,110,32,114,101,113,117,101,115,116,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,80,114,111,118,105,100,101,114,32,110,111,116,32,117,115,105,110,103,32,99,97,108,108,98,97,99,107,32,40,100,105,100,110,39,116,32,114,101,113,117,101,115,116,32,115,101,99,111,110,100,32,97,114,103,117,109,101,110,116,41,44,32,115,111,32,119,101,32,99,108,101,97,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,98,117,115,121,32,115,116,97,116,101,32,97,115,32,109,111,115,116,32,108,105,107,101,108,121,32,116,104,101,114,101,32,119,97,115,32,97,110,32,101,114,114,111,114,32,105,110,32,116,104,101,32,112,114,111,118,105,100,101,114,32,102,117,110,99,116,105,111,110,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,119,97,114,110,41,40,92,34,80,114,111,118,105,100,101,114,32,102,117,110,99,116,105,111,110,32,100,105,100,110,39,116,32,114,101,113,117,101,115,116,32,99,97,108,108,98,97,99,107,32,97,110,100,32,100,105,100,32,110,111,116,32,114,101,116,117,114,110,32,97,32,112,114,111,109,105,115,101,32,111,114,32,100,97,116,97,46,92,34,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,84,65,66,76,69,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,108,111,99,97,108,66,117,115,121,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,80,114,111,118,105,100,101,114,32,102,117,110,99,116,105,111,110,32,98,111,114,107,101,100,32,111,110,32,117,115,44,32,115,111,32,119,101,32,115,112,101,119,32,111,117,116,32,97,32,119,97,114,110,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,97,110,100,32,99,108,101,97,114,32,116,104,101,32,98,117,115,121,32,115,116,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,119,97,114,110,41,40,92,34,80,114,111,118,105,100,101,114,32,102,117,110,99,116,105,111,110,32,101,114,114,111,114,32,91,92,34,46,99,111,110,99,97,116,40,101,46,110,97,109,101,44,32,92,34,93,32,92,34,41,46,99,111,110,99,97,116,40,101,46,109,101,115,115,97,103,101,44,32,92,34,46,92,34,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,84,65,66,76,69,41,59,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,108,111,99,97,108,66,117,115,121,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,36,111,102,102,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,69,68,44,32,95,116,104,105,115,50,46,114,101,102,114,101,115,104,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,112,114,111,118,105,100,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,101,108,101,99,116,97,98,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,101,108,101,99,116,97,98,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,108,101,99,116,97,98,108,101,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,108,101,99,116,97,98,108,101,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,97,110,105,116,105,122,101,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,97,110,105,116,105,122,101,45,114,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,115,97,110,105,116,105,122,101,45,114,111,119,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,83,69,76,69,67,84,95,77,79,68,69,83,32,61,32,91,39,114,97,110,103,101,39,44,32,39,109,117,108,116,105,39,44,32,39,115,105,110,103,108,101,39,93,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,47,47,32,68,105,115,97,98,108,101,32,117,115,101,32,111,102,32,99,108,105,99,107,32,104,97,110,100,108,101,114,115,32,102,111,114,32,114,111,119,32,115,101,108,101,99,116,105,111,110,92,110,32,32,110,111,83,101,108,101,99,116,79,110,67,108,105,99,107,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,101,108,101,99,116,77,111,100,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,109,117,108,116,105,39,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,83,69,76,69,67,84,95,77,79,68,69,83,44,32,118,97,108,117,101,41,59,92,110,32,32,125,41,44,92,110,32,32,115,101,108,101,99,116,97,98,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,101,108,101,99,116,101,100,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,97,99,116,105,118,101,39,41,92,110,125,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,115,101,108,101,99,116,97,98,108,101,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,82,111,119,115,58,32,91,93,44,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,76,97,115,116,82,111,119,58,32,45,49,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,105,115,83,101,108,101,99,116,97,98,108,101,58,32,102,117,110,99,116,105,111,110,32,105,115,83,101,108,101,99,116,97,98,108,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,32,38,38,32,116,104,105,115,46,115,101,108,101,99,116,77,111,100,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,115,83,101,108,101,99,116,97,98,108,101,82,111,119,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,104,97,115,83,101,108,101,99,116,97,98,108,101,82,111,119,67,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,32,38,38,32,33,116,104,105,115,46,110,111,83,101,108,101,99,116,79,110,67,108,105,99,107,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,117,112,112,111,114,116,115,83,101,108,101,99,116,97,98,108,101,82,111,119,115,58,32,102,117,110,99,116,105,111,110,32,115,117,112,112,111,114,116,115,83,101,108,101,99,116,97,98,108,101,82,111,119,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,97,98,108,101,72,97,115,83,101,108,101,99,116,105,111,110,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,97,98,108,101,72,97,115,83,101,108,101,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,101,100,82,111,119,115,32,61,32,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,32,38,38,32,115,101,108,101,99,116,101,100,82,111,119,115,32,38,38,32,115,101,108,101,99,116,101,100,82,111,119,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,115,101,108,101,99,116,101,100,82,111,119,115,46,115,111,109,101,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,97,98,108,101,73,115,77,117,108,116,105,83,101,108,101,99,116,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,97,98,108,101,73,115,77,117,108,116,105,83,101,108,101,99,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,32,38,38,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,91,39,114,97,110,103,101,39,44,32,39,109,117,108,116,105,39,93,44,32,116,104,105,115,46,115,101,108,101,99,116,77,111,100,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,97,98,108,101,84,97,98,108,101,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,97,98,108,101,84,97,98,108,101,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,114,101,102,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,115,83,101,108,101,99,116,97,98,108,101,32,61,32,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,114,101,102,32,61,32,123,92,110,32,32,32,32,32,32,32,32,39,98,45,116,97,98,108,101,45,115,101,108,101,99,116,97,98,108,101,39,58,32,105,115,83,101,108,101,99,116,97,98,108,101,92,110,32,32,32,32,32,32,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,98,45,116,97,98,108,101,45,115,101,108,101,99,116,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,101,108,101,99,116,77,111,100,101,41,44,32,105,115,83,101,108,101,99,116,97,98,108,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,39,98,45,116,97,98,108,101,45,115,101,108,101,99,116,105,110,103,39,44,32,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,72,97,115,83,101,108,101,99,116,105,111,110,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,39,98,45,116,97,98,108,101,45,115,101,108,101,99,116,97,98,108,101,45,110,111,45,99,108,105,99,107,39,44,32,105,115,83,101,108,101,99,116,97,98,108,101,32,38,38,32,33,116,104,105,115,46,104,97,115,83,101,108,101,99,116,97,98,108,101,82,111,119,67,108,105,99,107,41,44,32,95,114,101,102,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,97,98,108,101,84,97,98,108,101,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,97,98,108,101,84,97,98,108,101,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,92,110,32,32,32,32,32,32,32,32,47,47,32,32,32,83,104,111,117,108,100,32,116,104,105,115,32,97,116,116,114,105,98,117,116,101,32,110,111,116,32,98,101,32,105,110,99,108,117,100,101,100,32,119,104,101,110,32,110,111,45,115,101,108,101,99,116,45,111,110,45,99,108,105,99,107,32,105,115,32,115,101,116,92,110,32,32,32,32,32,32,32,32,47,47,32,32,32,115,105,110,99,101,32,116,104,105,115,32,97,116,116,114,105,98,117,116,101,32,105,109,112,108,105,101,115,32,107,101,121,98,111,97,114,100,32,110,97,118,105,103,97,116,105,111,110,63,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,109,117,108,116,105,115,101,108,101,99,116,97,98,108,101,39,58,32,33,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,32,63,32,110,117,108,108,32,58,32,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,73,115,77,117,108,116,105,83,101,108,101,99,116,32,63,32,39,116,114,117,101,39,32,58,32,39,102,97,108,115,101,39,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,73,116,101,109,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,73,116,101,109,115,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,115,101,116,32,102,111,114,32,115,101,108,101,99,116,97,98,108,101,92,110,32,32,32,32,32,32,118,97,114,32,101,113,117,97,108,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,32,38,38,32,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,81,117,105,99,107,32,99,104,101,99,107,32,97,103,97,105,110,115,116,32,97,114,114,97,121,32,108,101,110,103,116,104,92,110,32,32,32,32,32,32,32,32,101,113,117,97,108,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,65,114,114,97,121,41,40,110,101,119,86,97,108,117,101,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,65,114,114,97,121,41,40,111,108,100,86,97,108,117,101,41,32,38,38,32,110,101,119,86,97,108,117,101,46,108,101,110,103,116,104,32,61,61,61,32,111,108,100,86,97,108,117,101,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,101,113,117,97,108,32,38,38,32,105,32,60,32,110,101,119,86,97,108,117,101,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,76,111,111,107,32,102,111,114,32,116,104,101,32,102,105,114,115,116,32,110,111,110,45,108,111,111,115,101,108,121,32,101,113,117,97,108,32,114,111,119,44,32,97,102,116,101,114,32,105,103,110,111,114,105,110,103,32,114,101,115,101,114,118,101,100,32,102,105,101,108,100,115,92,110,32,32,32,32,32,32,32,32,32,32,101,113,117,97,108,32,61,32,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,40,48,44,95,115,97,110,105,116,105,122,101,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,115,97,110,105,116,105,122,101,82,111,119,41,40,110,101,119,86,97,108,117,101,91,105,93,41,44,32,40,48,44,95,115,97,110,105,116,105,122,101,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,115,97,110,105,116,105,122,101,82,111,119,41,40,111,108,100,86,97,108,117,101,91,105,93,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,101,113,117,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,97,98,108,101,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,97,98,108,101,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,101,108,101,99,116,105,111,110,72,97,110,100,108,101,114,115,40,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,77,111,100,101,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,77,111,100,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,115,83,101,108,101,99,116,97,98,108,101,82,111,119,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,104,97,115,83,101,108,101,99,116,97,98,108,101,82,111,119,67,108,105,99,107,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,101,108,101,99,116,105,111,110,72,97,110,100,108,101,114,115,40,33,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,101,100,82,111,119,115,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,101,100,82,111,119,115,40,95,115,101,108,101,99,116,101,100,82,111,119,115,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,95,115,101,108,101,99,116,101,100,82,111,119,115,44,32,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,91,93,59,32,47,47,32,96,46,102,111,114,69,97,99,104,40,41,96,32,115,107,105,112,115,32,111,118,101,114,32,110,111,110,45,101,120,105,115,116,101,110,116,32,105,110,100,105,99,101,115,32,40,111,110,32,115,112,97,114,115,101,32,97,114,114,97,121,115,41,92,110,92,110,32,32,32,32,32,32,32,32,95,115,101,108,101,99,116,101,100,82,111,119,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,118,44,32,105,100,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,116,101,109,115,46,112,117,115,104,40,95,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,91,105,100,120,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,83,69,76,69,67,84,69,68,44,32,105,116,101,109,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,77,111,117,110,116,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,77,111,117,110,116,40,41,32,123,92,110,32,32,32,32,47,47,32,83,101,116,32,117,112,32,104,97,110,100,108,101,114,115,32,105,102,32,110,101,101,100,101,100,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,101,108,101,99,116,105,111,110,72,97,110,100,108,101,114,115,40,116,114,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,80,117,98,108,105,99,32,109,101,116,104,111,100,115,92,110,32,32,32,32,115,101,108,101,99,116,82,111,119,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,82,111,119,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,101,108,101,99,116,32,97,32,112,97,114,116,105,99,117,108,97,114,32,114,111,119,32,40,105,110,100,101,120,101,100,32,98,97,115,101,100,32,111,110,32,99,111,109,112,117,116,101,100,73,116,101,109,115,41,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,78,117,109,98,101,114,41,40,105,110,100,101,120,41,32,38,38,32,105,110,100,101,120,32,62,61,32,48,32,38,38,32,105,110,100,101,120,32,60,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,46,108,101,110,103,116,104,32,38,38,32,33,116,104,105,115,46,105,115,82,111,119,83,101,108,101,99,116,101,100,40,105,110,100,101,120,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,101,100,82,111,119,115,32,61,32,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,73,115,77,117,108,116,105,83,101,108,101,99,116,32,63,32,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,46,115,108,105,99,101,40,41,32,58,32,91,93,59,92,110,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,82,111,119,115,91,105,110,100,101,120,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,101,100,76,97,115,116,67,108,105,99,107,101,100,32,61,32,45,49,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,32,61,32,115,101,108,101,99,116,101,100,82,111,119,115,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,110,115,101,108,101,99,116,82,111,119,58,32,102,117,110,99,116,105,111,110,32,117,110,115,101,108,101,99,116,82,111,119,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,47,47,32,85,110,45,115,101,108,101,99,116,32,97,32,112,97,114,116,105,99,117,108,97,114,32,114,111,119,32,40,105,110,100,101,120,101,100,32,98,97,115,101,100,32,111,110,32,96,99,111,109,112,117,116,101,100,73,116,101,109,115,96,41,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,78,117,109,98,101,114,41,40,105,110,100,101,120,41,32,38,38,32,116,104,105,115,46,105,115,82,111,119,83,101,108,101,99,116,101,100,40,105,110,100,101,120,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,101,100,82,111,119,115,32,61,32,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,82,111,119,115,91,105,110,100,101,120,93,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,101,100,76,97,115,116,67,108,105,99,107,101,100,32,61,32,45,49,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,32,61,32,115,101,108,101,99,116,101,100,82,111,119,115,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,65,108,108,82,111,119,115,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,65,108,108,82,111,119,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,32,38,38,32,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,101,100,76,97,115,116,67,108,105,99,107,101,100,32,61,32,45,49,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,32,61,32,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,73,115,77,117,108,116,105,83,101,108,101,99,116,32,63,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,114,101,97,116,101,65,114,114,97,121,41,40,108,101,110,103,116,104,44,32,116,114,117,101,41,32,58,32,91,116,114,117,101,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,82,111,119,83,101,108,101,99,116,101,100,58,32,102,117,110,99,116,105,111,110,32,105,115,82,111,119,83,101,108,101,99,116,101,100,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,32,114,111,119,32,105,115,32,115,101,108,101,99,116,101,100,32,40,105,110,100,101,120,101,100,32,98,97,115,101,100,32,111,110,32,96,99,111,109,112,117,116,101,100,73,116,101,109,115,96,41,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,78,117,109,98,101,114,41,40,105,110,100,101,120,41,32,38,38,32,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,91,105,110,100,101,120,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,108,101,97,114,83,101,108,101,99,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,83,101,108,101,99,116,101,100,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,108,101,97,114,32,97,110,121,32,97,99,116,105,118,101,32,115,101,108,101,99,116,101,100,32,114,111,119,40,115,41,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,101,100,76,97,115,116,67,108,105,99,107,101,100,32,61,32,45,49,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,32,61,32,91,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,73,110,116,101,114,110,97,108,32,112,114,105,118,97,116,101,32,109,101,116,104,111,100,115,92,110,32,32,32,32,115,101,108,101,99,116,97,98,108,101,82,111,119,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,97,98,108,101,82,111,119,67,108,97,115,115,101,115,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,32,38,38,32,116,104,105,115,46,105,115,82,111,119,83,101,108,101,99,116,101,100,40,105,110,100,101,120,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,115,101,108,101,99,116,101,100,86,97,114,105,97,110,116,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,92,110,32,32,32,32,32,32,32,32,32,32,39,98,45,116,97,98,108,101,45,114,111,119,45,115,101,108,101,99,116,101,100,39,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,125,44,32,92,34,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,100,97,114,107,32,63,32,39,98,103,39,32,58,32,39,116,97,98,108,101,39,44,32,92,34,45,92,34,41,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,44,32,118,97,114,105,97,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,97,98,108,101,82,111,119,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,97,98,108,101,82,111,119,65,116,116,114,115,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,115,101,108,101,99,116,101,100,39,58,32,33,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,32,63,32,110,117,108,108,32,58,32,116,104,105,115,46,105,115,82,111,119,83,101,108,101,99,116,101,100,40,105,110,100,101,120,41,32,63,32,39,116,114,117,101,39,32,58,32,39,102,97,108,115,101,39,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,83,101,108,101,99,116,105,111,110,72,97,110,100,108,101,114,115,58,32,102,117,110,99,116,105,111,110,32,115,101,116,83,101,108,101,99,116,105,111,110,72,97,110,100,108,101,114,115,40,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,101,116,104,111,100,32,61,32,111,110,32,38,38,32,33,116,104,105,115,46,110,111,83,101,108,101,99,116,79,110,67,108,105,99,107,32,63,32,39,36,111,110,39,32,58,32,39,36,111,102,102,39,59,32,47,47,32,72,97,110,100,108,101,32,114,111,119,45,99,108,105,99,107,101,100,32,101,118,101,110,116,92,110,92,110,32,32,32,32,32,32,116,104,105,115,91,109,101,116,104,111,100,93,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,67,76,73,67,75,69,68,44,32,116,104,105,115,46,115,101,108,101,99,116,105,111,110,72,97,110,100,108,101,114,41,59,32,47,47,32,67,108,101,97,114,32,115,101,108,101,99,116,105,111,110,32,111,110,32,102,105,108,116,101,114,44,32,112,97,103,105,110,97,116,105,111,110,44,32,97,110,100,32,115,111,114,116,32,99,104,97,110,103,101,115,92,110,92,110,32,32,32,32,32,32,116,104,105,115,91,109,101,116,104,111,100,93,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,69,86,69,78,84,95,78,65,77,69,95,70,73,76,84,69,82,69,68,44,32,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,41,59,92,110,32,32,32,32,32,32,116,104,105,115,91,109,101,116,104,111,100,93,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,79,78,84,69,88,84,95,67,72,65,78,71,69,68,44,32,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,105,111,110,72,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,105,111,110,72,97,110,100,108,101,114,40,105,116,101,109,44,32,105,110,100,101,120,44,32,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,58,32,115,104,111,117,108,100,32,110,101,118,101,114,32,104,97,112,112,101,110,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,32,124,124,32,116,104,105,115,46,110,111,83,101,108,101,99,116,79,110,67,108,105,99,107,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,111,110,39,116,32,100,111,32,97,110,121,116,104,105,110,103,32,105,102,32,116,97,98,108,101,32,105,115,32,110,111,116,32,105,110,32,115,101,108,101,99,116,97,98,108,101,32,109,111,100,101,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,40,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,77,111,100,101,32,61,32,116,104,105,115,46,115,101,108,101,99,116,77,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,76,97,115,116,82,111,119,32,61,32,116,104,105,115,46,115,101,108,101,99,116,101,100,76,97,115,116,82,111,119,59,92,110,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,101,100,82,111,119,115,32,61,32,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,101,100,32,61,32,33,115,101,108,101,99,116,101,100,82,111,119,115,91,105,110,100,101,120,93,59,32,47,47,32,78,111,116,101,32,39,109,117,108,116,105,39,32,109,111,100,101,32,110,101,101,100,115,32,110,111,32,115,112,101,99,105,97,108,32,101,118,101,110,116,32,104,97,110,100,108,105,110,103,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,77,111,100,101,32,61,61,61,32,39,115,105,110,103,108,101,39,41,32,123,92,110,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,82,111,119,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,101,108,101,99,116,77,111,100,101,32,61,61,61,32,39,114,97,110,103,101,39,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,101,100,76,97,115,116,82,111,119,32,62,32,45,49,32,38,38,32,101,118,101,110,116,46,115,104,105,102,116,75,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,114,97,110,103,101,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,100,120,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,116,104,77,105,110,41,40,115,101,108,101,99,116,101,100,76,97,115,116,82,111,119,44,32,105,110,100,101,120,41,59,32,105,100,120,32,60,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,116,104,77,97,120,41,40,115,101,108,101,99,116,101,100,76,97,115,116,82,111,119,44,32,105,110,100,101,120,41,59,32,105,100,120,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,82,111,119,115,91,105,100,120,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,101,118,101,110,116,46,99,116,114,108,75,101,121,32,124,124,32,101,118,101,110,116,46,109,101,116,97,75,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,108,101,97,114,32,114,97,110,103,101,32,115,101,108,101,99,116,105,111,110,32,105,102,32,97,110,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,82,111,119,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,101,100,76,97,115,116,82,111,119,32,61,32,115,101,108,101,99,116,101,100,32,63,32,105,110,100,101,120,32,58,32,45,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,82,111,119,115,91,105,110,100,101,120,93,32,61,32,115,101,108,101,99,116,101,100,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,32,61,32,115,101,108,101,99,116,101,100,82,111,119,115,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,101,108,101,99,116,97,98,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,111,114,116,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,111,114,116,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,111,114,116,105,110,103,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,111,114,116,105,110,103,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,97,98,108,101,95,115,111,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,115,116,97,98,108,101,45,115,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,97,98,108,101,45,115,111,114,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,102,97,117,108,116,95,115,111,114,116,95,99,111,109,112,97,114,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,102,97,117,108,116,45,115,111,114,116,45,99,111,109,112,97,114,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,100,101,102,97,117,108,116,45,115,111,114,116,45,99,111,109,112,97,114,101,46,106,115,92,34,41,59,92,110,118,97,114,32,95,112,114,111,112,115,44,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,79,82,84,95,66,89,32,61,32,39,115,111,114,116,66,121,39,59,92,110,118,97,114,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,83,79,82,84,95,66,89,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,32,43,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,79,82,84,95,66,89,59,92,110,118,97,114,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,79,82,84,95,68,69,83,67,32,61,32,39,115,111,114,116,68,101,115,99,39,59,92,110,118,97,114,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,83,79,82,84,95,68,69,83,67,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,32,43,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,79,82,84,95,68,69,83,67,59,92,110,118,97,114,32,83,79,82,84,95,68,73,82,69,67,84,73,79,78,95,65,83,67,32,61,32,39,97,115,99,39,59,92,110,118,97,114,32,83,79,82,84,95,68,73,82,69,67,84,73,79,78,95,68,69,83,67,32,61,32,39,100,101,115,99,39,59,92,110,118,97,114,32,83,79,82,84,95,68,73,82,69,67,84,73,79,78,95,76,65,83,84,32,61,32,39,108,97,115,116,39,59,92,110,118,97,114,32,83,79,82,84,95,68,73,82,69,67,84,73,79,78,83,32,61,32,91,83,79,82,84,95,68,73,82,69,67,84,73,79,78,95,65,83,67,44,32,83,79,82,84,95,68,73,82,69,67,84,73,79,78,95,68,69,83,67,44,32,83,79,82,84,95,68,73,82,69,67,84,73,79,78,95,76,65,83,84,93,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,95,112,114,111,112,115,32,61,32,123,92,110,32,32,108,97,98,101,108,83,111,114,116,65,115,99,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,67,108,105,99,107,32,116,111,32,115,111,114,116,32,65,115,99,101,110,100,105,110,103,39,41,44,92,110,32,32,108,97,98,101,108,83,111,114,116,67,108,101,97,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,67,108,105,99,107,32,116,111,32,99,108,101,97,114,32,115,111,114,116,105,110,103,39,41,44,92,110,32,32,108,97,98,101,108,83,111,114,116,68,101,115,99,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,67,108,105,99,107,32,116,111,32,115,111,114,116,32,68,101,115,99,101,110,100,105,110,103,39,41,44,92,110,32,32,110,111,70,111,111,116,101,114,83,111,114,116,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,76,111,99,97,108,83,111,114,116,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,65,110,111,116,104,101,114,32,112,114,111,112,32,116,104,97,116,32,115,104,111,117,108,100,32,104,97,118,101,32,104,97,100,32,97,32,98,101,116,116,101,114,32,110,97,109,101,92,110,32,32,47,47,32,73,116,32,115,104,111,117,108,100,32,98,101,32,96,110,111,83,111,114,116,67,108,101,97,114,96,32,40,111,110,32,110,111,110,45,115,111,114,116,97,98,108,101,32,104,101,97,100,101,114,115,41,92,110,32,32,47,47,32,87,101,32,119,105,108,108,32,110,101,101,100,32,116,111,32,109,97,107,101,32,115,117,114,101,32,116,104,101,32,100,111,99,117,109,101,110,116,97,116,105,111,110,32,105,115,32,99,108,101,97,114,32,111,110,32,119,104,97,116,92,110,32,32,47,47,32,116,104,105,115,32,112,114,111,112,32,100,111,101,115,32,40,97,115,32,119,101,108,108,32,97,115,32,105,110,32,116,104,101,32,99,111,100,101,32,102,111,114,32,102,117,116,117,114,101,32,114,101,102,101,114,101,110,99,101,41,92,110,32,32,110,111,83,111,114,116,82,101,115,101,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,112,114,111,112,115,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,79,82,84,95,66,89,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,112,114,111,112,115,44,32,92,34,115,111,114,116,67,111,109,112,97,114,101,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,112,114,111,112,115,44,32,92,34,115,111,114,116,67,111,109,112,97,114,101,76,111,99,97,108,101,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,112,114,111,112,115,44,32,92,34,115,111,114,116,67,111,109,112,97,114,101,79,112,116,105,111,110,115,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,44,32,123,92,110,32,32,110,117,109,101,114,105,99,58,32,116,114,117,101,92,110,125,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,112,114,111,112,115,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,79,82,84,95,68,69,83,67,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,112,114,111,112,115,44,32,92,34,115,111,114,116,68,105,114,101,99,116,105,111,110,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,83,79,82,84,95,68,73,82,69,67,84,73,79,78,95,65,83,67,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,83,79,82,84,95,68,73,82,69,67,84,73,79,78,83,44,32,118,97,108,117,101,41,59,92,110,125,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,112,114,111,112,115,44,32,92,34,115,111,114,116,73,99,111,110,76,101,102,116,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,112,114,111,112,115,44,32,92,34,115,111,114,116,78,117,108,108,76,97,115,116,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,44,32,95,112,114,111,112,115,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,115,111,114,116,105,110,103,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,83,111,114,116,66,121,58,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,79,82,84,95,66,89,93,32,124,124,32,39,39,44,92,110,32,32,32,32,32,32,108,111,99,97,108,83,111,114,116,68,101,115,99,58,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,79,82,84,95,68,69,83,67,93,32,124,124,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,108,111,99,97,108,83,111,114,116,105,110,103,58,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,83,111,114,116,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,114,111,118,105,100,101,114,32,63,32,33,33,116,104,105,115,46,110,111,80,114,111,118,105,100,101,114,83,111,114,116,105,110,103,32,58,32,33,116,104,105,115,46,110,111,76,111,99,97,108,83,111,114,116,105,110,103,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,83,111,114,116,97,98,108,101,58,32,102,117,110,99,116,105,111,110,32,105,115,83,111,114,116,97,98,108,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,102,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,46,115,111,114,116,97,98,108,101,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,111,114,116,115,32,116,104,101,32,102,105,108,116,101,114,101,100,32,105,116,101,109,115,32,97,110,100,32,114,101,116,117,114,110,115,32,97,32,110,101,119,32,97,114,114,97,121,32,111,102,32,116,104,101,32,115,111,114,116,101,100,32,105,116,101,109,115,92,110,32,32,32,32,47,47,32,87,104,101,110,32,110,111,116,32,115,111,114,116,101,100,44,32,116,104,101,32,111,114,105,103,105,110,97,108,32,105,116,101,109,115,32,97,114,114,97,121,32,119,105,108,108,32,98,101,32,114,101,116,117,114,110,101,100,92,110,32,32,32,32,115,111,114,116,101,100,73,116,101,109,115,58,32,102,117,110,99,116,105,111,110,32,115,111,114,116,101,100,73,116,101,109,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,111,114,116,66,121,32,61,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,44,92,110,32,32,32,32,32,32,32,32,32,32,115,111,114,116,68,101,115,99,32,61,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,44,92,110,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,101,32,61,32,116,104,105,115,46,115,111,114,116,67,111,109,112,97,114,101,76,111,99,97,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,110,117,108,108,76,97,115,116,32,61,32,116,104,105,115,46,115,111,114,116,78,117,108,108,76,97,115,116,44,92,110,32,32,32,32,32,32,32,32,32,32,115,111,114,116,67,111,109,112,97,114,101,32,61,32,116,104,105,115,46,115,111,114,116,67,111,109,112,97,114,101,44,92,110,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,83,111,114,116,105,110,103,32,61,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,105,110,103,59,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,40,116,104,105,115,46,102,105,108,116,101,114,101,100,73,116,101,109,115,32,124,124,32,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,32,124,124,32,91,93,41,46,115,108,105,99,101,40,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,108,111,99,97,108,101,79,112,116,105,111,110,115,32,61,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,104,105,115,46,115,111,114,116,67,111,109,112,97,114,101,79,112,116,105,111,110,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,117,115,97,103,101,58,32,39,115,111,114,116,39,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,111,114,116,66,121,32,38,38,32,108,111,99,97,108,83,111,114,116,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,105,101,108,100,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,79,98,106,91,115,111,114,116,66,121,93,32,124,124,32,123,125,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,111,114,116,66,121,70,111,114,109,97,116,116,101,100,32,61,32,102,105,101,108,100,46,115,111,114,116,66,121,70,111,114,109,97,116,116,101,100,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,115,111,114,116,66,121,70,111,114,109,97,116,116,101,100,41,32,63,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,115,111,114,116,66,121,70,111,114,109,97,116,116,101,100,32,58,32,115,111,114,116,66,121,70,111,114,109,97,116,116,101,100,32,63,32,116,104,105,115,46,103,101,116,70,105,101,108,100,70,111,114,109,97,116,116,101,114,40,115,111,114,116,66,121,41,32,58,32,117,110,100,101,102,105,110,101,100,59,32,47,47,32,96,115,116,97,98,108,101,83,111,114,116,96,32,114,101,116,117,114,110,115,32,97,32,110,101,119,32,97,114,114,97,121,44,32,97,110,100,32,108,101,97,118,101,115,32,116,104,101,32,111,114,105,103,105,110,97,108,32,97,114,114,97,121,32,105,110,116,97,99,116,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,115,116,97,98,108,101,95,115,111,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,116,97,98,108,101,83,111,114,116,41,40,105,116,101,109,115,44,32,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,110,117,108,108,59,32,47,47,32,67,97,108,108,32,117,115,101,114,32,112,114,111,118,105,100,101,100,32,96,115,111,114,116,67,111,109,112,97,114,101,96,32,114,111,117,116,105,110,101,32,102,105,114,115,116,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,115,111,114,116,67,111,109,112,97,114,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,32,32,67,104,97,110,103,101,32,116,104,101,32,96,115,111,114,116,67,111,109,112,97,114,101,96,32,115,105,103,110,97,116,117,114,101,32,116,111,32,116,104,101,32,111,110,101,32,111,102,32,96,100,101,102,97,117,108,116,83,111,114,116,67,111,109,112,97,114,101,96,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,32,32,119,105,116,104,32,116,104,101,32,110,101,120,116,32,109,97,106,111,114,32,118,101,114,115,105,111,110,32,98,117,109,112,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,115,111,114,116,67,111,109,112,97,114,101,40,97,44,32,98,44,32,115,111,114,116,66,121,44,32,115,111,114,116,68,101,115,99,44,32,102,111,114,109,97,116,116,101,114,44,32,108,111,99,97,108,101,79,112,116,105,111,110,115,44,32,108,111,99,97,108,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,47,47,32,70,97,108,108,98,97,99,107,32,116,111,32,98,117,105,108,116,45,105,110,32,96,100,101,102,97,117,108,116,83,111,114,116,67,111,109,112,97,114,101,96,32,105,102,32,96,115,111,114,116,67,111,109,112,97,114,101,96,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,105,115,32,110,111,116,32,100,101,102,105,110,101,100,32,111,114,32,114,101,116,117,114,110,115,32,96,110,117,108,108,96,47,96,102,97,108,115,101,96,92,110,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,114,101,115,117,108,116,41,32,124,124,32,114,101,115,117,108,116,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,40,48,44,95,100,101,102,97,117,108,116,95,115,111,114,116,95,99,111,109,112,97,114,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,100,101,102,97,117,108,116,83,111,114,116,67,111,109,112,97,114,101,41,40,97,44,32,98,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,111,114,116,66,121,58,32,115,111,114,116,66,121,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,116,101,114,58,32,102,111,114,109,97,116,116,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,101,58,32,108,111,99,97,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,101,79,112,116,105,111,110,115,58,32,108,111,99,97,108,101,79,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,117,108,108,76,97,115,116,58,32,110,117,108,108,76,97,115,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,47,47,32,78,101,103,97,116,101,32,114,101,115,117,108,116,32,105,102,32,115,111,114,116,105,110,103,32,105,110,32,100,101,115,99,101,110,100,105,110,103,32,111,114,100,101,114,92,110,92,110,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,114,101,115,117,108,116,32,124,124,32,48,41,32,42,32,40,115,111,114,116,68,101,115,99,32,63,32,45,49,32,58,32,49,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,115,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,112,97,105,110,32,105,110,32,116,104,101,32,98,117,116,116,32,116,111,32,116,101,115,116,32,42,47,92,110,32,32,32,32,105,115,83,111,114,116,97,98,108,101,58,32,102,117,110,99,116,105,111,110,32,105,115,83,111,114,116,97,98,108,101,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,111,114,116,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,69,65,68,95,67,76,73,67,75,69,68,44,32,116,104,105,115,46,104,97,110,100,108,101,83,111,114,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,111,102,102,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,69,65,68,95,67,76,73,67,75,69,68,44,32,116,104,105,115,46,104,97,110,100,108,101,83,111,114,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,79,82,84,95,68,69,83,67,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,61,61,61,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,32,61,32,110,101,119,86,97,108,117,101,32,124,124,32,102,97,108,115,101,59,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,79,82,84,95,66,89,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,61,61,61,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,32,61,32,110,101,119,86,97,108,117,101,32,124,124,32,39,39,59,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,108,111,99,97,108,83,111,114,116,68,101,115,99,92,34,44,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,83,111,114,116,68,101,115,99,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,47,47,32,69,109,105,116,32,117,112,100,97,116,101,32,116,111,32,115,111,114,116,45,100,101,115,99,46,115,121,110,99,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,83,79,82,84,95,68,69,83,67,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,108,111,99,97,108,83,111,114,116,66,121,92,34,44,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,83,111,114,116,66,121,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,83,79,82,84,95,66,89,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,111,114,116,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,69,65,68,95,67,76,73,67,75,69,68,44,32,116,104,105,115,46,104,97,110,100,108,101,83,111,114,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,72,97,110,100,108,101,114,115,92,110,32,32,32,32,47,47,32,78,101,101,100,32,116,111,32,109,111,118,101,32,102,114,111,109,32,116,104,101,97,100,45,109,105,120,105,110,92,110,32,32,32,32,104,97,110,100,108,101,83,111,114,116,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,83,111,114,116,40,107,101,121,44,32,102,105,101,108,100,44,32,101,118,101,110,116,44,32,105,115,70,111,111,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,83,111,114,116,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,70,111,111,116,32,38,38,32,116,104,105,115,46,110,111,70,111,111,116,101,114,83,111,114,116,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,84,79,68,79,58,32,109,97,107,101,32,116,104,105,115,32,116,114,105,45,115,116,97,116,101,32,115,111,114,116,105,110,103,92,110,32,32,32,32,32,32,47,47,32,99,121,99,108,101,32,100,101,115,99,32,61,62,32,97,115,99,32,61,62,32,110,111,110,101,32,61,62,32,100,101,115,99,32,61,62,32,46,46,46,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,111,114,116,67,104,97,110,103,101,100,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,111,103,103,108,101,76,111,99,97,108,83,111,114,116,68,101,115,99,32,61,32,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,76,111,99,97,108,83,111,114,116,68,101,115,99,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,111,114,116,68,105,114,101,99,116,105,111,110,32,61,32,102,105,101,108,100,46,115,111,114,116,68,105,114,101,99,116,105,111,110,32,124,124,32,95,116,104,105,115,46,115,111,114,116,68,105,114,101,99,116,105,111,110,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,111,114,116,68,105,114,101,99,116,105,111,110,32,61,61,61,32,83,79,82,84,95,68,73,82,69,67,84,73,79,78,95,65,83,67,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,111,114,116,68,105,114,101,99,116,105,111,110,32,61,61,61,32,83,79,82,84,95,68,73,82,69,67,84,73,79,78,95,68,69,83,67,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,47,47,32,115,111,114,116,68,105,114,101,99,116,105,111,110,32,61,61,61,32,39,108,97,115,116,39,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,76,101,97,118,101,32,97,116,32,108,97,115,116,32,115,111,114,116,32,100,105,114,101,99,116,105,111,110,32,102,114,111,109,32,112,114,101,118,105,111,117,115,32,99,111,108,117,109,110,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,102,105,101,108,100,46,115,111,114,116,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,111,114,116,75,101,121,32,61,32,33,116,104,105,115,46,108,111,99,97,108,83,111,114,116,105,110,103,32,38,38,32,102,105,101,108,100,46,115,111,114,116,75,101,121,32,63,32,102,105,101,108,100,46,115,111,114,116,75,101,121,32,58,32,107,101,121,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,32,61,61,61,32,115,111,114,116,75,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,67,104,97,110,103,101,32,115,111,114,116,105,110,103,32,100,105,114,101,99,116,105,111,110,32,111,110,32,99,117,114,114,101,110,116,32,99,111,108,117,109,110,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,32,61,32,33,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,83,116,97,114,116,32,115,111,114,116,105,110,103,32,116,104,105,115,32,99,111,108,117,109,110,32,97,115,99,101,110,100,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,32,61,32,115,111,114,116,75,101,121,59,32,47,47,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,32,61,32,102,97,108,115,101,92,110,92,110,32,32,32,32,32,32,32,32,32,32,116,111,103,103,108,101,76,111,99,97,108,83,111,114,116,68,101,115,99,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,115,111,114,116,67,104,97,110,103,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,32,38,38,32,33,116,104,105,115,46,110,111,83,111,114,116,82,101,115,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,32,61,32,39,39,59,92,110,32,32,32,32,32,32,32,32,116,111,103,103,108,101,76,111,99,97,108,83,111,114,116,68,101,115,99,40,41,59,92,110,32,32,32,32,32,32,32,32,115,111,114,116,67,104,97,110,103,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,111,114,116,67,104,97,110,103,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,111,114,116,105,110,103,32,112,97,114,97,109,101,116,101,114,115,32,99,104,97,110,103,101,100,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,79,82,84,95,67,72,65,78,71,69,68,44,32,116,104,105,115,46,99,111,110,116,101,120,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,109,101,116,104,111,100,115,32,116,111,32,99,111,109,112,117,116,101,32,99,108,97,115,115,101,115,32,97,110,100,32,97,116,116,114,115,32,102,111,114,32,116,104,101,97,100,62,116,104,32,99,101,108,108,115,92,110,32,32,32,32,115,111,114,116,84,104,101,97,100,84,104,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,115,111,114,116,84,104,101,97,100,84,104,67,108,97,115,115,101,115,40,107,101,121,44,32,102,105,101,108,100,44,32,105,115,70,111,111,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,115,111,114,116,97,98,108,101,32,97,110,100,32,115,111,114,116,73,99,111,110,76,101,102,116,32,97,114,101,32,116,114,117,101,44,32,116,104,101,110,32,112,108,97,99,101,32,115,111,114,116,32,105,99,111,110,32,111,110,32,116,104,101,32,108,101,102,116,92,110,32,32,32,32,32,32,32,32,39,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,39,58,32,102,105,101,108,100,46,115,111,114,116,97,98,108,101,32,38,38,32,116,104,105,115,46,115,111,114,116,73,99,111,110,76,101,102,116,32,38,38,32,33,40,105,115,70,111,111,116,32,38,38,32,116,104,105,115,46,110,111,70,111,111,116,101,114,83,111,114,116,105,110,103,41,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,111,114,116,84,104,101,97,100,84,104,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,115,111,114,116,84,104,101,97,100,84,104,65,116,116,114,115,40,107,101,121,44,32,102,105,101,108,100,44,32,105,115,70,111,111,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,83,111,114,116,97,98,108,101,32,124,124,32,105,115,70,111,111,116,32,38,38,32,116,104,105,115,46,110,111,70,111,111,116,101,114,83,111,114,116,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,78,111,32,97,116,116,114,105,98,117,116,101,115,32,105,102,32,110,111,116,32,97,32,115,111,114,116,97,98,108,101,32,116,97,98,108,101,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,111,114,116,97,98,108,101,32,61,32,102,105,101,108,100,46,115,111,114,116,97,98,108,101,59,32,47,47,32,65,115,115,101,109,98,108,101,32,116,104,101,32,97,114,105,97,45,115,111,114,116,32,97,116,116,114,105,98,117,116,101,32,118,97,108,117,101,92,110,92,110,32,32,32,32,32,32,118,97,114,32,97,114,105,97,83,111,114,116,32,61,32,115,111,114,116,97,98,108,101,32,38,38,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,32,61,61,61,32,107,101,121,32,63,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,32,63,32,39,100,101,115,99,101,110,100,105,110,103,39,32,58,32,39,97,115,99,101,110,100,105,110,103,39,32,58,32,115,111,114,116,97,98,108,101,32,63,32,39,110,111,110,101,39,32,58,32,110,117,108,108,59,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,97,116,116,114,105,98,117,116,101,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,115,111,114,116,39,58,32,97,114,105,97,83,111,114,116,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,111,114,116,84,104,101,97,100,84,104,76,97,98,101,108,58,32,102,117,110,99,116,105,111,110,32,115,111,114,116,84,104,101,97,100,84,104,76,97,98,101,108,40,107,101,121,44,32,102,105,101,108,100,44,32,105,115,70,111,111,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,65,32,108,97,98,101,108,32,116,111,32,98,101,32,112,108,97,99,101,100,32,105,110,32,97,110,32,96,46,115,114,45,111,110,108,121,96,32,101,108,101,109,101,110,116,32,105,110,32,116,104,101,32,104,101,97,100,101,114,32,99,101,108,108,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,83,111,114,116,97,98,108,101,32,124,124,32,105,115,70,111,111,116,32,38,38,32,116,104,105,115,46,110,111,70,111,111,116,101,114,83,111,114,116,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,78,111,32,108,97,98,101,108,32,105,102,32,110,111,116,32,97,32,115,111,114,116,97,98,108,101,32,116,97,98,108,101,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,111,114,116,97,98,108,101,32,61,32,102,105,101,108,100,46,115,111,114,116,97,98,108,101,59,32,47,47,32,84,104,101,32,99,111,114,114,101,99,116,110,101,115,115,32,111,102,32,116,104,101,115,101,32,108,97,98,101,108,115,32,105,115,32,118,101,114,121,32,105,109,112,111,114,116,97,110,116,32,102,111,114,32,115,99,114,101,101,110,45,114,101,97,100,101,114,32,117,115,101,114,115,46,92,110,92,110,32,32,32,32,32,32,118,97,114,32,108,97,98,101,108,83,111,114,116,105,110,103,32,61,32,39,39,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,111,114,116,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,32,61,61,61,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,99,117,114,114,101,110,116,108,121,32,115,111,114,116,101,100,32,115,111,114,116,97,98,108,101,32,99,111,108,117,109,110,46,92,110,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,83,111,114,116,105,110,103,32,61,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,32,63,32,116,104,105,115,46,108,97,98,101,108,83,111,114,116,65,115,99,32,58,32,116,104,105,115,46,108,97,98,101,108,83,111,114,116,68,101,115,99,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,116,32,99,117,114,114,101,110,116,108,121,32,115,111,114,116,101,100,32,115,111,114,116,97,98,108,101,32,99,111,108,117,109,110,46,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,116,32,117,115,105,110,103,32,110,101,115,116,101,100,32,116,101,114,110,97,114,121,39,115,32,104,101,114,101,32,102,111,114,32,99,108,97,114,105,116,121,47,114,101,97,100,97,98,105,108,105,116,121,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,102,111,114,32,97,114,105,97,76,97,98,101,108,92,110,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,83,111,114,116,105,110,103,32,61,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,32,63,32,116,104,105,115,46,108,97,98,101,108,83,111,114,116,68,101,115,99,32,58,32,116,104,105,115,46,108,97,98,101,108,83,111,114,116,65,115,99,59,32,47,47,32,72,97,110,100,108,101,32,115,111,114,116,68,105,114,101,99,116,105,111,110,32,115,101,116,116,105,110,103,92,110,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,111,114,116,68,105,114,101,99,116,105,111,110,32,61,32,116,104,105,115,46,115,111,114,116,68,105,114,101,99,116,105,111,110,32,124,124,32,102,105,101,108,100,46,115,111,114,116,68,105,114,101,99,116,105,111,110,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,111,114,116,68,105,114,101,99,116,105,111,110,32,61,61,61,32,83,79,82,84,95,68,73,82,69,67,84,73,79,78,95,65,83,67,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,83,111,114,116,105,110,103,32,61,32,116,104,105,115,46,108,97,98,101,108,83,111,114,116,65,115,99,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,111,114,116,68,105,114,101,99,116,105,111,110,32,61,61,61,32,83,79,82,84,95,68,73,82,69,67,84,73,79,78,95,68,69,83,67,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,83,111,114,116,105,110,103,32,61,32,116,104,105,115,46,108,97,98,101,108,83,111,114,116,68,101,115,99,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,116,104,105,115,46,110,111,83,111,114,116,82,101,115,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,78,111,110,32,115,111,114,116,97,98,108,101,32,99,111,108,117,109,110,92,110,32,32,32,32,32,32,32,32,108,97,98,101,108,83,111,114,116,105,110,103,32,61,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,32,63,32,116,104,105,115,46,108,97,98,101,108,83,111,114,116,67,108,101,97,114,32,58,32,39,39,59,92,110,32,32,32,32,32,32,125,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,115,114,45,111,110,108,121,32,115,111,114,116,32,108,97,98,101,108,32,111,114,32,110,117,108,108,32,105,102,32,110,111,32,108,97,98,101,108,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,116,114,105,109,41,40,108,97,98,101,108,83,111,114,116,105,110,103,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,111,114,116,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,116,97,99,107,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,116,97,99,107,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,101,100,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,99,107,101,100,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,115,116,97,99,107,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,92,110,125,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,115,116,97,99,107,101,100,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,105,115,83,116,97,99,107,101,100,58,32,102,117,110,99,116,105,111,110,32,105,115,83,116,97,99,107,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,99,107,101,100,32,61,32,116,104,105,115,46,115,116,97,99,107,101,100,59,32,47,47,32,96,116,114,117,101,96,32,119,104,101,110,32,97,108,119,97,121,115,32,115,116,97,99,107,101,100,44,32,111,114,32,114,101,116,117,114,110,115,32,98,114,101,97,107,112,111,105,110,116,32,115,112,101,99,105,102,105,101,100,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,97,99,107,101,100,32,61,61,61,32,39,39,32,63,32,116,114,117,101,32,58,32,115,116,97,99,107,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,83,116,97,99,107,101,100,65,108,119,97,121,115,58,32,102,117,110,99,116,105,111,110,32,105,115,83,116,97,99,107,101,100,65,108,119,97,121,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,116,97,99,107,101,100,32,61,61,61,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,116,97,99,107,101,100,84,97,98,108,101,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,115,116,97,99,107,101,100,84,97,98,108,101,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,83,116,97,99,107,101,100,65,108,119,97,121,115,32,61,32,116,104,105,115,46,105,115,83,116,97,99,107,101,100,65,108,119,97,121,115,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,92,110,32,32,32,32,32,32,32,32,39,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,39,58,32,105,115,83,116,97,99,107,101,100,65,108,119,97,121,115,92,110,32,32,32,32,32,32,125,44,32,92,34,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,116,97,99,107,101,100,41,44,32,33,105,115,83,116,97,99,107,101,100,65,108,119,97,121,115,32,38,38,32,116,104,105,115,46,105,115,83,116,97,99,107,101,100,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,116,97,99,107,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,97,98,108,101,45,114,101,110,100,101,114,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,97,98,108,101,45,114,101,110,100,101,114,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,97,98,108,101,82,101,110,100,101,114,101,114,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,97,98,108,101,82,101,110,100,101,114,101,114,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,77,97,105,110,32,96,60,116,97,98,108,101,62,96,32,114,101,110,100,101,114,32,109,105,120,105,110,92,110,47,47,32,73,110,99,108,117,100,101,115,32,97,108,108,32,109,97,105,110,32,116,97,98,108,101,32,115,116,121,108,105,110,103,32,111,112,116,105,111,110,115,92,110,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,98,111,114,100,101,114,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,98,111,114,100,101,114,108,101,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,99,97,112,116,105,111,110,84,111,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,100,97,114,107,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,102,105,120,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,104,111,118,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,66,111,114,100,101,114,67,111,108,108,97,112,115,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,111,117,116,108,105,110,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,101,115,112,111,110,115,105,118,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,44,92,110,32,32,115,109,97,108,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,73,102,32,97,32,115,116,114,105,110,103,44,32,105,116,32,105,115,32,97,115,115,117,109,101,100,32,116,111,32,98,101,32,116,104,101,32,116,97,98,108,101,32,96,109,97,120,45,104,101,105,103,104,116,96,32,118,97,108,117,101,92,110,32,32,115,116,105,99,107,121,72,101,97,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,44,92,110,32,32,115,116,114,105,112,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,98,108,101,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,116,97,98,108,101,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,116,97,98,108,101,82,101,110,100,101,114,101,114,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,97,116,116,114,115,77,105,120,105,110,93,44,92,110,32,32,112,114,111,118,105,100,101,58,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,98,118,84,97,98,108,101,58,32,116,104,105,115,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,47,47,32,68,111,110,39,116,32,112,108,97,99,101,32,97,116,116,114,105,98,117,116,101,115,32,111,110,32,114,111,111,116,32,101,108,101,109,101,110,116,32,97,117,116,111,109,97,116,105,99,97,108,108,121,44,92,110,32,32,47,47,32,97,115,32,116,97,98,108,101,32,99,111,117,108,100,32,98,101,32,119,114,97,112,112,101,100,32,105,110,32,114,101,115,112,111,110,115,105,118,101,32,96,60,100,105,118,62,96,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,47,47,32,76,97,121,111,117,116,32,114,101,108,97,116,101,100,32,99,111,109,112,117,116,101,100,32,112,114,111,112,115,92,110,32,32,32,32,105,115,82,101,115,112,111,110,115,105,118,101,58,32,102,117,110,99,116,105,111,110,32,105,115,82,101,115,112,111,110,115,105,118,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,112,111,110,115,105,118,101,32,61,32,116,104,105,115,46,114,101,115,112,111,110,115,105,118,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,112,111,110,115,105,118,101,32,61,61,61,32,39,39,32,63,32,116,114,117,101,32,58,32,114,101,115,112,111,110,115,105,118,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,83,116,105,99,107,121,72,101,97,100,101,114,58,32,102,117,110,99,116,105,111,110,32,105,115,83,116,105,99,107,121,72,101,97,100,101,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,116,105,99,107,121,72,101,97,100,101,114,32,61,32,116,104,105,115,46,115,116,105,99,107,121,72,101,97,100,101,114,59,92,110,32,32,32,32,32,32,115,116,105,99,107,121,72,101,97,100,101,114,32,61,32,115,116,105,99,107,121,72,101,97,100,101,114,32,61,61,61,32,39,39,32,63,32,116,114,117,101,32,58,32,115,116,105,99,107,121,72,101,97,100,101,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,116,97,99,107,101,100,32,63,32,102,97,108,115,101,32,58,32,115,116,105,99,107,121,72,101,97,100,101,114,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,119,114,97,112,112,101,114,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,114,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,82,101,115,112,111,110,115,105,118,101,32,61,32,116,104,105,115,46,105,115,82,101,115,112,111,110,115,105,118,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,104,105,115,46,105,115,83,116,105,99,107,121,72,101,97,100,101,114,32,63,32,39,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,39,32,58,32,39,39,44,32,105,115,82,101,115,112,111,110,115,105,118,101,32,61,61,61,32,116,114,117,101,32,63,32,39,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,39,32,58,32,105,115,82,101,115,112,111,110,115,105,118,101,32,63,32,92,34,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,114,101,115,112,111,110,115,105,118,101,41,32,58,32,39,39,93,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,119,114,97,112,112,101,114,83,116,121,108,101,115,58,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,114,83,116,121,108,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,83,116,105,99,107,121,72,101,97,100,101,114,32,61,32,116,104,105,115,46,105,115,83,116,105,99,107,121,72,101,97,100,101,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,83,116,105,99,107,121,72,101,97,100,101,114,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,66,111,111,108,101,97,110,41,40,105,115,83,116,105,99,107,121,72,101,97,100,101,114,41,32,63,32,123,92,110,32,32,32,32,32,32,32,32,109,97,120,72,101,105,103,104,116,58,32,105,115,83,116,105,99,107,121,72,101,97,100,101,114,92,110,32,32,32,32,32,32,125,32,58,32,123,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,97,98,108,101,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,116,97,98,108,101,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,111,118,101,114,32,61,32,116,104,105,115,46,104,111,118,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,108,101,86,97,114,105,97,110,116,32,61,32,116,104,105,115,46,116,97,98,108,101,86,97,114,105,97,110,116,59,92,110,32,32,32,32,32,32,104,111,118,101,114,32,61,32,116,104,105,115,46,105,115,84,97,98,108,101,83,105,109,112,108,101,32,63,32,104,111,118,101,114,32,58,32,104,111,118,101,114,32,38,38,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,33,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,115,121,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,47,47,32,85,115,101,114,32,115,117,112,112,108,105,101,100,32,99,108,97,115,115,101,115,92,110,32,32,32,32,32,32,116,104,105,115,46,116,97,98,108,101,67,108,97,115,115,44,32,47,47,32,83,116,121,108,105,110,103,32,99,108,97,115,115,101,115,92,110,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,39,116,97,98,108,101,45,115,116,114,105,112,101,100,39,58,32,116,104,105,115,46,115,116,114,105,112,101,100,44,92,110,32,32,32,32,32,32,32,32,39,116,97,98,108,101,45,104,111,118,101,114,39,58,32,104,111,118,101,114,44,92,110,32,32,32,32,32,32,32,32,39,116,97,98,108,101,45,100,97,114,107,39,58,32,116,104,105,115,46,100,97,114,107,44,92,110,32,32,32,32,32,32,32,32,39,116,97,98,108,101,45,98,111,114,100,101,114,101,100,39,58,32,116,104,105,115,46,98,111,114,100,101,114,101,100,44,92,110,32,32,32,32,32,32,32,32,39,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,39,58,32,116,104,105,115,46,98,111,114,100,101,114,108,101,115,115,44,92,110,32,32,32,32,32,32,32,32,39,116,97,98,108,101,45,115,109,39,58,32,116,104,105,115,46,115,109,97,108,108,44,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,102,111,108,108,111,119,105,110,103,32,97,114,101,32,98,45,116,97,98,108,101,32,99,117,115,116,111,109,32,115,116,121,108,101,115,92,110,32,32,32,32,32,32,32,32,98,111,114,100,101,114,58,32,116,104,105,115,46,111,117,116,108,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,39,98,45,116,97,98,108,101,45,102,105,120,101,100,39,58,32,116,104,105,115,46,102,105,120,101,100,44,92,110,32,32,32,32,32,32,32,32,39,98,45,116,97,98,108,101,45,99,97,112,116,105,111,110,45,116,111,112,39,58,32,116,104,105,115,46,99,97,112,116,105,111,110,84,111,112,44,92,110,32,32,32,32,32,32,32,32,39,98,45,116,97,98,108,101,45,110,111,45,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,39,58,32,116,104,105,115,46,110,111,66,111,114,100,101,114,67,111,108,108,97,112,115,101,92,110,32,32,32,32,32,32,125,44,32,116,97,98,108,101,86,97,114,105,97,110,116,32,63,32,92,34,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,100,97,114,107,32,63,32,39,98,103,39,32,58,32,39,116,97,98,108,101,39,44,32,92,34,45,92,34,41,46,99,111,110,99,97,116,40,116,97,98,108,101,86,97,114,105,97,110,116,41,32,58,32,39,39,44,32,47,47,32,83,116,97,99,107,101,100,32,116,97,98,108,101,32,99,108,97,115,115,101,115,92,110,32,32,32,32,32,32,116,104,105,115,46,115,116,97,99,107,101,100,84,97,98,108,101,67,108,97,115,115,101,115,44,32,47,47,32,83,101,108,101,99,116,97,98,108,101,32,99,108,97,115,115,101,115,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,84,97,98,108,101,67,108,97,115,115,101,115,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,97,98,108,101,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,116,97,98,108,101,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,101,100,73,116,101,109,115,32,61,32,116,104,105,115,46,102,105,108,116,101,114,101,100,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,115,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,44,92,110,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,97,98,108,101,84,97,98,108,101,65,116,116,114,115,32,61,32,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,84,97,98,108,101,65,116,116,114,115,59,92,110,32,32,32,32,32,32,118,97,114,32,97,114,105,97,65,116,116,114,115,32,61,32,116,104,105,115,46,105,115,84,97,98,108,101,83,105,109,112,108,101,32,63,32,123,125,32,58,32,123,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,98,117,115,121,39,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,115,121,32,63,32,39,116,114,117,101,39,32,58,32,39,102,97,108,115,101,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,111,108,99,111,117,110,116,39,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,111,83,116,114,105,110,103,41,40,102,105,101,108,100,115,46,108,101,110,103,116,104,41,44,92,110,32,32,32,32,32,32,32,32,47,47,32,80,114,101,115,101,114,118,101,32,117,115,101,114,32,115,117,112,112,108,105,101,100,32,96,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,96,44,32,105,102,32,112,114,111,118,105,100,101,100,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,58,32,116,104,105,115,46,98,118,65,116,116,114,115,91,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,93,32,124,124,32,116,104,105,115,46,36,114,101,102,115,46,99,97,112,116,105,111,110,32,63,32,116,104,105,115,46,99,97,112,116,105,111,110,73,100,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,118,97,114,32,114,111,119,67,111,117,110,116,32,61,32,105,116,101,109,115,32,38,38,32,102,105,108,116,101,114,101,100,73,116,101,109,115,32,38,38,32,102,105,108,116,101,114,101,100,73,116,101,109,115,46,108,101,110,103,116,104,32,62,32,105,116,101,109,115,46,108,101,110,103,116,104,32,63,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,111,83,116,114,105,110,103,41,40,102,105,108,116,101,114,101,100,73,116,101,109,115,46,108,101,110,103,116,104,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,115,101,116,32,96,97,114,105,97,45,114,111,119,99,111,117,110,116,96,32,98,101,102,111,114,101,32,109,101,114,103,105,110,103,32,105,110,32,96,36,97,116,116,114,115,96,44,92,110,32,32,32,32,32,32,32,32,47,47,32,105,110,32,99,97,115,101,32,117,115,101,114,32,104,97,115,32,115,117,112,112,108,105,101,100,32,116,104,101,105,114,32,111,119,110,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,111,119,99,111,117,110,116,39,58,32,114,111,119,67,111,117,110,116,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,98,118,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,78,111,119,32,119,101,32,99,97,110,32,111,118,101,114,114,105,100,101,32,97,110,121,32,96,36,97,116,116,114,115,96,32,104,101,114,101,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,116,97,98,108,101,39,92,110,32,32,32,32,32,32,125,44,32,97,114,105,97,65,116,116,114,115,41,44,32,115,101,108,101,99,116,97,98,108,101,84,97,98,108,101,65,116,116,114,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,119,114,97,112,112,101,114,67,108,97,115,115,101,115,32,61,32,116,104,105,115,46,119,114,97,112,112,101,114,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,32,32,114,101,110,100,101,114,67,97,112,116,105,111,110,32,61,32,116,104,105,115,46,114,101,110,100,101,114,67,97,112,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,114,101,110,100,101,114,67,111,108,103,114,111,117,112,32,61,32,116,104,105,115,46,114,101,110,100,101,114,67,111,108,103,114,111,117,112,44,92,110,32,32,32,32,32,32,32,32,114,101,110,100,101,114,84,104,101,97,100,32,61,32,116,104,105,115,46,114,101,110,100,101,114,84,104,101,97,100,44,92,110,32,32,32,32,32,32,32,32,114,101,110,100,101,114,84,98,111,100,121,32,61,32,116,104,105,115,46,114,101,110,100,101,114,84,98,111,100,121,44,92,110,32,32,32,32,32,32,32,32,114,101,110,100,101,114,84,102,111,111,116,32,61,32,116,104,105,115,46,114,101,110,100,101,114,84,102,111,111,116,59,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,91,93,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,84,97,98,108,101,83,105,109,112,108,101,41,32,123,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,46,112,117,115,104,40,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,66,117,105,108,100,32,116,104,101,32,96,60,99,97,112,116,105,111,110,62,96,32,40,102,114,111,109,32,99,97,112,116,105,111,110,32,109,105,120,105,110,41,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,46,112,117,115,104,40,114,101,110,100,101,114,67,97,112,116,105,111,110,32,63,32,114,101,110,100,101,114,67,97,112,116,105,111,110,40,41,32,58,32,110,117,108,108,41,59,32,47,47,32,66,117,105,108,100,32,116,104,101,32,96,60,99,111,108,103,114,111,117,112,62,96,92,110,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,46,112,117,115,104,40,114,101,110,100,101,114,67,111,108,103,114,111,117,112,32,63,32,114,101,110,100,101,114,67,111,108,103,114,111,117,112,40,41,32,58,32,110,117,108,108,41,59,32,47,47,32,66,117,105,108,100,32,116,104,101,32,96,60,116,104,101,97,100,62,96,92,110,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,46,112,117,115,104,40,114,101,110,100,101,114,84,104,101,97,100,32,63,32,114,101,110,100,101,114,84,104,101,97,100,40,41,32,58,32,110,117,108,108,41,59,32,47,47,32,66,117,105,108,100,32,116,104,101,32,96,60,116,98,111,100,121,62,96,92,110,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,46,112,117,115,104,40,114,101,110,100,101,114,84,98,111,100,121,32,63,32,114,101,110,100,101,114,84,98,111,100,121,40,41,32,58,32,110,117,108,108,41,59,32,47,47,32,66,117,105,108,100,32,116,104,101,32,96,60,116,102,111,111,116,62,96,92,110,92,110,32,32,32,32,32,32,36,99,111,110,116,101,110,116,46,112,117,115,104,40,114,101,110,100,101,114,84,102,111,111,116,32,63,32,114,101,110,100,101,114,84,102,111,111,116,40,41,32,58,32,110,117,108,108,41,59,92,110,32,32,32,32,125,32,47,47,32,65,115,115,101,109,98,108,101,32,96,60,116,97,98,108,101,62,96,92,110,92,110,92,110,32,32,32,32,118,97,114,32,36,116,97,98,108,101,32,61,32,104,40,39,116,97,98,108,101,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,116,97,98,108,101,32,98,45,116,97,98,108,101,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,97,98,108,101,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,116,97,98,108,101,65,116,116,114,115,44,92,110,32,32,32,32,32,32,107,101,121,58,32,39,98,45,116,97,98,108,101,39,92,110,32,32,32,32,125,44,32,36,99,111,110,116,101,110,116,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,100,101,110,116,105,116,121,41,41,59,32,47,47,32,65,100,100,32,114,101,115,112,111,110,115,105,118,101,47,115,116,105,99,107,121,32,119,114,97,112,112,101,114,32,105,102,32,110,101,101,100,101,100,32,97,110,100,32,114,101,116,117,114,110,32,116,97,98,108,101,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,119,114,97,112,112,101,114,67,108,97,115,115,101,115,46,108,101,110,103,116,104,32,62,32,48,32,63,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,119,114,97,112,112,101,114,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,116,104,105,115,46,119,114,97,112,112,101,114,83,116,121,108,101,115,44,92,110,32,32,32,32,32,32,107,101,121,58,32,39,119,114,97,112,39,92,110,32,32,32,32,125,44,32,91,36,116,97,98,108,101,93,41,32,58,32,36,116,97,98,108,101,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,97,98,108,101,45,114,101,110,100,101,114,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,98,111,100,121,45,114,111,119,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,98,111,100,121,45,114,111,119,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,98,111,100,121,82,111,119,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,98,111,100,121,82,111,119,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,103,101,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,99,111,110,115,116,97,110,116,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,97,114,114,41,32,123,32,114,101,116,117,114,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,124,124,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,92,34,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,32,123,32,105,102,32,40,33,111,41,32,114,101,116,117,114,110,59,32,105,102,32,40,116,121,112,101,111,102,32,111,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,118,97,114,32,110,32,61,32,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,111,41,46,115,108,105,99,101,40,56,44,32,45,49,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,79,98,106,101,99,116,92,34,32,38,38,32,111,46,99,111,110,115,116,114,117,99,116,111,114,41,32,110,32,61,32,111,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,59,32,105,102,32,40,110,32,61,61,61,32,92,34,77,97,112,92,34,32,124,124,32,110,32,61,61,61,32,92,34,83,101,116,92,34,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,111,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,65,114,103,117,109,101,110,116,115,92,34,32,124,124,32,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,105,116,101,114,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,38,38,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,105,116,101,114,41,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,105,116,101,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,123,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,44,32,108,101,110,41,32,123,32,105,102,32,40,108,101,110,32,61,61,32,110,117,108,108,32,124,124,32,108,101,110,32,62,32,97,114,114,46,108,101,110,103,116,104,41,32,108,101,110,32,61,32,97,114,114,46,108,101,110,103,116,104,59,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,97,114,114,50,32,61,32,110,101,119,32,65,114,114,97,121,40,108,101,110,41,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,32,97,114,114,50,91,105,93,32,61,32,97,114,114,91,105,93,59,32,125,32,114,101,116,117,114,110,32,97,114,114,50,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,100,101,116,97,105,108,115,84,100,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,116,98,111,100,121,84,114,65,116,116,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,95,70,85,78,67,84,73,79,78,41,44,92,110,32,32,116,98,111,100,121,84,114,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,91,93,46,99,111,110,99,97,116,40,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,32,91,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,93,41,41,92,110,125,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,116,98,111,100,121,82,111,119,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,77,101,116,104,111,100,115,32,102,111,114,32,99,111,109,112,117,116,105,110,103,32,99,108,97,115,115,101,115,44,32,97,116,116,114,105,98,117,116,101,115,32,97,110,100,32,115,116,121,108,101,115,32,102,111,114,32,116,97,98,108,101,32,99,101,108,108,115,92,110,32,32,32,32,103,101,116,84,100,86,97,108,117,101,115,58,32,102,117,110,99,116,105,111,110,32,103,101,116,84,100,86,97,108,117,101,115,40,105,116,101,109,44,32,107,101,121,44,32,116,100,86,97,108,117,101,44,32,100,101,102,97,117,108,116,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,112,97,114,101,110,116,32,61,32,116,104,105,115,46,36,112,97,114,101,110,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,103,101,116,41,40,105,116,101,109,44,32,107,101,121,44,32,39,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,100,86,97,108,117,101,40,118,97,108,117,101,44,32,107,101,121,44,32,105,116,101,109,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,83,116,114,105,110,103,41,40,116,100,86,97,108,117,101,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,36,112,97,114,101,110,116,91,116,100,86,97,108,117,101,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,112,97,114,101,110,116,91,116,100,86,97,108,117,101,93,40,118,97,108,117,101,44,32,107,101,121,44,32,105,116,101,109,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,100,86,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,102,97,117,108,116,86,97,108,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,84,104,86,97,108,117,101,115,58,32,102,117,110,99,116,105,111,110,32,103,101,116,84,104,86,97,108,117,101,115,40,105,116,101,109,44,32,107,101,121,44,32,116,104,86,97,108,117,101,44,32,116,121,112,101,44,32,100,101,102,97,117,108,116,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,112,97,114,101,110,116,32,61,32,116,104,105,115,46,36,112,97,114,101,110,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,103,101,116,41,40,105,116,101,109,44,32,107,101,121,44,32,39,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,104,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,86,97,108,117,101,40,118,97,108,117,101,44,32,107,101,121,44,32,105,116,101,109,44,32,116,121,112,101,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,83,116,114,105,110,103,41,40,116,104,86,97,108,117,101,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,36,112,97,114,101,110,116,91,116,104,86,97,108,117,101,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,112,97,114,101,110,116,91,116,104,86,97,108,117,101,93,40,118,97,108,117,101,44,32,107,101,121,44,32,105,116,101,109,44,32,116,121,112,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,86,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,102,97,117,108,116,86,97,108,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,77,101,116,104,111,100,32,116,111,32,103,101,116,32,116,104,101,32,118,97,108,117,101,32,102,111,114,32,97,32,102,105,101,108,100,92,110,32,32,32,32,103,101,116,70,111,114,109,97,116,116,101,100,86,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,70,111,114,109,97,116,116,101,100,86,97,108,117,101,40,105,116,101,109,44,32,102,105,101,108,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,102,105,101,108,100,46,107,101,121,59,92,110,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,114,32,61,32,116,104,105,115,46,103,101,116,70,105,101,108,100,70,111,114,109,97,116,116,101,114,40,107,101,121,41,59,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,103,101,116,41,40,105,116,101,109,44,32,107,101,121,44,32,110,117,108,108,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,102,111,114,109,97,116,116,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,102,111,114,109,97,116,116,101,114,40,118,97,108,117,101,44,32,107,101,121,44,32,105,116,101,109,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,118,97,108,117,101,41,32,63,32,39,39,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,70,97,99,116,111,114,121,32,102,117,110,99,116,105,111,110,32,109,101,116,104,111,100,115,92,110,32,32,32,32,116,111,103,103,108,101,68,101,116,97,105,108,115,70,97,99,116,111,114,121,58,32,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,68,101,116,97,105,108,115,70,97,99,116,111,114,121,40,104,97,115,68,101,116,97,105,108,115,83,108,111,116,44,32,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,97,32,102,117,110,99,116,105,111,110,32,116,111,32,116,111,103,103,108,101,32,97,32,114,111,119,39,115,32,100,101,116,97,105,108,115,32,115,108,111,116,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,68,101,116,97,105,108,115,83,108,111,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,115,101,116,40,105,116,101,109,44,32,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,70,73,69,76,68,95,75,69,89,95,83,72,79,87,95,68,69,84,65,73,76,83,44,32,33,105,116,101,109,91,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,70,73,69,76,68,95,75,69,89,95,83,72,79,87,95,68,69,84,65,73,76,83,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,82,111,119,32,101,118,101,110,116,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,114,111,119,72,111,118,101,114,101,100,58,32,102,117,110,99,116,105,111,110,32,114,111,119,72,111,118,101,114,101,100,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,96,109,111,117,115,101,101,110,116,101,114,96,32,104,97,110,100,108,101,114,32,40,110,111,110,45,98,117,98,98,108,105,110,103,41,92,110,32,32,32,32,32,32,47,47,32,96,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,96,32,102,114,111,109,32,116,98,111,100,121,32,109,105,120,105,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,40,101,118,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,96,116,104,105,115,46,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,96,32,102,114,111,109,32,116,98,111,100,121,32,109,105,120,105,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,72,79,86,69,82,69,68,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,111,119,85,110,104,111,118,101,114,101,100,58,32,102,117,110,99,116,105,111,110,32,114,111,119,85,110,104,111,118,101,114,101,100,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,96,109,111,117,115,101,108,101,97,118,101,96,32,104,97,110,100,108,101,114,32,40,110,111,110,45,98,117,98,98,108,105,110,103,41,92,110,32,32,32,32,32,32,47,47,32,96,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,96,32,102,114,111,109,32,116,98,111,100,121,32,109,105,120,105,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,40,101,118,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,96,116,104,105,115,46,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,96,32,102,114,111,109,32,116,98,111,100,121,32,109,105,120,105,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,85,78,72,79,86,69,82,69,68,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,82,101,110,100,101,114,115,32,97,32,84,68,32,111,114,32,84,72,32,102,111,114,32,97,32,114,111,119,39,115,32,102,105,101,108,100,92,110,32,32,32,32,114,101,110,100,101,114,84,98,111,100,121,82,111,119,67,101,108,108,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,84,98,111,100,121,82,111,119,67,101,108,108,40,102,105,101,108,100,44,32,99,111,108,73,110,100,101,120,44,32,105,116,101,109,44,32,114,111,119,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,115,83,116,97,99,107,101,100,32,61,32,116,104,105,115,46,105,115,83,116,97,99,107,101,100,59,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,102,105,101,108,100,46,107,101,121,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,32,61,32,102,105,101,108,100,46,108,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,82,111,119,72,101,97,100,101,114,32,61,32,102,105,101,108,100,46,105,115,82,111,119,72,101,97,100,101,114,59,92,110,32,32,32,32,32,32,118,97,114,32,104,32,61,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,118,97,114,32,104,97,115,68,101,116,97,105,108,115,83,108,111,116,32,61,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,83,76,79,84,95,78,65,77,69,95,82,79,87,95,68,69,84,65,73,76,83,41,59,92,110,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,100,32,61,32,116,104,105,115,46,103,101,116,70,111,114,109,97,116,116,101,100,86,97,108,117,101,40,105,116,101,109,44,32,102,105,101,108,100,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,116,105,99,107,121,67,111,108,117,109,110,32,61,32,33,105,115,83,116,97,99,107,101,100,32,38,38,32,40,116,104,105,115,46,105,115,82,101,115,112,111,110,115,105,118,101,32,124,124,32,116,104,105,115,46,115,116,105,99,107,121,72,101,97,100,101,114,41,32,38,38,32,102,105,101,108,100,46,115,116,105,99,107,121,67,111,108,117,109,110,59,32,47,47,32,87,101,32,111,110,108,121,32,117,115,101,115,32,116,104,101,32,104,101,108,112,101,114,32,99,111,109,112,111,110,101,110,116,115,32,102,111,114,32,115,116,105,99,107,121,32,99,111,108,117,109,110,115,32,116,111,92,110,32,32,32,32,32,32,47,47,32,105,109,112,114,111,118,101,32,112,101,114,102,111,114,109,97,110,99,101,32,111,102,32,66,84,97,98,108,101,47,66,84,97,98,108,101,76,105,116,101,32,98,121,32,114,101,100,117,99,105,110,103,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,116,111,116,97,108,32,110,117,109,98,101,114,32,111,102,32,118,117,101,32,105,110,115,116,97,110,99,101,115,32,99,114,101,97,116,101,100,32,100,117,114,105,110,103,32,114,101,110,100,101,114,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,101,108,108,84,97,103,32,61,32,115,116,105,99,107,121,67,111,108,117,109,110,32,63,32,105,115,82,111,119,72,101,97,100,101,114,32,63,32,95,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,84,104,32,58,32,95,116,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,84,100,32,58,32,105,115,82,111,119,72,101,97,100,101,114,32,63,32,39,116,104,39,32,58,32,39,116,100,39,59,92,110,32,32,32,32,32,32,118,97,114,32,99,101,108,108,86,97,114,105,97,110,116,32,61,32,105,116,101,109,91,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,70,73,69,76,68,95,75,69,89,95,67,69,76,76,95,86,65,82,73,65,78,84,93,32,38,38,32,105,116,101,109,91,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,70,73,69,76,68,95,75,69,89,95,67,69,76,76,95,86,65,82,73,65,78,84,93,91,107,101,121,93,32,63,32,105,116,101,109,91,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,70,73,69,76,68,95,75,69,89,95,67,69,76,76,95,86,65,82,73,65,78,84,93,91,107,101,121,93,32,58,32,102,105,101,108,100,46,118,97,114,105,97,110,116,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,70,111,114,32,116,104,101,32,86,117,101,32,107,101,121,44,32,119,101,32,99,111,110,99,97,116,101,110,97,116,101,32,116,104,101,32,99,111,108,117,109,110,32,105,110,100,101,120,32,97,110,100,92,110,32,32,32,32,32,32,32,32,47,47,32,102,105,101,108,100,32,107,101,121,32,40,97,115,32,102,105,101,108,100,32,107,101,121,115,32,99,111,117,108,100,32,98,101,32,100,117,112,108,105,99,97,116,101,100,41,92,110,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,65,108,116,104,111,117,103,104,32,119,101,32,100,111,32,112,114,101,118,101,110,116,32,100,117,112,108,105,99,97,116,101,32,102,105,101,108,100,32,107,101,121,115,46,46,46,92,110,32,32,32,32,32,32,32,32,47,47,32,32,32,83,111,32,119,101,32,99,111,117,108,100,32,99,104,97,110,103,101,32,116,104,105,115,32,116,111,58,32,96,114,111,119,45,36,123,114,111,119,73,110,100,101,120,125,45,99,101,108,108,45,36,123,107,101,121,125,96,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,102,105,101,108,100,46,99,108,97,115,115,32,63,32,102,105,101,108,100,46,99,108,97,115,115,32,58,32,39,39,44,32,116,104,105,115,46,103,101,116,84,100,86,97,108,117,101,115,40,105,116,101,109,44,32,107,101,121,44,32,102,105,101,108,100,46,116,100,67,108,97,115,115,44,32,39,39,41,93,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,111,108,105,110,100,101,120,39,58,32,83,116,114,105,110,103,40,99,111,108,73,110,100,101,120,32,43,32,49,41,92,110,32,32,32,32,32,32,32,32,125,44,32,105,115,82,111,119,72,101,97,100,101,114,32,63,32,116,104,105,115,46,103,101,116,84,104,86,97,108,117,101,115,40,105,116,101,109,44,32,107,101,121,44,32,102,105,101,108,100,46,116,104,65,116,116,114,44,32,39,114,111,119,39,44,32,123,125,41,32,58,32,116,104,105,115,46,103,101,116,84,100,86,97,108,117,101,115,40,105,116,101,109,44,32,107,101,121,44,32,102,105,101,108,100,46,116,100,65,116,116,114,44,32,123,125,41,41,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,114,111,119,45,92,34,46,99,111,110,99,97,116,40,114,111,119,73,110,100,101,120,44,32,92,34,45,99,101,108,108,45,92,34,41,46,99,111,110,99,97,116,40,99,111,108,73,110,100,101,120,44,32,92,34,45,92,34,41,46,99,111,110,99,97,116,40,107,101,121,41,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,116,105,99,107,121,67,111,108,117,109,110,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,97,114,101,32,117,115,105,110,103,32,116,104,101,32,104,101,108,112,101,114,32,66,84,100,32,111,114,32,66,84,104,92,110,32,32,32,32,32,32,32,32,100,97,116,97,46,112,114,111,112,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,99,107,101,100,72,101,97,100,105,110,103,58,32,105,115,83,116,97,99,107,101,100,32,63,32,108,97,98,101,108,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,105,99,107,121,67,111,108,117,109,110,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,99,101,108,108,86,97,114,105,97,110,116,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,85,115,105,110,103,32,110,97,116,105,118,101,32,84,68,32,111,114,32,84,72,32,101,108,101,109,101,110,116,44,32,115,111,32,119,101,32,110,101,101,100,32,116,111,92,110,32,32,32,32,32,32,32,32,47,47,32,97,100,100,32,105,110,32,116,104,101,32,97,116,116,114,105,98,117,116,101,115,32,97,110,100,32,118,97,114,105,97,110,116,32,99,108,97,115,115,92,110,32,32,32,32,32,32,32,32,100,97,116,97,46,97,116,116,114,115,91,39,100,97,116,97,45,108,97,98,101,108,39,93,32,61,32,105,115,83,116,97,99,107,101,100,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,108,97,98,101,108,41,32,63,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,116,111,83,116,114,105,110,103,41,40,108,97,98,101,108,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,100,97,116,97,46,97,116,116,114,115,46,114,111,108,101,32,61,32,105,115,82,111,119,72,101,97,100,101,114,32,63,32,39,114,111,119,104,101,97,100,101,114,39,32,58,32,39,99,101,108,108,39,59,92,110,32,32,32,32,32,32,32,32,100,97,116,97,46,97,116,116,114,115,46,115,99,111,112,101,32,61,32,105,115,82,111,119,72,101,97,100,101,114,32,63,32,39,114,111,119,39,32,58,32,110,117,108,108,59,32,47,47,32,65,100,100,32,105,110,32,116,104,101,32,118,97,114,105,97,110,116,32,99,108,97,115,115,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,101,108,108,86,97,114,105,97,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,97,116,97,46,99,108,97,115,115,46,112,117,115,104,40,92,34,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,100,97,114,107,32,63,32,39,98,103,39,32,58,32,39,116,97,98,108,101,39,44,32,92,34,45,92,34,41,46,99,111,110,99,97,116,40,99,101,108,108,86,97,114,105,97,110,116,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,108,111,116,83,99,111,112,101,32,61,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,109,58,32,105,116,101,109,44,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,114,111,119,73,110,100,101,120,44,92,110,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,102,105,101,108,100,44,92,110,32,32,32,32,32,32,32,32,117,110,102,111,114,109,97,116,116,101,100,58,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,103,101,116,41,40,105,116,101,109,44,32,107,101,121,44,32,39,39,41,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,111,114,109,97,116,116,101,100,44,92,110,32,32,32,32,32,32,32,32,116,111,103,103,108,101,68,101,116,97,105,108,115,58,32,116,104,105,115,46,116,111,103,103,108,101,68,101,116,97,105,108,115,70,97,99,116,111,114,121,40,104,97,115,68,101,116,97,105,108,115,83,108,111,116,44,32,105,116,101,109,41,44,92,110,32,32,32,32,32,32,32,32,100,101,116,97,105,108,115,83,104,111,119,105,110,103,58,32,66,111,111,108,101,97,110,40,105,116,101,109,91,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,70,73,69,76,68,95,75,69,89,95,83,72,79,87,95,68,69,84,65,73,76,83,93,41,92,110,32,32,32,32,32,32,125,59,32,47,47,32,73,102,32,116,97,98,108,101,32,115,117,112,112,111,114,116,115,32,115,101,108,101,99,116,97,98,108,101,32,109,111,100,101,44,32,116,104,101,110,32,97,100,100,32,105,110,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,115,99,111,112,101,92,110,32,32,32,32,32,32,47,47,32,116,104,105,115,46,115,117,112,112,111,114,116,115,83,101,108,101,99,116,97,98,108,101,82,111,119,115,32,119,105,108,108,32,98,101,32,117,110,100,101,102,105,110,101,100,32,105,102,32,109,105,120,105,110,32,105,115,110,39,116,32,108,111,97,100,101,100,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,115,117,112,112,111,114,116,115,83,101,108,101,99,116,97,98,108,101,82,111,119,115,41,32,123,92,110,32,32,32,32,32,32,32,32,115,108,111,116,83,99,111,112,101,46,114,111,119,83,101,108,101,99,116,101,100,32,61,32,116,104,105,115,46,105,115,82,111,119,83,101,108,101,99,116,101,100,40,114,111,119,73,110,100,101,120,41,59,92,110,92,110,32,32,32,32,32,32,32,32,115,108,111,116,83,99,111,112,101,46,115,101,108,101,99,116,82,111,119,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,50,46,115,101,108,101,99,116,82,111,119,40,114,111,119,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,115,108,111,116,83,99,111,112,101,46,117,110,115,101,108,101,99,116,82,111,119,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,50,46,117,110,115,101,108,101,99,116,82,111,119,40,114,111,119,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,32,47,47,32,84,104,101,32,110,101,119,32,96,118,45,115,108,111,116,96,32,115,121,110,116,97,120,32,100,111,101,115,110,39,116,32,108,105,107,101,32,97,32,115,108,111,116,32,110,97,109,101,32,115,116,97,114,116,105,110,103,32,119,105,116,104,92,110,32,32,32,32,32,32,47,47,32,97,32,115,113,117,97,114,101,32,98,114,97,99,107,101,116,32,97,110,100,32,105,102,32,117,115,105,110,103,32,105,110,45,100,111,99,117,109,101,110,116,32,72,84,77,76,32,116,101,109,112,108,97,116,101,115,44,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,118,45,115,108,111,116,32,97,116,116,114,105,98,117,116,101,115,32,97,114,101,32,108,111,119,101,114,45,99,97,115,101,100,32,98,121,32,116,104,101,32,98,114,111,119,115,101,114,46,92,110,32,32,32,32,32,32,47,47,32,83,119,105,116,99,104,101,100,32,116,111,32,114,111,117,110,100,32,98,114,97,99,107,101,116,32,115,121,110,116,97,120,32,116,111,32,112,114,101,118,101,110,116,32,99,111,110,102,117,115,105,111,110,32,119,105,116,104,92,110,32,32,32,32,32,32,47,47,32,100,121,110,97,109,105,99,32,115,108,111,116,32,110,97,109,101,32,115,121,110,116,97,120,46,92,110,32,32,32,32,32,32,47,47,32,87,101,32,108,111,111,107,32,102,111,114,32,115,108,111,116,115,32,105,110,32,116,104,105,115,32,111,114,100,101,114,58,32,96,99,101,108,108,40,36,123,107,101,121,125,41,96,44,32,96,99,101,108,108,40,36,123,107,101,121,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,96,44,32,39,99,101,108,108,40,41,39,92,110,32,32,32,32,32,32,47,47,32,83,108,111,116,32,110,97,109,101,115,32,97,114,101,32,110,111,119,32,99,97,99,104,101,100,32,98,121,32,109,105,120,105,110,32,116,98,111,100,121,32,105,110,32,96,116,104,105,115,46,36,95,98,111,100,121,70,105,101,108,100,83,108,111,116,78,97,109,101,67,97,99,104,101,96,92,110,32,32,32,32,32,32,47,47,32,87,105,108,108,32,98,101,32,96,110,117,108,108,96,32,105,102,32,110,111,32,115,108,111,116,32,40,111,114,32,102,97,108,108,98,97,99,107,32,115,108,111,116,41,32,101,120,105,115,116,115,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,108,111,116,78,97,109,101,32,61,32,116,104,105,115,46,36,95,98,111,100,121,70,105,101,108,100,83,108,111,116,78,97,109,101,67,97,99,104,101,91,107,101,121,93,59,92,110,32,32,32,32,32,32,118,97,114,32,36,99,104,105,108,100,78,111,100,101,115,32,61,32,115,108,111,116,78,97,109,101,32,63,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,115,108,111,116,78,97,109,101,44,32,115,108,111,116,83,99,111,112,101,41,32,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,116,111,83,116,114,105,110,103,41,40,102,111,114,109,97,116,116,101,100,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,116,97,99,107,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,119,114,97,112,32,105,110,32,97,32,68,73,86,32,116,111,32,101,110,115,117,114,101,32,114,101,110,100,101,114,101,100,32,97,115,32,97,32,115,105,110,103,108,101,32,99,101,108,108,32,119,104,101,110,32,118,105,115,117,97,108,108,121,32,115,116,97,99,107,101,100,33,92,110,32,32,32,32,32,32,32,32,36,99,104,105,108,100,78,111,100,101,115,32,61,32,91,104,40,39,100,105,118,39,44,32,91,36,99,104,105,108,100,78,111,100,101,115,93,41,93,59,92,110,32,32,32,32,32,32,125,32,47,47,32,82,101,110,100,101,114,32,101,105,116,104,101,114,32,97,32,116,100,32,111,114,32,116,104,32,99,101,108,108,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,99,101,108,108,84,97,103,44,32,100,97,116,97,44,32,91,36,99,104,105,108,100,78,111,100,101,115,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,82,101,110,100,101,114,115,32,97,110,32,105,116,101,109,39,115,32,114,111,119,32,40,111,114,32,114,111,119,115,32,105,102,32,100,101,116,97,105,108,115,32,115,117,112,112,111,114,116,101,100,41,92,110,32,32,32,32,114,101,110,100,101,114,84,98,111,100,121,82,111,119,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,84,98,111,100,121,82,111,119,40,105,116,101,109,44,32,114,111,119,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,102,105,101,108,100,115,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,114,105,112,101,100,32,61,32,116,104,105,115,46,115,116,114,105,112,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,105,109,97,114,121,75,101,121,32,61,32,116,104,105,115,46,112,114,105,109,97,114,121,75,101,121,44,92,110,32,32,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,80,97,103,101,32,61,32,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,44,92,110,32,32,32,32,32,32,32,32,32,32,112,101,114,80,97,103,101,32,61,32,116,104,105,115,46,112,101,114,80,97,103,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,84,114,67,108,97,115,115,32,61,32,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,84,114,65,116,116,114,32,61,32,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,59,92,110,32,32,32,32,32,32,118,97,114,32,104,32,61,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,118,97,114,32,104,97,115,68,101,116,97,105,108,115,83,108,111,116,32,61,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,83,76,79,84,95,78,65,77,69,95,82,79,87,95,68,69,84,65,73,76,83,41,59,92,110,32,32,32,32,32,32,118,97,114,32,114,111,119,83,104,111,119,68,101,116,97,105,108,115,32,61,32,105,116,101,109,91,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,70,73,69,76,68,95,75,69,89,95,83,72,79,87,95,68,69,84,65,73,76,83,93,32,38,38,32,104,97,115,68,101,116,97,105,108,115,83,108,111,116,59,92,110,32,32,32,32,32,32,118,97,114,32,104,97,115,82,111,119,67,108,105,99,107,72,97,110,100,108,101,114,32,61,32,116,104,105,115,46,36,108,105,115,116,101,110,101,114,115,91,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,67,76,73,67,75,69,68,93,32,124,124,32,116,104,105,115,46,104,97,115,83,101,108,101,99,116,97,98,108,101,82,111,119,67,108,105,99,107,59,32,47,47,32,87,101,32,99,97,110,32,114,101,116,117,114,110,32,109,111,114,101,32,116,104,97,110,32,111,110,101,32,84,82,32,105,102,32,114,111,119,68,101,116,97,105,108,115,32,101,110,97,98,108,101,100,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,114,111,119,115,32,61,32,91,93,59,32,47,47,32,68,101,116,97,105,108,115,32,73,68,32,110,101,101,100,101,100,32,102,111,114,32,96,97,114,105,97,45,100,101,116,97,105,108,115,96,32,119,104,101,110,32,100,101,116,97,105,108,115,32,115,104,111,119,105,110,103,92,110,32,32,32,32,32,32,47,47,32,87,101,32,115,101,116,32,105,116,32,116,111,32,96,110,117,108,108,96,32,119,104,101,110,32,110,111,116,32,115,104,111,119,105,110,103,32,115,111,32,116,104,97,116,32,97,116,116,114,105,98,117,116,101,92,110,32,32,32,32,32,32,47,47,32,100,111,101,115,32,110,111,116,32,97,112,112,101,97,114,32,111,110,32,116,104,101,32,101,108,101,109,101,110,116,92,110,92,110,32,32,32,32,32,32,118,97,114,32,100,101,116,97,105,108,115,73,100,32,61,32,114,111,119,83,104,111,119,68,101,116,97,105,108,115,32,63,32,116,104,105,115,46,115,97,102,101,73,100,40,92,34,95,100,101,116,97,105,108,115,95,92,34,46,99,111,110,99,97,116,40,114,111,119,73,110,100,101,120,44,32,92,34,95,92,34,41,41,32,58,32,110,117,108,108,59,32,47,47,32,70,111,114,32,101,97,99,104,32,105,116,101,109,32,100,97,116,97,32,102,105,101,108,100,32,105,110,32,114,111,119,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,116,100,115,32,61,32,102,105,101,108,100,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,102,105,101,108,100,44,32,99,111,108,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,51,46,114,101,110,100,101,114,84,98,111,100,121,82,111,119,67,101,108,108,40,102,105,101,108,100,44,32,99,111,108,73,110,100,101,120,44,32,105,116,101,109,44,32,114,111,119,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,67,97,108,99,117,108,97,116,101,32,116,104,101,32,114,111,119,32,110,117,109,98,101,114,32,105,110,32,116,104,101,32,100,97,116,97,115,101,116,32,40,105,110,100,101,120,101,100,32,102,114,111,109,32,49,41,92,110,92,110,32,32,32,32,32,32,118,97,114,32,97,114,105,97,82,111,119,73,110,100,101,120,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,80,97,103,101,32,38,38,32,112,101,114,80,97,103,101,32,38,38,32,112,101,114,80,97,103,101,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,97,114,105,97,82,111,119,73,110,100,101,120,32,61,32,83,116,114,105,110,103,40,40,99,117,114,114,101,110,116,80,97,103,101,32,45,32,49,41,32,42,32,112,101,114,80,97,103,101,32,43,32,114,111,119,73,110,100,101,120,32,43,32,49,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,67,114,101,97,116,101,32,97,32,117,110,105,113,117,101,32,58,107,101,121,32,116,111,32,104,101,108,112,32,101,110,115,117,114,101,32,116,104,97,116,32,115,117,98,32,99,111,109,112,111,110,101,110,116,115,32,97,114,101,32,114,101,45,114,101,110,100,101,114,101,100,32,114,97,116,104,101,114,32,116,104,97,110,92,110,32,32,32,32,32,32,47,47,32,114,101,45,117,115,101,100,44,32,119,104,105,99,104,32,99,97,110,32,99,97,117,115,101,32,105,115,115,117,101,115,46,32,73,102,32,97,32,112,114,105,109,97,114,121,32,107,101,121,32,105,115,32,110,111,116,32,112,114,111,118,105,100,101,100,32,119,101,32,117,115,101,32,116,104,101,32,114,101,110,100,101,114,101,100,92,110,32,32,32,32,32,32,47,47,32,114,111,119,115,32,105,110,100,101,120,32,119,105,116,104,105,110,32,116,104,101,32,116,98,111,100,121,46,92,110,32,32,32,32,32,32,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,50,52,49,48,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,112,114,105,109,97,114,121,75,101,121,86,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,116,111,83,116,114,105,110,103,41,40,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,103,101,116,41,40,105,116,101,109,44,32,112,114,105,109,97,114,121,75,101,121,41,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,32,32,118,97,114,32,114,111,119,75,101,121,32,61,32,112,114,105,109,97,114,121,75,101,121,86,97,108,117,101,32,124,124,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,116,111,83,116,114,105,110,103,41,40,114,111,119,73,110,100,101,120,41,59,32,47,47,32,73,102,32,112,114,105,109,97,114,121,32,107,101,121,32,105,115,32,112,114,111,118,105,100,101,100,44,32,117,115,101,32,105,116,32,116,111,32,103,101,110,101,114,97,116,101,32,97,32,117,110,105,113,117,101,32,73,68,32,111,110,32,101,97,99,104,32,116,98,111,100,121,32,62,32,116,114,92,110,32,32,32,32,32,32,47,47,32,73,110,32,116,104,101,32,102,111,114,109,97,116,32,111,102,32,39,123,116,97,98,108,101,73,100,125,95,95,114,111,119,95,123,112,114,105,109,97,114,121,75,101,121,86,97,108,117,101,125,39,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,111,119,73,100,32,61,32,112,114,105,109,97,114,121,75,101,121,86,97,108,117,101,32,63,32,116,104,105,115,46,115,97,102,101,73,100,40,92,34,95,114,111,119,95,92,34,46,99,111,110,99,97,116,40,112,114,105,109,97,114,121,75,101,121,86,97,108,117,101,41,41,32,58,32,110,117,108,108,59,32,47,47,32,83,101,108,101,99,116,97,98,108,101,32,99,108,97,115,115,101,115,32,97,110,100,32,97,116,116,114,105,98,117,116,101,115,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,97,98,108,101,67,108,97,115,115,101,115,32,61,32,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,82,111,119,67,108,97,115,115,101,115,32,63,32,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,82,111,119,67,108,97,115,115,101,115,40,114,111,119,73,110,100,101,120,41,32,58,32,123,125,59,92,110,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,97,98,108,101,65,116,116,114,115,32,61,32,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,82,111,119,65,116,116,114,115,32,63,32,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,82,111,119,65,116,116,114,115,40,114,111,119,73,110,100,101,120,41,32,58,32,123,125,59,32,47,47,32,65,100,100,105,116,105,111,110,97,108,32,99,108,97,115,115,101,115,32,97,110,100,32,97,116,116,114,105,98,117,116,101,115,92,110,92,110,32,32,32,32,32,32,118,97,114,32,117,115,101,114,84,114,67,108,97,115,115,101,115,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,98,111,100,121,84,114,67,108,97,115,115,41,32,63,32,116,98,111,100,121,84,114,67,108,97,115,115,40,105,116,101,109,44,32,39,114,111,119,39,41,32,58,32,116,98,111,100,121,84,114,67,108,97,115,115,59,92,110,32,32,32,32,32,32,118,97,114,32,117,115,101,114,84,114,65,116,116,114,115,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,98,111,100,121,84,114,65,116,116,114,41,32,63,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,116,98,111,100,121,84,114,65,116,116,114,40,105,116,101,109,44,32,39,114,111,119,39,41,32,58,32,116,98,111,100,121,84,114,65,116,116,114,59,32,47,47,32,65,100,100,32,116,104,101,32,105,116,101,109,32,114,111,119,92,110,92,110,32,32,32,32,32,32,36,114,111,119,115,46,112,117,115,104,40,104,40,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,66,84,114,44,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,117,115,101,114,84,114,67,108,97,115,115,101,115,44,32,115,101,108,101,99,116,97,98,108,101,67,108,97,115,115,101,115,44,32,114,111,119,83,104,111,119,68,101,116,97,105,108,115,32,63,32,39,98,45,116,97,98,108,101,45,104,97,115,45,100,101,116,97,105,108,115,39,32,58,32,39,39,93,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,105,116,101,109,91,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,70,73,69,76,68,95,75,69,89,95,82,79,87,95,86,65,82,73,65,78,84,93,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,114,111,119,73,100,92,110,32,32,32,32,32,32,32,32,125,44,32,117,115,101,114,84,114,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,85,115,101,114,115,32,99,97,110,110,111,116,32,111,118,101,114,114,105,100,101,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,97,116,116,114,105,98,117,116,101,115,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,104,97,115,82,111,119,67,108,105,99,107,72,97,110,100,108,101,114,32,63,32,39,48,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,39,100,97,116,97,45,112,107,39,58,32,112,114,105,109,97,114,121,75,101,121,86,97,108,117,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,101,116,97,105,108,115,39,58,32,100,101,116,97,105,108,115,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,111,119,110,115,39,58,32,100,101,116,97,105,108,115,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,111,119,105,110,100,101,120,39,58,32,97,114,105,97,82,111,119,73,110,100,101,120,92,110,32,32,32,32,32,32,32,32,125,44,32,115,101,108,101,99,116,97,98,108,101,65,116,116,114,115,41,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,116,101,58,32,84,104,101,115,101,32,101,118,101,110,116,115,32,97,114,101,32,110,111,116,32,65,49,49,89,32,102,114,105,101,110,100,108,121,33,92,110,32,32,32,32,32,32,32,32,32,32,109,111,117,115,101,101,110,116,101,114,58,32,116,104,105,115,46,114,111,119,72,111,118,101,114,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,109,111,117,115,101,108,101,97,118,101,58,32,116,104,105,115,46,114,111,119,85,110,104,111,118,101,114,101,100,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,95,95,98,45,116,97,98,108,101,45,114,111,119,45,92,34,46,99,111,110,99,97,116,40,114,111,119,75,101,121,44,32,92,34,95,95,92,34,41,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,39,105,116,101,109,45,114,111,119,115,39,44,92,110,32,32,32,32,32,32,32,32,114,101,102,73,110,70,111,114,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,44,32,36,116,100,115,41,41,59,32,47,47,32,82,111,119,32,68,101,116,97,105,108,115,32,115,108,111,116,92,110,92,110,32,32,32,32,32,32,105,102,32,40,114,111,119,83,104,111,119,68,101,116,97,105,108,115,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,101,116,97,105,108,115,83,99,111,112,101,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,58,32,105,116,101,109,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,114,111,119,73,110,100,101,120,44,92,110,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,92,110,32,32,32,32,32,32,32,32,32,32,116,111,103,103,108,101,68,101,116,97,105,108,115,58,32,116,104,105,115,46,116,111,103,103,108,101,68,101,116,97,105,108,115,70,97,99,116,111,114,121,40,104,97,115,68,101,116,97,105,108,115,83,108,111,116,44,32,105,116,101,109,41,92,110,32,32,32,32,32,32,32,32,125,59,32,47,47,32,73,102,32,116,97,98,108,101,32,115,117,112,112,111,114,116,115,32,115,101,108,101,99,116,97,98,108,101,32,109,111,100,101,44,32,116,104,101,110,32,97,100,100,32,105,110,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,115,99,111,112,101,92,110,32,32,32,32,32,32,32,32,47,47,32,116,104,105,115,46,115,117,112,112,111,114,116,115,83,101,108,101,99,116,97,98,108,101,82,111,119,115,32,119,105,108,108,32,98,101,32,117,110,100,101,102,105,110,101,100,32,105,102,32,109,105,120,105,110,32,105,115,110,39,116,32,108,111,97,100,101,100,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,115,117,112,112,111,114,116,115,83,101,108,101,99,116,97,98,108,101,82,111,119,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,101,116,97,105,108,115,83,99,111,112,101,46,114,111,119,83,101,108,101,99,116,101,100,32,61,32,116,104,105,115,46,105,115,82,111,119,83,101,108,101,99,116,101,100,40,114,111,119,73,110,100,101,120,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,100,101,116,97,105,108,115,83,99,111,112,101,46,115,101,108,101,99,116,82,111,119,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,51,46,115,101,108,101,99,116,82,111,119,40,114,111,119,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,100,101,116,97,105,108,115,83,99,111,112,101,46,117,110,115,101,108,101,99,116,82,111,119,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,51,46,117,110,115,101,108,101,99,116,82,111,119,40,114,111,119,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,82,101,110,100,101,114,32,116,104,101,32,100,101,116,97,105,108,115,32,115,108,111,116,32,105,110,32,97,32,84,68,92,110,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,36,100,101,116,97,105,108,115,32,61,32,104,40,95,116,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,84,100,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,115,112,97,110,58,32,102,105,101,108,100,115,46,108,101,110,103,116,104,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,100,101,116,97,105,108,115,84,100,67,108,97,115,115,92,110,32,32,32,32,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,83,76,79,84,95,78,65,77,69,95,82,79,87,95,68,69,84,65,73,76,83,44,32,100,101,116,97,105,108,115,83,99,111,112,101,41,93,41,59,32,47,47,32,65,100,100,32,97,32,104,105,100,100,101,110,32,114,111,119,32,116,111,32,107,101,101,112,32,116,97,98,108,101,32,114,111,119,32,115,116,114,105,112,105,110,103,32,99,111,110,115,105,115,116,101,110,116,32,119,104,101,110,32,100,101,116,97,105,108,115,32,115,104,111,119,105,110,103,92,110,32,32,32,32,32,32,32,32,47,47,32,79,110,108,121,32,97,100,100,101,100,32,105,102,32,116,104,101,32,116,97,98,108,101,32,105,115,32,115,116,114,105,112,101,100,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,116,114,105,112,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,36,114,111,119,115,46,112,117,115,104,40,32,47,47,32,87,101,32,100,111,110,39,116,32,117,115,101,32,96,66,84,114,96,32,104,101,114,101,32,97,115,32,119,101,32,100,111,110,39,116,32,110,101,101,100,32,116,104,101,32,101,120,116,114,97,32,102,117,110,99,116,105,111,110,97,108,105,116,121,92,110,32,32,32,32,32,32,32,32,32,32,104,40,39,116,114,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,100,45,110,111,110,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,39,116,114,117,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,112,114,101,115,101,110,116,97,116,105,111,110,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,95,95,98,45,116,97,98,108,101,45,100,101,116,97,105,108,115,45,115,116,114,105,112,101,95,95,92,34,46,99,111,110,99,97,116,40,114,111,119,75,101,121,41,92,110,32,32,32,32,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,65,100,100,32,116,104,101,32,97,99,116,117,97,108,32,100,101,116,97,105,108,115,32,114,111,119,92,110,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,117,115,101,114,68,101,116,97,105,108,115,84,114,67,108,97,115,115,101,115,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,41,32,63,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,40,105,116,101,109,44,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,83,76,79,84,95,78,65,77,69,95,82,79,87,95,68,69,84,65,73,76,83,41,32,58,32,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,117,115,101,114,68,101,116,97,105,108,115,84,114,65,116,116,114,115,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,41,32,63,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,40,105,116,101,109,44,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,83,76,79,84,95,78,65,77,69,95,82,79,87,95,68,69,84,65,73,76,83,41,32,58,32,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,59,92,110,32,32,32,32,32,32,32,32,36,114,111,119,115,46,112,117,115,104,40,104,40,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,66,84,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,116,97,98,108,101,45,100,101,116,97,105,108,115,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,117,115,101,114,68,101,116,97,105,108,115,84,114,67,108,97,115,115,101,115,93,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,105,116,101,109,91,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,70,73,69,76,68,95,75,69,89,95,82,79,87,95,86,65,82,73,65,78,84,93,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,117,115,101,114,68,101,116,97,105,108,115,84,114,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,115,101,114,115,32,99,97,110,110,111,116,32,111,118,101,114,114,105,100,101,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,97,116,116,114,105,98,117,116,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,100,101,116,97,105,108,115,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,45,49,39,92,110,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,95,95,98,45,116,97,98,108,101,45,100,101,116,97,105,108,115,95,95,92,34,46,99,111,110,99,97,116,40,114,111,119,75,101,121,41,92,110,32,32,32,32,32,32,32,32,125,44,32,91,36,100,101,116,97,105,108,115,93,41,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,97,115,68,101,116,97,105,108,115,83,108,111,116,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,79,110,108,121,32,97,100,100,32,116,104,101,32,112,108,97,99,101,104,111,108,100,101,114,32,105,102,32,97,32,116,104,101,32,116,97,98,108,101,32,104,97,115,32,97,32,114,111,119,45,100,101,116,97,105,108,115,32,115,108,111,116,32,100,101,102,105,110,101,100,32,40,98,117,116,32,110,111,116,32,115,104,111,119,110,41,92,110,32,32,32,32,32,32,32,32,36,114,111,119,115,46,112,117,115,104,40,104,40,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,116,114,105,112,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,101,120,116,114,97,32,112,108,97,99,101,104,111,108,100,101,114,32,105,102,32,116,97,98,108,101,32,105,115,32,115,116,114,105,112,101,100,92,110,32,32,32,32,32,32,32,32,32,32,36,114,111,119,115,46,112,117,115,104,40,104,40,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,114,111,119,40,115,41,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,36,114,111,119,115,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,98,111,100,121,45,114,111,119,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,98,111,100,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,98,111,100,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,98,111,100,121,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,98,111,100,121,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,98,111,100,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,98,111,100,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,105,108,116,101,114,95,101,118,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,105,108,116,101,114,45,101,118,101,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,102,105,108,116,101,114,45,101,118,101,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,101,120,116,95,115,101,108,101,99,116,105,111,110,95,97,99,116,105,118,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,101,120,116,45,115,101,108,101,99,116,105,111,110,45,97,99,116,105,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,116,101,120,116,45,115,101,108,101,99,116,105,111,110,45,97,99,116,105,118,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,95,116,98,111,100,121,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,105,120,105,110,45,116,98,111,100,121,45,114,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,98,111,100,121,45,114,111,119,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,92,110,118,97,114,32,103,101,116,67,101,108,108,83,108,111,116,78,97,109,101,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,67,101,108,108,83,108,111,116,78,97,109,101,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,92,34,99,101,108,108,40,92,34,46,99,111,110,99,97,116,40,118,97,108,117,101,32,124,124,32,39,39,44,32,92,34,41,92,34,41,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,116,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,41,44,32,95,109,105,120,105,110,95,116,98,111,100,121,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,116,98,111,100,121,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,92,110,125,41,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,116,98,111,100,121,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,95,116,98,111,100,121,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,98,111,100,121,82,111,119,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,36,95,98,111,100,121,70,105,101,108,100,83,108,111,116,78,97,109,101,67,97,99,104,101,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,97,108,108,32,116,104,101,32,105,116,101,109,32,84,82,32,101,108,101,109,101,110,116,115,32,40,101,120,99,108,117,100,101,115,32,100,101,116,97,105,108,32,97,110,100,32,115,112,97,99,101,114,32,114,111,119,115,41,92,110,32,32,32,32,47,47,32,96,116,104,105,115,46,36,114,101,102,115,91,39,105,116,101,109,45,114,111,119,115,39,93,96,32,105,115,32,97,110,32,97,114,114,97,121,32,111,102,32,105,116,101,109,32,84,82,32,99,111,109,112,111,110,101,110,116,115,47,101,108,101,109,101,110,116,115,92,110,32,32,32,32,47,47,32,82,111,119,115,32,115,104,111,117,108,100,32,97,108,108,32,98,101,32,96,60,98,45,116,114,62,96,32,99,111,109,112,111,110,101,110,116,115,44,32,98,117,116,32,119,101,32,109,97,112,32,116,111,32,84,82,32,101,108,101,109,101,110,116,115,92,110,32,32,32,32,47,47,32,65,108,115,111,32,110,111,116,101,32,116,104,97,116,32,96,116,104,105,115,46,36,114,101,102,115,91,39,105,116,101,109,45,114,111,119,115,39,93,96,32,109,97,121,32,110,111,116,32,97,108,119,97,121,115,32,98,101,32,105,110,32,100,111,99,117,109,101,110,116,32,111,114,100,101,114,92,110,32,32,32,32,103,101,116,84,98,111,100,121,84,114,115,58,32,102,117,110,99,116,105,111,110,32,103,101,116,84,98,111,100,121,84,114,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,114,101,102,115,32,61,32,116,104,105,115,46,36,114,101,102,115,59,92,110,32,32,32,32,32,32,118,97,114,32,116,98,111,100,121,32,61,32,36,114,101,102,115,46,116,98,111,100,121,32,63,32,36,114,101,102,115,46,116,98,111,100,121,46,36,101,108,32,124,124,32,36,114,101,102,115,46,116,98,111,100,121,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,118,97,114,32,116,114,115,32,61,32,40,36,114,101,102,115,91,39,105,116,101,109,45,114,111,119,115,39,93,32,124,124,32,91,93,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,116,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,46,36,101,108,32,124,124,32,116,114,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,98,111,100,121,32,38,38,32,116,98,111,100,121,46,99,104,105,108,100,114,101,110,32,38,38,32,116,98,111,100,121,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,116,114,115,32,38,38,32,116,114,115,46,108,101,110,103,116,104,32,62,32,48,32,63,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,114,111,109,41,40,116,98,111,100,121,46,99,104,105,108,100,114,101,110,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,116,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,116,114,115,44,32,116,114,41,59,92,110,32,32,32,32,32,32,125,41,32,58,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,91,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,105,110,100,101,120,32,111,102,32,97,32,112,97,114,116,105,99,117,108,97,114,32,84,66,79,68,89,32,105,116,101,109,32,84,82,92,110,32,32,32,32,47,47,32,87,101,32,115,101,116,32,96,116,114,117,101,96,32,111,110,32,99,108,111,115,101,115,116,32,116,111,32,105,110,99,108,117,100,101,32,115,101,108,102,32,105,110,32,114,101,115,117,108,116,92,110,32,32,32,32,103,101,116,84,98,111,100,121,84,114,73,110,100,101,120,58,32,102,117,110,99,116,105,111,110,32,103,101,116,84,98,111,100,121,84,114,73,110,100,101,120,40,101,108,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,115,104,111,117,108,100,32,110,111,116,32,110,111,114,109,97,108,108,121,32,104,97,112,112,101,110,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,69,108,101,109,101,110,116,41,40,101,108,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,114,32,61,32,101,108,46,116,97,103,78,97,109,101,32,61,61,61,32,39,84,82,39,32,63,32,101,108,32,58,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,99,108,111,115,101,115,116,41,40,39,116,114,39,44,32,101,108,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,32,63,32,116,104,105,115,46,103,101,116,84,98,111,100,121,84,114,115,40,41,46,105,110,100,101,120,79,102,40,116,114,41,32,58,32,45,49,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,69,109,105,116,115,32,97,32,114,111,119,32,101,118,101,110,116,44,32,119,105,116,104,32,116,104,101,32,105,116,101,109,32,111,98,106,101,99,116,44,32,114,111,119,32,105,110,100,101,120,32,97,110,100,32,111,114,105,103,105,110,97,108,32,101,118,101,110,116,92,110,32,32,32,32,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,58,32,102,117,110,99,116,105,111,110,32,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,40,116,121,112,101,44,32,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,38,38,32,116,104,105,115,46,104,97,115,76,105,115,116,101,110,101,114,40,116,121,112,101,41,32,38,38,32,101,118,101,110,116,32,38,38,32,101,118,101,110,116,46,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,111,119,73,110,100,101,120,32,61,32,116,104,105,115,46,103,101,116,84,98,111,100,121,84,114,73,110,100,101,120,40,101,118,101,110,116,46,116,97,114,103,101,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,111,119,73,110,100,101,120,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,97,114,114,97,121,32,111,102,32,84,82,115,32,99,111,114,114,101,108,97,116,101,32,116,111,32,116,104,101,32,96,99,111,109,112,117,116,101,100,73,116,101,109,115,96,32,97,114,114,97,121,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,91,114,111,119,73,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,116,121,112,101,44,32,105,116,101,109,44,32,114,111,119,73,110,100,101,120,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,58,32,102,117,110,99,116,105,111,110,32,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,116,111,112,73,102,66,117,115,121,32,38,38,32,116,104,105,115,46,115,116,111,112,73,102,66,117,115,121,40,101,118,101,110,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,68,101,108,101,103,97,116,101,100,32,114,111,119,32,101,118,101,110,116,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,111,110,84,98,111,100,121,82,111,119,75,101,121,100,111,119,110,58,32,102,117,110,99,116,105,111,110,32,111,110,84,98,111,100,121,82,111,119,75,101,121,100,111,119,110,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,75,101,121,98,111,97,114,100,32,110,97,118,105,103,97,116,105,111,110,32,97,110,100,32,114,111,119,32,99,108,105,99,107,32,101,109,117,108,97,116,105,111,110,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,40,101,118,101,110,116,41,32,124,124,32,116,97,114,103,101,116,46,116,97,103,78,97,109,101,32,33,61,61,32,39,84,82,39,32,124,124,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,65,99,116,105,118,101,69,108,101,109,101,110,116,41,40,116,97,114,103,101,116,41,32,124,124,32,116,97,114,103,101,116,46,116,97,98,73,110,100,101,120,32,33,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,69,97,114,108,121,32,101,120,105,116,32,105,102,32,110,111,116,32,97,110,32,105,116,101,109,32,114,111,119,32,84,82,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,91,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,69,78,84,69,82,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,83,80,65,67,69,93,44,32,107,101,121,67,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,69,109,117,108,97,116,101,100,32,99,108,105,99,107,32,102,111,114,32,107,101,121,98,111,97,114,100,32,117,115,101,114,115,44,32,116,114,97,110,115,102,101,114,32,116,111,32,99,108,105,99,107,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,111,110,84,66,111,100,121,82,111,119,67,108,105,99,107,101,100,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,91,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,85,80,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,68,79,87,78,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,72,79,77,69,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,69,78,68,93,44,32,107,101,121,67,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,75,101,121,98,111,97,114,100,32,110,97,118,105,103,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,111,119,73,110,100,101,120,32,61,32,116,104,105,115,46,103,101,116,84,98,111,100,121,84,114,73,110,100,101,120,40,116,97,114,103,101,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,111,119,73,110,100,101,120,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,114,115,32,61,32,116,104,105,115,46,103,101,116,84,98,111,100,121,84,114,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,104,105,102,116,32,61,32,101,118,101,110,116,46,115,104,105,102,116,75,101,121,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,72,79,77,69,32,124,124,32,115,104,105,102,116,32,38,38,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,85,80,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,111,99,117,115,32,102,105,114,115,116,32,114,111,119,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,114,115,91,48,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,69,78,68,32,124,124,32,115,104,105,102,116,32,38,38,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,68,79,87,78,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,111,99,117,115,32,108,97,115,116,32,114,111,119,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,114,115,91,116,114,115,46,108,101,110,103,116,104,32,45,32,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,85,80,32,38,38,32,114,111,119,73,110,100,101,120,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,111,99,117,115,32,112,114,101,118,105,111,117,115,32,114,111,119,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,114,115,91,114,111,119,73,110,100,101,120,32,45,32,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,68,79,87,78,32,38,38,32,114,111,119,73,110,100,101,120,32,60,32,116,114,115,46,108,101,110,103,116,104,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,111,99,117,115,32,110,101,120,116,32,114,111,119,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,114,115,91,114,111,119,73,110,100,101,120,32,43,32,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,84,66,111,100,121,82,111,119,67,108,105,99,107,101,100,58,32,102,117,110,99,116,105,111,110,32,111,110,84,66,111,100,121,82,111,119,67,108,105,99,107,101,100,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,111,110,39,116,32,101,109,105,116,32,101,118,101,110,116,32,119,104,101,110,32,116,104,101,32,116,97,98,108,101,32,105,115,32,98,117,115,121,44,32,116,104,101,32,117,115,101,114,32,99,108,105,99,107,101,100,92,110,32,32,32,32,32,32,47,47,32,111,110,32,97,32,110,111,110,45,100,105,115,97,98,108,101,100,32,99,111,110,116,114,111,108,32,111,114,32,105,115,32,115,101,108,101,99,116,105,110,103,32,116,101,120,116,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,40,101,118,101,110,116,41,32,124,124,32,40,48,44,95,102,105,108,116,101,114,95,101,118,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,102,105,108,116,101,114,69,118,101,110,116,41,40,101,118,101,110,116,41,32,124,124,32,40,48,44,95,116,101,120,116,95,115,101,108,101,99,116,105,111,110,95,97,99,116,105,118,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,116,101,120,116,83,101,108,101,99,116,105,111,110,65,99,116,105,118,101,41,40,116,104,105,115,46,36,101,108,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,67,76,73,67,75,69,68,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,84,98,111,100,121,82,111,119,77,105,100,100,108,101,77,111,117,115,101,82,111,119,67,108,105,99,107,101,100,58,32,102,117,110,99,116,105,111,110,32,111,110,84,98,111,100,121,82,111,119,77,105,100,100,108,101,77,111,117,115,101,82,111,119,67,108,105,99,107,101,100,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,40,101,118,101,110,116,41,32,38,38,32,101,118,101,110,116,46,119,104,105,99,104,32,61,61,61,32,50,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,77,73,68,68,76,69,95,67,76,73,67,75,69,68,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,84,98,111,100,121,82,111,119,67,111,110,116,101,120,116,109,101,110,117,58,32,102,117,110,99,116,105,111,110,32,111,110,84,98,111,100,121,82,111,119,67,111,110,116,101,120,116,109,101,110,117,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,40,101,118,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,67,79,78,84,69,88,84,77,69,78,85,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,84,98,111,100,121,82,111,119,68,98,108,67,108,105,99,107,101,100,58,32,102,117,110,99,116,105,111,110,32,111,110,84,98,111,100,121,82,111,119,68,98,108,67,108,105,99,107,101,100,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,40,101,118,101,110,116,41,32,38,38,32,33,40,48,44,95,102,105,108,116,101,114,95,101,118,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,102,105,108,116,101,114,69,118,101,110,116,41,40,101,118,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,68,66,76,67,76,73,67,75,69,68,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,82,101,110,100,101,114,32,116,104,101,32,116,98,111,100,121,32,101,108,101,109,101,110,116,32,97,110,100,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,47,47,32,78,111,116,101,58,92,110,32,32,32,32,47,47,32,32,32,82,111,119,32,104,111,118,101,114,32,104,97,110,100,108,101,114,115,32,97,114,101,32,104,97,110,100,108,101,100,32,98,121,32,116,104,101,32,116,98,111,100,121,45,114,111,119,32,109,105,120,105,110,92,110,32,32,32,32,47,47,32,32,32,65,115,32,109,111,117,115,101,101,110,116,101,114,47,109,111,117,115,101,108,101,97,118,101,32,101,118,101,110,116,115,32,100,111,32,110,111,116,32,98,117,98,98,108,101,92,110,32,32,32,32,114,101,110,100,101,114,84,98,111,100,121,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,84,98,111,100,121,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,110,100,101,114,66,117,115,121,32,61,32,116,104,105,115,46,114,101,110,100,101,114,66,117,115,121,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,110,100,101,114,84,111,112,82,111,119,32,61,32,116,104,105,115,46,114,101,110,100,101,114,84,111,112,82,111,119,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,110,100,101,114,69,109,112,116,121,32,61,32,116,104,105,115,46,114,101,110,100,101,114,69,109,112,116,121,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,110,100,101,114,66,111,116,116,111,109,82,111,119,32,61,32,116,104,105,115,46,114,101,110,100,101,114,66,111,116,116,111,109,82,111,119,59,92,110,32,32,32,32,32,32,118,97,114,32,104,32,61,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,118,97,114,32,104,97,115,82,111,119,67,108,105,99,107,72,97,110,100,108,101,114,32,61,32,116,104,105,115,46,104,97,115,76,105,115,116,101,110,101,114,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,67,76,73,67,75,69,68,41,32,124,124,32,116,104,105,115,46,104,97,115,83,101,108,101,99,116,97,98,108,101,82,111,119,67,108,105,99,107,59,32,47,47,32,80,114,101,112,97,114,101,32,116,104,101,32,116,98,111,100,121,32,114,111,119,115,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,114,111,119,115,32,61,32,91,93,59,32,47,47,32,65,100,100,32,116,104,101,32,105,116,101,109,32,100,97,116,97,32,114,111,119,115,32,111,114,32,116,104,101,32,98,117,115,121,32,115,108,111,116,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,98,117,115,121,32,61,32,114,101,110,100,101,114,66,117,115,121,32,63,32,114,101,110,100,101,114,66,117,115,121,40,41,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,36,98,117,115,121,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,97,98,108,101,32,105,115,32,98,117,115,121,32,97,110,100,32,97,32,98,117,115,121,32,115,108,111,116,44,32,116,104,101,110,32,114,101,116,117,114,110,32,111,110,108,121,32,116,104,101,32,98,117,115,121,32,92,34,114,111,119,92,34,32,105,110,100,105,99,97,116,111,114,92,110,32,32,32,32,32,32,32,32,36,114,111,119,115,46,112,117,115,104,40,36,98,117,115,121,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,97,98,108,101,32,105,115,110,39,116,32,98,117,115,121,44,32,111,114,32,119,101,32,100,111,110,39,116,32,104,97,118,101,32,97,32,98,117,115,121,32,115,108,111,116,92,110,32,32,32,32,32,32,32,32,47,47,32,67,114,101,97,116,101,32,97,32,115,108,111,116,32,99,97,99,104,101,32,102,111,114,32,105,109,112,114,111,118,101,100,32,112,101,114,102,111,114,109,97,110,99,101,32,119,104,101,110,32,108,111,111,107,105,110,103,32,117,112,32,99,101,108,108,32,115,108,111,116,32,110,97,109,101,115,92,110,32,32,32,32,32,32,32,32,47,47,32,86,97,108,117,101,115,32,119,105,108,108,32,98,101,32,107,101,121,101,100,32,98,121,32,116,104,101,32,102,105,101,108,100,39,115,32,96,107,101,121,96,32,97,110,100,32,119,105,108,108,32,115,116,111,114,101,32,116,104,101,32,115,108,111,116,39,115,32,110,97,109,101,92,110,32,32,32,32,32,32,32,32,47,47,32,83,108,111,116,115,32,99,111,117,108,100,32,98,101,32,100,121,110,97,109,105,99,32,40,105,46,101,46,32,96,118,45,105,102,96,41,44,32,115,111,32,119,101,32,109,117,115,116,32,99,111,109,112,117,116,101,32,111,110,32,101,97,99,104,32,114,101,110,100,101,114,92,110,32,32,32,32,32,32,32,32,47,47,32,85,115,101,100,32,98,121,32,116,98,111,100,121,45,114,111,119,32,109,105,120,105,110,32,114,101,110,100,101,114,32,104,101,108,112,101,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,97,99,104,101,32,61,32,123,125,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,83,108,111,116,78,97,109,101,32,61,32,103,101,116,67,101,108,108,83,108,111,116,78,97,109,101,40,41,59,92,110,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,83,108,111,116,78,97,109,101,32,61,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,100,101,102,97,117,108,116,83,108,111,116,78,97,109,101,41,32,63,32,100,101,102,97,117,108,116,83,108,111,116,78,97,109,101,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,102,105,101,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,102,105,101,108,100,46,107,101,121,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,108,111,116,78,97,109,101,32,61,32,103,101,116,67,101,108,108,83,108,111,116,78,97,109,101,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,111,119,101,114,99,97,115,101,83,108,111,116,78,97,109,101,32,61,32,103,101,116,67,101,108,108,83,108,111,116,78,97,109,101,40,107,101,121,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,97,99,104,101,91,107,101,121,93,32,61,32,95,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,115,108,111,116,78,97,109,101,41,32,63,32,115,108,111,116,78,97,109,101,32,58,32,95,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,108,111,119,101,114,99,97,115,101,83,108,111,116,78,97,109,101,41,32,63,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,108,111,119,101,114,99,97,115,101,83,108,111,116,78,97,109,101,32,58,32,100,101,102,97,117,108,116,83,108,111,116,78,97,109,101,59,92,110,32,32,32,32,32,32,32,32,125,41,59,32,47,47,32,67,114,101,97,116,101,100,32,97,115,32,97,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,101,114,116,121,32,115,111,32,116,111,32,110,111,116,32,116,114,105,103,103,101,114,32,99,111,109,112,111,110,101,110,116,32,117,112,100,97,116,101,115,92,110,32,32,32,32,32,32,32,32,47,47,32,77,117,115,116,32,98,101,32,97,32,102,114,101,115,104,32,111,98,106,101,99,116,32,101,97,99,104,32,114,101,110,100,101,114,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,98,111,100,121,70,105,101,108,100,83,108,111,116,78,97,109,101,67,97,99,104,101,32,61,32,99,97,99,104,101,59,32,47,47,32,65,100,100,32,115,116,97,116,105,99,32,116,111,112,32,114,111,119,32,115,108,111,116,32,40,104,105,100,100,101,110,32,105,110,32,118,105,115,105,98,108,121,32,115,116,97,99,107,101,100,32,109,111,100,101,92,110,32,32,32,32,32,32,32,32,47,47,32,97,115,32,119,101,32,99,97,110,39,116,32,99,111,110,116,114,111,108,32,96,100,97,116,97,45,108,97,98,101,108,96,32,97,116,116,114,41,92,110,92,110,32,32,32,32,32,32,32,32,36,114,111,119,115,46,112,117,115,104,40,114,101,110,100,101,114,84,111,112,82,111,119,32,63,32,114,101,110,100,101,114,84,111,112,82,111,119,40,41,32,58,32,104,40,41,41,59,32,47,47,32,82,101,110,100,101,114,32,116,104,101,32,114,111,119,115,92,110,92,110,32,32,32,32,32,32,32,32,105,116,101,109,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,44,32,114,111,119,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,110,100,101,114,32,116,104,101,32,105,110,100,105,118,105,100,117,97,108,32,105,116,101,109,32,114,111,119,32,40,114,111,119,115,32,105,102,32,100,101,116,97,105,108,115,32,115,108,111,116,41,92,110,32,32,32,32,32,32,32,32,32,32,36,114,111,119,115,46,112,117,115,104,40,95,116,104,105,115,46,114,101,110,100,101,114,84,98,111,100,121,82,111,119,40,105,116,101,109,44,32,114,111,119,73,110,100,101,120,41,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,32,47,47,32,69,109,112,116,121,32,105,116,101,109,115,32,47,32,101,109,112,116,121,32,102,105,108,116,101,114,101,100,32,114,111,119,32,115,108,111,116,32,40,111,110,108,121,32,115,104,111,119,115,32,105,102,32,96,105,116,101,109,115,46,108,101,110,103,116,104,32,60,32,49,96,41,92,110,92,110,32,32,32,32,32,32,32,32,36,114,111,119,115,46,112,117,115,104,40,114,101,110,100,101,114,69,109,112,116,121,32,63,32,114,101,110,100,101,114,69,109,112,116,121,40,41,32,58,32,104,40,41,41,59,32,47,47,32,83,116,97,116,105,99,32,98,111,116,116,111,109,32,114,111,119,32,115,108,111,116,32,40,104,105,100,100,101,110,32,105,110,32,118,105,115,105,98,108,121,32,115,116,97,99,107,101,100,32,109,111,100,101,92,110,32,32,32,32,32,32,32,32,47,47,32,97,115,32,119,101,32,99,97,110,39,116,32,99,111,110,116,114,111,108,32,96,100,97,116,97,45,108,97,98,101,108,96,32,97,116,116,114,41,92,110,92,110,32,32,32,32,32,32,32,32,36,114,111,119,115,46,112,117,115,104,40,114,101,110,100,101,114,66,111,116,116,111,109,82,111,119,32,63,32,114,101,110,100,101,114,66,111,116,116,111,109,82,111,119,40,41,32,58,32,104,40,41,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,78,111,116,101,58,32,116,104,101,115,101,32,101,118,101,110,116,115,32,119,105,108,108,32,111,110,108,121,32,101,109,105,116,32,105,102,32,97,32,108,105,115,116,101,110,101,114,32,105,115,32,114,101,103,105,115,116,101,114,101,100,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,97,117,120,99,108,105,99,107,58,32,116,104,105,115,46,111,110,84,98,111,100,121,82,111,119,77,105,100,100,108,101,77,111,117,115,101,82,111,119,67,108,105,99,107,101,100,44,92,110,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,92,110,32,32,32,32,32,32,32,32,47,47,32,32,32,80,101,114,104,97,112,115,32,119,101,32,100,111,32,119,97,110,116,32,116,111,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,112,114,101,118,101,110,116,32,116,104,101,92,110,32,32,32,32,32,32,32,32,47,47,32,32,32,100,101,102,97,117,108,116,32,99,111,110,116,101,120,116,32,109,101,110,117,32,102,114,111,109,32,115,104,111,119,105,110,103,32,105,102,32,116,104,101,114,101,32,105,115,32,97,92,110,32,32,32,32,32,32,32,32,47,47,32,32,32,96,114,111,119,45,99,111,110,116,101,120,116,109,101,110,117,96,32,108,105,115,116,101,110,101,114,32,114,101,103,105,115,116,101,114,101,100,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,109,101,110,117,58,32,116,104,105,115,46,111,110,84,98,111,100,121,82,111,119,67,111,110,116,101,120,116,109,101,110,117,44,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,102,111,108,108,111,119,105,110,103,32,101,118,101,110,116,40,115,41,32,105,115,32,110,111,116,32,99,111,110,115,105,100,101,114,101,100,32,65,49,49,89,32,102,114,105,101,110,100,108,121,92,110,32,32,32,32,32,32,32,32,100,98,108,99,108,105,99,107,58,32,116,104,105,115,46,111,110,84,98,111,100,121,82,111,119,68,98,108,67,108,105,99,107,101,100,32,47,47,32,72,111,118,101,114,32,101,118,101,110,116,115,32,40,96,109,111,117,115,101,101,110,116,101,114,96,47,96,109,111,117,115,101,108,101,97,118,101,96,41,32,97,114,101,32,104,97,110,100,108,101,100,32,98,121,32,96,116,98,111,100,121,45,114,111,119,96,32,109,105,120,105,110,92,110,92,110,32,32,32,32,32,32,125,59,32,47,47,32,65,100,100,32,105,110,32,99,108,105,99,107,47,107,101,121,100,111,119,110,32,108,105,115,116,101,110,101,114,115,32,105,102,32,110,101,101,100,101,100,92,110,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,82,111,119,67,108,105,99,107,72,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,115,46,99,108,105,99,107,32,61,32,116,104,105,115,46,111,110,84,66,111,100,121,82,111,119,67,108,105,99,107,101,100,59,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,115,46,107,101,121,100,111,119,110,32,61,32,116,104,105,115,46,111,110,84,98,111,100,121,82,111,119,75,101,121,100,111,119,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,65,115,115,101,109,98,108,101,32,114,111,119,115,32,105,110,116,111,32,116,104,101,32,116,98,111,100,121,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,116,98,111,100,121,32,61,32,104,40,95,116,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,84,98,111,100,121,44,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,98,111,100,121,67,108,97,115,115,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,95,116,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,116,104,105,115,46,36,112,114,111,112,115,41,44,92,110,32,32,32,32,32,32,32,32,47,47,32,66,84,98,111,100,121,32,116,114,97,110,115,102,101,114,115,32,97,108,108,32,110,97,116,105,118,101,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,32,116,111,32,116,104,101,32,114,111,111,116,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,79,110,108,121,32,115,101,116,32,116,104,101,32,104,97,110,100,108,101,114,115,32,105,102,32,116,104,101,32,116,97,98,108,101,32,105,115,32,110,111,116,32,98,117,115,121,92,110,32,32,32,32,32,32,32,32,111,110,58,32,104,97,110,100,108,101,114,115,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,39,116,98,111,100,121,39,92,110,32,32,32,32,32,32,125,44,32,36,114,111,119,115,41,59,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,97,115,115,101,109,98,108,101,100,32,116,98,111,100,121,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,36,116,98,111,100,121,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,98,111,100,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,102,111,111,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,102,111,111,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,102,111,111,116,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,102,111,111,116,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,102,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,102,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,102,111,111,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,102,111,111,116,67,108,111,110,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,65,110,121,32,66,111,111,116,115,116,114,97,112,32,116,104,101,109,101,32,118,97,114,105,97,110,116,32,40,111,114,32,99,117,115,116,111,109,41,92,110,32,32,47,47,32,70,97,108,108,115,32,98,97,99,107,32,116,111,32,96,104,101,97,100,82,111,119,86,97,114,105,97,110,116,96,92,110,32,32,102,111,111,116,82,111,119,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,39,100,97,114,107,39,44,32,39,108,105,103,104,116,39,44,32,111,114,32,96,110,117,108,108,96,32,40,111,114,32,99,117,115,116,111,109,41,92,110,32,32,102,111,111,116,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,102,111,111,116,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,116,102,111,111,116,84,114,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,92,110,125,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,116,102,111,111,116,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,114,101,110,100,101,114,84,70,111,111,116,67,117,115,116,111,109,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,84,70,111,111,116,67,117,115,116,111,109,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,32,61,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,83,76,79,84,95,78,65,77,69,95,67,85,83,84,79,77,95,70,79,79,84,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,95,116,102,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,84,102,111,111,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,102,111,111,116,67,108,97,115,115,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,111,116,86,97,114,105,97,110,116,58,32,116,104,105,115,46,102,111,111,116,86,97,114,105,97,110,116,32,124,124,32,116,104,105,115,46,104,101,97,100,86,97,114,105,97,110,116,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,98,118,45,116,102,111,111,116,45,99,117,115,116,111,109,39,92,110,32,32,32,32,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,83,76,79,84,95,78,65,77,69,95,67,85,83,84,79,77,95,70,79,79,84,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,46,115,108,105,99,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,46,115,108,105,99,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,108,117,109,110,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,46,108,101,110,103,116,104,92,110,32,32,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,110,100,101,114,84,102,111,111,116,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,84,102,111,111,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,97,115,115,105,110,103,32,116,114,117,101,32,116,111,32,114,101,110,100,101,114,84,104,101,97,100,32,119,105,108,108,32,109,97,107,101,32,105,116,32,114,101,110,100,101,114,32,97,32,116,102,111,111,116,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,102,111,111,116,67,108,111,110,101,32,63,32,116,104,105,115,46,114,101,110,100,101,114,84,104,101,97,100,40,116,114,117,101,41,32,58,32,116,104,105,115,46,114,101,110,100,101,114,84,70,111,111,116,67,117,115,116,111,109,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,102,111,111,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,104,101,97,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,104,101,97,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,104,101,97,100,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,104,101,97,100,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,111,111,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,110,111,111,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,111,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,104,101,97,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,104,101,97,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,104,101,97,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,102,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,102,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,102,111,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,105,108,116,101,114,95,101,118,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,105,108,116,101,114,45,101,118,101,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,102,105,108,116,101,114,45,101,118,101,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,101,120,116,95,115,101,108,101,99,116,105,111,110,95,97,99,116,105,118,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,101,120,116,45,115,101,108,101,99,116,105,111,110,45,97,99,116,105,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,116,101,120,116,45,115,101,108,101,99,116,105,111,110,45,97,99,116,105,118,101,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,97,114,114,41,32,123,32,114,101,116,117,114,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,124,124,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,92,34,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,32,123,32,105,102,32,40,33,111,41,32,114,101,116,117,114,110,59,32,105,102,32,40,116,121,112,101,111,102,32,111,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,118,97,114,32,110,32,61,32,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,111,41,46,115,108,105,99,101,40,56,44,32,45,49,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,79,98,106,101,99,116,92,34,32,38,38,32,111,46,99,111,110,115,116,114,117,99,116,111,114,41,32,110,32,61,32,111,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,59,32,105,102,32,40,110,32,61,61,61,32,92,34,77,97,112,92,34,32,124,124,32,110,32,61,61,61,32,92,34,83,101,116,92,34,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,111,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,65,114,103,117,109,101,110,116,115,92,34,32,124,124,32,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,105,116,101,114,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,38,38,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,105,116,101,114,41,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,105,116,101,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,123,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,44,32,108,101,110,41,32,123,32,105,102,32,40,108,101,110,32,61,61,32,110,117,108,108,32,124,124,32,108,101,110,32,62,32,97,114,114,46,108,101,110,103,116,104,41,32,108,101,110,32,61,32,97,114,114,46,108,101,110,103,116,104,59,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,97,114,114,50,32,61,32,110,101,119,32,65,114,114,97,121,40,108,101,110,41,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,32,97,114,114,50,91,105,93,32,61,32,97,114,114,91,105,93,59,32,125,32,114,101,116,117,114,110,32,97,114,114,50,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,92,110,118,97,114,32,103,101,116,72,101,97,100,83,108,111,116,78,97,109,101,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,72,101,97,100,83,108,111,116,78,97,109,101,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,92,34,104,101,97,100,40,92,34,46,99,111,110,99,97,116,40,118,97,108,117,101,32,124,124,32,39,39,44,32,92,34,41,92,34,41,59,92,110,125,59,92,110,92,110,118,97,114,32,103,101,116,70,111,111,116,83,108,111,116,78,97,109,101,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,70,111,111,116,83,108,111,116,78,97,109,101,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,92,34,102,111,111,116,40,92,34,46,99,111,110,99,97,116,40,118,97,108,117,101,32,124,124,32,39,39,44,32,92,34,41,92,34,41,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,47,47,32,65,110,121,32,66,111,111,116,115,116,114,97,112,32,116,104,101,109,101,32,118,97,114,105,97,110,116,32,40,111,114,32,99,117,115,116,111,109,41,92,110,32,32,104,101,97,100,82,111,119,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,39,108,105,103,104,116,39,44,32,39,100,97,114,107,39,32,111,114,32,96,110,117,108,108,96,32,40,111,114,32,99,117,115,116,111,109,41,92,110,32,32,104,101,97,100,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,104,101,97,100,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,116,104,101,97,100,84,114,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,92,110,125,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,116,104,101,97,100,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,102,105,101,108,100,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,102,105,101,108,100,67,108,97,115,115,101,115,40,102,105,101,108,100,41,32,123,92,110,32,32,32,32,32,32,47,47,32,72,101,97,100,101,114,32,102,105,101,108,100,32,40,60,116,104,62,41,32,99,108,97,115,115,101,115,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,102,105,101,108,100,46,99,108,97,115,115,32,63,32,102,105,101,108,100,46,99,108,97,115,115,32,58,32,39,39,44,32,102,105,101,108,100,46,116,104,67,108,97,115,115,32,63,32,102,105,101,108,100,46,116,104,67,108,97,115,115,32,58,32,39,39,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,101,97,100,67,108,105,99,107,101,100,58,32,102,117,110,99,116,105,111,110,32,104,101,97,100,67,108,105,99,107,101,100,40,101,118,101,110,116,44,32,102,105,101,108,100,44,32,105,115,70,111,111,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,115,116,111,112,73,102,66,117,115,121,32,38,38,32,116,104,105,115,46,115,116,111,112,73,102,66,117,115,121,40,101,118,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,97,98,108,101,32,105,115,32,98,117,115,121,32,40,118,105,97,32,112,114,111,118,105,100,101,114,41,32,116,104,101,110,32,100,111,110,39,116,32,112,114,111,112,97,103,97,116,101,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,102,105,108,116,101,114,95,101,118,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,102,105,108,116,101,114,69,118,101,110,116,41,40,101,118,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,108,105,99,107,101,100,32,111,110,32,97,32,110,111,110,45,100,105,115,97,98,108,101,100,32,99,111,110,116,114,111,108,32,115,111,32,105,103,110,111,114,101,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,116,101,120,116,95,115,101,108,101,99,116,105,111,110,95,97,99,116,105,118,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,116,101,120,116,83,101,108,101,99,116,105,111,110,65,99,116,105,118,101,41,40,116,104,105,115,46,36,101,108,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,85,115,101,114,32,105,115,32,115,101,108,101,99,116,105,110,103,32,116,101,120,116,44,32,115,111,32,105,103,110,111,114,101,92,110,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,74,83,68,79,77,32,100,111,101,115,110,39,116,32,115,117,112,112,111,114,116,32,103,101,116,83,101,108,101,99,116,105,111,110,40,41,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,69,65,68,95,67,76,73,67,75,69,68,44,32,102,105,101,108,100,46,107,101,121,44,32,102,105,101,108,100,44,32,101,118,101,110,116,44,32,105,115,70,111,111,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,110,100,101,114,84,104,101,97,100,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,84,104,101,97,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,115,70,111,111,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,118,97,114,32,102,105,101,108,100,115,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,83,111,114,116,97,98,108,101,32,61,32,116,104,105,115,46,105,115,83,111,114,116,97,98,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,83,101,108,101,99,116,97,98,108,101,32,61,32,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,104,101,97,100,86,97,114,105,97,110,116,32,61,32,116,104,105,115,46,104,101,97,100,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,102,111,111,116,86,97,114,105,97,110,116,32,61,32,116,104,105,115,46,102,111,111,116,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,104,101,97,100,82,111,119,86,97,114,105,97,110,116,32,61,32,116,104,105,115,46,104,101,97,100,82,111,119,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,102,111,111,116,82,111,119,86,97,114,105,97,110,116,32,61,32,116,104,105,115,46,102,111,111,116,82,111,119,86,97,114,105,97,110,116,59,92,110,32,32,32,32,32,32,118,97,114,32,104,32,61,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,32,47,47,32,73,110,32,97,108,119,97,121,115,32,115,116,97,99,107,101,100,32,109,111,100,101,44,32,119,101,32,100,111,110,39,116,32,98,111,116,104,101,114,32,114,101,110,100,101,114,105,110,103,32,116,104,101,32,104,101,97,100,47,102,111,111,116,92,110,32,32,32,32,32,32,47,47,32,79,114,32,105,102,32,110,111,32,102,105,101,108,100,32,104,101,97,100,105,110,103,115,32,40,101,109,112,116,121,32,116,97,98,108,101,41,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,116,97,99,107,101,100,65,108,119,97,121,115,32,124,124,32,102,105,101,108,100,115,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,104,97,115,72,101,97,100,67,108,105,99,107,76,105,115,116,101,110,101,114,32,61,32,105,115,83,111,114,116,97,98,108,101,32,124,124,32,116,104,105,115,46,104,97,115,76,105,115,116,101,110,101,114,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,69,65,68,95,67,76,73,67,75,69,68,41,59,32,47,47,32,82,101,102,101,114,101,110,99,101,32,116,111,32,96,115,101,108,101,99,116,65,108,108,82,111,119,115,96,32,97,110,100,32,96,99,108,101,97,114,83,101,108,101,99,116,101,100,40,41,96,44,32,105,102,32,116,97,98,108,101,32,105,115,32,115,101,108,101,99,116,97,98,108,101,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,65,108,108,82,111,119,115,32,61,32,105,115,83,101,108,101,99,116,97,98,108,101,32,63,32,116,104,105,115,46,115,101,108,101,99,116,65,108,108,82,111,119,115,32,58,32,95,117,116,105,108,115,95,110,111,111,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,110,111,111,112,59,92,110,32,32,32,32,32,32,118,97,114,32,99,108,101,97,114,83,101,108,101,99,116,101,100,32,61,32,105,115,83,101,108,101,99,116,97,98,108,101,32,63,32,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,32,58,32,95,117,116,105,108,115,95,110,111,111,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,110,111,111,112,59,32,47,47,32,72,101,108,112,101,114,32,102,117,110,99,116,105,111,110,32,116,111,32,103,101,110,101,114,97,116,101,32,97,32,102,105,101,108,100,32,60,116,104,62,32,99,101,108,108,92,110,92,110,32,32,32,32,32,32,118,97,114,32,109,97,107,101,67,101,108,108,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,67,101,108,108,40,102,105,101,108,100,44,32,99,111,108,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,97,98,101,108,32,61,32,102,105,101,108,100,46,108,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,72,116,109,108,32,61,32,102,105,101,108,100,46,108,97,98,101,108,72,116,109,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,102,105,101,108,100,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,105,99,107,121,67,111,108,117,109,110,32,61,32,102,105,101,108,100,46,115,116,105,99,107,121,67,111,108,117,109,110,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,32,61,32,102,105,101,108,100,46,107,101,121,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,105,97,76,97,98,101,108,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,102,105,101,108,100,46,108,97,98,101,108,46,116,114,105,109,40,41,32,38,38,32,33,102,105,101,108,100,46,104,101,97,100,101,114,84,105,116,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,32,99,97,115,101,32,102,105,101,108,100,39,115,32,108,97,98,101,108,32,97,110,100,32,116,105,116,108,101,32,97,114,101,32,101,109,112,116,121,47,98,108,97,110,107,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,110,101,101,100,32,116,111,32,97,100,100,32,97,32,104,105,110,116,32,97,98,111,117,116,32,119,104,97,116,32,116,104,101,32,99,111,108,117,109,110,32,105,115,32,97,98,111,117,116,32,102,111,114,32,110,111,110,45,115,105,103,104,116,101,100,32,117,115,101,114,115,92,110,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,97,114,105,97,76,97,98,101,108,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,115,116,97,114,116,67,97,115,101,41,40,102,105,101,108,100,46,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,110,32,61,32,123,125,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,72,101,97,100,67,108,105,99,107,76,105,115,116,101,110,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,111,110,46,99,108,105,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,104,101,97,100,67,108,105,99,107,101,100,40,101,118,101,110,116,44,32,102,105,101,108,100,44,32,105,115,70,111,111,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,111,110,46,107,101,121,100,111,119,110,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,67,79,68,69,95,69,78,84,69,82,32,124,124,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,67,79,68,69,95,83,80,65,67,69,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,104,101,97,100,67,108,105,99,107,101,100,40,101,118,101,110,116,44,32,102,105,101,108,100,44,32,105,115,70,111,111,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,111,114,116,65,116,116,114,115,32,61,32,105,115,83,111,114,116,97,98,108,101,32,63,32,95,116,104,105,115,46,115,111,114,116,84,104,101,97,100,84,104,65,116,116,114,115,40,107,101,121,44,32,102,105,101,108,100,44,32,105,115,70,111,111,116,41,32,58,32,123,125,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,111,114,116,67,108,97,115,115,32,61,32,105,115,83,111,114,116,97,98,108,101,32,63,32,95,116,104,105,115,46,115,111,114,116,84,104,101,97,100,84,104,67,108,97,115,115,101,115,40,107,101,121,44,32,102,105,101,108,100,44,32,105,115,70,111,111,116,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,111,114,116,76,97,98,101,108,32,61,32,105,115,83,111,114,116,97,98,108,101,32,63,32,95,116,104,105,115,46,115,111,114,116,84,104,101,97,100,84,104,76,97,98,101,108,40,107,101,121,44,32,102,105,101,108,100,44,32,105,115,70,111,111,116,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,95,116,104,105,115,46,102,105,101,108,100,67,108,97,115,115,101,115,40,102,105,101,108,100,41,44,32,115,111,114,116,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,105,99,107,121,67,111,108,117,109,110,58,32,115,116,105,99,107,121,67,111,108,117,109,110,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,102,105,101,108,100,46,116,104,83,116,121,108,101,32,124,124,32,123,125,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,97,100,100,32,97,32,96,116,97,98,105,110,100,101,120,96,32,111,102,32,96,48,96,32,105,102,32,116,104,101,114,101,32,105,115,32,97,32,104,101,97,100,45,99,108,105,99,107,101,100,32,108,105,115,116,101,110,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,97,110,100,32,116,104,101,32,99,117,114,114,101,110,116,32,102,105,101,108,100,32,105,115,32,115,111,114,116,97,98,108,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,104,97,115,72,101,97,100,67,108,105,99,107,76,105,115,116,101,110,101,114,32,38,38,32,102,105,101,108,100,46,115,111,114,116,97,98,108,101,32,63,32,39,48,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,98,98,114,58,32,102,105,101,108,100,46,104,101,97,100,101,114,65,98,98,114,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,102,105,101,108,100,46,104,101,97,100,101,114,84,105,116,108,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,111,108,105,110,100,101,120,39,58,32,99,111,108,73,110,100,101,120,32,43,32,49,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,97,114,105,97,76,97,98,101,108,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,95,116,104,105,115,46,103,101,116,84,104,86,97,108,117,101,115,40,110,117,108,108,44,32,107,101,121,44,32,102,105,101,108,100,46,116,104,65,116,116,114,44,32,105,115,70,111,111,116,32,63,32,39,102,111,111,116,39,32,58,32,39,104,101,97,100,39,44,32,123,125,41,41,44,32,115,111,114,116,65,116,116,114,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,111,110,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,107,101,121,92,110,32,32,32,32,32,32,32,32,125,59,32,47,47,32,72,97,110,100,108,101,32,101,100,103,101,32,99,97,115,101,32,119,104,101,114,101,32,105,110,45,100,111,99,117,109,101,110,116,32,116,101,109,112,108,97,116,101,115,32,97,114,101,32,117,115,101,100,32,119,105,116,104,32,110,101,119,92,110,32,32,32,32,32,32,32,32,47,47,32,96,118,45,115,108,111,116,58,110,97,109,101,96,32,115,121,110,116,97,120,32,119,104,101,114,101,32,116,104,101,32,98,114,111,119,115,101,114,32,108,111,119,101,114,45,99,97,115,101,115,32,116,104,101,32,118,45,115,108,111,116,39,115,92,110,32,32,32,32,32,32,32,32,47,47,32,110,97,109,101,32,40,97,116,116,114,105,98,117,116,101,115,32,98,101,99,111,109,101,32,108,111,119,101,114,32,99,97,115,101,100,32,119,104,101,110,32,112,97,114,115,101,100,32,98,121,32,116,104,101,32,98,114,111,119,115,101,114,41,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,104,97,118,101,32,114,101,112,108,97,99,101,100,32,116,104,101,32,115,113,117,97,114,101,32,98,114,97,99,107,101,116,32,115,121,110,116,97,120,32,119,105,116,104,32,114,111,117,110,100,32,98,114,97,99,107,101,116,115,92,110,32,32,32,32,32,32,32,32,47,47,32,116,111,32,112,114,101,118,101,110,116,32,99,111,110,102,117,115,105,111,110,32,119,105,116,104,32,100,121,110,97,109,105,99,32,115,108,111,116,32,110,97,109,101,115,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,108,111,116,78,97,109,101,115,32,61,32,91,103,101,116,72,101,97,100,83,108,111,116,78,97,109,101,40,107,101,121,41,44,32,103,101,116,72,101,97,100,83,108,111,116,78,97,109,101,40,107,101,121,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,44,32,103,101,116,72,101,97,100,83,108,111,116,78,97,109,101,40,41,93,59,32,47,47,32,70,111,111,116,101,114,32,119,105,108,108,32,102,97,108,108,98,97,99,107,32,116,111,32,104,101,97,100,101,114,32,115,108,111,116,32,110,97,109,101,115,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,111,111,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,108,111,116,78,97,109,101,115,32,61,32,91,103,101,116,70,111,111,116,83,108,111,116,78,97,109,101,40,107,101,121,41,44,32,103,101,116,70,111,111,116,83,108,111,116,78,97,109,101,40,107,101,121,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,44,32,103,101,116,70,111,111,116,83,108,111,116,78,97,109,101,40,41,93,46,99,111,110,99,97,116,40,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,115,108,111,116,78,97,109,101,115,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,58,32,108,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,108,117,109,110,58,32,107,101,121,44,92,110,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,102,105,101,108,100,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,70,111,111,116,58,32,105,115,70,111,111,116,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,105,110,32,114,111,119,32,115,101,108,101,99,116,32,109,101,116,104,111,100,115,92,110,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,65,108,108,82,111,119,115,58,32,115,101,108,101,99,116,65,108,108,82,111,119,115,44,92,110,32,32,32,32,32,32,32,32,32,32,99,108,101,97,114,83,101,108,101,99,116,101,100,58,32,99,108,101,97,114,83,101,108,101,99,116,101,100,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,95,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,115,108,111,116,78,97,109,101,115,44,32,115,99,111,112,101,41,32,124,124,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,108,97,98,101,108,72,116,109,108,44,32,108,97,98,101,108,41,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,36,115,114,76,97,98,101,108,32,61,32,115,111,114,116,76,97,98,101,108,32,63,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,115,114,45,111,110,108,121,39,92,110,32,32,32,32,32,32,32,32,125,44,32,92,34,32,40,92,34,46,99,111,110,99,97,116,40,115,111,114,116,76,97,98,101,108,44,32,92,34,41,92,34,41,41,32,58,32,110,117,108,108,59,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,104,101,97,100,101,114,32,99,101,108,108,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,95,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,66,84,104,44,32,100,97,116,97,44,32,91,36,99,111,110,116,101,110,116,44,32,36,115,114,76,97,98,101,108,93,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,105,100,101,110,116,105,116,121,41,41,59,92,110,32,32,32,32,32,32,125,59,32,47,47,32,71,101,110,101,114,97,116,101,32,116,104,101,32,97,114,114,97,121,32,111,102,32,60,116,104,62,32,99,101,108,108,115,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,99,101,108,108,115,32,61,32,102,105,101,108,100,115,46,109,97,112,40,109,97,107,101,67,101,108,108,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,105,100,101,110,116,105,116,121,41,59,32,47,47,32,71,101,110,101,114,97,116,101,32,116,104,101,32,114,111,119,40,115,41,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,116,114,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,70,111,111,116,41,32,123,92,110,32,32,32,32,32,32,32,32,36,116,114,115,46,112,117,115,104,40,104,40,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,66,84,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,102,111,111,116,84,114,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,102,111,111,116,82,111,119,86,97,114,105,97,110,116,41,32,63,32,104,101,97,100,82,111,119,86,97,114,105,97,110,116,32,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,111,116,82,111,119,86,97,114,105,97,110,116,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,36,99,101,108,108,115,41,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,108,117,109,110,115,58,32,102,105,101,108,100,115,46,108,101,110,103,116,104,44,92,110,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,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,105,110,32,114,111,119,32,115,101,108,101,99,116,32,109,101,116,104,111,100,115,92,110,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,65,108,108,82,111,119,115,58,32,115,101,108,101,99,116,65,108,108,82,111,119,115,44,92,110,32,32,32,32,32,32,32,32,32,32,99,108,101,97,114,83,101,108,101,99,116,101,100,58,32,99,108,101,97,114,83,101,108,101,99,116,101,100,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,36,116,114,115,46,112,117,115,104,40,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,83,76,79,84,95,78,65,77,69,95,84,72,69,65,68,95,84,79,80,44,32,115,99,111,112,101,41,32,124,124,32,104,40,41,41,59,92,110,32,32,32,32,32,32,32,32,36,116,114,115,46,112,117,115,104,40,104,40,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,66,84,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,104,101,97,100,84,114,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,104,101,97,100,82,111,119,86,97,114,105,97,110,116,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,36,99,101,108,108,115,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,105,115,70,111,111,116,32,63,32,95,116,102,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,66,84,102,111,111,116,32,58,32,95,116,104,101,97,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,66,84,104,101,97,100,44,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,40,105,115,70,111,111,116,32,63,32,116,104,105,115,46,116,102,111,111,116,67,108,97,115,115,32,58,32,116,104,105,115,46,116,104,101,97,100,67,108,97,115,115,41,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,105,115,70,111,111,116,32,63,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,111,111,116,86,97,114,105,97,110,116,58,32,102,111,111,116,86,97,114,105,97,110,116,32,124,124,32,104,101,97,100,86,97,114,105,97,110,116,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,32,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,101,97,100,86,97,114,105,97,110,116,58,32,104,101,97,100,86,97,114,105,97,110,116,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,105,115,70,111,111,116,32,63,32,39,98,118,45,116,102,111,111,116,39,32,58,32,39,98,118,45,116,104,101,97,100,39,92,110,32,32,32,32,32,32,125,44,32,36,116,114,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,104,101,97,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,111,112,45,114,111,119,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,111,112,45,114,111,119,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,111,112,82,111,119,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,111,112,82,111,119,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,125,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,116,111,112,82,111,119,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,114,101,110,100,101,114,84,111,112,82,111,119,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,84,111,112,82,111,119,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,105,101,108,100,115,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,99,107,101,100,32,61,32,116,104,105,115,46,115,116,97,99,107,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,84,114,67,108,97,115,115,32,61,32,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,84,114,65,116,116,114,32,61,32,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,59,92,110,32,32,32,32,32,32,118,97,114,32,104,32,61,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,32,47,47,32,65,100,100,32,115,116,97,116,105,99,32,84,111,112,32,82,111,119,32,115,108,111,116,32,40,104,105,100,100,101,110,32,105,110,32,118,105,115,105,98,108,121,32,115,116,97,99,107,101,100,32,109,111,100,101,32,97,115,32,119,101,32,99,97,110,39,116,32,99,111,110,116,114,111,108,32,116,104,101,32,100,97,116,97,45,108,97,98,101,108,41,92,110,32,32,32,32,32,32,47,47,32,73,102,32,105,110,32,42,97,108,119,97,121,115,42,32,115,116,97,99,107,101,100,32,109,111,100,101,44,32,119,101,32,100,111,110,39,116,32,98,111,116,104,101,114,32,114,101,110,100,101,114,105,110,103,32,116,104,101,32,114,111,119,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,83,76,79,84,95,78,65,77,69,95,84,79,80,95,82,79,87,41,32,124,124,32,115,116,97,99,107,101,100,32,61,61,61,32,116,114,117,101,32,124,124,32,115,116,97,99,107,101,100,32,61,61,61,32,39,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,84,114,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,98,111,100,121,84,114,67,108,97,115,115,41,32,63,32,116,98,111,100,121,84,114,67,108,97,115,115,40,110,117,108,108,44,32,39,114,111,119,45,116,111,112,39,41,32,58,32,116,98,111,100,121,84,114,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,98,111,100,121,84,114,65,116,116,114,41,32,63,32,116,98,111,100,121,84,114,65,116,116,114,40,110,117,108,108,44,32,39,114,111,119,45,116,111,112,39,41,32,58,32,116,98,111,100,121,84,114,65,116,116,114,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,98,45,116,111,112,45,114,111,119,39,92,110,32,32,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,83,76,79,84,95,78,65,77,69,95,84,79,80,95,82,79,87,44,32,123,92,110,32,32,32,32,32,32,32,32,99,111,108,117,109,110,115,58,32,102,105,101,108,100,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,102,105,101,108,100,115,58,32,102,105,101,108,100,115,92,110,32,32,32,32,32,32,125,41,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,111,112,45,114,111,119,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,110,111,114,109,97,108,105,122,101,45,102,105,101,108,100,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,110,111,114,109,97,108,105,122,101,45,102,105,101,108,100,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,111,114,109,97,108,105,122,101,70,105,101,108,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,111,114,109,97,108,105,122,101,70,105,101,108,100,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,99,111,110,115,116,97,110,116,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,32,47,47,32,80,114,105,118,97,116,101,32,102,117,110,99,116,105,111,110,32,116,111,32,109,97,115,115,97,103,101,32,102,105,101,108,100,32,101,110,116,114,121,32,105,110,116,111,32,99,111,109,109,111,110,32,111,98,106,101,99,116,32,102,111,114,109,97,116,92,110,92,110,118,97,114,32,112,114,111,99,101,115,115,70,105,101,108,100,32,61,32,102,117,110,99,116,105,111,110,32,112,114,111,99,101,115,115,70,105,101,108,100,40,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,102,105,101,108,100,32,61,32,110,117,108,108,59,92,110,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,83,116,114,105,110,103,41,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,47,47,32,76,97,98,101,108,32,115,104,111,114,116,99,117,116,92,110,32,32,32,32,102,105,101,108,100,32,61,32,123,92,110,32,32,32,32,32,32,107,101,121,58,32,107,101,121,44,92,110,32,32,32,32,32,32,108,97,98,101,108,58,32,118,97,108,117,101,92,110,32,32,32,32,125,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,47,47,32,70,111,114,109,97,116,116,101,114,32,115,104,111,114,116,99,117,116,92,110,32,32,32,32,102,105,101,108,100,32,61,32,123,92,110,32,32,32,32,32,32,107,101,121,58,32,107,101,121,44,92,110,32,32,32,32,32,32,102,111,114,109,97,116,116,101,114,58,32,118,97,108,117,101,92,110,32,32,32,32,125,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,79,98,106,101,99,116,41,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,102,105,101,108,100,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,108,111,110,101,41,40,118,97,108,117,101,41,59,92,110,32,32,32,32,102,105,101,108,100,46,107,101,121,32,61,32,102,105,101,108,100,46,107,101,121,32,124,124,32,107,101,121,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,118,97,108,117,101,32,33,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,47,47,32,70,97,108,108,98,97,99,107,32,116,111,32,106,117,115,116,32,107,101,121,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,102,105,101,108,100,32,61,32,123,92,110,32,32,32,32,32,32,107,101,121,58,32,107,101,121,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,102,105,101,108,100,59,92,110,125,59,32,47,47,32,87,101,32,110,111,114,109,97,108,105,122,101,32,102,105,101,108,100,115,32,105,110,116,111,32,97,110,32,97,114,114,97,121,32,111,102,32,111,98,106,101,99,116,115,92,110,47,47,32,91,32,123,32,107,101,121,58,46,46,46,44,32,108,97,98,101,108,58,46,46,46,44,32,46,46,46,125,44,32,123,46,46,46,125,44,32,46,46,46,44,32,123,46,46,125,93,92,110,92,110,92,110,118,97,114,32,110,111,114,109,97,108,105,122,101,70,105,101,108,100,115,32,61,32,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,70,105,101,108,100,115,40,111,114,105,103,70,105,101,108,100,115,44,32,105,116,101,109,115,41,32,123,92,110,32,32,118,97,114,32,102,105,101,108,100,115,32,61,32,91,93,59,92,110,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,65,114,114,97,121,41,40,111,114,105,103,70,105,101,108,100,115,41,41,32,123,92,110,32,32,32,32,47,47,32,78,111,114,109,97,108,105,122,101,32,97,114,114,97,121,32,70,111,114,109,92,110,32,32,32,32,111,114,105,103,70,105,101,108,100,115,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,101,110,116,105,116,121,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,102,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,83,116,114,105,110,103,41,40,102,41,41,32,123,92,110,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,102,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,116,97,114,116,67,97,115,101,41,40,102,41,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,79,98,106,101,99,116,41,40,102,41,32,38,38,32,102,46,107,101,121,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,83,116,114,105,110,103,41,40,102,46,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,70,117,108,108,32,111,98,106,101,99,116,32,100,101,102,105,110,105,116,105,111,110,46,32,87,101,32,117,115,101,32,97,115,115,105,103,110,32,115,111,32,116,104,97,116,32,119,101,32,100,111,110,39,116,32,109,117,116,97,116,101,32,116,104,101,32,111,114,105,103,105,110,97,108,92,110,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,108,111,110,101,41,40,102,41,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,79,98,106,101,99,116,41,40,102,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,107,101,121,115,41,40,102,41,46,108,101,110,103,116,104,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,104,111,114,116,99,117,116,32,111,98,106,101,99,116,32,40,105,46,101,46,32,123,32,39,102,111,111,95,98,97,114,39,58,32,39,84,104,105,115,32,105,115,32,70,111,111,32,66,97,114,39,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,107,101,121,115,41,40,102,41,91,48,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,105,101,108,100,32,61,32,112,114,111,99,101,115,115,70,105,101,108,100,40,107,101,121,44,32,102,91,107,101,121,93,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,105,101,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,102,105,101,108,100,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,32,47,47,32,73,102,32,110,111,32,102,105,101,108,100,32,112,114,111,118,105,100,101,100,44,32,116,97,107,101,32,97,32,115,97,109,112,108,101,32,102,114,111,109,32,102,105,114,115,116,32,114,101,99,111,114,100,32,40,105,102,32,101,120,105,116,115,41,92,110,92,110,92,110,32,32,105,102,32,40,102,105,101,108,100,115,46,108,101,110,103,116,104,32,61,61,61,32,48,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,65,114,114,97,121,41,40,105,116,101,109,115,41,32,38,38,32,105,116,101,109,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,118,97,114,32,115,97,109,112,108,101,32,61,32,105,116,101,109,115,91,48,93,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,107,101,121,115,41,40,115,97,109,112,108,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,73,71,78,79,82,69,68,95,70,73,69,76,68,95,75,69,89,83,91,107,93,41,32,123,92,110,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,107,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,116,97,114,116,67,97,115,101,41,40,107,41,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,32,47,47,32,69,110,115,117,114,101,32,119,101,32,104,97,118,101,32,97,32,117,110,105,113,117,101,32,97,114,114,97,121,32,111,102,32,102,105,101,108,100,115,32,97,110,100,32,116,104,97,116,32,116,104,101,121,32,104,97,118,101,32,83,116,114,105,110,103,32,108,97,98,101,108,115,92,110,92,110,92,110,32,32,118,97,114,32,109,101,109,111,32,61,32,123,125,59,92,110,32,32,114,101,116,117,114,110,32,102,105,101,108,100,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,102,41,32,123,92,110,32,32,32,32,105,102,32,40,33,109,101,109,111,91,102,46,107,101,121,93,41,32,123,92,110,32,32,32,32,32,32,109,101,109,111,91,102,46,107,101,121,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,102,46,108,97,98,101,108,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,83,116,114,105,110,103,41,40,102,46,108,97,98,101,108,41,32,63,32,102,46,108,97,98,101,108,32,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,116,97,114,116,67,97,115,101,41,40,102,46,107,101,121,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,110,111,114,109,97,108,105,122,101,45,102,105,101,108,100,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,115,97,110,105,116,105,122,101,45,114,111,119,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,115,97,110,105,116,105,122,101,45,114,111,119,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,97,110,105,116,105,122,101,82,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,97,110,105,116,105,122,101,82,111,119,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,99,111,110,115,116,97,110,116,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,82,101,116,117,114,110,32,97,32,99,111,112,121,32,111,102,32,97,32,114,111,119,32,97,102,116,101,114,32,97,108,108,32,114,101,115,101,114,118,101,100,32,102,105,101,108,100,115,32,104,97,118,101,32,98,101,101,110,32,102,105,108,116,101,114,101,100,32,111,117,116,92,110,92,110,118,97,114,32,115,97,110,105,116,105,122,101,82,111,119,32,61,32,102,117,110,99,116,105,111,110,32,115,97,110,105,116,105,122,101,82,111,119,40,114,111,119,44,32,105,103,110,111,114,101,70,105,101,108,100,115,44,32,105,110,99,108,117,100,101,70,105,101,108,100,115,41,32,123,92,110,32,32,118,97,114,32,102,105,101,108,100,115,79,98,106,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,51,32,38,38,32,97,114,103,117,109,101,110,116,115,91,51,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,51,93,32,58,32,123,125,59,92,110,32,32,47,47,32,87,101,32,102,105,114,115,116,32,110,101,101,100,32,116,111,32,102,111,114,109,97,116,32,116,104,101,32,114,111,119,32,98,97,115,101,100,32,111,110,32,116,104,101,32,102,105,101,108,100,32,99,111,110,102,105,103,117,114,97,116,105,111,110,115,92,110,32,32,47,47,32,84,104,105,115,32,101,110,115,117,114,101,115,32,116,104,97,116,32,119,101,32,97,100,100,32,102,111,114,109,97,116,116,101,100,32,118,97,108,117,101,115,32,102,111,114,32,107,101,121,115,32,116,104,97,116,32,109,97,121,32,110,111,116,92,110,32,32,47,47,32,101,120,105,115,116,32,105,110,32,116,104,101,32,114,111,119,32,105,116,115,101,108,102,92,110,32,32,118,97,114,32,102,111,114,109,97,116,116,101,100,82,111,119,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,107,101,121,115,41,40,102,105,101,108,100,115,79,98,106,41,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,117,108,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,102,105,101,108,100,32,61,32,102,105,101,108,100,115,79,98,106,91,107,101,121,93,59,92,110,32,32,32,32,118,97,114,32,102,105,108,116,101,114,66,121,70,111,114,109,97,116,116,101,100,32,61,32,102,105,101,108,100,46,102,105,108,116,101,114,66,121,70,111,114,109,97,116,116,101,100,59,92,110,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,102,105,108,116,101,114,66,121,70,111,114,109,97,116,116,101,100,41,32,63,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,102,105,108,116,101,114,66,121,70,111,114,109,97,116,116,101,100,32,58,32,102,105,108,116,101,114,66,121,70,111,114,109,97,116,116,101,100,32,63,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,102,105,101,108,100,46,102,111,114,109,97,116,116,101,114,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,102,111,114,109,97,116,116,101,114,41,41,32,123,92,110,32,32,32,32,32,32,114,101,115,117,108,116,91,107,101,121,93,32,61,32,102,111,114,109,97,116,116,101,114,40,114,111,119,91,107,101,121,93,44,32,107,101,121,44,32,114,111,119,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,108,111,110,101,41,40,114,111,119,41,41,59,32,47,47,32,68,101,116,101,114,109,105,110,101,32,116,104,101,32,97,108,108,111,119,101,100,32,107,101,121,115,58,92,110,32,32,47,47,32,32,32,45,32,73,103,110,111,114,101,32,115,112,101,99,105,97,108,32,102,105,101,108,100,115,32,116,104,97,116,32,115,116,97,114,116,32,119,105,116,104,32,96,95,96,92,110,32,32,47,47,32,32,32,45,32,73,103,110,111,114,101,32,102,105,101,108,100,115,32,105,110,32,116,104,101,32,96,105,103,110,111,114,101,70,105,101,108,100,115,96,32,97,114,114,97,121,92,110,32,32,47,47,32,32,32,45,32,73,110,99,108,117,100,101,32,111,110,108,121,32,102,105,101,108,100,115,32,105,110,32,116,104,101,32,96,105,110,99,108,117,100,101,70,105,101,108,100,115,96,32,97,114,114,97,121,92,110,92,110,32,32,118,97,114,32,97,108,108,111,119,101,100,75,101,121,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,107,101,121,115,41,40,102,111,114,109,97,116,116,101,100,82,111,119,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,33,95,99,111,110,115,116,97,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,73,71,78,79,82,69,68,95,70,73,69,76,68,95,75,69,89,83,91,107,101,121,93,32,38,38,32,33,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,65,114,114,97,121,41,40,105,103,110,111,114,101,70,105,101,108,100,115,41,32,38,38,32,105,103,110,111,114,101,70,105,101,108,100,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,105,103,110,111,114,101,70,105,101,108,100,115,44,32,107,101,121,41,41,32,38,38,32,33,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,65,114,114,97,121,41,40,105,110,99,108,117,100,101,70,105,101,108,100,115,41,32,38,38,32,105,110,99,108,117,100,101,70,105,101,108,100,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,105,110,99,108,117,100,101,70,105,101,108,100,115,44,32,107,101,121,41,41,59,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,99,107,41,40,102,111,114,109,97,116,116,101,100,82,111,119,44,32,97,108,108,111,119,101,100,75,101,121,115,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,115,97,110,105,116,105,122,101,45,114,111,119,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,115,116,114,105,110,103,105,102,121,45,114,101,99,111,114,100,45,118,97,108,117,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,115,116,114,105,110,103,105,102,121,45,114,101,99,111,114,100,45,118,97,108,117,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,114,105,110,103,105,102,121,82,101,99,111,114,100,86,97,108,117,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,114,105,110,103,105,102,121,82,101,99,111,114,100,86,97,108,117,101,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,105,102,121,95,111,98,106,101,99,116,95,118,97,108,117,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,105,102,121,45,111,98,106,101,99,116,45,118,97,108,117,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,105,102,121,45,111,98,106,101,99,116,45,118,97,108,117,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,97,110,105,116,105,122,101,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,97,110,105,116,105,122,101,45,114,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,115,97,110,105,116,105,122,101,45,114,111,119,46,106,115,92,34,41,59,92,110,92,110,92,110,32,47,47,32,83,116,114,105,110,103,105,102,105,101,115,32,116,104,101,32,118,97,108,117,101,115,32,111,102,32,97,32,114,101,99,111,114,100,44,32,105,103,110,111,114,105,110,103,32,97,110,121,32,115,112,101,99,105,97,108,32,116,111,112,32,108,101,118,101,108,32,102,105,101,108,100,32,107,101,121,115,92,110,47,47,32,84,79,68,79,58,32,65,100,100,32,111,112,116,105,111,110,32,116,111,32,115,116,114,105,110,103,105,102,121,32,96,115,99,111,112,101,100,83,108,111,116,96,32,105,116,101,109,115,92,110,92,110,118,97,114,32,115,116,114,105,110,103,105,102,121,82,101,99,111,114,100,86,97,108,117,101,115,32,61,32,102,117,110,99,116,105,111,110,32,115,116,114,105,110,103,105,102,121,82,101,99,111,114,100,86,97,108,117,101,115,40,114,111,119,44,32,105,103,110,111,114,101,70,105,101,108,100,115,44,32,105,110,99,108,117,100,101,70,105,101,108,100,115,44,32,102,105,101,108,100,115,79,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,79,98,106,101,99,116,41,40,114,111,119,41,32,63,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,105,102,121,95,111,98,106,101,99,116,95,118,97,108,117,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,116,114,105,110,103,105,102,121,79,98,106,101,99,116,86,97,108,117,101,115,41,40,40,48,44,95,115,97,110,105,116,105,122,101,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,97,110,105,116,105,122,101,82,111,119,41,40,114,111,119,44,32,105,103,110,111,114,101,70,105,101,108,100,115,44,32,105,110,99,108,117,100,101,70,105,101,108,100,115,44,32,102,105,101,108,100,115,79,98,106,41,41,32,58,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,39,39,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,115,116,114,105,110,103,105,102,121,45,114,101,99,111,114,100,45,118,97,108,117,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,116,101,120,116,45,115,101,108,101,99,116,105,111,110,45,97,99,116,105,118,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,116,101,120,116,45,115,101,108,101,99,116,105,111,110,45,97,99,116,105,118,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,101,120,116,83,101,108,101,99,116,105,111,110,65,99,116,105,118,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,101,120,116,83,101,108,101,99,116,105,111,110,65,99,116,105,118,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,32,47,47,32,72,101,108,112,101,114,32,116,111,32,100,101,116,101,114,109,105,110,101,32,105,102,32,97,32,116,104,101,114,101,32,105,115,32,97,110,32,97,99,116,105,118,101,32,116,101,120,116,32,115,101,108,101,99,116,105,111,110,32,111,110,32,116,104,101,32,100,111,99,117,109,101,110,116,32,112,97,103,101,92,110,47,47,32,85,115,101,100,32,116,111,32,102,105,108,116,101,114,32,111,117,116,32,99,108,105,99,107,32,101,118,101,110,116,115,32,99,97,117,115,101,100,32,98,121,32,116,104,101,32,109,111,117,115,101,32,117,112,32,97,116,32,101,110,100,32,111,102,32,115,101,108,101,99,116,105,111,110,92,110,47,47,92,110,47,47,32,65,99,99,101,112,116,115,32,97,110,32,101,108,101,109,101,110,116,32,97,115,32,111,110,108,121,32,97,114,103,117,109,101,110,116,32,116,111,32,116,101,115,116,32,116,111,32,115,101,101,32,105,102,32,115,101,108,101,99,116,105,111,110,32,111,118,101,114,108,97,112,115,32,111,114,32,105,115,92,110,47,47,32,99,111,110,116,97,105,110,101,100,32,119,105,116,104,105,110,32,116,104,101,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,116,101,120,116,83,101,108,101,99,116,105,111,110,65,99,116,105,118,101,32,61,32,102,117,110,99,116,105,111,110,32,116,101,120,116,83,101,108,101,99,116,105,111,110,65,99,116,105,118,101,40,41,32,123,92,110,32,32,118,97,114,32,101,108,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,100,111,99,117,109,101,110,116,59,92,110,32,32,118,97,114,32,115,101,108,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,83,101,108,41,40,41,59,92,110,32,32,114,101,116,117,114,110,32,115,101,108,32,38,38,32,115,101,108,46,116,111,83,116,114,105,110,103,40,41,46,116,114,105,109,40,41,32,33,61,61,32,39,39,32,38,38,32,115,101,108,46,99,111,110,116,97,105,110,115,78,111,100,101,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,69,108,101,109,101,110,116,41,40,101,108,41,32,63,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,115,101,108,46,99,111,110,116,97,105,110,115,78,111,100,101,40,101,108,44,32,116,114,117,101,41,32,58,32,102,97,108,115,101,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,116,101,120,116,45,115,101,108,101,99,116,105,111,110,45,97,99,116,105,118,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,97,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,84,97,98,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,97,98,108,101,76,105,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,97,98,108,101,95,108,105,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,84,97,98,108,101,76,105,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,97,98,108,101,83,105,109,112,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,97,98,108,101,95,115,105,109,112,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,84,97,98,108,101,83,105,109,112,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,98,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,84,98,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,66,84,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,102,111,111,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,102,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,84,102,111,111,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,84,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,104,101,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,104,101,97,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,84,104,101,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,84,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,97,98,108,101,76,105,116,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,84,97,98,108,101,76,105,116,101,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,97,98,108,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,84,97,98,108,101,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,97,98,108,101,83,105,109,112,108,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,84,97,98,108,101,83,105,109,112,108,101,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,97,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,97,98,108,101,95,108,105,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,97,98,108,101,45,108,105,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,45,108,105,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,97,98,108,101,95,115,105,109,112,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,97,98,108,101,45,115,105,109,112,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,45,115,105,109,112,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,98,111,100,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,98,111,100,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,104,101,97,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,104,101,97,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,104,101,97,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,102,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,102,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,102,111,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,84,97,98,108,101,76,105,116,101,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,84,97,98,108,101,76,105,116,101,58,32,95,116,97,98,108,101,95,108,105,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,84,97,98,108,101,76,105,116,101,92,110,32,32,125,92,110,125,41,59,92,110,118,97,114,32,84,97,98,108,101,83,105,109,112,108,101,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,84,97,98,108,101,83,105,109,112,108,101,58,32,95,116,97,98,108,101,95,115,105,109,112,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,84,97,98,108,101,83,105,109,112,108,101,44,92,110,32,32,32,32,66,84,98,111,100,121,58,32,95,116,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,84,98,111,100,121,44,92,110,32,32,32,32,66,84,104,101,97,100,58,32,95,116,104,101,97,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,84,104,101,97,100,44,92,110,32,32,32,32,66,84,102,111,111,116,58,32,95,116,102,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,84,102,111,111,116,44,92,110,32,32,32,32,66,84,114,58,32,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,84,114,44,92,110,32,32,32,32,66,84,100,58,32,95,116,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,66,84,100,44,92,110,32,32,32,32,66,84,104,58,32,95,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,84,104,92,110,32,32,125,92,110,125,41,59,92,110,118,97,114,32,84,97,98,108,101,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,84,97,98,108,101,58,32,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,84,97,98,108,101,92,110,32,32,125,44,92,110,32,32,112,108,117,103,105,110,115,58,32,123,92,110,32,32,32,32,84,97,98,108,101,76,105,116,101,80,108,117,103,105,110,58,32,84,97,98,108,101,76,105,116,101,80,108,117,103,105,110,44,92,110,32,32,32,32,84,97,98,108,101,83,105,109,112,108,101,80,108,117,103,105,110,58,32,84,97,98,108,101,83,105,109,112,108,101,80,108,117,103,105,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,45,108,105,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,45,108,105,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,97,98,108,101,76,105,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,84,97,98,108,101,76,105,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,104,97,115,95,108,105,115,116,101,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,104,97,115,45,108,105,115,116,101,110,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,104,97,115,45,108,105,115,116,101,110,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,99,97,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,99,97,112,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,99,97,112,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,99,111,108,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,99,111,108,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,99,111,108,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,105,116,101,109,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,105,116,101,109,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,105,116,101,109,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,116,97,99,107,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,116,97,99,107,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,116,97,99,107,101,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,97,98,108,101,95,114,101,110,100,101,114,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,97,98,108,101,45,114,101,110,100,101,114,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,97,98,108,101,45,114,101,110,100,101,114,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,98,111,100,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,98,111,100,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,102,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,102,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,102,111,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,104,101,97,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,104,101,97,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,104,101,97,100,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,99,97,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,99,111,108,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,105,116,101,109,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,116,97,99,107,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,97,98,108,101,95,114,101,110,100,101,114,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,102,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,104,101,97,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,112,114,111,112,115,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,78,65,77,69,95,84,65,66,76,69,95,76,73,84,69,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,84,97,98,108,101,76,105,116,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,78,65,77,69,95,84,65,66,76,69,95,76,73,84,69,44,92,110,32,32,47,47,32,79,114,100,101,114,32,111,102,32,109,105,120,105,110,115,32,105,115,32,105,109,112,111,114,116,97,110,116,33,92,110,32,32,47,47,32,84,104,101,121,32,97,114,101,32,109,101,114,103,101,100,32,102,114,111,109,32,102,105,114,115,116,32,116,111,32,108,97,115,116,44,32,102,111,108,108,111,119,101,100,32,98,121,32,116,104,105,115,32,99,111,109,112,111,110,101,110,116,92,110,32,32,109,105,120,105,110,115,58,32,91,47,47,32,71,101,110,101,114,97,108,32,109,105,120,105,110,115,92,110,32,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,104,97,115,95,108,105,115,116,101,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,104,97,115,76,105,115,116,101,110,101,114,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,44,32,47,47,32,82,101,113,117,105,114,101,100,32,116,97,98,108,101,32,109,105,120,105,110,115,92,110,32,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,105,116,101,109,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,116,101,109,115,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,97,98,108,101,95,114,101,110,100,101,114,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,116,97,98,108,101,82,101,110,100,101,114,101,114,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,116,97,99,107,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,116,97,99,107,101,100,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,104,101,97,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,116,104,101,97,100,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,102,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,116,102,111,111,116,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,116,98,111,100,121,77,105,120,105,110,44,32,47,47,32,84,97,98,108,101,32,102,101,97,116,117,114,101,115,32,109,105,120,105,110,115,92,110,32,32,47,47,32,84,104,101,115,101,32,97,114,101,32,112,114,101,116,116,121,32,108,105,103,104,116,119,101,105,103,104,116,44,32,97,110,100,32,97,114,101,32,117,115,101,102,117,108,32,102,111,114,32,108,105,103,104,116,119,101,105,103,104,116,32,116,97,98,108,101,115,92,110,32,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,99,97,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,112,116,105,111,110,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,99,111,108,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,111,108,103,114,111,117,112,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,32,47,47,32,82,101,110,100,101,114,32,102,117,110,99,116,105,111,110,32,105,115,32,112,114,111,118,105,100,101,100,32,98,121,32,96,116,97,98,108,101,82,101,110,100,101,114,101,114,77,105,120,105,110,96,92,110,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,45,108,105,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,45,115,105,109,112,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,45,115,105,109,112,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,97,98,108,101,83,105,109,112,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,84,97,98,108,101,83,105,109,112,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,104,97,115,95,108,105,115,116,101,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,104,97,115,45,108,105,115,116,101,110,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,104,97,115,45,108,105,115,116,101,110,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,116,97,99,107,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,116,97,99,107,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,116,97,99,107,101,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,97,98,108,101,95,114,101,110,100,101,114,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,97,98,108,101,45,114,101,110,100,101,114,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,97,98,108,101,45,114,101,110,100,101,114,101,114,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,116,97,99,107,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,97,98,108,101,95,114,101,110,100,101,114,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,84,65,66,76,69,95,83,73,77,80,76,69,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,84,97,98,108,101,83,105,109,112,108,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,84,65,66,76,69,95,83,73,77,80,76,69,44,92,110,32,32,47,47,32,79,114,100,101,114,32,111,102,32,109,105,120,105,110,115,32,105,115,32,105,109,112,111,114,116,97,110,116,33,92,110,32,32,47,47,32,84,104,101,121,32,97,114,101,32,109,101,114,103,101,100,32,102,114,111,109,32,102,105,114,115,116,32,116,111,32,108,97,115,116,44,32,102,111,108,108,111,119,101,100,32,98,121,32,116,104,105,115,32,99,111,109,112,111,110,101,110,116,92,110,32,32,109,105,120,105,110,115,58,32,91,47,47,32,71,101,110,101,114,97,108,32,109,105,120,105,110,115,92,110,32,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,104,97,115,95,108,105,115,116,101,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,104,97,115,76,105,115,116,101,110,101,114,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,44,32,47,47,32,82,101,113,117,105,114,101,100,32,116,97,98,108,101,32,109,105,120,105,110,115,92,110,32,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,97,98,108,101,95,114,101,110,100,101,114,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,116,97,98,108,101,82,101,110,100,101,114,101,114,77,105,120,105,110,44,32,47,47,32,84,97,98,108,101,32,102,101,97,116,117,114,101,115,32,109,105,120,105,110,115,92,110,32,32,47,47,32,83,116,97,99,107,101,100,32,114,101,113,117,105,114,101,115,32,101,120,116,114,97,32,104,97,110,100,108,105,110,103,32,98,121,32,117,115,101,114,115,32,118,105,97,92,110,32,32,47,47,32,116,104,101,32,116,97,98,108,101,32,99,101,108,108,32,96,115,116,97,99,107,101,100,45,104,101,97,100,105,110,103,96,32,112,114,111,112,92,110,32,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,116,97,99,107,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,116,97,99,107,101,100,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,105,115,84,97,98,108,101,83,105,109,112,108,101,58,32,102,117,110,99,116,105,111,110,32,105,115,84,97,98,108,101,83,105,109,112,108,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,32,47,47,32,82,101,110,100,101,114,32,102,117,110,99,116,105,111,110,32,105,115,32,112,114,111,118,105,100,101,100,32,98,121,32,96,116,97,98,108,101,82,101,110,100,101,114,101,114,77,105,120,105,110,96,92,110,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,45,115,105,109,112,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,97,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,84,97,98,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,104,97,115,95,108,105,115,116,101,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,104,97,115,45,108,105,115,116,101,110,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,104,97,115,45,108,105,115,116,101,110,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,98,111,116,116,111,109,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,98,111,116,116,111,109,45,114,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,98,111,116,116,111,109,45,114,111,119,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,98,117,115,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,98,117,115,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,98,117,115,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,99,97,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,99,97,112,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,99,97,112,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,99,111,108,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,99,111,108,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,99,111,108,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,101,109,112,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,101,109,112,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,101,109,112,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,102,105,108,116,101,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,102,105,108,116,101,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,102,105,108,116,101,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,105,116,101,109,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,105,116,101,109,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,105,116,101,109,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,112,97,103,105,110,97,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,112,97,103,105,110,97,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,112,114,111,118,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,112,114,111,118,105,100,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,112,114,111,118,105,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,101,108,101,99,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,101,108,101,99,116,97,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,101,108,101,99,116,97,98,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,111,114,116,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,111,114,116,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,111,114,116,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,116,97,99,107,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,116,97,99,107,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,115,116,97,99,107,101,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,97,98,108,101,95,114,101,110,100,101,114,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,97,98,108,101,45,114,101,110,100,101,114,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,97,98,108,101,45,114,101,110,100,101,114,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,98,111,100,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,98,111,100,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,102,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,102,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,102,111,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,104,101,97,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,104,101,97,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,104,101,97,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,111,112,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,111,112,45,114,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,104,101,108,112,101,114,115,47,109,105,120,105,110,45,116,111,112,45,114,111,119,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,98,111,116,116,111,109,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,98,117,115,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,99,97,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,99,111,108,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,101,109,112,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,102,105,108,116,101,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,105,116,101,109,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,112,114,111,118,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,101,108,101,99,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,111,114,116,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,116,97,99,107,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,97,98,108,101,95,114,101,110,100,101,114,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,102,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,104,101,97,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,112,114,111,112,115,41,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,111,112,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,112,114,111,112,115,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,78,65,77,69,95,84,65,66,76,69,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,84,97,98,108,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,78,65,77,69,95,84,65,66,76,69,44,92,110,32,32,47,47,32,79,114,100,101,114,32,111,102,32,109,105,120,105,110,115,32,105,115,32,105,109,112,111,114,116,97,110,116,33,92,110,32,32,47,47,32,84,104,101,121,32,97,114,101,32,109,101,114,103,101,100,32,102,114,111,109,32,102,105,114,115,116,32,116,111,32,108,97,115,116,44,32,102,111,108,108,111,119,101,100,32,98,121,32,116,104,105,115,32,99,111,109,112,111,110,101,110,116,92,110,32,32,109,105,120,105,110,115,58,32,91,47,47,32,71,101,110,101,114,97,108,32,109,105,120,105,110,115,92,110,32,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,104,97,115,95,108,105,115,116,101,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,104,97,115,76,105,115,116,101,110,101,114,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,44,32,47,47,32,82,101,113,117,105,114,101,100,32,116,97,98,108,101,32,109,105,120,105,110,115,92,110,32,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,105,116,101,109,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,105,116,101,109,115,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,97,98,108,101,95,114,101,110,100,101,114,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,116,97,98,108,101,82,101,110,100,101,114,101,114,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,116,97,99,107,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,115,116,97,99,107,101,100,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,104,101,97,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,116,104,101,97,100,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,102,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,116,102,111,111,116,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,98,111,100,121,77,105,120,105,110,44,32,47,47,32,84,97,98,108,101,32,102,101,97,116,117,114,101,115,32,109,105,120,105,110,115,92,110,32,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,116,97,99,107,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,115,116,97,99,107,101,100,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,102,105,108,116,101,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,102,105,108,116,101,114,105,110,103,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,111,114,116,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,115,111,114,116,105,110,103,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,112,97,103,105,110,97,116,105,111,110,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,99,97,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,99,97,112,116,105,111,110,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,99,111,108,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,99,111,108,103,114,111,117,112,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,115,101,108,101,99,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,115,101,108,101,99,116,97,98,108,101,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,101,109,112,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,101,109,112,116,121,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,116,111,112,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,116,111,112,82,111,119,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,98,111,116,116,111,109,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,98,111,116,116,111,109,82,111,119,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,98,117,115,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,98,117,115,121,77,105,120,105,110,44,32,95,104,101,108,112,101,114,115,95,109,105,120,105,110,95,112,114,111,118,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,112,114,111,118,105,100,101,114,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,32,47,47,32,82,101,110,100,101,114,32,102,117,110,99,116,105,111,110,32,105,115,32,112,114,111,118,105,100,101,100,32,98,121,32,96,116,97,98,108,101,82,101,110,100,101,114,101,114,77,105,120,105,110,96,92,110,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,98,111,100,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,98,111,100,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,98,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,84,98,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,116,98,111,100,121,84,114,97,110,115,105,116,105,111,110,72,97,110,100,108,101,114,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,41,44,92,110,32,32,116,98,111,100,121,84,114,97,110,115,105,116,105,111,110,80,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,84,66,79,68,89,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,84,79,68,79,58,92,110,47,47,32,32,32,73,110,32,66,111,111,116,115,116,114,97,112,32,118,53,44,32,119,101,32,119,111,110,39,116,32,110,101,101,100,32,92,34,115,110,105,102,102,105,110,103,92,34,32,97,115,32,116,97,98,108,101,32,101,108,101,109,101,110,116,32,118,97,114,105,97,110,116,115,32,112,114,111,112,101,114,108,121,32,105,110,104,101,114,105,116,92,110,47,47,32,32,32,116,111,32,116,104,101,32,99,104,105,108,100,32,101,108,101,109,101,110,116,115,44,32,115,111,32,116,104,105,115,32,99,97,110,32,98,101,32,99,111,110,118,101,114,116,101,100,32,116,111,32,97,32,102,117,110,99,116,105,111,110,97,108,32,99,111,109,112,111,110,101,110,116,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,84,98,111,100,121,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,84,66,79,68,89,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,108,105,115,116,101,110,101,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,118,105,100,101,58,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,58,32,116,104,105,115,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,105,110,106,101,99,116,58,32,123,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,98,118,84,97,98,108,101,58,32,123,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,115,84,98,111,100,121,58,32,102,117,110,99,116,105,111,110,32,105,115,84,98,111,100,121,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,115,68,97,114,107,58,32,102,117,110,99,116,105,111,110,32,105,115,68,97,114,107,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,46,100,97,114,107,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,115,83,116,97,99,107,101,100,58,32,102,117,110,99,116,105,111,110,32,105,115,83,116,97,99,107,101,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,46,105,115,83,116,97,99,107,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,115,82,101,115,112,111,110,115,105,118,101,58,32,102,117,110,99,116,105,111,110,32,105,115,82,101,115,112,111,110,115,105,118,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,46,105,115,82,101,115,112,111,110,115,105,118,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,47,47,32,83,116,105,99,107,121,32,104,101,97,100,101,114,115,32,97,114,101,32,111,110,108,121,32,115,117,112,112,111,114,116,101,100,32,105,110,32,116,104,101,97,100,92,110,32,32,32,32,105,115,83,116,105,99,107,121,72,101,97,100,101,114,58,32,102,117,110,99,116,105,111,110,32,105,115,83,116,105,99,107,121,72,101,97,100,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,47,47,32,78,101,101,100,101,100,32,116,111,32,104,97,110,100,108,101,32,104,101,97,100,101,114,32,98,97,99,107,103,114,111,117,110,100,32,99,108,97,115,115,101,115,44,32,100,117,101,32,116,111,32,108,97,99,107,32,111,102,92,110,32,32,32,32,47,47,32,98,97,99,107,103,114,111,117,110,100,32,99,111,108,111,114,32,105,110,104,101,114,105,116,97,110,99,101,32,119,105,116,104,32,66,111,111,116,115,116,114,97,112,32,118,52,32,116,97,98,108,101,32,67,83,83,92,110,32,32,32,32,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,58,32,102,117,110,99,116,105,111,110,32,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,105,115,83,116,97,99,107,101,100,32,38,38,32,116,104,105,115,46,98,118,84,97,98,108,101,46,115,116,105,99,107,121,72,101,97,100,101,114,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,116,97,98,108,101,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,116,97,98,108,101,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,46,116,97,98,108,101,86,97,114,105,97,110,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,84,114,97,110,115,105,116,105,111,110,71,114,111,117,112,58,32,102,117,110,99,116,105,111,110,32,105,115,84,114,97,110,115,105,116,105,111,110,71,114,111,117,112,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,98,111,100,121,84,114,97,110,115,105,116,105,111,110,80,114,111,112,115,32,124,124,32,116,104,105,115,46,116,98,111,100,121,84,114,97,110,115,105,116,105,111,110,72,97,110,100,108,101,114,115,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,98,111,100,121,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,116,98,111,100,121,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,114,111,119,103,114,111,117,112,39,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,98,118,65,116,116,114,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,98,111,100,121,80,114,111,112,115,58,32,102,117,110,99,116,105,111,110,32,116,98,111,100,121,80,114,111,112,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,98,111,100,121,84,114,97,110,115,105,116,105,111,110,80,114,111,112,115,32,61,32,116,104,105,115,46,116,98,111,100,121,84,114,97,110,115,105,116,105,111,110,80,114,111,112,115,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,98,111,100,121,84,114,97,110,115,105,116,105,111,110,80,114,111,112,115,32,63,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,98,111,100,121,84,114,97,110,115,105,116,105,111,110,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,116,97,103,58,32,39,116,98,111,100,121,39,92,110,32,32,32,32,32,32,125,41,32,58,32,123,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,116,104,105,115,46,116,98,111,100,121,80,114,111,112,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,116,98,111,100,121,65,116,116,114,115,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,71,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,117,115,101,32,110,97,116,105,118,101,32,108,105,115,116,101,110,101,114,115,32,105,102,32,97,32,116,114,97,110,115,105,116,105,111,110,32,103,114,111,117,112,32,102,111,114,32,97,110,121,32,100,101,108,101,103,97,116,101,100,32,101,118,101,110,116,115,92,110,32,32,32,32,32,32,100,97,116,97,46,111,110,32,61,32,116,104,105,115,46,116,98,111,100,121,84,114,97,110,115,105,116,105,111,110,72,97,110,100,108,101,114,115,32,124,124,32,123,125,59,92,110,32,32,32,32,32,32,100,97,116,97,46,110,97,116,105,118,101,79,110,32,61,32,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,32,119,101,32,112,108,97,99,101,32,97,110,121,32,108,105,115,116,101,110,101,114,115,32,111,110,32,116,104,101,32,116,98,111,100,121,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,32,100,97,116,97,46,111,110,32,61,32,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,71,114,111,117,112,32,63,32,39,116,114,97,110,115,105,116,105,111,110,45,103,114,111,117,112,39,32,58,32,39,116,98,111,100,121,39,44,32,100,97,116,97,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,98,111,100,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,84,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,80,97,114,115,101,32,97,32,114,111,119,115,112,97,110,32,111,114,32,99,111,108,115,112,97,110,32,105,110,116,111,32,97,32,100,105,103,105,116,32,40,111,114,32,96,110,117,108,108,96,32,105,102,32,60,32,96,49,96,32,41,92,110,92,110,118,97,114,32,112,97,114,115,101,83,112,97,110,32,61,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,83,112,97,110,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,111,73,110,116,101,103,101,114,41,40,118,97,108,117,101,44,32,48,41,59,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,62,32,48,32,63,32,118,97,108,117,101,32,58,32,110,117,108,108,59,92,110,125,59,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,92,110,118,97,114,32,115,112,97,110,86,97,108,105,100,97,116,111,114,32,61,32,102,117,110,99,116,105,111,110,32,115,112,97,110,86,97,108,105,100,97,116,111,114,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,118,97,108,117,101,41,32,124,124,32,112,97,114,115,101,83,112,97,110,40,118,97,108,117,101,41,32,62,32,48,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,99,111,108,115,112,97,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,110,117,108,108,44,32,115,112,97,110,86,97,108,105,100,97,116,111,114,41,44,92,110,32,32,114,111,119,115,112,97,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,110,117,108,108,44,32,115,112,97,110,86,97,108,105,100,97,116,111,114,41,44,92,110,32,32,115,116,97,99,107,101,100,72,101,97,100,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,115,116,105,99,107,121,67,111,108,117,109,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,84,65,66,76,69,95,67,69,76,76,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,84,79,68,79,58,92,110,47,47,32,32,32,73,110,32,66,111,111,116,115,116,114,97,112,32,118,53,44,32,119,101,32,119,111,110,39,116,32,110,101,101,100,32,92,34,115,110,105,102,102,105,110,103,92,34,32,97,115,32,116,97,98,108,101,32,101,108,101,109,101,110,116,32,118,97,114,105,97,110,116,115,32,112,114,111,112,101,114,108,121,32,105,110,104,101,114,105,116,92,110,47,47,32,32,32,116,111,32,116,104,101,32,99,104,105,108,100,32,101,108,101,109,101,110,116,115,44,32,115,111,32,116,104,105,115,32,99,97,110,32,98,101,32,99,111,110,118,101,114,116,101,100,32,116,111,32,97,32,102,117,110,99,116,105,111,110,97,108,32,99,111,109,112,111,110,101,110,116,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,84,100,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,84,65,66,76,69,95,67,69,76,76,44,92,110,32,32,47,47,32,77,105,120,105,110,32,111,114,100,101,114,32,105,115,32,105,109,112,111,114,116,97,110,116,33,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,108,105,115,116,101,110,101,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,105,110,106,101,99,116,58,32,123,92,110,32,32,32,32,98,118,84,97,98,108,101,84,114,58,32,123,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,47,47,32,79,118,101,114,114,105,100,100,101,110,32,98,121,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,116,97,103,58,32,102,117,110,99,116,105,111,110,32,116,97,103,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,116,100,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,110,84,98,111,100,121,58,32,102,117,110,99,116,105,111,110,32,105,110,84,98,111,100,121,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,84,114,46,105,110,84,98,111,100,121,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,110,84,104,101,97,100,58,32,102,117,110,99,116,105,111,110,32,105,110,84,104,101,97,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,84,114,46,105,110,84,104,101,97,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,110,84,102,111,111,116,58,32,102,117,110,99,116,105,111,110,32,105,110,84,102,111,111,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,84,114,46,105,110,84,102,111,111,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,68,97,114,107,58,32,102,117,110,99,116,105,111,110,32,105,115,68,97,114,107,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,84,114,46,105,115,68,97,114,107,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,83,116,97,99,107,101,100,58,32,102,117,110,99,116,105,111,110,32,105,115,83,116,97,99,107,101,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,84,114,46,105,115,83,116,97,99,107,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,115,117,112,112,111,114,116,32,115,116,97,99,107,101,100,45,104,101,97,100,105,110,103,32,105,110,32,116,98,111,100,121,32,105,110,32,115,116,97,99,107,101,100,32,109,111,100,101,92,110,32,32,32,32,105,115,83,116,97,99,107,101,100,67,101,108,108,58,32,102,117,110,99,116,105,111,110,32,105,115,83,116,97,99,107,101,100,67,101,108,108,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,84,98,111,100,121,32,38,38,32,116,104,105,115,46,105,115,83,116,97,99,107,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,82,101,115,112,111,110,115,105,118,101,58,32,102,117,110,99,116,105,111,110,32,105,115,82,101,115,112,111,110,115,105,118,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,84,114,46,105,115,82,101,115,112,111,110,115,105,118,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,78,101,101,100,101,100,32,116,111,32,104,97,110,100,108,101,32,104,101,97,100,101,114,32,98,97,99,107,103,114,111,117,110,100,32,99,108,97,115,115,101,115,44,32,100,117,101,32,116,111,32,108,97,99,107,32,111,102,92,110,32,32,32,32,47,47,32,98,97,99,107,103,114,111,117,110,100,32,99,111,108,111,114,32,105,110,104,101,114,105,116,97,110,99,101,32,119,105,116,104,32,66,111,111,116,115,116,114,97,112,32,118,52,32,116,97,98,108,101,32,67,83,83,92,110,32,32,32,32,47,47,32,83,116,105,99,107,121,32,104,101,97,100,101,114,115,32,111,110,108,121,32,97,112,112,108,121,32,116,111,32,99,101,108,108,115,32,105,110,32,116,97,98,108,101,32,96,116,104,101,97,100,96,92,110,32,32,32,32,105,115,83,116,105,99,107,121,72,101,97,100,101,114,58,32,102,117,110,99,116,105,111,110,32,105,115,83,116,105,99,107,121,72,101,97,100,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,84,114,46,105,115,83,116,105,99,107,121,72,101,97,100,101,114,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,78,101,101,100,101,100,32,116,111,32,104,97,110,100,108,101,32,104,101,97,100,101,114,32,98,97,99,107,103,114,111,117,110,100,32,99,108,97,115,115,101,115,44,32,100,117,101,32,116,111,32,108,97,99,107,32,111,102,92,110,32,32,32,32,47,47,32,98,97,99,107,103,114,111,117,110,100,32,99,111,108,111,114,32,105,110,104,101,114,105,116,97,110,99,101,32,119,105,116,104,32,66,111,111,116,115,116,114,97,112,32,118,52,32,116,97,98,108,101,32,67,83,83,92,110,32,32,32,32,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,58,32,102,117,110,99,116,105,111,110,32,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,84,114,46,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,78,101,101,100,101,100,32,116,111,32,104,97,110,100,108,101,32,98,97,99,107,103,114,111,117,110,100,32,99,108,97,115,115,101,115,44,32,100,117,101,32,116,111,32,108,97,99,107,32,111,102,92,110,32,32,32,32,47,47,32,98,97,99,107,103,114,111,117,110,100,32,99,111,108,111,114,32,105,110,104,101,114,105,116,97,110,99,101,32,119,105,116,104,32,66,111,111,116,115,116,114,97,112,32,118,52,32,116,97,98,108,101,32,67,83,83,92,110,32,32,32,32,47,47,32,83,116,105,99,107,121,32,99,111,108,117,109,110,32,99,101,108,108,115,32,97,114,101,32,111,110,108,121,32,97,118,97,105,108,97,98,108,101,32,105,110,32,114,101,115,112,111,110,115,105,118,101,92,110,32,32,32,32,47,47,32,109,111,100,101,32,40,104,111,114,105,122,111,110,116,97,108,32,115,99,114,111,108,108,105,110,103,41,32,111,114,32,119,104,101,110,32,115,116,105,99,107,121,32,104,101,97,100,101,114,32,109,111,100,101,92,110,32,32,32,32,47,47,32,65,112,112,108,105,101,115,32,116,111,32,99,101,108,108,115,32,105,110,32,96,116,104,101,97,100,96,44,32,96,116,98,111,100,121,96,32,97,110,100,32,96,116,102,111,111,116,96,92,110,32,32,32,32,105,115,83,116,105,99,107,121,67,111,108,117,109,110,58,32,102,117,110,99,116,105,111,110,32,105,115,83,116,105,99,107,121,67,111,108,117,109,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,105,115,83,116,97,99,107,101,100,32,38,38,32,40,116,104,105,115,46,105,115,82,101,115,112,111,110,115,105,118,101,32,124,124,32,116,104,105,115,46,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,41,32,38,38,32,116,104,105,115,46,115,116,105,99,107,121,67,111,108,117,109,110,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,111,119,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,114,111,119,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,84,114,46,118,97,114,105,97,110,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,101,97,100,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,104,101,97,100,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,84,114,46,104,101,97,100,86,97,114,105,97,110,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,111,116,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,102,111,111,116,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,84,114,46,102,111,111,116,86,97,114,105,97,110,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,97,98,108,101,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,116,97,98,108,101,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,84,114,46,116,97,98,108,101,86,97,114,105,97,110,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,67,111,108,115,112,97,110,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,67,111,108,115,112,97,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,114,115,101,83,112,97,110,40,116,104,105,115,46,99,111,108,115,112,97,110,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,82,111,119,115,112,97,110,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,82,111,119,115,112,97,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,114,115,101,83,112,97,110,40,116,104,105,115,46,114,111,119,115,112,97,110,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,87,101,32,117,115,101,32,99,111,109,112,117,116,101,100,32,112,114,111,112,115,32,104,101,114,101,32,102,111,114,32,105,109,112,114,111,118,101,100,32,112,101,114,102,111,114,109,97,110,99,101,32,98,121,32,99,97,99,104,105,110,103,92,110,32,32,32,32,47,47,32,116,104,101,32,114,101,115,117,108,116,115,32,111,102,32,116,104,101,32,115,116,114,105,110,103,32,105,110,116,101,114,112,111,108,97,116,105,111,110,92,110,32,32,32,32,99,101,108,108,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,99,101,108,108,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,104,101,97,100,86,97,114,105,97,110,116,32,61,32,116,104,105,115,46,104,101,97,100,86,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,83,116,105,99,107,121,67,111,108,117,109,110,32,61,32,116,104,105,115,46,105,115,83,116,105,99,107,121,67,111,108,117,109,110,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,118,97,114,105,97,110,116,32,38,38,32,116,104,105,115,46,105,115,83,116,105,99,107,121,72,101,97,100,101,114,32,38,38,32,33,104,101,97,100,86,97,114,105,97,110,116,32,124,124,32,33,118,97,114,105,97,110,116,32,38,38,32,105,115,83,116,105,99,107,121,67,111,108,117,109,110,32,38,38,32,116,104,105,115,46,105,110,84,102,111,111,116,32,38,38,32,33,116,104,105,115,46,102,111,111,116,86,97,114,105,97,110,116,32,124,124,32,33,118,97,114,105,97,110,116,32,38,38,32,105,115,83,116,105,99,107,121,67,111,108,117,109,110,32,38,38,32,116,104,105,115,46,105,110,84,104,101,97,100,32,38,38,32,33,104,101,97,100,86,97,114,105,97,110,116,32,124,124,32,33,118,97,114,105,97,110,116,32,38,38,32,105,115,83,116,105,99,107,121,67,111,108,117,109,110,32,38,38,32,116,104,105,115,46,105,110,84,98,111,100,121,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,78,101,101,100,101,100,32,102,111,114,32,115,116,105,99,107,121,45,104,101,97,100,101,114,32,109,111,100,101,32,97,115,32,66,111,111,116,115,116,114,97,112,32,118,52,32,116,97,98,108,101,32,99,101,108,108,115,32,100,111,92,110,32,32,32,32,32,32,32,32,47,47,32,110,111,116,32,105,110,104,101,114,105,116,32,112,97,114,101,110,116,39,115,32,96,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,96,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,114,111,119,86,97,114,105,97,110,116,32,124,124,32,116,104,105,115,46,116,97,98,108,101,86,97,114,105,97,110,116,32,124,124,32,39,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,39,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,118,97,114,105,97,110,116,32,63,32,92,34,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,105,115,68,97,114,107,32,63,32,39,98,103,39,32,58,32,39,116,97,98,108,101,39,44,32,92,34,45,92,34,41,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,32,58,32,110,117,108,108,44,32,105,115,83,116,105,99,107,121,67,111,108,117,109,110,32,63,32,39,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,39,32,58,32,110,117,108,108,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,101,108,108,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,99,101,108,108,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,99,107,101,100,72,101,97,100,105,110,103,32,61,32,116,104,105,115,46,115,116,97,99,107,101,100,72,101,97,100,105,110,103,59,32,47,47,32,87,101,32,117,115,101,32,99,111,109,112,117,116,101,100,32,112,114,111,112,115,32,104,101,114,101,32,102,111,114,32,105,109,112,114,111,118,101,100,32,112,101,114,102,111,114,109,97,110,99,101,32,98,121,32,99,97,99,104,105,110,103,92,110,32,32,32,32,32,32,47,47,32,116,104,101,32,114,101,115,117,108,116,115,32,111,102,32,116,104,101,32,111,98,106,101,99,116,32,115,112,114,101,97,100,32,40,79,98,106,101,99,116,46,97,115,115,105,103,110,41,92,110,92,110,32,32,32,32,32,32,118,97,114,32,104,101,97,100,79,114,70,111,111,116,32,61,32,116,104,105,115,46,105,110,84,104,101,97,100,32,124,124,32,116,104,105,115,46,105,110,84,102,111,111,116,59,32,47,47,32,77,97,107,101,32,115,117,114,101,32,99,111,108,47,114,111,119,115,112,97,110,39,115,32,97,114,101,32,62,32,48,32,111,114,32,110,117,108,108,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,111,108,115,112,97,110,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,67,111,108,115,112,97,110,59,92,110,32,32,32,32,32,32,118,97,114,32,114,111,119,115,112,97,110,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,82,111,119,115,112,97,110,59,32,47,47,32,68,101,102,97,117,108,116,32,114,111,108,101,32,97,110,100,32,115,99,111,112,101,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,111,108,101,32,61,32,39,99,101,108,108,39,59,92,110,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,32,61,32,110,117,108,108,59,32,47,47,32,67,111,109,112,117,116,101,32,114,111,108,101,32,97,110,100,32,115,99,111,112,101,92,110,32,32,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,97,100,100,32,115,99,111,112,101,115,32,119,105,116,104,32,97,110,32,101,120,112,108,105,99,105,116,32,115,112,97,110,32,111,102,32,49,32,111,114,32,103,114,101,97,116,101,114,92,110,92,110,32,32,32,32,32,32,105,102,32,40,104,101,97,100,79,114,70,111,111,116,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,72,101,97,100,101,114,32,111,114,32,102,111,111,116,101,114,32,99,101,108,108,115,92,110,32,32,32,32,32,32,32,32,114,111,108,101,32,61,32,39,99,111,108,117,109,110,104,101,97,100,101,114,39,59,92,110,32,32,32,32,32,32,32,32,115,99,111,112,101,32,61,32,99,111,108,115,112,97,110,32,62,32,48,32,63,32,39,99,111,108,115,112,97,110,39,32,58,32,39,99,111,108,39,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,105,115,84,97,103,41,40,116,104,105,115,46,116,97,103,44,32,39,116,104,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,116,104,39,115,32,105,110,32,116,98,111,100,121,92,110,32,32,32,32,32,32,32,32,114,111,108,101,32,61,32,39,114,111,119,104,101,97,100,101,114,39,59,92,110,32,32,32,32,32,32,32,32,115,99,111,112,101,32,61,32,114,111,119,115,112,97,110,32,62,32,48,32,63,32,39,114,111,119,103,114,111,117,112,39,32,58,32,39,114,111,119,39,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,99,111,108,115,112,97,110,58,32,99,111,108,115,112,97,110,44,92,110,32,32,32,32,32,32,32,32,114,111,119,115,112,97,110,58,32,114,111,119,115,112,97,110,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,114,111,108,101,44,92,110,32,32,32,32,32,32,32,32,115,99,111,112,101,58,32,115,99,111,112,101,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,98,118,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,105,110,32,116,104,101,32,115,116,97,99,107,101,100,32,99,101,108,108,32,108,97,98,101,108,32,100,97,116,97,45,97,116,116,114,105,98,117,116,101,32,105,102,32,105,110,92,110,32,32,32,32,32,32,32,32,47,47,32,115,116,97,99,107,101,100,32,109,111,100,101,32,40,105,102,32,97,32,115,116,97,99,107,101,100,32,104,101,97,100,105,110,103,32,108,97,98,101,108,32,105,115,32,112,114,111,118,105,100,101,100,41,92,110,32,32,32,32,32,32,32,32,39,100,97,116,97,45,108,97,98,101,108,39,58,32,116,104,105,115,46,105,115,83,116,97,99,107,101,100,67,101,108,108,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,115,116,97,99,107,101,100,72,101,97,100,105,110,103,41,32,63,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,116,111,83,116,114,105,110,103,41,40,115,116,97,99,107,101,100,72,101,97,100,105,110,103,41,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,104,105,115,46,116,97,103,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,99,101,108,108,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,99,101,108,108,65,116,116,114,115,44,92,110,32,32,32,32,32,32,47,47,32,84,114,97,110,115,102,101,114,32,97,110,121,32,110,97,116,105,118,101,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,32,32,111,110,58,32,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,105,115,83,116,97,99,107,101,100,67,101,108,108,32,63,32,104,40,39,100,105,118,39,44,32,91,36,99,111,110,116,101,110,116,93,41,32,58,32,36,99,111,110,116,101,110,116,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,102,111,111,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,102,111,111,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,102,111,111,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,84,102,111,111,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,47,47,32,83,117,112,112,111,114,116,101,100,32,118,97,108,117,101,115,58,32,39,108,105,116,101,39,44,32,39,100,97,114,107,39,44,32,111,114,32,110,117,108,108,92,110,32,32,102,111,111,116,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,84,70,79,79,84,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,84,79,68,79,58,92,110,47,47,32,32,32,73,110,32,66,111,111,116,115,116,114,97,112,32,118,53,44,32,119,101,32,119,111,110,39,116,32,110,101,101,100,32,92,34,115,110,105,102,102,105,110,103,92,34,32,97,115,32,116,97,98,108,101,32,101,108,101,109,101,110,116,32,118,97,114,105,97,110,116,115,32,112,114,111,112,101,114,108,121,32,105,110,104,101,114,105,116,92,110,47,47,32,32,32,116,111,32,116,104,101,32,99,104,105,108,100,32,101,108,101,109,101,110,116,115,44,32,115,111,32,116,104,105,115,32,99,97,110,32,98,101,32,99,111,110,118,101,114,116,101,100,32,116,111,32,97,32,102,117,110,99,116,105,111,110,97,108,32,99,111,109,112,111,110,101,110,116,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,84,102,111,111,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,84,70,79,79,84,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,108,105,115,116,101,110,101,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,118,105,100,101,58,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,58,32,116,104,105,115,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,105,110,106,101,99,116,58,32,123,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,98,118,84,97,98,108,101,58,32,123,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,115,84,102,111,111,116,58,32,102,117,110,99,116,105,111,110,32,105,115,84,102,111,111,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,115,68,97,114,107,58,32,102,117,110,99,116,105,111,110,32,105,115,68,97,114,107,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,46,100,97,114,107,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,115,83,116,97,99,107,101,100,58,32,102,117,110,99,116,105,111,110,32,105,115,83,116,97,99,107,101,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,46,105,115,83,116,97,99,107,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,115,82,101,115,112,111,110,115,105,118,101,58,32,102,117,110,99,116,105,111,110,32,105,115,82,101,115,112,111,110,115,105,118,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,46,105,115,82,101,115,112,111,110,115,105,118,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,47,47,32,83,116,105,99,107,121,32,104,101,97,100,101,114,115,32,97,114,101,32,111,110,108,121,32,115,117,112,112,111,114,116,101,100,32,105,110,32,116,104,101,97,100,92,110,32,32,32,32,105,115,83,116,105,99,107,121,72,101,97,100,101,114,58,32,102,117,110,99,116,105,111,110,32,105,115,83,116,105,99,107,121,72,101,97,100,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,47,47,32,78,101,101,100,101,100,32,116,111,32,104,97,110,100,108,101,32,104,101,97,100,101,114,32,98,97,99,107,103,114,111,117,110,100,32,99,108,97,115,115,101,115,44,32,100,117,101,32,116,111,32,108,97,99,107,32,111,102,92,110,32,32,32,32,47,47,32,98,97,99,107,103,114,111,117,110,100,32,99,111,108,111,114,32,105,110,104,101,114,105,116,97,110,99,101,32,119,105,116,104,32,66,111,111,116,115,116,114,97,112,32,118,52,32,116,97,98,108,101,32,67,83,83,92,110,32,32,32,32,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,58,32,102,117,110,99,116,105,111,110,32,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,105,115,83,116,97,99,107,101,100,32,38,38,32,116,104,105,115,46,98,118,84,97,98,108,101,46,115,116,105,99,107,121,72,101,97,100,101,114,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,116,97,98,108,101,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,116,97,98,108,101,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,46,116,97,98,108,101,86,97,114,105,97,110,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,102,111,111,116,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,116,102,111,111,116,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,104,105,115,46,102,111,111,116,86,97,114,105,97,110,116,32,63,32,92,34,116,104,101,97,100,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,102,111,111,116,86,97,114,105,97,110,116,41,32,58,32,110,117,108,108,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,102,111,111,116,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,116,102,111,111,116,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,104,105,115,46,98,118,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,114,111,119,103,114,111,117,112,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,116,102,111,111,116,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,102,111,111,116,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,116,102,111,111,116,65,116,116,114,115,44,92,110,32,32,32,32,32,32,47,47,32,80,97,115,115,32,100,111,119,110,32,97,110,121,32,110,97,116,105,118,101,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,32,32,111,110,58,32,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,92,110,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,102,111,111,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,84,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,100,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,95,116,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,84,72,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,84,79,68,79,58,92,110,47,47,32,32,32,73,110,32,66,111,111,116,115,116,114,97,112,32,118,53,44,32,119,101,32,119,111,110,39,116,32,110,101,101,100,32,92,34,115,110,105,102,102,105,110,103,92,34,32,97,115,32,116,97,98,108,101,32,101,108,101,109,101,110,116,32,118,97,114,105,97,110,116,115,32,112,114,111,112,101,114,108,121,32,105,110,104,101,114,105,116,92,110,47,47,32,32,32,116,111,32,116,104,101,32,99,104,105,108,100,32,101,108,101,109,101,110,116,115,44,32,115,111,32,116,104,105,115,32,99,97,110,32,98,101,32,99,111,110,118,101,114,116,101,100,32,116,111,32,97,32,102,117,110,99,116,105,111,110,97,108,32,99,111,109,112,111,110,101,110,116,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,84,104,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,84,72,44,92,110,32,32,101,120,116,101,110,100,115,58,32,95,116,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,84,100,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,116,97,103,58,32,102,117,110,99,116,105,111,110,32,116,97,103,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,116,104,39,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,104,101,97,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,104,101,97,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,104,101,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,84,104,101,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,47,47,32,65,108,115,111,32,115,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,47,47,32,83,117,112,112,111,114,116,101,100,32,118,97,108,117,101,115,58,32,39,108,105,116,101,39,44,32,39,100,97,114,107,39,44,32,111,114,32,96,110,117,108,108,96,92,110,32,32,104,101,97,100,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,84,72,69,65,68,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,84,79,68,79,58,92,110,47,47,32,32,32,73,110,32,66,111,111,116,115,116,114,97,112,32,118,53,44,32,119,101,32,119,111,110,39,116,32,110,101,101,100,32,92,34,115,110,105,102,102,105,110,103,92,34,32,97,115,32,116,97,98,108,101,32,101,108,101,109,101,110,116,32,118,97,114,105,97,110,116,115,32,112,114,111,112,101,114,108,121,32,105,110,104,101,114,105,116,92,110,47,47,32,32,32,116,111,32,116,104,101,32,99,104,105,108,100,32,101,108,101,109,101,110,116,115,44,32,115,111,32,116,104,105,115,32,99,97,110,32,98,101,32,99,111,110,118,101,114,116,101,100,32,116,111,32,97,32,102,117,110,99,116,105,111,110,97,108,32,99,111,109,112,111,110,101,110,116,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,84,104,101,97,100,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,84,72,69,65,68,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,108,105,115,116,101,110,101,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,118,105,100,101,58,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,58,32,116,104,105,115,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,105,110,106,101,99,116,58,32,123,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,98,118,84,97,98,108,101,58,32,123,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,115,84,104,101,97,100,58,32,102,117,110,99,116,105,111,110,32,105,115,84,104,101,97,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,115,68,97,114,107,58,32,102,117,110,99,116,105,111,110,32,105,115,68,97,114,107,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,46,100,97,114,107,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,115,83,116,97,99,107,101,100,58,32,102,117,110,99,116,105,111,110,32,105,115,83,116,97,99,107,101,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,46,105,115,83,116,97,99,107,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,115,82,101,115,112,111,110,115,105,118,101,58,32,102,117,110,99,116,105,111,110,32,105,115,82,101,115,112,111,110,115,105,118,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,46,105,115,82,101,115,112,111,110,115,105,118,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,47,47,32,78,101,101,100,101,100,32,116,111,32,104,97,110,100,108,101,32,104,101,97,100,101,114,32,98,97,99,107,103,114,111,117,110,100,32,99,108,97,115,115,101,115,44,32,100,117,101,32,116,111,32,108,97,99,107,32,111,102,92,110,32,32,32,32,47,47,32,98,97,99,107,103,114,111,117,110,100,32,99,111,108,111,114,32,105,110,104,101,114,105,116,97,110,99,101,32,119,105,116,104,32,66,111,111,116,115,116,114,97,112,32,118,52,32,116,97,98,108,101,32,67,83,83,92,110,32,32,32,32,47,47,32,83,116,105,99,107,121,32,104,101,97,100,101,114,115,32,111,110,108,121,32,97,112,112,108,121,32,116,111,32,99,101,108,108,115,32,105,110,32,116,97,98,108,101,32,96,116,104,101,97,100,96,92,110,32,32,32,32,105,115,83,116,105,99,107,121,72,101,97,100,101,114,58,32,102,117,110,99,116,105,111,110,32,105,115,83,116,105,99,107,121,72,101,97,100,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,105,115,83,116,97,99,107,101,100,32,38,38,32,116,104,105,115,46,98,118,84,97,98,108,101,46,115,116,105,99,107,121,72,101,97,100,101,114,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,47,47,32,78,101,101,100,101,100,32,116,111,32,104,97,110,100,108,101,32,104,101,97,100,101,114,32,98,97,99,107,103,114,111,117,110,100,32,99,108,97,115,115,101,115,44,32,100,117,101,32,116,111,32,108,97,99,107,32,111,102,92,110,32,32,32,32,47,47,32,98,97,99,107,103,114,111,117,110,100,32,99,111,108,111,114,32,105,110,104,101,114,105,116,97,110,99,101,32,119,105,116,104,32,66,111,111,116,115,116,114,97,112,32,118,52,32,116,97,98,108,101,32,67,83,83,92,110,32,32,32,32,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,58,32,102,117,110,99,116,105,111,110,32,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,105,115,83,116,97,99,107,101,100,32,38,38,32,116,104,105,115,46,98,118,84,97,98,108,101,46,115,116,105,99,107,121,72,101,97,100,101,114,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,114,62,96,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,116,97,98,108,101,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,116,97,98,108,101,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,46,116,97,98,108,101,86,97,114,105,97,110,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,104,101,97,100,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,116,104,101,97,100,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,104,105,115,46,104,101,97,100,86,97,114,105,97,110,116,32,63,32,92,34,116,104,101,97,100,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,104,101,97,100,86,97,114,105,97,110,116,41,32,58,32,110,117,108,108,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,104,101,97,100,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,116,104,101,97,100,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,114,111,119,103,114,111,117,112,39,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,98,118,65,116,116,114,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,116,104,101,97,100,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,104,101,97,100,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,116,104,101,97,100,65,116,116,114,115,44,92,110,32,32,32,32,32,32,47,47,32,80,97,115,115,32,100,111,119,110,32,97,110,121,32,110,97,116,105,118,101,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,32,32,111,110,58,32,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,92,110,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,104,101,97,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,84,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,76,73,71,72,84,32,61,32,39,108,105,103,104,116,39,59,92,110,118,97,114,32,68,65,82,75,32,61,32,39,100,97,114,107,39,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,84,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,84,79,68,79,58,92,110,47,47,32,32,32,73,110,32,66,111,111,116,115,116,114,97,112,32,118,53,44,32,119,101,32,119,111,110,39,116,32,110,101,101,100,32,92,34,115,110,105,102,102,105,110,103,92,34,32,97,115,32,116,97,98,108,101,32,101,108,101,109,101,110,116,32,118,97,114,105,97,110,116,115,32,112,114,111,112,101,114,108,121,32,105,110,104,101,114,105,116,92,110,47,47,32,32,32,116,111,32,116,104,101,32,99,104,105,108,100,32,101,108,101,109,101,110,116,115,44,32,115,111,32,116,104,105,115,32,99,97,110,32,98,101,32,99,111,110,118,101,114,116,101,100,32,116,111,32,97,32,102,117,110,99,116,105,111,110,97,108,32,99,111,109,112,111,110,101,110,116,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,84,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,84,82,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,101,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,108,105,115,116,101,110,101,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,118,105,100,101,58,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,98,118,84,97,98,108,101,84,114,58,32,116,104,105,115,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,105,110,106,101,99,116,58,32,123,92,110,32,32,32,32,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,58,32,123,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,110,84,98,111,100,121,58,32,102,117,110,99,116,105,111,110,32,105,110,84,98,111,100,121,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,105,115,84,98,111,100,121,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,110,84,104,101,97,100,58,32,102,117,110,99,116,105,111,110,32,105,110,84,104,101,97,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,105,115,84,104,101,97,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,110,84,102,111,111,116,58,32,102,117,110,99,116,105,111,110,32,105,110,84,102,111,111,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,105,115,84,102,111,111,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,115,68,97,114,107,58,32,102,117,110,99,116,105,111,110,32,105,115,68,97,114,107,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,105,115,68,97,114,107,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,115,83,116,97,99,107,101,100,58,32,102,117,110,99,116,105,111,110,32,105,115,83,116,97,99,107,101,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,105,115,83,116,97,99,107,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,105,115,82,101,115,112,111,110,115,105,118,101,58,32,102,117,110,99,116,105,111,110,32,105,115,82,101,115,112,111,110,115,105,118,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,105,115,82,101,115,112,111,110,115,105,118,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,47,47,32,83,116,105,99,107,121,32,104,101,97,100,101,114,115,32,97,114,101,32,111,110,108,121,32,115,117,112,112,111,114,116,101,100,32,105,110,32,116,104,101,97,100,92,110,32,32,32,32,105,115,83,116,105,99,107,121,72,101,97,100,101,114,58,32,102,117,110,99,116,105,111,110,32,105,115,83,116,105,99,107,121,72,101,97,100,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,105,115,83,116,105,99,107,121,72,101,97,100,101,114,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,60,98,45,116,114,62,32,47,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,47,47,32,78,101,101,100,101,100,32,116,111,32,104,97,110,100,108,101,32,104,101,97,100,101,114,32,98,97,99,107,103,114,111,117,110,100,32,99,108,97,115,115,101,115,44,32,100,117,101,32,116,111,32,108,97,99,107,32,111,102,92,110,32,32,32,32,47,47,32,98,97,99,107,103,114,111,117,110,100,32,99,111,108,111,114,32,105,110,104,101,114,105,116,97,110,99,101,32,119,105,116,104,32,66,111,111,116,115,116,114,97,112,32,118,52,32,116,97,98,108,101,32,67,83,83,92,110,32,32,32,32,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,58,32,102,117,110,99,116,105,111,110,32,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,105,115,83,116,97,99,107,101,100,32,38,38,32,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,116,97,98,108,101,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,116,97,98,108,101,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,116,97,98,108,101,86,97,114,105,97,110,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,104,101,97,100,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,104,101,97,100,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,84,104,101,97,100,32,63,32,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,104,101,97,100,86,97,114,105,97,110,116,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,110,105,102,102,101,100,32,98,121,32,96,60,98,45,116,100,62,96,32,47,32,96,60,98,45,116,104,62,96,92,110,32,32,32,32,102,111,111,116,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,102,111,111,116,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,84,102,111,111,116,32,63,32,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,102,111,111,116,86,97,114,105,97,110,116,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,82,111,119,68,97,114,107,58,32,102,117,110,99,116,105,111,110,32,105,115,82,111,119,68,97,114,107,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,104,101,97,100,86,97,114,105,97,110,116,32,61,61,61,32,76,73,71,72,84,32,124,124,32,116,104,105,115,46,102,111,111,116,86,97,114,105,97,110,116,32,61,61,61,32,76,73,71,72,84,32,63,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,102,97,108,115,101,32,58,32,116,104,105,115,46,104,101,97,100,86,97,114,105,97,110,116,32,61,61,61,32,68,65,82,75,32,124,124,32,116,104,105,115,46,102,111,111,116,86,97,114,105,97,110,116,32,61,61,61,32,68,65,82,75,32,63,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,116,114,117,101,32,58,32,116,104,105,115,46,105,115,68,97,114,107,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,114,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,116,114,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,118,97,114,105,97,110,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,118,97,114,105,97,110,116,32,63,32,92,34,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,105,115,82,111,119,68,97,114,107,32,63,32,39,98,103,39,32,58,32,39,116,97,98,108,101,39,44,32,92,34,45,92,34,41,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,32,58,32,110,117,108,108,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,114,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,116,114,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,114,111,119,39,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,98,118,65,116,116,114,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,116,114,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,114,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,116,114,65,116,116,114,115,44,92,110,32,32,32,32,32,32,47,47,32,80,97,115,115,32,110,97,116,105,118,101,32,108,105,115,116,101,110,101,114,115,32,116,111,32,99,104,105,108,100,92,110,32,32,32,32,32,32,111,110,58,32,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,92,110,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,97,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,97,98,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,84,97,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,97,98,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,97,98,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,84,97,98,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,97,98,115,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,84,97,98,115,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,97,98,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,97,98,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,116,97,98,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,97,98,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,97,98,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,116,97,98,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,84,97,98,115,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,84,97,98,115,58,32,95,116,97,98,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,84,97,98,115,44,92,110,32,32,32,32,66,84,97,98,58,32,95,116,97,98,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,84,97,98,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,116,97,98,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,116,97,98,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,97,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,84,97,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,105,116,105,111,110,95,98,118,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,46,106,115,92,34,41,59,92,110,118,97,114,32,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,65,67,84,73,86,69,32,61,32,39,97,99,116,105,118,101,39,59,92,110,118,97,114,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,65,67,84,73,86,69,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,32,43,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,65,67,84,73,86,69,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,65,67,84,73,86,69,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,92,34,98,117,116,116,111,110,73,100,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,92,34,100,105,115,97,98,108,101,100,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,92,34,108,97,122,121,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,92,34,110,111,66,111,100,121,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,92,34,116,97,103,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,92,34,116,105,116,108,101,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,92,34,116,105,116,108,101,73,116,101,109,67,108,97,115,115,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,92,34,116,105,116,108,101,76,105,110,107,65,116,116,114,105,98,117,116,101,115,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,98,106,101,99,116,83,112,114,101,97,100,50,44,32,92,34,116,105,116,108,101,76,105,110,107,67,108,97,115,115,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,41,44,32,95,111,98,106,101,99,116,83,112,114,101,97,100,50,41,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,84,65,66,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,84,97,98,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,84,65,66,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,100,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,105,110,106,101,99,116,58,32,123,92,110,32,32,32,32,98,118,84,97,98,115,58,32,123,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,65,99,116,105,118,101,58,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,65,67,84,73,86,69,93,32,38,38,32,33,116,104,105,115,46,100,105,115,97,98,108,101,100,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,47,47,32,70,111,114,32,112,97,114,101,110,116,32,115,110,105,102,102,105,110,103,32,111,102,32,99,104,105,108,100,92,110,32,32,32,32,95,105,115,84,97,98,58,32,102,117,110,99,116,105,111,110,32,95,105,115,84,97,98,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,97,98,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,116,97,98,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,99,116,105,118,101,32,61,32,116,104,105,115,46,108,111,99,97,108,65,99,116,105,118,101,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,123,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,58,32,97,99,116,105,118,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,39,99,97,114,100,45,98,111,100,121,39,58,32,116,104,105,115,46,98,118,84,97,98,115,46,99,97,114,100,32,38,38,32,33,116,104,105,115,46,110,111,66,111,100,121,92,110,32,32,32,32,32,32,125,44,32,47,47,32,65,112,112,108,121,32,60,98,45,116,97,98,115,62,32,96,97,99,116,105,118,101,84,97,98,67,108,97,115,115,96,32,115,116,121,108,101,115,32,119,104,101,110,32,116,104,105,115,32,116,97,98,32,105,115,32,97,99,116,105,118,101,92,110,32,32,32,32,32,32,97,99,116,105,118,101,32,63,32,116,104,105,115,46,98,118,84,97,98,115,46,97,99,116,105,118,101,84,97,98,67,108,97,115,115,32,58,32,110,117,108,108,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,110,116,114,111,108,108,101,100,66,121,58,32,102,117,110,99,116,105,111,110,32,99,111,110,116,114,111,108,108,101,100,66,121,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,117,116,116,111,110,73,100,32,124,124,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,95,66,86,95,116,97,98,95,98,117,116,116,111,110,95,95,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,78,111,70,97,100,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,78,111,70,97,100,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,40,116,104,105,115,46,98,118,84,97,98,115,46,102,97,100,101,32,124,124,32,102,97,108,115,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,76,97,122,121,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,76,97,122,121,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,115,46,108,97,122,121,32,124,124,32,116,104,105,115,46,108,97,122,121,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,65,67,84,73,86,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,97,99,116,105,118,97,116,101,100,32,112,111,115,116,32,109,111,117,110,116,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,97,116,101,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,101,97,99,116,105,118,97,116,101,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,84,97,98,32,99,111,117,108,100,110,39,116,32,98,101,32,100,101,97,99,116,105,118,97,116,101,100,44,32,115,111,32,119,101,32,114,101,115,101,116,32,116,104,101,32,115,121,110,99,101,100,32,97,99,116,105,118,101,32,112,114,111,112,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,68,101,97,99,116,105,118,97,116,105,111,110,32,119,105,108,108,32,102,97,105,108,32,105,102,32,110,111,32,111,116,104,101,114,32,116,97,98,115,32,116,111,32,97,99,116,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,65,67,84,73,86,69,44,32,116,104,105,115,46,108,111,99,97,108,65,99,116,105,118,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,100,105,115,97,98,108,101,100,92,34,44,32,102,117,110,99,116,105,111,110,32,100,105,115,97,98,108,101,100,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,105,114,115,116,84,97,98,32,61,32,116,104,105,115,46,98,118,84,97,98,115,46,102,105,114,115,116,84,97,98,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,38,38,32,116,104,105,115,46,108,111,99,97,108,65,99,116,105,118,101,32,38,38,32,102,105,114,115,116,84,97,98,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,65,99,116,105,118,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,102,105,114,115,116,84,97,98,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,108,111,99,97,108,65,99,116,105,118,101,92,34,44,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,65,99,116,105,118,101,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,47,47,32,77,97,107,101,32,96,97,99,116,105,118,101,96,32,112,114,111,112,32,119,111,114,107,32,119,105,116,104,32,96,46,115,121,110,99,96,32,109,111,100,105,102,105,101,114,92,110,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,65,67,84,73,86,69,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,73,110,102,111,114,109,32,96,60,98,45,116,97,98,115,62,96,32,111,102,32,111,117,114,32,112,114,101,115,101,110,99,101,92,110,32,32,32,32,116,104,105,115,46,114,101,103,105,115,116,101,114,84,97,98,40,41,59,92,110,32,32,125,44,92,110,32,32,117,112,100,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,70,111,114,99,101,32,116,104,101,32,116,97,98,32,98,117,116,116,111,110,32,99,111,110,116,101,110,116,32,116,111,32,117,112,100,97,116,101,32,40,115,105,110,99,101,32,115,108,111,116,115,32,97,114,101,32,110,111,116,32,114,101,97,99,116,105,118,101,41,92,110,32,32,32,32,47,47,32,79,110,108,121,32,100,111,110,101,32,105,102,32,119,101,32,104,97,118,101,32,97,32,116,105,116,108,101,32,115,108,111,116,44,32,97,115,32,116,104,101,32,116,105,116,108,101,32,112,114,111,112,32,105,115,32,114,101,97,99,116,105,118,101,92,110,32,32,32,32,118,97,114,32,117,112,100,97,116,101,66,117,116,116,111,110,32,61,32,116,104,105,115,46,98,118,84,97,98,115,46,117,112,100,97,116,101,66,117,116,116,111,110,59,92,110,92,110,32,32,32,32,105,102,32,40,117,112,100,97,116,101,66,117,116,116,111,110,32,38,38,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,83,76,79,84,95,78,65,77,69,95,84,73,84,76,69,41,41,32,123,92,110,32,32,32,32,32,32,117,112,100,97,116,101,66,117,116,116,111,110,40,116,104,105,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,47,47,32,73,110,102,111,114,109,32,96,60,98,45,116,97,98,115,62,96,32,111,102,32,111,117,114,32,100,101,112,97,114,116,117,114,101,92,110,32,32,32,32,116,104,105,115,46,117,110,114,101,103,105,115,116,101,114,84,97,98,40,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,80,114,105,118,97,116,101,32,109,101,116,104,111,100,115,92,110,32,32,32,32,114,101,103,105,115,116,101,114,84,97,98,58,32,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,84,97,98,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,110,102,111,114,109,32,96,60,98,45,116,97,98,115,62,96,32,111,102,32,111,117,114,32,112,114,101,115,101,110,99,101,92,110,32,32,32,32,32,32,118,97,114,32,114,101,103,105,115,116,101,114,84,97,98,32,61,32,116,104,105,115,46,98,118,84,97,98,115,46,114,101,103,105,115,116,101,114,84,97,98,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,114,101,103,105,115,116,101,114,84,97,98,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,103,105,115,116,101,114,84,97,98,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,110,114,101,103,105,115,116,101,114,84,97,98,58,32,102,117,110,99,116,105,111,110,32,117,110,114,101,103,105,115,116,101,114,84,97,98,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,110,102,111,114,109,32,96,60,98,45,116,97,98,115,62,96,32,111,102,32,111,117,114,32,100,101,112,97,114,116,117,114,101,92,110,32,32,32,32,32,32,118,97,114,32,117,110,114,101,103,105,115,116,101,114,84,97,98,32,61,32,116,104,105,115,46,98,118,84,97,98,115,46,117,110,114,101,103,105,115,116,101,114,84,97,98,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,117,110,114,101,103,105,115,116,101,114,84,97,98,41,32,123,92,110,32,32,32,32,32,32,32,32,117,110,114,101,103,105,115,116,101,114,84,97,98,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,117,98,108,105,99,32,109,101,116,104,111,100,115,92,110,32,32,32,32,97,99,116,105,118,97,116,101,58,32,102,117,110,99,116,105,111,110,32,97,99,116,105,118,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,78,111,116,32,105,110,115,105,100,101,32,97,32,96,60,98,45,116,97,98,115,62,96,32,99,111,109,112,111,110,101,110,116,32,111,114,32,116,97,98,32,105,115,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,118,97,114,32,97,99,116,105,118,97,116,101,84,97,98,32,61,32,116,104,105,115,46,98,118,84,97,98,115,46,97,99,116,105,118,97,116,101,84,97,98,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,99,116,105,118,97,116,101,84,97,98,32,38,38,32,33,116,104,105,115,46,100,105,115,97,98,108,101,100,32,63,32,97,99,116,105,118,97,116,101,84,97,98,40,116,104,105,115,41,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,101,97,99,116,105,118,97,116,101,58,32,102,117,110,99,116,105,111,110,32,100,101,97,99,116,105,118,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,78,111,116,32,105,110,115,105,100,101,32,97,32,96,60,98,45,116,97,98,115,62,96,32,99,111,109,112,111,110,101,110,116,32,111,114,32,110,111,116,32,97,99,116,105,118,101,32,116,111,32,98,101,103,105,110,32,119,105,116,104,92,110,32,32,32,32,32,32,118,97,114,32,100,101,97,99,116,105,118,97,116,101,84,97,98,32,61,32,116,104,105,115,46,98,118,84,97,98,115,46,100,101,97,99,116,105,118,97,116,101,84,97,98,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,97,99,116,105,118,97,116,101,84,97,98,32,38,38,32,116,104,105,115,46,108,111,99,97,108,65,99,116,105,118,101,32,63,32,100,101,97,99,116,105,118,97,116,101,84,97,98,40,116,104,105,115,41,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,108,111,99,97,108,65,99,116,105,118,101,32,61,32,116,104,105,115,46,108,111,99,97,108,65,99,116,105,118,101,59,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,104,40,116,104,105,115,46,116,97,103,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,116,97,98,45,112,97,110,101,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,97,98,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,39,115,104,111,119,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,108,111,99,97,108,65,99,116,105,118,101,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,116,97,98,112,97,110,101,108,39,44,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,108,111,99,97,108,65,99,116,105,118,101,32,63,32,39,102,97,108,115,101,39,32,58,32,39,116,114,117,101,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,39,58,32,116,104,105,115,46,99,111,110,116,114,111,108,108,101,100,66,121,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,112,97,110,101,108,39,92,110,32,32,32,32,125,44,32,47,47,32,82,101,110,100,101,114,32,99,111,110,116,101,110,116,32,108,97,122,105,108,121,32,105,102,32,114,101,113,117,101,115,116,101,100,92,110,32,32,32,32,91,108,111,99,97,108,65,99,116,105,118,101,32,124,124,32,33,116,104,105,115,46,99,111,109,112,117,116,101,100,76,97,122,121,32,63,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,32,58,32,104,40,41,93,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,95,116,114,97,110,115,105,116,105,111,110,95,98,118,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,86,84,114,97,110,115,105,116,105,111,110,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,109,111,100,101,58,32,39,111,117,116,45,105,110,39,44,92,110,32,32,32,32,32,32,32,32,110,111,70,97,100,101,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,78,111,70,97,100,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,99,111,110,116,101,110,116,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,116,97,98,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,116,97,98,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,116,97,98,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,97,98,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,84,97,98,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,118,117,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,98,118,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,115,101,114,118,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,115,101,114,118,101,45,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,115,101,114,118,101,45,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,97,98,108,101,95,115,111,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,97,98,108,101,45,115,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,97,98,108,101,45,115,111,114,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,105,110,107,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,118,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,97,118,47,110,97,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,97,108,117,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,70,105,108,116,101,114,32,102,117,110,99,116,105,111,110,32,116,111,32,102,105,108,116,101,114,32,111,117,116,32,100,105,115,97,98,108,101,100,32,116,97,98,115,92,110,92,110,92,110,118,97,114,32,110,111,116,68,105,115,97,98,108,101,100,32,61,32,102,117,110,99,116,105,111,110,32,110,111,116,68,105,115,97,98,108,101,100,40,116,97,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,116,97,98,46,100,105,115,97,98,108,101,100,59,92,110,125,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,99,111,109,112,111,110,101,110,116,115,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,92,110,118,97,114,32,66,86,84,97,98,66,117,116,116,111,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,84,65,66,95,66,85,84,84,79,78,95,72,69,76,80,69,82,44,92,110,32,32,105,110,106,101,99,116,58,32,123,92,110,32,32,32,32,98,118,84,97,98,115,58,32,123,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,99,111,110,116,114,111,108,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,32,32,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,32,32,110,111,75,101,121,78,97,118,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,32,32,112,111,115,73,110,83,101,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,41,44,92,110,32,32,32,32,115,101,116,83,105,122,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,41,44,92,110,32,32,32,32,47,47,32,82,101,102,101,114,101,110,99,101,32,116,111,32,116,104,101,32,99,104,105,108,100,32,60,98,45,116,97,98,62,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,116,97,98,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,41,44,92,110,32,32,32,32,116,97,98,73,110,100,101,120,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,41,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,102,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,104,105,115,46,36,114,101,102,115,46,108,105,110,107,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,69,118,116,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,69,118,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,116,97,98,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,101,118,101,110,116,46,116,121,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,115,104,105,102,116,75,101,121,32,61,32,101,118,101,110,116,46,115,104,105,102,116,75,101,121,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,99,108,105,99,107,39,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,107,101,121,100,111,119,110,39,32,38,38,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,83,80,65,67,69,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,70,111,114,32,65,82,73,65,32,116,97,98,115,32,116,104,101,32,83,80,65,67,69,32,107,101,121,32,119,105,108,108,32,97,108,115,111,32,116,114,105,103,103,101,114,32,97,32,99,108,105,99,107,47,115,101,108,101,99,116,92,110,32,32,32,32,32,32,32,32,47,47,32,69,118,101,110,32,119,105,116,104,32,107,101,121,98,111,97,114,100,32,110,97,118,105,103,97,116,105,111,110,32,100,105,115,97,98,108,101,100,44,32,83,80,65,67,69,32,115,104,111,117,108,100,32,92,34,99,108,105,99,107,92,34,32,116,104,101,32,98,117,116,116,111,110,92,110,32,32,32,32,32,32,32,32,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,52,51,50,51,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,107,101,121,100,111,119,110,39,32,38,38,32,33,116,104,105,115,46,110,111,75,101,121,78,97,118,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,70,111,114,32,107,101,121,98,111,97,114,100,32,110,97,118,105,103,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,91,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,85,80,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,76,69,70,84,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,72,79,77,69,93,46,105,110,100,101,120,79,102,40,107,101,121,67,111,100,101,41,32,33,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,104,105,102,116,75,101,121,32,124,124,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,72,79,77,69,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,69,86,69,78,84,95,78,65,77,69,95,70,73,82,83,84,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,69,86,69,78,84,95,78,65,77,69,95,80,82,69,86,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,91,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,68,79,87,78,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,82,73,71,72,84,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,69,78,68,93,46,105,110,100,101,120,79,102,40,107,101,121,67,111,100,101,41,32,33,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,104,105,102,116,75,101,121,32,124,124,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,67,79,68,69,95,69,78,68,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,69,86,69,78,84,95,78,65,77,69,95,76,65,83,84,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,69,86,69,78,84,95,78,65,77,69,95,78,69,88,84,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,105,100,32,61,32,116,104,105,115,46,105,100,44,92,110,32,32,32,32,32,32,32,32,116,97,98,73,110,100,101,120,32,61,32,116,104,105,115,46,116,97,98,73,110,100,101,120,44,92,110,32,32,32,32,32,32,32,32,115,101,116,83,105,122,101,32,61,32,116,104,105,115,46,115,101,116,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,112,111,115,73,110,83,101,116,32,61,32,116,104,105,115,46,112,111,115,73,110,83,101,116,44,92,110,32,32,32,32,32,32,32,32,99,111,110,116,114,111,108,115,32,61,32,116,104,105,115,46,99,111,110,116,114,111,108,115,44,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,69,118,116,32,61,32,116,104,105,115,46,104,97,110,100,108,101,69,118,116,59,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,36,116,97,98,32,61,32,116,104,105,115,46,116,97,98,44,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,32,61,32,95,116,104,105,115,36,116,97,98,46,116,105,116,108,101,44,92,110,32,32,32,32,32,32,32,32,108,111,99,97,108,65,99,116,105,118,101,32,61,32,95,116,104,105,115,36,116,97,98,46,108,111,99,97,108,65,99,116,105,118,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,95,116,104,105,115,36,116,97,98,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,73,116,101,109,67,108,97,115,115,32,61,32,95,116,104,105,115,36,116,97,98,46,116,105,116,108,101,73,116,101,109,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,76,105,110,107,67,108,97,115,115,32,61,32,95,116,104,105,115,36,116,97,98,46,116,105,116,108,101,76,105,110,107,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,76,105,110,107,65,116,116,114,105,98,117,116,101,115,32,61,32,95,116,104,105,115,36,116,97,98,46,116,105,116,108,101,76,105,110,107,65,116,116,114,105,98,117,116,101,115,59,92,110,32,32,32,32,118,97,114,32,36,108,105,110,107,32,61,32,104,40,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,76,105,110,107,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,110,97,118,45,108,105,110,107,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,58,32,108,111,99,97,108,65,99,116,105,118,101,32,38,38,32,33,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,125,44,32,116,105,116,108,101,76,105,110,107,67,108,97,115,115,44,32,47,47,32,65,112,112,108,121,32,60,98,45,116,97,98,115,62,32,96,97,99,116,105,118,101,78,97,118,73,116,101,109,67,108,97,115,115,96,32,115,116,121,108,101,115,32,119,104,101,110,32,116,104,101,32,116,97,98,32,105,115,32,97,99,116,105,118,101,92,110,32,32,32,32,32,32,108,111,99,97,108,65,99,116,105,118,101,32,63,32,116,104,105,115,46,98,118,84,97,98,115,46,97,99,116,105,118,101,78,97,118,73,116,101,109,67,108,97,115,115,32,58,32,110,117,108,108,93,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,105,116,108,101,76,105,110,107,65,116,116,114,105,98,117,116,101,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,105,100,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,116,97,98,39,44,92,110,32,32,32,32,32,32,32,32,47,47,32,82,111,118,105,110,103,32,116,97,98,32,105,110,100,101,120,32,119,104,101,110,32,107,101,121,110,97,118,32,101,110,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,116,97,98,73,110,100,101,120,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,115,101,108,101,99,116,101,100,39,58,32,108,111,99,97,108,65,99,116,105,118,101,32,38,38,32,33,100,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,39,102,97,108,115,101,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,115,101,116,115,105,122,101,39,58,32,115,101,116,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,112,111,115,105,110,115,101,116,39,58,32,112,111,115,73,110,83,101,116,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,111,110,116,114,111,108,115,39,58,32,99,111,110,116,114,111,108,115,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,104,97,110,100,108,101,69,118,116,44,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,104,97,110,100,108,101,69,118,116,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,108,105,110,107,39,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,116,97,98,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,83,76,79,84,95,78,65,77,69,95,84,73,84,76,69,41,32,124,124,32,116,105,116,108,101,93,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,110,97,118,45,105,116,101,109,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,116,105,116,108,101,73,116,101,109,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,112,114,101,115,101,110,116,97,116,105,111,110,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,108,105,110,107,93,41,59,92,110,32,32,125,92,110,125,41,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,110,97,118,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,111,109,105,116,41,40,95,110,97,118,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,112,114,111,112,115,44,32,91,39,116,97,98,115,39,44,32,39,105,115,78,97,118,66,97,114,39,44,32,39,99,97,114,100,72,101,97,100,101,114,39,93,41,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,110,97,118,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,47,47,32,79,110,108,121,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,99,117,114,114,101,110,116,108,121,32,97,99,116,105,118,101,32,96,60,98,45,110,97,118,45,105,116,101,109,62,96,92,110,32,32,97,99,116,105,118,101,78,97,118,73,116,101,109,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,79,110,108,121,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,99,117,114,114,101,110,116,108,121,32,97,99,116,105,118,101,32,96,60,98,45,116,97,98,62,96,92,110,32,32,47,47,32,84,104,105,115,32,112,114,111,112,32,105,115,32,115,110,105,102,102,101,100,32,98,121,32,116,104,101,32,96,60,98,45,116,97,98,62,96,32,99,104,105,108,100,92,110,32,32,97,99,116,105,118,101,84,97,98,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,99,97,114,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,99,111,110,116,101,110,116,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,83,121,110,111,110,121,109,32,102,111,114,32,39,98,111,116,116,111,109,39,92,110,32,32,101,110,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,84,104,105,115,32,112,114,111,112,32,105,115,32,115,110,105,102,102,101,100,32,98,121,32,116,104,101,32,96,60,98,45,116,97,98,62,96,32,99,104,105,108,100,92,110,32,32,108,97,122,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,97,118,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,110,97,118,87,114,97,112,112,101,114,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,110,111,70,97,100,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,75,101,121,78,97,118,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,78,97,118,83,116,121,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,84,65,66,83,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,84,97,98,115,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,84,65,66,83,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,118,105,100,101,58,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,98,118,84,97,98,115,58,32,116,104,105,115,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,47,47,32,73,110,100,101,120,32,111,102,32,99,117,114,114,101,110,116,32,116,97,98,92,110,32,32,32,32,32,32,99,117,114,114,101,110,116,84,97,98,58,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,44,32,45,49,41,44,92,110,32,32,32,32,32,32,47,47,32,65,114,114,97,121,32,111,102,32,100,105,114,101,99,116,32,99,104,105,108,100,32,96,60,98,45,116,97,98,62,96,32,105,110,115,116,97,110,99,101,115,44,32,105,110,32,68,79,77,32,111,114,100,101,114,92,110,32,32,32,32,32,32,116,97,98,115,58,32,91,93,44,92,110,32,32,32,32,32,32,47,47,32,65,114,114,97,121,32,111,102,32,99,104,105,108,100,32,105,110,115,116,97,110,99,101,115,32,114,101,103,105,115,116,101,114,101,100,32,40,102,111,114,32,116,114,105,103,103,101,114,105,110,103,32,114,101,97,99,116,105,118,101,32,117,112,100,97,116,101,115,41,92,110,32,32,32,32,32,32,114,101,103,105,115,116,101,114,101,100,84,97,98,115,58,32,91,93,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,102,97,100,101,58,32,102,117,110,99,116,105,111,110,32,102,97,100,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,104,105,115,32,99,111,109,112,117,116,101,100,32,112,114,111,112,32,105,115,32,115,110,105,102,102,101,100,32,98,121,32,116,104,101,32,116,97,98,32,99,104,105,108,100,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,110,111,70,97,100,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,111,99,97,108,78,97,118,67,108,97,115,115,58,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,78,97,118,67,108,97,115,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,108,97,115,115,101,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,99,97,114,100,32,38,38,32,116,104,105,115,46,118,101,114,116,105,99,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,101,115,46,112,117,115,104,40,39,99,97,114,100,45,104,101,97,100,101,114,39,44,32,39,104,45,49,48,48,39,44,32,39,98,111,114,100,101,114,45,98,111,116,116,111,109,45,48,39,44,32,39,114,111,117,110,100,101,100,45,48,39,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,46,99,111,110,99,97,116,40,99,108,97,115,115,101,115,44,32,91,116,104,105,115,46,110,97,118,67,108,97,115,115,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,116,111,73,110,116,101,103,101,114,41,40,110,101,119,86,97,108,117,101,44,32,45,49,41,59,92,110,32,32,32,32,32,32,111,108,100,86,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,116,111,73,110,116,101,103,101,114,41,40,111,108,100,86,97,108,117,101,44,32,48,41,59,92,110,32,32,32,32,32,32,118,97,114,32,36,116,97,98,32,61,32,116,104,105,115,46,116,97,98,115,91,110,101,119,86,97,108,117,101,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,36,116,97,98,32,38,38,32,33,36,116,97,98,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,97,116,101,84,97,98,40,36,116,97,98,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,114,121,32,110,101,120,116,32,111,114,32,112,114,101,118,32,116,97,98,115,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,60,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,112,114,101,118,105,111,117,115,84,97,98,40,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,110,101,120,116,84,97,98,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,99,117,114,114,101,110,116,84,97,98,92,34,44,32,102,117,110,99,116,105,111,110,32,99,117,114,114,101,110,116,84,97,98,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,59,32,47,47,32,69,110,115,117,114,101,32,111,110,108,121,32,111,110,101,32,116,97,98,32,105,115,32,97,99,116,105,118,101,32,97,116,32,109,111,115,116,92,110,92,110,32,32,32,32,116,104,105,115,46,116,97,98,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,36,116,97,98,44,32,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,32,61,61,61,32,110,101,119,86,97,108,117,101,32,38,38,32,33,36,116,97,98,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,36,116,97,98,46,108,111,99,97,108,65,99,116,105,118,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,105,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,36,116,97,98,46,108,111,99,97,108,65,99,116,105,118,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,32,47,47,32,85,112,100,97,116,101,32,116,104,101,32,118,45,109,111,100,101,108,92,110,92,110,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,105,110,100,101,120,41,59,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,116,97,98,115,92,34,44,32,102,117,110,99,116,105,111,110,32,116,97,98,115,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,47,47,32,87,101,32,117,115,101,32,96,95,117,105,100,96,32,105,110,115,116,101,97,100,32,111,102,32,96,115,97,102,101,73,100,40,41,96,44,32,97,115,32,116,104,101,32,108,97,116,101,114,32,105,115,32,99,104,97,110,103,101,100,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,92,110,32,32,32,32,47,47,32,105,102,32,110,111,32,101,120,112,108,105,99,105,116,32,73,68,32,105,115,32,112,114,111,118,105,100,101,100,44,32,99,97,117,115,105,110,103,32,100,117,112,108,105,99,97,116,101,32,101,109,105,116,115,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,36,116,97,98,91,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,67,79,77,80,79,78,69,78,84,95,85,73,68,95,75,69,89,93,59,92,110,32,32,32,32,125,41,44,32,111,108,100,86,97,108,117,101,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,36,116,97,98,91,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,67,79,77,80,79,78,69,78,84,95,85,73,68,95,75,69,89,93,59,92,110,32,32,32,32,125,41,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,101,110,115,117,114,101,32,96,99,117,114,114,101,110,116,84,97,98,96,32,104,97,115,32,98,101,101,110,32,115,101,116,32,102,105,114,115,116,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,101,109,105,116,32,115,104,97,108,108,111,119,32,99,111,112,105,101,115,32,111,102,32,116,104,101,32,110,101,119,32,97,110,100,32,111,108,100,32,97,114,114,97,121,115,32,111,102,32,116,97,98,115,44,92,110,32,32,32,32,32,32,32,32,47,47,32,116,111,32,112,114,101,118,101,110,116,32,117,115,101,114,115,32,102,114,111,109,32,112,111,116,101,110,116,105,97,108,108,121,32,109,117,116,97,116,105,110,103,32,116,104,101,32,105,110,116,101,114,110,97,108,32,97,114,114,97,121,115,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,68,44,32,110,101,119,86,97,108,117,101,46,115,108,105,99,101,40,41,44,32,111,108,100,86,97,108,117,101,46,115,108,105,99,101,40,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,114,101,103,105,115,116,101,114,101,100,84,97,98,115,92,34,44,32,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,101,100,84,97,98,115,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,84,97,98,115,40,41,59,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,67,114,101,97,116,101,32,112,114,105,118,97,116,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,115,92,110,32,32,32,32,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,40,116,114,117,101,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,40,102,97,108,115,101,41,59,32,47,47,32,69,110,115,117,114,101,32,110,111,32,114,101,102,101,114,101,110,99,101,115,32,116,111,32,99,104,105,108,100,32,105,110,115,116,97,110,99,101,115,32,101,120,105,115,116,92,110,92,110,32,32,32,32,116,104,105,115,46,116,97,98,115,32,61,32,91,93,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,114,101,103,105,115,116,101,114,84,97,98,58,32,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,84,97,98,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,116,104,105,115,46,114,101,103,105,115,116,101,114,101,100,84,97,98,115,44,32,36,116,97,98,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,103,105,115,116,101,114,101,100,84,97,98,115,46,112,117,115,104,40,36,116,97,98,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,110,114,101,103,105,115,116,101,114,84,97,98,58,32,102,117,110,99,116,105,111,110,32,117,110,114,101,103,105,115,116,101,114,84,97,98,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,114,101,103,105,115,116,101,114,101,100,84,97,98,115,32,61,32,116,104,105,115,46,114,101,103,105,115,116,101,114,101,100,84,97,98,115,46,115,108,105,99,101,40,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,36,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,116,32,33,61,61,32,36,116,97,98,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,68,79,77,32,111,98,115,101,114,118,101,114,32,105,115,32,110,101,101,100,101,100,32,116,111,32,100,101,116,101,99,116,32,99,104,97,110,103,101,115,32,105,110,32,111,114,100,101,114,32,111,102,32,116,97,98,115,92,110,32,32,32,32,115,101,116,79,98,115,101,114,118,101,114,58,32,102,117,110,99,116,105,111,110,32,115,101,116,79,98,115,101,114,118,101,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,111,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,116,114,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,32,38,38,32,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,46,100,105,115,99,111,110,110,101,99,116,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,100,105,102,102,105,99,117,108,116,32,116,111,32,116,101,115,116,32,109,117,116,97,116,105,111,110,32,111,98,115,101,114,118,101,114,32,105,110,32,74,83,68,79,77,32,42,47,92,110,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,117,112,100,97,116,101,84,97,98,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,59,32,47,47,32,87,97,116,99,104,32,102,111,114,32,99,104,97,110,103,101,115,32,116,111,32,96,60,98,45,116,97,98,62,96,32,115,117,98,32,99,111,109,112,111,110,101,110,116,115,92,110,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,115,101,114,118,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,111,98,115,101,114,118,101,68,111,109,41,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,44,32,104,97,110,100,108,101,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,76,105,115,116,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,115,117,98,116,114,101,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,58,32,91,39,105,100,39,93,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,84,97,98,115,58,32,102,117,110,99,116,105,111,110,32,103,101,116,84,97,98,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,116,97,98,115,32,61,32,116,104,105,115,46,114,101,103,105,115,116,101,114,101,100,84,97,98,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,116,97,98,46,36,99,104,105,108,100,114,101,110,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,36,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,116,46,95,105,115,84,97,98,59,92,110,32,32,32,32,32,32,32,32,125,41,46,108,101,110,103,116,104,32,61,61,61,32,48,59,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,68,79,77,32,79,114,100,101,114,32,111,102,32,84,97,98,115,92,110,92,110,32,32,32,32,32,32,118,97,114,32,111,114,100,101,114,32,61,32,91,93,59,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,116,111,111,32,100,105,102,102,105,99,117,108,116,32,116,111,32,116,101,115,116,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,73,83,95,66,82,79,87,83,69,82,32,38,38,32,36,116,97,98,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,114,101,108,121,32,111,110,32,116,104,101,32,68,79,77,32,119,104,101,110,32,109,111,117,110,116,101,100,32,116,111,32,103,101,116,32,116,104,101,32,92,34,116,114,117,101,92,34,32,111,114,100,101,114,32,111,102,32,116,104,101,32,96,60,98,45,116,97,98,62,96,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,32,32,47,47,32,96,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,41,96,32,97,108,119,97,121,115,32,114,101,116,117,114,110,115,32,101,108,101,109,101,110,116,115,32,105,110,32,100,111,99,117,109,101,110,116,32,111,114,100,101,114,44,32,114,101,103,97,114,100,108,101,115,115,32,111,102,92,110,32,32,32,32,32,32,32,32,47,47,32,111,114,100,101,114,32,115,112,101,99,105,102,105,101,100,32,105,110,32,116,104,101,32,115,101,108,101,99,116,111,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,111,114,32,61,32,36,116,97,98,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,35,92,34,46,99,111,110,99,97,116,40,36,116,97,98,46,115,97,102,101,73,100,40,41,41,59,92,110,32,32,32,32,32,32,32,32,125,41,46,106,111,105,110,40,39,44,32,39,41,59,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,101,108,101,99,116,65,108,108,41,40,115,101,108,101,99,116,111,114,44,32,116,104,105,115,46,36,101,108,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,36,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,101,108,46,105,100,59,92,110,32,32,32,32,32,32,32,32,125,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,83,116,97,98,108,101,32,115,111,114,116,32,107,101,101,112,115,32,116,104,101,32,111,114,105,103,105,110,97,108,32,111,114,100,101,114,32,105,102,32,110,111,116,32,102,111,117,110,100,32,105,110,32,116,104,101,32,96,111,114,100,101,114,96,32,97,114,114,97,121,44,92,110,32,32,32,32,32,32,47,47,32,119,104,105,99,104,32,119,105,108,108,32,98,101,32,97,110,32,101,109,112,116,121,32,97,114,114,97,121,32,98,101,102,111,114,101,32,109,111,117,110,116,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,115,116,97,98,108,101,95,115,111,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,116,97,98,108,101,83,111,114,116,41,40,36,116,97,98,115,44,32,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,114,100,101,114,46,105,110,100,101,120,79,102,40,97,46,115,97,102,101,73,100,40,41,41,32,45,32,111,114,100,101,114,46,105,110,100,101,120,79,102,40,98,46,115,97,102,101,73,100,40,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,112,100,97,116,101,84,97,98,115,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,84,97,98,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,116,97,98,115,32,61,32,116,104,105,115,46,103,101,116,84,97,98,115,40,41,59,32,47,47,32,70,105,110,100,32,108,97,115,116,32,97,99,116,105,118,101,32,110,111,110,45,100,105,115,97,98,108,101,100,32,116,97,98,32,105,110,32,99,117,114,114,101,110,116,32,116,97,98,115,92,110,32,32,32,32,32,32,47,47,32,87,101,32,116,114,117,115,116,32,116,97,98,32,115,116,97,116,101,32,111,118,101,114,32,96,99,117,114,114,101,110,116,84,97,98,96,44,32,105,110,32,99,97,115,101,32,116,97,98,115,32,119,101,114,101,32,97,100,100,101,100,47,114,101,109,111,118,101,100,47,114,101,45,111,114,100,101,114,101,100,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,97,98,73,110,100,101,120,32,61,32,36,116,97,98,115,46,105,110,100,101,120,79,102,40,36,116,97,98,115,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,46,102,105,110,100,40,102,117,110,99,116,105,111,110,32,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,116,97,98,46,108,111,99,97,108,65,99,116,105,118,101,32,38,38,32,33,36,116,97,98,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,32,32,125,41,41,59,32,47,47,32,69,108,115,101,32,116,114,121,32,115,101,116,116,105,110,103,32,116,111,32,96,99,117,114,114,101,110,116,84,97,98,96,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,97,98,73,110,100,101,120,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,84,97,98,32,61,32,116,104,105,115,46,99,117,114,114,101,110,116,84,97,98,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,84,97,98,32,62,61,32,36,116,97,98,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,108,97,115,116,32,116,97,98,32,98,101,105,110,103,32,114,101,109,111,118,101,100,44,32,115,111,32,102,105,110,100,32,116,104,101,32,108,97,115,116,32,110,111,110,45,100,105,115,97,98,108,101,100,32,116,97,98,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,73,110,100,101,120,32,61,32,36,116,97,98,115,46,105,110,100,101,120,79,102,40,36,116,97,98,115,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,46,102,105,110,100,40,110,111,116,68,105,115,97,98,108,101,100,41,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,36,116,97,98,115,91,99,117,114,114,101,110,116,84,97,98,93,32,38,38,32,33,36,116,97,98,115,91,99,117,114,114,101,110,116,84,97,98,93,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,67,117,114,114,101,110,116,32,116,97,98,32,105,115,32,110,111,116,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,73,110,100,101,120,32,61,32,99,117,114,114,101,110,116,84,97,98,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,47,47,32,69,108,115,101,32,102,105,110,100,32,102,105,114,115,116,32,110,111,110,45,100,105,115,97,98,108,101,100,32,116,97,98,32,105,110,32,99,117,114,114,101,110,116,32,116,97,98,115,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,97,98,73,110,100,101,120,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,116,97,98,73,110,100,101,120,32,61,32,36,116,97,98,115,46,105,110,100,101,120,79,102,40,36,116,97,98,115,46,102,105,110,100,40,110,111,116,68,105,115,97,98,108,101,100,41,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,69,110,115,117,114,101,32,111,110,108,121,32,111,110,101,32,116,97,98,32,105,115,32,97,99,116,105,118,101,32,97,116,32,97,32,116,105,109,101,92,110,92,110,92,110,32,32,32,32,32,32,36,116,97,98,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,36,116,97,98,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,36,116,97,98,46,108,111,99,97,108,65,99,116,105,118,101,32,61,32,105,110,100,101,120,32,61,61,61,32,116,97,98,73,110,100,101,120,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,116,97,98,115,32,61,32,36,116,97,98,115,59,92,110,32,32,32,32,32,32,116,104,105,115,46,99,117,114,114,101,110,116,84,97,98,32,61,32,116,97,98,73,110,100,101,120,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,70,105,110,100,32,97,32,98,117,116,116,111,110,32,116,104,97,116,32,99,111,110,116,114,111,108,115,32,97,32,116,97,98,44,32,103,105,118,101,110,32,116,104,101,32,116,97,98,32,114,101,102,101,114,101,110,99,101,92,110,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,116,104,101,32,98,117,116,116,111,110,32,118,109,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,103,101,116,66,117,116,116,111,110,70,111,114,84,97,98,58,32,102,117,110,99,116,105,111,110,32,103,101,116,66,117,116,116,111,110,70,111,114,84,97,98,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,116,104,105,115,46,36,114,101,102,115,46,98,117,116,116,111,110,115,32,124,124,32,91,93,41,46,102,105,110,100,40,102,117,110,99,116,105,111,110,32,40,36,98,116,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,98,116,110,46,116,97,98,32,61,61,61,32,36,116,97,98,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,70,111,114,99,101,32,97,32,98,117,116,116,111,110,32,116,111,32,114,101,45,114,101,110,100,101,114,32,105,116,115,32,99,111,110,116,101,110,116,44,32,103,105,118,101,110,32,97,32,96,60,98,45,116,97,98,62,96,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,47,47,32,67,97,108,108,101,100,32,98,121,32,96,60,98,45,116,97,98,62,96,32,111,110,32,96,117,112,100,97,116,101,40,41,96,92,110,32,32,32,32,117,112,100,97,116,101,66,117,116,116,111,110,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,66,117,116,116,111,110,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,98,117,116,116,111,110,32,61,32,116,104,105,115,46,103,101,116,66,117,116,116,111,110,70,111,114,84,97,98,40,36,116,97,98,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,36,98,117,116,116,111,110,32,38,38,32,36,98,117,116,116,111,110,46,36,102,111,114,99,101,85,112,100,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,36,98,117,116,116,111,110,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,65,99,116,105,118,97,116,101,32,97,32,116,97,98,32,103,105,118,101,110,32,97,32,96,60,98,45,116,97,98,62,96,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,47,47,32,65,108,115,111,32,97,99,99,101,115,115,101,100,32,98,121,32,96,60,98,45,116,97,98,62,96,92,110,32,32,32,32,97,99,116,105,118,97,116,101,84,97,98,58,32,102,117,110,99,116,105,111,110,32,97,99,116,105,118,97,116,101,84,97,98,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,84,97,98,32,61,32,116,104,105,115,46,99,117,114,114,101,110,116,84,97,98,44,92,110,32,32,32,32,32,32,32,32,32,32,36,116,97,98,115,32,61,32,116,104,105,115,46,116,97,98,115,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,36,116,97,98,115,46,105,110,100,101,120,79,102,40,36,116,97,98,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,33,61,61,32,99,117,114,114,101,110,116,84,97,98,32,38,38,32,105,110,100,101,120,32,62,32,45,49,32,38,38,32,33,36,116,97,98,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,97,98,69,118,101,110,116,32,61,32,110,101,119,32,95,117,116,105,108,115,95,98,118,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,66,118,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,69,86,69,78,84,95,78,65,77,69,95,65,67,84,73,86,65,84,69,95,84,65,66,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,110,99,101,108,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,117,101,84,97,114,103,101,116,58,32,116,104,105,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,73,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,116,97,98,69,118,101,110,116,46,116,121,112,101,44,32,105,110,100,101,120,44,32,99,117,114,114,101,110,116,84,97,98,44,32,116,97,98,69,118,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,97,98,69,118,101,110,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,99,117,114,114,101,110,116,84,97,98,32,61,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,47,47,32,67,111,117,108,100,110,39,116,32,115,101,116,32,116,97,98,44,32,115,111,32,101,110,115,117,114,101,32,118,45,109,111,100,101,108,32,105,115,32,117,112,32,116,111,32,100,97,116,101,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,115,104,111,117,108,100,32,114,97,114,101,108,121,32,104,97,112,112,101,110,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,114,101,115,117,108,116,32,38,38,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,32,33,61,61,32,99,117,114,114,101,110,116,84,97,98,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,99,117,114,114,101,110,116,84,97,98,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,68,101,97,99,116,105,118,97,116,101,32,97,32,116,97,98,32,103,105,118,101,110,32,97,32,96,60,98,45,116,97,98,62,96,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,47,47,32,65,99,99,101,115,115,101,100,32,98,121,32,96,60,98,45,116,97,98,62,96,92,110,32,32,32,32,100,101,97,99,116,105,118,97,116,101,84,97,98,58,32,102,117,110,99,116,105,111,110,32,100,101,97,99,116,105,118,97,116,101,84,97,98,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,70,105,110,100,32,102,105,114,115,116,32,110,111,110,45,100,105,115,97,98,108,101,100,32,116,97,98,32,116,104,97,116,32,105,115,110,39,116,32,116,104,101,32,111,110,101,32,98,101,105,110,103,32,100,101,97,99,116,105,118,97,116,101,100,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,110,111,32,116,97,98,115,32,97,114,101,32,97,118,97,105,108,97,98,108,101,44,32,116,104,101,110,32,100,111,110,39,116,32,100,101,97,99,116,105,118,97,116,101,32,99,117,114,114,101,110,116,32,116,97,98,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,97,99,116,105,118,97,116,101,84,97,98,40,116,104,105,115,46,116,97,98,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,36,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,116,32,33,61,61,32,36,116,97,98,59,92,110,32,32,32,32,32,32,32,32,125,41,46,102,105,110,100,40,110,111,116,68,105,115,97,98,108,101,100,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,115,104,111,117,108,100,32,110,101,118,101,114,47,114,97,114,101,108,121,32,104,97,112,112,101,110,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,70,111,99,117,115,32,97,32,116,97,98,32,98,117,116,116,111,110,32,103,105,118,101,110,32,105,116,115,32,96,60,98,45,116,97,98,62,96,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,102,111,99,117,115,66,117,116,116,111,110,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,66,117,116,116,111,110,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,87,114,97,112,32,105,110,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,101,110,115,117,114,101,32,68,79,77,32,104,97,115,32,99,111,109,112,108,101,116,101,100,32,114,101,110,100,101,114,105,110,103,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,95,116,104,105,115,51,46,103,101,116,66,117,116,116,111,110,70,111,114,84,97,98,40,36,116,97,98,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,69,109,105,116,32,97,32,99,108,105,99,107,32,101,118,101,110,116,32,111,110,32,97,32,115,112,101,99,105,102,105,101,100,32,96,60,98,45,116,97,98,62,96,32,99,111,109,112,111,110,101,110,116,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,101,109,105,116,84,97,98,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,101,109,105,116,84,97,98,67,108,105,99,107,40,116,97,98,44,32,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,105,115,69,118,101,110,116,41,40,101,118,101,110,116,41,32,38,38,32,116,97,98,32,38,38,32,116,97,98,46,36,101,109,105,116,32,38,38,32,33,116,97,98,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,97,98,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,67,108,105,99,107,32,104,97,110,100,108,101,114,92,110,32,32,32,32,99,108,105,99,107,84,97,98,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,84,97,98,40,36,116,97,98,44,32,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,97,116,101,84,97,98,40,36,116,97,98,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,84,97,98,67,108,105,99,107,40,36,116,97,98,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,77,111,118,101,32,116,111,32,102,105,114,115,116,32,110,111,110,45,100,105,115,97,98,108,101,100,32,116,97,98,92,110,32,32,32,32,102,105,114,115,116,84,97,98,58,32,102,117,110,99,116,105,111,110,32,102,105,114,115,116,84,97,98,40,102,111,99,117,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,116,97,98,32,61,32,116,104,105,115,46,116,97,98,115,46,102,105,110,100,40,110,111,116,68,105,115,97,98,108,101,100,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,97,99,116,105,118,97,116,101,84,97,98,40,36,116,97,98,41,32,38,38,32,102,111,99,117,115,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,102,111,99,117,115,66,117,116,116,111,110,40,36,116,97,98,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,84,97,98,67,108,105,99,107,40,36,116,97,98,44,32,102,111,99,117,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,77,111,118,101,32,116,111,32,112,114,101,118,105,111,117,115,32,110,111,110,45,100,105,115,97,98,108,101,100,32,116,97,98,92,110,32,32,32,32,112,114,101,118,105,111,117,115,84,97,98,58,32,102,117,110,99,116,105,111,110,32,112,114,101,118,105,111,117,115,84,97,98,40,102,111,99,117,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,73,110,100,101,120,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,109,97,116,104,77,97,120,41,40,116,104,105,115,46,99,117,114,114,101,110,116,84,97,98,44,32,48,41,59,92,110,32,32,32,32,32,32,118,97,114,32,36,116,97,98,32,61,32,116,104,105,115,46,116,97,98,115,46,115,108,105,99,101,40,48,44,32,99,117,114,114,101,110,116,73,110,100,101,120,41,46,114,101,118,101,114,115,101,40,41,46,102,105,110,100,40,110,111,116,68,105,115,97,98,108,101,100,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,97,99,116,105,118,97,116,101,84,97,98,40,36,116,97,98,41,32,38,38,32,102,111,99,117,115,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,102,111,99,117,115,66,117,116,116,111,110,40,36,116,97,98,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,84,97,98,67,108,105,99,107,40,36,116,97,98,44,32,102,111,99,117,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,77,111,118,101,32,116,111,32,110,101,120,116,32,110,111,110,45,100,105,115,97,98,108,101,100,32,116,97,98,92,110,32,32,32,32,110,101,120,116,84,97,98,58,32,102,117,110,99,116,105,111,110,32,110,101,120,116,84,97,98,40,102,111,99,117,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,73,110,100,101,120,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,109,97,116,104,77,97,120,41,40,116,104,105,115,46,99,117,114,114,101,110,116,84,97,98,44,32,45,49,41,59,92,110,32,32,32,32,32,32,118,97,114,32,36,116,97,98,32,61,32,116,104,105,115,46,116,97,98,115,46,115,108,105,99,101,40,99,117,114,114,101,110,116,73,110,100,101,120,32,43,32,49,41,46,102,105,110,100,40,110,111,116,68,105,115,97,98,108,101,100,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,97,99,116,105,118,97,116,101,84,97,98,40,36,116,97,98,41,32,38,38,32,102,111,99,117,115,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,102,111,99,117,115,66,117,116,116,111,110,40,36,116,97,98,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,84,97,98,67,108,105,99,107,40,36,116,97,98,44,32,102,111,99,117,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,77,111,118,101,32,116,111,32,108,97,115,116,32,110,111,110,45,100,105,115,97,98,108,101,100,32,116,97,98,92,110,32,32,32,32,108,97,115,116,84,97,98,58,32,102,117,110,99,116,105,111,110,32,108,97,115,116,84,97,98,40,102,111,99,117,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,116,97,98,32,61,32,116,104,105,115,46,116,97,98,115,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,46,102,105,110,100,40,110,111,116,68,105,115,97,98,108,101,100,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,97,99,116,105,118,97,116,101,84,97,98,40,36,116,97,98,41,32,38,38,32,102,111,99,117,115,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,102,111,99,117,115,66,117,116,116,111,110,40,36,116,97,98,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,84,97,98,67,108,105,99,107,40,36,116,97,98,44,32,102,111,99,117,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,97,108,105,103,110,32,61,32,116,104,105,115,46,97,108,105,103,110,44,92,110,32,32,32,32,32,32,32,32,99,97,114,100,32,61,32,116,104,105,115,46,99,97,114,100,44,92,110,32,32,32,32,32,32,32,32,101,110,100,32,61,32,116,104,105,115,46,101,110,100,44,92,110,32,32,32,32,32,32,32,32,102,105,108,108,32,61,32,116,104,105,115,46,102,105,108,108,44,92,110,32,32,32,32,32,32,32,32,102,105,114,115,116,84,97,98,32,61,32,116,104,105,115,46,102,105,114,115,116,84,97,98,44,92,110,32,32,32,32,32,32,32,32,106,117,115,116,105,102,105,101,100,32,61,32,116,104,105,115,46,106,117,115,116,105,102,105,101,100,44,92,110,32,32,32,32,32,32,32,32,108,97,115,116,84,97,98,32,61,32,116,104,105,115,46,108,97,115,116,84,97,98,44,92,110,32,32,32,32,32,32,32,32,110,101,120,116,84,97,98,32,61,32,116,104,105,115,46,110,101,120,116,84,97,98,44,92,110,32,32,32,32,32,32,32,32,110,111,75,101,121,78,97,118,32,61,32,116,104,105,115,46,110,111,75,101,121,78,97,118,44,92,110,32,32,32,32,32,32,32,32,110,111,78,97,118,83,116,121,108,101,32,61,32,116,104,105,115,46,110,111,78,97,118,83,116,121,108,101,44,92,110,32,32,32,32,32,32,32,32,112,105,108,108,115,32,61,32,116,104,105,115,46,112,105,108,108,115,44,92,110,32,32,32,32,32,32,32,32,112,114,101,118,105,111,117,115,84,97,98,32,61,32,116,104,105,115,46,112,114,101,118,105,111,117,115,84,97,98,44,92,110,32,32,32,32,32,32,32,32,115,109,97,108,108,32,61,32,116,104,105,115,46,115,109,97,108,108,44,92,110,32,32,32,32,32,32,32,32,36,116,97,98,115,32,61,32,116,104,105,115,46,116,97,98,115,44,92,110,32,32,32,32,32,32,32,32,118,101,114,116,105,99,97,108,32,61,32,116,104,105,115,46,118,101,114,116,105,99,97,108,59,32,47,47,32,67,117,114,114,101,110,116,108,121,32,97,99,116,105,118,101,32,116,97,98,92,110,92,110,32,32,32,32,118,97,114,32,36,97,99,116,105,118,101,84,97,98,32,61,32,36,116,97,98,115,46,102,105,110,100,40,102,117,110,99,116,105,111,110,32,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,36,116,97,98,46,108,111,99,97,108,65,99,116,105,118,101,32,38,38,32,33,36,116,97,98,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,125,41,59,32,47,47,32,84,97,98,32,98,117,116,116,111,110,32,116,111,32,97,108,108,111,119,32,102,111,99,117,115,105,110,103,32,119,104,101,110,32,110,111,32,97,99,116,105,118,101,32,116,97,98,32,102,111,117,110,100,32,40,107,101,121,110,97,118,32,111,110,108,121,41,92,110,92,110,32,32,32,32,118,97,114,32,36,102,97,108,108,98,97,99,107,84,97,98,32,61,32,36,116,97,98,115,46,102,105,110,100,40,102,117,110,99,116,105,111,110,32,40,36,116,97,98,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,36,116,97,98,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,125,41,59,32,47,47,32,70,111,114,32,101,97,99,104,32,96,60,98,45,116,97,98,62,96,32,102,111,117,110,100,32,99,114,101,97,116,101,32,116,104,101,32,116,97,98,32,98,117,116,116,111,110,115,92,110,92,110,32,32,32,32,118,97,114,32,36,98,117,116,116,111,110,115,32,61,32,36,116,97,98,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,36,116,97,98,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,111,110,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,97,102,101,73,100,32,61,32,36,116,97,98,46,115,97,102,101,73,100,59,32,47,47,32,69,110,115,117,114,101,32,97,116,32,108,101,97,115,116,32,111,110,101,32,116,97,98,32,98,117,116,116,111,110,32,105,115,32,102,111,99,117,115,97,98,108,101,32,119,104,101,110,32,107,101,121,110,97,118,32,101,110,97,98,108,101,100,32,40,105,102,32,112,111,115,115,105,98,108,101,41,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,97,98,73,110,100,101,120,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,110,111,75,101,121,78,97,118,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,66,117,116,116,111,110,115,32,97,114,101,32,110,111,116,32,105,110,32,116,97,98,32,105,110,100,101,120,32,117,110,108,101,115,115,32,97,99,116,105,118,101,44,32,111,114,32,97,32,102,97,108,108,98,97,99,107,32,116,97,98,92,110,32,32,32,32,32,32,32,32,116,97,98,73,110,100,101,120,32,61,32,45,49,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,36,116,97,98,32,61,61,61,32,36,97,99,116,105,118,101,84,97,98,32,124,124,32,33,36,97,99,116,105,118,101,84,97,98,32,38,38,32,36,116,97,98,32,61,61,61,32,36,102,97,108,108,98,97,99,107,84,97,98,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,80,108,97,99,101,32,116,97,98,32,98,117,116,116,111,110,32,105,110,32,116,97,98,32,115,101,113,117,101,110,99,101,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,73,110,100,101,120,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,66,86,84,97,98,66,117,116,116,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,114,111,108,115,58,32,115,97,102,101,73,100,32,63,32,115,97,102,101,73,100,40,41,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,36,116,97,98,46,99,111,110,116,114,111,108,108,101,100,66,121,32,124,124,32,40,115,97,102,101,73,100,32,63,32,115,97,102,101,73,100,40,92,34,95,66,86,95,116,97,98,95,98,117,116,116,111,110,95,92,34,41,32,58,32,110,117,108,108,41,44,92,110,32,32,32,32,32,32,32,32,32,32,110,111,75,101,121,78,97,118,58,32,110,111,75,101,121,78,97,118,44,92,110,32,32,32,32,32,32,32,32,32,32,112,111,115,73,110,83,101,116,58,32,105,110,100,101,120,32,43,32,49,44,92,110,32,32,32,32,32,32,32,32,32,32,115,101,116,83,105,122,101,58,32,36,116,97,98,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,58,32,36,116,97,98,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,73,110,100,101,120,58,32,116,97,98,73,110,100,101,120,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,40,95,111,110,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,110,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,44,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,99,108,105,99,107,84,97,98,40,36,116,97,98,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,110,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,69,86,69,78,84,95,78,65,77,69,95,70,73,82,83,84,44,32,102,105,114,115,116,84,97,98,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,110,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,69,86,69,78,84,95,78,65,77,69,95,80,82,69,86,44,32,112,114,101,118,105,111,117,115,84,97,98,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,110,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,69,86,69,78,84,95,78,65,77,69,95,78,69,88,84,44,32,110,101,120,116,84,97,98,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,111,110,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,69,86,69,78,84,95,78,65,77,69,95,76,65,83,84,44,32,108,97,115,116,84,97,98,41,44,32,95,111,110,41,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,36,116,97,98,91,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,67,79,77,80,79,78,69,78,84,95,85,73,68,95,75,69,89,93,32,124,124,32,105,110,100,101,120,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,39,98,117,116,116,111,110,115,39,44,92,110,32,32,32,32,32,32,32,32,47,47,32,78,101,101,100,101,100,32,116,111,32,109,97,107,101,32,96,116,104,105,115,46,36,114,101,102,115,46,98,117,116,116,111,110,115,96,32,97,110,32,97,114,114,97,121,92,110,32,32,32,32,32,32,32,32,114,101,102,73,110,70,111,114,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,36,110,97,118,32,61,32,104,40,95,110,97,118,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,66,78,97,118,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,108,111,99,97,108,78,97,118,67,108,97,115,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,116,97,98,108,105,115,116,39,44,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,66,86,95,116,97,98,95,99,111,110,116,114,111,108,115,95,39,41,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,102,105,108,108,58,32,102,105,108,108,44,92,110,32,32,32,32,32,32,32,32,106,117,115,116,105,102,105,101,100,58,32,106,117,115,116,105,102,105,101,100,44,92,110,32,32,32,32,32,32,32,32,97,108,105,103,110,58,32,97,108,105,103,110,44,92,110,32,32,32,32,32,32,32,32,116,97,98,115,58,32,33,110,111,78,97,118,83,116,121,108,101,32,38,38,32,33,112,105,108,108,115,44,92,110,32,32,32,32,32,32,32,32,112,105,108,108,115,58,32,33,110,111,78,97,118,83,116,121,108,101,32,38,38,32,112,105,108,108,115,44,92,110,32,32,32,32,32,32,32,32,118,101,114,116,105,99,97,108,58,32,118,101,114,116,105,99,97,108,44,92,110,32,32,32,32,32,32,32,32,115,109,97,108,108,58,32,115,109,97,108,108,44,92,110,32,32,32,32,32,32,32,32,99,97,114,100,72,101,97,100,101,114,58,32,99,97,114,100,32,38,38,32,33,118,101,114,116,105,99,97,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,110,97,118,39,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,83,76,79,84,95,78,65,77,69,95,84,65,66,83,95,83,84,65,82,84,41,32,124,124,32,104,40,41,44,32,36,98,117,116,116,111,110,115,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,83,76,79,84,95,78,65,77,69,95,84,65,66,83,95,69,78,68,41,32,124,124,32,104,40,41,93,41,59,92,110,32,32,32,32,36,110,97,118,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,39,99,97,114,100,45,104,101,97,100,101,114,39,58,32,99,97,114,100,32,38,38,32,33,118,101,114,116,105,99,97,108,32,38,38,32,33,101,110,100,44,92,110,32,32,32,32,32,32,32,32,39,99,97,114,100,45,102,111,111,116,101,114,39,58,32,99,97,114,100,32,38,38,32,33,118,101,114,116,105,99,97,108,32,38,38,32,101,110,100,44,92,110,32,32,32,32,32,32,32,32,39,99,111,108,45,97,117,116,111,39,58,32,118,101,114,116,105,99,97,108,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,110,97,118,87,114,97,112,112,101,114,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,107,101,121,58,32,39,98,118,45,116,97,98,115,45,110,97,118,39,92,110,32,32,32,32,125,44,32,91,36,110,97,118,93,41,59,92,110,32,32,32,32,118,97,114,32,36,99,104,105,108,100,114,101,110,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,32,124,124,32,91,93,59,92,110,32,32,32,32,118,97,114,32,36,101,109,112,116,121,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,36,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,36,101,109,112,116,121,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,39,116,97,98,45,112,97,110,101,39,44,32,39,97,99,116,105,118,101,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,99,97,114,100,45,98,111,100,121,39,58,32,99,97,114,100,92,110,32,32,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,98,118,45,101,109,112,116,121,45,116,97,98,39,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,83,76,79,84,95,78,65,77,69,95,69,77,80,84,89,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,116,97,98,45,99,111,110,116,101,110,116,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,99,111,108,58,32,118,101,114,116,105,99,97,108,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,99,111,110,116,101,110,116,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,66,86,95,116,97,98,95,99,111,110,116,97,105,110,101,114,95,39,41,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,107,101,121,58,32,39,98,118,45,99,111,110,116,101,110,116,39,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,99,111,110,116,101,110,116,39,92,110,32,32,32,32,125,44,32,91,36,99,104,105,108,100,114,101,110,44,32,36,101,109,112,116,121,93,41,59,32,47,47,32,82,101,110,100,101,114,32,102,105,110,97,108,32,111,117,116,112,117,116,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,104,105,115,46,116,97,103,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,116,97,98,115,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,119,58,32,118,101,114,116,105,99,97,108,44,92,110,32,32,32,32,32,32,32,32,39,110,111,45,103,117,116,116,101,114,115,39,58,32,118,101,114,116,105,99,97,108,32,38,38,32,99,97,114,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,101,110,100,32,63,32,36,99,111,110,116,101,110,116,32,58,32,104,40,41,44,32,36,110,97,118,44,32,101,110,100,32,63,32,104,40,41,32,58,32,36,99,111,110,116,101,110,116,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,116,97,98,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,105,109,101,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,105,109,101,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,105,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,84,105,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,105,109,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,84,105,109,101,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,105,109,101,47,116,105,109,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,84,105,109,101,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,84,105,109,101,58,32,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,84,105,109,101,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,105,109,101,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,105,109,101,47,116,105,109,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,105,109,101,47,116,105,109,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,105,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,84,105,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,99,97,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,99,97,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,105,99,111,110,115,47,105,99,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,115,108,105,99,101,100,84,111,65,114,114,97,121,40,97,114,114,44,32,105,41,32,123,32,114,101,116,117,114,110,32,95,97,114,114,97,121,87,105,116,104,72,111,108,101,115,40,97,114,114,41,32,124,124,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,76,105,109,105,116,40,97,114,114,44,32,105,41,32,124,124,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,44,32,105,41,32,124,124,32,95,110,111,110,73,116,101,114,97,98,108,101,82,101,115,116,40,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,110,111,110,73,116,101,114,97,98,108,101,82,101,115,116,40,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,100,101,115,116,114,117,99,116,117,114,101,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,92,34,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,32,123,32,105,102,32,40,33,111,41,32,114,101,116,117,114,110,59,32,105,102,32,40,116,121,112,101,111,102,32,111,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,118,97,114,32,110,32,61,32,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,111,41,46,115,108,105,99,101,40,56,44,32,45,49,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,79,98,106,101,99,116,92,34,32,38,38,32,111,46,99,111,110,115,116,114,117,99,116,111,114,41,32,110,32,61,32,111,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,59,32,105,102,32,40,110,32,61,61,61,32,92,34,77,97,112,92,34,32,124,124,32,110,32,61,61,61,32,92,34,83,101,116,92,34,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,111,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,65,114,103,117,109,101,110,116,115,92,34,32,124,124,32,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,44,32,108,101,110,41,32,123,32,105,102,32,40,108,101,110,32,61,61,32,110,117,108,108,32,124,124,32,108,101,110,32,62,32,97,114,114,46,108,101,110,103,116,104,41,32,108,101,110,32,61,32,97,114,114,46,108,101,110,103,116,104,59,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,97,114,114,50,32,61,32,110,101,119,32,65,114,114,97,121,40,108,101,110,41,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,32,97,114,114,50,91,105,93,32,61,32,97,114,114,91,105,93,59,32,125,32,114,101,116,117,114,110,32,97,114,114,50,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,76,105,109,105,116,40,97,114,114,44,32,105,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,124,124,32,33,40,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,97,114,114,41,41,41,32,114,101,116,117,114,110,59,32,118,97,114,32,95,97,114,114,32,61,32,91,93,59,32,118,97,114,32,95,110,32,61,32,116,114,117,101,59,32,118,97,114,32,95,100,32,61,32,102,97,108,115,101,59,32,118,97,114,32,95,101,32,61,32,117,110,100,101,102,105,110,101,100,59,32,116,114,121,32,123,32,102,111,114,32,40,118,97,114,32,95,105,32,61,32,97,114,114,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,44,32,95,115,59,32,33,40,95,110,32,61,32,40,95,115,32,61,32,95,105,46,110,101,120,116,40,41,41,46,100,111,110,101,41,59,32,95,110,32,61,32,116,114,117,101,41,32,123,32,95,97,114,114,46,112,117,115,104,40,95,115,46,118,97,108,117,101,41,59,32,105,102,32,40,105,32,38,38,32,95,97,114,114,46,108,101,110,103,116,104,32,61,61,61,32,105,41,32,98,114,101,97,107,59,32,125,32,125,32,99,97,116,99,104,32,40,101,114,114,41,32,123,32,95,100,32,61,32,116,114,117,101,59,32,95,101,32,61,32,101,114,114,59,32,125,32,102,105,110,97,108,108,121,32,123,32,116,114,121,32,123,32,105,102,32,40,33,95,110,32,38,38,32,95,105,91,92,34,114,101,116,117,114,110,92,34,93,32,33,61,32,110,117,108,108,41,32,95,105,91,92,34,114,101,116,117,114,110,92,34,93,40,41,59,32,125,32,102,105,110,97,108,108,121,32,123,32,105,102,32,40,95,100,41,32,116,104,114,111,119,32,95,101,59,32,125,32,125,32,114,101,116,117,114,110,32,95,97,114,114,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,87,105,116,104,72,111,108,101,115,40,97,114,114,41,32,123,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,41,41,32,114,101,116,117,114,110,32,97,114,114,59,32,125,92,110,92,110,47,47,32,66,84,105,109,101,32,99,111,110,116,114,111,108,32,40,110,111,116,32,102,111,114,109,32,105,110,112,117,116,32,99,111,110,116,114,111,108,41,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,97,108,117,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,92,110,32,32,100,101,102,97,117,108,116,86,97,108,117,101,58,32,39,39,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,92,110,92,110,118,97,114,32,78,85,77,69,82,73,67,32,61,32,39,110,117,109,101,114,105,99,39,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,92,110,118,97,114,32,112,97,100,76,101,102,116,90,101,114,111,115,32,61,32,102,117,110,99,116,105,111,110,32,112,97,100,76,101,102,116,90,101,114,111,115,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,92,34,48,48,92,34,46,99,111,110,99,97,116,40,118,97,108,117,101,32,124,124,32,39,39,41,46,115,108,105,99,101,40,45,50,41,59,92,110,125,59,92,110,92,110,118,97,114,32,112,97,114,115,101,72,77,83,32,61,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,72,77,83,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,83,116,114,105,110,103,41,40,118,97,108,117,101,41,59,92,110,32,32,118,97,114,32,104,104,32,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,109,109,32,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,115,115,32,61,32,110,117,108,108,59,92,110,92,110,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,82,88,95,84,73,77,69,46,116,101,115,116,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,59,92,110,92,110,32,32,32,32,118,97,114,32,95,118,97,108,117,101,36,115,112,108,105,116,36,109,97,112,32,61,32,118,97,108,117,101,46,115,112,108,105,116,40,39,58,39,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,118,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,116,111,73,110,116,101,103,101,114,41,40,118,44,32,110,117,108,108,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,118,97,114,32,95,118,97,108,117,101,36,115,112,108,105,116,36,109,97,112,50,32,61,32,95,115,108,105,99,101,100,84,111,65,114,114,97,121,40,95,118,97,108,117,101,36,115,112,108,105,116,36,109,97,112,44,32,51,41,59,92,110,92,110,32,32,32,32,104,104,32,61,32,95,118,97,108,117,101,36,115,112,108,105,116,36,109,97,112,50,91,48,93,59,92,110,32,32,32,32,109,109,32,61,32,95,118,97,108,117,101,36,115,112,108,105,116,36,109,97,112,50,91,49,93,59,92,110,32,32,32,32,115,115,32,61,32,95,118,97,108,117,101,36,115,112,108,105,116,36,109,97,112,50,91,50,93,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,104,111,117,114,115,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,104,104,41,32,63,32,110,117,108,108,32,58,32,104,104,44,92,110,32,32,32,32,109,105,110,117,116,101,115,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,109,109,41,32,63,32,110,117,108,108,32,58,32,109,109,44,92,110,32,32,32,32,115,101,99,111,110,100,115,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,115,115,41,32,63,32,110,117,108,108,32,58,32,115,115,44,92,110,32,32,32,32,97,109,112,109,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,104,104,41,32,124,124,32,104,104,32,60,32,49,50,32,63,32,48,32,58,32,49,92,110,32,32,125,59,92,110,125,59,92,110,92,110,118,97,114,32,102,111,114,109,97,116,72,77,83,32,61,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,72,77,83,40,95,114,101,102,41,32,123,92,110,32,32,118,97,114,32,104,111,117,114,115,32,61,32,95,114,101,102,46,104,111,117,114,115,44,92,110,32,32,32,32,32,32,109,105,110,117,116,101,115,32,61,32,95,114,101,102,46,109,105,110,117,116,101,115,44,92,110,32,32,32,32,32,32,115,101,99,111,110,100,115,32,61,32,95,114,101,102,46,115,101,99,111,110,100,115,59,92,110,32,32,118,97,114,32,114,101,113,117,105,114,101,83,101,99,111,110,100,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,102,97,108,115,101,59,92,110,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,78,117,108,108,41,40,104,111,117,114,115,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,78,117,108,108,41,40,109,105,110,117,116,101,115,41,32,124,124,32,114,101,113,117,105,114,101,83,101,99,111,110,100,115,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,78,117,108,108,41,40,115,101,99,111,110,100,115,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,39,39,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,104,109,115,32,61,32,91,104,111,117,114,115,44,32,109,105,110,117,116,101,115,44,32,114,101,113,117,105,114,101,83,101,99,111,110,100,115,32,63,32,115,101,99,111,110,100,115,32,58,32,48,93,59,92,110,32,32,114,101,116,117,114,110,32,104,109,115,46,109,97,112,40,112,97,100,76,101,102,116,90,101,114,111,115,41,46,106,111,105,110,40,39,58,39,41,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,112,105,99,107,41,40,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,112,114,111,112,115,44,32,91,39,108,97,98,101,108,73,110,99,114,101,109,101,110,116,39,44,32,39,108,97,98,101,108,68,101,99,114,101,109,101,110,116,39,93,41,41,44,32,123,125,44,32,123,92,110,32,32,47,47,32,73,68,32,111,102,32,108,97,98,101,108,32,101,108,101,109,101,110,116,92,110,32,32,97,114,105,97,76,97,98,101,108,108,101,100,98,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,104,105,100,100,101,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,104,105,100,101,72,101,97,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,69,120,112,108,105,99,105,116,108,121,32,102,111,114,99,101,32,49,50,32,111,114,32,50,52,32,104,111,117,114,32,116,105,109,101,92,110,32,32,47,47,32,68,101,102,97,117,108,116,32,105,115,32,116,111,32,117,115,101,32,114,101,115,111,108,118,101,100,32,108,111,99,97,108,101,32,102,111,114,32,49,50,47,50,52,32,104,111,117,114,32,100,105,115,112,108,97,121,92,110,32,32,47,47,32,84,114,105,45,115,116,97,116,101,58,32,96,116,114,117,101,96,32,61,32,49,50,44,32,96,102,97,108,115,101,96,32,61,32,50,52,44,32,96,110,117,108,108,96,32,61,32,97,117,116,111,92,110,32,32,104,111,117,114,49,50,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,110,117,108,108,41,44,92,110,32,32,108,97,98,101,108,65,109,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,65,77,39,41,44,92,110,32,32,108,97,98,101,108,65,109,112,109,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,65,77,47,80,77,39,41,44,92,110,32,32,108,97,98,101,108,72,111,117,114,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,72,111,117,114,115,39,41,44,92,110,32,32,108,97,98,101,108,77,105,110,117,116,101,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,77,105,110,117,116,101,115,39,41,44,92,110,32,32,108,97,98,101,108,78,111,84,105,109,101,83,101,108,101,99,116,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,78,111,32,116,105,109,101,32,115,101,108,101,99,116,101,100,39,41,44,92,110,32,32,108,97,98,101,108,80,109,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,80,77,39,41,44,92,110,32,32,108,97,98,101,108,83,101,99,111,110,100,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,83,101,99,111,110,100,115,39,41,44,92,110,32,32,108,97,98,101,108,83,101,108,101,99,116,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,83,101,108,101,99,116,101,100,32,116,105,109,101,39,41,44,92,110,32,32,108,111,99,97,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,41,44,92,110,32,32,109,105,110,117,116,101,115,83,116,101,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,49,41,44,92,110,32,32,114,101,97,100,111,110,108,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,101,99,111,110,100,115,83,116,101,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,49,41,44,92,110,32,32,47,47,32,73,102,32,96,116,114,117,101,96,44,32,115,104,111,119,32,116,104,101,32,115,101,99,111,110,100,32,115,112,105,110,98,117,116,116,111,110,92,110,32,32,115,104,111,119,83,101,99,111,110,100,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,78,65,77,69,95,84,73,77,69,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,84,105,109,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,78,65,77,69,95,84,73,77,69,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,115,101,100,32,61,32,112,97,114,115,101,72,77,83,40,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,32,124,124,32,39,39,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,47,47,32,83,112,105,110,32,98,117,116,116,111,110,32,109,111,100,101,108,115,92,110,32,32,32,32,32,32,109,111,100,101,108,72,111,117,114,115,58,32,112,97,114,115,101,100,46,104,111,117,114,115,44,92,110,32,32,32,32,32,32,109,111,100,101,108,77,105,110,117,116,101,115,58,32,112,97,114,115,101,100,46,109,105,110,117,116,101,115,44,92,110,32,32,32,32,32,32,109,111,100,101,108,83,101,99,111,110,100,115,58,32,112,97,114,115,101,100,46,115,101,99,111,110,100,115,44,92,110,32,32,32,32,32,32,109,111,100,101,108,65,109,112,109,58,32,112,97,114,115,101,100,46,97,109,112,109,44,92,110,32,32,32,32,32,32,47,47,32,73,110,116,101,114,110,97,108,32,102,108,97,103,32,116,111,32,101,110,97,98,108,101,32,97,114,105,97,45,108,105,118,101,32,114,101,103,105,111,110,115,92,110,32,32,32,32,32,32,105,115,76,105,118,101,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,72,77,83,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,72,77,83,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,111,117,114,115,32,61,32,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,59,92,110,32,32,32,32,32,32,118,97,114,32,109,105,110,117,116,101,115,32,61,32,116,104,105,115,46,109,111,100,101,108,77,105,110,117,116,101,115,59,92,110,32,32,32,32,32,32,118,97,114,32,115,101,99,111,110,100,115,32,61,32,116,104,105,115,46,109,111,100,101,108,83,101,99,111,110,100,115,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,72,77,83,40,123,92,110,32,32,32,32,32,32,32,32,104,111,117,114,115,58,32,104,111,117,114,115,44,92,110,32,32,32,32,32,32,32,32,109,105,110,117,116,101,115,58,32,109,105,110,117,116,101,115,44,92,110,32,32,32,32,32,32,32,32,115,101,99,111,110,100,115,58,32,115,101,99,111,110,100,115,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,115,104,111,119,83,101,99,111,110,100,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,58,32,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,115,111,108,118,101,100,32,108,111,99,97,108,101,32,111,112,116,105,111,110,115,92,110,32,32,32,32,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,99,111,110,99,97,116,41,40,116,104,105,115,46,108,111,99,97,108,101,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,32,32,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,104,111,117,114,58,32,78,85,77,69,82,73,67,44,92,110,32,32,32,32,32,32,32,32,109,105,110,117,116,101,58,32,78,85,77,69,82,73,67,44,92,110,32,32,32,32,32,32,32,32,115,101,99,111,110,100,58,32,78,85,77,69,82,73,67,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,116,104,105,115,46,104,111,117,114,49,50,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,70,111,114,99,101,32,49,50,32,111,114,32,50,52,32,104,111,117,114,32,99,108,111,99,107,92,110,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,104,111,117,114,49,50,32,61,32,33,33,116,104,105,115,46,104,111,117,114,49,50,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,100,116,102,32,61,32,110,101,119,32,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,108,111,99,97,108,101,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,111,108,118,101,100,32,61,32,100,116,102,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,104,111,117,114,49,50,32,61,32,114,101,115,111,108,118,101,100,46,104,111,117,114,49,50,32,124,124,32,102,97,108,115,101,59,32,47,47,32,73,69,32,49,49,32,100,111,101,115,110,39,116,32,114,101,115,111,108,118,101,32,116,104,101,32,104,111,117,114,67,121,99,108,101,44,32,115,111,32,119,101,32,109,97,107,101,92,110,32,32,32,32,32,32,47,47,32,97,110,32,97,115,115,117,109,112,116,105,111,110,32,97,110,100,32,102,97,108,108,32,98,97,99,107,32,116,111,32,99,111,109,109,111,110,32,118,97,108,117,101,115,92,110,92,110,32,32,32,32,32,32,118,97,114,32,104,111,117,114,67,121,99,108,101,32,61,32,114,101,115,111,108,118,101,100,46,104,111,117,114,67,121,99,108,101,32,124,124,32,40,104,111,117,114,49,50,32,63,32,39,104,49,50,39,32,58,32,39,104,50,51,39,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,108,111,99,97,108,101,58,32,114,101,115,111,108,118,101,100,46,108,111,99,97,108,101,44,92,110,32,32,32,32,32,32,32,32,104,111,117,114,49,50,58,32,104,111,117,114,49,50,44,92,110,32,32,32,32,32,32,32,32,104,111,117,114,67,121,99,108,101,58,32,104,111,117,114,67,121,99,108,101,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,76,111,99,97,108,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,76,111,99,97,108,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,46,108,111,99,97,108,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,76,97,110,103,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,76,97,110,103,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,32,124,124,32,39,39,41,46,114,101,112,108,97,99,101,40,47,45,117,45,46,42,36,47,44,32,39,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,82,84,76,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,82,84,76,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,108,111,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,105,115,76,111,99,97,108,101,82,84,76,41,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,97,110,103,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,72,111,117,114,67,121,99,108,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,72,111,117,114,67,121,99,108,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,104,49,49,44,32,104,49,50,44,32,104,50,51,44,32,111,114,32,104,50,52,92,110,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,100,101,118,101,108,111,112,101,114,46,109,111,122,105,108,108,97,46,111,114,103,47,101,110,45,85,83,47,100,111,99,115,47,87,101,98,47,74,97,118,97,83,99,114,105,112,116,47,82,101,102,101,114,101,110,99,101,47,71,108,111,98,97,108,95,79,98,106,101,99,116,115,47,76,111,99,97,108,101,47,104,111,117,114,67,121,99,108,101,92,110,32,32,32,32,32,32,47,47,32,104,49,50,32,45,32,72,111,117,114,32,115,121,115,116,101,109,32,117,115,105,110,103,32,49,226,128,147,49,50,46,32,67,111,114,114,101,115,112,111,110,100,115,32,116,111,32,39,104,39,32,105,110,32,112,97,116,116,101,114,110,115,46,32,84,104,101,32,49,50,32,104,111,117,114,32,99,108,111,99,107,44,32,119,105,116,104,32,109,105,100,110,105,103,104,116,32,115,116,97,114,116,105,110,103,32,97,116,32,49,50,58,48,48,32,97,109,92,110,32,32,32,32,32,32,47,47,32,104,50,51,32,45,32,72,111,117,114,32,115,121,115,116,101,109,32,117,115,105,110,103,32,48,226,128,147,50,51,46,32,67,111,114,114,101,115,112,111,110,100,115,32,116,111,32,39,72,39,32,105,110,32,112,97,116,116,101,114,110,115,46,32,84,104,101,32,50,52,32,104,111,117,114,32,99,108,111,99,107,44,32,119,105,116,104,32,109,105,100,110,105,103,104,116,32,115,116,97,114,116,105,110,103,32,97,116,32,48,58,48,48,92,110,32,32,32,32,32,32,47,47,32,104,49,49,32,45,32,72,111,117,114,32,115,121,115,116,101,109,32,117,115,105,110,103,32,48,226,128,147,49,49,46,32,67,111,114,114,101,115,112,111,110,100,115,32,116,111,32,39,75,39,32,105,110,32,112,97,116,116,101,114,110,115,46,32,84,104,101,32,49,50,32,104,111,117,114,32,99,108,111,99,107,44,32,119,105,116,104,32,109,105,100,110,105,103,104,116,32,115,116,97,114,116,105,110,103,32,97,116,32,48,58,48,48,32,97,109,92,110,32,32,32,32,32,32,47,47,32,104,50,52,32,45,32,72,111,117,114,32,115,121,115,116,101,109,32,117,115,105,110,103,32,49,226,128,147,50,52,46,32,67,111,114,114,101,115,112,111,110,100,115,32,116,111,32,39,107,39,32,105,110,32,112,97,116,116,101,114,110,46,32,84,104,101,32,50,52,32,104,111,117,114,32,99,108,111,99,107,44,32,119,105,116,104,32,109,105,100,110,105,103,104,116,32,115,116,97,114,116,105,110,103,32,97,116,32,50,52,58,48,48,92,110,32,32,32,32,32,32,47,47,32,70,111,114,32,104,49,50,32,111,114,32,104,50,52,44,32,119,101,32,118,105,115,117,97,108,108,121,32,102,111,114,109,97,116,32,48,48,32,104,111,117,114,115,32,97,115,32,49,50,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,46,104,111,117,114,67,121,99,108,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,49,50,72,111,117,114,58,32,102,117,110,99,116,105,111,110,32,105,115,49,50,72,111,117,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,116,104,105,115,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,46,104,111,117,114,49,50,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,110,116,101,120,116,58,32,102,117,110,99,116,105,111,110,32,99,111,110,116,101,120,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,108,111,99,97,108,101,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,92,110,32,32,32,32,32,32,32,32,105,115,82,84,76,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,82,84,76,44,92,110,32,32,32,32,32,32,32,32,104,111,117,114,67,121,99,108,101,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,72,111,117,114,67,121,99,108,101,44,92,110,32,32,32,32,32,32,32,32,104,111,117,114,49,50,58,32,116,104,105,115,46,105,115,49,50,72,111,117,114,44,92,110,32,32,32,32,32,32,32,32,104,111,117,114,115,58,32,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,44,92,110,32,32,32,32,32,32,32,32,109,105,110,117,116,101,115,58,32,116,104,105,115,46,109,111,100,101,108,77,105,110,117,116,101,115,44,92,110,32,32,32,32,32,32,32,32,115,101,99,111,110,100,115,58,32,116,104,105,115,46,115,104,111,119,83,101,99,111,110,100,115,32,63,32,116,104,105,115,46,109,111,100,101,108,83,101,99,111,110,100,115,32,58,32,48,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,72,77,83,44,92,110,32,32,32,32,32,32,32,32,102,111,114,109,97,116,116,101,100,58,32,116,104,105,115,46,102,111,114,109,97,116,116,101,100,84,105,109,101,83,116,114,105,110,103,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,118,97,108,117,101,73,100,58,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,102,101,73,100,40,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,65,114,105,97,76,97,98,101,108,108,101,100,98,121,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,65,114,105,97,76,97,98,101,108,108,101,100,98,121,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,104,105,115,46,97,114,105,97,76,97,98,101,108,108,101,100,98,121,44,32,116,104,105,115,46,118,97,108,117,101,73,100,93,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,32,39,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,105,109,101,70,111,114,109,97,116,116,101,114,58,32,102,117,110,99,116,105,111,110,32,116,105,109,101,70,111,114,109,97,116,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,97,32,102,111,114,109,97,116,116,101,114,32,102,117,110,99,116,105,111,110,32,114,101,102,101,114,101,110,99,101,92,110,32,32,32,32,32,32,47,47,32,84,104,101,32,102,111,114,109,97,116,116,101,114,32,99,111,110,118,101,114,116,115,32,116,104,101,32,116,105,109,101,32,116,111,32,97,32,108,111,99,97,108,105,122,101,100,32,115,116,114,105,110,103,92,110,32,32,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,104,111,117,114,49,50,58,32,116,104,105,115,46,105,115,49,50,72,111,117,114,44,92,110,32,32,32,32,32,32,32,32,104,111,117,114,67,121,99,108,101,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,72,111,117,114,67,121,99,108,101,44,92,110,32,32,32,32,32,32,32,32,104,111,117,114,58,32,78,85,77,69,82,73,67,44,92,110,32,32,32,32,32,32,32,32,109,105,110,117,116,101,58,32,78,85,77,69,82,73,67,44,92,110,32,32,32,32,32,32,32,32,116,105,109,101,90,111,110,101,58,32,39,85,84,67,39,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,115,104,111,119,83,101,99,111,110,100,115,41,32,123,92,110,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,115,101,99,111,110,100,32,61,32,78,85,77,69,82,73,67,59,92,110,32,32,32,32,32,32,125,32,47,47,32,70,111,114,109,97,116,115,32,116,104,101,32,116,105,109,101,32,97,115,32,97,32,108,111,99,97,108,105,122,101,100,32,115,116,114,105,110,103,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,99,114,101,97,116,101,68,97,116,101,70,111,114,109,97,116,116,101,114,41,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,58,32,102,117,110,99,116,105,111,110,32,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,97,32,102,111,114,109,97,116,116,101,114,32,102,117,110,99,116,105,111,110,32,114,101,102,101,114,101,110,99,101,92,110,32,32,32,32,32,32,47,47,32,84,104,101,32,102,111,114,109,97,116,116,101,114,32,97,108,119,97,121,115,32,102,111,114,109,97,116,115,32,97,115,32,50,32,100,105,103,105,116,115,32,97,110,100,32,105,115,32,108,111,99,97,108,105,122,101,100,92,110,32,32,32,32,32,32,118,97,114,32,110,102,32,61,32,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,39,100,101,99,105,109,97,108,39,44,92,110,32,32,32,32,32,32,32,32,109,105,110,105,109,117,109,73,110,116,101,103,101,114,68,105,103,105,116,115,58,32,50,44,92,110,32,32,32,32,32,32,32,32,109,105,110,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,32,48,44,92,110,32,32,32,32,32,32,32,32,109,97,120,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,32,48,44,92,110,32,32,32,32,32,32,32,32,110,111,116,97,116,105,111,110,58,32,39,115,116,97,110,100,97,114,100,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,102,46,102,111,114,109,97,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,114,109,97,116,116,101,100,84,105,109,101,83,116,114,105,110,103,58,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,116,101,100,84,105,109,101,83,116,114,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,111,117,114,115,32,61,32,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,59,92,110,32,32,32,32,32,32,118,97,114,32,109,105,110,117,116,101,115,32,61,32,116,104,105,115,46,109,111,100,101,108,77,105,110,117,116,101,115,59,92,110,32,32,32,32,32,32,118,97,114,32,115,101,99,111,110,100,115,32,61,32,116,104,105,115,46,115,104,111,119,83,101,99,111,110,100,115,32,63,32,116,104,105,115,46,109,111,100,101,108,83,101,99,111,110,100,115,32,124,124,32,48,32,58,32,48,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,99,111,109,112,117,116,101,100,72,77,83,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,105,109,101,70,111,114,109,97,116,116,101,114,40,40,48,44,95,117,116,105,108,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,99,114,101,97,116,101,68,97,116,101,41,40,68,97,116,101,46,85,84,67,40,48,44,32,48,44,32,49,44,32,104,111,117,114,115,44,32,109,105,110,117,116,101,115,44,32,115,101,99,111,110,100,115,41,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,108,97,98,101,108,78,111,84,105,109,101,83,101,108,101,99,116,101,100,32,124,124,32,39,32,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,112,105,110,83,99,111,112,101,100,83,108,111,116,115,58,32,102,117,110,99,116,105,111,110,32,115,112,105,110,83,99,111,112,101,100,83,108,111,116,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,32,61,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,105,110,99,114,101,109,101,110,116,58,32,102,117,110,99,116,105,111,110,32,105,110,99,114,101,109,101,110,116,40,95,114,101,102,50,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,115,70,111,99,117,115,32,61,32,95,114,101,102,50,46,104,97,115,70,111,99,117,115,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,85,112,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,97,108,101,58,32,104,97,115,70,111,99,117,115,32,63,32,49,46,53,32,58,32,49,46,50,53,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,100,101,99,114,101,109,101,110,116,58,32,102,117,110,99,116,105,111,110,32,100,101,99,114,101,109,101,110,116,40,95,114,101,102,51,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,115,70,111,99,117,115,32,61,32,95,114,101,102,51,46,104,97,115,70,111,99,117,115,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,85,112,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,108,105,112,86,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,97,108,101,58,32,104,97,115,70,111,99,117,115,32,63,32,49,46,53,32,58,32,49,46,50,53,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,112,97,114,115,101,72,77,83,40,110,101,119,86,97,108,117,101,41,44,32,112,97,114,115,101,72,77,83,40,116,104,105,115,46,99,111,109,112,117,116,101,100,72,77,83,41,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,112,97,114,115,101,72,77,83,32,61,32,112,97,114,115,101,72,77,83,40,110,101,119,86,97,108,117,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,104,111,117,114,115,32,61,32,95,112,97,114,115,101,72,77,83,46,104,111,117,114,115,44,92,110,32,32,32,32,32,32,32,32,32,32,109,105,110,117,116,101,115,32,61,32,95,112,97,114,115,101,72,77,83,46,109,105,110,117,116,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,115,101,99,111,110,100,115,32,61,32,95,112,97,114,115,101,72,77,83,46,115,101,99,111,110,100,115,44,92,110,32,32,32,32,32,32,32,32,32,32,97,109,112,109,32,61,32,95,112,97,114,115,101,72,77,83,46,97,109,112,109,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,32,61,32,104,111,117,114,115,59,92,110,32,32,32,32,32,32,116,104,105,115,46,109,111,100,101,108,77,105,110,117,116,101,115,32,61,32,109,105,110,117,116,101,115,59,92,110,32,32,32,32,32,32,116,104,105,115,46,109,111,100,101,108,83,101,99,111,110,100,115,32,61,32,115,101,99,111,110,100,115,59,92,110,32,32,32,32,32,32,116,104,105,115,46,109,111,100,101,108,65,109,112,109,32,61,32,97,109,112,109,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,99,111,109,112,117,116,101,100,72,77,83,92,34,44,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,72,77,83,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,99,111,110,116,101,120,116,92,34,44,32,102,117,110,99,116,105,111,110,32,99,111,110,116,101,120,116,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,79,78,84,69,88,84,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,109,111,100,101,108,65,109,112,109,92,34,44,32,102,117,110,99,116,105,111,110,32,109,111,100,101,108,65,109,112,109,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,111,117,114,115,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,78,117,108,108,41,40,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,41,32,63,32,48,32,58,32,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,61,61,61,32,48,32,38,38,32,104,111,117,114,115,32,62,32,49,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,83,119,105,116,99,104,101,100,32,116,111,32,65,77,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,32,61,32,104,111,117,114,115,32,45,32,49,50,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,101,119,86,97,108,117,101,32,61,61,61,32,49,32,38,38,32,104,111,117,114,115,32,60,32,49,50,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,83,119,105,116,99,104,101,100,32,116,111,32,80,77,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,32,61,32,104,111,117,114,115,32,43,32,49,50,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,109,111,100,101,108,72,111,117,114,115,92,34,44,32,102,117,110,99,116,105,111,110,32,109,111,100,101,108,72,111,117,114,115,40,110,101,119,72,111,117,114,115,44,32,111,108,100,72,111,117,114,115,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,72,111,117,114,115,32,33,61,61,32,111,108,100,72,111,117,114,115,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,109,111,100,101,108,65,109,112,109,32,61,32,110,101,119,72,111,117,114,115,32,62,32,49,49,32,63,32,49,32,58,32,48,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,50,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,79,78,84,69,88,84,44,32,95,116,104,105,115,50,46,99,111,110,116,101,120,116,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,76,105,118,101,40,116,114,117,101,41,59,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,97,99,116,105,118,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,97,99,116,105,118,97,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,76,105,118,101,40,116,114,117,101,41,59,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,100,101,97,99,116,105,118,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,100,101,97,99,116,105,118,97,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,76,105,118,101,40,102,97,108,115,101,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,76,105,118,101,40,102,97,108,115,101,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,80,117,98,108,105,99,32,109,101,116,104,111,100,115,92,110,32,32,32,32,102,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,102,111,99,117,115,32,116,104,101,32,102,105,114,115,116,32,115,112,105,110,32,98,117,116,116,111,110,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,104,105,115,46,36,114,101,102,115,46,115,112,105,110,110,101,114,115,91,48,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,108,117,114,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,99,116,105,118,101,69,108,101,109,101,110,116,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,41,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,99,111,110,116,97,105,110,115,41,40,116,104,105,115,46,36,101,108,44,32,97,99,116,105,118,101,69,108,101,109,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,97,116,116,101,109,112,116,66,108,117,114,41,40,97,99,116,105,118,101,69,108,101,109,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,70,111,114,109,97,116,116,101,114,115,32,102,111,114,32,116,104,101,32,115,112,105,110,32,98,117,116,116,111,110,115,92,110,32,32,32,32,102,111,114,109,97,116,72,111,117,114,115,58,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,72,111,117,114,115,40,104,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,111,117,114,67,121,99,108,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,72,111,117,114,67,121,99,108,101,59,32,47,47,32,87,101,32,97,108,119,97,121,115,32,115,116,111,114,101,32,48,45,50,51,44,32,98,117,116,32,102,111,114,109,97,116,32,98,97,115,101,100,32,111,110,32,104,49,49,47,104,49,50,47,104,50,51,47,104,50,52,32,102,111,114,109,97,116,115,92,110,92,110,32,32,32,32,32,32,104,104,32,61,32,116,104,105,115,46,105,115,49,50,72,111,117,114,32,38,38,32,104,104,32,62,32,49,50,32,63,32,104,104,32,45,32,49,50,32,58,32,104,104,59,32,47,47,32,68,101,116,101,114,109,105,110,101,32,104,111,119,32,48,48,58,48,48,32,97,110,100,32,49,50,58,48,48,32,97,114,101,32,115,104,111,119,110,92,110,92,110,32,32,32,32,32,32,104,104,32,61,32,104,104,32,61,61,61,32,48,32,38,38,32,104,111,117,114,67,121,99,108,101,32,61,61,61,32,39,104,49,50,39,32,63,32,49,50,32,58,32,104,104,32,61,61,61,32,48,32,38,38,32,104,111,117,114,67,121,99,108,101,32,61,61,61,32,39,104,50,52,39,32,63,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,50,52,32,58,32,104,104,32,61,61,61,32,49,50,32,38,38,32,104,111,117,114,67,121,99,108,101,32,61,61,61,32,39,104,49,49,39,32,63,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,48,32,58,32,104,104,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,40,104,104,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,114,109,97,116,77,105,110,117,116,101,115,58,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,77,105,110,117,116,101,115,40,109,109,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,40,109,109,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,114,109,97,116,83,101,99,111,110,100,115,58,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,83,101,99,111,110,100,115,40,115,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,40,115,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,114,109,97,116,65,109,112,109,58,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,65,109,112,109,40,97,109,112,109,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,104,101,115,101,32,115,104,111,117,108,100,32,99,111,109,101,32,102,114,111,109,32,108,97,98,101,108,32,112,114,111,112,115,63,63,63,92,110,32,32,32,32,32,32,47,47,32,96,97,109,112,109,96,32,115,104,111,117,108,100,32,97,108,119,97,121,115,32,98,101,32,97,32,118,97,108,117,101,32,111,102,32,96,48,96,32,111,114,32,96,49,96,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,109,112,109,32,61,61,61,32,48,32,63,32,116,104,105,115,46,108,97,98,101,108,65,109,32,58,32,97,109,112,109,32,61,61,61,32,49,32,63,32,116,104,105,115,46,108,97,98,101,108,80,109,32,58,32,39,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,112,105,110,98,117,116,116,111,110,32,111,110,32,99,104,97,110,103,101,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,115,101,116,72,111,117,114,115,58,32,102,117,110,99,116,105,111,110,32,115,101,116,72,111,117,114,115,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,77,105,110,117,116,101,115,58,32,102,117,110,99,116,105,111,110,32,115,101,116,77,105,110,117,116,101,115,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,109,111,100,101,108,77,105,110,117,116,101,115,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,83,101,99,111,110,100,115,58,32,102,117,110,99,116,105,111,110,32,115,101,116,83,101,99,111,110,100,115,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,109,111,100,101,108,83,101,99,111,110,100,115,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,65,109,112,109,58,32,102,117,110,99,116,105,111,110,32,115,101,116,65,109,112,109,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,109,111,100,101,108,65,109,112,109,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,83,112,105,110,76,101,102,116,82,105,103,104,116,58,32,102,117,110,99,116,105,111,110,32,111,110,83,112,105,110,76,101,102,116,82,105,103,104,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,123,125,59,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,101,118,101,110,116,46,116,121,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,32,38,38,32,116,121,112,101,32,61,61,61,32,39,107,101,121,100,111,119,110,39,32,38,38,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,76,69,70,84,32,124,124,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,82,73,71,72,84,41,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,112,105,110,110,101,114,115,32,61,32,116,104,105,115,46,36,114,101,102,115,46,115,112,105,110,110,101,114,115,32,124,124,32,91,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,115,112,105,110,110,101,114,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,99,109,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,99,109,112,46,104,97,115,70,111,99,117,115,59,92,110,32,32,32,32,32,32,32,32,125,41,46,105,110,100,101,120,79,102,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,105,110,100,101,120,32,43,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,67,79,68,69,95,76,69,70,84,32,63,32,45,49,32,58,32,49,41,59,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,105,110,100,101,120,32,62,61,32,115,112,105,110,110,101,114,115,46,108,101,110,103,116,104,32,63,32,48,32,58,32,105,110,100,101,120,32,60,32,48,32,63,32,115,112,105,110,110,101,114,115,46,108,101,110,103,116,104,32,45,32,49,32,58,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,115,112,105,110,110,101,114,115,91,105,110,100,101,120,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,76,105,118,101,58,32,102,117,110,99,116,105,111,110,32,115,101,116,76,105,118,101,40,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,105,115,76,105,118,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,76,105,118,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,104,105,100,100,101,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,104,105,100,100,101,110,44,32,119,101,32,106,117,115,116,32,114,101,110,100,101,114,32,97,32,112,108,97,99,101,104,111,108,100,101,114,32,99,111,109,109,101,110,116,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,73,100,32,61,32,116,104,105,115,46,118,97,108,117,101,73,100,59,92,110,32,32,32,32,118,97,114,32,99,111,109,112,117,116,101,100,65,114,105,97,76,97,98,101,108,108,101,100,98,121,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,114,105,97,76,97,98,101,108,108,101,100,98,121,59,92,110,32,32,32,32,118,97,114,32,115,112,105,110,73,100,115,32,61,32,91,93,59,32,47,47,32,72,101,108,112,101,114,32,109,101,116,104,111,100,32,116,111,32,114,101,110,100,101,114,32,97,32,115,112,105,110,98,117,116,116,111,110,92,110,92,110,32,32,32,32,118,97,114,32,109,97,107,101,83,112,105,110,98,117,116,116,111,110,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,83,112,105,110,98,117,116,116,111,110,40,104,97,110,100,108,101,114,44,32,107,101,121,44,32,99,108,97,115,115,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,112,105,110,98,117,116,116,111,110,80,114,111,112,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,51,32,38,38,32,97,114,103,117,109,101,110,116,115,91,51,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,51,93,32,58,32,123,125,59,92,110,32,32,32,32,32,32,118,97,114,32,105,100,32,61,32,95,116,104,105,115,52,46,115,97,102,101,73,100,40,92,34,95,115,112,105,110,98,117,116,116,111,110,95,92,34,46,99,111,110,99,97,116,40,107,101,121,44,32,92,34,95,92,34,41,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,32,32,115,112,105,110,73,100,115,46,112,117,115,104,40,105,100,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,70,111,114,109,83,112,105,110,98,117,116,116,111,110,44,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,99,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,105,100,44,92,110,32,32,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,39,45,45,39,44,92,110,32,32,32,32,32,32,32,32,32,32,118,101,114,116,105,99,97,108,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,95,116,104,105,115,52,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,97,100,111,110,108,121,58,32,95,116,104,105,115,52,46,114,101,97,100,111,110,108,121,44,92,110,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,101,58,32,95,116,104,105,115,52,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,73,110,99,114,101,109,101,110,116,58,32,95,116,104,105,115,52,46,108,97,98,101,108,73,110,99,114,101,109,101,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,98,101,108,68,101,99,114,101,109,101,110,116,58,32,95,116,104,105,115,52,46,108,97,98,101,108,68,101,99,114,101,109,101,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,119,114,97,112,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,114,105,97,67,111,110,116,114,111,108,115,58,32,118,97,108,117,101,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,109,105,110,58,32,48,92,110,32,32,32,32,32,32,32,32,125,44,32,115,112,105,110,98,117,116,116,111,110,80,114,111,112,115,41,44,92,110,32,32,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,58,32,95,116,104,105,115,52,46,115,112,105,110,83,99,111,112,101,100,83,108,111,116,115,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,117,115,101,32,96,99,104,97,110,103,101,96,32,101,118,101,110,116,32,116,111,32,109,105,110,105,109,105,122,101,32,83,82,32,118,101,114,98,111,115,105,116,121,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,65,115,32,116,104,101,32,115,112,105,110,98,117,116,116,111,110,32,119,105,108,108,32,97,110,110,111,117,110,99,101,32,101,97,99,104,32,118,97,108,117,101,32,99,104,97,110,103,101,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,97,110,100,32,119,101,32,100,111,110,39,116,32,119,97,110,116,32,116,104,101,32,102,111,114,109,97,116,116,101,100,32,116,105,109,101,32,116,111,32,98,101,32,97,110,110,111,117,110,99,101,100,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,111,110,32,101,97,99,104,32,118,97,108,117,101,32,105,110,112,117,116,32,105,102,32,114,101,112,101,97,116,32,105,115,32,104,97,112,112,101,110,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,99,104,97,110,103,101,58,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,107,101,121,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,39,115,112,105,110,110,101,114,115,39,44,92,110,32,32,32,32,32,32,32,32,114,101,102,73,110,70,111,114,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,59,32,47,47,32,72,101,108,112,101,114,32,109,101,116,104,111,100,32,116,111,32,114,101,116,117,114,110,32,97,32,92,34,99,111,108,111,110,92,34,32,115,101,112,97,114,97,116,111,114,92,110,92,110,92,110,32,32,32,32,118,97,114,32,109,97,107,101,67,111,108,111,110,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,67,111,108,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,100,45,102,108,101,120,32,102,108,101,120,45,99,111,108,117,109,110,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,116,101,120,116,45,109,117,116,101,100,39,58,32,95,116,104,105,115,52,46,100,105,115,97,98,108,101,100,32,124,124,32,95,116,104,105,115,52,46,114,101,97,100,111,110,108,121,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,104,40,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,66,73,99,111,110,67,105,114,99,108,101,70,105,108,108,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,104,105,102,116,86,58,32,52,44,92,110,32,32,32,32,32,32,32,32,32,32,115,99,97,108,101,58,32,48,46,53,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,44,32,104,40,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,66,73,99,111,110,67,105,114,99,108,101,70,105,108,108,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,104,105,102,116,86,58,32,45,52,44,92,110,32,32,32,32,32,32,32,32,32,32,115,99,97,108,101,58,32,48,46,53,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,93,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,118,97,114,32,36,115,112,105,110,110,101,114,115,32,61,32,91,93,59,32,47,47,32,72,111,117,114,115,92,110,92,110,32,32,32,32,36,115,112,105,110,110,101,114,115,46,112,117,115,104,40,109,97,107,101,83,112,105,110,98,117,116,116,111,110,40,116,104,105,115,46,115,101,116,72,111,117,114,115,44,32,39,104,111,117,114,115,39,44,32,39,98,45,116,105,109,101,45,104,111,117,114,115,39,44,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,44,92,110,32,32,32,32,32,32,109,97,120,58,32,50,51,44,92,110,32,32,32,32,32,32,115,116,101,112,58,32,49,44,92,110,32,32,32,32,32,32,102,111,114,109,97,116,116,101,114,70,110,58,32,116,104,105,115,46,102,111,114,109,97,116,72,111,117,114,115,44,92,110,32,32,32,32,32,32,97,114,105,97,76,97,98,101,108,58,32,116,104,105,115,46,108,97,98,101,108,72,111,117,114,115,92,110,32,32,32,32,125,41,41,59,32,47,47,32,83,112,97,99,101,114,92,110,92,110,32,32,32,32,36,115,112,105,110,110,101,114,115,46,112,117,115,104,40,109,97,107,101,67,111,108,111,110,40,41,41,59,32,47,47,32,77,105,110,117,116,101,115,92,110,92,110,32,32,32,32,36,115,112,105,110,110,101,114,115,46,112,117,115,104,40,109,97,107,101,83,112,105,110,98,117,116,116,111,110,40,116,104,105,115,46,115,101,116,77,105,110,117,116,101,115,44,32,39,109,105,110,117,116,101,115,39,44,32,39,98,45,116,105,109,101,45,109,105,110,117,116,101,115,39,44,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,109,111,100,101,108,77,105,110,117,116,101,115,44,92,110,32,32,32,32,32,32,109,97,120,58,32,53,57,44,92,110,32,32,32,32,32,32,115,116,101,112,58,32,116,104,105,115,46,109,105,110,117,116,101,115,83,116,101,112,32,124,124,32,49,44,92,110,32,32,32,32,32,32,102,111,114,109,97,116,116,101,114,70,110,58,32,116,104,105,115,46,102,111,114,109,97,116,77,105,110,117,116,101,115,44,92,110,32,32,32,32,32,32,97,114,105,97,76,97,98,101,108,58,32,116,104,105,115,46,108,97,98,101,108,77,105,110,117,116,101,115,92,110,32,32,32,32,125,41,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,115,104,111,119,83,101,99,111,110,100,115,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,112,97,99,101,114,92,110,32,32,32,32,32,32,36,115,112,105,110,110,101,114,115,46,112,117,115,104,40,109,97,107,101,67,111,108,111,110,40,41,41,59,32,47,47,32,83,101,99,111,110,100,115,92,110,92,110,32,32,32,32,32,32,36,115,112,105,110,110,101,114,115,46,112,117,115,104,40,109,97,107,101,83,112,105,110,98,117,116,116,111,110,40,116,104,105,115,46,115,101,116,83,101,99,111,110,100,115,44,32,39,115,101,99,111,110,100,115,39,44,32,39,98,45,116,105,109,101,45,115,101,99,111,110,100,115,39,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,109,111,100,101,108,83,101,99,111,110,100,115,44,92,110,32,32,32,32,32,32,32,32,109,97,120,58,32,53,57,44,92,110,32,32,32,32,32,32,32,32,115,116,101,112,58,32,116,104,105,115,46,115,101,99,111,110,100,115,83,116,101,112,32,124,124,32,49,44,92,110,32,32,32,32,32,32,32,32,102,111,114,109,97,116,116,101,114,70,110,58,32,116,104,105,115,46,102,111,114,109,97,116,83,101,99,111,110,100,115,44,92,110,32,32,32,32,32,32,32,32,97,114,105,97,76,97,98,101,108,58,32,116,104,105,115,46,108,97,98,101,108,83,101,99,111,110,100,115,92,110,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,125,32,47,47,32,65,77,47,80,77,32,63,92,110,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,49,50,72,111,117,114,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,79,68,79,58,92,110,32,32,32,32,32,32,47,47,32,32,32,73,102,32,108,111,99,97,108,101,32,105,115,32,82,84,76,44,32,117,110,115,104,105,102,116,32,116,104,105,115,32,105,110,115,116,101,97,100,32,111,102,32,112,117,115,104,63,92,110,32,32,32,32,32,32,47,47,32,32,32,65,110,100,32,115,119,105,116,99,104,32,99,108,97,115,115,32,96,109,108,45,50,96,32,116,111,32,96,109,114,45,50,96,92,110,32,32,32,32,32,32,47,47,32,32,32,78,111,116,101,32,115,111,109,101,32,76,84,82,32,108,111,99,97,108,101,115,32,40,105,46,101,46,32,122,104,41,32,97,108,115,111,32,112,108,97,99,101,32,65,77,47,80,77,32,116,111,32,116,104,101,32,108,101,102,116,92,110,32,32,32,32,32,32,36,115,112,105,110,110,101,114,115,46,112,117,115,104,40,109,97,107,101,83,112,105,110,98,117,116,116,111,110,40,116,104,105,115,46,115,101,116,65,109,112,109,44,32,39,97,109,112,109,39,44,32,39,98,45,116,105,109,101,45,97,109,112,109,39,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,109,111,100,101,108,65,109,112,109,44,92,110,32,32,32,32,32,32,32,32,109,97,120,58,32,49,44,92,110,32,32,32,32,32,32,32,32,102,111,114,109,97,116,116,101,114,70,110,58,32,116,104,105,115,46,102,111,114,109,97,116,65,109,112,109,44,92,110,32,32,32,32,32,32,32,32,97,114,105,97,76,97,98,101,108,58,32,116,104,105,115,46,108,97,98,101,108,65,109,112,109,44,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,115,101,116,32,96,114,101,113,117,105,114,101,100,96,32,97,115,32,96,102,97,108,115,101,96,44,32,115,105,110,99,101,32,116,104,105,115,32,97,108,119,97,121,115,32,104,97,115,32,97,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,125,32,47,47,32,65,115,115,101,109,98,108,101,32,115,112,105,110,110,101,114,115,92,110,92,110,92,110,32,32,32,32,36,115,112,105,110,110,101,114,115,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,100,45,102,108,101,120,32,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,32,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,32,109,120,45,97,117,116,111,39,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,103,114,111,117,112,39,44,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,116,104,105,115,46,114,101,97,100,111,110,108,121,32,63,32,110,117,108,108,32,58,32,39,45,49,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,39,58,32,99,111,109,112,117,116,101,100,65,114,105,97,76,97,98,101,108,108,101,100,98,121,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,111,110,83,112,105,110,76,101,102,116,82,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,116,97,114,103,101,116,32,61,61,61,32,101,118,101,110,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,102,111,99,117,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,36,115,112,105,110,110,101,114,115,41,59,32,47,47,32,83,101,108,101,99,116,101,100,32,116,121,112,101,32,100,105,115,112,108,97,121,92,110,92,110,32,32,32,32,118,97,114,32,36,118,97,108,117,101,32,61,32,104,40,39,111,117,116,112,117,116,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,102,111,114,109,45,99,111,110,116,114,111,108,32,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,32,116,101,120,116,45,99,101,110,116,101,114,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,124,124,32,116,104,105,115,46,114,101,97,100,111,110,108,121,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,118,97,108,117,101,73,100,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,115,116,97,116,117,115,39,44,92,110,32,32,32,32,32,32,32,32,102,111,114,58,32,115,112,105,110,73,100,115,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,32,39,41,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,63,32,110,117,108,108,32,58,32,39,45,49,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,116,104,105,115,46,105,115,76,105,118,101,32,63,32,39,112,111,108,105,116,101,39,32,58,32,39,111,102,102,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,97,116,111,109,105,99,39,58,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,114,97,110,115,102,101,114,32,102,111,99,117,115,47,99,108,105,99,107,32,116,111,32,102,111,99,117,115,32,104,111,117,114,115,32,115,112,105,110,110,101,114,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,102,111,99,117,115,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,58,32,116,104,105,115,46,102,111,99,117,115,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,104,40,39,98,100,105,39,44,32,116,104,105,115,46,102,111,114,109,97,116,116,101,100,84,105,109,101,83,116,114,105,110,103,41,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,72,77,83,32,63,32,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,115,114,45,111,110,108,121,39,92,110,32,32,32,32,125,44,32,92,34,32,40,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,108,97,98,101,108,83,101,108,101,99,116,101,100,44,32,92,34,41,32,92,34,41,41,32,58,32,39,39,93,41,59,92,110,32,32,32,32,118,97,114,32,36,104,101,97,100,101,114,32,61,32,104,40,39,104,101,97,100,101,114,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,116,105,109,101,45,104,101,97,100,101,114,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,115,114,45,111,110,108,121,39,58,32,116,104,105,115,46,104,105,100,101,72,101,97,100,101,114,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,118,97,108,117,101,93,41,59,32,47,47,32,79,112,116,105,111,110,97,108,32,98,111,116,116,111,109,32,115,108,111,116,92,110,92,110,32,32,32,32,118,97,114,32,36,115,108,111,116,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,59,92,110,32,32,32,32,36,115,108,111,116,32,61,32,36,115,108,111,116,32,63,32,104,40,39,102,111,111,116,101,114,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,116,105,109,101,45,102,111,111,116,101,114,39,92,110,32,32,32,32,125,44,32,36,115,108,111,116,41,32,58,32,104,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,116,105,109,101,32,100,45,105,110,108,105,110,101,45,102,108,101,120,32,102,108,101,120,45,99,111,108,117,109,110,32,116,101,120,116,45,99,101,110,116,101,114,39,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,103,114,111,117,112,39,44,92,110,32,32,32,32,32,32,32,32,108,97,110,103,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,97,110,103,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,39,58,32,99,111,109,112,117,116,101,100,65,114,105,97,76,97,98,101,108,108,101,100,98,121,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,105,115,97,98,108,101,100,39,58,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,101,97,100,111,110,108,121,39,58,32,116,104,105,115,46,114,101,97,100,111,110,108,121,32,38,38,32,33,116,104,105,115,46,100,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,104,101,97,100,101,114,44,32,36,115,112,105,110,110,101,114,115,44,32,36,115,108,111,116,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,105,109,101,47,116,105,109,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,104,101,108,112,101,114,115,47,98,118,45,116,111,97,115,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,104,101,108,112,101,114,115,47,98,118,45,116,111,97,115,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,84,111,97,115,116,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,86,84,111,97,115,116,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,99,111,110,102,105,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,119,97,114,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,111,97,115,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,116,111,97,115,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,105,110,115,116,97,110,99,101,44,32,67,111,110,115,116,114,117,99,116,111,114,41,32,123,32,105,102,32,40,33,40,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,67,111,110,115,116,114,117,99,116,111,114,41,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,32,112,114,111,112,115,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,112,114,111,112,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,100,101,115,99,114,105,112,116,111,114,32,61,32,112,114,111,112,115,91,105,93,59,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,61,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,124,124,32,102,97,108,115,101,59,32,100,101,115,99,114,105,112,116,111,114,46,99,111,110,102,105,103,117,114,97,98,108,101,32,61,32,116,114,117,101,59,32,105,102,32,40,92,34,118,97,108,117,101,92,34,32,105,110,32,100,101,115,99,114,105,112,116,111,114,41,32,100,101,115,99,114,105,112,116,111,114,46,119,114,105,116,97,98,108,101,32,61,32,116,114,117,101,59,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,100,101,115,99,114,105,112,116,111,114,46,107,101,121,44,32,100,101,115,99,114,105,112,116,111,114,41,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,99,114,101,97,116,101,67,108,97,115,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,112,114,111,116,111,80,114,111,112,115,44,32,115,116,97,116,105,99,80,114,111,112,115,41,32,123,32,105,102,32,40,112,114,111,116,111,80,114,111,112,115,41,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,44,32,112,114,111,116,111,80,114,111,112,115,41,59,32,105,102,32,40,115,116,97,116,105,99,80,114,111,112,115,41,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,115,116,97,116,105,99,80,114,111,112,115,41,59,32,114,101,116,117,114,110,32,67,111,110,115,116,114,117,99,116,111,114,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,97,114,114,41,32,123,32,114,101,116,117,114,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,124,124,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,92,34,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,32,123,32,105,102,32,40,33,111,41,32,114,101,116,117,114,110,59,32,105,102,32,40,116,121,112,101,111,102,32,111,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,118,97,114,32,110,32,61,32,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,111,41,46,115,108,105,99,101,40,56,44,32,45,49,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,79,98,106,101,99,116,92,34,32,38,38,32,111,46,99,111,110,115,116,114,117,99,116,111,114,41,32,110,32,61,32,111,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,59,32,105,102,32,40,110,32,61,61,61,32,92,34,77,97,112,92,34,32,124,124,32,110,32,61,61,61,32,92,34,83,101,116,92,34,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,111,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,65,114,103,117,109,101,110,116,115,92,34,32,124,124,32,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,105,116,101,114,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,38,38,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,105,116,101,114,41,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,105,116,101,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,123,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,44,32,108,101,110,41,32,123,32,105,102,32,40,108,101,110,32,61,61,32,110,117,108,108,32,124,124,32,108,101,110,32,62,32,97,114,114,46,108,101,110,103,116,104,41,32,108,101,110,32,61,32,97,114,114,46,108,101,110,103,116,104,59,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,97,114,114,50,32,61,32,110,101,119,32,65,114,114,97,121,40,108,101,110,41,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,32,97,114,114,50,91,105,93,32,61,32,97,114,114,91,105,93,59,32,125,32,114,101,116,117,114,110,32,97,114,114,50,59,32,125,92,110,92,110,47,42,42,92,110,32,42,32,80,108,117,103,105,110,32,102,111,114,32,97,100,100,105,110,103,32,96,36,98,118,84,111,97,115,116,96,32,112,114,111,112,101,114,116,121,32,116,111,32,97,108,108,32,86,117,101,32,105,110,115,116,97,110,99,101,115,92,110,32,42,47,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,80,82,79,80,95,78,65,77,69,32,61,32,39,36,98,118,84,111,97,115,116,39,59,92,110,118,97,114,32,80,82,79,80,95,78,65,77,69,95,80,82,73,86,32,61,32,39,95,98,118,95,95,116,111,97,115,116,39,59,32,47,47,32,66,97,115,101,32,116,111,97,115,116,32,112,114,111,112,115,32,116,104,97,116,32,97,114,101,32,97,108,108,111,119,101,100,92,110,47,47,32,83,111,109,101,32,109,97,121,32,98,101,32,105,103,110,111,114,101,100,32,111,114,32,111,118,101,114,114,105,100,100,101,110,32,111,110,32,115,111,109,101,32,109,101,115,115,97,103,101,32,98,111,120,101,115,92,110,47,47,32,80,114,111,112,32,73,68,32,105,115,32,97,108,108,111,119,101,100,44,32,98,117,116,32,114,101,97,108,108,121,32,111,110,108,121,32,115,104,111,117,108,100,32,98,101,32,117,115,101,100,32,102,111,114,32,116,101,115,116,105,110,103,92,110,47,47,32,87,101,32,110,101,101,100,32,116,111,32,97,100,100,32,105,116,32,105,110,32,101,120,112,108,105,99,105,116,108,121,32,97,115,32,105,116,32,99,111,109,101,115,32,102,114,111,109,32,116,104,101,32,96,105,100,77,105,120,105,110,96,92,110,92,110,118,97,114,32,66,65,83,69,95,80,82,79,80,83,32,61,32,91,39,105,100,39,93,46,99,111,110,99,97,116,40,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,107,101,121,115,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,91,39,115,116,97,116,105,99,39,44,32,39,118,105,115,105,98,108,101,39,93,41,41,41,41,59,32,47,47,32,77,97,112,32,112,114,111,112,32,110,97,109,101,115,32,116,111,32,116,111,97,115,116,32,115,108,111,116,32,110,97,109,101,115,92,110,92,110,118,97,114,32,112,114,111,112,115,84,111,83,108,111,116,115,32,61,32,123,92,110,32,32,116,111,97,115,116,67,111,110,116,101,110,116,58,32,39,100,101,102,97,117,108,116,39,44,92,110,32,32,116,105,116,108,101,58,32,39,116,111,97,115,116,45,116,105,116,108,101,39,92,110,125,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,77,101,116,104,111,100,32,116,111,32,102,105,108,116,101,114,32,111,110,108,121,32,114,101,99,111,103,110,105,122,101,100,32,112,114,111,112,115,32,116,104,97,116,32,97,114,101,32,110,111,116,32,117,110,100,101,102,105,110,101,100,92,110,92,110,118,97,114,32,102,105,108,116,101,114,79,112,116,105,111,110,115,32,61,32,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,79,112,116,105,111,110,115,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,66,65,83,69,95,80,82,79,80,83,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,109,101,109,111,44,32,107,101,121,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,111,112,116,105,111,110,115,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,109,101,109,111,91,107,101,121,93,32,61,32,111,112,116,105,111,110,115,91,107,101,121,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,109,101,109,111,59,92,110,32,32,125,44,32,123,125,41,59,92,110,125,59,32,47,47,32,77,101,116,104,111,100,32,116,111,32,105,110,115,116,97,108,108,32,96,36,98,118,84,111,97,115,116,96,32,86,77,32,105,110,106,101,99,116,105,111,110,92,110,92,110,92,110,118,97,114,32,112,108,117,103,105,110,32,61,32,102,117,110,99,116,105,111,110,32,112,108,117,103,105,110,40,86,117,101,41,32,123,92,110,32,32,47,47,32,67,114,101,97,116,101,32,97,32,112,114,105,118,97,116,101,32,115,117,98,45,99,111,109,112,111,110,101,110,116,32,99,111,110,115,116,114,117,99,116,111,114,32,116,104,97,116,92,110,32,32,47,47,32,101,120,116,101,110,100,115,32,66,84,111,97,115,116,32,97,110,100,32,115,101,108,102,45,100,101,115,116,114,117,99,116,115,32,97,102,116,101,114,32,104,105,100,100,101,110,92,110,32,32,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,32,32,118,97,114,32,66,86,84,111,97,115,116,80,111,112,32,61,32,86,117,101,46,101,120,116,101,110,100,40,123,92,110,32,32,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,84,79,65,83,84,95,80,79,80,44,92,110,32,32,32,32,101,120,116,101,110,100,115,58,32,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,84,111,97,115,116,44,92,110,32,32,32,32,100,101,115,116,114,111,121,101,100,58,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,101,100,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,77,97,107,101,32,115,117,114,101,32,119,101,32,110,111,116,32,105,110,32,100,111,99,117,109,101,110,116,32,97,110,121,32,109,111,114,101,92,110,32,32,32,32,32,32,118,97,114,32,36,101,108,32,61,32,116,104,105,115,46,36,101,108,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,36,101,108,32,38,38,32,36,101,108,46,112,97,114,101,110,116,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,36,101,108,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,36,101,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,83,101,108,102,32,100,101,115,116,114,117,99,116,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,68,101,115,116,114,111,121,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,69,110,115,117,114,101,32,116,104,101,32,116,111,97,115,116,32,104,97,115,32,98,101,101,110,32,102,111,114,99,101,32,104,105,100,100,101,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,100,111,82,101,110,100,101,114,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,32,97,32,96,114,101,113,117,101,115,116,65,70,40,41,96,32,116,111,32,114,101,108,101,97,115,101,32,99,111,110,116,114,111,108,32,98,97,99,107,32,116,111,32,97,112,112,108,105,99,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,97,110,100,32,116,111,32,97,108,108,111,119,32,116,104,101,32,112,111,114,116,97,108,45,116,97,114,103,101,116,32,116,105,109,101,32,116,111,32,114,101,109,111,118,101,32,116,104,101,32,99,111,110,116,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,100,101,115,116,114,111,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,59,32,47,47,32,83,101,108,102,32,100,101,115,116,114,117,99,116,32,105,102,32,112,97,114,101,110,116,32,100,101,115,116,114,111,121,101,100,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,112,97,114,101,110,116,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,68,69,83,84,82,79,89,69,68,44,32,104,97,110,100,108,101,68,101,115,116,114,111,121,41,59,32,47,47,32,83,101,108,102,32,100,101,115,116,114,117,99,116,32,97,102,116,101,114,32,104,105,100,100,101,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,44,32,104,97,110,100,108,101,68,101,115,116,114,111,121,41,59,32,47,47,32,83,101,108,102,32,100,101,115,116,114,117,99,116,32,119,104,101,110,32,116,111,97,115,116,101,114,32,105,115,32,100,101,115,116,114,111,121,101,100,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,84,79,65,83,84,69,82,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,69,86,69,78,84,95,78,65,77,69,95,68,69,83,84,82,79,89,69,68,41,44,32,102,117,110,99,116,105,111,110,32,40,116,111,97,115,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,104,97,114,100,32,116,111,32,116,101,115,116,32,42,47,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,111,97,115,116,101,114,32,61,61,61,32,95,116,104,105,115,46,116,111,97,115,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,68,101,115,116,114,111,121,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,80,114,105,118,97,116,101,32,109,101,116,104,111,100,32,116,111,32,103,101,110,101,114,97,116,101,32,116,104,101,32,111,110,45,100,101,109,97,110,100,32,116,111,97,115,116,92,110,92,110,32,32,118,97,114,32,109,97,107,101,84,111,97,115,116,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,84,111,97,115,116,40,112,114,111,112,115,44,32,36,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,119,97,114,110,78,111,116,67,108,105,101,110,116,41,40,80,82,79,80,95,78,65,77,69,41,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,32,47,47,32,67,114,101,97,116,101,32,97,110,32,105,110,115,116,97,110,99,101,32,111,102,32,96,66,86,84,111,97,115,116,80,111,112,96,32,99,111,109,112,111,110,101,110,116,92,110,92,110,92,110,32,32,32,32,118,97,114,32,116,111,97,115,116,32,61,32,110,101,119,32,66,86,84,111,97,115,116,80,111,112,40,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,115,101,116,32,112,97,114,101,110,116,32,97,115,32,116,104,101,32,108,111,99,97,108,32,86,77,32,115,111,32,116,104,101,115,101,32,116,111,97,115,116,115,32,99,97,110,32,101,109,105,116,32,101,118,101,110,116,115,32,111,110,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,97,112,112,32,96,36,114,111,111,116,96,44,32,97,110,100,32,105,116,32,101,110,115,117,114,101,115,32,96,66,84,111,97,115,116,96,32,105,115,32,100,101,115,116,114,111,121,101,100,32,119,104,101,110,32,112,97,114,101,110,116,32,105,115,32,100,101,115,116,114,111,121,101,100,92,110,32,32,32,32,32,32,112,97,114,101,110,116,58,32,36,112,97,114,101,110,116,44,92,110,32,32,32,32,32,32,112,114,111,112,115,68,97,116,97,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,102,105,108,116,101,114,79,112,116,105,111,110,115,40,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,84,79,65,83,84,41,41,41,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,112,114,111,112,115,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,107,101,121,115,41,40,112,114,111,112,115,84,111,83,108,111,116,115,41,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,80,114,111,112,115,32,116,104,97,116,32,99,97,110,39,116,32,98,101,32,111,118,101,114,114,105,100,100,101,110,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,92,110,32,32,32,32,125,41,59,32,47,47,32,67,111,110,118,101,114,116,32,99,101,114,116,97,105,110,32,112,114,111,112,115,32,116,111,32,115,108,111,116,115,92,110,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,107,101,121,115,41,40,112,114,111,112,115,84,111,83,108,111,116,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,112,114,111,112,115,91,112,114,111,112,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,97,110,32,98,101,32,97,32,115,116,114,105,110,103,44,32,111,114,32,97,114,114,97,121,32,111,102,32,86,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,32,61,61,61,32,39,116,105,116,108,101,39,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,83,116,114,105,110,103,41,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,83,112,101,99,105,97,108,32,99,97,115,101,32,102,111,114,32,116,105,116,108,101,32,105,102,32,105,116,32,105,115,32,97,32,115,116,114,105,110,103,44,32,119,101,32,119,114,97,112,32,105,110,32,97,32,60,115,116,114,111,110,103,62,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,91,36,112,97,114,101,110,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,39,115,116,114,111,110,103,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,39,109,114,45,50,39,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,118,97,108,117,101,41,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,116,111,97,115,116,46,36,115,108,111,116,115,91,112,114,111,112,115,84,111,83,108,111,116,115,91,112,114,111,112,93,93,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,99,111,110,99,97,116,41,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,32,47,47,32,67,114,101,97,116,101,32,97,32,109,111,117,110,116,32,112,111,105,110,116,32,40,97,32,68,73,86,41,32,97,110,100,32,109,111,117,110,116,32,105,116,32,40,119,104,105,99,104,32,116,114,105,103,103,101,114,115,32,116,104,101,32,115,104,111,119,41,92,110,92,110,32,32,32,32,118,97,114,32,100,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,39,100,105,118,39,41,59,92,110,32,32,32,32,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,100,105,118,41,59,92,110,32,32,32,32,116,111,97,115,116,46,36,109,111,117,110,116,40,100,105,118,41,59,92,110,32,32,125,59,32,47,47,32,68,101,99,108,97,114,101,32,66,118,84,111,97,115,116,32,105,110,115,116,97,110,99,101,32,112,114,111,112,101,114,116,121,32,99,108,97,115,115,92,110,92,110,92,110,32,32,118,97,114,32,66,118,84,111,97,115,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,66,118,84,111,97,115,116,40,118,109,41,32,123,92,110,32,32,32,32,32,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,66,118,84,111,97,115,116,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,65,115,115,105,103,110,32,116,104,101,32,110,101,119,32,112,114,111,112,101,114,116,105,101,115,32,116,111,32,116,104,105,115,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,115,105,103,110,41,40,116,104,105,115,44,32,123,92,110,32,32,32,32,32,32,32,32,95,118,109,58,32,118,109,44,92,110,32,32,32,32,32,32,32,32,95,114,111,111,116,58,32,118,109,46,36,114,111,111,116,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,83,101,116,32,116,104,101,115,101,32,112,114,111,112,101,114,116,105,101,115,32,97,115,32,114,101,97,100,45,111,110,108,121,32,97,110,100,32,110,111,110,45,101,110,117,109,101,114,97,98,108,101,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,41,40,116,104,105,115,44,32,123,92,110,32,32,32,32,32,32,32,32,95,118,109,58,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,41,40,41,44,92,110,32,32,32,32,32,32,32,32,95,114,111,111,116,58,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,41,40,41,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,47,47,32,45,45,45,32,80,117,98,108,105,99,32,73,110,115,116,97,110,99,101,32,109,101,116,104,111,100,115,32,45,45,45,92,110,32,32,32,32,47,47,32,79,112,101,110,115,32,97,32,117,115,101,114,32,100,101,102,105,110,101,100,32,116,111,97,115,116,32,97,110,100,32,114,101,116,117,114,110,115,32,105,109,109,101,100,105,97,116,101,108,121,92,110,92,110,92,110,32,32,32,32,95,99,114,101,97,116,101,67,108,97,115,115,40,66,118,84,111,97,115,116,44,32,91,123,92,110,32,32,32,32,32,32,107,101,121,58,32,92,34,116,111,97,115,116,92,34,44,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,116,111,97,115,116,40,99,111,110,116,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,99,111,110,116,101,110,116,32,124,124,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,119,97,114,110,78,111,116,67,108,105,101,110,116,41,40,80,82,79,80,95,78,65,77,69,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,109,97,107,101,84,111,97,115,116,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,102,105,108,116,101,114,79,112,116,105,111,110,115,40,111,112,116,105,111,110,115,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,111,97,115,116,67,111,110,116,101,110,116,58,32,99,111,110,116,101,110,116,92,110,32,32,32,32,32,32,32,32,125,41,44,32,116,104,105,115,46,95,118,109,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,115,104,111,119,115,32,97,32,96,60,98,45,116,111,97,115,116,62,96,32,99,111,109,112,111,110,101,110,116,32,119,105,116,104,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,73,68,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,107,101,121,58,32,92,34,115,104,111,119,92,34,44,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,104,111,119,40,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,111,111,116,46,36,101,109,105,116,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,84,79,65,83,84,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,41,44,32,105,100,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,47,47,32,72,105,100,101,32,97,32,116,111,97,115,116,32,119,105,116,104,32,115,112,101,99,105,102,105,101,100,32,73,68,44,32,111,114,32,105,102,32,110,111,116,32,73,68,32,97,108,108,32,116,111,97,115,116,115,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,107,101,121,58,32,92,34,104,105,100,101,92,34,44,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,100,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,111,111,116,46,36,101,109,105,116,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,84,79,65,83,84,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,41,44,32,105,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,93,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,66,118,84,111,97,115,116,59,92,110,32,32,125,40,41,59,32,47,47,32,65,100,100,32,111,117,114,32,105,110,115,116,97,110,99,101,32,109,105,120,105,110,92,110,92,110,92,110,32,32,86,117,101,46,109,105,120,105,110,40,123,92,110,32,32,32,32,98,101,102,111,114,101,67,114,101,97,116,101,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,67,114,101,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,66,101,99,97,117,115,101,32,119,101,32,110,101,101,100,32,97,99,99,101,115,115,32,116,111,32,96,36,114,111,111,116,96,32,102,111,114,32,96,36,101,109,105,116,115,96,44,32,97,110,100,32,86,77,32,102,111,114,32,112,97,114,101,110,116,105,110,103,44,92,110,32,32,32,32,32,32,47,47,32,119,101,32,104,97,118,101,32,116,111,32,99,114,101,97,116,101,32,97,32,102,114,101,115,104,32,105,110,115,116,97,110,99,101,32,111,102,32,96,66,118,84,111,97,115,116,96,32,102,111,114,32,101,97,99,104,32,86,77,92,110,32,32,32,32,32,32,116,104,105,115,91,80,82,79,80,95,78,65,77,69,95,80,82,73,86,93,32,61,32,110,101,119,32,66,118,84,111,97,115,116,40,116,104,105,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,68,101,102,105,110,101,32,111,117,114,32,114,101,97,100,45,111,110,108,121,32,96,36,98,118,84,111,97,115,116,96,32,105,110,115,116,97,110,99,101,32,112,114,111,112,101,114,116,121,92,110,32,32,47,47,32,80,108,97,99,101,100,32,105,110,32,97,110,32,105,102,32,106,117,115,116,32,105,110,32,99,97,115,101,32,105,110,32,72,77,82,32,109,111,100,101,92,110,92,110,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,41,40,86,117,101,46,112,114,111,116,111,116,121,112,101,44,32,80,82,79,80,95,78,65,77,69,41,41,32,123,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,41,40,86,117,101,46,112,114,111,116,111,116,121,112,101,44,32,80,82,79,80,95,78,65,77,69,44,32,123,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,32,124,124,32,33,116,104,105,115,91,80,82,79,80,95,78,65,77,69,95,80,82,73,86,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,119,97,114,110,41,40,92,34,92,92,92,34,92,34,46,99,111,110,99,97,116,40,80,82,79,80,95,78,65,77,69,44,32,92,34,92,92,92,34,32,109,117,115,116,32,98,101,32,97,99,99,101,115,115,101,100,32,102,114,111,109,32,97,32,86,117,101,32,105,110,115,116,97,110,99,101,32,92,92,92,34,116,104,105,115,92,92,92,34,32,99,111,110,116,101,120,116,46,92,34,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,84,79,65,83,84,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,80,82,79,80,95,78,65,77,69,95,80,82,73,86,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,66,86,84,111,97,115,116,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,112,108,117,103,105,110,115,58,32,123,92,110,32,32,32,32,112,108,117,103,105,110,58,32,112,108,117,103,105,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,104,101,108,112,101,114,115,47,98,118,45,116,111,97,115,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,111,97,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,84,111,97,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,111,97,115,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,111,97,115,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,84,111,97,115,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,111,97,115,116,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,84,111,97,115,116,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,98,118,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,98,118,45,116,111,97,115,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,104,101,108,112,101,114,115,47,98,118,45,116,111,97,115,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,111,97,115,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,116,111,97,115,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,97,115,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,111,97,115,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,116,111,97,115,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,84,111,97,115,116,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,84,111,97,115,116,58,32,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,84,111,97,115,116,44,92,110,32,32,32,32,66,84,111,97,115,116,101,114,58,32,95,116,111,97,115,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,84,111,97,115,116,101,114,92,110,32,32,125,44,92,110,32,32,47,47,32,36,98,118,84,111,97,115,116,32,105,110,106,101,99,116,105,111,110,92,110,32,32,112,108,117,103,105,110,115,58,32,123,92,110,32,32,32,32,66,86,84,111,97,115,116,80,108,117,103,105,110,58,32,95,104,101,108,112,101,114,115,95,98,118,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,86,84,111,97,115,116,80,108,117,103,105,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,116,111,97,115,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,116,111,97,115,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,111,97,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,84,111,97,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,112,111,114,116,97,108,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,112,111,114,116,97,108,45,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,114,116,97,108,45,118,117,101,47,100,105,115,116,47,112,111,114,116,97,108,45,118,117,101,46,99,111,109,109,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,118,117,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,98,118,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,114,111,117,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,114,111,117,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,115,99,111,112,101,100,95,115,116,121,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,115,99,111,112,101,100,45,115,116,121,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,115,99,111,112,101,100,45,115,116,121,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,105,110,107,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,105,116,105,111,110,95,98,118,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,97,115,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,111,97,115,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,116,111,97,115,116,101,114,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,105,115,105,98,108,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,92,110,32,32,100,101,102,97,117,108,116,86,97,108,117,101,58,32,102,97,108,115,101,44,92,110,32,32,101,118,101,110,116,58,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,92,110,92,110,118,97,114,32,77,73,78,95,68,85,82,65,84,73,79,78,32,61,32,49,48,48,48,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,108,105,110,107,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,105,99,107,41,40,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,44,32,91,39,104,114,101,102,39,44,32,39,116,111,39,93,41,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,108,105,110,107,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,112,112,101,110,100,84,111,97,115,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,97,117,116,111,72,105,100,101,68,101,108,97,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,53,48,48,48,41,44,92,110,32,32,98,111,100,121,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,104,101,97,100,101,114,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,83,119,105,116,99,104,101,115,32,114,111,108,101,32,116,111,32,39,115,116,97,116,117,115,39,32,97,110,100,32,97,114,105,97,45,108,105,118,101,32,116,111,32,39,112,111,108,105,116,101,39,92,110,32,32,105,115,83,116,97,116,117,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,65,117,116,111,72,105,100,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,67,108,111,115,101,66,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,70,97,100,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,111,72,111,118,101,114,80,97,117,115,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,111,108,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,82,101,110,100,101,114,32,116,104,101,32,116,111,97,115,116,32,105,110,32,112,108,97,99,101,44,32,114,97,116,104,101,114,32,116,104,97,110,32,105,110,32,97,32,112,111,114,116,97,108,45,116,97,114,103,101,116,92,110,32,32,115,116,97,116,105,99,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,105,116,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,111,97,115,116,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,116,111,97,115,116,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,39,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,84,79,65,83,84,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,84,111,97,115,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,84,79,65,83,84,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,108,105,115,116,101,110,79,110,82,111,111,116,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,115,99,111,112,101,100,95,115,116,121,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,115,99,111,112,101,100,83,116,121,108,101,77,105,120,105,110,93,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,105,115,77,111,117,110,116,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,100,111,82,101,110,100,101,114,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,108,111,99,97,108,83,104,111,119,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,105,115,72,105,100,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,111,114,100,101,114,58,32,48,44,92,110,32,32,32,32,32,32,100,105,115,109,105,115,115,83,116,97,114,116,101,100,58,32,48,44,92,110,32,32,32,32,32,32,114,101,115,117,109,101,68,105,115,109,105,115,115,58,32,48,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,116,111,97,115,116,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,116,111,97,115,116,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,112,112,101,110,100,84,111,97,115,116,32,61,32,116,104,105,115,46,97,112,112,101,110,100,84,111,97,115,116,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,118,97,114,105,97,110,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,92,110,32,32,32,32,32,32,32,32,39,98,45,116,111,97,115,116,45,115,111,108,105,100,39,58,32,116,104,105,115,46,115,111,108,105,100,44,92,110,32,32,32,32,32,32,32,32,39,98,45,116,111,97,115,116,45,97,112,112,101,110,100,39,58,32,97,112,112,101,110,100,84,111,97,115,116,44,92,110,32,32,32,32,32,32,32,32,39,98,45,116,111,97,115,116,45,112,114,101,112,101,110,100,39,58,32,33,97,112,112,101,110,100,84,111,97,115,116,92,110,32,32,32,32,32,32,125,44,32,92,34,98,45,116,111,97,115,116,45,92,34,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,44,32,118,97,114,105,97,110,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,108,111,116,83,99,111,112,101,58,32,102,117,110,99,116,105,111,110,32,115,108,111,116,83,99,111,112,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,105,100,101,32,61,32,116,104,105,115,46,104,105,100,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,104,105,100,101,58,32,104,105,100,101,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,68,117,114,97,116,105,111,110,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,68,117,114,97,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,77,105,110,105,109,117,109,32,115,117,112,112,111,114,116,101,100,32,100,117,114,97,116,105,111,110,32,105,115,32,49,32,115,101,99,111,110,100,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,97,117,116,111,72,105,100,101,68,101,108,97,121,44,32,48,41,44,32,77,73,78,95,68,85,82,65,84,73,79,78,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,84,111,97,115,116,101,114,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,84,111,97,115,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,116,104,105,115,46,116,111,97,115,116,101,114,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,114,97,110,115,105,116,105,111,110,72,97,110,100,108,101,114,115,58,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,105,116,105,111,110,72,97,110,100,108,101,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,98,101,102,111,114,101,69,110,116,101,114,58,32,116,104,105,115,46,111,110,66,101,102,111,114,101,69,110,116,101,114,44,92,110,32,32,32,32,32,32,32,32,97,102,116,101,114,69,110,116,101,114,58,32,116,104,105,115,46,111,110,65,102,116,101,114,69,110,116,101,114,44,92,110,32,32,32,32,32,32,32,32,98,101,102,111,114,101,76,101,97,118,101,58,32,116,104,105,115,46,111,110,66,101,102,111,114,101,76,101,97,118,101,44,92,110,32,32,32,32,32,32,32,32,97,102,116,101,114,76,101,97,118,101,58,32,116,104,105,115,46,111,110,65,102,116,101,114,76,101,97,118,101,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,104,105,115,46,98,118,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,48,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,116,104,105,115,91,110,101,119,86,97,108,117,101,32,63,32,39,115,104,111,119,39,32,58,32,39,104,105,100,101,39,93,40,41,59,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,108,111,99,97,108,83,104,111,119,92,34,44,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,83,104,111,119,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,116,111,97,115,116,101,114,92,34,44,32,102,117,110,99,116,105,111,110,32,116,111,97,115,116,101,114,40,41,32,123,92,110,32,32,32,32,47,47,32,73,102,32,116,111,97,115,116,101,114,32,116,97,114,103,101,116,32,99,104,97,110,103,101,100,44,32,109,97,107,101,32,115,117,114,101,32,116,111,97,115,116,101,114,32,101,120,105,115,116,115,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,101,110,115,117,114,101,84,111,97,115,116,101,114,41,59,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,115,116,97,116,105,99,92,34,44,32,102,117,110,99,116,105,111,110,32,95,115,116,97,116,105,99,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,47,47,32,73,102,32,115,116,97,116,105,99,32,99,104,97,110,103,101,115,32,116,111,32,116,114,117,101,44,32,97,110,100,32,116,104,101,32,116,111,97,115,116,32,105,115,32,115,104,111,119,105,110,103,44,92,110,32,32,32,32,47,47,32,101,110,115,117,114,101,32,116,104,101,32,116,111,97,115,116,101,114,32,116,97,114,103,101,116,32,101,120,105,115,116,115,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,38,38,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,101,110,115,117,114,101,84,111,97,115,116,101,114,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,67,114,101,97,116,101,32,112,114,105,118,97,116,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,115,92,110,32,32,32,32,116,104,105,115,46,36,95,100,105,115,109,105,115,115,84,105,109,101,114,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,116,104,105,115,46,105,115,77,111,117,110,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,115,104,111,119,40,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,32,47,47,32,76,105,115,116,101,110,32,102,111,114,32,103,108,111,98,97,108,32,36,114,111,111,116,32,115,104,111,119,32,101,118,101,110,116,115,92,110,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,84,79,65,83,84,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,41,44,32,102,117,110,99,116,105,111,110,32,40,105,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,100,32,61,61,61,32,95,116,104,105,115,46,115,97,102,101,73,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,115,104,111,119,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,32,47,47,32,76,105,115,116,101,110,32,102,111,114,32,103,108,111,98,97,108,32,36,114,111,111,116,32,104,105,100,101,32,101,118,101,110,116,115,92,110,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,84,79,65,83,84,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,41,44,32,102,117,110,99,116,105,111,110,32,40,105,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,100,32,124,124,32,105,100,32,61,61,61,32,95,116,104,105,115,46,115,97,102,101,73,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,104,105,100,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,32,47,47,32,77,97,107,101,32,115,117,114,101,32,119,101,32,104,105,100,101,32,119,104,101,110,32,116,111,97,115,116,101,114,32,105,115,32,100,101,115,116,114,111,121,101,100,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,100,105,102,102,105,99,117,108,116,32,116,111,32,116,101,115,116,32,42,47,92,110,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,84,79,65,83,84,69,82,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,69,86,69,78,84,95,78,65,77,69,95,68,69,83,84,82,79,89,69,68,41,44,32,102,117,110,99,116,105,111,110,32,40,116,111,97,115,116,101,114,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,116,111,97,115,116,101,114,32,61,61,61,32,95,116,104,105,115,46,99,111,109,112,117,116,101,100,84,111,97,115,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,104,105,100,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,68,105,115,109,105,115,115,84,105,109,101,114,40,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,115,104,111,119,58,32,102,117,110,99,116,105,111,110,32,115,104,111,119,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,110,115,117,114,101,84,111,97,115,116,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,104,111,119,69,118,116,32,61,32,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,115,104,111,119,69,118,116,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,100,105,115,109,105,115,115,83,116,97,114,116,101,100,32,61,32,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,111,114,100,101,114,32,61,32,68,97,116,101,46,110,111,119,40,41,32,42,32,40,116,104,105,115,46,97,112,112,101,110,100,84,111,97,115,116,32,63,32,49,32,58,32,45,49,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,72,105,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,100,111,82,101,110,100,101,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,115,104,111,119,32,116,104,101,32,116,111,97,115,116,32,97,102,116,101,114,32,119,101,32,104,97,118,101,32,114,101,110,100,101,114,101,100,32,116,104,101,32,112,111,114,116,97,108,32,97,110,100,32,98,45,116,111,97,115,116,32,119,114,97,112,112,101,114,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,115,111,32,116,104,97,116,32,115,99,114,101,101,110,32,114,101,97,100,101,114,115,32,119,105,108,108,32,112,114,111,112,101,114,108,121,32,97,110,110,111,117,110,99,101,32,116,104,101,32,116,111,97,115,116,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,108,111,99,97,108,83,104,111,119,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,105,100,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,104,105,100,101,69,118,116,32,61,32,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,104,105,100,101,69,118,116,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,72,111,118,101,114,72,97,110,100,108,101,114,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,100,105,115,109,105,115,115,83,116,97,114,116,101,100,32,61,32,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,68,105,115,109,105,115,115,84,105,109,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,72,105,100,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,108,111,99,97,108,83,104,111,119,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,117,105,108,100,69,118,101,110,116,58,32,102,117,110,99,116,105,111,110,32,98,117,105,108,100,69,118,101,110,116,40,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,95,117,116,105,108,115,95,98,118,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,66,118,69,118,101,110,116,40,116,121,112,101,44,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,99,97,110,99,101,108,97,98,108,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,104,105,115,46,36,101,108,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,114,101,108,97,116,101,100,84,97,114,103,101,116,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,32,111,112,116,105,111,110,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,117,101,84,97,114,103,101,116,58,32,116,104,105,115,44,92,110,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,73,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,92,110,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,109,105,116,69,118,101,110,116,58,32,102,117,110,99,116,105,111,110,32,101,109,105,116,69,118,101,110,116,40,98,118,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,98,118,69,118,101,110,116,46,116,121,112,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,78,65,77,69,95,84,79,65,83,84,44,32,116,121,112,101,41,44,32,98,118,69,118,101,110,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,116,121,112,101,44,32,98,118,69,118,101,110,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,110,115,117,114,101,84,111,97,115,116,101,114,58,32,102,117,110,99,116,105,111,110,32,101,110,115,117,114,101,84,111,97,115,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,115,116,97,116,105,99,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,111,109,112,117,116,101,100,84,111,97,115,116,101,114,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,84,111,97,115,116,101,114,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,112,111,114,116,97,108,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,87,111,114,109,104,111,108,101,46,104,97,115,84,97,114,103,101,116,40,99,111,109,112,117,116,101,100,84,111,97,115,116,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,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,39,100,105,118,39,41,59,92,110,32,32,32,32,32,32,32,32,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,100,105,118,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,111,97,115,116,101,114,32,61,32,110,101,119,32,95,116,111,97,115,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,66,84,111,97,115,116,101,114,40,123,92,110,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,58,32,116,104,105,115,46,36,114,111,111,116,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,68,97,116,97,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,99,111,109,112,117,116,101,100,84,111,97,115,116,101,114,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,116,111,97,115,116,101,114,46,36,109,111,117,110,116,40,100,105,118,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,116,97,114,116,68,105,115,109,105,115,115,84,105,109,101,114,58,32,102,117,110,99,116,105,111,110,32,115,116,97,114,116,68,105,115,109,105,115,115,84,105,109,101,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,68,105,115,109,105,115,115,84,105,109,101,114,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,110,111,65,117,116,111,72,105,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,100,105,115,109,105,115,115,84,105,109,101,114,32,61,32,115,101,116,84,105,109,101,111,117,116,40,116,104,105,115,46,104,105,100,101,44,32,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,32,124,124,32,116,104,105,115,46,99,111,109,112,117,116,101,100,68,117,114,97,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,100,105,115,109,105,115,115,83,116,97,114,116,101,100,32,61,32,68,97,116,101,46,110,111,119,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,32,61,32,48,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,108,101,97,114,68,105,115,109,105,115,115,84,105,109,101,114,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,68,105,115,109,105,115,115,84,105,109,101,114,40,41,32,123,92,110,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,36,95,100,105,115,109,105,115,115,84,105,109,101,114,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,100,105,115,109,105,115,115,84,105,109,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,72,111,118,101,114,72,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,115,101,116,72,111,118,101,114,72,97,110,100,108,101,114,40,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,101,108,32,61,32,116,104,105,115,46,36,114,101,102,115,91,39,98,45,116,111,97,115,116,39,93,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,101,118,101,110,116,79,110,79,102,102,41,40,111,110,44,32,101,108,44,32,39,109,111,117,115,101,101,110,116,101,114,39,44,32,116,104,105,115,46,111,110,80,97,117,115,101,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,101,118,101,110,116,79,110,79,102,102,41,40,111,110,44,32,101,108,44,32,39,109,111,117,115,101,108,101,97,118,101,39,44,32,116,104,105,115,46,111,110,85,110,80,97,117,115,101,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,80,97,117,115,101,58,32,102,117,110,99,116,105,111,110,32,111,110,80,97,117,115,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,101,116,101,114,109,105,110,101,32,116,105,109,101,32,114,101,109,97,105,110,105,110,103,44,32,97,110,100,32,116,104,101,110,32,112,97,117,115,101,32,116,105,109,101,114,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,110,111,65,117,116,111,72,105,100,101,32,124,124,32,116,104,105,115,46,110,111,72,111,118,101,114,80,97,117,115,101,32,124,124,32,33,116,104,105,115,46,36,95,100,105,115,109,105,115,115,84,105,109,101,114,32,124,124,32,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,112,97,115,115,101,100,32,61,32,68,97,116,101,46,110,111,119,40,41,32,45,32,116,104,105,115,46,100,105,115,109,105,115,115,83,116,97,114,116,101,100,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,112,97,115,115,101,100,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,68,105,115,109,105,115,115,84,105,109,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,109,97,116,104,77,97,120,41,40,116,104,105,115,46,99,111,109,112,117,116,101,100,68,117,114,97,116,105,111,110,32,45,32,112,97,115,115,101,100,44,32,77,73,78,95,68,85,82,65,84,73,79,78,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,85,110,80,97,117,115,101,58,32,102,117,110,99,116,105,111,110,32,111,110,85,110,80,97,117,115,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,115,116,97,114,116,32,116,105,109,101,114,32,119,105,116,104,32,109,97,120,32,111,102,32,116,105,109,101,32,114,101,109,97,105,110,105,110,103,32,111,114,32,49,32,115,101,99,111,110,100,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,110,111,65,117,116,111,72,105,100,101,32,124,124,32,116,104,105,115,46,110,111,72,111,118,101,114,80,97,117,115,101,32,124,124,32,33,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,32,61,32,116,104,105,115,46,100,105,115,109,105,115,115,83,116,97,114,116,101,100,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,115,116,97,114,116,68,105,115,109,105,115,115,84,105,109,101,114,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,76,105,110,107,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,111,110,76,105,110,107,67,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,101,108,97,121,32,116,104,101,32,99,108,111,115,101,32,116,111,32,97,108,108,111,119,32,116,105,109,101,32,102,111,114,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,98,114,111,119,115,101,114,32,116,111,32,112,114,111,99,101,115,115,32,116,104,101,32,108,105,110,107,32,99,108,105,99,107,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,104,105,100,101,40,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,66,101,102,111,114,101,69,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,111,110,66,101,102,111,114,101,69,110,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,65,102,116,101,114,69,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,111,110,65,102,116,101,114,69,110,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,118,97,114,32,104,105,100,100,101,110,69,118,116,32,61,32,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,104,105,100,100,101,110,69,118,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,116,97,114,116,68,105,115,109,105,115,115,84,105,109,101,114,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,72,111,118,101,114,72,97,110,100,108,101,114,40,116,114,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,66,101,102,111,114,101,76,101,97,118,101,58,32,102,117,110,99,116,105,111,110,32,111,110,66,101,102,111,114,101,76,101,97,118,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,65,102,116,101,114,76,101,97,118,101,58,32,102,117,110,99,116,105,111,110,32,111,110,65,102,116,101,114,76,101,97,118,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,111,114,100,101,114,32,61,32,48,59,92,110,32,32,32,32,32,32,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,32,61,32,116,104,105,115,46,100,105,115,109,105,115,115,83,116,97,114,116,101,100,32,61,32,48,59,92,110,32,32,32,32,32,32,118,97,114,32,104,105,100,100,101,110,69,118,116,32,61,32,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,104,105,100,100,101,110,69,118,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,100,111,82,101,110,100,101,114,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,82,101,110,100,101,114,32,104,101,108,112,101,114,32,102,111,114,32,103,101,110,101,114,97,116,105,110,103,32,116,104,101,32,116,111,97,115,116,92,110,32,32,32,32,109,97,107,101,84,111,97,115,116,58,32,102,117,110,99,116,105,111,110,32,109,97,107,101,84,111,97,115,116,40,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,53,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,105,116,108,101,32,61,32,116,104,105,115,46,116,105,116,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,115,108,111,116,83,99,111,112,101,32,61,32,116,104,105,115,46,115,108,111,116,83,99,111,112,101,59,92,110,32,32,32,32,32,32,118,97,114,32,108,105,110,107,32,61,32,40,48,44,95,117,116,105,108,115,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,105,115,76,105,110,107,41,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,118,97,114,32,36,104,101,97,100,101,114,67,111,110,116,101,110,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,118,97,114,32,36,116,105,116,108,101,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,83,76,79,84,95,78,65,77,69,95,84,79,65,83,84,95,84,73,84,76,69,44,32,115,108,111,116,83,99,111,112,101,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,36,116,105,116,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,36,104,101,97,100,101,114,67,111,110,116,101,110,116,46,112,117,115,104,40,36,116,105,116,108,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,105,116,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,36,104,101,97,100,101,114,67,111,110,116,101,110,116,46,112,117,115,104,40,104,40,39,115,116,114,111,110,103,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,109,114,45,50,39,92,110,32,32,32,32,32,32,32,32,125,44,32,116,105,116,108,101,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,110,111,67,108,111,115,101,66,117,116,116,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,36,104,101,97,100,101,114,67,111,110,116,101,110,116,46,112,117,115,104,40,104,40,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,66,66,117,116,116,111,110,67,108,111,115,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,109,108,45,97,117,116,111,32,109,98,45,49,39,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,53,46,104,105,100,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,104,101,97,100,101,114,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,36,104,101,97,100,101,114,67,111,110,116,101,110,116,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,36,104,101,97,100,101,114,32,61,32,104,40,39,104,101,97,100,101,114,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,116,111,97,115,116,45,104,101,97,100,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,104,101,97,100,101,114,67,108,97,115,115,92,110,32,32,32,32,32,32,32,32,125,44,32,36,104,101,97,100,101,114,67,111,110,116,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,98,111,100,121,32,61,32,104,40,108,105,110,107,32,63,32,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,76,105,110,107,32,58,32,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,116,111,97,115,116,45,98,111,100,121,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,98,111,100,121,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,108,105,110,107,32,63,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,108,105,110,107,80,114,111,112,115,44,32,116,104,105,115,41,32,58,32,123,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,108,105,110,107,32,63,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,111,110,76,105,110,107,67,108,105,99,107,92,110,32,32,32,32,32,32,32,32,125,32,58,32,123,125,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,44,32,115,108,111,116,83,99,111,112,101,41,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,116,111,97,115,116,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,111,97,115,116,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,116,111,97,115,116,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,91,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,67,79,77,80,79,78,69,78,84,95,85,73,68,95,75,69,89,93,41,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,39,116,111,97,115,116,39,92,110,32,32,32,32,32,32,125,44,32,91,36,104,101,97,100,101,114,44,32,36,98,111,100,121,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,111,82,101,110,100,101,114,32,124,124,32,33,116,104,105,115,46,105,115,77,111,117,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,111,114,100,101,114,32,61,32,116,104,105,115,46,111,114,100,101,114,44,92,110,32,32,32,32,32,32,32,32,105,115,83,116,97,116,105,99,32,61,32,116,104,105,115,46,115,116,97,116,105,99,44,92,110,32,32,32,32,32,32,32,32,105,115,72,105,100,105,110,103,32,61,32,116,104,105,115,46,105,115,72,105,100,105,110,103,44,92,110,32,32,32,32,32,32,32,32,105,115,83,116,97,116,117,115,32,61,32,116,104,105,115,46,105,115,83,116,97,116,117,115,59,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,92,34,98,45,116,111,97,115,116,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,91,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,67,79,77,80,79,78,69,78,84,95,85,73,68,95,75,69,89,93,41,59,92,110,32,32,32,32,118,97,114,32,36,116,111,97,115,116,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,116,111,97,115,116,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,111,97,115,116,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,105,115,83,116,97,116,105,99,32,63,32,123,125,32,58,32,116,104,105,115,46,115,99,111,112,101,100,83,116,121,108,101,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,39,95,116,111,97,115,116,95,111,117,116,101,114,39,41,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,105,115,72,105,100,105,110,103,32,63,32,110,117,108,108,32,58,32,105,115,83,116,97,116,117,115,32,63,32,39,115,116,97,116,117,115,39,32,58,32,39,97,108,101,114,116,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,105,115,72,105,100,105,110,103,32,63,32,110,117,108,108,32,58,32,105,115,83,116,97,116,117,115,32,63,32,39,112,111,108,105,116,101,39,32,58,32,39,97,115,115,101,114,116,105,118,101,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,97,116,111,109,105,99,39,58,32,105,115,72,105,100,105,110,103,32,63,32,110,117,108,108,32,58,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,107,101,121,58,32,110,97,109,101,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,98,45,116,111,97,115,116,39,92,110,32,32,32,32,125,44,32,91,104,40,95,116,114,97,110,115,105,116,105,111,110,95,98,118,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,66,86,84,114,97,110,115,105,116,105,111,110,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,110,111,70,97,100,101,58,32,116,104,105,115,46,110,111,70,97,100,101,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,72,97,110,100,108,101,114,115,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,63,32,116,104,105,115,46,109,97,107,101,84,111,97,115,116,40,104,41,32,58,32,104,40,41,93,41,93,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,112,111,114,116,97,108,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,111,114,116,97,108,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,116,111,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,84,111,97,115,116,101,114,44,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,111,114,100,101,114,44,92,110,32,32,32,32,32,32,32,32,115,108,105,109,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,105,115,83,116,97,116,105,99,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,36,116,111,97,115,116,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,116,111,97,115,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,116,111,97,115,116,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,116,111,97,115,116,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,111,97,115,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,84,111,97,115,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,68,101,102,97,117,108,116,84,114,97,110,115,105,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,68,101,102,97,117,108,116,84,114,97,110,115,105,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,112,111,114,116,97,108,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,112,111,114,116,97,108,45,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,114,116,97,108,45,118,117,101,47,100,105,115,116,47,112,111,114,116,97,108,45,118,117,101,46,99,111,109,109,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,119,97,114,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,99,111,109,112,111,110,101,110,116,115,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,68,101,102,97,117,108,116,84,114,97,110,115,105,116,105,111,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,47,47,32,84,114,97,110,115,105,116,105,111,110,32,99,108,97,115,115,101,115,32,98,97,115,101,32,110,97,109,101,92,110,32,32,32,32,32,32,110,97,109,101,58,32,39,98,45,116,111,97,115,116,101,114,39,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,111,110,65,102,116,101,114,69,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,111,110,65,102,116,101,114,69,110,116,101,114,40,101,108,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,87,111,114,107,32,97,114,111,117,110,100,32,97,32,86,117,101,46,106,115,32,98,117,103,32,119,104,101,114,101,32,96,42,45,101,110,116,101,114,45,116,111,96,32,99,108,97,115,115,32,105,115,32,110,111,116,32,114,101,109,111,118,101,100,92,110,32,32,32,32,32,32,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,47,112,117,108,108,47,55,57,48,49,92,110,32,32,32,32,32,32,47,47,32,84,104,101,32,96,42,45,109,111,118,101,96,32,99,108,97,115,115,32,105,115,32,97,108,115,111,32,115,116,117,99,107,32,111,110,32,101,108,101,109,101,110,116,115,32,116,104,97,116,32,109,111,118,101,100,44,92,110,32,32,32,32,32,32,47,47,32,98,117,116,32,116,104,101,114,101,32,97,114,101,32,110,111,32,74,97,118,97,83,99,114,105,112,116,32,104,111,111,107,115,32,116,111,32,104,97,110,100,108,101,32,97,102,116,101,114,32,109,111,118,101,92,110,32,32,32,32,32,32,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,47,112,117,108,108,47,55,57,48,54,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,101,108,44,32,92,34,92,34,46,99,111,110,99,97,116,40,95,116,104,105,115,46,110,97,109,101,44,32,92,34,45,101,110,116,101,114,45,116,111,92,34,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,116,114,97,110,115,105,116,105,111,110,45,103,114,111,117,112,39,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,116,97,103,58,32,39,100,105,118,39,44,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,116,104,105,115,46,110,97,109,101,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,97,102,116,101,114,69,110,116,101,114,58,32,116,104,105,115,46,111,110,65,102,116,101,114,69,110,116,101,114,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,59,92,110,32,32,125,92,110,125,41,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,47,47,32,65,108,108,111,119,101,100,58,32,39,116,114,117,101,39,32,111,114,32,39,102,97,108,115,101,39,32,111,114,32,96,110,117,108,108,96,92,110,32,32,97,114,105,97,65,116,111,109,105,99,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,97,114,105,97,76,105,118,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,110,97,109,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,117,110,100,101,102,105,110,101,100,44,32,116,114,117,101,41,44,92,110,32,32,47,47,32,82,101,113,117,105,114,101,100,92,110,32,32,47,47,32,65,114,105,97,32,114,111,108,101,92,110,32,32,114,111,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,84,79,65,83,84,69,82,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,84,111,97,115,116,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,84,79,65,83,84,69,82,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,108,105,115,116,101,110,79,110,82,111,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,111,110,39,116,32,114,101,110,100,101,114,32,111,110,32,83,83,82,32,111,114,32,105,102,32,97,32,97,110,32,101,120,105,115,116,105,110,103,32,116,97,114,103,101,116,32,102,111,117,110,100,92,110,32,32,32,32,32,32,100,111,82,101,110,100,101,114,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,100,101,97,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,47,47,32,84,111,97,115,116,101,114,32,110,97,109,101,115,32,99,97,110,110,111,116,32,99,104,97,110,103,101,32,111,110,99,101,32,99,114,101,97,116,101,100,92,110,32,32,32,32,32,32,115,116,97,116,105,99,78,97,109,101,58,32,116,104,105,115,46,110,97,109,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,77,111,117,110,116,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,77,111,117,110,116,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,116,104,105,115,46,110,97,109,101,59,92,110,32,32,32,32,116,104,105,115,46,115,116,97,116,105,99,78,97,109,101,32,61,32,110,97,109,101,59,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,92,110,32,32,32,32,105,102,32,40,112,111,114,116,97,108,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,87,111,114,109,104,111,108,101,46,104,97,115,84,97,114,103,101,116,40,110,97,109,101,41,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,119,97,114,110,41,40,92,34,65,32,92,92,92,34,60,112,111,114,116,97,108,45,116,97,114,103,101,116,62,92,92,92,34,32,119,105,116,104,32,110,97,109,101,32,92,92,92,34,92,34,46,99,111,110,99,97,116,40,110,97,109,101,44,32,92,34,92,92,92,34,32,97,108,114,101,97,100,121,32,101,120,105,115,116,115,32,105,110,32,116,104,101,32,100,111,99,117,109,101,110,116,46,92,34,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,84,79,65,83,84,69,82,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,100,101,97,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,100,111,82,101,110,100,101,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,66,69,70,79,82,69,95,68,69,83,84,82,79,89,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,76,101,116,32,116,111,97,115,116,115,32,109,97,100,101,32,119,105,116,104,32,96,116,104,105,115,46,36,98,118,84,111,97,115,116,46,116,111,97,115,116,40,41,96,32,107,110,111,119,32,116,104,97,116,32,116,104,105,115,32,116,111,97,115,116,101,114,92,110,32,32,32,32,32,32,32,32,47,47,32,105,115,32,98,101,105,110,103,32,100,101,115,116,114,111,121,101,100,32,97,110,100,32,115,104,111,117,108,100,32,115,104,111,117,108,100,32,97,108,115,111,32,100,101,115,116,114,111,121,47,104,105,100,101,32,116,104,101,109,115,101,108,118,101,115,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,101,109,105,116,79,110,82,111,111,116,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,78,65,77,69,95,84,79,65,83,84,69,82,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,69,86,69,78,84,95,78,65,77,69,95,68,69,83,84,82,79,89,69,68,41,44,32,110,97,109,101,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,100,101,115,116,114,111,121,101,100,58,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,82,101,109,111,118,101,32,102,114,111,109,32,68,79,77,32,105,102,32,110,101,101,100,101,100,92,110,32,32,32,32,118,97,114,32,36,101,108,32,61,32,116,104,105,115,46,36,101,108,59,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,100,105,102,102,105,99,117,108,116,32,116,111,32,116,101,115,116,32,42,47,92,110,92,110,32,32,32,32,105,102,32,40,36,101,108,32,38,38,32,36,101,108,46,112,97,114,101,110,116,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,36,101,108,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,36,101,108,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,36,116,111,97,115,116,101,114,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,39,100,45,110,111,110,101,39,44,32,123,92,110,32,32,32,32,32,32,32,32,39,98,45,100,101,97,100,45,116,111,97,115,116,101,114,39,58,32,116,104,105,115,46,100,101,97,100,92,110,32,32,32,32,32,32,125,93,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,100,111,82,101,110,100,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,116,97,114,103,101,116,32,61,32,104,40,112,111,114,116,97,108,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,111,114,116,97,108,84,97,114,103,101,116,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,116,111,97,115,116,101,114,45,115,108,111,116,39,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,116,104,105,115,46,115,116,97,116,105,99,78,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,109,117,108,116,105,112,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,103,58,32,39,100,105,118,39,44,92,110,32,32,32,32,32,32,32,32,32,32,115,108,105,109,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,116,114,97,110,115,105,116,105,111,110,58,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,32,124,124,32,68,101,102,97,117,108,116,84,114,97,110,115,105,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,58,32,68,101,102,97,117,108,116,84,114,97,110,115,105,116,105,111,110,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,36,116,111,97,115,116,101,114,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,116,111,97,115,116,101,114,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,116,104,105,115,46,115,116,97,116,105,99,78,97,109,101,93,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,116,97,116,105,99,78,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,70,97,108,108,98,97,99,107,32,116,111,32,110,117,108,108,32,116,111,32,109,97,107,101,32,115,117,114,101,32,97,116,116,114,105,98,117,116,101,32,100,111,101,115,110,39,116,32,101,120,105,115,116,92,110,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,116,104,105,115,46,114,111,108,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,105,118,101,39,58,32,116,104,105,115,46,97,114,105,97,76,105,118,101,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,97,116,111,109,105,99,39,58,32,116,104,105,115,46,97,114,105,97,65,116,111,109,105,99,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,36,116,97,114,103,101,116,93,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,36,116,111,97,115,116,101,114,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,116,111,97,115,116,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,112,111,112,112,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,112,111,112,112,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,80,111,112,112,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,86,80,111,112,112,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,112,111,112,112,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,112,111,112,112,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,112,112,101,114,46,106,115,47,100,105,115,116,47,101,115,109,47,112,111,112,112,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,105,116,105,111,110,95,98,118,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,46,106,115,92,34,41,59,92,110,47,47,32,66,97,115,101,32,111,110,45,100,101,109,97,110,100,32,99,111,109,112,111,110,101,110,116,32,102,111,114,32,116,111,111,108,116,105,112,32,47,32,112,111,112,111,118,101,114,32,116,101,109,112,108,97,116,101,115,92,110,47,47,92,110,47,47,32,67,117,114,114,101,110,116,108,121,58,92,110,47,47,32,32,32,82,101,115,112,111,110,115,105,98,108,101,32,102,111,114,32,112,111,115,105,116,105,111,110,105,110,103,32,97,110,100,32,116,114,97,110,115,105,116,105,111,110,105,110,103,32,116,104,101,32,116,101,109,112,108,97,116,101,92,110,47,47,32,32,32,84,101,109,112,108,97,116,101,115,32,97,114,101,32,111,110,108,121,32,105,110,115,116,97,110,116,105,97,116,101,100,32,119,104,101,110,32,115,104,111,119,110,44,32,97,110,100,32,100,101,115,116,114,111,121,101,100,32,119,104,101,110,32,104,105,100,100,101,110,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,65,116,116,97,99,104,109,101,110,116,77,97,112,32,61,32,123,92,110,32,32,65,85,84,79,58,32,39,97,117,116,111,39,44,92,110,32,32,84,79,80,58,32,39,116,111,112,39,44,92,110,32,32,82,73,71,72,84,58,32,39,114,105,103,104,116,39,44,92,110,32,32,66,79,84,84,79,77,58,32,39,98,111,116,116,111,109,39,44,92,110,32,32,76,69,70,84,58,32,39,108,101,102,116,39,44,92,110,32,32,84,79,80,76,69,70,84,58,32,39,116,111,112,39,44,92,110,32,32,84,79,80,82,73,71,72,84,58,32,39,116,111,112,39,44,92,110,32,32,82,73,71,72,84,84,79,80,58,32,39,114,105,103,104,116,39,44,92,110,32,32,82,73,71,72,84,66,79,84,84,79,77,58,32,39,114,105,103,104,116,39,44,92,110,32,32,66,79,84,84,79,77,76,69,70,84,58,32,39,98,111,116,116,111,109,39,44,92,110,32,32,66,79,84,84,79,77,82,73,71,72,84,58,32,39,98,111,116,116,111,109,39,44,92,110,32,32,76,69,70,84,84,79,80,58,32,39,108,101,102,116,39,44,92,110,32,32,76,69,70,84,66,79,84,84,79,77,58,32,39,108,101,102,116,39,92,110,125,59,92,110,118,97,114,32,79,102,102,115,101,116,77,97,112,32,61,32,123,92,110,32,32,65,85,84,79,58,32,48,44,92,110,32,32,84,79,80,76,69,70,84,58,32,45,49,44,92,110,32,32,84,79,80,58,32,48,44,92,110,32,32,84,79,80,82,73,71,72,84,58,32,43,49,44,92,110,32,32,82,73,71,72,84,84,79,80,58,32,45,49,44,92,110,32,32,82,73,71,72,84,58,32,48,44,92,110,32,32,82,73,71,72,84,66,79,84,84,79,77,58,32,43,49,44,92,110,32,32,66,79,84,84,79,77,76,69,70,84,58,32,45,49,44,92,110,32,32,66,79,84,84,79,77,58,32,48,44,92,110,32,32,66,79,84,84,79,77,82,73,71,72,84,58,32,43,49,44,92,110,32,32,76,69,70,84,84,79,80,58,32,45,49,44,92,110,32,32,76,69,70,84,58,32,48,44,92,110,32,32,76,69,70,84,66,79,84,84,79,77,58,32,43,49,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,47,47,32,84,104,101,32,109,105,110,105,109,117,109,32,100,105,115,116,97,110,99,101,32,40,105,110,32,96,112,120,96,41,32,102,114,111,109,32,116,104,101,32,101,100,103,101,32,111,102,32,116,104,101,92,110,32,32,47,47,32,116,111,111,108,116,105,112,47,112,111,112,111,118,101,114,32,116,104,97,116,32,116,104,101,32,97,114,114,111,119,32,99,97,110,32,98,101,32,112,111,115,105,116,105,111,110,101,100,92,110,32,32,97,114,114,111,119,80,97,100,100,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,54,41,44,92,110,32,32,47,47,32,39,115,99,114,111,108,108,80,97,114,101,110,116,39,44,32,39,118,105,101,119,112,111,114,116,39,44,32,39,119,105,110,100,111,119,39,44,32,111,114,32,96,69,108,101,109,101,110,116,96,92,110,32,32,98,111,117,110,100,97,114,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,91,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,72,84,77,76,69,108,101,109,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,44,32,39,115,99,114,111,108,108,80,97,114,101,110,116,39,41,44,92,110,32,32,47,47,32,84,111,111,108,116,105,112,47,112,111,112,111,118,101,114,32,119,105,108,108,32,116,114,121,32,97,110,100,32,115,116,97,121,32,97,119,97,121,32,102,114,111,109,92,110,32,32,47,47,32,98,111,117,110,100,97,114,121,32,101,100,103,101,32,98,121,32,116,104,105,115,32,109,97,110,121,32,112,105,120,101,108,115,92,110,32,32,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,53,41,44,92,110,32,32,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,44,32,39,102,108,105,112,39,41,44,92,110,32,32,111,102,102,115,101,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,48,41,44,92,110,32,32,112,108,97,99,101,109,101,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,116,111,112,39,41,44,92,110,32,32,47,47,32,69,108,101,109,101,110,116,32,116,104,97,116,32,116,104,101,32,116,111,111,108,116,105,112,47,112,111,112,111,118,101,114,32,105,115,32,112,111,115,105,116,105,111,110,101,100,32,114,101,108,97,116,105,118,101,32,116,111,92,110,32,32,116,97,114,103,101,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,91,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,72,84,77,76,69,108,101,109,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,83,86,71,69,108,101,109,101,110,116,93,41,92,110,125,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,86,80,111,112,112,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,80,79,80,80,69,82,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,47,47,32,114,101,97,99,116,105,118,101,32,112,114,111,112,115,32,115,101,116,32,98,121,32,112,97,114,101,110,116,92,110,32,32,32,32,32,32,110,111,70,97,100,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,47,47,32,83,116,97,116,101,32,114,101,108,97,116,101,100,32,100,97,116,97,92,110,32,32,32,32,32,32,108,111,99,97,108,83,104,111,119,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,97,116,116,97,99,104,109,101,110,116,58,32,116,104,105,115,46,103,101,116,65,116,116,97,99,104,109,101,110,116,40,116,104,105,115,46,112,108,97,99,101,109,101,110,116,41,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,116,101,109,112,108,97,116,101,84,121,112,101,58,32,102,117,110,99,116,105,111,110,32,116,101,109,112,108,97,116,101,84,121,112,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,79,118,101,114,114,105,100,100,101,110,32,98,121,32,116,101,109,112,108,97,116,101,32,99,111,109,112,111,110,101,110,116,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,117,110,107,110,111,119,110,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,111,112,112,101,114,67,111,110,102,105,103,58,32,102,117,110,99,116,105,111,110,32,112,111,112,112,101,114,67,111,110,102,105,103,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,112,108,97,99,101,109,101,110,116,32,61,32,116,104,105,115,46,112,108,97,99,101,109,101,110,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,112,108,97,99,101,109,101,110,116,58,32,116,104,105,115,46,103,101,116,65,116,116,97,99,104,109,101,110,116,40,112,108,97,99,101,109,101,110,116,41,44,92,110,32,32,32,32,32,32,32,32,109,111,100,105,102,105,101,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,111,102,102,115,101,116,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,102,102,115,101,116,58,32,116,104,105,115,46,103,101,116,79,102,102,115,101,116,40,112,108,97,99,101,109,101,110,116,41,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,102,108,105,112,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,101,104,97,118,105,111,114,58,32,116,104,105,115,46,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,96,97,114,114,111,119,46,101,108,101,109,101,110,116,96,32,99,97,110,32,97,108,115,111,32,98,101,32,97,32,114,101,102,101,114,101,110,99,101,32,116,111,32,97,110,32,72,84,77,76,32,69,108,101,109,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,109,97,121,98,101,32,119,101,32,115,104,111,117,108,100,32,109,97,107,101,32,116,104,105,115,32,97,32,96,36,114,101,102,96,32,105,110,32,116,104,101,32,116,101,109,112,108,97,116,101,115,63,92,110,32,32,32,32,32,32,32,32,32,32,97,114,114,111,119,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,101,109,101,110,116,58,32,39,46,97,114,114,111,119,39,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,100,100,105,110,103,58,32,116,104,105,115,46,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,32,116,104,105,115,46,98,111,117,110,100,97,114,121,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,67,114,101,97,116,101,58,32,102,117,110,99,116,105,111,110,32,111,110,67,114,101,97,116,101,40,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,102,108,105,112,112,105,110,103,32,97,114,114,111,119,32,99,108,97,115,115,101,115,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,97,116,97,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,32,33,61,61,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,99,97,110,39,116,32,116,101,115,116,32,105,110,32,74,83,68,79,77,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,112,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,40,100,97,116,97,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,85,112,100,97,116,101,58,32,102,117,110,99,116,105,111,110,32,111,110,85,112,100,97,116,101,40,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,102,108,105,112,112,105,110,103,32,97,114,114,111,119,32,99,108,97,115,115,101,115,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,112,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,40,100,97,116,97,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,47,47,32,78,111,116,101,58,32,87,101,32,97,114,101,32,99,114,101,97,116,101,100,32,111,110,45,100,101,109,97,110,100,44,32,97,110,100,32,115,104,111,117,108,100,32,98,101,32,103,117,97,114,97,110,116,101,101,100,32,116,104,97,116,92,110,32,32,32,32,47,47,32,68,79,77,32,105,115,32,114,101,110,100,101,114,101,100,47,114,101,97,100,121,32,98,121,32,116,104,101,32,116,105,109,101,32,116,104,101,32,99,114,101,97,116,101,100,32,104,111,111,107,32,114,117,110,115,92,110,32,32,32,32,116,104,105,115,46,36,95,112,111,112,112,101,114,32,61,32,110,117,108,108,59,32,47,47,32,69,110,115,117,114,101,32,119,101,32,115,104,111,119,32,97,115,32,119,101,32,109,111,117,110,116,92,110,92,110,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,116,114,117,101,59,32,47,47,32,67,114,101,97,116,101,32,112,111,112,112,101,114,32,105,110,115,116,97,110,99,101,32,98,101,102,111,114,101,32,115,104,111,119,110,92,110,92,110,32,32,32,32,116,104,105,115,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,44,32,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,50,46,112,111,112,112,101,114,67,114,101,97,116,101,40,101,108,41,59,92,110,32,32,32,32,125,41,59,32,47,47,32,83,101,108,102,32,100,101,115,116,114,117,99,116,32,104,97,110,100,108,101,114,92,110,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,68,101,115,116,114,111,121,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,50,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,32,97,32,96,114,101,113,117,101,115,116,65,70,40,41,96,32,116,111,32,114,101,108,101,97,115,101,32,99,111,110,116,114,111,108,32,98,97,99,107,32,116,111,32,97,112,112,108,105,99,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,36,100,101,115,116,114,111,121,40,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,59,32,47,47,32,83,101,108,102,32,100,101,115,116,114,117,99,116,32,105,102,32,112,97,114,101,110,116,32,100,101,115,116,114,111,121,101,100,92,110,92,110,92,110,32,32,32,32,116,104,105,115,46,36,112,97,114,101,110,116,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,68,69,83,84,82,79,89,69,68,44,32,104,97,110,100,108,101,68,101,115,116,114,111,121,41,59,32,47,47,32,83,101,108,102,32,100,101,115,116,114,117,99,116,32,97,102,116,101,114,32,104,105,100,100,101,110,92,110,92,110,32,32,32,32,116,104,105,115,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,44,32,104,97,110,100,108,101,68,101,115,116,114,111,121,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,77,111,117,110,116,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,77,111,117,110,116,40,41,32,123,92,110,32,32,32,32,47,47,32,69,110,115,117,114,101,32,116,104,97,116,32,116,104,101,32,97,116,116,97,99,104,109,101,110,116,32,112,111,115,105,116,105,111,110,32,105,115,32,99,111,114,114,101,99,116,32,98,101,102,111,114,101,32,109,111,117,110,116,105,110,103,92,110,32,32,32,32,47,47,32,97,115,32,111,117,114,32,112,114,111,112,115,68,97,116,97,32,105,115,32,97,100,100,101,100,32,97,102,116,101,114,32,96,110,101,119,32,84,101,109,112,108,97,116,101,40,123,46,46,46,125,41,96,92,110,32,32,32,32,116,104,105,115,46,97,116,116,97,99,104,109,101,110,116,32,61,32,116,104,105,115,46,103,101,116,65,116,116,97,99,104,109,101,110,116,40,116,104,105,115,46,112,108,97,99,101,109,101,110,116,41,59,92,110,32,32,125,44,92,110,32,32,117,112,100,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,85,112,100,97,116,101,32,112,111,112,112,101,114,32,105,102,32,110,101,101,100,101,100,92,110,32,32,32,32,47,47,32,84,79,68,79,58,32,83,104,111,117,108,100,32,116,104,105,115,32,98,101,32,97,32,119,97,116,99,104,101,114,32,111,110,32,96,116,104,105,115,46,112,111,112,112,101,114,67,111,110,102,105,103,96,32,105,110,115,116,101,97,100,63,92,110,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,80,111,112,112,101,114,40,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,100,101,115,116,114,111,121,80,111,112,112,101,114,40,41,59,92,110,32,32,125,44,92,110,32,32,100,101,115,116,114,111,121,101,100,58,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,77,97,107,101,32,115,117,114,101,32,116,101,109,112,108,97,116,101,32,105,115,32,114,101,109,111,118,101,100,32,102,114,111,109,32,68,79,77,92,110,32,32,32,32,118,97,114,32,101,108,32,61,32,116,104,105,115,46,36,101,108,59,92,110,32,32,32,32,101,108,32,38,38,32,101,108,46,112,97,114,101,110,116,78,111,100,101,32,38,38,32,101,108,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,101,108,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,92,34,80,117,98,108,105,99,92,34,32,109,101,116,104,111,100,32,116,111,32,116,114,105,103,103,101,114,32,104,105,100,101,32,116,101,109,112,108,97,116,101,92,110,32,32,32,32,104,105,100,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,114,105,118,97,116,101,92,110,32,32,32,32,103,101,116,65,116,116,97,99,104,109,101,110,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,65,116,116,97,99,104,109,101,110,116,40,112,108,97,99,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,65,116,116,97,99,104,109,101,110,116,77,97,112,91,83,116,114,105,110,103,40,112,108,97,99,101,109,101,110,116,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,32,124,124,32,39,97,117,116,111,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,79,102,102,115,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,79,102,102,115,101,116,40,112,108,97,99,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,111,102,102,115,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,111,117,108,100,32,115,101,116,32,97,32,114,101,102,32,102,111,114,32,116,104,101,32,97,114,114,111,119,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,114,111,119,32,61,32,116,104,105,115,46,36,114,101,102,115,46,97,114,114,111,119,32,124,124,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,101,108,101,99,116,41,40,39,46,97,114,114,111,119,39,44,32,116,104,105,115,46,36,101,108,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,114,111,119,79,102,102,115,101,116,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,116,111,70,108,111,97,116,41,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,103,101,116,67,83,41,40,97,114,114,111,119,41,46,119,105,100,116,104,44,32,48,41,32,43,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,116,111,70,108,111,97,116,41,40,116,104,105,115,46,97,114,114,111,119,80,97,100,100,105,110,103,44,32,48,41,59,92,110,92,110,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,79,102,102,115,101,116,77,97,112,91,83,116,114,105,110,103,40,112,108,97,99,101,109,101,110,116,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,32,124,124,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,99,97,110,39,116,32,116,101,115,116,32,105,110,32,74,83,68,79,77,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,43,49,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,99,97,110,39,116,32,116,101,115,116,32,105,110,32,74,83,68,79,77,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,43,53,48,37,112,32,45,32,92,34,46,99,111,110,99,97,116,40,97,114,114,111,119,79,102,102,115,101,116,44,32,92,34,112,120,92,34,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,99,97,110,39,116,32,116,101,115,116,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,45,49,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,99,97,110,39,116,32,116,101,115,116,32,105,110,32,74,83,68,79,77,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,45,53,48,37,112,32,43,32,92,34,46,99,111,110,99,97,116,40,97,114,114,111,119,79,102,102,115,101,116,44,32,92,34,112,120,92,34,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,48,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,111,102,102,115,101,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,111,112,112,101,114,67,114,101,97,116,101,58,32,102,117,110,99,116,105,111,110,32,112,111,112,112,101,114,67,114,101,97,116,101,40,101,108,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,100,101,115,116,114,111,121,80,111,112,112,101,114,40,41,59,32,47,47,32,87,101,32,117,115,101,32,96,101,108,96,32,114,97,116,104,101,114,32,116,104,97,110,32,96,116,104,105,115,46,36,101,108,96,32,106,117,115,116,32,105,110,32,99,97,115,101,32,116,104,101,32,111,114,105,103,105,110,97,108,92,110,32,32,32,32,32,32,47,47,32,109,111,117,110,116,112,111,105,110,116,32,114,111,111,116,32,101,108,101,109,101,110,116,32,116,121,112,101,32,119,97,115,32,99,104,97,110,103,101,100,32,98,121,32,116,104,101,32,116,101,109,112,108,97,116,101,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,112,111,112,112,101,114,32,61,32,110,101,119,32,112,111,112,112,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,116,104,105,115,46,116,97,114,103,101,116,44,32,101,108,44,32,116,104,105,115,46,112,111,112,112,101,114,67,111,110,102,105,103,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,101,115,116,114,111,121,80,111,112,112,101,114,58,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,80,111,112,112,101,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,112,111,112,112,101,114,32,38,38,32,116,104,105,115,46,36,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,112,111,112,112,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,112,100,97,116,101,80,111,112,112,101,114,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,80,111,112,112,101,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,112,111,112,112,101,114,32,38,38,32,116,104,105,115,46,36,95,112,111,112,112,101,114,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,58,32,102,117,110,99,116,105,111,110,32,112,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,40,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,97,108,108,98,97,99,107,32,117,115,101,100,32,98,121,32,112,111,112,112,101,114,32,116,111,32,97,100,106,117,115,116,32,116,104,101,32,97,114,114,111,119,32,112,108,97,99,101,109,101,110,116,92,110,32,32,32,32,32,32,116,104,105,115,46,97,116,116,97,99,104,109,101,110,116,32,61,32,116,104,105,115,46,103,101,116,65,116,116,97,99,104,109,101,110,116,40,100,97,116,97,46,112,108,97,99,101,109,101,110,116,41,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,114,101,110,100,101,114,84,101,109,112,108,97,116,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,84,101,109,112,108,97,116,101,40,104,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,105,108,108,32,98,101,32,111,118,101,114,114,105,100,100,101,110,32,98,121,32,116,101,109,112,108,97,116,101,115,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,110,111,70,97,100,101,32,61,32,116,104,105,115,46,110,111,70,97,100,101,59,32,47,47,32,78,111,116,101,58,32,39,115,104,111,119,39,32,97,110,100,32,39,102,97,100,101,39,32,99,108,97,115,115,101,115,32,97,114,101,32,111,110,108,121,32,97,112,112,108,101,100,32,100,117,114,105,110,103,32,116,114,97,110,115,105,116,105,111,110,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,95,116,114,97,110,115,105,116,105,111,110,95,98,118,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,86,84,114,97,110,115,105,116,105,111,110,44,32,123,92,110,32,32,32,32,32,32,47,47,32,84,114,97,110,115,105,116,105,111,110,115,32,97,115,32,115,111,111,110,32,97,115,32,109,111,117,110,116,101,100,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,97,112,112,101,97,114,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,110,111,70,97,100,101,58,32,110,111,70,97,100,101,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,69,118,101,110,116,115,32,117,115,101,100,32,98,121,32,112,97,114,101,110,116,32,99,111,109,112,111,110,101,110,116,47,105,110,115,116,97,110,99,101,92,110,32,32,32,32,32,32,32,32,98,101,102,111,114,101,69,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,69,110,116,101,114,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,51,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,44,32,101,108,41,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,102,116,101,114,69,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,97,102,116,101,114,69,110,116,101,114,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,51,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,44,32,101,108,41,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,98,101,102,111,114,101,76,101,97,118,101,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,76,101,97,118,101,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,51,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,44,32,101,108,41,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,102,116,101,114,76,101,97,118,101,58,32,102,117,110,99,116,105,111,110,32,97,102,116,101,114,76,101,97,118,101,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,51,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,44,32,101,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,63,32,116,104,105,115,46,114,101,110,100,101,114,84,101,109,112,108,97,116,101,40,104,41,32,58,32,104,40,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,112,111,112,112,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,116,111,111,108,116,105,112,45,116,101,109,112,108,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,116,111,111,108,116,105,112,45,116,101,109,112,108,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,84,111,111,108,116,105,112,84,101,109,112,108,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,86,84,111,111,108,116,105,112,84,101,109,112,108,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,115,99,111,112,101,100,95,115,116,121,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,109,105,120,105,110,115,47,115,99,111,112,101,100,45,115,116,121,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,115,99,111,112,101,100,45,115,116,121,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,118,95,112,111,112,112,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,118,45,112,111,112,112,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,112,111,112,112,101,114,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,47,47,32,85,115,101,100,32,111,110,108,121,32,98,121,32,116,104,101,32,100,105,114,101,99,116,105,118,101,32,118,101,114,115,105,111,110,115,92,110,32,32,104,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,79,116,104,101,114,32,110,111,110,45,114,101,97,99,116,105,118,101,32,40,119,104,105,108,101,32,111,112,101,110,41,32,112,114,111,112,115,32,97,114,101,32,112,117,108,108,101,100,32,105,110,32,102,114,111,109,32,66,86,80,111,112,112,101,114,92,110,32,32,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,86,84,111,111,108,116,105,112,84,101,109,112,108,97,116,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,84,79,79,76,84,73,80,95,84,69,77,80,76,65,84,69,44,92,110,32,32,101,120,116,101,110,100,115,58,32,95,98,118,95,112,111,112,112,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,86,80,111,112,112,101,114,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,115,99,111,112,101,100,95,115,116,121,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,99,111,112,101,100,83,116,121,108,101,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,47,47,32,87,101,32,117,115,101,32,100,97,116,97,44,32,114,97,116,104,101,114,32,116,104,97,110,32,112,114,111,112,115,32,116,111,32,101,110,115,117,114,101,32,114,101,97,99,116,105,118,105,116,121,92,110,32,32,32,32,47,47,32,80,97,114,101,110,116,32,99,111,109,112,111,110,101,110,116,32,119,105,108,108,32,100,105,114,101,99,116,108,121,32,115,101,116,32,116,104,105,115,32,100,97,116,97,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,116,105,116,108,101,58,32,39,39,44,92,110,32,32,32,32,32,32,99,111,110,116,101,110,116,58,32,39,39,44,92,110,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,99,117,115,116,111,109,67,108,97,115,115,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,105,110,116,101,114,97,99,116,105,118,101,58,32,116,114,117,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,116,101,109,112,108,97,116,101,84,121,112,101,58,32,102,117,110,99,116,105,111,110,32,116,101,109,112,108,97,116,101,84,121,112,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,116,111,111,108,116,105,112,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,101,109,112,108,97,116,101,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,116,101,109,112,108,97,116,101,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,114,101,102,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,97,99,104,109,101,110,116,32,61,32,116,104,105,115,46,97,116,116,97,99,104,109,101,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,116,101,109,112,108,97,116,101,84,121,112,101,32,61,32,116,104,105,115,46,116,101,109,112,108,97,116,101,84,121,112,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,40,95,114,101,102,32,61,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,105,115,97,98,108,101,115,32,112,111,105,110,116,101,114,32,101,118,101,110,116,115,32,116,111,32,104,105,100,101,32,116,104,101,32,116,111,111,108,116,105,112,32,119,104,101,110,32,116,104,101,32,117,115,101,114,92,110,32,32,32,32,32,32,32,32,47,47,32,104,111,118,101,114,115,32,111,118,101,114,32,105,116,115,32,99,111,110,116,101,110,116,92,110,32,32,32,32,32,32,32,32,110,111,110,105,110,116,101,114,97,99,116,105,118,101,58,32,33,116,104,105,115,46,105,110,116,101,114,97,99,116,105,118,101,92,110,32,32,32,32,32,32,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,98,45,92,34,46,99,111,110,99,97,116,40,116,101,109,112,108,97,116,101,84,121,112,101,44,32,92,34,45,92,34,41,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,44,32,118,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,98,115,45,92,34,46,99,111,110,99,97,116,40,116,101,109,112,108,97,116,101,84,121,112,101,44,32,92,34,45,92,34,41,46,99,111,110,99,97,116,40,97,116,116,97,99,104,109,101,110,116,41,44,32,97,116,116,97,99,104,109,101,110,116,41,44,32,95,114,101,102,41,44,32,116,104,105,115,46,99,117,115,116,111,109,67,108,97,115,115,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,101,109,112,108,97,116,101,65,116,116,114,105,98,117,116,101,115,58,32,102,117,110,99,116,105,111,110,32,116,101,109,112,108,97,116,101,65,116,116,114,105,98,117,116,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,100,32,61,32,116,104,105,115,46,105,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,104,105,115,46,36,112,97,114,101,110,116,46,36,112,97,114,101,110,116,46,36,97,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,105,100,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,116,111,111,108,116,105,112,39,44,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,45,49,39,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,115,99,111,112,101,100,83,116,121,108,101,65,116,116,114,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,101,109,112,108,97,116,101,76,105,115,116,101,110,101,114,115,58,32,102,117,110,99,116,105,111,110,32,116,101,109,112,108,97,116,101,76,105,115,116,101,110,101,114,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,85,115,101,100,32,102,111,114,32,104,111,118,101,114,47,102,111,99,117,115,32,116,114,105,103,103,101,114,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,109,111,117,115,101,101,110,116,101,114,58,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,117,115,101,101,110,116,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,69,86,69,78,84,95,78,65,77,69,95,77,79,85,83,69,69,78,84,69,82,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,109,111,117,115,101,108,101,97,118,101,58,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,117,115,101,108,101,97,118,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,69,86,69,78,84,95,78,65,77,69,95,77,79,85,83,69,76,69,65,86,69,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,105,110,58,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,105,110,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,69,86,69,78,84,95,78,65,77,69,95,70,79,67,85,83,73,78,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,111,117,116,58,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,111,117,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,69,86,69,78,84,95,78,65,77,69,95,70,79,67,85,83,79,85,84,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,114,101,110,100,101,114,84,101,109,112,108,97,116,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,84,101,109,112,108,97,116,101,40,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,105,116,108,101,32,61,32,116,104,105,115,46,116,105,116,108,101,59,32,47,47,32,84,105,116,108,101,32,99,97,110,32,98,101,32,97,32,115,99,111,112,101,100,32,115,108,111,116,32,102,117,110,99,116,105,111,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,116,105,116,108,101,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,105,116,108,101,41,32,63,32,116,105,116,108,101,40,123,125,41,32,58,32,116,105,116,108,101,59,32,47,47,32,68,105,114,101,99,116,105,118,101,32,118,101,114,115,105,111,110,115,32,111,110,108,121,92,110,92,110,32,32,32,32,32,32,118,97,114,32,100,111,109,80,114,111,112,115,32,61,32,116,104,105,115,46,104,116,109,108,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,105,116,108,101,41,32,63,32,123,92,110,32,32,32,32,32,32,32,32,105,110,110,101,114,72,84,77,76,58,32,116,105,116,108,101,92,110,32,32,32,32,32,32,125,32,58,32,123,125,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,116,111,111,108,116,105,112,32,98,45,116,111,111,108,116,105,112,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,116,101,109,112,108,97,116,101,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,116,101,109,112,108,97,116,101,65,116,116,114,105,98,117,116,101,115,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,116,104,105,115,46,116,101,109,112,108,97,116,101,76,105,115,116,101,110,101,114,115,92,110,32,32,32,32,32,32,125,44,32,91,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,97,114,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,39,97,114,114,111,119,39,92,110,32,32,32,32,32,32,125,41,44,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,116,111,111,108,116,105,112,45,105,110,110,101,114,39,44,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,100,111,109,80,114,111,112,115,92,110,32,32,32,32,32,32,125,44,32,91,36,116,105,116,108,101,93,41,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,116,111,111,108,116,105,112,45,116,101,109,112,108,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,116,111,111,108,116,105,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,116,111,111,108,116,105,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,84,111,111,108,116,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,86,84,111,111,108,116,105,112,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,118,117,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,103,101,116,95,115,99,111,112,101,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,103,101,116,45,115,99,111,112,101,45,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,45,115,99,111,112,101,45,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,111,111,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,110,111,111,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,111,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,119,97,114,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,98,118,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,118,95,116,111,111,108,116,105,112,95,116,101,109,112,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,118,45,116,111,111,108,116,105,112,45,116,101,109,112,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,116,111,111,108,116,105,112,45,116,101,109,112,108,97,116,101,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,47,47,32,84,111,111,108,116,105,112,32,92,34,67,108,97,115,115,92,34,32,40,66,117,105,108,116,32,97,115,32,97,32,114,101,110,100,101,114,108,101,115,115,32,86,117,101,32,105,110,115,116,97,110,99,101,41,92,110,47,47,92,110,47,47,32,72,97,110,100,108,101,115,32,116,114,105,103,103,101,114,32,101,118,101,110,116,115,44,32,101,116,99,46,92,110,47,47,32,73,110,115,116,97,110,116,105,97,116,101,115,32,116,101,109,112,108,97,116,101,32,111,110,32,100,101,109,97,110,100,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,47,47,32,77,111,100,97,108,32,99,111,110,116,97,105,110,101,114,32,115,101,108,101,99,116,111,114,32,102,111,114,32,97,112,112,101,110,100,105,110,103,32,116,111,111,108,116,105,112,47,112,111,112,111,118,101,114,92,110,92,110,118,97,114,32,77,79,68,65,76,95,83,69,76,69,67,84,79,82,32,61,32,39,46,109,111,100,97,108,45,99,111,110,116,101,110,116,39,59,32,47,47,32,77,111,100,97,108,32,96,36,114,111,111,116,96,32,104,105,100,100,101,110,32,101,118,101,110,116,92,110,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,77,79,68,65,76,95,72,73,68,68,69,78,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,77,79,68,65,76,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,41,59,32,47,47,32,83,105,100,101,98,97,114,32,99,111,110,116,97,105,110,101,114,32,115,101,108,101,99,116,111,114,32,102,111,114,32,97,112,112,101,110,100,105,110,103,32,116,111,111,108,116,105,112,47,112,111,112,111,118,101,114,92,110,92,110,118,97,114,32,83,73,68,69,66,65,82,95,83,69,76,69,67,84,79,82,32,61,32,39,46,98,45,115,105,100,101,98,97,114,39,59,32,47,47,32,70,111,114,32,102,105,110,100,105,110,103,32,116,104,101,32,99,111,110,116,97,105,110,101,114,32,116,111,32,97,112,112,101,110,100,32,116,111,92,110,92,110,118,97,114,32,67,79,78,84,65,73,78,69,82,95,83,69,76,69,67,84,79,82,32,61,32,91,77,79,68,65,76,95,83,69,76,69,67,84,79,82,44,32,83,73,68,69,66,65,82,95,83,69,76,69,67,84,79,82,93,46,106,111,105,110,40,39,44,32,39,41,59,32,47,47,32,70,111,114,32,100,114,111,112,100,111,119,110,32,115,110,105,102,102,105,110,103,92,110,92,110,118,97,114,32,68,82,79,80,68,79,87,78,95,67,76,65,83,83,32,61,32,39,100,114,111,112,100,111,119,110,39,59,92,110,118,97,114,32,68,82,79,80,68,79,87,78,95,79,80,69,78,95,83,69,76,69,67,84,79,82,32,61,32,39,46,100,114,111,112,100,111,119,110,45,109,101,110,117,46,115,104,111,119,39,59,32,47,47,32,68,97,116,97,32,97,116,116,114,105,98,117,116,101,32,116,111,32,116,101,109,112,111,114,97,114,121,32,115,116,111,114,101,32,116,104,101,32,96,116,105,116,108,101,96,32,97,116,116,114,105,98,117,116,101,39,115,32,118,97,108,117,101,92,110,92,110,118,97,114,32,68,65,84,65,95,84,73,84,76,69,95,65,84,84,82,32,61,32,39,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,39,59,32,47,47,32,68,97,116,97,32,115,112,101,99,105,102,105,99,32,116,111,32,112,111,112,112,101,114,32,97,110,100,32,116,101,109,112,108,97,116,101,92,110,47,47,32,87,101,32,100,111,110,39,116,32,117,115,101,32,112,114,111,112,115,44,32,97,115,32,119,101,32,110,101,101,100,32,114,101,97,99,116,105,118,105,116,121,32,40,119,101,32,99,97,110,39,116,32,112,97,115,115,32,114,101,97,99,116,105,118,101,32,112,114,111,112,115,41,92,110,92,110,118,97,114,32,116,101,109,112,108,97,116,101,68,97,116,97,32,61,32,123,92,110,32,32,47,47,32,84,101,120,116,32,115,116,114,105,110,103,32,111,114,32,83,99,111,112,101,100,32,115,108,111,116,32,102,117,110,99,116,105,111,110,92,110,32,32,116,105,116,108,101,58,32,39,39,44,92,110,32,32,47,47,32,84,101,120,116,32,115,116,114,105,110,103,32,111,114,32,83,99,111,112,101,100,32,115,108,111,116,32,102,117,110,99,116,105,111,110,92,110,32,32,99,111,110,116,101,110,116,58,32,39,39,44,92,110,32,32,47,47,32,83,116,114,105,110,103,92,110,32,32,118,97,114,105,97,110,116,58,32,110,117,108,108,44,92,110,32,32,47,47,32,83,116,114,105,110,103,44,32,65,114,114,97,121,44,32,79,98,106,101,99,116,92,110,32,32,99,117,115,116,111,109,67,108,97,115,115,58,32,110,117,108,108,44,92,110,32,32,47,47,32,83,116,114,105,110,103,32,111,114,32,97,114,114,97,121,32,111,102,32,83,116,114,105,110,103,115,32,40,111,118,101,114,119,114,105,116,116,101,110,32,98,121,32,66,86,80,111,112,112,101,114,41,92,110,32,32,116,114,105,103,103,101,114,115,58,32,39,39,44,92,110,32,32,47,47,32,83,116,114,105,110,103,32,40,111,118,101,114,119,114,105,116,116,101,110,32,98,121,32,66,86,80,111,112,112,101,114,41,92,110,32,32,112,108,97,99,101,109,101,110,116,58,32,39,97,117,116,111,39,44,92,110,32,32,47,47,32,83,116,114,105,110,103,32,111,114,32,97,114,114,97,121,32,111,102,32,115,116,114,105,110,103,115,92,110,32,32,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,32,39,102,108,105,112,39,44,92,110,32,32,47,47,32,69,108,101,109,101,110,116,32,111,114,32,67,111,109,112,111,110,101,110,116,32,114,101,102,101,114,101,110,99,101,32,40,111,114,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,114,101,116,117,114,110,115,32,101,108,101,109,101,110,116,41,32,111,102,92,110,32,32,47,47,32,116,104,101,32,101,108,101,109,101,110,116,32,116,104,97,116,32,119,105,108,108,32,104,97,118,101,32,116,104,101,32,116,114,105,103,103,101,114,32,101,118,101,110,116,115,32,98,111,117,110,100,44,32,97,110,100,32,105,115,32,97,108,115,111,92,110,32,32,47,47,32,100,101,102,97,117,108,116,32,101,108,101,109,101,110,116,32,102,111,114,32,112,111,115,105,116,105,111,110,105,110,103,92,110,32,32,116,97,114,103,101,116,58,32,110,117,108,108,44,92,110,32,32,47,47,32,72,84,77,76,32,73,68,44,32,69,108,101,109,101,110,116,32,111,114,32,67,111,109,112,111,110,101,110,116,32,114,101,102,101,114,101,110,99,101,92,110,32,32,99,111,110,116,97,105,110,101,114,58,32,110,117,108,108,44,92,110,32,32,47,47,32,39,98,111,100,121,39,92,110,32,32,47,47,32,66,111,111,108,101,97,110,92,110,32,32,110,111,70,97,100,101,58,32,102,97,108,115,101,44,92,110,32,32,47,47,32,39,115,99,114,111,108,108,80,97,114,101,110,116,39,44,32,39,118,105,101,119,112,111,114,116,39,44,32,39,119,105,110,100,111,119,39,44,32,69,108,101,109,101,110,116,44,32,111,114,32,67,111,109,112,111,110,101,110,116,32,114,101,102,101,114,101,110,99,101,92,110,32,32,98,111,117,110,100,97,114,121,58,32,39,115,99,114,111,108,108,80,97,114,101,110,116,39,44,92,110,32,32,47,47,32,84,111,111,108,116,105,112,47,112,111,112,111,118,101,114,32,119,105,108,108,32,116,114,121,32,97,110,100,32,115,116,97,121,32,97,119,97,121,32,102,114,111,109,92,110,32,32,47,47,32,98,111,117,110,100,97,114,121,32,101,100,103,101,32,98,121,32,116,104,105,115,32,109,97,110,121,32,112,105,120,101,108,115,32,40,78,117,109,98,101,114,41,92,110,32,32,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,58,32,53,44,92,110,32,32,47,47,32,65,114,114,111,119,32,111,102,102,115,101,116,32,40,78,117,109,98,101,114,41,92,110,32,32,111,102,102,115,101,116,58,32,48,44,92,110,32,32,47,47,32,72,111,118,101,114,47,102,111,99,117,115,32,100,101,108,97,121,32,40,78,117,109,98,101,114,32,111,114,32,79,98,106,101,99,116,41,92,110,32,32,100,101,108,97,121,58,32,48,44,92,110,32,32,47,47,32,65,114,114,111,119,32,111,102,32,84,111,111,108,116,105,112,47,112,111,112,111,118,101,114,32,119,105,108,108,32,116,114,121,32,97,110,100,32,115,116,97,121,32,97,119,97,121,32,102,114,111,109,92,110,32,32,47,47,32,116,104,101,32,101,100,103,101,32,111,102,32,116,111,111,108,116,105,112,47,112,111,112,111,118,101,114,32,101,100,103,101,32,98,121,32,116,104,105,115,32,109,97,110,121,32,112,105,120,101,108,115,92,110,32,32,97,114,114,111,119,80,97,100,100,105,110,103,58,32,54,44,92,110,32,32,47,47,32,73,110,116,101,114,97,99,116,105,118,101,32,115,116,97,116,101,32,40,66,111,111,108,101,97,110,41,92,110,32,32,105,110,116,101,114,97,99,116,105,118,101,58,32,116,114,117,101,44,92,110,32,32,47,47,32,68,105,115,97,98,108,101,100,32,115,116,97,116,101,32,40,66,111,111,108,101,97,110,41,92,110,32,32,100,105,115,97,98,108,101,100,58,32,102,97,108,115,101,44,92,110,32,32,47,47,32,73,68,32,116,111,32,117,115,101,32,102,111,114,32,116,111,111,108,116,105,112,47,112,111,112,111,118,101,114,92,110,32,32,105,100,58,32,110,117,108,108,44,92,110,32,32,47,47,32,70,108,97,103,32,117,115,101,100,32,98,121,32,100,105,114,101,99,116,105,118,101,115,32,111,110,108,121,44,32,102,111,114,32,72,84,77,76,32,99,111,110,116,101,110,116,92,110,32,32,104,116,109,108,58,32,102,97,108,115,101,92,110,125,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,86,84,111,111,108,116,105,112,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,84,79,79,76,84,73,80,95,72,69,76,80,69,82,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,108,105,115,116,101,110,79,110,82,111,111,116,77,105,120,105,110,93,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,101,109,112,108,97,116,101,68,97,116,97,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,47,47,32,83,116,97,116,101,32,109,97,110,97,103,101,109,101,110,116,32,100,97,116,97,92,110,32,32,32,32,32,32,97,99,116,105,118,101,84,114,105,103,103,101,114,58,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,109,97,110,117,97,108,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,104,111,118,101,114,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,108,111,99,97,108,83,104,111,119,58,32,102,97,108,115,101,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,116,101,109,112,108,97,116,101,84,121,112,101,58,32,102,117,110,99,116,105,111,110,32,116,101,109,112,108,97,116,101,84,121,112,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,79,118,101,114,119,114,105,116,116,101,110,32,98,121,32,66,86,80,111,112,111,118,101,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,116,111,111,108,116,105,112,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,73,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,73,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,100,32,124,124,32,92,34,95,95,98,118,95,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,116,101,109,112,108,97,116,101,84,121,112,101,44,32,92,34,95,92,34,41,46,99,111,110,99,97,116,40,116,104,105,115,91,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,67,79,77,80,79,78,69,78,84,95,85,73,68,95,75,69,89,93,44,32,92,34,95,95,92,34,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,68,101,108,97,121,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,68,101,108,97,121,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,78,111,114,109,97,108,105,122,101,115,32,100,101,108,97,121,32,105,110,116,111,32,111,98,106,101,99,116,32,102,111,114,109,92,110,32,32,32,32,32,32,118,97,114,32,100,101,108,97,121,32,61,32,123,92,110,32,32,32,32,32,32,32,32,115,104,111,119,58,32,48,44,92,110,32,32,32,32,32,32,32,32,104,105,100,101,58,32,48,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,116,104,105,115,46,100,101,108,97,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,108,97,121,46,115,104,111,119,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,100,101,108,97,121,46,115,104,111,119,44,32,48,41,44,32,48,41,59,92,110,32,32,32,32,32,32,32,32,100,101,108,97,121,46,104,105,100,101,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,100,101,108,97,121,46,104,105,100,101,44,32,48,41,44,32,48,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,78,117,109,98,101,114,41,40,116,104,105,115,46,100,101,108,97,121,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,83,116,114,105,110,103,41,40,116,104,105,115,46,100,101,108,97,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,108,97,121,46,115,104,111,119,32,61,32,100,101,108,97,121,46,104,105,100,101,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,100,101,108,97,121,44,32,48,41,44,32,48,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,108,97,121,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,84,114,105,103,103,101,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,84,114,105,103,103,101,114,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,116,104,101,32,116,114,105,103,103,101,114,115,32,105,110,32,115,111,114,116,101,100,32,97,114,114,97,121,32,102,111,114,109,92,110,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,83,119,105,116,99,104,32,116,104,105,115,32,116,111,32,111,98,106,101,99,116,32,102,111,114,109,32,102,111,114,32,101,97,115,105,101,114,32,108,111,111,107,117,112,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,99,111,110,99,97,116,41,40,116,104,105,115,46,116,114,105,103,103,101,114,115,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,32,39,41,46,116,114,105,109,40,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,115,112,108,105,116,40,47,92,92,115,43,47,41,46,115,111,114,116,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,58,32,102,117,110,99,116,105,111,110,32,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,40,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,116,114,105,103,103,101,114,32,105,110,32,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,91,116,114,105,103,103,101,114,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,84,101,109,112,108,97,116,101,68,97,116,97,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,84,101,109,112,108,97,116,101,68,97,116,97,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,105,116,108,101,32,61,32,116,104,105,115,46,116,105,116,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,32,61,32,116,104,105,115,46,99,111,110,116,101,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,116,104,105,115,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,99,117,115,116,111,109,67,108,97,115,115,32,61,32,116,104,105,115,46,99,117,115,116,111,109,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,110,111,70,97,100,101,32,61,32,116,104,105,115,46,110,111,70,97,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,116,101,114,97,99,116,105,118,101,32,61,32,116,104,105,115,46,105,110,116,101,114,97,99,116,105,118,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,116,105,116,108,101,44,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,58,32,99,111,110,116,101,110,116,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,118,97,114,105,97,110,116,44,92,110,32,32,32,32,32,32,32,32,99,117,115,116,111,109,67,108,97,115,115,58,32,99,117,115,116,111,109,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,110,111,70,97,100,101,58,32,110,111,70,97,100,101,44,92,110,32,32,32,32,32,32,32,32,105,110,116,101,114,97,99,116,105,118,101,58,32,105,110,116,101,114,97,99,116,105,118,101,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,84,114,105,103,103,101,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,84,114,105,103,103,101,114,115,40,110,101,119,84,114,105,103,103,101,114,115,44,32,111,108,100,84,114,105,103,103,101,114,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,84,114,105,103,103,101,114,115,32,104,97,118,101,32,99,104,97,110,103,101,100,44,32,115,111,32,114,101,45,114,101,103,105,115,116,101,114,32,116,104,101,109,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,84,114,105,103,103,101,114,115,44,32,111,108,100,84,114,105,103,103,101,114,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,68,105,115,97,98,108,101,32,116,114,105,103,103,101,114,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,117,110,76,105,115,116,101,110,40,41,59,32,47,47,32,67,108,101,97,114,32,97,110,121,32,97,99,116,105,118,101,32,116,114,105,103,103,101,114,115,32,116,104,97,116,32,97,114,101,32,110,111,32,108,111,110,103,101,114,32,105,110,32,116,104,101,32,108,105,115,116,32,111,102,32,116,114,105,103,103,101,114,115,92,110,92,110,92,110,32,32,32,32,32,32,32,32,32,32,111,108,100,84,114,105,103,103,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,114,105,103,103,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,110,101,119,84,114,105,103,103,101,114,115,44,32,116,114,105,103,103,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,91,116,114,105,103,103,101,114,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,91,116,114,105,103,103,101,114,93,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,32,47,47,32,82,101,45,101,110,97,98,108,101,32,116,104,101,32,116,114,105,103,103,101,114,32,108,105,115,116,101,110,101,114,115,92,110,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,108,105,115,116,101,110,40,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,84,101,109,112,108,97,116,101,68,97,116,97,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,84,101,109,112,108,97,116,101,68,97,116,97,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,97,110,121,32,111,102,32,116,104,101,32,119,104,105,108,101,32,111,112,101,110,32,114,101,97,99,116,105,118,101,32,92,34,112,114,111,112,115,92,34,32,99,104,97,110,103,101,44,92,110,32,32,32,32,32,32,47,47,32,101,110,115,117,114,101,32,116,104,97,116,32,116,104,101,32,116,101,109,112,108,97,116,101,32,117,112,100,97,116,101,115,32,97,99,99,111,114,100,105,110,103,108,121,92,110,32,32,32,32,32,32,116,104,105,115,46,104,97,110,100,108,101,84,101,109,112,108,97,116,101,85,112,100,97,116,101,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,105,116,108,101,58,32,102,117,110,99,116,105,111,110,32,116,105,116,108,101,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,77,97,107,101,32,115,117,114,101,32,116,111,32,104,105,100,101,32,116,104,101,32,116,111,111,108,116,105,112,32,119,104,101,110,32,116,104,101,32,116,105,116,108,101,32,105,115,32,115,101,116,32,101,109,112,116,121,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,32,38,38,32,33,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,105,115,97,98,108,101,100,58,32,102,117,110,99,116,105,111,110,32,100,105,115,97,98,108,101,100,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,100,105,115,97,98,108,101,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,110,97,98,108,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,47,47,32,67,114,101,97,116,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,116,104,105,115,46,36,95,116,105,112,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,95,104,111,118,101,114,84,105,109,101,111,117,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,32,61,32,39,39,59,92,110,32,32,32,32,116,104,105,115,46,36,95,118,105,115,105,98,108,101,73,110,116,101,114,118,97,108,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,95,101,110,97,98,108,101,100,32,61,32,33,116,104,105,115,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,116,104,105,115,46,36,95,110,111,111,112,32,61,32,95,117,116,105,108,115,95,110,111,111,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,110,111,111,112,46,98,105,110,100,40,116,104,105,115,41,59,32,47,47,32,68,101,115,116,114,111,121,32,111,117,114,115,101,108,118,101,115,32,119,104,101,110,32,116,104,101,32,112,97,114,101,110,116,32,105,115,32,100,101,115,116,114,111,121,101,100,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,36,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,112,97,114,101,110,116,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,66,69,70,79,82,69,95,68,69,83,84,82,79,89,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,32,97,32,96,114,101,113,117,101,115,116,65,70,40,41,96,32,116,111,32,114,101,108,101,97,115,101,32,99,111,110,116,114,111,108,32,98,97,99,107,32,116,111,32,97,112,112,108,105,99,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,36,100,101,115,116,114,111,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,95,116,104,105,115,50,46,103,101,116,84,97,114,103,101,116,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,97,114,103,101,116,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,99,111,110,116,97,105,110,115,41,40,100,111,99,117,109,101,110,116,46,98,111,100,121,44,32,116,97,114,103,101,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,111,112,121,32,116,104,101,32,112,97,114,101,110,116,39,115,32,115,99,111,112,101,100,32,115,116,121,108,101,32,97,116,116,114,105,98,117,116,101,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,115,99,111,112,101,73,100,32,61,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,115,99,111,112,101,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,103,101,116,83,99,111,112,101,73,100,41,40,95,116,104,105,115,50,46,36,112,97,114,101,110,116,41,59,32,47,47,32,83,101,116,32,117,112,32,97,108,108,32,116,114,105,103,103,101,114,32,104,97,110,100,108,101,114,115,32,97,110,100,32,108,105,115,116,101,110,101,114,115,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,108,105,115,116,101,110,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,119,97,114,110,41,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,83,116,114,105,110,103,41,40,95,116,104,105,115,50,46,116,97,114,103,101,116,41,32,63,32,92,34,85,110,97,98,108,101,32,116,111,32,102,105,110,100,32,116,97,114,103,101,116,32,101,108,101,109,101,110,116,32,98,121,32,73,68,32,92,92,92,34,35,92,34,46,99,111,110,99,97,116,40,95,116,104,105,115,50,46,116,97,114,103,101,116,44,32,92,34,92,92,92,34,32,105,110,32,100,111,99,117,109,101,110,116,46,92,34,41,32,58,32,39,84,104,101,32,112,114,111,118,105,100,101,100,32,116,97,114,103,101,116,32,105,115,32,110,111,32,118,97,108,105,100,32,72,84,77,76,32,101,108,101,109,101,110,116,46,39,44,32,95,116,104,105,115,50,46,116,101,109,112,108,97,116,101,84,121,112,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,117,112,100,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,85,115,117,97,108,108,121,32,99,97,108,108,101,100,32,119,104,101,110,32,116,104,101,32,115,108,111,116,115,47,100,97,116,97,32,99,104,97,110,103,101,115,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,104,97,110,100,108,101,84,101,109,112,108,97,116,101,85,112,100,97,116,101,41,59,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,100,101,97,99,116,105,118,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,100,101,97,99,116,105,118,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,73,110,32,97,32,107,101,101,112,97,108,105,118,101,32,116,104,97,116,32,104,97,115,32,98,101,101,110,32,100,101,97,99,116,105,118,97,116,101,100,44,32,115,111,32,104,105,100,101,92,110,32,32,32,32,47,47,32,116,104,101,32,116,111,111,108,116,105,112,47,112,111,112,111,118,101,114,32,105,102,32,105,116,32,105,115,32,115,104,111,119,105,110,103,92,110,32,32,32,32,116,104,105,115,46,102,111,114,99,101,72,105,100,101,40,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,47,47,32,82,101,109,111,118,101,32,97,108,108,32,104,97,110,100,108,101,114,47,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,116,104,105,115,46,117,110,76,105,115,116,101,110,40,41,59,92,110,32,32,32,32,116,104,105,115,46,115,101,116,87,104,105,108,101,79,112,101,110,76,105,115,116,101,110,101,114,115,40,102,97,108,115,101,41,59,32,47,47,32,67,108,101,97,114,32,97,110,121,32,116,105,109,101,111,117,116,115,47,105,110,116,101,114,118,97,108,115,92,110,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,72,111,118,101,114,84,105,109,101,111,117,116,40,41,59,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,86,105,115,105,98,105,108,105,116,121,73,110,116,101,114,118,97,108,40,41,59,32,47,47,32,68,101,115,116,114,111,121,32,116,104,101,32,116,101,109,112,108,97,116,101,92,110,92,110,32,32,32,32,116,104,105,115,46,100,101,115,116,114,111,121,84,101,109,112,108,97,116,101,40,41,59,32,47,47,32,82,101,109,111,118,101,32,97,110,121,32,111,116,104,101,114,32,112,114,105,118,97,116,101,32,112,114,111,112,101,114,116,105,101,115,32,99,114,101,97,116,101,100,32,100,117,114,105,110,103,32,99,114,101,97,116,101,92,110,92,110,32,32,32,32,116,104,105,115,46,36,95,110,111,111,112,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,45,45,45,32,77,101,116,104,111,100,115,32,102,111,114,32,99,114,101,97,116,105,110,103,32,97,110,100,32,100,101,115,116,114,111,121,105,110,103,32,116,104,101,32,116,101,109,112,108,97,116,101,32,45,45,45,92,110,32,32,32,32,103,101,116,84,101,109,112,108,97,116,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,84,101,109,112,108,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,79,118,101,114,114,105,100,100,101,110,32,98,121,32,66,86,80,111,112,111,118,101,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,98,118,95,116,111,111,108,116,105,112,95,116,101,109,112,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,66,86,84,111,111,108,116,105,112,84,101,109,112,108,97,116,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,112,100,97,116,101,68,97,116,97,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,68,97,116,97,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,123,125,59,92,110,32,32,32,32,32,32,47,47,32,77,101,116,104,111,100,32,102,111,114,32,117,112,100,97,116,105,110,103,32,112,111,112,112,101,114,47,116,101,109,112,108,97,116,101,32,100,97,116,97,92,110,32,32,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,117,112,100,97,116,101,32,100,97,116,97,32,105,102,32,105,116,32,101,120,105,115,116,115,44,32,97,110,100,32,104,97,115,32,110,111,116,32,99,104,97,110,103,101,100,92,110,32,32,32,32,32,32,118,97,114,32,116,105,116,108,101,85,112,100,97,116,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,107,101,121,115,41,40,116,101,109,112,108,97,116,101,68,97,116,97,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,100,97,116,97,91,112,114,111,112,93,41,32,38,38,32,95,116,104,105,115,51,91,112,114,111,112,93,32,33,61,61,32,100,97,116,97,91,112,114,111,112,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,91,112,114,111,112,93,32,61,32,100,97,116,97,91,112,114,111,112,93,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,32,61,61,61,32,39,116,105,116,108,101,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,85,112,100,97,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,73,102,32,116,104,101,32,116,105,116,108,101,32,104,97,115,32,117,112,100,97,116,101,100,44,32,119,101,32,109,97,121,32,110,101,101,100,32,116,111,32,104,97,110,100,108,101,32,116,104,101,32,96,116,105,116,108,101,96,92,110,32,32,32,32,32,32,47,47,32,97,116,116,114,105,98,117,116,101,32,111,110,32,116,104,101,32,116,114,105,103,103,101,114,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,100,111,32,116,104,105,115,32,119,104,105,108,101,32,116,104,101,32,116,101,109,112,108,97,116,101,32,105,115,32,111,112,101,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,105,116,108,101,85,112,100,97,116,101,100,32,38,38,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,102,105,120,84,105,116,108,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,114,101,97,116,101,84,101,109,112,108,97,116,101,65,110,100,83,104,111,119,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,84,101,109,112,108,97,116,101,65,110,100,83,104,111,119,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,114,101,97,116,101,115,32,116,104,101,32,116,101,109,112,108,97,116,101,32,105,110,115,116,97,110,99,101,32,97,110,100,32,115,104,111,119,32,105,116,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,32,61,32,116,104,105,115,46,103,101,116,67,111,110,116,97,105,110,101,114,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,84,101,109,112,108,97,116,101,32,61,32,116,104,105,115,46,103,101,116,84,101,109,112,108,97,116,101,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,36,116,105,112,32,61,32,116,104,105,115,46,36,95,116,105,112,32,61,32,110,101,119,32,84,101,109,112,108,97,116,101,40,123,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,58,32,116,104,105,115,44,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,102,111,108,108,111,119,105,110,103,32,105,115,32,110,111,116,32,114,101,97,99,116,105,118,101,32,116,111,32,99,104,97,110,103,101,115,32,105,110,32,116,104,101,32,112,114,111,112,115,32,100,97,116,97,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,68,97,116,97,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,115,101,32,118,97,108,117,101,115,32,99,97,110,110,111,116,32,98,101,32,99,104,97,110,103,101,100,32,119,104,105,108,101,32,116,101,109,112,108,97,116,101,32,105,115,32,115,104,111,119,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,104,116,109,108,58,32,116,104,105,115,46,104,116,109,108,44,92,110,32,32,32,32,32,32,32,32,32,32,112,108,97,99,101,109,101,110,116,58,32,116,104,105,115,46,112,108,97,99,101,109,101,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,32,116,104,105,115,46,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,104,105,115,46,103,101,116,80,108,97,99,101,109,101,110,116,84,97,114,103,101,116,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,98,111,117,110,100,97,114,121,58,32,116,104,105,115,46,103,101,116,66,111,117,110,100,97,114,121,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,69,110,115,117,114,101,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,97,114,101,32,105,110,116,101,103,101,114,115,92,110,32,32,32,32,32,32,32,32,32,32,111,102,102,115,101,116,58,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,111,102,102,115,101,116,44,32,48,41,44,92,110,32,32,32,32,32,32,32,32,32,32,97,114,114,111,119,80,97,100,100,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,97,114,114,111,119,80,97,100,100,105,110,103,44,32,48,41,44,92,110,32,32,32,32,32,32,32,32,32,32,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,44,32,48,41,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,87,101,32,115,101,116,32,116,104,101,32,105,110,105,116,105,97,108,32,114,101,97,99,116,105,118,101,32,100,97,116,97,32,40,118,97,108,117,101,115,32,116,104,97,116,32,99,97,110,32,98,101,32,99,104,97,110,103,101,100,32,119,104,105,108,101,32,111,112,101,110,41,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,104,97,110,100,108,101,84,101,109,112,108,97,116,101,85,112,100,97,116,101,40,41,59,32,47,47,32,84,101,109,112,108,97,116,101,32,116,114,97,110,115,105,116,105,111,110,32,112,104,97,115,101,32,101,118,101,110,116,115,32,40,104,97,110,100,108,101,100,32,111,110,99,101,32,111,110,108,121,41,92,110,32,32,32,32,32,32,47,47,32,87,104,101,110,32,116,104,101,32,116,101,109,112,108,97,116,101,32,104,97,115,32,109,111,117,110,116,101,100,44,32,98,117,116,32,110,111,116,32,118,105,115,105,98,108,121,32,115,104,111,119,110,32,121,101,116,92,110,92,110,32,32,32,32,32,32,36,116,105,112,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,44,32,116,104,105,115,46,111,110,84,101,109,112,108,97,116,101,83,104,111,119,41,59,32,47,47,32,87,104,101,110,32,116,104,101,32,116,101,109,112,108,97,116,101,32,104,97,115,32,99,111,109,112,108,101,116,101,100,32,115,104,111,119,105,110,103,92,110,92,110,32,32,32,32,32,32,36,116,105,112,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,44,32,116,104,105,115,46,111,110,84,101,109,112,108,97,116,101,83,104,111,119,110,41,59,32,47,47,32,87,104,101,110,32,116,104,101,32,116,101,109,112,108,97,116,101,32,104,97,115,32,115,116,97,114,116,101,100,32,116,111,32,104,105,100,101,92,110,92,110,32,32,32,32,32,32,36,116,105,112,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,44,32,116,104,105,115,46,111,110,84,101,109,112,108,97,116,101,72,105,100,101,41,59,32,47,47,32,87,104,101,110,32,116,104,101,32,116,101,109,112,108,97,116,101,32,104,97,115,32,99,111,109,112,108,101,116,101,100,32,104,105,100,105,110,103,92,110,92,110,32,32,32,32,32,32,36,116,105,112,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,44,32,116,104,105,115,46,111,110,84,101,109,112,108,97,116,101,72,105,100,100,101,110,41,59,32,47,47,32,87,104,101,110,32,116,104,101,32,116,101,109,112,108,97,116,101,32,103,101,116,115,32,100,101,115,116,114,111,121,101,100,32,102,111,114,32,97,110,121,32,114,101,97,115,111,110,92,110,92,110,32,32,32,32,32,32,36,116,105,112,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,68,69,83,84,82,79,89,69,68,44,32,116,104,105,115,46,100,101,115,116,114,111,121,84,101,109,112,108,97,116,101,41,59,32,47,47,32,67,111,110,118,101,110,105,101,110,99,101,32,101,118,101,110,116,115,32,102,114,111,109,32,116,101,109,112,108,97,116,101,92,110,32,32,32,32,32,32,47,47,32,84,111,32,115,97,118,101,32,117,115,32,102,114,111,109,32,109,97,110,117,97,108,108,121,32,97,100,100,105,110,103,47,114,101,109,111,118,105,110,103,32,68,79,77,92,110,32,32,32,32,32,32,47,47,32,108,105,115,116,101,110,101,114,115,32,116,111,32,116,105,112,32,101,108,101,109,101,110,116,32,119,104,101,110,32,105,116,32,105,115,32,111,112,101,110,92,110,92,110,32,32,32,32,32,32,36,116,105,112,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,70,79,67,85,83,73,78,44,32,116,104,105,115,46,104,97,110,100,108,101,69,118,101,110,116,41,59,92,110,32,32,32,32,32,32,36,116,105,112,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,70,79,67,85,83,79,85,84,44,32,116,104,105,115,46,104,97,110,100,108,101,69,118,101,110,116,41,59,92,110,32,32,32,32,32,32,36,116,105,112,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,77,79,85,83,69,69,78,84,69,82,44,32,116,104,105,115,46,104,97,110,100,108,101,69,118,101,110,116,41,59,92,110,32,32,32,32,32,32,36,116,105,112,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,77,79,85,83,69,76,69,65,86,69,44,32,116,104,105,115,46,104,97,110,100,108,101,69,118,101,110,116,41,59,32,47,47,32,77,111,117,110,116,32,40,119,104,105,99,104,32,116,114,105,103,103,101,114,115,32,116,104,101,32,96,115,104,111,119,96,41,92,110,92,110,32,32,32,32,32,32,36,116,105,112,46,36,109,111,117,110,116,40,99,111,110,116,97,105,110,101,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,69,108,101,109,101,110,116,40,39,100,105,118,39,41,41,41,59,32,47,47,32,84,101,109,112,108,97,116,101,32,119,105,108,108,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,114,101,109,111,118,101,32,105,116,115,32,109,97,114,107,117,112,32,102,114,111,109,32,68,79,77,32,119,104,101,110,32,104,105,100,100,101,110,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,105,100,101,84,101,109,112,108,97,116,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,84,101,109,112,108,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,114,105,103,103,101,114,32,116,104,101,32,116,101,109,112,108,97,116,101,32,116,111,32,115,116,97,114,116,32,104,105,100,105,110,103,92,110,32,32,32,32,32,32,47,47,32,84,104,101,32,116,101,109,112,108,97,116,101,32,119,105,108,108,32,101,109,105,116,32,116,104,101,32,96,104,105,100,101,96,32,101,118,101,110,116,32,97,102,116,101,114,32,116,104,105,115,32,97,110,100,92,110,32,32,32,32,32,32,47,47,32,116,104,101,110,32,101,109,105,116,32,116,104,101,32,96,104,105,100,100,101,110,96,32,101,118,101,110,116,32,111,110,99,101,32,105,116,32,105,115,32,102,117,108,108,121,32,104,105,100,100,101,110,92,110,32,32,32,32,32,32,47,47,32,84,104,101,32,96,104,111,111,107,58,100,101,115,116,114,111,121,101,100,96,32,119,105,108,108,32,97,108,115,111,32,98,101,32,99,97,108,108,101,100,32,40,115,97,102,101,116,121,32,109,101,97,115,117,114,101,41,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,116,105,112,32,38,38,32,116,104,105,115,46,36,95,116,105,112,46,104,105,100,101,40,41,59,32,47,47,32,67,108,101,97,114,32,111,117,116,32,97,110,121,32,115,116,114,97,103,103,105,110,103,32,97,99,116,105,118,101,32,116,114,105,103,103,101,114,115,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,65,99,116,105,118,101,84,114,105,103,103,101,114,115,40,41,59,32,47,47,32,82,101,115,101,116,32,116,104,101,32,104,111,118,101,114,32,115,116,97,116,101,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,32,61,32,39,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,68,101,115,116,114,111,121,32,116,104,101,32,116,101,109,112,108,97,116,101,32,105,110,115,116,97,110,99,101,32,97,110,100,32,114,101,115,101,116,32,115,116,97,116,101,92,110,32,32,32,32,100,101,115,116,114,111,121,84,101,109,112,108,97,116,101,58,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,84,101,109,112,108,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,87,104,105,108,101,79,112,101,110,76,105,115,116,101,110,101,114,115,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,72,111,118,101,114,84,105,109,101,111,117,116,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,32,61,32,39,39,59,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,65,99,116,105,118,101,84,114,105,103,103,101,114,115,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,80,108,97,99,101,109,101,110,116,84,97,114,103,101,116,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,116,105,112,46,36,100,101,115,116,114,111,121,40,41,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,95,117,110,117,115,101,100,41,32,123,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,116,105,112,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,114,101,109,111,118,101,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,114,101,115,116,111,114,101,84,105,116,108,101,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,84,101,109,112,108,97,116,101,69,108,101,109,101,110,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,84,101,109,112,108,97,116,101,69,108,101,109,101,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,95,116,105,112,32,63,32,116,104,105,115,46,36,95,116,105,112,46,36,101,108,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,84,101,109,112,108,97,116,101,85,112,100,97,116,101,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,84,101,109,112,108,97,116,101,85,112,100,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,85,112,100,97,116,101,32,111,117,114,32,116,101,109,112,108,97,116,101,32,116,105,116,108,101,47,99,111,110,116,101,110,116,32,92,34,112,114,111,112,115,92,34,92,110,32,32,32,32,32,32,47,47,32,83,111,32,116,104,97,116,32,116,104,101,32,116,101,109,112,108,97,116,101,32,117,112,100,97,116,101,115,32,97,99,99,111,114,100,105,110,103,108,121,92,110,32,32,32,32,32,32,118,97,114,32,36,116,105,112,32,61,32,116,104,105,115,46,36,95,116,105,112,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,36,116,105,112,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,91,39,116,105,116,108,101,39,44,32,39,99,111,110,116,101,110,116,39,44,32,39,118,97,114,105,97,110,116,39,44,32,39,99,117,115,116,111,109,67,108,97,115,115,39,44,32,39,110,111,70,97,100,101,39,44,32,39,105,110,116,101,114,97,99,116,105,118,101,39,93,59,32,47,47,32,79,110,108,121,32,117,112,100,97,116,101,32,116,104,101,32,118,97,108,117,101,115,32,105,102,32,116,104,101,121,32,104,97,118,101,32,99,104,97,110,103,101,100,92,110,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,36,116,105,112,91,112,114,111,112,93,32,33,61,61,32,95,116,104,105,115,52,91,112,114,111,112,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,36,116,105,112,91,112,114,111,112,93,32,61,32,95,116,104,105,115,52,91,112,114,111,112,93,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,45,45,45,32,83,104,111,119,47,72,105,100,101,32,104,97,110,100,108,101,114,115,32,45,45,45,92,110,32,32,32,32,47,47,32,83,104,111,119,32,116,104,101,32,116,111,111,108,116,105,112,92,110,32,32,32,32,115,104,111,119,58,32,102,117,110,99,116,105,111,110,32,115,104,111,119,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,97,114,103,101,116,32,124,124,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,99,111,110,116,97,105,110,115,41,40,100,111,99,117,109,101,110,116,46,98,111,100,121,44,32,116,97,114,103,101,116,41,32,124,124,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,105,115,86,105,115,105,98,108,101,41,40,116,97,114,103,101,116,41,32,124,124,32,116,104,105,115,46,100,114,111,112,100,111,119,110,79,112,101,110,40,41,32,124,124,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,116,104,105,115,46,116,105,116,108,101,41,32,124,124,32,116,104,105,115,46,116,105,116,108,101,32,61,61,61,32,39,39,41,32,38,38,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,116,104,105,115,46,99,111,110,116,101,110,116,41,32,124,124,32,116,104,105,115,46,99,111,110,116,101,110,116,32,61,61,61,32,39,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,114,105,103,103,101,114,32,101,108,101,109,101,110,116,32,105,115,110,39,116,32,105,110,32,116,104,101,32,68,79,77,32,111,114,32,105,115,32,110,111,116,32,118,105,115,105,98,108,101,44,32,111,114,92,110,32,32,32,32,32,32,32,32,47,47,32,105,115,32,111,110,32,97,110,32,111,112,101,110,32,100,114,111,112,100,111,119,110,32,116,111,103,103,108,101,44,32,111,114,32,104,97,115,32,110,111,32,99,111,110,116,101,110,116,44,32,116,104,101,110,92,110,32,32,32,32,32,32,32,32,47,47,32,119,101,32,101,120,105,116,32,119,105,116,104,111,117,116,32,115,104,111,119,105,110,103,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,73,102,32,116,105,112,32,97,108,114,101,97,100,121,32,101,120,105,115,116,115,44,32,101,120,105,116,32,101,97,114,108,121,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,95,116,105,112,32,124,124,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,73,110,32,116,104,101,32,112,114,111,99,101,115,115,32,111,102,32,115,104,111,119,105,110,103,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,116,114,117,101,59,32,47,47,32,67,114,101,97,116,101,32,97,32,99,97,110,99,101,108,97,98,108,101,32,66,118,69,118,101,110,116,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,104,111,119,69,118,116,32,61,32,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,44,32,123,92,110,32,32,32,32,32,32,32,32,99,97,110,99,101,108,97,98,108,101,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,115,104,111,119,69,118,116,41,59,32,47,47,32,68,111,110,39,116,32,115,104,111,119,32,105,102,32,101,118,101,110,116,32,99,97,110,99,101,108,108,101,100,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,104,111,119,69,118,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,101,115,116,114,111,121,32,116,104,101,32,116,101,109,112,108,97,116,101,32,40,105,102,32,102,111,114,32,115,111,109,101,32,114,101,97,115,111,110,32,105,116,32,119,97,115,32,99,114,101,97,116,101,100,41,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,100,101,115,116,114,111,121,84,101,109,112,108,97,116,101,40,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,70,105,120,32,116,104,101,32,116,105,116,108,101,32,97,116,116,114,105,98,117,116,101,32,111,110,32,116,97,114,103,101,116,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,102,105,120,84,105,116,108,101,40,41,59,32,47,47,32,83,101,116,32,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,32,111,110,32,116,97,114,103,101,116,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,97,100,100,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,40,41,59,32,47,47,32,67,114,101,97,116,101,32,97,110,100,32,115,104,111,119,32,116,104,101,32,116,111,111,108,116,105,112,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,114,101,97,116,101,84,101,109,112,108,97,116,101,65,110,100,83,104,111,119,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,105,100,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,111,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,47,47,32,72,105,100,101,32,116,104,101,32,116,111,111,108,116,105,112,92,110,32,32,32,32,32,32,118,97,114,32,116,105,112,32,61,32,116,104,105,115,46,103,101,116,84,101,109,112,108,97,116,101,69,108,101,109,101,110,116,40,41,59,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,105,112,32,124,124,32,33,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,115,116,111,114,101,84,105,116,108,101,40,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,69,109,105,116,32,99,97,110,99,101,108,97,98,108,101,32,66,118,69,118,101,110,116,32,39,104,105,100,101,39,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,105,115,97,98,108,101,32,99,97,110,99,101,108,108,105,110,103,32,105,102,32,96,102,111,114,99,101,96,32,105,115,32,116,114,117,101,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,104,105,100,101,69,118,116,32,61,32,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,44,32,123,92,110,32,32,32,32,32,32,32,32,99,97,110,99,101,108,97,98,108,101,58,32,33,102,111,114,99,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,104,105,100,101,69,118,116,41,59,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,58,32,105,103,110,111,114,101,32,102,111,114,32,110,111,119,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,104,105,100,101,69,118,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,111,110,39,116,32,104,105,100,101,32,105,102,32,101,118,101,110,116,32,99,97,110,99,101,108,108,101,100,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,84,101,108,108,32,116,104,101,32,116,101,109,112,108,97,116,101,32,116,111,32,104,105,100,101,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,84,101,109,112,108,97,116,101,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,114,99,101,72,105,100,101,58,32,102,117,110,99,116,105,111,110,32,102,111,114,99,101,72,105,100,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,70,111,114,99,101,102,117,108,108,121,32,104,105,100,101,115,47,100,101,115,116,114,111,121,115,32,116,104,101,32,116,101,109,112,108,97,116,101,44,32,114,101,103,97,114,100,108,101,115,115,32,111,102,32,97,110,121,32,97,99,116,105,118,101,32,116,114,105,103,103,101,114,115,92,110,32,32,32,32,32,32,118,97,114,32,116,105,112,32,61,32,116,104,105,115,46,103,101,116,84,101,109,112,108,97,116,101,69,108,101,109,101,110,116,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,105,112,32,124,124,32,33,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,68,105,115,97,98,108,101,32,119,104,105,108,101,32,111,112,101,110,32,108,105,115,116,101,110,101,114,115,47,119,97,116,99,104,101,114,115,92,110,32,32,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,97,108,115,111,32,100,111,110,101,32,105,110,32,116,104,101,32,116,101,109,112,108,97,116,101,32,96,104,105,100,101,96,32,101,118,101,110,116,32,104,97,110,100,108,101,114,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,87,104,105,108,101,79,112,101,110,76,105,115,116,101,110,101,114,115,40,102,97,108,115,101,41,59,32,47,47,32,67,108,101,97,114,32,97,110,121,32,104,111,118,101,114,32,101,110,116,101,114,47,108,101,97,118,101,32,101,118,101,110,116,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,72,111,118,101,114,84,105,109,101,111,117,116,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,32,61,32,39,39,59,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,65,99,116,105,118,101,84,114,105,103,103,101,114,115,40,41,59,32,47,47,32,68,105,115,97,98,108,101,32,116,104,101,32,102,97,100,101,32,97,110,105,109,97,116,105,111,110,32,111,110,32,116,104,101,32,116,101,109,112,108,97,116,101,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,95,116,105,112,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,116,105,112,46,110,111,70,97,100,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,32,47,47,32,72,105,100,101,32,116,104,101,32,116,105,112,32,40,119,105,116,104,32,102,111,114,99,101,32,61,32,116,114,117,101,41,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,40,116,114,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,110,97,98,108,101,58,32,102,117,110,99,116,105,111,110,32,101,110,97,98,108,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,101,110,97,98,108,101,100,32,61,32,116,114,117,101,59,32,47,47,32,67,114,101,97,116,101,32,97,32,110,111,110,45,99,97,110,99,101,108,97,98,108,101,32,66,118,69,118,101,110,116,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,68,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,105,115,97,98,108,101,58,32,102,117,110,99,116,105,111,110,32,100,105,115,97,98,108,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,101,110,97,98,108,101,100,32,61,32,102,97,108,115,101,59,32,47,47,32,67,114,101,97,116,101,32,97,32,110,111,110,45,99,97,110,99,101,108,97,98,108,101,32,66,118,69,118,101,110,116,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,68,73,83,65,66,76,69,68,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,45,45,45,32,72,97,110,100,108,101,114,115,32,102,111,114,32,116,101,109,112,108,97,116,101,32,101,118,101,110,116,115,32,45,45,45,92,110,32,32,32,32,47,47,32,87,104,101,110,32,116,101,109,112,108,97,116,101,32,105,115,32,105,110,115,101,114,116,101,100,32,105,110,116,111,32,68,79,77,44,32,98,117,116,32,110,111,116,32,121,101,116,32,115,104,111,119,110,92,110,32,32,32,32,111,110,84,101,109,112,108,97,116,101,83,104,111,119,58,32,102,117,110,99,116,105,111,110,32,111,110,84,101,109,112,108,97,116,101,83,104,111,119,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,69,110,97,98,108,101,32,119,104,105,108,101,32,111,112,101,110,32,108,105,115,116,101,110,101,114,115,47,119,97,116,99,104,101,114,115,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,87,104,105,108,101,79,112,101,110,76,105,115,116,101,110,101,114,115,40,116,114,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,87,104,101,110,32,116,101,109,112,108,97,116,101,32,115,104,111,119,32,116,114,97,110,115,105,116,105,111,110,32,99,111,109,112,108,101,116,101,115,92,110,32,32,32,32,111,110,84,101,109,112,108,97,116,101,83,104,111,119,110,58,32,102,117,110,99,116,105,111,110,32,111,110,84,101,109,112,108,97,116,101,83,104,111,119,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,114,101,118,72,111,118,101,114,83,116,97,116,101,32,61,32,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,32,61,32,39,39,59,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,111,99,99,97,115,105,111,110,97,108,32,78,111,100,101,32,49,48,32,99,111,118,101,114,97,103,101,32,101,114,114,111,114,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,112,114,101,118,72,111,118,101,114,83,116,97,116,101,32,61,61,61,32,39,111,117,116,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,101,97,118,101,40,110,117,108,108,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,69,109,105,116,32,97,32,110,111,110,45,99,97,110,99,101,108,97,98,108,101,32,66,118,69,118,101,110,116,32,39,115,104,111,119,110,39,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,87,104,101,110,32,116,101,109,112,108,97,116,101,32,105,115,32,115,116,97,114,116,105,110,103,32,116,111,32,104,105,100,101,92,110,32,32,32,32,111,110,84,101,109,112,108,97,116,101,72,105,100,101,58,32,102,117,110,99,116,105,111,110,32,111,110,84,101,109,112,108,97,116,101,72,105,100,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,105,115,97,98,108,101,32,119,104,105,108,101,32,111,112,101,110,32,108,105,115,116,101,110,101,114,115,47,119,97,116,99,104,101,114,115,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,87,104,105,108,101,79,112,101,110,76,105,115,116,101,110,101,114,115,40,102,97,108,115,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,87,104,101,110,32,116,101,109,112,108,97,116,101,32,104,97,115,32,99,111,109,112,108,101,116,101,100,32,99,108,111,115,105,110,103,32,40,106,117,115,116,32,98,101,102,111,114,101,32,105,116,32,115,101,108,102,32,100,101,115,116,114,117,99,116,115,41,92,110,32,32,32,32,111,110,84,101,109,112,108,97,116,101,72,105,100,100,101,110,58,32,102,117,110,99,116,105,111,110,32,111,110,84,101,109,112,108,97,116,101,72,105,100,100,101,110,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,101,115,116,114,111,121,32,116,104,101,32,116,101,109,112,108,97,116,101,92,110,32,32,32,32,32,32,116,104,105,115,46,100,101,115,116,114,111,121,84,101,109,112,108,97,116,101,40,41,59,32,47,47,32,69,109,105,116,32,97,32,110,111,110,45,99,97,110,99,101,108,97,98,108,101,32,66,118,69,118,101,110,116,32,39,115,104,111,119,110,39,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,32,32,32,32,103,101,116,84,97,114,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,84,97,114,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,116,97,114,103,101,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,83,116,114,105,110,103,41,40,116,97,114,103,101,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,103,101,116,66,121,73,100,41,40,116,97,114,103,101,116,46,114,101,112,108,97,99,101,40,47,94,35,47,44,32,39,39,41,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,97,114,103,101,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,32,61,32,116,97,114,103,101,116,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,32,61,32,116,97,114,103,101,116,46,36,101,108,32,124,124,32,116,97,114,103,101,116,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,105,115,69,108,101,109,101,110,116,41,40,116,97,114,103,101,116,41,32,63,32,116,97,114,103,101,116,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,80,108,97,99,101,109,101,110,116,84,97,114,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,80,108,97,99,101,109,101,110,116,84,97,114,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,116,104,101,32,116,97,114,103,101,116,32,116,104,97,116,32,116,104,101,32,116,111,111,108,116,105,112,32,119,105,108,108,32,98,101,32,112,108,97,99,101,100,32,111,110,44,32,119,104,105,99,104,32,109,97,121,32,110,111,116,92,110,32,32,32,32,32,32,47,47,32,110,101,99,101,115,115,97,114,105,108,121,32,98,101,32,116,104,101,32,115,97,109,101,32,101,108,101,109,101,110,116,32,116,104,97,116,32,104,97,115,32,116,104,101,32,116,114,105,103,103,101,114,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,32,32,47,47,32,70,111,114,32,110,111,119,44,32,116,104,105,115,32,105,115,32,116,104,101,32,115,97,109,101,32,97,115,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,47,47,32,84,79,68,79,58,92,110,32,32,32,32,32,32,47,47,32,32,32,65,100,100,32,105,110,32,99,104,105,108,100,32,115,101,108,101,99,116,111,114,32,115,117,112,112,111,114,116,92,110,32,32,32,32,32,32,47,47,32,32,32,65,100,100,32,105,110,32,118,105,115,105,98,105,108,105,116,121,32,99,104,101,99,107,115,32,102,111,114,32,116,104,105,115,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,32,47,47,32,32,32,70,97,108,108,98,97,99,107,32,116,111,32,116,97,114,103,101,116,32,105,102,32,110,111,116,32,102,111,117,110,100,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,84,97,114,103,101,116,73,100,58,32,102,117,110,99,116,105,111,110,32,103,101,116,84,97,114,103,101,116,73,100,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,116,104,101,32,73,68,32,111,102,32,116,104,101,32,116,114,105,103,103,101,114,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,97,114,103,101,116,32,38,38,32,116,97,114,103,101,116,46,105,100,32,63,32,116,97,114,103,101,116,46,105,100,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,67,111,110,116,97,105,110,101,114,58,32,102,117,110,99,116,105,111,110,32,103,101,116,67,111,110,116,97,105,110,101,114,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,99,97,115,101,32,119,104,101,114,101,32,99,111,110,116,97,105,110,101,114,32,109,97,121,32,98,101,32,97,32,99,111,109,112,111,110,101,110,116,32,114,101,102,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,32,61,32,116,104,105,115,46,99,111,110,116,97,105,110,101,114,32,63,32,116,104,105,115,46,99,111,110,116,97,105,110,101,114,46,36,101,108,32,124,124,32,116,104,105,115,46,99,111,110,116,97,105,110,101,114,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,118,97,114,32,98,111,100,121,32,61,32,100,111,99,117,109,101,110,116,46,98,111,100,121,59,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,32,47,47,32,73,102,32,119,101,32,97,114,101,32,105,110,32,97,32,109,111,100,97,108,44,32,119,101,32,97,112,112,101,110,100,32,116,111,32,116,104,101,32,109,111,100,97,108,44,32,73,102,32,119,101,92,110,32,32,32,32,32,32,47,47,32,97,114,101,32,105,110,32,97,32,115,105,100,101,98,97,114,44,32,119,101,32,97,112,112,101,110,100,32,116,111,32,116,104,101,32,115,105,100,101,98,97,114,44,32,101,108,115,101,32,97,112,112,101,110,100,92,110,32,32,32,32,32,32,47,47,32,116,111,32,98,111,100,121,44,32,117,110,108,101,115,115,32,97,32,99,111,110,116,97,105,110,101,114,32,105,115,32,115,112,101,99,105,102,105,101,100,92,110,32,32,32,32,32,32,47,47,32,84,79,68,79,58,92,110,32,32,32,32,32,32,47,47,32,32,32,84,101,109,112,108,97,116,101,32,115,104,111,117,108,100,32,112,101,114,105,111,100,105,99,97,108,108,121,32,99,104,101,99,107,32,116,111,32,115,101,101,32,105,102,32,105,116,32,105,115,32,105,110,32,100,111,109,92,110,32,32,32,32,32,32,47,47,32,32,32,65,110,100,32,105,102,32,110,111,116,44,32,115,101,108,102,32,100,101,115,116,114,117,99,116,32,40,105,102,32,99,111,110,116,97,105,110,101,114,32,103,111,116,32,118,45,105,102,39,101,100,32,111,117,116,32,111,102,32,68,79,77,41,92,110,32,32,32,32,32,32,47,47,32,32,32,79,114,32,116,104,105,115,32,99,111,117,108,100,32,112,111,115,115,105,98,108,121,32,98,101,32,112,97,114,116,32,111,102,32,116,104,101,32,118,105,115,105,98,105,108,105,116,121,32,99,104,101,99,107,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,110,116,97,105,110,101,114,32,61,61,61,32,102,97,108,115,101,32,63,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,99,108,111,115,101,115,116,41,40,67,79,78,84,65,73,78,69,82,95,83,69,76,69,67,84,79,82,44,32,116,97,114,103,101,116,41,32,124,124,32,98,111,100,121,32,58,92,110,32,32,32,32,32,32,47,42,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,83,116,114,105,110,103,41,40,99,111,110,116,97,105,110,101,114,41,32,63,92,110,32,32,32,32,32,32,47,42,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,103,101,116,66,121,73,100,41,40,99,111,110,116,97,105,110,101,114,46,114,101,112,108,97,99,101,40,47,94,35,47,44,32,39,39,41,41,32,124,124,32,98,111,100,121,32,58,92,110,32,32,32,32,32,32,47,42,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,98,111,100,121,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,66,111,117,110,100,97,114,121,58,32,102,117,110,99,116,105,111,110,32,103,101,116,66,111,117,110,100,97,114,121,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,111,117,110,100,97,114,121,32,63,32,116,104,105,115,46,98,111,117,110,100,97,114,121,46,36,101,108,32,124,124,32,116,104,105,115,46,98,111,117,110,100,97,114,121,32,58,32,39,115,99,114,111,108,108,80,97,114,101,110,116,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,73,110,77,111,100,97,108,58,32,102,117,110,99,116,105,111,110,32,105,115,73,110,77,111,100,97,108,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,97,114,103,101,116,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,99,108,111,115,101,115,116,41,40,77,79,68,65,76,95,83,69,76,69,67,84,79,82,44,32,116,97,114,103,101,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,68,114,111,112,100,111,119,110,58,32,102,117,110,99,116,105,111,110,32,105,115,68,114,111,112,100,111,119,110,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,116,114,105,103,103,101,114,32,105,115,32,97,32,100,114,111,112,100,111,119,110,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,97,114,103,101,116,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,104,97,115,67,108,97,115,115,41,40,116,97,114,103,101,116,44,32,68,82,79,80,68,79,87,78,95,67,76,65,83,83,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,114,111,112,100,111,119,110,79,112,101,110,58,32,102,117,110,99,116,105,111,110,32,100,114,111,112,100,111,119,110,79,112,101,110,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,116,114,105,103,103,101,114,32,105,115,32,97,32,100,114,111,112,100,111,119,110,32,97,110,100,32,116,104,101,32,100,114,111,112,100,111,119,110,32,109,101,110,117,32,105,115,32,111,112,101,110,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,68,114,111,112,100,111,119,110,40,41,32,38,38,32,116,97,114,103,101,116,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,115,101,108,101,99,116,41,40,68,82,79,80,68,79,87,78,95,79,80,69,78,95,83,69,76,69,67,84,79,82,44,32,116,97,114,103,101,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,108,101,97,114,72,111,118,101,114,84,105,109,101,111,117,116,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,72,111,118,101,114,84,105,109,101,111,117,116,40,41,32,123,92,110,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,36,95,104,111,118,101,114,84,105,109,101,111,117,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,104,111,118,101,114,84,105,109,101,111,117,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,108,101,97,114,86,105,115,105,98,105,108,105,116,121,73,110,116,101,114,118,97,108,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,86,105,115,105,98,105,108,105,116,121,73,110,116,101,114,118,97,108,40,41,32,123,92,110,32,32,32,32,32,32,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,36,95,118,105,115,105,98,108,101,73,110,116,101,114,118,97,108,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,118,105,115,105,98,108,101,73,110,116,101,114,118,97,108,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,108,101,97,114,65,99,116,105,118,101,84,114,105,103,103,101,114,115,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,65,99,116,105,118,101,84,114,105,103,103,101,114,115,40,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,116,114,105,103,103,101,114,32,105,110,32,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,91,116,114,105,103,103,101,114,93,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,100,100,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,58,32,102,117,110,99,116,105,111,110,32,97,100,100,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,65,100,100,32,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,32,111,110,32,116,114,105,103,103,101,114,32,101,108,101,109,101,110,116,44,32,119,105,116,104,111,117,116,32,114,101,109,111,118,105,110,103,32,97,110,121,32,111,116,104,101,114,32,73,68,115,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,100,101,115,99,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,103,101,116,65,116,116,114,41,40,116,97,114,103,101,116,44,32,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,41,32,124,124,32,39,39,59,92,110,32,32,32,32,32,32,100,101,115,99,32,61,32,100,101,115,99,46,115,112,108,105,116,40,47,92,92,115,43,47,41,46,99,111,110,99,97,116,40,116,104,105,115,46,99,111,109,112,117,116,101,100,73,100,41,46,106,111,105,110,40,39,32,39,41,46,116,114,105,109,40,41,59,32,47,47,32,85,112,100,97,116,101,47,97,100,100,32,97,114,105,97,45,100,101,115,99,114,105,98,101,100,32,98,121,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,115,101,116,65,116,116,114,41,40,116,97,114,103,101,116,44,32,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,44,32,100,101,115,99,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,109,111,118,101,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,58,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,53,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,32,111,110,32,116,114,105,103,103,101,114,32,101,108,101,109,101,110,116,44,32,119,105,116,104,111,117,116,32,114,101,109,111,118,105,110,103,32,97,110,121,32,111,116,104,101,114,32,73,68,115,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,100,101,115,99,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,103,101,116,65,116,116,114,41,40,116,97,114,103,101,116,44,32,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,41,32,124,124,32,39,39,59,92,110,32,32,32,32,32,32,100,101,115,99,32,61,32,100,101,115,99,46,115,112,108,105,116,40,47,92,92,115,43,47,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,32,33,61,61,32,95,116,104,105,115,53,46,99,111,109,112,117,116,101,100,73,100,59,92,110,32,32,32,32,32,32,125,41,46,106,111,105,110,40,39,32,39,41,46,116,114,105,109,40,41,59,32,47,47,32,85,112,100,97,116,101,32,111,114,32,114,101,109,111,118,101,32,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,92,110,92,110,32,32,32,32,32,32,105,102,32,40,100,101,115,99,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,115,101,116,65,116,116,114,41,40,116,97,114,103,101,116,44,32,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,44,32,100,101,115,99,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,114,101,109,111,118,101,65,116,116,114,41,40,116,97,114,103,101,116,44,32,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,105,120,84,105,116,108,101,58,32,102,117,110,99,116,105,111,110,32,102,105,120,84,105,116,108,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,116,97,114,103,101,116,32,104,97,115,32,97,32,96,116,105,116,108,101,96,32,97,116,116,114,105,98,117,116,101,44,92,110,32,32,32,32,32,32,47,47,32,114,101,109,111,118,101,32,105,116,32,97,110,100,32,115,116,111,114,101,32,105,116,32,111,110,32,97,32,100,97,116,97,32,97,116,116,114,105,98,117,116,101,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,104,97,115,65,116,116,114,41,40,116,97,114,103,101,116,44,32,39,116,105,116,108,101,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,71,101,116,32,96,116,105,116,108,101,96,32,97,116,116,114,105,98,117,116,101,32,118,97,108,117,101,32,97,110,100,32,114,101,109,111,118,101,32,105,116,32,102,114,111,109,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,105,116,108,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,103,101,116,65,116,116,114,41,40,116,97,114,103,101,116,44,32,39,116,105,116,108,101,39,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,115,101,116,65,116,116,114,41,40,116,97,114,103,101,116,44,32,39,116,105,116,108,101,39,44,32,39,39,41,59,32,47,47,32,79,110,108,121,32,115,101,116,32,116,104,101,32,100,97,116,97,32,97,116,116,114,105,98,117,116,101,32,119,104,101,110,32,116,104,101,32,118,97,108,117,101,32,105,115,32,116,114,117,116,104,121,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,105,116,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,115,101,116,65,116,116,114,41,40,116,97,114,103,101,116,44,32,68,65,84,65,95,84,73,84,76,69,95,65,84,84,82,44,32,116,105,116,108,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,115,116,111,114,101,84,105,116,108,101,58,32,102,117,110,99,116,105,111,110,32,114,101,115,116,111,114,101,84,105,116,108,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,116,97,114,103,101,116,32,104,97,100,32,97,32,96,116,105,116,108,101,96,32,97,116,116,114,105,98,117,116,101,44,92,110,32,32,32,32,32,32,47,47,32,114,101,115,116,111,114,101,32,105,116,32,97,110,100,32,114,101,109,111,118,101,32,116,104,101,32,100,97,116,97,32,97,116,116,114,105,98,117,116,101,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,104,97,115,65,116,116,114,41,40,116,97,114,103,101,116,44,32,68,65,84,65,95,84,73,84,76,69,95,65,84,84,82,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,71,101,116,32,100,97,116,97,32,97,116,116,114,105,98,117,116,101,32,118,97,108,117,101,32,97,110,100,32,114,101,109,111,118,101,32,105,116,32,102,114,111,109,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,105,116,108,101,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,103,101,116,65,116,116,114,41,40,116,97,114,103,101,116,44,32,68,65,84,65,95,84,73,84,76,69,95,65,84,84,82,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,114,101,109,111,118,101,65,116,116,114,41,40,116,97,114,103,101,116,44,32,68,65,84,65,95,84,73,84,76,69,95,65,84,84,82,41,59,32,47,47,32,79,110,108,121,32,114,101,115,116,111,114,101,32,116,104,101,32,96,116,105,116,108,101,96,32,97,116,116,114,105,98,117,116,101,32,119,104,101,110,32,116,104,101,32,118,97,108,117,101,32,105,115,32,116,114,117,116,104,121,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,105,116,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,115,101,116,65,116,116,114,41,40,116,97,114,103,101,116,44,32,39,116,105,116,108,101,39,44,32,116,105,116,108,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,45,45,45,32,66,118,69,118,101,110,116,32,104,101,108,112,101,114,115,32,45,45,45,92,110,32,32,32,32,98,117,105,108,100,69,118,101,110,116,58,32,102,117,110,99,116,105,111,110,32,98,117,105,108,100,69,118,101,110,116,40,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,32,32,32,32,32,32,47,47,32,68,101,102,97,117,108,116,115,32,116,111,32,97,32,110,111,110,45,99,97,110,99,101,108,108,97,98,108,101,32,101,118,101,110,116,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,95,117,116,105,108,115,95,98,118,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,66,118,69,118,101,110,116,40,116,121,112,101,44,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,99,97,110,99,101,108,97,98,108,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,44,92,110,32,32,32,32,32,32,32,32,114,101,108,97,116,101,100,84,97,114,103,101,116,58,32,116,104,105,115,46,103,101,116,84,101,109,112,108,97,116,101,69,108,101,109,101,110,116,40,41,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,73,100,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,100,44,92,110,32,32,32,32,32,32,32,32,118,117,101,84,97,114,103,101,116,58,32,116,104,105,115,92,110,32,32,32,32,32,32,125,44,32,111,112,116,105,111,110,115,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,109,105,116,69,118,101,110,116,58,32,102,117,110,99,116,105,111,110,32,101,109,105,116,69,118,101,110,116,40,98,118,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,98,118,69,118,101,110,116,46,116,121,112,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,116,104,105,115,46,116,101,109,112,108,97,116,101,84,121,112,101,44,32,116,121,112,101,41,44,32,98,118,69,118,101,110,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,116,121,112,101,44,32,98,118,69,118,101,110,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,45,45,45,32,69,118,101,110,116,32,104,97,110,100,108,101,114,32,115,101,116,117,112,32,109,101,116,104,111,100,115,32,45,45,45,92,110,32,32,32,32,108,105,115,116,101,110,58,32,102,117,110,99,116,105,111,110,32,108,105,115,116,101,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,54,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,69,110,97,98,108,101,32,116,114,105,103,103,101,114,32,101,118,101,110,116,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,32,32,118,97,114,32,101,108,32,61,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,76,105,115,116,101,110,32,102,111,114,32,103,108,111,98,97,108,32,115,104,111,119,47,104,105,100,101,32,101,118,101,110,116,115,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,82,111,111,116,76,105,115,116,101,110,101,114,40,116,114,117,101,41,59,32,47,47,32,83,101,116,32,117,112,32,111,117,114,32,108,105,115,116,101,110,101,114,115,32,111,110,32,116,104,101,32,116,97,114,103,101,116,32,116,114,105,103,103,101,114,32,101,108,101,109,101,110,116,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,111,109,112,117,116,101,100,84,114,105,103,103,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,114,105,103,103,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,114,105,103,103,101,114,32,61,61,61,32,39,99,108,105,99,107,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,41,40,101,108,44,32,39,99,108,105,99,107,39,44,32,95,116,104,105,115,54,46,104,97,110,100,108,101,69,118,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,114,105,103,103,101,114,32,61,61,61,32,39,102,111,99,117,115,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,41,40,101,108,44,32,39,102,111,99,117,115,105,110,39,44,32,95,116,104,105,115,54,46,104,97,110,100,108,101,69,118,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,41,40,101,108,44,32,39,102,111,99,117,115,111,117,116,39,44,32,95,116,104,105,115,54,46,104,97,110,100,108,101,69,118,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,114,105,103,103,101,114,32,61,61,61,32,39,98,108,117,114,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,85,115,101,100,32,116,111,32,99,108,111,115,101,32,36,116,105,112,32,119,104,101,110,32,101,108,101,109,101,110,116,32,108,111,111,115,101,115,32,102,111,99,117,115,92,110,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,41,40,101,108,44,32,39,102,111,99,117,115,111,117,116,39,44,32,95,116,104,105,115,54,46,104,97,110,100,108,101,69,118,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,114,105,103,103,101,114,32,61,61,61,32,39,104,111,118,101,114,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,41,40,101,108,44,32,39,109,111,117,115,101,101,110,116,101,114,39,44,32,95,116,104,105,115,54,46,104,97,110,100,108,101,69,118,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,41,40,101,108,44,32,39,109,111,117,115,101,108,101,97,118,101,39,44,32,95,116,104,105,115,54,46,104,97,110,100,108,101,69,118,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,41,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,117,110,76,105,115,116,101,110,58,32,102,117,110,99,116,105,111,110,32,117,110,76,105,115,116,101,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,55,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,116,114,105,103,103,101,114,32,101,118,101,110,116,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,115,32,61,32,91,39,99,108,105,99,107,39,44,32,39,102,111,99,117,115,105,110,39,44,32,39,102,111,99,117,115,111,117,116,39,44,32,39,109,111,117,115,101,101,110,116,101,114,39,44,32,39,109,111,117,115,101,108,101,97,118,101,39,93,59,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,32,47,47,32,83,116,111,112,32,108,105,115,116,101,110,105,110,103,32,102,111,114,32,103,108,111,98,97,108,32,115,104,111,119,47,104,105,100,101,47,101,110,97,98,108,101,47,100,105,115,97,98,108,101,32,101,118,101,110,116,115,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,82,111,111,116,76,105,115,116,101,110,101,114,40,102,97,108,115,101,41,59,32,47,47,32,67,108,101,97,114,32,111,117,116,32,97,110,121,32,97,99,116,105,118,101,32,116,97,114,103,101,116,32,108,105,115,116,101,110,101,114,115,92,110,92,110,32,32,32,32,32,32,101,118,101,110,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,32,38,38,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,102,102,41,40,116,97,114,103,101,116,44,32,101,118,101,110,116,44,32,95,116,104,105,115,55,46,104,97,110,100,108,101,69,118,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,82,111,111,116,76,105,115,116,101,110,101,114,58,32,102,117,110,99,116,105,111,110,32,115,101,116,82,111,111,116,76,105,115,116,101,110,101,114,40,111,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,76,105,115,116,101,110,32,102,111,114,32,103,108,111,98,97,108,32,96,98,118,58,58,123,104,105,100,101,124,115,104,111,119,125,58,58,123,116,111,111,108,116,105,112,124,112,111,112,111,118,101,114,125,96,32,104,105,100,101,32,114,101,113,117,101,115,116,32,101,118,101,110,116,92,110,32,32,32,32,32,32,118,97,114,32,36,114,111,111,116,32,61,32,116,104,105,115,46,36,114,111,111,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,36,114,111,111,116,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,101,116,104,111,100,32,61,32,111,110,32,63,32,39,36,111,110,39,32,58,32,39,36,111,102,102,39,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,116,104,105,115,46,116,101,109,112,108,97,116,101,84,121,112,101,59,92,110,32,32,32,32,32,32,32,32,36,114,111,111,116,91,109,101,116,104,111,100,93,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,116,121,112,101,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,41,44,32,116,104,105,115,46,100,111,72,105,100,101,41,59,92,110,32,32,32,32,32,32,32,32,36,114,111,111,116,91,109,101,116,104,111,100,93,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,116,121,112,101,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,41,44,32,116,104,105,115,46,100,111,83,104,111,119,41,59,92,110,32,32,32,32,32,32,32,32,36,114,111,111,116,91,109,101,116,104,111,100,93,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,116,121,112,101,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,68,73,83,65,66,76,69,41,44,32,116,104,105,115,46,100,111,68,105,115,97,98,108,101,41,59,92,110,32,32,32,32,32,32,32,32,36,114,111,111,116,91,109,101,116,104,111,100,93,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,116,121,112,101,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,41,44,32,116,104,105,115,46,100,111,69,110,97,98,108,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,87,104,105,108,101,79,112,101,110,76,105,115,116,101,110,101,114,115,58,32,102,117,110,99,116,105,111,110,32,115,101,116,87,104,105,108,101,79,112,101,110,76,105,115,116,101,110,101,114,115,40,111,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,69,118,101,110,116,115,32,116,104,97,116,32,97,114,101,32,111,110,108,121,32,114,101,103,105,115,116,101,114,101,100,32,119,104,101,110,32,116,104,101,32,116,101,109,112,108,97,116,101,32,105,115,32,115,104,111,119,105,110,103,92,110,32,32,32,32,32,32,47,47,32,77,111,100,97,108,32,99,108,111,115,101,32,101,118,101,110,116,115,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,77,111,100,97,108,76,105,115,116,101,110,101,114,40,111,110,41,59,32,47,47,32,68,114,111,112,100,111,119,110,32,111,112,101,110,32,101,118,101,110,116,115,32,40,105,102,32,119,101,32,97,114,101,32,97,116,116,97,99,104,101,100,32,116,111,32,97,32,100,114,111,112,100,111,119,110,41,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,68,114,111,112,100,111,119,110,76,105,115,116,101,110,101,114,40,111,110,41,59,32,47,47,32,80,101,114,105,111,100,105,99,32,36,101,108,101,109,101,110,116,32,118,105,115,105,98,105,108,105,116,121,32,99,104,101,99,107,92,110,32,32,32,32,32,32,47,47,32,70,111,114,32,104,97,110,100,108,105,110,103,32,119,104,101,110,32,116,105,112,32,116,97,114,103,101,116,32,105,115,32,105,110,32,60,107,101,101,112,97,108,105,118,101,62,44,32,116,97,98,115,44,32,99,97,114,111,117,115,101,108,44,32,101,116,99,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,118,105,115,105,98,108,101,67,104,101,99,107,40,111,110,41,59,32,47,47,32,79,110,45,116,111,117,99,104,32,115,116,97,114,116,32,108,105,115,116,101,110,101,114,115,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,79,110,84,111,117,99,104,83,116,97,114,116,76,105,115,116,101,110,101,114,40,111,110,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,72,97,110,100,108,101,114,32,102,111,114,32,112,101,114,105,111,100,105,99,32,118,105,115,105,98,105,108,105,116,121,32,99,104,101,99,107,92,110,32,32,32,32,118,105,115,105,98,108,101,67,104,101,99,107,58,32,102,117,110,99,116,105,111,110,32,118,105,115,105,98,108,101,67,104,101,99,107,40,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,56,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,86,105,115,105,98,105,108,105,116,121,73,110,116,101,114,118,97,108,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,116,105,112,32,61,32,116,104,105,115,46,103,101,116,84,101,109,112,108,97,116,101,69,108,101,109,101,110,116,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,118,105,115,105,98,108,101,73,110,116,101,114,118,97,108,32,61,32,115,101,116,73,110,116,101,114,118,97,108,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,105,112,32,38,38,32,95,116,104,105,115,56,46,108,111,99,97,108,83,104,111,119,32,38,38,32,40,33,116,97,114,103,101,116,46,112,97,114,101,110,116,78,111,100,101,32,124,124,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,105,115,86,105,115,105,98,108,101,41,40,116,97,114,103,101,116,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,97,114,103,101,116,32,101,108,101,109,101,110,116,32,105,115,32,110,111,32,108,111,110,103,101,114,32,118,105,115,105,98,108,101,32,111,114,32,110,111,116,32,105,110,32,68,79,77,44,32,115,111,32,102,111,114,99,101,45,104,105,100,101,32,116,104,101,32,116,111,111,108,116,105,112,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,56,46,102,111,114,99,101,72,105,100,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,49,48,48,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,77,111,100,97,108,76,105,115,116,101,110,101,114,58,32,102,117,110,99,116,105,111,110,32,115,101,116,77,111,100,97,108,76,105,115,116,101,110,101,114,40,111,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,99,97,115,101,32,119,104,101,114,101,32,116,111,111,108,116,105,112,47,116,97,114,103,101,116,32,105,115,32,105,110,32,97,32,109,111,100,97,108,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,73,110,77,111,100,97,108,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,99,97,110,32,108,105,115,116,101,110,32,102,111,114,32,109,111,100,97,108,32,104,105,100,100,101,110,32,101,118,101,110,116,115,32,111,110,32,96,36,114,111,111,116,96,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,114,111,111,116,91,111,110,32,63,32,39,36,111,110,39,32,58,32,39,36,111,102,102,39,93,40,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,77,79,68,65,76,95,72,73,68,68,69,78,44,32,116,104,105,115,46,102,111,114,99,101,72,105,100,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,74,83,68,79,77,32,100,111,101,115,110,39,116,32,115,117,112,112,111,114,116,32,96,111,110,116,111,117,99,104,115,116,97,114,116,96,32,42,47,92,110,32,32,32,32,115,101,116,79,110,84,111,117,99,104,83,116,97,114,116,76,105,115,116,101,110,101,114,58,32,102,117,110,99,116,105,111,110,32,115,101,116,79,110,84,111,117,99,104,83,116,97,114,116,76,105,115,116,101,110,101,114,40,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,57,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,105,115,32,105,115,32,97,32,116,111,117,99,104,45,101,110,97,98,108,101,100,32,100,101,118,105,99,101,32,119,101,32,97,100,100,32,101,120,116,114,97,32,101,109,112,116,121,92,110,32,32,32,32,32,32,47,47,32,96,109,111,117,115,101,111,118,101,114,96,32,108,105,115,116,101,110,101,114,115,32,116,111,32,116,104,101,32,98,111,100,121,39,115,32,105,109,109,101,100,105,97,116,101,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,47,47,32,79,110,108,121,32,110,101,101,100,101,100,32,98,101,99,97,117,115,101,32,111,102,32,98,114,111,107,101,110,32,101,118,101,110,116,32,100,101,108,101,103,97,116,105,111,110,32,111,110,32,105,79,83,92,110,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,119,119,119,46,113,117,105,114,107,115,109,111,100,101,46,111,114,103,47,98,108,111,103,47,97,114,99,104,105,118,101,115,47,50,48,49,52,47,48,50,47,109,111,117,115,101,95,101,118,101,110,116,95,98,117,98,46,104,116,109,108,92,110,32,32,32,32,32,32,105,102,32,40,39,111,110,116,111,117,99,104,115,116,97,114,116,39,32,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,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,102,114,111,109,41,40,100,111,99,117,109,101,110,116,46,98,111,100,121,46,99,104,105,108,100,114,101,110,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,79,102,102,41,40,111,110,44,32,101,108,44,32,39,109,111,117,115,101,111,118,101,114,39,44,32,95,116,104,105,115,57,46,36,95,110,111,111,112,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,68,114,111,112,100,111,119,110,76,105,115,116,101,110,101,114,58,32,102,117,110,99,116,105,111,110,32,115,101,116,68,114,111,112,100,111,119,110,76,105,115,116,101,110,101,114,40,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,97,114,103,101,116,32,124,124,32,33,116,104,105,115,46,36,114,111,111,116,32,124,124,32,33,116,104,105,115,46,105,115,68,114,111,112,100,111,119,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,87,101,32,99,97,110,32,108,105,115,116,101,110,32,102,111,114,32,100,114,111,112,100,111,119,110,32,115,104,111,119,110,32,101,118,101,110,116,115,32,111,110,32,105,116,115,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,32,32,47,47,32,84,79,68,79,58,92,110,32,32,32,32,32,32,47,47,32,32,32,87,101,32,99,111,117,108,100,32,103,114,97,98,32,116,104,101,32,73,68,32,102,114,111,109,32,116,104,101,32,100,114,111,112,100,111,119,110,44,32,97,110,100,32,108,105,115,116,101,110,32,102,111,114,92,110,32,32,32,32,32,32,47,47,32,32,32,36,114,111,111,116,32,101,118,101,110,116,115,32,102,111,114,32,116,104,97,116,32,112,97,114,116,105,99,117,108,97,114,32,100,114,111,112,100,111,119,110,32,105,100,92,110,32,32,32,32,32,32,47,47,32,32,32,68,114,111,112,100,111,119,110,32,115,104,111,119,110,32,97,110,100,32,104,105,100,100,101,110,32,101,118,101,110,116,115,32,119,105,108,108,32,110,101,101,100,32,116,111,32,101,109,105,116,92,110,32,32,32,32,32,32,47,47,32,32,32,78,111,116,101,58,32,68,114,111,112,100,111,119,110,32,97,117,116,111,45,73,68,32,104,97,112,112,101,110,115,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,97,102,116,101,114,32,109,111,117,110,116,92,110,32,32,32,32,32,32,47,47,32,32,32,32,32,32,32,32,32,83,111,32,116,104,101,32,73,68,32,108,111,111,107,117,112,32,119,111,117,108,100,32,110,101,101,100,32,116,111,32,98,101,32,100,111,110,101,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,97,114,103,101,116,46,95,95,118,117,101,95,95,41,32,123,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,46,95,95,118,117,101,95,95,91,111,110,32,63,32,39,36,111,110,39,32,58,32,39,36,111,102,102,39,93,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,44,32,116,104,105,115,46,102,111,114,99,101,72,105,100,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,45,45,45,32,69,118,101,110,116,32,104,97,110,100,108,101,114,115,32,45,45,45,92,110,32,32,32,32,104,97,110,100,108,101,69,118,101,110,116,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,69,118,101,110,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,71,101,110,101,114,97,108,32,116,114,105,103,103,101,114,32,101,118,101,110,116,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,47,47,32,116,97,114,103,101,116,32,105,115,32,116,104,101,32,116,114,105,103,103,101,114,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,97,114,103,101,116,32,124,124,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,105,115,68,105,115,97,98,108,101,100,41,40,116,97,114,103,101,116,41,32,124,124,32,33,116,104,105,115,46,36,95,101,110,97,98,108,101,100,32,124,124,32,116,104,105,115,46,100,114,111,112,100,111,119,110,79,112,101,110,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,100,105,115,97,98,108,101,100,32,111,114,32,110,111,116,32,101,110,97,98,108,101,100,44,32,111,114,32,105,102,32,97,32,100,114,111,112,100,111,119,110,32,116,104,97,116,32,105,115,32,111,112,101,110,44,32,100,111,110,39,116,32,100,111,32,97,110,121,116,104,105,110,103,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,105,112,32,105,115,32,115,104,111,119,110,32,98,101,102,111,114,101,32,101,108,101,109,101,110,116,32,103,101,116,115,32,100,105,115,97,98,108,101,100,44,32,116,104,101,110,32,116,105,112,32,119,105,108,108,32,110,111,116,92,110,32,32,32,32,32,32,32,32,47,47,32,99,108,111,115,101,32,117,110,116,105,108,32,110,111,32,108,111,110,103,101,114,32,100,105,115,97,98,108,101,100,32,111,114,32,102,111,114,99,101,102,117,108,108,121,32,99,108,111,115,101,100,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,101,118,101,110,116,46,116,121,112,101,59,92,110,32,32,32,32,32,32,118,97,114,32,116,114,105,103,103,101,114,115,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,84,114,105,103,103,101,114,115,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,99,108,105,99,107,39,32,38,38,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,116,114,105,103,103,101,114,115,44,32,39,99,108,105,99,107,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,108,105,99,107,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,109,111,117,115,101,101,110,116,101,114,39,32,38,38,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,116,114,105,103,103,101,114,115,44,32,39,104,111,118,101,114,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,96,109,111,117,115,101,101,110,116,101,114,96,32,105,115,32,97,32,110,111,110,45,98,117,98,98,108,105,110,103,32,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,110,116,101,114,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,102,111,99,117,115,105,110,39,32,38,38,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,116,114,105,103,103,101,114,115,44,32,39,102,111,99,117,115,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,96,102,111,99,117,115,105,110,96,32,105,115,32,97,32,98,117,98,98,108,105,110,103,32,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,47,47,32,96,101,118,101,110,116,96,32,105,110,99,108,117,100,101,115,32,96,114,101,108,97,116,101,100,84,97,114,103,101,116,96,32,40,101,108,101,109,101,110,116,32,108,111,115,105,110,103,32,102,111,99,117,115,41,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,110,116,101,114,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,102,111,99,117,115,111,117,116,39,32,38,38,32,40,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,116,114,105,103,103,101,114,115,44,32,39,102,111,99,117,115,39,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,116,114,105,103,103,101,114,115,44,32,39,98,108,117,114,39,41,41,32,124,124,32,116,121,112,101,32,61,61,61,32,39,109,111,117,115,101,108,101,97,118,101,39,32,38,38,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,116,114,105,103,103,101,114,115,44,32,39,104,111,118,101,114,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,96,102,111,99,117,115,111,117,116,96,32,105,115,32,97,32,98,117,98,98,108,105,110,103,32,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,47,47,32,96,109,111,117,115,101,108,101,97,118,101,96,32,105,115,32,97,32,110,111,110,45,98,117,98,98,108,105,110,103,32,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,47,47,32,96,116,105,112,96,32,105,115,32,116,104,101,32,116,101,109,112,108,97,116,101,32,40,119,105,108,108,32,98,101,32,110,117,108,108,32,105,102,32,110,111,116,32,111,112,101,110,41,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,105,112,32,61,32,116,104,105,115,46,103,101,116,84,101,109,112,108,97,116,101,69,108,101,109,101,110,116,40,41,59,32,47,47,32,96,101,118,101,110,116,84,97,114,103,101,116,96,32,105,115,32,116,104,101,32,101,108,101,109,101,110,116,32,119,104,105,99,104,32,105,115,32,108,111,115,105,110,103,32,102,111,99,117,115,47,104,111,118,101,114,32,97,110,100,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,84,97,114,103,101,116,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,59,32,47,47,32,96,114,101,108,97,116,101,100,84,97,114,103,101,116,96,32,105,115,32,116,104,101,32,101,108,101,109,101,110,116,32,103,97,105,110,105,110,103,32,102,111,99,117,115,47,104,111,118,101,114,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,108,97,116,101,100,84,97,114,103,101,116,32,61,32,101,118,101,110,116,46,114,101,108,97,116,101,100,84,97,114,103,101,116,59,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,32,47,47,32,70,114,111,109,32,116,105,112,32,116,111,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,32,32,116,105,112,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,99,111,110,116,97,105,110,115,41,40,116,105,112,44,32,101,118,101,110,116,84,97,114,103,101,116,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,99,111,110,116,97,105,110,115,41,40,116,97,114,103,101,116,44,32,114,101,108,97,116,101,100,84,97,114,103,101,116,41,32,124,124,32,47,47,32,70,114,111,109,32,116,97,114,103,101,116,32,116,111,32,116,105,112,92,110,32,32,32,32,32,32,32,32,116,105,112,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,99,111,110,116,97,105,110,115,41,40,116,97,114,103,101,116,44,32,101,118,101,110,116,84,97,114,103,101,116,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,99,111,110,116,97,105,110,115,41,40,116,105,112,44,32,114,101,108,97,116,101,100,84,97,114,103,101,116,41,32,124,124,32,47,47,32,87,105,116,104,105,110,32,116,105,112,92,110,32,32,32,32,32,32,32,32,116,105,112,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,99,111,110,116,97,105,110,115,41,40,116,105,112,44,32,101,118,101,110,116,84,97,114,103,101,116,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,99,111,110,116,97,105,110,115,41,40,116,105,112,44,32,114,101,108,97,116,101,100,84,97,114,103,101,116,41,32,124,124,32,47,47,32,87,105,116,104,105,110,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,99,111,110,116,97,105,110,115,41,40,116,97,114,103,101,116,44,32,101,118,101,110,116,84,97,114,103,101,116,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,99,111,110,116,97,105,110,115,41,40,116,97,114,103,101,116,44,32,114,101,108,97,116,101,100,84,97,114,103,101,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,102,111,99,117,115,47,104,111,118,101,114,32,109,111,118,101,115,32,119,105,116,104,105,110,32,96,116,105,112,96,32,97,110,100,32,96,116,97,114,103,101,116,96,44,32,100,111,110,39,116,32,116,114,105,103,103,101,114,32,97,32,108,101,97,118,101,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,79,116,104,101,114,119,105,115,101,32,116,114,105,103,103,101,114,32,97,32,108,101,97,118,101,92,110,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,101,97,118,101,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,111,72,105,100,101,58,32,102,117,110,99,116,105,111,110,32,100,111,72,105,100,101,40,105,100,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,114,111,103,114,97,109,109,97,116,105,99,97,108,108,121,32,104,105,100,101,32,116,111,111,108,116,105,112,32,111,114,32,112,111,112,111,118,101,114,92,110,32,32,32,32,32,32,105,102,32,40,33,105,100,32,124,124,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,73,100,40,41,32,61,61,61,32,105,100,32,124,124,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,100,32,61,61,61,32,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,108,111,115,101,32,97,108,108,32,116,111,111,108,116,105,112,115,32,111,114,32,112,111,112,111,118,101,114,115,44,32,111,114,32,116,104,105,115,32,115,112,101,99,105,102,105,99,32,116,105,112,32,40,119,105,116,104,32,73,68,41,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,102,111,114,99,101,72,105,100,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,111,83,104,111,119,58,32,102,117,110,99,116,105,111,110,32,100,111,83,104,111,119,40,105,100,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,114,111,103,114,97,109,109,97,116,105,99,97,108,108,121,32,115,104,111,119,32,116,111,111,108,116,105,112,32,111,114,32,112,111,112,111,118,101,114,92,110,32,32,32,32,32,32,105,102,32,40,33,105,100,32,124,124,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,73,100,40,41,32,61,61,61,32,105,100,32,124,124,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,100,32,61,61,61,32,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,79,112,101,110,32,97,108,108,32,116,111,111,108,116,105,112,115,32,111,114,32,112,111,112,111,118,101,114,115,44,32,111,114,32,116,104,105,115,32,115,112,101,99,105,102,105,99,32,116,105,112,32,40,119,105,116,104,32,73,68,41,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,105,103,110,111,114,101,32,102,111,114,32,110,111,119,32,42,47,92,110,32,32,32,32,100,111,68,105,115,97,98,108,101,58,32,102,117,110,99,116,105,111,110,32,100,111,68,105,115,97,98,108,101,40,105,100,41,92,110,32,32,32,32,47,42,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,105,103,110,111,114,101,32,102,111,114,32,110,111,119,32,42,47,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,47,47,32,80,114,111,103,114,97,109,109,97,116,105,99,97,108,108,121,32,100,105,115,97,98,108,101,32,116,111,111,108,116,105,112,32,111,114,32,112,111,112,111,118,101,114,92,110,32,32,32,32,32,32,105,102,32,40,33,105,100,32,124,124,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,73,100,40,41,32,61,61,61,32,105,100,32,124,124,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,100,32,61,61,61,32,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,105,115,97,98,108,101,32,97,108,108,32,116,111,111,108,116,105,112,115,32,111,114,32,112,111,112,111,118,101,114,115,32,40,110,111,32,73,68,41,44,32,111,114,32,116,104,105,115,32,115,112,101,99,105,102,105,99,32,116,105,112,32,40,119,105,116,104,32,73,68,41,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,100,105,115,97,98,108,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,105,103,110,111,114,101,32,102,111,114,32,110,111,119,32,42,47,92,110,32,32,32,32,100,111,69,110,97,98,108,101,58,32,102,117,110,99,116,105,111,110,32,100,111,69,110,97,98,108,101,40,105,100,41,92,110,32,32,32,32,47,42,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,105,103,110,111,114,101,32,102,111,114,32,110,111,119,32,42,47,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,47,47,32,80,114,111,103,114,97,109,109,97,116,105,99,97,108,108,121,32,101,110,97,98,108,101,32,116,111,111,108,116,105,112,32,111,114,32,112,111,112,111,118,101,114,92,110,32,32,32,32,32,32,105,102,32,40,33,105,100,32,124,124,32,116,104,105,115,46,103,101,116,84,97,114,103,101,116,73,100,40,41,32,61,61,61,32,105,100,32,124,124,32,116,104,105,115,46,99,111,109,112,117,116,101,100,73,100,32,61,61,61,32,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,69,110,97,98,108,101,32,97,108,108,32,116,111,111,108,116,105,112,115,32,111,114,32,112,111,112,111,118,101,114,115,32,40,110,111,32,73,68,41,44,32,111,114,32,116,104,105,115,32,115,112,101,99,105,102,105,99,32,116,105,112,32,40,119,105,116,104,32,73,68,41,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,110,97,98,108,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,36,95,101,110,97,98,108,101,100,32,124,124,32,116,104,105,115,46,100,114,111,112,100,111,119,110,79,112,101,110,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,71,101,116,32,97,114,111,117,110,100,32,97,32,87,101,98,75,105,116,32,98,117,103,32,119,104,101,114,101,32,96,99,108,105,99,107,96,32,100,111,101,115,32,110,111,116,32,116,114,105,103,103,101,114,32,102,111,99,117,115,32,101,118,101,110,116,115,92,110,32,32,32,32,32,32,47,47,32,79,110,32,109,111,115,116,32,98,114,111,119,115,101,114,115,44,32,96,99,108,105,99,107,96,32,116,114,105,103,103,101,114,115,32,97,32,96,102,111,99,117,115,105,110,96,47,96,102,111,99,117,115,96,32,101,118,101,110,116,32,102,105,114,115,116,92,110,32,32,32,32,32,32,47,47,32,78,101,101,100,101,100,32,115,111,32,116,104,97,116,32,116,114,105,103,103,101,114,32,39,99,108,105,99,107,32,98,108,117,114,39,32,119,111,114,107,115,32,111,110,32,105,79,83,92,110,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,53,48,57,57,92,110,32,32,32,32,32,32,47,47,32,87,101,32,117,115,101,32,96,99,117,114,114,101,110,116,84,97,114,103,101,116,96,32,114,97,116,104,101,114,32,116,104,97,110,32,96,116,97,114,103,101,116,96,32,116,111,32,116,114,105,103,103,101,114,32,111,110,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,101,108,101,109,101,110,116,44,32,110,111,116,32,116,104,101,32,105,110,110,101,114,32,99,111,110,116,101,110,116,92,110,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,101,118,101,110,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,32,61,32,33,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,110,116,101,114,40,110,117,108,108,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,101,97,118,101,40,110,117,108,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,116,111,103,103,108,101,58,32,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,77,97,110,117,97,108,32,116,111,103,103,108,101,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,36,95,101,110,97,98,108,101,100,32,124,124,32,116,104,105,115,46,100,114,111,112,100,111,119,110,79,112,101,110,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,83,104,111,117,108,100,32,119,101,32,114,101,103,105,115,116,101,114,32,97,115,32,97,110,32,97,99,116,105,118,101,32,116,114,105,103,103,101,114,63,92,110,32,32,32,32,32,32,47,47,32,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,46,109,97,110,117,97,108,32,61,32,33,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,46,109,97,110,117,97,108,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,101,97,118,101,40,110,117,108,108,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,110,116,101,114,40,110,117,108,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,101,110,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,49,48,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,47,47,32,79,112,101,110,105,110,103,32,116,114,105,103,103,101,114,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,47,47,32,78,111,116,101,58,32,67,108,105,99,107,32,101,118,101,110,116,115,32,97,114,101,32,115,101,110,116,32,119,105,116,104,32,101,118,101,110,116,32,61,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,91,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,39,102,111,99,117,115,105,110,39,32,63,32,39,102,111,99,117,115,39,32,58,32,39,104,111,118,101,114,39,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,124,124,32,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,32,61,61,61,32,39,105,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,32,61,32,39,105,110,39,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,72,111,118,101,114,84,105,109,101,111,117,116,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,32,61,32,39,105,110,39,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,99,111,109,112,117,116,101,100,68,101,108,97,121,46,115,104,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,72,105,100,101,32,97,110,121,32,116,105,116,108,101,32,97,116,116,114,105,98,117,116,101,32,119,104,105,108,101,32,101,110,116,101,114,32,100,101,108,97,121,32,105,115,32,97,99,116,105,118,101,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,102,105,120,84,105,116,108,101,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,104,111,118,101,114,84,105,109,101,111,117,116,32,61,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,49,48,46,36,95,104,111,118,101,114,83,116,97,116,101,32,61,61,61,32,39,105,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,49,48,46,115,104,111,119,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,95,116,104,105,115,49,48,46,108,111,99,97,108,83,104,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,49,48,46,114,101,115,116,111,114,101,84,105,116,108,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,68,101,108,97,121,46,115,104,111,119,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,101,97,118,101,58,32,102,117,110,99,116,105,111,110,32,108,101,97,118,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,49,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,47,47,32,67,108,111,115,105,110,103,32,116,114,105,103,103,101,114,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,47,47,32,78,111,116,101,58,32,67,108,105,99,107,32,101,118,101,110,116,115,32,97,114,101,32,115,101,110,116,32,119,105,116,104,32,101,118,101,110,116,32,61,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,91,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,39,102,111,99,117,115,111,117,116,39,32,63,32,39,102,111,99,117,115,39,32,58,32,39,104,111,118,101,114,39,93,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,39,102,111,99,117,115,111,117,116,39,32,38,38,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,116,104,105,115,46,99,111,109,112,117,116,101,100,84,114,105,103,103,101,114,115,44,32,39,98,108,117,114,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,83,112,101,99,105,97,108,32,99,97,115,101,32,102,111,114,32,96,98,108,117,114,96,58,32,119,101,32,99,108,101,97,114,32,111,117,116,32,116,104,101,32,111,116,104,101,114,32,116,114,105,103,103,101,114,115,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,46,104,111,118,101,114,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,105,103,110,111,114,101,32,102,111,114,32,110,111,119,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,72,111,118,101,114,84,105,109,101,111,117,116,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,32,61,32,39,111,117,116,39,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,99,111,109,112,117,116,101,100,68,101,108,97,121,46,104,105,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,104,111,118,101,114,84,105,109,101,111,117,116,32,61,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,49,49,46,36,95,104,111,118,101,114,83,116,97,116,101,32,61,61,61,32,39,111,117,116,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,49,49,46,104,105,100,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,68,101,108,97,121,46,104,105,100,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,116,111,111,108,116,105,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,111,111,108,116,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,84,111,111,108,116,105,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,111,111,108,116,105,112,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,84,111,111,108,116,105,112,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,111,111,108,116,105,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,116,111,111,108,116,105,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,84,111,111,108,116,105,112,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,66,84,111,111,108,116,105,112,58,32,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,84,111,111,108,116,105,112,92,110,32,32,125,44,92,110,32,32,112,108,117,103,105,110,115,58,32,123,92,110,32,32,32,32,86,66,84,111,111,108,116,105,112,80,108,117,103,105,110,58,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,86,66,84,111,111,108,116,105,112,80,108,117,103,105,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,116,111,111,108,116,105,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,116,111,111,108,116,105,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,111,111,108,116,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,84,111,111,108,116,105,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,103,101,116,95,115,99,111,112,101,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,103,101,116,45,115,99,111,112,101,45,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,45,115,99,111,112,101,45,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,98,118,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,98,118,45,116,111,111,108,116,105,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,116,111,111,108,116,105,112,46,106,115,92,34,41,59,92,110,118,97,114,32,95,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,44,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,69,78,65,66,76,69,68,32,61,32,39,100,105,115,97,98,108,101,100,39,59,92,110,118,97,114,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,68,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,32,43,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,69,78,65,66,76,69,68,59,92,110,118,97,114,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,72,79,87,32,61,32,39,115,104,111,119,39,59,92,110,118,97,114,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,32,43,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,72,79,87,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,95,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,32,61,32,123,92,110,32,32,47,47,32,83,116,114,105,110,103,58,32,115,99,114,111,108,108,80,97,114,101,110,116,44,32,119,105,110,100,111,119,44,32,111,114,32,118,105,101,119,112,111,114,116,92,110,32,32,47,47,32,69,108,101,109,101,110,116,58,32,101,108,101,109,101,110,116,32,114,101,102,101,114,101,110,99,101,92,110,32,32,47,47,32,79,98,106,101,99,116,58,32,86,117,101,32,99,111,109,112,111,110,101,110,116,92,110,32,32,98,111,117,110,100,97,114,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,91,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,72,84,77,76,69,108,101,109,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,44,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,44,32,39,115,99,114,111,108,108,80,97,114,101,110,116,39,41,44,92,110,32,32,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,53,48,41,44,92,110,32,32,47,47,32,83,116,114,105,110,103,58,32,72,84,77,76,32,73,68,32,111,102,32,99,111,110,116,97,105,110,101,114,44,32,105,102,32,110,117,108,108,32,98,111,100,121,32,105,115,32,117,115,101,100,32,40,100,101,102,97,117,108,116,41,92,110,32,32,47,47,32,72,84,77,76,69,108,101,109,101,110,116,58,32,101,108,101,109,101,110,116,32,114,101,102,101,114,101,110,99,101,32,114,101,102,101,114,101,110,99,101,92,110,32,32,47,47,32,79,98,106,101,99,116,58,32,86,117,101,32,67,111,109,112,111,110,101,110,116,92,110,32,32,99,111,110,116,97,105,110,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,91,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,72,84,77,76,69,108,101,109,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,44,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,41,44,92,110,32,32,99,117,115,116,111,109,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,100,101,108,97,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,79,66,74,69,67,84,95,83,84,82,73,78,71,44,32,53,48,41,92,110,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,69,78,65,66,76,69,68,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,44,32,92,34,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,44,32,39,102,108,105,112,39,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,44,32,92,34,105,100,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,44,32,92,34,110,111,70,97,100,101,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,44,32,92,34,110,111,110,105,110,116,101,114,97,99,116,105,118,101,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,44,32,92,34,111,102,102,115,101,116,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,48,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,44,32,92,34,112,108,97,99,101,109,101,110,116,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,116,111,112,39,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,72,79,87,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,44,32,92,34,116,97,114,103,101,116,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,91,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,72,84,77,76,69,108,101,109,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,83,86,71,69,108,101,109,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,44,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,44,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,44,32,117,110,100,101,102,105,110,101,100,44,32,116,114,117,101,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,44,32,92,34,116,105,116,108,101,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,44,32,92,34,116,114,105,103,103,101,114,115,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,44,32,39,104,111,118,101,114,32,102,111,99,117,115,39,41,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,44,32,92,34,118,97,114,105,97,110,116,92,34,44,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,41,44,32,95,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,84,79,79,76,84,73,80,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,84,111,111,108,116,105,112,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,84,79,79,76,84,73,80,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,83,104,111,119,58,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,72,79,87,93,44,92,110,32,32,32,32,32,32,108,111,99,97,108,84,105,116,108,101,58,32,39,39,44,92,110,32,32,32,32,32,32,108,111,99,97,108,67,111,110,116,101,110,116,58,32,39,39,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,47,47,32,68,97,116,97,32,116,104,97,116,32,119,105,108,108,32,98,101,32,112,97,115,115,101,100,32,116,111,32,116,104,101,32,116,101,109,112,108,97,116,101,32,97,110,100,32,112,111,112,112,101,114,92,110,32,32,32,32,116,101,109,112,108,97,116,101,68,97,116,97,58,32,102,117,110,99,116,105,111,110,32,116,101,109,112,108,97,116,101,68,97,116,97,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,116,104,105,115,46,108,111,99,97,108,84,105,116,108,101,44,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,58,32,116,104,105,115,46,108,111,99,97,108,67,111,110,116,101,110,116,44,92,110,32,32,32,32,32,32,32,32,105,110,116,101,114,97,99,116,105,118,101,58,32,33,116,104,105,115,46,110,111,110,105,110,116,101,114,97,99,116,105,118,101,92,110,32,32,32,32,32,32,125,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,112,105,99,107,41,40,116,104,105,115,46,36,112,114,111,112,115,44,32,91,39,98,111,117,110,100,97,114,121,39,44,32,39,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,39,44,32,39,99,111,110,116,97,105,110,101,114,39,44,32,39,99,117,115,116,111,109,67,108,97,115,115,39,44,32,39,100,101,108,97,121,39,44,32,39,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,39,44,32,39,105,100,39,44,32,39,110,111,70,97,100,101,39,44,32,39,111,102,102,115,101,116,39,44,32,39,112,108,97,99,101,109,101,110,116,39,44,32,39,116,97,114,103,101,116,39,44,32,39,116,97,114,103,101,116,39,44,32,39,116,114,105,103,103,101,114,115,39,44,32,39,118,97,114,105,97,110,116,39,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,69,78,65,66,76,69,68,93,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,85,115,101,100,32,116,111,32,119,97,116,99,104,32,102,111,114,32,99,104,97,110,103,101,115,32,116,111,32,116,104,101,32,116,105,116,108,101,32,97,110,100,32,99,111,110,116,101,110,116,32,112,114,111,112,115,92,110,32,32,32,32,116,101,109,112,108,97,116,101,84,105,116,108,101,67,111,110,116,101,110,116,58,32,102,117,110,99,116,105,111,110,32,116,101,109,112,108,97,116,101,84,105,116,108,101,67,111,110,116,101,110,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,105,116,108,101,32,61,32,116,104,105,115,46,116,105,116,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,32,61,32,116,104,105,115,46,99,111,110,116,101,110,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,116,105,116,108,101,44,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,58,32,99,111,110,116,101,110,116,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,83,72,79,87,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,32,38,38,32,110,101,119,86,97,108,117,101,32,33,61,61,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,38,38,32,116,104,105,115,46,36,95,116,111,111,108,112,111,112,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,116,111,111,108,112,111,112,46,115,104,111,119,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,117,115,101,32,96,102,111,114,99,101,72,105,100,101,40,41,96,32,116,111,32,111,118,101,114,114,105,100,101,32,97,110,121,32,97,99,116,105,118,101,32,116,114,105,103,103,101,114,115,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,116,111,111,108,112,111,112,46,102,111,114,99,101,72,105,100,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,69,78,65,66,76,69,68,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,100,111,68,105,115,97,98,108,101,40,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,100,111,69,110,97,98,108,101,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,108,111,99,97,108,83,104,111,119,92,34,44,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,83,104,111,119,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,47,47,32,84,79,68,79,58,32,77,97,121,32,110,101,101,100,32,116,111,32,98,101,32,100,111,110,101,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,92,110,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,116,101,109,112,108,97,116,101,68,97,116,97,92,34,44,32,102,117,110,99,116,105,111,110,32,116,101,109,112,108,97,116,101,68,97,116,97,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,46,36,95,116,111,111,108,112,111,112,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,95,116,111,111,108,112,111,112,46,117,112,100,97,116,101,68,97,116,97,40,95,116,104,105,115,46,116,101,109,112,108,97,116,101,68,97,116,97,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,116,101,109,112,108,97,116,101,84,105,116,108,101,67,111,110,116,101,110,116,92,34,44,32,102,117,110,99,116,105,111,110,32,116,101,109,112,108,97,116,101,84,105,116,108,101,67,111,110,116,101,110,116,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,117,112,100,97,116,101,67,111,110,116,101,110,116,41,59,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,67,114,101,97,116,101,32,112,114,105,118,97,116,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,115,92,110,32,32,32,32,116,104,105,115,46,36,95,116,111,111,108,112,111,112,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,117,112,100,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,85,112,100,97,116,101,32,116,104,101,32,96,112,114,111,112,68,97,116,97,96,32,111,98,106,101,99,116,92,110,32,32,32,32,47,47,32,68,111,110,101,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,101,110,115,117,114,101,32,115,108,111,116,40,115,41,32,104,97,118,101,32,117,112,100,97,116,101,100,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,117,112,100,97,116,101,67,111,110,116,101,110,116,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,47,47,32,83,104,117,116,100,111,119,110,32,111,117,114,32,108,111,99,97,108,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,116,104,105,115,46,36,111,102,102,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,79,80,69,78,44,32,116,104,105,115,46,100,111,79,112,101,110,41,59,92,110,32,32,32,32,116,104,105,115,46,36,111,102,102,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,79,83,69,44,32,116,104,105,115,46,100,111,67,108,111,115,101,41,59,92,110,32,32,32,32,116,104,105,115,46,36,111,102,102,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,68,73,83,65,66,76,69,44,32,116,104,105,115,46,100,111,68,105,115,97,98,108,101,41,59,92,110,32,32,32,32,116,104,105,115,46,36,111,102,102,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,44,32,116,104,105,115,46,100,111,69,110,97,98,108,101,41,59,32,47,47,32,68,101,115,116,114,111,121,32,116,104,101,32,116,105,112,32,105,110,115,116,97,110,99,101,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,36,95,116,111,111,108,112,111,112,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,116,111,111,108,112,111,112,46,36,100,101,115,116,114,111,121,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,116,111,111,108,112,111,112,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,47,47,32,73,110,115,116,97,110,116,105,97,116,101,32,97,32,110,101,119,32,66,86,84,111,111,108,116,105,112,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,47,47,32,68,111,110,101,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,101,110,115,117,114,101,32,68,79,77,32,104,97,115,32,99,111,109,112,108,101,116,101,100,32,114,101,110,100,101,114,105,110,103,92,110,32,32,32,32,47,47,32,115,111,32,116,104,97,116,32,116,97,114,103,101,116,32,99,97,110,32,98,101,32,102,111,117,110,100,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,76,111,97,100,32,116,104,101,32,111,110,32,100,101,109,97,110,100,32,99,104,105,108,100,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,32,32,118,97,114,32,67,111,109,112,111,110,101,110,116,32,61,32,95,116,104,105,115,50,46,103,101,116,67,111,109,112,111,110,101,110,116,40,41,59,32,47,47,32,69,110,115,117,114,101,32,119,101,32,104,97,118,101,32,105,110,105,116,105,97,108,32,99,111,110,116,101,110,116,92,110,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,50,46,117,112,100,97,116,101,67,111,110,116,101,110,116,40,41,59,32,47,47,32,80,97,115,115,32,100,111,119,110,32,116,104,101,32,115,99,111,112,101,100,32,115,116,121,108,101,32,97,116,116,114,105,98,117,116,101,32,105,102,32,97,118,97,105,108,97,98,108,101,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,73,100,32,61,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,115,99,111,112,101,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,103,101,116,83,99,111,112,101,73,100,41,40,95,116,104,105,115,50,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,115,99,111,112,101,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,103,101,116,83,99,111,112,101,73,100,41,40,95,116,104,105,115,50,46,36,112,97,114,101,110,116,41,59,32,47,47,32,67,114,101,97,116,101,32,116,104,101,32,105,110,115,116,97,110,99,101,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,116,111,111,108,112,111,112,32,61,32,95,116,104,105,115,50,46,36,95,116,111,111,108,112,111,112,32,61,32,110,101,119,32,67,111,109,112,111,110,101,110,116,40,123,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,58,32,95,116,104,105,115,50,44,92,110,32,32,32,32,32,32,32,32,47,47,32,80,97,115,115,32,100,111,119,110,32,116,104,101,32,115,99,111,112,101,100,32,115,116,121,108,101,32,73,68,92,110,32,32,32,32,32,32,32,32,95,115,99,111,112,101,73,100,58,32,115,99,111,112,101,73,100,32,124,124,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,83,101,116,32,116,104,101,32,105,110,105,116,105,97,108,32,100,97,116,97,92,110,92,110,32,32,32,32,32,32,36,116,111,111,108,112,111,112,46,117,112,100,97,116,101,68,97,116,97,40,95,116,104,105,115,50,46,116,101,109,112,108,97,116,101,68,97,116,97,41,59,32,47,47,32,83,101,116,32,108,105,115,116,101,110,101,114,115,92,110,92,110,32,32,32,32,32,32,36,116,111,111,108,112,111,112,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,44,32,95,116,104,105,115,50,46,111,110,83,104,111,119,41,59,92,110,32,32,32,32,32,32,36,116,111,111,108,112,111,112,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,44,32,95,116,104,105,115,50,46,111,110,83,104,111,119,110,41,59,92,110,32,32,32,32,32,32,36,116,111,111,108,112,111,112,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,44,32,95,116,104,105,115,50,46,111,110,72,105,100,101,41,59,92,110,32,32,32,32,32,32,36,116,111,111,108,112,111,112,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,44,32,95,116,104,105,115,50,46,111,110,72,105,100,100,101,110,41,59,92,110,32,32,32,32,32,32,36,116,111,111,108,112,111,112,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,68,73,83,65,66,76,69,68,44,32,95,116,104,105,115,50,46,111,110,68,105,115,97,98,108,101,100,41,59,92,110,32,32,32,32,32,32,36,116,111,111,108,112,111,112,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,68,44,32,95,116,104,105,115,50,46,111,110,69,110,97,98,108,101,100,41,59,32,47,47,32,73,110,105,116,105,97,108,108,121,32,100,105,115,97,98,108,101,100,63,92,110,92,110,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,50,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,95,69,78,65,66,76,69,68,93,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,105,116,105,97,108,108,121,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,100,111,68,105,115,97,98,108,101,40,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,76,105,115,116,101,110,32,116,111,32,111,112,101,110,32,115,105,103,110,97,108,115,32,102,114,111,109,32,111,116,104,101,114,115,92,110,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,50,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,79,80,69,78,44,32,95,116,104,105,115,50,46,100,111,79,112,101,110,41,59,32,47,47,32,76,105,115,116,101,110,32,116,111,32,99,108,111,115,101,32,115,105,103,110,97,108,115,32,102,114,111,109,32,111,116,104,101,114,115,92,110,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,50,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,79,83,69,44,32,95,116,104,105,115,50,46,100,111,67,108,111,115,101,41,59,32,47,47,32,76,105,115,116,101,110,32,116,111,32,100,105,115,97,98,108,101,32,115,105,103,110,97,108,115,32,102,114,111,109,32,111,116,104,101,114,115,92,110,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,50,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,68,73,83,65,66,76,69,44,32,95,116,104,105,115,50,46,100,111,68,105,115,97,98,108,101,41,59,32,47,47,32,76,105,115,116,101,110,32,116,111,32,101,110,97,98,108,101,32,115,105,103,110,97,108,115,32,102,114,111,109,32,111,116,104,101,114,115,92,110,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,50,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,44,32,95,116,104,105,115,50,46,100,111,69,110,97,98,108,101,41,59,32,47,47,32,73,110,105,116,105,97,108,108,121,32,115,104,111,119,32,116,111,111,108,116,105,112,63,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,50,46,108,111,99,97,108,83,104,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,36,116,111,111,108,112,111,112,46,115,104,111,119,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,103,101,116,67,111,109,112,111,110,101,110,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,67,111,109,112,111,110,101,110,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,79,118,101,114,114,105,100,100,101,110,32,98,121,32,66,80,111,112,111,118,101,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,104,101,108,112,101,114,115,95,98,118,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,86,84,111,111,108,116,105,112,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,112,100,97,116,101,67,111,110,116,101,110,116,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,67,111,110,116,101,110,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,79,118,101,114,114,105,100,100,101,110,32,98,121,32,66,80,111,112,111,118,101,114,92,110,32,32,32,32,32,32,47,47,32,84,111,111,108,116,105,112,58,32,68,101,102,97,117,108,116,32,115,108,111,116,32,105,115,32,96,116,105,116,108,101,96,92,110,32,32,32,32,32,32,47,47,32,80,111,112,111,118,101,114,58,32,68,101,102,97,117,108,116,32,115,108,111,116,32,105,115,32,96,99,111,110,116,101,110,116,96,44,32,96,116,105,116,108,101,96,32,115,108,111,116,32,105,115,32,116,105,116,108,101,92,110,32,32,32,32,32,32,47,47,32,87,101,32,112,97,115,115,32,97,32,115,99,111,112,101,100,32,115,108,111,116,32,102,117,110,99,116,105,111,110,32,114,101,102,101,114,101,110,99,101,32,98,121,32,100,101,102,97,117,108,116,32,40,86,117,101,32,118,50,46,54,120,41,92,110,32,32,32,32,32,32,47,47,32,65,110,100,32,112,97,115,115,32,116,104,101,32,116,105,116,108,101,32,112,114,111,112,32,97,115,32,97,32,102,97,108,108,98,97,99,107,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,84,105,116,108,101,40,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,32,124,124,32,116,104,105,115,46,116,105,116,108,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,102,111,114,32,96,117,112,100,97,116,101,67,111,110,116,101,110,116,40,41,96,92,110,32,32,32,32,115,101,116,84,105,116,108,101,58,32,102,117,110,99,116,105,111,110,32,115,101,116,84,105,116,108,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,118,97,108,117,101,41,32,63,32,39,39,32,58,32,118,97,108,117,101,59,32,47,47,32,87,101,32,111,110,108,121,32,117,112,100,97,116,101,32,116,104,101,32,118,97,108,117,101,32,105,102,32,105,116,32,104,97,115,32,99,104,97,110,103,101,100,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,111,99,97,108,84,105,116,108,101,32,33,61,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,84,105,116,108,101,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,67,111,110,116,101,110,116,58,32,102,117,110,99,116,105,111,110,32,115,101,116,67,111,110,116,101,110,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,118,97,108,117,101,41,32,63,32,39,39,32,58,32,118,97,108,117,101,59,32,47,47,32,87,101,32,111,110,108,121,32,117,112,100,97,116,101,32,116,104,101,32,118,97,108,117,101,32,105,102,32,105,116,32,104,97,115,32,99,104,97,110,103,101,100,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,111,99,97,108,67,111,110,116,101,110,116,32,33,61,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,67,111,110,116,101,110,116,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,45,45,45,32,84,101,109,112,108,97,116,101,32,101,118,101,110,116,32,104,97,110,100,108,101,114,115,32,45,45,45,92,110,32,32,32,32,111,110,83,104,111,119,58,32,102,117,110,99,116,105,111,110,32,111,110,83,104,111,119,40,98,118,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,108,97,99,101,104,111,108,100,101,114,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,44,32,98,118,69,118,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,98,118,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,33,98,118,69,118,101,110,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,83,104,111,119,110,58,32,102,117,110,99,116,105,111,110,32,111,110,83,104,111,119,110,40,98,118,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,105,112,32,105,115,32,110,111,119,32,115,104,111,119,105,110,103,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,44,32,98,118,69,118,101,110,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,72,105,100,101,58,32,102,117,110,99,116,105,111,110,32,111,110,72,105,100,101,40,98,118,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,44,32,98,118,69,118,101,110,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,72,105,100,100,101,110,58,32,102,117,110,99,116,105,111,110,32,111,110,72,105,100,100,101,110,40,98,118,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,105,112,32,105,115,32,110,111,32,108,111,110,103,101,114,32,115,104,111,119,105,110,103,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,44,32,98,118,69,118,101,110,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,68,105,115,97,98,108,101,100,58,32,102,117,110,99,116,105,111,110,32,111,110,68,105,115,97,98,108,101,100,40,98,118,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,114,101,118,101,110,116,32,112,111,115,115,105,98,108,101,32,101,110,100,108,101,115,115,32,108,111,111,112,32,105,102,32,117,115,101,114,32,109,105,115,116,97,107,101,110,108,121,92,110,32,32,32,32,32,32,47,47,32,102,105,114,101,115,32,96,100,105,115,97,98,108,101,100,96,32,105,110,115,116,101,97,100,32,111,102,32,96,100,105,115,97,98,108,101,96,92,110,32,32,32,32,32,32,105,102,32,40,98,118,69,118,101,110,116,32,38,38,32,98,118,69,118,101,110,116,46,116,121,112,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,68,73,83,65,66,76,69,68,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,68,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,68,73,83,65,66,76,69,68,44,32,98,118,69,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,69,110,97,98,108,101,100,58,32,102,117,110,99,116,105,111,110,32,111,110,69,110,97,98,108,101,100,40,98,118,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,114,101,118,101,110,116,32,112,111,115,115,105,98,108,101,32,101,110,100,108,101,115,115,32,108,111,111,112,32,105,102,32,117,115,101,114,32,109,105,115,116,97,107,101,110,108,121,92,110,32,32,32,32,32,32,47,47,32,102,105,114,101,115,32,96,101,110,97,98,108,101,100,96,32,105,110,115,116,101,97,100,32,111,102,32,96,101,110,97,98,108,101,96,92,110,32,32,32,32,32,32,105,102,32,40,98,118,69,118,101,110,116,32,38,38,32,98,118,69,118,101,110,116,46,116,121,112,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,68,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,68,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,68,44,32,98,118,69,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,45,45,45,32,76,111,99,97,108,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,32,45,45,45,92,110,32,32,32,32,100,111,79,112,101,110,58,32,102,117,110,99,116,105,111,110,32,100,111,79,112,101,110,40,41,32,123,92,110,32,32,32,32,32,32,33,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,38,38,32,116,104,105,115,46,36,95,116,111,111,108,112,111,112,32,38,38,32,116,104,105,115,46,36,95,116,111,111,108,112,111,112,46,115,104,111,119,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,111,67,108,111,115,101,58,32,102,117,110,99,116,105,111,110,32,100,111,67,108,111,115,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,83,104,111,119,32,38,38,32,116,104,105,115,46,36,95,116,111,111,108,112,111,112,32,38,38,32,116,104,105,115,46,36,95,116,111,111,108,112,111,112,46,104,105,100,101,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,111,68,105,115,97,98,108,101,58,32,102,117,110,99,116,105,111,110,32,100,111,68,105,115,97,98,108,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,116,111,111,108,112,111,112,32,38,38,32,116,104,105,115,46,36,95,116,111,111,108,112,111,112,46,100,105,115,97,98,108,101,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,111,69,110,97,98,108,101,58,32,102,117,110,99,116,105,111,110,32,100,111,69,110,97,98,108,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,116,111,111,108,112,111,112,32,38,38,32,116,104,105,115,46,36,95,116,111,111,108,112,111,112,46,101,110,97,98,108,101,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,47,47,32,65,108,119,97,121,115,32,114,101,110,100,101,114,115,32,97,32,99,111,109,109,101,110,116,32,110,111,100,101,92,110,32,32,32,32,47,47,32,84,79,68,79,58,92,110,32,32,32,32,47,47,32,32,32,70,117,116,117,114,101,58,32,80,111,115,115,105,98,108,121,32,114,101,110,100,101,114,32,97,32,116,97,114,103,101,116,32,115,108,111,116,32,40,115,105,110,103,108,101,32,114,111,111,116,32,101,108,101,109,101,110,116,41,92,110,32,32,32,32,47,47,32,32,32,119,104,105,99,104,32,119,101,32,99,97,110,32,97,112,112,108,121,32,116,104,101,32,108,105,115,116,101,110,101,114,115,32,116,111,32,40,112,97,115,115,32,96,116,104,105,115,46,36,101,108,96,32,116,111,32,66,86,84,111,111,108,116,105,112,41,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,116,111,111,108,116,105,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,84,114,97,110,115,105,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,86,84,114,97,110,115,105,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,47,47,32,71,101,110,101,114,105,99,32,66,111,111,116,115,116,114,97,112,32,118,52,32,102,97,100,101,32,40,110,111,45,102,97,100,101,41,32,116,114,97,110,115,105,116,105,111,110,32,99,111,109,112,111,110,101,110,116,92,110,47,47,92,110,47,47,32,65,115,115,117,109,101,115,32,116,104,97,116,32,96,115,104,111,119,96,32,99,108,97,115,115,32,105,115,32,110,111,116,32,114,101,113,117,105,114,101,100,32,119,104,101,110,92,110,47,47,32,116,104,101,32,116,114,97,110,115,105,116,105,111,110,32,104,97,115,32,102,105,110,105,115,104,101,100,32,116,104,101,32,101,110,116,101,114,32,116,114,97,110,115,105,116,105,111,110,92,110,47,47,32,40,115,104,111,119,32,97,110,100,32,102,97,100,101,32,99,108,97,115,115,101,115,32,97,114,101,32,111,110,108,121,32,97,112,112,108,105,101,100,32,100,117,114,105,110,103,32,116,114,97,110,115,105,116,105,111,110,41,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,78,79,95,70,65,68,69,95,80,82,79,80,83,32,61,32,123,92,110,32,32,110,97,109,101,58,32,39,39,44,92,110,32,32,101,110,116,101,114,67,108,97,115,115,58,32,39,39,44,92,110,32,32,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,58,32,39,39,44,92,110,32,32,101,110,116,101,114,84,111,67,108,97,115,115,58,32,39,115,104,111,119,39,44,92,110,32,32,108,101,97,118,101,67,108,97,115,115,58,32,39,115,104,111,119,39,44,92,110,32,32,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,58,32,39,39,44,92,110,32,32,108,101,97,118,101,84,111,67,108,97,115,115,58,32,39,39,92,110,125,59,92,110,92,110,118,97,114,32,70,65,68,69,95,80,82,79,80,83,32,61,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,78,79,95,70,65,68,69,95,80,82,79,80,83,41,44,32,123,125,44,32,123,92,110,32,32,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,58,32,39,102,97,100,101,39,44,92,110,32,32,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,58,32,39,102,97,100,101,39,92,110,125,41,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,47,47,32,72,97,115,32,110,111,32,101,102,102,101,99,116,32,105,102,32,96,116,114,97,110,115,45,112,114,111,112,115,96,32,112,114,111,118,105,100,101,100,92,110,32,32,97,112,112,101,97,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,67,97,110,32,98,101,32,111,118,101,114,114,105,100,100,101,110,32,98,121,32,117,115,101,114,32,115,117,112,112,108,105,101,100,32,96,116,114,97,110,115,45,112,114,111,112,115,96,92,110,32,32,109,111,100,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,79,110,108,121,32,97,112,112,108,105,99,97,98,108,101,32,116,111,32,116,104,101,32,98,117,105,108,116,32,105,110,32,116,114,97,110,115,105,116,105,111,110,92,110,32,32,47,47,32,72,97,115,32,110,111,32,101,102,102,101,99,116,32,105,102,32,96,116,114,97,110,115,45,112,114,111,112,115,96,32,112,114,111,118,105,100,101,100,92,110,32,32,110,111,70,97,100,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,70,111,114,32,117,115,101,114,32,115,117,112,112,108,105,101,100,32,116,114,97,110,115,105,116,105,111,110,115,32,40,105,102,32,110,101,101,100,101,100,41,92,110,32,32,116,114,97,110,115,80,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,41,92,110,125,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,86,84,114,97,110,115,105,116,105,111,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,84,82,65,78,83,73,84,73,79,78,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,59,92,110,32,32,32,32,118,97,114,32,116,114,97,110,115,80,114,111,112,115,32,61,32,112,114,111,112,115,46,116,114,97,110,115,80,114,111,112,115,59,92,110,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,116,114,97,110,115,80,114,111,112,115,41,41,32,123,92,110,32,32,32,32,32,32,116,114,97,110,115,80,114,111,112,115,32,61,32,112,114,111,112,115,46,110,111,70,97,100,101,32,63,32,78,79,95,70,65,68,69,95,80,82,79,80,83,32,58,32,70,65,68,69,95,80,82,79,80,83,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,46,97,112,112,101,97,114,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,116,104,101,32,97,112,112,101,97,114,32,99,108,97,115,115,101,115,32,116,111,32,101,113,117,97,108,32,116,104,101,32,101,110,116,101,114,32,99,108,97,115,115,101,115,92,110,32,32,32,32,32,32,32,32,116,114,97,110,115,80,114,111,112,115,32,61,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,114,97,110,115,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,112,112,101,97,114,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,112,112,101,97,114,67,108,97,115,115,58,32,116,114,97,110,115,80,114,111,112,115,46,101,110,116,101,114,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,97,112,112,101,97,114,65,99,116,105,118,101,67,108,97,115,115,58,32,116,114,97,110,115,80,114,111,112,115,46,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,97,112,112,101,97,114,84,111,67,108,97,115,115,58,32,116,114,97,110,115,80,114,111,112,115,46,101,110,116,101,114,84,111,67,108,97,115,115,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,114,97,110,115,80,114,111,112,115,32,61,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,109,111,100,101,58,32,112,114,111,112,115,46,109,111,100,101,92,110,32,32,32,32,125,44,32,116,114,97,110,115,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,97,108,119,97,121,115,32,110,101,101,100,32,96,99,115,115,96,32,116,114,117,101,92,110,32,32,32,32,32,32,99,115,115,58,32,116,114,117,101,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,116,114,97,110,115,105,116,105,111,110,39,44,32,47,47,32,65,110,121,32,116,114,97,110,115,105,116,105,111,110,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,32,119,105,108,108,32,103,101,116,32,109,101,114,103,101,100,32,104,101,114,101,92,110,32,32,32,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,116,114,97,110,115,80,114,111,112,115,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,114,97,110,115,105,116,105,111,110,47,98,118,45,116,114,97,110,115,105,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,114,97,110,115,112,111,114,116,101,114,47,116,114,97,110,115,112,111,114,116,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,114,97,110,115,112,111,114,116,101,114,47,116,114,97,110,115,112,111,114,116,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,84,114,97,110,115,112,111,114,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,86,84,114,97,110,115,112,111,114,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,99,111,109,112,111,110,101,110,116,115,32,45,45,45,92,110,47,47,32,66,86,84,114,97,110,115,112,111,114,116,101,114,47,66,86,84,114,97,110,115,112,111,114,116,101,114,84,97,114,103,101,116,58,92,110,47,47,92,110,47,47,32,83,105,110,103,108,101,32,114,111,111,116,32,110,111,100,101,32,112,111,114,116,97,108,105,110,103,32,111,102,32,99,111,110,116,101,110,116,44,32,119,104,105,99,104,32,114,101,116,97,105,110,115,32,112,97,114,101,110,116,47,99,104,105,108,100,32,104,105,101,114,97,114,99,104,121,92,110,47,47,32,85,110,108,105,107,101,32,80,111,114,116,97,108,45,86,117,101,32,119,104,101,114,101,32,112,111,114,116,97,108,101,100,32,99,111,110,116,101,110,116,32,105,115,32,110,111,32,108,111,110,103,101,114,32,97,32,100,101,115,99,101,110,100,101,110,116,32,111,102,32,105,116,115,92,110,47,47,32,105,110,116,101,110,100,101,100,32,112,97,114,101,110,116,32,99,111,109,112,111,110,101,110,116,115,92,110,47,47,92,110,47,47,32,80,114,105,118,97,116,101,32,99,111,109,112,111,110,101,110,116,115,32,102,111,114,32,117,115,101,32,98,121,32,84,111,111,108,116,105,112,115,44,32,80,111,112,111,118,101,114,115,32,97,110,100,32,77,111,100,97,108,115,92,110,47,47,92,110,47,47,32,66,97,115,101,100,32,111,110,32,118,117,101,45,115,105,109,112,108,101,45,112,111,114,116,97,108,92,110,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,76,105,110,117,115,66,111,114,103,47,118,117,101,45,115,105,109,112,108,101,45,112,111,114,116,97,108,92,110,47,47,32,84,114,97,110,115,112,111,114,116,101,114,32,116,97,114,103,101,116,32,117,115,101,100,32,98,121,32,66,86,84,114,97,110,115,112,111,114,116,101,114,92,110,47,47,32,83,117,112,112,111,114,116,115,32,111,110,108,121,32,97,32,115,105,110,103,108,101,32,114,111,111,116,32,101,108,101,109,101,110,116,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,86,84,114,97,110,115,112,111,114,116,101,114,84,97,114,103,101,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,47,47,32,65,115,32,97,110,32,97,98,115,116,114,97,99,116,32,99,111,109,112,111,110,101,110,116,44,32,105,116,32,100,111,101,115,110,39,116,32,97,112,112,101,97,114,32,105,110,32,116,104,101,32,36,112,97,114,101,110,116,32,99,104,97,105,110,32,111,102,92,110,32,32,47,47,32,99,111,109,112,111,110,101,110,116,115,44,32,119,104,105,99,104,32,109,101,97,110,115,32,116,104,101,32,110,101,120,116,32,112,97,114,101,110,116,32,111,102,32,97,110,121,32,99,111,109,112,111,110,101,110,116,32,114,101,110,100,101,114,101,100,32,105,110,115,105,100,101,92,110,32,32,47,47,32,111,102,32,116,104,105,115,32,111,110,101,32,119,105,108,108,32,98,101,32,116,104,101,32,112,97,114,101,110,116,32,102,114,111,109,32,119,104,105,99,104,32,105,115,32,119,97,115,32,112,111,114,116,97,108,39,100,92,110,32,32,97,98,115,116,114,97,99,116,58,32,116,114,117,101,44,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,84,82,65,78,83,80,79,82,84,69,82,95,84,65,82,71,69,84,44,92,110,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,47,47,32,69,118,101,110,32,116,104,111,117,103,104,32,119,101,32,111,110,108,121,32,115,117,112,112,111,114,116,32,97,32,115,105,110,103,108,101,32,114,111,111,116,32,101,108,101,109,101,110,116,44,92,110,32,32,32,32,47,47,32,86,78,111,100,101,115,32,97,114,101,32,97,108,119,97,121,115,32,112,97,115,115,101,100,32,97,115,32,97,110,32,97,114,114,97,121,92,110,32,32,32,32,110,111,100,101,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,70,85,78,67,84,73,79,78,41,92,110,32,32,125,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,118,109,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,117,112,100,97,116,101,100,78,111,100,101,115,58,32,118,109,46,110,111,100,101,115,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,100,101,115,116,114,111,121,101,100,58,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,101,100,40,41,32,123,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,114,101,109,111,118,101,78,111,100,101,41,40,116,104,105,115,46,36,101,108,41,59,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,117,112,100,97,116,101,100,78,111,100,101,115,32,61,32,116,104,105,115,46,117,112,100,97,116,101,100,78,111,100,101,115,59,92,110,32,32,32,32,118,97,114,32,36,110,111,100,101,115,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,117,112,100,97,116,101,100,78,111,100,101,115,41,32,63,32,117,112,100,97,116,101,100,78,111,100,101,115,40,123,125,41,32,58,32,117,112,100,97,116,101,100,78,111,100,101,115,59,92,110,32,32,32,32,36,110,111,100,101,115,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,99,111,110,99,97,116,41,40,36,110,111,100,101,115,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,92,110,32,32,32,32,105,102,32,40,36,110,111,100,101,115,32,38,38,32,36,110,111,100,101,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,33,36,110,111,100,101,115,91,48,93,46,116,101,120,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,36,110,111,100,101,115,91,48,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,125,92,110,125,41,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,47,47,32,83,116,114,105,110,103,58,32,67,83,83,32,115,101,108,101,99,116,111,114,44,92,110,32,32,47,47,32,72,84,77,76,69,108,101,109,101,110,116,58,32,69,108,101,109,101,110,116,32,114,101,102,101,114,101,110,99,101,92,110,32,32,47,47,32,77,97,105,110,108,121,32,110,101,101,100,101,100,32,102,111,114,32,116,111,111,108,116,105,112,115,47,112,111,112,111,118,101,114,115,32,105,110,115,105,100,101,32,109,111,100,97,108,115,92,110,32,32,99,111,110,116,97,105,110,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,91,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,72,84,77,76,69,108,101,109,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,44,32,39,98,111,100,121,39,41,44,92,110,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,84,104,105,115,32,115,104,111,117,108,100,32,98,101,32,115,101,116,32,116,111,32,109,97,116,99,104,32,116,104,101,32,114,111,111,116,32,101,108,101,109,101,110,116,32,116,121,112,101,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,92,110,125,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,86,84,114,97,110,115,112,111,114,116,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,84,82,65,78,83,80,79,82,84,69,82,44,92,110,32,32,109,105,120,105,110,115,58,32,91,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,100,105,115,97,98,108,101,100,58,32,123,92,110,32,32,32,32,32,32,105,109,109,101,100,105,97,116,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,40,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,63,32,116,104,105,115,46,117,110,109,111,117,110,116,84,97,114,103,101,116,40,41,32,58,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,109,111,117,110,116,84,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,67,114,101,97,116,101,32,112,114,105,118,97,116,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,115,92,110,32,32,32,32,116,104,105,115,46,36,95,100,101,102,97,117,108,116,70,110,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,95,116,97,114,103,101,116,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,77,111,117,110,116,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,77,111,117,110,116,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,109,111,117,110,116,84,97,114,103,101,116,40,41,59,92,110,32,32,125,44,92,110,32,32,117,112,100,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,87,101,32,110,101,101,100,32,116,111,32,109,97,107,101,32,115,117,114,101,32,116,104,97,116,32,97,108,108,32,99,104,105,108,100,114,101,110,32,104,97,118,101,32,99,111,109,112,108,101,116,101,100,32,117,112,100,97,116,105,110,103,92,110,32,32,32,32,47,47,32,98,101,102,111,114,101,32,114,101,110,100,101,114,105,110,103,32,105,110,32,116,104,101,32,116,97,114,103,101,116,92,110,32,32,32,32,47,47,32,96,118,117,101,45,115,105,109,112,108,101,45,112,111,114,116,97,108,96,32,104,97,115,32,116,104,101,32,116,104,105,115,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,44,92,110,32,32,32,32,47,47,32,119,104,105,108,101,32,96,112,111,114,116,97,108,45,118,117,101,96,32,100,111,101,115,110,39,116,92,110,32,32,32,32,47,47,32,74,117,115,116,32,116,114,121,105,110,103,32,116,111,32,115,101,101,32,105,102,32,116,104,101,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,100,101,108,97,121,32,105,115,32,114,101,113,117,105,114,101,100,32,111,114,32,110,111,116,92,110,32,32,32,32,47,47,32,83,105,110,99,101,32,97,108,108,32,115,108,111,116,115,32,105,110,32,86,117,101,32,50,46,54,46,120,32,97,114,101,32,97,108,119,97,121,115,32,102,117,110,99,116,105,111,110,115,92,110,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,84,97,114,103,101,116,40,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,117,110,109,111,117,110,116,84,97,114,103,101,116,40,41,59,92,110,32,32,32,32,116,104,105,115,46,36,95,100,101,102,97,117,108,116,70,110,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,71,101,116,32,116,104,101,32,101,108,101,109,101,110,116,32,119,104,105,99,104,32,116,104,101,32,116,97,114,103,101,116,32,115,104,111,117,108,100,32,98,101,32,97,112,112,101,110,100,101,100,32,116,111,92,110,32,32,32,32,103,101,116,67,111,110,116,97,105,110,101,114,58,32,102,117,110,99,116,105,111,110,32,103,101,116,67,111,110,116,97,105,110,101,114,40,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,73,83,95,66,82,79,87,83,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,116,97,105,110,101,114,32,61,32,116,104,105,115,46,99,111,110,116,97,105,110,101,114,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,83,116,114,105,110,103,41,40,99,111,110,116,97,105,110,101,114,41,32,63,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,115,101,108,101,99,116,41,40,99,111,110,116,97,105,110,101,114,41,32,58,32,99,111,110,116,97,105,110,101,114,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,77,111,117,110,116,32,116,104,101,32,116,97,114,103,101,116,92,110,32,32,32,32,109,111,117,110,116,84,97,114,103,101,116,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,84,97,114,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,36,95,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,36,99,111,110,116,97,105,110,101,114,32,61,32,116,104,105,115,46,103,101,116,67,111,110,116,97,105,110,101,114,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,36,99,111,110,116,97,105,110,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,36,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,39,100,105,118,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,36,99,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,36,101,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,116,97,114,103,101,116,32,61,32,110,101,119,32,66,86,84,114,97,110,115,112,111,114,116,101,114,84,97,114,103,101,116,40,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,58,32,36,101,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,58,32,116,104,105,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,68,97,116,97,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,105,116,105,97,108,32,110,111,100,101,115,32,116,111,32,98,101,32,114,101,110,100,101,114,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,115,58,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,99,111,110,99,97,116,41,40,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,85,112,100,97,116,101,32,116,104,101,32,99,111,110,116,101,110,116,32,111,102,32,116,104,101,32,116,97,114,103,101,116,92,110,32,32,32,32,117,112,100,97,116,101,84,97,114,103,101,116,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,84,97,114,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,73,83,95,66,82,79,87,83,69,82,32,38,38,32,116,104,105,115,46,36,95,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,70,110,32,61,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,58,32,111,110,108,121,32,97,112,112,108,105,99,97,98,108,101,32,105,110,32,86,117,101,32,50,46,53,46,120,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,101,102,97,117,108,116,70,110,32,38,38,32,116,104,105,115,46,36,95,100,101,102,97,117,108,116,70,110,32,33,61,61,32,100,101,102,97,117,108,116,70,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,117,112,100,97,116,101,32,116,104,101,32,116,97,114,103,101,116,32,99,111,109,112,111,110,101,110,116,32,105,102,32,116,104,101,32,115,99,111,112,101,100,32,115,108,111,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,102,117,110,99,116,105,111,110,32,105,115,32,97,32,102,114,101,115,104,32,111,110,101,46,32,84,104,101,32,110,101,119,32,115,108,111,116,32,115,121,110,116,97,120,32,40,115,105,110,99,101,32,86,117,101,32,50,46,54,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,99,97,110,32,99,97,99,104,101,32,117,110,99,104,97,110,103,101,100,32,115,108,111,116,32,102,117,110,99,116,105,111,110,115,32,97,110,100,32,119,101,32,119,97,110,116,32,116,111,32,114,101,115,112,101,99,116,32,116,104,97,116,32,104,101,114,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,116,97,114,103,101,116,46,117,112,100,97,116,101,100,78,111,100,101,115,32,61,32,100,101,102,97,117,108,116,70,110,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,100,101,102,97,117,108,116,70,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,97,108,115,111,32,110,101,101,100,32,116,111,32,98,101,32,98,97,99,107,32,99,111,109,112,97,116,105,98,108,101,32,119,105,116,104,32,110,111,110,45,115,99,111,112,101,100,32,100,101,102,97,117,108,116,32,115,108,111,116,32,40,105,46,101,46,32,50,46,53,46,120,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,116,97,114,103,101,116,46,117,112,100,97,116,101,100,78,111,100,101,115,32,61,32,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,85,112,100,97,116,101,32,116,104,101,32,115,99,111,112,101,100,32,115,108,111,116,32,102,117,110,99,116,105,111,110,32,99,97,99,104,101,92,110,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,100,101,102,97,117,108,116,70,110,32,61,32,100,101,102,97,117,108,116,70,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,85,110,109,111,117,110,116,32,116,104,101,32,116,97,114,103,101,116,92,110,32,32,32,32,117,110,109,111,117,110,116,84,97,114,103,101,116,58,32,102,117,110,99,116,105,111,110,32,117,110,109,111,117,110,116,84,97,114,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,116,97,114,103,101,116,32,38,38,32,116,104,105,115,46,36,95,116,97,114,103,101,116,46,36,100,101,115,116,114,111,121,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,116,97,114,103,101,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,47,47,32,84,104,105,115,32,99,111,109,112,111,110,101,110,116,32,104,97,115,32,110,111,32,114,111,111,116,32,101,108,101,109,101,110,116,44,32,115,111,32,111,110,108,121,32,97,32,115,105,110,103,108,101,32,86,78,111,100,101,32,105,115,32,97,108,108,111,119,101,100,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,110,111,100,101,115,32,61,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,99,111,110,99,97,116,41,40,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,36,110,111,100,101,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,33,36,110,111,100,101,115,91,48,93,46,116,101,120,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,110,111,100,101,115,91,48,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,114,97,110,115,112,111,114,116,101,114,47,116,114,97,110,115,112,111,114,116,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,108,97,115,115,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,108,97,115,115,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,76,65,83,83,95,78,65,77,69,95,70,65,68,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,76,65,83,83,95,78,65,77,69,95,70,65,68,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,76,65,83,83,95,78,65,77,69,95,83,72,79,87,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,76,65,83,83,95,78,65,77,69,95,83,72,79,87,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,67,76,65,83,83,95,78,65,77,69,95,83,72,79,87,32,61,32,39,115,104,111,119,39,59,92,110,118,97,114,32,67,76,65,83,83,95,78,65,77,69,95,70,65,68,69,32,61,32,39,102,97,100,101,39,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,108,97,115,115,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,65,76,69,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,65,76,69,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,65,83,80,69,67,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,65,83,80,69,67,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,65,86,65,84,65,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,65,86,65,84,65,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,65,86,65,84,65,82,95,71,82,79,85,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,65,86,65,84,65,82,95,71,82,79,85,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,66,65,68,71,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,66,65,68,71,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,66,82,69,65,68,67,82,85,77,66,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,66,82,69,65,68,67,82,85,77,66,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,66,82,69,65,68,67,82,85,77,66,95,73,84,69,77,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,66,82,69,65,68,67,82,85,77,66,95,73,84,69,77,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,66,82,69,65,68,67,82,85,77,66,95,76,73,78,75,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,66,82,69,65,68,67,82,85,77,66,95,76,73,78,75,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,66,85,84,84,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,66,85,84,84,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,66,85,84,84,79,78,95,67,76,79,83,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,66,85,84,84,79,78,95,67,76,79,83,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,66,85,84,84,79,78,95,71,82,79,85,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,66,85,84,84,79,78,95,71,82,79,85,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,66,85,84,84,79,78,95,84,79,79,76,66,65,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,66,85,84,84,79,78,95,84,79,79,76,66,65,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,65,76,69,78,68,65,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,65,76,69,78,68,65,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,65,82,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,65,82,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,65,82,68,95,66,79,68,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,65,82,68,95,66,79,68,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,65,82,68,95,70,79,79,84,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,65,82,68,95,70,79,79,84,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,65,82,68,95,71,82,79,85,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,65,82,68,95,71,82,79,85,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,65,82,68,95,72,69,65,68,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,65,82,68,95,72,69,65,68,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,65,82,68,95,73,77,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,65,82,68,95,73,77,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,65,82,68,95,73,77,71,95,76,65,90,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,65,82,68,95,73,77,71,95,76,65,90,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,65,82,68,95,83,85,66,95,84,73,84,76,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,65,82,68,95,83,85,66,95,84,73,84,76,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,65,82,68,95,84,69,88,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,65,82,68,95,84,69,88,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,65,82,68,95,84,73,84,76,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,65,82,68,95,84,73,84,76,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,65,82,79,85,83,69,76,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,65,82,79,85,83,69,76,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,65,82,79,85,83,69,76,95,83,76,73,68,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,65,82,79,85,83,69,76,95,83,76,73,68,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,79,76,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,79,76,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,79,76,76,65,80,83,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,79,76,76,65,80,83,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,79,76,76,65,80,83,69,95,72,69,76,80,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,79,76,76,65,80,83,69,95,72,69,76,80,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,67,79,78,84,65,73,78,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,67,79,78,84,65,73,78,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,68,82,79,80,68,79,87,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,68,82,79,80,68,79,87,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,68,82,79,80,68,79,87,78,95,68,73,86,73,68,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,68,82,79,80,68,79,87,78,95,68,73,86,73,68,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,68,82,79,80,68,79,87,78,95,70,79,82,77,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,68,82,79,80,68,79,87,78,95,70,79,82,77,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,68,82,79,80,68,79,87,78,95,71,82,79,85,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,68,82,79,80,68,79,87,78,95,71,82,79,85,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,68,82,79,80,68,79,87,78,95,72,69,65,68,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,68,82,79,80,68,79,87,78,95,72,69,65,68,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,68,82,79,80,68,79,87,78,95,73,84,69,77,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,68,82,79,80,68,79,87,78,95,73,84,69,77,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,68,82,79,80,68,79,87,78,95,73,84,69,77,95,66,85,84,84,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,68,82,79,80,68,79,87,78,95,73,84,69,77,95,66,85,84,84,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,68,82,79,80,68,79,87,78,95,84,69,88,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,68,82,79,80,68,79,87,78,95,84,69,88,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,69,77,66,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,69,77,66,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,66,85,84,84,79,78,95,76,65,66,69,76,95,67,79,78,84,82,79,76,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,66,85,84,84,79,78,95,76,65,66,69,76,95,67,79,78,84,82,79,76,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,67,72,69,67,75,66,79,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,67,72,69,67,75,66,79,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,67,72,69,67,75,66,79,88,95,71,82,79,85,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,67,72,69,67,75,66,79,88,95,71,82,79,85,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,68,65,84,65,76,73,83,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,68,65,84,65,76,73,83,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,68,65,84,69,80,73,67,75,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,68,65,84,69,80,73,67,75,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,70,73,76,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,70,73,76,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,71,82,79,85,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,71,82,79,85,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,73,78,80,85,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,73,78,80,85,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,73,78,86,65,76,73,68,95,70,69,69,68,66,65,67,75,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,73,78,86,65,76,73,68,95,70,69,69,68,66,65,67,75,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,82,65,68,73,79,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,82,65,68,73,79,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,82,65,68,73,79,95,71,82,79,85,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,82,65,68,73,79,95,71,82,79,85,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,82,65,84,73,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,82,65,84,73,78,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,82,65,84,73,78,71,95,83,84,65,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,82,65,84,73,78,71,95,83,84,65,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,82,79,87,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,82,79,87,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,83,69,76,69,67,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,83,69,76,69,67,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,83,69,76,69,67,84,95,79,80,84,73,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,83,69,76,69,67,84,95,79,80,84,73,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,83,69,76,69,67,84,95,79,80,84,73,79,78,95,71,82,79,85,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,83,69,76,69,67,84,95,79,80,84,73,79,78,95,71,82,79,85,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,83,80,73,78,66,85,84,84,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,83,80,73,78,66,85,84,84,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,84,65,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,84,65,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,84,65,71,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,84,65,71,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,84,69,88,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,84,69,88,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,84,69,88,84,65,82,69,65,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,84,69,88,84,65,82,69,65,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,84,73,77,69,80,73,67,75,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,84,73,77,69,80,73,67,75,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,70,79,82,77,95,86,65,76,73,68,95,70,69,69,68,66,65,67,75,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,70,79,82,77,95,86,65,76,73,68,95,70,69,69,68,66,65,67,75,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,73,67,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,73,67,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,73,67,79,78,83,84,65,67,75,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,73,67,79,78,83,84,65,67,75,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,73,67,79,78,95,66,65,83,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,73,67,79,78,95,66,65,83,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,73,77,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,73,77,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,73,77,71,95,76,65,90,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,73,77,71,95,76,65,90,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,65,68,68,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,65,68,68,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,65,80,80,69,78,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,65,80,80,69,78,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,80,82,69,80,69,78,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,80,82,69,80,69,78,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,84,69,88,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,84,69,88,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,74,85,77,66,79,84,82,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,74,85,77,66,79,84,82,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,76,73,78,75,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,76,73,78,75,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,76,73,83,84,95,71,82,79,85,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,76,73,83,84,95,71,82,79,85,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,76,73,83,84,95,71,82,79,85,80,95,73,84,69,77,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,76,73,83,84,95,71,82,79,85,80,95,73,84,69,77,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,77,69,68,73,65,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,77,69,68,73,65,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,77,69,68,73,65,95,65,83,73,68,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,77,69,68,73,65,95,65,83,73,68,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,77,69,68,73,65,95,66,79,68,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,77,69,68,73,65,95,66,79,68,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,77,79,68,65,76,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,77,79,68,65,76,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,77,83,71,95,66,79,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,77,83,71,95,66,79,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,78,65,86,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,78,65,86,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,78,65,86,66,65,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,78,65,86,66,65,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,78,65,86,66,65,82,95,66,82,65,78,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,78,65,86,66,65,82,95,66,82,65,78,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,78,65,86,66,65,82,95,78,65,86,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,78,65,86,66,65,82,95,78,65,86,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,78,65,86,66,65,82,95,84,79,71,71,76,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,78,65,86,66,65,82,95,84,79,71,71,76,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,78,65,86,95,70,79,82,77,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,78,65,86,95,70,79,82,77,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,78,65,86,95,73,84,69,77,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,78,65,86,95,73,84,69,77,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,78,65,86,95,73,84,69,77,95,68,82,79,80,68,79,87,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,78,65,86,95,73,84,69,77,95,68,82,79,80,68,79,87,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,78,65,86,95,84,69,88,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,78,65,86,95,84,69,88,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,79,86,69,82,76,65,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,79,86,69,82,76,65,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,80,65,71,73,78,65,84,73,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,80,65,71,73,78,65,84,73,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,80,65,71,73,78,65,84,73,79,78,95,78,65,86,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,80,65,71,73,78,65,84,73,79,78,95,78,65,86,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,80,79,80,79,86,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,80,79,80,79,86,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,80,79,80,79,86,69,82,95,72,69,76,80,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,80,79,80,79,86,69,82,95,72,69,76,80,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,80,79,80,79,86,69,82,95,84,69,77,80,76,65,84,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,80,79,80,79,86,69,82,95,84,69,77,80,76,65,84,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,80,79,80,80,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,80,79,80,80,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,80,82,79,71,82,69,83,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,80,82,79,71,82,69,83,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,80,82,79,71,82,69,83,83,95,66,65,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,80,82,79,71,82,69,83,83,95,66,65,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,82,79,87,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,82,79,87,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,83,73,68,69,66,65,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,83,73,68,69,66,65,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,83,75,69,76,69,84,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,83,75,69,76,69,84,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,83,75,69,76,69,84,79,78,95,73,67,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,83,75,69,76,69,84,79,78,95,73,67,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,83,75,69,76,69,84,79,78,95,73,77,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,83,75,69,76,69,84,79,78,95,73,77,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,83,75,69,76,69,84,79,78,95,84,65,66,76,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,83,75,69,76,69,84,79,78,95,84,65,66,76,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,83,75,69,76,69,84,79,78,95,87,82,65,80,80,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,83,75,69,76,69,84,79,78,95,87,82,65,80,80,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,83,80,73,78,78,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,83,80,73,78,78,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,65,66,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,65,66,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,65,66,76,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,65,66,76,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,65,66,76,69,95,67,69,76,76,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,65,66,76,69,95,67,69,76,76,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,65,66,76,69,95,76,73,84,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,65,66,76,69,95,76,73,84,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,65,66,76,69,95,83,73,77,80,76,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,65,66,76,69,95,83,73,77,80,76,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,65,66,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,65,66,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,65,66,95,66,85,84,84,79,78,95,72,69,76,80,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,65,66,95,66,85,84,84,79,78,95,72,69,76,80,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,66,79,68,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,66,79,68,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,70,79,79,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,70,79,79,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,72,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,72,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,72,69,65,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,72,69,65,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,73,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,73,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,79,65,83,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,79,65,83,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,79,65,83,84,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,79,65,83,84,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,79,65,83,84,95,80,79,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,79,65,83,84,95,80,79,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,79,79,76,84,73,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,79,79,76,84,73,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,79,79,76,84,73,80,95,72,69,76,80,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,79,79,76,84,73,80,95,72,69,76,80,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,79,79,76,84,73,80,95,84,69,77,80,76,65,84,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,79,79,76,84,73,80,95,84,69,77,80,76,65,84,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,82,65,78,83,73,84,73,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,82,65,78,83,73,84,73,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,82,65,78,83,80,79,82,84,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,82,65,78,83,80,79,82,84,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,95,84,82,65,78,83,80,79,82,84,69,82,95,84,65,82,71,69,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,95,84,82,65,78,83,80,79,82,84,69,82,95,84,65,82,71,69,84,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,47,32,67,111,109,112,111,110,101,110,116,32,110,97,109,101,115,92,110,118,97,114,32,78,65,77,69,95,65,76,69,82,84,32,61,32,39,66,65,108,101,114,116,39,59,92,110,118,97,114,32,78,65,77,69,95,65,83,80,69,67,84,32,61,32,39,66,65,115,112,101,99,116,39,59,92,110,118,97,114,32,78,65,77,69,95,65,86,65,84,65,82,32,61,32,39,66,65,118,97,116,97,114,39,59,92,110,118,97,114,32,78,65,77,69,95,65,86,65,84,65,82,95,71,82,79,85,80,32,61,32,39,66,65,118,97,116,97,114,71,114,111,117,112,39,59,92,110,118,97,114,32,78,65,77,69,95,66,65,68,71,69,32,61,32,39,66,66,97,100,103,101,39,59,92,110,118,97,114,32,78,65,77,69,95,66,82,69,65,68,67,82,85,77,66,32,61,32,39,66,66,114,101,97,100,99,114,117,109,98,39,59,92,110,118,97,114,32,78,65,77,69,95,66,82,69,65,68,67,82,85,77,66,95,73,84,69,77,32,61,32,39,66,66,114,101,97,100,99,114,117,109,98,73,116,101,109,39,59,92,110,118,97,114,32,78,65,77,69,95,66,82,69,65,68,67,82,85,77,66,95,76,73,78,75,32,61,32,39,66,66,114,101,97,100,99,114,117,109,98,76,105,110,107,39,59,92,110,118,97,114,32,78,65,77,69,95,66,85,84,84,79,78,32,61,32,39,66,66,117,116,116,111,110,39,59,92,110,118,97,114,32,78,65,77,69,95,66,85,84,84,79,78,95,67,76,79,83,69,32,61,32,39,66,66,117,116,116,111,110,67,108,111,115,101,39,59,92,110,118,97,114,32,78,65,77,69,95,66,85,84,84,79,78,95,71,82,79,85,80,32,61,32,39,66,66,117,116,116,111,110,71,114,111,117,112,39,59,92,110,118,97,114,32,78,65,77,69,95,66,85,84,84,79,78,95,84,79,79,76,66,65,82,32,61,32,39,66,66,117,116,116,111,110,84,111,111,108,98,97,114,39,59,92,110,118,97,114,32,78,65,77,69,95,67,65,76,69,78,68,65,82,32,61,32,39,66,67,97,108,101,110,100,97,114,39,59,92,110,118,97,114,32,78,65,77,69,95,67,65,82,68,32,61,32,39,66,67,97,114,100,39,59,92,110,118,97,114,32,78,65,77,69,95,67,65,82,68,95,66,79,68,89,32,61,32,39,66,67,97,114,100,66,111,100,121,39,59,92,110,118,97,114,32,78,65,77,69,95,67,65,82,68,95,70,79,79,84,69,82,32,61,32,39,66,67,97,114,100,70,111,111,116,101,114,39,59,92,110,118,97,114,32,78,65,77,69,95,67,65,82,68,95,71,82,79,85,80,32,61,32,39,66,67,97,114,100,71,114,111,117,112,39,59,92,110,118,97,114,32,78,65,77,69,95,67,65,82,68,95,72,69,65,68,69,82,32,61,32,39,66,67,97,114,100,72,101,97,100,101,114,39,59,92,110,118,97,114,32,78,65,77,69,95,67,65,82,68,95,73,77,71,32,61,32,39,66,67,97,114,100,73,109,103,39,59,92,110,118,97,114,32,78,65,77,69,95,67,65,82,68,95,73,77,71,95,76,65,90,89,32,61,32,39,66,67,97,114,100,73,109,103,76,97,122,121,39,59,92,110,118,97,114,32,78,65,77,69,95,67,65,82,68,95,83,85,66,95,84,73,84,76,69,32,61,32,39,66,67,97,114,100,83,117,98,84,105,116,108,101,39,59,92,110,118,97,114,32,78,65,77,69,95,67,65,82,68,95,84,69,88,84,32,61,32,39,66,67,97,114,100,84,101,120,116,39,59,92,110,118,97,114,32,78,65,77,69,95,67,65,82,68,95,84,73,84,76,69,32,61,32,39,66,67,97,114,100,84,105,116,108,101,39,59,92,110,118,97,114,32,78,65,77,69,95,67,65,82,79,85,83,69,76,32,61,32,39,66,67,97,114,111,117,115,101,108,39,59,92,110,118,97,114,32,78,65,77,69,95,67,65,82,79,85,83,69,76,95,83,76,73,68,69,32,61,32,39,66,67,97,114,111,117,115,101,108,83,108,105,100,101,39,59,92,110,118,97,114,32,78,65,77,69,95,67,79,76,32,61,32,39,66,67,111,108,39,59,92,110,118,97,114,32,78,65,77,69,95,67,79,76,76,65,80,83,69,32,61,32,39,66,67,111,108,108,97,112,115,101,39,59,92,110,118,97,114,32,78,65,77,69,95,67,79,78,84,65,73,78,69,82,32,61,32,39,66,67,111,110,116,97,105,110,101,114,39,59,92,110,118,97,114,32,78,65,77,69,95,68,82,79,80,68,79,87,78,32,61,32,39,66,68,114,111,112,100,111,119,110,39,59,92,110,118,97,114,32,78,65,77,69,95,68,82,79,80,68,79,87,78,95,68,73,86,73,68,69,82,32,61,32,39,66,68,114,111,112,100,111,119,110,68,105,118,105,100,101,114,39,59,92,110,118,97,114,32,78,65,77,69,95,68,82,79,80,68,79,87,78,95,70,79,82,77,32,61,32,39,66,68,114,111,112,100,111,119,110,70,111,114,109,39,59,92,110,118,97,114,32,78,65,77,69,95,68,82,79,80,68,79,87,78,95,71,82,79,85,80,32,61,32,39,66,68,114,111,112,100,111,119,110,71,114,111,117,112,39,59,92,110,118,97,114,32,78,65,77,69,95,68,82,79,80,68,79,87,78,95,72,69,65,68,69,82,32,61,32,39,66,68,114,111,112,100,111,119,110,72,101,97,100,101,114,39,59,92,110,118,97,114,32,78,65,77,69,95,68,82,79,80,68,79,87,78,95,73,84,69,77,32,61,32,39,66,68,114,111,112,100,111,119,110,73,116,101,109,39,59,92,110,118,97,114,32,78,65,77,69,95,68,82,79,80,68,79,87,78,95,73,84,69,77,95,66,85,84,84,79,78,32,61,32,39,66,68,114,111,112,100,111,119,110,73,116,101,109,66,117,116,116,111,110,39,59,92,110,118,97,114,32,78,65,77,69,95,68,82,79,80,68,79,87,78,95,84,69,88,84,32,61,32,39,66,68,114,111,112,100,111,119,110,84,101,120,116,39,59,92,110,118,97,114,32,78,65,77,69,95,69,77,66,69,68,32,61,32,39,66,69,109,98,101,100,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,32,61,32,39,66,70,111,114,109,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,67,72,69,67,75,66,79,88,32,61,32,39,66,70,111,114,109,67,104,101,99,107,98,111,120,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,67,72,69,67,75,66,79,88,95,71,82,79,85,80,32,61,32,39,66,70,111,114,109,67,104,101,99,107,98,111,120,71,114,111,117,112,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,68,65,84,65,76,73,83,84,32,61,32,39,66,70,111,114,109,68,97,116,97,108,105,115,116,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,68,65,84,69,80,73,67,75,69,82,32,61,32,39,66,70,111,114,109,68,97,116,101,112,105,99,107,101,114,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,70,73,76,69,32,61,32,39,66,70,111,114,109,70,105,108,101,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,71,82,79,85,80,32,61,32,39,66,70,111,114,109,71,114,111,117,112,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,73,78,80,85,84,32,61,32,39,66,70,111,114,109,73,110,112,117,116,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,73,78,86,65,76,73,68,95,70,69,69,68,66,65,67,75,32,61,32,39,66,70,111,114,109,73,110,118,97,108,105,100,70,101,101,100,98,97,99,107,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,82,65,68,73,79,32,61,32,39,66,70,111,114,109,82,97,100,105,111,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,82,65,68,73,79,95,71,82,79,85,80,32,61,32,39,66,70,111,114,109,82,97,100,105,111,71,114,111,117,112,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,82,65,84,73,78,71,32,61,32,39,66,70,111,114,109,82,97,116,105,110,103,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,82,79,87,32,61,32,39,66,70,111,114,109,82,111,119,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,83,69,76,69,67,84,32,61,32,39,66,70,111,114,109,83,101,108,101,99,116,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,83,69,76,69,67,84,95,79,80,84,73,79,78,32,61,32,39,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,83,69,76,69,67,84,95,79,80,84,73,79,78,95,71,82,79,85,80,32,61,32,39,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,83,80,73,78,66,85,84,84,79,78,32,61,32,39,66,70,111,114,109,83,112,105,110,98,117,116,116,111,110,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,84,65,71,32,61,32,39,66,70,111,114,109,84,97,103,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,84,65,71,83,32,61,32,39,66,70,111,114,109,84,97,103,115,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,84,69,88,84,32,61,32,39,66,70,111,114,109,84,101,120,116,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,84,69,88,84,65,82,69,65,32,61,32,39,66,70,111,114,109,84,101,120,116,97,114,101,97,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,84,73,77,69,80,73,67,75,69,82,32,61,32,39,66,70,111,114,109,84,105,109,101,112,105,99,107,101,114,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,86,65,76,73,68,95,70,69,69,68,66,65,67,75,32,61,32,39,66,70,111,114,109,86,97,108,105,100,70,101,101,100,98,97,99,107,39,59,92,110,118,97,114,32,78,65,77,69,95,73,67,79,78,32,61,32,39,66,73,99,111,110,39,59,92,110,118,97,114,32,78,65,77,69,95,73,67,79,78,83,84,65,67,75,32,61,32,39,66,73,99,111,110,115,116,97,99,107,39,59,92,110,118,97,114,32,78,65,77,69,95,73,67,79,78,95,66,65,83,69,32,61,32,39,66,73,99,111,110,66,97,115,101,39,59,92,110,118,97,114,32,78,65,77,69,95,73,77,71,32,61,32,39,66,73,109,103,39,59,92,110,118,97,114,32,78,65,77,69,95,73,77,71,95,76,65,90,89,32,61,32,39,66,73,109,103,76,97,122,121,39,59,92,110,118,97,114,32,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,32,61,32,39,66,73,110,112,117,116,71,114,111,117,112,39,59,92,110,118,97,114,32,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,65,68,68,79,78,32,61,32,39,66,73,110,112,117,116,71,114,111,117,112,65,100,100,111,110,39,59,92,110,118,97,114,32,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,65,80,80,69,78,68,32,61,32,39,66,73,110,112,117,116,71,114,111,117,112,65,112,112,101,110,100,39,59,92,110,118,97,114,32,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,80,82,69,80,69,78,68,32,61,32,39,66,73,110,112,117,116,71,114,111,117,112,80,114,101,112,101,110,100,39,59,92,110,118,97,114,32,78,65,77,69,95,73,78,80,85,84,95,71,82,79,85,80,95,84,69,88,84,32,61,32,39,66,73,110,112,117,116,71,114,111,117,112,84,101,120,116,39,59,92,110,118,97,114,32,78,65,77,69,95,74,85,77,66,79,84,82,79,78,32,61,32,39,66,74,117,109,98,111,116,114,111,110,39,59,92,110,118,97,114,32,78,65,77,69,95,76,73,78,75,32,61,32,39,66,76,105,110,107,39,59,92,110,118,97,114,32,78,65,77,69,95,76,73,83,84,95,71,82,79,85,80,32,61,32,39,66,76,105,115,116,71,114,111,117,112,39,59,92,110,118,97,114,32,78,65,77,69,95,76,73,83,84,95,71,82,79,85,80,95,73,84,69,77,32,61,32,39,66,76,105,115,116,71,114,111,117,112,73,116,101,109,39,59,92,110,118,97,114,32,78,65,77,69,95,77,69,68,73,65,32,61,32,39,66,77,101,100,105,97,39,59,92,110,118,97,114,32,78,65,77,69,95,77,69,68,73,65,95,65,83,73,68,69,32,61,32,39,66,77,101,100,105,97,65,115,105,100,101,39,59,92,110,118,97,114,32,78,65,77,69,95,77,69,68,73,65,95,66,79,68,89,32,61,32,39,66,77,101,100,105,97,66,111,100,121,39,59,92,110,118,97,114,32,78,65,77,69,95,77,79,68,65,76,32,61,32,39,66,77,111,100,97,108,39,59,92,110,118,97,114,32,78,65,77,69,95,77,83,71,95,66,79,88,32,61,32,39,66,77,115,103,66,111,120,39,59,92,110,118,97,114,32,78,65,77,69,95,78,65,86,32,61,32,39,66,78,97,118,39,59,92,110,118,97,114,32,78,65,77,69,95,78,65,86,66,65,82,32,61,32,39,66,78,97,118,98,97,114,39,59,92,110,118,97,114,32,78,65,77,69,95,78,65,86,66,65,82,95,66,82,65,78,68,32,61,32,39,66,78,97,118,98,97,114,66,114,97,110,100,39,59,92,110,118,97,114,32,78,65,77,69,95,78,65,86,66,65,82,95,78,65,86,32,61,32,39,66,78,97,118,98,97,114,78,97,118,39,59,92,110,118,97,114,32,78,65,77,69,95,78,65,86,66,65,82,95,84,79,71,71,76,69,32,61,32,39,66,78,97,118,98,97,114,84,111,103,103,108,101,39,59,92,110,118,97,114,32,78,65,77,69,95,78,65,86,95,70,79,82,77,32,61,32,39,66,78,97,118,70,111,114,109,39,59,92,110,118,97,114,32,78,65,77,69,95,78,65,86,95,73,84,69,77,32,61,32,39,66,78,97,118,73,116,101,109,39,59,92,110,118,97,114,32,78,65,77,69,95,78,65,86,95,73,84,69,77,95,68,82,79,80,68,79,87,78,32,61,32,39,66,78,97,118,73,116,101,109,68,114,111,112,100,111,119,110,39,59,92,110,118,97,114,32,78,65,77,69,95,78,65,86,95,84,69,88,84,32,61,32,39,66,78,97,118,84,101,120,116,39,59,92,110,118,97,114,32,78,65,77,69,95,79,86,69,82,76,65,89,32,61,32,39,66,79,118,101,114,108,97,121,39,59,92,110,118,97,114,32,78,65,77,69,95,80,65,71,73,78,65,84,73,79,78,32,61,32,39,66,80,97,103,105,110,97,116,105,111,110,39,59,92,110,118,97,114,32,78,65,77,69,95,80,65,71,73,78,65,84,73,79,78,95,78,65,86,32,61,32,39,66,80,97,103,105,110,97,116,105,111,110,78,97,118,39,59,92,110,118,97,114,32,78,65,77,69,95,80,79,80,79,86,69,82,32,61,32,39,66,80,111,112,111,118,101,114,39,59,92,110,118,97,114,32,78,65,77,69,95,80,82,79,71,82,69,83,83,32,61,32,39,66,80,114,111,103,114,101,115,115,39,59,92,110,118,97,114,32,78,65,77,69,95,80,82,79,71,82,69,83,83,95,66,65,82,32,61,32,39,66,80,114,111,103,114,101,115,115,66,97,114,39,59,92,110,118,97,114,32,78,65,77,69,95,82,79,87,32,61,32,39,66,82,111,119,39,59,92,110,118,97,114,32,78,65,77,69,95,83,73,68,69,66,65,82,32,61,32,39,66,83,105,100,101,98,97,114,39,59,92,110,118,97,114,32,78,65,77,69,95,83,75,69,76,69,84,79,78,32,61,32,39,66,83,107,101,108,101,116,111,110,39,59,92,110,118,97,114,32,78,65,77,69,95,83,75,69,76,69,84,79,78,95,73,67,79,78,32,61,32,39,66,83,107,101,108,101,116,111,110,73,99,111,110,39,59,92,110,118,97,114,32,78,65,77,69,95,83,75,69,76,69,84,79,78,95,73,77,71,32,61,32,39,66,83,107,101,108,101,116,111,110,73,109,103,39,59,92,110,118,97,114,32,78,65,77,69,95,83,75,69,76,69,84,79,78,95,84,65,66,76,69,32,61,32,39,66,83,107,101,108,101,116,111,110,84,97,98,108,101,39,59,92,110,118,97,114,32,78,65,77,69,95,83,75,69,76,69,84,79,78,95,87,82,65,80,80,69,82,32,61,32,39,66,83,107,101,108,101,116,111,110,87,114,97,112,112,101,114,39,59,92,110,118,97,114,32,78,65,77,69,95,83,80,73,78,78,69,82,32,61,32,39,66,83,112,105,110,110,101,114,39,59,92,110,118,97,114,32,78,65,77,69,95,84,65,66,32,61,32,39,66,84,97,98,39,59,92,110,118,97,114,32,78,65,77,69,95,84,65,66,76,69,32,61,32,39,66,84,97,98,108,101,39,59,92,110,118,97,114,32,78,65,77,69,95,84,65,66,76,69,95,67,69,76,76,32,61,32,39,66,84,97,98,108,101,67,101,108,108,39,59,92,110,118,97,114,32,78,65,77,69,95,84,65,66,76,69,95,76,73,84,69,32,61,32,39,66,84,97,98,108,101,76,105,116,101,39,59,92,110,118,97,114,32,78,65,77,69,95,84,65,66,76,69,95,83,73,77,80,76,69,32,61,32,39,66,84,97,98,108,101,83,105,109,112,108,101,39,59,92,110,118,97,114,32,78,65,77,69,95,84,65,66,83,32,61,32,39,66,84,97,98,115,39,59,92,110,118,97,114,32,78,65,77,69,95,84,66,79,68,89,32,61,32,39,66,84,98,111,100,121,39,59,92,110,118,97,114,32,78,65,77,69,95,84,70,79,79,84,32,61,32,39,66,84,102,111,111,116,39,59,92,110,118,97,114,32,78,65,77,69,95,84,72,32,61,32,39,66,84,104,39,59,92,110,118,97,114,32,78,65,77,69,95,84,72,69,65,68,32,61,32,39,66,84,104,101,97,100,39,59,92,110,118,97,114,32,78,65,77,69,95,84,73,77,69,32,61,32,39,66,84,105,109,101,39,59,92,110,118,97,114,32,78,65,77,69,95,84,79,65,83,84,32,61,32,39,66,84,111,97,115,116,39,59,92,110,118,97,114,32,78,65,77,69,95,84,79,65,83,84,69,82,32,61,32,39,66,84,111,97,115,116,101,114,39,59,92,110,118,97,114,32,78,65,77,69,95,84,79,79,76,84,73,80,32,61,32,39,66,84,111,111,108,116,105,112,39,59,92,110,118,97,114,32,78,65,77,69,95,84,82,32,61,32,39,66,84,114,39,59,32,47,47,32,72,101,108,112,101,114,32,99,111,109,112,111,110,101,110,116,32,110,97,109,101,115,92,110,92,110,118,97,114,32,78,65,77,69,95,67,79,76,76,65,80,83,69,95,72,69,76,80,69,82,32,61,32,39,66,86,67,111,108,108,97,112,115,101,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,66,85,84,84,79,78,95,76,65,66,69,76,95,67,79,78,84,82,79,76,32,61,32,39,66,86,70,111,114,109,66,116,110,76,97,98,101,108,67,111,110,116,114,111,108,39,59,92,110,118,97,114,32,78,65,77,69,95,70,79,82,77,95,82,65,84,73,78,71,95,83,84,65,82,32,61,32,39,66,86,70,111,114,109,82,97,116,105,110,103,83,116,97,114,39,59,92,110,118,97,114,32,78,65,77,69,95,80,79,80,79,86,69,82,95,72,69,76,80,69,82,32,61,32,39,66,86,80,111,112,111,118,101,114,39,59,92,110,118,97,114,32,78,65,77,69,95,80,79,80,79,86,69,82,95,84,69,77,80,76,65,84,69,32,61,32,39,66,86,80,111,112,111,118,101,114,84,101,109,112,108,97,116,101,39,59,92,110,118,97,114,32,78,65,77,69,95,80,79,80,80,69,82,32,61,32,39,66,86,80,111,112,112,101,114,39,59,92,110,118,97,114,32,78,65,77,69,95,84,65,66,95,66,85,84,84,79,78,95,72,69,76,80,69,82,32,61,32,39,66,86,84,97,98,66,117,116,116,111,110,39,59,92,110,118,97,114,32,78,65,77,69,95,84,79,65,83,84,95,80,79,80,32,61,32,39,66,86,84,111,97,115,116,80,111,112,39,59,92,110,118,97,114,32,78,65,77,69,95,84,79,79,76,84,73,80,95,72,69,76,80,69,82,32,61,32,39,66,86,84,111,111,108,116,105,112,39,59,92,110,118,97,114,32,78,65,77,69,95,84,79,79,76,84,73,80,95,84,69,77,80,76,65,84,69,32,61,32,39,66,86,84,111,111,108,116,105,112,84,101,109,112,108,97,116,101,39,59,92,110,118,97,114,32,78,65,77,69,95,84,82,65,78,83,73,84,73,79,78,32,61,32,39,66,86,84,114,97,110,115,105,116,105,111,110,39,59,92,110,118,97,114,32,78,65,77,69,95,84,82,65,78,83,80,79,82,84,69,82,32,61,32,39,66,86,84,114,97,110,115,112,111,114,116,101,114,39,59,92,110,118,97,114,32,78,65,77,69,95,84,82,65,78,83,80,79,82,84,69,82,95,84,65,82,71,69,84,32,61,32,39,66,86,84,114,97,110,115,112,111,114,116,101,114,84,97,114,103,101,116,39,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,110,102,105,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,110,102,105,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,68,69,70,65,85,76,84,95,66,82,69,65,75,80,79,73,78,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,68,69,70,65,85,76,84,95,66,82,69,65,75,80,79,73,78,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,78,65,77,69,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,78,65,77,69,32,61,32,39,66,118,67,111,110,102,105,103,39,59,92,110,118,97,114,32,80,82,79,80,95,78,65,77,69,32,61,32,39,36,98,118,67,111,110,102,105,103,39,59,92,110,118,97,114,32,68,69,70,65,85,76,84,95,66,82,69,65,75,80,79,73,78,84,32,61,32,91,39,120,115,39,44,32,39,115,109,39,44,32,39,109,100,39,44,32,39,108,103,39,44,32,39,120,108,39,93,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,110,102,105,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,100,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,100,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,65,76,69,78,68,65,82,95,71,82,69,71,79,82,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,65,76,69,78,68,65,82,95,71,82,69,71,79,82,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,65,76,69,78,68,65,82,95,76,79,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,65,76,69,78,68,65,82,95,76,79,78,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,65,76,69,78,68,65,82,95,78,65,82,82,79,87,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,65,76,69,78,68,65,82,95,78,65,82,82,79,87,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,65,76,69,78,68,65,82,95,83,72,79,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,65,76,69,78,68,65,82,95,83,72,79,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,68,65,84,69,95,70,79,82,77,65,84,95,50,95,68,73,71,73,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,68,65,84,69,95,70,79,82,77,65,84,95,50,95,68,73,71,73,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,68,65,84,69,95,70,79,82,77,65,84,95,78,85,77,69,82,73,67,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,68,65,84,69,95,70,79,82,77,65,84,95,78,85,77,69,82,73,67,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,67,65,76,69,78,68,65,82,95,71,82,69,71,79,82,89,32,61,32,39,103,114,101,103,111,114,121,39,59,92,110,118,97,114,32,67,65,76,69,78,68,65,82,95,76,79,78,71,32,61,32,39,108,111,110,103,39,59,92,110,118,97,114,32,67,65,76,69,78,68,65,82,95,78,65,82,82,79,87,32,61,32,39,110,97,114,114,111,119,39,59,92,110,118,97,114,32,67,65,76,69,78,68,65,82,95,83,72,79,82,84,32,61,32,39,115,104,111,114,116,39,59,92,110,118,97,114,32,68,65,84,69,95,70,79,82,77,65,84,95,50,95,68,73,71,73,84,32,61,32,39,50,45,100,105,103,105,116,39,59,92,110,118,97,114,32,68,65,84,69,95,70,79,82,77,65,84,95,78,85,77,69,82,73,67,32,61,32,39,110,117,109,101,114,105,99,39,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,100,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,68,79,67,85,77,69,78,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,68,79,67,85,77,69,78,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,72,65,83,95,68,79,67,85,77,69,78,84,95,83,85,80,80,79,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,72,65,83,95,68,79,67,85,77,69,78,84,95,83,85,80,80,79,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,72,65,83,95,73,78,84,69,82,65,67,84,73,79,78,95,79,66,83,69,82,86,69,82,95,83,85,80,80,79,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,72,65,83,95,73,78,84,69,82,65,67,84,73,79,78,95,79,66,83,69,82,86,69,82,95,83,85,80,80,79,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,72,65,83,95,77,85,84,65,84,73,79,78,95,79,66,83,69,82,86,69,82,95,83,85,80,80,79,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,72,65,83,95,77,85,84,65,84,73,79,78,95,79,66,83,69,82,86,69,82,95,83,85,80,80,79,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,72,65,83,95,78,65,86,73,71,65,84,79,82,95,83,85,80,80,79,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,72,65,83,95,78,65,86,73,71,65,84,79,82,95,83,85,80,80,79,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,72,65,83,95,80,65,83,83,73,86,69,95,69,86,69,78,84,95,83,85,80,80,79,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,72,65,83,95,80,65,83,83,73,86,69,95,69,86,69,78,84,95,83,85,80,80,79,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,72,65,83,95,80,79,73,78,84,69,82,95,69,86,69,78,84,95,83,85,80,80,79,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,72,65,83,95,80,79,73,78,84,69,82,95,69,86,69,78,84,95,83,85,80,80,79,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,72,65,83,95,80,82,79,77,73,83,69,95,83,85,80,80,79,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,72,65,83,95,80,82,79,77,73,83,69,95,83,85,80,80,79,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,72,65,83,95,84,79,85,67,72,95,83,85,80,80,79,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,72,65,83,95,84,79,85,67,72,95,83,85,80,80,79,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,72,65,83,95,87,73,78,68,79,87,95,83,85,80,80,79,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,72,65,83,95,87,73,78,68,79,87,95,83,85,80,80,79,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,83,95,66,82,79,87,83,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,83,95,66,82,79,87,83,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,83,95,73,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,83,95,73,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,83,95,74,83,68,79,77,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,83,95,74,83,68,79,77,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,86,73,71,65,84,79,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,86,73,71,65,84,79,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,85,83,69,82,95,65,71,69,78,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,85,83,69,82,95,65,71,69,78,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,87,73,78,68,79,87,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,87,73,78,68,79,87,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,72,65,83,95,87,73,78,68,79,87,95,83,85,80,80,79,82,84,32,61,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,59,92,110,118,97,114,32,72,65,83,95,68,79,67,85,77,69,78,84,95,83,85,80,80,79,82,84,32,61,32,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,59,92,110,118,97,114,32,72,65,83,95,78,65,86,73,71,65,84,79,82,95,83,85,80,80,79,82,84,32,61,32,116,121,112,101,111,102,32,110,97,118,105,103,97,116,111,114,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,59,92,110,118,97,114,32,72,65,83,95,80,82,79,77,73,83,69,95,83,85,80,80,79,82,84,32,61,32,116,121,112,101,111,102,32,80,114,111,109,105,115,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,59,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,74,83,68,79,77,32,97,108,119,97,121,115,32,114,101,116,117,114,110,115,32,102,97,108,115,101,32,42,47,92,110,92,110,118,97,114,32,72,65,83,95,77,85,84,65,84,73,79,78,95,79,66,83,69,82,86,69,82,95,83,85,80,80,79,82,84,32,61,32,116,121,112,101,111,102,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,124,124,32,116,121,112,101,111,102,32,87,101,98,75,105,116,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,124,124,32,116,121,112,101,111,102,32,77,111,122,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,59,92,110,118,97,114,32,73,83,95,66,82,79,87,83,69,82,32,61,32,72,65,83,95,87,73,78,68,79,87,95,83,85,80,80,79,82,84,32,38,38,32,72,65,83,95,68,79,67,85,77,69,78,84,95,83,85,80,80,79,82,84,32,38,38,32,72,65,83,95,78,65,86,73,71,65,84,79,82,95,83,85,80,80,79,82,84,59,92,110,118,97,114,32,87,73,78,68,79,87,32,61,32,72,65,83,95,87,73,78,68,79,87,95,83,85,80,80,79,82,84,32,63,32,119,105,110,100,111,119,32,58,32,123,125,59,92,110,118,97,114,32,68,79,67,85,77,69,78,84,32,61,32,72,65,83,95,68,79,67,85,77,69,78,84,95,83,85,80,80,79,82,84,32,63,32,100,111,99,117,109,101,110,116,32,58,32,123,125,59,92,110,118,97,114,32,78,65,86,73,71,65,84,79,82,32,61,32,72,65,83,95,78,65,86,73,71,65,84,79,82,95,83,85,80,80,79,82,84,32,63,32,110,97,118,105,103,97,116,111,114,32,58,32,123,125,59,92,110,118,97,114,32,85,83,69,82,95,65,71,69,78,84,32,61,32,40,78,65,86,73,71,65,84,79,82,46,117,115,101,114,65,103,101,110,116,32,124,124,32,39,39,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,118,97,114,32,73,83,95,74,83,68,79,77,32,61,32,85,83,69,82,95,65,71,69,78,84,46,105,110,100,101,120,79,102,40,39,106,115,100,111,109,39,41,32,62,32,48,59,92,110,118,97,114,32,73,83,95,73,69,32,61,32,47,109,115,105,101,124,116,114,105,100,101,110,116,47,46,116,101,115,116,40,85,83,69,82,95,65,71,69,78,84,41,59,32,47,47,32,68,101,116,101,114,109,105,110,101,32,105,102,32,116,104,101,32,98,114,111,119,115,101,114,32,115,117,112,112,111,114,116,115,32,116,104,101,32,111,112,116,105,111,110,32,112,97,115,115,105,118,101,32,102,111,114,32,101,118,101,110,116,115,92,110,92,110,118,97,114,32,72,65,83,95,80,65,83,83,73,86,69,95,69,86,69,78,84,95,83,85,80,80,79,82,84,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,112,97,115,115,105,118,101,69,118,101,110,116,83,117,112,112,111,114,116,101,100,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,105,102,32,40,73,83,95,66,82,79,87,83,69,82,41,32,123,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,99,97,108,108,101,100,32,119,104,101,110,32,116,104,101,32,98,114,111,119,115,101,114,92,110,32,32,32,32,32,32,32,32,47,47,32,97,116,116,101,109,112,116,115,32,116,111,32,97,99,99,101,115,115,32,116,104,101,32,112,97,115,115,105,118,101,32,112,114,111,112,101,114,116,121,92,110,32,32,32,32,32,32,32,32,103,101,116,32,112,97,115,115,105,118,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,119,105,108,108,32,110,101,118,101,114,32,98,101,32,99,97,108,108,101,100,32,105,110,32,74,83,68,79,77,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,112,97,115,115,105,118,101,69,118,101,110,116,83,117,112,112,111,114,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,87,73,78,68,79,87,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,116,101,115,116,39,44,32,111,112,116,105,111,110,115,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,87,73,78,68,79,87,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,116,101,115,116,39,44,32,111,112,116,105,111,110,115,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,95,117,110,117,115,101,100,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,119,105,108,108,32,110,101,118,101,114,32,98,101,32,99,97,108,108,101,100,32,105,110,32,74,83,68,79,77,32,42,47,92,110,32,32,32,32,32,32,112,97,115,115,105,118,101,69,118,101,110,116,83,117,112,112,111,114,116,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,112,97,115,115,105,118,101,69,118,101,110,116,83,117,112,112,111,114,116,101,100,59,92,110,125,40,41,59,92,110,118,97,114,32,72,65,83,95,84,79,85,67,72,95,83,85,80,80,79,82,84,32,61,32,73,83,95,66,82,79,87,83,69,82,32,38,38,32,40,39,111,110,116,111,117,99,104,115,116,97,114,116,39,32,105,110,32,68,79,67,85,77,69,78,84,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,32,124,124,32,78,65,86,73,71,65,84,79,82,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,32,62,32,48,41,59,92,110,118,97,114,32,72,65,83,95,80,79,73,78,84,69,82,95,69,86,69,78,84,95,83,85,80,80,79,82,84,32,61,32,73,83,95,66,82,79,87,83,69,82,32,38,38,32,66,111,111,108,101,97,110,40,87,73,78,68,79,87,46,80,111,105,110,116,101,114,69,118,101,110,116,32,124,124,32,87,73,78,68,79,87,46,77,83,80,111,105,110,116,101,114,69,118,101,110,116,41,59,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,74,83,68,79,77,32,111,110,108,121,32,99,104,101,99,107,115,32,102,111,114,32,39,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,39,32,42,47,92,110,92,110,118,97,114,32,72,65,83,95,73,78,84,69,82,65,67,84,73,79,78,95,79,66,83,69,82,86,69,82,95,83,85,80,80,79,82,84,32,61,32,73,83,95,66,82,79,87,83,69,82,32,38,38,32,39,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,39,32,105,110,32,87,73,78,68,79,87,32,38,38,32,39,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,69,110,116,114,121,39,32,105,110,32,87,73,78,68,79,87,32,38,38,32,47,47,32,69,100,103,101,32,49,53,32,97,110,100,32,85,67,32,66,114,111,119,115,101,114,32,108,97,99,107,32,115,117,112,112,111,114,116,32,102,111,114,32,96,105,115,73,110,116,101,114,115,101,99,116,105,110,103,96,92,110,47,47,32,98,117,116,32,119,101,32,97,110,32,117,115,101,32,96,105,110,116,101,114,115,101,99,116,105,111,110,82,97,116,105,111,32,62,32,48,96,32,105,110,115,116,101,97,100,92,110,47,47,32,39,105,115,73,110,116,101,114,115,101,99,116,105,110,103,39,32,105,110,32,119,105,110,100,111,119,46,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,69,110,116,114,121,46,112,114,111,116,111,116,121,112,101,32,38,38,92,110,39,105,110,116,101,114,115,101,99,116,105,111,110,82,97,116,105,111,39,32,105,110,32,87,73,78,68,79,87,46,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,69,110,116,114,121,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,65,67,84,73,86,65,84,69,95,84,65,66,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,65,67,84,73,86,65,84,69,95,84,65,66,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,66,76,85,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,66,76,85,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,67,65,78,67,69,76,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,67,65,78,67,69,76,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,67,76,79,83,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,67,76,79,83,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,67,79,78,84,69,88,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,67,79,78,84,69,88,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,67,79,78,84,69,88,84,95,67,72,65,78,71,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,67,79,78,84,69,88,84,95,67,72,65,78,71,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,68,69,83,84,82,79,89,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,68,69,83,84,82,79,89,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,68,73,83,65,66,76,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,68,73,83,65,66,76,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,68,73,83,65,66,76,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,68,73,83,65,66,76,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,68,73,83,77,73,83,83,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,68,73,83,77,73,83,83,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,68,73,83,77,73,83,83,95,67,79,85,78,84,95,68,79,87,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,68,73,83,77,73,83,83,95,67,79,85,78,84,95,68,79,87,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,70,73,76,84,69,82,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,70,73,76,84,69,82,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,70,73,82,83,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,70,73,82,83,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,70,79,67,85,83,73,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,70,79,67,85,83,73,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,70,79,67,85,83,79,85,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,70,79,67,85,83,79,85,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,72,69,65,68,95,67,76,73,67,75,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,72,69,65,68,95,67,76,73,67,75,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,73,77,71,95,69,82,82,79,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,73,77,71,95,69,82,82,79,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,73,78,80,85,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,73,78,80,85,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,76,65,83,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,76,65,83,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,77,79,85,83,69,69,78,84,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,77,79,85,83,69,69,78,84,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,77,79,85,83,69,76,69,65,86,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,77,79,85,83,69,76,69,65,86,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,78,69,88,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,78,69,88,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,79,75,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,79,75,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,79,80,69,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,79,80,69,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,80,65,71,69,95,67,76,73,67,75,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,80,65,71,69,95,67,76,73,67,75,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,80,65,85,83,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,80,65,85,83,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,80,82,69,86,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,80,82,69,86,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,82,69,77,79,86,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,82,69,77,79,86,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,67,76,73,67,75,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,67,76,73,67,75,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,67,79,78,84,69,88,84,77,69,78,85,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,67,79,78,84,69,88,84,77,69,78,85,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,68,66,76,67,76,73,67,75,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,68,66,76,67,76,73,67,75,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,72,79,86,69,82,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,72,79,86,69,82,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,77,73,68,68,76,69,95,67,76,73,67,75,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,77,73,68,68,76,69,95,67,76,73,67,75,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,83,69,76,69,67,84,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,83,69,76,69,67,84,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,85,78,72,79,86,69,82,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,85,78,72,79,86,69,82,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,83,69,76,69,67,84,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,83,69,76,69,67,84,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,83,76,73,68,73,78,71,95,69,78,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,83,76,73,68,73,78,71,95,69,78,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,83,76,73,68,73,78,71,95,83,84,65,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,83,76,73,68,73,78,71,95,83,84,65,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,83,79,82,84,95,67,72,65,78,71,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,83,79,82,84,95,67,72,65,78,71,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,84,65,71,95,83,84,65,84,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,84,65,71,95,83,84,65,84,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,84,79,71,71,76,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,84,79,71,71,76,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,85,78,80,65,85,83,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,85,78,80,65,85,83,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,78,65,77,69,95,85,80,68,65,84,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,78,65,77,69,95,85,80,68,65,84,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,66,69,70,79,82,69,95,68,69,83,84,82,79,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,66,69,70,79,82,69,95,68,69,83,84,82,79,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,68,69,83,84,82,79,89,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,68,69,83,84,82,79,89,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,69,80,65,82,65,84,79,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,69,80,65,82,65,84,79,82,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,65,67,84,73,86,65,84,69,95,84,65,66,32,61,32,39,97,99,116,105,118,97,116,101,45,116,97,98,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,66,76,85,82,32,61,32,39,98,108,117,114,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,67,65,78,67,69,76,32,61,32,39,99,97,110,99,101,108,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,32,61,32,39,99,104,97,110,103,101,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,68,32,61,32,39,99,104,97,110,103,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,32,61,32,39,99,108,105,99,107,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,67,76,79,83,69,32,61,32,39,99,108,111,115,101,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,67,79,78,84,69,88,84,32,61,32,39,99,111,110,116,101,120,116,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,67,79,78,84,69,88,84,95,67,72,65,78,71,69,68,32,61,32,39,99,111,110,116,101,120,116,45,99,104,97,110,103,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,68,69,83,84,82,79,89,69,68,32,61,32,39,100,101,115,116,114,111,121,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,68,73,83,65,66,76,69,32,61,32,39,100,105,115,97,98,108,101,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,68,73,83,65,66,76,69,68,32,61,32,39,100,105,115,97,98,108,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,68,73,83,77,73,83,83,69,68,32,61,32,39,100,105,115,109,105,115,115,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,68,73,83,77,73,83,83,95,67,79,85,78,84,95,68,79,87,78,32,61,32,39,100,105,115,109,105,115,115,45,99,111,117,110,116,45,100,111,119,110,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,32,61,32,39,101,110,97,98,108,101,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,69,78,65,66,76,69,68,32,61,32,39,101,110,97,98,108,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,70,73,76,84,69,82,69,68,32,61,32,39,102,105,108,116,101,114,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,70,73,82,83,84,32,61,32,39,102,105,114,115,116,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,70,79,67,85,83,73,78,32,61,32,39,102,111,99,117,115,105,110,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,70,79,67,85,83,79,85,84,32,61,32,39,102,111,99,117,115,111,117,116,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,72,69,65,68,95,67,76,73,67,75,69,68,32,61,32,39,104,101,97,100,45,99,108,105,99,107,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,32,61,32,39,104,105,100,100,101,110,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,32,61,32,39,104,105,100,101,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,73,77,71,95,69,82,82,79,82,32,61,32,39,105,109,103,45,101,114,114,111,114,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,73,78,80,85,84,32,61,32,39,105,110,112,117,116,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,76,65,83,84,32,61,32,39,108,97,115,116,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,77,79,85,83,69,69,78,84,69,82,32,61,32,39,109,111,117,115,101,101,110,116,101,114,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,77,79,85,83,69,76,69,65,86,69,32,61,32,39,109,111,117,115,101,108,101,97,118,101,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,78,69,88,84,32,61,32,39,110,101,120,116,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,79,75,32,61,32,39,111,107,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,79,80,69,78,32,61,32,39,111,112,101,110,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,80,65,71,69,95,67,76,73,67,75,32,61,32,39,112,97,103,101,45,99,108,105,99,107,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,80,65,85,83,69,68,32,61,32,39,112,97,117,115,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,80,82,69,86,32,61,32,39,112,114,101,118,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,32,61,32,39,114,101,102,114,101,115,104,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,82,69,70,82,69,83,72,69,68,32,61,32,39,114,101,102,114,101,115,104,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,82,69,77,79,86,69,32,61,32,39,114,101,109,111,118,101,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,67,76,73,67,75,69,68,32,61,32,39,114,111,119,45,99,108,105,99,107,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,67,79,78,84,69,88,84,77,69,78,85,32,61,32,39,114,111,119,45,99,111,110,116,101,120,116,109,101,110,117,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,68,66,76,67,76,73,67,75,69,68,32,61,32,39,114,111,119,45,100,98,108,99,108,105,99,107,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,72,79,86,69,82,69,68,32,61,32,39,114,111,119,45,104,111,118,101,114,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,77,73,68,68,76,69,95,67,76,73,67,75,69,68,32,61,32,39,114,111,119,45,109,105,100,100,108,101,45,99,108,105,99,107,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,83,69,76,69,67,84,69,68,32,61,32,39,114,111,119,45,115,101,108,101,99,116,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,82,79,87,95,85,78,72,79,86,69,82,69,68,32,61,32,39,114,111,119,45,117,110,104,111,118,101,114,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,83,69,76,69,67,84,69,68,32,61,32,39,115,101,108,101,99,116,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,32,61,32,39,115,104,111,119,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,32,61,32,39,115,104,111,119,110,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,83,76,73,68,73,78,71,95,69,78,68,32,61,32,39,115,108,105,100,105,110,103,45,101,110,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,83,76,73,68,73,78,71,95,83,84,65,82,84,32,61,32,39,115,108,105,100,105,110,103,45,115,116,97,114,116,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,83,79,82,84,95,67,72,65,78,71,69,68,32,61,32,39,115,111,114,116,45,99,104,97,110,103,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,84,65,71,95,83,84,65,84,69,32,61,32,39,116,97,103,45,115,116,97,116,101,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,84,79,71,71,76,69,32,61,32,39,116,111,103,103,108,101,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,85,78,80,65,85,83,69,68,32,61,32,39,117,110,112,97,117,115,101,100,39,59,92,110,118,97,114,32,69,86,69,78,84,95,78,65,77,69,95,85,80,68,65,84,69,32,61,32,39,117,112,100,97,116,101,39,59,92,110,118,97,114,32,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,66,69,70,79,82,69,95,68,69,83,84,82,79,89,32,61,32,39,104,111,111,107,58,98,101,102,111,114,101,68,101,115,116,114,111,121,39,59,92,110,118,97,114,32,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,68,69,83,84,82,79,89,69,68,32,61,32,39,104,111,111,107,58,100,101,115,116,114,111,121,101,100,39,59,92,110,118,97,114,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,32,61,32,39,117,112,100,97,116,101,58,39,59,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,32,61,32,39,98,118,39,59,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,69,80,65,82,65,84,79,82,32,61,32,39,58,58,39,59,92,110,118,97,114,32,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,32,61,32,123,92,110,32,32,112,97,115,115,105,118,101,58,32,116,114,117,101,92,110,125,59,92,110,118,97,114,32,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,32,61,32,123,92,110,32,32,112,97,115,115,105,118,101,58,32,116,114,117,101,44,92,110,32,32,99,97,112,116,117,114,101,58,32,102,97,108,115,101,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,68,69,95,66,65,67,75,83,80,65,67,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,68,69,95,66,65,67,75,83,80,65,67,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,68,69,95,66,82,69,65,75,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,68,69,95,66,82,69,65,75,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,68,69,95,68,69,76,69,84,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,68,69,95,68,69,76,69,84,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,68,69,95,68,79,87,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,68,69,95,68,79,87,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,68,69,95,69,78,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,68,69,95,69,78,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,68,69,95,69,78,84,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,68,69,95,69,78,84,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,68,69,95,69,83,67,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,68,69,95,69,83,67,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,68,69,95,72,79,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,68,69,95,72,79,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,68,69,95,76,69,70,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,68,69,95,76,69,70,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,68,69,95,80,65,71,69,68,79,87,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,68,69,95,80,65,71,69,68,79,87,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,68,69,95,80,65,71,69,85,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,68,69,95,80,65,71,69,85,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,68,69,95,82,73,71,72,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,68,69,95,82,73,71,72,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,68,69,95,83,80,65,67,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,68,69,95,83,80,65,67,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,68,69,95,85,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,68,69,95,85,80,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,67,79,68,69,95,66,65,67,75,83,80,65,67,69,32,61,32,56,59,92,110,118,97,114,32,67,79,68,69,95,66,82,69,65,75,32,61,32,49,57,59,92,110,118,97,114,32,67,79,68,69,95,68,69,76,69,84,69,32,61,32,52,54,59,92,110,118,97,114,32,67,79,68,69,95,68,79,87,78,32,61,32,52,48,59,92,110,118,97,114,32,67,79,68,69,95,69,78,68,32,61,32,51,53,59,92,110,118,97,114,32,67,79,68,69,95,69,78,84,69,82,32,61,32,49,51,59,92,110,118,97,114,32,67,79,68,69,95,69,83,67,32,61,32,50,55,59,92,110,118,97,114,32,67,79,68,69,95,72,79,77,69,32,61,32,51,54,59,92,110,118,97,114,32,67,79,68,69,95,76,69,70,84,32,61,32,51,55,59,92,110,118,97,114,32,67,79,68,69,95,80,65,71,69,68,79,87,78,32,61,32,51,52,59,92,110,118,97,114,32,67,79,68,69,95,80,65,71,69,85,80,32,61,32,51,51,59,92,110,118,97,114,32,67,79,68,69,95,82,73,71,72,84,32,61,32,51,57,59,92,110,118,97,114,32,67,79,68,69,95,83,80,65,67,69,32,61,32,51,50,59,92,110,118,97,114,32,67,79,68,69,95,85,80,32,61,32,51,56,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,111,112,112,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,111,112,112,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,76,65,67,69,77,69,78,84,95,66,79,84,84,79,77,95,69,78,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,76,65,67,69,77,69,78,84,95,66,79,84,84,79,77,95,69,78,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,76,65,67,69,77,69,78,84,95,66,79,84,84,79,77,95,83,84,65,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,76,65,67,69,77,69,78,84,95,66,79,84,84,79,77,95,83,84,65,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,76,65,67,69,77,69,78,84,95,76,69,70,84,95,69,78,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,76,65,67,69,77,69,78,84,95,76,69,70,84,95,69,78,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,76,65,67,69,77,69,78,84,95,76,69,70,84,95,83,84,65,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,76,65,67,69,77,69,78,84,95,76,69,70,84,95,83,84,65,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,76,65,67,69,77,69,78,84,95,82,73,71,72,84,95,69,78,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,76,65,67,69,77,69,78,84,95,82,73,71,72,84,95,69,78,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,76,65,67,69,77,69,78,84,95,82,73,71,72,84,95,83,84,65,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,76,65,67,69,77,69,78,84,95,82,73,71,72,84,95,83,84,65,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,76,65,67,69,77,69,78,84,95,84,79,80,95,69,78,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,76,65,67,69,77,69,78,84,95,84,79,80,95,69,78,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,76,65,67,69,77,69,78,84,95,84,79,80,95,83,84,65,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,76,65,67,69,77,69,78,84,95,84,79,80,95,83,84,65,82,84,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,80,76,65,67,69,77,69,78,84,95,84,79,80,95,83,84,65,82,84,32,61,32,39,116,111,112,45,115,116,97,114,116,39,59,92,110,118,97,114,32,80,76,65,67,69,77,69,78,84,95,84,79,80,95,69,78,68,32,61,32,39,116,111,112,45,101,110,100,39,59,92,110,118,97,114,32,80,76,65,67,69,77,69,78,84,95,66,79,84,84,79,77,95,83,84,65,82,84,32,61,32,39,98,111,116,116,111,109,45,115,116,97,114,116,39,59,92,110,118,97,114,32,80,76,65,67,69,77,69,78,84,95,66,79,84,84,79,77,95,69,78,68,32,61,32,39,98,111,116,116,111,109,45,101,110,100,39,59,92,110,118,97,114,32,80,76,65,67,69,77,69,78,84,95,82,73,71,72,84,95,83,84,65,82,84,32,61,32,39,114,105,103,104,116,45,115,116,97,114,116,39,59,92,110,118,97,114,32,80,76,65,67,69,77,69,78,84,95,82,73,71,72,84,95,69,78,68,32,61,32,39,114,105,103,104,116,45,101,110,100,39,59,92,110,118,97,114,32,80,76,65,67,69,77,69,78,84,95,76,69,70,84,95,83,84,65,82,84,32,61,32,39,108,101,102,116,45,115,116,97,114,116,39,59,92,110,118,97,114,32,80,76,65,67,69,77,69,78,84,95,76,69,70,84,95,69,78,68,32,61,32,39,108,101,102,116,45,101,110,100,39,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,111,112,112,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,65,78,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,65,78,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,70,85,78,67,84,73,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,70,85,78,67,84,73,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,78,85,77,66,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,78,85,77,66,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,78,85,77,66,69,82,95,83,84,82,73,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,78,85,77,66,69,82,95,83,84,82,73,78,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,68,65,84,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,68,65,84,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,68,65,84,69,95,83,84,82,73,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,68,65,84,69,95,83,84,82,73,78,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,95,83,84,82,73,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,95,83,84,82,73,78,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,79,66,74,69,67,84,95,83,84,82,73,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,79,66,74,69,67,84,95,83,84,82,73,78,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,95,70,85,78,67,84,73,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,95,70,85,78,67,84,73,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,95,83,84,82,73,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,95,83,84,82,73,78,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,82,69,71,95,69,88,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,82,69,71,95,69,88,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,47,32,71,101,110,101,114,97,108,32,116,121,112,101,115,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,65,78,89,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,32,61,32,65,114,114,97,121,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,32,61,32,66,111,111,108,101,97,110,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,68,65,84,69,32,61,32,68,97,116,101,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,32,61,32,70,117,110,99,116,105,111,110,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,32,61,32,78,117,109,98,101,114,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,32,61,32,79,98,106,101,99,116,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,82,69,71,95,69,88,80,32,61,32,82,101,103,69,120,112,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,32,61,32,83,116,114,105,110,103,59,32,47,47,32,77,117,108,116,105,112,108,101,32,116,121,112,101,115,92,110,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,70,85,78,67,84,73,79,78,32,61,32,91,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,44,32,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,93,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,32,61,32,91,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,44,32,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,93,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,32,61,32,91,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,44,32,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,44,32,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,83,84,82,73,78,71,32,61,32,91,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,44,32,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,78,85,77,66,69,82,32,61,32,91,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,93,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,78,85,77,66,69,82,95,83,84,82,73,78,71,32,61,32,91,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,44,32,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,32,61,32,91,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,68,65,84,69,95,83,84,82,73,78,71,32,61,32,91,80,82,79,80,95,84,89,80,69,95,68,65,84,69,44,32,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,95,83,84,82,73,78,71,32,61,32,91,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,44,32,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,32,61,32,91,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,44,32,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,79,66,74,69,67,84,95,83,84,82,73,78,71,32,61,32,91,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,44,32,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,44,32,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,95,70,85,78,67,84,73,79,78,32,61,32,91,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,44,32,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,93,59,92,110,118,97,114,32,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,95,83,84,82,73,78,71,32,61,32,91,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,44,32,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,65,82,82,65,89,95,78,79,84,65,84,73,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,65,82,82,65,89,95,78,79,84,65,84,73,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,65,83,80,69,67,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,65,83,80,69,67,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,65,83,80,69,67,84,95,83,69,80,65,82,65,84,79,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,65,83,80,69,67,84,95,83,69,80,65,82,65,84,79,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,66,86,95,80,82,69,70,73,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,66,86,95,80,82,69,70,73,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,67,79,76,95,67,76,65,83,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,67,79,76,95,67,76,65,83,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,68,65,84,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,68,65,84,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,68,65,84,69,95,83,80,76,73,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,68,65,84,69,95,83,80,76,73,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,68,73,71,73,84,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,68,73,71,73,84,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,69,78,67,79,68,69,68,95,67,79,77,77,65,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,69,78,67,79,68,69,68,95,67,79,77,77,65,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,69,78,67,79,68,69,95,82,69,86,69,82,83,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,69,78,67,79,68,69,95,82,69,86,69,82,83,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,69,88,84,69,78,83,73,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,69,88,84,69,78,83,73,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,72,65,83,72,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,72,65,83,72,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,72,65,83,72,95,73,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,72,65,83,72,95,73,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,72,82,69,70,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,72,82,69,70,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,72,84,77,76,95,84,65,71,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,72,84,77,76,95,84,65,71,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,72,89,80,72,69,78,65,84,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,72,89,80,72,69,78,65,84,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,73,67,79,78,95,80,82,69,70,73,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,73,67,79,78,95,80,82,69,70,73,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,76,79,87,69,82,95,85,80,80,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,76,79,87,69,82,95,85,80,80,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,78,85,77,66,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,78,85,77,66,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,80,76,85,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,80,76,85,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,81,85,69,82,89,95,83,84,65,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,81,85,69,82,89,95,83,84,65,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,82,69,71,69,88,80,95,82,69,80,76,65,67,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,82,69,71,69,88,80,95,82,69,80,76,65,67,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,83,80,65,67,69,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,83,80,65,67,69,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,83,80,65,67,69,95,83,80,76,73,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,83,80,65,67,69,95,83,80,76,73,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,83,84,65,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,83,84,65,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,83,84,65,82,84,95,83,80,65,67,69,95,87,79,82,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,83,84,65,82,84,95,83,80,65,67,69,95,87,79,82,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,83,84,82,73,80,95,76,79,67,65,76,69,95,77,79,68,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,83,84,82,73,80,95,76,79,67,65,76,69,95,77,79,68,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,84,73,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,84,73,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,84,82,73,77,95,76,69,70,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,84,82,73,77,95,76,69,70,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,84,82,73,77,95,82,73,71,72,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,84,82,73,77,95,82,73,71,72,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,85,78,68,69,82,83,67,79,82,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,85,78,68,69,82,83,67,79,82,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,88,95,85,78,95,75,69,66,65,66,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,88,95,85,78,95,75,69,66,65,66,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,47,32,45,45,45,32,71,101,110,101,114,97,108,32,45,45,45,92,110,118,97,114,32,82,88,95,65,82,82,65,89,95,78,79,84,65,84,73,79,78,32,61,32,47,92,92,91,40,92,92,100,43,41,93,47,103,59,92,110,118,97,114,32,82,88,95,66,86,95,80,82,69,70,73,88,32,61,32,47,94,40,66,86,63,41,47,59,92,110,118,97,114,32,82,88,95,68,73,71,73,84,83,32,61,32,47,94,92,92,100,43,36,47,59,92,110,118,97,114,32,82,88,95,69,88,84,69,78,83,73,79,78,32,61,32,47,94,92,92,46,46,43,47,59,92,110,118,97,114,32,82,88,95,72,65,83,72,32,61,32,47,94,35,47,59,92,110,118,97,114,32,82,88,95,72,65,83,72,95,73,68,32,61,32,47,94,35,91,65,45,90,97,45,122,93,43,91,92,92,119,92,92,45,58,46,93,42,36,47,59,92,110,118,97,114,32,82,88,95,72,84,77,76,95,84,65,71,83,32,61,32,47,40,60,40,91,94,62,93,43,41,62,41,47,103,105,59,92,110,118,97,114,32,82,88,95,72,89,80,72,69,78,65,84,69,32,61,32,47,92,92,66,40,91,65,45,90,93,41,47,103,59,92,110,118,97,114,32,82,88,95,76,79,87,69,82,95,85,80,80,69,82,32,61,32,47,40,91,97,45,122,93,41,40,91,65,45,90,93,41,47,103,59,92,110,118,97,114,32,82,88,95,78,85,77,66,69,82,32,61,32,47,94,91,48,45,57,93,42,92,92,46,63,91,48,45,57,93,43,36,47,59,92,110,118,97,114,32,82,88,95,80,76,85,83,32,61,32,47,92,92,43,47,103,59,92,110,118,97,114,32,82,88,95,82,69,71,69,88,80,95,82,69,80,76,65,67,69,32,61,32,47,91,45,47,92,92,92,92,94,36,42,43,63,46,40,41,124,91,92,92,93,123,125,93,47,103,59,92,110,118,97,114,32,82,88,95,83,80,65,67,69,83,32,61,32,47,91,92,92,115,92,92,117,70,69,70,70,92,92,120,65,48,93,43,47,103,59,92,110,118,97,114,32,82,88,95,83,80,65,67,69,95,83,80,76,73,84,32,61,32,47,92,92,115,43,47,59,92,110,118,97,114,32,82,88,95,83,84,65,82,32,61,32,47,92,92,47,92,92,42,36,47,59,92,110,118,97,114,32,82,88,95,83,84,65,82,84,95,83,80,65,67,69,95,87,79,82,68,32,61,32,47,40,92,92,115,124,94,41,40,92,92,119,41,47,103,59,92,110,118,97,114,32,82,88,95,84,82,73,77,95,76,69,70,84,32,61,32,47,94,92,92,115,43,47,59,92,110,118,97,114,32,82,88,95,84,82,73,77,95,82,73,71,72,84,32,61,32,47,92,92,115,43,36,47,59,92,110,118,97,114,32,82,88,95,85,78,68,69,82,83,67,79,82,69,32,61,32,47,95,47,103,59,92,110,118,97,114,32,82,88,95,85,78,95,75,69,66,65,66,32,61,32,47,45,40,92,92,119,41,47,103,59,32,47,47,32,45,45,45,32,68,97,116,101,32,45,45,45,92,110,47,47,32,76,111,111,115,101,32,89,89,89,89,45,77,77,45,68,68,32,109,97,116,99,104,105,110,103,44,32,105,103,110,111,114,101,115,32,97,110,121,32,97,112,112,101,110,100,101,100,32,116,105,109,101,32,105,110,102,111,114,97,116,105,111,110,92,110,47,47,32,77,97,116,99,104,101,115,32,39,49,57,57,57,45,49,50,45,50,48,39,44,32,39,49,57,57,57,45,49,45,49,39,44,32,39,49,57,57,57,45,48,49,45,50,48,84,50,50,58,53,49,58,52,57,46,49,49,56,90,39,44,32,39,49,57,57,57,45,48,49,45,48,50,32,49,51,58,48,48,58,48,48,39,92,110,92,110,118,97,114,32,82,88,95,68,65,84,69,32,61,32,47,94,92,92,100,43,45,92,92,100,92,92,100,63,45,92,92,100,92,92,100,63,40,63,58,92,92,115,124,84,124,36,41,47,59,32,47,47,32,85,115,101,100,32,116,111,32,115,112,108,105,116,32,111,102,102,32,116,104,101,32,100,97,116,101,32,112,97,114,116,115,32,111,102,32,116,104,101,32,89,89,89,89,45,77,77,45,68,68,32,115,116,114,105,110,103,92,110,92,110,118,97,114,32,82,88,95,68,65,84,69,95,83,80,76,73,84,32,61,32,47,45,124,92,92,115,124,84,47,59,32,47,47,32,84,105,109,101,32,115,116,114,105,110,103,32,82,101,103,69,120,32,40,111,112,116,105,111,110,97,108,32,115,101,99,111,110,100,115,41,92,110,92,110,118,97,114,32,82,88,95,84,73,77,69,32,61,32,47,94,40,91,48,45,49,93,63,91,48,45,57,93,124,50,91,48,45,51,93,41,58,91,48,45,53,93,63,91,48,45,57,93,40,58,91,48,45,53,93,63,91,48,45,57,93,41,63,36,47,59,32,47,47,32,45,45,45,32,85,82,76,32,45,45,45,92,110,47,47,32,72,82,69,70,115,32,109,117,115,116,32,101,110,100,32,119,105,116,104,32,97,32,104,97,115,104,32,102,111,108,108,111,119,101,100,32,98,121,32,97,116,32,108,101,97,115,116,32,111,110,101,32,110,111,110,45,104,97,115,104,32,99,104,97,114,97,99,116,101,114,92,110,92,110,118,97,114,32,82,88,95,72,82,69,70,32,61,32,47,94,46,42,40,35,91,94,35,93,43,41,36,47,59,92,110,118,97,114,32,82,88,95,69,78,67,79,68,69,68,95,67,79,77,77,65,32,61,32,47,37,50,67,47,103,59,92,110,118,97,114,32,82,88,95,69,78,67,79,68,69,95,82,69,86,69,82,83,69,32,61,32,47,91,33,39,40,41,42,93,47,103,59,92,110,118,97,114,32,82,88,95,81,85,69,82,89,95,83,84,65,82,84,32,61,32,47,94,40,92,92,63,124,35,124,38,41,47,59,32,47,47,32,45,45,45,32,65,115,112,101,99,116,32,45,45,45,92,110,92,110,118,97,114,32,82,88,95,65,83,80,69,67,84,32,61,32,47,94,92,92,100,43,40,92,92,46,92,92,100,42,41,63,91,47,58,93,92,92,100,43,40,92,92,46,92,92,100,42,41,63,36,47,59,92,110,118,97,114,32,82,88,95,65,83,80,69,67,84,95,83,69,80,65,82,65,84,79,82,32,61,32,47,91,47,58,93,47,59,32,47,47,32,45,45,45,32,71,114,105,100,32,45,45,45,92,110,92,110,118,97,114,32,82,88,95,67,79,76,95,67,76,65,83,83,32,61,32,47,94,99,111,108,45,47,59,32,47,47,32,45,45,45,32,73,99,111,110,32,45,45,45,92,110,92,110,118,97,114,32,82,88,95,73,67,79,78,95,80,82,69,70,73,88,32,61,32,47,94,66,73,99,111,110,47,59,32,47,47,32,45,45,45,32,76,111,99,97,108,101,32,45,45,45,92,110,92,110,118,97,114,32,82,88,95,83,84,82,73,80,95,76,79,67,65,76,69,95,77,79,68,83,32,61,32,47,45,117,45,46,43,47,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,108,101,109,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,108,101,109,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,105,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,105,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,72,84,77,76,69,108,101,109,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,72,84,77,76,69,108,101,109,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,86,71,69,108,101,109,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,86,71,69,108,101,109,101,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,116,121,112,101,111,102,40,111,98,106,41,32,123,32,92,34,64,98,97,98,101,108,47,104,101,108,112,101,114,115,32,45,32,116,121,112,101,111,102,92,34,59,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,61,61,61,32,92,34,115,121,109,98,111,108,92,34,41,32,123,32,95,116,121,112,101,111,102,32,61,32,102,117,110,99,116,105,111,110,32,95,116,121,112,101,111,102,40,111,98,106,41,32,123,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,111,98,106,59,32,125,59,32,125,32,101,108,115,101,32,123,32,95,116,121,112,101,111,102,32,61,32,102,117,110,99,116,105,111,110,32,95,116,121,112,101,111,102,40,111,98,106,41,32,123,32,114,101,116,117,114,110,32,111,98,106,32,38,38,32,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,111,98,106,46,99,111,110,115,116,114,117,99,116,111,114,32,61,61,61,32,83,121,109,98,111,108,32,38,38,32,111,98,106,32,33,61,61,32,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,32,63,32,92,34,115,121,109,98,111,108,92,34,32,58,32,116,121,112,101,111,102,32,111,98,106,59,32,125,59,32,125,32,114,101,116,117,114,110,32,95,116,121,112,101,111,102,40,111,98,106,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,105,110,115,116,97,110,99,101,44,32,67,111,110,115,116,114,117,99,116,111,114,41,32,123,32,105,102,32,40,33,40,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,67,111,110,115,116,114,117,99,116,111,114,41,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,110,104,101,114,105,116,115,40,115,117,98,67,108,97,115,115,44,32,115,117,112,101,114,67,108,97,115,115,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,115,117,112,101,114,67,108,97,115,115,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,115,117,112,101,114,67,108,97,115,115,32,33,61,61,32,110,117,108,108,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,32,125,32,115,117,98,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,115,117,112,101,114,67,108,97,115,115,32,38,38,32,115,117,112,101,114,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,44,32,123,32,99,111,110,115,116,114,117,99,116,111,114,58,32,123,32,118,97,108,117,101,58,32,115,117,98,67,108,97,115,115,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,32,125,41,59,32,105,102,32,40,115,117,112,101,114,67,108,97,115,115,41,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,115,117,98,67,108,97,115,115,44,32,115,117,112,101,114,67,108,97,115,115,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,99,114,101,97,116,101,83,117,112,101,114,40,68,101,114,105,118,101,100,41,32,123,32,118,97,114,32,104,97,115,78,97,116,105,118,101,82,101,102,108,101,99,116,67,111,110,115,116,114,117,99,116,32,61,32,95,105,115,78,97,116,105,118,101,82,101,102,108,101,99,116,67,111,110,115,116,114,117,99,116,40,41,59,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,95,99,114,101,97,116,101,83,117,112,101,114,73,110,116,101,114,110,97,108,40,41,32,123,32,118,97,114,32,83,117,112,101,114,32,61,32,95,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,68,101,114,105,118,101,100,41,44,32,114,101,115,117,108,116,59,32,105,102,32,40,104,97,115,78,97,116,105,118,101,82,101,102,108,101,99,116,67,111,110,115,116,114,117,99,116,41,32,123,32,118,97,114,32,78,101,119,84,97,114,103,101,116,32,61,32,95,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,41,46,99,111,110,115,116,114,117,99,116,111,114,59,32,114,101,115,117,108,116,32,61,32,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,40,83,117,112,101,114,44,32,97,114,103,117,109,101,110,116,115,44,32,78,101,119,84,97,114,103,101,116,41,59,32,125,32,101,108,115,101,32,123,32,114,101,115,117,108,116,32,61,32,83,117,112,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,32,125,32,114,101,116,117,114,110,32,95,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,40,116,104,105,115,44,32,114,101,115,117,108,116,41,59,32,125,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,40,115,101,108,102,44,32,99,97,108,108,41,32,123,32,105,102,32,40,99,97,108,108,32,38,38,32,40,95,116,121,112,101,111,102,40,99,97,108,108,41,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,32,124,124,32,116,121,112,101,111,102,32,99,97,108,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,41,32,123,32,114,101,116,117,114,110,32,99,97,108,108,59,32,125,32,114,101,116,117,114,110,32,95,97,115,115,101,114,116,84,104,105,115,73,110,105,116,105,97,108,105,122,101,100,40,115,101,108,102,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,115,115,101,114,116,84,104,105,115,73,110,105,116,105,97,108,105,122,101,100,40,115,101,108,102,41,32,123,32,105,102,32,40,115,101,108,102,32,61,61,61,32,118,111,105,100,32,48,41,32,123,32,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,92,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,92,34,41,59,32,125,32,114,101,116,117,114,110,32,115,101,108,102,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,119,114,97,112,78,97,116,105,118,101,83,117,112,101,114,40,67,108,97,115,115,41,32,123,32,118,97,114,32,95,99,97,99,104,101,32,61,32,116,121,112,101,111,102,32,77,97,112,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,110,101,119,32,77,97,112,40,41,32,58,32,117,110,100,101,102,105,110,101,100,59,32,95,119,114,97,112,78,97,116,105,118,101,83,117,112,101,114,32,61,32,102,117,110,99,116,105,111,110,32,95,119,114,97,112,78,97,116,105,118,101,83,117,112,101,114,40,67,108,97,115,115,41,32,123,32,105,102,32,40,67,108,97,115,115,32,61,61,61,32,110,117,108,108,32,124,124,32,33,95,105,115,78,97,116,105,118,101,70,117,110,99,116,105,111,110,40,67,108,97,115,115,41,41,32,114,101,116,117,114,110,32,67,108,97,115,115,59,32,105,102,32,40,116,121,112,101,111,102,32,67,108,97,115,115,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,32,125,32,105,102,32,40,116,121,112,101,111,102,32,95,99,97,99,104,101,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,41,32,123,32,105,102,32,40,95,99,97,99,104,101,46,104,97,115,40,67,108,97,115,115,41,41,32,114,101,116,117,114,110,32,95,99,97,99,104,101,46,103,101,116,40,67,108,97,115,115,41,59,32,95,99,97,99,104,101,46,115,101,116,40,67,108,97,115,115,44,32,87,114,97,112,112,101,114,41,59,32,125,32,102,117,110,99,116,105,111,110,32,87,114,97,112,112,101,114,40,41,32,123,32,114,101,116,117,114,110,32,95,99,111,110,115,116,114,117,99,116,40,67,108,97,115,115,44,32,97,114,103,117,109,101,110,116,115,44,32,95,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,41,46,99,111,110,115,116,114,117,99,116,111,114,41,59,32,125,32,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,44,32,123,32,99,111,110,115,116,114,117,99,116,111,114,58,32,123,32,118,97,108,117,101,58,32,87,114,97,112,112,101,114,44,32,101,110,117,109,101,114,97,98,108,101,58,32,102,97,108,115,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,32,125,41,59,32,114,101,116,117,114,110,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,87,114,97,112,112,101,114,44,32,67,108,97,115,115,41,59,32,125,59,32,114,101,116,117,114,110,32,95,119,114,97,112,78,97,116,105,118,101,83,117,112,101,114,40,67,108,97,115,115,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,99,111,110,115,116,114,117,99,116,40,80,97,114,101,110,116,44,32,97,114,103,115,44,32,67,108,97,115,115,41,32,123,32,105,102,32,40,95,105,115,78,97,116,105,118,101,82,101,102,108,101,99,116,67,111,110,115,116,114,117,99,116,40,41,41,32,123,32,95,99,111,110,115,116,114,117,99,116,32,61,32,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,59,32,125,32,101,108,115,101,32,123,32,95,99,111,110,115,116,114,117,99,116,32,61,32,102,117,110,99,116,105,111,110,32,95,99,111,110,115,116,114,117,99,116,40,80,97,114,101,110,116,44,32,97,114,103,115,44,32,67,108,97,115,115,41,32,123,32,118,97,114,32,97,32,61,32,91,110,117,108,108,93,59,32,97,46,112,117,115,104,46,97,112,112,108,121,40,97,44,32,97,114,103,115,41,59,32,118,97,114,32,67,111,110,115,116,114,117,99,116,111,114,32,61,32,70,117,110,99,116,105,111,110,46,98,105,110,100,46,97,112,112,108,121,40,80,97,114,101,110,116,44,32,97,41,59,32,118,97,114,32,105,110,115,116,97,110,99,101,32,61,32,110,101,119,32,67,111,110,115,116,114,117,99,116,111,114,40,41,59,32,105,102,32,40,67,108,97,115,115,41,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,105,110,115,116,97,110,99,101,44,32,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,41,59,32,114,101,116,117,114,110,32,105,110,115,116,97,110,99,101,59,32,125,59,32,125,32,114,101,116,117,114,110,32,95,99,111,110,115,116,114,117,99,116,46,97,112,112,108,121,40,110,117,108,108,44,32,97,114,103,117,109,101,110,116,115,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,115,78,97,116,105,118,101,82,101,102,108,101,99,116,67,111,110,115,116,114,117,99,116,40,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,82,101,102,108,101,99,116,32,61,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,124,124,32,33,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,32,105,102,32,40,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,46,115,104,97,109,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,32,105,102,32,40,116,121,112,101,111,102,32,80,114,111,120,121,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,114,101,116,117,114,110,32,116,114,117,101,59,32,116,114,121,32,123,32,68,97,116,101,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,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,40,68,97,116,101,44,32,91,93,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,125,41,41,59,32,114,101,116,117,114,110,32,116,114,117,101,59,32,125,32,99,97,116,99,104,32,40,101,41,32,123,32,114,101,116,117,114,110,32,102,97,108,115,101,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,115,78,97,116,105,118,101,70,117,110,99,116,105,111,110,40,102,110,41,32,123,32,114,101,116,117,114,110,32,70,117,110,99,116,105,111,110,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,102,110,41,46,105,110,100,101,120,79,102,40,92,34,91,110,97,116,105,118,101,32,99,111,100,101,93,92,34,41,32,33,61,61,32,45,49,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,44,32,112,41,32,123,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,32,61,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,32,124,124,32,102,117,110,99,116,105,111,110,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,44,32,112,41,32,123,32,111,46,95,95,112,114,111,116,111,95,95,32,61,32,112,59,32,114,101,116,117,114,110,32,111,59,32,125,59,32,114,101,116,117,114,110,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,44,32,112,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,41,32,123,32,95,103,101,116,80,114,111,116,111,116,121,112,101,79,102,32,61,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,32,63,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,32,58,32,102,117,110,99,116,105,111,110,32,95,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,95,95,112,114,111,116,111,95,95,32,124,124,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,41,59,32,125,59,32,114,101,116,117,114,110,32,95,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,41,59,32,125,92,110,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,118,97,114,32,69,108,101,109,101,110,116,32,61,32,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,72,65,83,95,87,73,78,68,79,87,95,83,85,80,80,79,82,84,32,63,32,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,87,73,78,68,79,87,46,69,108,101,109,101,110,116,32,58,32,47,42,35,95,95,80,85,82,69,95,95,42,47,102,117,110,99,116,105,111,110,32,40,95,79,98,106,101,99,116,41,32,123,92,110,32,32,95,105,110,104,101,114,105,116,115,40,69,108,101,109,101,110,116,44,32,95,79,98,106,101,99,116,41,59,92,110,92,110,32,32,118,97,114,32,95,115,117,112,101,114,32,61,32,95,99,114,101,97,116,101,83,117,112,101,114,40,69,108,101,109,101,110,116,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,69,108,101,109,101,110,116,40,41,32,123,92,110,32,32,32,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,69,108,101,109,101,110,116,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,117,112,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,69,108,101,109,101,110,116,59,92,110,125,40,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,119,114,97,112,78,97,116,105,118,101,83,117,112,101,114,40,79,98,106,101,99,116,41,41,59,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,118,97,114,32,72,84,77,76,69,108,101,109,101,110,116,32,61,32,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,72,65,83,95,87,73,78,68,79,87,95,83,85,80,80,79,82,84,32,63,32,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,87,73,78,68,79,87,46,72,84,77,76,69,108,101,109,101,110,116,32,58,32,47,42,35,95,95,80,85,82,69,95,95,42,47,102,117,110,99,116,105,111,110,32,40,95,69,108,101,109,101,110,116,41,32,123,92,110,32,32,95,105,110,104,101,114,105,116,115,40,72,84,77,76,69,108,101,109,101,110,116,44,32,95,69,108,101,109,101,110,116,41,59,92,110,92,110,32,32,118,97,114,32,95,115,117,112,101,114,50,32,61,32,95,99,114,101,97,116,101,83,117,112,101,114,40,72,84,77,76,69,108,101,109,101,110,116,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,72,84,77,76,69,108,101,109,101,110,116,40,41,32,123,92,110,32,32,32,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,72,84,77,76,69,108,101,109,101,110,116,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,117,112,101,114,50,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,72,84,77,76,69,108,101,109,101,110,116,59,92,110,125,40,69,108,101,109,101,110,116,41,59,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,118,97,114,32,83,86,71,69,108,101,109,101,110,116,32,61,32,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,72,65,83,95,87,73,78,68,79,87,95,83,85,80,80,79,82,84,32,63,32,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,87,73,78,68,79,87,46,83,86,71,69,108,101,109,101,110,116,32,58,32,47,42,35,95,95,80,85,82,69,95,95,42,47,102,117,110,99,116,105,111,110,32,40,95,69,108,101,109,101,110,116,50,41,32,123,92,110,32,32,95,105,110,104,101,114,105,116,115,40,83,86,71,69,108,101,109,101,110,116,44,32,95,69,108,101,109,101,110,116,50,41,59,92,110,92,110,32,32,118,97,114,32,95,115,117,112,101,114,51,32,61,32,95,99,114,101,97,116,101,83,117,112,101,114,40,83,86,71,69,108,101,109,101,110,116,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,83,86,71,69,108,101,109,101,110,116,40,41,32,123,92,110,32,32,32,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,83,86,71,69,108,101,109,101,110,116,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,117,112,101,114,51,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,83,86,71,69,108,101,109,101,110,116,59,92,110,125,40,69,108,101,109,101,110,116,41,59,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,118,97,114,32,70,105,108,101,32,61,32,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,72,65,83,95,87,73,78,68,79,87,95,83,85,80,80,79,82,84,32,63,32,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,87,73,78,68,79,87,46,70,105,108,101,32,58,32,47,42,35,95,95,80,85,82,69,95,95,42,47,102,117,110,99,116,105,111,110,32,40,95,79,98,106,101,99,116,50,41,32,123,92,110,32,32,95,105,110,104,101,114,105,116,115,40,70,105,108,101,44,32,95,79,98,106,101,99,116,50,41,59,92,110,92,110,32,32,118,97,114,32,95,115,117,112,101,114,52,32,61,32,95,99,114,101,97,116,101,83,117,112,101,114,40,70,105,108,101,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,70,105,108,101,40,41,32,123,92,110,32,32,32,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,70,105,108,101,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,95,115,117,112,101,114,52,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,70,105,108,101,59,92,110,125,40,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,119,114,97,112,78,97,116,105,118,101,83,117,112,101,114,40,79,98,106,101,99,116,41,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,65,68,68,95,66,85,84,84,79,78,95,84,69,88,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,65,68,68,95,66,85,84,84,79,78,95,84,69,88,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,65,80,80,69,78,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,65,80,80,69,78,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,65,83,73,68,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,65,83,73,68,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,66,65,68,71,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,66,65,68,71,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,66,79,84,84,79,77,95,82,79,87,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,66,79,84,84,79,77,95,82,79,87,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,66,85,84,84,79,78,95,67,79,78,84,69,78,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,66,85,84,84,79,78,95,67,79,78,84,69,78,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,67,85,83,84,79,77,95,70,79,79,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,67,85,83,84,79,77,95,70,79,79,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,68,69,67,82,69,77,69,78,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,68,69,67,82,69,77,69,78,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,68,69,83,67,82,73,80,84,73,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,68,69,83,67,82,73,80,84,73,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,68,73,83,77,73,83,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,68,73,83,77,73,83,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,68,82,79,80,95,80,76,65,67,69,72,79,76,68,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,68,82,79,80,95,80,76,65,67,69,72,79,76,68,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,69,76,76,73,80,83,73,83,95,84,69,88,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,69,76,76,73,80,83,73,83,95,84,69,88,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,69,77,80,84,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,69,77,80,84,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,69,77,80,84,89,70,73,76,84,69,82,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,69,77,80,84,89,70,73,76,84,69,82,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,70,73,76,69,95,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,70,73,76,69,95,78,65,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,70,73,82,83,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,70,73,82,83,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,70,73,82,83,84,95,84,69,88,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,70,73,82,83,84,95,84,69,88,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,70,79,79,84,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,70,79,79,84,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,72,69,65,68,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,72,69,65,68,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,72,69,65,68,69,82,95,67,76,79,83,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,72,69,65,68,69,82,95,67,76,79,83,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,67,76,69,65,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,67,76,69,65,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,69,77,80,84,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,69,77,80,84,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,70,85,76,76,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,70,85,76,76,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,72,65,76,70,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,72,65,76,70,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,73,77,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,73,77,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,73,78,67,82,69,77,69,78,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,73,78,67,82,69,77,69,78,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,73,78,86,65,76,73,68,95,70,69,69,68,66,65,67,75,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,73,78,86,65,76,73,68,95,70,69,69,68,66,65,67,75,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,76,65,66,69,76,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,76,65,66,69,76,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,76,65,83,84,95,84,69,88,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,76,65,83,84,95,84,69,88,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,76,69,65,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,76,69,65,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,76,79,65,68,73,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,76,79,65,68,73,78,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,66,65,67,75,68,82,79,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,66,65,67,75,68,82,79,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,67,65,78,67,69,76,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,67,65,78,67,69,76,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,70,79,79,84,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,70,79,79,84,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,72,69,65,68,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,72,69,65,68,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,72,69,65,68,69,82,95,67,76,79,83,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,72,69,65,68,69,82,95,67,76,79,83,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,79,75,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,79,75,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,84,73,84,76,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,84,73,84,76,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,78,65,86,95,78,69,88,84,95,68,69,67,65,68,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,78,65,86,95,78,69,88,84,95,68,69,67,65,68,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,78,65,86,95,78,69,88,84,95,77,79,78,84,72,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,78,65,86,95,78,69,88,84,95,77,79,78,84,72,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,78,65,86,95,78,69,88,84,95,89,69,65,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,78,65,86,95,78,69,88,84,95,89,69,65,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,78,65,86,95,80,69,86,95,68,69,67,65,68,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,78,65,86,95,80,69,86,95,68,69,67,65,68,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,78,65,86,95,80,69,86,95,77,79,78,84,72,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,78,65,86,95,80,69,86,95,77,79,78,84,72,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,78,65,86,95,80,69,86,95,89,69,65,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,78,65,86,95,80,69,86,95,89,69,65,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,78,65,86,95,84,72,73,83,95,77,79,78,84,72,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,78,65,86,95,84,72,73,83,95,77,79,78,84,72,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,78,69,88,84,95,84,69,88,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,78,69,88,84,95,84,69,88,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,79,86,69,82,76,65,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,79,86,69,82,76,65,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,80,65,71,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,80,65,71,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,80,76,65,67,69,72,79,76,68,69,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,80,76,65,67,69,72,79,76,68,69,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,80,82,69,80,69,78,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,80,82,69,80,69,78,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,80,82,69,86,95,84,69,88,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,80,82,69,86,95,84,69,88,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,82,79,87,95,68,69,84,65,73,76,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,82,79,87,95,68,69,84,65,73,76,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,66,85,83,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,66,85,83,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,67,65,80,84,73,79,78,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,67,65,80,84,73,79,78,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,67,79,76,71,82,79,85,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,67,79,76,71,82,79,85,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,84,65,66,83,95,69,78,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,84,65,66,83,95,69,78,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,84,65,66,83,95,83,84,65,82,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,84,65,66,83,95,83,84,65,82,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,84,69,88,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,84,69,88,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,84,72,69,65,68,95,84,79,80,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,84,72,69,65,68,95,84,79,80,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,84,73,84,76,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,84,73,84,76,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,84,79,65,83,84,95,84,73,84,76,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,84,79,65,83,84,95,84,73,84,76,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,84,79,80,95,82,79,87,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,84,79,80,95,82,79,87,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,76,79,84,95,78,65,77,69,95,86,65,76,73,68,95,70,69,69,68,66,65,67,75,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,76,79,84,95,78,65,77,69,95,86,65,76,73,68,95,70,69,69,68,66,65,67,75,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,65,68,68,95,66,85,84,84,79,78,95,84,69,88,84,32,61,32,39,97,100,100,45,98,117,116,116,111,110,45,116,101,120,116,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,65,80,80,69,78,68,32,61,32,39,97,112,112,101,110,100,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,65,83,73,68,69,32,61,32,39,97,115,105,100,101,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,66,65,68,71,69,32,61,32,39,98,97,100,103,101,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,66,79,84,84,79,77,95,82,79,87,32,61,32,39,98,111,116,116,111,109,45,114,111,119,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,66,85,84,84,79,78,95,67,79,78,84,69,78,84,32,61,32,39,98,117,116,116,111,110,45,99,111,110,116,101,110,116,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,67,85,83,84,79,77,95,70,79,79,84,32,61,32,39,99,117,115,116,111,109,45,102,111,111,116,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,68,69,67,82,69,77,69,78,84,32,61,32,39,100,101,99,114,101,109,101,110,116,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,32,61,32,39,100,101,102,97,117,108,116,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,68,69,83,67,82,73,80,84,73,79,78,32,61,32,39,100,101,115,99,114,105,112,116,105,111,110,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,68,73,83,77,73,83,83,32,61,32,39,100,105,115,109,105,115,115,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,68,82,79,80,95,80,76,65,67,69,72,79,76,68,69,82,32,61,32,39,100,114,111,112,45,112,108,97,99,101,104,111,108,100,101,114,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,69,76,76,73,80,83,73,83,95,84,69,88,84,32,61,32,39,101,108,108,105,112,115,105,115,45,116,101,120,116,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,69,77,80,84,89,32,61,32,39,101,109,112,116,121,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,69,77,80,84,89,70,73,76,84,69,82,69,68,32,61,32,39,101,109,112,116,121,102,105,108,116,101,114,101,100,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,70,73,76,69,95,78,65,77,69,32,61,32,39,102,105,108,101,45,110,97,109,101,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,70,73,82,83,84,32,61,32,39,102,105,114,115,116,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,70,73,82,83,84,95,84,69,88,84,32,61,32,39,102,105,114,115,116,45,116,101,120,116,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,70,79,79,84,69,82,32,61,32,39,102,111,111,116,101,114,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,72,69,65,68,69,82,32,61,32,39,104,101,97,100,101,114,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,72,69,65,68,69,82,95,67,76,79,83,69,32,61,32,39,104,101,97,100,101,114,45,99,108,111,115,101,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,67,76,69,65,82,32,61,32,39,105,99,111,110,45,99,108,101,97,114,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,69,77,80,84,89,32,61,32,39,105,99,111,110,45,101,109,112,116,121,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,70,85,76,76,32,61,32,39,105,99,111,110,45,102,117,108,108,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,73,67,79,78,95,72,65,76,70,32,61,32,39,105,99,111,110,45,104,97,108,102,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,73,77,71,32,61,32,39,105,109,103,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,73,78,67,82,69,77,69,78,84,32,61,32,39,105,110,99,114,101,109,101,110,116,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,73,78,86,65,76,73,68,95,70,69,69,68,66,65,67,75,32,61,32,39,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,76,65,66,69,76,32,61,32,39,108,97,98,101,108,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,76,65,83,84,95,84,69,88,84,32,61,32,39,108,97,115,116,45,116,101,120,116,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,76,69,65,68,32,61,32,39,108,101,97,100,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,76,79,65,68,73,78,71,32,61,32,39,108,111,97,100,105,110,103,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,66,65,67,75,68,82,79,80,32,61,32,39,109,111,100,97,108,45,98,97,99,107,100,114,111,112,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,67,65,78,67,69,76,32,61,32,39,109,111,100,97,108,45,99,97,110,99,101,108,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,70,79,79,84,69,82,32,61,32,39,109,111,100,97,108,45,102,111,111,116,101,114,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,72,69,65,68,69,82,32,61,32,39,109,111,100,97,108,45,104,101,97,100,101,114,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,72,69,65,68,69,82,95,67,76,79,83,69,32,61,32,39,109,111,100,97,108,45,104,101,97,100,101,114,45,99,108,111,115,101,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,79,75,32,61,32,39,109,111,100,97,108,45,111,107,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,77,79,68,65,76,95,84,73,84,76,69,32,61,32,39,109,111,100,97,108,45,116,105,116,108,101,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,78,65,86,95,78,69,88,84,95,68,69,67,65,68,69,32,61,32,39,110,97,118,45,110,101,120,116,45,100,101,99,97,100,101,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,78,65,86,95,78,69,88,84,95,77,79,78,84,72,32,61,32,39,110,97,118,45,110,101,120,116,45,109,111,110,116,104,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,78,65,86,95,78,69,88,84,95,89,69,65,82,32,61,32,39,110,97,118,45,110,101,120,116,45,121,101,97,114,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,78,65,86,95,80,69,86,95,68,69,67,65,68,69,32,61,32,39,110,97,118,45,112,114,101,118,45,100,101,99,97,100,101,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,78,65,86,95,80,69,86,95,77,79,78,84,72,32,61,32,39,110,97,118,45,112,114,101,118,45,109,111,110,116,104,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,78,65,86,95,80,69,86,95,89,69,65,82,32,61,32,39,110,97,118,45,112,114,101,118,45,121,101,97,114,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,78,65,86,95,84,72,73,83,95,77,79,78,84,72,32,61,32,39,110,97,118,45,116,104,105,115,45,109,111,110,116,104,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,78,69,88,84,95,84,69,88,84,32,61,32,39,110,101,120,116,45,116,101,120,116,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,79,86,69,82,76,65,89,32,61,32,39,111,118,101,114,108,97,121,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,80,65,71,69,32,61,32,39,112,97,103,101,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,80,76,65,67,69,72,79,76,68,69,82,32,61,32,39,112,108,97,99,101,104,111,108,100,101,114,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,80,82,69,80,69,78,68,32,61,32,39,112,114,101,112,101,110,100,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,80,82,69,86,95,84,69,88,84,32,61,32,39,112,114,101,118,45,116,101,120,116,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,82,79,87,95,68,69,84,65,73,76,83,32,61,32,39,114,111,119,45,100,101,116,97,105,108,115,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,66,85,83,89,32,61,32,39,116,97,98,108,101,45,98,117,115,121,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,67,65,80,84,73,79,78,32,61,32,39,116,97,98,108,101,45,99,97,112,116,105,111,110,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,84,65,66,76,69,95,67,79,76,71,82,79,85,80,32,61,32,39,116,97,98,108,101,45,99,111,108,103,114,111,117,112,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,84,65,66,83,95,69,78,68,32,61,32,39,116,97,98,115,45,101,110,100,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,84,65,66,83,95,83,84,65,82,84,32,61,32,39,116,97,98,115,45,115,116,97,114,116,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,84,69,88,84,32,61,32,39,116,101,120,116,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,84,72,69,65,68,95,84,79,80,32,61,32,39,116,104,101,97,100,45,116,111,112,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,84,73,84,76,69,32,61,32,39,116,105,116,108,101,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,84,79,65,83,84,95,84,73,84,76,69,32,61,32,39,116,111,97,115,116,45,116,105,116,108,101,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,84,79,80,95,82,79,87,32,61,32,39,116,111,112,45,114,111,119,39,59,92,110,118,97,114,32,83,76,79,84,95,78,65,77,69,95,86,65,76,73,68,95,70,69,69,68,66,65,67,75,32,61,32,39,118,97,108,105,100,45,102,101,101,100,98,97,99,107,39,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,104,111,118,101,114,47,104,111,118,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,104,111,118,101,114,47,104,111,118,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,72,111,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,86,66,72,111,118,101,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,47,32,118,45,98,45,104,111,118,101,114,32,100,105,114,101,99,116,105,118,101,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,80,82,79,80,32,61,32,39,95,95,66,86,95,104,111,118,101,114,95,104,97,110,100,108,101,114,95,95,39,59,92,110,118,97,114,32,77,79,85,83,69,69,78,84,69,82,32,61,32,39,109,111,117,115,101,101,110,116,101,114,39,59,92,110,118,97,114,32,77,79,85,83,69,76,69,65,86,69,32,61,32,39,109,111,117,115,101,108,101,97,118,101,39,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,92,110,118,97,114,32,99,114,101,97,116,101,76,105,115,116,101,110,101,114,32,61,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,76,105,115,116,101,110,101,114,40,104,97,110,100,108,101,114,41,32,123,92,110,32,32,118,97,114,32,108,105,115,116,101,110,101,114,32,61,32,102,117,110,99,116,105,111,110,32,108,105,115,116,101,110,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,104,97,110,100,108,101,114,40,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,77,79,85,83,69,69,78,84,69,82,44,32,101,118,101,110,116,41,59,92,110,32,32,125,59,92,110,92,110,32,32,108,105,115,116,101,110,101,114,46,102,110,32,61,32,104,97,110,100,108,101,114,59,92,110,32,32,114,101,116,117,114,110,32,108,105,115,116,101,110,101,114,59,92,110,125,59,92,110,92,110,118,97,114,32,117,112,100,97,116,101,76,105,115,116,101,110,101,114,115,32,61,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,76,105,115,116,101,110,101,114,115,40,111,110,44,32,101,108,44,32,108,105,115,116,101,110,101,114,41,32,123,92,110,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,79,102,102,41,40,111,110,44,32,101,108,44,32,77,79,85,83,69,69,78,84,69,82,44,32,108,105,115,116,101,110,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,79,102,102,41,40,111,110,44,32,101,108,44,32,77,79,85,83,69,76,69,65,86,69,44,32,108,105,115,116,101,110,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,125,59,32,47,47,32,45,45,45,32,68,105,114,101,99,116,105,118,101,32,98,105,110,100,47,117,110,98,105,110,100,47,117,112,100,97,116,101,32,104,97,110,100,108,101,114,32,45,45,45,92,110,92,110,92,110,118,97,114,32,100,105,114,101,99,116,105,118,101,32,61,32,102,117,110,99,116,105,111,110,32,100,105,114,101,99,116,105,118,101,40,101,108,44,32,95,114,101,102,41,32,123,92,110,32,32,118,97,114,32,95,114,101,102,36,118,97,108,117,101,32,61,32,95,114,101,102,46,118,97,108,117,101,44,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,32,61,32,95,114,101,102,36,118,97,108,117,101,32,61,61,61,32,118,111,105,100,32,48,32,63,32,110,117,108,108,32,58,32,95,114,101,102,36,118,97,108,117,101,59,92,110,92,110,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,73,83,95,66,82,79,87,83,69,82,41,32,123,92,110,32,32,32,32,118,97,114,32,108,105,115,116,101,110,101,114,32,61,32,101,108,91,80,82,79,80,93,59,92,110,32,32,32,32,118,97,114,32,104,97,115,76,105,115,116,101,110,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,108,105,115,116,101,110,101,114,41,59,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,67,104,97,110,103,101,100,32,61,32,33,40,104,97,115,76,105,115,116,101,110,101,114,32,38,38,32,108,105,115,116,101,110,101,114,46,102,110,32,61,61,61,32,104,97,110,100,108,101,114,41,59,92,110,92,110,32,32,32,32,105,102,32,40,104,97,115,76,105,115,116,101,110,101,114,32,38,38,32,104,97,110,100,108,101,114,67,104,97,110,103,101,100,41,32,123,92,110,32,32,32,32,32,32,117,112,100,97,116,101,76,105,115,116,101,110,101,114,115,40,102,97,108,115,101,44,32,101,108,44,32,108,105,115,116,101,110,101,114,41,59,92,110,32,32,32,32,32,32,100,101,108,101,116,101,32,101,108,91,80,82,79,80,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,104,97,110,100,108,101,114,41,32,38,38,32,104,97,110,100,108,101,114,67,104,97,110,103,101,100,41,32,123,92,110,32,32,32,32,32,32,101,108,91,80,82,79,80,93,32,61,32,99,114,101,97,116,101,76,105,115,116,101,110,101,114,40,104,97,110,100,108,101,114,41,59,92,110,32,32,32,32,32,32,117,112,100,97,116,101,76,105,115,116,101,110,101,114,115,40,116,114,117,101,44,32,101,108,44,32,101,108,91,80,82,79,80,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,32,47,47,32,86,66,72,111,118,101,114,32,100,105,114,101,99,116,105,118,101,92,110,92,110,92,110,118,97,114,32,86,66,72,111,118,101,114,32,61,32,123,92,110,32,32,98,105,110,100,58,32,100,105,114,101,99,116,105,118,101,44,92,110,32,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,32,100,105,114,101,99,116,105,118,101,44,92,110,32,32,117,110,98,105,110,100,58,32,102,117,110,99,116,105,111,110,32,117,110,98,105,110,100,40,101,108,41,32,123,92,110,32,32,32,32,100,105,114,101,99,116,105,118,101,40,101,108,44,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,110,117,108,108,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,104,111,118,101,114,47,104,111,118,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,104,111,118,101,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,104,111,118,101,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,72,111,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,104,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,86,66,72,111,118,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,72,111,118,101,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,86,66,72,111,118,101,114,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,104,111,118,101,114,47,104,111,118,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,86,66,72,111,118,101,114,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,100,105,114,101,99,116,105,118,101,115,58,32,123,92,110,32,32,32,32,86,66,72,111,118,101,114,58,32,95,104,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,86,66,72,111,118,101,114,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,104,111,118,101,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,105,114,101,99,116,105,118,101,115,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,105,114,101,99,116,105,118,101,115,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,104,111,118,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,111,100,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,97,108,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,112,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,112,111,112,111,118,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,99,114,111,108,108,115,112,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,99,114,111,108,108,115,112,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,111,103,103,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,111,111,108,116,105,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,105,115,105,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,118,105,115,105,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,77,97,105,110,32,112,108,117,103,105,110,32,102,111,114,32,105,110,115,116,97,108,108,105,110,103,32,97,108,108,32,100,105,114,101,99,116,105,118,101,32,112,108,117,103,105,110,115,92,110,92,110,118,97,114,32,100,105,114,101,99,116,105,118,101,115,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,112,108,117,103,105,110,115,58,32,123,92,110,32,32,32,32,86,66,72,111,118,101,114,80,108,117,103,105,110,58,32,95,104,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,86,66,72,111,118,101,114,80,108,117,103,105,110,44,92,110,32,32,32,32,86,66,77,111,100,97,108,80,108,117,103,105,110,58,32,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,86,66,77,111,100,97,108,80,108,117,103,105,110,44,92,110,32,32,32,32,86,66,80,111,112,111,118,101,114,80,108,117,103,105,110,58,32,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,86,66,80,111,112,111,118,101,114,80,108,117,103,105,110,44,92,110,32,32,32,32,86,66,83,99,114,111,108,108,115,112,121,80,108,117,103,105,110,58,32,95,115,99,114,111,108,108,115,112,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,86,66,83,99,114,111,108,108,115,112,121,80,108,117,103,105,110,44,92,110,32,32,32,32,86,66,84,111,103,103,108,101,80,108,117,103,105,110,58,32,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,86,66,84,111,103,103,108,101,80,108,117,103,105,110,44,92,110,32,32,32,32,86,66,84,111,111,108,116,105,112,80,108,117,103,105,110,58,32,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,86,66,84,111,111,108,116,105,112,80,108,117,103,105,110,44,92,110,32,32,32,32,86,66,86,105,115,105,98,108,101,80,108,117,103,105,110,58,32,95,118,105,115,105,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,86,66,86,105,115,105,98,108,101,80,108,117,103,105,110,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,97,108,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,97,108,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,77,111,100,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,86,66,77,111,100,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,77,111,100,97,108,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,86,66,77,111,100,97,108,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,111,100,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,97,108,47,109,111,100,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,86,66,77,111,100,97,108,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,100,105,114,101,99,116,105,118,101,115,58,32,123,92,110,32,32,32,32,86,66,77,111,100,97,108,58,32,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,86,66,77,111,100,97,108,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,97,108,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,97,108,47,109,111,100,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,97,108,47,109,111,100,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,77,111,100,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,86,66,77,111,100,97,108,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,69,109,105,116,116,101,100,32,115,104,111,119,32,101,118,101,110,116,32,102,111,114,32,109,111,100,97,108,92,110,92,110,118,97,114,32,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,77,79,68,65,76,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,41,59,32,47,47,32,80,114,111,112,32,110,97,109,101,32,119,101,32,117,115,101,32,116,111,32,115,116,111,114,101,32,105,110,102,111,32,111,110,32,114,111,111,116,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,80,82,79,80,69,82,84,89,32,61,32,39,95,95,98,118,95,109,111,100,97,108,95,100,105,114,101,99,116,105,118,101,95,95,39,59,92,110,92,110,118,97,114,32,103,101,116,84,97,114,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,84,97,114,103,101,116,40,95,114,101,102,41,32,123,92,110,32,32,118,97,114,32,95,114,101,102,36,109,111,100,105,102,105,101,114,115,32,61,32,95,114,101,102,46,109,111,100,105,102,105,101,114,115,44,92,110,32,32,32,32,32,32,109,111,100,105,102,105,101,114,115,32,61,32,95,114,101,102,36,109,111,100,105,102,105,101,114,115,32,61,61,61,32,118,111,105,100,32,48,32,63,32,123,125,32,58,32,95,114,101,102,36,109,111,100,105,102,105,101,114,115,44,92,110,32,32,32,32,32,32,97,114,103,32,61,32,95,114,101,102,46,97,114,103,44,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,95,114,101,102,46,118,97,108,117,101,59,92,110,32,32,47,47,32,84,114,121,32,118,97,108,117,101,44,32,116,104,101,110,32,97,114,103,44,32,111,116,104,101,114,119,105,115,101,32,112,105,99,107,32,108,97,115,116,32,109,111,100,105,102,105,101,114,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,83,116,114,105,110,103,41,40,118,97,108,117,101,41,32,63,32,118,97,108,117,101,32,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,83,116,114,105,110,103,41,40,97,114,103,41,32,63,32,97,114,103,32,58,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,107,101,121,115,41,40,109,111,100,105,102,105,101,114,115,41,46,114,101,118,101,114,115,101,40,41,91,48,93,59,92,110,125,59,92,110,92,110,118,97,114,32,103,101,116,84,114,105,103,103,101,114,69,108,101,109,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,84,114,105,103,103,101,114,69,108,101,109,101,110,116,40,101,108,41,32,123,92,110,32,32,47,47,32,73,102,32,114,111,111,116,32,101,108,101,109,101,110,116,32,105,115,32,97,32,100,114,111,112,100,111,119,110,45,105,116,101,109,32,111,114,32,110,97,118,45,105,116,101,109,44,32,119,101,92,110,32,32,47,47,32,110,101,101,100,32,116,111,32,116,97,114,103,101,116,32,116,104,101,32,105,110,110,101,114,32,108,105,110,107,32,111,114,32,98,117,116,116,111,110,32,105,110,115,116,101,97,100,92,110,32,32,114,101,116,117,114,110,32,101,108,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,116,99,104,101,115,41,40,101,108,44,32,39,46,100,114,111,112,100,111,119,110,45,109,101,110,117,32,62,32,108,105,44,32,108,105,46,110,97,118,45,105,116,101,109,39,41,32,63,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,101,108,101,99,116,41,40,39,97,44,32,98,117,116,116,111,110,39,44,32,101,108,41,32,124,124,32,101,108,32,58,32,101,108,59,92,110,125,59,92,110,92,110,118,97,114,32,115,101,116,82,111,108,101,32,61,32,102,117,110,99,116,105,111,110,32,115,101,116,82,111,108,101,40,116,114,105,103,103,101,114,41,32,123,92,110,32,32,47,47,32,69,110,115,117,114,101,32,97,99,99,101,115,115,105,98,105,108,105,116,121,32,111,110,32,110,111,110,32,98,117,116,116,111,110,32,101,108,101,109,101,110,116,115,92,110,32,32,105,102,32,40,116,114,105,103,103,101,114,32,38,38,32,116,114,105,103,103,101,114,46,116,97,103,78,97,109,101,32,33,61,61,32,39,66,85,84,84,79,78,39,41,32,123,92,110,32,32,32,32,47,47,32,79,110,108,121,32,115,101,116,32,97,32,114,111,108,101,32,105,102,32,116,104,101,32,116,114,105,103,103,101,114,32,101,108,101,109,101,110,116,32,100,111,101,115,110,39,116,32,104,97,118,101,32,111,110,101,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,104,97,115,65,116,116,114,41,40,116,114,105,103,103,101,114,44,32,39,114,111,108,101,39,41,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,101,116,65,116,116,114,41,40,116,114,105,103,103,101,114,44,32,39,114,111,108,101,39,44,32,39,98,117,116,116,111,110,39,41,59,92,110,32,32,32,32,125,32,47,47,32,65,100,100,32,97,32,116,97,98,105,110,100,101,120,32,105,115,32,110,111,116,32,97,32,98,117,116,116,111,110,32,111,114,32,108,105,110,107,44,32,97,110,100,32,116,97,98,105,110,100,101,120,32,105,115,32,110,111,116,32,112,114,111,118,105,100,101,100,92,110,92,110,92,110,32,32,32,32,105,102,32,40,116,114,105,103,103,101,114,46,116,97,103,78,97,109,101,32,33,61,61,32,39,65,39,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,104,97,115,65,116,116,114,41,40,116,114,105,103,103,101,114,44,32,39,116,97,98,105,110,100,101,120,39,41,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,101,116,65,116,116,114,41,40,116,114,105,103,103,101,114,44,32,39,116,97,98,105,110,100,101,120,39,44,32,39,48,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,98,105,110,100,32,61,32,102,117,110,99,116,105,111,110,32,98,105,110,100,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,103,101,116,84,97,114,103,101,116,40,98,105,110,100,105,110,103,41,59,92,110,32,32,118,97,114,32,116,114,105,103,103,101,114,32,61,32,103,101,116,84,114,105,103,103,101,114,69,108,101,109,101,110,116,40,101,108,41,59,92,110,92,110,32,32,105,102,32,40,116,97,114,103,101,116,32,38,38,32,116,114,105,103,103,101,114,41,32,123,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,96,99,117,114,114,101,110,116,84,97,114,103,101,116,96,32,105,115,32,116,104,101,32,101,108,101,109,101,110,116,32,119,105,116,104,32,116,104,101,32,108,105,115,116,101,110,101,114,32,111,110,32,105,116,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,84,97,114,103,101,116,32,61,32,101,118,101,110,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,68,105,115,97,98,108,101,100,41,40,99,117,114,114,101,110,116,84,97,114,103,101,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,101,118,101,110,116,46,116,121,112,101,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,59,32,47,47,32,79,112,101,110,32,109,111,100,97,108,32,111,110,108,121,32,105,102,32,116,114,105,103,103,101,114,32,105,115,32,110,111,116,32,100,105,115,97,98,108,101,100,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,99,108,105,99,107,39,32,124,124,32,116,121,112,101,32,61,61,61,32,39,107,101,121,100,111,119,110,39,32,38,38,32,40,107,101,121,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,67,79,68,69,95,69,78,84,69,82,32,124,124,32,107,101,121,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,67,79,68,69,95,83,80,65,67,69,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,110,111,100,101,46,99,111,110,116,101,120,116,46,36,114,111,111,116,46,36,101,109,105,116,40,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,44,32,116,97,114,103,101,116,44,32,99,117,114,114,101,110,116,84,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,101,108,91,80,82,79,80,69,82,84,89,93,32,61,32,123,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,58,32,104,97,110,100,108,101,114,44,92,110,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,97,114,103,101,116,44,92,110,32,32,32,32,32,32,116,114,105,103,103,101,114,58,32,116,114,105,103,103,101,114,92,110,32,32,32,32,125,59,32,47,47,32,73,102,32,101,108,101,109,101,110,116,32,105,115,32,110,111,116,32,97,32,98,117,116,116,111,110,44,32,119,101,32,97,100,100,32,96,114,111,108,101,61,92,34,98,117,116,116,111,110,92,34,96,32,102,111,114,32,97,99,99,101,115,115,105,98,105,108,105,116,121,92,110,92,110,32,32,32,32,115,101,116,82,111,108,101,40,116,114,105,103,103,101,114,41,59,32,47,47,32,76,105,115,116,101,110,32,102,111,114,32,99,108,105,99,107,32,101,118,101,110,116,115,92,110,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,41,40,116,114,105,103,103,101,114,44,32,39,99,108,105,99,107,39,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,114,105,103,103,101,114,46,116,97,103,78,97,109,101,32,33,61,61,32,39,66,85,84,84,79,78,39,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,103,101,116,65,116,116,114,41,40,116,114,105,103,103,101,114,44,32,39,114,111,108,101,39,41,32,61,61,61,32,39,98,117,116,116,111,110,39,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,114,105,103,103,101,114,32,105,115,110,39,116,32,97,32,98,117,116,116,111,110,32,98,117,116,32,104,97,115,32,114,111,108,101,32,98,117,116,116,111,110,44,92,110,32,32,32,32,32,32,47,47,32,119,101,32,97,108,115,111,32,108,105,115,116,101,110,32,102,111,114,32,96,107,101,121,100,111,119,110,46,115,112,97,99,101,96,32,38,38,32,96,107,101,121,100,111,119,110,46,101,110,116,101,114,96,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,41,40,116,114,105,103,103,101,114,44,32,39,107,101,121,100,111,119,110,39,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,117,110,98,105,110,100,32,61,32,102,117,110,99,116,105,111,110,32,117,110,98,105,110,100,40,101,108,41,32,123,92,110,32,32,118,97,114,32,111,108,100,80,114,111,112,32,61,32,101,108,91,80,82,79,80,69,82,84,89,93,32,124,124,32,123,125,59,92,110,32,32,118,97,114,32,116,114,105,103,103,101,114,32,61,32,111,108,100,80,114,111,112,46,116,114,105,103,103,101,114,59,92,110,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,111,108,100,80,114,111,112,46,104,97,110,100,108,101,114,59,92,110,92,110,32,32,105,102,32,40,116,114,105,103,103,101,114,32,38,38,32,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,102,102,41,40,116,114,105,103,103,101,114,44,32,39,99,108,105,99,107,39,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,102,102,41,40,116,114,105,103,103,101,114,44,32,39,107,101,121,100,111,119,110,39,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,102,102,41,40,101,108,44,32,39,99,108,105,99,107,39,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,102,102,41,40,101,108,44,32,39,107,101,121,100,111,119,110,39,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,41,59,92,110,32,32,125,92,110,92,110,32,32,100,101,108,101,116,101,32,101,108,91,80,82,79,80,69,82,84,89,93,59,92,110,125,59,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,111,108,100,80,114,111,112,32,61,32,101,108,91,80,82,79,80,69,82,84,89,93,32,124,124,32,123,125,59,92,110,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,103,101,116,84,97,114,103,101,116,40,98,105,110,100,105,110,103,41,59,92,110,32,32,118,97,114,32,116,114,105,103,103,101,114,32,61,32,103,101,116,84,114,105,103,103,101,114,69,108,101,109,101,110,116,40,101,108,41,59,92,110,92,110,32,32,105,102,32,40,116,97,114,103,101,116,32,33,61,61,32,111,108,100,80,114,111,112,46,116,97,114,103,101,116,32,124,124,32,116,114,105,103,103,101,114,32,33,61,61,32,111,108,100,80,114,111,112,46,116,114,105,103,103,101,114,41,32,123,92,110,32,32,32,32,47,47,32,87,101,32,98,105,110,100,32,97,110,100,32,114,101,98,105,110,100,32,105,102,32,116,104,101,32,116,97,114,103,101,116,32,111,114,32,116,114,105,103,103,101,114,32,99,104,97,110,103,101,115,92,110,32,32,32,32,117,110,98,105,110,100,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,41,59,92,110,32,32,32,32,98,105,110,100,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,41,59,92,110,32,32,125,32,47,47,32,73,102,32,116,114,105,103,103,101,114,32,101,108,101,109,101,110,116,32,105,115,32,110,111,116,32,97,32,98,117,116,116,111,110,44,32,101,110,115,117,114,101,32,96,114,111,108,101,61,92,34,98,117,116,116,111,110,92,34,96,92,110,32,32,47,47,32,105,115,32,115,116,105,108,108,32,115,101,116,32,102,111,114,32,97,99,99,101,115,115,105,98,105,108,105,116,121,92,110,92,110,92,110,32,32,115,101,116,82,111,108,101,40,116,114,105,103,103,101,114,41,59,92,110,125,59,92,110,92,110,118,97,114,32,117,112,100,97,116,101,100,32,61,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,100,40,41,32,123,125,59,92,110,47,42,92,110,32,42,32,69,120,112,111,114,116,32,111,117,114,32,100,105,114,101,99,116,105,118,101,92,110,32,42,47,92,110,92,110,92,110,118,97,114,32,86,66,77,111,100,97,108,32,61,32,123,92,110,32,32,105,110,115,101,114,116,101,100,58,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,44,92,110,32,32,117,112,100,97,116,101,100,58,32,117,112,100,97,116,101,100,44,92,110,32,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,44,92,110,32,32,117,110,98,105,110,100,58,32,117,110,98,105,110,100,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,97,108,47,109,111,100,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,112,111,112,111,118,101,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,112,111,112,111,118,101,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,80,111,112,111,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,86,66,80,111,112,111,118,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,80,111,112,111,118,101,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,86,66,80,111,112,111,118,101,114,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,112,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,112,111,112,111,118,101,114,47,112,111,112,111,118,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,86,66,80,111,112,111,118,101,114,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,100,105,114,101,99,116,105,118,101,115,58,32,123,92,110,32,32,32,32,86,66,80,111,112,111,118,101,114,58,32,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,86,66,80,111,112,111,118,101,114,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,112,111,112,111,118,101,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,112,111,112,111,118,101,114,47,112,111,112,111,118,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,112,111,112,111,118,101,114,47,112,111,112,111,118,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,80,111,112,111,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,86,66,80,111,112,111,118,101,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,99,111,110,102,105,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,103,101,116,95,115,99,111,112,101,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,103,101,116,45,115,99,111,112,101,45,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,45,115,99,111,112,101,45,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,112,111,112,111,118,101,114,95,104,101,108,112,101,114,115,95,98,118,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,104,101,108,112,101,114,115,47,98,118,45,112,111,112,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,104,101,108,112,101,114,115,47,98,118,45,112,111,112,111,118,101,114,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,75,101,121,32,119,104,105,99,104,32,119,101,32,117,115,101,32,116,111,32,115,116,111,114,101,32,116,111,111,108,116,105,112,32,111,98,106,101,99,116,32,111,110,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,66,86,95,80,79,80,79,86,69,82,32,61,32,39,95,95,66,86,95,80,111,112,111,118,101,114,95,95,39,59,32,47,47,32,68,101,102,97,117,108,116,32,116,114,105,103,103,101,114,92,110,92,110,118,97,114,32,68,101,102,97,117,108,116,84,114,105,103,103,101,114,32,61,32,39,99,108,105,99,107,39,59,32,47,47,32,86,97,108,105,100,32,101,118,101,110,116,32,116,114,105,103,103,101,114,115,92,110,92,110,118,97,114,32,118,97,108,105,100,84,114,105,103,103,101,114,115,32,61,32,123,92,110,32,32,102,111,99,117,115,58,32,116,114,117,101,44,92,110,32,32,104,111,118,101,114,58,32,116,114,117,101,44,92,110,32,32,99,108,105,99,107,58,32,116,114,117,101,44,92,110,32,32,98,108,117,114,58,32,116,114,117,101,44,92,110,32,32,109,97,110,117,97,108,58,32,116,114,117,101,92,110,125,59,32,47,47,32,68,105,114,101,99,116,105,118,101,32,109,111,100,105,102,105,101,114,32,116,101,115,116,32,114,101,103,117,108,97,114,32,101,120,112,114,101,115,115,105,111,110,115,46,32,80,114,101,45,99,111,109,112,105,108,101,32,102,111,114,32,112,101,114,102,111,114,109,97,110,99,101,92,110,92,110,118,97,114,32,104,116,109,108,82,69,32,61,32,47,94,104,116,109,108,36,47,105,59,92,110,118,97,114,32,110,111,70,97,100,101,82,69,32,61,32,47,94,110,111,102,97,100,101,36,47,105,59,92,110,118,97,114,32,112,108,97,99,101,109,101,110,116,82,69,32,61,32,47,94,40,97,117,116,111,124,116,111,112,40,108,101,102,116,124,114,105,103,104,116,41,63,124,98,111,116,116,111,109,40,108,101,102,116,124,114,105,103,104,116,41,63,124,108,101,102,116,40,116,111,112,124,98,111,116,116,111,109,41,63,124,114,105,103,104,116,40,116,111,112,124,98,111,116,116,111,109,41,63,41,36,47,105,59,92,110,118,97,114,32,98,111,117,110,100,97,114,121,82,69,32,61,32,47,94,40,119,105,110,100,111,119,124,118,105,101,119,112,111,114,116,124,115,99,114,111,108,108,80,97,114,101,110,116,41,36,47,105,59,92,110,118,97,114,32,100,101,108,97,121,82,69,32,61,32,47,94,100,92,92,100,43,36,47,105,59,92,110,118,97,114,32,100,101,108,97,121,83,104,111,119,82,69,32,61,32,47,94,100,115,92,92,100,43,36,47,105,59,92,110,118,97,114,32,100,101,108,97,121,72,105,100,101,82,69,32,61,32,47,94,100,104,92,92,100,43,36,47,105,59,92,110,118,97,114,32,111,102,102,115,101,116,82,69,32,61,32,47,94,111,45,63,92,92,100,43,36,47,105,59,92,110,118,97,114,32,118,97,114,105,97,110,116,82,69,32,61,32,47,94,118,45,46,43,36,47,105,59,92,110,118,97,114,32,115,112,97,99,101,115,82,69,32,61,32,47,92,92,115,43,47,59,32,47,47,32,66,117,105,108,100,32,97,32,80,111,112,111,118,101,114,32,99,111,110,102,105,103,32,98,97,115,101,100,32,111,110,32,98,105,110,100,105,110,103,115,32,40,105,102,32,97,110,121,41,92,110,47,47,32,65,114,103,117,109,101,110,116,115,32,97,110,100,32,109,111,100,105,102,105,101,114,115,32,116,97,107,101,32,112,114,101,99,101,100,101,110,99,101,32,111,118,101,114,32,112,97,115,115,101,100,32,118,97,108,117,101,32,99,111,110,102,105,103,32,111,98,106,101,99,116,92,110,92,110,118,97,114,32,112,97,114,115,101,66,105,110,100,105,110,103,115,32,61,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,66,105,110,100,105,110,103,115,40,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,123,92,110,32,32,47,47,32,87,101,32,115,116,97,114,116,32,111,117,116,32,119,105,116,104,32,97,32,98,97,115,105,99,32,99,111,110,102,105,103,92,110,32,32,118,97,114,32,99,111,110,102,105,103,32,61,32,123,92,110,32,32,32,32,116,105,116,108,101,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,99,111,110,116,101,110,116,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,116,114,105,103,103,101,114,58,32,39,39,44,92,110,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,115,101,116,32,98,101,108,111,119,32,105,102,32,110,101,101,100,101,100,92,110,32,32,32,32,112,108,97,99,101,109,101,110,116,58,32,39,114,105,103,104,116,39,44,92,110,32,32,32,32,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,32,39,102,108,105,112,39,44,92,110,32,32,32,32,99,111,110,116,97,105,110,101,114,58,32,102,97,108,115,101,44,92,110,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,111,102,32,98,111,100,121,92,110,32,32,32,32,97,110,105,109,97,116,105,111,110,58,32,116,114,117,101,44,92,110,32,32,32,32,111,102,102,115,101,116,58,32,48,44,92,110,32,32,32,32,100,105,115,97,98,108,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,105,100,58,32,110,117,108,108,44,92,110,32,32,32,32,104,116,109,108,58,32,102,97,108,115,101,44,92,110,32,32,32,32,100,101,108,97,121,58,32,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,80,79,80,79,86,69,82,44,32,39,100,101,108,97,121,39,44,32,53,48,41,44,92,110,32,32,32,32,98,111,117,110,100,97,114,121,58,32,83,116,114,105,110,103,40,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,80,79,80,79,86,69,82,44,32,39,98,111,117,110,100,97,114,121,39,44,32,39,115,99,114,111,108,108,80,97,114,101,110,116,39,41,41,44,92,110,32,32,32,32,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,73,110,116,101,103,101,114,41,40,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,80,79,80,79,86,69,82,44,32,39,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,39,44,32,53,41,44,32,48,41,44,92,110,32,32,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,80,79,80,79,86,69,82,44,32,39,118,97,114,105,97,110,116,39,41,44,92,110,32,32,32,32,99,117,115,116,111,109,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,80,79,80,79,86,69,82,44,32,39,99,117,115,116,111,109,67,108,97,115,115,39,41,92,110,32,32,125,59,32,47,47,32,80,114,111,99,101,115,115,32,96,98,105,110,100,105,110,103,115,46,118,97,108,117,101,96,92,110,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,83,116,114,105,110,103,41,40,98,105,110,100,105,110,103,115,46,118,97,108,117,101,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,78,117,109,98,101,114,41,40,98,105,110,100,105,110,103,115,46,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,47,47,32,86,97,108,117,101,32,105,115,32,112,111,112,111,118,101,114,32,99,111,110,116,101,110,116,32,40,104,116,109,108,32,111,112,116,105,111,110,97,108,108,121,32,115,117,112,112,111,114,116,101,100,41,92,110,32,32,32,32,99,111,110,102,105,103,46,99,111,110,116,101,110,116,32,61,32,98,105,110,100,105,110,103,115,46,118,97,108,117,101,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,98,105,110,100,105,110,103,115,46,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,47,47,32,67,111,110,116,101,110,116,32,103,101,110,101,114,97,116,111,114,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,99,111,110,102,105,103,46,99,111,110,116,101,110,116,32,61,32,98,105,110,100,105,110,103,115,46,118,97,108,117,101,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,98,105,110,100,105,110,103,115,46,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,47,47,32,86,97,108,117,101,32,105,115,32,99,111,110,102,105,103,32,111,98,106,101,99,116,44,32,115,111,32,109,101,114,103,101,92,110,32,32,32,32,99,111,110,102,105,103,32,61,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,99,111,110,102,105,103,41,44,32,98,105,110,100,105,110,103,115,46,118,97,108,117,101,41,59,92,110,32,32,125,32,47,47,32,73,102,32,97,114,103,117,109,101,110,116,44,32,97,115,115,117,109,101,32,101,108,101,109,101,110,116,32,73,68,32,111,102,32,99,111,110,116,97,105,110,101,114,32,101,108,101,109,101,110,116,92,110,92,110,92,110,32,32,105,102,32,40,98,105,110,100,105,110,103,115,46,97,114,103,41,32,123,92,110,32,32,32,32,47,47,32,69,108,101,109,101,110,116,32,73,68,32,115,112,101,99,105,102,105,101,100,32,97,115,32,97,114,103,92,110,32,32,32,32,47,47,32,87,101,32,109,117,115,116,32,112,114,101,112,101,110,100,32,39,35,39,32,116,111,32,98,101,99,111,109,101,32,97,32,67,83,83,32,115,101,108,101,99,116,111,114,92,110,32,32,32,32,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,32,61,32,92,34,35,92,34,46,99,111,110,99,97,116,40,98,105,110,100,105,110,103,115,46,97,114,103,41,59,92,110,32,32,125,32,47,47,32,73,102,32,116,105,116,108,101,32,105,115,32,110,111,116,32,112,114,111,118,105,100,101,100,44,32,116,114,121,32,116,105,116,108,101,32,97,116,116,114,105,98,117,116,101,92,110,92,110,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,99,111,110,102,105,103,46,116,105,116,108,101,41,41,32,123,92,110,32,32,32,32,47,47,32,84,114,121,32,97,116,116,114,105,98,117,116,101,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,118,110,111,100,101,46,100,97,116,97,32,124,124,32,123,125,59,92,110,32,32,32,32,99,111,110,102,105,103,46,116,105,116,108,101,32,61,32,100,97,116,97,46,97,116,116,114,115,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,100,97,116,97,46,97,116,116,114,115,46,116,105,116,108,101,41,32,63,32,100,97,116,97,46,97,116,116,114,115,46,116,105,116,108,101,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,125,32,47,47,32,78,111,114,109,97,108,105,122,101,32,100,101,108,97,121,92,110,92,110,92,110,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,99,111,110,102,105,103,46,100,101,108,97,121,41,41,32,123,92,110,32,32,32,32,99,111,110,102,105,103,46,100,101,108,97,121,32,61,32,123,92,110,32,32,32,32,32,32,115,104,111,119,58,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,73,110,116,101,103,101,114,41,40,99,111,110,102,105,103,46,100,101,108,97,121,44,32,48,41,44,92,110,32,32,32,32,32,32,104,105,100,101,58,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,73,110,116,101,103,101,114,41,40,99,111,110,102,105,103,46,100,101,108,97,121,44,32,48,41,92,110,32,32,32,32,125,59,92,110,32,32,125,32,47,47,32,80,114,111,99,101,115,115,32,109,111,100,105,102,105,101,114,115,92,110,92,110,92,110,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,107,101,121,115,41,40,98,105,110,100,105,110,103,115,46,109,111,100,105,102,105,101,114,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,109,111,100,41,32,123,92,110,32,32,32,32,105,102,32,40,104,116,109,108,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,105,116,108,101,47,99,111,110,116,101,110,116,32,97,108,108,111,119,115,32,72,84,77,76,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,104,116,109,108,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,111,70,97,100,101,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,78,111,32,97,110,105,109,97,116,105,111,110,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,112,108,97,99,101,109,101,110,116,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,108,97,99,101,109,101,110,116,32,111,102,32,112,111,112,111,118,101,114,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,32,61,32,109,111,100,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,98,111,117,110,100,97,114,121,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,66,111,117,110,100,97,114,121,32,111,102,32,112,111,112,111,118,101,114,92,110,32,32,32,32,32,32,109,111,100,32,61,32,109,111,100,32,61,61,61,32,39,115,99,114,111,108,108,112,97,114,101,110,116,39,32,63,32,39,115,99,114,111,108,108,80,97,114,101,110,116,39,32,58,32,109,111,100,59,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,32,61,32,109,111,100,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,101,108,97,121,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,101,108,97,121,32,118,97,108,117,101,92,110,32,32,32,32,32,32,118,97,114,32,100,101,108,97,121,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,73,110,116,101,103,101,114,41,40,109,111,100,46,115,108,105,99,101,40,49,41,44,32,48,41,59,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,100,101,108,97,121,46,115,104,111,119,32,61,32,100,101,108,97,121,59,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,100,101,108,97,121,46,104,105,100,101,32,61,32,100,101,108,97,121,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,101,108,97,121,83,104,111,119,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,101,108,97,121,32,115,104,111,119,32,118,97,108,117,101,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,100,101,108,97,121,46,115,104,111,119,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,73,110,116,101,103,101,114,41,40,109,111,100,46,115,108,105,99,101,40,50,41,44,32,48,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,101,108,97,121,72,105,100,101,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,101,108,97,121,32,104,105,100,101,32,118,97,108,117,101,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,100,101,108,97,121,46,104,105,100,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,73,110,116,101,103,101,114,41,40,109,111,100,46,115,108,105,99,101,40,50,41,44,32,48,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,111,102,102,115,101,116,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,79,102,102,115,101,116,32,118,97,108,117,101,44,32,110,101,103,97,116,105,118,101,32,97,108,108,111,119,101,100,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,111,102,102,115,101,116,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,73,110,116,101,103,101,114,41,40,109,111,100,46,115,108,105,99,101,40,49,41,44,32,48,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,118,97,114,105,97,110,116,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,86,97,114,105,97,110,116,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,118,97,114,105,97,110,116,32,61,32,109,111,100,46,115,108,105,99,101,40,50,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,83,112,101,99,105,97,108,32,104,97,110,100,108,105,110,103,32,111,102,32,101,118,101,110,116,32,116,114,105,103,103,101,114,32,109,111,100,105,102,105,101,114,115,32,116,114,105,103,103,101,114,32,105,115,92,110,32,32,47,47,32,97,32,115,112,97,99,101,32,115,101,112,97,114,97,116,101,100,32,108,105,115,116,92,110,92,110,32,32,118,97,114,32,115,101,108,101,99,116,101,100,84,114,105,103,103,101,114,115,32,61,32,123,125,59,32,47,47,32,80,97,114,115,101,32,99,117,114,114,101,110,116,32,99,111,110,102,105,103,32,111,98,106,101,99,116,32,116,114,105,103,103,101,114,92,110,92,110,32,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,99,111,110,99,97,116,41,40,99,111,110,102,105,103,46,116,114,105,103,103,101,114,32,124,124,32,39,39,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,32,39,41,46,116,114,105,109,40,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,115,112,108,105,116,40,115,112,97,99,101,115,82,69,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,114,105,103,103,101,114,41,32,123,92,110,32,32,32,32,105,102,32,40,118,97,108,105,100,84,114,105,103,103,101,114,115,91,116,114,105,103,103,101,114,93,41,32,123,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,84,114,105,103,103,101,114,115,91,116,114,105,103,103,101,114,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,80,97,114,115,101,32,109,111,100,105,102,105,101,114,115,32,102,111,114,32,116,114,105,103,103,101,114,115,92,110,92,110,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,107,101,121,115,41,40,98,105,110,100,105,110,103,115,46,109,111,100,105,102,105,101,114,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,109,111,100,41,32,123,92,110,32,32,32,32,109,111,100,32,61,32,109,111,100,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,118,97,108,105,100,84,114,105,103,103,101,114,115,91,109,111,100,93,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,109,111,100,105,102,105,101,114,32,105,115,32,97,32,118,97,108,105,100,32,116,114,105,103,103,101,114,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,84,114,105,103,103,101,114,115,91,109,111,100,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,83,97,110,105,116,105,122,101,32,116,114,105,103,103,101,114,115,92,110,92,110,32,32,99,111,110,102,105,103,46,116,114,105,103,103,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,107,101,121,115,41,40,115,101,108,101,99,116,101,100,84,114,105,103,103,101,114,115,41,46,106,111,105,110,40,39,32,39,41,59,92,110,92,110,32,32,105,102,32,40,99,111,110,102,105,103,46,116,114,105,103,103,101,114,32,61,61,61,32,39,98,108,117,114,39,41,32,123,92,110,32,32,32,32,47,47,32,66,108,117,114,32,98,121,32,105,116,115,101,108,102,32,105,115,32,117,115,101,108,101,115,115,44,32,115,111,32,99,111,110,118,101,114,116,32,105,116,32,116,111,32,39,102,111,99,117,115,39,92,110,32,32,32,32,99,111,110,102,105,103,46,116,114,105,103,103,101,114,32,61,32,39,102,111,99,117,115,39,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,99,111,110,102,105,103,46,116,114,105,103,103,101,114,41,32,123,92,110,32,32,32,32,47,47,32,85,115,101,32,100,101,102,97,117,108,116,32,116,114,105,103,103,101,114,92,110,32,32,32,32,99,111,110,102,105,103,46,116,114,105,103,103,101,114,32,61,32,68,101,102,97,117,108,116,84,114,105,103,103,101,114,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,99,111,110,102,105,103,59,92,110,125,59,32,47,47,32,65,100,100,32,111,114,32,117,112,100,97,116,101,32,80,111,112,111,118,101,114,32,111,110,32,111,117,114,32,101,108,101,109,101,110,116,92,110,92,110,92,110,118,97,114,32,97,112,112,108,121,80,111,112,111,118,101,114,32,61,32,102,117,110,99,116,105,111,110,32,97,112,112,108,121,80,111,112,111,118,101,114,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,32,123,92,110,32,32,105,102,32,40,33,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,73,83,95,66,82,79,87,83,69,82,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,111,110,102,105,103,32,61,32,112,97,114,115,101,66,105,110,100,105,110,103,115,40,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,59,92,110,92,110,32,32,105,102,32,40,33,101,108,91,66,86,95,80,79,80,79,86,69,82,93,41,32,123,92,110,32,32,32,32,118,97,114,32,36,112,97,114,101,110,116,32,61,32,118,110,111,100,101,46,99,111,110,116,101,120,116,59,92,110,32,32,32,32,101,108,91,66,86,95,80,79,80,79,86,69,82,93,32,61,32,110,101,119,32,95,99,111,109,112,111,110,101,110,116,115,95,112,111,112,111,118,101,114,95,104,101,108,112,101,114,115,95,98,118,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,86,80,111,112,111,118,101,114,40,123,92,110,32,32,32,32,32,32,112,97,114,101,110,116,58,32,36,112,97,114,101,110,116,44,92,110,32,32,32,32,32,32,47,47,32,65,100,100,32,116,104,101,32,112,97,114,101,110,116,39,115,32,115,99,111,112,101,100,32,115,116,121,108,101,32,97,116,116,114,105,98,117,116,101,32,100,97,116,97,92,110,32,32,32,32,32,32,95,115,99,111,112,101,73,100,58,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,115,99,111,112,101,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,103,101,116,83,99,111,112,101,73,100,41,40,36,112,97,114,101,110,116,44,32,117,110,100,101,102,105,110,101,100,41,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,101,108,91,66,86,95,80,79,80,79,86,69,82,93,46,95,95,98,118,95,112,114,101,118,95,100,97,116,97,95,95,32,61,32,123,125,59,92,110,32,32,32,32,101,108,91,66,86,95,80,79,80,79,86,69,82,93,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,44,32,102,117,110,99,116,105,111,110,32,40,41,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,102,111,114,32,110,111,119,32,42,47,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,47,47,32,66,101,102,111,114,101,32,115,104,111,119,105,110,103,32,116,104,101,32,112,111,112,111,118,101,114,44,32,119,101,32,117,112,100,97,116,101,32,116,104,101,32,116,105,116,108,101,92,110,32,32,32,32,32,32,47,47,32,97,110,100,32,99,111,110,116,101,110,116,32,105,102,32,116,104,101,121,32,97,114,101,32,102,117,110,99,116,105,111,110,115,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,123,125,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,99,111,110,102,105,103,46,116,105,116,108,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,100,97,116,97,46,116,105,116,108,101,32,61,32,99,111,110,102,105,103,46,116,105,116,108,101,40,101,108,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,99,111,110,102,105,103,46,99,111,110,116,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,100,97,116,97,46,99,111,110,116,101,110,116,32,61,32,99,111,110,102,105,103,46,99,111,110,116,101,110,116,40,101,108,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,107,101,121,115,41,40,100,97,116,97,41,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,101,108,91,66,86,95,80,79,80,79,86,69,82,93,46,117,112,100,97,116,101,68,97,116,97,40,100,97,116,97,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,100,97,116,97,32,61,32,123,92,110,32,32,32,32,116,105,116,108,101,58,32,99,111,110,102,105,103,46,116,105,116,108,101,44,92,110,32,32,32,32,99,111,110,116,101,110,116,58,32,99,111,110,102,105,103,46,99,111,110,116,101,110,116,44,92,110,32,32,32,32,116,114,105,103,103,101,114,115,58,32,99,111,110,102,105,103,46,116,114,105,103,103,101,114,44,92,110,32,32,32,32,112,108,97,99,101,109,101,110,116,58,32,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,44,92,110,32,32,32,32,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,32,99,111,110,102,105,103,46,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,44,92,110,32,32,32,32,118,97,114,105,97,110,116,58,32,99,111,110,102,105,103,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,99,117,115,116,111,109,67,108,97,115,115,58,32,99,111,110,102,105,103,46,99,117,115,116,111,109,67,108,97,115,115,44,92,110,32,32,32,32,99,111,110,116,97,105,110,101,114,58,32,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,44,92,110,32,32,32,32,98,111,117,110,100,97,114,121,58,32,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,44,92,110,32,32,32,32,100,101,108,97,121,58,32,99,111,110,102,105,103,46,100,101,108,97,121,44,92,110,32,32,32,32,111,102,102,115,101,116,58,32,99,111,110,102,105,103,46,111,102,102,115,101,116,44,92,110,32,32,32,32,110,111,70,97,100,101,58,32,33,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,44,92,110,32,32,32,32,105,100,58,32,99,111,110,102,105,103,46,105,100,44,92,110,32,32,32,32,100,105,115,97,98,108,101,100,58,32,99,111,110,102,105,103,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,104,116,109,108,58,32,99,111,110,102,105,103,46,104,116,109,108,92,110,32,32,125,59,92,110,32,32,118,97,114,32,111,108,100,68,97,116,97,32,61,32,101,108,91,66,86,95,80,79,80,79,86,69,82,93,46,95,95,98,118,95,112,114,101,118,95,100,97,116,97,95,95,59,92,110,32,32,101,108,91,66,86,95,80,79,80,79,86,69,82,93,46,95,95,98,118,95,112,114,101,118,95,100,97,116,97,95,95,32,61,32,100,97,116,97,59,92,110,92,110,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,100,97,116,97,44,32,111,108,100,68,97,116,97,41,41,32,123,92,110,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,117,112,100,97,116,101,32,116,104,101,32,105,110,115,116,97,110,99,101,32,105,102,32,100,97,116,97,32,104,97,115,32,99,104,97,110,103,101,100,92,110,32,32,32,32,118,97,114,32,110,101,119,68,97,116,97,32,61,32,123,92,110,32,32,32,32,32,32,116,97,114,103,101,116,58,32,101,108,92,110,32,32,32,32,125,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,107,101,121,115,41,40,100,97,116,97,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,112,97,115,115,32,100,97,116,97,32,112,114,111,112,101,114,116,105,101,115,32,116,104,97,116,32,104,97,118,101,32,99,104,97,110,103,101,100,92,110,32,32,32,32,32,32,105,102,32,40,100,97,116,97,91,112,114,111,112,93,32,33,61,61,32,111,108,100,68,97,116,97,91,112,114,111,112,93,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,105,116,108,101,47,99,111,110,116,101,110,116,32,105,115,32,97,32,102,117,110,99,116,105,111,110,44,32,119,101,32,101,120,101,99,117,116,101,32,105,116,32,104,101,114,101,92,110,32,32,32,32,32,32,32,32,110,101,119,68,97,116,97,91,112,114,111,112,93,32,61,32,40,112,114,111,112,32,61,61,61,32,39,116,105,116,108,101,39,32,124,124,32,112,114,111,112,32,61,61,61,32,39,99,111,110,116,101,110,116,39,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,100,97,116,97,91,112,114,111,112,93,41,32,63,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,100,97,116,97,91,112,114,111,112,93,40,101,108,41,32,58,32,100,97,116,97,91,112,114,111,112,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,101,108,91,66,86,95,80,79,80,79,86,69,82,93,46,117,112,100,97,116,101,68,97,116,97,40,110,101,119,68,97,116,97,41,59,92,110,32,32,125,92,110,125,59,32,47,47,32,82,101,109,111,118,101,32,80,111,112,111,118,101,114,32,102,114,111,109,32,111,117,114,32,101,108,101,109,101,110,116,92,110,92,110,92,110,118,97,114,32,114,101,109,111,118,101,80,111,112,111,118,101,114,32,61,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,80,111,112,111,118,101,114,40,101,108,41,32,123,92,110,32,32,105,102,32,40,101,108,91,66,86,95,80,79,80,79,86,69,82,93,41,32,123,92,110,32,32,32,32,101,108,91,66,86,95,80,79,80,79,86,69,82,93,46,36,100,101,115,116,114,111,121,40,41,59,92,110,32,32,32,32,101,108,91,66,86,95,80,79,80,79,86,69,82,93,32,61,32,110,117,108,108,59,92,110,32,32,125,92,110,92,110,32,32,100,101,108,101,116,101,32,101,108,91,66,86,95,80,79,80,79,86,69,82,93,59,92,110,125,59,32,47,47,32,69,120,112,111,114,116,32,111,117,114,32,100,105,114,101,99,116,105,118,101,92,110,92,110,92,110,118,97,114,32,86,66,80,111,112,111,118,101,114,32,61,32,123,92,110,32,32,98,105,110,100,58,32,102,117,110,99,116,105,111,110,32,98,105,110,100,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,97,112,112,108,121,80,111,112,111,118,101,114,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,87,101,32,117,115,101,32,96,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,96,32,104,101,114,101,32,105,110,115,116,101,97,100,32,111,102,32,96,117,112,100,97,116,101,96,44,32,97,115,32,116,104,101,32,102,111,114,109,101,114,92,110,32,32,47,47,32,119,97,105,116,115,32,117,110,116,105,108,32,116,104,101,32,99,111,110,116,97,105,110,105,110,103,32,99,111,109,112,111,110,101,110,116,32,97,110,100,32,99,104,105,108,100,114,101,110,32,104,97,118,101,32,102,105,110,105,115,104,101,100,32,117,112,100,97,116,105,110,103,92,110,32,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,47,47,32,80,101,114,102,111,114,109,101,100,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,112,114,101,118,101,110,116,32,101,110,100,108,101,115,115,32,114,101,110,100,101,114,47,117,112,100,97,116,101,32,108,111,111,112,115,92,110,32,32,32,32,118,110,111,100,101,46,99,111,110,116,101,120,116,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,97,112,112,108,121,80,111,112,111,118,101,114,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,117,110,98,105,110,100,58,32,102,117,110,99,116,105,111,110,32,117,110,98,105,110,100,40,101,108,41,32,123,92,110,32,32,32,32,114,101,109,111,118,101,80,111,112,111,118,101,114,40,101,108,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,112,111,112,111,118,101,114,47,112,111,112,111,118,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,47,104,101,108,112,101,114,115,47,98,118,45,115,99,114,111,108,108,115,112,121,46,99,108,97,115,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,47,104,101,108,112,101,114,115,47,98,118,45,115,99,114,111,108,108,115,112,121,46,99,108,97,115,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,83,99,114,111,108,108,83,112,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,86,83,99,114,111,108,108,83,112,121,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,115,101,114,118,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,111,98,115,101,114,118,101,45,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,115,101,114,118,101,45,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,117,116,105,108,115,47,119,97,114,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,105,110,115,116,97,110,99,101,44,32,67,111,110,115,116,114,117,99,116,111,114,41,32,123,32,105,102,32,40,33,40,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,67,111,110,115,116,114,117,99,116,111,114,41,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,32,112,114,111,112,115,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,112,114,111,112,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,100,101,115,99,114,105,112,116,111,114,32,61,32,112,114,111,112,115,91,105,93,59,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,61,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,124,124,32,102,97,108,115,101,59,32,100,101,115,99,114,105,112,116,111,114,46,99,111,110,102,105,103,117,114,97,98,108,101,32,61,32,116,114,117,101,59,32,105,102,32,40,92,34,118,97,108,117,101,92,34,32,105,110,32,100,101,115,99,114,105,112,116,111,114,41,32,100,101,115,99,114,105,112,116,111,114,46,119,114,105,116,97,98,108,101,32,61,32,116,114,117,101,59,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,100,101,115,99,114,105,112,116,111,114,46,107,101,121,44,32,100,101,115,99,114,105,112,116,111,114,41,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,99,114,101,97,116,101,67,108,97,115,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,112,114,111,116,111,80,114,111,112,115,44,32,115,116,97,116,105,99,80,114,111,112,115,41,32,123,32,105,102,32,40,112,114,111,116,111,80,114,111,112,115,41,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,44,32,112,114,111,116,111,80,114,111,112,115,41,59,32,105,102,32,40,115,116,97,116,105,99,80,114,111,112,115,41,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,115,116,97,116,105,99,80,114,111,112,115,41,59,32,114,101,116,117,114,110,32,67,111,110,115,116,114,117,99,116,111,114,59,32,125,92,110,92,110,47,42,92,110,32,42,32,83,99,114,111,108,108,83,112,121,32,99,108,97,115,115,32,100,101,102,105,110,105,116,105,111,110,92,110,32,42,47,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,92,110,32,42,32,67,111,110,115,116,97,110,116,115,32,47,32,68,101,102,97,117,108,116,115,92,110,32,42,47,92,110,92,110,118,97,114,32,78,65,77,69,32,61,32,39,118,45,98,45,115,99,114,111,108,108,115,112,121,39,59,92,110,118,97,114,32,67,76,65,83,83,95,78,65,77,69,95,68,82,79,80,68,79,87,78,95,73,84,69,77,32,61,32,39,100,114,111,112,100,111,119,110,45,105,116,101,109,39,59,92,110,118,97,114,32,67,76,65,83,83,95,78,65,77,69,95,65,67,84,73,86,69,32,61,32,39,97,99,116,105,118,101,39,59,92,110,118,97,114,32,83,69,76,69,67,84,79,82,95,78,65,86,95,76,73,83,84,95,71,82,79,85,80,32,61,32,39,46,110,97,118,44,32,46,108,105,115,116,45,103,114,111,117,112,39,59,92,110,118,97,114,32,83,69,76,69,67,84,79,82,95,78,65,86,95,76,73,78,75,83,32,61,32,39,46,110,97,118,45,108,105,110,107,39,59,92,110,118,97,114,32,83,69,76,69,67,84,79,82,95,78,65,86,95,73,84,69,77,83,32,61,32,39,46,110,97,118,45,105,116,101,109,39,59,92,110,118,97,114,32,83,69,76,69,67,84,79,82,95,76,73,83,84,95,73,84,69,77,83,32,61,32,39,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,39,59,92,110,118,97,114,32,83,69,76,69,67,84,79,82,95,68,82,79,80,68,79,87,78,32,61,32,39,46,100,114,111,112,100,111,119,110,44,32,46,100,114,111,112,117,112,39,59,92,110,118,97,114,32,83,69,76,69,67,84,79,82,95,68,82,79,80,68,79,87,78,95,73,84,69,77,83,32,61,32,39,46,100,114,111,112,100,111,119,110,45,105,116,101,109,39,59,92,110,118,97,114,32,83,69,76,69,67,84,79,82,95,68,82,79,80,68,79,87,78,95,84,79,71,71,76,69,32,61,32,39,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,39,59,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,65,67,84,73,86,65,84,69,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,39,66,86,83,99,114,111,108,108,115,112,121,39,44,32,39,97,99,116,105,118,97,116,101,39,41,59,92,110,118,97,114,32,77,69,84,72,79,68,95,79,70,70,83,69,84,32,61,32,39,111,102,102,115,101,116,39,59,92,110,118,97,114,32,77,69,84,72,79,68,95,80,79,83,73,84,73,79,78,32,61,32,39,112,111,115,105,116,105,111,110,39,59,92,110,118,97,114,32,68,101,102,97,117,108,116,32,61,32,123,92,110,32,32,101,108,101,109,101,110,116,58,32,39,98,111,100,121,39,44,92,110,32,32,111,102,102,115,101,116,58,32,49,48,44,92,110,32,32,109,101,116,104,111,100,58,32,39,97,117,116,111,39,44,92,110,32,32,116,104,114,111,116,116,108,101,58,32,55,53,92,110,125,59,92,110,118,97,114,32,68,101,102,97,117,108,116,84,121,112,101,32,61,32,123,92,110,32,32,101,108,101,109,101,110,116,58,32,39,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,99,111,109,112,111,110,101,110,116,41,39,44,92,110,32,32,111,102,102,115,101,116,58,32,39,110,117,109,98,101,114,39,44,92,110,32,32,109,101,116,104,111,100,58,32,39,115,116,114,105,110,103,39,44,92,110,32,32,116,104,114,111,116,116,108,101,58,32,39,110,117,109,98,101,114,39,92,110,125,59,32,47,47,32,84,114,97,110,115,105,116,105,111,110,32,69,118,101,110,116,115,92,110,92,110,118,97,114,32,84,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,115,32,61,32,91,39,119,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,69,110,100,39,44,32,39,116,114,97,110,115,105,116,105,111,110,101,110,100,39,44,32,39,111,116,114,97,110,115,105,116,105,111,110,101,110,100,39,44,32,39,111,84,114,97,110,115,105,116,105,111,110,69,110,100,39,93,59,92,110,47,42,92,110,32,42,32,85,116,105,108,105,116,121,32,77,101,116,104,111,100,115,92,110,32,42,47,92,110,47,47,32,66,101,116,116,101,114,32,118,97,114,32,116,121,112,101,32,100,101,116,101,99,116,105,111,110,92,110,92,110,118,97,114,32,116,111,84,121,112,101,32,61,32,102,117,110,99,116,105,111,110,32,116,111,84,121,112,101,40,111,98,106,41,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,111,83,116,114,105,110,103,41,40,111,98,106,41,46,109,97,116,99,104,40,47,92,92,115,40,91,97,45,122,65,45,90,93,43,41,47,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,125,59,32,47,47,32,67,104,101,99,107,32,99,111,110,102,105,103,32,112,114,111,112,101,114,116,105,101,115,32,102,111,114,32,101,120,112,101,99,116,101,100,32,116,121,112,101,115,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,92,110,118,97,114,32,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,32,61,32,102,117,110,99,116,105,111,110,32,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,99,111,109,112,111,110,101,110,116,78,97,109,101,44,32,99,111,110,102,105,103,44,32,99,111,110,102,105,103,84,121,112,101,115,41,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,123,92,110,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,101,114,116,121,32,105,110,32,99,111,110,102,105,103,84,121,112,101,115,41,32,123,92,110,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,41,40,99,111,110,102,105,103,84,121,112,101,115,44,32,112,114,111,112,101,114,116,121,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,101,120,112,101,99,116,101,100,84,121,112,101,115,32,61,32,99,111,110,102,105,103,84,121,112,101,115,91,112,114,111,112,101,114,116,121,93,59,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,99,111,110,102,105,103,91,112,114,111,112,101,114,116,121,93,59,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,84,121,112,101,32,61,32,118,97,108,117,101,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,69,108,101,109,101,110,116,41,40,118,97,108,117,101,41,32,63,32,39,101,108,101,109,101,110,116,39,32,58,32,116,111,84,121,112,101,40,118,97,108,117,101,41,59,32,47,47,32,104,97,110,100,108,101,32,86,117,101,32,105,110,115,116,97,110,99,101,115,92,110,92,110,32,32,32,32,32,32,118,97,108,117,101,84,121,112,101,32,61,32,118,97,108,117,101,32,38,38,32,118,97,108,117,101,46,95,105,115,86,117,101,32,63,32,39,99,111,109,112,111,110,101,110,116,39,32,58,32,118,97,108,117,101,84,121,112,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,110,101,119,32,82,101,103,69,120,112,40,101,120,112,101,99,116,101,100,84,121,112,101,115,41,46,116,101,115,116,40,118,97,108,117,101,84,121,112,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,119,97,114,110,41,40,92,34,92,34,46,99,111,110,99,97,116,40,99,111,109,112,111,110,101,110,116,78,97,109,101,44,32,92,34,58,32,79,112,116,105,111,110,32,92,92,92,34,92,34,41,46,99,111,110,99,97,116,40,112,114,111,112,101,114,116,121,44,32,92,34,92,92,92,34,32,112,114,111,118,105,100,101,100,32,116,121,112,101,32,92,92,92,34,92,34,41,46,99,111,110,99,97,116,40,118,97,108,117,101,84,121,112,101,44,32,92,34,92,92,92,34,32,98,117,116,32,101,120,112,101,99,116,101,100,32,116,121,112,101,32,92,92,92,34,92,34,41,46,99,111,110,99,97,116,40,101,120,112,101,99,116,101,100,84,121,112,101,115,44,32,92,34,92,92,92,34,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,47,42,92,110,32,42,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,92,110,32,42,32,67,108,97,115,115,32,68,101,102,105,110,105,116,105,111,110,92,110,32,42,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,92,110,32,42,47,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,92,110,92,110,118,97,114,32,66,86,83,99,114,111,108,108,83,112,121,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,66,86,83,99,114,111,108,108,83,112,121,40,101,108,101,109,101,110,116,44,32,99,111,110,102,105,103,44,32,36,114,111,111,116,41,32,123,92,110,32,32,32,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,66,86,83,99,114,111,108,108,83,112,121,41,59,92,110,92,110,32,32,32,32,47,47,32,84,104,101,32,101,108,101,109,101,110,116,32,119,101,32,97,99,116,105,118,97,116,101,32,108,105,110,107,115,32,105,110,92,110,32,32,32,32,116,104,105,115,46,36,101,108,32,61,32,101,108,101,109,101,110,116,59,92,110,32,32,32,32,116,104,105,115,46,36,115,99,114,111,108,108,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,115,101,108,101,99,116,111,114,32,61,32,91,83,69,76,69,67,84,79,82,95,78,65,86,95,76,73,78,75,83,44,32,83,69,76,69,67,84,79,82,95,76,73,83,84,95,73,84,69,77,83,44,32,83,69,76,69,67,84,79,82,95,68,82,79,80,68,79,87,78,95,73,84,69,77,83,93,46,106,111,105,110,40,39,44,39,41,59,92,110,32,32,32,32,116,104,105,115,46,36,111,102,102,115,101,116,115,32,61,32,91,93,59,92,110,32,32,32,32,116,104,105,115,46,36,116,97,114,103,101,116,115,32,61,32,91,93,59,92,110,32,32,32,32,116,104,105,115,46,36,97,99,116,105,118,101,84,97,114,103,101,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,115,99,114,111,108,108,72,101,105,103,104,116,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,36,114,101,115,105,122,101,84,105,109,101,111,117,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,115,99,114,111,108,108,101,114,79,98,115,101,114,118,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,116,97,114,103,101,116,115,79,98,115,101,114,118,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,114,111,111,116,32,61,32,36,114,111,111,116,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,99,111,110,102,105,103,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,67,111,110,102,105,103,40,99,111,110,102,105,103,41,59,92,110,32,32,125,92,110,92,110,32,32,95,99,114,101,97,116,101,67,108,97,115,115,40,66,86,83,99,114,111,108,108,83,112,121,44,32,91,123,92,110,32,32,32,32,107,101,121,58,32,92,34,117,112,100,97,116,101,67,111,110,102,105,103,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,67,111,110,102,105,103,40,99,111,110,102,105,103,44,32,36,114,111,111,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,115,99,114,111,108,108,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,74,117,115,116,32,105,110,32,99,97,115,101,32,111,117,116,32,115,99,114,111,108,108,32,101,108,101,109,101,110,116,32,104,97,115,32,99,104,97,110,103,101,100,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,117,110,108,105,115,116,101,110,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,99,114,111,108,108,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,102,103,32,61,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,41,44,32,99,111,110,102,105,103,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,36,114,111,111,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,114,111,111,116,32,61,32,36,114,111,111,116,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,78,97,109,101,44,32,99,102,103,44,32,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,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,99,111,110,102,105,103,32,61,32,99,102,103,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,114,111,111,116,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,101,108,102,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,114,111,111,116,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,101,108,102,46,108,105,115,116,101,110,40,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,100,105,115,112,111,115,101,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,100,105,115,112,111,115,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,117,110,108,105,115,116,101,110,40,41,59,92,110,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,36,114,101,115,105,122,101,84,105,109,101,111,117,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,114,101,115,105,122,101,84,105,109,101,111,117,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,108,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,99,111,110,102,105,103,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,99,114,111,108,108,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,101,108,101,99,116,111,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,111,102,102,115,101,116,115,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,116,97,114,103,101,116,115,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,97,99,116,105,118,101,84,97,114,103,101,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,99,114,111,108,108,72,101,105,103,104,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,108,105,115,116,101,110,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,108,105,115,116,101,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,101,114,32,61,32,116,104,105,115,46,103,101,116,83,99,114,111,108,108,101,114,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,99,114,111,108,108,101,114,32,38,38,32,115,99,114,111,108,108,101,114,46,116,97,103,78,97,109,101,32,33,61,61,32,39,66,79,68,89,39,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,41,40,115,99,114,111,108,108,101,114,44,32,39,115,99,114,111,108,108,39,44,32,116,104,105,115,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,41,40,119,105,110,100,111,119,44,32,39,115,99,114,111,108,108,39,44,32,116,104,105,115,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,41,40,119,105,110,100,111,119,44,32,39,114,101,115,105,122,101,39,44,32,116,104,105,115,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,41,40,119,105,110,100,111,119,44,32,39,111,114,105,101,110,116,97,116,105,111,110,99,104,97,110,103,101,39,44,32,116,104,105,115,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,84,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,41,40,119,105,110,100,111,119,44,32,101,118,101,110,116,78,97,109,101,44,32,95,116,104,105,115,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,115,40,116,114,117,101,41,59,32,47,47,32,83,99,104,101,100,117,108,101,32,97,32,114,101,102,114,101,115,104,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,104,97,110,100,108,101,69,118,101,110,116,40,39,114,101,102,114,101,115,104,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,117,110,108,105,115,116,101,110,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,117,110,108,105,115,116,101,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,101,114,32,61,32,116,104,105,115,46,103,101,116,83,99,114,111,108,108,101,114,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,115,40,102,97,108,115,101,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,99,114,111,108,108,101,114,32,38,38,32,115,99,114,111,108,108,101,114,46,116,97,103,78,97,109,101,32,33,61,61,32,39,66,79,68,89,39,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,102,102,41,40,115,99,114,111,108,108,101,114,44,32,39,115,99,114,111,108,108,39,44,32,116,104,105,115,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,102,102,41,40,119,105,110,100,111,119,44,32,39,115,99,114,111,108,108,39,44,32,116,104,105,115,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,102,102,41,40,119,105,110,100,111,119,44,32,39,114,101,115,105,122,101,39,44,32,116,104,105,115,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,102,102,41,40,119,105,110,100,111,119,44,32,39,111,114,105,101,110,116,97,116,105,111,110,99,104,97,110,103,101,39,44,32,116,104,105,115,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,84,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,102,102,41,40,119,105,110,100,111,119,44,32,101,118,101,110,116,78,97,109,101,44,32,95,116,104,105,115,50,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,115,101,116,79,98,115,101,114,118,101,114,115,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,116,79,98,115,101,114,118,101,114,115,40,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,87,101,32,111,98,115,101,114,118,101,32,98,111,116,104,32,116,104,101,32,115,99,114,111,108,108,101,114,32,102,111,114,32,99,111,110,116,101,110,116,32,99,104,97,110,103,101,115,44,32,97,110,100,32,116,104,101,32,116,97,114,103,101,116,32,108,105,110,107,115,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,99,114,111,108,108,101,114,79,98,115,101,114,118,101,114,32,38,38,32,116,104,105,115,46,36,115,99,114,111,108,108,101,114,79,98,115,101,114,118,101,114,46,100,105,115,99,111,110,110,101,99,116,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,116,97,114,103,101,116,115,79,98,115,101,114,118,101,114,32,38,38,32,116,104,105,115,46,36,116,97,114,103,101,116,115,79,98,115,101,114,118,101,114,46,100,105,115,99,111,110,110,101,99,116,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,99,114,111,108,108,101,114,79,98,115,101,114,118,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,116,97,114,103,101,116,115,79,98,115,101,114,118,101,114,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,116,97,114,103,101,116,115,79,98,115,101,114,118,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,115,101,114,118,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,111,98,115,101,114,118,101,68,111,109,41,40,116,104,105,115,46,36,101,108,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,104,97,110,100,108,101,69,118,101,110,116,40,39,109,117,116,97,116,105,111,110,39,41,59,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,117,98,116,114,101,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,76,105,115,116,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,58,32,91,39,104,114,101,102,39,93,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,99,114,111,108,108,101,114,79,98,115,101,114,118,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,115,101,114,118,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,111,98,115,101,114,118,101,68,111,109,41,40,116,104,105,115,46,103,101,116,83,99,114,111,108,108,101,114,40,41,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,104,97,110,100,108,101,69,118,101,110,116,40,39,109,117,116,97,116,105,111,110,39,41,59,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,117,98,116,114,101,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,76,105,115,116,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,99,104,97,114,97,99,116,101,114,68,97,116,97,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,58,32,91,39,105,100,39,44,32,39,115,116,121,108,101,39,44,32,39,99,108,97,115,115,39,93,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,47,47,32,71,101,110,101,114,97,108,32,101,118,101,110,116,32,104,97,110,100,108,101,114,92,110,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,104,97,110,100,108,101,69,118,101,110,116,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,69,118,101,110,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,83,116,114,105,110,103,41,40,101,118,101,110,116,41,32,63,32,101,118,101,110,116,32,58,32,101,118,101,110,116,46,116,121,112,101,59,92,110,32,32,32,32,32,32,118,97,114,32,115,101,108,102,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,105,122,101,84,104,114,111,116,116,108,101,32,61,32,102,117,110,99,116,105,111,110,32,114,101,115,105,122,101,84,104,114,111,116,116,108,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,115,101,108,102,46,36,114,101,115,105,122,101,84,105,109,101,111,117,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,101,108,102,46,36,114,101,115,105,122,101,84,105,109,101,111,117,116,32,61,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,102,46,114,101,102,114,101,115,104,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,102,46,112,114,111,99,101,115,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,102,46,36,114,101,115,105,122,101,84,105,109,101,111,117,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,115,101,108,102,46,36,99,111,110,102,105,103,46,116,104,114,111,116,116,108,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,115,99,114,111,108,108,39,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,36,115,99,114,111,108,108,101,114,79,98,115,101,114,118,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,74,117,115,116,32,105,110,32,99,97,115,101,32,119,101,32,97,114,101,32,97,100,100,101,100,32,116,111,32,116,104,101,32,68,79,77,32,98,101,102,111,114,101,32,116,104,101,32,115,99,114,111,108,108,32,116,97,114,103,101,116,32,105,115,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,114,101,45,105,110,115,116,97,110,116,105,97,116,101,32,111,117,114,32,108,105,115,116,101,110,101,114,115,44,32,106,117,115,116,32,105,110,32,99,97,115,101,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,112,114,111,99,101,115,115,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,47,40,114,101,115,105,122,101,124,111,114,105,101,110,116,97,116,105,111,110,99,104,97,110,103,101,124,109,117,116,97,116,105,111,110,124,114,101,102,114,101,115,104,41,47,46,116,101,115,116,40,116,121,112,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,80,111,115,116,112,111,110,101,32,116,104,101,115,101,32,101,118,101,110,116,115,32,98,121,32,116,104,114,111,116,116,108,101,32,116,105,109,101,92,110,32,32,32,32,32,32,32,32,114,101,115,105,122,101,84,104,114,111,116,116,108,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,47,47,32,82,101,102,114,101,115,104,32,116,104,101,32,108,105,115,116,32,111,102,32,116,97,114,103,101,116,32,108,105,110,107,115,32,111,110,32,116,104,101,32,101,108,101,109,101,110,116,32,119,101,32,97,114,101,32,97,112,112,108,105,101,100,32,116,111,92,110,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,114,101,102,114,101,115,104,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,102,114,101,115,104,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,101,114,32,61,32,116,104,105,115,46,103,101,116,83,99,114,111,108,108,101,114,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,115,99,114,111,108,108,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,97,117,116,111,77,101,116,104,111,100,32,61,32,115,99,114,111,108,108,101,114,32,33,61,61,32,115,99,114,111,108,108,101,114,46,119,105,110,100,111,119,32,63,32,77,69,84,72,79,68,95,80,79,83,73,84,73,79,78,32,58,32,77,69,84,72,79,68,95,79,70,70,83,69,84,59,92,110,32,32,32,32,32,32,118,97,114,32,109,101,116,104,111,100,32,61,32,116,104,105,115,46,36,99,111,110,102,105,103,46,109,101,116,104,111,100,32,61,61,61,32,39,97,117,116,111,39,32,63,32,97,117,116,111,77,101,116,104,111,100,32,58,32,116,104,105,115,46,36,99,111,110,102,105,103,46,109,101,116,104,111,100,59,92,110,32,32,32,32,32,32,118,97,114,32,109,101,116,104,111,100,70,110,32,61,32,109,101,116,104,111,100,32,61,61,61,32,77,69,84,72,79,68,95,80,79,83,73,84,73,79,78,32,63,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,111,115,105,116,105,111,110,32,58,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,111,102,102,115,101,116,59,92,110,32,32,32,32,32,32,118,97,114,32,111,102,102,115,101,116,66,97,115,101,32,61,32,109,101,116,104,111,100,32,61,61,61,32,77,69,84,72,79,68,95,80,79,83,73,84,73,79,78,32,63,32,116,104,105,115,46,103,101,116,83,99,114,111,108,108,84,111,112,40,41,32,58,32,48,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,111,102,102,115,101,116,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,116,97,114,103,101,116,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,99,114,111,108,108,72,101,105,103,104,116,32,61,32,116,104,105,115,46,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,40,41,59,32,47,47,32,70,105,110,100,32,97,108,108,32,116,104,101,32,117,110,105,113,117,101,32,108,105,110,107,32,72,82,69,70,115,32,116,104,97,116,32,119,101,32,119,105,108,108,32,99,111,110,116,114,111,108,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,108,101,99,116,65,108,108,41,40,116,104,105,115,46,36,115,101,108,101,99,116,111,114,44,32,116,104,105,115,46,36,101,108,41,32,47,47,32,71,101,116,32,72,82,69,70,32,118,97,108,117,101,92,110,32,32,32,32,32,32,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,108,105,110,107,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,65,116,116,114,41,40,108,105,110,107,44,32,39,104,114,101,102,39,41,59,92,110,32,32,32,32,32,32,125,41,32,47,47,32,70,105,108,116,101,114,32,111,117,116,32,72,82,69,70,115,32,116,104,97,116,32,100,111,32,110,111,116,32,109,97,116,99,104,32,111,117,114,32,82,101,103,69,120,112,92,110,32,32,32,32,32,32,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,104,114,101,102,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,114,101,102,32,38,38,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,82,88,95,72,82,69,70,46,116,101,115,116,40,104,114,101,102,32,124,124,32,39,39,41,59,92,110,32,32,32,32,32,32,125,41,32,47,47,32,70,105,110,100,32,97,108,108,32,101,108,101,109,101,110,116,115,32,119,105,116,104,32,73,68,32,116,104,97,116,32,109,97,116,99,104,32,72,82,69,70,32,104,97,115,104,92,110,32,32,32,32,32,32,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,104,114,101,102,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,72,82,69,70,32,105,110,116,111,32,97,110,32,73,68,32,40,105,110,99,108,117,100,105,110,103,32,35,32,97,116,32,98,101,103,105,110,110,105,110,103,41,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,100,32,61,32,104,114,101,102,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,82,88,95,72,82,69,70,44,32,39,36,49,39,41,46,116,114,105,109,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,125,32,47,47,32,70,105,110,100,32,116,104,101,32,101,108,101,109,101,110,116,32,119,105,116,104,32,116,104,101,32,73,68,32,115,112,101,99,105,102,105,101,100,32,98,121,32,105,100,92,110,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,108,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,108,101,99,116,41,40,105,100,44,32,115,99,114,111,108,108,101,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,108,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,86,105,115,105,98,108,101,41,40,101,108,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,102,102,115,101,116,58,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,116,111,73,110,116,101,103,101,114,41,40,109,101,116,104,111,100,70,110,40,101,108,41,46,116,111,112,44,32,48,41,32,43,32,111,102,102,115,101,116,66,97,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,105,100,92,110,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,105,100,101,110,116,105,116,121,41,32,47,47,32,83,111,114,116,32,116,104,101,109,32,98,121,32,116,104,101,105,114,32,111,102,102,115,101,116,115,32,40,115,109,97,108,108,101,115,116,32,102,105,114,115,116,41,92,110,32,32,32,32,32,32,46,115,111,114,116,40,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,46,111,102,102,115,101,116,32,45,32,98,46,111,102,102,115,101,116,59,92,110,32,32,32,32,32,32,125,41,32,47,47,32,114,101,99,111,114,100,32,111,110,108,121,32,117,110,105,113,117,101,32,116,97,114,103,101,116,115,47,111,102,102,115,101,116,115,92,110,32,32,32,32,32,32,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,109,101,109,111,44,32,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,109,101,109,111,91,105,116,101,109,46,116,97,114,103,101,116,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,36,111,102,102,115,101,116,115,46,112,117,115,104,40,105,116,101,109,46,111,102,102,115,101,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,36,116,97,114,103,101,116,115,46,112,117,115,104,40,105,116,101,109,46,116,97,114,103,101,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,109,101,109,111,91,105,116,101,109,46,116,97,114,103,101,116,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,101,109,111,59,92,110,32,32,32,32,32,32,125,44,32,123,125,41,59,32,47,47,32,82,101,116,117,114,110,32,116,104,105,115,32,102,111,114,32,101,97,115,121,32,99,104,97,105,110,105,110,103,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,32,47,47,32,72,97,110,100,108,101,32,97,99,116,105,118,97,116,105,110,103,47,99,108,101,97,114,105,110,103,92,110,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,112,114,111,99,101,115,115,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,112,114,111,99,101,115,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,84,111,112,32,61,32,116,104,105,115,46,103,101,116,83,99,114,111,108,108,84,111,112,40,41,32,43,32,116,104,105,115,46,36,99,111,110,102,105,103,46,111,102,102,115,101,116,59,92,110,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,72,101,105,103,104,116,32,61,32,116,104,105,115,46,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,109,97,120,83,99,114,111,108,108,32,61,32,116,104,105,115,46,36,99,111,110,102,105,103,46,111,102,102,115,101,116,32,43,32,115,99,114,111,108,108,72,101,105,103,104,116,32,45,32,116,104,105,115,46,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,115,99,114,111,108,108,72,101,105,103,104,116,32,33,61,61,32,115,99,114,111,108,108,72,101,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,102,114,101,115,104,40,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,99,114,111,108,108,84,111,112,32,62,61,32,109,97,120,83,99,114,111,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,36,116,97,114,103,101,116,115,91,116,104,105,115,46,36,116,97,114,103,101,116,115,46,108,101,110,103,116,104,32,45,32,49,93,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,97,99,116,105,118,101,84,97,114,103,101,116,32,33,61,61,32,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,97,116,101,40,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,97,99,116,105,118,101,84,97,114,103,101,116,32,38,38,32,115,99,114,111,108,108,84,111,112,32,60,32,116,104,105,115,46,36,111,102,102,115,101,116,115,91,48,93,32,38,38,32,116,104,105,115,46,36,111,102,102,115,101,116,115,91,48,93,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,97,99,116,105,118,101,84,97,114,103,101,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,40,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,116,104,105,115,46,36,111,102,102,115,101,116,115,46,108,101,110,103,116,104,59,32,105,45,45,59,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,115,65,99,116,105,118,101,84,97,114,103,101,116,32,61,32,116,104,105,115,46,36,97,99,116,105,118,101,84,97,114,103,101,116,32,33,61,61,32,116,104,105,115,46,36,116,97,114,103,101,116,115,91,105,93,32,38,38,32,115,99,114,111,108,108,84,111,112,32,62,61,32,116,104,105,115,46,36,111,102,102,115,101,116,115,91,105,93,32,38,38,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,116,104,105,115,46,36,111,102,102,115,101,116,115,91,105,32,43,32,49,93,41,32,124,124,32,115,99,114,111,108,108,84,111,112,32,60,32,116,104,105,115,46,36,111,102,102,115,101,116,115,91,105,32,43,32,49,93,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,65,99,116,105,118,101,84,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,97,116,101,40,116,104,105,115,46,36,116,97,114,103,101,116,115,91,105,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,103,101,116,83,99,114,111,108,108,101,114,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,83,99,114,111,108,108,101,114,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,115,99,114,111,108,108,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,99,114,111,108,108,101,114,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,101,114,32,61,32,116,104,105,115,46,36,99,111,110,102,105,103,46,101,108,101,109,101,110,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,115,99,114,111,108,108,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,69,108,101,109,101,110,116,41,40,115,99,114,111,108,108,101,114,46,36,101,108,41,41,32,123,92,110,32,32,32,32,32,32,32,32,115,99,114,111,108,108,101,114,32,61,32,115,99,114,111,108,108,101,114,46,36,101,108,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,83,116,114,105,110,103,41,40,115,99,114,111,108,108,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,115,99,114,111,108,108,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,108,101,99,116,41,40,115,99,114,111,108,108,101,114,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,115,99,114,111,108,108,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,99,114,111,108,108,101,114,32,61,32,115,99,114,111,108,108,101,114,46,116,97,103,78,97,109,101,32,61,61,61,32,39,66,79,68,89,39,32,63,32,119,105,110,100,111,119,32,58,32,115,99,114,111,108,108,101,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,99,114,111,108,108,101,114,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,103,101,116,83,99,114,111,108,108,84,111,112,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,83,99,114,111,108,108,84,111,112,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,101,114,32,61,32,116,104,105,115,46,103,101,116,83,99,114,111,108,108,101,114,40,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,114,111,108,108,101,114,32,61,61,61,32,119,105,110,100,111,119,32,63,32,115,99,114,111,108,108,101,114,46,112,97,103,101,89,79,102,102,115,101,116,32,58,32,115,99,114,111,108,108,101,114,46,115,99,114,111,108,108,84,111,112,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,103,101,116,83,99,114,111,108,108,101,114,40,41,46,115,99,114,111,108,108,72,101,105,103,104,116,32,124,124,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,109,97,116,104,77,97,120,41,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,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,46,115,99,114,111,108,108,72,101,105,103,104,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,101,114,32,61,32,116,104,105,115,46,103,101,116,83,99,114,111,108,108,101,114,40,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,114,111,108,108,101,114,32,61,61,61,32,119,105,110,100,111,119,32,63,32,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,32,58,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,103,101,116,66,67,82,41,40,115,99,114,111,108,108,101,114,41,46,104,101,105,103,104,116,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,97,99,116,105,118,97,116,101,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,97,99,116,105,118,97,116,101,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,53,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,97,99,116,105,118,101,84,97,114,103,101,116,32,61,32,116,97,114,103,101,116,59,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,40,41,59,32,47,47,32,71,114,97,98,32,116,104,101,32,108,105,115,116,32,111,102,32,116,97,114,103,101,116,32,108,105,110,107,115,32,40,60,97,32,104,114,101,102,61,92,34,123,36,116,97,114,103,101,116,125,92,34,62,41,92,110,92,110,32,32,32,32,32,32,118,97,114,32,108,105,110,107,115,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,108,101,99,116,65,108,108,41,40,116,104,105,115,46,36,115,101,108,101,99,116,111,114,32,47,47,32,83,112,108,105,116,32,111,117,116,32,116,104,101,32,98,97,115,101,32,115,101,108,101,99,116,111,114,115,92,110,32,32,32,32,32,32,46,115,112,108,105,116,40,39,44,39,41,32,47,47,32,77,97,112,32,116,111,32,97,32,115,101,108,101,99,116,111,114,32,116,104,97,116,32,109,97,116,99,104,101,115,32,108,105,110,107,115,32,119,105,116,104,32,72,82,69,70,32,101,110,100,105,110,103,32,105,110,32,116,104,101,32,73,68,32,40,105,110,99,108,117,100,105,110,103,32,39,35,39,41,92,110,32,32,32,32,32,32,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,115,101,108,101,99,116,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,92,34,46,99,111,110,99,97,116,40,115,101,108,101,99,116,111,114,44,32,92,34,91,104,114,101,102,36,61,92,92,92,34,92,34,41,46,99,111,110,99,97,116,40,116,97,114,103,101,116,44,32,92,34,92,92,92,34,93,92,34,41,59,92,110,32,32,32,32,32,32,125,41,32,47,47,32,74,111,105,110,32,98,97,99,107,32,105,110,116,111,32,97,32,115,105,110,103,108,101,32,115,101,108,101,99,116,111,114,32,115,116,114,105,110,103,92,110,32,32,32,32,32,32,46,106,111,105,110,40,39,44,39,41,44,32,116,104,105,115,46,36,101,108,41,59,92,110,32,32,32,32,32,32,108,105,110,107,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,108,105,110,107,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,97,115,67,108,97,115,115,41,40,108,105,110,107,44,32,67,76,65,83,83,95,78,65,77,69,95,68,82,79,80,68,79,87,78,95,73,84,69,77,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,97,32,100,114,111,112,100,111,119,110,32,105,116,101,109,44,32,115,111,32,102,105,110,100,32,116,104,101,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,32,97,110,100,32,115,101,116,32,105,116,115,32,115,116,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,114,111,112,100,111,119,110,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,108,111,115,101,115,116,41,40,83,69,76,69,67,84,79,82,95,68,82,79,80,68,79,87,78,44,32,108,105,110,107,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,114,111,112,100,111,119,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,53,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,108,101,99,116,41,40,83,69,76,69,67,84,79,82,95,68,82,79,80,68,79,87,78,95,84,79,71,71,76,69,44,32,100,114,111,112,100,111,119,110,41,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,47,47,32,65,108,115,111,32,115,101,116,32,116,104,105,115,32,108,105,110,107,39,115,32,115,116,97,116,101,92,110,92,110,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,53,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,108,105,110,107,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,116,114,105,103,103,101,114,101,100,32,108,105,110,107,32,97,115,32,97,99,116,105,118,101,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,53,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,108,105,110,107,44,32,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,116,99,104,101,115,41,40,108,105,110,107,46,112,97,114,101,110,116,69,108,101,109,101,110,116,44,32,83,69,76,69,67,84,79,82,95,78,65,86,95,73,84,69,77,83,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,110,97,118,45,108,105,110,107,32,105,110,115,105,100,101,32,110,97,118,45,105,116,101,109,44,32,97,110,100,32,115,101,116,32,110,97,118,45,105,116,101,109,32,97,99,116,105,118,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,53,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,108,105,110,107,46,112,97,114,101,110,116,69,108,101,109,101,110,116,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,47,47,32,83,101,116,32,116,114,105,103,103,101,114,101,100,32,108,105,110,107,115,32,112,97,114,101,110,116,115,32,97,115,32,97,99,116,105,118,101,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,87,105,116,104,32,98,111,116,104,32,60,117,108,62,32,97,110,100,32,60,110,97,118,62,32,109,97,114,107,117,112,32,97,32,112,97,114,101,110,116,32,105,115,32,116,104,101,32,112,114,101,118,105,111,117,115,32,115,105,98,108,105,110,103,32,111,102,32,97,110,121,32,110,97,118,32,97,110,99,101,115,116,111,114,92,110,92,110,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,108,32,61,32,108,105,110,107,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,108,111,115,101,115,116,41,40,83,69,76,69,67,84,79,82,95,78,65,86,95,76,73,83,84,95,71,82,79,85,80,44,32,101,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,105,98,108,105,110,103,32,61,32,101,108,32,63,32,101,108,46,112,114,101,118,105,111,117,115,69,108,101,109,101,110,116,83,105,98,108,105,110,103,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,98,108,105,110,103,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,116,99,104,101,115,41,40,115,105,98,108,105,110,103,44,32,92,34,92,34,46,99,111,110,99,97,116,40,83,69,76,69,67,84,79,82,95,78,65,86,95,76,73,78,75,83,44,32,92,34,44,32,92,34,41,46,99,111,110,99,97,116,40,83,69,76,69,67,84,79,82,95,76,73,83,84,95,73,84,69,77,83,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,53,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,115,105,98,108,105,110,103,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,47,47,32,72,97,110,100,108,101,32,115,112,101,99,105,97,108,32,99,97,115,101,32,119,104,101,114,101,32,110,97,118,45,108,105,110,107,32,105,115,32,105,110,115,105,100,101,32,97,32,110,97,118,45,105,116,101,109,92,110,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,98,108,105,110,103,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,116,99,104,101,115,41,40,115,105,98,108,105,110,103,44,32,83,69,76,69,67,84,79,82,95,78,65,86,95,73,84,69,77,83,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,53,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,108,101,99,116,41,40,83,69,76,69,67,84,79,82,95,78,65,86,95,76,73,78,75,83,44,32,115,105,98,108,105,110,103,41,44,32,116,114,117,101,41,59,32,47,47,32,65,100,100,32,97,99,116,105,118,101,32,115,116,97,116,101,32,116,111,32,110,97,118,45,105,116,101,109,32,97,115,32,119,101,108,108,92,110,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,53,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,115,105,98,108,105,110,103,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,32,47,47,32,83,105,103,110,97,108,32,101,118,101,110,116,32,116,111,32,118,105,97,32,36,114,111,111,116,44,32,112,97,115,115,105,110,103,32,73,68,32,111,102,32,97,99,116,105,118,97,116,101,100,32,116,97,114,103,101,116,32,97,110,100,32,114,101,102,101,114,101,110,99,101,32,116,111,32,97,114,114,97,121,32,111,102,32,108,105,110,107,115,92,110,92,110,32,32,32,32,32,32,105,102,32,40,108,105,110,107,115,32,38,38,32,108,105,110,107,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,116,104,105,115,46,36,114,111,111,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,114,111,111,116,46,36,101,109,105,116,40,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,65,67,84,73,86,65,84,69,44,32,116,97,114,103,101,116,44,32,108,105,110,107,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,99,108,101,97,114,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,54,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,108,101,99,116,65,108,108,41,40,92,34,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,36,115,101,108,101,99,116,111,114,44,32,92,34,44,32,92,34,41,46,99,111,110,99,97,116,40,83,69,76,69,67,84,79,82,95,78,65,86,95,73,84,69,77,83,41,44,32,116,104,105,115,46,36,101,108,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,97,115,67,108,97,115,115,41,40,101,108,44,32,67,76,65,83,83,95,78,65,77,69,95,65,67,84,73,86,69,41,59,92,110,32,32,32,32,32,32,125,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,54,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,101,108,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,115,101,116,65,99,116,105,118,101,83,116,97,116,101,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,101,108,44,32,97,99,116,105,118,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,97,99,116,105,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,100,100,67,108,97,115,115,41,40,101,108,44,32,67,76,65,83,83,95,78,65,77,69,95,65,67,84,73,86,69,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,101,108,44,32,67,76,65,83,83,95,78,65,77,69,95,65,67,84,73,86,69,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,93,44,32,91,123,92,110,32,32,32,32,107,101,121,58,32,92,34,78,97,109,101,92,34,44,92,110,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,78,65,77,69,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,68,101,102,97,117,108,116,92,34,44,92,110,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,68,101,102,97,117,108,116,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,68,101,102,97,117,108,116,84,121,112,101,92,34,44,92,110,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,68,101,102,97,117,108,116,84,121,112,101,59,92,110,32,32,32,32,125,92,110,32,32,125,93,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,66,86,83,99,114,111,108,108,83,112,121,59,92,110,125,40,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,47,104,101,108,112,101,114,115,47,98,118,45,115,99,114,111,108,108,115,112,121,46,99,108,97,115,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,83,99,114,111,108,108,115,112,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,99,114,111,108,108,115,112,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,86,66,83,99,114,111,108,108,115,112,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,83,99,114,111,108,108,115,112,121,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,86,66,83,99,114,111,108,108,115,112,121,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,99,114,111,108,108,115,112,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,99,114,111,108,108,115,112,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,47,115,99,114,111,108,108,115,112,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,86,66,83,99,114,111,108,108,115,112,121,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,100,105,114,101,99,116,105,118,101,115,58,32,123,92,110,32,32,32,32,86,66,83,99,114,111,108,108,115,112,121,58,32,95,115,99,114,111,108,108,115,112,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,86,66,83,99,114,111,108,108,115,112,121,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,47,115,99,114,111,108,108,115,112,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,47,115,99,114,111,108,108,115,112,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,83,99,114,111,108,108,115,112,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,86,66,83,99,114,111,108,108,115,112,121,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,98,118,95,115,99,114,111,108,108,115,112,121,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,98,118,45,115,99,114,111,108,108,115,112,121,46,99,108,97,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,47,104,101,108,112,101,114,115,47,98,118,45,115,99,114,111,108,108,115,112,121,46,99,108,97,115,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,75,101,121,32,119,101,32,117,115,101,32,116,111,32,115,116,111,114,101,32,111,117,114,32,105,110,115,116,97,110,99,101,92,110,92,110,118,97,114,32,66,86,95,83,67,82,79,76,76,83,80,89,32,61,32,39,95,95,66,86,95,83,99,114,111,108,108,83,112,121,95,95,39,59,32,47,47,32,80,114,101,45,99,111,109,112,105,108,101,100,32,114,101,103,117,108,97,114,32,101,120,112,114,101,115,115,105,111,110,115,92,110,92,110,118,97,114,32,111,110,108,121,68,105,103,105,116,115,82,69,32,61,32,47,94,92,92,100,43,36,47,59,92,110,118,97,114,32,111,102,102,115,101,116,82,69,32,61,32,47,94,40,97,117,116,111,124,112,111,115,105,116,105,111,110,124,111,102,102,115,101,116,41,36,47,59,32,47,47,32,66,117,105,108,100,32,97,32,83,99,114,111,108,108,83,112,121,32,99,111,110,102,105,103,32,98,97,115,101,100,32,111,110,32,98,105,110,100,105,110,103,115,32,40,105,102,32,97,110,121,41,92,110,47,47,32,65,114,103,117,109,101,110,116,115,32,97,110,100,32,109,111,100,105,102,105,101,114,115,32,116,97,107,101,32,112,114,101,99,101,100,101,110,99,101,32,111,118,101,114,32,112,97,115,115,101,100,32,118,97,108,117,101,32,99,111,110,102,105,103,32,111,98,106,101,99,116,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,92,110,118,97,114,32,112,97,114,115,101,66,105,110,100,105,110,103,115,32,61,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,66,105,110,100,105,110,103,115,40,98,105,110,100,105,110,103,115,41,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,123,92,110,32,32,118,97,114,32,99,111,110,102,105,103,32,61,32,123,125,59,32,47,47,32,73,102,32,97,114,103,117,109,101,110,116,44,32,97,115,115,117,109,101,32,101,108,101,109,101,110,116,32,73,68,92,110,92,110,32,32,105,102,32,40,98,105,110,100,105,110,103,115,46,97,114,103,41,32,123,92,110,32,32,32,32,47,47,32,69,108,101,109,101,110,116,32,73,68,32,115,112,101,99,105,102,105,101,100,32,97,115,32,97,114,103,92,110,32,32,32,32,47,47,32,87,101,32,109,117,115,116,32,112,114,101,112,101,110,100,32,39,35,39,32,116,111,32,98,101,99,111,109,101,32,97,32,67,83,83,32,115,101,108,101,99,116,111,114,92,110,32,32,32,32,99,111,110,102,105,103,46,101,108,101,109,101,110,116,32,61,32,92,34,35,92,34,46,99,111,110,99,97,116,40,98,105,110,100,105,110,103,115,46,97,114,103,41,59,92,110,32,32,125,32,47,47,32,80,114,111,99,101,115,115,32,109,111,100,105,102,105,101,114,115,92,110,92,110,92,110,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,107,101,121,115,41,40,98,105,110,100,105,110,103,115,46,109,111,100,105,102,105,101,114,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,109,111,100,41,32,123,92,110,32,32,32,32,105,102,32,40,111,110,108,121,68,105,103,105,116,115,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,79,102,102,115,101,116,32,118,97,108,117,101,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,111,102,102,115,101,116,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,111,73,110,116,101,103,101,114,41,40,109,111,100,44,32,48,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,111,102,102,115,101,116,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,79,102,102,115,101,116,32,109,101,116,104,111,100,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,109,101,116,104,111,100,32,61,32,109,111,100,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,80,114,111,99,101,115,115,32,118,97,108,117,101,92,110,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,83,116,114,105,110,103,41,40,98,105,110,100,105,110,103,115,46,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,47,47,32,86,97,108,117,101,32,105,115,32,97,32,67,83,83,32,73,68,32,111,114,32,115,101,108,101,99,116,111,114,92,110,32,32,32,32,99,111,110,102,105,103,46,101,108,101,109,101,110,116,32,61,32,98,105,110,100,105,110,103,115,46,118,97,108,117,101,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,78,117,109,98,101,114,41,40,98,105,110,100,105,110,103,115,46,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,47,47,32,86,97,108,117,101,32,105,115,32,111,102,102,115,101,116,92,110,32,32,32,32,99,111,110,102,105,103,46,111,102,102,115,101,116,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,116,104,82,111,117,110,100,41,40,98,105,110,100,105,110,103,115,46,118,97,108,117,101,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,79,98,106,101,99,116,41,40,98,105,110,100,105,110,103,115,46,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,47,47,32,86,97,108,117,101,32,105,115,32,99,111,110,102,105,103,32,111,98,106,101,99,116,92,110,32,32,32,32,47,47,32,70,105,108,116,101,114,32,116,104,101,32,111,98,106,101,99,116,32,98,97,115,101,100,32,111,110,32,111,117,114,32,115,117,112,112,111,114,116,101,100,32,99,111,110,102,105,103,32,111,112,116,105,111,110,115,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,107,101,121,115,41,40,98,105,110,100,105,110,103,115,46,118,97,108,117,101,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,107,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,95,104,101,108,112,101,114,115,95,98,118,95,115,99,114,111,108,108,115,112,121,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,86,83,99,114,111,108,108,83,112,121,46,68,101,102,97,117,108,116,84,121,112,101,91,107,93,59,92,110,32,32,32,32,125,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,41,32,123,92,110,32,32,32,32,32,32,99,111,110,102,105,103,91,107,93,32,61,32,98,105,110,100,105,110,103,115,46,118,97,108,117,101,91,107,93,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,99,111,110,102,105,103,59,92,110,125,59,32,47,47,32,65,100,100,32,111,114,32,117,112,100,97,116,101,32,83,99,114,111,108,108,83,112,121,32,111,110,32,111,117,114,32,101,108,101,109,101,110,116,92,110,92,110,92,110,118,97,114,32,97,112,112,108,121,83,99,114,111,108,108,115,112,121,32,61,32,102,117,110,99,116,105,111,110,32,97,112,112,108,121,83,99,114,111,108,108,115,112,121,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,123,92,110,32,32,105,102,32,40,33,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,73,83,95,66,82,79,87,83,69,82,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,111,110,102,105,103,32,61,32,112,97,114,115,101,66,105,110,100,105,110,103,115,40,98,105,110,100,105,110,103,115,41,59,92,110,92,110,32,32,105,102,32,40,101,108,91,66,86,95,83,67,82,79,76,76,83,80,89,93,41,32,123,92,110,32,32,32,32,101,108,91,66,86,95,83,67,82,79,76,76,83,80,89,93,46,117,112,100,97,116,101,67,111,110,102,105,103,40,99,111,110,102,105,103,44,32,118,110,111,100,101,46,99,111,110,116,101,120,116,46,36,114,111,111,116,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,101,108,91,66,86,95,83,67,82,79,76,76,83,80,89,93,32,61,32,110,101,119,32,95,104,101,108,112,101,114,115,95,98,118,95,115,99,114,111,108,108,115,112,121,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,86,83,99,114,111,108,108,83,112,121,40,101,108,44,32,99,111,110,102,105,103,44,32,118,110,111,100,101,46,99,111,110,116,101,120,116,46,36,114,111,111,116,41,59,92,110,32,32,125,92,110,125,59,32,47,47,32,82,101,109,111,118,101,32,83,99,114,111,108,108,83,112,121,32,111,110,32,111,117,114,32,101,108,101,109,101,110,116,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,92,110,92,110,118,97,114,32,114,101,109,111,118,101,83,99,114,111,108,108,115,112,121,32,61,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,83,99,114,111,108,108,115,112,121,40,101,108,41,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,123,92,110,32,32,105,102,32,40,101,108,91,66,86,95,83,67,82,79,76,76,83,80,89,93,41,32,123,92,110,32,32,32,32,101,108,91,66,86,95,83,67,82,79,76,76,83,80,89,93,46,100,105,115,112,111,115,101,40,41,59,92,110,32,32,32,32,101,108,91,66,86,95,83,67,82,79,76,76,83,80,89,93,32,61,32,110,117,108,108,59,92,110,32,32,32,32,100,101,108,101,116,101,32,101,108,91,66,86,95,83,67,82,79,76,76,83,80,89,93,59,92,110,32,32,125,92,110,125,59,92,110,47,42,92,110,32,42,32,69,120,112,111,114,116,32,111,117,114,32,100,105,114,101,99,116,105,118,101,92,110,32,42,47,92,110,92,110,92,110,118,97,114,32,86,66,83,99,114,111,108,108,115,112,121,32,61,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,32,32,98,105,110,100,58,32,102,117,110,99,116,105,111,110,32,98,105,110,100,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,97,112,112,108,121,83,99,114,111,108,108,115,112,121,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,59,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,32,32,105,110,115,101,114,116,101,100,58,32,102,117,110,99,116,105,111,110,32,105,110,115,101,114,116,101,100,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,97,112,112,108,121,83,99,114,111,108,108,115,112,121,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,59,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,32,32,117,112,100,97,116,101,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,105,102,32,40,98,105,110,100,105,110,103,115,46,118,97,108,117,101,32,33,61,61,32,98,105,110,100,105,110,103,115,46,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,97,112,112,108,121,83,99,114,111,108,108,115,112,121,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,32,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,105,102,32,40,98,105,110,100,105,110,103,115,46,118,97,108,117,101,32,33,61,61,32,98,105,110,100,105,110,103,115,46,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,97,112,112,108,121,83,99,114,111,108,108,115,112,121,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,32,32,117,110,98,105,110,100,58,32,102,117,110,99,116,105,111,110,32,117,110,98,105,110,100,40,101,108,41,32,123,92,110,32,32,32,32,114,101,109,111,118,101,83,99,114,111,108,108,115,112,121,40,101,108,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,47,115,99,114,111,108,108,115,112,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,84,111,103,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,86,66,84,111,103,103,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,84,111,103,103,108,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,86,66,84,111,103,103,108,101,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,111,103,103,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,47,116,111,103,103,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,86,66,84,111,103,103,108,101,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,100,105,114,101,99,116,105,118,101,115,58,32,123,92,110,32,32,32,32,86,66,84,111,103,103,108,101,58,32,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,86,66,84,111,103,103,108,101,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,47,116,111,103,103,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,47,116,111,103,103,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,84,111,103,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,86,66,84,111,103,103,108,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,47,47,32,67,108,97,115,115,101,115,32,116,111,32,97,112,112,108,121,32,116,111,32,116,114,105,103,103,101,114,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,67,76,65,83,83,95,66,86,95,84,79,71,71,76,69,95,67,79,76,76,65,80,83,69,68,32,61,32,39,99,111,108,108,97,112,115,101,100,39,59,92,110,118,97,114,32,67,76,65,83,83,95,66,86,95,84,79,71,71,76,69,95,78,79,84,95,67,79,76,76,65,80,83,69,68,32,61,32,39,110,111,116,45,99,111,108,108,97,112,115,101,100,39,59,32,47,47,32,80,114,111,112,101,114,116,121,32,107,101,121,32,102,111,114,32,104,97,110,100,108,101,114,32,115,116,111,114,97,103,101,92,110,92,110,118,97,114,32,66,86,95,66,65,83,69,32,61,32,39,95,95,66,86,95,116,111,103,103,108,101,39,59,32,47,47,32,82,111,111,116,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,32,112,114,111,112,101,114,116,121,32,40,70,117,110,99,116,105,111,110,41,92,110,92,110,118,97,114,32,66,86,95,84,79,71,71,76,69,95,82,79,79,84,95,72,65,78,68,76,69,82,32,61,32,92,34,92,34,46,99,111,110,99,97,116,40,66,86,95,66,65,83,69,44,32,92,34,95,72,65,78,68,76,69,82,95,95,92,34,41,59,32,47,47,32,84,114,105,103,103,101,114,32,101,108,101,109,101,110,116,32,99,108,105,99,107,32,104,97,110,100,108,101,114,32,112,114,111,112,101,114,116,121,32,40,70,117,110,99,116,105,111,110,41,92,110,92,110,118,97,114,32,66,86,95,84,79,71,71,76,69,95,67,76,73,67,75,95,72,65,78,68,76,69,82,32,61,32,92,34,92,34,46,99,111,110,99,97,116,40,66,86,95,66,65,83,69,44,32,92,34,95,67,76,73,67,75,95,95,92,34,41,59,32,47,47,32,84,97,114,103,101,116,32,118,105,115,105,98,105,108,105,116,121,32,115,116,97,116,101,32,112,114,111,112,101,114,116,121,32,40,66,111,111,108,101,97,110,41,92,110,92,110,118,97,114,32,66,86,95,84,79,71,71,76,69,95,83,84,65,84,69,32,61,32,92,34,92,34,46,99,111,110,99,97,116,40,66,86,95,66,65,83,69,44,32,92,34,95,83,84,65,84,69,95,95,92,34,41,59,32,47,47,32,84,97,114,103,101,116,32,73,68,32,108,105,115,116,32,112,114,111,112,101,114,116,121,32,40,65,114,114,97,121,41,92,110,92,110,118,97,114,32,66,86,95,84,79,71,71,76,69,95,84,65,82,71,69,84,83,32,61,32,92,34,92,34,46,99,111,110,99,97,116,40,66,86,95,66,65,83,69,44,32,92,34,95,84,65,82,71,69,84,83,95,95,92,34,41,59,32,47,47,32,67,111,109,109,111,110,108,121,32,117,115,101,100,32,115,116,114,105,110,103,115,92,110,92,110,118,97,114,32,83,84,82,73,78,71,95,70,65,76,83,69,32,61,32,39,102,97,108,115,101,39,59,92,110,118,97,114,32,83,84,82,73,78,71,95,84,82,85,69,32,61,32,39,116,114,117,101,39,59,32,47,47,32,67,111,109,109,111,110,108,121,32,117,115,101,100,32,97,116,116,114,105,98,117,116,101,32,110,97,109,101,115,92,110,92,110,118,97,114,32,65,84,84,82,95,65,82,73,65,95,67,79,78,84,82,79,76,83,32,61,32,39,97,114,105,97,45,99,111,110,116,114,111,108,115,39,59,92,110,118,97,114,32,65,84,84,82,95,65,82,73,65,95,69,88,80,65,78,68,69,68,32,61,32,39,97,114,105,97,45,101,120,112,97,110,100,101,100,39,59,92,110,118,97,114,32,65,84,84,82,95,82,79,76,69,32,61,32,39,114,111,108,101,39,59,92,110,118,97,114,32,65,84,84,82,95,84,65,66,73,78,68,69,88,32,61,32,39,116,97,98,105,110,100,101,120,39,59,32,47,47,32,67,111,109,109,111,110,108,121,32,117,115,101,100,32,115,116,121,108,101,32,112,114,111,112,101,114,116,105,101,115,92,110,92,110,118,97,114,32,83,84,89,76,69,95,79,86,69,82,70,76,79,87,95,65,78,67,72,79,82,32,61,32,39,111,118,101,114,102,108,111,119,45,97,110,99,104,111,114,39,59,32,47,47,32,69,109,105,116,116,101,100,32,99,111,110,116,114,111,108,32,101,118,101,110,116,32,102,111,114,32,99,111,108,108,97,112,115,101,32,40,101,109,105,116,116,101,100,32,116,111,32,99,111,108,108,97,112,115,101,41,92,110,92,110,118,97,114,32,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,84,79,71,71,76,69,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,32,39,116,111,103,103,108,101,39,41,59,32,47,47,32,76,105,115,116,101,110,32,116,111,32,101,118,101,110,116,32,102,111,114,32,116,111,103,103,108,101,32,115,116,97,116,101,32,117,112,100,97,116,101,32,40,101,109,105,116,116,101,100,32,98,121,32,99,111,108,108,97,112,115,101,41,92,110,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,84,65,84,69,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,32,39,115,116,97,116,101,39,41,59,32,47,47,32,80,114,105,118,97,116,101,32,101,118,101,110,116,32,101,109,105,116,116,101,100,32,111,110,32,96,36,114,111,111,116,96,32,116,111,32,101,110,115,117,114,101,32,116,104,101,32,116,111,103,103,108,101,32,115,116,97,116,101,32,105,115,32,97,108,119,97,121,115,32,115,121,110,99,101,100,92,110,47,47,32,71,101,116,115,32,101,109,105,116,116,101,100,32,101,118,101,110,32,105,102,32,116,104,101,32,115,116,97,116,101,32,111,102,32,98,45,99,111,108,108,97,112,115,101,32,104,97,115,32,110,111,116,32,99,104,97,110,103,101,100,92,110,47,47,32,84,104,105,115,32,101,118,101,110,116,32,105,115,32,78,79,84,32,116,111,32,98,101,32,100,111,99,117,109,101,110,116,101,100,32,97,115,32,112,101,111,112,108,101,32,115,104,111,117,108,100,32,110,111,116,32,98,101,32,117,115,105,110,103,32,105,116,92,110,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,89,78,67,95,83,84,65,84,69,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,32,39,115,121,110,99,45,115,116,97,116,101,39,41,59,32,47,47,32,80,114,105,118,97,116,101,32,101,118,101,110,116,32,119,101,32,115,101,110,100,32,116,111,32,99,111,108,108,97,112,115,101,32,116,111,32,114,101,113,117,101,115,116,32,115,116,97,116,101,32,117,112,100,97,116,101,32,115,121,110,99,32,101,118,101,110,116,92,110,92,110,118,97,114,32,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,82,69,81,85,69,83,84,95,83,84,65,84,69,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,67,79,76,76,65,80,83,69,44,32,39,114,101,113,117,101,115,116,45,115,116,97,116,101,39,41,59,92,110,118,97,114,32,75,69,89,68,79,87,78,95,75,69,89,95,67,79,68,69,83,32,61,32,91,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,69,78,84,69,82,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,79,68,69,95,83,80,65,67,69,93,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,92,110,118,97,114,32,105,115,78,111,110,83,116,97,110,100,97,114,100,84,97,103,32,61,32,102,117,110,99,116,105,111,110,32,105,115,78,111,110,83,116,97,110,100,97,114,100,84,97,103,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,91,39,98,117,116,116,111,110,39,44,32,39,97,39,93,44,32,101,108,46,116,97,103,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,59,92,110,125,59,92,110,92,110,118,97,114,32,103,101,116,84,97,114,103,101,116,115,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,84,97,114,103,101,116,115,40,95,114,101,102,44,32,101,108,41,32,123,92,110,32,32,118,97,114,32,109,111,100,105,102,105,101,114,115,32,61,32,95,114,101,102,46,109,111,100,105,102,105,101,114,115,44,92,110,32,32,32,32,32,32,97,114,103,32,61,32,95,114,101,102,46,97,114,103,44,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,95,114,101,102,46,118,97,108,117,101,59,92,110,32,32,47,47,32,65,110,121,32,109,111,100,105,102,105,101,114,115,32,97,114,101,32,99,111,110,115,105,100,101,114,101,100,32,116,97,114,103,101,116,32,73,68,115,92,110,32,32,118,97,114,32,116,97,114,103,101,116,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,107,101,121,115,41,40,109,111,100,105,102,105,101,114,115,32,124,124,32,123,125,41,59,32,47,47,32,73,102,32,118,97,108,117,101,32,105,115,32,97,32,115,116,114,105,110,103,44,32,115,112,108,105,116,32,111,117,116,32,105,110,100,105,118,105,100,117,97,108,32,116,97,114,103,101,116,115,32,40,105,102,32,115,112,97,99,101,32,100,101,108,105,109,105,116,101,100,41,92,110,92,110,32,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,83,116,114,105,110,103,41,40,118,97,108,117,101,41,32,63,32,118,97,108,117,101,46,115,112,108,105,116,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,82,88,95,83,80,65,67,69,95,83,80,76,73,84,41,32,58,32,118,97,108,117,101,59,32,47,47,32,83,117,112,112,111,114,116,32,116,97,114,103,101,116,32,73,68,32,97,115,32,108,105,110,107,32,104,114,101,102,32,40,96,104,114,101,102,61,92,34,35,105,100,92,34,96,41,92,110,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,84,97,103,41,40,101,108,46,116,97,103,78,97,109,101,44,32,39,97,39,41,41,32,123,92,110,32,32,32,32,118,97,114,32,104,114,101,102,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,103,101,116,65,116,116,114,41,40,101,108,44,32,39,104,114,101,102,39,41,32,124,124,32,39,39,59,92,110,92,110,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,82,88,95,72,65,83,72,95,73,68,46,116,101,115,116,40,104,114,101,102,41,41,32,123,92,110,32,32,32,32,32,32,116,97,114,103,101,116,115,46,112,117,115,104,40,104,114,101,102,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,82,88,95,72,65,83,72,44,32,39,39,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,47,47,32,65,100,100,32,73,68,32,102,114,111,109,32,96,97,114,103,96,32,40,105,102,32,112,114,111,118,105,100,101,100,41,44,32,97,110,100,32,115,117,112,112,111,114,116,32,118,97,108,117,101,92,110,32,32,47,47,32,97,115,32,97,32,115,105,110,103,108,101,32,115,116,114,105,110,103,32,73,68,32,111,114,32,97,110,32,97,114,114,97,121,32,111,102,32,115,116,114,105,110,103,32,73,68,115,92,110,32,32,47,47,32,73,102,32,96,118,97,108,117,101,96,32,105,115,32,110,111,116,32,97,110,32,97,114,114,97,121,32,111,114,32,115,116,114,105,110,103,44,32,116,104,101,110,32,105,116,32,103,101,116,115,32,102,105,108,116,101,114,101,100,32,111,117,116,92,110,92,110,92,110,32,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,111,110,99,97,116,41,40,97,114,103,44,32,118,97,108,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,83,116,114,105,110,103,41,40,116,41,32,38,38,32,116,97,114,103,101,116,115,46,112,117,115,104,40,116,41,59,92,110,32,32,125,41,59,32,47,47,32,82,101,116,117,114,110,32,111,110,108,121,32,117,110,105,113,117,101,32,97,110,100,32,116,114,117,116,104,121,32,116,97,114,103,101,116,32,73,68,115,92,110,92,110,32,32,114,101,116,117,114,110,32,116,97,114,103,101,116,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,116,44,32,105,110,100,101,120,44,32,97,114,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,32,38,38,32,97,114,114,46,105,110,100,101,120,79,102,40,116,41,32,61,61,61,32,105,110,100,101,120,59,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,118,97,114,32,114,101,109,111,118,101,67,108,105,99,107,76,105,115,116,101,110,101,114,32,61,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,67,108,105,99,107,76,105,115,116,101,110,101,114,40,101,108,41,32,123,92,110,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,101,108,91,66,86,95,84,79,71,71,76,69,95,67,76,73,67,75,95,72,65,78,68,76,69,82,93,59,92,110,92,110,32,32,105,102,32,40,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,102,102,41,40,101,108,44,32,39,99,108,105,99,107,39,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,102,102,41,40,101,108,44,32,39,107,101,121,100,111,119,110,39,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,41,59,92,110,32,32,125,92,110,92,110,32,32,101,108,91,66,86,95,84,79,71,71,76,69,95,67,76,73,67,75,95,72,65,78,68,76,69,82,93,32,61,32,110,117,108,108,59,92,110,125,59,92,110,92,110,118,97,114,32,97,100,100,67,108,105,99,107,76,105,115,116,101,110,101,114,32,61,32,102,117,110,99,116,105,111,110,32,97,100,100,67,108,105,99,107,76,105,115,116,101,110,101,114,40,101,108,44,32,118,110,111,100,101,41,32,123,92,110,32,32,114,101,109,111,118,101,67,108,105,99,107,76,105,115,116,101,110,101,114,40,101,108,41,59,92,110,92,110,32,32,105,102,32,40,118,110,111,100,101,46,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,39,107,101,121,100,111,119,110,39,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,75,69,89,68,79,87,78,95,75,69,89,95,67,79,68,69,83,44,32,101,118,101,110,116,46,107,101,121,67,111,100,101,41,41,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,115,68,105,115,97,98,108,101,100,41,40,101,108,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,115,32,61,32,101,108,91,66,86,95,84,79,71,71,76,69,95,84,65,82,71,69,84,83,93,32,124,124,32,91,93,59,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,110,111,100,101,46,99,111,110,116,101,120,116,46,36,114,111,111,116,46,36,101,109,105,116,40,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,84,79,71,71,76,69,44,32,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,101,108,91,66,86,95,84,79,71,71,76,69,95,67,76,73,67,75,95,72,65,78,68,76,69,82,93,32,61,32,104,97,110,100,108,101,114,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,41,40,101,108,44,32,39,99,108,105,99,107,39,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,41,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,78,111,110,83,116,97,110,100,97,114,100,84,97,103,40,101,108,41,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,79,110,41,40,101,108,44,32,39,107,101,121,100,111,119,110,39,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,80,65,83,83,73,86,69,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,114,101,109,111,118,101,82,111,111,116,76,105,115,116,101,110,101,114,115,32,61,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,82,111,111,116,76,105,115,116,101,110,101,114,115,40,101,108,44,32,118,110,111,100,101,41,32,123,92,110,32,32,105,102,32,40,101,108,91,66,86,95,84,79,71,71,76,69,95,82,79,79,84,95,72,65,78,68,76,69,82,93,32,38,38,32,118,110,111,100,101,46,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,118,110,111,100,101,46,99,111,110,116,101,120,116,46,36,114,111,111,116,46,36,111,102,102,40,91,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,84,65,84,69,44,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,89,78,67,95,83,84,65,84,69,93,44,32,101,108,91,66,86,95,84,79,71,71,76,69,95,82,79,79,84,95,72,65,78,68,76,69,82,93,41,59,92,110,32,32,125,92,110,92,110,32,32,101,108,91,66,86,95,84,79,71,71,76,69,95,82,79,79,84,95,72,65,78,68,76,69,82,93,32,61,32,110,117,108,108,59,92,110,125,59,92,110,92,110,118,97,114,32,97,100,100,82,111,111,116,76,105,115,116,101,110,101,114,115,32,61,32,102,117,110,99,116,105,111,110,32,97,100,100,82,111,111,116,76,105,115,116,101,110,101,114,115,40,101,108,44,32,118,110,111,100,101,41,32,123,92,110,32,32,114,101,109,111,118,101,82,111,111,116,76,105,115,116,101,110,101,114,115,40,101,108,44,32,118,110,111,100,101,41,59,92,110,92,110,32,32,105,102,32,40,118,110,111,100,101,46,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,40,105,100,44,32,115,116,97,116,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,96,115,116,97,116,101,96,32,119,105,108,108,32,98,101,32,96,116,114,117,101,96,32,105,102,32,116,97,114,103,101,116,32,105,115,32,101,120,112,97,110,100,101,100,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,101,108,91,66,86,95,84,79,71,71,76,69,95,84,65,82,71,69,84,83,93,32,124,124,32,91,93,44,32,105,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,101,116,47,67,108,101,97,114,32,39,99,111,108,108,97,112,115,101,100,39,32,118,105,115,105,98,105,108,105,116,121,32,99,108,97,115,115,32,115,116,97,116,101,92,110,32,32,32,32,32,32,32,32,101,108,91,66,86,95,84,79,71,71,76,69,95,83,84,65,84,69,93,32,61,32,115,116,97,116,101,59,32,47,47,32,83,101,116,32,96,97,114,105,97,45,101,120,112,97,110,100,101,100,96,32,97,110,100,32,99,108,97,115,115,32,115,116,97,116,101,32,111,110,32,116,114,105,103,103,101,114,32,101,108,101,109,101,110,116,92,110,92,110,32,32,32,32,32,32,32,32,115,101,116,84,111,103,103,108,101,83,116,97,116,101,40,101,108,44,32,115,116,97,116,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,101,108,91,66,86,95,84,79,71,71,76,69,95,82,79,79,84,95,72,65,78,68,76,69,82,93,32,61,32,104,97,110,100,108,101,114,59,32,47,47,32,76,105,115,116,101,110,32,102,111,114,32,116,111,103,103,108,101,32,115,116,97,116,101,32,99,104,97,110,103,101,115,32,40,112,117,98,108,105,99,41,32,97,110,100,32,115,121,110,99,32,40,112,114,105,118,97,116,101,41,92,110,92,110,32,32,32,32,118,110,111,100,101,46,99,111,110,116,101,120,116,46,36,114,111,111,116,46,36,111,110,40,91,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,84,65,84,69,44,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,89,78,67,95,83,84,65,84,69,93,44,32,104,97,110,100,108,101,114,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,115,101,116,84,111,103,103,108,101,83,116,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,115,101,116,84,111,103,103,108,101,83,116,97,116,101,40,101,108,44,32,115,116,97,116,101,41,32,123,92,110,32,32,47,47,32,83,116,97,116,101,32,114,101,102,101,114,115,32,116,111,32,116,104,101,32,118,105,115,105,98,105,108,105,116,121,32,111,102,32,116,104,101,32,99,111,108,108,97,112,115,101,47,115,105,100,101,98,97,114,92,110,32,32,105,102,32,40,115,116,97,116,101,41,32,123,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,101,108,44,32,67,76,65,83,83,95,66,86,95,84,79,71,71,76,69,95,67,79,76,76,65,80,83,69,68,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,97,100,100,67,108,97,115,115,41,40,101,108,44,32,67,76,65,83,83,95,66,86,95,84,79,71,71,76,69,95,78,79,84,95,67,79,76,76,65,80,83,69,68,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,115,101,116,65,116,116,114,41,40,101,108,44,32,65,84,84,82,95,65,82,73,65,95,69,88,80,65,78,68,69,68,44,32,83,84,82,73,78,71,95,84,82,85,69,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,101,108,44,32,67,76,65,83,83,95,66,86,95,84,79,71,71,76,69,95,78,79,84,95,67,79,76,76,65,80,83,69,68,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,97,100,100,67,108,97,115,115,41,40,101,108,44,32,67,76,65,83,83,95,66,86,95,84,79,71,71,76,69,95,67,79,76,76,65,80,83,69,68,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,115,101,116,65,116,116,114,41,40,101,108,44,32,65,84,84,82,95,65,82,73,65,95,69,88,80,65,78,68,69,68,44,32,83,84,82,73,78,71,95,70,65,76,83,69,41,59,92,110,32,32,125,92,110,125,59,32,47,47,32,82,101,115,101,116,32,97,110,100,32,114,101,109,111,118,101,32,97,32,112,114,111,112,101,114,116,121,32,102,114,111,109,32,116,104,101,32,112,114,111,118,105,100,101,100,32,101,108,101,109,101,110,116,92,110,92,110,92,110,118,97,114,32,114,101,115,101,116,80,114,111,112,32,61,32,102,117,110,99,116,105,111,110,32,114,101,115,101,116,80,114,111,112,40,101,108,44,32,112,114,111,112,41,32,123,92,110,32,32,101,108,91,112,114,111,112,93,32,61,32,110,117,108,108,59,92,110,32,32,100,101,108,101,116,101,32,101,108,91,112,114,111,112,93,59,92,110,125,59,32,47,47,32,72,97,110,100,108,101,32,100,105,114,101,99,116,105,118,101,32,117,112,100,97,116,101,115,92,110,92,110,92,110,118,97,114,32,104,97,110,100,108,101,85,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,85,112,100,97,116,101,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,115,104,111,117,108,100,32,110,101,118,101,114,32,104,97,112,112,101,110,32,42,47,92,110,32,32,105,102,32,40,33,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,73,83,95,66,82,79,87,83,69,82,32,124,124,32,33,118,110,111,100,101,46,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,125,32,47,47,32,73,102,32,101,108,101,109,101,110,116,32,105,115,32,110,111,116,32,97,32,98,117,116,116,111,110,32,111,114,32,108,105,110,107,44,32,119,101,32,97,100,100,32,96,114,111,108,101,61,92,34,98,117,116,116,111,110,92,34,96,92,110,32,32,47,47,32,97,110,100,32,96,116,97,98,105,110,100,101,120,61,92,34,48,92,34,96,32,102,111,114,32,97,99,99,101,115,115,105,98,105,108,105,116,121,32,114,101,97,115,111,110,115,92,110,92,110,92,110,32,32,105,102,32,40,105,115,78,111,110,83,116,97,110,100,97,114,100,84,97,103,40,101,108,41,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,104,97,115,65,116,116,114,41,40,101,108,44,32,65,84,84,82,95,82,79,76,69,41,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,115,101,116,65,116,116,114,41,40,101,108,44,32,65,84,84,82,95,82,79,76,69,44,32,39,98,117,116,116,111,110,39,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,104,97,115,65,116,116,114,41,40,101,108,44,32,65,84,84,82,95,84,65,66,73,78,68,69,88,41,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,115,101,116,65,116,116,114,41,40,101,108,44,32,65,84,84,82,95,84,65,66,73,78,68,69,88,44,32,39,48,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,47,47,32,69,110,115,117,114,101,32,116,104,101,32,99,111,108,108,97,112,115,101,32,99,108,97,115,115,32,97,110,100,32,96,97,114,105,97,45,42,96,32,97,116,116,114,105,98,117,116,101,115,32,112,101,114,115,105,115,116,92,110,32,32,47,47,32,97,102,116,101,114,32,101,108,101,109,101,110,116,32,105,115,32,117,112,100,97,116,101,100,32,40,101,105,116,104,101,114,32,98,121,32,112,97,114,101,110,116,32,114,101,45,114,101,110,100,101,114,105,110,103,92,110,32,32,47,47,32,111,114,32,99,104,97,110,103,101,115,32,116,111,32,116,104,105,115,32,101,108,101,109,101,110,116,32,111,114,32,105,116,115,32,99,111,110,116,101,110,116,115,41,92,110,92,110,92,110,32,32,115,101,116,84,111,103,103,108,101,83,116,97,116,101,40,101,108,44,32,101,108,91,66,86,95,84,79,71,71,76,69,95,83,84,65,84,69,93,41,59,32,47,47,32,80,97,114,115,101,32,108,105,115,116,32,111,102,32,116,97,114,103,101,116,32,73,68,115,92,110,92,110,32,32,118,97,114,32,116,97,114,103,101,116,115,32,61,32,103,101,116,84,97,114,103,101,116,115,40,98,105,110,100,105,110,103,44,32,101,108,41,59,32,47,47,32,69,110,115,117,114,101,32,116,104,101,32,96,97,114,105,97,45,99,111,110,116,114,111,108,115,96,32,104,97,115,110,39,116,32,98,101,101,110,32,111,118,101,114,119,114,105,116,116,101,110,92,110,32,32,47,47,32,111,114,32,114,101,109,111,118,101,100,32,119,104,101,110,32,118,110,111,100,101,32,117,112,100,97,116,101,115,92,110,32,32,47,47,32,65,108,115,111,32,101,110,115,117,114,101,32,116,111,32,115,101,116,32,96,111,118,101,114,102,108,111,119,45,97,110,99,104,111,114,96,32,116,111,32,96,110,111,110,101,96,32,116,111,32,112,114,101,118,101,110,116,92,110,32,32,47,47,32,116,104,101,32,98,114,111,119,115,101,114,39,115,32,115,99,114,111,108,108,32,97,110,99,104,111,114,105,110,103,32,98,101,104,97,118,105,111,114,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,92,110,32,32,105,102,32,40,116,97,114,103,101,116,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,115,101,116,65,116,116,114,41,40,101,108,44,32,65,84,84,82,95,65,82,73,65,95,67,79,78,84,82,79,76,83,44,32,116,97,114,103,101,116,115,46,106,111,105,110,40,39,32,39,41,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,115,101,116,83,116,121,108,101,41,40,101,108,44,32,83,84,89,76,69,95,79,86,69,82,70,76,79,87,95,65,78,67,72,79,82,44,32,39,110,111,110,101,39,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,114,101,109,111,118,101,65,116,116,114,41,40,101,108,44,32,65,84,84,82,95,65,82,73,65,95,67,79,78,84,82,79,76,83,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,114,101,109,111,118,101,83,116,121,108,101,41,40,101,108,44,32,83,84,89,76,69,95,79,86,69,82,70,76,79,87,95,65,78,67,72,79,82,41,59,92,110,32,32,125,32,47,47,32,65,100,100,47,85,112,100,97,116,101,32,111,117,114,32,99,108,105,99,107,32,108,105,115,116,101,110,101,114,40,115,41,92,110,32,32,47,47,32,87,114,97,112,32,105,110,32,97,32,96,114,101,113,117,101,115,116,65,70,40,41,96,32,116,111,32,97,108,108,111,119,32,97,110,121,32,112,114,101,118,105,111,117,115,92,110,32,32,47,47,32,99,108,105,99,107,32,104,97,110,100,108,105,110,103,32,116,111,32,111,99,99,117,114,32,102,105,114,115,116,92,110,92,110,92,110,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,97,100,100,67,108,105,99,107,76,105,115,116,101,110,101,114,40,101,108,44,32,118,110,111,100,101,41,59,92,110,32,32,125,41,59,32,47,47,32,73,102,32,116,97,114,103,101,116,115,32,97,114,114,97,121,32,104,97,115,32,99,104,97,110,103,101,100,44,32,117,112,100,97,116,101,92,110,92,110,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,116,97,114,103,101,116,115,44,32,101,108,91,66,86,95,84,79,71,71,76,69,95,84,65,82,71,69,84,83,93,41,41,32,123,92,110,32,32,32,32,47,47,32,85,112,100,97,116,101,32,116,97,114,103,101,116,115,32,97,114,114,97,121,32,116,111,32,101,108,101,109,101,110,116,32,115,116,111,114,97,103,101,92,110,32,32,32,32,101,108,91,66,86,95,84,79,71,71,76,69,95,84,65,82,71,69,84,83,93,32,61,32,116,97,114,103,101,116,115,59,32,47,47,32,69,110,115,117,114,101,32,96,97,114,105,97,45,99,111,110,116,114,111,108,115,96,32,105,115,32,117,112,32,116,111,32,100,97,116,101,92,110,32,32,32,32,47,47,32,82,101,113,117,101,115,116,32,97,32,115,116,97,116,101,32,117,112,100,97,116,101,32,102,114,111,109,32,116,97,114,103,101,116,115,32,115,111,32,116,104,97,116,32,119,101,32,99,97,110,92,110,32,32,32,32,47,47,32,101,110,115,117,114,101,32,101,120,112,97,110,100,101,100,32,115,116,97,116,101,32,105,115,32,99,111,114,114,101,99,116,32,40,105,110,32,109,111,115,116,32,99,97,115,101,115,41,92,110,92,110,32,32,32,32,116,97,114,103,101,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,118,110,111,100,101,46,99,111,110,116,101,120,116,46,36,114,111,111,116,46,36,101,109,105,116,40,82,79,79,84,95,65,67,84,73,79,78,95,69,86,69,78,84,95,78,65,77,69,95,82,69,81,85,69,83,84,95,83,84,65,84,69,44,32,116,97,114,103,101,116,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,59,92,110,47,42,92,110,32,42,32,69,120,112,111,114,116,32,111,117,114,32,100,105,114,101,99,116,105,118,101,92,110,32,42,47,92,110,92,110,92,110,118,97,114,32,86,66,84,111,103,103,108,101,32,61,32,123,92,110,32,32,98,105,110,100,58,32,102,117,110,99,116,105,111,110,32,98,105,110,100,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,47,47,32,83,116,97,116,101,32,105,115,32,105,110,105,116,105,97,108,108,121,32,99,111,108,108,97,112,115,101,100,32,117,110,116,105,108,32,119,101,32,114,101,99,101,105,118,101,32,97,32,115,116,97,116,101,32,101,118,101,110,116,92,110,32,32,32,32,101,108,91,66,86,95,84,79,71,71,76,69,95,83,84,65,84,69,93,32,61,32,102,97,108,115,101,59,32,47,47,32,65,115,115,117,109,101,32,110,111,32,116,97,114,103,101,116,115,32,105,110,105,116,105,97,108,108,121,92,110,92,110,32,32,32,32,101,108,91,66,86,95,84,79,71,71,76,69,95,84,65,82,71,69,84,83,93,32,61,32,91,93,59,32,47,47,32,65,100,100,32,111,117,114,32,114,111,111,116,32,108,105,115,116,101,110,101,114,115,92,110,92,110,32,32,32,32,97,100,100,82,111,111,116,76,105,115,116,101,110,101,114,115,40,101,108,44,32,118,110,111,100,101,41,59,32,47,47,32,73,110,105,116,105,97,108,32,117,112,100,97,116,101,32,111,102,32,116,114,105,103,103,101,114,92,110,92,110,32,32,32,32,104,97,110,100,108,101,85,112,100,97,116,101,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,41,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,32,104,97,110,100,108,101,85,112,100,97,116,101,44,92,110,32,32,117,112,100,97,116,101,100,58,32,104,97,110,100,108,101,85,112,100,97,116,101,44,92,110,32,32,117,110,98,105,110,100,58,32,102,117,110,99,116,105,111,110,32,117,110,98,105,110,100,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,114,101,109,111,118,101,67,108,105,99,107,76,105,115,116,101,110,101,114,40,101,108,41,59,32,47,47,32,82,101,109,111,118,101,32,111,117,114,32,36,114,111,111,116,32,108,105,115,116,101,110,101,114,92,110,92,110,32,32,32,32,114,101,109,111,118,101,82,111,111,116,76,105,115,116,101,110,101,114,115,40,101,108,44,32,118,110,111,100,101,41,59,32,47,47,32,82,101,115,101,116,32,99,117,115,116,111,109,32,112,114,111,112,115,92,110,92,110,32,32,32,32,114,101,115,101,116,80,114,111,112,40,101,108,44,32,66,86,95,84,79,71,71,76,69,95,82,79,79,84,95,72,65,78,68,76,69,82,41,59,92,110,32,32,32,32,114,101,115,101,116,80,114,111,112,40,101,108,44,32,66,86,95,84,79,71,71,76,69,95,67,76,73,67,75,95,72,65,78,68,76,69,82,41,59,92,110,32,32,32,32,114,101,115,101,116,80,114,111,112,40,101,108,44,32,66,86,95,84,79,71,71,76,69,95,83,84,65,84,69,41,59,92,110,32,32,32,32,114,101,115,101,116,80,114,111,112,40,101,108,44,32,66,86,95,84,79,71,71,76,69,95,84,65,82,71,69,84,83,41,59,32,47,47,32,82,101,115,101,116,32,99,108,97,115,115,101,115,47,97,116,116,114,115,47,115,116,121,108,101,115,92,110,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,101,108,44,32,67,76,65,83,83,95,66,86,95,84,79,71,71,76,69,95,67,79,76,76,65,80,83,69,68,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,114,101,109,111,118,101,67,108,97,115,115,41,40,101,108,44,32,67,76,65,83,83,95,66,86,95,84,79,71,71,76,69,95,78,79,84,95,67,79,76,76,65,80,83,69,68,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,114,101,109,111,118,101,65,116,116,114,41,40,101,108,44,32,65,84,84,82,95,65,82,73,65,95,69,88,80,65,78,68,69,68,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,114,101,109,111,118,101,65,116,116,114,41,40,101,108,44,32,65,84,84,82,95,65,82,73,65,95,67,79,78,84,82,79,76,83,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,114,101,109,111,118,101,65,116,116,114,41,40,101,108,44,32,65,84,84,82,95,82,79,76,69,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,114,101,109,111,118,101,83,116,121,108,101,41,40,101,108,44,32,83,84,89,76,69,95,79,86,69,82,70,76,79,87,95,65,78,67,72,79,82,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,47,116,111,103,103,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,84,111,111,108,116,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,86,66,84,111,111,108,116,105,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,84,111,111,108,116,105,112,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,86,66,84,111,111,108,116,105,112,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,111,111,108,116,105,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,47,116,111,111,108,116,105,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,86,66,84,111,111,108,116,105,112,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,100,105,114,101,99,116,105,118,101,115,58,32,123,92,110,32,32,32,32,86,66,84,111,111,108,116,105,112,58,32,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,86,66,84,111,111,108,116,105,112,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,47,116,111,111,108,116,105,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,47,116,111,111,108,116,105,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,84,111,111,108,116,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,86,66,84,111,111,108,116,105,112,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,99,111,110,102,105,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,103,101,116,95,115,99,111,112,101,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,103,101,116,45,115,99,111,112,101,45,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,45,115,99,111,112,101,45,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,111,111,108,116,105,112,95,104,101,108,112,101,114,115,95,98,118,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,116,111,111,108,116,105,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,104,101,108,112,101,114,115,47,98,118,45,116,111,111,108,116,105,112,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,75,101,121,32,119,104,105,99,104,32,119,101,32,117,115,101,32,116,111,32,115,116,111,114,101,32,116,111,111,108,116,105,112,32,111,98,106,101,99,116,32,111,110,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,66,86,95,84,79,79,76,84,73,80,32,61,32,39,95,95,66,86,95,84,111,111,108,116,105,112,95,95,39,59,32,47,47,32,68,101,102,97,117,108,116,32,116,114,105,103,103,101,114,92,110,92,110,118,97,114,32,68,101,102,97,117,108,116,84,114,105,103,103,101,114,32,61,32,39,104,111,118,101,114,32,102,111,99,117,115,39,59,32,47,47,32,86,97,108,105,100,32,101,118,101,110,116,32,116,114,105,103,103,101,114,115,92,110,92,110,118,97,114,32,118,97,108,105,100,84,114,105,103,103,101,114,115,32,61,32,123,92,110,32,32,102,111,99,117,115,58,32,116,114,117,101,44,92,110,32,32,104,111,118,101,114,58,32,116,114,117,101,44,92,110,32,32,99,108,105,99,107,58,32,116,114,117,101,44,92,110,32,32,98,108,117,114,58,32,116,114,117,101,44,92,110,32,32,109,97,110,117,97,108,58,32,116,114,117,101,92,110,125,59,32,47,47,32,68,105,114,101,99,116,105,118,101,32,109,111,100,105,102,105,101,114,32,116,101,115,116,32,114,101,103,117,108,97,114,32,101,120,112,114,101,115,115,105,111,110,115,46,32,80,114,101,45,99,111,109,112,105,108,101,32,102,111,114,32,112,101,114,102,111,114,109,97,110,99,101,92,110,92,110,118,97,114,32,104,116,109,108,82,69,32,61,32,47,94,104,116,109,108,36,47,105,59,92,110,118,97,114,32,110,111,110,105,110,116,101,114,97,99,116,105,118,101,82,69,32,61,32,47,94,110,111,110,105,110,116,101,114,97,99,116,105,118,101,36,47,105,59,92,110,118,97,114,32,110,111,70,97,100,101,82,69,32,61,32,47,94,110,111,102,97,100,101,36,47,105,59,92,110,118,97,114,32,112,108,97,99,101,109,101,110,116,82,69,32,61,32,47,94,40,97,117,116,111,124,116,111,112,40,108,101,102,116,124,114,105,103,104,116,41,63,124,98,111,116,116,111,109,40,108,101,102,116,124,114,105,103,104,116,41,63,124,108,101,102,116,40,116,111,112,124,98,111,116,116,111,109,41,63,124,114,105,103,104,116,40,116,111,112,124,98,111,116,116,111,109,41,63,41,36,47,105,59,92,110,118,97,114,32,98,111,117,110,100,97,114,121,82,69,32,61,32,47,94,40,119,105,110,100,111,119,124,118,105,101,119,112,111,114,116,124,115,99,114,111,108,108,80,97,114,101,110,116,41,36,47,105,59,92,110,118,97,114,32,100,101,108,97,121,82,69,32,61,32,47,94,100,92,92,100,43,36,47,105,59,92,110,118,97,114,32,100,101,108,97,121,83,104,111,119,82,69,32,61,32,47,94,100,115,92,92,100,43,36,47,105,59,92,110,118,97,114,32,100,101,108,97,121,72,105,100,101,82,69,32,61,32,47,94,100,104,92,92,100,43,36,47,105,59,92,110,118,97,114,32,111,102,102,115,101,116,82,69,32,61,32,47,94,111,45,63,92,92,100,43,36,47,105,59,92,110,118,97,114,32,118,97,114,105,97,110,116,82,69,32,61,32,47,94,118,45,46,43,36,47,105,59,92,110,118,97,114,32,115,112,97,99,101,115,82,69,32,61,32,47,92,92,115,43,47,59,32,47,47,32,66,117,105,108,100,32,97,32,84,111,111,108,116,105,112,32,99,111,110,102,105,103,32,98,97,115,101,100,32,111,110,32,98,105,110,100,105,110,103,115,32,40,105,102,32,97,110,121,41,92,110,47,47,32,65,114,103,117,109,101,110,116,115,32,97,110,100,32,109,111,100,105,102,105,101,114,115,32,116,97,107,101,32,112,114,101,99,101,100,101,110,99,101,32,111,118,101,114,32,112,97,115,115,101,100,32,118,97,108,117,101,32,99,111,110,102,105,103,32,111,98,106,101,99,116,92,110,92,110,118,97,114,32,112,97,114,115,101,66,105,110,100,105,110,103,115,32,61,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,66,105,110,100,105,110,103,115,40,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,110,111,116,32,101,97,115,121,32,116,111,32,116,101,115,116,32,42,47,92,110,123,92,110,32,32,47,47,32,87,101,32,115,116,97,114,116,32,111,117,116,32,119,105,116,104,32,97,32,98,97,115,105,99,32,99,111,110,102,105,103,92,110,32,32,118,97,114,32,99,111,110,102,105,103,32,61,32,123,92,110,32,32,32,32,116,105,116,108,101,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,116,114,105,103,103,101,114,58,32,39,39,44,92,110,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,115,101,116,32,98,101,108,111,119,32,105,102,32,110,101,101,100,101,100,92,110,32,32,32,32,112,108,97,99,101,109,101,110,116,58,32,39,116,111,112,39,44,92,110,32,32,32,32,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,32,39,102,108,105,112,39,44,92,110,32,32,32,32,99,111,110,116,97,105,110,101,114,58,32,102,97,108,115,101,44,92,110,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,111,102,32,98,111,100,121,92,110,32,32,32,32,97,110,105,109,97,116,105,111,110,58,32,116,114,117,101,44,92,110,32,32,32,32,111,102,102,115,101,116,58,32,48,44,92,110,32,32,32,32,105,100,58,32,110,117,108,108,44,92,110,32,32,32,32,104,116,109,108,58,32,102,97,108,115,101,44,92,110,32,32,32,32,105,110,116,101,114,97,99,116,105,118,101,58,32,116,114,117,101,44,92,110,32,32,32,32,100,105,115,97,98,108,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,100,101,108,97,121,58,32,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,84,79,79,76,84,73,80,44,32,39,100,101,108,97,121,39,44,32,53,48,41,44,92,110,32,32,32,32,98,111,117,110,100,97,114,121,58,32,83,116,114,105,110,103,40,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,84,79,79,76,84,73,80,44,32,39,98,111,117,110,100,97,114,121,39,44,32,39,115,99,114,111,108,108,80,97,114,101,110,116,39,41,41,44,92,110,32,32,32,32,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,58,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,73,110,116,101,103,101,114,41,40,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,84,79,79,76,84,73,80,44,32,39,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,39,44,32,53,41,44,32,48,41,44,92,110,32,32,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,84,79,79,76,84,73,80,44,32,39,118,97,114,105,97,110,116,39,41,44,92,110,32,32,32,32,99,117,115,116,111,109,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,84,79,79,76,84,73,80,44,32,39,99,117,115,116,111,109,67,108,97,115,115,39,41,92,110,32,32,125,59,32,47,47,32,80,114,111,99,101,115,115,32,96,98,105,110,100,105,110,103,115,46,118,97,108,117,101,96,92,110,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,83,116,114,105,110,103,41,40,98,105,110,100,105,110,103,115,46,118,97,108,117,101,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,78,117,109,98,101,114,41,40,98,105,110,100,105,110,103,115,46,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,47,47,32,86,97,108,117,101,32,105,115,32,116,111,111,108,116,105,112,32,99,111,110,116,101,110,116,32,40,72,84,77,76,32,111,112,116,105,111,110,97,108,108,121,32,115,117,112,112,111,114,116,101,100,41,92,110,32,32,32,32,99,111,110,102,105,103,46,116,105,116,108,101,32,61,32,98,105,110,100,105,110,103,115,46,118,97,108,117,101,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,98,105,110,100,105,110,103,115,46,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,47,47,32,84,105,116,108,101,32,103,101,110,101,114,97,116,111,114,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,99,111,110,102,105,103,46,116,105,116,108,101,32,61,32,98,105,110,100,105,110,103,115,46,118,97,108,117,101,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,98,105,110,100,105,110,103,115,46,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,47,47,32,86,97,108,117,101,32,105,115,32,99,111,110,102,105,103,32,111,98,106,101,99,116,44,32,115,111,32,109,101,114,103,101,92,110,32,32,32,32,99,111,110,102,105,103,32,61,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,99,111,110,102,105,103,41,44,32,98,105,110,100,105,110,103,115,46,118,97,108,117,101,41,59,92,110,32,32,125,32,47,47,32,73,102,32,116,105,116,108,101,32,105,115,32,110,111,116,32,112,114,111,118,105,100,101,100,44,32,116,114,121,32,116,105,116,108,101,32,97,116,116,114,105,98,117,116,101,92,110,92,110,92,110,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,99,111,110,102,105,103,46,116,105,116,108,101,41,41,32,123,92,110,32,32,32,32,47,47,32,84,114,121,32,97,116,116,114,105,98,117,116,101,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,118,110,111,100,101,46,100,97,116,97,32,124,124,32,123,125,59,92,110,32,32,32,32,99,111,110,102,105,103,46,116,105,116,108,101,32,61,32,100,97,116,97,46,97,116,116,114,115,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,100,97,116,97,46,97,116,116,114,115,46,116,105,116,108,101,41,32,63,32,100,97,116,97,46,97,116,116,114,115,46,116,105,116,108,101,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,125,32,47,47,32,78,111,114,109,97,108,105,122,101,32,100,101,108,97,121,92,110,92,110,92,110,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,99,111,110,102,105,103,46,100,101,108,97,121,41,41,32,123,92,110,32,32,32,32,99,111,110,102,105,103,46,100,101,108,97,121,32,61,32,123,92,110,32,32,32,32,32,32,115,104,111,119,58,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,73,110,116,101,103,101,114,41,40,99,111,110,102,105,103,46,100,101,108,97,121,44,32,48,41,44,92,110,32,32,32,32,32,32,104,105,100,101,58,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,73,110,116,101,103,101,114,41,40,99,111,110,102,105,103,46,100,101,108,97,121,44,32,48,41,92,110,32,32,32,32,125,59,92,110,32,32,125,32,47,47,32,73,102,32,97,114,103,117,109,101,110,116,44,32,97,115,115,117,109,101,32,101,108,101,109,101,110,116,32,73,68,32,111,102,32,99,111,110,116,97,105,110,101,114,32,101,108,101,109,101,110,116,92,110,92,110,92,110,32,32,105,102,32,40,98,105,110,100,105,110,103,115,46,97,114,103,41,32,123,92,110,32,32,32,32,47,47,32,69,108,101,109,101,110,116,32,73,68,32,115,112,101,99,105,102,105,101,100,32,97,115,32,97,114,103,92,110,32,32,32,32,47,47,32,87,101,32,109,117,115,116,32,112,114,101,112,101,110,100,32,39,35,39,32,116,111,32,98,101,99,111,109,101,32,97,32,67,83,83,32,115,101,108,101,99,116,111,114,92,110,32,32,32,32,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,32,61,32,92,34,35,92,34,46,99,111,110,99,97,116,40,98,105,110,100,105,110,103,115,46,97,114,103,41,59,92,110,32,32,125,32,47,47,32,80,114,111,99,101,115,115,32,109,111,100,105,102,105,101,114,115,92,110,92,110,92,110,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,107,101,121,115,41,40,98,105,110,100,105,110,103,115,46,109,111,100,105,102,105,101,114,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,109,111,100,41,32,123,92,110,32,32,32,32,105,102,32,40,104,116,109,108,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,105,116,108,101,32,97,108,108,111,119,115,32,72,84,77,76,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,104,116,109,108,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,111,110,105,110,116,101,114,97,99,116,105,118,101,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,78,111,110,105,110,116,101,114,97,99,116,105,118,101,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,105,110,116,101,114,97,99,116,105,118,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,111,70,97,100,101,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,78,111,32,97,110,105,109,97,116,105,111,110,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,112,108,97,99,101,109,101,110,116,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,108,97,99,101,109,101,110,116,32,111,102,32,116,111,111,108,116,105,112,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,32,61,32,109,111,100,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,98,111,117,110,100,97,114,121,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,66,111,117,110,100,97,114,121,32,111,102,32,116,111,111,108,116,105,112,92,110,32,32,32,32,32,32,109,111,100,32,61,32,109,111,100,32,61,61,61,32,39,115,99,114,111,108,108,112,97,114,101,110,116,39,32,63,32,39,115,99,114,111,108,108,80,97,114,101,110,116,39,32,58,32,109,111,100,59,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,32,61,32,109,111,100,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,101,108,97,121,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,101,108,97,121,32,118,97,108,117,101,92,110,32,32,32,32,32,32,118,97,114,32,100,101,108,97,121,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,73,110,116,101,103,101,114,41,40,109,111,100,46,115,108,105,99,101,40,49,41,44,32,48,41,59,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,100,101,108,97,121,46,115,104,111,119,32,61,32,100,101,108,97,121,59,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,100,101,108,97,121,46,104,105,100,101,32,61,32,100,101,108,97,121,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,101,108,97,121,83,104,111,119,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,101,108,97,121,32,115,104,111,119,32,118,97,108,117,101,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,100,101,108,97,121,46,115,104,111,119,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,73,110,116,101,103,101,114,41,40,109,111,100,46,115,108,105,99,101,40,50,41,44,32,48,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,101,108,97,121,72,105,100,101,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,101,108,97,121,32,104,105,100,101,32,118,97,108,117,101,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,100,101,108,97,121,46,104,105,100,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,73,110,116,101,103,101,114,41,40,109,111,100,46,115,108,105,99,101,40,50,41,44,32,48,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,111,102,102,115,101,116,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,79,102,102,115,101,116,32,118,97,108,117,101,44,32,110,101,103,97,116,105,118,101,32,97,108,108,111,119,101,100,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,111,102,102,115,101,116,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,73,110,116,101,103,101,114,41,40,109,111,100,46,115,108,105,99,101,40,49,41,44,32,48,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,118,97,114,105,97,110,116,82,69,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,86,97,114,105,97,110,116,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,118,97,114,105,97,110,116,32,61,32,109,111,100,46,115,108,105,99,101,40,50,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,83,112,101,99,105,97,108,32,104,97,110,100,108,105,110,103,32,111,102,32,101,118,101,110,116,32,116,114,105,103,103,101,114,32,109,111,100,105,102,105,101,114,115,32,116,114,105,103,103,101,114,32,105,115,92,110,32,32,47,47,32,97,32,115,112,97,99,101,32,115,101,112,97,114,97,116,101,100,32,108,105,115,116,92,110,92,110,32,32,118,97,114,32,115,101,108,101,99,116,101,100,84,114,105,103,103,101,114,115,32,61,32,123,125,59,32,47,47,32,80,97,114,115,101,32,99,117,114,114,101,110,116,32,99,111,110,102,105,103,32,111,98,106,101,99,116,32,116,114,105,103,103,101,114,92,110,92,110,32,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,99,111,110,99,97,116,41,40,99,111,110,102,105,103,46,116,114,105,103,103,101,114,32,124,124,32,39,39,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,100,101,110,116,105,116,121,41,46,106,111,105,110,40,39,32,39,41,46,116,114,105,109,40,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,115,112,108,105,116,40,115,112,97,99,101,115,82,69,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,114,105,103,103,101,114,41,32,123,92,110,32,32,32,32,105,102,32,40,118,97,108,105,100,84,114,105,103,103,101,114,115,91,116,114,105,103,103,101,114,93,41,32,123,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,84,114,105,103,103,101,114,115,91,116,114,105,103,103,101,114,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,80,97,114,115,101,32,109,111,100,105,102,105,101,114,115,32,102,111,114,32,116,114,105,103,103,101,114,115,92,110,92,110,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,107,101,121,115,41,40,98,105,110,100,105,110,103,115,46,109,111,100,105,102,105,101,114,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,109,111,100,41,32,123,92,110,32,32,32,32,109,111,100,32,61,32,109,111,100,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,118,97,108,105,100,84,114,105,103,103,101,114,115,91,109,111,100,93,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,109,111,100,105,102,105,101,114,32,105,115,32,97,32,118,97,108,105,100,32,116,114,105,103,103,101,114,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,84,114,105,103,103,101,114,115,91,109,111,100,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,83,97,110,105,116,105,122,101,32,116,114,105,103,103,101,114,115,92,110,92,110,32,32,99,111,110,102,105,103,46,116,114,105,103,103,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,107,101,121,115,41,40,115,101,108,101,99,116,101,100,84,114,105,103,103,101,114,115,41,46,106,111,105,110,40,39,32,39,41,59,92,110,92,110,32,32,105,102,32,40,99,111,110,102,105,103,46,116,114,105,103,103,101,114,32,61,61,61,32,39,98,108,117,114,39,41,32,123,92,110,32,32,32,32,47,47,32,66,108,117,114,32,98,121,32,105,116,115,101,108,102,32,105,115,32,117,115,101,108,101,115,115,44,32,115,111,32,99,111,110,118,101,114,116,32,105,116,32,116,111,32,39,102,111,99,117,115,39,92,110,32,32,32,32,99,111,110,102,105,103,46,116,114,105,103,103,101,114,32,61,32,39,102,111,99,117,115,39,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,99,111,110,102,105,103,46,116,114,105,103,103,101,114,41,32,123,92,110,32,32,32,32,47,47,32,85,115,101,32,100,101,102,97,117,108,116,32,116,114,105,103,103,101,114,92,110,32,32,32,32,99,111,110,102,105,103,46,116,114,105,103,103,101,114,32,61,32,68,101,102,97,117,108,116,84,114,105,103,103,101,114,59,92,110,32,32,125,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,99,111,110,102,105,103,92,110,92,110,92,110,32,32,114,101,116,117,114,110,32,99,111,110,102,105,103,59,92,110,125,59,32,47,47,32,65,100,100,47,117,112,100,97,116,101,32,84,111,111,108,116,105,112,32,111,110,32,111,117,114,32,101,108,101,109,101,110,116,92,110,92,110,92,110,118,97,114,32,97,112,112,108,121,84,111,111,108,116,105,112,32,61,32,102,117,110,99,116,105,111,110,32,97,112,112,108,121,84,111,111,108,116,105,112,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,32,123,92,110,32,32,105,102,32,40,33,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,73,83,95,66,82,79,87,83,69,82,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,111,110,102,105,103,32,61,32,112,97,114,115,101,66,105,110,100,105,110,103,115,40,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,59,92,110,92,110,32,32,105,102,32,40,33,101,108,91,66,86,95,84,79,79,76,84,73,80,93,41,32,123,92,110,32,32,32,32,118,97,114,32,36,112,97,114,101,110,116,32,61,32,118,110,111,100,101,46,99,111,110,116,101,120,116,59,92,110,32,32,32,32,101,108,91,66,86,95,84,79,79,76,84,73,80,93,32,61,32,110,101,119,32,95,99,111,109,112,111,110,101,110,116,115,95,116,111,111,108,116,105,112,95,104,101,108,112,101,114,115,95,98,118,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,86,84,111,111,108,116,105,112,40,123,92,110,32,32,32,32,32,32,112,97,114,101,110,116,58,32,36,112,97,114,101,110,116,44,92,110,32,32,32,32,32,32,47,47,32,65,100,100,32,116,104,101,32,112,97,114,101,110,116,39,115,32,115,99,111,112,101,100,32,115,116,121,108,101,32,97,116,116,114,105,98,117,116,101,32,100,97,116,97,92,110,32,32,32,32,32,32,95,115,99,111,112,101,73,100,58,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,115,99,111,112,101,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,103,101,116,83,99,111,112,101,73,100,41,40,36,112,97,114,101,110,116,44,32,117,110,100,101,102,105,110,101,100,41,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,101,108,91,66,86,95,84,79,79,76,84,73,80,93,46,95,95,98,118,95,112,114,101,118,95,100,97,116,97,95,95,32,61,32,123,125,59,92,110,32,32,32,32,101,108,91,66,86,95,84,79,79,76,84,73,80,93,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,44,32,102,117,110,99,116,105,111,110,32,40,41,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,102,111,114,32,110,111,119,32,42,47,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,47,47,32,66,101,102,111,114,101,32,115,104,111,119,105,110,103,32,116,104,101,32,116,111,111,108,116,105,112,44,32,119,101,32,117,112,100,97,116,101,32,116,104,101,32,116,105,116,108,101,32,105,102,32,105,116,32,105,115,32,97,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,99,111,110,102,105,103,46,116,105,116,108,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,101,108,91,66,86,95,84,79,79,76,84,73,80,93,46,117,112,100,97,116,101,68,97,116,97,40,123,92,110,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,99,111,110,102,105,103,46,116,105,116,108,101,40,101,108,41,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,100,97,116,97,32,61,32,123,92,110,32,32,32,32,116,105,116,108,101,58,32,99,111,110,102,105,103,46,116,105,116,108,101,44,92,110,32,32,32,32,116,114,105,103,103,101,114,115,58,32,99,111,110,102,105,103,46,116,114,105,103,103,101,114,44,92,110,32,32,32,32,112,108,97,99,101,109,101,110,116,58,32,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,44,92,110,32,32,32,32,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,32,99,111,110,102,105,103,46,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,44,92,110,32,32,32,32,118,97,114,105,97,110,116,58,32,99,111,110,102,105,103,46,118,97,114,105,97,110,116,44,92,110,32,32,32,32,99,117,115,116,111,109,67,108,97,115,115,58,32,99,111,110,102,105,103,46,99,117,115,116,111,109,67,108,97,115,115,44,92,110,32,32,32,32,99,111,110,116,97,105,110,101,114,58,32,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,44,92,110,32,32,32,32,98,111,117,110,100,97,114,121,58,32,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,44,92,110,32,32,32,32,100,101,108,97,121,58,32,99,111,110,102,105,103,46,100,101,108,97,121,44,92,110,32,32,32,32,111,102,102,115,101,116,58,32,99,111,110,102,105,103,46,111,102,102,115,101,116,44,92,110,32,32,32,32,110,111,70,97,100,101,58,32,33,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,44,92,110,32,32,32,32,105,100,58,32,99,111,110,102,105,103,46,105,100,44,92,110,32,32,32,32,105,110,116,101,114,97,99,116,105,118,101,58,32,99,111,110,102,105,103,46,105,110,116,101,114,97,99,116,105,118,101,44,92,110,32,32,32,32,100,105,115,97,98,108,101,100,58,32,99,111,110,102,105,103,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,104,116,109,108,58,32,99,111,110,102,105,103,46,104,116,109,108,92,110,32,32,125,59,92,110,32,32,118,97,114,32,111,108,100,68,97,116,97,32,61,32,101,108,91,66,86,95,84,79,79,76,84,73,80,93,46,95,95,98,118,95,112,114,101,118,95,100,97,116,97,95,95,59,92,110,32,32,101,108,91,66,86,95,84,79,79,76,84,73,80,93,46,95,95,98,118,95,112,114,101,118,95,100,97,116,97,95,95,32,61,32,100,97,116,97,59,92,110,92,110,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,100,97,116,97,44,32,111,108,100,68,97,116,97,41,41,32,123,92,110,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,117,112,100,97,116,101,32,116,104,101,32,105,110,115,116,97,110,99,101,32,105,102,32,100,97,116,97,32,104,97,115,32,99,104,97,110,103,101,100,92,110,32,32,32,32,118,97,114,32,110,101,119,68,97,116,97,32,61,32,123,92,110,32,32,32,32,32,32,116,97,114,103,101,116,58,32,101,108,92,110,32,32,32,32,125,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,107,101,121,115,41,40,100,97,116,97,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,111,110,108,121,32,112,97,115,115,32,100,97,116,97,32,112,114,111,112,101,114,116,105,101,115,32,116,104,97,116,32,104,97,118,101,32,99,104,97,110,103,101,100,92,110,32,32,32,32,32,32,105,102,32,40,100,97,116,97,91,112,114,111,112,93,32,33,61,61,32,111,108,100,68,97,116,97,91,112,114,111,112,93,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,105,102,32,116,105,116,108,101,32,105,115,32,97,32,102,117,110,99,116,105,111,110,44,32,119,101,32,101,120,101,99,117,116,101,32,105,116,32,104,101,114,101,92,110,32,32,32,32,32,32,32,32,110,101,119,68,97,116,97,91,112,114,111,112,93,32,61,32,112,114,111,112,32,61,61,61,32,39,116,105,116,108,101,39,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,100,97,116,97,91,112,114,111,112,93,41,32,63,32,100,97,116,97,91,112,114,111,112,93,40,101,108,41,32,58,32,100,97,116,97,91,112,114,111,112,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,101,108,91,66,86,95,84,79,79,76,84,73,80,93,46,117,112,100,97,116,101,68,97,116,97,40,110,101,119,68,97,116,97,41,59,92,110,32,32,125,92,110,125,59,32,47,47,32,82,101,109,111,118,101,32,84,111,111,108,116,105,112,32,111,110,32,111,117,114,32,101,108,101,109,101,110,116,92,110,92,110,92,110,118,97,114,32,114,101,109,111,118,101,84,111,111,108,116,105,112,32,61,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,84,111,111,108,116,105,112,40,101,108,41,32,123,92,110,32,32,105,102,32,40,101,108,91,66,86,95,84,79,79,76,84,73,80,93,41,32,123,92,110,32,32,32,32,101,108,91,66,86,95,84,79,79,76,84,73,80,93,46,36,100,101,115,116,114,111,121,40,41,59,92,110,32,32,32,32,101,108,91,66,86,95,84,79,79,76,84,73,80,93,32,61,32,110,117,108,108,59,92,110,32,32,125,92,110,92,110,32,32,100,101,108,101,116,101,32,101,108,91,66,86,95,84,79,79,76,84,73,80,93,59,92,110,125,59,32,47,47,32,69,120,112,111,114,116,32,111,117,114,32,100,105,114,101,99,116,105,118,101,92,110,92,110,92,110,118,97,114,32,86,66,84,111,111,108,116,105,112,32,61,32,123,92,110,32,32,98,105,110,100,58,32,102,117,110,99,116,105,111,110,32,98,105,110,100,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,97,112,112,108,121,84,111,111,108,116,105,112,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,87,101,32,117,115,101,32,96,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,96,32,104,101,114,101,32,105,110,115,116,101,97,100,32,111,102,32,96,117,112,100,97,116,101,96,44,32,97,115,32,116,104,101,32,102,111,114,109,101,114,92,110,32,32,47,47,32,119,97,105,116,115,32,117,110,116,105,108,32,116,104,101,32,99,111,110,116,97,105,110,105,110,103,32,99,111,109,112,111,110,101,110,116,32,97,110,100,32,99,104,105,108,100,114,101,110,32,104,97,118,101,32,102,105,110,105,115,104,101,100,32,117,112,100,97,116,105,110,103,92,110,32,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,47,47,32,80,101,114,102,111,114,109,101,100,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,112,114,101,118,101,110,116,32,114,101,110,100,101,114,32,117,112,100,97,116,101,32,108,111,111,112,115,92,110,32,32,32,32,118,110,111,100,101,46,99,111,110,116,101,120,116,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,97,112,112,108,121,84,111,111,108,116,105,112,40,101,108,44,32,98,105,110,100,105,110,103,115,44,32,118,110,111,100,101,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,117,110,98,105,110,100,58,32,102,117,110,99,116,105,111,110,32,117,110,98,105,110,100,40,101,108,41,32,123,92,110,32,32,32,32,114,101,109,111,118,101,84,111,111,108,116,105,112,40,101,108,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,47,116,111,111,108,116,105,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,86,105,115,105,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,118,105,115,105,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,86,66,86,105,115,105,98,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,86,105,115,105,98,108,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,86,66,86,105,115,105,98,108,101,80,108,117,103,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,105,115,105,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,118,105,115,105,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,47,118,105,115,105,98,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,86,66,86,105,115,105,98,108,101,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,41,40,123,92,110,32,32,100,105,114,101,99,116,105,118,101,115,58,32,123,92,110,32,32,32,32,86,66,86,105,115,105,98,108,101,58,32,95,118,105,115,105,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,86,66,86,105,115,105,98,108,101,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,47,118,105,115,105,98,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,47,118,105,115,105,98,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,86,105,115,105,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,86,66,86,105,115,105,98,108,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,105,110,115,116,97,110,99,101,44,32,67,111,110,115,116,114,117,99,116,111,114,41,32,123,32,105,102,32,40,33,40,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,67,111,110,115,116,114,117,99,116,111,114,41,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,32,112,114,111,112,115,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,112,114,111,112,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,100,101,115,99,114,105,112,116,111,114,32,61,32,112,114,111,112,115,91,105,93,59,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,61,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,124,124,32,102,97,108,115,101,59,32,100,101,115,99,114,105,112,116,111,114,46,99,111,110,102,105,103,117,114,97,98,108,101,32,61,32,116,114,117,101,59,32,105,102,32,40,92,34,118,97,108,117,101,92,34,32,105,110,32,100,101,115,99,114,105,112,116,111,114,41,32,100,101,115,99,114,105,112,116,111,114,46,119,114,105,116,97,98,108,101,32,61,32,116,114,117,101,59,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,100,101,115,99,114,105,112,116,111,114,46,107,101,121,44,32,100,101,115,99,114,105,112,116,111,114,41,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,99,114,101,97,116,101,67,108,97,115,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,112,114,111,116,111,80,114,111,112,115,44,32,115,116,97,116,105,99,80,114,111,112,115,41,32,123,32,105,102,32,40,112,114,111,116,111,80,114,111,112,115,41,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,44,32,112,114,111,116,111,80,114,111,112,115,41,59,32,105,102,32,40,115,116,97,116,105,99,80,114,111,112,115,41,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,115,116,97,116,105,99,80,114,111,112,115,41,59,32,114,101,116,117,114,110,32,67,111,110,115,116,114,117,99,116,111,114,59,32,125,92,110,92,110,47,47,32,118,45,98,45,118,105,115,105,98,108,101,92,110,47,47,32,80,114,105,118,97,116,101,32,118,105,115,105,98,105,108,105,116,121,32,99,104,101,99,107,32,100,105,114,101,99,116,105,118,101,92,110,47,47,32,66,97,115,101,100,32,111,110,32,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,92,110,47,47,92,110,47,47,32,85,115,97,103,101,58,92,110,47,47,32,32,118,45,98,45,118,105,115,105,98,105,108,105,116,121,46,60,109,97,114,103,105,110,62,46,60,111,110,99,101,62,61,92,34,60,99,97,108,108,98,97,99,107,62,92,34,92,110,47,47,92,110,47,47,32,32,86,97,108,117,101,58,92,110,47,47,32,32,60,99,97,108,108,98,97,99,107,62,58,32,109,101,116,104,111,100,32,116,111,32,98,101,32,99,97,108,108,101,100,32,119,104,101,110,32,118,105,115,105,98,105,108,105,116,121,32,115,116,97,116,101,32,99,104,97,110,103,101,115,44,32,114,101,99,101,105,118,101,115,32,111,110,101,32,97,114,103,58,92,110,47,47,32,32,32,32,32,116,114,117,101,58,32,32,101,108,101,109,101,110,116,32,105,115,32,118,105,115,105,98,108,101,92,110,47,47,32,32,32,32,32,102,97,108,115,101,58,32,101,108,101,109,101,110,116,32,105,115,32,110,111,116,32,118,105,115,105,98,108,101,92,110,47,47,32,32,32,32,32,110,117,108,108,58,32,32,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,32,110,111,116,32,115,117,112,112,111,114,116,101,100,92,110,47,47,92,110,47,47,32,32,77,111,100,105,102,105,101,114,115,58,92,110,47,47,32,32,32,32,60,109,97,114,103,105,110,62,58,32,97,32,112,111,115,105,116,105,118,101,32,100,101,99,105,109,97,108,32,118,97,108,117,101,32,111,102,32,112,105,120,101,108,115,32,97,119,97,121,32,102,114,111,109,32,118,105,101,119,112,111,114,116,32,101,100,103,101,92,110,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,101,102,111,114,101,32,98,101,105,110,103,32,99,111,110,115,105,100,101,114,101,100,32,92,34,118,105,115,105,98,108,101,92,34,46,32,100,101,102,97,117,108,116,32,105,115,32,48,92,110,47,47,32,32,32,32,60,111,110,99,101,62,58,32,32,32,107,101,121,119,111,114,100,32,39,111,110,99,101,39,44,32,109,101,97,110,105,110,103,32,119,104,101,110,32,116,104,101,32,101,108,101,109,101,110,116,32,98,101,99,111,109,101,115,32,118,105,115,105,98,108,101,32,97,110,100,92,110,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,98,97,99,107,32,105,115,32,99,97,108,108,101,100,32,111,98,115,101,114,118,97,116,105,111,110,47,110,111,116,105,102,105,99,97,116,105,111,110,32,119,105,108,108,32,115,116,111,112,46,92,110,47,47,92,110,47,47,32,87,104,101,110,32,117,115,101,100,32,105,110,32,97,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,58,92,110,47,47,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,123,92,110,47,47,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,123,32,39,98,45,118,105,115,105,98,108,101,39,58,32,86,66,86,105,115,105,98,108,101,32,125,44,92,110,47,47,32,32,32,114,101,110,100,101,114,40,104,41,32,123,92,110,47,47,32,32,32,32,32,104,40,92,110,47,47,32,32,32,32,32,32,32,39,100,105,118,39,44,92,110,47,47,32,32,32,32,32,32,32,123,92,110,47,47,32,32,32,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,92,110,47,47,32,32,32,32,32,32,32,32,32,32,32,123,32,110,97,109,101,58,32,39,98,45,118,105,115,105,98,108,101,39,44,32,118,97,108,117,101,61,116,104,105,115,46,99,97,108,108,98,97,99,107,44,32,109,111,100,105,102,105,101,114,115,58,32,123,32,39,49,50,51,39,58,116,114,117,101,44,32,39,111,110,99,101,39,58,116,114,117,101,32,125,32,125,92,110,47,47,32,32,32,32,32,32,32,32,32,93,92,110,47,47,32,32,32,32,32,32,32,125,92,110,47,47,32,32,32,32,32,41,92,110,47,47,32,32,32,125,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,79,66,83,69,82,86,69,82,95,80,82,79,80,95,78,65,77,69,32,61,32,39,95,95,98,118,95,95,118,105,115,105,98,105,108,105,116,121,95,111,98,115,101,114,118,101,114,39,59,92,110,92,110,118,97,114,32,86,105,115,105,98,105,108,105,116,121,79,98,115,101,114,118,101,114,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,86,105,115,105,98,105,108,105,116,121,79,98,115,101,114,118,101,114,40,101,108,44,32,111,112,116,105,111,110,115,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,86,105,115,105,98,105,108,105,116,121,79,98,115,101,114,118,101,114,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,101,108,32,61,32,101,108,59,92,110,32,32,32,32,116,104,105,115,46,99,97,108,108,98,97,99,107,32,61,32,111,112,116,105,111,110,115,46,99,97,108,108,98,97,99,107,59,92,110,32,32,32,32,116,104,105,115,46,109,97,114,103,105,110,32,61,32,111,112,116,105,111,110,115,46,109,97,114,103,105,110,32,124,124,32,48,59,92,110,32,32,32,32,116,104,105,115,46,111,110,99,101,32,61,32,111,112,116,105,111,110,115,46,111,110,99,101,32,124,124,32,102,97,108,115,101,59,92,110,32,32,32,32,116,104,105,115,46,111,98,115,101,114,118,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,118,105,115,105,98,108,101,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,116,104,105,115,46,100,111,110,101,79,110,99,101,32,61,32,102,97,108,115,101,59,32,47,47,32,67,114,101,97,116,101,32,116,104,101,32,111,98,115,101,114,118,101,114,32,105,110,115,116,97,110,99,101,32,40,105,102,32,112,111,115,115,105,98,108,101,41,92,110,92,110,32,32,32,32,116,104,105,115,46,99,114,101,97,116,101,79,98,115,101,114,118,101,114,40,118,110,111,100,101,41,59,92,110,32,32,125,92,110,92,110,32,32,95,99,114,101,97,116,101,67,108,97,115,115,40,86,105,115,105,98,105,108,105,116,121,79,98,115,101,114,118,101,114,44,32,91,123,92,110,32,32,32,32,107,101,121,58,32,92,34,99,114,101,97,116,101,79,98,115,101,114,118,101,114,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,79,98,115,101,114,118,101,114,40,118,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,97,110,121,32,112,114,101,118,105,111,117,115,32,111,98,115,101,114,118,101,114,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,111,98,115,101,114,118,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,111,112,40,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,83,104,111,117,108,100,32,111,110,108,121,32,98,101,32,99,97,108,108,101,100,32,111,110,99,101,32,97,110,100,32,96,99,97,108,108,98,97,99,107,96,32,112,114,111,112,32,115,104,111,117,108,100,32,98,101,32,97,32,102,117,110,99,116,105,111,110,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,111,110,101,79,110,99,101,32,124,124,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,116,104,105,115,46,99,97,108,108,98,97,99,107,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,67,114,101,97,116,101,32,116,104,101,32,111,98,115,101,114,118,101,114,32,105,110,115,116,97,110,99,101,92,110,92,110,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,70,117,116,117,114,101,58,32,80,111,115,115,105,98,108,121,32,97,100,100,32,105,110,32,111,116,104,101,114,32,109,111,100,105,102,105,101,114,115,32,102,111,114,32,108,101,102,116,47,114,105,103,104,116,47,116,111,112,47,98,111,116,116,111,109,92,110,32,32,32,32,32,32,32,32,47,47,32,111,102,102,115,101,116,115,44,32,114,111,111,116,32,101,108,101,109,101,110,116,32,114,101,102,101,114,101,110,99,101,44,32,97,110,100,32,116,104,114,101,115,104,111,108,100,115,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,111,98,115,101,114,118,101,114,32,61,32,110,101,119,32,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,40,116,104,105,115,46,104,97,110,100,108,101,114,46,98,105,110,100,40,116,104,105,115,41,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,96,110,117,108,108,96,32,61,32,39,118,105,101,119,112,111,114,116,39,92,110,32,32,32,32,32,32,32,32,32,32,114,111,111,116,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,80,105,120,101,108,115,32,97,119,97,121,32,102,114,111,109,32,118,105,101,119,32,112,111,114,116,32,116,111,32,99,111,110,115,105,100,101,114,32,92,34,118,105,115,105,98,108,101,92,34,92,110,32,32,32,32,32,32,32,32,32,32,114,111,111,116,77,97,114,103,105,110,58,32,116,104,105,115,46,109,97,114,103,105,110,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,116,101,114,115,101,99,116,105,111,110,32,114,97,116,105,111,32,111,102,32,101,108,32,97,110,100,32,114,111,111,116,32,40,97,115,32,97,32,118,97,108,117,101,32,102,114,111,109,32,48,32,116,111,32,49,41,92,110,32,32,32,32,32,32,32,32,32,32,116,104,114,101,115,104,111,108,100,58,32,48,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,95,117,110,117,115,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,78,111,32,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,32,115,117,112,112,111,114,116,44,32,115,111,32,106,117,115,116,32,115,116,111,112,32,116,114,121,105,110,103,32,116,111,32,111,98,115,101,114,118,101,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,100,111,110,101,79,110,99,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,111,98,115,101,114,118,101,114,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,108,108,98,97,99,107,40,110,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,83,116,97,114,116,32,111,98,115,101,114,118,105,110,103,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,40,116,111,32,97,108,108,111,119,32,68,79,77,32,116,111,32,99,111,109,112,108,101,116,101,32,114,101,110,100,101,114,105,110,103,41,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,32,110,111,116,32,115,117,112,112,111,114,116,101,100,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,118,110,111,100,101,46,99,111,110,116,101,120,116,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,80,108,97,99,101,100,32,105,110,32,97,110,32,96,105,102,96,32,106,117,115,116,32,105,110,32,99,97,115,101,32,119,101,32,119,101,114,101,32,100,101,115,116,114,111,121,101,100,32,98,101,102,111,114,101,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,116,104,105,115,32,96,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,96,32,114,117,110,115,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,46,111,98,115,101,114,118,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,111,98,115,101,114,118,101,114,46,111,98,115,101,114,118,101,40,95,116,104,105,115,46,101,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,104,97,110,100,108,101,114,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,40,101,110,116,114,105,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,101,110,116,114,105,101,115,32,63,32,101,110,116,114,105,101,115,91,48,93,32,58,32,123,125,59,92,110,32,32,32,32,32,32,118,97,114,32,105,115,73,110,116,101,114,115,101,99,116,105,110,103,32,61,32,66,111,111,108,101,97,110,40,101,110,116,114,121,46,105,115,73,110,116,101,114,115,101,99,116,105,110,103,32,124,124,32,101,110,116,114,121,46,105,110,116,101,114,115,101,99,116,105,111,110,82,97,116,105,111,32,62,32,48,46,48,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,73,110,116,101,114,115,101,99,116,105,110,103,32,33,61,61,32,116,104,105,115,46,118,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,118,105,115,105,98,108,101,32,61,32,105,115,73,110,116,101,114,115,101,99,116,105,110,103,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,108,108,98,97,99,107,40,105,115,73,110,116,101,114,115,101,99,116,105,110,103,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,111,110,99,101,32,38,38,32,116,104,105,115,46,118,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,100,111,110,101,79,110,99,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,111,112,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,115,116,111,112,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,116,111,112,40,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,116,104,105,115,46,111,98,115,101,114,118,101,114,32,38,38,32,116,104,105,115,46,111,98,115,101,114,118,101,114,46,100,105,115,99,111,110,110,101,99,116,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,111,98,115,101,114,118,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,93,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,86,105,115,105,98,105,108,105,116,121,79,98,115,101,114,118,101,114,59,92,110,125,40,41,59,92,110,92,110,118,97,114,32,100,101,115,116,114,111,121,32,61,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,40,101,108,41,32,123,92,110,32,32,118,97,114,32,111,98,115,101,114,118,101,114,32,61,32,101,108,91,79,66,83,69,82,86,69,82,95,80,82,79,80,95,78,65,77,69,93,59,92,110,92,110,32,32,105,102,32,40,111,98,115,101,114,118,101,114,32,38,38,32,111,98,115,101,114,118,101,114,46,115,116,111,112,41,32,123,92,110,32,32,32,32,111,98,115,101,114,118,101,114,46,115,116,111,112,40,41,59,92,110,32,32,125,92,110,92,110,32,32,100,101,108,101,116,101,32,101,108,91,79,66,83,69,82,86,69,82,95,80,82,79,80,95,78,65,77,69,93,59,92,110,125,59,92,110,92,110,118,97,114,32,98,105,110,100,32,61,32,102,117,110,99,116,105,111,110,32,98,105,110,100,40,101,108,44,32,95,114,101,102,44,32,118,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,118,97,108,117,101,32,61,32,95,114,101,102,46,118,97,108,117,101,44,92,110,32,32,32,32,32,32,109,111,100,105,102,105,101,114,115,32,61,32,95,114,101,102,46,109,111,100,105,102,105,101,114,115,59,92,110,32,32,47,47,32,96,118,97,108,117,101,96,32,105,115,32,116,104,101,32,99,97,108,108,98,97,99,107,32,102,117,110,99,116,105,111,110,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,123,92,110,32,32,32,32,109,97,114,103,105,110,58,32,39,48,112,120,39,44,92,110,32,32,32,32,111,110,99,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,99,97,108,108,98,97,99,107,58,32,118,97,108,117,101,92,110,32,32,125,59,32,47,47,32,80,97,114,115,101,32,109,111,100,105,102,105,101,114,115,92,110,92,110,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,107,101,121,115,41,40,109,111,100,105,102,105,101,114,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,109,111,100,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,58,32,85,110,116,105,108,32,60,98,45,105,109,103,45,108,97,122,121,62,32,105,115,32,115,119,105,116,99,104,101,100,32,116,111,32,117,115,101,32,116,104,105,115,32,100,105,114,101,99,116,105,118,101,32,42,47,92,110,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,82,88,95,68,73,71,73,84,83,46,116,101,115,116,40,109,111,100,41,41,32,123,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,46,109,97,114,103,105,110,32,61,32,92,34,92,34,46,99,111,110,99,97,116,40,109,111,100,44,32,92,34,112,120,92,34,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,109,111,100,46,116,111,76,111,119,101,114,67,97,115,101,40,41,32,61,61,61,32,39,111,110,99,101,39,41,32,123,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,46,111,110,99,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,68,101,115,116,114,111,121,32,97,110,121,32,112,114,101,118,105,111,117,115,32,111,98,115,101,114,118,101,114,92,110,92,110,32,32,100,101,115,116,114,111,121,40,101,108,41,59,32,47,47,32,67,114,101,97,116,101,32,110,101,119,32,111,98,115,101,114,118,101,114,92,110,92,110,32,32,101,108,91,79,66,83,69,82,86,69,82,95,80,82,79,80,95,78,65,77,69,93,32,61,32,110,101,119,32,86,105,115,105,98,105,108,105,116,121,79,98,115,101,114,118,101,114,40,101,108,44,32,111,112,116,105,111,110,115,44,32,118,110,111,100,101,41,59,32,47,47,32,83,116,111,114,101,32,116,104,101,32,99,117,114,114,101,110,116,32,109,111,100,105,102,105,101,114,115,32,111,110,32,116,104,101,32,111,98,106,101,99,116,32,40,99,108,111,110,101,100,41,92,110,92,110,32,32,101,108,91,79,66,83,69,82,86,69,82,95,80,82,79,80,95,78,65,77,69,93,46,95,112,114,101,118,77,111,100,105,102,105,101,114,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,108,111,110,101,41,40,109,111,100,105,102,105,101,114,115,41,59,92,110,125,59,32,47,47,32,87,104,101,110,32,116,104,101,32,100,105,114,101,99,116,105,118,101,32,111,112,116,105,111,110,115,32,109,97,121,32,104,97,118,101,32,98,101,101,110,32,117,112,100,97,116,101,100,32,40,111,114,32,101,108,101,109,101,110,116,41,92,110,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,40,101,108,44,32,95,114,101,102,50,44,32,118,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,118,97,108,117,101,32,61,32,95,114,101,102,50,46,118,97,108,117,101,44,92,110,32,32,32,32,32,32,111,108,100,86,97,108,117,101,32,61,32,95,114,101,102,50,46,111,108,100,86,97,108,117,101,44,92,110,32,32,32,32,32,32,109,111,100,105,102,105,101,114,115,32,61,32,95,114,101,102,50,46,109,111,100,105,102,105,101,114,115,59,92,110,32,32,47,47,32,67,111,109,112,97,114,101,32,118,97,108,117,101,47,111,108,100,86,97,108,117,101,32,97,110,100,32,109,111,100,105,102,105,101,114,115,32,116,111,32,115,101,101,32,105,102,32,97,110,121,116,104,105,110,103,32,104,97,115,32,99,104,97,110,103,101,100,92,110,32,32,47,47,32,97,110,100,32,105,102,32,115,111,44,32,100,101,115,116,114,111,121,32,111,108,100,32,111,98,115,101,114,118,101,114,32,97,110,100,32,99,114,101,97,116,101,32,110,101,119,32,111,98,115,101,114,118,101,114,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,109,111,100,105,102,105,101,114,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,108,111,110,101,41,40,109,111,100,105,102,105,101,114,115,41,59,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,32,32,105,102,32,40,101,108,32,38,38,32,40,118,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,32,124,124,32,33,101,108,91,79,66,83,69,82,86,69,82,95,80,82,79,80,95,78,65,77,69,93,32,124,124,32,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,109,111,100,105,102,105,101,114,115,44,32,101,108,91,79,66,83,69,82,86,69,82,95,80,82,79,80,95,78,65,77,69,93,46,95,112,114,101,118,77,111,100,105,102,105,101,114,115,41,41,41,32,123,92,110,32,32,32,32,47,47,32,82,101,45,98,105,110,100,32,111,110,32,101,108,101,109,101,110,116,92,110,32,32,32,32,98,105,110,100,40,101,108,44,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,109,111,100,105,102,105,101,114,115,58,32,109,111,100,105,102,105,101,114,115,92,110,32,32,32,32,125,44,32,118,110,111,100,101,41,59,92,110,32,32,125,92,110,125,59,32,47,47,32,87,104,101,110,32,100,105,114,101,99,116,105,118,101,32,117,110,45,98,105,110,100,115,32,102,114,111,109,32,101,108,101,109,101,110,116,92,110,92,110,92,110,118,97,114,32,117,110,98,105,110,100,32,61,32,102,117,110,99,116,105,111,110,32,117,110,98,105,110,100,40,101,108,41,32,123,92,110,32,32,47,47,32,82,101,109,111,118,101,32,116,104,101,32,111,98,115,101,114,118,101,114,92,110,32,32,100,101,115,116,114,111,121,40,101,108,41,59,92,110,125,59,32,47,47,32,69,120,112,111,114,116,32,116,104,101,32,100,105,114,101,99,116,105,118,101,92,110,92,110,92,110,118,97,114,32,86,66,86,105,115,105,98,108,101,32,61,32,123,92,110,32,32,98,105,110,100,58,32,98,105,110,100,44,92,110,32,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,44,92,110,32,32,117,110,98,105,110,100,58,32,117,110,98,105,110,100,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,47,118,105,115,105,98,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,104,101,108,112,101,114,115,47,105,99,111,110,45,98,97,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,104,101,108,112,101,114,115,47,105,99,111,110,45,98,97,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,73,99,111,110,66,97,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,86,73,99,111,110,66,97,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,47,47,32,66,97,115,101,32,97,116,116,114,105,98,117,116,101,115,32,110,101,101,100,101,100,32,111,110,32,97,108,108,32,105,99,111,110,115,92,110,92,110,118,97,114,32,66,65,83,69,95,65,84,84,82,83,32,61,32,123,92,110,32,32,118,105,101,119,66,111,120,58,32,39,48,32,48,32,49,54,32,49,54,39,44,92,110,32,32,119,105,100,116,104,58,32,39,49,101,109,39,44,92,110,32,32,104,101,105,103,104,116,58,32,39,49,101,109,39,44,92,110,32,32,102,111,99,117,115,97,98,108,101,58,32,39,102,97,108,115,101,39,44,92,110,32,32,114,111,108,101,58,32,39,105,109,103,39,44,92,110,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,39,105,99,111,110,39,92,110,125,59,32,47,47,32,65,116,116,114,105,98,117,116,101,115,32,116,104,97,116,32,97,114,101,32,110,117,108,108,101,100,32,111,117,116,32,119,104,101,110,32,115,116,97,99,107,101,100,92,110,92,110,118,97,114,32,83,84,65,67,75,69,68,95,65,84,84,82,83,32,61,32,123,92,110,32,32,119,105,100,116,104,58,32,110,117,108,108,44,92,110,32,32,104,101,105,103,104,116,58,32,110,117,108,108,44,92,110,32,32,102,111,99,117,115,97,98,108,101,58,32,110,117,108,108,44,92,110,32,32,114,111,108,101,58,32,110,117,108,108,44,92,110,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,110,117,108,108,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,97,110,105,109,97,116,105,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,99,111,110,116,101,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,102,108,105,112,72,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,102,108,105,112,86,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,102,111,110,116,83,99,97,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,49,41,44,92,110,32,32,114,111,116,97,116,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,48,41,44,92,110,32,32,115,99,97,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,49,41,44,92,110,32,32,115,104,105,102,116,72,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,48,41,44,92,110,32,32,115,104,105,102,116,86,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,48,41,44,92,110,32,32,115,116,97,99,107,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,105,116,108,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,118,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,83,104,97,114,101,100,32,112,114,105,118,97,116,101,32,98,97,115,101,32,99,111,109,112,111,110,101,110,116,32,116,111,32,114,101,100,117,99,101,32,98,117,110,100,108,101,47,114,117,110,116,105,109,101,32,115,105,122,101,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,86,73,99,111,110,66,97,115,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,73,67,79,78,95,66,65,83,69,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,95,99,108,97,115,115,59,92,110,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,97,110,105,109,97,116,105,111,110,32,61,32,112,114,111,112,115,46,97,110,105,109,97,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,32,61,32,112,114,111,112,115,46,99,111,110,116,101,110,116,44,92,110,32,32,32,32,32,32,32,32,102,108,105,112,72,32,61,32,112,114,111,112,115,46,102,108,105,112,72,44,92,110,32,32,32,32,32,32,32,32,102,108,105,112,86,32,61,32,112,114,111,112,115,46,102,108,105,112,86,44,92,110,32,32,32,32,32,32,32,32,115,116,97,99,107,101,100,32,61,32,112,114,111,112,115,46,115,116,97,99,107,101,100,44,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,32,61,32,112,114,111,112,115,46,116,105,116,108,101,44,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,32,61,32,112,114,111,112,115,46,118,97,114,105,97,110,116,59,92,110,32,32,32,32,118,97,114,32,102,111,110,116,83,99,97,108,101,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,112,114,111,112,115,46,102,111,110,116,83,99,97,108,101,44,32,49,41,44,32,48,41,32,124,124,32,49,59,92,110,32,32,32,32,118,97,114,32,115,99,97,108,101,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,112,114,111,112,115,46,115,99,97,108,101,44,32,49,41,44,32,48,41,32,124,124,32,49,59,92,110,32,32,32,32,118,97,114,32,114,111,116,97,116,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,112,114,111,112,115,46,114,111,116,97,116,101,44,32,48,41,59,92,110,32,32,32,32,118,97,114,32,115,104,105,102,116,72,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,112,114,111,112,115,46,115,104,105,102,116,72,44,32,48,41,59,92,110,32,32,32,32,118,97,114,32,115,104,105,102,116,86,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,112,114,111,112,115,46,115,104,105,102,116,86,44,32,48,41,59,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,116,114,97,110,115,102,111,114,109,115,92,110,32,32,32,32,47,47,32,78,111,116,101,32,116,104,97,116,32,111,114,100,101,114,32,105,115,32,105,109,112,111,114,116,97,110,116,32,97,115,32,83,86,71,32,116,114,97,110,115,102,111,114,109,115,32,97,114,101,32,97,112,112,108,105,101,100,32,105,110,32,111,114,100,101,114,32,102,114,111,109,92,110,32,32,32,32,47,47,32,108,101,102,116,32,116,111,32,114,105,103,104,116,32,97,110,100,32,119,101,32,119,97,110,116,32,102,108,105,112,112,105,110,103,47,115,99,97,108,101,32,116,111,32,111,99,99,117,114,32,98,101,102,111,114,101,32,114,111,116,97,116,105,111,110,92,110,32,32,32,32,47,47,32,78,111,116,101,32,115,104,105,102,116,105,110,103,32,105,115,32,97,112,112,108,105,101,100,32,115,101,112,97,114,97,116,101,108,121,92,110,32,32,32,32,47,47,32,65,115,115,117,109,101,115,32,116,104,97,116,32,116,104,101,32,118,105,101,119,98,111,120,32,105,115,32,96,48,32,48,32,49,54,32,49,54,96,32,40,96,56,32,56,96,32,105,115,32,116,104,101,32,99,101,110,116,101,114,41,92,110,92,110,32,32,32,32,118,97,114,32,104,97,115,83,99,97,108,101,32,61,32,102,108,105,112,72,32,124,124,32,102,108,105,112,86,32,124,124,32,115,99,97,108,101,32,33,61,61,32,49,59,92,110,32,32,32,32,118,97,114,32,104,97,115,84,114,97,110,115,102,111,114,109,115,32,61,32,104,97,115,83,99,97,108,101,32,124,124,32,114,111,116,97,116,101,59,92,110,32,32,32,32,118,97,114,32,104,97,115,83,104,105,102,116,32,61,32,115,104,105,102,116,72,32,124,124,32,115,104,105,102,116,86,59,92,110,32,32,32,32,118,97,114,32,104,97,115,67,111,110,116,101,110,116,32,61,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,99,111,110,116,101,110,116,41,59,92,110,32,32,32,32,118,97,114,32,116,114,97,110,115,102,111,114,109,115,32,61,32,91,104,97,115,84,114,97,110,115,102,111,114,109,115,32,63,32,39,116,114,97,110,115,108,97,116,101,40,56,32,56,41,39,32,58,32,110,117,108,108,44,32,104,97,115,83,99,97,108,101,32,63,32,92,34,115,99,97,108,101,40,92,34,46,99,111,110,99,97,116,40,40,102,108,105,112,72,32,63,32,45,49,32,58,32,49,41,32,42,32,115,99,97,108,101,44,32,92,34,32,92,34,41,46,99,111,110,99,97,116,40,40,102,108,105,112,86,32,63,32,45,49,32,58,32,49,41,32,42,32,115,99,97,108,101,44,32,92,34,41,92,34,41,32,58,32,110,117,108,108,44,32,114,111,116,97,116,101,32,63,32,92,34,114,111,116,97,116,101,40,92,34,46,99,111,110,99,97,116,40,114,111,116,97,116,101,44,32,92,34,41,92,34,41,32,58,32,110,117,108,108,44,32,104,97,115,84,114,97,110,115,102,111,114,109,115,32,63,32,39,116,114,97,110,115,108,97,116,101,40,45,56,32,45,56,41,39,32,58,32,110,117,108,108,93,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,100,101,110,116,105,116,121,41,59,32,47,47,32,87,101,32,119,114,97,112,32,116,104,101,32,99,111,110,116,101,110,116,32,105,110,32,97,32,96,60,103,62,96,32,102,111,114,32,104,97,110,100,108,105,110,103,32,116,104,101,32,116,114,97,110,115,102,111,114,109,115,32,40,101,120,99,101,112,116,32,115,104,105,102,116,41,92,110,92,110,32,32,32,32,118,97,114,32,36,105,110,110,101,114,32,61,32,104,40,39,103,39,44,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,102,111,114,109,115,46,106,111,105,110,40,39,32,39,41,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,104,97,115,67,111,110,116,101,110,116,32,63,32,123,92,110,32,32,32,32,32,32,32,32,105,110,110,101,114,72,84,77,76,58,32,99,111,110,116,101,110,116,32,124,124,32,39,39,92,110,32,32,32,32,32,32,125,32,58,32,123,125,92,110,32,32,32,32,125,44,32,99,104,105,108,100,114,101,110,41,59,32,47,47,32,73,102,32,110,101,101,100,101,100,44,32,119,101,32,119,114,97,112,32,105,110,32,97,110,32,97,100,100,105,116,105,111,110,97,108,32,96,60,103,62,96,32,105,110,32,111,114,100,101,114,32,116,111,32,104,97,110,100,108,101,32,116,104,101,32,115,104,105,102,116,105,110,103,92,110,92,110,32,32,32,32,105,102,32,40,104,97,115,83,104,105,102,116,41,32,123,92,110,32,32,32,32,32,32,36,105,110,110,101,114,32,61,32,104,40,39,103,39,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,114,97,110,115,102,111,114,109,58,32,92,34,116,114,97,110,115,108,97,116,101,40,92,34,46,99,111,110,99,97,116,40,49,54,32,42,32,115,104,105,102,116,72,32,47,32,49,54,44,32,92,34,32,92,34,41,46,99,111,110,99,97,116,40,45,49,54,32,42,32,115,104,105,102,116,86,32,47,32,49,54,44,32,92,34,41,92,34,41,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,36,105,110,110,101,114,93,41,59,92,110,32,32,32,32,125,32,47,47,32,87,114,97,112,32,105,110,32,97,110,32,97,100,100,105,116,105,111,110,97,108,32,96,60,103,62,96,32,102,111,114,32,112,114,111,112,101,114,32,97,110,105,109,97,116,105,111,110,32,104,97,110,100,108,105,110,103,32,105,102,32,115,116,97,99,107,101,100,92,110,92,110,92,110,32,32,32,32,105,102,32,40,115,116,97,99,107,101,100,41,32,123,92,110,32,32,32,32,32,32,36,105,110,110,101,114,32,61,32,104,40,39,103,39,44,32,91,36,105,110,110,101,114,93,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,36,116,105,116,108,101,32,61,32,116,105,116,108,101,32,63,32,104,40,39,116,105,116,108,101,39,44,32,116,105,116,108,101,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,91,36,116,105,116,108,101,44,32,36,105,110,110,101,114,93,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,115,118,103,39,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,109,101,114,103,101,68,97,116,97,41,40,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,105,99,111,110,32,98,105,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,40,95,99,108,97,115,115,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,116,101,120,116,45,92,34,46,99,111,110,99,97,116,40,118,97,114,105,97,110,116,41,44,32,118,97,114,105,97,110,116,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,99,108,97,115,115,44,32,92,34,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,92,34,46,99,111,110,99,97,116,40,97,110,105,109,97,116,105,111,110,41,44,32,97,110,105,109,97,116,105,111,110,41,44,32,95,99,108,97,115,115,41,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,66,65,83,69,95,65,84,84,82,83,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,115,116,97,99,107,101,100,32,63,32,123,125,32,58,32,123,92,110,32,32,32,32,32,32,32,32,102,111,110,116,83,105,122,101,58,32,102,111,110,116,83,99,97,108,101,32,61,61,61,32,49,32,63,32,110,117,108,108,32,58,32,92,34,92,34,46,99,111,110,99,97,116,40,102,111,110,116,83,99,97,108,101,32,42,32,49,48,48,44,32,92,34,37,92,34,41,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,47,47,32,77,101,114,103,101,32,105,110,32,117,115,101,114,32,115,117,112,112,108,105,101,100,32,100,97,116,97,92,110,32,32,32,32,100,97,116,97,44,32,47,47,32,73,102,32,105,99,111,110,32,105,115,32,115,116,97,99,107,101,100,44,32,110,117,108,108,45,111,117,116,32,115,111,109,101,32,97,116,116,114,115,92,110,32,32,32,32,115,116,97,99,107,101,100,32,63,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,83,84,65,67,75,69,68,95,65,84,84,82,83,92,110,32,32,32,32,125,32,58,32,123,125,44,32,47,47,32,84,104,101,115,101,32,99,97,110,110,111,116,32,98,101,32,111,118,101,114,114,105,100,100,101,110,32,98,121,32,117,115,101,114,115,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,120,109,108,110,115,58,32,115,116,97,99,107,101,100,32,63,32,110,117,108,108,32,58,32,39,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,39,44,92,110,32,32,32,32,32,32,32,32,102,105,108,108,58,32,39,99,117,114,114,101,110,116,67,111,108,111,114,39,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,44,32,36,99,111,110,116,101,110,116,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,104,101,108,112,101,114,115,47,105,99,111,110,45,98,97,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,104,101,108,112,101,114,115,47,109,97,107,101,45,105,99,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,104,101,108,112,101,114,115,47,109,97,107,101,45,105,99,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,107,101,73,99,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,107,101,73,99,111,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,95,98,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,99,111,110,45,98,97,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,104,101,108,112,101,114,115,47,105,99,111,110,45,98,97,115,101,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,47,42,42,92,110,32,42,32,73,99,111,110,32,99,111,109,112,111,110,101,110,116,32,103,101,110,101,114,97,116,111,114,32,102,117,110,99,116,105,111,110,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,105,99,111,110,32,110,97,109,101,32,40,109,105,110,117,115,32,116,104,101,32,108,101,97,100,105,110,103,32,96,66,73,99,111,110,96,41,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,114,97,119,32,96,105,110,110,101,114,72,84,77,76,96,32,102,111,114,32,83,86,71,92,110,32,42,32,64,114,101,116,117,114,110,32,123,86,117,101,67,111,109,112,111,110,101,110,116,125,92,110,32,42,47,92,110,92,110,118,97,114,32,109,97,107,101,73,99,111,110,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,73,99,111,110,40,110,97,109,101,44,32,99,111,110,116,101,110,116,41,32,123,92,110,32,32,47,47,32,70,111,114,32,112,101,114,102,111,114,109,97,110,99,101,32,114,101,97,115,111,110,32,119,101,32,112,114,101,45,99,111,109,112,117,116,101,32,115,111,109,101,32,118,97,108,117,101,115,44,32,115,111,32,116,104,97,116,92,110,32,32,47,47,32,116,104,101,121,32,97,114,101,32,110,111,116,32,99,111,109,112,117,116,101,100,32,111,110,32,101,97,99,104,32,114,101,110,100,101,114,32,111,102,32,116,104,101,32,105,99,111,110,32,99,111,109,112,111,110,101,110,116,92,110,32,32,118,97,114,32,107,101,98,97,98,78,97,109,101,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,107,101,98,97,98,67,97,115,101,41,40,110,97,109,101,41,59,92,110,32,32,118,97,114,32,105,99,111,110,78,97,109,101,32,61,32,92,34,66,73,99,111,110,92,34,46,99,111,110,99,97,116,40,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,97,115,99,97,108,67,97,115,101,41,40,110,97,109,101,41,41,59,92,110,32,32,118,97,114,32,105,99,111,110,78,97,109,101,67,108,97,115,115,32,61,32,92,34,98,105,45,92,34,46,99,111,110,99,97,116,40,107,101,98,97,98,78,97,109,101,41,59,92,110,32,32,118,97,114,32,105,99,111,110,84,105,116,108,101,32,61,32,107,101,98,97,98,78,97,109,101,46,114,101,112,108,97,99,101,40,47,45,47,103,44,32,39,32,39,41,59,92,110,32,32,118,97,114,32,115,118,103,67,111,110,116,101,110,116,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,114,105,109,41,40,99,111,110,116,101,110,116,32,124,124,32,39,39,41,59,92,110,32,32,114,101,116,117,114,110,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,32,32,110,97,109,101,58,32,105,99,111,110,78,97,109,101,44,92,110,32,32,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,32,32,112,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,111,109,105,116,41,40,95,105,99,111,110,95,98,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,44,32,91,39,99,111,110,116,101,110,116,39,93,41,44,92,110,32,32,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,95,105,99,111,110,95,98,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,86,73,99,111,110,66,97,115,101,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,101,114,103,101,68,97,116,97,41,40,32,47,47,32,68,101,102,97,117,108,116,115,92,110,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,105,99,111,110,84,105,116,108,101,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,105,99,111,110,84,105,116,108,101,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,47,47,32,85,115,101,114,32,100,97,116,97,92,110,32,32,32,32,32,32,100,97,116,97,44,32,47,47,32,82,101,113,117,105,114,101,100,32,100,97,116,97,92,110,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,105,99,111,110,78,97,109,101,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,58,32,115,118,103,67,111,110,116,101,110,116,92,110,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,104,101,108,112,101,114,115,47,109,97,107,101,45,105,99,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,99,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,105,99,111,110,95,98,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,105,99,111,110,45,98,97,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,104,101,108,112,101,114,115,47,105,99,111,110,45,98,97,115,101,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,92,110,118,97,114,32,102,105,110,100,73,99,111,110,67,111,109,112,111,110,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,102,105,110,100,73,99,111,110,67,111,109,112,111,110,101,110,116,40,99,116,120,44,32,105,99,111,110,78,97,109,101,41,32,123,92,110,32,32,105,102,32,40,33,99,116,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,111,109,112,111,110,101,110,116,115,32,61,32,40,99,116,120,46,36,111,112,116,105,111,110,115,32,124,124,32,123,125,41,46,99,111,109,112,111,110,101,110,116,115,59,92,110,32,32,118,97,114,32,105,99,111,110,67,111,109,112,111,110,101,110,116,32,61,32,99,111,109,112,111,110,101,110,116,115,91,105,99,111,110,78,97,109,101,93,59,92,110,32,32,114,101,116,117,114,110,32,105,99,111,110,67,111,109,112,111,110,101,110,116,32,124,124,32,102,105,110,100,73,99,111,110,67,111,109,112,111,110,101,110,116,40,99,116,120,46,36,112,97,114,101,110,116,44,32,105,99,111,110,78,97,109,101,41,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,105,99,111,110,80,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,111,109,105,116,41,40,95,104,101,108,112,101,114,115,95,105,99,111,110,95,98,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,112,115,44,32,91,39,99,111,110,116,101,110,116,39,93,41,59,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,105,99,111,110,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,105,99,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,73,67,79,78,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,72,101,108,112,101,114,32,66,73,99,111,110,32,99,111,109,112,111,110,101,110,116,92,110,47,47,32,82,101,113,117,105,114,101,115,32,116,104,101,32,114,101,113,117,101,115,116,101,100,32,105,99,111,110,32,99,111,109,112,111,110,101,110,116,32,116,111,32,98,101,32,105,110,115,116,97,108,108,101,100,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,73,99,111,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,78,65,77,69,95,73,67,79,78,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,95,114,101,102,46,112,97,114,101,110,116,59,92,110,32,32,32,32,118,97,114,32,105,99,111,110,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,97,115,99,97,108,67,97,115,101,41,40,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,114,105,109,41,40,112,114,111,112,115,46,105,99,111,110,32,124,124,32,39,39,41,41,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,82,88,95,73,67,79,78,95,80,82,69,70,73,88,44,32,39,39,41,59,32,47,47,32,73,102,32,112,97,114,101,110,116,32,99,111,110,116,101,120,116,32,101,120,105,115,116,115,44,32,119,101,32,99,104,101,99,107,32,116,111,32,115,101,101,32,105,102,32,116,104,101,32,105,99,111,110,32,104,97,115,32,98,101,101,110,32,114,101,103,105,115,116,101,114,101,100,92,110,32,32,32,32,47,47,32,101,105,116,104,101,114,32,108,111,99,97,108,108,121,32,105,110,32,116,104,101,32,112,97,114,101,110,116,32,99,111,109,112,111,110,101,110,116,44,32,111,114,32,103,108,111,98,97,108,108,121,32,97,116,32,116,104,101,32,96,36,114,111,111,116,96,32,108,101,118,101,108,92,110,32,32,32,32,47,47,32,73,102,32,110,111,116,32,114,101,103,105,115,116,101,114,101,100,44,32,119,101,32,114,101,110,100,101,114,32,97,32,98,108,97,110,107,32,105,99,111,110,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,105,99,111,110,32,63,32,102,105,110,100,73,99,111,110,67,111,109,112,111,110,101,110,116,40,112,97,114,101,110,116,44,32,92,34,66,73,99,111,110,92,34,46,99,111,110,99,97,116,40,105,99,111,110,41,41,32,124,124,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,73,99,111,110,66,108,97,110,107,32,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,73,99,111,110,66,108,97,110,107,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,108,117,99,107,80,114,111,112,115,41,40,105,99,111,110,80,114,111,112,115,44,32,112,114,111,112,115,41,92,110,32,32,32,32,125,41,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,97,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,108,97,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,97,114,109,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,108,97,114,109,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,105,103,110,66,111,116,116,111,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,108,105,103,110,66,111,116,116,111,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,105,103,110,67,101,110,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,108,105,103,110,67,101,110,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,105,103,110,69,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,108,105,103,110,69,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,105,103,110,77,105,100,100,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,108,105,103,110,77,105,100,100,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,105,103,110,83,116,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,108,105,103,110,83,116,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,105,103,110,84,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,108,105,103,110,84,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,112,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,112,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,112,112,73,110,100,105,99,97,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,112,112,73,110,100,105,99,97,116,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,99,104,105,118,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,99,104,105,118,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,99,104,105,118,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,99,104,105,118,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,66,97,114,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,66,97,114,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,66,97,114,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,66,97,114,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,66,97,114,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,66,97,114,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,66,97,114,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,66,97,114,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,67,108,111,99,107,119,105,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,67,108,111,99,107,119,105,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,67,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,67,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,104,111,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,104,111,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,76,101,102,116,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,104,111,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,104,111,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,101,112,101,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,82,101,112,101,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,104,111,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,104,111,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,83,104,111,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,83,104,111,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,67,111,110,116,114,97,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,67,111,110,116,114,97,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,69,120,112,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,69,120,112,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,115,67,111,108,108,97,112,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,115,67,111,108,108,97,112,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,115,69,120,112,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,115,69,120,112,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,115,70,117,108,108,115,99,114,101,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,115,70,117,108,108,115,99,114,101,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,115,77,111,118,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,114,114,111,119,115,77,111,118,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,115,116,101,114,105,115,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,115,116,101,114,105,115,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,119,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,119,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,119,97,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,65,119,97,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,99,107,115,112,97,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,99,107,115,112,97,99,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,99,107,115,112,97,99,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,99,107,115,112,97,99,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,52,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,100,103,101,52,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,52,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,100,103,101,52,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,56,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,100,103,101,56,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,56,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,100,103,101,56,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,65,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,100,103,101,65,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,65,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,100,103,101,65,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,67,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,100,103,101,67,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,67,99,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,100,103,101,67,99,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,72,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,100,103,101,72,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,72,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,100,103,101,72,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,84,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,100,103,101,84,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,84,109,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,100,103,101,84,109,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,86,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,100,103,101,86,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,86,111,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,100,103,101,86,111,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,103,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,103,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,68,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,103,68,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,68,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,103,68,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,103,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,103,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,103,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,103,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,114,67,104,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,114,67,104,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,114,67,104,97,114,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,114,67,104,97,114,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,114,67,104,97,114,116,83,116,101,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,114,67,104,97,114,116,83,116,101,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,115,107,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,115,107,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,115,107,101,116,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,115,107,101,116,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,115,107,101,116,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,115,107,101,116,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,115,107,101,116,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,115,107,101,116,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,115,107,101,116,51,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,115,107,101,116,51,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,115,107,101,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,115,107,101,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,116,116,101,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,116,116,101,114,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,116,116,101,114,121,67,104,97,114,103,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,116,116,101,114,121,67,104,97,114,103,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,116,116,101,114,121,70,117,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,116,116,101,114,121,70,117,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,116,116,101,114,121,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,97,116,116,101,114,121,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,101,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,101,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,101,108,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,101,108,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,101,122,105,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,101,122,105,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,101,122,105,101,114,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,101,122,105,101,114,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,105,99,121,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,105,99,121,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,108,97,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,108,97,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,109,97,114,107,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,115,104,101,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,107,115,104,101,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,116,115,116,114,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,116,115,116,114,97,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,116,115,116,114,97,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,116,115,116,114,97,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,116,115,116,114,97,112,82,101,98,111,111,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,111,116,115,116,114,97,112,82,101,98,111,111,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,114,100,101,114,83,116,121,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,114,100,101,114,83,116,121,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,114,100,101,114,87,105,100,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,114,100,101,114,87,105,100,116,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,67,105,114,99,108,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,67,105,114,99,108,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,83,101,97,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,111,120,83,101,97,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,97,99,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,97,99,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,99,107,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,105,99,107,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,101,102,99,97,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,105,101,102,99,97,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,101,102,99,97,115,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,105,101,102,99,97,115,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,111,97,100,99,97,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,111,97,100,99,97,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,111,97,100,99,97,115,116,80,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,111,97,100,99,97,115,116,80,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,117,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,117,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,117,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,114,117,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,117,99,107,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,117,99,107,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,117,99,107,101,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,117,99,107,101,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,117,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,117,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,117,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,117,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,117,105,108,100,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,117,105,108,100,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,117,108,108,115,101,121,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,66,117,108,108,115,101,121,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,52,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,52,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,52,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,52,69,118,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,52,82,97,110,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,52,82,97,110,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,52,87,101,101,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,52,87,101,101,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,108,101,110,100,97,114,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,109,101,114,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,109,101,114,97,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,109,101,114,97,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,112,115,108,111,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,112,115,108,111,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,112,115,108,111,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,112,115,108,111,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,100,67,104,101,99,107,108,105,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,100,67,104,101,99,107,108,105,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,100,72,101,97,100,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,100,72,101,97,100,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,100,73,109,97,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,100,73,109,97,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,100,76,105,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,100,76,105,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,100,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,100,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,68,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,68,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,76,101,102,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,76,101,102,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,85,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,85,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,116,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,116,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,52,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,116,52,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,116,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,116,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,68,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,116,68,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,68,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,116,68,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,116,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,116,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,116,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,114,116,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,115,104,83,116,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,115,104,83,116,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,97,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,68,111,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,68,111,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,68,111,116,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,68,111,116,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,76,101,102,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,81,117,111,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,81,117,111,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,81,117,111,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,81,117,111,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,84,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,97,116,84,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,99,107,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,50,65,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,99,107,50,65,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,50,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,99,107,50,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,50,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,99,107,50,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,65,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,99,107,65,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,67,111,110,116,114,97,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,67,111,110,116,114,97,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,69,120,112,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,69,120,112,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,67,111,110,116,114,97,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,67,111,110,116,114,97,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,69,120,112,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,69,120,112,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,104,101,118,114,111,110,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,105,114,99,108,101,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,105,114,99,108,101,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,105,114,99,108,101,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,105,114,99,108,101,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,105,112,98,111,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,105,112,98,111,97,114,100,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,105,112,98,111,97,114,100,68,97,116,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,68,97,116,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,105,112,98,111,97,114,100,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,105,112,98,111,97,114,100,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,105,112,98,111,97,114,100,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,99,107,72,105,115,116,111,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,99,107,72,105,115,116,111,114,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,111,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,100,101,83,108,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,111,100,101,83,108,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,100,101,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,111,100,101,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,108,117,109,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,111,108,117,109,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,108,117,109,110,115,71,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,111,108,117,109,110,115,71,97,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,109,109,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,111,109,109,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,109,112,97,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,111,109,112,97,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,109,112,97,115,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,111,109,112,97,115,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,111,110,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,110,101,83,116,114,105,112,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,111,110,101,83,116,114,105,112,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,110,116,114,111,108,108,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,111,110,116,114,111,108,108,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,112,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,112,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,112,117,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,112,117,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,114,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,114,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,117,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,117,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,117,112,83,116,114,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,117,112,83,116,114,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,117,114,115,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,117,114,115,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,117,114,115,111,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,117,114,115,111,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,117,114,115,111,114,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,67,117,114,115,111,114,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,97,103,114,97,109,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,97,103,114,97,109,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,97,103,114,97,109,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,97,103,114,97,109,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,97,103,114,97,109,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,97,103,114,97,109,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,97,103,114,97,109,51,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,97,103,114,97,109,51,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,97,109,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,97,109,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,97,109,111,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,97,109,111,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,97,109,111,110,100,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,97,109,111,110,100,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,99,101,49,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,49,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,99,101,49,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,99,101,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,99,101,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,99,101,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,51,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,99,101,51,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,52,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,99,101,52,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,52,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,99,101,52,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,53,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,99,101,53,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,53,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,99,101,53,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,54,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,99,101,54,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,54,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,99,101,54,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,115,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,115,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,115,99,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,115,99,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,115,99,111,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,115,99,111,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,115,112,108,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,115,112,108,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,115,112,108,97,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,115,112,108,97,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,72,111,114,105,122,111,110,116,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,72,111,114,105,122,111,110,116,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,86,101,114,116,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,86,101,114,116,105,99,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,111,111,114,79,112,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,111,111,114,79,112,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,111,111,114,79,112,101,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,111,111,114,79,112,101,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,111,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,111,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,111,119,110,108,111,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,111,119,110,108,111,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,114,111,112,108,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,114,111,112,108,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,114,111,112,108,101,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,114,111,112,108,101,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,114,111,112,108,101,116,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,68,114,111,112,108,101,116,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,97,114,98,117,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,97,114,98,117,100,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,97,115,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,97,115,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,97,115,101,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,97,115,101,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,103,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,103,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,103,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,103,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,103,103,70,114,105,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,103,103,70,114,105,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,106,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,106,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,106,101,99,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,106,101,99,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,87,105,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,87,105,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,87,105,110,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,109,111,106,105,87,105,110,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,110,118,101,108,111,112,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,110,118,101,108,111,112,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,110,118,101,108,111,112,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,110,118,101,108,111,112,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,117,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,120,99,108,117,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,121,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,121,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,121,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,121,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,121,101,83,108,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,121,101,83,108,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,121,101,83,108,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,121,101,83,108,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,121,101,103,108,97,115,115,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,69,121,101,103,108,97,115,115,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,97,99,101,98,111,111,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,97,99,101,98,111,111,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,66,114,101,97,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,66,114,101,97,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,66,114,101,97,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,66,114,101,97,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,67,111,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,67,111,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,67,111,100,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,67,111,100,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,68,105,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,68,105,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,68,105,102,102,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,68,105,102,102,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,115,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,115,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,115,101,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,97,115,101,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,120,99,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,120,99,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,120,99,101,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,69,120,99,101,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,70,111,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,70,111,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,70,111,110,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,70,111,110,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,73,109,97,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,73,109,97,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,73,109,97,103,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,73,109,97,103,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,76,111,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,76,111,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,76,111,99,107,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,76,111,99,107,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,76,111,99,107,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,76,111,99,107,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,76,111,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,76,111,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,77,117,115,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,77,117,115,105,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,77,117,115,105,99,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,77,117,115,105,99,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,108,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,80,108,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,108,97,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,80,108,97,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,111,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,80,111,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,111,115,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,80,111,115,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,112,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,80,112,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,112,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,80,112,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,82,117,108,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,82,117,108,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,82,117,108,101,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,82,117,108,101,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,84,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,84,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,87,111,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,87,111,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,87,111,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,87,111,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,90,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,90,105,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,90,105,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,90,105,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,115,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,101,115,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,116,101,114,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,116,101,114,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,116,101,114,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,116,101,114,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,108,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,108,97,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,108,97,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,108,97,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,108,111,119,101,114,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,108,111,119,101,114,49,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,108,111,119,101,114,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,108,111,119,101,114,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,108,111,119,101,114,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,108,111,119,101,114,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,111,108,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,111,108,100,101,114,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,50,79,112,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,111,108,100,101,114,50,79,112,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,111,108,100,101,114,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,111,108,100,101,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,111,108,100,101,114,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,111,108,100,101,114,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,111,108,100,101,114,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,110,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,111,110,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,114,119,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,111,114,119,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,114,119,97,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,111,114,119,97,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,114,111,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,114,111,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,69,120,105,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,69,120,105,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,117,110,110,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,117,110,110,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,117,110,110,101,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,70,117,110,110,101,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,101,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,97,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,101,97,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,97,114,87,105,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,101,97,114,87,105,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,97,114,87,105,100,101,67,111,110,110,101,99,116,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,101,97,114,87,105,100,101,67,111,110,110,101,99,116,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,101,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,101,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,111,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,101,111,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,111,65,108,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,101,111,65,108,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,111,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,101,111,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,105,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,105,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,105,102,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,105,102,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,105,116,104,117,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,105,116,104,117,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,108,111,98,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,108,111,98,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,108,111,98,101,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,108,111,98,101,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,111,111,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,111,111,103,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,97,112,104,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,114,97,112,104,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,97,112,104,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,114,97,112,104,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,114,105,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,49,120,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,114,105,100,49,120,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,49,120,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,114,105,100,49,120,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,51,120,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,114,105,100,51,120,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,51,120,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,114,105,100,51,120,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,114,105,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,112,72,111,114,105,122,111,110,116,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,114,105,112,72,111,114,105,122,111,110,116,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,112,86,101,114,116,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,71,114,105,112,86,101,114,116,105,99,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,109,109,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,97,109,109,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,110,100,73,110,100,101,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,97,110,100,73,110,100,101,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,110,100,73,110,100,101,120,84,104,117,109,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,97,110,100,73,110,100,101,120,84,104,117,109,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,110,100,98,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,97,110,100,98,97,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,110,100,98,97,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,97,110,100,98,97,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,100,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,100,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,82,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,100,100,82,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,82,97,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,100,100,82,97,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,83,116,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,100,100,83,116,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,83,116,97,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,100,100,83,116,97,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,97,100,112,104,111,110,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,101,97,100,112,104,111,110,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,97,100,115,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,101,97,100,115,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,101,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,97,114,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,101,97,114,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,97,114,116,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,101,97,114,116,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,112,116,97,103,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,101,112,116,97,103,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,112,116,97,103,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,101,112,116,97,103,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,112,116,97,103,111,110,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,101,112,116,97,103,111,110,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,120,97,103,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,101,120,97,103,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,120,97,103,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,101,120,97,103,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,120,97,103,111,110,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,101,120,97,103,111,110,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,114,103,108,97,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,111,117,114,103,108,97,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,114,103,108,97,115,115,66,111,116,116,111,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,111,117,114,103,108,97,115,115,66,111,116,116,111,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,114,103,108,97,115,115,83,112,108,105,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,111,117,114,103,108,97,115,115,83,112,108,105,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,114,103,108,97,115,115,84,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,111,117,114,103,108,97,115,115,84,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,111,117,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,115,101,68,111,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,111,117,115,101,68,111,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,115,101,68,111,111,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,111,117,115,101,68,111,111,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,115,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,111,117,115,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,72,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,109,97,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,109,97,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,109,97,103,101,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,109,97,103,101,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,109,97,103,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,109,97,103,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,109,97,103,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,109,97,103,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,98,111,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,110,98,111,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,98,111,120,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,110,98,111,120,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,98,111,120,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,110,98,111,120,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,98,111,120,101,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,110,98,111,120,101,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,102,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,110,102,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,115,116,97,103,114,97,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,110,115,116,97,103,114,97,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,116,101,114,115,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,73,110,116,101,114,115,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,117,114,110,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,65,108,98,117,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,117,114,110,97,108,65,108,98,117,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,117,114,110,97,108,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,67,111,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,117,114,110,97,108,67,111,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,77,101,100,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,117,114,110,97,108,77,101,100,105,99,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,117,114,110,97,108,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,117,114,110,97,108,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,82,105,99,104,116,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,117,114,110,97,108,82,105,99,104,116,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,117,114,110,97,108,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,117,114,110,97,108,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,117,114,110,97,108,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,121,115,116,105,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,111,121,115,116,105,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,117,115,116,105,102,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,117,115,116,105,102,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,117,115,116,105,102,121,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,117,115,116,105,102,121,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,117,115,116,105,102,121,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,74,117,115,116,105,102,121,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,75,97,110,98,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,75,97,110,98,97,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,75,97,110,98,97,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,75,97,110,98,97,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,75,101,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,75,101,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,75,101,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,75,101,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,75,101,121,98,111,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,75,101,121,98,111,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,75,101,121,98,111,97,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,75,101,121,98,111,97,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,100,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,100,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,109,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,109,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,109,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,109,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,112,116,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,112,116,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,112,116,111,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,112,116,111,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,101,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,121,101,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,101,114,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,121,101,114,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,101,114,115,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,121,101,114,115,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,82,101,118,101,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,82,101,118,101,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,83,112,108,105,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,121,111,117,116,83,112,108,105,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,82,101,118,101,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,82,101,118,101,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,84,104,114,101,101,67,111,108,117,109,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,121,111,117,116,84,104,114,101,101,67,111,108,117,109,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,87,116,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,97,121,111,117,116,87,116,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,102,101,80,114,101,115,101,114,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,105,102,101,80,114,101,115,101,114,118,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,103,104,116,110,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,105,103,104,116,110,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,103,104,116,110,105,110,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,105,103,104,116,110,105,110,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,105,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,110,107,52,53,100,101,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,105,110,107,52,53,100,101,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,110,107,101,100,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,105,110,107,101,100,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,105,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,115,116,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,105,115,116,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,115,116,78,101,115,116,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,105,115,116,78,101,115,116,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,115,116,79,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,105,115,116,79,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,115,116,83,116,97,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,105,115,116,83,116,97,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,115,116,84,97,115,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,105,115,116,84,97,115,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,115,116,85,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,105,115,116,85,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,111,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,111,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,111,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,76,111,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,97,105,108,98,111,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,97,105,108,98,111,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,97,105,108,98,111,120,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,97,105,108,98,111,120,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,97,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,97,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,97,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,97,114,107,100,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,97,114,107,100,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,97,114,107,100,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,97,114,107,100,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,65,112,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,101,110,117,65,112,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,65,112,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,101,110,117,65,112,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,101,110,117,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,101,110,117,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,105,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,105,99,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,105,99,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,105,99,77,117,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,105,99,77,117,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,105,99,77,117,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,105,99,77,117,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,105,110,101,99,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,105,110,101,99,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,105,110,101,99,97,114,116,76,111,97,100,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,105,110,101,99,97,114,116,76,111,97,100,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,111,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,111,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,111,117,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,111,117,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,111,117,115,101,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,111,117,115,101,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,111,117,115,101,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,111,117,115,101,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,117,115,105,99,78,111,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,117,115,105,99,78,111,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,117,115,105,99,78,111,116,101,66,101,97,109,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,117,115,105,99,78,111,116,101,66,101,97,109,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,117,115,105,99,78,111,116,101,76,105,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,117,115,105,99,78,111,116,101,76,105,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,78,101,119,115,112,97,112,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,78,101,119,115,112,97,112,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,78,111,100,101,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,78,111,100,101,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,78,111,100,101,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,78,111,100,101,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,78,111,100,101,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,78,111,100,101,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,78,111,100,101,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,78,111,100,101,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,78,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,78,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,78,117,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,78,117,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,79,99,116,97,103,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,79,99,116,97,103,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,79,99,116,97,103,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,79,99,116,97,103,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,79,99,116,97,103,111,110,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,79,99,116,97,103,111,110,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,79,112,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,79,112,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,79,117,116,108,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,79,117,116,108,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,112,101,114,99,108,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,112,101,114,99,108,105,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,114,97,103,114,97,112,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,114,97,103,114,97,112,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,116,99,104,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,116,99,104,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,117,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,117,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,117,115,101,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,117,115,101,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,117,115,101,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,117,115,101,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,117,115,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,97,117,115,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,97,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,97,99,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,97,99,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,97,99,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,99,105,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,110,99,105,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,99,105,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,110,99,105,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,99,105,108,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,110,99,105,108,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,116,97,103,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,110,116,97,103,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,116,97,103,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,110,116,97,103,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,116,97,103,111,110,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,110,116,97,103,111,110,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,111,112,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,111,112,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,111,112,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,111,112,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,99,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,99,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,66,111,117,110,100,105,110,103,66,111,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,66,111,117,110,100,105,110,103,66,111,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,76,105,110,101,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,76,105,110,101,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,101,114,115,111,110,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,104,111,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,104,111,110,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,104,111,110,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,104,111,110,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,104,111,110,101,86,105,98,114,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,104,111,110,101,86,105,98,114,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,105,101,67,104,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,105,101,67,104,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,105,101,67,104,97,114,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,105,101,67,104,97,114,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,105,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,105,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,105,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,108,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,97,121,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,108,97,121,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,97,121,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,108,97,121,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,97,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,108,97,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,117,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,108,117,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,117,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,108,117,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,111,119,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,111,119,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,114,105,110,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,114,105,110,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,114,105,110,116,101,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,114,105,110,116,101,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,117,122,122,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,117,122,122,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,117,122,122,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,80,117,122,122,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,81,117,101,115,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,101,105,112,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,99,101,105,112,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,101,105,112,116,67,117,116,111,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,99,101,105,112,116,67,117,116,111,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,101,112,116,105,111,110,48,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,99,101,112,116,105,111,110,48,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,101,112,116,105,111,110,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,99,101,112,116,105,111,110,49,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,101,112,116,105,111,110,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,99,101,112,116,105,111,110,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,101,112,116,105,111,110,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,99,101,112,116,105,111,110,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,101,112,116,105,111,110,52,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,99,101,112,116,105,111,110,52,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,99,111,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,99,111,114,100,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,99,111,114,100,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,99,111,114,100,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,99,111,114,100,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,99,111,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,112,108,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,112,108,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,112,108,121,65,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,112,108,121,65,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,112,108,121,65,108,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,112,108,121,65,108,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,112,108,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,101,112,108,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,115,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,82,115,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,99,105,115,115,111,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,99,105,115,115,111,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,99,114,101,119,100,114,105,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,99,114,101,119,100,114,105,118,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,101,97,114,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,101,97,114,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,101,103,109,101,110,116,101,100,78,97,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,101,103,109,101,110,116,101,100,78,97,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,101,114,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,101,114,118,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,69,120,99,108,97,109,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,69,120,99,108,97,109,97,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,69,120,99,108,97,109,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,69,120,99,108,97,109,97,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,83,104,97,100,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,83,104,97,100,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,101,108,100,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,102,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,105,102,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,111,112,87,105,110,100,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,111,112,87,105,110,100,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,117,102,102,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,104,117,102,102,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,103,110,112,111,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,105,103,110,112,111,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,103,110,112,111,115,116,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,105,103,110,112,111,115,116,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,103,110,112,111,115,116,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,105,103,110,112,111,115,116,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,103,110,112,111,115,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,105,103,110,112,111,115,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,105,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,109,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,105,109,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,69,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,69,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,69,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,69,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,83,116,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,83,116,97,114,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,108,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,108,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,108,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,108,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,108,105,100,101,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,108,105,100,101,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,109,97,114,116,119,97,116,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,109,97,114,116,119,97,116,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,111,114,116,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,68,111,119,110,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,111,114,116,68,111,119,110,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,111,114,116,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,85,112,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,111,114,116,85,112,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,117,110,100,119,97,118,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,111,117,110,100,119,97,118,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,112,101,97,107,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,112,101,97,107,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,112,101,97,107,101,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,112,101,97,107,101,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,112,101,108,108,99,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,112,101,108,108,99,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,113,117,97,114,101,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,113,117,97,114,101,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,97,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,97,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,97,114,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,97,114,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,105,99,107,105,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,105,99,107,105,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,105,99,107,105,101,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,105,99,107,105,101,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,105,99,107,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,105,99,107,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,105,99,107,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,105,99,107,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,111,112,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,111,112,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,111,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,119,97,116,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,111,112,119,97,116,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,119,97,116,99,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,116,111,112,119,97,116,99,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,98,116,114,97,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,117,98,116,114,97,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,67,108,117,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,117,105,116,67,108,117,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,67,108,117,98,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,117,105,116,67,108,117,98,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,72,101,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,117,105,116,72,101,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,72,101,97,114,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,117,105,116,72,101,97,114,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,83,112,97,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,117,105,116,83,112,97,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,83,112,97,100,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,117,105,116,83,112,97,100,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,117,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,110,103,108,97,115,115,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,83,117,110,103,108,97,115,115,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,97,98,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,98,108,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,97,98,108,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,98,108,101,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,97,98,108,101,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,97,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,97,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,103,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,97,103,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,103,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,97,103,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,114,109,105,110,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,114,109,105,110,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,114,109,105,110,97,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,114,109,105,110,97,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,67,101,110,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,120,116,67,101,110,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,120,116,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,80,97,114,97,103,114,97,112,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,120,116,80,97,114,97,103,114,97,112,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,120,116,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,97,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,120,116,97,114,101,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,97,114,101,97,82,101,115,105,122,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,120,116,97,114,101,97,82,101,115,105,122,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,97,114,101,97,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,101,120,116,97,114,101,97,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,104,114,101,101,68,111,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,104,114,101,101,68,111,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,104,114,101,101,68,111,116,115,86,101,114,116,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,104,114,101,101,68,111,116,115,86,101,114,116,105,99,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,111,103,103,108,101,50,79,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,111,103,103,108,101,50,79,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,111,103,103,108,101,50,79,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,111,103,103,108,101,50,79,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,111,103,103,108,101,79,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,111,103,103,108,101,79,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,111,103,103,108,101,79,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,111,103,103,108,101,79,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,111,103,103,108,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,111,103,103,108,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,111,103,103,108,101,115,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,111,103,103,108,101,115,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,111,111,108,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,111,111,108,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,114,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,97,115,104,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,114,97,115,104,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,97,115,104,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,114,97,115,104,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,114,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,101,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,114,101,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,101,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,114,101,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,105,97,110,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,114,105,97,110,103,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,105,97,110,103,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,114,105,97,110,103,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,105,97,110,103,108,101,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,114,105,97,110,103,108,101,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,111,112,104,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,114,111,112,104,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,111,112,104,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,114,111,112,104,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,117,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,114,117,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,117,99,107,70,108,97,116,98,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,114,117,99,107,70,108,97,116,98,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,118,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,118,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,119,105,116,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,119,105,116,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,119,105,116,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,119,105,116,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,121,112,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,66,111,108,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,121,112,101,66,111,108,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,72,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,121,112,101,72,49,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,72,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,121,112,101,72,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,72,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,121,112,101,72,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,73,116,97,108,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,121,112,101,73,116,97,108,105,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,83,116,114,105,107,101,116,104,114,111,117,103,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,121,112,101,83,116,114,105,107,101,116,104,114,111,117,103,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,85,110,100,101,114,108,105,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,84,121,112,101,85,110,100,101,114,108,105,110,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,105,67,104,101,99,107,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,85,105,67,104,101,99,107,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,105,67,104,101,99,107,115,71,114,105,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,85,105,67,104,101,99,107,115,71,114,105,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,105,82,97,100,105,111,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,85,105,82,97,100,105,111,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,105,82,97,100,105,111,115,71,114,105,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,85,105,82,97,100,105,111,115,71,114,105,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,110,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,85,110,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,110,108,111,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,85,110,108,111,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,110,108,111,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,85,110,108,111,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,112,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,85,112,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,112,99,83,99,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,85,112,99,83,99,97,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,112,108,111,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,85,112,108,111,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,101,99,116,111,114,80,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,86,101,99,116,111,114,80,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,105,101,119,76,105,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,86,105,101,119,76,105,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,105,101,119,83,116,97,99,107,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,86,105,101,119,83,116,97,99,107,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,105,110,121,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,86,105,110,121,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,105,110,121,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,86,105,110,121,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,105,99,101,109,97,105,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,86,111,105,99,101,109,97,105,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,79,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,86,111,108,117,109,101,79,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,79,102,102,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,86,111,108,117,109,101,79,102,102,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,86,111,108,117,109,101,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,85,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,86,111,108,117,109,101,85,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,86,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,97,108,108,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,87,97,108,108,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,97,108,108,101,116,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,87,97,108,108,101,116,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,97,108,108,101,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,87,97,108,108,101,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,97,116,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,87,97,116,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,105,102,105,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,87,105,102,105,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,105,102,105,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,87,105,102,105,49,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,105,102,105,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,87,105,102,105,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,105,102,105,79,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,87,105,102,105,79,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,105,110,100,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,87,105,110,100,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,114,101,110,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,87,114,101,110,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,88,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,88,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,68,105,97,109,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,88,68,105,97,109,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,68,105,97,109,111,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,88,68,105,97,109,111,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,79,99,116,97,103,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,88,79,99,116,97,103,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,79,99,116,97,103,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,88,79,99,116,97,103,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,88,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,88,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,89,111,117,116,117,98,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,89,111,117,116,117,98,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,90,111,111,109,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,90,111,111,109,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,90,111,111,109,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,90,111,111,109,79,117,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,109,97,107,101,45,105,99,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,104,101,108,112,101,114,115,47,109,97,107,101,45,105,99,111,110,46,106,115,92,34,41,59,92,110,47,47,32,45,45,45,32,66,69,71,73,78,32,65,85,84,79,45,71,69,78,69,82,65,84,69,68,32,70,73,76,69,32,45,45,45,92,110,47,47,92,110,47,47,32,64,73,99,111,110,115,86,101,114,115,105,111,110,58,32,49,46,50,46,50,92,110,47,47,32,64,71,101,110,101,114,97,116,101,100,58,32,50,48,50,49,45,48,49,45,48,49,84,48,48,58,50,57,58,49,48,46,49,53,55,90,92,110,47,47,92,110,47,47,32,84,104,105,115,32,102,105,108,101,32,105,115,32,103,101,110,101,114,97,116,101,100,32,111,110,32,101,97,99,104,32,98,117,105,108,100,46,32,68,111,32,110,111,116,32,101,100,105,116,32,116,104,105,115,32,102,105,108,101,33,92,110,47,42,33,92,110,32,42,32,66,111,111,116,115,116,114,97,112,86,117,101,32,73,99,111,110,115,44,32,103,101,110,101,114,97,116,101,100,32,102,114,111,109,32,66,111,111,116,115,116,114,97,112,32,73,99,111,110,115,32,49,46,50,46,50,92,110,32,42,92,110,32,42,32,64,108,105,110,107,32,104,116,116,112,115,58,47,47,105,99,111,110,115,46,103,101,116,98,111,111,116,115,116,114,97,112,46,99,111,109,47,92,110,32,42,32,64,108,105,99,101,110,115,101,32,77,73,84,92,110,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,105,99,111,110,115,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,46,109,100,92,110,32,42,47,47,47,32,45,45,45,32,66,111,111,116,115,116,114,97,112,86,117,101,32,99,117,115,116,111,109,32,105,99,111,110,115,32,45,45,45,92,110,118,97,114,32,66,73,99,111,110,66,108,97,110,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,108,97,110,107,39,44,39,39,41,59,47,47,32,45,45,45,32,66,111,111,116,115,116,114,97,112,32,73,99,111,110,115,32,45,45,45,92,110,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,108,97,114,109,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,108,97,114,109,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,53,32,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,51,46,51,54,50,108,45,49,46,52,50,57,32,50,46,51,56,97,46,53,46,53,32,48,32,49,32,48,32,46,56,53,56,46,53,49,53,108,49,46,53,45,50,46,53,65,46,53,46,53,32,48,32,48,32,48,32,56,46,53,32,57,86,53,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,48,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,72,55,118,49,46,48,55,97,55,46,48,48,49,32,55,46,48,48,49,32,48,32,48,32,48,45,51,46,50,55,51,32,49,50,46,52,55,52,108,45,46,54,48,50,46,54,48,50,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,55,46,55,48,56,108,46,55,52,54,45,46,55,52,54,65,54,46,57,55,32,54,46,57,55,32,48,32,48,32,48,32,56,32,49,54,97,54,46,57,55,32,54,46,57,55,32,48,32,48,32,48,32,51,46,52,50,50,45,46,56,57,50,108,46,55,52,54,46,55,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,55,45,46,55,48,56,108,45,46,54,48,49,45,46,54,48,50,65,55,46,48,48,49,32,55,46,48,48,49,32,48,32,48,32,48,32,57,32,50,46,48,55,86,49,104,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,51,122,109,49,46,48,51,56,32,51,46,48,49,56,97,54,46,48,57,51,32,54,46,48,57,51,32,48,32,48,32,49,32,46,57,50,52,32,48,32,54,32,54,32,48,32,49,32,49,45,46,57,50,52,32,48,122,77,48,32,51,46,53,99,48,32,46,55,53,51,46,51,51,51,32,49,46,52,50,57,46,56,54,32,49,46,56,56,55,65,56,46,48,51,53,32,56,46,48,51,53,32,48,32,48,32,49,32,52,46,51,56,55,32,49,46,56,54,32,50,46,53,32,50,46,53,32,48,32,48,32,48,32,48,32,51,46,53,122,77,49,51,46,53,32,49,99,45,46,55,53,51,32,48,45,49,46,52,50,57,46,51,51,51,45,49,46,56,56,55,46,56,54,97,56,46,48,51,53,32,56,46,48,51,53,32,48,32,48,32,49,32,51,46,53,50,55,32,51,46,53,50,55,65,50,46,53,32,50,46,53,32,48,32,48,32,48,32,49,51,46,53,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,108,97,114,109,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,108,97,114,109,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,57,118,49,46,48,55,97,55,46,48,48,49,32,55,46,48,48,49,32,48,32,48,32,49,32,51,46,50,55,52,32,49,50,46,52,55,52,108,46,54,48,49,46,54,48,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,46,55,48,56,108,45,46,55,52,54,45,46,55,52,54,65,54,46,57,55,32,54,46,57,55,32,48,32,48,32,49,32,56,32,49,54,97,54,46,57,55,32,54,46,57,55,32,48,32,48,32,49,45,51,46,52,50,50,45,46,56,57,50,108,45,46,55,52,54,46,55,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,45,46,55,48,56,108,46,54,48,50,45,46,54,48,50,65,55,46,48,48,49,32,55,46,48,48,49,32,48,32,48,32,49,32,55,32,50,46,48,55,86,49,104,45,46,53,65,46,53,46,53,32,48,32,48,32,49,32,54,32,46,53,122,109,50,46,53,32,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,51,46,51,54,50,108,45,49,46,52,50,57,32,50,46,51,56,97,46,53,46,53,32,48,32,49,32,48,32,46,56,53,56,46,53,49,53,108,49,46,53,45,50,46,53,65,46,53,46,53,32,48,32,48,32,48,32,56,46,53,32,57,86,53,46,53,122,77,46,56,54,32,53,46,51,56,55,65,50,46,53,32,50,46,53,32,48,32,49,32,49,32,52,46,51,56,55,32,49,46,56,54,32,56,46,48,51,53,32,56,46,48,51,53,32,48,32,48,32,48,32,46,56,54,32,53,46,51,56,55,122,77,49,49,46,54,49,51,32,49,46,56,54,97,50,46,53,32,50,46,53,32,48,32,49,32,49,32,51,46,53,50,55,32,51,46,53,50,55,32,56,46,48,51,53,32,56,46,48,51,53,32,48,32,48,32,48,45,51,46,53,50,55,45,51,46,53,50,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,108,105,103,110,66,111,116,116,111,109,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,108,105,103,110,66,111,116,116,111,109,39,44,39,60,114,101,99,116,32,119,105,100,116,104,61,92,34,52,92,34,32,104,101,105,103,104,116,61,92,34,49,50,92,34,32,120,61,92,34,54,92,34,32,121,61,92,34,49,92,34,32,114,120,61,92,34,49,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,49,52,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,118,45,49,122,109,49,51,32,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,118,49,122,109,45,49,51,32,48,104,49,51,118,45,49,104,45,49,51,118,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,108,105,103,110,67,101,110,116,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,108,105,103,110,67,101,110,116,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,54,104,45,49,86,49,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,49,122,109,48,32,49,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,49,48,104,49,118,52,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,122,77,50,32,55,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,48,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,108,105,103,110,69,110,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,108,105,103,110,69,110,100,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,52,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,51,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,49,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,51,32,55,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,108,105,103,110,77,105,100,100,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,108,105,103,110,77,105,100,100,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,49,51,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,55,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,48,122,77,49,32,56,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,72,54,118,45,49,72,49,46,53,65,46,53,46,53,32,48,32,48,32,48,32,49,32,56,122,109,49,52,32,48,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,49,48,118,45,49,104,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,108,105,103,110,83,116,97,114,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,108,105,103,110,83,116,97,114,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,53,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,49,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,55,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,48,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,108,105,103,110,84,111,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,108,105,103,110,84,111,112,39,44,39,60,114,101,99,116,32,119,105,100,116,104,61,92,34,52,92,34,32,104,101,105,103,104,116,61,92,34,49,50,92,34,32,114,120,61,92,34,49,92,34,32,116,114,97,110,115,102,111,114,109,61,92,34,109,97,116,114,105,120,40,49,32,48,32,48,32,45,49,32,54,32,49,53,41,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,118,49,122,109,49,51,45,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,86,49,122,109,45,49,51,32,48,104,49,51,118,49,104,45,49,51,86,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,108,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,108,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,49,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,51,46,55,57,55,97,46,53,46,53,32,48,32,48,32,48,32,46,52,51,57,45,46,50,54,76,49,49,32,51,104,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,51,46,55,57,55,97,46,53,46,53,32,48,32,48,32,48,45,46,52,51,57,46,50,54,76,53,32,49,51,72,49,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,109,49,48,32,48,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,112,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,112,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,50,97,51,32,51,32,48,32,48,32,49,32,51,32,51,118,54,97,51,32,51,32,48,32,48,32,49,45,51,32,51,72,53,97,51,32,51,32,48,32,48,32,49,45,51,45,51,86,53,97,51,32,51,32,48,32,48,32,49,32,51,45,51,104,54,122,77,53,32,49,97,52,32,52,32,48,32,48,32,48,45,52,32,52,118,54,97,52,32,52,32,48,32,48,32,48,32,52,32,52,104,54,97,52,32,52,32,48,32,48,32,48,32,52,45,52,86,53,97,52,32,52,32,48,32,48,32,48,45,52,45,52,72,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,112,112,73,110,100,105,99,97,116,111,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,112,112,73,110,100,105,99,97,116,111,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,50,65,51,46,53,32,51,46,53,32,48,32,48,32,48,32,50,32,53,46,53,118,53,65,51,46,53,32,51,46,53,32,48,32,48,32,48,32,53,46,53,32,49,52,104,53,97,51,46,53,32,51,46,53,32,48,32,48,32,48,32,51,46,53,45,51,46,53,86,56,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,50,46,53,97,52,46,53,32,52,46,53,32,48,32,48,32,49,45,52,46,53,32,52,46,53,104,45,53,65,52,46,53,32,52,46,53,32,48,32,48,32,49,32,49,32,49,48,46,53,118,45,53,65,52,46,53,32,52,46,53,32,48,32,48,32,49,32,53,46,53,32,49,72,56,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,54,32,51,97,51,32,51,32,48,32,49,32,49,45,54,32,48,32,51,32,51,32,48,32,48,32,49,32,54,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,99,104,105,118,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,99,104,105,118,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,52,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,118,55,46,53,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,50,46,53,32,50,46,53,104,45,57,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,49,32,49,50,46,53,86,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,122,109,50,32,51,118,55,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,46,53,32,49,52,104,57,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,86,53,72,50,122,109,49,51,45,51,72,49,118,50,104,49,52,86,50,122,77,53,32,55,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,99,104,105,118,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,99,104,105,118,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,54,52,51,32,49,53,67,49,51,46,57,55,57,32,49,53,32,49,53,32,49,51,46,56,52,53,32,49,53,32,49,50,46,53,86,53,72,49,118,55,46,53,67,49,32,49,51,46,56,52,53,32,50,46,48,50,49,32,49,53,32,51,46,51,53,55,32,49,53,104,57,46,50,56,54,122,77,53,46,53,32,55,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,77,46,56,32,49,97,46,56,46,56,32,48,32,48,32,48,45,46,56,46,56,86,51,97,46,56,46,56,32,48,32,48,32,48,32,46,56,46,56,104,49,52,46,52,65,46,56,46,56,32,48,32,48,32,48,32,49,54,32,51,86,49,46,56,97,46,56,46,56,32,48,32,48,32,48,45,46,56,45,46,56,72,46,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,57,48,100,101,103,68,111,119,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,52,46,56,53,52,32,49,52,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,76,52,32,49,51,46,50,57,51,86,51,46,53,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,54,46,53,32,49,104,56,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,56,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,32,51,46,53,118,57,46,55,57,51,108,51,46,49,52,54,45,51,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,52,32,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,57,48,100,101,103,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,49,52,54,32,52,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,52,45,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,50,46,55,48,55,32,52,72,49,50,46,53,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,49,53,32,54,46,53,118,56,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,56,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,50,46,53,32,53,72,50,46,55,48,55,108,51,46,49,52,55,32,51,46,49,52,54,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,46,55,48,56,108,45,52,45,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,57,48,100,101,103,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,52,46,56,53,52,32,52,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,76,49,51,46,50,57,51,32,52,72,51,46,53,65,50,46,53,32,50,46,53,32,48,32,48,32,48,32,49,32,54,46,53,118,56,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,56,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,46,53,32,53,104,57,46,55,57,51,108,45,51,46,49,52,55,32,51,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,108,52,45,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,57,48,100,101,103,85,112,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,52,46,56,53,52,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,52,32,52,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,56,46,55,48,56,76,52,32,50,46,55,48,55,86,49,50,46,53,65,50,46,53,32,50,46,53,32,48,32,48,32,48,32,54,46,53,32,49,53,104,56,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,56,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,32,49,50,46,53,86,50,46,55,48,55,108,51,46,49,52,54,32,51,46,49,52,55,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,56,45,46,55,48,56,108,45,52,45,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,66,97,114,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,66,97,114,68,111,119,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,56,32,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,53,46,55,57,51,108,50,46,49,52,54,45,50,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,51,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,49,50,46,50,57,51,86,54,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,66,97,114,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,66,97,114,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,50,46,53,32,49,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,51,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,49,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,122,77,49,48,32,56,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,51,46,55,48,55,108,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,51,46,55,48,55,32,55,46,53,72,57,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,66,97,114,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,66,97,114,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,32,56,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,53,46,55,57,51,108,45,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,76,49,50,46,50,57,51,32,55,46,53,72,54,46,53,65,46,53,46,53,32,48,32,48,32,48,32,54,32,56,122,109,45,50,46,53,32,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,51,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,49,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,66,97,114,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,66,97,114,85,112,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,49,48,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,51,46,55,48,55,108,50,46,49,52,54,32,50,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,51,32,51,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,56,46,55,48,56,76,55,46,53,32,51,46,55,48,55,86,57,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,122,109,45,55,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,67,108,111,99,107,119,105,115,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,67,108,111,99,107,119,105,115,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,51,97,53,32,53,32,48,32,49,32,48,32,52,46,53,52,54,32,50,46,57,49,52,46,53,46,53,32,48,32,48,32,49,32,46,57,48,56,45,46,52,49,55,65,54,32,54,32,48,32,49,32,49,32,56,32,50,118,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,52,46,52,54,54,86,46,53,51,52,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,52,49,45,46,49,57,50,108,50,46,51,54,32,49,46,57,54,54,99,46,49,50,46,49,46,49,50,46,50,56,52,32,48,32,46,51,56,52,76,56,46,52,49,32,52,46,54,53,56,65,46,50,53,46,50,53,32,48,32,48,32,49,32,56,32,52,46,52,54,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,67,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,67,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,51,97,53,32,53,32,48,32,49,32,49,45,52,46,53,52,54,32,50,46,57,49,52,46,53,46,53,32,48,32,48,32,48,45,46,57,48,56,45,46,52,49,55,65,54,32,54,32,48,32,49,32,48,32,56,32,50,118,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,52,46,52,54,54,86,46,53,51,52,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,52,49,45,46,49,57,50,76,53,46,50,51,32,50,46,51,48,56,97,46,50,53,46,50,53,32,48,32,48,32,48,32,48,32,46,51,56,52,108,50,46,51,54,32,49,46,57,54,54,65,46,50,53,46,50,53,32,48,32,48,32,48,32,56,32,52,46,52,54,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,49,46,55,57,51,108,51,46,49,52,54,45,51,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,52,32,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,49,51,46,50,57,51,86,49,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,56,46,53,32,52,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,53,46,55,57,51,76,53,46,51,53,52,32,56,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,51,32,51,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,51,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,46,53,32,49,48,46,50,57,51,86,52,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,56,46,53,32,52,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,53,46,55,57,51,76,53,46,51,53,52,32,56,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,51,32,51,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,51,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,46,53,32,49,48,46,50,57,51,86,52,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,49,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,51,46,55,48,55,76,49,51,46,56,53,52,32,50,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,51,32,49,50,46,50,57,51,86,55,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,109,45,53,46,57,48,52,45,50,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,55,46,55,48,56,76,54,46,55,48,55,32,57,46,57,53,104,50,46,55,54,56,97,46,53,46,53,32,48,32,49,32,49,32,48,32,49,72,53,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,54,46,52,55,53,97,46,53,46,53,32,48,32,49,32,49,32,49,32,48,118,50,46,55,54,56,108,52,46,48,57,54,45,52,46,48,57,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,48,32,48,32,56,97,56,32,56,32,48,32,48,32,48,32,49,54,32,48,122,109,45,53,46,57,48,52,45,50,46,56,48,51,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,55,46,55,48,55,76,54,46,55,48,55,32,49,48,104,50,46,55,54,56,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,54,46,53,50,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,50,46,55,54,56,108,52,46,48,57,54,45,52,46,48,57,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,109,45,53,46,57,48,52,45,50,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,55,46,55,48,56,76,54,46,55,48,55,32,57,46,57,53,104,50,46,55,54,56,97,46,53,46,53,32,48,32,49,32,49,32,48,32,49,72,53,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,54,46,52,55,53,97,46,53,46,53,32,48,32,49,32,49,32,49,32,48,118,50,46,55,54,56,108,52,46,48,57,54,45,52,46,48,57,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,54,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,122,109,56,46,48,57,54,45,49,48,46,56,48,51,76,54,32,57,46,50,57,51,86,54,46,53,50,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,51,46,57,55,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,54,46,55,48,55,108,52,46,48,57,54,45,52,46,48,57,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,55,45,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,52,32,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,52,46,55,57,51,76,50,46,49,52,54,32,50,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,49,51,32,49,50,46,50,57,51,86,55,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,53,46,56,53,52,32,53,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,57,46,50,52,51,32,57,46,57,53,72,54,46,52,55,53,97,46,53,46,53,32,48,32,49,32,48,32,48,32,49,104,51,46,57,55,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,54,46,52,55,53,97,46,53,46,53,32,48,32,49,32,48,45,49,32,48,118,50,46,55,54,56,76,53,46,56,53,52,32,53,46,49,52,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,56,97,56,32,56,32,48,32,49,32,49,32,49,54,32,48,65,56,32,56,32,48,32,48,32,49,32,48,32,56,122,109,53,46,57,48,52,45,50,46,56,48,51,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,55,46,55,48,55,76,57,46,50,57,51,32,49,48,72,54,46,53,50,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,72,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,54,46,53,50,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,50,46,55,54,56,76,53,46,57,48,52,32,53,46,49,57,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,53,46,56,53,52,32,53,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,57,46,50,52,51,32,57,46,57,53,72,54,46,52,55,53,97,46,53,46,53,32,48,32,49,32,48,32,48,32,49,104,51,46,57,55,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,54,46,52,55,53,97,46,53,46,53,32,48,32,49,32,48,45,49,32,48,118,50,46,55,54,56,76,53,46,56,53,52,32,53,46,49,52,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,54,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,122,77,53,46,57,48,52,32,53,46,49,57,55,76,49,48,32,57,46,50,57,51,86,54,46,53,50,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,54,46,53,50,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,46,55,54,56,76,53,46,49,57,55,32,53,46,57,48,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,45,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,104,111,114,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,83,104,111,114,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,53,46,55,57,51,108,50,46,49,52,54,45,50,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,51,45,51,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,49,48,46,50,57,51,86,52,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,56,46,53,32,52,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,53,46,55,57,51,76,53,46,51,53,52,32,56,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,51,32,51,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,51,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,46,53,32,49,48,46,50,57,51,86,52,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,54,46,53,32,52,46,53,118,53,46,55,57,51,108,50,46,49,52,54,45,50,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,51,45,51,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,49,48,46,50,57,51,86,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,68,111,119,110,85,112,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,46,53,32,49,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,50,46,55,48,55,108,51,46,49,52,54,32,51,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,52,32,52,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,56,46,55,48,56,76,49,49,32,50,46,55,48,55,86,49,52,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,122,109,45,55,45,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,49,46,55,57,51,108,51,46,49,52,54,45,51,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,52,32,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,76,52,32,49,51,46,50,57,51,86,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,53,32,56,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,50,46,55,48,55,108,51,46,49,52,55,45,51,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,45,46,55,48,56,108,45,52,32,52,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,56,108,52,32,52,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,76,50,46,55,48,55,32,56,46,53,72,49,52,46,53,65,46,53,46,53,32,48,32,48,32,48,32,49,53,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,109,45,52,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,46,55,48,55,108,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,53,46,55,48,55,32,55,46,53,72,49,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,48,97,56,32,56,32,48,32,49,32,48,32,48,32,49,54,65,56,32,56,32,48,32,48,32,48,32,56,32,48,122,109,51,46,53,32,55,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,46,55,48,55,108,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,53,46,55,48,55,32,55,46,53,72,49,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,76,101,102,116,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,49,46,55,57,51,108,45,51,46,49,52,55,32,51,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,108,52,45,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,76,49,51,46,50,57,51,32,49,49,72,49,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,109,49,52,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,50,46,55,48,55,108,51,46,49,52,55,32,51,46,49,52,54,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,46,55,48,56,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,52,45,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,50,46,55,48,55,32,52,72,49,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,104,111,114,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,76,101,102,116,83,104,111,114,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,50,32,56,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,53,46,55,48,55,108,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,53,46,55,48,55,32,55,46,53,72,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,109,45,52,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,46,55,48,55,108,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,53,46,55,48,55,32,55,46,53,72,49,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,122,109,45,52,46,53,45,54,46,53,72,53,46,55,48,55,108,50,46,49,52,55,45,50,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,45,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,56,108,51,32,51,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,76,53,46,55,48,55,32,56,46,53,72,49,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,82,101,112,101,97,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,82,101,112,101,97,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,53,51,52,32,55,104,51,46,57,51,50,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,49,57,50,46,52,49,108,45,49,46,57,54,54,32,50,46,51,54,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,51,56,52,32,48,108,45,49,46,57,54,54,45,50,46,51,54,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,49,57,50,45,46,52,49,122,109,45,49,49,32,50,104,51,46,57,51,50,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,49,57,50,45,46,52,49,76,50,46,54,57,50,32,54,46,50,51,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,51,56,52,32,48,76,46,51,52,50,32,56,46,53,57,65,46,50,53,46,50,53,32,48,32,48,32,48,32,46,53,51,52,32,57,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,51,99,45,49,46,53,53,50,32,48,45,50,46,57,52,46,55,48,55,45,51,46,56,53,55,32,49,46,56,49,56,97,46,53,46,53,32,48,32,49,32,49,45,46,55,55,49,45,46,54,51,54,65,54,46,48,48,50,32,54,46,48,48,50,32,48,32,48,32,49,32,49,51,46,57,49,55,32,55,72,49,50,46,57,65,53,46,48,48,50,32,53,46,48,48,50,32,48,32,48,32,48,32,56,32,51,122,77,51,46,49,32,57,97,53,46,48,48,50,32,53,46,48,48,50,32,48,32,48,32,48,32,56,46,55,53,55,32,50,46,49,56,50,46,53,46,53,32,48,32,49,32,49,32,46,55,55,49,46,54,51,54,65,54,46,48,48,50,32,54,46,48,48,50,32,48,32,48,32,49,32,50,46,48,56,51,32,57,72,51,46,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,82,101,116,117,114,110,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,52,46,53,32,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,52,46,56,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,50,46,53,32,50,46,53,72,50,46,55,48,55,108,51,46,51,52,55,32,51,46,51,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,52,46,50,45,52,46,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,52,45,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,50,46,55,48,55,32,56,46,51,72,49,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,32,54,46,56,86,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,82,101,116,117,114,110,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,53,32,49,46,53,65,46,53,46,53,32,48,32,48,32,48,32,49,32,50,118,52,46,56,97,50,46,53,32,50,46,53,32,48,32,48,32,48,32,50,46,53,32,50,46,53,104,57,46,55,57,51,108,45,51,46,51,52,55,32,51,46,51,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,108,52,46,50,45,52,46,50,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,76,49,51,46,50,57,51,32,56,46,51,72,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,32,54,46,56,86,50,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,46,55,57,51,108,45,51,46,49,52,55,45,51,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,108,52,32,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,52,32,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,51,46,50,57,51,32,56,46,53,72,49,46,53,65,46,53,46,53,32,48,32,48,32,49,32,49,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,52,46,53,32,55,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,46,55,57,51,108,45,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,49,48,46,50,57,51,32,55,46,53,72,52,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,48,97,56,32,56,32,48,32,49,32,49,32,48,32,49,54,65,56,32,56,32,48,32,48,32,49,32,56,32,48,122,77,52,46,53,32,55,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,46,55,57,51,108,45,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,49,48,46,50,57,51,32,55,46,53,72,52,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,104,111,114,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,82,105,103,104,116,83,104,111,114,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,52,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,46,55,57,51,76,56,46,49,52,54,32,53,46,51,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,108,51,32,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,48,46,50,57,51,32,56,46,53,72,52,46,53,65,46,53,46,53,32,48,32,48,32,49,32,52,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,52,46,53,32,55,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,46,55,57,51,108,45,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,49,48,46,50,57,51,32,55,46,53,72,52,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,52,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,122,109,52,46,53,45,54,46,53,104,53,46,55,57,51,76,56,46,49,52,54,32,53,46,51,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,108,51,32,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,48,46,50,57,51,32,56,46,53,72,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,49,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,50,46,55,48,55,108,51,46,49,52,54,32,51,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,52,32,52,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,56,46,55,48,56,76,55,46,53,32,50,46,55,48,55,86,49,52,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,109,45,55,46,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,53,46,55,48,55,76,53,46,51,53,52,32,55,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,53,46,55,48,55,86,49,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,48,32,48,32,56,97,56,32,56,32,48,32,48,32,48,32,49,54,32,48,122,109,45,55,46,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,53,46,55,48,55,76,53,46,51,53,52,32,55,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,53,46,55,48,55,86,49,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,51,46,55,48,55,108,49,48,46,49,52,55,32,49,48,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,51,32,51,46,55,48,55,86,56,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,109,45,53,46,57,48,52,32,50,46,56,48,51,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,55,45,46,55,48,55,76,54,46,55,48,55,32,54,104,50,46,55,54,56,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,72,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,51,46,57,55,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,54,46,55,48,55,108,52,46,48,57,54,32,52,46,48,57,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,109,45,53,46,57,48,52,32,50,46,56,48,51,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,55,45,46,55,48,55,76,54,46,55,48,55,32,54,104,50,46,55,54,56,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,72,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,51,46,57,55,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,54,46,55,48,55,108,52,46,48,57,54,32,52,46,48,57,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,109,45,53,46,57,48,52,32,50,46,56,48,51,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,55,45,46,55,48,55,76,54,46,55,48,55,32,54,104,50,46,55,54,56,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,72,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,51,46,57,55,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,54,46,55,48,55,108,52,46,48,57,54,32,52,46,48,57,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,56,46,48,57,54,32,49,48,46,56,48,51,76,54,32,54,46,55,48,55,118,50,46,55,54,56,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,46,57,55,53,97,46,53,46,53,32,48,32,49,32,49,32,48,32,49,72,54,46,55,48,55,108,52,46,48,57,54,32,52,46,48,57,54,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,52,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,54,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,52,46,55,57,51,76,50,46,49,52,54,32,49,51,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,76,49,51,32,51,46,55,48,55,86,56,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,53,46,56,53,52,32,49,48,46,56,48,51,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,55,76,57,46,50,52,51,32,54,72,54,46,52,55,53,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,104,51,46,57,55,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,46,57,55,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,86,54,46,55,48,55,108,45,52,46,48,57,54,32,52,46,48,57,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,56,97,56,32,56,32,48,32,49,32,48,32,49,54,32,48,65,56,32,56,32,48,32,48,32,48,32,48,32,56,122,109,53,46,57,48,52,32,50,46,56,48,51,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,45,46,55,48,55,76,57,46,50,57,51,32,54,72,54,46,53,50,53,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,72,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,46,57,55,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,54,46,55,48,55,108,45,52,46,48,57,54,32,52,46,48,57,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,53,46,56,53,52,32,49,48,46,56,48,51,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,55,76,57,46,50,52,51,32,54,72,54,46,52,55,53,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,104,51,46,57,55,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,46,57,55,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,86,54,46,55,48,55,108,45,52,46,48,57,54,32,52,46,48,57,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,122,77,53,46,57,48,52,32,49,48,46,56,48,51,76,49,48,32,54,46,55,48,55,118,50,46,55,54,56,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,54,46,53,50,53,97,46,53,46,53,32,48,32,49,32,48,32,48,32,49,104,50,46,55,54,56,108,45,52,46,48,57,54,32,52,46,48,57,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,55,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,83,104,111,114,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,83,104,111,114,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,49,50,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,53,46,55,48,55,108,50,46,49,52,54,32,50,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,51,32,51,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,56,46,55,48,56,76,55,46,53,32,53,46,55,48,55,86,49,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,55,32,55,32,48,32,49,32,48,32,49,52,32,48,65,55,32,55,32,48,32,48,32,48,32,49,32,56,122,109,49,53,32,48,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,109,45,55,46,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,53,46,55,48,55,76,53,46,51,53,52,32,55,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,53,46,55,48,55,86,49,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,85,112,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,54,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,122,109,54,46,53,45,52,46,53,86,53,46,55,48,55,108,50,46,49,52,54,32,50,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,51,32,51,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,56,46,55,48,56,76,55,46,53,32,53,46,55,48,55,86,49,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,67,111,110,116,114,97,99,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,115,65,110,103,108,101,67,111,110,116,114,97,99,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,46,49,55,50,32,49,53,46,56,50,56,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,55,32,48,108,52,46,48,57,54,45,52,46,48,57,54,86,49,52,46,53,97,46,53,46,53,32,48,32,49,32,48,32,49,32,48,118,45,51,46,57,55,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,50,46,55,54,56,76,46,49,55,50,32,49,53,46,49,50,49,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,55,122,77,49,53,46,56,50,56,46,49,55,50,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,55,32,48,108,45,52,46,48,57,54,32,52,46,48,57,54,86,49,46,53,97,46,53,46,53,32,48,32,49,32,48,45,49,32,48,118,51,46,57,55,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,72,49,52,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,50,46,55,54,56,76,49,53,46,56,50,56,46,56,55,57,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,69,120,112,97,110,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,115,65,110,103,108,101,69,120,112,97,110,100,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,53,46,56,50,56,32,49,48,46,49,55,50,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,55,32,48,108,45,52,46,48,57,54,32,52,46,48,57,54,86,49,49,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,51,46,57,55,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,72,52,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,49,46,55,51,50,108,52,46,48,57,54,45,52,46,48,57,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,55,122,109,52,46,51,52,52,45,52,46,51,52,52,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,55,32,48,108,52,46,48,57,54,45,52,46,48,57,54,86,52,46,53,97,46,53,46,53,32,48,32,49,32,48,32,49,32,48,86,46,53,50,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,49,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,50,46,55,54,56,108,45,52,46,48,57,54,32,52,46,48,57,54,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,115,67,111,108,108,97,112,115,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,115,67,111,108,108,97,112,115,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,51,65,46,53,46,53,32,48,32,48,32,49,32,49,32,56,122,109,55,45,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,46,55,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,50,45,50,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,52,46,50,57,51,86,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,48,122,109,45,46,53,32,49,49,46,55,48,55,108,45,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,108,50,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,49,49,46,55,48,55,86,49,53,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,46,55,57,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,115,69,120,112,97,110,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,115,69,120,112,97,110,100,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,51,65,46,53,46,53,32,48,32,48,32,49,32,49,32,56,122,77,55,46,54,52,54,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,49,46,55,48,55,86,53,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,46,55,48,55,76,54,46,51,53,52,32,50,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,50,45,50,122,77,56,32,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,46,55,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,50,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,49,52,46,50,57,51,86,49,48,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,49,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,115,70,117,108,108,115,99,114,101,101,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,115,70,117,108,108,115,99,114,101,101,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,53,46,56,50,56,32,49,48,46,49,55,50,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,55,32,48,108,45,52,46,48,57,54,32,52,46,48,57,54,86,49,49,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,51,46,57,55,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,72,52,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,49,46,55,51,50,108,52,46,48,57,54,45,52,46,48,57,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,55,122,109,52,46,51,52,52,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,32,48,108,52,46,48,57,54,32,52,46,48,57,54,86,49,49,46,53,97,46,53,46,53,32,48,32,49,32,49,32,49,32,48,118,51,46,57,55,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,46,55,54,56,108,45,52,46,48,57,54,45,52,46,48,57,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,55,122,109,48,45,52,46,51,52,52,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,55,32,48,108,52,46,48,57,54,45,52,46,48,57,54,86,52,46,53,97,46,53,46,53,32,48,32,49,32,48,32,49,32,48,86,46,53,50,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,49,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,50,46,55,54,56,108,45,52,46,48,57,54,32,52,46,48,57,54,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,55,122,109,45,52,46,51,52,52,32,48,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,32,48,76,49,46,48,50,53,32,49,46,55,51,50,86,52,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,46,53,50,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,72,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,46,55,51,50,108,52,46,48,57,54,32,52,46,48,57,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,114,114,111,119,115,77,111,118,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,114,114,111,119,115,77,111,118,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,54,52,54,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,49,46,55,48,55,86,53,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,46,55,48,55,76,54,46,51,53,52,32,50,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,50,45,50,122,77,56,32,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,46,55,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,50,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,49,52,46,50,57,51,86,49,48,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,49,48,122,77,46,49,52,54,32,56,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,50,45,50,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,49,46,55,48,55,32,55,46,53,72,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,46,55,48,55,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,50,45,50,122,77,49,48,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,46,55,57,51,108,45,49,46,49,52,55,45,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,108,50,32,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,52,46,50,57,51,32,56,46,53,72,49,48,46,53,65,46,53,46,53,32,48,32,48,32,49,32,49,48,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,115,112,101,99,116,82,97,116,105,111,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,50,104,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,51,46,53,118,57,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,50,46,53,118,45,57,122,77,49,46,53,32,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,57,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,57,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,51,118,50,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,122,109,49,50,32,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,51,86,56,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,115,112,101,99,116,82,97,116,105,111,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,50,46,53,118,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,50,104,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,51,46,53,118,57,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,50,46,53,122,77,50,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,53,104,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,51,122,109,49,49,32,56,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,49,104,45,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,115,116,101,114,105,115,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,115,116,101,114,105,115,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,48,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,53,46,50,54,56,108,52,46,53,54,50,45,50,46,54,51,52,97,49,32,49,32,48,32,49,32,49,32,49,32,49,46,55,51,50,76,49,48,32,56,108,52,46,53,54,50,32,50,46,54,51,52,97,49,32,49,32,48,32,49,32,49,45,49,32,49,46,55,51,50,76,57,32,57,46,55,51,50,86,49,53,97,49,32,49,32,48,32,49,32,49,45,50,32,48,86,57,46,55,51,50,108,45,52,46,53,54,50,32,50,46,54,51,52,97,49,32,49,32,48,32,49,32,49,45,49,45,49,46,55,51,50,76,54,32,56,32,49,46,52,51,56,32,53,46,51,54,54,97,49,32,49,32,48,32,48,32,49,32,49,45,49,46,55,51,50,76,55,32,54,46,50,54,56,86,49,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,46,49,48,54,32,55,46,50,50,50,99,48,45,50,46,57,54,55,45,50,46,50,52,57,45,53,46,48,51,50,45,53,46,52,56,50,45,53,46,48,51,50,45,51,46,51,53,32,48,45,53,46,54,52,54,32,50,46,51,49,56,45,53,46,54,52,54,32,53,46,55,48,50,32,48,32,51,46,52,57,51,32,50,46,50,51,53,32,53,46,55,48,56,32,53,46,55,54,50,32,53,46,55,48,56,46,56,54,50,32,48,32,49,46,54,56,57,45,46,49,50,51,32,50,46,51,48,52,45,46,51,51,53,118,45,46,56,54,50,99,45,46,52,51,46,49,57,57,45,49,46,51,53,52,46,51,50,56,45,50,46,50,57,46,51,50,56,45,50,46,57,50,54,32,48,45,52,46,56,49,51,45,49,46,56,56,45,52,46,56,49,51,45,52,46,55,57,56,32,48,45,50,46,56,52,52,32,49,46,57,50,49,45,52,46,56,56,49,32,52,46,53,57,52,45,52,46,56,56,49,32,50,46,55,51,53,32,48,32,52,46,54,48,56,32,49,46,54,56,56,32,52,46,54,48,56,32,52,46,49,53,54,32,48,32,49,46,54,56,50,45,46,53,53,52,32,50,46,55,54,57,45,49,46,52,49,54,32,50,46,55,54,57,45,46,52,57,50,32,48,45,46,55,55,50,45,46,50,56,45,46,55,55,50,45,46,55,54,86,53,46,50,48,54,72,56,46,57,50,51,118,46,56,51,52,104,45,46,49,49,99,45,46,50,54,54,45,46,53,57,53,45,46,56,56,49,45,46,57,54,52,45,49,46,54,45,46,57,54,52,45,49,46,52,32,48,45,50,46,51,55,56,32,49,46,49,54,50,45,50,46,51,55,56,32,50,46,56,50,51,32,48,32,49,46,55,51,55,46,57,53,55,32,50,46,57,48,54,32,50,46,51,55,57,32,50,46,57,48,54,46,56,32,48,32,49,46,52,49,53,45,46,51,57,32,49,46,55,48,57,45,49,46,48,56,55,104,46,49,49,99,46,48,56,49,46,54,55,46,55,48,51,32,49,46,49,52,56,32,49,46,53,48,51,32,49,46,49,52,56,32,49,46,53,55,50,32,48,32,50,46,53,55,45,49,46,52,49,53,32,50,46,53,55,45,51,46,54,52,51,122,109,45,55,46,49,55,55,46,55,48,52,99,48,45,49,46,49,57,55,46,53,52,45,49,46,57,48,55,32,49,46,52,53,54,45,49,46,57,48,55,46,57,51,32,48,32,49,46,53,50,52,46,55,51,56,32,49,46,53,50,52,32,49,46,57,48,55,83,56,46,51,48,56,32,57,46,56,52,32,55,46,51,55,49,32,57,46,56,52,99,45,46,56,57,53,32,48,45,49,46,52,52,50,45,46,55,50,53,45,49,46,52,52,50,45,49,46,57,49,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,119,97,114,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,119,97,114,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,54,54,57,46,56,54,52,76,56,32,48,32,54,46,51,51,49,46,56,54,52,108,45,49,46,56,53,56,46,50,56,50,45,46,56,52,50,32,49,46,54,56,45,49,46,51,51,55,32,49,46,51,50,76,50,46,54,32,54,108,45,46,51,48,54,32,49,46,56,53,52,32,49,46,51,51,55,32,49,46,51,50,46,56,52,50,32,49,46,54,56,32,49,46,56,53,56,46,50,56,50,76,56,32,49,50,108,49,46,54,54,57,45,46,56,54,52,32,49,46,56,53,56,45,46,50,56,50,46,56,52,50,45,49,46,54,56,32,49,46,51,51,55,45,49,46,51,50,76,49,51,46,52,32,54,108,46,51,48,54,45,49,46,56,53,52,45,49,46,51,51,55,45,49,46,51,50,45,46,56,52,50,45,49,46,54,56,76,57,46,54,54,57,46,56,54,52,122,109,49,46,49,57,54,32,49,46,49,57,51,108,46,54,56,52,32,49,46,51,54,53,32,49,46,48,56,54,32,49,46,48,55,50,76,49,50,46,51,56,55,32,54,108,46,50,52,56,32,49,46,53,48,54,45,49,46,48,56,54,32,49,46,48,55,50,45,46,54,56,52,32,49,46,51,54,53,45,49,46,53,49,46,50,50,57,76,56,32,49,48,46,56,55,52,108,45,49,46,51,53,53,45,46,55,48,50,45,49,46,53,49,45,46,50,50,57,45,46,54,56,52,45,49,46,51,54,53,45,49,46,48,56,54,45,49,46,48,55,50,76,51,46,54,49,52,32,54,108,45,46,50,53,45,49,46,53,48,54,32,49,46,48,56,55,45,49,46,48,55,50,46,54,56,52,45,49,46,51,54,53,32,49,46,53,49,45,46,50,50,57,76,56,32,49,46,49,50,54,108,49,46,51,53,54,46,55,48,50,32,49,46,53,48,57,46,50,50,57,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,49,49,46,55,57,52,86,49,54,108,52,45,49,32,52,32,49,118,45,52,46,50,48,54,108,45,50,46,48,49,56,46,51,48,54,76,56,32,49,51,46,49,50,54,32,54,46,48,49,56,32,49,50,46,49,32,52,32,49,49,46,55,57,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,65,119,97,114,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,65,119,97,114,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,48,108,49,46,54,54,57,46,56,54,52,32,49,46,56,53,56,46,50,56,50,46,56,52,50,32,49,46,54,56,32,49,46,51,51,55,32,49,46,51,50,76,49,51,46,52,32,54,108,46,51,48,54,32,49,46,56,53,52,45,49,46,51,51,55,32,49,46,51,50,45,46,56,52,50,32,49,46,54,56,45,49,46,56,53,56,46,50,56,50,76,56,32,49,50,108,45,49,46,54,54,57,45,46,56,54,52,45,49,46,56,53,56,45,46,50,56,50,45,46,56,52,50,45,49,46,54,56,45,49,46,51,51,55,45,49,46,51,50,76,50,46,54,32,54,108,45,46,51,48,54,45,49,46,56,53,52,32,49,46,51,51,55,45,49,46,51,50,46,56,52,50,45,49,46,54,56,76,54,46,51,51,49,46,56,54,52,32,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,49,49,46,55,57,52,86,49,54,108,52,45,49,32,52,32,49,118,45,52,46,50,48,54,108,45,50,46,48,49,56,46,51,48,54,76,56,32,49,51,46,49,50,54,32,54,46,48,49,56,32,49,50,46,49,32,52,32,49,49,46,55,57,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,99,107,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,50,104,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,54,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,99,107,115,112,97,99,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,99,107,115,112,97,99,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,56,51,32,53,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,56,76,55,46,57,55,53,32,56,108,45,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,55,46,55,48,56,108,50,46,49,52,55,45,50,46,49,52,55,32,50,46,49,52,54,32,50,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,55,45,46,55,48,56,76,57,46,51,57,32,56,108,50,46,49,52,54,45,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,55,45,46,55,48,56,76,56,46,54,56,51,32,55,46,50,57,51,32,54,46,53,51,54,32,53,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,55,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,51,46,54,56,51,32,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,104,45,55,46,48,56,97,50,32,50,32,48,32,48,32,49,45,49,46,53,49,57,45,46,54,57,56,76,46,50,52,49,32,56,46,54,53,97,49,32,49,32,48,32,48,32,49,32,48,45,49,46,51,48,50,76,53,46,48,56,52,32,49,46,55,65,50,32,50,32,48,32,48,32,49,32,54,46,54,48,51,32,49,104,55,46,48,56,122,109,45,55,46,48,56,32,49,97,49,32,49,32,48,32,48,32,48,45,46,55,54,46,51,53,76,49,32,56,108,52,46,56,52,52,32,53,46,54,53,97,49,32,49,32,48,32,48,32,48,32,46,55,53,57,46,51,53,104,55,46,48,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,55,46,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,99,107,115,112,97,99,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,99,107,115,112,97,99,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,53,46,54,56,51,32,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,55,46,48,56,97,50,32,50,32,48,32,48,32,48,45,49,46,53,49,57,46,54,57,56,76,46,50,52,49,32,55,46,51,53,97,49,32,49,32,48,32,48,32,48,32,48,32,49,46,51,48,50,108,52,46,56,52,51,32,53,46,54,53,65,50,32,50,32,48,32,48,32,48,32,54,46,54,48,51,32,49,53,104,55,46,48,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,122,77,53,46,56,50,57,32,53,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,55,45,46,55,48,56,108,50,46,49,52,55,32,50,46,49,52,55,32,50,46,49,52,54,45,50,46,49,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,55,46,55,48,56,76,57,46,51,57,32,56,108,50,46,49,52,54,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,46,55,48,56,76,56,46,54,56,51,32,56,46,55,48,55,108,45,50,46,49,52,55,32,50,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,45,46,55,48,56,76,55,46,57,55,54,32,56,32,53,46,56,50,57,32,53,46,56,53,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,56,53,52,32,53,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,76,55,46,55,48,55,32,56,108,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,55,32,56,46,55,48,55,108,45,50,46,49,52,54,32,50,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,54,46,50,57,51,32,56,32,52,46,49,52,54,32,53,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,32,55,46,50,57,51,108,50,46,49,52,54,45,50,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,49,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,55,46,48,56,97,50,32,50,32,48,32,48,32,48,32,49,46,53,49,57,45,46,54,57,56,108,52,46,56,52,51,45,53,46,54,53,49,97,49,32,49,32,48,32,48,32,48,32,48,45,49,46,51,48,50,76,49,48,46,54,32,49,46,55,65,50,32,50,32,48,32,48,32,48,32,57,46,48,56,32,49,72,50,122,109,55,46,48,56,32,49,97,49,32,49,32,48,32,48,32,49,32,46,55,54,46,51,53,76,49,52,46,54,56,50,32,56,108,45,52,46,56,52,52,32,53,46,54,53,97,49,32,49,32,48,32,48,32,49,45,46,55,53,57,46,51,53,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,55,46,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,55,46,48,56,97,50,32,50,32,48,32,48,32,49,32,49,46,53,49,57,46,54,57,56,108,52,46,56,52,51,32,53,46,54,53,49,97,49,32,49,32,48,32,48,32,49,32,48,32,49,46,51,48,50,76,49,48,46,54,32,49,52,46,51,97,50,32,50,32,48,32,48,32,49,45,49,46,53,50,46,55,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,122,109,57,46,56,53,52,32,50,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,55,32,55,46,50,57,51,32,52,46,56,53,52,32,53,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,54,46,50,57,51,32,56,108,45,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,76,55,32,56,46,55,48,55,108,50,46,49,52,54,32,50,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,76,55,46,55,48,55,32,56,108,50,46,49,52,55,45,50,46,49,52,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,100,103,101,52,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,100,103,101,52,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,56,48,55,32,53,46,48,48,49,67,52,46,48,50,49,32,54,46,50,57,56,32,51,46,50,48,51,32,55,46,54,32,50,46,53,32,56,46,57,49,55,118,46,57,55,49,104,50,46,57,48,53,86,49,49,104,49,46,49,49,50,86,57,46,56,56,56,104,46,55,51,51,86,56,46,57,51,104,45,46,55,51,51,86,53,46,48,48,49,104,45,49,46,55,49,122,109,45,49,46,50,51,32,51,46,57,51,118,45,46,48,51,50,97,52,54,46,55,56,49,32,52,54,46,55,56,49,32,48,32,48,32,49,32,49,46,55,54,54,45,51,46,48,48,49,104,46,48,54,50,86,56,46,57,51,72,51,46,53,55,55,122,109,57,46,56,51,49,45,51,46,57,51,104,45,49,46,51,48,54,76,57,46,56,51,53,32,55,46,54,56,55,104,45,46,48,53,55,86,53,72,56,46,53,57,118,54,104,49,46,49,56,55,86,57,46,48,55,53,108,46,54,49,53,45,46,54,57,57,76,49,50,46,48,55,50,32,49,49,72,49,51,46,53,108,45,50,46,50,51,50,45,51,46,52,49,53,32,50,46,49,52,45,50,46,53,56,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,100,103,101,52,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,100,103,101,52,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,55,55,32,56,46,57,118,46,48,51,104,49,46,56,50,56,86,53,46,56,57,56,104,45,46,48,54,50,97,52,54,46,55,56,49,32,52,54,46,55,56,49,32,48,32,48,32,48,45,49,46,55,54,54,32,51,46,48,48,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,50,46,51,55,50,32,51,46,55,49,53,108,46,52,51,53,45,46,55,49,52,104,49,46,55,49,118,51,46,57,51,104,46,55,51,51,118,46,57,53,55,104,45,46,55,51,51,86,49,49,72,53,46,52,48,53,86,57,46,56,56,56,72,50,46,53,118,45,46,57,55,49,99,46,53,55,52,45,49,46,48,55,55,32,49,46,50,50,53,45,50,46,49,52,50,32,49,46,56,55,50,45,51,46,50,48,50,122,109,55,46,55,51,45,46,55,49,52,104,49,46,51,48,54,108,45,50,46,49,52,32,50,46,53,56,52,76,49,51,46,53,32,49,49,104,45,49,46,52,50,56,108,45,49,46,54,55,57,45,50,46,54,50,52,45,46,54,49,53,46,55,86,49,49,72,56,46,53,57,86,53,46,48,48,49,104,49,46,49,56,55,118,50,46,54,56,54,104,46,48,53,55,76,49,50,46,49,48,50,32,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,100,103,101,56,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,100,103,101,56,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,56,51,55,32,49,49,46,49,49,52,99,49,46,52,48,54,32,48,32,50,46,51,51,51,45,46,55,50,53,32,50,46,51,51,51,45,49,46,55,54,54,32,48,45,46,57,52,53,45,46,55,49,50,45,49,46,51,56,45,49,46,50,53,54,45,49,46,52,57,118,45,46,48,53,51,99,46,52,57,54,45,46,49,53,32,49,46,48,50,45,46,53,53,32,49,46,48,50,45,49,46,51,51,49,32,48,45,46,57,49,52,45,46,56,51,49,45,49,46,53,56,55,45,50,46,48,56,52,45,49,46,53,56,55,45,49,46,50,53,55,32,48,45,50,46,48,56,55,46,54,55,51,45,50,46,48,56,55,32,49,46,53,56,55,32,48,32,46,55,55,51,46,53,49,32,49,46,49,55,55,32,49,46,48,50,32,49,46,51,51,49,118,46,48,53,51,99,45,46,53,52,54,46,49,49,45,49,46,50,53,56,46,53,52,45,49,46,50,53,56,32,49,46,52,57,52,32,48,32,49,46,48,52,50,46,57,48,54,32,49,46,55,54,50,32,50,46,51,49,50,32,49,46,55,54,50,122,109,46,48,49,51,45,51,46,54,52,51,99,45,46,53,52,53,32,48,45,46,57,53,45,46,51,53,54,45,46,57,53,45,46,56,54,54,115,46,52,48,53,45,46,56,53,50,46,57,53,45,46,56,53,50,99,46,53,52,53,32,48,32,46,57,52,53,46,51,52,51,46,57,52,53,46,56,53,50,32,48,32,46,53,49,45,46,52,46,56,54,54,45,46,57,52,53,46,56,54,54,122,109,48,32,50,46,55,56,54,99,45,46,54,53,32,48,45,49,46,49,52,50,45,46,51,57,53,45,49,46,49,52,50,45,46,57,56,52,83,52,46,50,32,56,46,50,56,32,52,46,56,53,32,56,46,50,56,99,46,54,52,54,32,48,32,49,46,49,52,51,46,52,48,52,32,49,46,49,52,51,46,57,57,51,115,45,46,52,57,55,46,57,56,52,45,49,46,49,52,51,46,57,56,52,122,77,49,51,46,52,48,56,32,53,104,45,49,46,51,48,54,76,57,46,56,51,53,32,55,46,54,56,53,104,45,46,48,53,55,86,53,72,56,46,53,57,118,53,46,57,57,56,104,49,46,49,56,55,86,57,46,48,55,53,108,46,54,49,53,45,46,54,57,57,32,49,46,54,55,57,32,50,46,54,50,51,72,49,51,46,53,108,45,50,46,50,51,50,45,51,46,52,49,52,76,49,51,46,52,48,56,32,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,100,103,101,56,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,100,103,101,56,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,57,32,54,46,54,48,53,99,48,32,46,53,49,46,52,48,53,46,56,54,54,46,57,53,46,56,54,54,46,53,52,53,32,48,32,46,57,52,53,45,46,51,53,54,46,57,52,53,45,46,56,54,54,115,45,46,52,45,46,56,53,50,45,46,57,52,53,45,46,56,53,50,99,45,46,53,52,53,32,48,45,46,57,53,46,51,52,51,45,46,57,53,46,56,53,50,122,109,45,46,49,57,50,32,50,46,54,54,56,99,48,32,46,53,56,57,46,52,57,50,46,57,56,52,32,49,46,49,52,50,46,57,56,52,46,54,52,54,32,48,32,49,46,49,52,51,45,46,51,57,53,32,49,46,49,52,51,45,46,57,56,52,83,53,46,52,57,54,32,56,46,50,56,32,52,46,56,53,32,56,46,50,56,99,45,46,54,53,32,48,45,49,46,49,52,50,46,52,48,52,45,49,46,49,52,50,46,57,57,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,53,46,49,55,32,55,46,51,52,56,99,48,32,49,46,48,52,49,45,46,57,50,55,32,49,46,55,54,54,45,50,46,51,51,51,32,49,46,55,54,54,45,49,46,52,48,54,32,48,45,50,46,51,49,50,45,46,55,50,45,50,46,51,49,50,45,49,46,55,54,50,32,48,45,46,57,53,52,46,55,49,50,45,49,46,51,56,52,32,49,46,50,53,55,45,49,46,52,57,52,118,45,46,48,53,51,99,45,46,53,49,45,46,49,53,52,45,49,46,48,50,45,46,53,53,56,45,49,46,48,50,45,49,46,51,51,49,32,48,45,46,57,49,52,46,56,51,49,45,49,46,53,56,55,32,50,46,48,56,56,45,49,46,53,56,55,32,49,46,50,53,51,32,48,32,50,46,48,56,51,46,54,55,51,32,50,46,48,56,51,32,49,46,53,56,55,32,48,32,46,55,56,50,45,46,53,50,51,32,49,46,49,56,50,45,49,46,48,50,32,49,46,51,51,49,118,46,48,53,51,99,46,53,52,53,46,49,49,32,49,46,50,53,55,46,53,52,53,32,49,46,50,53,55,32,49,46,52,57,122,77,49,50,46,49,48,50,32,53,104,49,46,51,48,54,108,45,50,46,49,52,32,50,46,53,56,52,32,50,46,50,51,50,32,51,46,52,49,53,104,45,49,46,52,50,56,108,45,49,46,54,55,57,45,50,46,54,50,52,45,46,54,49,53,46,54,57,57,118,49,46,57,50,53,72,56,46,53,57,86,53,104,49,46,49,56,55,118,50,46,54,56,53,104,46,48,53,55,76,49,50,46,49,48,50,32,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,100,103,101,65,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,100,103,101,65,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,55,32,49,49,108,46,52,55,45,49,46,53,52,50,104,50,46,48,48,52,76,54,46,54,52,52,32,49,49,104,49,46,50,54,49,76,53,46,57,48,49,32,53,46,48,48,49,72,52,46,53,49,51,76,50,46,53,32,49,49,104,49,46,50,122,109,49,46,53,48,51,45,52,46,56,53,50,108,46,55,51,52,32,50,46,52,50,54,72,52,46,52,49,54,108,46,55,51,52,45,50,46,52,50,54,104,46,48,53,51,122,109,52,46,55,53,57,46,49,50,56,99,45,49,46,48,53,57,32,48,45,49,46,55,53,51,46,55,54,53,45,49,46,55,53,51,32,50,46,48,52,51,118,46,54,57,53,99,48,32,49,46,50,55,57,46,54,56,53,32,50,46,48,52,51,32,49,46,55,52,32,50,46,48,52,51,46,54,55,55,32,48,32,49,46,50,50,50,45,46,51,51,32,49,46,51,54,55,45,46,56,48,52,104,46,48,53,55,86,49,49,104,49,46,49,51,56,86,52,46,54,56,53,104,45,49,46,49,54,118,50,46,51,54,104,45,46,48,53,51,99,45,46,49,56,45,46,52,55,53,45,46,54,56,45,46,55,55,45,49,46,51,51,54,45,46,55,55,122,109,46,51,56,55,46,57,50,51,99,46,53,56,32,48,32,49,46,48,48,50,46,52,52,32,49,46,48,48,50,32,49,46,49,51,56,118,46,54,48,50,99,48,32,46,55,54,45,46,51,57,54,32,49,46,50,45,46,57,56,52,32,49,46,50,45,46,53,57,56,32,48,45,46,57,55,50,45,46,52,52,57,45,46,57,55,50,45,49,46,50,52,56,118,45,46,52,53,51,99,48,45,46,55,57,53,46,51,55,45,49,46,50,52,46,57,53,52,45,49,46,50,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,100,103,101,65,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,100,103,101,65,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,51,53,32,56,46,51,51,55,99,48,45,46,54,57,57,45,46,52,50,45,49,46,49,51,56,45,49,46,48,48,49,45,49,46,49,51,56,45,46,53,56,52,32,48,45,46,57,53,52,46,52,52,52,45,46,57,53,52,32,49,46,50,51,57,118,46,52,53,51,99,48,32,46,56,46,51,55,52,32,49,46,50,52,56,46,57,55,50,32,49,46,50,52,56,46,53,56,56,32,48,32,46,57,56,52,45,46,52,52,46,57,56,52,45,49,46,50,118,45,46,54,48,50,122,109,45,53,46,52,49,51,46,50,51,55,108,45,46,55,51,52,45,50,46,52,50,54,72,53,46,49,53,108,45,46,55,51,52,32,50,46,52,50,54,104,49,46,53,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,54,46,50,48,57,32,54,46,51,50,99,48,45,49,46,50,56,46,54,57,52,45,50,46,48,52,52,32,49,46,55,53,51,45,50,46,48,52,52,46,54,53,53,32,48,32,49,46,49,53,54,46,50,57,52,32,49,46,51,51,54,46,55,54,57,104,46,48,53,51,118,45,50,46,51,54,104,49,46,49,54,86,49,49,104,45,49,46,49,51,56,118,45,46,55,52,55,104,45,46,48,53,55,99,45,46,49,52,53,46,52,55,52,45,46,54,57,46,56,48,52,45,49,46,51,54,55,46,56,48,52,45,49,46,48,53,53,32,48,45,49,46,55,52,45,46,55,54,52,45,49,46,55,52,45,50,46,48,52,51,118,45,46,54,57,53,122,109,45,52,46,48,52,32,49,46,49,51,56,76,51,46,55,32,49,49,72,50,46,53,108,50,46,48,49,51,45,53,46,57,57,57,72,53,46,57,76,55,46,57,48,53,32,49,49,72,54,46,54,52,52,108,45,46,52,55,45,49,46,53,52,50,72,52,46,49,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,100,103,101,67,99,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,100,103,101,67,99,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,55,48,56,32,55,46,55,53,53,99,48,45,49,46,49,49,49,46,52,56,56,45,49,46,55,53,51,32,49,46,51,49,57,45,49,46,55,53,51,46,54,56,49,32,48,32,49,46,49,51,56,46,52,55,32,49,46,49,56,54,32,49,46,49,48,55,72,55,46,51,54,86,55,99,45,46,48,53,50,45,49,46,49,56,54,45,49,46,48,50,52,45,50,45,50,46,51,52,50,45,50,67,51,46,52,49,52,32,53,32,50,46,53,32,54,46,48,53,32,50,46,53,32,55,46,55,53,49,118,46,55,52,55,99,48,32,49,46,55,46,57,48,53,32,50,46,55,51,32,50,46,53,49,56,32,50,46,55,51,32,49,46,51,49,52,32,48,32,50,46,50,56,53,45,46,55,57,50,32,50,46,51,52,50,45,49,46,57,51,57,118,45,46,49,49,52,72,54,46,50,49,51,99,45,46,48,52,56,46,54,49,53,45,46,52,57,54,32,49,46,48,53,45,49,46,49,56,54,32,49,46,48,53,45,46,56,52,32,48,45,49,46,51,49,57,45,46,54,50,45,49,46,51,49,57,45,49,46,55,50,55,118,45,46,55,52,51,122,109,54,46,49,52,32,48,99,48,45,49,46,49,49,49,46,52,56,56,45,49,46,55,53,51,32,49,46,51,49,56,45,49,46,55,53,51,46,54,56,50,32,48,32,49,46,49,51,57,46,52,55,32,49,46,49,56,55,32,49,46,49,48,55,72,49,51,46,53,86,55,99,45,46,48,53,51,45,49,46,49,56,54,45,49,46,48,50,52,45,50,45,50,46,51,52,50,45,50,67,57,46,53,53,52,32,53,32,56,46,54,52,32,54,46,48,53,32,56,46,54,52,32,55,46,55,53,49,118,46,55,52,55,99,48,32,49,46,55,46,57,48,53,32,50,46,55,51,32,50,46,53,49,56,32,50,46,55,51,32,49,46,51,49,52,32,48,32,50,46,50,56,53,45,46,55,57,50,32,50,46,51,52,50,45,49,46,57,51,57,118,45,46,49,49,52,104,45,49,46,49,52,55,99,45,46,48,52,56,46,54,49,53,45,46,52,57,55,32,49,46,48,53,45,49,46,49,56,55,32,49,46,48,53,45,46,56,51,57,32,48,45,49,46,51,49,56,45,46,54,50,45,49,46,51,49,56,45,49,46,55,50,55,118,45,46,55,52,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,100,103,101,67,99,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,100,103,101,67,99,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,51,46,48,50,55,32,52,46,48,48,50,99,45,46,56,51,32,48,45,49,46,51,49,57,46,54,52,50,45,49,46,51,49,57,32,49,46,55,53,51,118,46,55,52,51,99,48,32,49,46,49,48,55,46,52,56,32,49,46,55,50,55,32,49,46,51,49,57,32,49,46,55,50,55,46,54,57,32,48,32,49,46,49,51,56,45,46,52,51,53,32,49,46,49,56,54,45,49,46,48,53,72,55,46,51,54,118,46,49,49,52,99,45,46,48,53,55,32,49,46,49,52,55,45,49,46,48,50,56,32,49,46,57,51,56,45,50,46,51,52,50,32,49,46,57,51,56,45,49,46,54,49,51,32,48,45,50,46,53,49,56,45,49,46,48,50,56,45,50,46,53,49,56,45,50,46,55,50,57,118,45,46,55,52,55,67,50,46,53,32,54,46,48,53,49,32,51,46,52,49,52,32,53,32,53,46,48,49,56,32,53,99,49,46,51,49,56,32,48,32,50,46,50,57,46,56,49,51,32,50,46,51,52,50,32,50,118,46,49,49,72,54,46,50,49,51,99,45,46,48,52,56,45,46,54,51,56,45,46,53,48,53,45,49,46,49,48,56,45,49,46,49,56,54,45,49,46,49,48,56,122,109,54,46,49,52,32,48,99,45,46,56,51,49,32,48,45,49,46,51,49,57,46,54,52,50,45,49,46,51,49,57,32,49,46,55,53,51,118,46,55,52,51,99,48,32,49,46,49,48,55,46,52,56,32,49,46,55,50,55,32,49,46,51,49,56,32,49,46,55,50,55,46,54,57,32,48,32,49,46,49,51,57,45,46,52,51,53,32,49,46,49,56,55,45,49,46,48,53,72,49,51,46,53,118,46,49,49,52,99,45,46,48,53,55,32,49,46,49,52,55,45,49,46,48,50,56,32,49,46,57,51,56,45,50,46,51,52,50,32,49,46,57,51,56,45,49,46,54,49,51,32,48,45,50,46,53,49,56,45,49,46,48,50,56,45,50,46,53,49,56,45,50,46,55,50,57,118,45,46,55,52,55,99,48,45,49,46,55,46,57,49,52,45,50,46,55,53,49,32,50,46,53,49,56,45,50,46,55,53,49,32,49,46,51,49,56,32,48,32,50,46,50,57,46,56,49,51,32,50,46,51,52,50,32,50,118,46,49,49,104,45,49,46,49,52,55,99,45,46,48,52,56,45,46,54,51,56,45,46,53,48,53,45,49,46,49,48,56,45,49,46,49,56,55,45,49,46,49,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,100,103,101,72,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,100,103,101,72,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,51,57,54,32,49,49,86,53,46,48,48,49,72,54,46,50,48,57,118,50,46,52,52,72,51,46,54,56,55,86,53,72,50,46,53,118,54,104,49,46,49,56,55,86,56,46,52,51,104,50,46,53,50,50,86,49,49,104,49,46,49,56,55,122,77,56,46,53,32,53,46,48,48,49,86,49,49,104,50,46,49,56,56,99,49,46,56,49,49,32,48,32,50,46,54,56,53,45,49,46,49,48,55,32,50,46,54,56,53,45,51,46,48,49,53,32,48,45,49,46,56,57,52,45,46,56,54,45,50,46,57,56,52,45,50,46,54,56,52,45,50,46,57,56,52,72,56,46,53,122,109,49,46,49,56,55,46,57,54,55,104,46,56,52,51,99,49,46,49,49,50,32,48,32,49,46,54,50,50,46,54,56,54,32,49,46,54,50,50,32,50,46,48,52,32,48,32,49,46,51,53,51,45,46,53,48,53,32,50,46,48,50,45,49,46,54,50,50,32,50,46,48,50,104,45,46,56,52,51,118,45,52,46,48,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,100,103,101,72,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,100,103,101,72,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,53,51,32,53,46,57,54,56,104,45,46,56,52,51,118,52,46,48,54,104,46,56,52,51,99,49,46,49,49,55,32,48,32,49,46,54,50,50,45,46,54,54,55,32,49,46,54,50,50,45,50,46,48,50,32,48,45,49,46,51,53,52,45,46,53,49,45,50,46,48,52,45,49,46,54,50,50,45,50,46,48,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,53,46,51,57,54,32,51,46,48,48,49,86,49,49,72,54,46,50,48,57,86,56,46,52,51,72,51,46,54,56,55,86,49,49,72,50,46,53,86,53,46,48,48,49,104,49,46,49,56,55,118,50,46,52,52,104,50,46,53,50,50,86,53,104,49,46,49,56,55,122,77,56,46,53,32,49,49,86,53,46,48,48,49,104,50,46,49,56,56,99,49,46,56,50,52,32,48,32,50,46,54,56,53,32,49,46,48,57,32,50,46,54,56,53,32,50,46,57,56,52,67,49,51,46,51,55,51,32,57,46,56,57,51,32,49,50,46,53,32,49,49,32,49,48,46,54,57,32,49,49,72,56,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,100,103,101,84,109,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,100,103,101,84,109,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,50,57,53,32,49,49,86,53,46,57,57,53,72,55,86,53,72,50,46,52,48,51,118,46,57,57,52,104,49,46,55,48,49,86,49,49,104,49,46,49,57,122,109,51,46,51,57,55,32,48,86,55,46,48,49,104,46,48,53,56,108,49,46,52,50,56,32,51,46,50,51,57,104,46,55,55,51,108,49,46,52,50,45,51,46,50,52,104,46,48,53,55,86,49,49,72,49,51,46,53,86,53,46,48,48,49,104,45,49,46,50,108,45,49,46,55,49,32,51,46,56,57,52,104,45,46,48,51,57,108,45,49,46,55,49,45,51,46,56,57,52,72,55,46,54,51,52,86,49,49,104,49,46,48,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,100,103,101,84,109,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,100,103,101,84,109,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,51,46,50,57,53,32,51,46,57,57,53,86,49,49,72,52,46,49,48,52,86,53,46,57,57,53,104,45,49,46,55,86,53,72,55,118,46,57,57,52,72,53,46,50,57,53,122,77,56,46,54,57,50,32,55,46,48,49,86,49,49,72,55,46,54,51,51,86,53,46,48,48,49,104,49,46,50,48,57,108,49,46,55,49,32,51,46,56,57,52,104,46,48,51,57,108,49,46,55,49,45,51,46,56,57,52,72,49,51,46,53,86,49,49,104,45,49,46,48,55,50,86,55,46,48,49,104,45,46,48,53,55,108,45,49,46,52,50,32,51,46,50,51,57,104,45,46,55,55,51,76,56,46,55,53,32,55,46,48,48,56,104,45,46,48,53,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,100,103,101,86,111,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,100,103,101,86,111,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,48,56,32,49,49,104,49,46,52,50,57,108,49,46,57,57,45,53,46,57,57,57,72,54,46,54,49,76,53,46,50,55,55,32,57,46,55,48,56,72,53,46,50,50,76,51,46,56,55,53,32,53,46,48,48,49,72,50,46,53,76,52,46,53,48,56,32,49,49,122,77,49,51,46,53,32,56,46,51,57,118,45,46,55,55,99,48,45,49,46,54,57,54,45,46,57,54,50,45,50,46,55,51,51,45,50,46,53,54,54,45,50,46,55,51,51,45,49,46,54,48,52,32,48,45,50,46,53,55,49,32,49,46,48,50,57,45,50,46,53,55,49,32,50,46,55,51,52,118,46,55,54,57,99,48,32,49,46,54,57,49,46,57,54,55,32,50,46,55,50,52,32,50,46,53,55,32,50,46,55,50,52,32,49,46,54,48,53,32,48,32,50,46,53,54,55,45,49,46,48,51,51,32,50,46,53,54,55,45,50,46,55,50,52,122,109,45,49,46,50,48,52,45,46,55,55,56,118,46,55,56,50,99,48,32,49,46,49,53,54,45,46,53,55,49,32,49,46,55,51,50,45,49,46,51,54,50,32,49,46,55,51,50,45,46,55,57,54,32,48,45,49,46,51,54,51,45,46,53,55,54,45,49,46,51,54,51,45,49,46,55,51,50,118,45,46,55,56,50,99,48,45,49,46,49,53,54,46,53,54,55,45,49,46,55,51,54,32,49,46,51,54,51,45,49,46,55,51,54,46,55,57,32,48,32,49,46,51,54,50,46,53,56,32,49,46,51,54,50,32,49,46,55,51,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,100,103,101,86,111,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,100,103,101,86,111,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,50,57,54,32,56,46,51,57,52,118,45,46,55,56,50,99,48,45,49,46,49,53,54,45,46,53,55,49,45,49,46,55,51,54,45,49,46,51,54,50,45,49,46,55,51,54,45,46,55,57,54,32,48,45,49,46,51,54,51,46,53,56,45,49,46,51,54,51,32,49,46,55,51,54,118,46,55,56,50,99,48,32,49,46,49,53,54,46,53,54,55,32,49,46,55,51,50,32,49,46,51,54,51,32,49,46,55,51,50,46,55,57,32,48,32,49,46,51,54,50,45,46,53,55,54,32,49,46,51,54,50,45,49,46,55,51,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,49,49,46,53,32,53,46,54,50,118,46,55,55,99,48,32,49,46,54,57,49,45,46,57,54,50,32,50,46,55,50,52,45,50,46,53,54,54,32,50,46,55,50,52,45,49,46,54,48,52,32,48,45,50,46,53,55,49,45,49,46,48,51,51,45,50,46,53,55,49,45,50,46,55,50,52,118,45,46,55,55,99,48,45,49,46,55,48,52,46,57,54,55,45,50,46,55,51,51,32,50,46,53,55,45,50,46,55,51,51,32,49,46,54,48,53,32,48,32,50,46,53,54,55,32,49,46,48,51,55,32,50,46,53,54,55,32,50,46,55,51,52,122,77,53,46,57,51,55,32,49,49,72,52,46,53,48,56,76,50,46,53,32,53,46,48,48,49,104,49,46,51,55,53,76,53,46,50,50,32,57,46,55,48,56,104,46,48,53,55,76,54,46,54,49,32,53,46,48,48,49,104,49,46,51,49,56,76,53,46,57,51,55,32,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,103,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,103,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,97,50,46,53,32,50,46,53,32,48,32,48,32,49,32,50,46,53,32,50,46,53,86,52,104,45,53,118,45,46,53,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,56,32,49,122,109,51,46,53,32,51,118,45,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,48,45,55,32,48,86,52,72,49,118,49,48,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,104,45,51,46,53,122,77,50,32,53,104,49,50,118,57,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,103,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,103,67,104,101,99,107,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,56,53,52,32,56,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,49,48,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,49,97,50,46,53,32,50,46,53,32,48,32,48,32,49,32,50,46,53,32,50,46,53,86,52,104,45,53,118,45,46,53,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,56,32,49,122,109,51,46,53,32,51,118,45,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,48,45,55,32,48,86,52,72,49,118,49,48,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,104,45,51,46,53,122,77,50,32,53,104,49,50,118,57,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,103,67,104,101,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,103,67,104,101,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,53,32,51,46,53,97,50,46,53,32,50,46,53,32,48,32,48,32,48,45,53,32,48,86,52,104,53,118,45,46,53,122,109,49,32,48,86,52,72,49,53,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,104,51,46,53,118,45,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,49,32,55,32,48,122,109,45,46,54,52,54,32,53,46,51,53,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,55,46,53,32,49,48,46,55,57,51,32,54,46,51,53,52,32,57,46,54,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,49,46,53,32,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,51,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,103,68,97,115,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,103,68,97,115,104,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,53,46,53,32,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,49,97,50,46,53,32,50,46,53,32,48,32,48,32,49,32,50,46,53,32,50,46,53,86,52,104,45,53,118,45,46,53,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,56,32,49,122,109,51,46,53,32,51,118,45,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,48,45,55,32,48,86,52,72,49,118,49,48,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,104,45,51,46,53,122,77,50,32,53,104,49,50,118,57,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,103,68,97,115,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,103,68,97,115,104,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,53,32,51,46,53,97,50,46,53,32,50,46,53,32,48,32,48,32,48,45,53,32,48,86,52,104,53,118,45,46,53,122,109,49,32,48,86,52,72,49,53,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,104,51,46,53,118,45,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,49,32,55,32,48,122,77,54,32,57,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,103,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,103,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,97,50,46,53,32,50,46,53,32,48,32,48,32,49,32,50,46,53,32,50,46,53,86,52,104,45,53,118,45,46,53,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,56,32,49,122,109,51,46,53,32,51,118,45,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,48,45,55,32,48,86,52,72,49,118,49,48,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,104,45,51,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,103,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,103,80,108,117,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,55,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,46,53,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,86,49,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,49,46,53,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,49,97,50,46,53,32,50,46,53,32,48,32,48,32,49,32,50,46,53,32,50,46,53,86,52,104,45,53,118,45,46,53,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,56,32,49,122,109,51,46,53,32,51,118,45,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,48,45,55,32,48,86,52,72,49,118,49,48,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,104,45,51,46,53,122,77,50,32,53,104,49,50,118,57,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,103,80,108,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,103,80,108,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,53,32,51,46,53,97,50,46,53,32,50,46,53,32,48,32,48,32,48,45,53,32,48,86,52,104,53,118,45,46,53,122,109,49,32,48,86,52,72,49,53,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,104,51,46,53,118,45,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,49,32,55,32,48,122,77,56,46,53,32,56,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,49,46,53,72,54,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,46,53,86,49,50,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,49,46,53,72,49,48,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,56,46,53,86,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,103,88,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,103,88,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,46,49,52,54,32,56,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,57,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,49,48,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,49,48,46,55,48,55,108,45,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,49,48,32,54,46,49,52,54,32,56,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,49,97,50,46,53,32,50,46,53,32,48,32,48,32,49,32,50,46,53,32,50,46,53,86,52,104,45,53,118,45,46,53,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,56,32,49,122,109,51,46,53,32,51,118,45,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,48,45,55,32,48,86,52,72,49,118,49,48,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,104,45,51,46,53,122,77,50,32,53,104,49,50,118,57,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,103,88,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,103,88,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,53,32,51,46,53,97,50,46,53,32,50,46,53,32,48,32,48,32,48,45,53,32,48,86,52,104,53,118,45,46,53,122,109,49,32,48,86,52,72,49,53,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,104,51,46,53,118,45,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,49,32,55,32,48,122,77,54,46,56,53,52,32,56,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,55,46,50,57,51,32,49,48,108,45,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,76,56,32,49,48,46,55,48,55,108,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,76,56,46,55,48,55,32,49,48,108,49,46,49,52,55,45,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,32,57,46,50,57,51,32,54,46,56,53,52,32,56,46,49,52,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,114,67,104,97,114,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,114,67,104,97,114,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,49,49,72,50,118,51,104,50,118,45,51,122,109,53,45,52,72,55,118,55,104,50,86,55,122,109,53,45,53,118,49,50,104,45,50,86,50,104,50,122,109,45,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,50,122,77,54,32,55,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,55,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,55,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,55,122,109,45,53,32,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,114,67,104,97,114,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,114,67,104,97,114,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,49,49,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,51,122,109,53,45,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,55,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,55,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,55,122,109,53,45,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,114,67,104,97,114,116,76,105,110,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,118,45,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,51,104,49,86,55,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,55,104,49,86,50,122,109,49,32,49,50,104,50,86,50,104,45,50,118,49,50,122,109,45,51,32,48,86,55,72,55,118,55,104,50,122,109,45,53,32,48,118,45,51,72,50,118,51,104,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,114,67,104,97,114,116,76,105,110,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,118,45,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,51,104,49,86,55,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,55,104,49,86,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,114,67,104,97,114,116,83,116,101,112,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,114,67,104,97,114,116,83,116,101,112,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,46,53,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,48,122,77,50,32,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,50,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,50,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,50,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,115,107,101,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,115,107,101,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,55,53,55,32,49,46,48,55,49,97,46,53,46,53,32,48,32,48,32,49,32,46,49,55,50,46,54,56,54,76,51,46,51,56,51,32,54,104,57,46,50,51,52,76,49,48,46,48,55,32,49,46,55,53,55,97,46,53,46,53,32,48,32,49,32,49,32,46,56,53,56,45,46,53,49,52,76,49,51,46,55,56,51,32,54,72,49,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,118,52,46,53,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,50,46,53,32,50,46,53,104,45,57,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,49,32,49,51,46,53,86,57,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,55,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,46,50,49,55,76,53,46,48,55,32,49,46,50,52,51,97,46,53,46,53,32,48,32,48,32,49,32,46,54,56,54,45,46,49,55,50,122,77,50,32,57,118,52,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,46,53,32,49,53,104,57,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,86,57,72,50,122,77,49,32,55,118,49,104,49,52,86,55,72,49,122,109,51,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,65,46,53,46,53,32,48,32,48,32,49,32,52,32,49,48,122,109,50,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,65,46,53,46,53,32,48,32,48,32,49,32,54,32,49,48,122,109,50,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,65,46,53,46,53,32,48,32,48,32,49,32,56,32,49,48,122,109,50,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,50,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,115,107,101,116,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,115,107,101,116,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,49,48,97,49,32,49,32,48,32,48,32,49,32,50,32,48,118,50,97,49,32,49,32,48,32,48,32,49,45,50,32,48,118,45,50,122,109,51,32,48,97,49,32,49,32,48,32,48,32,49,32,50,32,48,118,50,97,49,32,49,32,48,32,48,32,49,45,50,32,48,118,45,50,122,109,51,32,48,97,49,32,49,32,48,32,49,32,49,32,50,32,48,118,50,97,49,32,49,32,48,32,48,32,49,45,50,32,48,118,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,55,53,55,32,49,46,48,55,49,97,46,53,46,53,32,48,32,48,32,49,32,46,49,55,50,46,54,56,54,76,51,46,51,56,51,32,54,104,57,46,50,51,52,76,49,48,46,48,55,32,49,46,55,53,55,97,46,53,46,53,32,48,32,49,32,49,32,46,56,53,56,45,46,53,49,52,76,49,51,46,55,56,51,32,54,72,49,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,46,54,50,51,108,45,49,46,56,52,52,32,54,46,52,53,54,97,46,55,53,46,55,53,32,48,32,48,32,49,45,46,55,50,50,46,53,52,52,72,51,46,54,57,97,46,55,53,46,55,53,32,48,32,48,32,49,45,46,55,50,50,45,46,53,52,52,76,49,46,49,50,51,32,56,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,54,104,49,46,55,49,55,76,53,46,48,55,32,49,46,50,52,51,97,46,53,46,53,32,48,32,48,32,49,32,46,54,56,54,45,46,49,55,50,122,77,50,46,49,54,51,32,56,108,49,46,55,49,52,32,54,104,56,46,50,52,54,108,49,46,55,49,52,45,54,72,50,46,49,54,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,115,107,101,116,50,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,115,107,101,116,50,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,57,50,57,32,49,46,55,53,55,97,46,53,46,53,32,48,32,49,32,48,45,46,56,53,56,45,46,53,49,52,76,50,46,50,49,55,32,54,72,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,46,54,50,51,108,49,46,56,52,52,32,54,46,52,53,54,65,46,55,53,46,55,53,32,48,32,48,32,48,32,51,46,54,57,32,49,53,104,56,46,54,50,50,97,46,55,53,46,55,53,32,48,32,48,32,48,32,46,55,50,50,45,46,53,52,52,76,49,52,46,56,55,55,32,56,104,46,54,50,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,46,55,49,55,76,49,48,46,57,51,32,49,46,50,52,51,97,46,53,46,53,32,48,32,49,32,48,45,46,56,53,56,46,53,49,52,76,49,50,46,54,49,55,32,54,72,51,46,51,56,51,76,53,46,57,51,32,49,46,55,53,55,122,77,52,32,49,48,97,49,32,49,32,48,32,48,32,49,32,50,32,48,118,50,97,49,32,49,32,48,32,49,32,49,45,50,32,48,118,45,50,122,109,51,32,48,97,49,32,49,32,48,32,48,32,49,32,50,32,48,118,50,97,49,32,49,32,48,32,49,32,49,45,50,32,48,118,45,50,122,109,52,45,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,49,32,49,45,50,32,48,118,45,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,115,107,101,116,51,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,115,107,101,116,51,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,55,53,55,32,49,46,48,55,49,97,46,53,46,53,32,48,32,48,32,49,32,46,49,55,50,46,54,56,54,76,51,46,51,56,51,32,54,104,57,46,50,51,52,76,49,48,46,48,55,32,49,46,55,53,55,97,46,53,46,53,32,48,32,49,32,49,32,46,56,53,56,45,46,53,49,52,76,49,51,46,55,56,51,32,54,72,49,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,54,104,49,46,55,49,55,76,53,46,48,55,32,49,46,50,52,51,97,46,53,46,53,32,48,32,48,32,49,32,46,54,56,54,45,46,49,55,50,122,77,51,46,51,57,52,32,49,53,108,45,49,46,52,56,45,54,104,45,46,57,55,108,49,46,53,50,53,32,54,46,52,50,54,97,46,55,53,46,55,53,32,48,32,48,32,48,32,46,55,50,57,46,53,55,52,104,57,46,54,48,54,97,46,55,53,46,55,53,32,48,32,48,32,48,32,46,55,51,45,46,53,55,52,76,49,53,46,48,53,54,32,57,104,45,46,57,55,50,108,45,49,46,52,55,57,32,54,104,45,57,46,50,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,115,107,101,116,51,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,115,107,101,116,51,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,55,53,55,32,49,46,48,55,49,97,46,53,46,53,32,48,32,48,32,49,32,46,49,55,50,46,54,56,54,76,51,46,51,56,51,32,54,104,57,46,50,51,52,76,49,48,46,48,55,32,49,46,55,53,55,97,46,53,46,53,32,48,32,49,32,49,32,46,56,53,56,45,46,53,49,52,76,49,51,46,55,56,51,32,54,72,49,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,54,104,49,46,55,49,55,76,53,46,48,55,32,49,46,50,52,51,97,46,53,46,53,32,48,32,48,32,49,32,46,54,56,54,45,46,49,55,50,122,77,50,46,52,54,56,32,49,53,46,52,50,54,76,46,57,52,51,32,57,104,49,52,46,49,49,52,108,45,49,46,53,50,53,32,54,46,52,50,54,97,46,55,53,46,55,53,32,48,32,48,32,49,45,46,55,50,57,46,53,55,52,72,51,46,49,57,55,97,46,55,53,46,55,53,32,48,32,48,32,49,45,46,55,51,45,46,53,55,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,115,107,101,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,115,107,101,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,48,55,49,32,49,46,50,52,51,97,46,53,46,53,32,48,32,48,32,49,32,46,56,53,56,46,53,49,52,76,51,46,51,56,51,32,54,104,57,46,50,51,52,76,49,48,46,48,55,32,49,46,55,53,55,97,46,53,46,53,32,48,32,49,32,49,32,46,56,53,56,45,46,53,49,52,76,49,51,46,55,56,51,32,54,72,49,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,49,53,118,53,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,57,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,54,104,49,46,55,49,55,76,53,46,48,55,32,49,46,50,52,51,122,77,51,46,53,32,49,48,46,53,97,46,53,46,53,32,48,32,49,32,48,45,49,32,48,118,51,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,51,122,109,50,46,53,32,48,97,46,53,46,53,32,48,32,49,32,48,45,49,32,48,118,51,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,51,122,109,50,46,53,32,48,97,46,53,46,53,32,48,32,49,32,48,45,49,32,48,118,51,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,51,122,109,50,46,53,32,48,97,46,53,46,53,32,48,32,49,32,48,45,49,32,48,118,51,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,51,122,109,50,46,53,32,48,97,46,53,46,53,32,48,32,49,32,48,45,49,32,48,118,51,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,116,116,101,114,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,116,116,101,114,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,54,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,54,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,52,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,54,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,109,49,52,32,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,118,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,116,116,101,114,121,67,104,97,114,103,105,110,103,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,116,116,101,114,121,67,104,97,114,103,105,110,103,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,53,56,53,32,50,46,53,54,56,97,46,53,46,53,32,48,32,48,32,49,32,46,50,50,54,46,53,56,76,56,46,54,55,55,32,54,46,56,51,50,104,49,46,57,57,97,46,53,46,53,32,48,32,48,32,49,32,46,51,54,52,46,56,52,51,108,45,53,46,51,51,52,32,53,46,54,54,55,97,46,53,46,53,32,48,32,48,32,49,45,46,56,52,50,45,46,52,57,76,53,46,57,57,32,57,46,49,54,55,72,52,97,46,53,46,53,32,48,32,48,32,49,45,46,51,54,52,45,46,56,52,51,108,53,46,51,51,51,45,53,46,54,54,55,97,46,53,46,53,32,48,32,48,32,49,32,46,54,49,54,45,46,48,57,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,52,104,52,46,51,51,50,108,45,46,57,52,32,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,52,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,46,51,56,108,45,46,51,48,56,32,49,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,54,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,54,104,50,46,52,53,76,50,46,57,48,56,32,55,46,54,51,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,46,51,49,51,32,49,48,72,50,86,54,122,109,56,46,53,57,53,45,50,108,45,46,51,48,56,32,49,72,49,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,57,46,50,55,54,108,45,46,57,52,50,32,49,72,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,54,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,46,52,48,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,32,49,48,104,45,49,46,55,56,51,108,49,46,53,52,50,45,49,46,54,51,57,99,46,48,57,55,45,46,49,48,51,46,49,55,56,45,46,50,49,56,46,50,52,49,45,46,51,52,86,49,48,122,109,48,45,51,46,51,53,52,86,54,104,45,46,54,52,54,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,46,54,52,54,46,54,52,54,122,77,49,54,32,56,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,118,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,116,116,101,114,121,70,117,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,116,116,101,114,121,70,117,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,54,104,49,48,118,52,72,50,86,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,52,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,54,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,49,48,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,54,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,48,122,109,52,32,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,118,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,97,116,116,101,114,121,72,97,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,97,116,116,101,114,121,72,97,108,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,54,104,53,118,52,72,50,86,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,52,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,54,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,49,48,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,54,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,48,122,109,52,32,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,118,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,101,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,101,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,97,50,32,50,32,48,32,48,32,48,32,50,45,50,72,54,97,50,32,50,32,48,32,48,32,48,32,50,32,50,122,77,56,32,49,46,57,49,56,108,45,46,55,57,55,46,49,54,49,65,52,46,48,48,50,32,52,46,48,48,50,32,48,32,48,32,48,32,52,32,54,99,48,32,46,54,50,56,45,46,49,51,52,32,50,46,49,57,55,45,46,52,53,57,32,51,46,55,52,50,45,46,49,54,46,55,54,55,45,46,51,55,54,32,49,46,53,54,54,45,46,54,54,51,32,50,46,50,53,56,104,49,48,46,50,52,52,99,45,46,50,56,55,45,46,54,57,50,45,46,53,48,50,45,49,46,52,57,45,46,54,54,51,45,50,46,50,53,56,67,49,50,46,49,51,52,32,56,46,49,57,55,32,49,50,32,54,46,54,50,56,32,49,50,32,54,97,52,46,48,48,50,32,52,46,48,48,50,32,48,32,48,32,48,45,51,46,50,48,51,45,51,46,57,50,76,56,32,49,46,57,49,55,122,77,49,52,46,50,50,32,49,50,99,46,50,50,51,46,52,52,55,46,52,56,49,46,56,48,49,46,55,56,32,49,72,49,99,46,50,57,57,45,46,49,57,57,46,53,53,55,45,46,53,53,51,46,55,56,45,49,67,50,46,54,56,32,49,48,46,50,32,51,32,54,46,56,56,32,51,32,54,99,48,45,50,46,52,50,32,49,46,55,50,45,52,46,52,52,32,52,46,48,48,53,45,52,46,57,48,49,97,49,32,49,32,48,32,49,32,49,32,49,46,57,57,32,48,65,53,46,48,48,50,32,53,46,48,48,50,32,48,32,48,32,49,32,49,51,32,54,99,48,32,46,56,56,46,51,50,32,52,46,50,32,49,46,50,50,32,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,101,108,108,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,101,108,108,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,97,50,32,50,32,48,32,48,32,48,32,50,45,50,72,54,97,50,32,50,32,48,32,48,32,48,32,50,32,50,122,109,46,57,57,53,45,49,52,46,57,48,49,97,49,32,49,32,48,32,49,32,48,45,49,46,57,57,32,48,65,53,46,48,48,50,32,53,46,48,48,50,32,48,32,48,32,48,32,51,32,54,99,48,32,49,46,48,57,56,45,46,53,32,54,45,50,32,55,104,49,52,99,45,49,46,53,45,49,45,50,45,53,46,57,48,50,45,50,45,55,32,48,45,50,46,52,50,45,49,46,55,50,45,52,46,52,52,45,52,46,48,48,53,45,52,46,57,48,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,101,122,105,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,101,122,105,101,114,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,48,32,49,48,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,57,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,32,49,48,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,46,53,32,49,51,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,49,46,53,118,45,49,122,109,49,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,109,49,48,46,53,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,51,46,53,32,57,104,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,46,53,118,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,45,49,46,53,118,45,49,122,109,49,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,77,54,32,52,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,46,53,32,51,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,48,32,52,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,56,46,53,32,55,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,54,32,53,46,53,118,45,49,122,77,55,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,32,52,46,53,72,49,46,56,54,54,97,49,32,49,32,48,32,49,32,48,32,48,32,49,104,50,46,54,54,56,65,54,46,53,49,55,32,54,46,53,49,55,32,48,32,48,32,48,32,49,46,56,49,52,32,57,72,50,46,53,99,46,49,50,51,32,48,32,46,50,52,52,46,48,49,53,46,51,53,56,46,48,52,51,97,53,46,53,49,55,32,53,46,53,49,55,32,48,32,48,32,49,32,51,46,49,56,53,45,51,46,49,56,53,65,49,46,53,48,51,32,49,46,53,48,51,32,48,32,48,32,49,32,54,32,53,46,53,118,45,49,122,109,51,46,57,53,55,32,49,46,51,53,56,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,48,32,53,46,53,118,45,49,104,52,46,49,51,52,97,49,32,49,32,48,32,49,32,49,32,48,32,49,104,45,50,46,54,54,56,97,54,46,53,49,55,32,54,46,53,49,55,32,48,32,48,32,49,32,50,46,55,50,32,51,46,53,72,49,51,46,53,99,45,46,49,50,51,32,48,45,46,50,52,51,46,48,49,53,45,46,51,53,56,46,48,52,51,97,53,46,53,49,55,32,53,46,53,49,55,32,48,32,48,32,48,45,51,46,49,56,53,45,51,46,49,56,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,101,122,105,101,114,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,101,122,105,101,114,50,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,46,53,32,49,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,32,50,46,53,104,52,46,49,51,52,97,49,32,49,32,48,32,49,32,49,32,48,32,49,104,45,50,46,48,49,99,46,49,56,46,49,56,46,51,52,46,51,56,49,46,52,56,52,46,54,48,53,46,54,51,56,46,57,57,50,46,56,57,50,32,50,46,51,53,52,46,56,57,50,32,51,46,56,57,53,32,48,32,49,46,57,57,51,46,50,53,55,32,51,46,48,57,50,46,55,49,51,32,51,46,55,46,51,53,54,46,52,55,54,46,56,57,53,46,55,50,49,32,49,46,55,56,55,46,55,56,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,50,46,53,32,49,49,104,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,46,53,118,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,45,49,46,53,72,54,46,56,54,54,97,49,32,49,32,48,32,49,32,49,32,48,45,49,104,49,46,55,49,49,97,50,46,56,51,57,32,50,46,56,51,57,32,48,32,48,32,49,45,46,49,54,53,45,46,50,67,55,46,55,52,51,32,49,49,46,52,48,55,32,55,46,53,32,49,48,46,48,48,55,32,55,46,53,32,56,99,48,45,49,46,52,54,45,46,50,52,54,45,50,46,53,57,55,45,46,55,51,51,45,51,46,51,53,53,45,46,51,57,45,46,54,48,53,45,46,57,53,50,45,49,45,49,46,55,54,55,45,49,46,49,49,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,46,53,32,53,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,32,51,46,53,118,45,49,122,77,50,46,53,32,50,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,109,49,48,32,49,48,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,105,99,121,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,105,99,121,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,118,46,53,104,52,46,49,52,108,46,51,56,54,45,49,46,49,53,56,65,46,53,46,53,32,48,32,48,32,49,32,49,49,32,52,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,46,54,52,108,45,46,51,49,49,46,57,51,53,46,56,48,55,32,49,46,50,57,97,51,32,51,32,48,32,49,32,49,45,46,56,52,56,46,53,51,108,45,46,53,48,56,45,46,56,49,50,45,50,46,48,55,54,32,51,46,51,50,50,65,46,53,46,53,32,48,32,48,32,49,32,56,32,49,48,46,53,72,53,46,57,53,57,97,51,32,51,32,48,32,49,32,49,45,49,46,56,49,53,45,51,46,50,55,52,76,53,32,53,46,56,53,54,86,53,104,45,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,49,46,53,32,50,46,52,52,51,108,45,46,53,48,56,46,56,49,52,99,46,53,46,52,52,52,46,56,53,32,49,46,48,53,52,46,57,54,55,32,49,46,55,52,51,104,49,46,49,51,57,76,53,46,53,32,54,46,57,52,51,122,77,56,32,57,46,48,53,55,76,57,46,53,57,56,32,54,46,53,72,54,46,52,48,50,76,56,32,57,46,48,53,55,122,77,52,46,57,51,55,32,57,46,53,97,49,46,57,57,55,32,49,46,57,57,55,32,48,32,48,32,48,45,46,52,56,55,45,46,56,55,55,108,45,46,53,52,56,46,56,55,55,104,49,46,48,51,53,122,77,51,46,54,48,51,32,56,46,48,57,50,65,50,32,50,32,48,32,49,32,48,32,52,46,57,51,55,32,49,48,46,53,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,52,50,52,45,46,55,54,53,108,49,46,48,50,55,45,49,46,54,52,51,122,109,55,46,57,52,55,46,53,51,97,50,32,50,32,48,32,49,32,48,32,46,56,52,56,45,46,53,51,108,49,46,48,50,54,32,49,46,54,52,51,97,46,53,46,53,32,48,32,49,32,49,45,46,56,52,56,46,53,51,76,49,49,46,53,53,32,56,46,54,50,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,105,110,111,99,117,108,97,114,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,46,53,32,49,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,32,50,46,53,86,53,104,50,86,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,48,46,53,32,49,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,51,32,50,46,53,118,50,46,51,56,50,97,46,53,46,53,32,48,32,48,32,48,32,46,50,55,54,46,52,52,55,108,46,56,57,53,46,52,52,55,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,53,32,55,46,49,49,56,86,49,52,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,32,49,52,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,49,52,54,45,46,51,53,52,108,46,56,53,52,45,46,56,53,51,86,57,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,46,55,57,51,108,46,56,53,52,46,56,53,51,65,46,53,46,53,32,48,32,48,32,49,32,55,32,49,49,46,53,118,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,46,53,32,49,54,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,32,49,52,46,53,86,55,46,49,49,56,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,46,56,51,45,49,46,51,52,50,108,46,56,57,52,45,46,52,52,55,65,46,53,46,53,32,48,32,48,32,48,32,51,32,52,46,56,56,50,86,50,46,53,122,77,52,46,53,32,50,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,86,51,104,50,118,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,77,54,32,52,72,52,118,46,56,56,50,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,46,56,51,32,49,46,51,52,50,108,45,46,56,57,52,46,52,52,55,65,46,53,46,53,32,48,32,48,32,48,32,50,32,55,46,49,49,56,86,49,51,104,52,118,45,49,46,50,57,51,108,45,46,56,53,52,45,46,56,53,51,65,46,53,46,53,32,48,32,48,32,49,32,53,32,49,48,46,53,118,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,54,46,53,32,56,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,49,32,57,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,49,52,54,46,51,53,52,108,45,46,56,53,52,46,56,53,51,86,49,51,104,52,86,55,46,49,49,56,97,46,53,46,53,32,48,32,48,32,48,45,46,50,55,54,45,46,52,52,55,108,45,46,56,57,53,45,46,52,52,55,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,50,32,52,46,56,56,50,86,52,104,45,50,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,52,122,109,52,45,49,104,50,118,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,86,51,122,109,52,32,49,49,104,45,52,118,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,49,52,122,109,45,56,32,48,72,50,118,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,49,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,105,110,111,99,117,108,97,114,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,32,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,32,50,46,53,86,51,104,52,118,45,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,46,53,32,49,104,45,49,122,77,55,32,52,118,49,104,50,86,52,104,52,118,46,56,56,50,97,46,53,46,53,32,48,32,48,32,48,32,46,50,55,54,46,52,52,55,108,46,56,57,53,46,52,52,55,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,53,32,55,46,49,49,56,86,49,51,72,57,118,45,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,49,52,54,45,46,51,53,52,108,46,56,53,52,45,46,56,53,51,86,57,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,46,55,57,51,108,46,56,53,52,46,56,53,51,65,46,53,46,53,32,48,32,48,32,49,32,55,32,49,49,46,53,86,49,51,72,49,86,55,46,49,49,56,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,46,56,51,45,49,46,51,52,50,108,46,56,57,52,45,46,52,52,55,65,46,53,46,53,32,48,32,48,32,48,32,51,32,52,46,56,56,50,86,52,104,52,122,77,49,32,49,52,118,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,50,46,53,32,49,54,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,55,32,49,52,46,53,86,49,52,72,49,122,109,56,32,48,118,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,46,53,104,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,86,49,52,72,57,122,109,52,45,49,49,72,57,118,45,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,48,46,53,32,49,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,51,32,50,46,53,86,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,108,111,99,107,113,117,111,116,101,76,101,102,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,49,122,109,53,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,54,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,54,122,109,45,53,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,49,122,109,46,55,57,45,53,46,51,55,51,99,46,49,49,50,45,46,48,55,56,46,50,54,45,46,49,55,46,52,52,52,45,46,50,55,53,76,51,46,53,50,52,32,54,99,45,46,49,50,50,46,48,55,52,45,46,50,55,50,46,49,55,45,46,52,53,50,46,50,56,55,45,46,49,56,46,49,49,55,45,46,51,53,46,50,54,45,46,53,49,46,52,50,56,97,50,46,52,50,53,32,50,46,52,50,53,32,48,32,48,32,48,45,46,51,57,56,46,53,54,50,99,45,46,49,49,46,50,48,55,45,46,49,54,52,46,52,51,56,45,46,49,54,52,46,54,57,50,32,48,32,46,51,54,46,48,55,50,46,54,53,46,50,49,55,46,56,55,51,46,49,52,52,46,50,49,57,46,51,56,53,46,51,50,56,46,55,50,46,51,50,56,46,50,49,53,32,48,32,46,51,56,51,45,46,48,55,46,53,48,52,45,46,50,49,49,97,46,54,57,55,46,54,57,55,32,48,32,48,32,48,32,46,49,56,56,45,46,52,54,51,99,48,45,46,50,51,45,46,48,55,45,46,52,48,52,45,46,50,49,49,45,46,53,50,49,45,46,49,51,55,45,46,49,50,49,45,46,51,50,54,45,46,49,56,50,45,46,53,54,56,45,46,49,56,50,104,45,46,50,56,50,99,46,48,50,52,45,46,50,48,51,46,48,54,53,45,46,51,55,46,49,50,51,45,46,52,57,56,97,49,46,51,56,32,49,46,51,56,32,48,32,48,32,49,32,46,50,53,50,45,46,51,55,32,49,46,57,52,32,49,46,57,52,32,48,32,48,32,49,32,46,51,52,54,45,46,50,57,56,122,109,50,46,49,54,55,32,48,99,46,49,49,51,45,46,48,55,56,46,50,54,50,45,46,49,55,46,52,52,53,45,46,50,55,53,76,53,46,54,57,50,32,54,99,45,46,49,50,50,46,48,55,52,45,46,50,55,50,46,49,55,45,46,52,53,50,46,50,56,55,45,46,49,56,46,49,49,55,45,46,51,53,46,50,54,45,46,53,49,46,52,50,56,97,50,46,52,50,53,32,50,46,52,50,53,32,48,32,48,32,48,45,46,51,57,56,46,53,54,50,99,45,46,49,49,46,50,48,55,45,46,49,54,52,46,52,51,56,45,46,49,54,52,46,54,57,50,32,48,32,46,51,54,46,48,55,50,46,54,53,46,50,49,55,46,56,55,51,46,49,52,52,46,50,49,57,46,51,56,53,46,51,50,56,46,55,50,46,51,50,56,46,50,49,53,32,48,32,46,51,56,51,45,46,48,55,46,53,48,52,45,46,50,49,49,97,46,54,57,55,46,54,57,55,32,48,32,48,32,48,32,46,49,56,56,45,46,52,54,51,99,48,45,46,50,51,45,46,48,55,45,46,52,48,52,45,46,50,49,49,45,46,53,50,49,45,46,49,51,55,45,46,49,50,49,45,46,51,50,54,45,46,49,56,50,45,46,53,54,56,45,46,49,56,50,104,45,46,50,56,50,97,49,46,55,53,32,49,46,55,53,32,48,32,48,32,49,32,46,49,49,56,45,46,52,57,50,99,46,48,53,56,45,46,49,51,46,49,52,52,45,46,50,53,52,46,50,53,55,45,46,51,55,53,97,49,46,57,52,32,49,46,57,52,32,48,32,48,32,49,32,46,51,52,54,45,46,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,108,111,99,107,113,117,111,116,101,82,105,103,104,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,49,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,54,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,54,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,49,122,109,49,48,46,49,49,51,45,53,46,51,55,51,97,54,46,53,57,32,54,46,53,57,32,48,32,48,32,48,45,46,52,52,53,45,46,50,55,53,108,46,50,49,45,46,51,53,50,99,46,49,50,50,46,48,55,52,46,50,55,50,46,49,55,46,52,53,50,46,50,56,55,46,49,56,46,49,49,55,46,51,53,46,50,54,46,53,49,46,52,50,56,46,49,53,54,46,49,54,52,46,50,56,57,46,51,53,49,46,51,57,56,46,53,54,50,46,49,49,46,50,48,55,46,49,54,52,46,52,51,56,46,49,54,52,46,54,57,50,32,48,32,46,51,54,45,46,48,55,50,46,54,53,45,46,50,49,54,46,56,55,51,45,46,49,52,53,46,50,49,57,45,46,51,56,53,46,51,50,56,45,46,55,50,49,46,51,50,56,45,46,50,49,53,32,48,45,46,51,56,51,45,46,48,55,45,46,53,48,52,45,46,50,49,49,97,46,54,57,55,46,54,57,55,32,48,32,48,32,49,45,46,49,56,56,45,46,52,54,51,99,48,45,46,50,51,46,48,55,45,46,52,48,52,46,50,49,49,45,46,53,50,49,46,49,51,55,45,46,49,50,49,46,51,50,54,45,46,49,56,50,46,53,54,57,45,46,49,56,50,104,46,50,56,49,97,49,46,54,56,54,32,49,46,54,56,54,32,48,32,48,32,48,45,46,49,50,51,45,46,52,57,56,32,49,46,51,55,57,32,49,46,51,55,57,32,48,32,48,32,48,45,46,50,53,50,45,46,51,55,32,49,46,57,52,32,49,46,57,52,32,48,32,48,32,48,45,46,51,52,54,45,46,50,57,56,122,109,45,50,46,49,54,56,32,48,65,54,46,53,57,32,54,46,53,57,32,48,32,48,32,48,32,49,48,32,54,46,51,53,50,76,49,48,46,50,49,32,54,99,46,49,50,50,46,48,55,52,46,50,55,50,46,49,55,46,52,53,50,46,50,56,55,46,49,56,46,49,49,55,46,51,53,46,50,54,46,53,49,46,52,50,56,46,49,53,54,46,49,54,52,46,50,56,57,46,51,53,49,46,51,57,56,46,53,54,50,46,49,49,46,50,48,55,46,49,54,52,46,52,51,56,46,49,54,52,46,54,57,50,32,48,32,46,51,54,45,46,48,55,50,46,54,53,45,46,50,49,54,46,56,55,51,45,46,49,52,53,46,50,49,57,45,46,51,56,53,46,51,50,56,45,46,55,50,49,46,51,50,56,45,46,50,49,53,32,48,45,46,51,56,51,45,46,48,55,45,46,53,48,52,45,46,50,49,49,97,46,54,57,55,46,54,57,55,32,48,32,48,32,49,45,46,49,56,56,45,46,52,54,51,99,48,45,46,50,51,46,48,55,45,46,52,48,52,46,50,49,49,45,46,53,50,49,46,49,51,55,45,46,49,50,49,46,51,50,55,45,46,49,56,50,46,53,54,57,45,46,49,56,50,104,46,50,56,49,97,49,46,55,52,57,32,49,46,55,52,57,32,48,32,48,32,48,45,46,49,49,55,45,46,52,57,50,32,49,46,52,48,50,32,49,46,52,48,50,32,48,32,48,32,48,45,46,50,53,56,45,46,51,55,53,32,49,46,57,52,32,49,46,57,52,32,48,32,48,32,48,45,46,51,52,54,45,46,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,50,46,56,50,56,99,46,56,56,53,45,46,51,55,32,50,46,49,53,52,45,46,55,54,57,32,51,46,51,56,56,45,46,56,57,51,32,49,46,51,51,45,46,49,51,52,32,50,46,52,53,56,46,48,54,51,32,51,46,49,49,50,46,55,53,50,118,57,46,55,52,54,99,45,46,57,51,53,45,46,53,51,45,50,46,49,50,45,46,54,48,51,45,51,46,50,49,51,45,46,52,57,51,45,49,46,49,56,46,49,50,45,50,46,51,55,46,52,54,49,45,51,46,50,56,55,46,56,49,49,86,50,46,56,50,56,122,109,55,46,53,45,46,49,52,49,99,46,54,53,52,45,46,54,56,57,32,49,46,55,56,50,45,46,56,56,54,32,51,46,49,49,50,45,46,55,53,50,32,49,46,50,51,52,46,49,50,52,32,50,46,53,48,51,46,53,50,51,32,51,46,51,56,56,46,56,57,51,118,57,46,57,50,51,99,45,46,57,49,56,45,46,51,53,45,50,46,49,48,55,45,46,54,57,50,45,51,46,50,56,55,45,46,56,49,45,49,46,48,57,52,45,46,49,49,49,45,50,46,50,55,56,45,46,48,51,57,45,51,46,50,49,51,46,52,57,50,86,50,46,54,56,55,122,77,56,32,49,46,55,56,51,67,55,46,48,49,53,46,57,51,54,32,53,46,53,56,55,46,56,49,32,52,46,50,56,55,46,57,52,99,45,49,46,53,49,52,46,49,53,51,45,51,46,48,52,50,46,54,55,50,45,51,46,57,57,52,32,49,46,49,48,53,65,46,53,46,53,32,48,32,48,32,48,32,48,32,50,46,53,118,49,49,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,55,46,52,53,53,99,46,56,56,50,45,46,52,32,50,46,51,48,51,45,46,56,56,49,32,51,46,54,56,45,49,46,48,50,32,49,46,52,48,57,45,46,49,52,50,32,50,46,53,57,46,48,56,55,32,51,46,50,50,51,46,56,55,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,56,32,48,99,46,54,51,51,45,46,55,57,32,49,46,56,49,52,45,49,46,48,49,57,32,51,46,50,50,50,45,46,56,55,55,32,49,46,51,55,56,46,49,51,57,32,50,46,56,46,54,50,32,51,46,54,56,49,32,49,46,48,50,65,46,53,46,53,32,48,32,48,32,48,32,49,54,32,49,51,46,53,118,45,49,49,97,46,53,46,53,32,48,32,48,32,48,45,46,50,57,51,45,46,52,53,53,99,45,46,57,53,50,45,46,52,51,51,45,50,46,52,56,45,46,57,53,50,45,51,46,57,57,52,45,49,46,49,48,53,67,49,48,46,52,49,51,46,56,48,57,32,56,46,57,56,53,46,57,51,54,32,56,32,49,46,55,56,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,46,55,56,51,67,55,46,48,49,53,46,57,51,54,32,53,46,53,56,55,46,56,49,32,52,46,50,56,55,46,57,52,99,45,49,46,53,49,52,46,49,53,51,45,51,46,48,52,50,46,54,55,50,45,51,46,57,57,52,32,49,46,49,48,53,65,46,53,46,53,32,48,32,48,32,48,32,48,32,50,46,53,118,49,49,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,55,46,52,53,53,99,46,56,56,50,45,46,52,32,50,46,51,48,51,45,46,56,56,49,32,51,46,54,56,45,49,46,48,50,32,49,46,52,48,57,45,46,49,52,50,32,50,46,53,57,46,48,56,55,32,51,46,50,50,51,46,56,55,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,56,32,48,99,46,54,51,51,45,46,55,57,32,49,46,56,49,52,45,49,46,48,49,57,32,51,46,50,50,50,45,46,56,55,55,32,49,46,51,55,56,46,49,51,57,32,50,46,56,46,54,50,32,51,46,54,56,49,32,49,46,48,50,65,46,53,46,53,32,48,32,48,32,48,32,49,54,32,49,51,46,53,118,45,49,49,97,46,53,46,53,32,48,32,48,32,48,45,46,50,57,51,45,46,52,53,53,99,45,46,57,53,50,45,46,52,51,51,45,50,46,52,56,45,46,57,53,50,45,51,46,57,57,52,45,49,46,49,48,53,67,49,48,46,52,49,51,46,56,48,57,32,56,46,57,56,53,46,57,51,54,32,56,32,49,46,55,56,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,72,97,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,72,97,108,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,53,32,50,46,54,56,55,99,46,54,53,52,45,46,54,56,57,32,49,46,55,56,50,45,46,56,56,54,32,51,46,49,49,50,45,46,55,53,50,32,49,46,50,51,52,46,49,50,52,32,50,46,53,48,51,46,53,50,51,32,51,46,51,56,56,46,56,57,51,118,57,46,57,50,51,99,45,46,57,49,56,45,46,51,53,45,50,46,49,48,55,45,46,54,57,50,45,51,46,50,56,55,45,46,56,49,45,49,46,48,57,52,45,46,49,49,49,45,50,46,50,55,56,45,46,48,51,57,45,51,46,50,49,51,46,52,57,50,86,50,46,54,56,55,122,77,56,32,49,46,55,56,51,67,55,46,48,49,53,46,57,51,54,32,53,46,53,56,55,46,56,49,32,52,46,50,56,55,46,57,52,99,45,49,46,53,49,52,46,49,53,51,45,51,46,48,52,50,46,54,55,50,45,51,46,57,57,52,32,49,46,49,48,53,65,46,53,46,53,32,48,32,48,32,48,32,48,32,50,46,53,118,49,49,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,55,46,52,53,53,99,46,56,56,50,45,46,52,32,50,46,51,48,51,45,46,56,56,49,32,51,46,54,56,45,49,46,48,50,32,49,46,52,48,57,45,46,49,52,50,32,50,46,53,57,46,48,56,55,32,51,46,50,50,51,46,56,55,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,56,32,48,99,46,54,51,51,45,46,55,57,32,49,46,56,49,52,45,49,46,48,49,57,32,51,46,50,50,50,45,46,56,55,55,32,49,46,51,55,56,46,49,51,57,32,50,46,56,46,54,50,32,51,46,54,56,49,32,49,46,48,50,65,46,53,46,53,32,48,32,48,32,48,32,49,54,32,49,51,46,53,118,45,49,49,97,46,53,46,53,32,48,32,48,32,48,45,46,50,57,51,45,46,52,53,53,99,45,46,57,53,50,45,46,52,51,51,45,50,46,52,56,45,46,57,53,50,45,51,46,57,57,52,45,49,46,49,48,53,67,49,48,46,52,49,51,46,56,48,57,32,56,46,57,56,53,46,57,51,54,32,56,32,49,46,55,56,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,55,55,46,52,49,54,76,56,32,49,51,46,49,48,49,108,45,53,46,50,50,51,32,50,46,56,49,53,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,53,46,53,86,50,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,46,53,54,54,108,52,46,55,50,51,45,50,46,52,56,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,53,52,32,48,76,49,51,32,49,52,46,53,54,54,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,67,104,101,99,107,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,56,53,52,32,53,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,55,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,55,55,46,52,49,54,76,56,32,49,51,46,49,48,49,108,45,53,46,50,50,51,32,50,46,56,49,53,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,53,46,53,86,50,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,46,53,54,54,108,52,46,55,50,51,45,50,46,52,56,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,53,52,32,48,76,49,51,32,49,52,46,53,54,54,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,67,104,101,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,49,53,46,53,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,52,46,52,51,57,76,56,32,49,51,46,48,54,57,108,45,53,46,50,54,32,50,46,56,55,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,53,46,53,122,109,56,46,56,53,52,45,57,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,55,46,53,32,55,46,55,57,51,32,54,46,51,53,52,32,54,46,54,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,49,46,53,32,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,51,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,68,97,115,104,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,53,46,53,32,54,46,53,65,46,53,46,53,32,48,32,48,32,49,32,54,32,54,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,55,55,46,52,49,54,76,56,32,49,51,46,49,48,49,108,45,53,46,50,50,51,32,50,46,56,49,53,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,53,46,53,86,50,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,46,53,54,54,108,52,46,55,50,51,45,50,46,52,56,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,53,52,32,48,76,49,51,32,49,52,46,53,54,54,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,68,97,115,104,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,49,53,46,53,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,52,46,52,51,57,76,56,32,49,51,46,48,54,57,108,45,53,46,50,54,32,50,46,56,55,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,53,46,53,122,77,54,32,54,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,50,118,49,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,52,46,52,51,57,76,56,32,49,51,46,48,54,57,108,53,46,50,54,32,50,46,56,55,65,46,53,46,53,32,48,32,48,32,48,32,49,52,32,49,53,46,53,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,72,101,97,114,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,52,46,52,49,99,49,46,51,56,55,45,49,46,52,50,53,32,52,46,56,53,52,32,49,46,48,55,32,48,32,52,46,50,55,55,67,51,46,49,52,54,32,53,46,52,56,32,54,46,54,49,51,32,50,46,57,56,54,32,56,32,52,46,52,49,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,55,55,46,52,49,54,76,56,32,49,51,46,49,48,49,108,45,53,46,50,50,51,32,50,46,56,49,53,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,53,46,53,86,50,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,46,53,54,54,108,52,46,55,50,51,45,50,46,52,56,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,53,52,32,48,76,49,51,32,49,52,46,53,54,54,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,72,101,97,114,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,53,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,52,46,52,51,57,76,56,32,49,51,46,48,54,57,108,53,46,50,54,32,50,46,56,55,65,46,53,46,53,32,48,32,48,32,48,32,49,52,32,49,53,46,53,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,51,46,53,122,77,56,32,52,46,52,49,99,49,46,51,56,55,45,49,46,52,50,53,32,52,46,56,53,52,32,49,46,48,55,32,48,32,52,46,50,55,55,67,51,46,49,52,54,32,53,46,52,56,32,54,46,54,49,51,32,50,46,57,56,54,32,56,32,52,46,52,49,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,80,108,117,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,54,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,55,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,52,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,55,55,46,52,49,54,76,56,32,49,51,46,49,48,49,108,45,53,46,50,50,51,32,50,46,56,49,53,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,53,46,53,86,50,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,46,53,54,54,108,52,46,55,50,51,45,50,46,52,56,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,53,52,32,48,76,49,51,32,49,52,46,53,54,54,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,80,108,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,49,53,46,53,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,52,46,52,51,57,76,56,32,49,51,46,48,54,57,108,45,53,46,50,54,32,50,46,56,55,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,53,46,53,122,109,54,46,53,45,49,49,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,54,72,54,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,46,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,55,72,49,48,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,56,46,53,86,52,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,83,116,97,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,56,52,32,52,46,49,97,46,49,55,56,46,49,55,56,32,48,32,48,32,49,32,46,51,50,32,48,108,46,54,51,52,32,49,46,50,56,53,97,46,49,55,56,46,49,55,56,32,48,32,48,32,48,32,46,49,51,52,46,48,57,56,108,49,46,52,50,46,50,48,54,99,46,49,52,53,46,48,50,49,46,50,48,52,46,50,46,48,57,56,46,51,48,51,76,57,46,52,50,32,54,46,57,57,51,97,46,49,55,56,46,49,55,56,32,48,32,48,32,48,45,46,48,53,49,46,49,53,56,108,46,50,52,50,32,49,46,52,49,52,97,46,49,55,56,46,49,55,56,32,48,32,48,32,49,45,46,50,53,56,46,49,56,55,108,45,49,46,50,55,45,46,54,54,56,97,46,49,55,56,46,49,55,56,32,48,32,48,32,48,45,46,49,54,53,32,48,108,45,49,46,50,55,46,54,54,56,97,46,49,55,56,46,49,55,56,32,48,32,48,32,49,45,46,50,53,55,45,46,49,56,55,108,46,50,52,50,45,49,46,52,49,52,97,46,49,55,56,46,49,55,56,32,48,32,48,32,48,45,46,48,53,45,46,49,53,56,108,45,49,46,48,51,45,49,46,48,48,49,97,46,49,55,56,46,49,55,56,32,48,32,48,32,49,32,46,48,57,56,45,46,51,48,51,108,49,46,52,50,45,46,50,48,54,97,46,49,55,56,46,49,55,56,32,48,32,48,32,48,32,46,49,51,52,45,46,48,57,56,76,55,46,56,52,32,52,46,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,55,55,46,52,49,54,76,56,32,49,51,46,49,48,49,108,45,53,46,50,50,51,32,50,46,56,49,53,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,53,46,53,86,50,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,46,53,54,54,108,52,46,55,50,51,45,50,46,52,56,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,53,52,32,48,76,49,51,32,49,52,46,53,54,54,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,83,116,97,114,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,49,53,46,53,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,52,46,52,51,57,76,56,32,49,51,46,48,54,57,108,45,53,46,50,54,32,50,46,56,55,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,53,46,53,122,77,56,46,49,54,32,52,46,49,97,46,49,55,56,46,49,55,56,32,48,32,48,32,48,45,46,51,50,32,48,108,45,46,54,51,52,32,49,46,50,56,53,97,46,49,55,56,46,49,55,56,32,48,32,48,32,49,45,46,49,51,52,46,48,57,56,108,45,49,46,52,50,46,50,48,54,97,46,49,55,56,46,49,55,56,32,48,32,48,32,48,45,46,48,57,56,46,51,48,51,76,54,46,53,56,32,54,46,57,57,51,99,46,48,52,50,46,48,52,49,46,48,54,49,46,49,46,48,53,49,46,49,53,56,76,54,46,51,57,32,56,46,53,54,53,97,46,49,55,56,46,49,55,56,32,48,32,48,32,48,32,46,50,53,56,46,49,56,55,108,49,46,50,55,45,46,54,54,56,97,46,49,55,56,46,49,55,56,32,48,32,48,32,49,32,46,49,54,53,32,48,108,49,46,50,55,46,54,54,56,97,46,49,55,56,46,49,55,56,32,48,32,48,32,48,32,46,50,53,55,45,46,49,56,55,76,57,46,51,54,56,32,55,46,49,53,97,46,49,55,56,46,49,55,56,32,48,32,48,32,49,32,46,48,53,45,46,49,53,56,108,49,46,48,50,56,45,49,46,48,48,49,97,46,49,55,56,46,49,55,56,32,48,32,48,32,48,45,46,48,57,56,45,46,51,48,51,108,45,49,46,52,50,45,46,50,48,54,97,46,49,55,56,46,49,55,56,32,48,32,48,32,49,45,46,49,51,52,45,46,48,57,56,76,56,46,49,54,32,52,46,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,88,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,88,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,46,49,52,54,32,53,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,54,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,55,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,55,46,55,48,55,32,54,46,56,53,52,32,56,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,55,32,54,46,49,52,54,32,53,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,55,55,46,52,49,54,76,56,32,49,51,46,49,48,49,108,45,53,46,50,50,51,32,50,46,56,49,53,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,53,46,53,86,50,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,46,53,54,54,108,52,46,55,50,51,45,50,46,52,56,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,53,52,32,48,76,49,51,32,49,52,46,53,54,54,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,88,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,88,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,49,53,46,53,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,52,46,52,51,57,76,56,32,49,51,46,48,54,57,108,45,53,46,50,54,32,50,46,56,55,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,53,46,53,122,77,54,46,56,53,52,32,53,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,55,46,50,57,51,32,55,32,54,46,49,52,54,32,56,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,56,46,55,48,56,76,56,32,55,46,55,48,55,108,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,56,45,46,55,48,56,76,56,46,55,48,55,32,55,108,49,46,49,52,55,45,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,32,54,46,50,57,51,32,54,46,56,53,52,32,53,46,49,52,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,54,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,55,55,46,52,49,54,76,55,32,49,51,46,49,48,49,108,45,52,46,50,50,51,32,50,46,56,49,53,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,53,46,53,86,52,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,48,46,53,54,54,108,51,46,55,50,51,45,50,46,52,56,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,53,52,32,48,76,49,49,32,49,52,46,53,54,54,86,52,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,50,54,56,32,49,72,49,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,49,46,55,54,56,108,46,50,50,51,46,49,52,56,65,46,53,46,53,32,48,32,48,32,48,32,49,52,32,49,51,46,53,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,54,97,50,32,50,32,48,32,48,32,48,45,49,46,55,51,50,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,109,97,114,107,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,109,97,114,107,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,54,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,55,55,46,52,49,54,76,55,32,49,51,46,49,48,49,108,45,52,46,50,50,51,32,50,46,56,49,53,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,53,46,53,86,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,50,54,56,32,49,65,50,32,50,32,48,32,48,32,49,32,54,32,48,104,54,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,55,55,46,52,49,54,76,49,51,32,49,51,46,55,54,56,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,52,46,50,54,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,107,115,104,101,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,107,115,104,101,108,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,50,104,49,48,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,49,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,53,72,51,118,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,51,32,49,52,104,49,48,118,45,51,72,51,118,51,122,109,48,45,52,104,49,48,86,55,72,51,118,51,122,109,48,45,52,104,49,48,86,51,72,51,118,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,116,115,116,114,97,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,116,115,116,114,97,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,48,54,50,32,49,50,104,51,46,52,55,53,99,49,46,56,48,52,32,48,32,50,46,56,56,56,45,46,57,48,56,32,50,46,56,56,56,45,50,46,51,57,54,32,48,45,49,46,49,48,50,45,46,55,54,49,45,49,46,57,49,54,45,49,46,57,48,52,45,50,46,48,51,52,118,45,46,49,99,46,56,51,50,45,46,49,52,32,49,46,52,56,50,45,46,57,51,32,49,46,52,56,50,45,49,46,56,49,54,32,48,45,49,46,51,45,46,57,53,53,45,50,46,49,49,45,50,46,53,52,50,45,50,46,49,49,72,53,46,48,54,50,86,49,50,122,109,49,46,51,49,51,45,52,46,56,55,53,86,52,46,54,53,56,104,49,46,55,56,99,46,57,55,51,32,48,32,49,46,53,52,50,46,52,53,55,32,49,46,53,52,50,32,49,46,50,51,55,32,48,32,46,56,48,50,45,46,54,48,52,32,49,46,50,51,45,49,46,55,54,52,32,49,46,50,51,72,54,46,51,55,53,122,109,48,32,51,46,55,54,50,86,56,46,49,54,50,104,49,46,56,50,50,99,49,46,50,51,54,32,48,32,49,46,56,56,55,46,52,54,51,32,49,46,56,56,55,32,49,46,51,52,56,32,48,32,46,56,57,54,45,46,54,50,55,32,49,46,51,55,55,45,49,46,56,49,49,32,49,46,51,55,55,72,54,46,51,55,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,52,32,52,32,48,32,48,32,49,32,52,45,52,104,56,97,52,32,52,32,48,32,48,32,49,32,52,32,52,118,56,97,52,32,52,32,48,32,48,32,49,45,52,32,52,72,52,97,52,32,52,32,48,32,48,32,49,45,52,45,52,86,52,122,109,52,45,51,97,51,32,51,32,48,32,48,32,48,45,51,32,51,118,56,97,51,32,51,32,48,32,48,32,48,32,51,32,51,104,56,97,51,32,51,32,48,32,48,32,48,32,51,45,51,86,52,97,51,32,51,32,48,32,48,32,48,45,51,45,51,72,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,116,115,116,114,97,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,116,115,116,114,97,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,51,55,53,32,55,46,49,50,53,86,52,46,54,53,56,104,49,46,55,56,99,46,57,55,51,32,48,32,49,46,53,52,50,46,52,53,55,32,49,46,53,52,50,32,49,46,50,51,55,32,48,32,46,56,48,50,45,46,54,48,52,32,49,46,50,51,45,49,46,55,54,52,32,49,46,50,51,72,54,46,51,55,53,122,109,48,32,51,46,55,54,50,104,49,46,56,57,56,99,49,46,49,56,52,32,48,32,49,46,56,49,45,46,52,56,32,49,46,56,49,45,49,46,51,55,55,32,48,45,46,56,56,53,45,46,54,53,45,49,46,51,52,56,45,49,46,56,56,54,45,49,46,51,52,56,72,54,46,51,55,53,118,50,46,55,50,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,48,48,50,32,48,97,52,32,52,32,48,32,48,32,48,45,52,32,52,118,56,97,52,32,52,32,48,32,48,32,48,32,52,32,52,104,56,97,52,32,52,32,48,32,48,32,48,32,52,45,52,86,52,97,52,32,52,32,48,32,48,32,48,45,52,45,52,104,45,56,122,109,49,46,48,54,32,49,50,86,51,46,53,52,53,104,51,46,51,57,57,99,49,46,53,56,55,32,48,32,50,46,53,52,51,46,56,48,57,32,50,46,53,52,51,32,50,46,49,49,32,48,32,46,56,56,52,45,46,54,53,32,49,46,54,55,53,45,49,46,52,56,51,32,49,46,56,49,54,118,46,49,99,49,46,49,52,51,46,49,49,55,32,49,46,57,48,52,46,57,51,49,32,49,46,57,48,52,32,50,46,48,51,51,32,48,32,49,46,52,56,56,45,49,46,48,56,52,32,50,46,51,57,54,45,50,46,56,56,56,32,50,46,51,57,54,72,53,46,48,54,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,111,116,115,116,114,97,112,82,101,98,111,111,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,111,116,115,116,114,97,112,82,101,98,111,111,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,49,54,49,32,56,97,54,46,56,52,32,54,46,56,52,32,48,32,49,32,48,32,54,46,56,52,50,45,54,46,56,52,46,53,56,46,53,56,32,48,32,48,32,49,32,48,45,49,46,49,54,32,56,32,56,32,48,32,49,32,49,45,54,46,53,53,54,32,51,46,52,49,50,108,45,46,54,54,51,45,46,53,55,55,97,46,53,56,46,53,56,32,48,32,48,32,49,32,46,50,50,55,45,46,57,57,55,108,50,46,53,50,45,46,54,57,97,46,53,56,46,53,56,32,48,32,48,32,49,32,46,55,50,56,46,54,51,51,108,45,46,51,51,50,32,50,46,53,57,50,97,46,53,56,46,53,56,32,48,32,48,32,49,45,46,57,53,54,46,51,54,52,108,45,46,54,52,51,45,46,53,54,65,54,46,56,49,50,32,54,46,56,49,50,32,48,32,48,32,48,32,49,46,49,54,32,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,46,54,52,49,32,49,49,46,54,55,49,86,56,46,56,52,51,104,49,46,53,55,108,49,46,52,57,56,32,50,46,56,50,56,104,49,46,51,49,52,76,57,46,51,55,55,32,56,46,54,54,53,99,46,56,57,55,45,46,51,32,49,46,52,50,55,45,49,46,49,48,54,32,49,46,52,50,55,45,50,46,49,32,48,45,49,46,51,55,45,46,57,52,51,45,50,46,50,52,54,45,50,46,52,53,54,45,50,46,50,52,54,72,53,46,53,118,55,46,51,53,50,104,49,46,49,52,49,122,109,48,45,51,46,55,53,86,53,46,50,55,55,104,49,46,53,55,99,46,56,56,49,32,48,32,49,46,52,49,54,46,52,57,57,32,49,46,52,49,54,32,49,46,51,50,32,48,32,46,56,52,45,46,53,48,52,32,49,46,51,50,52,45,49,46,51,56,54,32,49,46,51,50,52,104,45,49,46,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,114,100,101,114,83,116,121,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,114,100,101,114,83,116,121,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,48,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,48,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,56,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,45,52,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,56,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,45,52,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,114,100,101,114,87,105,100,116,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,114,100,101,114,87,105,100,116,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,51,46,53,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,51,104,49,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,122,109,48,32,53,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,56,104,49,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,48,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,117,110,100,105,110,103,66,111,120,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,50,86,48,72,48,118,53,104,50,118,54,72,48,118,53,104,53,118,45,50,104,54,118,50,104,53,118,45,53,104,45,50,86,53,104,50,86,48,104,45,53,118,50,72,53,122,109,54,32,49,118,50,104,50,118,54,104,45,50,118,50,72,53,118,45,50,72,51,86,53,104,50,86,51,104,54,122,109,49,45,50,104,51,118,51,104,45,51,86,49,122,109,51,32,49,49,118,51,104,45,51,118,45,51,104,51,122,77,52,32,49,53,72,49,118,45,51,104,51,118,51,122,77,49,32,52,86,49,104,51,118,51,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,67,105,114,99,108,101,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,117,110,100,105,110,103,66,111,120,67,105,114,99,108,101,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,51,46,57,51,55,45,46,53,104,56,46,49,50,54,65,50,32,50,32,48,32,49,32,49,32,49,52,46,53,32,51,46,57,51,55,118,56,46,49,50,54,97,50,32,50,32,48,32,49,32,49,45,50,46,52,51,55,32,50,46,52,51,55,72,51,46,57,51,55,65,50,32,50,32,48,32,49,32,49,32,49,46,53,32,49,50,46,48,54,51,86,51,46,57,51,55,65,50,32,50,32,48,32,48,32,49,32,48,32,50,122,109,50,46,53,32,49,46,57,51,55,118,56,46,49,50,54,99,46,55,48,51,46,49,56,32,49,46,50,53,54,46,55,51,52,32,49,46,52,51,55,32,49,46,52,51,55,104,56,46,49,50,54,97,50,46,48,48,52,32,50,46,48,48,52,32,48,32,48,32,49,32,49,46,52,51,55,45,49,46,52,51,55,86,51,46,57,51,55,65,50,46,48,48,52,32,50,46,48,48,52,32,48,32,48,32,49,32,49,50,46,48,54,51,32,50,46,53,72,51,46,57,51,55,65,50,46,48,48,52,32,50,46,48,48,52,32,48,32,48,32,49,32,50,46,53,32,51,46,57,51,55,122,77,49,52,32,49,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,77,50,32,49,51,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,109,49,50,32,48,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,49,56,54,32,49,46,49,49,51,97,46,53,46,53,32,48,32,48,32,48,45,46,51,55,50,32,48,76,49,46,56,52,54,32,51,46,53,32,56,32,53,46,57,54,49,32,49,52,46,49,53,52,32,51,46,53,32,56,46,49,56,54,32,49,46,49,49,51,122,77,49,53,32,52,46,50,51,57,108,45,54,46,53,32,50,46,54,118,55,46,57,50,50,108,54,46,53,45,50,46,54,86,52,46,50,52,122,77,55,46,53,32,49,52,46,55,54,50,86,54,46,56,51,56,76,49,32,52,46,50,51,57,118,55,46,57,50,51,108,54,46,53,32,50,46,54,122,77,55,46,52,52,51,46,49,56,52,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,49,49,52,32,48,108,55,46,49,50,57,32,50,46,56,53,50,65,46,53,46,53,32,48,32,48,32,49,32,49,54,32,51,46,53,118,56,46,54,54,50,97,49,32,49,32,48,32,48,32,49,45,46,54,50,57,46,57,50,56,108,45,55,46,49,56,53,32,50,46,56,55,52,97,46,53,46,53,32,48,32,48,32,49,45,46,51,55,50,32,48,76,46,54,51,32,49,51,46,48,57,97,49,32,49,32,48,32,48,32,49,45,46,54,51,45,46,57,50,56,86,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,51,49,52,45,46,52,54,52,76,55,46,52,52,51,46,49,56,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,68,111,119,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,46,53,32,49,48,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,56,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,32,57,46,53,118,45,56,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,50,46,53,32,48,104,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,50,32,49,46,53,118,56,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,46,53,32,49,49,104,50,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,54,52,54,32,49,53,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,51,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,46,53,32,49,52,46,50,57,51,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,56,46,55,57,51,108,45,50,46,49,52,54,45,50,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,108,51,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,68,111,119,110,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,51,54,52,32,49,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,72,49,52,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,118,45,49,48,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,46,53,32,48,104,45,49,48,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,32,49,46,53,118,54,46,54,51,54,97,46,53,46,53,32,48,32,49,32,48,32,49,32,48,86,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,48,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,55,46,56,54,52,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,48,32,49,53,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,49,46,55,48,55,108,56,46,49,52,55,45,56,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,49,32,49,52,46,50,57,51,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,68,111,119,110,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,46,54,51,54,32,49,50,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,49,46,53,118,45,49,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,48,104,49,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,51,32,49,46,53,118,54,46,54,51,54,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,48,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,48,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,54,46,54,51,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,54,32,49,53,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,51,46,55,57,51,76,54,46,49,52,54,32,54,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,49,53,32,49,52,46,50,57,51,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,73,110,68,111,119,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,46,53,32,54,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,56,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,57,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,56,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,52,32,54,46,53,118,56,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,32,49,52,46,53,118,45,56,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,46,53,32,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,54,52,54,32,49,49,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,51,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,46,53,32,49,48,46,50,57,51,86,49,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,56,46,55,57,51,76,53,46,51,53,52,32,56,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,51,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,73,110,68,111,119,110,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,57,46,54,51,54,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,32,51,46,53,118,49,48,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,50,46,53,32,49,53,104,49,48,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,86,54,46,56,54,52,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,48,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,46,54,51,54,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,53,32,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,54,46,55,48,55,108,56,46,49,52,55,45,56,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,54,32,57,46,50,57,51,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,73,110,68,111,119,110,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,46,51,54,52,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,72,49,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,53,32,51,46,53,118,49,48,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,32,49,51,46,53,86,54,46,56,54,52,97,46,53,46,53,32,48,32,49,32,49,32,49,32,48,86,49,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,48,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,54,46,56,54,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,32,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,51,46,55,57,51,76,49,46,49,52,54,32,49,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,49,48,32,57,46,50,57,51,86,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,73,110,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,32,51,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,56,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,57,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,56,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,50,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,49,52,104,45,56,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,50,46,53,118,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,50,104,56,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,49,32,51,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,52,46,49,52,54,32,56,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,53,46,55,48,55,32,55,46,53,72,49,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,46,55,48,55,108,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,51,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,73,110,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,56,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,54,46,53,32,49,52,104,56,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,118,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,46,53,32,50,104,45,56,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,32,51,46,53,118,50,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,46,56,53,52,32,56,46,51,53,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,49,48,46,50,57,51,32,55,46,53,72,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,56,46,55,57,51,108,45,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,108,51,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,73,110,85,112,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,46,53,32,49,48,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,56,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,32,57,46,53,118,45,56,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,50,46,53,32,48,104,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,50,32,49,46,53,118,56,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,46,53,32,49,49,104,50,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,54,52,54,32,52,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,53,46,55,48,55,86,49,52,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,53,46,55,48,55,76,53,46,51,53,52,32,55,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,51,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,73,110,85,112,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,57,46,54,51,54,32,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,32,49,50,46,53,118,45,49,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,46,53,32,49,104,49,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,52,32,50,46,53,118,54,46,54,51,54,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,48,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,48,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,54,46,54,51,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,53,32,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,46,55,48,55,108,56,46,49,52,55,32,56,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,54,32,54,46,55,48,55,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,73,110,85,112,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,46,51,54,52,32,49,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,72,49,51,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,118,45,49,48,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,51,46,53,32,49,104,45,49,48,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,50,32,50,46,53,118,54,46,54,51,54,97,46,53,46,53,32,48,32,49,32,48,32,49,32,48,86,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,48,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,54,46,56,54,52,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,32,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,51,46,55,57,51,108,45,56,46,49,52,55,32,56,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,76,49,48,32,54,46,55,48,55,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,32,49,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,56,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,57,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,56,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,54,46,53,32,50,104,56,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,51,46,53,118,57,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,56,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,32,49,50,46,53,118,45,50,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,46,49,52,54,32,56,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,49,46,55,48,55,32,55,46,53,72,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,46,55,48,55,108,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,51,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,32,49,50,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,56,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,57,46,53,32,50,104,45,56,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,46,53,118,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,52,104,56,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,118,45,50,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,53,46,56,53,52,32,56,46,51,53,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,76,49,52,46,50,57,51,32,55,46,53,72,53,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,56,46,55,57,51,108,45,50,46,49,52,55,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,108,51,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,85,112,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,46,53,32,54,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,56,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,57,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,56,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,52,32,54,46,53,118,56,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,32,49,52,46,53,118,45,56,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,46,53,32,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,54,52,54,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,49,46,55,48,55,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,46,55,48,55,76,53,46,51,53,52,32,51,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,51,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,85,112,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,51,54,52,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,72,49,52,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,52,46,53,118,49,48,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,49,52,46,53,86,55,46,56,54,52,97,46,53,46,53,32,48,32,49,32,49,32,49,32,48,86,49,52,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,48,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,55,46,56,54,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,48,32,46,53,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,48,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,46,55,48,55,108,56,46,49,52,55,32,56,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,49,32,49,46,55,48,55,86,53,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,65,114,114,111,119,85,112,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,46,54,51,54,32,51,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,52,46,53,118,49,48,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,54,104,49,48,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,86,55,46,56,54,52,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,52,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,48,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,46,54,51,54,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,54,32,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,51,46,55,57,51,76,54,46,49,52,54,32,57,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,56,46,55,48,56,76,49,53,32,49,46,55,48,55,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,111,120,83,101,97,109,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,111,120,83,101,97,109,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,49,56,54,32,49,46,49,49,51,97,46,53,46,53,32,48,32,48,32,48,45,46,51,55,50,32,48,76,49,46,56,52,54,32,51,46,53,108,50,46,52,48,52,46,57,54,49,76,49,48,46,52,48,52,32,50,108,45,50,46,50,49,56,45,46,56,56,55,122,109,51,46,53,54,52,32,49,46,52,50,54,76,53,46,53,57,54,32,53,32,56,32,53,46,57,54,49,32,49,52,46,49,53,52,32,51,46,53,108,45,50,46,52,48,52,45,46,57,54,49,122,109,51,46,50,53,32,49,46,55,108,45,54,46,53,32,50,46,54,118,55,46,57,50,50,108,54,46,53,45,50,46,54,86,52,46,50,52,122,77,55,46,53,32,49,52,46,55,54,50,86,54,46,56,51,56,76,49,32,52,46,50,51,57,118,55,46,57,50,51,108,54,46,53,32,50,46,54,122,77,55,46,52,52,51,46,49,56,52,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,49,49,52,32,48,108,55,46,49,50,57,32,50,46,56,53,50,65,46,53,46,53,32,48,32,48,32,49,32,49,54,32,51,46,53,118,56,46,54,54,50,97,49,32,49,32,48,32,48,32,49,45,46,54,50,57,46,57,50,56,108,45,55,46,49,56,53,32,50,46,56,55,52,97,46,53,46,53,32,48,32,48,32,49,45,46,51,55,50,32,48,76,46,54,51,32,49,51,46,48,57,97,49,32,49,32,48,32,48,32,49,45,46,54,51,45,46,57,50,56,86,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,51,49,52,45,46,52,54,52,76,55,46,52,52,51,46,49,56,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,97,99,101,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,97,99,101,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,49,49,52,32,56,46,48,54,51,86,55,46,57,99,49,46,48,48,53,45,46,49,48,50,32,49,46,52,57,55,45,46,54,49,53,32,49,46,52,57,55,45,49,46,54,86,52,46,53,48,51,99,48,45,49,46,48,57,52,46,51,57,45,49,46,53,51,56,32,49,46,51,53,52,45,49,46,53,51,56,104,46,50,55,51,86,50,104,45,46,51,55,54,67,51,46,50,53,32,50,32,50,46,52,57,32,50,46,55,53,57,32,50,46,52,57,32,52,46,51,53,50,118,49,46,53,50,52,99,48,32,49,46,48,57,52,45,46,51,55,54,32,49,46,52,53,54,45,49,46,52,57,32,49,46,52,53,54,118,49,46,50,57,57,99,49,46,49,49,52,32,48,32,49,46,52,57,46,51,54,50,32,49,46,52,57,32,49,46,52,53,54,118,49,46,53,50,52,99,48,32,49,46,53,57,51,46,55,53,57,32,50,46,51,53,50,32,50,46,51,55,50,32,50,46,51,53,50,104,46,51,55,54,118,45,46,57,54,52,104,45,46,50,55,51,99,45,46,57,54,52,32,48,45,49,46,51,53,52,45,46,52,52,52,45,49,46,51,53,52,45,49,46,53,51,56,86,57,46,54,54,51,99,48,45,46,57,56,52,45,46,52,57,50,45,49,46,52,57,55,45,49,46,52,57,55,45,49,46,54,122,77,49,51,46,56,56,54,32,55,46,57,118,46,49,54,51,99,45,49,46,48,48,53,46,49,48,51,45,49,46,52,57,55,46,54,49,54,45,49,46,52,57,55,32,49,46,54,118,49,46,55,57,56,99,48,32,49,46,48,57,52,45,46,51,57,32,49,46,53,51,56,45,49,46,51,53,52,32,49,46,53,51,56,104,45,46,50,55,51,118,46,57,54,52,104,46,51,55,54,99,49,46,54,49,51,32,48,32,50,46,51,55,50,45,46,55,53,57,32,50,46,51,55,50,45,50,46,51,53,50,118,45,49,46,53,50,52,99,48,45,49,46,48,57,52,46,51,55,54,45,49,46,52,53,54,32,49,46,52,57,45,49,46,52,53,54,86,55,46,51,51,50,99,45,49,46,49,49,52,32,48,45,49,46,52,57,45,46,51,54,50,45,49,46,52,57,45,49,46,52,53,54,86,52,46,51,53,50,67,49,51,46,53,49,32,50,46,55,53,57,32,49,50,46,55,53,32,50,32,49,49,46,49,51,56,32,50,104,45,46,51,55,54,118,46,57,54,52,104,46,50,55,51,99,46,57,54,52,32,48,32,49,46,51,53,52,46,52,52,52,32,49,46,51,53,52,32,49,46,53,51,56,86,54,46,51,99,48,32,46,57,56,52,46,52,57,50,32,49,46,52,57,55,32,49,46,52,57,55,32,49,46,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,105,99,107,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,105,99,107,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,46,53,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,48,104,49,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,49,52,118,50,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,49,52,118,50,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,72,50,118,45,50,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,51,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,54,72,50,86,52,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,51,122,77,51,32,52,118,50,104,52,46,53,86,52,72,51,122,109,53,46,53,32,48,118,50,72,49,51,86,52,72,56,46,53,122,77,51,32,49,48,118,50,104,52,46,53,118,45,50,72,51,122,109,53,46,53,32,48,118,50,72,49,51,118,45,50,72,56,46,53,122,77,49,32,49,118,50,104,51,46,53,86,49,72,49,122,109,52,46,53,32,48,118,50,104,53,86,49,104,45,53,122,109,54,32,48,118,50,72,49,53,86,49,104,45,51,46,53,122,77,49,32,55,118,50,104,51,46,53,86,55,72,49,122,109,52,46,53,32,48,118,50,104,53,86,55,104,45,53,122,109,54,32,48,118,50,72,49,53,86,55,104,45,51,46,53,122,77,49,32,49,51,118,50,104,51,46,53,118,45,50,72,49,122,109,52,46,53,32,48,118,50,104,53,118,45,50,104,45,53,122,109,54,32,48,118,50,72,49,53,118,45,50,104,45,51,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,105,101,102,99,97,115,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,105,101,102,99,97,115,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,32,50,46,53,86,51,72,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,52,46,53,118,56,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,52,104,49,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,118,45,56,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,46,53,32,51,72,49,49,118,45,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,57,46,53,32,49,104,45,51,122,109,48,32,49,104,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,51,72,54,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,49,46,56,56,54,32,54,46,57,49,52,76,49,53,32,55,46,49,53,49,86,49,50,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,55,46,49,53,108,54,46,54,49,52,32,49,46,55,54,52,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,46,55,55,50,32,48,122,77,49,46,53,32,52,104,49,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,46,54,49,54,76,56,46,49,50,57,32,55,46,57,52,56,97,46,53,46,53,32,48,32,48,32,49,45,46,50,53,56,32,48,76,49,32,54,46,49,49,54,86,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,105,101,102,99,97,115,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,105,101,102,99,97,115,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,32,50,46,53,86,51,72,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,52,46,53,118,49,46,51,56,52,108,55,46,54,49,52,32,50,46,48,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,46,55,55,50,32,48,76,49,54,32,53,46,56,56,52,86,52,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,46,53,32,51,72,49,49,118,45,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,57,46,53,32,49,104,45,51,122,109,48,32,49,104,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,51,72,54,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,49,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,52,104,49,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,86,54,46,56,53,76,56,46,49,50,57,32,56,46,57,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,50,53,56,32,48,76,48,32,54,46,56,53,118,53,46,54,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,50,65,46,53,46,53,32,48,32,48,32,49,32,56,32,51,122,109,56,32,56,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,122,109,45,49,51,46,53,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,50,122,109,49,49,46,49,53,55,45,54,46,49,53,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,55,108,45,49,46,52,49,52,32,49,46,52,49,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,45,46,55,48,55,108,49,46,52,49,52,45,49,46,52,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,32,48,122,109,45,57,46,57,32,50,46,49,50,49,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,55,45,46,55,48,55,76,51,46,48,53,32,53,46,51,52,51,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,55,46,55,48,55,108,49,46,52,49,52,32,49,46,52,49,52,122,77,56,32,55,97,52,32,52,32,48,32,48,32,48,45,52,32,52,32,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,55,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,32,52,32,52,32,48,32,48,32,48,45,52,45,52,122,109,48,32,49,97,51,32,51,32,48,32,48,32,49,32,50,46,57,53,57,32,50,46,53,72,53,46,48,52,65,51,32,51,32,48,32,48,32,49,32,56,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,50,65,46,53,46,53,32,48,32,48,32,49,32,56,32,51,122,109,56,32,56,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,122,109,45,49,51,46,53,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,50,122,109,49,49,46,49,53,55,45,54,46,49,53,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,55,108,45,49,46,52,49,52,32,49,46,52,49,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,45,46,55,48,55,108,49,46,52,49,52,45,49,46,52,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,32,48,122,109,45,57,46,57,32,50,46,49,50,49,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,55,45,46,55,48,55,76,51,46,48,53,32,53,46,51,52,51,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,55,46,55,48,55,108,49,46,52,49,52,32,49,46,52,49,52,122,77,56,32,55,97,52,32,52,32,48,32,48,32,48,45,52,32,52,32,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,55,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,32,52,32,52,32,48,32,48,32,48,45,52,45,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,53,32,53,46,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,109,53,32,54,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,77,50,32,49,49,97,46,53,46,53,32,48,32,49,32,48,32,49,32,48,32,46,53,46,53,32,48,32,48,32,48,45,49,32,48,122,109,49,48,46,50,52,51,45,51,46,53,51,54,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,45,46,55,48,55,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,46,55,48,55,122,109,45,56,46,52,56,54,45,46,55,48,55,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,55,46,55,48,55,46,53,46,53,32,48,32,48,32,48,45,46,55,48,55,45,46,55,48,55,122,77,56,32,55,97,52,32,52,32,48,32,48,32,48,45,52,32,52,32,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,55,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,32,52,32,52,32,48,32,48,32,48,45,52,45,52,122,109,48,32,49,97,51,32,51,32,48,32,48,32,49,32,50,46,57,53,57,32,50,46,53,72,53,46,48,52,65,51,32,51,32,48,32,48,32,49,32,56,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,53,32,53,46,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,109,53,32,54,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,77,50,32,49,49,97,46,53,46,53,32,48,32,49,32,48,32,49,32,48,32,46,53,46,53,32,48,32,48,32,48,45,49,32,48,122,109,49,48,46,50,52,51,45,51,46,53,51,54,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,45,46,55,48,55,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,46,55,48,55,122,109,45,56,46,52,56,54,45,46,55,48,55,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,55,46,55,48,55,46,53,46,53,32,48,32,48,32,48,45,46,55,48,55,45,46,55,48,55,122,77,56,32,55,97,52,32,52,32,48,32,48,32,48,45,52,32,52,32,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,55,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,32,52,32,52,32,48,32,48,32,48,45,52,45,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,105,103,104,116,110,101,115,115,72,105,103,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,49,97,51,32,51,32,48,32,49,32,49,32,48,45,54,32,51,32,51,32,48,32,48,32,49,32,48,32,54,122,109,48,32,49,97,52,32,52,32,48,32,49,32,48,32,48,45,56,32,52,32,52,32,48,32,48,32,48,32,48,32,56,122,77,56,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,50,65,46,53,46,53,32,48,32,48,32,49,32,56,32,48,122,109,48,32,49,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,50,65,46,53,46,53,32,48,32,48,32,49,32,56,32,49,51,122,109,56,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,122,77,51,32,56,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,65,46,53,46,53,32,48,32,48,32,49,32,51,32,56,122,109,49,48,46,54,53,55,45,53,46,54,53,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,55,108,45,49,46,52,49,52,32,49,46,52,49,53,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,45,46,55,48,56,108,49,46,52,49,52,45,49,46,52,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,32,48,122,109,45,57,46,49,57,51,32,57,46,49,57,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,55,76,51,46,48,53,32,49,51,46,54,53,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,45,46,55,48,55,108,49,46,52,49,52,45,49,46,52,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,32,48,122,109,57,46,49,57,51,32,50,46,49,50,49,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,32,48,108,45,49,46,52,49,52,45,49,46,52,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,45,46,55,48,55,108,49,46,52,49,52,32,49,46,52,49,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,55,122,77,52,46,52,54,52,32,52,46,52,54,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,32,48,76,50,46,51,52,51,32,51,46,48,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,55,45,46,55,48,55,108,49,46,52,49,52,32,49,46,52,49,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,105,103,104,116,110,101,115,115,72,105,103,104,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,56,97,52,32,52,32,48,32,49,32,49,45,56,32,48,32,52,32,52,32,48,32,48,32,49,32,56,32,48,122,77,56,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,50,65,46,53,46,53,32,48,32,48,32,49,32,56,32,48,122,109,48,32,49,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,50,65,46,53,46,53,32,48,32,48,32,49,32,56,32,49,51,122,109,56,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,122,77,51,32,56,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,65,46,53,46,53,32,48,32,48,32,49,32,51,32,56,122,109,49,48,46,54,53,55,45,53,46,54,53,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,55,108,45,49,46,52,49,52,32,49,46,52,49,53,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,45,46,55,48,56,108,49,46,52,49,52,45,49,46,52,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,32,48,122,109,45,57,46,49,57,51,32,57,46,49,57,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,55,76,51,46,48,53,32,49,51,46,54,53,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,45,46,55,48,55,108,49,46,52,49,52,45,49,46,52,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,32,48,122,109,57,46,49,57,51,32,50,46,49,50,49,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,32,48,108,45,49,46,52,49,52,45,49,46,52,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,45,46,55,48,55,108,49,46,52,49,52,32,49,46,52,49,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,55,122,77,52,46,52,54,52,32,52,46,52,54,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,32,48,76,50,46,51,52,51,32,51,46,48,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,55,45,46,55,48,55,108,49,46,52,49,52,32,49,46,52,49,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,105,103,104,116,110,101,115,115,76,111,119,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,49,97,51,32,51,32,48,32,49,32,49,32,48,45,54,32,51,32,51,32,48,32,48,32,49,32,48,32,54,122,109,48,32,49,97,52,32,52,32,48,32,49,32,48,32,48,45,56,32,52,32,52,32,48,32,48,32,48,32,48,32,56,122,109,46,53,45,57,46,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,109,48,32,49,49,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,109,53,45,53,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,109,45,49,49,32,48,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,109,57,46,55,52,51,45,52,46,48,51,54,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,45,46,55,48,55,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,46,55,48,55,122,109,45,55,46,55,55,57,32,55,46,55,55,57,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,45,46,55,48,55,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,46,55,48,55,122,109,55,46,48,55,50,32,48,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,55,45,46,55,48,55,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,46,55,48,55,122,77,51,46,55,53,55,32,52,46,52,54,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,55,45,46,55,48,55,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,105,103,104,116,110,101,115,115,76,111,119,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,56,97,52,32,52,32,48,32,49,32,49,45,56,32,48,32,52,32,52,32,48,32,48,32,49,32,56,32,48,122,77,56,46,53,32,50,46,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,109,48,32,49,49,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,109,53,45,53,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,109,45,49,49,32,48,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,109,57,46,55,52,51,45,52,46,48,51,54,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,45,46,55,48,55,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,46,55,48,55,122,109,45,55,46,55,55,57,32,55,46,55,55,57,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,45,46,55,48,55,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,46,55,48,55,122,109,55,46,48,55,50,32,48,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,55,45,46,55,48,55,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,46,55,48,55,122,77,51,46,55,53,55,32,52,46,52,54,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,55,45,46,55,48,55,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,111,97,100,99,97,115,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,111,97,100,99,97,115,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,48,53,32,51,46,48,53,97,55,32,55,32,48,32,48,32,48,32,48,32,57,46,57,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,46,55,48,55,32,56,32,56,32,48,32,48,32,49,32,48,45,49,49,46,51,49,52,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,46,55,48,55,122,109,50,46,49,50,50,32,50,46,49,50,50,97,52,32,52,32,48,32,48,32,48,32,48,32,53,46,54,53,54,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,32,53,32,53,32,48,32,48,32,49,32,48,45,55,46,48,55,50,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,122,109,53,46,54,53,54,45,46,55,48,56,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,32,53,32,53,32,48,32,48,32,49,32,48,32,55,46,48,55,50,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,32,52,32,52,32,48,32,48,32,48,32,48,45,53,46,54,53,54,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,109,50,46,49,50,50,45,50,46,49,50,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,32,48,32,56,32,56,32,48,32,48,32,49,32,48,32,49,49,46,51,49,51,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,45,46,55,48,55,32,55,32,55,32,48,32,48,32,48,32,48,45,57,46,57,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,55,122,77,49,48,32,56,97,50,32,50,32,48,32,49,32,49,45,52,32,48,32,50,32,50,32,48,32,48,32,49,32,52,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,111,97,100,99,97,115,116,80,105,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,111,97,100,99,97,115,116,80,105,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,48,53,32,51,46,48,53,97,55,32,55,32,48,32,48,32,48,32,48,32,57,46,57,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,46,55,48,55,32,56,32,56,32,48,32,48,32,49,32,48,45,49,49,46,51,49,52,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,46,55,48,55,122,109,50,46,49,50,50,32,50,46,49,50,50,97,52,32,52,32,48,32,48,32,48,32,48,32,53,46,54,53,54,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,32,53,32,53,32,48,32,48,32,49,32,48,45,55,46,48,55,50,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,122,109,53,46,54,53,54,45,46,55,48,56,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,32,53,32,53,32,48,32,48,32,49,32,48,32,55,46,48,55,50,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,32,52,32,52,32,48,32,48,32,48,32,48,45,53,46,54,53,54,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,109,50,46,49,50,50,45,50,46,49,50,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,32,48,32,56,32,56,32,48,32,48,32,49,32,48,32,49,49,46,51,49,51,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,45,46,55,48,55,32,55,32,55,32,48,32,48,32,48,32,48,45,57,46,57,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,55,122,77,54,32,56,97,50,32,50,32,48,32,49,32,49,32,50,46,53,32,49,46,57,51,55,86,49,53,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,57,46,57,51,55,65,50,32,50,32,48,32,48,32,49,32,54,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,117,115,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,117,115,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,53,46,56,50,53,46,49,50,97,46,53,46,53,32,48,32,48,32,49,32,46,49,51,50,46,53,56,52,99,45,49,46,53,51,32,51,46,52,51,45,52,46,55,52,51,32,56,46,49,55,45,55,46,48,57,53,32,49,48,46,54,52,97,54,46,48,54,55,32,54,46,48,54,55,32,48,32,48,32,49,45,50,46,51,55,51,32,49,46,53,51,52,99,45,46,48,49,56,46,50,50,55,45,46,48,54,46,53,51,56,45,46,49,54,46,56,54,56,45,46,50,48,49,46,54,53,57,45,46,54,54,55,32,49,46,52,55,57,45,49,46,55,48,56,32,49,46,55,52,97,56,46,49,49,55,32,56,46,49,49,55,32,48,32,48,32,49,45,51,46,48,55,56,46,49,51,50,32,51,46,54,53,56,32,51,46,54,53,56,32,48,32,48,32,49,45,46,53,54,51,45,46,49,51,53,32,49,46,51,56,50,32,49,46,51,56,50,32,48,32,48,32,49,45,46,52,54,53,45,46,50,52,55,46,55,49,52,46,55,49,52,32,48,32,48,32,49,45,46,50,48,52,45,46,50,56,56,46,54,50,50,46,54,50,50,32,48,32,48,32,49,32,46,48,48,52,45,46,52,52,51,99,46,48,57,53,45,46,50,52,53,46,51,49,54,45,46,51,56,46,52,54,49,45,46,52,53,50,46,51,57,51,45,46,49,57,55,46,54,50,53,45,46,52,53,51,46,56,54,55,45,46,56,50,54,46,48,57,52,45,46,49,52,52,46,49,56,52,45,46,50,57,55,46,50,56,55,45,46,52,55,50,108,46,49,49,55,45,46,49,57,56,99,46,49,53,49,45,46,50,53,53,46,51,50,54,45,46,53,52,46,53,52,54,45,46,56,52,56,46,53,50,56,45,46,55,51,57,32,49,46,50,45,46,57,50,53,32,49,46,55,52,54,45,46,56,57,54,46,49,50,54,46,48,48,55,46,50,52,51,46,48,50,53,46,51,52,56,46,48,52,56,46,48,54,50,45,46,49,55,50,46,49,52,50,45,46,51,56,46,50,51,56,45,46,54,48,56,46,50,54,49,45,46,54,49,57,46,54,53,56,45,49,46,52,49,57,32,49,46,49,56,55,45,50,46,48,54,57,32,50,46,49,55,53,45,50,46,54,55,32,54,46,49,56,45,54,46,50,48,54,32,57,46,49,49,55,45,56,46,49,48,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,57,54,46,48,52,122,77,52,46,55,48,53,32,49,49,46,57,49,50,97,49,46,50,51,32,49,46,50,51,32,48,32,48,32,48,45,46,52,49,57,45,46,49,99,45,46,50,52,55,45,46,48,49,51,45,46,53,55,52,46,48,53,45,46,56,56,46,52,55,57,97,49,49,46,48,49,32,49,49,46,48,49,32,48,32,48,32,48,45,46,53,46,55,55,55,108,45,46,49,48,52,46,49,55,55,99,45,46,49,48,55,46,49,56,49,45,46,50,49,51,46,51,54,50,45,46,51,50,46,53,50,56,45,46,50,48,54,46,51,49,55,45,46,52,51,56,46,54,49,45,46,55,54,46,56,54,49,97,55,46,49,50,55,32,55,46,49,50,55,32,48,32,48,32,48,32,50,46,54,53,55,45,46,49,50,99,46,53,53,57,45,46,49,51,57,46,56,52,51,45,46,53,54,57,46,57,57,51,45,49,46,48,54,97,51,46,49,50,49,32,51,46,49,50,49,32,48,32,48,32,48,32,46,49,50,54,45,46,55,53,108,45,46,55,57,51,45,46,55,57,50,122,109,49,46,52,52,46,48,50,54,99,46,49,50,45,46,48,52,46,50,55,55,45,46,49,46,52,53,56,45,46,49,56,51,97,53,46,48,54,56,32,53,46,48,54,56,32,48,32,48,32,48,32,49,46,53,51,53,45,49,46,49,99,49,46,57,45,49,46,57,57,54,32,52,46,52,49,50,45,53,46,53,55,32,54,46,48,53,50,45,56,46,54,51,49,45,50,46,53,57,49,32,49,46,57,50,55,45,53,46,53,54,54,32,52,46,54,54,45,55,46,51,48,50,32,54,46,55,57,50,45,46,52,52,50,46,53,52,51,45,46,55,57,54,32,49,46,50,52,51,45,49,46,48,52,50,32,49,46,56,50,54,97,49,49,46,53,48,55,32,49,49,46,53,48,55,32,48,32,48,32,48,45,46,50,55,54,46,55,50,49,108,46,53,55,53,46,53,55,53,122,109,45,52,46,57,55,51,32,51,46,48,52,108,46,48,48,55,45,46,48,48,53,97,46,48,51,49,46,48,51,49,32,48,32,48,32,49,45,46,48,48,55,46,48,48,52,122,109,51,46,53,56,50,45,51,46,48,52,51,108,46,48,48,50,46,48,48,49,104,45,46,48,48,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,114,117,115,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,114,117,115,104,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,53,46,56,50,53,46,49,50,97,46,53,46,53,32,48,32,48,32,49,32,46,49,51,50,46,53,56,52,99,45,49,46,53,51,32,51,46,52,51,45,52,46,55,52,51,32,56,46,49,55,45,55,46,48,57,53,32,49,48,46,54,52,97,54,46,48,54,55,32,54,46,48,54,55,32,48,32,48,32,49,45,50,46,51,55,51,32,49,46,53,51,52,99,45,46,48,49,56,46,50,50,55,45,46,48,54,46,53,51,56,45,46,49,54,46,56,54,56,45,46,50,48,49,46,54,53,57,45,46,54,54,55,32,49,46,52,55,57,45,49,46,55,48,56,32,49,46,55,52,97,56,46,49,49,55,32,56,46,49,49,55,32,48,32,48,32,49,45,51,46,48,55,56,46,49,51,50,32,51,46,54,53,56,32,51,46,54,53,56,32,48,32,48,32,49,45,46,53,54,51,45,46,49,51,53,32,49,46,51,56,50,32,49,46,51,56,50,32,48,32,48,32,49,45,46,52,54,53,45,46,50,52,55,46,55,49,52,46,55,49,52,32,48,32,48,32,49,45,46,50,48,52,45,46,50,56,56,46,54,50,50,46,54,50,50,32,48,32,48,32,49,32,46,48,48,52,45,46,52,52,51,99,46,48,57,53,45,46,50,52,53,46,51,49,54,45,46,51,56,46,52,54,49,45,46,52,53,50,46,51,57,51,45,46,49,57,55,46,54,50,53,45,46,52,53,51,46,56,54,55,45,46,56,50,54,46,48,57,52,45,46,49,52,52,46,49,56,52,45,46,50,57,55,46,50,56,55,45,46,52,55,50,108,46,49,49,55,45,46,49,57,56,99,46,49,53,49,45,46,50,53,53,46,51,50,54,45,46,53,52,46,53,52,54,45,46,56,52,56,46,53,50,56,45,46,55,51,57,32,49,46,50,45,46,57,50,53,32,49,46,55,52,54,45,46,56,57,54,46,49,50,54,46,48,48,55,46,50,52,51,46,48,50,53,46,51,52,56,46,48,52,56,46,48,54,50,45,46,49,55,50,46,49,52,50,45,46,51,56,46,50,51,56,45,46,54,48,56,46,50,54,49,45,46,54,49,57,46,54,53,56,45,49,46,52,49,57,32,49,46,49,56,55,45,50,46,48,54,57,32,50,46,49,55,53,45,50,46,54,55,32,54,46,49,56,45,54,46,50,48,54,32,57,46,49,49,55,45,56,46,49,48,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,57,54,46,48,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,117,99,107,101,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,117,99,107,101,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,50,50,32,53,72,50,97,46,53,46,53,32,48,32,48,32,48,45,46,52,57,52,46,53,55,52,108,49,46,51,55,50,32,57,46,49,52,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,52,46,51,54,32,49,54,104,55,46,50,55,56,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,52,56,51,45,49,46,50,55,55,108,49,46,51,55,51,45,57,46,49,52,57,65,46,53,46,53,32,48,32,48,32,48,32,49,52,32,53,104,45,46,53,50,50,65,53,46,53,32,53,46,53,32,48,32,48,32,48,32,50,46,53,50,50,32,53,122,109,49,46,48,48,53,32,48,97,52,46,53,32,52,46,53,32,48,32,48,32,49,32,56,46,57,52,53,32,48,72,51,46,53,50,55,122,109,57,46,56,57,50,32,49,108,45,49,46,50,56,54,32,56,46,53,55,52,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,52,46,52,50,54,72,52,46,51,54,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,52,45,46,52,50,54,76,50,46,53,56,32,54,104,49,48,46,56,51,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,117,99,107,101,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,117,99,107,101,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,50,50,32,53,72,50,97,46,53,46,53,32,48,32,48,32,48,45,46,52,57,52,46,53,55,52,108,49,46,51,55,50,32,57,46,49,52,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,52,46,51,54,32,49,54,104,55,46,50,55,56,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,52,56,51,45,49,46,50,55,55,108,49,46,51,55,51,45,57,46,49,52,57,65,46,53,46,53,32,48,32,48,32,48,32,49,52,32,53,104,45,46,53,50,50,65,53,46,53,32,53,46,53,32,48,32,48,32,48,32,50,46,53,50,50,32,53,122,109,49,46,48,48,53,32,48,97,52,46,53,32,52,46,53,32,48,32,48,32,49,32,56,46,57,52,53,32,48,72,51,46,53,50,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,117,103,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,117,103,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,51,53,53,46,53,50,50,97,46,53,46,53,32,48,32,48,32,49,32,46,54,50,51,46,51,51,51,108,46,50,57,49,46,57,53,54,65,52,46,57,55,57,32,52,46,57,55,57,32,48,32,48,32,49,32,56,32,49,99,49,46,48,48,55,32,48,32,49,46,57,52,54,46,50,57,56,32,50,46,55,51,49,46,56,49,49,108,46,50,57,45,46,57,53,54,97,46,53,46,53,32,48,32,49,32,49,32,46,57,53,55,46,50,57,108,45,46,52,49,32,49,46,51,53,50,65,52,46,57,56,53,32,52,46,57,56,53,32,48,32,48,32,49,32,49,51,32,54,104,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,51,46,53,32,55,72,49,51,118,49,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,51,118,49,104,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,46,53,118,46,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,118,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,49,51,97,53,32,53,32,48,32,48,32,49,45,49,48,32,48,104,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,46,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,118,45,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,46,53,32,49,48,72,51,86,57,72,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,51,86,55,104,45,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,32,53,46,53,86,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,72,51,99,48,45,49,46,51,54,52,46,53,52,55,45,50,46,54,48,49,32,49,46,52,51,50,45,51,46,53,48,51,108,45,46,52,49,45,49,46,51,53,50,97,46,53,46,53,32,48,32,48,32,49,32,46,51,51,51,45,46,54,50,51,122,77,52,32,55,118,52,97,52,32,52,32,48,32,48,32,48,32,51,46,53,32,51,46,57,55,86,55,72,52,122,109,52,46,53,32,48,118,55,46,57,55,65,52,32,52,32,48,32,48,32,48,32,49,50,32,49,49,86,55,72,56,46,53,122,77,49,50,32,54,97,51,46,57,56,57,32,51,46,57,56,57,32,48,32,48,32,48,45,49,46,51,51,52,45,50,46,57,56,50,65,51,46,57,56,51,32,51,46,57,56,51,32,48,32,48,32,48,32,56,32,50,97,51,46,57,56,51,32,51,46,57,56,51,32,48,32,48,32,48,45,50,46,54,54,55,32,49,46,48,49,56,65,51,46,57,56,57,32,51,46,57,56,57,32,48,32,48,32,48,32,52,32,54,104,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,117,103,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,117,103,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,57,55,56,46,56,53,53,97,46,53,46,53,32,48,32,49,32,48,45,46,57,53,54,46,50,57,108,46,52,49,32,49,46,51,53,50,65,52,46,57,56,53,32,52,46,57,56,53,32,48,32,48,32,48,32,51,32,54,104,49,48,97,52,46,57,56,53,32,52,46,57,56,53,32,48,32,48,32,48,45,49,46,52,51,50,45,51,46,53,48,51,108,46,52,49,45,49,46,51,53,50,97,46,53,46,53,32,48,32,49,32,48,45,46,57,53,54,45,46,50,57,108,45,46,50,57,49,46,57,53,54,65,52,46,57,55,56,32,52,46,57,55,56,32,48,32,48,32,48,32,56,32,49,97,52,46,57,55,57,32,52,46,57,55,57,32,48,32,48,32,48,45,50,46,55,51,49,46,56,49,49,108,45,46,50,57,45,46,57,53,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,51,32,54,118,49,72,56,46,53,118,56,46,57,55,53,65,53,32,53,32,48,32,48,32,48,32,49,51,32,49,49,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,46,53,97,46,53,46,53,32,48,32,49,32,48,32,49,32,48,118,45,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,48,45,49,46,53,45,49,46,53,72,49,51,86,57,104,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,49,51,86,55,104,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,53,32,53,46,53,86,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,49,51,122,109,45,53,46,53,32,57,46,57,55,53,86,55,72,51,86,54,104,45,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,50,46,53,32,55,72,51,118,49,72,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,72,51,118,49,104,45,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,32,49,49,46,53,118,46,53,97,46,53,46,53,32,48,32,49,32,48,32,49,32,48,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,72,51,97,53,32,53,32,48,32,48,32,48,32,52,46,53,32,52,46,57,55,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,117,105,108,100,105,110,103,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,117,105,108,100,105,110,103,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,52,46,55,54,51,46,48,55,53,65,46,53,46,53,32,48,32,48,32,49,32,49,53,32,46,53,118,49,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,49,52,104,45,49,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,51,52,50,45,46,52,55,52,76,54,32,55,46,54,52,86,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,50,55,54,45,46,52,52,55,108,56,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,52,56,55,46,48,50,50,122,77,54,32,56,46,54,57,52,76,49,32,49,48,46,51,54,86,49,53,104,53,86,56,46,54,57,52,122,77,55,32,49,53,104,50,118,45,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,53,104,50,86,49,46,51,48,57,108,45,55,32,51,46,53,86,49,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,49,49,104,49,118,49,72,50,118,45,49,122,109,50,32,48,104,49,118,49,72,52,118,45,49,122,109,45,50,32,50,104,49,118,49,72,50,118,45,49,122,109,50,32,48,104,49,118,49,72,52,118,45,49,122,109,52,45,52,104,49,118,49,72,56,86,57,122,109,50,32,48,104,49,118,49,104,45,49,86,57,122,109,45,50,32,50,104,49,118,49,72,56,118,45,49,122,109,50,32,48,104,49,118,49,104,45,49,118,45,49,122,109,50,45,50,104,49,118,49,104,45,49,86,57,122,109,48,32,50,104,49,118,49,104,45,49,118,45,49,122,77,56,32,55,104,49,118,49,72,56,86,55,122,109,50,32,48,104,49,118,49,104,45,49,86,55,122,109,50,32,48,104,49,118,49,104,45,49,86,55,122,77,56,32,53,104,49,118,49,72,56,86,53,122,109,50,32,48,104,49,118,49,104,45,49,86,53,122,109,50,32,48,104,49,118,49,104,45,49,86,53,122,109,48,45,50,104,49,118,49,104,45,49,86,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,66,117,108,108,115,101,121,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,66,117,108,108,115,101,121,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,49,51,65,53,32,53,32,48,32,49,32,49,32,56,32,51,97,53,32,53,32,48,32,48,32,49,32,48,32,49,48,122,109,48,32,49,65,54,32,54,32,48,32,49,32,48,32,56,32,50,97,54,32,54,32,48,32,48,32,48,32,48,32,49,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,49,49,97,51,32,51,32,48,32,49,32,49,32,48,45,54,32,51,32,51,32,48,32,48,32,49,32,48,32,54,122,109,48,32,49,97,52,32,52,32,48,32,49,32,48,32,48,45,56,32,52,32,52,32,48,32,48,32,48,32,48,32,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,53,32,56,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,99,117,108,97,116,111,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,56,122,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,122,109,48,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,51,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,51,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,99,117,108,97,116,111,114,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,50,32,46,53,118,50,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,55,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,55,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,109,48,32,52,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,77,52,46,53,32,57,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,77,52,32,49,50,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,77,55,46,53,32,54,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,77,55,32,57,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,109,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,77,49,48,32,54,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,109,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,49,32,52,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,67,104,101,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,56,53,52,32,56,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,49,48,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,67,104,101,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,57,46,57,53,52,32,51,72,50,46,53,52,53,99,45,46,51,32,48,45,46,53,52,53,46,50,50,52,45,46,53,52,53,46,53,118,49,99,48,32,46,50,55,54,46,50,52,52,46,53,46,53,52,53,46,53,104,49,48,46,57,49,99,46,51,32,48,32,46,53,52,53,45,46,50,50,52,46,53,52,53,45,46,53,118,45,49,99,48,45,46,50,55,54,45,46,50,52,52,45,46,53,45,46,53,52,54,45,46,53,122,109,45,50,46,54,32,53,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,55,46,53,32,49,48,46,55,57,51,32,54,46,51,53,52,32,57,46,54,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,49,46,53,32,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,51,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,68,97,116,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,52,52,53,32,49,50,46,54,56,56,86,55,46,51,53,52,104,45,46,54,51,51,65,49,50,46,54,32,49,50,46,54,32,48,32,48,32,48,32,52,46,53,32,56,46,49,54,118,46,54,57,53,99,46,51,55,53,45,46,50,53,55,46,57,54,57,45,46,54,50,32,49,46,50,53,56,45,46,55,55,55,104,46,48,49,50,118,52,46,54,49,104,46,54,55,53,122,109,49,46,49,56,56,45,49,46,51,48,53,99,46,48,52,55,46,54,52,46,53,57,52,32,49,46,52,48,54,32,49,46,55,48,51,32,49,46,52,48,54,32,49,46,50,53,56,32,48,32,50,45,49,46,48,54,54,32,50,45,50,46,56,55,49,32,48,45,49,46,57,51,52,45,46,55,56,49,45,50,46,54,54,56,45,49,46,57,53,51,45,50,46,54,54,56,45,46,57,50,54,32,48,45,49,46,55,57,55,46,54,55,50,45,49,46,55,57,55,32,49,46,56,48,57,32,48,32,49,46,49,54,46,56,50,52,32,49,46,55,55,32,49,46,54,55,54,32,49,46,55,55,46,55,52,54,32,48,32,49,46,50,51,45,46,51,55,54,32,49,46,51,56,51,45,46,55,57,104,46,48,50,55,99,45,46,48,48,52,32,49,46,51,49,54,45,46,52,54,49,32,50,46,49,54,52,45,49,46,51,48,53,32,50,46,49,54,52,45,46,54,54,52,32,48,45,49,46,48,48,56,45,46,52,53,45,49,46,48,53,45,46,56,50,104,45,46,54,56,52,122,109,50,46,57,53,51,45,50,46,51,49,55,99,48,32,46,54,57,54,45,46,53,53,57,32,49,46,49,56,45,49,46,49,56,52,32,49,46,49,56,45,46,54,48,49,32,48,45,49,46,49,52,52,45,46,51,56,51,45,49,46,49,52,52,45,49,46,50,32,48,45,46,56,50,51,46,53,56,50,45,49,46,50,49,32,49,46,49,54,56,45,49,46,50,49,46,54,51,51,32,48,32,49,46,49,54,46,51,57,56,32,49,46,49,54,32,49,46,50,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,68,97,116,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,52,48,50,32,49,48,46,50,52,54,99,46,54,50,53,32,48,32,49,46,49,56,52,45,46,52,56,52,32,49,46,49,56,52,45,49,46,49,56,32,48,45,46,56,51,50,45,46,53,50,55,45,49,46,50,51,45,49,46,49,54,45,49,46,50,51,45,46,53,56,54,32,48,45,49,46,49,54,56,46,51,56,55,45,49,46,49,54,56,32,49,46,50,49,32,48,32,46,56,49,55,46,53,52,51,32,49,46,50,32,49,46,49,52,52,32,49,46,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,57,46,57,53,52,32,51,72,50,46,53,52,53,99,45,46,51,32,48,45,46,53,52,53,46,50,50,52,45,46,53,52,53,46,53,118,49,99,48,32,46,50,55,54,46,50,52,52,46,53,46,53,52,53,46,53,104,49,48,46,57,49,99,46,51,32,48,32,46,53,52,53,45,46,50,50,52,46,53,52,53,45,46,53,118,45,49,99,48,45,46,50,55,54,45,46,50,52,52,45,46,53,45,46,53,52,54,45,46,53,122,109,45,52,46,49,49,56,32,57,46,55,57,99,49,46,50,53,56,32,48,32,50,45,49,46,48,54,55,32,50,45,50,46,56,55,50,32,48,45,49,46,57,51,52,45,46,55,56,49,45,50,46,54,54,56,45,49,46,57,53,51,45,50,46,54,54,56,45,46,57,50,54,32,48,45,49,46,55,57,55,46,54,55,50,45,49,46,55,57,55,32,49,46,56,48,57,32,48,32,49,46,49,54,46,56,50,52,32,49,46,55,55,32,49,46,54,55,54,32,49,46,55,55,46,55,52,54,32,48,32,49,46,50,51,45,46,51,55,54,32,49,46,51,56,51,45,46,55,57,104,46,48,50,55,99,45,46,48,48,52,32,49,46,51,49,54,45,46,52,54,49,32,50,46,49,54,52,45,49,46,51,48,53,32,50,46,49,54,52,45,46,54,54,52,32,48,45,49,46,48,48,56,45,46,52,53,45,49,46,48,53,45,46,56,50,104,45,46,54,56,52,99,46,48,52,55,46,54,52,46,53,57,52,32,49,46,52,48,54,32,49,46,55,48,51,32,49,46,52,48,54,122,109,45,50,46,56,57,45,53,46,52,51,53,104,45,46,54,51,51,65,49,50,46,54,32,49,50,46,54,32,48,32,48,32,48,32,52,46,53,32,56,46,49,54,118,46,54,57,53,99,46,51,55,53,45,46,50,53,55,46,57,54,57,45,46,54,50,32,49,46,50,53,56,45,46,55,55,55,104,46,48,49,50,118,52,46,54,49,104,46,54,55,53,86,55,46,51,53,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,68,97,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,54,56,52,32,49,50,46,53,50,51,118,45,50,46,51,104,50,46,50,54,49,118,45,46,54,49,72,52,46,54,56,52,86,55,46,56,48,49,104,50,46,52,54,52,118,45,46,54,49,72,52,118,53,46,51,51,50,104,46,54,56,52,122,109,51,46,50,57,54,32,48,104,46,54,55,54,86,57,46,57,56,99,48,45,46,53,53,52,46,50,50,55,45,49,46,48,48,55,46,57,53,51,45,49,46,48,48,55,46,49,50,53,32,48,32,46,50,53,56,46,48,48,52,46,51,50,57,46,48,49,53,118,45,46,54,49,51,97,49,46,56,48,54,32,49,46,56,48,54,32,48,32,48,32,48,45,46,50,53,52,45,46,48,50,99,45,46,53,56,50,32,48,45,46,56,57,49,46,51,50,45,49,46,48,49,50,46,53,54,55,104,45,46,48,50,118,45,46,53,48,52,72,55,46,57,56,118,52,46,49,48,53,122,109,50,46,56,48,53,45,53,46,48,57,51,99,48,32,46,50,51,56,46,49,57,50,46,52,50,53,46,52,51,46,52,50,53,97,46,52,50,56,46,52,50,56,32,48,32,49,32,48,32,48,45,46,56,53,53,46,52,50,54,46,52,50,54,32,48,32,48,32,48,45,46,52,51,46,52,51,122,109,46,48,57,52,32,53,46,48,57,51,104,46,54,55,50,86,56,46,52,49,56,104,45,46,54,55,50,118,52,46,49,48,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,68,97,121,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,57,46,57,53,52,32,51,72,50,46,53,52,53,99,45,46,51,32,48,45,46,53,52,53,46,50,50,52,45,46,53,52,53,46,53,118,49,99,48,32,46,50,55,54,46,50,52,52,46,53,46,53,52,53,46,53,104,49,48,46,57,49,99,46,51,32,48,32,46,53,52,53,45,46,50,50,52,46,53,52,53,45,46,53,118,45,49,99,48,45,46,50,55,54,45,46,50,52,52,45,46,53,45,46,53,52,54,45,46,53,122,109,45,50,46,50,52,32,52,46,56,53,53,97,46,52,50,56,46,52,50,56,32,48,32,49,32,48,32,48,45,46,56,53,53,46,52,50,54,46,52,50,54,32,48,32,48,32,48,45,46,52,50,57,46,52,51,99,48,32,46,50,51,56,46,49,57,50,46,52,50,53,46,52,51,46,52,50,53,122,109,46,51,51,55,46,53,54,51,104,45,46,54,55,50,118,52,46,49,48,53,104,46,54,55,50,86,56,46,52,49,56,122,109,45,54,46,56,54,55,32,52,46,49,48,53,118,45,50,46,51,104,50,46,50,54,49,118,45,46,54,49,72,52,46,54,56,52,86,55,46,56,48,49,104,50,46,52,54,52,118,45,46,54,49,72,52,118,53,46,51,51,50,104,46,54,56,52,122,109,51,46,50,57,54,32,48,104,46,54,55,54,86,57,46,57,56,99,48,45,46,53,53,52,46,50,50,55,45,49,46,48,48,55,46,57,53,51,45,49,46,48,48,55,46,49,50,53,32,48,32,46,50,53,56,46,48,48,52,46,51,50,57,46,48,49,53,118,45,46,54,49,51,97,49,46,56,48,54,32,49,46,56,48,54,32,48,32,48,32,48,45,46,50,53,52,45,46,48,50,99,45,46,53,56,50,32,48,45,46,56,57,49,46,51,50,45,49,46,48,49,50,46,53,54,55,104,45,46,48,50,118,45,46,53,48,52,72,55,46,57,56,118,52,46,49,48,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,69,118,101,110,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,55,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,69,118,101,110,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,57,46,57,53,52,32,51,72,50,46,53,52,53,99,45,46,51,32,48,45,46,53,52,53,46,50,50,52,45,46,53,52,53,46,53,118,49,99,48,32,46,50,55,54,46,50,52,52,46,53,46,53,52,53,46,53,104,49,48,46,57,49,99,46,51,32,48,32,46,53,52,53,45,46,50,50,52,46,53,52,53,45,46,53,118,45,49,99,48,45,46,50,55,54,45,46,50,52,52,45,46,53,45,46,53,52,54,45,46,53,122,77,49,49,46,53,32,55,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,86,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,52,86,46,53,122,77,50,46,53,52,53,32,51,104,49,48,46,57,49,99,46,51,32,48,32,46,53,52,53,46,50,50,52,46,53,52,53,46,53,118,49,99,48,32,46,50,55,54,45,46,50,52,52,46,53,45,46,53,52,54,46,53,72,50,46,53,52,53,67,50,46,50,52,53,32,53,32,50,32,52,46,55,55,54,32,50,32,52,46,53,118,45,49,99,48,45,46,50,55,54,46,50,52,52,45,46,53,46,53,52,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,77,105,110,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,49,48,46,53,65,46,53,46,53,32,48,32,48,32,49,32,54,32,49,48,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,77,105,110,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,57,46,57,53,52,32,51,72,50,46,53,52,53,99,45,46,51,32,48,45,46,53,52,53,46,50,50,52,45,46,53,52,53,46,53,118,49,99,48,32,46,50,55,54,46,50,52,52,46,53,46,53,52,53,46,53,104,49,48,46,57,49,99,46,51,32,48,32,46,53,52,53,45,46,50,50,52,46,53,52,53,45,46,53,118,45,49,99,48,45,46,50,55,54,45,46,50,52,52,45,46,53,45,46,53,52,54,45,46,53,122,77,54,32,49,48,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,77,111,110,116,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,54,32,49,50,46,51,51,50,108,46,53,52,45,49,46,54,48,50,104,49,46,57,56,52,108,46,53,52,32,49,46,54,48,50,104,46,55,49,56,76,52,46,52,52,52,32,55,104,45,46,54,57,54,76,49,46,56,53,32,49,50,46,51,51,50,104,46,55,49,122,109,49,46,53,52,52,45,52,46,53,50,55,76,52,46,57,32,49,48,46,49,56,72,51,46,50,56,52,108,46,56,45,50,46,51,55,53,104,46,48,50,122,109,53,46,55,52,54,46,52,50,50,104,45,46,54,55,54,118,50,46,53,52,51,99,48,32,46,54,53,50,45,46,52,49,52,32,49,46,48,50,51,45,49,46,48,48,52,32,49,46,48,50,51,45,46,53,51,57,32,48,45,46,57,56,45,46,50,52,54,45,46,57,56,45,49,46,48,49,50,86,56,46,50,50,55,104,45,46,54,55,54,118,50,46,55,52,54,99,48,32,46,57,52,49,46,54,48,54,32,49,46,52,50,53,32,49,46,52,53,51,32,49,46,52,50,53,46,54,53,54,32,48,32,49,46,48,52,51,45,46,50,56,32,49,46,49,56,56,45,46,54,48,53,104,46,48,50,55,118,46,53,51,57,104,46,54,54,56,86,56,46,50,50,55,122,109,50,46,50,53,56,32,53,46,48,52,54,99,45,46,53,54,51,32,48,45,46,57,49,45,46,51,48,52,45,46,57,56,53,45,46,54,51,54,104,45,46,54,56,55,99,46,48,57,52,46,54,56,51,46,54,50,53,32,49,46,49,57,57,32,49,46,54,54,56,32,49,46,49,57,57,46,57,51,32,48,32,49,46,55,52,54,45,46,53,50,55,32,49,46,55,52,54,45,49,46,53,55,56,86,56,46,50,50,55,104,45,46,54,52,57,118,46,53,55,56,104,45,46,48,49,57,99,45,46,49,57,49,45,46,51,52,56,45,46,54,51,55,45,46,54,52,45,49,46,49,57,53,45,46,54,52,45,46,57,54,53,32,48,45,49,46,54,52,46,54,55,57,45,49,46,54,52,32,49,46,56,56,54,118,46,51,52,99,48,32,49,46,50,51,46,54,56,51,32,49,46,57,48,50,32,49,46,54,52,32,49,46,57,48,50,46,53,53,56,32,48,32,49,46,48,48,56,45,46,50,57,51,32,49,46,49,55,50,45,46,54,52,56,104,46,48,50,118,46,54,48,53,99,48,32,46,54,52,53,45,46,52,50,51,32,49,46,48,50,51,45,49,46,48,55,49,32,49,46,48,50,51,122,109,46,48,48,56,45,52,46,53,51,99,46,54,52,56,32,48,32,49,46,48,54,50,46,53,50,55,32,49,46,48,54,50,32,49,46,51,53,57,118,46,50,53,51,99,48,32,46,56,52,56,45,46,51,57,32,49,46,51,54,52,45,49,46,48,54,50,32,49,46,51,54,52,45,46,54,57,50,32,48,45,49,46,48,57,56,45,46,53,49,50,45,49,46,48,57,56,45,49,46,51,54,52,118,45,46,50,53,51,99,48,45,46,56,54,56,46,52,48,54,45,49,46,51,54,32,49,46,48,57,56,45,49,46,51,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,77,111,110,116,104,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,49,48,52,32,55,46,56,48,53,76,52,46,57,32,49,48,46,49,56,72,51,46,50,56,52,108,46,56,45,50,46,51,55,53,104,46,48,50,122,109,57,46,48,55,52,32,50,46,50,57,55,99,48,45,46,56,51,50,45,46,52,49,52,45,49,46,51,54,45,49,46,48,54,50,45,49,46,51,54,45,46,54,57,50,32,48,45,49,46,48,57,56,46,52,57,50,45,49,46,48,57,56,32,49,46,51,54,118,46,50,53,51,99,48,32,46,56,53,50,46,52,48,54,32,49,46,51,54,52,32,49,46,48,57,56,32,49,46,51,54,52,46,54,55,49,32,48,32,49,46,48,54,50,45,46,53,49,54,32,49,46,48,54,50,45,49,46,51,54,52,118,45,46,50,53,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,57,46,57,53,52,32,51,72,50,46,53,52,53,99,45,46,51,32,48,45,46,53,52,53,46,50,50,52,45,46,53,52,53,46,53,118,49,99,48,32,46,50,55,54,46,50,52,52,46,53,46,53,52,53,46,53,104,49,48,46,57,49,99,46,51,32,48,32,46,53,52,53,45,46,50,50,52,46,53,52,53,45,46,53,118,45,49,99,48,45,46,50,55,54,45,46,50,52,52,45,46,53,45,46,53,52,54,45,46,53,122,77,50,46,53,54,49,32,49,50,46,51,51,50,76,51,46,49,32,49,48,46,55,51,104,49,46,57,56,52,108,46,53,52,32,49,46,54,48,50,104,46,55,49,56,76,52,46,52,52,52,32,55,104,45,46,54,57,54,76,49,46,56,53,32,49,50,46,51,51,50,104,46,55,49,122,77,57,46,56,53,32,56,46,50,50,55,104,45,46,54,55,54,118,50,46,53,52,51,99,48,32,46,54,53,50,45,46,52,49,52,32,49,46,48,50,51,45,49,46,48,48,52,32,49,46,48,50,51,45,46,53,51,57,32,48,45,46,57,56,45,46,50,52,54,45,46,57,56,45,49,46,48,49,50,86,56,46,50,50,55,104,45,46,54,55,54,118,50,46,55,52,54,99,48,32,46,57,52,49,46,54,48,54,32,49,46,52,50,53,32,49,46,52,53,51,32,49,46,52,50,53,46,54,53,54,32,48,32,49,46,48,52,51,45,46,50,56,32,49,46,49,56,56,45,46,54,48,53,104,46,48,50,55,118,46,53,51,57,104,46,54,54,56,86,56,46,50,50,55,122,109,49,46,50,55,51,32,52,46,52,49,104,45,46,54,56,55,99,46,48,57,52,46,54,56,51,46,54,50,53,32,49,46,49,57,57,32,49,46,54,54,56,32,49,46,49,57,57,46,57,51,32,48,32,49,46,55,52,54,45,46,53,50,55,32,49,46,55,52,54,45,49,46,53,55,56,86,56,46,50,50,55,104,45,46,54,52,57,118,46,53,55,56,104,45,46,48,49,57,99,45,46,49,57,49,45,46,51,52,56,45,46,54,51,55,45,46,54,52,45,49,46,49,57,53,45,46,54,52,45,46,57,54,53,32,48,45,49,46,54,52,46,54,55,57,45,49,46,54,52,32,49,46,56,56,54,118,46,51,52,99,48,32,49,46,50,51,46,54,56,51,32,49,46,57,48,50,32,49,46,54,52,32,49,46,57,48,50,46,53,53,56,32,48,32,49,46,48,48,56,45,46,50,57,51,32,49,46,49,55,50,45,46,54,52,56,104,46,48,50,118,46,54,48,53,99,48,32,46,54,52,53,45,46,52,50,51,32,49,46,48,50,51,45,49,46,48,55,49,32,49,46,48,50,51,45,46,53,54,51,32,48,45,46,57,49,45,46,51,48,52,45,46,57,56,53,45,46,54,51,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,80,108,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,52,122,77,56,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,48,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,49,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,56,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,80,108,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,51,46,53,118,49,99,48,32,46,50,55,54,46,50,52,52,46,53,46,53,52,53,46,53,104,49,48,46,57,49,99,46,51,32,48,32,46,53,52,53,45,46,50,50,52,46,53,52,53,45,46,53,118,45,49,99,48,45,46,50,55,54,45,46,50,52,52,45,46,53,45,46,53,52,54,45,46,53,72,50,46,53,52,53,99,45,46,51,32,48,45,46,53,52,53,46,50,50,52,45,46,53,52,53,46,53,122,109,54,46,53,32,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,48,72,54,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,46,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,49,49,72,49,48,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,56,46,53,86,56,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,82,97,110,103,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,52,122,77,57,32,56,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,118,50,104,45,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,109,45,56,32,50,104,52,97,49,32,49,32,48,32,49,32,49,32,48,32,50,72,49,118,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,82,97,110,103,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,57,46,57,53,52,32,51,72,50,46,53,52,53,99,45,46,51,32,48,45,46,53,52,53,46,50,50,52,45,46,53,52,53,46,53,118,49,99,48,32,46,50,55,54,46,50,52,52,46,53,46,53,52,53,46,53,104,49,48,46,57,49,99,46,51,32,48,32,46,53,52,53,45,46,50,50,52,46,53,52,53,45,46,53,118,45,49,99,48,45,46,50,55,54,45,46,50,52,52,45,46,53,45,46,53,52,54,45,46,53,122,77,49,48,32,55,97,49,32,49,32,48,32,48,32,48,32,48,32,50,104,53,86,55,104,45,53,122,109,45,52,32,52,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,49,118,50,104,52,97,49,32,49,32,48,32,48,32,48,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,87,101,101,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,52,122,77,49,49,32,55,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,45,51,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,45,53,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,51,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,87,101,101,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,57,46,57,53,52,32,51,72,50,46,53,52,53,99,45,46,51,32,48,45,46,53,52,53,46,50,50,52,45,46,53,52,53,46,53,118,49,99,48,32,46,50,55,54,46,50,52,52,46,53,46,53,52,53,46,53,104,49,48,46,57,49,99,46,51,32,48,32,46,53,52,53,45,46,50,50,52,46,53,52,53,45,46,53,118,45,49,99,48,45,46,50,55,54,45,46,50,52,52,45,46,53,45,46,53,52,54,45,46,53,122,77,56,46,53,32,55,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,109,51,32,48,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,77,51,32,49,48,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,109,51,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,88,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,49,52,54,32,56,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,57,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,49,48,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,49,48,46,55,48,55,108,45,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,49,48,32,54,46,49,52,54,32,56,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,50,88,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,57,46,57,53,52,32,51,72,50,46,53,52,53,99,45,46,51,32,48,45,46,53,52,53,46,50,50,52,45,46,53,52,53,46,53,118,49,99,48,32,46,50,55,54,46,50,52,52,46,53,46,53,52,53,46,53,104,49,48,46,57,49,99,46,51,32,48,32,46,53,52,53,45,46,50,50,52,46,53,52,53,45,46,53,118,45,49,99,48,45,46,50,55,54,45,46,50,52,52,45,46,53,45,46,53,52,54,45,46,53,122,109,45,54,46,54,32,53,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,55,46,50,57,51,32,49,48,108,45,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,76,56,32,49,48,46,55,48,55,108,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,76,56,46,55,48,55,32,49,48,108,49,46,49,52,55,45,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,32,57,46,50,57,51,32,54,46,56,53,52,32,56,46,49,52,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,51,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,48,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,49,32,51,46,56,53,55,67,49,32,51,46,51,56,52,32,49,46,52,52,56,32,51,32,50,32,51,104,49,50,99,46,53,53,50,32,48,32,49,32,46,51,56,52,32,49,32,46,56,53,55,118,49,48,46,50,56,54,99,48,32,46,52,55,51,45,46,52,52,56,46,56,53,55,45,49,32,46,56,53,55,72,50,99,45,46,53,53,50,32,48,45,49,45,46,51,56,52,45,49,45,46,56,53,55,86,51,46,56,53,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,55,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,109,51,32,48,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,109,51,32,48,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,109,45,57,32,51,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,109,51,32,48,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,109,51,32,48,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,109,51,32,48,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,109,45,57,32,51,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,109,51,32,48,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,109,51,32,48,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,51,69,118,101,110,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,48,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,49,32,51,46,56,53,55,67,49,32,51,46,51,56,52,32,49,46,52,52,56,32,51,32,50,32,51,104,49,50,99,46,53,53,50,32,48,32,49,32,46,51,56,52,32,49,32,46,56,53,55,118,49,48,46,50,56,54,99,48,32,46,52,55,51,45,46,52,52,56,46,56,53,55,45,49,32,46,56,53,55,72,50,99,45,46,53,53,50,32,48,45,49,45,46,51,56,52,45,49,45,46,56,53,55,86,51,46,56,53,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,32,55,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,51,69,118,101,110,116,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,104,49,54,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,77,48,32,49,52,86,51,104,49,54,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,122,109,49,50,45,56,97,49,32,49,32,48,32,49,32,48,32,50,32,48,32,49,32,49,32,48,32,48,32,48,45,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,51,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,72,48,122,109,48,32,49,118,49,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,72,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,51,82,97,110,103,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,48,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,49,32,51,46,56,53,55,67,49,32,51,46,51,56,52,32,49,46,52,52,56,32,51,32,50,32,51,104,49,50,99,46,53,53,50,32,48,32,49,32,46,51,56,52,32,49,32,46,56,53,55,118,49,48,46,50,56,54,99,48,32,46,52,55,51,45,46,52,52,56,46,56,53,55,45,49,32,46,56,53,55,72,50,99,45,46,53,53,50,32,48,45,49,45,46,51,56,52,45,49,45,46,56,53,55,86,51,46,56,53,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,32,49,48,97,49,32,49,32,48,32,48,32,48,32,48,45,50,72,49,118,50,104,54,122,109,50,45,51,104,54,86,53,72,57,97,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,51,82,97,110,103,101,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,104,49,54,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,77,48,32,56,86,51,104,49,54,118,50,104,45,54,97,49,32,49,32,48,32,49,32,48,32,48,32,50,104,54,118,55,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,52,104,54,97,49,32,49,32,48,32,49,32,48,32,48,45,50,72,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,51,87,101,101,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,48,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,49,32,51,46,56,53,55,67,49,32,51,46,51,56,52,32,49,46,52,52,56,32,51,32,50,32,51,104,49,50,99,46,53,53,50,32,48,32,49,32,46,51,56,52,32,49,32,46,56,53,55,118,49,48,46,50,56,54,99,48,32,46,52,55,51,45,46,52,52,56,46,56,53,55,45,49,32,46,56,53,55,72,50,99,45,46,53,53,50,32,48,45,49,45,46,51,56,52,45,49,45,46,56,53,55,86,51,46,56,53,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,32,55,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,109,45,53,32,51,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,109,50,45,51,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,109,45,53,32,51,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,51,87,101,101,107,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,104,49,54,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,77,48,32,49,52,86,51,104,49,54,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,122,109,49,50,45,56,97,49,32,49,32,48,32,49,32,48,32,50,32,48,32,49,32,49,32,48,32,48,32,48,45,50,32,48,122,77,53,32,57,97,49,32,49,32,48,32,49,32,48,32,50,32,48,32,49,32,49,32,48,32,48,32,48,45,50,32,48,122,109,53,45,50,97,49,32,49,32,48,32,49,32,49,32,48,45,50,32,49,32,49,32,48,32,48,32,49,32,48,32,50,122,77,50,32,57,97,49,32,49,32,48,32,49,32,48,32,50,32,48,32,49,32,49,32,48,32,48,32,48,45,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,52,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,52,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,104,49,52,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,109,49,51,32,51,72,49,118,57,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,52,69,118,101,110,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,52,69,118,101,110,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,104,49,52,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,109,49,51,32,51,72,49,118,57,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,32,55,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,52,82,97,110,103,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,52,82,97,110,103,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,104,49,52,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,109,49,51,32,51,72,49,118,57,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,32,55,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,72,49,53,118,50,72,57,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,45,50,32,51,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,49,118,45,50,104,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,52,87,101,101,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,52,87,101,101,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,104,49,52,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,109,49,51,32,51,72,49,118,57,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,32,55,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,45,51,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,45,50,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,45,51,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,67,104,101,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,56,53,52,32,55,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,57,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,49,32,52,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,67,104,101,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,104,49,54,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,86,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,52,86,46,53,122,77,49,54,32,49,52,86,53,72,48,118,57,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,109,45,53,46,49,52,54,45,53,46,49,52,54,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,49,48,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,68,97,116,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,52,52,53,32,49,49,46,54,56,56,86,54,46,51,53,52,104,45,46,54,51,51,65,49,50,46,54,32,49,50,46,54,32,48,32,48,32,48,32,52,46,53,32,55,46,49,54,118,46,54,57,53,99,46,51,55,53,45,46,50,53,55,46,57,54,57,45,46,54,50,32,49,46,50,53,56,45,46,55,55,55,104,46,48,49,50,118,52,46,54,49,104,46,54,55,53,122,109,49,46,49,56,56,45,49,46,51,48,53,99,46,48,52,55,46,54,52,46,53,57,52,32,49,46,52,48,54,32,49,46,55,48,51,32,49,46,52,48,54,32,49,46,50,53,56,32,48,32,50,45,49,46,48,54,54,32,50,45,50,46,56,55,49,32,48,45,49,46,57,51,52,45,46,55,56,49,45,50,46,54,54,56,45,49,46,57,53,51,45,50,46,54,54,56,45,46,57,50,54,32,48,45,49,46,55,57,55,46,54,55,50,45,49,46,55,57,55,32,49,46,56,48,57,32,48,32,49,46,49,54,46,56,50,52,32,49,46,55,55,32,49,46,54,55,54,32,49,46,55,55,46,55,52,54,32,48,32,49,46,50,51,45,46,51,55,54,32,49,46,51,56,51,45,46,55,57,104,46,48,50,55,99,45,46,48,48,52,32,49,46,51,49,54,45,46,52,54,49,32,50,46,49,54,52,45,49,46,51,48,53,32,50,46,49,54,52,45,46,54,54,52,32,48,45,49,46,48,48,56,45,46,52,53,45,49,46,48,53,45,46,56,50,104,45,46,54,56,52,122,109,50,46,57,53,51,45,50,46,51,49,55,99,48,32,46,54,57,54,45,46,53,53,57,32,49,46,49,56,45,49,46,49,56,52,32,49,46,49,56,45,46,54,48,49,32,48,45,49,46,49,52,52,45,46,51,56,51,45,49,46,49,52,52,45,49,46,50,32,48,45,46,56,50,51,46,53,56,50,45,49,46,50,49,32,49,46,49,54,56,45,49,46,50,49,46,54,51,51,32,48,32,49,46,49,54,46,51,57,56,32,49,46,49,54,32,49,46,50,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,49,32,52,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,68,97,116,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,104,49,54,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,86,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,52,86,46,53,122,109,53,46,52,48,50,32,57,46,55,52,54,99,46,54,50,53,32,48,32,49,46,49,56,52,45,46,52,56,52,32,49,46,49,56,52,45,49,46,49,56,32,48,45,46,56,51,50,45,46,53,50,55,45,49,46,50,51,45,49,46,49,54,45,49,46,50,51,45,46,53,56,54,32,48,45,49,46,49,54,56,46,51,56,55,45,49,46,49,54,56,32,49,46,50,49,32,48,32,46,56,49,55,46,53,52,51,32,49,46,50,32,49,46,49,52,52,32,49,46,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,54,32,49,52,86,53,72,48,118,57,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,109,45,54,46,54,54,52,45,49,46,50,49,99,45,49,46,49,49,32,48,45,49,46,54,53,54,45,46,55,54,55,45,49,46,55,48,51,45,49,46,52,48,55,104,46,54,56,51,99,46,48,52,51,46,51,55,46,51,56,55,46,56,50,32,49,46,48,53,49,46,56,50,46,56,52,52,32,48,32,49,46,51,48,49,45,46,56,52,56,32,49,46,51,48,53,45,50,46,49,54,52,104,45,46,48,50,55,99,45,46,49,53,51,46,52,49,52,45,46,54,51,55,46,55,57,45,49,46,51,56,51,46,55,57,45,46,56,53,50,32,48,45,49,46,54,55,54,45,46,54,49,45,49,46,54,55,54,45,49,46,55,55,32,48,45,49,46,49,51,55,46,56,55,49,45,49,46,56,48,57,32,49,46,55,57,55,45,49,46,56,48,57,32,49,46,49,55,50,32,48,32,49,46,57,53,51,46,55,51,52,32,49,46,57,53,51,32,50,46,54,54,56,32,48,32,49,46,56,48,53,45,46,55,52,50,32,50,46,56,55,49,45,50,32,50,46,56,55,49,122,109,45,50,46,56,57,45,53,46,52,51,53,118,53,46,51,51,50,72,53,46,55,55,86,56,46,48,55,57,104,45,46,48,49,50,99,45,46,50,57,46,49,53,54,45,46,56,56,51,46,53,50,45,49,46,50,53,56,46,55,55,55,86,56,46,49,54,97,49,50,46,54,32,49,50,46,54,32,48,32,48,32,49,32,49,46,51,49,51,45,46,56,48,53,104,46,54,51,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,68,97,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,54,56,52,32,49,49,46,53,50,51,118,45,50,46,51,104,50,46,50,54,49,118,45,46,54,49,72,52,46,54,56,52,86,54,46,56,48,49,104,50,46,52,54,52,118,45,46,54,49,72,52,118,53,46,51,51,50,104,46,54,56,52,122,109,51,46,50,57,54,32,48,104,46,54,55,54,86,56,46,57,56,99,48,45,46,53,53,52,46,50,50,55,45,49,46,48,48,55,46,57,53,51,45,49,46,48,48,55,46,49,50,53,32,48,32,46,50,53,56,46,48,48,52,46,51,50,57,46,48,49,53,118,45,46,54,49,51,97,49,46,56,48,54,32,49,46,56,48,54,32,48,32,48,32,48,45,46,50,53,52,45,46,48,50,99,45,46,53,56,50,32,48,45,46,56,57,49,46,51,50,45,49,46,48,49,50,46,53,54,55,104,45,46,48,50,118,45,46,53,48,52,72,55,46,57,56,118,52,46,49,48,53,122,109,50,46,56,48,53,45,53,46,48,57,51,99,48,32,46,50,51,56,46,49,57,50,46,52,50,53,46,52,51,46,52,50,53,97,46,52,50,56,46,52,50,56,32,48,32,49,32,48,32,48,45,46,56,53,53,46,52,50,54,46,52,50,54,32,48,32,48,32,48,45,46,52,51,46,52,51,122,109,46,48,57,52,32,53,46,48,57,51,104,46,54,55,50,86,55,46,52,49,56,104,45,46,54,55,50,118,52,46,49,48,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,49,32,52,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,68,97,121,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,104,49,54,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,86,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,52,86,46,53,122,77,49,54,32,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,53,104,49,54,118,57,122,109,45,52,46,55,56,53,45,54,46,49,52,53,97,46,52,50,56,46,52,50,56,32,48,32,49,32,48,32,48,45,46,56,53,53,46,52,50,54,46,52,50,54,32,48,32,48,32,48,45,46,52,51,46,52,51,99,48,32,46,50,51,56,46,49,57,50,46,52,50,53,46,52,51,46,52,50,53,122,109,46,51,51,54,46,53,54,51,104,45,46,54,55,50,118,52,46,49,48,53,104,46,54,55,50,86,56,46,52,49,56,122,109,45,54,46,56,54,55,32,52,46,49,48,53,118,45,50,46,51,104,50,46,50,54,49,118,45,46,54,49,72,52,46,54,56,52,86,55,46,56,48,49,104,50,46,52,54,52,118,45,46,54,49,72,52,118,53,46,51,51,50,104,46,54,56,52,122,109,51,46,50,57,54,32,48,104,46,54,55,54,86,57,46,57,56,99,48,45,46,53,53,52,46,50,50,55,45,49,46,48,48,55,46,57,53,51,45,49,46,48,48,55,46,49,50,53,32,48,32,46,50,53,56,46,48,48,52,46,51,50,57,46,48,49,53,118,45,46,54,49,51,97,49,46,56,48,54,32,49,46,56,48,54,32,48,32,48,32,48,45,46,50,53,52,45,46,48,50,99,45,46,53,56,50,32,48,45,46,56,57,49,46,51,50,45,49,46,48,49,50,46,53,54,55,104,45,46,48,50,118,45,46,53,48,52,72,55,46,57,56,118,52,46,49,48,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,69,118,101,110,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,54,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,49,32,52,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,69,118,101,110,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,104,49,54,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,86,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,52,86,46,53,122,77,49,54,32,49,52,86,53,72,48,118,57,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,109,45,51,46,53,45,55,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,53,104,49,54,86,52,72,48,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,77,105,110,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,57,46,53,65,46,53,46,53,32,48,32,48,32,49,32,54,32,57,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,49,32,52,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,77,105,110,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,104,49,54,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,86,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,52,86,46,53,122,77,49,54,32,49,52,86,53,72,48,118,57,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,54,32,49,48,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,77,111,110,116,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,54,32,49,49,46,51,51,50,76,51,46,49,32,57,46,55,51,104,49,46,57,56,52,108,46,53,52,32,49,46,54,48,50,104,46,55,49,56,76,52,46,52,52,52,32,54,104,45,46,54,57,54,76,49,46,56,53,32,49,49,46,51,51,50,104,46,55,49,122,109,49,46,53,52,52,45,52,46,53,50,55,76,52,46,57,32,57,46,49,56,72,51,46,50,56,52,108,46,56,45,50,46,51,55,53,104,46,48,50,122,109,53,46,55,52,54,46,52,50,50,104,45,46,54,55,54,86,57,46,55,55,99,48,32,46,54,53,50,45,46,52,49,52,32,49,46,48,50,51,45,49,46,48,48,52,32,49,46,48,50,51,45,46,53,51,57,32,48,45,46,57,56,45,46,50,52,54,45,46,57,56,45,49,46,48,49,50,86,55,46,50,50,55,104,45,46,54,55,54,118,50,46,55,52,54,99,48,32,46,57,52,49,46,54,48,54,32,49,46,52,50,53,32,49,46,52,53,51,32,49,46,52,50,53,46,54,53,54,32,48,32,49,46,48,52,51,45,46,50,56,32,49,46,49,56,56,45,46,54,48,53,104,46,48,50,55,118,46,53,51,57,104,46,54,54,56,86,55,46,50,50,55,122,109,50,46,50,53,56,32,53,46,48,52,54,99,45,46,53,54,51,32,48,45,46,57,49,45,46,51,48,52,45,46,57,56,53,45,46,54,51,54,104,45,46,54,56,55,99,46,48,57,52,46,54,56,51,46,54,50,53,32,49,46,49,57,57,32,49,46,54,54,56,32,49,46,49,57,57,46,57,51,32,48,32,49,46,55,52,54,45,46,53,50,55,32,49,46,55,52,54,45,49,46,53,55,56,86,55,46,50,50,55,104,45,46,54,52,57,118,46,53,55,56,104,45,46,48,49,57,99,45,46,49,57,49,45,46,51,52,56,45,46,54,51,55,45,46,54,52,45,49,46,49,57,53,45,46,54,52,45,46,57,54,53,32,48,45,49,46,54,52,46,54,55,57,45,49,46,54,52,32,49,46,56,56,54,118,46,51,52,99,48,32,49,46,50,51,46,54,56,51,32,49,46,57,48,50,32,49,46,54,52,32,49,46,57,48,50,46,53,53,56,32,48,32,49,46,48,48,56,45,46,50,57,51,32,49,46,49,55,50,45,46,54,52,56,104,46,48,50,118,46,54,48,53,99,48,32,46,54,52,53,45,46,52,50,51,32,49,46,48,50,51,45,49,46,48,55,49,32,49,46,48,50,51,122,109,46,48,48,56,45,52,46,53,51,99,46,54,52,56,32,48,32,49,46,48,54,50,46,53,50,55,32,49,46,48,54,50,32,49,46,51,53,57,118,46,50,53,51,99,48,32,46,56,52,56,45,46,51,57,32,49,46,51,54,52,45,49,46,48,54,50,32,49,46,51,54,52,45,46,54,57,50,32,48,45,49,46,48,57,56,45,46,53,49,50,45,49,46,48,57,56,45,49,46,51,54,52,118,45,46,50,53,51,99,48,45,46,56,54,56,46,52,48,54,45,49,46,51,54,32,49,46,48,57,56,45,49,46,51,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,49,32,52,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,77,111,110,116,104,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,104,49,54,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,86,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,52,86,46,53,122,109,46,49,48,52,32,55,46,51,48,53,76,52,46,57,32,49,48,46,49,56,72,51,46,50,56,52,108,46,56,45,50,46,51,55,53,104,46,48,50,122,109,57,46,48,55,52,32,50,46,50,57,55,99,48,45,46,56,51,50,45,46,52,49,52,45,49,46,51,54,45,49,46,48,54,50,45,49,46,51,54,45,46,54,57,50,32,48,45,49,46,48,57,56,46,52,57,50,45,49,46,48,57,56,32,49,46,51,54,118,46,50,53,51,99,48,32,46,56,53,50,46,52,48,54,32,49,46,51,54,52,32,49,46,48,57,56,32,49,46,51,54,52,46,54,55,49,32,48,32,49,46,48,54,50,45,46,53,49,54,32,49,46,48,54,50,45,49,46,51,54,52,118,45,46,50,53,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,54,32,49,52,86,53,72,48,118,57,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,50,46,53,54,32,49,50,46,51,51,50,104,45,46,55,49,76,51,46,55,52,56,32,55,104,46,54,57,54,108,49,46,56,57,56,32,53,46,51,51,50,104,45,46,55,49,57,108,45,46,53,51,57,45,49,46,54,48,50,72,51,46,49,108,45,46,53,52,32,49,46,54,48,50,122,109,55,46,50,57,45,52,46,49,48,53,118,52,46,49,48,53,104,45,46,54,54,56,118,45,46,53,51,57,104,45,46,48,50,55,99,45,46,49,52,53,46,51,50,52,45,46,53,51,50,46,54,48,53,45,49,46,49,56,56,46,54,48,53,45,46,56,52,55,32,48,45,49,46,52,53,51,45,46,52,56,52,45,49,46,52,53,51,45,49,46,52,50,53,86,56,46,50,50,55,104,46,54,55,54,118,50,46,53,53,52,99,48,32,46,55,54,54,46,52,52,49,32,49,46,48,49,50,46,57,56,32,49,46,48,49,50,46,53,57,32,48,32,49,46,48,48,52,45,46,51,55,49,32,49,46,48,48,52,45,49,46,48,50,51,86,56,46,50,50,55,104,46,54,55,54,122,109,49,46,50,55,51,32,52,46,52,49,99,46,48,55,53,46,51,51,50,46,52,50,50,46,54,51,54,46,57,56,53,46,54,51,54,46,54,52,56,32,48,32,49,46,48,55,45,46,51,55,56,32,49,46,48,55,45,49,46,48,50,51,118,45,46,54,48,53,104,45,46,48,50,99,45,46,49,54,51,46,51,53,53,45,46,54,49,51,46,54,52,56,45,49,46,49,55,49,46,54,52,56,45,46,57,53,55,32,48,45,49,46,54,52,45,46,54,55,50,45,49,46,54,52,45,49,46,57,48,50,118,45,46,51,52,99,48,45,49,46,50,48,55,46,54,55,53,45,49,46,56,56,55,32,49,46,54,52,45,49,46,56,56,55,46,53,53,56,32,48,32,49,46,48,48,52,46,50,57,51,32,49,46,49,57,53,46,54,52,104,46,48,50,118,45,46,53,55,55,104,46,54,52,56,118,52,46,48,51,99,48,32,49,46,48,53,50,45,46,56,49,54,32,49,46,53,55,57,45,49,46,55,52,54,32,49,46,53,55,57,45,49,46,48,52,51,32,48,45,49,46,53,55,52,45,46,53,49,54,45,49,46,54,54,56,45,49,46,50,104,46,54,56,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,80,108,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,57,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,48,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,55,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,49,32,52,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,80,108,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,104,49,54,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,86,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,52,86,46,53,122,77,49,54,32,49,52,86,53,72,48,118,57,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,56,46,53,32,56,46,53,86,49,48,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,49,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,56,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,82,97,110,103,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,32,55,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,118,50,104,45,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,49,32,57,104,52,97,49,32,49,32,48,32,48,32,49,32,48,32,50,72,49,86,57,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,49,32,52,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,82,97,110,103,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,104,49,54,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,86,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,52,86,46,53,122,77,49,54,32,55,86,53,72,48,118,53,104,53,97,49,32,49,32,48,32,49,32,49,32,48,32,50,72,48,118,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,57,104,45,54,97,49,32,49,32,48,32,49,32,49,32,48,45,50,104,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,87,101,101,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,54,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,45,51,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,45,53,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,51,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,49,32,52,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,87,101,101,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,104,49,54,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,86,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,52,86,46,53,122,77,49,54,32,49,52,86,53,72,48,118,57,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,55,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,51,32,48,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,50,32,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,51,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,88,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,88,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,49,52,54,32,55,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,56,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,57,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,57,46,55,48,55,108,45,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,57,32,54,46,49,52,54,32,55,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,49,32,52,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,108,101,110,100,97,114,88,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,108,101,110,100,97,114,88,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,104,49,54,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,86,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,72,52,86,46,53,122,77,49,54,32,49,52,86,53,72,48,118,57,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,54,46,56,53,52,32,56,46,49,52,54,76,56,32,57,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,49,48,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,49,48,46,55,48,55,108,45,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,49,48,32,54,46,49,52,54,32,56,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,109,101,114,97,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,109,101,114,97,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,53,32,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,54,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,46,49,55,50,97,51,32,51,32,48,32,48,32,48,32,50,46,49,50,45,46,56,55,57,108,46,56,51,45,46,56,50,56,65,49,32,49,32,48,32,48,32,49,32,54,46,56,50,55,32,51,104,50,46,51,52,52,97,49,32,49,32,48,32,48,32,49,32,46,55,48,55,46,50,57,51,108,46,56,50,56,46,56,50,56,65,51,32,51,32,48,32,48,32,48,32,49,50,46,56,50,56,32,53,72,49,52,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,54,122,77,50,32,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,54,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,54,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,46,49,55,50,97,50,32,50,32,48,32,48,32,49,45,49,46,52,49,52,45,46,53,56,54,108,45,46,56,50,56,45,46,56,50,56,65,50,32,50,32,48,32,48,32,48,32,57,46,49,55,50,32,50,72,54,46,56,50,56,97,50,32,50,32,48,32,48,32,48,45,49,46,52,49,52,46,53,56,54,108,45,46,56,50,56,46,56,50,56,65,50,32,50,32,48,32,48,32,49,32,51,46,49,55,50,32,52,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,49,49,97,50,46,53,32,50,46,53,32,48,32,49,32,49,32,48,45,53,32,50,46,53,32,50,46,53,32,48,32,48,32,49,32,48,32,53,122,109,48,32,49,97,51,46,53,32,51,46,53,32,48,32,49,32,48,32,48,45,55,32,51,46,53,32,51,46,53,32,48,32,48,32,48,32,48,32,55,122,77,51,32,54,46,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,109,101,114,97,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,109,101,114,97,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,56,99,48,45,49,46,54,53,55,32,50,46,51,52,51,45,51,32,52,45,51,86,52,97,52,32,52,32,48,32,48,32,48,45,52,32,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,46,51,49,56,32,51,104,50,46,48,49,53,67,49,53,46,50,53,51,32,51,32,49,54,32,51,46,55,52,54,32,49,54,32,52,46,54,54,55,118,54,46,54,54,54,99,48,32,46,57,50,45,46,55,52,54,32,49,46,54,54,55,45,49,46,54,54,55,32,49,46,54,54,55,104,45,50,46,48,49,53,65,53,46,57,55,32,53,46,57,55,32,48,32,48,32,49,32,57,32,49,52,97,53,46,57,55,50,32,53,46,57,55,50,32,48,32,48,32,49,45,51,46,51,49,56,45,49,72,49,46,54,54,55,67,46,55,52,55,32,49,51,32,48,32,49,50,46,50,53,52,32,48,32,49,49,46,51,51,51,86,52,46,54,54,55,67,48,32,51,46,55,52,55,46,55,52,54,32,51,32,49,46,54,54,55,32,51,72,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,104,46,54,56,50,65,53,46,57,55,32,53,46,57,55,32,48,32,48,32,49,32,57,32,50,99,49,46,50,50,55,32,48,32,50,46,51,54,55,46,51,54,56,32,51,46,51,49,56,32,49,122,77,50,32,52,46,53,97,46,53,46,53,32,48,32,49,32,48,45,49,32,48,32,46,53,46,53,32,48,32,48,32,48,32,49,32,48,122,77,49,52,32,56,65,53,32,53,32,48,32,49,32,48,32,52,32,56,97,53,32,53,32,48,32,48,32,48,32,49,48,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,109,101,114,97,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,109,101,114,97,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,53,32,56,46,53,97,50,46,53,32,50,46,53,32,48,32,49,32,49,45,53,32,48,32,50,46,53,32,50,46,53,32,48,32,48,32,49,32,53,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,54,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,54,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,46,49,55,50,97,50,32,50,32,48,32,48,32,49,45,49,46,52,49,52,45,46,53,56,54,108,45,46,56,50,56,45,46,56,50,56,65,50,32,50,32,48,32,48,32,48,32,57,46,49,55,50,32,50,72,54,46,56,50,56,97,50,32,50,32,48,32,48,32,48,45,49,46,52,49,52,46,53,56,54,108,45,46,56,50,56,46,56,50,56,65,50,32,50,32,48,32,48,32,49,32,51,46,49,55,50,32,52,72,50,122,109,46,53,32,50,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,109,57,32,50,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,49,45,55,32,48,32,51,46,53,32,51,46,53,32,48,32,48,32,49,32,55,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,109,101,114,97,82,101,101,108,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,51,97,51,32,51,32,48,32,49,32,49,45,54,32,48,32,51,32,51,32,48,32,48,32,49,32,54,32,48,122,77,49,32,51,97,50,32,50,32,48,32,49,32,48,32,52,32,48,32,50,32,50,32,48,32,48,32,48,45,52,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,32,54,104,46,53,97,50,32,50,32,48,32,48,32,49,32,49,46,57,56,51,32,49,46,55,51,56,108,51,46,49,49,45,49,46,51,56,50,65,49,32,49,32,48,32,48,32,49,32,49,54,32,55,46,50,54,57,118,55,46,52,54,50,97,49,32,49,32,48,32,48,32,49,45,49,46,52,48,54,46,57,49,51,108,45,51,46,49,49,49,45,49,46,51,56,50,65,50,32,50,32,48,32,48,32,49,32,57,46,53,32,49,54,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,56,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,55,122,109,54,32,56,46,55,51,86,55,46,50,55,108,45,51,46,53,32,49,46,53,53,53,118,52,46,51,53,108,51,46,53,32,49,46,53,53,54,122,77,49,32,56,118,54,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,55,46,53,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,56,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,32,54,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,77,55,32,51,97,50,32,50,32,48,32,49,32,49,32,52,32,48,32,50,32,50,32,48,32,48,32,49,45,52,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,109,101,114,97,82,101,101,108,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,51,97,51,32,51,32,48,32,49,32,49,45,54,32,48,32,51,32,51,32,48,32,48,32,49,32,54,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,32,54,97,51,32,51,32,48,32,49,32,49,32,48,45,54,32,51,32,51,32,48,32,48,32,49,32,48,32,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,32,54,104,46,53,97,50,32,50,32,48,32,48,32,49,32,49,46,57,56,51,32,49,46,55,51,56,108,51,46,49,49,45,49,46,51,56,50,65,49,32,49,32,48,32,48,32,49,32,49,54,32,55,46,50,54,57,118,55,46,52,54,50,97,49,32,49,32,48,32,48,32,49,45,49,46,52,48,54,46,57,49,51,108,45,51,46,49,49,49,45,49,46,51,56,50,65,50,32,50,32,48,32,48,32,49,32,57,46,53,32,49,54,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,56,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,109,101,114,97,86,105,100,101,111,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,48,32,53,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,55,46,53,97,50,32,50,32,48,32,48,32,49,32,49,46,57,56,51,32,49,46,55,51,56,108,51,46,49,49,45,49,46,51,56,50,65,49,32,49,32,48,32,48,32,49,32,49,54,32,52,46,50,54,57,118,55,46,52,54,50,97,49,32,49,32,48,32,48,32,49,45,49,46,52,48,54,46,57,49,51,108,45,51,46,49,49,49,45,49,46,51,56,50,65,50,32,50,32,48,32,48,32,49,32,57,46,53,32,49,51,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,53,122,109,49,49,46,53,32,53,46,49,55,53,108,51,46,53,32,49,46,53,53,54,86,52,46,50,54,57,108,45,51,46,53,32,49,46,53,53,54,118,52,46,51,53,122,77,50,32,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,54,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,55,46,53,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,53,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,109,101,114,97,86,105,100,101,111,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,48,32,53,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,55,46,53,97,50,32,50,32,48,32,48,32,49,32,49,46,57,56,51,32,49,46,55,51,56,108,51,46,49,49,45,49,46,51,56,50,65,49,32,49,32,48,32,48,32,49,32,49,54,32,52,46,50,54,57,118,55,46,52,54,50,97,49,32,49,32,48,32,48,32,49,45,49,46,52,48,54,46,57,49,51,108,45,51,46,49,49,49,45,49,46,51,56,50,65,50,32,50,32,48,32,48,32,49,32,57,46,53,32,49,51,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,109,101,114,97,86,105,100,101,111,79,102,102,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,57,54,49,32,49,50,46,51,54,53,97,49,46,57,57,32,49,46,57,57,32,48,32,48,32,48,32,46,53,50,50,45,49,46,49,48,51,108,51,46,49,49,32,49,46,51,56,50,65,49,32,49,32,48,32,48,32,48,32,49,54,32,49,49,46,55,51,49,86,52,46,50,54,57,97,49,32,49,32,48,32,48,32,48,45,49,46,52,48,54,45,46,57,49,51,108,45,51,46,49,49,49,32,49,46,51,56,50,65,50,32,50,32,48,32,48,32,48,32,57,46,53,32,51,72,52,46,50,55,50,108,46,55,49,52,32,49,72,57,46,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,54,97,49,32,49,32,48,32,48,32,49,45,46,49,52,52,46,53,49,56,108,46,54,48,53,46,56,52,55,122,77,49,46,52,50,56,32,52,46,49,56,65,46,57,57,57,46,57,57,57,32,48,32,48,32,48,32,49,32,53,118,54,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,53,46,48,49,52,108,46,55,49,52,32,49,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,53,99,48,45,46,54,55,53,46,51,51,52,45,49,46,50,55,50,46,56,52,55,45,49,46,54,51,52,108,46,53,56,46,56,49,52,122,77,49,53,32,49,49,46,55,51,108,45,51,46,53,45,49,46,53,53,53,118,45,52,46,51,53,76,49,53,32,52,46,50,54,57,118,55,46,52,54,50,122,109,45,52,46,52,48,55,32,51,46,53,54,108,45,49,48,45,49,52,32,46,56,49,52,45,46,53,56,32,49,48,32,49,52,45,46,56,49,52,46,53,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,109,101,114,97,86,105,100,101,111,79,102,102,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,57,54,49,32,49,50,46,51,54,53,97,49,46,57,57,32,49,46,57,57,32,48,32,48,32,48,32,46,53,50,50,45,49,46,49,48,51,108,51,46,49,49,32,49,46,51,56,50,65,49,32,49,32,48,32,48,32,48,32,49,54,32,49,49,46,55,51,49,86,52,46,50,54,57,97,49,32,49,32,48,32,48,32,48,45,49,46,52,48,54,45,46,57,49,51,108,45,51,46,49,49,49,32,49,46,51,56,50,65,50,32,50,32,48,32,48,32,48,32,57,46,53,32,51,72,52,46,50,55,50,108,54,46,54,57,32,57,46,51,54,53,122,109,45,49,48,46,49,49,52,45,57,65,50,46,48,48,49,32,50,46,48,48,49,32,48,32,48,32,48,32,48,32,53,118,54,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,53,46,55,50,56,76,46,56,52,55,32,51,46,51,54,54,122,109,57,46,55,52,54,32,49,49,46,57,50,53,108,45,49,48,45,49,52,32,46,56,49,52,45,46,53,56,32,49,48,32,49,52,45,46,56,49,52,46,53,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,112,115,108,111,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,112,115,108,111,99,107,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,50,55,32,49,46,48,52,55,97,49,32,49,32,48,32,48,32,49,32,49,46,52,54,32,48,108,54,46,51,52,53,32,54,46,55,55,99,46,54,46,54,51,56,46,49,52,54,32,49,46,54,56,51,45,46,55,51,32,49,46,54,56,51,72,49,49,46,53,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,49,72,49,46,54,53,52,67,46,55,56,32,57,46,53,46,51,50,54,32,56,46,52,53,53,46,57,50,52,32,55,46,56,49,54,76,55,46,50,55,32,49,46,48,52,55,122,77,49,52,46,51,52,54,32,56,46,53,76,56,32,49,46,55,51,49,32,49,46,54,53,52,32,56,46,53,72,52,46,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,104,53,118,45,49,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,46,56,52,54,122,109,45,57,46,56,52,54,32,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,49,122,109,54,32,48,104,45,53,118,49,104,53,118,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,112,115,108,111,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,112,115,108,111,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,50,55,32,49,46,48,52,55,97,49,32,49,32,48,32,48,32,49,32,49,46,52,54,32,48,108,54,46,51,52,53,32,54,46,55,55,99,46,54,46,54,51,56,46,49,52,54,32,49,46,54,56,51,45,46,55,51,32,49,46,54,56,51,72,49,49,46,53,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,49,72,49,46,54,53,52,67,46,55,56,32,57,46,53,46,51,50,54,32,56,46,52,53,53,46,57,50,52,32,55,46,56,49,54,76,55,46,50,55,32,49,46,48,52,55,122,77,52,46,53,32,49,51,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,100,67,104,101,99,107,108,105,115,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,100,67,104,101,99,107,108,105,115,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,46,53,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,122,109,45,49,51,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,46,53,118,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,52,104,49,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,118,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,46,53,32,50,104,45,49,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,32,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,49,46,52,57,54,45,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,49,46,53,32,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,46,53,45,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,108,46,49,52,54,46,49,52,55,32,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,77,55,32,57,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,49,46,52,57,54,45,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,49,46,53,32,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,108,46,49,52,54,46,49,52,55,32,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,100,72,101,97,100,105,110,103,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,100,72,101,97,100,105,110,103,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,46,53,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,122,109,45,49,51,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,46,53,118,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,52,104,49,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,118,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,46,53,32,50,104,45,49,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,56,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,100,73,109,97,103,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,100,73,109,97,103,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,48,48,50,32,53,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,46,53,118,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,52,104,49,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,118,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,46,53,32,50,104,45,49,51,122,109,49,51,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,54,108,45,51,46,55,55,53,45,49,46,57,52,55,97,46,53,46,53,32,48,32,48,32,48,45,46,53,55,55,46,48,57,51,108,45,51,46,55,49,32,51,46,55,49,45,50,46,54,54,45,49,46,55,55,50,97,46,53,46,53,32,48,32,48,32,48,45,46,54,51,46,48,54,50,76,49,46,48,48,50,32,49,50,118,46,53,52,65,46,53,48,53,46,53,48,53,32,48,32,48,32,49,32,49,32,49,50,46,53,118,45,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,100,76,105,115,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,100,76,105,115,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,46,53,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,122,109,45,49,51,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,46,53,118,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,52,104,49,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,118,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,46,53,32,50,104,45,49,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,65,46,53,46,53,32,48,32,48,32,49,32,53,32,56,122,109,48,45,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,49,45,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,77,52,32,56,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,109,48,32,50,46,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,100,84,101,120,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,100,84,101,120,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,46,53,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,122,109,45,49,51,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,46,53,118,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,52,104,49,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,118,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,46,53,32,50,104,45,49,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,51,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,65,46,53,46,53,32,48,32,48,32,49,32,51,32,56,122,109,48,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,68,111,119,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,50,48,52,32,53,104,57,46,53,57,50,76,56,32,49,48,46,52,56,49,32,51,46,50,48,52,32,53,122,109,45,46,55,53,51,46,54,53,57,108,52,46,55,57,54,32,53,46,52,56,97,49,32,49,32,48,32,48,32,48,32,49,46,53,48,54,32,48,108,52,46,55,57,54,45,53,46,52,56,99,46,53,54,54,45,46,54,52,55,46,49,48,54,45,49,46,54,53,57,45,46,55,53,51,45,49,46,54,53,57,72,51,46,50,48,52,97,49,32,49,32,48,32,48,32,48,45,46,55,53,51,32,49,46,54,53,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,68,111,119,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,68,111,119,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,50,52,55,32,49,49,46,49,52,76,50,46,52,53,49,32,53,46,54,53,56,67,49,46,56,56,53,32,53,46,48,49,51,32,50,46,51,52,53,32,52,32,51,46,50,48,52,32,52,104,57,46,53,57,50,97,49,32,49,32,48,32,48,32,49,32,46,55,53,51,32,49,46,54,53,57,108,45,52,46,55,57,54,32,53,46,52,56,97,49,32,49,32,48,32,48,32,49,45,49,46,53,48,54,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,54,50,54,32,54,46,56,51,50,65,46,53,46,53,32,48,32,48,32,49,32,52,32,54,104,56,97,46,53,46,53,32,48,32,48,32,49,32,46,51,55,52,46,56,51,50,108,45,52,32,52,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,52,56,32,48,108,45,52,45,52,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,49,53,32,48,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,52,32,52,97,46,53,46,53,32,48,32,48,32,48,45,46,51,55,52,46,56,51,50,108,52,32,52,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,52,56,32,48,108,52,45,52,46,53,65,46,53,46,53,32,48,32,48,32,48,32,49,50,32,54,72,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,76,101,102,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,32,49,50,46,55,57,54,86,51,46,50,48,52,76,52,46,53,49,57,32,56,32,49,48,32,49,50,46,55,57,54,122,109,45,46,54,53,57,46,55,53,51,108,45,53,46,52,56,45,52,46,55,57,54,97,49,32,49,32,48,32,48,32,49,32,48,45,49,46,53,48,54,108,53,46,52,56,45,52,46,55,57,54,65,49,32,49,32,48,32,48,32,49,32,49,49,32,51,46,50,48,52,118,57,46,53,57,50,97,49,32,49,32,48,32,48,32,49,45,49,46,54,53,57,46,55,53,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,76,101,102,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,76,101,102,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,56,54,32,56,46,55,53,51,108,53,46,52,56,50,32,52,46,55,57,54,99,46,54,52,54,46,53,54,54,32,49,46,54,53,56,46,49,48,54,32,49,46,54,53,56,45,46,55,53,51,86,51,46,50,48,52,97,49,32,49,32,48,32,48,32,48,45,49,46,54,53,57,45,46,55,53,51,108,45,53,46,52,56,32,52,46,55,57,54,97,49,32,49,32,48,32,48,32,48,32,48,32,49,46,53,48,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,50,48,53,32,49,50,46,52,53,54,65,46,53,46,53,32,48,32,48,32,48,32,49,48,46,53,32,49,50,86,52,97,46,53,46,53,32,48,32,48,32,48,45,46,56,51,50,45,46,51,55,52,108,45,52,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,52,56,108,52,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,51,55,46,48,56,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,49,48,46,53,32,49,48,86,52,97,46,53,46,53,32,48,32,48,32,48,45,46,56,51,50,45,46,51,55,52,108,45,52,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,52,56,108,52,46,53,32,52,65,46,53,46,53,32,48,32,48,32,48,32,49,48,46,53,32,49,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,82,105,103,104,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,49,50,46,55,57,54,86,51,46,50,48,52,76,49,49,46,52,56,49,32,56,32,54,32,49,50,46,55,57,54,122,109,46,54,53,57,46,55,53,51,108,53,46,52,56,45,52,46,55,57,54,97,49,32,49,32,48,32,48,32,48,32,48,45,49,46,53,48,54,76,54,46,54,54,32,50,46,52,53,49,67,54,46,48,49,49,32,49,46,56,56,53,32,53,32,50,46,51,52,53,32,53,32,51,46,50,48,52,118,57,46,53,57,50,97,49,32,49,32,48,32,48,32,48,32,49,46,54,53,57,46,55,53,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,82,105,103,104,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,49,52,32,56,46,55,53,51,108,45,53,46,52,56,50,32,52,46,55,57,54,99,45,46,54,52,54,46,53,54,54,45,49,46,54,53,56,46,49,48,54,45,49,46,54,53,56,45,46,55,53,51,86,51,46,50,48,52,97,49,32,49,32,48,32,48,32,49,32,49,46,54,53,57,45,46,55,53,51,108,53,46,52,56,32,52,46,55,57,54,97,49,32,49,32,48,32,48,32,49,32,48,32,49,46,53,48,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,55,57,53,32,49,50,46,52,53,54,65,46,53,46,53,32,48,32,48,32,49,32,53,46,53,32,49,50,86,52,97,46,53,46,53,32,48,32,48,32,49,32,46,56,51,50,45,46,51,55,52,108,52,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,52,56,108,45,52,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,51,55,46,48,56,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,53,46,53,32,49,48,97,46,53,46,53,32,48,32,48,32,48,32,46,56,51,50,46,51,55,52,108,52,46,53,45,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,52,56,108,45,52,46,53,45,52,65,46,53,46,53,32,48,32,48,32,48,32,53,46,53,32,52,118,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,85,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,50,48,52,32,49,49,104,57,46,53,57,50,76,56,32,53,46,53,49,57,32,51,46,50,48,52,32,49,49,122,109,45,46,55,53,51,45,46,54,53,57,108,52,46,55,57,54,45,53,46,52,56,97,49,32,49,32,48,32,48,32,49,32,49,46,53,48,54,32,48,108,52,46,55,57,54,32,53,46,52,56,99,46,53,54,54,46,54,52,55,46,49,48,54,32,49,46,54,53,57,45,46,55,53,51,32,49,46,54,53,57,72,51,46,50,48,52,97,49,32,49,32,48,32,48,32,49,45,46,55,53,51,45,49,46,54,53,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,85,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,85,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,50,52,55,32,52,46,56,54,108,45,52,46,55,57,54,32,53,46,52,56,49,99,45,46,53,54,54,46,54,52,55,45,46,49,48,54,32,49,46,54,53,57,46,55,53,51,32,49,46,54,53,57,104,57,46,53,57,50,97,49,32,49,32,48,32,48,32,48,32,46,55,53,51,45,49,46,54,53,57,108,45,52,46,55,57,54,45,53,46,52,56,97,49,32,49,32,48,32,48,32,48,45,49,46,53,48,54,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,85,112,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,52,52,32,49,48,46,55,48,53,65,46,53,46,53,32,48,32,48,32,48,32,52,32,49,49,104,56,97,46,53,46,53,32,48,32,48,32,48,32,46,51,55,52,45,46,56,51,50,108,45,52,45,52,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,55,52,56,32,48,108,45,52,32,52,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,48,56,50,46,53,51,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,101,116,85,112,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,52,32,57,104,56,97,46,53,46,53,32,48,32,48,32,48,32,46,51,55,52,45,46,56,51,50,108,45,52,45,52,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,55,52,56,32,48,108,45,52,32,52,46,53,65,46,53,46,53,32,48,32,48,32,48,32,52,32,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,46,53,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,49,72,50,97,46,53,46,53,32,48,32,48,32,49,32,46,52,56,53,46,51,55,57,76,50,46,56,57,32,51,72,49,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,52,57,49,46,53,57,50,108,45,49,46,53,32,56,65,46,53,46,53,32,48,32,48,32,49,32,49,51,32,49,50,72,52,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,49,45,46,52,48,56,76,50,46,48,49,32,51,46,54,48,55,32,49,46,54,49,32,50,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,51,46,49,48,50,32,52,108,49,46,51,49,51,32,55,104,56,46,49,55,108,49,46,51,49,51,45,55,72,51,46,49,48,50,122,77,53,32,49,50,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,122,109,55,32,48,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,122,109,45,55,32,49,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,109,55,32,48,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,116,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,116,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,46,53,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,50,72,50,97,46,53,46,53,32,48,32,48,32,49,32,46,52,56,53,46,51,55,57,76,50,46,56,57,32,52,72,49,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,52,56,53,46,54,50,49,108,45,49,46,53,32,54,65,46,53,46,53,32,48,32,48,32,49,32,49,51,32,49,49,72,52,97,46,53,46,53,32,48,32,48,32,49,45,46,52,56,53,45,46,51,55,57,76,49,46,54,49,32,51,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,51,46,49,52,32,53,108,49,46,50,53,32,53,104,56,46,50,50,108,49,46,50,53,45,53,72,51,46,49,52,122,77,53,32,49,51,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,109,45,50,32,49,97,50,32,50,32,48,32,49,32,49,32,52,32,48,32,50,32,50,32,48,32,48,32,49,45,52,32,48,122,109,57,45,49,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,109,45,50,32,49,97,50,32,50,32,48,32,49,32,49,32,52,32,48,32,50,32,50,32,48,32,48,32,49,45,52,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,116,51,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,116,51,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,46,53,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,49,72,50,97,46,53,46,53,32,48,32,48,32,49,32,46,52,56,53,46,51,55,57,76,50,46,56,57,32,51,72,49,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,52,57,46,53,57,56,108,45,49,32,53,97,46,53,46,53,32,48,32,48,32,49,45,46,52,54,53,46,52,48,49,108,45,57,46,51,57,55,46,52,55,50,76,52,46,52,49,53,32,49,49,72,49,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,52,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,49,45,46,52,48,56,76,50,46,48,49,32,51,46,54,48,55,32,49,46,54,49,32,50,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,51,46,49,48,50,32,52,108,46,56,52,32,52,46,52,55,57,32,57,46,49,52,52,45,46,52,53,57,76,49,51,46,56,57,32,52,72,51,46,49,48,50,122,77,53,32,49,50,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,122,109,55,32,48,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,122,109,45,55,32,49,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,109,55,32,48,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,116,52,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,116,52,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,46,53,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,50,72,50,97,46,53,46,53,32,48,32,48,32,49,32,46,52,56,53,46,51,55,57,76,50,46,56,57,32,52,72,49,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,52,56,53,46,54,50,49,108,45,49,46,53,32,54,65,46,53,46,53,32,48,32,48,32,49,32,49,51,32,49,49,72,52,97,46,53,46,53,32,48,32,48,32,49,45,46,52,56,53,45,46,51,55,57,76,49,46,54,49,32,51,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,51,46,49,52,32,53,108,46,53,32,50,72,53,86,53,72,51,46,49,52,122,77,54,32,53,118,50,104,50,86,53,72,54,122,109,51,32,48,118,50,104,50,86,53,72,57,122,109,51,32,48,118,50,104,49,46,51,54,108,46,53,45,50,72,49,50,122,109,49,46,49,49,32,51,72,49,50,118,50,104,46,54,49,108,46,53,45,50,122,77,49,49,32,56,72,57,118,50,104,50,86,56,122,77,56,32,56,72,54,118,50,104,50,86,56,122,77,53,32,56,72,51,46,56,57,108,46,53,32,50,72,53,86,56,122,109,48,32,53,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,109,45,50,32,49,97,50,32,50,32,48,32,49,32,49,32,52,32,48,32,50,32,50,32,48,32,48,32,49,45,52,32,48,122,109,57,45,49,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,109,45,50,32,49,97,50,32,50,32,48,32,49,32,49,32,52,32,48,32,50,32,50,32,48,32,48,32,49,45,52,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,116,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,116,67,104,101,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,51,53,52,32,54,46,51,53,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,32,56,46,50,57,51,32,54,46,56,53,52,32,55,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,49,46,53,32,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,51,45,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,46,49,49,108,46,52,48,49,32,49,46,54,48,55,32,49,46,52,57,56,32,55,46,57,56,53,65,46,53,46,53,32,48,32,48,32,48,32,52,32,49,50,104,49,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,55,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,49,45,46,52,48,56,108,49,46,53,45,56,65,46,53,46,53,32,48,32,48,32,48,32,49,52,46,53,32,51,72,50,46,56,57,108,45,46,52,48,53,45,49,46,54,50,49,65,46,53,46,53,32,48,32,48,32,48,32,50,32,49,72,46,53,122,109,51,46,57,49,53,32,49,48,76,51,46,49,48,50,32,52,104,49,48,46,55,57,54,108,45,49,46,51,49,51,32,55,104,45,56,46,49,55,122,77,54,32,49,52,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,55,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,116,67,104,101,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,116,67,104,101,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,46,49,49,108,46,52,48,49,32,49,46,54,48,55,32,49,46,52,57,56,32,55,46,57,56,53,65,46,53,46,53,32,48,32,48,32,48,32,52,32,49,50,104,49,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,55,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,49,45,46,52,48,56,108,49,46,53,45,56,65,46,53,46,53,32,48,32,48,32,48,32,49,52,46,53,32,51,72,50,46,56,57,108,45,46,52,48,53,45,49,46,54,50,49,65,46,53,46,53,32,48,32,48,32,48,32,50,32,49,72,46,53,122,77,54,32,49,52,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,55,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,45,49,46,54,52,54,45,55,46,54,52,54,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,56,32,56,46,50,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,116,68,97,115,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,116,68,97,115,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,55,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,46,49,49,108,46,52,48,49,32,49,46,54,48,55,32,49,46,52,57,56,32,55,46,57,56,53,65,46,53,46,53,32,48,32,48,32,48,32,52,32,49,50,104,49,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,55,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,49,45,46,52,48,56,108,49,46,53,45,56,65,46,53,46,53,32,48,32,48,32,48,32,49,52,46,53,32,51,72,50,46,56,57,108,45,46,52,48,53,45,49,46,54,50,49,65,46,53,46,53,32,48,32,48,32,48,32,50,32,49,72,46,53,122,109,51,46,57,49,53,32,49,48,76,51,46,49,48,50,32,52,104,49,48,46,55,57,54,108,45,49,46,51,49,51,32,55,104,45,56,46,49,55,122,77,54,32,49,52,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,55,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,116,68,97,115,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,116,68,97,115,104,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,46,49,49,108,46,52,48,49,32,49,46,54,48,55,32,49,46,52,57,56,32,55,46,57,56,53,65,46,53,46,53,32,48,32,48,32,48,32,52,32,49,50,104,49,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,55,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,49,45,46,52,48,56,108,49,46,53,45,56,65,46,53,46,53,32,48,32,48,32,48,32,49,52,46,53,32,51,72,50,46,56,57,108,45,46,52,48,53,45,49,46,54,50,49,65,46,53,46,53,32,48,32,48,32,48,32,50,32,49,72,46,53,122,77,54,32,49,52,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,55,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,77,54,46,53,32,55,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,46,53,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,49,72,50,97,46,53,46,53,32,48,32,48,32,49,32,46,52,56,53,46,51,55,57,76,50,46,56,57,32,51,72,49,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,52,57,49,46,53,57,50,108,45,49,46,53,32,56,65,46,53,46,53,32,48,32,48,32,49,32,49,51,32,49,50,72,52,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,49,45,46,52,48,56,76,50,46,48,49,32,51,46,54,48,55,32,49,46,54,49,32,50,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,53,32,49,50,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,122,109,55,32,48,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,122,109,45,55,32,49,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,109,55,32,48,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,116,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,116,80,108,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,32,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,55,72,54,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,72,56,118,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,56,104,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,57,86,53,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,46,49,49,108,46,52,48,49,32,49,46,54,48,55,32,49,46,52,57,56,32,55,46,57,56,53,65,46,53,46,53,32,48,32,48,32,48,32,52,32,49,50,104,49,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,55,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,49,45,46,52,48,56,108,49,46,53,45,56,65,46,53,46,53,32,48,32,48,32,48,32,49,52,46,53,32,51,72,50,46,56,57,108,45,46,52,48,53,45,49,46,54,50,49,65,46,53,46,53,32,48,32,48,32,48,32,50,32,49,72,46,53,122,109,51,46,57,49,53,32,49,48,76,51,46,49,48,50,32,52,104,49,48,46,55,57,54,108,45,49,46,51,49,51,32,55,104,45,56,46,49,55,122,77,54,32,49,52,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,55,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,116,80,108,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,116,80,108,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,46,49,49,108,46,52,48,49,32,49,46,54,48,55,32,49,46,52,57,56,32,55,46,57,56,53,65,46,53,46,53,32,48,32,48,32,48,32,52,32,49,50,104,49,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,55,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,49,45,46,52,48,56,108,49,46,53,45,56,65,46,53,46,53,32,48,32,48,32,48,32,49,52,46,53,32,51,72,50,46,56,57,108,45,46,52,48,53,45,49,46,54,50,49,65,46,53,46,53,32,48,32,48,32,48,32,50,32,49,72,46,53,122,77,54,32,49,52,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,55,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,77,57,32,53,46,53,86,55,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,57,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,72,54,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,56,86,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,116,88,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,116,88,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,51,53,52,32,53,46,54,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,55,46,55,57,51,32,55,46,53,32,54,46,54,52,54,32,56,46,54,52,54,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,56,46,55,48,56,76,56,46,53,32,56,46,50,48,55,108,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,76,57,46,50,48,55,32,55,46,53,108,49,46,49,52,55,45,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,46,53,32,54,46,55,57,51,32,55,46,51,53,52,32,53,46,54,52,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,46,49,49,108,46,52,48,49,32,49,46,54,48,55,32,49,46,52,57,56,32,55,46,57,56,53,65,46,53,46,53,32,48,32,48,32,48,32,52,32,49,50,104,49,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,55,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,49,45,46,52,48,56,108,49,46,53,45,56,65,46,53,46,53,32,48,32,48,32,48,32,49,52,46,53,32,51,72,50,46,56,57,108,45,46,52,48,53,45,49,46,54,50,49,65,46,53,46,53,32,48,32,48,32,48,32,50,32,49,72,46,53,122,109,51,46,57,49,53,32,49,48,76,51,46,49,48,50,32,52,104,49,48,46,55,57,54,108,45,49,46,51,49,51,32,55,104,45,56,46,49,55,122,77,54,32,49,52,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,55,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,114,116,88,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,114,116,88,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,46,49,49,108,46,52,48,49,32,49,46,54,48,55,32,49,46,52,57,56,32,55,46,57,56,53,65,46,53,46,53,32,48,32,48,32,48,32,52,32,49,50,104,49,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,55,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,49,45,46,52,48,56,108,49,46,53,45,56,65,46,53,46,53,32,48,32,48,32,48,32,49,52,46,53,32,51,72,50,46,56,57,108,45,46,52,48,53,45,49,46,54,50,49,65,46,53,46,53,32,48,32,48,32,48,32,50,32,49,72,46,53,122,77,54,32,49,52,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,55,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,77,55,46,51,53,52,32,53,46,54,52,54,76,56,46,53,32,54,46,55,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,76,57,46,50,48,55,32,55,46,53,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,56,46,50,48,55,32,55,46,51,53,52,32,57,46,51,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,55,57,51,32,55,46,53,32,54,46,54,52,54,32,54,46,51,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,115,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,115,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,48,97,50,32,50,32,48,32,49,32,48,32,48,45,52,32,50,32,50,32,48,32,48,32,48,32,48,32,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,52,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,122,109,51,32,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,118,52,97,50,32,50,32,48,32,48,32,49,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,45,50,86,54,97,50,32,50,32,48,32,48,32,49,45,50,45,50,72,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,115,104,83,116,97,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,115,104,83,116,97,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,72,49,122,109,55,32,56,97,50,32,50,32,48,32,49,32,48,32,48,45,52,32,50,32,50,32,48,32,48,32,48,32,48,32,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,52,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,53,122,109,51,32,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,118,52,97,50,32,50,32,48,32,48,32,49,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,45,50,86,55,97,50,32,50,32,48,32,48,32,49,45,50,45,50,72,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,97,115,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,97,115,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,54,52,54,32,57,46,51,53,52,108,45,51,46,55,57,50,32,51,46,55,57,50,97,46,53,46,53,32,48,32,48,32,48,32,46,51,53,51,46,56,53,52,104,55,46,53,56,54,97,46,53,46,53,32,48,32,48,32,48,32,46,51,53,52,45,46,56,53,52,76,56,46,51,53,52,32,57,46,51,53,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,46,52,49,52,32,49,49,72,49,52,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,55,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,55,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,51,46,48,56,54,108,45,49,32,49,72,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,48,46,53,118,45,55,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,50,104,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,51,46,53,118,55,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,50,46,48,56,54,108,45,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,54,55,56,32,49,49,46,56,57,52,97,49,32,49,32,48,32,48,32,49,32,46,50,56,55,46,56,48,49,32,49,48,46,57,55,32,49,48,46,57,55,32,48,32,48,32,49,45,46,51,57,56,32,50,99,49,46,51,57,53,45,46,51,50,51,32,50,46,50,52,55,45,46,54,57,55,32,50,46,54,51,52,45,46,56,57,51,97,49,32,49,32,48,32,48,32,49,32,46,55,49,45,46,48,55,52,65,56,46,48,54,32,56,46,48,54,32,48,32,48,32,48,32,56,32,49,52,99,51,46,57,57,54,32,48,32,55,45,50,46,56,48,55,32,55,45,54,32,48,45,51,46,49,57,50,45,51,46,48,48,52,45,54,45,55,45,54,83,49,32,52,46,56,48,56,32,49,32,56,99,48,32,49,46,52,54,56,46,54,49,55,32,50,46,56,51,32,49,46,54,55,56,32,51,46,56,57,52,122,109,45,46,52,57,51,32,51,46,57,48,53,97,50,49,46,54,56,50,32,50,49,46,54,56,50,32,48,32,48,32,49,45,46,55,49,51,46,49,50,57,99,45,46,50,46,48,51,50,45,46,51,53,50,45,46,49,55,54,45,46,50,55,51,45,46,51,54,50,97,57,46,54,56,32,57,46,54,56,32,48,32,48,32,48,32,46,50,52,52,45,46,54,51,55,108,46,48,48,51,45,46,48,49,99,46,50,52,56,45,46,55,50,46,52,53,45,49,46,53,52,56,46,53,50,52,45,50,46,51,49,57,67,46,55,52,51,32,49,49,46,51,55,32,48,32,57,46,55,54,32,48,32,56,99,48,45,51,46,56,54,54,32,51,46,53,56,50,45,55,32,56,45,55,115,56,32,51,46,49,51,52,32,56,32,55,45,51,46,53,56,50,32,55,45,56,32,55,97,57,46,48,54,32,57,46,48,54,32,48,32,48,32,49,45,50,46,51,52,55,45,46,51,48,54,99,45,46,53,50,46,50,54,51,45,49,46,54,51,57,46,55,52,50,45,51,46,52,54,56,32,49,46,49,48,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,68,111,116,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,68,111,116,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,56,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,52,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,51,32,49,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,49,54,53,32,49,53,46,56,48,51,108,46,48,50,45,46,48,48,52,99,49,46,56,51,45,46,51,54,51,32,50,46,57,52,56,45,46,56,52,50,32,51,46,52,54,56,45,49,46,49,48,53,65,57,46,48,54,32,57,46,48,54,32,48,32,48,32,48,32,56,32,49,53,99,52,46,52,49,56,32,48,32,56,45,51,46,49,51,52,32,56,45,55,115,45,51,46,53,56,50,45,55,45,56,45,55,45,56,32,51,46,49,51,52,45,56,32,55,99,48,32,49,46,55,54,46,55,52,51,32,51,46,51,55,32,49,46,57,55,32,52,46,54,97,49,48,46,52,51,55,32,49,48,46,52,51,55,32,48,32,48,32,49,45,46,53,50,52,32,50,46,51,49,56,108,45,46,48,48,51,46,48,49,49,97,49,48,46,55,50,50,32,49,48,46,55,50,50,32,48,32,48,32,49,45,46,50,52,52,46,54,51,55,99,45,46,48,55,57,46,49,56,54,46,48,55,52,46,51,57,52,46,50,55,51,46,51,54,50,97,50,49,46,54,55,51,32,50,49,46,54,55,51,32,48,32,48,32,48,32,46,54,57,51,45,46,49,50,53,122,109,46,56,45,51,46,49,48,56,97,49,32,49,32,48,32,48,32,48,45,46,50,56,55,45,46,56,48,49,67,49,46,54,49,56,32,49,48,46,56,51,32,49,32,57,46,52,54,56,32,49,32,56,99,48,45,51,46,49,57,50,32,51,46,48,48,52,45,54,32,55,45,54,115,55,32,50,46,56,48,56,32,55,32,54,99,48,32,51,46,49,57,51,45,51,46,48,48,52,32,54,45,55,32,54,97,56,46,48,54,32,56,46,48,54,32,48,32,48,32,49,45,50,46,48,56,56,45,46,50,55,50,32,49,32,49,32,48,32,48,32,48,45,46,55,49,49,46,48,55,52,99,45,46,51,56,55,46,49,57,54,45,49,46,50,52,46,53,55,45,50,46,54,51,52,46,56,57,51,97,49,48,46,57,55,32,49,48,46,57,55,32,48,32,48,32,48,32,46,51,57,56,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,68,111,116,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,68,111,116,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,99,48,32,51,46,56,54,54,45,51,46,53,56,50,32,55,45,56,32,55,97,57,46,48,54,32,57,46,48,54,32,48,32,48,32,49,45,50,46,51,52,55,45,46,51,48,54,99,45,46,53,56,52,46,50,57,54,45,49,46,57,50,53,46,56,54,52,45,52,46,49,56,49,32,49,46,50,51,52,45,46,50,46,48,51,50,45,46,51,53,50,45,46,49,55,54,45,46,50,55,51,45,46,51,54,50,46,51,53,52,45,46,56,51,54,46,54,55,52,45,49,46,57,53,46,55,55,45,50,46,57,54,54,67,46,55,52,52,32,49,49,46,51,55,32,48,32,57,46,55,54,32,48,32,56,99,48,45,51,46,56,54,54,32,51,46,53,56,50,45,55,32,56,45,55,115,56,32,51,46,49,51,52,32,56,32,55,122,77,53,32,56,97,49,32,49,32,48,32,49,32,48,45,50,32,48,32,49,32,49,32,48,32,48,32,48,32,50,32,48,122,109,52,32,48,97,49,32,49,32,48,32,49,32,48,45,50,32,48,32,49,32,49,32,48,32,48,32,48,32,50,32,48,122,109,51,32,49,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,99,52,46,52,49,56,32,48,32,56,45,51,46,49,51,52,32,56,45,55,115,45,51,46,53,56,50,45,55,45,56,45,55,45,56,32,51,46,49,51,52,45,56,32,55,99,48,32,49,46,55,54,46,55,52,51,32,51,46,51,55,32,49,46,57,55,32,52,46,54,45,46,48,57,55,32,49,46,48,49,54,45,46,52,49,55,32,50,46,49,51,45,46,55,55,49,32,50,46,57,54,54,45,46,48,55,57,46,49,56,54,46,48,55,52,46,51,57,52,46,50,55,51,46,51,54,50,32,50,46,50,53,54,45,46,51,55,32,51,46,53,57,55,45,46,57,51,56,32,52,46,49,56,45,49,46,50,51,52,65,57,46,48,54,32,57,46,48,54,32,48,32,48,32,48,32,56,32,49,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,76,101,102,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,46,52,49,52,65,50,32,50,32,48,32,48,32,48,32,51,32,49,49,46,53,56,54,108,45,50,32,50,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,46,55,57,51,97,46,53,46,53,32,48,32,48,32,48,32,46,56,53,52,46,51,53,51,108,50,46,56,53,51,45,50,46,56,53,51,65,49,32,49,32,48,32,48,32,49,32,52,46,52,49,52,32,49,50,72,49,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,76,101,102,116,68,111,116,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,46,52,49,52,65,50,32,50,32,48,32,48,32,48,32,51,32,49,49,46,53,56,54,108,45,50,32,50,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,46,55,57,51,97,46,53,46,53,32,48,32,48,32,48,32,46,56,53,52,46,51,53,51,108,50,46,56,53,51,45,50,46,56,53,51,65,49,32,49,32,48,32,48,32,49,32,52,46,52,49,52,32,49,50,72,49,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,32,54,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,52,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,52,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,76,101,102,116,68,111,116,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,46,52,49,52,97,49,32,49,32,48,32,48,32,48,45,46,55,48,55,46,50,57,51,76,46,56,53,52,32,49,53,46,49,52,54,65,46,53,46,53,32,48,32,48,32,49,32,48,32,49,52,46,55,57,51,86,50,122,109,53,32,52,97,49,32,49,32,48,32,49,32,48,45,50,32,48,32,49,32,49,32,48,32,48,32,48,32,50,32,48,122,109,52,32,48,97,49,32,49,32,48,32,49,32,48,45,50,32,48,32,49,32,49,32,48,32,48,32,48,32,50,32,48,122,109,51,32,49,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,76,101,102,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,76,101,102,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,46,55,57,51,97,46,53,46,53,32,48,32,48,32,48,32,46,56,53,52,46,51,53,51,108,50,46,56,53,51,45,50,46,56,53,51,65,49,32,49,32,48,32,48,32,49,32,52,46,52,49,52,32,49,50,72,49,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,76,101,102,116,81,117,111,116,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,46,52,49,52,65,50,32,50,32,48,32,48,32,48,32,51,32,49,49,46,53,56,54,108,45,50,32,50,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,46,55,57,51,97,46,53,46,53,32,48,32,48,32,48,32,46,56,53,52,46,51,53,51,108,50,46,56,53,51,45,50,46,56,53,51,65,49,32,49,32,48,32,48,32,49,32,52,46,52,49,52,32,49,50,72,49,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,48,54,54,32,52,46,55,54,65,49,46,54,54,53,32,49,46,54,54,53,32,48,32,48,32,48,32,52,32,53,46,54,54,56,97,49,46,54,54,55,32,49,46,54,54,55,32,48,32,48,32,48,32,50,46,53,54,49,32,49,46,52,48,54,99,45,46,49,51,49,46,51,56,57,45,46,51,55,53,46,56,48,52,45,46,55,55,55,32,49,46,50,50,97,46,52,49,55,46,52,49,55,32,48,32,49,32,48,32,46,54,46,53,56,99,49,46,52,56,54,45,49,46,53,52,32,49,46,50,57,51,45,51,46,50,49,52,46,54,56,50,45,52,46,49,49,50,122,109,52,32,48,65,49,46,54,54,53,32,49,46,54,54,53,32,48,32,48,32,48,32,56,32,53,46,54,54,56,97,49,46,54,54,55,32,49,46,54,54,55,32,48,32,48,32,48,32,50,46,53,54,49,32,49,46,52,48,54,99,45,46,49,51,49,46,51,56,57,45,46,51,55,53,46,56,48,52,45,46,55,55,55,32,49,46,50,50,97,46,52,49,55,46,52,49,55,32,48,32,49,32,48,32,46,54,46,53,56,99,49,46,52,56,54,45,49,46,53,52,32,49,46,50,57,51,45,51,46,50,49,52,46,54,56,50,45,52,46,49,49,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,76,101,102,116,81,117,111,116,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,46,52,49,52,97,49,32,49,32,48,32,48,32,48,45,46,55,48,55,46,50,57,51,76,46,56,53,52,32,49,53,46,49,52,54,65,46,53,46,53,32,48,32,48,32,49,32,48,32,49,52,46,55,57,51,86,50,122,109,55,46,49,57,52,32,50,46,55,54,54,97,49,46,54,56,56,32,49,46,54,56,56,32,48,32,48,32,48,45,46,50,50,55,45,46,50,55,50,32,49,46,52,54,55,32,49,46,52,54,55,32,48,32,48,32,48,45,46,52,54,57,45,46,51,50,52,108,45,46,48,48,56,45,46,48,48,52,65,49,46,55,56,53,32,49,46,55,56,53,32,48,32,48,32,48,32,53,46,55,51,52,32,52,67,52,46,55,55,54,32,52,32,52,32,52,46,55,52,54,32,52,32,53,46,54,54,55,99,48,32,46,57,50,46,55,55,54,32,49,46,54,54,54,32,49,46,55,51,52,32,49,46,54,54,54,46,51,52,51,32,48,32,46,54,54,50,45,46,48,57,53,46,57,51,49,45,46,50,54,45,46,49,51,55,46,51,56,57,45,46,51,57,46,56,48,52,45,46,56,49,32,49,46,50,50,97,46,52,48,53,46,52,48,53,32,48,32,48,32,48,32,46,48,49,49,46,53,57,99,46,49,55,51,46,49,54,46,52,52,55,46,49,53,53,46,54,49,52,45,46,48,49,32,49,46,51,51,52,45,49,46,51,50,57,32,49,46,51,55,45,50,46,55,53,56,46,57,52,49,45,51,46,55,48,54,97,50,46,52,54,49,32,50,46,52,54,49,32,48,32,48,32,48,45,46,50,50,55,45,46,52,122,77,49,49,32,55,46,48,55,51,99,45,46,49,51,54,46,51,56,57,45,46,51,57,46,56,48,52,45,46,56,49,32,49,46,50,50,97,46,52,48,53,46,52,48,53,32,48,32,48,32,48,32,46,48,49,50,46,53,57,99,46,49,55,50,46,49,54,46,52,52,54,46,49,53,53,46,54,49,51,45,46,48,49,32,49,46,51,51,52,45,49,46,51,50,57,32,49,46,51,55,45,50,46,55,53,56,46,57,52,50,45,51,46,55,48,54,97,50,46,52,54,54,32,50,46,52,54,54,32,48,32,48,32,48,45,46,50,50,56,45,46,52,32,49,46,54,56,54,32,49,46,54,56,54,32,48,32,48,32,48,45,46,50,50,55,45,46,50,55,51,32,49,46,52,54,54,32,49,46,52,54,54,32,48,32,48,32,48,45,46,52,54,57,45,46,51,50,52,108,45,46,48,48,56,45,46,48,48,52,65,49,46,55,56,53,32,49,46,55,56,53,32,48,32,48,32,48,32,49,48,46,48,55,32,52,99,45,46,57,53,55,32,48,45,49,46,55,51,52,46,55,52,54,45,49,46,55,51,52,32,49,46,54,54,55,32,48,32,46,57,50,46,55,55,55,32,49,46,54,54,54,32,49,46,55,51,52,32,49,46,54,54,54,46,51,52,51,32,48,32,46,54,54,50,45,46,48,57,53,46,57,51,49,45,46,50,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,76,101,102,116,84,101,120,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,46,52,49,52,65,50,32,50,32,48,32,48,32,48,32,51,32,49,49,46,53,56,54,108,45,50,32,50,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,46,55,57,51,97,46,53,46,53,32,48,32,48,32,48,32,46,56,53,52,46,51,53,51,108,50,46,56,53,51,45,50,46,56,53,51,65,49,32,49,32,48,32,48,32,49,32,52,46,52,49,52,32,49,50,72,49,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,51,32,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,65,46,53,46,53,32,48,32,48,32,49,32,51,32,54,122,109,48,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,76,101,102,116,84,101,120,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,46,52,49,52,97,49,32,49,32,48,32,48,32,48,45,46,55,48,55,46,50,57,51,76,46,56,53,52,32,49,53,46,49,52,54,65,46,53,46,53,32,48,32,48,32,49,32,48,32,49,52,46,55,57,51,86,50,122,109,51,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,57,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,57,122,109,48,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,57,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,57,122,109,48,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,81,117,111,116,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,81,117,111,116,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,54,55,56,32,49,49,46,56,57,52,97,49,32,49,32,48,32,48,32,49,32,46,50,56,55,46,56,48,49,32,49,48,46,57,55,32,49,48,46,57,55,32,48,32,48,32,49,45,46,51,57,56,32,50,99,49,46,51,57,53,45,46,51,50,51,32,50,46,50,52,55,45,46,54,57,55,32,50,46,54,51,52,45,46,56,57,51,97,49,32,49,32,48,32,48,32,49,32,46,55,49,45,46,48,55,52,65,56,46,48,54,32,56,46,48,54,32,48,32,48,32,48,32,56,32,49,52,99,51,46,57,57,54,32,48,32,55,45,50,46,56,48,55,32,55,45,54,32,48,45,51,46,49,57,50,45,51,46,48,48,52,45,54,45,55,45,54,83,49,32,52,46,56,48,56,32,49,32,56,99,48,32,49,46,52,54,56,46,54,49,55,32,50,46,56,51,32,49,46,54,55,56,32,51,46,56,57,52,122,109,45,46,52,57,51,32,51,46,57,48,53,97,50,49,46,54,56,50,32,50,49,46,54,56,50,32,48,32,48,32,49,45,46,55,49,51,46,49,50,57,99,45,46,50,46,48,51,50,45,46,51,53,50,45,46,49,55,54,45,46,50,55,51,45,46,51,54,50,97,57,46,54,56,32,57,46,54,56,32,48,32,48,32,48,32,46,50,52,52,45,46,54,51,55,108,46,48,48,51,45,46,48,49,99,46,50,52,56,45,46,55,50,46,52,53,45,49,46,53,52,56,46,53,50,52,45,50,46,51,49,57,67,46,55,52,51,32,49,49,46,51,55,32,48,32,57,46,55,54,32,48,32,56,99,48,45,51,46,56,54,54,32,51,46,53,56,50,45,55,32,56,45,55,115,56,32,51,46,49,51,52,32,56,32,55,45,51,46,53,56,50,32,55,45,56,32,55,97,57,46,48,54,32,57,46,48,54,32,48,32,48,32,49,45,50,46,51,52,55,45,46,51,48,54,99,45,46,53,50,46,50,54,51,45,49,46,54,51,57,46,55,52,50,45,51,46,52,54,56,32,49,46,49,48,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,48,54,54,32,54,46,55,54,65,49,46,54,54,53,32,49,46,54,54,53,32,48,32,48,32,48,32,52,32,55,46,54,54,56,97,49,46,54,54,55,32,49,46,54,54,55,32,48,32,48,32,48,32,50,46,53,54,49,32,49,46,52,48,54,99,45,46,49,51,49,46,51,56,57,45,46,51,55,53,46,56,48,52,45,46,55,55,55,32,49,46,50,50,97,46,52,49,55,46,52,49,55,32,48,32,48,32,48,32,46,54,46,53,56,99,49,46,52,56,54,45,49,46,53,52,32,49,46,50,57,51,45,51,46,50,49,52,46,54,56,50,45,52,46,49,49,50,122,109,52,32,48,65,49,46,54,54,53,32,49,46,54,54,53,32,48,32,48,32,48,32,56,32,55,46,54,54,56,97,49,46,54,54,55,32,49,46,54,54,55,32,48,32,48,32,48,32,50,46,53,54,49,32,49,46,52,48,54,99,45,46,49,51,49,46,51,56,57,45,46,51,55,53,46,56,48,52,45,46,55,55,55,32,49,46,50,50,97,46,52,49,55,46,52,49,55,32,48,32,48,32,48,32,46,54,46,53,56,99,49,46,52,56,54,45,49,46,53,52,32,49,46,50,57,51,45,51,46,50,49,52,46,54,56,50,45,52,46,49,49,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,81,117,111,116,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,81,117,111,116,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,99,48,32,51,46,56,54,54,45,51,46,53,56,50,32,55,45,56,32,55,97,57,46,48,54,32,57,46,48,54,32,48,32,48,32,49,45,50,46,51,52,55,45,46,51,48,54,99,45,46,53,56,52,46,50,57,54,45,49,46,57,50,53,46,56,54,52,45,52,46,49,56,49,32,49,46,50,51,52,45,46,50,46,48,51,50,45,46,51,53,50,45,46,49,55,54,45,46,50,55,51,45,46,51,54,50,46,51,53,52,45,46,56,51,54,46,54,55,52,45,49,46,57,53,46,55,55,45,50,46,57,54,54,67,46,55,52,52,32,49,49,46,51,55,32,48,32,57,46,55,54,32,48,32,56,99,48,45,51,46,56,54,54,32,51,46,53,56,50,45,55,32,56,45,55,115,56,32,51,46,49,51,52,32,56,32,55,122,77,55,46,49,57,52,32,54,46,55,54,54,97,49,46,54,56,56,32,49,46,54,56,56,32,48,32,48,32,48,45,46,50,50,55,45,46,50,55,50,32,49,46,52,54,55,32,49,46,52,54,55,32,48,32,48,32,48,45,46,52,54,57,45,46,51,50,52,108,45,46,48,48,56,45,46,48,48,52,65,49,46,55,56,53,32,49,46,55,56,53,32,48,32,48,32,48,32,53,46,55,51,52,32,54,67,52,46,55,55,54,32,54,32,52,32,54,46,55,52,54,32,52,32,55,46,54,54,55,99,48,32,46,57,50,46,55,55,54,32,49,46,54,54,54,32,49,46,55,51,52,32,49,46,54,54,54,46,51,52,51,32,48,32,46,54,54,50,45,46,48,57,53,46,57,51,49,45,46,50,54,45,46,49,51,55,46,51,56,57,45,46,51,57,46,56,48,52,45,46,56,49,32,49,46,50,50,97,46,52,48,53,46,52,48,53,32,48,32,48,32,48,32,46,48,49,49,46,53,57,99,46,49,55,51,46,49,54,46,52,52,55,46,49,53,53,46,54,49,52,45,46,48,49,32,49,46,51,51,52,45,49,46,51,50,57,32,49,46,51,55,45,50,46,55,53,56,46,57,52,49,45,51,46,55,48,54,97,50,46,52,54,49,32,50,46,52,54,49,32,48,32,48,32,48,45,46,50,50,55,45,46,52,122,77,49,49,32,57,46,48,55,51,99,45,46,49,51,54,46,51,56,57,45,46,51,57,46,56,48,52,45,46,56,49,32,49,46,50,50,97,46,52,48,53,46,52,48,53,32,48,32,48,32,48,32,46,48,49,50,46,53,57,99,46,49,55,50,46,49,54,46,52,52,54,46,49,53,53,46,54,49,51,45,46,48,49,32,49,46,51,51,52,45,49,46,51,50,57,32,49,46,51,55,45,50,46,55,53,56,46,57,52,50,45,51,46,55,48,54,97,50,46,52,54,54,32,50,46,52,54,54,32,48,32,48,32,48,45,46,50,50,56,45,46,52,32,49,46,54,56,54,32,49,46,54,56,54,32,48,32,48,32,48,45,46,50,50,55,45,46,50,55,51,32,49,46,52,54,54,32,49,46,52,54,54,32,48,32,48,32,48,45,46,52,54,57,45,46,51,50,52,108,45,46,48,48,56,45,46,48,48,52,65,49,46,55,56,53,32,49,46,55,56,53,32,48,32,48,32,48,32,49,48,46,48,55,32,54,99,45,46,57,53,55,32,48,45,49,46,55,51,52,46,55,52,54,45,49,46,55,51,52,32,49,46,54,54,55,32,48,32,46,57,50,46,55,55,55,32,49,46,54,54,54,32,49,46,55,51,52,32,49,46,54,54,54,46,51,52,51,32,48,32,46,54,54,50,45,46,48,57,53,46,57,51,49,45,46,50,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,82,105,103,104,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,57,46,53,56,54,97,50,32,50,32,48,32,48,32,49,32,49,46,52,49,52,46,53,56,54,108,50,32,50,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,109,49,50,45,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,46,55,57,51,97,46,53,46,53,32,48,32,48,32,49,45,46,56,53,52,46,51,53,51,108,45,50,46,56,53,51,45,50,46,56,53,51,97,49,32,49,32,48,32,48,32,48,45,46,55,48,55,45,46,50,57,51,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,82,105,103,104,116,68,111,116,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,57,46,53,56,54,97,50,32,50,32,48,32,48,32,49,32,49,46,52,49,52,46,53,56,54,108,50,32,50,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,109,49,50,45,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,46,55,57,51,97,46,53,46,53,32,48,32,48,32,49,45,46,56,53,52,46,51,53,51,108,45,50,46,56,53,51,45,50,46,56,53,51,97,49,32,49,32,48,32,48,32,48,45,46,55,48,55,45,46,50,57,51,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,32,54,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,52,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,52,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,82,105,103,104,116,68,111,116,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,57,46,53,56,54,97,49,32,49,32,48,32,48,32,49,32,46,55,48,55,46,50,57,51,108,50,46,56,53,51,32,50,46,56,53,51,97,46,53,46,53,32,48,32,48,32,48,32,46,56,53,52,45,46,51,53,51,86,50,122,77,53,32,54,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,52,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,51,32,49,97,49,32,49,32,48,32,49,32,49,32,48,45,50,32,49,32,49,32,48,32,48,32,49,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,82,105,103,104,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,46,55,57,51,97,46,53,46,53,32,48,32,48,32,49,45,46,56,53,52,46,51,53,51,108,45,50,46,56,53,51,45,50,46,56,53,51,97,49,32,49,32,48,32,48,32,48,45,46,55,48,55,45,46,50,57,51,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,82,105,103,104,116,81,117,111,116,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,57,46,53,56,54,97,50,32,50,32,48,32,48,32,49,32,49,46,52,49,52,46,53,56,54,108,50,32,50,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,109,49,50,45,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,46,55,57,51,97,46,53,46,53,32,48,32,48,32,49,45,46,56,53,52,46,51,53,51,108,45,50,46,56,53,51,45,50,46,56,53,51,97,49,32,49,32,48,32,48,32,48,45,46,55,48,55,45,46,50,57,51,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,48,54,54,32,52,46,55,54,65,49,46,54,54,53,32,49,46,54,54,53,32,48,32,48,32,48,32,52,32,53,46,54,54,56,97,49,46,54,54,55,32,49,46,54,54,55,32,48,32,48,32,48,32,50,46,53,54,49,32,49,46,52,48,54,99,45,46,49,51,49,46,51,56,57,45,46,51,55,53,46,56,48,52,45,46,55,55,55,32,49,46,50,50,97,46,52,49,55,46,52,49,55,32,48,32,49,32,48,32,46,54,46,53,56,99,49,46,52,56,54,45,49,46,53,52,32,49,46,50,57,51,45,51,46,50,49,52,46,54,56,50,45,52,46,49,49,50,122,109,52,32,48,65,49,46,54,54,53,32,49,46,54,54,53,32,48,32,48,32,48,32,56,32,53,46,54,54,56,97,49,46,54,54,55,32,49,46,54,54,55,32,48,32,48,32,48,32,50,46,53,54,49,32,49,46,52,48,54,99,45,46,49,51,49,46,51,56,57,45,46,51,55,53,46,56,48,52,45,46,55,55,55,32,49,46,50,50,97,46,52,49,55,46,52,49,55,32,48,32,49,32,48,32,46,54,46,53,56,99,49,46,52,56,54,45,49,46,53,52,32,49,46,50,57,51,45,51,46,50,49,52,46,54,56,50,45,52,46,49,49,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,82,105,103,104,116,81,117,111,116,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,57,46,53,56,54,97,49,32,49,32,48,32,48,32,49,32,46,55,48,55,46,50,57,51,108,50,46,56,53,51,32,50,46,56,53,51,97,46,53,46,53,32,48,32,48,32,48,32,46,56,53,52,45,46,51,53,51,86,50,122,77,55,46,49,57,52,32,52,46,55,54,54,99,46,48,56,55,46,49,50,52,46,49,54,51,46,50,54,46,50,50,55,46,52,48,49,46,52,50,56,46,57,52,56,46,51,57,51,32,50,46,51,55,55,45,46,57,52,50,32,51,46,55,48,54,97,46,52,52,54,46,52,52,54,32,48,32,48,32,49,45,46,54,49,50,46,48,49,46,52,48,53,46,52,48,53,32,48,32,48,32,49,45,46,48,49,49,45,46,53,57,99,46,52,49,57,45,46,52,49,54,46,54,55,50,45,46,56,51,49,46,56,48,57,45,49,46,50,50,45,46,50,54,57,46,49,54,53,45,46,53,56,56,46,50,54,45,46,57,51,46,50,54,67,52,46,55,55,53,32,55,46,51,51,51,32,52,32,54,46,53,56,55,32,52,32,53,46,54,54,55,32,52,32,52,46,55,52,55,32,52,46,55,55,54,32,52,32,53,46,55,51,52,32,52,99,46,50,55,49,32,48,32,46,53,50,56,46,48,54,46,55,53,54,46,49,54,54,108,46,48,48,56,46,48,48,52,99,46,49,54,57,46,48,55,46,51,50,55,46,49,56,50,46,52,54,57,46,51,50,52,46,48,56,53,46,48,56,51,46,49,54,49,46,49,55,52,46,50,50,55,46,50,55,50,122,77,49,49,32,55,46,48,55,51,99,45,46,50,54,57,46,49,54,53,45,46,53,56,56,46,50,54,45,46,57,51,46,50,54,45,46,57,53,56,32,48,45,49,46,55,51,53,45,46,55,52,54,45,49,46,55,51,53,45,49,46,54,54,54,32,48,45,46,57,50,46,55,55,55,45,49,46,54,54,55,32,49,46,55,51,52,45,49,46,54,54,55,46,50,55,49,32,48,32,46,53,50,56,46,48,54,46,55,53,54,46,49,54,54,108,46,48,48,56,46,48,48,52,99,46,49,55,46,48,55,46,51,50,55,46,49,56,50,46,52,54,57,46,51,50,52,46,48,56,53,46,48,56,51,46,49,54,49,46,49,55,52,46,50,50,55,46,50,55,50,46,48,56,55,46,49,50,52,46,49,54,52,46,50,54,46,50,50,56,46,52,48,49,46,52,50,56,46,57,52,56,46,51,57,50,32,50,46,51,55,55,45,46,57,52,50,32,51,46,55,48,54,97,46,52,52,54,46,52,52,54,32,48,32,48,32,49,45,46,54,49,51,46,48,49,46,52,48,53,46,52,48,53,32,48,32,48,32,49,45,46,48,49,49,45,46,53,57,99,46,52,50,45,46,52,49,54,46,54,55,50,45,46,56,51,49,46,56,49,45,49,46,50,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,82,105,103,104,116,84,101,120,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,57,46,53,56,54,97,50,32,50,32,48,32,48,32,49,32,49,46,52,49,52,46,53,56,54,108,50,32,50,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,109,49,50,45,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,46,55,57,51,97,46,53,46,53,32,48,32,48,32,49,45,46,56,53,52,46,51,53,51,108,45,50,46,56,53,51,45,50,46,56,53,51,97,49,32,49,32,48,32,48,32,48,45,46,55,48,55,45,46,50,57,51,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,51,32,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,65,46,53,46,53,32,48,32,48,32,49,32,51,32,54,122,109,48,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,82,105,103,104,116,84,101,120,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,57,46,53,56,54,97,49,32,49,32,48,32,48,32,49,32,46,55,48,55,46,50,57,51,108,50,46,56,53,51,32,50,46,56,53,51,97,46,53,46,53,32,48,32,48,32,48,32,46,56,53,52,45,46,51,53,51,86,50,122,77,51,46,53,32,51,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,109,48,32,50,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,109,48,32,50,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,46,53,97,50,32,50,32,48,32,48,32,48,45,49,46,54,46,56,76,56,32,49,52,46,51,51,51,32,54,46,49,32,49,49,46,56,97,50,32,50,32,48,32,48,32,48,45,49,46,54,45,46,56,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,50,46,53,97,49,32,49,32,48,32,48,32,49,32,46,56,46,52,108,49,46,57,32,50,46,53,51,51,97,49,32,49,32,48,32,48,32,48,32,49,46,54,32,48,108,49,46,57,45,50,46,53,51,51,97,49,32,49,32,48,32,48,32,49,32,46,56,45,46,52,72,49,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,83,113,117,97,114,101,68,111,116,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,46,53,97,50,32,50,32,48,32,48,32,48,45,49,46,54,46,56,76,56,32,49,52,46,51,51,51,32,54,46,49,32,49,49,46,56,97,50,32,50,32,48,32,48,32,48,45,49,46,54,45,46,56,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,50,46,53,97,49,32,49,32,48,32,48,32,49,32,46,56,46,52,108,49,46,57,32,50,46,53,51,51,97,49,32,49,32,48,32,48,32,48,32,49,46,54,32,48,108,49,46,57,45,50,46,53,51,51,97,49,32,49,32,48,32,48,32,49,32,46,56,45,46,52,72,49,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,32,54,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,52,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,52,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,83,113,117,97,114,101,68,111,116,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,104,45,50,46,53,97,49,32,49,32,48,32,48,32,48,45,46,56,46,52,108,45,49,46,57,32,50,46,53,51,51,97,49,32,49,32,48,32,48,32,49,45,49,46,54,32,48,76,53,46,51,32,49,50,46,52,97,49,32,49,32,48,32,48,32,48,45,46,56,45,46,52,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,53,32,52,97,49,32,49,32,48,32,49,32,48,45,50,32,48,32,49,32,49,32,48,32,48,32,48,32,50,32,48,122,109,52,32,48,97,49,32,49,32,48,32,49,32,48,45,50,32,48,32,49,32,49,32,48,32,48,32,48,32,50,32,48,122,109,51,32,49,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,50,46,53,97,49,32,49,32,48,32,48,32,49,32,46,56,46,52,108,49,46,57,32,50,46,53,51,51,97,49,32,49,32,48,32,48,32,48,32,49,46,54,32,48,108,49,46,57,45,50,46,53,51,51,97,49,32,49,32,48,32,48,32,49,32,46,56,45,46,52,72,49,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,46,53,97,50,32,50,32,48,32,48,32,48,45,49,46,54,46,56,76,56,32,49,52,46,51,51,51,32,54,46,49,32,49,49,46,56,97,50,32,50,32,48,32,48,32,48,45,49,46,54,45,46,56,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,50,46,53,97,49,32,49,32,48,32,48,32,49,32,46,56,46,52,108,49,46,57,32,50,46,53,51,51,97,49,32,49,32,48,32,48,32,48,32,49,46,54,32,48,108,49,46,57,45,50,46,53,51,51,97,49,32,49,32,48,32,48,32,49,32,46,56,45,46,52,72,49,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,48,54,54,32,52,46,55,54,65,49,46,54,54,53,32,49,46,54,54,53,32,48,32,48,32,48,32,52,32,53,46,54,54,56,97,49,46,54,54,55,32,49,46,54,54,55,32,48,32,48,32,48,32,50,46,53,54,49,32,49,46,52,48,54,99,45,46,49,51,49,46,51,56,57,45,46,51,55,53,46,56,48,52,45,46,55,55,55,32,49,46,50,50,97,46,52,49,55,46,52,49,55,32,48,32,49,32,48,32,46,54,46,53,56,99,49,46,52,56,54,45,49,46,53,52,32,49,46,50,57,51,45,51,46,50,49,52,46,54,56,50,45,52,46,49,49,50,122,109,52,32,48,65,49,46,54,54,53,32,49,46,54,54,53,32,48,32,48,32,48,32,56,32,53,46,54,54,56,97,49,46,54,54,55,32,49,46,54,54,55,32,48,32,48,32,48,32,50,46,53,54,49,32,49,46,52,48,54,99,45,46,49,51,49,46,51,56,57,45,46,51,55,53,46,56,48,52,45,46,55,55,55,32,49,46,50,50,97,46,52,49,55,46,52,49,55,32,48,32,49,32,48,32,46,54,46,53,56,99,49,46,52,56,54,45,49,46,53,52,32,49,46,50,57,51,45,51,46,50,49,52,46,54,56,50,45,52,46,49,49,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,104,45,50,46,53,97,49,32,49,32,48,32,48,32,48,45,46,56,46,52,108,45,49,46,57,32,50,46,53,51,51,97,49,32,49,32,48,32,48,32,49,45,49,46,54,32,48,76,53,46,51,32,49,50,46,52,97,49,32,49,32,48,32,48,32,48,45,46,56,45,46,52,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,55,46,49,57,52,32,50,46,55,54,54,97,49,46,54,56,56,32,49,46,54,56,56,32,48,32,48,32,48,45,46,50,50,55,45,46,50,55,50,32,49,46,52,54,55,32,49,46,52,54,55,32,48,32,48,32,48,45,46,52,54,57,45,46,51,50,52,108,45,46,48,48,56,45,46,48,48,52,65,49,46,55,56,53,32,49,46,55,56,53,32,48,32,48,32,48,32,53,46,55,51,52,32,52,67,52,46,55,55,54,32,52,32,52,32,52,46,55,52,54,32,52,32,53,46,54,54,55,99,48,32,46,57,50,46,55,55,54,32,49,46,54,54,54,32,49,46,55,51,52,32,49,46,54,54,54,46,51,52,51,32,48,32,46,54,54,50,45,46,48,57,53,46,57,51,49,45,46,50,54,45,46,49,51,55,46,51,56,57,45,46,51,57,46,56,48,52,45,46,56,49,32,49,46,50,50,97,46,52,48,53,46,52,48,53,32,48,32,48,32,48,32,46,48,49,49,46,53,57,99,46,49,55,51,46,49,54,46,52,52,55,46,49,53,53,46,54,49,52,45,46,48,49,32,49,46,51,51,52,45,49,46,51,50,57,32,49,46,51,55,45,50,46,55,53,56,46,57,52,49,45,51,46,55,48,54,97,50,46,52,54,49,32,50,46,52,54,49,32,48,32,48,32,48,45,46,50,50,55,45,46,52,122,77,49,49,32,55,46,48,55,51,99,45,46,49,51,54,46,51,56,57,45,46,51,57,46,56,48,52,45,46,56,49,32,49,46,50,50,97,46,52,48,53,46,52,48,53,32,48,32,48,32,48,32,46,48,49,50,46,53,57,99,46,49,55,50,46,49,54,46,52,52,54,46,49,53,53,46,54,49,51,45,46,48,49,32,49,46,51,51,52,45,49,46,51,50,57,32,49,46,51,55,45,50,46,55,53,56,46,57,52,50,45,51,46,55,48,54,97,50,46,52,54,54,32,50,46,52,54,54,32,48,32,48,32,48,45,46,50,50,56,45,46,52,32,49,46,54,56,54,32,49,46,54,56,54,32,48,32,48,32,48,45,46,50,50,55,45,46,50,55,51,32,49,46,52,54,54,32,49,46,52,54,54,32,48,32,48,32,48,45,46,52,54,57,45,46,51,50,52,108,45,46,48,48,56,45,46,48,48,52,65,49,46,55,56,53,32,49,46,55,56,53,32,48,32,48,32,48,32,49,48,46,48,55,32,52,99,45,46,57,53,55,32,48,45,49,46,55,51,52,46,55,52,54,45,49,46,55,51,52,32,49,46,54,54,55,32,48,32,46,57,50,46,55,55,55,32,49,46,54,54,54,32,49,46,55,51,52,32,49,46,54,54,54,46,51,52,51,32,48,32,46,54,54,50,45,46,48,57,53,46,57,51,49,45,46,50,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,83,113,117,97,114,101,84,101,120,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,46,53,97,50,32,50,32,48,32,48,32,48,45,49,46,54,46,56,76,56,32,49,52,46,51,51,51,32,54,46,49,32,49,49,46,56,97,50,32,50,32,48,32,48,32,48,45,49,46,54,45,46,56,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,50,46,53,97,49,32,49,32,48,32,48,32,49,32,46,56,46,52,108,49,46,57,32,50,46,53,51,51,97,49,32,49,32,48,32,48,32,48,32,49,46,54,32,48,108,49,46,57,45,50,46,53,51,51,97,49,32,49,32,48,32,48,32,49,32,46,56,45,46,52,72,49,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,51,32,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,65,46,53,46,53,32,48,32,48,32,49,32,51,32,54,122,109,48,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,83,113,117,97,114,101,84,101,120,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,104,45,50,46,53,97,49,32,49,32,48,32,48,32,48,45,46,56,46,52,108,45,49,46,57,32,50,46,53,51,51,97,49,32,49,32,48,32,48,32,49,45,49,46,54,32,48,76,53,46,51,32,49,50,46,52,97,49,32,49,32,48,32,48,32,48,45,46,56,45,46,52,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,51,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,57,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,57,122,109,48,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,57,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,57,122,109,48,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,84,101,120,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,84,101,120,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,54,55,56,32,49,49,46,56,57,52,97,49,32,49,32,48,32,48,32,49,32,46,50,56,55,46,56,48,49,32,49,48,46,57,55,32,49,48,46,57,55,32,48,32,48,32,49,45,46,51,57,56,32,50,99,49,46,51,57,53,45,46,51,50,51,32,50,46,50,52,55,45,46,54,57,55,32,50,46,54,51,52,45,46,56,57,51,97,49,32,49,32,48,32,48,32,49,32,46,55,49,45,46,48,55,52,65,56,46,48,54,32,56,46,48,54,32,48,32,48,32,48,32,56,32,49,52,99,51,46,57,57,54,32,48,32,55,45,50,46,56,48,55,32,55,45,54,32,48,45,51,46,49,57,50,45,51,46,48,48,52,45,54,45,55,45,54,83,49,32,52,46,56,48,56,32,49,32,56,99,48,32,49,46,52,54,56,46,54,49,55,32,50,46,56,51,32,49,46,54,55,56,32,51,46,56,57,52,122,109,45,46,52,57,51,32,51,46,57,48,53,97,50,49,46,54,56,50,32,50,49,46,54,56,50,32,48,32,48,32,49,45,46,55,49,51,46,49,50,57,99,45,46,50,46,48,51,50,45,46,51,53,50,45,46,49,55,54,45,46,50,55,51,45,46,51,54,50,97,57,46,54,56,32,57,46,54,56,32,48,32,48,32,48,32,46,50,52,52,45,46,54,51,55,108,46,48,48,51,45,46,48,49,99,46,50,52,56,45,46,55,50,46,52,53,45,49,46,53,52,56,46,53,50,52,45,50,46,51,49,57,67,46,55,52,51,32,49,49,46,51,55,32,48,32,57,46,55,54,32,48,32,56,99,48,45,51,46,56,54,54,32,51,46,53,56,50,45,55,32,56,45,55,115,56,32,51,46,49,51,52,32,56,32,55,45,51,46,53,56,50,32,55,45,56,32,55,97,57,46,48,54,32,57,46,48,54,32,48,32,48,32,49,45,50,46,51,52,55,45,46,51,48,54,99,45,46,53,50,46,50,54,51,45,49,46,54,51,57,46,55,52,50,45,51,46,52,54,56,32,49,46,49,48,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,52,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,65,46,53,46,53,32,48,32,48,32,49,32,52,32,56,122,109,48,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,97,116,84,101,120,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,97,116,84,101,120,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,99,48,32,51,46,56,54,54,45,51,46,53,56,50,32,55,45,56,32,55,97,57,46,48,54,32,57,46,48,54,32,48,32,48,32,49,45,50,46,51,52,55,45,46,51,48,54,99,45,46,53,56,52,46,50,57,54,45,49,46,57,50,53,46,56,54,52,45,52,46,49,56,49,32,49,46,50,51,52,45,46,50,46,48,51,50,45,46,51,53,50,45,46,49,55,54,45,46,50,55,51,45,46,51,54,50,46,51,53,52,45,46,56,51,54,46,54,55,52,45,49,46,57,53,46,55,55,45,50,46,57,54,54,67,46,55,52,52,32,49,49,46,51,55,32,48,32,57,46,55,54,32,48,32,56,99,48,45,51,46,56,54,54,32,51,46,53,56,50,45,55,32,56,45,55,115,56,32,51,46,49,51,52,32,56,32,55,122,77,52,46,53,32,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,55,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,55,122,109,48,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,55,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,55,122,109,48,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,57,55,32,52,46,57,55,97,46,55,53,46,55,53,32,48,32,48,32,49,32,49,46,48,55,32,49,46,48,53,108,45,51,46,57,57,32,52,46,57,57,97,46,55,53,46,55,53,32,48,32,48,32,49,45,49,46,48,56,46,48,50,76,52,46,51,50,52,32,56,46,51,56,52,97,46,55,53,46,55,53,32,48,32,49,32,49,32,49,46,48,54,45,49,46,48,54,108,50,46,48,57,52,32,50,46,48,57,51,32,51,46,52,55,51,45,52,46,52,50,53,97,46,50,54,55,46,50,54,55,32,48,32,48,32,49,32,46,48,50,45,46,48,50,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,99,107,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,99,107,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,46,56,53,52,32,51,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,55,32,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,51,46,53,45,51,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,54,46,53,32,49,48,46,50,57,51,108,54,46,54,52,54,45,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,99,107,50,65,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,99,107,50,65,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,51,53,52,32,52,46,51,53,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,53,32,49,48,46,50,57,51,32,49,46,56,53,52,32,55,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,51,46,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,55,45,55,122,109,45,52,46,50,48,56,32,55,108,45,46,56,57,54,45,46,56,57,55,46,55,48,55,45,46,55,48,55,46,53,52,51,46,53,52,51,32,54,46,54,52,54,45,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,55,32,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,51,53,52,32,55,46,49,52,54,108,46,56,57,54,46,56,57,55,45,46,55,48,55,46,55,48,55,45,46,56,57,55,45,46,56,57,54,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,99,107,50,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,99,107,50,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,56,97,53,46,53,32,53,46,53,32,48,32,48,32,49,32,56,46,50,53,45,52,46,55,54,52,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,56,54,54,65,54,46,53,32,54,46,53,32,48,32,49,32,48,32,49,52,46,53,32,56,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,32,53,46,53,32,53,46,53,32,48,32,49,32,49,45,49,49,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,53,46,51,53,52,32,51,46,51,53,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,32,57,46,50,57,51,32,53,46,51,53,52,32,54,46,54,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,51,32,51,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,55,45,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,99,107,50,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,99,107,50,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,49,52,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,51,86,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,49,46,53,104,56,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,48,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,56,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,72,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,46,51,53,52,32,49,48,46,51,53,52,108,55,45,55,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,32,57,46,50,57,51,32,53,46,51,53,52,32,54,46,54,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,51,32,51,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,99,107,65,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,99,107,65,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,57,55,32,52,46,57,55,97,46,55,53,46,55,53,32,48,32,48,32,49,32,49,46,48,55,49,32,49,46,48,53,108,45,51,46,57,57,50,32,52,46,57,57,97,46,55,53,46,55,53,32,48,32,48,32,49,45,49,46,48,56,46,48,50,76,50,46,51,50,52,32,56,46,51,56,52,97,46,55,53,46,55,53,32,48,32,49,32,49,32,49,46,48,54,45,49,46,48,54,108,50,46,48,57,52,32,50,46,48,57,51,76,56,46,57,53,32,52,46,57,57,50,97,46,50,53,50,46,50,53,50,32,48,32,48,32,49,32,46,48,50,45,46,48,50,50,122,109,45,46,57,50,32,53,46,49,52,108,46,57,50,46,57,50,97,46,55,53,46,55,53,32,48,32,48,32,48,32,49,46,48,55,57,45,46,48,50,108,51,46,57,57,50,45,52,46,57,57,97,46,55,53,46,55,53,32,48,32,49,32,48,45,49,46,48,57,49,45,49,46,48,50,56,76,57,46,52,55,55,32,57,46,52,49,55,108,45,46,52,56,53,45,46,52,56,54,45,46,57,52,51,32,49,46,49,55,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,99,107,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,57,55,32,52,46,57,55,97,46,50,51,53,46,50,51,53,32,48,32,48,32,48,45,46,48,50,46,48,50,50,76,55,46,52,55,55,32,57,46,52,49,55,32,53,46,51,56,52,32,55,46,51,50,51,97,46,55,53,46,55,53,32,48,32,48,32,48,45,49,46,48,54,32,49,46,48,54,76,54,46,57,55,32,49,49,46,48,51,97,46,55,53,46,55,53,32,48,32,48,32,48,32,49,46,48,55,57,45,46,48,50,108,51,46,57,57,50,45,52,46,57,57,97,46,55,53,46,55,53,32,48,32,48,32,48,45,49,46,48,55,49,45,49,46,48,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,99,107,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,109,45,51,46,57,55,45,51,46,48,51,97,46,55,53,46,55,53,32,48,32,48,32,48,45,49,46,48,56,46,48,50,50,76,55,46,52,55,55,32,57,46,52,49,55,32,53,46,51,56,52,32,55,46,51,50,51,97,46,55,53,46,55,53,32,48,32,48,32,48,45,49,46,48,54,32,49,46,48,54,76,54,46,57,55,32,49,49,46,48,51,97,46,55,53,46,55,53,32,48,32,48,32,48,32,49,46,48,55,57,45,46,48,50,108,51,46,57,57,50,45,52,46,57,57,97,46,55,53,46,55,53,32,48,32,48,32,48,45,46,48,49,45,49,46,48,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,99,107,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,57,55,32,52,46,57,55,97,46,55,53,46,55,53,32,48,32,48,32,49,32,49,46,48,55,49,32,49,46,48,53,108,45,51,46,57,57,50,32,52,46,57,57,97,46,55,53,46,55,53,32,48,32,48,32,49,45,49,46,48,56,46,48,50,76,52,46,51,50,52,32,56,46,51,56,52,97,46,55,53,46,55,53,32,48,32,49,32,49,32,49,46,48,54,45,49,46,48,54,108,50,46,48,57,52,32,50,46,48,57,51,32,51,46,52,55,51,45,52,46,52,50,53,97,46,50,51,53,46,50,51,53,32,48,32,48,32,49,32,46,48,50,45,46,48,50,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,99,107,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,49,48,46,48,51,32,52,46,57,55,97,46,55,53,46,55,53,32,48,32,48,32,49,32,46,48,49,49,32,49,46,48,53,108,45,51,46,57,57,50,32,52,46,57,57,97,46,55,53,46,55,53,32,48,32,48,32,49,45,49,46,48,56,46,48,50,76,52,46,51,50,52,32,56,46,51,56,52,97,46,55,53,46,55,53,32,48,32,49,32,49,32,49,46,48,54,45,49,46,48,54,108,50,46,48,57,52,32,50,46,48,57,51,32,51,46,52,55,51,45,52,46,52,50,53,97,46,55,53,46,55,53,32,48,32,48,32,49,32,49,46,48,56,45,46,48,50,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,67,111,110,116,114,97,99,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,66,97,114,67,111,110,116,114,97,99,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,46,54,52,54,32,49,52,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,76,56,32,49,49,46,50,48,55,108,51,46,54,52,54,32,51,46,54,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,52,32,52,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,56,122,109,48,45,49,51,46,55,48,56,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,52,46,55,57,51,108,51,46,54,52,54,45,51,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,52,32,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,77,49,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,51,65,46,53,46,53,32,48,32,48,32,49,32,49,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,66,97,114,68,111,119,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,46,54,52,54,32,52,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,55,46,55,57,51,108,51,46,54,52,54,45,51,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,52,32,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,77,49,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,69,120,112,97,110,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,66,97,114,69,120,112,97,110,100,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,46,54,52,54,32,49,48,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,49,51,46,55,57,51,108,51,46,54,52,54,45,51,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,52,32,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,109,48,45,52,46,50,57,50,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,76,56,32,50,46,50,48,55,108,51,46,54,52,54,32,51,46,54,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,52,32,52,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,56,122,77,49,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,51,65,46,53,46,53,32,48,32,48,32,49,32,49,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,66,97,114,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,46,56,53,52,32,51,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,76,56,46,50,48,55,32,56,108,51,46,54,52,55,32,51,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,52,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,77,52,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,51,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,49,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,66,97,114,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,52,46,49,52,54,32,51,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,56,76,55,46,55,57,51,32,56,108,45,51,46,54,52,55,32,51,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,108,52,45,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,122,77,49,49,46,53,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,49,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,66,97,114,85,112,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,46,54,52,54,32,49,49,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,76,56,32,56,46,50,48,55,108,51,46,54,52,54,32,51,46,54,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,52,32,52,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,56,122,77,50,46,52,32,53,46,50,99,48,32,46,50,50,46,49,56,46,52,46,52,46,52,104,49,48,46,52,97,46,52,46,52,32,48,32,48,32,48,32,48,45,46,56,72,50,46,56,97,46,52,46,52,32,48,32,48,32,48,45,46,52,46,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,67,111,109,112,97,99,116,68,111,119,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,53,53,51,32,54,46,55,55,54,97,46,53,46,53,32,48,32,48,32,49,32,46,54,55,45,46,50,50,51,76,56,32,57,46,52,52,108,53,46,55,55,54,45,50,46,56,56,56,97,46,53,46,53,32,48,32,49,32,49,32,46,52,52,56,46,56,57,52,108,45,54,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,52,52,56,32,48,108,45,54,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,50,50,51,45,46,54,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,67,111,109,112,97,99,116,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,57,46,50,50,52,32,49,46,53,53,51,97,46,53,46,53,32,48,32,48,32,49,32,46,50,50,51,46,54,55,76,54,46,53,54,32,56,108,50,46,56,56,56,32,53,46,55,55,54,97,46,53,46,53,32,48,32,49,32,49,45,46,56,57,52,46,52,52,56,108,45,51,45,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,52,52,56,108,51,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,54,55,45,46,50,50,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,67,111,109,112,97,99,116,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,46,55,55,54,32,49,46,53,53,51,97,46,53,46,53,32,48,32,48,32,49,32,46,54,55,49,46,50,50,51,108,51,32,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,52,52,56,108,45,51,32,54,97,46,53,46,53,32,48,32,49,32,49,45,46,56,57,52,45,46,52,52,56,76,57,46,52,52,32,56,32,54,46,53,53,51,32,50,46,50,50,52,97,46,53,46,53,32,48,32,48,32,49,32,46,50,50,51,45,46,54,55,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,67,111,109,112,97,99,116,85,112,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,55,55,54,32,53,46,53,53,51,97,46,53,46,53,32,48,32,48,32,49,32,46,52,52,56,32,48,108,54,32,51,97,46,53,46,53,32,48,32,49,32,49,45,46,52,52,56,46,56,57,52,76,56,32,54,46,53,54,32,50,46,50,50,52,32,57,46,52,52,55,97,46,53,46,53,32,48,32,49,32,49,45,46,52,52,56,45,46,56,57,52,108,54,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,67,111,110,116,114,97,99,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,67,111,110,116,114,97,99,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,46,54,52,54,32,49,51,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,76,56,32,49,48,46,50,48,55,108,51,46,54,52,54,32,51,46,54,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,52,32,52,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,56,122,109,48,45,49,49,46,55,48,56,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,53,46,55,57,51,108,51,46,54,52,54,45,51,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,52,32,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,68,111,117,98,108,101,68,111,119,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,54,52,54,32,54,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,49,50,46,50,57,51,108,53,46,54,52,54,45,53,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,54,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,54,52,54,32,50,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,56,46,50,57,51,108,53,46,54,52,54,45,53,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,54,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,68,111,117,98,108,101,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,46,51,53,52,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,76,50,46,55,48,55,32,56,108,53,46,54,52,55,32,53,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,50,46,51,53,52,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,76,54,46,55,48,55,32,56,108,53,46,54,52,55,32,53,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,68,111,117,98,108,101,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,46,54,52,54,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,54,32,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,54,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,57,46,50,57,51,32,56,32,51,46,54,52,54,32,50,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,54,52,54,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,54,32,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,54,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,51,46,50,57,51,32,56,32,55,46,54,52,54,32,50,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,68,111,117,98,108,101,85,112,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,54,52,54,32,50,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,54,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,51,46,55,48,55,32,50,46,51,53,52,32,57,46,51,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,54,45,54,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,54,52,54,32,54,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,54,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,55,46,55,48,55,108,45,53,46,54,52,54,32,53,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,108,54,45,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,68,111,119,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,54,52,54,32,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,49,48,46,50,57,51,108,53,46,54,52,54,45,53,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,54,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,69,120,112,97,110,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,69,120,112,97,110,100,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,46,54,52,54,32,57,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,49,50,46,55,57,51,108,51,46,54,52,54,45,51,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,52,32,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,109,48,45,50,46,50,57,50,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,76,56,32,51,46,50,48,55,108,51,46,54,52,54,32,51,46,54,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,52,32,52,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,46,51,53,52,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,76,53,46,55,48,55,32,56,108,53,46,54,52,55,32,53,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,52,46,54,52,54,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,54,32,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,54,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,48,46,50,57,51,32,56,32,52,46,54,52,54,32,50,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,104,101,118,114,111,110,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,104,101,118,114,111,110,85,112,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,54,52,54,32,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,54,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,53,46,55,48,55,108,45,53,46,54,52,54,32,53,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,108,54,45,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,105,114,99,108,101,70,105,108,108,39,44,39,60,99,105,114,99,108,101,32,99,120,61,92,34,56,92,34,32,99,121,61,92,34,56,92,34,32,114,61,92,34,56,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,105,114,99,108,101,72,97,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,105,114,99,108,101,72,97,108,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,48,32,56,32,49,118,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,49,32,56,32,48,97,56,32,56,32,48,32,48,32,49,32,48,32,49,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,105,114,99,108,101,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,105,114,99,108,101,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,54,97,54,32,54,32,48,32,49,32,49,32,49,50,32,48,65,54,32,54,32,48,32,48,32,49,32,48,32,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,46,57,51,32,53,104,49,46,53,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,46,53,55,97,54,46,57,53,51,32,54,46,57,53,51,32,48,32,48,32,49,45,49,45,46,50,50,118,49,46,55,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,46,53,32,49,54,104,57,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,118,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,46,53,32,52,104,45,49,46,55,57,99,46,48,57,55,46,51,50,52,46,49,55,46,54,53,56,46,50,50,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,105,112,98,111,97,114,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,49,46,53,72,51,97,50,32,50,32,48,32,48,32,48,45,50,32,50,86,49,52,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,46,53,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,118,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,118,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,53,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,122,109,45,51,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,32,49,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,54,46,53,32,52,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,50,46,53,118,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,57,46,53,32,48,104,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,105,112,98,111,97,114,100,67,104,101,99,107,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,56,53,52,32,55,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,57,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,49,46,53,72,51,97,50,32,50,32,48,32,48,32,48,45,50,32,50,86,49,52,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,46,53,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,118,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,118,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,53,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,122,109,45,51,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,32,49,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,54,46,53,32,52,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,50,46,53,118,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,57,46,53,32,48,104,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,68,97,116,97,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,105,112,98,111,97,114,100,68,97,116,97,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,49,49,97,49,32,49,32,48,32,49,32,49,32,50,32,48,118,49,97,49,32,49,32,48,32,49,32,49,45,50,32,48,118,45,49,122,109,54,45,52,97,49,32,49,32,48,32,49,32,49,32,50,32,48,118,53,97,49,32,49,32,48,32,49,32,49,45,50,32,48,86,55,122,77,55,32,57,97,49,32,49,32,48,32,48,32,49,32,50,32,48,118,51,97,49,32,49,32,48,32,49,32,49,45,50,32,48,86,57,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,49,46,53,72,51,97,50,32,50,32,48,32,48,32,48,45,50,32,50,86,49,52,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,46,53,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,118,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,118,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,53,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,122,109,45,51,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,32,49,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,54,46,53,32,52,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,50,46,53,118,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,57,46,53,32,48,104,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,77,105,110,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,105,112,98,111,97,114,100,77,105,110,117,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,53,46,53,32,57,46,53,65,46,53,46,53,32,48,32,48,32,49,32,54,32,57,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,49,46,53,72,51,97,50,32,50,32,48,32,48,32,48,45,50,32,50,86,49,52,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,46,53,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,118,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,118,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,53,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,122,109,45,51,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,32,49,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,54,46,53,32,52,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,50,46,53,118,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,57,46,53,32,48,104,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,105,112,98,111,97,114,100,80,108,117,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,57,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,48,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,55,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,49,46,53,72,51,97,50,32,50,32,48,32,48,32,48,45,50,32,50,86,49,52,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,46,53,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,118,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,118,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,53,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,122,109,45,51,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,32,49,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,54,46,53,32,52,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,50,46,53,118,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,57,46,53,32,48,104,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,88,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,105,112,98,111,97,114,100,88,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,46,49,52,54,32,55,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,56,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,57,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,57,46,55,48,55,108,45,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,57,32,54,46,49,52,54,32,55,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,49,46,53,72,51,97,50,32,50,32,48,32,48,32,48,45,50,32,50,86,49,52,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,48,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,46,53,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,118,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,118,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,53,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,122,109,45,51,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,32,49,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,54,46,53,32,52,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,50,46,53,118,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,57,46,53,32,48,104,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,51,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,57,97,46,53,46,53,32,48,32,48,32,48,32,46,50,53,50,46,52,51,52,108,51,46,53,32,50,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,54,45,46,56,54,56,76,56,32,56,46,55,49,86,51,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,109,55,45,56,65,55,32,55,32,48,32,49,32,49,32,49,32,56,97,55,32,55,32,48,32,48,32,49,32,49,52,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,56,32,51,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,57,97,46,53,46,53,32,48,32,48,32,48,32,46,50,53,50,46,52,51,52,108,51,46,53,32,50,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,54,45,46,56,54,56,76,56,32,56,46,55,49,86,51,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,99,107,72,105,115,116,111,114,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,99,107,72,105,115,116,111,114,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,53,49,53,32,49,46,48,49,57,65,55,32,55,32,48,32,48,32,48,32,56,32,49,86,48,97,56,32,56,32,48,32,48,32,49,32,46,53,56,57,46,48,50,50,108,45,46,48,55,52,46,57,57,55,122,109,50,46,48,48,52,46,52,53,97,55,46,48,48,51,32,55,46,48,48,51,32,48,32,48,32,48,45,46,57,56,53,45,46,50,57,57,108,46,50,49,57,45,46,57,55,54,99,46,51,56,51,46,48,56,54,46,55,54,46,50,32,49,46,49,50,54,46,51,52,50,108,45,46,51,54,46,57,51,51,122,109,49,46,51,55,46,55,49,97,55,46,48,49,32,55,46,48,49,32,48,32,48,32,48,45,46,52,51,57,45,46,50,55,108,46,52,57,51,45,46,56,55,97,56,46,48,50,53,32,56,46,48,50,53,32,48,32,48,32,49,32,46,57,55,57,46,54,53,52,108,45,46,54,49,53,46,55,56,57,97,54,46,57,57,54,32,54,46,57,57,54,32,48,32,48,32,48,45,46,52,49,56,45,46,51,48,50,122,109,49,46,56,51,52,32,49,46,55,57,97,54,46,57,57,32,54,46,57,57,32,48,32,48,32,48,45,46,54,53,51,45,46,55,57,54,108,46,55,50,52,45,46,54,57,99,46,50,55,46,50,56,53,46,53,50,46,53,57,46,55,52,55,46,57,49,108,45,46,56,49,56,46,53,55,54,122,109,46,55,52,52,32,49,46,51,53,50,97,55,46,48,56,32,55,46,48,56,32,48,32,48,32,48,45,46,50,49,52,45,46,52,54,56,108,46,56,57,51,45,46,52,53,97,55,46,57,55,54,32,55,46,57,55,54,32,48,32,48,32,49,32,46,52,53,32,49,46,48,56,56,108,45,46,57,53,46,51,49,51,97,55,46,48,50,51,32,55,46,48,50,51,32,48,32,48,32,48,45,46,49,55,57,45,46,52,56,51,122,109,46,53,51,32,50,46,53,48,55,97,54,46,57,57,49,32,54,46,57,57,49,32,48,32,48,32,48,45,46,49,45,49,46,48,50,53,108,46,57,56,53,45,46,49,55,99,46,48,54,55,46,51,56,54,46,49,48,54,46,55,55,56,46,49,49,54,32,49,46,49,55,108,45,49,32,46,48,50,53,122,109,45,46,49,51,49,32,49,46,53,51,56,99,46,48,51,51,45,46,49,55,46,48,54,45,46,51,51,57,46,48,56,49,45,46,53,49,108,46,57,57,51,46,49,50,51,97,55,46,57,53,55,32,55,46,57,53,55,32,48,32,48,32,49,45,46,50,51,32,49,46,49,53,53,108,45,46,57,54,52,45,46,50,54,55,99,46,48,52,54,45,46,49,54,53,46,48,56,54,45,46,51,51,50,46,49,50,45,46,53,48,49,122,109,45,46,57,53,50,32,50,46,51,55,57,99,46,49,56,52,45,46,50,57,46,51,52,54,45,46,53,57,52,46,52,56,54,45,46,57,48,56,108,46,57,49,52,46,52,48,53,99,45,46,49,54,46,51,54,45,46,51,52,53,46,55,48,54,45,46,53,53,53,32,49,46,48,51,56,108,45,46,56,52,53,45,46,53,51,53,122,109,45,46,57,54,52,32,49,46,50,48,53,99,46,49,50,50,45,46,49,50,50,46,50,51,57,45,46,50,52,56,46,51,53,45,46,51,55,56,108,46,55,53,56,46,54,53,51,97,56,46,48,55,51,32,56,46,48,55,51,32,48,32,48,32,49,45,46,52,48,49,46,52,51,50,108,45,46,55,48,55,45,46,55,48,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,49,97,55,32,55,32,48,32,49,32,48,32,52,46,57,53,32,49,49,46,57,53,108,46,55,48,55,46,55,48,55,65,56,46,48,48,49,32,56,46,48,48,49,32,48,32,49,32,49,32,56,32,48,118,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,53,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,53,46,50,49,108,51,46,50,52,56,32,49,46,56,53,54,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,54,46,56,54,56,108,45,51,46,53,45,50,65,46,53,46,53,32,48,32,48,32,49,32,55,32,57,86,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,52,48,54,32,51,46,51,52,50,65,53,46,53,51,32,53,46,53,51,32,48,32,48,32,49,32,56,32,50,99,50,46,54,57,32,48,32,52,46,57,50,51,32,50,32,53,46,49,54,54,32,52,46,53,55,57,67,49,52,46,55,53,56,32,54,46,56,48,52,32,49,54,32,56,46,49,51,55,32,49,54,32,57,46,55,55,51,32,49,54,32,49,49,46,53,54,57,32,49,52,46,53,48,50,32,49,51,32,49,50,46,54,56,55,32,49,51,72,51,46,55,56,49,67,49,46,55,48,56,32,49,51,32,48,32,49,49,46,51,54,54,32,48,32,57,46,51,49,56,99,48,45,49,46,55,54,51,32,49,46,50,54,54,45,51,46,50,50,51,32,50,46,57,52,50,45,51,46,53,57,51,46,49,52,51,45,46,56,54,51,46,54,57,56,45,49,46,55,50,51,32,49,46,52,54,52,45,50,46,51,56,51,122,109,46,54,53,51,46,55,53,55,99,45,46,55,53,55,46,54,53,51,45,49,46,49,53,51,32,49,46,52,52,45,49,46,49,53,51,32,50,46,48,53,54,118,46,52,52,56,108,45,46,52,52,53,46,48,52,57,67,50,46,48,54,52,32,54,46,56,48,53,32,49,32,55,46,57,53,50,32,49,32,57,46,51,49,56,32,49,32,49,48,46,55,56,53,32,50,46,50,51,32,49,50,32,51,46,55,56,49,32,49,50,104,56,46,57,48,54,67,49,51,46,57,56,32,49,50,32,49,53,32,49,48,46,57,56,56,32,49,53,32,57,46,55,55,51,99,48,45,49,46,50,49,54,45,49,46,48,50,45,50,46,50,50,56,45,50,46,51,49,51,45,50,46,50,50,56,104,45,46,53,118,45,46,53,67,49,50,46,49,56,56,32,52,46,56,50,53,32,49,48,46,51,50,56,32,51,32,56,32,51,97,52,46,53,51,32,52,46,53,51,32,48,32,48,32,48,45,50,46,57,52,49,32,49,46,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,65,114,114,111,119,68,111,119,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,54,52,54,32,49,48,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,50,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,46,53,32,57,46,50,57,51,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,51,46,55,57,51,76,54,46,51,53,52,32,56,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,50,32,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,52,48,54,32,51,46,51,52,50,65,53,46,53,51,32,53,46,53,51,32,48,32,48,32,49,32,56,32,50,99,50,46,54,57,32,48,32,52,46,57,50,51,32,50,32,53,46,49,54,54,32,52,46,53,55,57,67,49,52,46,55,53,56,32,54,46,56,48,52,32,49,54,32,56,46,49,51,55,32,49,54,32,57,46,55,55,51,32,49,54,32,49,49,46,53,54,57,32,49,52,46,53,48,50,32,49,51,32,49,50,46,54,56,55,32,49,51,72,51,46,55,56,49,67,49,46,55,48,56,32,49,51,32,48,32,49,49,46,51,54,54,32,48,32,57,46,51,49,56,99,48,45,49,46,55,54,51,32,49,46,50,54,54,45,51,46,50,50,51,32,50,46,57,52,50,45,51,46,53,57,51,46,49,52,51,45,46,56,54,51,46,54,57,56,45,49,46,55,50,51,32,49,46,52,54,52,45,50,46,51,56,51,122,109,46,54,53,51,46,55,53,55,99,45,46,55,53,55,46,54,53,51,45,49,46,49,53,51,32,49,46,52,52,45,49,46,49,53,51,32,50,46,48,53,54,118,46,52,52,56,108,45,46,52,52,53,46,48,52,57,67,50,46,48,54,52,32,54,46,56,48,53,32,49,32,55,46,57,53,50,32,49,32,57,46,51,49,56,32,49,32,49,48,46,55,56,53,32,50,46,50,51,32,49,50,32,51,46,55,56,49,32,49,50,104,56,46,57,48,54,67,49,51,46,57,56,32,49,50,32,49,53,32,49,48,46,57,56,56,32,49,53,32,57,46,55,55,51,99,48,45,49,46,50,49,54,45,49,46,48,50,45,50,46,50,50,56,45,50,46,51,49,51,45,50,46,50,50,56,104,45,46,53,118,45,46,53,67,49,50,46,49,56,56,32,52,46,56,50,53,32,49,48,46,51,50,56,32,51,32,56,32,51,97,52,46,53,51,32,52,46,53,51,32,48,32,48,32,48,45,50,46,57,52,49,32,49,46,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,65,114,114,111,119,68,111,119,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,50,97,53,46,53,51,32,53,46,53,51,32,48,32,48,32,48,45,51,46,53,57,52,32,49,46,51,52,50,99,45,46,55,54,54,46,54,54,45,49,46,51,50,49,32,49,46,53,50,45,49,46,52,54,52,32,50,46,51,56,51,67,49,46,50,54,54,32,54,46,48,57,53,32,48,32,55,46,53,53,53,32,48,32,57,46,51,49,56,32,48,32,49,49,46,51,54,54,32,49,46,55,48,56,32,49,51,32,51,46,55,56,49,32,49,51,104,56,46,57,48,54,67,49,52,46,53,48,50,32,49,51,32,49,54,32,49,49,46,53,55,32,49,54,32,57,46,55,55,51,99,48,45,49,46,54,51,54,45,49,46,50,52,50,45,50,46,57,54,57,45,50,46,56,51,52,45,51,46,49,57,52,67,49,50,46,57,50,51,32,51,46,57,57,57,32,49,48,46,54,57,32,50,32,56,32,50,122,109,50,46,51,53,52,32,54,46,56,53,52,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,50,45,50,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,57,46,50,57,51,86,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,51,46,55,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,65,114,114,111,119,85,112,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,54,52,54,32,53,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,54,46,55,48,55,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,54,46,55,48,55,76,54,46,51,53,52,32,55,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,52,48,54,32,51,46,51,52,50,65,53,46,53,51,32,53,46,53,51,32,48,32,48,32,49,32,56,32,50,99,50,46,54,57,32,48,32,52,46,57,50,51,32,50,32,53,46,49,54,54,32,52,46,53,55,57,67,49,52,46,55,53,56,32,54,46,56,48,52,32,49,54,32,56,46,49,51,55,32,49,54,32,57,46,55,55,51,32,49,54,32,49,49,46,53,54,57,32,49,52,46,53,48,50,32,49,51,32,49,50,46,54,56,55,32,49,51,72,51,46,55,56,49,67,49,46,55,48,56,32,49,51,32,48,32,49,49,46,51,54,54,32,48,32,57,46,51,49,56,99,48,45,49,46,55,54,51,32,49,46,50,54,54,45,51,46,50,50,51,32,50,46,57,52,50,45,51,46,53,57,51,46,49,52,51,45,46,56,54,51,46,54,57,56,45,49,46,55,50,51,32,49,46,52,54,52,45,50,46,51,56,51,122,109,46,54,53,51,46,55,53,55,99,45,46,55,53,55,46,54,53,51,45,49,46,49,53,51,32,49,46,52,52,45,49,46,49,53,51,32,50,46,48,53,54,118,46,52,52,56,108,45,46,52,52,53,46,48,52,57,67,50,46,48,54,52,32,54,46,56,48,53,32,49,32,55,46,57,53,50,32,49,32,57,46,51,49,56,32,49,32,49,48,46,55,56,53,32,50,46,50,51,32,49,50,32,51,46,55,56,49,32,49,50,104,56,46,57,48,54,67,49,51,46,57,56,32,49,50,32,49,53,32,49,48,46,57,56,56,32,49,53,32,57,46,55,55,51,99,48,45,49,46,50,49,54,45,49,46,48,50,45,50,46,50,50,56,45,50,46,51,49,51,45,50,46,50,50,56,104,45,46,53,118,45,46,53,67,49,50,46,49,56,56,32,52,46,56,50,53,32,49,48,46,51,50,56,32,51,32,56,32,51,97,52,46,53,51,32,52,46,53,51,32,48,32,48,32,48,45,50,46,57,52,49,32,49,46,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,65,114,114,111,119,85,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,50,97,53,46,53,51,32,53,46,53,51,32,48,32,48,32,48,45,51,46,53,57,52,32,49,46,51,52,50,99,45,46,55,54,54,46,54,54,45,49,46,51,50,49,32,49,46,53,50,45,49,46,52,54,52,32,50,46,51,56,51,67,49,46,50,54,54,32,54,46,48,57,53,32,48,32,55,46,53,53,53,32,48,32,57,46,51,49,56,32,48,32,49,49,46,51,54,54,32,49,46,55,48,56,32,49,51,32,51,46,55,56,49,32,49,51,104,56,46,57,48,54,67,49,52,46,53,48,50,32,49,51,32,49,54,32,49,49,46,53,55,32,49,54,32,57,46,55,55,51,99,48,45,49,46,54,51,54,45,49,46,50,52,50,45,50,46,57,54,57,45,50,46,56,51,52,45,51,46,49,57,52,67,49,50,46,57,50,51,32,51,46,57,57,57,32,49,48,46,54,57,32,50,32,56,32,50,122,109,50,46,51,53,52,32,53,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,54,46,55,48,55,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,54,46,55,48,55,76,54,46,51,53,52,32,55,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,50,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,50,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,67,104,101,99,107,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,51,53,52,32,54,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,32,56,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,52,48,54,32,51,46,51,52,50,65,53,46,53,51,32,53,46,53,51,32,48,32,48,32,49,32,56,32,50,99,50,46,54,57,32,48,32,52,46,57,50,51,32,50,32,53,46,49,54,54,32,52,46,53,55,57,67,49,52,46,55,53,56,32,54,46,56,48,52,32,49,54,32,56,46,49,51,55,32,49,54,32,57,46,55,55,51,32,49,54,32,49,49,46,53,54,57,32,49,52,46,53,48,50,32,49,51,32,49,50,46,54,56,55,32,49,51,72,51,46,55,56,49,67,49,46,55,48,56,32,49,51,32,48,32,49,49,46,51,54,54,32,48,32,57,46,51,49,56,99,48,45,49,46,55,54,51,32,49,46,50,54,54,45,51,46,50,50,51,32,50,46,57,52,50,45,51,46,53,57,51,46,49,52,51,45,46,56,54,51,46,54,57,56,45,49,46,55,50,51,32,49,46,52,54,52,45,50,46,51,56,51,122,109,46,54,53,51,46,55,53,55,99,45,46,55,53,55,46,54,53,51,45,49,46,49,53,51,32,49,46,52,52,45,49,46,49,53,51,32,50,46,48,53,54,118,46,52,52,56,108,45,46,52,52,53,46,48,52,57,67,50,46,48,54,52,32,54,46,56,48,53,32,49,32,55,46,57,53,50,32,49,32,57,46,51,49,56,32,49,32,49,48,46,55,56,53,32,50,46,50,51,32,49,50,32,51,46,55,56,49,32,49,50,104,56,46,57,48,54,67,49,51,46,57,56,32,49,50,32,49,53,32,49,48,46,57,56,56,32,49,53,32,57,46,55,55,51,99,48,45,49,46,50,49,54,45,49,46,48,50,45,50,46,50,50,56,45,50,46,51,49,51,45,50,46,50,50,56,104,45,46,53,118,45,46,53,67,49,50,46,49,56,56,32,52,46,56,50,53,32,49,48,46,51,50,56,32,51,32,56,32,51,97,52,46,53,51,32,52,46,53,51,32,48,32,48,32,48,45,50,46,57,52,49,32,49,46,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,67,104,101,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,50,97,53,46,53,51,32,53,46,53,51,32,48,32,48,32,48,45,51,46,53,57,52,32,49,46,51,52,50,99,45,46,55,54,54,46,54,54,45,49,46,51,50,49,32,49,46,53,50,45,49,46,52,54,52,32,50,46,51,56,51,67,49,46,50,54,54,32,54,46,48,57,53,32,48,32,55,46,53,53,53,32,48,32,57,46,51,49,56,32,48,32,49,49,46,51,54,54,32,49,46,55,48,56,32,49,51,32,51,46,55,56,49,32,49,51,104,56,46,57,48,54,67,49,52,46,53,48,50,32,49,51,32,49,54,32,49,49,46,53,55,32,49,54,32,57,46,55,55,51,99,48,45,49,46,54,51,54,45,49,46,50,52,50,45,50,46,57,54,57,45,50,46,56,51,52,45,51,46,49,57,52,67,49,50,46,57,50,51,32,51,46,57,57,57,32,49,48,46,54,57,32,50,32,56,32,50,122,109,50,46,51,53,52,32,52,46,56,53,52,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,32,56,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,68,111,119,110,108,111,97,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,52,48,54,32,49,46,51,52,50,65,53,46,53,51,32,53,46,53,51,32,48,32,48,32,49,32,56,32,48,99,50,46,54,57,32,48,32,52,46,57,50,51,32,50,32,53,46,49,54,54,32,52,46,53,55,57,67,49,52,46,55,53,56,32,52,46,56,48,52,32,49,54,32,54,46,49,51,55,32,49,54,32,55,46,55,55,51,32,49,54,32,57,46,53,54,57,32,49,52,46,53,48,50,32,49,49,32,49,50,46,54,56,55,32,49,49,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,46,54,56,56,67,49,51,46,57,55,57,32,49,48,32,49,53,32,56,46,57,56,56,32,49,53,32,55,46,55,55,51,99,48,45,49,46,50,49,54,45,49,46,48,50,45,50,46,50,50,56,45,50,46,51,49,51,45,50,46,50,50,56,104,45,46,53,118,45,46,53,67,49,50,46,49,56,56,32,50,46,56,50,53,32,49,48,46,51,50,56,32,49,32,56,32,49,97,52,46,53,51,32,52,46,53,51,32,48,32,48,32,48,45,50,46,57,52,49,32,49,46,49,99,45,46,55,53,55,46,54,53,50,45,49,46,49,53,51,32,49,46,52,51,56,45,49,46,49,53,51,32,50,46,48,53,53,118,46,52,52,56,108,45,46,52,52,53,46,48,52,57,67,50,46,48,54,52,32,52,46,56,48,53,32,49,32,53,46,57,53,50,32,49,32,55,46,51,49,56,32,49,32,56,46,55,56,53,32,50,46,50,51,32,49,48,32,51,46,55,56,49,32,49,48,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,51,46,55,56,49,67,49,46,55,48,56,32,49,49,32,48,32,57,46,51,54,54,32,48,32,55,46,51,49,56,99,48,45,49,46,55,54,51,32,49,46,50,54,54,45,51,46,50,50,51,32,50,46,57,52,50,45,51,46,53,57,51,46,49,52,51,45,46,56,54,51,46,54,57,56,45,49,46,55,50,51,32,49,46,52,54,52,45,50,46,51,56,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,54,52,54,32,49,53,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,51,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,46,53,32,49,52,46,50,57,51,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,56,46,55,57,51,108,45,50,46,49,52,54,45,50,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,108,51,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,68,111,119,110,108,111,97,100,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,48,97,53,46,53,51,32,53,46,53,51,32,48,32,48,32,48,45,51,46,53,57,52,32,49,46,51,52,50,99,45,46,55,54,54,46,54,54,45,49,46,51,50,49,32,49,46,53,50,45,49,46,52,54,52,32,50,46,51,56,51,67,49,46,50,54,54,32,52,46,48,57,53,32,48,32,53,46,53,53,53,32,48,32,55,46,51,49,56,32,48,32,57,46,51,54,54,32,49,46,55,48,56,32,49,49,32,51,46,55,56,49,32,49,49,72,55,46,53,86,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,49,104,52,46,49,56,56,67,49,52,46,53,48,50,32,49,49,32,49,54,32,57,46,53,55,32,49,54,32,55,46,55,55,51,99,48,45,49,46,54,51,54,45,49,46,50,52,50,45,50,46,57,54,57,45,50,46,56,51,52,45,51,46,49,57,52,67,49,50,46,57,50,51,32,49,46,57,57,57,32,49,48,46,54,57,32,48,32,56,32,48,122,109,45,46,51,53,52,32,49,53,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,51,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,46,53,32,49,52,46,50,57,51,86,49,49,104,45,49,118,51,46,50,57,51,108,45,50,46,49,52,54,45,50,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,108,51,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,52,48,54,32,51,46,51,52,50,65,53,46,53,51,32,53,46,53,51,32,48,32,48,32,49,32,56,32,50,99,50,46,54,57,32,48,32,52,46,57,50,51,32,50,32,53,46,49,54,54,32,52,46,53,55,57,67,49,52,46,55,53,56,32,54,46,56,48,52,32,49,54,32,56,46,49,51,55,32,49,54,32,57,46,55,55,51,32,49,54,32,49,49,46,53,54,57,32,49,52,46,53,48,50,32,49,51,32,49,50,46,54,56,55,32,49,51,72,51,46,55,56,49,67,49,46,55,48,56,32,49,51,32,48,32,49,49,46,51,54,54,32,48,32,57,46,51,49,56,99,48,45,49,46,55,54,51,32,49,46,50,54,54,45,51,46,50,50,51,32,50,46,57,52,50,45,51,46,53,57,51,46,49,52,51,45,46,56,54,51,46,54,57,56,45,49,46,55,50,51,32,49,46,52,54,52,45,50,46,51,56,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,77,105,110,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,52,48,54,32,51,46,51,52,50,65,53,46,53,51,32,53,46,53,51,32,48,32,48,32,49,32,56,32,50,99,50,46,54,57,32,48,32,52,46,57,50,51,32,50,32,53,46,49,54,54,32,52,46,53,55,57,67,49,52,46,55,53,56,32,54,46,56,48,52,32,49,54,32,56,46,49,51,55,32,49,54,32,57,46,55,55,51,32,49,54,32,49,49,46,53,54,57,32,49,52,46,53,48,50,32,49,51,32,49,50,46,54,56,55,32,49,51,72,51,46,55,56,49,67,49,46,55,48,56,32,49,51,32,48,32,49,49,46,51,54,54,32,48,32,57,46,51,49,56,99,48,45,49,46,55,54,51,32,49,46,50,54,54,45,51,46,50,50,51,32,50,46,57,52,50,45,51,46,53,57,51,46,49,52,51,45,46,56,54,51,46,54,57,56,45,49,46,55,50,51,32,49,46,52,54,52,45,50,46,51,56,51,122,109,46,54,53,51,46,55,53,55,99,45,46,55,53,55,46,54,53,51,45,49,46,49,53,51,32,49,46,52,52,45,49,46,49,53,51,32,50,46,48,53,54,118,46,52,52,56,108,45,46,52,52,53,46,48,52,57,67,50,46,48,54,52,32,54,46,56,48,53,32,49,32,55,46,57,53,50,32,49,32,57,46,51,49,56,32,49,32,49,48,46,55,56,53,32,50,46,50,51,32,49,50,32,51,46,55,56,49,32,49,50,104,56,46,57,48,54,67,49,51,46,57,56,32,49,50,32,49,53,32,49,48,46,57,56,56,32,49,53,32,57,46,55,55,51,99,48,45,49,46,50,49,54,45,49,46,48,50,45,50,46,50,50,56,45,50,46,51,49,51,45,50,46,50,50,56,104,45,46,53,118,45,46,53,67,49,50,46,49,56,56,32,52,46,56,50,53,32,49,48,46,51,50,56,32,51,32,56,32,51,97,52,46,53,51,32,52,46,53,51,32,48,32,48,32,48,45,50,46,57,52,49,32,49,46,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,77,105,110,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,50,97,53,46,53,51,32,53,46,53,51,32,48,32,48,32,48,45,51,46,53,57,52,32,49,46,51,52,50,99,45,46,55,54,54,46,54,54,45,49,46,51,50,49,32,49,46,53,50,45,49,46,52,54,52,32,50,46,51,56,51,67,49,46,50,54,54,32,54,46,48,57,53,32,48,32,55,46,53,53,53,32,48,32,57,46,51,49,56,32,48,32,49,49,46,51,54,54,32,49,46,55,48,56,32,49,51,32,51,46,55,56,49,32,49,51,104,56,46,57,48,54,67,49,52,46,53,48,50,32,49,51,32,49,54,32,49,49,46,53,55,32,49,54,32,57,46,55,55,51,99,48,45,49,46,54,51,54,45,49,46,50,52,50,45,50,46,57,54,57,45,50,46,56,51,52,45,51,46,49,57,52,67,49,50,46,57,50,51,32,51,46,57,57,57,32,49,48,46,54,57,32,50,32,56,32,50,122,77,54,32,55,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,80,108,117,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,46,53,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,86,49,48,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,46,53,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,52,48,54,32,51,46,51,52,50,65,53,46,53,51,32,53,46,53,51,32,48,32,48,32,49,32,56,32,50,99,50,46,54,57,32,48,32,52,46,57,50,51,32,50,32,53,46,49,54,54,32,52,46,53,55,57,67,49,52,46,55,53,56,32,54,46,56,48,52,32,49,54,32,56,46,49,51,55,32,49,54,32,57,46,55,55,51,32,49,54,32,49,49,46,53,54,57,32,49,52,46,53,48,50,32,49,51,32,49,50,46,54,56,55,32,49,51,72,51,46,55,56,49,67,49,46,55,48,56,32,49,51,32,48,32,49,49,46,51,54,54,32,48,32,57,46,51,49,56,99,48,45,49,46,55,54,51,32,49,46,50,54,54,45,51,46,50,50,51,32,50,46,57,52,50,45,51,46,53,57,51,46,49,52,51,45,46,56,54,51,46,54,57,56,45,49,46,55,50,51,32,49,46,52,54,52,45,50,46,51,56,51,122,109,46,54,53,51,46,55,53,55,99,45,46,55,53,55,46,54,53,51,45,49,46,49,53,51,32,49,46,52,52,45,49,46,49,53,51,32,50,46,48,53,54,118,46,52,52,56,108,45,46,52,52,53,46,48,52,57,67,50,46,48,54,52,32,54,46,56,48,53,32,49,32,55,46,57,53,50,32,49,32,57,46,51,49,56,32,49,32,49,48,46,55,56,53,32,50,46,50,51,32,49,50,32,51,46,55,56,49,32,49,50,104,56,46,57,48,54,67,49,51,46,57,56,32,49,50,32,49,53,32,49,48,46,57,56,56,32,49,53,32,57,46,55,55,51,99,48,45,49,46,50,49,54,45,49,46,48,50,45,50,46,50,50,56,45,50,46,51,49,51,45,50,46,50,50,56,104,45,46,53,118,45,46,53,67,49,50,46,49,56,56,32,52,46,56,50,53,32,49,48,46,51,50,56,32,51,32,56,32,51,97,52,46,53,51,32,52,46,53,51,32,48,32,48,32,48,45,50,46,57,52,49,32,49,46,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,80,108,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,80,108,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,50,97,53,46,53,51,32,53,46,53,51,32,48,32,48,32,48,45,51,46,53,57,52,32,49,46,51,52,50,99,45,46,55,54,54,46,54,54,45,49,46,51,50,49,32,49,46,53,50,45,49,46,52,54,52,32,50,46,51,56,51,67,49,46,50,54,54,32,54,46,48,57,53,32,48,32,55,46,53,53,53,32,48,32,57,46,51,49,56,32,48,32,49,49,46,51,54,54,32,49,46,55,48,56,32,49,51,32,51,46,55,56,49,32,49,51,104,56,46,57,48,54,67,49,52,46,53,48,50,32,49,51,32,49,54,32,49,49,46,53,55,32,49,54,32,57,46,55,55,51,99,48,45,49,46,54,51,54,45,49,46,50,52,50,45,50,46,57,54,57,45,50,46,56,51,52,45,51,46,49,57,52,67,49,50,46,57,50,51,32,51,46,57,57,57,32,49,48,46,54,57,32,50,32,56,32,50,122,109,46,53,32,52,118,49,46,53,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,86,49,48,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,46,53,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,54,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,83,108,97,115,104,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,46,49,49,50,32,53,46,49,49,50,97,51,46,49,50,53,32,51,46,49,50,53,32,48,32,48,32,48,45,46,49,55,46,54,49,51,67,49,46,50,54,54,32,54,46,48,57,53,32,48,32,55,46,53,53,53,32,48,32,57,46,51,49,56,32,48,32,49,49,46,51,54,54,32,49,46,55,48,56,32,49,51,32,51,46,55,56,49,32,49,51,72,49,49,108,45,49,45,49,72,51,46,55,56,49,67,50,46,50,51,49,32,49,50,32,49,32,49,48,46,55,56,53,32,49,32,57,46,51,49,56,99,48,45,49,46,51,54,53,32,49,46,48,54,52,45,50,46,53,49,51,32,50,46,52,54,45,50,46,54,54,54,108,46,52,52,54,45,46,48,53,118,45,46,52,52,55,99,48,45,46,48,55,53,46,48,48,54,45,46,49,53,50,46,48,49,56,45,46,50,51,49,108,45,46,56,49,50,45,46,56,49,50,122,109,50,46,53,53,45,49,46,52,53,108,45,46,55,50,53,45,46,55,50,53,65,53,46,53,49,50,32,53,46,53,49,50,32,48,32,48,32,49,32,56,32,50,99,50,46,54,57,32,48,32,52,46,57,50,51,32,50,32,53,46,49,54,54,32,52,46,53,55,57,67,49,52,46,55,53,56,32,54,46,56,48,52,32,49,54,32,56,46,49,51,55,32,49,54,32,57,46,55,55,51,97,51,46,50,32,51,46,50,32,48,32,48,32,49,45,49,46,53,49,54,32,50,46,55,49,49,108,45,46,55,51,51,45,46,55,51,51,67,49,52,46,52,57,56,32,49,49,46,51,55,56,32,49,53,32,49,48,46,54,50,54,32,49,53,32,57,46,55,55,51,99,48,45,49,46,50,49,54,45,49,46,48,50,45,50,46,50,50,56,45,50,46,51,49,51,45,50,46,50,50,56,104,45,46,53,118,45,46,53,67,49,50,46,49,56,56,32,52,46,56,50,53,32,49,48,46,51,50,56,32,51,32,56,32,51,99,45,46,56,55,53,32,48,45,49,46,54,55,56,46,50,54,45,50,46,51,51,57,46,54,54,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,51,46,54,52,54,32,49,52,46,51,53,52,108,45,49,50,45,49,50,32,46,55,48,56,45,46,55,48,56,32,49,50,32,49,50,45,46,55,48,55,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,83,108,97,115,104,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,46,49,49,50,32,53,46,49,49,50,97,51,46,49,50,53,32,51,46,49,50,53,32,48,32,48,32,48,45,46,49,55,46,54,49,51,67,49,46,50,54,54,32,54,46,48,57,53,32,48,32,55,46,53,53,53,32,48,32,57,46,51,49,56,32,48,32,49,49,46,51,54,54,32,49,46,55,48,56,32,49,51,32,51,46,55,56,49,32,49,51,72,49,49,76,51,46,49,49,50,32,53,46,49,49,50,122,109,49,49,46,51,55,50,32,55,46,51,55,50,76,52,46,57,51,55,32,50,46,57,51,55,65,53,46,53,49,50,32,53,46,53,49,50,32,48,32,48,32,49,32,56,32,50,99,50,46,54,57,32,48,32,52,46,57,50,51,32,50,32,53,46,49,54,54,32,52,46,53,55,57,67,49,52,46,55,53,56,32,54,46,56,48,52,32,49,54,32,56,46,49,51,55,32,49,54,32,57,46,55,55,51,97,51,46,50,32,51,46,50,32,48,32,48,32,49,45,49,46,53,49,54,32,50,46,55,49,49,122,109,45,46,56,51,56,32,49,46,56,55,108,45,49,50,45,49,50,32,46,55,48,56,45,46,55,48,56,32,49,50,32,49,50,45,46,55,48,55,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,85,112,108,111,97,100,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,52,46,52,48,54,32,49,46,51,52,50,65,53,46,53,51,32,53,46,53,51,32,48,32,48,32,49,32,56,32,48,99,50,46,54,57,32,48,32,52,46,57,50,51,32,50,32,53,46,49,54,54,32,52,46,53,55,57,67,49,52,46,55,53,56,32,52,46,56,48,52,32,49,54,32,54,46,49,51,55,32,49,54,32,55,46,55,55,51,32,49,54,32,57,46,53,54,57,32,49,52,46,53,48,50,32,49,49,32,49,50,46,54,56,55,32,49,49,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,46,54,56,56,67,49,51,46,57,55,57,32,49,48,32,49,53,32,56,46,57,56,56,32,49,53,32,55,46,55,55,51,99,48,45,49,46,50,49,54,45,49,46,48,50,45,50,46,50,50,56,45,50,46,51,49,51,45,50,46,50,50,56,104,45,46,53,118,45,46,53,67,49,50,46,49,56,56,32,50,46,56,50,53,32,49,48,46,51,50,56,32,49,32,56,32,49,97,52,46,53,51,32,52,46,53,51,32,48,32,48,32,48,45,50,46,57,52,49,32,49,46,49,99,45,46,55,53,55,46,54,53,50,45,49,46,49,53,51,32,49,46,52,51,56,45,49,46,49,53,51,32,50,46,48,53,53,118,46,52,52,56,108,45,46,52,52,53,46,48,52,57,67,50,46,48,54,52,32,52,46,56,48,53,32,49,32,53,46,57,53,50,32,49,32,55,46,51,49,56,32,49,32,56,46,55,56,53,32,50,46,50,51,32,49,48,32,51,46,55,56,49,32,49,48,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,51,46,55,56,49,67,49,46,55,48,56,32,49,49,32,48,32,57,46,51,54,54,32,48,32,55,46,51,49,56,99,48,45,49,46,55,54,51,32,49,46,50,54,54,45,51,46,50,50,51,32,50,46,57,52,50,45,51,46,53,57,51,46,49,52,51,45,46,56,54,51,46,54,57,56,45,49,46,55,50,51,32,49,46,52,54,52,45,50,46,51,56,51,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,54,52,54,32,52,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,53,46,55,48,55,86,49,52,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,53,46,55,48,55,76,53,46,51,53,52,32,55,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,51,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,108,111,117,100,85,112,108,111,97,100,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,48,97,53,46,53,51,32,53,46,53,51,32,48,32,48,32,48,45,51,46,53,57,52,32,49,46,51,52,50,99,45,46,55,54,54,46,54,54,45,49,46,51,50,49,32,49,46,53,50,45,49,46,52,54,52,32,50,46,51,56,51,67,49,46,50,54,54,32,52,46,48,57,53,32,48,32,53,46,53,53,53,32,48,32,55,46,51,49,56,32,48,32,57,46,51,54,54,32,49,46,55,48,56,32,49,49,32,51,46,55,56,49,32,49,49,72,55,46,53,86,53,46,55,48,55,76,53,46,51,53,52,32,55,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,53,46,55,48,55,86,49,49,104,52,46,49,56,56,67,49,52,46,53,48,50,32,49,49,32,49,54,32,57,46,53,55,32,49,54,32,55,46,55,55,51,99,48,45,49,46,54,51,54,45,49,46,50,52,50,45,50,46,57,54,57,45,50,46,56,51,52,45,51,46,49,57,52,67,49,50,46,57,50,51,32,49,46,57,57,57,32,49,48,46,54,57,32,48,32,56,32,48,122,109,45,46,53,32,49,52,46,53,86,49,49,104,49,118,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,111,100,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,111,100,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,56,53,52,32,52,46,56,53,52,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,45,46,55,48,56,108,45,51,46,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,56,108,51,46,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,76,50,46,55,48,55,32,56,108,51,46,49,52,55,45,51,46,49,52,54,122,109,52,46,50,57,50,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,108,51,46,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,46,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,51,46,50,57,51,32,56,108,45,51,46,49,52,55,45,51,46,49,52,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,111,100,101,83,108,97,115,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,111,100,101,83,108,97,115,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,52,55,56,32,49,46,54,52,55,97,46,53,46,53,32,48,32,49,32,48,45,46,57,53,54,45,46,50,57,52,108,45,52,32,49,51,97,46,53,46,53,32,48,32,48,32,48,32,46,57,53,54,46,50,57,52,108,52,45,49,51,122,77,52,46,56,53,52,32,52,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,76,49,46,55,48,55,32,56,108,51,46,49,52,55,32,51,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,51,46,53,45,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,51,46,53,45,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,109,54,46,50,57,50,32,48,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,56,76,49,52,46,50,57,51,32,56,108,45,51,46,49,52,55,32,51,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,108,51,46,53,45,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,51,46,53,45,51,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,111,100,101,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,111,100,101,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,46,56,53,52,32,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,76,52,46,50,48,55,32,56,108,50,46,54,52,55,32,50,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,109,50,46,50,57,50,32,48,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,56,76,49,49,46,55,57,51,32,56,108,45,50,46,54,52,55,32,50,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,111,108,108,101,99,116,105,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,122,109,50,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,122,77,48,32,49,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,46,53,104,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,54,32,49,51,86,54,97,49,46,53,32,49,46,53,32,48,32,48,32,48,45,49,46,53,45,49,46,53,104,45,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,54,118,55,122,109,49,46,53,46,53,65,46,53,46,53,32,48,32,48,32,49,32,49,32,49,51,86,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,111,108,108,101,99,116,105,111,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,46,53,104,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,54,32,49,51,86,54,97,49,46,53,32,49,46,53,32,48,32,48,32,48,45,49,46,53,45,49,46,53,104,45,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,54,118,55,122,77,50,32,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,49,65,46,53,46,53,32,48,32,48,32,48,32,50,32,51,122,109,50,45,50,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,55,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,55,65,46,53,46,53,32,48,32,48,32,48,32,52,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,111,108,108,101,99,116,105,111,110,80,108,97,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,49,65,46,53,46,53,32,48,32,48,32,48,32,50,32,51,122,109,50,45,50,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,55,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,55,65,46,53,46,53,32,48,32,48,32,48,32,52,32,49,122,109,50,46,55,54,53,32,53,46,53,55,54,65,46,53,46,53,32,48,32,48,32,48,32,54,32,55,118,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,54,53,46,52,50,52,108,52,45,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,56,52,56,108,45,52,45,50,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,49,52,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,51,86,54,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,45,49,46,53,104,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,54,118,55,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,51,122,109,49,51,45,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,54,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,51,65,46,53,46,53,32,48,32,48,32,48,32,49,32,54,118,55,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,111,108,108,101,99,116,105,111,110,80,108,97,121,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,122,109,50,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,122,77,48,32,49,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,46,53,104,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,54,32,49,51,86,54,97,49,46,53,32,49,46,53,32,48,32,48,32,48,45,49,46,53,45,49,46,53,104,45,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,54,118,55,122,109,54,46,50,53,56,45,54,46,52,51,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,48,55,46,48,49,51,108,52,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,56,52,56,108,45,52,32,50,46,53,65,46,53,46,53,32,48,32,48,32,49,32,54,32,49,50,86,55,97,46,53,46,53,32,48,32,48,32,49,32,46,50,53,56,45,46,52,51,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,111,108,117,109,110,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,111,108,117,109,110,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,52,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,122,109,56,46,53,32,48,118,56,72,49,53,86,50,72,56,46,53,122,109,48,32,57,118,51,72,49,53,118,45,51,72,56,46,53,122,109,45,49,45,57,72,49,118,51,104,54,46,53,86,50,122,77,49,32,49,52,104,54,46,53,86,54,72,49,118,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,111,108,117,109,110,115,71,97,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,111,108,117,109,110,115,71,97,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,49,118,51,72,49,86,49,104,53,122,77,49,32,48,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,51,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,53,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,49,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,49,122,109,49,52,32,49,50,118,51,104,45,53,118,45,51,104,53,122,109,45,53,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,51,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,53,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,53,122,77,54,32,56,118,55,72,49,86,56,104,53,122,77,49,32,55,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,55,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,53,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,56,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,49,122,109,49,52,45,54,118,55,104,45,53,86,49,104,53,122,109,45,53,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,55,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,53,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,49,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,111,109,109,97,110,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,111,109,109,97,110,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,32,51,46,53,86,53,72,51,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,122,77,54,32,53,86,51,46,53,65,50,46,53,32,50,46,53,32,48,32,49,32,48,32,51,46,53,32,54,72,53,118,52,72,51,46,53,65,50,46,53,32,50,46,53,32,48,32,49,32,48,32,54,32,49,50,46,53,86,49,49,104,52,118,49,46,53,97,50,46,53,32,50,46,53,32,48,32,49,32,48,32,50,46,53,45,50,46,53,72,49,49,86,54,104,49,46,53,65,50,46,53,32,50,46,53,32,48,32,49,32,48,32,49,48,32,51,46,53,86,53,72,54,122,109,52,32,49,118,52,72,54,86,54,104,52,122,109,49,45,49,86,51,46,53,65,49,46,53,32,49,46,53,32,48,32,49,32,49,32,49,50,46,53,32,53,72,49,49,122,109,48,32,54,104,49,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,49,46,53,32,49,46,53,86,49,49,122,109,45,54,32,48,118,49,46,53,65,49,46,53,32,49,46,53,32,48,32,49,32,49,32,51,46,53,32,49,49,72,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,111,109,112,97,115,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,111,109,112,97,115,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,46,48,49,54,97,55,46,53,32,55,46,53,32,48,32,48,32,48,32,49,46,57,54,50,45,49,52,46,55,52,65,49,32,49,32,48,32,48,32,48,32,57,32,48,72,55,97,49,32,49,32,48,32,48,32,48,45,46,57,54,50,32,49,46,50,55,54,65,55,46,53,32,55,46,53,32,48,32,48,32,48,32,56,32,49,54,46,48,49,54,122,109,54,46,53,45,55,46,53,97,54,46,53,32,54,46,53,32,48,32,49,32,49,45,49,51,32,48,32,54,46,53,32,54,46,53,32,48,32,48,32,49,32,49,51,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,46,57,52,32,55,46,52,52,108,52,46,57,53,45,50,46,56,51,45,50,46,56,51,32,52,46,57,53,45,52,46,57,52,57,32,50,46,56,51,32,50,46,56,50,56,45,52,46,57,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,111,109,112,97,115,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,111,109,112,97,115,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,53,46,53,32,56,46,53,49,54,97,55,46,53,32,55,46,53,32,48,32,49,32,49,45,57,46,52,54,50,45,55,46,50,52,65,49,32,49,32,48,32,48,32,49,32,55,32,48,104,50,97,49,32,49,32,48,32,48,32,49,32,46,57,54,50,32,49,46,50,55,54,32,55,46,53,48,51,32,55,46,53,48,51,32,48,32,48,32,49,32,53,46,53,51,56,32,55,46,50,52,122,109,45,51,46,54,49,45,51,46,57,48,53,76,54,46,57,52,32,55,46,52,51,57,32,52,46,49,49,32,49,50,46,51,57,108,52,46,57,53,45,50,46,56,50,56,32,50,46,56,50,56,45,52,46,57,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,111,110,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,111,110,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,48,51,32,49,46,56,56,99,46,50,53,50,45,49,46,48,49,32,49,46,54,56,56,45,49,46,48,49,32,49,46,57,52,32,48,108,50,46,57,48,53,32,49,49,46,54,50,72,49,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,46,49,50,53,76,55,46,48,51,32,49,46,56,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,111,110,101,83,116,114,105,112,101,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,111,110,101,83,116,114,105,112,101,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,57,55,32,52,46,56,56,108,46,57,53,51,32,51,46,56,49,49,67,49,48,46,49,53,56,32,56,46,56,55,56,32,57,46,49,52,32,57,32,56,32,57,99,45,49,46,49,52,32,48,45,50,46,49,53,57,45,46,49,50,50,45,50,46,57,50,51,45,46,51,48,57,76,54,46,48,51,32,52,46,56,56,67,54,46,54,51,53,32,52,46,57,53,55,32,55,46,51,32,53,32,56,32,53,115,49,46,51,54,53,45,46,48,52,51,32,49,46,57,55,45,46,49,50,122,109,45,46,50,52,53,45,46,57,55,56,76,56,46,57,55,46,56,56,67,56,46,55,49,56,45,46,49,51,32,55,46,50,56,50,45,46,49,51,32,55,46,48,51,46,56,56,76,54,46,50,55,52,32,51,46,57,67,54,46,56,32,51,46,57,54,53,32,55,46,51,56,50,32,52,32,56,32,52,99,46,54,49,56,32,48,32,49,46,50,45,46,48,51,54,32,49,46,55,50,53,45,46,48,57,56,122,109,52,46,51,57,54,32,56,46,54,49,51,97,46,53,46,53,32,48,32,48,32,49,32,46,48,51,55,46,57,54,108,45,54,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,51,49,54,32,48,108,45,54,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,48,51,55,45,46,57,54,108,50,46,51,57,49,45,46,53,57,56,46,53,54,53,45,50,46,50,53,55,99,46,56,54,50,46,50,49,50,32,49,46,57,54,52,46,51,51,57,32,51,46,49,54,53,46,51,51,57,115,50,46,51,48,51,45,46,49,50,55,32,51,46,49,54,53,45,46,51,51,57,108,46,53,54,53,32,50,46,50,53,55,32,50,46,51,57,49,46,53,57,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,111,110,116,114,111,108,108,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,111,110,116,114,111,108,108,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,53,32,54,46,48,50,55,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,109,45,49,46,53,32,49,46,53,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,32,46,53,46,53,32,48,32,48,32,48,32,48,32,49,122,109,50,46,53,45,46,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,109,45,49,46,53,32,49,46,53,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,32,46,53,46,53,32,48,32,48,32,48,32,48,32,49,122,109,45,54,46,53,45,51,104,49,118,49,104,49,118,49,104,45,49,118,49,104,45,49,118,45,49,104,45,49,118,45,49,104,49,118,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,48,53,49,32,51,46,50,54,97,46,53,46,53,32,48,32,48,32,49,32,46,51,53,52,45,46,54,49,51,108,49,46,57,51,50,45,46,53,49,56,97,46,53,46,53,32,48,32,48,32,49,32,46,54,50,46,51,57,99,46,54,53,53,45,46,48,55,57,32,49,46,51,53,45,46,49,49,55,32,50,46,48,52,51,45,46,49,49,55,46,55,50,32,48,32,49,46,52,52,51,46,48,52,49,32,50,46,49,50,46,49,50,54,97,46,53,46,53,32,48,32,48,32,49,32,46,54,50,50,45,46,51,57,57,108,49,46,57,51,50,46,53,49,56,97,46,53,46,53,32,48,32,48,32,49,32,46,51,48,54,46,55,50,57,99,46,49,52,46,48,57,46,50,54,54,46,49,57,46,51,55,51,46,50,57,55,46,52,48,56,46,52,48,56,46,55,56,32,49,46,48,53,32,49,46,48,57,53,32,49,46,55,55,50,46,51,50,46,55,51,51,46,53,57,57,32,49,46,53,57,49,46,56,48,53,32,50,46,52,54,54,46,50,48,54,46,56,55,53,46,51,52,32,49,46,55,56,46,51,54,52,32,50,46,54,48,54,46,48,50,52,46,56,49,54,45,46,48,53,57,32,49,46,54,48,50,45,46,51,50,56,32,50,46,50,49,97,49,46,52,50,32,49,46,52,50,32,48,32,48,32,49,45,49,46,52,52,53,46,56,51,99,45,46,54,51,54,45,46,48,54,55,45,49,46,49,49,53,45,46,51,57,52,45,49,46,53,49,51,45,46,55,55,51,45,46,50,52,53,45,46,50,51,50,45,46,52,57,54,45,46,53,50,54,45,46,55,51,57,45,46,56,48,56,45,46,49,50,54,45,46,49,52,56,45,46,50,53,45,46,50,57,50,45,46,51,54,56,45,46,52,50,51,45,46,55,50,56,45,46,56,48,52,45,49,46,53,57,55,45,49,46,53,50,55,45,51,46,50,50,52,45,49,46,53,50,55,45,49,46,54,50,55,32,48,45,50,46,52,57,54,46,55,50,51,45,51,46,50,50,52,32,49,46,53,50,55,45,46,49,49,57,46,49,51,49,45,46,50,52,50,46,50,55,53,45,46,51,54,56,46,52,50,51,45,46,50,52,51,46,50,56,50,45,46,52,57,52,46,53,55,53,45,46,55,51,57,46,56,48,56,45,46,51,57,56,46,51,56,45,46,56,55,55,46,55,48,54,45,49,46,53,49,51,46,55,55,51,97,49,46,52,50,32,49,46,52,50,32,48,32,48,32,49,45,49,46,52,52,53,45,46,56,51,99,45,46,50,55,45,46,54,48,56,45,46,51,53,50,45,49,46,51,57,53,45,46,51,50,57,45,50,46,50,49,46,48,50,52,45,46,56,50,54,46,49,54,45,49,46,55,51,46,51,54,53,45,50,46,54,48,54,46,50,48,54,45,46,56,55,53,46,52,56,54,45,49,46,55,51,51,46,56,48,53,45,50,46,52,54,54,46,51,49,53,45,46,55,50,50,46,54,56,55,45,49,46,51,54,52,32,49,46,48,57,52,45,49,46,55,55,50,97,50,46,51,52,32,50,46,51,52,32,48,32,48,32,49,32,46,52,51,51,45,46,51,51,53,46,53,48,52,46,53,48,52,32,48,32,48,32,49,45,46,48,50,56,45,46,48,55,57,122,109,50,46,48,51,54,46,52,49,50,99,45,46,56,55,55,46,49,56,53,45,49,46,52,54,57,46,52,52,51,45,49,46,55,51,51,46,55,48,56,45,46,50,55,54,46,50,55,54,45,46,53,56,55,46,55,56,51,45,46,56,56,53,32,49,46,52,54,53,97,49,51,46,55,52,56,32,49,51,46,55,52,56,32,48,32,48,32,48,45,46,55,52,56,32,50,46,50,57,53,32,49,50,46,51,53,49,32,49,50,46,51,53,49,32,48,32,48,32,48,45,46,51,51,57,32,50,46,52,48,54,99,45,46,48,50,50,46,55,53,53,46,48,54,50,32,49,46,51,54,56,46,50,52,51,32,49,46,55,55,54,97,46,52,50,46,52,50,32,48,32,48,32,48,32,46,52,50,54,46,50,52,99,46,51,50,55,45,46,48,51,52,46,54,49,45,46,49,57,57,46,57,50,57,45,46,53,48,50,46,50,49,50,45,46,50,48,50,46,52,45,46,52,50,51,46,54,49,53,45,46,54,55,52,46,49,51,51,45,46,49,53,54,46,50,55,54,45,46,51,50,51,46,52,52,45,46,53,48,52,67,52,46,56,54,49,32,57,46,57,54,57,32,53,46,57,55,56,32,57,46,48,50,55,32,56,32,57,46,48,50,55,115,51,46,49,51,57,46,57,52,50,32,51,46,57,54,53,32,49,46,56,53,53,99,46,49,54,52,46,49,56,49,46,51,48,55,46,51,52,56,46,52,52,46,53,48,52,46,50,49,52,46,50,53,49,46,52,48,51,46,52,55,50,46,54,49,53,46,54,55,52,46,51,49,56,46,51,48,51,46,54,48,49,46,52,54,56,46,57,50,57,46,53,48,51,97,46,52,50,46,52,50,32,48,32,48,32,48,32,46,52,50,54,45,46,50,52,49,99,46,49,56,45,46,52,48,56,46,50,54,53,45,49,46,48,50,46,50,52,51,45,49,46,55,55,54,97,49,50,46,51,53,52,32,49,50,46,51,53,52,32,48,32,48,32,48,45,46,51,51,57,45,50,46,52,48,54,32,49,51,46,55,53,51,32,49,51,46,55,53,51,32,48,32,48,32,48,45,46,55,52,56,45,50,46,50,57,53,99,45,46,50,57,56,45,46,54,56,50,45,46,54,49,45,49,46,49,57,45,46,56,56,53,45,49,46,52,54,53,45,46,50,54,52,45,46,50,54,53,45,46,56,53,54,45,46,53,50,51,45,49,46,55,51,51,45,46,55,48,56,45,46,56,53,45,46,49,55,57,45,49,46,56,55,55,45,46,50,55,45,50,46,57,49,51,45,46,50,55,45,49,46,48,51,54,32,48,45,50,46,48,54,51,46,48,57,49,45,50,46,57,49,51,46,50,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,112,117,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,112,117,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,50,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,49,52,32,52,46,53,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,52,118,49,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,52,118,49,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,52,118,49,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,52,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,50,46,53,32,50,46,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,52,104,45,49,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,52,104,45,49,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,52,104,45,49,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,52,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,50,32,49,49,46,53,72,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,50,118,45,49,72,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,50,118,45,49,72,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,50,118,45,49,72,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,50,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,52,46,53,32,50,86,46,53,65,46,53,46,53,32,48,32,48,32,49,32,53,32,48,122,109,45,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,32,52,46,53,118,55,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,52,46,53,32,49,51,104,55,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,118,45,55,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,46,53,32,51,104,45,55,122,77,53,32,54,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,54,46,53,32,53,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,49,32,54,46,53,118,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,49,49,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,32,57,46,53,118,45,51,122,77,54,46,53,32,54,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,112,117,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,112,117,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,54,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,50,65,50,46,53,32,50,46,53,32,48,32,48,32,48,32,50,32,52,46,53,72,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,72,50,118,49,72,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,72,50,118,49,72,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,72,50,118,49,72,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,72,50,65,50,46,53,32,50,46,53,32,48,32,48,32,48,32,52,46,53,32,49,52,118,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,49,52,104,49,118,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,49,52,104,49,118,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,49,52,104,49,118,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,49,52,97,50,46,53,32,50,46,53,32,48,32,48,32,48,32,50,46,53,45,50,46,53,104,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,49,52,118,45,49,104,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,49,52,118,45,49,104,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,49,52,118,45,49,104,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,49,52,65,50,46,53,32,50,46,53,32,48,32,48,32,48,32,49,49,46,53,32,50,86,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,50,104,45,49,86,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,50,104,45,49,86,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,50,104,45,49,86,46,53,122,109,49,32,52,46,53,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,49,32,54,46,53,118,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,49,49,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,32,57,46,53,118,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,54,46,53,32,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,114,101,100,105,116,67,97,114,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,104,49,52,86,52,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,109,49,51,32,52,72,49,118,53,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,49,48,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,49,51,32,50,118,53,72,49,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,122,109,45,49,32,57,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,49,104,49,52,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,53,72,48,86,52,122,109,49,49,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,50,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,50,122,77,48,32,49,49,118,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,118,45,49,72,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,51,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,51,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,51,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,122,109,50,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,50,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,50,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,122,109,51,32,48,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,122,109,51,32,48,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,122,109,51,32,48,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,114,101,100,105,116,67,97,114,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,72,48,86,52,122,109,48,32,51,118,53,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,55,72,48,122,109,51,32,50,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,49,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,114,111,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,114,111,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,46,53,65,46,53,46,53,32,48,32,48,32,49,32,52,32,49,118,49,51,104,49,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,118,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,50,72,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,52,72,49,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,86,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,50,46,53,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,56,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,52,72,54,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,117,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,117,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,104,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,52,46,53,118,55,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,46,53,53,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,50,46,52,53,32,50,104,45,56,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,49,32,49,50,46,53,86,50,122,109,49,51,32,49,48,104,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,55,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,49,52,118,56,122,77,49,51,32,50,72,50,118,49,48,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,46,53,32,49,52,104,56,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,86,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,117,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,117,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,104,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,52,46,53,118,55,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,46,53,53,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,50,46,52,53,32,50,104,45,56,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,49,32,49,50,46,53,86,50,122,109,49,51,32,49,48,104,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,55,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,49,52,118,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,117,112,83,116,114,97,119,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,117,112,83,116,114,97,119,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,46,57,54,52,32,49,46,49,56,97,46,53,46,53,32,48,32,48,32,49,45,46,50,55,56,46,54,53,108,45,50,46,50,53,53,46,57,48,50,45,46,52,54,50,32,50,46,48,56,99,46,51,55,53,46,48,57,54,46,55,49,52,46,50,49,54,46,57,55,49,46,51,54,56,46,50,50,56,46,49,51,53,46,53,54,46,51,57,54,46,53,54,46,56,50,32,48,32,46,48,52,54,45,46,48,48,52,46,48,57,45,46,48,49,49,46,49,51,50,108,45,46,57,53,53,32,57,46,48,54,56,97,49,46,50,56,32,49,46,50,56,32,48,32,48,32,49,45,46,53,50,52,46,57,51,99,45,46,52,56,56,46,51,52,45,49,46,52,57,52,46,56,55,45,51,46,48,49,46,56,55,45,49,46,53,49,54,32,48,45,50,46,53,50,50,45,46,53,51,45,51,46,48,49,45,46,56,55,97,49,46,50,56,32,49,46,50,56,32,48,32,48,32,49,45,46,53,50,52,45,46,57,51,76,51,46,53,49,32,54,46,49,51,50,65,46,55,56,46,55,56,32,48,32,48,32,49,32,51,46,53,32,54,99,48,45,46,52,50,52,46,51,51,50,45,46,54,56,53,46,53,54,45,46,56,50,46,50,54,50,45,46,49,53,52,46,54,48,55,45,46,50,55,54,46,57,57,45,46,51,55,50,67,53,46,56,50,52,32,52,46,54,49,52,32,54,46,56,54,55,32,52,46,53,32,56,32,52,46,53,99,46,55,49,50,32,48,32,49,46,51,56,57,46,48,52,53,32,49,46,57,56,53,46,49,50,55,108,46,53,50,55,45,50,46,51,55,97,46,53,46,53,32,48,32,48,32,49,32,46,51,48,50,45,46,51,53,53,108,50,46,53,45,49,97,46,53,46,53,32,48,32,48,32,49,32,46,54,53,46,50,55,57,122,77,57,46,55,54,56,32,53,46,54,48,56,65,49,51,46,57,57,49,32,49,51,46,57,57,49,32,48,32,48,32,48,32,56,32,53,46,53,99,45,49,46,48,55,54,32,48,45,50,46,48,51,51,46,49,49,45,50,46,55,48,55,46,50,55,56,65,51,46,50,56,52,32,51,46,50,56,52,32,48,32,48,32,48,32,52,46,54,52,53,32,54,99,46,49,52,54,46,48,55,51,46,51,54,50,46,49,53,46,54,52,56,46,50,50,50,67,53,46,57,54,55,32,54,46,51,57,32,54,46,57,50,52,32,54,46,53,32,56,32,54,46,53,99,46,53,55,49,32,48,32,49,46,49,48,57,45,46,48,51,32,49,46,53,56,56,45,46,48,56,53,108,46,49,56,45,46,56,48,56,122,109,46,50,57,50,32,49,46,55,53,54,67,57,46,52,52,53,32,55,46,52,53,32,56,46,55,52,50,32,55,46,53,32,56,32,55,46,53,99,45,49,46,49,51,51,32,48,45,50,46,49,55,54,45,46,49,49,52,45,50,46,57,53,45,46,51,48,56,97,53,46,53,49,32,53,46,53,49,32,48,32,48,32,49,45,46,52,51,53,45,46,49,50,55,108,46,56,52,53,32,56,46,48,51,99,46,48,49,51,46,49,50,49,46,48,54,46,49,56,54,46,49,48,50,46,50,49,53,46,51,53,55,46,50,52,57,32,49,46,49,54,55,46,54,57,32,50,46,52,51,56,46,54,57,32,49,46,50,55,32,48,32,50,46,48,56,45,46,52,52,49,32,50,46,52,51,56,45,46,54,57,46,48,52,49,45,46,48,50,57,46,48,57,45,46,48,57,52,46,49,48,50,45,46,50,49,52,108,46,56,52,53,45,56,46,48,51,97,53,46,53,49,51,32,53,46,53,49,51,32,48,32,48,32,49,45,46,52,51,53,46,49,50,54,32,56,46,56,56,32,56,46,56,56,32,48,32,48,32,49,45,46,56,57,46,49,55,122,109,45,53,46,53,57,51,45,49,46,52,56,115,46,48,48,51,46,48,48,50,46,48,48,53,46,48,48,54,108,45,46,48,48,53,45,46,48,48,54,122,109,55,46,48,54,54,32,48,108,45,46,48,48,53,46,48,48,54,97,46,48,50,54,46,48,50,54,32,48,32,48,32,49,32,46,48,48,53,45,46,48,48,54,122,77,49,49,46,51,53,52,32,54,97,51,46,49,55,52,32,51,46,49,55,52,32,48,32,48,32,48,45,46,54,48,52,45,46,50,49,108,45,46,48,57,57,46,52,52,53,46,48,53,53,45,46,48,49,51,99,46,50,56,54,45,46,48,55,50,46,53,48,50,45,46,49,52,57,46,54,52,56,45,46,50,50,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,117,114,115,111,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,117,114,115,111,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,46,48,56,50,32,50,46,49,56,50,97,46,53,46,53,32,48,32,48,32,49,32,46,49,48,51,46,53,53,55,76,56,46,53,50,56,32,49,53,46,52,54,55,97,46,53,46,53,32,48,32,48,32,49,45,46,57,49,55,45,46,48,48,55,76,53,46,53,55,32,49,48,46,54,57,52,46,56,48,51,32,56,46,54,53,50,97,46,53,46,53,32,48,32,48,32,49,45,46,48,48,54,45,46,57,49,54,108,49,50,46,55,50,56,45,53,46,54,53,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,53,54,46,49,48,51,122,77,50,46,50,53,32,56,46,49,56,52,108,51,46,56,57,55,32,49,46,54,55,97,46,53,46,53,32,48,32,48,32,49,32,46,50,54,50,46,50,54,51,108,49,46,54,55,32,51,46,56,57,55,76,49,50,46,55,52,51,32,51,46,53,50,32,50,46,50,53,32,56,46,49,56,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,117,114,115,111,114,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,117,114,115,111,114,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,46,48,56,50,32,50,46,49,56,50,97,46,53,46,53,32,48,32,48,32,49,32,46,49,48,51,46,53,53,55,76,56,46,53,50,56,32,49,53,46,52,54,55,97,46,53,46,53,32,48,32,48,32,49,45,46,57,49,55,45,46,48,48,55,76,53,46,53,55,32,49,48,46,54,57,52,46,56,48,51,32,56,46,54,53,50,97,46,53,46,53,32,48,32,48,32,49,45,46,48,48,54,45,46,57,49,54,108,49,50,46,55,50,56,45,53,46,54,53,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,53,54,46,49,48,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,67,117,114,115,111,114,84,101,120,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,67,117,114,115,111,114,84,101,120,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,99,46,56,54,50,32,48,32,49,46,53,55,51,46,50,56,55,32,50,46,48,54,46,53,54,54,46,49,55,52,46,48,57,57,46,51,50,49,46,49,57,56,46,52,52,46,50,56,54,46,49,49,57,45,46,48,56,56,46,50,54,54,45,46,49,56,55,46,52,52,45,46,50,56,54,65,52,46,49,54,53,32,52,46,49,54,53,32,48,32,48,32,49,32,49,48,46,53,32,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,99,45,46,54,51,56,32,48,45,49,46,49,55,55,46,50,49,51,45,49,46,53,54,52,46,52,51,52,97,51,46,52,57,32,51,46,52,57,32,48,32,48,32,48,45,46,52,51,54,46,50,57,52,86,55,46,53,72,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,46,53,118,52,46,50,55,50,99,46,49,46,48,56,46,50,52,56,46,49,56,55,46,52,51,54,46,50,57,52,46,51,56,55,46,50,50,49,46,57,50,54,46,52,51,52,32,49,46,53,54,52,46,52,51,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,32,52,46,49,54,53,32,52,46,49,54,53,32,48,32,48,32,49,45,50,46,48,54,45,46,53,54,54,65,52,46,53,54,49,32,52,46,53,54,49,32,48,32,48,32,49,32,56,32,49,51,46,54,53,97,52,46,53,54,49,32,52,46,53,54,49,32,48,32,48,32,49,45,46,52,52,46,50,56,53,32,52,46,49,54,53,32,52,46,49,54,53,32,48,32,48,32,49,45,50,46,48,54,46,53,54,54,46,53,46,53,32,48,32,48,32,49,32,48,45,49,99,46,54,51,56,32,48,32,49,46,49,55,55,45,46,50,49,51,32,49,46,53,54,52,45,46,52,51,52,46,49,56,56,45,46,49,48,55,46,51,51,53,45,46,50,49,52,46,52,51,54,45,46,50,57,52,86,56,46,53,72,55,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,46,53,86,51,46,50,50,56,97,51,46,52,57,32,51,46,52,57,32,48,32,48,32,48,45,46,52,51,54,45,46,50,57,52,65,51,46,49,54,54,32,51,46,49,54,54,32,48,32,48,32,48,32,53,46,53,32,50,46,53,46,53,46,53,32,48,32,48,32,49,32,53,32,50,122,109,51,46,51,53,50,32,49,46,51,53,53,122,109,45,46,55,48,52,32,57,46,50,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,97,115,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,97,115,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,65,46,53,46,53,32,48,32,48,32,49,32,52,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,97,115,104,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,65,46,53,46,53,32,48,32,48,32,49,32,52,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,97,115,104,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,52,46,53,32,55,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,55,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,97,115,104,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,65,46,53,46,53,32,48,32,48,32,49,32,52,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,97,115,104,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,50,46,53,32,55,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,97,103,114,97,109,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,97,103,114,97,109,50,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,32,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,46,53,32,50,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,48,32,51,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,56,46,53,32,54,118,49,72,49,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,104,45,53,118,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,49,65,46,53,46,53,32,48,32,48,32,49,32,53,32,55,104,50,46,53,86,54,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,54,32,52,46,53,118,45,49,122,77,56,46,53,32,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,122,77,51,32,49,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,46,53,32,49,48,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,32,49,49,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,46,53,32,49,52,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,49,50,46,53,118,45,49,122,109,49,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,109,52,46,53,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,45,49,46,53,104,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,46,53,118,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,32,49,50,46,53,118,45,49,122,109,49,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,97,103,114,97,109,50,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,97,103,114,97,109,50,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,32,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,46,53,32,50,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,48,32,51,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,56,46,53,32,54,118,49,72,49,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,104,45,53,118,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,49,65,46,53,46,53,32,48,32,48,32,49,32,53,32,55,104,50,46,53,86,54,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,54,32,52,46,53,118,45,49,122,109,45,51,32,56,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,46,53,32,49,48,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,32,49,49,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,46,53,32,49,52,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,49,50,46,53,118,45,49,122,109,54,32,48,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,45,49,46,53,104,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,46,53,118,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,32,49,50,46,53,118,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,97,103,114,97,109,51,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,97,103,114,97,109,51,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,32,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,46,53,32,50,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,48,32,51,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,56,46,53,32,54,118,49,72,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,104,45,53,118,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,104,45,53,118,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,49,65,46,53,46,53,32,48,32,48,32,49,32,50,32,55,104,53,46,53,86,54,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,54,32,52,46,53,118,45,49,122,77,56,46,53,32,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,122,77,48,32,49,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,48,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,32,49,49,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,46,53,32,49,52,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,50,46,53,118,45,49,122,109,49,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,109,52,46,53,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,46,53,32,49,48,104,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,56,46,53,32,49,52,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,54,32,49,50,46,53,118,45,49,122,109,49,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,109,52,46,53,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,45,49,46,53,104,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,46,53,118,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,45,49,46,53,118,45,49,122,109,49,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,97,103,114,97,109,51,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,97,103,114,97,109,51,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,32,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,46,53,32,50,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,48,32,51,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,56,46,53,32,54,118,49,72,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,104,45,53,118,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,104,45,53,118,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,49,65,46,53,46,53,32,48,32,48,32,49,32,50,32,55,104,53,46,53,86,54,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,54,32,52,46,53,118,45,49,122,109,45,54,32,56,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,48,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,32,49,49,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,46,53,32,49,52,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,50,46,53,118,45,49,122,109,54,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,46,53,32,49,48,104,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,56,46,53,32,49,52,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,54,32,49,50,46,53,118,45,49,122,109,54,32,48,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,45,49,46,53,104,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,46,53,118,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,45,49,46,53,118,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,97,109,111,110,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,97,109,111,110,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,57,53,46,52,51,53,99,46,53,56,45,46,53,56,32,49,46,53,50,45,46,53,56,32,50,46,49,32,48,108,54,46,53,49,53,32,54,46,53,49,54,99,46,53,56,46,53,56,46,53,56,32,49,46,53,49,57,32,48,32,50,46,48,57,56,76,57,46,48,53,32,49,53,46,53,54,53,99,45,46,53,56,46,53,56,45,49,46,53,49,57,46,53,56,45,50,46,48,57,56,32,48,76,46,52,51,53,32,57,46,48,53,97,49,46,52,56,50,32,49,46,52,56,50,32,48,32,48,32,49,32,48,45,50,46,48,57,56,76,54,46,57,53,46,52,51,53,122,109,49,46,52,46,55,97,46,52,57,53,46,52,57,53,32,48,32,48,32,48,45,46,55,32,48,76,49,46,49,51,52,32,55,46,54,53,97,46,52,57,53,46,52,57,53,32,48,32,48,32,48,32,48,32,46,55,108,54,46,53,49,54,32,54,46,53,49,54,97,46,52,57,53,46,52,57,53,32,48,32,48,32,48,32,46,55,32,48,108,54,46,53,49,54,45,54,46,53,49,54,97,46,52,57,53,46,52,57,53,32,48,32,48,32,48,32,48,45,46,55,76,56,46,51,53,32,49,46,49,51,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,97,109,111,110,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,97,109,111,110,100,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,46,57,53,46,52,51,53,99,46,53,56,45,46,53,56,32,49,46,53,50,45,46,53,56,32,50,46,49,32,48,108,54,46,53,49,53,32,54,46,53,49,54,99,46,53,56,46,53,56,46,53,56,32,49,46,53,49,57,32,48,32,50,46,48,57,56,76,57,46,48,53,32,49,53,46,53,54,53,99,45,46,53,56,46,53,56,45,49,46,53,49,57,46,53,56,45,50,46,48,57,56,32,48,76,46,52,51,53,32,57,46,48,53,97,49,46,52,56,50,32,49,46,52,56,50,32,48,32,48,32,49,32,48,45,50,46,48,57,56,76,54,46,57,53,46,52,51,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,97,109,111,110,100,72,97,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,97,109,111,110,100,72,97,108,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,48,53,46,52,51,53,99,45,46,53,56,45,46,53,56,45,49,46,53,50,45,46,53,56,45,50,46,49,32,48,76,46,52,51,54,32,54,46,57,53,99,45,46,53,56,46,53,56,45,46,53,56,32,49,46,53,49,57,32,48,32,50,46,48,57,56,108,54,46,53,49,54,32,54,46,53,49,54,99,46,53,56,46,53,56,32,49,46,53,49,57,46,53,56,32,50,46,48,57,56,32,48,108,54,46,53,49,54,45,54,46,53,49,54,99,46,53,56,45,46,53,56,46,53,56,45,49,46,53,49,57,32,48,45,50,46,48,57,56,76,57,46,48,53,46,52,51,53,122,77,56,32,46,57,56,57,99,46,49,50,55,32,48,32,46,50,53,51,46,48,52,57,46,51,53,46,49,52,53,108,54,46,53,49,54,32,54,46,53,49,54,97,46,52,57,53,46,52,57,53,32,48,32,48,32,49,32,48,32,46,55,76,56,46,51,53,32,49,52,46,56,54,54,97,46,52,57,51,46,52,57,51,32,48,32,48,32,49,45,46,51,53,46,49,52,53,86,46,57,56,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,99,101,49,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,99,101,49,39,44,39,60,99,105,114,99,108,101,32,99,120,61,92,34,56,92,34,32,99,121,61,92,34,56,92,34,32,114,61,92,34,49,46,53,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,51,32,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,48,122,77,51,32,48,97,51,32,51,32,48,32,48,32,48,45,51,32,51,118,49,48,97,51,32,51,32,48,32,48,32,48,32,51,32,51,104,49,48,97,51,32,51,32,48,32,48,32,48,32,51,45,51,86,51,97,51,32,51,32,48,32,48,32,48,45,51,45,51,72,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,99,101,49,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,99,101,49,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,48,97,51,32,51,32,48,32,48,32,48,45,51,32,51,118,49,48,97,51,32,51,32,48,32,48,32,48,32,51,32,51,104,49,48,97,51,32,51,32,48,32,48,32,48,32,51,45,51,86,51,97,51,32,51,32,48,32,48,32,48,45,51,45,51,72,51,122,109,53,32,57,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,99,101,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,99,101,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,32,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,48,122,77,51,32,48,97,51,32,51,32,48,32,48,32,48,45,51,32,51,118,49,48,97,51,32,51,32,48,32,48,32,48,32,51,32,51,104,49,48,97,51,32,51,32,48,32,48,32,48,32,51,45,51,86,51,97,51,32,51,32,48,32,48,32,48,45,51,45,51,72,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,52,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,56,32,56,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,99,101,50,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,99,101,50,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,51,97,51,32,51,32,48,32,48,32,49,32,51,45,51,104,49,48,97,51,32,51,32,48,32,48,32,49,32,51,32,51,118,49,48,97,51,32,51,32,48,32,48,32,49,45,51,32,51,72,51,97,51,32,51,32,48,32,48,32,49,45,51,45,51,86,51,122,109,53,46,53,32,49,97,49,46,53,32,49,46,53,32,48,32,49,32,48,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,32,48,122,109,54,46,53,32,57,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,99,101,51,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,99,101,51,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,32,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,48,122,77,51,32,48,97,51,32,51,32,48,32,48,32,48,45,51,32,51,118,49,48,97,51,32,51,32,48,32,48,32,48,32,51,32,51,104,49,48,97,51,32,51,32,48,32,48,32,48,32,51,45,51,86,51,97,51,32,51,32,48,32,48,32,48,45,51,45,51,72,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,52,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,56,32,56,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,45,52,45,52,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,99,101,51,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,99,101,51,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,48,97,51,32,51,32,48,32,48,32,48,45,51,32,51,118,49,48,97,51,32,51,32,48,32,48,32,48,32,51,32,51,104,49,48,97,51,32,51,32,48,32,48,32,48,32,51,45,51,86,51,97,51,32,51,32,48,32,48,32,48,45,51,45,51,72,51,122,109,50,46,53,32,52,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,56,32,56,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,77,56,32,57,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,99,101,52,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,99,101,52,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,32,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,48,122,77,51,32,48,97,51,32,51,32,48,32,48,32,48,45,51,32,51,118,49,48,97,51,32,51,32,48,32,48,32,48,32,51,32,51,104,49,48,97,51,32,51,32,48,32,48,32,48,32,51,45,51,86,51,97,51,32,51,32,48,32,48,32,48,45,51,45,51,72,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,52,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,56,32,48,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,48,32,56,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,45,56,32,48,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,99,101,52,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,99,101,52,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,48,97,51,32,51,32,48,32,48,32,48,45,51,32,51,118,49,48,97,51,32,51,32,48,32,48,32,48,32,51,32,51,104,49,48,97,51,32,51,32,48,32,48,32,48,32,51,45,51,86,51,97,51,32,51,32,48,32,48,32,48,45,51,45,51,72,51,122,109,49,32,53,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,109,56,32,48,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,109,49,46,53,32,54,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,77,52,32,49,51,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,99,101,53,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,99,101,53,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,32,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,48,122,77,51,32,48,97,51,32,51,32,48,32,48,32,48,45,51,32,51,118,49,48,97,51,32,51,32,48,32,48,32,48,32,51,32,51,104,49,48,97,51,32,51,32,48,32,48,32,48,32,51,45,51,86,51,97,51,32,51,32,48,32,48,32,48,45,51,45,51,72,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,52,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,56,32,48,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,48,32,56,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,45,56,32,48,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,52,45,52,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,99,101,53,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,99,101,53,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,48,97,51,32,51,32,48,32,48,32,48,45,51,32,51,118,49,48,97,51,32,51,32,48,32,48,32,48,32,51,32,51,104,49,48,97,51,32,51,32,48,32,48,32,48,32,51,45,51,86,51,97,51,32,51,32,48,32,48,32,48,45,51,45,51,72,51,122,109,50,46,53,32,52,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,56,32,48,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,77,49,50,32,49,51,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,77,53,46,53,32,49,50,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,77,56,32,57,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,99,101,54,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,99,101,54,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,32,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,48,122,77,51,32,48,97,51,32,51,32,48,32,48,32,48,45,51,32,51,118,49,48,97,51,32,51,32,48,32,48,32,48,32,51,32,51,104,49,48,97,51,32,51,32,48,32,48,32,48,32,51,45,51,86,51,97,51,32,51,32,48,32,48,32,48,45,51,45,51,72,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,52,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,56,32,48,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,48,32,56,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,48,45,52,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,45,56,32,52,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,48,45,52,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,99,101,54,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,99,101,54,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,48,97,51,32,51,32,48,32,48,32,48,45,51,32,51,118,49,48,97,51,32,51,32,48,32,48,32,48,32,51,32,51,104,49,48,97,51,32,51,32,48,32,48,32,48,32,51,45,51,86,51,97,51,32,51,32,48,32,48,32,48,45,51,45,51,72,51,122,109,49,32,53,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,109,56,32,48,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,109,49,46,53,32,54,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,77,49,50,32,57,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,77,53,46,53,32,49,50,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,77,52,32,57,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,115,99,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,115,99,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,32,56,97,50,32,50,32,48,32,49,32,49,45,52,32,48,32,50,32,50,32,48,32,48,32,49,32,52,32,48,122,77,56,32,52,97,52,32,52,32,48,32,48,32,48,45,52,32,52,32,46,53,46,53,32,48,32,48,32,49,45,49,32,48,32,53,32,53,32,48,32,48,32,49,32,53,45,53,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,109,52,46,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,32,53,32,53,32,48,32,48,32,49,45,53,32,53,32,46,53,46,53,32,48,32,48,32,49,32,48,45,49,32,52,32,52,32,48,32,48,32,48,32,52,45,52,32,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,115,99,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,115,99,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,109,45,54,32,48,97,50,32,50,32,48,32,49,32,48,45,52,32,48,32,50,32,50,32,48,32,48,32,48,32,52,32,48,122,77,52,32,56,97,52,32,52,32,48,32,48,32,49,32,52,45,52,32,46,53,46,53,32,48,32,48,32,48,32,48,45,49,32,53,32,53,32,48,32,48,32,48,45,53,32,53,32,46,53,46,53,32,48,32,48,32,48,32,49,32,48,122,109,57,32,48,97,46,53,46,53,32,48,32,49,32,48,45,49,32,48,32,52,32,52,32,48,32,48,32,49,45,52,32,52,32,46,53,46,53,32,48,32,48,32,48,32,48,32,49,32,53,32,53,32,48,32,48,32,48,32,53,45,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,115,99,111,114,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,115,99,111,114,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,53,53,50,32,54,46,55,49,50,99,45,46,52,53,54,32,48,45,46,56,49,54,46,52,45,46,56,49,54,46,56,56,56,115,46,51,54,56,46,56,56,56,46,56,49,54,46,56,56,56,99,46,52,53,54,32,48,32,46,56,49,54,45,46,52,46,56,49,54,45,46,56,56,56,46,48,48,56,45,46,52,56,56,45,46,51,54,45,46,56,56,56,45,46,56,49,54,45,46,56,56,56,122,109,50,46,57,50,32,48,99,45,46,52,53,54,32,48,45,46,56,49,54,46,52,45,46,56,49,54,46,56,56,56,115,46,51,54,56,46,56,56,56,46,56,49,54,46,56,56,56,99,46,52,53,54,32,48,32,46,56,49,54,45,46,52,46,56,49,54,45,46,56,56,56,115,45,46,51,54,45,46,56,56,56,45,46,56,49,54,45,46,56,56,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,51,46,51,54,32,48,72,50,46,54,52,67,49,46,55,51,54,32,48,32,49,32,46,55,51,54,32,49,32,49,46,54,52,56,118,49,48,46,56,49,54,99,48,32,46,57,49,50,46,55,51,54,32,49,46,54,52,56,32,49,46,54,52,32,49,46,54,52,56,104,57,46,48,55,50,108,45,46,52,50,52,45,49,46,52,56,32,49,46,48,50,52,46,57,53,50,46,57,54,56,46,56,57,54,76,49,53,32,49,54,86,49,46,54,52,56,67,49,53,32,46,55,51,54,32,49,52,46,50,54,52,32,48,32,49,51,46,51,54,32,48,122,109,45,51,46,48,56,56,32,49,48,46,52,52,56,115,45,46,50,56,56,45,46,51,52,52,45,46,53,50,56,45,46,54,52,56,99,49,46,48,52,56,45,46,50,57,54,32,49,46,52,52,56,45,46,57,53,50,32,49,46,52,52,56,45,46,57,53,50,45,46,51,50,56,46,50,49,54,45,46,54,52,46,51,54,56,45,46,57,50,46,52,55,50,45,46,52,46,49,54,56,45,46,55,56,52,46,50,56,45,49,46,49,54,46,51,52,52,97,53,46,54,48,52,32,53,46,54,48,52,32,48,32,48,32,49,45,50,46,48,55,50,45,46,48,48,56,32,54,46,55,49,54,32,54,46,55,49,54,32,48,32,48,32,49,45,49,46,49,55,54,45,46,51,52,52,32,52,46,54,56,56,32,52,46,54,56,56,32,48,32,48,32,49,45,46,53,56,52,45,46,50,55,50,99,45,46,48,50,52,45,46,48,49,54,45,46,48,52,56,45,46,48,50,52,45,46,48,55,50,45,46,48,52,45,46,48,49,54,45,46,48,48,56,45,46,48,50,52,45,46,48,49,54,45,46,48,51,50,45,46,48,50,52,45,46,49,52,52,45,46,48,56,45,46,50,50,52,45,46,49,51,54,45,46,50,50,52,45,46,49,51,54,115,46,51,56,52,46,54,52,32,49,46,52,46,57,52,52,99,45,46,50,52,46,51,48,52,45,46,53,51,54,46,54,54,52,45,46,53,51,54,46,54,54,52,45,49,46,55,54,56,45,46,48,53,54,45,50,46,52,52,45,49,46,50,49,54,45,50,46,52,52,45,49,46,50,49,54,32,48,45,50,46,53,55,54,32,49,46,49,53,50,45,52,46,54,54,52,32,49,46,49,53,50,45,52,46,54,54,52,32,49,46,49,53,50,45,46,56,54,52,32,50,46,50,52,56,45,46,56,52,32,50,46,50,52,56,45,46,56,52,108,46,48,56,46,48,57,54,99,45,49,46,52,52,46,52,49,54,45,50,46,49,48,52,32,49,46,48,52,56,45,50,46,49,48,52,32,49,46,48,52,56,115,46,49,55,54,45,46,48,57,54,46,52,55,50,45,46,50,51,50,99,46,56,53,54,45,46,51,55,54,32,49,46,53,51,54,45,46,52,56,32,49,46,56,49,54,45,46,53,48,52,46,48,52,56,45,46,48,48,56,46,48,56,56,45,46,48,49,54,46,49,51,54,45,46,48,49,54,97,54,46,53,50,49,32,54,46,53,50,49,32,48,32,48,32,49,32,52,46,48,50,52,46,55,53,50,115,45,46,54,51,50,45,46,54,45,49,46,57,57,50,45,49,46,48,49,54,108,46,49,49,50,45,46,49,50,56,115,49,46,48,57,54,45,46,48,50,52,32,50,46,50,52,56,46,56,52,99,48,32,48,32,49,46,49,53,50,32,50,46,48,56,56,32,49,46,49,53,50,32,52,46,54,54,52,32,48,32,48,45,46,54,56,32,49,46,49,54,45,50,46,52,52,56,32,49,46,50,49,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,115,112,108,97,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,115,112,108,97,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,52,115,48,45,50,32,50,45,50,104,49,50,115,50,32,48,32,50,32,50,118,54,115,48,32,50,45,50,32,50,104,45,52,99,48,32,46,54,54,55,46,48,56,51,32,49,46,49,54,55,46,50,53,32,49,46,53,72,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,46,55,53,99,46,49,54,55,45,46,51,51,51,46,50,53,45,46,56,51,51,46,50,53,45,49,46,53,72,50,115,45,50,32,48,45,50,45,50,86,52,122,109,49,46,51,57,56,45,46,56,53,53,97,46,55,53,56,46,55,53,56,32,48,32,48,32,48,45,46,50,53,52,46,51,48,50,65,49,46,52,54,32,49,46,52,54,32,48,32,48,32,48,32,49,32,52,46,48,49,86,49,48,99,48,32,46,51,50,53,46,48,55,56,46,53,48,50,46,49,52,53,46,54,48,50,46,48,55,46,49,48,53,46,49,55,46,49,56,56,46,51,48,50,46,50,53,52,97,49,46,52,54,52,32,49,46,52,54,52,32,48,32,48,32,48,32,46,53,51,56,46,49,52,51,76,50,46,48,49,32,49,49,72,49,52,99,46,51,50,53,32,48,32,46,53,48,50,45,46,48,55,56,46,54,48,50,45,46,49,52,53,97,46,55,53,56,46,55,53,56,32,48,32,48,32,48,32,46,50,53,52,45,46,51,48,50,32,49,46,52,54,52,32,49,46,52,54,52,32,48,32,48,32,48,32,46,49,52,51,45,46,53,51,56,76,49,53,32,57,46,57,57,86,52,99,48,45,46,51,50,53,45,46,48,55,56,45,46,53,48,50,45,46,49,52,53,45,46,54,48,50,97,46,55,53,55,46,55,53,55,32,48,32,48,32,48,45,46,51,48,50,45,46,50,53,52,65,49,46,52,54,32,49,46,52,54,32,48,32,48,32,48,32,49,51,46,57,57,32,51,72,50,99,45,46,51,50,53,32,48,45,46,53,48,50,46,48,55,56,45,46,54,48,50,46,49,52,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,115,112,108,97,121,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,115,112,108,97,121,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,49,50,99,48,32,46,54,54,55,45,46,48,56,51,32,49,46,49,54,55,45,46,50,53,32,49,46,53,72,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,46,55,53,99,45,46,49,54,55,45,46,51,51,51,45,46,50,53,45,46,56,51,51,45,46,50,53,45,49,46,53,104,52,99,50,32,48,32,50,45,50,32,50,45,50,86,52,99,48,45,50,45,50,45,50,45,50,45,50,72,50,67,48,32,50,32,48,32,52,32,48,32,52,118,54,99,48,32,50,32,50,32,50,32,50,32,50,104,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,72,111,114,105,122,111,110,116,97,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,115,116,114,105,98,117,116,101,72,111,114,105,122,111,110,116,97,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,52,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,51,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,49,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,122,109,45,49,51,32,48,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,51,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,49,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,32,49,51,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,55,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,86,101,114,116,105,99,97,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,105,115,116,114,105,98,117,116,101,86,101,114,116,105,99,97,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,109,48,32,49,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,55,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,48,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,111,111,114,67,108,111,115,101,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,51,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,51,86,50,122,109,49,32,49,51,104,56,86,50,72,52,118,49,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,32,57,97,49,32,49,32,48,32,49,32,48,32,50,32,48,32,49,32,49,32,48,32,48,32,48,45,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,111,111,114,67,108,111,115,101,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,51,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,51,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,56,122,109,45,50,32,57,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,111,111,114,79,112,101,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,111,111,114,79,112,101,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,53,32,49,48,99,45,46,50,55,54,32,48,45,46,53,45,46,52,52,56,45,46,53,45,49,115,46,50,50,52,45,49,32,46,53,45,49,32,46,53,46,52,52,56,46,53,32,49,45,46,50,50,52,32,49,45,46,53,32,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,56,50,56,46,49,50,50,65,46,53,46,53,32,48,32,48,32,49,32,49,49,32,46,53,86,49,104,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,51,32,50,46,53,86,49,53,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,51,86,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,52,51,45,46,52,57,53,108,55,45,49,97,46,53,46,53,32,48,32,48,32,49,32,46,51,57,56,46,49,49,55,122,77,49,49,46,53,32,50,72,49,49,118,49,51,104,49,86,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,122,77,52,32,49,46,57,51,52,86,49,53,104,54,86,49,46,48,55,55,108,45,54,32,46,56,53,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,111,111,114,79,112,101,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,111,111,114,79,112,101,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,49,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,49,51,86,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,46,53,32,49,72,49,49,86,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,55,45,46,52,57,53,108,45,55,32,49,65,46,53,46,53,32,48,32,48,32,48,32,51,32,49,46,53,86,49,53,72,49,46,53,122,77,49,49,32,50,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,53,104,45,49,86,50,122,109,45,50,46,53,32,56,99,45,46,50,55,54,32,48,45,46,53,45,46,52,52,56,45,46,53,45,49,115,46,50,50,52,45,49,32,46,53,45,49,32,46,53,46,52,52,56,46,53,32,49,45,46,50,50,52,32,49,45,46,53,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,111,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,111,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,57,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,111,119,110,108,111,97,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,111,119,110,108,111,97,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,53,32,57,46,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,46,53,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,50,46,53,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,54,52,54,32,49,49,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,51,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,46,53,32,49,48,46,50,57,51,86,49,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,56,46,55,57,51,76,53,46,51,53,52,32,56,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,51,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,114,111,112,108,101,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,114,111,112,108,101,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,50,49,46,56,67,55,46,54,57,46,50,57,53,32,56,32,48,32,56,32,48,99,46,49,48,57,46,51,54,51,46,50,51,52,46,55,48,56,46,51,55,49,32,49,46,48,51,56,46,56,49,50,32,49,46,57,52,54,32,50,46,48,55,51,32,51,46,51,53,32,51,46,49,57,55,32,52,46,54,67,49,50,46,56,55,56,32,55,46,48,57,54,32,49,52,32,56,46,51,52,53,32,49,52,32,49,48,97,54,32,54,32,48,32,48,32,49,45,49,50,32,48,67,50,32,54,46,54,54,56,32,53,46,53,56,32,50,46,53,49,55,32,55,46,50,49,46,56,122,109,46,52,49,51,32,49,46,48,50,49,65,51,49,46,50,53,32,51,49,46,50,53,32,48,32,48,32,48,32,53,46,55,57,52,32,51,46,57,57,99,45,46,55,50,54,46,57,53,45,49,46,52,51,54,32,50,46,48,48,56,45,49,46,57,54,32,51,46,48,55,67,51,46,51,48,52,32,56,46,49,51,51,32,51,32,57,46,49,51,56,32,51,32,49,48,97,53,32,53,32,48,32,48,32,48,32,49,48,32,48,99,48,45,49,46,50,48,49,45,46,55,57,54,45,50,46,49,53,55,45,50,46,49,56,49,45,51,46,55,108,45,46,48,51,45,46,48,51,50,67,57,46,55,53,32,53,46,49,49,32,56,46,53,32,51,46,55,50,32,55,46,54,50,51,32,49,46,56,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,52,46,53,53,51,32,55,46,55,55,54,99,46,56,50,45,49,46,54,52,49,32,49,46,55,49,55,45,50,46,55,53,51,32,50,46,48,57,51,45,51,46,49,51,108,46,55,48,56,46,55,48,56,99,45,46,50,57,46,50,57,45,49,46,49,50,56,32,49,46,51,49,49,45,49,46,57,48,55,32,50,46,56,55,108,45,46,56,57,52,45,46,52,52,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,114,111,112,108,101,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,114,111,112,108,101,116,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,49,54,97,54,32,54,32,48,32,48,32,48,32,54,45,54,99,48,45,49,46,54,53,53,45,49,46,49,50,50,45,50,46,57,48,52,45,50,46,52,51,50,45,52,46,51,54,50,67,49,48,46,50,53,52,32,52,46,49,55,54,32,56,46,55,53,32,50,46,53,48,51,32,56,32,48,99,48,32,48,45,54,32,53,46,54,56,54,45,54,32,49,48,97,54,32,54,32,48,32,48,32,48,32,54,32,54,122,77,54,46,54,52,54,32,52,46,54,52,54,99,45,46,51,55,54,46,51,55,55,45,49,46,50,55,50,32,49,46,52,56,57,45,50,46,48,57,51,32,51,46,49,51,108,46,56,57,52,46,52,52,56,99,46,55,56,45,49,46,53,53,57,32,49,46,54,49,54,45,50,46,53,56,32,49,46,57,48,55,45,50,46,56,55,108,45,46,55,48,56,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,68,114,111,112,108,101,116,72,97,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,68,114,111,112,108,101,116,72,97,108,102,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,50,49,46,56,67,55,46,54,57,46,50,57,53,32,56,32,48,32,56,32,48,99,46,49,48,57,46,51,54,51,46,50,51,52,46,55,48,56,46,51,55,49,32,49,46,48,51,56,46,56,49,50,32,49,46,57,52,54,32,50,46,48,55,51,32,51,46,51,53,32,51,46,49,57,55,32,52,46,54,67,49,50,46,56,55,56,32,55,46,48,57,54,32,49,52,32,56,46,51,52,53,32,49,52,32,49,48,97,54,32,54,32,48,32,48,32,49,45,49,50,32,48,67,50,32,54,46,54,54,56,32,53,46,53,56,32,50,46,53,49,55,32,55,46,50,49,46,56,122,109,46,52,49,51,32,49,46,48,50,49,65,51,49,46,50,53,32,51,49,46,50,53,32,48,32,48,32,48,32,53,46,55,57,52,32,51,46,57,57,99,45,46,55,50,54,46,57,53,45,49,46,52,51,54,32,50,46,48,48,56,45,49,46,57,54,32,51,46,48,55,67,51,46,51,48,52,32,56,46,49,51,51,32,51,32,57,46,49,51,56,32,51,32,49,48,99,48,32,48,32,50,46,53,32,49,46,53,32,53,32,46,53,115,53,45,46,53,32,53,45,46,53,99,48,45,49,46,50,48,49,45,46,55,57,54,45,50,46,49,53,55,45,50,46,49,56,49,45,51,46,55,108,45,46,48,51,45,46,48,51,50,67,57,46,55,53,32,53,46,49,49,32,56,46,53,32,51,46,55,50,32,55,46,54,50,51,32,49,46,56,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,52,46,53,53,51,32,55,46,55,55,54,99,46,56,50,45,49,46,54,52,49,32,49,46,55,49,55,45,50,46,55,53,51,32,50,46,48,57,51,45,51,46,49,51,108,46,55,48,56,46,55,48,56,99,45,46,50,57,46,50,57,45,49,46,49,50,56,32,49,46,51,49,49,45,49,46,57,48,55,32,50,46,56,55,108,45,46,56,57,52,45,46,52,52,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,97,114,98,117,100,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,97,114,98,117,100,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,46,56,50,53,32,52,46,49,51,56,99,46,53,57,54,32,50,46,49,52,49,45,46,51,54,32,51,46,53,57,51,45,50,46,51,56,57,32,52,46,49,49,55,97,52,46,52,51,50,32,52,46,52,51,50,32,48,32,48,32,49,45,50,46,48,49,56,46,48,53,52,99,45,46,48,52,56,45,46,48,49,46,57,32,50,46,55,55,56,32,49,46,53,50,50,32,52,46,54,49,108,46,52,49,32,49,46,50,48,53,97,46,53,50,46,53,50,32,48,32,48,32,49,45,46,51,52,54,46,54,53,57,108,45,46,53,57,51,46,49,57,97,46,53,52,56,46,53,52,56,32,48,32,48,32,49,45,46,54,57,45,46,51,52,76,46,49,56,52,32,54,46,57,57,99,45,46,54,57,54,45,50,46,49,51,55,46,54,54,50,45,52,46,51,48,57,32,50,46,53,54,52,45,52,46,56,32,50,46,48,50,57,45,46,53,50,51,32,51,46,52,48,50,32,48,32,52,46,48,55,54,32,49,46,57,52,56,122,109,45,46,56,54,56,32,50,46,50,50,49,99,46,52,51,45,46,49,49,50,46,53,54,49,45,46,57,57,51,46,50,57,50,45,49,46,57,54,57,45,46,50,54,57,45,46,57,55,53,45,46,56,51,54,45,49,46,54,55,53,45,49,46,50,54,54,45,49,46,53,54,51,45,46,52,51,46,49,49,50,45,46,53,54,49,46,57,57,52,45,46,50,57,50,32,49,46,57,54,57,46,50,54,57,46,57,55,53,46,56,51,54,32,49,46,54,55,53,32,49,46,50,54,54,32,49,46,53,54,51,122,109,51,46,50,49,56,45,50,46,50,50,49,99,45,46,53,57,54,32,50,46,49,52,49,46,51,54,32,51,46,53,57,51,32,50,46,51,56,57,32,52,46,49,49,55,97,52,46,52,51,52,32,52,46,52,51,52,32,48,32,48,32,48,32,50,46,48,49,56,46,48,53,52,99,46,48,52,56,45,46,48,49,45,46,57,32,50,46,55,55,56,45,49,46,53,50,50,32,52,46,54,49,108,45,46,52,49,32,49,46,50,48,53,97,46,53,50,46,53,50,32,48,32,48,32,48,32,46,51,52,54,46,54,53,57,108,46,53,57,51,46,49,57,99,46,50,56,57,46,48,57,50,46,54,45,46,48,54,46,54,57,45,46,51,52,108,50,46,53,51,54,45,55,46,54,52,51,99,46,54,57,54,45,50,46,49,51,55,45,46,54,54,50,45,52,46,51,48,57,45,50,46,53,54,52,45,52,46,56,45,50,46,48,50,57,45,46,53,50,51,45,51,46,52,48,50,32,48,45,52,46,48,55,54,32,49,46,57,52,56,122,109,46,56,54,56,32,50,46,50,50,49,99,45,46,52,51,45,46,49,49,50,45,46,53,54,49,45,46,57,57,51,45,46,50,57,50,45,49,46,57,54,57,46,50,54,57,45,46,57,55,53,46,56,51,54,45,49,46,54,55,53,32,49,46,50,54,54,45,49,46,53,54,51,46,52,51,46,49,49,50,46,53,54,49,46,57,57,52,46,50,57,50,32,49,46,57,54,57,45,46,50,54,57,46,57,55,53,45,46,56,51,54,32,49,46,54,55,53,45,49,46,50,54,54,32,49,46,53,54,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,97,115,101,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,97,115,101,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,52,55,51,46,51,51,55,76,57,46,48,52,54,32,50,72,49,52,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,55,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,49,46,56,53,108,49,46,51,50,51,32,51,46,56,51,55,97,46,53,46,53,32,48,32,49,32,49,45,46,57,52,54,46,51,50,54,76,49,49,46,48,57,50,32,49,49,72,56,46,53,118,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,72,52,46,57,48,56,108,45,49,46,52,51,53,32,52,46,49,54,51,97,46,53,46,53,32,48,32,49,32,49,45,46,57,52,54,45,46,51,50,54,76,51,46,56,53,32,49,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,52,46,57,53,52,76,55,46,53,50,55,46,51,51,55,65,46,53,46,53,32,48,32,48,32,49,32,56,32,48,122,77,50,32,51,118,55,104,49,50,86,51,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,97,115,101,108,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,97,115,101,108,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,52,55,51,46,51,51,55,97,46,53,46,53,32,48,32,48,32,48,45,46,57,52,54,32,48,76,54,46,57,53,52,32,50,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,55,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,46,56,53,108,45,49,46,51,50,51,32,51,46,56,51,55,97,46,53,46,53,32,48,32,49,32,48,32,46,57,52,54,46,51,50,54,76,52,46,57,48,56,32,49,49,72,55,46,53,118,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,49,49,104,50,46,53,57,50,108,49,46,52,51,53,32,52,46,49,54,51,97,46,53,46,53,32,48,32,48,32,48,32,46,57,52,54,45,46,51,50,54,76,49,50,46,49,53,32,49,49,72,49,52,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,57,46,48,52,54,76,56,46,52,55,51,46,51,51,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,103,103,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,103,103,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,97,53,32,53,32,48,32,48,32,49,45,53,45,53,99,48,45,49,46,57,53,54,46,54,57,45,52,46,50,56,54,32,49,46,55,52,50,45,54,46,49,50,46,53,50,52,45,46,57,49,51,32,49,46,49,49,50,45,49,46,54,53,56,32,49,46,55,48,52,45,50,46,49,54,52,67,55,46,48,52,52,32,49,46,50,48,54,32,55,46,53,55,50,32,49,32,56,32,49,99,46,52,50,56,32,48,32,46,57,53,54,46,50,48,54,32,49,46,53,53,52,46,55,49,54,46,53,57,50,46,53,48,54,32,49,46,49,56,32,49,46,50,53,49,32,49,46,55,48,52,32,50,46,49,54,52,67,49,50,46,51,49,32,53,46,55,49,52,32,49,51,32,56,46,48,52,52,32,49,51,32,49,48,97,53,32,53,32,48,32,48,32,49,45,53,32,53,122,109,48,32,49,97,54,32,54,32,48,32,48,32,48,32,54,45,54,99,48,45,52,46,51,49,52,45,51,45,49,48,45,54,45,49,48,83,50,32,53,46,54,56,54,32,50,32,49,48,97,54,32,54,32,48,32,48,32,48,32,54,32,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,103,103,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,103,103,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,48,97,54,32,54,32,48,32,48,32,49,45,49,50,32,48,67,50,32,53,46,54,56,54,32,53,32,48,32,56,32,48,115,54,32,53,46,54,56,54,32,54,32,49,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,103,103,70,114,105,101,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,103,103,70,114,105,101,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,49,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,51,46,57,57,55,32,53,46,49,55,97,53,32,53,32,48,32,48,32,48,45,56,46,49,48,49,45,52,46,48,57,65,53,32,53,32,48,32,48,32,48,32,49,46,50,56,32,57,46,51,52,50,97,53,32,53,32,48,32,48,32,48,32,56,46,51,51,54,32,53,46,49,48,57,32,51,46,53,32,51,46,53,32,48,32,48,32,48,32,53,46,50,48,49,45,52,46,48,54,53,32,51,46,48,48,49,32,51,46,48,48,49,32,48,32,48,32,48,45,46,56,50,50,45,53,46,50,49,54,122,109,45,49,45,46,48,51,52,97,49,32,49,32,48,32,48,32,48,32,46,54,54,56,46,57,55,55,32,50,46,48,48,49,32,50,46,48,48,49,32,48,32,48,32,49,32,46,53,52,55,32,51,46,52,55,56,32,49,32,49,32,48,32,48,32,48,45,46,51,52,49,32,49,46,49,49,51,32,50,46,53,32,50,46,53,32,48,32,48,32,49,45,51,46,55,49,53,32,50,46,57,48,53,32,49,32,49,32,48,32,48,32,48,45,49,46,50,54,50,46,49,53,50,32,52,32,52,32,48,32,48,32,49,45,54,46,54,55,45,52,46,48,56,55,32,49,32,49,32,48,32,48,32,48,45,46,50,45,49,32,52,32,52,32,48,32,48,32,49,32,51,46,54,57,51,45,54,46,54,49,32,49,32,49,32,48,32,48,32,48,32,46,56,45,46,50,32,52,32,52,32,48,32,48,32,49,32,54,46,52,56,32,51,46,50,55,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,106,101,99,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,106,101,99,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,50,55,32,49,46,48,52,55,97,49,32,49,32,48,32,48,32,49,32,49,46,52,54,32,48,108,54,46,51,52,53,32,54,46,55,55,99,46,54,46,54,51,56,46,49,52,54,32,49,46,54,56,51,45,46,55,51,32,49,46,54,56,51,72,49,46,54,53,54,67,46,55,56,32,57,46,53,46,51,50,54,32,56,46,52,53,53,46,57,50,54,32,55,46,56,49,54,76,55,46,50,55,32,49,46,48,52,55,122,77,49,52,46,51,52,54,32,56,46,53,76,56,32,49,46,55,51,49,32,49,46,54,53,52,32,56,46,53,104,49,50,46,54,57,50,122,77,46,53,32,49,49,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,49,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,49,122,109,49,52,32,48,104,45,49,51,118,49,104,49,51,118,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,106,101,99,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,106,101,99,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,50,55,32,49,46,48,52,55,97,49,32,49,32,48,32,48,32,49,32,49,46,52,54,32,48,108,54,46,51,52,53,32,54,46,55,55,99,46,54,46,54,51,56,46,49,52,54,32,49,46,54,56,51,45,46,55,51,32,49,46,54,56,51,72,49,46,54,53,54,67,46,55,56,32,57,46,53,46,51,50,54,32,56,46,52,53,53,46,57,50,54,32,55,46,56,49,54,76,55,46,50,55,32,49,46,48,52,55,122,77,46,53,32,49,49,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,49,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,65,110,103,114,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,50,56,53,32,49,50,46,52,51,51,97,46,53,46,53,32,48,32,48,32,48,32,46,54,56,51,45,46,49,56,51,65,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,49,32,56,32,49,48,46,53,99,49,46,50,57,53,32,48,32,50,46,52,50,54,46,55,48,51,32,51,46,48,51,50,32,49,46,55,53,97,46,53,46,53,32,48,32,48,32,48,32,46,56,54,54,45,46,53,65,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,48,32,56,32,57,46,53,97,52,46,53,32,52,46,53,32,48,32,48,32,48,45,51,46,56,57,56,32,50,46,50,53,46,53,46,53,32,48,32,48,32,48,32,46,49,56,51,46,54,56,51,122,109,54,46,57,57,49,45,56,46,51,56,97,46,53,46,53,32,48,32,49,32,49,32,46,52,52,56,46,56,57,52,108,45,49,46,48,48,57,46,53,48,52,99,46,49,55,54,46,50,55,46,50,56,53,46,54,52,46,50,56,53,32,49,46,48,52,57,32,48,32,46,56,50,56,45,46,52,52,56,32,49,46,53,45,49,32,49,46,53,115,45,49,45,46,54,55,50,45,49,45,49,46,53,99,48,45,46,50,52,55,46,48,52,45,46,52,56,46,49,49,45,46,54,56,54,97,46,53,48,50,46,53,48,50,32,48,32,48,32,49,32,46,49,54,54,45,46,55,54,49,108,50,45,49,122,109,45,54,46,53,53,50,32,48,97,46,53,46,53,32,48,32,48,32,48,45,46,52,52,56,46,56,57,52,108,49,46,48,48,57,46,53,48,52,65,49,46,57,52,32,49,46,57,52,32,48,32,48,32,48,32,53,32,54,46,53,67,53,32,55,46,51,50,56,32,53,46,52,52,56,32,56,32,54,32,56,115,49,45,46,54,55,50,32,49,45,49,46,53,99,48,45,46,50,52,55,45,46,48,52,45,46,52,56,45,46,49,49,45,46,54,56,54,97,46,53,48,50,46,53,48,50,32,48,32,48,32,48,45,46,49,54,54,45,46,55,54,49,108,45,50,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,65,110,103,114,121,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,77,52,46,48,53,51,32,52,46,50,55,54,97,46,53,46,53,32,48,32,48,32,49,32,46,54,55,45,46,50,50,51,108,50,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,49,54,54,46,55,54,99,46,48,55,49,46,50,48,54,46,49,49,49,46,52,52,46,49,49,49,46,54,56,55,67,55,32,55,46,51,50,56,32,54,46,53,53,50,32,56,32,54,32,56,115,45,49,45,46,54,55,50,45,49,45,49,46,53,99,48,45,46,52,48,56,46,49,48,57,45,46,55,55,56,46,50,56,53,45,49,46,48,52,57,108,45,49,46,48,48,57,45,46,53,48,52,97,46,53,46,53,32,48,32,48,32,49,45,46,50,50,51,45,46,54,55,122,109,46,50,51,50,32,56,46,49,53,55,97,46,53,46,53,32,48,32,48,32,49,45,46,49,56,51,45,46,54,56,51,65,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,49,32,56,32,57,46,53,97,52,46,53,32,52,46,53,32,48,32,48,32,49,32,51,46,56,57,56,32,50,46,50,53,46,53,46,53,32,48,32,49,32,49,45,46,56,54,54,46,53,65,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,48,32,56,32,49,48,46,53,97,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,48,45,51,46,48,51,50,32,49,46,55,53,46,53,46,53,32,48,32,48,32,49,45,46,54,56,51,46,49,56,51,122,77,49,48,32,56,99,45,46,53,53,50,32,48,45,49,45,46,54,55,50,45,49,45,49,46,53,32,48,45,46,50,52,55,46,48,52,45,46,52,56,46,49,49,45,46,54,56,54,97,46,53,48,50,46,53,48,50,32,48,32,48,32,49,32,46,49,54,54,45,46,55,54,49,108,50,45,49,97,46,53,46,53,32,48,32,49,32,49,32,46,52,52,56,46,56,57,52,108,45,49,46,48,48,57,46,53,48,52,99,46,49,55,54,46,50,55,46,50,56,53,46,54,52,46,50,56,53,32,49,46,48,52,57,32,48,32,46,56,50,56,45,46,52,52,56,32,49,46,53,45,49,32,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,68,105,122,122,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,49,52,54,32,53,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,46,54,52,54,46,54,52,55,46,54,52,54,45,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,46,54,52,55,46,54,52,54,46,54,52,55,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,46,54,52,54,45,46,54,52,55,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,46,54,52,55,45,46,54,52,54,45,46,54,52,55,45,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,109,45,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,46,54,52,54,46,54,52,55,46,54,52,54,45,46,54,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,108,45,46,54,52,55,46,54,52,54,46,54,52,55,46,54,52,54,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,46,55,48,56,76,53,46,53,32,55,46,50,48,55,108,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,46,54,52,55,45,46,54,52,54,45,46,54,52,55,45,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,77,49,48,32,49,49,97,50,32,50,32,48,32,49,32,49,45,52,32,48,32,50,32,50,32,48,32,48,32,49,32,52,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,68,105,122,122,121,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,77,52,46,49,52,54,32,53,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,46,54,52,54,46,54,52,55,46,54,52,54,45,46,54,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,108,45,46,54,52,55,46,54,52,54,46,54,52,55,46,54,52,54,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,46,55,48,56,76,53,46,53,32,55,46,50,48,55,108,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,46,54,52,55,45,46,54,52,54,45,46,54,52,55,45,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,109,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,46,54,52,54,46,54,52,55,46,54,52,54,45,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,46,54,52,55,46,54,52,54,46,54,52,55,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,46,54,52,54,45,46,54,52,55,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,46,54,52,55,45,46,54,52,54,45,46,54,52,55,45,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,77,56,32,49,51,97,50,32,50,32,48,32,49,32,49,32,48,45,52,32,50,32,50,32,48,32,48,32,49,32,48,32,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,77,52,46,53,32,54,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,109,53,32,48,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,109,45,53,32,52,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,70,114,111,119,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,50,56,53,32,49,50,46,52,51,51,97,46,53,46,53,32,48,32,48,32,48,32,46,54,56,51,45,46,49,56,51,65,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,49,32,56,32,49,48,46,53,99,49,46,50,57,53,32,48,32,50,46,52,50,54,46,55,48,51,32,51,46,48,51,50,32,49,46,55,53,97,46,53,46,53,32,48,32,48,32,48,32,46,56,54,54,45,46,53,65,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,48,32,56,32,57,46,53,97,52,46,53,32,52,46,53,32,48,32,48,32,48,45,51,46,56,57,56,32,50,46,50,53,46,53,46,53,32,48,32,48,32,48,32,46,49,56,51,46,54,56,51,122,77,55,32,54,46,53,67,55,32,55,46,51,50,56,32,54,46,53,53,50,32,56,32,54,32,56,115,45,49,45,46,54,55,50,45,49,45,49,46,53,83,53,46,52,52,56,32,53,32,54,32,53,115,49,32,46,54,55,50,32,49,32,49,46,53,122,109,52,32,48,99,48,32,46,56,50,56,45,46,52,52,56,32,49,46,53,45,49,32,49,46,53,115,45,49,45,46,54,55,50,45,49,45,49,46,53,83,57,46,52,52,56,32,53,32,49,48,32,53,115,49,32,46,54,55,50,32,49,32,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,70,114,111,119,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,77,55,32,54,46,53,67,55,32,55,46,51,50,56,32,54,46,53,53,50,32,56,32,54,32,56,115,45,49,45,46,54,55,50,45,49,45,49,46,53,83,53,46,52,52,56,32,53,32,54,32,53,115,49,32,46,54,55,50,32,49,32,49,46,53,122,109,45,50,46,55,49,53,32,53,46,57,51,51,97,46,53,46,53,32,48,32,48,32,49,45,46,49,56,51,45,46,54,56,51,65,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,49,32,56,32,57,46,53,97,52,46,53,32,52,46,53,32,48,32,48,32,49,32,51,46,56,57,56,32,50,46,50,53,46,53,46,53,32,48,32,48,32,49,45,46,56,54,54,46,53,65,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,48,32,56,32,49,48,46,53,97,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,48,45,51,46,48,51,50,32,49,46,55,53,46,53,46,53,32,48,32,48,32,49,45,46,54,56,51,46,49,56,51,122,77,49,48,32,56,99,45,46,53,53,50,32,48,45,49,45,46,54,55,50,45,49,45,49,46,53,83,57,46,52,52,56,32,53,32,49,48,32,53,115,49,32,46,54,55,50,32,49,32,49,46,53,83,49,48,46,53,53,50,32,56,32,49,48,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,72,101,97,114,116,69,121,101,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,46,51,49,53,32,49,48,46,48,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,52,56,46,55,51,54,65,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,49,32,55,46,57,54,53,32,49,51,97,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,49,45,51,46,56,57,56,45,50,46,50,53,46,53,46,53,32,48,32,48,32,49,32,46,53,52,56,45,46,55,51,54,104,46,48,48,53,108,46,48,49,55,46,48,48,53,46,48,54,55,46,48,49,53,46,50,53,50,46,48,53,53,99,46,50,49,53,46,48,52,54,46,53,49,53,46,49,48,56,46,56,53,55,46,49,54,57,46,54,57,51,46,49,50,52,32,49,46,53,50,50,46,50,52,50,32,50,46,49,53,50,46,50,52,50,46,54,51,32,48,32,49,46,52,54,45,46,49,49,56,32,50,46,49,53,50,45,46,50,52,50,97,50,54,46,53,56,32,50,54,46,53,56,32,48,32,48,32,48,32,49,46,49,48,57,45,46,50,50,52,108,46,48,54,55,45,46,48,49,53,46,48,49,55,45,46,48,48,52,46,48,48,53,45,46,48,48,50,122,77,52,46,55,53,54,32,52,46,53,54,54,99,46,55,54,51,45,49,46,52,50,52,32,52,46,48,50,45,46,49,50,46,57,53,50,32,51,46,52,51,52,45,52,46,52,57,54,45,49,46,53,57,54,45,50,46,51,53,45,52,46,50,57,56,45,46,57,53,50,45,51,46,52,51,52,122,109,54,46,52,56,56,32,48,99,49,46,51,57,56,45,46,56,54,52,32,51,46,53,52,52,32,49,46,56,51,56,45,46,57,53,50,32,51,46,52,51,52,45,51,46,48,54,55,45,51,46,53,53,52,46,49,57,45,52,46,56,53,56,46,57,53,50,45,51,46,52,51,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,72,101,97,114,116,69,121,101,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,48,97,56,32,56,32,48,32,49,32,48,32,48,32,49,54,65,56,32,56,32,48,32,48,32,48,32,56,32,48,122,77,52,46,55,53,54,32,52,46,53,54,54,99,46,55,54,51,45,49,46,52,50,52,32,52,46,48,50,45,46,49,50,46,57,53,50,32,51,46,52,51,52,45,52,46,52,57,54,45,49,46,53,57,54,45,50,46,51,53,45,52,46,50,57,56,45,46,57,53,50,45,51,46,52,51,52,122,109,54,46,53,53,57,32,53,46,52,52,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,52,56,46,55,51,54,65,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,49,32,55,46,57,54,53,32,49,51,97,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,49,45,51,46,56,57,56,45,50,46,50,53,46,53,46,53,32,48,32,48,32,49,32,46,53,52,56,45,46,55,51,54,104,46,48,48,53,108,46,48,49,55,46,48,48,53,46,48,54,55,46,48,49,53,46,50,53,50,46,48,53,53,99,46,50,49,53,46,48,52,54,46,53,49,53,46,49,48,56,46,56,53,55,46,49,54,57,46,54,57,51,46,49,50,52,32,49,46,53,50,50,46,50,52,50,32,50,46,49,53,50,46,50,52,50,46,54,51,32,48,32,49,46,52,54,45,46,49,49,56,32,50,46,49,53,50,45,46,50,52,50,97,50,54,46,53,56,32,50,54,46,53,56,32,48,32,48,32,48,32,49,46,49,48,57,45,46,50,50,52,108,46,48,54,55,45,46,48,49,53,46,48,49,55,45,46,48,48,52,46,48,48,53,45,46,48,48,50,122,109,45,46,48,55,45,53,46,52,52,56,99,49,46,51,57,55,45,46,56,54,52,32,51,46,53,52,51,32,49,46,56,51,56,45,46,57,53,51,32,51,46,52,51,52,45,51,46,48,54,55,45,51,46,53,53,52,46,49,57,45,52,46,56,53,56,46,57,53,50,45,51,46,52,51,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,76,97,117,103,104,105,110,103,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,46,51,51,49,32,57,46,53,97,49,32,49,32,48,32,48,32,49,32,48,32,49,65,52,46,57,57,56,32,52,46,57,57,56,32,48,32,48,32,49,32,56,32,49,51,97,52,46,57,57,56,32,52,46,57,57,56,32,48,32,48,32,49,45,52,46,51,51,45,50,46,53,65,49,32,49,32,48,32,48,32,49,32,52,46,53,51,53,32,57,104,54,46,57,51,97,49,32,49,32,48,32,48,32,49,32,46,56,54,54,46,53,122,77,55,32,54,46,53,99,48,32,46,56,50,56,45,46,52,52,56,32,48,45,49,32,48,115,45,49,32,46,56,50,56,45,49,32,48,83,53,46,52,52,56,32,53,32,54,32,53,115,49,32,46,54,55,50,32,49,32,49,46,53,122,109,52,32,48,99,48,32,46,56,50,56,45,46,52,52,56,32,48,45,49,32,48,115,45,49,32,46,56,50,56,45,49,32,48,83,57,46,52,52,56,32,53,32,49,48,32,53,115,49,32,46,54,55,50,32,49,32,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,76,97,117,103,104,105,110,103,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,77,55,32,54,46,53,99,48,32,46,53,48,49,45,46,49,54,52,46,51,57,54,45,46,52,49,53,46,50,51,53,67,54,46,52,50,32,54,46,54,50,57,32,54,46,50,49,56,32,54,46,53,32,54,32,54,46,53,99,45,46,50,49,56,32,48,45,46,52,50,46,49,51,45,46,53,56,53,46,50,51,53,67,53,46,49,54,52,32,54,46,56,57,54,32,53,32,55,32,53,32,54,46,53,32,53,32,53,46,54,55,50,32,53,46,52,52,56,32,53,32,54,32,53,115,49,32,46,54,55,50,32,49,32,49,46,53,122,109,53,46,51,51,49,32,51,97,49,32,49,32,48,32,48,32,49,32,48,32,49,65,52,46,57,57,56,32,52,46,57,57,56,32,48,32,48,32,49,32,56,32,49,51,97,52,46,57,57,56,32,52,46,57,57,56,32,48,32,48,32,49,45,52,46,51,51,45,50,46,53,65,49,32,49,32,48,32,48,32,49,32,52,46,53,51,53,32,57,104,54,46,57,51,97,49,32,49,32,48,32,48,32,49,32,46,56,54,54,46,53,122,109,45,49,46,55,52,54,45,50,46,55,54,53,67,49,48,46,52,50,32,54,46,54,50,57,32,49,48,46,50,49,56,32,54,46,53,32,49,48,32,54,46,53,99,45,46,50,49,56,32,48,45,46,52,50,46,49,51,45,46,53,56,53,46,50,51,53,67,57,46,49,54,52,32,54,46,56,57,54,32,57,32,55,32,57,32,54,46,53,99,48,45,46,56,50,56,46,52,52,56,45,49,46,53,32,49,45,49,46,53,115,49,32,46,54,55,50,32,49,32,49,46,53,99,48,32,46,53,48,49,45,46,49,54,52,46,51,57,54,45,46,52,49,53,46,50,51,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,78,101,117,116,114,97,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,55,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,55,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,109,51,45,52,67,55,32,53,46,54,55,50,32,54,46,53,53,50,32,53,32,54,32,53,115,45,49,32,46,54,55,50,45,49,32,49,46,53,83,53,46,52,52,56,32,56,32,54,32,56,115,49,45,46,54,55,50,32,49,45,49,46,53,122,109,52,32,48,99,48,45,46,56,50,56,45,46,52,52,56,45,49,46,53,45,49,45,49,46,53,115,45,49,32,46,54,55,50,45,49,32,49,46,53,83,57,46,52,52,56,32,56,32,49,48,32,56,115,49,45,46,54,55,50,32,49,45,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,78,101,117,116,114,97,108,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,77,55,32,54,46,53,67,55,32,55,46,51,50,56,32,54,46,53,53,50,32,56,32,54,32,56,115,45,49,45,46,54,55,50,45,49,45,49,46,53,83,53,46,52,52,56,32,53,32,54,32,53,115,49,32,46,54,55,50,32,49,32,49,46,53,122,109,45,51,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,49,48,32,56,99,45,46,53,53,50,32,48,45,49,45,46,54,55,50,45,49,45,49,46,53,83,57,46,52,52,56,32,53,32,49,48,32,53,115,49,32,46,54,55,50,32,49,32,49,46,53,83,49,48,46,53,53,50,32,56,32,49,48,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,83,109,105,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,50,56,53,32,57,46,53,54,55,97,46,53,46,53,32,48,32,48,32,49,32,46,54,56,51,46,49,56,51,65,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,48,32,56,32,49,49,46,53,97,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,48,32,51,46,48,51,50,45,49,46,55,53,46,53,46,53,32,48,32,49,32,49,32,46,56,54,54,46,53,65,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,49,32,56,32,49,50,46,53,97,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,49,45,51,46,56,57,56,45,50,46,50,53,46,53,46,53,32,48,32,48,32,49,32,46,49,56,51,45,46,54,56,51,122,77,55,32,54,46,53,67,55,32,55,46,51,50,56,32,54,46,53,53,50,32,56,32,54,32,56,115,45,49,45,46,54,55,50,45,49,45,49,46,53,83,53,46,52,52,56,32,53,32,54,32,53,115,49,32,46,54,55,50,32,49,32,49,46,53,122,109,52,32,48,99,48,32,46,56,50,56,45,46,52,52,56,32,49,46,53,45,49,32,49,46,53,115,45,49,45,46,54,55,50,45,49,45,49,46,53,83,57,46,52,52,56,32,53,32,49,48,32,53,115,49,32,46,54,55,50,32,49,32,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,83,109,105,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,77,55,32,54,46,53,67,55,32,55,46,51,50,56,32,54,46,53,53,50,32,56,32,54,32,56,115,45,49,45,46,54,55,50,45,49,45,49,46,53,83,53,46,52,52,56,32,53,32,54,32,53,115,49,32,46,54,55,50,32,49,32,49,46,53,122,77,52,46,50,56,53,32,57,46,53,54,55,97,46,53,46,53,32,48,32,48,32,49,32,46,54,56,51,46,49,56,51,65,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,48,32,56,32,49,49,46,53,97,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,48,32,51,46,48,51,50,45,49,46,55,53,46,53,46,53,32,48,32,49,32,49,32,46,56,54,54,46,53,65,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,49,32,56,32,49,50,46,53,97,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,49,45,51,46,56,57,56,45,50,46,50,53,46,53,46,53,32,48,32,48,32,49,32,46,49,56,51,45,46,54,56,51,122,77,49,48,32,56,99,45,46,53,53,50,32,48,45,49,45,46,54,55,50,45,49,45,49,46,53,83,57,46,52,52,56,32,53,32,49,48,32,53,115,49,32,46,54,55,50,32,49,32,49,46,53,83,49,48,46,53,53,50,32,56,32,49,48,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,97,55,32,55,32,48,32,49,32,48,32,48,32,49,52,65,55,32,55,32,48,32,48,32,48,32,56,32,49,122,109,48,45,49,97,56,32,56,32,48,32,49,32,49,32,48,32,49,54,65,56,32,56,32,48,32,48,32,49,32,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,50,56,53,32,54,46,52,51,51,97,46,53,46,53,32,48,32,48,32,48,32,46,54,56,51,45,46,49,56,51,65,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,49,32,56,32,52,46,53,99,49,46,50,57,53,32,48,32,50,46,52,50,54,46,55,48,51,32,51,46,48,51,50,32,49,46,55,53,97,46,53,46,53,32,48,32,48,32,48,32,46,56,54,54,45,46,53,65,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,48,32,56,32,51,46,53,97,52,46,53,32,52,46,53,32,48,32,48,32,48,45,51,46,56,57,56,32,50,46,50,53,46,53,46,53,32,48,32,48,32,48,32,46,49,56,51,46,54,56,51,122,77,55,32,57,46,53,67,55,32,56,46,54,55,50,32,54,46,53,53,50,32,56,32,54,32,56,115,45,49,32,46,54,55,50,45,49,32,49,46,53,46,52,52,56,32,49,46,53,32,49,32,49,46,53,32,49,45,46,54,55,50,32,49,45,49,46,53,122,109,52,32,48,99,48,45,46,56,50,56,45,46,52,52,56,45,49,46,53,45,49,45,49,46,53,115,45,49,32,46,54,55,50,45,49,32,49,46,53,46,52,52,56,32,49,46,53,32,49,32,49,46,53,32,49,45,46,54,55,50,32,49,45,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,48,97,56,32,56,32,48,32,49,32,49,32,48,32,49,54,65,56,32,56,32,48,32,48,32,49,32,56,32,48,122,77,55,32,57,46,53,67,55,32,56,46,54,55,50,32,54,46,53,53,50,32,56,32,54,32,56,115,45,49,32,46,54,55,50,45,49,32,49,46,53,46,52,52,56,32,49,46,53,32,49,32,49,46,53,32,49,45,46,54,55,50,32,49,45,49,46,53,122,77,52,46,50,56,53,32,54,46,52,51,51,97,46,53,46,53,32,48,32,48,32,48,32,46,54,56,51,45,46,49,56,51,65,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,49,32,56,32,52,46,53,99,49,46,50,57,53,32,48,32,50,46,52,50,54,46,55,48,51,32,51,46,48,51,50,32,49,46,55,53,97,46,53,46,53,32,48,32,48,32,48,32,46,56,54,54,45,46,53,65,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,48,32,56,32,51,46,53,97,52,46,53,32,52,46,53,32,48,32,48,32,48,45,51,46,56,57,56,32,50,46,50,53,46,53,46,53,32,48,32,48,32,48,32,46,49,56,51,46,54,56,51,122,77,49,48,32,56,99,45,46,53,53,50,32,48,45,49,32,46,54,55,50,45,49,32,49,46,53,115,46,52,52,56,32,49,46,53,32,49,32,49,46,53,32,49,45,46,54,55,50,32,49,45,49,46,53,83,49,48,46,53,53,50,32,56,32,49,48,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,57,54,56,32,57,46,55,53,97,46,53,46,53,32,48,32,49,32,48,45,46,56,54,54,46,53,65,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,48,32,56,32,49,50,46,53,97,52,46,53,32,52,46,53,32,48,32,48,32,48,32,51,46,56,57,56,45,50,46,50,53,46,53,46,53,32,48,32,49,32,48,45,46,56,54,54,45,46,53,65,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,49,32,56,32,49,49,46,53,97,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,49,45,51,46,48,51,50,45,49,46,55,53,122,77,55,32,53,46,49,49,54,86,53,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,46,50,56,97,49,32,49,32,48,32,48,32,48,45,46,57,55,32,49,46,50,52,51,108,46,51,49,49,32,49,46,50,52,50,65,50,32,50,32,48,32,48,32,48,32,52,46,53,54,49,32,56,72,53,97,50,32,50,32,48,32,48,32,48,32,49,46,57,57,52,45,49,46,56,51,57,65,50,46,57,57,32,50,46,57,57,32,48,32,48,32,49,32,56,32,54,99,46,51,57,51,32,48,32,46,55,52,46,48,54,52,32,49,46,48,48,54,46,49,54,49,65,50,32,50,32,48,32,48,32,48,32,49,49,32,56,104,46,52,51,56,97,50,32,50,32,48,32,48,32,48,32,49,46,57,52,45,49,46,53,49,53,108,46,51,49,49,45,49,46,50,52,50,65,49,32,49,32,48,32,48,32,48,32,49,50,46,55,50,32,52,72,49,48,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,46,49,49,54,65,52,46,50,50,32,52,46,50,50,32,48,32,48,32,48,32,56,32,53,99,45,46,51,53,32,48,45,46,54,57,46,48,52,45,49,32,46,49,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,109,45,49,32,48,65,55,32,55,32,48,32,49,32,48,32,49,32,56,97,55,32,55,32,48,32,48,32,48,32,49,52,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,77,50,46,51,49,32,53,46,50,52,51,65,49,32,49,32,48,32,48,32,49,32,51,46,50,56,32,52,72,54,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,46,49,49,54,65,52,46,50,50,32,52,46,50,50,32,48,32,48,32,49,32,56,32,53,99,46,51,53,32,48,32,46,54,57,46,48,52,32,49,32,46,49,49,54,86,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,46,55,50,97,49,32,49,32,48,32,48,32,49,32,46,57,55,32,49,46,50,52,51,108,45,46,51,49,49,32,49,46,50,52,50,65,50,32,50,32,48,32,48,32,49,32,49,49,46,52,51,57,32,56,72,49,49,97,50,32,50,32,48,32,48,32,49,45,49,46,57,57,52,45,49,46,56,51,57,65,50,46,57,57,32,50,46,57,57,32,48,32,48,32,48,32,56,32,54,99,45,46,51,57,51,32,48,45,46,55,52,46,48,54,52,45,49,46,48,48,54,46,49,54,49,65,50,32,50,32,48,32,48,32,49,32,53,32,56,104,45,46,52,51,56,97,50,32,50,32,48,32,48,32,49,45,49,46,57,52,45,49,46,53,49,53,76,50,46,51,49,32,53,46,50,52,51,122,77,52,46,57,54,57,32,57,46,55,53,65,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,48,32,56,32,49,49,46,53,97,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,48,32,51,46,48,51,50,45,49,46,55,53,46,53,46,53,32,48,32,49,32,49,32,46,56,54,54,46,53,65,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,49,32,56,32,49,50,46,53,97,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,49,45,51,46,56,57,56,45,50,46,50,53,46,53,46,53,32,48,32,48,32,49,32,46,56,54,54,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,87,105,110,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,87,105,110,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,50,56,53,32,57,46,53,54,55,97,46,53,46,53,32,48,32,48,32,49,32,46,54,56,51,46,49,56,51,65,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,48,32,56,32,49,49,46,53,97,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,48,32,51,46,48,51,50,45,49,46,55,53,46,53,46,53,32,48,32,49,32,49,32,46,56,54,54,46,53,65,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,49,32,56,32,49,50,46,53,97,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,49,45,51,46,56,57,56,45,50,46,50,53,46,53,46,53,32,48,32,48,32,49,32,46,49,56,51,45,46,54,56,51,122,77,55,32,54,46,53,67,55,32,55,46,51,50,56,32,54,46,53,53,50,32,56,32,54,32,56,115,45,49,45,46,54,55,50,45,49,45,49,46,53,83,53,46,52,52,56,32,53,32,54,32,53,115,49,32,46,54,55,50,32,49,32,49,46,53,122,109,49,46,55,53,55,45,46,52,51,55,97,46,53,46,53,32,48,32,48,32,49,32,46,54,56,46,49,57,52,46,57,51,52,46,57,51,52,32,48,32,48,32,48,32,46,56,49,51,46,52,57,51,99,46,51,51,57,32,48,32,46,54,52,53,45,46,49,57,46,56,49,51,45,46,52,57,51,97,46,53,46,53,32,48,32,49,32,49,32,46,56,55,52,46,52,56,54,65,49,46,57,51,52,32,49,46,57,51,52,32,48,32,48,32,49,32,49,48,46,50,53,32,55,46,55,53,99,45,46,55,51,32,48,45,49,46,51,53,54,45,46,52,49,50,45,49,46,54,56,55,45,49,46,48,48,55,97,46,53,46,53,32,48,32,48,32,49,32,46,49,57,52,45,46,54,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,109,111,106,105,87,105,110,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,109,111,106,105,87,105,110,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,48,97,56,32,56,32,48,32,49,32,49,32,48,32,49,54,65,56,32,56,32,48,32,48,32,49,32,56,32,48,122,77,55,32,54,46,53,67,55,32,53,46,54,55,50,32,54,46,53,53,50,32,53,32,54,32,53,115,45,49,32,46,54,55,50,45,49,32,49,46,53,83,53,46,52,52,56,32,56,32,54,32,56,115,49,45,46,54,55,50,32,49,45,49,46,53,122,77,52,46,50,56,53,32,57,46,53,54,55,97,46,53,46,53,32,48,32,48,32,48,45,46,49,56,51,46,54,56,51,65,52,46,52,57,56,32,52,46,52,57,56,32,48,32,48,32,48,32,56,32,49,50,46,53,97,52,46,53,32,52,46,53,32,48,32,48,32,48,32,51,46,56,57,56,45,50,46,50,53,46,53,46,53,32,48,32,49,32,48,45,46,56,54,54,45,46,53,65,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,49,32,56,32,49,49,46,53,97,51,46,52,57,56,32,51,46,52,57,56,32,48,32,48,32,49,45,51,46,48,51,50,45,49,46,55,53,46,53,46,53,32,48,32,48,32,48,45,46,54,56,51,45,46,49,56,51,122,109,53,46,49,53,50,45,51,46,51,49,97,46,53,46,53,32,48,32,48,32,48,45,46,56,55,52,46,52,56,54,99,46,51,51,46,53,57,53,46,57,53,56,32,49,46,48,48,55,32,49,46,54,56,55,32,49,46,48,48,55,46,55,51,32,48,32,49,46,51,53,54,45,46,52,49,50,32,49,46,54,56,55,45,49,46,48,48,55,97,46,53,46,53,32,48,32,48,32,48,45,46,56,55,52,45,46,52,56,54,46,57,51,52,46,57,51,52,32,48,32,48,32,49,45,46,56,49,51,46,52,57,51,46,57,51,52,46,57,51,52,32,48,32,48,32,49,45,46,56,49,51,45,46,52,57,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,110,118,101,108,111,112,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,110,118,101,108,111,112,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,46,50,49,55,108,55,32,52,46,50,32,55,45,52,46,50,86,52,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,109,49,51,32,50,46,51,56,51,108,45,52,46,55,53,56,32,50,46,56,53,53,76,49,53,32,49,49,46,49,49,52,118,45,53,46,55,51,122,109,45,46,48,51,52,32,54,46,56,55,56,76,57,46,50,55,49,32,56,46,56,50,32,56,32,57,46,53,56,51,32,54,46,55,50,56,32,56,46,56,50,108,45,53,46,54,57,52,32,51,46,52,52,65,49,32,49,32,48,32,48,32,48,32,50,32,49,51,104,49,50,97,49,32,49,32,48,32,48,32,48,32,46,57,54,54,45,46,55,51,57,122,77,49,32,49,49,46,49,49,52,108,52,46,55,53,56,45,50,46,56,55,54,76,49,32,53,46,51,56,51,118,53,46,55,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,110,118,101,108,111,112,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,110,118,101,108,111,112,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,48,53,32,51,46,53,53,53,65,50,32,50,32,48,32,48,32,49,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,49,46,57,53,32,49,46,53,53,53,76,56,32,56,46,52,49,52,46,48,53,32,51,46,53,53,53,122,77,48,32,52,46,54,57,55,118,55,46,49,48,52,108,53,46,56,48,51,45,51,46,53,53,56,76,48,32,52,46,54,57,55,122,77,54,46,55,54,49,32,56,46,56,51,108,45,54,46,53,55,32,52,46,48,50,55,65,50,32,50,32,48,32,48,32,48,32,50,32,49,52,104,49,50,97,50,32,50,32,48,32,48,32,48,32,49,46,56,48,56,45,49,46,49,52,52,108,45,54,46,53,55,45,52,46,48,50,55,76,56,32,57,46,53,56,54,108,45,49,46,50,51,57,45,46,55,53,55,122,109,51,46,52,51,54,45,46,53,56,54,76,49,54,32,49,49,46,56,48,49,86,52,46,54,57,55,108,45,53,46,56,48,51,32,51,46,53,52,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,110,118,101,108,111,112,101,79,112,101,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,52,55,32,49,46,51,49,56,97,49,32,49,32,48,32,48,32,48,45,46,57,52,32,48,108,45,54,32,51,46,50,65,49,32,49,32,48,32,48,32,48,32,49,32,53,46,52,118,46,56,49,56,108,53,46,55,50,52,32,51,46,52,54,53,76,56,32,56,46,57,49,55,108,49,46,50,55,54,46,55,54,54,76,49,53,32,54,46,50,49,56,86,53,46,52,97,49,32,49,32,48,32,48,32,48,45,46,53,51,45,46,56,56,50,108,45,54,45,51,46,50,122,77,49,53,32,55,46,51,56,56,108,45,52,46,55,53,52,32,50,46,56,55,55,76,49,53,32,49,51,46,49,49,55,118,45,53,46,55,51,122,109,45,46,48,51,53,32,54,46,56,55,52,76,56,32,49,48,46,48,56,51,108,45,54,46,57,54,53,32,52,46,49,56,65,49,32,49,32,48,32,48,32,48,32,50,32,49,53,104,49,50,97,49,32,49,32,48,32,48,32,48,32,46,57,54,53,45,46,55,51,56,122,77,49,32,49,51,46,49,49,55,108,52,46,55,53,52,45,50,46,56,53,50,76,49,32,55,46,51,56,55,118,53,46,55,51,122,77,55,46,48,53,57,46,52,51,53,97,50,32,50,32,48,32,48,32,49,32,49,46,56,56,50,32,48,108,54,32,51,46,50,65,50,32,50,32,48,32,48,32,49,32,49,54,32,53,46,52,86,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,53,46,52,97,50,32,50,32,48,32,48,32,49,32,49,46,48,53,57,45,49,46,55,54,53,108,54,45,51,46,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,110,118,101,108,111,112,101,79,112,101,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,57,52,49,46,52,51,53,97,50,32,50,32,48,32,48,32,48,45,49,46,56,56,50,32,48,108,45,54,32,51,46,50,65,50,32,50,32,48,32,48,32,48,32,48,32,53,46,52,118,46,51,49,51,108,54,46,55,48,57,32,51,46,57,51,51,76,56,32,56,46,57,50,56,108,49,46,50,57,49,46,55,49,55,76,49,54,32,53,46,55,49,53,86,53,46,52,97,50,32,50,32,48,32,48,32,48,45,49,46,48,53,57,45,49,46,55,54,53,108,45,54,45,51,46,50,122,77,49,54,32,54,46,56,55,51,108,45,53,46,54,57,51,32,51,46,51,51,55,76,49,54,32,49,51,46,51,55,50,118,45,54,46,53,122,109,45,46,48,53,57,32,55,46,54,49,49,76,56,32,49,48,46,48,55,50,46,48,53,57,32,49,52,46,52,56,52,65,50,32,50,32,48,32,48,32,48,32,50,32,49,54,104,49,50,97,50,32,50,32,48,32,48,32,48,32,49,46,57,52,49,45,49,46,53,49,54,122,77,48,32,49,51,46,51,55,51,108,53,46,54,57,51,45,51,46,49,54,51,76,48,32,54,46,56,55,51,118,54,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,120,99,108,97,109,97,116,105,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,48,48,50,32,49,49,97,49,32,49,32,48,32,49,32,49,32,50,32,48,32,49,32,49,32,48,32,48,32,49,45,50,32,48,122,77,55,46,49,32,52,46,57,57,53,97,46,57,48,53,46,57,48,53,32,48,32,49,32,49,32,49,46,56,32,48,108,45,46,51,53,32,51,46,53,48,55,97,46,53,53,51,46,53,53,51,32,48,32,48,32,49,45,49,46,49,32,48,76,55,46,49,32,52,46,57,57,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,48,48,50,32,49,49,97,49,32,49,32,48,32,49,32,49,32,50,32,48,32,49,32,49,32,48,32,48,32,49,45,50,32,48,122,77,55,46,49,32,52,46,57,57,53,97,46,57,48,53,46,57,48,53,32,48,32,49,32,49,32,49,46,56,32,48,108,45,46,51,53,32,51,46,53,48,55,97,46,53,53,50,46,53,53,50,32,48,32,48,32,49,45,49,46,49,32,48,76,55,46,49,32,52,46,57,57,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,56,32,52,97,46,57,48,53,46,57,48,53,32,48,32,48,32,48,45,46,57,46,57,57,53,108,46,51,53,32,51,46,53,48,55,97,46,53,53,50,46,53,53,50,32,48,32,48,32,48,32,49,46,49,32,48,108,46,51,53,45,51,46,53,48,55,65,46,57,48,53,46,57,48,53,32,48,32,48,32,48,32,56,32,52,122,109,46,48,48,50,32,54,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,57,53,46,52,51,53,99,46,53,56,45,46,53,56,32,49,46,53,50,45,46,53,56,32,50,46,49,32,48,108,54,46,53,49,53,32,54,46,53,49,54,99,46,53,56,46,53,56,46,53,56,32,49,46,53,49,57,32,48,32,50,46,48,57,56,76,57,46,48,53,32,49,53,46,53,54,53,99,45,46,53,56,46,53,56,45,49,46,53,49,57,46,53,56,45,50,46,48,57,56,32,48,76,46,52,51,53,32,57,46,48,53,97,49,46,52,56,50,32,49,46,52,56,50,32,48,32,48,32,49,32,48,45,50,46,48,57,56,76,54,46,57,53,46,52,51,53,122,109,49,46,52,46,55,97,46,52,57,53,46,52,57,53,32,48,32,48,32,48,45,46,55,32,48,76,49,46,49,51,52,32,55,46,54,53,97,46,52,57,53,46,52,57,53,32,48,32,48,32,48,32,48,32,46,55,108,54,46,53,49,54,32,54,46,53,49,54,97,46,52,57,53,46,52,57,53,32,48,32,48,32,48,32,46,55,32,48,108,54,46,53,49,54,45,54,46,53,49,54,97,46,52,57,53,46,52,57,53,32,48,32,48,32,48,32,48,45,46,55,76,56,46,51,53,32,49,46,49,51,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,48,48,50,32,49,49,97,49,32,49,32,48,32,49,32,49,32,50,32,48,32,49,32,49,32,48,32,48,32,49,45,50,32,48,122,77,55,46,49,32,52,46,57,57,53,97,46,57,48,53,46,57,48,53,32,48,32,49,32,49,32,49,46,56,32,48,108,45,46,51,53,32,51,46,53,48,55,97,46,53,53,50,46,53,53,50,32,48,32,48,32,49,45,49,46,49,32,48,76,55,46,49,32,52,46,57,57,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,48,53,46,52,51,53,99,45,46,53,56,45,46,53,56,45,49,46,53,50,45,46,53,56,45,50,46,49,32,48,76,46,52,51,54,32,54,46,57,53,99,45,46,53,56,46,53,56,45,46,53,56,32,49,46,53,49,57,32,48,32,50,46,48,57,56,108,54,46,53,49,54,32,54,46,53,49,54,99,46,53,56,46,53,56,32,49,46,53,49,57,46,53,56,32,50,46,48,57,56,32,48,108,54,46,53,49,54,45,54,46,53,49,54,99,46,53,56,45,46,53,56,46,53,56,45,49,46,53,49,57,32,48,45,50,46,48,57,56,76,57,46,48,53,46,52,51,53,122,77,56,32,52,99,46,53,51,53,32,48,32,46,57,53,52,46,52,54,50,46,57,46,57,57,53,108,45,46,51,53,32,51,46,53,48,55,97,46,53,53,50,46,53,53,50,32,48,32,48,32,49,45,49,46,49,32,48,76,55,46,49,32,52,46,57,57,53,65,46,57,48,53,46,57,48,53,32,48,32,48,32,49,32,56,32,52,122,109,46,48,48,50,32,54,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,52,46,49,52,54,65,46,53,46,53,32,48,32,48,32,49,32,52,46,56,57,51,32,48,104,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,51,53,51,46,49,52,54,108,52,46,51,57,52,32,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,49,32,46,49,52,54,46,51,53,51,118,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,49,45,46,49,52,54,46,51,53,51,108,45,52,46,51,57,52,32,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,49,45,46,51,53,51,46,49,52,54,72,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,49,45,46,51,53,51,45,46,49,52,54,76,46,49,52,54,32,49,49,46,52,54,65,46,53,46,53,32,48,32,48,32,49,32,48,32,49,49,46,49,48,55,86,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,49,32,46,49,52,54,45,46,51,53,51,76,52,46,53,52,46,49,52,54,122,77,53,46,49,32,49,76,49,32,53,46,49,118,53,46,56,76,53,46,49,32,49,53,104,53,46,56,108,52,46,49,45,52,46,49,86,53,46,49,76,49,48,46,57,32,49,72,53,46,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,48,48,50,32,49,49,97,49,32,49,32,48,32,49,32,49,32,50,32,48,32,49,32,49,32,48,32,48,32,49,45,50,32,48,122,77,55,46,49,32,52,46,57,57,53,97,46,57,48,53,46,57,48,53,32,48,32,49,32,49,32,49,46,56,32,48,108,45,46,51,53,32,51,46,53,48,55,97,46,53,53,50,46,53,53,50,32,48,32,48,32,49,45,49,46,49,32,48,76,55,46,49,32,52,46,57,57,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,52,54,46,49,52,54,65,46,53,46,53,32,48,32,48,32,48,32,49,49,46,49,48,55,32,48,72,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,48,45,46,51,53,51,46,49,52,54,76,46,49,52,54,32,52,46,53,52,65,46,53,46,53,32,48,32,48,32,48,32,48,32,52,46,56,57,51,118,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,48,32,46,49,52,54,46,51,53,51,108,52,46,51,57,52,32,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,48,32,46,51,53,51,46,49,52,54,104,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,48,32,46,51,53,51,45,46,49,52,54,108,52,46,51,57,52,45,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,48,32,46,49,52,54,45,46,51,53,51,86,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,48,45,46,49,52,54,45,46,51,53,51,76,49,49,46,52,54,46,49,52,54,122,77,56,32,52,99,46,53,51,53,32,48,32,46,57,53,52,46,52,54,50,46,57,46,57,57,53,108,45,46,51,53,32,51,46,53,48,55,97,46,53,53,50,46,53,53,50,32,48,32,48,32,49,45,49,46,49,32,48,76,55,46,49,32,52,46,57,57,53,65,46,57,48,53,46,57,48,53,32,48,32,48,32,49,32,56,32,52,122,109,46,48,48,50,32,54,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,48,48,50,32,49,49,97,49,32,49,32,48,32,49,32,49,32,50,32,48,32,49,32,49,32,48,32,48,32,49,45,50,32,48,122,77,55,46,49,32,52,46,57,57,53,97,46,57,48,53,46,57,48,53,32,48,32,49,32,49,32,49,46,56,32,48,108,45,46,51,53,32,51,46,53,48,55,97,46,53,53,50,46,53,53,50,32,48,32,48,32,49,45,49,46,49,32,48,76,55,46,49,32,52,46,57,57,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,54,32,52,99,46,53,51,53,32,48,32,46,57,53,52,46,52,54,50,46,57,46,57,57,53,108,45,46,51,53,32,51,46,53,48,55,97,46,53,53,50,46,53,53,50,32,48,32,48,32,49,45,49,46,49,32,48,76,55,46,49,32,52,46,57,57,53,65,46,57,48,53,46,57,48,53,32,48,32,48,32,49,32,56,32,52,122,109,46,48,48,50,32,54,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,57,51,56,32,50,46,48,49,54,65,46,49,51,46,49,51,32,48,32,48,32,49,32,56,46,48,48,50,32,50,97,46,49,51,46,49,51,32,48,32,48,32,49,32,46,48,54,51,46,48,49,54,46,49,52,54,46,49,52,54,32,48,32,48,32,49,32,46,48,53,52,46,48,53,55,108,54,46,56,53,55,32,49,49,46,54,54,55,99,46,48,51,54,46,48,54,46,48,51,53,46,49,50,52,46,48,48,50,46,49,56,51,97,46,49,54,51,46,49,54,51,32,48,32,48,32,49,45,46,48,53,52,46,48,54,46,49,49,54,46,49,49,54,32,48,32,48,32,49,45,46,48,54,54,46,48,49,55,72,49,46,49,52,54,97,46,49,49,53,46,49,49,53,32,48,32,48,32,49,45,46,48,54,54,45,46,48,49,55,46,49,54,51,46,49,54,51,32,48,32,48,32,49,45,46,48,53,52,45,46,48,54,46,49,55,54,46,49,55,54,32,48,32,48,32,49,32,46,48,48,50,45,46,49,56,51,76,55,46,56,56,52,32,50,46,48,55,51,97,46,49,52,55,46,49,52,55,32,48,32,48,32,49,32,46,48,53,52,45,46,48,53,55,122,109,49,46,48,52,52,45,46,52,53,97,49,46,49,51,32,49,46,49,51,32,48,32,48,32,48,45,49,46,57,54,32,48,76,46,49,54,53,32,49,51,46,50,51,51,99,45,46,52,53,55,46,55,55,56,46,48,57,49,32,49,46,55,54,55,46,57,56,32,49,46,55,54,55,104,49,51,46,55,49,51,99,46,56,56,57,32,48,32,49,46,52,51,56,45,46,57,57,46,57,56,45,49,46,55,54,55,76,56,46,57,56,50,32,49,46,53,54,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,48,48,50,32,49,50,97,49,32,49,32,48,32,49,32,49,32,50,32,48,32,49,32,49,32,48,32,48,32,49,45,50,32,48,122,77,55,46,49,32,53,46,57,57,53,97,46,57,48,53,46,57,48,53,32,48,32,49,32,49,32,49,46,56,32,48,108,45,46,51,53,32,51,46,53,48,55,97,46,53,53,50,46,53,53,50,32,48,32,48,32,49,45,49,46,49,32,48,76,55,46,49,32,53,46,57,57,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,57,56,50,32,49,46,53,54,54,97,49,46,49,51,32,49,46,49,51,32,48,32,48,32,48,45,49,46,57,54,32,48,76,46,49,54,53,32,49,51,46,50,51,51,99,45,46,52,53,55,46,55,55,56,46,48,57,49,32,49,46,55,54,55,46,57,56,32,49,46,55,54,55,104,49,51,46,55,49,51,99,46,56,56,57,32,48,32,49,46,52,51,56,45,46,57,57,46,57,56,45,49,46,55,54,55,76,56,46,57,56,50,32,49,46,53,54,54,122,77,56,32,53,99,46,53,51,53,32,48,32,46,57,53,52,46,52,54,50,46,57,46,57,57,53,108,45,46,51,53,32,51,46,53,48,55,97,46,53,53,50,46,53,53,50,32,48,32,48,32,49,45,49,46,49,32,48,76,55,46,49,32,53,46,57,57,53,65,46,57,48,53,46,57,48,53,32,48,32,48,32,49,32,56,32,53,122,109,46,48,48,50,32,54,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,120,99,108,117,100,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,120,99,108,117,100,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,50,104,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,54,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,49,50,32,50,72,53,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,55,104,55,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,121,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,121,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,115,45,51,45,53,46,53,45,56,45,53,46,53,83,48,32,56,32,48,32,56,115,51,32,53,46,53,32,56,32,53,46,53,83,49,54,32,56,32,49,54,32,56,122,77,49,46,49,55,51,32,56,97,49,51,46,49,51,51,32,49,51,46,49,51,51,32,48,32,48,32,49,32,49,46,54,54,45,50,46,48,52,51,67,52,46,49,50,32,52,46,54,54,56,32,53,46,56,56,32,51,46,53,32,56,32,51,46,53,99,50,46,49,50,32,48,32,51,46,56,55,57,32,49,46,49,54,56,32,53,46,49,54,56,32,50,46,52,53,55,65,49,51,46,49,51,51,32,49,51,46,49,51,51,32,48,32,48,32,49,32,49,52,46,56,50,56,32,56,99,45,46,48,53,56,46,48,56,55,45,46,49,50,50,46,49,56,51,45,46,49,57,53,46,50,56,56,45,46,51,51,53,46,52,56,45,46,56,51,32,49,46,49,50,45,49,46,52,54,53,32,49,46,55,53,53,67,49,49,46,56,55,57,32,49,49,46,51,51,50,32,49,48,46,49,49,57,32,49,50,46,53,32,56,32,49,50,46,53,99,45,50,46,49,50,32,48,45,51,46,56,55,57,45,49,46,49,54,56,45,53,46,49,54,56,45,50,46,52,53,55,65,49,51,46,49,51,52,32,49,51,46,49,51,52,32,48,32,48,32,49,32,49,46,49,55,50,32,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,53,46,53,97,50,46,53,32,50,46,53,32,48,32,49,32,48,32,48,32,53,32,50,46,53,32,50,46,53,32,48,32,48,32,48,32,48,45,53,122,77,52,46,53,32,56,97,51,46,53,32,51,46,53,32,48,32,49,32,49,32,55,32,48,32,51,46,53,32,51,46,53,32,48,32,48,32,49,45,55,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,121,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,121,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,53,32,56,97,50,46,53,32,50,46,53,32,48,32,49,32,49,45,53,32,48,32,50,46,53,32,50,46,53,32,48,32,48,32,49,32,53,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,56,115,51,45,53,46,53,32,56,45,53,46,53,83,49,54,32,56,32,49,54,32,56,115,45,51,32,53,46,53,45,56,32,53,46,53,83,48,32,56,32,48,32,56,122,109,56,32,51,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,48,32,48,45,55,32,51,46,53,32,51,46,53,32,48,32,48,32,48,32,48,32,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,121,101,83,108,97,115,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,121,101,83,108,97,115,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,46,51,53,57,32,49,49,46,50,51,56,67,49,53,46,48,54,32,57,46,55,50,32,49,54,32,56,32,49,54,32,56,115,45,51,45,53,46,53,45,56,45,53,46,53,97,55,46,48,50,56,32,55,46,48,50,56,32,48,32,48,32,48,45,50,46,55,57,46,53,56,56,108,46,55,55,46,55,55,49,65,53,46,57,52,52,32,53,46,57,52,52,32,48,32,48,32,49,32,56,32,51,46,53,99,50,46,49,50,32,48,32,51,46,56,55,57,32,49,46,49,54,56,32,53,46,49,54,56,32,50,46,52,53,55,65,49,51,46,49,51,52,32,49,51,46,49,51,52,32,48,32,48,32,49,32,49,52,46,56,50,56,32,56,99,45,46,48,53,56,46,48,56,55,45,46,49,50,50,46,49,56,51,45,46,49,57,53,46,50,56,56,45,46,51,51,53,46,52,56,45,46,56,51,32,49,46,49,50,45,49,46,52,54,53,32,49,46,55,53,53,45,46,49,54,53,46,49,54,53,45,46,51,51,55,46,51,50,56,45,46,53,49,55,46,52,56,54,108,46,55,48,56,46,55,48,57,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,46,50,57,55,32,57,46,49,55,54,97,51,46,53,32,51,46,53,32,48,32,48,32,48,45,52,46,52,55,52,45,52,46,52,55,52,108,46,56,50,51,46,56,50,51,97,50,46,53,32,50,46,53,32,48,32,48,32,49,32,50,46,56,50,57,32,50,46,56,50,57,108,46,56,50,50,46,56,50,50,122,109,45,50,46,57,52,51,32,49,46,50,57,57,108,46,56,50,50,46,56,50,50,97,51,46,53,32,51,46,53,32,48,32,48,32,49,45,52,46,52,55,52,45,52,46,52,55,52,108,46,56,50,51,46,56,50,51,97,50,46,53,32,50,46,53,32,48,32,48,32,48,32,50,46,56,50,57,32,50,46,56,50,57,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,51,53,32,53,46,52,55,99,45,46,49,56,46,49,54,45,46,51,53,51,46,51,50,50,45,46,53,49,56,46,52,56,55,65,49,51,46,49,51,52,32,49,51,46,49,51,52,32,48,32,48,32,48,32,49,46,49,55,50,32,56,108,46,49,57,53,46,50,56,56,99,46,51,51,53,46,52,56,46,56,51,32,49,46,49,50,32,49,46,52,54,53,32,49,46,55,53,53,67,52,46,49,50,49,32,49,49,46,51,51,50,32,53,46,56,56,49,32,49,50,46,53,32,56,32,49,50,46,53,99,46,55,49,54,32,48,32,49,46,51,57,45,46,49,51,51,32,50,46,48,50,45,46,51,54,108,46,55,55,46,55,55,50,65,55,46,48,50,57,32,55,46,48,50,57,32,48,32,48,32,49,32,56,32,49,51,46,53,67,51,32,49,51,46,53,32,48,32,56,32,48,32,56,115,46,57,51,57,45,49,46,55,50,49,32,50,46,54,52,49,45,51,46,50,51,56,108,46,55,48,56,46,55,48,57,122,109,49,48,46,50,57,54,32,56,46,56,56,52,108,45,49,50,45,49,50,32,46,55,48,56,45,46,55,48,56,32,49,50,32,49,50,45,46,55,48,56,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,121,101,83,108,97,115,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,121,101,83,108,97,115,104,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,55,57,32,49,50,46,57,49,50,108,45,49,46,54,49,52,45,49,46,54,49,53,97,51,46,53,32,51,46,53,32,48,32,48,32,49,45,52,46,52,55,52,45,52,46,52,55,52,108,45,50,46,48,54,45,50,46,48,54,67,46,57,51,56,32,54,46,50,55,56,32,48,32,56,32,48,32,56,115,51,32,53,46,53,32,56,32,53,46,53,97,55,46,48,50,55,32,55,46,48,50,55,32,48,32,48,32,48,32,50,46,55,57,45,46,53,56,56,122,77,53,46,50,49,32,51,46,48,56,56,65,55,46,48,50,56,32,55,46,48,50,56,32,48,32,48,32,49,32,56,32,50,46,53,99,53,32,48,32,56,32,53,46,53,32,56,32,53,46,53,115,45,46,57,51,57,32,49,46,55,50,49,45,50,46,54,52,49,32,51,46,50,51,56,108,45,50,46,48,54,50,45,50,46,48,54,50,97,51,46,53,32,51,46,53,32,48,32,48,32,48,45,52,46,52,55,52,45,52,46,52,55,52,76,53,46,50,49,32,51,46,48,56,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,53,50,53,32,55,46,54,52,54,97,50,46,53,32,50,46,53,32,48,32,48,32,48,32,50,46,56,50,57,32,50,46,56,50,57,108,45,50,46,56,51,45,50,46,56,50,57,122,109,52,46,57,53,46,55,48,56,108,45,50,46,56,50,57,45,50,46,56,51,97,50,46,53,32,50,46,53,32,48,32,48,32,49,32,50,46,56,50,57,32,50,46,56,50,57,122,109,51,46,49,55,49,32,54,108,45,49,50,45,49,50,32,46,55,48,56,45,46,55,48,56,32,49,50,32,49,50,45,46,55,48,56,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,69,121,101,103,108,97,115,115,101,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,69,121,101,103,108,97,115,115,101,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,54,97,50,32,50,32,48,32,49,32,49,32,48,32,52,32,50,32,50,32,48,32,48,32,49,32,48,45,52,122,109,50,46,54,50,53,46,53,52,55,97,51,32,51,32,48,32,48,32,48,45,53,46,53,56,52,46,57,53,51,72,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,46,53,52,49,65,51,32,51,32,48,32,48,32,48,32,55,32,56,97,49,32,49,32,48,32,48,32,49,32,50,32,48,32,51,32,51,32,48,32,48,32,48,32,53,46,57,53,57,46,53,104,46,53,52,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,46,53,52,49,97,51,32,51,32,48,32,48,32,48,45,53,46,53,56,52,45,46,57,53,51,65,49,46,57,57,51,32,49,46,57,57,51,32,48,32,48,32,48,32,56,32,54,99,45,46,53,51,50,32,48,45,49,46,48,49,54,46,50,48,56,45,49,46,51,55,53,46,53,52,55,122,77,49,52,32,56,97,50,32,50,32,48,32,49,32,49,45,52,32,48,32,50,32,50,32,48,32,48,32,49,32,52,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,97,99,101,98,111,111,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,97,99,101,98,111,111,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,46,48,52,57,99,48,45,52,46,52,52,54,45,51,46,53,56,50,45,56,46,48,53,45,56,45,56,46,48,53,67,51,46,53,56,32,48,45,46,48,48,50,32,51,46,54,48,51,45,46,48,48,50,32,56,46,48,53,99,48,32,52,46,48,49,55,32,50,46,57,50,54,32,55,46,51,52,55,32,54,46,55,53,32,55,46,57,53,49,118,45,53,46,54,50,53,104,45,50,46,48,51,86,56,46,48,53,72,54,46,55,53,86,54,46,50,55,53,99,48,45,50,46,48,49,55,32,49,46,49,57,53,45,51,46,49,51,49,32,51,46,48,50,50,45,51,46,49,51,49,46,56,55,54,32,48,32,49,46,55,57,49,46,49,53,55,32,49,46,55,57,49,46,49,53,55,118,49,46,57,56,104,45,49,46,48,48,57,99,45,46,57,57,51,32,48,45,49,46,51,48,51,46,54,50,49,45,49,46,51,48,51,32,49,46,50,53,56,118,49,46,53,49,104,50,46,50,49,56,108,45,46,51,53,52,32,50,46,51,50,54,72,57,46,50,53,86,49,54,99,51,46,56,50,52,45,46,54,48,52,32,54,46,55,53,45,51,46,57,51,52,32,54,46,55,53,45,55,46,57,53,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,48,32,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,65,114,114,111,119,68,111,119,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,46,55,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,50,45,50,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,57,46,50,57,51,86,53,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,48,32,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,65,114,114,111,119,68,111,119,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,56,32,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,46,55,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,50,45,50,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,57,46,50,57,51,86,53,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,65,114,114,111,119,85,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,54,46,55,48,55,108,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,108,45,50,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,50,32,50,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,56,46,55,48,56,76,55,46,53,32,54,46,55,48,55,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,48,32,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,65,114,114,111,119,85,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,55,46,53,32,54,46,55,48,55,76,54,46,51,53,52,32,55,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,50,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,54,46,55,48,55,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,54,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,66,97,114,71,114,97,112,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,32,49,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,122,109,51,32,48,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,122,109,51,32,48,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,48,32,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,66,97,114,71,114,97,112,104,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,109,45,50,32,49,49,46,53,118,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,50,46,53,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,122,109,45,51,32,48,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,66,105,110,97,114,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,53,50,54,32,49,51,46,48,57,99,46,57,55,54,32,48,32,49,46,53,50,52,45,46,55,57,32,49,46,53,50,52,45,50,46,50,48,53,32,48,45,49,46,52,49,50,45,46,53,52,56,45,50,46,50,48,51,45,49,46,53,50,52,45,50,46,50,48,51,45,46,57,55,56,32,48,45,49,46,53,50,54,46,55,57,45,49,46,53,50,54,32,50,46,50,48,51,32,48,32,49,46,52,49,53,46,53,52,56,32,50,46,50,48,54,32,49,46,53,50,54,32,50,46,50,48,54,122,109,45,46,56,51,50,45,50,46,50,48,53,99,48,45,49,46,48,53,46,50,57,45,49,46,54,49,50,46,56,51,50,45,49,46,54,49,50,46,51,53,56,32,48,32,46,54,48,55,46,50,52,55,46,55,51,51,46,55,50,49,76,52,46,55,32,49,49,46,49,51,55,97,54,46,55,52,57,32,54,46,55,52,57,32,48,32,48,32,49,45,46,48,48,54,45,46,50,53,50,122,109,46,56,51,50,32,49,46,54,49,52,99,45,46,51,54,32,48,45,46,54,48,54,45,46,50,52,54,45,46,55,51,50,45,46,55,49,56,108,49,46,53,53,54,45,49,46,49,52,53,99,46,48,48,51,46,48,55,57,46,48,48,53,46,49,54,52,46,48,48,53,46,50,52,57,32,48,32,49,46,48,53,50,45,46,50,57,32,49,46,54,49,52,45,46,56,50,57,32,49,46,54,49,52,122,109,53,46,51,50,57,46,53,48,49,118,45,46,53,57,53,72,57,46,55,51,86,56,46,55,55,50,104,45,46,54,57,108,45,49,46,49,57,46,55,56,54,118,46,54,56,56,76,56,46,57,56,54,32,57,46,53,104,46,48,53,118,50,46,57,48,54,104,45,49,46,49,56,86,49,51,104,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,48,32,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,66,105,110,97,114,121,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,53,50,54,32,57,46,50,55,51,99,45,46,53,52,50,32,48,45,46,56,51,50,46,53,54,51,45,46,56,51,50,32,49,46,54,49,50,32,48,32,46,48,56,56,46,48,48,51,46,49,55,51,46,48,48,54,46,50,53,50,108,49,46,53,54,45,49,46,49,52,51,99,45,46,49,50,54,45,46,52,55,52,45,46,51,55,53,45,46,55,50,45,46,55,51,51,45,46,55,50,122,109,45,46,55,51,50,32,50,46,53,48,56,99,46,49,50,54,46,52,55,50,46,51,55,50,46,55,49,56,46,55,51,50,46,55,49,56,46,53,52,32,48,32,46,56,51,45,46,53,54,51,46,56,51,45,49,46,54,49,52,32,48,45,46,48,56,53,45,46,48,48,51,45,46,49,55,45,46,48,48,54,45,46,50,53,108,45,49,46,53,53,54,32,49,46,49,52,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,55,46,48,53,32,49,48,46,56,56,53,99,48,32,49,46,52,49,53,45,46,53,52,56,32,50,46,50,48,54,45,49,46,53,50,52,32,50,46,50,48,54,67,52,46,53,52,56,32,49,51,46,48,57,32,52,32,49,50,46,51,32,52,32,49,48,46,56,56,53,99,48,45,49,46,52,49,50,46,53,52,56,45,50,46,50,48,51,32,49,46,53,50,54,45,50,46,50,48,51,46,57,55,54,32,48,32,49,46,53,50,52,46,55,57,32,49,46,53,50,52,32,50,46,50,48,51,122,109,51,46,56,48,53,32,49,46,53,50,86,49,51,104,45,51,118,45,46,53,57,53,104,49,46,49,56,49,86,57,46,53,104,45,46,48,53,108,45,49,46,49,51,54,46,55,52,55,118,45,46,54,56,56,108,49,46,49,57,45,46,55,56,54,104,46,54,57,118,51,46,54,51,51,104,49,46,49,50,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,66,114,101,97,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,66,114,101,97,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,55,104,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,55,104,49,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,109,50,32,49,50,104,45,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,50,72,50,118,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,118,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,66,114,101,97,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,66,114,101,97,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,48,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,55,72,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,77,50,32,49,50,104,49,50,118,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,50,122,77,46,53,32,49,48,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,67,104,101,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,56,53,52,32,54,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,56,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,48,32,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,67,104,101,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,67,104,101,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,109,45,49,46,49,52,54,32,54,46,56,53,52,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,56,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,67,111,100,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,67,111,100,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,54,52,54,32,53,46,54,52,54,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,53,46,55,48,55,32,56,108,49,46,54,52,55,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,50,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,50,45,50,122,109,50,46,55,48,56,32,48,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,49,48,46,50,57,51,32,56,32,56,46,54,52,54,32,57,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,108,50,45,50,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,49,48,45,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,67,111,100,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,67,111,100,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,54,46,54,52,54,32,53,46,54,52,54,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,53,46,55,48,55,32,56,108,49,46,54,52,55,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,50,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,50,45,50,122,109,50,46,55,48,56,32,48,108,50,32,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,48,46,50,57,51,32,56,32,56,46,54,52,54,32,54,46,51,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,68,105,102,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,68,105,102,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,54,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,55,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,52,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,52,122,109,45,50,46,53,32,54,46,53,65,46,53,46,53,32,48,32,48,32,49,32,54,32,49,48,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,49,48,45,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,68,105,102,102,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,68,105,102,102,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,56,46,53,32,52,46,53,86,54,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,55,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,77,54,32,49,48,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,52,46,53,86,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,53,46,53,76,49,52,32,52,46,53,122,109,45,51,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,51,86,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,46,53,104,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,53,32,54,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,51,46,55,57,51,76,54,46,51,53,52,32,57,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,50,32,50,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,50,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,46,53,32,49,48,46,50,57,51,86,54,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,109,45,49,32,52,118,51,46,55,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,50,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,49,49,46,50,57,51,86,55,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,53,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,55,46,55,48,55,76,54,46,51,53,52,32,56,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,50,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,55,46,55,48,55,86,49,49,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,54,46,51,53,52,32,57,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,108,50,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,56,46,55,48,55,86,49,50,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,46,55,48,55,76,54,46,51,53,52,32,57,46,56,53,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,32,49,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,54,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,54,122,109,45,50,46,53,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,122,109,45,51,32,48,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,109,46,53,32,49,48,118,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,50,46,53,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,122,109,45,51,32,48,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,48,53,32,49,49,46,56,56,53,99,48,32,49,46,52,49,53,45,46,53,52,56,32,50,46,50,48,54,45,49,46,53,50,52,32,50,46,50,48,54,67,52,46,53,52,56,32,49,52,46,48,57,32,52,32,49,51,46,51,32,52,32,49,49,46,56,56,53,99,48,45,49,46,52,49,50,46,53,52,56,45,50,46,50,48,51,32,49,46,53,50,54,45,50,46,50,48,51,46,57,55,54,32,48,32,49,46,53,50,52,46,55,57,32,49,46,53,50,52,32,50,46,50,48,51,122,109,45,49,46,53,50,52,45,49,46,54,49,50,99,45,46,53,52,50,32,48,45,46,56,51,50,46,53,54,51,45,46,56,51,50,32,49,46,54,49,50,32,48,32,46,48,56,56,46,48,48,51,46,49,55,51,46,48,48,54,46,50,53,50,108,49,46,53,53,57,45,49,46,49,52,51,99,45,46,49,50,54,45,46,52,55,52,45,46,51,55,53,45,46,55,50,45,46,55,51,51,45,46,55,50,122,109,45,46,55,51,50,32,50,46,53,48,56,99,46,49,50,54,46,52,55,50,46,51,55,50,46,55,49,56,46,55,51,50,46,55,49,56,46,53,52,32,48,32,46,56,51,45,46,53,54,51,46,56,51,45,49,46,54,49,52,32,48,45,46,48,56,53,45,46,48,48,51,45,46,49,55,45,46,48,48,54,45,46,50,53,108,45,49,46,53,53,54,32,49,46,49,52,54,122,109,54,46,48,54,49,46,54,50,52,86,49,52,104,45,51,118,45,46,53,57,53,104,49,46,49,56,49,86,49,48,46,53,104,45,46,48,53,108,45,49,46,49,51,54,46,55,52,55,118,45,46,54,56,56,108,49,46,49,57,45,46,55,56,54,104,46,54,57,118,51,46,54,51,51,104,49,46,49,50,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,53,50,54,32,49,48,46,50,55,51,99,45,46,53,52,50,32,48,45,46,56,51,50,46,53,54,51,45,46,56,51,50,32,49,46,54,49,50,32,48,32,46,48,56,56,46,48,48,51,46,49,55,51,46,48,48,54,46,50,53,50,108,49,46,53,53,57,45,49,46,49,52,51,99,45,46,49,50,54,45,46,52,55,52,45,46,51,55,53,45,46,55,50,45,46,55,51,51,45,46,55,50,122,109,45,46,55,51,50,32,50,46,53,48,56,99,46,49,50,54,46,52,55,50,46,51,55,50,46,55,49,56,46,55,51,50,46,55,49,56,46,53,52,32,48,32,46,56,51,45,46,53,54,51,46,56,51,45,49,46,54,49,52,32,48,45,46,48,56,53,45,46,48,48,51,45,46,49,55,45,46,48,48,54,45,46,50,53,108,45,49,46,53,53,54,32,49,46,49,52,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,109,45,50,46,52,53,32,56,46,51,56,53,99,48,32,49,46,52,49,53,45,46,53,52,56,32,50,46,50,48,54,45,49,46,53,50,52,32,50,46,50,48,54,67,52,46,53,52,56,32,49,52,46,48,57,32,52,32,49,51,46,51,32,52,32,49,49,46,56,56,53,99,48,45,49,46,52,49,50,46,53,52,56,45,50,46,50,48,51,32,49,46,53,50,54,45,50,46,50,48,51,46,57,55,54,32,48,32,49,46,53,50,52,46,55,57,32,49,46,53,50,52,32,50,46,50,48,51,122,109,51,46,56,48,53,32,49,46,53,50,86,49,52,104,45,51,118,45,46,53,57,53,104,49,46,49,56,49,86,49,48,46,53,104,45,46,48,53,108,45,49,46,49,51,54,46,55,52,55,118,45,46,54,56,56,108,49,46,49,57,45,46,55,56,54,104,46,54,57,118,51,46,54,51,51,104,49,46,49,50,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,52,46,53,86,57,104,45,49,86,52,46,53,104,45,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,51,86,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,55,72,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,53,46,53,76,49,52,32,52,46,53,122,77,49,51,32,49,50,104,49,118,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,50,104,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,50,122,77,46,53,32,49,48,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,48,104,53,46,50,57,51,65,49,32,49,32,48,32,48,32,49,32,49,48,32,46,50,57,51,76,49,51,46,55,48,55,32,52,97,49,32,49,32,48,32,48,32,49,32,46,50,57,51,46,55,48,55,86,57,72,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,109,53,46,53,32,49,46,53,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,108,45,51,45,51,122,77,50,32,49,50,104,49,50,118,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,50,122,77,46,53,32,49,48,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,56,53,52,32,55,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,55,46,53,32,57,46,55,57,51,32,54,46,51,53,52,32,56,46,54,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,49,46,53,32,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,51,45,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,109,49,46,51,53,52,32,52,46,51,53,52,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,57,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,52,46,53,86,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,53,46,53,76,49,52,32,52,46,53,122,109,45,51,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,51,86,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,46,53,104,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,46,54,52,54,32,54,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,50,32,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,48,46,50,57,51,32,57,32,56,46,54,52,54,32,55,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,109,45,49,46,50,57,50,32,48,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,56,108,50,32,50,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,76,53,46,55,48,55,32,57,108,49,46,54,52,55,45,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,54,46,54,52,54,32,55,46,54,52,54,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,53,46,55,48,55,32,49,48,108,49,46,54,52,55,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,50,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,50,45,50,122,109,50,46,55,48,56,32,48,108,50,32,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,48,46,50,57,51,32,49,48,32,56,46,54,52,54,32,56,46,51,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,55,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,53,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,53,122,109,45,50,46,53,32,54,46,53,65,46,53,46,53,32,48,32,48,32,49,32,54,32,49,49,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,56,32,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,56,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,57,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,54,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,54,122,109,45,50,46,53,32,54,46,53,65,46,53,46,53,32,48,32,48,32,49,32,54,32,49,50,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,53,32,54,97,46,53,46,53,32,48,32,49,32,48,45,49,32,48,104,45,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,52,32,55,46,53,118,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,46,53,32,49,49,104,46,52,55,51,108,45,46,52,52,55,32,49,46,51,52,50,97,46,53,46,53,32,48,32,49,32,48,32,46,57,52,56,46,51,49,54,76,55,46,48,50,55,32,49,49,72,55,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,49,104,46,52,55,51,108,46,53,53,51,32,49,46,54,53,56,97,46,53,46,53,32,48,32,49,32,48,32,46,57,52,56,45,46,51,49,54,76,49,48,46,48,50,55,32,49,49,104,46,52,55,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,50,32,57,46,53,118,45,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,48,46,53,32,54,104,45,50,122,77,53,32,55,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,55,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,56,46,53,32,54,104,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,50,32,55,46,53,118,50,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,46,52,55,51,108,46,52,52,55,32,49,46,51,52,50,97,46,53,46,53,32,48,32,48,32,49,45,46,57,52,56,46,51,49,54,76,56,46,57,55,51,32,49,49,72,56,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,49,104,45,46,52,55,51,108,45,46,53,53,51,32,49,46,54,53,56,97,46,53,46,53,32,48,32,49,32,49,45,46,57,52,56,45,46,51,49,54,76,53,46,57,55,51,32,49,49,72,53,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,32,57,46,53,118,45,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,46,53,32,54,104,50,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,56,56,52,32,54,46,54,56,97,46,53,46,53,32,48,32,49,32,48,45,46,55,54,56,46,54,52,76,55,46,51,52,57,32,49,48,108,45,50,46,50,51,51,32,50,46,54,56,97,46,53,46,53,32,48,32,48,32,48,32,46,55,54,56,46,54,52,76,56,32,49,48,46,55,56,49,108,50,46,49,49,54,32,50,46,53,52,97,46,53,46,53,32,48,32,48,32,48,32,46,55,54,56,45,46,54,52,49,76,56,46,54,53,49,32,49,48,108,50,46,50,51,51,45,50,46,54,56,97,46,53,46,53,32,48,32,48,32,48,45,46,55,54,56,45,46,54,52,76,56,32,57,46,50,49,57,108,45,50,46,49,49,54,45,50,46,53,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,53,46,56,56,52,32,54,46,54,56,76,56,32,57,46,50,49,57,108,50,46,49,49,54,45,50,46,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,54,56,46,54,52,49,76,56,46,54,53,49,32,49,48,108,50,46,50,51,51,32,50,46,54,56,97,46,53,46,53,32,48,32,48,32,49,45,46,55,54,56,46,54,52,76,56,32,49,48,46,55,56,49,108,45,50,46,49,49,54,32,50,46,53,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,54,56,45,46,54,52,49,76,55,46,51,52,57,32,49,48,32,53,46,49,49,54,32,55,46,51,50,97,46,53,46,53,32,48,32,49,32,49,32,46,55,54,56,45,46,54,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,48,104,53,46,50,57,51,65,49,32,49,32,48,32,48,32,49,32,49,48,32,46,50,57,51,76,49,51,46,55,48,55,32,52,97,49,32,49,32,48,32,48,32,49,32,46,50,57,51,46,55,48,55,86,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,109,53,46,53,32,49,46,53,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,108,45,51,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,57,52,51,32,54,72,53,46,48,53,55,76,53,32,56,104,46,53,99,46,49,56,45,49,46,48,57,54,46,51,53,54,45,49,46,49,57,50,32,49,46,54,57,52,45,49,46,50,51,53,108,46,50,57,51,45,46,48,49,118,53,46,48,57,99,48,32,46,52,55,45,46,49,46,53,56,50,45,46,56,57,56,46,54,53,53,118,46,53,72,57,46,52,49,118,45,46,53,99,45,46,56,48,51,45,46,48,55,51,45,46,57,48,51,45,46,49,56,52,45,46,57,48,51,45,46,54,53,52,86,54,46,55,53,53,108,46,50,57,56,46,48,49,99,49,46,51,51,56,46,48,52,51,32,49,46,53,49,52,46,49,52,32,49,46,54,57,52,32,49,46,50,51,53,104,46,53,108,45,46,48,53,55,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,52,46,53,86,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,53,46,53,76,49,52,32,52,46,53,122,109,45,51,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,51,86,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,46,53,104,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,53,46,48,53,55,32,54,104,53,46,56,56,54,76,49,49,32,56,104,45,46,53,99,45,46,49,56,45,49,46,48,57,54,45,46,51,53,54,45,49,46,49,57,50,45,49,46,54,57,52,45,49,46,50,51,53,108,45,46,50,57,56,45,46,48,49,118,53,46,48,57,99,48,32,46,52,55,46,49,46,53,56,50,46,57,48,51,46,54,53,53,118,46,53,72,54,46,53,57,118,45,46,53,99,46,55,57,57,45,46,48,55,51,46,56,57,56,45,46,49,56,52,46,56,57,56,45,46,54,53,52,86,54,46,55,53,53,108,45,46,50,57,51,46,48,49,67,53,46,56,53,54,32,54,46,56,48,56,32,53,46,54,56,32,54,46,57,48,53,32,53,46,53,32,56,72,53,108,46,48,53,55,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,53,48,50,32,55,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,53,46,53,76,49,52,32,52,46,53,86,49,52,122,77,52,32,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,48,108,50,46,50,50,52,45,50,46,50,50,52,97,46,53,46,53,32,48,32,48,32,49,32,46,54,49,45,46,48,55,53,76,56,32,49,49,108,50,46,49,53,55,45,51,46,48,50,97,46,53,46,53,32,48,32,48,32,49,32,46,55,54,45,46,48,54,51,76,49,51,32,49,48,86,52,46,53,104,45,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,51,86,49,72,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,48,104,53,46,50,57,51,65,49,32,49,32,48,32,48,32,49,32,49,48,32,46,50,57,51,76,49,51,46,55,48,55,32,52,97,49,32,49,32,48,32,48,32,49,32,46,50,57,51,46,55,48,55,118,53,46,53,56,54,108,45,50,46,55,51,45,50,46,55,51,97,49,32,49,32,48,32,48,32,48,45,49,46,53,50,46,49,50,55,108,45,49,46,56,56,57,32,50,46,54,52,52,45,49,46,55,54,57,45,49,46,48,54,50,97,49,32,49,32,48,32,48,32,48,45,49,46,50,50,50,46,49,53,76,50,32,49,50,46,50,57,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,109,53,46,53,32,49,46,53,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,108,45,51,45,51,122,109,45,49,46,52,57,56,32,52,97,49,46,53,32,49,46,53,32,48,32,49,32,48,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,53,54,52,32,56,46,50,55,76,49,52,32,49,49,46,55,48,56,86,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,46,50,57,51,108,51,46,53,55,56,45,51,46,53,55,55,32,50,46,53,54,32,49,46,53,51,54,32,50,46,52,50,54,45,51,46,51,57,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,32,55,118,49,46,48,55,54,99,46,53,52,46,49,54,54,32,49,32,46,53,57,55,32,49,32,49,46,50,50,52,118,50,46,52,99,48,32,46,56,49,54,45,46,55,56,49,32,49,46,51,45,49,46,53,32,49,46,51,104,45,51,99,45,46,55,49,57,32,48,45,49,46,53,45,46,52,56,52,45,49,46,53,45,49,46,51,86,57,46,51,99,48,45,46,54,50,55,46,52,54,45,49,46,48,53,56,32,49,45,49,46,50,50,52,86,55,97,50,32,50,32,48,32,49,32,49,32,52,32,48,122,77,55,32,55,118,49,104,50,86,55,97,49,32,49,32,48,32,48,32,48,45,50,32,48,122,77,54,32,57,46,51,118,50,46,52,99,48,32,46,48,52,50,46,48,50,46,49,48,55,46,49,48,53,46,49,55,53,65,46,54,51,55,46,54,51,55,32,48,32,48,32,48,32,54,46,53,32,49,50,104,51,97,46,54,52,46,54,52,32,48,32,48,32,48,32,46,51,57,53,45,46,49,50,53,99,46,48,56,53,45,46,48,54,56,46,49,48,53,45,46,49,51,51,46,49,48,53,45,46,49,55,53,86,57,46,51,99,48,45,46,48,52,50,45,46,48,50,45,46,49,48,55,45,46,49,48,53,45,46,49,55,53,65,46,54,51,55,46,54,51,55,32,48,32,48,32,48,32,57,46,53,32,57,104,45,51,97,46,54,51,55,46,54,51,55,32,48,32,48,32,48,45,46,51,57,53,46,49,50,53,67,54,46,48,50,32,57,46,49,57,51,32,54,32,57,46,50,53,56,32,54,32,57,46,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,32,55,118,49,46,48,55,54,99,46,53,52,46,49,54,54,32,49,32,46,53,57,55,32,49,32,49,46,50,50,52,118,50,46,52,99,48,32,46,56,49,54,45,46,55,56,49,32,49,46,51,45,49,46,53,32,49,46,51,104,45,51,99,45,46,55,49,57,32,48,45,49,46,53,45,46,52,56,52,45,49,46,53,45,49,46,51,86,57,46,51,99,48,45,46,54,50,55,46,52,54,45,49,46,48,53,56,32,49,45,49,46,50,50,52,86,55,97,50,32,50,32,48,32,49,32,49,32,52,32,48,122,77,55,32,55,118,49,104,50,86,55,97,49,32,49,32,48,32,48,32,48,45,50,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,55,97,49,32,49,32,48,32,48,32,49,32,50,32,48,118,49,72,55,86,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,49,48,32,55,118,49,46,48,55,54,99,46,53,52,46,49,54,54,32,49,32,46,53,57,55,32,49,32,49,46,50,50,52,118,50,46,52,99,48,32,46,56,49,54,45,46,55,56,49,32,49,46,51,45,49,46,53,32,49,46,51,104,45,51,99,45,46,55,49,57,32,48,45,49,46,53,45,46,52,56,52,45,49,46,53,45,49,46,51,86,57,46,51,99,48,45,46,54,50,55,46,52,54,45,49,46,48,53,56,32,49,45,49,46,50,50,52,86,55,97,50,32,50,32,48,32,49,32,49,32,52,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,55,97,49,32,49,32,48,32,48,32,49,32,50,32,48,118,49,72,55,86,55,122,77,54,32,57,46,51,99,48,45,46,48,52,50,46,48,50,45,46,49,48,55,46,49,48,53,45,46,49,55,53,65,46,54,51,55,46,54,51,55,32,48,32,48,32,49,32,54,46,53,32,57,104,51,97,46,54,52,46,54,52,32,48,32,48,32,49,32,46,51,57,53,46,49,50,53,99,46,48,56,53,46,48,54,56,46,49,48,53,46,49,51,51,46,49,48,53,46,49,55,53,118,50,46,52,99,48,32,46,48,52,50,45,46,48,50,46,49,48,55,45,46,49,48,53,46,49,55,53,65,46,54,51,55,46,54,51,55,32,48,32,48,32,49,32,57,46,53,32,49,50,104,45,51,97,46,54,51,55,46,54,51,55,32,48,32,48,32,49,45,46,51,57,53,45,46,49,50,53,67,54,46,48,50,32,49,49,46,56,48,55,32,54,32,49,49,46,55,52,50,32,54,32,49,49,46,55,86,57,46,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,49,48,32,55,118,49,46,48,55,54,99,46,53,52,46,49,54,54,32,49,32,46,53,57,55,32,49,32,49,46,50,50,52,118,50,46,52,99,48,32,46,56,49,54,45,46,55,56,49,32,49,46,51,45,49,46,53,32,49,46,51,104,45,51,99,45,46,55,49,57,32,48,45,49,46,53,45,46,52,56,52,45,49,46,53,45,49,46,51,86,57,46,51,99,48,45,46,54,50,55,46,52,54,45,49,46,48,53,56,32,49,45,49,46,50,50,52,86,55,97,50,32,50,32,48,32,49,32,49,32,52,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,53,32,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,46,54,51,52,108,45,46,53,52,57,45,46,51,49,55,97,46,53,46,53,32,48,32,49,32,48,45,46,53,46,56,54,54,76,54,32,55,108,45,46,53,52,57,46,51,49,55,97,46,53,46,53,32,48,32,49,32,48,32,46,53,46,56,54,54,108,46,53,52,57,45,46,51,49,55,86,56,46,53,97,46,53,46,53,32,48,32,49,32,48,32,49,32,48,118,45,46,54,51,52,108,46,53,52,57,46,51,49,55,97,46,53,46,53,32,48,32,49,32,48,32,46,53,45,46,56,54,54,76,56,32,55,108,46,53,52,57,45,46,51,49,55,97,46,53,46,53,32,48,32,49,32,48,45,46,53,45,46,56,54,54,108,45,46,53,52,57,46,51,49,55,86,53,46,53,122,109,45,50,32,52,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,109,45,51,32,50,118,46,54,51,52,108,46,53,52,57,45,46,51,49,55,97,46,53,46,53,32,48,32,49,32,49,32,46,53,46,56,54,54,76,55,32,55,108,46,53,52,57,46,51,49,55,97,46,53,46,53,32,48,32,49,32,49,45,46,53,46,56,54,54,76,54,46,53,32,55,46,56,54,54,86,56,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,46,54,51,52,108,45,46,53,52,57,46,51,49,55,97,46,53,46,53,32,48,32,49,32,49,45,46,53,45,46,56,54,54,76,53,32,55,108,45,46,53,52,57,45,46,51,49,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,56,54,54,108,46,53,52,57,46,51,49,55,86,53,46,53,97,46,53,46,53,32,48,32,49,32,49,32,49,32,48,122,109,45,50,32,52,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,109,48,32,50,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,52,46,53,86,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,53,46,53,76,49,52,32,52,46,53,122,109,45,51,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,51,86,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,46,53,104,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,54,32,56,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,54,46,54,52,97,49,32,49,32,48,32,48,32,48,45,49,46,50,52,51,45,46,57,55,108,45,49,32,46,50,53,65,49,32,49,32,48,32,48,32,48,32,56,32,54,46,56,57,118,52,46,51,48,54,65,50,46,53,55,50,32,50,46,53,55,50,32,48,32,48,32,48,32,55,32,49,49,99,45,46,53,32,48,45,46,57,55,52,46,49,51,52,45,49,46,51,51,56,46,51,55,55,45,46,51,54,46,50,52,45,46,54,54,50,46,54,50,56,45,46,54,54,50,32,49,46,49,50,51,115,46,51,48,49,46,56,56,51,46,54,54,50,32,49,46,49,50,51,99,46,51,54,52,46,50,52,51,46,56,51,57,46,51,55,55,32,49,46,51,51,56,46,51,55,55,46,53,32,48,32,46,57,55,52,45,46,49,51,52,32,49,46,51,51,56,45,46,51,55,55,46,51,54,45,46,50,52,46,54,54,50,45,46,54,50,56,46,54,54,50,45,49,46,49,50,51,86,56,46,56,57,108,50,45,46,53,86,54,46,54,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,49,49,32,54,46,54,52,118,49,46,55,53,108,45,50,32,46,53,118,51,46,54,49,99,48,32,46,52,57,53,45,46,51,48,49,46,56,56,51,45,46,54,54,50,32,49,46,49,50,51,67,55,46,57,55,52,32,49,51,46,56,54,54,32,55,46,52,57,57,32,49,52,32,55,32,49,52,99,45,46,53,32,48,45,46,57,55,52,45,46,49,51,52,45,49,46,51,51,56,45,46,51,55,55,45,46,51,54,45,46,50,52,45,46,54,54,50,45,46,54,50,56,45,46,54,54,50,45,49,46,49,50,51,115,46,51,48,49,45,46,56,56,51,46,54,54,50,45,49,46,49,50,51,67,54,46,48,50,54,32,49,49,46,49,51,52,32,54,46,53,48,49,32,49,49,32,55,32,49,49,99,46,51,53,54,32,48,32,46,55,46,48,54,56,32,49,32,46,49,57,54,86,54,46,56,57,97,49,32,49,32,48,32,48,32,49,32,46,55,53,55,45,46,57,55,108,49,45,46,50,53,65,49,32,49,32,48,32,48,32,49,32,49,49,32,54,46,54,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,56,97,51,32,51,32,48,32,49,32,49,45,54,32,48,32,51,32,51,32,48,32,48,32,49,32,54,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,118,57,46,50,53,53,83,49,50,32,49,50,32,56,32,49,50,115,45,53,32,49,46,55,53,53,45,53,32,49,46,55,53,53,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,49,49,32,56,97,51,32,51,32,48,32,49,32,49,45,54,32,48,32,51,32,51,32,48,32,48,32,49,32,54,32,48,122,109,50,32,53,46,55,53,53,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,46,50,52,53,83,52,32,49,50,32,56,32,49,50,115,53,32,49,46,55,53,53,32,53,32,49,46,55,53,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,54,46,56,56,51,118,52,46,50,51,52,97,46,53,46,53,32,48,32,48,32,48,32,46,55,53,55,46,52,50,57,108,51,46,53,50,56,45,50,46,49,49,55,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,56,53,56,76,54,46,55,53,55,32,54,46,52,53,52,97,46,53,46,53,32,48,32,48,32,48,45,46,55,53,55,46,52,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,54,32,54,46,56,56,51,97,46,53,46,53,32,48,32,48,32,49,32,46,55,53,55,45,46,52,50,57,108,51,46,53,50,56,32,50,46,49,49,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,56,53,56,108,45,51,46,53,50,56,32,50,46,49,49,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,53,55,45,46,52,51,86,54,46,56,56,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,54,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,46,53,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,86,49,49,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,57,46,53,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,52,46,53,86,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,53,46,53,76,49,52,32,52,46,53,122,109,45,51,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,51,86,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,46,53,104,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,56,46,53,32,55,118,49,46,53,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,86,49,49,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,57,46,53,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,55,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,52,46,53,86,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,53,46,53,76,49,52,32,52,46,53,122,109,45,51,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,51,86,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,46,53,104,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,54,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,55,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,72,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,52,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,109,45,53,45,46,53,72,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,109,48,32,51,104,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,80,112,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,54,97,46,53,46,53,32,48,32,48,32,48,45,46,52,57,54,46,52,51,56,108,45,46,53,32,52,65,46,53,46,53,32,48,32,48,32,48,32,52,46,53,32,49,49,104,51,118,50,46,48,49,54,99,45,46,56,54,51,46,48,53,53,45,49,46,53,46,50,53,49,45,49,46,53,46,52,56,52,32,48,32,46,50,55,54,46,56,57,53,46,53,32,50,32,46,53,115,50,45,46,50,50,52,32,50,45,46,53,99,48,45,46,50,51,51,45,46,54,51,55,45,46,52,50,57,45,49,46,53,45,46,52,56,52,86,49,49,104,51,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,54,45,46,53,54,50,108,45,46,53,45,52,65,46,53,46,53,32,48,32,48,32,48,32,49,49,32,54,72,53,122,109,50,32,51,46,55,56,86,55,46,50,50,99,48,45,46,48,57,54,46,49,48,54,45,46,49,53,54,46,49,57,45,46,49,48,54,108,50,46,49,51,32,49,46,50,55,57,97,46,49,50,53,46,49,50,53,32,48,32,48,32,49,32,48,32,46,50,49,52,108,45,50,46,49,51,32,49,46,50,56,65,46,49,50,53,46,49,50,53,32,48,32,48,32,49,32,55,32,57,46,55,55,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,80,112,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,56,46,53,97,50,32,50,32,48,32,49,32,48,32,52,32,48,32,50,32,50,32,48,32,48,32,48,45,52,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,54,46,53,32,54,118,46,50,54,52,97,51,32,51,32,48,32,49,32,49,32,48,32,52,46,52,55,50,86,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,54,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,52,46,53,86,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,53,46,53,76,49,52,32,52,46,53,122,109,45,51,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,51,86,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,46,53,104,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,53,32,49,50,46,53,65,46,53,46,53,32,48,32,48,32,49,32,53,32,49,50,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,50,65,46,53,46,53,32,48,32,48,32,49,32,53,32,49,48,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,49,46,54,51,57,45,51,46,55,48,56,108,49,46,51,51,46,56,56,54,32,49,46,56,53,52,45,49,46,56,53,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,56,57,45,46,48,52,55,108,49,46,56,56,56,46,57,55,52,86,56,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,56,115,49,46,53,52,45,49,46,50,55,52,32,49,46,54,51,57,45,49,46,50,48,56,122,77,54,46,50,53,32,54,97,46,55,53,46,55,53,32,48,32,49,32,48,32,48,45,49,46,53,46,55,53,46,55,53,32,48,32,48,32,48,32,48,32,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,55,32,54,46,50,53,97,46,55,53,46,55,53,32,48,32,49,32,49,45,49,46,53,32,48,32,46,55,53,46,55,53,32,48,32,48,32,49,32,49,46,53,32,48,122,109,45,46,56,54,49,32,49,46,53,52,50,108,49,46,51,51,46,56,56,54,32,49,46,56,53,52,45,49,46,56,53,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,56,57,45,46,48,52,55,108,49,46,56,56,56,46,57,55,52,86,57,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,57,115,49,46,53,52,45,49,46,50,55,52,32,49,46,54,51,57,45,49,46,50,48,56,122,77,53,32,49,49,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,109,48,32,50,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,57,72,51,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,77,51,32,49,50,118,45,50,104,50,118,50,72,51,122,109,48,32,49,104,50,118,50,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,49,122,109,51,32,50,118,45,50,104,55,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,54,122,109,55,45,51,72,54,118,45,50,104,55,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,51,32,57,104,49,48,118,49,72,54,118,50,104,55,118,49,72,54,118,50,72,53,118,45,50,72,51,118,45,49,104,50,118,45,50,72,51,86,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,48,104,53,46,53,118,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,46,53,104,49,86,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,53,32,51,86,48,76,49,52,32,52,46,53,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,51,122,109,46,53,32,49,48,46,53,99,48,32,46,50,55,54,45,46,56,57,53,46,53,45,50,32,46,53,115,45,50,45,46,50,50,52,45,50,45,46,53,46,56,57,53,45,46,53,32,50,45,46,53,32,50,32,46,50,50,52,32,50,32,46,53,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,52,46,53,48,52,32,54,46,52,51,56,65,46,53,46,53,32,48,32,48,32,49,32,53,32,54,104,54,97,46,53,46,53,32,48,32,48,32,49,32,46,52,57,54,46,52,51,56,108,46,53,32,52,65,46,53,46,53,32,48,32,48,32,49,32,49,49,46,53,32,49,49,104,45,51,118,50,46,48,49,54,97,55,46,55,57,53,32,55,46,55,57,53,32,48,32,48,32,48,45,49,32,48,86,49,49,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,54,45,46,53,54,50,108,46,53,45,52,122,77,55,32,55,46,50,50,49,118,50,46,53,53,56,99,48,32,46,48,57,55,46,49,48,54,46,49,53,55,46,49,57,46,49,48,55,108,50,46,49,51,45,49,46,50,55,57,97,46,49,50,53,46,49,50,53,32,48,32,48,32,48,32,48,45,46,50,49,52,108,45,50,46,49,51,45,49,46,50,56,97,46,49,50,53,46,49,50,53,32,48,32,48,32,48,45,46,49,57,46,49,48,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,57,46,55,56,86,55,46,50,50,99,48,45,46,48,57,54,46,49,48,54,45,46,49,53,54,46,49,57,45,46,49,48,54,108,50,46,49,51,32,49,46,50,55,57,97,46,49,50,53,46,49,50,53,32,48,32,48,32,49,32,48,32,46,50,49,52,108,45,50,46,49,51,32,49,46,50,56,65,46,49,50,53,46,49,50,53,32,48,32,48,32,49,32,55,32,57,46,55,55,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,53,32,54,104,54,97,46,53,46,53,32,48,32,48,32,49,32,46,52,57,54,46,52,51,56,108,46,53,32,52,65,46,53,46,53,32,48,32,48,32,49,32,49,49,46,53,32,49,49,104,45,51,118,50,46,48,49,54,99,46,56,54,51,46,48,53,53,32,49,46,53,46,50,53,49,32,49,46,53,46,52,56,52,32,48,32,46,50,55,54,45,46,56,57,53,46,53,45,50,32,46,53,115,45,50,45,46,50,50,52,45,50,45,46,53,99,48,45,46,50,51,51,46,54,51,55,45,46,52,50,57,32,49,46,53,45,46,52,56,52,86,49,49,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,54,45,46,53,54,50,108,46,53,45,52,65,46,53,46,53,32,48,32,48,32,49,32,53,32,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,57,72,51,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,77,51,32,49,50,118,45,50,104,50,118,50,72,51,122,109,48,32,49,104,50,118,50,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,49,122,109,51,32,50,118,45,50,104,51,118,50,72,54,122,109,52,32,48,118,45,50,104,51,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,122,109,51,45,51,104,45,51,118,45,50,104,51,118,50,122,109,45,55,32,48,118,45,50,104,51,118,50,72,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,49,50,118,45,50,104,51,118,50,72,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,51,32,57,104,49,48,118,49,104,45,51,118,50,104,51,118,49,104,45,51,118,50,72,57,118,45,50,72,54,118,50,72,53,118,45,50,72,51,118,45,49,104,50,118,45,50,72,51,86,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,55,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,53,122,77,53,32,57,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,53,76,57,46,53,32,48,122,109,48,32,49,118,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,52,46,53,32,57,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,122,77,52,32,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,52,56,53,32,54,46,56,55,57,97,46,53,46,53,32,48,32,49,32,48,45,46,57,55,46,50,52,50,108,49,46,53,32,54,97,46,53,46,53,32,48,32,48,32,48,32,46,57,54,55,46,48,49,76,56,32,57,46,52,48,50,108,49,46,48,49,56,32,51,46,55,51,97,46,53,46,53,32,48,32,48,32,48,32,46,57,54,55,45,46,48,49,108,49,46,53,45,54,97,46,53,46,53,32,48,32,48,32,48,45,46,57,55,45,46,50,52,50,108,45,49,46,48,51,54,32,52,46,49,52,52,45,46,57,57,55,45,51,46,54,53,53,97,46,53,46,53,32,48,32,48,32,48,45,46,57,54,52,32,48,108,45,46,57,57,55,32,51,46,54,53,53,76,53,46,52,56,53,32,54,46,56,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,53,46,52,56,53,32,54,46,56,55,57,108,49,46,48,51,54,32,52,46,49,52,52,46,57,57,55,45,51,46,54,53,53,97,46,53,46,53,32,48,32,48,32,49,32,46,57,54,52,32,48,108,46,57,57,55,32,51,46,54,53,53,32,49,46,48,51,54,45,52,46,49,52,52,97,46,53,46,53,32,48,32,48,32,49,32,46,57,55,46,50,52,50,108,45,49,46,53,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,57,54,55,46,48,49,76,56,32,57,46,52,48,50,108,45,49,46,48,49,56,32,51,46,55,51,97,46,53,46,53,32,48,32,48,32,49,45,46,57,54,55,45,46,48,49,108,45,49,46,53,45,54,97,46,53,46,53,32,48,32,49,32,49,32,46,57,55,45,46,50,52,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,88,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,56,53,52,32,55,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,55,46,50,57,51,32,57,108,45,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,76,56,32,57,46,55,48,55,108,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,76,56,46,55,48,55,32,57,108,49,46,49,52,55,45,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,32,56,46,50,57,51,32,54,46,56,53,52,32,55,46,49,52,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,52,86,52,46,53,76,57,46,53,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,57,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,88,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,77,54,46,56,53,52,32,55,46,49,52,54,76,56,32,56,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,57,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,57,46,55,48,55,108,45,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,57,32,54,46,49,52,54,32,55,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,90,105,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,55,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,46,57,51,56,108,46,52,32,49,46,53,57,57,97,49,32,49,32,48,32,48,32,49,45,46,52,49,54,32,49,46,48,55,52,108,45,46,57,51,46,54,50,97,49,32,49,32,48,32,48,32,49,45,49,46,49,49,32,48,108,45,46,57,50,57,45,46,54,50,97,49,32,49,32,48,32,48,32,49,45,46,52,49,53,45,49,46,48,55,52,76,53,32,56,46,52,51,56,86,55,46,53,122,109,50,32,48,72,54,118,46,57,51,56,97,49,32,49,32,48,32,48,32,49,45,46,48,51,46,50,52,51,108,45,46,52,32,49,46,53,57,56,46,57,51,46,54,50,46,57,50,57,45,46,54,50,45,46,52,45,49,46,53,57,56,65,49,32,49,32,48,32,48,32,49,32,55,32,56,46,52,51,56,86,55,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,52,46,53,86,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,53,46,53,76,49,52,32,52,46,53,122,109,45,51,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,51,86,49,104,45,50,118,49,104,45,49,118,49,104,49,118,49,104,45,49,118,49,104,49,118,49,72,54,86,53,72,53,86,52,104,49,86,51,72,53,86,50,104,49,86,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,46,53,104,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,114,109,97,114,107,90,105,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,57,46,52,51,56,86,56,46,53,104,49,118,46,57,51,56,97,49,32,49,32,48,32,48,32,48,32,46,48,51,46,50,52,51,108,46,52,32,49,46,53,57,56,45,46,57,51,46,54,50,45,46,57,51,45,46,54,50,46,52,45,49,46,53,57,56,97,49,32,49,32,48,32,48,32,48,32,46,48,51,45,46,50,52,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,50,57,51,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,55,48,55,32,52,76,49,48,32,46,50,57,51,65,49,32,49,32,48,32,48,32,48,32,57,46,50,57,51,32,48,122,77,57,46,53,32,51,46,53,118,45,50,108,51,32,51,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,109,45,52,45,46,53,86,50,104,45,49,86,49,72,54,118,49,104,49,118,49,72,54,118,49,104,49,118,49,72,54,118,49,104,49,118,49,72,53,46,53,86,54,104,45,49,86,53,104,49,86,52,104,45,49,86,51,104,49,122,109,48,32,52,46,53,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,46,57,51,56,108,46,52,32,49,46,53,57,57,97,49,32,49,32,48,32,48,32,49,45,46,52,49,54,32,49,46,48,55,52,108,45,46,57,51,46,54,50,97,49,32,49,32,48,32,48,32,49,45,49,46,49,48,57,32,48,108,45,46,57,51,45,46,54,50,97,49,32,49,32,48,32,48,32,49,45,46,52,49,53,45,49,46,48,55,52,108,46,52,45,49,46,53,57,57,86,56,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,115,101,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,115,101,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,53,32,53,97,46,53,46,53,32,48,32,49,32,48,45,49,32,48,104,45,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,52,32,54,46,53,118,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,46,53,32,49,48,104,46,52,55,51,108,45,46,52,52,55,32,49,46,51,52,50,97,46,53,46,53,32,48,32,49,32,48,32,46,57,52,56,46,51,49,54,76,55,46,48,50,55,32,49,48,72,55,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,49,104,46,52,55,51,108,46,53,53,51,32,49,46,54,53,56,97,46,53,46,53,32,48,32,49,32,48,32,46,57,52,56,45,46,51,49,54,76,49,48,46,48,50,55,32,49,48,104,46,52,55,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,50,32,56,46,53,118,45,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,48,46,53,32,53,104,45,50,122,77,53,32,54,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,49,48,45,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,97,115,101,108,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,97,115,101,108,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,54,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,56,46,53,32,53,104,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,50,32,54,46,53,118,50,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,46,52,55,51,108,46,52,52,55,32,49,46,51,52,50,97,46,53,46,53,32,48,32,48,32,49,45,46,57,52,56,46,51,49,54,76,56,46,57,55,51,32,49,48,72,56,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,49,104,45,46,52,55,51,108,45,46,53,53,51,32,49,46,54,53,56,97,46,53,46,53,32,48,32,49,32,49,45,46,57,52,56,45,46,51,49,54,76,53,46,57,55,51,32,49,48,72,53,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,32,56,46,53,118,45,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,46,53,32,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,120,99,101,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,120,99,101,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,49,56,32,52,46,54,49,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,52,46,48,54,52,76,56,32,55,46,50,49,57,108,50,46,49,49,54,45,50,46,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,54,56,46,54,52,49,76,56,46,54,53,49,32,56,108,50,46,50,51,51,32,50,46,54,56,97,46,53,46,53,32,48,32,48,32,49,45,46,55,54,56,46,54,52,76,56,32,56,46,55,56,49,108,45,50,46,49,49,54,32,50,46,53,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,54,56,45,46,54,52,49,76,55,46,51,52,57,32,56,32,53,46,49,49,54,32,53,46,51,50,97,46,53,46,53,32,48,32,48,32,49,32,46,48,54,52,45,46,55,48,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,48,32,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,69,120,99,101,108,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,69,120,99,101,108,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,53,46,56,56,52,32,52,46,54,56,76,56,32,55,46,50,49,57,108,50,46,49,49,54,45,50,46,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,54,56,46,54,52,49,76,56,46,54,53,49,32,56,108,50,46,50,51,51,32,50,46,54,56,97,46,53,46,53,32,48,32,48,32,49,45,46,55,54,56,46,54,52,76,56,32,56,46,55,56,49,108,45,50,46,49,49,54,32,50,46,53,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,54,56,45,46,54,52,49,76,55,46,51,52,57,32,56,32,53,46,49,49,54,32,53,46,51,50,97,46,53,46,53,32,48,32,49,32,49,32,46,55,54,56,45,46,54,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,52,32,48,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,70,111,110,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,70,111,110,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,57,52,51,32,52,72,53,46,48,53,55,76,53,32,54,104,46,53,99,46,49,56,45,49,46,48,57,54,46,51,53,54,45,49,46,49,57,50,32,49,46,54,57,52,45,49,46,50,51,53,108,46,50,57,51,45,46,48,49,118,54,46,48,57,99,48,32,46,52,55,45,46,49,46,53,56,50,45,46,56,57,56,46,54,53,53,118,46,53,72,57,46,52,49,118,45,46,53,99,45,46,56,48,51,45,46,48,55,51,45,46,57,48,51,45,46,49,56,52,45,46,57,48,51,45,46,54,53,52,86,52,46,55,53,53,108,46,50,57,56,46,48,49,99,49,46,51,51,56,46,48,52,51,32,49,46,53,49,52,46,49,52,32,49,46,54,57,52,32,49,46,50,51,53,104,46,53,108,45,46,48,53,55,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,48,32,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,70,111,110,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,70,111,110,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,53,46,48,53,55,32,52,104,53,46,56,56,54,76,49,49,32,54,104,45,46,53,99,45,46,49,56,45,49,46,48,57,54,45,46,51,53,54,45,49,46,49,57,50,45,49,46,54,57,52,45,49,46,50,51,53,108,45,46,50,57,56,45,46,48,49,118,54,46,48,57,99,48,32,46,52,55,46,49,46,53,56,50,46,57,48,51,46,54,53,53,118,46,53,72,54,46,53,57,118,45,46,53,99,46,55,57,57,45,46,48,55,51,46,56,57,56,45,46,49,56,52,46,56,57,56,45,46,54,53,52,86,52,46,55,53,53,108,45,46,50,57,51,46,48,49,67,53,46,56,53,54,32,52,46,56,48,56,32,53,46,54,56,32,52,46,57,48,53,32,53,46,53,32,54,72,53,108,46,48,53,55,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,73,109,97,103,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,73,109,97,103,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,48,48,50,32,53,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,51,32,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,108,45,50,46,48,56,51,45,50,46,48,56,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,54,46,48,54,51,76,56,32,49,49,32,53,46,56,51,53,32,57,46,55,97,46,53,46,53,32,48,32,48,32,48,45,46,54,49,49,46,48,55,54,76,51,32,49,50,86,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,73,109,97,103,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,73,109,97,103,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,48,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,46,50,57,51,108,45,50,46,55,51,45,50,46,55,51,97,49,32,49,32,48,32,48,32,48,45,49,46,53,50,46,49,50,55,108,45,49,46,56,56,57,32,50,46,54,52,52,45,49,46,55,54,57,45,49,46,48,54,50,97,49,32,49,32,48,32,48,32,48,45,49,46,50,50,50,46,49,53,76,50,32,49,50,46,50,57,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,109,52,46,48,48,50,32,53,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,48,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,53,54,52,32,56,46,50,55,76,49,52,32,49,49,46,55,48,56,86,49,52,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,46,50,57,51,108,51,46,53,55,56,45,51,46,53,55,55,32,50,46,53,54,32,49,46,53,51,54,32,50,46,52,50,54,45,51,46,51,57,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,76,111,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,76,111,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,72,55,86,54,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,109,50,32,50,46,48,55,54,86,54,97,50,32,50,32,48,32,49,32,48,45,52,32,48,118,49,46,48,55,54,99,45,46,53,52,46,49,54,54,45,49,32,46,53,57,55,45,49,32,49,46,50,50,52,118,50,46,52,99,48,32,46,56,49,54,46,55,56,49,32,49,46,51,32,49,46,53,32,49,46,51,104,51,99,46,55,49,57,32,48,32,49,46,53,45,46,52,56,52,32,49,46,53,45,49,46,51,86,56,46,51,99,48,45,46,54,50,55,45,46,52,54,45,49,46,48,53,56,45,49,45,49,46,50,50,52,122,77,54,46,49,48,53,32,56,46,49,50,53,65,46,54,51,55,46,54,51,55,32,48,32,48,32,49,32,54,46,53,32,56,104,51,97,46,54,52,46,54,52,32,48,32,48,32,49,32,46,51,57,53,46,49,50,53,99,46,48,56,53,46,48,54,56,46,49,48,53,46,49,51,51,46,49,48,53,46,49,55,53,118,50,46,52,99,48,32,46,48,52,50,45,46,48,50,46,49,48,55,45,46,49,48,53,46,49,55,53,65,46,54,51,55,46,54,51,55,32,48,32,48,32,49,32,57,46,53,32,49,49,104,45,51,97,46,54,51,55,46,54,51,55,32,48,32,48,32,49,45,46,51,57,53,45,46,49,50,53,67,54,46,48,50,32,49,48,46,56,48,55,32,54,32,49,48,46,55,52,50,32,54,32,49,48,46,55,86,56,46,51,99,48,45,46,48,52,50,46,48,50,45,46,49,48,55,46,49,48,53,45,46,49,55,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,48,32,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,76,111,99,107,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,76,111,99,107,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,72,55,86,54,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,109,50,32,50,46,48,55,54,86,54,97,50,32,50,32,48,32,49,32,48,45,52,32,48,118,49,46,48,55,54,99,45,46,53,52,46,49,54,54,45,49,32,46,53,57,55,45,49,32,49,46,50,50,52,118,50,46,52,99,48,32,46,56,49,54,46,55,56,49,32,49,46,51,32,49,46,53,32,49,46,51,104,51,99,46,55,49,57,32,48,32,49,46,53,45,46,52,56,52,32,49,46,53,45,49,46,51,86,56,46,51,99,48,45,46,54,50,55,45,46,52,54,45,49,46,48,53,56,45,49,45,49,46,50,50,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,48,32,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,76,111,99,107,50,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,76,111,99,107,50,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,54,97,49,32,49,32,48,32,48,32,49,32,50,32,48,118,49,72,55,86,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,109,45,50,32,54,118,49,46,48,55,54,99,46,53,52,46,49,54,54,32,49,32,46,53,57,55,32,49,32,49,46,50,50,52,118,50,46,52,99,48,32,46,56,49,54,45,46,55,56,49,32,49,46,51,45,49,46,53,32,49,46,51,104,45,51,99,45,46,55,49,57,32,48,45,49,46,53,45,46,52,56,52,45,49,46,53,45,49,46,51,86,56,46,51,99,48,45,46,54,50,55,46,52,54,45,49,46,48,53,56,32,49,45,49,46,50,50,52,86,54,97,50,32,50,32,48,32,49,32,49,32,52,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,76,111,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,76,111,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,54,97,49,32,49,32,48,32,48,32,49,32,50,32,48,118,49,72,55,86,54,122,77,54,32,56,46,51,99,48,45,46,48,52,50,46,48,50,45,46,49,48,55,46,49,48,53,45,46,49,55,53,65,46,54,51,55,46,54,51,55,32,48,32,48,32,49,32,54,46,53,32,56,104,51,97,46,54,52,46,54,52,32,48,32,48,32,49,32,46,51,57,53,46,49,50,53,99,46,48,56,53,46,48,54,56,46,49,48,53,46,49,51,51,46,49,48,53,46,49,55,53,118,50,46,52,99,48,32,46,48,52,50,45,46,48,50,46,49,48,55,45,46,49,48,53,46,49,55,53,65,46,54,51,55,46,54,51,55,32,48,32,48,32,49,32,57,46,53,32,49,49,104,45,51,97,46,54,51,55,46,54,51,55,32,48,32,48,32,49,45,46,51,57,53,45,46,49,50,53,67,54,46,48,50,32,49,48,46,56,48,55,32,54,32,49,48,46,55,52,50,32,54,32,49,48,46,55,86,56,46,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,109,45,50,32,54,118,49,46,48,55,54,99,46,53,52,46,49,54,54,32,49,32,46,53,57,55,32,49,32,49,46,50,50,52,118,50,46,52,99,48,32,46,56,49,54,45,46,55,56,49,32,49,46,51,45,49,46,53,32,49,46,51,104,45,51,99,45,46,55,49,57,32,48,45,49,46,53,45,46,52,56,52,45,49,46,53,45,49,46,51,86,56,46,51,99,48,45,46,54,50,55,46,52,54,45,49,46,48,53,56,32,49,45,49,46,50,50,52,86,54,97,50,32,50,32,48,32,49,32,49,32,52,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,77,101,100,105,99,97,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,53,32,52,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,46,54,51,52,108,45,46,53,52,57,45,46,51,49,55,97,46,53,46,53,32,48,32,49,32,48,45,46,53,46,56,54,54,76,55,32,54,108,45,46,53,52,57,46,51,49,55,97,46,53,46,53,32,48,32,49,32,48,32,46,53,46,56,54,54,108,46,53,52,57,45,46,51,49,55,86,55,46,53,97,46,53,46,53,32,48,32,49,32,48,32,49,32,48,118,45,46,54,51,52,108,46,53,52,57,46,51,49,55,97,46,53,46,53,32,48,32,49,32,48,32,46,53,45,46,56,54,54,76,57,32,54,108,46,53,52,57,45,46,51,49,55,97,46,53,46,53,32,48,32,49,32,48,45,46,53,45,46,56,54,54,108,45,46,53,52,57,46,51,49,55,86,52,46,53,122,77,53,46,53,32,57,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,49,48,45,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,77,101,100,105,99,97,108,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,56,46,53,32,52,46,53,118,46,54,51,52,108,46,53,52,57,45,46,51,49,55,97,46,53,46,53,32,48,32,49,32,49,32,46,53,46,56,54,54,76,57,32,54,108,46,53,52,57,46,51,49,55,97,46,53,46,53,32,48,32,49,32,49,45,46,53,46,56,54,54,76,56,46,53,32,54,46,56,54,54,86,55,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,46,54,51,52,108,45,46,53,52,57,46,51,49,55,97,46,53,46,53,32,48,32,49,32,49,45,46,53,45,46,56,54,54,76,55,32,54,108,45,46,53,52,57,45,46,51,49,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,56,54,54,108,46,53,52,57,46,51,49,55,86,52,46,53,97,46,53,46,53,32,48,32,49,32,49,32,49,32,48,122,77,53,46,53,32,57,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,109,48,32,50,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,77,105,110,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,77,105,110,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,48,32,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,77,105,110,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,77,105,110,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,54,32,55,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,77,117,115,105,99,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,77,117,115,105,99,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,51,48,52,32,51,46,49,51,97,49,32,49,32,48,32,48,32,49,32,49,46,49,57,54,46,57,56,118,49,46,56,108,45,50,46,53,46,53,118,53,46,48,57,99,48,32,46,52,57,53,45,46,51,48,49,46,56,56,51,45,46,54,54,50,32,49,46,49,50,51,67,55,46,57,55,52,32,49,50,46,56,54,54,32,55,46,52,57,57,32,49,51,32,55,32,49,51,99,45,46,53,32,48,45,46,57,55,52,45,46,49,51,52,45,49,46,51,51,56,45,46,51,55,55,45,46,51,54,45,46,50,52,45,46,54,54,50,45,46,54,50,56,45,46,54,54,50,45,49,46,49,50,51,115,46,51,48,49,45,46,56,56,51,46,54,54,50,45,49,46,49,50,51,67,54,46,48,50,54,32,49,48,46,49,51,52,32,54,46,53,48,49,32,49,48,32,55,32,49,48,99,46,51,53,54,32,48,32,46,55,46,48,54,56,32,49,32,46,49,57,54,86,52,46,52,49,97,49,32,49,32,48,32,48,32,49,32,46,56,48,52,45,46,57,56,108,49,46,53,45,46,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,48,32,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,77,117,115,105,99,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,77,117,115,105,99,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,109,45,46,53,32,52,46,49,49,118,49,46,56,108,45,50,46,53,46,53,118,53,46,48,57,99,48,32,46,52,57,53,45,46,51,48,49,46,56,56,51,45,46,54,54,50,32,49,46,49,50,51,67,55,46,57,55,52,32,49,50,46,56,54,54,32,55,46,52,57,57,32,49,51,32,55,32,49,51,99,45,46,53,32,48,45,46,57,55,52,45,46,49,51,52,45,49,46,51,51,56,45,46,51,55,55,45,46,51,54,45,46,50,52,45,46,54,54,50,45,46,54,50,56,45,46,54,54,50,45,49,46,49,50,51,115,46,51,48,49,45,46,56,56,51,46,54,54,50,45,49,46,49,50,51,67,54,46,48,50,54,32,49,48,46,49,51,52,32,54,46,53,48,49,32,49,48,32,55,32,49,48,99,46,51,53,54,32,48,32,46,55,46,48,54,56,32,49,32,46,49,57,54,86,52,46,52,49,97,49,32,49,32,48,32,48,32,49,32,46,56,48,52,45,46,57,56,108,49,46,53,45,46,51,97,49,32,49,32,48,32,48,32,49,32,49,46,49,57,54,46,57,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,80,101,114,115,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,48,46,55,53,53,83,49,50,32,49,49,32,56,32,49,49,115,45,53,32,49,46,55,53,53,45,53,32,49,46,55,53,53,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,56,122,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,49,48,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,80,101,114,115,111,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,109,45,49,32,55,97,51,32,51,32,48,32,49,32,49,45,54,32,48,32,51,32,51,32,48,32,48,32,49,32,54,32,48,122,109,45,51,32,52,99,50,46,54,50,51,32,48,32,52,46,49,52,54,46,56,50,54,32,53,32,49,46,55,53,53,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,49,46,50,52,53,67,51,46,56,53,52,32,49,49,46,56,50,53,32,53,46,51,55,55,32,49,49,32,56,32,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,80,108,97,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,80,108,97,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,49,48,46,49,49,55,86,53,46,56,56,51,97,46,53,46,53,32,48,32,48,32,49,32,46,55,53,55,45,46,52,50,57,108,51,46,53,50,56,32,50,46,49,49,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,56,53,56,108,45,51,46,53,50,56,32,50,46,49,49,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,53,55,45,46,52,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,48,32,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,80,108,97,121,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,80,108,97,121,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,54,32,53,46,56,56,51,97,46,53,46,53,32,48,32,48,32,49,32,46,55,53,55,45,46,52,50,57,108,51,46,53,50,56,32,50,46,49,49,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,56,53,56,108,45,51,46,53,50,56,32,50,46,49,49,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,53,55,45,46,52,51,86,53,46,56,56,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,80,108,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,53,32,54,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,49,46,53,72,54,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,46,53,86,49,48,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,56,46,53,72,49,48,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,56,46,53,86,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,49,48,45,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,80,108,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,80,108,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,56,46,53,32,54,118,49,46,53,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,86,49,48,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,46,53,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,54,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,80,111,115,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,80,111,115,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,56,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,49,48,45,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,80,111,115,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,80,111,115,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,52,46,53,32,51,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,109,48,32,50,104,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,56,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,80,112,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,80,112,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,52,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,49,50,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,57,46,50,51,54,97,51,32,51,32,48,32,49,32,48,32,48,45,52,46,52,55,50,86,52,46,53,122,109,48,32,50,46,53,97,50,32,50,32,48,32,49,32,49,32,52,32,48,32,50,32,50,32,48,32,48,32,49,45,52,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,49,48,45,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,80,112,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,80,112,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,55,97,50,32,50,32,48,32,49,32,48,32,52,32,48,32,50,32,50,32,48,32,48,32,48,45,52,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,54,46,53,32,52,46,53,118,46,50,54,52,97,51,32,51,32,48,32,49,32,49,32,48,32,52,46,52,55,50,86,49,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,82,105,99,104,116,101,120,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,52,46,50,53,97,46,55,53,46,55,53,32,48,32,49,32,49,45,49,46,53,32,48,32,46,55,53,46,55,53,32,48,32,48,32,49,32,49,46,53,32,48,122,109,45,46,56,54,49,32,49,46,53,52,50,108,49,46,51,51,46,56,56,54,32,49,46,56,53,52,45,49,46,56,53,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,56,57,45,46,48,52,55,108,49,46,56,56,56,46,57,55,52,86,55,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,55,115,49,46,53,52,45,49,46,50,55,52,32,49,46,54,51,57,45,49,46,50,48,56,122,77,53,32,57,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,49,48,45,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,82,105,99,104,116,101,120,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,55,32,52,46,50,53,97,46,55,53,46,55,53,32,48,32,49,32,49,45,49,46,53,32,48,32,46,55,53,46,55,53,32,48,32,48,32,49,32,49,46,53,32,48,122,109,45,46,56,54,49,32,49,46,53,52,50,108,49,46,51,51,46,56,56,54,32,49,46,56,53,52,45,49,46,56,53,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,56,57,45,46,48,52,55,108,49,46,56,56,56,46,57,55,52,86,55,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,55,115,49,46,53,52,45,49,46,50,55,52,32,49,46,54,51,57,45,49,46,50,48,56,122,77,53,32,57,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,109,48,32,50,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,82,117,108,101,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,82,117,108,101,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,52,104,49,48,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,52,122,109,57,32,54,72,54,118,50,104,55,86,55,122,109,48,32,51,72,54,118,50,104,55,118,45,50,122,109,48,32,51,72,54,118,50,104,54,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,49,122,109,45,56,32,50,118,45,50,72,51,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,122,109,45,50,45,51,104,50,118,45,50,72,51,118,50,122,109,48,45,51,104,50,86,55,72,51,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,82,117,108,101,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,82,117,108,101,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,52,104,49,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,109,50,32,55,72,54,118,50,104,56,86,55,122,109,48,32,51,72,54,118,50,104,56,118,45,50,122,109,48,32,51,72,54,118,51,104,54,97,50,32,50,32,48,32,48,32,48,32,50,45,50,118,45,49,122,109,45,57,32,51,118,45,51,72,50,118,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,122,109,45,51,45,52,104,51,118,45,50,72,50,118,50,122,109,48,45,51,104,51,86,55,72,50,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,83,108,105,100,101,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,52,97,46,53,46,53,32,48,32,48,32,48,45,46,52,57,54,46,52,51,56,108,45,46,53,32,52,65,46,53,46,53,32,48,32,48,32,48,32,52,46,53,32,57,104,51,118,50,46,48,49,54,99,45,46,56,54,51,46,48,53,53,45,49,46,53,46,50,53,49,45,49,46,53,46,52,56,52,32,48,32,46,50,55,54,46,56,57,53,46,53,32,50,32,46,53,115,50,45,46,50,50,52,32,50,45,46,53,99,48,45,46,50,51,51,45,46,54,51,55,45,46,52,50,57,45,49,46,53,45,46,52,56,52,86,57,104,51,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,54,45,46,53,54,50,108,45,46,53,45,52,65,46,53,46,53,32,48,32,48,32,48,32,49,49,32,52,72,53,122,109,50,32,51,46,55,56,86,53,46,50,50,99,48,45,46,48,57,54,46,49,48,54,45,46,49,53,54,46,49,57,45,46,49,48,54,108,50,46,49,51,32,49,46,50,55,57,97,46,49,50,53,46,49,50,53,32,48,32,48,32,49,32,48,32,46,50,49,52,108,45,50,46,49,51,32,49,46,50,56,65,46,49,50,53,46,49,50,53,32,48,32,48,32,49,32,55,32,55,46,55,55,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,49,48,45,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,83,108,105,100,101,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,55,46,55,56,86,53,46,50,50,99,48,45,46,48,57,54,46,49,48,54,45,46,49,53,54,46,49,57,45,46,49,48,54,108,50,46,49,51,32,49,46,50,55,57,97,46,49,50,53,46,49,50,53,32,48,32,48,32,49,32,48,32,46,50,49,52,108,45,50,46,49,51,32,49,46,50,56,65,46,49,50,53,46,49,50,53,32,48,32,48,32,49,32,55,32,55,46,55,55,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,53,32,52,104,54,97,46,53,46,53,32,48,32,48,32,49,32,46,52,57,54,46,52,51,56,108,46,53,32,52,65,46,53,46,53,32,48,32,48,32,49,32,49,49,46,53,32,57,104,45,51,118,50,46,48,49,54,99,46,56,54,51,46,48,53,53,32,49,46,53,46,50,53,49,32,49,46,53,46,52,56,52,32,48,32,46,50,55,54,45,46,56,57,53,46,53,45,50,32,46,53,115,45,50,45,46,50,50,52,45,50,45,46,53,99,48,45,46,50,51,51,46,54,51,55,45,46,52,50,57,32,49,46,53,45,46,52,56,52,86,57,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,54,45,46,53,54,50,108,46,53,45,52,65,46,53,46,53,32,48,32,48,32,49,32,53,32,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,52,104,49,48,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,52,122,109,57,32,54,104,45,51,118,50,104,51,86,55,122,109,48,32,51,104,45,51,118,50,104,51,118,45,50,122,109,48,32,51,104,45,51,118,50,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,49,122,109,45,52,32,50,118,45,50,72,54,118,50,104,51,122,109,45,52,32,48,118,45,50,72,51,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,122,109,45,50,45,51,104,50,118,45,50,72,51,118,50,122,109,48,45,51,104,50,86,55,72,51,118,50,122,109,51,45,50,118,50,104,51,86,55,72,54,122,109,51,32,51,72,54,118,50,104,51,118,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,52,104,49,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,109,50,32,55,104,45,52,118,50,104,52,86,55,122,109,48,32,51,104,45,52,118,50,104,52,118,45,50,122,109,48,32,51,104,45,52,118,51,104,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,118,45,49,122,109,45,53,32,51,118,45,51,72,54,118,51,104,51,122,109,45,52,32,48,118,45,51,72,50,118,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,122,109,45,51,45,52,104,51,118,45,50,72,50,118,50,122,109,48,45,51,104,51,86,55,72,50,118,50,122,109,52,32,48,86,55,104,51,118,50,72,54,122,109,48,32,49,104,51,118,50,72,54,118,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,84,101,120,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,84,101,120,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,52,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,53,122,109,45,46,53,32,50,46,53,65,46,53,46,53,32,48,32,48,32,49,32,53,32,54,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,53,32,56,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,49,48,45,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,84,101,120,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,84,101,120,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,53,32,52,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,109,45,46,53,32,50,46,53,65,46,53,46,53,32,48,32,48,32,49,32,53,32,54,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,53,32,56,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,109,48,32,50,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,87,111,114,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,87,111,114,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,56,55,57,32,52,46,53,49,53,97,46,53,46,53,32,48,32,48,32,49,32,46,54,48,54,46,51,54,52,108,49,46,48,51,54,32,52,46,49,52,52,46,57,57,55,45,51,46,54,53,53,97,46,53,46,53,32,48,32,48,32,49,32,46,57,54,52,32,48,108,46,57,57,55,32,51,46,54,53,53,32,49,46,48,51,54,45,52,46,49,52,52,97,46,53,46,53,32,48,32,48,32,49,32,46,57,55,46,50,52,50,108,45,49,46,53,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,57,54,55,46,48,49,76,56,32,55,46,52,48,50,108,45,49,46,48,49,56,32,51,46,55,51,97,46,53,46,53,32,48,32,48,32,49,45,46,57,54,55,45,46,48,49,108,45,49,46,53,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,51,54,52,45,46,54,48,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,48,32,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,87,111,114,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,87,111,114,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,53,46,52,56,53,32,52,46,56,55,57,108,49,46,48,51,54,32,52,46,49,52,52,46,57,57,55,45,51,46,54,53,53,97,46,53,46,53,32,48,32,48,32,49,32,46,57,54,52,32,48,108,46,57,57,55,32,51,46,54,53,53,32,49,46,48,51,54,45,52,46,49,52,52,97,46,53,46,53,32,48,32,48,32,49,32,46,57,55,46,50,52,50,108,45,49,46,53,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,57,54,55,46,48,49,76,56,32,55,46,52,48,50,108,45,49,46,48,49,56,32,51,46,55,51,97,46,53,46,53,32,48,32,48,32,49,45,46,57,54,55,45,46,48,49,108,45,49,46,53,45,54,97,46,53,46,53,32,48,32,49,32,49,32,46,57,55,45,46,50,52,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,88,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,88,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,49,52,54,32,54,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,55,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,56,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,56,46,55,48,55,32,54,46,56,53,52,32,57,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,56,32,54,46,49,52,54,32,54,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,48,32,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,88,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,88,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,48,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,54,46,56,53,52,32,54,46,49,52,54,76,56,32,55,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,56,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,56,46,55,48,55,32,54,46,56,53,52,32,57,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,56,32,54,46,49,52,54,32,54,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,90,105,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,90,105,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,55,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,46,57,51,56,108,46,52,32,49,46,53,57,57,97,49,32,49,32,48,32,48,32,49,45,46,52,49,54,32,49,46,48,55,52,108,45,46,57,51,46,54,50,97,49,32,49,32,48,32,48,32,49,45,49,46,49,48,57,32,48,108,45,46,57,51,45,46,54,50,97,49,32,49,32,48,32,48,32,49,45,46,52,49,53,45,49,46,48,55,52,108,46,52,45,49,46,53,57,57,86,55,46,53,122,109,50,32,48,104,45,49,118,46,57,51,56,97,49,32,49,32,48,32,48,32,49,45,46,48,51,46,50,52,51,108,45,46,52,32,49,46,53,57,56,46,57,51,46,54,50,46,57,51,45,46,54,50,45,46,52,45,49,46,53,57,56,97,49,32,49,32,48,32,48,32,49,45,46,48,51,45,46,50,52,51,86,55,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,53,46,53,45,49,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,57,118,49,72,56,118,49,104,49,118,49,72,56,118,49,104,49,118,49,72,55,46,53,86,53,104,45,49,86,52,104,49,86,51,104,45,49,86,50,104,49,86,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,90,105,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,90,105,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,53,32,57,46,52,51,56,86,56,46,53,104,45,49,118,46,57,51,56,97,49,32,49,32,48,32,48,32,49,45,46,48,51,46,50,52,51,108,45,46,52,32,49,46,53,57,56,46,57,51,46,54,50,46,57,51,45,46,54,50,45,46,52,45,49,46,53,57,56,97,49,32,49,32,48,32,48,32,49,45,46,48,51,45,46,50,52,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,109,50,46,53,32,56,46,53,118,46,57,51,56,108,45,46,52,32,49,46,53,57,57,97,49,32,49,32,48,32,48,32,48,32,46,52,49,54,32,49,46,48,55,52,108,46,57,51,46,54,50,97,49,32,49,32,48,32,48,32,48,32,49,46,49,48,57,32,48,108,46,57,51,45,46,54,50,97,49,32,49,32,48,32,48,32,48,32,46,52,49,53,45,49,46,48,55,52,108,45,46,52,45,49,46,53,57,57,86,56,46,53,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,122,109,49,45,53,46,53,104,45,49,118,49,104,49,118,49,104,45,49,118,49,104,49,118,49,72,57,86,54,72,56,86,53,104,49,86,52,72,56,86,51,104,49,86,50,72,56,86,49,72,54,46,53,118,49,104,49,118,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,32,48,72,54,97,50,32,50,32,48,32,48,32,48,45,50,32,50,32,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,55,97,50,32,50,32,48,32,48,32,48,32,50,45,50,32,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,109,48,32,49,51,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,55,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,48,97,49,32,49,32,48,32,48,32,49,45,49,32,49,122,77,51,32,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,55,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,48,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,101,115,65,108,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,101,115,65,108,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,48,72,51,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,32,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,32,50,32,50,32,48,32,48,32,48,45,50,45,50,122,109,50,32,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,86,51,122,77,50,32,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,109,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,109,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,52,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,49,122,109,52,32,48,118,54,104,56,86,49,72,52,122,109,56,32,56,72,52,118,54,104,56,86,57,122,77,49,32,49,118,50,104,50,86,49,72,49,122,109,50,32,51,72,49,118,50,104,50,86,52,122,77,49,32,55,118,50,104,50,86,55,72,49,122,109,50,32,51,72,49,118,50,104,50,118,45,50,122,109,45,50,32,51,118,50,104,50,118,45,50,72,49,122,77,49,53,32,49,104,45,50,118,50,104,50,86,49,122,109,45,50,32,51,118,50,104,50,86,52,104,45,50,122,109,50,32,51,104,45,50,118,50,104,50,86,55,122,109,45,50,32,51,118,50,104,50,118,45,50,104,45,50,122,109,50,32,51,104,45,50,118,50,104,50,118,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,116,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,116,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,50,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,50,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,116,101,114,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,50,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,50,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,116,101,114,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,77,51,46,53,32,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,77,53,32,56,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,50,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,116,101,114,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,116,101,114,76,101,102,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,116,101,114,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,116,101,114,82,105,103,104,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,55,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,55,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,49,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,116,101,114,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,50,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,50,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,105,108,116,101,114,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,46,53,32,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,77,52,32,56,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,50,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,108,97,103,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,108,97,103,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,46,55,55,56,46,48,56,53,65,46,53,46,53,32,48,32,48,32,49,32,49,53,32,46,53,86,56,97,46,53,46,53,32,48,32,48,32,49,45,46,51,49,52,46,52,54,52,76,49,52,46,53,32,56,108,46,49,56,54,46,52,54,52,45,46,48,48,51,46,48,48,49,45,46,48,48,54,46,48,48,51,45,46,48,50,51,46,48,48,57,97,49,50,46,52,51,53,32,49,50,46,52,51,53,32,48,32,48,32,49,45,46,51,57,55,46,49,53,99,45,46,50,54,52,46,48,57,53,45,46,54,51,49,46,50,50,51,45,49,46,48,52,55,46,51,53,45,46,56,49,54,46,50,53,50,45,49,46,56,55,57,46,53,50,51,45,50,46,55,49,46,53,50,51,45,46,56,52,55,32,48,45,49,46,53,52,56,45,46,50,56,45,50,46,49,53,56,45,46,53,50,53,108,45,46,48,50,56,45,46,48,49,67,55,46,54,56,32,56,46,55,49,32,55,46,49,52,32,56,46,53,32,54,46,53,32,56,46,53,99,45,46,55,32,48,45,49,46,54,51,56,46,50,51,45,50,46,52,51,55,46,52,55,55,65,49,57,46,54,50,54,32,49,57,46,54,50,54,32,48,32,48,32,48,32,51,32,57,46,51,52,50,86,49,53,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,50,56,50,99,46,50,50,54,45,46,48,55,57,46,52,57,54,45,46,49,55,46,55,57,45,46,50,54,67,52,46,54,48,54,46,50,55,50,32,53,46,54,55,32,48,32,54,46,53,32,48,99,46,56,52,32,48,32,49,46,53,50,52,46,50,55,55,32,50,46,49,50,49,46,53,49,57,108,46,48,52,51,46,48,49,56,67,57,46,50,56,54,46,55,56,56,32,57,46,56,50,56,32,49,32,49,48,46,53,32,49,99,46,55,32,48,32,49,46,54,51,56,45,46,50,51,32,50,46,52,51,55,45,46,52,55,55,97,49,57,46,53,56,55,32,49,57,46,53,56,55,32,48,32,48,32,48,32,49,46,51,52,57,45,46,52,55,54,108,46,48,49,57,45,46,48,48,55,46,48,48,52,45,46,48,48,50,104,46,48,48,49,77,49,52,32,49,46,50,50,49,99,45,46,50,50,46,48,55,56,45,46,52,56,46,49,54,55,45,46,55,54,54,46,50,53,53,45,46,56,49,46,50,53,50,45,49,46,56,55,50,46,53,50,51,45,50,46,55,51,52,46,53,50,51,45,46,56,56,54,32,48,45,49,46,53,57,50,45,46,50,56,54,45,50,46,50,48,51,45,46,53,51,52,108,45,46,48,48,56,45,46,48,48,51,67,55,46,54,54,50,32,49,46,50,49,32,55,46,49,51,57,32,49,32,54,46,53,32,49,99,45,46,54,54,57,32,48,45,49,46,54,48,54,46,50,50,57,45,50,46,52,49,53,46,52,55,56,65,50,49,46,50,57,52,32,50,49,46,50,57,52,32,48,32,48,32,48,32,51,32,49,46,56,52,53,118,54,46,52,51,51,99,46,50,50,45,46,48,55,56,46,52,56,45,46,49,54,55,46,55,54,54,45,46,50,53,53,67,52,46,53,55,54,32,55,46,55,55,32,53,46,54,51,56,32,55,46,53,32,54,46,53,32,55,46,53,99,46,56,52,55,32,48,32,49,46,53,52,56,46,50,56,32,50,46,49,53,56,46,53,50,53,108,46,48,50,56,46,48,49,67,57,46,51,50,32,56,46,50,57,32,57,46,56,54,32,56,46,53,32,49,48,46,53,32,56,46,53,99,46,54,54,56,32,48,32,49,46,54,48,54,45,46,50,50,57,32,50,46,52,49,53,45,46,52,55,56,65,50,49,46,51,49,55,32,50,49,46,51,49,55,32,48,32,48,32,48,32,49,52,32,55,46,54,53,53,86,49,46,50,50,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,108,97,103,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,108,97,103,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,46,55,55,56,46,48,56,53,65,46,53,46,53,32,48,32,48,32,49,32,49,53,32,46,53,86,56,97,46,53,46,53,32,48,32,48,32,49,45,46,51,49,52,46,52,54,52,76,49,52,46,53,32,56,108,46,49,56,54,46,52,54,52,45,46,48,48,51,46,48,48,49,45,46,48,48,54,46,48,48,51,45,46,48,50,51,46,48,48,57,97,49,50,46,52,51,53,32,49,50,46,52,51,53,32,48,32,48,32,49,45,46,51,57,55,46,49,53,99,45,46,50,54,52,46,48,57,53,45,46,54,51,49,46,50,50,51,45,49,46,48,52,55,46,51,53,45,46,56,49,54,46,50,53,50,45,49,46,56,55,57,46,53,50,51,45,50,46,55,49,46,53,50,51,45,46,56,52,55,32,48,45,49,46,53,52,56,45,46,50,56,45,50,46,49,53,56,45,46,53,50,53,108,45,46,48,50,56,45,46,48,49,67,55,46,54,56,32,56,46,55,49,32,55,46,49,52,32,56,46,53,32,54,46,53,32,56,46,53,99,45,46,55,32,48,45,49,46,54,51,56,46,50,51,45,50,46,52,51,55,46,52,55,55,65,49,57,46,54,50,54,32,49,57,46,54,50,54,32,48,32,48,32,48,32,51,32,57,46,51,52,50,86,49,53,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,50,56,50,99,46,50,50,54,45,46,48,55,57,46,52,57,54,45,46,49,55,46,55,57,45,46,50,54,67,52,46,54,48,54,46,50,55,50,32,53,46,54,55,32,48,32,54,46,53,32,48,99,46,56,52,32,48,32,49,46,53,50,52,46,50,55,55,32,50,46,49,50,49,46,53,49,57,108,46,48,52,51,46,48,49,56,67,57,46,50,56,54,46,55,56,56,32,57,46,56,50,56,32,49,32,49,48,46,53,32,49,99,46,55,32,48,32,49,46,54,51,56,45,46,50,51,32,50,46,52,51,55,45,46,52,55,55,97,49,57,46,53,56,55,32,49,57,46,53,56,55,32,48,32,48,32,48,32,49,46,51,52,57,45,46,52,55,54,108,46,48,49,57,45,46,48,48,55,46,48,48,52,45,46,48,48,50,104,46,48,48,49,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,108,111,119,101,114,49,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,108,111,119,101,114,49,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,49,55,52,32,49,46,49,56,52,97,50,32,50,32,48,32,48,32,49,32,51,46,54,53,50,32,48,65,50,32,50,32,48,32,48,32,49,32,49,50,46,57,57,32,51,46,48,49,97,50,32,50,32,48,32,48,32,49,32,49,46,56,50,54,32,51,46,49,54,52,32,50,32,50,32,48,32,48,32,49,32,48,32,51,46,54,53,50,32,50,32,50,32,48,32,48,32,49,45,49,46,56,50,54,32,51,46,49,54,52,32,50,32,50,32,48,32,48,32,49,45,51,46,49,54,52,32,49,46,56,50,54,32,50,32,50,32,48,32,48,32,49,45,51,46,54,53,50,32,48,65,50,32,50,32,48,32,48,32,49,32,51,46,48,49,32,49,50,46,57,57,97,50,32,50,32,48,32,48,32,49,45,49,46,56,50,54,45,51,46,49,54,52,32,50,32,50,32,48,32,48,32,49,32,48,45,51,46,54,53,50,65,50,32,50,32,48,32,48,32,49,32,51,46,48,49,32,51,46,48,49,97,50,32,50,32,48,32,48,32,49,32,51,46,49,54,52,45,49,46,56,50,54,122,77,56,32,49,97,49,32,49,32,48,32,48,32,48,45,46,57,57,56,32,49,46,48,51,108,46,48,49,46,48,57,49,99,46,48,49,50,46,48,55,55,46,48,50,57,46,49,55,54,46,48,53,52,46,50,57,54,46,48,52,57,46,50,52,49,46,49,50,50,46,53,52,50,46,50,49,51,46,56,56,55,46,49,56,50,46,54,56,56,46,52,50,56,32,49,46,53,49,51,46,54,55,54,32,50,46,51,49,52,76,56,32,53,46,55,54,50,108,46,48,52,53,45,46,49,52,52,99,46,50,52,56,45,46,56,46,52,57,52,45,49,46,54,50,54,46,54,55,54,45,50,46,51,49,52,46,48,57,49,45,46,51,52,53,46,49,54,52,45,46,54,52,54,46,50,49,51,45,46,56,56,55,97,52,46,57,57,55,32,52,46,57,57,55,32,48,32,48,32,48,32,46,48,54,52,45,46,51,56,54,76,57,32,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,77,50,32,57,108,46,48,51,45,46,48,48,50,46,48,57,49,45,46,48,49,97,52,46,57,57,32,52,46,57,57,32,48,32,48,32,48,32,46,50,57,54,45,46,48,53,52,99,46,50,52,49,45,46,48,52,57,46,53,52,50,45,46,49,50,50,46,56,56,55,45,46,50,49,51,97,54,48,46,53,57,32,54,48,46,53,57,32,48,32,48,32,48,32,50,46,51,49,52,45,46,54,55,54,76,53,46,55,54,50,32,56,108,45,46,49,52,52,45,46,48,52,53,97,54,48,46,53,57,32,54,48,46,53,57,32,48,32,48,32,48,45,50,46,51,49,52,45,46,54,55,54,32,49,54,46,55,48,53,32,49,54,46,55,48,53,32,48,32,48,32,48,45,46,56,56,55,45,46,50,49,51,32,52,46,57,57,32,52,46,57,57,32,48,32,48,32,48,45,46,51,56,54,45,46,48,54,52,76,50,32,55,97,49,32,49,32,48,32,49,32,48,32,48,32,50,122,109,55,32,53,108,45,46,48,48,50,45,46,48,51,97,53,46,48,48,53,32,53,46,48,48,53,32,48,32,48,32,48,45,46,48,54,52,45,46,51,56,54,32,49,54,46,51,57,56,32,49,54,46,51,57,56,32,48,32,48,32,48,45,46,50,49,51,45,46,56,56,56,32,54,48,46,53,56,50,32,54,48,46,53,56,50,32,48,32,48,32,48,45,46,54,55,54,45,50,46,51,49,52,76,56,32,49,48,46,50,51,56,108,45,46,48,52,53,46,49,52,52,99,45,46,50,52,56,46,56,45,46,52,57,52,32,49,46,54,50,54,45,46,54,55,54,32,50,46,51,49,52,45,46,48,57,49,46,51,52,53,45,46,49,54,52,46,54,52,54,45,46,50,49,51,46,56,56,55,97,52,46,57,57,54,32,52,46,57,57,54,32,48,32,48,32,48,45,46,48,54,52,46,51,56,54,76,55,32,49,52,97,49,32,49,32,48,32,49,32,48,32,50,32,48,122,109,45,53,46,54,57,54,45,50,46,49,51,52,108,46,48,50,53,45,46,48,49,55,97,53,46,48,48,49,32,53,46,48,48,49,32,48,32,48,32,48,32,46,51,48,51,45,46,50,52,56,99,46,49,56,52,45,46,49,54,52,46,52,48,56,45,46,51,55,55,46,54,54,49,45,46,54,50,57,65,54,48,46,54,49,52,32,54,48,46,54,49,52,32,48,32,48,32,48,32,53,46,57,54,32,57,46,50,51,108,46,49,48,51,45,46,49,49,49,45,46,49,52,55,46,48,51,51,97,54,48,46,56,56,32,54,48,46,56,56,32,48,32,48,32,48,45,50,46,51,52,51,46,53,55,50,99,45,46,51,52,52,46,48,57,51,45,46,54,52,46,49,56,45,46,56,55,52,46,50,53,56,97,53,46,48,54,51,32,53,46,48,54,51,32,48,32,48,32,48,45,46,51,54,55,46,49,51,56,108,45,46,48,50,55,46,48,49,52,97,49,32,49,32,48,32,49,32,48,32,49,32,49,46,55,51,50,122,77,52,46,53,32,49,52,46,48,54,50,97,49,32,49,32,48,32,48,32,48,32,49,46,51,54,54,45,46,51,54,54,108,46,48,49,52,45,46,48,50,55,99,46,48,49,45,46,48,50,46,48,50,49,45,46,48,52,56,46,48,51,54,45,46,48,56,52,97,53,46,48,57,32,53,46,48,57,32,48,32,48,32,48,32,46,49,48,50,45,46,50,56,51,99,46,48,55,56,45,46,50,51,51,46,49,54,53,45,46,53,51,46,50,53,56,45,46,56,55,52,97,54,48,46,54,32,54,48,46,54,32,48,32,48,32,48,32,46,53,55,50,45,50,46,51,52,51,108,46,48,51,51,45,46,49,52,55,45,46,49,49,46,49,48,50,97,54,48,46,56,52,56,32,54,48,46,56,52,56,32,48,32,48,32,48,45,49,46,55,52,51,32,49,46,54,54,55,32,49,55,46,48,55,32,49,55,46,48,55,32,48,32,48,32,48,45,46,54,50,57,46,54,54,32,53,46,48,54,32,53,46,48,54,32,48,32,48,32,48,45,46,50,52,56,46,51,48,52,108,45,46,48,49,55,46,48,50,53,97,49,32,49,32,48,32,48,32,48,32,46,51,54,54,32,49,46,51,54,54,122,109,57,46,49,57,54,45,56,46,49,57,54,97,49,32,49,32,48,32,48,32,48,45,49,45,49,46,55,51,50,108,45,46,48,50,53,46,48,49,55,97,52,46,57,53,49,32,52,46,57,53,49,32,48,32,48,32,48,45,46,51,48,51,46,50,52,56,32,49,54,46,54,57,32,49,54,46,54,57,32,48,32,48,32,48,45,46,54,54,49,46,54,50,57,65,54,48,46,55,50,32,54,48,46,55,50,32,48,32,48,32,48,32,49,48,46,48,52,32,54,46,55,55,108,45,46,49,48,50,46,49,49,49,46,49,52,55,45,46,48,51,51,97,54,48,46,54,32,54,48,46,54,32,48,32,48,32,48,32,50,46,51,52,50,45,46,53,55,50,99,46,51,52,53,45,46,48,57,51,46,54,52,50,45,46,49,56,46,56,55,53,45,46,50,53,56,97,52,46,57,57,51,32,52,46,57,57,51,32,48,32,48,32,48,32,46,51,54,55,45,46,49,51,56,46,53,51,46,53,51,32,48,32,48,32,48,32,46,48,50,55,45,46,48,49,52,122,77,49,49,46,53,32,49,46,57,51,56,97,49,32,49,32,48,32,48,32,48,45,49,46,51,54,54,46,51,54,54,108,45,46,48,49,52,46,48,50,55,99,45,46,48,49,46,48,50,45,46,48,50,49,46,48,52,56,45,46,48,51,54,46,48,56,52,97,53,46,48,57,32,53,46,48,57,32,48,32,48,32,48,45,46,49,48,50,46,50,56,51,99,45,46,48,55,56,46,50,51,51,45,46,49,54,53,46,53,51,45,46,50,53,56,46,56,55,53,97,54,48,46,54,50,32,54,48,46,54,50,32,48,32,48,32,48,45,46,53,55,50,32,50,46,51,52,50,108,45,46,48,51,51,46,49,52,55,46,49,49,45,46,49,48,50,97,54,48,46,56,52,56,32,54,48,46,56,52,56,32,48,32,48,32,48,32,49,46,55,52,51,45,49,46,54,54,55,99,46,50,53,50,45,46,50,53,51,46,52,54,53,45,46,52,55,55,46,54,50,57,45,46,54,54,97,53,46,48,48,49,32,53,46,48,48,49,32,48,32,48,32,48,32,46,50,52,56,45,46,51,48,52,108,46,48,49,55,45,46,48,50,53,97,49,32,49,32,48,32,48,32,48,45,46,51,54,54,45,49,46,51,54,54,122,77,49,52,32,57,97,49,32,49,32,48,32,48,32,48,32,48,45,50,108,45,46,48,51,46,48,48,50,97,52,46,57,57,54,32,52,46,57,57,54,32,48,32,48,32,48,45,46,51,56,54,46,48,54,52,99,45,46,50,52,50,46,48,52,57,45,46,53,52,51,46,49,50,50,45,46,56,56,56,46,50,49,51,45,46,54,56,56,46,49,56,50,45,49,46,53,49,51,46,52,50,56,45,50,46,51,49,52,46,54,55,54,76,49,48,46,50,51,56,32,56,108,46,49,52,52,46,48,52,53,99,46,56,46,50,52,56,32,49,46,54,50,54,46,52,57,52,32,50,46,51,49,52,46,54,55,54,46,51,52,53,46,48,57,49,46,54,52,54,46,49,54,52,46,56,56,55,46,50,49,51,97,52,46,57,57,54,32,52,46,57,57,54,32,48,32,48,32,48,32,46,51,56,54,46,48,54,52,76,49,52,32,57,122,77,49,46,57,51,56,32,52,46,53,97,49,32,49,32,48,32,48,32,48,32,46,51,57,51,32,49,46,51,56,108,46,48,56,52,46,48,51,53,99,46,48,55,50,46,48,51,46,49,54,54,46,48,54,52,46,50,56,51,46,49,48,51,46,50,51,51,46,48,55,56,46,53,51,46,49,54,53,46,56,55,52,46,50,53,56,97,54,48,46,56,56,32,54,48,46,56,56,32,48,32,48,32,48,32,50,46,51,52,51,46,53,55,50,108,46,49,52,55,46,48,51,51,45,46,49,48,51,45,46,49,49,49,97,54,48,46,53,56,52,32,54,48,46,53,56,52,32,48,32,48,32,48,45,49,46,54,54,54,45,49,46,55,52,50,32,49,54,46,55,48,53,32,49,54,46,55,48,53,32,48,32,48,32,48,45,46,54,54,45,46,54,50,57,32,52,46,57,57,54,32,52,46,57,57,54,32,48,32,48,32,48,45,46,51,48,52,45,46,50,52,56,108,45,46,48,50,53,45,46,48,49,55,97,49,32,49,32,48,32,48,32,48,45,49,46,51,54,54,46,51,54,54,122,109,50,46,49,57,54,45,49,46,49,57,54,108,46,48,49,55,46,48,50,53,97,52,46,57,57,54,32,52,46,57,57,54,32,48,32,48,32,48,32,46,50,52,56,46,51,48,51,99,46,49,54,52,46,49,56,52,46,51,55,55,46,52,48,56,46,54,50,57,46,54,54,49,65,54,48,46,53,57,55,32,54,48,46,53,57,55,32,48,32,48,32,48,32,54,46,55,55,32,53,46,57,54,108,46,49,49,49,46,49,48,50,45,46,48,51,51,45,46,49,52,55,97,54,48,46,54,48,50,32,54,48,46,54,48,50,32,48,32,48,32,48,45,46,53,55,50,45,50,46,51,52,50,99,45,46,48,57,51,45,46,51,52,53,45,46,49,56,45,46,54,52,50,45,46,50,53,56,45,46,56,55,53,97,53,46,48,48,54,32,53,46,48,48,54,32,48,32,48,32,48,45,46,49,51,56,45,46,51,54,55,108,45,46,48,49,52,45,46,48,50,55,97,49,32,49,32,48,32,49,32,48,45,49,46,55,51,50,32,49,122,109,57,46,57,50,56,32,56,46,49,57,54,97,49,32,49,32,48,32,48,32,48,45,46,51,54,54,45,49,46,51,54,54,108,45,46,48,50,55,45,46,48,49,52,97,53,32,53,32,48,32,48,32,48,45,46,51,54,55,45,46,49,51,56,99,45,46,50,51,51,45,46,48,55,56,45,46,53,51,45,46,49,54,53,45,46,56,55,53,45,46,50,53,56,97,54,48,46,54,49,57,32,54,48,46,54,49,57,32,48,32,48,32,48,45,50,46,51,52,50,45,46,53,55,50,108,45,46,49,52,55,45,46,48,51,51,46,49,48,50,46,49,49,49,97,54,48,46,55,51,32,54,48,46,55,51,32,48,32,48,32,48,32,49,46,54,54,55,32,49,46,55,52,50,99,46,50,53,51,46,50,53,50,46,52,55,55,46,52,54,53,46,54,54,46,54,50,57,97,52,46,57,52,54,32,52,46,57,52,54,32,48,32,48,32,48,32,46,51,48,52,46,50,52,56,108,46,48,50,53,46,48,49,55,97,49,32,49,32,48,32,48,32,48,32,49,46,51,54,54,45,46,51,54,54,122,109,45,51,46,57,50,56,32,50,46,49,57,54,97,49,32,49,32,48,32,48,32,48,32,49,46,55,51,50,45,49,108,45,46,48,49,55,45,46,48,50,53,97,53,46,48,54,53,32,53,46,48,54,53,32,48,32,48,32,48,45,46,50,52,56,45,46,51,48,51,32,49,54,46,55,48,53,32,49,54,46,55,48,53,32,48,32,48,32,48,45,46,54,50,57,45,46,54,54,49,65,54,48,46,52,54,50,32,54,48,46,52,54,50,32,48,32,48,32,48,32,57,46,50,51,32,49,48,46,48,52,108,45,46,49,49,49,45,46,49,48,50,46,48,51,51,46,49,52,55,97,54,48,46,54,32,54,48,46,54,32,48,32,48,32,48,32,46,53,55,50,32,50,46,51,52,50,99,46,48,57,51,46,51,52,53,46,49,56,46,54,52,50,46,50,53,56,46,56,55,53,97,52,46,57,56,53,32,52,46,57,56,53,32,48,32,48,32,48,32,46,49,51,56,46,51,54,55,46,53,55,53,46,53,55,53,32,48,32,48,32,48,32,46,48,49,52,46,48,50,55,122,77,56,32,57,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,108,111,119,101,114,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,108,111,119,101,114,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,97,52,32,52,32,48,32,48,32,48,32,52,45,52,32,52,32,52,32,48,32,48,32,48,32,48,45,56,32,52,32,52,32,48,32,48,32,48,45,56,32,48,32,52,32,52,32,48,32,49,32,48,32,48,32,56,32,52,32,52,32,48,32,48,32,48,32,52,32,52,122,109,51,45,49,50,99,48,32,46,48,55,51,45,46,48,49,46,49,53,53,45,46,48,51,46,50,52,55,45,46,53,52,52,46,50,52,49,45,49,46,48,57,49,46,54,51,56,45,49,46,53,57,56,32,49,46,48,56,52,65,50,46,57,56,55,32,50,46,57,56,55,32,48,32,48,32,48,32,56,32,53,99,45,46,52,57,52,32,48,45,46,57,54,46,49,50,45,49,46,51,55,50,46,51,51,49,45,46,53,48,55,45,46,52,52,54,45,49,46,48,53,52,45,46,56,52,51,45,49,46,53,57,55,45,49,46,48,56,52,65,49,46,49,49,55,32,49,46,49,49,55,32,48,32,48,32,49,32,53,32,52,97,51,32,51,32,48,32,48,32,49,32,54,32,48,122,109,45,46,56,49,50,32,54,46,48,53,50,65,50,46,57,57,32,50,46,57,57,32,48,32,48,32,48,32,49,49,32,56,97,50,46,57,57,32,50,46,57,57,32,48,32,48,32,48,45,46,56,49,50,45,50,46,48,53,50,99,46,50,49,53,45,46,49,56,46,52,51,50,45,46,51,52,54,46,54,52,55,45,46,52,56,55,67,49,49,46,51,52,32,53,46,49,51,49,32,49,49,46,55,51,50,32,53,32,49,50,32,53,97,51,32,51,32,48,32,49,32,49,32,48,32,54,99,45,46,50,54,56,32,48,45,46,54,54,45,46,49,51,45,49,46,49,54,53,45,46,52,54,49,97,54,46,56,51,51,32,54,46,56,51,51,32,48,32,48,32,49,45,46,54,52,55,45,46,52,56,55,122,109,45,51,46,53,54,46,54,49,55,97,51,46,48,48,49,32,51,46,48,48,49,32,48,32,48,32,48,32,50,46,55,52,52,32,48,99,46,53,48,55,46,52,52,54,32,49,46,48,53,52,46,56,52,50,32,49,46,53,57,56,32,49,46,48,56,52,46,48,50,46,48,57,49,46,48,51,46,49,55,52,46,48,51,46,50,52,55,97,51,32,51,32,48,32,49,32,49,45,54,32,48,99,48,45,46,48,55,51,46,48,49,45,46,49,53,53,46,48,51,45,46,50,52,55,46,53,52,52,45,46,50,52,50,32,49,46,48,57,49,45,46,54,51,56,32,49,46,53,57,56,45,49,46,48,56,52,122,109,45,46,56,49,54,45,52,46,55,50,49,65,50,46,57,57,32,50,46,57,57,32,48,32,48,32,48,32,53,32,56,99,48,32,46,55,57,52,46,51,48,56,32,49,46,53,49,54,46,56,49,50,32,50,46,48,53,50,97,54,46,56,51,32,54,46,56,51,32,48,32,48,32,49,45,46,54,52,55,46,52,56,55,67,52,46,54,54,32,49,48,46,56,54,57,32,52,46,50,54,56,32,49,49,32,52,32,49,49,97,51,32,51,32,48,32,48,32,49,32,48,45,54,99,46,50,54,56,32,48,32,46,54,54,46,49,51,32,49,46,49,54,53,46,52,54,49,46,50,49,53,46,49,52,49,46,52,51,50,46,51,48,54,46,54,52,55,46,52,56,55,122,77,56,32,57,97,49,32,49,32,48,32,49,32,49,32,48,45,50,32,49,32,49,32,48,32,48,32,49,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,108,111,119,101,114,51,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,108,111,119,101,114,51,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,52,50,52,32,56,99,46,52,51,55,45,46,48,53,50,46,56,49,49,45,46,49,51,54,32,49,46,48,52,45,46,50,54,56,97,50,32,50,32,48,32,48,32,48,45,50,45,51,46,52,54,52,99,45,46,50,50,57,46,49,51,50,45,46,52,56,57,46,52,49,52,45,46,55,53,50,46,55,54,55,67,57,46,56,56,54,32,52,46,54,51,32,49,48,32,52,46,50,54,52,32,49,48,32,52,97,50,32,50,32,48,32,49,32,48,45,52,32,48,99,48,32,46,50,54,52,46,49,49,52,46,54,51,46,50,56,56,32,49,46,48,51,53,45,46,50,54,51,45,46,51,53,51,45,46,53,50,51,45,46,54,51,53,45,46,55,53,50,45,46,55,54,55,97,50,32,50,32,48,32,48,32,48,45,50,32,51,46,52,54,52,99,46,50,50,57,46,49,51,50,46,54,48,51,46,50,49,54,32,49,46,48,52,46,50,54,56,45,46,52,51,55,46,48,53,50,45,46,56,49,49,46,49,51,54,45,49,46,48,52,46,50,54,56,97,50,32,50,32,48,32,49,32,48,32,50,32,51,46,52,54,52,99,46,50,50,57,45,46,49,51,50,46,52,56,57,45,46,52,49,52,46,55,53,50,45,46,55,54,55,67,54,46,49,49,52,32,49,49,46,51,55,32,54,32,49,49,46,55,51,54,32,54,32,49,50,97,50,32,50,32,48,32,49,32,48,32,52,32,48,99,48,45,46,50,54,52,45,46,49,49,52,45,46,54,51,45,46,50,56,56,45,49,46,48,51,53,46,50,54,51,46,51,53,51,46,53,50,51,46,54,51,53,46,55,53,50,46,55,54,55,97,50,32,50,32,48,32,49,32,48,32,50,45,51,46,52,54,52,99,45,46,50,50,57,45,46,49,51,50,45,46,54,48,51,45,46,50,49,54,45,49,46,48,52,45,46,50,54,56,122,77,57,32,52,97,49,46,52,54,56,32,49,46,52,54,56,32,48,32,48,32,49,45,46,48,52,53,46,50,48,53,99,45,46,48,51,57,46,49,51,50,45,46,49,46,50,57,53,45,46,49,56,51,46,52,56,52,97,49,50,46,56,56,32,49,50,46,56,56,32,48,32,48,32,49,45,46,54,51,55,32,49,46,50,50,51,76,56,32,54,46,49,52,50,97,50,49,46,55,51,32,50,49,46,55,51,32,48,32,48,32,49,45,46,49,51,53,45,46,50,51,32,49,50,46,56,56,32,49,50,46,56,56,32,48,32,48,32,49,45,46,54,51,55,45,49,46,50,50,51,32,52,46,50,49,54,32,52,46,50,49,54,32,48,32,48,32,49,45,46,49,56,51,45,46,52,56,52,65,49,46,52,55,51,32,49,46,52,55,51,32,48,32,48,32,49,32,55,32,52,97,49,32,49,32,48,32,49,32,49,32,50,32,48,122,77,51,46,54,55,32,53,46,53,97,49,32,49,32,48,32,48,32,49,32,49,46,51,54,54,45,46,51,54,54,32,49,46,52,55,50,32,49,46,52,55,50,32,48,32,48,32,49,32,46,49,53,54,46,49,52,50,99,46,48,57,52,46,49,46,50,48,52,46,50,51,51,46,51,50,54,46,52,46,50,52,53,46,51,51,51,46,53,48,50,46,55,52,55,46,55,52,50,32,49,46,49,54,51,108,46,49,51,46,50,51,50,97,50,49,46,56,54,32,50,49,46,56,54,32,48,32,48,32,49,45,46,50,54,53,46,48,48,50,32,49,50,46,56,56,32,49,50,46,56,56,32,48,32,48,32,49,45,49,46,51,55,57,45,46,48,54,32,52,46,50,49,52,32,52,46,50,49,52,32,48,32,48,32,49,45,46,53,49,45,46,48,56,51,32,49,46,52,55,32,49,46,52,55,32,48,32,48,32,49,45,46,50,45,46,48,54,52,65,49,32,49,32,48,32,48,32,49,32,51,46,54,55,32,53,46,53,122,109,49,46,51,54,54,32,53,46,51,54,54,97,49,32,49,32,48,32,48,32,49,45,49,45,49,46,55,51,50,99,46,48,48,49,32,48,32,46,48,49,54,45,46,48,48,56,46,48,52,55,45,46,48,50,46,48,51,55,45,46,48,49,51,46,48,56,55,45,46,48,50,56,46,49,53,51,45,46,48,52,52,46,49,51,52,45,46,48,51,50,46,51,48,53,45,46,48,54,46,53,49,45,46,48,56,51,97,49,50,46,56,56,32,49,50,46,56,56,32,48,32,48,32,49,32,49,46,51,55,57,45,46,48,54,99,46,48,57,32,48,32,46,49,55,56,32,48,32,46,50,54,54,46,48,48,50,97,50,49,46,56,50,32,50,49,46,56,50,32,48,32,48,32,49,45,46,49,51,49,46,50,51,50,99,45,46,50,52,46,52,49,54,45,46,52,57,55,46,56,51,45,46,55,52,50,32,49,46,49,54,51,97,52,46,49,32,52,46,49,32,48,32,48,32,49,45,46,51,50,55,46,52,32,49,46,52,56,51,32,49,46,52,56,51,32,48,32,48,32,49,45,46,49,53,53,46,49,52,50,122,77,57,32,49,50,97,49,32,49,32,48,32,48,32,49,45,50,32,48,32,49,46,52,55,54,32,49,46,52,55,54,32,48,32,48,32,49,32,46,48,52,53,45,46,50,48,54,99,46,48,51,57,45,46,49,51,49,46,49,45,46,50,57,52,46,49,56,51,45,46,52,56,51,46,49,54,54,45,46,51,55,56,46,51,57,54,45,46,56,48,56,46,54,51,55,45,49,46,50,50,51,76,56,32,57,46,56,53,56,108,46,49,51,53,46,50,51,99,46,50,52,49,46,52,49,53,46,52,55,46,56,52,53,46,54,51,55,32,49,46,50,50,51,46,48,56,51,46,49,57,46,49,52,52,46,51,53,50,46,49,56,51,46,52,56,52,65,49,46,51,51,56,32,49,46,51,51,56,32,48,32,48,32,49,32,57,32,49,50,122,109,51,46,51,51,45,54,46,53,97,49,32,49,32,48,32,48,32,49,45,46,51,54,54,32,49,46,51,54,54,32,49,46,52,55,56,32,49,46,52,55,56,32,48,32,48,32,49,45,46,50,46,48,54,52,99,45,46,49,51,52,46,48,51,50,45,46,51,48,53,46,48,54,45,46,53,49,46,48,56,51,45,46,52,49,50,46,48,52,53,45,46,56,57,56,46,48,54,49,45,49,46,51,55,57,46,48,54,45,46,48,57,32,48,45,46,49,55,56,32,48,45,46,50,54,54,45,46,48,48,50,108,46,49,51,49,45,46,50,51,50,99,46,50,52,45,46,52,49,54,46,52,57,55,45,46,56,51,46,55,52,50,45,49,46,49,54,51,97,52,46,49,32,52,46,49,32,48,32,48,32,49,32,46,51,50,55,45,46,52,99,46,48,52,54,45,46,48,53,46,48,56,53,45,46,48,56,54,46,49,49,52,45,46,49,49,46,48,50,54,45,46,48,50,50,46,48,52,45,46,48,51,46,48,52,49,45,46,48,51,50,97,49,32,49,32,48,32,48,32,49,32,49,46,51,54,54,46,51,54,54,122,109,45,49,46,51,54,54,32,53,46,51,54,54,97,49,46,52,57,52,32,49,46,52,57,52,32,48,32,48,32,49,45,46,49,53,53,45,46,49,52,49,32,52,46,50,50,53,32,52,46,50,50,53,32,48,32,48,32,49,45,46,51,50,55,45,46,52,65,49,50,46,56,56,32,49,50,46,56,56,32,48,32,48,32,49,32,57,46,55,52,32,57,46,49,54,97,50,50,32,50,50,32,48,32,48,32,49,45,46,49,51,45,46,50,51,50,108,46,50,54,53,45,46,48,48,50,99,46,52,56,45,46,48,48,49,46,57,54,55,46,48,49,53,32,49,46,51,55,57,46,48,54,46,50,48,53,46,48,50,51,46,51,55,54,46,48,53,49,46,53,49,46,48,56,51,46,48,54,54,46,48,49,54,46,49,49,54,46,48,51,49,46,49,53,51,46,48,52,52,108,46,48,52,56,46,48,50,97,49,32,49,32,48,32,49,32,49,45,49,32,49,46,55,51,50,122,77,56,32,57,97,49,32,49,32,48,32,49,32,49,32,48,45,50,32,49,32,49,32,48,32,48,32,49,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,111,108,100,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,111,108,100,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,53,52,32,51,46,56,55,76,46,53,32,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,51,46,54,55,50,97,50,32,50,32,48,32,48,32,49,32,49,46,52,49,52,46,53,56,54,108,46,56,50,56,46,56,50,56,65,50,32,50,32,48,32,48,32,48,32,57,46,56,50,56,32,51,104,51,46,57,56,50,97,50,32,50,32,48,32,48,32,49,32,49,46,57,57,50,32,50,46,49,56,49,108,45,46,54,51,55,32,55,65,50,32,50,32,48,32,48,32,49,32,49,51,46,49,55,52,32,49,52,72,50,46,56,50,54,97,50,32,50,32,48,32,48,32,49,45,49,46,57,57,49,45,49,46,56,49,57,108,45,46,54,51,55,45,55,97,49,46,57,57,32,49,46,57,57,32,48,32,48,32,49,32,46,51,52,50,45,49,46,51,49,122,77,50,46,49,57,32,52,97,49,32,49,32,48,32,48,32,48,45,46,57,57,54,32,49,46,48,57,108,46,54,51,55,32,55,97,49,32,49,32,48,32,48,32,48,32,46,57,57,53,46,57,49,104,49,48,46,51,52,56,97,49,32,49,32,48,32,48,32,48,32,46,57,57,53,45,46,57,49,108,46,54,51,55,45,55,65,49,32,49,32,48,32,48,32,48,32,49,51,46,56,49,32,52,72,50,46,49,57,122,109,52,46,54,57,45,49,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,54,46,49,55,50,32,50,72,50,46,53,97,49,32,49,32,48,32,48,32,48,45,49,32,46,57,56,49,108,46,48,48,54,46,49,51,57,67,49,46,55,50,32,51,46,48,52,50,32,49,46,57,53,32,51,32,50,46,49,57,32,51,104,53,46,51,57,54,108,45,46,55,48,55,45,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,111,108,100,101,114,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,111,108,100,101,114,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,46,53,32,50,104,50,46,55,54,52,99,46,57,53,56,32,48,32,49,46,55,54,46,53,54,32,50,46,51,49,49,32,49,46,49,56,52,67,55,46,57,56,53,32,51,46,54,52,56,32,56,46,52,56,32,52,32,57,32,52,104,52,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,53,32,53,46,53,118,55,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,32,49,50,46,53,118,45,57,122,77,50,46,53,32,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,86,54,104,49,50,118,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,57,99,45,46,57,54,52,32,48,45,49,46,55,49,45,46,54,50,57,45,50,46,49,55,52,45,49,46,49,53,52,67,54,46,51,55,52,32,51,46,51,51,52,32,53,46,56,50,32,51,32,53,46,50,54,52,32,51,72,50,46,53,122,77,49,52,32,55,72,50,118,53,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,111,108,100,101,114,50,79,112,101,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,111,108,100,101,114,50,79,112,101,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,46,53,32,50,104,50,46,55,54,52,99,46,57,53,56,32,48,32,49,46,55,54,46,53,54,32,50,46,51,49,49,32,49,46,49,56,52,67,55,46,57,56,53,32,51,46,54,52,56,32,56,46,52,56,32,52,32,57,32,52,104,52,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,53,32,53,46,53,118,46,54,52,99,46,53,55,46,50,54,53,46,57,52,46,56,55,54,46,56,53,54,32,49,46,53,52,54,108,45,46,54,52,32,53,46,49,50,52,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,49,50,46,55,51,51,32,49,53,72,51,46,50,54,54,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,50,46,52,56,49,45,50,46,49,57,108,45,46,54,52,45,53,46,49,50,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,32,54,46,49,52,86,51,46,53,122,77,50,32,54,104,49,50,118,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,57,99,45,46,57,54,52,32,48,45,49,46,55,49,45,46,54,50,57,45,50,46,49,55,52,45,49,46,49,53,52,67,54,46,51,55,52,32,51,46,51,51,52,32,53,46,56,50,32,51,32,53,46,50,54,52,32,51,72,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,86,54,122,109,45,46,51,54,55,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,52,57,54,46,53,54,50,108,46,54,52,32,53,46,49,50,52,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,46,50,54,54,32,49,52,104,57,46,52,54,56,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,52,56,57,45,49,46,51,49,52,108,46,54,52,45,53,46,49,50,52,65,46,53,46,53,32,48,32,48,32,48,32,49,52,46,51,54,55,32,55,72,49,46,54,51,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,111,108,100,101,114,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,111,108,100,101,114,67,104,101,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,53,32,51,108,46,48,52,46,56,55,97,49,46,57,57,32,49,46,57,57,32,48,32,48,32,48,45,46,51,52,50,32,49,46,51,49,49,108,46,54,51,55,32,55,65,50,32,50,32,48,32,48,32,48,32,50,46,56,50,54,32,49,52,72,57,118,45,49,72,50,46,56,50,54,97,49,32,49,32,48,32,48,32,49,45,46,57,57,53,45,46,57,49,108,45,46,54,51,55,45,55,65,49,32,49,32,48,32,48,32,49,32,50,46,49,57,32,52,104,49,49,46,54,50,97,49,32,49,32,48,32,48,32,49,32,46,57,57,54,32,49,46,48,57,76,49,52,46,53,52,32,56,104,49,46,48,48,53,108,46,50,53,54,45,50,46,56,49,57,65,50,32,50,32,48,32,48,32,48,32,49,51,46,56,49,32,51,72,57,46,56,50,56,97,50,32,50,32,48,32,48,32,49,45,49,46,52,49,52,45,46,53,56,54,108,45,46,56,50,56,45,46,56,50,56,65,50,32,50,32,48,32,48,32,48,32,54,46,49,55,50,32,49,72,50,46,53,97,50,32,50,32,48,32,48,32,48,45,50,32,50,122,109,53,46,54,55,50,45,49,97,49,32,49,32,48,32,48,32,49,32,46,55,48,55,46,50,57,51,76,55,46,53,56,54,32,51,72,50,46,49,57,99,45,46,50,52,32,48,45,46,52,55,46,48,52,50,45,46,54,56,52,46,49,50,76,49,46,53,32,50,46,57,56,97,49,32,49,32,48,32,48,32,49,32,49,45,46,57,56,104,51,46,54,55,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,53,46,56,53,52,32,49,48,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,108,49,46,49,52,54,32,49,46,49,52,55,32,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,111,108,100,101,114,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,111,108,100,101,114,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,56,50,56,32,51,104,51,46,57,56,50,97,50,32,50,32,48,32,48,32,49,32,49,46,57,57,50,32,50,46,49,56,49,108,45,46,54,51,55,32,55,65,50,32,50,32,48,32,48,32,49,32,49,51,46,49,55,52,32,49,52,72,50,46,56,50,54,97,50,32,50,32,48,32,48,32,49,45,49,46,57,57,49,45,49,46,56,49,57,108,45,46,54,51,55,45,55,97,49,46,57,57,32,49,46,57,57,32,48,32,48,32,49,32,46,51,52,50,45,49,46,51,49,76,46,53,32,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,51,46,54,55,50,97,50,32,50,32,48,32,48,32,49,32,49,46,52,49,52,46,53,56,54,108,46,56,50,56,46,56,50,56,65,50,32,50,32,48,32,48,32,48,32,57,46,56,50,56,32,51,122,109,45,56,46,51,50,50,46,49,50,67,49,46,55,50,32,51,46,48,52,50,32,49,46,57,53,32,51,32,50,46,49,57,32,51,104,53,46,51,57,54,108,45,46,55,48,55,45,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,54,46,49,55,50,32,50,72,50,46,53,97,49,32,49,32,48,32,48,32,48,45,49,32,46,57,56,49,108,46,48,48,54,46,49,51,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,111,108,100,101,114,77,105,110,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,111,108,100,101,114,77,105,110,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,53,32,51,108,46,48,52,46,56,55,97,49,46,57,57,32,49,46,57,57,32,48,32,48,32,48,45,46,51,52,50,32,49,46,51,49,49,108,46,54,51,55,32,55,65,50,32,50,32,48,32,48,32,48,32,50,46,56,50,54,32,49,52,72,57,118,45,49,72,50,46,56,50,54,97,49,32,49,32,48,32,48,32,49,45,46,57,57,53,45,46,57,49,108,45,46,54,51,55,45,55,65,49,32,49,32,48,32,48,32,49,32,50,46,49,57,32,52,104,49,49,46,54,50,97,49,32,49,32,48,32,48,32,49,32,46,57,57,54,32,49,46,48,57,76,49,52,46,53,52,32,56,104,49,46,48,48,53,108,46,50,53,54,45,50,46,56,49,57,65,50,32,50,32,48,32,48,32,48,32,49,51,46,56,49,32,51,72,57,46,56,50,56,97,50,32,50,32,48,32,48,32,49,45,49,46,52,49,52,45,46,53,56,54,108,45,46,56,50,56,45,46,56,50,56,65,50,32,50,32,48,32,48,32,48,32,54,46,49,55,50,32,49,72,50,46,53,97,50,32,50,32,48,32,48,32,48,45,50,32,50,122,109,53,46,54,55,50,45,49,97,49,32,49,32,48,32,48,32,49,32,46,55,48,55,46,50,57,51,76,55,46,53,56,54,32,51,72,50,46,49,57,99,45,46,50,52,32,48,45,46,52,55,46,48,52,50,45,46,54,56,52,46,49,50,76,49,46,53,32,50,46,57,56,97,49,32,49,32,48,32,48,32,49,32,49,45,46,57,56,104,51,46,54,55,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,111,108,100,101,114,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,111,108,100,101,114,80,108,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,53,32,51,108,46,48,52,46,56,55,97,49,46,57,57,32,49,46,57,57,32,48,32,48,32,48,45,46,51,52,50,32,49,46,51,49,49,108,46,54,51,55,32,55,65,50,32,50,32,48,32,48,32,48,32,50,46,56,50,54,32,49,52,72,57,118,45,49,72,50,46,56,50,54,97,49,32,49,32,48,32,48,32,49,45,46,57,57,53,45,46,57,49,108,45,46,54,51,55,45,55,65,49,32,49,32,48,32,48,32,49,32,50,46,49,57,32,52,104,49,49,46,54,50,97,49,32,49,32,48,32,48,32,49,32,46,57,57,54,32,49,46,48,57,76,49,52,46,53,52,32,56,104,49,46,48,48,53,108,46,50,53,54,45,50,46,56,49,57,65,50,32,50,32,48,32,48,32,48,32,49,51,46,56,49,32,51,72,57,46,56,50,56,97,50,32,50,32,48,32,48,32,49,45,49,46,52,49,52,45,46,53,56,54,108,45,46,56,50,56,45,46,56,50,56,65,50,32,50,32,48,32,48,32,48,32,54,46,49,55,50,32,49,72,50,46,53,97,50,32,50,32,48,32,48,32,48,45,50,32,50,122,109,53,46,54,55,50,45,49,97,49,32,49,32,48,32,48,32,49,32,46,55,48,55,46,50,57,51,76,55,46,53,56,54,32,51,72,50,46,49,57,99,45,46,50,52,32,48,45,46,52,55,46,48,52,50,45,46,54,56,52,46,49,50,76,49,46,53,32,50,46,57,56,97,49,32,49,32,48,32,48,32,49,32,49,45,46,57,56,104,51,46,54,55,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,51,46,53,32,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,50,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,52,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,51,104,45,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,51,118,45,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,111,108,100,101,114,83,121,109,108,105,110,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,55,57,56,32,56,46,50,55,49,108,45,51,46,49,56,50,32,49,46,57,55,99,45,46,50,55,46,49,54,54,45,46,54,49,54,45,46,48,51,54,45,46,54,49,54,45,46,51,55,50,86,57,46,49,115,45,50,46,53,55,49,45,46,51,45,52,32,50,46,52,99,46,53,55,49,45,52,46,56,32,51,46,49,52,51,45,52,46,56,32,52,45,52,46,56,118,45,46,55,54,57,99,48,45,46,51,51,54,46,51,52,54,45,46,53,51,56,46,54,49,54,45,46,51,55,49,108,51,46,49,56,50,32,49,46,57,54,57,99,46,50,55,46,49,54,54,46,50,55,46,53,55,54,32,48,32,46,55,52,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,46,53,32,51,108,46,48,52,46,56,55,97,49,46,57,57,32,49,46,57,57,32,48,32,48,32,48,45,46,51,52,50,32,49,46,51,49,49,108,46,54,51,55,32,55,65,50,32,50,32,48,32,48,32,48,32,50,46,56,50,54,32,49,52,104,49,48,46,51,52,56,97,50,32,50,32,48,32,48,32,48,32,49,46,57,57,49,45,49,46,56,49,57,108,46,54,51,55,45,55,65,50,32,50,32,48,32,48,32,48,32,49,51,46,56,49,32,51,72,57,46,56,50,56,97,50,32,50,32,48,32,48,32,49,45,49,46,52,49,52,45,46,53,56,54,108,45,46,56,50,56,45,46,56,50,56,65,50,32,50,32,48,32,48,32,48,32,54,46,49,55,50,32,49,72,50,46,53,97,50,32,50,32,48,32,48,32,48,45,50,32,50,122,109,46,54,57,52,32,50,46,48,57,65,49,32,49,32,48,32,48,32,49,32,50,46,49,57,32,52,104,49,49,46,54,50,97,49,32,49,32,48,32,48,32,49,32,46,57,57,54,32,49,46,48,57,108,45,46,54,51,54,32,55,97,49,32,49,32,48,32,48,32,49,45,46,57,57,54,46,57,49,72,50,46,56,50,54,97,49,32,49,32,48,32,48,32,49,45,46,57,57,53,45,46,57,49,108,45,46,54,51,55,45,55,122,77,54,46,49,55,50,32,50,97,49,32,49,32,48,32,48,32,49,32,46,55,48,55,46,50,57,51,76,55,46,53,56,54,32,51,72,50,46,49,57,99,45,46,50,52,32,48,45,46,52,55,46,48,52,50,45,46,54,56,52,46,49,50,76,49,46,53,32,50,46,57,56,97,49,32,49,32,48,32,48,32,49,32,49,45,46,57,56,104,51,46,54,55,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,111,108,100,101,114,83,121,109,108,105,110,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,46,56,49,32,51,72,57,46,56,50,56,97,50,32,50,32,48,32,48,32,49,45,49,46,52,49,52,45,46,53,56,54,108,45,46,56,50,56,45,46,56,50,56,65,50,32,50,32,48,32,48,32,48,32,54,46,49,55,50,32,49,72,50,46,53,97,50,32,50,32,48,32,48,32,48,45,50,32,50,108,46,48,52,46,56,55,97,49,46,57,57,32,49,46,57,57,32,48,32,48,32,48,45,46,51,52,50,32,49,46,51,49,49,108,46,54,51,55,32,55,65,50,32,50,32,48,32,48,32,48,32,50,46,56,50,54,32,49,52,104,49,48,46,51,52,56,97,50,32,50,32,48,32,48,32,48,32,49,46,57,57,49,45,49,46,56,49,57,108,46,54,51,55,45,55,65,50,32,50,32,48,32,48,32,48,32,49,51,46,56,49,32,51,122,77,50,46,49,57,32,51,99,45,46,50,52,32,48,45,46,52,55,46,48,52,50,45,46,54,56,52,46,49,50,76,49,46,53,32,50,46,57,56,97,49,32,49,32,48,32,48,32,49,32,49,45,46,57,56,104,51,46,54,55,50,97,49,32,49,32,48,32,48,32,49,32,46,55,48,55,46,50,57,51,76,55,46,53,56,54,32,51,72,50,46,49,57,122,109,57,46,54,48,56,32,53,46,50,55,49,108,45,51,46,49,56,50,32,49,46,57,55,99,45,46,50,55,46,49,54,54,45,46,54,49,54,45,46,48,51,54,45,46,54,49,54,45,46,51,55,50,86,57,46,49,115,45,50,46,53,55,49,45,46,51,45,52,32,50,46,52,99,46,53,55,49,45,52,46,56,32,51,46,49,52,51,45,52,46,56,32,52,45,52,46,56,118,45,46,55,54,57,99,48,45,46,51,51,54,46,51,52,54,45,46,53,51,56,46,54,49,54,45,46,51,55,49,108,51,46,49,56,50,32,49,46,57,54,57,99,46,50,55,46,49,54,54,46,50,55,46,53,55,54,32,48,32,46,55,52,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,111,108,100,101,114,88,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,111,108,100,101,114,88,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,53,52,32,51,46,56,55,76,46,53,32,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,51,46,54,55,50,97,50,32,50,32,48,32,48,32,49,32,49,46,52,49,52,46,53,56,54,108,46,56,50,56,46,56,50,56,65,50,32,50,32,48,32,48,32,48,32,57,46,56,50,56,32,51,104,51,46,57,56,50,97,50,32,50,32,48,32,48,32,49,32,49,46,57,57,50,32,50,46,49,56,49,76,49,53,46,53,52,54,32,56,72,49,52,46,53,52,108,46,50,54,53,45,50,46,57,49,65,49,32,49,32,48,32,48,32,48,32,49,51,46,56,49,32,52,72,50,46,49,57,97,49,32,49,32,48,32,48,32,48,45,46,57,57,54,32,49,46,48,57,108,46,54,51,55,32,55,97,49,32,49,32,48,32,48,32,48,32,46,57,57,53,46,57,49,72,57,118,49,72,50,46,56,50,54,97,50,32,50,32,48,32,48,32,49,45,49,46,57,57,49,45,49,46,56,49,57,108,45,46,54,51,55,45,55,97,49,46,57,57,32,49,46,57,57,32,48,32,48,32,49,32,46,51,52,50,45,49,46,51,49,122,109,54,46,51,51,57,45,49,46,53,55,55,65,49,32,49,32,48,32,48,32,48,32,54,46,49,55,50,32,50,72,50,46,53,97,49,32,49,32,48,32,48,32,48,45,49,32,46,57,56,49,108,46,48,48,54,46,49,51,57,67,49,46,55,50,32,51,46,48,52,50,32,49,46,57,53,32,51,32,50,46,49,57,32,51,104,53,46,51,57,54,108,45,46,55,48,55,45,46,55,48,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,46,56,53,52,32,49,48,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,76,49,50,46,50,57,51,32,49,50,108,45,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,76,49,51,32,49,50,46,55,48,55,108,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,76,49,51,46,55,48,55,32,49,50,108,49,46,49,52,55,45,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,49,51,32,49,49,46,50,57,51,108,45,49,46,49,52,54,45,49,46,49,52,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,111,110,116,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,111,110,116,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,50,53,56,32,51,72,51,46,55,52,55,108,45,46,48,56,50,32,50,46,52,54,104,46,52,55,56,99,46,50,54,45,49,46,53,52,52,46,55,54,45,49,46,55,56,51,32,50,46,54,57,52,45,49,46,56,52,53,108,46,52,50,52,45,46,48,49,51,118,55,46,56,50,55,99,48,32,46,54,54,51,45,46,49,52,52,46,56,50,45,49,46,51,46,57,50,51,118,46,53,50,104,52,46,48,56,50,118,45,46,53,50,99,45,49,46,49,54,50,45,46,49,48,51,45,49,46,51,48,54,45,46,50,54,45,49,46,51,48,54,45,46,57,50,51,86,51,46,54,48,50,108,46,52,51,46,48,49,51,99,49,46,57,51,53,46,48,54,50,32,50,46,52,51,52,46,51,48,49,32,50,46,54,57,52,32,49,46,56,52,54,104,46,52,55,57,76,49,50,46,50,53,56,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,111,114,119,97,114,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,111,114,119,97,114,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,53,48,50,32,53,46,53,49,51,97,46,49,52,52,46,49,52,52,32,48,32,48,32,48,45,46,50,48,50,46,49,51,52,86,54,46,54,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,50,46,53,118,50,46,57,104,54,46,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,46,48,48,51,99,48,32,46,49,48,56,46,49,49,46,49,55,54,46,50,48,50,46,49,51,52,108,51,46,57,56,52,45,50,46,57,51,51,97,46,53,49,46,53,49,32,48,32,48,32,49,32,46,48,52,50,45,46,48,50,56,46,49,52,55,46,49,52,55,32,48,32,48,32,48,32,48,45,46,50,53,50,46,53,49,46,53,49,32,48,32,48,32,49,45,46,48,52,50,45,46,48,50,56,76,57,46,53,48,50,32,53,46,53,49,51,122,77,56,46,51,32,53,46,54,52,55,97,49,46,49,52,52,32,49,46,49,52,52,32,48,32,48,32,49,32,49,46,55,54,55,45,46,57,54,108,51,46,57,57,52,32,50,46,57,52,97,49,46,49,52,55,32,49,46,49,52,55,32,48,32,48,32,49,32,48,32,49,46,57,52,54,108,45,51,46,57,57,52,32,50,46,57,52,97,49,46,49,52,52,32,49,46,49,52,52,32,48,32,48,32,49,45,49,46,55,54,55,45,46,57,54,118,45,46,53,48,51,72,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,51,46,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,46,51,118,45,46,53,48,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,111,114,119,97,114,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,111,114,119,97,114,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,55,55,32,49,50,46,49,49,108,52,46,48,49,50,45,50,46,57,53,51,97,46,54,52,55,46,54,52,55,32,48,32,48,32,48,32,48,45,49,46,49,49,52,76,57,46,55,55,49,32,53,46,48,57,97,46,54,52,52,46,54,52,52,32,48,32,48,32,48,45,46,57,55,49,46,53,53,55,86,54,46,54,53,72,50,118,51,46,57,104,54,46,56,118,49,46,48,48,51,99,48,32,46,53,48,53,46,53,52,53,46,56,48,56,46,57,55,46,53,53,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,114,111,110,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,114,111,110,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,50,104,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,54,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,53,32,49,48,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,54,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,50,118,53,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,117,108,108,115,99,114,101,101,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,52,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,48,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,52,122,77,49,48,32,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,49,46,53,118,52,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,46,53,32,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,52,46,53,118,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,49,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,52,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,69,120,105,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,117,108,108,115,99,114,101,101,110,69,120,105,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,46,53,32,54,104,45,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,48,32,52,46,53,118,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,48,32,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,54,32,49,49,46,53,118,52,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,49,48,32,49,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,45,49,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,52,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,117,110,110,101,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,117,110,110,101,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,49,46,53,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,104,49,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,49,50,56,46,51,51,52,76,49,48,32,56,46,54,57,50,86,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,51,52,50,46,52,55,52,108,45,51,32,49,65,46,53,46,53,32,48,32,48,32,49,32,54,32,49,52,46,53,86,56,46,54,57,50,76,49,46,54,50,56,32,51,46,56,51,52,65,46,53,46,53,32,48,32,48,32,49,32,49,46,53,32,51,46,53,118,45,50,122,109,49,32,46,53,118,49,46,51,48,56,108,52,46,51,55,50,32,52,46,56,53,56,65,46,53,46,53,32,48,32,48,32,49,32,55,32,56,46,53,118,53,46,51,48,54,108,50,45,46,54,54,54,86,56,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,49,50,56,45,46,51,51,52,76,49,51,46,53,32,51,46,51,48,56,86,50,104,45,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,70,117,110,110,101,108,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,70,117,110,110,101,108,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,49,46,53,65,46,53,46,53,32,48,32,48,32,49,32,50,32,49,104,49,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,49,50,56,46,51,51,52,76,49,48,32,56,46,54,57,50,86,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,51,52,50,46,52,55,52,108,45,51,32,49,65,46,53,46,53,32,48,32,48,32,49,32,54,32,49,52,46,53,86,56,46,54,57,50,76,49,46,54,50,56,32,51,46,56,51,52,65,46,53,46,53,32,48,32,48,32,49,32,49,46,53,32,51,46,53,118,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,101,97,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,101,97,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,52,46,55,53,52,97,51,46,50,52,54,32,51,46,50,52,54,32,48,32,49,32,48,32,48,32,54,46,52,57,50,32,51,46,50,52,54,32,51,46,50,52,54,32,48,32,48,32,48,32,48,45,54,46,52,57,50,122,77,53,46,55,53,52,32,56,97,50,46,50,52,54,32,50,46,50,52,54,32,48,32,49,32,49,32,52,46,52,57,50,32,48,32,50,46,50,52,54,32,50,46,50,52,54,32,48,32,48,32,49,45,52,46,52,57,50,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,55,57,54,32,49,46,51,52,51,99,45,46,53,50,55,45,49,46,55,57,45,51,46,48,54,53,45,49,46,55,57,45,51,46,53,57,50,32,48,108,45,46,48,57,52,46,51,49,57,97,46,56,55,51,46,56,55,51,32,48,32,48,32,49,45,49,46,50,53,53,46,53,50,108,45,46,50,57,50,45,46,49,54,99,45,49,46,54,52,45,46,56,57,50,45,51,46,52,51,51,46,57,48,50,45,50,46,53,52,32,50,46,53,52,49,108,46,49,53,57,46,50,57,50,97,46,56,55,51,46,56,55,51,32,48,32,48,32,49,45,46,53,50,32,49,46,50,53,53,108,45,46,51,49,57,46,48,57,52,99,45,49,46,55,57,46,53,50,55,45,49,46,55,57,32,51,46,48,54,53,32,48,32,51,46,53,57,50,108,46,51,49,57,46,48,57,52,97,46,56,55,51,46,56,55,51,32,48,32,48,32,49,32,46,53,50,32,49,46,50,53,53,108,45,46,49,54,46,50,57,50,99,45,46,56,57,50,32,49,46,54,52,46,57,48,49,32,51,46,52,51,52,32,50,46,53,52,49,32,50,46,53,52,108,46,50,57,50,45,46,49,53,57,97,46,56,55,51,46,56,55,51,32,48,32,48,32,49,32,49,46,50,53,53,46,53,50,108,46,48,57,52,46,51,49,57,99,46,53,50,55,32,49,46,55,57,32,51,46,48,54,53,32,49,46,55,57,32,51,46,53,57,50,32,48,108,46,48,57,52,45,46,51,49,57,97,46,56,55,51,46,56,55,51,32,48,32,48,32,49,32,49,46,50,53,53,45,46,53,50,108,46,50,57,50,46,49,54,99,49,46,54,52,46,56,57,51,32,51,46,52,51,52,45,46,57,48,50,32,50,46,53,52,45,50,46,53,52,49,108,45,46,49,53,57,45,46,50,57,50,97,46,56,55,51,46,56,55,51,32,48,32,48,32,49,32,46,53,50,45,49,46,50,53,53,108,46,51,49,57,45,46,48,57,52,99,49,46,55,57,45,46,53,50,55,32,49,46,55,57,45,51,46,48,54,53,32,48,45,51,46,53,57,50,108,45,46,51,49,57,45,46,48,57,52,97,46,56,55,51,46,56,55,51,32,48,32,48,32,49,45,46,53,50,45,49,46,50,53,53,108,46,49,54,45,46,50,57,50,99,46,56,57,51,45,49,46,54,52,45,46,57,48,50,45,51,46,52,51,51,45,50,46,53,52,49,45,50,46,53,52,108,45,46,50,57,50,46,49,53,57,97,46,56,55,51,46,56,55,51,32,48,32,48,32,49,45,49,46,50,53,53,45,46,53,50,108,45,46,48,57,52,45,46,51,49,57,122,109,45,50,46,54,51,51,46,50,56,51,99,46,50,52,54,45,46,56,51,53,32,49,46,52,50,56,45,46,56,51,53,32,49,46,54,55,52,32,48,108,46,48,57,52,46,51,49,57,97,49,46,56,55,51,32,49,46,56,55,51,32,48,32,48,32,48,32,50,46,54,57,51,32,49,46,49,49,53,108,46,50,57,49,45,46,49,54,99,46,55,54,52,45,46,52,49,53,32,49,46,54,46,52,50,32,49,46,49,56,52,32,49,46,49,56,53,108,45,46,49,53,57,46,50,57,50,97,49,46,56,55,51,32,49,46,56,55,51,32,48,32,48,32,48,32,49,46,49,49,54,32,50,46,54,57,50,108,46,51,49,56,46,48,57,52,99,46,56,51,53,46,50,52,54,46,56,51,53,32,49,46,52,50,56,32,48,32,49,46,54,55,52,108,45,46,51,49,57,46,48,57,52,97,49,46,56,55,51,32,49,46,56,55,51,32,48,32,48,32,48,45,49,46,49,49,53,32,50,46,54,57,51,108,46,49,54,46,50,57,49,99,46,52,49,53,46,55,54,52,45,46,52,50,32,49,46,54,45,49,46,49,56,53,32,49,46,49,56,52,108,45,46,50,57,49,45,46,49,53,57,97,49,46,56,55,51,32,49,46,56,55,51,32,48,32,48,32,48,45,50,46,54,57,51,32,49,46,49,49,54,108,45,46,48,57,52,46,51,49,56,99,45,46,50,52,54,46,56,51,53,45,49,46,52,50,56,46,56,51,53,45,49,46,54,55,52,32,48,108,45,46,48,57,52,45,46,51,49,57,97,49,46,56,55,51,32,49,46,56,55,51,32,48,32,48,32,48,45,50,46,54,57,50,45,49,46,49,49,53,108,45,46,50,57,50,46,49,54,99,45,46,55,54,52,46,52,49,53,45,49,46,54,45,46,52,50,45,49,46,49,56,52,45,49,46,49,56,53,108,46,49,53,57,45,46,50,57,49,65,49,46,56,55,51,32,49,46,56,55,51,32,48,32,48,32,48,32,49,46,57,52,53,32,56,46,57,51,108,45,46,51,49,57,45,46,48,57,52,99,45,46,56,51,53,45,46,50,52,54,45,46,56,51,53,45,49,46,52,50,56,32,48,45,49,46,54,55,52,108,46,51,49,57,45,46,48,57,52,65,49,46,56,55,51,32,49,46,56,55,51,32,48,32,48,32,48,32,51,46,48,54,32,52,46,51,55,55,108,45,46,49,54,45,46,50,57,50,99,45,46,52,49,53,45,46,55,54,52,46,52,50,45,49,46,54,32,49,46,49,56,53,45,49,46,49,56,52,108,46,50,57,50,46,49,53,57,97,49,46,56,55,51,32,49,46,56,55,51,32,48,32,48,32,48,32,50,46,54,57,50,45,49,46,49,49,53,108,46,48,57,52,45,46,51,49,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,101,97,114,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,101,97,114,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,52,48,53,32,49,46,48,53,99,45,46,52,49,51,45,49,46,52,45,50,46,51,57,55,45,49,46,52,45,50,46,56,49,32,48,108,45,46,49,46,51,52,97,49,46,52,54,52,32,49,46,52,54,52,32,48,32,48,32,49,45,50,46,49,48,53,46,56,55,50,108,45,46,51,49,45,46,49,55,99,45,49,46,50,56,51,45,46,54,57,56,45,50,46,54,56,54,46,55,48,53,45,49,46,57,56,55,32,49,46,57,56,55,108,46,49,54,57,46,51,49,49,99,46,52,52,54,46,56,50,46,48,50,51,32,49,46,56,52,49,45,46,56,55,50,32,50,46,49,48,53,108,45,46,51,52,46,49,99,45,49,46,52,46,52,49,51,45,49,46,52,32,50,46,51,57,55,32,48,32,50,46,56,49,108,46,51,52,46,49,97,49,46,52,54,52,32,49,46,52,54,52,32,48,32,48,32,49,32,46,56,55,50,32,50,46,49,48,53,108,45,46,49,55,46,51,49,99,45,46,54,57,56,32,49,46,50,56,51,46,55,48,53,32,50,46,54,56,54,32,49,46,57,56,55,32,49,46,57,56,55,108,46,51,49,49,45,46,49,54,57,97,49,46,52,54,52,32,49,46,52,54,52,32,48,32,48,32,49,32,50,46,49,48,53,46,56,55,50,108,46,49,46,51,52,99,46,52,49,51,32,49,46,52,32,50,46,51,57,55,32,49,46,52,32,50,46,56,49,32,48,108,46,49,45,46,51,52,97,49,46,52,54,52,32,49,46,52,54,52,32,48,32,48,32,49,32,50,46,49,48,53,45,46,56,55,50,108,46,51,49,46,49,55,99,49,46,50,56,51,46,54,57,56,32,50,46,54,56,54,45,46,55,48,53,32,49,46,57,56,55,45,49,46,57,56,55,108,45,46,49,54,57,45,46,51,49,49,97,49,46,52,54,52,32,49,46,52,54,52,32,48,32,48,32,49,32,46,56,55,50,45,50,46,49,48,53,108,46,51,52,45,46,49,99,49,46,52,45,46,52,49,51,32,49,46,52,45,50,46,51,57,55,32,48,45,50,46,56,49,108,45,46,51,52,45,46,49,97,49,46,52,54,52,32,49,46,52,54,52,32,48,32,48,32,49,45,46,56,55,50,45,50,46,49,48,53,108,46,49,55,45,46,51,49,99,46,54,57,56,45,49,46,50,56,51,45,46,55,48,53,45,50,46,54,56,54,45,49,46,57,56,55,45,49,46,57,56,55,108,45,46,51,49,49,46,49,54,57,97,49,46,52,54,52,32,49,46,52,54,52,32,48,32,48,32,49,45,50,46,49,48,53,45,46,56,55,50,108,45,46,49,45,46,51,52,122,77,56,32,49,48,46,57,51,97,50,46,57,50,57,32,50,46,57,50,57,32,48,32,49,32,49,32,48,45,53,46,56,54,32,50,46,57,50,57,32,50,46,57,50,57,32,48,32,48,32,49,32,48,32,53,46,56,53,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,101,97,114,87,105,100,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,101,97,114,87,105,100,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,57,51,50,46,55,50,55,99,45,46,50,52,51,45,46,57,55,45,49,46,54,50,45,46,57,55,45,49,46,56,54,52,32,48,108,45,46,48,55,49,46,50,56,54,97,46,57,54,46,57,54,32,48,32,48,32,49,45,49,46,54,50,50,46,52,51,52,108,45,46,50,48,53,45,46,50,49,49,99,45,46,54,57,53,45,46,55,49,57,45,49,46,56,56,56,45,46,48,51,45,49,46,54,49,51,46,57,51,49,108,46,48,56,46,50,56,52,97,46,57,54,46,57,54,32,48,32,48,32,49,45,49,46,49,56,54,32,49,46,49,56,55,108,45,46,50,56,52,45,46,48,56,49,99,45,46,57,54,45,46,50,55,53,45,49,46,54,53,46,57,49,56,45,46,57,51,49,32,49,46,54,49,51,108,46,50,49,49,46,50,48,53,97,46,57,54,46,57,54,32,48,32,48,32,49,45,46,52,51,52,32,49,46,54,50,50,108,45,46,50,56,54,46,48,55,49,99,45,46,57,55,46,50,52,51,45,46,57,55,32,49,46,54,50,32,48,32,49,46,56,54,52,108,46,50,56,54,46,48,55,49,97,46,57,54,46,57,54,32,48,32,48,32,49,32,46,52,51,52,32,49,46,54,50,50,108,45,46,50,49,49,46,50,48,53,99,45,46,55,49,57,46,54,57,53,45,46,48,51,32,49,46,56,56,56,46,57,51,49,32,49,46,54,49,51,108,46,50,56,52,45,46,48,56,97,46,57,54,46,57,54,32,48,32,48,32,49,32,49,46,49,56,55,32,49,46,49,56,55,108,45,46,48,56,49,46,50,56,51,99,45,46,50,55,53,46,57,54,46,57,49,56,32,49,46,54,53,32,49,46,54,49,51,46,57,51,49,108,46,50,48,53,45,46,50,49,49,97,46,57,54,46,57,54,32,48,32,48,32,49,32,49,46,54,50,50,46,52,51,52,108,46,48,55,49,46,50,56,54,99,46,50,52,51,46,57,55,32,49,46,54,50,46,57,55,32,49,46,56,54,52,32,48,108,46,48,55,49,45,46,50,56,54,97,46,57,54,46,57,54,32,48,32,48,32,49,32,49,46,54,50,50,45,46,52,51,52,108,46,50,48,53,46,50,49,49,99,46,54,57,53,46,55,49,57,32,49,46,56,56,56,46,48,51,32,49,46,54,49,51,45,46,57,51,49,108,45,46,48,56,45,46,50,56,52,97,46,57,54,46,57,54,32,48,32,48,32,49,32,49,46,49,56,55,45,49,46,49,56,55,108,46,50,56,51,46,48,56,49,99,46,57,54,46,50,55,53,32,49,46,54,53,45,46,57,49,56,46,57,51,49,45,49,46,54,49,51,108,45,46,50,49,49,45,46,50,48,53,97,46,57,54,46,57,54,32,48,32,48,32,49,32,46,52,51,52,45,49,46,54,50,50,108,46,50,56,54,45,46,48,55,49,99,46,57,55,45,46,50,52,51,46,57,55,45,49,46,54,50,32,48,45,49,46,56,54,52,108,45,46,50,56,54,45,46,48,55,49,97,46,57,54,46,57,54,32,48,32,48,32,49,45,46,52,51,52,45,49,46,54,50,50,108,46,50,49,49,45,46,50,48,53,99,46,55,49,57,45,46,54,57,53,46,48,51,45,49,46,56,56,56,45,46,57,51,49,45,49,46,54,49,51,108,45,46,50,56,52,46,48,56,97,46,57,54,46,57,54,32,48,32,48,32,49,45,49,46,49,56,55,45,49,46,49,56,54,108,46,48,56,49,45,46,50,56,52,99,46,50,55,53,45,46,57,54,45,46,57,49,56,45,49,46,54,53,45,49,46,54,49,51,45,46,57,51,49,108,45,46,50,48,53,46,50,49,49,97,46,57,54,46,57,54,32,48,32,48,32,49,45,49,46,54,50,50,45,46,52,51,52,76,56,46,57,51,50,46,55,50,55,122,77,56,32,49,50,46,57,57,55,97,52,46,57,57,56,32,52,46,57,57,56,32,48,32,49,32,49,32,48,45,57,46,57,57,53,32,52,46,57,57,56,32,52,46,57,57,56,32,48,32,48,32,49,32,48,32,57,46,57,57,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,101,97,114,87,105,100,101,67,111,110,110,101,99,116,101,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,101,97,114,87,105,100,101,67,111,110,110,101,99,116,101,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,48,54,56,46,55,50,55,99,46,50,52,51,45,46,57,55,32,49,46,54,50,45,46,57,55,32,49,46,56,54,52,32,48,108,46,48,55,49,46,50,56,54,97,46,57,54,46,57,54,32,48,32,48,32,48,32,49,46,54,50,50,46,52,51,52,108,46,50,48,53,45,46,50,49,49,99,46,54,57,53,45,46,55,49,57,32,49,46,56,56,56,45,46,48,51,32,49,46,54,49,51,46,57,51,49,108,45,46,48,56,46,50,56,52,97,46,57,54,46,57,54,32,48,32,48,32,48,32,49,46,49,56,55,32,49,46,49,56,55,108,46,50,56,51,45,46,48,56,49,99,46,57,54,45,46,50,55,53,32,49,46,54,53,46,57,49,56,46,57,51,49,32,49,46,54,49,51,108,45,46,50,49,49,46,50,48,53,97,46,57,54,46,57,54,32,48,32,48,32,48,32,46,52,51,52,32,49,46,54,50,50,108,46,50,56,54,46,48,55,49,99,46,57,55,46,50,52,51,46,57,55,32,49,46,54,50,32,48,32,49,46,56,54,52,108,45,46,50,56,54,46,48,55,49,97,46,57,54,46,57,54,32,48,32,48,32,48,45,46,52,51,52,32,49,46,54,50,50,108,46,50,49,49,46,50,48,53,99,46,55,49,57,46,54,57,53,46,48,51,32,49,46,56,56,56,45,46,57,51,49,32,49,46,54,49,51,108,45,46,50,56,52,45,46,48,56,97,46,57,54,46,57,54,32,48,32,48,32,48,45,49,46,49,56,55,32,49,46,49,56,55,108,46,48,56,49,46,50,56,51,99,46,50,55,53,46,57,54,45,46,57,49,56,32,49,46,54,53,45,49,46,54,49,51,46,57,51,49,108,45,46,50,48,53,45,46,50,49,49,97,46,57,54,46,57,54,32,48,32,48,32,48,45,49,46,54,50,50,46,52,51,52,108,45,46,48,55,49,46,50,56,54,99,45,46,50,52,51,46,57,55,45,49,46,54,50,46,57,55,45,49,46,56,54,52,32,48,108,45,46,48,55,49,45,46,50,56,54,97,46,57,54,46,57,54,32,48,32,48,32,48,45,49,46,54,50,50,45,46,52,51,52,108,45,46,50,48,53,46,50,49,49,99,45,46,54,57,53,46,55,49,57,45,49,46,56,56,56,46,48,51,45,49,46,54,49,51,45,46,57,51,49,108,46,48,56,45,46,50,56,52,97,46,57,54,46,57,54,32,48,32,48,32,48,45,49,46,49,56,54,45,49,46,49,56,55,108,45,46,50,56,52,46,48,56,49,99,45,46,57,54,46,50,55,53,45,49,46,54,53,45,46,57,49,56,45,46,57,51,49,45,49,46,54,49,51,108,46,50,49,49,45,46,50,48,53,97,46,57,54,46,57,54,32,48,32,48,32,48,45,46,52,51,52,45,49,46,54,50,50,108,45,46,50,56,54,45,46,48,55,49,99,45,46,57,55,45,46,50,52,51,45,46,57,55,45,49,46,54,50,32,48,45,49,46,56,54,52,108,46,50,56,54,45,46,48,55,49,97,46,57,54,46,57,54,32,48,32,48,32,48,32,46,52,51,52,45,49,46,54,50,50,108,45,46,50,49,49,45,46,50,48,53,99,45,46,55,49,57,45,46,54,57,53,45,46,48,51,45,49,46,56,56,56,46,57,51,49,45,49,46,54,49,51,108,46,50,56,52,46,48,56,97,46,57,54,46,57,54,32,48,32,48,32,48,32,49,46,49,56,55,45,49,46,49,56,54,108,45,46,48,56,49,45,46,50,56,52,99,45,46,50,55,53,45,46,57,54,46,57,49,56,45,49,46,54,53,32,49,46,54,49,51,45,46,57,51,49,108,46,50,48,53,46,50,49,49,97,46,57,54,46,57,54,32,48,32,48,32,48,32,49,46,54,50,50,45,46,52,51,52,108,46,48,55,49,45,46,50,56,54,122,77,49,50,46,57,55,51,32,56,46,53,72,56,46,50,53,108,45,50,46,56,51,52,32,51,46,55,55,57,65,52,46,57,57,56,32,52,46,57,57,56,32,48,32,48,32,48,32,49,50,46,57,55,51,32,56,46,53,122,109,48,45,49,97,52,46,57,57,56,32,52,46,57,57,56,32,48,32,48,32,48,45,55,46,53,53,55,45,51,46,55,55,57,108,50,46,56,51,52,32,51,46,55,56,104,52,46,55,50,51,122,77,53,46,48,52,56,32,51,46,57,54,55,99,45,46,48,51,46,48,50,49,45,46,48,53,56,46,48,52,51,45,46,48,56,55,46,48,54,53,108,46,48,56,55,45,46,48,54,53,122,109,45,46,52,51,49,46,51,53,53,65,52,46,57,56,52,32,52,46,57,56,52,32,48,32,48,32,48,32,51,46,48,48,50,32,56,99,48,32,49,46,52,53,53,46,54,50,50,32,50,46,55,54,53,32,49,46,54,49,53,32,51,46,54,55,56,76,55,46,51,55,53,32,56,32,52,46,54,49,55,32,52,46,51,50,50,122,109,46,51,52,52,32,55,46,54,52,54,108,46,48,56,55,46,48,54,53,45,46,48,56,55,45,46,48,54,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,101,109,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,101,109,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,49,46,55,97,46,53,46,53,32,48,32,48,32,49,32,46,52,45,46,50,104,57,97,46,53,46,53,32,48,32,48,32,49,32,46,52,46,50,108,50,46,57,55,54,32,51,46,57,55,52,99,46,49,52,57,46,49,56,53,46,49,53,54,46,52,53,46,48,49,46,54,52,52,76,56,46,52,32,49,53,46,51,97,46,53,46,53,32,48,32,48,32,49,45,46,56,32,48,76,46,49,32,53,46,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,54,108,51,45,52,122,109,49,49,46,51,56,54,32,51,46,55,56,53,108,45,49,46,56,48,54,45,50,46,52,49,45,46,55,55,54,32,50,46,52,49,51,32,50,46,53,56,50,45,46,48,48,51,122,109,45,51,46,54,51,51,46,48,48,52,108,46,57,54,49,45,50,46,57,56,57,72,52,46,49,56,54,108,46,57,54,51,32,50,46,57,57,53,32,53,46,55,48,52,45,46,48,48,54,122,77,53,46,52,55,32,53,46,52,57,53,76,56,32,49,51,46,51,54,54,108,50,46,53,51,50,45,55,46,56,55,54,45,53,46,48,54,50,46,48,48,53,122,109,45,49,46,51,55,49,45,46,57,57,57,108,45,46,55,56,45,50,46,52,50,50,45,49,46,56,49,56,32,50,46,52,50,53,32,50,46,53,57,56,45,46,48,48,51,122,77,49,46,52,57,57,32,53,46,53,108,53,46,49,49,51,32,54,46,56,49,55,45,50,46,49,57,50,45,54,46,56,50,76,49,46,53,32,53,46,53,122,109,55,46,56,56,57,32,54,46,56,49,55,108,53,46,49,50,51,45,54,46,56,51,45,50,46,57,50,56,46,48,48,50,45,50,46,49,57,53,32,54,46,56,50,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,101,111,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,101,111,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,49,97,51,32,51,32,48,32,49,32,48,32,48,32,54,32,51,32,51,32,48,32,48,32,48,32,48,45,54,122,77,52,32,52,97,52,32,52,32,48,32,49,32,49,32,52,46,53,32,51,46,57,54,57,86,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,55,46,57,55,65,52,32,52,32,48,32,48,32,49,32,52,32,51,46,57,57,57,122,109,50,46,52,57,51,32,56,46,53,55,52,97,46,53,46,53,32,48,32,48,32,49,45,46,52,49,49,46,53,55,53,99,45,46,55,49,50,46,49,49,56,45,49,46,50,56,46,50,57,53,45,49,46,54,53,53,46,52,57,51,97,49,46,51,49,57,32,49,46,51,49,57,32,48,32,48,32,48,45,46,51,55,46,50,54,53,46,51,48,49,46,51,48,49,32,48,32,48,32,48,45,46,48,53,55,46,48,57,86,49,52,108,46,48,48,50,46,48,48,56,97,46,49,52,55,46,49,52,55,32,48,32,48,32,48,32,46,48,49,54,46,48,51,51,46,54,49,55,46,54,49,55,32,48,32,48,32,48,32,46,49,52,53,46,49,53,99,46,49,54,53,46,49,51,46,52,51,53,46,50,55,46,56,49,51,46,51,57,53,46,55,53,49,46,50,53,32,49,46,56,50,46,52,49,52,32,51,46,48,50,52,46,52,49,52,115,50,46,50,55,51,45,46,49,54,51,32,51,46,48,50,52,45,46,52,49,52,99,46,51,55,56,45,46,49,50,54,46,54,52,56,45,46,50,54,53,46,56,49,51,45,46,51,57,53,97,46,54,49,57,46,54,49,57,32,48,32,48,32,48,32,46,49,52,54,45,46,49,53,46,49,52,56,46,49,52,56,32,48,32,48,32,48,32,46,48,49,53,45,46,48,51,51,76,49,50,32,49,52,118,45,46,48,48,52,97,46,51,48,49,46,51,48,49,32,48,32,48,32,48,45,46,48,53,55,45,46,48,57,32,49,46,51,49,56,32,49,46,51,49,56,32,48,32,48,32,48,45,46,51,55,45,46,50,54,52,99,45,46,51,55,54,45,46,49,57,56,45,46,57,52,51,45,46,51,55,53,45,49,46,54,53,53,45,46,52,57,51,97,46,53,46,53,32,48,32,49,32,49,32,46,49,54,52,45,46,57,56,54,99,46,55,55,46,49,50,55,32,49,46,52,53,50,46,51,50,56,32,49,46,57,53,55,46,53,57,52,67,49,50,46,53,32,49,51,32,49,51,32,49,51,46,52,32,49,51,32,49,52,99,48,32,46,52,50,54,45,46,50,54,46,55,53,50,45,46,53,52,52,46,57,55,55,45,46,50,57,46,50,50,56,45,46,54,56,46,52,49,51,45,49,46,49,49,54,46,53,53,56,45,46,56,55,56,46,50,57,51,45,50,46,48,53,57,46,52,54,53,45,51,46,51,52,46,52,54,53,45,49,46,50,56,49,32,48,45,50,46,52,54,50,45,46,49,55,50,45,51,46,51,52,45,46,52,54,53,45,46,52,51,54,45,46,49,52,53,45,46,56,50,54,45,46,51,51,45,49,46,49,49,54,45,46,53,53,56,67,51,46,50,54,32,49,52,46,55,53,50,32,51,32,49,52,46,52,50,54,32,51,32,49,52,99,48,45,46,53,57,57,46,53,45,49,32,46,57,54,49,45,49,46,50,52,51,46,53,48,53,45,46,50,54,54,32,49,46,49,56,55,45,46,52,54,55,32,49,46,57,53,55,45,46,53,57,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,55,53,46,52,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,101,111,65,108,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,101,111,65,108,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,49,54,54,32,56,46,57,52,99,45,46,53,50,52,32,49,46,48,54,50,45,49,46,50,51,52,32,50,46,49,50,45,49,46,57,54,32,51,46,48,55,65,51,49,46,52,57,51,32,51,49,46,52,57,51,32,48,32,48,32,49,32,56,32,49,52,46,53,56,97,51,49,46,52,56,49,32,51,49,46,52,56,49,32,48,32,48,32,49,45,50,46,50,48,54,45,50,46,53,55,99,45,46,55,50,54,45,46,57,53,45,49,46,52,51,54,45,50,46,48,48,56,45,49,46,57,54,45,51,46,48,55,67,51,46,51,48,52,32,55,46,56,54,55,32,51,32,54,46,56,54,50,32,51,32,54,97,53,32,53,32,48,32,48,32,49,32,49,48,32,48,99,48,32,46,56,54,50,45,46,51,48,53,32,49,46,56,54,55,45,46,56,51,52,32,50,46,57,52,122,77,56,32,49,54,115,54,45,53,46,54,56,54,32,54,45,49,48,65,54,32,54,32,48,32,48,32,48,32,50,32,54,99,48,32,52,46,51,49,52,32,54,32,49,48,32,54,32,49,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,56,97,50,32,50,32,48,32,49,32,49,32,48,45,52,32,50,32,50,32,48,32,48,32,49,32,48,32,52,122,109,48,32,49,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,101,111,65,108,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,101,111,65,108,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,115,54,45,53,46,54,56,54,32,54,45,49,48,65,54,32,54,32,48,32,48,32,48,32,50,32,54,99,48,32,52,46,51,49,52,32,54,32,49,48,32,54,32,49,48,122,109,48,45,55,97,51,32,51,32,48,32,49,32,49,32,48,45,54,32,51,32,51,32,48,32,48,32,49,32,48,32,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,101,111,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,101,111,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,52,32,52,97,52,32,52,32,48,32,49,32,49,32,52,46,53,32,51,46,57,54,57,86,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,55,46,57,55,65,52,32,52,32,48,32,48,32,49,32,52,32,51,46,57,57,57,122,109,50,46,52,57,51,32,56,46,53,55,52,97,46,53,46,53,32,48,32,48,32,49,45,46,52,49,49,46,53,55,53,99,45,46,55,49,50,46,49,49,56,45,49,46,50,56,46,50,57,53,45,49,46,54,53,53,46,52,57,51,97,49,46,51,49,57,32,49,46,51,49,57,32,48,32,48,32,48,45,46,51,55,46,50,54,53,46,51,48,49,46,51,48,49,32,48,32,48,32,48,45,46,48,53,55,46,48,57,86,49,52,108,46,48,48,50,46,48,48,56,97,46,49,52,55,46,49,52,55,32,48,32,48,32,48,32,46,48,49,54,46,48,51,51,46,54,49,55,46,54,49,55,32,48,32,48,32,48,32,46,49,52,53,46,49,53,99,46,49,54,53,46,49,51,46,52,51,53,46,50,55,46,56,49,51,46,51,57,53,46,55,53,49,46,50,53,32,49,46,56,50,46,52,49,52,32,51,46,48,50,52,46,52,49,52,115,50,46,50,55,51,45,46,49,54,51,32,51,46,48,50,52,45,46,52,49,52,99,46,51,55,56,45,46,49,50,54,46,54,52,56,45,46,50,54,53,46,56,49,51,45,46,51,57,53,97,46,54,49,57,46,54,49,57,32,48,32,48,32,48,32,46,49,52,54,45,46,49,53,46,49,52,56,46,49,52,56,32,48,32,48,32,48,32,46,48,49,53,45,46,48,51,51,76,49,50,32,49,52,118,45,46,48,48,52,97,46,51,48,49,46,51,48,49,32,48,32,48,32,48,45,46,48,53,55,45,46,48,57,32,49,46,51,49,56,32,49,46,51,49,56,32,48,32,48,32,48,45,46,51,55,45,46,50,54,52,99,45,46,51,55,54,45,46,49,57,56,45,46,57,52,51,45,46,51,55,53,45,49,46,54,53,53,45,46,52,57,51,97,46,53,46,53,32,48,32,49,32,49,32,46,49,54,52,45,46,57,56,54,99,46,55,55,46,49,50,55,32,49,46,52,53,50,46,51,50,56,32,49,46,57,53,55,46,53,57,52,67,49,50,46,53,32,49,51,32,49,51,32,49,51,46,52,32,49,51,32,49,52,99,48,32,46,52,50,54,45,46,50,54,46,55,53,50,45,46,53,52,52,46,57,55,55,45,46,50,57,46,50,50,56,45,46,54,56,46,52,49,51,45,49,46,49,49,54,46,53,53,56,45,46,56,55,56,46,50,57,51,45,50,46,48,53,57,46,52,54,53,45,51,46,51,52,46,52,54,53,45,49,46,50,56,49,32,48,45,50,46,52,54,50,45,46,49,55,50,45,51,46,51,52,45,46,52,54,53,45,46,52,51,54,45,46,49,52,53,45,46,56,50,54,45,46,51,51,45,49,46,49,49,54,45,46,53,53,56,67,51,46,50,54,32,49,52,46,55,53,50,32,51,32,49,52,46,52,50,54,32,51,32,49,52,99,48,45,46,53,57,57,46,53,45,49,32,46,57,54,49,45,49,46,50,52,51,46,53,48,53,45,46,50,54,54,32,49,46,49,56,55,45,46,52,54,55,32,49,46,57,53,55,45,46,53,57,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,55,53,46,52,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,105,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,105,102,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,50,46,53,97,50,46,53,32,50,46,53,32,48,32,48,32,49,32,53,32,48,32,50,46,53,32,50,46,53,32,48,32,48,32,49,32,53,32,48,118,46,48,48,54,99,48,32,46,48,55,32,48,32,46,50,55,45,46,48,51,56,46,52,57,52,72,49,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,118,55,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,32,49,52,46,53,86,55,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,46,48,51,56,65,50,46,57,54,56,32,50,46,57,54,56,32,48,32,48,32,49,32,51,32,50,46,53,48,54,86,50,46,53,122,109,49,46,48,54,56,46,53,72,55,118,45,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,48,45,51,32,48,99,48,32,46,48,56,53,46,48,48,50,46,50,55,52,46,48,52,53,46,52,51,97,46,53,50,50,46,53,50,50,32,48,32,48,32,48,32,46,48,50,51,46,48,55,122,77,57,32,51,104,50,46,57,51,50,97,46,53,54,46,53,54,32,48,32,48,32,48,32,46,48,50,51,45,46,48,55,99,46,48,52,51,45,46,49,53,54,46,48,52,53,45,46,51,52,53,46,48,52,53,45,46,52,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,45,51,32,48,86,51,122,77,49,32,52,118,50,104,54,86,52,72,49,122,109,56,32,48,118,50,104,54,86,52,72,57,122,109,53,32,51,72,57,118,56,104,52,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,55,122,109,45,55,32,56,86,55,72,50,118,55,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,72,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,105,102,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,105,102,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,50,46,53,97,50,46,53,32,50,46,53,32,48,32,48,32,49,32,53,32,48,32,50,46,53,32,50,46,53,32,48,32,48,32,49,32,53,32,48,118,46,48,48,54,99,48,32,46,48,55,32,48,32,46,50,55,45,46,48,51,56,46,52,57,52,72,49,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,46,48,51,56,65,50,46,57,54,56,32,50,46,57,54,56,32,48,32,48,32,49,32,51,32,50,46,53,48,54,86,50,46,53,122,109,49,46,48,54,56,46,53,72,55,118,45,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,48,45,51,32,48,99,48,32,46,48,56,53,46,48,48,50,46,50,55,52,46,48,52,53,46,52,51,97,46,53,50,50,46,53,50,50,32,48,32,48,32,48,32,46,48,50,51,46,48,55,122,77,57,32,51,104,50,46,57,51,50,97,46,53,54,46,53,54,32,48,32,48,32,48,32,46,48,50,51,45,46,48,55,99,46,48,52,51,45,46,49,53,54,46,48,52,53,45,46,51,52,53,46,48,52,53,45,46,52,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,45,51,32,48,86,51,122,109,54,32,52,118,55,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,72,57,86,55,104,54,122,77,50,46,53,32,49,54,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,32,49,52,46,53,86,55,104,54,118,57,72,50,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,105,116,104,117,98,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,105,116,104,117,98,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,48,67,51,46,53,56,32,48,32,48,32,51,46,53,56,32,48,32,56,99,48,32,51,46,53,52,32,50,46,50,57,32,54,46,53,51,32,53,46,52,55,32,55,46,53,57,46,52,46,48,55,46,53,53,45,46,49,55,46,53,53,45,46,51,56,32,48,45,46,49,57,45,46,48,49,45,46,56,50,45,46,48,49,45,49,46,52,57,45,50,46,48,49,46,51,55,45,50,46,53,51,45,46,52,57,45,50,46,54,57,45,46,57,52,45,46,48,57,45,46,50,51,45,46,52,56,45,46,57,52,45,46,56,50,45,49,46,49,51,45,46,50,56,45,46,49,53,45,46,54,56,45,46,53,50,45,46,48,49,45,46,53,51,46,54,51,45,46,48,49,32,49,46,48,56,46,53,56,32,49,46,50,51,46,56,50,46,55,50,32,49,46,50,49,32,49,46,56,55,46,56,55,32,50,46,51,51,46,54,54,46,48,55,45,46,53,50,46,50,56,45,46,56,55,46,53,49,45,49,46,48,55,45,49,46,55,56,45,46,50,45,51,46,54,52,45,46,56,57,45,51,46,54,52,45,51,46,57,53,32,48,45,46,56,55,46,51,49,45,49,46,53,57,46,56,50,45,50,46,49,53,45,46,48,56,45,46,50,45,46,51,54,45,49,46,48,50,46,48,56,45,50,46,49,50,32,48,32,48,32,46,54,55,45,46,50,49,32,50,46,50,46,56,50,46,54,52,45,46,49,56,32,49,46,51,50,45,46,50,55,32,50,45,46,50,55,46,54,56,32,48,32,49,46,51,54,46,48,57,32,50,32,46,50,55,32,49,46,53,51,45,49,46,48,52,32,50,46,50,45,46,56,50,32,50,46,50,45,46,56,50,46,52,52,32,49,46,49,46,49,54,32,49,46,57,50,46,48,56,32,50,46,49,50,46,53,49,46,53,54,46,56,50,32,49,46,50,55,46,56,50,32,50,46,49,53,32,48,32,51,46,48,55,45,49,46,56,55,32,51,46,55,53,45,51,46,54,53,32,51,46,57,53,46,50,57,46,50,53,46,53,52,46,55,51,46,53,52,32,49,46,52,56,32,48,32,49,46,48,55,45,46,48,49,32,49,46,57,51,45,46,48,49,32,50,46,50,32,48,32,46,50,49,46,49,53,46,52,54,46,53,53,46,51,56,65,56,46,48,49,50,32,56,46,48,49,50,32,48,32,48,32,48,32,49,54,32,56,99,48,45,52,46,52,50,45,51,46,53,56,45,56,45,56,45,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,108,111,98,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,108,111,98,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,56,97,56,32,56,32,48,32,49,32,49,32,49,54,32,48,65,56,32,56,32,48,32,48,32,49,32,48,32,56,122,109,55,46,53,45,54,46,57,50,51,99,45,46,54,55,46,50,48,52,45,49,46,51,51,53,46,56,50,45,49,46,56,56,55,32,49,46,56,53,53,65,55,46,57,55,32,55,46,57,55,32,48,32,48,32,48,32,53,46,49,52,53,32,52,72,55,46,53,86,49,46,48,55,55,122,77,52,46,48,57,32,52,97,57,46,50,54,55,32,57,46,50,54,55,32,48,32,48,32,49,32,46,54,52,45,49,46,53,51,57,32,54,46,55,32,54,46,55,32,48,32,48,32,49,32,46,53,57,55,45,46,57,51,51,65,55,46,48,50,53,32,55,46,48,50,53,32,48,32,48,32,48,32,50,46,50,53,53,32,52,72,52,46,48,57,122,109,45,46,53,56,50,32,51,46,53,99,46,48,51,45,46,56,55,55,46,49,51,56,45,49,46,55,49,56,46,51,49,50,45,50,46,53,72,49,46,54,55,52,97,54,46,57,53,56,32,54,46,57,53,56,32,48,32,48,32,48,45,46,54,53,54,32,50,46,53,104,50,46,52,57,122,77,52,46,56,52,55,32,53,97,49,50,46,53,32,49,50,46,53,32,48,32,48,32,48,45,46,51,51,56,32,50,46,53,72,55,46,53,86,53,72,52,46,56,52,55,122,77,56,46,53,32,53,118,50,46,53,104,50,46,57,57,97,49,50,46,52,57,53,32,49,50,46,52,57,53,32,48,32,48,32,48,45,46,51,51,55,45,50,46,53,72,56,46,53,122,77,52,46,53,49,32,56,46,53,97,49,50,46,53,32,49,50,46,53,32,48,32,48,32,48,32,46,51,51,55,32,50,46,53,72,55,46,53,86,56,46,53,72,52,46,53,49,122,109,51,46,57,57,32,48,86,49,49,104,50,46,54,53,51,99,46,49,56,55,45,46,55,54,53,46,51,48,54,45,49,46,54,48,56,46,51,51,56,45,50,46,53,72,56,46,53,122,77,53,46,49,52,53,32,49,50,99,46,49,51,56,46,51,56,54,46,50,57,53,46,55,52,52,46,52,54,56,32,49,46,48,54,56,46,53,53,50,32,49,46,48,51,53,32,49,46,50,49,56,32,49,46,54,53,32,49,46,56,56,55,32,49,46,56,53,53,86,49,50,72,53,46,49,52,53,122,109,46,49,56,50,32,50,46,52,55,50,97,54,46,54,57,54,32,54,46,54,57,54,32,48,32,48,32,49,45,46,53,57,55,45,46,57,51,51,65,57,46,50,54,56,32,57,46,50,54,56,32,48,32,48,32,49,32,52,46,48,57,32,49,50,72,50,46,50,53,53,97,55,46,48,50,52,32,55,46,48,50,52,32,48,32,48,32,48,32,51,46,48,55,50,32,50,46,52,55,50,122,77,51,46,56,50,32,49,49,97,49,51,46,54,53,50,32,49,51,46,54,53,50,32,48,32,48,32,49,45,46,51,49,50,45,50,46,53,104,45,50,46,52,57,99,46,48,54,50,46,56,57,46,50,57,49,32,49,46,55,51,51,46,54,53,54,32,50,46,53,72,51,46,56,50,122,109,54,46,56,53,51,32,51,46,52,55,50,65,55,46,48,50,52,32,55,46,48,50,52,32,48,32,48,32,48,32,49,51,46,55,52,53,32,49,50,72,49,49,46,57,49,97,57,46,50,55,32,57,46,50,55,32,48,32,48,32,49,45,46,54,52,32,49,46,53,51,57,32,54,46,54,56,56,32,54,46,54,56,56,32,48,32,48,32,49,45,46,53,57,55,46,57,51,51,122,77,56,46,53,32,49,50,118,50,46,57,50,51,99,46,54,55,45,46,50,48,52,32,49,46,51,51,53,45,46,56,50,32,49,46,56,56,55,45,49,46,56,53,53,46,49,55,51,45,46,51,50,52,46,51,51,45,46,54,56,50,46,52,54,56,45,49,46,48,54,56,72,56,46,53,122,109,51,46,54,56,45,49,104,50,46,49,52,54,99,46,51,54,53,45,46,55,54,55,46,53,57,52,45,49,46,54,49,46,54,53,54,45,50,46,53,104,45,50,46,52,57,97,49,51,46,54,53,32,49,51,46,54,53,32,48,32,48,32,49,45,46,51,49,50,32,50,46,53,122,109,50,46,56,48,50,45,51,46,53,97,54,46,57,53,57,32,54,46,57,53,57,32,48,32,48,32,48,45,46,54,53,54,45,50,46,53,72,49,50,46,49,56,99,46,49,55,52,46,55,56,50,46,50,56,50,32,49,46,54,50,51,46,51,49,50,32,50,46,53,104,50,46,52,57,122,77,49,49,46,50,55,32,50,46,52,54,49,99,46,50,52,55,46,52,54,52,46,52,54,50,46,57,56,46,54,52,32,49,46,53,51,57,104,49,46,56,51,53,97,55,46,48,50,52,32,55,46,48,50,52,32,48,32,48,32,48,45,51,46,48,55,50,45,50,46,52,55,50,99,46,50,49,56,46,50,56,52,46,52,49,56,46,53,57,56,46,53,57,55,46,57,51,51,122,77,49,48,46,56,53,53,32,52,97,55,46,57,54,54,32,55,46,57,54,54,32,48,32,48,32,48,45,46,52,54,56,45,49,46,48,54,56,67,57,46,56,51,53,32,49,46,56,57,55,32,57,46,49,55,32,49,46,50,56,50,32,56,46,53,32,49,46,48,55,55,86,52,104,50,46,51,53,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,108,111,98,101,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,108,111,98,101,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,56,97,56,32,56,32,48,32,49,32,49,32,49,54,32,48,65,56,32,56,32,48,32,48,32,49,32,48,32,56,122,109,55,46,53,45,54,46,57,50,51,99,45,46,54,55,46,50,48,52,45,49,46,51,51,53,46,56,50,45,49,46,56,56,55,32,49,46,56,53,53,45,46,49,52,51,46,50,54,56,45,46,50,55,54,46,53,54,45,46,51,57,53,46,56,55,50,46,55,48,53,46,49,53,55,32,49,46,52,55,50,46,50,53,55,32,50,46,50,56,50,46,50,56,55,86,49,46,48,55,55,122,77,52,46,50,52,57,32,51,46,53,51,57,99,46,49,52,50,45,46,51,56,52,46,51,48,52,45,46,55,52,52,46,52,56,49,45,49,46,48,55,56,97,54,46,55,32,54,46,55,32,48,32,48,32,49,32,46,53,57,55,45,46,57,51,51,65,55,46,48,49,32,55,46,48,49,32,48,32,48,32,48,32,51,46,48,53,49,32,51,46,48,53,99,46,51,54,50,46,49,56,52,46,55,54,51,46,51,52,57,32,49,46,49,57,56,46,52,57,122,77,51,46,53,48,57,32,55,46,53,99,46,48,51,54,45,49,46,48,55,46,49,56,56,45,50,46,48,56,55,46,52,51,54,45,51,46,48,48,56,97,57,46,49,50,52,32,57,46,49,50,52,32,48,32,48,32,49,45,49,46,53,54,53,45,46,54,54,55,65,54,46,57,54,52,32,54,46,57,54,52,32,48,32,48,32,48,32,49,46,48,49,56,32,55,46,53,104,50,46,52,57,122,109,49,46,52,45,50,46,55,52,49,97,49,50,46,51,52,52,32,49,50,46,51,52,52,32,48,32,48,32,48,45,46,52,32,50,46,55,52,49,72,55,46,53,86,53,46,48,57,49,99,45,46,57,49,45,46,48,51,45,49,46,55,56,51,45,46,49,52,53,45,50,46,53,57,49,45,46,51,51,50,122,77,56,46,53,32,53,46,48,57,86,55,46,53,104,50,46,57,57,97,49,50,46,51,52,50,32,49,50,46,51,52,50,32,48,32,48,32,48,45,46,51,57,57,45,50,46,55,52,49,99,45,46,56,48,56,46,49,56,55,45,49,46,54,56,49,46,51,48,49,45,50,46,53,57,49,46,51,51,50,122,77,52,46,53,49,32,56,46,53,99,46,48,51,53,46,57,56,55,46,49,55,54,32,49,46,57,49,52,46,51,57,57,32,50,46,55,52,49,65,49,51,46,54,49,50,32,49,51,46,54,49,50,32,48,32,48,32,49,32,55,46,53,32,49,48,46,57,49,86,56,46,53,72,52,46,53,49,122,109,51,46,57,57,32,48,118,50,46,52,48,57,99,46,57,49,46,48,51,32,49,46,55,56,51,46,49,52,53,32,50,46,53,57,49,46,51,51,50,46,50,50,51,45,46,56,50,55,46,51,54,52,45,49,46,55,53,52,46,52,45,50,46,55,52,49,72,56,46,53,122,109,45,51,46,50,56,50,32,51,46,54,57,54,99,46,49,50,46,51,49,50,46,50,53,50,46,54,48,52,46,51,57,53,46,56,55,50,46,53,53,50,32,49,46,48,51,53,32,49,46,50,49,56,32,49,46,54,53,32,49,46,56,56,55,32,49,46,56,53,53,86,49,49,46,57,49,99,45,46,56,49,46,48,51,45,49,46,53,55,55,46,49,51,45,50,46,50,56,50,46,50,56,55,122,109,46,49,49,32,50,46,50,55,54,97,54,46,54,57,54,32,54,46,54,57,54,32,48,32,48,32,49,45,46,53,57,56,45,46,57,51,51,32,56,46,56,53,51,32,56,46,56,53,51,32,48,32,48,32,49,45,46,52,56,49,45,49,46,48,55,57,32,56,46,51,56,32,56,46,51,56,32,48,32,48,32,48,45,49,46,49,57,56,46,52,57,32,55,46,48,49,32,55,46,48,49,32,48,32,48,32,48,32,50,46,50,55,54,32,49,46,53,50,50,122,109,45,49,46,51,56,51,45,50,46,57,54,52,65,49,51,46,51,54,32,49,51,46,51,54,32,48,32,48,32,49,32,51,46,53,48,56,32,56,46,53,104,45,50,46,52,57,97,54,46,57,54,51,32,54,46,57,54,51,32,48,32,48,32,48,32,49,46,51,54,50,32,51,46,54,55,53,99,46,52,55,45,46,50,53,56,46,57,57,53,45,46,52,56,50,32,49,46,53,54,53,45,46,54,54,55,122,109,54,46,55,50,56,32,50,46,57,54,52,97,55,46,48,48,57,32,55,46,48,48,57,32,48,32,48,32,48,32,50,46,50,55,53,45,49,46,53,50,49,32,56,46,51,55,54,32,56,46,51,55,54,32,48,32,48,32,48,45,49,46,49,57,55,45,46,52,57,32,56,46,56,53,51,32,56,46,56,53,51,32,48,32,48,32,49,45,46,52,56,49,32,49,46,48,55,56,32,54,46,54,56,56,32,54,46,54,56,56,32,48,32,48,32,49,45,46,53,57,55,46,57,51,51,122,77,56,46,53,32,49,49,46,57,48,57,118,51,46,48,49,52,99,46,54,55,45,46,50,48,52,32,49,46,51,51,53,45,46,56,50,32,49,46,56,56,55,45,49,46,56,53,53,46,49,52,51,45,46,50,54,56,46,50,55,54,45,46,53,54,46,51,57,53,45,46,56,55,50,65,49,50,46,54,51,32,49,50,46,54,51,32,48,32,48,32,48,32,56,46,53,32,49,49,46,57,49,122,109,51,46,53,53,53,45,46,52,48,49,99,46,53,55,46,49,56,53,32,49,46,48,57,53,46,52,48,57,32,49,46,53,54,53,46,54,54,55,65,54,46,57,54,51,32,54,46,57,54,51,32,48,32,48,32,48,32,49,52,46,57,56,50,32,56,46,53,104,45,50,46,52,57,97,49,51,46,51,54,32,49,51,46,51,54,32,48,32,48,32,49,45,46,52,51,55,32,51,46,48,48,56,122,77,49,52,46,57,56,50,32,55,46,53,97,54,46,57,54,51,32,54,46,57,54,51,32,48,32,48,32,48,45,49,46,51,54,50,45,51,46,54,55,53,99,45,46,52,55,46,50,53,56,45,46,57,57,53,46,52,56,50,45,49,46,53,54,53,46,54,54,55,46,50,52,56,46,57,50,46,52,32,49,46,57,51,56,46,52,51,55,32,51,46,48,48,56,104,50,46,52,57,122,77,49,49,46,50,55,32,50,46,52,54,49,99,46,49,55,55,46,51,51,52,46,51,51,57,46,54,57,52,46,52,56,50,32,49,46,48,55,56,97,56,46,51,54,56,32,56,46,51,54,56,32,48,32,48,32,48,32,49,46,49,57,54,45,46,52,57,32,55,46,48,49,32,55,46,48,49,32,48,32,48,32,48,45,50,46,50,55,53,45,49,46,53,50,99,46,50,49,56,46,50,56,51,46,52,49,56,46,53,57,55,46,53,57,55,46,57,51,50,122,109,45,46,52,56,56,32,49,46,51,52,51,97,55,46,55,54,53,32,55,46,55,54,53,32,48,32,48,32,48,45,46,51,57,53,45,46,56,55,50,67,57,46,56,51,53,32,49,46,56,57,55,32,57,46,49,55,32,49,46,50,56,50,32,56,46,53,32,49,46,48,55,55,86,52,46,48,57,99,46,56,49,45,46,48,51,32,49,46,53,55,55,45,46,49,51,32,50,46,50,56,50,45,46,50,56,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,111,111,103,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,111,111,103,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,53,46,53,52,53,32,54,46,53,53,56,97,57,46,52,50,32,57,46,52,50,32,48,32,48,32,49,32,46,49,51,57,32,49,46,54,50,54,99,48,32,50,46,52,51,52,45,46,56,55,32,52,46,52,57,50,45,50,46,51,56,52,32,53,46,56,56,53,104,46,48,48,50,67,49,49,46,57,55,56,32,49,53,46,50,57,50,32,49,48,46,49,53,56,32,49,54,32,56,32,49,54,65,56,32,56,32,48,32,49,32,49,32,56,32,48,97,55,46,54,56,57,32,55,46,54,56,57,32,48,32,48,32,49,32,53,46,51,53,50,32,50,46,48,56,50,108,45,50,46,50,56,52,32,50,46,50,56,52,65,52,46,51,52,55,32,52,46,51,52,55,32,48,32,48,32,48,32,56,32,51,46,49,54,54,99,45,50,46,48,56,55,32,48,45,51,46,56,54,32,49,46,52,48,56,45,52,46,52,57,50,32,51,46,51,48,52,97,52,46,55,57,50,32,52,46,55,57,50,32,48,32,48,32,48,32,48,32,51,46,48,54,51,104,46,48,48,51,99,46,54,51,53,32,49,46,56,57,51,32,50,46,52,48,53,32,51,46,51,48,49,32,52,46,52,57,50,32,51,46,51,48,49,32,49,46,48,55,56,32,48,32,50,46,48,48,52,45,46,50,55,54,32,50,46,55,50,50,45,46,55,54,52,104,45,46,48,48,51,97,51,46,55,48,50,32,51,46,55,48,50,32,48,32,48,32,48,32,49,46,53,57,57,45,50,46,52,51,49,72,56,118,45,51,46,48,56,104,55,46,53,52,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,114,97,112,104,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,114,97,112,104,68,111,119,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,48,32,48,104,49,118,49,53,104,49,53,118,49,72,48,86,48,122,109,49,48,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,52,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,50,46,54,108,45,51,46,54,49,51,45,52,46,52,49,55,97,46,53,46,53,32,48,32,48,32,48,45,46,55,52,45,46,48,51,55,76,55,46,48,54,32,56,46,50,51,51,32,51,46,52,48,52,32,51,46,50,48,54,97,46,53,46,53,32,48,32,48,32,48,45,46,56,48,56,46,53,56,56,108,52,32,53,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,53,56,46,48,54,108,50,46,54,48,57,45,50,46,54,49,76,49,51,46,52,52,53,32,49,49,72,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,114,97,112,104,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,114,97,112,104,85,112,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,48,32,48,104,49,118,49,53,104,49,53,118,49,72,48,86,48,122,109,49,48,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,52,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,52,46,57,108,45,51,46,54,49,51,32,52,46,52,49,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,52,46,48,51,55,76,55,46,48,54,32,54,46,55,54,55,108,45,51,46,54,53,54,32,53,46,48,50,55,97,46,53,46,53,32,48,32,48,32,49,45,46,56,48,56,45,46,53,56,56,108,52,45,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,53,56,45,46,48,54,108,50,46,54,48,57,32,50,46,54,49,76,49,51,46,52,52,53,32,52,72,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,114,105,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,114,105,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,46,53,32,49,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,32,50,46,53,118,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,46,53,32,55,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,32,53,46,53,118,45,51,122,77,50,46,53,32,50,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,51,122,109,54,46,53,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,48,46,53,32,49,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,53,32,50,46,53,118,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,51,46,53,32,55,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,32,53,46,53,118,45,51,122,109,49,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,51,122,77,49,32,49,48,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,46,53,32,57,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,32,49,48,46,53,118,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,46,53,32,49,53,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,32,49,51,46,53,118,45,51,122,109,49,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,51,122,109,54,46,53,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,48,46,53,32,57,104,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,46,53,118,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,32,49,51,46,53,118,45,51,122,109,49,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,114,105,100,49,120,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,114,105,100,49,120,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,49,72,49,118,49,52,104,53,86,49,122,109,57,32,48,104,45,53,118,53,104,53,86,49,122,109,48,32,57,118,53,104,45,53,118,45,53,104,53,122,77,48,32,49,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,49,122,109,57,32,48,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,53,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,49,122,109,49,32,56,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,53,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,53,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,53,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,114,105,100,49,120,50,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,114,105,100,49,120,50,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,49,122,109,57,32,48,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,53,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,49,122,109,48,32,57,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,53,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,114,105,100,51,120,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,114,105,100,51,120,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,50,104,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,51,46,53,118,56,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,49,46,53,118,45,56,122,77,49,46,53,32,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,86,55,104,52,86,51,72,49,46,53,122,77,53,32,56,72,49,118,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,72,53,86,56,122,109,49,32,48,118,52,104,52,86,56,72,54,122,109,52,45,49,86,51,72,54,118,52,104,52,122,109,49,32,49,118,52,104,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,56,104,45,52,122,109,48,45,49,104,52,86,51,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,49,49,118,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,114,105,100,51,120,50,71,97,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,52,118,50,72,50,86,52,104,50,122,109,49,32,55,86,57,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,122,109,48,45,53,86,52,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,122,109,53,32,53,86,57,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,55,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,122,109,48,45,53,86,52,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,55,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,122,77,57,32,52,118,50,72,55,86,52,104,50,122,109,53,32,48,104,45,50,118,50,104,50,86,52,122,77,52,32,57,118,50,72,50,86,57,104,50,122,109,53,32,48,118,50,72,55,86,57,104,50,122,109,53,32,48,118,50,104,45,50,86,57,104,50,122,109,45,51,45,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,122,109,49,32,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,57,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,114,105,100,51,120,50,71,97,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,122,109,53,32,48,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,55,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,122,109,53,32,48,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,122,77,49,32,57,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,57,122,109,53,32,48,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,55,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,57,122,109,53,32,48,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,114,105,100,51,120,51,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,114,105,100,51,120,51,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,48,104,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,49,46,53,118,49,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,52,46,53,118,45,49,51,122,77,49,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,86,53,104,52,86,49,72,49,46,53,122,77,53,32,54,72,49,118,52,104,52,86,54,122,109,49,32,52,104,52,86,54,72,54,118,52,122,109,45,49,32,49,72,49,118,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,72,53,118,45,52,122,109,49,32,48,118,52,104,52,118,45,52,72,54,122,109,53,32,48,118,52,104,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,49,49,104,45,52,122,109,48,45,49,104,52,86,54,104,45,52,118,52,122,109,48,45,53,104,52,86,49,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,49,49,118,52,122,109,45,49,32,48,86,49,72,54,118,52,104,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,114,105,100,51,120,51,71,97,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,50,118,50,72,50,86,50,104,50,122,109,49,32,49,50,118,45,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,122,109,48,45,53,86,55,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,122,109,48,45,53,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,122,109,53,32,49,48,118,45,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,55,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,122,109,48,45,53,86,55,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,55,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,122,109,48,45,53,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,55,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,122,77,57,32,50,118,50,72,55,86,50,104,50,122,109,53,32,48,118,50,104,45,50,86,50,104,50,122,77,52,32,55,118,50,72,50,86,55,104,50,122,109,53,32,48,118,50,72,55,86,55,104,50,122,109,53,32,48,104,45,50,118,50,104,50,86,55,122,77,52,32,49,50,118,50,72,50,118,45,50,104,50,122,109,53,32,48,118,50,72,55,118,45,50,104,50,122,109,53,32,48,118,50,104,45,50,118,45,50,104,50,122,77,49,50,32,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,50,122,109,45,49,32,54,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,55,122,109,49,32,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,114,105,100,51,120,51,71,97,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,122,109,53,32,48,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,55,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,122,109,53,32,48,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,122,77,49,32,55,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,55,122,109,53,32,48,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,55,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,55,122,109,53,32,48,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,55,122,77,49,32,49,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,50,122,109,53,32,48,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,55,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,50,122,109,53,32,48,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,114,105,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,114,105,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,46,53,32,49,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,32,50,46,53,118,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,46,53,32,55,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,32,53,46,53,118,45,51,122,109,56,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,48,46,53,32,49,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,53,32,50,46,53,118,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,51,46,53,32,55,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,32,53,46,53,118,45,51,122,109,45,56,32,56,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,46,53,32,57,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,32,49,48,46,53,118,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,46,53,32,49,53,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,32,49,51,46,53,118,45,51,122,109,56,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,48,46,53,32,57,104,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,46,53,118,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,32,49,51,46,53,118,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,114,105,112,72,111,114,105,122,111,110,116,97,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,114,105,112,72,111,114,105,122,111,110,116,97,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,56,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,109,48,45,51,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,109,51,32,51,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,109,48,45,51,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,109,51,32,51,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,109,48,45,51,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,109,51,32,51,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,109,48,45,51,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,109,51,32,51,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,109,48,45,51,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,71,114,105,112,86,101,114,116,105,99,97,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,71,114,105,112,86,101,114,116,105,99,97,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,50,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,51,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,77,55,32,53,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,51,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,77,55,32,56,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,51,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,45,51,32,51,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,51,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,45,51,32,51,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,51,32,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,97,109,109,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,97,109,109,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,57,55,50,32,50,46,53,48,56,97,46,53,46,53,32,48,32,48,32,48,45,46,49,54,45,46,53,53,54,108,45,46,49,55,56,45,46,49,50,57,97,53,46,48,48,57,32,53,46,48,48,57,32,48,32,48,32,48,45,50,46,48,55,54,45,46,55,56,51,67,54,46,50,49,53,46,56,54,50,32,52,46,53,48,52,32,49,46,50,50,57,32,50,46,56,52,32,51,46,49,51,51,72,49,46,55,56,54,97,46,53,46,53,32,48,32,48,32,48,45,46,51,53,52,46,49,52,55,76,46,49,52,54,32,52,46,53,54,55,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,54,108,50,46,53,55,49,32,50,46,53,55,57,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,49,46,50,56,54,45,49,46,50,57,97,46,53,46,53,32,48,32,48,32,48,32,46,49,52,54,45,46,51,53,51,86,53,46,53,55,108,56,46,51,56,55,32,56,46,56,55,51,65,46,53,46,53,32,48,32,48,32,48,32,49,52,32,49,52,46,53,108,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,48,49,55,45,46,54,56,57,108,45,57,46,49,50,57,45,56,46,54,51,99,46,55,52,55,45,46,52,53,54,32,49,46,55,55,50,45,46,56,51,57,32,51,46,49,49,50,45,46,56,51,57,97,46,53,46,53,32,48,32,48,32,48,32,46,52,55,50,45,46,51,51,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,97,110,100,73,110,100,101,120,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,97,110,100,73,110,100,101,120,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,55,53,32,49,97,46,55,53,46,55,53,32,48,32,48,32,49,32,46,55,53,46,55,53,86,56,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,53,46,52,54,55,108,46,48,56,54,45,46,48,48,52,99,46,51,49,55,45,46,48,49,50,46,54,51,55,45,46,48,48,56,46,56,49,54,46,48,50,55,46,49,51,52,46,48,50,55,46,50,57,52,46,48,57,54,46,52,52,56,46,49,56,50,46,48,55,55,46,48,52,50,46,49,53,46,49,52,55,46,49,53,46,51,49,52,86,56,97,46,53,46,53,32,48,32,49,32,48,32,49,32,48,86,54,46,52,51,53,97,52,46,57,32,52,46,57,32,48,32,48,32,49,32,46,49,48,54,45,46,48,49,99,46,51,49,54,45,46,48,50,52,46,53,56,52,45,46,48,49,46,55,48,56,46,48,52,46,49,49,56,46,48,52,54,46,51,46,50,48,55,46,52,56,54,46,52,51,46,48,56,49,46,48,57,54,46,49,53,46,49,57,46,50,46,50,53,57,86,56,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,49,104,46,51,52,50,97,49,32,49,32,48,32,48,32,49,32,46,57,57,53,32,49,46,49,108,45,46,50,55,49,32,50,46,55,49,53,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,46,51,49,55,46,57,57,49,108,45,49,46,51,57,53,32,50,46,52,52,50,97,46,53,46,53,32,48,32,48,32,49,45,46,52,51,52,46,50,53,50,72,54,46,48,51,53,97,46,53,46,53,32,48,32,48,32,49,45,46,52,49,54,45,46,50,50,51,108,45,49,46,52,51,51,45,50,46,49,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,46,50,52,51,45,46,54,54,54,108,45,46,51,52,53,45,51,46,49,48,53,97,46,53,46,53,32,48,32,48,32,49,32,46,51,57,57,45,46,53,52,54,76,53,32,56,46,49,49,86,57,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,49,46,55,53,65,46,55,53,46,55,53,32,48,32,48,32,49,32,54,46,55,53,32,49,122,77,56,46,53,32,52,46,52,54,54,86,49,46,55,53,97,49,46,55,53,32,49,46,55,53,32,48,32,49,32,48,45,51,46,53,32,48,118,53,46,51,52,108,45,49,46,50,46,50,52,97,49,46,53,32,49,46,53,32,48,32,48,32,48,45,49,46,49,57,54,32,49,46,54,51,54,108,46,51,52,53,32,51,46,49,48,54,97,50,46,53,32,50,46,53,32,48,32,48,32,48,32,46,52,48,53,32,49,46,49,49,108,49,46,52,51,51,32,50,46,49,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,54,46,48,51,53,32,49,54,104,54,46,51,56,53,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,51,48,50,45,46,55,53,54,108,49,46,51,57,53,45,50,46,52,52,49,97,51,46,53,32,51,46,53,32,48,32,48,32,48,32,46,52,52,52,45,49,46,51,56,57,108,46,50,55,49,45,50,46,55,49,53,97,50,32,50,32,48,32,48,32,48,45,49,46,57,57,45,50,46,49,57,57,104,45,46,53,56,49,97,53,46,49,49,52,32,53,46,49,49,52,32,48,32,48,32,48,45,46,49,57,53,45,46,50,52,56,99,45,46,49,57,49,45,46,50,50,57,45,46,53,49,45,46,53,54,56,45,46,56,56,45,46,55,49,54,45,46,51,54,52,45,46,49,52,54,45,46,56,52,54,45,46,49,51,50,45,49,46,49,53,56,45,46,49,48,56,108,45,46,49,51,50,46,48,49,50,97,49,46,50,54,32,49,46,50,54,32,48,32,48,32,48,45,46,53,54,45,46,54,52,50,32,50,46,54,51,50,32,50,46,54,51,50,32,48,32,48,32,48,45,46,55,51,56,45,46,50,56,56,99,45,46,51,49,45,46,48,54,50,45,46,55,51,57,45,46,48,53,56,45,49,46,48,53,45,46,48,52,54,108,45,46,48,52,56,46,48,48,50,122,109,50,46,48,57,52,32,50,46,48,50,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,97,110,100,73,110,100,101,120,84,104,117,109,98,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,97,110,100,73,110,100,101,120,84,104,117,109,98,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,55,53,32,49,97,46,55,53,46,55,53,32,48,32,48,32,49,32,46,55,53,46,55,53,86,56,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,53,46,52,54,55,108,46,48,56,54,45,46,48,48,52,99,46,51,49,55,45,46,48,49,50,46,54,51,55,45,46,48,48,56,46,56,49,54,46,48,50,55,46,49,51,52,46,48,50,55,46,50,57,52,46,48,57,54,46,52,52,56,46,49,56,50,46,48,55,55,46,48,52,50,46,49,53,46,49,52,55,46,49,53,46,51,49,52,86,56,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,54,46,52,51,53,108,46,49,48,54,45,46,48,49,99,46,51,49,54,45,46,48,50,52,46,53,56,52,45,46,48,49,46,55,48,56,46,48,52,46,49,49,56,46,48,52,54,46,51,46,50,48,55,46,52,56,54,46,52,51,46,48,56,49,46,48,57,54,46,49,53,46,49,57,46,50,46,50,53,57,86,56,46,53,97,46,53,46,53,32,48,32,49,32,48,32,49,32,48,118,45,49,104,46,51,52,50,97,49,32,49,32,48,32,48,32,49,32,46,57,57,53,32,49,46,49,108,45,46,50,55,49,32,50,46,55,49,53,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,46,51,49,55,46,57,57,49,108,45,49,46,51,57,53,32,50,46,52,52,50,97,46,53,46,53,32,48,32,48,32,49,45,46,52,51,52,46,50,53,50,72,54,46,49,49,56,97,46,53,46,53,32,48,32,48,32,49,45,46,52,52,55,45,46,50,55,54,108,45,49,46,50,51,50,45,50,46,52,54,53,45,50,46,53,49,50,45,52,46,49,56,53,97,46,53,49,55,46,53,49,55,32,48,32,48,32,49,32,46,56,48,57,45,46,54,51,49,108,50,46,52,49,32,50,46,52,49,65,46,53,46,53,32,48,32,48,32,48,32,54,32,57,46,53,86,49,46,55,53,65,46,55,53,46,55,53,32,48,32,48,32,49,32,54,46,55,53,32,49,122,77,56,46,53,32,52,46,52,54,54,86,49,46,55,53,97,49,46,55,53,32,49,46,55,53,32,48,32,49,32,48,45,51,46,53,32,48,118,54,46,53,52,51,76,51,46,52,52,51,32,54,46,55,51,54,65,49,46,53,49,55,32,49,46,53,49,55,32,48,32,48,32,48,32,49,46,48,55,32,56,46,53,56,56,108,50,46,52,57,49,32,52,46,49,53,51,32,49,46,50,49,53,32,50,46,52,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,54,46,49,49,56,32,49,54,104,54,46,51,48,50,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,51,48,50,45,46,55,53,54,108,49,46,51,57,53,45,50,46,52,52,49,97,51,46,53,32,51,46,53,32,48,32,48,32,48,32,46,52,52,52,45,49,46,51,56,57,108,46,50,55,49,45,50,46,55,49,53,97,50,32,50,32,48,32,48,32,48,45,49,46,57,57,45,50,46,49,57,57,104,45,46,53,56,49,97,53,46,49,49,52,32,53,46,49,49,52,32,48,32,48,32,48,45,46,49,57,53,45,46,50,52,56,99,45,46,49,57,49,45,46,50,50,57,45,46,53,49,45,46,53,54,56,45,46,56,56,45,46,55,49,54,45,46,51,54,52,45,46,49,52,54,45,46,56,52,54,45,46,49,51,50,45,49,46,49,53,56,45,46,49,48,56,108,45,46,49,51,50,46,48,49,50,97,49,46,50,54,32,49,46,50,54,32,48,32,48,32,48,45,46,53,54,45,46,54,52,50,32,50,46,54,51,50,32,50,46,54,51,50,32,48,32,48,32,48,45,46,55,51,56,45,46,50,56,56,99,45,46,51,49,45,46,48,54,50,45,46,55,51,57,45,46,48,53,56,45,49,46,48,53,45,46,48,52,54,108,45,46,48,52,56,46,48,48,50,122,109,50,46,48,57,52,32,50,46,48,50,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,97,110,100,84,104,117,109,98,115,68,111,119,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,56,54,52,32,49,53,46,54,55,52,99,45,46,57,53,54,46,50,52,45,49,46,56,52,51,45,46,52,56,52,45,49,46,57,48,56,45,49,46,52,50,45,46,48,55,50,45,49,46,48,53,45,46,50,51,45,50,46,48,49,53,45,46,52,50,56,45,50,46,53,57,45,46,49,50,53,45,46,51,54,45,46,52,55,57,45,49,46,48,49,50,45,49,46,48,52,45,49,46,54,51,56,45,46,53,53,55,45,46,54,50,52,45,49,46,50,56,50,45,49,46,49,55,57,45,50,46,49,51,49,45,49,46,52,49,67,50,46,54,56,53,32,56,46,52,51,50,32,50,32,55,46,56,53,32,50,32,55,86,51,99,48,45,46,56,52,53,46,54,56,50,45,49,46,52,54,52,32,49,46,52,52,56,45,49,46,53,52,54,32,49,46,48,55,45,46,49,49,51,32,49,46,53,54,52,45,46,52,49,53,32,50,46,48,54,56,45,46,55,50,51,108,46,48,52,56,45,46,48,50,57,99,46,50,55,50,45,46,49,54,54,46,53,55,56,45,46,51,52,57,46,57,55,45,46,52,56,52,67,54,46,57,51,49,46,48,56,32,55,46,51,57,53,32,48,32,56,32,48,104,51,46,53,99,46,57,51,55,32,48,32,49,46,53,57,57,46,52,55,56,32,49,46,57,51,52,32,49,46,48,54,52,46,49,54,52,46,50,56,55,46,50,53,52,46,54,48,55,46,50,53,52,46,57,49,51,32,48,32,46,49,53,50,45,46,48,50,51,46,51,49,50,45,46,48,55,55,46,52,54,52,46,50,48,49,46,50,54,50,46,51,56,46,53,55,55,46,52,56,56,46,57,46,49,49,46,51,51,46,49,55,50,46,55,54,50,46,48,48,52,32,49,46,49,53,46,48,54,57,46,49,51,46,49,50,46,50,54,56,46,49,53,57,46,52,48,51,46,48,55,55,46,50,55,46,49,49,51,46,53,54,55,46,49,49,51,46,56,53,54,32,48,32,46,50,56,57,45,46,48,51,54,46,53,56,54,45,46,49,49,51,46,56,53,54,45,46,48,51,53,46,49,50,45,46,48,56,46,50,52,52,45,46,49,51,56,46,51,54,51,46,51,57,52,46,53,55,49,46,52,49,56,32,49,46,50,46,50,51,52,32,49,46,55,51,51,45,46,50,48,54,46,53,57,50,45,46,54,56,50,32,49,46,49,45,49,46,50,32,49,46,50,55,50,45,46,56,52,55,46,50,56,51,45,49,46,56,48,51,46,50,55,54,45,50,46,53,49,54,46,50,49,49,97,57,46,56,55,55,32,57,46,56,55,55,32,48,32,48,32,49,45,46,52,52,51,45,46,48,53,32,57,46,51,54,52,32,57,46,51,54,52,32,48,32,48,32,49,45,46,48,54,50,32,52,46,53,49,99,45,46,49,51,56,46,53,48,56,45,46,53,53,46,56,52,56,45,49,46,48,49,50,46,57,54,52,108,45,46,50,54,49,46,48,54,53,122,77,49,49,46,53,32,49,72,56,99,45,46,53,49,32,48,45,46,56,54,51,46,48,54,56,45,49,46,49,52,46,49,54,51,45,46,50,56,49,46,48,57,55,45,46,53,48,54,46,50,50,57,45,46,55,55,54,46,51,57,51,108,45,46,48,52,46,48,50,53,99,45,46,53,53,53,46,51,51,56,45,49,46,49,57,56,46,55,51,45,50,46,52,57,46,56,54,56,45,46,51,51,51,46,48,51,53,45,46,53,53,52,46,50,57,45,46,53,53,52,46,53,53,86,55,99,48,32,46,50,53,53,46,50,50,54,46,53,52,51,46,54,50,46,54,53,32,49,46,48,57,53,46,51,32,49,46,57,55,55,46,57,57,55,32,50,46,54,49,52,32,49,46,55,48,57,46,54,51,53,46,55,49,32,49,46,48,54,52,32,49,46,52,55,53,32,49,46,50,51,56,32,49,46,57,55,55,46,50,52,51,46,55,46,52,48,55,32,49,46,55,54,56,46,52,56,50,32,50,46,56,53,46,48,50,53,46,51,54,50,46,51,54,46,53,57,53,46,54,54,55,46,53,49,56,108,46,50,54,50,45,46,48,54,53,99,46,49,54,45,46,48,52,46,50,53,56,45,46,49,52,52,46,50,56,56,45,46,50,53,53,97,56,46,51,52,32,56,46,51,52,32,48,32,48,32,48,45,46,49,52,53,45,52,46,55,50,54,46,53,46,53,32,48,32,48,32,49,32,46,53,57,53,45,46,54,52,51,104,46,48,48,51,108,46,48,49,52,46,48,48,52,46,48,53,56,46,48,49,51,97,56,46,57,49,50,32,56,46,57,49,50,32,48,32,48,32,48,32,49,46,48,51,54,46,49,53,55,99,46,54,54,51,46,48,54,32,49,46,52,53,55,46,48,53,52,32,50,46,49,49,45,46,49,54,51,46,49,55,53,45,46,48,53,57,46,52,53,45,46,51,48,49,46,53,55,45,46,54,53,49,46,49,48,55,45,46,51,48,56,46,48,56,55,45,46,54,55,45,46,50,54,54,45,49,46,48,50,49,76,49,50,46,55,57,51,32,55,108,46,51,53,51,45,46,51,53,52,99,46,48,52,51,45,46,48,52,50,46,49,48,53,45,46,49,52,46,49,53,52,45,46,51,49,53,46,48,52,56,45,46,49,54,55,46,48,55,53,45,46,51,55,46,48,55,53,45,46,53,56,49,32,48,45,46,50,49,49,45,46,48,50,55,45,46,52,49,52,45,46,48,55,53,45,46,53,56,49,45,46,48,53,45,46,49,55,52,45,46,49,49,49,45,46,50,55,51,45,46,49,53,52,45,46,51,49,53,108,45,46,51,53,51,45,46,51,53,52,46,51,53,51,45,46,51,53,52,99,46,48,52,55,45,46,48,52,55,46,49,48,57,45,46,49,55,54,46,48,48,53,45,46,52,56,56,97,50,46,50,50,52,32,50,46,50,50,52,32,48,32,48,32,48,45,46,53,48,53,45,46,56,48,52,108,45,46,51,53,51,45,46,51,53,52,46,51,53,51,45,46,51,53,52,99,46,48,48,54,45,46,48,48,53,46,48,52,49,45,46,48,53,46,48,52,49,45,46,49,55,97,46,56,54,54,46,56,54,54,32,48,32,48,32,48,45,46,49,50,49,45,46,52,49,53,67,49,50,46,52,32,49,46,50,55,50,32,49,50,46,48,54,51,32,49,32,49,49,46,53,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,97,110,100,84,104,117,109,98,115,85,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,56,54,52,46,48,52,54,67,55,46,57,48,56,45,46,49,57,51,32,55,46,48,50,46,53,51,32,54,46,57,53,54,32,49,46,52,54,54,99,45,46,48,55,50,32,49,46,48,53,49,45,46,50,51,32,50,46,48,49,54,45,46,52,50,56,32,50,46,53,57,45,46,49,50,53,46,51,54,45,46,52,55,57,32,49,46,48,49,51,45,49,46,48,52,32,49,46,54,51,57,45,46,53,53,55,46,54,50,51,45,49,46,50,56,50,32,49,46,49,55,56,45,50,46,49,51,49,32,49,46,52,49,67,50,46,54,56,53,32,55,46,50,56,56,32,50,32,55,46,56,55,32,50,32,56,46,55,50,118,52,46,48,48,49,99,48,32,46,56,52,53,46,54,56,50,32,49,46,52,54,52,32,49,46,52,52,56,32,49,46,53,52,53,32,49,46,48,55,46,49,49,52,32,49,46,53,54,52,46,52,49,53,32,50,46,48,54,56,46,55,50,51,108,46,48,52,56,46,48,51,99,46,50,55,50,46,49,54,53,46,53,55,56,46,51,52,56,46,57,55,46,52,56,52,46,51,57,55,46,49,51,54,46,56,54,49,46,50,49,55,32,49,46,52,54,54,46,50,49,55,104,51,46,53,99,46,57,51,55,32,48,32,49,46,53,57,57,45,46,52,55,55,32,49,46,57,51,52,45,49,46,48,54,52,97,49,46,56,54,32,49,46,56,54,32,48,32,48,32,48,32,46,50,53,52,45,46,57,49,50,99,48,45,46,49,53,50,45,46,48,50,51,45,46,51,49,50,45,46,48,55,55,45,46,52,54,52,46,50,48,49,45,46,50,54,51,46,51,56,45,46,53,55,56,46,52,56,56,45,46,57,48,49,46,49,49,45,46,51,51,46,49,55,50,45,46,55,54,50,46,48,48,52,45,49,46,49,52,57,46,48,54,57,45,46,49,51,46,49,50,45,46,50,54,57,46,49,53,57,45,46,52,48,51,46,48,55,55,45,46,50,55,46,49,49,51,45,46,53,54,56,46,49,49,51,45,46,56,53,55,32,48,45,46,50,56,56,45,46,48,51,54,45,46,53,56,53,45,46,49,49,51,45,46,56,53,54,97,50,46,49,52,52,32,50,46,49,52,52,32,48,32,48,32,48,45,46,49,51,56,45,46,51,54,50,32,49,46,57,32,49,46,57,32,48,32,48,32,48,32,46,50,51,52,45,49,46,55,51,52,99,45,46,50,48,54,45,46,53,57,50,45,46,54,56,50,45,49,46,49,45,49,46,50,45,49,46,50,55,50,45,46,56,52,55,45,46,50,56,50,45,49,46,56,48,51,45,46,50,55,54,45,50,46,53,49,54,45,46,50,49,49,97,57,46,56,52,32,57,46,56,52,32,48,32,48,32,48,45,46,52,52,51,46,48,53,32,57,46,51,54,53,32,57,46,51,54,53,32,48,32,48,32,48,45,46,48,54,50,45,52,46,53,48,57,65,49,46,51,56,32,49,46,51,56,32,48,32,48,32,48,32,57,46,49,50,53,46,49,49,49,76,56,46,56,54,52,46,48,52,54,122,77,49,49,46,53,32,49,52,46,55,50,49,72,56,99,45,46,53,49,32,48,45,46,56,54,51,45,46,48,54,57,45,49,46,49,52,45,46,49,54,52,45,46,50,56,49,45,46,48,57,55,45,46,53,48,54,45,46,50,50,56,45,46,55,55,54,45,46,51,57,51,108,45,46,48,52,45,46,48,50,52,99,45,46,53,53,53,45,46,51,51,57,45,49,46,49,57,56,45,46,55,51,49,45,50,46,52,57,45,46,56,54,56,45,46,51,51,51,45,46,48,51,54,45,46,53,53,52,45,46,50,57,45,46,53,53,52,45,46,53,53,86,56,46,55,50,99,48,45,46,50,53,52,46,50,50,54,45,46,53,52,51,46,54,50,45,46,54,53,32,49,46,48,57,53,45,46,51,32,49,46,57,55,55,45,46,57,57,54,32,50,46,54,49,52,45,49,46,55,48,56,46,54,51,53,45,46,55,49,32,49,46,48,54,52,45,49,46,52,55,53,32,49,46,50,51,56,45,49,46,57,55,56,46,50,52,51,45,46,55,46,52,48,55,45,49,46,55,54,56,46,52,56,50,45,50,46,56,53,46,48,50,53,45,46,51,54,50,46,51,54,45,46,53,57,52,46,54,54,55,45,46,53,49,56,108,46,50,54,50,46,48,54,54,99,46,49,54,46,48,52,46,50,53,56,46,49,52,51,46,50,56,56,46,50,53,53,97,56,46,51,52,32,56,46,51,52,32,48,32,48,32,49,45,46,49,52,53,32,52,46,55,50,53,46,53,46,53,32,48,32,48,32,48,32,46,53,57,53,46,54,52,52,108,46,48,48,51,45,46,48,48,49,46,48,49,52,45,46,48,48,51,46,48,53,56,45,46,48,49,52,97,56,46,57,48,56,32,56,46,57,48,56,32,48,32,48,32,49,32,49,46,48,51,54,45,46,49,53,55,99,46,54,54,51,45,46,48,54,32,49,46,52,53,55,45,46,48,53,52,32,50,46,49,49,46,49,54,52,46,49,55,53,46,48,53,56,46,52,53,46,51,46,53,55,46,54,53,46,49,48,55,46,51,48,56,46,48,56,55,46,54,55,45,46,50,54,54,32,49,46,48,50,50,108,45,46,51,53,51,46,51,53,51,46,51,53,51,46,51,53,52,99,46,48,52,51,46,48,52,51,46,49,48,53,46,49,52,49,46,49,53,52,46,51,49,53,46,48,52,56,46,49,54,55,46,48,55,53,46,51,55,46,48,55,53,46,53,56,49,32,48,32,46,50,49,50,45,46,48,50,55,46,52,49,52,45,46,48,55,53,46,53,56,50,45,46,48,53,46,49,55,52,45,46,49,49,49,46,50,55,50,45,46,49,53,52,46,51,49,53,108,45,46,51,53,51,46,51,53,51,46,51,53,51,46,51,53,52,99,46,48,52,55,46,48,52,55,46,49,48,57,46,49,55,55,46,48,48,53,46,52,56,56,97,50,46,50,50,52,32,50,46,50,50,52,32,48,32,48,32,49,45,46,53,48,53,46,56,48,53,108,45,46,51,53,51,46,51,53,51,46,51,53,51,46,51,53,52,99,46,48,48,54,46,48,48,53,46,48,52,49,46,48,53,46,48,52,49,46,49,55,97,46,56,54,54,46,56,54,54,32,48,32,48,32,49,45,46,49,50,49,46,52,49,54,99,45,46,49,54,53,46,50,56,56,45,46,53,48,51,46,53,54,45,49,46,48,54,54,46,53,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,97,110,100,98,97,103,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,97,110,100,98,97,103,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,50,72,54,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,109,51,32,52,86,51,97,51,32,51,32,48,32,49,32,48,45,54,32,48,118,50,72,51,46,51,54,49,97,49,46,53,32,49,46,53,32,48,32,48,32,48,45,49,46,52,56,51,32,49,46,50,55,55,76,46,56,53,32,49,51,46,49,51,65,50,46,53,32,50,46,53,32,48,32,48,32,48,32,51,46,51,50,50,32,49,54,104,57,46,51,53,54,97,50,46,53,32,50,46,53,32,48,32,48,32,48,32,50,46,52,55,50,45,50,46,56,55,108,45,49,46,48,50,56,45,54,46,56,53,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,50,46,54,52,32,53,72,49,49,122,109,45,49,32,49,118,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,54,104,49,46,54,51,57,97,46,53,46,53,32,48,32,48,32,49,32,46,52,57,52,46,52,50,54,108,49,46,48,50,56,32,54,46,56,53,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,50,46,54,55,56,32,49,53,72,51,46,51,50,50,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,52,56,51,45,49,46,55,50,51,108,49,46,48,50,56,45,54,46,56,53,49,65,46,53,46,53,32,48,32,48,32,49,32,51,46,51,54,32,54,72,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,54,104,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,97,110,100,98,97,103,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,97,110,100,98,97,103,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,50,72,53,86,51,97,51,32,51,32,48,32,48,32,49,32,54,32,48,118,50,104,45,49,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,53,32,53,72,51,46,51,54,49,97,49,46,53,32,49,46,53,32,48,32,48,32,48,45,49,46,52,56,51,32,49,46,50,55,55,76,46,56,53,32,49,51,46,49,51,65,50,46,53,32,50,46,53,32,48,32,48,32,48,32,51,46,51,50,50,32,49,54,104,57,46,51,53,54,97,50,46,53,32,50,46,53,32,48,32,48,32,48,32,50,46,52,55,50,45,50,46,56,55,108,45,49,46,48,50,56,45,54,46,56,53,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,50,46,54,52,32,53,72,49,49,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,53,72,54,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,97,115,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,97,115,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,51,57,32,49,50,46,54,52,56,97,49,46,51,50,32,49,46,51,50,32,48,32,48,32,48,45,46,48,49,53,46,49,56,99,48,32,46,51,48,53,46,50,49,46,53,48,56,46,53,46,53,48,56,46,50,54,54,32,48,32,46,52,57,50,45,46,49,55,50,46,53,53,53,45,46,52,55,55,108,46,53,53,52,45,50,46,55,48,51,104,49,46,50,48,52,99,46,52,50,49,32,48,32,46,54,49,55,45,46,50,51,52,46,54,49,55,45,46,53,52,55,32,48,45,46,51,49,50,45,46,49,56,56,45,46,53,51,45,46,54,49,55,45,46,53,51,104,45,46,57,56,53,108,46,53,49,54,45,50,46,53,50,52,104,49,46,50,54,53,99,46,52,51,32,48,32,46,54,49,56,45,46,50,50,55,46,54,49,56,45,46,53,52,55,32,48,45,46,51,49,51,45,46,49,56,56,45,46,53,50,52,45,46,54,49,56,45,46,53,50,52,104,45,49,46,48,52,54,108,46,52,55,54,45,50,46,51,48,52,97,49,46,48,54,32,49,46,48,54,32,48,32,48,32,48,32,46,48,49,54,45,46,49,54,52,46,53,49,46,53,49,32,48,32,48,32,48,45,46,53,49,54,45,46,53,49,54,46,53,52,46,53,52,32,48,32,48,32,48,45,46,53,51,57,46,52,51,108,45,46,53,50,51,32,50,46,53,53,52,72,55,46,54,49,55,108,46,52,55,55,45,50,46,51,48,52,99,46,48,48,56,45,46,48,52,46,48,49,53,45,46,49,49,56,46,48,49,53,45,46,49,54,52,97,46,53,49,50,46,53,49,50,32,48,32,48,32,48,45,46,53,50,51,45,46,53,49,54,46,53,51,57,46,53,51,57,32,48,32,48,32,48,45,46,53,51,49,46,52,51,76,54,46,53,51,32,53,46,52,56,52,72,53,46,52,49,52,99,45,46,52,51,32,48,45,46,54,49,55,46,50,50,45,46,54,49,55,46,53,51,50,32,48,32,46,51,49,50,46,49,56,55,46,53,51,57,46,54,49,55,46,53,51,57,104,46,57,48,54,108,45,46,53,49,53,32,50,46,53,50,51,72,52,46,54,48,57,99,45,46,52,50,49,32,48,45,46,54,48,57,46,50,49,57,45,46,54,48,57,46,53,51,49,32,48,32,46,51,49,51,46,49,56,56,46,53,52,55,46,54,49,46,53,52,55,104,46,57,55,54,108,45,46,53,49,54,32,50,46,52,57,50,99,45,46,48,48,56,46,48,52,45,46,48,49,53,46,49,50,53,45,46,48,49,53,46,49,56,32,48,32,46,51,48,53,46,50,49,46,53,48,56,46,53,46,53,48,56,46,50,54,53,32,48,32,46,52,57,50,45,46,49,55,50,46,53,53,52,45,46,52,55,55,108,46,53,53,53,45,50,46,55,48,51,104,50,46,50,52,50,108,45,46,53,49,53,32,50,46,52,57,50,122,109,45,49,45,54,46,49,48,57,104,50,46,50,54,54,108,45,46,53,49,53,32,50,46,53,54,51,72,54,46,56,53,57,108,46,53,51,50,45,50,46,53,54,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,100,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,100,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,32,49,49,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,32,46,53,46,53,32,48,32,48,32,48,32,48,32,49,122,77,51,32,49,48,46,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,54,32,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,57,46,53,49,99,48,45,46,52,49,56,46,49,48,53,45,46,56,51,46,51,48,53,45,49,46,49,57,55,108,50,46,52,55,50,45,52,46,53,51,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,46,48,57,52,32,51,104,55,46,56,49,50,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,51,49,55,46,55,56,50,108,50,46,52,55,50,32,52,46,53,51,99,46,50,46,51,54,56,46,51,48,53,46,55,56,46,51,48,53,32,49,46,49,57,56,86,49,49,122,77,51,46,54,53,53,32,52,46,50,54,76,49,46,53,57,50,32,56,46,48,52,51,67,49,46,55,50,52,32,56,46,48,49,52,32,49,46,56,54,32,56,32,50,32,56,104,49,50,99,46,49,52,32,48,32,46,50,55,54,46,48,49,52,46,52,48,56,46,48,52,50,76,49,50,46,51,52,53,32,52,46,50,54,97,46,53,46,53,32,48,32,48,32,48,45,46,52,51,57,45,46,50,54,72,52,46,48,57,52,97,46,53,46,53,32,48,32,48,32,48,45,46,52,52,46,50,54,122,77,49,32,49,48,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,49,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,100,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,100,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,48,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,122,109,50,46,53,32,49,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,32,46,53,46,53,32,48,32,48,32,48,32,48,32,49,122,109,50,32,48,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,32,46,53,46,53,32,48,32,48,32,48,32,48,32,49,122,77,46,57,49,32,55,46,50,48,52,65,50,46,57,57,51,32,50,46,57,57,51,32,48,32,48,32,49,32,50,32,55,104,49,50,99,46,51,56,52,32,48,32,46,55,53,50,46,48,55,50,32,49,46,48,57,46,50,48,52,108,45,49,46,56,54,55,45,51,46,52,50,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,46,57,48,54,32,51,72,52,46,48,57,52,97,49,46,53,32,49,46,53,32,48,32,48,32,48,45,49,46,51,49,55,46,55,56,50,76,46,57,49,32,55,46,50,48,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,100,100,78,101,116,119,111,114,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,32,53,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,32,46,53,46,53,32,48,32,48,32,48,32,48,32,49,122,77,51,32,52,46,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,56,46,53,118,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,46,53,104,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,56,46,53,32,49,52,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,54,32,49,50,46,53,72,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,54,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,46,53,32,49,48,86,55,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,122,109,49,32,48,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,122,109,54,32,55,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,100,100,78,101,116,119,111,114,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,53,46,53,118,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,54,32,49,49,46,53,72,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,72,54,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,55,46,53,32,49,52,104,49,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,104,53,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,49,48,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,56,46,53,32,49,48,86,55,72,49,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,46,53,32,51,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,109,50,32,48,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,100,100,82,97,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,100,100,82,97,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,32,53,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,32,46,53,46,53,32,48,32,48,32,48,32,48,32,49,122,77,51,32,52,46,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,109,50,32,55,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,109,45,50,46,53,46,53,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,32,46,53,46,53,32,48,32,48,32,48,32,48,32,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,118,50,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,118,45,49,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,86,55,104,49,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,49,51,32,50,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,122,109,48,32,55,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,49,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,122,109,45,51,45,52,118,50,72,52,86,55,104,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,100,100,82,97,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,100,100,82,97,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,118,50,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,118,45,49,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,86,55,104,49,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,46,53,32,51,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,109,50,32,48,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,109,45,50,32,55,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,109,50,32,48,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,77,49,50,32,55,118,50,72,52,86,55,104,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,100,100,83,116,97,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,100,100,83,116,97,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,48,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,49,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,57,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,118,45,49,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,32,49,49,46,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,109,45,50,32,48,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,77,49,52,32,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,32,52,46,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,109,45,50,32,48,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,100,100,83,116,97,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,100,100,83,116,97,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,57,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,118,45,49,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,46,53,32,51,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,109,50,32,48,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,46,53,32,51,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,109,50,32,48,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,101,97,100,112,104,111,110,101,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,101,97,100,112,104,111,110,101,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,51,97,53,32,53,32,48,32,48,32,48,45,53,32,53,118,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,56,97,54,32,54,32,48,32,49,32,49,32,49,50,32,48,118,53,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,86,56,97,53,32,53,32,48,32,48,32,48,45,53,45,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,101,97,100,115,101,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,101,97,100,115,101,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,97,53,32,53,32,48,32,48,32,48,45,53,32,53,118,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,54,97,54,32,54,32,48,32,49,32,49,32,49,50,32,48,118,54,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,50,46,53,32,50,46,53,72,57,46,51,54,54,97,49,32,49,32,48,32,48,32,49,45,46,56,54,54,46,53,104,45,49,97,49,32,49,32,48,32,49,32,49,32,48,45,50,104,49,97,49,32,49,32,48,32,48,32,49,32,46,56,54,54,46,53,72,49,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,51,32,49,50,104,45,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,56,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,86,54,97,53,32,53,32,48,32,48,32,48,45,53,45,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,101,97,114,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,101,97,114,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,50,46,55,52,56,108,45,46,55,49,55,45,46,55,51,55,67,53,46,54,46,50,56,49,32,50,46,53,49,52,46,56,55,56,32,49,46,52,32,51,46,48,53,51,99,45,46,53,50,51,32,49,46,48,50,51,45,46,54,52,49,32,50,46,53,46,51,49,52,32,52,46,51,56,53,46,57,50,32,49,46,56,49,53,32,50,46,56,51,52,32,51,46,57,56,57,32,54,46,50,56,54,32,54,46,51,53,55,32,51,46,52,53,50,45,50,46,51,54,56,32,53,46,51,54,53,45,52,46,53,52,50,32,54,46,50,56,54,45,54,46,51,53,55,46,57,53,53,45,49,46,56,56,54,46,56,51,56,45,51,46,51,54,50,46,51,49,52,45,52,46,51,56,53,67,49,51,46,52,56,54,46,56,55,56,32,49,48,46,52,46,50,56,32,56,46,55,49,55,32,50,46,48,49,76,56,32,50,46,55,52,56,122,77,56,32,49,53,67,45,55,46,51,51,51,32,52,46,56,54,56,32,51,46,50,55,57,45,51,46,48,52,32,55,46,56,50,52,32,49,46,49,52,51,99,46,48,54,46,48,53,53,46,49,49,57,46,49,49,50,46,49,55,54,46,49,55,49,97,51,46,49,50,32,51,46,49,50,32,48,32,48,32,49,32,46,49,55,54,45,46,49,55,67,49,50,46,55,50,45,51,46,48,52,50,32,50,51,46,51,51,51,32,52,46,56,54,55,32,56,32,49,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,101,97,114,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,101,97,114,116,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,49,46,51,49,52,67,49,50,46,52,51,56,45,51,46,50,52,56,32,50,51,46,53,51,52,32,52,46,55,51,53,32,56,32,49,53,45,55,46,53,51,52,32,52,46,55,51,54,32,51,46,53,54,50,45,51,46,50,52,56,32,56,32,49,46,51,49,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,101,97,114,116,72,97,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,101,97,114,116,72,97,108,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,50,46,55,52,56,118,49,49,46,48,52,55,99,51,46,52,53,50,45,50,46,51,54,56,32,53,46,51,54,53,45,52,46,53,52,50,32,54,46,50,56,54,45,54,46,51,53,55,46,57,53,53,45,49,46,56,56,54,46,56,51,56,45,51,46,51,54,50,46,51,49,52,45,52,46,51,56,53,67,49,51,46,52,56,54,46,56,55,56,32,49,48,46,52,46,50,56,32,56,46,55,49,55,32,50,46,48,49,76,56,32,50,46,55,52,56,122,77,56,32,49,53,67,45,55,46,51,51,51,32,52,46,56,54,56,32,51,46,50,55,57,45,51,46,48,52,32,55,46,56,50,52,32,49,46,49,52,51,99,46,48,54,46,48,53,53,46,49,49,57,46,49,49,50,46,49,55,54,46,49,55,49,97,51,46,49,50,32,51,46,49,50,32,48,32,48,32,49,32,46,49,55,54,45,46,49,55,67,49,50,46,55,50,45,51,46,48,52,50,32,50,51,46,51,51,51,32,52,46,56,54,55,32,56,32,49,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,101,112,116,97,103,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,101,112,116,97,103,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,55,55,57,46,48,53,50,97,46,53,46,53,32,48,32,48,32,49,32,46,52,52,50,32,48,108,54,46,48,49,53,32,50,46,57,55,97,46,53,46,53,32,48,32,48,32,49,32,46,50,54,55,46,51,52,108,49,46,52,56,53,32,54,46,54,55,54,97,46,53,46,53,32,48,32,48,32,49,45,46,48,57,51,46,52,49,53,108,45,52,46,49,54,50,32,53,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,45,46,51,57,53,46,49,57,51,72,52,46,54,54,50,97,46,53,46,53,32,48,32,48,32,49,45,46,51,57,53,45,46,49,57,51,76,46,49,48,53,32,49,48,46,52,53,51,97,46,53,46,53,32,48,32,48,32,49,45,46,48,57,51,45,46,52,49,53,108,49,46,52,56,53,45,54,46,54,55,54,97,46,53,46,53,32,48,32,48,32,49,32,46,50,54,55,45,46,51,52,76,55,46,55,55,57,46,48,53,51,122,77,50,46,52,50,50,32,51,46,56,49,51,108,45,49,46,51,56,51,32,54,46,50,49,50,76,52,46,57,48,55,32,49,53,104,54,46,49,56,54,108,51,46,56,54,56,45,52,46,57,55,53,45,49,46,51,56,51,45,54,46,50,49,50,76,56,32,49,46,48,53,56,32,50,46,52,50,50,32,51,46,56,49,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,101,112,116,97,103,111,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,101,112,116,97,103,111,110,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,55,55,57,46,48,53,50,97,46,53,46,53,32,48,32,48,32,49,32,46,52,52,50,32,48,108,54,46,48,49,53,32,50,46,57,55,97,46,53,46,53,32,48,32,48,32,49,32,46,50,54,55,46,51,52,108,49,46,52,56,53,32,54,46,54,55,54,97,46,53,46,53,32,48,32,48,32,49,45,46,48,57,51,46,52,49,53,108,45,52,46,49,54,50,32,53,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,45,46,51,57,53,46,49,57,51,72,52,46,54,54,50,97,46,53,46,53,32,48,32,48,32,49,45,46,51,57,53,45,46,49,57,51,76,46,49,48,53,32,49,48,46,52,53,51,97,46,53,46,53,32,48,32,48,32,49,45,46,48,57,51,45,46,52,49,53,108,49,46,52,56,53,45,54,46,54,55,54,97,46,53,46,53,32,48,32,48,32,49,32,46,50,54,55,45,46,51,52,76,55,46,55,55,57,46,48,53,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,101,112,116,97,103,111,110,72,97,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,101,112,116,97,103,111,110,72,97,108,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,55,55,57,46,48,53,50,97,46,53,46,53,32,48,32,48,32,49,32,46,52,52,50,32,48,108,54,46,48,49,53,32,50,46,57,55,97,46,53,46,53,32,48,32,48,32,49,32,46,50,54,55,46,51,52,108,49,46,52,56,53,32,54,46,54,55,54,97,46,53,46,53,32,48,32,48,32,49,45,46,48,57,51,46,52,49,53,108,45,52,46,49,54,50,32,53,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,45,46,51,57,53,46,49,57,51,72,52,46,54,54,50,97,46,53,46,53,32,48,32,48,32,49,45,46,51,57,53,45,46,49,57,51,76,46,49,48,53,32,49,48,46,52,53,51,97,46,53,46,53,32,48,32,48,32,49,45,46,48,57,51,45,46,52,49,53,108,49,46,52,56,53,45,54,46,54,55,54,97,46,53,46,53,32,48,32,48,32,49,32,46,50,54,55,45,46,51,52,76,55,46,55,55,57,46,48,53,51,122,77,56,32,49,53,104,51,46,48,57,51,108,51,46,56,54,56,45,52,46,57,55,53,45,49,46,51,56,51,45,54,46,50,49,50,76,56,32,49,46,48,53,56,86,49,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,101,120,97,103,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,101,120,97,103,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,52,46,53,55,55,118,54,46,56,52,54,76,56,32,49,53,108,45,54,45,51,46,53,55,55,86,52,46,53,55,55,76,56,32,49,108,54,32,51,46,53,55,55,122,77,56,46,53,46,49,51,52,97,49,32,49,32,48,32,48,32,48,45,49,32,48,108,45,54,32,51,46,53,55,55,97,49,32,49,32,48,32,48,32,48,45,46,53,46,56,54,54,118,54,46,56,52,54,97,49,32,49,32,48,32,48,32,48,32,46,53,46,56,54,54,108,54,32,51,46,53,55,55,97,49,32,49,32,48,32,48,32,48,32,49,32,48,108,54,45,51,46,53,55,55,97,49,32,49,32,48,32,48,32,48,32,46,53,45,46,56,54,54,86,52,46,53,55,55,97,49,32,49,32,48,32,48,32,48,45,46,53,45,46,56,54,54,76,56,46,53,46,49,51,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,101,120,97,103,111,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,101,120,97,103,111,110,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,46,53,46,49,51,52,97,49,32,49,32,48,32,48,32,48,45,49,32,48,108,45,54,32,51,46,53,55,55,97,49,32,49,32,48,32,48,32,48,45,46,53,46,56,54,54,118,54,46,56,52,54,97,49,32,49,32,48,32,48,32,48,32,46,53,46,56,54,54,108,54,32,51,46,53,55,55,97,49,32,49,32,48,32,48,32,48,32,49,32,48,108,54,45,51,46,53,55,55,97,49,32,49,32,48,32,48,32,48,32,46,53,45,46,56,54,54,86,52,46,53,55,55,97,49,32,49,32,48,32,48,32,48,45,46,53,45,46,56,54,54,76,56,46,53,46,49,51,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,101,120,97,103,111,110,72,97,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,101,120,97,103,111,110,72,97,108,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,52,46,53,55,55,118,54,46,56,52,54,76,56,32,49,53,86,49,108,54,32,51,46,53,55,55,122,77,56,46,53,46,49,51,52,97,49,32,49,32,48,32,48,32,48,45,49,32,48,108,45,54,32,51,46,53,55,55,97,49,32,49,32,48,32,48,32,48,45,46,53,46,56,54,54,118,54,46,56,52,54,97,49,32,49,32,48,32,48,32,48,32,46,53,46,56,54,54,108,54,32,51,46,53,55,55,97,49,32,49,32,48,32,48,32,48,32,49,32,48,108,54,45,51,46,53,55,55,97,49,32,49,32,48,32,48,32,48,32,46,53,45,46,56,54,54,86,52,46,53,55,55,97,49,32,49,32,48,32,48,32,48,45,46,53,45,46,56,54,54,76,56,46,53,46,49,51,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,111,117,114,103,108,97,115,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,111,117,114,103,108,97,115,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,118,49,97,52,46,53,32,52,46,53,32,48,32,48,32,49,45,50,46,53,53,55,32,52,46,48,54,99,45,46,50,57,46,49,51,57,45,46,52,52,51,46,51,55,55,45,46,52,52,51,46,53,57,118,46,55,99,48,32,46,50,49,51,46,49,53,52,46,52,53,49,46,52,52,51,46,53,57,65,52,46,53,32,52,46,53,32,48,32,48,32,49,32,49,50,46,53,32,49,51,118,49,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,104,49,118,45,49,97,52,46,53,32,52,46,53,32,48,32,48,32,49,32,50,46,53,53,55,45,52,46,48,54,99,46,50,57,45,46,49,51,57,46,52,52,51,45,46,51,55,55,46,52,52,51,45,46,53,57,118,45,46,55,99,48,45,46,50,49,51,45,46,49,53,52,45,46,52,53,49,45,46,52,52,51,45,46,53,57,65,52,46,53,32,52,46,53,32,48,32,48,32,49,32,51,46,53,32,51,86,50,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,50,46,53,46,53,118,49,97,51,46,53,32,51,46,53,32,48,32,48,32,48,32,49,46,57,56,57,32,51,46,49,53,56,99,46,53,51,51,46,50,53,54,32,49,46,48,49,49,46,55,57,49,32,49,46,48,49,49,32,49,46,52,57,49,118,46,55,48,50,99,48,32,46,55,45,46,52,55,56,32,49,46,50,51,53,45,49,46,48,49,49,32,49,46,52,57,49,65,51,46,53,32,51,46,53,32,48,32,48,32,48,32,52,46,53,32,49,51,118,49,104,55,118,45,49,97,51,46,53,32,51,46,53,32,48,32,48,32,48,45,49,46,57,56,57,45,51,46,49,53,56,67,56,46,57,55,56,32,57,46,53,56,54,32,56,46,53,32,57,46,48,53,50,32,56,46,53,32,56,46,51,53,49,118,45,46,55,48,50,99,48,45,46,55,46,52,55,56,45,49,46,50,51,53,32,49,46,48,49,49,45,49,46,52,57,49,65,51,46,53,32,51,46,53,32,48,32,48,32,48,32,49,49,46,53,32,51,86,50,104,45,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,111,117,114,103,108,97,115,115,66,111,116,116,111,109,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,111,117,114,103,108,97,115,115,66,111,116,116,111,109,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,118,49,97,52,46,53,32,52,46,53,32,48,32,48,32,49,45,50,46,53,53,55,32,52,46,48,54,99,45,46,50,57,46,49,51,57,45,46,52,52,51,46,51,55,55,45,46,52,52,51,46,53,57,118,46,55,99,48,32,46,50,49,51,46,49,53,52,46,52,53,49,46,52,52,51,46,53,57,65,52,46,53,32,52,46,53,32,48,32,48,32,49,32,49,50,46,53,32,49,51,118,49,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,104,49,118,45,49,97,52,46,53,32,52,46,53,32,48,32,48,32,49,32,50,46,53,53,55,45,52,46,48,54,99,46,50,57,45,46,49,51,57,46,52,52,51,45,46,51,55,55,46,52,52,51,45,46,53,57,118,45,46,55,99,48,45,46,50,49,51,45,46,49,53,52,45,46,52,53,49,45,46,52,52,51,45,46,53,57,65,52,46,53,32,52,46,53,32,48,32,48,32,49,32,51,46,53,32,51,86,50,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,50,46,53,46,53,118,49,97,51,46,53,32,51,46,53,32,48,32,48,32,48,32,49,46,57,56,57,32,51,46,49,53,56,99,46,53,51,51,46,50,53,54,32,49,46,48,49,49,46,55,57,49,32,49,46,48,49,49,32,49,46,52,57,49,118,46,55,48,50,115,46,49,56,46,49,52,57,46,53,46,49,52,57,46,53,45,46,49,53,46,53,45,46,49,53,118,45,46,55,99,48,45,46,55,48,49,46,52,55,56,45,49,46,50,51,54,32,49,46,48,49,49,45,49,46,52,57,50,65,51,46,53,32,51,46,53,32,48,32,48,32,48,32,49,49,46,53,32,51,86,50,104,45,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,111,117,114,103,108,97,115,115,83,112,108,105,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,111,117,114,103,108,97,115,115,83,112,108,105,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,49,53,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,104,49,118,45,49,97,52,46,53,32,52,46,53,32,48,32,48,32,49,32,50,46,53,53,55,45,52,46,48,54,99,46,50,57,45,46,49,51,57,46,52,52,51,45,46,51,55,55,46,52,52,51,45,46,53,57,118,45,46,55,99,48,45,46,50,49,51,45,46,49,53,52,45,46,52,53,49,45,46,52,52,51,45,46,53,57,65,52,46,53,32,52,46,53,32,48,32,48,32,49,32,51,46,53,32,51,86,50,104,45,49,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,118,49,97,52,46,53,32,52,46,53,32,48,32,48,32,49,45,50,46,53,53,55,32,52,46,48,54,99,45,46,50,57,46,49,51,57,45,46,52,52,51,46,51,55,55,45,46,52,52,51,46,53,57,118,46,55,99,48,32,46,50,49,51,46,49,53,52,46,52,53,49,46,52,52,51,46,53,57,65,52,46,53,32,52,46,53,32,48,32,48,32,49,32,49,50,46,53,32,49,51,118,49,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,122,109,50,45,49,51,118,49,99,48,32,46,53,51,55,46,49,50,32,49,46,48,52,53,46,51,51,55,32,49,46,53,104,54,46,51,50,54,99,46,50,49,54,45,46,52,53,53,46,51,51,55,45,46,57,54,51,46,51,51,55,45,49,46,53,86,50,104,45,55,122,109,51,32,54,46,51,53,99,48,32,46,55,48,49,45,46,52,55,56,32,49,46,50,51,54,45,49,46,48,49,49,32,49,46,52,57,50,65,51,46,53,32,51,46,53,32,48,32,48,32,48,32,52,46,53,32,49,51,115,46,56,54,54,45,49,46,50,57,57,32,51,45,49,46,52,56,86,56,46,51,53,122,109,49,32,48,118,51,46,49,55,99,50,46,49,51,52,46,49,56,49,32,51,32,49,46,52,56,32,51,32,49,46,52,56,97,51,46,53,32,51,46,53,32,48,32,48,32,48,45,49,46,57,56,57,45,51,46,49,53,56,67,56,46,57,55,56,32,57,46,53,56,54,32,56,46,53,32,57,46,48,53,50,32,56,46,53,32,56,46,51,53,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,111,117,114,103,108,97,115,115,84,111,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,111,117,114,103,108,97,115,115,84,111,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,52,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,49,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,104,45,49,118,45,49,97,52,46,53,32,52,46,53,32,48,32,48,32,48,45,50,46,53,53,55,45,52,46,48,54,99,45,46,50,57,45,46,49,51,57,45,46,52,52,51,45,46,51,55,55,45,46,52,52,51,45,46,53,57,118,45,46,55,99,48,45,46,50,49,51,46,49,53,52,45,46,52,53,49,46,52,52,51,45,46,53,57,65,52,46,53,32,52,46,53,32,48,32,48,32,48,32,49,50,46,53,32,51,86,50,104,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,118,49,97,52,46,53,32,52,46,53,32,48,32,48,32,48,32,50,46,53,53,55,32,52,46,48,54,99,46,50,57,46,49,51,57,46,52,52,51,46,51,55,55,46,52,52,51,46,53,57,118,46,55,99,48,32,46,50,49,51,45,46,49,53,52,46,52,53,49,45,46,52,52,51,46,53,57,65,52,46,53,32,52,46,53,32,48,32,48,32,48,32,51,46,53,32,49,51,118,49,104,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,109,50,46,53,45,46,53,118,45,49,97,51,46,53,32,51,46,53,32,48,32,48,32,49,32,49,46,57,56,57,45,51,46,49,53,56,99,46,53,51,51,45,46,50,53,54,32,49,46,48,49,49,45,46,55,57,32,49,46,48,49,49,45,49,46,52,57,49,118,45,46,55,48,50,115,46,49,56,46,49,48,49,46,53,46,49,48,49,46,53,45,46,49,46,53,45,46,49,118,46,55,99,48,32,46,55,48,49,46,52,55,56,32,49,46,50,51,54,32,49,46,48,49,49,32,49,46,52,57,50,65,51,46,53,32,51,46,53,32,48,32,48,32,49,32,49,49,46,53,32,49,51,118,49,104,45,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,111,117,115,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,111,117,115,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,49,51,46,53,86,55,104,49,118,54,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,57,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,55,104,49,118,54,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,32,49,51,46,53,122,109,49,49,45,49,49,86,54,108,45,50,45,50,86,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,50,57,51,32,49,46,53,97,49,32,49,32,48,32,48,32,49,32,49,46,52,49,52,32,48,108,54,46,54,52,55,32,54,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,50,46,50,48,55,32,49,46,51,53,52,32,56,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,111,117,115,101,68,111,111,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,111,117,115,101,68,111,111,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,51,53,52,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,54,32,54,65,46,53,46,53,32,48,32,48,32,48,32,49,46,53,32,55,46,53,118,55,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,52,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,52,104,50,118,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,72,49,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,55,97,46,53,46,53,32,48,32,48,32,48,45,46,49,52,54,45,46,51,53,52,76,49,51,32,53,46,55,57,51,86,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,46,50,57,51,76,56,46,51,53,52,32,49,46,49,52,54,122,77,50,46,53,32,49,52,86,55,46,55,48,55,108,53,46,53,45,53,46,53,32,53,46,53,32,53,46,53,86,49,52,72,49,48,118,45,52,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,52,72,50,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,111,117,115,101,68,111,111,114,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,111,117,115,101,68,111,111,114,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,49,52,46,53,118,45,51,46,53,48,53,99,48,45,46,50,52,53,46,50,53,45,46,52,57,53,46,53,45,46,52,57,53,104,50,99,46,50,53,32,48,32,46,53,46,50,53,46,53,46,53,118,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,55,97,46,53,46,53,32,48,32,48,32,48,45,46,49,52,54,45,46,51,53,52,76,49,51,32,53,46,55,57,51,86,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,46,50,57,51,76,56,46,51,53,52,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,54,32,54,65,46,53,46,53,32,48,32,48,32,48,32,49,46,53,32,55,46,53,118,55,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,111,117,115,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,111,117,115,101,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,51,46,50,57,51,108,54,32,54,86,49,51,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,32,49,51,46,53,86,57,46,50,57,51,108,54,45,54,122,109,53,45,46,55,57,51,86,54,108,45,50,45,50,86,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,50,57,51,32,49,46,53,97,49,32,49,32,48,32,48,32,49,32,49,46,52,49,52,32,48,108,54,46,54,52,55,32,54,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,50,46,50,48,55,32,49,46,51,53,52,32,56,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,72,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,72,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,51,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,46,53,72,50,86,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,50,46,53,104,45,49,86,52,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,77,50,32,57,46,53,104,49,86,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,57,46,53,104,49,86,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,57,46,53,122,109,45,49,46,53,45,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,109,97,103,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,109,97,103,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,48,48,50,32,53,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,48,48,50,32,49,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,50,122,109,49,50,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,54,46,53,108,45,51,46,55,55,55,45,49,46,57,52,55,97,46,53,46,53,32,48,32,48,32,48,45,46,53,55,55,46,48,57,51,108,45,51,46,55,49,32,51,46,55,49,45,50,46,54,54,45,49,46,55,55,50,97,46,53,46,53,32,48,32,48,32,48,45,46,54,51,46,48,54,50,76,49,46,48,48,50,32,49,50,86,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,109,97,103,101,65,108,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,109,97,103,101,65,108,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,50,46,53,97,50,46,53,32,50,46,53,32,48,32,49,32,49,45,53,32,48,32,50,46,53,32,50,46,53,32,48,32,48,32,49,32,53,32,48,122,109,52,46,50,50,53,32,52,46,48,53,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,55,55,46,48,57,51,108,45,51,46,55,49,32,52,46,55,49,45,50,46,54,54,45,50,46,55,55,50,97,46,53,46,53,32,48,32,48,32,48,45,46,54,51,46,48,54,50,76,46,48,48,50,32,49,51,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,52,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,52,46,53,108,45,52,46,55,55,55,45,51,46,57,52,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,109,97,103,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,109,97,103,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,48,48,50,32,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,104,45,49,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,122,109,49,32,57,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,57,46,53,108,45,51,46,55,55,55,45,49,46,57,52,55,97,46,53,46,53,32,48,32,48,32,48,45,46,53,55,55,46,48,57,51,108,45,51,46,55,49,32,51,46,55,49,45,50,46,54,54,45,49,46,55,55,50,97,46,53,46,53,32,48,32,48,32,48,45,46,54,51,46,48,54,50,76,49,46,48,48,50,32,49,50,122,109,53,45,54,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,48,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,109,97,103,101,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,109,97,103,101,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,48,50,32,57,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,46,48,48,50,32,49,51,97,50,32,50,32,48,32,48,32,49,45,50,32,50,104,45,49,48,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,53,65,50,32,50,32,48,32,48,32,49,32,50,32,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,49,46,57,57,56,32,50,122,77,49,52,32,50,72,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,104,57,46,48,48,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,55,65,49,32,49,32,48,32,48,32,48,32,49,53,32,49,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,77,50,46,48,48,50,32,52,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,108,50,46,54,52,54,45,50,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,32,46,54,51,45,46,48,54,50,108,50,46,54,54,32,49,46,55,55,51,32,51,46,55,49,45,51,46,55,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,55,55,45,46,48,57,52,108,49,46,55,55,55,32,49,46,57,52,55,86,53,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,49,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,110,98,111,120,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,110,98,111,120,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,57,56,32,52,97,46,53,46,53,32,48,32,48,32,48,45,46,51,57,46,49,56,56,76,49,46,53,52,32,56,72,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,32,49,46,53,32,49,46,53,32,48,32,49,32,48,32,51,32,48,65,46,53,46,53,32,48,32,48,32,49,32,49,48,32,56,104,52,46,52,54,108,45,51,46,48,53,45,51,46,56,49,50,65,46,53,46,53,32,48,32,48,32,48,32,49,49,46,48,50,32,52,72,52,46,57,56,122,109,57,46,57,53,52,32,53,72,49,48,46,52,53,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,52,46,57,32,48,72,49,46,48,54,54,108,46,51,50,32,50,46,53,54,50,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,55,46,52,51,56,104,49,50,46,50,51,52,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,54,45,46,52,51,56,76,49,52,46,57,51,51,32,57,122,77,51,46,56,48,57,32,51,46,53,54,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,46,57,56,49,32,51,104,54,46,48,51,56,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,49,55,50,46,53,54,51,108,51,46,55,32,52,46,54,50,53,97,46,53,46,53,32,48,32,48,32,49,32,46,49,48,53,46,51,55,52,108,45,46,51,57,32,51,46,49,50,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,52,46,49,49,55,32,49,51,72,49,46,56,56,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,52,56,57,45,49,46,51,49,52,108,45,46,51,57,45,51,46,49,50,52,97,46,53,46,53,32,48,32,48,32,49,32,46,49,48,54,45,46,51,55,52,108,51,46,55,45,52,46,54,50,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,110,98,111,120,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,110,98,111,120,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,57,56,32,52,97,46,53,46,53,32,48,32,48,32,48,45,46,51,57,46,49,56,56,76,49,46,53,52,32,56,72,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,32,49,46,53,32,49,46,53,32,48,32,49,32,48,32,51,32,48,65,46,53,46,53,32,48,32,48,32,49,32,49,48,32,56,104,52,46,52,54,108,45,51,46,48,53,45,51,46,56,49,50,65,46,53,46,53,32,48,32,48,32,48,32,49,49,46,48,50,32,52,72,52,46,57,56,122,109,45,49,46,49,55,45,46,52,51,55,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,46,57,56,32,51,104,54,46,48,52,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,49,55,46,53,54,51,108,51,46,55,32,52,46,54,50,53,97,46,53,46,53,32,48,32,48,32,49,32,46,49,48,54,46,51,55,52,108,45,46,51,57,32,51,46,49,50,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,52,46,49,49,55,32,49,51,72,49,46,56,56,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,52,56,57,45,49,46,51,49,52,108,45,46,51,57,45,51,46,49,50,52,97,46,53,46,53,32,48,32,48,32,49,32,46,49,48,54,45,46,51,55,52,108,51,46,55,45,52,46,54,50,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,110,98,111,120,101,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,110,98,111,120,101,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,57,56,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,51,57,46,49,56,56,76,49,46,53,52,32,53,72,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,32,48,65,46,53,46,53,32,48,32,48,32,49,32,49,48,32,53,104,52,46,52,54,108,45,51,46,48,53,45,51,46,56,49,50,65,46,53,46,53,32,48,32,48,32,48,32,49,49,46,48,50,32,49,72,52,46,57,56,122,109,57,46,57,53,52,32,53,72,49,48,46,52,53,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,52,46,57,32,48,72,49,46,48,54,54,108,46,51,50,32,50,46,53,54,50,65,46,53,46,53,32,48,32,48,32,48,32,49,46,56,56,52,32,57,104,49,50,46,50,51,52,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,54,45,46,52,51,56,76,49,52,46,57,51,51,32,54,122,77,51,46,56,48,57,46,53,54,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,46,57,56,49,32,48,104,54,46,48,51,56,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,49,55,50,46,53,54,51,108,51,46,55,32,52,46,54,50,53,97,46,53,46,53,32,48,32,48,32,49,32,46,49,48,53,46,51,55,52,108,45,46,51,57,32,51,46,49,50,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,52,46,49,49,55,32,49,48,72,49,46,56,56,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,46,51,57,52,32,56,46,54,56,54,108,45,46,51,57,45,51,46,49,50,52,97,46,53,46,53,32,48,32,48,32,49,32,46,49,48,54,45,46,51,55,52,76,51,46,56,49,46,53,54,51,122,77,46,49,50,53,32,49,49,46,49,55,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,49,49,72,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,32,48,32,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,52,57,54,46,53,54,50,108,45,46,51,57,32,51,46,49,50,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,52,46,49,49,55,32,49,54,72,49,46,56,56,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,52,56,57,45,49,46,51,49,52,108,45,46,51,57,45,51,46,49,50,52,97,46,53,46,53,32,48,32,48,32,49,32,46,49,50,49,45,46,51,57,51,122,109,46,57,52,49,46,56,51,108,46,51,50,32,50,46,53,54,50,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,55,46,52,51,56,104,49,50,46,50,51,52,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,54,45,46,52,51,56,108,46,51,50,45,50,46,53,54,50,72,49,48,46,52,53,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,52,46,57,32,48,72,49,46,48,54,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,110,98,111,120,101,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,110,98,111,120,101,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,57,56,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,51,57,46,49,56,56,76,49,46,53,52,32,53,72,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,32,48,65,46,53,46,53,32,48,32,48,32,49,32,49,48,32,53,104,52,46,52,54,108,45,51,46,48,53,45,51,46,56,49,50,65,46,53,46,53,32,48,32,48,32,48,32,49,49,46,48,50,32,49,72,52,46,57,56,122,77,51,46,56,49,46,53,54,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,46,57,56,32,48,104,54,46,48,52,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,49,55,46,53,54,51,108,51,46,55,32,52,46,54,50,53,97,46,53,46,53,32,48,32,48,32,49,32,46,49,48,54,46,51,55,52,108,45,46,51,57,32,51,46,49,50,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,52,46,49,49,55,32,49,48,72,49,46,56,56,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,46,51,57,52,32,56,46,54,56,54,108,45,46,51,57,45,51,46,49,50,52,97,46,53,46,53,32,48,32,48,32,49,32,46,49,48,54,45,46,51,55,52,76,51,46,56,49,46,53,54,51,122,77,46,49,50,53,32,49,49,46,49,55,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,49,49,72,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,32,48,32,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,52,57,54,46,53,54,50,108,45,46,51,57,32,51,46,49,50,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,52,46,49,49,55,32,49,54,72,49,46,56,56,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,52,56,57,45,49,46,51,49,52,108,45,46,51,57,45,51,46,49,50,52,97,46,53,46,53,32,48,32,48,32,49,32,46,49,50,49,45,46,51,57,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,110,102,111,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,110,102,111,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,57,51,32,54,46,53,56,56,108,45,50,46,50,57,46,50,56,55,45,46,48,56,50,46,51,56,46,52,53,46,48,56,51,99,46,50,57,52,46,48,55,46,51,53,50,46,49,55,54,46,50,56,56,46,52,54,57,108,45,46,55,51,56,32,51,46,52,54,56,99,45,46,49,57,52,46,56,57,55,46,49,48,53,32,49,46,51,49,57,46,56,48,56,32,49,46,51,49,57,46,53,52,53,32,48,32,49,46,49,55,56,45,46,50,53,50,32,49,46,52,54,53,45,46,53,57,56,108,46,48,56,56,45,46,52,49,54,99,45,46,50,46,49,55,54,45,46,52,57,50,46,50,52,54,45,46,54,56,54,46,50,52,54,45,46,50,55,53,32,48,45,46,51,55,53,45,46,49,57,51,45,46,51,48,52,45,46,53,51,51,76,56,46,57,51,32,54,46,53,56,56,122,77,57,32,52,46,53,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,110,102,111,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,46,57,51,32,54,46,53,56,56,108,45,50,46,50,57,46,50,56,55,45,46,48,56,50,46,51,56,46,52,53,46,48,56,51,99,46,50,57,52,46,48,55,46,51,53,50,46,49,55,54,46,50,56,56,46,52,54,57,108,45,46,55,51,56,32,51,46,52,54,56,99,45,46,49,57,52,46,56,57,55,46,49,48,53,32,49,46,51,49,57,46,56,48,56,32,49,46,51,49,57,46,53,52,53,32,48,32,49,46,49,55,56,45,46,50,53,50,32,49,46,52,54,53,45,46,53,57,56,108,46,48,56,56,45,46,52,49,54,99,45,46,50,46,49,55,54,45,46,52,57,50,46,50,52,54,45,46,54,56,54,46,50,52,54,45,46,50,55,53,32,48,45,46,51,55,53,45,46,49,57,51,45,46,51,48,52,45,46,53,51,51,76,56,46,57,51,32,54,46,53,56,56,122,77,57,32,52,46,53,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,110,102,111,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,109,46,57,51,45,57,46,52,49,50,108,45,49,32,52,46,55,48,53,99,45,46,48,55,46,51,52,46,48,50,57,46,53,51,51,46,51,48,52,46,53,51,51,46,49,57,52,32,48,32,46,52,56,55,45,46,48,55,46,54,56,54,45,46,50,52,54,108,45,46,48,56,56,46,52,49,54,99,45,46,50,56,55,46,51,52,54,45,46,57,50,46,53,57,56,45,49,46,52,54,53,46,53,57,56,45,46,55,48,51,32,48,45,49,46,48,48,50,45,46,52,50,50,45,46,56,48,56,45,49,46,51,49,57,108,46,55,51,56,45,51,46,52,54,56,99,46,48,54,52,45,46,50,57,51,46,48,48,54,45,46,51,57,57,45,46,50,56,55,45,46,52,55,108,45,46,52,53,49,45,46,48,56,49,46,48,56,50,45,46,51,56,49,32,50,46,50,57,45,46,50,56,55,122,77,56,32,53,46,53,97,49,32,49,32,48,32,49,32,49,32,48,45,50,32,49,32,49,32,48,32,48,32,49,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,110,102,111,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,46,57,51,32,54,46,53,56,56,108,45,50,46,50,57,46,50,56,55,45,46,48,56,50,46,51,56,46,52,53,46,48,56,51,99,46,50,57,52,46,48,55,46,51,53,50,46,49,55,54,46,50,56,56,46,52,54,57,108,45,46,55,51,56,32,51,46,52,54,56,99,45,46,49,57,52,46,56,57,55,46,49,48,53,32,49,46,51,49,57,46,56,48,56,32,49,46,51,49,57,46,53,52,53,32,48,32,49,46,49,55,56,45,46,50,53,50,32,49,46,52,54,53,45,46,53,57,56,108,46,48,56,56,45,46,52,49,54,99,45,46,50,46,49,55,54,45,46,52,57,50,46,50,52,54,45,46,54,56,54,46,50,52,54,45,46,50,55,53,32,48,45,46,51,55,53,45,46,49,57,51,45,46,51,48,52,45,46,53,51,51,76,56,46,57,51,32,54,46,53,56,56,122,77,57,32,52,46,53,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,110,102,111,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,56,46,57,51,32,52,46,53,56,56,108,45,50,46,50,57,46,50,56,55,45,46,48,56,50,46,51,56,46,52,53,46,48,56,51,99,46,50,57,52,46,48,55,46,51,53,50,46,49,55,54,46,50,56,56,46,52,54,57,108,45,46,55,51,56,32,51,46,52,54,56,99,45,46,49,57,52,46,56,57,55,46,49,48,53,32,49,46,51,49,57,46,56,48,56,32,49,46,51,49,57,46,53,52,53,32,48,32,49,46,49,55,56,45,46,50,53,50,32,49,46,52,54,53,45,46,53,57,56,108,46,48,56,56,45,46,52,49,54,99,45,46,50,46,49,55,54,45,46,52,57,50,46,50,52,54,45,46,54,56,54,46,50,52,54,45,46,50,55,53,32,48,45,46,51,55,53,45,46,49,57,51,45,46,51,48,52,45,46,53,51,51,76,56,46,57,51,32,54,46,53,56,56,122,77,56,32,53,46,53,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,110,112,117,116,67,117,114,115,111,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,32,53,104,52,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,52,118,49,104,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,54,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,52,118,49,122,77,54,32,53,86,52,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,52,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,52,118,45,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,54,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,52,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,49,51,65,46,53,46,53,32,48,32,48,32,49,32,56,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,84,101,120,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,110,112,117,116,67,117,114,115,111,114,84,101,120,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,53,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,99,46,56,54,50,32,48,32,49,46,53,55,51,46,50,56,55,32,50,46,48,54,46,53,54,54,46,49,55,52,46,48,57,57,46,51,50,49,46,49,57,56,46,52,52,46,50,56,54,46,49,49,57,45,46,48,56,56,46,50,54,54,45,46,49,56,55,46,52,52,45,46,50,56,54,65,52,46,49,54,53,32,52,46,49,54,53,32,48,32,48,32,49,32,49,48,46,53,32,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,99,45,46,54,51,56,32,48,45,49,46,49,55,55,46,50,49,51,45,49,46,53,54,52,46,52,51,52,97,51,46,52,57,32,51,46,52,57,32,48,32,48,32,48,45,46,52,51,54,46,50,57,52,86,55,46,53,72,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,46,53,118,52,46,50,55,50,99,46,49,46,48,56,46,50,52,56,46,49,56,55,46,52,51,54,46,50,57,52,46,51,56,55,46,50,50,49,46,57,50,54,46,52,51,52,32,49,46,53,54,52,46,52,51,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,32,52,46,49,54,53,32,52,46,49,54,53,32,48,32,48,32,49,45,50,46,48,54,45,46,53,54,54,65,52,46,53,54,49,32,52,46,53,54,49,32,48,32,48,32,49,32,56,32,49,51,46,54,53,97,52,46,53,54,49,32,52,46,53,54,49,32,48,32,48,32,49,45,46,52,52,46,50,56,53,32,52,46,49,54,53,32,52,46,49,54,53,32,48,32,48,32,49,45,50,46,48,54,46,53,54,54,46,53,46,53,32,48,32,48,32,49,32,48,45,49,99,46,54,51,56,32,48,32,49,46,49,55,55,45,46,50,49,51,32,49,46,53,54,52,45,46,52,51,52,46,49,56,56,45,46,49,48,55,46,51,51,53,45,46,50,49,52,46,52,51,54,45,46,50,57,52,86,56,46,53,72,55,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,46,53,86,51,46,50,50,56,97,51,46,52,57,32,51,46,52,57,32,48,32,48,32,48,45,46,52,51,54,45,46,50,57,52,65,51,46,49,54,54,32,51,46,49,54,54,32,48,32,48,32,48,32,53,46,53,32,50,46,53,46,53,46,53,32,48,32,48,32,49,32,53,32,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,32,53,104,52,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,52,118,49,104,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,54,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,52,118,49,122,77,54,32,53,86,52,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,52,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,52,118,45,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,54,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,110,115,116,97,103,114,97,109,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,110,115,116,97,103,114,97,109,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,48,67,53,46,56,50,57,32,48,32,53,46,53,53,54,46,48,49,32,52,46,55,48,51,46,48,52,56,32,51,46,56,53,46,48,56,56,32,51,46,50,54,57,46,50,50,50,32,50,46,55,54,46,52,50,97,51,46,57,49,55,32,51,46,57,49,55,32,48,32,48,32,48,45,49,46,52,49,55,46,57,50,51,65,51,46,57,50,55,32,51,46,57,50,55,32,48,32,48,32,48,32,46,52,50,32,50,46,55,54,67,46,50,50,50,32,51,46,50,54,56,46,48,56,55,32,51,46,56,53,46,48,52,56,32,52,46,55,46,48,49,32,53,46,53,53,53,32,48,32,53,46,56,50,55,32,48,32,56,46,48,48,49,99,48,32,50,46,49,55,50,46,48,49,32,50,46,52,52,52,46,48,52,56,32,51,46,50,57,55,46,48,52,46,56,53,50,46,49,55,52,32,49,46,52,51,51,46,51,55,50,32,49,46,57,52,50,46,50,48,53,46,53,50,54,46,52,55,56,46,57,55,50,46,57,50,51,32,49,46,52,49,55,46,52,52,52,46,52,52,53,46,56,57,46,55,49,57,32,49,46,52,49,54,46,57,50,51,46,53,49,46,49,57,56,32,49,46,48,57,46,51,51,51,32,49,46,57,52,50,46,51,55,50,67,53,46,53,53,53,32,49,53,46,57,57,32,53,46,56,50,55,32,49,54,32,56,32,49,54,115,50,46,52,52,52,45,46,48,49,32,51,46,50,57,56,45,46,48,52,56,99,46,56,53,49,45,46,48,52,32,49,46,52,51,52,45,46,49,55,52,32,49,46,57,52,51,45,46,51,55,50,97,51,46,57,49,54,32,51,46,57,49,54,32,48,32,48,32,48,32,49,46,52,49,54,45,46,57,50,51,99,46,52,52,53,45,46,52,52,53,46,55,49,56,45,46,56,57,49,46,57,50,51,45,49,46,52,49,55,46,49,57,55,45,46,53,48,57,46,51,51,50,45,49,46,48,57,46,51,55,50,45,49,46,57,52,50,67,49,53,46,57,57,32,49,48,46,52,52,53,32,49,54,32,49,48,46,49,55,51,32,49,54,32,56,115,45,46,48,49,45,50,46,52,52,53,45,46,48,52,56,45,51,46,50,57,57,99,45,46,48,52,45,46,56,53,49,45,46,49,55,53,45,49,46,52,51,51,45,46,51,55,50,45,49,46,57,52,49,97,51,46,57,50,54,32,51,46,57,50,54,32,48,32,48,32,48,45,46,57,50,51,45,49,46,52,49,55,65,51,46,57,49,49,32,51,46,57,49,49,32,48,32,48,32,48,32,49,51,46,50,52,46,52,50,99,45,46,53,49,45,46,49,57,56,45,49,46,48,57,50,45,46,51,51,51,45,49,46,57,52,51,45,46,51,55,50,67,49,48,46,52,52,51,46,48,49,32,49,48,46,49,55,50,32,48,32,55,46,57,57,56,32,48,104,46,48,48,51,122,109,45,46,55,49,55,32,49,46,52,52,50,104,46,55,49,56,99,50,46,49,51,54,32,48,32,50,46,51,56,57,46,48,48,55,32,51,46,50,51,50,46,48,52,54,46,55,56,46,48,51,53,32,49,46,50,48,52,46,49,54,54,32,49,46,52,56,54,46,50,55,53,46,51,55,51,46,49,52,53,46,54,52,46,51,49,57,46,57,50,46,53,57,57,46,50,56,46,50,56,46,52,53,51,46,53,52,54,46,53,57,56,46,57,50,46,49,49,46,50,56,49,46,50,52,46,55,48,53,46,50,55,53,32,49,46,52,56,53,46,48,51,57,46,56,52,51,46,48,52,55,32,49,46,48,57,54,46,48,52,55,32,51,46,50,51,49,115,45,46,48,48,56,32,50,46,51,56,57,45,46,48,52,55,32,51,46,50,51,50,99,45,46,48,51,53,46,55,56,45,46,49,54,54,32,49,46,50,48,51,45,46,50,55,53,32,49,46,52,56,53,97,50,46,52,55,32,50,46,52,55,32,48,32,48,32,49,45,46,53,57,57,46,57,49,57,99,45,46,50,56,46,50,56,45,46,53,52,54,46,52,53,51,45,46,57,50,46,53,57,56,45,46,50,56,46,49,49,45,46,55,48,52,46,50,52,45,49,46,52,56,53,46,50,55,54,45,46,56,52,51,46,48,51,56,45,49,46,48,57,54,46,48,52,55,45,51,46,50,51,50,46,48,52,55,115,45,50,46,51,57,45,46,48,48,57,45,51,46,50,51,51,45,46,48,52,55,99,45,46,55,56,45,46,48,51,54,45,49,46,50,48,51,45,46,49,54,54,45,49,46,52,56,53,45,46,50,55,54,97,50,46,52,55,56,32,50,46,52,55,56,32,48,32,48,32,49,45,46,57,50,45,46,53,57,56,32,50,46,52,56,32,50,46,52,56,32,48,32,48,32,49,45,46,54,45,46,57,50,99,45,46,49,48,57,45,46,50,56,49,45,46,50,52,45,46,55,48,53,45,46,50,55,53,45,49,46,52,56,53,45,46,48,51,56,45,46,56,52,51,45,46,48,52,54,45,49,46,48,57,54,45,46,48,52,54,45,51,46,50,51,51,32,48,45,50,46,49,51,54,46,48,48,56,45,50,46,51,56,56,46,48,52,54,45,51,46,50,51,49,46,48,51,54,45,46,55,56,46,49,54,54,45,49,46,50,48,52,46,50,55,54,45,49,46,52,56,54,46,49,52,53,45,46,51,55,51,46,51,49,57,45,46,54,52,46,53,57,57,45,46,57,50,46,50,56,45,46,50,56,46,53,52,54,45,46,52,53,51,46,57,50,45,46,53,57,56,46,50,56,50,45,46,49,49,46,55,48,53,45,46,50,52,32,49,46,52,56,53,45,46,50,55,54,46,55,51,56,45,46,48,51,52,32,49,46,48,50,52,45,46,48,52,52,32,50,46,53,49,53,45,46,48,52,53,118,46,48,48,50,122,109,52,46,57,56,56,32,49,46,51,50,56,97,46,57,54,46,57,54,32,48,32,49,32,48,32,48,32,49,46,57,50,46,57,54,46,57,54,32,48,32,48,32,48,32,48,45,49,46,57,50,122,109,45,52,46,50,55,32,49,46,49,50,50,97,52,46,49,48,57,32,52,46,49,48,57,32,48,32,49,32,48,32,48,32,56,46,50,49,55,32,52,46,49,48,57,32,52,46,49,48,57,32,48,32,48,32,48,32,48,45,56,46,50,49,55,122,109,48,32,49,46,52,52,49,97,50,46,54,54,55,32,50,46,54,54,55,32,48,32,49,32,49,32,48,32,53,46,51,51,52,32,50,46,54,54,55,32,50,46,54,54,55,32,48,32,48,32,49,32,48,45,53,46,51,51,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,73,110,116,101,114,115,101,99,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,73,110,116,101,114,115,101,99,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,50,104,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,54,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,53,32,49,48,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,54,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,50,118,53,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,53,122,109,54,45,56,72,54,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,53,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,56,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,117,114,110,97,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,117,114,110,97,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,48,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,104,49,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,72,49,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,53,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,56,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,117,114,110,97,108,65,108,98,117,109,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,117,114,110,97,108,65,108,98,117,109,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,53,122,109,49,32,55,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,48,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,104,49,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,72,49,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,53,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,56,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,117,114,110,97,108,65,114,114,111,119,68,111,119,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,46,55,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,50,45,50,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,57,46,50,57,51,86,53,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,48,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,104,49,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,72,49,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,53,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,56,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,117,114,110,97,108,65,114,114,111,119,85,112,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,49,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,54,46,55,48,55,108,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,108,45,50,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,50,32,50,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,56,46,55,48,56,76,55,46,53,32,54,46,55,48,55,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,48,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,104,49,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,72,49,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,53,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,56,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,32,56,86,49,104,49,118,54,46,49,49,55,76,56,46,55,52,51,32,54,46,48,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,49,52,32,48,76,49,49,32,55,46,49,49,55,86,49,104,49,118,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,53,55,46,52,50,57,76,57,32,55,46,48,56,51,32,54,46,55,53,55,32,56,46,52,51,65,46,53,46,53,32,48,32,48,32,49,32,54,32,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,48,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,104,49,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,72,49,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,53,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,56,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,32,49,104,54,118,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,53,55,46,52,50,57,76,57,32,55,46,48,56,51,32,54,46,55,53,55,32,56,46,52,51,65,46,53,46,53,32,48,32,48,32,49,32,54,32,56,86,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,48,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,104,49,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,72,49,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,53,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,56,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,117,114,110,97,108,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,117,114,110,97,108,67,104,101,99,107,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,56,53,52,32,54,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,56,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,48,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,104,49,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,72,49,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,53,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,56,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,117,114,110,97,108,67,111,100,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,117,114,110,97,108,67,111,100,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,46,54,52,54,32,53,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,50,32,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,48,46,50,57,51,32,56,32,56,46,54,52,54,32,54,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,109,45,49,46,50,57,50,32,48,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,55,48,56,108,50,32,50,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,76,53,46,55,48,55,32,56,108,49,46,54,52,55,45,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,48,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,104,49,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,72,49,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,53,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,56,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,117,114,110,97,108,77,101,100,105,99,97,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,117,114,110,97,108,77,101,100,105,99,97,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,46,54,51,52,108,46,53,52,57,45,46,51,49,55,97,46,53,46,53,32,48,32,49,32,49,32,46,53,46,56,54,54,76,57,32,54,108,46,53,52,57,46,51,49,55,97,46,53,46,53,32,48,32,49,32,49,45,46,53,46,56,54,54,76,56,46,53,32,54,46,56,54,54,86,55,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,46,54,51,52,108,45,46,53,52,57,46,51,49,55,97,46,53,46,53,32,48,32,49,32,49,45,46,53,45,46,56,54,54,76,55,32,54,108,45,46,53,52,57,45,46,51,49,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,56,54,54,108,46,53,52,57,46,51,49,55,86,52,46,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,52,122,77,53,32,57,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,48,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,104,49,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,72,49,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,53,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,56,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,117,114,110,97,108,77,105,110,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,117,114,110,97,108,77,105,110,117,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,53,46,53,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,48,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,104,49,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,72,49,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,53,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,56,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,117,114,110,97,108,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,117,114,110,97,108,80,108,117,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,46,53,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,86,49,48,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,46,53,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,48,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,104,49,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,72,49,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,53,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,56,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,117,114,110,97,108,82,105,99,104,116,101,120,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,117,114,110,97,108,82,105,99,104,116,101,120,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,53,32,51,46,55,53,97,46,55,53,46,55,53,32,48,32,49,32,49,45,49,46,53,32,48,32,46,55,53,46,55,53,32,48,32,48,32,49,32,49,46,53,32,48,122,109,45,46,56,54,49,32,49,46,53,52,50,108,49,46,51,51,46,56,56,54,32,49,46,56,53,52,45,49,46,56,53,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,56,57,45,46,48,52,55,76,49,49,32,52,46,55,53,86,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,53,65,46,53,46,53,32,48,32,48,32,49,32,53,32,55,118,45,46,53,115,49,46,53,52,45,49,46,50,55,52,32,49,46,54,51,57,45,49,46,50,48,56,122,77,53,32,57,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,48,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,104,49,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,72,49,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,53,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,56,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,117,114,110,97,108,84,101,120,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,117,114,110,97,108,84,101,120,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,48,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,104,49,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,72,49,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,53,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,56,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,117,114,110,97,108,88,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,117,114,110,97,108,88,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,46,49,52,54,32,54,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,55,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,56,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,56,46,55,48,55,32,54,46,56,53,52,32,57,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,56,32,54,46,49,52,54,32,54,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,48,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,104,49,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,72,49,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,53,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,56,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,117,114,110,97,108,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,117,114,110,97,108,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,48,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,32,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,104,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,97,49,32,49,32,48,32,48,32,48,45,49,32,49,72,49,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,57,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,53,97,49,32,49,32,48,32,48,32,48,45,49,32,49,72,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,54,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,54,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,51,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,57,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,122,109,48,32,50,46,53,118,46,53,72,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,50,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,50,118,45,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,111,121,115,116,105,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,111,121,115,116,105,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,32,50,97,50,32,50,32,48,32,48,32,49,45,49,46,53,32,49,46,57,51,55,118,53,46,48,56,55,99,46,56,54,51,46,48,56,51,32,49,46,53,46,51,55,55,32,49,46,53,46,55,50,54,32,48,32,46,52,49,52,45,46,56,57,53,46,55,53,45,50,32,46,55,53,115,45,50,45,46,51,51,54,45,50,45,46,55,53,99,48,45,46,51,53,46,54,51,55,45,46,54,52,51,32,49,46,53,45,46,55,50,54,86,51,46,57,51,55,65,50,32,50,32,48,32,49,32,49,32,49,48,32,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,57,46,54,54,53,118,49,46,55,49,55,97,49,32,49,32,48,32,48,32,48,32,46,53,53,51,46,56,57,52,108,54,46,53,53,51,32,51,46,50,55,55,97,50,32,50,32,48,32,48,32,48,32,49,46,55,56,56,32,48,108,54,46,53,53,51,45,51,46,50,55,55,97,49,32,49,32,48,32,48,32,48,32,46,53,53,51,45,46,56,57,52,86,57,46,54,54,53,99,48,45,46,49,45,46,48,54,45,46,49,57,45,46,49,53,50,45,46,50,51,76,57,46,53,32,54,46,55,49,53,118,46,57,57,51,108,53,46,50,50,55,32,50,46,49,55,56,97,46,49,50,53,46,49,50,53,32,48,32,48,32,49,32,46,48,48,49,46,50,51,108,45,53,46,57,52,32,50,46,53,52,54,97,50,32,50,32,48,32,48,32,49,45,49,46,53,55,54,32,48,108,45,53,46,57,52,45,50,46,53,52,54,97,46,49,50,53,46,49,50,53,32,48,32,48,32,49,32,46,48,48,49,45,46,50,51,76,54,46,53,32,55,46,55,48,56,108,45,46,48,49,51,45,46,57,56,56,76,46,49,53,50,32,57,46,52,51,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,49,53,50,46,50,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,117,115,116,105,102,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,117,115,116,105,102,121,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,49,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,117,115,116,105,102,121,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,117,115,116,105,102,121,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,49,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,74,117,115,116,105,102,121,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,74,117,115,116,105,102,121,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,32,49,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,52,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,75,97,110,98,97,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,75,97,110,98,97,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,46,53,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,49,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,49,122,109,45,49,49,45,49,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,49,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,122,109,45,52,32,48,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,55,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,122,109,56,32,48,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,48,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,75,97,110,98,97,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,75,97,110,98,97,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,49,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,49,122,109,53,32,50,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,109,45,53,32,49,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,55,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,122,109,57,45,49,104,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,48,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,75,101,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,75,101,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,56,97,52,32,52,32,48,32,48,32,49,32,55,46,52,54,53,45,50,72,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,51,53,52,46,49,52,54,108,49,46,53,32,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,49,46,53,32,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,76,49,51,32,57,46,50,48,55,108,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,76,49,49,32,57,46,50,48,55,108,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,76,57,32,57,46,50,48,55,108,45,46,54,52,54,46,54,52,55,65,46,53,46,53,32,48,32,48,32,49,32,56,32,49,48,104,45,46,53,51,53,65,52,32,52,32,48,32,48,32,49,32,48,32,56,122,109,52,45,51,97,51,32,51,32,48,32,49,32,48,32,50,46,55,49,50,32,52,46,50,56,53,65,46,53,46,53,32,48,32,48,32,49,32,55,46,49,54,51,32,57,104,46,54,51,108,46,56,53,51,45,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,46,54,52,54,46,54,52,55,46,54,52,54,45,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,46,54,52,54,46,54,52,55,46,54,52,54,45,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,46,54,52,54,46,54,52,55,46,55,57,51,45,46,55,57,51,45,49,45,49,104,45,54,46,54,51,97,46,53,46,53,32,48,32,48,32,49,45,46,52,53,49,45,46,50,56,53,65,51,32,51,32,48,32,48,32,48,32,52,32,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,56,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,75,101,121,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,75,101,121,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,49,49,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,49,32,51,46,49,54,51,45,53,72,49,52,76,49,53,46,53,32,56,32,49,52,32,57,46,53,108,45,49,45,49,45,49,32,49,45,49,45,49,45,49,32,49,45,49,45,49,45,49,32,49,72,54,46,54,54,51,97,51,46,53,32,51,46,53,32,48,32,48,32,49,45,51,46,49,54,51,32,50,122,77,50,46,53,32,57,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,75,101,121,98,111,97,114,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,75,101,121,98,111,97,114,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,53,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,54,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,53,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,54,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,51,32,49,48,46,50,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,45,46,50,53,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,45,46,50,53,118,45,46,53,122,109,48,45,50,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,45,46,50,53,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,45,46,50,53,118,45,46,53,122,109,45,53,32,48,65,46,50,53,46,50,53,32,48,32,48,32,49,32,56,46,50,53,32,56,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,53,65,46,50,53,46,50,53,32,48,32,48,32,49,32,56,32,56,46,55,53,118,45,46,53,122,109,50,32,48,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,45,46,50,53,104,49,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,49,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,45,46,50,53,118,45,46,53,122,109,49,32,50,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,45,46,50,53,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,45,46,50,53,118,45,46,53,122,109,45,53,45,50,65,46,50,53,46,50,53,32,48,32,48,32,49,32,54,46,50,53,32,56,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,53,65,46,50,53,46,50,53,32,48,32,48,32,49,32,54,32,56,46,55,53,118,45,46,53,122,109,45,50,32,48,65,46,50,53,46,50,53,32,48,32,48,32,49,32,52,46,50,53,32,56,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,53,65,46,50,53,46,50,53,32,48,32,48,32,49,32,52,32,56,46,55,53,118,45,46,53,122,109,45,50,32,48,65,46,50,53,46,50,53,32,48,32,48,32,49,32,50,46,50,53,32,56,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,53,65,46,50,53,46,50,53,32,48,32,48,32,49,32,50,32,56,46,55,53,118,45,46,53,122,109,49,49,45,50,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,45,46,50,53,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,45,46,50,53,118,45,46,53,122,109,45,50,32,48,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,45,46,50,53,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,45,46,50,53,118,45,46,53,122,109,45,50,32,48,65,46,50,53,46,50,53,32,48,32,48,32,49,32,57,46,50,53,32,54,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,53,65,46,50,53,46,50,53,32,48,32,48,32,49,32,57,32,54,46,55,53,118,45,46,53,122,109,45,50,32,48,65,46,50,53,46,50,53,32,48,32,48,32,49,32,55,46,50,53,32,54,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,53,65,46,50,53,46,50,53,32,48,32,48,32,49,32,55,32,54,46,55,53,118,45,46,53,122,109,45,50,32,48,65,46,50,53,46,50,53,32,48,32,48,32,49,32,53,46,50,53,32,54,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,53,65,46,50,53,46,50,53,32,48,32,48,32,49,32,53,32,54,46,55,53,118,45,46,53,122,109,45,51,32,48,65,46,50,53,46,50,53,32,48,32,48,32,49,32,50,46,50,53,32,54,104,49,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,49,46,53,65,46,50,53,46,50,53,32,48,32,48,32,49,32,50,32,54,46,55,53,118,45,46,53,122,109,48,32,52,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,45,46,50,53,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,45,46,50,53,118,45,46,53,122,109,50,32,48,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,45,46,50,53,104,53,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,53,46,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,45,46,50,53,118,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,75,101,121,98,111,97,114,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,75,101,121,98,111,97,114,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,54,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,53,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,54,122,109,49,51,32,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,45,46,50,53,118,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,45,46,50,53,104,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,122,77,50,46,50,53,32,56,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,46,53,65,46,50,53,46,50,53,32,48,32,48,32,48,32,51,32,56,46,55,53,118,45,46,53,65,46,50,53,46,50,53,32,48,32,48,32,48,32,50,46,55,53,32,56,104,45,46,53,122,77,52,32,56,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,46,53,65,46,50,53,46,50,53,32,48,32,48,32,48,32,53,32,56,46,55,53,118,45,46,53,65,46,50,53,46,50,53,32,48,32,48,32,48,32,52,46,55,53,32,56,104,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,122,77,54,46,50,53,32,56,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,46,53,65,46,50,53,46,50,53,32,48,32,48,32,48,32,55,32,56,46,55,53,118,45,46,53,65,46,50,53,46,50,53,32,48,32,48,32,48,32,54,46,55,53,32,56,104,45,46,53,122,77,56,32,56,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,46,53,65,46,50,53,46,50,53,32,48,32,48,32,48,32,57,32,56,46,55,53,118,45,46,53,65,46,50,53,46,50,53,32,48,32,48,32,48,32,56,46,55,53,32,56,104,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,122,77,49,51,46,50,53,32,56,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,45,46,50,53,118,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,45,46,50,53,104,45,46,53,122,109,48,32,50,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,45,46,50,53,118,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,45,46,50,53,104,45,46,53,122,109,45,51,45,50,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,49,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,45,46,50,53,118,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,45,46,50,53,104,45,49,46,53,122,109,46,55,53,32,50,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,45,46,50,53,118,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,45,46,50,53,104,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,122,77,49,49,46,50,53,32,54,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,45,46,50,53,118,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,45,46,50,53,104,45,46,53,122,77,57,32,54,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,45,46,50,53,118,45,46,53,65,46,50,53,46,50,53,32,48,32,48,32,48,32,57,46,55,53,32,54,104,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,122,77,55,46,50,53,32,54,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,46,53,65,46,50,53,46,50,53,32,48,32,48,32,48,32,56,32,54,46,55,53,118,45,46,53,65,46,50,53,46,50,53,32,48,32,48,32,48,32,55,46,55,53,32,54,104,45,46,53,122,77,53,32,54,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,46,53,65,46,50,53,46,50,53,32,48,32,48,32,48,32,54,32,54,46,55,53,118,45,46,53,65,46,50,53,46,50,53,32,48,32,48,32,48,32,53,46,55,53,32,54,104,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,122,77,50,46,50,53,32,54,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,49,46,53,65,46,50,53,46,50,53,32,48,32,48,32,48,32,52,32,54,46,55,53,118,45,46,53,65,46,50,53,46,50,53,32,48,32,48,32,48,32,51,46,55,53,32,54,104,45,49,46,53,122,77,50,32,49,48,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,45,46,50,53,118,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,45,46,50,53,104,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,122,77,52,46,50,53,32,49,48,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,46,50,53,118,46,53,99,48,32,46,49,51,56,46,49,49,50,46,50,53,46,50,53,46,50,53,104,53,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,45,46,50,53,118,45,46,53,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,53,45,46,50,53,104,45,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,100,100,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,100,100,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,50,104,54,118,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,49,52,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,53,72,53,118,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,53,32,49,52,104,54,118,45,50,72,53,118,50,122,109,48,45,51,104,54,86,57,72,53,118,50,122,109,48,45,51,104,54,86,54,72,53,118,50,122,109,48,45,51,104,54,86,51,72,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,109,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,109,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,32,51,118,52,72,51,86,51,104,49,48,122,77,51,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,52,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,122,109,52,46,53,45,49,108,46,50,55,54,45,46,53,53,51,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,52,52,56,32,48,76,56,46,53,32,49,104,45,49,122,109,45,46,48,49,50,32,57,104,49,46,48,50,52,99,46,51,51,55,46,54,52,54,46,54,55,55,32,49,46,51,51,46,57,53,32,49,46,57,52,57,46,49,55,54,46,51,57,54,46,51,49,56,46,55,53,46,52,49,51,32,49,46,48,52,50,46,48,52,56,46,49,52,54,46,48,56,49,46,50,54,54,46,49,48,50,46,51,54,65,49,46,51,52,55,32,49,46,51,52,55,32,48,32,48,32,49,32,49,48,32,49,51,46,53,99,48,32,46,54,54,53,45,46,55,49,55,32,49,46,53,45,50,32,49,46,53,115,45,50,45,46,56,51,53,45,50,45,49,46,53,99,48,32,48,32,48,45,46,48,49,51,46,48,48,52,45,46,48,51,57,46,48,48,51,45,46,48,50,55,46,48,49,45,46,48,54,51,46,48,50,45,46,49,49,46,48,50,45,46,48,57,52,46,48,53,51,45,46,50,49,52,46,49,45,46,51,54,46,48,57,54,45,46,50,57,49,46,50,51,56,45,46,54,52,54,46,52,49,51,45,49,46,48,52,50,46,50,55,52,45,46,54,50,46,54,49,52,45,49,46,51,48,51,46,57,53,45,49,46,57,52,57,122,109,49,46,54,50,55,45,49,104,45,50,46,50,51,67,54,46,48,51,50,32,49,48,46,53,57,53,32,53,32,49,50,46,54,57,32,53,32,49,51,46,53,32,53,32,49,52,46,56,56,32,54,46,51,52,51,32,49,54,32,56,32,49,54,115,51,45,49,46,49,50,32,51,45,50,46,53,99,48,45,46,56,49,45,49,46,48,51,50,45,50,46,57,48,53,45,49,46,56,56,53,45,52,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,109,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,109,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,48,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,122,109,53,46,53,45,50,108,46,50,55,54,45,46,53,53,51,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,52,52,56,32,48,76,56,46,53,32,49,104,45,49,122,109,45,46,54,49,53,32,56,104,50,46,50,51,67,57,46,57,54,56,32,49,48,46,53,57,53,32,49,49,32,49,50,46,54,57,32,49,49,32,49,51,46,53,99,48,32,49,46,51,56,45,49,46,51,52,51,32,50,46,53,45,51,32,50,46,53,115,45,51,45,49,46,49,50,45,51,45,50,46,53,99,48,45,46,56,49,32,49,46,48,51,50,45,50,46,57,48,53,32,49,46,56,56,53,45,52,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,112,116,111,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,112,116,111,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,46,53,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,49,72,50,86,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,122,109,45,49,49,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,32,51,46,53,86,49,50,104,49,52,86,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,51,46,53,32,50,104,45,49,49,122,77,48,32,49,50,46,53,104,49,54,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,50,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,112,116,111,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,112,116,111,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,32,51,46,53,86,49,50,104,49,52,86,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,51,46,53,32,50,104,45,49,49,122,77,48,32,49,50,46,53,104,49,54,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,50,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,121,101,114,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,121,101,114,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,50,51,53,32,49,46,53,53,57,97,46,53,46,53,32,48,32,48,32,48,45,46,52,55,32,48,108,45,55,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,56,56,50,76,51,46,49,56,56,32,56,32,46,50,54,52,32,57,46,53,53,57,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,56,56,50,108,55,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,32,46,52,55,32,48,108,55,46,53,45,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,56,56,50,76,49,50,46,56,49,51,32,56,108,50,46,57,50,50,45,49,46,53,53,57,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,56,56,50,108,45,55,46,53,45,52,122,109,51,46,53,49,53,32,55,46,48,48,56,76,49,52,46,52,51,56,32,49,48,32,56,32,49,51,46,52,51,51,32,49,46,53,54,50,32,49,48,32,52,46,50,53,32,56,46,53,54,55,108,51,46,53,49,53,32,49,46,56,55,52,97,46,53,46,53,32,48,32,48,32,48,32,46,52,55,32,48,108,51,46,53,49,53,45,49,46,56,55,52,122,77,56,32,57,46,52,51,51,76,49,46,53,54,50,32,54,32,56,32,50,46,53,54,55,32,49,52,46,52,51,56,32,54,32,56,32,57,46,52,51,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,121,101,114,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,121,101,114,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,55,54,53,32,49,46,53,53,57,97,46,53,46,53,32,48,32,48,32,49,32,46,52,55,32,48,108,55,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,56,56,50,108,45,55,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,45,46,52,55,32,48,108,45,55,46,53,45,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,56,56,50,108,55,46,53,45,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,49,50,53,32,56,46,53,54,55,108,45,49,46,56,54,46,57,57,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,56,56,50,108,55,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,32,46,52,55,32,48,108,55,46,53,45,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,56,56,50,108,45,49,46,56,54,45,46,57,57,50,45,53,46,49,55,32,50,46,55,53,54,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,52,49,32,48,108,45,53,46,49,55,45,50,46,55,53,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,121,101,114,115,72,97,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,121,101,114,115,72,97,108,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,50,51,53,32,49,46,53,53,57,97,46,53,46,53,32,48,32,48,32,48,45,46,52,55,32,48,108,45,55,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,56,56,50,76,51,46,49,56,56,32,56,32,46,50,54,52,32,57,46,53,53,57,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,56,56,50,108,55,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,32,46,52,55,32,48,108,55,46,53,45,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,56,56,50,76,49,50,46,56,49,51,32,56,108,50,46,57,50,50,45,49,46,53,53,57,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,56,56,50,108,45,55,46,53,45,52,122,77,56,32,57,46,52,51,51,76,49,46,53,54,50,32,54,32,56,32,50,46,53,54,55,32,49,52,46,52,51,56,32,54,32,56,32,57,46,52,51,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,121,111,117,116,83,105,100,101,98,97,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,122,109,53,45,49,118,49,50,104,57,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,53,122,77,52,32,50,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,86,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,48,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,49,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,82,101,118,101,114,115,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,82,101,118,101,114,115,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,109,49,50,45,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,51,32,52,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,121,111,117,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,122,109,45,53,45,49,118,49,50,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,57,122,109,49,32,48,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,48,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,86,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,121,111,117,116,83,112,108,105,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,121,111,117,116,83,112,108,105,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,122,109,56,46,53,45,49,118,49,50,72,49,52,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,56,46,53,122,109,45,49,32,48,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,53,46,53,86,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,53,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,53,122,77,51,32,57,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,49,50,45,49,118,49,52,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,50,122,109,45,49,32,48,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,57,86,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,53,32,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,53,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,53,122,109,46,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,122,109,45,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,54,32,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,122,77,52,32,49,118,49,52,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,122,109,49,32,48,104,57,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,53,86,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,54,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,49,50,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,72,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,109,49,32,51,118,49,48,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,86,52,104,51,122,109,45,52,32,48,118,49,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,104,49,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,82,101,118,101,114,115,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,82,101,118,101,114,115,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,32,54,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,122,109,45,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,122,77,50,32,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,104,49,52,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,122,77,49,32,52,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,86,52,72,49,122,109,52,32,48,118,49,49,104,57,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,72,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,121,111,117,116,84,104,114,101,101,67,111,108,117,109,110,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,121,111,117,116,84,104,114,101,101,67,111,108,117,109,110,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,48,104,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,49,46,53,118,49,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,52,46,53,118,45,49,51,122,77,49,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,72,53,86,49,72,49,46,53,122,77,49,48,32,49,53,86,49,72,54,118,49,52,104,52,122,109,49,32,48,104,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,49,49,118,49,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,97,121,111,117,116,87,116,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,97,121,111,117,116,87,116,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,49,118,56,72,49,86,49,104,52,122,77,49,32,48,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,52,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,49,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,49,122,109,49,51,32,50,118,53,72,57,86,50,104,53,122,77,57,32,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,53,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,53,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,57,122,77,53,32,49,51,118,50,72,51,118,45,50,104,50,122,109,45,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,122,109,49,50,45,49,118,50,72,57,118,45,50,104,54,122,109,45,54,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,54,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,105,102,101,80,114,101,115,101,114,118,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,105,102,101,80,114,101,115,101,114,118,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,54,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,109,54,46,52,51,45,53,46,50,50,56,97,55,46,48,50,53,32,55,46,48,50,53,32,48,32,48,32,49,45,51,46,54,53,56,32,51,46,54,53,56,108,45,49,46,49,49,53,45,50,46,55,56,56,97,52,46,48,49,53,32,52,46,48,49,53,32,48,32,48,32,48,32,49,46,57,56,53,45,49,46,57,56,53,108,50,46,55,56,56,32,49,46,49,49,53,122,77,53,46,50,50,56,32,49,52,46,52,51,97,55,46,48,50,53,32,55,46,48,50,53,32,48,32,48,32,49,45,51,46,54,53,56,45,51,46,54,53,56,108,50,46,55,56,56,45,49,46,49,49,53,97,52,46,48,49,53,32,52,46,48,49,53,32,48,32,48,32,48,32,49,46,57,56,53,32,49,46,57,56,53,76,53,46,50,50,56,32,49,52,46,52,51,122,109,57,46,50,48,50,45,57,46,50,48,50,108,45,50,46,55,56,56,32,49,46,49,49,53,97,52,46,48,49,53,32,52,46,48,49,53,32,48,32,48,32,48,45,49,46,57,56,53,45,49,46,57,56,53,108,49,46,49,49,53,45,50,46,55,56,56,97,55,46,48,50,53,32,55,46,48,50,53,32,48,32,48,32,49,32,51,46,54,53,56,32,51,46,54,53,56,122,109,45,56,46,48,56,55,45,46,56,55,97,52,46,48,49,53,32,52,46,48,49,53,32,48,32,48,32,48,45,49,46,57,56,53,32,49,46,57,56,53,76,49,46,53,55,32,53,46,50,50,56,65,55,46,48,50,53,32,55,46,48,50,53,32,48,32,48,32,49,32,53,46,50,50,56,32,49,46,53,55,108,49,46,49,49,53,32,50,46,55,56,56,122,77,56,32,49,49,97,51,32,51,32,48,32,49,32,49,32,48,45,54,32,51,32,51,32,48,32,48,32,49,32,48,32,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,105,103,104,116,110,105,110,103,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,105,103,104,116,110,105,110,103,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,50,53,49,46,48,54,56,97,46,53,46,53,32,48,32,48,32,49,32,46,50,50,55,46,53,56,76,57,46,54,55,55,32,54,46,53,72,49,51,97,46,53,46,53,32,48,32,48,32,49,32,46,51,54,52,46,56,52,51,108,45,56,32,56,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,56,52,50,45,46,52,57,76,54,46,51,50,51,32,57,46,53,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,51,54,52,45,46,56,52,51,108,56,45,56,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,54,49,53,45,46,48,57,122,77,52,46,49,53,55,32,56,46,53,72,55,97,46,53,46,53,32,48,32,48,32,49,32,46,52,55,56,46,54,52,55,76,54,46,49,49,32,49,51,46,53,57,108,53,46,55,51,50,45,54,46,48,57,72,57,97,46,53,46,53,32,48,32,48,32,49,45,46,52,55,56,45,46,54,52,55,76,57,46,56,57,32,50,46,52,49,32,52,46,49,53,55,32,56,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,105,103,104,116,110,105,110,103,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,105,103,104,116,110,105,110,103,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,50,53,49,46,48,54,56,97,46,53,46,53,32,48,32,48,32,49,32,46,50,50,55,46,53,56,76,57,46,54,55,55,32,54,46,53,72,49,51,97,46,53,46,53,32,48,32,48,32,49,32,46,51,54,52,46,56,52,51,108,45,56,32,56,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,56,52,50,45,46,52,57,76,54,46,51,50,51,32,57,46,53,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,51,54,52,45,46,56,52,51,108,56,45,56,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,54,49,53,45,46,48,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,105,110,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,105,110,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,51,53,52,32,53,46,53,72,52,97,51,32,51,32,48,32,48,32,48,32,48,32,54,104,51,97,51,32,51,32,48,32,48,32,48,32,50,46,56,51,45,52,72,57,99,45,46,48,56,54,32,48,45,46,49,55,46,48,49,45,46,50,53,46,48,51,49,65,50,32,50,32,48,32,48,32,49,32,55,32,49,48,46,53,72,52,97,50,32,50,32,48,32,49,32,49,32,48,45,52,104,49,46,53,51,53,99,46,50,49,56,45,46,51,55,54,46,52,57,53,45,46,55,49,52,46,56,50,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,32,53,46,53,97,51,32,51,32,48,32,48,32,48,45,50,46,56,51,32,52,104,49,46,48,57,56,65,50,32,50,32,48,32,48,32,49,32,57,32,54,46,53,104,51,97,50,32,50,32,48,32,49,32,49,32,48,32,52,104,45,49,46,53,51,53,97,52,46,48,50,32,52,46,48,50,32,48,32,48,32,49,45,46,56,50,32,49,72,49,50,97,51,32,51,32,48,32,49,32,48,32,48,45,54,72,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,105,110,107,52,53,100,101,103,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,105,110,107,52,53,100,101,103,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,55,49,53,32,54,46,53,52,50,76,51,46,51,52,51,32,55,46,57,49,52,97,51,32,51,32,48,32,49,32,48,32,52,46,50,52,51,32,52,46,50,52,51,108,49,46,56,50,56,45,49,46,56,50,57,65,51,32,51,32,48,32,48,32,48,32,56,46,53,56,54,32,53,46,53,76,56,32,54,46,48,56,54,97,49,46,48,48,49,32,49,46,48,48,49,32,48,32,48,32,48,45,46,49,53,52,46,49,57,57,32,50,32,50,32,48,32,48,32,49,32,46,56,54,49,32,51,46,51,51,55,76,54,46,56,56,32,49,49,46,52,53,97,50,32,50,32,48,32,49,32,49,45,50,46,56,51,45,50,46,56,51,108,46,55,57,51,45,46,55,57,50,97,52,46,48,49,56,32,52,46,48,49,56,32,48,32,48,32,49,45,46,49,50,56,45,49,46,50,56,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,46,53,56,54,32,52,46,54,55,50,65,51,32,51,32,48,32,48,32,48,32,55,46,52,49,52,32,57,46,53,108,46,55,55,53,45,46,55,55,54,97,50,32,50,32,48,32,48,32,49,45,46,56,57,54,45,51,46,51,52,54,76,57,46,49,50,32,51,46,53,53,97,50,32,50,32,48,32,48,32,49,32,50,46,56,51,32,50,46,56,51,108,45,46,55,57,51,46,55,57,50,99,46,49,49,50,46,52,50,46,49,53,53,46,56,53,53,46,49,50,56,32,49,46,50,56,55,108,49,46,51,55,50,45,49,46,51,55,50,97,51,32,51,32,48,32,48,32,48,45,52,46,50,52,51,45,52,46,50,52,51,76,54,46,53,56,54,32,52,46,54,55,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,105,110,107,101,100,105,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,105,110,107,101,100,105,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,46,49,52,54,67,48,32,46,53,49,51,46,53,50,54,32,48,32,49,46,49,55,53,32,48,104,49,51,46,54,53,67,49,53,46,52,55,52,32,48,32,49,54,32,46,53,49,51,32,49,54,32,49,46,49,52,54,118,49,51,46,55,48,56,99,48,32,46,54,51,51,45,46,53,50,54,32,49,46,49,52,54,45,49,46,49,55,53,32,49,46,49,52,54,72,49,46,49,55,53,67,46,53,50,54,32,49,54,32,48,32,49,53,46,52,56,55,32,48,32,49,52,46,56,53,52,86,49,46,49,52,54,122,109,52,46,57,52,51,32,49,50,46,50,52,56,86,54,46,49,54,57,72,50,46,53,52,50,118,55,46,50,50,53,104,50,46,52,48,49,122,109,45,49,46,50,45,56,46,50,49,50,99,46,56,51,55,32,48,32,49,46,51,53,56,45,46,53,53,52,32,49,46,51,53,56,45,49,46,50,52,56,45,46,48,49,53,45,46,55,48,57,45,46,53,50,45,49,46,50,52,56,45,49,46,51,52,50,45,49,46,50,52,56,45,46,56,50,50,32,48,45,49,46,51,53,57,46,53,52,45,49,46,51,53,57,32,49,46,50,52,56,32,48,32,46,54,57,52,46,53,50,49,32,49,46,50,52,56,32,49,46,51,50,55,32,49,46,50,52,56,104,46,48,49,54,122,109,52,46,57,48,56,32,56,46,50,49,50,86,57,46,51,53,57,99,48,45,46,50,49,54,46,48,49,54,45,46,52,51,50,46,48,56,45,46,53,56,54,46,49,55,51,45,46,52,51,49,46,53,54,56,45,46,56,55,56,32,49,46,50,51,50,45,46,56,55,56,46,56,54,57,32,48,32,49,46,50,49,54,46,54,54,50,32,49,46,50,49,54,32,49,46,54,51,52,118,51,46,56,54,53,104,50,46,52,48,49,86,57,46,50,53,99,48,45,50,46,50,50,45,49,46,49,56,52,45,51,46,50,53,50,45,50,46,55,54,52,45,51,46,50,53,50,45,49,46,50,55,52,32,48,45,49,46,56,52,53,46,55,45,50,46,49,54,53,32,49,46,49,57,51,118,46,48,50,53,104,45,46,48,49,54,97,53,46,53,52,32,53,46,53,52,32,48,32,48,32,49,32,46,48,49,54,45,46,48,50,53,86,54,46,49,54,57,104,45,50,46,52,99,46,48,51,46,54,55,56,32,48,32,55,46,50,50,53,32,48,32,55,46,50,50,53,104,50,46,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,105,115,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,105,115,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,46,53,32,49,49,46,53,65,46,53,46,53,32,48,32,48,32,49,32,51,32,49,49,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,52,65,46,53,46,53,32,48,32,48,32,49,32,51,32,55,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,52,65,46,53,46,53,32,48,32,48,32,49,32,51,32,51,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,105,115,116,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,105,115,116,67,104,101,99,107,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,53,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,51,46,56,53,52,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,49,46,53,32,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,46,53,45,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,50,32,51,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,109,48,32,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,49,46,53,32,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,46,53,45,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,50,32,55,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,109,48,32,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,49,46,53,32,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,108,46,49,52,54,46,49,52,55,32,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,105,115,116,78,101,115,116,101,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,105,115,116,78,101,115,116,101,100,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,52,46,53,32,49,49,46,53,65,46,53,46,53,32,48,32,48,32,49,32,53,32,49,49,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,50,45,52,65,46,53,46,53,32,48,32,48,32,49,32,51,32,55,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,50,45,52,65,46,53,46,53,32,48,32,48,32,49,32,49,32,51,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,105,115,116,79,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,105,115,116,79,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,53,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,46,55,49,51,32,49,49,46,56,54,53,118,45,46,52,55,52,72,50,99,46,50,49,55,32,48,32,46,51,54,51,45,46,49,51,55,46,51,54,51,45,46,51,49,55,32,48,45,46,49,56,53,45,46,49,53,56,45,46,51,49,45,46,51,54,49,45,46,51,49,45,46,50,50,51,32,48,45,46,51,54,55,46,49,53,50,45,46,51,55,51,46,51,49,104,45,46,53,57,99,46,48,49,54,45,46,52,54,55,46,51,55,51,45,46,55,56,55,46,57,56,54,45,46,55,56,55,46,53,56,56,45,46,48,48,50,46,57,53,52,46,50,57,49,46,57,53,55,46,55,48,51,97,46,53,57,53,46,53,57,53,32,48,32,48,32,49,45,46,52,57,50,46,53,57,52,118,46,48,51,51,97,46,54,49,53,46,54,49,53,32,48,32,48,32,49,32,46,53,54,57,46,54,51,49,99,46,48,48,51,46,53,51,51,45,46,53,48,50,46,56,45,49,46,48,53,49,46,56,45,46,54,53,54,32,48,45,49,45,46,51,55,45,49,46,48,48,56,45,46,55,57,52,104,46,53,56,50,99,46,48,48,56,46,49,55,56,46,49,56,54,46,51,48,54,46,52,50,50,46,51,48,57,46,50,53,52,32,48,32,46,52,50,52,45,46,49,52,53,46,52,50,50,45,46,51,53,45,46,48,48,50,45,46,49,57,53,45,46,49,53,53,45,46,51,52,56,45,46,52,49,52,45,46,51,52,56,104,45,46,51,122,109,45,46,48,48,52,45,52,46,54,57,57,104,45,46,54,48,52,118,45,46,48,51,53,99,48,45,46,52,48,56,46,50,57,53,45,46,56,52,52,46,57,53,56,45,46,56,52,52,46,53,56,51,32,48,32,46,57,54,46,51,50,54,46,57,54,46,55,53,54,32,48,32,46,51,56,57,45,46,50,53,55,46,54,49,55,45,46,52,55,54,46,56,52,56,108,45,46,53,51,55,46,53,55,50,118,46,48,51,104,49,46,48,53,52,86,57,72,49,46,49,52,51,118,45,46,51,57,53,108,46,57,53,55,45,46,57,57,99,46,49,51,56,45,46,49,52,50,46,50,57,51,45,46,51,48,52,46,50,57,51,45,46,53,48,56,32,48,45,46,49,56,45,46,49,52,55,45,46,51,50,45,46,51,52,50,45,46,51,50,97,46,51,51,46,51,51,32,48,32,48,32,48,45,46,51,52,50,46,51,51,56,118,46,48,52,49,122,77,50,46,53,54,52,32,53,104,45,46,54,51,53,86,50,46,57,50,52,104,45,46,48,51,49,108,45,46,53,57,56,46,52,50,118,45,46,53,54,55,108,46,54,50,57,45,46,52,52,51,104,46,54,51,53,86,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,105,115,116,83,116,97,114,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,105,115,116,83,116,97,114,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,53,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,50,52,50,32,50,46,49,57,52,97,46,50,55,46,50,55,32,48,32,48,32,49,32,46,53,49,54,32,48,108,46,49,54,50,46,53,51,99,46,48,51,53,46,49,49,53,46,49,52,46,49,57,52,46,50,53,56,46,49,57,52,104,46,53,53,49,99,46,50,53,57,32,48,32,46,51,55,46,51,51,51,46,49,54,52,46,52,57,51,108,45,46,52,54,56,46,51,54,51,97,46,50,55,55,46,50,55,55,32,48,32,48,32,48,45,46,48,57,52,46,51,108,46,49,55,51,46,53,54,57,99,46,48,55,56,46,50,53,54,45,46,50,49,51,46,52,54,50,45,46,52,50,51,46,51,108,45,46,52,49,55,45,46,51,50,52,97,46,50,54,55,46,50,54,55,32,48,32,48,32,48,45,46,51,50,56,32,48,108,45,46,52,49,55,46,51,50,51,99,45,46,50,49,46,49,54,51,45,46,53,45,46,48,52,51,45,46,52,50,51,45,46,50,57,57,108,46,49,55,51,45,46,53,55,97,46,50,55,55,46,50,55,55,32,48,32,48,32,48,45,46,48,57,52,45,46,50,57,57,108,45,46,52,54,56,45,46,51,54,51,99,45,46,50,48,54,45,46,49,54,45,46,48,57,53,45,46,52,57,51,46,49,54,52,45,46,52,57,51,104,46,53,53,97,46,50,55,49,46,50,55,49,32,48,32,48,32,48,32,46,50,53,57,45,46,49,57,52,108,46,49,54,50,45,46,53,51,122,109,48,32,52,97,46,50,55,46,50,55,32,48,32,48,32,49,32,46,53,49,54,32,48,108,46,49,54,50,46,53,51,99,46,48,51,53,46,49,49,53,46,49,52,46,49,57,52,46,50,53,56,46,49,57,52,104,46,53,53,49,99,46,50,53,57,32,48,32,46,51,55,46,51,51,51,46,49,54,52,46,52,57,51,108,45,46,52,54,56,46,51,54,51,97,46,50,55,55,46,50,55,55,32,48,32,48,32,48,45,46,48,57,52,46,51,108,46,49,55,51,46,53,54,57,99,46,48,55,56,46,50,53,53,45,46,50,49,51,46,52,54,50,45,46,52,50,51,46,51,108,45,46,52,49,55,45,46,51,50,52,97,46,50,54,55,46,50,54,55,32,48,32,48,32,48,45,46,51,50,56,32,48,108,45,46,52,49,55,46,51,50,51,99,45,46,50,49,46,49,54,51,45,46,53,45,46,48,52,51,45,46,52,50,51,45,46,50,57,57,108,46,49,55,51,45,46,53,55,97,46,50,55,55,46,50,55,55,32,48,32,48,32,48,45,46,48,57,52,45,46,50,57,57,108,45,46,52,54,56,45,46,51,54,51,99,45,46,50,48,54,45,46,49,54,45,46,48,57,53,45,46,52,57,51,46,49,54,52,45,46,52,57,51,104,46,53,53,97,46,50,55,49,46,50,55,49,32,48,32,48,32,48,32,46,50,53,57,45,46,49,57,52,108,46,49,54,50,45,46,53,51,122,109,48,32,52,97,46,50,55,46,50,55,32,48,32,48,32,49,32,46,53,49,54,32,48,108,46,49,54,50,46,53,51,99,46,48,51,53,46,49,49,53,46,49,52,46,49,57,52,46,50,53,56,46,49,57,52,104,46,53,53,49,99,46,50,53,57,32,48,32,46,51,55,46,51,51,51,46,49,54,52,46,52,57,51,108,45,46,52,54,56,46,51,54,51,97,46,50,55,55,46,50,55,55,32,48,32,48,32,48,45,46,48,57,52,46,51,108,46,49,55,51,46,53,54,57,99,46,48,55,56,46,50,53,53,45,46,50,49,51,46,52,54,50,45,46,52,50,51,46,51,108,45,46,52,49,55,45,46,51,50,52,97,46,50,54,55,46,50,54,55,32,48,32,48,32,48,45,46,51,50,56,32,48,108,45,46,52,49,55,46,51,50,51,99,45,46,50,49,46,49,54,51,45,46,53,45,46,48,52,51,45,46,52,50,51,45,46,50,57,57,108,46,49,55,51,45,46,53,55,97,46,50,55,55,46,50,55,55,32,48,32,48,32,48,45,46,48,57,52,45,46,50,57,57,108,45,46,52,54,56,45,46,51,54,51,99,45,46,50,48,54,45,46,49,54,45,46,48,57,53,45,46,52,57,51,46,49,54,52,45,46,52,57,51,104,46,53,53,97,46,50,55,49,46,50,55,49,32,48,32,48,32,48,32,46,50,53,57,45,46,49,57,52,108,46,49,54,50,45,46,53,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,105,115,116,84,97,115,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,105,115,116,84,97,115,107,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,50,122,77,51,32,51,72,50,118,49,104,49,86,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,53,46,53,32,55,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,57,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,57,122,109,48,32,52,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,57,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,57,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,53,32,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,55,122,77,50,32,55,104,49,118,49,72,50,86,55,122,109,48,32,51,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,50,122,109,49,32,46,53,72,50,118,49,104,49,118,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,105,115,116,85,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,105,115,116,85,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,53,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,51,32,49,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,109,48,32,52,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,109,48,32,52,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,111,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,111,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,52,72,54,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,109,51,32,54,86,51,97,51,32,51,32,48,32,48,32,48,45,54,32,48,118,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,53,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,54,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,57,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,53,32,56,104,54,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,53,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,57,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,76,111,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,76,111,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,52,72,54,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,109,51,32,54,86,51,97,51,32,51,32,48,32,48,32,48,45,54,32,48,118,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,53,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,54,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,57,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,97,105,108,98,111,120,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,97,105,108,98,111,120,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,52,97,51,32,51,32,48,32,48,32,48,45,51,32,51,118,54,104,54,86,55,97,51,32,51,32,48,32,48,32,48,45,51,45,51,122,109,48,45,49,104,56,97,52,32,52,32,48,32,48,32,49,32,52,32,52,118,54,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,55,97,52,32,52,32,48,32,48,32,49,32,52,45,52,122,109,50,46,54,52,54,32,49,65,51,46,57,57,32,51,46,57,57,32,48,32,48,32,49,32,56,32,55,118,54,104,55,86,55,97,51,32,51,32,48,32,48,32,48,45,51,45,51,72,54,46,54,52,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,46,55,57,51,32,56,46,53,72,57,118,45,49,104,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,51,53,52,45,46,49,52,54,108,45,46,56,53,51,45,46,56,53,52,122,77,53,32,55,99,48,32,46,53,53,50,45,46,52,52,56,32,48,45,49,32,48,115,45,49,32,46,53,53,50,45,49,32,48,97,49,32,49,32,48,32,48,32,49,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,97,105,108,98,111,120,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,97,105,108,98,111,120,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,32,56,46,53,104,50,46,55,57,51,108,46,56,53,51,46,56,53,52,65,46,53,46,53,32,48,32,48,32,48,32,49,51,32,57,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,56,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,57,118,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,32,51,72,52,97,52,32,52,32,48,32,48,32,48,45,52,32,52,118,54,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,52,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,55,97,52,32,52,32,48,32,48,32,48,45,52,45,52,122,77,56,32,55,97,51,46,57,57,32,51,46,57,57,32,48,32,48,32,48,45,49,46,51,53,52,45,51,72,49,50,97,51,32,51,32,48,32,48,32,49,32,51,32,51,118,54,72,56,86,55,122,109,45,51,46,52,49,53,46,49,53,55,67,52,46,52,50,32,55,46,48,56,55,32,52,46,50,49,56,32,55,32,52,32,55,99,45,46,50,49,56,32,48,45,46,52,50,46,48,56,54,45,46,53,56,53,46,49,53,55,67,51,46,49,54,52,32,55,46,50,54,52,32,51,32,55,46,51,51,52,32,51,32,55,97,49,32,49,32,48,32,48,32,49,32,50,32,48,99,48,32,46,51,51,52,45,46,49,54,52,46,50,54,52,45,46,52,49,53,46,49,53,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,97,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,97,112,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,53,46,56,49,55,46,49,49,51,65,46,53,46,53,32,48,32,48,32,49,32,49,54,32,46,53,118,49,52,97,46,53,46,53,32,48,32,48,32,49,45,46,52,48,50,46,52,57,108,45,53,32,49,97,46,53,48,50,46,53,48,50,32,48,32,48,32,49,45,46,49,57,54,32,48,76,53,46,53,32,49,53,46,48,49,108,45,52,46,57,48,50,46,57,56,65,46,53,46,53,32,48,32,48,32,49,32,48,32,49,53,46,53,118,45,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,52,48,50,45,46,52,57,108,53,45,49,97,46,53,46,53,32,48,32,48,32,49,32,46,49,57,54,32,48,76,49,48,46,53,46,57,57,108,52,46,57,48,50,45,46,57,56,97,46,53,46,53,32,48,32,48,32,49,32,46,52,49,53,46,49,48,51,122,77,49,48,32,49,46,57,49,108,45,52,45,46,56,118,49,50,46,57,56,108,52,32,46,56,86,49,46,57,49,122,109,49,32,49,50,46,57,56,108,52,45,46,56,86,49,46,49,49,108,45,52,32,46,56,118,49,50,46,57,56,122,109,45,54,45,46,56,86,49,46,49,49,108,45,52,32,46,56,118,49,50,46,57,56,108,52,45,46,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,97,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,97,112,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,54,32,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,57,56,45,46,52,57,76,49,48,46,53,46,57,57,32,53,46,53,57,56,46,48,49,97,46,53,46,53,32,48,32,48,32,48,45,46,49,57,54,32,48,108,45,53,32,49,65,46,53,46,53,32,48,32,48,32,48,32,48,32,49,46,53,118,49,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,57,56,46,52,57,108,52,46,57,48,50,45,46,57,56,32,52,46,57,48,50,46,57,56,97,46,53,48,50,46,53,48,50,32,48,32,48,32,48,32,46,49,57,54,32,48,108,53,45,49,65,46,53,46,53,32,48,32,48,32,48,32,49,54,32,49,52,46,53,86,46,53,122,77,53,32,49,52,46,48,57,86,49,46,49,49,108,46,53,45,46,49,46,53,46,49,118,49,50,46,57,56,108,45,46,52,48,50,45,46,48,56,97,46,52,57,56,46,52,57,56,32,48,32,48,32,48,45,46,49,57,54,32,48,76,53,32,49,52,46,48,57,122,109,53,32,46,56,86,49,46,57,49,108,46,52,48,50,46,48,56,97,46,53,46,53,32,48,32,48,32,48,32,46,49,57,54,32,48,76,49,49,32,49,46,57,49,118,49,50,46,57,56,108,45,46,53,46,49,45,46,53,45,46,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,97,114,107,100,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,97,114,107,100,111,119,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,57,46,49,52,54,32,56,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,49,49,46,53,32,57,46,55,57,51,108,49,46,54,52,54,45,49,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,50,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,46,53,32,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,52,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,54,32,49,49,86,55,46,48,49,104,46,48,53,54,108,49,46,52,50,56,32,51,46,50,51,57,104,46,55,55,52,108,49,46,52,50,45,51,46,50,52,104,46,48,53,54,86,49,49,104,49,46,48,55,51,86,53,46,48,48,49,104,45,49,46,50,108,45,49,46,55,49,32,51,46,56,57,52,104,45,46,48,51,57,108,45,49,46,55,49,45,51,46,56,57,52,72,50,46,53,86,49,49,104,49,46,48,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,97,114,107,100,111,119,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,97,114,107,100,111,119,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,122,109,49,49,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,51,46,55,57,51,76,57,46,56,53,52,32,56,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,50,32,50,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,50,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,49,50,32,57,46,50,57,51,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,122,77,51,46,53,54,32,55,46,48,49,104,46,48,53,54,108,49,46,52,50,56,32,51,46,50,51,57,104,46,55,55,52,108,49,46,52,50,45,51,46,50,52,104,46,48,53,54,86,49,49,104,49,46,48,55,51,86,53,46,48,48,49,104,45,49,46,50,108,45,49,46,55,49,32,51,46,56,57,52,104,45,46,48,51,57,108,45,49,46,55,49,45,51,46,56,57,52,72,50,46,53,86,49,49,104,49,46,48,54,86,55,46,48,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,101,110,117,65,112,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,101,110,117,65,112,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,48,104,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,32,49,46,53,118,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,46,53,32,53,104,45,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,46,53,118,45,50,122,77,49,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,50,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,50,122,77,48,32,56,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,53,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,56,122,109,49,32,51,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,50,72,49,122,109,49,52,45,49,86,56,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,104,49,52,122,77,50,32,56,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,101,110,117,65,112,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,101,110,117,65,112,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,48,104,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,32,49,46,53,118,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,46,53,32,53,104,45,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,46,53,118,45,50,122,77,48,32,56,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,53,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,56,122,109,49,32,51,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,50,72,49,122,109,49,52,45,49,86,56,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,104,49,52,122,77,50,32,56,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,101,110,117,66,117,116,116,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,48,104,56,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,49,32,49,46,53,118,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,53,104,45,56,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,46,53,118,45,50,122,77,49,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,56,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,56,50,51,32,50,46,56,50,51,108,45,46,51,57,54,45,46,51,57,54,65,46,50,53,46,50,53,32,48,32,48,32,49,32,55,46,54,48,52,32,50,104,46,55,57,50,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,49,55,55,46,52,50,55,108,45,46,51,57,54,46,51,57,54,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,51,53,52,32,48,122,77,48,32,56,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,53,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,56,122,109,49,32,51,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,50,72,49,122,109,49,52,45,49,86,56,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,104,49,52,122,77,50,32,56,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,101,110,117,66,117,116,116,111,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,49,46,53,118,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,53,104,56,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,51,46,53,118,45,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,57,46,53,32,48,104,45,56,122,109,53,46,57,50,55,32,50,46,52,50,55,65,46,50,53,46,50,53,32,48,32,48,32,49,32,55,46,54,48,52,32,50,104,46,55,57,50,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,49,55,55,46,52,50,55,108,45,46,51,57,54,46,51,57,54,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,51,53,52,32,48,108,45,46,51,57,54,45,46,51,57,54,122,77,48,32,56,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,53,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,56,122,109,49,32,51,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,50,72,49,122,109,49,52,45,49,86,56,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,104,49,52,122,77,50,32,56,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,101,110,117,66,117,116,116,111,110,87,105,100,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,48,104,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,49,46,53,118,50,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,52,46,53,32,53,104,45,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,46,53,118,45,50,122,77,49,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,49,48,46,56,50,51,46,51,50,51,108,45,46,51,57,54,45,46,51,57,54,65,46,50,53,46,50,53,32,48,32,48,32,49,32,49,50,46,54,48,52,32,50,104,46,55,57,50,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,49,55,55,46,52,50,55,108,45,46,51,57,54,46,51,57,54,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,51,53,52,32,48,122,77,48,32,56,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,53,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,56,122,109,49,32,51,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,50,72,49,122,109,49,52,45,49,86,56,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,104,49,52,122,77,50,32,56,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,101,110,117,66,117,116,116,111,110,87,105,100,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,49,46,53,118,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,53,104,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,54,32,51,46,53,118,45,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,46,53,32,48,104,45,49,51,122,109,49,32,50,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,109,57,46,57,50,55,46,52,50,55,65,46,50,53,46,50,53,32,48,32,48,32,49,32,49,50,46,54,48,52,32,50,104,46,55,57,50,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,49,55,55,46,52,50,55,108,45,46,51,57,54,46,51,57,54,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,51,53,52,32,48,108,45,46,51,57,54,45,46,51,57,54,122,77,48,32,56,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,53,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,56,122,109,49,32,51,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,50,72,49,122,109,49,52,45,49,86,56,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,104,49,52,122,77,50,32,56,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,57,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,101,110,117,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,101,110,117,68,111,119,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,54,52,54,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,49,48,46,50,48,55,32,50,72,49,52,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,57,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,51,46,55,57,51,76,55,46,54,52,54,46,49,52,54,122,77,49,32,55,118,51,104,49,52,86,55,72,49,122,109,49,52,45,49,86,52,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,51,46,55,57,51,97,49,32,49,32,48,32,48,32,49,45,46,55,48,55,45,46,50,57,51,76,56,32,49,46,50,48,55,108,45,49,46,53,32,49,46,53,65,49,32,49,32,48,32,48,32,49,32,53,46,55,57,51,32,51,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,104,49,52,122,109,48,32,53,72,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,50,122,77,50,32,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,56,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,56,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,101,110,117,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,101,110,117,85,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,54,52,54,32,49,53,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,76,49,48,46,50,48,55,32,49,52,72,49,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,57,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,51,46,55,57,51,108,49,46,56,53,51,32,49,46,56,53,52,122,77,49,32,57,86,54,104,49,52,118,51,72,49,122,109,49,52,32,49,118,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,51,46,55,57,51,97,49,32,49,32,48,32,48,32,48,45,46,55,48,55,46,50,57,51,108,45,49,46,53,32,49,46,53,45,49,46,53,45,49,46,53,65,49,32,49,32,48,32,48,32,48,32,53,46,55,57,51,32,49,51,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,50,104,49,52,122,109,48,45,53,72,49,86,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,122,77,50,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,56,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,56,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,109,48,45,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,109,48,45,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,54,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,105,99,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,105,99,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,46,53,32,54,46,53,65,46,53,46,53,32,48,32,48,32,49,32,52,32,55,118,49,97,52,32,52,32,48,32,48,32,48,32,56,32,48,86,55,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,49,97,53,32,53,32,48,32,48,32,49,45,52,46,53,32,52,46,57,55,53,86,49,53,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,51,118,45,50,46,48,50,53,65,53,32,53,32,48,32,48,32,49,32,51,32,56,86,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,32,56,86,51,97,50,32,50,32,48,32,49,32,48,45,52,32,48,118,53,97,50,32,50,32,48,32,49,32,48,32,52,32,48,122,77,56,32,48,97,51,32,51,32,48,32,48,32,48,45,51,32,51,118,53,97,51,32,51,32,48,32,48,32,48,32,54,32,48,86,51,97,51,32,51,32,48,32,48,32,48,45,51,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,105,99,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,105,99,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,51,97,51,32,51,32,48,32,48,32,49,32,54,32,48,118,53,97,51,32,51,32,48,32,48,32,49,45,54,32,48,86,51,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,46,53,32,54,46,53,65,46,53,46,53,32,48,32,48,32,49,32,52,32,55,118,49,97,52,32,52,32,48,32,48,32,48,32,56,32,48,86,55,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,49,97,53,32,53,32,48,32,48,32,49,45,52,46,53,32,52,46,57,55,53,86,49,53,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,51,118,45,50,46,48,50,53,65,53,32,53,32,48,32,48,32,49,32,51,32,56,86,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,105,99,77,117,116,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,105,99,77,117,116,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,50,46,55,51,52,32,57,46,54,49,51,65,52,46,57,57,53,32,52,46,57,57,53,32,48,32,48,32,48,32,49,51,32,56,86,55,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,49,99,48,32,46,50,55,52,45,46,48,50,55,46,53,52,45,46,48,56,46,55,57,57,108,46,56,49,52,46,56,49,52,122,109,45,50,46,53,50,50,32,49,46,55,50,65,52,32,52,32,48,32,48,32,49,32,52,32,56,86,55,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,49,97,53,32,53,32,48,32,48,32,48,32,52,46,53,32,52,46,57,55,53,86,49,53,104,45,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,55,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,51,118,45,50,46,48,50,53,97,52,46,57,55,51,32,52,46,57,55,51,32,48,32,48,32,48,32,50,46,52,51,45,46,57,50,51,108,45,46,55,49,56,45,46,55,49,57,122,77,49,49,32,55,46,56,56,86,51,97,51,32,51,32,48,32,48,32,48,45,53,46,56,52,50,45,46,57,54,51,108,46,56,52,53,46,56,52,53,65,50,32,50,32,48,32,48,32,49,32,49,48,32,51,118,51,46,56,55,57,108,49,32,49,122,77,56,46,55,51,56,32,57,46,56,54,108,46,55,52,56,46,55,52,56,65,51,32,51,32,48,32,48,32,49,32,53,32,56,86,54,46,49,50,49,108,49,32,49,86,56,97,50,32,50,32,48,32,48,32,48,32,50,46,55,51,56,32,49,46,56,54,122,109,52,46,57,48,56,32,51,46,52,57,52,108,45,49,50,45,49,50,32,46,55,48,56,45,46,55,48,56,32,49,50,32,49,50,45,46,55,48,56,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,105,99,77,117,116,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,105,99,77,117,116,101,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,50,46,55,51,52,32,57,46,54,49,51,65,52,46,57,57,53,32,52,46,57,57,53,32,48,32,48,32,48,32,49,51,32,56,86,55,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,49,99,48,32,46,50,55,52,45,46,48,50,55,46,53,52,45,46,48,56,46,55,57,57,108,46,56,49,52,46,56,49,52,122,109,45,50,46,53,50,50,32,49,46,55,50,65,52,32,52,32,48,32,48,32,49,32,52,32,56,86,55,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,49,97,53,32,53,32,48,32,48,32,48,32,52,46,53,32,52,46,57,55,53,86,49,53,104,45,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,55,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,51,118,45,50,46,48,50,53,97,52,46,57,55,51,32,52,46,57,55,51,32,48,32,48,32,48,32,50,46,52,51,45,46,57,50,51,108,45,46,55,49,56,45,46,55,49,57,122,77,49,49,32,55,46,56,56,86,51,97,51,32,51,32,48,32,48,32,48,45,53,46,56,52,50,45,46,57,54,51,76,49,49,32,55,46,56,55,57,122,77,53,32,54,46,49,50,108,52,46,52,56,54,32,52,46,52,56,54,65,51,32,51,32,48,32,48,32,49,32,53,32,56,86,54,46,49,50,49,122,109,56,46,54,52,54,32,55,46,50,51,52,108,45,49,50,45,49,50,32,46,55,48,56,45,46,55,48,56,32,49,50,32,49,50,45,46,55,48,56,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,105,110,101,99,97,114,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,105,110,101,99,97,114,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,49,53,97,49,32,49,32,48,32,49,32,49,32,48,45,50,32,49,32,49,32,48,32,48,32,49,32,48,32,50,122,109,48,32,49,97,50,32,50,32,48,32,49,32,48,32,48,45,52,32,50,32,50,32,48,32,48,32,48,32,48,32,52,122,109,56,45,49,97,49,32,49,32,48,32,49,32,49,32,48,45,50,32,49,32,49,32,48,32,48,32,49,32,48,32,50,122,109,48,32,49,97,50,32,50,32,48,32,49,32,48,32,48,45,52,32,50,32,50,32,48,32,48,32,48,32,48,32,52,122,77,46,49,49,53,32,51,46,49,56,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,51,104,49,53,97,46,53,46,53,32,48,32,48,32,49,32,46,52,57,49,46,53,57,50,108,45,49,46,53,32,56,65,46,53,46,53,32,48,32,48,32,49,32,49,52,32,49,50,72,50,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,49,45,46,52,48,56,108,45,49,46,53,45,56,97,46,53,46,53,32,48,32,48,32,49,32,46,49,48,54,45,46,52,49,49,122,109,46,57,56,55,46,56,50,108,49,46,51,49,51,32,55,104,49,49,46,49,55,108,49,46,51,49,51,45,55,72,49,46,49,48,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,105,110,101,99,97,114,116,76,111,97,100,101,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,105,110,101,99,97,114,116,76,111,97,100,101,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,49,53,97,49,32,49,32,48,32,49,32,49,32,48,45,50,32,49,32,49,32,48,32,48,32,49,32,48,32,50,122,109,48,32,49,97,50,32,50,32,48,32,49,32,48,32,48,45,52,32,50,32,50,32,48,32,48,32,48,32,48,32,52,122,109,56,45,49,97,49,32,49,32,48,32,49,32,49,32,48,45,50,32,49,32,49,32,48,32,48,32,49,32,48,32,50,122,109,48,32,49,97,50,32,50,32,48,32,49,32,48,32,48,45,52,32,50,32,50,32,48,32,48,32,48,32,48,32,52,122,77,46,49,49,53,32,51,46,49,56,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,51,104,49,53,97,46,53,46,53,32,48,32,48,32,49,32,46,52,57,49,46,53,57,50,108,45,49,46,53,32,56,65,46,53,46,53,32,48,32,48,32,49,32,49,52,32,49,50,72,50,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,49,45,46,52,48,56,108,45,49,46,53,45,56,97,46,53,46,53,32,48,32,48,32,49,32,46,49,48,54,45,46,52,49,49,122,109,46,57,56,55,46,56,50,108,49,46,51,49,51,32,55,104,49,49,46,49,55,108,49,46,51,49,51,45,55,72,49,46,49,48,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,32,49,97,50,46,52,57,56,32,50,46,52,57,56,32,48,32,48,32,49,32,52,32,48,99,46,56,49,56,32,48,32,49,46,53,52,53,46,51,57,52,32,50,32,49,32,46,54,55,32,48,32,49,46,53,53,50,46,53,55,32,50,32,49,104,45,50,99,45,46,51,49,52,32,48,45,46,54,49,49,45,46,49,53,45,46,56,45,46,52,45,46,50,55,52,45,46,51,54,53,45,46,55,49,45,46,54,45,49,46,50,45,46,54,45,46,51,49,52,32,48,45,46,54,49,49,45,46,49,53,45,46,56,45,46,52,97,49,46,52,57,55,32,49,46,52,57,55,32,48,32,48,32,48,45,50,46,52,32,48,99,45,46,49,56,57,46,50,53,45,46,52,56,54,46,52,45,46,56,46,52,45,46,53,48,55,32,48,45,46,57,53,53,46,50,53,49,45,49,46,50,50,56,46,54,51,56,45,46,48,57,46,49,51,45,46,49,57,52,46,50,53,45,46,51,48,56,46,51,54,50,72,51,99,46,49,51,45,46,49,52,55,46,52,48,49,45,46,52,51,50,46,53,54,50,45,46,53,52,53,97,49,46,54,51,32,49,46,54,51,32,48,32,48,32,48,32,46,51,57,51,45,46,51,57,51,65,50,46,52,57,56,32,50,46,52,57,56,32,48,32,48,32,49,32,54,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,111,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,111,111,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,52,46,53,51,32,49,48,46,53,51,97,55,32,55,32,48,32,48,32,49,45,57,46,48,53,56,45,57,46,48,53,56,65,55,46,48,48,51,32,55,46,48,48,51,32,48,32,48,32,48,32,56,32,49,53,97,55,46,48,48,50,32,55,46,48,48,50,32,48,32,48,32,48,32,54,46,53,51,45,52,46,52,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,111,117,115,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,111,117,115,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,50,65,46,53,46,53,32,48,32,48,32,49,32,56,32,51,122,109,52,32,56,97,52,32,52,32,48,32,48,32,49,45,56,32,48,86,53,97,52,32,52,32,48,32,49,32,49,32,56,32,48,118,54,122,77,56,32,48,97,53,32,53,32,48,32,48,32,48,45,53,32,53,118,54,97,53,32,53,32,48,32,48,32,48,32,49,48,32,48,86,53,97,53,32,53,32,48,32,48,32,48,45,53,45,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,111,117,115,101,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,111,117,115,101,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,53,46,49,56,56,67,51,32,50,46,51,52,49,32,53,46,50,50,32,48,32,56,32,48,115,53,32,50,46,51,52,50,32,53,32,53,46,49,56,56,118,53,46,54,50,53,67,49,51,32,49,51,46,54,53,56,32,49,48,46,55,56,32,49,54,32,56,32,49,54,115,45,53,45,50,46,51,52,50,45,53,45,53,46,49,56,56,86,53,46,49,56,57,122,109,52,46,53,45,52,46,49,53,53,67,53,46,53,52,49,32,49,46,50,56,57,32,52,32,51,46,48,51,53,32,52,32,53,46,49,56,56,86,53,46,53,104,51,46,53,86,49,46,48,51,51,122,109,49,32,48,86,53,46,53,72,49,50,118,45,46,51,49,51,99,48,45,50,46,49,53,50,45,49,46,53,52,49,45,51,46,56,57,56,45,51,46,53,45,52,46,49,53,52,122,77,49,50,32,54,46,53,72,52,118,52,46,51,49,51,67,52,32,49,51,46,49,52,53,32,53,46,56,49,32,49,53,32,56,32,49,53,115,52,45,49,46,56,53,53,32,52,45,52,46,49,56,56,86,54,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,111,117,115,101,51,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,111,117,115,101,51,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,48,99,45,46,53,57,51,32,48,45,49,46,49,48,52,46,49,53,55,45,49,46,53,50,55,46,52,54,51,45,46,52,49,56,46,51,48,50,45,46,55,49,55,46,55,50,54,45,46,57,51,32,49,46,50,48,56,67,52,46,49,50,51,32,50,46,54,49,57,32,52,32,51,46,56,55,57,32,52,32,53,46,49,56,55,118,46,53,48,52,76,51,46,51,56,50,32,54,65,50,46,53,32,50,46,53,32,48,32,48,32,48,32,50,32,56,46,50,51,54,118,50,46,53,55,54,67,50,32,49,51,46,54,53,57,32,52,46,50,50,32,49,54,32,55,32,49,54,104,50,99,50,46,55,56,32,48,32,53,45,50,46,51,52,50,32,53,45,53,46,49,56,56,86,55,46,53,49,97,46,55,49,46,55,49,32,48,32,48,32,48,32,48,45,46,48,50,86,53,46,49,56,54,99,48,45,49,46,49,51,45,46,50,55,50,45,50,46,48,52,52,45,46,55,52,56,45,50,46,55,55,50,45,46,52,55,52,45,46,55,50,54,45,49,46,49,51,45,49,46,50,51,53,45,49,46,56,52,57,45,49,46,53,57,67,57,46,57,56,49,46,49,50,51,32,56,46,50,54,32,48,32,55,32,48,122,109,50,46,53,32,54,46,48,57,57,86,49,46,50,51,50,99,46,53,49,46,49,49,32,49,46,48,48,56,46,50,54,55,32,49,46,52,54,46,52,57,46,53,57,54,46,50,57,51,32,49,46,48,57,57,46,54,57,52,32,49,46,52,53,53,32,49,46,50,52,46,51,53,53,46,53,52,51,46,53,56,53,32,49,46,50,54,50,46,53,56,53,32,50,46,50,50,53,118,49,46,54,57,108,45,51,46,53,45,46,55,55,56,122,109,45,49,45,53,46,48,50,53,118,52,46,56,48,51,76,53,32,53,46,48,57,57,99,46,48,48,54,45,49,46,50,52,50,46,49,51,52,45,50,46,50,57,51,46,52,53,55,45,51,46,48,50,52,46,49,54,50,45,46,51,54,54,46,51,54,51,45,46,54,51,46,54,48,50,45,46,56,48,49,67,54,46,50,57,50,32,49,46,49,48,53,32,54,46,53,57,51,32,49,32,55,32,49,99,46,52,54,56,32,48,32,46,57,56,46,48,49,56,32,49,46,53,46,48,55,52,122,77,53,32,54,46,49,50,52,76,49,51,32,55,46,57,118,50,46,57,49,50,67,49,51,32,49,51,46,49,52,53,32,49,49,46,49,57,32,49,53,32,57,32,49,53,72,55,99,45,50,46,49,57,32,48,45,52,45,49,46,56,53,53,45,52,45,52,46,49,56,56,86,56,46,50,51,54,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,46,56,51,45,49,46,51,52,50,108,46,49,56,55,45,46,48,57,51,99,46,48,49,46,50,54,53,46,48,50,52,46,53,56,46,48,52,55,46,57,50,46,48,54,50,46,57,51,56,46,49,57,32,50,46,49,50,46,52,54,50,32,50,46,57,51,55,97,46,53,46,53,32,48,32,49,32,48,32,46,57,52,56,45,46,51,49,54,99,45,46,50,50,55,45,46,54,56,51,45,46,51,53,45,49,46,55,53,45,46,52,49,51,45,50,46,54,56,56,97,50,57,46,49,55,32,50,57,46,49,55,32,48,32,48,32,49,45,46,48,54,45,49,46,53,50,56,118,45,46,48,48,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,117,115,105,99,78,111,116,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,117,115,105,99,78,111,116,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,32,49,51,99,48,32,49,46,49,48,53,45,49,46,49,50,32,50,45,50,46,53,32,50,83,52,32,49,52,46,49,48,53,32,52,32,49,51,115,49,46,49,50,45,50,32,50,46,53,45,50,32,50,46,53,46,56,57,53,32,50,46,53,32,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,57,32,51,118,49,48,72,56,86,51,104,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,50,46,56,50,97,49,32,49,32,48,32,48,32,49,32,46,56,48,52,45,46,57,56,108,51,45,46,54,65,49,32,49,32,48,32,48,32,49,32,49,51,32,50,46,50,50,86,52,76,56,32,53,86,50,46,56,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,117,115,105,99,78,111,116,101,66,101,97,109,101,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,117,115,105,99,78,111,116,101,66,101,97,109,101,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,49,51,99,48,32,49,46,49,48,53,45,49,46,49,50,32,50,45,50,46,53,32,50,83,49,32,49,52,46,49,48,53,32,49,32,49,51,99,48,45,49,46,49,48,52,32,49,46,49,50,45,50,32,50,46,53,45,50,115,50,46,53,46,56,57,54,32,50,46,53,32,50,122,109,57,45,50,99,48,32,49,46,49,48,53,45,49,46,49,50,32,50,45,50,46,53,32,50,115,45,50,46,53,45,46,56,57,53,45,50,46,53,45,50,32,49,46,49,50,45,50,32,50,46,53,45,50,32,50,46,53,46,56,57,53,32,50,46,53,32,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,52,32,49,49,86,50,104,49,118,57,104,45,49,122,77,54,32,51,118,49,48,72,53,86,51,104,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,32,50,46,57,48,53,97,49,32,49,32,48,32,48,32,49,32,46,57,45,46,57,57,53,108,56,45,46,56,97,49,32,49,32,48,32,48,32,49,32,49,46,49,46,57,57,53,86,51,76,53,32,52,86,50,46,57,48,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,117,115,105,99,78,111,116,101,76,105,115,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,117,115,105,99,78,111,116,101,76,105,115,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,49,51,99,48,32,49,46,49,48,53,45,49,46,49,50,32,50,45,50,46,53,32,50,83,55,32,49,52,46,49,48,53,32,55,32,49,51,115,49,46,49,50,45,50,32,50,46,53,45,50,32,50,46,53,46,56,57,53,32,50,46,53,32,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,50,32,51,118,49,48,104,45,49,86,51,104,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,32,50,46,56,50,97,49,32,49,32,48,32,48,32,49,32,46,56,48,52,45,46,57,56,108,51,45,46,54,65,49,32,49,32,48,32,48,32,49,32,49,54,32,50,46,50,50,86,52,108,45,53,32,49,86,50,46,56,50,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,48,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,72,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,52,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,55,72,56,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,52,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,51,72,56,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,117,115,105,99,80,108,97,121,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,54,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,122,109,49,32,48,118,51,104,54,86,51,72,53,122,109,51,32,57,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,32,49,49,97,51,32,51,32,48,32,49,32,49,45,54,32,48,32,51,32,51,32,48,32,48,32,49,32,54,32,48,122,109,45,51,32,50,97,50,32,50,32,48,32,49,32,48,32,48,45,52,32,50,32,50,32,48,32,48,32,48,32,48,32,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,77,117,115,105,99,80,108,97,121,101,114,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,50,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,49,32,50,104,54,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,46,53,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,109,51,32,49,50,97,51,32,51,32,48,32,49,32,49,32,48,45,54,32,51,32,51,32,48,32,48,32,49,32,48,32,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,78,101,119,115,112,97,112,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,78,101,119,115,112,97,112,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,104,49,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,52,32,50,46,53,118,49,48,46,53,50,56,99,48,32,46,51,45,46,48,53,46,54,53,52,45,46,50,51,56,46,57,55,50,104,46,55,51,56,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,57,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,57,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,72,49,46,52,57,55,65,49,46,52,57,55,32,49,46,52,57,55,32,48,32,48,32,49,32,48,32,49,51,46,53,118,45,49,49,122,77,49,50,32,49,52,99,46,51,55,32,48,32,46,54,53,52,45,46,50,49,49,46,56,53,51,45,46,52,52,49,46,48,57,50,45,46,49,48,54,46,49,52,55,45,46,50,55,57,46,49,52,55,45,46,53,51,49,86,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,49,99,48,32,46,50,55,56,46,50,50,51,46,53,46,52,57,55,46,53,72,49,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,51,104,49,48,118,50,72,50,86,51,122,109,48,32,51,104,52,118,51,72,50,86,54,122,109,48,32,52,104,52,118,49,72,50,118,45,49,122,109,48,32,50,104,52,118,49,72,50,118,45,49,122,109,53,45,54,104,50,118,49,72,55,86,54,122,109,51,32,48,104,50,118,49,104,45,50,86,54,122,77,55,32,56,104,50,118,49,72,55,86,56,122,109,51,32,48,104,50,118,49,104,45,50,86,56,122,109,45,51,32,50,104,50,118,49,72,55,118,45,49,122,109,51,32,48,104,50,118,49,104,45,50,118,45,49,122,109,45,51,32,50,104,50,118,49,72,55,118,45,49,122,109,51,32,48,104,50,118,49,104,45,50,118,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,78,111,100,101,77,105,110,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,78,111,100,101,77,105,110,117,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,32,52,97,52,32,52,32,48,32,49,32,48,32,48,32,56,32,52,32,52,32,48,32,48,32,48,32,48,45,56,122,77,54,46,48,50,53,32,55,46,53,97,53,32,53,32,48,32,49,32,49,32,48,32,49,72,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,46,53,32,49,48,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,56,46,53,118,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,54,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,32,55,46,53,104,50,46,48,50,53,122,77,49,46,53,32,55,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,77,56,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,65,46,53,46,53,32,48,32,48,32,49,32,56,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,78,111,100,101,77,105,110,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,78,111,100,101,77,105,110,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,54,32,56,97,53,32,53,32,48,32,48,32,49,45,57,46,57,55,53,46,53,72,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,46,53,32,49,48,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,56,46,53,118,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,54,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,32,55,46,53,104,50,46,48,50,53,65,53,32,53,32,48,32,48,32,49,32,49,54,32,56,122,109,45,50,32,48,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,65,46,53,46,53,32,48,32,48,32,48,32,49,52,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,78,111,100,101,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,78,111,100,101,80,108,117,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,32,52,97,52,32,52,32,48,32,49,32,48,32,48,32,56,32,52,32,52,32,48,32,48,32,48,32,48,45,56,122,77,54,46,48,50,53,32,55,46,53,97,53,32,53,32,48,32,49,32,49,32,48,32,49,72,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,46,53,32,49,48,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,56,46,53,118,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,54,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,32,55,46,53,104,50,46,48,50,53,122,77,49,49,32,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,118,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,50,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,118,45,50,65,46,53,46,53,32,48,32,48,32,49,32,49,49,32,53,122,77,49,46,53,32,55,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,78,111,100,101,80,108,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,78,111,100,101,80,108,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,49,51,97,53,32,53,32,48,32,49,32,48,45,52,46,57,55,53,45,53,46,53,72,52,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,50,46,53,32,54,104,45,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,55,46,53,118,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,48,104,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,52,32,56,46,53,104,50,46,48,50,53,65,53,32,53,32,48,32,48,32,48,32,49,49,32,49,51,122,109,46,53,45,55,46,53,118,50,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,118,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,50,104,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,50,118,45,50,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,78,117,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,78,117,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,52,50,32,50,108,51,46,52,50,56,32,54,45,51,46,52,50,56,32,54,72,52,46,53,56,76,49,46,49,53,50,32,56,32,52,46,53,56,32,50,104,54,46,56,52,122,77,52,46,53,56,32,49,97,49,32,49,32,48,32,48,32,48,45,46,56,54,56,46,53,48,52,108,45,51,46,52,50,57,32,54,97,49,32,49,32,48,32,48,32,48,32,48,32,46,57,57,50,108,51,46,52,50,57,32,54,65,49,32,49,32,48,32,48,32,48,32,52,46,53,56,32,49,53,104,54,46,56,52,97,49,32,49,32,48,32,48,32,48,32,46,56,54,56,45,46,53,48,52,108,51,46,52,50,56,45,54,97,49,32,49,32,48,32,48,32,48,32,48,45,46,57,57,50,108,45,51,46,52,50,56,45,54,65,49,32,49,32,48,32,48,32,48,32,49,49,46,52,50,32,49,72,52,46,53,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,46,56,52,56,32,53,46,57,51,51,97,50,46,53,32,50,46,53,32,48,32,49,32,48,32,50,46,53,32,52,46,51,51,32,50,46,53,32,50,46,53,32,48,32,48,32,48,45,50,46,53,45,52,46,51,51,122,77,53,46,48,54,55,32,57,46,56,52,56,97,51,46,53,32,51,46,53,32,48,32,49,32,49,32,54,46,48,54,50,45,51,46,53,32,51,46,53,32,51,46,53,32,48,32,48,32,49,45,54,46,48,54,50,32,51,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,78,117,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,78,117,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,56,32,49,97,49,32,49,32,48,32,48,32,48,45,46,56,54,56,46,53,48,52,108,45,51,46,52,50,57,32,54,97,49,32,49,32,48,32,48,32,48,32,48,32,46,57,57,50,108,51,46,52,50,57,32,54,65,49,32,49,32,48,32,48,32,48,32,52,46,53,56,32,49,53,104,54,46,56,52,97,49,32,49,32,48,32,48,32,48,32,46,56,54,56,45,46,53,48,52,108,51,46,52,50,56,45,54,97,49,32,49,32,48,32,48,32,48,32,48,45,46,57,57,50,108,45,51,46,52,50,56,45,54,65,49,32,49,32,48,32,48,32,48,32,49,49,46,52,50,32,49,72,52,46,53,56,122,109,53,46,48,49,56,32,57,46,54,57,54,97,51,32,51,32,48,32,49,32,49,45,51,45,53,46,49,57,54,32,51,32,51,32,48,32,48,32,49,32,51,32,53,46,49,57,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,79,99,116,97,103,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,79,99,116,97,103,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,52,46,49,52,54,65,46,53,46,53,32,48,32,48,32,49,32,52,46,56,57,51,32,48,104,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,51,53,51,46,49,52,54,108,52,46,51,57,52,32,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,49,32,46,49,52,54,46,51,53,51,118,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,49,45,46,49,52,54,46,51,53,51,108,45,52,46,51,57,52,32,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,49,45,46,51,53,51,46,49,52,54,72,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,49,45,46,51,53,51,45,46,49,52,54,76,46,49,52,54,32,49,49,46,52,54,65,46,53,46,53,32,48,32,48,32,49,32,48,32,49,49,46,49,48,55,86,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,49,32,46,49,52,54,45,46,51,53,51,76,52,46,53,52,46,49,52,54,122,77,53,46,49,32,49,76,49,32,53,46,49,118,53,46,56,76,53,46,49,32,49,53,104,53,46,56,108,52,46,49,45,52,46,49,86,53,46,49,76,49,48,46,57,32,49,72,53,46,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,79,99,116,97,103,111,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,79,99,116,97,103,111,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,49,48,55,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,51,53,51,46,49,52,54,108,52,46,51,57,52,32,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,49,32,46,49,52,54,46,51,53,51,118,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,49,45,46,49,52,54,46,51,53,51,108,45,52,46,51,57,52,32,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,49,45,46,51,53,51,46,49,52,54,72,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,49,45,46,51,53,51,45,46,49,52,54,76,46,49,52,54,32,49,49,46,52,54,65,46,53,46,53,32,48,32,48,32,49,32,48,32,49,49,46,49,48,55,86,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,49,32,46,49,52,54,45,46,51,53,51,76,52,46,53,52,46,49,52,54,65,46,53,46,53,32,48,32,48,32,49,32,52,46,56,57,51,32,48,104,54,46,50,49,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,79,99,116,97,103,111,110,72,97,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,79,99,116,97,103,111,110,72,97,108,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,52,46,49,52,54,65,46,53,46,53,32,48,32,48,32,49,32,52,46,56,57,51,32,48,104,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,51,53,51,46,49,52,54,108,52,46,51,57,52,32,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,49,32,46,49,52,54,46,51,53,51,118,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,49,45,46,49,52,54,46,51,53,51,108,45,52,46,51,57,52,32,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,49,45,46,51,53,51,46,49,52,54,72,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,49,45,46,51,53,51,45,46,49,52,54,76,46,49,52,54,32,49,49,46,52,54,65,46,53,46,53,32,48,32,48,32,49,32,48,32,49,49,46,49,48,55,86,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,49,32,46,49,52,54,45,46,51,53,51,76,52,46,53,52,46,49,52,54,122,77,56,32,49,53,104,50,46,57,108,52,46,49,45,52,46,49,86,53,46,49,76,49,48,46,57,32,49,72,56,118,49,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,79,112,116,105,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,79,112,116,105,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,46,55,57,55,97,46,53,46,53,32,48,32,48,32,49,32,46,52,51,57,46,50,54,76,49,49,32,49,51,104,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,46,55,57,55,97,46,53,46,53,32,48,32,48,32,49,45,46,52,51,57,45,46,50,54,76,53,32,51,72,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,49,48,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,79,117,116,108,101,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,79,117,116,108,101,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,51,52,32,50,46,57,57,52,99,46,50,55,53,45,46,51,51,56,46,54,56,45,46,52,57,52,32,49,46,48,55,52,45,46,52,57,52,104,55,46,49,55,50,99,46,51,57,51,32,48,32,46,55,57,56,46,49,53,54,32,49,46,48,55,52,46,52,57,52,46,53,55,56,46,55,48,56,32,49,46,56,52,32,50,46,53,51,52,32,49,46,56,52,32,53,46,48,48,54,32,48,32,50,46,52,55,50,45,49,46,50,54,50,32,52,46,50,57,55,45,49,46,56,52,32,53,46,48,48,54,45,46,50,55,54,46,51,51,56,45,46,54,56,46,52,57,52,45,49,46,48,55,52,46,52,57,52,72,52,46,52,49,52,99,45,46,51,57,52,32,48,45,46,55,57,57,45,46,49,53,54,45,49,46,48,55,52,45,46,52,57,52,67,50,46,55,54,50,32,49,50,46,50,57,55,32,49,46,53,32,49,48,46,52,55,50,32,49,46,53,32,56,99,48,45,50,46,52,55,50,32,49,46,50,54,50,45,52,46,50,57,55,32,49,46,56,52,45,53,46,48,48,54,122,109,49,46,48,55,52,46,53,48,54,97,46,51,55,54,46,51,55,54,32,48,32,48,32,48,45,46,50,57,57,46,49,50,54,67,51,46,53,57,57,32,52,46,50,53,57,32,50,46,53,32,53,46,56,54,51,32,50,46,53,32,56,99,48,32,50,46,49,51,55,32,49,46,48,57,57,32,51,46,55,52,32,49,46,54,49,53,32,52,46,51,55,52,46,48,54,46,48,55,51,46,49,54,51,46,49,50,54,46,51,46,49,50,54,104,55,46,49,55,99,46,49,51,55,32,48,32,46,50,52,45,46,48,53,51,46,51,45,46,49,50,54,46,53,49,54,45,46,54,51,51,32,49,46,54,49,53,45,50,46,50,51,55,32,49,46,54,49,53,45,52,46,51,55,52,32,48,45,50,46,49,51,55,45,49,46,48,57,57,45,51,46,55,52,45,49,46,54,49,53,45,52,46,51,55,52,97,46,51,55,54,46,51,55,54,32,48,32,48,32,48,45,46,51,45,46,49,50,54,104,45,55,46,49,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,32,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,52,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,55,32,49,48,118,49,104,50,118,45,49,97,49,32,49,32,48,32,48,32,48,45,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,112,101,114,99,108,105,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,112,101,114,99,108,105,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,32,51,97,50,46,53,32,50,46,53,32,48,32,48,32,49,32,53,32,48,118,57,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,51,32,48,86,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,55,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,51,97,49,46,53,32,49,46,53,32,48,32,49,32,48,45,51,32,48,118,57,97,50,46,53,32,50,46,53,32,48,32,48,32,48,32,53,32,48,86,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,55,97,51,46,53,32,51,46,53,32,48,32,49,32,49,45,55,32,48,86,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,114,97,103,114,97,112,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,114,97,103,114,97,112,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,53,32,49,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,50,72,57,118,49,50,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,57,72,55,97,52,32,52,32,48,32,49,32,49,32,48,45,56,104,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,49,118,49,50,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,116,99,104,67,104,101,99,107,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,51,53,52,32,54,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,32,56,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,50,55,51,32,50,46,53,49,51,108,45,46,57,50,49,45,46,57,52,52,46,55,49,53,45,46,54,57,56,46,54,50,50,46,54,51,55,46,56,57,45,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,50,46,57,50,52,32,50,46,57,50,52,108,45,46,48,49,46,56,57,46,54,51,54,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,48,32,52,46,49,51,52,108,45,46,54,51,55,46,54,50,50,46,48,49,49,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,50,46,57,50,52,32,50,46,57,50,52,108,45,46,56,57,45,46,48,49,45,46,54,50,50,46,54,51,54,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,52,46,49,51,52,32,48,108,45,46,54,50,50,45,46,54,51,55,45,46,56,57,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,50,46,57,50,52,45,50,46,57,50,52,108,46,48,49,45,46,56,57,45,46,54,51,54,45,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,48,45,52,46,49,51,52,108,46,54,51,55,45,46,54,50,50,45,46,48,49,49,45,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,50,46,57,50,52,45,50,46,57,50,52,108,46,56,57,46,48,49,46,54,50,50,45,46,54,51,54,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,52,46,49,51,52,32,48,108,45,46,55,49,53,46,54,57,56,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,45,50,46,55,48,52,32,48,108,45,46,57,50,46,57,52,52,45,49,46,51,50,45,46,48,49,54,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,45,49,46,57,49,49,32,49,46,57,49,50,108,46,48,49,54,32,49,46,51,49,56,45,46,57,52,52,46,57,50,49,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,48,32,50,46,55,48,52,108,46,57,52,52,46,57,50,45,46,48,49,54,32,49,46,51,50,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,49,46,57,49,50,32,49,46,57,49,49,108,49,46,51,49,56,45,46,48,49,54,46,57,50,49,46,57,52,52,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,50,46,55,48,52,32,48,108,46,57,50,45,46,57,52,52,32,49,46,51,50,46,48,49,54,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,49,46,57,49,49,45,49,46,57,49,50,108,45,46,48,49,54,45,49,46,51,49,56,46,57,52,52,45,46,57,50,49,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,48,45,50,46,55,48,52,108,45,46,57,52,52,45,46,57,50,46,48,49,54,45,49,46,51,50,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,45,49,46,57,49,50,45,49,46,57,49,49,108,45,49,46,51,49,56,46,48,49,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,116,99,104,67,104,101,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,48,54,55,46,56,55,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,45,52,46,49,51,52,32,48,108,45,46,54,50,50,46,54,51,56,45,46,56,57,45,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,45,50,46,57,50,52,32,50,46,57,50,52,108,46,48,49,46,56,57,45,46,54,51,54,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,48,32,52,46,49,51,52,108,46,54,51,55,46,54,50,50,45,46,48,49,49,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,50,46,57,50,52,32,50,46,57,50,52,108,46,56,57,45,46,48,49,46,54,50,50,46,54,51,54,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,52,46,49,51,52,32,48,108,46,54,50,50,45,46,54,51,55,46,56,57,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,50,46,57,50,52,45,50,46,57,50,52,108,45,46,48,49,45,46,56,57,46,54,51,54,45,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,48,45,52,46,49,51,52,108,45,46,54,51,55,45,46,54,50,50,46,48,49,49,45,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,45,50,46,57,50,52,45,50,46,57,50,52,108,45,46,56,57,46,48,49,45,46,54,50,50,45,46,54,51,54,122,109,46,50,56,55,32,53,46,57,56,52,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,32,56,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,48,48,50,32,49,49,97,49,32,49,32,48,32,49,32,49,32,50,32,48,32,49,32,49,32,48,32,48,32,49,45,50,32,48,122,77,55,46,49,32,52,46,57,57,53,97,46,57,48,53,46,57,48,53,32,48,32,49,32,49,32,49,46,56,32,48,108,45,46,51,53,32,51,46,53,48,55,97,46,53,53,50,46,53,53,50,32,48,32,48,32,49,45,49,46,49,32,48,76,55,46,49,32,52,46,57,57,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,50,55,51,32,50,46,53,49,51,108,45,46,57,50,49,45,46,57,52,52,46,55,49,53,45,46,54,57,56,46,54,50,50,46,54,51,55,46,56,57,45,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,50,46,57,50,52,32,50,46,57,50,52,108,45,46,48,49,46,56,57,46,54,51,54,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,48,32,52,46,49,51,52,108,45,46,54,51,55,46,54,50,50,46,48,49,49,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,50,46,57,50,52,32,50,46,57,50,52,108,45,46,56,57,45,46,48,49,45,46,54,50,50,46,54,51,54,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,52,46,49,51,52,32,48,108,45,46,54,50,50,45,46,54,51,55,45,46,56,57,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,50,46,57,50,52,45,50,46,57,50,52,108,46,48,49,45,46,56,57,45,46,54,51,54,45,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,48,45,52,46,49,51,52,108,46,54,51,55,45,46,54,50,50,45,46,48,49,49,45,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,50,46,57,50,52,45,50,46,57,50,52,108,46,56,57,46,48,49,46,54,50,50,45,46,54,51,54,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,52,46,49,51,52,32,48,108,45,46,55,49,53,46,54,57,56,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,45,50,46,55,48,52,32,48,108,45,46,57,50,46,57,52,52,45,49,46,51,50,45,46,48,49,54,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,45,49,46,57,49,49,32,49,46,57,49,50,108,46,48,49,54,32,49,46,51,49,56,45,46,57,52,52,46,57,50,49,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,48,32,50,46,55,48,52,108,46,57,52,52,46,57,50,45,46,48,49,54,32,49,46,51,50,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,49,46,57,49,50,32,49,46,57,49,49,108,49,46,51,49,56,45,46,48,49,54,46,57,50,49,46,57,52,52,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,50,46,55,48,52,32,48,108,46,57,50,45,46,57,52,52,32,49,46,51,50,46,48,49,54,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,49,46,57,49,49,45,49,46,57,49,50,108,45,46,48,49,54,45,49,46,51,49,56,46,57,52,52,45,46,57,50,49,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,48,45,50,46,55,48,52,108,45,46,57,52,52,45,46,57,50,46,48,49,54,45,49,46,51,50,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,45,49,46,57,49,50,45,49,46,57,49,49,108,45,49,46,51,49,56,46,48,49,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,48,54,55,46,56,55,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,45,52,46,49,51,52,32,48,108,45,46,54,50,50,46,54,51,56,45,46,56,57,45,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,45,50,46,57,50,52,32,50,46,57,50,52,108,46,48,49,46,56,57,45,46,54,51,54,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,48,32,52,46,49,51,52,108,46,54,51,55,46,54,50,50,45,46,48,49,49,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,50,46,57,50,52,32,50,46,57,50,52,108,46,56,57,45,46,48,49,46,54,50,50,46,54,51,54,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,52,46,49,51,52,32,48,108,46,54,50,50,45,46,54,51,55,46,56,57,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,50,46,57,50,52,45,50,46,57,50,52,108,45,46,48,49,45,46,56,57,46,54,51,54,45,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,48,45,52,46,49,51,52,108,45,46,54,51,55,45,46,54,50,50,46,48,49,49,45,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,45,50,46,57,50,52,45,50,46,57,50,52,108,45,46,56,57,46,48,49,45,46,54,50,50,45,46,54,51,54,122,77,56,32,52,99,46,53,51,53,32,48,32,46,57,53,52,46,52,54,50,46,57,46,57,57,53,108,45,46,51,53,32,51,46,53,48,55,97,46,53,53,50,46,53,53,50,32,48,32,48,32,49,45,49,46,49,32,48,76,55,46,49,32,52,46,57,57,53,65,46,57,48,53,46,57,48,53,32,48,32,48,32,49,32,56,32,52,122,109,46,48,48,50,32,54,97,49,32,49,32,48,32,49,32,49,32,48,32,50,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,116,99,104,77,105,110,117,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,53,46,53,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,50,55,51,32,50,46,53,49,51,108,45,46,57,50,49,45,46,57,52,52,46,55,49,53,45,46,54,57,56,46,54,50,50,46,54,51,55,46,56,57,45,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,50,46,57,50,52,32,50,46,57,50,52,108,45,46,48,49,46,56,57,46,54,51,54,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,48,32,52,46,49,51,52,108,45,46,54,51,55,46,54,50,50,46,48,49,49,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,50,46,57,50,52,32,50,46,57,50,52,108,45,46,56,57,45,46,48,49,45,46,54,50,50,46,54,51,54,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,52,46,49,51,52,32,48,108,45,46,54,50,50,45,46,54,51,55,45,46,56,57,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,50,46,57,50,52,45,50,46,57,50,52,108,46,48,49,45,46,56,57,45,46,54,51,54,45,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,48,45,52,46,49,51,52,108,46,54,51,55,45,46,54,50,50,45,46,48,49,49,45,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,50,46,57,50,52,45,50,46,57,50,52,108,46,56,57,46,48,49,46,54,50,50,45,46,54,51,54,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,52,46,49,51,52,32,48,108,45,46,55,49,53,46,54,57,56,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,45,50,46,55,48,52,32,48,108,45,46,57,50,46,57,52,52,45,49,46,51,50,45,46,48,49,54,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,45,49,46,57,49,49,32,49,46,57,49,50,108,46,48,49,54,32,49,46,51,49,56,45,46,57,52,52,46,57,50,49,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,48,32,50,46,55,48,52,108,46,57,52,52,46,57,50,45,46,48,49,54,32,49,46,51,50,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,49,46,57,49,50,32,49,46,57,49,49,108,49,46,51,49,56,45,46,48,49,54,46,57,50,49,46,57,52,52,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,50,46,55,48,52,32,48,108,46,57,50,45,46,57,52,52,32,49,46,51,50,46,48,49,54,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,49,46,57,49,49,45,49,46,57,49,50,108,45,46,48,49,54,45,49,46,51,49,56,46,57,52,52,45,46,57,50,49,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,48,45,50,46,55,48,52,108,45,46,57,52,52,45,46,57,50,46,48,49,54,45,49,46,51,50,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,45,49,46,57,49,50,45,49,46,57,49,49,108,45,49,46,51,49,56,46,48,49,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,116,99,104,77,105,110,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,48,54,55,46,56,55,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,45,52,46,49,51,52,32,48,108,45,46,54,50,50,46,54,51,56,45,46,56,57,45,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,45,50,46,57,50,52,32,50,46,57,50,52,108,46,48,49,46,56,57,45,46,54,51,54,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,48,32,52,46,49,51,52,108,46,54,51,55,46,54,50,50,45,46,48,49,49,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,50,46,57,50,52,32,50,46,57,50,52,108,46,56,57,45,46,48,49,46,54,50,50,46,54,51,54,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,52,46,49,51,52,32,48,108,46,54,50,50,45,46,54,51,55,46,56,57,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,50,46,57,50,52,45,50,46,57,50,52,108,45,46,48,49,45,46,56,57,46,54,51,54,45,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,48,45,52,46,49,51,52,108,45,46,54,51,55,45,46,54,50,50,46,48,49,49,45,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,45,50,46,57,50,52,45,50,46,57,50,52,108,45,46,56,57,46,48,49,45,46,54,50,50,45,46,54,51,54,122,77,54,32,55,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,116,99,104,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,116,99,104,80,108,117,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,46,53,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,86,49,48,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,46,53,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,50,55,51,32,50,46,53,49,51,108,45,46,57,50,49,45,46,57,52,52,46,55,49,53,45,46,54,57,56,46,54,50,50,46,54,51,55,46,56,57,45,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,50,46,57,50,52,32,50,46,57,50,52,108,45,46,48,49,46,56,57,46,54,51,54,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,48,32,52,46,49,51,52,108,45,46,54,51,55,46,54,50,50,46,48,49,49,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,50,46,57,50,52,32,50,46,57,50,52,108,45,46,56,57,45,46,48,49,45,46,54,50,50,46,54,51,54,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,52,46,49,51,52,32,48,108,45,46,54,50,50,45,46,54,51,55,45,46,56,57,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,50,46,57,50,52,45,50,46,57,50,52,108,46,48,49,45,46,56,57,45,46,54,51,54,45,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,48,45,52,46,49,51,52,108,46,54,51,55,45,46,54,50,50,45,46,48,49,49,45,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,50,46,57,50,52,45,50,46,57,50,52,108,46,56,57,46,48,49,46,54,50,50,45,46,54,51,54,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,52,46,49,51,52,32,48,108,45,46,55,49,53,46,54,57,56,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,45,50,46,55,48,52,32,48,108,45,46,57,50,46,57,52,52,45,49,46,51,50,45,46,48,49,54,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,45,49,46,57,49,49,32,49,46,57,49,50,108,46,48,49,54,32,49,46,51,49,56,45,46,57,52,52,46,57,50,49,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,48,32,50,46,55,48,52,108,46,57,52,52,46,57,50,45,46,48,49,54,32,49,46,51,50,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,49,46,57,49,50,32,49,46,57,49,49,108,49,46,51,49,56,45,46,48,49,54,46,57,50,49,46,57,52,52,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,50,46,55,48,52,32,48,108,46,57,50,45,46,57,52,52,32,49,46,51,50,46,48,49,54,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,49,46,57,49,49,45,49,46,57,49,50,108,45,46,48,49,54,45,49,46,51,49,56,46,57,52,52,45,46,57,50,49,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,48,45,50,46,55,48,52,108,45,46,57,52,52,45,46,57,50,46,48,49,54,45,49,46,51,50,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,45,49,46,57,49,50,45,49,46,57,49,49,108,45,49,46,51,49,56,46,48,49,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,116,99,104,80,108,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,116,99,104,80,108,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,48,54,55,46,56,55,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,45,52,46,49,51,52,32,48,108,45,46,54,50,50,46,54,51,56,45,46,56,57,45,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,45,50,46,57,50,52,32,50,46,57,50,52,108,46,48,49,46,56,57,45,46,54,51,54,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,48,32,52,46,49,51,52,108,46,54,51,55,46,54,50,50,45,46,48,49,49,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,50,46,57,50,52,32,50,46,57,50,52,108,46,56,57,45,46,48,49,46,54,50,50,46,54,51,54,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,52,46,49,51,52,32,48,108,46,54,50,50,45,46,54,51,55,46,56,57,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,50,46,57,50,52,45,50,46,57,50,52,108,45,46,48,49,45,46,56,57,46,54,51,54,45,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,32,48,45,52,46,49,51,52,108,45,46,54,51,55,45,46,54,50,50,46,48,49,49,45,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,48,45,50,46,57,50,52,45,50,46,57,50,52,108,45,46,56,57,46,48,49,45,46,54,50,50,45,46,54,51,54,122,77,56,46,53,32,54,118,49,46,53,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,86,49,48,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,46,53,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,54,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,116,99,104,81,117,101,115,116,105,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,48,53,32,57,46,54,99,46,51,51,54,32,48,32,46,53,48,52,45,46,50,52,46,53,53,52,45,46,54,50,55,46,48,52,45,46,53,51,52,46,49,57,56,45,46,56,49,53,46,56,52,55,45,49,46,50,54,46,54,55,51,45,46,52,55,53,32,49,46,48,52,57,45,49,46,48,57,32,49,46,48,52,57,45,49,46,57,56,54,32,48,45,49,46,51,50,53,45,46,57,50,45,50,46,50,50,55,45,50,46,50,54,50,45,50,46,50,50,55,45,49,46,48,50,32,48,45,49,46,55,57,50,46,52,57,50,45,50,46,49,32,49,46,50,57,65,49,46,55,49,32,49,46,55,49,32,48,32,48,32,48,32,54,32,53,46,52,56,99,48,32,46,51,57,51,46,50,48,51,46,54,52,46,53,52,53,46,54,52,46,50,55,50,32,48,32,46,52,53,53,45,46,49,52,55,46,53,54,52,45,46,53,49,46,49,53,56,45,46,53,57,50,46,53,50,53,45,46,57,49,53,32,49,46,48,55,52,45,46,57,49,53,46,54,49,32,48,32,49,46,48,51,46,52,52,54,32,49,46,48,51,32,49,46,48,56,52,32,48,32,46,53,54,51,45,46,50,48,56,46,56,56,53,45,46,56,50,50,32,49,46,51,50,53,45,46,54,49,57,46,52,51,51,45,46,57,50,54,46,57,49,52,45,46,57,50,54,32,49,46,54,52,118,46,49,49,49,99,48,32,46,52,50,56,46,50,48,56,46,55,52,53,46,53,56,53,46,55,52,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,50,55,51,32,50,46,53,49,51,108,45,46,57,50,49,45,46,57,52,52,46,55,49,53,45,46,54,57,56,46,54,50,50,46,54,51,55,46,56,57,45,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,50,46,57,50,52,32,50,46,57,50,52,108,45,46,48,49,46,56,57,46,54,51,54,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,48,32,52,46,49,51,52,108,45,46,54,51,55,46,54,50,50,46,48,49,49,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,50,46,57,50,52,32,50,46,57,50,52,108,45,46,56,57,45,46,48,49,45,46,54,50,50,46,54,51,54,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,52,46,49,51,52,32,48,108,45,46,54,50,50,45,46,54,51,55,45,46,56,57,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,50,46,57,50,52,45,50,46,57,50,52,108,46,48,49,45,46,56,57,45,46,54,51,54,45,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,48,45,52,46,49,51,52,108,46,54,51,55,45,46,54,50,50,45,46,48,49,49,45,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,50,46,57,50,52,45,50,46,57,50,52,108,46,56,57,46,48,49,46,54,50,50,45,46,54,51,54,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,52,46,49,51,52,32,48,108,45,46,55,49,53,46,54,57,56,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,45,50,46,55,48,52,32,48,108,45,46,57,50,46,57,52,52,45,49,46,51,50,45,46,48,49,54,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,45,49,46,57,49,49,32,49,46,57,49,50,108,46,48,49,54,32,49,46,51,49,56,45,46,57,52,52,46,57,50,49,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,48,32,50,46,55,48,52,108,46,57,52,52,46,57,50,45,46,48,49,54,32,49,46,51,50,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,49,46,57,49,50,32,49,46,57,49,49,108,49,46,51,49,56,45,46,48,49,54,46,57,50,49,46,57,52,52,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,50,46,55,48,52,32,48,108,46,57,50,45,46,57,52,52,32,49,46,51,50,46,48,49,54,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,49,46,57,49,49,45,49,46,57,49,50,108,45,46,48,49,54,45,49,46,51,49,56,46,57,52,52,45,46,57,50,49,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,32,48,45,50,46,55,48,52,108,45,46,57,52,52,45,46,57,50,46,48,49,54,45,49,46,51,50,97,49,46,56,57,32,49,46,56,57,32,48,32,48,32,48,45,49,46,57,49,50,45,49,46,57,49,49,108,45,49,46,51,49,56,46,48,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,48,48,50,32,49,49,97,49,32,49,32,48,32,49,32,49,32,50,32,48,32,49,32,49,32,48,32,48,32,49,45,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,116,99,104,81,117,101,115,116,105,111,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,57,51,51,46,56,55,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,52,46,49,51,52,32,48,108,46,54,50,50,46,54,51,56,46,56,57,45,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,50,46,57,50,52,32,50,46,57,50,52,108,45,46,48,49,46,56,57,46,54,51,54,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,48,32,52,46,49,51,52,108,45,46,54,51,55,46,54,50,50,46,48,49,49,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,50,46,57,50,52,32,50,46,57,50,52,108,45,46,56,57,45,46,48,49,45,46,54,50,50,46,54,51,54,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,52,46,49,51,52,32,48,108,45,46,54,50,50,45,46,54,51,55,45,46,56,57,46,48,49,49,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,45,50,46,57,50,52,45,50,46,57,50,52,108,46,48,49,45,46,56,57,45,46,54,51,54,45,46,54,50,50,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,48,45,52,46,49,51,52,108,46,54,51,55,45,46,54,50,50,45,46,48,49,49,45,46,56,57,97,50,46,56,57,32,50,46,56,57,32,48,32,48,32,49,32,50,46,57,50,52,45,50,46,57,50,52,108,46,56,57,46,48,49,46,54,50,50,45,46,54,51,54,122,77,55,46,48,48,50,32,49,49,97,49,32,49,32,48,32,49,32,48,32,50,32,48,32,49,32,49,32,48,32,48,32,48,45,50,32,48,122,109,49,46,54,48,50,45,50,46,48,50,55,99,46,48,52,45,46,53,51,52,46,49,57,56,45,46,56,49,53,46,56,52,54,45,49,46,50,54,46,54,55,52,45,46,52,55,53,32,49,46,48,53,45,49,46,48,57,32,49,46,48,53,45,49,46,57,56,54,32,48,45,49,46,51,50,53,45,46,57,50,45,50,46,50,50,55,45,50,46,50,54,50,45,50,46,50,50,55,45,49,46,48,50,32,48,45,49,46,55,57,50,46,52,57,50,45,50,46,49,32,49,46,50,57,65,49,46,55,49,32,49,46,55,49,32,48,32,48,32,48,32,54,32,53,46,52,56,99,48,32,46,51,57,51,46,50,48,51,46,54,52,46,53,52,53,46,54,52,46,50,55,50,32,48,32,46,52,53,53,45,46,49,52,55,46,53,54,52,45,46,53,49,46,49,53,56,45,46,53,57,50,46,53,50,53,45,46,57,49,53,32,49,46,48,55,52,45,46,57,49,53,46,54,49,32,48,32,49,46,48,51,46,52,52,54,32,49,46,48,51,32,49,46,48,56,52,32,48,32,46,53,54,51,45,46,50,48,56,46,56,56,53,45,46,56,50,50,32,49,46,51,50,53,45,46,54,49,57,46,52,51,51,45,46,57,50,54,46,57,49,52,45,46,57,50,54,32,49,46,54,52,118,46,49,49,49,99,48,32,46,52,50,56,46,50,48,56,46,55,52,53,46,53,56,53,46,55,52,53,46,51,51,54,32,48,32,46,53,48,52,45,46,50,52,46,53,53,52,45,46,54,50,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,117,115,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,117,115,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,56,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,52,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,56,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,117,115,101,66,116,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,117,115,101,66,116,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,50,53,32,53,67,53,46,53,54,32,53,32,53,32,53,46,53,54,32,53,32,54,46,50,53,118,51,46,53,97,49,46,50,53,32,49,46,50,53,32,48,32,49,32,48,32,50,46,53,32,48,118,45,51,46,53,67,55,46,53,32,53,46,53,54,32,54,46,57,52,32,53,32,54,46,50,53,32,53,122,109,51,46,53,32,48,99,45,46,54,57,32,48,45,49,46,50,53,46,53,54,45,49,46,50,53,32,49,46,50,53,118,51,46,53,97,49,46,50,53,32,49,46,50,53,32,48,32,49,32,48,32,50,46,53,32,48,118,45,51,46,53,67,49,49,32,53,46,53,54,32,49,48,46,52,52,32,53,32,57,46,55,53,32,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,122,109,49,53,32,48,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,117,115,101,66,116,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,117,115,101,66,116,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,50,86,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,122,109,54,46,50,53,45,55,67,53,46,53,54,32,53,32,53,32,53,46,53,54,32,53,32,54,46,50,53,118,51,46,53,97,49,46,50,53,32,49,46,50,53,32,48,32,49,32,48,32,50,46,53,32,48,118,45,51,46,53,67,55,46,53,32,53,46,53,54,32,54,46,57,52,32,53,32,54,46,50,53,32,53,122,109,51,46,53,32,48,99,45,46,54,57,32,48,45,49,46,50,53,46,53,54,45,49,46,50,53,32,49,46,50,53,118,51,46,53,97,49,46,50,53,32,49,46,50,53,32,48,32,49,32,48,32,50,46,53,32,48,118,45,51,46,53,67,49,49,32,53,46,53,54,32,49,48,46,52,52,32,53,32,57,46,55,53,32,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,117,115,101,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,32,54,46,50,53,97,49,46,50,53,32,49,46,50,53,32,48,32,49,32,49,32,50,46,53,32,48,118,51,46,53,97,49,46,50,53,32,49,46,50,53,32,48,32,49,32,49,45,50,46,53,32,48,118,45,51,46,53,122,109,51,46,53,32,48,97,49,46,50,53,32,49,46,50,53,32,48,32,49,32,49,32,50,46,53,32,48,118,51,46,53,97,49,46,50,53,32,49,46,50,53,32,48,32,49,32,49,45,50,46,53,32,48,118,45,51,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,117,115,101,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,54,46,50,53,32,53,67,53,46,53,54,32,53,32,53,32,53,46,53,54,32,53,32,54,46,50,53,118,51,46,53,97,49,46,50,53,32,49,46,50,53,32,48,32,49,32,48,32,50,46,53,32,48,118,45,51,46,53,67,55,46,53,32,53,46,53,54,32,54,46,57,52,32,53,32,54,46,50,53,32,53,122,109,51,46,53,32,48,99,45,46,54,57,32,48,45,49,46,50,53,46,53,54,45,49,46,50,53,32,49,46,50,53,118,51,46,53,97,49,46,50,53,32,49,46,50,53,32,48,32,49,32,48,32,50,46,53,32,48,118,45,51,46,53,67,49,49,32,53,46,53,54,32,49,48,46,52,52,32,53,32,57,46,55,53,32,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,97,117,115,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,97,117,115,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,55,32,53,118,54,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,51,32,48,86,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,45,49,46,53,122,109,53,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,50,32,53,118,54,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,51,32,48,86,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,45,49,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,97,99,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,97,99,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,53,32,49,46,48,49,56,97,55,32,55,32,48,32,48,32,48,45,52,46,55,57,32,49,49,46,53,54,54,76,55,46,53,32,55,46,55,57,51,86,49,46,48,49,56,122,109,49,32,48,118,54,46,55,55,53,108,52,46,55,57,32,52,46,55,57,65,55,32,55,32,48,32,48,32,48,32,56,46,53,32,49,46,48,49,56,122,109,52,46,48,56,52,32,49,50,46,50,55,51,76,56,46,53,32,57,46,50,48,55,118,53,46,55,55,53,97,54,46,57,55,32,54,46,57,55,32,48,32,48,32,48,32,52,46,48,56,52,45,49,46,54,57,49,122,77,55,46,53,32,49,52,46,57,56,50,86,57,46,50,48,55,108,45,52,46,48,56,52,32,52,46,48,56,52,65,54,46,57,55,32,54,46,57,55,32,48,32,48,32,48,32,55,46,53,32,49,52,46,57,56,50,122,77,48,32,56,97,56,32,56,32,48,32,49,32,49,32,49,54,32,48,65,56,32,56,32,48,32,48,32,49,32,48,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,97,99,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,97,99,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,51,46,50,57,50,65,56,32,56,32,48,32,48,32,48,32,56,46,53,46,48,49,53,118,55,46,55,55,56,108,53,46,53,32,53,46,53,122,109,45,46,55,48,56,46,55,48,56,76,56,46,53,32,57,46,50,48,54,118,54,46,55,55,56,97,55,46,57,54,55,32,55,46,57,54,55,32,48,32,48,32,48,32,52,46,55,57,50,45,49,46,57,56,54,122,77,55,46,53,32,49,53,46,57,56,53,86,57,46,50,48,55,76,50,46,55,48,56,32,49,52,65,55,46,57,54,55,32,55,46,57,54,55,32,48,32,48,32,48,32,55,46,53,32,49,53,46,57,56,53,122,77,50,32,49,51,46,50,57,50,65,56,32,56,32,48,32,48,32,49,32,55,46,53,46,48,49,53,118,55,46,55,55,56,108,45,53,46,53,32,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,46,52,57,56,46,55,57,53,108,46,49,52,57,45,46,49,52,57,97,49,46,50,48,55,32,49,46,50,48,55,32,48,32,49,32,49,32,49,46,55,48,55,32,49,46,55,48,56,108,45,46,49,52,57,46,49,52,56,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,46,48,53,57,32,50,46,48,53,57,76,52,46,56,53,52,32,49,52,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,45,46,50,51,51,46,49,51,49,108,45,52,32,49,97,46,53,46,53,32,48,32,48,32,49,45,46,54,48,54,45,46,54,48,54,108,49,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,49,51,49,45,46,50,51,50,108,57,46,54,52,50,45,57,46,54,52,50,97,46,53,46,53,32,48,32,48,32,48,45,46,54,52,50,46,48,53,54,76,54,46,56,53,52,32,52,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,76,57,46,52,52,46,56,53,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,49,46,53,46,55,57,54,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,57,57,56,45,46,48,48,49,122,109,45,46,54,52,52,46,55,54,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,55,32,48,76,49,46,57,53,32,49,49,46,55,53,54,108,45,46,55,54,52,32,51,46,48,53,55,32,51,46,48,53,55,45,46,55,54,52,76,49,52,46,52,52,32,51,46,56,53,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,49,46,53,56,53,45,49,46,53,56,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,46,52,57,56,46,55,57,53,108,46,49,52,57,45,46,49,52,57,97,49,46,50,48,55,32,49,46,50,48,55,32,48,32,49,32,49,32,49,46,55,48,55,32,49,46,55,48,56,108,45,46,49,52,57,46,49,52,56,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,46,48,53,57,32,50,46,48,53,57,76,52,46,56,53,52,32,49,52,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,45,46,50,51,51,46,49,51,49,108,45,52,32,49,97,46,53,46,53,32,48,32,48,32,49,45,46,54,48,54,45,46,54,48,54,108,49,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,49,51,49,45,46,50,51,50,108,57,46,54,52,50,45,57,46,54,52,50,97,46,53,46,53,32,48,32,48,32,48,45,46,54,52,50,46,48,53,54,76,54,46,56,53,52,32,52,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,76,57,46,52,52,46,56,53,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,49,46,53,46,55,57,54,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,57,57,56,45,46,48,48,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,110,99,105,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,110,99,105,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,49,52,54,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,51,32,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,49,48,32,49,48,97,46,53,46,53,32,48,32,48,32,49,45,46,49,54,56,46,49,49,108,45,53,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,54,53,45,46,54,53,108,50,45,53,97,46,53,46,53,32,48,32,48,32,49,32,46,49,49,45,46,49,54,56,108,49,48,45,49,48,122,77,49,49,46,50,48,55,32,50,46,53,76,49,51,46,53,32,52,46,55,57,51,32,49,52,46,55,57,51,32,51,46,53,32,49,50,46,53,32,49,46,50,48,55,32,49,49,46,50,48,55,32,50,46,53,122,109,49,46,53,56,54,32,51,76,49,48,46,53,32,51,46,50,48,55,32,52,32,57,46,55,48,55,86,49,48,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,46,53,104,46,50,57,51,108,54,46,53,45,54,46,53,122,109,45,57,46,55,54,49,32,53,46,49,55,53,108,45,46,49,48,54,46,49,48,54,45,49,46,53,50,56,32,51,46,56,50,49,32,51,46,56,50,49,45,49,46,53,50,56,46,49,48,54,45,46,49,48,54,65,46,53,46,53,32,48,32,48,32,49,32,53,32,49,50,46,53,86,49,50,104,45,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,49,49,104,45,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,52,54,56,45,46,51,50,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,110,99,105,108,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,110,99,105,108,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,56,53,52,46,49,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,55,32,48,76,49,48,46,53,32,49,46,55,57,51,32,49,52,46,50,48,55,32,53,46,53,108,49,46,54,52,55,45,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,51,45,51,122,109,46,54,52,54,32,54,46,48,54,49,76,57,46,55,57,51,32,50,46,53,32,51,46,50,57,51,32,57,72,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,46,50,48,55,108,54,46,53,45,54,46,53,122,109,45,55,46,52,54,56,32,55,46,52,54,56,65,46,53,46,53,32,48,32,48,32,49,32,54,32,49,51,46,53,86,49,51,104,45,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,49,50,104,45,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,49,49,104,45,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,49,48,104,45,46,53,97,46,52,57,57,46,52,57,57,32,48,32,48,32,49,45,46,49,55,53,45,46,48,51,50,108,45,46,49,55,57,46,49,55,56,97,46,53,46,53,32,48,32,48,32,48,45,46,49,49,46,49,54,56,108,45,50,32,53,97,46,53,46,53,32,48,32,48,32,48,32,46,54,53,46,54,53,108,53,45,50,97,46,53,46,53,32,48,32,48,32,48,32,46,49,54,56,45,46,49,49,108,46,49,55,56,45,46,49,55,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,110,99,105,108,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,110,99,105,108,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,53,46,53,48,50,32,49,46,57,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,54,76,49,52,46,52,53,57,32,51,46,54,57,108,45,50,45,50,76,49,51,46,53,48,50,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,32,48,108,49,46,50,57,51,32,49,46,50,57,51,122,109,45,49,46,55,53,32,50,46,52,53,54,108,45,50,45,50,76,52,46,57,51,57,32,57,46,50,49,97,46,53,46,53,32,48,32,48,32,48,45,46,49,50,49,46,49,57,54,108,45,46,56,48,53,32,50,46,52,49,52,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,51,49,54,46,51,49,54,108,50,46,52,49,52,45,46,56,48,53,97,46,53,46,53,32,48,32,48,32,48,32,46,49,57,54,45,46,49,50,108,54,46,56,49,51,45,54,46,56,49,52,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,49,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,50,46,53,32,49,53,104,49,49,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,118,45,54,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,72,57,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,32,50,46,53,118,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,110,116,97,103,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,110,116,97,103,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,46,50,56,56,108,54,46,56,52,50,32,53,46,53,54,76,49,50,46,50,54,55,32,49,53,72,51,46,55,51,51,76,49,46,49,53,56,32,54,46,56,52,55,32,56,32,49,46,50,56,56,122,77,49,54,32,54,46,53,76,56,32,48,32,48,32,54,46,53,32,51,32,49,54,104,49,48,108,51,45,57,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,110,116,97,103,111,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,110,116,97,103,111,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,48,108,56,32,54,46,53,45,51,32,57,46,53,72,51,76,48,32,54,46,53,32,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,110,116,97,103,111,110,72,97,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,110,116,97,103,111,110,72,97,108,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,46,50,56,56,108,54,46,56,52,50,32,53,46,53,54,76,49,50,46,50,54,55,32,49,53,72,56,86,49,46,50,56,56,122,77,49,54,32,54,46,53,76,56,32,48,32,48,32,54,46,53,32,51,32,49,54,104,49,48,108,51,45,57,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,111,112,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,111,112,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,53,32,49,52,115,49,32,48,32,49,45,49,45,49,45,52,45,53,45,52,45,53,32,51,45,53,32,52,32,49,32,49,32,49,32,49,104,56,122,109,45,55,46,57,55,56,45,49,65,46,50,54,49,46,50,54,49,32,48,32,48,32,49,32,55,32,49,50,46,57,57,54,99,46,48,48,49,45,46,50,54,52,46,49,54,55,45,49,46,48,51,46,55,54,45,49,46,55,50,67,56,46,51,49,50,32,49,48,46,54,50,57,32,57,46,50,56,50,32,49,48,32,49,49,32,49,48,99,49,46,55,49,55,32,48,32,50,46,54,56,55,46,54,51,32,51,46,50,52,32,49,46,50,55,54,46,53,57,51,46,54,57,46,55,53,56,32,49,46,52,53,55,46,55,54,32,49,46,55,50,108,45,46,48,48,56,46,48,48,50,97,46,50,55,52,46,50,55,52,32,48,32,48,32,49,45,46,48,49,52,46,48,48,50,72,55,46,48,50,50,122,77,49,49,32,55,97,50,32,50,32,48,32,49,32,48,32,48,45,52,32,50,32,50,32,48,32,48,32,48,32,48,32,52,122,109,51,45,50,97,51,32,51,32,48,32,49,32,49,45,54,32,48,32,51,32,51,32,48,32,48,32,49,32,54,32,48,122,77,54,46,57,51,54,32,57,46,50,56,97,53,46,56,56,32,53,46,56,56,32,48,32,48,32,48,45,49,46,50,51,45,46,50,52,55,65,55,46,51,53,32,55,46,51,53,32,48,32,48,32,48,32,53,32,57,99,45,52,32,48,45,53,32,51,45,53,32,52,32,48,32,46,54,54,55,46,51,51,51,32,49,32,49,32,49,104,52,46,50,49,54,65,50,46,50,51,56,32,50,46,50,51,56,32,48,32,48,32,49,32,53,32,49,51,99,48,45,49,46,48,49,46,51,55,55,45,50,46,48,52,50,32,49,46,48,57,45,50,46,57,48,52,46,50,52,51,45,46,50,57,52,46,53,50,54,45,46,53,54,57,46,56,52,54,45,46,56,49,54,122,77,52,46,57,50,32,49,48,65,53,46,52,57,51,32,53,46,52,57,51,32,48,32,48,32,48,32,52,32,49,51,72,49,99,48,45,46,50,54,46,49,54,52,45,49,46,48,51,46,55,54,45,49,46,55,50,52,46,53,52,53,45,46,54,51,54,32,49,46,52,57,50,45,49,46,50,53,54,32,51,46,49,54,45,49,46,50,55,53,122,77,49,46,53,32,53,46,53,97,51,32,51,32,48,32,49,32,49,32,54,32,48,32,51,32,51,32,48,32,48,32,49,45,54,32,48,122,109,51,45,50,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,111,112,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,111,112,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,49,52,115,45,49,32,48,45,49,45,49,32,49,45,52,32,53,45,52,32,53,32,51,32,53,32,52,45,49,32,49,45,49,32,49,72,55,122,109,52,45,54,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,53,46,50,49,54,32,49,52,65,50,46,50,51,56,32,50,46,50,51,56,32,48,32,48,32,49,32,53,32,49,51,99,48,45,49,46,51,53,53,46,54,56,45,50,46,55,53,32,49,46,57,51,54,45,51,46,55,50,65,54,46,51,50,53,32,54,46,51,50,53,32,48,32,48,32,48,32,53,32,57,99,45,52,32,48,45,53,32,51,45,53,32,52,115,49,32,49,32,49,32,49,104,52,46,50,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,53,32,56,97,50,46,53,32,50,46,53,32,48,32,49,32,48,32,48,45,53,32,50,46,53,32,50,46,53,32,48,32,48,32,48,32,48,32,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,99,101,110,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,99,101,110,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,46,52,52,50,32,50,46,53,53,56,97,46,54,50,53,46,54,50,53,32,48,32,48,32,49,32,48,32,46,56,56,52,108,45,49,48,32,49,48,97,46,54,50,53,46,54,50,53,32,48,32,49,32,49,45,46,56,56,52,45,46,56,56,52,108,49,48,45,49,48,97,46,54,50,53,46,54,50,53,32,48,32,48,32,49,32,46,56,56,52,32,48,122,77,52,46,53,32,54,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,109,48,32,49,97,50,46,53,32,50,46,53,32,48,32,49,32,48,32,48,45,53,32,50,46,53,32,50,46,53,32,48,32,48,32,48,32,48,32,53,122,109,55,32,54,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,109,48,32,49,97,50,46,53,32,50,46,53,32,48,32,49,32,48,32,48,45,53,32,50,46,53,32,50,46,53,32,48,32,48,32,48,32,48,32,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,56,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,109,50,45,51,97,50,32,50,32,48,32,49,32,49,45,52,32,48,32,50,32,50,32,48,32,48,32,49,32,52,32,48,122,109,52,32,56,99,48,32,49,45,49,32,49,45,49,32,49,72,51,115,45,49,32,48,45,49,45,49,32,49,45,52,32,54,45,52,32,54,32,51,32,54,32,52,122,109,45,49,45,46,48,48,52,99,45,46,48,48,49,45,46,50,52,54,45,46,49,53,52,45,46,57,56,54,45,46,56,51,50,45,49,46,54,54,52,67,49,49,46,53,49,54,32,49,48,46,54,56,32,49,48,46,50,56,57,32,49,48,32,56,32,49,48,99,45,50,46,50,57,32,48,45,51,46,53,49,54,46,54,56,45,52,46,49,54,56,32,49,46,51,51,50,45,46,54,55,56,46,54,55,56,45,46,56,51,32,49,46,52,49,56,45,46,56,51,50,32,49,46,54,54,52,104,49,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,66,97,100,103,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,51,122,77,49,49,32,56,97,51,32,51,32,48,32,49,32,49,45,54,32,48,32,51,32,51,32,48,32,48,32,49,32,54,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,53,32,48,65,50,46,53,32,50,46,53,32,48,32,48,32,48,32,50,32,50,46,53,86,49,52,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,46,53,65,50,46,53,32,50,46,53,32,48,32,48,32,48,32,49,49,46,53,32,48,104,45,55,122,77,51,32,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,46,53,32,49,104,55,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,51,32,50,46,53,118,49,48,46,55,57,53,97,52,46,50,32,52,46,50,32,48,32,48,32,48,45,46,55,55,54,45,46,52,57,50,67,49,49,46,51,57,50,32,49,50,46,51,56,55,32,49,48,46,48,54,51,32,49,50,32,56,32,49,50,115,45,51,46,51,57,50,46,51,56,55,45,52,46,50,50,52,46,56,48,51,97,52,46,50,32,52,46,50,32,48,32,48,32,48,45,46,55,55,54,46,52,57,50,86,50,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,66,97,100,103,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,52,46,53,32,48,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,51,122,77,56,32,49,49,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,109,53,32,50,46,55,53,53,67,49,50,46,49,52,54,32,49,50,46,56,50,53,32,49,48,46,54,50,51,32,49,50,32,56,32,49,50,115,45,52,46,49,52,54,46,56,50,54,45,53,32,49,46,55,53,53,86,49,52,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,56,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,46,50,52,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,66,111,117,110,100,105,110,103,66,111,120,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,66,111,117,110,100,105,110,103,66,111,120,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,48,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,122,77,49,49,32,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,49,46,53,118,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,46,53,32,49,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,52,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,49,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,49,52,115,45,49,32,48,45,49,45,49,32,49,45,52,32,54,45,52,32,54,32,51,32,54,32,52,45,49,32,49,45,49,32,49,72,51,122,109,56,45,57,97,51,32,51,32,48,32,49,32,49,45,54,32,48,32,51,32,51,32,48,32,48,32,49,32,54,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,67,104,101,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,56,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,109,50,45,51,97,50,32,50,32,48,32,49,32,49,45,52,32,48,32,50,32,50,32,48,32,48,32,49,32,52,32,48,122,109,52,32,56,99,48,32,49,45,49,32,49,45,49,32,49,72,49,115,45,49,32,48,45,49,45,49,32,49,45,52,32,54,45,52,32,54,32,51,32,54,32,52,122,109,45,49,45,46,48,48,52,99,45,46,48,48,49,45,46,50,52,54,45,46,49,53,52,45,46,57,56,54,45,46,56,51,50,45,49,46,54,54,52,67,57,46,53,49,54,32,49,48,46,54,56,32,56,46,50,56,57,32,49,48,32,54,32,49,48,99,45,50,46,50,57,32,48,45,51,46,53,49,54,46,54,56,45,52,46,49,54,56,32,49,46,51,51,50,45,46,54,55,56,46,54,55,56,45,46,56,51,32,49,46,52,49,56,45,46,56,51,50,32,49,46,54,54,52,104,49,48,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,53,46,56,53,52,32,53,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,76,49,50,46,53,32,55,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,67,104,101,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,53,46,56,53,52,32,53,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,76,49,50,46,53,32,55,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,49,52,115,45,49,32,48,45,49,45,49,32,49,45,52,32,54,45,52,32,54,32,51,32,54,32,52,45,49,32,49,45,49,32,49,72,49,122,109,53,45,54,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,46,52,54,56,32,49,50,46,51,55,67,49,50,46,55,53,56,32,49,49,46,50,50,54,32,49,49,46,49,57,53,32,49,48,32,56,32,49,48,115,45,52,46,55,53,55,32,49,46,50,50,53,45,53,46,52,54,56,32,50,46,51,55,65,54,46,57,56,55,32,54,46,57,56,55,32,48,32,48,32,48,32,56,32,49,53,97,54,46,57,56,55,32,54,46,57,56,55,32,48,32,48,32,48,32,53,46,52,54,56,45,50,46,54,51,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,57,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,49,97,55,32,55,32,48,32,49,32,48,32,48,32,49,52,65,55,32,55,32,48,32,48,32,48,32,56,32,49,122,77,48,32,56,97,56,32,56,32,48,32,49,32,49,32,49,54,32,48,65,56,32,56,32,48,32,48,32,49,32,48,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,68,97,115,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,56,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,109,50,45,51,97,50,32,50,32,48,32,49,32,49,45,52,32,48,32,50,32,50,32,48,32,48,32,49,32,52,32,48,122,109,52,32,56,99,48,32,49,45,49,32,49,45,49,32,49,72,49,115,45,49,32,48,45,49,45,49,32,49,45,52,32,54,45,52,32,54,32,51,32,54,32,52,122,109,45,49,45,46,48,48,52,99,45,46,48,48,49,45,46,50,52,54,45,46,49,53,52,45,46,57,56,54,45,46,56,51,50,45,49,46,54,54,52,67,57,46,53,49,54,32,49,48,46,54,56,32,56,46,50,56,57,32,49,48,32,54,32,49,48,99,45,50,46,50,57,32,48,45,51,46,53,49,54,46,54,56,45,52,46,49,54,56,32,49,46,51,51,50,45,46,54,55,56,46,54,55,56,45,46,56,51,32,49,46,52,49,56,45,46,56,51,50,32,49,46,54,54,52,104,49,48,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,32,55,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,68,97,115,104,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,32,55,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,32,49,52,115,45,49,32,48,45,49,45,49,32,49,45,52,32,54,45,52,32,54,32,51,32,54,32,52,45,49,32,49,45,49,32,49,72,49,122,109,53,45,54,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,49,52,115,45,49,32,48,45,49,45,49,32,49,45,52,32,54,45,52,32,54,32,51,32,54,32,52,45,49,32,49,45,49,32,49,72,51,122,109,53,45,54,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,76,105,110,101,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,76,105,110,101,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,56,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,109,45,53,32,54,115,45,49,32,48,45,49,45,49,32,49,45,52,32,54,45,52,32,54,32,51,32,54,32,52,45,49,32,49,45,49,32,49,72,49,122,77,49,49,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,52,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,52,122,109,50,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,50,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,50,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,50,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,80,108,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,56,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,109,50,45,51,97,50,32,50,32,48,32,49,32,49,45,52,32,48,32,50,32,50,32,48,32,48,32,49,32,52,32,48,122,109,52,32,56,99,48,32,49,45,49,32,49,45,49,32,49,72,49,115,45,49,32,48,45,49,45,49,32,49,45,52,32,54,45,52,32,54,32,51,32,54,32,52,122,109,45,49,45,46,48,48,52,99,45,46,48,48,49,45,46,50,52,54,45,46,49,53,52,45,46,57,56,54,45,46,56,51,50,45,49,46,54,54,52,67,57,46,53,49,54,32,49,48,46,54,56,32,56,46,50,56,57,32,49,48,32,54,32,49,48,99,45,50,46,50,57,32,48,45,51,46,53,49,54,46,54,56,45,52,46,49,54,56,32,49,46,51,51,50,45,46,54,55,56,46,54,55,56,45,46,56,51,32,49,46,52,49,56,45,46,56,51,50,32,49,46,54,54,52,104,49,48,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,51,46,53,32,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,55,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,52,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,104,45,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,51,86,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,80,108,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,49,52,115,45,49,32,48,45,49,45,49,32,49,45,52,32,54,45,52,32,54,32,51,32,54,32,52,45,49,32,49,45,49,32,49,72,49,122,109,53,45,54,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,51,46,53,32,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,55,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,52,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,104,45,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,51,86,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,54,97,51,32,51,32,48,32,49,32,49,45,54,32,48,32,51,32,51,32,48,32,48,32,49,32,54,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,49,50,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,118,45,49,99,48,45,49,45,49,45,52,45,54,45,52,115,45,54,32,51,45,54,32,52,118,49,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,88,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,88,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,56,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,109,50,45,51,97,50,32,50,32,48,32,49,32,49,45,52,32,48,32,50,32,50,32,48,32,48,32,49,32,52,32,48,122,109,52,32,56,99,48,32,49,45,49,32,49,45,49,32,49,72,49,115,45,49,32,48,45,49,45,49,32,49,45,52,32,54,45,52,32,54,32,51,32,54,32,52,122,109,45,49,45,46,48,48,52,99,45,46,48,48,49,45,46,50,52,54,45,46,49,53,52,45,46,57,56,54,45,46,56,51,50,45,49,46,54,54,52,67,57,46,53,49,54,32,49,48,46,54,56,32,56,46,50,56,57,32,49,48,32,54,32,49,48,99,45,50,46,50,57,32,48,45,51,46,53,49,54,46,54,56,45,52,46,49,54,56,32,49,46,51,51,50,45,46,54,55,56,46,54,55,56,45,46,56,51,32,49,46,52,49,56,45,46,56,51,50,32,49,46,54,54,52,104,49,48,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,50,46,49,52,54,32,53,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,49,52,32,54,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,76,49,52,46,55,48,55,32,55,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,49,52,32,55,46,55,48,55,108,45,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,51,46,50,57,51,32,55,108,45,49,46,49,52,55,45,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,101,114,115,111,110,88,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,101,114,115,111,110,88,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,32,49,52,115,45,49,32,48,45,49,45,49,32,49,45,52,32,54,45,52,32,54,32,51,32,54,32,52,45,49,32,49,45,49,32,49,72,49,122,109,53,45,54,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,109,54,46,49,52,54,45,50,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,49,52,32,54,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,76,49,52,46,55,48,55,32,55,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,49,52,32,55,46,55,48,55,108,45,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,51,46,50,57,51,32,55,108,45,49,46,49,52,55,45,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,104,111,110,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,104,111,110,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,54,122,77,53,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,54,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,49,52,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,104,111,110,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,104,111,110,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,54,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,53,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,54,32,49,49,97,49,32,49,32,48,32,49,32,48,45,50,32,48,32,49,32,49,32,48,32,48,32,48,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,104,111,110,101,76,97,110,100,115,99,97,112,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,52,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,54,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,54,122,109,45,49,32,54,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,118,45,54,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,55,46,53,97,49,32,49,32,48,32,49,32,48,45,50,32,48,32,49,32,49,32,48,32,48,32,48,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,104,111,110,101,76,97,110,100,115,99,97,112,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,50,46,53,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,54,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,54,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,122,109,49,49,45,54,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,104,111,110,101,86,105,98,114,97,116,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,104,111,110,101,86,105,98,114,97,116,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,32,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,54,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,52,122,77,54,32,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,49,50,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,77,49,46,53,57,57,32,52,46,48,53,56,97,46,53,46,53,32,48,32,48,32,49,32,46,50,48,56,46,54,55,54,65,54,46,57,54,55,32,54,46,57,54,55,32,48,32,48,32,48,32,49,32,56,99,48,32,49,46,49,56,46,50,57,50,32,50,46,50,57,50,46,56,48,55,32,51,46,50,54,54,97,46,53,46,53,32,48,32,48,32,49,45,46,56,56,52,46,52,54,56,65,55,46,57,54,56,32,55,46,57,54,56,32,48,32,48,32,49,32,48,32,56,99,48,45,49,46,51,52,55,46,51,51,52,45,50,46,54,49,57,46,57,50,51,45,51,46,55,51,52,97,46,53,46,53,32,48,32,48,32,49,32,46,54,55,54,45,46,50,48,56,122,109,49,50,46,56,48,50,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,54,55,54,46,50,48,56,65,55,46,57,54,55,32,55,46,57,54,55,32,48,32,48,32,49,32,49,54,32,56,97,55,46,57,54,55,32,55,46,57,54,55,32,48,32,48,32,49,45,46,57,50,51,32,51,46,55,51,52,46,53,46,53,32,48,32,48,32,49,45,46,56,56,52,45,46,52,54,56,65,54,46,57,54,55,32,54,46,57,54,55,32,48,32,48,32,48,32,49,53,32,56,99,48,45,49,46,49,56,45,46,50,57,50,45,50,46,50,57,50,45,46,56,48,55,45,51,46,50,54,54,97,46,53,46,53,32,48,32,48,32,49,32,46,50,48,56,45,46,54,55,54,122,77,51,46,48,53,55,32,53,46,53,51,52,97,46,53,46,53,32,48,32,48,32,49,32,46,50,56,52,46,54,52,56,65,52,46,57,56,54,32,52,46,57,56,54,32,48,32,48,32,48,32,51,32,56,99,48,32,46,54,52,50,46,49,50,32,49,46,50,53,53,46,51,52,32,49,46,56,49,56,97,46,53,46,53,32,48,32,49,32,49,45,46,57,51,46,51,54,52,65,53,46,57,56,54,32,53,46,57,56,54,32,48,32,48,32,49,32,50,32,56,99,48,45,46,55,54,57,46,49,52,53,45,49,46,53,48,53,46,52,49,45,50,46,49,56,50,97,46,53,46,53,32,48,32,48,32,49,32,46,54,52,55,45,46,50,56,52,122,109,57,46,56,56,54,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,54,52,56,46,50,56,52,67,49,51,46,56,53,53,32,54,46,52,57,53,32,49,52,32,55,46,50,51,49,32,49,52,32,56,99,48,32,46,55,54,57,45,46,49,52,53,32,49,46,53,48,53,45,46,52,49,32,50,46,49,56,50,97,46,53,46,53,32,48,32,48,32,49,45,46,57,51,45,46,51,54,52,67,49,50,46,56,56,32,57,46,50,53,53,32,49,51,32,56,46,54,52,50,32,49,51,32,56,99,48,45,46,54,52,50,45,46,49,50,45,49,46,50,53,53,45,46,51,52,45,49,46,56,49,56,97,46,53,46,53,32,48,32,48,32,49,32,46,50,56,51,45,46,54,52,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,105,101,67,104,97,114,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,105,101,67,104,97,114,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,53,32,49,46,48,49,56,97,55,32,55,32,48,32,48,32,48,45,52,46,55,57,32,49,49,46,53,54,54,76,55,46,53,32,55,46,55,57,51,86,49,46,48,49,56,122,109,49,32,48,86,55,46,53,104,54,46,52,56,50,65,55,46,48,48,49,32,55,46,48,48,49,32,48,32,48,32,48,32,56,46,53,32,49,46,48,49,56,122,77,49,52,46,57,56,50,32,56,46,53,72,56,46,50,48,55,108,45,52,46,55,57,32,52,46,55,57,65,55,32,55,32,48,32,48,32,48,32,49,52,46,57,56,50,32,56,46,53,122,77,48,32,56,97,56,32,56,32,48,32,49,32,49,32,49,54,32,48,65,56,32,56,32,48,32,48,32,49,32,48,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,105,101,67,104,97,114,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,105,101,67,104,97,114,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,53,46,57,56,53,32,56,46,53,72,56,46,50,48,55,108,45,53,46,53,32,53,46,53,97,56,32,56,32,48,32,48,32,48,32,49,51,46,50,55,55,45,53,46,53,122,77,50,32,49,51,46,50,57,50,65,56,32,56,32,48,32,48,32,49,32,55,46,53,46,48,49,53,118,55,46,55,55,56,108,45,53,46,53,32,53,46,53,122,77,56,46,53,46,48,49,53,86,55,46,53,104,55,46,52,56,53,65,56,46,48,48,49,32,56,46,48,48,49,32,48,32,48,32,48,32,56,46,53,46,48,49,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,105,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,105,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,50,104,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,51,46,53,118,57,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,50,46,53,118,45,57,122,77,49,46,53,32,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,57,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,57,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,56,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,105,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,105,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,46,53,118,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,52,104,49,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,118,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,46,53,32,50,104,45,49,51,122,109,55,32,54,104,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,108,97,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,108,97,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,56,48,52,32,56,76,53,32,52,46,54,51,51,118,54,46,55,51,52,76,49,48,46,56,48,52,32,56,122,109,46,55,57,50,45,46,54,57,54,97,46,56,48,50,46,56,48,50,32,48,32,48,32,49,32,48,32,49,46,51,57,50,108,45,54,46,51,54,51,32,51,46,54,57,50,67,52,46,55,49,51,32,49,50,46,54,57,32,52,32,49,50,46,51,52,53,32,52,32,49,49,46,54,57,50,86,52,46,51,48,56,99,48,45,46,54,53,51,46,55,49,51,45,46,57,57,56,32,49,46,50,51,51,45,46,54,57,54,108,54,46,51,54,51,32,51,46,54,57,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,108,97,121,66,116,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,108,97,121,66,116,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,55,57,32,53,46,48,57,51,65,46,53,46,53,32,48,32,48,32,48,32,54,32,53,46,53,118,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,46,52,48,55,108,51,46,53,45,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,56,49,52,108,45,51,46,53,45,50,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,122,109,49,53,32,48,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,108,97,121,66,116,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,108,97,121,66,116,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,50,86,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,122,109,54,46,55,57,45,54,46,57,48,55,65,46,53,46,53,32,48,32,48,32,48,32,54,32,53,46,53,118,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,46,52,48,55,108,51,46,53,45,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,56,49,52,108,45,51,46,53,45,50,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,108,97,121,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,46,50,55,49,32,53,46,48,53,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,50,46,48,51,56,108,51,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,56,49,52,108,45,51,46,53,32,50,46,53,65,46,53,46,53,32,48,32,48,32,49,32,54,32,49,48,46,53,118,45,53,97,46,53,46,53,32,48,32,48,32,49,32,46,50,55,49,45,46,52,52,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,108,97,121,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,54,46,55,57,32,53,46,48,57,51,65,46,53,46,53,32,48,32,48,32,48,32,54,32,53,46,53,118,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,46,52,48,55,108,51,46,53,45,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,56,49,52,108,45,51,46,53,45,50,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,108,97,121,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,108,97,121,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,53,57,54,32,56,46,54,57,55,108,45,54,46,51,54,51,32,51,46,54,57,50,99,45,46,53,52,46,51,49,51,45,49,46,50,51,51,45,46,48,54,54,45,49,46,50,51,51,45,46,54,57,55,86,52,46,51,48,56,99,48,45,46,54,51,46,54,57,50,45,49,46,48,49,32,49,46,50,51,51,45,46,54,57,54,108,54,46,51,54,51,32,51,46,54,57,50,97,46,56,48,50,46,56,48,50,32,48,32,48,32,49,32,48,32,49,46,51,57,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,108,117,103,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,108,117,103,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,51,104,51,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,51,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,65,51,46,53,32,51,46,53,32,48,32,48,32,49,32,56,46,53,32,49,48,99,45,46,48,48,50,46,52,51,52,45,46,48,49,46,56,52,53,45,46,48,52,32,49,46,50,50,45,46,48,52,49,46,53,49,52,45,46,49,50,54,32,49,46,48,48,51,45,46,51,49,55,32,49,46,52,50,52,97,50,46,48,56,51,32,50,46,48,56,51,32,48,32,48,32,49,45,46,57,55,32,49,46,48,50,56,67,54,46,55,50,53,32,49,51,46,57,32,54,46,49,54,57,32,49,52,32,53,46,53,32,49,52,99,45,46,57,57,56,32,48,45,49,46,54,49,46,51,51,45,49,46,57,55,52,46,55,49,56,65,49,46,57,50,50,32,49,46,57,50,50,32,48,32,48,32,48,32,51,32,49,54,72,50,99,48,45,46,54,49,54,46,50,51,50,45,49,46,51,54,55,46,55,57,55,45,49,46,57,54,56,67,51,46,51,55,52,32,49,51,46,52,50,32,52,46,50,54,49,32,49,51,32,53,46,53,32,49,51,99,46,53,56,49,32,48,32,46,57,54,50,45,46,48,56,56,32,49,46,50,49,56,45,46,50,49,57,46,50,52,49,45,46,49,50,51,46,52,45,46,51,46,53,49,52,45,46,53,53,46,49,50,49,45,46,50,54,54,46,49,57,51,45,46,54,50,49,46,50,51,45,49,46,48,57,46,48,50,55,45,46,51,52,46,48,51,53,45,46,55,49,56,46,48,51,55,45,49,46,49,52,49,65,51,46,53,32,51,46,53,32,48,32,48,32,49,32,52,32,54,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,86,46,53,65,46,53,46,53,32,48,32,48,32,49,32,54,32,48,122,77,53,32,52,118,50,46,53,65,50,46,53,32,50,46,53,32,48,32,48,32,48,32,55,46,53,32,57,104,49,65,50,46,53,32,50,46,53,32,48,32,48,32,48,32,49,49,32,54,46,53,86,52,72,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,108,117,103,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,108,117,103,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,51,104,51,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,51,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,65,51,46,53,32,51,46,53,32,48,32,48,32,49,32,56,46,53,32,49,48,99,45,46,48,48,50,46,52,51,52,45,46,48,49,46,56,52,53,45,46,48,52,32,49,46,50,50,45,46,48,52,49,46,53,49,52,45,46,49,50,54,32,49,46,48,48,51,45,46,51,49,55,32,49,46,52,50,52,97,50,46,48,56,51,32,50,46,48,56,51,32,48,32,48,32,49,45,46,57,55,32,49,46,48,50,56,67,54,46,55,50,53,32,49,51,46,57,32,54,46,49,54,57,32,49,52,32,53,46,53,32,49,52,99,45,46,57,57,56,32,48,45,49,46,54,49,46,51,51,45,49,46,57,55,52,46,55,49,56,65,49,46,57,50,50,32,49,46,57,50,50,32,48,32,48,32,48,32,51,32,49,54,72,50,99,48,45,46,54,49,54,46,50,51,50,45,49,46,51,54,55,46,55,57,55,45,49,46,57,54,56,67,51,46,51,55,52,32,49,51,46,52,50,32,52,46,50,54,49,32,49,51,32,53,46,53,32,49,51,99,46,53,56,49,32,48,32,46,57,54,50,45,46,48,56,56,32,49,46,50,49,56,45,46,50,49,57,46,50,52,49,45,46,49,50,51,46,52,45,46,51,46,53,49,52,45,46,53,53,46,49,50,49,45,46,50,54,54,46,49,57,51,45,46,54,50,49,46,50,51,45,49,46,48,57,46,48,50,55,45,46,51,52,46,48,51,53,45,46,55,49,56,46,48,51,55,45,49,46,49,52,49,65,51,46,53,32,51,46,53,32,48,32,48,32,49,32,52,32,54,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,86,46,53,65,46,53,46,53,32,48,32,48,32,49,32,54,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,108,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,118,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,104,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,51,118,45,51,65,46,53,46,53,32,48,32,48,32,49,32,56,32,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,108,117,115,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,118,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,104,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,51,118,45,51,65,46,53,46,53,32,48,32,48,32,49,32,56,32,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,108,117,115,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,56,46,53,32,52,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,51,104,45,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,51,118,51,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,51,104,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,51,118,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,108,117,115,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,118,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,104,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,51,118,45,51,65,46,53,46,53,32,48,32,48,32,49,32,56,32,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,108,117,115,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,54,46,53,32,52,46,53,118,51,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,118,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,104,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,51,118,45,51,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,111,119,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,111,119,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,53,32,49,118,55,104,49,86,49,104,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,56,46,56,49,50,97,52,46,57,57,57,32,52,46,57,57,57,32,48,32,48,32,49,32,50,46,53,55,56,45,52,46,51,55,53,108,45,46,52,56,53,45,46,56,55,52,65,54,32,54,32,48,32,49,32,48,32,49,49,32,51,46,54,49,54,108,45,46,53,48,49,46,56,54,53,65,53,32,53,32,48,32,49,32,49,32,51,32,56,46,56,49,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,114,105,110,116,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,114,105,110,116,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,56,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,32,46,53,46,53,32,48,32,48,32,48,32,48,32,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,32,49,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,50,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,51,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,118,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,54,97,50,32,50,32,48,32,48,32,48,32,50,45,50,118,45,49,104,49,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,55,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,49,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,53,122,77,52,32,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,54,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,50,72,52,86,51,122,109,49,32,53,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,55,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,49,118,45,49,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,53,122,109,55,32,50,118,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,54,97,49,32,49,32,48,32,48,32,49,32,49,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,114,105,110,116,101,114,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,114,105,110,116,101,114,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,49,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,104,49,48,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,53,122,109,54,32,56,72,53,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,51,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,54,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,55,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,51,97,50,32,50,32,48,32,48,32,49,45,50,32,50,104,45,49,118,45,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,53,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,55,122,109,50,46,53,32,49,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,32,46,53,46,53,32,48,32,48,32,48,32,48,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,117,122,122,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,117,122,122,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,49,49,50,32,51,46,54,52,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,46,54,48,53,32,50,72,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,46,51,56,50,99,48,32,46,54,57,54,45,46,52,57,55,32,49,46,49,56,50,45,46,56,55,50,32,49,46,52,54,57,97,46,52,53,57,46,52,53,57,32,48,32,48,32,48,45,46,49,49,53,46,49,49,56,46,49,49,51,46,49,49,51,32,48,32,48,32,48,45,46,48,49,50,46,48,50,53,76,54,46,53,32,52,46,53,118,46,48,48,51,108,46,48,48,51,46,48,49,99,46,48,48,52,46,48,49,46,48,49,52,46,48,50,56,46,48,51,54,46,48,53,51,97,46,56,54,46,56,54,32,48,32,48,32,48,32,46,50,55,46,49,57,52,67,55,46,48,57,32,52,46,57,32,55,46,53,49,32,53,32,56,32,53,99,46,52,57,50,32,48,32,46,57,49,50,45,46,49,32,49,46,49,57,45,46,50,52,97,46,56,54,46,56,54,32,48,32,48,32,48,32,46,50,55,49,45,46,49,57,52,46,50,49,51,46,50,49,51,32,48,32,48,32,48,32,46,48,51,57,45,46,48,54,51,118,45,46,48,48,57,97,46,49,49,50,46,49,49,50,32,48,32,48,32,48,45,46,48,49,50,45,46,48,50,53,46,52,53,57,46,52,53,57,32,48,32,48,32,48,45,46,49,49,53,45,46,49,49,56,99,45,46,51,55,53,45,46,50,56,55,45,46,56,55,50,45,46,55,55,51,45,46,56,55,50,45,49,46,52,54,57,86,50,46,53,65,46,53,46,53,32,48,32,48,32,49,32,57,32,50,104,50,46,51,57,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,52,57,51,32,49,46,54,52,53,76,49,50,46,54,52,53,32,54,46,53,104,46,50,51,55,99,46,49,57,53,32,48,32,46,52,50,45,46,49,52,55,46,54,55,53,45,46,52,56,46,50,49,45,46,50,55,52,46,53,50,56,45,46,53,50,46,57,52,51,45,46,53,50,46,53,54,56,32,48,32,46,57,52,55,46,52,52,55,32,49,46,49,53,52,46,56,54,50,67,49,53,46,56,55,55,32,54,46,56,48,55,32,49,54,32,55,46,51,56,55,32,49,54,32,56,115,45,46,49,50,51,32,49,46,49,57,51,45,46,51,52,54,32,49,46,54,51,56,99,45,46,50,48,55,46,52,49,53,45,46,53,56,54,46,56,54,50,45,49,46,49,53,52,46,56,54,50,45,46,52,49,53,32,48,45,46,55,51,51,45,46,50,52,54,45,46,57,52,51,45,46,53,50,45,46,50,53,53,45,46,51,51,51,45,46,52,56,45,46,52,56,45,46,54,55,53,45,46,52,56,104,45,46,50,51,55,108,46,50,52,51,32,50,46,56,53,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,49,46,51,57,53,32,49,52,72,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,46,51,56,50,99,48,45,46,54,57,54,46,52,57,55,45,49,46,49,56,50,46,56,55,50,45,49,46,52,54,57,97,46,52,53,57,46,52,53,57,32,48,32,48,32,48,32,46,49,49,53,45,46,49,49,56,46,49,49,51,46,49,49,51,32,48,32,48,32,48,32,46,48,49,50,45,46,48,50,53,76,57,46,53,32,49,49,46,53,118,45,46,48,48,51,97,46,50,49,52,46,50,49,52,32,48,32,48,32,48,45,46,48,51,57,45,46,48,54,52,46,56,53,57,46,56,53,57,32,48,32,48,32,48,45,46,50,55,45,46,49,57,51,67,56,46,57,49,32,49,49,46,49,32,56,46,52,57,32,49,49,32,56,32,49,49,99,45,46,52,57,49,32,48,45,46,57,49,50,46,49,45,49,46,49,57,46,50,52,97,46,56,53,57,46,56,53,57,32,48,32,48,32,48,45,46,50,55,49,46,49,57,52,46,50,49,52,46,50,49,52,32,48,32,48,32,48,45,46,48,51,57,46,48,54,51,118,46,48,48,51,108,46,48,48,49,46,48,48,54,97,46,49,49,51,46,49,49,51,32,48,32,48,32,48,32,46,48,49,50,46,48,50,53,99,46,48,49,54,46,48,50,55,46,48,53,46,48,54,56,46,49,49,53,46,49,49,56,46,51,55,53,46,50,56,55,46,56,55,50,46,55,55,51,46,56,55,50,32,49,46,52,54,57,118,46,51,56,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,52,46,54,48,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,52,57,51,45,49,46,54,52,53,76,51,46,51,53,54,32,57,46,53,104,45,46,50,51,56,99,45,46,49,57,53,32,48,45,46,52,50,46,49,52,55,45,46,54,55,53,46,52,56,45,46,50,49,46,50,55,52,45,46,53,50,56,46,53,50,45,46,57,52,51,46,53,50,45,46,53,54,56,32,48,45,46,57,52,55,45,46,52,52,55,45,49,46,49,53,52,45,46,56,54,50,67,46,49,50,51,32,57,46,49,57,51,32,48,32,56,46,54,49,51,32,48,32,56,115,46,49,50,51,45,49,46,49,57,51,46,51,52,54,45,49,46,54,51,56,67,46,53,53,51,32,53,46,57,52,55,46,57,51,50,32,53,46,53,32,49,46,53,32,53,46,53,99,46,52,49,53,32,48,32,46,55,51,51,46,50,52,54,46,57,52,51,46,53,50,46,50,53,53,46,51,51,51,46,52,56,46,52,56,46,54,55,53,46,52,56,104,46,50,51,56,108,45,46,50,52,52,45,50,46,56,53,53,122,77,52,46,54,48,53,32,51,97,46,53,46,53,32,48,32,48,32,48,45,46,52,57,56,46,53,53,108,46,48,48,49,46,48,48,55,46,50,57,32,51,46,52,65,46,53,46,53,32,48,32,48,32,49,32,51,46,57,32,55,46,53,104,45,46,55,56,50,99,45,46,54,57,54,32,48,45,49,46,49,56,50,45,46,52,57,55,45,49,46,52,54,57,45,46,56,55,50,97,46,52,53,57,46,52,53,57,32,48,32,48,32,48,45,46,49,49,56,45,46,49,49,53,46,49,49,50,46,49,49,50,32,48,32,48,32,48,45,46,48,50,53,45,46,48,49,50,76,49,46,53,32,54,46,53,104,45,46,48,48,51,97,46,50,49,51,46,50,49,51,32,48,32,48,32,48,45,46,48,54,52,46,48,51,57,46,56,54,46,56,54,32,48,32,48,32,48,45,46,49,57,51,46,50,55,67,49,46,49,32,55,46,48,57,32,49,32,55,46,53,49,32,49,32,56,99,48,32,46,52,57,49,46,49,46,57,49,50,46,50,52,32,49,46,49,57,46,48,55,46,49,52,46,49,52,46,50,50,53,46,49,57,52,46,50,55,49,97,46,50,49,51,46,50,49,51,32,48,32,48,32,48,32,46,48,54,51,46,48,51,57,72,49,46,53,108,46,48,48,54,45,46,48,48,49,97,46,49,49,50,46,49,49,50,32,48,32,48,32,48,32,46,48,50,53,45,46,48,49,50,46,52,53,57,46,52,53,57,32,48,32,48,32,48,32,46,49,49,56,45,46,49,49,53,99,46,50,56,55,45,46,51,55,53,46,55,55,51,45,46,56,55,50,32,49,46,52,54,57,45,46,56,55,50,72,51,46,57,97,46,53,46,53,32,48,32,48,32,49,32,46,52,57,56,46,53,52,50,108,45,46,50,57,32,51,46,52,48,56,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,55,46,53,53,104,49,46,56,55,56,99,45,46,48,52,56,45,46,49,54,54,45,46,49,57,53,45,46,51,53,50,45,46,52,54,51,45,46,53,53,55,45,46,50,55,52,45,46,50,49,45,46,53,50,45,46,53,50,56,45,46,53,50,45,46,57,52,51,32,48,45,46,53,54,56,46,52,52,55,45,46,57,52,55,46,56,54,50,45,49,46,49,53,52,67,54,46,56,48,55,32,49,48,46,49,50,51,32,55,46,51,56,55,32,49,48,32,56,32,49,48,115,49,46,49,57,51,46,49,50,51,32,49,46,54,51,56,46,51,52,54,99,46,52,49,53,46,50,48,55,46,56,54,50,46,53,56,54,46,56,54,50,32,49,46,49,53,52,32,48,32,46,52,49,53,45,46,50,52,54,46,55,51,51,45,46,53,50,46,57,52,51,45,46,50,54,56,46,50,48,53,45,46,52,49,53,46,51,57,45,46,52,54,51,46,53,53,55,104,49,46,56,55,56,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,56,45,46,53,53,108,45,46,48,48,49,45,46,48,48,55,45,46,50,57,45,51,46,52,65,46,53,46,53,32,48,32,48,32,49,32,49,50,46,49,32,56,46,53,104,46,55,56,50,99,46,54,57,54,32,48,32,49,46,49,56,50,46,52,57,55,32,49,46,52,54,57,46,56,55,50,46,48,53,46,48,54,53,46,48,57,49,46,48,57,57,46,49,49,56,46,49,49,53,46,48,49,51,46,48,48,56,46,48,50,49,46,48,49,46,48,50,53,46,48,49,50,97,46,48,50,46,48,50,32,48,32,48,32,48,32,46,48,48,54,46,48,48,49,104,46,48,48,51,97,46,50,49,52,46,50,49,52,32,48,32,48,32,48,32,46,48,54,52,45,46,48,51,57,46,56,54,46,56,54,32,48,32,48,32,48,32,46,49,57,51,45,46,50,55,99,46,49,52,45,46,50,56,46,50,52,45,46,55,46,50,52,45,49,46,49,57,49,32,48,45,46,52,57,50,45,46,49,45,46,57,49,50,45,46,50,52,45,49,46,49,57,97,46,56,54,46,56,54,32,48,32,48,32,48,45,46,49,57,52,45,46,50,55,49,46,50,49,53,46,50,49,53,32,48,32,48,32,48,45,46,48,54,51,45,46,48,51,57,72,49,52,46,53,108,45,46,48,48,54,46,48,48,49,97,46,49,49,51,46,49,49,51,32,48,32,48,32,48,45,46,48,50,53,46,48,49,50,46,52,53,57,46,52,53,57,32,48,32,48,32,48,45,46,49,49,56,46,49,49,53,99,45,46,50,56,55,46,51,55,53,45,46,55,55,51,46,56,55,50,45,49,46,52,54,57,46,56,55,50,72,49,50,46,49,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,56,45,46,53,52,51,108,46,50,57,45,51,46,52,48,55,97,46,53,46,53,32,48,32,48,32,48,45,46,52,57,55,45,46,53,53,72,57,46,53,49,55,99,46,48,52,56,46,49,54,54,46,49,57,53,46,51,53,50,46,52,54,51,46,53,53,55,46,50,55,52,46,50,49,46,53,50,46,53,50,56,46,53,50,46,57,52,51,32,48,32,46,53,54,56,45,46,52,52,55,46,57,52,55,45,46,56,54,50,32,49,46,49,53,52,67,57,46,49,57,51,32,53,46,56,55,55,32,56,46,54,49,51,32,54,32,56,32,54,115,45,49,46,49,57,51,45,46,49,50,51,45,49,46,54,51,56,45,46,51,52,54,67,53,46,57,52,55,32,53,46,52,52,55,32,53,46,53,32,53,46,48,54,56,32,53,46,53,32,52,46,53,99,48,45,46,52,49,53,46,50,52,54,45,46,55,51,51,46,53,50,45,46,57,52,51,46,50,54,56,45,46,50,48,53,46,52,49,53,45,46,51,57,46,52,54,51,45,46,53,53,55,72,52,46,54,48,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,80,117,122,122,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,80,117,122,122,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,49,49,50,32,51,46,54,52,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,46,54,48,53,32,50,72,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,46,51,56,50,99,48,32,46,54,57,54,45,46,52,57,55,32,49,46,49,56,50,45,46,56,55,50,32,49,46,52,54,57,97,46,52,53,57,46,52,53,57,32,48,32,48,32,48,45,46,49,49,53,46,49,49,56,46,49,49,51,46,49,49,51,32,48,32,48,32,48,45,46,48,49,50,46,48,50,53,76,54,46,53,32,52,46,53,118,46,48,48,51,108,46,48,48,51,46,48,49,99,46,48,48,52,46,48,49,46,48,49,52,46,48,50,56,46,48,51,54,46,48,53,51,97,46,56,54,46,56,54,32,48,32,48,32,48,32,46,50,55,46,49,57,52,67,55,46,48,57,32,52,46,57,32,55,46,53,49,32,53,32,56,32,53,99,46,52,57,50,32,48,32,46,57,49,50,45,46,49,32,49,46,49,57,45,46,50,52,97,46,56,54,46,56,54,32,48,32,48,32,48,32,46,50,55,49,45,46,49,57,52,46,50,49,51,46,50,49,51,32,48,32,48,32,48,32,46,48,51,54,45,46,48,53,52,108,46,48,48,51,45,46,48,49,118,45,46,48,48,56,97,46,49,49,50,46,49,49,50,32,48,32,48,32,48,45,46,48,49,50,45,46,48,50,53,46,52,53,57,46,52,53,57,32,48,32,48,32,48,45,46,49,49,53,45,46,49,49,56,99,45,46,51,55,53,45,46,50,56,55,45,46,56,55,50,45,46,55,55,51,45,46,56,55,50,45,49,46,52,54,57,86,50,46,53,65,46,53,46,53,32,48,32,48,32,49,32,57,32,50,104,50,46,51,57,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,52,57,51,32,49,46,54,52,53,76,49,50,46,54,52,53,32,54,46,53,104,46,50,51,55,99,46,49,57,53,32,48,32,46,52,50,45,46,49,52,55,46,54,55,53,45,46,52,56,46,50,49,45,46,50,55,52,46,53,50,56,45,46,53,50,46,57,52,51,45,46,53,50,46,53,54,56,32,48,32,46,57,52,55,46,52,52,55,32,49,46,49,53,52,46,56,54,50,67,49,53,46,56,55,55,32,54,46,56,48,55,32,49,54,32,55,46,51,56,55,32,49,54,32,56,115,45,46,49,50,51,32,49,46,49,57,51,45,46,51,52,54,32,49,46,54,51,56,99,45,46,50,48,55,46,52,49,53,45,46,53,56,54,46,56,54,50,45,49,46,49,53,52,46,56,54,50,45,46,52,49,53,32,48,45,46,55,51,51,45,46,50,52,54,45,46,57,52,51,45,46,53,50,45,46,50,53,53,45,46,51,51,51,45,46,52,56,45,46,52,56,45,46,54,55,53,45,46,52,56,104,45,46,50,51,55,108,46,50,52,51,32,50,46,56,53,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,49,46,51,57,53,32,49,52,72,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,46,51,56,50,99,48,45,46,54,57,54,46,52,57,55,45,49,46,49,56,50,46,56,55,50,45,49,46,52,54,57,97,46,52,53,57,46,52,53,57,32,48,32,48,32,48,32,46,49,49,53,45,46,49,49,56,46,49,49,51,46,49,49,51,32,48,32,48,32,48,32,46,48,49,50,45,46,48,50,53,76,57,46,53,32,49,49,46,53,118,45,46,48,48,51,108,45,46,48,48,51,45,46,48,49,97,46,50,49,52,46,50,49,52,32,48,32,48,32,48,45,46,48,51,54,45,46,48,53,51,46,56,53,57,46,56,53,57,32,48,32,48,32,48,45,46,50,55,45,46,49,57,52,67,56,46,57,49,32,49,49,46,49,32,56,46,52,57,32,49,49,32,56,32,49,49,99,45,46,52,57,49,32,48,45,46,57,49,50,46,49,45,49,46,49,57,46,50,52,97,46,56,53,57,46,56,53,57,32,48,32,48,32,48,45,46,50,55,49,46,49,57,52,46,50,49,52,46,50,49,52,32,48,32,48,32,48,45,46,48,51,54,46,48,53,52,108,45,46,48,48,51,46,48,49,118,46,48,48,50,108,46,48,48,49,46,48,48,54,97,46,49,49,51,46,49,49,51,32,48,32,48,32,48,32,46,48,49,50,46,48,50,53,99,46,48,49,54,46,48,50,55,46,48,53,46,48,54,56,46,49,49,53,46,49,49,56,46,51,55,53,46,50,56,55,46,56,55,50,46,55,55,51,46,56,55,50,32,49,46,52,54,57,118,46,51,56,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,52,46,54,48,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,52,57,51,45,49,46,54,52,53,76,51,46,51,53,54,32,57,46,53,104,45,46,50,51,56,99,45,46,49,57,53,32,48,45,46,52,50,46,49,52,55,45,46,54,55,53,46,52,56,45,46,50,49,46,50,55,52,45,46,53,50,56,46,53,50,45,46,57,52,51,46,53,50,45,46,53,54,56,32,48,45,46,57,52,55,45,46,52,52,55,45,49,46,49,53,52,45,46,56,54,50,67,46,49,50,51,32,57,46,49,57,51,32,48,32,56,46,54,49,51,32,48,32,56,115,46,49,50,51,45,49,46,49,57,51,46,51,52,54,45,49,46,54,51,56,67,46,53,53,51,32,53,46,57,52,55,46,57,51,50,32,53,46,53,32,49,46,53,32,53,46,53,99,46,52,49,53,32,48,32,46,55,51,51,46,50,52,54,46,57,52,51,46,53,50,46,50,53,53,46,51,51,51,46,52,56,46,52,56,46,54,55,53,46,52,56,104,46,50,51,56,108,45,46,50,52,52,45,50,46,56,53,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,81,117,101,115,116,105,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,81,117,101,115,116,105,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,50,53,53,32,53,46,55,56,54,97,46,50,51,55,46,50,51,55,32,48,32,48,32,48,32,46,50,52,49,46,50,52,55,104,46,56,50,53,99,46,49,51,56,32,48,32,46,50,52,56,45,46,49,49,51,46,50,54,54,45,46,50,53,46,48,57,45,46,54,53,54,46,53,52,45,49,46,49,51,52,32,49,46,51,52,50,45,49,46,49,51,52,46,54,56,54,32,48,32,49,46,51,49,52,46,51,52,51,32,49,46,51,49,52,32,49,46,49,54,56,32,48,32,46,54,51,53,45,46,51,55,52,46,57,50,55,45,46,57,54,53,32,49,46,51,55,49,45,46,54,55,51,46,52,56,57,45,49,46,50,48,54,32,49,46,48,54,45,49,46,49,54,56,32,49,46,57,56,55,108,46,48,48,51,46,50,49,55,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,46,50,52,54,104,46,56,49,49,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,45,46,50,53,118,45,46,49,48,53,99,48,45,46,55,49,56,46,50,55,51,45,46,57,50,55,32,49,46,48,49,45,49,46,52,56,54,46,54,48,57,45,46,52,54,51,32,49,46,50,52,52,45,46,57,55,55,32,49,46,50,52,52,45,50,46,48,53,54,32,48,45,49,46,53,49,49,45,49,46,50,55,54,45,50,46,50,52,49,45,50,46,54,55,51,45,50,46,50,52,49,45,49,46,50,54,55,32,48,45,50,46,54,53,53,46,53,57,45,50,46,55,53,32,50,46,50,56,54,122,109,49,46,53,53,55,32,53,46,55,54,51,99,48,32,46,53,51,51,46,52,50,53,46,57,50,55,32,49,46,48,49,46,57,50,55,46,54,48,57,32,48,32,49,46,48,50,56,45,46,51,57,52,32,49,46,48,50,56,45,46,57,50,55,32,48,45,46,53,53,50,45,46,52,50,45,46,57,52,45,49,46,48,50,57,45,46,57,52,45,46,53,56,52,32,48,45,49,46,48,48,57,46,51,56,56,45,49,46,48,48,57,46,57,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,81,117,101,115,116,105,111,110,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,50,53,53,32,53,46,55,56,54,97,46,50,51,55,46,50,51,55,32,48,32,48,32,48,32,46,50,52,49,46,50,52,55,104,46,56,50,53,99,46,49,51,56,32,48,32,46,50,52,56,45,46,49,49,51,46,50,54,54,45,46,50,53,46,48,57,45,46,54,53,54,46,53,52,45,49,46,49,51,52,32,49,46,51,52,50,45,49,46,49,51,52,46,54,56,54,32,48,32,49,46,51,49,52,46,51,52,51,32,49,46,51,49,52,32,49,46,49,54,56,32,48,32,46,54,51,53,45,46,51,55,52,46,57,50,55,45,46,57,54,53,32,49,46,51,55,49,45,46,54,55,51,46,52,56,57,45,49,46,50,48,54,32,49,46,48,54,45,49,46,49,54,56,32,49,46,57,56,55,108,46,48,48,51,46,50,49,55,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,46,50,52,54,104,46,56,49,49,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,45,46,50,53,118,45,46,49,48,53,99,48,45,46,55,49,56,46,50,55,51,45,46,57,50,55,32,49,46,48,49,45,49,46,52,56,54,46,54,48,57,45,46,52,54,51,32,49,46,50,52,52,45,46,57,55,55,32,49,46,50,52,52,45,50,46,48,53,54,32,48,45,49,46,53,49,49,45,49,46,50,55,54,45,50,46,50,52,49,45,50,46,54,55,51,45,50,46,50,52,49,45,49,46,50,54,55,32,48,45,50,46,54,53,53,46,53,57,45,50,46,55,53,32,50,46,50,56,54,122,109,49,46,53,53,55,32,53,46,55,54,51,99,48,32,46,53,51,51,46,52,50,53,46,57,50,55,32,49,46,48,49,46,57,50,55,46,54,48,57,32,48,32,49,46,48,50,56,45,46,51,57,52,32,49,46,48,50,56,45,46,57,50,55,32,48,45,46,53,53,50,45,46,52,50,45,46,57,52,45,49,46,48,50,57,45,46,57,52,45,46,53,56,52,32,48,45,49,46,48,48,57,46,51,56,56,45,49,46,48,48,57,46,57,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,81,117,101,115,116,105,111,110,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,53,46,52,57,54,32,54,46,48,51,51,104,46,56,50,53,99,46,49,51,56,32,48,32,46,50,52,56,45,46,49,49,51,46,50,54,54,45,46,50,53,46,48,57,45,46,54,53,54,46,53,52,45,49,46,49,51,52,32,49,46,51,52,50,45,49,46,49,51,52,46,54,56,54,32,48,32,49,46,51,49,52,46,51,52,51,32,49,46,51,49,52,32,49,46,49,54,56,32,48,32,46,54,51,53,45,46,51,55,52,46,57,50,55,45,46,57,54,53,32,49,46,51,55,49,45,46,54,55,51,46,52,56,57,45,49,46,50,48,54,32,49,46,48,54,45,49,46,49,54,56,32,49,46,57,56,55,108,46,48,48,51,46,50,49,55,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,46,50,52,54,104,46,56,49,49,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,45,46,50,53,118,45,46,49,48,53,99,48,45,46,55,49,56,46,50,55,51,45,46,57,50,55,32,49,46,48,49,45,49,46,52,56,54,46,54,48,57,45,46,52,54,51,32,49,46,50,52,52,45,46,57,55,55,32,49,46,50,52,52,45,50,46,48,53,54,32,48,45,49,46,53,49,49,45,49,46,50,55,54,45,50,46,50,52,49,45,50,46,54,55,51,45,50,46,50,52,49,45,49,46,50,54,55,32,48,45,50,46,54,53,53,46,53,57,45,50,46,55,53,32,50,46,50,56,54,97,46,50,51,55,46,50,51,55,32,48,32,48,32,48,32,46,50,52,49,46,50,52,55,122,109,50,46,51,50,53,32,54,46,52,52,51,99,46,54,49,32,48,32,49,46,48,50,57,45,46,51,57,52,32,49,46,48,50,57,45,46,57,50,55,32,48,45,46,53,53,50,45,46,52,50,45,46,57,52,45,49,46,48,50,57,45,46,57,52,45,46,53,56,52,32,48,45,49,46,48,48,57,46,51,56,56,45,49,46,48,48,57,46,57,52,32,48,32,46,53,51,51,46,52,50,53,46,57,50,55,32,49,46,48,49,46,57,50,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,57,53,46,52,51,53,99,46,53,56,45,46,53,56,32,49,46,53,50,45,46,53,56,32,50,46,49,32,48,108,54,46,53,49,53,32,54,46,53,49,54,99,46,53,56,46,53,56,46,53,56,32,49,46,53,49,57,32,48,32,50,46,48,57,56,76,57,46,48,53,32,49,53,46,53,54,53,99,45,46,53,56,46,53,56,45,49,46,53,49,57,46,53,56,45,50,46,48,57,56,32,48,76,46,52,51,53,32,57,46,48,53,97,49,46,52,56,50,32,49,46,52,56,50,32,48,32,48,32,49,32,48,45,50,46,48,57,56,76,54,46,57,53,46,52,51,53,122,109,49,46,52,46,55,97,46,52,57,53,46,52,57,53,32,48,32,48,32,48,45,46,55,32,48,76,49,46,49,51,52,32,55,46,54,53,97,46,52,57,53,46,52,57,53,32,48,32,48,32,48,32,48,32,46,55,108,54,46,53,49,54,32,54,46,53,49,54,97,46,52,57,53,46,52,57,53,32,48,32,48,32,48,32,46,55,32,48,108,54,46,53,49,54,45,54,46,53,49,54,97,46,52,57,53,46,52,57,53,32,48,32,48,32,48,32,48,45,46,55,76,56,46,51,53,32,49,46,49,51,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,50,53,53,32,53,46,55,56,54,97,46,50,51,55,46,50,51,55,32,48,32,48,32,48,32,46,50,52,49,46,50,52,55,104,46,56,50,53,99,46,49,51,56,32,48,32,46,50,52,56,45,46,49,49,51,46,50,54,54,45,46,50,53,46,48,57,45,46,54,53,54,46,53,52,45,49,46,49,51,52,32,49,46,51,52,50,45,49,46,49,51,52,46,54,56,54,32,48,32,49,46,51,49,52,46,51,52,51,32,49,46,51,49,52,32,49,46,49,54,56,32,48,32,46,54,51,53,45,46,51,55,52,46,57,50,55,45,46,57,54,53,32,49,46,51,55,49,45,46,54,55,51,46,52,56,57,45,49,46,50,48,54,32,49,46,48,54,45,49,46,49,54,56,32,49,46,57,56,55,108,46,48,48,51,46,50,49,55,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,46,50,52,54,104,46,56,49,49,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,45,46,50,53,118,45,46,49,48,53,99,48,45,46,55,49,56,46,50,55,51,45,46,57,50,55,32,49,46,48,49,45,49,46,52,56,54,46,54,48,57,45,46,52,54,51,32,49,46,50,52,52,45,46,57,55,55,32,49,46,50,52,52,45,50,46,48,53,54,32,48,45,49,46,53,49,49,45,49,46,50,55,54,45,50,46,50,52,49,45,50,46,54,55,51,45,50,46,50,52,49,45,49,46,50,54,55,32,48,45,50,46,54,53,53,46,53,57,45,50,46,55,53,32,50,46,50,56,54,122,109,49,46,53,53,55,32,53,46,55,54,51,99,48,32,46,53,51,51,46,52,50,53,46,57,50,55,32,49,46,48,49,46,57,50,55,46,54,48,57,32,48,32,49,46,48,50,56,45,46,51,57,52,32,49,46,48,50,56,45,46,57,50,55,32,48,45,46,53,53,50,45,46,52,50,45,46,57,52,45,49,46,48,50,57,45,46,57,52,45,46,53,56,52,32,48,45,49,46,48,48,57,46,51,56,56,45,49,46,48,48,57,46,57,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,48,53,46,52,51,53,99,45,46,53,56,45,46,53,56,45,49,46,53,50,45,46,53,56,45,50,46,49,32,48,76,46,52,51,54,32,54,46,57,53,99,45,46,53,56,46,53,56,45,46,53,56,32,49,46,53,49,57,32,48,32,50,46,48,57,56,108,54,46,53,49,54,32,54,46,53,49,54,99,46,53,56,46,53,56,32,49,46,53,49,57,46,53,56,32,50,46,48,57,56,32,48,108,54,46,53,49,54,45,54,46,53,49,54,99,46,53,56,45,46,53,56,46,53,56,45,49,46,53,49,57,32,48,45,50,46,48,57,56,76,57,46,48,53,46,52,51,53,122,77,53,46,52,57,53,32,54,46,48,51,51,97,46,50,51,55,46,50,51,55,32,48,32,48,32,49,45,46,50,52,45,46,50,52,55,67,53,46,51,53,32,52,46,48,57,49,32,54,46,55,51,55,32,51,46,53,32,56,46,48,48,53,32,51,46,53,99,49,46,51,57,54,32,48,32,50,46,54,55,50,46,55,51,32,50,46,54,55,50,32,50,46,50,52,32,48,32,49,46,48,56,45,46,54,51,53,32,49,46,53,57,52,45,49,46,50,52,52,32,50,46,48,53,55,45,46,55,51,55,46,53,53,57,45,49,46,48,49,46,55,54,56,45,49,46,48,49,32,49,46,52,56,54,118,46,49,48,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,56,49,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,45,46,50,52,54,108,45,46,48,48,52,45,46,50,49,55,99,45,46,48,51,56,45,46,57,50,55,46,52,57,53,45,49,46,52,57,56,32,49,46,49,54,56,45,49,46,57,56,55,46,53,57,45,46,52,52,52,46,57,54,53,45,46,55,51,54,46,57,54,53,45,49,46,51,55,49,32,48,45,46,56,50,53,45,46,54,50,56,45,49,46,49,54,56,45,49,46,51,49,52,45,49,46,49,54,56,45,46,56,48,51,32,48,45,49,46,50,53,51,46,52,55,56,45,49,46,51,52,50,32,49,46,49,51,52,45,46,48,49,56,46,49,51,55,45,46,49,50,56,46,50,53,45,46,50,54,54,46,50,53,104,45,46,56,50,53,122,109,50,46,51,50,53,32,54,46,52,52,51,99,45,46,53,56,52,32,48,45,49,46,48,48,57,45,46,51,57,52,45,49,46,48,48,57,45,46,57,50,55,32,48,45,46,53,53,50,46,52,50,53,45,46,57,52,32,49,46,48,49,45,46,57,52,46,54,48,57,32,48,32,49,46,48,50,56,46,51,56,56,32,49,46,48,50,56,46,57,52,32,48,32,46,53,51,51,45,46,52,50,46,57,50,55,45,49,46,48,50,57,46,57,50,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,52,46,49,52,54,65,46,53,46,53,32,48,32,48,32,49,32,52,46,56,57,51,32,48,104,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,51,53,51,46,49,52,54,108,52,46,51,57,52,32,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,49,32,46,49,52,54,46,51,53,51,118,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,49,45,46,49,52,54,46,51,53,51,108,45,52,46,51,57,52,32,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,49,45,46,51,53,51,46,49,52,54,72,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,49,45,46,51,53,51,45,46,49,52,54,76,46,49,52,54,32,49,49,46,52,54,65,46,53,46,53,32,48,32,48,32,49,32,48,32,49,49,46,49,48,55,86,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,49,32,46,49,52,54,45,46,51,53,51,76,52,46,53,52,46,49,52,54,122,77,53,46,49,32,49,76,49,32,53,46,49,118,53,46,56,76,53,46,49,32,49,53,104,53,46,56,108,52,46,49,45,52,46,49,86,53,46,49,76,49,48,46,57,32,49,72,53,46,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,50,53,53,32,53,46,55,56,54,97,46,50,51,55,46,50,51,55,32,48,32,48,32,48,32,46,50,52,49,46,50,52,55,104,46,56,50,53,99,46,49,51,56,32,48,32,46,50,52,56,45,46,49,49,51,46,50,54,54,45,46,50,53,46,48,57,45,46,54,53,54,46,53,52,45,49,46,49,51,52,32,49,46,51,52,50,45,49,46,49,51,52,46,54,56,54,32,48,32,49,46,51,49,52,46,51,52,51,32,49,46,51,49,52,32,49,46,49,54,56,32,48,32,46,54,51,53,45,46,51,55,52,46,57,50,55,45,46,57,54,53,32,49,46,51,55,49,45,46,54,55,51,46,52,56,57,45,49,46,50,48,54,32,49,46,48,54,45,49,46,49,54,56,32,49,46,57,56,55,108,46,48,48,51,46,50,49,55,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,46,50,52,54,104,46,56,49,49,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,45,46,50,53,118,45,46,49,48,53,99,48,45,46,55,49,56,46,50,55,51,45,46,57,50,55,32,49,46,48,49,45,49,46,52,56,54,46,54,48,57,45,46,52,54,51,32,49,46,50,52,52,45,46,57,55,55,32,49,46,50,52,52,45,50,46,48,53,54,32,48,45,49,46,53,49,49,45,49,46,50,55,54,45,50,46,50,52,49,45,50,46,54,55,51,45,50,46,50,52,49,45,49,46,50,54,55,32,48,45,50,46,54,53,53,46,53,57,45,50,46,55,53,32,50,46,50,56,54,122,109,49,46,53,53,55,32,53,46,55,54,51,99,48,32,46,53,51,51,46,52,50,53,46,57,50,55,32,49,46,48,49,46,57,50,55,46,54,48,57,32,48,32,49,46,48,50,56,45,46,51,57,52,32,49,46,48,50,56,45,46,57,50,55,32,48,45,46,53,53,50,45,46,52,50,45,46,57,52,45,49,46,48,50,57,45,46,57,52,45,46,53,56,52,32,48,45,49,46,48,48,57,46,51,56,56,45,49,46,48,48,57,46,57,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,52,54,46,49,52,54,65,46,53,46,53,32,48,32,48,32,48,32,49,49,46,49,48,55,32,48,72,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,48,45,46,51,53,51,46,49,52,54,76,46,49,52,54,32,52,46,53,52,65,46,53,46,53,32,48,32,48,32,48,32,48,32,52,46,56,57,51,118,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,48,32,46,49,52,54,46,51,53,51,108,52,46,51,57,52,32,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,48,32,46,51,53,51,46,49,52,54,104,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,48,32,46,51,53,51,45,46,49,52,54,108,52,46,51,57,52,45,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,48,32,46,49,52,54,45,46,51,53,51,86,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,48,45,46,49,52,54,45,46,51,53,51,76,49,49,46,52,54,46,49,52,54,122,77,53,46,52,57,54,32,54,46,48,51,51,97,46,50,51,55,46,50,51,55,32,48,32,48,32,49,45,46,50,52,45,46,50,52,55,67,53,46,51,53,32,52,46,48,57,49,32,54,46,55,51,55,32,51,46,53,32,56,46,48,48,53,32,51,46,53,99,49,46,51,57,54,32,48,32,50,46,54,55,50,46,55,51,32,50,46,54,55,50,32,50,46,50,52,32,48,32,49,46,48,56,45,46,54,51,53,32,49,46,53,57,52,45,49,46,50,52,52,32,50,46,48,53,55,45,46,55,51,55,46,53,53,57,45,49,46,48,49,46,55,54,56,45,49,46,48,49,32,49,46,52,56,54,118,46,49,48,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,56,49,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,45,46,50,52,54,108,45,46,48,48,52,45,46,50,49,55,99,45,46,48,51,56,45,46,57,50,55,46,52,57,53,45,49,46,52,57,56,32,49,46,49,54,56,45,49,46,57,56,55,46,53,57,45,46,52,52,52,46,57,54,53,45,46,55,51,54,46,57,54,53,45,49,46,51,55,49,32,48,45,46,56,50,53,45,46,54,50,56,45,49,46,49,54,56,45,49,46,51,49,52,45,49,46,49,54,56,45,46,56,48,51,32,48,45,49,46,50,53,51,46,52,55,56,45,49,46,51,52,50,32,49,46,49,51,52,45,46,48,49,56,46,49,51,55,45,46,49,50,56,46,50,53,45,46,50,54,54,46,50,53,104,45,46,56,50,53,122,109,50,46,51,50,53,32,54,46,52,52,51,99,45,46,53,56,52,32,48,45,49,46,48,48,57,45,46,51,57,52,45,49,46,48,48,57,45,46,57,50,55,32,48,45,46,53,53,50,46,52,50,53,45,46,57,52,32,49,46,48,49,45,46,57,52,46,54,48,57,32,48,32,49,46,48,50,56,46,51,56,56,32,49,46,48,50,56,46,57,52,32,48,32,46,53,51,51,45,46,52,50,46,57,50,55,45,49,46,48,50,57,46,57,50,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,81,117,101,115,116,105,111,110,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,50,53,53,32,53,46,55,56,54,97,46,50,51,55,46,50,51,55,32,48,32,48,32,48,32,46,50,52,49,46,50,52,55,104,46,56,50,53,99,46,49,51,56,32,48,32,46,50,52,56,45,46,49,49,51,46,50,54,54,45,46,50,53,46,48,57,45,46,54,53,54,46,53,52,45,49,46,49,51,52,32,49,46,51,52,50,45,49,46,49,51,52,46,54,56,54,32,48,32,49,46,51,49,52,46,51,52,51,32,49,46,51,49,52,32,49,46,49,54,56,32,48,32,46,54,51,53,45,46,51,55,52,46,57,50,55,45,46,57,54,53,32,49,46,51,55,49,45,46,54,55,51,46,52,56,57,45,49,46,50,48,54,32,49,46,48,54,45,49,46,49,54,56,32,49,46,57,56,55,108,46,48,48,51,46,50,49,55,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,46,50,52,54,104,46,56,49,49,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,53,45,46,50,53,118,45,46,49,48,53,99,48,45,46,55,49,56,46,50,55,51,45,46,57,50,55,32,49,46,48,49,45,49,46,52,56,54,46,54,48,57,45,46,52,54,51,32,49,46,50,52,52,45,46,57,55,55,32,49,46,50,52,52,45,50,46,48,53,54,32,48,45,49,46,53,49,49,45,49,46,50,55,54,45,50,46,50,52,49,45,50,46,54,55,51,45,50,46,50,52,49,45,49,46,50,54,55,32,48,45,50,46,54,53,53,46,53,57,45,50,46,55,53,32,50,46,50,56,54,122,109,49,46,53,53,55,32,53,46,55,54,51,99,48,32,46,53,51,51,46,52,50,53,46,57,50,55,32,49,46,48,49,46,57,50,55,46,54,48,57,32,48,32,49,46,48,50,56,45,46,51,57,52,32,49,46,48,50,56,45,46,57,50,55,32,48,45,46,53,53,50,45,46,52,50,45,46,57,52,45,49,46,48,50,57,45,46,57,52,45,46,53,56,52,32,48,45,49,46,48,48,57,46,51,56,56,45,49,46,48,48,57,46,57,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,81,117,101,115,116,105,111,110,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,51,46,52,57,54,32,54,46,48,51,51,97,46,50,51,55,46,50,51,55,32,48,32,48,32,49,45,46,50,52,45,46,50,52,55,67,53,46,51,53,32,52,46,48,57,49,32,54,46,55,51,55,32,51,46,53,32,56,46,48,48,53,32,51,46,53,99,49,46,51,57,54,32,48,32,50,46,54,55,50,46,55,51,32,50,46,54,55,50,32,50,46,50,52,32,48,32,49,46,48,56,45,46,54,51,53,32,49,46,53,57,52,45,49,46,50,52,52,32,50,46,48,53,55,45,46,55,51,55,46,53,53,57,45,49,46,48,49,46,55,54,56,45,49,46,48,49,32,49,46,52,56,54,118,46,49,48,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,46,50,53,104,45,46,56,49,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,53,45,46,50,52,54,108,45,46,48,48,52,45,46,50,49,55,99,45,46,48,51,56,45,46,57,50,55,46,52,57,53,45,49,46,52,57,56,32,49,46,49,54,56,45,49,46,57,56,55,46,53,57,45,46,52,52,52,46,57,54,53,45,46,55,51,54,46,57,54,53,45,49,46,51,55,49,32,48,45,46,56,50,53,45,46,54,50,56,45,49,46,49,54,56,45,49,46,51,49,52,45,49,46,49,54,56,45,46,56,48,51,32,48,45,49,46,50,53,51,46,52,55,56,45,49,46,51,52,50,32,49,46,49,51,52,45,46,48,49,56,46,49,51,55,45,46,49,50,56,46,50,53,45,46,50,54,54,46,50,53,104,45,46,56,50,53,122,109,50,46,51,50,53,32,54,46,52,52,51,99,45,46,53,56,52,32,48,45,49,46,48,48,57,45,46,51,57,52,45,49,46,48,48,57,45,46,57,50,55,32,48,45,46,53,53,50,46,52,50,53,45,46,57,52,32,49,46,48,49,45,46,57,52,46,54,48,57,32,48,32,49,46,48,50,56,46,51,56,56,32,49,46,48,50,56,46,57,52,32,48,32,46,53,51,51,45,46,52,50,46,57,50,55,45,49,46,48,50,57,46,57,50,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,99,101,105,112,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,99,101,105,112,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,57,50,46,53,48,54,97,46,53,46,53,32,48,32,48,32,49,32,46,52,51,52,46,49,52,76,51,32,49,46,50,57,51,108,46,54,52,54,45,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,53,32,49,46,50,57,51,108,46,54,52,54,45,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,55,32,49,46,50,57,51,108,46,54,52,54,45,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,57,32,49,46,50,57,51,108,46,54,52,54,45,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,46,54,52,54,46,54,52,55,46,54,52,54,45,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,46,54,52,54,46,54,52,55,46,54,52,54,45,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,56,48,49,46,49,51,108,46,53,32,49,65,46,53,46,53,32,48,32,48,32,49,32,49,53,32,50,118,49,50,97,46,53,46,53,32,48,32,48,32,49,45,46,48,53,51,46,50,50,52,108,45,46,53,32,49,97,46,53,46,53,32,48,32,48,32,49,45,46,56,46,49,51,76,49,51,32,49,52,46,55,48,55,108,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,76,49,49,32,49,52,46,55,48,55,108,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,76,57,32,49,52,46,55,48,55,108,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,76,55,32,49,52,46,55,48,55,108,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,76,53,32,49,52,46,55,48,55,108,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,76,51,32,49,52,46,55,48,55,108,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,56,48,49,45,46,49,51,108,45,46,53,45,49,65,46,53,46,53,32,48,32,48,32,49,32,49,32,49,52,86,50,97,46,53,46,53,32,48,32,48,32,49,32,46,48,53,51,45,46,50,50,52,108,46,53,45,49,97,46,53,46,53,32,48,32,48,32,49,32,46,51,54,55,45,46,50,55,122,109,46,50,49,55,32,49,46,51,51,56,76,50,32,50,46,49,49,56,118,49,49,46,55,54,52,108,46,49,51,55,46,50,55,52,46,53,49,45,46,53,49,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,32,48,108,46,54,52,54,46,54,52,55,46,54,52,54,45,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,46,54,52,54,46,54,52,54,46,54,52,54,45,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,46,54,52,54,46,54,52,54,46,54,52,54,45,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,46,54,52,54,46,54,52,54,46,54,52,54,45,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,46,54,52,54,46,54,52,54,46,54,52,54,45,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,46,53,48,57,46,53,48,57,46,49,51,55,45,46,50,55,52,86,50,46,49,49,56,108,45,46,49,51,55,45,46,50,55,52,45,46,53,49,46,53,49,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,55,32,48,76,49,50,32,49,46,55,48,55,108,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,76,49,48,32,49,46,55,48,55,108,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,76,56,32,49,46,55,48,55,108,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,76,54,32,49,46,55,48,55,108,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,76,52,32,49,46,55,48,55,108,45,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,46,53,48,57,45,46,53,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,32,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,49,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,49,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,49,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,56,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,99,101,105,112,116,67,117,116,111,102,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,99,101,105,112,116,67,117,116,111,102,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,49,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,49,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,49,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,49,49,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,122,109,48,32,50,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,46,51,53,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,56,48,49,46,49,51,108,45,46,53,32,49,65,46,53,46,53,32,48,32,48,32,48,32,49,32,50,118,49,51,72,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,49,53,86,50,97,46,53,46,53,32,48,32,48,32,48,45,46,48,53,51,45,46,50,50,52,108,45,46,53,45,49,97,46,53,46,53,32,48,32,48,32,48,45,46,56,45,46,49,51,76,49,51,32,49,46,50,57,51,108,45,46,54,52,54,45,46,54,52,55,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,76,49,49,32,49,46,50,57,51,108,45,46,54,52,54,45,46,54,52,55,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,76,57,32,49,46,50,57,51,32,56,46,51,53,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,76,55,32,49,46,50,57,51,32,54,46,51,53,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,76,53,32,49,46,50,57,51,32,52,46,51,53,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,76,51,32,49,46,50,57,51,32,50,46,51,53,52,46,54,52,54,122,109,45,46,50,49,55,32,49,46,49,57,56,108,46,53,49,46,53,49,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,55,32,48,76,52,32,49,46,55,48,55,108,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,76,54,32,49,46,55,48,55,108,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,76,56,32,49,46,55,48,55,108,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,76,49,48,32,49,46,55,48,55,108,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,76,49,50,32,49,46,55,48,55,108,46,54,52,54,46,54,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,46,53,48,57,45,46,53,49,46,49,51,55,46,50,55,52,86,49,53,72,50,86,50,46,49,49,56,108,46,49,51,55,45,46,50,55,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,99,101,112,116,105,111,110,48,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,99,101,112,116,105,111,110,48,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,52,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,52,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,52,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,99,101,112,116,105,111,110,49,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,99,101,112,116,105,111,110,49,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,122,109,52,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,52,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,52,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,99,101,112,116,105,111,110,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,99,101,112,116,105,111,110,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,122,109,52,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,53,122,109,52,32,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,52,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,99,101,112,116,105,111,110,51,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,99,101,112,116,105,111,110,51,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,122,109,52,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,53,122,109,52,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,56,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,56,122,109,52,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,99,101,112,116,105,111,110,52,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,99,101,112,116,105,111,110,52,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,50,122,109,52,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,53,122,109,52,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,56,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,56,122,109,52,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,99,111,114,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,99,111,114,100,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,49,50,97,52,32,52,32,48,32,49,32,48,32,48,45,56,32,52,32,52,32,48,32,48,32,48,32,48,32,56,122,109,48,32,49,65,53,32,53,32,48,32,49,32,48,32,56,32,51,97,53,32,53,32,48,32,48,32,48,32,48,32,49,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,99,111,114,100,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,99,111,114,100,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,50,97,52,32,52,32,48,32,49,32,49,32,48,45,56,32,52,32,52,32,48,32,48,32,49,32,48,32,56,122,109,48,32,49,65,53,32,53,32,48,32,49,32,48,32,56,32,51,97,53,32,53,32,48,32,48,32,48,32,48,32,49,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,32,56,97,50,32,50,32,48,32,49,32,49,45,52,32,48,32,50,32,50,32,48,32,48,32,49,32,52,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,99,111,114,100,50,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,99,111,114,100,50,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,32,56,97,50,32,50,32,48,32,49,32,49,45,52,32,48,32,50,32,50,32,48,32,48,32,49,32,52,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,49,51,65,53,32,53,32,48,32,49,32,48,32,56,32,51,97,53,32,53,32,48,32,48,32,48,32,48,32,49,48,122,109,48,45,50,97,51,32,51,32,48,32,49,32,49,32,48,45,54,32,51,32,51,32,48,32,48,32,49,32,48,32,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,99,111,114,100,66,116,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,99,111,114,100,66,116,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,49,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,122,109,49,53,32,48,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,99,111,114,100,66,116,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,99,111,114,100,66,116,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,50,86,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,122,109,56,45,49,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,99,111,114,100,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,32,56,97,51,32,51,32,48,32,49,32,49,45,54,32,48,32,51,32,51,32,48,32,48,32,49,32,54,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,99,111,114,100,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,109,45,56,32,51,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,99,111,114,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,99,111,114,100,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,49,51,65,53,32,53,32,48,32,49,32,48,32,56,32,51,97,53,32,53,32,48,32,48,32,48,32,48,32,49,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,112,108,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,112,108,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,53,48,50,32,53,46,48,49,51,97,46,49,52,52,46,49,52,52,32,48,32,48,32,48,45,46,50,48,50,46,49,51,52,86,54,46,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,99,45,46,54,54,55,32,48,45,50,46,48,49,51,46,48,48,53,45,51,46,51,46,56,50,50,45,46,57,56,52,46,54,50,52,45,49,46,57,57,32,49,46,55,54,45,50,46,53,57,53,32,51,46,56,55,54,67,51,46,57,50,53,32,49,48,46,53,49,53,32,53,46,48,57,32,57,46,57,56,50,32,54,46,49,49,32,57,46,55,97,56,46,55,52,49,32,56,46,55,52,49,32,48,32,48,32,49,32,49,46,57,50,49,45,46,51,48,54,32,55,46,52,48,51,32,55,46,52,48,51,32,48,32,48,32,49,32,46,55,57,56,46,48,48,56,104,46,48,49,51,108,46,48,48,53,46,48,48,49,104,46,48,48,49,76,56,46,56,32,57,46,57,108,46,48,53,45,46,52,57,56,97,46,53,46,53,32,48,32,48,32,49,32,46,52,53,46,52,57,56,118,49,46,49,53,51,99,48,32,46,49,48,56,46,49,49,46,49,55,54,46,50,48,50,46,49,51,52,108,51,46,57,56,52,45,50,46,57,51,51,97,46,52,57,52,46,52,57,52,32,48,32,48,32,49,32,46,48,52,50,45,46,48,50,56,46,49,52,55,46,49,52,55,32,48,32,48,32,48,32,48,45,46,50,53,50,46,52,57,52,46,52,57,52,32,48,32,48,32,49,45,46,48,52,50,45,46,48,50,56,76,57,46,53,48,50,32,53,46,48,49,51,122,77,56,46,51,32,49,48,46,51,56,54,97,55,46,55,52,53,32,55,46,55,52,53,32,48,32,48,32,48,45,49,46,57,50,51,46,50,55,55,99,45,49,46,51,50,54,46,51,54,56,45,50,46,56,57,54,32,49,46,50,48,49,45,51,46,57,52,32,51,46,48,56,97,46,53,46,53,32,48,32,48,32,49,45,46,57,51,51,45,46,51,48,53,99,46,52,54,52,45,51,46,55,49,32,49,46,56,56,54,45,53,46,54,54,50,32,51,46,52,54,45,54,46,54,54,32,49,46,50,52,53,45,46,55,57,32,50,46,53,50,55,45,46,57,52,50,32,51,46,51,51,54,45,46,57,55,49,118,45,46,54,54,97,49,46,49,52,52,32,49,46,49,52,52,32,48,32,48,32,49,32,49,46,55,54,55,45,46,57,54,108,51,46,57,57,52,32,50,46,57,52,97,49,46,49,52,55,32,49,46,49,52,55,32,48,32,48,32,49,32,48,32,49,46,57,52,54,108,45,51,46,57,57,52,32,50,46,57,52,97,49,46,49,52,52,32,49,46,49,52,52,32,48,32,48,32,49,45,49,46,55,54,55,45,46,57,54,118,45,46,54,54,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,112,108,121,65,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,112,108,121,65,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,48,48,50,32,53,46,48,49,51,97,46,49,52,52,46,49,52,52,32,48,32,48,32,48,45,46,50,48,50,46,49,51,52,86,54,46,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,99,45,46,54,54,55,32,48,45,50,46,48,49,51,46,48,48,53,45,51,46,51,46,56,50,50,45,46,57,56,52,46,54,50,52,45,49,46,57,57,32,49,46,55,54,45,50,46,53,57,53,32,51,46,56,55,54,67,50,46,52,50,53,32,49,48,46,53,49,53,32,51,46,53,57,32,57,46,57,56,50,32,52,46,54,49,32,57,46,55,97,56,46,55,52,49,32,56,46,55,52,49,32,48,32,48,32,49,32,49,46,57,50,49,45,46,51,48,54,32,55,46,52,48,51,32,55,46,52,48,51,32,48,32,48,32,49,32,46,55,57,56,46,48,48,56,104,46,48,49,51,108,46,48,48,53,46,48,48,49,104,46,48,48,49,76,55,46,51,32,57,46,57,108,46,48,53,45,46,52,57,56,97,46,53,46,53,32,48,32,48,32,49,32,46,52,53,46,52,57,56,118,49,46,49,53,51,99,48,32,46,49,48,56,46,49,49,46,49,55,54,46,50,48,50,46,49,51,52,108,51,46,57,56,52,45,50,46,57,51,51,97,46,52,57,52,46,52,57,52,32,48,32,48,32,49,32,46,48,52,50,45,46,48,50,56,46,49,52,55,46,49,52,55,32,48,32,48,32,48,32,48,45,46,50,53,50,46,52,57,52,46,52,57,52,32,48,32,48,32,49,45,46,48,52,50,45,46,48,50,56,76,56,46,48,48,50,32,53,46,48,49,51,122,77,54,46,56,32,49,48,46,51,56,54,97,55,46,55,52,53,32,55,46,55,52,53,32,48,32,48,32,48,45,49,46,57,50,51,46,50,55,55,99,45,49,46,51,50,54,46,51,54,56,45,50,46,56,57,54,32,49,46,50,48,49,45,51,46,57,52,32,51,46,48,56,97,46,53,46,53,32,48,32,48,32,49,45,46,57,51,51,45,46,51,48,53,99,46,52,54,52,45,51,46,55,49,32,49,46,56,56,54,45,53,46,54,54,50,32,51,46,52,54,45,54,46,54,54,32,49,46,50,52,53,45,46,55,57,32,50,46,53,50,55,45,46,57,52,50,32,51,46,51,51,54,45,46,57,55,49,118,45,46,54,54,97,49,46,49,52,52,32,49,46,49,52,52,32,48,32,48,32,49,32,49,46,55,54,55,45,46,57,54,108,51,46,57,57,52,32,50,46,57,52,97,49,46,49,52,55,32,49,46,49,52,55,32,48,32,48,32,49,32,48,32,49,46,57,52,54,108,45,51,46,57,57,52,32,50,46,57,52,97,49,46,49,52,52,32,49,46,49,52,52,32,48,32,48,32,49,45,49,46,55,54,55,45,46,57,54,118,45,46,54,54,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,56,54,56,32,52,46,50,57,51,97,46,53,46,53,32,48,32,48,32,49,32,46,55,45,46,49,48,54,108,51,46,57,57,51,32,50,46,57,52,97,49,46,49,52,55,32,49,46,49,52,55,32,48,32,48,32,49,32,48,32,49,46,57,52,54,108,45,51,46,57,57,52,32,50,46,57,52,97,46,53,46,53,32,48,32,49,32,49,45,46,53,57,51,45,46,56,48,53,108,52,46,48,49,50,45,50,46,57,53,52,97,46,53,48,56,46,53,48,56,32,48,32,48,32,49,32,46,48,52,50,45,46,48,50,56,46,49,52,55,46,49,52,55,32,48,32,48,32,48,32,48,45,46,50,53,50,46,53,48,56,46,53,48,56,32,48,32,48,32,49,45,46,48,52,50,45,46,48,50,56,108,45,52,46,48,49,50,45,50,46,57,53,52,97,46,53,46,53,32,48,32,48,32,49,45,46,49,48,54,45,46,54,57,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,112,108,121,65,108,108,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,112,108,121,65,108,108,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,48,55,57,32,49,49,46,57,108,52,46,53,54,56,45,51,46,50,56,49,97,46,55,49,57,46,55,49,57,32,48,32,48,32,48,32,48,45,49,46,50,51,56,76,56,46,48,55,57,32,52,46,49,65,46,55,49,54,46,55,49,54,32,48,32,48,32,48,32,55,32,52,46,55,49,57,86,54,99,45,49,46,53,32,48,45,54,32,48,45,55,32,56,32,50,46,53,45,52,46,53,32,55,45,52,32,55,45,52,118,49,46,50,56,49,99,48,32,46,53,54,46,54,48,54,46,56,57,56,32,49,46,48,55,57,46,54,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,56,54,56,32,52,46,50,57,51,97,46,53,46,53,32,48,32,48,32,48,32,46,49,48,54,46,55,108,52,46,48,49,50,32,50,46,57,53,51,97,46,53,49,46,53,49,32,48,32,48,32,48,32,46,48,52,50,46,48,50,56,46,49,52,55,46,49,52,55,32,48,32,48,32,49,32,48,32,46,50,53,50,46,53,49,50,46,53,49,50,32,48,32,48,32,48,45,46,48,52,50,46,48,50,56,108,45,52,46,48,49,50,32,50,46,57,53,52,97,46,53,46,53,32,48,32,49,32,48,32,46,53,57,51,46,56,48,53,108,51,46,57,57,52,45,50,46,57,52,97,49,46,49,52,55,32,49,46,49,52,55,32,48,32,48,32,48,32,48,45,49,46,57,52,54,108,45,51,46,57,57,52,45,50,46,57,52,97,46,53,46,53,32,48,32,48,32,48,45,46,54,57,57,46,49,48,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,101,112,108,121,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,101,112,108,121,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,48,55,57,32,49,49,46,57,108,52,46,53,54,56,45,51,46,50,56,49,97,46,55,49,57,46,55,49,57,32,48,32,48,32,48,32,48,45,49,46,50,51,56,76,57,46,48,55,57,32,52,46,49,65,46,55,49,54,46,55,49,54,32,48,32,48,32,48,32,56,32,52,46,55,49,57,86,54,99,45,49,46,53,32,48,45,54,32,48,45,55,32,56,32,50,46,53,45,52,46,53,32,55,45,52,32,55,45,52,118,49,46,50,56,49,99,48,32,46,53,54,46,54,48,54,46,56,57,56,32,49,46,48,55,57,46,54,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,115,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,115,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,49,50,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,45,51,45,56,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,99,53,46,53,50,51,32,48,32,49,48,32,52,46,52,55,55,32,49,48,32,49,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,56,32,56,32,48,32,48,32,48,45,56,45,56,32,49,32,49,32,48,32,48,32,49,45,49,45,49,122,109,48,32,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,32,54,32,54,32,48,32,48,32,49,32,54,32,54,32,49,32,49,32,48,32,49,32,49,45,50,32,48,32,52,32,52,32,48,32,48,32,48,45,52,45,52,32,49,32,49,32,48,32,48,32,49,45,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,82,115,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,82,115,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,49,46,53,32,50,46,53,99,53,46,53,50,51,32,48,32,49,48,32,52,46,52,55,55,32,49,48,32,49,48,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,56,32,56,32,48,32,48,32,48,45,56,45,56,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,109,48,32,52,97,54,32,54,32,48,32,48,32,49,32,54,32,54,32,49,32,49,32,48,32,49,32,49,45,50,32,48,32,52,32,52,32,48,32,48,32,48,45,52,45,52,32,49,32,49,32,48,32,48,32,49,32,48,45,50,122,109,46,53,32,55,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,99,105,115,115,111,114,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,99,105,115,115,111,114,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,51,46,53,99,45,46,54,49,52,45,46,56,56,52,45,46,48,55,52,45,49,46,57,54,50,46,56,53,56,45,50,46,53,76,56,32,55,46,50,50,54,32,49,49,46,54,52,50,32,49,99,46,57,51,50,46,53,51,56,32,49,46,52,55,50,32,49,46,54,49,54,46,56,53,56,32,50,46,53,76,56,46,56,49,32,56,46,54,49,108,49,46,53,53,54,32,50,46,54,54,49,97,50,46,53,32,50,46,53,32,48,32,49,32,49,45,46,55,57,52,46,54,51,55,76,56,32,57,46,55,51,108,45,49,46,53,55,50,32,50,46,49,55,55,97,50,46,53,32,50,46,53,32,48,32,49,32,49,45,46,55,57,52,45,46,54,51,55,76,55,46,49,57,32,56,46,54,49,32,51,46,53,32,51,46,53,122,109,50,46,53,32,49,48,97,49,46,53,32,49,46,53,32,48,32,49,32,48,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,32,48,122,109,55,32,48,97,49,46,53,32,49,46,53,32,48,32,49,32,48,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,99,114,101,119,100,114,105,118,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,99,114,101,119,100,114,105,118,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,108,49,45,49,32,51,46,48,56,49,32,50,46,50,97,49,32,49,32,48,32,48,32,49,32,46,52,49,57,46,56,49,53,118,46,48,55,97,49,32,49,32,48,32,48,32,48,32,46,50,57,51,46,55,48,56,76,49,48,46,53,32,57,46,53,108,46,57,49,52,45,46,51,48,53,97,49,32,49,32,48,32,48,32,49,32,49,46,48,50,51,46,50,52,50,108,51,46,51,53,54,32,51,46,51,53,54,97,49,32,49,32,48,32,48,32,49,32,48,32,49,46,52,49,52,108,45,49,46,53,56,54,32,49,46,53,56,54,97,49,32,49,32,48,32,48,32,49,45,49,46,52,49,52,32,48,108,45,51,46,51,53,54,45,51,46,51,53,54,97,49,32,49,32,48,32,48,32,49,45,46,50,52,50,45,49,46,48,50,51,76,57,46,53,32,49,48,46,53,32,51,46,55,57,51,32,52,46,55,57,51,97,49,32,49,32,48,32,48,32,48,45,46,55,48,55,45,46,50,57,51,104,45,46,48,55,49,97,49,32,49,32,48,32,48,32,49,45,46,56,49,52,45,46,52,49,57,76,48,32,49,122,109,49,49,46,51,53,52,32,57,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,108,51,32,51,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,108,45,51,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,101,97,114,99,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,101,97,114,99,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,55,52,50,32,49,48,46,51,52,52,97,54,46,53,32,54,46,53,32,48,32,49,32,48,45,49,46,51,57,55,32,49,46,51,57,56,104,45,46,48,48,49,99,46,48,51,46,48,52,46,48,54,50,46,48,55,56,46,48,57,56,46,49,49,53,108,51,46,56,53,32,51,46,56,53,97,49,32,49,32,48,32,48,32,48,32,49,46,52,49,53,45,49,46,52,49,52,108,45,51,46,56,53,45,51,46,56,53,97,49,46,48,48,55,32,49,46,48,48,55,32,48,32,48,32,48,45,46,49,49,53,45,46,49,122,77,49,50,32,54,46,53,97,53,46,53,32,53,46,53,32,48,32,49,32,49,45,49,49,32,48,32,53,46,53,32,53,46,53,32,48,32,48,32,49,32,49,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,101,103,109,101,110,116,101,100,78,97,118,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,101,103,109,101,110,116,101,100,78,97,118,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,54,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,54,122,109,54,32,51,104,52,86,53,72,54,118,52,122,109,57,45,49,86,54,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,51,118,52,104,51,97,49,32,49,32,48,32,48,32,48,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,101,114,118,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,101,114,118,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,51,51,51,32,50,46,54,54,55,67,49,46,51,51,51,32,49,46,49,57,52,32,52,46,51,49,56,32,48,32,56,32,48,115,54,46,54,54,55,32,49,46,49,57,52,32,54,46,54,54,55,32,50,46,54,54,55,86,52,99,48,32,49,46,52,55,51,45,50,46,57,56,53,32,50,46,54,54,55,45,54,46,54,54,55,32,50,46,54,54,55,83,49,46,51,51,51,32,53,46,52,55,51,32,49,46,51,51,51,32,52,86,50,46,54,54,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,46,51,51,51,32,54,46,51,51,52,118,51,67,49,46,51,51,51,32,49,48,46,56,48,53,32,52,46,51,49,56,32,49,50,32,56,32,49,50,115,54,46,54,54,55,45,49,46,49,57,52,32,54,46,54,54,55,45,50,46,54,54,55,86,54,46,51,51,52,99,45,46,52,51,46,51,50,45,46,57,51,49,46,53,56,45,49,46,52,53,56,46,55,57,67,49,49,46,56,49,32,55,46,54,56,52,32,57,46,57,54,55,32,56,32,56,32,56,99,45,49,46,57,54,55,32,48,45,51,46,56,49,45,46,51,49,55,45,53,46,50,49,45,46,56,55,54,97,54,46,53,48,56,32,54,46,53,48,56,32,48,32,48,32,49,45,49,46,52,53,55,45,46,55,57,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,46,54,54,55,32,49,49,46,54,54,56,99,45,46,52,51,46,51,49,57,45,46,57,51,49,46,53,55,56,45,49,46,52,53,56,46,55,56,57,45,49,46,52,46,53,54,45,51,46,50,52,50,46,56,55,54,45,53,46,50,48,57,46,56,55,54,45,49,46,57,54,55,32,48,45,51,46,56,49,45,46,51,49,54,45,53,46,50,49,45,46,56,55,54,97,54,46,53,49,32,54,46,53,49,32,48,32,48,32,49,45,49,46,52,53,55,45,46,55,57,118,49,46,54,54,54,67,49,46,51,51,51,32,49,52,46,56,48,54,32,52,46,51,49,56,32,49,54,32,56,32,49,54,115,54,46,54,54,55,45,49,46,49,57,52,32,54,46,54,54,55,45,50,46,54,54,55,118,45,49,46,54,54,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,46,53,32,49,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,32,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,45,51,122,77,49,49,32,50,46,53,97,50,46,53,32,50,46,53,32,48,32,49,32,49,32,46,54,48,51,32,49,46,54,50,56,108,45,54,46,55,49,56,32,51,46,49,50,97,50,46,52,57,57,32,50,46,52,57,57,32,48,32,48,32,49,32,48,32,49,46,53,48,52,108,54,46,55,49,56,32,51,46,49,50,97,50,46,53,32,50,46,53,32,48,32,49,32,49,45,46,52,56,56,46,56,55,54,108,45,54,46,55,49,56,45,51,46,49,50,97,50,46,53,32,50,46,53,32,48,32,49,32,49,32,48,45,51,46,50,53,54,108,54,46,55,49,56,45,51,46,49,50,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,49,49,32,50,46,53,122,109,45,56,46,53,32,52,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,32,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,45,51,122,109,49,49,32,53,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,32,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,50,46,53,97,50,46,53,32,50,46,53,32,48,32,49,32,49,32,46,54,48,51,32,49,46,54,50,56,108,45,54,46,55,49,56,32,51,46,49,50,97,50,46,52,57,57,32,50,46,52,57,57,32,48,32,48,32,49,32,48,32,49,46,53,48,52,108,54,46,55,49,56,32,51,46,49,50,97,50,46,53,32,50,46,53,32,48,32,49,32,49,45,46,52,56,56,46,56,55,54,108,45,54,46,55,49,56,45,51,46,49,50,97,50,46,53,32,50,46,53,32,48,32,49,32,49,32,48,45,51,46,50,53,54,108,54,46,55,49,56,45,51,46,49,50,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,49,49,32,50,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,51,51,56,32,49,46,53,57,97,54,49,46,52,52,32,54,49,46,52,52,32,48,32,48,32,48,45,50,46,56,51,55,46,56,53,54,46,52,56,49,46,52,56,49,32,48,32,48,32,48,45,46,51,50,56,46,51,57,99,45,46,53,53,52,32,52,46,49,53,55,46,55,50,54,32,55,46,49,57,32,50,46,50,53,51,32,57,46,49,56,56,97,49,48,46,55,50,53,32,49,48,46,55,50,53,32,48,32,48,32,48,32,50,46,50,56,55,32,50,46,50,51,51,99,46,51,52,54,46,50,52,52,46,54,53,50,46,52,50,46,56,57,51,46,53,51,51,46,49,50,46,48,53,55,46,50,49,56,46,48,57,53,46,50,57,51,46,49,49,56,97,46,53,53,46,53,53,32,48,32,48,32,48,32,46,49,48,49,46,48,50,53,46,54,49,53,46,54,49,53,32,48,32,48,32,48,32,46,49,45,46,48,50,53,99,46,48,55,54,45,46,48,50,51,46,49,55,52,45,46,48,54,49,46,50,57,52,45,46,49,49,56,46,50,52,45,46,49,49,51,46,53,52,55,45,46,50,57,46,56,57,51,45,46,53,51,51,97,49,48,46,55,50,54,32,49,48,46,55,50,54,32,48,32,48,32,48,32,50,46,50,56,55,45,50,46,50,51,51,99,49,46,53,50,55,45,49,46,57,57,55,32,50,46,56,48,55,45,53,46,48,51,49,32,50,46,50,53,51,45,57,46,49,56,56,97,46,52,56,46,52,56,32,48,32,48,32,48,45,46,51,50,56,45,46,51,57,99,45,46,54,53,49,45,46,50,49,51,45,49,46,55,53,45,46,53,54,45,50,46,56,51,55,45,46,56,53,53,67,57,46,53,53,50,32,49,46,50,57,32,56,46,53,51,49,32,49,46,48,54,55,32,56,32,49,46,48,54,55,99,45,46,53,51,32,48,45,49,46,53,53,50,46,50,50,51,45,50,46,54,54,50,46,53,50,52,122,77,53,46,48,55,50,46,53,54,67,54,46,49,53,55,46,50,54,53,32,55,46,51,49,32,48,32,56,32,48,115,49,46,56,52,51,46,50,54,53,32,50,46,57,50,56,46,53,54,99,49,46,49,49,46,51,32,50,46,50,50,57,46,54,53,53,32,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,49,46,48,52,52,32,49,46,50,54,50,99,46,53,57,54,32,52,46,52,55,55,45,46,55,56,55,32,55,46,55,57,53,45,50,46,52,54,53,32,57,46,57,57,97,49,49,46,55,55,53,32,49,49,46,55,55,53,32,48,32,48,32,49,45,50,46,53,49,55,32,50,46,52,53,51,32,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,49,45,49,46,48,52,56,46,54,50,53,99,45,46,50,56,46,49,51,50,45,46,53,56,49,46,50,52,45,46,56,50,57,46,50,52,115,45,46,53,52,56,45,46,49,48,56,45,46,56,50,57,45,46,50,52,97,55,46,49,53,56,32,55,46,49,53,56,32,48,32,48,32,49,45,49,46,48,52,56,45,46,54,50,53,32,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,49,45,50,46,53,49,55,45,50,46,52,53,51,67,49,46,57,50,56,32,49,48,46,52,56,55,46,53,52,53,32,55,46,49,54,57,32,49,46,49,52,49,32,50,46,54,57,50,65,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,50,46,49,56,53,32,49,46,52,51,32,54,50,46,52,53,54,32,54,50,46,52,53,54,32,48,32,48,32,49,32,53,46,48,55,50,46,53,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,67,104,101,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,51,51,56,32,49,46,53,57,97,54,49,46,52,52,32,54,49,46,52,52,32,48,32,48,32,48,45,50,46,56,51,55,46,56,53,54,46,52,56,49,46,52,56,49,32,48,32,48,32,48,45,46,51,50,56,46,51,57,99,45,46,53,53,52,32,52,46,49,53,55,46,55,50,54,32,55,46,49,57,32,50,46,50,53,51,32,57,46,49,56,56,97,49,48,46,55,50,53,32,49,48,46,55,50,53,32,48,32,48,32,48,32,50,46,50,56,55,32,50,46,50,51,51,99,46,51,52,54,46,50,52,52,46,54,53,50,46,52,50,46,56,57,51,46,53,51,51,46,49,50,46,48,53,55,46,50,49,56,46,48,57,53,46,50,57,51,46,49,49,56,97,46,53,53,46,53,53,32,48,32,48,32,48,32,46,49,48,49,46,48,50,53,46,54,49,53,46,54,49,53,32,48,32,48,32,48,32,46,49,45,46,48,50,53,99,46,48,55,54,45,46,48,50,51,46,49,55,52,45,46,48,54,49,46,50,57,52,45,46,49,49,56,46,50,52,45,46,49,49,51,46,53,52,55,45,46,50,57,46,56,57,51,45,46,53,51,51,97,49,48,46,55,50,54,32,49,48,46,55,50,54,32,48,32,48,32,48,32,50,46,50,56,55,45,50,46,50,51,51,99,49,46,53,50,55,45,49,46,57,57,55,32,50,46,56,48,55,45,53,46,48,51,49,32,50,46,50,53,51,45,57,46,49,56,56,97,46,52,56,46,52,56,32,48,32,48,32,48,45,46,51,50,56,45,46,51,57,99,45,46,54,53,49,45,46,50,49,51,45,49,46,55,53,45,46,53,54,45,50,46,56,51,55,45,46,56,53,53,67,57,46,53,53,50,32,49,46,50,57,32,56,46,53,51,49,32,49,46,48,54,55,32,56,32,49,46,48,54,55,99,45,46,53,51,32,48,45,49,46,53,53,50,46,50,50,51,45,50,46,54,54,50,46,53,50,52,122,77,53,46,48,55,50,46,53,54,67,54,46,49,53,55,46,50,54,53,32,55,46,51,49,32,48,32,56,32,48,115,49,46,56,52,51,46,50,54,53,32,50,46,57,50,56,46,53,54,99,49,46,49,49,46,51,32,50,46,50,50,57,46,54,53,53,32,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,49,46,48,52,52,32,49,46,50,54,50,99,46,53,57,54,32,52,46,52,55,55,45,46,55,56,55,32,55,46,55,57,53,45,50,46,52,54,53,32,57,46,57,57,97,49,49,46,55,55,53,32,49,49,46,55,55,53,32,48,32,48,32,49,45,50,46,53,49,55,32,50,46,52,53,51,32,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,49,45,49,46,48,52,56,46,54,50,53,99,45,46,50,56,46,49,51,50,45,46,53,56,49,46,50,52,45,46,56,50,57,46,50,52,115,45,46,53,52,56,45,46,49,48,56,45,46,56,50,57,45,46,50,52,97,55,46,49,53,56,32,55,46,49,53,56,32,48,32,48,32,49,45,49,46,48,52,56,45,46,54,50,53,32,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,49,45,50,46,53,49,55,45,50,46,52,53,51,67,49,46,57,50,56,32,49,48,46,52,56,55,46,53,52,53,32,55,46,49,54,57,32,49,46,49,52,49,32,50,46,54,57,50,65,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,50,46,49,56,53,32,49,46,52,51,32,54,50,46,52,53,54,32,54,50,46,52,53,54,32,48,32,48,32,49,32,53,46,48,55,50,46,53,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,56,53,52,32,53,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,55,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,69,120,99,108,97,109,97,116,105,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,69,120,99,108,97,109,97,116,105,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,51,51,56,32,49,46,53,57,97,54,49,46,52,52,32,54,49,46,52,52,32,48,32,48,32,48,45,50,46,56,51,55,46,56,53,54,46,52,56,49,46,52,56,49,32,48,32,48,32,48,45,46,51,50,56,46,51,57,99,45,46,53,53,52,32,52,46,49,53,55,46,55,50,54,32,55,46,49,57,32,50,46,50,53,51,32,57,46,49,56,56,97,49,48,46,55,50,53,32,49,48,46,55,50,53,32,48,32,48,32,48,32,50,46,50,56,55,32,50,46,50,51,51,99,46,51,52,54,46,50,52,52,46,54,53,50,46,52,50,46,56,57,51,46,53,51,51,46,49,50,46,48,53,55,46,50,49,56,46,48,57,53,46,50,57,51,46,49,49,56,97,46,53,53,46,53,53,32,48,32,48,32,48,32,46,49,48,49,46,48,50,53,46,54,49,53,46,54,49,53,32,48,32,48,32,48,32,46,49,45,46,48,50,53,99,46,48,55,54,45,46,48,50,51,46,49,55,52,45,46,48,54,49,46,50,57,52,45,46,49,49,56,46,50,52,45,46,49,49,51,46,53,52,55,45,46,50,57,46,56,57,51,45,46,53,51,51,97,49,48,46,55,50,54,32,49,48,46,55,50,54,32,48,32,48,32,48,32,50,46,50,56,55,45,50,46,50,51,51,99,49,46,53,50,55,45,49,46,57,57,55,32,50,46,56,48,55,45,53,46,48,51,49,32,50,46,50,53,51,45,57,46,49,56,56,97,46,52,56,46,52,56,32,48,32,48,32,48,45,46,51,50,56,45,46,51,57,99,45,46,54,53,49,45,46,50,49,51,45,49,46,55,53,45,46,53,54,45,50,46,56,51,55,45,46,56,53,53,67,57,46,53,53,50,32,49,46,50,57,32,56,46,53,51,49,32,49,46,48,54,55,32,56,32,49,46,48,54,55,99,45,46,53,51,32,48,45,49,46,53,53,50,46,50,50,51,45,50,46,54,54,50,46,53,50,52,122,77,53,46,48,55,50,46,53,54,67,54,46,49,53,55,46,50,54,53,32,55,46,51,49,32,48,32,56,32,48,115,49,46,56,52,51,46,50,54,53,32,50,46,57,50,56,46,53,54,99,49,46,49,49,46,51,32,50,46,50,50,57,46,54,53,53,32,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,49,46,48,52,52,32,49,46,50,54,50,99,46,53,57,54,32,52,46,52,55,55,45,46,55,56,55,32,55,46,55,57,53,45,50,46,52,54,53,32,57,46,57,57,97,49,49,46,55,55,53,32,49,49,46,55,55,53,32,48,32,48,32,49,45,50,46,53,49,55,32,50,46,52,53,51,32,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,49,45,49,46,48,52,56,46,54,50,53,99,45,46,50,56,46,49,51,50,45,46,53,56,49,46,50,52,45,46,56,50,57,46,50,52,115,45,46,53,52,56,45,46,49,48,56,45,46,56,50,57,45,46,50,52,97,55,46,49,53,56,32,55,46,49,53,56,32,48,32,48,32,49,45,49,46,48,52,56,45,46,54,50,53,32,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,49,45,50,46,53,49,55,45,50,46,52,53,51,67,49,46,57,50,56,32,49,48,46,52,56,55,46,53,52,53,32,55,46,49,54,57,32,49,46,49,52,49,32,50,46,54,57,50,65,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,50,46,49,56,53,32,49,46,52,51,32,54,50,46,52,53,54,32,54,50,46,52,53,54,32,48,32,48,32,49,32,53,46,48,55,50,46,53,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,48,48,50,32,49,49,97,49,32,49,32,48,32,49,32,49,32,50,32,48,32,49,32,49,32,48,32,48,32,49,45,50,32,48,122,77,55,46,49,32,52,46,57,57,53,97,46,57,48,53,46,57,48,53,32,48,32,49,32,49,32,49,46,56,32,48,108,45,46,51,53,32,51,46,53,48,55,97,46,53,53,50,46,53,53,50,32,48,32,48,32,49,45,49,46,49,32,48,76,55,46,49,32,52,46,57,57,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,48,55,50,46,53,54,67,54,46,49,53,55,46,50,54,53,32,55,46,51,49,32,48,32,56,32,48,115,49,46,56,52,51,46,50,54,53,32,50,46,57,50,56,46,53,54,99,49,46,49,49,46,51,32,50,46,50,50,57,46,54,53,53,32,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,49,46,48,52,52,32,49,46,50,54,50,99,46,53,57,54,32,52,46,52,55,55,45,46,55,56,55,32,55,46,55,57,53,45,50,46,52,54,53,32,57,46,57,57,97,49,49,46,55,55,53,32,49,49,46,55,55,53,32,48,32,48,32,49,45,50,46,53,49,55,32,50,46,52,53,51,32,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,49,45,49,46,48,52,56,46,54,50,53,99,45,46,50,56,46,49,51,50,45,46,53,56,49,46,50,52,45,46,56,50,57,46,50,52,115,45,46,53,52,56,45,46,49,48,56,45,46,56,50,57,45,46,50,52,97,55,46,49,53,56,32,55,46,49,53,56,32,48,32,48,32,49,45,49,46,48,52,56,45,46,54,50,53,32,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,49,45,50,46,53,49,55,45,50,46,52,53,51,67,49,46,57,50,56,32,49,48,46,52,56,55,46,53,52,53,32,55,46,49,54,57,32,49,46,49,52,49,32,50,46,54,57,50,65,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,50,46,49,56,53,32,49,46,52,51,32,54,50,46,52,53,54,32,54,50,46,52,53,54,32,48,32,48,32,49,32,53,46,48,55,50,46,53,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,67,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,70,105,108,108,67,104,101,99,107,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,48,99,45,46,54,57,32,48,45,49,46,56,52,51,46,50,54,53,45,50,46,57,50,56,46,53,54,45,49,46,49,49,46,51,45,50,46,50,50,57,46,54,53,53,45,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,48,45,49,46,48,52,52,32,49,46,50,54,50,99,45,46,53,57,54,32,52,46,52,55,55,46,55,56,55,32,55,46,55,57,53,32,50,46,52,54,53,32,57,46,57,57,97,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,48,32,50,46,53,49,55,32,50,46,52,53,51,99,46,51,56,54,46,50,55,51,46,55,52,52,46,52,56,50,32,49,46,48,52,56,46,54,50,53,46,50,56,46,49,51,50,46,53,56,49,46,50,52,46,56,50,57,46,50,52,115,46,53,52,56,45,46,49,48,56,46,56,50,57,45,46,50,52,97,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,48,32,49,46,48,52,56,45,46,54,50,53,32,49,49,46,55,55,53,32,49,49,46,55,55,53,32,48,32,48,32,48,32,50,46,53,49,55,45,50,46,52,53,51,99,49,46,54,55,56,45,50,46,49,57,53,32,51,46,48,54,49,45,53,46,53,49,51,32,50,46,52,54,53,45,57,46,57,57,97,49,46,53,52,49,32,49,46,53,52,49,32,48,32,48,32,48,45,49,46,48,52,52,45,49,46,50,54,51,32,54,50,46,52,54,55,32,54,50,46,52,54,55,32,48,32,48,32,48,45,50,46,56,56,55,45,46,56,55,67,57,46,56,52,51,46,50,54,54,32,56,46,54,57,32,48,32,56,32,48,122,109,50,46,49,52,54,32,53,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,46,53,45,49,46,53,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,55,46,53,32,55,46,55,57,51,108,50,46,54,52,54,45,50,46,54,52,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,69,120,99,108,97,109,97,116,105,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,70,105,108,108,69,120,99,108,97,109,97,116,105,111,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,48,99,45,46,54,57,32,48,45,49,46,56,52,51,46,50,54,53,45,50,46,57,50,56,46,53,54,45,49,46,49,49,46,51,45,50,46,50,50,57,46,54,53,53,45,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,48,45,49,46,48,52,52,32,49,46,50,54,50,99,45,46,53,57,54,32,52,46,52,55,55,46,55,56,55,32,55,46,55,57,53,32,50,46,52,54,53,32,57,46,57,57,97,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,48,32,50,46,53,49,55,32,50,46,52,53,51,99,46,51,56,54,46,50,55,51,46,55,52,52,46,52,56,50,32,49,46,48,52,56,46,54,50,53,46,50,56,46,49,51,50,46,53,56,49,46,50,52,46,56,50,57,46,50,52,115,46,53,52,56,45,46,49,48,56,46,56,50,57,45,46,50,52,97,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,48,32,49,46,48,52,56,45,46,54,50,53,32,49,49,46,55,55,53,32,49,49,46,55,55,53,32,48,32,48,32,48,32,50,46,53,49,55,45,50,46,52,53,51,99,49,46,54,55,56,45,50,46,49,57,53,32,51,46,48,54,49,45,53,46,53,49,51,32,50,46,52,54,53,45,57,46,57,57,97,49,46,53,52,49,32,49,46,53,52,49,32,48,32,48,32,48,45,49,46,48,52,52,45,49,46,50,54,51,32,54,50,46,52,54,55,32,54,50,46,52,54,55,32,48,32,48,32,48,45,50,46,56,56,55,45,46,56,55,67,57,46,56,52,51,46,50,54,54,32,56,46,54,57,32,48,32,56,32,48,122,109,45,46,53,53,32,56,46,53,48,50,76,55,46,49,32,52,46,57,57,53,97,46,57,48,53,46,57,48,53,32,48,32,49,32,49,32,49,46,56,32,48,108,45,46,51,53,32,51,46,53,48,55,97,46,53,53,50,46,53,53,50,32,48,32,48,32,49,45,49,46,49,32,48,122,77,56,46,48,48,50,32,49,50,97,49,32,49,32,48,32,49,32,49,32,48,45,50,32,49,32,49,32,48,32,48,32,49,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,77,105,110,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,70,105,108,108,77,105,110,117,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,48,99,45,46,54,57,32,48,45,49,46,56,52,51,46,50,54,53,45,50,46,57,50,56,46,53,54,45,49,46,49,49,46,51,45,50,46,50,50,57,46,54,53,53,45,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,48,45,49,46,48,52,52,32,49,46,50,54,50,99,45,46,53,57,54,32,52,46,52,55,55,46,55,56,55,32,55,46,55,57,53,32,50,46,52,54,53,32,57,46,57,57,97,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,48,32,50,46,53,49,55,32,50,46,52,53,51,99,46,51,56,54,46,50,55,51,46,55,52,52,46,52,56,50,32,49,46,48,52,56,46,54,50,53,46,50,56,46,49,51,50,46,53,56,49,46,50,52,46,56,50,57,46,50,52,115,46,53,52,56,45,46,49,48,56,46,56,50,57,45,46,50,52,97,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,48,32,49,46,48,52,56,45,46,54,50,53,32,49,49,46,55,55,53,32,49,49,46,55,55,53,32,48,32,48,32,48,32,50,46,53,49,55,45,50,46,52,53,51,99,49,46,54,55,56,45,50,46,49,57,53,32,51,46,48,54,49,45,53,46,53,49,51,32,50,46,52,54,53,45,57,46,57,57,97,49,46,53,52,49,32,49,46,53,52,49,32,48,32,48,32,48,45,49,46,48,52,52,45,49,46,50,54,51,32,54,50,46,52,54,55,32,54,50,46,52,54,55,32,48,32,48,32,48,45,50,46,56,56,55,45,46,56,55,67,57,46,56,52,51,46,50,54,54,32,56,46,54,57,32,48,32,56,32,48,122,77,54,32,55,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,70,105,108,108,80,108,117,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,48,99,45,46,54,57,32,48,45,49,46,56,52,51,46,50,54,53,45,50,46,57,50,56,46,53,54,45,49,46,49,49,46,51,45,50,46,50,50,57,46,54,53,53,45,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,48,45,49,46,48,52,52,32,49,46,50,54,50,99,45,46,53,57,54,32,52,46,52,55,55,46,55,56,55,32,55,46,55,57,53,32,50,46,52,54,53,32,57,46,57,57,97,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,48,32,50,46,53,49,55,32,50,46,52,53,51,99,46,51,56,54,46,50,55,51,46,55,52,52,46,52,56,50,32,49,46,48,52,56,46,54,50,53,46,50,56,46,49,51,50,46,53,56,49,46,50,52,46,56,50,57,46,50,52,115,46,53,52,56,45,46,49,48,56,46,56,50,57,45,46,50,52,97,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,48,32,49,46,48,52,56,45,46,54,50,53,32,49,49,46,55,55,53,32,49,49,46,55,55,53,32,48,32,48,32,48,32,50,46,53,49,55,45,50,46,52,53,51,99,49,46,54,55,56,45,50,46,49,57,53,32,51,46,48,54,49,45,53,46,53,49,51,32,50,46,52,54,53,45,57,46,57,57,97,49,46,53,52,49,32,49,46,53,52,49,32,48,32,48,32,48,45,49,46,48,52,52,45,49,46,50,54,51,32,54,50,46,52,54,55,32,54,50,46,52,54,55,32,48,32,48,32,48,45,50,46,56,56,55,45,46,56,55,67,57,46,56,52,51,46,50,54,54,32,56,46,54,57,32,48,32,56,32,48,122,109,45,46,53,32,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,49,46,53,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,86,57,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,55,46,53,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,88,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,70,105,108,108,88,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,48,99,45,46,54,57,32,48,45,49,46,56,52,51,46,50,54,53,45,50,46,57,50,56,46,53,54,45,49,46,49,49,46,51,45,50,46,50,50,57,46,54,53,53,45,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,48,45,49,46,48,52,52,32,49,46,50,54,50,99,45,46,53,57,54,32,52,46,52,55,55,46,55,56,55,32,55,46,55,57,53,32,50,46,52,54,53,32,57,46,57,57,97,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,48,32,50,46,53,49,55,32,50,46,52,53,51,99,46,51,56,54,46,50,55,51,46,55,52,52,46,52,56,50,32,49,46,48,52,56,46,54,50,53,46,50,56,46,49,51,50,46,53,56,49,46,50,52,46,56,50,57,46,50,52,115,46,53,52,56,45,46,49,48,56,46,56,50,57,45,46,50,52,97,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,48,32,49,46,48,52,56,45,46,54,50,53,32,49,49,46,55,55,53,32,49,49,46,55,55,53,32,48,32,48,32,48,32,50,46,53,49,55,45,50,46,52,53,51,99,49,46,54,55,56,45,50,46,49,57,53,32,51,46,48,54,49,45,53,46,53,49,51,32,50,46,52,54,53,45,57,46,57,57,97,49,46,53,52,49,32,49,46,53,52,49,32,48,32,48,32,48,45,49,46,48,52,52,45,49,46,50,54,51,32,54,50,46,52,54,55,32,54,50,46,52,54,55,32,48,32,48,32,48,45,50,46,56,56,55,45,46,56,55,67,57,46,56,52,51,46,50,54,54,32,56,46,54,57,32,48,32,56,32,48,122,77,54,46,56,53,52,32,53,46,49,52,54,76,56,32,54,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,55,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,55,46,55,48,55,32,54,46,56,53,52,32,56,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,55,32,54,46,49,52,54,32,53,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,76,111,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,51,51,56,32,49,46,53,57,97,54,49,46,52,52,32,54,49,46,52,52,32,48,32,48,32,48,45,50,46,56,51,55,46,56,53,54,46,52,56,49,46,52,56,49,32,48,32,48,32,48,45,46,51,50,56,46,51,57,99,45,46,53,53,52,32,52,46,49,53,55,46,55,50,54,32,55,46,49,57,32,50,46,50,53,51,32,57,46,49,56,56,97,49,48,46,55,50,53,32,49,48,46,55,50,53,32,48,32,48,32,48,32,50,46,50,56,55,32,50,46,50,51,51,99,46,51,52,54,46,50,52,52,46,54,53,50,46,52,50,46,56,57,51,46,53,51,51,46,49,50,46,48,53,55,46,50,49,56,46,48,57,53,46,50,57,51,46,49,49,56,97,46,53,53,46,53,53,32,48,32,48,32,48,32,46,49,48,49,46,48,50,53,46,54,49,53,46,54,49,53,32,48,32,48,32,48,32,46,49,45,46,48,50,53,99,46,48,55,54,45,46,48,50,51,46,49,55,52,45,46,48,54,49,46,50,57,52,45,46,49,49,56,46,50,52,45,46,49,49,51,46,53,52,55,45,46,50,57,46,56,57,51,45,46,53,51,51,97,49,48,46,55,50,54,32,49,48,46,55,50,54,32,48,32,48,32,48,32,50,46,50,56,55,45,50,46,50,51,51,99,49,46,53,50,55,45,49,46,57,57,55,32,50,46,56,48,55,45,53,46,48,51,49,32,50,46,50,53,51,45,57,46,49,56,56,97,46,52,56,46,52,56,32,48,32,48,32,48,45,46,51,50,56,45,46,51,57,99,45,46,54,53,49,45,46,50,49,51,45,49,46,55,53,45,46,53,54,45,50,46,56,51,55,45,46,56,53,53,67,57,46,53,53,50,32,49,46,50,57,32,56,46,53,51,49,32,49,46,48,54,55,32,56,32,49,46,48,54,55,99,45,46,53,51,32,48,45,49,46,53,53,50,46,50,50,51,45,50,46,54,54,50,46,53,50,52,122,77,53,46,48,55,50,46,53,54,67,54,46,49,53,55,46,50,54,53,32,55,46,51,49,32,48,32,56,32,48,115,49,46,56,52,51,46,50,54,53,32,50,46,57,50,56,46,53,54,99,49,46,49,49,46,51,32,50,46,50,50,57,46,54,53,53,32,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,49,46,48,52,52,32,49,46,50,54,50,99,46,53,57,54,32,52,46,52,55,55,45,46,55,56,55,32,55,46,55,57,53,45,50,46,52,54,53,32,57,46,57,57,97,49,49,46,55,55,53,32,49,49,46,55,55,53,32,48,32,48,32,49,45,50,46,53,49,55,32,50,46,52,53,51,32,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,49,45,49,46,48,52,56,46,54,50,53,99,45,46,50,56,46,49,51,50,45,46,53,56,49,46,50,52,45,46,56,50,57,46,50,52,115,45,46,53,52,56,45,46,49,48,56,45,46,56,50,57,45,46,50,52,97,55,46,49,53,56,32,55,46,49,53,56,32,48,32,48,32,49,45,49,46,48,52,56,45,46,54,50,53,32,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,49,45,50,46,53,49,55,45,50,46,52,53,51,67,49,46,57,50,56,32,49,48,46,52,56,55,46,53,52,53,32,55,46,49,54,57,32,49,46,49,52,49,32,50,46,54,57,50,65,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,50,46,49,56,53,32,49,46,52,51,32,54,50,46,52,53,54,32,54,50,46,52,53,54,32,48,32,48,32,49,32,53,46,48,55,50,46,53,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,53,32,54,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,32,49,46,52,49,53,108,46,51,56,53,32,49,46,57,57,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,49,46,53,57,53,104,45,46,55,56,56,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,45,46,53,57,53,108,46,51,56,52,45,49,46,57,57,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,50,45,49,46,52,49,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,76,111,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,48,99,45,46,54,57,32,48,45,49,46,56,52,51,46,50,54,53,45,50,46,57,50,56,46,53,54,45,49,46,49,49,46,51,45,50,46,50,50,57,46,54,53,53,45,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,48,45,49,46,48,52,52,32,49,46,50,54,50,99,45,46,53,57,54,32,52,46,52,55,55,46,55,56,55,32,55,46,55,57,53,32,50,46,52,54,53,32,57,46,57,57,97,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,48,32,50,46,53,49,55,32,50,46,52,53,51,99,46,51,56,54,46,50,55,51,46,55,52,52,46,52,56,50,32,49,46,48,52,56,46,54,50,53,46,50,56,46,49,51,50,46,53,56,49,46,50,52,46,56,50,57,46,50,52,115,46,53,52,56,45,46,49,48,56,46,56,50,57,45,46,50,52,97,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,48,32,49,46,48,52,56,45,46,54,50,53,32,49,49,46,55,55,53,32,49,49,46,55,55,53,32,48,32,48,32,48,32,50,46,53,49,55,45,50,46,52,53,51,99,49,46,54,55,56,45,50,46,49,57,53,32,51,46,48,54,49,45,53,46,53,49,51,32,50,46,52,54,53,45,57,46,57,57,97,49,46,53,52,49,32,49,46,53,52,49,32,48,32,48,32,48,45,49,46,48,52,52,45,49,46,50,54,51,32,54,50,46,52,54,55,32,54,50,46,52,54,55,32,48,32,48,32,48,45,50,46,56,56,55,45,46,56,55,67,57,46,56,52,51,46,50,54,54,32,56,46,54,57,32,48,32,56,32,48,122,109,48,32,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,46,53,32,50,46,57,49,53,108,46,51,56,53,32,49,46,57,57,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,49,46,53,57,53,104,45,46,55,56,56,97,46,53,46,53,32,48,32,48,32,49,45,46,52,57,45,46,53,57,53,108,46,51,56,52,45,49,46,57,57,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,56,32,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,77,105,110,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,77,105,110,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,51,51,56,32,49,46,53,57,97,54,49,46,52,52,32,54,49,46,52,52,32,48,32,48,32,48,45,50,46,56,51,55,46,56,53,54,46,52,56,49,46,52,56,49,32,48,32,48,32,48,45,46,51,50,56,46,51,57,99,45,46,53,53,52,32,52,46,49,53,55,46,55,50,54,32,55,46,49,57,32,50,46,50,53,51,32,57,46,49,56,56,97,49,48,46,55,50,53,32,49,48,46,55,50,53,32,48,32,48,32,48,32,50,46,50,56,55,32,50,46,50,51,51,99,46,51,52,54,46,50,52,52,46,54,53,50,46,52,50,46,56,57,51,46,53,51,51,46,49,50,46,48,53,55,46,50,49,56,46,48,57,53,46,50,57,51,46,49,49,56,97,46,53,53,46,53,53,32,48,32,48,32,48,32,46,49,48,49,46,48,50,53,46,54,49,53,46,54,49,53,32,48,32,48,32,48,32,46,49,45,46,48,50,53,99,46,48,55,54,45,46,48,50,51,46,49,55,52,45,46,48,54,49,46,50,57,52,45,46,49,49,56,46,50,52,45,46,49,49,51,46,53,52,55,45,46,50,57,46,56,57,51,45,46,53,51,51,97,49,48,46,55,50,54,32,49,48,46,55,50,54,32,48,32,48,32,48,32,50,46,50,56,55,45,50,46,50,51,51,99,49,46,53,50,55,45,49,46,57,57,55,32,50,46,56,48,55,45,53,46,48,51,49,32,50,46,50,53,51,45,57,46,49,56,56,97,46,52,56,46,52,56,32,48,32,48,32,48,45,46,51,50,56,45,46,51,57,99,45,46,54,53,49,45,46,50,49,51,45,49,46,55,53,45,46,53,54,45,50,46,56,51,55,45,46,56,53,53,67,57,46,53,53,50,32,49,46,50,57,32,56,46,53,51,49,32,49,46,48,54,55,32,56,32,49,46,48,54,55,99,45,46,53,51,32,48,45,49,46,53,53,50,46,50,50,51,45,50,46,54,54,50,46,53,50,52,122,77,53,46,48,55,50,46,53,54,67,54,46,49,53,55,46,50,54,53,32,55,46,51,49,32,48,32,56,32,48,115,49,46,56,52,51,46,50,54,53,32,50,46,57,50,56,46,53,54,99,49,46,49,49,46,51,32,50,46,50,50,57,46,54,53,53,32,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,49,46,48,52,52,32,49,46,50,54,50,99,46,53,57,54,32,52,46,52,55,55,45,46,55,56,55,32,55,46,55,57,53,45,50,46,52,54,53,32,57,46,57,57,97,49,49,46,55,55,53,32,49,49,46,55,55,53,32,48,32,48,32,49,45,50,46,53,49,55,32,50,46,52,53,51,32,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,49,45,49,46,48,52,56,46,54,50,53,99,45,46,50,56,46,49,51,50,45,46,53,56,49,46,50,52,45,46,56,50,57,46,50,52,115,45,46,53,52,56,45,46,49,48,56,45,46,56,50,57,45,46,50,52,97,55,46,49,53,56,32,55,46,49,53,56,32,48,32,48,32,49,45,49,46,48,52,56,45,46,54,50,53,32,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,49,45,50,46,53,49,55,45,50,46,52,53,51,67,49,46,57,50,56,32,49,48,46,52,56,55,46,53,52,53,32,55,46,49,54,57,32,49,46,49,52,49,32,50,46,54,57,50,65,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,50,46,49,56,53,32,49,46,52,51,32,54,50,46,52,53,54,32,54,50,46,52,53,54,32,48,32,48,32,49,32,53,46,48,55,50,46,53,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,80,108,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,51,51,56,32,49,46,53,57,97,54,49,46,52,52,32,54,49,46,52,52,32,48,32,48,32,48,45,50,46,56,51,55,46,56,53,54,46,52,56,49,46,52,56,49,32,48,32,48,32,48,45,46,51,50,56,46,51,57,99,45,46,53,53,52,32,52,46,49,53,55,46,55,50,54,32,55,46,49,57,32,50,46,50,53,51,32,57,46,49,56,56,97,49,48,46,55,50,53,32,49,48,46,55,50,53,32,48,32,48,32,48,32,50,46,50,56,55,32,50,46,50,51,51,99,46,51,52,54,46,50,52,52,46,54,53,50,46,52,50,46,56,57,51,46,53,51,51,46,49,50,46,48,53,55,46,50,49,56,46,48,57,53,46,50,57,51,46,49,49,56,97,46,53,53,46,53,53,32,48,32,48,32,48,32,46,49,48,49,46,48,50,53,46,54,49,53,46,54,49,53,32,48,32,48,32,48,32,46,49,45,46,48,50,53,99,46,48,55,54,45,46,48,50,51,46,49,55,52,45,46,48,54,49,46,50,57,52,45,46,49,49,56,46,50,52,45,46,49,49,51,46,53,52,55,45,46,50,57,46,56,57,51,45,46,53,51,51,97,49,48,46,55,50,54,32,49,48,46,55,50,54,32,48,32,48,32,48,32,50,46,50,56,55,45,50,46,50,51,51,99,49,46,53,50,55,45,49,46,57,57,55,32,50,46,56,48,55,45,53,46,48,51,49,32,50,46,50,53,51,45,57,46,49,56,56,97,46,52,56,46,52,56,32,48,32,48,32,48,45,46,51,50,56,45,46,51,57,99,45,46,54,53,49,45,46,50,49,51,45,49,46,55,53,45,46,53,54,45,50,46,56,51,55,45,46,56,53,53,67,57,46,53,53,50,32,49,46,50,57,32,56,46,53,51,49,32,49,46,48,54,55,32,56,32,49,46,48,54,55,99,45,46,53,51,32,48,45,49,46,53,53,50,46,50,50,51,45,50,46,54,54,50,46,53,50,52,122,77,53,46,48,55,50,46,53,54,67,54,46,49,53,55,46,50,54,53,32,55,46,51,49,32,48,32,56,32,48,115,49,46,56,52,51,46,50,54,53,32,50,46,57,50,56,46,53,54,99,49,46,49,49,46,51,32,50,46,50,50,57,46,54,53,53,32,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,49,46,48,52,52,32,49,46,50,54,50,99,46,53,57,54,32,52,46,52,55,55,45,46,55,56,55,32,55,46,55,57,53,45,50,46,52,54,53,32,57,46,57,57,97,49,49,46,55,55,53,32,49,49,46,55,55,53,32,48,32,48,32,49,45,50,46,53,49,55,32,50,46,52,53,51,32,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,49,45,49,46,48,52,56,46,54,50,53,99,45,46,50,56,46,49,51,50,45,46,53,56,49,46,50,52,45,46,56,50,57,46,50,52,115,45,46,53,52,56,45,46,49,48,56,45,46,56,50,57,45,46,50,52,97,55,46,49,53,56,32,55,46,49,53,56,32,48,32,48,32,49,45,49,46,48,52,56,45,46,54,50,53,32,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,49,45,50,46,53,49,55,45,50,46,52,53,51,67,49,46,57,50,56,32,49,48,46,52,56,55,46,53,52,53,32,55,46,49,54,57,32,49,46,49,52,49,32,50,46,54,57,50,65,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,50,46,49,56,53,32,49,46,52,51,32,54,50,46,52,53,54,32,54,50,46,52,53,54,32,48,32,48,32,49,32,53,46,48,55,50,46,53,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,46,53,72,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,56,46,53,86,57,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,55,46,53,72,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,46,53,86,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,83,104,97,100,101,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,83,104,97,100,101,100,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,32,49,52,46,57,51,51,97,46,54,49,53,46,54,49,53,32,48,32,48,32,48,32,46,49,45,46,48,50,53,99,46,48,55,54,45,46,48,50,51,46,49,55,52,45,46,48,54,49,46,50,57,52,45,46,49,49,56,46,50,52,45,46,49,49,51,46,53,52,55,45,46,50,57,46,56,57,51,45,46,53,51,51,97,49,48,46,55,50,54,32,49,48,46,55,50,54,32,48,32,48,32,48,32,50,46,50,56,55,45,50,46,50,51,51,99,49,46,53,50,55,45,49,46,57,57,55,32,50,46,56,48,55,45,53,46,48,51,49,32,50,46,50,53,51,45,57,46,49,56,56,97,46,52,56,46,52,56,32,48,32,48,32,48,45,46,51,50,56,45,46,51,57,99,45,46,54,53,49,45,46,50,49,51,45,49,46,55,53,45,46,53,54,45,50,46,56,51,55,45,46,56,53,53,67,57,46,53,53,50,32,49,46,50,57,32,56,46,53,51,49,32,49,46,48,54,55,32,56,32,49,46,48,54,55,118,49,51,46,56,54,54,122,77,53,46,48,55,50,46,53,54,67,54,46,49,53,55,46,50,54,53,32,55,46,51,49,32,48,32,56,32,48,115,49,46,56,52,51,46,50,54,53,32,50,46,57,50,56,46,53,54,99,49,46,49,49,46,51,32,50,46,50,50,57,46,54,53,53,32,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,49,46,48,52,52,32,49,46,50,54,50,99,46,53,57,54,32,52,46,52,55,55,45,46,55,56,55,32,55,46,55,57,53,45,50,46,52,54,53,32,57,46,57,57,97,49,49,46,55,55,53,32,49,49,46,55,55,53,32,48,32,48,32,49,45,50,46,53,49,55,32,50,46,52,53,51,32,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,49,45,49,46,48,52,56,46,54,50,53,99,45,46,50,56,46,49,51,50,45,46,53,56,49,46,50,52,45,46,56,50,57,46,50,52,115,45,46,53,52,56,45,46,49,48,56,45,46,56,50,57,45,46,50,52,97,55,46,49,53,56,32,55,46,49,53,56,32,48,32,48,32,49,45,49,46,48,52,56,45,46,54,50,53,32,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,49,45,50,46,53,49,55,45,50,46,52,53,51,67,49,46,57,50,56,32,49,48,46,52,56,55,46,53,52,53,32,55,46,49,54,57,32,49,46,49,52,49,32,50,46,54,57,50,65,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,50,46,49,56,53,32,49,46,52,51,32,54,50,46,52,53,54,32,54,50,46,52,53,54,32,48,32,48,32,49,32,53,46,48,55,50,46,53,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,83,108,97,115,104,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,48,57,51,32,51,46,48,57,51,99,45,46,52,54,53,32,52,46,50,55,53,46,56,56,53,32,55,46,52,54,32,50,46,53,49,51,32,57,46,53,56,57,97,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,48,32,50,46,53,49,55,32,50,46,52,53,51,99,46,51,56,54,46,50,55,51,46,55,52,52,46,52,56,50,32,49,46,48,52,56,46,54,50,53,46,50,56,46,49,51,50,46,53,56,49,46,50,52,46,56,50,57,46,50,52,115,46,53,52,56,45,46,49,48,56,46,56,50,57,45,46,50,52,97,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,48,32,49,46,48,52,56,45,46,54,50,53,32,49,49,46,51,50,32,49,49,46,51,50,32,48,32,48,32,48,32,49,46,55,51,51,45,49,46,53,50,53,108,45,46,55,52,53,45,46,55,52,53,97,49,48,46,50,55,32,49,48,46,50,55,32,48,32,48,32,49,45,49,46,53,55,56,32,49,46,51,57,50,99,45,46,51,52,54,46,50,52,52,45,46,54,53,50,46,52,50,45,46,56,57,51,46,53,51,51,45,46,49,50,46,48,53,55,45,46,50,49,56,46,48,57,53,45,46,50,57,51,46,49,49,56,97,46,53,53,46,53,53,32,48,32,48,32,49,45,46,49,48,49,46,48,50,53,46,54,49,53,46,54,49,53,32,48,32,48,32,49,45,46,49,45,46,48,50,53,32,50,46,51,52,56,32,50,46,51,52,56,32,48,32,48,32,49,45,46,50,57,52,45,46,49,49,56,32,54,46,49,52,49,32,54,46,49,52,49,32,48,32,48,32,49,45,46,56,57,51,45,46,53,51,51,32,49,48,46,55,50,53,32,49,48,46,55,50,53,32,48,32,48,32,49,45,50,46,50,56,55,45,50,46,50,51,51,67,51,46,48,53,51,32,49,48,46,50,50,56,32,49,46,56,55,57,32,55,46,53,57,52,32,50,46,48,54,32,52,46,48,54,108,45,46,57,54,55,45,46,57,54,55,122,77,51,46,57,56,32,49,46,57,56,108,45,46,56,53,50,45,46,56,53,50,65,53,56,46,57,51,53,32,53,56,46,57,51,53,32,48,32,48,32,49,32,53,46,48,55,50,46,53,53,57,67,54,46,49,53,55,46,50,54,54,32,55,46,51,49,32,48,32,56,32,48,115,49,46,56,52,51,46,50,54,53,32,50,46,57,50,56,46,53,54,99,49,46,49,49,46,51,32,50,46,50,50,57,46,54,53,53,32,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,49,46,48,52,52,32,49,46,50,54,50,99,46,52,56,51,32,51,46,54,50,54,45,46,51,51,50,32,54,46,52,57,49,45,49,46,53,53,49,32,56,46,54,49,54,108,45,46,55,55,45,46,55,55,99,49,46,48,52,50,45,49,46,57,49,53,32,49,46,55,50,45,52,46,52,54,57,32,49,46,50,57,45,55,46,55,48,50,97,46,52,56,46,52,56,32,48,32,48,32,48,45,46,51,51,45,46,51,57,99,45,46,54,53,45,46,50,49,51,45,49,46,55,53,45,46,53,54,45,50,46,56,51,54,45,46,56,53,53,67,57,46,53,53,50,32,49,46,50,57,32,56,46,53,51,49,32,49,46,48,54,55,32,56,32,49,46,48,54,55,99,45,46,53,51,32,48,45,49,46,53,53,50,46,50,50,51,45,50,46,54,54,50,46,53,50,52,97,52,57,46,55,32,52,57,46,55,32,48,32,48,32,48,45,49,46,51,53,55,46,51,57,122,109,57,46,54,54,54,32,49,50,46,51,55,52,108,45,49,51,45,49,51,32,46,55,48,56,45,46,55,48,56,32,49,51,32,49,51,45,46,55,48,55,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,83,108,97,115,104,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,48,57,51,32,51,46,48,57,51,99,45,46,52,54,53,32,52,46,50,55,53,46,56,56,53,32,55,46,52,54,32,50,46,53,49,51,32,57,46,53,56,57,97,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,48,32,50,46,53,49,55,32,50,46,52,53,51,99,46,51,56,54,46,50,55,51,46,55,52,52,46,52,56,50,32,49,46,48,52,56,46,54,50,53,46,50,56,46,49,51,50,46,53,56,49,46,50,52,46,56,50,57,46,50,52,115,46,53,52,56,45,46,49,48,56,46,56,50,57,45,46,50,52,97,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,48,32,49,46,48,52,56,45,46,54,50,53,32,49,49,46,51,50,32,49,49,46,51,50,32,48,32,48,32,48,32,49,46,55,51,51,45,49,46,53,50,53,76,49,46,48,57,51,32,51,46,48,57,51,122,109,49,50,46,50,49,53,32,56,46,50,49,53,76,51,46,49,50,56,32,49,46,49,50,56,65,54,49,46,51,54,57,32,54,49,46,51,54,57,32,48,32,48,32,49,32,53,46,48,55,51,46,53,54,67,54,46,49,53,55,46,50,54,53,32,55,46,51,49,32,48,32,56,32,48,115,49,46,56,52,51,46,50,54,53,32,50,46,57,50,56,46,53,54,99,49,46,49,49,46,51,32,50,46,50,50,57,46,54,53,53,32,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,49,46,48,52,52,32,49,46,50,54,50,99,46,52,56,51,32,51,46,54,50,54,45,46,51,51,50,32,54,46,52,57,49,45,49,46,53,53,49,32,56,46,54,49,54,122,109,46,51,51,56,32,51,46,48,52,54,108,45,49,51,45,49,51,32,46,55,48,56,45,46,55,48,56,32,49,51,32,49,51,45,46,55,48,55,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,101,108,100,88,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,101,108,100,88,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,51,51,56,32,49,46,53,57,97,54,49,46,52,52,32,54,49,46,52,52,32,48,32,48,32,48,45,50,46,56,51,55,46,56,53,54,46,52,56,49,46,52,56,49,32,48,32,48,32,48,45,46,51,50,56,46,51,57,99,45,46,53,53,52,32,52,46,49,53,55,46,55,50,54,32,55,46,49,57,32,50,46,50,53,51,32,57,46,49,56,56,97,49,48,46,55,50,53,32,49,48,46,55,50,53,32,48,32,48,32,48,32,50,46,50,56,55,32,50,46,50,51,51,99,46,51,52,54,46,50,52,52,46,54,53,50,46,52,50,46,56,57,51,46,53,51,51,46,49,50,46,48,53,55,46,50,49,56,46,48,57,53,46,50,57,51,46,49,49,56,97,46,53,53,46,53,53,32,48,32,48,32,48,32,46,49,48,49,46,48,50,53,46,54,49,53,46,54,49,53,32,48,32,48,32,48,32,46,49,45,46,48,50,53,99,46,48,55,54,45,46,48,50,51,46,49,55,52,45,46,48,54,49,46,50,57,52,45,46,49,49,56,46,50,52,45,46,49,49,51,46,53,52,55,45,46,50,57,46,56,57,51,45,46,53,51,51,97,49,48,46,55,50,54,32,49,48,46,55,50,54,32,48,32,48,32,48,32,50,46,50,56,55,45,50,46,50,51,51,99,49,46,53,50,55,45,49,46,57,57,55,32,50,46,56,48,55,45,53,46,48,51,49,32,50,46,50,53,51,45,57,46,49,56,56,97,46,52,56,46,52,56,32,48,32,48,32,48,45,46,51,50,56,45,46,51,57,99,45,46,54,53,49,45,46,50,49,51,45,49,46,55,53,45,46,53,54,45,50,46,56,51,55,45,46,56,53,53,67,57,46,53,53,50,32,49,46,50,57,32,56,46,53,51,49,32,49,46,48,54,55,32,56,32,49,46,48,54,55,99,45,46,53,51,32,48,45,49,46,53,53,50,46,50,50,51,45,50,46,54,54,50,46,53,50,52,122,77,53,46,48,55,50,46,53,54,67,54,46,49,53,55,46,50,54,53,32,55,46,51,49,32,48,32,56,32,48,115,49,46,56,52,51,46,50,54,53,32,50,46,57,50,56,46,53,54,99,49,46,49,49,46,51,32,50,46,50,50,57,46,54,53,53,32,50,46,56,56,55,46,56,55,97,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,49,46,48,52,52,32,49,46,50,54,50,99,46,53,57,54,32,52,46,52,55,55,45,46,55,56,55,32,55,46,55,57,53,45,50,46,52,54,53,32,57,46,57,57,97,49,49,46,55,55,53,32,49,49,46,55,55,53,32,48,32,48,32,49,45,50,46,53,49,55,32,50,46,52,53,51,32,55,46,49,53,57,32,55,46,49,53,57,32,48,32,48,32,49,45,49,46,48,52,56,46,54,50,53,99,45,46,50,56,46,49,51,50,45,46,53,56,49,46,50,52,45,46,56,50,57,46,50,52,115,45,46,53,52,56,45,46,49,48,56,45,46,56,50,57,45,46,50,52,97,55,46,49,53,56,32,55,46,49,53,56,32,48,32,48,32,49,45,49,46,48,52,56,45,46,54,50,53,32,49,49,46,55,55,55,32,49,49,46,55,55,55,32,48,32,48,32,49,45,50,46,53,49,55,45,50,46,52,53,51,67,49,46,57,50,56,32,49,48,46,52,56,55,46,53,52,53,32,55,46,49,54,57,32,49,46,49,52,49,32,50,46,54,57,50,65,49,46,53,52,32,49,46,53,52,32,48,32,48,32,49,32,50,46,49,56,53,32,49,46,52,51,32,54,50,46,52,53,54,32,54,50,46,52,53,54,32,48,32,48,32,49,32,53,46,48,55,50,46,53,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,46,49,52,54,32,53,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,54,46,50,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,55,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,55,46,55,48,55,32,54,46,56,53,52,32,56,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,55,32,54,46,49,52,54,32,53,46,56,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,102,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,50,55,32,50,46,48,52,55,97,49,32,49,32,48,32,48,32,49,32,49,46,52,54,32,48,108,54,46,51,52,53,32,54,46,55,55,99,46,54,46,54,51,56,46,49,52,54,32,49,46,54,56,51,45,46,55,51,32,49,46,54,56,51,72,49,49,46,53,118,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,51,72,49,46,54,53,52,67,46,55,56,32,49,48,46,53,46,51,50,54,32,57,46,52,53,53,46,57,50,52,32,56,46,56,49,54,76,55,46,50,55,32,50,46,48,52,55,122,77,49,52,46,51,52,54,32,57,46,53,76,56,32,50,46,55,51,49,32,49,46,54,53,52,32,57,46,53,72,52,46,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,51,104,53,118,45,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,46,56,52,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,105,102,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,105,102,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,50,55,32,50,46,48,52,55,97,49,32,49,32,48,32,48,32,49,32,49,46,52,54,32,48,108,54,46,51,52,53,32,54,46,55,55,99,46,54,46,54,51,56,46,49,52,54,32,49,46,54,56,51,45,46,55,51,32,49,46,54,56,51,72,49,49,46,53,118,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,51,72,49,46,54,53,52,67,46,55,56,32,49,48,46,53,46,51,50,54,32,57,46,52,53,53,46,57,50,52,32,56,46,56,49,54,76,55,46,50,55,32,50,46,48,52,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,111,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,111,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,57,55,32,49,46,51,53,65,49,32,49,32,48,32,48,32,49,32,51,46,55,51,32,49,104,56,46,53,52,97,49,32,49,32,48,32,48,32,49,32,46,55,54,46,51,53,108,50,46,54,48,57,32,51,46,48,52,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,53,46,51,55,118,46,50,53,53,97,50,46,51,55,53,32,50,46,51,55,53,32,48,32,48,32,49,45,52,46,50,53,32,49,46,52,53,56,65,50,46,51,55,49,32,50,46,51,55,49,32,48,32,48,32,49,32,57,46,56,55,53,32,56,32,50,46,51,55,32,50,46,51,55,32,48,32,48,32,49,32,56,32,55,46,48,56,51,32,50,46,51,55,32,50,46,51,55,32,48,32,48,32,49,32,54,46,49,50,53,32,56,97,50,46,51,55,32,50,46,51,55,32,48,32,48,32,49,45,49,46,56,55,53,45,46,57,49,55,65,50,46,51,55,53,32,50,46,51,55,53,32,48,32,48,32,49,32,48,32,53,46,54,50,53,86,53,46,51,55,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,46,51,54,49,45,46,57,55,54,108,50,46,54,49,45,51,46,48,52,53,122,109,49,46,55,56,32,52,46,50,55,53,97,49,46,51,55,53,32,49,46,51,55,53,32,48,32,48,32,48,32,50,46,55,53,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,32,49,46,51,55,53,32,49,46,51,55,53,32,48,32,48,32,48,32,50,46,55,53,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,32,49,46,51,55,53,32,49,46,51,55,53,32,48,32,49,32,48,32,50,46,55,53,32,48,86,53,46,51,55,97,46,53,46,53,32,48,32,48,32,48,45,46,49,50,45,46,51,50,53,76,49,50,46,50,55,32,50,72,51,46,55,51,76,49,46,49,50,32,53,46,48,52,53,65,46,53,46,53,32,48,32,48,32,48,32,49,32,53,46,51,55,118,46,50,53,53,97,49,46,51,55,53,32,49,46,51,55,53,32,48,32,48,32,48,32,50,46,55,53,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,77,49,46,53,32,56,46,53,65,46,53,46,53,32,48,32,48,32,49,32,50,32,57,118,54,104,49,118,45,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,53,104,54,86,57,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,54,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,86,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,52,32,49,53,104,51,118,45,53,72,52,118,53,122,109,53,45,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,51,122,109,51,32,48,104,45,50,118,51,104,50,118,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,111,112,87,105,110,100,111,119,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,111,112,87,105,110,100,111,119,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,57,55,32,49,46,51,53,65,49,32,49,32,48,32,48,32,49,32,51,46,55,51,32,49,104,56,46,53,52,97,49,32,49,32,48,32,48,32,49,32,46,55,54,46,51,53,108,50,46,54,48,57,32,51,46,48,52,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,53,46,51,55,118,46,50,53,53,97,50,46,51,55,53,32,50,46,51,55,53,32,48,32,48,32,49,45,52,46,50,53,32,49,46,52,53,56,65,50,46,51,55,49,32,50,46,51,55,49,32,48,32,48,32,49,32,57,46,56,55,53,32,56,32,50,46,51,55,32,50,46,51,55,32,48,32,48,32,49,32,56,32,55,46,48,56,51,32,50,46,51,55,32,50,46,51,55,32,48,32,48,32,49,32,54,46,49,50,53,32,56,97,50,46,51,55,32,50,46,51,55,32,48,32,48,32,49,45,49,46,56,55,53,45,46,57,49,55,65,50,46,51,55,53,32,50,46,51,55,53,32,48,32,48,32,49,32,48,32,53,46,54,50,53,86,53,46,51,55,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,46,51,54,49,45,46,57,55,54,108,50,46,54,49,45,51,46,48,52,53,122,109,49,46,55,56,32,52,46,50,55,53,97,49,46,51,55,53,32,49,46,51,55,53,32,48,32,48,32,48,32,50,46,55,53,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,32,49,46,51,55,53,32,49,46,51,55,53,32,48,32,48,32,48,32,50,46,55,53,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,32,49,46,51,55,53,32,49,46,51,55,53,32,48,32,49,32,48,32,50,46,55,53,32,48,86,53,46,51,55,97,46,53,46,53,32,48,32,48,32,48,45,46,49,50,45,46,51,50,53,76,49,50,46,50,55,32,50,72,51,46,55,51,76,49,46,49,50,32,53,46,48,52,53,65,46,53,46,53,32,48,32,48,32,48,32,49,32,53,46,51,55,118,46,50,53,53,97,49,46,51,55,53,32,49,46,51,55,53,32,48,32,48,32,48,32,50,46,55,53,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,77,49,46,53,32,56,46,53,65,46,53,46,53,32,48,32,48,32,49,32,50,32,57,118,54,104,49,50,86,57,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,54,104,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,86,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,50,32,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,51,104,56,86,57,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,57,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,104,117,102,102,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,104,117,102,102,108,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,48,32,51,46,53,65,46,53,46,53,32,48,32,48,32,49,32,46,53,32,51,72,49,99,50,46,50,48,50,32,48,32,51,46,56,50,55,32,49,46,50,52,32,52,46,56,55,52,32,50,46,52,49,56,46,52,57,46,53,53,50,46,56,54,53,32,49,46,49,48,50,32,49,46,49,50,54,32,49,46,53,51,50,46,50,54,45,46,52,51,46,54,51,54,45,46,57,56,32,49,46,49,50,54,45,49,46,53,51,50,67,57,46,49,55,51,32,52,46,50,52,32,49,48,46,55,57,56,32,51,32,49,51,32,51,118,49,99,45,49,46,55,57,56,32,48,45,51,46,49,55,51,32,49,46,48,49,45,52,46,49,50,54,32,50,46,48,56,50,65,57,46,54,50,52,32,57,46,54,50,52,32,48,32,48,32,48,32,55,46,53,53,54,32,56,97,57,46,54,50,52,32,57,46,54,50,52,32,48,32,48,32,48,32,49,46,51,49,55,32,49,46,57,49,56,67,57,46,56,50,56,32,49,48,46,57,57,32,49,49,46,50,48,52,32,49,50,32,49,51,32,49,50,118,49,99,45,50,46,50,48,50,32,48,45,51,46,56,50,55,45,49,46,50,52,45,52,46,56,55,52,45,50,46,52,49,56,65,49,48,46,53,57,53,32,49,48,46,53,57,53,32,48,32,48,32,49,32,55,32,57,46,48,53,99,45,46,50,54,46,52,51,45,46,54,51,54,46,57,56,45,49,46,49,50,54,32,49,46,53,51,50,67,52,46,56,50,55,32,49,49,46,55,54,32,51,46,50,48,50,32,49,51,32,49,32,49,51,72,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,99,49,46,55,57,56,32,48,32,51,46,49,55,51,45,49,46,48,49,32,52,46,49,50,54,45,50,46,48,56,50,65,57,46,54,50,52,32,57,46,54,50,52,32,48,32,48,32,48,32,54,46,52,52,52,32,56,97,57,46,54,50,52,32,57,46,54,50,52,32,48,32,48,32,48,45,49,46,51,49,55,45,49,46,57,49,56,67,52,46,49,55,50,32,53,46,48,49,32,50,46,55,57,54,32,52,32,49,32,52,72,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,51,32,53,46,52,54,54,86,49,46,53,51,52,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,52,49,45,46,49,57,50,108,50,46,51,54,32,49,46,57,54,54,99,46,49,50,46,49,46,49,50,46,50,56,52,32,48,32,46,51,56,52,108,45,50,46,51,54,32,49,46,57,54,54,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,52,49,45,46,49,57,50,122,109,48,32,57,118,45,51,46,57,51,50,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,52,49,45,46,49,57,50,108,50,46,51,54,32,49,46,57,54,54,99,46,49,50,46,49,46,49,50,46,50,56,52,32,48,32,46,51,56,52,108,45,50,46,51,54,32,49,46,57,54,54,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,52,49,45,46,49,57,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,105,103,110,112,111,115,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,105,103,110,112,111,115,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,49,46,52,49,52,86,52,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,52,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,53,118,54,104,50,118,45,54,104,51,46,53,51,50,97,49,32,49,32,48,32,48,32,48,32,46,55,54,56,45,46,51,54,108,49,46,57,51,51,45,50,46,51,50,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,54,52,76,49,51,46,51,32,52,46,51,54,97,49,32,49,32,48,32,48,32,48,45,46,55,54,56,45,46,51,54,72,57,86,49,46,52,49,52,97,49,32,49,32,48,32,48,32,48,45,50,32,48,122,77,49,50,46,53,51,50,32,53,108,49,46,54,54,54,32,50,45,49,46,54,54,54,32,50,72,50,86,53,104,49,48,46,53,51,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,105,103,110,112,111,115,116,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,105,103,110,112,111,115,116,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,49,46,52,49,52,86,50,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,53,118,49,72,50,46,53,97,49,32,49,32,48,32,48,32,48,45,46,56,46,52,76,46,55,50,53,32,56,46,55,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,54,108,46,57,55,53,32,49,46,51,97,49,32,49,32,48,32,48,32,48,32,46,56,46,52,72,55,118,53,104,50,118,45,53,104,53,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,56,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,57,86,54,104,52,46,53,97,49,32,49,32,48,32,48,32,48,32,46,56,45,46,52,108,46,57,55,53,45,49,46,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,54,76,49,52,46,51,32,50,46,52,97,49,32,49,32,48,32,48,32,48,45,46,56,45,46,52,72,57,118,45,46,53,56,54,97,49,32,49,32,48,32,48,32,48,45,50,32,48,122,77,49,51,46,53,32,51,108,46,55,53,32,49,45,46,55,53,32,49,72,50,86,51,104,49,49,46,53,122,109,46,53,32,53,118,50,72,50,46,53,108,45,46,55,53,45,49,32,46,55,53,45,49,72,49,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,105,103,110,112,111,115,116,50,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,105,103,110,112,111,115,116,50,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,50,57,51,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,55,32,49,46,52,49,52,86,50,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,53,118,49,72,50,46,53,97,49,32,49,32,48,32,48,32,48,45,46,56,46,52,76,46,55,50,53,32,56,46,55,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,54,108,46,57,55,53,32,49,46,51,97,49,32,49,32,48,32,48,32,48,32,46,56,46,52,72,55,118,53,104,50,118,45,53,104,53,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,56,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,57,86,54,104,52,46,53,97,49,32,49,32,48,32,48,32,48,32,46,56,45,46,52,108,46,57,55,53,45,49,46,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,54,76,49,52,46,51,32,50,46,52,97,49,32,49,32,48,32,48,32,48,45,46,56,45,46,52,72,57,118,45,46,53,56,54,65,49,32,49,32,48,32,48,32,48,32,55,46,50,57,51,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,105,103,110,112,111,115,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,105,103,110,112,111,115,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,50,57,51,46,55,48,55,65,49,32,49,32,48,32,48,32,48,32,55,32,49,46,52,49,52,86,52,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,52,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,53,118,54,104,50,118,45,54,104,51,46,53,51,50,97,49,32,49,32,48,32,48,32,48,32,46,55,54,56,45,46,51,54,108,49,46,57,51,51,45,50,46,51,50,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,54,52,76,49,51,46,51,32,52,46,51,54,97,49,32,49,32,48,32,48,32,48,45,46,55,54,56,45,46,51,54,72,57,86,49,46,52,49,52,65,49,32,49,32,48,32,48,32,48,32,55,46,50,57,51,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,105,103,110,112,111,115,116,83,112,108,105,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,55,86,49,46,52,49,52,97,49,32,49,32,48,32,48,32,49,32,50,32,48,86,50,104,53,97,49,32,49,32,48,32,48,32,49,32,46,56,46,52,108,46,57,55,53,32,49,46,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,54,76,49,52,46,56,32,53,46,54,97,49,32,49,32,48,32,48,32,49,45,46,56,46,52,72,57,118,49,48,72,55,118,45,53,72,50,97,49,32,49,32,48,32,48,32,49,45,46,56,45,46,52,76,46,50,50,53,32,57,46,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,54,76,49,46,50,32,55,46,52,65,49,32,49,32,48,32,48,32,49,32,50,32,55,104,53,122,109,49,32,51,86,56,72,50,108,45,46,55,53,32,49,76,50,32,49,48,104,54,122,109,48,45,53,104,54,108,46,55,53,45,49,76,49,52,32,51,72,56,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,105,103,110,112,111,115,116,83,112,108,105,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,49,54,104,50,86,54,104,53,97,49,32,49,32,48,32,48,32,48,32,46,56,45,46,52,108,46,57,55,53,45,49,46,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,54,76,49,52,46,56,32,50,46,52,65,49,32,49,32,48,32,48,32,48,32,49,52,32,50,72,57,118,45,46,53,56,54,97,49,32,49,32,48,32,48,32,48,45,50,32,48,86,55,72,50,97,49,32,49,32,48,32,48,32,48,45,46,56,46,52,76,46,50,50,53,32,56,46,55,97,46,53,46,53,32,48,32,48,32,48,32,48,32,46,54,108,46,57,55,53,32,49,46,51,97,49,32,49,32,48,32,48,32,48,32,46,56,46,52,104,53,118,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,105,109,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,105,109,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,46,53,32,48,104,55,46,48,56,54,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,48,54,46,52,52,108,49,46,57,49,53,32,49,46,57,49,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,52,32,51,46,52,49,52,86,49,52,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,57,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,50,32,49,52,46,53,118,45,49,51,122,77,51,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,57,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,51,46,52,49,52,97,46,53,46,53,32,48,32,48,32,48,45,46,49,52,54,45,46,51,53,51,108,45,49,46,57,49,53,45,49,46,57,49,53,65,46,53,46,53,32,48,32,48,32,48,32,49,48,46,53,56,54,32,49,72,51,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,86,54,104,50,46,53,86,52,104,45,50,122,109,51,32,48,118,50,72,49,49,86,52,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,50,122,77,49,49,32,55,72,53,118,50,104,54,86,55,122,109,48,32,51,72,56,46,53,118,50,104,50,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,49,48,122,109,45,51,46,53,32,50,118,45,50,72,53,118,49,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,50,122,77,52,32,52,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,46,53,32,51,104,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,50,32,52,46,53,118,55,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,32,49,49,46,53,118,45,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,105,109,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,105,109,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,118,50,72,53,86,52,46,53,122,77,56,46,53,32,54,86,52,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,54,72,56,46,53,122,77,53,32,55,104,54,118,50,72,53,86,55,122,109,51,46,53,32,51,72,49,49,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,50,118,45,50,122,109,45,49,32,48,118,50,104,45,50,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,49,48,104,50,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,50,32,49,46,53,118,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,46,53,32,49,54,104,57,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,86,51,46,52,49,52,97,49,46,53,32,49,46,53,32,48,32,48,32,48,45,46,52,52,45,49,46,48,54,76,49,49,46,54,52,55,46,52,51,57,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,48,46,53,56,54,32,48,72,51,46,53,122,109,50,32,51,104,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,50,32,52,46,53,118,55,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,32,49,49,46,53,118,45,55,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,46,53,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,66,97,99,107,119,97,114,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,53,32,51,46,53,65,46,53,46,53,32,48,32,48,32,49,32,49,32,52,118,51,46,50,52,56,108,54,46,50,54,55,45,51,46,54,51,54,99,46,53,50,45,46,51,48,50,32,49,46,50,51,51,46,48,52,51,32,49,46,50,51,51,46,54,57,54,118,50,46,57,52,108,54,46,50,54,55,45,51,46,54,51,54,99,46,53,50,45,46,51,48,50,32,49,46,50,51,51,46,48,52,51,32,49,46,50,51,51,46,54,57,54,118,55,46,51,56,52,99,48,32,46,54,53,51,45,46,55,49,51,46,57,57,56,45,49,46,50,51,51,46,54,57,54,76,56,46,53,32,56,46,55,53,50,118,50,46,57,52,99,48,32,46,54,53,51,45,46,55,49,51,46,57,57,56,45,49,46,50,51,51,46,54,57,54,76,49,32,56,46,55,53,50,86,49,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,55,32,49,46,49,51,51,76,49,46,54,57,54,32,56,32,55,46,53,32,49,49,46,51,54,55,86,52,46,54,51,51,122,109,55,46,53,32,48,76,57,46,49,57,54,32,56,32,49,53,32,49,49,46,51,54,55,86,52,46,54,51,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,55,57,32,53,46,48,57,51,65,46,53,46,53,32,48,32,48,32,48,32,52,32,53,46,53,118,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,46,52,48,55,76,55,46,53,32,56,46,57,55,50,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,46,52,48,55,76,49,49,32,56,46,57,55,50,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,49,46,53,50,56,76,56,46,50,57,32,53,46,48,57,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,57,46,52,48,55,118,49,46,53,50,56,76,52,46,55,57,32,53,46,48,57,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,122,109,49,53,32,48,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,48,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,122,109,52,46,55,57,45,54,46,57,48,55,65,46,53,46,53,32,48,32,48,32,48,32,52,32,51,46,53,118,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,46,52,48,55,76,55,46,53,32,54,46,57,55,50,86,56,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,46,52,48,55,76,49,49,32,54,46,57,55,50,86,56,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,49,46,53,50,56,76,56,46,50,57,32,51,46,48,57,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,57,46,52,48,55,118,49,46,53,50,56,76,52,46,55,57,32,51,46,48,57,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,50,55,49,32,53,46,48,53,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,50,46,48,51,56,76,55,46,53,32,55,46,48,50,56,86,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,57,45,46,52,48,55,76,49,49,32,55,46,48,50,56,86,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,46,57,55,50,108,45,50,46,55,49,32,49,46,57,51,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,57,45,46,52,48,55,86,56,46,57,55,50,108,45,50,46,55,49,32,49,46,57,51,53,65,46,53,46,53,32,48,32,48,32,49,32,52,32,49,48,46,53,118,45,53,97,46,53,46,53,32,48,32,48,32,49,32,46,50,55,49,45,46,52,52,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,52,46,55,57,32,53,46,48,57,51,65,46,53,46,53,32,48,32,48,32,48,32,52,32,53,46,53,118,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,46,52,48,55,76,55,46,53,32,56,46,57,55,50,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,46,52,48,55,76,49,49,32,56,46,57,55,50,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,49,46,53,50,56,76,56,46,50,57,32,53,46,48,57,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,57,46,52,48,55,118,49,46,53,50,56,76,52,46,55,57,32,53,46,48,57,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,66,97,99,107,119,97,114,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,53,32,51,46,53,65,46,53,46,53,32,48,32,48,32,48,32,48,32,52,118,56,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,56,46,55,53,51,108,54,46,50,54,55,32,51,46,54,51,54,99,46,53,52,46,51,49,51,32,49,46,50,51,51,45,46,48,54,54,32,49,46,50,51,51,45,46,54,57,55,118,45,50,46,57,52,108,54,46,50,54,55,32,51,46,54,51,54,99,46,53,52,46,51,49,52,32,49,46,50,51,51,45,46,48,54,53,32,49,46,50,51,51,45,46,54,57,54,86,52,46,51,48,56,99,48,45,46,54,51,45,46,54,57,51,45,49,46,48,49,45,49,46,50,51,51,45,46,54,57,54,76,56,46,53,32,55,46,50,52,56,118,45,50,46,57,52,99,48,45,46,54,51,45,46,54,57,50,45,49,46,48,49,45,49,46,50,51,51,45,46,54,57,54,76,49,32,55,46,50,52,56,86,52,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,69,110,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,69,110,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,51,46,50,52,56,76,53,46,50,51,51,32,51,46,54,49,50,67,52,46,55,49,51,32,51,46,51,49,32,52,32,51,46,54,53,53,32,52,32,52,46,51,48,56,118,55,46,51,56,52,99,48,32,46,54,53,51,46,55,49,51,46,57,57,56,32,49,46,50,51,51,46,54,57,54,76,49,49,46,53,32,56,46,55,53,50,86,49,50,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,52,122,77,53,32,52,46,54,51,51,76,49,48,46,56,48,52,32,56,32,53,32,49,49,46,51,54,55,86,52,46,54,51,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,69,110,100,66,116,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,55,57,32,53,46,48,57,51,76,57,46,53,32,55,46,48,50,56,86,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,46,57,55,50,108,45,50,46,55,49,32,49,46,57,51,53,65,46,53,46,53,32,48,32,48,32,49,32,54,32,49,48,46,53,118,45,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,57,45,46,52,48,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,122,109,49,53,32,48,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,69,110,100,66,116,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,50,86,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,122,109,54,46,55,57,45,54,46,57,48,55,65,46,53,46,53,32,48,32,48,32,48,32,54,32,53,46,53,118,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,46,52,48,55,76,57,46,53,32,56,46,57,55,50,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,49,46,53,50,56,76,54,46,55,57,32,53,46,48,57,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,69,110,100,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,46,50,55,49,32,53,46,48,53,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,50,46,48,51,56,76,57,46,53,32,55,46,48,50,56,86,53,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,46,57,55,50,108,45,50,46,55,49,32,49,46,57,51,53,65,46,53,46,53,32,48,32,48,32,49,32,54,32,49,48,46,53,118,45,53,97,46,53,46,53,32,48,32,48,32,49,32,46,50,55,49,45,46,52,52,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,69,110,100,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,54,46,55,57,32,53,46,48,57,51,65,46,53,46,53,32,48,32,48,32,48,32,54,32,53,46,53,118,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,46,52,48,55,76,57,46,53,32,56,46,57,55,50,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,49,46,53,50,56,76,54,46,55,57,32,53,46,48,57,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,69,110,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,69,110,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,51,46,50,52,56,76,53,46,50,51,51,32,51,46,54,49,50,67,52,46,54,57,51,32,51,46,51,32,52,32,51,46,54,55,56,32,52,32,52,46,51,48,56,118,55,46,51,56,52,99,48,32,46,54,51,46,54,57,50,32,49,46,48,49,32,49,46,50,51,51,46,54,57,55,76,49,49,46,53,32,56,46,55,53,51,86,49,50,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,70,111,114,119,97,114,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,53,46,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,56,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,46,55,53,50,108,45,54,46,50,54,55,32,51,46,54,51,54,99,45,46,53,50,46,51,48,50,45,49,46,50,51,51,45,46,48,52,51,45,49,46,50,51,51,45,46,54,57,54,118,45,50,46,57,52,108,45,54,46,50,54,55,32,51,46,54,51,54,67,46,55,49,51,32,49,50,46,54,57,32,48,32,49,50,46,51,52,53,32,48,32,49,49,46,54,57,50,86,52,46,51,48,56,99,48,45,46,54,53,51,46,55,49,51,45,46,57,57,56,32,49,46,50,51,51,45,46,54,57,54,76,55,46,53,32,55,46,50,52,56,118,45,50,46,57,52,99,48,45,46,54,53,51,46,55,49,51,45,46,57,57,56,32,49,46,50,51,51,45,46,54,57,54,76,49,53,32,55,46,50,52,56,86,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,49,32,52,46,54,51,51,118,54,46,55,51,52,76,54,46,56,48,52,32,56,32,49,32,52,46,54,51,51,122,109,55,46,53,32,48,118,54,46,55,51,52,76,49,52,46,51,48,52,32,56,32,56,46,53,32,52,46,54,51,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,70,111,114,119,97,114,100,66,116,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,50,49,32,53,46,48,57,51,65,46,53,46,53,32,48,32,48,32,49,32,49,50,32,53,46,53,118,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,57,46,52,48,55,76,56,46,53,32,56,46,57,55,50,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,57,46,52,48,55,76,53,32,56,46,57,55,50,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,49,46,53,50,56,108,50,46,55,49,45,49,46,57,51,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,57,46,52,48,55,118,49,46,53,50,56,108,50,46,55,49,45,49,46,57,51,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,122,109,49,53,32,48,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,70,111,114,119,97,114,100,66,116,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,50,86,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,122,109,49,49,46,50,49,45,54,46,57,48,55,76,56,46,53,32,55,46,48,50,56,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,55,57,45,46,52,48,55,76,53,32,55,46,48,50,56,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,56,46,57,55,50,108,50,46,55,49,32,49,46,57,51,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,45,46,52,48,55,86,56,46,57,55,50,108,50,46,55,49,32,49,46,57,51,53,65,46,53,46,53,32,48,32,48,32,48,32,49,50,32,49,48,46,53,118,45,53,97,46,53,46,53,32,48,32,48,32,48,45,46,55,57,45,46,52,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,46,55,50,57,32,53,46,48,53,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,50,46,48,51,56,76,56,46,53,32,55,46,48,50,56,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,55,57,45,46,52,48,55,76,53,32,55,46,48,50,56,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,56,46,57,55,50,108,50,46,55,49,32,49,46,57,51,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,45,46,52,48,55,86,56,46,57,55,50,108,50,46,55,49,32,49,46,57,51,53,65,46,53,46,53,32,48,32,48,32,48,32,49,50,32,49,48,46,53,118,45,53,97,46,53,46,53,32,48,32,48,32,48,45,46,50,55,49,45,46,52,52,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,109,45,52,46,55,57,45,50,46,57,48,55,76,56,46,53,32,55,46,48,50,56,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,55,57,45,46,52,48,55,76,53,32,55,46,48,50,56,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,56,46,57,55,50,108,50,46,55,49,32,49,46,57,51,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,45,46,52,48,55,86,56,46,57,55,50,108,50,46,55,49,32,49,46,57,51,53,65,46,53,46,53,32,48,32,48,32,48,32,49,50,32,49,48,46,53,118,45,53,97,46,53,46,53,32,48,32,48,32,48,45,46,55,57,45,46,52,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,70,111,114,119,97,114,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,53,46,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,56,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,56,46,55,53,51,108,45,54,46,50,54,55,32,51,46,54,51,54,99,45,46,53,52,46,51,49,51,45,49,46,50,51,51,45,46,48,54,54,45,49,46,50,51,51,45,46,54,57,55,118,45,50,46,57,52,108,45,54,46,50,54,55,32,51,46,54,51,54,67,46,54,57,51,32,49,50,46,55,48,51,32,48,32,49,50,46,51,50,52,32,48,32,49,49,46,54,57,51,86,52,46,51,48,56,99,48,45,46,54,51,46,54,57,51,45,49,46,48,49,32,49,46,50,51,51,45,46,54,57,54,76,55,46,53,32,55,46,50,52,56,118,45,50,46,57,52,99,48,45,46,54,51,46,54,57,51,45,49,46,48,49,32,49,46,50,51,51,45,46,54,57,54,76,49,53,32,55,46,50,52,56,86,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,83,116,97,114,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,52,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,51,46,50,52,56,108,54,46,50,54,55,45,51,46,54,51,54,99,46,53,50,45,46,51,48,50,32,49,46,50,51,51,46,48,52,51,32,49,46,50,51,51,46,54,57,54,118,55,46,51,56,52,99,48,32,46,54,53,51,45,46,55,49,51,46,57,57,56,45,49,46,50,51,51,46,54,57,54,76,53,32,56,46,55,53,50,86,49,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,52,122,109,55,46,53,46,54,51,51,76,53,46,54,57,54,32,56,108,53,46,56,48,52,32,51,46,51,54,55,86,52,46,54,51,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,83,116,97,114,116,66,116,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,55,49,32,53,46,48,57,51,97,46,53,46,53,32,48,32,48,32,49,32,46,55,57,46,52,48,55,118,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,57,46,52,48,55,76,55,32,56,46,57,55,50,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,49,46,53,50,56,108,50,46,55,49,45,49,46,57,51,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,122,109,49,53,32,48,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,83,116,97,114,116,66,116,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,50,86,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,122,109,57,46,55,49,45,54,46,57,48,55,76,55,32,55,46,48,50,56,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,56,46,57,55,50,108,50,46,55,49,32,49,46,57,51,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,45,46,52,48,55,118,45,53,97,46,53,46,53,32,48,32,48,32,48,45,46,55,57,45,46,52,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,50,50,57,32,53,46,48,53,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,50,46,48,51,56,76,55,32,55,46,48,50,56,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,56,46,57,55,50,108,50,46,55,49,32,49,46,57,51,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,45,46,52,48,55,118,45,53,97,46,53,46,53,32,48,32,48,32,48,45,46,50,55,49,45,46,52,52,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,57,46,55,49,32,53,46,48,57,51,76,55,32,55,46,48,50,56,86,53,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,56,46,57,55,50,108,50,46,55,49,32,49,46,57,51,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,45,46,52,48,55,118,45,53,97,46,53,46,53,32,48,32,48,32,48,45,46,55,57,45,46,52,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,107,105,112,83,116,97,114,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,52,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,51,46,50,52,56,108,54,46,50,54,55,45,51,46,54,51,54,99,46,53,52,45,46,51,49,51,32,49,46,50,51,50,46,48,54,54,32,49,46,50,51,50,46,54,57,54,118,55,46,51,56,52,99,48,32,46,54,51,45,46,54,57,50,32,49,46,48,49,45,49,46,50,51,50,46,54,57,55,76,53,32,56,46,55,53,51,86,49,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,108,97,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,108,97,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,51,54,50,32,49,48,46,49,49,99,48,32,46,57,50,54,45,46,55,53,54,32,49,46,54,56,49,45,49,46,54,56,49,32,49,46,54,56,49,83,48,32,49,49,46,48,51,54,32,48,32,49,48,46,49,49,49,67,48,32,57,46,49,56,54,46,55,53,54,32,56,46,52,51,32,49,46,54,56,32,56,46,52,51,104,49,46,54,56,50,118,49,46,54,56,122,109,46,56,52,54,32,48,99,48,45,46,57,50,52,46,55,53,54,45,49,46,54,56,32,49,46,54,56,49,45,49,46,54,56,115,49,46,54,56,49,46,55,53,54,32,49,46,54,56,49,32,49,46,54,56,118,52,46,50,49,99,48,32,46,57,50,52,45,46,55,53,54,32,49,46,54,56,45,49,46,54,56,32,49,46,54,56,97,49,46,54,56,53,32,49,46,54,56,53,32,48,32,48,32,49,45,49,46,54,56,50,45,49,46,54,56,118,45,52,46,50,49,122,77,53,46,56,57,32,51,46,51,54,50,99,45,46,57,50,54,32,48,45,49,46,54,56,50,45,46,55,53,54,45,49,46,54,56,50,45,49,46,54,56,49,83,52,46,57,54,52,32,48,32,53,46,56,57,32,48,115,49,46,54,56,46,55,53,54,32,49,46,54,56,32,49,46,54,56,118,49,46,54,56,50,72,53,46,56,57,122,109,48,32,46,56,52,54,99,46,57,50,52,32,48,32,49,46,54,56,46,55,53,54,32,49,46,54,56,32,49,46,54,56,49,83,54,46,56,49,52,32,55,46,53,55,32,53,46,56,57,32,55,46,53,55,72,49,46,54,56,67,46,55,53,55,32,55,46,53,55,32,48,32,54,46,56,49,52,32,48,32,53,46,56,57,99,48,45,46,57,50,54,46,55,53,54,45,49,46,54,56,50,32,49,46,54,56,45,49,46,54,56,50,104,52,46,50,49,122,109,54,46,55,52,57,32,49,46,54,56,50,99,48,45,46,57,50,54,46,55,53,53,45,49,46,54,56,50,32,49,46,54,56,45,49,46,54,56,50,46,57,50,53,32,48,32,49,46,54,56,49,46,55,53,54,32,49,46,54,56,49,32,49,46,54,56,49,115,45,46,55,53,54,32,49,46,54,56,49,45,49,46,54,56,32,49,46,54,56,49,104,45,49,46,54,56,49,86,53,46,56,57,122,109,45,46,56,52,56,32,48,99,48,32,46,57,50,52,45,46,55,53,53,32,49,46,54,56,45,49,46,54,56,32,49,46,54,56,65,49,46,54,56,53,32,49,46,54,56,53,32,48,32,48,32,49,32,56,46,52,51,32,53,46,56,57,86,49,46,54,56,67,56,46,52,51,46,55,53,55,32,57,46,49,56,54,32,48,32,49,48,46,49,49,32,48,99,46,57,50,54,32,48,32,49,46,54,56,49,46,55,53,54,32,49,46,54,56,49,32,49,46,54,56,118,52,46,50,49,122,109,45,49,46,54,56,49,32,54,46,55,52,56,99,46,57,50,54,32,48,32,49,46,54,56,50,46,55,53,54,32,49,46,54,56,50,32,49,46,54,56,49,83,49,49,46,48,51,54,32,49,54,32,49,48,46,49,49,32,49,54,115,45,49,46,54,56,49,45,46,55,53,54,45,49,46,54,56,49,45,49,46,54,56,118,45,49,46,54,56,50,104,49,46,54,56,122,109,48,45,46,56,52,55,99,45,46,57,50,52,32,48,45,49,46,54,56,45,46,55,53,53,45,49,46,54,56,45,49,46,54,56,32,48,45,46,57,50,53,46,55,53,54,45,49,46,54,56,49,32,49,46,54,56,45,49,46,54,56,49,104,52,46,50,49,99,46,57,50,52,32,48,32,49,46,54,56,46,55,53,54,32,49,46,54,56,32,49,46,54,56,32,48,32,46,57,50,54,45,46,55,53,54,32,49,46,54,56,49,45,49,46,54,56,32,49,46,54,56,49,104,45,52,46,50,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,108,97,115,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,108,97,115,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,51,53,52,32,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,54,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,108,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,108,97,115,104,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,46,51,53,52,32,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,32,48,108,45,54,32,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,108,54,45,54,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,108,97,115,104,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,109,45,52,46,54,52,54,45,50,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,108,45,54,32,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,108,54,45,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,108,97,115,104,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,46,51,53,52,32,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,54,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,108,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,108,97,115,104,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,57,46,51,53,52,32,53,46,51,53,52,108,45,54,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,108,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,108,105,100,101,114,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,108,105,100,101,114,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,46,53,32,50,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,32,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,45,51,122,77,57,46,48,53,32,51,97,50,46,53,32,50,46,53,32,48,32,48,32,49,32,52,46,57,32,48,72,49,54,118,49,104,45,50,46,48,53,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,52,46,57,32,48,72,48,86,51,104,57,46,48,53,122,77,52,46,53,32,55,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,32,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,45,51,122,77,50,46,48,53,32,56,97,50,46,53,32,50,46,53,32,48,32,48,32,49,32,52,46,57,32,48,72,49,54,118,49,72,54,46,57,53,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,52,46,57,32,48,72,48,86,56,104,50,46,48,53,122,109,57,46,52,53,32,52,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,32,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,45,51,122,109,45,50,46,52,53,32,49,97,50,46,53,32,50,46,53,32,48,32,48,32,49,32,52,46,57,32,48,72,49,54,118,49,104,45,50,46,48,53,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,52,46,57,32,48,72,48,118,45,49,104,57,46,48,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,109,97,114,116,119,97,116,99,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,109,97,114,116,119,97,116,99,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,32,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,51,72,54,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,49,46,54,54,55,118,46,51,56,51,65,50,46,53,32,50,46,53,32,48,32,48,32,48,32,50,32,52,46,53,118,55,97,50,46,53,32,50,46,53,32,48,32,48,32,48,32,50,32,50,46,52,53,118,46,51,56,51,67,52,32,49,53,46,50,53,51,32,52,46,55,52,54,32,49,54,32,53,46,54,54,55,32,49,54,104,52,46,54,54,54,99,46,57,50,32,48,32,49,46,54,54,55,45,46,55,52,54,32,49,46,54,54,55,45,49,46,54,54,55,118,45,46,51,56,51,97,50,46,53,32,50,46,53,32,48,32,48,32,48,32,50,45,50,46,52,53,86,56,104,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,49,52,118,45,46,53,97,50,46,53,32,50,46,53,32,48,32,48,32,48,45,50,45,50,46,52,53,118,45,46,51,56,51,67,49,50,32,46,55,52,55,32,49,49,46,50,53,52,32,48,32,49,48,46,51,51,51,32,48,72,53,46,54,54,55,67,52,46,55,52,55,32,48,32,52,32,46,55,52,54,32,52,32,49,46,54,54,55,122,77,52,46,53,32,51,104,55,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,51,32,52,46,53,118,55,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,55,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,49,49,46,53,118,45,55,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,52,46,53,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,111,114,116,65,108,112,104,97,68,111,119,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,48,56,50,32,53,46,54,50,57,76,57,46,54,54,52,32,55,72,56,46,53,57,56,108,49,46,55,56,57,45,53,46,51,51,50,104,49,46,50,51,52,76,49,51,46,52,48,50,32,55,104,45,49,46,49,50,108,45,46,52,49,57,45,49,46,51,55,49,104,45,49,46,55,56,49,122,109,49,46,53,55,45,46,55,56,53,76,49,49,32,50,46,54,56,55,104,45,46,48,52,55,108,45,46,54,53,50,32,50,46,49,53,55,104,49,46,51,53,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,46,57,54,32,49,52,72,57,46,48,50,56,118,45,46,54,57,49,108,50,46,53,55,57,45,51,46,55,50,118,45,46,48,53,52,72,57,46,48,57,56,118,45,46,56,54,55,104,51,46,55,56,53,118,46,54,57,49,108,45,50,46,53,54,55,32,51,46,55,50,118,46,48,53,52,104,50,46,54,52,53,86,49,52,122,77,52,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,57,46,55,57,51,108,45,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,108,50,32,49,46,57,57,57,46,48,48,55,46,48,48,55,97,46,52,57,55,46,52,57,55,32,48,32,48,32,48,32,46,55,45,46,48,48,54,108,50,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,55,45,46,55,48,56,76,52,46,53,32,49,50,46,50,57,51,86,50,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,65,108,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,111,114,116,65,108,112,104,97,68,111,119,110,65,108,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,57,54,32,55,72,57,46,48,50,56,118,45,46,54,57,49,108,50,46,53,55,57,45,51,46,55,50,118,45,46,48,53,52,72,57,46,48,57,56,118,45,46,56,54,55,104,51,46,55,56,53,118,46,54,57,49,108,45,50,46,53,54,55,32,51,46,55,50,118,46,48,53,52,104,50,46,54,52,53,86,55,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,48,56,50,32,49,50,46,54,50,57,76,57,46,54,54,52,32,49,52,72,56,46,53,57,56,108,49,46,55,56,57,45,53,46,51,51,50,104,49,46,50,51,52,76,49,51,46,52,48,50,32,49,52,104,45,49,46,49,50,108,45,46,52,49,57,45,49,46,51,55,49,104,45,49,46,55,56,49,122,109,49,46,53,55,45,46,55,56,53,76,49,49,32,57,46,54,56,56,104,45,46,48,52,55,108,45,46,54,53,50,32,50,46,49,53,54,104,49,46,51,53,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,57,46,55,57,51,108,45,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,108,50,32,49,46,57,57,57,46,48,48,55,46,48,48,55,97,46,52,57,55,46,52,57,55,32,48,32,48,32,48,32,46,55,45,46,48,48,54,108,50,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,55,45,46,55,48,56,76,52,46,53,32,49,50,46,50,57,51,86,50,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,111,114,116,65,108,112,104,97,85,112,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,48,56,50,32,53,46,54,50,57,76,57,46,54,54,52,32,55,72,56,46,53,57,56,108,49,46,55,56,57,45,53,46,51,51,50,104,49,46,50,51,52,76,49,51,46,52,48,50,32,55,104,45,49,46,49,50,108,45,46,52,49,57,45,49,46,51,55,49,104,45,49,46,55,56,49,122,109,49,46,53,55,45,46,55,56,53,76,49,49,32,50,46,54,56,55,104,45,46,48,52,55,108,45,46,54,53,50,32,50,46,49,53,55,104,49,46,51,53,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,46,57,54,32,49,52,72,57,46,48,50,56,118,45,46,54,57,49,108,50,46,53,55,57,45,51,46,55,50,118,45,46,48,53,52,72,57,46,48,57,56,118,45,46,56,54,55,104,51,46,55,56,53,118,46,54,57,49,108,45,50,46,53,54,55,32,51,46,55,50,118,46,48,53,52,104,50,46,54,52,53,86,49,52,122,109,45,56,46,52,54,45,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,51,46,55,48,55,76,50,46,51,53,52,32,52,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,50,45,49,46,57,57,57,46,48,48,55,45,46,48,48,55,97,46,52,57,56,46,52,57,56,32,48,32,48,32,49,32,46,55,46,48,48,54,108,50,32,50,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,46,55,48,56,76,52,46,53,32,51,46,55,48,55,86,49,51,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,65,108,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,111,114,116,65,108,112,104,97,85,112,65,108,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,57,54,32,55,72,57,46,48,50,56,118,45,46,54,57,49,108,50,46,53,55,57,45,51,46,55,50,118,45,46,48,53,52,72,57,46,48,57,56,118,45,46,56,54,55,104,51,46,55,56,53,118,46,54,57,49,108,45,50,46,53,54,55,32,51,46,55,50,118,46,48,53,52,104,50,46,54,52,53,86,55,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,48,56,50,32,49,50,46,54,50,57,76,57,46,54,54,52,32,49,52,72,56,46,53,57,56,108,49,46,55,56,57,45,53,46,51,51,50,104,49,46,50,51,52,76,49,51,46,52,48,50,32,49,52,104,45,49,46,49,50,108,45,46,52,49,57,45,49,46,51,55,49,104,45,49,46,55,56,49,122,109,49,46,53,55,45,46,55,56,53,76,49,49,32,57,46,54,56,56,104,45,46,48,52,55,108,45,46,54,53,50,32,50,46,49,53,54,104,49,46,51,53,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,53,32,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,51,46,55,48,55,76,50,46,51,53,52,32,52,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,50,45,49,46,57,57,57,46,48,48,55,45,46,48,48,55,97,46,52,57,56,46,52,57,56,32,48,32,48,32,49,32,46,55,46,48,48,54,108,50,32,50,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,46,55,48,56,76,52,46,53,32,51,46,55,48,55,86,49,51,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,111,114,116,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,111,114,116,68,111,119,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,56,46,55,57,51,108,45,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,108,50,32,49,46,57,57,57,46,48,48,55,46,48,48,55,97,46,52,57,55,46,52,57,55,32,48,32,48,32,48,32,46,55,45,46,48,48,54,108,50,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,55,45,46,55,48,56,76,51,46,53,32,49,49,46,50,57,51,86,50,46,53,122,109,51,46,53,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,55,46,53,32,54,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,53,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,51,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,111,114,116,68,111,119,110,65,108,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,111,114,116,68,111,119,110,65,108,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,51,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,56,46,55,57,51,108,45,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,108,50,32,49,46,57,57,57,46,48,48,55,46,48,48,55,97,46,52,57,55,46,52,57,55,32,48,32,48,32,48,32,46,55,45,46,48,48,54,108,50,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,55,45,46,55,48,56,76,51,46,53,32,49,50,46,50,57,51,86,51,46,53,122,109,52,32,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,122,77,55,32,49,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,55,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,55,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,52,51,56,32,49,46,54,54,56,86,55,72,49,49,46,51,57,86,50,46,54,56,52,104,45,46,48,53,49,108,45,49,46,50,49,49,46,56,53,57,118,45,46,57,54,57,108,49,46,50,54,50,45,46,57,48,54,104,49,46,48,52,54,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,46,51,54,32,49,52,46,48,57,56,99,45,49,46,49,51,55,32,48,45,49,46,55,48,56,45,46,54,53,55,45,49,46,55,54,50,45,49,46,50,55,56,104,49,46,48,48,52,99,46,48,53,56,46,50,50,51,46,51,52,51,46,52,53,46,55,55,51,46,52,53,46,56,50,52,32,48,32,49,46,49,54,52,45,46,56,50,57,32,49,46,49,51,51,45,49,46,56,53,54,104,45,46,48,53,57,99,45,46,49,52,56,46,51,57,45,46,53,55,46,55,52,50,45,49,46,50,54,49,46,55,52,50,45,46,57,49,32,48,45,49,46,55,50,45,46,54,49,51,45,49,46,55,50,45,49,46,55,53,56,32,48,45,49,46,49,52,56,46,56,52,56,45,49,46,56,51,53,32,49,46,57,55,51,45,49,46,56,51,53,32,49,46,48,57,32,48,32,50,46,48,54,51,46,54,51,54,32,50,46,48,54,51,32,50,46,54,56,55,32,48,32,49,46,56,54,55,45,46,55,50,51,32,50,46,56,52,56,45,50,46,49,52,53,32,50,46,56,52,56,122,109,46,48,54,50,45,50,46,55,51,53,99,46,53,48,52,32,48,32,46,57,51,51,45,46,51,51,54,46,57,51,51,45,46,57,55,50,32,48,45,46,54,51,51,45,46,51,57,56,45,49,46,48,48,56,45,46,57,52,45,49,46,48,48,56,45,46,53,50,32,48,45,46,57,50,55,46,51,55,53,45,46,57,50,55,32,49,32,48,32,46,54,52,46,52,49,56,46,57,56,46,57,51,52,46,57,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,57,46,55,57,51,108,45,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,108,50,32,49,46,57,57,57,46,48,48,55,46,48,48,55,97,46,52,57,55,46,52,57,55,32,48,32,48,32,48,32,46,55,45,46,48,48,54,108,50,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,55,45,46,55,48,56,76,52,46,53,32,49,50,46,50,57,51,86,50,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,65,108,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,65,108,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,46,51,54,32,55,46,48,57,56,99,45,49,46,49,51,55,32,48,45,49,46,55,48,56,45,46,54,53,55,45,49,46,55,54,50,45,49,46,50,55,56,104,49,46,48,48,52,99,46,48,53,56,46,50,50,51,46,51,52,51,46,52,53,46,55,55,51,46,52,53,46,56,50,52,32,48,32,49,46,49,54,52,45,46,56,50,57,32,49,46,49,51,51,45,49,46,56,53,54,104,45,46,48,53,57,99,45,46,49,52,56,46,51,57,45,46,53,55,46,55,52,50,45,49,46,50,54,49,46,55,52,50,45,46,57,49,32,48,45,49,46,55,50,45,46,54,49,51,45,49,46,55,50,45,49,46,55,53,56,32,48,45,49,46,49,52,56,46,56,52,56,45,49,46,56,51,54,32,49,46,57,55,51,45,49,46,56,51,54,32,49,46,48,57,32,48,32,50,46,48,54,51,46,54,51,55,32,50,46,48,54,51,32,50,46,54,56,56,32,48,32,49,46,56,54,55,45,46,55,50,51,32,50,46,56,52,56,45,50,46,49,52,53,32,50,46,56,52,56,122,109,46,48,54,50,45,50,46,55,51,53,99,46,53,48,52,32,48,32,46,57,51,51,45,46,51,51,54,46,57,51,51,45,46,57,55,50,32,48,45,46,54,51,51,45,46,51,57,56,45,49,46,48,48,56,45,46,57,52,45,49,46,48,48,56,45,46,53,50,32,48,45,46,57,50,55,46,51,55,53,45,46,57,50,55,32,49,32,48,32,46,54,52,46,52,49,56,46,57,56,46,57,51,52,46,57,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,46,52,51,56,32,56,46,54,54,56,86,49,52,72,49,49,46,51,57,86,57,46,54,56,52,104,45,46,48,53,49,108,45,49,46,50,49,49,46,56,53,57,118,45,46,57,54,57,108,49,46,50,54,50,45,46,57,48,54,104,49,46,48,52,54,122,77,52,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,57,46,55,57,51,108,45,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,46,55,48,56,108,50,32,49,46,57,57,57,46,48,48,55,46,48,48,55,97,46,52,57,55,46,52,57,55,32,48,32,48,32,48,32,46,55,45,46,48,48,54,108,50,45,50,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,55,45,46,55,48,56,76,52,46,53,32,49,50,46,50,57,51,86,50,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,111,114,116,78,117,109,101,114,105,99,85,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,52,51,56,32,49,46,54,54,56,86,55,72,49,49,46,51,57,86,50,46,54,56,52,104,45,46,48,53,49,108,45,49,46,50,49,49,46,56,53,57,118,45,46,57,54,57,108,49,46,50,54,50,45,46,57,48,54,104,49,46,48,52,54,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,46,51,54,32,49,52,46,48,57,56,99,45,49,46,49,51,55,32,48,45,49,46,55,48,56,45,46,54,53,55,45,49,46,55,54,50,45,49,46,50,55,56,104,49,46,48,48,52,99,46,48,53,56,46,50,50,51,46,51,52,51,46,52,53,46,55,55,51,46,52,53,46,56,50,52,32,48,32,49,46,49,54,52,45,46,56,50,57,32,49,46,49,51,51,45,49,46,56,53,54,104,45,46,48,53,57,99,45,46,49,52,56,46,51,57,45,46,53,55,46,55,52,50,45,49,46,50,54,49,46,55,52,50,45,46,57,49,32,48,45,49,46,55,50,45,46,54,49,51,45,49,46,55,50,45,49,46,55,53,56,32,48,45,49,46,49,52,56,46,56,52,56,45,49,46,56,51,53,32,49,46,57,55,51,45,49,46,56,51,53,32,49,46,48,57,32,48,32,50,46,48,54,51,46,54,51,54,32,50,46,48,54,51,32,50,46,54,56,55,32,48,32,49,46,56,54,55,45,46,55,50,51,32,50,46,56,52,56,45,50,46,49,52,53,32,50,46,56,52,56,122,109,46,48,54,50,45,50,46,55,51,53,99,46,53,48,52,32,48,32,46,57,51,51,45,46,51,51,54,46,57,51,51,45,46,57,55,50,32,48,45,46,54,51,51,45,46,51,57,56,45,49,46,48,48,56,45,46,57,52,45,49,46,48,48,56,45,46,53,50,32,48,45,46,57,50,55,46,51,55,53,45,46,57,50,55,32,49,32,48,32,46,54,52,46,52,49,56,46,57,56,46,57,51,52,46,57,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,53,32,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,51,46,55,48,55,76,50,46,51,53,52,32,52,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,50,45,49,46,57,57,57,46,48,48,55,45,46,48,48,55,97,46,52,57,56,46,52,57,56,32,48,32,48,32,49,32,46,55,46,48,48,54,108,50,32,50,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,46,55,48,56,76,52,46,53,32,51,46,55,48,55,86,49,51,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,65,108,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,111,114,116,78,117,109,101,114,105,99,85,112,65,108,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,46,51,54,32,55,46,48,57,56,99,45,49,46,49,51,55,32,48,45,49,46,55,48,56,45,46,54,53,55,45,49,46,55,54,50,45,49,46,50,55,56,104,49,46,48,48,52,99,46,48,53,56,46,50,50,51,46,51,52,51,46,52,53,46,55,55,51,46,52,53,46,56,50,52,32,48,32,49,46,49,54,52,45,46,56,50,57,32,49,46,49,51,51,45,49,46,56,53,54,104,45,46,48,53,57,99,45,46,49,52,56,46,51,57,45,46,53,55,46,55,52,50,45,49,46,50,54,49,46,55,52,50,45,46,57,49,32,48,45,49,46,55,50,45,46,54,49,51,45,49,46,55,50,45,49,46,55,53,56,32,48,45,49,46,49,52,56,46,56,52,56,45,49,46,56,51,54,32,49,46,57,55,51,45,49,46,56,51,54,32,49,46,48,57,32,48,32,50,46,48,54,51,46,54,51,55,32,50,46,48,54,51,32,50,46,54,56,56,32,48,32,49,46,56,54,55,45,46,55,50,51,32,50,46,56,52,56,45,50,46,49,52,53,32,50,46,56,52,56,122,109,46,48,54,50,45,50,46,55,51,53,99,46,53,48,52,32,48,32,46,57,51,51,45,46,51,51,54,46,57,51,51,45,46,57,55,50,32,48,45,46,54,51,51,45,46,51,57,56,45,49,46,48,48,56,45,46,57,52,45,49,46,48,48,56,45,46,53,50,32,48,45,46,57,50,55,46,51,55,53,45,46,57,50,55,32,49,32,48,32,46,54,52,46,52,49,56,46,57,56,46,57,51,52,46,57,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,46,52,51,56,32,56,46,54,54,56,86,49,52,72,49,49,46,51,57,86,57,46,54,56,52,104,45,46,48,53,49,108,45,49,46,50,49,49,46,56,53,57,118,45,46,57,54,57,108,49,46,50,54,50,45,46,57,48,54,104,49,46,48,52,54,122,77,52,46,53,32,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,51,46,55,48,55,76,50,46,51,53,52,32,52,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,50,45,49,46,57,57,57,46,48,48,55,45,46,48,48,55,97,46,52,57,56,46,52,57,56,32,48,32,48,32,49,32,46,55,46,48,48,54,108,50,32,50,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,46,55,48,56,76,52,46,53,32,51,46,55,48,55,86,49,51,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,111,114,116,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,111,114,116,85,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,49,50,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,51,46,55,48,55,76,49,46,51,53,52,32,52,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,50,45,49,46,57,57,57,46,48,48,55,45,46,48,48,55,97,46,52,57,56,46,52,57,56,32,48,32,48,32,49,32,46,55,46,48,48,54,108,50,32,50,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,46,55,48,56,76,51,46,53,32,51,46,55,48,55,86,49,50,46,53,122,109,51,46,53,45,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,55,46,53,32,54,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,53,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,51,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,49,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,111,114,116,85,112,65,108,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,111,114,116,85,112,65,108,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,52,46,55,48,55,76,49,46,51,53,52,32,53,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,50,45,49,46,57,57,57,46,48,48,55,45,46,48,48,55,97,46,52,57,56,46,52,57,56,32,48,32,48,32,49,32,46,55,46,48,48,54,108,50,32,50,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,46,55,48,56,76,51,46,53,32,52,46,55,48,55,86,49,51,46,53,122,109,52,45,57,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,122,77,55,32,49,50,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,55,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,55,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,111,117,110,100,119,97,118,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,111,117,110,100,119,97,118,101,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,56,46,53,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,49,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,49,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,55,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,52,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,55,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,45,54,32,49,46,53,65,46,53,46,53,32,48,32,48,32,49,32,53,32,54,118,52,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,56,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,52,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,45,49,48,32,49,65,46,53,46,53,32,48,32,48,32,49,32,51,32,55,118,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,49,50,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,112,101,97,107,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,112,101,97,107,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,56,122,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,52,46,55,53,97,46,55,53,46,55,53,32,48,32,49,32,49,32,48,45,49,46,53,46,55,53,46,55,53,32,48,32,48,32,49,32,48,32,49,46,53,122,77,56,32,54,97,50,32,50,32,48,32,49,32,48,32,48,45,52,32,50,32,50,32,48,32,48,32,48,32,48,32,52,122,109,48,32,51,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,32,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,45,51,122,109,45,51,46,53,32,49,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,49,32,55,32,48,32,51,46,53,32,51,46,53,32,48,32,48,32,49,45,55,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,112,101,97,107,101,114,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,112,101,97,107,101,114,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,32,52,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,109,45,50,46,53,32,54,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,45,51,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,109,54,32,52,97,50,32,50,32,48,32,49,32,49,45,52,32,48,32,50,32,50,32,48,32,48,32,49,32,52,32,48,122,77,56,32,55,97,51,46,53,32,51,46,53,32,48,32,49,32,49,32,48,32,55,32,51,46,53,32,51,46,53,32,48,32,48,32,49,32,48,45,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,112,101,108,108,99,104,101,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,112,101,108,108,99,104,101,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,50,49,55,32,49,49,46,48,54,56,99,49,46,50,49,54,32,48,32,49,46,57,52,56,45,46,56,54,57,32,49,46,57,52,56,45,50,46,51,49,118,45,46,55,48,50,99,48,45,49,46,52,52,45,46,55,50,55,45,50,46,51,48,53,45,49,46,57,50,57,45,50,46,51,48,53,45,46,55,52,50,32,48,45,49,46,51,50,56,46,51,52,55,45,49,46,52,57,57,46,56,56,57,104,45,46,48,54,51,86,51,46,57,56,51,104,45,49,46,50,57,86,49,49,104,49,46,50,55,118,45,46,55,57,49,104,46,48,54,52,99,46,50,49,46,53,51,50,46,55,55,54,46,56,54,32,49,46,52,57,57,46,56,54,122,109,45,46,52,51,45,49,46,48,50,53,99,45,46,54,54,32,48,45,49,46,49,49,51,45,46,53,49,56,45,49,46,49,49,51,45,49,46,50,56,86,56,46,49,50,99,48,45,46,56,50,53,46,52,50,45,49,46,51,52,51,32,49,46,48,57,56,45,49,46,51,52,51,46,54,56,52,32,48,32,49,46,48,55,53,46,53,49,56,32,49,46,48,55,53,32,49,46,52,49,54,118,46,52,53,99,48,32,46,56,56,56,45,46,51,56,54,32,49,46,52,48,49,45,49,46,48,54,32,49,46,52,48,49,122,109,45,53,46,53,56,51,32,49,46,48,51,53,99,46,55,54,55,32,48,32,49,46,50,48,49,45,46,51,53,54,32,49,46,52,48,54,45,46,55,51,55,104,46,48,53,57,86,49,49,104,49,46,50,49,54,86,55,46,53,49,57,99,48,45,49,46,51,49,52,45,46,57,52,55,45,49,46,55,56,51,45,50,46,49,49,45,49,46,55,56,51,67,49,46,51,53,53,32,53,46,55,51,54,46,55,53,32,54,46,52,50,46,54,57,32,55,46,50,55,104,49,46,50,49,54,99,46,48,54,52,45,46,51,50,51,46,51,49,51,45,46,53,53,50,46,56,52,45,46,53,53,50,46,53,50,55,32,48,32,46,56,54,52,46,50,52,57,46,56,54,52,46,55,55,49,118,46,52,54,52,72,50,46,51,52,54,67,49,46,49,52,53,32,55,46,57,53,51,46,53,32,56,46,53,54,56,46,53,32,57,46,52,57,54,99,48,32,46,57,55,55,46,54,57,51,32,49,46,53,56,50,32,49,46,55,48,52,32,49,46,53,56,50,122,109,46,52,50,45,46,57,52,55,99,45,46,52,52,32,48,45,46,56,52,53,45,46,50,51,53,45,46,56,52,53,45,46,55,49,56,32,48,45,46,51,57,53,46,50,54,57,45,46,54,56,52,46,56,52,45,46,54,56,52,104,46,57,57,49,118,46,53,51,56,99,48,32,46,53,48,51,45,46,52,52,52,46,56,54,52,45,46,57,56,54,46,56,54,52,122,109,56,46,56,57,55,46,53,54,55,99,45,46,53,55,55,45,46,52,45,46,57,45,49,46,48,56,56,45,46,57,45,49,46,57,56,51,118,45,46,54,53,99,48,45,49,46,52,50,46,56,57,52,45,50,46,51,51,56,32,50,46,51,48,53,45,50,46,51,51,56,32,49,46,51,53,50,32,48,32,50,46,49,49,57,46,56,50,32,50,46,49,51,57,32,49,46,56,48,54,104,45,49,46,49,56,55,99,45,46,48,52,45,46,51,53,49,45,46,50,56,51,45,46,55,55,54,45,46,57,49,56,45,46,55,55,54,45,46,54,55,52,32,48,45,49,46,48,52,53,46,53,49,55,45,49,46,48,52,53,32,49,46,51,50,56,118,46,54,50,53,99,48,32,46,52,54,56,46,49,50,49,46,56,51,52,46,51,52,51,32,49,46,48,54,55,108,45,46,55,51,55,46,57,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,46,52,54,57,32,57,46,52,49,52,97,46,55,53,46,55,53,32,48,32,48,32,49,32,46,49,49,55,32,49,46,48,53,53,108,45,52,32,53,97,46,55,53,46,55,53,32,48,32,48,32,49,45,49,46,49,49,54,46,48,54,49,108,45,50,46,53,45,50,46,53,97,46,55,53,46,55,53,32,48,32,49,32,49,32,49,46,48,54,45,49,46,48,54,108,49,46,57,48,56,32,49,46,57,48,55,32,51,46,52,55,54,45,52,46,51,52,54,97,46,55,53,46,55,53,32,48,32,48,32,49,32,49,46,48,53,53,45,46,49,49,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,113,117,97,114,101,72,97,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,113,117,97,114,101,72,97,108,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,86,49,104,54,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,56,122,109,54,32,49,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,97,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,97,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,56,54,54,32,49,52,46,56,53,99,45,46,48,55,56,46,52,52,52,46,51,54,46,55,57,49,46,55,52,54,46,53,57,51,108,52,46,51,57,45,50,46,50,53,54,32,52,46,51,56,57,32,50,46,50,53,54,99,46,51,56,54,46,49,57,56,46,56,50,52,45,46,49,52,57,46,55,52,54,45,46,53,57,50,108,45,46,56,51,45,52,46,55,51,32,51,46,53,50,51,45,51,46,51,53,54,99,46,51,50,57,45,46,51,49,52,46,49,53,56,45,46,56,56,56,45,46,50,56,51,45,46,57,53,108,45,52,46,56,57,56,45,46,54,57,54,76,56,46,52,54,53,46,55,57,50,97,46,53,49,51,46,53,49,51,32,48,32,48,32,48,45,46,57,50,55,32,48,76,53,46,51,53,52,32,53,46,49,50,108,45,52,46,56,57,56,46,54,57,54,99,45,46,52,52,49,46,48,54,50,45,46,54,49,50,46,54,51,54,45,46,50,56,51,46,57,53,108,51,46,53,50,51,32,51,46,51,53,54,45,46,56,51,32,52,46,55,51,122,109,52,46,57,48,53,45,50,46,55,54,55,108,45,51,46,54,56,54,32,49,46,56,57,52,46,54,57,52,45,51,46,57,53,55,97,46,53,54,53,46,53,54,53,32,48,32,48,32,48,45,46,49,54,51,45,46,53,48,53,76,49,46,55,49,32,54,46,55,52,53,108,52,46,48,53,50,45,46,53,55,54,97,46,53,50,53,46,53,50,53,32,48,32,48,32,48,32,46,51,57,51,45,46,50,56,56,108,49,46,56,52,55,45,51,46,54,53,56,32,49,46,56,52,54,32,51,46,54,53,56,97,46,53,50,53,46,53,50,53,32,48,32,48,32,48,32,46,51,57,51,46,50,56,56,108,52,46,48,53,50,46,53,55,53,45,50,46,57,48,54,32,50,46,55,55,97,46,53,54,52,46,53,54,52,32,48,32,48,32,48,45,46,49,54,51,46,53,48,54,108,46,54,57,52,32,51,46,57,53,55,45,51,46,54,56,54,45,49,46,56,57,52,97,46,53,48,51,46,53,48,51,32,48,32,48,32,48,45,46,52,54,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,97,114,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,97,114,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,54,49,50,32,49,53,46,52,52,51,99,45,46,51,56,54,46,49,57,56,45,46,56,50,52,45,46,49,52,57,45,46,55,52,54,45,46,53,57,50,108,46,56,51,45,52,46,55,51,76,46,49,55,51,32,54,46,55,54,53,99,45,46,51,50,57,45,46,51,49,52,45,46,49,53,56,45,46,56,56,56,46,50,56,51,45,46,57,53,108,52,46,56,57,56,45,46,54,57,54,76,55,46,53,51,56,46,55,57,50,99,46,49,57,55,45,46,51,57,46,55,51,45,46,51,57,46,57,50,55,32,48,108,50,46,49,56,52,32,52,46,51,50,55,32,52,46,56,57,56,46,54,57,54,99,46,52,52,49,46,48,54,50,46,54,49,50,46,54,51,54,46,50,56,51,46,57,53,108,45,51,46,53,50,51,32,51,46,51,53,54,46,56,51,32,52,46,55,51,99,46,48,55,56,46,52,52,51,45,46,51,54,46,55,57,45,46,55,52,54,46,53,57,50,76,56,32,49,51,46,49,56,55,108,45,52,46,51,56,57,32,50,46,50,53,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,97,114,72,97,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,97,114,72,97,108,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,51,53,52,32,53,46,49,49,57,76,55,46,53,51,56,46,55,57,50,65,46,53,49,54,46,53,49,54,32,48,32,48,32,49,32,56,32,46,53,99,46,49,56,51,32,48,32,46,51,54,54,46,48,57,55,46,52,54,53,46,50,57,50,108,50,46,49,56,52,32,52,46,51,50,55,32,52,46,56,57,56,46,54,57,54,65,46,53,51,55,46,53,51,55,32,48,32,48,32,49,32,49,54,32,54,46,51,50,97,46,53,53,46,53,53,32,48,32,48,32,49,45,46,49,55,46,52,52,53,108,45,51,46,53,50,51,32,51,46,51,53,54,46,56,51,32,52,46,55,51,99,46,48,55,56,46,52,52,51,45,46,51,54,46,55,57,45,46,55,52,54,46,53,57,50,76,56,32,49,51,46,49,56,55,108,45,52,46,51,56,57,32,50,46,50,53,54,97,46,53,49,57,46,53,49,57,32,48,32,48,32,49,45,46,49,52,54,46,48,53,99,45,46,51,52,49,46,48,54,45,46,54,54,56,45,46,50,53,52,45,46,54,45,46,54,52,50,108,46,56,51,45,52,46,55,51,76,46,49,55,51,32,54,46,55,54,53,97,46,53,53,46,53,53,32,48,32,48,32,49,45,46,49,55,49,45,46,52,48,51,46,53,57,46,53,57,32,48,32,48,32,49,32,46,48,56,52,45,46,51,48,50,46,53,49,51,46,53,49,51,32,48,32,48,32,49,32,46,51,55,45,46,50,52,53,108,52,46,56,57,56,45,46,54,57,54,122,77,56,32,49,50,46,48,50,55,99,46,48,56,32,48,32,46,49,54,46,48,49,56,46,50,51,50,46,48,53,54,108,51,46,54,56,54,32,49,46,56,57,52,45,46,54,57,52,45,51,46,57,53,55,97,46,53,54,52,46,53,54,52,32,48,32,48,32,49,32,46,49,54,51,45,46,53,48,53,108,50,46,57,48,54,45,50,46,55,55,45,52,46,48,53,50,45,46,53,55,54,97,46,53,50,53,46,53,50,53,32,48,32,48,32,49,45,46,51,57,51,45,46,50,56,56,76,56,46,48,48,50,32,50,46,50,50,51,32,56,32,50,46,50,50,54,118,57,46,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,105,99,107,105,101,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,105,99,107,105,101,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,48,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,49,46,53,86,49,51,97,49,32,49,32,48,32,48,32,48,32,49,32,49,86,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,72,49,52,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,49,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,50,32,51,46,53,118,49,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,46,53,32,49,54,104,54,46,48,56,54,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,48,54,45,46,52,52,108,52,46,57,49,53,45,52,46,57,49,52,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,54,32,57,46,53,56,54,86,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,46,53,32,50,104,45,49,49,122,77,51,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,57,104,45,52,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,57,32,49,48,46,53,86,49,53,72,51,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,49,122,109,55,32,49,49,46,50,57,51,86,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,46,50,57,51,76,49,48,32,49,52,46,55,57,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,105,99,107,105,101,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,105,99,107,105,101,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,46,53,86,49,51,97,49,32,49,32,48,32,48,32,48,32,49,32,49,86,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,72,49,52,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,49,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,49,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,50,32,51,46,53,118,49,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,46,53,32,49,54,104,54,46,48,56,54,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,48,54,45,46,52,52,108,52,46,57,49,53,45,52,46,57,49,52,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,54,32,57,46,53,56,54,86,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,46,53,32,50,104,45,49,49,122,109,54,32,56,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,52,46,51,57,54,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,49,55,55,46,52,50,55,108,45,53,46,49,52,54,32,53,46,49,52,54,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,52,50,55,45,46,49,55,55,86,49,48,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,105,99,107,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,105,99,107,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,32,50,46,53,118,49,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,50,46,53,32,49,53,104,54,46,48,56,54,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,48,54,45,46,52,52,108,52,46,57,49,53,45,52,46,57,49,52,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,53,32,56,46,53,56,54,86,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,51,46,53,32,49,104,45,49,49,122,77,50,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,56,72,57,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,56,32,57,46,53,86,49,52,72,50,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,49,122,109,55,32,49,49,46,50,57,51,86,57,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,46,50,57,51,76,57,32,49,51,46,55,57,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,105,99,107,121,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,105,99,107,121,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,32,50,46,53,118,49,49,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,50,46,53,32,49,53,104,54,46,48,56,54,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,48,54,45,46,52,52,108,52,46,57,49,53,45,52,46,57,49,52,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,53,32,56,46,53,56,54,86,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,51,46,53,32,49,104,45,49,49,122,109,54,32,56,46,53,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,52,46,51,57,54,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,49,55,55,46,52,50,55,108,45,53,46,49,52,54,32,53,46,49,52,54,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,52,50,55,45,46,49,55,55,86,57,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,111,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,111,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,32,51,46,53,104,54,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,50,46,53,32,53,118,54,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,72,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,46,53,32,49,49,86,53,122,77,53,32,52,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,54,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,54,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,72,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,111,112,66,116,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,111,112,66,116,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,32,54,46,53,118,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,54,46,53,32,49,49,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,57,46,53,118,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,57,46,53,32,53,104,45,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,48,32,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,122,109,49,53,32,48,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,56,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,111,112,66,116,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,111,112,66,116,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,50,86,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,122,109,54,46,53,45,55,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,32,54,46,53,118,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,54,46,53,32,49,49,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,57,46,53,118,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,57,46,53,32,53,104,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,111,112,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,32,54,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,54,46,53,32,53,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,49,32,54,46,53,118,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,57,46,53,32,49,49,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,32,57,46,53,118,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,111,112,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,54,46,53,32,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,53,32,54,46,53,118,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,54,46,53,32,49,49,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,49,32,57,46,53,118,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,57,46,53,32,53,104,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,111,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,111,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,51,46,53,104,54,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,50,46,53,32,53,118,54,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,72,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,46,53,32,49,49,86,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,32,51,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,111,112,108,105,103,104,116,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,53,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,122,109,48,32,52,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,122,109,49,46,53,32,50,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,52,97,50,32,50,32,48,32,48,32,49,32,50,32,50,104,50,99,45,46,49,54,55,46,53,45,46,56,32,49,46,54,45,50,32,50,118,50,104,50,99,45,46,49,54,55,46,53,45,46,56,32,49,46,54,45,50,32,50,118,50,104,50,99,45,46,49,54,55,46,53,45,46,56,32,49,46,54,45,50,32,50,118,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,54,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,49,99,45,49,46,50,45,46,52,45,49,46,56,51,51,45,49,46,53,45,50,45,50,104,50,86,56,99,45,49,46,50,45,46,52,45,49,46,56,51,51,45,49,46,53,45,50,45,50,104,50,86,52,99,45,49,46,50,45,46,52,45,49,46,56,51,51,45,49,46,53,45,50,45,50,104,50,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,52,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,111,112,108,105,103,104,116,115,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,72,50,99,46,49,54,55,46,53,46,56,32,49,46,54,32,50,32,50,118,50,72,50,99,46,49,54,55,46,53,46,56,32,49,46,54,32,50,32,50,118,50,72,50,99,46,49,54,55,46,53,46,56,32,49,46,54,32,50,32,50,118,49,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,52,97,50,32,50,32,48,32,48,32,48,32,50,45,50,118,45,49,99,49,46,50,45,46,52,32,49,46,56,51,51,45,49,46,53,32,50,45,50,104,45,50,86,56,99,49,46,50,45,46,52,32,49,46,56,51,51,45,49,46,53,32,50,45,50,104,45,50,86,52,99,49,46,50,45,46,52,32,49,46,56,51,51,45,49,46,53,32,50,45,50,104,45,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,54,122,109,51,46,53,32,51,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,48,32,52,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,77,56,32,49,51,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,111,112,119,97,116,99,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,111,112,119,97,116,99,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,53,32,53,46,54,97,46,53,46,53,32,48,32,49,32,48,45,49,32,48,118,50,46,57,104,45,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,72,56,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,53,46,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,49,65,46,53,46,53,32,48,32,48,32,49,32,55,32,46,53,104,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,118,46,53,55,99,49,46,51,54,46,49,57,54,32,50,46,53,57,52,46,55,56,32,51,46,53,56,52,32,49,46,54,52,97,46,55,49,53,46,55,49,53,32,48,32,48,32,49,32,46,48,49,50,45,46,48,49,51,108,46,51,53,52,45,46,51,53,52,45,46,51,53,52,45,46,51,53,51,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,55,45,46,55,48,56,108,49,46,52,49,52,32,49,46,52,49,53,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,55,46,55,48,55,108,45,46,51,53,51,45,46,51,53,52,45,46,51,53,52,46,51,53,52,97,46,53,49,50,46,53,49,50,32,48,32,48,32,49,45,46,48,49,51,46,48,49,50,65,55,32,55,32,48,32,49,32,49,32,55,32,50,46,48,55,49,86,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,56,32,51,97,54,32,54,32,48,32,49,32,48,32,46,48,48,49,32,49,50,65,54,32,54,32,48,32,48,32,48,32,56,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,116,111,112,119,97,116,99,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,116,111,112,119,97,116,99,104,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,53,32,48,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,72,55,118,49,46,48,55,65,55,46,48,48,49,32,55,46,48,48,49,32,48,32,48,32,48,32,56,32,49,54,97,55,32,55,32,48,32,48,32,48,32,53,46,50,57,45,49,49,46,53,56,52,46,53,51,49,46,53,51,49,32,48,32,48,32,48,32,46,48,49,51,45,46,48,49,50,108,46,51,53,52,45,46,51,53,52,46,51,53,51,46,51,53,52,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,55,45,46,55,48,55,108,45,49,46,52,49,52,45,49,46,52,49,53,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,55,46,55,48,55,108,46,51,53,52,46,51,53,52,45,46,51,53,52,46,51,53,52,97,46,55,49,55,46,55,49,55,32,48,32,48,32,48,45,46,48,49,50,46,48,49,50,65,54,46,57,55,51,32,54,46,57,55,51,32,48,32,48,32,48,32,57,32,50,46,48,55,49,86,49,104,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,104,45,51,122,109,50,32,53,46,54,86,57,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,72,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,51,86,53,46,54,97,46,53,46,53,32,48,32,49,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,117,98,116,114,97,99,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,117,98,116,114,97,99,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,49,48,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,122,109,52,46,55,57,45,54,46,57,48,55,65,46,53,46,53,32,48,32,48,32,48,32,52,32,51,46,53,118,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,46,52,48,55,76,55,46,53,32,54,46,57,55,50,86,56,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,55,57,46,52,48,55,76,49,49,32,54,46,57,55,50,86,56,46,53,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,49,46,53,50,56,76,56,46,50,57,32,51,46,48,57,51,97,46,53,46,53,32,48,32,48,32,48,45,46,55,57,46,52,48,55,118,49,46,53,50,56,76,52,46,55,57,32,51,46,48,57,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,117,105,116,67,108,117,98,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,117,105,116,67,108,117,98,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,97,51,46,50,53,32,51,46,50,53,32,48,32,48,32,48,45,51,46,50,53,32,51,46,50,53,99,48,32,46,49,56,54,32,48,32,46,50,57,46,48,49,54,46,52,49,46,48,49,52,46,49,50,46,48,52,53,46,50,55,46,49,50,46,53,50,55,108,46,49,57,46,54,54,53,45,46,54,57,50,45,46,48,50,56,97,51,46,50,53,32,51,46,50,53,32,48,32,49,32,48,32,50,46,51,53,55,32,53,46,51,51,52,46,53,46,53,32,48,32,48,32,49,32,46,56,52,52,46,53,49,56,108,45,46,48,48,51,46,48,48,53,45,46,48,48,54,46,48,49,53,45,46,48,50,52,46,48,53,53,97,50,49,46,56,57,51,32,50,49,46,56,57,51,32,48,32,48,32,49,45,46,52,51,56,46,57,50,32,50,50,46,51,56,32,50,50,46,51,56,32,48,32,48,32,49,45,49,46,50,54,54,32,50,46,49,57,55,99,45,46,48,49,51,46,48,49,56,45,46,48,50,46,48,53,46,48,48,49,46,48,57,46,48,49,46,48,50,46,48,50,49,46,48,51,46,48,51,46,48,51,54,65,46,48,51,54,46,48,51,54,32,48,32,48,32,48,32,53,46,57,32,49,53,104,52,46,50,99,46,48,49,32,48,32,46,48,49,54,45,46,48,48,50,46,48,50,50,45,46,48,48,54,97,46,48,57,50,46,48,57,50,32,48,32,48,32,48,32,46,48,50,57,45,46,48,51,53,99,46,48,50,45,46,48,52,46,48,49,52,45,46,48,55,51,46,48,48,49,45,46,48,57,49,97,50,50,46,56,55,53,32,50,50,46,56,55,53,32,48,32,48,32,49,45,49,46,55,48,52,45,51,46,49,49,55,108,45,46,48,50,52,45,46,48,53,52,45,46,48,48,54,45,46,48,49,53,45,46,48,48,50,45,46,48,48,52,97,46,53,46,53,32,48,32,48,32,49,32,46,56,51,56,45,46,53,50,52,99,46,54,48,49,46,55,32,49,46,53,49,54,32,49,46,49,54,56,32,50,46,52,57,54,32,49,46,49,54,56,97,51,46,50,53,32,51,46,50,53,32,48,32,49,32,48,45,46,49,51,57,45,54,46,52,57,56,108,45,46,54,57,57,46,48,51,46,49,57,57,45,46,54,55,49,99,46,49,52,45,46,52,55,46,49,52,45,46,55,52,53,46,49,51,57,45,46,57,50,55,86,52,46,50,53,65,51,46,50,53,32,51,46,50,53,32,48,32,48,32,48,32,56,32,49,122,109,50,46,50,48,55,32,49,50,46,48,50,52,99,46,50,50,53,46,52,48,53,46,52,56,55,46,56,52,56,46,55,56,32,49,46,50,57,52,67,49,49,46,52,51,55,32,49,53,32,49,48,46,57,55,53,32,49,54,32,49,48,46,49,32,49,54,72,53,46,57,99,45,46,56,55,54,32,48,45,49,46,51,51,56,45,49,45,46,56,56,55,45,49,46,54,56,51,46,50,57,49,45,46,52,52,50,46,53,53,50,45,46,56,56,46,55,55,54,45,49,46,50,56,51,97,52,46,50,53,32,52,46,50,53,32,48,32,49,32,49,45,50,46,48,48,55,45,56,46,49,56,55,32,50,46,55,57,32,50,46,55,57,32,48,32,48,32,49,45,46,48,48,57,45,46,48,54,52,99,45,46,48,50,51,45,46,49,56,55,45,46,48,50,51,45,46,51,52,56,45,46,48,50,51,45,46,53,50,86,52,46,50,53,97,52,46,50,53,32,52,46,50,53,32,48,32,48,32,49,32,56,46,53,32,48,99,48,32,46,49,52,32,48,32,46,51,51,51,45,46,48,52,46,53,57,54,97,52,46,50,53,32,52,46,50,53,32,48,32,48,32,49,45,46,52,54,32,56,46,52,55,54,32,52,46,49,56,54,32,52,46,49,56,54,32,48,32,48,32,49,45,49,46,53,52,51,45,46,50,57,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,117,105,116,67,108,117,98,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,117,105,116,67,108,117,98,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,53,32,49,50,46,53,97,51,46,52,57,51,32,51,46,52,57,51,32,48,32,48,32,49,45,50,46,54,56,52,45,49,46,50,53,52,32,49,57,46,57,50,32,49,57,46,57,50,32,48,32,48,32,48,32,49,46,53,56,50,32,50,46,57,48,55,99,46,50,51,49,46,51,53,45,46,48,50,46,56,52,55,45,46,52,51,56,46,56,52,55,72,54,46,48,52,99,45,46,52,49,57,32,48,45,46,54,55,45,46,52,57,55,45,46,52,51,56,45,46,56,52,55,97,49,57,46,57,49,57,32,49,57,46,57,49,57,32,48,32,48,32,48,32,49,46,53,56,50,45,50,46,57,48,55,32,51,46,53,32,51,46,53,32,48,32,49,32,49,45,50,46,53,51,56,45,53,46,55,52,51,32,51,46,53,32,51,46,53,32,48,32,49,32,49,32,54,46,55,48,56,32,48,65,51,46,53,32,51,46,53,32,48,32,49,32,49,32,49,49,46,53,32,49,50,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,117,105,116,68,105,97,109,111,110,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,51,56,52,32,49,46,50,50,54,97,46,52,54,51,46,52,54,51,32,48,32,48,32,48,45,46,55,54,56,32,48,108,45,52,46,53,54,32,54,46,52,54,56,97,46,53,51,55,46,53,51,55,32,48,32,48,32,48,32,48,32,46,54,49,50,108,52,46,53,54,32,54,46,52,54,57,97,46,52,54,51,46,52,54,51,32,48,32,48,32,48,32,46,55,54,56,32,48,108,52,46,53,54,45,54,46,52,54,57,97,46,53,51,55,46,53,51,55,32,48,32,48,32,48,32,48,45,46,54,49,50,108,45,52,46,53,54,45,54,46,52,54,56,122,77,54,46,56,52,56,46,54,49,51,97,49,46,51,57,32,49,46,51,57,32,48,32,48,32,49,32,50,46,51,48,52,32,48,108,52,46,53,54,32,54,46,52,54,56,97,49,46,54,49,32,49,46,54,49,32,48,32,48,32,49,32,48,32,49,46,56,51,56,108,45,52,46,53,54,32,54,46,52,54,56,97,49,46,51,57,32,49,46,51,57,32,48,32,48,32,49,45,50,46,51,48,52,32,48,76,50,46,50,56,56,32,56,46,57,50,97,49,46,54,49,32,49,46,54,49,32,48,32,48,32,49,32,48,45,49,46,56,51,56,76,54,46,56,52,56,46,54,49,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,117,105,116,68,105,97,109,111,110,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,52,53,32,55,46,52,76,55,46,50,32,49,46,48,54,55,97,49,32,49,32,48,32,48,32,49,32,49,46,54,32,48,76,49,51,46,53,53,32,55,46,52,97,49,32,49,32,48,32,48,32,49,32,48,32,49,46,50,76,56,46,56,32,49,52,46,57,51,51,97,49,32,49,32,48,32,48,32,49,45,49,46,54,32,48,76,50,46,52,53,32,56,46,54,97,49,32,49,32,48,32,48,32,49,32,48,45,49,46,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,117,105,116,72,101,97,114,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,117,105,116,72,101,97,114,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,54,46,50,51,54,108,45,46,56,57,52,45,49,46,55,56,57,99,45,46,50,50,50,45,46,52,52,51,45,46,54,48,55,45,49,46,48,56,45,49,46,49,53,50,45,49,46,53,57,53,67,53,46,52,49,56,32,50,46,51,52,53,32,52,46,55,55,54,32,50,32,52,32,50,32,50,46,51,50,52,32,50,32,49,32,51,46,51,50,54,32,49,32,52,46,57,50,99,48,32,49,46,50,49,49,46,53,53,52,32,50,46,48,54,54,32,49,46,56,54,56,32,51,46,51,55,46,51,51,55,46,51,51,52,46,55,50,49,46,54,57,53,32,49,46,49,52,54,32,49,46,48,57,51,67,53,46,49,50,50,32,49,48,46,52,50,51,32,54,46,53,32,49,49,46,55,49,55,32,56,32,49,51,46,52,52,55,99,49,46,53,45,49,46,55,51,32,50,46,56,55,56,45,51,46,48,50,52,32,51,46,57,56,54,45,52,46,48,54,52,46,52,50,53,45,46,51,57,56,46,56,49,45,46,55,54,32,49,46,49,52,54,45,49,46,48,57,51,67,49,52,46,52,52,54,32,54,46,57,56,54,32,49,53,32,54,46,49,51,49,32,49,53,32,52,46,57,50,32,49,53,32,51,46,51,50,54,32,49,51,46,54,55,54,32,50,32,49,50,32,50,99,45,46,55,55,55,32,48,45,49,46,52,49,56,46,51,52,53,45,49,46,57,53,52,46,56,53,50,45,46,53,52,53,46,53,49,53,45,46,57,51,32,49,46,49,53,50,45,49,46,49,53,50,32,49,46,53,57,53,76,56,32,54,46,50,51,54,122,109,46,51,57,50,32,56,46,50,57,50,97,46,53,49,51,46,53,49,51,32,48,32,48,32,49,45,46,55,56,52,32,48,99,45,49,46,54,48,49,45,49,46,57,48,50,45,51,46,48,53,45,51,46,50,54,50,45,52,46,50,52,51,45,52,46,51,56,49,67,49,46,51,32,56,46,50,48,56,32,48,32,54,46,57,56,57,32,48,32,52,46,57,50,32,48,32,50,46,55,53,53,32,49,46,55,57,32,49,32,52,32,49,99,49,46,54,32,48,32,50,46,55,49,57,32,49,46,48,53,32,51,46,52,48,52,32,50,46,48,48,56,46,50,54,46,51,54,53,46,52,53,56,46,55,49,54,46,53,57,54,46,57,57,50,97,55,46,53,53,32,55,46,53,53,32,48,32,48,32,49,32,46,53,57,54,45,46,57,57,50,67,57,46,50,56,49,32,50,46,48,52,57,32,49,48,46,52,32,49,32,49,50,32,49,99,50,46,50,49,32,48,32,52,32,49,46,55,53,53,32,52,32,51,46,57,50,32,48,32,50,46,48,54,57,45,49,46,51,32,51,46,50,56,56,45,51,46,51,54,53,32,53,46,50,50,55,45,49,46,49,57,51,32,49,46,49,50,45,50,46,54,52,50,32,50,46,52,56,45,52,46,50,52,51,32,52,46,51,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,117,105,116,72,101,97,114,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,117,105,116,72,101,97,114,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,32,49,99,50,46,50,49,32,48,32,52,32,49,46,55,53,53,32,52,32,51,46,57,50,67,56,32,50,46,55,53,53,32,57,46,55,57,32,49,32,49,50,32,49,115,52,32,49,46,55,53,53,32,52,32,51,46,57,50,99,48,32,51,46,50,54,51,45,51,46,50,51,52,32,52,46,52,49,52,45,55,46,54,48,56,32,57,46,54,48,56,97,46,53,49,51,46,53,49,51,32,48,32,48,32,49,45,46,55,56,52,32,48,67,51,46,50,51,52,32,57,46,51,51,52,32,48,32,56,46,49,56,51,32,48,32,52,46,57,50,32,48,32,50,46,55,53,53,32,49,46,55,57,32,49,32,52,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,117,105,116,83,112,97,100,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,117,105,116,83,112,97,100,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,52,50,57,46,50,52,51,99,49,46,51,53,57,32,50,46,50,54,53,32,50,46,57,50,53,32,51,46,54,56,50,32,52,46,50,53,32,52,46,56,56,50,46,48,57,54,46,48,56,54,46,49,57,46,49,55,46,50,56,50,46,50,53,53,67,49,52,46,51,48,56,32,54,46,54,48,52,32,49,53,46,53,32,55,46,55,52,55,32,49,53,46,53,32,57,46,53,97,52,32,52,32,48,32,48,32,49,45,53,46,52,48,54,32,51,46,55,52,54,99,46,50,51,53,46,51,57,46,52,57,49,46,55,56,50,46,55,50,50,32,49,46,49,51,49,46,52,51,52,46,54,53,57,45,46,48,49,32,49,46,54,50,51,45,46,56,53,54,32,49,46,54,50,51,72,54,46,48,52,99,45,46,56,52,53,32,48,45,49,46,50,57,45,46,57,54,52,45,46,56,53,54,45,49,46,54,50,51,46,50,54,51,45,46,51,57,55,46,53,49,45,46,55,55,55,46,55,50,56,45,49,46,49,51,52,65,52,32,52,32,48,32,48,32,49,32,46,53,32,57,46,53,99,48,45,49,46,55,53,51,32,49,46,49,57,50,45,50,46,56,57,54,32,50,46,53,51,57,45,52,46,49,50,108,46,50,56,49,45,46,50,53,53,99,49,46,51,50,54,45,49,46,50,32,50,46,56,57,50,45,50,46,54,49,55,32,52,46,50,53,49,45,52,46,56,56,50,65,46,53,46,53,32,48,32,48,32,49,32,56,32,48,122,77,51,46,55,49,49,32,54,46,49,50,67,50,46,51,48,56,32,55,46,51,57,54,32,49,46,53,32,56,46,50,53,51,32,49,46,53,32,57,46,53,97,51,32,51,32,48,32,48,32,48,32,53,46,50,55,53,32,49,46,57,53,54,46,53,46,53,32,48,32,48,32,49,32,46,56,54,56,46,52,51,99,45,46,48,57,52,46,52,51,56,45,46,51,51,46,57,51,50,45,46,54,49,49,32,49,46,52,50,56,97,50,57,46,50,52,55,32,50,57,46,50,52,55,32,48,32,48,32,49,45,49,46,48,49,51,32,49,46,54,49,52,46,48,51,46,48,51,32,48,32,48,32,48,45,46,48,48,53,46,48,49,56,46,48,55,52,46,48,55,52,32,48,32,48,32,48,32,46,48,50,52,46,48,53,52,104,51,46,57,50,52,97,46,48,55,52,46,48,55,52,32,48,32,48,32,48,32,46,48,50,52,45,46,48,53,52,46,48,51,46,48,51,32,48,32,48,32,48,45,46,48,48,53,45,46,48,49,56,99,45,46,51,45,46,52,53,53,45,46,54,53,56,45,49,46,48,48,53,45,46,57,54,45,49,46,53,51,53,45,46,50,57,52,45,46,53,49,52,45,46,53,55,45,49,46,48,54,52,45,46,54,54,52,45,49,46,53,48,55,97,46,53,46,53,32,48,32,48,32,49,32,46,56,54,56,45,46,52,51,65,51,32,51,32,48,32,48,32,48,32,49,52,46,53,32,57,46,53,99,48,45,49,46,50,52,55,45,46,56,48,56,45,50,46,49,48,52,45,50,46,50,49,49,45,51,46,51,56,76,49,50,32,53,46,56,54,99,45,49,46,49,57,54,45,49,46,48,56,52,45,50,46,54,54,56,45,50,46,52,49,54,45,52,45,52,46,52,50,52,45,49,46,51,51,50,32,50,46,48,48,56,45,50,46,56,48,52,32,51,46,51,52,45,52,32,52,46,52,50,50,108,45,46,50,56,57,46,50,54,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,117,105,116,83,112,97,100,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,117,105,116,83,112,97,100,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,49,56,52,32,49,49,46,50,52,54,65,51,46,53,32,51,46,53,32,48,32,48,32,49,32,49,32,57,99,48,45,49,46,54,48,50,32,49,46,49,52,45,50,46,54,51,51,32,50,46,54,54,45,52,46,48,48,56,67,52,46,57,56,54,32,51,46,55,57,50,32,54,46,54,48,50,32,50,46,51,51,32,56,32,48,99,49,46,51,57,56,32,50,46,51,51,32,51,46,48,49,52,32,51,46,55,57,50,32,52,46,51,52,32,52,46,57,57,50,67,49,51,46,56,54,32,54,46,51,54,55,32,49,53,32,55,46,51,57,56,32,49,53,32,57,97,51,46,53,32,51,46,53,32,48,32,48,32,49,45,54,46,49,56,52,32,50,46,50,52,54,32,49,57,46,57,50,32,49,57,46,57,50,32,48,32,48,32,48,32,49,46,53,56,50,32,50,46,57,48,55,99,46,50,51,49,46,51,53,45,46,48,50,46,56,52,55,45,46,52,51,56,46,56,52,55,72,54,46,48,52,99,45,46,52,49,57,32,48,45,46,54,55,45,46,52,57,55,45,46,52,51,56,45,46,56,52,55,97,49,57,46,57,49,57,32,49,57,46,57,49,57,32,48,32,48,32,48,32,49,46,53,56,50,45,50,46,57,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,117,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,117,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,56,97,52,46,53,32,52,46,53,32,48,32,49,32,49,32,57,32,48,32,52,46,53,32,52,46,53,32,48,32,48,32,49,45,57,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,46,50,48,50,46,50,56,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,52,48,52,32,48,108,45,46,57,49,32,49,46,50,53,53,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,51,51,52,46,48,54,55,76,53,46,50,51,50,46,55,57,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,51,55,52,46,49,53,52,108,45,46,51,54,32,49,46,53,49,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,56,50,46,49,56,56,108,45,49,46,53,51,50,45,46,50,52,52,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,56,54,46,50,56,54,108,46,50,52,52,32,49,46,53,51,50,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,49,56,57,46,50,56,50,108,45,49,46,53,48,57,46,51,54,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,49,53,52,46,51,55,52,108,46,56,49,50,32,49,46,51,50,50,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,48,54,55,46,51,51,51,108,45,49,46,50,53,54,46,57,49,97,46,50,53,46,50,53,32,48,32,48,32,48,32,48,32,46,52,48,53,108,49,46,50,53,54,46,57,49,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,48,54,55,46,51,51,52,76,46,55,57,32,49,48,46,55,54,56,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,49,53,52,46,51,55,52,108,49,46,53,49,46,51,54,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,49,56,56,46,50,56,50,108,45,46,50,52,52,32,49,46,53,51,50,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,56,54,46,50,56,54,108,49,46,53,51,50,45,46,50,52,52,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,56,50,46,49,56,57,108,46,51,54,32,49,46,53,48,56,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,51,55,52,46,49,53,53,108,49,46,51,50,50,45,46,56,49,50,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,51,51,51,46,48,54,55,108,46,57,49,32,49,46,50,53,54,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,52,48,53,32,48,108,46,57,49,45,49,46,50,53,54,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,51,51,52,45,46,48,54,55,108,49,46,51,50,50,46,56,49,50,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,51,55,52,45,46,49,53,53,108,46,51,54,45,49,46,53,48,56,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,56,50,45,46,49,57,108,49,46,53,51,50,46,50,52,53,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,50,56,54,45,46,50,56,54,108,45,46,50,52,52,45,49,46,53,51,50,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,49,56,57,45,46,50,56,50,108,49,46,53,48,56,45,46,51,54,97,46,50,53,46,50,53,32,48,32,48,32,48,32,46,49,53,53,45,46,51,55,52,108,45,46,56,49,50,45,49,46,51,50,50,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,48,54,55,45,46,51,51,51,108,49,46,50,53,54,45,46,57,49,97,46,50,53,46,50,53,32,48,32,48,32,48,32,48,45,46,52,48,53,108,45,49,46,50,53,54,45,46,57,49,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,48,54,55,45,46,51,51,52,108,46,56,49,50,45,49,46,51,50,50,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,49,53,53,45,46,51,55,52,108,45,49,46,53,48,56,45,46,51,54,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,49,57,45,46,50,56,50,108,46,50,52,53,45,49,46,53,51,50,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,50,56,54,45,46,50,56,54,108,45,49,46,53,51,50,46,50,52,52,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,50,56,50,45,46,49,56,57,108,45,46,51,54,45,49,46,53,48,57,97,46,50,53,46,50,53,32,48,32,48,32,48,45,46,51,55,52,45,46,49,53,52,108,45,49,46,51,50,50,46,56,49,50,97,46,50,53,46,50,53,32,48,32,48,32,49,45,46,51,51,51,45,46,48,54,55,76,56,46,50,48,51,46,50,56,122,77,56,32,50,46,53,97,53,46,53,32,53,46,53,32,48,32,49,32,49,32,48,32,49,49,32,53,46,53,32,53,46,53,32,48,32,48,32,49,32,48,45,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,83,117,110,103,108,97,115,115,101,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,83,117,110,103,108,97,115,115,101,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,53,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,46,53,72,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,72,49,86,57,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,97,51,32,51,32,48,32,48,32,48,32,51,45,51,32,49,32,49,32,48,32,49,32,49,32,50,32,48,32,51,32,51,32,48,32,48,32,48,32,51,32,51,104,49,97,50,32,50,32,48,32,48,32,48,32,50,45,50,118,45,46,53,104,46,53,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,72,49,53,86,55,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,50,97,50,32,50,32,48,32,48,32,48,45,49,46,56,56,56,32,49,46,51,51,56,65,49,46,57,57,32,49,46,57,57,32,48,32,48,32,48,32,56,32,54,97,49,46,57,57,32,49,46,57,57,32,48,32,48,32,48,45,49,46,49,49,50,46,51,51,56,65,50,32,50,32,48,32,48,32,48,32,53,32,53,72,51,122,109,48,32,49,104,46,57,52,49,99,46,50,54,52,32,48,32,46,51,52,56,46,51,53,54,46,49,49,50,46,52,55,52,108,45,46,52,53,55,46,50,50,56,97,50,32,50,32,48,32,48,32,48,45,46,56,57,52,46,56,57,52,108,45,46,50,50,56,46,52,53,55,67,50,46,51,53,54,32,56,46,50,56,57,32,50,32,56,46,50,48,53,32,50,32,55,46,57,52,86,55,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,97,98,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,97,98,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,49,53,32,50,104,45,52,118,51,104,52,86,52,122,109,48,32,52,104,45,52,118,51,104,52,86,56,122,109,48,32,52,104,45,52,118,51,104,51,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,50,122,109,45,53,32,51,118,45,51,72,54,118,51,104,52,122,109,45,53,32,48,118,45,51,72,49,118,50,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,51,122,109,45,52,45,52,104,52,86,56,72,49,118,51,122,109,48,45,52,104,52,86,52,72,49,118,51,122,109,53,45,51,118,51,104,52,86,52,72,54,122,109,52,32,52,72,54,118,51,104,52,86,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,97,98,108,101,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,97,98,108,101,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,56,122,77,52,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,52,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,49,52,97,49,32,49,32,48,32,49,32,48,32,48,45,50,32,49,32,49,32,48,32,48,32,48,32,48,32,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,97,98,108,101,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,97,98,108,101,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,56,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,55,32,49,49,97,49,32,49,32,48,32,49,32,48,45,50,32,48,32,49,32,49,32,48,32,48,32,48,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,52,122,109,45,49,32,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,56,97,49,32,49,32,48,32,49,32,48,45,50,32,48,32,49,32,49,32,48,32,48,32,48,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,52,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,56,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,122,109,49,49,45,55,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,97,103,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,97,103,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,52,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,45,49,32,48,97,46,53,46,53,32,48,32,49,32,48,45,49,32,48,32,46,53,46,53,32,48,32,48,32,48,32,49,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,49,104,52,46,53,56,54,97,49,32,49,32,48,32,48,32,49,32,46,55,48,55,46,50,57,51,108,55,32,55,97,49,32,49,32,48,32,48,32,49,32,48,32,49,46,52,49,52,108,45,52,46,53,56,54,32,52,46,53,56,54,97,49,32,49,32,48,32,48,32,49,45,49,46,52,49,52,32,48,108,45,55,45,55,65,49,32,49,32,48,32,48,32,49,32,49,32,54,46,53,56,54,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,109,48,32,53,46,53,56,54,108,55,32,55,76,49,51,46,53,56,54,32,57,108,45,55,45,55,72,50,118,52,46,53,56,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,97,103,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,97,103,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,52,46,53,56,54,97,49,32,49,32,48,32,48,32,48,32,46,50,57,51,46,55,48,55,108,55,32,55,97,49,32,49,32,48,32,48,32,48,32,49,46,52,49,52,32,48,108,52,46,53,56,54,45,52,46,53,56,54,97,49,32,49,32,48,32,48,32,48,32,48,45,49,46,52,49,52,108,45,55,45,55,65,49,32,49,32,48,32,48,32,48,32,54,46,53,56,54,32,49,72,50,122,109,52,32,51,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,97,103,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,97,103,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,50,118,52,46,53,56,54,108,55,32,55,76,49,52,46,53,56,54,32,57,108,45,55,45,55,72,51,122,77,50,32,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,52,46,53,56,54,97,49,32,49,32,48,32,48,32,49,32,46,55,48,55,46,50,57,51,108,55,32,55,97,49,32,49,32,48,32,48,32,49,32,48,32,49,46,52,49,52,108,45,52,46,53,56,54,32,52,46,53,56,54,97,49,32,49,32,48,32,48,32,49,45,49,46,52,49,52,32,48,108,45,55,45,55,65,49,32,49,32,48,32,48,32,49,32,50,32,54,46,53,56,54,86,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,53,97,46,53,46,53,32,48,32,49,32,49,32,48,45,49,32,46,53,46,53,32,48,32,48,32,49,32,48,32,49,122,109,48,32,49,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,122,77,49,32,55,46,48,56,54,97,49,32,49,32,48,32,48,32,48,32,46,50,57,51,46,55,48,55,76,56,46,55,53,32,49,53,46,50,53,108,45,46,48,52,51,46,48,52,51,97,49,32,49,32,48,32,48,32,49,45,49,46,52,49,52,32,48,108,45,55,45,55,65,49,32,49,32,48,32,48,32,49,32,48,32,55,46,53,56,54,86,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,118,53,46,48,56,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,97,103,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,97,103,115,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,52,46,53,56,54,97,49,32,49,32,48,32,48,32,49,32,46,55,48,55,46,50,57,51,108,55,32,55,97,49,32,49,32,48,32,48,32,49,32,48,32,49,46,52,49,52,108,45,52,46,53,56,54,32,52,46,53,56,54,97,49,32,49,32,48,32,48,32,49,45,49,46,52,49,52,32,48,108,45,55,45,55,65,49,32,49,32,48,32,48,32,49,32,50,32,54,46,53,56,54,86,50,122,109,51,46,53,32,52,97,49,46,53,32,49,46,53,32,48,32,49,32,48,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,46,50,57,51,32,55,46,55,57,51,65,49,32,49,32,48,32,48,32,49,32,49,32,55,46,48,56,54,86,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,52,46,53,56,54,97,49,32,49,32,48,32,48,32,48,32,46,50,57,51,46,55,48,55,108,55,32,55,97,49,32,49,32,48,32,48,32,48,32,49,46,52,49,52,32,48,108,46,48,52,51,45,46,48,52,51,45,55,46,52,53,55,45,55,46,52,53,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,108,101,112,104,111,110,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,54,53,52,32,49,46,51,50,56,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,49,46,48,49,53,45,46,48,54,51,76,49,46,54,48,53,32,50,46,51,99,45,46,52,56,51,46,52,56,52,45,46,54,54,49,32,49,46,49,54,57,45,46,52,53,32,49,46,55,55,97,49,55,46,53,54,56,32,49,55,46,53,54,56,32,48,32,48,32,48,32,52,46,49,54,56,32,54,46,54,48,56,32,49,55,46,53,54,57,32,49,55,46,53,54,57,32,48,32,48,32,48,32,54,46,54,48,56,32,52,46,49,54,56,99,46,54,48,49,46,50,49,49,32,49,46,50,56,54,46,48,51,51,32,49,46,55,55,45,46,52,53,108,49,46,48,51,52,45,49,46,48,51,52,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,48,54,51,45,49,46,48,49,53,108,45,50,46,51,48,55,45,49,46,55,57,52,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,53,56,45,46,49,50,50,108,45,50,46,49,57,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,45,49,46,54,53,55,45,46,52,53,57,76,53,46,52,56,50,32,56,46,48,54,50,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,45,46,52,54,45,49,46,54,53,55,108,46,53,52,56,45,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,49,50,50,45,46,53,56,76,51,46,54,53,52,32,49,46,51,50,56,122,77,49,46,56,56,52,46,53,49,49,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,50,46,54,49,50,46,49,54,51,76,54,46,50,57,32,50,46,57,56,99,46,51,50,57,46,52,50,51,46,52,52,53,46,57,55,52,46,51,49,53,32,49,46,52,57,52,108,45,46,53,52,55,32,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,49,55,56,46,54,52,51,108,50,46,52,53,55,32,50,46,52,53,55,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,54,52,52,46,49,55,56,108,50,46,49,56,57,45,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,49,46,52,57,52,46,51,49,53,108,50,46,51,48,54,32,49,46,55,57,52,99,46,56,50,57,46,54,52,53,46,57,48,53,32,49,46,56,55,46,49,54,51,32,50,46,54,49,49,108,45,49,46,48,51,52,32,49,46,48,51,52,99,45,46,55,52,46,55,52,45,49,46,56,52,54,32,49,46,48,54,53,45,50,46,56,55,55,46,55,48,50,97,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,55,46,48,49,45,52,46,52,50,32,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,52,46,52,50,45,55,46,48,48,57,99,45,46,51,54,50,45,49,46,48,51,45,46,48,51,55,45,50,46,49,51,55,46,55,48,51,45,50,46,56,55,55,76,49,46,56,56,53,46,53,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,108,101,112,104,111,110,101,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,56,56,53,46,53,49,49,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,50,46,54,49,46,49,54,51,76,54,46,50,57,32,50,46,57,56,99,46,51,50,57,46,52,50,51,46,52,52,53,46,57,55,52,46,51,49,53,32,49,46,52,57,52,108,45,46,53,52,55,32,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,49,55,56,46,54,52,51,108,50,46,52,53,55,32,50,46,52,53,55,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,54,52,52,46,49,55,56,108,50,46,49,56,57,45,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,49,46,52,57,52,46,51,49,53,108,50,46,51,48,54,32,49,46,55,57,52,99,46,56,50,57,46,54,52,53,46,57,48,53,32,49,46,56,55,46,49,54,51,32,50,46,54,49,49,108,45,49,46,48,51,52,32,49,46,48,51,52,99,45,46,55,52,46,55,52,45,49,46,56,52,54,32,49,46,48,54,53,45,50,46,56,55,55,46,55,48,50,97,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,55,46,48,49,45,52,46,52,50,32,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,52,46,52,50,45,55,46,48,48,57,99,45,46,51,54,50,45,49,46,48,51,45,46,48,51,55,45,50,46,49,51,55,46,55,48,51,45,50,46,56,55,55,76,49,46,56,56,53,46,53,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,54,53,52,32,49,46,51,50,56,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,49,46,48,49,53,45,46,48,54,51,76,49,46,54,48,53,32,50,46,51,99,45,46,52,56,51,46,52,56,52,45,46,54,54,49,32,49,46,49,54,57,45,46,52,53,32,49,46,55,55,97,49,55,46,53,54,56,32,49,55,46,53,54,56,32,48,32,48,32,48,32,52,46,49,54,56,32,54,46,54,48,56,32,49,55,46,53,54,57,32,49,55,46,53,54,57,32,48,32,48,32,48,32,54,46,54,48,56,32,52,46,49,54,56,99,46,54,48,49,46,50,49,49,32,49,46,50,56,54,46,48,51,51,32,49,46,55,55,45,46,52,53,108,49,46,48,51,52,45,49,46,48,51,52,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,48,54,51,45,49,46,48,49,53,108,45,50,46,51,48,55,45,49,46,55,57,52,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,53,56,45,46,49,50,50,108,45,50,46,49,57,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,45,49,46,54,53,55,45,46,52,53,57,76,53,46,52,56,50,32,56,46,48,54,50,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,45,46,52,54,45,49,46,54,53,55,108,46,53,52,56,45,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,49,50,50,45,46,53,56,76,51,46,54,53,52,32,49,46,51,50,56,122,77,49,46,56,56,52,46,53,49,49,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,50,46,54,49,50,46,49,54,51,76,54,46,50,57,32,50,46,57,56,99,46,51,50,57,46,52,50,51,46,52,52,53,46,57,55,52,46,51,49,53,32,49,46,52,57,52,108,45,46,53,52,55,32,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,49,55,56,46,54,52,51,108,50,46,52,53,55,32,50,46,52,53,55,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,54,52,52,46,49,55,56,108,50,46,49,56,57,45,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,49,46,52,57,52,46,51,49,53,108,50,46,51,48,54,32,49,46,55,57,52,99,46,56,50,57,46,54,52,53,46,57,48,53,32,49,46,56,55,46,49,54,51,32,50,46,54,49,49,108,45,49,46,48,51,52,32,49,46,48,51,52,99,45,46,55,52,46,55,52,45,49,46,56,52,54,32,49,46,48,54,53,45,50,46,56,55,55,46,55,48,50,97,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,55,46,48,49,45,52,46,52,50,32,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,52,46,52,50,45,55,46,48,48,57,99,45,46,51,54,50,45,49,46,48,51,45,46,48,51,55,45,50,46,49,51,55,46,55,48,51,45,50,46,56,55,55,76,49,46,56,56,53,46,53,49,49,122,109,49,48,46,55,54,50,46,49,51,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,50,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,50,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,52,46,50,57,51,32,52,72,57,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,52,46,55,57,51,108,45,49,46,54,52,55,45,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,56,56,53,46,53,49,49,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,50,46,54,49,46,49,54,51,76,54,46,50,57,32,50,46,57,56,99,46,51,50,57,46,52,50,51,46,52,52,53,46,57,55,52,46,51,49,53,32,49,46,52,57,52,108,45,46,53,52,55,32,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,49,55,56,46,54,52,51,108,50,46,52,53,55,32,50,46,52,53,55,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,54,52,52,46,49,55,56,108,50,46,49,56,57,45,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,49,46,52,57,52,46,51,49,53,108,50,46,51,48,54,32,49,46,55,57,52,99,46,56,50,57,46,54,52,53,46,57,48,53,32,49,46,56,55,46,49,54,51,32,50,46,54,49,49,108,45,49,46,48,51,52,32,49,46,48,51,52,99,45,46,55,52,46,55,52,45,49,46,56,52,54,32,49,46,48,54,53,45,50,46,56,55,55,46,55,48,50,97,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,55,46,48,49,45,52,46,52,50,32,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,52,46,52,50,45,55,46,48,48,57,99,45,46,51,54,50,45,49,46,48,51,45,46,48,51,55,45,50,46,49,51,55,46,55,48,51,45,50,46,56,55,55,76,49,46,56,56,53,46,53,49,49,122,109,49,48,46,55,54,49,46,49,51,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,50,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,50,46,53,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,52,46,50,57,51,32,52,72,57,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,52,46,55,57,51,108,45,49,46,54,52,55,45,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,53,46,56,53,52,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,76,49,49,46,55,48,55,32,53,72,49,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,52,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,50,46,55,57,51,76,49,53,46,49,52,54,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,109,45,49,50,46,50,32,49,46,49,56,50,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,49,46,48,49,53,45,46,48,54,51,76,49,46,54,48,53,32,50,46,51,99,45,46,52,56,51,46,52,56,52,45,46,54,54,49,32,49,46,49,54,57,45,46,52,53,32,49,46,55,55,97,49,55,46,53,54,56,32,49,55,46,53,54,56,32,48,32,48,32,48,32,52,46,49,54,56,32,54,46,54,48,56,32,49,55,46,53,54,57,32,49,55,46,53,54,57,32,48,32,48,32,48,32,54,46,54,48,56,32,52,46,49,54,56,99,46,54,48,49,46,50,49,49,32,49,46,50,56,54,46,48,51,51,32,49,46,55,55,45,46,52,53,108,49,46,48,51,52,45,49,46,48,51,52,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,48,54,51,45,49,46,48,49,53,108,45,50,46,51,48,55,45,49,46,55,57,52,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,53,56,45,46,49,50,50,108,45,50,46,49,57,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,45,49,46,54,53,55,45,46,52,53,57,76,53,46,52,56,50,32,56,46,48,54,50,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,45,46,52,54,45,49,46,54,53,55,108,46,53,52,56,45,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,49,50,50,45,46,53,56,76,51,46,54,53,52,32,49,46,51,50,56,122,77,49,46,56,56,52,46,53,49,49,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,50,46,54,49,50,46,49,54,51,76,54,46,50,57,32,50,46,57,56,99,46,51,50,57,46,52,50,51,46,52,52,53,46,57,55,52,46,51,49,53,32,49,46,52,57,52,108,45,46,53,52,55,32,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,49,55,56,46,54,52,51,108,50,46,52,53,55,32,50,46,52,53,55,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,54,52,52,46,49,55,56,108,50,46,49,56,57,45,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,49,46,52,57,52,46,51,49,53,108,50,46,51,48,54,32,49,46,55,57,52,99,46,56,50,57,46,54,52,53,46,57,48,53,32,49,46,56,55,46,49,54,51,32,50,46,54,49,49,108,45,49,46,48,51,52,32,49,46,48,51,52,99,45,46,55,52,46,55,52,45,49,46,56,52,54,32,49,46,48,54,53,45,50,46,56,55,55,46,55,48,50,97,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,55,46,48,49,45,52,46,52,50,32,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,52,46,52,50,45,55,46,48,48,57,99,45,46,51,54,50,45,49,46,48,51,45,46,48,51,55,45,50,46,49,51,55,46,55,48,51,45,50,46,56,55,55,76,49,46,56,56,53,46,53,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,56,56,53,46,53,49,49,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,50,46,54,49,46,49,54,51,76,54,46,50,57,32,50,46,57,56,99,46,51,50,57,46,52,50,51,46,52,52,53,46,57,55,52,46,51,49,53,32,49,46,52,57,52,108,45,46,53,52,55,32,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,49,55,56,46,54,52,51,108,50,46,52,53,55,32,50,46,52,53,55,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,54,52,52,46,49,55,56,108,50,46,49,56,57,45,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,49,46,52,57,52,46,51,49,53,108,50,46,51,48,54,32,49,46,55,57,52,99,46,56,50,57,46,54,52,53,46,57,48,53,32,49,46,56,55,46,49,54,51,32,50,46,54,49,49,108,45,49,46,48,51,52,32,49,46,48,51,52,99,45,46,55,52,46,55,52,45,49,46,56,52,54,32,49,46,48,54,53,45,50,46,56,55,55,46,55,48,50,97,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,55,46,48,49,45,52,46,52,50,32,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,52,46,52,50,45,55,46,48,48,57,99,45,46,51,54,50,45,49,46,48,51,45,46,48,51,55,45,50,46,49,51,55,46,55,48,51,45,50,46,56,55,55,76,49,46,56,56,53,46,53,49,49,122,77,49,53,46,56,53,52,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,76,49,49,46,55,48,55,32,53,72,49,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,52,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,50,46,55,57,51,76,49,53,46,49,52,54,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,108,101,112,104,111,110,101,77,105,110,117,115,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,51,46,54,53,52,32,49,46,51,50,56,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,49,46,48,49,53,45,46,48,54,51,76,49,46,54,48,53,32,50,46,51,99,45,46,52,56,51,46,52,56,52,45,46,54,54,49,32,49,46,49,54,57,45,46,52,53,32,49,46,55,55,97,49,55,46,53,54,56,32,49,55,46,53,54,56,32,48,32,48,32,48,32,52,46,49,54,56,32,54,46,54,48,56,32,49,55,46,53,54,57,32,49,55,46,53,54,57,32,48,32,48,32,48,32,54,46,54,48,56,32,52,46,49,54,56,99,46,54,48,49,46,50,49,49,32,49,46,50,56,54,46,48,51,51,32,49,46,55,55,45,46,52,53,108,49,46,48,51,52,45,49,46,48,51,52,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,48,54,51,45,49,46,48,49,53,108,45,50,46,51,48,55,45,49,46,55,57,52,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,53,56,45,46,49,50,50,108,45,50,46,49,57,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,45,49,46,54,53,55,45,46,52,53,57,76,53,46,52,56,50,32,56,46,48,54,50,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,45,46,52,54,45,49,46,54,53,55,108,46,53,52,56,45,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,49,50,50,45,46,53,56,76,51,46,54,53,52,32,49,46,51,50,56,122,77,49,46,56,56,52,46,53,49,49,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,50,46,54,49,50,46,49,54,51,76,54,46,50,57,32,50,46,57,56,99,46,51,50,57,46,52,50,51,46,52,52,53,46,57,55,52,46,51,49,53,32,49,46,52,57,52,108,45,46,53,52,55,32,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,49,55,56,46,54,52,51,108,50,46,52,53,55,32,50,46,52,53,55,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,54,52,52,46,49,55,56,108,50,46,49,56,57,45,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,49,46,52,57,52,46,51,49,53,108,50,46,51,48,54,32,49,46,55,57,52,99,46,56,50,57,46,54,52,53,46,57,48,53,32,49,46,56,55,46,49,54,51,32,50,46,54,49,49,108,45,49,46,48,51,52,32,49,46,48,51,52,99,45,46,55,52,46,55,52,45,49,46,56,52,54,32,49,46,48,54,53,45,50,46,56,55,55,46,55,48,50,97,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,55,46,48,49,45,52,46,52,50,32,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,52,46,52,50,45,55,46,48,48,57,99,45,46,51,54,50,45,49,46,48,51,45,46,48,51,55,45,50,46,49,51,55,46,55,48,51,45,50,46,56,55,55,76,49,46,56,56,53,46,53,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,108,101,112,104,111,110,101,77,105,110,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,56,56,53,46,53,49,49,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,50,46,54,49,46,49,54,51,76,54,46,50,57,32,50,46,57,56,99,46,51,50,57,46,52,50,51,46,52,52,53,46,57,55,52,46,51,49,53,32,49,46,52,57,52,108,45,46,53,52,55,32,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,49,55,56,46,54,52,51,108,50,46,52,53,55,32,50,46,52,53,55,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,54,52,52,46,49,55,56,108,50,46,49,56,57,45,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,49,46,52,57,52,46,51,49,53,108,50,46,51,48,54,32,49,46,55,57,52,99,46,56,50,57,46,54,52,53,46,57,48,53,32,49,46,56,55,46,49,54,51,32,50,46,54,49,49,108,45,49,46,48,51,52,32,49,46,48,51,52,99,45,46,55,52,46,55,52,45,49,46,56,52,54,32,49,46,48,54,53,45,50,46,56,55,55,46,55,48,50,97,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,55,46,48,49,45,52,46,52,50,32,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,52,46,52,50,45,55,46,48,48,57,99,45,46,51,54,50,45,49,46,48,51,45,46,48,51,55,45,50,46,49,51,55,46,55,48,51,45,50,46,56,55,55,76,49,46,56,56,53,46,53,49,49,122,77,49,48,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,52,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,54,53,52,32,49,46,51,50,56,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,49,46,48,49,53,45,46,48,54,51,76,49,46,54,48,53,32,50,46,51,99,45,46,52,56,51,46,52,56,52,45,46,54,54,49,32,49,46,49,54,57,45,46,52,53,32,49,46,55,55,97,49,55,46,53,54,56,32,49,55,46,53,54,56,32,48,32,48,32,48,32,52,46,49,54,56,32,54,46,54,48,56,32,49,55,46,53,54,57,32,49,55,46,53,54,57,32,48,32,48,32,48,32,54,46,54,48,56,32,52,46,49,54,56,99,46,54,48,49,46,50,49,49,32,49,46,50,56,54,46,48,51,51,32,49,46,55,55,45,46,52,53,108,49,46,48,51,52,45,49,46,48,51,52,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,48,54,51,45,49,46,48,49,53,108,45,50,46,51,48,55,45,49,46,55,57,52,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,53,56,45,46,49,50,50,108,45,50,46,49,57,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,45,49,46,54,53,55,45,46,52,53,57,76,53,46,52,56,50,32,56,46,48,54,50,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,45,46,52,54,45,49,46,54,53,55,108,46,53,52,56,45,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,49,50,50,45,46,53,56,76,51,46,54,53,52,32,49,46,51,50,56,122,77,49,46,56,56,52,46,53,49,49,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,50,46,54,49,50,46,49,54,51,76,54,46,50,57,32,50,46,57,56,99,46,51,50,57,46,52,50,51,46,52,52,53,46,57,55,52,46,51,49,53,32,49,46,52,57,52,108,45,46,53,52,55,32,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,49,55,56,46,54,52,51,108,50,46,52,53,55,32,50,46,52,53,55,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,54,52,52,46,49,55,56,108,50,46,49,56,57,45,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,49,46,52,57,52,46,51,49,53,108,50,46,51,48,54,32,49,46,55,57,52,99,46,56,50,57,46,54,52,53,46,57,48,53,32,49,46,56,55,46,49,54,51,32,50,46,54,49,49,108,45,49,46,48,51,52,32,49,46,48,51,52,99,45,46,55,52,46,55,52,45,49,46,56,52,54,32,49,46,48,54,53,45,50,46,56,55,55,46,55,48,50,97,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,55,46,48,49,45,52,46,52,50,32,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,52,46,52,50,45,55,46,48,48,57,99,45,46,51,54,50,45,49,46,48,51,45,46,48,51,55,45,50,46,49,51,55,46,55,48,51,45,50,46,56,55,55,76,49,46,56,56,53,46,53,49,49,122,77,49,49,32,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,52,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,46,55,48,55,108,45,52,46,49,52,54,32,52,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,52,46,50,57,51,32,49,72,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,56,56,53,46,53,49,49,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,50,46,54,49,46,49,54,51,76,54,46,50,57,32,50,46,57,56,99,46,51,50,57,46,52,50,51,46,52,52,53,46,57,55,52,46,51,49,53,32,49,46,52,57,52,108,45,46,53,52,55,32,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,49,55,56,46,54,52,51,108,50,46,52,53,55,32,50,46,52,53,55,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,54,52,52,46,49,55,56,108,50,46,49,56,57,45,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,49,46,52,57,52,46,51,49,53,108,50,46,51,48,54,32,49,46,55,57,52,99,46,56,50,57,46,54,52,53,46,57,48,53,32,49,46,56,55,46,49,54,51,32,50,46,54,49,49,108,45,49,46,48,51,52,32,49,46,48,51,52,99,45,46,55,52,46,55,52,45,49,46,56,52,54,32,49,46,48,54,53,45,50,46,56,55,55,46,55,48,50,97,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,55,46,48,49,45,52,46,52,50,32,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,52,46,52,50,45,55,46,48,48,57,99,45,46,51,54,50,45,49,46,48,51,45,46,48,51,55,45,50,46,49,51,55,46,55,48,51,45,50,46,56,55,55,76,49,46,56,56,53,46,53,49,49,122,77,49,49,32,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,52,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,49,46,55,48,55,108,45,52,46,49,52,54,32,52,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,52,46,50,57,51,32,49,72,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,108,101,112,104,111,110,101,80,108,117,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,54,53,52,32,49,46,51,50,56,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,49,46,48,49,53,45,46,48,54,51,76,49,46,54,48,53,32,50,46,51,99,45,46,52,56,51,46,52,56,52,45,46,54,54,49,32,49,46,49,54,57,45,46,52,53,32,49,46,55,55,97,49,55,46,53,54,56,32,49,55,46,53,54,56,32,48,32,48,32,48,32,52,46,49,54,56,32,54,46,54,48,56,32,49,55,46,53,54,57,32,49,55,46,53,54,57,32,48,32,48,32,48,32,54,46,54,48,56,32,52,46,49,54,56,99,46,54,48,49,46,50,49,49,32,49,46,50,56,54,46,48,51,51,32,49,46,55,55,45,46,52,53,108,49,46,48,51,52,45,49,46,48,51,52,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,48,54,51,45,49,46,48,49,53,108,45,50,46,51,48,55,45,49,46,55,57,52,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,53,56,45,46,49,50,50,108,45,50,46,49,57,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,45,49,46,54,53,55,45,46,52,53,57,76,53,46,52,56,50,32,56,46,48,54,50,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,45,46,52,54,45,49,46,54,53,55,108,46,53,52,56,45,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,49,50,50,45,46,53,56,76,51,46,54,53,52,32,49,46,51,50,56,122,77,49,46,56,56,52,46,53,49,49,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,50,46,54,49,50,46,49,54,51,76,54,46,50,57,32,50,46,57,56,99,46,51,50,57,46,52,50,51,46,52,52,53,46,57,55,52,46,51,49,53,32,49,46,52,57,52,108,45,46,53,52,55,32,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,49,55,56,46,54,52,51,108,50,46,52,53,55,32,50,46,52,53,55,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,54,52,52,46,49,55,56,108,50,46,49,56,57,45,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,49,46,52,57,52,46,51,49,53,108,50,46,51,48,54,32,49,46,55,57,52,99,46,56,50,57,46,54,52,53,46,57,48,53,32,49,46,56,55,46,49,54,51,32,50,46,54,49,49,108,45,49,46,48,51,52,32,49,46,48,51,52,99,45,46,55,52,46,55,52,45,49,46,56,52,54,32,49,46,48,54,53,45,50,46,56,55,55,46,55,48,50,97,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,55,46,48,49,45,52,46,52,50,32,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,52,46,52,50,45,55,46,48,48,57,99,45,46,51,54,50,45,49,46,48,51,45,46,48,51,55,45,50,46,49,51,55,46,55,48,51,45,50,46,56,55,55,76,49,46,56,56,53,46,53,49,49,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,50,46,53,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,51,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,51,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,52,104,45,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,50,86,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,108,101,112,104,111,110,101,80,108,117,115,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,56,56,53,46,53,49,49,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,50,46,54,49,46,49,54,51,76,54,46,50,57,32,50,46,57,56,99,46,51,50,57,46,52,50,51,46,52,52,53,46,57,55,52,46,51,49,53,32,49,46,52,57,52,108,45,46,53,52,55,32,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,49,55,56,46,54,52,51,108,50,46,52,53,55,32,50,46,52,53,55,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,54,52,52,46,49,55,56,108,50,46,49,56,57,45,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,49,46,52,57,52,46,51,49,53,108,50,46,51,48,54,32,49,46,55,57,52,99,46,56,50,57,46,54,52,53,46,57,48,53,32,49,46,56,55,46,49,54,51,32,50,46,54,49,49,108,45,49,46,48,51,52,32,49,46,48,51,52,99,45,46,55,52,46,55,52,45,49,46,56,52,54,32,49,46,48,54,53,45,50,46,56,55,55,46,55,48,50,97,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,55,46,48,49,45,52,46,52,50,32,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,52,46,52,50,45,55,46,48,48,57,99,45,46,51,54,50,45,49,46,48,51,45,46,48,51,55,45,50,46,49,51,55,46,55,48,51,45,50,46,56,55,55,76,49,46,56,56,53,46,53,49,49,122,77,49,50,46,53,32,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,51,104,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,51,118,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,52,104,45,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,49,50,86,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,108,101,112,104,111,110,101,88,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,54,53,52,32,49,46,51,50,56,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,49,46,48,49,53,45,46,48,54,51,76,49,46,54,48,53,32,50,46,51,99,45,46,52,56,51,46,52,56,52,45,46,54,54,49,32,49,46,49,54,57,45,46,52,53,32,49,46,55,55,97,49,55,46,53,54,56,32,49,55,46,53,54,56,32,48,32,48,32,48,32,52,46,49,54,56,32,54,46,54,48,56,32,49,55,46,53,54,57,32,49,55,46,53,54,57,32,48,32,48,32,48,32,54,46,54,48,56,32,52,46,49,54,56,99,46,54,48,49,46,50,49,49,32,49,46,50,56,54,46,48,51,51,32,49,46,55,55,45,46,52,53,108,49,46,48,51,52,45,49,46,48,51,52,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,48,54,51,45,49,46,48,49,53,108,45,50,46,51,48,55,45,49,46,55,57,52,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,53,56,45,46,49,50,50,108,45,50,46,49,57,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,45,49,46,54,53,55,45,46,52,53,57,76,53,46,52,56,50,32,56,46,48,54,50,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,45,46,52,54,45,49,46,54,53,55,108,46,53,52,56,45,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,45,46,49,50,50,45,46,53,56,76,51,46,54,53,52,32,49,46,51,50,56,122,77,49,46,56,56,52,46,53,49,49,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,50,46,54,49,50,46,49,54,51,76,54,46,50,57,32,50,46,57,56,99,46,51,50,57,46,52,50,51,46,52,52,53,46,57,55,52,46,51,49,53,32,49,46,52,57,52,108,45,46,53,52,55,32,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,49,55,56,46,54,52,51,108,50,46,52,53,55,32,50,46,52,53,55,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,54,52,52,46,49,55,56,108,50,46,49,56,57,45,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,49,46,52,57,52,46,51,49,53,108,50,46,51,48,54,32,49,46,55,57,52,99,46,56,50,57,46,54,52,53,46,57,48,53,32,49,46,56,55,46,49,54,51,32,50,46,54,49,49,108,45,49,46,48,51,52,32,49,46,48,51,52,99,45,46,55,52,46,55,52,45,49,46,56,52,54,32,49,46,48,54,53,45,50,46,56,55,55,46,55,48,50,97,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,55,46,48,49,45,52,46,52,50,32,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,52,46,52,50,45,55,46,48,48,57,99,45,46,51,54,50,45,49,46,48,51,45,46,48,51,55,45,50,46,49,51,55,46,55,48,51,45,50,46,56,55,55,76,49,46,56,56,53,46,53,49,49,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,49,46,49,52,54,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,49,51,32,50,46,55,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,76,49,51,46,55,48,55,32,51,46,53,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,49,51,32,52,46,50,48,55,108,45,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,50,46,50,57,51,32,51,46,53,108,45,49,46,49,52,55,45,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,108,101,112,104,111,110,101,88,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,46,56,56,53,46,53,49,49,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,50,46,54,49,46,49,54,51,76,54,46,50,57,32,50,46,57,56,99,46,51,50,57,46,52,50,51,46,52,52,53,46,57,55,52,46,51,49,53,32,49,46,52,57,52,108,45,46,53,52,55,32,50,46,49,57,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,49,55,56,46,54,52,51,108,50,46,52,53,55,32,50,46,52,53,55,97,46,54,55,56,46,54,55,56,32,48,32,48,32,48,32,46,54,52,52,46,49,55,56,108,50,46,49,56,57,45,46,53,52,55,97,49,46,55,52,53,32,49,46,55,52,53,32,48,32,48,32,49,32,49,46,52,57,52,46,51,49,53,108,50,46,51,48,54,32,49,46,55,57,52,99,46,56,50,57,46,54,52,53,46,57,48,53,32,49,46,56,55,46,49,54,51,32,50,46,54,49,49,108,45,49,46,48,51,52,32,49,46,48,51,52,99,45,46,55,52,46,55,52,45,49,46,56,52,54,32,49,46,48,54,53,45,50,46,56,55,55,46,55,48,50,97,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,55,46,48,49,45,52,46,52,50,32,49,56,46,54,51,52,32,49,56,46,54,51,52,32,48,32,48,32,49,45,52,46,52,50,45,55,46,48,48,57,99,45,46,51,54,50,45,49,46,48,51,45,46,48,51,55,45,50,46,49,51,55,46,55,48,51,45,50,46,56,55,55,76,49,46,56,56,53,46,53,49,49,122,109,57,46,50,54,49,32,49,46,49,51,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,49,51,32,50,46,55,57,51,108,49,46,49,52,54,45,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,76,49,51,46,55,48,55,32,51,46,53,108,49,46,49,52,55,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,49,51,32,52,46,50,48,55,108,45,49,46,49,52,54,32,49,46,49,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,50,46,50,57,51,32,51,46,53,108,45,49,46,49,52,55,45,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,114,109,105,110,97,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,114,109,105,110,97,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,65,46,53,46,53,32,48,32,48,32,49,32,54,32,57,122,77,51,46,56,53,52,32,52,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,52,46,55,57,51,32,54,46,53,32,51,46,49,52,54,32,56,46,49,52,54,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,56,46,55,48,56,108,50,45,50,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,50,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,49,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,49,50,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,48,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,114,109,105,110,97,108,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,114,109,105,110,97,108,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,50,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,122,109,57,46,53,32,53,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,51,97,46,53,46,53,32,48,32,48,32,48,32,48,45,49,122,109,45,54,46,51,53,52,45,46,51,53,52,97,46,53,46,53,32,48,32,49,32,48,32,46,55,48,56,46,55,48,56,108,50,45,50,97,46,53,46,53,32,48,32,48,32,48,32,48,45,46,55,48,56,108,45,50,45,50,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,52,46,55,57,51,32,54,46,53,32,51,46,49,52,54,32,56,46,49,52,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,120,116,67,101,110,116,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,120,116,67,101,110,116,101,114,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,52,32,49,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,50,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,50,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,50,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,120,116,73,110,100,101,110,116,76,101,102,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,46,54,52,54,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,50,32,50,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,50,32,50,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,52,46,50,57,51,32,56,32,50,46,54,52,54,32,54,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,77,55,32,54,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,53,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,120,116,73,110,100,101,110,116,82,105,103,104,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,49,48,46,54,52,54,32,50,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,76,49,49,46,55,48,55,32,56,108,49,46,54,52,55,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,50,45,50,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,50,45,50,122,77,50,32,54,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,120,116,76,101,102,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,120,116,76,101,102,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,49,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,120,116,80,97,114,97,103,114,97,112,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,120,116,80,97,114,97,103,114,97,112,104,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,32,49,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,52,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,120,116,82,105,103,104,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,120,116,82,105,103,104,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,32,49,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,52,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,52,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,45,52,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,49,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,120,116,97,114,101,97,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,120,116,97,114,101,97,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,49,104,49,48,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,46,53,118,51,46,53,54,51,97,50,32,50,32,48,32,48,32,49,32,48,32,51,46,56,55,52,86,49,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,51,32,49,53,72,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,45,49,46,53,86,57,46,57,51,55,97,50,32,50,32,48,32,48,32,49,32,48,45,51,46,56,55,52,86,50,46,53,122,109,49,32,51,46,53,54,51,97,50,32,50,32,48,32,48,32,49,32,48,32,51,46,56,55,52,86,49,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,57,46,57,51,55,97,50,32,50,32,48,32,48,32,49,32,48,45,51,46,56,55,52,86,50,46,53,65,46,53,46,53,32,48,32,48,32,48,32,49,51,32,50,72,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,51,46,53,54,51,122,77,50,32,55,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,109,49,50,32,48,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,120,116,97,114,101,97,82,101,115,105,122,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,120,116,97,114,101,97,82,101,115,105,122,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,53,32,52,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,51,32,49,46,53,104,49,50,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,49,55,46,53,32,52,118,56,97,50,46,53,32,50,46,53,32,48,32,48,32,49,45,50,46,53,32,50,46,53,72,51,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,46,53,32,49,50,86,52,122,77,51,32,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,52,118,56,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,51,32,49,51,46,53,104,49,50,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,86,52,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,53,32,50,46,53,72,51,122,109,49,49,46,56,53,52,32,53,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,108,51,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,109,48,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,46,53,46,53,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,108,46,53,45,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,101,120,116,97,114,101,97,84,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,101,120,116,97,114,101,97,84,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,49,104,49,48,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,49,46,53,118,51,46,53,54,51,97,50,32,50,32,48,32,48,32,49,32,48,32,51,46,56,55,52,86,49,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,51,32,49,53,72,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,45,49,46,53,86,57,46,57,51,55,97,50,32,50,32,48,32,48,32,49,32,48,45,51,46,56,55,52,86,50,46,53,122,109,49,32,51,46,53,54,51,97,50,32,50,32,48,32,48,32,49,32,48,32,51,46,56,55,52,86,49,51,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,48,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,57,46,57,51,55,97,50,32,50,32,48,32,48,32,49,32,48,45,51,46,56,55,52,86,50,46,53,65,46,53,46,53,32,48,32,48,32,48,32,49,51,32,50,72,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,51,46,53,54,51,122,77,50,32,55,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,109,49,50,32,48,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,46,52,51,52,32,52,72,52,46,53,54,54,76,52,46,53,32,53,46,57,57,52,104,46,51,56,54,99,46,50,49,45,49,46,50,53,50,46,54,49,50,45,49,46,52,52,54,32,50,46,49,55,51,45,49,46,52,57,53,108,46,51,52,51,45,46,48,49,49,118,54,46,51,52,51,99,48,32,46,53,51,55,45,46,49,49,54,46,54,54,53,45,49,46,48,52,57,46,55,52,56,86,49,50,104,51,46,50,57,52,118,45,46,52,50,49,99,45,46,57,51,56,45,46,48,56,51,45,49,46,48,53,52,45,46,50,49,45,49,46,48,53,52,45,46,55,52,56,86,52,46,52,56,56,108,46,51,52,56,46,48,49,99,49,46,53,54,46,48,53,32,49,46,57,54,51,46,50,52,52,32,50,46,49,55,51,32,49,46,52,57,54,104,46,51,56,54,76,49,49,46,52,51,52,32,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,104,101,114,109,111,109,101,116,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,32,50,97,50,32,50,32,48,32,49,32,49,32,52,32,48,118,55,46,54,50,55,97,51,46,53,32,51,46,53,32,48,32,49,32,49,45,52,32,48,86,50,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,55,46,57,48,49,97,46,53,46,53,32,48,32,48,32,49,45,46,50,53,46,52,51,51,65,50,46,52,57,57,32,50,46,52,57,57,32,48,32,48,32,48,32,56,32,49,53,97,50,46,53,32,50,46,53,32,48,32,48,32,48,32,49,46,50,53,45,52,46,54,54,54,46,53,46,53,32,48,32,48,32,49,45,46,50,53,45,46,52,51,51,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,46,53,32,49,50,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,72,97,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,104,101,114,109,111,109,101,116,101,114,72,97,108,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,46,55,53,97,46,50,53,46,50,53,32,48,32,48,32,49,32,46,50,53,46,50,53,118,57,46,48,50,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,46,53,32,48,86,50,65,46,50,53,46,50,53,32,48,32,48,32,49,32,56,32,49,46,55,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,32,50,97,50,32,50,32,48,32,49,32,49,32,52,32,48,118,55,46,54,50,55,97,51,46,53,32,51,46,53,32,48,32,49,32,49,45,52,32,48,86,50,122,109,50,45,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,55,46,57,48,49,97,46,53,46,53,32,48,32,48,32,49,45,46,50,53,46,52,51,51,65,50,46,52,57,57,32,50,46,52,57,57,32,48,32,48,32,48,32,56,32,49,53,97,50,46,53,32,50,46,53,32,48,32,48,32,48,32,49,46,50,53,45,52,46,54,54,54,46,53,46,53,32,48,32,48,32,49,45,46,50,53,45,46,52,51,51,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,104,114,101,101,68,111,116,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,104,114,101,101,68,111,116,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,57,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,109,53,32,48,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,109,53,32,48,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,104,114,101,101,68,111,116,115,86,101,114,116,105,99,97,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,104,114,101,101,68,111,116,115,86,101,114,116,105,99,97,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,53,32,49,51,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,48,45,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,109,48,45,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,45,51,32,48,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,51,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,111,103,103,108,101,50,79,102,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,111,103,103,108,101,50,79,102,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,32,49,49,99,46,54,50,56,45,46,56,51,54,32,49,45,49,46,56,55,52,32,49,45,51,97,52,46,57,55,56,32,52,46,57,55,56,32,48,32,48,32,48,45,49,45,51,104,52,97,51,32,51,32,48,32,49,32,49,32,48,32,54,72,57,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,32,49,50,97,52,32,52,32,48,32,49,32,49,32,48,45,56,32,52,32,52,32,48,32,48,32,49,32,48,32,56,122,109,48,32,49,65,53,32,53,32,48,32,49,32,48,32,53,32,51,97,53,32,53,32,48,32,48,32,48,32,48,32,49,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,111,103,103,108,101,50,79,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,111,103,103,108,101,50,79,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,53,72,51,97,51,32,51,32,48,32,48,32,48,32,48,32,54,104,52,97,52,46,57,57,53,32,52,46,57,57,53,32,48,32,48,32,49,45,46,53,56,52,45,49,72,51,97,50,32,50,32,48,32,49,32,49,32,48,45,52,104,51,46,52,49,54,99,46,49,53,54,45,46,51,53,55,46,51,53,50,45,46,54,57,50,46,53,56,52,45,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,53,32,53,32,48,32,49,32,49,32,54,32,56,97,53,32,53,32,48,32,48,32,49,32,49,48,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,111,103,103,108,101,79,102,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,111,103,103,108,101,79,102,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,52,97,52,32,52,32,48,32,48,32,49,32,48,32,56,72,56,97,52,46,57,57,50,32,52,46,57,57,50,32,48,32,48,32,48,32,50,45,52,32,52,46,57,57,50,32,52,46,57,57,50,32,48,32,48,32,48,45,50,45,52,104,51,122,109,45,54,32,56,97,52,32,52,32,48,32,49,32,49,32,48,45,56,32,52,32,52,32,48,32,48,32,49,32,48,32,56,122,77,48,32,56,97,53,32,53,32,48,32,48,32,48,32,53,32,53,104,54,97,53,32,53,32,48,32,48,32,48,32,48,45,49,48,72,53,97,53,32,53,32,48,32,48,32,48,45,53,32,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,111,103,103,108,101,79,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,111,103,103,108,101,79,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,32,51,97,53,32,53,32,48,32,48,32,48,32,48,32,49,48,104,54,97,53,32,53,32,48,32,48,32,48,32,48,45,49,48,72,53,122,109,54,32,57,97,52,32,52,32,48,32,49,32,49,32,48,45,56,32,52,32,52,32,48,32,48,32,49,32,48,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,111,103,103,108,101,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,111,103,103,108,101,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,32,57,97,51,46,53,32,51,46,53,32,48,32,49,32,48,32,48,32,55,104,55,97,51,46,53,32,51,46,53,32,48,32,49,32,48,32,48,45,55,104,45,55,122,109,55,32,54,97,50,46,53,32,50,46,53,32,48,32,49,32,49,32,48,45,53,32,50,46,53,32,50,46,53,32,48,32,48,32,49,32,48,32,53,122,109,45,55,45,49,52,97,50,46,53,32,50,46,53,32,48,32,49,32,48,32,48,32,53,32,50,46,53,32,50,46,53,32,48,32,48,32,48,32,48,45,53,122,109,50,46,52,53,32,48,65,51,46,52,57,32,51,46,52,57,32,48,32,48,32,49,32,56,32,51,46,53,32,51,46,52,57,32,51,46,52,57,32,48,32,48,32,49,32,54,46,57,53,32,54,104,52,46,53,53,97,50,46,53,32,50,46,53,32,48,32,48,32,48,32,48,45,53,72,54,46,57,53,122,77,52,46,53,32,48,104,55,97,51,46,53,32,51,46,53,32,48,32,49,32,49,32,48,32,55,104,45,55,97,51,46,53,32,51,46,53,32,48,32,49,32,49,32,48,45,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,111,103,103,108,101,115,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,111,103,103,108,101,115,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,52,54,53,32,49,48,72,49,50,97,50,32,50,32,48,32,49,32,49,32,48,32,52,72,57,46,52,54,53,99,46,51,52,45,46,53,56,56,46,53,51,53,45,49,46,50,55,49,46,53,51,53,45,50,32,48,45,46,55,50,57,45,46,49,57,53,45,49,46,52,49,50,45,46,53,51,53,45,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,54,32,49,53,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,109,48,32,49,97,52,32,52,32,48,32,49,32,49,32,48,45,56,32,52,32,52,32,48,32,48,32,49,32,48,32,56,122,109,46,53,51,53,45,49,48,97,51,46,57,55,53,32,51,46,57,55,53,32,48,32,48,32,49,45,46,52,48,57,45,49,72,52,97,49,32,49,32,48,32,48,32,49,32,48,45,50,104,50,46,49,50,54,99,46,48,57,49,45,46,51,53,53,46,50,51,45,46,54,57,46,52,49,45,49,72,52,97,50,32,50,32,48,32,49,32,48,32,48,32,52,104,50,46,53,51,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,52,32,52,97,52,32,52,32,48,32,49,32,49,45,56,32,48,32,52,32,52,32,48,32,48,32,49,32,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,111,111,108,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,111,111,108,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,32,48,76,48,32,49,108,50,46,50,32,51,46,48,56,49,97,49,32,49,32,48,32,48,32,48,32,46,56,49,53,46,52,49,57,104,46,48,55,97,49,32,49,32,48,32,48,32,49,32,46,55,48,56,46,50,57,51,108,50,46,54,55,53,32,50,46,54,55,53,45,50,46,54,49,55,32,50,46,54,53,52,65,51,46,48,48,51,32,51,46,48,48,51,32,48,32,48,32,48,32,48,32,49,51,97,51,32,51,32,48,32,49,32,48,32,53,46,56,55,56,45,46,56,53,49,108,50,46,54,53,52,45,50,46,54,49,55,46,57,54,56,46,57,54,56,45,46,51,48,53,46,57,49,52,97,49,32,49,32,48,32,48,32,48,32,46,50,52,50,32,49,46,48,50,51,108,51,46,51,53,54,32,51,46,51,53,54,97,49,32,49,32,48,32,48,32,48,32,49,46,52,49,52,32,48,108,49,46,53,56,54,45,49,46,53,56,54,97,49,32,49,32,48,32,48,32,48,32,48,45,49,46,52,49,52,108,45,51,46,51,53,54,45,51,46,51,53,54,97,49,32,49,32,48,32,48,32,48,45,49,46,48,50,51,45,46,50,52,50,76,49,48,46,53,32,57,46,53,108,45,46,57,54,45,46,57,54,32,50,46,54,56,45,50,46,54,52,51,65,51,46,48,48,53,32,51,46,48,48,53,32,48,32,48,32,48,32,49,54,32,51,99,48,45,46,50,54,57,45,46,48,51,53,45,46,53,51,45,46,49,48,50,45,46,55,55,55,108,45,50,46,49,52,32,50,46,49,52,49,76,49,50,32,52,108,45,46,51,54,52,45,49,46,55,53,55,76,49,51,46,55,55,55,46,49,48,50,97,51,32,51,32,48,32,48,32,48,45,51,46,54,55,53,32,51,46,54,56,76,55,46,52,54,50,32,54,46,52,54,32,52,46,55,57,51,32,51,46,55,57,51,97,49,32,49,32,48,32,48,32,49,45,46,50,57,51,45,46,55,48,55,118,45,46,48,55,49,97,49,32,49,32,48,32,48,32,48,45,46,52,49,57,45,46,56,49,52,76,49,32,48,122,109,57,46,54,52,54,32,49,48,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,51,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,77,51,32,49,49,108,46,52,55,49,46,50,52,50,46,53,50,57,46,48,50,54,46,50,56,55,46,52,52,53,46,52,52,53,46,50,56,55,46,48,50,54,46,53,50,57,76,53,32,49,51,108,45,46,50,52,50,46,52,55,49,45,46,48,50,54,46,53,50,57,45,46,52,52,53,46,50,56,55,45,46,50,56,55,46,52,52,53,45,46,53,50,57,46,48,50,54,76,51,32,49,53,108,45,46,52,55,49,45,46,50,52,50,76,50,32,49,52,46,55,51,50,108,45,46,50,56,55,45,46,52,52,53,76,49,46,50,54,56,32,49,52,108,45,46,48,50,54,45,46,53,50,57,76,49,32,49,51,108,46,50,52,50,45,46,52,55,49,46,48,50,54,45,46,53,50,57,46,52,52,53,45,46,50,56,55,46,50,56,55,45,46,52,52,53,46,53,50,57,45,46,48,50,54,76,51,32,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,114,97,115,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,114,97,115,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,53,32,53,46,53,65,46,53,46,53,32,48,32,48,32,49,32,54,32,54,118,54,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,50,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,54,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,51,32,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,54,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,86,54,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,52,46,53,32,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,49,51,118,57,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,53,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,52,104,45,46,53,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,72,54,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,104,51,46,53,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,122,77,52,46,49,49,56,32,52,76,52,32,52,46,48,53,57,86,49,51,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,54,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,46,48,53,57,76,49,49,46,56,56,50,32,52,72,52,46,49,49,56,122,77,50,46,53,32,51,86,50,104,49,49,118,49,104,45,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,114,97,115,104,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,114,97,115,104,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,51,97,46,55,48,50,46,55,48,50,32,48,32,48,32,49,45,46,48,51,55,46,50,50,53,108,45,49,46,54,56,52,32,49,48,46,49,48,52,65,50,32,50,32,48,32,48,32,49,32,49,48,46,51,48,53,32,49,53,72,53,46,54,57,52,97,50,32,50,32,48,32,48,32,49,45,49,46,57,55,51,45,49,46,54,55,49,76,50,46,48,51,55,32,51,46,50,50,53,65,46,55,48,51,46,55,48,51,32,48,32,48,32,49,32,50,32,51,99,48,45,49,46,49,48,53,32,50,46,54,56,54,45,50,32,54,45,50,115,54,32,46,56,57,53,32,54,32,50,122,77,51,46,50,49,53,32,52,46,50,48,55,108,49,46,52,57,51,32,56,46,57,53,55,97,49,32,49,32,48,32,48,32,48,32,46,57,56,54,46,56,51,54,104,52,46,54,49,50,97,49,32,49,32,48,32,48,32,48,32,46,57,56,54,45,46,56,51,54,108,49,46,52,57,51,45,56,46,57,53,55,67,49,49,46,54,57,32,52,46,54,56,57,32,57,46,57,53,52,32,53,32,56,32,53,99,45,49,46,57,53,52,32,48,45,51,46,54,57,45,46,51,49,49,45,52,46,55,56,53,45,46,55,57,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,114,97,115,104,50,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,114,97,115,104,50,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,48,51,55,32,51,46,50,50,53,65,46,55,48,51,46,55,48,51,32,48,32,48,32,49,32,50,32,51,99,48,45,49,46,49,48,53,32,50,46,54,56,54,45,50,32,54,45,50,115,54,32,46,56,57,53,32,54,32,50,97,46,55,48,50,46,55,48,50,32,48,32,48,32,49,45,46,48,51,55,46,50,50,53,108,45,49,46,54,56,52,32,49,48,46,49,48,52,65,50,32,50,32,48,32,48,32,49,32,49,48,46,51,48,53,32,49,53,72,53,46,54,57,52,97,50,32,50,32,48,32,48,32,49,45,49,46,57,55,51,45,49,46,54,55,49,76,50,46,48,51,55,32,51,46,50,50,53,122,109,57,46,56,57,45,46,54,57,67,49,48,46,57,54,54,32,50,46,50,49,52,32,57,46,53,55,56,32,50,32,56,32,50,99,45,49,46,53,56,32,48,45,50,46,57,54,56,46,50,49,53,45,51,46,57,50,54,46,53,51,52,45,46,52,55,55,46,49,54,45,46,55,57,53,46,51,50,55,45,46,57,55,53,46,52,54,54,46,49,56,46,49,52,46,52,57,56,46,51,48,55,46,57,55,53,46,52,54,54,67,53,46,48,51,50,32,51,46,55,56,54,32,54,46,52,50,32,52,32,56,32,52,115,50,46,57,54,55,45,46,50,49,53,32,51,46,57,50,54,45,46,53,51,52,99,46,52,55,55,45,46,49,54,46,55,57,53,45,46,51,50,55,46,57,55,53,45,46,52,54,54,45,46,49,56,45,46,49,52,45,46,52,57,56,45,46,51,48,55,45,46,57,55,53,45,46,52,54,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,114,97,115,104,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,114,97,115,104,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,49,97,49,32,49,32,48,32,48,32,48,32,49,32,49,72,51,118,57,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,54,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,104,46,53,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,49,48,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,55,97,49,32,49,32,48,32,48,32,48,45,49,32,49,72,50,46,53,122,109,51,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,55,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,56,32,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,55,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,55,65,46,53,46,53,32,48,32,48,32,49,32,56,32,53,122,109,51,32,46,53,118,55,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,55,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,114,101,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,114,101,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,52,49,54,46,50,50,51,97,46,53,46,53,32,48,32,48,32,48,45,46,56,51,50,32,48,108,45,51,32,52,46,53,65,46,53,46,53,32,48,32,48,32,48,32,53,32,53,46,53,104,46,48,57,56,76,51,46,48,55,54,32,56,46,55,51,53,65,46,53,46,53,32,48,32,48,32,48,32,51,46,53,32,57,46,53,104,46,49,57,49,108,45,49,46,54,51,56,32,51,46,50,55,54,97,46,53,46,53,32,48,32,48,32,48,32,46,52,52,55,46,55,50,52,72,55,86,49,54,104,50,118,45,50,46,53,104,52,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,52,52,55,45,46,55,50,52,76,49,50,46,51,49,32,57,46,53,104,46,49,57,49,97,46,53,46,53,32,48,32,48,32,48,32,46,52,50,52,45,46,55,54,53,76,49,48,46,57,48,50,32,53,46,53,72,49,49,97,46,53,46,53,32,48,32,48,32,48,32,46,52,49,54,45,46,55,55,55,108,45,51,45,52,46,53,122,77,54,46,52,51,55,32,52,46,55,53,56,65,46,53,46,53,32,48,32,48,32,48,32,54,32,52,46,53,104,45,46,48,54,54,76,56,32,49,46,52,48,49,32,49,48,46,48,54,54,32,52,46,53,72,49,48,97,46,53,46,53,32,48,32,48,32,48,45,46,52,50,52,46,55,54,53,76,49,49,46,53,57,56,32,56,46,53,72,49,49,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,52,52,55,46,55,50,52,76,49,50,46,54,57,32,49,50,46,53,72,51,46,51,48,57,108,49,46,54,51,56,45,51,46,50,55,54,65,46,53,46,53,32,48,32,48,32,48,32,52,46,53,32,56,46,53,104,45,46,48,57,56,108,50,46,48,50,50,45,51,46,50,51,53,97,46,53,46,53,32,48,32,48,32,48,32,46,48,49,51,45,46,53,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,114,101,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,114,101,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,52,49,54,46,50,50,51,97,46,53,46,53,32,48,32,48,32,48,45,46,56,51,50,32,48,108,45,51,32,52,46,53,65,46,53,46,53,32,48,32,48,32,48,32,53,32,53,46,53,104,46,48,57,56,76,51,46,48,55,54,32,56,46,55,51,53,65,46,53,46,53,32,48,32,48,32,48,32,51,46,53,32,57,46,53,104,46,49,57,49,108,45,49,46,54,51,56,32,51,46,50,55,54,97,46,53,46,53,32,48,32,48,32,48,32,46,52,52,55,46,55,50,52,72,55,86,49,54,104,50,118,45,50,46,53,104,52,46,53,97,46,53,46,53,32,48,32,48,32,48,32,46,52,52,55,45,46,55,50,52,76,49,50,46,51,49,32,57,46,53,104,46,49,57,49,97,46,53,46,53,32,48,32,48,32,48,32,46,52,50,52,45,46,55,54,53,76,49,48,46,57,48,50,32,53,46,53,72,49,49,97,46,53,46,53,32,48,32,48,32,48,32,46,52,49,54,45,46,55,55,55,108,45,51,45,52,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,114,105,97,110,103,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,114,105,97,110,103,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,57,51,56,32,50,46,48,49,54,65,46,49,51,46,49,51,32,48,32,48,32,49,32,56,46,48,48,50,32,50,97,46,49,51,46,49,51,32,48,32,48,32,49,32,46,48,54,51,46,48,49,54,46,49,52,54,46,49,52,54,32,48,32,48,32,49,32,46,48,53,52,46,48,53,55,108,54,46,56,53,55,32,49,49,46,54,54,55,99,46,48,51,54,46,48,54,46,48,51,53,46,49,50,52,46,48,48,50,46,49,56,51,97,46,49,54,51,46,49,54,51,32,48,32,48,32,49,45,46,48,53,52,46,48,54,46,49,49,54,46,49,49,54,32,48,32,48,32,49,45,46,48,54,54,46,48,49,55,72,49,46,49,52,54,97,46,49,49,53,46,49,49,53,32,48,32,48,32,49,45,46,48,54,54,45,46,48,49,55,46,49,54,51,46,49,54,51,32,48,32,48,32,49,45,46,48,53,52,45,46,48,54,46,49,55,54,46,49,55,54,32,48,32,48,32,49,32,46,48,48,50,45,46,49,56,51,76,55,46,56,56,52,32,50,46,48,55,51,97,46,49,52,55,46,49,52,55,32,48,32,48,32,49,32,46,48,53,52,45,46,48,53,55,122,109,49,46,48,52,52,45,46,52,53,97,49,46,49,51,32,49,46,49,51,32,48,32,48,32,48,45,49,46,57,54,32,48,76,46,49,54,53,32,49,51,46,50,51,51,99,45,46,52,53,55,46,55,55,56,46,48,57,49,32,49,46,55,54,55,46,57,56,32,49,46,55,54,55,104,49,51,46,55,49,51,99,46,56,56,57,32,48,32,49,46,52,51,56,45,46,57,57,46,57,56,45,49,46,55,54,55,76,56,46,57,56,50,32,49,46,53,54,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,114,105,97,110,103,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,114,105,97,110,103,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,55,46,48,50,50,32,49,46,53,54,54,97,49,46,49,51,32,49,46,49,51,32,48,32,48,32,49,32,49,46,57,54,32,48,108,54,46,56,53,55,32,49,49,46,54,54,55,99,46,52,53,55,46,55,55,56,45,46,48,57,50,32,49,46,55,54,55,45,46,57,56,32,49,46,55,54,55,72,49,46,49,52,52,99,45,46,56,56,57,32,48,45,49,46,52,51,55,45,46,57,57,45,46,57,56,45,49,46,55,54,55,76,55,46,48,50,50,32,49,46,53,54,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,114,105,97,110,103,108,101,72,97,108,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,114,105,97,110,103,108,101,72,97,108,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,48,54,53,32,50,46,48,49,54,65,46,49,51,46,49,51,32,48,32,48,32,48,32,56,46,48,48,50,32,50,118,49,49,46,57,56,51,108,54,46,56,53,54,46,48,49,55,97,46,49,50,46,49,50,32,48,32,48,32,48,32,46,48,54,54,45,46,48,49,55,46,49,54,50,46,49,54,50,32,48,32,48,32,48,32,46,48,53,53,45,46,48,54,46,49,55,55,46,49,55,55,32,48,32,48,32,48,45,46,48,48,51,45,46,49,56,51,76,56,46,49,50,32,50,46,48,55,51,97,46,49,52,54,46,49,52,54,32,48,32,48,32,48,45,46,48,53,52,45,46,48,53,55,122,109,45,49,46,48,52,51,45,46,52,53,97,49,46,49,51,32,49,46,49,51,32,48,32,48,32,49,32,49,46,57,54,32,48,108,54,46,56,53,55,32,49,49,46,54,54,55,99,46,52,53,55,46,55,55,56,45,46,48,57,50,32,49,46,55,54,55,45,46,57,56,32,49,46,55,54,55,72,49,46,49,52,52,99,45,46,56,56,57,32,48,45,49,46,52,51,55,45,46,57,57,45,46,57,56,45,49,46,55,54,55,76,55,46,48,50,50,32,49,46,53,54,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,114,111,112,104,121,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,114,111,112,104,121,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,46,53,65,46,53,46,53,32,48,32,48,32,49,32,51,32,48,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,99,48,32,46,53,51,56,45,46,48,49,50,32,49,46,48,53,45,46,48,51,52,32,49,46,53,51,54,97,51,32,51,32,48,32,49,32,49,45,49,46,49,51,51,32,53,46,56,57,99,45,46,55,57,32,49,46,56,54,53,45,49,46,56,55,56,32,50,46,55,55,55,45,50,46,56,51,51,32,51,46,48,49,49,118,50,46,49,55,51,108,49,46,52,50,53,46,51,53,54,99,46,49,57,52,46,48,52,56,46,51,55,55,46,49,51,53,46,53,51,55,46,50,53,53,76,49,51,46,51,32,49,53,46,49,97,46,53,46,53,32,48,32,48,32,49,45,46,51,46,57,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,51,45,46,57,108,49,46,56,51,56,45,49,46,51,55,57,99,46,49,54,45,46,49,50,46,51,52,51,45,46,50,48,55,46,53,51,55,45,46,50,53,53,76,54,46,53,32,49,51,46,49,49,118,45,50,46,49,55,51,99,45,46,57,53,53,45,46,50,51,52,45,50,46,48,52,51,45,49,46,49,52,54,45,50,46,56,51,51,45,51,46,48,49,50,97,51,32,51,32,48,32,49,32,49,45,49,46,49,51,50,45,53,46,56,57,65,51,51,46,48,55,54,32,51,51,46,48,55,54,32,48,32,48,32,49,32,50,46,53,46,53,122,109,46,48,57,57,32,50,46,53,52,97,50,32,50,32,48,32,48,32,48,32,46,55,50,32,51,46,57,51,53,99,45,46,51,51,51,45,49,46,48,53,45,46,53,56,56,45,50,46,51,52,54,45,46,55,50,45,51,46,57,51,53,122,109,49,48,46,48,56,51,32,51,46,57,51,53,97,50,32,50,32,48,32,48,32,48,32,46,55,50,45,51,46,57,51,53,99,45,46,49,51,51,32,49,46,53,57,45,46,51,56,56,32,50,46,56,56,53,45,46,55,50,32,51,46,57,51,53,122,77,51,46,53,48,52,32,49,99,46,48,48,55,46,53,49,55,46,48,50,54,32,49,46,48,48,54,46,48,53,54,32,49,46,52,54,57,46,49,51,32,50,46,48,50,56,46,52,53,55,32,51,46,53,52,54,46,56,55,32,52,46,54,54,55,67,53,46,50,57,52,32,57,46,52,56,32,54,46,52,56,52,32,49,48,32,55,32,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,46,54,49,97,49,32,49,32,48,32,48,32,49,45,46,55,53,55,46,57,55,108,45,49,46,52,50,54,46,51,53,54,97,46,53,46,53,32,48,32,48,32,48,45,46,49,55,57,46,48,56,53,76,52,46,53,32,49,53,104,55,108,45,46,54,51,56,45,46,52,55,57,97,46,53,48,49,46,53,48,49,32,48,32,48,32,48,45,46,49,56,45,46,48,56,53,108,45,49,46,52,50,53,45,46,51,53,54,97,49,32,49,32,48,32,48,32,49,45,46,55,53,55,45,46,57,55,86,49,48,46,53,65,46,53,46,53,32,48,32,48,32,49,32,57,32,49,48,99,46,53,49,54,32,48,32,49,46,55,48,54,45,46,53,50,32,50,46,53,55,45,50,46,56,54,52,46,52,49,51,45,49,46,49,50,46,55,52,45,50,46,54,52,46,56,55,45,52,46,54,54,55,46,48,51,45,46,52,54,51,46,48,52,57,45,46,57,53,50,46,48,53,54,45,49,46,52,54,57,72,51,46,53,48,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,114,111,112,104,121,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,114,111,112,104,121,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,46,53,65,46,53,46,53,32,48,32,48,32,49,32,51,32,48,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,99,48,32,46,53,51,56,45,46,48,49,50,32,49,46,48,53,45,46,48,51,52,32,49,46,53,51,54,97,51,32,51,32,48,32,49,32,49,45,49,46,49,51,51,32,53,46,56,57,99,45,46,55,57,32,49,46,56,54,53,45,49,46,56,55,56,32,50,46,55,55,55,45,50,46,56,51,51,32,51,46,48,49,49,118,50,46,49,55,51,108,49,46,52,50,53,46,51,53,54,99,46,49,57,52,46,48,52,56,46,51,55,55,46,49,51,53,46,53,51,55,46,50,53,53,76,49,51,46,51,32,49,53,46,49,97,46,53,46,53,32,48,32,48,32,49,45,46,51,46,57,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,51,45,46,57,108,49,46,56,51,56,45,49,46,51,55,57,99,46,49,54,45,46,49,50,46,51,52,51,45,46,50,48,55,46,53,51,55,45,46,50,53,53,76,54,46,53,32,49,51,46,49,49,118,45,50,46,49,55,51,99,45,46,57,53,53,45,46,50,51,52,45,50,46,48,52,51,45,49,46,49,52,54,45,50,46,56,51,51,45,51,46,48,49,50,97,51,32,51,32,48,32,49,32,49,45,49,46,49,51,50,45,53,46,56,57,65,51,51,46,48,55,54,32,51,51,46,48,55,54,32,48,32,48,32,49,32,50,46,53,46,53,122,109,46,48,57,57,32,50,46,53,52,97,50,32,50,32,48,32,48,32,48,32,46,55,50,32,51,46,57,51,53,99,45,46,51,51,51,45,49,46,48,53,45,46,53,56,56,45,50,46,51,52,54,45,46,55,50,45,51,46,57,51,53,122,109,49,48,46,48,56,51,32,51,46,57,51,53,97,50,32,50,32,48,32,48,32,48,32,46,55,50,45,51,46,57,51,53,99,45,46,49,51,51,32,49,46,53,57,45,46,51,56,56,32,50,46,56,56,53,45,46,55,50,32,51,46,57,51,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,114,117,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,114,117,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,51,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,50,104,57,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,50,32,51,46,53,86,53,104,49,46,48,50,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,49,55,46,53,54,51,108,49,46,52,56,49,32,49,46,56,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,46,51,50,57,46,57,51,56,86,49,48,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,72,49,52,97,50,32,50,32,48,32,49,32,49,45,52,32,48,72,53,97,50,32,50,32,48,32,49,32,49,45,51,46,57,57,56,45,46,48,56,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,48,46,53,118,45,55,122,109,49,46,50,57,52,32,55,46,52,53,54,65,49,46,57,57,57,32,49,46,57,57,57,32,48,32,48,32,49,32,52,46,55,51,50,32,49,49,104,53,46,53,51,54,97,50,46,48,49,32,50,46,48,49,32,48,32,48,32,49,32,46,55,51,50,45,46,55,51,50,86,51,46,53,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,57,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,55,97,46,53,46,53,32,48,32,48,32,48,32,46,50,57,52,46,52,53,54,122,77,49,50,32,49,48,97,50,32,50,32,48,32,48,32,49,32,49,46,55,51,50,32,49,104,46,55,54,56,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,56,46,51,53,97,46,53,46,53,32,48,32,48,32,48,45,46,49,49,45,46,51,49,50,108,45,49,46,52,56,45,49,46,56,53,65,46,53,46,53,32,48,32,48,32,48,32,49,51,46,48,50,32,54,72,49,50,118,52,122,109,45,57,32,49,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,109,57,32,48,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,114,117,99,107,70,108,97,116,98,101,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,114,117,99,107,70,108,97,116,98,101,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,53,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,53,104,49,46,48,50,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,49,55,46,53,54,51,108,49,46,52,56,49,32,49,46,56,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,46,51,50,57,46,57,51,56,86,49,48,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,72,49,52,97,50,32,50,32,48,32,49,32,49,45,52,32,48,72,53,97,50,32,50,32,48,32,49,32,49,45,52,32,48,32,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,49,104,49,49,86,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,51,32,49,49,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,109,57,32,48,97,49,32,49,32,48,32,49,32,48,32,48,32,50,32,49,32,49,32,48,32,48,32,48,32,48,45,50,122,109,49,46,55,51,50,32,48,104,46,55,54,56,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,56,46,51,53,97,46,53,46,53,32,48,32,48,32,48,45,46,49,49,45,46,51,49,50,108,45,49,46,52,56,45,49,46,56,53,65,46,53,46,53,32,48,32,48,32,48,32,49,51,46,48,50,32,54,72,49,50,118,52,97,50,32,50,32,48,32,48,32,49,32,49,46,55,51,50,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,118,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,118,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,49,51,46,53,65,46,53,46,53,32,48,32,48,32,49,32,51,32,49,51,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,49,51,46,57,57,49,32,51,108,46,48,50,52,46,48,48,49,97,49,46,52,54,32,49,46,52,54,32,48,32,48,32,49,32,46,53,51,56,46,49,52,51,46,55,53,55,46,55,53,55,32,48,32,48,32,49,32,46,51,48,50,46,50,53,52,99,46,48,54,55,46,49,46,49,52,53,46,50,55,55,46,49,52,53,46,54,48,50,118,53,46,57,57,49,108,45,46,48,48,49,46,48,50,52,97,49,46,52,54,52,32,49,46,52,54,52,32,48,32,48,32,49,45,46,49,52,51,46,53,51,56,46,55,53,56,46,55,53,56,32,48,32,48,32,49,45,46,50,53,52,46,51,48,50,99,45,46,49,46,48,54,55,45,46,50,55,55,46,49,52,53,45,46,54,48,50,46,49,52,53,72,50,46,48,48,57,108,45,46,48,50,52,45,46,48,48,49,97,49,46,52,54,52,32,49,46,52,54,52,32,48,32,48,32,49,45,46,53,51,56,45,46,49,52,51,46,55,53,56,46,55,53,56,32,48,32,48,32,49,45,46,51,48,50,45,46,50,53,52,67,49,46,48,55,56,32,49,48,46,53,48,50,32,49,32,49,48,46,51,50,53,32,49,32,49,48,86,52,46,48,48,57,108,46,48,48,49,45,46,48,50,52,97,49,46,52,54,32,49,46,52,54,32,48,32,48,32,49,32,46,49,52,51,45,46,53,51,56,46,55,53,56,46,55,53,56,32,48,32,48,32,49,32,46,50,53,52,45,46,51,48,50,67,49,46,52,57,56,32,51,46,48,55,56,32,49,46,54,55,53,32,51,32,50,32,51,104,49,49,46,57,57,49,122,77,49,52,32,50,72,50,67,48,32,50,32,48,32,52,32,48,32,52,118,54,99,48,32,50,32,50,32,50,32,50,32,50,104,49,50,99,50,32,48,32,50,45,50,32,50,45,50,86,52,99,48,45,50,45,50,45,50,45,50,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,118,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,118,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,49,51,46,53,65,46,53,46,53,32,48,32,48,32,49,32,51,32,49,51,104,49,48,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,50,32,50,104,49,50,115,50,32,48,32,50,32,50,118,54,115,48,32,50,45,50,32,50,72,50,115,45,50,32,48,45,50,45,50,86,52,115,48,45,50,32,50,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,119,105,116,99,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,119,105,116,99,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,56,53,55,32,48,76,49,32,50,46,56,53,55,118,49,48,46,50,56,54,104,51,46,52,50,57,86,49,54,108,50,46,56,53,55,45,50,46,56,53,55,72,57,46,53,55,76,49,52,46,55,49,52,32,56,86,48,72,51,46,56,53,55,122,109,57,46,55,49,52,32,55,46,52,50,57,108,45,50,46,50,56,53,32,50,46,50,56,53,72,57,108,45,50,32,50,118,45,50,72,52,46,52,50,57,86,49,46,49,52,51,104,57,46,49,52,50,118,54,46,50,56,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,49,46,56,53,55,32,51,46,49,52,51,104,45,49,46,49,52,51,86,54,46,53,55,104,49,46,49,52,51,86,51,46,49,52,51,122,109,45,51,46,49,52,51,32,48,72,55,46,53,55,49,86,54,46,53,55,104,49,46,49,52,51,86,51,46,49,52,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,119,105,116,116,101,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,119,105,116,116,101,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,48,50,54,32,49,53,99,54,46,48,51,56,32,48,32,57,46,51,52,49,45,53,46,48,48,51,32,57,46,51,52,49,45,57,46,51,51,52,32,48,45,46,49,52,32,48,45,46,50,56,50,45,46,48,48,54,45,46,52,50,50,65,54,46,54,56,53,32,54,46,54,56,53,32,48,32,48,32,48,32,49,54,32,51,46,53,52,50,97,54,46,54,53,56,32,54,46,54,53,56,32,48,32,48,32,49,45,49,46,56,56,57,46,53,49,56,32,51,46,51,48,49,32,51,46,51,48,49,32,48,32,48,32,48,32,49,46,52,52,55,45,49,46,56,49,55,32,54,46,53,51,51,32,54,46,53,51,51,32,48,32,48,32,49,45,50,46,48,56,55,46,55,57,51,65,51,46,50,56,54,32,51,46,50,56,54,32,48,32,48,32,48,32,55,46,56,55,53,32,54,46,48,51,97,57,46,51,50,53,32,57,46,51,50,53,32,48,32,48,32,49,45,54,46,55,54,55,45,51,46,52,50,57,32,51,46,50,56,57,32,51,46,50,56,57,32,48,32,48,32,48,32,49,46,48,49,56,32,52,46,51,56,50,65,51,46,51,50,51,32,51,46,51,50,51,32,48,32,48,32,49,32,46,54,52,32,54,46,53,55,53,118,46,48,52,53,97,51,46,50,56,56,32,51,46,50,56,56,32,48,32,48,32,48,32,50,46,54,51,50,32,51,46,50,49,56,32,51,46,50,48,51,32,51,46,50,48,51,32,48,32,48,32,49,45,46,56,54,53,46,49,49,53,32,51,46,50,51,32,51,46,50,51,32,48,32,48,32,49,45,46,54,49,52,45,46,48,53,55,32,51,46,50,56,51,32,51,46,50,56,51,32,48,32,48,32,48,32,51,46,48,54,55,32,50,46,50,55,55,65,54,46,53,56,56,32,54,46,53,56,56,32,48,32,48,32,49,32,46,55,56,32,49,51,46,53,56,97,54,46,51,50,32,54,46,51,50,32,48,32,48,32,49,45,46,55,56,45,46,48,52,53,65,57,46,51,52,52,32,57,46,51,52,52,32,48,32,48,32,48,32,53,46,48,50,54,32,49,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,121,112,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,121,112,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,50,52,52,32,49,51,46,48,56,49,108,46,57,52,51,45,50,46,56,48,51,72,54,46,54,54,108,46,57,52,52,32,50,46,56,48,51,72,56,46,56,54,76,53,46,53,52,32,51,46,55,53,72,52,46,51,50,50,76,49,32,49,51,46,48,56,49,104,49,46,50,52,52,122,109,50,46,55,45,55,46,57,50,51,76,54,46,51,52,32,57,46,51,49,52,72,51,46,53,49,108,49,46,52,45,52,46,49,53,54,104,46,48,51,52,122,109,57,46,49,52,54,32,55,46,48,50,55,104,46,48,51,53,118,46,56,57,54,104,49,46,49,50,56,86,56,46,49,50,53,99,48,45,49,46,53,49,45,49,46,49,49,52,45,50,46,51,52,53,45,50,46,54,52,54,45,50,46,51,52,53,45,49,46,55,51,54,32,48,45,50,46,53,57,46,57,49,54,45,50,46,54,54,54,32,50,46,49,55,52,104,49,46,49,48,56,99,46,48,54,56,45,46,55,49,56,46,53,57,53,45,49,46,49,57,32,49,46,53,49,55,45,49,46,49,57,46,57,55,49,32,48,32,49,46,53,49,56,46,53,50,32,49,46,53,49,56,32,49,46,52,54,52,118,46,55,51,49,72,49,50,46,49,57,99,45,49,46,54,52,55,46,48,48,55,45,50,46,53,50,50,46,56,45,50,46,53,50,50,32,50,46,48,53,56,32,48,32,49,46,51,49,57,46,57,53,55,32,50,46,49,56,32,50,46,51,52,53,32,50,46,49,56,32,49,46,48,54,32,48,32,49,46,55,49,54,45,46,52,51,32,50,46,48,55,56,45,49,46,48,49,49,122,109,45,49,46,55,54,51,46,48,51,53,99,45,46,55,53,50,32,48,45,49,46,52,53,54,45,46,51,57,55,45,49,46,52,53,54,45,49,46,50,52,52,32,48,45,46,54,53,46,52,50,52,45,49,46,49,49,53,32,49,46,52,48,56,45,49,46,49,49,53,104,49,46,56,48,53,118,46,56,51,52,99,48,32,46,56,57,54,45,46,55,53,50,32,49,46,53,50,53,45,49,46,55,53,55,32,49,46,53,50,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,121,112,101,66,111,108,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,121,112,101,66,111,108,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,50,49,32,49,51,99,50,46,49,48,54,32,48,32,51,46,52,49,50,45,49,46,48,56,55,32,51,46,52,49,50,45,50,46,56,50,51,32,48,45,49,46,51,48,54,45,46,57,56,52,45,50,46,50,56,51,45,50,46,51,50,52,45,50,46,51,56,54,118,45,46,48,53,53,97,50,46,49,55,54,32,50,46,49,55,54,32,48,32,48,32,48,32,49,46,56,53,50,45,50,46,49,52,99,48,45,49,46,53,49,45,49,46,49,54,50,45,50,46,52,54,45,51,46,48,49,52,45,50,46,52,54,72,51,46,56,52,51,86,49,51,72,56,46,50,49,122,77,53,46,57,48,56,32,52,46,54,55,52,104,49,46,54,57,54,99,46,57,54,51,32,48,32,49,46,53,49,55,46,52,53,49,32,49,46,53,49,55,32,49,46,50,52,52,32,48,32,46,56,51,52,45,46,54,50,57,32,49,46,51,50,45,49,46,55,51,32,49,46,51,50,72,53,46,57,48,56,86,52,46,54,55,51,122,109,48,32,54,46,55,56,56,86,56,46,53,57,56,104,49,46,55,51,99,49,46,50,49,55,32,48,32,49,46,56,56,46,52,57,50,32,49,46,56,56,32,49,46,52,49,53,32,48,32,46,57,52,51,45,46,54,52,51,32,49,46,52,52,57,45,49,46,56,51,50,32,49,46,52,52,57,72,53,46,57,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,121,112,101,72,49,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,121,112,101,72,49,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,54,51,55,32,49,51,86,51,46,54,54,57,72,55,46,51,55,57,86,55,46,54,50,72,50,46,55,53,56,86,51,46,54,55,72,49,46,53,86,49,51,104,49,46,50,53,56,86,56,46,55,50,56,104,52,46,54,50,86,49,51,104,49,46,50,53,57,122,109,53,46,51,50,57,32,48,86,51,46,54,54,57,104,45,49,46,50,52,52,76,49,48,46,53,32,53,46,51,49,54,118,49,46,50,54,53,108,50,46,49,54,45,49,46,53,54,53,104,46,48,54,50,86,49,51,104,49,46,50,52,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,121,112,101,72,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,121,112,101,72,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,54,51,56,32,49,51,86,51,46,54,54,57,72,54,46,51,56,86,55,46,54,50,72,49,46,55,53,57,86,51,46,54,55,72,46,53,86,49,51,104,49,46,50,53,56,86,56,46,55,50,56,104,52,46,54,50,86,49,51,104,49,46,50,53,57,122,109,51,46,48,50,50,45,54,46,55,51,51,118,45,46,48,52,56,99,48,45,46,56,56,57,46,54,51,45,49,46,54,54,56,32,49,46,55,49,54,45,49,46,54,54,56,46,57,53,55,32,48,32,49,46,54,55,53,46,54,48,56,32,49,46,54,55,53,32,49,46,53,55,50,32,48,32,46,56,53,53,45,46,53,53,52,32,49,46,53,48,52,45,49,46,48,54,55,32,50,46,48,56,53,108,45,51,46,53,49,51,32,51,46,57,57,57,86,49,51,72,49,53,46,53,118,45,49,46,48,57,52,104,45,52,46,50,52,53,118,45,46,48,55,53,108,50,46,52,56,49,45,50,46,56,52,52,99,46,56,55,53,45,46,57,57,56,32,49,46,53,56,54,45,49,46,55,56,52,32,49,46,53,56,54,45,50,46,57,53,51,32,48,45,49,46,52,54,51,45,49,46,49,53,53,45,50,46,53,53,54,45,50,46,57,49,57,45,50,46,53,53,54,45,49,46,57,52,49,32,48,45,50,46,57,54,54,32,49,46,51,50,54,45,50,46,57,54,54,32,50,46,55,52,118,46,48,52,57,104,49,46,50,50,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,121,112,101,72,51,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,121,112,101,72,51,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,54,51,55,32,49,51,86,51,46,54,54,57,72,54,46,51,55,57,86,55,46,54,50,72,49,46,55,53,56,86,51,46,54,55,72,46,53,86,49,51,104,49,46,50,53,56,86,56,46,55,50,56,104,52,46,54,50,86,49,51,104,49,46,50,53,57,122,109,51,46,54,50,53,45,52,46,50,55,50,104,49,46,48,49,56,99,49,46,49,52,50,32,48,32,49,46,57,51,53,46,54,55,32,49,46,57,52,57,32,49,46,54,55,52,46,48,49,51,32,49,46,48,48,53,45,46,55,56,32,49,46,55,51,55,45,50,46,48,49,32,49,46,55,51,45,49,46,48,56,45,46,48,48,55,45,49,46,56,53,51,45,46,53,56,56,45,49,46,57,51,53,45,49,46,51,50,72,57,46,49,48,56,99,46,48,54,57,32,49,46,51,50,55,32,49,46,50,50,52,32,50,46,51,56,54,32,51,46,48,56,51,32,50,46,51,56,54,32,49,46,57,51,53,32,48,32,51,46,51,52,51,45,49,46,49,53,53,32,51,46,51,48,57,45,50,46,55,56,57,45,46,48,50,55,45,49,46,53,49,45,49,46,50,53,49,45,50,46,49,54,45,50,46,48,51,55,45,50,46,50,52,57,118,45,46,48,54,56,99,46,55,48,52,45,46,49,50,51,32,49,46,55,54,52,45,46,57,49,32,49,46,55,50,51,45,50,46,50,50,57,45,46,48,51,53,45,49,46,51,53,51,45,49,46,49,55,54,45,50,46,52,45,50,46,57,53,52,45,50,46,51,56,53,45,49,46,56,55,51,46,48,48,54,45,50,46,56,53,55,32,49,46,49,54,50,45,50,46,56,57,56,32,50,46,51,53,56,104,49,46,49,57,54,99,46,48,54,50,45,46,54,57,46,55,49,49,45,49,46,50,57,57,32,49,46,54,57,54,45,49,46,50,57,57,46,57,57,56,32,48,32,49,46,54,57,53,46,54,50,50,32,49,46,54,57,53,32,49,46,53,50,53,46,48,48,55,46,57,50,50,45,46,55,49,56,32,49,46,53,57,50,45,49,46,54,57,53,32,49,46,53,57,50,104,45,46,57,54,52,118,49,46,48,55,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,121,112,101,73,116,97,108,105,99,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,121,112,101,73,116,97,108,105,99,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,57,57,49,32,49,49,46,54,55,52,76,57,46,53,51,32,52,46,52,53,53,99,46,49,50,51,45,46,53,57,53,46,50,52,54,45,46,55,49,32,49,46,51,52,55,45,46,56,48,55,108,46,49,49,45,46,53,50,72,55,46,50,49,49,108,45,46,49,49,46,53,50,99,49,46,48,54,46,48,57,54,32,49,46,49,50,56,46,50,49,50,32,49,46,48,48,53,46,56,48,55,76,54,46,53,55,32,49,49,46,54,55,52,99,45,46,49,50,51,46,53,57,53,45,46,50,52,54,46,55,49,45,49,46,51,52,54,46,56,48,54,108,45,46,49,49,46,53,50,104,51,46,55,55,52,108,46,49,49,45,46,53,50,99,45,49,46,48,54,45,46,48,57,53,45,49,46,49,50,57,45,46,50,49,49,45,49,46,48,48,54,45,46,56,48,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,121,112,101,83,116,114,105,107,101,116,104,114,111,117,103,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,121,112,101,83,116,114,105,107,101,116,104,114,111,117,103,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,51,51,51,32,53,46,54,56,54,99,48,32,46,51,49,46,48,56,51,46,53,56,49,46,50,55,46,56,49,52,72,53,46,49,54,54,97,50,46,55,55,54,32,50,46,55,55,54,32,48,32,48,32,49,45,46,48,57,57,45,46,55,54,99,48,45,49,46,54,50,55,32,49,46,52,51,54,45,50,46,55,54,56,32,51,46,52,56,45,50,46,55,54,56,32,49,46,57,54,57,32,48,32,51,46,51,57,32,49,46,49,55,53,32,51,46,52,52,53,32,50,46,56,53,104,45,49,46,50,51,99,45,46,49,49,45,49,46,48,56,45,46,57,54,52,45,49,46,55,52,51,45,50,46,50,53,45,49,46,55,52,51,45,49,46,50,51,32,48,45,50,46,49,56,46,54,48,50,45,50,46,49,56,32,49,46,54,48,55,122,109,50,46,49,57,52,32,55,46,52,55,56,99,45,50,46,49,53,51,32,48,45,51,46,53,56,57,45,49,46,49,48,55,45,51,46,55,48,53,45,50,46,56,49,104,49,46,50,51,99,46,49,52,52,32,49,46,48,54,32,49,46,49,50,57,32,49,46,55,48,51,32,50,46,53,52,52,32,49,46,55,48,51,32,49,46,51,52,32,48,32,50,46,51,49,45,46,55,48,53,32,50,46,51,49,45,49,46,54,55,53,32,48,45,46,56,50,55,45,46,53,52,55,45,49,46,51,55,52,45,49,46,57,49,52,45,49,46,54,55,53,76,56,46,48,52,54,32,56,46,53,72,49,118,45,49,104,49,52,118,49,104,45,51,46,53,48,52,99,46,52,54,56,46,52,51,55,46,54,55,53,46,57,57,52,46,54,55,53,32,49,46,54,57,55,32,48,32,49,46,56,50,54,45,49,46,52,51,54,32,50,46,57,54,55,45,51,46,54,52,52,32,50,46,57,54,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,84,121,112,101,85,110,100,101,114,108,105,110,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,84,121,112,101,85,110,100,101,114,108,105,110,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,53,46,51,49,51,32,51,46,49,51,54,104,45,49,46,50,51,86,57,46,53,52,99,48,32,50,46,49,48,53,32,49,46,52,55,32,51,46,54,50,51,32,51,46,57,49,55,32,51,46,54,50,51,115,51,46,57,49,55,45,49,46,53,49,56,32,51,46,57,49,55,45,51,46,54,50,51,86,51,46,49,51,54,104,45,49,46,50,51,118,54,46,51,50,51,99,48,32,49,46,52,57,45,46,57,55,56,32,50,46,53,55,45,50,46,54,56,55,32,50,46,53,55,45,49,46,55,48,57,32,48,45,50,46,54,56,55,45,49,46,48,56,45,50,46,54,56,55,45,50,46,53,55,86,51,46,49,51,54,122,77,49,50,46,53,32,49,53,104,45,57,118,45,49,104,57,118,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,85,105,67,104,101,99,107,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,85,105,67,104,101,99,107,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,77,50,32,49,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,48,32,56,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,118,45,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,46,56,53,52,45,51,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,45,49,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,108,46,54,52,54,46,54,52,55,32,49,46,54,52,54,45,49,46,54,52,55,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,46,55,48,56,108,45,50,32,50,122,109,48,32,56,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,49,45,49,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,45,46,55,48,56,108,46,54,52,54,46,54,52,55,32,49,46,54,52,54,45,49,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,50,32,50,122,77,55,32,49,48,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,48,45,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,85,105,67,104,101,99,107,115,71,114,105,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,85,105,67,104,101,99,107,115,71,114,105,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,49,48,104,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,118,45,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,109,57,45,57,104,51,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,51,97,49,32,49,32,48,32,48,32,49,45,49,32,49,104,45,51,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,122,109,48,32,57,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,51,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,51,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,104,45,51,122,109,48,45,49,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,51,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,51,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,104,45,51,122,77,50,32,57,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,51,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,51,97,50,32,50,32,48,32,48,32,48,32,50,45,50,118,45,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,55,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,51,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,51,97,50,32,50,32,48,32,48,32,49,45,50,32,50,104,45,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,51,122,77,48,32,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,51,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,51,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,122,109,53,46,51,53,52,46,56,53,52,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,45,46,55,48,56,76,51,32,51,46,55,57,51,108,45,46,54,52,54,45,46,54,52,55,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,108,49,32,49,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,50,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,85,105,82,97,100,105,111,115,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,85,105,82,97,100,105,111,115,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,77,48,32,49,50,97,51,32,51,32,48,32,49,32,49,32,54,32,48,32,51,32,51,32,48,32,48,32,49,45,54,32,48,122,109,55,45,49,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,49,122,109,48,45,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,109,48,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,51,32,49,97,51,32,51,32,48,32,49,32,48,32,48,32,54,32,51,32,51,32,48,32,48,32,48,32,48,45,54,122,109,48,32,52,46,53,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,85,105,82,97,100,105,111,115,71,114,105,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,85,105,82,97,100,105,111,115,71,114,105,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,46,53,32,49,53,97,50,46,53,32,50,46,53,32,48,32,49,32,48,32,48,45,53,32,50,46,53,32,50,46,53,32,48,32,48,32,48,32,48,32,53,122,109,57,45,57,97,50,46,53,32,50,46,53,32,48,32,49,32,48,32,48,45,53,32,50,46,53,32,50,46,53,32,48,32,48,32,48,32,48,32,53,122,109,48,32,57,97,50,46,53,32,50,46,53,32,48,32,49,32,49,32,48,45,53,32,50,46,53,32,50,46,53,32,48,32,48,32,49,32,48,32,53,122,77,49,54,32,51,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,49,45,55,32,48,32,51,46,53,32,51,46,53,32,48,32,48,32,49,32,55,32,48,122,109,45,57,32,57,97,51,46,53,32,51,46,53,32,48,32,49,32,49,45,55,32,48,32,51,46,53,32,51,46,53,32,48,32,48,32,49,32,55,32,48,122,109,53,46,53,32,51,46,53,97,51,46,53,32,51,46,53,32,48,32,49,32,48,32,48,45,55,32,51,46,53,32,51,46,53,32,48,32,48,32,48,32,48,32,55,122,109,45,57,45,49,49,97,49,46,53,32,49,46,53,32,48,32,49,32,49,32,48,45,51,32,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,51,122,109,48,32,50,97,51,46,53,32,51,46,53,32,48,32,49,32,48,32,48,45,55,32,51,46,53,32,51,46,53,32,48,32,48,32,48,32,48,32,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,85,110,105,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,85,110,105,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,54,97,46,53,46,53,32,48,32,48,32,48,45,46,52,57,54,46,52,51,56,108,45,46,53,32,52,65,46,53,46,53,32,48,32,48,32,48,32,50,46,53,32,49,49,104,51,118,50,46,48,49,54,99,45,46,56,54,51,46,48,53,53,45,49,46,53,46,50,53,49,45,49,46,53,46,52,56,52,32,48,32,46,50,55,54,46,56,57,53,46,53,32,50,32,46,53,115,50,45,46,50,50,52,32,50,45,46,53,99,48,45,46,50,51,51,45,46,54,51,55,45,46,52,50,57,45,49,46,53,45,46,52,56,52,86,49,49,104,51,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,54,45,46,53,54,50,108,45,46,53,45,52,65,46,53,46,53,32,48,32,48,32,48,32,57,32,54,72,51,122,109,50,32,51,46,55,56,86,55,46,50,50,99,48,45,46,48,57,54,46,49,48,54,45,46,49,53,54,46,49,57,45,46,49,48,54,108,50,46,49,51,32,49,46,50,55,57,97,46,49,50,53,46,49,50,53,32,48,32,48,32,49,32,48,32,46,50,49,52,108,45,50,46,49,51,32,49,46,50,56,65,46,49,50,53,46,49,50,53,32,48,32,48,32,49,32,53,32,57,46,55,55,56,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,50,32,49,52,86,52,46,53,76,55,46,53,32,48,72,50,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,56,97,50,32,50,32,48,32,48,32,48,32,50,45,50,122,77,55,46,53,32,51,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,57,32,52,46,53,104,50,86,49,52,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,53,46,53,118,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,85,110,108,111,99,107,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,85,110,108,111,99,107,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,49,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,52,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,53,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,57,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,53,86,51,97,51,32,51,32,48,32,48,32,49,32,54,32,48,118,52,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,77,51,32,56,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,53,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,54,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,57,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,85,110,108,111,99,107,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,85,110,108,111,99,107,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,32,49,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,52,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,53,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,57,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,53,86,51,97,51,32,51,32,48,32,48,32,49,32,54,32,48,118,52,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,85,112,99,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,85,112,99,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,55,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,55,122,109,50,32,48,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,55,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,55,122,109,50,32,48,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,55,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,55,122,109,50,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,55,122,109,51,32,48,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,55,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,85,112,99,83,99,97,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,85,112,99,83,99,97,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,53,32,48,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,122,77,49,49,32,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,49,46,53,118,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,77,46,53,32,49,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,52,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,109,49,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,51,32,52,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,55,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,55,122,109,50,32,48,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,55,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,55,122,109,50,32,48,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,55,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,55,122,109,50,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,55,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,104,45,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,118,45,55,122,109,51,32,48,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,55,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,85,112,108,111,97,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,85,112,108,111,97,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,53,32,57,46,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,50,46,53,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,50,46,53,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,55,46,54,52,54,32,49,46,49,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,51,32,51,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,46,53,32,50,46,55,48,55,86,49,49,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,50,46,55,48,55,76,53,46,51,53,52,32,52,46,56,53,52,97,46,53,46,53,32,48,32,49,32,49,45,46,55,48,56,45,46,55,48,56,108,51,45,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,86,101,99,116,111,114,80,101,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,86,101,99,116,111,114,80,101,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,49,48,46,54,52,54,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,52,32,52,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,108,45,49,46,57,48,50,32,49,46,57,48,50,45,46,56,50,57,32,51,46,51,49,51,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,48,50,52,32,49,46,48,55,51,76,49,46,50,53,52,32,49,52,46,55,52,54,32,52,46,51,53,56,32,52,46,52,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,53,46,52,51,32,51,46,51,55,55,108,51,46,51,49,51,45,46,56,50,56,76,49,48,46,54,52,54,46,54,52,54,122,109,45,49,46,56,32,50,46,57,48,56,108,45,51,46,49,55,51,46,55,57,51,97,46,53,46,53,32,48,32,48,32,48,45,46,51,53,56,46,51,52,50,108,45,50,46,53,55,32,56,46,53,54,53,32,56,46,53,54,55,45,50,46,53,55,97,46,53,46,53,32,48,32,48,32,48,32,46,51,52,45,46,51,53,55,108,46,55,57,52,45,51,46,49,55,52,45,51,46,54,45,51,46,54,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,50,46,56,51,50,32,49,51,46,50,50,56,76,56,32,57,97,49,32,49,32,48,32,49,32,48,45,49,45,49,108,45,52,46,50,50,56,32,53,46,49,54,56,45,46,48,50,54,46,48,56,54,46,48,56,54,45,46,48,50,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,86,105,101,119,76,105,115,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,86,105,101,119,76,105,115,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,52,46,53,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,51,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,109,48,32,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,51,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,122,77,49,32,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,51,65,46,53,46,53,32,48,32,48,32,49,32,49,32,50,122,109,48,32,49,50,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,49,51,65,46,53,46,53,32,48,32,48,32,49,32,49,32,49,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,86,105,101,119,83,116,97,99,107,101,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,86,105,101,119,83,116,97,99,107,101,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,48,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,51,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,50,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,109,48,32,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,51,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,50,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,122,109,48,32,56,104,49,48,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,51,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,51,97,50,32,50,32,48,32,48,32,49,45,50,45,50,118,45,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,122,109,48,32,49,97,49,32,49,32,48,32,48,32,48,45,49,32,49,118,51,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,48,97,49,32,49,32,48,32,48,32,48,32,49,45,49,118,45,51,97,49,32,49,32,48,32,48,32,48,45,49,45,49,72,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,86,105,110,121,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,86,105,110,121,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,32,54,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,122,77,52,32,56,97,52,32,52,32,48,32,49,32,49,32,56,32,48,32,52,32,52,32,48,32,48,32,49,45,56,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,57,32,56,97,49,32,49,32,48,32,49,32,49,45,50,32,48,32,49,32,49,32,48,32,48,32,49,32,50,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,86,105,110,121,108,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,86,105,110,121,108,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,54,97,50,32,50,32,48,32,49,32,48,32,48,32,52,32,50,32,50,32,48,32,48,32,48,32,48,45,52,122,109,48,32,51,97,49,32,49,32,48,32,49,32,49,32,48,45,50,32,49,32,49,32,48,32,48,32,49,32,48,32,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,52,32,56,97,52,32,52,32,48,32,49,32,48,32,56,32,48,32,52,32,52,32,48,32,48,32,48,45,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,86,111,105,99,101,109,97,105,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,86,111,105,99,101,109,97,105,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,32,56,46,53,65,51,46,52,57,32,51,46,52,57,32,48,32,48,32,49,32,53,46,57,53,32,49,49,104,52,46,49,97,51,46,53,32,51,46,53,32,48,32,49,32,49,32,50,46,52,53,32,49,104,45,57,65,51,46,53,32,51,46,53,32,48,32,49,32,49,32,55,32,56,46,53,122,109,45,54,32,48,97,50,46,53,32,50,46,53,32,48,32,49,32,48,32,53,32,48,32,50,46,53,32,50,46,53,32,48,32,48,32,48,45,53,32,48,122,109,49,52,32,48,97,50,46,53,32,50,46,53,32,48,32,49,32,48,45,53,32,48,32,50,46,53,32,50,46,53,32,48,32,48,32,48,32,53,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,86,111,108,117,109,101,68,111,119,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,32,52,97,46,53,46,53,32,48,32,48,32,48,45,46,56,49,50,45,46,51,57,76,53,46,56,50,53,32,53,46,53,72,51,46,53,65,46,53,46,53,32,48,32,48,32,48,32,51,32,54,118,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,50,46,51,50,53,108,50,46,51,54,51,32,49,46,56,57,65,46,53,46,53,32,48,32,48,32,48,32,57,32,49,50,86,52,122,77,54,46,51,49,50,32,54,46,51,57,76,56,32,53,46,48,52,118,53,46,57,50,76,54,46,51,49,50,32,57,46,54,49,65,46,53,46,53,32,48,32,48,32,48,32,54,32,57,46,53,72,52,118,45,51,104,50,97,46,53,46,53,32,48,32,48,32,48,32,46,51,49,50,45,46,49,49,122,77,49,50,46,48,50,53,32,56,97,52,46,52,56,54,32,52,46,52,56,54,32,48,32,48,32,49,45,49,46,51,49,56,32,51,46,49,56,50,76,49,48,32,49,48,46,52,55,53,65,51,46,52,56,57,32,51,46,52,56,57,32,48,32,48,32,48,32,49,49,46,48,50,53,32,56,32,51,46,52,57,32,51,46,52,57,32,48,32,48,32,48,32,49,48,32,53,46,53,50,53,108,46,55,48,55,45,46,55,48,55,65,52,46,52,56,54,32,52,46,52,56,54,32,48,32,48,32,49,32,49,50,46,48,50,53,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,86,111,108,117,109,101,68,111,119,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,32,52,97,46,53,46,53,32,48,32,48,32,48,45,46,56,49,50,45,46,51,57,76,53,46,56,50,53,32,53,46,53,72,51,46,53,65,46,53,46,53,32,48,32,48,32,48,32,51,32,54,118,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,50,46,51,50,53,108,50,46,51,54,51,32,49,46,56,57,65,46,53,46,53,32,48,32,48,32,48,32,57,32,49,50,86,52,122,109,51,46,48,50,53,32,52,97,52,46,52,56,54,32,52,46,52,56,54,32,48,32,48,32,49,45,49,46,51,49,56,32,51,46,49,56,50,76,49,48,32,49,48,46,52,55,53,65,51,46,52,56,57,32,51,46,52,56,57,32,48,32,48,32,48,32,49,49,46,48,50,53,32,56,32,51,46,52,57,32,51,46,52,57,32,48,32,48,32,48,32,49,48,32,53,46,53,50,53,108,46,55,48,55,45,46,55,48,55,65,52,46,52,56,54,32,52,46,52,56,54,32,48,32,48,32,49,32,49,50,46,48,50,53,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,86,111,108,117,109,101,77,117,116,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,55,49,55,32,51,46,53,53,65,46,53,46,53,32,48,32,48,32,49,32,55,32,52,118,56,97,46,53,46,53,32,48,32,48,32,49,45,46,56,49,50,46,51,57,76,51,46,56,50,53,32,49,48,46,53,72,49,46,53,65,46,53,46,53,32,48,32,48,32,49,32,49,32,49,48,86,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,46,51,50,53,108,50,46,51,54,51,45,49,46,56,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,50,57,45,46,48,54,122,77,54,32,53,46,48,52,76,52,46,51,49,50,32,54,46,51,57,65,46,53,46,53,32,48,32,48,32,49,32,52,32,54,46,53,72,50,118,51,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,51,49,50,46,49,49,76,54,32,49,48,46,57,54,86,53,46,48,52,122,109,55,46,56,53,52,46,54,48,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,76,49,50,46,50,48,55,32,56,108,49,46,54,52,55,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,49,49,46,53,32,56,46,55,48,55,108,45,49,46,54,52,54,32,49,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,48,46,55,57,51,32,56,32,57,46,49,52,54,32,54,46,51,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,49,49,46,53,32,55,46,50,57,51,108,49,46,54,52,54,45,49,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,86,111,108,117,109,101,77,117,116,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,54,46,55,49,55,32,51,46,53,53,65,46,53,46,53,32,48,32,48,32,49,32,55,32,52,118,56,97,46,53,46,53,32,48,32,48,32,49,45,46,56,49,50,46,51,57,76,51,46,56,50,53,32,49,48,46,53,72,49,46,53,65,46,53,46,53,32,48,32,48,32,49,32,49,32,49,48,86,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,46,51,50,53,108,50,46,51,54,51,45,49,46,56,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,50,57,45,46,48,54,122,109,55,46,49,51,55,32,50,46,48,57,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,76,49,50,46,50,48,55,32,56,108,49,46,54,52,55,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,49,49,46,53,32,56,46,55,48,55,108,45,49,46,54,52,54,32,49,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,49,48,46,55,57,51,32,56,32,57,46,49,52,54,32,54,46,51,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,76,49,49,46,53,32,55,46,50,57,51,108,49,46,54,52,54,45,49,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,86,111,108,117,109,101,79,102,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,86,111,108,117,109,101,79,102,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,55,49,55,32,51,46,53,53,65,46,53,46,53,32,48,32,48,32,49,32,49,49,32,52,118,56,97,46,53,46,53,32,48,32,48,32,49,45,46,56,49,50,46,51,57,76,55,46,56,50,53,32,49,48,46,53,72,53,46,53,65,46,53,46,53,32,48,32,48,32,49,32,53,32,49,48,86,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,46,51,50,53,108,50,46,51,54,51,45,49,46,56,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,50,57,45,46,48,54,122,77,49,48,32,53,46,48,52,76,56,46,51,49,50,32,54,46,51,57,65,46,53,46,53,32,48,32,48,32,49,32,56,32,54,46,53,72,54,118,51,104,50,97,46,53,46,53,32,48,32,48,32,49,32,46,51,49,50,46,49,49,76,49,48,32,49,48,46,57,54,86,53,46,48,52,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,86,111,108,117,109,101,79,102,102,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,86,111,108,117,109,101,79,102,102,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,55,49,55,32,51,46,53,53,65,46,53,46,53,32,48,32,48,32,49,32,49,49,32,52,118,56,97,46,53,46,53,32,48,32,48,32,49,45,46,56,49,50,46,51,57,76,55,46,56,50,53,32,49,48,46,53,72,53,46,53,65,46,53,46,53,32,48,32,48,32,49,32,53,32,49,48,86,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,46,51,50,53,108,50,46,51,54,51,45,49,46,56,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,50,57,45,46,48,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,86,111,108,117,109,101,85,112,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,86,111,108,117,109,101,85,112,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,53,51,54,32,49,52,46,48,49,65,56,46,52,55,51,32,56,46,52,55,51,32,48,32,48,32,48,32,49,52,46,48,50,54,32,56,97,56,46,52,55,51,32,56,46,52,55,51,32,48,32,48,32,48,45,50,46,52,57,45,54,46,48,49,108,45,46,55,48,56,46,55,48,55,65,55,46,52,55,54,32,55,46,52,55,54,32,48,32,48,32,49,32,49,51,46,48,50,53,32,56,99,48,32,50,46,48,55,49,45,46,56,52,32,51,46,57,52,54,45,50,46,49,57,55,32,53,46,51,48,51,108,46,55,48,56,46,55,48,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,49,50,49,32,49,50,46,53,57,54,65,54,46,52,56,32,54,46,52,56,32,48,32,48,32,48,32,49,50,46,48,50,53,32,56,97,54,46,52,56,32,54,46,52,56,32,48,32,48,32,48,45,49,46,57,48,52,45,52,46,53,57,54,108,45,46,55,48,55,46,55,48,55,65,53,46,52,56,51,32,53,46,52,56,51,32,48,32,48,32,49,32,49,49,46,48,50,53,32,56,97,53,46,52,56,51,32,53,46,52,56,51,32,48,32,48,32,49,45,49,46,54,49,32,51,46,56,57,108,46,55,48,54,46,55,48,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,48,50,53,32,56,97,52,46,52,56,54,32,52,46,52,56,54,32,48,32,48,32,49,45,49,46,51,49,56,32,51,46,49,56,50,76,56,32,49,48,46,52,55,53,65,51,46,52,56,57,32,51,46,52,56,57,32,48,32,48,32,48,32,57,46,48,50,53,32,56,99,48,45,46,57,54,54,45,46,51,57,50,45,49,46,56,52,49,45,49,46,48,50,53,45,50,46,52,55,53,108,46,55,48,55,45,46,55,48,55,65,52,46,52,56,54,32,52,46,52,56,54,32,48,32,48,32,49,32,49,48,46,48,50,53,32,56,122,77,55,32,52,97,46,53,46,53,32,48,32,48,32,48,45,46,56,49,50,45,46,51,57,76,51,46,56,50,53,32,53,46,53,72,49,46,53,65,46,53,46,53,32,48,32,48,32,48,32,49,32,54,118,52,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,50,46,51,50,53,108,50,46,51,54,51,32,49,46,56,57,65,46,53,46,53,32,48,32,48,32,48,32,55,32,49,50,86,52,122,77,52,46,51,49,50,32,54,46,51,57,76,54,32,53,46,48,52,118,53,46,57,50,76,52,46,51,49,50,32,57,46,54,49,65,46,53,46,53,32,48,32,48,32,48,32,52,32,57,46,53,72,50,118,45,51,104,50,97,46,53,46,53,32,48,32,48,32,48,32,46,51,49,50,45,46,49,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,86,111,108,117,109,101,85,112,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,86,111,108,117,109,101,85,112,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,53,51,54,32,49,52,46,48,49,65,56,46,52,55,51,32,56,46,52,55,51,32,48,32,48,32,48,32,49,52,46,48,50,54,32,56,97,56,46,52,55,51,32,56,46,52,55,51,32,48,32,48,32,48,45,50,46,52,57,45,54,46,48,49,108,45,46,55,48,56,46,55,48,55,65,55,46,52,55,54,32,55,46,52,55,54,32,48,32,48,32,49,32,49,51,46,48,50,53,32,56,99,48,32,50,46,48,55,49,45,46,56,52,32,51,46,57,52,54,45,50,46,49,57,55,32,53,46,51,48,51,108,46,55,48,56,46,55,48,55,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,49,50,49,32,49,50,46,53,57,54,65,54,46,52,56,32,54,46,52,56,32,48,32,48,32,48,32,49,50,46,48,50,53,32,56,97,54,46,52,56,32,54,46,52,56,32,48,32,48,32,48,45,49,46,57,48,52,45,52,46,53,57,54,108,45,46,55,48,55,46,55,48,55,65,53,46,52,56,51,32,53,46,52,56,51,32,48,32,48,32,49,32,49,49,46,48,50,53,32,56,97,53,46,52,56,51,32,53,46,52,56,51,32,48,32,48,32,49,45,49,46,54,49,32,51,46,56,57,108,46,55,48,54,46,55,48,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,56,46,55,48,55,32,49,49,46,49,56,50,65,52,46,52,56,54,32,52,46,52,56,54,32,48,32,48,32,48,32,49,48,46,48,50,53,32,56,97,52,46,52,56,54,32,52,46,52,56,54,32,48,32,48,32,48,45,49,46,51,49,56,45,51,46,49,56,50,76,56,32,53,46,53,50,53,65,51,46,52,56,57,32,51,46,52,56,57,32,48,32,48,32,49,32,57,46,48,50,53,32,56,32,51,46,52,57,32,51,46,52,57,32,48,32,48,32,49,32,56,32,49,48,46,52,55,53,108,46,55,48,55,46,55,48,55,122,77,54,46,55,49,55,32,51,46,53,53,65,46,53,46,53,32,48,32,48,32,49,32,55,32,52,118,56,97,46,53,46,53,32,48,32,48,32,49,45,46,56,49,50,46,51,57,76,51,46,56,50,53,32,49,48,46,53,72,49,46,53,65,46,53,46,53,32,48,32,48,32,49,32,49,32,49,48,86,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,50,46,51,50,53,108,50,46,51,54,51,45,49,46,56,57,97,46,53,46,53,32,48,32,48,32,49,32,46,53,50,57,45,46,48,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,86,114,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,86,114,39,44,39,60,112,97,116,104,32,100,61,92,34,77,51,32,49,50,86,52,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,50,46,53,86,50,72,52,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,56,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,50,46,53,118,45,49,72,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,122,109,54,46,53,32,49,118,49,72,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,52,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,57,46,53,118,49,72,49,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,57,46,53,122,77,56,32,49,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,118,49,53,97,46,53,46,53,32,48,32,48,32,49,45,46,53,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,87,97,108,108,101,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,87,97,108,108,101,116,39,44,39,60,112,97,116,104,32,100,61,92,34,77,48,32,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,49,53,118,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,56,46,53,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,50,65,50,46,53,32,50,46,53,32,48,32,48,32,49,32,48,32,49,50,46,53,86,51,122,109,49,32,49,46,55,51,50,86,49,50,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,50,46,53,32,49,52,104,49,50,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,53,72,50,97,49,46,57,57,32,49,46,57,57,32,48,32,48,32,49,45,49,45,46,50,54,56,122,77,49,32,51,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,86,50,72,50,97,49,32,49,32,48,32,48,32,48,45,49,32,49,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,87,97,108,108,101,116,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,87,97,108,108,101,116,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,50,46,49,51,54,46,51,50,54,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,52,32,49,46,55,56,86,51,104,46,53,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,54,32,52,46,53,118,57,97,49,46,53,32,49,46,53,32,48,32,48,32,49,45,49,46,53,32,49,46,53,104,45,49,51,65,49,46,53,32,49,46,53,32,48,32,48,32,49,32,48,32,49,51,46,53,118,45,57,97,49,46,53,32,49,46,53,32,48,32,48,32,49,32,49,46,52,51,50,45,49,46,52,57,57,76,49,50,46,49,51,54,46,51,50,54,122,77,53,46,53,54,50,32,51,72,49,51,86,49,46,55,56,97,46,53,46,53,32,48,32,48,32,48,45,46,54,50,49,45,46,52,56,52,76,53,46,53,54,50,32,51,122,77,49,46,53,32,52,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,57,97,46,53,46,53,32,48,32,48,32,48,32,46,53,46,53,104,49,51,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,118,45,57,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,104,45,49,51,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,87,97,108,108,101,116,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,87,97,108,108,101,116,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,46,53,32,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,48,32,51,46,53,118,50,104,54,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,99,48,32,46,50,53,51,46,48,56,46,54,52,52,46,51,48,54,46,57,53,56,46,50,48,55,46,50,56,56,46,53,53,55,46,53,52,50,32,49,46,49,57,52,46,53,52,50,46,54,51,55,32,48,32,46,57,56,55,45,46,50,53,52,32,49,46,49,57,52,45,46,53,52,50,46,50,50,54,45,46,51,49,52,46,51,48,54,45,46,55,48,53,46,51,48,54,45,46,57,53,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,118,45,50,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,52,46,53,32,50,104,45,49,51,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,54,32,54,46,53,104,45,53,46,53,53,49,97,50,46,54,55,56,32,50,46,54,55,56,32,48,32,48,32,49,45,46,52,52,51,32,49,46,48,52,50,67,57,46,54,49,51,32,56,46,48,56,56,32,56,46,57,54,51,32,56,46,53,32,56,32,56,46,53,99,45,46,57,54,51,32,48,45,49,46,54,49,51,45,46,52,49,50,45,50,46,48,48,54,45,46,57,53,56,65,50,46,54,55,57,32,50,46,54,55,57,32,48,32,48,32,49,32,53,46,53,53,49,32,54,46,53,72,48,118,54,65,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,32,49,52,104,49,51,97,49,46,53,32,49,46,53,32,48,32,48,32,48,32,49,46,53,45,49,46,53,118,45,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,87,97,116,99,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,87,97,116,99,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,53,32,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,118,50,46,53,72,54,97,46,53,46,53,32,48,32,48,32,48,32,48,32,49,104,50,97,46,53,46,53,32,48,32,48,32,48,32,46,53,45,46,53,86,53,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,53,46,54,54,55,32,49,54,67,52,46,55,52,55,32,49,54,32,52,32,49,53,46,50,53,52,32,52,32,49,52,46,51,51,51,118,45,49,46,56,54,65,53,46,57,56,53,32,53,46,57,56,53,32,48,32,48,32,49,32,50,32,56,99,48,45,49,46,55,55,55,46,55,55,50,45,51,46,51,55,52,32,50,45,52,46,52,55,50,86,49,46,54,54,55,67,52,32,46,55,52,55,32,52,46,55,52,54,32,48,32,53,46,54,54,55,32,48,104,52,46,54,54,54,67,49,49,46,50,53,51,32,48,32,49,50,32,46,55,52,54,32,49,50,32,49,46,54,54,55,118,49,46,56,54,97,53,46,57,57,32,53,46,57,57,32,48,32,48,32,49,32,49,46,57,49,56,32,51,46,52,56,46,53,48,50,46,53,48,50,32,48,32,48,32,49,32,46,53,56,50,46,52,57,51,118,49,97,46,53,46,53,32,48,32,48,32,49,45,46,53,56,50,46,52,57,51,65,53,46,57,57,32,53,46,57,57,32,48,32,48,32,49,32,49,50,32,49,50,46,52,55,51,118,49,46,56,54,99,48,32,46,57,50,45,46,55,52,54,32,49,46,54,54,55,45,49,46,54,54,55,32,49,46,54,54,55,72,53,46,54,54,55,122,77,49,51,32,56,65,53,32,53,32,48,32,49,32,48,32,51,32,56,97,53,32,53,32,48,32,48,32,48,32,49,48,32,48,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,87,105,102,105,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,87,105,102,105,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,53,46,51,56,53,32,54,46,49,49,53,97,46,52,56,53,46,52,56,53,32,48,32,48,32,48,45,46,48,52,56,45,46,55,51,54,65,49,50,46,52,52,51,32,49,50,46,52,52,51,32,48,32,48,32,48,32,56,32,51,32,49,50,46,52,52,32,49,50,46,52,52,32,48,32,48,32,48,32,46,54,54,51,32,53,46,51,55,57,97,46,52,56,53,46,52,56,53,32,48,32,48,32,48,45,46,48,52,56,46,55,51,54,46,53,49,56,46,53,49,56,32,48,32,48,32,48,32,46,54,54,56,46,48,53,65,49,49,46,52,52,56,32,49,49,46,52,52,56,32,48,32,48,32,49,32,56,32,52,99,50,46,53,48,55,32,48,32,52,46,56,50,55,46,56,48,50,32,54,46,55,49,55,32,50,46,49,54,52,46,50,48,52,46,49,52,56,46,52,56,57,46,49,51,46,54,54,56,45,46,48,52,57,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,51,46,50,50,57,32,56,46,50,55,49,99,46,50,49,54,45,46,50,49,54,46,49,57,52,45,46,53,55,56,45,46,48,54,51,45,46,55,52,53,65,57,46,52,53,54,32,57,46,52,53,54,32,48,32,48,32,48,32,56,32,54,99,45,49,46,57,48,53,32,48,45,51,46,54,56,46,53,54,45,53,46,49,54,54,32,49,46,53,50,54,97,46,52,56,46,52,56,32,48,32,48,32,48,45,46,48,54,51,46,55,52,53,46,53,50,53,46,53,50,53,32,48,32,48,32,48,32,46,54,53,50,46,48,54,53,65,56,46,52,54,32,56,46,52,54,32,48,32,48,32,49,32,56,32,55,97,56,46,52,54,32,56,46,52,54,32,48,32,48,32,49,32,52,46,53,55,55,32,49,46,51,51,54,99,46,50,48,53,46,49,51,50,46,52,56,46,49,48,56,46,54,53,50,45,46,48,54,53,122,109,45,50,46,49,56,51,32,50,46,49,56,51,99,46,50,50,54,45,46,50,50,54,46,49,56,53,45,46,54,48,53,45,46,49,45,46,55,53,65,54,46,52,55,50,32,54,46,52,55,50,32,48,32,48,32,48,32,56,32,57,99,45,49,46,48,54,32,48,45,50,46,48,54,50,46,50,53,52,45,50,46,57,52,54,46,55,48,52,45,46,50,56,53,46,49,52,53,45,46,51,50,54,46,53,50,52,45,46,49,46,55,53,108,46,48,49,53,46,48,49,53,99,46,49,54,46,49,54,46,52,48,56,46,49,57,46,54,49,49,46,48,57,65,53,46,52,55,56,32,53,46,52,55,56,32,48,32,48,32,49,32,56,32,49,48,99,46,56,54,56,32,48,32,49,46,54,57,46,50,48,49,32,50,46,52,50,46,53,54,46,50,48,51,46,49,46,52,53,46,48,55,46,54,49,49,45,46,48,57,49,108,46,48,49,53,45,46,48,49,53,122,77,57,46,48,54,32,49,50,46,52,52,99,46,49,57,54,45,46,49,57,54,46,49,57,56,45,46,53,50,45,46,48,52,45,46,54,54,65,49,46,57,57,32,49,46,57,57,32,48,32,48,32,48,32,56,32,49,49,46,53,97,49,46,57,57,32,49,46,57,57,32,48,32,48,32,48,45,49,46,48,50,46,50,56,99,45,46,50,51,56,46,49,52,45,46,50,51,54,46,52,54,52,45,46,48,52,46,54,54,108,46,55,48,54,46,55,48,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,46,55,48,55,45,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,87,105,102,105,49,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,87,105,102,105,49,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,48,52,54,32,49,48,46,52,53,52,99,46,50,50,54,45,46,50,50,54,46,49,56,53,45,46,54,48,53,45,46,49,45,46,55,53,65,54,46,52,55,51,32,54,46,52,55,51,32,48,32,48,32,48,32,56,32,57,99,45,49,46,48,54,32,48,45,50,46,48,54,50,46,50,53,52,45,50,46,57,52,54,46,55,48,52,45,46,50,56,53,46,49,52,53,45,46,51,50,54,46,53,50,52,45,46,49,46,55,53,108,46,48,49,53,46,48,49,53,99,46,49,54,46,49,54,46,52,48,55,46,49,57,46,54,49,49,46,48,57,65,53,46,52,55,56,32,53,46,52,55,56,32,48,32,48,32,49,32,56,32,49,48,99,46,56,54,56,32,48,32,49,46,54,57,46,50,48,49,32,50,46,52,50,46,53,54,46,50,48,51,46,49,46,52,53,46,48,55,46,54,49,49,45,46,48,57,49,108,46,48,49,53,45,46,48,49,53,122,77,57,46,48,54,32,49,50,46,52,52,99,46,49,57,54,45,46,49,57,54,46,49,57,56,45,46,53,50,45,46,48,52,45,46,54,54,65,49,46,57,57,32,49,46,57,57,32,48,32,48,32,48,32,56,32,49,49,46,53,97,49,46,57,57,32,49,46,57,57,32,48,32,48,32,48,45,49,46,48,50,46,50,56,99,45,46,50,51,56,46,49,52,45,46,50,51,54,46,52,54,52,45,46,48,52,46,54,54,108,46,55,48,54,46,55,48,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,55,32,48,108,46,55,48,56,45,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,87,105,102,105,50,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,87,105,102,105,50,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,51,46,50,50,57,32,56,46,50,55,49,99,46,50,49,54,45,46,50,49,54,46,49,57,52,45,46,53,55,56,45,46,48,54,51,45,46,55,52,53,65,57,46,52,53,54,32,57,46,52,53,54,32,48,32,48,32,48,32,56,32,54,99,45,49,46,57,48,53,32,48,45,51,46,54,56,46,53,54,45,53,46,49,54,54,32,49,46,53,50,54,97,46,52,56,46,52,56,32,48,32,48,32,48,45,46,48,54,51,46,55,52,53,46,53,50,53,46,53,50,53,32,48,32,48,32,48,32,46,54,53,50,46,48,54,53,65,56,46,52,54,32,56,46,52,54,32,48,32,48,32,49,32,56,32,55,97,56,46,52,54,32,56,46,52,54,32,48,32,48,32,49,32,52,46,53,55,55,32,49,46,51,51,54,99,46,50,48,53,46,49,51,50,46,52,56,46,49,48,56,46,54,53,50,45,46,48,54,53,122,109,45,50,46,49,56,51,32,50,46,49,56,51,99,46,50,50,54,45,46,50,50,54,46,49,56,53,45,46,54,48,53,45,46,49,45,46,55,53,65,54,46,52,55,51,32,54,46,52,55,51,32,48,32,48,32,48,32,56,32,57,99,45,49,46,48,54,32,48,45,50,46,48,54,50,46,50,53,52,45,50,46,57,52,54,46,55,48,52,45,46,50,56,53,46,49,52,53,45,46,51,50,54,46,53,50,52,45,46,49,46,55,53,108,46,48,49,53,46,48,49,53,99,46,49,54,46,49,54,46,52,48,56,46,49,57,46,54,49,49,46,48,57,65,53,46,52,55,56,32,53,46,52,55,56,32,48,32,48,32,49,32,56,32,49,48,99,46,56,54,56,32,48,32,49,46,54,57,46,50,48,49,32,50,46,52,50,46,53,54,46,50,48,51,46,49,46,52,53,46,48,55,46,54,49,49,45,46,48,57,49,108,46,48,49,53,45,46,48,49,53,122,77,57,46,48,54,32,49,50,46,52,52,99,46,49,57,54,45,46,49,57,54,46,49,57,56,45,46,53,50,45,46,48,52,45,46,54,54,65,49,46,57,57,32,49,46,57,57,32,48,32,48,32,48,32,56,32,49,49,46,53,97,49,46,57,57,32,49,46,57,57,32,48,32,48,32,48,45,49,46,48,50,46,50,56,99,45,46,50,51,56,46,49,52,45,46,50,51,54,46,52,54,52,45,46,48,52,46,54,54,108,46,55,48,54,46,55,48,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,32,48,108,46,55,48,55,45,46,55,48,55,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,87,105,102,105,79,102,102,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,87,105,102,105,79,102,102,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,48,46,55,48,54,32,51,46,50,57,52,65,49,50,46,53,52,54,32,49,50,46,53,52,54,32,48,32,48,32,48,32,56,32,51,32,49,50,46,52,52,32,49,50,46,52,52,32,48,32,48,32,48,32,46,54,54,51,32,53,46,51,55,57,97,46,52,56,53,46,52,56,53,32,48,32,48,32,48,45,46,48,52,56,46,55,51,54,46,53,49,56,46,53,49,56,32,48,32,48,32,48,32,46,54,54,56,46,48,53,65,49,49,46,52,52,56,32,49,49,46,52,52,56,32,48,32,48,32,49,32,56,32,52,99,46,54,51,32,48,32,49,46,50,52,57,46,48,53,32,49,46,56,53,50,46,49,52,56,108,46,56,53,52,45,46,56,53,52,122,77,56,32,54,99,45,49,46,57,48,53,32,48,45,51,46,54,56,46,53,54,45,53,46,49,54,54,32,49,46,53,50,54,97,46,52,56,46,52,56,32,48,32,48,32,48,45,46,48,54,51,46,55,52,53,46,53,50,53,46,53,50,53,32,48,32,48,32,48,32,46,54,53,50,46,48,54,53,32,56,46,52,52,56,32,56,46,52,52,56,32,48,32,48,32,49,32,51,46,53,49,45,49,46,50,55,76,56,32,54,122,109,50,46,53,57,54,32,49,46,52,48,52,108,46,55,56,53,45,46,55,56,53,99,46,54,51,46,50,52,32,49,46,50,50,56,46,53,52,53,32,49,46,55,56,53,46,57,48,55,97,46,52,56,50,46,52,56,50,32,48,32,48,32,49,32,46,48,54,51,46,55,52,53,46,53,50,53,46,53,50,53,32,48,32,48,32,49,45,46,54,53,50,46,48,54,53,32,56,46,52,54,50,32,56,46,52,54,50,32,48,32,48,32,48,45,49,46,57,56,45,46,57,51,50,122,77,56,32,49,48,108,46,57,51,52,45,46,57,51,51,97,54,46,52,53,52,32,54,46,52,53,52,32,48,32,48,32,49,32,50,46,48,49,50,46,54,51,55,99,46,50,56,53,46,49,52,53,46,51,50,54,46,53,50,52,46,49,46,55,53,108,45,46,48,49,53,46,48,49,53,97,46,53,51,50,46,53,51,50,32,48,32,48,32,49,45,46,54,49,49,46,48,57,65,53,46,52,55,56,32,53,46,52,55,56,32,48,32,48,32,48,32,56,32,49,48,122,109,52,46,57,48,53,45,52,46,57,48,53,108,46,55,52,55,45,46,55,52,55,99,46,53,57,46,51,32,49,46,49,53,51,46,54,52,53,32,49,46,54,56,53,32,49,46,48,51,97,46,52,56,53,46,52,56,53,32,48,32,48,32,49,32,46,48,52,56,46,55,51,55,46,53,49,56,46,53,49,56,32,48,32,48,32,49,45,46,54,54,56,46,48,53,32,49,49,46,52,57,54,32,49,49,46,52,57,54,32,48,32,48,32,48,45,49,46,56,49,50,45,49,46,48,55,122,77,57,46,48,50,32,49,49,46,55,56,99,46,50,51,56,46,49,52,46,50,51,54,46,52,54,52,46,48,52,46,54,54,108,45,46,55,48,54,46,55,48,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,46,55,48,55,45,46,55,48,55,99,45,46,49,57,53,45,46,49,57,53,45,46,49,57,55,45,46,53,49,56,46,48,52,45,46,54,54,65,49,46,57,57,32,49,46,57,57,32,48,32,48,32,49,32,56,32,49,49,46,53,99,46,51,55,51,32,48,32,46,55,50,50,46,49,48,50,32,49,46,48,50,46,50,56,122,109,52,46,51,53,53,45,57,46,57,48,53,97,46,53,51,46,53,51,32,48,32,49,32,49,32,46,55,53,46,55,53,108,45,49,48,46,55,53,32,49,48,46,55,53,97,46,53,51,46,53,51,32,48,32,48,32,49,45,46,55,53,45,46,55,53,108,49,48,46,55,53,45,49,48,46,55,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,87,105,110,100,111,119,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,87,105,110,100,111,119,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,46,53,32,52,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,32,46,53,46,53,32,48,32,48,32,48,32,48,32,49,122,109,50,45,46,53,97,46,53,46,53,32,48,32,49,32,49,45,49,32,48,32,46,53,46,53,32,48,32,48,32,49,32,49,32,48,122,109,49,32,46,53,97,46,53,46,53,32,48,32,49,32,48,32,48,45,49,32,46,53,46,53,32,48,32,48,32,48,32,48,32,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,50,32,49,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,48,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,51,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,49,51,32,50,118,50,72,49,86,51,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,97,49,32,49,32,48,32,48,32,49,32,49,32,49,122,77,50,32,49,52,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,54,104,49,52,118,55,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,87,114,101,110,99,104,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,87,114,101,110,99,104,39,44,39,60,112,97,116,104,32,100,61,92,34,77,46,49,48,50,32,50,46,50,50,51,65,51,46,48,48,52,32,51,46,48,48,52,32,48,32,48,32,48,32,51,46,55,56,32,53,46,56,57,55,108,54,46,51,52,49,32,54,46,50,53,50,65,51,46,48,48,51,32,51,46,48,48,51,32,48,32,48,32,48,32,49,51,32,49,54,97,51,32,51,32,48,32,49,32,48,45,46,56,53,49,45,53,46,56,55,56,76,53,46,56,57,55,32,51,46,55,56,49,65,51,46,48,48,52,32,51,46,48,48,52,32,48,32,48,32,48,32,50,46,50,50,51,46,49,108,50,46,49,52,49,32,50,46,49,52,50,76,52,32,52,108,45,49,46,55,53,55,46,51,54,52,76,46,49,48,50,32,50,46,50,50,51,122,109,49,51,46,51,55,32,57,46,48,49,57,108,46,53,50,56,46,48,50,54,46,50,56,55,46,52,52,53,46,52,52,53,46,50,56,55,46,48,50,54,46,53,50,57,76,49,53,32,49,51,108,45,46,50,52,50,46,52,55,49,45,46,48,50,54,46,53,50,57,45,46,52,52,53,46,50,56,55,45,46,50,56,55,46,52,52,53,45,46,53,50,57,46,48,50,54,76,49,51,32,49,53,108,45,46,52,55,49,45,46,50,52,50,45,46,53,50,57,45,46,48,50,54,45,46,50,56,55,45,46,52,52,53,45,46,52,52,53,45,46,50,56,55,45,46,48,50,54,45,46,53,50,57,76,49,49,32,49,51,108,46,50,52,50,45,46,52,55,49,46,48,50,54,45,46,53,50,57,46,52,52,53,45,46,50,56,55,46,50,56,55,45,46,52,52,53,46,53,50,57,45,46,48,50,54,76,49,51,32,49,49,108,46,52,55,49,46,50,52,50,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,88,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,88,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,54,52,54,32,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,55,46,50,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,56,108,50,46,54,52,55,32,50,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,56,46,55,48,55,108,45,50,46,54,52,54,32,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,56,32,52,46,54,52,54,32,53,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,88,67,105,114,99,108,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,88,67,105,114,99,108,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,32,49,53,65,55,32,55,32,48,32,49,32,49,32,56,32,49,97,55,32,55,32,48,32,48,32,49,32,48,32,49,52,122,109,48,32,49,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,54,52,54,32,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,55,46,50,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,56,108,50,46,54,52,55,32,50,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,56,46,55,48,55,108,45,50,46,54,52,54,32,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,56,32,52,46,54,52,54,32,53,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,88,67,105,114,99,108,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,88,67,105,114,99,108,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,53,46,51,53,52,32,52,46,54,52,54,97,46,53,46,53,32,48,32,49,32,48,45,46,55,48,56,46,55,48,56,76,55,46,50,57,51,32,56,108,45,50,46,54,52,55,32,50,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,46,55,48,56,76,56,32,56,46,55,48,55,108,50,46,54,52,54,32,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,48,32,46,55,48,56,45,46,55,48,56,76,56,46,55,48,55,32,56,108,50,46,54,52,55,45,50,46,54,52,54,97,46,53,46,53,32,48,32,48,32,48,45,46,55,48,56,45,46,55,48,56,76,56,32,55,46,50,57,51,32,53,46,51,53,52,32,52,46,54,52,54,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,88,68,105,97,109,111,110,100,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,88,68,105,97,109,111,110,100,39,44,39,60,112,97,116,104,32,100,61,92,34,77,55,46,57,56,55,32,49,54,97,49,46,53,50,54,32,49,46,53,50,54,32,48,32,48,32,49,45,49,46,48,55,45,46,52,52,56,76,46,52,53,32,57,46,48,56,50,97,49,46,53,51,49,32,49,46,53,51,49,32,48,32,48,32,49,32,48,45,50,46,49,54,53,76,54,46,57,49,55,46,52,53,97,49,46,53,51,49,32,49,46,53,51,49,32,48,32,48,32,49,32,50,46,49,54,54,32,48,108,54,46,52,54,57,32,54,46,52,54,56,65,49,46,53,50,54,32,49,46,53,50,54,32,48,32,48,32,49,32,49,54,32,56,46,48,49,51,97,49,46,53,50,54,32,49,46,53,50,54,32,48,32,48,32,49,45,46,52,52,56,32,49,46,48,55,108,45,54,46,52,55,32,54,46,52,54,57,65,49,46,53,50,54,32,49,46,53,50,54,32,48,32,48,32,49,32,55,46,57,56,56,32,49,54,122,77,55,46,54,51,57,32,49,46,49,55,76,52,46,55,54,54,32,52,46,48,52,52,32,56,32,55,46,50,55,56,108,51,46,50,51,52,45,51,46,50,51,52,76,56,46,51,54,49,32,49,46,49,55,97,46,53,49,46,53,49,32,48,32,48,32,48,45,46,55,50,50,32,48,122,77,56,46,55,50,50,32,56,108,51,46,50,51,52,32,51,46,50,51,52,32,50,46,56,55,51,45,50,46,56,55,51,99,46,50,45,46,50,46,50,45,46,53,50,51,32,48,45,46,55,50,50,108,45,50,46,56,55,51,45,50,46,56,55,51,76,56,46,55,50,50,32,56,122,77,56,32,56,46,55,50,50,108,45,51,46,50,51,52,32,51,46,50,51,52,32,50,46,56,55,51,32,50,46,56,55,51,99,46,50,46,50,46,53,50,51,46,50,46,55,50,50,32,48,108,50,46,56,55,51,45,50,46,56,55,51,76,56,32,56,46,55,50,50,122,77,55,46,50,55,56,32,56,76,52,46,48,52,52,32,52,46,55,54,54,32,49,46,49,55,32,55,46,54,51,57,97,46,53,49,49,46,53,49,49,32,48,32,48,32,48,32,48,32,46,55,50,50,108,50,46,56,55,52,32,50,46,56,55,51,76,55,46,50,55,56,32,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,88,68,105,97,109,111,110,100,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,88,68,105,97,109,111,110,100,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,57,46,48,53,46,52,51,53,99,45,46,53,56,45,46,53,56,45,49,46,53,50,45,46,53,56,45,50,46,49,32,48,76,52,46,48,52,55,32,51,46,51,51,57,32,56,32,55,46,50,57,51,108,51,46,57,53,52,45,51,46,57,53,52,76,57,46,48,52,57,46,52,51,53,122,109,51,46,54,49,32,51,46,54,49,49,76,56,46,55,48,56,32,56,108,51,46,57,53,52,32,51,46,57,53,52,32,50,46,57,48,52,45,50,46,57,48,53,99,46,53,56,45,46,53,56,46,53,56,45,49,46,53,49,57,32,48,45,50,46,48,57,56,108,45,50,46,57,48,52,45,50,46,57,48,53,122,109,45,46,55,48,54,32,56,46,54,49,52,76,56,32,56,46,55,48,56,108,45,51,46,57,53,52,32,51,46,57,53,52,32,50,46,57,48,53,32,50,46,57,48,52,99,46,53,56,46,53,56,32,49,46,53,49,57,46,53,56,32,50,46,48,57,56,32,48,108,50,46,57,48,53,45,50,46,57,48,52,122,109,45,56,46,54,49,52,45,46,55,48,54,76,55,46,50,57,50,32,56,32,51,46,51,51,57,32,52,46,48,52,54,46,52,51,53,32,54,46,57,53,49,99,45,46,53,56,46,53,56,45,46,53,56,32,49,46,53,49,57,32,48,32,50,46,48,57,56,108,50,46,57,48,52,32,50,46,57,48,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,88,79,99,116,97,103,111,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,88,79,99,116,97,103,111,110,39,44,39,60,112,97,116,104,32,100,61,92,34,77,52,46,53,52,46,49,52,54,65,46,53,46,53,32,48,32,48,32,49,32,52,46,56,57,51,32,48,104,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,49,32,46,51,53,51,46,49,52,54,108,52,46,51,57,52,32,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,49,32,46,49,52,54,46,51,53,51,118,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,49,45,46,49,52,54,46,51,53,51,108,45,52,46,51,57,52,32,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,49,45,46,51,53,51,46,49,52,54,72,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,49,45,46,51,53,51,45,46,49,52,54,76,46,49,52,54,32,49,49,46,52,54,65,46,53,46,53,32,48,32,48,32,49,32,48,32,49,49,46,49,48,55,86,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,49,32,46,49,52,54,45,46,51,53,51,76,52,46,53,52,46,49,52,54,122,77,53,46,49,32,49,76,49,32,53,46,49,118,53,46,56,76,53,46,49,32,49,53,104,53,46,56,108,52,46,49,45,52,46,49,86,53,46,49,76,49,48,46,57,32,49,72,53,46,49,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,54,52,54,32,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,55,46,50,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,56,108,50,46,54,52,55,32,50,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,56,46,55,48,55,108,45,50,46,54,52,54,32,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,56,32,52,46,54,52,54,32,53,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,88,79,99,116,97,103,111,110,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,88,79,99,116,97,103,111,110,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,49,46,52,54,46,49,52,54,65,46,53,46,53,32,48,32,48,32,48,32,49,49,46,49,48,55,32,48,72,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,48,45,46,51,53,51,46,49,52,54,76,46,49,52,54,32,52,46,53,52,65,46,53,46,53,32,48,32,48,32,48,32,48,32,52,46,56,57,51,118,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,48,32,46,49,52,54,46,51,53,51,108,52,46,51,57,52,32,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,48,32,46,51,53,51,46,49,52,54,104,54,46,50,49,52,97,46,53,46,53,32,48,32,48,32,48,32,46,51,53,51,45,46,49,52,54,108,52,46,51,57,52,45,52,46,51,57,52,97,46,53,46,53,32,48,32,48,32,48,32,46,49,52,54,45,46,51,53,51,86,52,46,56,57,51,97,46,53,46,53,32,48,32,48,32,48,45,46,49,52,54,45,46,51,53,51,76,49,49,46,52,54,46,49,52,54,122,109,45,54,46,49,48,54,32,52,46,53,76,56,32,55,46,50,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,56,108,50,46,54,52,55,32,50,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,56,46,55,48,55,108,45,50,46,54,52,54,32,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,56,32,52,46,54,52,54,32,53,46,51,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,88,83,113,117,97,114,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,88,83,113,117,97,114,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,49,52,32,49,97,49,32,49,32,48,32,48,32,49,32,49,32,49,118,49,50,97,49,32,49,32,48,32,48,32,49,45,49,32,49,72,50,97,49,32,49,32,48,32,48,32,49,45,49,45,49,86,50,97,49,32,49,32,48,32,48,32,49,32,49,45,49,104,49,50,122,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,52,46,54,52,54,32,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,55,46,50,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,56,108,50,46,54,52,55,32,50,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,56,46,55,48,55,108,45,50,46,54,52,54,32,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,56,32,52,46,54,52,54,32,53,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,88,83,113,117,97,114,101,70,105,108,108,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,88,83,113,117,97,114,101,70,105,108,108,39,44,39,60,112,97,116,104,32,100,61,92,34,77,50,32,48,97,50,32,50,32,48,32,48,32,48,45,50,32,50,118,49,50,97,50,32,50,32,48,32,48,32,48,32,50,32,50,104,49,50,97,50,32,50,32,48,32,48,32,48,32,50,45,50,86,50,97,50,32,50,32,48,32,48,32,48,45,50,45,50,72,50,122,109,51,46,51,53,52,32,52,46,54,52,54,76,56,32,55,46,50,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,56,108,50,46,54,52,55,32,50,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,56,46,55,48,55,108,45,50,46,54,52,54,32,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,56,32,52,46,54,52,54,32,53,46,51,53,52,97,46,53,46,53,32,48,32,49,32,49,32,46,55,48,56,45,46,55,48,56,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,89,111,117,116,117,98,101,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,89,111,117,116,117,98,101,39,44,39,60,112,97,116,104,32,100,61,92,34,77,56,46,48,53,49,32,49,46,57,57,57,104,46,48,56,57,99,46,56,50,50,46,48,48,51,32,52,46,57,56,55,46,48,51,51,32,54,46,49,49,46,51,51,53,97,50,46,48,49,32,50,46,48,49,32,48,32,48,32,49,32,49,46,52,49,53,32,49,46,52,50,99,46,49,48,49,46,51,56,46,49,55,50,46,56,56,51,46,50,50,32,49,46,52,48,50,108,46,48,49,46,49,48,52,46,48,50,50,46,50,54,46,48,48,56,46,49,48,52,99,46,48,54,53,46,57,49,52,46,48,55,51,32,49,46,55,55,46,48,55,52,32,49,46,57,53,55,118,46,48,55,53,99,45,46,48,48,49,46,49,57,52,45,46,48,49,32,49,46,49,48,56,45,46,48,56,50,32,50,46,48,54,108,45,46,48,48,56,46,49,48,53,45,46,48,48,57,46,49,48,52,99,45,46,48,53,46,53,55,50,45,46,49,50,52,32,49,46,49,52,45,46,50,51,53,32,49,46,53,53,56,97,50,46,48,48,55,32,50,46,48,48,55,32,48,32,48,32,49,45,49,46,52,49,53,32,49,46,52,50,99,45,49,46,49,54,46,51,49,50,45,53,46,53,54,57,46,51,51,52,45,54,46,49,56,46,51,51,53,104,45,46,49,52,50,99,45,46,51,48,57,32,48,45,49,46,53,56,55,45,46,48,48,54,45,50,46,57,50,55,45,46,48,53,50,108,45,46,49,55,45,46,48,48,54,45,46,48,56,55,45,46,48,48,52,45,46,49,55,49,45,46,48,48,55,45,46,49,55,49,45,46,48,48,55,99,45,49,46,49,49,45,46,48,52,57,45,50,46,49,54,55,45,46,49,50,56,45,50,46,54,53,52,45,46,50,54,97,50,46,48,48,55,32,50,46,48,48,55,32,48,32,48,32,49,45,49,46,52,49,53,45,49,46,52,49,57,99,45,46,49,49,49,45,46,52,49,55,45,46,49,56,53,45,46,57,56,54,45,46,50,51,53,45,49,46,53,53,56,76,46,48,57,32,57,46,56,50,108,45,46,48,48,56,45,46,49,48,52,65,51,49,46,52,32,51,49,46,52,32,48,32,48,32,49,32,48,32,55,46,54,56,118,45,46,49,50,50,67,46,48,48,50,32,55,46,51,52,51,46,48,49,32,54,46,54,46,48,54,52,32,53,46,55,56,108,46,48,48,55,45,46,49,48,51,46,48,48,51,45,46,48,53,50,46,48,48,56,45,46,49,48,52,46,48,50,50,45,46,50,54,46,48,49,45,46,49,48,52,99,46,48,52,56,45,46,53,49,57,46,49,49,57,45,49,46,48,50,51,46,50,50,45,49,46,52,48,50,97,50,46,48,48,55,32,50,46,48,48,55,32,48,32,48,32,49,32,49,46,52,49,53,45,49,46,52,50,99,46,52,56,55,45,46,49,51,32,49,46,53,52,52,45,46,50,49,32,50,46,54,53,52,45,46,50,54,108,46,49,55,45,46,48,48,55,46,49,55,50,45,46,48,48,54,46,48,56,54,45,46,48,48,51,46,49,55,49,45,46,48,48,55,65,57,57,46,55,56,56,32,57,57,46,55,56,56,32,48,32,48,32,49,32,55,46,56,53,56,32,50,104,46,49,57,51,122,77,54,46,52,32,53,46,50,48,57,118,52,46,56,49,56,108,52,46,49,53,55,45,50,46,52,48,56,76,54,46,52,32,53,46,50,48,57,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,90,111,111,109,73,110,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,90,111,111,109,73,110,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,46,53,32,49,50,97,53,46,53,32,53,46,53,32,48,32,49,32,48,32,48,45,49,49,32,53,46,53,32,53,46,53,32,48,32,48,32,48,32,48,32,49,49,122,77,49,51,32,54,46,53,97,54,46,53,32,54,46,53,32,48,32,49,32,49,45,49,51,32,48,32,54,46,53,32,54,46,53,32,48,32,48,32,49,32,49,51,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,51,52,52,32,49,49,46,55,52,50,99,46,48,51,46,48,52,46,48,54,50,46,48,55,56,46,48,57,56,46,49,49,53,108,51,46,56,53,32,51,46,56,53,97,49,32,49,32,48,32,48,32,48,32,49,46,52,49,53,45,49,46,52,49,52,108,45,51,46,56,53,45,51,46,56,53,97,49,46,48,48,55,32,49,46,48,48,55,32,48,32,48,32,48,45,46,49,49,53,45,46,49,32,54,46,53,51,56,32,54,46,53,51,56,32,48,32,48,32,49,45,49,46,51,57,56,32,49,46,52,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,46,53,32,51,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,54,104,50,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,72,55,118,50,46,53,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,86,55,72,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,72,54,86,51,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,118,97,114,32,66,73,99,111,110,90,111,111,109,79,117,116,61,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,104,101,108,112,101,114,115,95,109,97,107,101,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,73,99,111,110,41,40,39,90,111,111,109,79,117,116,39,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,54,46,53,32,49,50,97,53,46,53,32,53,46,53,32,48,32,49,32,48,32,48,45,49,49,32,53,46,53,32,53,46,53,32,48,32,48,32,48,32,48,32,49,49,122,77,49,51,32,54,46,53,97,54,46,53,32,54,46,53,32,48,32,49,32,49,45,49,51,32,48,32,54,46,53,32,54,46,53,32,48,32,48,32,49,32,49,51,32,48,122,92,34,47,62,60,112,97,116,104,32,100,61,92,34,77,49,48,46,51,52,52,32,49,49,46,55,52,50,99,46,48,51,46,48,52,46,48,54,50,46,48,55,56,46,48,57,56,46,49,49,53,108,51,46,56,53,32,51,46,56,53,97,49,32,49,32,48,32,48,32,48,32,49,46,52,49,53,45,49,46,52,49,52,108,45,51,46,56,53,45,51,46,56,53,97,49,46,48,48,55,32,49,46,48,48,55,32,48,32,48,32,48,45,46,49,49,53,45,46,49,32,54,46,53,51,56,32,54,46,53,51,56,32,48,32,48,32,49,45,49,46,51,57,56,32,49,46,52,122,92,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,92,34,101,118,101,110,111,100,100,92,34,32,100,61,92,34,77,51,32,54,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,54,97,46,53,46,53,32,48,32,48,32,49,45,46,53,45,46,53,122,92,34,47,62,39,41,59,47,47,32,45,45,45,32,69,78,68,32,65,85,84,79,45,71,69,78,69,82,65,84,69,68,32,70,73,76,69,32,45,45,45,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,116,97,99,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,116,97,99,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,115,116,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,73,99,111,110,115,116,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,101,108,112,101,114,115,95,105,99,111,110,95,98,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,101,108,112,101,114,115,47,105,99,111,110,45,98,97,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,104,101,108,112,101,114,115,47,105,99,111,110,45,98,97,115,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,111,109,105,116,41,40,95,104,101,108,112,101,114,115,95,105,99,111,110,95,98,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,114,111,112,115,44,32,91,39,99,111,110,116,101,110,116,39,44,32,39,115,116,97,99,107,101,100,39,93,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,73,67,79,78,83,84,65,67,75,41,59,32,47,47,32,45,45,45,32,77,97,105,110,32,99,111,109,112,111,110,101,110,116,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,66,73,99,111,110,115,116,97,99,107,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,95,73,67,79,78,83,84,65,67,75,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,44,32,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,95,114,101,102,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,32,61,32,95,114,101,102,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,95,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,95,104,101,108,112,101,114,115,95,105,99,111,110,95,98,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,86,73,99,111,110,66,97,115,101,44,32,40,48,44,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,101,114,103,101,68,97,116,97,41,40,100,97,116,97,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,98,45,105,99,111,110,115,116,97,99,107,39,44,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,112,114,111,112,115,92,110,32,32,32,32,125,41,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,116,97,99,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,112,108,117,103,105,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,112,108,117,103,105,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,111,111,116,115,116,114,97,112,86,117,101,73,99,111,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,111,111,116,115,116,114,97,112,86,117,101,73,99,111,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,99,111,110,115,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,99,111,110,115,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,99,111,110,78,97,109,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,99,111,110,78,97,109,101,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,99,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,116,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,99,111,110,115,116,97,99,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,116,97,99,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,99,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,46,106,115,92,34,41,59,92,110,47,47,32,45,45,45,32,66,69,71,73,78,32,65,85,84,79,45,71,69,78,69,82,65,84,69,68,32,70,73,76,69,32,45,45,45,92,110,47,47,92,110,47,47,32,64,73,99,111,110,115,86,101,114,115,105,111,110,58,32,49,46,50,46,50,92,110,47,47,32,64,71,101,110,101,114,97,116,101,100,58,32,50,48,50,49,45,48,49,45,48,49,84,48,48,58,50,57,58,49,48,46,49,53,55,90,92,110,47,47,92,110,47,47,32,84,104,105,115,32,102,105,108,101,32,105,115,32,103,101,110,101,114,97,116,101,100,32,111,110,32,101,97,99,104,32,98,117,105,108,100,46,32,68,111,32,110,111,116,32,101,100,105,116,32,116,104,105,115,32,102,105,108,101,33,92,110,32,47,47,32,73,99,111,110,32,104,101,108,112,101,114,32,99,111,109,112,111,110,101,110,116,92,110,92,110,32,47,47,32,73,99,111,110,32,115,116,97,99,107,105,110,103,32,99,111,109,112,111,110,101,110,116,92,110,92,110,92,110,32,47,47,32,73,99,111,110,32,99,111,109,112,111,110,101,110,116,32,110,97,109,101,115,32,102,111,114,32,117,115,101,100,32,105,110,32,116,104,101,32,100,111,99,115,92,110,92,110,118,97,114,32,105,99,111,110,78,97,109,101,115,32,61,32,91,47,47,32,66,111,111,116,115,116,114,97,112,86,117,101,32,99,117,115,116,111,109,32,105,99,111,110,32,99,111,109,112,111,110,101,110,116,32,110,97,109,101,115,92,110,39,66,73,99,111,110,66,108,97,110,107,39,44,32,47,47,32,66,111,111,116,115,116,114,97,112,32,105,99,111,110,32,99,111,109,112,111,110,101,110,116,32,110,97,109,101,115,92,110,39,66,73,99,111,110,65,108,97,114,109,39,44,32,39,66,73,99,111,110,65,108,97,114,109,70,105,108,108,39,44,32,39,66,73,99,111,110,65,108,105,103,110,66,111,116,116,111,109,39,44,32,39,66,73,99,111,110,65,108,105,103,110,67,101,110,116,101,114,39,44,32,39,66,73,99,111,110,65,108,105,103,110,69,110,100,39,44,32,39,66,73,99,111,110,65,108,105,103,110,77,105,100,100,108,101,39,44,32,39,66,73,99,111,110,65,108,105,103,110,83,116,97,114,116,39,44,32,39,66,73,99,111,110,65,108,105,103,110,84,111,112,39,44,32,39,66,73,99,111,110,65,108,116,39,44,32,39,66,73,99,111,110,65,112,112,39,44,32,39,66,73,99,111,110,65,112,112,73,110,100,105,99,97,116,111,114,39,44,32,39,66,73,99,111,110,65,114,99,104,105,118,101,39,44,32,39,66,73,99,111,110,65,114,99,104,105,118,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,68,111,119,110,39,44,32,39,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,76,101,102,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,82,105,103,104,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,85,112,39,44,32,39,66,73,99,111,110,65,114,114,111,119,66,97,114,68,111,119,110,39,44,32,39,66,73,99,111,110,65,114,114,111,119,66,97,114,76,101,102,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,66,97,114,82,105,103,104,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,66,97,114,85,112,39,44,32,39,66,73,99,111,110,65,114,114,111,119,67,108,111,99,107,119,105,115,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,67,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,104,111,114,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,68,111,119,110,85,112,39,44,32,39,66,73,99,111,110,65,114,114,111,119,76,101,102,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,76,101,102,116,82,105,103,104,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,104,111,114,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,82,101,112,101,97,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,76,101,102,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,82,105,103,104,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,104,111,114,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,83,104,111,114,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,67,111,110,116,114,97,99,116,39,44,32,39,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,69,120,112,97,110,100,39,44,32,39,66,73,99,111,110,65,114,114,111,119,115,67,111,108,108,97,112,115,101,39,44,32,39,66,73,99,111,110,65,114,114,111,119,115,69,120,112,97,110,100,39,44,32,39,66,73,99,111,110,65,114,114,111,119,115,70,117,108,108,115,99,114,101,101,110,39,44,32,39,66,73,99,111,110,65,114,114,111,119,115,77,111,118,101,39,44,32,39,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,39,44,32,39,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,70,105,108,108,39,44,32,39,66,73,99,111,110,65,115,116,101,114,105,115,107,39,44,32,39,66,73,99,111,110,65,116,39,44,32,39,66,73,99,111,110,65,119,97,114,100,39,44,32,39,66,73,99,111,110,65,119,97,114,100,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,99,107,39,44,32,39,66,73,99,111,110,66,97,99,107,115,112,97,99,101,39,44,32,39,66,73,99,111,110,66,97,99,107,115,112,97,99,101,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,39,44,32,39,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,100,103,101,52,107,39,44,32,39,66,73,99,111,110,66,97,100,103,101,52,107,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,100,103,101,56,107,39,44,32,39,66,73,99,111,110,66,97,100,103,101,56,107,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,100,103,101,65,100,39,44,32,39,66,73,99,111,110,66,97,100,103,101,65,100,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,100,103,101,67,99,39,44,32,39,66,73,99,111,110,66,97,100,103,101,67,99,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,100,103,101,72,100,39,44,32,39,66,73,99,111,110,66,97,100,103,101,72,100,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,100,103,101,84,109,39,44,32,39,66,73,99,111,110,66,97,100,103,101,84,109,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,100,103,101,86,111,39,44,32,39,66,73,99,111,110,66,97,100,103,101,86,111,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,103,39,44,32,39,66,73,99,111,110,66,97,103,67,104,101,99,107,39,44,32,39,66,73,99,111,110,66,97,103,67,104,101,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,103,68,97,115,104,39,44,32,39,66,73,99,111,110,66,97,103,68,97,115,104,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,103,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,103,80,108,117,115,39,44,32,39,66,73,99,111,110,66,97,103,80,108,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,103,88,39,44,32,39,66,73,99,111,110,66,97,103,88,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,114,67,104,97,114,116,39,44,32,39,66,73,99,111,110,66,97,114,67,104,97,114,116,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,39,44,32,39,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,114,67,104,97,114,116,83,116,101,112,115,39,44,32,39,66,73,99,111,110,66,97,115,107,101,116,39,44,32,39,66,73,99,111,110,66,97,115,107,101,116,50,39,44,32,39,66,73,99,111,110,66,97,115,107,101,116,50,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,115,107,101,116,51,39,44,32,39,66,73,99,111,110,66,97,115,107,101,116,51,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,115,107,101,116,70,105,108,108,39,44,32,39,66,73,99,111,110,66,97,116,116,101,114,121,39,44,32,39,66,73,99,111,110,66,97,116,116,101,114,121,67,104,97,114,103,105,110,103,39,44,32,39,66,73,99,111,110,66,97,116,116,101,114,121,70,117,108,108,39,44,32,39,66,73,99,111,110,66,97,116,116,101,114,121,72,97,108,102,39,44,32,39,66,73,99,111,110,66,101,108,108,39,44,32,39,66,73,99,111,110,66,101,108,108,70,105,108,108,39,44,32,39,66,73,99,111,110,66,101,122,105,101,114,39,44,32,39,66,73,99,111,110,66,101,122,105,101,114,50,39,44,32,39,66,73,99,111,110,66,105,99,121,99,108,101,39,44,32,39,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,39,44,32,39,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,70,105,108,108,39,44,32,39,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,76,101,102,116,39,44,32,39,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,82,105,103,104,116,39,44,32,39,66,73,99,111,110,66,111,111,107,39,44,32,39,66,73,99,111,110,66,111,111,107,70,105,108,108,39,44,32,39,66,73,99,111,110,66,111,111,107,72,97,108,102,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,70,105,108,108,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,70,105,108,108,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,70,105,108,108,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,70,105,108,108,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,88,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,88,70,105,108,108,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,115,39,44,32,39,66,73,99,111,110,66,111,111,107,109,97,114,107,115,70,105,108,108,39,44,32,39,66,73,99,111,110,66,111,111,107,115,104,101,108,102,39,44,32,39,66,73,99,111,110,66,111,111,116,115,116,114,97,112,39,44,32,39,66,73,99,111,110,66,111,111,116,115,116,114,97,112,70,105,108,108,39,44,32,39,66,73,99,111,110,66,111,111,116,115,116,114,97,112,82,101,98,111,111,116,39,44,32,39,66,73,99,111,110,66,111,114,100,101,114,83,116,121,108,101,39,44,32,39,66,73,99,111,110,66,111,114,100,101,114,87,105,100,116,104,39,44,32,39,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,39,44,32,39,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,67,105,114,99,108,101,115,39,44,32,39,66,73,99,111,110,66,111,120,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,76,101,102,116,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,82,105,103,104,116,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,76,101,102,116,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,82,105,103,104,116,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,76,101,102,116,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,82,105,103,104,116,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,76,101,102,116,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,82,105,103,104,116,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,76,101,102,116,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,82,105,103,104,116,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,76,101,102,116,39,44,32,39,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,82,105,103,104,116,39,44,32,39,66,73,99,111,110,66,111,120,83,101,97,109,39,44,32,39,66,73,99,111,110,66,114,97,99,101,115,39,44,32,39,66,73,99,111,110,66,114,105,99,107,115,39,44,32,39,66,73,99,111,110,66,114,105,101,102,99,97,115,101,39,44,32,39,66,73,99,111,110,66,114,105,101,102,99,97,115,101,70,105,108,108,39,44,32,39,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,39,44,32,39,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,70,105,108,108,39,44,32,39,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,39,44,32,39,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,70,105,108,108,39,44,32,39,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,39,44,32,39,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,70,105,108,108,39,44,32,39,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,39,44,32,39,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,70,105,108,108,39,44,32,39,66,73,99,111,110,66,114,111,97,100,99,97,115,116,39,44,32,39,66,73,99,111,110,66,114,111,97,100,99,97,115,116,80,105,110,39,44,32,39,66,73,99,111,110,66,114,117,115,104,39,44,32,39,66,73,99,111,110,66,114,117,115,104,70,105,108,108,39,44,32,39,66,73,99,111,110,66,117,99,107,101,116,39,44,32,39,66,73,99,111,110,66,117,99,107,101,116,70,105,108,108,39,44,32,39,66,73,99,111,110,66,117,103,39,44,32,39,66,73,99,111,110,66,117,103,70,105,108,108,39,44,32,39,66,73,99,111,110,66,117,105,108,100,105,110,103,39,44,32,39,66,73,99,111,110,66,117,108,108,115,101,121,101,39,44,32,39,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,39,44,32,39,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,51,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,51,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,52,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,52,69,118,101,110,116,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,52,82,97,110,103,101,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,52,87,101,101,107,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,88,39,44,32,39,66,73,99,111,110,67,97,108,101,110,100,97,114,88,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,109,101,114,97,39,44,32,39,66,73,99,111,110,67,97,109,101,114,97,50,39,44,32,39,66,73,99,111,110,67,97,109,101,114,97,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,39,44,32,39,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,39,44,32,39,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,39,44,32,39,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,112,115,108,111,99,107,39,44,32,39,66,73,99,111,110,67,97,112,115,108,111,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,114,100,67,104,101,99,107,108,105,115,116,39,44,32,39,66,73,99,111,110,67,97,114,100,72,101,97,100,105,110,103,39,44,32,39,66,73,99,111,110,67,97,114,100,73,109,97,103,101,39,44,32,39,66,73,99,111,110,67,97,114,100,76,105,115,116,39,44,32,39,66,73,99,111,110,67,97,114,100,84,101,120,116,39,44,32,39,66,73,99,111,110,67,97,114,101,116,68,111,119,110,39,44,32,39,66,73,99,111,110,67,97,114,101,116,68,111,119,110,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,114,101,116,76,101,102,116,39,44,32,39,66,73,99,111,110,67,97,114,101,116,76,101,102,116,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,39,44,32,39,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,114,101,116,85,112,39,44,32,39,66,73,99,111,110,67,97,114,101,116,85,112,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,114,116,39,44,32,39,66,73,99,111,110,67,97,114,116,50,39,44,32,39,66,73,99,111,110,67,97,114,116,51,39,44,32,39,66,73,99,111,110,67,97,114,116,52,39,44,32,39,66,73,99,111,110,67,97,114,116,67,104,101,99,107,39,44,32,39,66,73,99,111,110,67,97,114,116,67,104,101,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,114,116,68,97,115,104,39,44,32,39,66,73,99,111,110,67,97,114,116,68,97,115,104,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,114,116,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,114,116,80,108,117,115,39,44,32,39,66,73,99,111,110,67,97,114,116,80,108,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,114,116,88,39,44,32,39,66,73,99,111,110,67,97,114,116,88,70,105,108,108,39,44,32,39,66,73,99,111,110,67,97,115,104,39,44,32,39,66,73,99,111,110,67,97,115,104,83,116,97,99,107,39,44,32,39,66,73,99,111,110,67,97,115,116,39,44,32,39,66,73,99,111,110,67,104,97,116,39,44,32,39,66,73,99,111,110,67,104,97,116,68,111,116,115,39,44,32,39,66,73,99,111,110,67,104,97,116,68,111,116,115,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,97,116,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,97,116,76,101,102,116,39,44,32,39,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,39,44,32,39,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,97,116,76,101,102,116,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,39,44,32,39,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,39,44,32,39,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,97,116,81,117,111,116,101,39,44,32,39,66,73,99,111,110,67,104,97,116,81,117,111,116,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,97,116,82,105,103,104,116,39,44,32,39,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,39,44,32,39,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,97,116,82,105,103,104,116,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,39,44,32,39,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,39,44,32,39,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,39,44,32,39,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,39,44,32,39,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,39,44,32,39,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,97,116,84,101,120,116,39,44,32,39,66,73,99,111,110,67,104,97,116,84,101,120,116,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,101,99,107,39,44,32,39,66,73,99,111,110,67,104,101,99,107,50,39,44,32,39,66,73,99,111,110,67,104,101,99,107,50,65,108,108,39,44,32,39,66,73,99,111,110,67,104,101,99,107,50,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,67,104,101,99,107,50,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,67,104,101,99,107,65,108,108,39,44,32,39,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,67,111,110,116,114,97,99,116,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,68,111,119,110,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,69,120,112,97,110,100,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,76,101,102,116,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,82,105,103,104,116,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,85,112,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,68,111,119,110,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,76,101,102,116,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,82,105,103,104,116,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,85,112,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,67,111,110,116,114,97,99,116,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,68,111,119,110,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,76,101,102,116,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,82,105,103,104,116,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,85,112,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,68,111,119,110,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,69,120,112,97,110,100,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,76,101,102,116,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,82,105,103,104,116,39,44,32,39,66,73,99,111,110,67,104,101,118,114,111,110,85,112,39,44,32,39,66,73,99,111,110,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,67,105,114,99,108,101,72,97,108,102,39,44,32,39,66,73,99,111,110,67,105,114,99,108,101,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,67,108,105,112,98,111,97,114,100,39,44,32,39,66,73,99,111,110,67,108,105,112,98,111,97,114,100,67,104,101,99,107,39,44,32,39,66,73,99,111,110,67,108,105,112,98,111,97,114,100,68,97,116,97,39,44,32,39,66,73,99,111,110,67,108,105,112,98,111,97,114,100,77,105,110,117,115,39,44,32,39,66,73,99,111,110,67,108,105,112,98,111,97,114,100,80,108,117,115,39,44,32,39,66,73,99,111,110,67,108,105,112,98,111,97,114,100,88,39,44,32,39,66,73,99,111,110,67,108,111,99,107,39,44,32,39,66,73,99,111,110,67,108,111,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,67,108,111,99,107,72,105,115,116,111,114,121,39,44,32,39,66,73,99,111,110,67,108,111,117,100,39,44,32,39,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,39,44,32,39,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,70,105,108,108,39,44,32,39,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,39,44,32,39,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,70,105,108,108,39,44,32,39,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,39,44,32,39,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,39,44,32,39,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,70,105,108,108,39,44,32,39,66,73,99,111,110,67,108,111,117,100,70,105,108,108,39,44,32,39,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,39,44,32,39,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,67,108,111,117,100,80,108,117,115,39,44,32,39,66,73,99,111,110,67,108,111,117,100,80,108,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,39,44,32,39,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,70,105,108,108,39,44,32,39,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,39,44,32,39,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,70,105,108,108,39,44,32,39,66,73,99,111,110,67,111,100,101,39,44,32,39,66,73,99,111,110,67,111,100,101,83,108,97,115,104,39,44,32,39,66,73,99,111,110,67,111,100,101,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,39,44,32,39,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,70,105,108,108,39,44,32,39,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,39,44,32,39,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,70,105,108,108,39,44,32,39,66,73,99,111,110,67,111,108,117,109,110,115,39,44,32,39,66,73,99,111,110,67,111,108,117,109,110,115,71,97,112,39,44,32,39,66,73,99,111,110,67,111,109,109,97,110,100,39,44,32,39,66,73,99,111,110,67,111,109,112,97,115,115,39,44,32,39,66,73,99,111,110,67,111,109,112,97,115,115,70,105,108,108,39,44,32,39,66,73,99,111,110,67,111,110,101,39,44,32,39,66,73,99,111,110,67,111,110,101,83,116,114,105,112,101,100,39,44,32,39,66,73,99,111,110,67,111,110,116,114,111,108,108,101,114,39,44,32,39,66,73,99,111,110,67,112,117,39,44,32,39,66,73,99,111,110,67,112,117,70,105,108,108,39,44,32,39,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,39,44,32,39,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,39,44,32,39,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,39,44,32,39,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,70,105,108,108,39,44,32,39,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,70,105,108,108,39,44,32,39,66,73,99,111,110,67,114,111,112,39,44,32,39,66,73,99,111,110,67,117,112,39,44,32,39,66,73,99,111,110,67,117,112,70,105,108,108,39,44,32,39,66,73,99,111,110,67,117,112,83,116,114,97,119,39,44,32,39,66,73,99,111,110,67,117,114,115,111,114,39,44,32,39,66,73,99,111,110,67,117,114,115,111,114,70,105,108,108,39,44,32,39,66,73,99,111,110,67,117,114,115,111,114,84,101,120,116,39,44,32,39,66,73,99,111,110,68,97,115,104,39,44,32,39,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,68,105,97,103,114,97,109,50,39,44,32,39,66,73,99,111,110,68,105,97,103,114,97,109,50,70,105,108,108,39,44,32,39,66,73,99,111,110,68,105,97,103,114,97,109,51,39,44,32,39,66,73,99,111,110,68,105,97,103,114,97,109,51,70,105,108,108,39,44,32,39,66,73,99,111,110,68,105,97,109,111,110,100,39,44,32,39,66,73,99,111,110,68,105,97,109,111,110,100,70,105,108,108,39,44,32,39,66,73,99,111,110,68,105,97,109,111,110,100,72,97,108,102,39,44,32,39,66,73,99,111,110,68,105,99,101,49,39,44,32,39,66,73,99,111,110,68,105,99,101,49,70,105,108,108,39,44,32,39,66,73,99,111,110,68,105,99,101,50,39,44,32,39,66,73,99,111,110,68,105,99,101,50,70,105,108,108,39,44,32,39,66,73,99,111,110,68,105,99,101,51,39,44,32,39,66,73,99,111,110,68,105,99,101,51,70,105,108,108,39,44,32,39,66,73,99,111,110,68,105,99,101,52,39,44,32,39,66,73,99,111,110,68,105,99,101,52,70,105,108,108,39,44,32,39,66,73,99,111,110,68,105,99,101,53,39,44,32,39,66,73,99,111,110,68,105,99,101,53,70,105,108,108,39,44,32,39,66,73,99,111,110,68,105,99,101,54,39,44,32,39,66,73,99,111,110,68,105,99,101,54,70,105,108,108,39,44,32,39,66,73,99,111,110,68,105,115,99,39,44,32,39,66,73,99,111,110,68,105,115,99,70,105,108,108,39,44,32,39,66,73,99,111,110,68,105,115,99,111,114,100,39,44,32,39,66,73,99,111,110,68,105,115,112,108,97,121,39,44,32,39,66,73,99,111,110,68,105,115,112,108,97,121,70,105,108,108,39,44,32,39,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,72,111,114,105,122,111,110,116,97,108,39,44,32,39,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,86,101,114,116,105,99,97,108,39,44,32,39,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,39,44,32,39,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,70,105,108,108,39,44,32,39,66,73,99,111,110,68,111,111,114,79,112,101,110,39,44,32,39,66,73,99,111,110,68,111,111,114,79,112,101,110,70,105,108,108,39,44,32,39,66,73,99,111,110,68,111,116,39,44,32,39,66,73,99,111,110,68,111,119,110,108,111,97,100,39,44,32,39,66,73,99,111,110,68,114,111,112,108,101,116,39,44,32,39,66,73,99,111,110,68,114,111,112,108,101,116,70,105,108,108,39,44,32,39,66,73,99,111,110,68,114,111,112,108,101,116,72,97,108,102,39,44,32,39,66,73,99,111,110,69,97,114,98,117,100,115,39,44,32,39,66,73,99,111,110,69,97,115,101,108,39,44,32,39,66,73,99,111,110,69,97,115,101,108,70,105,108,108,39,44,32,39,66,73,99,111,110,69,103,103,39,44,32,39,66,73,99,111,110,69,103,103,70,105,108,108,39,44,32,39,66,73,99,111,110,69,103,103,70,114,105,101,100,39,44,32,39,66,73,99,111,110,69,106,101,99,116,39,44,32,39,66,73,99,111,110,69,106,101,99,116,70,105,108,108,39,44,32,39,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,39,44,32,39,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,70,105,108,108,39,44,32,39,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,39,44,32,39,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,70,105,108,108,39,44,32,39,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,39,44,32,39,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,70,105,108,108,39,44,32,39,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,39,44,32,39,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,70,105,108,108,39,44,32,39,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,39,44,32,39,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,70,105,108,108,39,44,32,39,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,39,44,32,39,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,70,105,108,108,39,44,32,39,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,39,44,32,39,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,70,105,108,108,39,44,32,39,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,39,44,32,39,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,39,44,32,39,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,70,105,108,108,39,44,32,39,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,39,44,32,39,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,70,105,108,108,39,44,32,39,66,73,99,111,110,69,109,111,106,105,87,105,110,107,39,44,32,39,66,73,99,111,110,69,109,111,106,105,87,105,110,107,70,105,108,108,39,44,32,39,66,73,99,111,110,69,110,118,101,108,111,112,101,39,44,32,39,66,73,99,111,110,69,110,118,101,108,111,112,101,70,105,108,108,39,44,32,39,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,39,44,32,39,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,70,105,108,108,39,44,32,39,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,39,44,32,39,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,39,44,32,39,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,39,44,32,39,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,39,44,32,39,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,39,44,32,39,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,39,44,32,39,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,69,120,99,108,117,100,101,39,44,32,39,66,73,99,111,110,69,121,101,39,44,32,39,66,73,99,111,110,69,121,101,70,105,108,108,39,44,32,39,66,73,99,111,110,69,121,101,83,108,97,115,104,39,44,32,39,66,73,99,111,110,69,121,101,83,108,97,115,104,70,105,108,108,39,44,32,39,66,73,99,111,110,69,121,101,103,108,97,115,115,101,115,39,44,32,39,66,73,99,111,110,70,97,99,101,98,111,111,107,39,44,32,39,66,73,99,111,110,70,105,108,101,39,44,32,39,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,39,44,32,39,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,39,44,32,39,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,39,44,32,39,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,39,44,32,39,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,66,114,101,97,107,39,44,32,39,66,73,99,111,110,70,105,108,101,66,114,101,97,107,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,67,104,101,99,107,39,44,32,39,66,73,99,111,110,70,105,108,101,67,104,101,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,67,111,100,101,39,44,32,39,66,73,99,111,110,70,105,108,101,67,111,100,101,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,68,105,102,102,39,44,32,39,66,73,99,111,110,70,105,108,101,68,105,102,102,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,115,101,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,97,115,101,108,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,120,99,101,108,39,44,32,39,66,73,99,111,110,70,105,108,101,69,120,99,101,108,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,70,111,110,116,39,44,32,39,66,73,99,111,110,70,105,108,101,70,111,110,116,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,73,109,97,103,101,39,44,32,39,66,73,99,111,110,70,105,108,101,73,109,97,103,101,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,76,111,99,107,39,44,32,39,66,73,99,111,110,70,105,108,101,76,111,99,107,50,39,44,32,39,66,73,99,111,110,70,105,108,101,76,111,99,107,50,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,76,111,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,39,44,32,39,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,77,105,110,117,115,39,44,32,39,66,73,99,111,110,70,105,108,101,77,105,110,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,77,117,115,105,99,39,44,32,39,66,73,99,111,110,70,105,108,101,77,117,115,105,99,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,39,44,32,39,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,80,108,97,121,39,44,32,39,66,73,99,111,110,70,105,108,101,80,108,97,121,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,80,108,117,115,39,44,32,39,66,73,99,111,110,70,105,108,101,80,108,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,80,111,115,116,39,44,32,39,66,73,99,111,110,70,105,108,101,80,111,115,116,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,80,112,116,39,44,32,39,66,73,99,111,110,70,105,108,101,80,112,116,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,39,44,32,39,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,82,117,108,101,100,39,44,32,39,66,73,99,111,110,70,105,108,101,82,117,108,101,100,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,39,44,32,39,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,39,44,32,39,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,84,101,120,116,39,44,32,39,66,73,99,111,110,70,105,108,101,84,101,120,116,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,87,111,114,100,39,44,32,39,66,73,99,111,110,70,105,108,101,87,111,114,100,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,88,39,44,32,39,66,73,99,111,110,70,105,108,101,88,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,90,105,112,39,44,32,39,66,73,99,111,110,70,105,108,101,90,105,112,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,101,115,39,44,32,39,66,73,99,111,110,70,105,108,101,115,65,108,116,39,44,32,39,66,73,99,111,110,70,105,108,109,39,44,32,39,66,73,99,111,110,70,105,108,116,101,114,39,44,32,39,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,70,105,108,116,101,114,76,101,102,116,39,44,32,39,66,73,99,111,110,70,105,108,116,101,114,82,105,103,104,116,39,44,32,39,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,70,108,97,103,39,44,32,39,66,73,99,111,110,70,108,97,103,70,105,108,108,39,44,32,39,66,73,99,111,110,70,108,111,119,101,114,49,39,44,32,39,66,73,99,111,110,70,108,111,119,101,114,50,39,44,32,39,66,73,99,111,110,70,108,111,119,101,114,51,39,44,32,39,66,73,99,111,110,70,111,108,100,101,114,39,44,32,39,66,73,99,111,110,70,111,108,100,101,114,50,39,44,32,39,66,73,99,111,110,70,111,108,100,101,114,50,79,112,101,110,39,44,32,39,66,73,99,111,110,70,111,108,100,101,114,67,104,101,99,107,39,44,32,39,66,73,99,111,110,70,111,108,100,101,114,70,105,108,108,39,44,32,39,66,73,99,111,110,70,111,108,100,101,114,77,105,110,117,115,39,44,32,39,66,73,99,111,110,70,111,108,100,101,114,80,108,117,115,39,44,32,39,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,39,44,32,39,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,70,105,108,108,39,44,32,39,66,73,99,111,110,70,111,108,100,101,114,88,39,44,32,39,66,73,99,111,110,70,111,110,116,115,39,44,32,39,66,73,99,111,110,70,111,114,119,97,114,100,39,44,32,39,66,73,99,111,110,70,111,114,119,97,114,100,70,105,108,108,39,44,32,39,66,73,99,111,110,70,114,111,110,116,39,44,32,39,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,39,44,32,39,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,69,120,105,116,39,44,32,39,66,73,99,111,110,70,117,110,110,101,108,39,44,32,39,66,73,99,111,110,70,117,110,110,101,108,70,105,108,108,39,44,32,39,66,73,99,111,110,71,101,97,114,39,44,32,39,66,73,99,111,110,71,101,97,114,70,105,108,108,39,44,32,39,66,73,99,111,110,71,101,97,114,87,105,100,101,39,44,32,39,66,73,99,111,110,71,101,97,114,87,105,100,101,67,111,110,110,101,99,116,101,100,39,44,32,39,66,73,99,111,110,71,101,109,39,44,32,39,66,73,99,111,110,71,101,111,39,44,32,39,66,73,99,111,110,71,101,111,65,108,116,39,44,32,39,66,73,99,111,110,71,101,111,65,108,116,70,105,108,108,39,44,32,39,66,73,99,111,110,71,101,111,70,105,108,108,39,44,32,39,66,73,99,111,110,71,105,102,116,39,44,32,39,66,73,99,111,110,71,105,102,116,70,105,108,108,39,44,32,39,66,73,99,111,110,71,105,116,104,117,98,39,44,32,39,66,73,99,111,110,71,108,111,98,101,39,44,32,39,66,73,99,111,110,71,108,111,98,101,50,39,44,32,39,66,73,99,111,110,71,111,111,103,108,101,39,44,32,39,66,73,99,111,110,71,114,97,112,104,68,111,119,110,39,44,32,39,66,73,99,111,110,71,114,97,112,104,85,112,39,44,32,39,66,73,99,111,110,71,114,105,100,39,44,32,39,66,73,99,111,110,71,114,105,100,49,120,50,39,44,32,39,66,73,99,111,110,71,114,105,100,49,120,50,70,105,108,108,39,44,32,39,66,73,99,111,110,71,114,105,100,51,120,50,39,44,32,39,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,39,44,32,39,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,70,105,108,108,39,44,32,39,66,73,99,111,110,71,114,105,100,51,120,51,39,44,32,39,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,39,44,32,39,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,70,105,108,108,39,44,32,39,66,73,99,111,110,71,114,105,100,70,105,108,108,39,44,32,39,66,73,99,111,110,71,114,105,112,72,111,114,105,122,111,110,116,97,108,39,44,32,39,66,73,99,111,110,71,114,105,112,86,101,114,116,105,99,97,108,39,44,32,39,66,73,99,111,110,72,97,109,109,101,114,39,44,32,39,66,73,99,111,110,72,97,110,100,73,110,100,101,120,39,44,32,39,66,73,99,111,110,72,97,110,100,73,110,100,101,120,84,104,117,109,98,39,44,32,39,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,68,111,119,110,39,44,32,39,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,85,112,39,44,32,39,66,73,99,111,110,72,97,110,100,98,97,103,39,44,32,39,66,73,99,111,110,72,97,110,100,98,97,103,70,105,108,108,39,44,32,39,66,73,99,111,110,72,97,115,104,39,44,32,39,66,73,99,111,110,72,100,100,39,44,32,39,66,73,99,111,110,72,100,100,70,105,108,108,39,44,32,39,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,39,44,32,39,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,70,105,108,108,39,44,32,39,66,73,99,111,110,72,100,100,82,97,99,107,39,44,32,39,66,73,99,111,110,72,100,100,82,97,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,72,100,100,83,116,97,99,107,39,44,32,39,66,73,99,111,110,72,100,100,83,116,97,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,72,101,97,100,112,104,111,110,101,115,39,44,32,39,66,73,99,111,110,72,101,97,100,115,101,116,39,44,32,39,66,73,99,111,110,72,101,97,114,116,39,44,32,39,66,73,99,111,110,72,101,97,114,116,70,105,108,108,39,44,32,39,66,73,99,111,110,72,101,97,114,116,72,97,108,102,39,44,32,39,66,73,99,111,110,72,101,112,116,97,103,111,110,39,44,32,39,66,73,99,111,110,72,101,112,116,97,103,111,110,70,105,108,108,39,44,32,39,66,73,99,111,110,72,101,112,116,97,103,111,110,72,97,108,102,39,44,32,39,66,73,99,111,110,72,101,120,97,103,111,110,39,44,32,39,66,73,99,111,110,72,101,120,97,103,111,110,70,105,108,108,39,44,32,39,66,73,99,111,110,72,101,120,97,103,111,110,72,97,108,102,39,44,32,39,66,73,99,111,110,72,111,117,114,103,108,97,115,115,39,44,32,39,66,73,99,111,110,72,111,117,114,103,108,97,115,115,66,111,116,116,111,109,39,44,32,39,66,73,99,111,110,72,111,117,114,103,108,97,115,115,83,112,108,105,116,39,44,32,39,66,73,99,111,110,72,111,117,114,103,108,97,115,115,84,111,112,39,44,32,39,66,73,99,111,110,72,111,117,115,101,39,44,32,39,66,73,99,111,110,72,111,117,115,101,68,111,111,114,39,44,32,39,66,73,99,111,110,72,111,117,115,101,68,111,111,114,70,105,108,108,39,44,32,39,66,73,99,111,110,72,111,117,115,101,70,105,108,108,39,44,32,39,66,73,99,111,110,72,114,39,44,32,39,66,73,99,111,110,73,109,97,103,101,39,44,32,39,66,73,99,111,110,73,109,97,103,101,65,108,116,39,44,32,39,66,73,99,111,110,73,109,97,103,101,70,105,108,108,39,44,32,39,66,73,99,111,110,73,109,97,103,101,115,39,44,32,39,66,73,99,111,110,73,110,98,111,120,39,44,32,39,66,73,99,111,110,73,110,98,111,120,70,105,108,108,39,44,32,39,66,73,99,111,110,73,110,98,111,120,101,115,39,44,32,39,66,73,99,111,110,73,110,98,111,120,101,115,70,105,108,108,39,44,32,39,66,73,99,111,110,73,110,102,111,39,44,32,39,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,39,44,32,39,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,84,101,120,116,39,44,32,39,66,73,99,111,110,73,110,115,116,97,103,114,97,109,39,44,32,39,66,73,99,111,110,73,110,116,101,114,115,101,99,116,39,44,32,39,66,73,99,111,110,74,111,117,114,110,97,108,39,44,32,39,66,73,99,111,110,74,111,117,114,110,97,108,65,108,98,117,109,39,44,32,39,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,68,111,119,110,39,44,32,39,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,85,112,39,44,32,39,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,39,44,32,39,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,70,105,108,108,39,44,32,39,66,73,99,111,110,74,111,117,114,110,97,108,67,104,101,99,107,39,44,32,39,66,73,99,111,110,74,111,117,114,110,97,108,67,111,100,101,39,44,32,39,66,73,99,111,110,74,111,117,114,110,97,108,77,101,100,105,99,97,108,39,44,32,39,66,73,99,111,110,74,111,117,114,110,97,108,77,105,110,117,115,39,44,32,39,66,73,99,111,110,74,111,117,114,110,97,108,80,108,117,115,39,44,32,39,66,73,99,111,110,74,111,117,114,110,97,108,82,105,99,104,116,101,120,116,39,44,32,39,66,73,99,111,110,74,111,117,114,110,97,108,84,101,120,116,39,44,32,39,66,73,99,111,110,74,111,117,114,110,97,108,88,39,44,32,39,66,73,99,111,110,74,111,117,114,110,97,108,115,39,44,32,39,66,73,99,111,110,74,111,121,115,116,105,99,107,39,44,32,39,66,73,99,111,110,74,117,115,116,105,102,121,39,44,32,39,66,73,99,111,110,74,117,115,116,105,102,121,76,101,102,116,39,44,32,39,66,73,99,111,110,74,117,115,116,105,102,121,82,105,103,104,116,39,44,32,39,66,73,99,111,110,75,97,110,98,97,110,39,44,32,39,66,73,99,111,110,75,97,110,98,97,110,70,105,108,108,39,44,32,39,66,73,99,111,110,75,101,121,39,44,32,39,66,73,99,111,110,75,101,121,70,105,108,108,39,44,32,39,66,73,99,111,110,75,101,121,98,111,97,114,100,39,44,32,39,66,73,99,111,110,75,101,121,98,111,97,114,100,70,105,108,108,39,44,32,39,66,73,99,111,110,76,97,100,100,101,114,39,44,32,39,66,73,99,111,110,76,97,109,112,39,44,32,39,66,73,99,111,110,76,97,109,112,70,105,108,108,39,44,32,39,66,73,99,111,110,76,97,112,116,111,112,39,44,32,39,66,73,99,111,110,76,97,112,116,111,112,70,105,108,108,39,44,32,39,66,73,99,111,110,76,97,121,101,114,115,39,44,32,39,66,73,99,111,110,76,97,121,101,114,115,70,105,108,108,39,44,32,39,66,73,99,111,110,76,97,121,101,114,115,72,97,108,102,39,44,32,39,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,39,44,32,39,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,39,44,32,39,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,82,101,118,101,114,115,101,39,44,32,39,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,39,44,32,39,66,73,99,111,110,76,97,121,111,117,116,83,112,108,105,116,39,44,32,39,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,39,44,32,39,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,39,44,32,39,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,39,44,32,39,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,82,101,118,101,114,115,101,39,44,32,39,66,73,99,111,110,76,97,121,111,117,116,84,104,114,101,101,67,111,108,117,109,110,115,39,44,32,39,66,73,99,111,110,76,97,121,111,117,116,87,116,102,39,44,32,39,66,73,99,111,110,76,105,102,101,80,114,101,115,101,114,118,101,114,39,44,32,39,66,73,99,111,110,76,105,103,104,116,110,105,110,103,39,44,32,39,66,73,99,111,110,76,105,103,104,116,110,105,110,103,70,105,108,108,39,44,32,39,66,73,99,111,110,76,105,110,107,39,44,32,39,66,73,99,111,110,76,105,110,107,52,53,100,101,103,39,44,32,39,66,73,99,111,110,76,105,110,107,101,100,105,110,39,44,32,39,66,73,99,111,110,76,105,115,116,39,44,32,39,66,73,99,111,110,76,105,115,116,67,104,101,99,107,39,44,32,39,66,73,99,111,110,76,105,115,116,78,101,115,116,101,100,39,44,32,39,66,73,99,111,110,76,105,115,116,79,108,39,44,32,39,66,73,99,111,110,76,105,115,116,83,116,97,114,115,39,44,32,39,66,73,99,111,110,76,105,115,116,84,97,115,107,39,44,32,39,66,73,99,111,110,76,105,115,116,85,108,39,44,32,39,66,73,99,111,110,76,111,99,107,39,44,32,39,66,73,99,111,110,76,111,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,77,97,105,108,98,111,120,39,44,32,39,66,73,99,111,110,77,97,105,108,98,111,120,50,39,44,32,39,66,73,99,111,110,77,97,112,39,44,32,39,66,73,99,111,110,77,97,112,70,105,108,108,39,44,32,39,66,73,99,111,110,77,97,114,107,100,111,119,110,39,44,32,39,66,73,99,111,110,77,97,114,107,100,111,119,110,70,105,108,108,39,44,32,39,66,73,99,111,110,77,101,110,117,65,112,112,39,44,32,39,66,73,99,111,110,77,101,110,117,65,112,112,70,105,108,108,39,44,32,39,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,39,44,32,39,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,70,105,108,108,39,44,32,39,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,39,44,32,39,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,70,105,108,108,39,44,32,39,66,73,99,111,110,77,101,110,117,68,111,119,110,39,44,32,39,66,73,99,111,110,77,101,110,117,85,112,39,44,32,39,66,73,99,111,110,77,105,99,39,44,32,39,66,73,99,111,110,77,105,99,70,105,108,108,39,44,32,39,66,73,99,111,110,77,105,99,77,117,116,101,39,44,32,39,66,73,99,111,110,77,105,99,77,117,116,101,70,105,108,108,39,44,32,39,66,73,99,111,110,77,105,110,101,99,97,114,116,39,44,32,39,66,73,99,111,110,77,105,110,101,99,97,114,116,76,111,97,100,101,100,39,44,32,39,66,73,99,111,110,77,111,111,110,39,44,32,39,66,73,99,111,110,77,111,117,115,101,39,44,32,39,66,73,99,111,110,77,111,117,115,101,50,39,44,32,39,66,73,99,111,110,77,111,117,115,101,51,39,44,32,39,66,73,99,111,110,77,117,115,105,99,78,111,116,101,39,44,32,39,66,73,99,111,110,77,117,115,105,99,78,111,116,101,66,101,97,109,101,100,39,44,32,39,66,73,99,111,110,77,117,115,105,99,78,111,116,101,76,105,115,116,39,44,32,39,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,39,44,32,39,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,70,105,108,108,39,44,32,39,66,73,99,111,110,78,101,119,115,112,97,112,101,114,39,44,32,39,66,73,99,111,110,78,111,100,101,77,105,110,117,115,39,44,32,39,66,73,99,111,110,78,111,100,101,77,105,110,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,78,111,100,101,80,108,117,115,39,44,32,39,66,73,99,111,110,78,111,100,101,80,108,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,78,117,116,39,44,32,39,66,73,99,111,110,78,117,116,70,105,108,108,39,44,32,39,66,73,99,111,110,79,99,116,97,103,111,110,39,44,32,39,66,73,99,111,110,79,99,116,97,103,111,110,70,105,108,108,39,44,32,39,66,73,99,111,110,79,99,116,97,103,111,110,72,97,108,102,39,44,32,39,66,73,99,111,110,79,112,116,105,111,110,39,44,32,39,66,73,99,111,110,79,117,116,108,101,116,39,44,32,39,66,73,99,111,110,80,97,112,101,114,99,108,105,112,39,44,32,39,66,73,99,111,110,80,97,114,97,103,114,97,112,104,39,44,32,39,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,39,44,32,39,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,39,44,32,39,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,70,105,108,108,39,44,32,39,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,39,44,32,39,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,80,97,116,99,104,80,108,117,115,39,44,32,39,66,73,99,111,110,80,97,116,99,104,80,108,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,39,44,32,39,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,70,105,108,108,39,44,32,39,66,73,99,111,110,80,97,117,115,101,39,44,32,39,66,73,99,111,110,80,97,117,115,101,66,116,110,39,44,32,39,66,73,99,111,110,80,97,117,115,101,66,116,110,70,105,108,108,39,44,32,39,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,80,97,117,115,101,70,105,108,108,39,44,32,39,66,73,99,111,110,80,101,97,99,101,39,44,32,39,66,73,99,111,110,80,101,97,99,101,70,105,108,108,39,44,32,39,66,73,99,111,110,80,101,110,39,44,32,39,66,73,99,111,110,80,101,110,70,105,108,108,39,44,32,39,66,73,99,111,110,80,101,110,99,105,108,39,44,32,39,66,73,99,111,110,80,101,110,99,105,108,70,105,108,108,39,44,32,39,66,73,99,111,110,80,101,110,99,105,108,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,80,101,110,116,97,103,111,110,39,44,32,39,66,73,99,111,110,80,101,110,116,97,103,111,110,70,105,108,108,39,44,32,39,66,73,99,111,110,80,101,110,116,97,103,111,110,72,97,108,102,39,44,32,39,66,73,99,111,110,80,101,111,112,108,101,39,44,32,39,66,73,99,111,110,80,101,111,112,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,80,101,114,99,101,110,116,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,70,105,108,108,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,66,111,117,110,100,105,110,103,66,111,120,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,70,105,108,108,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,70,105,108,108,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,76,105,110,101,115,70,105,108,108,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,88,39,44,32,39,66,73,99,111,110,80,101,114,115,111,110,88,70,105,108,108,39,44,32,39,66,73,99,111,110,80,104,111,110,101,39,44,32,39,66,73,99,111,110,80,104,111,110,101,70,105,108,108,39,44,32,39,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,39,44,32,39,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,70,105,108,108,39,44,32,39,66,73,99,111,110,80,104,111,110,101,86,105,98,114,97,116,101,39,44,32,39,66,73,99,111,110,80,105,101,67,104,97,114,116,39,44,32,39,66,73,99,111,110,80,105,101,67,104,97,114,116,70,105,108,108,39,44,32,39,66,73,99,111,110,80,105,112,39,44,32,39,66,73,99,111,110,80,105,112,70,105,108,108,39,44,32,39,66,73,99,111,110,80,108,97,121,39,44,32,39,66,73,99,111,110,80,108,97,121,66,116,110,39,44,32,39,66,73,99,111,110,80,108,97,121,66,116,110,70,105,108,108,39,44,32,39,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,80,108,97,121,70,105,108,108,39,44,32,39,66,73,99,111,110,80,108,117,103,39,44,32,39,66,73,99,111,110,80,108,117,103,70,105,108,108,39,44,32,39,66,73,99,111,110,80,108,117,115,39,44,32,39,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,80,111,119,101,114,39,44,32,39,66,73,99,111,110,80,114,105,110,116,101,114,39,44,32,39,66,73,99,111,110,80,114,105,110,116,101,114,70,105,108,108,39,44,32,39,66,73,99,111,110,80,117,122,122,108,101,39,44,32,39,66,73,99,111,110,80,117,122,122,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,81,117,101,115,116,105,111,110,39,44,32,39,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,39,44,32,39,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,39,44,32,39,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,39,44,32,39,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,39,44,32,39,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,82,101,99,101,105,112,116,39,44,32,39,66,73,99,111,110,82,101,99,101,105,112,116,67,117,116,111,102,102,39,44,32,39,66,73,99,111,110,82,101,99,101,112,116,105,111,110,48,39,44,32,39,66,73,99,111,110,82,101,99,101,112,116,105,111,110,49,39,44,32,39,66,73,99,111,110,82,101,99,101,112,116,105,111,110,50,39,44,32,39,66,73,99,111,110,82,101,99,101,112,116,105,111,110,51,39,44,32,39,66,73,99,111,110,82,101,99,101,112,116,105,111,110,52,39,44,32,39,66,73,99,111,110,82,101,99,111,114,100,39,44,32,39,66,73,99,111,110,82,101,99,111,114,100,50,39,44,32,39,66,73,99,111,110,82,101,99,111,114,100,50,70,105,108,108,39,44,32,39,66,73,99,111,110,82,101,99,111,114,100,66,116,110,39,44,32,39,66,73,99,111,110,82,101,99,111,114,100,66,116,110,70,105,108,108,39,44,32,39,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,82,101,99,111,114,100,70,105,108,108,39,44,32,39,66,73,99,111,110,82,101,112,108,121,39,44,32,39,66,73,99,111,110,82,101,112,108,121,65,108,108,39,44,32,39,66,73,99,111,110,82,101,112,108,121,65,108,108,70,105,108,108,39,44,32,39,66,73,99,111,110,82,101,112,108,121,70,105,108,108,39,44,32,39,66,73,99,111,110,82,115,115,39,44,32,39,66,73,99,111,110,82,115,115,70,105,108,108,39,44,32,39,66,73,99,111,110,83,99,105,115,115,111,114,115,39,44,32,39,66,73,99,111,110,83,99,114,101,119,100,114,105,118,101,114,39,44,32,39,66,73,99,111,110,83,101,97,114,99,104,39,44,32,39,66,73,99,111,110,83,101,103,109,101,110,116,101,100,78,97,118,39,44,32,39,66,73,99,111,110,83,101,114,118,101,114,39,44,32,39,66,73,99,111,110,83,104,97,114,101,39,44,32,39,66,73,99,111,110,83,104,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,67,104,101,99,107,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,69,120,99,108,97,109,97,116,105,111,110,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,67,104,101,99,107,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,69,120,99,108,97,109,97,116,105,111,110,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,77,105,110,117,115,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,80,108,117,115,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,88,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,77,105,110,117,115,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,80,108,117,115,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,83,104,97,100,101,100,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,70,105,108,108,39,44,32,39,66,73,99,111,110,83,104,105,101,108,100,88,39,44,32,39,66,73,99,111,110,83,104,105,102,116,39,44,32,39,66,73,99,111,110,83,104,105,102,116,70,105,108,108,39,44,32,39,66,73,99,111,110,83,104,111,112,39,44,32,39,66,73,99,111,110,83,104,111,112,87,105,110,100,111,119,39,44,32,39,66,73,99,111,110,83,104,117,102,102,108,101,39,44,32,39,66,73,99,111,110,83,105,103,110,112,111,115,116,39,44,32,39,66,73,99,111,110,83,105,103,110,112,111,115,116,50,39,44,32,39,66,73,99,111,110,83,105,103,110,112,111,115,116,50,70,105,108,108,39,44,32,39,66,73,99,111,110,83,105,103,110,112,111,115,116,70,105,108,108,39,44,32,39,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,39,44,32,39,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,70,105,108,108,39,44,32,39,66,73,99,111,110,83,105,109,39,44,32,39,66,73,99,111,110,83,105,109,70,105,108,108,39,44,32,39,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,39,44,32,39,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,39,44,32,39,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,70,105,108,108,39,44,32,39,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,70,105,108,108,39,44,32,39,66,73,99,111,110,83,107,105,112,69,110,100,39,44,32,39,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,39,44,32,39,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,70,105,108,108,39,44,32,39,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,83,107,105,112,69,110,100,70,105,108,108,39,44,32,39,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,39,44,32,39,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,39,44,32,39,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,70,105,108,108,39,44,32,39,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,70,105,108,108,39,44,32,39,66,73,99,111,110,83,107,105,112,83,116,97,114,116,39,44,32,39,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,39,44,32,39,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,70,105,108,108,39,44,32,39,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,83,107,105,112,83,116,97,114,116,70,105,108,108,39,44,32,39,66,73,99,111,110,83,108,97,99,107,39,44,32,39,66,73,99,111,110,83,108,97,115,104,39,44,32,39,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,83,108,105,100,101,114,115,39,44,32,39,66,73,99,111,110,83,109,97,114,116,119,97,116,99,104,39,44,32,39,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,39,44,32,39,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,65,108,116,39,44,32,39,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,39,44,32,39,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,65,108,116,39,44,32,39,66,73,99,111,110,83,111,114,116,68,111,119,110,39,44,32,39,66,73,99,111,110,83,111,114,116,68,111,119,110,65,108,116,39,44,32,39,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,39,44,32,39,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,65,108,116,39,44,32,39,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,39,44,32,39,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,65,108,116,39,44,32,39,66,73,99,111,110,83,111,114,116,85,112,39,44,32,39,66,73,99,111,110,83,111,114,116,85,112,65,108,116,39,44,32,39,66,73,99,111,110,83,111,117,110,100,119,97,118,101,39,44,32,39,66,73,99,111,110,83,112,101,97,107,101,114,39,44,32,39,66,73,99,111,110,83,112,101,97,107,101,114,70,105,108,108,39,44,32,39,66,73,99,111,110,83,112,101,108,108,99,104,101,99,107,39,44,32,39,66,73,99,111,110,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,83,113,117,97,114,101,72,97,108,102,39,44,32,39,66,73,99,111,110,83,116,97,114,39,44,32,39,66,73,99,111,110,83,116,97,114,70,105,108,108,39,44,32,39,66,73,99,111,110,83,116,97,114,72,97,108,102,39,44,32,39,66,73,99,111,110,83,116,105,99,107,105,101,115,39,44,32,39,66,73,99,111,110,83,116,105,99,107,105,101,115,70,105,108,108,39,44,32,39,66,73,99,111,110,83,116,105,99,107,121,39,44,32,39,66,73,99,111,110,83,116,105,99,107,121,70,105,108,108,39,44,32,39,66,73,99,111,110,83,116,111,112,39,44,32,39,66,73,99,111,110,83,116,111,112,66,116,110,39,44,32,39,66,73,99,111,110,83,116,111,112,66,116,110,70,105,108,108,39,44,32,39,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,83,116,111,112,70,105,108,108,39,44,32,39,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,39,44,32,39,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,70,105,108,108,39,44,32,39,66,73,99,111,110,83,116,111,112,119,97,116,99,104,39,44,32,39,66,73,99,111,110,83,116,111,112,119,97,116,99,104,70,105,108,108,39,44,32,39,66,73,99,111,110,83,117,98,116,114,97,99,116,39,44,32,39,66,73,99,111,110,83,117,105,116,67,108,117,98,39,44,32,39,66,73,99,111,110,83,117,105,116,67,108,117,98,70,105,108,108,39,44,32,39,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,39,44,32,39,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,70,105,108,108,39,44,32,39,66,73,99,111,110,83,117,105,116,72,101,97,114,116,39,44,32,39,66,73,99,111,110,83,117,105,116,72,101,97,114,116,70,105,108,108,39,44,32,39,66,73,99,111,110,83,117,105,116,83,112,97,100,101,39,44,32,39,66,73,99,111,110,83,117,105,116,83,112,97,100,101,70,105,108,108,39,44,32,39,66,73,99,111,110,83,117,110,39,44,32,39,66,73,99,111,110,83,117,110,103,108,97,115,115,101,115,39,44,32,39,66,73,99,111,110,84,97,98,108,101,39,44,32,39,66,73,99,111,110,84,97,98,108,101,116,39,44,32,39,66,73,99,111,110,84,97,98,108,101,116,70,105,108,108,39,44,32,39,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,39,44,32,39,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,70,105,108,108,39,44,32,39,66,73,99,111,110,84,97,103,39,44,32,39,66,73,99,111,110,84,97,103,70,105,108,108,39,44,32,39,66,73,99,111,110,84,97,103,115,39,44,32,39,66,73,99,111,110,84,97,103,115,70,105,108,108,39,44,32,39,66,73,99,111,110,84,101,108,101,112,104,111,110,101,39,44,32,39,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,105,108,108,39,44,32,39,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,39,44,32,39,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,70,105,108,108,39,44,32,39,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,39,44,32,39,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,70,105,108,108,39,44,32,39,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,39,44,32,39,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,39,44,32,39,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,70,105,108,108,39,44,32,39,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,39,44,32,39,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,70,105,108,108,39,44,32,39,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,39,44,32,39,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,70,105,108,108,39,44,32,39,66,73,99,111,110,84,101,114,109,105,110,97,108,39,44,32,39,66,73,99,111,110,84,101,114,109,105,110,97,108,70,105,108,108,39,44,32,39,66,73,99,111,110,84,101,120,116,67,101,110,116,101,114,39,44,32,39,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,76,101,102,116,39,44,32,39,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,82,105,103,104,116,39,44,32,39,66,73,99,111,110,84,101,120,116,76,101,102,116,39,44,32,39,66,73,99,111,110,84,101,120,116,80,97,114,97,103,114,97,112,104,39,44,32,39,66,73,99,111,110,84,101,120,116,82,105,103,104,116,39,44,32,39,66,73,99,111,110,84,101,120,116,97,114,101,97,39,44,32,39,66,73,99,111,110,84,101,120,116,97,114,101,97,82,101,115,105,122,101,39,44,32,39,66,73,99,111,110,84,101,120,116,97,114,101,97,84,39,44,32,39,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,39,44,32,39,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,72,97,108,102,39,44,32,39,66,73,99,111,110,84,104,114,101,101,68,111,116,115,39,44,32,39,66,73,99,111,110,84,104,114,101,101,68,111,116,115,86,101,114,116,105,99,97,108,39,44,32,39,66,73,99,111,110,84,111,103,103,108,101,50,79,102,102,39,44,32,39,66,73,99,111,110,84,111,103,103,108,101,50,79,110,39,44,32,39,66,73,99,111,110,84,111,103,103,108,101,79,102,102,39,44,32,39,66,73,99,111,110,84,111,103,103,108,101,79,110,39,44,32,39,66,73,99,111,110,84,111,103,103,108,101,115,39,44,32,39,66,73,99,111,110,84,111,103,103,108,101,115,50,39,44,32,39,66,73,99,111,110,84,111,111,108,115,39,44,32,39,66,73,99,111,110,84,114,97,115,104,39,44,32,39,66,73,99,111,110,84,114,97,115,104,50,39,44,32,39,66,73,99,111,110,84,114,97,115,104,50,70,105,108,108,39,44,32,39,66,73,99,111,110,84,114,97,115,104,70,105,108,108,39,44,32,39,66,73,99,111,110,84,114,101,101,39,44,32,39,66,73,99,111,110,84,114,101,101,70,105,108,108,39,44,32,39,66,73,99,111,110,84,114,105,97,110,103,108,101,39,44,32,39,66,73,99,111,110,84,114,105,97,110,103,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,84,114,105,97,110,103,108,101,72,97,108,102,39,44,32,39,66,73,99,111,110,84,114,111,112,104,121,39,44,32,39,66,73,99,111,110,84,114,111,112,104,121,70,105,108,108,39,44,32,39,66,73,99,111,110,84,114,117,99,107,39,44,32,39,66,73,99,111,110,84,114,117,99,107,70,108,97,116,98,101,100,39,44,32,39,66,73,99,111,110,84,118,39,44,32,39,66,73,99,111,110,84,118,70,105,108,108,39,44,32,39,66,73,99,111,110,84,119,105,116,99,104,39,44,32,39,66,73,99,111,110,84,119,105,116,116,101,114,39,44,32,39,66,73,99,111,110,84,121,112,101,39,44,32,39,66,73,99,111,110,84,121,112,101,66,111,108,100,39,44,32,39,66,73,99,111,110,84,121,112,101,72,49,39,44,32,39,66,73,99,111,110,84,121,112,101,72,50,39,44,32,39,66,73,99,111,110,84,121,112,101,72,51,39,44,32,39,66,73,99,111,110,84,121,112,101,73,116,97,108,105,99,39,44,32,39,66,73,99,111,110,84,121,112,101,83,116,114,105,107,101,116,104,114,111,117,103,104,39,44,32,39,66,73,99,111,110,84,121,112,101,85,110,100,101,114,108,105,110,101,39,44,32,39,66,73,99,111,110,85,105,67,104,101,99,107,115,39,44,32,39,66,73,99,111,110,85,105,67,104,101,99,107,115,71,114,105,100,39,44,32,39,66,73,99,111,110,85,105,82,97,100,105,111,115,39,44,32,39,66,73,99,111,110,85,105,82,97,100,105,111,115,71,114,105,100,39,44,32,39,66,73,99,111,110,85,110,105,111,110,39,44,32,39,66,73,99,111,110,85,110,108,111,99,107,39,44,32,39,66,73,99,111,110,85,110,108,111,99,107,70,105,108,108,39,44,32,39,66,73,99,111,110,85,112,99,39,44,32,39,66,73,99,111,110,85,112,99,83,99,97,110,39,44,32,39,66,73,99,111,110,85,112,108,111,97,100,39,44,32,39,66,73,99,111,110,86,101,99,116,111,114,80,101,110,39,44,32,39,66,73,99,111,110,86,105,101,119,76,105,115,116,39,44,32,39,66,73,99,111,110,86,105,101,119,83,116,97,99,107,101,100,39,44,32,39,66,73,99,111,110,86,105,110,121,108,39,44,32,39,66,73,99,111,110,86,105,110,121,108,70,105,108,108,39,44,32,39,66,73,99,111,110,86,111,105,99,101,109,97,105,108,39,44,32,39,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,39,44,32,39,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,70,105,108,108,39,44,32,39,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,39,44,32,39,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,70,105,108,108,39,44,32,39,66,73,99,111,110,86,111,108,117,109,101,79,102,102,39,44,32,39,66,73,99,111,110,86,111,108,117,109,101,79,102,102,70,105,108,108,39,44,32,39,66,73,99,111,110,86,111,108,117,109,101,85,112,39,44,32,39,66,73,99,111,110,86,111,108,117,109,101,85,112,70,105,108,108,39,44,32,39,66,73,99,111,110,86,114,39,44,32,39,66,73,99,111,110,87,97,108,108,101,116,39,44,32,39,66,73,99,111,110,87,97,108,108,101,116,50,39,44,32,39,66,73,99,111,110,87,97,108,108,101,116,70,105,108,108,39,44,32,39,66,73,99,111,110,87,97,116,99,104,39,44,32,39,66,73,99,111,110,87,105,102,105,39,44,32,39,66,73,99,111,110,87,105,102,105,49,39,44,32,39,66,73,99,111,110,87,105,102,105,50,39,44,32,39,66,73,99,111,110,87,105,102,105,79,102,102,39,44,32,39,66,73,99,111,110,87,105,110,100,111,119,39,44,32,39,66,73,99,111,110,87,114,101,110,99,104,39,44,32,39,66,73,99,111,110,88,39,44,32,39,66,73,99,111,110,88,67,105,114,99,108,101,39,44,32,39,66,73,99,111,110,88,67,105,114,99,108,101,70,105,108,108,39,44,32,39,66,73,99,111,110,88,68,105,97,109,111,110,100,39,44,32,39,66,73,99,111,110,88,68,105,97,109,111,110,100,70,105,108,108,39,44,32,39,66,73,99,111,110,88,79,99,116,97,103,111,110,39,44,32,39,66,73,99,111,110,88,79,99,116,97,103,111,110,70,105,108,108,39,44,32,39,66,73,99,111,110,88,83,113,117,97,114,101,39,44,32,39,66,73,99,111,110,88,83,113,117,97,114,101,70,105,108,108,39,44,32,39,66,73,99,111,110,89,111,117,116,117,98,101,39,44,32,39,66,73,99,111,110,90,111,111,109,73,110,39,44,32,39,66,73,99,111,110,90,111,111,109,79,117,116,39,93,59,32,47,47,32,69,120,112,111,114,116,32,116,104,101,32,105,99,111,110,115,32,112,108,117,103,105,110,92,110,92,110,118,97,114,32,73,99,111,110,115,80,108,117,103,105,110,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,78,111,67,111,110,102,105,103,41,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,47,47,32,73,99,111,110,32,104,101,108,112,101,114,32,99,111,109,112,111,110,101,110,116,92,110,32,32,32,32,66,73,99,111,110,58,32,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,66,73,99,111,110,44,92,110,32,32,32,32,47,47,32,73,99,111,110,32,115,116,97,99,107,105,110,103,32,99,111,109,112,111,110,101,110,116,92,110,32,32,32,32,66,73,99,111,110,115,116,97,99,107,58,32,95,105,99,111,110,115,116,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,66,73,99,111,110,115,116,97,99,107,44,92,110,32,32,32,32,47,47,32,66,111,111,116,115,116,114,97,112,86,117,101,32,99,117,115,116,111,109,32,105,99,111,110,32,99,111,109,112,111,110,101,110,116,115,92,110,32,32,32,32,66,73,99,111,110,66,108,97,110,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,108,97,110,107,44,92,110,32,32,32,32,47,47,32,66,111,111,116,115,116,114,97,112,32,105,99,111,110,32,99,111,109,112,111,110,101,110,116,115,92,110,32,32,32,32,66,73,99,111,110,65,108,97,114,109,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,108,97,114,109,44,92,110,32,32,32,32,66,73,99,111,110,65,108,97,114,109,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,108,97,114,109,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,108,105,103,110,66,111,116,116,111,109,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,108,105,103,110,66,111,116,116,111,109,44,92,110,32,32,32,32,66,73,99,111,110,65,108,105,103,110,67,101,110,116,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,108,105,103,110,67,101,110,116,101,114,44,92,110,32,32,32,32,66,73,99,111,110,65,108,105,103,110,69,110,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,108,105,103,110,69,110,100,44,92,110,32,32,32,32,66,73,99,111,110,65,108,105,103,110,77,105,100,100,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,108,105,103,110,77,105,100,100,108,101,44,92,110,32,32,32,32,66,73,99,111,110,65,108,105,103,110,83,116,97,114,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,108,105,103,110,83,116,97,114,116,44,92,110,32,32,32,32,66,73,99,111,110,65,108,105,103,110,84,111,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,108,105,103,110,84,111,112,44,92,110,32,32,32,32,66,73,99,111,110,65,108,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,108,116,44,92,110,32,32,32,32,66,73,99,111,110,65,112,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,112,112,44,92,110,32,32,32,32,66,73,99,111,110,65,112,112,73,110,100,105,99,97,116,111,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,112,112,73,110,100,105,99,97,116,111,114,44,92,110,32,32,32,32,66,73,99,111,110,65,114,99,104,105,118,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,99,104,105,118,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,99,104,105,118,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,99,104,105,118,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,85,112,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,66,97,114,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,66,97,114,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,66,97,114,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,66,97,114,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,66,97,114,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,66,97,114,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,66,97,114,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,66,97,114,85,112,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,67,108,111,99,107,119,105,115,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,67,108,111,99,107,119,105,115,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,67,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,67,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,104,111,114,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,104,111,114,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,68,111,119,110,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,85,112,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,76,101,102,116,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,104,111,114,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,104,111,114,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,82,101,112,101,97,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,82,101,112,101,97,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,104,111,114,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,104,111,114,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,83,104,111,114,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,83,104,111,114,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,67,111,110,116,114,97,99,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,67,111,110,116,114,97,99,116,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,69,120,112,97,110,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,69,120,112,97,110,100,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,115,67,111,108,108,97,112,115,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,115,67,111,108,108,97,112,115,101,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,115,69,120,112,97,110,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,115,69,120,112,97,110,100,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,115,70,117,108,108,115,99,114,101,101,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,115,70,117,108,108,115,99,114,101,101,110,44,92,110,32,32,32,32,66,73,99,111,110,65,114,114,111,119,115,77,111,118,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,114,114,111,119,115,77,111,118,101,44,92,110,32,32,32,32,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,44,92,110,32,32,32,32,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,65,115,116,101,114,105,115,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,115,116,101,114,105,115,107,44,92,110,32,32,32,32,66,73,99,111,110,65,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,116,44,92,110,32,32,32,32,66,73,99,111,110,65,119,97,114,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,119,97,114,100,44,92,110,32,32,32,32,66,73,99,111,110,65,119,97,114,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,65,119,97,114,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,99,107,44,92,110,32,32,32,32,66,73,99,111,110,66,97,99,107,115,112,97,99,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,99,107,115,112,97,99,101,44,92,110,32,32,32,32,66,73,99,111,110,66,97,99,107,115,112,97,99,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,99,107,115,112,97,99,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,44,92,110,32,32,32,32,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,100,103,101,52,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,100,103,101,52,107,44,92,110,32,32,32,32,66,73,99,111,110,66,97,100,103,101,52,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,100,103,101,52,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,100,103,101,56,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,100,103,101,56,107,44,92,110,32,32,32,32,66,73,99,111,110,66,97,100,103,101,56,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,100,103,101,56,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,100,103,101,65,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,100,103,101,65,100,44,92,110,32,32,32,32,66,73,99,111,110,66,97,100,103,101,65,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,100,103,101,65,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,100,103,101,67,99,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,100,103,101,67,99,44,92,110,32,32,32,32,66,73,99,111,110,66,97,100,103,101,67,99,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,100,103,101,67,99,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,100,103,101,72,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,100,103,101,72,100,44,92,110,32,32,32,32,66,73,99,111,110,66,97,100,103,101,72,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,100,103,101,72,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,100,103,101,84,109,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,100,103,101,84,109,44,92,110,32,32,32,32,66,73,99,111,110,66,97,100,103,101,84,109,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,100,103,101,84,109,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,100,103,101,86,111,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,100,103,101,86,111,44,92,110,32,32,32,32,66,73,99,111,110,66,97,100,103,101,86,111,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,100,103,101,86,111,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,103,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,103,44,92,110,32,32,32,32,66,73,99,111,110,66,97,103,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,103,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,66,97,103,67,104,101,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,103,67,104,101,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,103,68,97,115,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,103,68,97,115,104,44,92,110,32,32,32,32,66,73,99,111,110,66,97,103,68,97,115,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,103,68,97,115,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,103,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,103,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,103,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,103,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,66,97,103,80,108,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,103,80,108,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,103,88,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,103,88,44,92,110,32,32,32,32,66,73,99,111,110,66,97,103,88,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,103,88,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,114,67,104,97,114,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,114,67,104,97,114,116,44,92,110,32,32,32,32,66,73,99,111,110,66,97,114,67,104,97,114,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,114,67,104,97,114,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,44,92,110,32,32,32,32,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,114,67,104,97,114,116,83,116,101,112,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,114,67,104,97,114,116,83,116,101,112,115,44,92,110,32,32,32,32,66,73,99,111,110,66,97,115,107,101,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,115,107,101,116,44,92,110,32,32,32,32,66,73,99,111,110,66,97,115,107,101,116,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,115,107,101,116,50,44,92,110,32,32,32,32,66,73,99,111,110,66,97,115,107,101,116,50,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,115,107,101,116,50,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,115,107,101,116,51,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,115,107,101,116,51,44,92,110,32,32,32,32,66,73,99,111,110,66,97,115,107,101,116,51,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,115,107,101,116,51,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,115,107,101,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,115,107,101,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,116,116,101,114,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,116,116,101,114,121,44,92,110,32,32,32,32,66,73,99,111,110,66,97,116,116,101,114,121,67,104,97,114,103,105,110,103,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,116,116,101,114,121,67,104,97,114,103,105,110,103,44,92,110,32,32,32,32,66,73,99,111,110,66,97,116,116,101,114,121,70,117,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,116,116,101,114,121,70,117,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,97,116,116,101,114,121,72,97,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,97,116,116,101,114,121,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,66,101,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,101,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,101,108,108,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,101,108,108,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,101,122,105,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,101,122,105,101,114,44,92,110,32,32,32,32,66,73,99,111,110,66,101,122,105,101,114,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,101,122,105,101,114,50,44,92,110,32,32,32,32,66,73,99,111,110,66,105,99,121,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,105,99,121,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,44,92,110,32,32,32,32,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,72,97,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,88,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,88,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,88,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,88,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,115,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,109,97,114,107,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,107,115,104,101,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,107,115,104,101,108,102,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,116,115,116,114,97,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,116,115,116,114,97,112,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,116,115,116,114,97,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,116,115,116,114,97,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,111,111,116,115,116,114,97,112,82,101,98,111,111,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,111,116,115,116,114,97,112,82,101,98,111,111,116,44,92,110,32,32,32,32,66,73,99,111,110,66,111,114,100,101,114,83,116,121,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,114,100,101,114,83,116,121,108,101,44,92,110,32,32,32,32,66,73,99,111,110,66,111,114,100,101,114,87,105,100,116,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,114,100,101,114,87,105,100,116,104,44,92,110,32,32,32,32,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,44,92,110,32,32,32,32,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,67,105,114,99,108,101,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,67,105,114,99,108,101,115,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,66,111,120,83,101,97,109,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,111,120,83,101,97,109,44,92,110,32,32,32,32,66,73,99,111,110,66,114,97,99,101,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,97,99,101,115,44,92,110,32,32,32,32,66,73,99,111,110,66,114,105,99,107,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,105,99,107,115,44,92,110,32,32,32,32,66,73,99,111,110,66,114,105,101,102,99,97,115,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,105,101,102,99,97,115,101,44,92,110,32,32,32,32,66,73,99,111,110,66,114,105,101,102,99,97,115,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,105,101,102,99,97,115,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,44,92,110,32,32,32,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,44,92,110,32,32,32,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,44,92,110,32,32,32,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,44,92,110,32,32,32,32,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,114,111,97,100,99,97,115,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,111,97,100,99,97,115,116,44,92,110,32,32,32,32,66,73,99,111,110,66,114,111,97,100,99,97,115,116,80,105,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,111,97,100,99,97,115,116,80,105,110,44,92,110,32,32,32,32,66,73,99,111,110,66,114,117,115,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,117,115,104,44,92,110,32,32,32,32,66,73,99,111,110,66,114,117,115,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,114,117,115,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,117,99,107,101,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,117,99,107,101,116,44,92,110,32,32,32,32,66,73,99,111,110,66,117,99,107,101,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,117,99,107,101,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,117,103,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,117,103,44,92,110,32,32,32,32,66,73,99,111,110,66,117,103,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,117,103,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,66,117,105,108,100,105,110,103,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,117,105,108,100,105,110,103,44,92,110,32,32,32,32,66,73,99,111,110,66,117,108,108,115,101,121,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,66,117,108,108,115,101,121,101,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,52,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,52,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,52,69,118,101,110,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,52,69,118,101,110,116,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,52,82,97,110,103,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,52,82,97,110,103,101,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,52,87,101,101,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,52,87,101,101,107,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,88,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,88,44,92,110,32,32,32,32,66,73,99,111,110,67,97,108,101,110,100,97,114,88,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,88,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,109,101,114,97,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,109,101,114,97,44,92,110,32,32,32,32,66,73,99,111,110,67,97,109,101,114,97,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,109,101,114,97,50,44,92,110,32,32,32,32,66,73,99,111,110,67,97,109,101,114,97,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,109,101,114,97,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,44,92,110,32,32,32,32,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,44,92,110,32,32,32,32,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,44,92,110,32,32,32,32,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,112,115,108,111,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,112,115,108,111,99,107,44,92,110,32,32,32,32,66,73,99,111,110,67,97,112,115,108,111,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,112,115,108,111,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,100,67,104,101,99,107,108,105,115,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,100,67,104,101,99,107,108,105,115,116,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,100,72,101,97,100,105,110,103,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,100,72,101,97,100,105,110,103,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,100,73,109,97,103,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,100,73,109,97,103,101,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,100,76,105,115,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,100,76,105,115,116,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,100,84,101,120,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,100,84,101,120,116,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,68,111,119,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,68,111,119,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,76,101,102,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,76,101,102,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,85,112,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,85,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,85,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,116,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,116,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,116,50,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,116,51,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,116,51,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,116,52,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,116,52,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,116,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,116,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,116,67,104,101,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,116,67,104,101,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,116,68,97,115,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,116,68,97,115,104,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,116,68,97,115,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,116,68,97,115,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,116,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,116,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,116,80,108,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,116,80,108,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,116,88,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,116,88,44,92,110,32,32,32,32,66,73,99,111,110,67,97,114,116,88,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,114,116,88,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,97,115,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,115,104,44,92,110,32,32,32,32,66,73,99,111,110,67,97,115,104,83,116,97,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,115,104,83,116,97,99,107,44,92,110,32,32,32,32,66,73,99,111,110,67,97,115,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,97,115,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,68,111,116,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,68,111,116,115,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,68,111,116,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,68,111,116,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,76,101,102,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,81,117,111,116,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,81,117,111,116,101,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,81,117,111,116,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,81,117,111,116,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,84,101,120,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,84,101,120,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,97,116,84,101,120,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,97,116,84,101,120,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,99,107,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,99,107,50,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,99,107,50,65,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,99,107,50,65,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,99,107,50,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,99,107,50,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,99,107,50,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,99,107,50,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,99,107,65,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,99,107,65,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,67,111,110,116,114,97,99,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,67,111,110,116,114,97,99,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,69,120,112,97,110,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,69,120,112,97,110,100,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,85,112,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,85,112,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,67,111,110,116,114,97,99,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,67,111,110,116,114,97,99,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,85,112,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,69,120,112,97,110,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,69,120,112,97,110,100,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,67,104,101,118,114,111,110,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,85,112,44,92,110,32,32,32,32,66,73,99,111,110,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,105,114,99,108,101,72,97,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,105,114,99,108,101,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,67,105,114,99,108,101,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,105,114,99,108,101,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,105,112,98,111,97,114,100,44,92,110,32,32,32,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,105,112,98,111,97,114,100,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,68,97,116,97,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,105,112,98,111,97,114,100,68,97,116,97,44,92,110,32,32,32,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,77,105,110,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,105,112,98,111,97,114,100,77,105,110,117,115,44,92,110,32,32,32,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,105,112,98,111,97,114,100,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,67,108,105,112,98,111,97,114,100,88,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,105,112,98,111,97,114,100,88,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,99,107,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,99,107,72,105,115,116,111,114,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,99,107,72,105,115,116,111,114,121,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,80,108,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,80,108,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,44,92,110,32,32,32,32,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,111,100,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,111,100,101,44,92,110,32,32,32,32,66,73,99,111,110,67,111,100,101,83,108,97,115,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,111,100,101,83,108,97,115,104,44,92,110,32,32,32,32,66,73,99,111,110,67,111,100,101,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,111,100,101,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,44,92,110,32,32,32,32,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,44,92,110,32,32,32,32,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,111,108,117,109,110,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,111,108,117,109,110,115,44,92,110,32,32,32,32,66,73,99,111,110,67,111,108,117,109,110,115,71,97,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,111,108,117,109,110,115,71,97,112,44,92,110,32,32,32,32,66,73,99,111,110,67,111,109,109,97,110,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,111,109,109,97,110,100,44,92,110,32,32,32,32,66,73,99,111,110,67,111,109,112,97,115,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,111,109,112,97,115,115,44,92,110,32,32,32,32,66,73,99,111,110,67,111,109,112,97,115,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,111,109,112,97,115,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,111,110,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,111,110,101,44,92,110,32,32,32,32,66,73,99,111,110,67,111,110,101,83,116,114,105,112,101,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,111,110,101,83,116,114,105,112,101,100,44,92,110,32,32,32,32,66,73,99,111,110,67,111,110,116,114,111,108,108,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,111,110,116,114,111,108,108,101,114,44,92,110,32,32,32,32,66,73,99,111,110,67,112,117,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,112,117,44,92,110,32,32,32,32,66,73,99,111,110,67,112,117,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,112,117,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,44,92,110,32,32,32,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,44,92,110,32,32,32,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,44,92,110,32,32,32,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,114,111,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,114,111,112,44,92,110,32,32,32,32,66,73,99,111,110,67,117,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,117,112,44,92,110,32,32,32,32,66,73,99,111,110,67,117,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,117,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,117,112,83,116,114,97,119,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,117,112,83,116,114,97,119,44,92,110,32,32,32,32,66,73,99,111,110,67,117,114,115,111,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,117,114,115,111,114,44,92,110,32,32,32,32,66,73,99,111,110,67,117,114,115,111,114,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,117,114,115,111,114,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,67,117,114,115,111,114,84,101,120,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,67,117,114,115,111,114,84,101,120,116,44,92,110,32,32,32,32,66,73,99,111,110,68,97,115,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,97,115,104,44,92,110,32,32,32,32,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,105,97,103,114,97,109,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,97,103,114,97,109,50,44,92,110,32,32,32,32,66,73,99,111,110,68,105,97,103,114,97,109,50,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,97,103,114,97,109,50,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,105,97,103,114,97,109,51,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,97,103,114,97,109,51,44,92,110,32,32,32,32,66,73,99,111,110,68,105,97,103,114,97,109,51,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,97,103,114,97,109,51,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,105,97,109,111,110,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,97,109,111,110,100,44,92,110,32,32,32,32,66,73,99,111,110,68,105,97,109,111,110,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,97,109,111,110,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,105,97,109,111,110,100,72,97,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,97,109,111,110,100,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,68,105,99,101,49,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,99,101,49,44,92,110,32,32,32,32,66,73,99,111,110,68,105,99,101,49,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,99,101,49,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,105,99,101,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,99,101,50,44,92,110,32,32,32,32,66,73,99,111,110,68,105,99,101,50,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,99,101,50,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,105,99,101,51,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,99,101,51,44,92,110,32,32,32,32,66,73,99,111,110,68,105,99,101,51,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,99,101,51,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,105,99,101,52,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,99,101,52,44,92,110,32,32,32,32,66,73,99,111,110,68,105,99,101,52,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,99,101,52,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,105,99,101,53,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,99,101,53,44,92,110,32,32,32,32,66,73,99,111,110,68,105,99,101,53,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,99,101,53,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,105,99,101,54,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,99,101,54,44,92,110,32,32,32,32,66,73,99,111,110,68,105,99,101,54,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,99,101,54,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,105,115,99,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,115,99,44,92,110,32,32,32,32,66,73,99,111,110,68,105,115,99,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,115,99,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,105,115,99,111,114,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,115,99,111,114,100,44,92,110,32,32,32,32,66,73,99,111,110,68,105,115,112,108,97,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,115,112,108,97,121,44,92,110,32,32,32,32,66,73,99,111,110,68,105,115,112,108,97,121,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,115,112,108,97,121,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,72,111,114,105,122,111,110,116,97,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,72,111,114,105,122,111,110,116,97,108,44,92,110,32,32,32,32,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,86,101,114,116,105,99,97,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,86,101,114,116,105,99,97,108,44,92,110,32,32,32,32,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,44,92,110,32,32,32,32,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,111,111,114,79,112,101,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,111,111,114,79,112,101,110,44,92,110,32,32,32,32,66,73,99,111,110,68,111,111,114,79,112,101,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,111,111,114,79,112,101,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,111,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,111,116,44,92,110,32,32,32,32,66,73,99,111,110,68,111,119,110,108,111,97,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,111,119,110,108,111,97,100,44,92,110,32,32,32,32,66,73,99,111,110,68,114,111,112,108,101,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,114,111,112,108,101,116,44,92,110,32,32,32,32,66,73,99,111,110,68,114,111,112,108,101,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,114,111,112,108,101,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,68,114,111,112,108,101,116,72,97,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,68,114,111,112,108,101,116,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,69,97,114,98,117,100,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,97,114,98,117,100,115,44,92,110,32,32,32,32,66,73,99,111,110,69,97,115,101,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,97,115,101,108,44,92,110,32,32,32,32,66,73,99,111,110,69,97,115,101,108,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,97,115,101,108,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,103,103,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,103,103,44,92,110,32,32,32,32,66,73,99,111,110,69,103,103,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,103,103,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,103,103,70,114,105,101,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,103,103,70,114,105,101,100,44,92,110,32,32,32,32,66,73,99,111,110,69,106,101,99,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,106,101,99,116,44,92,110,32,32,32,32,66,73,99,111,110,69,106,101,99,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,106,101,99,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,87,105,110,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,87,105,110,107,44,92,110,32,32,32,32,66,73,99,111,110,69,109,111,106,105,87,105,110,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,109,111,106,105,87,105,110,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,110,118,101,108,111,112,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,110,118,101,108,111,112,101,44,92,110,32,32,32,32,66,73,99,111,110,69,110,118,101,108,111,112,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,110,118,101,108,111,112,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,44,92,110,32,32,32,32,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,44,92,110,32,32,32,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,44,92,110,32,32,32,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,44,92,110,32,32,32,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,44,92,110,32,32,32,32,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,120,99,108,117,100,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,120,99,108,117,100,101,44,92,110,32,32,32,32,66,73,99,111,110,69,121,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,121,101,44,92,110,32,32,32,32,66,73,99,111,110,69,121,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,121,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,121,101,83,108,97,115,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,121,101,83,108,97,115,104,44,92,110,32,32,32,32,66,73,99,111,110,69,121,101,83,108,97,115,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,121,101,83,108,97,115,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,69,121,101,103,108,97,115,115,101,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,69,121,101,103,108,97,115,115,101,115,44,92,110,32,32,32,32,66,73,99,111,110,70,97,99,101,98,111,111,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,97,99,101,98,111,111,107,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,66,114,101,97,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,66,114,101,97,107,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,66,114,101,97,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,66,114,101,97,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,67,104,101,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,67,104,101,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,67,111,100,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,67,111,100,101,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,67,111,100,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,67,111,100,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,68,105,102,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,68,105,102,102,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,68,105,102,102,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,68,105,102,102,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,115,101,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,115,101,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,97,115,101,108,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,97,115,101,108,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,120,99,101,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,120,99,101,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,69,120,99,101,108,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,69,120,99,101,108,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,70,111,110,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,70,111,110,116,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,70,111,110,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,70,111,110,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,73,109,97,103,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,73,109,97,103,101,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,73,109,97,103,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,73,109,97,103,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,76,111,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,76,111,99,107,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,76,111,99,107,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,76,111,99,107,50,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,76,111,99,107,50,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,76,111,99,107,50,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,76,111,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,76,111,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,77,105,110,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,77,105,110,117,115,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,77,105,110,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,77,105,110,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,77,117,115,105,99,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,77,117,115,105,99,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,77,117,115,105,99,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,77,117,115,105,99,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,80,108,97,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,80,108,97,121,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,80,108,97,121,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,80,108,97,121,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,80,108,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,80,108,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,80,111,115,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,80,111,115,116,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,80,111,115,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,80,111,115,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,80,112,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,80,112,116,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,80,112,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,80,112,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,82,117,108,101,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,82,117,108,101,100,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,82,117,108,101,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,82,117,108,101,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,84,101,120,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,84,101,120,116,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,84,101,120,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,84,101,120,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,87,111,114,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,87,111,114,100,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,87,111,114,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,87,111,114,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,88,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,88,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,88,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,88,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,90,105,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,90,105,112,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,90,105,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,90,105,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,115,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,101,115,65,108,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,101,115,65,108,116,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,109,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,109,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,116,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,116,101,114,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,116,101,114,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,116,101,114,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,116,101,114,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,116,101,114,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,108,97,103,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,108,97,103,44,92,110,32,32,32,32,66,73,99,111,110,70,108,97,103,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,108,97,103,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,108,111,119,101,114,49,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,108,111,119,101,114,49,44,92,110,32,32,32,32,66,73,99,111,110,70,108,111,119,101,114,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,108,111,119,101,114,50,44,92,110,32,32,32,32,66,73,99,111,110,70,108,111,119,101,114,51,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,108,111,119,101,114,51,44,92,110,32,32,32,32,66,73,99,111,110,70,111,108,100,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,111,108,100,101,114,44,92,110,32,32,32,32,66,73,99,111,110,70,111,108,100,101,114,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,111,108,100,101,114,50,44,92,110,32,32,32,32,66,73,99,111,110,70,111,108,100,101,114,50,79,112,101,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,111,108,100,101,114,50,79,112,101,110,44,92,110,32,32,32,32,66,73,99,111,110,70,111,108,100,101,114,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,111,108,100,101,114,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,70,111,108,100,101,114,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,111,108,100,101,114,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,111,108,100,101,114,77,105,110,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,111,108,100,101,114,77,105,110,117,115,44,92,110,32,32,32,32,66,73,99,111,110,70,111,108,100,101,114,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,111,108,100,101,114,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,44,92,110,32,32,32,32,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,111,108,100,101,114,88,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,111,108,100,101,114,88,44,92,110,32,32,32,32,66,73,99,111,110,70,111,110,116,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,111,110,116,115,44,92,110,32,32,32,32,66,73,99,111,110,70,111,114,119,97,114,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,111,114,119,97,114,100,44,92,110,32,32,32,32,66,73,99,111,110,70,111,114,119,97,114,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,111,114,119,97,114,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,70,114,111,110,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,114,111,110,116,44,92,110,32,32,32,32,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,44,92,110,32,32,32,32,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,69,120,105,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,69,120,105,116,44,92,110,32,32,32,32,66,73,99,111,110,70,117,110,110,101,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,117,110,110,101,108,44,92,110,32,32,32,32,66,73,99,111,110,70,117,110,110,101,108,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,70,117,110,110,101,108,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,71,101,97,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,101,97,114,44,92,110,32,32,32,32,66,73,99,111,110,71,101,97,114,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,101,97,114,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,71,101,97,114,87,105,100,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,101,97,114,87,105,100,101,44,92,110,32,32,32,32,66,73,99,111,110,71,101,97,114,87,105,100,101,67,111,110,110,101,99,116,101,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,101,97,114,87,105,100,101,67,111,110,110,101,99,116,101,100,44,92,110,32,32,32,32,66,73,99,111,110,71,101,109,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,101,109,44,92,110,32,32,32,32,66,73,99,111,110,71,101,111,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,101,111,44,92,110,32,32,32,32,66,73,99,111,110,71,101,111,65,108,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,101,111,65,108,116,44,92,110,32,32,32,32,66,73,99,111,110,71,101,111,65,108,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,101,111,65,108,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,71,101,111,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,101,111,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,71,105,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,105,102,116,44,92,110,32,32,32,32,66,73,99,111,110,71,105,102,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,105,102,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,71,105,116,104,117,98,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,105,116,104,117,98,44,92,110,32,32,32,32,66,73,99,111,110,71,108,111,98,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,108,111,98,101,44,92,110,32,32,32,32,66,73,99,111,110,71,108,111,98,101,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,108,111,98,101,50,44,92,110,32,32,32,32,66,73,99,111,110,71,111,111,103,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,111,111,103,108,101,44,92,110,32,32,32,32,66,73,99,111,110,71,114,97,112,104,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,114,97,112,104,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,71,114,97,112,104,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,114,97,112,104,85,112,44,92,110,32,32,32,32,66,73,99,111,110,71,114,105,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,114,105,100,44,92,110,32,32,32,32,66,73,99,111,110,71,114,105,100,49,120,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,114,105,100,49,120,50,44,92,110,32,32,32,32,66,73,99,111,110,71,114,105,100,49,120,50,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,114,105,100,49,120,50,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,71,114,105,100,51,120,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,114,105,100,51,120,50,44,92,110,32,32,32,32,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,44,92,110,32,32,32,32,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,71,114,105,100,51,120,51,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,114,105,100,51,120,51,44,92,110,32,32,32,32,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,44,92,110,32,32,32,32,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,71,114,105,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,114,105,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,71,114,105,112,72,111,114,105,122,111,110,116,97,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,114,105,112,72,111,114,105,122,111,110,116,97,108,44,92,110,32,32,32,32,66,73,99,111,110,71,114,105,112,86,101,114,116,105,99,97,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,71,114,105,112,86,101,114,116,105,99,97,108,44,92,110,32,32,32,32,66,73,99,111,110,72,97,109,109,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,97,109,109,101,114,44,92,110,32,32,32,32,66,73,99,111,110,72,97,110,100,73,110,100,101,120,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,97,110,100,73,110,100,101,120,44,92,110,32,32,32,32,66,73,99,111,110,72,97,110,100,73,110,100,101,120,84,104,117,109,98,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,97,110,100,73,110,100,101,120,84,104,117,109,98,44,92,110,32,32,32,32,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,85,112,44,92,110,32,32,32,32,66,73,99,111,110,72,97,110,100,98,97,103,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,97,110,100,98,97,103,44,92,110,32,32,32,32,66,73,99,111,110,72,97,110,100,98,97,103,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,97,110,100,98,97,103,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,72,97,115,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,97,115,104,44,92,110,32,32,32,32,66,73,99,111,110,72,100,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,100,100,44,92,110,32,32,32,32,66,73,99,111,110,72,100,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,100,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,44,92,110,32,32,32,32,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,72,100,100,82,97,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,100,100,82,97,99,107,44,92,110,32,32,32,32,66,73,99,111,110,72,100,100,82,97,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,100,100,82,97,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,72,100,100,83,116,97,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,100,100,83,116,97,99,107,44,92,110,32,32,32,32,66,73,99,111,110,72,100,100,83,116,97,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,100,100,83,116,97,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,72,101,97,100,112,104,111,110,101,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,101,97,100,112,104,111,110,101,115,44,92,110,32,32,32,32,66,73,99,111,110,72,101,97,100,115,101,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,101,97,100,115,101,116,44,92,110,32,32,32,32,66,73,99,111,110,72,101,97,114,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,101,97,114,116,44,92,110,32,32,32,32,66,73,99,111,110,72,101,97,114,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,101,97,114,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,72,101,97,114,116,72,97,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,101,97,114,116,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,72,101,112,116,97,103,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,101,112,116,97,103,111,110,44,92,110,32,32,32,32,66,73,99,111,110,72,101,112,116,97,103,111,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,101,112,116,97,103,111,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,72,101,112,116,97,103,111,110,72,97,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,101,112,116,97,103,111,110,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,72,101,120,97,103,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,101,120,97,103,111,110,44,92,110,32,32,32,32,66,73,99,111,110,72,101,120,97,103,111,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,101,120,97,103,111,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,72,101,120,97,103,111,110,72,97,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,101,120,97,103,111,110,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,72,111,117,114,103,108,97,115,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,111,117,114,103,108,97,115,115,44,92,110,32,32,32,32,66,73,99,111,110,72,111,117,114,103,108,97,115,115,66,111,116,116,111,109,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,111,117,114,103,108,97,115,115,66,111,116,116,111,109,44,92,110,32,32,32,32,66,73,99,111,110,72,111,117,114,103,108,97,115,115,83,112,108,105,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,111,117,114,103,108,97,115,115,83,112,108,105,116,44,92,110,32,32,32,32,66,73,99,111,110,72,111,117,114,103,108,97,115,115,84,111,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,111,117,114,103,108,97,115,115,84,111,112,44,92,110,32,32,32,32,66,73,99,111,110,72,111,117,115,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,111,117,115,101,44,92,110,32,32,32,32,66,73,99,111,110,72,111,117,115,101,68,111,111,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,111,117,115,101,68,111,111,114,44,92,110,32,32,32,32,66,73,99,111,110,72,111,117,115,101,68,111,111,114,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,111,117,115,101,68,111,111,114,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,72,111,117,115,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,111,117,115,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,72,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,72,114,44,92,110,32,32,32,32,66,73,99,111,110,73,109,97,103,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,109,97,103,101,44,92,110,32,32,32,32,66,73,99,111,110,73,109,97,103,101,65,108,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,109,97,103,101,65,108,116,44,92,110,32,32,32,32,66,73,99,111,110,73,109,97,103,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,109,97,103,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,73,109,97,103,101,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,109,97,103,101,115,44,92,110,32,32,32,32,66,73,99,111,110,73,110,98,111,120,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,110,98,111,120,44,92,110,32,32,32,32,66,73,99,111,110,73,110,98,111,120,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,110,98,111,120,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,73,110,98,111,120,101,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,110,98,111,120,101,115,44,92,110,32,32,32,32,66,73,99,111,110,73,110,98,111,120,101,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,110,98,111,120,101,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,73,110,102,111,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,110,102,111,44,92,110,32,32,32,32,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,44,92,110,32,32,32,32,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,84,101,120,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,84,101,120,116,44,92,110,32,32,32,32,66,73,99,111,110,73,110,115,116,97,103,114,97,109,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,110,115,116,97,103,114,97,109,44,92,110,32,32,32,32,66,73,99,111,110,73,110,116,101,114,115,101,99,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,73,110,116,101,114,115,101,99,116,44,92,110,32,32,32,32,66,73,99,111,110,74,111,117,114,110,97,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,44,92,110,32,32,32,32,66,73,99,111,110,74,111,117,114,110,97,108,65,108,98,117,109,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,65,108,98,117,109,44,92,110,32,32,32,32,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,85,112,44,92,110,32,32,32,32,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,44,92,110,32,32,32,32,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,74,111,117,114,110,97,108,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,74,111,117,114,110,97,108,67,111,100,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,67,111,100,101,44,92,110,32,32,32,32,66,73,99,111,110,74,111,117,114,110,97,108,77,101,100,105,99,97,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,77,101,100,105,99,97,108,44,92,110,32,32,32,32,66,73,99,111,110,74,111,117,114,110,97,108,77,105,110,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,77,105,110,117,115,44,92,110,32,32,32,32,66,73,99,111,110,74,111,117,114,110,97,108,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,74,111,117,114,110,97,108,82,105,99,104,116,101,120,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,82,105,99,104,116,101,120,116,44,92,110,32,32,32,32,66,73,99,111,110,74,111,117,114,110,97,108,84,101,120,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,84,101,120,116,44,92,110,32,32,32,32,66,73,99,111,110,74,111,117,114,110,97,108,88,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,88,44,92,110,32,32,32,32,66,73,99,111,110,74,111,117,114,110,97,108,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,115,44,92,110,32,32,32,32,66,73,99,111,110,74,111,121,115,116,105,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,111,121,115,116,105,99,107,44,92,110,32,32,32,32,66,73,99,111,110,74,117,115,116,105,102,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,117,115,116,105,102,121,44,92,110,32,32,32,32,66,73,99,111,110,74,117,115,116,105,102,121,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,117,115,116,105,102,121,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,74,117,115,116,105,102,121,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,74,117,115,116,105,102,121,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,75,97,110,98,97,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,75,97,110,98,97,110,44,92,110,32,32,32,32,66,73,99,111,110,75,97,110,98,97,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,75,97,110,98,97,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,75,101,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,75,101,121,44,92,110,32,32,32,32,66,73,99,111,110,75,101,121,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,75,101,121,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,75,101,121,98,111,97,114,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,75,101,121,98,111,97,114,100,44,92,110,32,32,32,32,66,73,99,111,110,75,101,121,98,111,97,114,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,75,101,121,98,111,97,114,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,76,97,100,100,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,100,100,101,114,44,92,110,32,32,32,32,66,73,99,111,110,76,97,109,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,109,112,44,92,110,32,32,32,32,66,73,99,111,110,76,97,109,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,109,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,76,97,112,116,111,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,112,116,111,112,44,92,110,32,32,32,32,66,73,99,111,110,76,97,112,116,111,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,112,116,111,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,76,97,121,101,114,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,121,101,114,115,44,92,110,32,32,32,32,66,73,99,111,110,76,97,121,101,114,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,121,101,114,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,76,97,121,101,114,115,72,97,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,121,101,114,115,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,44,92,110,32,32,32,32,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,44,92,110,32,32,32,32,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,82,101,118,101,114,115,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,82,101,118,101,114,115,101,44,92,110,32,32,32,32,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,44,92,110,32,32,32,32,66,73,99,111,110,76,97,121,111,117,116,83,112,108,105,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,121,111,117,116,83,112,108,105,116,44,92,110,32,32,32,32,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,44,92,110,32,32,32,32,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,44,92,110,32,32,32,32,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,44,92,110,32,32,32,32,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,82,101,118,101,114,115,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,82,101,118,101,114,115,101,44,92,110,32,32,32,32,66,73,99,111,110,76,97,121,111,117,116,84,104,114,101,101,67,111,108,117,109,110,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,121,111,117,116,84,104,114,101,101,67,111,108,117,109,110,115,44,92,110,32,32,32,32,66,73,99,111,110,76,97,121,111,117,116,87,116,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,97,121,111,117,116,87,116,102,44,92,110,32,32,32,32,66,73,99,111,110,76,105,102,101,80,114,101,115,101,114,118,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,105,102,101,80,114,101,115,101,114,118,101,114,44,92,110,32,32,32,32,66,73,99,111,110,76,105,103,104,116,110,105,110,103,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,105,103,104,116,110,105,110,103,44,92,110,32,32,32,32,66,73,99,111,110,76,105,103,104,116,110,105,110,103,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,105,103,104,116,110,105,110,103,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,76,105,110,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,105,110,107,44,92,110,32,32,32,32,66,73,99,111,110,76,105,110,107,52,53,100,101,103,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,105,110,107,52,53,100,101,103,44,92,110,32,32,32,32,66,73,99,111,110,76,105,110,107,101,100,105,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,105,110,107,101,100,105,110,44,92,110,32,32,32,32,66,73,99,111,110,76,105,115,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,105,115,116,44,92,110,32,32,32,32,66,73,99,111,110,76,105,115,116,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,105,115,116,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,76,105,115,116,78,101,115,116,101,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,105,115,116,78,101,115,116,101,100,44,92,110,32,32,32,32,66,73,99,111,110,76,105,115,116,79,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,105,115,116,79,108,44,92,110,32,32,32,32,66,73,99,111,110,76,105,115,116,83,116,97,114,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,105,115,116,83,116,97,114,115,44,92,110,32,32,32,32,66,73,99,111,110,76,105,115,116,84,97,115,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,105,115,116,84,97,115,107,44,92,110,32,32,32,32,66,73,99,111,110,76,105,115,116,85,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,105,115,116,85,108,44,92,110,32,32,32,32,66,73,99,111,110,76,111,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,111,99,107,44,92,110,32,32,32,32,66,73,99,111,110,76,111,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,76,111,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,77,97,105,108,98,111,120,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,97,105,108,98,111,120,44,92,110,32,32,32,32,66,73,99,111,110,77,97,105,108,98,111,120,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,97,105,108,98,111,120,50,44,92,110,32,32,32,32,66,73,99,111,110,77,97,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,97,112,44,92,110,32,32,32,32,66,73,99,111,110,77,97,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,97,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,77,97,114,107,100,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,97,114,107,100,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,77,97,114,107,100,111,119,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,97,114,107,100,111,119,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,77,101,110,117,65,112,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,101,110,117,65,112,112,44,92,110,32,32,32,32,66,73,99,111,110,77,101,110,117,65,112,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,101,110,117,65,112,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,44,92,110,32,32,32,32,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,44,92,110,32,32,32,32,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,77,101,110,117,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,101,110,117,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,77,101,110,117,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,101,110,117,85,112,44,92,110,32,32,32,32,66,73,99,111,110,77,105,99,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,105,99,44,92,110,32,32,32,32,66,73,99,111,110,77,105,99,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,105,99,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,77,105,99,77,117,116,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,105,99,77,117,116,101,44,92,110,32,32,32,32,66,73,99,111,110,77,105,99,77,117,116,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,105,99,77,117,116,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,77,105,110,101,99,97,114,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,105,110,101,99,97,114,116,44,92,110,32,32,32,32,66,73,99,111,110,77,105,110,101,99,97,114,116,76,111,97,100,101,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,105,110,101,99,97,114,116,76,111,97,100,101,100,44,92,110,32,32,32,32,66,73,99,111,110,77,111,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,111,111,110,44,92,110,32,32,32,32,66,73,99,111,110,77,111,117,115,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,111,117,115,101,44,92,110,32,32,32,32,66,73,99,111,110,77,111,117,115,101,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,111,117,115,101,50,44,92,110,32,32,32,32,66,73,99,111,110,77,111,117,115,101,51,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,111,117,115,101,51,44,92,110,32,32,32,32,66,73,99,111,110,77,117,115,105,99,78,111,116,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,117,115,105,99,78,111,116,101,44,92,110,32,32,32,32,66,73,99,111,110,77,117,115,105,99,78,111,116,101,66,101,97,109,101,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,117,115,105,99,78,111,116,101,66,101,97,109,101,100,44,92,110,32,32,32,32,66,73,99,111,110,77,117,115,105,99,78,111,116,101,76,105,115,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,117,115,105,99,78,111,116,101,76,105,115,116,44,92,110,32,32,32,32,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,44,92,110,32,32,32,32,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,78,101,119,115,112,97,112,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,78,101,119,115,112,97,112,101,114,44,92,110,32,32,32,32,66,73,99,111,110,78,111,100,101,77,105,110,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,78,111,100,101,77,105,110,117,115,44,92,110,32,32,32,32,66,73,99,111,110,78,111,100,101,77,105,110,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,78,111,100,101,77,105,110,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,78,111,100,101,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,78,111,100,101,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,78,111,100,101,80,108,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,78,111,100,101,80,108,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,78,117,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,78,117,116,44,92,110,32,32,32,32,66,73,99,111,110,78,117,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,78,117,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,79,99,116,97,103,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,79,99,116,97,103,111,110,44,92,110,32,32,32,32,66,73,99,111,110,79,99,116,97,103,111,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,79,99,116,97,103,111,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,79,99,116,97,103,111,110,72,97,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,79,99,116,97,103,111,110,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,79,112,116,105,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,79,112,116,105,111,110,44,92,110,32,32,32,32,66,73,99,111,110,79,117,116,108,101,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,79,117,116,108,101,116,44,92,110,32,32,32,32,66,73,99,111,110,80,97,112,101,114,99,108,105,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,112,101,114,99,108,105,112,44,92,110,32,32,32,32,66,73,99,111,110,80,97,114,97,103,114,97,112,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,114,97,103,114,97,112,104,44,92,110,32,32,32,32,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,44,92,110,32,32,32,32,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,44,92,110,32,32,32,32,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,97,116,99,104,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,116,99,104,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,80,97,116,99,104,80,108,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,116,99,104,80,108,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,44,92,110,32,32,32,32,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,97,117,115,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,117,115,101,44,92,110,32,32,32,32,66,73,99,111,110,80,97,117,115,101,66,116,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,117,115,101,66,116,110,44,92,110,32,32,32,32,66,73,99,111,110,80,97,117,115,101,66,116,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,117,115,101,66,116,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,97,117,115,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,97,117,115,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,101,97,99,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,97,99,101,44,92,110,32,32,32,32,66,73,99,111,110,80,101,97,99,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,97,99,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,101,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,110,44,92,110,32,32,32,32,66,73,99,111,110,80,101,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,101,110,99,105,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,110,99,105,108,44,92,110,32,32,32,32,66,73,99,111,110,80,101,110,99,105,108,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,110,99,105,108,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,101,110,99,105,108,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,110,99,105,108,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,80,101,110,116,97,103,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,110,116,97,103,111,110,44,92,110,32,32,32,32,66,73,99,111,110,80,101,110,116,97,103,111,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,110,116,97,103,111,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,101,110,116,97,103,111,110,72,97,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,110,116,97,103,111,110,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,80,101,111,112,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,111,112,108,101,44,92,110,32,32,32,32,66,73,99,111,110,80,101,111,112,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,111,112,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,99,101,110,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,99,101,110,116,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,66,111,117,110,100,105,110,103,66,111,120,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,66,111,117,110,100,105,110,103,66,111,120,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,76,105,110,101,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,76,105,110,101,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,88,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,88,44,92,110,32,32,32,32,66,73,99,111,110,80,101,114,115,111,110,88,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,101,114,115,111,110,88,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,104,111,110,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,104,111,110,101,44,92,110,32,32,32,32,66,73,99,111,110,80,104,111,110,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,104,111,110,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,44,92,110,32,32,32,32,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,104,111,110,101,86,105,98,114,97,116,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,104,111,110,101,86,105,98,114,97,116,101,44,92,110,32,32,32,32,66,73,99,111,110,80,105,101,67,104,97,114,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,105,101,67,104,97,114,116,44,92,110,32,32,32,32,66,73,99,111,110,80,105,101,67,104,97,114,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,105,101,67,104,97,114,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,105,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,105,112,44,92,110,32,32,32,32,66,73,99,111,110,80,105,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,105,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,108,97,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,108,97,121,44,92,110,32,32,32,32,66,73,99,111,110,80,108,97,121,66,116,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,108,97,121,66,116,110,44,92,110,32,32,32,32,66,73,99,111,110,80,108,97,121,66,116,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,108,97,121,66,116,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,108,97,121,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,108,97,121,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,108,117,103,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,108,117,103,44,92,110,32,32,32,32,66,73,99,111,110,80,108,117,103,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,108,117,103,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,111,119,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,111,119,101,114,44,92,110,32,32,32,32,66,73,99,111,110,80,114,105,110,116,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,114,105,110,116,101,114,44,92,110,32,32,32,32,66,73,99,111,110,80,114,105,110,116,101,114,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,114,105,110,116,101,114,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,80,117,122,122,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,117,122,122,108,101,44,92,110,32,32,32,32,66,73,99,111,110,80,117,122,122,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,80,117,122,122,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,81,117,101,115,116,105,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,44,92,110,32,32,32,32,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,44,92,110,32,32,32,32,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,44,92,110,32,32,32,32,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,82,101,99,101,105,112,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,99,101,105,112,116,44,92,110,32,32,32,32,66,73,99,111,110,82,101,99,101,105,112,116,67,117,116,111,102,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,99,101,105,112,116,67,117,116,111,102,102,44,92,110,32,32,32,32,66,73,99,111,110,82,101,99,101,112,116,105,111,110,48,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,99,101,112,116,105,111,110,48,44,92,110,32,32,32,32,66,73,99,111,110,82,101,99,101,112,116,105,111,110,49,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,99,101,112,116,105,111,110,49,44,92,110,32,32,32,32,66,73,99,111,110,82,101,99,101,112,116,105,111,110,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,99,101,112,116,105,111,110,50,44,92,110,32,32,32,32,66,73,99,111,110,82,101,99,101,112,116,105,111,110,51,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,99,101,112,116,105,111,110,51,44,92,110,32,32,32,32,66,73,99,111,110,82,101,99,101,112,116,105,111,110,52,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,99,101,112,116,105,111,110,52,44,92,110,32,32,32,32,66,73,99,111,110,82,101,99,111,114,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,99,111,114,100,44,92,110,32,32,32,32,66,73,99,111,110,82,101,99,111,114,100,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,99,111,114,100,50,44,92,110,32,32,32,32,66,73,99,111,110,82,101,99,111,114,100,50,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,99,111,114,100,50,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,82,101,99,111,114,100,66,116,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,99,111,114,100,66,116,110,44,92,110,32,32,32,32,66,73,99,111,110,82,101,99,111,114,100,66,116,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,99,111,114,100,66,116,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,82,101,99,111,114,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,99,111,114,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,82,101,112,108,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,112,108,121,44,92,110,32,32,32,32,66,73,99,111,110,82,101,112,108,121,65,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,112,108,121,65,108,108,44,92,110,32,32,32,32,66,73,99,111,110,82,101,112,108,121,65,108,108,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,112,108,121,65,108,108,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,82,101,112,108,121,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,101,112,108,121,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,82,115,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,115,115,44,92,110,32,32,32,32,66,73,99,111,110,82,115,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,82,115,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,99,105,115,115,111,114,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,99,105,115,115,111,114,115,44,92,110,32,32,32,32,66,73,99,111,110,83,99,114,101,119,100,114,105,118,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,99,114,101,119,100,114,105,118,101,114,44,92,110,32,32,32,32,66,73,99,111,110,83,101,97,114,99,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,101,97,114,99,104,44,92,110,32,32,32,32,66,73,99,111,110,83,101,103,109,101,110,116,101,100,78,97,118,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,101,103,109,101,110,116,101,100,78,97,118,44,92,110,32,32,32,32,66,73,99,111,110,83,101,114,118,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,101,114,118,101,114,44,92,110,32,32,32,32,66,73,99,111,110,83,104,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,83,104,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,69,120,99,108,97,109,97,116,105,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,69,120,99,108,97,109,97,116,105,111,110,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,67,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,67,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,69,120,99,108,97,109,97,116,105,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,69,120,99,108,97,109,97,116,105,111,110,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,77,105,110,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,77,105,110,117,115,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,88,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,88,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,77,105,110,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,77,105,110,117,115,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,83,104,97,100,101,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,83,104,97,100,101,100,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,101,108,100,88,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,101,108,100,88,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,102,116,44,92,110,32,32,32,32,66,73,99,111,110,83,104,105,102,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,105,102,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,104,111,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,111,112,44,92,110,32,32,32,32,66,73,99,111,110,83,104,111,112,87,105,110,100,111,119,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,111,112,87,105,110,100,111,119,44,92,110,32,32,32,32,66,73,99,111,110,83,104,117,102,102,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,104,117,102,102,108,101,44,92,110,32,32,32,32,66,73,99,111,110,83,105,103,110,112,111,115,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,105,103,110,112,111,115,116,44,92,110,32,32,32,32,66,73,99,111,110,83,105,103,110,112,111,115,116,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,105,103,110,112,111,115,116,50,44,92,110,32,32,32,32,66,73,99,111,110,83,105,103,110,112,111,115,116,50,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,105,103,110,112,111,115,116,50,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,105,103,110,112,111,115,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,105,103,110,112,111,115,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,44,92,110,32,32,32,32,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,105,109,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,105,109,44,92,110,32,32,32,32,66,73,99,111,110,83,105,109,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,105,109,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,69,110,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,69,110,100,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,69,110,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,69,110,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,83,116,97,114,116,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,107,105,112,83,116,97,114,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,107,105,112,83,116,97,114,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,108,97,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,108,97,99,107,44,92,110,32,32,32,32,66,73,99,111,110,83,108,97,115,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,108,97,115,104,44,92,110,32,32,32,32,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,108,105,100,101,114,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,108,105,100,101,114,115,44,92,110,32,32,32,32,66,73,99,111,110,83,109,97,114,116,119,97,116,99,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,109,97,114,116,119,97,116,99,104,44,92,110,32,32,32,32,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,65,108,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,65,108,116,44,92,110,32,32,32,32,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,44,92,110,32,32,32,32,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,65,108,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,65,108,116,44,92,110,32,32,32,32,66,73,99,111,110,83,111,114,116,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,111,114,116,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,83,111,114,116,68,111,119,110,65,108,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,111,114,116,68,111,119,110,65,108,116,44,92,110,32,32,32,32,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,65,108,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,65,108,116,44,92,110,32,32,32,32,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,44,92,110,32,32,32,32,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,65,108,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,65,108,116,44,92,110,32,32,32,32,66,73,99,111,110,83,111,114,116,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,111,114,116,85,112,44,92,110,32,32,32,32,66,73,99,111,110,83,111,114,116,85,112,65,108,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,111,114,116,85,112,65,108,116,44,92,110,32,32,32,32,66,73,99,111,110,83,111,117,110,100,119,97,118,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,111,117,110,100,119,97,118,101,44,92,110,32,32,32,32,66,73,99,111,110,83,112,101,97,107,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,112,101,97,107,101,114,44,92,110,32,32,32,32,66,73,99,111,110,83,112,101,97,107,101,114,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,112,101,97,107,101,114,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,112,101,108,108,99,104,101,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,112,101,108,108,99,104,101,99,107,44,92,110,32,32,32,32,66,73,99,111,110,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,113,117,97,114,101,72,97,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,113,117,97,114,101,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,83,116,97,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,97,114,44,92,110,32,32,32,32,66,73,99,111,110,83,116,97,114,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,97,114,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,116,97,114,72,97,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,97,114,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,83,116,105,99,107,105,101,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,105,99,107,105,101,115,44,92,110,32,32,32,32,66,73,99,111,110,83,116,105,99,107,105,101,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,105,99,107,105,101,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,116,105,99,107,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,105,99,107,121,44,92,110,32,32,32,32,66,73,99,111,110,83,116,105,99,107,121,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,105,99,107,121,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,116,111,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,111,112,44,92,110,32,32,32,32,66,73,99,111,110,83,116,111,112,66,116,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,111,112,66,116,110,44,92,110,32,32,32,32,66,73,99,111,110,83,116,111,112,66,116,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,111,112,66,116,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,116,111,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,111,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,44,92,110,32,32,32,32,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,116,111,112,119,97,116,99,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,111,112,119,97,116,99,104,44,92,110,32,32,32,32,66,73,99,111,110,83,116,111,112,119,97,116,99,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,116,111,112,119,97,116,99,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,117,98,116,114,97,99,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,117,98,116,114,97,99,116,44,92,110,32,32,32,32,66,73,99,111,110,83,117,105,116,67,108,117,98,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,117,105,116,67,108,117,98,44,92,110,32,32,32,32,66,73,99,111,110,83,117,105,116,67,108,117,98,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,117,105,116,67,108,117,98,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,44,92,110,32,32,32,32,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,117,105,116,72,101,97,114,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,117,105,116,72,101,97,114,116,44,92,110,32,32,32,32,66,73,99,111,110,83,117,105,116,72,101,97,114,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,117,105,116,72,101,97,114,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,117,105,116,83,112,97,100,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,117,105,116,83,112,97,100,101,44,92,110,32,32,32,32,66,73,99,111,110,83,117,105,116,83,112,97,100,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,117,105,116,83,112,97,100,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,83,117,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,117,110,44,92,110,32,32,32,32,66,73,99,111,110,83,117,110,103,108,97,115,115,101,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,83,117,110,103,108,97,115,115,101,115,44,92,110,32,32,32,32,66,73,99,111,110,84,97,98,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,97,98,108,101,44,92,110,32,32,32,32,66,73,99,111,110,84,97,98,108,101,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,97,98,108,101,116,44,92,110,32,32,32,32,66,73,99,111,110,84,97,98,108,101,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,97,98,108,101,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,44,92,110,32,32,32,32,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,97,103,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,97,103,44,92,110,32,32,32,32,66,73,99,111,110,84,97,103,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,97,103,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,97,103,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,97,103,115,44,92,110,32,32,32,32,66,73,99,111,110,84,97,103,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,97,103,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,44,92,110,32,32,32,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,44,92,110,32,32,32,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,44,92,110,32,32,32,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,44,92,110,32,32,32,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,44,92,110,32,32,32,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,44,92,110,32,32,32,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,44,92,110,32,32,32,32,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,101,114,109,105,110,97,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,114,109,105,110,97,108,44,92,110,32,32,32,32,66,73,99,111,110,84,101,114,109,105,110,97,108,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,114,109,105,110,97,108,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,101,120,116,67,101,110,116,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,120,116,67,101,110,116,101,114,44,92,110,32,32,32,32,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,84,101,120,116,76,101,102,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,120,116,76,101,102,116,44,92,110,32,32,32,32,66,73,99,111,110,84,101,120,116,80,97,114,97,103,114,97,112,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,120,116,80,97,114,97,103,114,97,112,104,44,92,110,32,32,32,32,66,73,99,111,110,84,101,120,116,82,105,103,104,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,120,116,82,105,103,104,116,44,92,110,32,32,32,32,66,73,99,111,110,84,101,120,116,97,114,101,97,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,120,116,97,114,101,97,44,92,110,32,32,32,32,66,73,99,111,110,84,101,120,116,97,114,101,97,82,101,115,105,122,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,120,116,97,114,101,97,82,101,115,105,122,101,44,92,110,32,32,32,32,66,73,99,111,110,84,101,120,116,97,114,101,97,84,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,101,120,116,97,114,101,97,84,44,92,110,32,32,32,32,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,44,92,110,32,32,32,32,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,72,97,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,84,104,114,101,101,68,111,116,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,104,114,101,101,68,111,116,115,44,92,110,32,32,32,32,66,73,99,111,110,84,104,114,101,101,68,111,116,115,86,101,114,116,105,99,97,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,104,114,101,101,68,111,116,115,86,101,114,116,105,99,97,108,44,92,110,32,32,32,32,66,73,99,111,110,84,111,103,103,108,101,50,79,102,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,111,103,103,108,101,50,79,102,102,44,92,110,32,32,32,32,66,73,99,111,110,84,111,103,103,108,101,50,79,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,111,103,103,108,101,50,79,110,44,92,110,32,32,32,32,66,73,99,111,110,84,111,103,103,108,101,79,102,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,111,103,103,108,101,79,102,102,44,92,110,32,32,32,32,66,73,99,111,110,84,111,103,103,108,101,79,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,111,103,103,108,101,79,110,44,92,110,32,32,32,32,66,73,99,111,110,84,111,103,103,108,101,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,111,103,103,108,101,115,44,92,110,32,32,32,32,66,73,99,111,110,84,111,103,103,108,101,115,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,111,103,103,108,101,115,50,44,92,110,32,32,32,32,66,73,99,111,110,84,111,111,108,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,111,111,108,115,44,92,110,32,32,32,32,66,73,99,111,110,84,114,97,115,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,114,97,115,104,44,92,110,32,32,32,32,66,73,99,111,110,84,114,97,115,104,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,114,97,115,104,50,44,92,110,32,32,32,32,66,73,99,111,110,84,114,97,115,104,50,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,114,97,115,104,50,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,114,97,115,104,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,114,97,115,104,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,114,101,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,114,101,101,44,92,110,32,32,32,32,66,73,99,111,110,84,114,101,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,114,101,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,114,105,97,110,103,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,114,105,97,110,103,108,101,44,92,110,32,32,32,32,66,73,99,111,110,84,114,105,97,110,103,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,114,105,97,110,103,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,114,105,97,110,103,108,101,72,97,108,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,114,105,97,110,103,108,101,72,97,108,102,44,92,110,32,32,32,32,66,73,99,111,110,84,114,111,112,104,121,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,114,111,112,104,121,44,92,110,32,32,32,32,66,73,99,111,110,84,114,111,112,104,121,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,114,111,112,104,121,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,114,117,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,114,117,99,107,44,92,110,32,32,32,32,66,73,99,111,110,84,114,117,99,107,70,108,97,116,98,101,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,114,117,99,107,70,108,97,116,98,101,100,44,92,110,32,32,32,32,66,73,99,111,110,84,118,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,118,44,92,110,32,32,32,32,66,73,99,111,110,84,118,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,118,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,84,119,105,116,99,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,119,105,116,99,104,44,92,110,32,32,32,32,66,73,99,111,110,84,119,105,116,116,101,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,119,105,116,116,101,114,44,92,110,32,32,32,32,66,73,99,111,110,84,121,112,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,121,112,101,44,92,110,32,32,32,32,66,73,99,111,110,84,121,112,101,66,111,108,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,121,112,101,66,111,108,100,44,92,110,32,32,32,32,66,73,99,111,110,84,121,112,101,72,49,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,121,112,101,72,49,44,92,110,32,32,32,32,66,73,99,111,110,84,121,112,101,72,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,121,112,101,72,50,44,92,110,32,32,32,32,66,73,99,111,110,84,121,112,101,72,51,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,121,112,101,72,51,44,92,110,32,32,32,32,66,73,99,111,110,84,121,112,101,73,116,97,108,105,99,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,121,112,101,73,116,97,108,105,99,44,92,110,32,32,32,32,66,73,99,111,110,84,121,112,101,83,116,114,105,107,101,116,104,114,111,117,103,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,121,112,101,83,116,114,105,107,101,116,104,114,111,117,103,104,44,92,110,32,32,32,32,66,73,99,111,110,84,121,112,101,85,110,100,101,114,108,105,110,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,84,121,112,101,85,110,100,101,114,108,105,110,101,44,92,110,32,32,32,32,66,73,99,111,110,85,105,67,104,101,99,107,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,85,105,67,104,101,99,107,115,44,92,110,32,32,32,32,66,73,99,111,110,85,105,67,104,101,99,107,115,71,114,105,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,85,105,67,104,101,99,107,115,71,114,105,100,44,92,110,32,32,32,32,66,73,99,111,110,85,105,82,97,100,105,111,115,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,85,105,82,97,100,105,111,115,44,92,110,32,32,32,32,66,73,99,111,110,85,105,82,97,100,105,111,115,71,114,105,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,85,105,82,97,100,105,111,115,71,114,105,100,44,92,110,32,32,32,32,66,73,99,111,110,85,110,105,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,85,110,105,111,110,44,92,110,32,32,32,32,66,73,99,111,110,85,110,108,111,99,107,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,85,110,108,111,99,107,44,92,110,32,32,32,32,66,73,99,111,110,85,110,108,111,99,107,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,85,110,108,111,99,107,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,85,112,99,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,85,112,99,44,92,110,32,32,32,32,66,73,99,111,110,85,112,99,83,99,97,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,85,112,99,83,99,97,110,44,92,110,32,32,32,32,66,73,99,111,110,85,112,108,111,97,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,85,112,108,111,97,100,44,92,110,32,32,32,32,66,73,99,111,110,86,101,99,116,111,114,80,101,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,86,101,99,116,111,114,80,101,110,44,92,110,32,32,32,32,66,73,99,111,110,86,105,101,119,76,105,115,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,86,105,101,119,76,105,115,116,44,92,110,32,32,32,32,66,73,99,111,110,86,105,101,119,83,116,97,99,107,101,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,86,105,101,119,83,116,97,99,107,101,100,44,92,110,32,32,32,32,66,73,99,111,110,86,105,110,121,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,86,105,110,121,108,44,92,110,32,32,32,32,66,73,99,111,110,86,105,110,121,108,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,86,105,110,121,108,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,86,111,105,99,101,109,97,105,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,86,111,105,99,101,109,97,105,108,44,92,110,32,32,32,32,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,44,92,110,32,32,32,32,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,44,92,110,32,32,32,32,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,86,111,108,117,109,101,79,102,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,86,111,108,117,109,101,79,102,102,44,92,110,32,32,32,32,66,73,99,111,110,86,111,108,117,109,101,79,102,102,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,86,111,108,117,109,101,79,102,102,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,86,111,108,117,109,101,85,112,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,86,111,108,117,109,101,85,112,44,92,110,32,32,32,32,66,73,99,111,110,86,111,108,117,109,101,85,112,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,86,111,108,117,109,101,85,112,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,86,114,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,86,114,44,92,110,32,32,32,32,66,73,99,111,110,87,97,108,108,101,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,87,97,108,108,101,116,44,92,110,32,32,32,32,66,73,99,111,110,87,97,108,108,101,116,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,87,97,108,108,101,116,50,44,92,110,32,32,32,32,66,73,99,111,110,87,97,108,108,101,116,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,87,97,108,108,101,116,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,87,97,116,99,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,87,97,116,99,104,44,92,110,32,32,32,32,66,73,99,111,110,87,105,102,105,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,87,105,102,105,44,92,110,32,32,32,32,66,73,99,111,110,87,105,102,105,49,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,87,105,102,105,49,44,92,110,32,32,32,32,66,73,99,111,110,87,105,102,105,50,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,87,105,102,105,50,44,92,110,32,32,32,32,66,73,99,111,110,87,105,102,105,79,102,102,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,87,105,102,105,79,102,102,44,92,110,32,32,32,32,66,73,99,111,110,87,105,110,100,111,119,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,87,105,110,100,111,119,44,92,110,32,32,32,32,66,73,99,111,110,87,114,101,110,99,104,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,87,114,101,110,99,104,44,92,110,32,32,32,32,66,73,99,111,110,88,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,88,44,92,110,32,32,32,32,66,73,99,111,110,88,67,105,114,99,108,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,88,67,105,114,99,108,101,44,92,110,32,32,32,32,66,73,99,111,110,88,67,105,114,99,108,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,88,67,105,114,99,108,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,88,68,105,97,109,111,110,100,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,88,68,105,97,109,111,110,100,44,92,110,32,32,32,32,66,73,99,111,110,88,68,105,97,109,111,110,100,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,88,68,105,97,109,111,110,100,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,88,79,99,116,97,103,111,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,88,79,99,116,97,103,111,110,44,92,110,32,32,32,32,66,73,99,111,110,88,79,99,116,97,103,111,110,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,88,79,99,116,97,103,111,110,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,88,83,113,117,97,114,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,88,83,113,117,97,114,101,44,92,110,32,32,32,32,66,73,99,111,110,88,83,113,117,97,114,101,70,105,108,108,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,88,83,113,117,97,114,101,70,105,108,108,44,92,110,32,32,32,32,66,73,99,111,110,89,111,117,116,117,98,101,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,89,111,117,116,117,98,101,44,92,110,32,32,32,32,66,73,99,111,110,90,111,111,109,73,110,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,90,111,111,109,73,110,44,92,110,32,32,32,32,66,73,99,111,110,90,111,111,109,79,117,116,58,32,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,73,99,111,110,90,111,111,109,79,117,116,92,110,32,32,125,92,110,125,41,59,32,47,47,32,69,120,112,111,114,116,32,116,104,101,32,66,111,111,116,115,116,114,97,112,86,117,101,73,99,111,110,115,32,112,108,117,103,105,110,32,105,110,115,116,97,108,108,101,114,92,110,47,47,32,77,97,105,110,108,121,32,102,111,114,32,116,104,101,32,115,116,97,110,100,45,97,108,111,110,101,32,98,111,111,116,115,116,114,97,112,45,118,117,101,45,105,99,111,110,115,46,120,120,120,46,106,115,32,98,117,105,108,100,115,92,110,92,110,118,97,114,32,66,111,111,116,115,116,114,97,112,86,117,101,73,99,111,110,115,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,108,117,103,105,110,70,97,99,116,111,114,121,78,111,67,111,110,102,105,103,41,40,123,92,110,32,32,112,108,117,103,105,110,115,58,32,123,92,110,32,32,32,32,73,99,111,110,115,80,108,117,103,105,110,58,32,73,99,111,110,115,80,108,117,103,105,110,92,110,32,32,125,92,110,125,44,32,123,92,110,32,32,78,65,77,69,58,32,39,66,111,111,116,115,116,114,97,112,86,117,101,73,99,111,110,115,39,92,110,125,41,59,32,47,47,32,45,45,45,32,69,78,68,32,65,85,84,79,45,71,69,78,69,82,65,84,69,68,32,70,73,76,69,32,45,45,45,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,112,108,117,103,105,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,65,108,101,114,116,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,97,108,101,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,65,108,101,114,116,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,65,115,112,101,99,116,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,97,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,65,115,112,101,99,116,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,65,118,97,116,97,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,97,118,97,116,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,65,118,97,116,97,114,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,65,108,101,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,97,108,101,114,116,95,97,108,101,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,66,65,108,101,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,65,115,112,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,97,115,112,101,99,116,95,97,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,66,65,115,112,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,65,118,97,116,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,97,118,97,116,97,114,95,97,118,97,116,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,66,65,118,97,116,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,65,118,97,116,97,114,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,97,118,97,116,97,114,95,97,118,97,116,97,114,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,66,65,118,97,116,97,114,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,97,100,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,98,97,100,103,101,95,98,97,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,66,66,97,100,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,114,101,97,100,99,114,117,109,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,98,114,101,97,100,99,114,117,109,98,95,98,114,101,97,100,99,114,117,109,98,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,66,66,114,101,97,100,99,114,117,109,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,114,101,97,100,99,114,117,109,98,73,116,101,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,98,114,101,97,100,99,114,117,109,98,95,98,114,101,97,100,99,114,117,109,98,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,66,66,114,101,97,100,99,114,117,109,98,73,116,101,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,117,116,116,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,66,66,117,116,116,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,117,116,116,111,110,67,108,111,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,66,66,117,116,116,111,110,67,108,111,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,117,116,116,111,110,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,98,117,116,116,111,110,95,103,114,111,117,112,95,98,117,116,116,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,66,66,117,116,116,111,110,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,66,117,116,116,111,110,84,111,111,108,98,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,98,117,116,116,111,110,95,116,111,111,108,98,97,114,95,98,117,116,116,111,110,95,116,111,111,108,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,46,66,66,117,116,116,111,110,84,111,111,108,98,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,108,101,110,100,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,108,101,110,100,97,114,95,99,97,108,101,110,100,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,46,66,67,97,108,101,110,100,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,50,95,95,46,66,67,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,66,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,51,95,95,46,66,67,97,114,100,66,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,70,111,111,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,102,111,111,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,52,95,95,46,66,67,97,114,100,70,111,111,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,53,95,95,46,66,67,97,114,100,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,72,101,97,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,104,101,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,54,95,95,46,66,67,97,114,100,72,101,97,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,73,109,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,55,95,95,46,66,67,97,114,100,73,109,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,73,109,103,76,97,122,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,105,109,103,95,108,97,122,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,56,95,95,46,66,67,97,114,100,73,109,103,76,97,122,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,83,117,98,84,105,116,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,115,117,98,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,57,95,95,46,66,67,97,114,100,83,117,98,84,105,116,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,48,95,95,46,66,67,97,114,100,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,100,84,105,116,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,49,95,95,46,66,67,97,114,100,84,105,116,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,111,117,115,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,111,117,115,101,108,95,99,97,114,111,117,115,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,51,95,95,46,66,67,97,114,111,117,115,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,97,114,111,117,115,101,108,83,108,105,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,111,117,115,101,108,95,99,97,114,111,117,115,101,108,95,115,108,105,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,52,95,95,46,66,67,97,114,111,117,115,101,108,83,108,105,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,111,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,108,97,121,111,117,116,95,99,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,55,95,95,46,66,67,111,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,111,108,108,97,112,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,111,108,108,97,112,115,101,95,99,111,108,108,97,112,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,54,95,95,46,66,67,111,108,108,97,112,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,67,111,110,116,97,105,110,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,108,97,121,111,117,116,95,99,111,110,116,97,105,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,53,95,95,46,66,67,111,110,116,97,105,110,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,56,95,95,46,66,68,114,111,112,100,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,68,105,118,105,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,100,105,118,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,49,95,95,46,66,68,114,111,112,100,111,119,110,68,105,118,105,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,70,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,50,95,95,46,66,68,114,111,112,100,111,119,110,70,111,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,51,95,95,46,66,68,114,111,112,100,111,119,110,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,72,101,97,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,104,101,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,52,95,95,46,66,68,114,111,112,100,111,119,110,72,101,97,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,73,116,101,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,57,95,95,46,66,68,114,111,112,100,111,119,110,73,116,101,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,73,116,101,109,66,117,116,116,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,105,116,101,109,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,48,95,95,46,66,68,114,111,112,100,111,119,110,73,116,101,109,66,117,116,116,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,68,114,111,112,100,111,119,110,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,53,95,95,46,66,68,114,111,112,100,111,119,110,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,69,109,98,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,101,109,98,101,100,95,101,109,98,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,55,95,95,46,66,69,109,98,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,57,95,95,46,66,70,111,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,67,104,101,99,107,98,111,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,53,95,95,46,66,70,111,114,109,67,104,101,99,107,98,111,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,67,104,101,99,107,98,111,120,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,54,95,95,46,66,70,111,114,109,67,104,101,99,107,98,111,120,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,68,97,116,97,108,105,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,102,111,114,109,95,100,97,116,97,108,105,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,48,95,95,46,66,70,111,114,109,68,97,116,97,108,105,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,68,97,116,101,112,105,99,107,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,100,97,116,101,112,105,99,107,101,114,95,102,111,114,109,95,100,97,116,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,56,95,95,46,66,70,111,114,109,68,97,116,101,112,105,99,107,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,70,105,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,102,105,108,101,95,102,111,114,109,95,102,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,48,95,95,46,66,70,111,114,109,70,105,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,103,114,111,117,112,95,102,111,114,109,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,50,95,95,46,66,70,111,114,109,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,73,110,112,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,105,110,112,117,116,95,102,111,114,109,95,105,110,112,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,52,95,95,46,66,70,111,114,109,73,110,112,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,73,110,118,97,108,105,100,70,101,101,100,98,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,102,111,114,109,95,105,110,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,50,95,95,46,66,70,111,114,109,73,110,118,97,108,105,100,70,101,101,100,98,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,82,97,100,105,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,114,97,100,105,111,95,102,111,114,109,95,114,97,100,105,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,54,95,95,46,66,70,111,114,109,82,97,100,105,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,82,97,100,105,111,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,114,97,100,105,111,95,102,111,114,109,95,114,97,100,105,111,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,55,95,95,46,66,70,111,114,109,82,97,100,105,111,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,82,97,116,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,114,97,116,105,110,103,95,102,111,114,109,95,114,97,116,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,57,95,95,46,66,70,111,114,109,82,97,116,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,82,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,108,97,121,111,117,116,95,102,111,114,109,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,56,95,95,46,66,70,111,114,109,82,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,83,101,108,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,115,101,108,101,99,116,95,102,111,114,109,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,52,95,95,46,66,70,111,114,109,83,101,108,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,115,101,108,101,99,116,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,53,95,95,46,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,115,101,108,101,99,116,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,54,95,95,46,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,83,112,105,110,98,117,116,116,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,56,95,95,46,66,70,111,114,109,83,112,105,110,98,117,116,116,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,84,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,116,97,103,115,95,102,111,114,109,95,116,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,50,95,95,46,66,70,111,114,109,84,97,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,84,97,103,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,116,97,103,115,95,102,111,114,109,95,116,97,103,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,49,95,95,46,66,70,111,114,109,84,97,103,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,49,95,95,46,66,70,111,114,109,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,84,101,120,116,97,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,116,101,120,116,97,114,101,97,95,102,111,114,109,95,116,101,120,116,97,114,101,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,48,95,95,46,66,70,111,114,109,84,101,120,116,97,114,101,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,84,105,109,101,112,105,99,107,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,116,105,109,101,112,105,99,107,101,114,95,102,111,114,109,95,116,105,109,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,50,95,95,46,66,70,111,114,109,84,105,109,101,112,105,99,107,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,70,111,114,109,86,97,108,105,100,70,101,101,100,98,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,102,111,114,109,95,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,51,95,95,46,66,70,111,114,109,86,97,108,105,100,70,101,101,100,98,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,66,73,99,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,97,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,108,97,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,97,114,109,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,108,97,114,109,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,105,103,110,66,111,116,116,111,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,108,105,103,110,66,111,116,116,111,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,105,103,110,67,101,110,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,108,105,103,110,67,101,110,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,105,103,110,69,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,108,105,103,110,69,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,105,103,110,77,105,100,100,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,108,105,103,110,77,105,100,100,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,105,103,110,83,116,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,108,105,103,110,83,116,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,105,103,110,84,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,108,105,103,110,84,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,112,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,112,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,112,112,73,110,100,105,99,97,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,112,112,73,110,100,105,99,97,116,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,99,104,105,118,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,99,104,105,118,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,99,104,105,118,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,99,104,105,118,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,57,48,100,101,103,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,66,97,114,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,66,97,114,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,66,97,114,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,66,97,114,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,66,97,114,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,66,97,114,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,66,97,114,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,66,97,114,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,67,108,111,99,107,119,105,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,67,108,111,99,107,119,105,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,67,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,67,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,76,101,102,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,104,111,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,104,111,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,68,111,119,110,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,68,111,119,110,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,76,101,102,116,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,76,101,102,116,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,76,101,102,116,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,104,111,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,104,111,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,76,101,102,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,101,112,101,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,82,101,112,101,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,82,101,116,117,114,110,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,104,111,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,104,111,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,76,101,102,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,83,104,111,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,83,104,111,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,85,112,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,67,111,110,116,114,97,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,67,111,110,116,114,97,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,69,120,112,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,115,65,110,103,108,101,69,120,112,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,115,67,111,108,108,97,112,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,115,67,111,108,108,97,112,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,115,69,120,112,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,115,69,120,112,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,115,70,117,108,108,115,99,114,101,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,115,70,117,108,108,115,99,114,101,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,114,114,111,119,115,77,111,118,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,114,114,111,119,115,77,111,118,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,115,112,101,99,116,82,97,116,105,111,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,115,116,101,114,105,115,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,115,116,101,114,105,115,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,119,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,119,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,65,119,97,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,65,119,97,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,99,107,115,112,97,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,99,107,115,112,97,99,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,99,107,115,112,97,99,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,99,107,115,112,97,99,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,99,107,115,112,97,99,101,82,101,118,101,114,115,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,52,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,100,103,101,52,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,52,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,100,103,101,52,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,56,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,100,103,101,56,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,56,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,100,103,101,56,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,65,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,100,103,101,65,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,65,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,100,103,101,65,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,67,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,100,103,101,67,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,67,99,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,100,103,101,67,99,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,72,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,100,103,101,72,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,72,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,100,103,101,72,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,84,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,100,103,101,84,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,84,109,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,100,103,101,84,109,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,86,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,100,103,101,86,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,100,103,101,86,111,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,100,103,101,86,111,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,103,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,103,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,68,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,103,68,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,68,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,103,68,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,103,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,103,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,103,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,103,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,103,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,114,67,104,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,114,67,104,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,114,67,104,97,114,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,114,67,104,97,114,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,114,67,104,97,114,116,76,105,110,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,114,67,104,97,114,116,83,116,101,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,114,67,104,97,114,116,83,116,101,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,115,107,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,115,107,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,115,107,101,116,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,115,107,101,116,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,115,107,101,116,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,115,107,101,116,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,115,107,101,116,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,115,107,101,116,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,115,107,101,116,51,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,115,107,101,116,51,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,115,107,101,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,115,107,101,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,116,116,101,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,116,116,101,114,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,116,116,101,114,121,67,104,97,114,103,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,116,116,101,114,121,67,104,97,114,103,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,116,116,101,114,121,70,117,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,116,116,101,114,121,70,117,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,97,116,116,101,114,121,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,97,116,116,101,114,121,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,101,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,101,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,101,108,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,101,108,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,101,122,105,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,101,122,105,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,101,122,105,101,114,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,101,122,105,101,114,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,105,99,121,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,105,99,121,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,105,110,111,99,117,108,97,114,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,108,97,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,108,97,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,108,111,99,107,113,117,111,116,101,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,68,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,72,101,97,114,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,83,116,97,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,109,97,114,107,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,109,97,114,107,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,107,115,104,101,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,107,115,104,101,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,116,115,116,114,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,116,115,116,114,97,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,116,115,116,114,97,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,116,115,116,114,97,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,111,116,115,116,114,97,112,82,101,98,111,111,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,111,116,115,116,114,97,112,82,101,98,111,111,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,114,100,101,114,83,116,121,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,114,100,101,114,83,116,121,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,114,100,101,114,87,105,100,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,114,100,101,114,87,105,100,116,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,67,105,114,99,108,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,117,110,100,105,110,103,66,111,120,67,105,114,99,108,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,68,111,119,110,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,68,111,119,110,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,73,110,85,112,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,65,114,114,111,119,85,112,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,111,120,83,101,97,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,111,120,83,101,97,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,97,99,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,97,99,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,99,107,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,105,99,107,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,101,102,99,97,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,105,101,102,99,97,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,101,102,99,97,115,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,105,101,102,99,97,115,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,72,105,103,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,65,108,116,76,111,119,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,72,105,103,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,105,103,104,116,110,101,115,115,76,111,119,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,111,97,100,99,97,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,111,97,100,99,97,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,111,97,100,99,97,115,116,80,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,111,97,100,99,97,115,116,80,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,117,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,117,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,114,117,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,114,117,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,117,99,107,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,117,99,107,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,117,99,107,101,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,117,99,107,101,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,117,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,117,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,117,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,117,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,117,105,108,100,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,117,105,108,100,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,66,117,108,108,115,101,121,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,66,117,108,108,115,101,121,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,99,117,108,97,116,111,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,68,97,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,69,118,101,110,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,77,111,110,116,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,82,97,110,103,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,87,101,101,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,50,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,69,118,101,110,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,82,97,110,103,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,51,87,101,101,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,52,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,52,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,52,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,52,69,118,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,52,82,97,110,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,52,82,97,110,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,52,87,101,101,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,52,87,101,101,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,68,97,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,69,118,101,110,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,77,111,110,116,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,82,97,110,103,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,87,101,101,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,108,101,110,100,97,114,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,108,101,110,100,97,114,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,109,101,114,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,109,101,114,97,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,109,101,114,97,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,109,101,114,97,82,101,101,108,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,109,101,114,97,86,105,100,101,111,79,102,102,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,112,115,108,111,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,112,115,108,111,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,112,115,108,111,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,112,115,108,111,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,100,67,104,101,99,107,108,105,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,100,67,104,101,99,107,108,105,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,100,72,101,97,100,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,100,72,101,97,100,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,100,73,109,97,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,100,73,109,97,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,100,76,105,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,100,76,105,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,100,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,100,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,68,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,68,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,68,111,119,110,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,76,101,102,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,76,101,102,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,76,101,102,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,82,105,103,104,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,85,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,85,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,101,116,85,112,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,116,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,116,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,52,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,116,52,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,116,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,116,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,68,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,116,68,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,68,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,116,68,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,116,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,116,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,116,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,114,116,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,114,116,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,115,104,83,116,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,115,104,83,116,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,97,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,97,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,68,111,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,68,111,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,68,111,116,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,68,111,116,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,68,111,116,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,81,117,111,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,76,101,102,116,84,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,81,117,111,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,81,117,111,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,81,117,111,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,81,117,111,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,68,111,116,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,81,117,111,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,82,105,103,104,116,84,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,68,111,116,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,81,117,111,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,83,113,117,97,114,101,84,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,97,116,84,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,97,116,84,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,99,107,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,50,65,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,99,107,50,65,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,50,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,99,107,50,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,50,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,99,107,50,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,65,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,99,107,65,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,99,107,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,99,107,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,67,111,110,116,114,97,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,67,111,110,116,114,97,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,69,120,112,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,69,120,112,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,66,97,114,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,67,111,109,112,97,99,116,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,67,111,110,116,114,97,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,67,111,110,116,114,97,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,68,111,117,98,108,101,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,69,120,112,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,69,120,112,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,104,101,118,114,111,110,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,104,101,118,114,111,110,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,105,114,99,108,101,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,105,114,99,108,101,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,105,114,99,108,101,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,105,114,99,108,101,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,105,112,98,111,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,105,112,98,111,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,105,112,98,111,97,114,100,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,105,112,98,111,97,114,100,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,105,112,98,111,97,114,100,68,97,116,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,105,112,98,111,97,114,100,68,97,116,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,105,112,98,111,97,114,100,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,105,112,98,111,97,114,100,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,105,112,98,111,97,114,100,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,105,112,98,111,97,114,100,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,105,112,98,111,97,114,100,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,105,112,98,111,97,114,100,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,99,107,72,105,115,116,111,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,99,107,72,105,115,116,111,114,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,68,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,65,114,114,111,119,85,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,68,111,119,110,108,111,97,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,83,108,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,108,111,117,100,85,112,108,111,97,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,111,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,100,101,83,108,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,111,100,101,83,108,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,100,101,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,111,100,101,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,111,108,108,101,99,116,105,111,110,80,108,97,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,108,117,109,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,111,108,117,109,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,108,117,109,110,115,71,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,111,108,117,109,110,115,71,97,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,109,109,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,111,109,109,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,109,112,97,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,111,109,112,97,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,109,112,97,115,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,111,109,112,97,115,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,111,110,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,110,101,83,116,114,105,112,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,111,110,101,83,116,114,105,112,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,111,110,116,114,111,108,108,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,111,110,116,114,111,108,108,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,112,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,112,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,112,117,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,112,117,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,66,97,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,50,70,114,111,110,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,114,101,100,105,116,67,97,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,114,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,114,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,117,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,117,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,117,112,83,116,114,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,117,112,83,116,114,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,117,114,115,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,117,114,115,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,117,114,115,111,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,117,114,115,111,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,67,117,114,115,111,114,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,67,117,114,115,111,114,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,97,115,104,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,97,115,104,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,97,103,114,97,109,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,97,103,114,97,109,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,97,103,114,97,109,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,97,103,114,97,109,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,97,103,114,97,109,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,97,103,114,97,109,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,97,103,114,97,109,51,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,97,103,114,97,109,51,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,97,109,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,97,109,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,97,109,111,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,97,109,111,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,97,109,111,110,100,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,97,109,111,110,100,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,99,101,49,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,49,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,99,101,49,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,99,101,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,99,101,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,99,101,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,51,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,99,101,51,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,52,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,99,101,52,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,52,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,99,101,52,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,53,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,99,101,53,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,53,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,99,101,53,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,54,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,99,101,54,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,99,101,54,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,99,101,54,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,115,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,115,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,115,99,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,115,99,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,115,99,111,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,115,99,111,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,115,112,108,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,115,112,108,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,115,112,108,97,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,115,112,108,97,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,72,111,114,105,122,111,110,116,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,72,111,114,105,122,111,110,116,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,86,101,114,116,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,105,115,116,114,105,98,117,116,101,86,101,114,116,105,99,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,111,111,114,67,108,111,115,101,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,111,111,114,79,112,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,111,111,114,79,112,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,111,111,114,79,112,101,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,111,111,114,79,112,101,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,111,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,111,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,111,119,110,108,111,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,111,119,110,108,111,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,114,111,112,108,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,114,111,112,108,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,114,111,112,108,101,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,114,111,112,108,101,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,68,114,111,112,108,101,116,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,68,114,111,112,108,101,116,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,97,114,98,117,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,97,114,98,117,100,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,97,115,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,97,115,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,97,115,101,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,97,115,101,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,103,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,103,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,103,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,103,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,103,103,70,114,105,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,103,103,70,114,105,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,106,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,106,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,106,101,99,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,106,101,99,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,65,110,103,114,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,68,105,122,122,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,69,120,112,114,101,115,115,105,111,110,108,101,115,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,70,114,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,72,101,97,114,116,69,121,101,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,76,97,117,103,104,105,110,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,78,101,117,116,114,97,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,83,109,105,108,101,85,112,115,105,100,101,68,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,83,117,110,103,108,97,115,115,101,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,87,105,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,87,105,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,109,111,106,105,87,105,110,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,109,111,106,105,87,105,110,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,110,118,101,108,111,112,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,110,118,101,108,111,112,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,110,118,101,108,111,112,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,110,118,101,108,111,112,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,110,118,101,108,111,112,101,79,112,101,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,120,99,108,97,109,97,116,105,111,110,84,114,105,97,110,103,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,120,99,108,117,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,120,99,108,117,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,121,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,121,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,121,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,121,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,121,101,83,108,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,121,101,83,108,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,121,101,83,108,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,121,101,83,108,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,69,121,101,103,108,97,115,115,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,69,121,101,103,108,97,115,115,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,97,99,101,98,111,111,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,97,99,101,98,111,111,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,65,114,114,111,119,68,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,65,114,114,111,119,85,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,66,97,114,71,114,97,112,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,66,105,110,97,114,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,66,114,101,97,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,66,114,101,97,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,66,114,101,97,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,66,114,101,97,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,67,111,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,67,111,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,67,111,100,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,67,111,100,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,68,105,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,68,105,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,68,105,102,102,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,68,105,102,102,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,68,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,65,114,114,111,119,85,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,97,114,71,114,97,112,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,105,110,97,114,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,66,114,101,97,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,67,111,100,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,68,105,102,102,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,97,115,101,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,69,120,99,101,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,70,111,110,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,73,109,97,103,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,76,111,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,101,100,105,99,97,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,77,117,115,105,99,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,101,114,115,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,97,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,111,115,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,80,112,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,105,99,104,116,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,82,117,108,101,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,108,105,100,101,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,84,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,87,111,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,114,109,97,114,107,90,105,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,115,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,115,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,97,115,101,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,97,115,101,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,120,99,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,120,99,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,69,120,99,101,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,69,120,99,101,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,70,111,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,70,111,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,70,111,110,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,70,111,110,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,73,109,97,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,73,109,97,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,73,109,97,103,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,73,109,97,103,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,76,111,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,76,111,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,76,111,99,107,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,76,111,99,107,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,76,111,99,107,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,76,111,99,107,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,76,111,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,76,111,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,77,101,100,105,99,97,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,77,117,115,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,77,117,115,105,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,77,117,115,105,99,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,77,117,115,105,99,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,80,101,114,115,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,108,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,80,108,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,108,97,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,80,108,97,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,111,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,80,111,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,111,115,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,80,111,115,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,112,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,80,112,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,80,112,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,80,112,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,82,105,99,104,116,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,82,117,108,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,82,117,108,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,82,117,108,101,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,82,117,108,101,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,83,108,105,100,101,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,83,112,114,101,97,100,115,104,101,101,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,84,101,120,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,84,101,120,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,87,111,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,87,111,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,87,111,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,87,111,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,90,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,90,105,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,90,105,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,90,105,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,101,115,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,101,115,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,116,101,114,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,116,101,114,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,116,101,114,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,116,101,114,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,116,101,114,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,105,108,116,101,114,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,108,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,108,97,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,108,97,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,108,97,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,108,111,119,101,114,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,108,111,119,101,114,49,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,108,111,119,101,114,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,108,111,119,101,114,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,108,111,119,101,114,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,108,111,119,101,114,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,111,108,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,111,108,100,101,114,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,50,79,112,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,111,108,100,101,114,50,79,112,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,111,108,100,101,114,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,111,108,100,101,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,111,108,100,101,114,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,111,108,100,101,114,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,111,108,100,101,114,83,121,109,108,105,110,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,108,100,101,114,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,111,108,100,101,114,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,110,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,111,110,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,114,119,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,111,114,119,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,111,114,119,97,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,111,114,119,97,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,114,111,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,114,111,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,69,120,105,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,117,108,108,115,99,114,101,101,110,69,120,105,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,117,110,110,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,117,110,110,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,70,117,110,110,101,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,70,117,110,110,101,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,101,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,97,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,101,97,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,97,114,87,105,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,101,97,114,87,105,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,97,114,87,105,100,101,67,111,110,110,101,99,116,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,101,97,114,87,105,100,101,67,111,110,110,101,99,116,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,101,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,101,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,111,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,101,111,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,111,65,108,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,101,111,65,108,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,101,111,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,101,111,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,105,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,105,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,105,102,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,105,102,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,105,116,104,117,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,105,116,104,117,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,108,111,98,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,108,111,98,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,108,111,98,101,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,108,111,98,101,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,111,111,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,111,111,103,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,97,112,104,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,114,97,112,104,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,97,112,104,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,114,97,112,104,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,114,105,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,49,120,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,114,105,100,49,120,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,49,120,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,114,105,100,49,120,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,51,120,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,114,105,100,51,120,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,114,105,100,51,120,50,71,97,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,51,120,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,114,105,100,51,120,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,114,105,100,51,120,51,71,97,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,114,105,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,112,72,111,114,105,122,111,110,116,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,114,105,112,72,111,114,105,122,111,110,116,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,71,114,105,112,86,101,114,116,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,71,114,105,112,86,101,114,116,105,99,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,109,109,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,97,109,109,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,110,100,73,110,100,101,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,97,110,100,73,110,100,101,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,110,100,73,110,100,101,120,84,104,117,109,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,97,110,100,73,110,100,101,120,84,104,117,109,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,97,110,100,84,104,117,109,98,115,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,110,100,98,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,97,110,100,98,97,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,110,100,98,97,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,97,110,100,98,97,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,100,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,100,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,100,100,78,101,116,119,111,114,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,82,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,100,100,82,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,82,97,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,100,100,82,97,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,83,116,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,100,100,83,116,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,100,100,83,116,97,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,100,100,83,116,97,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,97,100,112,104,111,110,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,101,97,100,112,104,111,110,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,97,100,115,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,101,97,100,115,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,101,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,97,114,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,101,97,114,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,97,114,116,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,101,97,114,116,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,112,116,97,103,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,101,112,116,97,103,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,112,116,97,103,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,101,112,116,97,103,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,112,116,97,103,111,110,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,101,112,116,97,103,111,110,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,120,97,103,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,101,120,97,103,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,120,97,103,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,101,120,97,103,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,101,120,97,103,111,110,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,101,120,97,103,111,110,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,114,103,108,97,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,111,117,114,103,108,97,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,114,103,108,97,115,115,66,111,116,116,111,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,111,117,114,103,108,97,115,115,66,111,116,116,111,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,114,103,108,97,115,115,83,112,108,105,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,111,117,114,103,108,97,115,115,83,112,108,105,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,114,103,108,97,115,115,84,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,111,117,114,103,108,97,115,115,84,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,111,117,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,115,101,68,111,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,111,117,115,101,68,111,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,115,101,68,111,111,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,111,117,115,101,68,111,111,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,111,117,115,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,111,117,115,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,72,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,72,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,109,97,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,109,97,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,109,97,103,101,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,109,97,103,101,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,109,97,103,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,109,97,103,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,109,97,103,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,109,97,103,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,98,111,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,110,98,111,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,98,111,120,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,110,98,111,120,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,98,111,120,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,110,98,111,120,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,98,111,120,101,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,110,98,111,120,101,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,102,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,110,102,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,110,102,111,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,110,102,111,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,110,112,117,116,67,117,114,115,111,114,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,115,116,97,103,114,97,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,110,115,116,97,103,114,97,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,73,110,116,101,114,115,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,73,110,116,101,114,115,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,65,108,98,117,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,65,108,98,117,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,65,114,114,111,119,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,66,111,111,107,109,97,114,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,67,111,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,67,111,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,77,101,100,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,77,101,100,105,99,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,82,105,99,104,116,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,82,105,99,104,116,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,117,114,110,97,108,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,117,114,110,97,108,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,111,121,115,116,105,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,111,121,115,116,105,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,117,115,116,105,102,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,117,115,116,105,102,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,117,115,116,105,102,121,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,117,115,116,105,102,121,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,74,117,115,116,105,102,121,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,74,117,115,116,105,102,121,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,75,97,110,98,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,75,97,110,98,97,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,75,97,110,98,97,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,75,97,110,98,97,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,75,101,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,75,101,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,75,101,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,75,101,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,75,101,121,98,111,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,75,101,121,98,111,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,75,101,121,98,111,97,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,75,101,121,98,111,97,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,100,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,100,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,109,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,109,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,109,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,109,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,112,116,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,112,116,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,112,116,111,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,112,116,111,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,101,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,121,101,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,101,114,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,121,101,114,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,101,114,115,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,121,101,114,115,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,82,101,118,101,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,73,110,115,101,116,82,101,118,101,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,121,111,117,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,83,112,108,105,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,121,111,117,116,83,112,108,105,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,83,105,100,101,98,97,114,82,101,118,101,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,82,101,118,101,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,121,111,117,116,84,101,120,116,87,105,110,100,111,119,82,101,118,101,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,84,104,114,101,101,67,111,108,117,109,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,121,111,117,116,84,104,114,101,101,67,111,108,117,109,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,97,121,111,117,116,87,116,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,97,121,111,117,116,87,116,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,102,101,80,114,101,115,101,114,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,105,102,101,80,114,101,115,101,114,118,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,103,104,116,110,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,105,103,104,116,110,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,103,104,116,110,105,110,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,105,103,104,116,110,105,110,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,105,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,110,107,52,53,100,101,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,105,110,107,52,53,100,101,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,110,107,101,100,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,105,110,107,101,100,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,105,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,115,116,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,105,115,116,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,115,116,78,101,115,116,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,105,115,116,78,101,115,116,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,115,116,79,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,105,115,116,79,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,115,116,83,116,97,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,105,115,116,83,116,97,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,115,116,84,97,115,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,105,115,116,84,97,115,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,105,115,116,85,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,105,115,116,85,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,111,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,111,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,76,111,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,76,111,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,97,105,108,98,111,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,97,105,108,98,111,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,97,105,108,98,111,120,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,97,105,108,98,111,120,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,97,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,97,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,97,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,97,114,107,100,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,97,114,107,100,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,97,114,107,100,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,97,114,107,100,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,65,112,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,101,110,117,65,112,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,65,112,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,101,110,117,65,112,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,101,110,117,66,117,116,116,111,110,87,105,100,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,101,110,117,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,101,110,117,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,101,110,117,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,105,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,105,99,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,105,99,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,105,99,77,117,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,105,99,77,117,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,105,99,77,117,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,105,99,77,117,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,105,110,101,99,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,105,110,101,99,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,105,110,101,99,97,114,116,76,111,97,100,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,105,110,101,99,97,114,116,76,111,97,100,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,111,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,111,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,111,117,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,111,117,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,111,117,115,101,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,111,117,115,101,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,111,117,115,101,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,111,117,115,101,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,117,115,105,99,78,111,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,117,115,105,99,78,111,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,117,115,105,99,78,111,116,101,66,101,97,109,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,117,115,105,99,78,111,116,101,66,101,97,109,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,117,115,105,99,78,111,116,101,76,105,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,117,115,105,99,78,111,116,101,76,105,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,77,117,115,105,99,80,108,97,121,101,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,78,101,119,115,112,97,112,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,78,101,119,115,112,97,112,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,78,111,100,101,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,78,111,100,101,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,78,111,100,101,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,78,111,100,101,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,78,111,100,101,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,78,111,100,101,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,78,111,100,101,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,78,111,100,101,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,78,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,78,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,78,117,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,78,117,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,79,99,116,97,103,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,79,99,116,97,103,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,79,99,116,97,103,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,79,99,116,97,103,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,79,99,116,97,103,111,110,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,79,99,116,97,103,111,110,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,79,112,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,79,112,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,79,117,116,108,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,79,117,116,108,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,112,101,114,99,108,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,112,101,114,99,108,105,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,114,97,103,114,97,112,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,114,97,103,114,97,112,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,116,99,104,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,116,99,104,69,120,99,108,97,109,97,116,105,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,116,99,104,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,116,99,104,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,116,99,104,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,116,99,104,81,117,101,115,116,105,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,117,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,117,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,117,115,101,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,117,115,101,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,117,115,101,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,117,115,101,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,117,115,101,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,97,117,115,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,97,117,115,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,97,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,97,99,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,97,99,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,97,99,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,99,105,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,110,99,105,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,99,105,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,110,99,105,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,99,105,108,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,110,99,105,108,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,116,97,103,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,110,116,97,103,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,116,97,103,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,110,116,97,103,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,110,116,97,103,111,110,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,110,116,97,103,111,110,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,111,112,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,111,112,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,111,112,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,111,112,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,99,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,99,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,66,97,100,103,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,66,111,117,110,100,105,110,103,66,111,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,66,111,117,110,100,105,110,103,66,111,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,67,104,101,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,68,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,76,105,110,101,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,76,105,110,101,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,101,114,115,111,110,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,101,114,115,111,110,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,104,111,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,104,111,110,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,104,111,110,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,104,111,110,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,104,111,110,101,76,97,110,100,115,99,97,112,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,104,111,110,101,86,105,98,114,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,104,111,110,101,86,105,98,114,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,105,101,67,104,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,105,101,67,104,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,105,101,67,104,97,114,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,105,101,67,104,97,114,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,105,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,105,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,105,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,108,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,97,121,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,108,97,121,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,97,121,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,108,97,121,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,108,97,121,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,97,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,108,97,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,117,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,108,117,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,117,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,108,117,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,108,117,115,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,108,117,115,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,111,119,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,111,119,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,114,105,110,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,114,105,110,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,114,105,110,116,101,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,114,105,110,116,101,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,117,122,122,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,117,122,122,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,80,117,122,122,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,80,117,122,122,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,68,105,97,109,111,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,79,99,116,97,103,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,81,117,101,115,116,105,111,110,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,101,105,112,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,99,101,105,112,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,101,105,112,116,67,117,116,111,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,99,101,105,112,116,67,117,116,111,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,101,112,116,105,111,110,48,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,99,101,112,116,105,111,110,48,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,101,112,116,105,111,110,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,99,101,112,116,105,111,110,49,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,101,112,116,105,111,110,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,99,101,112,116,105,111,110,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,101,112,116,105,111,110,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,99,101,112,116,105,111,110,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,101,112,116,105,111,110,52,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,99,101,112,116,105,111,110,52,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,99,111,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,99,111,114,100,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,99,111,114,100,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,99,111,114,100,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,99,111,114,100,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,99,111,114,100,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,99,111,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,99,111,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,112,108,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,112,108,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,112,108,121,65,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,112,108,121,65,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,112,108,121,65,108,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,112,108,121,65,108,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,101,112,108,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,101,112,108,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,82,115,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,82,115,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,99,105,115,115,111,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,99,105,115,115,111,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,99,114,101,119,100,114,105,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,99,114,101,119,100,114,105,118,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,101,97,114,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,101,97,114,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,101,103,109,101,110,116,101,100,78,97,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,101,103,109,101,110,116,101,100,78,97,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,101,114,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,101,114,118,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,69,120,99,108,97,109,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,69,120,99,108,97,109,97,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,67,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,67,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,69,120,99,108,97,109,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,69,120,99,108,97,109,97,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,70,105,108,108,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,76,111,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,83,104,97,100,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,83,104,97,100,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,83,108,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,101,108,100,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,101,108,100,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,105,102,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,105,102,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,111,112,87,105,110,100,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,111,112,87,105,110,100,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,104,117,102,102,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,104,117,102,102,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,103,110,112,111,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,105,103,110,112,111,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,103,110,112,111,115,116,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,105,103,110,112,111,115,116,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,103,110,112,111,115,116,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,105,103,110,112,111,115,116,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,103,110,112,111,115,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,105,103,110,112,111,115,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,105,103,110,112,111,115,116,83,112,108,105,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,105,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,105,109,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,105,109,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,66,97,99,107,119,97,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,69,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,69,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,69,110,100,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,69,110,100,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,69,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,69,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,70,111,114,119,97,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,83,116,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,83,116,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,83,116,97,114,116,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,83,116,97,114,116,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,107,105,112,83,116,97,114,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,107,105,112,83,116,97,114,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,108,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,108,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,108,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,108,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,108,97,115,104,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,108,97,115,104,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,108,105,100,101,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,108,105,100,101,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,109,97,114,116,119,97,116,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,109,97,114,116,119,97,116,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,111,114,116,65,108,112,104,97,68,111,119,110,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,111,114,116,65,108,112,104,97,85,112,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,111,114,116,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,68,111,119,110,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,111,114,116,68,111,119,110,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,68,111,119,110,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,111,114,116,78,117,109,101,114,105,99,85,112,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,111,114,116,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,114,116,85,112,65,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,111,114,116,85,112,65,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,111,117,110,100,119,97,118,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,111,117,110,100,119,97,118,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,112,101,97,107,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,112,101,97,107,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,112,101,97,107,101,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,112,101,97,107,101,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,112,101,108,108,99,104,101,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,112,101,108,108,99,104,101,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,113,117,97,114,101,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,113,117,97,114,101,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,97,114,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,97,114,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,97,114,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,97,114,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,105,99,107,105,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,105,99,107,105,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,105,99,107,105,101,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,105,99,107,105,101,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,105,99,107,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,105,99,107,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,105,99,107,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,105,99,107,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,66,116,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,111,112,66,116,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,66,116,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,111,112,66,116,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,111,112,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,111,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,111,112,108,105,103,104,116,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,119,97,116,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,111,112,119,97,116,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,116,111,112,119,97,116,99,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,116,111,112,119,97,116,99,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,98,116,114,97,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,117,98,116,114,97,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,67,108,117,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,117,105,116,67,108,117,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,67,108,117,98,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,117,105,116,67,108,117,98,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,117,105,116,68,105,97,109,111,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,72,101,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,117,105,116,72,101,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,72,101,97,114,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,117,105,116,72,101,97,114,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,83,112,97,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,117,105,116,83,112,97,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,105,116,83,112,97,100,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,117,105,116,83,112,97,100,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,117,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,83,117,110,103,108,97,115,115,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,83,117,110,103,108,97,115,115,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,97,98,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,98,108,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,97,98,108,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,98,108,101,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,97,98,108,101,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,97,98,108,101,116,76,97,110,100,115,99,97,112,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,97,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,103,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,97,103,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,103,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,97,103,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,97,103,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,97,103,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,70,111,114,119,97,114,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,73,110,98,111,117,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,77,105,110,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,79,117,116,98,111,117,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,80,108,117,115,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,108,101,112,104,111,110,101,88,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,114,109,105,110,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,114,109,105,110,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,114,109,105,110,97,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,114,109,105,110,97,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,67,101,110,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,120,116,67,101,110,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,120,116,73,110,100,101,110,116,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,120,116,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,80,97,114,97,103,114,97,112,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,120,116,80,97,114,97,103,114,97,112,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,120,116,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,97,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,120,116,97,114,101,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,97,114,101,97,82,101,115,105,122,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,120,116,97,114,101,97,82,101,115,105,122,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,101,120,116,97,114,101,97,84,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,101,120,116,97,114,101,97,84,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,104,101,114,109,111,109,101,116,101,114,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,104,114,101,101,68,111,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,104,114,101,101,68,111,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,104,114,101,101,68,111,116,115,86,101,114,116,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,104,114,101,101,68,111,116,115,86,101,114,116,105,99,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,111,103,103,108,101,50,79,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,111,103,103,108,101,50,79,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,111,103,103,108,101,50,79,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,111,103,103,108,101,50,79,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,111,103,103,108,101,79,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,111,103,103,108,101,79,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,111,103,103,108,101,79,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,111,103,103,108,101,79,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,111,103,103,108,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,111,103,103,108,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,111,103,103,108,101,115,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,111,103,103,108,101,115,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,111,111,108,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,111,111,108,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,97,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,114,97,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,97,115,104,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,114,97,115,104,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,97,115,104,50,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,114,97,115,104,50,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,97,115,104,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,114,97,115,104,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,101,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,114,101,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,101,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,114,101,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,105,97,110,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,114,105,97,110,103,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,105,97,110,103,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,114,105,97,110,103,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,105,97,110,103,108,101,72,97,108,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,114,105,97,110,103,108,101,72,97,108,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,111,112,104,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,114,111,112,104,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,111,112,104,121,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,114,111,112,104,121,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,117,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,114,117,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,114,117,99,107,70,108,97,116,98,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,114,117,99,107,70,108,97,116,98,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,118,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,118,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,119,105,116,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,119,105,116,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,119,105,116,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,119,105,116,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,121,112,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,66,111,108,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,121,112,101,66,111,108,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,72,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,121,112,101,72,49,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,72,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,121,112,101,72,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,72,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,121,112,101,72,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,73,116,97,108,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,121,112,101,73,116,97,108,105,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,83,116,114,105,107,101,116,104,114,111,117,103,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,121,112,101,83,116,114,105,107,101,116,104,114,111,117,103,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,84,121,112,101,85,110,100,101,114,108,105,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,84,121,112,101,85,110,100,101,114,108,105,110,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,105,67,104,101,99,107,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,85,105,67,104,101,99,107,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,105,67,104,101,99,107,115,71,114,105,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,85,105,67,104,101,99,107,115,71,114,105,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,105,82,97,100,105,111,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,85,105,82,97,100,105,111,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,105,82,97,100,105,111,115,71,114,105,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,85,105,82,97,100,105,111,115,71,114,105,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,110,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,85,110,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,110,108,111,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,85,110,108,111,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,110,108,111,99,107,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,85,110,108,111,99,107,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,112,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,85,112,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,112,99,83,99,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,85,112,99,83,99,97,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,85,112,108,111,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,85,112,108,111,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,101,99,116,111,114,80,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,86,101,99,116,111,114,80,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,105,101,119,76,105,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,86,105,101,119,76,105,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,105,101,119,83,116,97,99,107,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,86,105,101,119,83,116,97,99,107,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,105,110,121,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,86,105,110,121,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,105,110,121,108,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,86,105,110,121,108,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,105,99,101,109,97,105,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,86,111,105,99,101,109,97,105,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,86,111,108,117,109,101,68,111,119,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,86,111,108,117,109,101,77,117,116,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,79,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,86,111,108,117,109,101,79,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,79,102,102,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,86,111,108,117,109,101,79,102,102,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,86,111,108,117,109,101,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,111,108,117,109,101,85,112,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,86,111,108,117,109,101,85,112,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,86,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,86,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,97,108,108,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,87,97,108,108,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,97,108,108,101,116,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,87,97,108,108,101,116,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,97,108,108,101,116,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,87,97,108,108,101,116,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,97,116,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,87,97,116,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,105,102,105,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,87,105,102,105,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,105,102,105,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,87,105,102,105,49,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,105,102,105,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,87,105,102,105,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,105,102,105,79,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,87,105,102,105,79,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,105,110,100,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,87,105,110,100,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,87,114,101,110,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,87,114,101,110,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,88,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,67,105,114,99,108,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,88,67,105,114,99,108,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,68,105,97,109,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,88,68,105,97,109,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,68,105,97,109,111,110,100,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,88,68,105,97,109,111,110,100,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,79,99,116,97,103,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,88,79,99,116,97,103,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,79,99,116,97,103,111,110,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,88,79,99,116,97,103,111,110,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,88,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,88,83,113,117,97,114,101,70,105,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,88,83,113,117,97,114,101,70,105,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,89,111,117,116,117,98,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,89,111,117,116,117,98,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,90,111,111,109,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,90,111,111,109,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,90,111,111,109,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,66,73,99,111,110,90,111,111,109,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,99,111,110,115,116,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,105,99,111,110,115,116,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,66,73,99,111,110,115,116,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,109,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,105,109,97,103,101,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,52,95,95,46,66,73,109,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,109,103,76,97,122,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,105,109,97,103,101,95,105,109,103,95,108,97,122,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,53,95,95,46,66,73,109,103,76,97,122,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,110,112,117,116,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,105,110,112,117,116,95,103,114,111,117,112,95,105,110,112,117,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,55,95,95,46,66,73,110,112,117,116,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,110,112,117,116,71,114,111,117,112,65,100,100,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,105,110,112,117,116,95,103,114,111,117,112,95,105,110,112,117,116,95,103,114,111,117,112,95,97,100,100,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,56,95,95,46,66,73,110,112,117,116,71,114,111,117,112,65,100,100,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,110,112,117,116,71,114,111,117,112,65,112,112,101,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,105,110,112,117,116,95,103,114,111,117,112,95,105,110,112,117,116,95,103,114,111,117,112,95,97,112,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,57,95,95,46,66,73,110,112,117,116,71,114,111,117,112,65,112,112,101,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,110,112,117,116,71,114,111,117,112,80,114,101,112,101,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,105,110,112,117,116,95,103,114,111,117,112,95,105,110,112,117,116,95,103,114,111,117,112,95,112,114,101,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,48,95,95,46,66,73,110,112,117,116,71,114,111,117,112,80,114,101,112,101,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,73,110,112,117,116,71,114,111,117,112,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,105,110,112,117,116,95,103,114,111,117,112,95,105,110,112,117,116,95,103,114,111,117,112,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,49,95,95,46,66,73,110,112,117,116,71,114,111,117,112,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,74,117,109,98,111,116,114,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,106,117,109,98,111,116,114,111,110,95,106,117,109,98,111,116,114,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,51,95,95,46,66,74,117,109,98,111,116,114,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,76,105,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,48,95,95,46,66,76,105,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,76,105,115,116,71,114,111,117,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,108,105,115,116,95,103,114,111,117,112,95,108,105,115,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,50,95,95,46,66,76,105,115,116,71,114,111,117,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,76,105,115,116,71,114,111,117,112,73,116,101,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,108,105,115,116,95,103,114,111,117,112,95,108,105,115,116,95,103,114,111,117,112,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,51,95,95,46,66,76,105,115,116,71,114,111,117,112,73,116,101,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,77,101,100,105,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,109,101,100,105,97,95,109,101,100,105,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,53,95,95,46,66,77,101,100,105,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,77,101,100,105,97,65,115,105,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,109,101,100,105,97,95,109,101,100,105,97,95,97,115,105,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,54,95,95,46,66,77,101,100,105,97,65,115,105,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,77,101,100,105,97,66,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,109,101,100,105,97,95,109,101,100,105,97,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,55,95,95,46,66,77,101,100,105,97,66,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,77,111,100,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,109,111,100,97,108,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,57,95,95,46,66,77,111,100,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,49,95,95,46,66,78,97,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,70,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,95,110,97,118,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,50,95,95,46,66,78,97,118,70,111,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,73,116,101,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,95,110,97,118,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,51,95,95,46,66,78,97,118,73,116,101,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,73,116,101,109,68,114,111,112,100,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,95,110,97,118,95,105,116,101,109,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,52,95,95,46,66,78,97,118,73,116,101,109,68,114,111,112,100,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,95,110,97,118,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,53,95,95,46,66,78,97,118,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,98,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,98,97,114,95,110,97,118,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,55,95,95,46,66,78,97,118,98,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,98,97,114,66,114,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,98,97,114,95,110,97,118,98,97,114,95,98,114,97,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,56,95,95,46,66,78,97,118,98,97,114,66,114,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,98,97,114,78,97,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,98,97,114,95,110,97,118,98,97,114,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,57,95,95,46,66,78,97,118,98,97,114,78,97,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,78,97,118,98,97,114,84,111,103,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,98,97,114,95,110,97,118,98,97,114,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,48,95,95,46,66,78,97,118,98,97,114,84,111,103,103,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,79,118,101,114,108,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,111,118,101,114,108,97,121,95,111,118,101,114,108,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,50,95,95,46,66,79,118,101,114,108,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,80,97,103,105,110,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,112,97,103,105,110,97,116,105,111,110,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,52,95,95,46,66,80,97,103,105,110,97,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,80,97,103,105,110,97,116,105,111,110,78,97,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,112,97,103,105,110,97,116,105,111,110,95,110,97,118,95,112,97,103,105,110,97,116,105,111,110,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,54,95,95,46,66,80,97,103,105,110,97,116,105,111,110,78,97,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,80,111,112,111,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,112,111,112,111,118,101,114,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,56,95,95,46,66,80,111,112,111,118,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,80,114,111,103,114,101,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,112,114,111,103,114,101,115,115,95,112,114,111,103,114,101,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,48,95,95,46,66,80,114,111,103,114,101,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,80,114,111,103,114,101,115,115,66,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,112,114,111,103,114,101,115,115,95,112,114,111,103,114,101,115,115,95,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,49,95,95,46,66,80,114,111,103,114,101,115,115,66,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,82,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,108,97,121,111,117,116,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,54,95,95,46,66,82,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,105,100,101,98,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,115,105,100,101,98,97,114,95,115,105,100,101,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,51,95,95,46,66,83,105,100,101,98,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,107,101,108,101,116,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,115,107,101,108,101,116,111,110,95,115,107,101,108,101,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,53,95,95,46,66,83,107,101,108,101,116,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,107,101,108,101,116,111,110,73,99,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,115,107,101,108,101,116,111,110,95,115,107,101,108,101,116,111,110,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,54,95,95,46,66,83,107,101,108,101,116,111,110,73,99,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,107,101,108,101,116,111,110,73,109,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,115,107,101,108,101,116,111,110,95,115,107,101,108,101,116,111,110,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,55,95,95,46,66,83,107,101,108,101,116,111,110,73,109,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,107,101,108,101,116,111,110,84,97,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,115,107,101,108,101,116,111,110,95,115,107,101,108,101,116,111,110,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,56,95,95,46,66,83,107,101,108,101,116,111,110,84,97,98,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,107,101,108,101,116,111,110,87,114,97,112,112,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,115,107,101,108,101,116,111,110,95,115,107,101,108,101,116,111,110,95,119,114,97,112,112,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,57,95,95,46,66,83,107,101,108,101,116,111,110,87,114,97,112,112,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,83,112,105,110,110,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,115,112,105,110,110,101,114,95,115,112,105,110,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,49,95,95,46,66,83,112,105,110,110,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,97,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,115,95,116,97,98,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,52,95,95,46,66,84,97,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,97,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,51,95,95,46,66,84,97,98,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,97,98,108,101,76,105,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,97,98,108,101,95,108,105,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,52,95,95,46,66,84,97,98,108,101,76,105,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,97,98,108,101,83,105,109,112,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,97,98,108,101,95,115,105,109,112,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,53,95,95,46,66,84,97,98,108,101,83,105,109,112,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,97,98,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,115,95,116,97,98,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,51,95,95,46,66,84,97,98,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,98,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,54,95,95,46,66,84,98,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,49,95,95,46,66,84,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,102,111,111,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,102,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,56,95,95,46,66,84,102,111,111,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,48,95,95,46,66,84,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,104,101,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,104,101,97,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,55,95,95,46,66,84,104,101,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,105,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,105,109,101,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,54,95,95,46,66,84,105,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,111,97,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,111,97,115,116,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,56,95,95,46,66,84,111,97,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,111,97,115,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,111,97,115,116,95,116,111,97,115,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,57,95,95,46,66,84,111,97,115,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,111,111,108,116,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,111,111,108,116,105,112,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,49,95,95,46,66,84,111,111,108,116,105,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,84,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,57,95,95,46,66,84,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,67,111,110,102,105,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,118,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,86,67,111,110,102,105,103,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,67,111,110,102,105,103,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,118,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,66,86,67,111,110,102,105,103,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,77,111,100,97,108,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,109,111,100,97,108,95,104,101,108,112,101,114,115,95,98,118,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,66,86,77,111,100,97,108,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,86,84,111,97,115,116,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,111,97,115,116,95,104,101,108,112,101,114,115,95,98,118,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,66,86,84,111,97,115,116,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,97,100,103,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,98,97,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,66,97,100,103,101,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,111,111,116,115,116,114,97,112,86,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,111,111,116,115,116,114,97,112,86,117,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,111,111,116,115,116,114,97,112,86,117,101,73,99,111,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,112,108,117,103,105,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,66,111,111,116,115,116,114,97,112,86,117,101,73,99,111,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,114,101,97,100,99,114,117,109,98,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,98,114,101,97,100,99,114,117,109,98,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,66,114,101,97,100,99,114,117,109,98,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,117,116,116,111,110,71,114,111,117,112,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,98,117,116,116,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,66,117,116,116,111,110,71,114,111,117,112,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,117,116,116,111,110,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,66,117,116,116,111,110,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,117,116,116,111,110,84,111,111,108,98,97,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,98,117,116,116,111,110,95,116,111,111,108,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,46,66,117,116,116,111,110,84,111,111,108,98,97,114,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,97,108,101,110,100,97,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,108,101,110,100,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,46,67,97,108,101,110,100,97,114,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,97,114,100,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,46,67,97,114,100,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,97,114,111,117,115,101,108,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,111,117,115,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,50,95,95,46,67,97,114,111,117,115,101,108,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,111,108,108,97,112,115,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,99,111,108,108,97,112,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,53,95,95,46,67,111,108,108,97,112,115,101,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,68,114,111,112,100,111,119,110,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,55,95,95,46,68,114,111,112,100,111,119,110,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,109,98,101,100,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,101,109,98,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,54,95,95,46,69,109,98,101,100,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,67,104,101,99,107,98,111,120,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,52,95,95,46,70,111,114,109,67,104,101,99,107,98,111,120,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,68,97,116,101,112,105,99,107,101,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,100,97,116,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,55,95,95,46,70,111,114,109,68,97,116,101,112,105,99,107,101,114,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,70,105,108,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,102,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,57,95,95,46,70,111,114,109,70,105,108,101,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,71,114,111,117,112,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,49,95,95,46,70,111,114,109,71,114,111,117,112,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,73,110,112,117,116,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,105,110,112,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,51,95,95,46,70,111,114,109,73,110,112,117,116,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,56,95,95,46,70,111,114,109,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,82,97,100,105,111,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,114,97,100,105,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,53,95,95,46,70,111,114,109,82,97,100,105,111,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,82,97,116,105,110,103,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,114,97,116,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,56,95,95,46,70,111,114,109,82,97,116,105,110,103,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,83,101,108,101,99,116,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,51,95,95,46,70,111,114,109,83,101,108,101,99,116,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,83,112,105,110,98,117,116,116,111,110,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,55,95,95,46,70,111,114,109,83,112,105,110,98,117,116,116,111,110,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,84,97,103,115,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,116,97,103,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,48,95,95,46,70,111,114,109,84,97,103,115,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,84,101,120,116,97,114,101,97,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,116,101,120,116,97,114,101,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,57,95,95,46,70,111,114,109,84,101,120,116,97,114,101,97,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,84,105,109,101,112,105,99,107,101,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,116,105,109,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,49,95,95,46,70,111,114,109,84,105,109,101,112,105,99,107,101,114,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,99,111,110,115,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,99,111,110,115,95,112,108,117,103,105,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,73,99,111,110,115,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,109,97,103,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,105,109,97,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,51,95,95,46,73,109,97,103,101,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,110,112,117,116,71,114,111,117,112,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,105,110,112,117,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,54,95,95,46,73,110,112,117,116,71,114,111,117,112,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,74,117,109,98,111,116,114,111,110,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,106,117,109,98,111,116,114,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,50,95,95,46,74,117,109,98,111,116,114,111,110,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,76,97,121,111,117,116,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,108,97,121,111,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,52,95,95,46,76,97,121,111,117,116,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,76,105,110,107,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,57,95,95,46,76,105,110,107,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,76,105,115,116,71,114,111,117,112,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,108,105,115,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,49,95,95,46,76,105,115,116,71,114,111,117,112,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,101,100,105,97,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,109,101,100,105,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,52,95,95,46,77,101,100,105,97,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,111,100,97,108,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,56,95,95,46,77,111,100,97,108,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,65,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,97,118,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,48,95,95,46,78,97,118,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,97,118,98,97,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,54,95,95,46,78,97,118,98,97,114,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,79,118,101,114,108,97,121,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,111,118,101,114,108,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,49,95,95,46,79,118,101,114,108,97,121,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,97,103,105,110,97,116,105,111,110,78,97,118,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,112,97,103,105,110,97,116,105,111,110,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,53,95,95,46,80,97,103,105,110,97,116,105,111,110,78,97,118,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,97,103,105,110,97,116,105,111,110,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,51,95,95,46,80,97,103,105,110,97,116,105,111,110,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,111,112,111,118,101,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,55,95,95,46,80,111,112,111,118,101,114,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,114,111,103,114,101,115,115,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,112,114,111,103,114,101,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,57,95,95,46,80,114,111,103,114,101,115,115,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,105,100,101,98,97,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,115,105,100,101,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,50,95,95,46,83,105,100,101,98,97,114,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,107,101,108,101,116,111,110,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,115,107,101,108,101,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,52,95,95,46,83,107,101,108,101,116,111,110,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,112,105,110,110,101,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,115,112,105,110,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,48,95,95,46,83,112,105,110,110,101,114,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,97,98,108,101,76,105,116,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,50,95,95,46,84,97,98,108,101,76,105,116,101,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,97,98,108,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,50,95,95,46,84,97,98,108,101,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,97,98,108,101,83,105,109,112,108,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,50,95,95,46,84,97,98,108,101,83,105,109,112,108,101,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,97,98,115,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,50,95,95,46,84,97,98,115,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,105,109,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,53,95,95,46,84,105,109,101,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,111,97,115,116,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,55,95,95,46,84,111,97,115,116,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,111,111,108,116,105,112,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,109,112,111,110,101,110,116,115,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,48,95,95,46,84,111,111,108,116,105,112,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,72,111,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,114,101,99,116,105,118,101,115,95,104,111,118,101,114,95,104,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,51,95,95,46,86,66,72,111,118,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,72,111,118,101,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,114,101,99,116,105,118,101,115,95,104,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,50,95,95,46,86,66,72,111,118,101,114,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,77,111,100,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,114,101,99,116,105,118,101,115,95,109,111,100,97,108,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,53,95,95,46,86,66,77,111,100,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,77,111,100,97,108,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,114,101,99,116,105,118,101,115,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,52,95,95,46,86,66,77,111,100,97,108,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,80,111,112,111,118,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,114,101,99,116,105,118,101,115,95,112,111,112,111,118,101,114,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,55,95,95,46,86,66,80,111,112,111,118,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,80,111,112,111,118,101,114,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,114,101,99,116,105,118,101,115,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,54,95,95,46,86,66,80,111,112,111,118,101,114,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,83,99,114,111,108,108,115,112,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,114,101,99,116,105,118,101,115,95,115,99,114,111,108,108,115,112,121,95,115,99,114,111,108,108,115,112,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,57,95,95,46,86,66,83,99,114,111,108,108,115,112,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,83,99,114,111,108,108,115,112,121,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,114,101,99,116,105,118,101,115,95,115,99,114,111,108,108,115,112,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,56,95,95,46,86,66,83,99,114,111,108,108,115,112,121,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,84,111,103,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,103,103,108,101,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,49,95,95,46,86,66,84,111,103,103,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,84,111,103,103,108,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,48,95,95,46,86,66,84,111,103,103,108,101,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,84,111,111,108,116,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,111,108,116,105,112,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,51,95,95,46,86,66,84,111,111,108,116,105,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,84,111,111,108,116,105,112,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,50,95,95,46,86,66,84,111,111,108,116,105,112,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,86,105,115,105,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,114,101,99,116,105,118,101,115,95,118,105,115,105,98,108,101,95,118,105,115,105,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,53,95,95,46,86,66,86,105,115,105,98,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,66,86,105,115,105,98,108,101,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,114,101,99,116,105,118,101,115,95,118,105,115,105,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,52,95,95,46,86,66,86,105,115,105,98,108,101,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,115,116,97,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,110,115,116,97,108,108,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,117,116,105,108,115,47,112,108,117,103,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,114,101,99,116,105,118,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,118,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,118,45,99,111,110,102,105,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,98,118,45,99,111,110,102,105,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,109,111,100,97,108,95,104,101,108,112,101,114,115,95,98,118,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,104,101,108,112,101,114,115,47,98,118,45,109,111,100,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,104,101,108,112,101,114,115,47,98,118,45,109,111,100,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,111,97,115,116,95,104,101,108,112,101,114,115,95,98,118,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,104,101,108,112,101,114,115,47,98,118,45,116,111,97,115,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,104,101,108,112,101,114,115,47,98,118,45,116,111,97,115,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,112,108,117,103,105,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,99,111,110,115,47,112,108,117,103,105,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,112,108,117,103,105,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,99,111,110,115,47,105,99,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,105,99,111,110,115,116,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,99,111,110,115,47,105,99,111,110,115,116,97,99,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,116,97,99,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,99,111,110,115,95,105,99,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,99,111,110,115,47,105,99,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,99,111,110,115,47,105,99,111,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,97,108,101,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,97,108,101,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,108,101,114,116,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,97,108,101,114,116,95,97,108,101,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,97,108,101,114,116,47,97,108,101,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,108,101,114,116,47,97,108,101,114,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,97,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,97,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,115,112,101,99,116,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,97,115,112,101,99,116,95,97,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,97,115,112,101,99,116,47,97,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,115,112,101,99,116,47,97,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,97,118,97,116,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,97,118,97,116,97,114,95,97,118,97,116,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,97,118,97,116,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,97,118,97,116,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,97,118,97,116,97,114,95,97,118,97,116,97,114,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,97,118,97,116,97,114,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,47,97,118,97,116,97,114,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,98,97,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,98,97,100,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,97,100,103,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,98,97,100,103,101,95,98,97,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,98,97,100,103,101,47,98,97,100,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,97,100,103,101,47,98,97,100,103,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,98,114,101,97,100,99,114,117,109,98,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,98,114,101,97,100,99,114,117,109,98,95,98,114,101,97,100,99,114,117,109,98,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,98,114,101,97,100,99,114,117,109,98,95,98,114,101,97,100,99,114,117,109,98,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,47,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,98,117,116,116,111,110,95,98,117,116,116,111,110,95,99,108,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,47,98,117,116,116,111,110,45,99,108,111,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,98,117,116,116,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,98,117,116,116,111,110,95,103,114,111,117,112,95,98,117,116,116,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,103,114,111,117,112,47,98,117,116,116,111,110,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,103,114,111,117,112,47,98,117,116,116,111,110,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,98,117,116,116,111,110,95,116,111,111,108,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,98,117,116,116,111,110,95,116,111,111,108,98,97,114,95,98,117,116,116,111,110,95,116,111,111,108,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,108,101,110,100,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,108,101,110,100,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,108,101,110,100,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,108,101,110,100,97,114,95,99,97,108,101,110,100,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,108,101,110,100,97,114,47,99,97,108,101,110,100,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,108,101,110,100,97,114,47,99,97,108,101,110,100,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,98,111,100,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,98,111,100,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,102,111,111,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,102,111,111,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,102,111,111,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,104,101,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,104,101,97,100,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,104,101,97,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,105,109,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,105,109,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,105,109,103,95,108,97,122,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,105,109,103,45,108,97,122,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,105,109,103,45,108,97,122,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,115,117,98,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,115,117,98,45,116,105,116,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,115,117,98,45,116,105,116,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,100,95,99,97,114,100,95,116,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,116,105,116,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,47,99,97,114,100,45,116,105,116,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,111,117,115,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,111,117,115,101,108,95,99,97,114,111,117,115,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,99,97,114,111,117,115,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,99,97,114,111,117,115,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,97,114,111,117,115,101,108,95,99,97,114,111,117,115,101,108,95,115,108,105,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,99,97,114,111,117,115,101,108,45,115,108,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,47,99,97,114,111,117,115,101,108,45,115,108,105,100,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,111,108,108,97,112,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,99,111,108,108,97,112,115,101,95,99,111,108,108,97,112,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,99,111,108,108,97,112,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,47,99,111,108,108,97,112,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,105,116,101,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,105,116,101,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,105,116,101,109,95,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,105,116,101,109,45,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,105,116,101,109,45,98,117,116,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,100,105,118,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,102,111,114,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,102,111,114,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,104,101,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,100,114,111,112,100,111,119,110,95,100,114,111,112,100,111,119,110,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,47,100,114,111,112,100,111,119,110,45,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,101,109,98,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,101,109,98,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,101,109,98,101,100,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,101,109,98,101,100,95,101,109,98,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,101,109,98,101,100,47,101,109,98,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,101,109,98,101,100,47,101,109,98,101,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,102,111,114,109,95,100,97,116,97,108,105,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,100,97,116,97,108,105,115,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,100,97,116,97,108,105,115,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,102,111,114,109,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,102,111,114,109,95,105,110,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,102,111,114,109,95,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,118,97,108,105,100,45,102,101,101,100,98,97,99,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,47,102,111,114,109,45,118,97,108,105,100,45,102,101,101,100,98,97,99,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,102,111,114,109,45,99,104,101,99,107,98,111,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,102,111,114,109,45,99,104,101,99,107,98,111,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,102,111,114,109,45,99,104,101,99,107,98,111,120,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,102,111,114,109,45,99,104,101,99,107,98,111,120,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,100,97,116,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,100,97,116,101,112,105,99,107,101,114,95,102,111,114,109,95,100,97,116,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,102,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,102,105,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,102,105,108,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,102,105,108,101,95,102,111,114,109,95,102,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,102,105,108,101,47,102,111,114,109,45,102,105,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,102,105,108,101,47,102,111,114,109,45,102,105,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,103,114,111,117,112,95,102,111,114,109,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,103,114,111,117,112,47,102,111,114,109,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,103,114,111,117,112,47,102,111,114,109,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,105,110,112,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,105,110,112,117,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,105,110,112,117,116,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,105,110,112,117,116,95,102,111,114,109,95,105,110,112,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,105,110,112,117,116,47,102,111,114,109,45,105,110,112,117,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,105,110,112,117,116,47,102,111,114,109,45,105,110,112,117,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,114,97,100,105,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,114,97,100,105,111,95,102,111,114,109,95,114,97,100,105,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,102,111,114,109,45,114,97,100,105,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,102,111,114,109,45,114,97,100,105,111,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,114,97,100,105,111,95,102,111,114,109,95,114,97,100,105,111,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,102,111,114,109,45,114,97,100,105,111,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,102,111,114,109,45,114,97,100,105,111,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,114,97,116,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,116,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,116,105,110,103,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,114,97,116,105,110,103,95,102,111,114,109,95,114,97,116,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,116,105,110,103,47,102,111,114,109,45,114,97,116,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,116,105,110,103,47,102,111,114,109,45,114,97,116,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,116,97,103,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,116,97,103,115,95,102,111,114,109,95,116,97,103,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,102,111,114,109,45,116,97,103,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,102,111,114,109,45,116,97,103,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,116,97,103,115,95,102,111,114,109,95,116,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,102,111,114,109,45,116,97,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,47,102,111,114,109,45,116,97,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,115,101,108,101,99,116,95,102,111,114,109,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,115,101,108,101,99,116,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,115,101,108,101,99,116,95,102,111,114,109,95,115,101,108,101,99,116,95,111,112,116,105,111,110,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,47,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,102,111,114,109,95,115,112,105,110,98,117,116,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,116,101,120,116,97,114,101,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,101,120,116,97,114,101,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,101,120,116,97,114,101,97,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,116,101,120,116,97,114,101,97,95,102,111,114,109,95,116,101,120,116,97,114,101,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,101,120,116,97,114,101,97,47,102,111,114,109,45,116,101,120,116,97,114,101,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,101,120,116,97,114,101,97,47,102,111,114,109,45,116,101,120,116,97,114,101,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,116,105,109,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,116,105,109,101,112,105,99,107,101,114,95,102,111,114,109,95,116,105,109,101,112,105,99,107,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,105,109,97,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,105,109,97,103,101,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,105,109,97,103,101,95,105,109,103,95,108,97,122,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,45,108,97,122,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,47,105,109,103,45,108,97,122,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,105,110,112,117,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,105,110,112,117,116,95,103,114,111,117,112,95,105,110,112,117,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,105,110,112,117,116,95,103,114,111,117,112,95,105,110,112,117,116,95,103,114,111,117,112,95,97,100,100,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,97,100,100,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,97,100,100,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,105,110,112,117,116,95,103,114,111,117,112,95,105,110,112,117,116,95,103,114,111,117,112,95,97,112,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,105,110,112,117,116,95,103,114,111,117,112,95,105,110,112,117,116,95,103,114,111,117,112,95,112,114,101,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,105,110,112,117,116,95,103,114,111,117,112,95,105,110,112,117,116,95,103,114,111,117,112,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,47,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,106,117,109,98,111,116,114,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,106,117,109,98,111,116,114,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,106,117,109,98,111,116,114,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,106,117,109,98,111,116,114,111,110,95,106,117,109,98,111,116,114,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,106,117,109,98,111,116,114,111,110,47,106,117,109,98,111,116,114,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,106,117,109,98,111,116,114,111,110,47,106,117,109,98,111,116,114,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,108,97,121,111,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,108,97,121,111,117,116,95,99,111,110,116,97,105,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,99,111,110,116,97,105,110,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,99,111,110,116,97,105,110,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,108,97,121,111,117,116,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,114,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,114,111,119,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,108,97,121,111,117,116,95,99,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,99,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,99,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,108,97,121,111,117,116,95,102,111,114,109,95,114,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,102,111,114,109,45,114,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,47,102,111,114,109,45,114,111,119,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,108,105,115,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,108,105,115,116,95,103,114,111,117,112,95,108,105,115,116,95,103,114,111,117,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,108,105,115,116,45,103,114,111,117,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,108,105,115,116,45,103,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,108,105,115,116,95,103,114,111,117,112,95,108,105,115,116,95,103,114,111,117,112,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,47,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,109,101,100,105,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,109,101,100,105,97,95,109,101,100,105,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,109,101,100,105,97,95,109,101,100,105,97,95,97,115,105,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,45,97,115,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,45,97,115,105,100,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,109,101,100,105,97,95,109,101,100,105,97,95,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,45,98,111,100,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,47,109,101,100,105,97,45,98,111,100,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,109,111,100,97,108,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,109,111,100,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,47,109,111,100,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,95,110,97,118,95,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,102,111,114,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,102,111,114,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,95,110,97,118,95,105,116,101,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,105,116,101,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,105,116,101,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,95,110,97,118,95,105,116,101,109,95,100,114,111,112,100,111,119,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,105,116,101,109,45,100,114,111,112,100,111,119,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,105,116,101,109,45,100,114,111,112,100,111,119,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,95,110,97,118,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,110,97,118,45,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,98,97,114,95,110,97,118,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,98,97,114,95,110,97,118,98,97,114,95,98,114,97,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,98,114,97,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,98,114,97,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,98,97,114,95,110,97,118,98,97,114,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,110,97,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,110,97,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,110,97,118,98,97,114,95,110,97,118,98,97,114,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,116,111,103,103,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,47,110,97,118,98,97,114,45,116,111,103,103,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,111,118,101,114,108,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,111,118,101,114,108,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,111,118,101,114,108,97,121,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,111,118,101,114,108,97,121,95,111,118,101,114,108,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,111,118,101,114,108,97,121,47,111,118,101,114,108,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,111,118,101,114,108,97,121,47,111,118,101,114,108,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,112,97,103,105,110,97,116,105,111,110,95,112,97,103,105,110,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,47,112,97,103,105,110,97,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,47,112,97,103,105,110,97,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,112,97,103,105,110,97,116,105,111,110,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,112,97,103,105,110,97,116,105,111,110,95,110,97,118,95,112,97,103,105,110,97,116,105,111,110,95,110,97,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,112,111,112,111,118,101,114,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,112,111,112,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,47,112,111,112,111,118,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,112,114,111,103,114,101,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,112,114,111,103,114,101,115,115,95,112,114,111,103,114,101,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,112,114,111,103,114,101,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,112,114,111,103,114,101,115,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,112,114,111,103,114,101,115,115,95,112,114,111,103,114,101,115,115,95,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,112,114,111,103,114,101,115,115,45,98,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,47,112,114,111,103,114,101,115,115,45,98,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,115,105,100,101,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,115,105,100,101,98,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,105,100,101,98,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,115,105,100,101,98,97,114,95,115,105,100,101,98,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,115,105,100,101,98,97,114,47,115,105,100,101,98,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,105,100,101,98,97,114,47,115,105,100,101,98,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,115,107,101,108,101,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,115,107,101,108,101,116,111,110,95,115,107,101,108,101,116,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,115,107,101,108,101,116,111,110,95,115,107,101,108,101,116,111,110,95,105,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,105,99,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,105,99,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,115,107,101,108,101,116,111,110,95,115,107,101,108,101,116,111,110,95,105,109,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,105,109,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,105,109,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,115,107,101,108,101,116,111,110,95,115,107,101,108,101,116,111,110,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,116,97,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,116,97,98,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,115,107,101,108,101,116,111,110,95,115,107,101,108,101,116,111,110,95,119,114,97,112,112,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,119,114,97,112,112,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,47,115,107,101,108,101,116,111,110,45,119,114,97,112,112,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,115,112,105,110,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,115,112,105,110,110,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,112,105,110,110,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,115,112,105,110,110,101,114,95,115,112,105,110,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,115,112,105,110,110,101,114,47,115,112,105,110,110,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,115,112,105,110,110,101,114,47,115,112,105,110,110,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,97,98,108,101,95,108,105,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,45,108,105,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,45,108,105,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,97,98,108,101,95,115,105,109,112,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,45,115,105,109,112,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,97,98,108,101,45,115,105,109,112,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,98,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,98,111,100,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,98,111,100,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,104,101,97,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,104,101,97,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,104,101,97,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,102,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,102,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,102,111,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,108,101,95,116,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,47,116,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,115,95,116,97,98,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,116,97,98,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,116,97,98,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,97,98,115,95,116,97,98,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,116,97,98,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,47,116,97,98,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,105,109,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,105,109,101,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,105,109,101,47,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,105,109,101,47,116,105,109,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,111,97,115,116,95,116,111,97,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,116,111,97,115,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,116,111,97,115,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,111,97,115,116,95,116,111,97,115,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,116,111,97,115,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,47,116,111,97,115,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,116,111,111,108,116,105,112,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,116,111,111,108,116,105,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,47,116,111,111,108,116,105,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,104,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,114,101,99,116,105,118,101,115,47,104,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,104,111,118,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,104,111,118,101,114,95,104,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,114,101,99,116,105,118,101,115,47,104,111,118,101,114,47,104,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,104,111,118,101,114,47,104,111,118,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,97,108,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,109,111,100,97,108,95,109,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,97,108,47,109,111,100,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,97,108,47,109,111,100,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,114,101,99,116,105,118,101,115,47,112,111,112,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,112,111,112,111,118,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,112,111,112,111,118,101,114,95,112,111,112,111,118,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,114,101,99,116,105,118,101,115,47,112,111,112,111,118,101,114,47,112,111,112,111,118,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,112,111,112,111,118,101,114,47,112,111,112,111,118,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,115,99,114,111,108,108,115,112,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,115,99,114,111,108,108,115,112,121,95,115,99,114,111,108,108,115,112,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,47,115,99,114,111,108,108,115,112,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,47,115,99,114,111,108,108,115,112,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,103,103,108,101,95,116,111,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,47,116,111,103,103,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,47,116,111,103,103,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,116,111,111,108,116,105,112,95,116,111,111,108,116,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,47,116,111,111,108,116,105,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,47,116,111,111,108,116,105,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,118,105,115,105,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,114,101,99,116,105,118,101,115,95,118,105,115,105,98,108,101,95,118,105,115,105,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,47,118,105,115,105,98,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,100,105,114,101,99,116,105,118,101,115,47,118,105,115,105,98,108,101,47,118,105,115,105,98,108,101,46,106,115,92,34,41,59,92,110,47,42,33,92,110,32,42,32,66,111,111,116,115,116,114,97,112,86,117,101,32,50,46,50,49,46,50,92,110,32,42,92,110,32,42,32,64,108,105,110,107,32,104,116,116,112,115,58,47,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,111,114,103,92,110,32,42,32,64,115,111,117,114,99,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,92,110,32,42,32,64,99,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,54,45,50,48,50,49,32,66,111,111,116,115,116,114,97,112,86,117,101,92,110,32,42,32,64,108,105,99,101,110,115,101,32,77,73,84,92,110,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,92,110,32,42,47,92,110,92,110,92,110,92,110,92,110,118,97,114,32,78,65,77,69,32,61,32,39,66,111,111,116,115,116,114,97,112,86,117,101,39,59,32,47,47,32,45,45,45,32,66,111,111,116,115,116,114,97,112,86,117,101,32,105,110,115,116,97,108,108,101,114,32,45,45,45,92,110,92,110,118,97,114,32,105,110,115,116,97,108,108,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,40,48,44,95,117,116,105,108,115,95,112,108,117,103,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,115,116,97,108,108,70,97,99,116,111,114,121,41,40,123,92,110,32,32,112,108,117,103,105,110,115,58,32,123,92,110,32,32,32,32,99,111,109,112,111,110,101,110,116,115,80,108,117,103,105,110,58,32,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,109,112,111,110,101,110,116,115,80,108,117,103,105,110,44,92,110,32,32,32,32,100,105,114,101,99,116,105,118,101,115,80,108,117,103,105,110,58,32,95,100,105,114,101,99,116,105,118,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,100,105,114,101,99,116,105,118,101,115,80,108,117,103,105,110,92,110,32,32,125,92,110,125,41,59,32,47,47,32,45,45,45,32,66,111,111,116,115,116,114,97,112,86,117,101,32,112,108,117,103,105,110,32,45,45,45,92,110,92,110,118,97,114,32,66,111,111,116,115,116,114,97,112,86,117,101,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,123,92,110,32,32,105,110,115,116,97,108,108,58,32,105,110,115,116,97,108,108,44,92,110,32,32,78,65,77,69,58,32,78,65,77,69,92,110,125,59,32,47,47,32,45,45,45,32,78,97,109,101,100,32,101,120,112,111,114,116,115,32,102,111,114,32,66,118,67,111,110,102,105,103,80,108,117,103,105,110,32,45,45,45,92,110,92,110,32,47,47,32,45,45,45,32,69,120,112,111,114,116,32,110,97,109,101,100,32,105,110,106,101,99,116,105,111,110,32,112,108,117,103,105,110,115,32,45,45,45,92,110,47,47,32,84,79,68,79,58,92,110,47,47,32,32,32,87,101,32,115,104,111,117,108,100,32,112,114,111,98,97,98,108,121,32,109,111,118,101,32,105,110,106,101,99,116,105,111,110,115,32,105,110,116,111,32,116,104,101,105,114,32,111,119,110,92,110,47,47,32,32,32,112,97,114,101,110,116,32,100,105,114,101,99,116,111,114,121,32,40,105,46,101,46,32,96,47,115,114,99,47,105,110,106,101,99,116,105,111,110,115,96,41,92,110,92,110,92,110,32,47,47,32,87,101,98,112,97,99,107,32,52,32,104,97,115,32,111,112,116,105,109,105,122,97,116,105,111,110,32,100,105,102,102,105,99,117,108,116,105,101,115,32,119,105,116,104,32,114,101,45,101,120,112,111,114,116,32,111,102,32,114,101,45,101,120,112,111,114,116,115,44,92,110,47,47,32,115,111,32,119,101,32,105,109,112,111,114,116,32,116,104,101,32,99,111,109,112,111,110,101,110,116,115,32,105,110,100,105,118,105,100,117,97,108,108,121,32,104,101,114,101,32,102,111,114,32,98,101,116,116,101,114,32,116,114,101,101,32,115,104,97,107,105,110,103,92,110,47,47,92,110,47,47,32,87,101,98,112,97,99,107,32,118,53,32,102,105,120,101,115,32,116,104,101,32,111,112,116,105,109,105,122,97,116,105,111,110,115,32,119,105,116,104,32,114,101,45,101,120,112,111,114,116,32,111,102,32,114,101,45,101,120,112,111,114,116,115,32,115,111,32,116,104,105,115,92,110,47,47,32,99,97,110,32,98,101,32,114,101,118,101,114,116,101,100,32,98,97,99,107,32,116,111,32,96,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,116,97,98,108,101,39,96,32,119,104,101,110,32,87,101,98,112,97,99,107,32,118,53,32,105,115,32,114,101,108,101,97,115,101,100,92,110,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,119,101,98,112,97,99,107,47,119,101,98,112,97,99,107,47,112,117,108,108,47,57,50,48,51,32,40,97,118,97,105,108,97,98,108,101,32,105,110,32,87,101,98,112,97,99,107,32,118,53,46,48,46,48,45,97,108,112,104,97,46,49,53,41,92,110,47,47,32,45,45,32,69,120,112,111,114,116,32,73,99,111,110,32,99,111,109,112,111,110,101,110,116,115,32,97,110,100,32,73,99,111,110,80,108,117,103,105,110,47,66,111,111,116,115,116,114,97,112,86,117,101,73,99,111,110,115,32,45,45,45,92,110,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,105,99,111,110,115,39,92,110,92,110,92,110,92,110,32,47,47,32,84,104,105,115,32,114,101,45,101,120,112,111,114,116,32,105,115,32,111,110,108,121,32,97,32,115,105,110,103,108,101,32,108,101,118,101,108,32,100,101,101,112,44,32,119,104,105,99,104,92,110,47,47,32,87,101,98,112,97,99,107,32,52,32,40,117,115,117,97,108,108,121,41,32,104,97,110,100,108,101,115,32,99,111,114,114,101,99,116,108,121,32,119,104,101,110,32,116,114,101,101,32,115,104,97,107,105,110,103,92,110,92,110,32,47,47,32,45,45,45,32,69,120,112,111,114,116,32,97,108,108,32,105,110,100,105,118,105,100,117,97,108,32,99,111,109,112,111,110,101,110,116,115,32,97,110,100,32,99,111,109,112,111,110,101,110,116,32,103,114,111,117,112,32,112,108,117,103,105,110,115,32,97,115,32,110,97,109,101,100,32,101,120,112,111,114,116,115,32,45,45,45,92,110,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,97,108,101,114,116,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,97,115,112,101,99,116,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,97,118,97,116,97,114,39,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,98,97,100,103,101,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,98,114,101,97,100,99,114,117,109,98,39,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,39,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,103,114,111,117,112,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,98,117,116,116,111,110,45,116,111,111,108,98,97,114,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,108,101,110,100,97,114,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,100,39,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,99,97,114,111,117,115,101,108,39,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,99,111,108,108,97,112,115,101,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,100,114,111,112,100,111,119,110,39,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,101,109,98,101,100,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,39,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,39,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,102,105,108,101,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,103,114,111,117,112,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,105,110,112,117,116,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,39,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,116,105,110,103,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,97,103,115,39,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,101,108,101,99,116,39,92,110,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,101,120,116,97,114,101,97,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,105,109,97,103,101,39,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,105,110,112,117,116,45,103,114,111,117,112,39,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,106,117,109,98,111,116,114,111,110,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,108,97,121,111,117,116,39,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,108,105,115,116,45,103,114,111,117,112,39,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,109,101,100,105,97,39,92,110,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,109,111,100,97,108,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,39,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,98,97,114,39,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,111,118,101,114,108,97,121,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,112,97,103,105,110,97,116,105,111,110,45,110,97,118,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,112,111,112,111,118,101,114,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,112,114,111,103,114,101,115,115,39,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,115,105,100,101,98,97,114,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,115,107,101,108,101,116,111,110,39,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,115,112,105,110,110,101,114,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,108,101,39,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,116,97,98,115,39,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,116,105,109,101,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,116,111,97,115,116,39,92,110,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,99,111,109,112,111,110,101,110,116,115,47,116,111,111,108,116,105,112,39,92,110,92,110,92,110,32,47,47,32,45,45,45,32,78,97,109,101,100,32,101,120,112,111,114,116,115,32,111,102,32,97,108,108,32,100,105,114,101,99,116,105,118,101,115,32,40,86,66,60,78,97,109,101,62,41,32,97,110,100,32,112,108,117,103,105,110,115,32,40,86,66,60,78,97,109,101,62,80,108,117,103,105,110,41,32,45,45,45,92,110,47,47,32,87,101,98,112,97,99,107,32,52,32,104,97,115,32,111,112,116,105,109,105,122,97,116,105,111,110,32,100,105,102,102,105,99,117,108,116,105,101,115,32,119,105,116,104,32,114,101,45,101,120,112,111,114,116,32,111,102,32,114,101,45,101,120,112,111,114,116,115,44,92,110,47,47,32,115,111,32,119,101,32,105,109,112,111,114,116,32,116,104,101,32,100,105,114,101,99,116,105,118,101,115,32,105,110,100,105,118,105,100,117,97,108,108,121,32,104,101,114,101,32,102,111,114,32,98,101,116,116,101,114,32,116,114,101,101,32,115,104,97,107,105,110,103,92,110,47,47,92,110,47,47,32,87,101,98,112,97,99,107,32,118,53,32,102,105,120,101,115,32,116,104,101,32,111,112,116,105,109,105,122,97,116,105,111,110,115,32,119,105,116,104,32,114,101,45,101,120,112,111,114,116,32,111,102,32,114,101,45,101,120,112,111,114,116,115,32,115,111,32,116,104,105,115,92,110,47,47,32,99,97,110,32,98,101,32,114,101,118,101,114,116,101,100,32,98,97,99,107,32,116,111,32,96,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,115,99,114,111,108,108,115,112,121,39,96,32,119,104,101,110,32,87,101,98,112,97,99,107,32,118,53,32,105,115,32,114,101,108,101,97,115,101,100,92,110,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,119,101,98,112,97,99,107,47,119,101,98,112,97,99,107,47,112,117,108,108,47,57,50,48,51,32,40,97,118,97,105,108,97,98,108,101,32,105,110,32,87,101,98,112,97,99,107,32,118,53,46,48,46,48,45,97,108,112,104,97,46,49,53,41,92,110,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,100,105,114,101,99,116,105,118,101,115,47,104,111,118,101,114,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,97,108,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,100,105,114,101,99,116,105,118,101,115,47,112,111,112,111,118,101,114,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,100,105,114,101,99,116,105,118,101,115,47,115,99,114,111,108,108,115,112,121,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,100,105,114,101,99,116,105,118,101,115,47,116,111,103,103,108,101,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,39,92,110,92,110,92,110,32,47,47,32,101,120,112,111,114,116,32,42,32,102,114,111,109,32,39,46,47,100,105,114,101,99,116,105,118,101,115,47,116,111,111,108,116,105,112,39,92,110,92,110,92,110,32,47,47,32,68,101,102,97,117,108,116,32,101,120,112,111,114,116,32,105,115,32,116,104,101,32,66,111,111,116,115,116,114,97,112,86,117,101,32,112,108,117,103,105,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,66,111,111,116,115,116,114,97,112,86,117,101,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,116,116,114,115,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,116,116,114,115,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,99,97,99,104,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,99,97,99,104,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,97,99,104,101,46,106,115,92,34,41,59,92,110,92,110,118,97,114,32,97,116,116,114,115,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,99,97,99,104,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,67,97,99,104,101,77,105,120,105,110,41,40,39,36,97,116,116,114,115,39,44,32,39,98,118,65,116,116,114,115,39,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,99,97,114,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,99,97,114,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,97,114,100,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,97,114,100,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,98,103,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,98,111,114,100,101,114,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,116,97,103,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,118,39,41,44,92,110,32,32,116,101,120,116,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,78,65,77,69,95,67,65,82,68,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,99,97,114,100,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,99,97,114,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,99,108,105,99,107,45,111,117,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,99,108,105,99,107,45,111,117,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,108,105,99,107,79,117,116,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,108,105,99,107,79,117,116,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,99,108,105,99,107,79,117,116,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,105,115,116,101,110,70,111,114,67,108,105,99,107,79,117,116,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,108,105,115,116,101,110,70,111,114,67,108,105,99,107,79,117,116,58,32,102,117,110,99,116,105,111,110,32,108,105,115,116,101,110,70,111,114,67,108,105,99,107,79,117,116,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,118,101,110,116,79,102,102,41,40,116,104,105,115,46,99,108,105,99,107,79,117,116,69,108,101,109,101,110,116,44,32,116,104,105,115,46,99,108,105,99,107,79,117,116,69,118,101,110,116,78,97,109,101,44,32,116,104,105,115,46,95,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,118,101,110,116,79,110,41,40,116,104,105,115,46,99,108,105,99,107,79,117,116,69,108,101,109,101,110,116,44,32,116,104,105,115,46,99,108,105,99,107,79,117,116,69,118,101,110,116,78,97,109,101,44,32,116,104,105,115,46,95,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,67,114,101,97,116,101,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,67,114,101,97,116,101,40,41,32,123,92,110,32,32,32,32,47,47,32,68,101,99,108,97,114,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,116,104,105,115,46,99,108,105,99,107,79,117,116,69,108,101,109,101,110,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,99,108,105,99,107,79,117,116,69,118,101,110,116,78,97,109,101,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,99,108,105,99,107,79,117,116,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,105,99,107,79,117,116,69,108,101,109,101,110,116,32,61,32,100,111,99,117,109,101,110,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,99,108,105,99,107,79,117,116,69,118,101,110,116,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,105,99,107,79,117,116,69,118,101,110,116,78,97,109,101,32,61,32,39,99,108,105,99,107,39,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,108,105,115,116,101,110,70,111,114,67,108,105,99,107,79,117,116,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,118,101,110,116,79,110,41,40,116,104,105,115,46,99,108,105,99,107,79,117,116,69,108,101,109,101,110,116,44,32,116,104,105,115,46,99,108,105,99,107,79,117,116,69,118,101,110,116,78,97,109,101,44,32,116,104,105,115,46,95,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,118,101,110,116,79,102,102,41,40,116,104,105,115,46,99,108,105,99,107,79,117,116,69,108,101,109,101,110,116,44,32,116,104,105,115,46,99,108,105,99,107,79,117,116,69,118,101,110,116,78,97,109,101,44,32,116,104,105,115,46,95,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,105,115,67,108,105,99,107,79,117,116,58,32,102,117,110,99,116,105,111,110,32,105,115,67,108,105,99,107,79,117,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,111,110,116,97,105,110,115,41,40,116,104,105,115,46,36,101,108,44,32,101,118,101,110,116,46,116,97,114,103,101,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,95,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,95,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,32,38,38,32,116,104,105,115,46,105,115,67,108,105,99,107,79,117,116,40,101,118,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,99,108,105,99,107,45,111,117,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,100,114,111,112,100,111,119,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,100,114,111,112,100,111,119,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,114,111,112,100,111,119,110,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,114,111,112,100,111,119,110,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,112,111,112,112,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,112,111,112,112,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,112,112,101,114,46,106,115,47,100,105,115,116,47,101,115,109,47,112,111,112,112,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,111,112,112,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,111,112,112,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,111,112,112,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,98,118,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,119,97,114,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,105,99,107,95,111,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,108,105,99,107,45,111,117,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,99,108,105,99,107,45,111,117,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,99,117,115,95,105,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,99,117,115,45,105,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,99,117,115,45,105,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,41,59,92,110,118,97,114,32,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,32,61,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,41,59,32,47,47,32,67,83,83,32,115,101,108,101,99,116,111,114,115,92,110,92,110,118,97,114,32,83,69,76,69,67,84,79,82,95,70,79,82,77,95,67,72,73,76,68,32,61,32,39,46,100,114,111,112,100,111,119,110,32,102,111,114,109,39,59,92,110,118,97,114,32,83,69,76,69,67,84,79,82,95,73,84,69,77,32,61,32,91,39,46,100,114,111,112,100,111,119,110,45,105,116,101,109,39,44,32,39,46,98,45,100,114,111,112,100,111,119,110,45,102,111,114,109,39,93,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,115,101,108,101,99,116,111,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,92,34,92,34,46,99,111,110,99,97,116,40,115,101,108,101,99,116,111,114,44,32,92,34,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,92,34,41,59,92,110,125,41,46,106,111,105,110,40,39,44,32,39,41,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,82,101,116,117,114,110,32,97,110,32,97,114,114,97,121,32,111,102,32,118,105,115,105,98,108,101,32,105,116,101,109,115,92,110,92,110,118,97,114,32,102,105,108,116,101,114,86,105,115,105,98,108,101,115,32,61,32,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,86,105,115,105,98,108,101,115,40,101,108,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,101,108,115,32,124,124,32,91,93,41,46,102,105,108,116,101,114,40,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,86,105,115,105,98,108,101,41,59,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,47,47,32,83,116,114,105,110,103,58,32,96,115,99,114,111,108,108,80,97,114,101,110,116,96,44,32,96,119,105,110,100,111,119,96,32,111,114,32,96,118,105,101,119,112,111,114,116,96,92,110,32,32,47,47,32,72,84,77,76,69,108,101,109,101,110,116,58,32,72,84,77,76,32,69,108,101,109,101,110,116,32,114,101,102,101,114,101,110,99,101,92,110,32,32,98,111,117,110,100,97,114,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,91,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,72,84,77,76,69,108,101,109,101,110,116,44,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,93,44,32,39,115,99,114,111,108,108,80,97,114,101,110,116,39,41,44,92,110,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,80,108,97,99,101,32,108,101,102,116,32,105,102,32,112,111,115,115,105,98,108,101,92,110,32,32,100,114,111,112,108,101,102,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,80,108,97,99,101,32,114,105,103,104,116,32,105,102,32,112,111,115,115,105,98,108,101,92,110,32,32,100,114,111,112,114,105,103,104,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,80,108,97,99,101,32,111,110,32,116,111,112,32,105,102,32,112,111,115,115,105,98,108,101,92,110,32,32,100,114,111,112,117,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,68,105,115,97,98,108,101,32,97,117,116,111,45,102,108,105,112,112,105,110,103,32,111,102,32,109,101,110,117,32,102,114,111,109,32,98,111,116,116,111,109,32,60,61,62,32,116,111,112,92,110,32,32,110,111,70,108,105,112,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,78,117,109,98,101,114,32,111,102,32,112,105,120,101,108,115,32,111,114,32,97,32,67,83,83,32,117,110,105,116,32,118,97,108,117,101,32,116,111,32,111,102,102,115,101,116,32,109,101,110,117,92,110,32,32,47,47,32,40,105,46,101,46,32,96,49,112,120,96,44,32,96,49,114,101,109,96,44,32,101,116,99,46,41,92,110,32,32,111,102,102,115,101,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,48,41,44,92,110,32,32,112,111,112,112,101,114,79,112,116,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,79,66,74,69,67,84,44,32,123,125,41,44,92,110,32,32,47,47,32,82,105,103,104,116,32,97,108,105,103,110,32,109,101,110,117,32,40,100,101,102,97,117,108,116,32,105,115,32,108,101,102,116,32,97,108,105,103,110,41,92,110,32,32,114,105,103,104,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,41,41,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,100,114,111,112,100,111,119,110,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,105,120,105,110,115,58,32,91,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,100,77,105,120,105,110,44,32,95,108,105,115,116,101,110,95,111,110,95,114,111,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,108,105,115,116,101,110,79,110,82,111,111,116,77,105,120,105,110,44,32,95,99,108,105,99,107,95,111,117,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,99,108,105,99,107,79,117,116,77,105,120,105,110,44,32,95,102,111,99,117,115,95,105,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,102,111,99,117,115,73,110,77,105,120,105,110,93,44,92,110,32,32,112,114,111,118,105,100,101,58,32,102,117,110,99,116,105,111,110,32,112,114,111,118,105,100,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,98,118,68,114,111,112,100,111,119,110,58,32,116,104,105,115,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,105,110,106,101,99,116,58,32,123,92,110,32,32,32,32,98,118,78,97,118,98,97,114,58,32,123,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,110,117,108,108,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,118,105,115,105,98,108,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,118,105,115,105,98,108,101,67,104,97,110,103,101,80,114,101,118,101,110,116,101,100,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,105,110,78,97,118,98,97,114,58,32,102,117,110,99,116,105,111,110,32,105,110,78,97,118,98,97,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,105,115,78,117,108,108,41,40,116,104,105,115,46,98,118,78,97,118,98,97,114,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,111,103,103,108,101,114,58,32,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,111,103,103,108,101,32,61,32,116,104,105,115,46,36,114,101,102,115,46,116,111,103,103,108,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,111,103,103,108,101,32,63,32,116,111,103,103,108,101,46,36,101,108,32,124,124,32,116,111,103,103,108,101,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,105,114,101,99,116,105,111,110,67,108,97,115,115,58,32,102,117,110,99,116,105,111,110,32,100,105,114,101,99,116,105,111,110,67,108,97,115,115,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,114,111,112,117,112,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,100,114,111,112,117,112,39,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,100,114,111,112,114,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,100,114,111,112,114,105,103,104,116,39,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,100,114,111,112,108,101,102,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,100,114,111,112,108,101,102,116,39,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,111,117,110,100,97,114,121,67,108,97,115,115,58,32,102,117,110,99,116,105,111,110,32,98,111,117,110,100,97,114,121,67,108,97,115,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,111,115,105,116,105,111,110,32,96,115,116,97,116,105,99,96,32,105,115,32,110,101,101,100,101,100,32,116,111,32,97,108,108,111,119,32,109,101,110,117,32,116,111,32,92,34,98,114,101,97,107,111,117,116,92,34,32,111,102,32,116,104,101,32,96,115,99,114,111,108,108,80,97,114,101,110,116,96,92,110,32,32,32,32,32,32,47,47,32,98,111,117,110,100,97,114,105,101,115,32,119,104,101,110,32,98,111,117,110,100,97,114,121,32,105,115,32,97,110,121,116,104,105,110,103,32,111,116,104,101,114,32,116,104,97,110,32,96,115,99,114,111,108,108,80,97,114,101,110,116,96,92,110,32,32,32,32,32,32,47,47,32,83,101,101,58,32,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,105,115,115,117,101,115,47,50,52,50,53,49,35,105,115,115,117,101,99,111,109,109,101,110,116,45,51,52,49,52,49,51,55,56,54,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,111,117,110,100,97,114,121,32,33,61,61,32,39,115,99,114,111,108,108,80,97,114,101,110,116,39,32,38,38,32,33,116,104,105,115,46,105,110,78,97,118,98,97,114,32,63,32,39,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,39,32,58,32,39,39,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,118,105,115,105,98,108,101,58,32,102,117,110,99,116,105,111,110,32,118,105,115,105,98,108,101,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,118,105,115,105,98,108,101,67,104,97,110,103,101,80,114,101,118,101,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,118,105,115,105,98,108,101,67,104,97,110,103,101,80,114,101,118,101,110,116,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,78,97,109,101,32,61,32,110,101,119,86,97,108,117,101,32,63,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,32,58,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,69,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,98,118,69,118,101,110,116,32,61,32,110,101,119,32,95,117,116,105,108,115,95,98,118,95,101,118,101,110,116,95,99,108,97,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,66,118,69,118,101,110,116,40,101,118,101,110,116,78,97,109,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,97,110,99,101,108,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,118,117,101,84,97,114,103,101,116,58,32,116,104,105,115,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,104,105,115,46,36,114,101,102,115,46,109,101,110,117,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,108,97,116,101,100,84,97,114,103,101,116,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,73,100,58,32,116,104,105,115,46,115,97,102,101,73,100,32,63,32,116,104,105,115,46,115,97,102,101,73,100,40,41,32,58,32,116,104,105,115,46,105,100,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,98,118,69,118,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,98,118,69,118,101,110,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,115,101,116,32,118,97,108,117,101,32,97,110,100,32,101,120,105,116,32,105,102,32,99,97,110,99,101,108,101,100,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,118,105,115,105,98,108,101,67,104,97,110,103,101,80,114,101,118,101,110,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,118,105,115,105,98,108,101,32,61,32,111,108,100,86,97,108,117,101,59,32,47,47,32,74,117,115,116,32,105,110,32,99,97,115,101,32,97,32,99,104,105,108,100,32,101,108,101,109,101,110,116,32,116,114,105,103,103,101,114,101,100,32,96,116,104,105,115,46,104,105,100,101,40,116,114,117,101,41,96,92,110,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,111,102,102,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,44,32,116,104,105,115,46,102,111,99,117,115,84,111,103,103,108,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,77,101,110,117,40,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,77,101,110,117,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,105,115,97,98,108,101,100,58,32,102,117,110,99,116,105,111,110,32,100,105,115,97,98,108,101,100,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,32,38,38,32,110,101,119,86,97,108,117,101,32,38,38,32,116,104,105,115,46,118,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,72,105,100,101,32,100,114,111,112,100,111,119,110,32,105,102,32,100,105,115,97,98,108,101,100,32,99,104,97,110,103,101,115,32,116,111,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,118,105,115,105,98,108,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,67,114,101,97,116,101,32,112,114,105,118,97,116,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,115,92,110,32,32,32,32,116,104,105,115,46,36,95,112,111,112,112,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,36,95,104,105,100,101,84,105,109,101,111,117,116,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,100,101,97,99,116,105,118,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,100,101,97,99,116,105,118,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,73,110,32,99,97,115,101,32,119,101,32,97,114,101,32,105,110,115,105,100,101,32,97,32,96,60,107,101,101,112,45,97,108,105,118,101,62,96,92,110,32,32,32,32,116,104,105,115,46,118,105,115,105,98,108,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,116,104,105,115,46,119,104,105,108,101,79,112,101,110,76,105,115,116,101,110,40,102,97,108,115,101,41,59,92,110,32,32,32,32,116,104,105,115,46,100,101,115,116,114,111,121,80,111,112,112,101,114,40,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,118,105,115,105,98,108,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,116,104,105,115,46,119,104,105,108,101,79,112,101,110,76,105,115,116,101,110,40,102,97,108,115,101,41,59,92,110,32,32,32,32,116,104,105,115,46,100,101,115,116,114,111,121,80,111,112,112,101,114,40,41,59,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,72,105,100,101,84,105,109,101,111,117,116,40,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,69,118,101,110,116,32,101,109,105,116,116,101,114,92,110,32,32,32,32,101,109,105,116,69,118,101,110,116,58,32,102,117,110,99,116,105,111,110,32,101,109,105,116,69,118,101,110,116,40,98,118,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,98,118,69,118,101,110,116,46,116,121,112,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,41,40,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,44,32,116,121,112,101,41,44,32,98,118,69,118,101,110,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,116,121,112,101,44,32,98,118,69,118,101,110,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,104,111,119,77,101,110,117,58,32,102,117,110,99,116,105,111,110,32,115,104,111,119,77,101,110,117,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,79,110,108,121,32,105,110,115,116,97,110,116,105,97,116,101,32,80,111,112,112,101,114,46,106,115,32,119,104,101,110,32,100,114,111,112,100,111,119,110,32,105,115,32,110,111,116,32,105,110,32,96,60,98,45,110,97,118,98,97,114,62,96,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,110,78,97,118,98,97,114,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,112,111,112,112,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,119,97,114,110,41,40,39,80,111,112,112,101,114,46,106,115,32,110,111,116,32,102,111,117,110,100,46,32,70,97,108,108,105,110,103,32,98,97,99,107,32,116,111,32,67,83,83,32,112,111,115,105,116,105,111,110,105,110,103,39,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,78,65,77,69,95,68,82,79,80,68,79,87,78,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,70,111,114,32,100,114,111,112,117,112,32,119,105,116,104,32,97,108,105,103,110,109,101,110,116,32,119,101,32,117,115,101,32,116,104,101,32,112,97,114,101,110,116,32,101,108,101,109,101,110,116,32,97,115,32,112,111,112,112,101,114,32,99,111,110,116,97,105,110,101,114,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,108,32,61,32,116,104,105,115,46,100,114,111,112,117,112,32,38,38,32,116,104,105,115,46,114,105,103,104,116,32,124,124,32,116,104,105,115,46,115,112,108,105,116,32,63,32,116,104,105,115,46,36,101,108,32,58,32,116,104,105,115,46,36,114,101,102,115,46,116,111,103,103,108,101,59,32,47,47,32,77,97,107,101,32,115,117,114,101,32,119,101,32,104,97,118,101,32,97,32,114,101,102,101,114,101,110,99,101,32,116,111,32,97,110,32,101,108,101,109,101,110,116,44,32,110,111,116,32,97,32,99,111,109,112,111,110,101,110,116,33,92,110,92,110,32,32,32,32,32,32,32,32,32,32,101,108,32,61,32,101,108,46,36,101,108,32,124,124,32,101,108,59,32,47,47,32,73,110,115,116,97,110,116,105,97,116,101,32,80,111,112,112,101,114,46,106,115,92,110,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,99,114,101,97,116,101,80,111,112,112,101,114,40,101,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,47,47,32,69,110,115,117,114,101,32,111,116,104,101,114,32,109,101,110,117,115,32,97,114,101,32,99,108,111,115,101,100,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,44,32,116,104,105,115,41,59,32,47,47,32,69,110,97,98,108,101,32,108,105,115,116,101,110,101,114,115,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,119,104,105,108,101,79,112,101,110,76,105,115,116,101,110,40,116,114,117,101,41,59,32,47,47,32,87,114,97,112,32,105,110,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,101,110,115,117,114,101,32,109,101,110,117,32,105,115,32,102,117,108,108,121,32,114,101,110,100,101,114,101,100,47,115,104,111,119,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,70,111,99,117,115,32,111,110,32,116,104,101,32,109,101,110,117,32,99,111,110,116,97,105,110,101,114,32,111,110,32,115,104,111,119,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,102,111,99,117,115,77,101,110,117,40,41,59,32,47,47,32,69,109,105,116,32,116,104,101,32,115,104,111,119,110,32,101,118,101,110,116,92,110,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,105,100,101,77,101,110,117,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,77,101,110,117,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,119,104,105,108,101,79,112,101,110,76,105,115,116,101,110,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,44,32,116,104,105,115,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,100,101,115,116,114,111,121,80,111,112,112,101,114,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,114,101,97,116,101,80,111,112,112,101,114,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,80,111,112,112,101,114,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,100,101,115,116,114,111,121,80,111,112,112,101,114,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,112,111,112,112,101,114,32,61,32,110,101,119,32,112,111,112,112,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,101,108,101,109,101,110,116,44,32,116,104,105,115,46,36,114,101,102,115,46,109,101,110,117,44,32,116,104,105,115,46,103,101,116,80,111,112,112,101,114,67,111,110,102,105,103,40,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,69,110,115,117,114,101,32,112,111,112,112,101,114,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,32,97,114,101,32,114,101,109,111,118,101,100,32,99,108,101,97,110,108,121,92,110,32,32,32,32,100,101,115,116,114,111,121,80,111,112,112,101,114,58,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,80,111,112,112,101,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,112,111,112,112,101,114,32,38,38,32,116,104,105,115,46,36,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,112,111,112,112,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,73,110,115,116,114,117,99,116,115,32,112,111,112,112,101,114,32,116,111,32,114,101,45,99,111,109,112,117,116,101,115,32,116,104,101,32,100,114,111,112,100,111,119,110,32,112,111,115,105,116,105,111,110,92,110,32,32,32,32,47,47,32,117,115,101,102,117,108,32,105,102,32,116,104,101,32,99,111,110,116,101,110,116,32,99,104,97,110,103,101,115,32,115,105,122,101,92,110,32,32,32,32,117,112,100,97,116,101,80,111,112,112,101,114,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,80,111,112,112,101,114,40,41,32,123,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,112,111,112,112,101,114,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,40,41,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,95,117,110,117,115,101,100,41,32,123,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,108,101,97,114,72,105,100,101,84,105,109,101,111,117,116,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,72,105,100,101,84,105,109,101,111,117,116,40,41,32,123,92,110,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,36,95,104,105,100,101,84,105,109,101,111,117,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,104,105,100,101,84,105,109,101,111,117,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,80,111,112,112,101,114,67,111,110,102,105,103,58,32,102,117,110,99,116,105,111,110,32,103,101,116,80,111,112,112,101,114,67,111,110,102,105,103,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,108,97,99,101,109,101,110,116,32,61,32,95,99,111,110,115,116,97,110,116,115,95,112,111,112,112,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,80,76,65,67,69,77,69,78,84,95,66,79,84,84,79,77,95,83,84,65,82,84,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,114,111,112,117,112,41,32,123,92,110,32,32,32,32,32,32,32,32,112,108,97,99,101,109,101,110,116,32,61,32,116,104,105,115,46,114,105,103,104,116,32,63,32,95,99,111,110,115,116,97,110,116,115,95,112,111,112,112,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,80,76,65,67,69,77,69,78,84,95,84,79,80,95,69,78,68,32,58,32,95,99,111,110,115,116,97,110,116,115,95,112,111,112,112,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,80,76,65,67,69,77,69,78,84,95,84,79,80,95,83,84,65,82,84,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,100,114,111,112,114,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,112,108,97,99,101,109,101,110,116,32,61,32,95,99,111,110,115,116,97,110,116,115,95,112,111,112,112,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,80,76,65,67,69,77,69,78,84,95,82,73,71,72,84,95,83,84,65,82,84,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,100,114,111,112,108,101,102,116,41,32,123,92,110,32,32,32,32,32,32,32,32,112,108,97,99,101,109,101,110,116,32,61,32,95,99,111,110,115,116,97,110,116,115,95,112,111,112,112,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,80,76,65,67,69,77,69,78,84,95,76,69,70,84,95,83,84,65,82,84,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,114,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,112,108,97,99,101,109,101,110,116,32,61,32,95,99,111,110,115,116,97,110,116,115,95,112,111,112,112,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,80,76,65,67,69,77,69,78,84,95,66,79,84,84,79,77,95,69,78,68,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,112,111,112,112,101,114,67,111,110,102,105,103,32,61,32,123,92,110,32,32,32,32,32,32,32,32,112,108,97,99,101,109,101,110,116,58,32,112,108,97,99,101,109,101,110,116,44,92,110,32,32,32,32,32,32,32,32,109,111,100,105,102,105,101,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,111,102,102,115,101,116,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,102,102,115,101,116,58,32,116,104,105,115,46,111,102,102,115,101,116,32,124,124,32,48,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,102,108,105,112,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,110,97,98,108,101,100,58,32,33,116,104,105,115,46,110,111,70,108,105,112,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,118,97,114,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,32,61,32,116,104,105,115,46,98,111,117,110,100,97,114,121,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,112,111,112,112,101,114,67,111,110,102,105,103,46,109,111,100,105,102,105,101,114,115,46,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,101,114,103,101,68,101,101,112,41,40,112,111,112,112,101,114,67,111,110,102,105,103,44,32,116,104,105,115,46,112,111,112,112,101,114,79,112,116,115,32,124,124,32,123,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,84,117,114,110,32,108,105,115,116,101,110,101,114,115,32,111,110,47,111,102,102,32,119,104,105,108,101,32,111,112,101,110,92,110,32,32,32,32,119,104,105,108,101,79,112,101,110,76,105,115,116,101,110,58,32,102,117,110,99,116,105,111,110,32,119,104,105,108,101,79,112,101,110,76,105,115,116,101,110,40,105,115,79,112,101,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,72,105,100,101,32,116,104,101,32,100,114,111,112,100,111,119,110,32,119,104,101,110,32,99,108,105,99,107,101,100,32,111,117,116,115,105,100,101,92,110,32,32,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,70,111,114,67,108,105,99,107,79,117,116,32,61,32,105,115,79,112,101,110,59,32,47,47,32,72,105,100,101,32,116,104,101,32,100,114,111,112,100,111,119,110,32,119,104,101,110,32,105,116,32,108,111,115,101,115,32,102,111,99,117,115,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,70,111,114,70,111,99,117,115,73,110,32,61,32,105,115,79,112,101,110,59,32,47,47,32,72,105,100,101,32,116,104,101,32,100,114,111,112,100,111,119,110,32,119,104,101,110,32,97,110,111,116,104,101,114,32,100,114,111,112,100,111,119,110,32,105,115,32,111,112,101,110,101,100,92,110,92,110,32,32,32,32,32,32,118,97,114,32,109,101,116,104,111,100,32,61,32,105,115,79,112,101,110,32,63,32,39,36,111,110,39,32,58,32,39,36,111,102,102,39,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,114,111,111,116,91,109,101,116,104,111,100,93,40,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,72,79,87,78,44,32,116,104,105,115,46,114,111,111,116,67,108,111,115,101,76,105,115,116,101,110,101,114,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,111,111,116,67,108,111,115,101,76,105,115,116,101,110,101,114,58,32,102,117,110,99,116,105,111,110,32,114,111,111,116,67,108,111,115,101,76,105,115,116,101,110,101,114,40,118,109,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,109,32,33,61,61,32,116,104,105,115,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,118,105,115,105,98,108,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,117,98,108,105,99,32,109,101,116,104,111,100,32,116,111,32,115,104,111,119,32,100,114,111,112,100,111,119,110,92,110,32,32,32,32,115,104,111,119,58,32,102,117,110,99,116,105,111,110,32,115,104,111,119,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,87,114,97,112,32,105,110,32,97,32,96,114,101,113,117,101,115,116,65,70,40,41,96,32,116,111,32,97,108,108,111,119,32,97,110,121,32,112,114,101,118,105,111,117,115,92,110,32,32,32,32,32,32,47,47,32,99,108,105,99,107,32,104,97,110,100,108,105,110,103,32,116,111,32,111,99,99,117,114,32,102,105,114,115,116,92,110,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,118,105,115,105,98,108,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,117,98,108,105,99,32,109,101,116,104,111,100,32,116,111,32,104,105,100,101,32,100,114,111,112,100,111,119,110,92,110,32,32,32,32,104,105,100,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,102,111,99,117,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,118,105,115,105,98,108,101,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,114,101,102,111,99,117,115,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,104,105,108,100,32,101,108,101,109,101,110,116,32,105,115,32,99,108,111,115,105,110,103,32,116,104,101,32,100,114,111,112,100,111,119,110,32,111,110,32,99,108,105,99,107,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,44,32,116,104,105,115,46,102,111,99,117,115,84,111,103,103,108,101,114,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,67,97,108,108,101,100,32,111,110,108,121,32,98,121,32,97,32,98,117,116,116,111,110,32,116,104,97,116,32,116,111,103,103,108,101,115,32,116,104,101,32,109,101,110,117,92,110,32,32,32,32,116,111,103,103,108,101,58,32,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,101,118,101,110,116,32,61,32,101,118,101,110,116,32,124,124,32,123,125,59,32,47,47,32,69,97,114,108,121,32,101,120,105,116,32,119,104,101,110,32,110,111,116,32,97,32,99,108,105,99,107,32,101,118,101,110,116,32,111,114,32,69,78,84,69,82,44,32,83,80,65,67,69,32,111,114,32,68,79,87,78,32,119,101,114,101,32,112,114,101,115,115,101,100,92,110,92,110,32,32,32,32,32,32,118,97,114,32,95,101,118,101,110,116,32,61,32,101,118,101,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,32,61,32,95,101,118,101,110,116,46,116,121,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,67,111,100,101,32,61,32,95,101,118,101,110,116,46,107,101,121,67,111,100,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,33,61,61,32,39,99,108,105,99,107,39,32,38,38,32,33,40,116,121,112,101,32,61,61,61,32,39,107,101,121,100,111,119,110,39,32,38,38,32,91,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,67,79,68,69,95,69,78,84,69,82,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,67,79,68,69,95,83,80,65,67,69,44,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,67,79,68,69,95,68,79,87,78,93,46,105,110,100,101,120,79,102,40,107,101,121,67,111,100,101,41,32,33,61,61,32,45,49,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,118,105,115,105,98,108,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,84,79,71,71,76,69,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,32,47,47,32,84,111,103,103,108,101,32,118,105,115,105,98,105,108,105,116,121,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,118,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,77,111,117,115,101,100,111,119,110,32,104,97,110,100,108,101,114,32,102,111,114,32,116,104,101,32,116,111,103,103,108,101,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,111,110,77,111,117,115,101,100,111,119,110,58,32,102,117,110,99,116,105,111,110,32,111,110,77,111,117,115,101,100,111,119,110,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,87,101,32,112,114,101,118,101,110,116,32,116,104,101,32,39,109,111,117,115,101,100,111,119,110,39,32,101,118,101,110,116,32,102,111,114,32,116,104,101,32,116,111,103,103,108,101,32,116,111,32,115,116,111,112,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,39,102,111,99,117,115,105,110,39,32,101,118,101,110,116,32,102,114,111,109,32,98,101,105,110,103,32,102,105,114,101,100,92,110,32,32,32,32,32,32,47,47,32,84,104,101,32,101,118,101,110,116,32,119,111,117,108,100,32,111,116,104,101,114,119,105,115,101,32,98,101,32,112,105,99,107,101,100,32,117,112,32,98,121,32,116,104,101,32,103,108,111,98,97,108,32,39,102,111,99,117,115,105,110,39,92,110,32,32,32,32,32,32,47,47,32,108,105,115,116,101,110,101,114,32,97,110,100,32,116,104,101,114,101,32,105,115,32,110,111,32,99,114,111,115,115,45,98,114,111,119,115,101,114,32,115,111,108,117,116,105,111,110,32,116,111,32,100,101,116,101,99,116,32,105,116,92,110,32,32,32,32,32,32,47,47,32,114,101,108,97,116,101,115,32,116,111,32,116,104,101,32,116,111,103,103,108,101,32,99,108,105,99,107,92,110,32,32,32,32,32,32,47,47,32,84,104,101,32,39,99,108,105,99,107,39,32,101,118,101,110,116,32,119,105,108,108,32,115,116,105,108,108,32,98,101,32,102,105,114,101,100,32,97,110,100,32,119,101,32,104,97,110,100,108,101,32,99,108,111,115,105,110,103,92,110,32,32,32,32,32,32,47,47,32,111,116,104,101,114,32,100,114,111,112,100,111,119,110,115,32,116,104,101,114,101,32,116,111,111,92,110,32,32,32,32,32,32,47,47,32,83,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,52,51,50,56,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,67,97,108,108,101,100,32,102,114,111,109,32,100,114,111,112,100,111,119,110,32,109,101,110,117,32,99,111,110,116,101,120,116,92,110,32,32,32,32,111,110,75,101,121,100,111,119,110,58,32,102,117,110,99,116,105,111,110,32,111,110,75,101,121,100,111,119,110,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,67,79,68,69,95,69,83,67,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,108,111,115,101,32,111,110,32,69,83,67,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,111,110,69,115,99,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,67,79,68,69,95,68,79,87,78,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,111,119,110,32,65,114,114,111,119,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,102,111,99,117,115,78,101,120,116,40,101,118,101,110,116,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,67,79,68,69,95,85,80,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,85,112,32,65,114,114,111,119,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,102,111,99,117,115,78,101,120,116,40,101,118,101,110,116,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,73,102,32,117,115,101,114,32,112,114,101,115,115,101,115,32,69,83,67,44,32,99,108,111,115,101,32,116,104,101,32,109,101,110,117,92,110,32,32,32,32,111,110,69,115,99,58,32,102,117,110,99,116,105,111,110,32,111,110,69,115,99,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,118,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,118,105,115,105,98,108,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,32,47,47,32,82,101,116,117,114,110,32,102,111,99,117,115,32,116,111,32,111,114,105,103,105,110,97,108,32,116,114,105,103,103,101,114,32,98,117,116,116,111,110,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,72,73,68,68,69,78,44,32,116,104,105,115,46,102,111,99,117,115,84,111,103,103,108,101,114,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,67,97,108,108,101,100,32,111,110,108,121,32,105,110,32,115,112,108,105,116,32,98,117,116,116,111,110,32,109,111,100,101,44,32,102,111,114,32,116,104,101,32,115,112,108,105,116,32,98,117,116,116,111,110,92,110,32,32,32,32,111,110,83,112,108,105,116,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,111,110,83,112,108,105,116,67,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,118,105,115,105,98,108,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,76,73,67,75,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,83,104,97,114,101,100,32,104,105,100,101,32,104,97,110,100,108,101,114,32,98,101,116,119,101,101,110,32,99,108,105,99,107,45,111,117,116,32,97,110,100,32,102,111,99,117,115,45,105,110,32,101,118,101,110,116,115,92,110,32,32,32,32,104,105,100,101,72,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,72,97,110,100,108,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,118,105,115,105,98,108,101,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,111,110,116,97,105,110,115,41,40,116,104,105,115,46,36,114,101,102,115,46,109,101,110,117,44,32,116,97,114,103,101,116,41,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,111,110,116,97,105,110,115,41,40,116,104,105,115,46,116,111,103,103,108,101,114,44,32,116,97,114,103,101,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,72,105,100,101,84,105,109,101,111,117,116,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,104,105,100,101,84,105,109,101,111,117,116,32,61,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,51,46,104,105,100,101,40,41,59,92,110,32,32,32,32,32,32,32,32,125,44,32,116,104,105,115,46,105,110,78,97,118,98,97,114,32,63,32,51,48,48,32,58,32,48,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,68,111,99,117,109,101,110,116,32,99,108,105,99,107,45,111,117,116,32,108,105,115,116,101,110,101,114,92,110,32,32,32,32,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,72,97,110,100,108,101,114,40,101,118,101,110,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,68,111,99,117,109,101,110,116,32,102,111,99,117,115,45,105,110,32,108,105,115,116,101,110,101,114,92,110,32,32,32,32,102,111,99,117,115,73,110,72,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,73,110,72,97,110,100,108,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,72,97,110,100,108,101,114,40,101,118,101,110,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,75,101,121,98,111,97,114,100,32,110,97,118,92,110,32,32,32,32,102,111,99,117,115,78,101,120,116,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,78,101,120,116,40,101,118,101,110,116,44,32,117,112,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,73,103,110,111,114,101,32,107,101,121,32,117,112,47,100,111,119,110,32,111,110,32,102,111,114,109,32,101,108,101,109,101,110,116,115,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,118,105,115,105,98,108,101,32,124,124,32,101,118,101,110,116,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,108,111,115,101,115,116,41,40,83,69,76,69,67,84,79,82,95,70,79,82,77,95,67,72,73,76,68,44,32,116,97,114,103,101,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,115,104,111,117,108,100,32,110,101,118,101,114,32,104,97,112,112,101,110,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,95,116,104,105,115,52,46,103,101,116,73,116,101,109,115,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,116,101,109,115,46,108,101,110,103,116,104,32,60,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,115,104,111,117,108,100,32,110,101,118,101,114,32,104,97,112,112,101,110,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,105,116,101,109,115,46,105,110,100,101,120,79,102,40,116,97,114,103,101,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,117,112,32,38,38,32,105,110,100,101,120,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,45,45,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,117,112,32,38,38,32,105,110,100,101,120,32,60,32,105,116,101,109,115,46,108,101,110,103,116,104,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,43,43,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,115,104,111,117,108,100,32,110,101,118,101,114,32,104,97,112,112,101,110,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,102,111,99,117,115,73,116,101,109,40,105,110,100,101,120,44,32,105,116,101,109,115,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,99,117,115,73,116,101,109,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,73,116,101,109,40,105,110,100,101,120,44,32,105,116,101,109,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,101,108,32,61,32,105,116,101,109,115,46,102,105,110,100,40,102,117,110,99,116,105,111,110,32,40,101,108,44,32,105,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,32,61,61,61,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,101,108,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,73,116,101,109,115,58,32,102,117,110,99,116,105,111,110,32,103,101,116,73,116,101,109,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,71,101,116,32,97,108,108,32,105,116,101,109,115,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,86,105,115,105,98,108,101,115,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,101,108,101,99,116,65,108,108,41,40,83,69,76,69,67,84,79,82,95,73,84,69,77,44,32,116,104,105,115,46,36,114,101,102,115,46,109,101,110,117,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,99,117,115,77,101,110,117,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,77,101,110,117,40,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,104,105,115,46,36,114,101,102,115,46,109,101,110,117,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,99,117,115,84,111,103,103,108,101,114,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,84,111,103,103,108,101,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,53,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,95,116,104,105,115,53,46,116,111,103,103,108,101,114,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,100,114,111,112,100,111,119,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,99,117,115,45,105,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,99,117,115,45,105,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,99,117,115,73,110,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,99,117,115,73,110,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,92,110,92,110,32,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,102,111,99,117,115,73,110,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,105,115,116,101,110,70,111,114,70,111,99,117,115,73,110,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,108,105,115,116,101,110,70,111,114,70,111,99,117,115,73,110,58,32,102,117,110,99,116,105,111,110,32,108,105,115,116,101,110,70,111,114,70,111,99,117,115,73,110,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,118,101,110,116,79,102,102,41,40,116,104,105,115,46,102,111,99,117,115,73,110,69,108,101,109,101,110,116,44,32,39,102,111,99,117,115,105,110,39,44,32,116,104,105,115,46,95,102,111,99,117,115,73,110,72,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,118,101,110,116,79,110,41,40,116,104,105,115,46,102,111,99,117,115,73,110,69,108,101,109,101,110,116,44,32,39,102,111,99,117,115,105,110,39,44,32,116,104,105,115,46,95,102,111,99,117,115,73,110,72,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,67,114,101,97,116,101,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,67,114,101,97,116,101,40,41,32,123,92,110,32,32,32,32,47,47,32,68,101,99,108,97,114,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,116,104,105,115,46,102,111,99,117,115,73,110,69,108,101,109,101,110,116,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,102,111,99,117,115,73,110,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,102,111,99,117,115,73,110,69,108,101,109,101,110,116,32,61,32,100,111,99,117,109,101,110,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,108,105,115,116,101,110,70,111,114,70,111,99,117,115,73,110,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,118,101,110,116,79,110,41,40,116,104,105,115,46,102,111,99,117,115,73,110,69,108,101,109,101,110,116,44,32,39,102,111,99,117,115,105,110,39,44,32,116,104,105,115,46,95,102,111,99,117,115,73,110,72,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,118,101,110,116,79,102,102,41,40,116,104,105,115,46,102,111,99,117,115,73,110,69,108,101,109,101,110,116,44,32,39,102,111,99,117,115,105,110,39,44,32,116,104,105,115,46,95,102,111,99,117,115,73,110,72,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,95,102,111,99,117,115,73,110,72,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,95,102,111,99,117,115,73,110,72,97,110,100,108,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,102,111,99,117,115,73,110,72,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,102,111,99,117,115,73,110,72,97,110,100,108,101,114,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,99,117,115,45,105,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,67,111,110,116,114,111,108,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,67,111,110,116,114,111,108,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,83,69,76,69,67,84,79,82,32,61,32,39,105,110,112,117,116,44,32,116,101,120,116,97,114,101,97,44,32,115,101,108,101,99,116,39,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,97,117,116,111,102,111,99,117,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,102,111,114,109,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,110,97,109,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,114,101,113,117,105,114,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,44,32,39,102,111,114,109,67,111,110,116,114,111,108,115,39,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,102,111,114,109,67,111,110,116,114,111,108,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,104,97,110,100,108,101,65,117,116,111,102,111,99,117,115,40,41,59,92,110,32,32,125,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,97,99,116,105,118,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,97,99,116,105,118,97,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,104,97,110,100,108,101,65,117,116,111,102,111,99,117,115,40,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,104,97,110,100,108,101,65,117,116,111,102,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,65,117,116,111,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,114,101,113,117,101,115,116,65,70,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,108,32,61,32,95,116,104,105,115,46,36,101,108,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,46,97,117,116,111,102,111,99,117,115,32,38,38,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,86,105,115,105,98,108,101,41,40,101,108,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,116,99,104,101,115,41,40,101,108,44,32,83,69,76,69,67,84,79,82,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,32,61,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,101,108,101,99,116,41,40,83,69,76,69,67,84,79,82,44,32,101,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,101,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,117,115,116,111,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,117,115,116,111,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,67,117,115,116,111,109,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,67,117,115,116,111,109,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,112,108,97,105,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,44,32,39,102,111,114,109,67,111,110,116,114,111,108,115,39,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,102,111,114,109,67,117,115,116,111,109,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,117,115,116,111,109,58,32,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,112,108,97,105,110,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,117,115,116,111,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,111,112,116,105,111,110,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,111,112,116,105,111,110,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,79,112,116,105,111,110,115,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,79,112,116,105,111,110,115,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,103,101,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,119,97,114,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,79,80,84,73,79,78,83,95,79,66,74,69,67,84,95,68,69,80,82,69,67,65,84,69,68,95,77,83,71,32,61,32,39,83,101,116,116,105,110,103,32,112,114,111,112,32,92,34,111,112,116,105,111,110,115,92,34,32,116,111,32,97,110,32,111,98,106,101,99,116,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,85,115,101,32,116,104,101,32,97,114,114,97,121,32,102,111,114,109,97,116,32,105,110,115,116,101,97,100,46,39,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,100,105,115,97,98,108,101,100,70,105,101,108,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,100,105,115,97,98,108,101,100,39,41,44,92,110,32,32,104,116,109,108,70,105,101,108,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,104,116,109,108,39,41,44,92,110,32,32,111,112,116,105,111,110,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,44,32,91,93,41,44,92,110,32,32,116,101,120,116,70,105,101,108,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,116,101,120,116,39,41,44,92,110,32,32,118,97,108,117,101,70,105,101,108,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,118,97,108,117,101,39,41,92,110,125,44,32,39,102,111,114,109,79,112,116,105,111,110,67,111,110,116,114,111,108,115,39,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,102,111,114,109,79,112,116,105,111,110,115,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,102,111,114,109,79,112,116,105,111,110,115,58,32,102,117,110,99,116,105,111,110,32,102,111,114,109,79,112,116,105,111,110,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,115,40,116,104,105,115,46,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,58,32,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,40,111,112,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,47,47,32,87,104,101,110,32,116,104,101,32,111,112,116,105,111,110,32,105,115,32,97,110,32,111,98,106,101,99,116,44,32,110,111,114,109,97,108,105,122,101,32,105,116,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,111,112,116,105,111,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,103,101,116,41,40,111,112,116,105,111,110,44,32,116,104,105,115,46,118,97,108,117,101,70,105,101,108,100,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,101,120,116,32,61,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,103,101,116,41,40,111,112,116,105,111,110,44,32,116,104,105,115,46,116,101,120,116,70,105,101,108,100,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,118,97,108,117,101,41,32,63,32,107,101,121,32,124,124,32,116,101,120,116,32,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,116,114,105,112,84,97,103,115,41,40,83,116,114,105,110,103,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,116,101,120,116,41,32,63,32,107,101,121,32,58,32,116,101,120,116,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,104,116,109,108,58,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,103,101,116,41,40,111,112,116,105,111,110,44,32,116,104,105,115,46,104,116,109,108,70,105,101,108,100,41,44,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,66,111,111,108,101,97,110,40,40,48,44,95,117,116,105,108,115,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,103,101,116,41,40,111,112,116,105,111,110,44,32,116,104,105,115,46,100,105,115,97,98,108,101,100,70,105,101,108,100,41,41,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,32,47,47,32,79,116,104,101,114,119,105,115,101,32,99,114,101,97,116,101,32,97,110,32,96,60,111,112,116,105,111,110,62,96,32,111,98,106,101,99,116,32,102,114,111,109,32,116,104,101,32,103,105,118,101,110,32,118,97,108,117,101,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,107,101,121,32,124,124,32,111,112,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,116,114,105,112,84,97,103,115,41,40,83,116,114,105,110,103,40,111,112,116,105,111,110,41,41,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,115,58,32,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,115,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,78,111,114,109,97,108,105,122,101,32,116,104,101,32,103,105,118,101,110,32,111,112,116,105,111,110,115,32,97,114,114,97,121,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,65,114,114,97,121,41,40,111,112,116,105,111,110,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,112,116,105,111,110,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,111,112,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,46,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,40,111,112,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,111,112,116,105,111,110,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,101,112,114,101,99,97,116,101,32,116,104,101,32,111,98,106,101,99,116,32,111,112,116,105,111,110,115,32,102,111,114,109,97,116,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,119,97,114,110,41,40,79,80,84,73,79,78,83,95,79,66,74,69,67,84,95,68,69,80,82,69,67,65,84,69,68,95,77,83,71,44,32,116,104,105,115,46,36,111,112,116,105,111,110,115,46,110,97,109,101,41,59,32,47,47,32,78,111,114,109,97,108,105,122,101,32,97,32,96,111,112,116,105,111,110,115,96,32,111,98,106,101,99,116,32,116,111,32,97,110,32,97,114,114,97,121,32,111,102,32,111,112,116,105,111,110,115,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,107,101,121,115,41,40,111,112,116,105,111,110,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,46,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,40,111,112,116,105,111,110,115,91,107,101,121,93,32,124,124,32,123,125,44,32,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,73,102,32,110,111,116,32,97,110,32,97,114,114,97,121,32,111,114,32,111,98,106,101,99,116,44,32,114,101,116,117,114,110,32,97,110,32,101,109,112,116,121,32,97,114,114,97,121,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,111,112,116,105,111,110,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,114,97,100,105,111,45,99,104,101,99,107,45,103,114,111,117,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,114,97,100,105,111,45,99,104,101,99,107,45,103,114,111,117,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,82,97,100,105,111,67,104,101,99,107,71,114,111,117,112,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,82,97,100,105,111,67,104,101,99,107,71,114,111,117,112,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,102,111,114,109,45,99,104,101,99,107,98,111,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,99,104,101,99,107,98,111,120,47,102,111,114,109,45,99,104,101,99,107,98,111,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,114,97,100,105,111,95,102,111,114,109,95,114,97,100,105,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,102,111,114,109,45,114,97,100,105,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,102,111,114,109,45,114,97,100,105,111,47,102,111,114,109,45,114,97,100,105,111,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,99,111,110,116,114,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,99,117,115,116,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,99,117,115,116,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,117,115,116,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,111,112,116,105,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,111,112,116,105,111,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,111,112,116,105,111,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,115,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,115,116,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,47,47,32,65,116,116,114,105,98,117,116,101,115,32,116,111,32,112,97,115,115,32,100,111,119,110,32,116,111,32,99,104,101,99,107,115,47,114,97,100,105,111,115,32,105,110,115,116,101,97,100,32,111,102,32,97,112,112,108,121,105,110,103,32,116,104,101,109,32,116,111,32,116,104,101,32,103,114,111,117,112,92,110,92,110,118,97,114,32,80,65,83,83,95,68,79,87,78,95,65,84,84,82,83,32,61,32,91,39,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,39,44,32,39,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,39,93,59,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,99,104,101,99,107,101,100,39,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,41,44,32,95,102,111,114,109,95,111,112,116,105,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,41,44,32,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,114,111,112,115,41,44,32,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,112,114,111,112,115,41,44,32,95,102,111,114,109,95,99,117,115,116,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,114,105,97,73,110,118,97,108,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,79,110,108,121,32,97,112,112,108,105,99,97,98,108,101,32,119,104,101,110,32,114,101,110,100,101,114,101,100,32,119,105,116,104,32,98,117,116,116,111,110,32,115,116,121,108,101,92,110,32,32,98,117,116,116,111,110,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,82,101,110,100,101,114,32,97,115,32,98,117,116,116,111,110,32,115,116,121,108,101,92,110,32,32,98,117,116,116,111,110,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,115,116,97,99,107,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,118,97,108,105,100,97,116,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,41,41,44,32,39,102,111,114,109,82,97,100,105,111,67,104,101,99,107,71,114,111,117,112,115,39,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,102,111,114,109,82,97,100,105,111,67,104,101,99,107,71,114,111,117,112,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,105,120,105,110,115,58,32,91,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,44,32,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,44,32,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,102,111,114,109,67,111,110,116,114,111,108,77,105,120,105,110,44,32,95,102,111,114,109,95,111,112,116,105,111,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,102,111,114,109,79,112,116,105,111,110,115,77,105,120,105,110,44,32,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,111,114,109,83,105,122,101,77,105,120,105,110,44,32,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,102,111,114,109,83,116,97,116,101,77,105,120,105,110,44,32,95,102,111,114,109,95,99,117,115,116,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,102,111,114,109,67,117,115,116,111,109,77,105,120,105,110,93,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,67,104,101,99,107,101,100,58,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,105,110,108,105,110,101,58,32,102,117,110,99,116,105,111,110,32,105,110,108,105,110,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,115,116,97,99,107,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,114,111,117,112,78,97,109,101,58,32,102,117,110,99,116,105,111,110,32,103,114,111,117,112,78,97,109,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,104,101,99,107,115,47,82,97,100,105,111,115,32,116,105,101,100,32,116,111,32,116,104,101,32,115,97,109,101,32,109,111,100,101,108,32,109,117,115,116,32,104,97,118,101,32,116,104,101,32,115,97,109,101,32,110,97,109,101,44,92,110,32,32,32,32,32,32,47,47,32,101,115,112,101,99,105,97,108,108,121,32,102,111,114,32,65,82,73,65,32,97,99,99,101,115,115,105,98,105,108,105,116,121,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,110,97,109,101,32,124,124,32,116,104,105,115,46,115,97,102,101,73,100,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,114,111,117,112,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,103,114,111,117,112,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,108,105,110,101,32,61,32,116,104,105,115,46,105,110,108,105,110,101,44,92,110,32,32,32,32,32,32,32,32,32,32,115,105,122,101,32,61,32,116,104,105,115,46,115,105,122,101,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,105,100,97,116,101,100,32,61,32,116,104,105,115,46,118,97,108,105,100,97,116,101,100,59,92,110,32,32,32,32,32,32,118,97,114,32,99,108,97,115,115,101,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,39,119,97,115,45,118,97,108,105,100,97,116,101,100,39,58,32,118,97,108,105,100,97,116,101,100,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,98,117,116,116,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,101,115,32,61,32,91,99,108,97,115,115,101,115,44,32,39,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,39,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,92,110,32,32,32,32,32,32,32,32,32,32,39,98,116,110,45,103,114,111,117,112,39,58,32,105,110,108,105,110,101,44,92,110,32,32,32,32,32,32,32,32,32,32,39,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,39,58,32,33,105,110,108,105,110,101,92,110,32,32,32,32,32,32,32,32,125,44,32,92,34,98,116,110,45,103,114,111,117,112,45,92,34,46,99,111,110,99,97,116,40,115,105,122,101,41,44,32,115,105,122,101,41,93,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,97,115,115,101,115,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,116,104,105,115,46,108,111,99,97,108,67,104,101,99,107,101,100,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,67,104,101,99,107,101,100,32,61,32,110,101,119,86,97,108,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,108,111,99,97,108,67,104,101,99,107,101,100,92,34,44,32,102,117,110,99,116,105,111,110,32,108,111,99,97,108,67,104,101,99,107,101,100,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,105,115,82,97,100,105,111,71,114,111,117,112,32,61,32,116,104,105,115,46,105,115,82,97,100,105,111,71,114,111,117,112,59,92,110,32,32,32,32,118,97,114,32,97,116,116,114,115,32,61,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,105,99,107,41,40,116,104,105,115,46,36,97,116,116,114,115,44,32,80,65,83,83,95,68,79,87,78,95,65,84,84,82,83,41,59,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,67,111,109,112,111,110,101,110,116,32,61,32,105,115,82,97,100,105,111,71,114,111,117,112,32,63,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,114,97,100,105,111,95,102,111,114,109,95,114,97,100,105,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,66,70,111,114,109,82,97,100,105,111,32,58,32,95,99,111,109,112,111,110,101,110,116,115,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,102,111,114,109,95,99,104,101,99,107,98,111,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,66,70,111,114,109,67,104,101,99,107,98,111,120,59,92,110,32,32,32,32,118,97,114,32,36,105,110,112,117,116,115,32,61,32,116,104,105,115,46,102,111,114,109,79,112,116,105,111,110,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,111,112,116,105,111,110,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,92,34,66,86,95,111,112,116,105,111,110,95,92,34,46,99,111,110,99,97,116,40,105,110,100,101,120,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,111,112,116,105,111,110,67,111,109,112,111,110,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,100,105,118,105,100,117,97,108,32,114,97,100,105,111,115,32,111,114,32,99,104,101,99,107,115,32,99,97,110,32,98,101,32,100,105,115,97,98,108,101,100,32,105,110,32,97,32,103,114,111,117,112,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,111,112,116,105,111,110,46,100,105,115,97,98,108,101,100,32,124,124,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,95,116,104,105,115,46,115,97,102,101,73,100,40,107,101,121,41,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,111,112,116,105,111,110,46,118,97,108,117,101,32,47,47,32,87,101,32,100,111,110,39,116,32,110,101,101,100,32,116,111,32,105,110,99,108,117,100,101,32,116,104,101,115,101,44,32,115,105,110,99,101,32,116,104,101,32,105,110,112,117,116,39,115,32,119,105,108,108,32,107,110,111,119,32,116,104,101,121,32,97,114,101,32,105,110,115,105,100,101,32,104,101,114,101,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,102,111,114,109,58,32,116,104,105,115,46,102,111,114,109,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,110,97,109,101,58,32,116,104,105,115,46,103,114,111,117,112,78,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,114,101,113,117,105,114,101,100,58,32,66,111,111,108,101,97,110,40,116,104,105,115,46,110,97,109,101,32,38,38,32,116,104,105,115,46,114,101,113,117,105,114,101,100,41,92,110,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,97,116,116,114,115,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,107,101,121,92,110,32,32,32,32,32,32,125,44,32,91,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,40,48,44,95,117,116,105,108,115,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,104,116,109,108,79,114,84,101,120,116,41,40,111,112,116,105,111,110,46,104,116,109,108,44,32,111,112,116,105,111,110,46,116,101,120,116,41,92,110,32,32,32,32,32,32,125,41,93,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,116,104,105,115,46,103,114,111,117,112,67,108,97,115,115,101,115,44,32,39,98,118,45,110,111,45,102,111,99,117,115,45,114,105,110,103,39,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,111,109,105,116,41,40,116,104,105,115,46,36,97,116,116,114,115,44,32,80,65,83,83,95,68,79,87,78,95,65,84,84,82,83,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,105,110,118,97,108,105,100,39,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,114,105,97,73,110,118,97,108,105,100,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,101,113,117,105,114,101,100,39,58,32,116,104,105,115,46,114,101,113,117,105,114,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,105,115,82,97,100,105,111,71,114,111,117,112,32,63,32,39,114,97,100,105,111,103,114,111,117,112,39,32,58,32,39,103,114,111,117,112,39,44,92,110,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,96,116,97,98,105,110,100,101,120,61,92,34,45,49,92,34,96,32,116,111,32,97,108,108,111,119,32,103,114,111,117,112,32,116,111,32,98,101,32,102,111,99,117,115,101,100,32,105,102,32,110,101,101,100,101,100,32,98,121,32,115,99,114,101,101,110,32,114,101,97,100,101,114,115,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,39,45,49,39,92,110,32,32,32,32,32,32,125,41,92,110,32,32,32,32,125,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,83,76,79,84,95,78,65,77,69,95,70,73,82,83,84,41,44,32,36,105,110,112,117,116,115,44,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,114,97,100,105,111,45,99,104,101,99,107,45,103,114,111,117,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,114,97,100,105,111,45,99,104,101,99,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,114,97,100,105,111,45,99,104,101,99,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,82,97,100,105,111,67,104,101,99,107,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,82,97,100,105,111,67,104,101,99,107,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,116,116,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,97,116,116,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,99,111,110,116,114,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,111,110,116,114,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,99,117,115,116,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,99,117,115,116,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,99,117,115,116,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,115,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,45,115,116,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,44,32,95,109,101,116,104,111,100,115,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,99,104,101,99,107,101,100,39,44,32,123,92,110,32,32,100,101,102,97,117,108,116,86,97,108,117,101,58,32,110,117,108,108,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,114,111,112,115,41,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,112,114,111,112,115,41,44,32,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,114,111,112,115,41,44,32,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,114,111,112,115,41,44,32,95,102,111,114,109,95,99,117,115,116,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,112,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,114,105,97,76,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,97,114,105,97,76,97,98,101,108,108,101,100,98,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,79,110,108,121,32,97,112,112,108,105,99,97,98,108,101,32,105,110,32,115,116,97,110,100,97,108,111,110,101,32,109,111,100,101,32,40,110,111,110,32,103,114,111,117,112,41,92,110,32,32,98,117,116,116,111,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,47,47,32,79,110,108,121,32,97,112,112,108,105,99,97,98,108,101,32,119,104,101,110,32,114,101,110,100,101,114,101,100,32,119,105,116,104,32,98,117,116,116,111,110,32,115,116,121,108,101,92,110,32,32,98,117,116,116,111,110,86,97,114,105,97,110,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,105,110,108,105,110,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,118,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,80,82,79,80,95,84,89,80,69,95,65,78,89,41,92,110,125,41,41,44,32,39,102,111,114,109,82,97,100,105,111,67,104,101,99,107,67,111,110,116,114,111,108,115,39,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,102,111,114,109,82,97,100,105,111,67,104,101,99,107,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,105,120,105,110,115,58,32,91,95,97,116,116,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,97,116,116,114,115,77,105,120,105,110,44,32,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,100,77,105,120,105,110,44,32,109,111,100,101,108,77,105,120,105,110,44,32,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,44,32,95,102,111,114,109,95,99,111,110,116,114,111,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,102,111,114,109,67,111,110,116,114,111,108,77,105,120,105,110,44,32,95,102,111,114,109,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,102,111,114,109,83,105,122,101,77,105,120,105,110,44,32,95,102,111,114,109,95,115,116,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,111,114,109,83,116,97,116,101,77,105,120,105,110,44,32,95,102,111,114,109,95,99,117,115,116,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,102,111,114,109,67,117,115,116,111,109,77,105,120,105,110,93,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,67,104,101,99,107,101,100,58,32,116,104,105,115,46,105,115,71,114,111,117,112,32,63,32,116,104,105,115,46,98,118,71,114,111,117,112,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,32,58,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,44,92,110,32,32,32,32,32,32,104,97,115,70,111,99,117,115,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,58,32,123,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,71,114,111,117,112,32,63,32,116,104,105,115,46,98,118,71,114,111,117,112,46,108,111,99,97,108,67,104,101,99,107,101,100,32,58,32,116,104,105,115,46,108,111,99,97,108,67,104,101,99,107,101,100,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,115,101,116,58,32,102,117,110,99,116,105,111,110,32,115,101,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,71,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,98,118,71,114,111,117,112,46,108,111,99,97,108,67,104,101,99,107,101,100,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,67,104,101,99,107,101,100,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,67,104,101,99,107,101,100,58,32,102,117,110,99,116,105,111,110,32,105,115,67,104,101,99,107,101,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,116,104,105,115,46,118,97,108,117,101,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,82,97,100,105,111,58,32,102,117,110,99,116,105,111,110,32,105,115,82,97,100,105,111,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,71,114,111,117,112,58,32,102,117,110,99,116,105,111,110,32,105,115,71,114,111,117,112,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,115,32,116,104,105,115,32,99,104,101,99,107,47,114,97,100,105,111,32,97,32,99,104,105,108,100,32,111,102,32,99,104,101,99,107,45,103,114,111,117,112,32,111,114,32,114,97,100,105,111,45,103,114,111,117,112,63,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,116,104,105,115,46,98,118,71,114,111,117,112,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,66,116,110,77,111,100,101,58,32,102,117,110,99,116,105,111,110,32,105,115,66,116,110,77,111,100,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,117,112,112,111,114,116,32,98,117,116,116,111,110,32,115,116,121,108,101,32,105,110,32,115,105,110,103,108,101,32,105,110,112,117,116,32,109,111,100,101,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,71,114,111,117,112,32,63,32,116,104,105,115,46,98,118,71,114,111,117,112,46,98,117,116,116,111,110,115,32,58,32,116,104,105,115,46,98,117,116,116,111,110,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,80,108,97,105,110,58,32,102,117,110,99,116,105,111,110,32,105,115,80,108,97,105,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,66,116,110,77,111,100,101,32,63,32,102,97,108,115,101,32,58,32,116,104,105,115,46,105,115,71,114,111,117,112,32,63,32,116,104,105,115,46,98,118,71,114,111,117,112,46,112,108,97,105,110,32,58,32,116,104,105,115,46,112,108,97,105,110,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,67,117,115,116,111,109,58,32,102,117,110,99,116,105,111,110,32,105,115,67,117,115,116,111,109,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,66,116,110,77,111,100,101,32,63,32,102,97,108,115,101,32,58,32,33,116,104,105,115,46,105,115,80,108,97,105,110,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,83,119,105,116,99,104,58,32,102,117,110,99,116,105,111,110,32,105,115,83,119,105,116,99,104,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,117,115,116,111,109,32,115,119,105,116,99,104,32,115,116,121,108,105,110,103,32,40,99,104,101,99,107,98,111,120,101,115,32,111,110,108,121,41,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,66,116,110,77,111,100,101,32,124,124,32,116,104,105,115,46,105,115,82,97,100,105,111,32,124,124,32,116,104,105,115,46,105,115,80,108,97,105,110,32,63,32,102,97,108,115,101,32,58,32,116,104,105,115,46,105,115,71,114,111,117,112,32,63,32,116,104,105,115,46,98,118,71,114,111,117,112,46,115,119,105,116,99,104,101,115,32,58,32,116,104,105,115,46,115,119,105,116,99,104,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,73,110,108,105,110,101,58,32,102,117,110,99,116,105,111,110,32,105,115,73,110,108,105,110,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,71,114,111,117,112,32,63,32,116,104,105,115,46,98,118,71,114,111,117,112,46,105,110,108,105,110,101,32,58,32,116,104,105,115,46,105,110,108,105,110,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,68,105,115,97,98,108,101,100,58,32,102,117,110,99,116,105,111,110,32,105,115,68,105,115,97,98,108,101,100,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,104,105,108,100,32,99,97,110,32,98,101,32,100,105,115,97,98,108,101,100,32,119,104,105,108,101,32,112,97,114,101,110,116,32,105,115,110,39,116,44,32,98,117,116,32,105,115,32,97,108,119,97,121,115,32,100,105,115,97,98,108,101,100,32,105,102,32,103,114,111,117,112,32,105,115,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,71,114,111,117,112,32,63,32,116,104,105,115,46,98,118,71,114,111,117,112,46,100,105,115,97,98,108,101,100,32,124,124,32,116,104,105,115,46,100,105,115,97,98,108,101,100,32,58,32,116,104,105,115,46,100,105,115,97,98,108,101,100,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,82,101,113,117,105,114,101,100,58,32,102,117,110,99,116,105,111,110,32,105,115,82,101,113,117,105,114,101,100,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,113,117,105,114,101,100,32,111,110,108,121,32,119,111,114,107,115,32,119,104,101,110,32,97,32,110,97,109,101,32,105,115,32,112,114,111,118,105,100,101,100,32,102,111,114,32,116,104,101,32,105,110,112,117,116,40,115,41,92,110,32,32,32,32,32,32,47,47,32,67,104,105,108,100,32,99,97,110,32,111,110,108,121,32,98,101,32,114,101,113,117,105,114,101,100,32,119,104,101,110,32,112,97,114,101,110,116,32,105,115,92,110,32,32,32,32,32,32,47,47,32,71,114,111,117,112,115,32,119,105,108,108,32,97,108,119,97,121,115,32,104,97,118,101,32,97,32,110,97,109,101,32,40,101,105,116,104,101,114,32,117,115,101,114,32,115,117,112,112,108,105,101,100,32,111,114,32,97,117,116,111,32,103,101,110,101,114,97,116,101,100,41,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,111,109,112,117,116,101,100,78,97,109,101,32,38,38,32,40,116,104,105,115,46,105,115,71,114,111,117,112,32,63,32,116,104,105,115,46,98,118,71,114,111,117,112,46,114,101,113,117,105,114,101,100,32,58,32,116,104,105,115,46,114,101,113,117,105,114,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,78,97,109,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,78,97,109,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,71,114,111,117,112,32,110,97,109,101,32,112,114,101,102,101,114,114,101,100,32,111,118,101,114,32,108,111,99,97,108,32,110,97,109,101,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,116,104,105,115,46,105,115,71,114,111,117,112,32,63,32,116,104,105,115,46,98,118,71,114,111,117,112,46,103,114,111,117,112,78,97,109,101,32,58,32,116,104,105,115,46,110,97,109,101,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,70,111,114,109,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,70,111,114,109,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,116,104,105,115,46,105,115,71,114,111,117,112,32,63,32,116,104,105,115,46,98,118,71,114,111,117,112,46,102,111,114,109,32,58,32,116,104,105,115,46,102,111,114,109,41,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,105,122,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,105,122,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,116,104,105,115,46,105,115,71,114,111,117,112,32,63,32,116,104,105,115,46,98,118,71,114,111,117,112,46,115,105,122,101,32,58,32,116,104,105,115,46,115,105,122,101,41,32,124,124,32,39,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,116,97,116,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,116,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,71,114,111,117,112,32,63,32,116,104,105,115,46,98,118,71,114,111,117,112,46,99,111,109,112,117,116,101,100,83,116,97,116,101,32,58,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,105,115,66,111,111,108,101,97,110,41,40,116,104,105,115,46,115,116,97,116,101,41,32,63,32,116,104,105,115,46,115,116,97,116,101,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,66,117,116,116,111,110,86,97,114,105,97,110,116,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,66,117,116,116,111,110,86,97,114,105,97,110,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,76,111,99,97,108,32,118,97,114,105,97,110,116,32,112,114,101,102,101,114,114,101,100,32,111,118,101,114,32,103,114,111,117,112,32,118,97,114,105,97,110,116,92,110,32,32,32,32,32,32,118,97,114,32,98,117,116,116,111,110,86,97,114,105,97,110,116,32,61,32,116,104,105,115,46,98,117,116,116,111,110,86,97,114,105,97,110,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,98,117,116,116,111,110,86,97,114,105,97,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,117,116,116,111,110,86,97,114,105,97,110,116,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,71,114,111,117,112,32,38,38,32,116,104,105,115,46,98,118,71,114,111,117,112,46,98,117,116,116,111,110,86,97,114,105,97,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,98,118,71,114,111,117,112,46,98,117,116,116,111,110,86,97,114,105,97,110,116,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,115,101,99,111,110,100,97,114,121,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,117,116,116,111,110,67,108,97,115,115,101,115,58,32,102,117,110,99,116,105,111,110,32,98,117,116,116,111,110,67,108,97,115,115,101,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,114,101,102,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,111,109,112,117,116,101,100,83,105,122,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,39,98,116,110,39,44,32,92,34,98,116,110,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,116,116,111,110,86,97,114,105,97,110,116,41,44,32,40,95,114,101,102,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,98,116,110,45,92,34,46,99,111,110,99,97,116,40,99,111,109,112,117,116,101,100,83,105,122,101,41,44,32,99,111,109,112,117,116,101,100,83,105,122,101,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,100,105,115,97,98,108,101,100,92,34,44,32,116,104,105,115,46,105,115,68,105,115,97,98,108,101,100,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,97,99,116,105,118,101,92,34,44,32,116,104,105,115,46,105,115,67,104,101,99,107,101,100,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,114,101,102,44,32,92,34,102,111,99,117,115,92,34,44,32,116,104,105,115,46,104,97,115,70,111,99,117,115,41,44,32,95,114,101,102,41,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,105,115,68,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,32,61,32,116,104,105,115,46,105,115,82,101,113,117,105,114,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,104,105,115,46,98,118,65,116,116,114,115,41,44,32,123,125,44,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,44,92,110,32,32,32,32,32,32,32,32,116,121,112,101,58,32,116,104,105,115,46,105,115,82,97,100,105,111,32,63,32,39,114,97,100,105,111,39,32,58,32,39,99,104,101,99,107,98,111,120,39,44,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,78,97,109,101,44,92,110,32,32,32,32,32,32,32,32,102,111,114,109,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,111,114,109,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,100,58,32,114,101,113,117,105,114,101,100,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,114,101,113,117,105,114,101,100,39,58,32,114,101,113,117,105,114,101,100,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,116,104,105,115,46,97,114,105,97,76,97,98,101,108,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,39,58,32,116,104,105,115,46,97,114,105,97,76,97,98,101,108,108,101,100,98,121,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,91,92,34,92,34,46,99,111,110,99,97,116,40,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,92,34,87,97,116,99,104,101,114,92,34,41,93,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,92,34,44,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,87,97,116,99,104,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,109,101,116,104,111,100,115,58,32,40,95,109,101,116,104,111,100,115,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,101,116,104,111,100,115,44,32,92,34,92,34,46,99,111,110,99,97,116,40,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,92,34,87,97,116,99,104,101,114,92,34,41,44,32,102,117,110,99,116,105,111,110,32,87,97,116,99,104,101,114,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,32,61,32,110,101,119,86,97,108,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,101,116,104,111,100,115,44,32,92,34,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,87,97,116,99,104,101,114,92,34,44,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,87,97,116,99,104,101,114,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,101,116,104,111,100,115,44,32,92,34,104,97,110,100,108,101,67,104,97,110,103,101,92,34,44,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,67,104,97,110,103,101,40,95,114,101,102,50,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,99,104,101,99,107,101,100,32,61,32,95,114,101,102,50,46,116,97,114,103,101,116,46,99,104,101,99,107,101,100,59,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,116,104,105,115,46,118,97,108,117,101,59,92,110,32,32,32,32,118,97,114,32,108,111,99,97,108,67,104,101,99,107,101,100,32,61,32,99,104,101,99,107,101,100,32,63,32,118,97,108,117,101,32,58,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,32,61,32,118,97,108,117,101,59,32,47,47,32,70,105,114,101,32,101,118,101,110,116,115,32,105,110,32,97,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,101,110,115,117,114,101,32,116,104,101,32,96,118,45,109,111,100,101,108,96,32,105,115,32,117,112,100,97,116,101,100,92,110,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,104,97,110,103,101,32,105,115,32,111,110,108,121,32,101,109,105,116,116,101,100,32,111,110,32,117,115,101,114,32,105,110,116,101,114,97,99,116,105,111,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,44,32,108,111,99,97,108,67,104,101,99,107,101,100,41,59,32,47,47,32,73,102,32,116,104,105,115,32,105,115,32,97,32,99,104,105,108,100,32,111,102,32,97,32,103,114,111,117,112,44,32,119,101,32,101,109,105,116,32,97,32,99,104,97,110,103,101,32,101,118,101,110,116,32,111,110,32,105,116,32,97,115,32,119,101,108,108,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,46,105,115,71,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,98,118,71,114,111,117,112,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,44,32,108,111,99,97,108,67,104,101,99,107,101,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,101,116,104,111,100,115,44,32,92,34,104,97,110,100,108,101,70,111,99,117,115,92,34,44,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,70,111,99,117,115,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,47,47,32,87,104,101,110,32,105,110,32,98,117,116,116,111,110,115,32,109,111,100,101,44,32,119,101,32,110,101,101,100,32,116,111,32,97,100,100,32,39,102,111,99,117,115,39,32,99,108,97,115,115,32,116,111,32,108,97,98,101,108,32,119,104,101,110,32,105,110,112,117,116,32,102,111,99,117,115,101,100,92,110,32,32,32,32,47,47,32,65,115,32,105,116,32,105,115,32,116,104,101,32,104,105,100,100,101,110,32,105,110,112,117,116,32,119,104,105,99,104,32,104,97,115,32,97,99,116,117,97,108,32,102,111,99,117,115,92,110,32,32,32,32,105,102,32,40,101,118,101,110,116,46,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,39,102,111,99,117,115,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,97,115,70,111,99,117,115,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,39,98,108,117,114,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,97,115,70,111,99,117,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,101,116,104,111,100,115,44,32,92,34,102,111,99,117,115,92,34,44,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,68,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,109,101,116,104,111,100,115,44,32,92,34,98,108,117,114,92,34,44,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,68,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,97,116,116,101,109,112,116,66,108,117,114,41,40,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,109,101,116,104,111,100,115,41,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,105,115,82,97,100,105,111,32,61,32,116,104,105,115,46,105,115,82,97,100,105,111,44,92,110,32,32,32,32,32,32,32,32,105,115,66,116,110,77,111,100,101,32,61,32,116,104,105,115,46,105,115,66,116,110,77,111,100,101,44,92,110,32,32,32,32,32,32,32,32,105,115,80,108,97,105,110,32,61,32,116,104,105,115,46,105,115,80,108,97,105,110,44,92,110,32,32,32,32,32,32,32,32,105,115,67,117,115,116,111,109,32,61,32,116,104,105,115,46,105,115,67,117,115,116,111,109,44,92,110,32,32,32,32,32,32,32,32,105,115,73,110,108,105,110,101,32,61,32,116,104,105,115,46,105,115,73,110,108,105,110,101,44,92,110,32,32,32,32,32,32,32,32,105,115,83,119,105,116,99,104,32,61,32,116,104,105,115,46,105,115,83,119,105,116,99,104,44,92,110,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,83,105,122,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,98,118,65,116,116,114,115,32,61,32,116,104,105,115,46,98,118,65,116,116,114,115,59,92,110,32,32,32,32,118,97,114,32,36,99,111,110,116,101,110,116,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,59,92,110,32,32,32,32,118,97,114,32,36,105,110,112,117,116,32,61,32,104,40,39,105,110,112,117,116,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,39,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,39,58,32,105,115,80,108,97,105,110,44,92,110,32,32,32,32,32,32,32,32,39,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,39,58,32,105,115,67,117,115,116,111,109,44,92,110,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,50,57,49,49,92,110,32,32,32,32,32,32,32,32,39,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,39,58,32,105,115,80,108,97,105,110,32,38,38,32,33,36,99,111,110,116,101,110,116,92,110,32,32,32,32,32,32,125,44,32,105,115,66,116,110,77,111,100,101,32,63,32,39,39,32,58,32,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,39,109,111,100,101,108,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,92,110,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,99,104,101,99,107,101,100,58,32,116,104,105,115,46,105,115,67,104,101,99,107,101,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,32,32,32,32,99,104,97,110,103,101,58,32,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,92,110,32,32,32,32,32,32,125,44,32,105,115,66,116,110,77,111,100,101,32,63,32,123,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,58,32,116,104,105,115,46,104,97,110,100,108,101,70,111,99,117,115,44,92,110,32,32,32,32,32,32,32,32,98,108,117,114,58,32,116,104,105,115,46,104,97,110,100,108,101,70,111,99,117,115,92,110,32,32,32,32,32,32,125,32,58,32,123,125,41,44,92,110,32,32,32,32,32,32,107,101,121,58,32,39,105,110,112,117,116,39,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,105,110,112,117,116,39,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,66,116,110,77,111,100,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,36,98,117,116,116,111,110,32,61,32,104,40,39,108,97,98,101,108,39,44,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,116,104,105,115,46,98,117,116,116,111,110,67,108,97,115,115,101,115,92,110,32,32,32,32,32,32,125,44,32,91,36,105,110,112,117,116,44,32,36,99,111,110,116,101,110,116,93,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,71,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,116,97,110,100,97,108,111,110,101,32,98,117,116,116,111,110,32,109,111,100,101,44,32,115,111,32,119,114,97,112,32,105,110,32,39,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,39,92,110,32,32,32,32,32,32,32,32,47,47,32,97,110,100,32,102,108,97,103,32,105,116,32,97,115,32,105,110,108,105,110,101,45,98,108,111,99,107,32,116,111,32,109,105,109,105,99,32,114,101,103,117,108,97,114,32,98,117,116,116,111,110,115,92,110,32,32,32,32,32,32,32,32,36,98,117,116,116,111,110,32,61,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,39,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,39,44,32,39,100,45,105,110,108,105,110,101,45,98,108,111,99,107,39,93,92,110,32,32,32,32,32,32,32,32,125,44,32,91,36,98,117,116,116,111,110,93,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,36,98,117,116,116,111,110,59,92,110,32,32,32,32,125,32,47,47,32,73,102,32,110,111,32,108,97,98,101,108,32,99,111,110,116,101,110,116,32,105,110,32,112,108,97,105,110,32,109,111,100,101,32,119,101,32,100,111,110,116,32,114,101,110,100,101,114,32,116,104,101,32,108,97,98,101,108,92,110,32,32,32,32,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,50,57,49,49,92,110,92,110,92,110,32,32,32,32,118,97,114,32,36,108,97,98,101,108,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,40,105,115,80,108,97,105,110,32,38,38,32,33,36,99,111,110,116,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,36,108,97,98,101,108,32,61,32,104,40,39,108,97,98,101,108,39,44,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,39,58,32,105,115,80,108,97,105,110,44,92,110,32,32,32,32,32,32,32,32,32,32,39,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,39,58,32,105,115,67,117,115,116,111,109,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,58,32,116,104,105,115,46,115,97,102,101,73,100,40,41,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,36,99,111,110,116,101,110,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,100,105,118,39,44,32,123,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,92,110,32,32,32,32,32,32,32,32,39,102,111,114,109,45,99,104,101,99,107,39,58,32,105,115,80,108,97,105,110,44,92,110,32,32,32,32,32,32,32,32,39,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,39,58,32,105,115,80,108,97,105,110,32,38,38,32,105,115,73,110,108,105,110,101,44,92,110,32,32,32,32,32,32,32,32,39,99,117,115,116,111,109,45,99,111,110,116,114,111,108,39,58,32,105,115,67,117,115,116,111,109,44,92,110,32,32,32,32,32,32,32,32,39,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,108,105,110,101,39,58,32,105,115,67,117,115,116,111,109,32,38,38,32,105,115,73,110,108,105,110,101,44,92,110,32,32,32,32,32,32,32,32,39,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,39,58,32,105,115,67,117,115,116,111,109,32,38,38,32,33,105,115,82,97,100,105,111,32,38,38,32,33,105,115,83,119,105,116,99,104,44,92,110,32,32,32,32,32,32,32,32,39,99,117,115,116,111,109,45,115,119,105,116,99,104,39,58,32,105,115,83,119,105,116,99,104,44,92,110,32,32,32,32,32,32,32,32,39,99,117,115,116,111,109,45,114,97,100,105,111,39,58,32,105,115,67,117,115,116,111,109,32,38,38,32,105,115,82,97,100,105,111,92,110,32,32,32,32,32,32,125,44,32,92,34,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,92,34,46,99,111,110,99,97,116,40,99,111,109,112,117,116,101,100,83,105,122,101,41,44,32,99,111,109,112,117,116,101,100,83,105,122,101,32,38,38,32,33,105,115,66,116,110,77,111,100,101,41,44,32,98,118,65,116,116,114,115,46,99,108,97,115,115,93,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,98,118,65,116,116,114,115,46,115,116,121,108,101,92,110,32,32,32,32,125,44,32,91,36,105,110,112,117,116,44,32,36,108,97,98,101,108,93,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,114,97,100,105,111,45,99,104,101,99,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,101,108,101,99,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,101,108,101,99,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,83,101,108,101,99,116,105,111,110,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,83,101,108,101,99,116,105,111,110,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,32,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,102,111,114,109,83,101,108,101,99,116,105,111,110,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,115,101,108,101,99,116,105,111,110,83,116,97,114,116,58,32,123,92,110,32,32,32,32,32,32,47,47,32,69,120,112,111,115,101,32,115,101,108,101,99,116,105,111,110,83,116,97,114,116,32,102,111,114,32,102,111,114,109,97,116,116,101,114,115,44,32,101,116,99,92,110,32,32,32,32,32,32,99,97,99,104,101,58,32,102,97,108,115,101,44,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,115,101,108,101,99,116,105,111,110,83,116,97,114,116,59,92,110,32,32,32,32,32,32,125,44,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,115,101,116,58,32,102,117,110,99,116,105,111,110,32,115,101,116,40,118,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,115,101,108,101,99,116,105,111,110,83,116,97,114,116,32,61,32,118,97,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,105,111,110,69,110,100,58,32,123,92,110,32,32,32,32,32,32,47,47,32,69,120,112,111,115,101,32,115,101,108,101,99,116,105,111,110,69,110,100,32,102,111,114,32,102,111,114,109,97,116,116,101,114,115,44,32,101,116,99,92,110,32,32,32,32,32,32,99,97,99,104,101,58,32,102,97,108,115,101,44,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,115,101,108,101,99,116,105,111,110,69,110,100,59,92,110,32,32,32,32,32,32,125,44,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,115,101,116,58,32,102,117,110,99,116,105,111,110,32,115,101,116,40,118,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,115,101,108,101,99,116,105,111,110,69,110,100,32,61,32,118,97,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,105,111,110,68,105,114,101,99,116,105,111,110,58,32,123,92,110,32,32,32,32,32,32,47,47,32,69,120,112,111,115,101,32,115,101,108,101,99,116,105,111,110,68,105,114,101,99,116,105,111,110,32,102,111,114,32,102,111,114,109,97,116,116,101,114,115,44,32,101,116,99,92,110,32,32,32,32,32,32,99,97,99,104,101,58,32,102,97,108,115,101,44,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,115,101,108,101,99,116,105,111,110,68,105,114,101,99,116,105,111,110,59,92,110,32,32,32,32,32,32,125,44,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,115,101,116,58,32,102,117,110,99,116,105,111,110,32,115,101,116,40,118,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,115,101,108,101,99,116,105,111,110,68,105,114,101,99,116,105,111,110,32,61,32,118,97,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,115,101,108,101,99,116,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,59,92,110,92,110,32,32,32,32,32,32,47,47,32,70,111,114,32,101,120,116,101,114,110,97,108,32,104,97,110,100,108,101,114,32,116,104,97,116,32,109,97,121,32,119,97,110,116,32,97,32,115,101,108,101,99,116,40,41,32,109,101,116,104,111,100,92,110,32,32,32,32,32,32,40,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,32,61,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,46,115,101,108,101,99,116,46,97,112,112,108,121,40,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,115,101,116,83,101,108,101,99,116,105,111,110,82,97,110,103,101,58,32,102,117,110,99,116,105,111,110,32,115,101,116,83,101,108,101,99,116,105,111,110,82,97,110,103,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,50,59,92,110,92,110,32,32,32,32,32,32,47,47,32,70,111,114,32,101,120,116,101,114,110,97,108,32,104,97,110,100,108,101,114,32,116,104,97,116,32,109,97,121,32,119,97,110,116,32,97,32,115,101,116,83,101,108,101,99,116,105,111,110,82,97,110,103,101,40,97,44,98,44,99,41,32,109,101,116,104,111,100,92,110,32,32,32,32,32,32,40,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,50,32,61,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,46,115,101,116,83,101,108,101,99,116,105,111,110,82,97,110,103,101,46,97,112,112,108,121,40,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,50,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,115,101,116,82,97,110,103,101,84,101,120,116,58,32,102,117,110,99,116,105,111,110,32,115,101,116,82,97,110,103,101,84,101,120,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,51,59,92,110,92,110,32,32,32,32,32,32,47,47,32,70,111,114,32,101,120,116,101,114,110,97,108,32,104,97,110,100,108,101,114,32,116,104,97,116,32,109,97,121,32,119,97,110,116,32,97,32,115,101,116,82,97,110,103,101,84,101,120,116,40,97,44,98,44,99,41,32,109,101,116,104,111,100,92,110,32,32,32,32,32,32,40,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,51,32,61,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,46,115,101,116,82,97,110,103,101,84,101,120,116,46,97,112,112,108,121,40,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,51,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,101,108,101,99,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,83,105,122,101,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,83,105,122,101,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,115,105,122,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,44,32,39,102,111,114,109,67,111,110,116,114,111,108,115,39,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,102,111,114,109,83,105,122,101,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,115,105,122,101,70,111,114,109,67,108,97,115,115,58,32,102,117,110,99,116,105,111,110,32,115,105,122,101,70,111,114,109,67,108,97,115,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,104,105,115,46,115,105,122,101,32,63,32,92,34,102,111,114,109,45,99,111,110,116,114,111,108,45,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,105,122,101,41,32,58,32,110,117,108,108,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,105,122,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,83,116,97,116,101,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,83,116,97,116,101,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,70,111,114,109,32,99,111,110,116,114,111,108,32,99,111,110,116,101,120,116,117,97,108,32,115,116,97,116,101,32,99,108,97,115,115,32,99,111,109,112,117,116,97,116,105,111,110,92,110,32,42,92,110,32,42,32,82,101,116,117,114,110,101,100,32,99,108,97,115,115,32,105,115,32,101,105,116,104,101,114,32,39,105,115,45,118,97,108,105,100,39,32,111,114,32,39,105,115,45,105,110,118,97,108,105,100,39,32,98,97,115,101,100,32,111,110,32,116,104,101,32,39,115,116,97,116,101,39,32,112,114,111,112,92,110,32,42,32,115,116,97,116,101,32,99,97,110,32,98,101,32,111,110,101,32,111,102,32,102,105,118,101,32,118,97,108,117,101,115,58,92,110,32,42,32,32,45,32,116,114,117,101,32,102,111,114,32,105,115,45,118,97,108,105,100,92,110,32,42,32,32,45,32,102,97,108,115,101,32,102,111,114,32,105,115,45,105,110,118,97,108,105,100,92,110,32,42,32,32,45,32,110,117,108,108,32,102,111,114,32,110,111,32,99,111,110,116,101,120,116,117,97,108,32,115,116,97,116,101,92,110,32,42,47,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,123,92,110,32,32,47,47,32,84,114,105,45,115,116,97,116,101,32,112,114,111,112,58,32,116,114,117,101,44,32,102,97,108,115,101,44,32,110,117,108,108,32,40,111,114,32,117,110,100,101,102,105,110,101,100,41,92,110,32,32,115,116,97,116,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,110,117,108,108,41,92,110,125,44,32,39,102,111,114,109,83,116,97,116,101,39,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,102,111,114,109,83,116,97,116,101,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,83,116,97,116,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,83,116,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,110,111,116,32,97,32,98,111,111,108,101,97,110,44,32,101,110,115,117,114,101,32,116,104,97,116,32,118,97,108,117,101,32,105,115,32,110,117,108,108,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,115,66,111,111,108,101,97,110,41,40,116,104,105,115,46,115,116,97,116,101,41,32,63,32,116,104,105,115,46,115,116,97,116,101,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,116,97,116,101,67,108,97,115,115,58,32,102,117,110,99,116,105,111,110,32,115,116,97,116,101,67,108,97,115,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,116,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,116,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,97,116,101,32,61,61,61,32,116,114,117,101,32,63,32,39,105,115,45,118,97,108,105,100,39,32,58,32,115,116,97,116,101,32,61,61,61,32,102,97,108,115,101,32,63,32,39,105,115,45,105,110,118,97,108,105,100,39,32,58,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,65,114,105,97,73,110,118,97,108,105,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,65,114,105,97,73,110,118,97,108,105,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,114,105,97,73,110,118,97,108,105,100,32,61,32,116,104,105,115,46,97,114,105,97,73,110,118,97,108,105,100,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,97,114,105,97,73,110,118,97,108,105,100,32,61,61,61,32,116,114,117,101,32,124,124,32,97,114,105,97,73,110,118,97,108,105,100,32,61,61,61,32,39,116,114,117,101,39,32,124,124,32,97,114,105,97,73,110,118,97,108,105,100,32,61,61,61,32,39,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,116,114,117,101,39,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,116,101,32,61,61,61,32,102,97,108,115,101,32,63,32,39,116,114,117,101,39,32,58,32,97,114,105,97,73,110,118,97,108,105,100,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,115,116,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,116,101,120,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,116,101,120,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,84,101,120,116,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,84,101,120,116,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,97,108,117,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,92,110,32,32,100,101,102,97,117,108,116,86,97,108,117,101,58,32,39,39,44,92,110,32,32,101,118,101,110,116,58,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,85,80,68,65,84,69,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,114,105,97,73,110,118,97,108,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,83,84,82,73,78,71,44,32,102,97,108,115,101,41,44,92,110,32,32,97,117,116,111,99,111,109,112,108,101,116,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,47,47,32,68,101,98,111,117,110,99,101,32,116,105,109,101,111,117,116,32,40,105,110,32,109,115,41,46,32,78,111,116,32,97,112,112,108,105,99,97,98,108,101,32,119,105,116,104,32,96,108,97,122,121,96,32,112,114,111,112,92,110,32,32,100,101,98,111,117,110,99,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,48,41,44,92,110,32,32,102,111,114,109,97,116,116,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,41,44,92,110,32,32,47,47,32,79,110,108,121,32,117,112,100,97,116,101,32,116,104,101,32,96,118,45,109,111,100,101,108,96,32,111,110,32,98,108,117,114,47,99,104,97,110,103,101,32,101,118,101,110,116,115,92,110,32,32,108,97,122,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,108,97,122,121,70,111,114,109,97,116,116,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,110,117,109,98,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,44,92,110,32,32,112,108,97,105,110,116,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,114,101,97,100,111,110,108,121,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,116,114,105,109,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,92,110,125,41,41,44,32,39,102,111,114,109,84,101,120,116,67,111,110,116,114,111,108,115,39,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,102,111,114,109,84,101,120,116,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,105,120,105,110,115,58,32,91,109,111,100,101,108,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,86,97,108,117,101,58,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,111,83,116,114,105,110,103,41,40,118,97,108,117,101,41,44,92,110,32,32,32,32,32,32,118,77,111,100,101,108,86,97,108,117,101,58,32,116,104,105,115,46,109,111,100,105,102,121,86,97,108,117,101,40,118,97,108,117,101,41,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,109,112,117,116,101,100,67,108,97,115,115,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,67,108,97,115,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,108,97,105,110,116,101,120,116,32,61,32,116,104,105,115,46,112,108,97,105,110,116,101,120,116,44,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,32,61,32,116,104,105,115,46,116,121,112,101,59,92,110,32,32,32,32,32,32,118,97,114,32,105,115,82,97,110,103,101,32,61,32,116,121,112,101,32,61,61,61,32,39,114,97,110,103,101,39,59,92,110,32,32,32,32,32,32,118,97,114,32,105,115,67,111,108,111,114,32,61,32,116,121,112,101,32,61,61,61,32,39,99,111,108,111,114,39,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,123,92,110,32,32,32,32,32,32,32,32,47,47,32,82,97,110,103,101,32,105,110,112,117,116,32,110,101,101,100,115,32,99,108,97,115,115,32,96,99,117,115,116,111,109,45,114,97,110,103,101,96,92,110,32,32,32,32,32,32,32,32,39,99,117,115,116,111,109,45,114,97,110,103,101,39,58,32,105,115,82,97,110,103,101,44,92,110,32,32,32,32,32,32,32,32,47,47,32,96,112,108,97,105,110,116,101,120,116,96,32,110,111,116,32,115,117,112,112,111,114,116,101,100,32,98,121,32,96,116,121,112,101,61,92,34,114,97,110,103,101,92,34,96,32,111,114,32,96,116,121,112,101,61,92,34,99,111,108,111,114,92,34,96,92,110,32,32,32,32,32,32,32,32,39,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,39,58,32,112,108,97,105,110,116,101,120,116,32,38,38,32,33,105,115,82,97,110,103,101,32,38,38,32,33,105,115,67,111,108,111,114,44,92,110,32,32,32,32,32,32,32,32,47,47,32,96,102,111,114,109,45,99,111,110,116,114,111,108,96,32,110,111,116,32,117,115,101,100,32,98,121,32,96,116,121,112,101,61,92,34,114,97,110,103,101,92,34,96,32,111,114,32,96,112,108,97,105,110,116,101,120,116,96,92,110,32,32,32,32,32,32,32,32,47,47,32,65,108,119,97,121,115,32,117,115,101,100,32,98,121,32,96,116,121,112,101,61,92,34,99,111,108,111,114,92,34,96,92,110,32,32,32,32,32,32,32,32,39,102,111,114,109,45,99,111,110,116,114,111,108,39,58,32,105,115,67,111,108,111,114,32,124,124,32,33,112,108,97,105,110,116,101,120,116,32,38,38,32,33,105,115,82,97,110,103,101,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,115,105,122,101,70,111,114,109,67,108,97,115,115,44,32,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,68,101,98,111,117,110,99,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,68,101,98,111,117,110,99,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,69,110,115,117,114,101,32,119,101,32,104,97,118,101,32,97,32,112,111,115,105,116,105,118,101,32,110,117,109,98,101,114,32,101,113,117,97,108,32,116,111,32,111,114,32,103,114,101,97,116,101,114,32,116,104,97,110,32,48,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,109,97,116,104,77,97,120,41,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,46,100,101,98,111,117,110,99,101,44,32,48,41,44,32,48,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,115,70,111,114,109,97,116,116,101,114,58,32,102,117,110,99,116,105,111,110,32,104,97,115,70,111,114,109,97,116,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,104,97,115,80,114,111,112,70,117,110,99,116,105,111,110,41,40,116,104,105,115,46,102,111,114,109,97,116,116,101,114,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,114,105,110,103,105,102,121,86,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,111,83,116,114,105,110,103,41,40,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,118,97,114,32,109,111,100,105,102,105,101,100,86,97,108,117,101,32,61,32,116,104,105,115,46,109,111,100,105,102,121,86,97,108,117,101,40,110,101,119,86,97,108,117,101,41,59,92,110,92,110,32,32,32,32,105,102,32,40,115,116,114,105,110,103,105,102,121,86,97,108,117,101,32,33,61,61,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,124,124,32,109,111,100,105,102,105,101,100,86,97,108,117,101,32,33,61,61,32,116,104,105,115,46,118,77,111,100,101,108,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,108,101,97,114,32,97,110,121,32,112,101,110,100,105,110,103,32,100,101,98,111,117,110,99,101,32,116,105,109,101,111,117,116,44,32,97,115,32,119,101,32,97,114,101,32,111,118,101,114,119,114,105,116,105,110,103,32,116,104,101,32,117,115,101,114,32,105,110,112,117,116,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,68,101,98,111,117,110,99,101,40,41,59,32,47,47,32,85,112,100,97,116,101,32,116,104,101,32,108,111,99,97,108,32,118,97,108,117,101,115,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,115,116,114,105,110,103,105,102,121,86,97,108,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,118,77,111,100,101,108,86,97,108,117,101,32,61,32,109,111,100,105,102,105,101,100,86,97,108,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,67,114,101,97,116,101,32,112,114,105,118,97,116,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,115,92,110,32,32,32,32,116,104,105,115,46,36,95,105,110,112,117,116,68,101,98,111,117,110,99,101,84,105,109,101,114,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,83,101,116,32,117,112,32,100,101,115,116,114,111,121,32,104,97,110,100,108,101,114,92,110,32,32,32,32,116,104,105,115,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,66,69,70,79,82,69,95,68,69,83,84,82,79,89,44,32,116,104,105,115,46,99,108,101,97,114,68,101,98,111,117,110,99,101,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,68,101,98,111,117,110,99,101,40,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,99,108,101,97,114,68,101,98,111,117,110,99,101,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,68,101,98,111,117,110,99,101,40,41,32,123,92,110,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,36,95,105,110,112,117,116,68,101,98,111,117,110,99,101,84,105,109,101,114,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,105,110,112,117,116,68,101,98,111,117,110,99,101,84,105,109,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,114,109,97,116,86,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,86,97,108,117,101,40,118,97,108,117,101,44,32,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,111,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,111,83,116,114,105,110,103,41,40,118,97,108,117,101,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,70,111,114,109,97,116,116,101,114,32,38,38,32,40,33,116,104,105,115,46,108,97,122,121,70,111,114,109,97,116,116,101,114,32,124,124,32,102,111,114,99,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,116,104,105,115,46,102,111,114,109,97,116,116,101,114,40,118,97,108,117,101,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,100,105,102,121,86,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,109,111,100,105,102,121,86,97,108,117,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,111,83,116,114,105,110,103,41,40,118,97,108,117,101,41,59,32,47,47,32,69,109,117,108,97,116,101,32,96,46,116,114,105,109,96,32,109,111,100,105,102,105,101,114,32,98,101,104,97,118,105,111,117,114,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,116,114,105,109,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,118,97,108,117,101,46,116,114,105,109,40,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,69,109,117,108,97,116,101,32,96,46,110,117,109,98,101,114,96,32,109,111,100,105,102,105,101,114,32,98,101,104,97,118,105,111,117,114,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,110,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,116,111,70,108,111,97,116,41,40,118,97,108,117,101,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,112,100,97,116,101,86,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,86,97,108,117,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,102,111,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,118,97,114,32,108,97,122,121,32,61,32,116,104,105,115,46,108,97,122,121,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,108,97,122,121,32,38,38,32,33,102,111,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,32,47,47,32,77,97,107,101,32,115,117,114,101,32,116,111,32,97,108,119,97,121,115,32,99,108,101,97,114,32,116,104,101,32,100,101,98,111,117,110,99,101,32,119,104,101,110,32,96,117,112,100,97,116,101,86,97,108,117,101,40,41,96,92,110,32,32,32,32,32,32,47,47,32,105,115,32,99,97,108,108,101,100,44,32,101,118,101,110,32,119,104,101,110,32,116,104,101,32,118,45,109,111,100,101,108,32,104,97,115,110,39,116,32,99,104,97,110,103,101,100,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,68,101,98,111,117,110,99,101,40,41,59,32,47,47,32,68,101,102,105,110,101,32,116,104,101,32,115,104,97,114,101,100,32,117,112,100,97,116,101,32,108,111,103,105,99,32,105,110,32,97,32,109,101,116,104,111,100,32,116,111,32,98,101,32,97,98,108,101,32,116,111,32,117,115,101,92,110,32,32,32,32,32,32,47,47,32,105,116,32,102,111,114,32,105,109,109,101,100,105,97,116,101,32,97,110,100,32,100,101,98,111,117,110,99,101,100,32,118,97,108,117,101,32,99,104,97,110,103,101,115,92,110,92,110,32,32,32,32,32,32,118,97,114,32,100,111,85,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,100,111,85,112,100,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,95,116,104,105,115,46,109,111,100,105,102,121,86,97,108,117,101,40,118,97,108,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,33,61,61,32,95,116,104,105,115,46,118,77,111,100,101,108,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,118,77,111,100,101,108,86,97,108,117,101,32,61,32,118,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,95,116,104,105,115,46,104,97,115,70,111,114,109,97,116,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,87,104,101,110,32,116,104,101,32,96,118,77,111,100,101,108,86,97,108,117,101,96,32,104,97,115,110,39,116,32,99,104,97,110,103,101,100,32,98,117,116,32,116,104,101,32,97,99,116,117,97,108,32,105,110,112,117,116,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,105,115,32,111,117,116,32,111,102,32,115,121,110,99,44,32,109,97,107,101,32,115,117,114,101,32,116,111,32,99,104,97,110,103,101,32,105,116,32,116,111,32,116,104,101,32,103,105,118,101,110,32,111,110,101,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,85,115,117,97,108,108,121,32,99,97,117,115,101,100,32,98,121,32,98,114,111,119,115,101,114,32,97,117,116,111,99,111,109,112,108,101,116,101,32,97,110,100,32,104,111,119,32,105,116,32,116,114,105,103,103,101,114,115,32,116,104,101,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,99,104,97,110,103,101,32,111,114,32,105,110,112,117,116,32,101,118,101,110,116,44,32,111,114,32,100,101,112,101,110,100,105,110,103,32,111,110,32,116,104,101,32,102,111,114,109,97,116,116,101,114,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,50,54,53,55,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,51,52,57,56,92,110,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,104,97,114,100,32,116,111,32,116,101,115,116,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,36,105,110,112,117,116,32,61,32,95,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,59,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,58,32,104,97,114,100,32,116,111,32,116,101,115,116,32,111,117,116,32,111,102,32,115,121,110,99,32,118,97,108,117,101,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,36,105,110,112,117,116,32,38,38,32,118,97,108,117,101,32,33,61,61,32,36,105,110,112,117,116,46,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,36,105,110,112,117,116,46,118,97,108,117,101,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,32,47,47,32,79,110,108,121,32,100,101,98,111,117,110,99,101,32,116,104,101,32,118,97,108,117,101,32,117,112,100,97,116,101,32,119,104,101,110,32,97,32,118,97,108,117,101,32,103,114,101,97,116,101,114,32,116,104,97,110,32,96,48,96,92,110,32,32,32,32,32,32,47,47,32,105,115,32,115,101,116,32,97,110,100,32,119,101,32,97,114,101,32,110,111,116,32,105,110,32,108,97,122,121,32,109,111,100,101,32,111,114,32,116,104,105,115,32,105,115,32,97,32,102,111,114,99,101,100,32,117,112,100,97,116,101,92,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,100,101,98,111,117,110,99,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,68,101,98,111,117,110,99,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,100,101,98,111,117,110,99,101,32,62,32,48,32,38,38,32,33,108,97,122,121,32,38,38,32,33,102,111,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,95,105,110,112,117,116,68,101,98,111,117,110,99,101,84,105,109,101,114,32,61,32,115,101,116,84,105,109,101,111,117,116,40,100,111,85,112,100,97,116,101,44,32,100,101,98,111,117,110,99,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,109,109,101,100,105,97,116,101,108,121,32,117,112,100,97,116,101,32,116,104,101,32,118,45,109,111,100,101,108,92,110,32,32,32,32,32,32,32,32,100,111,85,112,100,97,116,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,73,110,112,117,116,58,32,102,117,110,99,116,105,111,110,32,111,110,73,110,112,117,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,96,101,118,101,110,116,46,116,97,114,103,101,116,46,99,111,109,112,111,115,105,110,103,96,32,105,115,32,115,101,116,32,98,121,32,86,117,101,92,110,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,47,98,108,111,98,47,100,101,118,47,115,114,99,47,112,108,97,116,102,111,114,109,115,47,119,101,98,47,114,117,110,116,105,109,101,47,100,105,114,101,99,116,105,118,101,115,47,109,111,100,101,108,46,106,115,92,110,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,73,115,32,116,104,105,115,32,110,101,101,100,101,100,32,110,111,119,32,119,105,116,104,32,116,104,101,32,108,97,116,101,115,116,32,86,117,101,63,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,58,32,104,97,114,100,32,116,111,32,116,101,115,116,32,99,111,109,112,111,115,105,116,105,111,110,32,101,118,101,110,116,115,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,116,97,114,103,101,116,46,99,111,109,112,111,115,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,100,86,97,108,117,101,32,61,32,116,104,105,115,46,102,111,114,109,97,116,86,97,108,117,101,40,118,97,108,117,101,44,32,101,118,101,110,116,41,59,32,47,47,32,69,120,105,116,32,119,104,101,110,32,116,104,101,32,96,102,111,114,109,97,116,116,101,114,96,32,102,117,110,99,116,105,111,110,32,115,116,114,105,99,116,108,121,32,114,101,116,117,114,110,101,100,32,96,102,97,108,115,101,96,92,110,32,32,32,32,32,32,47,47,32,111,114,32,112,114,101,118,101,110,116,101,100,32,116,104,101,32,105,110,112,117,116,32,101,118,101,110,116,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,102,111,114,109,97,116,116,101,100,86,97,108,117,101,32,61,61,61,32,102,97,108,115,101,32,124,124,32,101,118,101,110,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,102,111,114,109,97,116,116,101,100,86,97,108,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,86,97,108,117,101,40,102,111,114,109,97,116,116,101,100,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,73,78,80,85,84,44,32,102,111,114,109,97,116,116,101,100,86,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,104,97,110,103,101,58,32,102,117,110,99,116,105,111,110,32,111,110,67,104,97,110,103,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,100,86,97,108,117,101,32,61,32,116,104,105,115,46,102,111,114,109,97,116,86,97,108,117,101,40,118,97,108,117,101,44,32,101,118,101,110,116,41,59,32,47,47,32,69,120,105,116,32,119,104,101,110,32,116,104,101,32,96,102,111,114,109,97,116,116,101,114,96,32,102,117,110,99,116,105,111,110,32,115,116,114,105,99,116,108,121,32,114,101,116,117,114,110,101,100,32,96,102,97,108,115,101,96,92,110,32,32,32,32,32,32,47,47,32,111,114,32,112,114,101,118,101,110,116,101,100,32,116,104,101,32,105,110,112,117,116,32,101,118,101,110,116,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,102,111,114,109,97,116,116,101,100,86,97,108,117,101,32,61,61,61,32,102,97,108,115,101,32,124,124,32,101,118,101,110,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,102,111,114,109,97,116,116,101,100,86,97,108,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,86,97,108,117,101,40,102,111,114,109,97,116,116,101,100,86,97,108,117,101,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,67,72,65,78,71,69,44,32,102,111,114,109,97,116,116,101,100,86,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,66,108,117,114,58,32,102,117,110,99,116,105,111,110,32,111,110,66,108,117,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,65,112,112,108,121,32,116,104,101,32,96,108,111,99,97,108,86,97,108,117,101,96,32,111,110,32,98,108,117,114,32,116,111,32,112,114,101,118,101,110,116,32,99,117,114,115,111,114,32,106,117,109,112,115,92,110,32,32,32,32,32,32,47,47,32,111,110,32,109,111,98,105,108,101,32,98,114,111,119,115,101,114,115,32,40,101,46,103,46,32,99,97,117,115,101,100,32,98,121,32,97,117,116,111,99,111,109,112,108,101,116,101,41,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,101,118,101,110,116,46,116,97,114,103,101,116,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,100,86,97,108,117,101,32,61,32,116,104,105,115,46,102,111,114,109,97,116,86,97,108,117,101,40,118,97,108,117,101,44,32,101,118,101,110,116,44,32,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,102,111,114,109,97,116,116,101,100,86,97,108,117,101,32,33,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,110,101,101,100,32,116,111,32,117,115,101,32,116,104,101,32,109,111,100,105,102,105,101,100,32,118,97,108,117,101,32,104,101,114,101,32,116,111,32,97,112,112,108,121,32,116,104,101,92,110,32,32,32,32,32,32,32,32,47,47,32,96,46,116,114,105,109,96,32,97,110,100,32,96,46,110,117,109,98,101,114,96,32,109,111,100,105,102,105,101,114,115,32,112,114,111,112,101,114,108,121,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,111,83,116,114,105,110,103,41,40,116,104,105,115,46,109,111,100,105,102,121,86,97,108,117,101,40,102,111,114,109,97,116,116,101,100,86,97,108,117,101,41,41,59,32,47,47,32,87,101,32,112,97,115,115,32,116,104,101,32,102,111,114,109,97,116,116,101,100,32,118,97,108,117,101,32,104,101,114,101,32,115,105,110,99,101,32,116,104,101,32,96,117,112,100,97,116,101,86,97,108,117,101,96,32,109,101,116,104,111,100,92,110,32,32,32,32,32,32,32,32,47,47,32,104,97,110,100,108,101,115,32,116,104,101,32,109,111,100,105,102,105,101,114,115,32,105,116,115,101,108,102,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,86,97,108,117,101,40,102,111,114,109,97,116,116,101,100,86,97,108,117,101,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,69,109,105,116,32,110,97,116,105,118,101,32,98,108,117,114,32,101,118,101,110,116,92,110,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,78,65,77,69,95,66,76,85,82,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,99,117,115,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,70,111,114,32,101,120,116,101,114,110,97,108,32,104,97,110,100,108,101,114,32,116,104,97,116,32,109,97,121,32,119,97,110,116,32,97,32,102,111,99,117,115,32,109,101,116,104,111,100,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,116,104,105,115,46,36,101,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,108,117,114,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,70,111,114,32,101,120,116,101,114,110,97,108,32,104,97,110,100,108,101,114,32,116,104,97,116,32,109,97,121,32,119,97,110,116,32,97,32,98,108,117,114,32,109,101,116,104,111,100,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,97,116,116,101,109,112,116,66,108,117,114,41,40,116,104,105,115,46,36,101,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,116,101,120,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,118,97,108,105,100,105,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,118,97,108,105,100,105,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,86,97,108,105,100,105,116,121,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,86,97,108,105,100,105,116,121,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,32,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,102,111,114,109,86,97,108,105,100,105,116,121,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,118,97,108,105,100,105,116,121,58,32,123,92,110,32,32,32,32,32,32,47,47,32,69,120,112,111,115,101,32,118,97,108,105,100,105,116,121,32,112,114,111,112,101,114,116,121,92,110,32,32,32,32,32,32,99,97,99,104,101,58,32,102,97,108,115,101,44,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,118,97,108,105,100,105,116,121,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,118,97,108,105,100,97,116,105,111,110,77,101,115,115,97,103,101,58,32,123,92,110,32,32,32,32,32,32,47,47,32,69,120,112,111,115,101,32,118,97,108,105,100,97,116,105,111,110,77,101,115,115,97,103,101,32,112,114,111,112,101,114,116,121,92,110,32,32,32,32,32,32,99,97,99,104,101,58,32,102,97,108,115,101,44,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,118,97,108,105,100,97,116,105,111,110,77,101,115,115,97,103,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,119,105,108,108,86,97,108,105,100,97,116,101,58,32,123,92,110,32,32,32,32,32,32,47,47,32,69,120,112,111,115,101,32,119,105,108,108,86,97,108,105,100,97,116,101,32,112,114,111,112,101,114,116,121,92,110,32,32,32,32,32,32,99,97,99,104,101,58,32,102,97,108,115,101,44,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,119,105,108,108,86,97,108,105,100,97,116,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,115,101,116,67,117,115,116,111,109,86,97,108,105,100,105,116,121,58,32,102,117,110,99,116,105,111,110,32,115,101,116,67,117,115,116,111,109,86,97,108,105,100,105,116,121,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,59,92,110,92,110,32,32,32,32,32,32,47,47,32,70,111,114,32,101,120,116,101,114,110,97,108,32,104,97,110,100,108,101,114,32,116,104,97,116,32,109,97,121,32,119,97,110,116,32,97,32,115,101,116,67,117,115,116,111,109,86,97,108,105,100,105,116,121,40,46,46,46,41,32,109,101,116,104,111,100,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,32,61,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,46,115,101,116,67,117,115,116,111,109,86,97,108,105,100,105,116,121,46,97,112,112,108,121,40,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,99,104,101,99,107,86,97,108,105,100,105,116,121,58,32,102,117,110,99,116,105,111,110,32,99,104,101,99,107,86,97,108,105,100,105,116,121,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,50,59,92,110,92,110,32,32,32,32,32,32,47,47,32,70,111,114,32,101,120,116,101,114,110,97,108,32,104,97,110,100,108,101,114,32,116,104,97,116,32,109,97,121,32,119,97,110,116,32,97,32,99,104,101,99,107,86,97,108,105,100,105,116,121,40,46,46,46,41,32,109,101,116,104,111,100,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,50,32,61,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,46,99,104,101,99,107,86,97,108,105,100,105,116,121,46,97,112,112,108,121,40,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,50,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,114,101,112,111,114,116,86,97,108,105,100,105,116,121,58,32,102,117,110,99,116,105,111,110,32,114,101,112,111,114,116,86,97,108,105,100,105,116,121,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,51,59,92,110,92,110,32,32,32,32,32,32,47,47,32,70,111,114,32,101,120,116,101,114,110,97,108,32,104,97,110,100,108,101,114,32,116,104,97,116,32,109,97,121,32,119,97,110,116,32,97,32,114,101,112,111,114,116,86,97,108,105,100,105,116,121,40,46,46,46,41,32,109,101,116,104,111,100,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,51,32,61,32,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,46,114,101,112,111,114,116,86,97,108,105,100,105,116,121,46,97,112,112,108,121,40,95,116,104,105,115,36,36,114,101,102,115,36,105,110,112,117,116,51,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,102,111,114,109,45,118,97,108,105,100,105,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,104,97,115,45,108,105,115,116,101,110,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,104,97,115,45,108,105,115,116,101,110,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,97,115,76,105,115,116,101,110,101,114,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,97,115,76,105,115,116,101,110,101,114,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,47,32,77,105,120,105,110,32,116,111,32,100,101,116,101,114,109,105,110,101,32,105,102,32,97,110,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,32,104,97,115,32,98,101,101,110,32,114,101,103,105,115,116,101,114,101,100,92,110,47,47,32,101,105,116,104,101,114,32,118,105,97,32,96,118,45,111,110,58,110,97,109,101,96,32,40,105,110,32,116,104,101,32,112,97,114,101,110,116,41,32,111,114,32,112,114,111,103,114,97,109,109,97,116,105,99,97,108,108,121,92,110,47,47,32,118,105,97,32,96,118,109,46,36,111,110,40,39,110,97,109,101,39,44,32,46,46,46,41,96,92,110,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,47,105,115,115,117,101,115,47,49,48,56,50,53,92,110,92,110,32,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,104,97,115,76,105,115,116,101,110,101,114,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,104,97,115,76,105,115,116,101,110,101,114,58,32,102,117,110,99,116,105,111,110,32,104,97,115,76,105,115,116,101,110,101,114,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,79,110,108,121,32,105,110,99,108,117,100,101,115,32,108,105,115,116,101,110,101,114,115,32,114,101,103,105,115,116,101,114,101,100,32,118,105,97,32,96,118,45,111,110,58,110,97,109,101,96,92,110,32,32,32,32,32,32,118,97,114,32,36,108,105,115,116,101,110,101,114,115,32,61,32,116,104,105,115,46,36,108,105,115,116,101,110,101,114,115,32,124,124,32,123,125,59,32,47,47,32,73,110,99,108,117,100,101,115,32,96,118,45,111,110,58,110,97,109,101,96,32,97,110,100,32,96,116,104,105,115,46,36,111,110,40,39,110,97,109,101,39,41,96,32,114,101,103,105,115,116,101,114,101,100,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,32,32,47,47,32,78,111,116,101,32,116,104,105,115,32,112,114,111,112,101,114,116,121,32,105,115,32,110,111,116,32,112,97,114,116,32,111,102,32,116,104,101,32,112,117,98,108,105,99,32,86,117,101,32,65,80,73,44,32,98,117,116,32,105,116,32,105,115,92,110,32,32,32,32,32,32,47,47,32,116,104,101,32,111,110,108,121,32,119,97,121,32,116,111,32,100,101,116,101,114,109,105,110,101,32,105,102,32,97,32,108,105,115,116,101,110,101,114,32,119,97,115,32,97,100,100,101,100,32,118,105,97,32,96,118,109,46,36,111,110,96,92,110,92,110,32,32,32,32,32,32,118,97,114,32,36,101,118,101,110,116,115,32,61,32,116,104,105,115,46,95,101,118,101,110,116,115,32,124,124,32,123,125,59,32,47,47,32,82,101,103,105,115,116,101,114,101,100,32,108,105,115,116,101,110,101,114,115,32,105,110,32,96,116,104,105,115,46,95,101,118,101,110,116,115,96,32,97,114,101,32,97,108,119,97,121,115,32,97,110,32,97,114,114,97,121,44,92,110,32,32,32,32,32,32,47,47,32,98,117,116,32,109,105,103,104,116,32,98,101,32,122,101,114,111,32,108,101,110,103,116,104,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,36,108,105,115,116,101,110,101,114,115,91,110,97,109,101,93,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,65,114,114,97,121,41,40,36,101,118,101,110,116,115,91,110,97,109,101,93,41,32,38,38,32,36,101,118,101,110,116,115,91,110,97,109,101,93,46,108,101,110,103,116,104,32,62,32,48,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,104,97,115,45,108,105,115,116,101,110,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,100,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,100,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,118,117,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,47,32,83,83,82,32,115,97,102,101,32,99,108,105,101,110,116,45,115,105,100,101,32,73,68,32,97,116,116,114,105,98,117,116,101,32,103,101,110,101,114,97,116,105,111,110,92,110,47,47,32,73,68,39,115,32,99,97,110,32,111,110,108,121,32,98,101,32,103,101,110,101,114,97,116,101,100,32,99,108,105,101,110,116,45,115,105,100,101,44,32,97,102,116,101,114,32,109,111,117,110,116,92,110,47,47,32,96,116,104,105,115,46,95,117,105,100,96,32,105,115,32,110,111,116,32,115,121,110,99,104,101,100,32,98,101,116,119,101,101,110,32,115,101,114,118,101,114,32,97,110,100,32,99,108,105,101,110,116,92,110,92,110,92,110,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,123,92,110,32,32,105,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,105,100,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,73,100,95,58,32,110,117,108,108,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,115,97,102,101,73,100,58,32,102,117,110,99,116,105,111,110,32,115,97,102,101,73,100,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,111,109,112,117,116,101,100,32,112,114,111,112,101,114,116,121,32,116,104,97,116,32,114,101,116,117,114,110,115,32,97,32,100,121,110,97,109,105,99,32,102,117,110,99,116,105,111,110,32,102,111,114,32,99,114,101,97,116,105,110,103,32,116,104,101,32,73,68,92,110,32,32,32,32,32,32,47,47,32,82,101,97,99,116,115,32,116,111,32,99,104,97,110,103,101,115,32,105,110,32,98,111,116,104,32,96,46,105,100,96,32,97,110,100,32,96,46,108,111,99,97,108,73,100,95,96,32,97,110,100,32,114,101,103,101,110,101,114,97,116,101,115,32,97,32,110,101,119,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,118,97,114,32,105,100,32,61,32,116,104,105,115,46,105,100,32,124,124,32,116,104,105,115,46,108,111,99,97,108,73,100,95,59,32,47,47,32,87,101,32,114,101,116,117,114,110,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,97,99,99,101,112,116,115,32,97,110,32,111,112,116,105,111,110,97,108,32,115,117,102,102,105,120,32,115,116,114,105,110,103,92,110,32,32,32,32,32,32,47,47,32,83,111,32,116,104,105,115,32,99,111,109,112,117,116,101,100,32,112,114,111,112,32,108,111,111,107,115,32,97,110,100,32,119,111,114,107,115,32,108,105,107,101,32,97,32,109,101,116,104,111,100,92,110,32,32,32,32,32,32,47,47,32,98,117,116,32,98,101,110,101,102,105,116,115,32,102,114,111,109,32,86,117,101,39,115,32,99,111,109,112,117,116,101,100,32,112,114,111,112,32,99,97,99,104,105,110,103,92,110,92,110,32,32,32,32,32,32,118,97,114,32,102,110,32,61,32,102,117,110,99,116,105,111,110,32,102,110,40,115,117,102,102,105,120,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,115,117,102,102,105,120,32,61,32,83,116,114,105,110,103,40,115,117,102,102,105,120,32,124,124,32,39,39,41,46,114,101,112,108,97,99,101,40,47,92,92,115,43,47,103,44,32,39,95,39,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,117,102,102,105,120,32,63,32,105,100,32,43,32,39,95,39,32,43,32,115,117,102,102,105,120,32,58,32,105,100,59,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,47,47,32,96,109,111,117,110,116,101,100,40,41,96,32,111,110,108,121,32,111,99,99,117,114,115,32,99,108,105,101,110,116,45,115,105,100,101,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,85,112,100,97,116,101,32,68,79,77,32,119,105,116,104,32,97,117,116,111,45,103,101,110,101,114,97,116,101,100,32,73,68,32,97,102,116,101,114,32,109,111,117,110,116,92,110,32,32,32,32,32,32,47,47,32,116,111,32,112,114,101,118,101,110,116,32,83,83,82,32,104,121,100,114,97,116,105,111,110,32,101,114,114,111,114,115,92,110,32,32,32,32,32,32,95,116,104,105,115,46,108,111,99,97,108,73,100,95,32,61,32,92,34,95,95,66,86,73,68,95,95,92,34,46,99,111,110,99,97,116,40,95,116,104,105,115,91,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,67,79,77,80,79,78,69,78,84,95,85,73,68,95,75,69,89,93,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,105,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,100,111,99,117,109,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,100,111,99,117,109,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,115,116,101,110,79,110,68,111,99,117,109,101,110,116,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,105,115,116,101,110,79,110,68,111,99,117,109,101,110,116,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,80,82,79,80,32,61,32,39,36,95,98,118,95,100,111,99,117,109,101,110,116,72,97,110,100,108,101,114,115,95,39,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,108,105,115,116,101,110,79,110,68,111,99,117,109,101,110,116,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,105,102,32,40,33,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,73,83,95,66,82,79,87,83,69,82,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,32,47,47,32,68,101,99,108,97,114,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,101,114,116,121,92,110,32,32,32,32,47,47,32,79,98,106,101,99,116,32,111,102,32,97,114,114,97,121,115,44,32,107,101,121,101,100,32,98,121,32,101,118,101,110,116,32,110,97,109,101,44,92,110,32,32,32,32,47,47,32,119,104,101,114,101,32,118,97,108,117,101,32,105,115,32,97,110,32,97,114,114,97,121,32,111,102,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,47,47,32,80,114,111,112,32,119,105,108,108,32,98,101,32,100,101,102,105,110,101,100,32,111,110,32,99,108,105,101,110,116,32,111,110,108,121,92,110,92,110,92,110,32,32,32,32,116,104,105,115,91,80,82,79,80,93,32,61,32,123,125,59,32,47,47,32,83,101,116,32,117,112,32,111,117,114,32,98,101,102,111,114,101,68,101,115,116,114,111,121,32,104,97,110,100,108,101,114,32,40,99,108,105,101,110,116,32,111,110,108,121,41,92,110,92,110,32,32,32,32,116,104,105,115,46,36,111,110,99,101,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,66,69,70,79,82,69,95,68,69,83,84,82,79,89,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,95,116,104,105,115,91,80,82,79,80,93,32,124,124,32,123,125,59,32,47,47,32,73,109,109,101,100,105,97,116,101,108,121,32,100,101,108,101,116,101,32,116,104,105,115,91,80,82,79,80,93,32,116,111,32,112,114,101,118,101,110,116,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,108,105,115,116,101,110,79,110,47,79,102,102,32,109,101,116,104,111,100,115,32,102,114,111,109,32,114,117,110,110,105,110,103,32,40,119,104,105,99,104,32,109,97,121,32,111,99,99,117,114,92,110,32,32,32,32,32,32,47,47,32,100,117,101,32,116,111,32,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,47,116,114,97,110,115,105,116,105,111,110,32,100,101,108,97,121,115,41,92,110,92,110,32,32,32,32,32,32,100,101,108,101,116,101,32,95,116,104,105,115,91,80,82,79,80,93,59,32,47,47,32,82,101,109,111,118,101,32,97,108,108,32,114,101,103,105,115,116,101,114,101,100,32,101,118,101,110,116,32,104,97,110,100,108,101,114,115,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,107,101,121,115,41,40,105,116,101,109,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,115,32,61,32,105,116,101,109,115,91,101,118,101,110,116,78,97,109,101,93,32,124,124,32,91,93,59,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,101,118,101,110,116,79,102,102,41,40,100,111,99,117,109,101,110,116,44,32,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,108,105,115,116,101,110,68,111,99,117,109,101,110,116,58,32,102,117,110,99,116,105,111,110,32,108,105,115,116,101,110,68,111,99,117,109,101,110,116,40,111,110,44,32,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,111,110,32,63,32,116,104,105,115,46,108,105,115,116,101,110,79,110,68,111,99,117,109,101,110,116,40,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,41,32,58,32,116,104,105,115,46,108,105,115,116,101,110,79,102,102,68,111,99,117,109,101,110,116,40,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,105,115,116,101,110,79,110,68,111,99,117,109,101,110,116,58,32,102,117,110,99,116,105,111,110,32,108,105,115,116,101,110,79,110,68,111,99,117,109,101,110,116,40,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,91,80,82,79,80,93,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,83,116,114,105,110,103,41,40,101,118,101,110,116,78,97,109,101,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,104,97,110,100,108,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,91,80,82,79,80,93,91,101,118,101,110,116,78,97,109,101,93,32,61,32,116,104,105,115,91,80,82,79,80,93,91,101,118,101,110,116,78,97,109,101,93,32,124,124,32,91,93,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,116,104,105,115,91,80,82,79,80,93,91,101,118,101,110,116,78,97,109,101,93,44,32,104,97,110,100,108,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,91,80,82,79,80,93,91,101,118,101,110,116,78,97,109,101,93,46,112,117,115,104,40,104,97,110,100,108,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,101,118,101,110,116,79,110,41,40,100,111,99,117,109,101,110,116,44,32,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,105,115,116,101,110,79,102,102,68,111,99,117,109,101,110,116,58,32,102,117,110,99,116,105,111,110,32,108,105,115,116,101,110,79,102,102,68,111,99,117,109,101,110,116,40,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,91,80,82,79,80,93,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,83,116,114,105,110,103,41,40,101,118,101,110,116,78,97,109,101,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,104,97,110,100,108,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,101,118,101,110,116,79,102,102,41,40,100,111,99,117,109,101,110,116,44,32,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,91,80,82,79,80,93,91,101,118,101,110,116,78,97,109,101,93,32,61,32,40,116,104,105,115,91,80,82,79,80,93,91,101,118,101,110,116,78,97,109,101,93,32,124,124,32,91,93,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,32,33,61,61,32,104,97,110,100,108,101,114,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,100,111,99,117,109,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,115,116,101,110,79,110,82,111,111,116,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,105,115,116,101,110,79,110,82,111,111,116,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,92,110,32,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,108,105,115,116,101,110,79,110,82,111,111,116,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,83,97,102,101,108,121,32,114,101,103,105,115,116,101,114,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,32,111,110,32,116,104,101,32,114,111,111,116,32,86,117,101,32,110,111,100,101,92,110,32,32,32,32,32,42,32,87,104,105,108,101,32,86,117,101,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,114,101,109,111,118,101,115,32,108,105,115,116,101,110,101,114,115,32,102,111,114,32,105,110,100,105,118,105,100,117,97,108,32,99,111,109,112,111,110,101,110,116,115,44,92,110,32,32,32,32,32,42,32,119,104,101,110,32,97,32,99,111,109,112,111,110,101,110,116,32,114,101,103,105,115,116,101,114,115,32,97,32,108,105,115,116,101,110,101,114,32,111,110,32,114,111,111,116,32,97,110,100,32,105,115,32,100,101,115,116,114,111,121,101,100,44,92,110,32,32,32,32,32,42,32,116,104,105,115,32,111,114,112,104,97,110,115,32,97,32,99,97,108,108,98,97,99,107,32,98,101,99,97,117,115,101,32,116,104,101,32,110,111,100,101,32,105,115,32,103,111,110,101,44,92,110,32,32,32,32,32,42,32,98,117,116,32,116,104,101,32,114,111,111,116,32,100,111,101,115,32,110,111,116,32,99,108,101,97,114,32,116,104,101,32,99,97,108,108,98,97,99,107,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,87,104,101,110,32,114,101,103,105,115,116,101,114,105,110,103,32,97,32,96,36,114,111,111,116,96,32,108,105,115,116,101,110,101,114,44,32,105,116,32,97,108,115,111,32,114,101,103,105,115,116,101,114,115,32,97,32,108,105,115,116,101,110,101,114,32,111,110,92,110,32,32,32,32,32,42,32,116,104,101,32,99,111,109,112,111,110,101,110,116,39,115,32,96,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,96,32,104,111,111,107,32,116,111,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,114,101,109,111,118,101,32,116,104,101,92,110,32,32,32,32,32,42,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,32,102,114,111,109,32,116,104,101,32,96,36,114,111,111,116,96,32,105,110,115,116,97,110,99,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,101,118,101,110,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,99,97,108,108,98,97,99,107,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,108,105,115,116,101,110,79,110,82,111,111,116,58,32,102,117,110,99,116,105,111,110,32,108,105,115,116,101,110,79,110,82,111,111,116,40,101,118,101,110,116,44,32,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,114,111,111,116,46,36,111,110,40,101,118,101,110,116,44,32,99,97,108,108,98,97,99,107,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,66,69,70,79,82,69,95,68,69,83,84,82,79,89,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,114,111,111,116,46,36,111,102,102,40,101,118,101,110,116,44,32,99,97,108,108,98,97,99,107,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,83,97,102,101,108,121,32,114,101,103,105,115,116,101,114,32,97,32,96,36,111,110,99,101,40,41,96,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,32,111,110,32,116,104,101,32,114,111,111,116,32,86,117,101,32,110,111,100,101,92,110,32,32,32,32,32,42,32,87,104,105,108,101,32,86,117,101,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,114,101,109,111,118,101,115,32,108,105,115,116,101,110,101,114,115,32,102,111,114,32,105,110,100,105,118,105,100,117,97,108,32,99,111,109,112,111,110,101,110,116,115,44,92,110,32,32,32,32,32,42,32,119,104,101,110,32,97,32,99,111,109,112,111,110,101,110,116,32,114,101,103,105,115,116,101,114,115,32,97,32,108,105,115,116,101,110,101,114,32,111,110,32,114,111,111,116,32,97,110,100,32,105,115,32,100,101,115,116,114,111,121,101,100,44,92,110,32,32,32,32,32,42,32,116,104,105,115,32,111,114,112,104,97,110,115,32,97,32,99,97,108,108,98,97,99,107,32,98,101,99,97,117,115,101,32,116,104,101,32,110,111,100,101,32,105,115,32,103,111,110,101,44,92,110,32,32,32,32,32,42,32,98,117,116,32,116,104,101,32,114,111,111,116,32,100,111,101,115,32,110,111,116,32,99,108,101,97,114,32,116,104,101,32,99,97,108,108,98,97,99,107,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,87,104,101,110,32,114,101,103,105,115,116,101,114,105,110,103,32,97,32,36,114,111,111,116,32,108,105,115,116,101,110,101,114,44,32,105,116,32,97,108,115,111,32,114,101,103,105,115,116,101,114,115,32,97,32,108,105,115,116,101,110,101,114,32,111,110,92,110,32,32,32,32,32,42,32,116,104,101,32,99,111,109,112,111,110,101,110,116,39,115,32,96,98,101,102,111,114,101,68,101,115,116,114,111,121,96,32,104,111,111,107,32,116,111,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,114,101,109,111,118,101,32,116,104,101,92,110,32,32,32,32,32,42,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,32,102,114,111,109,32,116,104,101,32,36,114,111,111,116,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,101,118,101,110,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,99,97,108,108,98,97,99,107,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,108,105,115,116,101,110,79,110,82,111,111,116,79,110,99,101,58,32,102,117,110,99,116,105,111,110,32,108,105,115,116,101,110,79,110,82,111,111,116,79,110,99,101,40,101,118,101,110,116,44,32,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,114,111,111,116,46,36,111,110,99,101,40,101,118,101,110,116,44,32,99,97,108,108,98,97,99,107,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,111,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,72,79,79,75,95,69,86,69,78,84,95,78,65,77,69,95,66,69,70,79,82,69,95,68,69,83,84,82,79,89,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,36,114,111,111,116,46,36,111,102,102,40,101,118,101,110,116,44,32,99,97,108,108,98,97,99,107,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,110,105,101,110,99,101,32,109,101,116,104,111,100,32,102,111,114,32,99,97,108,108,105,110,103,32,96,118,109,46,36,101,109,105,116,40,41,96,32,111,110,32,96,118,109,46,36,114,111,111,116,96,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,101,118,101,110,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,97,114,103,115,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,101,109,105,116,79,110,82,111,111,116,58,32,102,117,110,99,116,105,111,110,32,101,109,105,116,79,110,82,111,111,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,36,36,114,111,111,116,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,95,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,32,97,114,103,115,32,61,32,110,101,119,32,65,114,114,97,121,40,95,108,101,110,32,62,32,49,32,63,32,95,108,101,110,32,45,32,49,32,58,32,48,41,44,32,95,107,101,121,32,61,32,49,59,32,95,107,101,121,32,60,32,95,108,101,110,59,32,95,107,101,121,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,97,114,103,115,91,95,107,101,121,32,45,32,49,93,32,61,32,97,114,103,117,109,101,110,116,115,91,95,107,101,121,93,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,40,95,116,104,105,115,36,36,114,111,111,116,32,61,32,116,104,105,115,46,36,114,111,111,116,41,46,36,101,109,105,116,46,97,112,112,108,121,40,95,116,104,105,115,36,36,114,111,111,116,44,32,91,101,118,101,110,116,93,46,99,111,110,99,97,116,40,97,114,103,115,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,114,111,111,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,119,105,110,100,111,119,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,119,105,110,100,111,119,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,115,116,101,110,79,110,87,105,110,100,111,119,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,105,115,116,101,110,79,110,87,105,110,100,111,119,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,80,82,79,80,32,61,32,39,36,95,98,118,95,119,105,110,100,111,119,72,97,110,100,108,101,114,115,95,39,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,108,105,115,116,101,110,79,110,87,105,110,100,111,119,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,98,101,102,111,114,101,67,114,101,97,116,101,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,67,114,101,97,116,101,40,41,32,123,92,110,32,32,32,32,47,47,32,68,101,99,108,97,114,101,32,110,111,110,45,114,101,97,99,116,105,118,101,32,112,114,111,112,101,114,116,121,92,110,32,32,32,32,47,47,32,79,98,106,101,99,116,32,111,102,32,97,114,114,97,121,115,44,32,107,101,121,101,100,32,98,121,32,101,118,101,110,116,32,110,97,109,101,44,92,110,32,32,32,32,47,47,32,119,104,101,114,101,32,118,97,108,117,101,32,105,115,32,97,110,32,97,114,114,97,121,32,111,102,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,116,104,105,115,91,80,82,79,80,93,32,61,32,123,125,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,73,83,95,66,82,79,87,83,69,82,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,116,104,105,115,91,80,82,79,80,93,59,32,47,47,32,73,109,109,101,100,105,97,116,101,108,121,32,100,101,108,101,116,101,32,116,104,105,115,91,80,82,79,80,93,32,116,111,32,112,114,101,118,101,110,116,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,108,105,115,116,101,110,79,110,47,79,102,102,32,109,101,116,104,111,100,115,32,102,114,111,109,32,114,117,110,110,105,110,103,32,40,119,104,105,99,104,32,109,97,121,32,111,99,99,117,114,92,110,32,32,32,32,32,32,47,47,32,100,117,101,32,116,111,32,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,32,100,101,108,97,121,115,41,92,110,92,110,32,32,32,32,32,32,100,101,108,101,116,101,32,116,104,105,115,91,80,82,79,80,93,59,32,47,47,32,82,101,109,111,118,101,32,97,108,108,32,114,101,103,105,115,116,101,114,101,100,32,101,118,101,110,116,32,104,97,110,100,108,101,114,115,92,110,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,107,101,121,115,41,40,105,116,101,109,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,115,32,61,32,105,116,101,109,115,91,101,118,101,110,116,78,97,109,101,93,32,124,124,32,91,93,59,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,101,118,101,110,116,79,102,102,41,40,119,105,110,100,111,119,44,32,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,108,105,115,116,101,110,87,105,110,100,111,119,58,32,102,117,110,99,116,105,111,110,32,108,105,115,116,101,110,87,105,110,100,111,119,40,111,110,44,32,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,111,110,32,63,32,116,104,105,115,46,108,105,115,116,101,110,79,110,87,105,110,100,111,119,40,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,41,32,58,32,116,104,105,115,46,108,105,115,116,101,110,79,102,102,87,105,110,100,111,119,40,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,105,115,116,101,110,79,110,87,105,110,100,111,119,58,32,102,117,110,99,116,105,111,110,32,108,105,115,116,101,110,79,110,87,105,110,100,111,119,40,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,73,83,95,66,82,79,87,83,69,82,32,38,38,32,116,104,105,115,91,80,82,79,80,93,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,83,116,114,105,110,103,41,40,101,118,101,110,116,78,97,109,101,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,104,97,110,100,108,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,91,80,82,79,80,93,91,101,118,101,110,116,78,97,109,101,93,32,61,32,116,104,105,115,91,80,82,79,80,93,91,101,118,101,110,116,78,97,109,101,93,32,124,124,32,91,93,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,116,104,105,115,91,80,82,79,80,93,91,101,118,101,110,116,78,97,109,101,93,44,32,104,97,110,100,108,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,91,80,82,79,80,93,91,101,118,101,110,116,78,97,109,101,93,46,112,117,115,104,40,104,97,110,100,108,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,101,118,101,110,116,79,110,41,40,119,105,110,100,111,119,44,32,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,105,115,116,101,110,79,102,102,87,105,110,100,111,119,58,32,102,117,110,99,116,105,111,110,32,108,105,115,116,101,110,79,102,102,87,105,110,100,111,119,40,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,73,83,95,66,82,79,87,83,69,82,32,38,38,32,116,104,105,115,91,80,82,79,80,93,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,83,116,114,105,110,103,41,40,101,118,101,110,116,78,97,109,101,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,104,97,110,100,108,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,101,118,101,110,116,79,102,102,41,40,119,105,110,100,111,119,44,32,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,44,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,69,86,69,78,84,95,79,80,84,73,79,78,83,95,78,79,95,67,65,80,84,85,82,69,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,91,80,82,79,80,93,91,101,118,101,110,116,78,97,109,101,93,32,61,32,40,116,104,105,115,91,80,82,79,80,93,91,101,118,101,110,116,78,97,109,101,93,32,124,124,32,91,93,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,32,33,61,61,32,104,97,110,100,108,101,114,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,45,111,110,45,119,105,110,100,111,119,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,115,116,101,110,101,114,115,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,105,115,116,101,110,101,114,115,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,99,97,99,104,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,99,97,99,104,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,97,99,104,101,46,106,115,92,34,41,59,92,110,92,110,118,97,114,32,108,105,115,116,101,110,101,114,115,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,99,97,99,104,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,80,114,111,112,67,97,99,104,101,77,105,120,105,110,41,40,39,36,108,105,115,116,101,110,101,114,115,39,44,32,39,98,118,76,105,115,116,101,110,101,114,115,39,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,108,105,115,116,101,110,101,114,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,109,111,100,101,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,109,111,100,101,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,118,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,111,100,101,108,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,97,108,117,101,39,41,44,92,110,32,32,32,32,109,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,112,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,112,114,111,112,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,101,118,101,110,116,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,109,111,100,101,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,101,105,116,104,101,114,32,97,32,96,36,115,99,111,112,101,100,83,108,111,116,96,32,111,114,32,96,36,115,108,111,116,96,32,101,120,105,115,116,115,32,119,105,116,104,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,110,97,109,101,92,110,32,32,32,32,47,47,32,96,110,97,109,101,96,32,99,97,110,32,98,101,32,97,32,115,116,114,105,110,103,32,110,97,109,101,32,111,114,32,97,110,32,97,114,114,97,121,32,111,102,32,110,97,109,101,115,92,110,32,32,32,32,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,58,32,102,117,110,99,116,105,111,110,32,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,59,92,110,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,100,83,108,111,116,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,59,92,110,32,32,32,32,32,32,118,97,114,32,115,108,111,116,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,116,104,105,115,46,36,115,108,111,116,115,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,41,40,110,97,109,101,44,32,115,99,111,112,101,100,83,108,111,116,115,44,32,115,108,111,116,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,97,110,32,97,114,114,97,121,32,111,102,32,114,101,110,100,101,114,101,100,32,86,78,111,100,101,115,32,105,102,32,115,108,111,116,32,102,111,117,110,100,44,32,111,116,104,101,114,119,105,115,101,32,96,117,110,100,101,102,105,110,101,100,96,92,110,32,32,32,32,47,47,32,96,110,97,109,101,96,32,99,97,110,32,98,101,32,97,32,115,116,114,105,110,103,32,110,97,109,101,32,111,114,32,97,110,32,97,114,114,97,121,32,111,102,32,110,97,109,101,115,92,110,32,32,32,32,110,111,114,109,97,108,105,122,101,83,108,111,116,58,32,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,83,76,79,84,95,78,65,77,69,95,68,69,70,65,85,76,84,59,92,110,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,100,83,108,111,116,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,59,92,110,32,32,32,32,32,32,118,97,114,32,115,108,111,116,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,51,32,38,38,32,97,114,103,117,109,101,110,116,115,91,51,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,51,93,32,58,32,116,104,105,115,46,36,115,108,111,116,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,118,78,111,100,101,115,32,61,32,40,48,44,95,117,116,105,108,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,41,40,110,97,109,101,44,32,115,99,111,112,101,44,32,115,99,111,112,101,100,83,108,111,116,115,44,32,115,108,111,116,115,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,78,111,100,101,115,32,63,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,111,110,99,97,116,41,40,118,78,111,100,101,115,41,32,58,32,118,78,111,100,101,115,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,112,97,103,105,110,97,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,112,97,103,105,110,97,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,103,105,110,97,116,105,111,110,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,97,103,105,110,97,116,105,111,110,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,109,112,111,110,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,107,101,121,45,99,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,108,111,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,109,111,100,101,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,119,97,114,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,109,112,111,110,101,110,116,115,47,108,105,110,107,47,108,105,110,107,46,106,115,92,34,41,59,92,110,118,97,114,32,95,119,97,116,99,104,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,67,111,109,109,111,110,32,112,114,111,112,115,44,32,99,111,109,112,117,116,101,100,44,32,100,97,116,97,44,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,44,32,97,110,100,32,109,101,116,104,111,100,115,92,110,47,47,32,102,111,114,32,96,60,98,45,112,97,103,105,110,97,116,105,111,110,62,96,32,97,110,100,32,96,60,98,45,112,97,103,105,110,97,116,105,111,110,45,110,97,118,62,96,92,110,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,40,48,44,95,117,116,105,108,115,95,109,111,100,101,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,107,101,77,111,100,101,108,77,105,120,105,110,41,40,39,118,97,108,117,101,39,44,32,123,92,110,32,32,116,121,112,101,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,92,110,32,32,100,101,102,97,117,108,116,86,97,108,117,101,58,32,110,117,108,108,44,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,118,97,108,105,100,97,116,111,114,58,32,102,117,110,99,116,105,111,110,32,118,97,108,105,100,97,116,111,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,78,117,108,108,41,40,118,97,108,117,101,41,32,38,38,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,116,111,73,110,116,101,103,101,114,41,40,118,97,108,117,101,44,32,48,41,32,60,32,49,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,119,97,114,110,41,40,39,92,34,118,45,109,111,100,101,108,92,34,32,118,97,108,117,101,32,109,117,115,116,32,98,101,32,97,32,110,117,109,98,101,114,32,103,114,101,97,116,101,114,32,116,104,97,110,32,92,34,48,92,34,39,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,80,65,71,73,78,65,84,73,79,78,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,92,110,125,41,44,92,110,32,32,32,32,109,111,100,101,108,77,105,120,105,110,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,109,105,120,105,110,44,92,110,32,32,32,32,109,111,100,101,108,80,114,111,112,115,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,115,44,92,110,32,32,32,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,112,114,111,112,44,92,110,32,32,32,32,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,32,61,32,95,109,97,107,101,77,111,100,101,108,77,105,120,105,110,46,101,118,101,110,116,59,92,110,92,110,32,47,47,32,84,104,114,101,115,104,111,108,100,32,111,102,32,108,105,109,105,116,32,115,105,122,101,32,119,104,101,110,32,119,101,32,115,116,97,114,116,47,115,116,111,112,32,115,104,111,119,105,110,103,32,101,108,108,105,112,115,105,115,92,110,92,110,118,97,114,32,69,76,76,73,80,83,73,83,95,84,72,82,69,83,72,79,76,68,32,61,32,51,59,32,47,47,32,68,101,102,97,117,108,116,32,35,32,111,102,32,98,117,116,116,111,110,115,32,108,105,109,105,116,92,110,92,110,118,97,114,32,68,69,70,65,85,76,84,95,76,73,77,73,84,32,61,32,53,59,32,47,47,32,45,45,45,32,72,101,108,112,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,77,97,107,101,32,97,110,32,97,114,114,97,121,32,111,102,32,78,32,116,111,32,78,43,88,92,110,92,110,118,97,114,32,109,97,107,101,80,97,103,101,65,114,114,97,121,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,80,97,103,101,65,114,114,97,121,40,115,116,97,114,116,78,117,109,98,101,114,44,32,110,117,109,98,101,114,79,102,80,97,103,101,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,99,114,101,97,116,101,65,114,114,97,121,41,40,110,117,109,98,101,114,79,102,80,97,103,101,115,44,32,102,117,110,99,116,105,111,110,32,40,95,44,32,105,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,110,117,109,98,101,114,58,32,115,116,97,114,116,78,117,109,98,101,114,32,43,32,105,44,92,110,32,32,32,32,32,32,99,108,97,115,115,101,115,58,32,110,117,108,108,92,110,32,32,32,32,125,59,92,110,32,32,125,41,59,92,110,125,59,32,47,47,32,83,97,110,105,116,105,122,101,32,116,104,101,32,112,114,111,118,105,100,101,100,32,108,105,109,105,116,32,118,97,108,117,101,32,40,99,111,110,118,101,114,116,105,110,103,32,116,111,32,97,32,110,117,109,98,101,114,41,92,110,92,110,92,110,118,97,114,32,115,97,110,105,116,105,122,101,76,105,109,105,116,32,61,32,102,117,110,99,116,105,111,110,32,115,97,110,105,116,105,122,101,76,105,109,105,116,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,108,105,109,105,116,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,116,111,73,110,116,101,103,101,114,41,40,118,97,108,117,101,41,32,124,124,32,49,59,92,110,32,32,114,101,116,117,114,110,32,108,105,109,105,116,32,60,32,49,32,63,32,68,69,70,65,85,76,84,95,76,73,77,73,84,32,58,32,108,105,109,105,116,59,92,110,125,59,32,47,47,32,83,97,110,105,116,105,122,101,32,116,104,101,32,112,114,111,118,105,100,101,100,32,99,117,114,114,101,110,116,32,112,97,103,101,32,110,117,109,98,101,114,32,40,99,111,110,118,101,114,116,105,110,103,32,116,111,32,97,32,110,117,109,98,101,114,41,92,110,92,110,92,110,118,97,114,32,115,97,110,105,116,105,122,101,67,117,114,114,101,110,116,80,97,103,101,32,61,32,102,117,110,99,116,105,111,110,32,115,97,110,105,116,105,122,101,67,117,114,114,101,110,116,80,97,103,101,40,118,97,108,44,32,110,117,109,98,101,114,79,102,80,97,103,101,115,41,32,123,92,110,32,32,118,97,114,32,112,97,103,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,116,111,73,110,116,101,103,101,114,41,40,118,97,108,41,32,124,124,32,49,59,92,110,32,32,114,101,116,117,114,110,32,112,97,103,101,32,62,32,110,117,109,98,101,114,79,102,80,97,103,101,115,32,63,32,110,117,109,98,101,114,79,102,80,97,103,101,115,32,58,32,112,97,103,101,32,60,32,49,32,63,32,49,32,58,32,112,97,103,101,59,92,110,125,59,32,47,47,32,76,105,110,107,115,32,100,111,110,39,116,32,110,111,114,109,97,108,108,121,32,114,101,115,112,111,110,100,32,116,111,32,83,80,65,67,69,44,32,115,111,32,119,101,32,97,100,100,32,116,104,97,116,92,110,47,47,32,102,117,110,99,116,105,111,110,97,108,105,116,121,32,118,105,97,32,116,104,105,115,32,104,97,110,100,108,101,114,92,110,92,110,92,110,118,97,114,32,111,110,83,112,97,99,101,75,101,121,32,61,32,102,117,110,99,116,105,111,110,32,111,110,83,112,97,99,101,75,101,121,40,101,118,101,110,116,41,32,123,92,110,32,32,105,102,32,40,101,118,101,110,116,46,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,67,79,68,69,95,83,80,65,67,69,41,32,123,92,110,32,32,32,32,47,47,32,83,116,111,112,32,112,97,103,101,32,102,114,111,109,32,115,99,114,111,108,108,105,110,103,92,110,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,58,32,116,114,117,101,92,110,32,32,32,32,125,41,59,32,47,47,32,84,114,105,103,103,101,114,32,116,104,101,32,99,108,105,99,107,32,101,118,101,110,116,32,111,110,32,116,104,101,32,108,105,110,107,92,110,92,110,32,32,32,32,101,118,101,110,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,46,99,108,105,99,107,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,125,59,32,47,47,32,45,45,45,32,80,114,111,112,115,32,45,45,45,92,110,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,41,40,40,48,44,95,117,116,105,108,115,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,115,111,114,116,75,101,121,115,41,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,109,111,100,101,108,80,114,111,112,115,41,44,32,123,125,44,32,123,92,110,32,32,97,108,105,103,110,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,108,101,102,116,39,41,44,92,110,32,32,97,114,105,97,76,97,98,101,108,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,80,97,103,105,110,97,116,105,111,110,39,41,44,92,110,32,32,100,105,115,97,98,108,101,100,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,101,108,108,105,112,115,105,115,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,101,108,108,105,112,115,105,115,84,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,92,34,92,92,117,50,48,50,54,92,34,41,44,92,110,32,32,47,47,32,39,226,128,166,39,92,110,32,32,102,105,114,115,116,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,102,105,114,115,116,78,117,109,98,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,102,105,114,115,116,84,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,92,34,92,92,120,65,66,92,34,41,44,92,110,32,32,47,47,32,39,194,171,39,92,110,32,32,104,105,100,101,69,108,108,105,112,115,105,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,104,105,100,101,71,111,116,111,69,110,100,66,117,116,116,111,110,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,108,97,98,101,108,70,105,114,115,116,80,97,103,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,71,111,32,116,111,32,102,105,114,115,116,32,112,97,103,101,39,41,44,92,110,32,32,108,97,98,101,108,76,97,115,116,80,97,103,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,71,111,32,116,111,32,108,97,115,116,32,112,97,103,101,39,41,44,92,110,32,32,108,97,98,101,108,78,101,120,116,80,97,103,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,71,111,32,116,111,32,110,101,120,116,32,112,97,103,101,39,41,44,92,110,32,32,108,97,98,101,108,80,97,103,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,70,85,78,67,84,73,79,78,95,83,84,82,73,78,71,44,32,39,71,111,32,116,111,32,112,97,103,101,39,41,44,92,110,32,32,108,97,98,101,108,80,114,101,118,80,97,103,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,39,71,111,32,116,111,32,112,114,101,118,105,111,117,115,32,112,97,103,101,39,41,44,92,110,32,32,108,97,115,116,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,108,97,115,116,78,117,109,98,101,114,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,108,97,115,116,84,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,92,34,92,92,120,66,66,92,34,41,44,92,110,32,32,47,47,32,39,194,187,39,92,110,32,32,108,105,109,105,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,78,85,77,66,69,82,95,83,84,82,73,78,71,44,32,68,69,70,65,85,76,84,95,76,73,77,73,84,44,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,116,111,73,110,116,101,103,101,114,41,40,118,97,108,117,101,44,32,48,41,32,60,32,49,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,119,97,114,110,41,40,39,80,114,111,112,32,92,34,108,105,109,105,116,92,34,32,109,117,115,116,32,98,101,32,97,32,110,117,109,98,101,114,32,103,114,101,97,116,101,114,32,116,104,97,110,32,92,34,48,92,34,39,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,109,112,111,110,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,78,65,77,69,95,80,65,71,73,78,65,84,73,79,78,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,41,44,92,110,32,32,110,101,120,116,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,110,101,120,116,84,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,92,34,92,92,117,50,48,51,65,92,34,41,44,92,110,32,32,47,47,32,39,226,128,186,39,92,110,32,32,112,97,103,101,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,112,105,108,108,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,66,79,79,76,69,65,78,44,32,102,97,108,115,101,41,44,92,110,32,32,112,114,101,118,67,108,97,115,115,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,82,82,65,89,95,79,66,74,69,67,84,95,83,84,82,73,78,71,41,44,92,110,32,32,112,114,101,118,84,101,120,116,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,44,32,92,34,92,92,117,50,48,51,57,92,34,41,44,92,110,32,32,47,47,32,39,226,128,185,39,92,110,32,32,115,105,122,101,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,109,97,107,101,80,114,111,112,41,40,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,83,84,82,73,78,71,41,92,110,125,41,41,44,32,39,112,97,103,105,110,97,116,105,111,110,39,41,59,32,47,47,32,45,45,45,32,77,105,120,105,110,32,45,45,45,92,110,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,112,97,103,105,110,97,116,105,111,110,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,109,105,120,105,110,115,58,32,91,109,111,100,101,108,77,105,120,105,110,44,32,95,109,105,120,105,110,115,95,110,111,114,109,97,108,105,122,101,95,115,108,111,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,110,111,114,109,97,108,105,122,101,83,108,111,116,77,105,120,105,110,93,44,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,47,47,32,96,45,49,96,32,115,105,103,110,105,102,105,101,115,32,110,111,32,112,97,103,101,32,105,110,105,116,105,97,108,108,121,32,115,101,108,101,99,116,101,100,92,110,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,80,97,103,101,32,61,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,116,111,73,110,116,101,103,101,114,41,40,116,104,105,115,91,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,93,44,32,48,41,59,92,110,32,32,32,32,99,117,114,114,101,110,116,80,97,103,101,32,61,32,99,117,114,114,101,110,116,80,97,103,101,32,62,32,48,32,63,32,99,117,114,114,101,110,116,80,97,103,101,32,58,32,45,49,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,99,117,114,114,101,110,116,80,97,103,101,58,32,99,117,114,114,101,110,116,80,97,103,101,44,92,110,32,32,32,32,32,32,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,58,32,49,44,92,110,32,32,32,32,32,32,108,111,99,97,108,76,105,109,105,116,58,32,68,69,70,65,85,76,84,95,76,73,77,73,84,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,98,116,110,83,105,122,101,58,32,102,117,110,99,116,105,111,110,32,98,116,110,83,105,122,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,116,104,105,115,46,115,105,122,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,105,122,101,32,63,32,92,34,112,97,103,105,110,97,116,105,111,110,45,92,34,46,99,111,110,99,97,116,40,115,105,122,101,41,32,58,32,39,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,108,105,103,110,109,101,110,116,58,32,102,117,110,99,116,105,111,110,32,97,108,105,103,110,109,101,110,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,108,105,103,110,32,61,32,116,104,105,115,46,97,108,105,103,110,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,97,108,105,103,110,32,61,61,61,32,39,99,101,110,116,101,114,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,39,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,97,108,105,103,110,32,61,61,61,32,39,101,110,100,39,32,124,124,32,97,108,105,103,110,32,61,61,61,32,39,114,105,103,104,116,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,101,110,100,39,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,97,108,105,103,110,32,61,61,61,32,39,102,105,108,108,39,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,112,97,103,101,45,105,116,101,109,115,32,119,105,108,108,32,97,108,115,111,32,104,97,118,101,32,39,102,108,101,120,45,102,105,108,108,39,32,97,100,100,101,100,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,97,100,100,32,116,101,120,116,32,99,101,110,116,101,114,105,110,103,32,116,111,32,109,97,107,101,32,116,104,101,32,98,117,116,116,111,110,32,97,112,112,101,97,114,97,110,99,101,32,98,101,116,116,101,114,32,105,110,32,102,105,108,108,32,109,111,100,101,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,116,101,120,116,45,99,101,110,116,101,114,39,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,116,121,108,101,67,108,97,115,115,58,32,102,117,110,99,116,105,111,110,32,115,116,121,108,101,67,108,97,115,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,112,105,108,108,115,32,63,32,39,98,45,112,97,103,105,110,97,116,105,111,110,45,112,105,108,108,115,39,32,58,32,39,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,67,117,114,114,101,110,116,80,97,103,101,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,67,117,114,114,101,110,116,80,97,103,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,97,110,105,116,105,122,101,67,117,114,114,101,110,116,80,97,103,101,40,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,44,32,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,97,103,105,110,97,116,105,111,110,80,97,114,97,109,115,58,32,102,117,110,99,116,105,111,110,32,112,97,103,105,110,97,116,105,111,110,80,97,114,97,109,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,101,116,101,114,109,105,110,101,32,105,102,32,119,101,32,115,104,111,117,108,100,32,115,104,111,119,32,116,104,101,32,116,104,101,32,101,108,108,105,112,115,105,115,92,110,32,32,32,32,32,32,118,97,114,32,108,105,109,105,116,32,61,32,116,104,105,115,46,108,111,99,97,108,76,105,109,105,116,44,92,110,32,32,32,32,32,32,32,32,32,32,110,117,109,98,101,114,79,102,80,97,103,101,115,32,61,32,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,80,97,103,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,67,117,114,114,101,110,116,80,97,103,101,44,92,110,32,32,32,32,32,32,32,32,32,32,104,105,100,101,69,108,108,105,112,115,105,115,32,61,32,116,104,105,115,46,104,105,100,101,69,108,108,105,112,115,105,115,44,92,110,32,32,32,32,32,32,32,32,32,32,102,105,114,115,116,78,117,109,98,101,114,32,61,32,116,104,105,115,46,102,105,114,115,116,78,117,109,98,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,115,116,78,117,109,98,101,114,32,61,32,116,104,105,115,46,108,97,115,116,78,117,109,98,101,114,59,92,110,32,32,32,32,32,32,118,97,114,32,115,104,111,119,70,105,114,115,116,68,111,116,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,118,97,114,32,115,104,111,119,76,97,115,116,68,111,116,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,118,97,114,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,61,32,108,105,109,105,116,59,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,114,116,78,117,109,98,101,114,32,61,32,49,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,110,117,109,98,101,114,79,102,80,97,103,101,115,32,60,61,32,108,105,109,105,116,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,112,101,99,105,97,108,32,99,97,115,101,58,32,76,101,115,115,32,112,97,103,101,115,32,97,118,97,105,108,97,98,108,101,32,116,104,97,110,32,116,104,101,32,108,105,109,105,116,32,111,102,32,100,105,115,112,108,97,121,101,100,32,112,97,103,101,115,92,110,32,32,32,32,32,32,32,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,61,32,110,117,109,98,101,114,79,102,80,97,103,101,115,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,99,117,114,114,101,110,116,80,97,103,101,32,60,32,108,105,109,105,116,32,45,32,49,32,38,38,32,108,105,109,105,116,32,62,32,69,76,76,73,80,83,73,83,95,84,72,82,69,83,72,79,76,68,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,104,105,100,101,69,108,108,105,112,115,105,115,32,124,124,32,108,97,115,116,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,104,111,119,76,97,115,116,68,111,116,115,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,61,32,108,105,109,105,116,32,45,32,40,102,105,114,115,116,78,117,109,98,101,114,32,63,32,48,32,58,32,49,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,109,97,116,104,77,105,110,41,40,110,117,109,98,101,114,79,102,76,105,110,107,115,44,32,108,105,109,105,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,117,109,98,101,114,79,102,80,97,103,101,115,32,45,32,99,117,114,114,101,110,116,80,97,103,101,32,43,32,50,32,60,32,108,105,109,105,116,32,38,38,32,108,105,109,105,116,32,62,32,69,76,76,73,80,83,73,83,95,84,72,82,69,83,72,79,76,68,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,104,105,100,101,69,108,108,105,112,115,105,115,32,124,124,32,102,105,114,115,116,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,104,111,119,70,105,114,115,116,68,111,116,115,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,61,32,108,105,109,105,116,32,45,32,40,108,97,115,116,78,117,109,98,101,114,32,63,32,48,32,58,32,49,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,78,117,109,98,101,114,32,61,32,110,117,109,98,101,114,79,102,80,97,103,101,115,32,45,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,43,32,49,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,97,114,101,32,115,111,109,101,119,104,101,114,101,32,105,110,32,116,104,101,32,109,105,100,100,108,101,32,111,102,32,116,104,101,32,112,97,103,101,32,108,105,115,116,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,105,109,105,116,32,62,32,69,76,76,73,80,83,73,83,95,84,72,82,69,83,72,79,76,68,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,61,32,108,105,109,105,116,32,45,32,40,104,105,100,101,69,108,108,105,112,115,105,115,32,63,32,48,32,58,32,50,41,59,92,110,32,32,32,32,32,32,32,32,32,32,115,104,111,119,70,105,114,115,116,68,111,116,115,32,61,32,33,33,40,33,104,105,100,101,69,108,108,105,112,115,105,115,32,124,124,32,102,105,114,115,116,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,115,104,111,119,76,97,115,116,68,111,116,115,32,61,32,33,33,40,33,104,105,100,101,69,108,108,105,112,115,105,115,32,124,124,32,108,97,115,116,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,78,117,109,98,101,114,32,61,32,99,117,114,114,101,110,116,80,97,103,101,32,45,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,109,97,116,104,70,108,111,111,114,41,40,110,117,109,98,101,114,79,102,76,105,110,107,115,32,47,32,50,41,59,92,110,32,32,32,32,32,32,125,32,47,47,32,83,97,110,105,116,121,32,99,104,101,99,107,115,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,114,116,78,117,109,98,101,114,32,60,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,78,117,109,98,101,114,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,115,104,111,119,70,105,114,115,116,68,111,116,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,116,97,114,116,78,117,109,98,101,114,32,62,32,110,117,109,98,101,114,79,102,80,97,103,101,115,32,45,32,110,117,109,98,101,114,79,102,76,105,110,107,115,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,78,117,109,98,101,114,32,61,32,110,117,109,98,101,114,79,102,80,97,103,101,115,32,45,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,43,32,49,59,92,110,32,32,32,32,32,32,32,32,115,104,111,119,76,97,115,116,68,111,116,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,104,111,119,70,105,114,115,116,68,111,116,115,32,38,38,32,102,105,114,115,116,78,117,109,98,101,114,32,38,38,32,115,116,97,114,116,78,117,109,98,101,114,32,60,32,52,41,32,123,92,110,32,32,32,32,32,32,32,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,61,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,43,32,50,59,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,78,117,109,98,101,114,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,115,104,111,119,70,105,114,115,116,68,111,116,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,108,97,115,116,80,97,103,101,78,117,109,98,101,114,32,61,32,115,116,97,114,116,78,117,109,98,101,114,32,43,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,45,32,49,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,104,111,119,76,97,115,116,68,111,116,115,32,38,38,32,108,97,115,116,78,117,109,98,101,114,32,38,38,32,108,97,115,116,80,97,103,101,78,117,109,98,101,114,32,62,32,110,117,109,98,101,114,79,102,80,97,103,101,115,32,45,32,51,41,32,123,92,110,32,32,32,32,32,32,32,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,61,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,43,32,40,108,97,115,116,80,97,103,101,78,117,109,98,101,114,32,61,61,61,32,110,117,109,98,101,114,79,102,80,97,103,101,115,32,45,32,50,32,63,32,50,32,58,32,51,41,59,92,110,32,32,32,32,32,32,32,32,115,104,111,119,76,97,115,116,68,111,116,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,32,47,47,32,83,112,101,99,105,97,108,32,104,97,110,100,108,105,110,103,32,102,111,114,32,108,111,119,101,114,32,108,105,109,105,116,115,32,40,119,104,101,114,101,32,101,108,108,105,112,115,105,115,32,97,114,101,32,110,101,118,101,114,32,115,104,111,119,110,41,92,110,92,110,92,110,32,32,32,32,32,32,105,102,32,40,108,105,109,105,116,32,60,61,32,69,76,76,73,80,83,73,83,95,84,72,82,69,83,72,79,76,68,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,105,114,115,116,78,117,109,98,101,114,32,38,38,32,115,116,97,114,116,78,117,109,98,101,114,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,109,97,116,104,77,105,110,41,40,110,117,109,98,101,114,79,102,76,105,110,107,115,32,43,32,49,44,32,110,117,109,98,101,114,79,102,80,97,103,101,115,44,32,108,105,109,105,116,32,43,32,49,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,108,97,115,116,78,117,109,98,101,114,32,38,38,32,110,117,109,98,101,114,79,102,80,97,103,101,115,32,61,61,61,32,115,116,97,114,116,78,117,109,98,101,114,32,43,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,78,117,109,98,101,114,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,109,97,116,104,77,97,120,41,40,115,116,97,114,116,78,117,109,98,101,114,32,45,32,49,44,32,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,109,97,116,104,77,105,110,41,40,110,117,109,98,101,114,79,102,80,97,103,101,115,32,45,32,115,116,97,114,116,78,117,109,98,101,114,32,43,32,49,44,32,110,117,109,98,101,114,79,102,80,97,103,101,115,44,32,108,105,109,105,116,32,43,32,49,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,61,32,40,48,44,95,117,116,105,108,115,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,109,97,116,104,77,105,110,41,40,110,117,109,98,101,114,79,102,76,105,110,107,115,44,32,110,117,109,98,101,114,79,102,80,97,103,101,115,32,45,32,115,116,97,114,116,78,117,109,98,101,114,32,43,32,49,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,115,104,111,119,70,105,114,115,116,68,111,116,115,58,32,115,104,111,119,70,105,114,115,116,68,111,116,115,44,92,110,32,32,32,32,32,32,32,32,115,104,111,119,76,97,115,116,68,111,116,115,58,32,115,104,111,119,76,97,115,116,68,111,116,115,44,92,110,32,32,32,32,32,32,32,32,110,117,109,98,101,114,79,102,76,105,110,107,115,58,32,110,117,109,98,101,114,79,102,76,105,110,107,115,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,78,117,109,98,101,114,58,32,115,116,97,114,116,78,117,109,98,101,114,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,97,103,101,76,105,115,116,58,32,102,117,110,99,116,105,111,110,32,112,97,103,101,76,105,115,116,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,71,101,110,101,114,97,116,101,115,32,116,104,101,32,112,97,103,101,76,105,115,116,32,97,114,114,97,121,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,36,112,97,103,105,110,97,116,105,111,110,80,97,114,97,109,32,61,32,116,104,105,115,46,112,97,103,105,110,97,116,105,111,110,80,97,114,97,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,110,117,109,98,101,114,79,102,76,105,110,107,115,32,61,32,95,116,104,105,115,36,112,97,103,105,110,97,116,105,111,110,80,97,114,97,109,46,110,117,109,98,101,114,79,102,76,105,110,107,115,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,78,117,109,98,101,114,32,61,32,95,116,104,105,115,36,112,97,103,105,110,97,116,105,111,110,80,97,114,97,109,46,115,116,97,114,116,78,117,109,98,101,114,59,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,80,97,103,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,67,117,114,114,101,110,116,80,97,103,101,59,32,47,47,32,71,101,110,101,114,97,116,101,32,108,105,115,116,32,111,102,32,112,97,103,101,32,110,117,109,98,101,114,115,92,110,92,110,32,32,32,32,32,32,118,97,114,32,112,97,103,101,115,32,61,32,109,97,107,101,80,97,103,101,65,114,114,97,121,40,115,116,97,114,116,78,117,109,98,101,114,44,32,110,117,109,98,101,114,79,102,76,105,110,107,115,41,59,32,47,47,32,87,101,32,108,105,109,105,116,32,116,111,32,97,32,116,111,116,97,108,32,111,102,32,51,32,112,97,103,101,32,98,117,116,116,111,110,115,32,111,110,32,88,83,32,115,99,114,101,101,110,115,92,110,32,32,32,32,32,32,47,47,32,83,111,32,97,100,100,32,99,108,97,115,115,101,115,32,116,111,32,112,97,103,101,32,108,105,110,107,115,32,116,111,32,104,105,100,101,32,116,104,101,109,32,102,111,114,32,88,83,32,98,114,101,97,107,112,111,105,110,116,92,110,32,32,32,32,32,32,47,47,32,78,111,116,101,58,32,69,108,108,105,112,115,105,115,32,119,105,108,108,32,97,108,115,111,32,98,101,32,104,105,100,100,101,110,32,111,110,32,88,83,32,115,99,114,101,101,110,115,92,110,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,77,97,107,101,32,116,104,105,115,32,118,105,115,117,97,108,32,108,105,109,105,116,32,99,111,110,102,105,103,117,114,97,98,108,101,32,98,97,115,101,100,32,111,110,32,98,114,101,97,107,112,111,105,110,116,40,115,41,92,110,92,110,32,32,32,32,32,32,105,102,32,40,112,97,103,101,115,46,108,101,110,103,116,104,32,62,32,51,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,100,120,32,61,32,99,117,114,114,101,110,116,80,97,103,101,32,45,32,115,116,97,114,116,78,117,109,98,101,114,59,32,47,47,32,84,72,101,32,102,111,108,108,111,119,105,110,103,32,105,115,32,97,32,98,111,111,116,115,116,114,97,112,45,118,117,101,32,99,117,115,116,111,109,32,117,116,105,108,105,116,121,32,99,108,97,115,115,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,108,97,115,115,101,115,32,61,32,39,98,118,45,100,45,120,115,45,100,111,119,110,45,110,111,110,101,39,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,100,120,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,75,101,101,112,32,108,101,102,116,109,111,115,116,32,51,32,98,117,116,116,111,110,115,32,118,105,115,105,98,108,101,32,119,104,101,110,32,99,117,114,114,101,110,116,32,112,97,103,101,32,105,115,32,102,105,114,115,116,32,112,97,103,101,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,51,59,32,105,32,60,32,112,97,103,101,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,103,101,115,91,105,93,46,99,108,97,115,115,101,115,32,61,32,99,108,97,115,115,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,100,120,32,61,61,61,32,112,97,103,101,115,46,108,101,110,103,116,104,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,75,101,101,112,32,114,105,103,104,116,109,111,115,116,32,51,32,98,117,116,116,111,110,115,32,118,105,115,105,98,108,101,32,119,104,101,110,32,99,117,114,114,101,110,116,32,112,97,103,101,32,105,115,32,108,97,115,116,32,112,97,103,101,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,95,105,32,61,32,48,59,32,95,105,32,60,32,112,97,103,101,115,46,108,101,110,103,116,104,32,45,32,51,59,32,95,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,103,101,115,91,95,105,93,46,99,108,97,115,115,101,115,32,61,32,99,108,97,115,115,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,72,105,100,101,32,97,108,108,32,101,120,99,101,112,116,32,99,117,114,114,101,110,116,32,112,97,103,101,44,32,99,117,114,114,101,110,116,32,112,97,103,101,32,45,32,49,32,97,110,100,32,99,117,114,114,101,110,116,32,112,97,103,101,32,43,32,49,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,95,105,50,32,61,32,48,59,32,95,105,50,32,60,32,105,100,120,32,45,32,49,59,32,95,105,50,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,104,105,100,101,32,115,111,109,101,32,108,101,102,116,32,98,117,116,116,111,110,40,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,103,101,115,91,95,105,50,93,46,99,108,97,115,115,101,115,32,61,32,99,108,97,115,115,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,95,105,51,32,61,32,112,97,103,101,115,46,108,101,110,103,116,104,32,45,32,49,59,32,95,105,51,32,62,32,105,100,120,32,43,32,49,59,32,95,105,51,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,104,105,100,101,32,115,111,109,101,32,114,105,103,104,116,32,98,117,116,116,111,110,40,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,103,101,115,91,95,105,51,93,46,99,108,97,115,115,101,115,32,61,32,99,108,97,115,115,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,103,101,115,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,40,95,119,97,116,99,104,32,61,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,77,79,68,69,76,95,80,82,79,80,95,78,65,77,69,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,32,61,32,115,97,110,105,116,105,122,101,67,117,114,114,101,110,116,80,97,103,101,40,110,101,119,86,97,108,117,101,44,32,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,99,117,114,114,101,110,116,80,97,103,101,92,34,44,32,102,117,110,99,116,105,111,110,32,99,117,114,114,101,110,116,80,97,103,101,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,69,109,105,116,32,96,110,117,108,108,96,32,105,102,32,110,111,32,112,97,103,101,32,115,101,108,101,99,116,101,100,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,77,79,68,69,76,95,69,86,69,78,84,95,78,65,77,69,44,32,110,101,119,86,97,108,117,101,32,62,32,48,32,63,32,110,101,119,86,97,108,117,101,32,58,32,110,117,108,108,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,119,97,116,99,104,44,32,92,34,108,105,109,105,116,92,34,44,32,102,117,110,99,116,105,111,110,32,108,105,109,105,116,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,33,61,61,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,99,97,108,76,105,109,105,116,32,61,32,115,97,110,105,116,105,122,101,76,105,109,105,116,40,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,32,95,119,97,116,99,104,41,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,47,47,32,83,101,116,32,111,117,114,32,100,101,102,97,117,108,116,32,118,97,108,117,101,115,32,105,110,32,100,97,116,97,92,110,32,32,32,32,116,104,105,115,46,108,111,99,97,108,76,105,109,105,116,32,61,32,115,97,110,105,116,105,122,101,76,105,109,105,116,40,116,104,105,115,46,108,105,109,105,116,41,59,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,97,110,105,116,121,32,99,104,101,99,107,92,110,32,32,32,32,32,32,95,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,32,61,32,95,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,32,62,32,95,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,32,63,32,95,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,32,58,32,95,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,104,97,110,100,108,101,75,101,121,78,97,118,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,75,101,121,78,97,118,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,67,111,100,101,32,61,32,101,118,101,110,116,46,107,101,121,67,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,115,104,105,102,116,75,101,121,32,61,32,101,118,101,110,116,46,115,104,105,102,116,75,101,121,59,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,78,97,118,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,100,105,115,97,98,108,101,32,108,101,102,116,47,114,105,103,104,116,32,107,101,121,98,111,97,114,100,32,110,97,118,105,103,97,116,105,111,110,32,105,110,32,96,60,98,45,112,97,103,105,110,97,116,105,111,110,45,110,97,118,62,96,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,67,79,68,69,95,76,69,70,84,32,124,124,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,67,79,68,69,95,85,80,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,115,104,105,102,116,75,101,121,32,63,32,116,104,105,115,46,102,111,99,117,115,70,105,114,115,116,40,41,32,58,32,116,104,105,115,46,102,111,99,117,115,80,114,101,118,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,67,79,68,69,95,82,73,71,72,84,32,124,124,32,107,101,121,67,111,100,101,32,61,61,61,32,95,99,111,110,115,116,97,110,116,115,95,107,101,121,95,99,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,67,79,68,69,95,68,79,87,78,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,115,116,111,112,69,118,101,110,116,41,40,101,118,101,110,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,115,104,105,102,116,75,101,121,32,63,32,116,104,105,115,46,102,111,99,117,115,76,97,115,116,40,41,32,58,32,116,104,105,115,46,102,111,99,117,115,78,101,120,116,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,66,117,116,116,111,110,115,58,32,102,117,110,99,116,105,111,110,32,103,101,116,66,117,116,116,111,110,115,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,32,111,110,108,121,32,98,117,116,116,111,110,115,32,116,104,97,116,32,97,114,101,32,118,105,115,105,98,108,101,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,115,101,108,101,99,116,65,108,108,41,40,39,98,117,116,116,111,110,46,112,97,103,101,45,108,105,110,107,44,32,97,46,112,97,103,101,45,108,105,110,107,39,44,32,116,104,105,115,46,36,101,108,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,98,116,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,105,115,86,105,115,105,98,108,101,41,40,98,116,110,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,99,117,115,67,117,114,114,101,110,116,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,67,117,114,114,101,110,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,111,32,116,104,105,115,32,105,110,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,101,110,115,117,114,101,32,98,117,116,116,111,110,115,32,104,97,118,101,32,102,105,110,105,115,104,101,100,32,114,101,110,100,101,114,105,110,103,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,98,116,110,32,61,32,95,116,104,105,115,50,46,103,101,116,66,117,116,116,111,110,115,40,41,46,102,105,110,100,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,115,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,116,111,73,110,116,101,103,101,114,41,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,103,101,116,65,116,116,114,41,40,101,108,44,32,39,97,114,105,97,45,112,111,115,105,110,115,101,116,39,41,44,32,48,41,32,61,61,61,32,95,116,104,105,115,50,46,99,111,109,112,117,116,101,100,67,117,114,114,101,110,116,80,97,103,101,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,98,116,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,70,97,108,108,98,97,99,107,32,105,102,32,99,117,114,114,101,110,116,32,112,97,103,101,32,105,115,32,110,111,116,32,105,110,32,98,117,116,116,111,110,32,108,105,115,116,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,102,111,99,117,115,70,105,114,115,116,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,99,117,115,70,105,114,115,116,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,70,105,114,115,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,111,32,116,104,105,115,32,105,110,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,101,110,115,117,114,101,32,98,117,116,116,111,110,115,32,104,97,118,101,32,102,105,110,105,115,104,101,100,32,114,101,110,100,101,114,105,110,103,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,98,116,110,32,61,32,95,116,104,105,115,51,46,103,101,116,66,117,116,116,111,110,115,40,41,46,102,105,110,100,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,105,115,68,105,115,97,98,108,101,100,41,40,101,108,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,98,116,110,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,99,117,115,76,97,115,116,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,76,97,115,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,111,32,116,104,105,115,32,105,110,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,101,110,115,117,114,101,32,98,117,116,116,111,110,115,32,104,97,118,101,32,102,105,110,105,115,104,101,100,32,114,101,110,100,101,114,105,110,103,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,98,116,110,32,61,32,95,116,104,105,115,52,46,103,101,116,66,117,116,116,111,110,115,40,41,46,114,101,118,101,114,115,101,40,41,46,102,105,110,100,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,105,115,68,105,115,97,98,108,101,100,41,40,101,108,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,98,116,110,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,99,117,115,80,114,101,118,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,80,114,101,118,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,53,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,111,32,116,104,105,115,32,105,110,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,101,110,115,117,114,101,32,98,117,116,116,111,110,115,32,104,97,118,101,32,102,105,110,105,115,104,101,100,32,114,101,110,100,101,114,105,110,103,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,98,117,116,116,111,110,115,32,61,32,95,116,104,105,115,53,46,103,101,116,66,117,116,116,111,110,115,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,98,117,116,116,111,110,115,46,105,110,100,101,120,79,102,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,41,40,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,62,32,48,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,105,115,68,105,115,97,98,108,101,100,41,40,98,117,116,116,111,110,115,91,105,110,100,101,120,32,45,32,49,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,98,117,116,116,111,110,115,91,105,110,100,101,120,32,45,32,49,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,99,117,115,78,101,120,116,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,78,101,120,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,54,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,111,32,116,104,105,115,32,105,110,32,96,36,110,101,120,116,84,105,99,107,40,41,96,32,116,111,32,101,110,115,117,114,101,32,98,117,116,116,111,110,115,32,104,97,118,101,32,102,105,110,105,115,104,101,100,32,114,101,110,100,101,114,105,110,103,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,98,117,116,116,111,110,115,32,61,32,95,116,104,105,115,54,46,103,101,116,66,117,116,116,111,110,115,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,98,117,116,116,111,110,115,46,105,110,100,101,120,79,102,40,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,41,40,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,60,32,98,117,116,116,111,110,115,46,108,101,110,103,116,104,32,45,32,49,32,38,38,32,33,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,105,115,68,105,115,97,98,108,101,100,41,40,98,117,116,116,111,110,115,91,105,110,100,101,120,32,43,32,49,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,115,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,97,116,116,101,109,112,116,70,111,99,117,115,41,40,98,117,116,116,111,110,115,91,105,110,100,101,120,32,43,32,49,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,55,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,100,105,115,97,98,108,101,100,32,61,32,116,104,105,115,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,108,97,98,101,108,80,97,103,101,32,61,32,116,104,105,115,46,108,97,98,101,108,80,97,103,101,44,92,110,32,32,32,32,32,32,32,32,97,114,105,97,76,97,98,101,108,32,61,32,116,104,105,115,46,97,114,105,97,76,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,105,115,78,97,118,32,61,32,116,104,105,115,46,105,115,78,97,118,44,92,110,32,32,32,32,32,32,32,32,110,117,109,98,101,114,79,102,80,97,103,101,115,32,61,32,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,44,92,110,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,80,97,103,101,32,61,32,116,104,105,115,46,99,111,109,112,117,116,101,100,67,117,114,114,101,110,116,80,97,103,101,59,92,110,32,32,32,32,118,97,114,32,112,97,103,101,78,117,109,98,101,114,115,32,61,32,116,104,105,115,46,112,97,103,101,76,105,115,116,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,112,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,46,110,117,109,98,101,114,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,36,112,97,103,105,110,97,116,105,111,110,80,97,114,97,109,50,32,61,32,116,104,105,115,46,112,97,103,105,110,97,116,105,111,110,80,97,114,97,109,115,44,92,110,32,32,32,32,32,32,32,32,115,104,111,119,70,105,114,115,116,68,111,116,115,32,61,32,95,116,104,105,115,36,112,97,103,105,110,97,116,105,111,110,80,97,114,97,109,50,46,115,104,111,119,70,105,114,115,116,68,111,116,115,44,92,110,32,32,32,32,32,32,32,32,115,104,111,119,76,97,115,116,68,111,116,115,32,61,32,95,116,104,105,115,36,112,97,103,105,110,97,116,105,111,110,80,97,114,97,109,50,46,115,104,111,119,76,97,115,116,68,111,116,115,59,92,110,32,32,32,32,118,97,114,32,102,105,108,108,32,61,32,116,104,105,115,46,97,108,105,103,110,32,61,61,61,32,39,102,105,108,108,39,59,92,110,32,32,32,32,118,97,114,32,36,98,117,116,116,111,110,115,32,61,32,91,93,59,32,47,47,32,72,101,108,112,101,114,32,102,117,110,99,116,105,111,110,32,97,110,100,32,102,108,97,103,92,110,92,110,32,32,32,32,118,97,114,32,105,115,65,99,116,105,118,101,80,97,103,101,32,61,32,102,117,110,99,116,105,111,110,32,105,115,65,99,116,105,118,101,80,97,103,101,40,112,97,103,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,103,101,78,117,109,98,101,114,32,61,61,61,32,99,117,114,114,101,110,116,80,97,103,101,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,118,97,114,32,110,111,67,117,114,114,101,110,116,80,97,103,101,32,61,32,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,32,60,32,49,59,32,47,47,32,70,97,99,116,111,114,121,32,102,117,110,99,116,105,111,110,32,102,111,114,32,112,114,101,118,47,110,101,120,116,47,102,105,114,115,116,47,108,97,115,116,32,98,117,116,116,111,110,115,92,110,92,110,32,32,32,32,118,97,114,32,109,97,107,101,69,110,100,66,116,110,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,69,110,100,66,116,110,40,108,105,110,107,84,111,44,32,97,114,105,97,76,97,98,101,108,44,32,98,116,110,83,108,111,116,44,32,98,116,110,84,101,120,116,44,32,98,116,110,67,108,97,115,115,44,32,112,97,103,101,84,101,115,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,68,105,115,97,98,108,101,100,32,61,32,100,105,115,97,98,108,101,100,32,124,124,32,105,115,65,99,116,105,118,101,80,97,103,101,40,112,97,103,101,84,101,115,116,41,32,124,124,32,110,111,67,117,114,114,101,110,116,80,97,103,101,32,124,124,32,108,105,110,107,84,111,32,60,32,49,32,124,124,32,108,105,110,107,84,111,32,62,32,110,117,109,98,101,114,79,102,80,97,103,101,115,59,92,110,32,32,32,32,32,32,118,97,114,32,112,97,103,101,78,117,109,98,101,114,32,61,32,108,105,110,107,84,111,32,60,32,49,32,63,32,49,32,58,32,108,105,110,107,84,111,32,62,32,110,117,109,98,101,114,79,102,80,97,103,101,115,32,63,32,110,117,109,98,101,114,79,102,80,97,103,101,115,32,58,32,108,105,110,107,84,111,59,92,110,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,32,61,32,123,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,105,115,68,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,112,97,103,101,58,32,112,97,103,101,78,117,109,98,101,114,44,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,112,97,103,101,78,117,109,98,101,114,32,45,32,49,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,118,97,114,32,36,98,116,110,67,111,110,116,101,110,116,32,61,32,95,116,104,105,115,55,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,98,116,110,83,108,111,116,44,32,115,99,111,112,101,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,116,111,83,116,114,105,110,103,41,40,98,116,110,84,101,120,116,41,32,124,124,32,104,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,36,105,110,110,101,114,32,61,32,104,40,105,115,68,105,115,97,98,108,101,100,32,63,32,39,115,112,97,110,39,32,58,32,105,115,78,97,118,32,63,32,95,99,111,109,112,111,110,101,110,116,115,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,66,76,105,110,107,32,58,32,39,98,117,116,116,111,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,112,97,103,101,45,108,105,110,107,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,102,108,101,120,45,103,114,111,119,45,49,39,58,32,33,105,115,78,97,118,32,38,38,32,33,105,115,68,105,115,97,98,108,101,100,32,38,38,32,102,105,108,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,105,115,68,105,115,97,98,108,101,100,32,124,124,32,33,105,115,78,97,118,32,63,32,123,125,32,58,32,95,116,104,105,115,55,46,108,105,110,107,80,114,111,112,115,40,108,105,110,107,84,111,41,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,105,115,78,97,118,32,63,32,110,117,108,108,32,58,32,39,109,101,110,117,105,116,101,109,39,44,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,58,32,105,115,78,97,118,32,124,124,32,105,115,68,105,115,97,98,108,101,100,32,63,32,110,117,108,108,32,58,32,39,98,117,116,116,111,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,105,115,68,105,115,97,98,108,101,100,32,124,124,32,105,115,78,97,118,32,63,32,110,117,108,108,32,58,32,39,45,49,39,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,97,114,105,97,76,97,98,101,108,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,111,110,116,114,111,108,115,39,58,32,95,116,104,105,115,55,46,97,114,105,97,67,111,110,116,114,111,108,115,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,105,115,97,98,108,101,100,39,58,32,105,115,68,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,105,115,68,105,115,97,98,108,101,100,32,63,32,123,125,32,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,33,99,108,105,99,107,39,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,55,46,111,110,67,108,105,99,107,40,101,118,101,110,116,44,32,108,105,110,107,84,111,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,111,110,83,112,97,99,101,75,101,121,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,36,98,116,110,67,111,110,116,101,110,116,93,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,107,101,121,44,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,112,97,103,101,45,105,116,101,109,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,105,115,68,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,39,102,108,101,120,45,102,105,108,108,39,58,32,102,105,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,39,100,45,102,108,101,120,39,58,32,102,105,108,108,32,38,38,32,33,105,115,78,97,118,32,38,38,32,33,105,115,68,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,125,44,32,98,116,110,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,105,115,78,97,118,32,63,32,110,117,108,108,32,58,32,39,112,114,101,115,101,110,116,97,116,105,111,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,105,115,68,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,36,105,110,110,101,114,93,41,59,92,110,32,32,32,32,125,59,32,47,47,32,69,108,108,105,112,115,105,115,32,102,97,99,116,111,114,121,92,110,92,110,92,110,32,32,32,32,118,97,114,32,109,97,107,101,69,108,108,105,112,115,105,115,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,69,108,108,105,112,115,105,115,40,105,115,76,97,115,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,112,97,103,101,45,105,116,101,109,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,39,100,105,115,97,98,108,101,100,39,44,32,39,98,118,45,100,45,120,115,45,100,111,119,110,45,110,111,110,101,39,44,32,102,105,108,108,32,63,32,39,102,108,101,120,45,102,105,108,108,39,32,58,32,39,39,44,32,95,116,104,105,115,55,46,101,108,108,105,112,115,105,115,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,39,115,101,112,97,114,97,116,111,114,39,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,101,108,108,105,112,115,105,115,45,92,34,46,99,111,110,99,97,116,40,105,115,76,97,115,116,32,63,32,39,108,97,115,116,39,32,58,32,39,102,105,114,115,116,39,41,92,110,32,32,32,32,32,32,125,44,32,91,104,40,39,115,112,97,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,112,97,103,101,45,108,105,110,107,39,92,110,32,32,32,32,32,32,125,44,32,91,95,116,104,105,115,55,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,83,76,79,84,95,78,65,77,69,95,69,76,76,73,80,83,73,83,95,84,69,88,84,41,32,124,124,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,116,111,83,116,114,105,110,103,41,40,95,116,104,105,115,55,46,101,108,108,105,112,115,105,115,84,101,120,116,41,32,124,124,32,104,40,41,93,41,93,41,59,92,110,32,32,32,32,125,59,32,47,47,32,80,97,103,101,32,98,117,116,116,111,110,32,102,97,99,116,111,114,121,92,110,92,110,92,110,32,32,32,32,118,97,114,32,109,97,107,101,80,97,103,101,66,117,116,116,111,110,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,80,97,103,101,66,117,116,116,111,110,40,112,97,103,101,44,32,105,100,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,97,103,101,78,117,109,98,101,114,32,61,32,112,97,103,101,46,110,117,109,98,101,114,59,92,110,32,32,32,32,32,32,118,97,114,32,97,99,116,105,118,101,32,61,32,105,115,65,99,116,105,118,101,80,97,103,101,40,112,97,103,101,78,117,109,98,101,114,41,32,38,38,32,33,110,111,67,117,114,114,101,110,116,80,97,103,101,59,32,47,47,32,65,99,116,105,118,101,32,112,97,103,101,32,119,105,108,108,32,104,97,118,101,32,116,97,98,105,110,100,101,120,32,111,102,32,48,44,32,111,114,32,105,102,32,110,111,32,99,117,114,114,101,110,116,32,112,97,103,101,32,97,110,100,32,102,105,114,115,116,32,112,97,103,101,32,98,117,116,116,111,110,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,97,98,73,110,100,101,120,32,61,32,100,105,115,97,98,108,101,100,32,63,32,110,117,108,108,32,58,32,97,99,116,105,118,101,32,124,124,32,110,111,67,117,114,114,101,110,116,80,97,103,101,32,38,38,32,105,100,120,32,61,61,61,32,48,32,63,32,39,48,39,32,58,32,39,45,49,39,59,92,110,32,32,32,32,32,32,118,97,114,32,97,116,116,114,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,105,115,78,97,118,32,63,32,110,117,108,108,32,58,32,39,109,101,110,117,105,116,101,109,114,97,100,105,111,39,44,92,110,32,32,32,32,32,32,32,32,116,121,112,101,58,32,105,115,78,97,118,32,124,124,32,100,105,115,97,98,108,101,100,32,63,32,110,117,108,108,32,58,32,39,98,117,116,116,111,110,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,105,115,97,98,108,101,100,39,58,32,100,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,111,110,116,114,111,108,115,39,58,32,95,116,104,105,115,55,46,97,114,105,97,67,111,110,116,114,111,108,115,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,40,48,44,95,117,116,105,108,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,104,97,115,80,114,111,112,70,117,110,99,116,105,111,110,41,40,108,97,98,101,108,80,97,103,101,41,32,63,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,108,97,98,101,108,80,97,103,101,40,112,97,103,101,78,117,109,98,101,114,41,32,58,32,92,34,92,34,46,99,111,110,99,97,116,40,40,48,44,95,117,116,105,108,115,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,108,97,98,101,108,80,97,103,101,41,32,63,32,108,97,98,101,108,80,97,103,101,40,41,32,58,32,108,97,98,101,108,80,97,103,101,44,32,92,34,32,92,34,41,46,99,111,110,99,97,116,40,112,97,103,101,78,117,109,98,101,114,41,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,104,101,99,107,101,100,39,58,32,105,115,78,97,118,32,63,32,110,117,108,108,32,58,32,97,99,116,105,118,101,32,63,32,39,116,114,117,101,39,32,58,32,39,102,97,108,115,101,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,99,117,114,114,101,110,116,39,58,32,105,115,78,97,118,32,38,38,32,97,99,116,105,118,101,32,63,32,39,112,97,103,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,112,111,115,105,110,115,101,116,39,58,32,105,115,78,97,118,32,63,32,110,117,108,108,32,58,32,112,97,103,101,78,117,109,98,101,114,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,115,101,116,115,105,122,101,39,58,32,105,115,78,97,118,32,63,32,110,117,108,108,32,58,32,110,117,109,98,101,114,79,102,80,97,103,101,115,44,92,110,32,32,32,32,32,32,32,32,47,47,32,65,82,73,65,32,92,34,114,111,118,105,110,103,32,116,97,98,105,110,100,101,120,92,34,32,109,101,116,104,111,100,32,40,101,120,99,101,112,116,32,105,110,32,96,105,115,78,97,118,96,32,109,111,100,101,41,92,110,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,105,115,78,97,118,32,63,32,110,117,108,108,32,58,32,116,97,98,73,110,100,101,120,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,118,97,114,32,98,116,110,67,111,110,116,101,110,116,32,61,32,40,48,44,95,117,116,105,108,115,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,116,111,83,116,114,105,110,103,41,40,95,116,104,105,115,55,46,109,97,107,101,80,97,103,101,40,112,97,103,101,78,117,109,98,101,114,41,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,32,61,32,123,92,110,32,32,32,32,32,32,32,32,112,97,103,101,58,32,112,97,103,101,78,117,109,98,101,114,44,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,112,97,103,101,78,117,109,98,101,114,32,45,32,49,44,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,58,32,98,116,110,67,111,110,116,101,110,116,44,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,58,32,97,99,116,105,118,101,44,92,110,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,118,97,114,32,36,105,110,110,101,114,32,61,32,104,40,100,105,115,97,98,108,101,100,32,63,32,39,115,112,97,110,39,32,58,32,105,115,78,97,118,32,63,32,95,99,111,109,112,111,110,101,110,116,115,95,108,105,110,107,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,66,76,105,110,107,32,58,32,39,98,117,116,116,111,110,39,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,100,105,115,97,98,108,101,100,32,124,124,32,33,105,115,78,97,118,32,63,32,123,125,32,58,32,95,116,104,105,115,55,46,108,105,110,107,80,114,111,112,115,40,112,97,103,101,78,117,109,98,101,114,41,44,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,112,97,103,101,45,108,105,110,107,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,102,108,101,120,45,103,114,111,119,45,49,39,58,32,33,105,115,78,97,118,32,38,38,32,33,100,105,115,97,98,108,101,100,32,38,38,32,102,105,108,108,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,97,116,116,114,115,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,100,105,115,97,98,108,101,100,32,63,32,123,125,32,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,33,99,108,105,99,107,39,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,55,46,111,110,67,108,105,99,107,40,101,118,101,110,116,44,32,112,97,103,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,111,110,83,112,97,99,101,75,101,121,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,95,116,104,105,115,55,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,83,76,79,84,95,78,65,77,69,95,80,65,71,69,44,32,115,99,111,112,101,41,32,124,124,32,98,116,110,67,111,110,116,101,110,116,93,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,108,105,39,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,112,97,103,101,45,105,116,101,109,39,44,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,97,98,108,101,100,58,32,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,58,32,97,99,116,105,118,101,44,92,110,32,32,32,32,32,32,32,32,32,32,39,102,108,101,120,45,102,105,108,108,39,58,32,102,105,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,39,100,45,102,108,101,120,39,58,32,102,105,108,108,32,38,38,32,33,105,115,78,97,118,32,38,38,32,33,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,125,44,32,112,97,103,101,46,99,108,97,115,115,101,115,44,32,95,116,104,105,115,55,46,112,97,103,101,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,105,115,78,97,118,32,63,32,110,117,108,108,32,58,32,39,112,114,101,115,101,110,116,97,116,105,111,110,39,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,112,97,103,101,45,92,34,46,99,111,110,99,97,116,40,112,97,103,101,78,117,109,98,101,114,41,92,110,32,32,32,32,32,32,125,44,32,91,36,105,110,110,101,114,93,41,59,92,110,32,32,32,32,125,59,32,47,47,32,71,111,116,111,32,102,105,114,115,116,32,112,97,103,101,32,98,117,116,116,111,110,92,110,32,32,32,32,47,47,32,68,111,110,39,116,32,114,101,110,100,101,114,32,98,117,116,116,111,110,32,119,104,101,110,32,96,104,105,100,101,71,111,116,111,69,110,100,66,117,116,116,111,110,115,96,32,111,114,32,96,102,105,114,115,116,78,117,109,98,101,114,96,32,105,115,32,115,101,116,92,110,92,110,92,110,32,32,32,32,118,97,114,32,36,102,105,114,115,116,80,97,103,101,66,116,110,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,102,105,114,115,116,78,117,109,98,101,114,32,38,38,32,33,116,104,105,115,46,104,105,100,101,71,111,116,111,69,110,100,66,117,116,116,111,110,115,41,32,123,92,110,32,32,32,32,32,32,36,102,105,114,115,116,80,97,103,101,66,116,110,32,61,32,109,97,107,101,69,110,100,66,116,110,40,49,44,32,116,104,105,115,46,108,97,98,101,108,70,105,114,115,116,80,97,103,101,44,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,83,76,79,84,95,78,65,77,69,95,70,73,82,83,84,95,84,69,88,84,44,32,116,104,105,115,46,102,105,114,115,116,84,101,120,116,44,32,116,104,105,115,46,102,105,114,115,116,67,108,97,115,115,44,32,49,44,32,39,112,97,103,105,110,97,116,105,111,110,45,103,111,116,111,45,102,105,114,115,116,39,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,36,98,117,116,116,111,110,115,46,112,117,115,104,40,36,102,105,114,115,116,80,97,103,101,66,116,110,41,59,32,47,47,32,71,111,116,111,32,112,114,101,118,105,111,117,115,32,112,97,103,101,32,98,117,116,116,111,110,92,110,92,110,32,32,32,32,36,98,117,116,116,111,110,115,46,112,117,115,104,40,109,97,107,101,69,110,100,66,116,110,40,99,117,114,114,101,110,116,80,97,103,101,32,45,32,49,44,32,116,104,105,115,46,108,97,98,101,108,80,114,101,118,80,97,103,101,44,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,83,76,79,84,95,78,65,77,69,95,80,82,69,86,95,84,69,88,84,44,32,116,104,105,115,46,112,114,101,118,84,101,120,116,44,32,116,104,105,115,46,112,114,101,118,67,108,97,115,115,44,32,49,44,32,39,112,97,103,105,110,97,116,105,111,110,45,103,111,116,111,45,112,114,101,118,39,41,41,59,32,47,47,32,83,104,111,119,32,102,105,114,115,116,32,40,49,41,32,98,117,116,116,111,110,63,92,110,92,110,32,32,32,32,36,98,117,116,116,111,110,115,46,112,117,115,104,40,116,104,105,115,46,102,105,114,115,116,78,117,109,98,101,114,32,38,38,32,112,97,103,101,78,117,109,98,101,114,115,91,48,93,32,33,61,61,32,49,32,63,32,109,97,107,101,80,97,103,101,66,117,116,116,111,110,40,123,92,110,32,32,32,32,32,32,110,117,109,98,101,114,58,32,49,92,110,32,32,32,32,125,44,32,48,41,32,58,32,104,40,41,41,59,32,47,47,32,70,105,114,115,116,32,101,108,108,105,112,115,105,115,92,110,92,110,32,32,32,32,36,98,117,116,116,111,110,115,46,112,117,115,104,40,115,104,111,119,70,105,114,115,116,68,111,116,115,32,63,32,109,97,107,101,69,108,108,105,112,115,105,115,40,102,97,108,115,101,41,32,58,32,104,40,41,41,59,32,47,47,32,73,110,100,105,118,105,100,117,97,108,32,112,97,103,101,32,108,105,110,107,115,92,110,92,110,32,32,32,32,116,104,105,115,46,112,97,103,101,76,105,115,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,97,103,101,44,32,105,100,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,102,102,115,101,116,32,61,32,115,104,111,119,70,105,114,115,116,68,111,116,115,32,38,38,32,95,116,104,105,115,55,46,102,105,114,115,116,78,117,109,98,101,114,32,38,38,32,112,97,103,101,78,117,109,98,101,114,115,91,48,93,32,33,61,61,32,49,32,63,32,49,32,58,32,48,59,92,110,32,32,32,32,32,32,36,98,117,116,116,111,110,115,46,112,117,115,104,40,109,97,107,101,80,97,103,101,66,117,116,116,111,110,40,112,97,103,101,44,32,105,100,120,32,43,32,111,102,102,115,101,116,41,41,59,92,110,32,32,32,32,125,41,59,32,47,47,32,76,97,115,116,32,101,108,108,105,112,115,105,115,92,110,92,110,32,32,32,32,36,98,117,116,116,111,110,115,46,112,117,115,104,40,115,104,111,119,76,97,115,116,68,111,116,115,32,63,32,109,97,107,101,69,108,108,105,112,115,105,115,40,116,114,117,101,41,32,58,32,104,40,41,41,59,32,47,47,32,83,104,111,119,32,108,97,115,116,32,112,97,103,101,32,98,117,116,116,111,110,63,92,110,92,110,32,32,32,32,36,98,117,116,116,111,110,115,46,112,117,115,104,40,116,104,105,115,46,108,97,115,116,78,117,109,98,101,114,32,38,38,32,112,97,103,101,78,117,109,98,101,114,115,91,112,97,103,101,78,117,109,98,101,114,115,46,108,101,110,103,116,104,32,45,32,49,93,32,33,61,61,32,110,117,109,98,101,114,79,102,80,97,103,101,115,32,63,32,109,97,107,101,80,97,103,101,66,117,116,116,111,110,40,123,92,110,32,32,32,32,32,32,110,117,109,98,101,114,58,32,110,117,109,98,101,114,79,102,80,97,103,101,115,92,110,32,32,32,32,125,44,32,45,49,41,32,58,32,104,40,41,41,59,32,47,47,32,71,111,116,111,32,110,101,120,116,32,112,97,103,101,32,98,117,116,116,111,110,92,110,92,110,32,32,32,32,36,98,117,116,116,111,110,115,46,112,117,115,104,40,109,97,107,101,69,110,100,66,116,110,40,99,117,114,114,101,110,116,80,97,103,101,32,43,32,49,44,32,116,104,105,115,46,108,97,98,101,108,78,101,120,116,80,97,103,101,44,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,83,76,79,84,95,78,65,77,69,95,78,69,88,84,95,84,69,88,84,44,32,116,104,105,115,46,110,101,120,116,84,101,120,116,44,32,116,104,105,115,46,110,101,120,116,67,108,97,115,115,44,32,110,117,109,98,101,114,79,102,80,97,103,101,115,44,32,39,112,97,103,105,110,97,116,105,111,110,45,103,111,116,111,45,110,101,120,116,39,41,41,59,32,47,47,32,71,111,116,111,32,108,97,115,116,32,112,97,103,101,32,98,117,116,116,111,110,92,110,32,32,32,32,47,47,32,68,111,110,39,116,32,114,101,110,100,101,114,32,98,117,116,116,111,110,32,119,104,101,110,32,96,104,105,100,101,71,111,116,111,69,110,100,66,117,116,116,111,110,115,96,32,111,114,32,96,108,97,115,116,78,117,109,98,101,114,96,32,105,115,32,115,101,116,92,110,92,110,32,32,32,32,118,97,114,32,36,108,97,115,116,80,97,103,101,66,116,110,32,61,32,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,108,97,115,116,78,117,109,98,101,114,32,38,38,32,33,116,104,105,115,46,104,105,100,101,71,111,116,111,69,110,100,66,117,116,116,111,110,115,41,32,123,92,110,32,32,32,32,32,32,36,108,97,115,116,80,97,103,101,66,116,110,32,61,32,109,97,107,101,69,110,100,66,116,110,40,110,117,109,98,101,114,79,102,80,97,103,101,115,44,32,116,104,105,115,46,108,97,98,101,108,76,97,115,116,80,97,103,101,44,32,95,99,111,110,115,116,97,110,116,115,95,115,108,111,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,83,76,79,84,95,78,65,77,69,95,76,65,83,84,95,84,69,88,84,44,32,116,104,105,115,46,108,97,115,116,84,101,120,116,44,32,116,104,105,115,46,108,97,115,116,67,108,97,115,115,44,32,110,117,109,98,101,114,79,102,80,97,103,101,115,44,32,39,112,97,103,105,110,97,116,105,111,110,45,103,111,116,111,45,108,97,115,116,39,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,36,98,117,116,116,111,110,115,46,112,117,115,104,40,36,108,97,115,116,80,97,103,101,66,116,110,41,59,32,47,47,32,65,115,115,101,109,98,108,101,32,116,104,101,32,112,97,103,105,110,97,116,105,111,110,32,98,117,116,116,111,110,115,92,110,92,110,32,32,32,32,118,97,114,32,36,112,97,103,105,110,97,116,105,111,110,32,61,32,104,40,39,117,108,39,44,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,39,112,97,103,105,110,97,116,105,111,110,39,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,91,39,98,45,112,97,103,105,110,97,116,105,111,110,39,44,32,116,104,105,115,46,98,116,110,83,105,122,101,44,32,116,104,105,115,46,97,108,105,103,110,109,101,110,116,44,32,116,104,105,115,46,115,116,121,108,101,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,114,111,108,101,58,32,105,115,78,97,118,32,63,32,110,117,108,108,32,58,32,39,109,101,110,117,98,97,114,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,105,115,97,98,108,101,100,39,58,32,100,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,39,102,97,108,115,101,39,44,92,110,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,105,115,78,97,118,32,63,32,110,117,108,108,32,58,32,97,114,105,97,76,97,98,101,108,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,47,47,32,87,101,32,100,105,115,97,98,108,101,32,107,101,121,98,111,97,114,100,32,108,101,102,116,47,114,105,103,104,116,32,110,97,118,32,119,104,101,110,32,96,60,98,45,112,97,103,105,110,97,116,105,111,110,45,110,97,118,62,96,92,110,32,32,32,32,32,32,111,110,58,32,105,115,78,97,118,32,63,32,123,125,32,58,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,104,97,110,100,108,101,75,101,121,78,97,118,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,114,101,102,58,32,39,117,108,39,92,110,32,32,32,32,125,44,32,36,98,117,116,116,111,110,115,41,59,32,47,47,32,73,102,32,119,101,32,97,114,101,32,96,60,98,45,112,97,103,105,110,97,116,105,111,110,45,110,97,118,62,96,44,32,119,114,97,112,32,105,110,32,96,60,110,97,118,62,96,32,119,114,97,112,112,101,114,92,110,92,110,32,32,32,32,105,102,32,40,105,115,78,97,118,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,39,110,97,118,39,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,100,105,115,97,98,108,101,100,39,58,32,100,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,104,105,100,100,101,110,39,58,32,100,105,115,97,98,108,101,100,32,63,32,39,116,114,117,101,39,32,58,32,39,102,97,108,115,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,105,97,45,108,97,98,101,108,39,58,32,105,115,78,97,118,32,63,32,97,114,105,97,76,97,98,101,108,32,124,124,32,110,117,108,108,32,58,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,91,36,112,97,103,105,110,97,116,105,111,110,93,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,36,112,97,103,105,110,97,116,105,111,110,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,112,97,103,105,110,97,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,115,99,111,112,101,100,45,115,116,121,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,115,99,111,112,101,100,45,115,116,121,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,111,112,101,100,83,116,121,108,101,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,111,112,101,100,83,116,121,108,101,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,115,95,103,101,116,95,115,99,111,112,101,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,117,116,105,108,115,47,103,101,116,45,115,99,111,112,101,45,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,45,115,99,111,112,101,45,105,100,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,32,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,115,99,111,112,101,100,83,116,121,108,101,77,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,115,99,111,112,101,100,83,116,121,108,101,65,116,116,114,115,58,32,102,117,110,99,116,105,111,110,32,115,99,111,112,101,100,83,116,121,108,101,65,116,116,114,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,73,100,32,61,32,40,48,44,95,117,116,105,108,115,95,103,101,116,95,115,99,111,112,101,95,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,103,101,116,83,99,111,112,101,73,100,41,40,116,104,105,115,46,36,112,97,114,101,110,116,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,111,112,101,73,100,32,63,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,115,99,111,112,101,73,100,44,32,39,39,41,32,58,32,123,125,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,109,105,120,105,110,115,47,115,99,111,112,101,100,45,115,116,121,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,114,114,97,121,73,110,99,108,117,100,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,114,114,97,121,73,110,99,108,117,100,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,110,99,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,110,99,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,101,97,116,101,65,114,114,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,114,101,97,116,101,65,114,114,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,108,97,116,116,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,108,97,116,116,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,108,97,116,116,101,110,68,101,101,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,108,97,116,116,101,110,68,101,101,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,114,111,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,114,111,109,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,32,47,47,32,45,45,45,32,83,116,97,116,105,99,32,45,45,45,92,110,92,110,118,97,114,32,102,114,111,109,32,61,32,102,117,110,99,116,105,111,110,32,102,114,111,109,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,46,97,112,112,108,121,40,65,114,114,97,121,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,59,32,47,47,32,45,45,45,32,73,110,115,116,97,110,99,101,32,45,45,45,92,110,92,110,118,97,114,32,97,114,114,97,121,73,110,99,108,117,100,101,115,32,61,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,73,110,99,108,117,100,101,115,40,97,114,114,97,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,114,97,121,46,105,110,100,101,120,79,102,40,118,97,108,117,101,41,32,33,61,61,32,45,49,59,92,110,125,59,92,110,118,97,114,32,99,111,110,99,97,116,32,61,32,102,117,110,99,116,105,111,110,32,99,111,110,99,97,116,40,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,95,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,32,97,114,103,115,32,61,32,110,101,119,32,65,114,114,97,121,40,95,108,101,110,41,44,32,95,107,101,121,32,61,32,48,59,32,95,107,101,121,32,60,32,95,108,101,110,59,32,95,107,101,121,43,43,41,32,123,92,110,32,32,32,32,97,114,103,115,91,95,107,101,121,93,32,61,32,97,114,103,117,109,101,110,116,115,91,95,107,101,121,93,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,99,111,110,99,97,116,46,97,112,112,108,121,40,91,93,44,32,97,114,103,115,41,59,92,110,125,59,32,47,47,32,45,45,45,32,85,116,105,108,105,116,105,101,115,32,45,45,45,92,110,92,110,118,97,114,32,99,114,101,97,116,101,65,114,114,97,121,32,61,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,65,114,114,97,121,40,108,101,110,103,116,104,44,32,102,105,108,108,70,110,41,32,123,92,110,32,32,118,97,114,32,109,97,112,70,110,32,61,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,102,105,108,108,70,110,41,32,63,32,102,105,108,108,70,110,32,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,105,108,108,70,110,59,92,110,32,32,125,59,92,110,32,32,114,101,116,117,114,110,32,65,114,114,97,121,46,97,112,112,108,121,40,110,117,108,108,44,32,123,92,110,32,32,32,32,108,101,110,103,116,104,58,32,108,101,110,103,116,104,92,110,32,32,125,41,46,109,97,112,40,109,97,112,70,110,41,59,92,110,125,59,92,110,118,97,114,32,102,108,97,116,116,101,110,32,61,32,102,117,110,99,116,105,111,110,32,102,108,97,116,116,101,110,40,97,114,114,97,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,114,97,121,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,117,108,116,44,32,105,116,101,109,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,110,99,97,116,40,114,101,115,117,108,116,44,32,105,116,101,109,41,59,92,110,32,32,125,44,32,91,93,41,59,92,110,125,59,92,110,118,97,114,32,102,108,97,116,116,101,110,68,101,101,112,32,61,32,102,117,110,99,116,105,111,110,32,102,108,97,116,116,101,110,68,101,101,112,40,97,114,114,97,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,114,97,121,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,117,108,116,44,32,105,116,101,109,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,110,99,97,116,40,114,101,115,117,108,116,44,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,105,116,101,109,41,32,63,32,102,108,97,116,116,101,110,68,101,101,112,40,105,116,101,109,41,32,58,32,105,116,101,109,41,59,92,110,32,32,125,44,32,91,93,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,118,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,118,69,118,101,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,105,110,115,116,97,110,99,101,44,32,67,111,110,115,116,114,117,99,116,111,114,41,32,123,32,105,102,32,40,33,40,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,67,111,110,115,116,114,117,99,116,111,114,41,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,32,112,114,111,112,115,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,112,114,111,112,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,100,101,115,99,114,105,112,116,111,114,32,61,32,112,114,111,112,115,91,105,93,59,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,61,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,124,124,32,102,97,108,115,101,59,32,100,101,115,99,114,105,112,116,111,114,46,99,111,110,102,105,103,117,114,97,98,108,101,32,61,32,116,114,117,101,59,32,105,102,32,40,92,34,118,97,108,117,101,92,34,32,105,110,32,100,101,115,99,114,105,112,116,111,114,41,32,100,101,115,99,114,105,112,116,111,114,46,119,114,105,116,97,98,108,101,32,61,32,116,114,117,101,59,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,100,101,115,99,114,105,112,116,111,114,46,107,101,121,44,32,100,101,115,99,114,105,112,116,111,114,41,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,99,114,101,97,116,101,67,108,97,115,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,112,114,111,116,111,80,114,111,112,115,44,32,115,116,97,116,105,99,80,114,111,112,115,41,32,123,32,105,102,32,40,112,114,111,116,111,80,114,111,112,115,41,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,44,32,112,114,111,116,111,80,114,111,112,115,41,59,32,105,102,32,40,115,116,97,116,105,99,80,114,111,112,115,41,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,115,116,97,116,105,99,80,114,111,112,115,41,59,32,114,101,116,117,114,110,32,67,111,110,115,116,114,117,99,116,111,114,59,32,125,92,110,92,110,92,110,118,97,114,32,66,118,69,118,101,110,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,66,118,69,118,101,110,116,40,116,121,112,101,41,32,123,92,110,32,32,32,32,118,97,114,32,101,118,101,110,116,73,110,105,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,92,110,32,32,32,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,66,118,69,118,101,110,116,41,59,92,110,92,110,32,32,32,32,47,47,32,83,116,97,114,116,32,98,121,32,101,109,117,108,97,116,105,110,103,32,110,97,116,105,118,101,32,69,118,101,110,116,32,99,111,110,115,116,114,117,99,116,111,114,92,110,32,32,32,32,105,102,32,40,33,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,70,97,105,108,101,100,32,116,111,32,99,111,110,115,116,114,117,99,116,32,39,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,44,32,92,34,39,46,32,49,32,97,114,103,117,109,101,110,116,32,114,101,113,117,105,114,101,100,44,32,92,34,41,46,99,111,110,99,97,116,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,32,92,34,32,103,105,118,101,110,46,92,34,41,41,59,92,110,32,32,32,32,125,32,47,47,32,77,101,114,103,101,32,100,101,102,97,117,108,116,115,32,102,105,114,115,116,44,32,116,104,101,32,101,118,101,110,116,73,110,105,116,44,32,97,110,100,32,116,104,101,32,116,121,112,101,32,108,97,115,116,92,110,32,32,32,32,47,47,32,115,111,32,105,116,32,99,97,110,39,116,32,98,101,32,111,118,101,114,119,114,105,116,116,101,110,92,110,92,110,92,110,32,32,32,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,115,105,103,110,41,40,116,104,105,115,44,32,66,118,69,118,101,110,116,46,68,101,102,97,117,108,116,115,44,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,115,44,32,101,118,101,110,116,73,110,105,116,44,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,116,121,112,101,92,110,32,32,32,32,125,41,59,32,47,47,32,70,114,101,101,122,101,32,115,111,109,101,32,112,114,111,112,115,32,97,115,32,114,101,97,100,111,110,108,121,44,32,98,117,116,32,108,101,97,118,101,32,116,104,101,109,32,101,110,117,109,101,114,97,98,108,101,92,110,92,110,32,32,32,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,41,40,116,104,105,115,44,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,41,40,41,44,92,110,32,32,32,32,32,32,99,97,110,99,101,108,97,98,108,101,58,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,41,40,41,44,92,110,32,32,32,32,32,32,110,97,116,105,118,101,69,118,101,110,116,58,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,41,40,41,44,92,110,32,32,32,32,32,32,116,97,114,103,101,116,58,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,41,40,41,44,92,110,32,32,32,32,32,32,114,101,108,97,116,101,100,84,97,114,103,101,116,58,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,41,40,41,44,92,110,32,32,32,32,32,32,118,117,101,84,97,114,103,101,116,58,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,41,40,41,44,92,110,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,73,100,58,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,41,40,41,92,110,32,32,32,32,125,41,59,32,47,47,32,67,114,101,97,116,101,32,97,32,112,114,105,118,97,116,101,32,118,97,114,105,97,98,108,101,32,117,115,105,110,103,32,99,108,111,115,117,114,101,32,115,99,111,112,105,110,103,92,110,92,110,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,32,61,32,102,97,108,115,101,59,32,47,47,32,82,101,99,114,101,97,116,101,32,112,114,101,118,101,110,116,68,101,102,97,117,108,116,32,109,101,116,104,111,100,46,32,79,110,101,32,119,97,121,32,115,101,116,116,101,114,92,110,92,110,32,32,32,32,116,104,105,115,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,32,61,32,102,117,110,99,116,105,111,110,32,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,99,97,110,99,101,108,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,32,47,47,32,67,114,101,97,116,101,32,96,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,96,32,112,117,98,108,105,99,108,121,32,97,99,99,101,115,115,105,98,108,101,32,112,114,111,112,32,116,104,97,116,92,110,32,32,32,32,47,47,32,99,97,110,32,111,110,108,121,32,98,101,32,97,108,116,101,114,101,100,32,98,121,32,116,104,101,32,112,114,101,118,101,110,116,68,101,102,97,117,108,116,32,109,101,116,104,111,100,92,110,92,110,92,110,32,32,32,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,41,40,116,104,105,115,44,32,39,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,39,44,32,123,92,110,32,32,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,95,99,114,101,97,116,101,67,108,97,115,115,40,66,118,69,118,101,110,116,44,32,110,117,108,108,44,32,91,123,92,110,32,32,32,32,107,101,121,58,32,92,34,68,101,102,97,117,108,116,115,92,34,44,92,110,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,116,121,112,101,58,32,39,39,44,92,110,32,32,32,32,32,32,32,32,99,97,110,99,101,108,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,110,97,116,105,118,101,69,118,101,110,116,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,114,101,108,97,116,101,100,84,97,114,103,101,116,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,118,117,101,84,97,114,103,101,116,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,73,100,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,93,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,66,118,69,118,101,110,116,59,92,110,125,40,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,98,118,45,101,118,101,110,116,46,99,108,97,115,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,97,99,104,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,97,99,104,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,107,101,80,114,111,112,67,97,99,104,101,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,107,101,80,114,111,112,67,97,99,104,101,77,105,120,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,107,101,80,114,111,112,87,97,116,99,104,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,107,101,80,114,111,112,87,97,116,99,104,101,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,108,111,110,101,45,100,101,101,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,108,111,110,101,45,100,101,101,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,105,115,69,109,112,116,121,32,61,32,102,117,110,99,116,105,111,110,32,105,115,69,109,112,116,121,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,118,97,108,117,101,32,124,124,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,107,101,121,115,41,40,118,97,108,117,101,41,46,108,101,110,103,116,104,32,61,61,61,32,48,59,92,110,125,59,92,110,92,110,118,97,114,32,109,97,107,101,80,114,111,112,87,97,116,99,104,101,114,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,80,114,111,112,87,97,116,99,104,101,114,40,112,114,111,112,78,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,104,97,110,100,108,101,114,58,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,69,109,112,116,121,40,110,101,119,86,97,108,117,101,41,32,124,124,32,105,115,69,109,112,116,121,40,111,108,100,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,91,112,114,111,112,78,97,109,101,93,32,61,32,40,48,44,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,108,111,110,101,68,101,101,112,41,40,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,41,40,110,101,119,86,97,108,117,101,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,100,101,108,101,116,101,40,116,104,105,115,46,36,100,97,116,97,91,112,114,111,112,78,97,109,101,93,44,32,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,95,107,101,121,32,105,110,32,110,101,119,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,101,116,40,116,104,105,115,46,36,100,97,116,97,91,112,114,111,112,78,97,109,101,93,44,32,95,107,101,121,44,32,110,101,119,86,97,108,117,101,91,95,107,101,121,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,59,92,110,118,97,114,32,109,97,107,101,80,114,111,112,67,97,99,104,101,77,105,120,105,110,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,80,114,111,112,67,97,99,104,101,77,105,120,105,110,40,112,114,111,112,78,97,109,101,44,32,112,114,111,120,121,80,114,111,112,78,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,112,114,111,120,121,80,114,111,112,78,97,109,101,44,32,40,48,44,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,108,111,110,101,68,101,101,112,41,40,116,104,105,115,91,112,114,111,112,78,97,109,101,93,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,119,97,116,99,104,58,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,112,114,111,112,78,97,109,101,44,32,109,97,107,101,80,114,111,112,87,97,116,99,104,101,114,40,112,114,111,120,121,80,114,111,112,78,97,109,101,41,41,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,97,99,104,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,108,111,110,101,45,100,101,101,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,108,111,110,101,45,100,101,101,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,108,111,110,101,68,101,101,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,108,111,110,101,68,101,101,112,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,97,114,114,41,32,123,32,114,101,116,117,114,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,124,124,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,92,34,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,32,123,32,105,102,32,40,33,111,41,32,114,101,116,117,114,110,59,32,105,102,32,40,116,121,112,101,111,102,32,111,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,118,97,114,32,110,32,61,32,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,111,41,46,115,108,105,99,101,40,56,44,32,45,49,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,79,98,106,101,99,116,92,34,32,38,38,32,111,46,99,111,110,115,116,114,117,99,116,111,114,41,32,110,32,61,32,111,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,59,32,105,102,32,40,110,32,61,61,61,32,92,34,77,97,112,92,34,32,124,124,32,110,32,61,61,61,32,92,34,83,101,116,92,34,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,111,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,65,114,103,117,109,101,110,116,115,92,34,32,124,124,32,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,105,116,101,114,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,38,38,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,105,116,101,114,41,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,105,116,101,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,123,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,44,32,108,101,110,41,32,123,32,105,102,32,40,108,101,110,32,61,61,32,110,117,108,108,32,124,124,32,108,101,110,32,62,32,97,114,114,46,108,101,110,103,116,104,41,32,108,101,110,32,61,32,97,114,114,46,108,101,110,103,116,104,59,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,97,114,114,50,32,61,32,110,101,119,32,65,114,114,97,121,40,108,101,110,41,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,32,97,114,114,50,91,105,93,32,61,32,97,114,114,91,105,93,59,32,125,32,114,101,116,117,114,110,32,97,114,114,50,59,32,125,92,110,92,110,92,110,92,110,118,97,114,32,99,108,111,110,101,68,101,101,112,32,61,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,68,101,101,112,40,111,98,106,41,32,123,92,110,32,32,118,97,114,32,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,111,98,106,59,92,110,92,110,32,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,65,114,114,97,121,41,40,111,98,106,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,111,98,106,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,117,108,116,44,32,118,97,108,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,46,99,111,110,99,97,116,40,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,114,101,115,117,108,116,41,44,32,91,99,108,111,110,101,68,101,101,112,40,118,97,108,44,32,118,97,108,41,93,41,59,92,110,32,32,32,32,125,44,32,91,93,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,111,98,106,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,107,101,121,115,41,40,111,98,106,41,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,117,108,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,114,101,115,117,108,116,41,44,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,107,101,121,44,32,99,108,111,110,101,68,101,101,112,40,111,98,106,91,107,101,121,93,44,32,111,98,106,91,107,101,121,93,41,41,41,59,92,110,32,32,32,32,125,44,32,123,125,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,100,101,102,97,117,108,116,86,97,108,117,101,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,108,111,110,101,45,100,101,101,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,45,115,101,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,45,115,101,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,115,101,116,67,111,110,102,105,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,115,101,116,67,111,110,102,105,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,116,67,111,110,102,105,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,116,67,111,110,102,105,103,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,110,102,105,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,110,102,105,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,108,111,110,101,45,100,101,101,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,108,111,110,101,45,100,101,101,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,103,101,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,119,97,114,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,105,110,115,116,97,110,99,101,44,32,67,111,110,115,116,114,117,99,116,111,114,41,32,123,32,105,102,32,40,33,40,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,67,111,110,115,116,114,117,99,116,111,114,41,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,32,112,114,111,112,115,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,112,114,111,112,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,100,101,115,99,114,105,112,116,111,114,32,61,32,112,114,111,112,115,91,105,93,59,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,61,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,124,124,32,102,97,108,115,101,59,32,100,101,115,99,114,105,112,116,111,114,46,99,111,110,102,105,103,117,114,97,98,108,101,32,61,32,116,114,117,101,59,32,105,102,32,40,92,34,118,97,108,117,101,92,34,32,105,110,32,100,101,115,99,114,105,112,116,111,114,41,32,100,101,115,99,114,105,112,116,111,114,46,119,114,105,116,97,98,108,101,32,61,32,116,114,117,101,59,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,100,101,115,99,114,105,112,116,111,114,46,107,101,121,44,32,100,101,115,99,114,105,112,116,111,114,41,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,99,114,101,97,116,101,67,108,97,115,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,112,114,111,116,111,80,114,111,112,115,44,32,115,116,97,116,105,99,80,114,111,112,115,41,32,123,32,105,102,32,40,112,114,111,116,111,80,114,111,112,115,41,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,44,32,112,114,111,116,111,80,114,111,112,115,41,59,32,105,102,32,40,115,116,97,116,105,99,80,114,111,112,115,41,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,115,116,97,116,105,99,80,114,111,112,115,41,59,32,114,101,116,117,114,110,32,67,111,110,115,116,114,117,99,116,111,114,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,67,111,110,102,105,103,32,109,97,110,97,103,101,114,32,99,108,97,115,115,92,110,92,110,118,97,114,32,66,118,67,111,110,102,105,103,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,66,118,67,111,110,102,105,103,40,41,32,123,92,110,32,32,32,32,95,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,66,118,67,111,110,102,105,103,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,36,95,99,111,110,102,105,103,32,61,32,123,125,59,92,110,32,32,125,32,47,47,32,77,101,116,104,111,100,32,116,111,32,109,101,114,103,101,32,105,110,32,117,115,101,114,32,99,111,110,102,105,103,32,112,97,114,97,109,101,116,101,114,115,92,110,92,110,92,110,32,32,95,99,114,101,97,116,101,67,108,97,115,115,40,66,118,67,111,110,102,105,103,44,32,91,123,92,110,32,32,32,32,107,101,121,58,32,92,34,115,101,116,67,111,110,102,105,103,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,116,67,111,110,102,105,103,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,102,105,103,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,123,125,59,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,99,111,110,102,105,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,102,105,103,75,101,121,115,32,61,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,41,40,99,111,110,102,105,103,41,59,92,110,32,32,32,32,32,32,99,111,110,102,105,103,75,101,121,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,117,98,67,111,110,102,105,103,32,61,32,99,111,110,102,105,103,91,107,101,121,93,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,32,61,61,61,32,39,98,114,101,97,107,112,111,105,110,116,115,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,65,114,114,97,121,41,40,115,117,98,67,111,110,102,105,103,41,32,124,124,32,115,117,98,67,111,110,102,105,103,46,108,101,110,103,116,104,32,60,32,50,32,124,124,32,115,117,98,67,111,110,102,105,103,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,98,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,83,116,114,105,110,103,41,40,98,41,32,124,124,32,98,46,108,101,110,103,116,104,32,61,61,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,119,97,114,110,41,40,39,92,34,98,114,101,97,107,112,111,105,110,116,115,92,34,32,109,117,115,116,32,98,101,32,97,110,32,97,114,114,97,121,32,111,102,32,97,116,32,108,101,97,115,116,32,50,32,98,114,101,97,107,112,111,105,110,116,32,110,97,109,101,115,39,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,78,65,77,69,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,95,99,111,110,102,105,103,91,107,101,121,93,32,61,32,40,48,44,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,108,111,110,101,68,101,101,112,41,40,115,117,98,67,111,110,102,105,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,115,117,98,67,111,110,102,105,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,109,112,111,110,101,110,116,32,112,114,111,112,32,100,101,102,97,117,108,116,115,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,95,99,111,110,102,105,103,91,107,101,121,93,32,61,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,41,40,115,117,98,67,111,110,102,105,103,41,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,99,111,110,102,105,103,44,32,112,114,111,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,115,117,98,67,111,110,102,105,103,91,112,114,111,112,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,102,105,103,91,112,114,111,112,93,32,61,32,40,48,44,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,108,111,110,101,68,101,101,112,41,40,115,117,98,67,111,110,102,105,103,91,112,114,111,112,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,110,102,105,103,59,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,95,116,104,105,115,46,36,95,99,111,110,102,105,103,91,107,101,121,93,32,124,124,32,123,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,47,47,32,67,108,101,97,114,32,116,104,101,32,99,111,110,102,105,103,92,110,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,114,101,115,101,116,67,111,110,102,105,103,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,115,101,116,67,111,110,102,105,103,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,95,99,111,110,102,105,103,32,61,32,123,125,59,92,110,32,32,32,32,125,32,47,47,32,82,101,116,117,114,110,115,32,97,32,100,101,101,112,32,99,111,112,121,32,111,102,32,116,104,101,32,117,115,101,114,32,99,111,110,102,105,103,92,110,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,103,101,116,67,111,110,102,105,103,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,67,111,110,102,105,103,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,108,111,110,101,68,101,101,112,41,40,116,104,105,115,46,36,95,99,111,110,102,105,103,41,59,92,110,32,32,32,32,125,32,47,47,32,82,101,116,117,114,110,115,32,97,32,100,101,101,112,32,99,111,112,121,32,111,102,32,116,104,101,32,99,111,110,102,105,103,32,118,97,108,117,101,92,110,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,92,34,103,101,116,67,111,110,102,105,103,86,97,108,117,101,92,34,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,67,111,110,102,105,103,86,97,108,117,101,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,108,111,110,101,68,101,101,112,41,40,40,48,44,95,103,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,103,101,116,82,97,119,41,40,116,104,105,115,46,36,95,99,111,110,102,105,103,44,32,107,101,121,44,32,100,101,102,97,117,108,116,86,97,108,117,101,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,93,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,66,118,67,111,110,102,105,103,59,92,110,125,40,41,59,32,47,47,32,77,101,116,104,111,100,32,102,111,114,32,97,112,112,108,121,105,110,103,32,97,32,103,108,111,98,97,108,32,99,111,110,102,105,103,92,110,92,110,92,110,118,97,114,32,115,101,116,67,111,110,102,105,103,32,61,32,102,117,110,99,116,105,111,110,32,115,101,116,67,111,110,102,105,103,40,41,32,123,92,110,32,32,118,97,114,32,99,111,110,102,105,103,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,123,125,59,92,110,32,32,118,97,114,32,86,117,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,32,32,47,47,32,69,110,115,117,114,101,32,119,101,32,104,97,118,101,32,97,32,96,36,98,118,67,111,110,102,105,103,96,32,79,98,106,101,99,116,32,111,110,32,116,104,101,32,86,117,101,32,112,114,111,116,111,116,121,112,101,92,110,32,32,47,47,32,87,101,32,115,101,116,32,111,110,32,86,117,101,32,97,110,100,32,79,117,114,86,117,101,32,106,117,115,116,32,105,110,32,99,97,115,101,32,99,111,110,115,117,109,101,114,32,104,97,115,32,110,111,116,32,115,101,116,32,97,110,32,97,108,105,97,115,32,111,102,32,96,118,117,101,96,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,91,95,99,111,110,115,116,97,110,116,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,78,65,77,69,93,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,112,114,111,116,111,116,121,112,101,91,95,99,111,110,115,116,97,110,116,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,78,65,77,69,93,32,61,32,86,117,101,46,112,114,111,116,111,116,121,112,101,91,95,99,111,110,115,116,97,110,116,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,78,65,77,69,93,32,124,124,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,112,114,111,116,111,116,121,112,101,91,95,99,111,110,115,116,97,110,116,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,78,65,77,69,93,32,124,124,32,110,101,119,32,66,118,67,111,110,102,105,103,40,41,59,32,47,47,32,65,112,112,108,121,32,116,104,101,32,99,111,110,102,105,103,32,118,97,108,117,101,115,92,110,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,91,95,99,111,110,115,116,97,110,116,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,78,65,77,69,93,46,115,101,116,67,111,110,102,105,103,40,99,111,110,102,105,103,41,59,92,110,125,59,32,47,47,32,77,101,116,104,111,100,32,102,111,114,32,114,101,115,101,116,116,105,110,103,32,116,104,101,32,117,115,101,114,32,99,111,110,102,105,103,92,110,47,47,32,69,120,112,111,114,116,101,100,32,102,111,114,32,116,101,115,116,105,110,103,32,112,117,114,112,111,115,101,115,32,111,110,108,121,92,110,92,110,118,97,114,32,114,101,115,101,116,67,111,110,102,105,103,32,61,32,102,117,110,99,116,105,111,110,32,114,101,115,101,116,67,111,110,102,105,103,40,41,32,123,92,110,32,32,105,102,32,40,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,112,114,111,116,111,116,121,112,101,91,95,99,111,110,115,116,97,110,116,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,78,65,77,69,93,32,38,38,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,112,114,111,116,111,116,121,112,101,91,95,99,111,110,115,116,97,110,116,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,78,65,77,69,93,46,114,101,115,101,116,67,111,110,102,105,103,41,32,123,92,110,32,32,32,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,112,114,111,116,111,116,121,112,101,91,95,99,111,110,115,116,97,110,116,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,80,82,79,80,95,78,65,77,69,93,46,114,101,115,101,116,67,111,110,102,105,103,40,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,45,115,101,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,66,114,101,97,107,112,111,105,110,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,66,114,101,97,107,112,111,105,110,116,115,67,97,99,104,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,67,97,99,104,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,66,114,101,97,107,112,111,105,110,116,115,68,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,68,111,119,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,66,114,101,97,107,112,111,105,110,116,115,68,111,119,110,67,97,99,104,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,68,111,119,110,67,97,99,104,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,66,114,101,97,107,112,111,105,110,116,115,85,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,85,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,66,114,101,97,107,112,111,105,110,116,115,85,112,67,97,99,104,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,85,112,67,97,99,104,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,67,111,110,102,105,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,67,111,110,102,105,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,67,111,110,102,105,103,86,97,108,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,67,111,110,102,105,103,86,97,108,117,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,99,111,110,102,105,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,99,111,110,102,105,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,108,111,110,101,45,100,101,101,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,108,111,110,101,45,100,101,101,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,101,109,111,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,109,111,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,101,109,111,105,122,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,86,117,101,80,114,111,116,111,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,112,114,111,116,111,116,121,112,101,59,32,47,47,32,45,45,45,32,71,101,116,116,101,114,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,65,108,108,32,109,101,116,104,111,100,115,32,114,101,116,117,114,110,32,97,32,100,101,101,112,32,99,108,111,110,101,32,40,105,109,109,117,116,97,98,108,101,41,32,99,111,112,121,32,111,102,32,116,104,101,32,99,111,110,102,105,103,32,118,97,108,117,101,44,92,110,47,47,32,116,111,32,112,114,101,118,101,110,116,32,109,117,116,97,116,105,111,110,32,111,102,32,116,104,101,32,117,115,101,114,32,99,111,110,102,105,103,32,111,98,106,101,99,116,92,110,47,47,32,71,101,116,32,116,104,101,32,99,117,114,114,101,110,116,32,99,111,110,102,105,103,92,110,92,110,118,97,114,32,103,101,116,67,111,110,102,105,103,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,67,111,110,102,105,103,40,41,32,123,92,110,32,32,118,97,114,32,98,118,67,111,110,102,105,103,32,61,32,86,117,101,80,114,111,116,111,91,95,99,111,110,115,116,97,110,116,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,78,65,77,69,93,59,92,110,32,32,114,101,116,117,114,110,32,98,118,67,111,110,102,105,103,32,63,32,98,118,67,111,110,102,105,103,46,103,101,116,67,111,110,102,105,103,40,41,32,58,32,123,125,59,92,110,125,59,32,47,47,32,77,101,116,104,111,100,32,116,111,32,103,114,97,98,32,97,32,99,111,110,102,105,103,32,118,97,108,117,101,32,98,97,115,101,100,32,111,110,32,97,32,100,111,116,116,101,100,47,97,114,114,97,121,32,110,111,116,97,116,105,111,110,32,107,101,121,92,110,92,110,118,97,114,32,103,101,116,67,111,110,102,105,103,86,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,67,111,110,102,105,103,86,97,108,117,101,40,107,101,121,41,32,123,92,110,32,32,118,97,114,32,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,118,97,114,32,98,118,67,111,110,102,105,103,32,61,32,86,117,101,80,114,111,116,111,91,95,99,111,110,115,116,97,110,116,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,78,65,77,69,93,59,92,110,32,32,114,101,116,117,114,110,32,98,118,67,111,110,102,105,103,32,63,32,98,118,67,111,110,102,105,103,46,103,101,116,67,111,110,102,105,103,86,97,108,117,101,40,107,101,121,44,32,100,101,102,97,117,108,116,86,97,108,117,101,41,32,58,32,40,48,44,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,108,111,110,101,68,101,101,112,41,40,100,101,102,97,117,108,116,86,97,108,117,101,41,59,92,110,125,59,32,47,47,32,77,101,116,104,111,100,32,116,111,32,103,114,97,98,32,97,32,99,111,110,102,105,103,32,118,97,108,117,101,32,102,111,114,32,97,32,112,97,114,116,105,99,117,108,97,114,32,99,111,109,112,111,110,101,110,116,92,110,92,110,118,97,114,32,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,40,107,101,121,41,32,123,92,110,32,32,118,97,114,32,112,114,111,112,75,101,121,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,110,117,108,108,59,92,110,32,32,118,97,114,32,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,112,97,114,116,105,99,117,108,97,114,32,99,111,110,102,105,103,32,118,97,108,117,101,32,102,111,114,32,107,101,121,32,105,102,32,115,112,101,99,105,102,105,101,100,44,92,110,32,32,47,47,32,111,116,104,101,114,119,105,115,101,32,119,101,32,114,101,116,117,114,110,32,116,104,101,32,102,117,108,108,32,99,111,110,102,105,103,32,40,111,114,32,97,110,32,101,109,112,116,121,32,111,98,106,101,99,116,32,105,102,32,110,111,116,32,102,111,117,110,100,41,92,110,32,32,114,101,116,117,114,110,32,112,114,111,112,75,101,121,32,63,32,103,101,116,67,111,110,102,105,103,86,97,108,117,101,40,92,34,92,34,46,99,111,110,99,97,116,40,107,101,121,44,32,92,34,46,92,34,41,46,99,111,110,99,97,116,40,112,114,111,112,75,101,121,41,44,32,100,101,102,97,117,108,116,86,97,108,117,101,41,32,58,32,103,101,116,67,111,110,102,105,103,86,97,108,117,101,40,107,101,121,44,32,123,125,41,59,92,110,125,59,32,47,47,32,71,101,116,32,97,108,108,32,98,114,101,97,107,112,111,105,110,116,32,110,97,109,101,115,92,110,92,110,118,97,114,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,101,116,67,111,110,102,105,103,86,97,108,117,101,40,39,98,114,101,97,107,112,111,105,110,116,115,39,44,32,95,99,111,110,115,116,97,110,116,115,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,68,69,70,65,85,76,84,95,66,82,69,65,75,80,79,73,78,84,41,59,92,110,125,59,32,47,47,32,80,114,105,118,97,116,101,32,109,101,116,104,111,100,32,102,111,114,32,99,97,99,104,105,110,103,32,98,114,101,97,107,112,111,105,110,116,32,110,97,109,101,115,92,110,92,110,118,97,114,32,95,103,101,116,66,114,101,97,107,112,111,105,110,116,115,67,97,99,104,101,100,32,61,32,40,48,44,95,109,101,109,111,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,101,109,111,105,122,101,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,40,41,59,92,110,125,41,59,32,47,47,32,71,101,116,32,97,108,108,32,98,114,101,97,107,112,111,105,110,116,32,110,97,109,101,115,32,40,99,97,99,104,101,100,41,92,110,92,110,92,110,118,97,114,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,67,97,99,104,101,100,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,67,97,99,104,101,100,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,108,111,110,101,68,101,101,112,41,40,95,103,101,116,66,114,101,97,107,112,111,105,110,116,115,67,97,99,104,101,100,40,41,41,59,92,110,125,59,32,47,47,32,71,101,116,32,98,114,101,97,107,112,111,105,110,116,115,32,119,105,116,104,32,116,104,101,32,115,109,97,108,108,101,115,116,32,98,114,101,97,107,112,111,105,110,116,32,115,101,116,32,97,115,32,39,39,92,110,47,47,32,85,115,101,102,117,108,32,102,111,114,32,99,111,109,112,111,110,101,110,116,115,32,116,104,97,116,32,99,114,101,97,116,101,32,98,114,101,97,107,112,111,105,110,116,32,115,112,101,99,105,102,105,99,32,112,114,111,112,115,92,110,92,110,118,97,114,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,85,112,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,85,112,40,41,32,123,92,110,32,32,118,97,114,32,98,114,101,97,107,112,111,105,110,116,115,32,61,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,40,41,59,92,110,32,32,98,114,101,97,107,112,111,105,110,116,115,91,48,93,32,61,32,39,39,59,92,110,32,32,114,101,116,117,114,110,32,98,114,101,97,107,112,111,105,110,116,115,59,92,110,125,59,32,47,47,32,71,101,116,32,98,114,101,97,107,112,111,105,110,116,115,32,119,105,116,104,32,116,104,101,32,115,109,97,108,108,101,115,116,32,98,114,101,97,107,112,111,105,110,116,32,115,101,116,32,97,115,32,39,39,32,40,99,97,99,104,101,100,41,92,110,47,47,32,85,115,101,102,117,108,32,102,111,114,32,99,111,109,112,111,110,101,110,116,115,32,116,104,97,116,32,99,114,101,97,116,101,32,98,114,101,97,107,112,111,105,110,116,32,115,112,101,99,105,102,105,99,32,112,114,111,112,115,92,110,92,110,118,97,114,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,85,112,67,97,99,104,101,100,32,61,32,40,48,44,95,109,101,109,111,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,101,109,111,105,122,101,41,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,98,114,101,97,107,112,111,105,110,116,115,32,61,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,67,97,99,104,101,100,40,41,59,92,110,32,32,98,114,101,97,107,112,111,105,110,116,115,91,48,93,32,61,32,39,39,59,92,110,32,32,114,101,116,117,114,110,32,98,114,101,97,107,112,111,105,110,116,115,59,92,110,125,41,59,32,47,47,32,71,101,116,32,98,114,101,97,107,112,111,105,110,116,115,32,119,105,116,104,32,116,104,101,32,108,97,114,103,101,115,116,32,98,114,101,97,107,112,111,105,110,116,32,115,101,116,32,97,115,32,39,39,92,110,92,110,118,97,114,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,68,111,119,110,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,68,111,119,110,40,41,32,123,92,110,32,32,118,97,114,32,98,114,101,97,107,112,111,105,110,116,115,32,61,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,40,41,59,92,110,32,32,98,114,101,97,107,112,111,105,110,116,115,91,98,114,101,97,107,112,111,105,110,116,115,46,108,101,110,103,116,104,32,45,32,49,93,32,61,32,39,39,59,92,110,32,32,114,101,116,117,114,110,32,98,114,101,97,107,112,111,105,110,116,115,59,92,110,125,59,32,47,47,32,71,101,116,32,98,114,101,97,107,112,111,105,110,116,115,32,119,105,116,104,32,116,104,101,32,108,97,114,103,101,115,116,32,98,114,101,97,107,112,111,105,110,116,32,115,101,116,32,97,115,32,39,39,32,40,99,97,99,104,101,100,41,92,110,47,47,32,85,115,101,102,117,108,32,102,111,114,32,99,111,109,112,111,110,101,110,116,115,32,116,104,97,116,32,99,114,101,97,116,101,32,98,114,101,97,107,112,111,105,110,116,32,115,112,101,99,105,102,105,99,32,112,114,111,112,115,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,119,101,32,100,111,110,39,116,32,117,115,101,32,116,104,105,115,32,109,101,116,104,111,100,32,97,110,121,119,104,101,114,101,44,32,121,101,116,32,42,47,92,110,92,110,118,97,114,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,68,111,119,110,67,97,99,104,101,100,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,68,111,119,110,67,97,99,104,101,100,40,41,32,123,92,110,32,32,118,97,114,32,98,114,101,97,107,112,111,105,110,116,115,32,61,32,103,101,116,66,114,101,97,107,112,111,105,110,116,115,67,97,99,104,101,100,40,41,59,92,110,32,32,98,114,101,97,107,112,111,105,110,116,115,91,98,114,101,97,107,112,111,105,110,116,115,46,108,101,110,103,116,104,32,45,32,49,93,32,61,32,39,39,59,92,110,32,32,114,101,116,117,114,110,32,98,114,101,97,107,112,111,105,110,116,115,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,115,115,45,101,115,99,97,112,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,115,115,45,101,115,99,97,112,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,115,69,115,99,97,112,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,115,115,69,115,99,97,112,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,101,115,99,97,112,101,67,104,97,114,32,61,32,102,117,110,99,116,105,111,110,32,101,115,99,97,112,101,67,104,97,114,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,39,92,92,92,92,39,32,43,32,118,97,108,117,101,59,92,110,125,59,32,47,47,32,84,104,101,32,96,99,115,115,69,115,99,97,112,101,40,41,96,32,117,116,105,108,32,105,115,32,98,97,115,101,100,32,111,110,32,116,104,105,115,32,96,67,83,83,46,101,115,99,97,112,101,40,41,96,32,112,111,108,121,102,105,108,108,58,92,110,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,109,97,116,104,105,97,115,98,121,110,101,110,115,47,67,83,83,46,101,115,99,97,112,101,92,110,92,110,92,110,118,97,114,32,99,115,115,69,115,99,97,112,101,32,61,32,102,117,110,99,116,105,111,110,32,99,115,115,69,115,99,97,112,101,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,108,117,101,32,61,32,40,48,44,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,111,83,116,114,105,110,103,41,40,118,97,108,117,101,41,59,92,110,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,118,97,108,117,101,46,108,101,110,103,116,104,59,92,110,32,32,118,97,114,32,102,105,114,115,116,67,104,97,114,67,111,100,101,32,61,32,118,97,108,117,101,46,99,104,97,114,67,111,100,101,65,116,40,48,41,59,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,46,115,112,108,105,116,40,39,39,41,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,117,108,116,44,32,99,104,97,114,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,99,104,97,114,67,111,100,101,32,61,32,118,97,108,117,101,46,99,104,97,114,67,111,100,101,65,116,40,105,110,100,101,120,41,59,32,47,47,32,73,102,32,116,104,101,32,99,104,97,114,97,99,116,101,114,32,105,115,32,78,85,76,76,32,40,85,43,48,48,48,48,41,44,32,117,115,101,32,40,85,43,70,70,70,68,41,32,97,115,32,114,101,112,108,97,99,101,109,101,110,116,92,110,92,110,32,32,32,32,105,102,32,40,99,104,97,114,67,111,100,101,32,61,61,61,32,48,120,48,48,48,48,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,43,32,92,34,92,92,117,70,70,70,68,92,34,59,92,110,32,32,32,32,125,32,47,47,32,73,102,32,116,104,101,32,99,104,97,114,97,99,116,101,114,32,46,46,46,92,110,92,110,92,110,32,32,32,32,105,102,32,40,32,47,47,32,46,46,46,32,105,115,32,85,43,48,48,55,70,32,79,82,92,110,32,32,32,32,99,104,97,114,67,111,100,101,32,61,61,61,32,48,120,48,48,55,102,32,124,124,32,47,47,32,46,46,46,32,105,115,32,105,110,32,116,104,101,32,114,97,110,103,101,32,91,92,92,49,45,92,92,49,70,93,32,40,85,43,48,48,48,49,32,116,111,32,85,43,48,48,49,70,41,32,79,82,32,46,46,46,92,110,32,32,32,32,99,104,97,114,67,111,100,101,32,62,61,32,48,120,48,48,48,49,32,38,38,32,99,104,97,114,67,111,100,101,32,60,61,32,48,120,48,48,49,102,32,124,124,32,47,47,32,46,46,46,32,105,115,32,116,104,101,32,102,105,114,115,116,32,99,104,97,114,97,99,116,101,114,32,97,110,100,32,105,115,32,105,110,32,116,104,101,32,114,97,110,103,101,32,91,48,45,57,93,32,40,85,43,48,48,51,48,32,116,111,32,85,43,48,48,51,57,41,32,79,82,32,46,46,46,92,110,32,32,32,32,105,110,100,101,120,32,61,61,61,32,48,32,38,38,32,99,104,97,114,67,111,100,101,32,62,61,32,48,120,48,48,51,48,32,38,38,32,99,104,97,114,67,111,100,101,32,60,61,32,48,120,48,48,51,57,32,124,124,32,47,47,32,46,46,46,32,105,115,32,116,104,101,32,115,101,99,111,110,100,32,99,104,97,114,97,99,116,101,114,32,97,110,100,32,105,115,32,105,110,32,116,104,101,32,114,97,110,103,101,32,91,48,45,57,93,32,40,85,43,48,48,51,48,32,116,111,32,85,43,48,48,51,57,41,92,110,32,32,32,32,47,47,32,97,110,100,32,116,104,101,32,102,105,114,115,116,32,99,104,97,114,97,99,116,101,114,32,105,115,32,97,32,96,45,96,32,40,85,43,48,48,50,68,41,32,46,46,46,92,110,32,32,32,32,105,110,100,101,120,32,61,61,61,32,49,32,38,38,32,99,104,97,114,67,111,100,101,32,62,61,32,48,120,48,48,51,48,32,38,38,32,99,104,97,114,67,111,100,101,32,60,61,32,48,120,48,48,51,57,32,38,38,32,102,105,114,115,116,67,104,97,114,67,111,100,101,32,61,61,61,32,48,120,48,48,50,100,41,32,123,92,110,32,32,32,32,32,32,47,47,32,46,46,46,32,104,116,116,112,115,58,47,47,100,114,97,102,116,115,46,99,115,115,119,103,46,111,114,103,47,99,115,115,111,109,47,35,101,115,99,97,112,101,45,97,45,99,104,97,114,97,99,116,101,114,45,97,115,45,99,111,100,101,45,112,111,105,110,116,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,43,32,101,115,99,97,112,101,67,104,97,114,40,92,34,92,34,46,99,111,110,99,97,116,40,99,104,97,114,67,111,100,101,46,116,111,83,116,114,105,110,103,40,49,54,41,44,32,92,34,32,92,34,41,41,59,92,110,32,32,32,32,125,32,47,47,32,73,102,32,116,104,101,32,99,104,97,114,97,99,116,101,114,32,46,46,46,92,110,92,110,92,110,32,32,32,32,105,102,32,40,32,47,47,32,46,46,46,32,105,115,32,116,104,101,32,102,105,114,115,116,32,99,104,97,114,97,99,116,101,114,32,65,78,68,32,46,46,46,92,110,32,32,32,32,105,110,100,101,120,32,61,61,61,32,48,32,38,38,32,47,47,32,46,46,46,32,105,115,32,97,32,96,45,96,32,40,85,43,48,48,50,68,41,32,65,78,68,32,46,46,46,92,110,32,32,32,32,99,104,97,114,67,111,100,101,32,61,61,61,32,48,120,48,48,50,100,32,38,38,32,47,47,32,46,46,46,32,116,104,101,114,101,32,105,115,32,110,111,32,115,101,99,111,110,100,32,99,104,97,114,97,99,116,101,114,32,46,46,46,92,110,32,32,32,32,108,101,110,103,116,104,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,47,47,32,46,46,46,32,117,115,101,32,116,104,101,32,101,115,99,97,112,101,100,32,99,104,97,114,97,99,116,101,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,43,32,101,115,99,97,112,101,67,104,97,114,40,99,104,97,114,41,59,92,110,32,32,32,32,125,32,47,47,32,73,102,32,116,104,101,32,99,104,97,114,97,99,116,101,114,32,46,46,46,92,110,92,110,92,110,32,32,32,32,105,102,32,40,32,47,47,32,46,46,46,32,105,115,32,103,114,101,97,116,101,114,32,116,104,97,110,32,111,114,32,101,113,117,97,108,32,116,111,32,85,43,48,48,56,48,32,79,82,32,46,46,46,92,110,32,32,32,32,99,104,97,114,67,111,100,101,32,62,61,32,48,120,48,48,56,48,32,124,124,32,47,47,32,46,46,46,32,105,115,32,96,45,96,32,40,85,43,48,48,50,68,41,32,79,82,32,46,46,46,92,110,32,32,32,32,99,104,97,114,67,111,100,101,32,61,61,61,32,48,120,48,48,50,100,32,124,124,32,47,47,32,46,46,46,32,105,115,32,96,95,96,32,40,85,43,48,48,53,70,41,32,79,82,32,46,46,46,92,110,32,32,32,32,99,104,97,114,67,111,100,101,32,61,61,61,32,48,120,48,48,53,102,32,124,124,32,47,47,32,46,46,46,32,105,115,32,105,110,32,116,104,101,32,114,97,110,103,101,32,91,48,45,57,93,32,40,85,43,48,48,51,48,32,116,111,32,85,43,48,48,51,57,41,32,79,82,32,46,46,46,92,110,32,32,32,32,99,104,97,114,67,111,100,101,32,62,61,32,48,120,48,48,51,48,32,38,38,32,99,104,97,114,67,111,100,101,32,60,61,32,48,120,48,48,51,57,32,124,124,32,47,47,32,46,46,46,32,105,115,32,105,110,32,116,104,101,32,114,97,110,103,101,32,91,65,45,90,93,32,40,85,43,48,48,52,49,32,116,111,32,85,43,48,48,53,65,41,32,79,82,32,46,46,46,92,110,32,32,32,32,99,104,97,114,67,111,100,101,32,62,61,32,48,120,48,48,52,49,32,38,38,32,99,104,97,114,67,111,100,101,32,60,61,32,48,120,48,48,53,97,32,124,124,32,47,47,32,46,46,46,32,105,115,32,105,110,32,116,104,101,32,114,97,110,103,101,32,91,97,45,122,93,32,40,85,43,48,48,54,49,32,116,111,32,85,43,48,48,55,65,41,32,46,46,46,92,110,32,32,32,32,99,104,97,114,67,111,100,101,32,62,61,32,48,120,48,48,54,49,32,38,38,32,99,104,97,114,67,111,100,101,32,60,61,32,48,120,48,48,55,97,41,32,123,92,110,32,32,32,32,32,32,47,47,32,46,46,46,32,117,115,101,32,116,104,101,32,99,104,97,114,97,99,116,101,114,32,105,116,115,101,108,102,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,43,32,99,104,97,114,59,92,110,32,32,32,32,125,32,47,47,32,79,116,104,101,114,119,105,115,101,32,117,115,101,32,116,104,101,32,101,115,99,97,112,101,100,32,99,104,97,114,97,99,116,101,114,92,110,32,32,32,32,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,100,114,97,102,116,115,46,99,115,115,119,103,46,111,114,103,47,99,115,115,111,109,47,35,101,115,99,97,112,101,45,97,45,99,104,97,114,97,99,116,101,114,92,110,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,43,32,101,115,99,97,112,101,67,104,97,114,40,99,104,97,114,41,59,92,110,32,32,125,44,32,39,39,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,115,115,45,101,115,99,97,112,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,100,100,89,101,97,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,100,100,89,101,97,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,110,115,116,114,97,105,110,68,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,110,115,116,114,97,105,110,68,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,101,97,116,101,68,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,114,101,97,116,101,68,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,101,97,116,101,68,97,116,101,70,111,114,109,97,116,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,114,101,97,116,101,68,97,116,101,70,111,114,109,97,116,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,97,116,101,115,69,113,117,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,97,116,101,115,69,113,117,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,105,114,115,116,68,97,116,101,79,102,77,111,110,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,105,114,115,116,68,97,116,101,79,102,77,111,110,116,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,97,116,89,77,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,97,116,89,77,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,97,115,116,68,97,116,101,79,102,77,111,110,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,97,115,116,68,97,116,101,79,102,77,111,110,116,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,111,110,101,68,101,99,97,100,101,65,103,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,111,110,101,68,101,99,97,100,101,65,103,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,111,110,101,68,101,99,97,100,101,65,104,101,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,111,110,101,68,101,99,97,100,101,65,104,101,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,111,110,101,77,111,110,116,104,65,103,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,111,110,101,77,111,110,116,104,65,103,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,111,110,101,77,111,110,116,104,65,104,101,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,111,110,101,77,111,110,116,104,65,104,101,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,111,110,101,89,101,97,114,65,103,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,111,110,101,89,101,97,114,65,103,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,111,110,101,89,101,97,114,65,104,101,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,111,110,101,89,101,97,114,65,104,101,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,114,115,101,89,77,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,97,114,115,101,89,77,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,115,111,108,118,101,76,111,99,97,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,115,111,108,118,101,76,111,99,97,108,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,100,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,100,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,115,108,105,99,101,100,84,111,65,114,114,97,121,40,97,114,114,44,32,105,41,32,123,32,114,101,116,117,114,110,32,95,97,114,114,97,121,87,105,116,104,72,111,108,101,115,40,97,114,114,41,32,124,124,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,76,105,109,105,116,40,97,114,114,44,32,105,41,32,124,124,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,44,32,105,41,32,124,124,32,95,110,111,110,73,116,101,114,97,98,108,101,82,101,115,116,40,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,110,111,110,73,116,101,114,97,98,108,101,82,101,115,116,40,41,32,123,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,100,101,115,116,114,117,99,116,117,114,101,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,92,34,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,117,110,115,117,112,112,111,114,116,101,100,73,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,32,123,32,105,102,32,40,33,111,41,32,114,101,116,117,114,110,59,32,105,102,32,40,116,121,112,101,111,102,32,111,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,118,97,114,32,110,32,61,32,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,111,41,46,115,108,105,99,101,40,56,44,32,45,49,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,79,98,106,101,99,116,92,34,32,38,38,32,111,46,99,111,110,115,116,114,117,99,116,111,114,41,32,110,32,61,32,111,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,59,32,105,102,32,40,110,32,61,61,61,32,92,34,77,97,112,92,34,32,124,124,32,110,32,61,61,61,32,92,34,83,101,116,92,34,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,111,41,59,32,105,102,32,40,110,32,61,61,61,32,92,34,65,114,103,117,109,101,110,116,115,92,34,32,124,124,32,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,41,32,114,101,116,117,114,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,111,44,32,109,105,110,76,101,110,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,76,105,107,101,84,111,65,114,114,97,121,40,97,114,114,44,32,108,101,110,41,32,123,32,105,102,32,40,108,101,110,32,61,61,32,110,117,108,108,32,124,124,32,108,101,110,32,62,32,97,114,114,46,108,101,110,103,116,104,41,32,108,101,110,32,61,32,97,114,114,46,108,101,110,103,116,104,59,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,97,114,114,50,32,61,32,110,101,119,32,65,114,114,97,121,40,108,101,110,41,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,32,97,114,114,50,91,105,93,32,61,32,97,114,114,91,105,93,59,32,125,32,114,101,116,117,114,110,32,97,114,114,50,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,76,105,109,105,116,40,97,114,114,44,32,105,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,124,124,32,33,40,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,97,114,114,41,41,41,32,114,101,116,117,114,110,59,32,118,97,114,32,95,97,114,114,32,61,32,91,93,59,32,118,97,114,32,95,110,32,61,32,116,114,117,101,59,32,118,97,114,32,95,100,32,61,32,102,97,108,115,101,59,32,118,97,114,32,95,101,32,61,32,117,110,100,101,102,105,110,101,100,59,32,116,114,121,32,123,32,102,111,114,32,40,118,97,114,32,95,105,32,61,32,97,114,114,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,44,32,95,115,59,32,33,40,95,110,32,61,32,40,95,115,32,61,32,95,105,46,110,101,120,116,40,41,41,46,100,111,110,101,41,59,32,95,110,32,61,32,116,114,117,101,41,32,123,32,95,97,114,114,46,112,117,115,104,40,95,115,46,118,97,108,117,101,41,59,32,105,102,32,40,105,32,38,38,32,95,97,114,114,46,108,101,110,103,116,104,32,61,61,61,32,105,41,32,98,114,101,97,107,59,32,125,32,125,32,99,97,116,99,104,32,40,101,114,114,41,32,123,32,95,100,32,61,32,116,114,117,101,59,32,95,101,32,61,32,101,114,114,59,32,125,32,102,105,110,97,108,108,121,32,123,32,116,114,121,32,123,32,105,102,32,40,33,95,110,32,38,38,32,95,105,91,92,34,114,101,116,117,114,110,92,34,93,32,33,61,32,110,117,108,108,41,32,95,105,91,92,34,114,101,116,117,114,110,92,34,93,40,41,59,32,125,32,102,105,110,97,108,108,121,32,123,32,105,102,32,40,95,100,41,32,116,104,114,111,119,32,95,101,59,32,125,32,125,32,114,101,116,117,114,110,32,95,97,114,114,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,87,105,116,104,72,111,108,101,115,40,97,114,114,41,32,123,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,41,41,32,114,101,116,117,114,110,32,97,114,114,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,99,111,110,115,116,114,117,99,116,40,80,97,114,101,110,116,44,32,97,114,103,115,44,32,67,108,97,115,115,41,32,123,32,105,102,32,40,95,105,115,78,97,116,105,118,101,82,101,102,108,101,99,116,67,111,110,115,116,114,117,99,116,40,41,41,32,123,32,95,99,111,110,115,116,114,117,99,116,32,61,32,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,59,32,125,32,101,108,115,101,32,123,32,95,99,111,110,115,116,114,117,99,116,32,61,32,102,117,110,99,116,105,111,110,32,95,99,111,110,115,116,114,117,99,116,40,80,97,114,101,110,116,44,32,97,114,103,115,44,32,67,108,97,115,115,41,32,123,32,118,97,114,32,97,32,61,32,91,110,117,108,108,93,59,32,97,46,112,117,115,104,46,97,112,112,108,121,40,97,44,32,97,114,103,115,41,59,32,118,97,114,32,67,111,110,115,116,114,117,99,116,111,114,32,61,32,70,117,110,99,116,105,111,110,46,98,105,110,100,46,97,112,112,108,121,40,80,97,114,101,110,116,44,32,97,41,59,32,118,97,114,32,105,110,115,116,97,110,99,101,32,61,32,110,101,119,32,67,111,110,115,116,114,117,99,116,111,114,40,41,59,32,105,102,32,40,67,108,97,115,115,41,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,105,110,115,116,97,110,99,101,44,32,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,41,59,32,114,101,116,117,114,110,32,105,110,115,116,97,110,99,101,59,32,125,59,32,125,32,114,101,116,117,114,110,32,95,99,111,110,115,116,114,117,99,116,46,97,112,112,108,121,40,110,117,108,108,44,32,97,114,103,117,109,101,110,116,115,41,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,115,78,97,116,105,118,101,82,101,102,108,101,99,116,67,111,110,115,116,114,117,99,116,40,41,32,123,32,105,102,32,40,116,121,112,101,111,102,32,82,101,102,108,101,99,116,32,61,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,32,124,124,32,33,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,32,105,102,32,40,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,46,115,104,97,109,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,32,105,102,32,40,116,121,112,101,111,102,32,80,114,111,120,121,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,114,101,116,117,114,110,32,116,114,117,101,59,32,116,114,121,32,123,32,68,97,116,101,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,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,40,68,97,116,101,44,32,91,93,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,125,41,41,59,32,114,101,116,117,114,110,32,116,114,117,101,59,32,125,32,99,97,116,99,104,32,40,101,41,32,123,32,114,101,116,117,114,110,32,102,97,108,115,101,59,32,125,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,44,32,112,41,32,123,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,32,61,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,32,124,124,32,102,117,110,99,116,105,111,110,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,44,32,112,41,32,123,32,111,46,95,95,112,114,111,116,111,95,95,32,61,32,112,59,32,114,101,116,117,114,110,32,111,59,32,125,59,32,114,101,116,117,114,110,32,95,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,44,32,112,41,59,32,125,92,110,92,110,47,47,32,68,97,116,101,32,117,116,105,108,105,116,121,32,102,117,110,99,116,105,111,110,115,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,68,97,116,101,32,117,116,105,108,105,116,121,32,109,101,116,104,111,100,115,32,45,45,45,92,110,47,47,32,67,114,101,97,116,101,32,111,114,32,99,108,111,110,101,32,97,32,100,97,116,101,32,40,96,110,101,119,32,68,97,116,101,40,46,46,46,41,96,32,115,104,111,114,116,99,117,116,41,92,110,92,110,118,97,114,32,99,114,101,97,116,101,68,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,68,97,116,101,40,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,95,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,32,97,114,103,115,32,61,32,110,101,119,32,65,114,114,97,121,40,95,108,101,110,41,44,32,95,107,101,121,32,61,32,48,59,32,95,107,101,121,32,60,32,95,108,101,110,59,32,95,107,101,121,43,43,41,32,123,92,110,32,32,32,32,97,114,103,115,91,95,107,101,121,93,32,61,32,97,114,103,117,109,101,110,116,115,91,95,107,101,121,93,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,95,99,111,110,115,116,114,117,99,116,40,68,97,116,101,44,32,97,114,103,115,41,59,92,110,125,59,32,47,47,32,80,97,114,115,101,32,97,32,100,97,116,101,32,115,116,105,110,103,44,32,111,114,32,68,97,116,101,32,111,98,106,101,99,116,44,32,105,110,116,111,32,97,32,68,97,116,101,32,111,98,106,101,99,116,32,40,119,105,116,104,32,110,111,32,116,105,109,101,32,105,110,102,111,114,109,97,116,105,111,110,41,92,110,92,110,118,97,114,32,112,97,114,115,101,89,77,68,32,61,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,89,77,68,40,100,97,116,101,41,32,123,92,110,32,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,83,116,114,105,110,103,41,40,100,97,116,101,41,32,38,38,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,82,88,95,68,65,84,69,46,116,101,115,116,40,100,97,116,101,46,116,114,105,109,40,41,41,41,32,123,92,110,32,32,32,32,118,97,114,32,95,100,97,116,101,36,115,112,108,105,116,36,109,97,112,32,61,32,100,97,116,101,46,115,112,108,105,116,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,82,88,95,68,65,84,69,95,83,80,76,73,84,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,118,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,73,110,116,101,103,101,114,41,40,118,44,32,49,41,59,92,110,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,95,100,97,116,101,36,115,112,108,105,116,36,109,97,112,50,32,61,32,95,115,108,105,99,101,100,84,111,65,114,114,97,121,40,95,100,97,116,101,36,115,112,108,105,116,36,109,97,112,44,32,51,41,44,92,110,32,32,32,32,32,32,32,32,121,101,97,114,32,61,32,95,100,97,116,101,36,115,112,108,105,116,36,109,97,112,50,91,48,93,44,92,110,32,32,32,32,32,32,32,32,109,111,110,116,104,32,61,32,95,100,97,116,101,36,115,112,108,105,116,36,109,97,112,50,91,49,93,44,92,110,32,32,32,32,32,32,32,32,100,97,121,32,61,32,95,100,97,116,101,36,115,112,108,105,116,36,109,97,112,50,91,50,93,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,68,97,116,101,40,121,101,97,114,44,32,109,111,110,116,104,32,45,32,49,44,32,100,97,121,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,68,97,116,101,41,40,100,97,116,101,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,68,97,116,101,40,100,97,116,101,46,103,101,116,70,117,108,108,89,101,97,114,40,41,44,32,100,97,116,101,46,103,101,116,77,111,110,116,104,40,41,44,32,100,97,116,101,46,103,101,116,68,97,116,101,40,41,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,125,59,32,47,47,32,70,111,114,109,97,116,32,97,32,100,97,116,101,32,111,98,106,101,99,116,32,97,115,32,96,89,89,89,89,45,77,77,45,68,68,96,32,102,111,114,109,97,116,92,110,92,110,118,97,114,32,102,111,114,109,97,116,89,77,68,32,61,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,89,77,68,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,32,61,32,112,97,114,115,101,89,77,68,40,100,97,116,101,41,59,92,110,92,110,32,32,105,102,32,40,33,100,97,116,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,121,101,97,114,32,61,32,100,97,116,101,46,103,101,116,70,117,108,108,89,101,97,114,40,41,59,92,110,32,32,118,97,114,32,109,111,110,116,104,32,61,32,92,34,48,92,34,46,99,111,110,99,97,116,40,100,97,116,101,46,103,101,116,77,111,110,116,104,40,41,32,43,32,49,41,46,115,108,105,99,101,40,45,50,41,59,92,110,32,32,118,97,114,32,100,97,121,32,61,32,92,34,48,92,34,46,99,111,110,99,97,116,40,100,97,116,101,46,103,101,116,68,97,116,101,40,41,41,46,115,108,105,99,101,40,45,50,41,59,92,110,32,32,114,101,116,117,114,110,32,92,34,92,34,46,99,111,110,99,97,116,40,121,101,97,114,44,32,92,34,45,92,34,41,46,99,111,110,99,97,116,40,109,111,110,116,104,44,32,92,34,45,92,34,41,46,99,111,110,99,97,116,40,100,97,121,41,59,92,110,125,59,32,47,47,32,71,105,118,101,110,32,97,32,108,111,99,97,108,101,32,40,111,114,32,108,111,99,97,108,101,115,41,44,32,114,101,115,111,108,118,101,32,116,104,101,32,98,114,111,119,115,101,114,32,97,118,97,105,108,97,98,108,101,32,108,111,99,97,108,101,92,110,92,110,118,97,114,32,114,101,115,111,108,118,101,76,111,99,97,108,101,32,61,32,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,76,111,99,97,108,101,40,108,111,99,97,108,101,115,41,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,123,92,110,32,32,118,97,114,32,99,97,108,101,110,100,97,114,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,95,99,111,110,115,116,97,110,116,115,95,100,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,67,65,76,69,78,68,65,82,95,71,82,69,71,79,82,89,59,92,110,32,32,108,111,99,97,108,101,115,32,61,32,40,48,44,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,111,110,99,97,116,41,40,108,111,99,97,108,101,115,41,46,102,105,108,116,101,114,40,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,32,32,118,97,114,32,102,109,116,32,61,32,110,101,119,32,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,108,111,99,97,108,101,115,44,32,123,92,110,32,32,32,32,99,97,108,101,110,100,97,114,58,32,99,97,108,101,110,100,97,114,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,102,109,116,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,40,41,46,108,111,99,97,108,101,59,92,110,125,59,32,47,47,32,67,114,101,97,116,101,32,97,32,96,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,96,32,102,111,114,109,97,116,116,101,114,32,102,117,110,99,116,105,111,110,92,110,92,110,118,97,114,32,99,114,101,97,116,101,68,97,116,101,70,111,114,109,97,116,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,68,97,116,101,70,111,114,109,97,116,116,101,114,40,108,111,99,97,108,101,44,32,111,112,116,105,111,110,115,41,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,123,92,110,32,32,118,97,114,32,100,116,102,32,61,32,110,101,119,32,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,108,111,99,97,108,101,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,114,101,116,117,114,110,32,100,116,102,46,102,111,114,109,97,116,59,92,110,125,59,32,47,47,32,68,101,116,101,114,109,105,110,101,32,105,102,32,116,119,111,32,100,97,116,101,115,32,97,114,101,32,116,104,101,32,115,97,109,101,32,100,97,116,101,32,40,105,103,110,111,114,105,110,103,32,116,105,109,101,32,112,111,114,116,105,111,110,41,92,110,92,110,118,97,114,32,100,97,116,101,115,69,113,117,97,108,32,61,32,102,117,110,99,116,105,111,110,32,100,97,116,101,115,69,113,117,97,108,40,100,97,116,101,49,44,32,100,97,116,101,50,41,32,123,92,110,32,32,47,47,32,82,101,116,117,114,110,115,32,116,114,117,101,32,111,102,32,116,104,101,32,100,97,116,101,32,112,111,114,116,105,111,110,32,111,102,32,116,119,111,32,100,97,116,101,32,111,98,106,101,99,116,115,32,97,114,101,32,101,113,117,97,108,92,110,32,32,47,47,32,87,101,32,100,111,110,39,116,32,99,111,109,112,97,114,101,32,116,104,101,32,116,105,109,101,32,112,111,114,116,105,111,110,92,110,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,89,77,68,40,100,97,116,101,49,41,32,61,61,61,32,102,111,114,109,97,116,89,77,68,40,100,97,116,101,50,41,59,92,110,125,59,32,47,47,32,45,45,45,32,68,97,116,101,32,92,34,109,97,116,104,92,34,32,117,116,105,108,105,116,121,32,109,101,116,104,111,100,115,32,40,102,111,114,32,66,67,97,108,101,110,100,97,114,32,99,111,109,112,111,110,101,110,116,32,109,97,105,110,108,121,41,32,45,45,45,92,110,92,110,118,97,114,32,102,105,114,115,116,68,97,116,101,79,102,77,111,110,116,104,32,61,32,102,117,110,99,116,105,111,110,32,102,105,114,115,116,68,97,116,101,79,102,77,111,110,116,104,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,32,61,32,99,114,101,97,116,101,68,97,116,101,40,100,97,116,101,41,59,92,110,32,32,100,97,116,101,46,115,101,116,68,97,116,101,40,49,41,59,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,59,92,110,125,59,92,110,118,97,114,32,108,97,115,116,68,97,116,101,79,102,77,111,110,116,104,32,61,32,102,117,110,99,116,105,111,110,32,108,97,115,116,68,97,116,101,79,102,77,111,110,116,104,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,32,61,32,99,114,101,97,116,101,68,97,116,101,40,100,97,116,101,41,59,92,110,32,32,100,97,116,101,46,115,101,116,77,111,110,116,104,40,100,97,116,101,46,103,101,116,77,111,110,116,104,40,41,32,43,32,49,41,59,92,110,32,32,100,97,116,101,46,115,101,116,68,97,116,101,40,48,41,59,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,59,92,110,125,59,92,110,118,97,114,32,97,100,100,89,101,97,114,115,32,61,32,102,117,110,99,116,105,111,110,32,97,100,100,89,101,97,114,115,40,100,97,116,101,44,32,110,117,109,98,101,114,79,102,89,101,97,114,115,41,32,123,92,110,32,32,100,97,116,101,32,61,32,99,114,101,97,116,101,68,97,116,101,40,100,97,116,101,41,59,92,110,32,32,118,97,114,32,109,111,110,116,104,32,61,32,100,97,116,101,46,103,101,116,77,111,110,116,104,40,41,59,92,110,32,32,100,97,116,101,46,115,101,116,70,117,108,108,89,101,97,114,40,100,97,116,101,46,103,101,116,70,117,108,108,89,101,97,114,40,41,32,43,32,110,117,109,98,101,114,79,102,89,101,97,114,115,41,59,32,47,47,32,72,97,110,100,108,101,32,70,101,98,32,50,57,116,104,32,102,111,114,32,108,101,97,112,32,121,101,97,114,115,92,110,92,110,32,32,105,102,32,40,100,97,116,101,46,103,101,116,77,111,110,116,104,40,41,32,33,61,61,32,109,111,110,116,104,41,32,123,92,110,32,32,32,32,100,97,116,101,46,115,101,116,68,97,116,101,40,48,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,59,92,110,125,59,92,110,118,97,114,32,111,110,101,77,111,110,116,104,65,103,111,32,61,32,102,117,110,99,116,105,111,110,32,111,110,101,77,111,110,116,104,65,103,111,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,32,61,32,99,114,101,97,116,101,68,97,116,101,40,100,97,116,101,41,59,92,110,32,32,118,97,114,32,109,111,110,116,104,32,61,32,100,97,116,101,46,103,101,116,77,111,110,116,104,40,41,59,92,110,32,32,100,97,116,101,46,115,101,116,77,111,110,116,104,40,109,111,110,116,104,32,45,32,49,41,59,32,47,47,32,72,97,110,100,108,101,32,119,104,101,110,32,100,97,121,115,32,105,110,32,109,111,110,116,104,32,97,114,101,32,100,105,102,102,101,114,101,110,116,92,110,92,110,32,32,105,102,32,40,100,97,116,101,46,103,101,116,77,111,110,116,104,40,41,32,61,61,61,32,109,111,110,116,104,41,32,123,92,110,32,32,32,32,100,97,116,101,46,115,101,116,68,97,116,101,40,48,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,59,92,110,125,59,92,110,118,97,114,32,111,110,101,77,111,110,116,104,65,104,101,97,100,32,61,32,102,117,110,99,116,105,111,110,32,111,110,101,77,111,110,116,104,65,104,101,97,100,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,32,61,32,99,114,101,97,116,101,68,97,116,101,40,100,97,116,101,41,59,92,110,32,32,118,97,114,32,109,111,110,116,104,32,61,32,100,97,116,101,46,103,101,116,77,111,110,116,104,40,41,59,92,110,32,32,100,97,116,101,46,115,101,116,77,111,110,116,104,40,109,111,110,116,104,32,43,32,49,41,59,32,47,47,32,72,97,110,100,108,101,32,119,104,101,110,32,100,97,121,115,32,105,110,32,109,111,110,116,104,32,97,114,101,32,100,105,102,102,101,114,101,110,116,92,110,92,110,32,32,105,102,32,40,100,97,116,101,46,103,101,116,77,111,110,116,104,40,41,32,61,61,61,32,40,109,111,110,116,104,32,43,32,50,41,32,37,32,49,50,41,32,123,92,110,32,32,32,32,100,97,116,101,46,115,101,116,68,97,116,101,40,48,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,59,92,110,125,59,92,110,118,97,114,32,111,110,101,89,101,97,114,65,103,111,32,61,32,102,117,110,99,116,105,111,110,32,111,110,101,89,101,97,114,65,103,111,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,100,100,89,101,97,114,115,40,100,97,116,101,44,32,45,49,41,59,92,110,125,59,92,110,118,97,114,32,111,110,101,89,101,97,114,65,104,101,97,100,32,61,32,102,117,110,99,116,105,111,110,32,111,110,101,89,101,97,114,65,104,101,97,100,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,100,100,89,101,97,114,115,40,100,97,116,101,44,32,49,41,59,92,110,125,59,92,110,118,97,114,32,111,110,101,68,101,99,97,100,101,65,103,111,32,61,32,102,117,110,99,116,105,111,110,32,111,110,101,68,101,99,97,100,101,65,103,111,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,100,100,89,101,97,114,115,40,100,97,116,101,44,32,45,49,48,41,59,92,110,125,59,92,110,118,97,114,32,111,110,101,68,101,99,97,100,101,65,104,101,97,100,32,61,32,102,117,110,99,116,105,111,110,32,111,110,101,68,101,99,97,100,101,65,104,101,97,100,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,100,100,89,101,97,114,115,40,100,97,116,101,44,32,49,48,41,59,92,110,125,59,32,47,47,32,72,101,108,112,101,114,32,102,117,110,99,116,105,111,110,32,116,111,32,99,111,110,115,116,114,97,105,110,32,97,32,100,97,116,101,32,98,101,116,119,101,101,110,32,116,119,111,32,118,97,108,117,101,115,92,110,47,47,32,65,108,119,97,121,115,32,114,101,116,117,114,110,115,32,97,32,96,68,97,116,101,96,32,111,98,106,101,99,116,32,111,114,32,96,110,117,108,108,96,32,105,102,32,110,111,32,100,97,116,101,32,112,97,115,115,101,100,92,110,92,110,118,97,114,32,99,111,110,115,116,114,97,105,110,68,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,99,111,110,115,116,114,97,105,110,68,97,116,101,40,100,97,116,101,41,32,123,92,110,32,32,118,97,114,32,109,105,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,110,117,108,108,59,92,110,32,32,118,97,114,32,109,97,120,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,110,117,108,108,59,92,110,32,32,47,47,32,69,110,115,117,114,101,32,118,97,108,117,101,115,32,97,114,101,32,96,68,97,116,101,96,32,111,98,106,101,99,116,115,32,40,111,114,32,96,110,117,108,108,96,41,92,110,32,32,100,97,116,101,32,61,32,112,97,114,115,101,89,77,68,40,100,97,116,101,41,59,92,110,32,32,109,105,110,32,61,32,112,97,114,115,101,89,77,68,40,109,105,110,41,32,124,124,32,100,97,116,101,59,92,110,32,32,109,97,120,32,61,32,112,97,114,115,101,89,77,68,40,109,97,120,41,32,124,124,32,100,97,116,101,59,32,47,47,32,82,101,116,117,114,110,32,97,32,110,101,119,32,96,68,97,116,101,96,32,111,98,106,101,99,116,32,40,111,114,32,96,110,117,108,108,96,41,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,32,63,32,100,97,116,101,32,60,32,109,105,110,32,63,32,109,105,110,32,58,32,100,97,116,101,32,62,32,109,97,120,32,63,32,109,97,120,32,58,32,100,97,116,101,32,58,32,110,117,108,108,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,117,116,97,116,105,111,110,79,98,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,77,117,116,97,116,105,111,110,79,98,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,100,100,67,108,97,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,100,100,67,108,97,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,116,116,101,109,112,116,66,108,117,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,116,116,101,109,112,116,66,108,117,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,116,116,101,109,112,116,70,111,99,117,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,116,116,101,109,112,116,70,111,99,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,108,111,115,101,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,108,111,115,101,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,108,111,115,101,115,116,69,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,108,111,115,101,115,116,69,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,110,116,97,105,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,110,116,97,105,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,65,116,116,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,65,116,116,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,66,67,82,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,66,67,82,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,66,121,73,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,66,121,73,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,67,83,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,67,83,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,83,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,83,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,83,116,121,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,83,116,121,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,84,97,98,97,98,108,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,84,97,98,97,98,108,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,97,115,65,116,116,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,97,115,65,116,116,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,97,115,67,108,97,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,97,115,67,108,97,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,65,99,116,105,118,101,69,108,101,109,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,65,99,116,105,118,101,69,108,101,109,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,68,105,115,97,98,108,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,68,105,115,97,98,108,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,69,108,101,109,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,69,108,101,109,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,84,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,84,97,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,86,105,115,105,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,86,105,115,105,98,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,116,99,104,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,116,99,104,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,116,99,104,101,115,69,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,116,99,104,101,115,69,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,111,102,102,115,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,111,102,102,115,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,115,105,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,111,115,105,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,102,108,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,102,108,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,109,111,118,101,65,116,116,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,109,111,118,101,65,116,116,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,109,111,118,101,67,108,97,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,109,111,118,101,67,108,97,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,109,111,118,101,78,111,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,109,111,118,101,78,111,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,109,111,118,101,83,116,121,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,109,111,118,101,83,116,121,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,113,117,101,115,116,65,70,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,113,117,101,115,116,65,70,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,108,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,108,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,108,101,99,116,65,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,108,101,99,116,65,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,116,65,116,116,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,116,65,116,116,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,116,83,116,121,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,116,83,116,121,108,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,69,76,69,77,69,78,84,95,80,82,79,84,79,32,61,32,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,108,101,109,101,110,116,46,112,114,111,116,111,116,121,112,101,59,92,110,118,97,114,32,84,65,66,65,66,76,69,95,83,69,76,69,67,84,79,82,32,61,32,91,39,98,117,116,116,111,110,39,44,32,39,91,104,114,101,102,93,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,39,44,32,39,105,110,112,117,116,39,44,32,39,115,101,108,101,99,116,39,44,32,39,116,101,120,116,97,114,101,97,39,44,32,39,91,116,97,98,105,110,100,101,120,93,39,44,32,39,91,99,111,110,116,101,110,116,101,100,105,116,97,98,108,101,93,39,93,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,92,34,92,34,46,99,111,110,99,97,116,40,115,44,32,92,34,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,92,34,41,59,92,110,125,41,46,106,111,105,110,40,39,44,32,39,41,59,32,47,47,32,45,45,45,32,78,111,114,109,97,108,105,122,97,116,105,111,110,32,117,116,105,108,115,32,45,45,45,92,110,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,100,101,118,101,108,111,112,101,114,46,109,111,122,105,108,108,97,46,111,114,103,47,101,110,45,85,83,47,100,111,99,115,47,87,101,98,47,65,80,73,47,69,108,101,109,101,110,116,47,109,97,116,99,104,101,115,35,80,111,108,121,102,105,108,108,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,118,97,114,32,109,97,116,99,104,101,115,69,108,32,61,32,69,76,69,77,69,78,84,95,80,82,79,84,79,46,109,97,116,99,104,101,115,32,124,124,32,69,76,69,77,69,78,84,95,80,82,79,84,79,46,109,115,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,32,124,124,32,69,76,69,77,69,78,84,95,80,82,79,84,79,46,119,101,98,107,105,116,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,59,32,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,100,101,118,101,108,111,112,101,114,46,109,111,122,105,108,108,97,46,111,114,103,47,101,110,45,85,83,47,100,111,99,115,47,87,101,98,47,65,80,73,47,69,108,101,109,101,110,116,47,99,108,111,115,101,115,116,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,118,97,114,32,99,108,111,115,101,115,116,69,108,32,61,32,69,76,69,77,69,78,84,95,80,82,79,84,79,46,99,108,111,115,101,115,116,32,124,124,32,102,117,110,99,116,105,111,110,32,40,115,101,108,41,32,123,92,110,32,32,118,97,114,32,101,108,32,61,32,116,104,105,115,59,92,110,92,110,32,32,100,111,32,123,92,110,32,32,32,32,47,47,32,85,115,101,32,111,117,114,32,92,34,112,97,116,99,104,101,100,92,34,32,109,97,116,99,104,101,115,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,105,102,32,40,109,97,116,99,104,101,115,40,101,108,44,32,115,101,108,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,101,108,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,101,108,32,61,32,101,108,46,112,97,114,101,110,116,69,108,101,109,101,110,116,32,124,124,32,101,108,46,112,97,114,101,110,116,78,111,100,101,59,92,110,32,32,125,32,119,104,105,108,101,32,40,33,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,78,117,108,108,41,40,101,108,41,32,38,38,32,101,108,46,110,111,100,101,84,121,112,101,32,61,61,61,32,78,111,100,101,46,69,76,69,77,69,78,84,95,78,79,68,69,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,125,59,32,47,47,32,96,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,41,96,32,99,111,110,118,101,110,105,101,110,99,101,32,109,101,116,104,111,100,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,74,83,68,79,77,32,97,108,119,97,121,115,32,114,101,116,117,114,110,115,32,116,104,101,32,102,105,114,115,116,32,111,112,116,105,111,110,32,42,47,92,110,92,110,118,97,114,32,114,101,113,117,101,115,116,65,70,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,87,73,78,68,79,87,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,32,124,124,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,87,73,78,68,79,87,46,119,101,98,107,105,116,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,32,124,124,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,87,73,78,68,79,87,46,109,111,122,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,32,124,124,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,87,73,78,68,79,87,46,109,115,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,32,124,124,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,87,73,78,68,79,87,46,111,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,32,124,124,32,47,47,32,70,97,108,108,98,97,99,107,44,32,98,117,116,32,110,111,116,32,97,32,116,114,117,101,32,112,111,108,121,102,105,108,108,92,110,47,47,32,79,110,108,121,32,110,101,101,100,101,100,32,102,111,114,32,79,112,101,114,97,32,77,105,110,105,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,102,117,110,99,116,105,111,110,32,40,99,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,101,116,84,105,109,101,111,117,116,40,99,98,44,32,49,54,41,59,92,110,125,59,92,110,118,97,114,32,77,117,116,97,116,105,111,110,79,98,115,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,87,73,78,68,79,87,46,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,124,124,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,87,73,78,68,79,87,46,87,101,98,75,105,116,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,124,124,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,87,73,78,68,79,87,46,77,111,122,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,124,124,32,110,117,108,108,59,32,47,47,32,45,45,45,32,85,116,105,108,115,32,45,45,45,92,110,47,47,32,82,101,109,111,118,101,32,97,32,110,111,100,101,32,102,114,111,109,32,68,79,77,92,110,92,110,118,97,114,32,114,101,109,111,118,101,78,111,100,101,32,61,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,78,111,100,101,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,108,32,38,38,32,101,108,46,112,97,114,101,110,116,78,111,100,101,32,38,38,32,101,108,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,101,108,41,59,92,110,125,59,32,47,47,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,110,32,101,108,101,109,101,110,116,32,105,115,32,97,110,32,72,84,77,76,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,105,115,69,108,101,109,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,105,115,69,108,101,109,101,110,116,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,33,40,101,108,32,38,38,32,101,108,46,110,111,100,101,84,121,112,101,32,61,61,61,32,78,111,100,101,46,69,76,69,77,69,78,84,95,78,79,68,69,41,59,92,110,125,59,32,47,47,32,71,101,116,32,116,104,101,32,99,117,114,114,101,110,116,108,121,32,97,99,116,105,118,101,32,72,84,77,76,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,40,41,32,123,92,110,32,32,118,97,114,32,101,120,99,108,117,100,101,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,91,93,59,92,110,32,32,118,97,114,32,97,99,116,105,118,101,69,108,101,109,101,110,116,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,68,79,67,85,77,69,78,84,46,97,99,116,105,118,101,69,108,101,109,101,110,116,59,92,110,32,32,114,101,116,117,114,110,32,97,99,116,105,118,101,69,108,101,109,101,110,116,32,38,38,32,33,101,120,99,108,117,100,101,115,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,108,32,61,61,61,32,97,99,116,105,118,101,69,108,101,109,101,110,116,59,92,110,32,32,125,41,32,63,32,97,99,116,105,118,101,69,108,101,109,101,110,116,32,58,32,110,117,108,108,59,92,110,125,59,32,47,47,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,97,32,116,97,103,39,115,32,110,97,109,101,32,101,113,117,97,108,115,32,96,110,97,109,101,96,92,110,92,110,118,97,114,32,105,115,84,97,103,32,61,32,102,117,110,99,116,105,111,110,32,105,115,84,97,103,40,116,97,103,44,32,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,116,111,83,116,114,105,110,103,41,40,116,97,103,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,32,61,61,61,32,40,48,44,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,116,111,83,116,114,105,110,103,41,40,110,97,109,101,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,125,59,32,47,47,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,110,32,72,84,77,76,32,101,108,101,109,101,110,116,32,105,115,32,116,104,101,32,99,117,114,114,101,110,116,108,121,32,97,99,116,105,118,101,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,105,115,65,99,116,105,118,101,69,108,101,109,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,105,115,65,99,116,105,118,101,69,108,101,109,101,110,116,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,69,108,101,109,101,110,116,40,101,108,41,32,38,38,32,101,108,32,61,61,61,32,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,40,41,59,92,110,125,59,32,47,47,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,110,32,72,84,77,76,32,101,108,101,109,101,110,116,32,105,115,32,118,105,115,105,98,108,101,32,45,32,70,97,115,116,101,114,32,116,104,97,110,32,67,83,83,32,99,104,101,99,107,92,110,92,110,118,97,114,32,105,115,86,105,115,105,98,108,101,32,61,32,102,117,110,99,116,105,111,110,32,105,115,86,105,115,105,98,108,101,40,101,108,41,32,123,92,110,32,32,105,102,32,40,33,105,115,69,108,101,109,101,110,116,40,101,108,41,32,124,124,32,33,101,108,46,112,97,114,101,110,116,78,111,100,101,32,124,124,32,33,99,111,110,116,97,105,110,115,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,68,79,67,85,77,69,78,84,46,98,111,100,121,44,32,101,108,41,41,32,123,92,110,32,32,32,32,47,47,32,78,111,116,101,32,116,104,105,115,32,99,97,110,32,102,97,105,108,32,102,111,114,32,115,104,97,100,111,119,32,100,111,109,32,101,108,101,109,101,110,116,115,32,115,105,110,99,101,32,116,104,101,121,92,110,32,32,32,32,47,47,32,97,114,101,32,110,111,116,32,97,32,100,105,114,101,99,116,32,100,101,115,99,101,110,100,97,110,116,32,111,102,32,100,111,99,117,109,101,110,116,46,98,111,100,121,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,103,101,116,83,116,121,108,101,40,101,108,44,32,39,100,105,115,112,108,97,121,39,41,32,61,61,61,32,39,110,111,110,101,39,41,32,123,92,110,32,32,32,32,47,47,32,87,101,32,100,111,32,116,104,105,115,32,99,104,101,99,107,32,116,111,32,104,101,108,112,32,119,105,116,104,32,118,117,101,45,116,101,115,116,45,117,116,105,108,115,32,119,104,101,110,32,117,115,105,110,103,32,118,45,115,104,111,119,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,32,47,47,32,65,108,108,32,98,114,111,119,115,101,114,115,32,115,117,112,112,111,114,116,32,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,32,101,120,99,101,112,116,32,74,83,68,79,77,32,97,115,32,105,116,32,114,101,116,117,114,110,115,32,97,108,108,32,48,39,115,32,102,111,114,32,118,97,108,117,101,115,32,58,40,92,110,32,32,47,47,32,83,111,32,97,110,121,32,116,101,115,116,115,32,116,104,97,116,32,110,101,101,100,32,105,115,86,105,115,105,98,108,101,32,119,105,108,108,32,102,97,105,108,32,105,110,32,74,83,68,79,77,92,110,32,32,47,47,32,69,120,99,101,112,116,32,119,104,101,110,32,119,101,32,111,118,101,114,114,105,100,101,32,116,104,101,32,103,101,116,66,67,82,32,112,114,111,116,111,116,121,112,101,32,105,110,32,115,111,109,101,32,116,101,115,116,115,92,110,92,110,92,110,32,32,118,97,114,32,98,99,114,32,61,32,103,101,116,66,67,82,40,101,108,41,59,92,110,32,32,114,101,116,117,114,110,32,33,33,40,98,99,114,32,38,38,32,98,99,114,46,104,101,105,103,104,116,32,62,32,48,32,38,38,32,98,99,114,46,119,105,100,116,104,32,62,32,48,41,59,92,110,125,59,32,47,47,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,110,32,101,108,101,109,101,110,116,32,105,115,32,100,105,115,97,98,108,101,100,92,110,92,110,118,97,114,32,105,115,68,105,115,97,98,108,101,100,32,61,32,102,117,110,99,116,105,111,110,32,105,115,68,105,115,97,98,108,101,100,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,105,115,69,108,101,109,101,110,116,40,101,108,41,32,124,124,32,101,108,46,100,105,115,97,98,108,101,100,32,124,124,32,104,97,115,65,116,116,114,40,101,108,44,32,39,100,105,115,97,98,108,101,100,39,41,32,124,124,32,104,97,115,67,108,97,115,115,40,101,108,44,32,39,100,105,115,97,98,108,101,100,39,41,59,92,110,125,59,32,47,47,32,67,97,117,115,101,47,119,97,105,116,45,102,111,114,32,97,110,32,101,108,101,109,101,110,116,32,116,111,32,114,101,102,108,111,119,32,105,116,115,32,99,111,110,116,101,110,116,32,40,97,100,106,117,115,116,105,110,103,32,105,116,115,32,104,101,105,103,104,116,47,119,105,100,116,104,41,92,110,92,110,118,97,114,32,114,101,102,108,111,119,32,61,32,102,117,110,99,116,105,111,110,32,114,101,102,108,111,119,40,101,108,41,32,123,92,110,32,32,47,47,32,82,101,113,117,101,115,116,105,110,103,32,97,110,32,101,108,101,109,101,110,116,115,32,111,102,102,115,101,116,72,105,103,104,116,32,119,105,108,108,32,116,114,105,103,103,101,114,32,97,32,114,101,102,108,111,119,32,111,102,32,116,104,101,32,101,108,101,109,101,110,116,32,99,111,110,116,101,110,116,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,114,101,102,108,111,119,32,100,111,101,115,110,39,116,32,104,97,112,112,101,110,32,105,110,32,74,83,68,79,77,32,42,47,92,110,32,32,114,101,116,117,114,110,32,105,115,69,108,101,109,101,110,116,40,101,108,41,32,38,38,32,101,108,46,111,102,102,115,101,116,72,101,105,103,104,116,59,92,110,125,59,32,47,47,32,83,101,108,101,99,116,32,97,108,108,32,101,108,101,109,101,110,116,115,32,109,97,116,99,104,105,110,103,32,115,101,108,101,99,116,111,114,46,32,82,101,116,117,114,110,115,32,96,91,93,96,32,105,102,32,110,111,110,101,32,102,111,117,110,100,92,110,92,110,118,97,114,32,115,101,108,101,99,116,65,108,108,32,61,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,65,108,108,40,115,101,108,101,99,116,111,114,44,32,114,111,111,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,102,114,111,109,41,40,40,105,115,69,108,101,109,101,110,116,40,114,111,111,116,41,32,63,32,114,111,111,116,32,58,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,68,79,67,85,77,69,78,84,41,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,115,101,108,101,99,116,111,114,41,41,59,92,110,125,59,32,47,47,32,83,101,108,101,99,116,32,97,32,115,105,110,103,108,101,32,101,108,101,109,101,110,116,44,32,114,101,116,117,114,110,115,32,96,110,117,108,108,96,32,105,102,32,110,111,116,32,102,111,117,110,100,92,110,92,110,118,97,114,32,115,101,108,101,99,116,32,61,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,40,115,101,108,101,99,116,111,114,44,32,114,111,111,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,105,115,69,108,101,109,101,110,116,40,114,111,111,116,41,32,63,32,114,111,111,116,32,58,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,68,79,67,85,77,69,78,84,41,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,115,101,108,101,99,116,111,114,41,32,124,124,32,110,117,108,108,59,92,110,125,59,32,47,47,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,110,32,101,108,101,109,101,110,116,32,109,97,116,99,104,101,115,32,97,32,115,101,108,101,99,116,111,114,92,110,92,110,118,97,114,32,109,97,116,99,104,101,115,32,61,32,102,117,110,99,116,105,111,110,32,109,97,116,99,104,101,115,40,101,108,44,32,115,101,108,101,99,116,111,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,69,108,101,109,101,110,116,40,101,108,41,32,63,32,109,97,116,99,104,101,115,69,108,46,99,97,108,108,40,101,108,44,32,115,101,108,101,99,116,111,114,41,32,58,32,102,97,108,115,101,59,92,110,125,59,32,47,47,32,70,105,110,100,115,32,99,108,111,115,101,115,116,32,101,108,101,109,101,110,116,32,109,97,116,99,104,105,110,103,32,115,101,108,101,99,116,111,114,46,32,82,101,116,117,114,110,115,32,96,110,117,108,108,96,32,105,102,32,110,111,116,32,102,111,117,110,100,92,110,92,110,118,97,114,32,99,108,111,115,101,115,116,32,61,32,102,117,110,99,116,105,111,110,32,99,108,111,115,101,115,116,40,115,101,108,101,99,116,111,114,44,32,114,111,111,116,41,32,123,92,110,32,32,118,97,114,32,105,110,99,108,117,100,101,82,111,111,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,102,97,108,115,101,59,92,110,92,110,32,32,105,102,32,40,33,105,115,69,108,101,109,101,110,116,40,114,111,111,116,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,101,108,32,61,32,99,108,111,115,101,115,116,69,108,46,99,97,108,108,40,114,111,111,116,44,32,115,101,108,101,99,116,111,114,41,59,32,47,47,32,78,97,116,105,118,101,32,99,108,111,115,101,115,116,32,98,101,104,97,118,105,111,117,114,32,119,104,101,110,32,96,105,110,99,108,117,100,101,82,111,111,116,96,32,105,115,32,116,114,117,116,104,121,44,92,110,32,32,47,47,32,101,108,115,101,32,101,109,117,108,97,116,101,32,106,81,117,101,114,121,32,99,108,111,115,101,115,116,32,97,110,100,32,114,101,116,117,114,110,32,96,110,117,108,108,96,32,105,102,32,109,97,116,99,104,32,105,115,92,110,32,32,47,47,32,116,104,101,32,112,97,115,115,101,100,32,105,110,32,114,111,111,116,32,101,108,101,109,101,110,116,32,119,104,101,110,32,96,105,110,99,108,117,100,101,82,111,111,116,96,32,105,115,32,102,97,108,115,101,121,92,110,92,110,32,32,114,101,116,117,114,110,32,105,110,99,108,117,100,101,82,111,111,116,32,63,32,101,108,32,58,32,101,108,32,61,61,61,32,114,111,111,116,32,63,32,110,117,108,108,32,58,32,101,108,59,92,110,125,59,32,47,47,32,82,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,116,104,101,32,112,97,114,101,110,116,32,101,108,101,109,101,110,116,32,99,111,110,116,97,105,110,115,32,116,104,101,32,99,104,105,108,100,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,99,111,110,116,97,105,110,115,32,61,32,102,117,110,99,116,105,111,110,32,99,111,110,116,97,105,110,115,40,112,97,114,101,110,116,44,32,99,104,105,108,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,114,101,110,116,32,38,38,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,112,97,114,101,110,116,46,99,111,110,116,97,105,110,115,41,32,63,32,112,97,114,101,110,116,46,99,111,110,116,97,105,110,115,40,99,104,105,108,100,41,32,58,32,102,97,108,115,101,59,92,110,125,59,32,47,47,32,71,101,116,32,97,110,32,101,108,101,109,101,110,116,32,103,105,118,101,110,32,97,110,32,73,68,92,110,92,110,118,97,114,32,103,101,116,66,121,73,100,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,66,121,73,100,40,105,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,68,79,67,85,77,69,78,84,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,47,94,35,47,46,116,101,115,116,40,105,100,41,32,63,32,105,100,46,115,108,105,99,101,40,49,41,32,58,32,105,100,41,32,124,124,32,110,117,108,108,59,92,110,125,59,32,47,47,32,65,100,100,32,97,32,99,108,97,115,115,32,116,111,32,97,110,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,97,100,100,67,108,97,115,115,32,61,32,102,117,110,99,116,105,111,110,32,97,100,100,67,108,97,115,115,40,101,108,44,32,99,108,97,115,115,78,97,109,101,41,32,123,92,110,32,32,47,47,32,87,101,32,97,114,101,32,99,104,101,99,107,105,110,103,32,102,111,114,32,96,101,108,46,99,108,97,115,115,76,105,115,116,96,32,101,120,105,115,116,101,110,99,101,32,104,101,114,101,32,115,105,110,99,101,32,73,69,32,49,49,92,110,32,32,47,47,32,114,101,116,117,114,110,115,32,96,117,110,100,101,102,105,110,101,100,96,32,102,111,114,32,115,111,109,101,32,101,108,101,109,101,110,116,115,32,40,101,46,103,46,32,83,86,71,32,101,108,101,109,101,110,116,115,41,92,110,32,32,47,47,32,83,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,50,55,49,51,92,110,32,32,105,102,32,40,99,108,97,115,115,78,97,109,101,32,38,38,32,105,115,69,108,101,109,101,110,116,40,101,108,41,32,38,38,32,101,108,46,99,108,97,115,115,76,105,115,116,41,32,123,92,110,32,32,32,32,101,108,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,99,108,97,115,115,78,97,109,101,41,59,92,110,32,32,125,92,110,125,59,32,47,47,32,82,101,109,111,118,101,32,97,32,99,108,97,115,115,32,102,114,111,109,32,97,110,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,114,101,109,111,118,101,67,108,97,115,115,32,61,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,67,108,97,115,115,40,101,108,44,32,99,108,97,115,115,78,97,109,101,41,32,123,92,110,32,32,47,47,32,87,101,32,97,114,101,32,99,104,101,99,107,105,110,103,32,102,111,114,32,96,101,108,46,99,108,97,115,115,76,105,115,116,96,32,101,120,105,115,116,101,110,99,101,32,104,101,114,101,32,115,105,110,99,101,32,73,69,32,49,49,92,110,32,32,47,47,32,114,101,116,117,114,110,115,32,96,117,110,100,101,102,105,110,101,100,96,32,102,111,114,32,115,111,109,101,32,101,108,101,109,101,110,116,115,32,40,101,46,103,46,32,83,86,71,32,101,108,101,109,101,110,116,115,41,92,110,32,32,47,47,32,83,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,50,55,49,51,92,110,32,32,105,102,32,40,99,108,97,115,115,78,97,109,101,32,38,38,32,105,115,69,108,101,109,101,110,116,40,101,108,41,32,38,38,32,101,108,46,99,108,97,115,115,76,105,115,116,41,32,123,92,110,32,32,32,32,101,108,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,99,108,97,115,115,78,97,109,101,41,59,92,110,32,32,125,92,110,125,59,32,47,47,32,84,101,115,116,32,105,102,32,97,110,32,101,108,101,109,101,110,116,32,104,97,115,32,97,32,99,108,97,115,115,92,110,92,110,118,97,114,32,104,97,115,67,108,97,115,115,32,61,32,102,117,110,99,116,105,111,110,32,104,97,115,67,108,97,115,115,40,101,108,44,32,99,108,97,115,115,78,97,109,101,41,32,123,92,110,32,32,47,47,32,87,101,32,97,114,101,32,99,104,101,99,107,105,110,103,32,102,111,114,32,96,101,108,46,99,108,97,115,115,76,105,115,116,96,32,101,120,105,115,116,101,110,99,101,32,104,101,114,101,32,115,105,110,99,101,32,73,69,32,49,49,92,110,32,32,47,47,32,114,101,116,117,114,110,115,32,96,117,110,100,101,102,105,110,101,100,96,32,102,111,114,32,115,111,109,101,32,101,108,101,109,101,110,116,115,32,40,101,46,103,46,32,83,86,71,32,101,108,101,109,101,110,116,115,41,92,110,32,32,47,47,32,83,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,50,55,49,51,92,110,32,32,105,102,32,40,99,108,97,115,115,78,97,109,101,32,38,38,32,105,115,69,108,101,109,101,110,116,40,101,108,41,32,38,38,32,101,108,46,99,108,97,115,115,76,105,115,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,108,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,99,108,97,115,115,78,97,109,101,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,125,59,32,47,47,32,83,101,116,32,97,110,32,97,116,116,114,105,98,117,116,101,32,111,110,32,97,110,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,115,101,116,65,116,116,114,32,61,32,102,117,110,99,116,105,111,110,32,115,101,116,65,116,116,114,40,101,108,44,32,97,116,116,114,44,32,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,97,116,116,114,32,38,38,32,105,115,69,108,101,109,101,110,116,40,101,108,41,41,32,123,92,110,32,32,32,32,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,97,116,116,114,44,32,118,97,108,117,101,41,59,92,110,32,32,125,92,110,125,59,32,47,47,32,82,101,109,111,118,101,32,97,110,32,97,116,116,114,105,98,117,116,101,32,102,114,111,109,32,97,110,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,114,101,109,111,118,101,65,116,116,114,32,61,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,65,116,116,114,40,101,108,44,32,97,116,116,114,41,32,123,92,110,32,32,105,102,32,40,97,116,116,114,32,38,38,32,105,115,69,108,101,109,101,110,116,40,101,108,41,41,32,123,92,110,32,32,32,32,101,108,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,97,116,116,114,41,59,92,110,32,32,125,92,110,125,59,32,47,47,32,71,101,116,32,97,110,32,97,116,116,114,105,98,117,116,101,32,118,97,108,117,101,32,102,114,111,109,32,97,110,32,101,108,101,109,101,110,116,92,110,47,47,32,82,101,116,117,114,110,115,32,96,110,117,108,108,96,32,105,102,32,110,111,116,32,102,111,117,110,100,92,110,92,110,118,97,114,32,103,101,116,65,116,116,114,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,65,116,116,114,40,101,108,44,32,97,116,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,116,116,114,32,38,38,32,105,115,69,108,101,109,101,110,116,40,101,108,41,32,63,32,101,108,46,103,101,116,65,116,116,114,105,98,117,116,101,40,97,116,116,114,41,32,58,32,110,117,108,108,59,92,110,125,59,32,47,47,32,68,101,116,101,114,109,105,110,101,32,105,102,32,97,110,32,97,116,116,114,105,98,117,116,101,32,101,120,105,115,116,115,32,111,110,32,97,110,32,101,108,101,109,101,110,116,92,110,47,47,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,111,114,32,96,102,97,108,115,101,96,44,32,111,114,32,96,110,117,108,108,96,32,105,102,32,101,108,101,109,101,110,116,32,110,111,116,32,102,111,117,110,100,92,110,92,110,118,97,114,32,104,97,115,65,116,116,114,32,61,32,102,117,110,99,116,105,111,110,32,104,97,115,65,116,116,114,40,101,108,44,32,97,116,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,116,116,114,32,38,38,32,105,115,69,108,101,109,101,110,116,40,101,108,41,32,63,32,101,108,46,104,97,115,65,116,116,114,105,98,117,116,101,40,97,116,116,114,41,32,58,32,110,117,108,108,59,92,110,125,59,32,47,47,32,83,101,116,32,97,110,32,115,116,121,108,101,32,112,114,111,112,101,114,116,121,32,111,110,32,97,110,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,115,101,116,83,116,121,108,101,32,61,32,102,117,110,99,116,105,111,110,32,115,101,116,83,116,121,108,101,40,101,108,44,32,112,114,111,112,44,32,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,112,114,111,112,32,38,38,32,105,115,69,108,101,109,101,110,116,40,101,108,41,41,32,123,92,110,32,32,32,32,101,108,46,115,116,121,108,101,91,112,114,111,112,93,32,61,32,118,97,108,117,101,59,92,110,32,32,125,92,110,125,59,32,47,47,32,82,101,109,111,118,101,32,97,110,32,115,116,121,108,101,32,112,114,111,112,101,114,116,121,32,102,114,111,109,32,97,110,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,114,101,109,111,118,101,83,116,121,108,101,32,61,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,83,116,121,108,101,40,101,108,44,32,112,114,111,112,41,32,123,92,110,32,32,105,102,32,40,112,114,111,112,32,38,38,32,105,115,69,108,101,109,101,110,116,40,101,108,41,41,32,123,92,110,32,32,32,32,101,108,46,115,116,121,108,101,91,112,114,111,112,93,32,61,32,39,39,59,92,110,32,32,125,92,110,125,59,32,47,47,32,71,101,116,32,97,110,32,115,116,121,108,101,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,32,102,114,111,109,32,97,110,32,101,108,101,109,101,110,116,92,110,47,47,32,82,101,116,117,114,110,115,32,96,110,117,108,108,96,32,105,102,32,110,111,116,32,102,111,117,110,100,92,110,92,110,118,97,114,32,103,101,116,83,116,121,108,101,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,83,116,121,108,101,40,101,108,44,32,112,114,111,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,114,111,112,32,38,38,32,105,115,69,108,101,109,101,110,116,40,101,108,41,32,63,32,101,108,46,115,116,121,108,101,91,112,114,111,112,93,32,124,124,32,110,117,108,108,32,58,32,110,117,108,108,59,92,110,125,59,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,66,111,117,110,100,105,110,103,32,67,108,105,101,110,116,32,82,101,99,116,32,111,102,32,97,110,32,101,108,101,109,101,110,116,92,110,47,47,32,82,101,116,117,114,110,115,32,96,110,117,108,108,96,32,105,102,32,110,111,116,32,97,110,32,101,108,101,109,101,110,116,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,32,100,111,101,115,110,39,116,32,119,111,114,107,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,118,97,114,32,103,101,116,66,67,82,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,66,67,82,40,101,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,69,108,101,109,101,110,116,40,101,108,41,32,63,32,101,108,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,32,58,32,110,117,108,108,59,92,110,125,59,32,47,47,32,71,101,116,32,99,111,109,112,117,116,101,100,32,115,116,121,108,101,32,111,98,106,101,99,116,32,102,111,114,32,97,110,32,101,108,101,109,101,110,116,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,41,32,100,111,101,115,110,39,116,32,119,111,114,107,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,118,97,114,32,103,101,116,67,83,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,67,83,40,101,108,41,32,123,92,110,32,32,118,97,114,32,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,87,73,78,68,79,87,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,59,92,110,32,32,114,101,116,117,114,110,32,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,32,38,38,32,105,115,69,108,101,109,101,110,116,40,101,108,41,32,63,32,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,108,41,32,58,32,123,125,59,92,110,125,59,32,47,47,32,82,101,116,117,114,110,115,32,97,32,96,83,101,108,101,99,116,105,111,110,96,32,111,98,106,101,99,116,32,114,101,112,114,101,115,101,110,116,105,110,103,32,116,104,101,32,114,97,110,103,101,32,111,102,32,116,101,120,116,32,115,101,108,101,99,116,101,100,92,110,47,47,32,82,101,116,117,114,110,115,32,96,110,117,108,108,96,32,105,102,32,110,111,32,119,105,110,100,111,119,32,115,117,112,112,111,114,116,32,105,115,32,103,105,118,101,110,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,103,101,116,83,101,108,101,99,116,105,111,110,40,41,32,100,111,101,115,110,39,116,32,119,111,114,107,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,118,97,114,32,103,101,116,83,101,108,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,83,101,108,40,41,32,123,92,110,32,32,118,97,114,32,103,101,116,83,101,108,101,99,116,105,111,110,32,61,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,87,73,78,68,79,87,46,103,101,116,83,101,108,101,99,116,105,111,110,59,92,110,32,32,114,101,116,117,114,110,32,103,101,116,83,101,108,101,99,116,105,111,110,32,63,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,87,73,78,68,79,87,46,103,101,116,83,101,108,101,99,116,105,111,110,40,41,32,58,32,110,117,108,108,59,92,110,125,59,32,47,47,32,82,101,116,117,114,110,32,97,110,32,101,108,101,109,101,110,116,39,115,32,111,102,102,115,101,116,32,119,105,116,104,32,114,101,115,112,101,99,116,32,116,111,32,100,111,99,117,109,101,110,116,32,101,108,101,109,101,110,116,92,110,47,47,32,104,116,116,112,115,58,47,47,106,49,49,121,46,105,111,47,106,113,117,101,114,121,47,35,118,61,103,105,116,38,102,110,61,106,81,117,101,114,121,46,102,110,46,111,102,102,115,101,116,92,110,92,110,118,97,114,32,111,102,102,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,111,102,102,115,101,116,40,101,108,41,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,32,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,32,100,111,101,115,110,39,116,32,119,111,114,107,32,105,110,32,74,83,68,79,77,32,42,47,92,110,123,92,110,32,32,118,97,114,32,95,111,102,102,115,101,116,32,61,32,123,92,110,32,32,32,32,116,111,112,58,32,48,44,92,110,32,32,32,32,108,101,102,116,58,32,48,92,110,32,32,125,59,92,110,92,110,32,32,105,102,32,40,33,105,115,69,108,101,109,101,110,116,40,101,108,41,32,124,124,32,101,108,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,111,102,102,115,101,116,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,98,99,114,32,61,32,103,101,116,66,67,82,40,101,108,41,59,92,110,92,110,32,32,105,102,32,40,98,99,114,41,32,123,92,110,32,32,32,32,118,97,114,32,119,105,110,32,61,32,101,108,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,92,110,32,32,32,32,95,111,102,102,115,101,116,46,116,111,112,32,61,32,98,99,114,46,116,111,112,32,43,32,119,105,110,46,112,97,103,101,89,79,102,102,115,101,116,59,92,110,32,32,32,32,95,111,102,102,115,101,116,46,108,101,102,116,32,61,32,98,99,114,46,108,101,102,116,32,43,32,119,105,110,46,112,97,103,101,88,79,102,102,115,101,116,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,95,111,102,102,115,101,116,59,92,110,125,59,32,47,47,32,82,101,116,117,114,110,32,97,110,32,101,108,101,109,101,110,116,39,115,32,111,102,102,115,101,116,32,119,105,116,104,32,114,101,115,112,101,99,116,32,116,111,32,116,111,32,105,116,115,32,111,102,102,115,101,116,80,97,114,101,110,116,92,110,47,47,32,104,116,116,112,115,58,47,47,106,49,49,121,46,105,111,47,106,113,117,101,114,121,47,35,118,61,103,105,116,38,102,110,61,106,81,117,101,114,121,46,102,110,46,112,111,115,105,116,105,111,110,92,110,92,110,118,97,114,32,112,111,115,105,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,32,112,111,115,105,116,105,111,110,40,101,108,41,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,32,100,111,101,115,110,39,116,32,119,111,114,107,32,105,110,32,74,83,68,79,77,32,42,47,92,110,123,92,110,32,32,118,97,114,32,95,111,102,102,115,101,116,32,61,32,123,92,110,32,32,32,32,116,111,112,58,32,48,44,92,110,32,32,32,32,108,101,102,116,58,32,48,92,110,32,32,125,59,92,110,92,110,32,32,105,102,32,40,33,105,115,69,108,101,109,101,110,116,40,101,108,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,111,102,102,115,101,116,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,112,97,114,101,110,116,79,102,102,115,101,116,32,61,32,123,92,110,32,32,32,32,116,111,112,58,32,48,44,92,110,32,32,32,32,108,101,102,116,58,32,48,92,110,32,32,125,59,92,110,32,32,118,97,114,32,101,108,83,116,121,108,101,115,32,61,32,103,101,116,67,83,40,101,108,41,59,92,110,92,110,32,32,105,102,32,40,101,108,83,116,121,108,101,115,46,112,111,115,105,116,105,111,110,32,61,61,61,32,39,102,105,120,101,100,39,41,32,123,92,110,32,32,32,32,95,111,102,102,115,101,116,32,61,32,103,101,116,66,67,82,40,101,108,41,32,124,124,32,95,111,102,102,115,101,116,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,95,111,102,102,115,101,116,32,61,32,111,102,102,115,101,116,40,101,108,41,59,92,110,32,32,32,32,118,97,114,32,100,111,99,32,61,32,101,108,46,111,119,110,101,114,68,111,99,117,109,101,110,116,59,92,110,32,32,32,32,118,97,114,32,111,102,102,115,101,116,80,97,114,101,110,116,32,61,32,101,108,46,111,102,102,115,101,116,80,97,114,101,110,116,32,124,124,32,100,111,99,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,111,102,102,115,101,116,80,97,114,101,110,116,32,38,38,32,40,111,102,102,115,101,116,80,97,114,101,110,116,32,61,61,61,32,100,111,99,46,98,111,100,121,32,124,124,32,111,102,102,115,101,116,80,97,114,101,110,116,32,61,61,61,32,100,111,99,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,41,32,38,38,32,103,101,116,67,83,40,111,102,102,115,101,116,80,97,114,101,110,116,41,46,112,111,115,105,116,105,111,110,32,61,61,61,32,39,115,116,97,116,105,99,39,41,32,123,92,110,32,32,32,32,32,32,111,102,102,115,101,116,80,97,114,101,110,116,32,61,32,111,102,102,115,101,116,80,97,114,101,110,116,46,112,97,114,101,110,116,78,111,100,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,111,102,102,115,101,116,80,97,114,101,110,116,32,38,38,32,111,102,102,115,101,116,80,97,114,101,110,116,32,33,61,61,32,101,108,32,38,38,32,111,102,102,115,101,116,80,97,114,101,110,116,46,110,111,100,101,84,121,112,101,32,61,61,61,32,78,111,100,101,46,69,76,69,77,69,78,84,95,78,79,68,69,41,32,123,92,110,32,32,32,32,32,32,112,97,114,101,110,116,79,102,102,115,101,116,32,61,32,111,102,102,115,101,116,40,111,102,102,115,101,116,80,97,114,101,110,116,41,59,92,110,32,32,32,32,32,32,118,97,114,32,111,102,102,115,101,116,80,97,114,101,110,116,83,116,121,108,101,115,32,61,32,103,101,116,67,83,40,111,102,102,115,101,116,80,97,114,101,110,116,41,59,92,110,32,32,32,32,32,32,112,97,114,101,110,116,79,102,102,115,101,116,46,116,111,112,32,43,61,32,40,48,44,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,111,102,102,115,101,116,80,97,114,101,110,116,83,116,121,108,101,115,46,98,111,114,100,101,114,84,111,112,87,105,100,116,104,44,32,48,41,59,92,110,32,32,32,32,32,32,112,97,114,101,110,116,79,102,102,115,101,116,46,108,101,102,116,32,43,61,32,40,48,44,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,111,102,102,115,101,116,80,97,114,101,110,116,83,116,121,108,101,115,46,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,44,32,48,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,116,111,112,58,32,95,111,102,102,115,101,116,46,116,111,112,32,45,32,112,97,114,101,110,116,79,102,102,115,101,116,46,116,111,112,32,45,32,40,48,44,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,101,108,83,116,121,108,101,115,46,109,97,114,103,105,110,84,111,112,44,32,48,41,44,92,110,32,32,32,32,108,101,102,116,58,32,95,111,102,102,115,101,116,46,108,101,102,116,32,45,32,112,97,114,101,110,116,79,102,102,115,101,116,46,108,101,102,116,32,45,32,40,48,44,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,116,111,70,108,111,97,116,41,40,101,108,83,116,121,108,101,115,46,109,97,114,103,105,110,76,101,102,116,44,32,48,41,92,110,32,32,125,59,92,110,125,59,32,47,47,32,70,105,110,100,32,97,108,108,32,116,97,98,97,98,108,101,32,101,108,101,109,101,110,116,115,32,105,110,32,116,104,101,32,103,105,118,101,110,32,101,108,101,109,101,110,116,92,110,47,47,32,65,115,115,117,109,101,115,32,117,115,101,114,115,32,104,97,118,101,32,110,111,116,32,117,115,101,100,32,96,116,97,98,105,110,100,101,120,96,32,62,32,96,48,96,32,111,110,32,101,108,101,109,101,110,116,115,92,110,92,110,118,97,114,32,103,101,116,84,97,98,97,98,108,101,115,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,84,97,98,97,98,108,101,115,40,41,32,123,92,110,32,32,118,97,114,32,114,111,111,116,69,108,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,100,111,99,117,109,101,110,116,59,92,110,32,32,114,101,116,117,114,110,32,115,101,108,101,99,116,65,108,108,40,84,65,66,65,66,76,69,95,83,69,76,69,67,84,79,82,44,32,114,111,111,116,69,108,41,46,102,105,108,116,101,114,40,105,115,86,105,115,105,98,108,101,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,101,108,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,108,46,116,97,98,73,110,100,101,120,32,62,32,45,49,32,38,38,32,33,101,108,46,100,105,115,97,98,108,101,100,59,92,110,32,32,125,41,59,92,110,125,59,32,47,47,32,65,116,116,101,109,112,116,32,116,111,32,102,111,99,117,115,32,97,110,32,101,108,101,109,101,110,116,44,32,97,110,100,32,114,101,116,117,114,110,32,96,116,114,117,101,96,32,105,102,32,115,117,99,99,101,115,115,102,117,108,92,110,92,110,118,97,114,32,97,116,116,101,109,112,116,70,111,99,117,115,32,61,32,102,117,110,99,116,105,111,110,32,97,116,116,101,109,112,116,70,111,99,117,115,40,101,108,41,32,123,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,101,108,46,102,111,99,117,115,40,111,112,116,105,111,110,115,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,95,117,110,117,115,101,100,41,32,123,125,92,110,92,110,32,32,114,101,116,117,114,110,32,105,115,65,99,116,105,118,101,69,108,101,109,101,110,116,40,101,108,41,59,92,110,125,59,32,47,47,32,65,116,116,101,109,112,116,32,116,111,32,98,108,117,114,32,97,110,32,101,108,101,109,101,110,116,44,32,97,110,100,32,114,101,116,117,114,110,32,96,116,114,117,101,96,32,105,102,32,115,117,99,99,101,115,115,102,117,108,92,110,92,110,118,97,114,32,97,116,116,101,109,112,116,66,108,117,114,32,61,32,102,117,110,99,116,105,111,110,32,97,116,116,101,109,112,116,66,108,117,114,40,101,108,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,101,108,46,98,108,117,114,40,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,95,117,110,117,115,101,100,50,41,32,123,125,92,110,92,110,32,32,114,101,116,117,114,110,32,33,105,115,65,99,116,105,118,101,69,108,101,109,101,110,116,40,101,108,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,110,118,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,110,118,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,69,110,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,69,110,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,78,111,87,97,114,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,78,111,87,97,114,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,42,92,110,32,42,32,85,116,105,108,105,116,105,101,115,32,116,111,32,103,101,116,32,105,110,102,111,114,109,97,116,105,111,110,32,97,98,111,117,116,32,116,104,101,32,99,117,114,114,101,110,116,32,101,110,118,105,114,111,110,109,101,110,116,92,110,32,42,47,92,110,118,97,114,32,103,101,116,69,110,118,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,69,110,118,40,107,101,121,41,32,123,92,110,32,32,118,97,114,32,102,97,108,108,98,97,99,107,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,110,117,108,108,59,92,110,32,32,118,97,114,32,101,110,118,32,61,32,116,121,112,101,111,102,32,112,114,111,99,101,115,115,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,112,114,111,99,101,115,115,32,63,32,40,123,92,34,78,79,68,69,95,69,78,86,92,34,58,92,34,100,101,118,101,108,111,112,109,101,110,116,92,34,44,92,34,66,65,83,69,95,85,82,76,92,34,58,92,34,92,34,125,41,32,124,124,32,48,32,58,32,123,125,59,92,110,92,110,32,32,105,102,32,40,33,107,101,121,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,114,101,116,117,114,110,32,101,110,118,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,101,110,118,91,107,101,121,93,32,124,124,32,102,97,108,108,98,97,99,107,59,92,110,125,59,92,110,118,97,114,32,103,101,116,78,111,87,97,114,110,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,78,111,87,97,114,110,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,101,116,69,110,118,40,39,66,79,79,84,83,84,82,65,80,95,86,85,69,95,78,79,95,87,65,82,78,39,41,32,124,124,32,103,101,116,69,110,118,40,39,78,79,68,69,95,69,78,86,39,41,32,61,61,61,32,39,112,114,111,100,117,99,116,105,111,110,39,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,110,118,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,118,101,110,116,79,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,118,101,110,116,79,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,118,101,110,116,79,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,118,101,110,116,79,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,118,101,110,116,79,110,79,102,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,118,101,110,116,79,110,79,102,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,114,115,101,69,118,101,110,116,79,112,116,105,111,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,97,114,115,101,69,118,101,110,116,79,112,116,105,111,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,111,112,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,111,112,69,118,101,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,32,47,47,32,45,45,45,32,85,116,105,108,115,32,45,45,45,92,110,47,47,32,78,111,114,109,97,108,105,122,101,32,101,118,101,110,116,32,111,112,116,105,111,110,115,32,98,97,115,101,100,32,111,110,32,115,117,112,112,111,114,116,32,111,102,32,112,97,115,115,105,118,101,32,111,112,116,105,111,110,92,110,47,47,32,69,120,112,111,114,116,101,100,32,111,110,108,121,32,102,111,114,32,116,101,115,116,105,110,103,32,112,117,114,112,111,115,101,115,92,110,92,110,118,97,114,32,112,97,114,115,101,69,118,101,110,116,79,112,116,105,111,110,115,32,61,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,69,118,101,110,116,79,112,116,105,111,110,115,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,58,32,99,97,110,39,116,32,116,101,115,116,32,105,110,32,74,83,68,79,77,44,32,97,115,32,105,116,32,115,117,112,112,111,114,116,115,32,112,97,115,115,105,118,101,32,42,47,92,110,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,72,65,83,95,80,65,83,83,73,86,69,95,69,86,69,78,84,95,83,85,80,80,79,82,84,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,79,98,106,101,99,116,41,40,111,112,116,105,111,110,115,41,32,63,32,111,112,116,105,111,110,115,32,58,32,123,92,110,32,32,32,32,32,32,99,97,112,116,117,114,101,58,32,33,33,111,112,116,105,111,110,115,32,124,124,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,47,32,78,101,101,100,32,116,111,32,116,114,97,110,115,108,97,116,101,32,116,111,32,97,99,116,117,97,108,32,66,111,111,108,101,97,110,32,118,97,108,117,101,92,110,32,32,32,32,114,101,116,117,114,110,32,33,33,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,79,98,106,101,99,116,41,40,111,112,116,105,111,110,115,41,32,63,32,111,112,116,105,111,110,115,46,99,97,112,116,117,114,101,32,58,32,111,112,116,105,111,110,115,41,59,92,110,32,32,125,92,110,125,59,32,47,47,32,65,116,116,97,99,104,32,97,110,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,32,116,111,32,97,110,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,101,118,101,110,116,79,110,32,61,32,102,117,110,99,116,105,111,110,32,101,118,101,110,116,79,110,40,101,108,44,32,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,105,102,32,40,101,108,32,38,38,32,101,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,41,32,123,92,110,32,32,32,32,101,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,44,32,112,97,114,115,101,69,118,101,110,116,79,112,116,105,111,110,115,40,111,112,116,105,111,110,115,41,41,59,92,110,32,32,125,92,110,125,59,32,47,47,32,82,101,109,111,118,101,32,97,110,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,32,102,114,111,109,32,97,110,32,101,108,101,109,101,110,116,92,110,92,110,118,97,114,32,101,118,101,110,116,79,102,102,32,61,32,102,117,110,99,116,105,111,110,32,101,118,101,110,116,79,102,102,40,101,108,44,32,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,105,102,32,40,101,108,32,38,38,32,101,108,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,41,32,123,92,110,32,32,32,32,101,108,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,114,44,32,112,97,114,115,101,69,118,101,110,116,79,112,116,105,111,110,115,40,111,112,116,105,111,110,115,41,41,59,92,110,32,32,125,92,110,125,59,32,47,47,32,85,116,105,108,105,116,121,32,109,101,116,104,111,100,32,116,111,32,97,100,100,47,114,101,109,111,118,101,32,97,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,32,98,97,115,101,100,32,111,110,32,102,105,114,115,116,32,97,114,103,117,109,101,110,116,32,40,98,111,111,108,101,97,110,41,92,110,47,47,32,73,116,32,112,97,115,115,101,115,32,97,108,108,32,111,116,104,101,114,32,97,114,103,117,109,101,110,116,115,32,116,111,32,116,104,101,32,96,101,118,101,110,116,79,110,40,41,96,32,111,114,32,96,101,118,101,110,116,79,102,102,96,32,109,101,116,104,111,100,92,110,92,110,118,97,114,32,101,118,101,110,116,79,110,79,102,102,32,61,32,102,117,110,99,116,105,111,110,32,101,118,101,110,116,79,110,79,102,102,40,111,110,41,32,123,92,110,32,32,118,97,114,32,109,101,116,104,111,100,32,61,32,111,110,32,63,32,101,118,101,110,116,79,110,32,58,32,101,118,101,110,116,79,102,102,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,95,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,32,97,114,103,115,32,61,32,110,101,119,32,65,114,114,97,121,40,95,108,101,110,32,62,32,49,32,63,32,95,108,101,110,32,45,32,49,32,58,32,48,41,44,32,95,107,101,121,32,61,32,49,59,32,95,107,101,121,32,60,32,95,108,101,110,59,32,95,107,101,121,43,43,41,32,123,92,110,32,32,32,32,97,114,103,115,91,95,107,101,121,32,45,32,49,93,32,61,32,97,114,103,117,109,101,110,116,115,91,95,107,101,121,93,59,92,110,32,32,125,92,110,92,110,32,32,109,101,116,104,111,100,46,97,112,112,108,121,40,118,111,105,100,32,48,44,32,97,114,103,115,41,59,92,110,125,59,32,47,47,32,85,116,105,108,105,116,121,32,109,101,116,104,111,100,32,116,111,32,112,114,101,118,101,110,116,32,116,104,101,32,100,101,102,97,117,108,116,32,101,118,101,110,116,32,104,97,110,100,108,105,110,103,32,97,110,100,32,112,114,111,112,97,103,97,116,105,111,110,92,110,92,110,118,97,114,32,115,116,111,112,69,118,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,115,116,111,112,69,118,101,110,116,40,101,118,101,110,116,41,32,123,92,110,32,32,118,97,114,32,95,114,101,102,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,44,92,110,32,32,32,32,32,32,95,114,101,102,36,112,114,101,118,101,110,116,68,101,102,97,117,108,116,32,61,32,95,114,101,102,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,44,92,110,32,32,32,32,32,32,112,114,101,118,101,110,116,68,101,102,97,117,108,116,32,61,32,95,114,101,102,36,112,114,101,118,101,110,116,68,101,102,97,117,108,116,32,61,61,61,32,118,111,105,100,32,48,32,63,32,116,114,117,101,32,58,32,95,114,101,102,36,112,114,101,118,101,110,116,68,101,102,97,117,108,116,44,92,110,32,32,32,32,32,32,95,114,101,102,36,112,114,111,112,97,103,97,116,105,111,110,32,61,32,95,114,101,102,46,112,114,111,112,97,103,97,116,105,111,110,44,92,110,32,32,32,32,32,32,112,114,111,112,97,103,97,116,105,111,110,32,61,32,95,114,101,102,36,112,114,111,112,97,103,97,116,105,111,110,32,61,61,61,32,118,111,105,100,32,48,32,63,32,116,114,117,101,32,58,32,95,114,101,102,36,112,114,111,112,97,103,97,116,105,111,110,44,92,110,32,32,32,32,32,32,95,114,101,102,36,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,32,61,32,95,114,101,102,46,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,44,92,110,32,32,32,32,32,32,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,32,61,32,95,114,101,102,36,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,32,61,61,61,32,118,111,105,100,32,48,32,63,32,102,97,108,115,101,32,58,32,95,114,101,102,36,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,59,92,110,92,110,32,32,105,102,32,40,112,114,101,118,101,110,116,68,101,102,97,117,108,116,41,32,123,92,110,32,32,32,32,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,112,114,111,112,97,103,97,116,105,111,110,41,32,123,92,110,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,41,32,123,92,110,32,32,32,32,101,118,101,110,116,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,59,92,110,32,32,125,92,110,125,59,32,47,47,32,72,101,108,112,101,114,32,109,101,116,104,111,100,32,116,111,32,99,111,110,118,101,114,116,32,97,32,99,111,109,112,111,110,101,110,116,47,100,105,114,101,99,116,105,118,101,32,110,97,109,101,32,116,111,32,97,32,98,97,115,101,32,101,118,101,110,116,32,110,97,109,101,92,110,47,47,32,96,103,101,116,66,97,115,101,69,118,101,110,116,78,97,109,101,40,39,66,78,97,118,105,103,97,116,105,111,110,73,116,101,109,39,41,96,32,61,62,32,39,110,97,118,105,103,97,116,105,111,110,45,105,116,101,109,39,92,110,47,47,32,96,103,101,116,66,97,115,101,69,118,101,110,116,78,97,109,101,40,39,66,86,84,111,103,103,108,101,39,41,96,32,61,62,32,39,116,111,103,103,108,101,39,92,110,92,110,118,97,114,32,103,101,116,66,97,115,101,69,118,101,110,116,78,97,109,101,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,66,97,115,101,69,118,101,110,116,78,97,109,101,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,107,101,98,97,98,67,97,115,101,41,40,118,97,108,117,101,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,82,88,95,66,86,95,80,82,69,70,73,88,44,32,39,39,41,41,59,92,110,125,59,32,47,47,32,71,101,116,32,97,32,114,111,111,116,32,101,118,101,110,116,32,110,97,109,101,32,98,121,32,99,111,109,112,111,110,101,110,116,47,100,105,114,101,99,116,105,118,101,32,97,110,100,32,101,118,101,110,116,32,110,97,109,101,92,110,47,47,32,96,103,101,116,66,97,115,101,69,118,101,110,116,78,97,109,101,40,39,66,77,111,100,97,108,39,44,32,39,115,104,111,119,39,41,96,32,61,62,32,39,98,118,58,58,109,111,100,97,108,58,58,115,104,111,119,39,92,110,92,110,92,110,118,97,114,32,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,82,111,111,116,69,118,101,110,116,78,97,109,101,40,110,97,109,101,44,32,101,118,101,110,116,78,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,44,32,103,101,116,66,97,115,101,69,118,101,110,116,78,97,109,101,40,110,97,109,101,41,44,32,101,118,101,110,116,78,97,109,101,93,46,106,111,105,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,69,80,65,82,65,84,79,82,41,59,92,110,125,59,32,47,47,32,71,101,116,32,97,32,114,111,111,116,32,97,99,116,105,111,110,32,101,118,101,110,116,32,110,97,109,101,32,98,121,32,99,111,109,112,111,110,101,110,116,47,100,105,114,101,99,116,105,118,101,32,97,110,100,32,97,99,116,105,111,110,32,110,97,109,101,92,110,47,47,32,96,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,40,39,66,77,111,100,97,108,39,44,32,39,115,104,111,119,39,41,96,32,61,62,32,39,98,118,58,58,115,104,111,119,58,58,109,111,100,97,108,39,92,110,92,110,118,97,114,32,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,82,111,111,116,65,99,116,105,111,110,69,118,101,110,116,78,97,109,101,40,110,97,109,101,44,32,97,99,116,105,111,110,78,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,80,82,69,70,73,88,44,32,97,99,116,105,111,110,78,97,109,101,44,32,103,101,116,66,97,115,101,69,118,101,110,116,78,97,109,101,40,110,97,109,101,41,93,46,106,111,105,110,40,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,82,79,79,84,95,69,86,69,78,84,95,78,65,77,69,95,83,69,80,65,82,65,84,79,82,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,118,101,110,116,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,45,115,99,111,112,101,45,105,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,45,115,99,111,112,101,45,105,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,83,99,111,112,101,73,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,83,99,111,112,101,73,100,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,47,32,84,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,97,32,99,111,109,112,111,110,101,110,116,39,115,32,115,99,111,112,101,100,32,115,116,121,108,101,32,97,116,116,114,105,98,117,116,101,32,110,97,109,101,58,32,96,100,97,116,97,45,118,45,120,120,120,120,120,120,120,96,92,110,47,47,32,84,104,101,32,96,95,115,99,111,112,101,73,100,96,32,111,112,116,105,111,110,115,32,112,114,111,112,101,114,116,121,32,105,115,32,97,100,100,101,100,32,98,121,32,118,117,101,45,108,111,97,100,101,114,32,119,104,101,110,32,117,115,105,110,103,32,115,99,111,112,101,100,32,115,116,121,108,101,115,92,110,47,47,32,97,110,100,32,119,105,108,108,32,98,101,32,96,117,110,100,101,102,105,110,101,100,96,32,105,102,32,110,111,32,115,99,111,112,101,100,32,115,116,121,108,101,115,32,97,114,101,32,105,110,32,117,115,101,92,110,118,97,114,32,103,101,116,83,99,111,112,101,73,100,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,83,99,111,112,101,73,100,40,118,109,41,32,123,92,110,32,32,118,97,114,32,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,110,117,108,108,59,92,110,32,32,114,101,116,117,114,110,32,118,109,32,63,32,118,109,46,36,111,112,116,105,111,110,115,46,95,115,99,111,112,101,73,100,32,124,124,32,100,101,102,97,117,108,116,86,97,108,117,101,32,58,32,100,101,102,97,117,108,116,86,97,108,117,101,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,45,115,99,111,112,101,45,105,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,82,97,119,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,32,112,114,111,112,101,114,116,121,32,100,101,102,105,110,101,100,32,98,121,32,100,111,116,47,97,114,114,97,121,32,110,111,116,97,116,105,111,110,32,105,110,32,115,116,114,105,110,103,44,32,114,101,116,117,114,110,115,32,117,110,100,101,102,105,110,101,100,32,105,102,32,110,111,116,32,102,111,117,110,100,92,110,32,42,92,110,32,42,32,64,108,105,110,107,32,104,116,116,112,115,58,47,47,103,105,115,116,46,103,105,116,104,117,98,46,99,111,109,47,106,101,110,101,103,47,57,55,54,55,97,102,100,99,99,97,52,53,54,48,49,101,97,52,52,57,51,48,101,97,48,51,101,48,102,101,98,102,35,103,105,115,116,99,111,109,109,101,110,116,45,49,57,51,53,57,48,49,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,65,114,114,97,121,125,32,112,97,116,104,92,110,32,42,32,64,114,101,116,117,114,110,32,123,42,125,92,110,32,42,47,92,110,92,110,118,97,114,32,103,101,116,82,97,119,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,82,97,119,40,111,98,106,44,32,112,97,116,104,41,32,123,92,110,32,32,118,97,114,32,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,47,47,32,72,97,110,100,108,101,32,97,114,114,97,121,32,111,102,32,112,97,116,104,32,118,97,108,117,101,115,92,110,32,32,112,97,116,104,32,61,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,65,114,114,97,121,41,40,112,97,116,104,41,32,63,32,112,97,116,104,46,106,111,105,110,40,39,46,39,41,32,58,32,112,97,116,104,59,32,47,47,32,73,102,32,110,111,32,112,97,116,104,32,111,114,32,110,111,32,111,98,106,101,99,116,32,112,97,115,115,101,100,92,110,92,110,32,32,105,102,32,40,33,112,97,116,104,32,124,124,32,33,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,79,98,106,101,99,116,41,40,111,98,106,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,101,102,97,117,108,116,86,97,108,117,101,59,92,110,32,32,125,32,47,47,32,72,97,110,100,108,101,32,101,100,103,101,32,99,97,115,101,32,119,104,101,114,101,32,117,115,101,114,32,104,97,115,32,100,111,116,40,115,41,32,105,110,32,116,111,112,45,108,101,118,101,108,32,105,116,101,109,32,102,105,101,108,100,32,107,101,121,92,110,32,32,47,47,32,83,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,50,55,54,50,92,110,32,32,47,47,32,83,119,105,116,99,104,101,100,32,116,111,32,96,105,110,96,32,111,112,101,114,97,116,111,114,32,118,115,32,96,104,97,115,79,119,110,80,114,111,112,101,114,116,121,96,32,116,111,32,104,97,110,100,108,101,32,111,98,106,46,112,114,111,116,111,116,121,112,101,32,103,101,116,116,101,114,115,92,110,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,51,52,54,51,92,110,92,110,92,110,32,32,105,102,32,40,112,97,116,104,32,105,110,32,111,98,106,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,111,98,106,91,112,97,116,104,93,59,92,110,32,32,125,32,47,47,32,72,97,110,100,108,101,32,115,116,114,105,110,103,32,97,114,114,97,121,32,110,111,116,97,116,105,111,110,32,40,110,117,109,101,114,105,99,32,105,110,100,105,99,101,115,32,111,110,108,121,41,92,110,92,110,92,110,32,32,112,97,116,104,32,61,32,83,116,114,105,110,103,40,112,97,116,104,41,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,82,88,95,65,82,82,65,89,95,78,79,84,65,84,73,79,78,44,32,39,46,36,49,39,41,59,92,110,32,32,118,97,114,32,115,116,101,112,115,32,61,32,112,97,116,104,46,115,112,108,105,116,40,39,46,39,41,46,102,105,108,116,101,114,40,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,101,110,116,105,116,121,41,59,32,47,47,32,72,97,110,100,108,101,32,99,97,115,101,32,119,104,101,114,101,32,115,111,109,101,111,110,101,32,112,97,115,115,101,115,32,97,32,115,116,114,105,110,103,32,111,102,32,111,110,108,121,32,100,111,116,115,92,110,92,110,32,32,105,102,32,40,115,116,101,112,115,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,101,102,97,117,108,116,86,97,108,117,101,59,92,110,32,32,125,32,47,47,32,84,114,97,118,101,114,115,101,32,112,97,116,104,32,105,110,32,111,98,106,101,99,116,32,116,111,32,102,105,110,100,32,114,101,115,117,108,116,92,110,32,32,47,47,32,83,119,105,116,99,104,101,100,32,116,111,32,96,105,110,96,32,111,112,101,114,97,116,111,114,32,118,115,32,96,104,97,115,79,119,110,80,114,111,112,101,114,116,121,96,32,116,111,32,104,97,110,100,108,101,32,111,98,106,46,112,114,111,116,111,116,121,112,101,32,103,101,116,116,101,114,115,92,110,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,105,115,115,117,101,115,47,51,52,54,51,92,110,92,110,92,110,32,32,114,101,116,117,114,110,32,115,116,101,112,115,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,32,40,115,116,101,112,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,79,98,106,101,99,116,41,40,111,98,106,41,32,38,38,32,115,116,101,112,32,105,110,32,111,98,106,32,38,38,32,33,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,111,98,106,32,61,32,111,98,106,91,115,116,101,112,93,41,59,92,110,32,32,125,41,32,63,32,111,98,106,32,58,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,78,117,108,108,41,40,111,98,106,41,32,63,32,110,117,108,108,32,58,32,100,101,102,97,117,108,116,86,97,108,117,101,59,92,110,125,59,92,110,47,42,42,92,110,32,42,32,71,101,116,32,112,114,111,112,101,114,116,121,32,100,101,102,105,110,101,100,32,98,121,32,100,111,116,47,97,114,114,97,121,32,110,111,116,97,116,105,111,110,32,105,110,32,115,116,114,105,110,103,46,92,110,32,42,92,110,32,42,32,64,108,105,110,107,32,104,116,116,112,115,58,47,47,103,105,115,116,46,103,105,116,104,117,98,46,99,111,109,47,106,101,110,101,103,47,57,55,54,55,97,102,100,99,99,97,52,53,54,48,49,101,97,52,52,57,51,48,101,97,48,51,101,48,102,101,98,102,35,103,105,115,116,99,111,109,109,101,110,116,45,49,57,51,53,57,48,49,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,65,114,114,97,121,125,32,112,97,116,104,92,110,32,42,32,64,112,97,114,97,109,32,123,42,125,32,100,101,102,97,117,108,116,86,97,108,117,101,32,40,111,112,116,105,111,110,97,108,41,92,110,32,42,32,64,114,101,116,117,114,110,32,123,42,125,92,110,32,42,47,92,110,92,110,118,97,114,32,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,40,111,98,106,44,32,112,97,116,104,41,32,123,92,110,32,32,118,97,114,32,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,110,117,108,108,59,92,110,32,32,118,97,114,32,118,97,108,117,101,32,61,32,103,101,116,82,97,119,40,111,98,106,44,32,112,97,116,104,41,59,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,118,97,108,117,101,41,32,63,32,100,101,102,97,117,108,116,86,97,108,117,101,32,58,32,118,97,108,117,101,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,103,101,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,116,109,108,79,114,84,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,116,109,108,79,114,84,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,114,105,112,84,97,103,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,114,105,112,84,97,103,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,32,47,47,32,82,101,109,111,118,101,115,32,97,110,121,116,104,105,110,103,32,116,104,97,116,32,108,111,111,107,115,32,108,105,107,101,32,97,110,32,72,84,77,76,32,116,97,103,32,102,114,111,109,32,116,104,101,32,115,117,112,112,108,105,101,100,32,115,116,114,105,110,103,92,110,92,110,118,97,114,32,115,116,114,105,112,84,97,103,115,32,61,32,102,117,110,99,116,105,111,110,32,115,116,114,105,112,84,97,103,115,40,41,32,123,92,110,32,32,118,97,114,32,116,101,120,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,39,39,59,92,110,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,116,101,120,116,41,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,88,95,72,84,77,76,95,84,65,71,83,44,32,39,39,41,59,92,110,125,59,32,47,47,32,71,101,110,101,114,97,116,101,32,97,32,96,100,111,109,80,114,111,112,115,96,32,111,98,106,101,99,116,32,102,111,114,32,101,105,116,104,101,114,32,96,105,110,110,101,114,72,84,77,76,96,44,32,96,116,101,120,116,67,111,110,116,101,110,116,96,32,111,114,32,97,110,32,101,109,112,116,121,32,111,98,106,101,99,116,92,110,92,110,118,97,114,32,104,116,109,108,79,114,84,101,120,116,32,61,32,102,117,110,99,116,105,111,110,32,104,116,109,108,79,114,84,101,120,116,40,105,110,110,101,114,72,84,77,76,44,32,116,101,120,116,67,111,110,116,101,110,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,110,110,101,114,72,84,77,76,32,63,32,123,92,110,32,32,32,32,105,110,110,101,114,72,84,77,76,58,32,105,110,110,101,114,72,84,77,76,92,110,32,32,125,32,58,32,116,101,120,116,67,111,110,116,101,110,116,32,63,32,123,92,110,32,32,32,32,116,101,120,116,67,111,110,116,101,110,116,58,32,116,101,120,116,67,111,110,116,101,110,116,92,110,32,32,125,32,58,32,123,125,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,104,116,109,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,100,101,110,116,105,116,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,100,101,110,116,105,116,121,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,105,100,101,110,116,105,116,121,32,61,32,102,117,110,99,116,105,111,110,32,105,100,101,110,116,105,116,121,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,65,114,114,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,65,114,114,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,66,111,111,108,101,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,66,111,111,108,101,97,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,68,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,68,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,69,109,112,116,121,83,116,114,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,69,109,112,116,121,83,116,114,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,69,118,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,70,105,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,70,105,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,70,117,110,99,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,70,117,110,99,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,78,117,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,78,117,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,78,117,109,98,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,78,117,109,98,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,78,117,109,101,114,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,78,117,109,101,114,105,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,79,98,106,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,79,98,106,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,80,108,97,105,110,79,98,106,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,80,108,97,105,110,79,98,106,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,80,114,105,109,105,116,105,118,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,80,114,105,109,105,116,105,118,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,80,114,111,109,105,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,80,114,111,109,105,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,82,101,103,69,120,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,82,101,103,69,120,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,83,116,114,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,83,116,114,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,85,110,100,101,102,105,110,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,85,110,100,101,102,105,110,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,79,114,69,109,112,116,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,79,114,69,109,112,116,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,111,82,97,119,84,121,112,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,111,82,97,119,84,121,112,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,111,82,97,119,84,121,112,101,76,67,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,111,82,97,119,84,121,112,101,76,67,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,111,84,121,112,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,111,84,121,112,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,115,97,102,101,45,116,121,112,101,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,116,121,112,101,111,102,40,111,98,106,41,32,123,32,92,34,64,98,97,98,101,108,47,104,101,108,112,101,114,115,32,45,32,116,121,112,101,111,102,92,34,59,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,61,61,61,32,92,34,115,121,109,98,111,108,92,34,41,32,123,32,95,116,121,112,101,111,102,32,61,32,102,117,110,99,116,105,111,110,32,95,116,121,112,101,111,102,40,111,98,106,41,32,123,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,111,98,106,59,32,125,59,32,125,32,101,108,115,101,32,123,32,95,116,121,112,101,111,102,32,61,32,102,117,110,99,116,105,111,110,32,95,116,121,112,101,111,102,40,111,98,106,41,32,123,32,114,101,116,117,114,110,32,111,98,106,32,38,38,32,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,111,98,106,46,99,111,110,115,116,114,117,99,116,111,114,32,61,61,61,32,83,121,109,98,111,108,32,38,38,32,111,98,106,32,33,61,61,32,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,32,63,32,92,34,115,121,109,98,111,108,92,34,32,58,32,116,121,112,101,111,102,32,111,98,106,59,32,125,59,32,125,32,114,101,116,117,114,110,32,95,116,121,112,101,111,102,40,111,98,106,41,59,32,125,92,110,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,118,101,110,105,101,110,99,101,32,105,110,115,112,101,99,116,105,111,110,32,117,116,105,108,105,116,105,101,115,32,45,45,45,92,110,92,110,118,97,114,32,116,111,84,121,112,101,32,61,32,102,117,110,99,116,105,111,110,32,116,111,84,121,112,101,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,116,121,112,101,111,102,40,118,97,108,117,101,41,59,92,110,125,59,92,110,118,97,114,32,116,111,82,97,119,84,121,112,101,32,61,32,102,117,110,99,116,105,111,110,32,116,111,82,97,119,84,121,112,101,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,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,118,97,108,117,101,41,46,115,108,105,99,101,40,56,44,32,45,49,41,59,92,110,125,59,92,110,118,97,114,32,116,111,82,97,119,84,121,112,101,76,67,32,61,32,102,117,110,99,116,105,111,110,32,116,111,82,97,119,84,121,112,101,76,67,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,82,97,119,84,121,112,101,40,118,97,108,117,101,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,125,59,92,110,118,97,114,32,105,115,85,110,100,101,102,105,110,101,100,32,61,32,102,117,110,99,116,105,111,110,32,105,115,85,110,100,101,102,105,110,101,100,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,125,59,92,110,118,97,114,32,105,115,78,117,108,108,32,61,32,102,117,110,99,116,105,111,110,32,105,115,78,117,108,108,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,110,117,108,108,59,92,110,125,59,92,110,118,97,114,32,105,115,69,109,112,116,121,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,105,115,69,109,112,116,121,83,116,114,105,110,103,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,39,39,59,92,110,125,59,92,110,118,97,114,32,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,32,61,32,102,117,110,99,116,105,111,110,32,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,85,110,100,101,102,105,110,101,100,40,118,97,108,117,101,41,32,124,124,32,105,115,78,117,108,108,40,118,97,108,117,101,41,59,92,110,125,59,92,110,118,97,114,32,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,79,114,69,109,112,116,121,32,61,32,102,117,110,99,116,105,111,110,32,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,79,114,69,109,112,116,121,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,40,118,97,108,117,101,41,32,124,124,32,105,115,69,109,112,116,121,83,116,114,105,110,103,40,118,97,108,117,101,41,59,92,110,125,59,92,110,118,97,114,32,105,115,70,117,110,99,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,32,105,115,70,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,84,121,112,101,40,118,97,108,117,101,41,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,59,92,110,125,59,92,110,118,97,114,32,105,115,66,111,111,108,101,97,110,32,61,32,102,117,110,99,116,105,111,110,32,105,115,66,111,111,108,101,97,110,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,84,121,112,101,40,118,97,108,117,101,41,32,61,61,61,32,39,98,111,111,108,101,97,110,39,59,92,110,125,59,92,110,118,97,114,32,105,115,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,105,115,83,116,114,105,110,103,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,84,121,112,101,40,118,97,108,117,101,41,32,61,61,61,32,39,115,116,114,105,110,103,39,59,92,110,125,59,92,110,118,97,114,32,105,115,78,117,109,98,101,114,32,61,32,102,117,110,99,116,105,111,110,32,105,115,78,117,109,98,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,84,121,112,101,40,118,97,108,117,101,41,32,61,61,61,32,39,110,117,109,98,101,114,39,59,92,110,125,59,92,110,118,97,114,32,105,115,78,117,109,101,114,105,99,32,61,32,102,117,110,99,116,105,111,110,32,105,115,78,117,109,101,114,105,99,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,88,95,78,85,77,66,69,82,46,116,101,115,116,40,83,116,114,105,110,103,40,118,97,108,117,101,41,41,59,92,110,125,59,92,110,118,97,114,32,105,115,80,114,105,109,105,116,105,118,101,32,61,32,102,117,110,99,116,105,111,110,32,105,115,80,114,105,109,105,116,105,118,101,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,66,111,111,108,101,97,110,40,118,97,108,117,101,41,32,124,124,32,105,115,83,116,114,105,110,103,40,118,97,108,117,101,41,32,124,124,32,105,115,78,117,109,98,101,114,40,118,97,108,117,101,41,59,92,110,125,59,92,110,118,97,114,32,105,115,65,114,114,97,121,32,61,32,102,117,110,99,116,105,111,110,32,105,115,65,114,114,97,121,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,117,101,41,59,92,110,125,59,32,47,47,32,81,117,105,99,107,32,111,98,106,101,99,116,32,99,104,101,99,107,92,110,47,47,32,84,104,105,115,32,105,115,32,112,114,105,109,97,114,105,108,121,32,117,115,101,100,32,116,111,32,116,101,108,108,32,79,98,106,101,99,116,115,32,102,114,111,109,32,112,114,105,109,105,116,105,118,101,32,118,97,108,117,101,115,92,110,47,47,32,119,104,101,110,32,119,101,32,107,110,111,119,32,116,104,101,32,118,97,108,117,101,32,105,115,32,97,32,74,83,79,78,45,99,111,109,112,108,105,97,110,116,32,116,121,112,101,92,110,47,47,32,78,111,116,101,32,111,98,106,101,99,116,32,99,111,117,108,100,32,98,101,32,97,32,99,111,109,112,108,101,120,32,116,121,112,101,32,108,105,107,101,32,97,114,114,97,121,44,32,68,97,116,101,44,32,101,116,99,46,92,110,92,110,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,102,117,110,99,116,105,111,110,32,105,115,79,98,106,101,99,116,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,111,98,106,32,33,61,61,32,110,117,108,108,32,38,38,32,95,116,121,112,101,111,102,40,111,98,106,41,32,61,61,61,32,39,111,98,106,101,99,116,39,59,92,110,125,59,32,47,47,32,83,116,114,105,99,116,32,111,98,106,101,99,116,32,116,121,112,101,32,99,104,101,99,107,92,110,47,47,32,79,110,108,121,32,114,101,116,117,114,110,115,32,116,114,117,101,32,102,111,114,32,112,108,97,105,110,32,74,97,118,97,83,99,114,105,112,116,32,111,98,106,101,99,116,115,92,110,92,110,118,97,114,32,105,115,80,108,97,105,110,79,98,106,101,99,116,32,61,32,102,117,110,99,116,105,111,110,32,105,115,80,108,97,105,110,79,98,106,101,99,116,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,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,111,98,106,41,32,61,61,61,32,39,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,39,59,92,110,125,59,92,110,118,97,114,32,105,115,68,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,105,115,68,97,116,101,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,59,92,110,125,59,92,110,118,97,114,32,105,115,69,118,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,105,115,69,118,101,110,116,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,105,110,115,116,97,110,99,101,111,102,32,69,118,101,110,116,59,92,110,125,59,92,110,118,97,114,32,105,115,70,105,108,101,32,61,32,102,117,110,99,116,105,111,110,32,105,115,70,105,108,101,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,105,110,115,116,97,110,99,101,111,102,32,95,99,111,110,115,116,97,110,116,115,95,115,97,102,101,95,116,121,112,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,70,105,108,101,59,92,110,125,59,92,110,118,97,114,32,105,115,82,101,103,69,120,112,32,61,32,102,117,110,99,116,105,111,110,32,105,115,82,101,103,69,120,112,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,82,97,119,84,121,112,101,40,118,97,108,117,101,41,32,61,61,61,32,39,82,101,103,69,120,112,39,59,92,110,125,59,92,110,118,97,114,32,105,115,80,114,111,109,105,115,101,32,61,32,102,117,110,99,116,105,111,110,32,105,115,80,114,111,109,105,115,101,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,40,118,97,108,117,101,41,32,38,38,32,105,115,70,117,110,99,116,105,111,110,40,118,97,108,117,101,46,116,104,101,110,41,32,38,38,32,105,115,70,117,110,99,116,105,111,110,40,118,97,108,117,101,46,99,97,116,99,104,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,99,97,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,99,97,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,76,111,99,97,108,101,82,84,76,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,76,111,99,97,108,101,82,84,76,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,47,32,76,111,99,97,108,105,122,97,116,105,111,110,32,117,116,105,108,105,116,105,101,115,92,110,92,110,92,110,32,47,47,32,76,97,110,103,117,97,103,101,115,32,116,104,97,116,32,97,114,101,32,82,84,76,92,110,92,110,118,97,114,32,82,84,76,95,76,65,78,71,83,32,61,32,91,39,97,114,39,44,32,39,97,122,39,44,32,39,99,107,98,39,44,32,39,102,97,39,44,32,39,104,101,39,44,32,39,107,115,39,44,32,39,108,114,99,39,44,32,39,109,122,110,39,44,32,39,112,115,39,44,32,39,115,100,39,44,32,39,116,101,39,44,32,39,117,103,39,44,32,39,117,114,39,44,32,39,121,105,39,93,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,108,111,99,97,108,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,108,111,99,97,108,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,125,41,59,32,47,47,32,82,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,116,104,101,32,108,111,99,97,108,101,32,105,115,32,82,84,76,92,110,92,110,118,97,114,32,105,115,76,111,99,97,108,101,82,84,76,32,61,32,102,117,110,99,116,105,111,110,32,105,115,76,111,99,97,108,101,82,84,76,40,108,111,99,97,108,101,41,32,123,92,110,32,32,47,47,32,68,101,116,101,114,109,105,110,101,115,32,105,102,32,116,104,101,32,108,111,99,97,108,101,32,105,115,32,82,84,76,32,40,111,110,108,121,32,115,105,110,103,108,101,32,108,111,99,97,108,101,32,115,117,112,112,111,114,116,101,100,41,92,110,32,32,118,97,114,32,112,97,114,116,115,32,61,32,40,48,44,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,111,83,116,114,105,110,103,41,40,108,111,99,97,108,101,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,82,88,95,83,84,82,73,80,95,76,79,67,65,76,69,95,77,79,68,83,44,32,39,39,41,46,115,112,108,105,116,40,39,45,39,41,59,92,110,32,32,118,97,114,32,108,111,99,97,108,101,49,32,61,32,112,97,114,116,115,46,115,108,105,99,101,40,48,44,32,50,41,46,106,111,105,110,40,39,45,39,41,59,92,110,32,32,118,97,114,32,108,111,99,97,108,101,50,32,61,32,112,97,114,116,115,91,48,93,59,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,82,84,76,95,76,65,78,71,83,44,32,108,111,99,97,108,101,49,41,32,124,124,32,40,48,44,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,114,114,97,121,73,110,99,108,117,100,101,115,41,40,82,84,76,95,76,65,78,71,83,44,32,108,111,99,97,108,101,50,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,99,97,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,111,111,115,101,69,113,117,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,111,111,115,101,69,113,117,97,108,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,92,110,32,47,47,32,65,115,115,117,109,101,115,32,98,111,116,104,32,97,32,97,110,100,32,98,32,97,114,101,32,97,114,114,97,121,115,33,92,110,47,47,32,72,97,110,100,108,101,115,32,119,104,101,110,32,97,114,114,97,121,115,32,97,114,101,32,92,34,115,112,97,114,115,101,92,34,32,40,97,114,114,97,121,46,101,118,101,114,121,40,46,46,46,41,32,100,111,101,115,110,39,116,32,104,97,110,100,108,101,32,115,112,97,114,115,101,41,92,110,92,110,118,97,114,32,99,111,109,112,97,114,101,65,114,114,97,121,115,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,97,114,101,65,114,114,97,121,115,40,97,44,32,98,41,32,123,92,110,32,32,105,102,32,40,97,46,108,101,110,103,116,104,32,33,61,61,32,98,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,101,113,117,97,108,32,61,32,116,114,117,101,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,101,113,117,97,108,32,38,38,32,105,32,60,32,97,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,101,113,117,97,108,32,61,32,108,111,111,115,101,69,113,117,97,108,40,97,91,105,93,44,32,98,91,105,93,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,101,113,117,97,108,59,92,110,125,59,92,110,47,42,42,92,110,32,42,32,67,104,101,99,107,32,105,102,32,116,119,111,32,118,97,108,117,101,115,32,97,114,101,32,108,111,111,115,101,108,121,32,101,113,117,97,108,32,45,32,116,104,97,116,32,105,115,44,92,110,32,42,32,105,102,32,116,104,101,121,32,97,114,101,32,112,108,97,105,110,32,111,98,106,101,99,116,115,44,32,100,111,32,116,104,101,121,32,104,97,118,101,32,116,104,101,32,115,97,109,101,32,115,104,97,112,101,63,92,110,32,42,32,82,101,116,117,114,110,115,32,98,111,111,108,101,97,110,32,116,114,117,101,32,111,114,32,102,97,108,115,101,92,110,32,42,47,92,110,92,110,92,110,118,97,114,32,108,111,111,115,101,69,113,117,97,108,32,61,32,102,117,110,99,116,105,111,110,32,108,111,111,115,101,69,113,117,97,108,40,97,44,32,98,41,32,123,92,110,32,32,105,102,32,40,97,32,61,61,61,32,98,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,97,86,97,108,105,100,84,121,112,101,32,61,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,68,97,116,101,41,40,97,41,59,92,110,32,32,118,97,114,32,98,86,97,108,105,100,84,121,112,101,32,61,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,68,97,116,101,41,40,98,41,59,92,110,92,110,32,32,105,102,32,40,97,86,97,108,105,100,84,121,112,101,32,124,124,32,98,86,97,108,105,100,84,121,112,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,86,97,108,105,100,84,121,112,101,32,38,38,32,98,86,97,108,105,100,84,121,112,101,32,63,32,97,46,103,101,116,84,105,109,101,40,41,32,61,61,61,32,98,46,103,101,116,84,105,109,101,40,41,32,58,32,102,97,108,115,101,59,92,110,32,32,125,92,110,92,110,32,32,97,86,97,108,105,100,84,121,112,101,32,61,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,65,114,114,97,121,41,40,97,41,59,92,110,32,32,98,86,97,108,105,100,84,121,112,101,32,61,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,65,114,114,97,121,41,40,98,41,59,92,110,92,110,32,32,105,102,32,40,97,86,97,108,105,100,84,121,112,101,32,124,124,32,98,86,97,108,105,100,84,121,112,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,86,97,108,105,100,84,121,112,101,32,38,38,32,98,86,97,108,105,100,84,121,112,101,32,63,32,99,111,109,112,97,114,101,65,114,114,97,121,115,40,97,44,32,98,41,32,58,32,102,97,108,115,101,59,92,110,32,32,125,92,110,92,110,32,32,97,86,97,108,105,100,84,121,112,101,32,61,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,79,98,106,101,99,116,41,40,97,41,59,92,110,32,32,98,86,97,108,105,100,84,121,112,101,32,61,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,79,98,106,101,99,116,41,40,98,41,59,92,110,92,110,32,32,105,102,32,40,97,86,97,108,105,100,84,121,112,101,32,124,124,32,98,86,97,108,105,100,84,121,112,101,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,58,32,116,104,105,115,32,105,102,32,119,105,108,108,32,112,114,111,98,97,98,108,121,32,110,101,118,101,114,32,98,101,32,99,97,108,108,101,100,32,42,47,92,110,32,32,32,32,105,102,32,40,33,97,86,97,108,105,100,84,121,112,101,32,124,124,32,33,98,86,97,108,105,100,84,121,112,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,97,75,101,121,115,67,111,117,110,116,32,61,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,107,101,121,115,41,40,97,41,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,98,75,101,121,115,67,111,117,110,116,32,61,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,107,101,121,115,41,40,98,41,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,105,102,32,40,97,75,101,121,115,67,111,117,110,116,32,33,61,61,32,98,75,101,121,115,67,111,117,110,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,97,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,72,97,115,75,101,121,32,61,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,41,40,97,44,32,107,101,121,41,59,92,110,32,32,32,32,32,32,118,97,114,32,98,72,97,115,75,101,121,32,61,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,41,40,98,44,32,107,101,121,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,97,72,97,115,75,101,121,32,38,38,32,33,98,72,97,115,75,101,121,32,124,124,32,33,97,72,97,115,75,101,121,32,38,38,32,98,72,97,115,75,101,121,32,124,124,32,33,108,111,111,115,101,69,113,117,97,108,40,97,91,107,101,121,93,44,32,98,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,97,41,32,61,61,61,32,83,116,114,105,110,103,40,98,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,105,110,100,101,120,45,111,102,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,105,110,100,101,120,45,111,102,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,111,111,115,101,73,110,100,101,120,79,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,111,111,115,101,73,110,100,101,120,79,102,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,111,111,115,101,45,101,113,117,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,101,113,117,97,108,46,106,115,92,34,41,59,92,110,32,47,47,32,65,115,115,117,109,101,115,32,116,104,97,116,32,116,104,101,32,102,105,114,115,116,32,97,114,103,117,109,101,110,116,32,105,115,32,97,110,32,97,114,114,97,121,92,110,92,110,118,97,114,32,108,111,111,115,101,73,110,100,101,120,79,102,32,61,32,102,117,110,99,116,105,111,110,32,108,111,111,115,101,73,110,100,101,120,79,102,40,97,114,114,97,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,97,114,114,97,121,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,105,102,32,40,40,48,44,95,108,111,111,115,101,95,101,113,117,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,108,111,111,115,101,69,113,117,97,108,41,40,97,114,114,97,121,91,105,93,44,32,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,45,49,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,108,111,111,115,101,45,105,110,100,101,120,45,111,102,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,116,104,65,98,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,116,104,65,98,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,116,104,67,101,105,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,116,104,67,101,105,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,116,104,70,108,111,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,116,104,70,108,111,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,116,104,77,97,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,116,104,77,97,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,116,104,77,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,116,104,77,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,116,104,80,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,116,104,80,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,116,104,82,111,117,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,116,104,82,111,117,110,100,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,47,32,77,97,116,104,32,117,116,105,108,116,121,32,102,117,110,99,116,105,111,110,115,92,110,118,97,114,32,109,97,116,104,77,105,110,32,61,32,77,97,116,104,46,109,105,110,59,92,110,118,97,114,32,109,97,116,104,77,97,120,32,61,32,77,97,116,104,46,109,97,120,59,92,110,118,97,114,32,109,97,116,104,65,98,115,32,61,32,77,97,116,104,46,97,98,115,59,92,110,118,97,114,32,109,97,116,104,67,101,105,108,32,61,32,77,97,116,104,46,99,101,105,108,59,92,110,118,97,114,32,109,97,116,104,70,108,111,111,114,32,61,32,77,97,116,104,46,102,108,111,111,114,59,92,110,118,97,114,32,109,97,116,104,80,111,119,32,61,32,77,97,116,104,46,112,111,119,59,92,110,118,97,114,32,109,97,116,104,82,111,117,110,100,32,61,32,77,97,116,104,46,114,111,117,110,100,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,97,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,101,109,111,105,122,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,101,109,111,105,122,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,101,109,111,105,122,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,101,109,111,105,122,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,92,110,118,97,114,32,109,101,109,111,105,122,101,32,61,32,102,117,110,99,116,105,111,110,32,109,101,109,111,105,122,101,40,102,110,41,32,123,92,110,32,32,118,97,114,32,99,97,99,104,101,32,61,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,41,40,110,117,108,108,41,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,95,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,32,97,114,103,115,32,61,32,110,101,119,32,65,114,114,97,121,40,95,108,101,110,41,44,32,95,107,101,121,32,61,32,48,59,32,95,107,101,121,32,60,32,95,108,101,110,59,32,95,107,101,121,43,43,41,32,123,92,110,32,32,32,32,32,32,97,114,103,115,91,95,107,101,121,93,32,61,32,97,114,103,117,109,101,110,116,115,91,95,107,101,121,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,97,114,103,115,75,101,121,32,61,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,97,114,103,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,97,99,104,101,91,97,114,103,115,75,101,121,93,32,61,32,99,97,99,104,101,91,97,114,103,115,75,101,121,93,32,124,124,32,102,110,46,97,112,112,108,121,40,110,117,108,108,44,32,97,114,103,115,41,59,92,110,32,32,125,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,101,109,111,105,122,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,107,101,77,111,100,101,108,77,105,120,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,107,101,77,111,100,101,108,77,105,120,105,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,118,101,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,109,97,107,101,77,111,100,101,108,77,105,120,105,110,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,77,111,100,101,108,77,105,120,105,110,40,112,114,111,112,41,32,123,92,110,32,32,118,97,114,32,95,114,101,102,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,44,92,110,32,32,32,32,32,32,95,114,101,102,36,116,121,112,101,32,61,32,95,114,101,102,46,116,121,112,101,44,92,110,32,32,32,32,32,32,116,121,112,101,32,61,32,95,114,101,102,36,116,121,112,101,32,61,61,61,32,118,111,105,100,32,48,32,63,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,80,82,79,80,95,84,89,80,69,95,65,78,89,32,58,32,95,114,101,102,36,116,121,112,101,44,92,110,32,32,32,32,32,32,95,114,101,102,36,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,95,114,101,102,46,100,101,102,97,117,108,116,86,97,108,117,101,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,95,114,101,102,36,100,101,102,97,117,108,116,86,97,108,117,101,32,61,61,61,32,118,111,105,100,32,48,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,95,114,101,102,36,100,101,102,97,117,108,116,86,97,108,117,101,44,92,110,32,32,32,32,32,32,95,114,101,102,36,118,97,108,105,100,97,116,111,114,32,61,32,95,114,101,102,46,118,97,108,105,100,97,116,111,114,44,92,110,32,32,32,32,32,32,118,97,108,105,100,97,116,111,114,32,61,32,95,114,101,102,36,118,97,108,105,100,97,116,111,114,32,61,61,61,32,118,111,105,100,32,48,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,95,114,101,102,36,118,97,108,105,100,97,116,111,114,44,92,110,32,32,32,32,32,32,95,114,101,102,36,101,118,101,110,116,32,61,32,95,114,101,102,46,101,118,101,110,116,44,92,110,32,32,32,32,32,32,101,118,101,110,116,32,61,32,95,114,101,102,36,101,118,101,110,116,32,61,61,61,32,118,111,105,100,32,48,32,63,32,95,99,111,110,115,116,97,110,116,115,95,101,118,101,110,116,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,69,86,69,78,84,95,78,65,77,69,95,73,78,80,85,84,32,58,32,95,114,101,102,36,101,118,101,110,116,59,92,110,92,110,32,32,118,97,114,32,112,114,111,112,115,32,61,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,112,114,111,112,44,32,40,48,44,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,107,101,80,114,111,112,41,40,116,121,112,101,44,32,100,101,102,97,117,108,116,86,97,108,117,101,44,32,118,97,108,105,100,97,116,111,114,41,41,59,32,47,47,32,64,118,117,101,47,99,111,109,112,111,110,101,110,116,92,110,92,110,92,110,32,32,118,97,114,32,109,105,120,105,110,32,61,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,32,32,109,111,100,101,108,58,32,123,92,110,32,32,32,32,32,32,112,114,111,112,58,32,112,114,111,112,44,92,110,32,32,32,32,32,32,101,118,101,110,116,58,32,101,118,101,110,116,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,114,111,112,115,58,32,112,114,111,112,115,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,109,105,120,105,110,58,32,109,105,120,105,110,44,92,110,32,32,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,32,32,112,114,111,112,58,32,112,114,111,112,44,92,110,32,32,32,32,101,118,101,110,116,58,32,101,118,101,110,116,92,110,32,32,125,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,109,111,100,101,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,111,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,111,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,111,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,111,111,112,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,110,111,111,112,32,61,32,102,117,110,99,116,105,111,110,32,110,111,111,112,40,41,32,123,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,111,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,111,114,109,97,108,105,122,101,83,108,111,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,111,114,109,97,108,105,122,101,83,108,111,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,92,110,92,110,32,47,47,32,78,111,116,101,32,102,111,114,32,102,117,110,99,116,105,111,110,97,108,32,99,111,109,112,111,110,101,110,116,115,58,92,110,47,47,32,73,110,32,102,117,110,99,116,105,111,110,97,108,32,99,111,109,112,111,110,101,110,116,115,44,32,96,115,108,111,116,115,96,32,105,115,32,97,32,102,117,110,99,116,105,111,110,32,115,111,32,105,116,32,109,117,115,116,32,98,101,32,99,97,108,108,101,100,92,110,47,47,32,102,105,114,115,116,32,98,101,102,111,114,101,32,112,97,115,115,105,110,103,32,116,111,32,116,104,101,32,98,101,108,111,119,32,109,101,116,104,111,100,115,46,32,96,115,99,111,112,101,100,83,108,111,116,115,96,32,105,115,32,97,108,119,97,121,115,32,97,110,92,110,47,47,32,111,98,106,101,99,116,32,97,110,100,32,109,97,121,32,98,101,32,117,110,100,101,102,105,110,101,100,32,40,102,111,114,32,86,117,101,32,60,32,50,46,54,46,120,41,92,110,92,110,47,42,42,92,110,32,42,32,82,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,101,105,116,104,101,114,32,115,99,111,112,101,100,32,111,114,32,117,110,115,99,111,112,101,100,32,110,97,109,101,100,32,115,108,111,116,32,101,120,105,115,116,115,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,44,32,65,114,114,97,121,125,32,110,97,109,101,32,111,114,32,110,97,109,101,91,93,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,99,111,112,101,100,83,108,111,116,115,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,108,111,116,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,124,117,110,100,101,102,105,110,101,100,125,32,86,78,111,100,101,115,92,110,32,42,47,92,110,92,110,118,97,114,32,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,32,61,32,102,117,110,99,116,105,111,110,32,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,110,97,109,101,115,41,32,123,92,110,32,32,118,97,114,32,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,32,32,118,97,114,32,36,115,108,111,116,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,123,125,59,92,110,32,32,47,47,32,69,110,115,117,114,101,32,110,97,109,101,115,32,105,115,32,97,110,32,97,114,114,97,121,92,110,32,32,110,97,109,101,115,32,61,32,40,48,44,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,110,99,97,116,41,40,110,97,109,101,115,41,46,102,105,108,116,101,114,40,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,100,101,110,116,105,116,121,41,59,32,47,47,32,82,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,116,104,101,32,101,105,116,104,101,114,32,97,32,36,115,99,111,112,101,100,83,108,111,116,32,111,114,32,36,115,108,111,116,32,101,120,105,115,116,115,32,119,105,116,104,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,110,97,109,101,92,110,92,110,32,32,114,101,116,117,114,110,32,110,97,109,101,115,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,115,99,111,112,101,100,83,108,111,116,115,91,110,97,109,101,93,32,124,124,32,36,115,108,111,116,115,91,110,97,109,101,93,59,92,110,32,32,125,41,59,92,110,125,59,92,110,47,42,42,92,110,32,42,32,82,101,116,117,114,110,115,32,86,78,111,100,101,115,32,102,111,114,32,110,97,109,101,100,32,115,108,111,116,32,101,105,116,104,101,114,32,115,99,111,112,101,100,32,111,114,32,117,110,115,99,111,112,101,100,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,44,32,65,114,114,97,121,125,32,110,97,109,101,32,111,114,32,110,97,109,101,91,93,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,115,99,111,112,101,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,99,111,112,101,100,83,108,111,116,115,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,108,111,116,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,124,117,110,100,101,102,105,110,101,100,125,32,86,78,111,100,101,115,92,110,32,42,47,92,110,92,110,118,97,114,32,110,111,114,109,97,108,105,122,101,83,108,111,116,32,61,32,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,83,108,111,116,40,110,97,109,101,115,41,32,123,92,110,32,32,118,97,114,32,115,99,111,112,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,32,32,118,97,114,32,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,123,125,59,92,110,32,32,118,97,114,32,36,115,108,111,116,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,51,32,38,38,32,97,114,103,117,109,101,110,116,115,91,51,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,51,93,32,58,32,123,125,59,92,110,32,32,47,47,32,69,110,115,117,114,101,32,110,97,109,101,115,32,105,115,32,97,110,32,97,114,114,97,121,92,110,32,32,110,97,109,101,115,32,61,32,40,48,44,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,110,99,97,116,41,40,110,97,109,101,115,41,46,102,105,108,116,101,114,40,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,32,32,118,97,114,32,115,108,111,116,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,110,97,109,101,115,46,108,101,110,103,116,104,32,38,38,32,33,115,108,111,116,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,110,97,109,101,115,91,105,93,59,92,110,32,32,32,32,115,108,111,116,32,61,32,36,115,99,111,112,101,100,83,108,111,116,115,91,110,97,109,101,93,32,124,124,32,36,115,108,111,116,115,91,110,97,109,101,93,59,92,110,32,32,125,32,47,47,32,78,111,116,101,58,32,105,110,32,86,117,101,32,50,46,54,46,120,44,32,97,108,108,32,110,97,109,101,100,32,115,108,111,116,115,32,97,114,101,32,97,108,115,111,32,115,99,111,112,101,100,32,115,108,111,116,115,92,110,92,110,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,115,108,111,116,41,32,63,32,115,108,111,116,40,115,99,111,112,101,41,32,58,32,115,108,111,116,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,111,114,109,97,108,105,122,101,45,115,108,111,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,111,70,105,120,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,111,70,105,120,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,111,70,108,111,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,111,70,108,111,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,111,73,110,116,101,103,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,111,73,110,116,101,103,101,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,47,32,78,117,109,98,101,114,32,117,116,105,108,105,116,105,101,115,92,110,47,47,32,67,111,110,118,101,114,116,115,32,97,32,118,97,108,117,101,32,40,115,116,114,105,110,103,44,32,110,117,109,98,101,114,44,32,101,116,99,46,41,32,116,111,32,97,110,32,105,110,116,101,103,101,114,32,110,117,109,98,101,114,92,110,47,47,32,65,115,115,117,109,101,115,32,114,97,100,105,120,32,98,97,115,101,32,49,48,92,110,118,97,114,32,116,111,73,110,116,101,103,101,114,32,61,32,102,117,110,99,116,105,111,110,32,116,111,73,110,116,101,103,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,78,97,78,59,92,110,32,32,118,97,114,32,105,110,116,101,103,101,114,32,61,32,112,97,114,115,101,73,110,116,40,118,97,108,117,101,44,32,49,48,41,59,92,110,32,32,114,101,116,117,114,110,32,105,115,78,97,78,40,105,110,116,101,103,101,114,41,32,63,32,100,101,102,97,117,108,116,86,97,108,117,101,32,58,32,105,110,116,101,103,101,114,59,92,110,125,59,32,47,47,32,67,111,110,118,101,114,116,115,32,97,32,118,97,108,117,101,32,40,115,116,114,105,110,103,44,32,110,117,109,98,101,114,44,32,101,116,99,46,41,32,116,111,32,97,32,110,117,109,98,101,114,92,110,92,110,118,97,114,32,116,111,70,108,111,97,116,32,61,32,102,117,110,99,116,105,111,110,32,116,111,70,108,111,97,116,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,78,97,78,59,92,110,32,32,118,97,114,32,102,108,111,97,116,32,61,32,112,97,114,115,101,70,108,111,97,116,40,118,97,108,117,101,41,59,92,110,32,32,114,101,116,117,114,110,32,105,115,78,97,78,40,102,108,111,97,116,41,32,63,32,100,101,102,97,117,108,116,86,97,108,117,101,32,58,32,102,108,111,97,116,59,92,110,125,59,32,47,47,32,67,111,110,118,101,114,116,115,32,97,32,118,97,108,117,101,32,40,115,116,114,105,110,103,44,32,110,117,109,98,101,114,44,32,101,116,99,46,41,32,116,111,32,97,32,115,116,114,105,110,103,92,110,47,47,32,114,101,112,114,101,115,101,110,116,97,116,105,111,110,32,119,105,116,104,32,96,112,114,101,99,105,115,105,111,110,96,32,100,105,103,105,116,115,32,97,102,116,101,114,32,116,104,101,32,100,101,99,105,109,97,108,92,110,47,47,32,82,101,116,117,114,110,115,32,116,104,101,32,115,116,114,105,110,103,32,39,78,97,78,39,32,105,102,32,116,104,101,32,118,97,108,117,101,32,99,97,110,110,111,116,32,98,101,32,99,111,110,118,101,114,116,101,100,92,110,92,110,118,97,114,32,116,111,70,105,120,101,100,32,61,32,102,117,110,99,116,105,111,110,32,116,111,70,105,120,101,100,40,118,97,108,44,32,112,114,101,99,105,115,105,111,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,70,108,111,97,116,40,118,97,108,41,46,116,111,70,105,120,101,100,40,116,111,73,110,116,101,103,101,114,40,112,114,101,99,105,115,105,111,110,44,32,48,41,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,110,117,109,98,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,115,115,105,103,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,115,115,105,103,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,108,111,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,108,111,110,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,101,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,114,101,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,105,110,101,80,114,111,112,101,114,116,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,114,101,101,122,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,114,101,101,122,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,80,114,111,116,111,116,121,112,101,79,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,97,115,79,119,110,80,114,111,112,101,114,116,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,70,114,111,122,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,70,114,111,122,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,107,101,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,107,101,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,101,114,103,101,68,101,101,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,101,114,103,101,68,101,101,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,111,109,105,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,111,109,105,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,105,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,105,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,111,114,116,75,101,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,111,114,116,75,101,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,111,83,116,114,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,111,83,116,114,105,110,103,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,32,47,47,32,45,45,45,32,83,116,97,116,105,99,32,45,45,45,92,110,92,110,118,97,114,32,97,115,115,105,103,110,32,61,32,102,117,110,99,116,105,111,110,32,97,115,115,105,103,110,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,97,115,115,105,103,110,46,97,112,112,108,121,40,79,98,106,101,99,116,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,59,92,110,118,97,114,32,99,114,101,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,40,112,114,111,116,111,44,32,111,112,116,105,111,110,97,108,80,114,111,112,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,112,114,111,116,111,44,32,111,112,116,105,111,110,97,108,80,114,111,112,115,41,59,92,110,125,59,92,110,118,97,114,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,32,61,32,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,111,98,106,44,32,112,114,111,112,115,41,32,123,92,110,32,32,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,105,101,115,40,111,98,106,44,32,112,114,111,112,115,41,59,92,110,125,59,92,110,118,97,114,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,32,61,32,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,112,114,111,112,44,32,100,101,115,99,114,105,112,116,111,114,41,32,123,92,110,32,32,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,111,98,106,44,32,112,114,111,112,44,32,100,101,115,99,114,105,112,116,111,114,41,59,92,110,125,59,92,110,118,97,114,32,102,114,101,101,122,101,32,61,32,102,117,110,99,116,105,111,110,32,102,114,101,101,122,101,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,102,114,101,101,122,101,40,111,98,106,41,59,92,110,125,59,92,110,118,97,114,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,111,98,106,41,32,123,92,110,32,32,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,78,97,109,101,115,40,111,98,106,41,59,92,110,125,59,92,110,118,97,114,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,32,61,32,102,117,110,99,116,105,111,110,32,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,111,98,106,44,32,112,114,111,112,41,32,123,92,110,32,32,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,111,98,106,44,32,112,114,111,112,41,59,92,110,125,59,92,110,118,97,114,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,40,111,98,106,41,32,123,92,110,32,32,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,83,121,109,98,111,108,115,40,111,98,106,41,59,92,110,125,59,92,110,118,97,114,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,111,98,106,41,59,92,110,125,59,92,110,118,97,114,32,105,115,32,61,32,102,117,110,99,116,105,111,110,32,105,115,40,118,97,108,117,101,49,44,32,118,97,108,117,101,50,41,32,123,92,110,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,105,115,40,118,97,108,117,101,49,44,32,118,97,108,117,101,50,41,59,92,110,125,59,92,110,118,97,114,32,105,115,70,114,111,122,101,110,32,61,32,102,117,110,99,116,105,111,110,32,105,115,70,114,111,122,101,110,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,105,115,70,114,111,122,101,110,40,111,98,106,41,59,92,110,125,59,92,110,118,97,114,32,107,101,121,115,32,61,32,102,117,110,99,116,105,111,110,32,107,101,121,115,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,41,59,92,110,125,59,32,47,47,32,45,45,45,32,92,34,73,110,115,116,97,110,99,101,92,34,32,45,45,45,92,110,92,110,118,97,114,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,32,61,32,102,117,110,99,116,105,111,110,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,98,106,44,32,112,114,111,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,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,111,98,106,44,32,112,114,111,112,41,59,92,110,125,59,92,110,118,97,114,32,116,111,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,116,111,83,116,114,105,110,103,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,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,111,98,106,41,59,92,110,125,59,32,47,47,32,45,45,45,32,85,116,105,108,105,116,105,101,115,32,45,45,45,92,110,47,47,32,83,104,97,108,108,111,119,32,99,111,112,121,32,97,110,32,111,98,106,101,99,116,92,110,92,110,118,97,114,32,99,108,111,110,101,32,61,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,111,98,106,41,59,92,110,125,59,32,47,47,32,82,101,116,117,114,110,32,97,32,115,104,97,108,108,111,119,32,99,111,112,121,32,111,102,32,111,98,106,101,99,116,32,119,105,116,104,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,112,114,111,112,101,114,116,105,101,115,32,111,110,108,121,92,110,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,115,116,46,103,105,116,104,117,98,46,99,111,109,47,98,105,115,117,98,117,115,47,50,100,97,56,97,102,55,101,56,48,49,102,102,100,56,49,51,102,97,98,55,97,99,50,50,49,97,97,55,97,102,99,92,110,92,110,118,97,114,32,112,105,99,107,32,61,32,102,117,110,99,116,105,111,110,32,112,105,99,107,40,111,98,106,44,32,112,114,111,112,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,107,101,121,115,40,111,98,106,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,115,46,105,110,100,101,120,79,102,40,107,101,121,41,32,33,61,61,32,45,49,59,92,110,32,32,125,41,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,117,108,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,114,101,115,117,108,116,41,44,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,107,101,121,44,32,111,98,106,91,107,101,121,93,41,41,59,92,110,32,32,125,44,32,123,125,41,59,92,110,125,59,32,47,47,32,82,101,116,117,114,110,32,97,32,115,104,97,108,108,111,119,32,99,111,112,121,32,111,102,32,111,98,106,101,99,116,32,119,105,116,104,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,112,114,111,112,101,114,116,105,101,115,32,111,109,105,116,116,101,100,92,110,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,115,116,46,103,105,116,104,117,98,46,99,111,109,47,98,105,115,117,98,117,115,47,50,100,97,56,97,102,55,101,56,48,49,102,102,100,56,49,51,102,97,98,55,97,99,50,50,49,97,97,55,97,102,99,92,110,92,110,118,97,114,32,111,109,105,116,32,61,32,102,117,110,99,116,105,111,110,32,111,109,105,116,40,111,98,106,44,32,112,114,111,112,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,107,101,121,115,40,111,98,106,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,115,46,105,110,100,101,120,79,102,40,107,101,121,41,32,61,61,61,32,45,49,59,92,110,32,32,125,41,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,117,108,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,114,101,115,117,108,116,41,44,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,107,101,121,44,32,111,98,106,91,107,101,121,93,41,41,59,92,110,32,32,125,44,32,123,125,41,59,92,110,125,59,32,47,47,32,77,101,114,103,101,115,32,116,119,111,32,111,98,106,101,99,116,32,100,101,101,112,108,121,32,116,111,103,101,116,104,101,114,92,110,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,115,116,46,103,105,116,104,117,98,46,99,111,109,47,83,97,108,97,107,97,114,47,49,100,55,49,51,55,100,101,57,99,98,56,98,55,48,52,101,52,56,97,92,110,92,110,118,97,114,32,109,101,114,103,101,68,101,101,112,32,61,32,102,117,110,99,116,105,111,110,32,109,101,114,103,101,68,101,101,112,40,116,97,114,103,101,116,44,32,115,111,117,114,99,101,41,32,123,92,110,32,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,79,98,106,101,99,116,41,40,116,97,114,103,101,116,41,32,38,38,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,79,98,106,101,99,116,41,40,115,111,117,114,99,101,41,41,32,123,92,110,32,32,32,32,107,101,121,115,40,115,111,117,114,99,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,79,98,106,101,99,116,41,40,115,111,117,114,99,101,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,97,114,103,101,116,91,107,101,121,93,32,124,124,32,33,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,79,98,106,101,99,116,41,40,116,97,114,103,101,116,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,91,107,101,121,93,32,61,32,115,111,117,114,99,101,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,109,101,114,103,101,68,101,101,112,40,116,97,114,103,101,116,91,107,101,121,93,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,97,115,115,105,103,110,40,116,97,114,103,101,116,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,92,110,125,59,32,47,47,32,82,101,116,117,114,110,115,32,97,32,115,104,97,108,108,111,119,32,99,111,112,121,32,111,102,32,116,104,101,32,111,98,106,101,99,116,32,119,105,116,104,32,107,101,121,115,32,105,110,32,115,111,114,116,101,100,32,111,114,100,101,114,92,110,92,110,118,97,114,32,115,111,114,116,75,101,121,115,32,61,32,102,117,110,99,116,105,111,110,32,115,111,114,116,75,101,121,115,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,107,101,121,115,40,111,98,106,41,46,115,111,114,116,40,41,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,117,108,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,114,101,115,117,108,116,41,44,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,107,101,121,44,32,111,98,106,91,107,101,121,93,41,41,59,92,110,32,32,125,44,32,123,125,41,59,92,110,125,59,32,47,47,32,67,111,110,118,101,110,105,101,110,99,101,32,109,101,116,104,111,100,32,116,111,32,99,114,101,97,116,101,32,97,32,114,101,97,100,45,111,110,108,121,32,100,101,115,99,114,105,112,116,111,114,92,110,92,110,118,97,114,32,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,32,61,32,102,117,110,99,116,105,111,110,32,114,101,97,100,111,110,108,121,68,101,115,99,114,105,112,116,111,114,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,119,114,105,116,97,98,108,101,58,32,102,97,108,115,101,92,110,32,32,125,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,115,101,114,118,101,45,100,111,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,115,101,114,118,101,45,100,111,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,111,98,115,101,114,118,101,68,111,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,111,98,115,101,114,118,101,68,111,109,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,119,97,114,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,47,42,42,92,110,32,42,32,79,98,115,101,114,118,101,32,97,32,68,79,77,32,101,108,101,109,101,110,116,32,99,104,97,110,103,101,115,44,32,102,97,108,108,115,32,98,97,99,107,32,116,111,32,101,118,101,110,116,76,105,115,116,101,110,101,114,32,109,111,100,101,92,110,32,42,32,64,112,97,114,97,109,32,123,69,108,101,109,101,110,116,125,32,101,108,32,84,104,101,32,68,79,77,32,101,108,101,109,101,110,116,32,116,111,32,111,98,115,101,114,118,101,92,110,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,99,97,108,108,98,97,99,107,32,99,97,108,108,98,97,99,107,32,116,111,32,98,101,32,99,97,108,108,101,100,32,111,110,32,99,104,97,110,103,101,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,91,111,112,116,105,111,110,115,61,123,99,104,105,108,100,76,105,115,116,58,32,116,114,117,101,44,32,115,117,98,116,114,101,101,58,32,116,114,117,101,125,93,32,111,98,115,101,114,118,101,32,111,112,116,105,111,110,115,92,110,32,42,32,64,115,101,101,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,51,50,49,57,55,53,56,92,110,32,42,47,92,110,92,110,118,97,114,32,111,98,115,101,114,118,101,68,111,109,32,61,32,102,117,110,99,116,105,111,110,32,111,98,115,101,114,118,101,68,111,109,40,101,108,44,32,99,97,108,108,98,97,99,107,44,32,111,112,116,105,111,110,115,41,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,100,105,102,102,105,99,117,108,116,32,116,111,32,116,101,115,116,32,105,110,32,74,83,68,79,77,32,42,47,92,110,123,92,110,32,32,47,47,32,72,97,110,100,108,101,32,99,97,115,101,115,32,119,104,101,114,101,32,119,101,32,109,105,103,104,116,32,98,101,32,112,97,115,115,101,100,32,97,32,86,117,101,32,105,110,115,116,97,110,99,101,92,110,32,32,101,108,32,61,32,101,108,32,63,32,101,108,46,36,101,108,32,124,124,32,101,108,32,58,32,110,117,108,108,59,32,47,47,32,69,97,114,108,121,32,101,120,105,116,32,119,104,101,110,32,119,101,32,104,97,118,101,32,110,111,32,101,108,101,109,101,110,116,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,58,32,100,105,102,102,105,99,117,108,116,32,116,111,32,116,101,115,116,32,105,110,32,74,83,68,79,77,32,42,47,92,110,92,110,32,32,105,102,32,40,33,40,48,44,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,69,108,101,109,101,110,116,41,40,101,108,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,125,32,47,47,32,69,120,105,116,32,97,110,100,32,116,104,114,111,119,32,97,32,119,97,114,110,105,110,103,32,119,104,101,110,32,96,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,96,32,105,115,110,39,116,32,97,118,97,105,108,97,98,108,101,92,110,92,110,92,110,32,32,105,102,32,40,40,48,44,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,119,97,114,110,78,111,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,83,117,112,112,111,114,116,41,40,39,111,98,115,101,114,118,101,68,111,109,39,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,125,32,47,47,32,68,101,102,105,110,101,32,97,32,110,101,119,32,111,98,115,101,114,118,101,114,92,110,92,110,92,110,32,32,118,97,114,32,111,98,115,32,61,32,110,101,119,32,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,77,117,116,97,116,105,111,110,79,98,115,40,102,117,110,99,116,105,111,110,32,40,109,117,116,97,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,99,104,97,110,103,101,100,32,61,32,102,97,108,115,101,59,32,47,47,32,65,32,109,117,116,97,116,105,111,110,32,99,97,110,32,99,111,110,116,97,105,110,32,115,101,118,101,114,97,108,32,99,104,97,110,103,101,32,114,101,99,111,114,100,115,44,32,115,111,32,119,101,32,108,111,111,112,92,110,32,32,32,32,47,47,32,116,104,114,111,117,103,104,32,116,104,101,109,32,116,111,32,115,101,101,32,119,104,97,116,32,104,97,115,32,99,104,97,110,103,101,100,92,110,32,32,32,32,47,47,32,87,101,32,98,114,101,97,107,32,111,117,116,32,111,102,32,116,104,101,32,108,111,111,112,32,101,97,114,108,121,32,105,102,32,97,110,121,32,92,34,115,105,103,110,105,102,105,99,97,110,116,92,34,32,99,104,97,110,103,101,92,110,32,32,32,32,47,47,32,104,97,115,32,98,101,101,110,32,100,101,116,101,99,116,101,100,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,109,117,116,97,116,105,111,110,115,46,108,101,110,103,116,104,32,38,38,32,33,99,104,97,110,103,101,100,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,104,101,32,109,117,116,97,116,105,111,110,32,114,101,99,111,114,100,92,110,32,32,32,32,32,32,118,97,114,32,109,117,116,97,116,105,111,110,32,61,32,109,117,116,97,116,105,111,110,115,91,105,93,59,32,47,47,32,77,117,116,97,116,105,111,110,32,116,121,112,101,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,109,117,116,97,116,105,111,110,46,116,121,112,101,59,32,47,47,32,68,79,77,32,110,111,100,101,32,40,99,111,117,108,100,32,98,101,32,97,110,121,32,68,79,77,32,110,111,100,101,32,116,121,112,101,32,45,32,72,84,77,76,69,108,101,109,101,110,116,44,32,84,101,120,116,44,32,99,111,109,109,101,110,116,44,32,101,116,99,46,41,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,109,117,116,97,116,105,111,110,46,116,97,114,103,101,116,59,32,47,47,32,68,101,116,101,99,116,32,119,104,101,116,104,101,114,32,97,32,99,104,97,110,103,101,32,104,97,112,112,101,110,101,100,32,98,97,115,101,100,32,111,110,32,116,121,112,101,32,97,110,100,32,116,97,114,103,101,116,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,99,104,97,114,97,99,116,101,114,68,97,116,97,39,32,38,38,32,116,97,114,103,101,116,46,110,111,100,101,84,121,112,101,32,61,61,61,32,78,111,100,101,46,84,69,88,84,95,78,79,68,69,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,105,103,110,111,114,101,32,110,111,100,101,115,32,116,104,97,116,32,97,114,101,32,110,111,116,32,84,69,88,84,32,40,105,46,101,46,32,99,111,109,109,101,110,116,115,44,32,101,116,99,46,41,92,110,32,32,32,32,32,32,32,32,47,47,32,97,115,32,116,104,101,121,32,100,111,110,39,116,32,99,104,97,110,103,101,32,108,97,121,111,117,116,92,110,32,32,32,32,32,32,32,32,99,104,97,110,103,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,97,116,116,114,105,98,117,116,101,115,39,41,32,123,92,110,32,32,32,32,32,32,32,32,99,104,97,110,103,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,99,104,105,108,100,76,105,115,116,39,32,38,38,32,40,109,117,116,97,116,105,111,110,46,97,100,100,101,100,78,111,100,101,115,46,108,101,110,103,116,104,32,62,32,48,32,124,124,32,109,117,116,97,116,105,111,110,46,114,101,109,111,118,101,100,78,111,100,101,115,46,108,101,110,103,116,104,32,62,32,48,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,105,115,32,105,110,99,108,117,100,101,115,32,72,84,77,76,69,108,101,109,101,110,116,32,97,110,100,32,116,101,120,116,32,110,111,100,101,115,32,98,101,105,110,103,92,110,32,32,32,32,32,32,32,32,47,47,32,97,100,100,101,100,47,114,101,109,111,118,101,100,47,114,101,45,97,114,114,97,110,103,101,100,92,110,32,32,32,32,32,32,32,32,99,104,97,110,103,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,47,47,32,87,101,32,111,110,108,121,32,99,97,108,108,32,116,104,101,32,99,97,108,108,98,97,99,107,32,105,102,32,97,32,99,104,97,110,103,101,32,116,104,97,116,32,99,111,117,108,100,32,97,102,102,101,99,116,92,110,32,32,32,32,47,47,32,108,97,121,111,117,116,47,115,105,122,101,32,116,114,117,108,121,32,104,97,112,112,101,110,101,100,92,110,92,110,92,110,32,32,32,32,105,102,32,40,99,104,97,110,103,101,100,41,32,123,92,110,32,32,32,32,32,32,99,97,108,108,98,97,99,107,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,72,97,118,101,32,116,104,101,32,111,98,115,101,114,118,101,114,32,111,98,115,101,114,118,101,32,102,111,111,32,102,111,114,32,99,104,97,110,103,101,115,32,105,110,32,99,104,105,108,100,114,101,110,44,32,101,116,99,92,110,92,110,32,32,111,98,115,46,111,98,115,101,114,118,101,40,101,108,44,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,92,110,32,32,32,32,99,104,105,108,100,76,105,115,116,58,32,116,114,117,101,44,92,110,32,32,32,32,115,117,98,116,114,101,101,58,32,116,114,117,101,92,110,32,32,125,44,32,111,112,116,105,111,110,115,41,41,59,32,47,47,32,87,101,32,114,101,116,117,114,110,32,97,32,114,101,102,101,114,101,110,99,101,32,116,111,32,116,104,101,32,111,98,115,101,114,118,101,114,32,115,111,32,116,104,97,116,32,96,111,98,115,46,100,105,115,99,111,110,110,101,99,116,40,41,96,92,110,32,32,47,47,32,99,97,110,32,98,101,32,99,97,108,108,101,100,32,105,102,32,110,101,99,101,115,115,97,114,121,92,110,32,32,47,47,32,84,111,32,114,101,100,117,99,101,32,111,118,101,114,104,101,97,100,32,119,104,101,110,32,116,104,101,32,114,111,111,116,32,101,108,101,109,101,110,116,32,105,115,32,104,105,100,100,101,110,92,110,92,110,32,32,114,101,116,117,114,110,32,111,98,115,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,115,101,114,118,101,45,100,111,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,104,101,99,107,77,117,108,116,105,112,108,101,86,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,104,101,99,107,77,117,108,116,105,112,108,101,86,117,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,115,116,97,108,108,70,97,99,116,111,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,110,115,116,97,108,108,70,97,99,116,111,114,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,115,116,97,108,108,70,97,99,116,111,114,121,78,111,67,111,110,102,105,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,110,115,116,97,108,108,70,97,99,116,111,114,121,78,111,67,111,110,102,105,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,108,117,103,105,110,70,97,99,116,111,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,108,117,103,105,110,70,97,99,116,111,114,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,108,117,103,105,110,70,97,99,116,111,114,121,78,111,67,111,110,102,105,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,108,117,103,105,110,70,97,99,116,111,114,121,78,111,67,111,110,102,105,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,103,105,115,116,101,114,67,111,109,112,111,110,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,103,105,115,116,101,114,67,111,109,112,111,110,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,103,105,115,116,101,114,67,111,109,112,111,110,101,110,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,103,105,115,116,101,114,67,111,109,112,111,110,101,110,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,103,105,115,116,101,114,68,105,114,101,99,116,105,118,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,103,105,115,116,101,114,68,105,114,101,99,116,105,118,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,103,105,115,116,101,114,68,105,114,101,99,116,105,118,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,103,105,115,116,101,114,68,105,114,101,99,116,105,118,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,103,105,115,116,101,114,80,108,117,103,105,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,103,105,115,116,101,114,80,108,117,103,105,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,118,117,101,85,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,118,117,101,85,115,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,102,105,103,95,115,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,102,105,103,45,115,101,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,45,115,101,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,119,97,114,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,47,42,42,92,110,32,42,32,67,104,101,99,107,115,32,105,102,32,116,104,101,114,101,32,97,114,101,32,109,117,108,116,105,112,108,101,32,105,110,115,116,97,110,99,101,115,32,111,102,32,86,117,101,44,32,97,110,100,32,119,97,114,110,115,32,40,111,110,99,101,41,32,97,98,111,117,116,32,112,111,115,115,105,98,108,101,32,105,115,115,117,101,115,46,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,86,117,101,92,110,32,42,47,92,110,92,110,118,97,114,32,99,104,101,99,107,77,117,108,116,105,112,108,101,86,117,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,99,104,101,99,107,77,117,108,116,105,112,108,101,86,117,101,87,97,114,110,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,118,97,114,32,77,85,76,84,73,80,76,69,95,86,85,69,95,87,65,82,78,73,78,71,32,61,32,91,39,77,117,108,116,105,112,108,101,32,105,110,115,116,97,110,99,101,115,32,111,102,32,86,117,101,32,100,101,116,101,99,116,101,100,33,39,44,32,39,89,111,117,32,109,97,121,32,110,101,101,100,32,116,111,32,115,101,116,32,117,112,32,97,110,32,97,108,105,97,115,32,102,111,114,32,86,117,101,32,105,110,32,121,111,117,114,32,98,117,110,100,108,101,114,32,99,111,110,102,105,103,46,39,44,32,39,83,101,101,58,32,104,116,116,112,115,58,47,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,111,114,103,47,100,111,99,115,35,117,115,105,110,103,45,109,111,100,117,108,101,45,98,117,110,100,108,101,114,115,39,93,46,106,111,105,110,40,39,92,92,110,39,41,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,86,117,101,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,105,102,32,40,33,99,104,101,99,107,77,117,108,116,105,112,108,101,86,117,101,87,97,114,110,101,100,32,38,38,32,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,33,61,61,32,86,117,101,32,38,38,32,33,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,73,83,95,74,83,68,79,77,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,119,97,114,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,119,97,114,110,41,40,77,85,76,84,73,80,76,69,95,86,85,69,95,87,65,82,78,73,78,71,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,99,104,101,99,107,77,117,108,116,105,112,108,101,86,117,101,87,97,114,110,101,100,32,61,32,116,114,117,101,59,92,110,32,32,125,59,92,110,125,40,41,59,92,110,47,42,42,92,110,32,42,32,80,108,117,103,105,110,32,105,110,115,116,97,108,108,32,102,97,99,116,111,114,121,32,102,117,110,99,116,105,111,110,46,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,123,32,99,111,109,112,111,110,101,110,116,115,44,32,100,105,114,101,99,116,105,118,101,115,32,125,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,102,117,110,99,116,105,111,110,125,32,112,108,117,103,105,110,32,105,110,115,116,97,108,108,32,102,117,110,99,116,105,111,110,92,110,32,42,47,92,110,92,110,118,97,114,32,105,110,115,116,97,108,108,70,97,99,116,111,114,121,32,61,32,102,117,110,99,116,105,111,110,32,105,110,115,116,97,108,108,70,97,99,116,111,114,121,40,41,32,123,92,110,32,32,118,97,114,32,95,114,101,102,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,123,125,44,92,110,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,115,32,61,32,95,114,101,102,46,99,111,109,112,111,110,101,110,116,115,44,92,110,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,32,61,32,95,114,101,102,46,100,105,114,101,99,116,105,118,101,115,44,92,110,32,32,32,32,32,32,112,108,117,103,105,110,115,32,61,32,95,114,101,102,46,112,108,117,103,105,110,115,59,92,110,92,110,32,32,118,97,114,32,105,110,115,116,97,108,108,32,61,32,102,117,110,99,116,105,111,110,32,105,110,115,116,97,108,108,40,86,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,99,111,110,102,105,103,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,92,110,32,32,32,32,105,102,32,40,105,110,115,116,97,108,108,46,105,110,115,116,97,108,108,101,100,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,110,115,116,97,108,108,46,105,110,115,116,97,108,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,99,104,101,99,107,77,117,108,116,105,112,108,101,86,117,101,40,86,117,101,41,59,92,110,32,32,32,32,40,48,44,95,99,111,110,102,105,103,95,115,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,101,116,67,111,110,102,105,103,41,40,99,111,110,102,105,103,44,32,86,117,101,41,59,92,110,32,32,32,32,114,101,103,105,115,116,101,114,67,111,109,112,111,110,101,110,116,115,40,86,117,101,44,32,99,111,109,112,111,110,101,110,116,115,41,59,92,110,32,32,32,32,114,101,103,105,115,116,101,114,68,105,114,101,99,116,105,118,101,115,40,86,117,101,44,32,100,105,114,101,99,116,105,118,101,115,41,59,92,110,32,32,32,32,114,101,103,105,115,116,101,114,80,108,117,103,105,110,115,40,86,117,101,44,32,112,108,117,103,105,110,115,41,59,92,110,32,32,125,59,92,110,92,110,32,32,105,110,115,116,97,108,108,46,105,110,115,116,97,108,108,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,114,101,116,117,114,110,32,105,110,115,116,97,108,108,59,92,110,125,59,92,110,47,42,42,92,110,32,42,32,80,108,117,103,105,110,32,105,110,115,116,97,108,108,32,102,97,99,116,111,114,121,32,102,117,110,99,116,105,111,110,32,40,110,111,32,112,108,117,103,105,110,32,99,111,110,102,105,103,32,111,112,116,105,111,110,41,46,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,123,32,99,111,109,112,111,110,101,110,116,115,44,32,100,105,114,101,99,116,105,118,101,115,32,125,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,102,117,110,99,116,105,111,110,125,32,112,108,117,103,105,110,32,105,110,115,116,97,108,108,32,102,117,110,99,116,105,111,110,92,110,32,42,47,92,110,92,110,118,97,114,32,105,110,115,116,97,108,108,70,97,99,116,111,114,121,78,111,67,111,110,102,105,103,32,61,32,102,117,110,99,116,105,111,110,32,105,110,115,116,97,108,108,70,97,99,116,111,114,121,78,111,67,111,110,102,105,103,40,41,32,123,92,110,32,32,118,97,114,32,95,114,101,102,50,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,123,125,44,92,110,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,115,32,61,32,95,114,101,102,50,46,99,111,109,112,111,110,101,110,116,115,44,92,110,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,32,61,32,95,114,101,102,50,46,100,105,114,101,99,116,105,118,101,115,44,92,110,32,32,32,32,32,32,112,108,117,103,105,110,115,32,61,32,95,114,101,102,50,46,112,108,117,103,105,110,115,59,92,110,92,110,32,32,118,97,114,32,105,110,115,116,97,108,108,32,61,32,102,117,110,99,116,105,111,110,32,105,110,115,116,97,108,108,40,86,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,105,110,115,116,97,108,108,46,105,110,115,116,97,108,108,101,100,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,110,115,116,97,108,108,46,105,110,115,116,97,108,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,99,104,101,99,107,77,117,108,116,105,112,108,101,86,117,101,40,86,117,101,41,59,92,110,32,32,32,32,114,101,103,105,115,116,101,114,67,111,109,112,111,110,101,110,116,115,40,86,117,101,44,32,99,111,109,112,111,110,101,110,116,115,41,59,92,110,32,32,32,32,114,101,103,105,115,116,101,114,68,105,114,101,99,116,105,118,101,115,40,86,117,101,44,32,100,105,114,101,99,116,105,118,101,115,41,59,92,110,32,32,32,32,114,101,103,105,115,116,101,114,80,108,117,103,105,110,115,40,86,117,101,44,32,112,108,117,103,105,110,115,41,59,92,110,32,32,125,59,92,110,92,110,32,32,105,110,115,116,97,108,108,46,105,110,115,116,97,108,108,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,114,101,116,117,114,110,32,105,110,115,116,97,108,108,59,92,110,125,59,92,110,47,42,42,92,110,32,42,32,80,108,117,103,105,110,32,111,98,106,101,99,116,32,102,97,99,116,111,114,121,32,102,117,110,99,116,105,111,110,46,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,123,32,99,111,109,112,111,110,101,110,116,115,44,32,100,105,114,101,99,116,105,118,101,115,44,32,112,108,117,103,105,110,115,32,125,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,111,98,106,101,99,116,125,32,112,108,117,103,105,110,32,105,110,115,116,97,108,108,32,111,98,106,101,99,116,92,110,32,42,47,92,110,92,110,118,97,114,32,112,108,117,103,105,110,70,97,99,116,111,114,121,32,61,32,102,117,110,99,116,105,111,110,32,112,108,117,103,105,110,70,97,99,116,111,114,121,40,41,32,123,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,123,125,59,92,110,32,32,118,97,114,32,101,120,116,101,110,100,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,101,120,116,101,110,100,41,44,32,123,125,44,32,123,92,110,32,32,32,32,105,110,115,116,97,108,108,58,32,105,110,115,116,97,108,108,70,97,99,116,111,114,121,40,111,112,116,105,111,110,115,41,92,110,32,32,125,41,59,92,110,125,59,92,110,47,42,42,92,110,32,42,32,80,108,117,103,105,110,32,111,98,106,101,99,116,32,102,97,99,116,111,114,121,32,102,117,110,99,116,105,111,110,32,40,110,111,32,99,111,110,102,105,103,32,111,112,116,105,111,110,41,46,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,123,32,99,111,109,112,111,110,101,110,116,115,44,32,100,105,114,101,99,116,105,118,101,115,44,32,112,108,117,103,105,110,115,32,125,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,111,98,106,101,99,116,125,32,112,108,117,103,105,110,32,105,110,115,116,97,108,108,32,111,98,106,101,99,116,92,110,32,42,47,92,110,92,110,118,97,114,32,112,108,117,103,105,110,70,97,99,116,111,114,121,78,111,67,111,110,102,105,103,32,61,32,102,117,110,99,116,105,111,110,32,112,108,117,103,105,110,70,97,99,116,111,114,121,78,111,67,111,110,102,105,103,40,41,32,123,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,123,125,59,92,110,32,32,118,97,114,32,101,120,116,101,110,100,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,101,120,116,101,110,100,41,44,32,123,125,44,32,123,92,110,32,32,32,32,105,110,115,116,97,108,108,58,32,105,110,115,116,97,108,108,70,97,99,116,111,114,121,78,111,67,111,110,102,105,103,40,111,112,116,105,111,110,115,41,92,110,32,32,125,41,59,92,110,125,59,92,110,47,42,42,92,110,32,42,32,76,111,97,100,32,97,32,103,114,111,117,112,32,111,102,32,112,108,117,103,105,110,115,46,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,86,117,101,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,80,108,117,103,105,110,32,100,101,102,105,110,105,116,105,111,110,115,92,110,32,42,47,92,110,92,110,118,97,114,32,114,101,103,105,115,116,101,114,80,108,117,103,105,110,115,32,61,32,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,80,108,117,103,105,110,115,40,86,117,101,41,32,123,92,110,32,32,118,97,114,32,112,108,117,103,105,110,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,112,108,117,103,105,110,32,105,110,32,112,108,117,103,105,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,112,108,117,103,105,110,32,38,38,32,112,108,117,103,105,110,115,91,112,108,117,103,105,110,93,41,32,123,92,110,32,32,32,32,32,32,86,117,101,46,117,115,101,40,112,108,117,103,105,110,115,91,112,108,117,103,105,110,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,47,42,42,92,110,32,42,32,76,111,97,100,32,97,32,99,111,109,112,111,110,101,110,116,46,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,86,117,101,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,67,111,109,112,111,110,101,110,116,32,110,97,109,101,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,67,111,109,112,111,110,101,110,116,32,100,101,102,105,110,105,116,105,111,110,92,110,32,42,47,92,110,92,110,118,97,114,32,114,101,103,105,115,116,101,114,67,111,109,112,111,110,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,67,111,109,112,111,110,101,110,116,40,86,117,101,44,32,110,97,109,101,44,32,100,101,102,41,32,123,92,110,32,32,105,102,32,40,86,117,101,32,38,38,32,110,97,109,101,32,38,38,32,100,101,102,41,32,123,92,110,32,32,32,32,86,117,101,46,99,111,109,112,111,110,101,110,116,40,110,97,109,101,44,32,100,101,102,41,59,92,110,32,32,125,92,110,125,59,92,110,47,42,42,92,110,32,42,32,76,111,97,100,32,97,32,103,114,111,117,112,32,111,102,32,99,111,109,112,111,110,101,110,116,115,46,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,86,117,101,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,79,98,106,101,99,116,32,111,102,32,99,111,109,112,111,110,101,110,116,32,100,101,102,105,110,105,116,105,111,110,115,92,110,32,42,47,92,110,92,110,118,97,114,32,114,101,103,105,115,116,101,114,67,111,109,112,111,110,101,110,116,115,32,61,32,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,67,111,109,112,111,110,101,110,116,115,40,86,117,101,41,32,123,92,110,32,32,118,97,114,32,99,111,109,112,111,110,101,110,116,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,99,111,109,112,111,110,101,110,116,32,105,110,32,99,111,109,112,111,110,101,110,116,115,41,32,123,92,110,32,32,32,32,114,101,103,105,115,116,101,114,67,111,109,112,111,110,101,110,116,40,86,117,101,44,32,99,111,109,112,111,110,101,110,116,44,32,99,111,109,112,111,110,101,110,116,115,91,99,111,109,112,111,110,101,110,116,93,41,59,92,110,32,32,125,92,110,125,59,92,110,47,42,42,92,110,32,42,32,76,111,97,100,32,97,32,100,105,114,101,99,116,105,118,101,46,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,86,117,101,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,68,105,114,101,99,116,105,118,101,32,110,97,109,101,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,68,105,114,101,99,116,105,118,101,32,100,101,102,105,110,105,116,105,111,110,92,110,32,42,47,92,110,92,110,118,97,114,32,114,101,103,105,115,116,101,114,68,105,114,101,99,116,105,118,101,32,61,32,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,68,105,114,101,99,116,105,118,101,40,86,117,101,44,32,110,97,109,101,44,32,100,101,102,41,32,123,92,110,32,32,105,102,32,40,86,117,101,32,38,38,32,110,97,109,101,32,38,38,32,100,101,102,41,32,123,92,110,32,32,32,32,47,47,32,69,110,115,117,114,101,32,116,104,97,116,32,97,110,121,32,108,101,97,100,105,110,103,32,86,32,105,115,32,114,101,109,111,118,101,100,32,102,114,111,109,32,116,104,101,92,110,32,32,32,32,47,47,32,110,97,109,101,44,32,97,115,32,86,117,101,32,97,100,100,115,32,105,116,32,97,117,116,111,109,97,116,105,99,97,108,108,121,92,110,32,32,32,32,86,117,101,46,100,105,114,101,99,116,105,118,101,40,110,97,109,101,46,114,101,112,108,97,99,101,40,47,94,86,66,47,44,32,39,66,39,41,44,32,100,101,102,41,59,92,110,32,32,125,92,110,125,59,92,110,47,42,42,92,110,32,42,32,76,111,97,100,32,97,32,103,114,111,117,112,32,111,102,32,100,105,114,101,99,116,105,118,101,115,46,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,86,117,101,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,79,98,106,101,99,116,32,111,102,32,100,105,114,101,99,116,105,118,101,32,100,101,102,105,110,105,116,105,111,110,115,92,110,32,42,47,92,110,92,110,118,97,114,32,114,101,103,105,115,116,101,114,68,105,114,101,99,116,105,118,101,115,32,61,32,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,68,105,114,101,99,116,105,118,101,115,40,86,117,101,41,32,123,92,110,32,32,118,97,114,32,100,105,114,101,99,116,105,118,101,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,100,105,114,101,99,116,105,118,101,32,105,110,32,100,105,114,101,99,116,105,118,101,115,41,32,123,92,110,32,32,32,32,114,101,103,105,115,116,101,114,68,105,114,101,99,116,105,118,101,40,86,117,101,44,32,100,105,114,101,99,116,105,118,101,44,32,100,105,114,101,99,116,105,118,101,115,91,100,105,114,101,99,116,105,118,101,93,41,59,92,110,32,32,125,92,110,125,59,92,110,47,42,42,92,110,32,42,32,73,110,115,116,97,108,108,32,112,108,117,103,105,110,32,105,102,32,119,105,110,100,111,119,46,86,117,101,32,97,118,97,105,108,97,98,108,101,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,80,108,117,103,105,110,32,100,101,102,105,110,105,116,105,111,110,92,110,32,42,47,92,110,92,110,118,97,114,32,118,117,101,85,115,101,32,61,32,102,117,110,99,116,105,111,110,32,118,117,101,85,115,101,40,86,117,101,80,108,117,103,105,110,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,72,65,83,95,87,73,78,68,79,87,95,83,85,80,80,79,82,84,32,38,38,32,119,105,110,100,111,119,46,86,117,101,41,32,123,92,110,32,32,32,32,119,105,110,100,111,119,46,86,117,101,46,117,115,101,40,86,117,101,80,108,117,103,105,110,41,59,92,110,32,32,125,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,92,110,92,110,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,72,65,83,95,87,73,78,68,79,87,95,83,85,80,80,79,82,84,32,38,38,32,86,117,101,80,108,117,103,105,110,46,78,65,77,69,41,32,123,92,110,32,32,32,32,119,105,110,100,111,119,91,86,117,101,80,108,117,103,105,110,46,78,65,77,69,93,32,61,32,86,117,101,80,108,117,103,105,110,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,108,117,103,105,110,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,112,121,80,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,112,121,80,114,111,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,97,115,80,114,111,112,70,117,110,99,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,97,115,80,114,111,112,70,117,110,99,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,107,101,80,114,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,107,101,80,114,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,107,101,80,114,111,112,67,111,110,102,105,103,117,114,97,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,107,101,80,114,111,112,67,111,110,102,105,103,117,114,97,98,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,108,117,99,107,80,114,111,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,108,117,99,107,80,114,111,112,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,101,102,105,120,80,114,111,112,78,97,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,101,102,105,120,80,114,111,112,78,97,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,117,102,102,105,120,80,114,111,112,78,97,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,117,102,102,105,120,80,114,111,112,78,97,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,110,112,114,101,102,105,120,80,114,111,112,78,97,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,110,112,114,101,102,105,120,80,114,111,112,78,97,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,112,114,111,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,108,111,110,101,45,100,101,101,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,108,111,110,101,45,100,101,101,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,102,105,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,99,111,110,102,105,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,111,119,110,75,101,121,115,40,111,98,106,101,99,116,44,32,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,123,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,101,99,116,41,59,32,105,102,32,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,41,32,123,32,118,97,114,32,115,121,109,98,111,108,115,32,61,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,40,111,98,106,101,99,116,41,59,32,105,102,32,40,101,110,117,109,101,114,97,98,108,101,79,110,108,121,41,32,115,121,109,98,111,108,115,32,61,32,115,121,109,98,111,108,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,121,109,41,32,123,32,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,111,98,106,101,99,116,44,32,115,121,109,41,46,101,110,117,109,101,114,97,98,108,101,59,32,125,41,59,32,107,101,121,115,46,112,117,115,104,46,97,112,112,108,121,40,107,101,121,115,44,32,115,121,109,98,111,108,115,41,59,32,125,32,114,101,116,117,114,110,32,107,101,121,115,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,116,97,114,103,101,116,41,32,123,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,33,61,32,110,117,108,108,32,63,32,97,114,103,117,109,101,110,116,115,91,105,93,32,58,32,123,125,59,32,105,102,32,40,105,32,37,32,50,41,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,44,32,116,114,117,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,32,125,41,59,32,125,32,101,108,115,101,32,105,102,32,40,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,115,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,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,115,40,115,111,117,114,99,101,41,41,59,32,125,32,101,108,115,101,32,123,32,111,119,110,75,101,121,115,40,79,98,106,101,99,116,40,115,111,117,114,99,101,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,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,115,111,117,114,99,101,44,32,107,101,121,41,41,59,32,125,41,59,32,125,32,125,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,32,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,32,125,41,59,32,125,32,101,108,115,101,32,123,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,32,125,32,114,101,116,117,114,110,32,111,98,106,59,32,125,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,80,114,101,102,105,120,32,97,32,112,114,111,112,101,114,116,121,92,110,92,110,118,97,114,32,112,114,101,102,105,120,80,114,111,112,78,97,109,101,32,61,32,102,117,110,99,116,105,111,110,32,112,114,101,102,105,120,80,114,111,112,78,97,109,101,40,112,114,101,102,105,120,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,114,101,102,105,120,32,43,32,40,48,44,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,112,112,101,114,70,105,114,115,116,41,40,118,97,108,117,101,41,59,92,110,125,59,32,47,47,32,82,101,109,111,118,101,32,97,32,112,114,101,102,105,120,32,102,114,111,109,32,97,32,112,114,111,112,101,114,116,121,92,110,92,110,118,97,114,32,117,110,112,114,101,102,105,120,80,114,111,112,78,97,109,101,32,61,32,102,117,110,99,116,105,111,110,32,117,110,112,114,101,102,105,120,80,114,111,112,78,97,109,101,40,112,114,101,102,105,120,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,108,111,119,101,114,70,105,114,115,116,41,40,118,97,108,117,101,46,114,101,112,108,97,99,101,40,112,114,101,102,105,120,44,32,39,39,41,41,59,92,110,125,59,32,47,47,32,83,117,102,102,105,120,32,99,97,110,32,98,101,32,97,32,102,97,108,115,101,121,32,118,97,108,117,101,32,115,111,32,110,111,116,104,105,110,103,32,105,115,32,97,112,112,101,110,100,101,100,32,116,111,32,115,116,114,105,110,103,92,110,47,47,32,40,104,101,108,112,115,32,119,104,101,110,32,108,111,111,112,105,110,103,32,111,118,101,114,32,112,114,111,112,115,32,38,32,115,111,109,101,32,115,104,111,117,108,100,110,39,116,32,99,104,97,110,103,101,41,92,110,47,47,32,85,115,101,32,100,97,116,97,32,108,97,115,116,32,112,97,114,97,109,101,116,101,114,115,32,116,111,32,97,108,108,111,119,32,102,111,114,32,99,117,114,114,121,105,110,103,92,110,92,110,118,97,114,32,115,117,102,102,105,120,80,114,111,112,78,97,109,101,32,61,32,102,117,110,99,116,105,111,110,32,115,117,102,102,105,120,80,114,111,112,78,97,109,101,40,115,117,102,102,105,120,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,43,32,40,115,117,102,102,105,120,32,63,32,40,48,44,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,112,112,101,114,70,105,114,115,116,41,40,115,117,102,102,105,120,41,32,58,32,39,39,41,59,92,110,125,59,32,47,47,32,71,101,110,101,114,97,116,101,115,32,97,32,112,114,111,112,32,111,98,106,101,99,116,92,110,92,110,118,97,114,32,109,97,107,101,80,114,111,112,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,80,114,111,112,40,41,32,123,92,110,32,32,118,97,114,32,116,121,112,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,95,99,111,110,115,116,97,110,116,115,95,112,114,111,112,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,80,82,79,80,95,84,89,80,69,95,65,78,89,59,92,110,32,32,118,97,114,32,118,97,108,117,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,118,97,114,32,114,101,113,117,105,114,101,100,79,114,86,97,108,105,100,97,116,111,114,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,118,97,114,32,118,97,108,105,100,97,116,111,114,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,51,32,38,38,32,97,114,103,117,109,101,110,116,115,91,51,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,51,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,118,97,114,32,114,101,113,117,105,114,101,100,32,61,32,114,101,113,117,105,114,101,100,79,114,86,97,108,105,100,97,116,111,114,32,61,61,61,32,116,114,117,101,59,92,110,32,32,118,97,108,105,100,97,116,111,114,32,61,32,114,101,113,117,105,114,101,100,32,63,32,118,97,108,105,100,97,116,111,114,32,58,32,114,101,113,117,105,114,101,100,79,114,86,97,108,105,100,97,116,111,114,59,92,110,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,116,121,112,101,32,63,32,123,92,110,32,32,32,32,116,121,112,101,58,32,116,121,112,101,92,110,32,32,125,32,58,32,123,125,41,44,32,114,101,113,117,105,114,101,100,32,63,32,123,92,110,32,32,32,32,114,101,113,117,105,114,101,100,58,32,114,101,113,117,105,114,101,100,92,110,32,32,125,32,58,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,118,97,108,117,101,41,32,63,32,123,125,32,58,32,123,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,79,98,106,101,99,116,41,40,118,97,108,117,101,41,32,63,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,125,32,58,32,118,97,108,117,101,92,110,32,32,125,41,44,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,118,97,108,105,100,97,116,111,114,41,32,63,32,123,125,32,58,32,123,92,110,32,32,32,32,118,97,108,105,100,97,116,111,114,58,32,118,97,108,105,100,97,116,111,114,92,110,32,32,125,41,59,92,110,125,59,32,47,47,32,67,111,112,105,101,115,32,112,114,111,112,115,32,102,114,111,109,32,111,110,101,32,97,114,114,97,121,47,111,98,106,101,99,116,32,116,111,32,97,32,110,101,119,32,97,114,114,97,121,47,111,98,106,101,99,116,92,110,47,47,32,80,114,111,112,32,118,97,108,117,101,115,32,97,114,101,32,97,108,115,111,32,99,108,111,110,101,100,32,97,115,32,110,101,119,32,114,101,102,101,114,101,110,99,101,115,32,116,111,32,112,114,101,118,101,110,116,32,112,111,115,115,105,98,108,101,92,110,47,47,32,109,117,116,97,116,105,111,110,32,111,102,32,111,114,105,103,105,110,97,108,32,112,114,111,112,32,111,98,106,101,99,116,32,118,97,108,117,101,115,92,110,47,47,32,79,112,116,105,111,110,97,108,108,121,32,97,99,99,101,112,116,115,32,97,32,102,117,110,99,116,105,111,110,32,116,111,32,116,114,97,110,115,102,111,114,109,32,116,104,101,32,112,114,111,112,32,110,97,109,101,92,110,92,110,118,97,114,32,99,111,112,121,80,114,111,112,115,32,61,32,102,117,110,99,116,105,111,110,32,99,111,112,121,80,114,111,112,115,40,112,114,111,112,115,41,32,123,92,110,32,32,118,97,114,32,116,114,97,110,115,102,111,114,109,70,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,100,101,110,116,105,116,121,59,92,110,92,110,32,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,65,114,114,97,121,41,40,112,114,111,112,115,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,115,46,109,97,112,40,116,114,97,110,115,102,111,114,109,70,110,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,111,112,105,101,100,32,61,32,123,125,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,32,105,110,32,112,114,111,112,115,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,32,32,105,102,32,40,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,41,40,112,114,111,112,115,44,32,112,114,111,112,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,112,114,111,112,32,118,97,108,117,101,32,105,115,32,97,110,32,111,98,106,101,99,116,44,32,100,111,32,97,32,115,104,97,108,108,111,119,32,99,108,111,110,101,92,110,32,32,32,32,32,32,47,47,32,116,111,32,112,114,101,118,101,110,116,32,112,111,116,101,110,116,105,97,108,32,109,117,116,97,116,105,111,110,115,32,116,111,32,116,104,101,32,111,114,105,103,105,110,97,108,32,111,98,106,101,99,116,92,110,32,32,32,32,32,32,99,111,112,105,101,100,91,116,114,97,110,115,102,111,114,109,70,110,40,112,114,111,112,41,93,32,61,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,79,98,106,101,99,116,41,40,112,114,111,112,115,91,112,114,111,112,93,41,32,63,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,108,111,110,101,41,40,112,114,111,112,115,91,112,114,111,112,93,41,32,58,32,112,114,111,112,115,91,112,114,111,112,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,99,111,112,105,101,100,59,92,110,125,59,32,47,47,32,71,105,118,101,110,32,97,110,32,97,114,114,97,121,32,111,102,32,112,114,111,112,101,114,116,105,101,115,32,111,114,32,97,110,32,111,98,106,101,99,116,32,111,102,32,112,114,111,112,101,114,116,121,32,107,101,121,115,44,92,110,47,47,32,112,108,117,99,107,115,32,97,108,108,32,116,104,101,32,118,97,108,117,101,115,32,111,102,102,32,116,104,101,32,116,97,114,103,101,116,32,111,98,106,101,99,116,44,32,114,101,116,117,114,110,105,110,103,32,97,32,110,101,119,32,111,98,106,101,99,116,92,110,47,47,32,116,104,97,116,32,104,97,115,32,112,114,111,112,115,32,116,104,97,116,32,114,101,102,101,114,101,110,99,101,32,116,104,101,32,111,114,105,103,105,110,97,108,32,112,114,111,112,32,118,97,108,117,101,115,92,110,92,110,118,97,114,32,112,108,117,99,107,80,114,111,112,115,32,61,32,102,117,110,99,116,105,111,110,32,112,108,117,99,107,80,114,111,112,115,40,107,101,121,115,84,111,80,108,117,99,107,44,32,111,98,106,84,111,80,108,117,99,107,41,32,123,92,110,32,32,118,97,114,32,116,114,97,110,115,102,111,114,109,70,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,100,101,110,116,105,116,121,59,92,110,32,32,114,101,116,117,114,110,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,65,114,114,97,121,41,40,107,101,121,115,84,111,80,108,117,99,107,41,32,63,32,107,101,121,115,84,111,80,108,117,99,107,46,115,108,105,99,101,40,41,32,58,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,107,101,121,115,41,40,107,101,121,115,84,111,80,108,117,99,107,41,41,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,109,101,109,111,44,32,112,114,111,112,41,32,123,92,110,32,32,32,32,109,101,109,111,91,116,114,97,110,115,102,111,114,109,70,110,40,112,114,111,112,41,93,32,61,32,111,98,106,84,111,80,108,117,99,107,91,112,114,111,112,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,109,101,109,111,59,92,110,32,32,125,44,32,123,125,41,59,92,110,125,59,32,47,47,32,77,97,107,101,32,97,32,112,114,111,112,32,111,98,106,101,99,116,32,99,111,110,102,105,103,117,114,97,98,108,101,32,98,121,32,103,108,111,98,97,108,32,99,111,110,102,105,103,117,114,97,116,105,111,110,92,110,47,47,32,82,101,112,108,97,99,101,115,32,116,104,101,32,99,117,114,114,101,110,116,32,96,100,101,102,97,117,108,116,96,32,107,101,121,32,111,102,32,101,97,99,104,32,112,114,111,112,32,119,105,116,104,32,97,32,96,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,40,41,96,92,110,47,47,32,99,97,108,108,32,116,104,97,116,32,102,97,108,108,115,32,98,97,99,107,32,116,111,32,116,104,101,32,99,117,114,114,101,110,116,32,100,101,102,97,117,108,116,32,118,97,108,117,101,32,111,102,32,116,104,101,32,112,114,111,112,92,110,92,110,118,97,114,32,109,97,107,101,80,114,111,112,67,111,110,102,105,103,117,114,97,98,108,101,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,80,114,111,112,67,111,110,102,105,103,117,114,97,98,108,101,40,112,114,111,112,44,32,107,101,121,44,32,99,111,109,112,111,110,101,110,116,75,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,40,48,44,95,99,108,111,110,101,95,100,101,101,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,99,108,111,110,101,68,101,101,112,41,40,112,114,111,112,41,41,44,32,123,125,44,32,123,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,102,117,110,99,116,105,111,110,32,98,118,67,111,110,102,105,103,117,114,97,98,108,101,80,114,111,112,68,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,40,48,44,95,99,111,110,102,105,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,41,40,99,111,109,112,111,110,101,110,116,75,101,121,44,32,107,101,121,44,32,112,114,111,112,46,100,101,102,97,117,108,116,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,118,97,108,117,101,41,32,63,32,118,97,108,117,101,40,41,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,59,32,47,47,32,77,97,107,101,32,97,32,112,114,111,112,115,32,111,98,106,101,99,116,32,99,111,110,102,105,103,117,114,97,98,108,101,32,98,121,32,103,108,111,98,97,108,32,99,111,110,102,105,103,117,114,97,116,105,111,110,92,110,47,47,32,82,101,112,108,97,99,101,115,32,116,104,101,32,99,117,114,114,101,110,116,32,96,100,101,102,97,117,108,116,96,32,107,101,121,32,111,102,32,101,97,99,104,32,112,114,111,112,32,119,105,116,104,32,97,32,96,103,101,116,67,111,109,112,111,110,101,110,116,67,111,110,102,105,103,40,41,96,92,110,47,47,32,99,97,108,108,32,116,104,97,116,32,102,97,108,108,115,32,98,97,99,107,32,116,111,32,116,104,101,32,99,117,114,114,101,110,116,32,100,101,102,97,117,108,116,32,118,97,108,117,101,32,111,102,32,116,104,101,32,112,114,111,112,92,110,92,110,118,97,114,32,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,32,61,32,102,117,110,99,116,105,111,110,32,109,97,107,101,80,114,111,112,115,67,111,110,102,105,103,117,114,97,98,108,101,40,112,114,111,112,115,44,32,99,111,109,112,111,110,101,110,116,75,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,107,101,121,115,41,40,112,114,111,112,115,41,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,117,108,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,111,98,106,101,99,116,83,112,114,101,97,100,40,95,111,98,106,101,99,116,83,112,114,101,97,100,40,123,125,44,32,114,101,115,117,108,116,41,44,32,123,125,44,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,107,101,121,44,32,109,97,107,101,80,114,111,112,67,111,110,102,105,103,117,114,97,98,108,101,40,112,114,111,112,115,91,107,101,121,93,44,32,107,101,121,44,32,99,111,109,112,111,110,101,110,116,75,101,121,41,41,41,59,92,110,32,32,125,44,32,123,125,41,59,92,110,125,59,32,47,47,32,71,101,116,32,102,117,110,99,116,105,111,110,32,110,97,109,101,32,119,101,32,117,115,101,32,105,110,32,96,109,97,107,101,80,114,111,112,67,111,110,102,105,103,117,114,97,98,108,101,40,41,96,92,110,47,47,32,102,111,114,32,116,104,101,32,112,114,111,112,32,100,101,102,97,117,108,116,32,118,97,108,117,101,32,111,118,101,114,114,105,100,101,32,116,111,32,99,111,109,112,97,114,101,92,110,47,47,32,97,103,97,105,110,115,116,32,105,110,32,96,104,97,115,80,114,111,112,70,117,110,99,116,105,111,110,40,41,96,92,110,92,110,118,97,114,32,99,111,110,102,105,103,117,114,97,98,108,101,80,114,111,112,68,101,102,97,117,108,116,70,110,78,97,109,101,32,61,32,109,97,107,101,80,114,111,112,67,111,110,102,105,103,117,114,97,98,108,101,40,123,125,44,32,39,39,44,32,39,39,41,46,100,101,102,97,117,108,116,46,110,97,109,101,59,32,47,47,32,68,101,116,101,99,116,32,119,101,116,104,101,114,32,116,104,101,32,103,105,118,101,110,32,118,97,108,117,101,32,105,115,32,99,117,114,114,101,110,116,108,121,32,97,32,102,117,110,99,116,105,111,110,92,110,47,47,32,97,110,100,32,105,115,110,39,116,32,116,104,101,32,112,114,111,112,115,32,100,101,102,97,117,108,116,32,102,117,110,99,116,105,111,110,92,110,92,110,118,97,114,32,104,97,115,80,114,111,112,70,117,110,99,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,32,104,97,115,80,114,111,112,70,117,110,99,116,105,111,110,40,102,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,70,117,110,99,116,105,111,110,41,40,102,110,41,32,38,38,32,102,110,46,110,97,109,101,32,33,61,61,32,99,111,110,102,105,103,117,114,97,98,108,101,80,114,111,112,68,101,102,97,117,108,116,70,110,78,97,109,101,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,112,114,111,112,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,114,111,117,116,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,114,111,117,116,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,109,112,117,116,101,72,114,101,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,109,112,117,116,101,72,114,101,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,109,112,117,116,101,82,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,109,112,117,116,101,82,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,109,112,117,116,101,84,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,109,112,117,116,101,84,97,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,76,105,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,76,105,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,82,111,117,116,101,114,76,105,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,82,111,117,116,101,114,76,105,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,114,115,101,81,117,101,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,97,114,115,101,81,117,101,114,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,114,105,110,103,105,102,121,81,117,101,114,121,79,98,106,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,114,105,110,103,105,102,121,81,117,101,114,121,79,98,106,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,65,78,67,72,79,82,95,84,65,71,32,61,32,39,97,39,59,32,47,47,32,77,101,116,104,111,100,32,116,111,32,114,101,112,108,97,99,101,32,114,101,115,101,114,118,101,100,32,99,104,97,114,115,92,110,92,110,118,97,114,32,101,110,99,111,100,101,82,101,115,101,114,118,101,82,101,112,108,97,99,101,114,32,61,32,102,117,110,99,116,105,111,110,32,101,110,99,111,100,101,82,101,115,101,114,118,101,82,101,112,108,97,99,101,114,40,99,41,32,123,92,110,32,32,114,101,116,117,114,110,32,39,37,39,32,43,32,99,46,99,104,97,114,67,111,100,101,65,116,40,48,41,46,116,111,83,116,114,105,110,103,40,49,54,41,59,92,110,125,59,32,47,47,32,70,105,120,101,100,32,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,32,119,104,105,99,104,32,105,115,32,109,111,114,101,32,99,111,110,102,111,114,109,97,110,116,32,116,111,32,82,70,67,51,57,56,54,58,92,110,47,47,32,45,32,101,115,99,97,112,101,115,32,91,33,39,40,41,42,93,92,110,47,47,32,45,32,112,114,101,115,101,114,118,101,32,99,111,109,109,97,115,92,110,92,110,92,110,118,97,114,32,101,110,99,111,100,101,32,61,32,102,117,110,99,116,105,111,110,32,101,110,99,111,100,101,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,40,48,44,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,111,83,116,114,105,110,103,41,40,115,116,114,41,41,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,82,88,95,69,78,67,79,68,69,95,82,69,86,69,82,83,69,44,32,101,110,99,111,100,101,82,101,115,101,114,118,101,82,101,112,108,97,99,101,114,41,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,82,88,95,69,78,67,79,68,69,68,95,67,79,77,77,65,44,32,39,44,39,41,59,92,110,125,59,92,110,92,110,118,97,114,32,100,101,99,111,100,101,32,61,32,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,59,32,47,47,32,83,116,114,105,110,103,105,102,105,101,115,32,97,110,32,111,98,106,101,99,116,32,111,102,32,113,117,101,114,121,32,112,97,114,97,109,101,116,101,114,115,92,110,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,45,114,111,117,116,101,114,47,98,108,111,98,47,100,101,118,47,115,114,99,47,117,116,105,108,47,113,117,101,114,121,46,106,115,92,110,92,110,118,97,114,32,115,116,114,105,110,103,105,102,121,81,117,101,114,121,79,98,106,32,61,32,102,117,110,99,116,105,111,110,32,115,116,114,105,110,103,105,102,121,81,117,101,114,121,79,98,106,40,111,98,106,41,32,123,92,110,32,32,105,102,32,40,33,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,111,98,106,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,39,39,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,113,117,101,114,121,32,61,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,107,101,121,115,41,40,111,98,106,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,111,98,106,91,107,101,121,93,59,92,110,92,110,32,32,32,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,39,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,78,117,108,108,41,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,101,110,99,111,100,101,40,107,101,121,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,65,114,114,97,121,41,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,117,108,116,115,44,32,118,97,108,117,101,50,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,78,117,108,108,41,40,118,97,108,117,101,50,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,115,46,112,117,115,104,40,101,110,99,111,100,101,40,107,101,121,41,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,118,97,108,117,101,50,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,70,97,115,116,101,114,32,116,104,97,110,32,115,116,114,105,110,103,32,105,110,116,101,114,112,111,108,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,115,46,112,117,115,104,40,101,110,99,111,100,101,40,107,101,121,41,32,43,32,39,61,39,32,43,32,101,110,99,111,100,101,40,118,97,108,117,101,50,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,115,59,92,110,32,32,32,32,32,32,125,44,32,91,93,41,46,106,111,105,110,40,39,38,39,41,59,92,110,32,32,32,32,125,32,47,47,32,70,97,115,116,101,114,32,116,104,97,110,32,115,116,114,105,110,103,32,105,110,116,101,114,112,111,108,97,116,105,111,110,92,110,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,101,110,99,111,100,101,40,107,101,121,41,32,43,32,39,61,39,32,43,32,101,110,99,111,100,101,40,118,97,108,117,101,41,59,92,110,32,32,125,41,92,110,32,32,47,42,32,109,117,115,116,32,99,104,101,99,107,32,102,111,114,32,108,101,110,103,116,104,44,32,97,115,32,119,101,32,111,110,108,121,32,119,97,110,116,32,116,111,32,102,105,108,116,101,114,32,101,109,112,116,121,32,115,116,114,105,110,103,115,44,32,110,111,116,32,116,104,105,110,103,115,32,116,104,97,116,32,108,111,111,107,32,102,97,108,115,101,121,33,32,42,47,92,110,32,32,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,46,108,101,110,103,116,104,32,62,32,48,59,92,110,32,32,125,41,46,106,111,105,110,40,39,38,39,41,59,92,110,32,32,114,101,116,117,114,110,32,113,117,101,114,121,32,63,32,92,34,63,92,34,46,99,111,110,99,97,116,40,113,117,101,114,121,41,32,58,32,39,39,59,92,110,125,59,92,110,118,97,114,32,112,97,114,115,101,81,117,101,114,121,32,61,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,81,117,101,114,121,40,113,117,101,114,121,41,32,123,92,110,32,32,118,97,114,32,112,97,114,115,101,100,32,61,32,123,125,59,92,110,32,32,113,117,101,114,121,32,61,32,40,48,44,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,111,83,116,114,105,110,103,41,40,113,117,101,114,121,41,46,116,114,105,109,40,41,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,82,88,95,81,85,69,82,89,95,83,84,65,82,84,44,32,39,39,41,59,92,110,92,110,32,32,105,102,32,40,33,113,117,101,114,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,97,114,115,101,100,59,92,110,32,32,125,92,110,92,110,32,32,113,117,101,114,121,46,115,112,108,105,116,40,39,38,39,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,97,114,97,109,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,116,115,32,61,32,112,97,114,97,109,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,82,88,95,80,76,85,83,44,32,39,32,39,41,46,115,112,108,105,116,40,39,61,39,41,59,92,110,32,32,32,32,118,97,114,32,107,101,121,32,61,32,100,101,99,111,100,101,40,112,97,114,116,115,46,115,104,105,102,116,40,41,41,59,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,112,97,114,116,115,46,108,101,110,103,116,104,32,62,32,48,32,63,32,100,101,99,111,100,101,40,112,97,114,116,115,46,106,111,105,110,40,39,61,39,41,41,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,85,110,100,101,102,105,110,101,100,41,40,112,97,114,115,101,100,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,112,97,114,115,101,100,91,107,101,121,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,65,114,114,97,121,41,40,112,97,114,115,101,100,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,112,97,114,115,101,100,91,107,101,121,93,46,112,117,115,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,112,97,114,115,101,100,91,107,101,121,93,32,61,32,91,112,97,114,115,101,100,91,107,101,121,93,44,32,118,97,108,117,101,93,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,112,97,114,115,101,100,59,92,110,125,59,92,110,118,97,114,32,105,115,76,105,110,107,32,61,32,102,117,110,99,116,105,111,110,32,105,115,76,105,110,107,40,112,114,111,112,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,33,40,112,114,111,112,115,46,104,114,101,102,32,124,124,32,112,114,111,112,115,46,116,111,41,59,92,110,125,59,92,110,118,97,114,32,105,115,82,111,117,116,101,114,76,105,110,107,32,61,32,102,117,110,99,116,105,111,110,32,105,115,82,111,117,116,101,114,76,105,110,107,40,116,97,103,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,33,40,116,97,103,32,38,38,32,33,40,48,44,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,115,84,97,103,41,40,116,97,103,44,32,39,97,39,41,41,59,92,110,125,59,92,110,118,97,114,32,99,111,109,112,117,116,101,84,97,103,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,84,97,103,40,95,114,101,102,44,32,116,104,105,115,79,114,80,97,114,101,110,116,41,32,123,92,110,32,32,118,97,114,32,116,111,32,61,32,95,114,101,102,46,116,111,44,92,110,32,32,32,32,32,32,100,105,115,97,98,108,101,100,32,61,32,95,114,101,102,46,100,105,115,97,98,108,101,100,44,92,110,32,32,32,32,32,32,114,111,117,116,101,114,67,111,109,112,111,110,101,110,116,78,97,109,101,32,61,32,95,114,101,102,46,114,111,117,116,101,114,67,111,109,112,111,110,101,110,116,78,97,109,101,59,92,110,32,32,118,97,114,32,104,97,115,82,111,117,116,101,114,32,61,32,33,33,116,104,105,115,79,114,80,97,114,101,110,116,46,36,114,111,117,116,101,114,59,92,110,92,110,32,32,105,102,32,40,33,104,97,115,82,111,117,116,101,114,32,124,124,32,104,97,115,82,111,117,116,101,114,32,38,38,32,40,100,105,115,97,98,108,101,100,32,124,124,32,33,116,111,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,65,78,67,72,79,82,95,84,65,71,59,92,110,32,32,125,32,47,47,32,84,79,68,79,58,92,110,32,32,47,47,32,32,32,67,104,101,99,107,32,114,101,103,105,115,116,101,114,101,100,32,99,111,109,112,111,110,101,110,116,115,32,102,111,114,32,101,120,105,115,116,101,110,99,101,32,111,102,32,117,115,101,114,32,115,117,112,112,108,105,101,100,32,114,111,117,116,101,114,32,108,105,110,107,32,99,111,109,112,111,110,101,110,116,32,110,97,109,101,92,110,32,32,47,47,32,32,32,87,101,32,119,111,117,108,100,32,110,101,101,100,32,116,111,32,99,104,101,99,107,32,80,97,115,99,97,108,67,97,115,101,44,32,107,101,98,97,98,45,99,97,115,101,44,32,97,110,100,32,99,97,109,101,108,67,97,115,101,32,118,101,114,115,105,111,110,115,32,111,102,32,110,97,109,101,58,92,110,32,32,47,47,32,32,32,99,111,110,115,116,32,110,97,109,101,32,61,32,114,111,117,116,101,114,67,111,109,112,111,110,101,110,116,78,97,109,101,92,110,32,32,47,47,32,32,32,99,111,110,115,116,32,110,97,109,101,115,32,61,32,91,110,97,109,101,44,32,80,97,115,99,97,108,67,97,115,101,40,110,97,109,101,41,44,32,75,101,98,97,98,67,97,115,101,40,110,97,109,101,41,44,32,67,97,109,101,108,67,97,115,101,40,110,97,109,101,41,93,92,110,32,32,47,47,32,32,32,101,120,105,115,116,115,32,61,32,110,97,109,101,115,46,115,111,109,101,40,110,97,109,101,32,61,62,32,33,33,116,104,105,115,79,114,80,97,114,101,110,116,46,36,111,112,116,105,111,110,115,46,99,111,109,112,111,110,101,110,116,115,91,110,97,109,101,93,41,92,110,32,32,47,47,32,32,32,65,110,100,32,109,97,121,32,119,97,110,116,32,116,111,32,99,97,99,104,101,32,116,104,101,32,114,101,115,117,108,116,32,102,111,114,32,112,101,114,102,111,114,109,97,110,99,101,32,111,114,32,119,101,32,106,117,115,116,32,108,101,116,32,116,104,101,32,114,101,110,100,101,114,32,102,97,105,108,92,110,32,32,47,47,32,32,32,105,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105,115,32,110,111,116,32,114,101,103,105,115,116,101,114,101,100,92,110,92,110,92,110,32,32,114,101,116,117,114,110,32,114,111,117,116,101,114,67,111,109,112,111,110,101,110,116,78,97,109,101,32,124,124,32,40,116,104,105,115,79,114,80,97,114,101,110,116,46,36,110,117,120,116,32,63,32,39,110,117,120,116,45,108,105,110,107,39,32,58,32,39,114,111,117,116,101,114,45,108,105,110,107,39,41,59,92,110,125,59,92,110,118,97,114,32,99,111,109,112,117,116,101,82,101,108,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,82,101,108,40,41,32,123,92,110,32,32,118,97,114,32,95,114,101,102,50,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,123,125,44,92,110,32,32,32,32,32,32,116,97,114,103,101,116,32,61,32,95,114,101,102,50,46,116,97,114,103,101,116,44,92,110,32,32,32,32,32,32,114,101,108,32,61,32,95,114,101,102,50,46,114,101,108,59,92,110,92,110,32,32,114,101,116,117,114,110,32,116,97,114,103,101,116,32,61,61,61,32,39,95,98,108,97,110,107,39,32,38,38,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,78,117,108,108,41,40,114,101,108,41,32,63,32,39,110,111,111,112,101,110,101,114,39,32,58,32,114,101,108,32,124,124,32,110,117,108,108,59,92,110,125,59,92,110,118,97,114,32,99,111,109,112,117,116,101,72,114,101,102,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,72,114,101,102,40,41,32,123,92,110,32,32,118,97,114,32,95,114,101,102,51,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,123,125,44,92,110,32,32,32,32,32,32,104,114,101,102,32,61,32,95,114,101,102,51,46,104,114,101,102,44,92,110,32,32,32,32,32,32,116,111,32,61,32,95,114,101,102,51,46,116,111,59,92,110,92,110,32,32,118,97,114,32,116,97,103,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,65,78,67,72,79,82,95,84,65,71,59,92,110,32,32,118,97,114,32,102,97,108,108,98,97,99,107,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,39,35,39,59,92,110,32,32,118,97,114,32,116,111,70,97,108,108,98,97,99,107,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,51,32,38,38,32,97,114,103,117,109,101,110,116,115,91,51,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,51,93,32,58,32,39,47,39,59,92,110,92,110,32,32,47,47,32,82,101,116,117,114,110,32,96,104,114,101,102,96,32,119,104,101,110,32,101,120,112,108,105,99,105,116,108,121,32,112,114,111,118,105,100,101,100,92,110,32,32,105,102,32,40,104,114,101,102,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,114,101,102,59,92,110,32,32,125,32,47,47,32,87,101,39,118,101,32,99,104,101,99,107,101,100,32,102,111,114,32,96,36,114,111,117,116,101,114,96,32,105,110,32,96,99,111,109,112,117,116,101,84,97,103,40,41,96,44,32,115,111,32,96,105,115,82,111,117,116,101,114,76,105,110,107,40,41,96,32,105,110,100,105,99,97,116,101,115,32,97,32,108,105,118,101,32,114,111,117,116,101,114,92,110,32,32,47,47,32,87,104,101,110,32,100,101,102,101,114,114,105,110,103,32,116,111,32,86,117,101,32,82,111,117,116,101,114,39,115,32,96,60,114,111,117,116,101,114,45,108,105,110,107,62,96,44,32,100,111,110,39,116,32,117,115,101,32,116,104,101,32,96,104,114,101,102,96,32,97,116,116,114,105,98,117,116,101,32,97,116,32,97,108,108,92,110,32,32,47,47,32,87,101,32,114,101,116,117,114,110,32,96,110,117,108,108,96,44,32,97,110,100,32,116,104,101,110,32,114,101,109,111,118,101,32,96,104,114,101,102,96,32,102,114,111,109,32,116,104,101,32,97,116,116,114,105,98,117,116,101,115,32,112,97,115,115,101,100,32,116,111,32,96,60,114,111,117,116,101,114,45,108,105,110,107,62,96,92,110,92,110,92,110,32,32,105,102,32,40,105,115,82,111,117,116,101,114,76,105,110,107,40,116,97,103,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,125,32,47,47,32,70,97,108,108,98,97,99,107,32,116,111,32,96,116,111,96,32,112,114,111,112,32,40,105,102,32,96,116,111,96,32,105,115,32,97,32,115,116,114,105,110,103,41,92,110,92,110,92,110,32,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,83,116,114,105,110,103,41,40,116,111,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,111,32,124,124,32,116,111,70,97,108,108,98,97,99,107,59,92,110,32,32,125,32,47,47,32,70,97,108,108,98,97,99,107,32,116,111,32,96,116,111,46,112,97,116,104,39,32,43,32,96,116,111,46,113,117,101,114,121,96,32,43,32,96,116,111,46,104,97,115,104,96,32,112,114,111,112,32,40,105,102,32,96,116,111,96,32,105,115,32,97,110,32,111,98,106,101,99,116,41,92,110,92,110,92,110,32,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,116,111,41,32,38,38,32,40,116,111,46,112,97,116,104,32,124,124,32,116,111,46,113,117,101,114,121,32,124,124,32,116,111,46,104,97,115,104,41,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,116,104,32,61,32,40,48,44,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,111,83,116,114,105,110,103,41,40,116,111,46,112,97,116,104,41,59,92,110,32,32,32,32,118,97,114,32,113,117,101,114,121,32,61,32,115,116,114,105,110,103,105,102,121,81,117,101,114,121,79,98,106,40,116,111,46,113,117,101,114,121,41,59,92,110,32,32,32,32,118,97,114,32,104,97,115,104,32,61,32,40,48,44,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,111,83,116,114,105,110,103,41,40,116,111,46,104,97,115,104,41,59,92,110,32,32,32,32,104,97,115,104,32,61,32,33,104,97,115,104,32,124,124,32,104,97,115,104,46,99,104,97,114,65,116,40,48,41,32,61,61,61,32,39,35,39,32,63,32,104,97,115,104,32,58,32,92,34,35,92,34,46,99,111,110,99,97,116,40,104,97,115,104,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,92,34,92,34,46,99,111,110,99,97,116,40,112,97,116,104,41,46,99,111,110,99,97,116,40,113,117,101,114,121,41,46,99,111,110,99,97,116,40,104,97,115,104,41,32,124,124,32,116,111,70,97,108,108,98,97,99,107,59,92,110,32,32,125,32,47,47,32,73,102,32,110,111,116,104,105,110,103,32,105,115,32,112,114,111,118,105,100,101,100,32,114,101,116,117,114,110,32,116,104,101,32,102,97,108,108,98,97,99,107,92,110,92,110,92,110,32,32,114,101,116,117,114,110,32,102,97,108,108,98,97,99,107,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,114,111,117,116,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,97,98,108,101,45,115,111,114,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,97,98,108,101,45,115,111,114,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,98,108,101,83,111,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,98,108,101,83,111,114,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,92,110,32,42,32,67,111,110,115,105,115,116,101,110,116,32,97,110,100,32,115,116,97,98,108,101,32,115,111,114,116,32,102,117,110,99,116,105,111,110,32,97,99,114,111,115,115,32,74,97,118,97,83,99,114,105,112,116,32,112,108,97,116,102,111,114,109,115,92,110,32,42,92,110,32,42,32,73,110,99,111,110,115,105,115,116,101,110,116,32,115,111,114,116,115,32,99,97,110,32,99,97,117,115,101,32,83,83,82,32,112,114,111,98,108,101,109,115,32,98,101,116,119,101,101,110,32,99,108,105,101,110,116,32,97,110,100,32,115,101,114,118,101,114,92,110,32,42,32,115,117,99,104,32,97,115,32,105,110,32,60,98,45,116,97,98,108,101,62,32,105,102,32,115,111,114,116,66,121,32,105,115,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,100,97,116,97,32,111,110,32,115,101,114,118,101,114,32,115,105,100,101,32,114,101,110,100,101,114,46,92,110,32,42,32,67,104,114,111,109,101,32,97,110,100,32,86,56,32,110,97,116,105,118,101,32,115,111,114,116,115,32,97,114,101,32,105,110,99,111,110,115,105,115,116,101,110,116,47,117,110,115,116,97,98,108,101,92,110,32,42,92,110,32,42,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,117,115,101,115,32,110,97,116,105,118,101,32,115,111,114,116,32,119,105,116,104,32,102,97,108,108,98,97,99,107,32,116,111,32,105,110,100,101,120,32,99,111,109,112,97,114,101,32,119,104,101,110,32,116,104,101,32,97,32,97,110,100,32,98,92,110,32,42,32,99,111,109,112,97,114,101,32,114,101,116,117,114,110,115,32,48,92,110,32,42,92,110,32,42,32,65,108,103,111,114,105,116,104,109,32,98,97,115,101,100,32,111,110,58,92,110,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,52,50,55,54,48,56,47,102,97,115,116,45,115,116,97,98,108,101,45,115,111,114,116,105,110,103,45,97,108,103,111,114,105,116,104,109,45,105,109,112,108,101,109,101,110,116,97,116,105,111,110,45,105,110,45,106,97,118,97,115,99,114,105,112,116,47,52,53,52,50,50,54,52,53,35,52,53,52,50,50,54,52,53,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,97,114,114,97,121,125,32,97,114,114,97,121,32,116,111,32,115,111,114,116,92,110,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,115,111,114,116,32,99,111,109,112,97,114,101,32,102,117,110,99,116,105,111,110,92,110,32,42,32,64,114,101,116,117,114,110,32,123,97,114,114,97,121,125,92,110,32,42,47,92,110,118,97,114,32,115,116,97,98,108,101,83,111,114,116,32,61,32,102,117,110,99,116,105,111,110,32,115,116,97,98,108,101,83,111,114,116,40,97,114,114,97,121,44,32,99,111,109,112,97,114,101,70,110,41,32,123,92,110,32,32,47,47,32,85,115,105,110,103,32,96,46,98,105,110,100,40,99,111,109,112,97,114,101,70,110,41,96,32,111,110,32,116,104,101,32,119,114,97,112,112,101,100,32,97,110,111,110,121,109,111,117,115,32,102,117,110,99,116,105,111,110,32,105,109,112,114,111,118,101,115,92,110,32,32,47,47,32,112,101,114,102,111,114,109,97,110,99,101,32,98,121,32,97,118,111,105,100,105,110,103,32,116,104,101,32,102,117,110,99,116,105,111,110,32,99,97,108,108,32,115,101,116,117,112,46,32,87,101,32,100,111,110,39,116,32,117,115,101,32,97,110,32,97,114,114,111,119,92,110,32,32,47,47,32,102,117,110,99,116,105,111,110,32,104,101,114,101,32,97,115,32,105,116,32,98,105,110,100,115,32,96,116,104,105,115,96,32,116,111,32,116,104,101,32,96,115,116,97,98,108,101,83,111,114,116,96,32,99,111,110,116,101,120,116,32,114,97,116,104,101,114,32,116,104,97,110,92,110,32,32,47,47,32,116,104,101,32,96,99,111,109,112,97,114,101,70,110,96,32,99,111,110,116,101,120,116,44,32,119,104,105,99,104,32,119,111,117,108,100,110,39,116,32,103,105,118,101,32,117,115,32,116,104,101,32,112,101,114,102,111,114,109,97,110,99,101,32,105,110,99,114,101,97,115,101,46,92,110,32,32,114,101,116,117,114,110,32,97,114,114,97,121,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,97,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,105,110,100,101,120,44,32,97,93,59,92,110,32,32,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,40,97,91,49,93,44,32,98,91,49,93,41,32,124,124,32,97,91,48,93,32,45,32,98,91,48,93,59,92,110,32,32,125,46,98,105,110,100,40,99,111,109,112,97,114,101,70,110,41,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,91,49,93,59,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,97,98,108,101,45,115,111,114,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,115,99,97,112,101,82,101,103,69,120,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,115,99,97,112,101,82,101,103,69,120,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,107,101,98,97,98,67,97,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,107,101,98,97,98,67,97,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,111,119,101,114,67,97,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,111,119,101,114,67,97,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,111,119,101,114,70,105,114,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,111,119,101,114,70,105,114,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,115,99,97,108,67,97,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,97,115,99,97,108,67,97,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,114,116,67,97,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,114,116,67,97,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,111,83,116,114,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,111,83,116,114,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,105,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,114,105,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,105,109,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,114,105,109,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,105,109,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,114,105,109,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,112,112,101,114,67,97,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,112,112,101,114,67,97,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,112,112,101,114,70,105,114,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,112,112,101,114,70,105,114,115,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,114,101,103,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,47,32,83,116,114,105,110,103,32,117,116,105,108,105,116,105,101,115,92,110,92,110,32,47,47,32,45,45,45,32,85,116,105,108,105,116,105,101,115,32,45,45,45,92,110,47,47,32,67,111,110,118,101,114,116,115,32,80,97,115,99,97,108,67,97,115,101,32,111,114,32,99,97,109,101,108,67,97,115,101,32,116,111,32,107,101,98,97,98,45,99,97,115,101,92,110,92,110,118,97,114,32,107,101,98,97,98,67,97,115,101,32,61,32,102,117,110,99,116,105,111,110,32,107,101,98,97,98,67,97,115,101,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,116,114,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,88,95,72,89,80,72,69,78,65,84,69,44,32,39,45,36,49,39,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,125,59,32,47,47,32,67,111,110,118,101,114,116,115,32,97,32,107,101,98,97,98,45,99,97,115,101,32,111,114,32,99,97,109,101,108,67,97,115,101,32,115,116,114,105,110,103,32,116,111,32,80,97,115,99,97,108,67,97,115,101,92,110,92,110,118,97,114,32,112,97,115,99,97,108,67,97,115,101,32,61,32,102,117,110,99,116,105,111,110,32,112,97,115,99,97,108,67,97,115,101,40,115,116,114,41,32,123,92,110,32,32,115,116,114,32,61,32,107,101,98,97,98,67,97,115,101,40,115,116,114,41,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,88,95,85,78,95,75,69,66,65,66,44,32,102,117,110,99,116,105,111,110,32,40,95,44,32,99,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,32,63,32,99,46,116,111,85,112,112,101,114,67,97,115,101,40,41,32,58,32,39,39,59,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,115,116,114,46,99,104,97,114,65,116,40,48,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,32,43,32,115,116,114,46,115,108,105,99,101,40,49,41,59,92,110,125,59,32,47,47,32,67,111,110,118,101,114,116,115,32,97,32,115,116,114,105,110,103,44,32,105,110,99,108,117,100,105,110,103,32,115,116,114,105,110,103,115,32,105,110,32,99,97,109,101,108,67,97,115,101,32,111,114,32,115,110,97,107,101,95,99,97,115,101,44,32,105,110,116,111,32,83,116,97,114,116,32,67,97,115,101,92,110,47,47,32,73,116,32,107,101,101,112,115,32,111,114,105,103,105,110,97,108,32,115,105,110,103,108,101,32,113,117,111,116,101,32,97,110,100,32,104,121,112,104,101,110,32,105,110,32,116,104,101,32,119,111,114,100,92,110,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,85,114,98,97,110,67,111,109,112,97,115,115,47,116,111,45,115,116,97,114,116,45,99,97,115,101,92,110,92,110,118,97,114,32,115,116,97,114,116,67,97,115,101,32,61,32,102,117,110,99,116,105,111,110,32,115,116,97,114,116,67,97,115,101,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,116,114,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,88,95,85,78,68,69,82,83,67,79,82,69,44,32,39,32,39,41,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,88,95,76,79,87,69,82,95,85,80,80,69,82,44,32,102,117,110,99,116,105,111,110,32,40,115,116,114,44,32,36,49,44,32,36,50,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,49,32,43,32,39,32,39,32,43,32,36,50,59,92,110,32,32,125,41,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,88,95,83,84,65,82,84,95,83,80,65,67,69,95,87,79,82,68,44,32,102,117,110,99,116,105,111,110,32,40,115,116,114,44,32,36,49,44,32,36,50,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,36,49,32,43,32,36,50,46,116,111,85,112,112,101,114,67,97,115,101,40,41,59,92,110,32,32,125,41,59,92,110,125,59,32,47,47,32,76,111,119,101,114,99,97,115,101,115,32,116,104,101,32,102,105,114,115,116,32,108,101,116,116,101,114,32,111,102,32,97,32,115,116,114,105,110,103,32,97,110,100,32,114,101,116,117,114,110,115,32,97,32,110,101,119,32,115,116,114,105,110,103,92,110,92,110,118,97,114,32,108,111,119,101,114,70,105,114,115,116,32,61,32,102,117,110,99,116,105,111,110,32,108,111,119,101,114,70,105,114,115,116,40,115,116,114,41,32,123,92,110,32,32,115,116,114,32,61,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,83,116,114,105,110,103,41,40,115,116,114,41,32,63,32,115,116,114,46,116,114,105,109,40,41,32,58,32,83,116,114,105,110,103,40,115,116,114,41,59,92,110,32,32,114,101,116,117,114,110,32,115,116,114,46,99,104,97,114,65,116,40,48,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,32,43,32,115,116,114,46,115,108,105,99,101,40,49,41,59,92,110,125,59,32,47,47,32,85,112,112,101,114,99,97,115,101,115,32,116,104,101,32,102,105,114,115,116,32,108,101,116,116,101,114,32,111,102,32,97,32,115,116,114,105,110,103,32,97,110,100,32,114,101,116,117,114,110,115,32,97,32,110,101,119,32,115,116,114,105,110,103,92,110,92,110,118,97,114,32,117,112,112,101,114,70,105,114,115,116,32,61,32,102,117,110,99,116,105,111,110,32,117,112,112,101,114,70,105,114,115,116,40,115,116,114,41,32,123,92,110,32,32,115,116,114,32,61,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,83,116,114,105,110,103,41,40,115,116,114,41,32,63,32,115,116,114,46,116,114,105,109,40,41,32,58,32,83,116,114,105,110,103,40,115,116,114,41,59,92,110,32,32,114,101,116,117,114,110,32,115,116,114,46,99,104,97,114,65,116,40,48,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,32,43,32,115,116,114,46,115,108,105,99,101,40,49,41,59,92,110,125,59,32,47,47,32,69,115,99,97,112,101,32,99,104,97,114,97,99,116,101,114,115,32,116,111,32,98,101,32,117,115,101,100,32,105,110,32,98,117,105,108,100,105,110,103,32,97,32,114,101,103,117,108,97,114,32,101,120,112,114,101,115,115,105,111,110,92,110,92,110,118,97,114,32,101,115,99,97,112,101,82,101,103,69,120,112,32,61,32,102,117,110,99,116,105,111,110,32,101,115,99,97,112,101,82,101,103,69,120,112,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,116,114,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,88,95,82,69,71,69,88,80,95,82,69,80,76,65,67,69,44,32,39,92,92,92,92,36,38,39,41,59,92,110,125,59,32,47,47,32,67,111,110,118,101,114,116,32,97,32,118,97,108,117,101,32,116,111,32,97,32,115,116,114,105,110,103,32,116,104,97,116,32,99,97,110,32,98,101,32,114,101,110,100,101,114,101,100,92,110,47,47,32,96,117,110,100,101,102,105,110,101,100,96,47,96,110,117,108,108,96,32,119,105,108,108,32,98,101,32,99,111,110,118,101,114,116,101,100,32,116,111,32,96,39,39,96,92,110,47,47,32,80,108,97,105,110,32,111,98,106,101,99,116,115,32,97,110,100,32,97,114,114,97,121,115,32,119,105,108,108,32,98,101,32,74,83,79,78,32,115,116,114,105,110,103,105,102,105,101,100,92,110,92,110,118,97,114,32,116,111,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,116,111,83,116,114,105,110,103,40,118,97,108,41,32,123,92,110,32,32,118,97,114,32,115,112,97,99,101,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,50,59,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,118,97,108,41,32,63,32,39,39,32,58,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,65,114,114,97,121,41,40,118,97,108,41,32,124,124,32,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,41,40,118,97,108,41,32,38,38,32,118,97,108,46,116,111,83,116,114,105,110,103,32,61,61,61,32,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,32,63,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,118,97,108,44,32,110,117,108,108,44,32,115,112,97,99,101,115,41,32,58,32,83,116,114,105,110,103,40,118,97,108,41,59,92,110,125,59,32,47,47,32,82,101,109,111,118,101,32,108,101,97,100,105,110,103,32,119,104,105,116,101,32,115,112,97,99,101,32,102,114,111,109,32,97,32,115,116,114,105,110,103,92,110,92,110,118,97,114,32,116,114,105,109,76,101,102,116,32,61,32,102,117,110,99,116,105,111,110,32,116,114,105,109,76,101,102,116,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,40,115,116,114,41,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,88,95,84,82,73,77,95,76,69,70,84,44,32,39,39,41,59,92,110,125,59,32,47,47,32,82,101,109,111,118,101,32,84,114,97,105,108,105,110,103,32,119,104,105,116,101,32,115,112,97,99,101,32,102,114,111,109,32,97,32,115,116,114,105,110,103,92,110,92,110,118,97,114,32,116,114,105,109,82,105,103,104,116,32,61,32,102,117,110,99,116,105,111,110,32,116,114,105,109,82,105,103,104,116,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,40,115,116,114,41,46,114,101,112,108,97,99,101,40,95,99,111,110,115,116,97,110,116,115,95,114,101,103,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,88,95,84,82,73,77,95,82,73,71,72,84,44,32,39,39,41,59,92,110,125,59,32,47,47,32,82,101,109,111,118,101,32,108,101,97,100,105,110,103,32,97,110,100,32,116,114,97,105,108,105,110,103,32,119,104,105,116,101,32,115,112,97,99,101,32,102,114,111,109,32,97,32,115,116,114,105,110,103,92,110,92,110,118,97,114,32,116,114,105,109,32,61,32,102,117,110,99,116,105,111,110,32,116,114,105,109,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,40,115,116,114,41,46,116,114,105,109,40,41,59,92,110,125,59,32,47,47,32,76,111,119,101,114,32,99,97,115,101,32,97,32,115,116,114,105,110,103,92,110,92,110,118,97,114,32,108,111,119,101,114,67,97,115,101,32,61,32,102,117,110,99,116,105,111,110,32,108,111,119,101,114,67,97,115,101,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,40,115,116,114,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,125,59,32,47,47,32,85,112,112,101,114,32,99,97,115,101,32,97,32,115,116,114,105,110,103,92,110,92,110,118,97,114,32,117,112,112,101,114,67,97,115,101,32,61,32,102,117,110,99,116,105,111,110,32,117,112,112,101,114,67,97,115,101,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,40,115,116,114,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,105,102,121,45,111,98,106,101,99,116,45,118,97,108,117,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,105,102,121,45,111,98,106,101,99,116,45,118,97,108,117,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,114,105,110,103,105,102,121,79,98,106,101,99,116,86,97,108,117,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,114,105,110,103,105,102,121,79,98,106,101,99,116,86,97,108,117,101,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,115,112,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,105,110,115,112,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,92,110,92,110,32,47,47,32,82,101,99,117,114,115,105,118,101,108,121,32,115,116,114,105,110,103,105,102,105,101,115,32,116,104,101,32,118,97,108,117,101,115,32,111,102,32,97,110,32,111,98,106,101,99,116,44,32,115,112,97,99,101,32,115,101,112,97,114,97,116,101,100,44,32,105,110,32,97,110,92,110,47,47,32,83,83,82,32,115,97,102,101,32,100,101,116,101,114,109,105,110,105,115,116,105,99,32,119,97,121,32,40,107,101,121,115,32,97,114,101,32,115,111,114,116,101,100,32,98,101,102,111,114,101,32,115,116,114,105,110,103,105,102,105,99,97,116,105,111,110,41,92,110,47,47,92,110,47,47,32,32,32,101,120,58,92,110,47,47,32,32,32,32,32,123,32,98,58,32,51,44,32,99,58,32,123,32,122,58,32,39,122,122,122,39,44,32,100,58,32,110,117,108,108,44,32,101,58,32,50,32,125,44,32,100,58,32,91,49,48,44,32,49,50,44,32,49,49,93,44,32,97,58,32,39,111,110,101,39,32,125,92,110,47,47,32,32,32,98,101,99,111,109,101,115,92,110,47,47,32,32,32,32,32,39,111,110,101,32,51,32,50,32,122,122,122,32,49,48,32,49,50,32,49,49,39,92,110,47,47,92,110,47,47,32,83,116,114,105,110,103,115,32,97,114,101,32,114,101,116,117,114,110,101,100,32,97,115,45,105,115,92,110,47,47,32,78,117,109,98,101,114,115,32,103,101,116,32,99,111,110,118,101,114,116,101,100,32,116,111,32,115,116,114,105,110,103,92,110,47,47,32,96,110,117,108,108,96,32,97,110,100,32,96,117,110,100,101,102,105,110,101,100,96,32,118,97,108,117,101,115,32,97,114,101,32,102,105,108,116,101,114,101,100,32,111,117,116,92,110,47,47,32,68,97,116,101,115,32,97,114,101,32,99,111,110,118,101,114,116,101,100,32,116,111,32,116,104,101,105,114,32,110,97,116,105,118,101,32,115,116,114,105,110,103,32,102,111,114,109,97,116,92,110,92,110,118,97,114,32,115,116,114,105,110,103,105,102,121,79,98,106,101,99,116,86,97,108,117,101,115,32,61,32,102,117,110,99,116,105,111,110,32,115,116,114,105,110,103,105,102,121,79,98,106,101,99,116,86,97,108,117,101,115,40,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,85,110,100,101,102,105,110,101,100,79,114,78,117,108,108,41,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,39,39,59,92,110,32,32,125,32,47,47,32,65,114,114,97,121,115,32,97,114,101,32,97,108,115,111,32,111,98,106,101,99,116,44,32,97,110,100,32,107,101,121,115,32,106,117,115,116,32,114,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,105,110,100,101,120,101,115,92,110,32,32,47,47,32,68,97,116,101,32,111,98,106,101,99,116,115,32,119,101,32,99,111,110,118,101,114,116,32,116,111,32,115,116,114,105,110,103,115,92,110,92,110,92,110,32,32,105,102,32,40,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,79,98,106,101,99,116,41,40,118,97,108,117,101,41,32,38,38,32,33,40,48,44,95,105,110,115,112,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,68,97,116,101,41,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,111,98,106,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,107,101,121,115,41,40,118,97,108,117,101,41,46,115,111,114,116,40,41,32,47,47,32,83,111,114,116,32,116,111,32,112,114,101,118,101,110,116,32,83,83,82,32,105,115,115,117,101,115,32,111,110,32,112,114,101,45,114,101,110,100,101,114,101,100,32,115,111,114,116,101,100,32,116,97,98,108,101,115,92,110,32,32,32,32,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,107,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,105,102,121,79,98,106,101,99,116,86,97,108,117,101,115,40,118,97,108,117,101,91,107,93,41,59,92,110,32,32,32,32,125,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,118,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,118,59,92,110,32,32,32,32,125,41,32,47,47,32,73,103,110,111,114,101,32,101,109,112,116,121,32,115,116,114,105,110,103,115,92,110,32,32,32,32,46,106,111,105,110,40,39,32,39,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,115,116,114,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,111,83,116,114,105,110,103,41,40,118,97,108,117,101,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,115,116,114,105,110,103,105,102,121,45,111,98,106,101,99,116,45,118,97,108,117,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,119,97,114,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,119,97,114,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,119,97,114,110,78,111,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,83,117,112,112,111,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,119,97,114,110,78,111,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,83,117,112,112,111,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,119,97,114,110,78,111,80,114,111,109,105,115,101,83,117,112,112,111,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,119,97,114,110,78,111,80,114,111,109,105,115,101,83,117,112,112,111,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,119,97,114,110,78,111,116,67,108,105,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,119,97,114,110,78,111,116,67,108,105,101,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,115,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,99,111,110,115,116,97,110,116,115,47,101,110,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,110,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,101,110,118,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,42,92,110,32,42,32,76,111,103,32,97,32,119,97,114,110,105,110,103,32,109,101,115,115,97,103,101,32,116,111,32,116,104,101,32,99,111,110,115,111,108,101,32,119,105,116,104,32,66,111,111,116,115,116,114,97,112,86,117,101,32,102,111,114,109,97,116,116,105,110,103,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,109,101,115,115,97,103,101,92,110,32,42,47,92,110,92,110,118,97,114,32,119,97,114,110,32,61,32,102,117,110,99,116,105,111,110,32,119,97,114,110,40,109,101,115,115,97,103,101,41,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,123,92,110,32,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,110,117,108,108,59,92,110,92,110,32,32,105,102,32,40,33,40,48,44,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,78,111,87,97,114,110,41,40,41,41,32,123,92,110,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,34,91,66,111,111,116,115,116,114,97,112,86,117,101,32,119,97,114,110,93,58,32,92,34,46,99,111,110,99,97,116,40,115,111,117,114,99,101,32,63,32,92,34,92,34,46,99,111,110,99,97,116,40,115,111,117,114,99,101,44,32,92,34,32,45,32,92,34,41,32,58,32,39,39,41,46,99,111,110,99,97,116,40,109,101,115,115,97,103,101,41,41,59,92,110,32,32,125,92,110,125,59,92,110,47,42,42,92,110,32,42,32,87,97,114,110,32,119,104,101,110,32,110,111,32,80,114,111,109,105,115,101,32,115,117,112,112,111,114,116,32,105,115,32,103,105,118,101,110,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,111,117,114,99,101,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,119,97,114,110,101,100,92,110,32,42,47,92,110,92,110,118,97,114,32,119,97,114,110,78,111,116,67,108,105,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,119,97,114,110,78,111,116,67,108,105,101,110,116,40,115,111,117,114,99,101,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,73,83,95,66,82,79,87,83,69,82,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,119,97,114,110,40,92,34,92,34,46,99,111,110,99,97,116,40,115,111,117,114,99,101,44,32,92,34,58,32,67,97,110,32,110,111,116,32,98,101,32,99,97,108,108,101,100,32,100,117,114,105,110,103,32,83,83,82,46,92,34,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,92,110,125,59,92,110,47,42,42,92,110,32,42,32,87,97,114,110,32,119,104,101,110,32,110,111,32,80,114,111,109,105,115,101,32,115,117,112,112,111,114,116,32,105,115,32,103,105,118,101,110,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,111,117,114,99,101,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,119,97,114,110,101,100,92,110,32,42,47,92,110,92,110,118,97,114,32,119,97,114,110,78,111,80,114,111,109,105,115,101,83,117,112,112,111,114,116,32,61,32,102,117,110,99,116,105,111,110,32,119,97,114,110,78,111,80,114,111,109,105,115,101,83,117,112,112,111,114,116,40,115,111,117,114,99,101,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,72,65,83,95,80,82,79,77,73,83,69,95,83,85,80,80,79,82,84,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,119,97,114,110,40,92,34,92,34,46,99,111,110,99,97,116,40,115,111,117,114,99,101,44,32,92,34,58,32,82,101,113,117,105,114,101,115,32,80,114,111,109,105,115,101,32,115,117,112,112,111,114,116,46,92,34,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,92,110,125,59,92,110,47,42,42,92,110,32,42,32,87,97,114,110,32,119,104,101,110,32,110,111,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,115,117,112,112,111,114,116,32,105,115,32,103,105,118,101,110,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,111,117,114,99,101,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,119,97,114,110,101,100,92,110,32,42,47,92,110,92,110,118,97,114,32,119,97,114,110,78,111,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,83,117,112,112,111,114,116,32,61,32,102,117,110,99,116,105,111,110,32,119,97,114,110,78,111,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,83,117,112,112,111,114,116,40,115,111,117,114,99,101,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,105,102,32,40,95,99,111,110,115,116,97,110,116,115,95,101,110,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,72,65,83,95,77,85,84,65,84,73,79,78,95,79,66,83,69,82,86,69,82,95,83,85,80,80,79,82,84,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,119,97,114,110,40,92,34,92,34,46,99,111,110,99,97,116,40,115,111,117,114,99,101,44,32,92,34,58,32,82,101,113,117,105,114,101,115,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,115,117,112,112,111,114,116,46,92,34,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,117,116,105,108,115,47,119,97,114,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,118,117,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,118,117,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,79,77,80,79,78,69,78,84,95,85,73,68,95,75,69,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,79,77,80,79,78,69,78,84,95,85,73,68,95,75,69,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,101,114,103,101,68,97,116,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,118,117,101,95,102,117,110,99,116,105,111,110,97,108,95,100,97,116,97,95,109,101,114,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,101,114,103,101,68,97,116,97,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,102,117,110,99,116,105,111,110,97,108,95,100,97,116,97,95,109,101,114,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,92,34,41,59,92,110,92,110,32,47,47,32,45,45,45,32,67,111,110,115,116,97,110,116,115,32,45,45,45,92,110,92,110,118,97,114,32,67,79,77,80,79,78,69,78,84,95,85,73,68,95,75,69,89,32,61,32,39,95,117,105,100,39,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,118,117,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,108,105,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,108,105,99,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,97,114,114,97,121,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,118,97,114,32,115,108,105,99,101,32,61,32,97,114,114,97,121,46,115,108,105,99,101,59,92,110,118,97,114,32,109,97,112,32,61,32,97,114,114,97,121,46,109,97,112,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,97,115,99,101,110,100,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,97,115,99,101,110,100,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,32,60,32,98,32,63,32,45,49,32,58,32,97,32,62,32,98,32,63,32,49,32,58,32,97,32,62,61,32,98,32,63,32,48,32,58,32,78,97,78,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,97,115,99,101,110,100,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,98,105,115,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,98,105,115,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,105,115,101,99,116,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,105,115,101,99,116,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,105,115,101,99,116,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,105,115,101,99,116,82,105,103,104,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,115,99,101,110,100,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,97,115,99,101,110,100,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,105,115,101,99,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,105,115,101,99,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,98,105,115,101,99,116,111,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,97,115,99,101,110,100,105,110,103,66,105,115,101,99,116,32,61,32,40,48,44,95,98,105,115,101,99,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,97,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,118,97,114,32,98,105,115,101,99,116,82,105,103,104,116,32,61,32,97,115,99,101,110,100,105,110,103,66,105,115,101,99,116,46,114,105,103,104,116,59,92,110,118,97,114,32,98,105,115,101,99,116,76,101,102,116,32,61,32,97,115,99,101,110,100,105,110,103,66,105,115,101,99,116,46,108,101,102,116,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,98,105,115,101,99,116,82,105,103,104,116,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,98,105,115,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,98,105,115,101,99,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,98,105,115,101,99,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,115,99,101,110,100,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,97,115,99,101,110,100,105,110,103,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,111,109,112,97,114,101,41,32,123,92,110,32,32,105,102,32,40,99,111,109,112,97,114,101,46,108,101,110,103,116,104,32,61,61,61,32,49,41,32,99,111,109,112,97,114,101,32,61,32,97,115,99,101,110,100,105,110,103,67,111,109,112,97,114,97,116,111,114,40,99,111,109,112,97,114,101,41,59,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,108,101,102,116,58,32,102,117,110,99,116,105,111,110,40,97,44,32,120,44,32,108,111,44,32,104,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,108,111,32,61,61,32,110,117,108,108,41,32,108,111,32,61,32,48,59,92,110,32,32,32,32,32,32,105,102,32,40,104,105,32,61,61,32,110,117,108,108,41,32,104,105,32,61,32,97,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,108,111,32,60,32,104,105,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,105,100,32,61,32,108,111,32,43,32,104,105,32,62,62,62,32,49,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,111,109,112,97,114,101,40,97,91,109,105,100,93,44,32,120,41,32,60,32,48,41,32,108,111,32,61,32,109,105,100,32,43,32,49,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,104,105,32,61,32,109,105,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,105,103,104,116,58,32,102,117,110,99,116,105,111,110,40,97,44,32,120,44,32,108,111,44,32,104,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,108,111,32,61,61,32,110,117,108,108,41,32,108,111,32,61,32,48,59,92,110,32,32,32,32,32,32,105,102,32,40,104,105,32,61,61,32,110,117,108,108,41,32,104,105,32,61,32,97,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,108,111,32,60,32,104,105,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,105,100,32,61,32,108,111,32,43,32,104,105,32,62,62,62,32,49,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,111,109,112,97,114,101,40,97,91,109,105,100,93,44,32,120,41,32,62,32,48,41,32,104,105,32,61,32,109,105,100,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,108,111,32,61,32,109,105,100,32,43,32,49,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,115,99,101,110,100,105,110,103,67,111,109,112,97,114,97,116,111,114,40,102,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,100,44,32,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,40,100,41,44,32,120,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,98,105,115,101,99,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,99,114,111,115,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,99,114,111,115,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,97,105,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,97,105,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,112,97,105,114,115,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,115,48,44,32,118,97,108,117,101,115,49,44,32,114,101,100,117,99,101,41,32,123,92,110,32,32,118,97,114,32,110,48,32,61,32,118,97,108,117,101,115,48,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,110,49,32,61,32,118,97,108,117,101,115,49,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,118,97,108,117,101,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,48,32,42,32,110,49,41,44,92,110,32,32,32,32,32,32,105,48,44,92,110,32,32,32,32,32,32,105,49,44,92,110,32,32,32,32,32,32,105,44,92,110,32,32,32,32,32,32,118,97,108,117,101,48,59,92,110,92,110,32,32,105,102,32,40,114,101,100,117,99,101,32,61,61,32,110,117,108,108,41,32,114,101,100,117,99,101,32,61,32,95,112,97,105,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,97,105,114,59,92,110,92,110,32,32,102,111,114,32,40,105,48,32,61,32,105,32,61,32,48,59,32,105,48,32,60,32,110,48,59,32,43,43,105,48,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,108,117,101,48,32,61,32,118,97,108,117,101,115,48,91,105,48,93,44,32,105,49,32,61,32,48,59,32,105,49,32,60,32,110,49,59,32,43,43,105,49,44,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,115,91,105,93,32,61,32,114,101,100,117,99,101,40,118,97,108,117,101,48,44,32,118,97,108,117,101,115,49,91,105,49,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,99,114,111,115,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,100,101,115,99,101,110,100,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,100,101,115,99,101,110,100,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,98,32,60,32,97,32,63,32,45,49,32,58,32,98,32,62,32,97,32,63,32,49,32,58,32,98,32,62,61,32,97,32,63,32,48,32,58,32,78,97,78,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,100,101,115,99,101,110,100,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,100,101,118,105,97,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,100,101,118,105,97,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,97,114,105,97,110,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,118,97,114,105,97,110,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,118,97,114,105,97,110,99,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,114,114,97,121,44,32,102,41,32,123,92,110,32,32,118,97,114,32,118,32,61,32,40,48,44,95,118,97,114,105,97,110,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,97,114,114,97,121,44,32,102,41,59,92,110,32,32,114,101,116,117,114,110,32,118,32,63,32,77,97,116,104,46,115,113,114,116,40,118,41,32,58,32,118,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,100,101,118,105,97,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,101,120,116,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,101,120,116,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,115,44,32,118,97,108,117,101,111,102,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,109,105,110,44,92,110,32,32,32,32,32,32,109,97,120,59,92,110,92,110,32,32,105,102,32,40,118,97,108,117,101,111,102,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,32,47,47,32,70,105,110,100,32,116,104,101,32,102,105,114,115,116,32,99,111,109,112,97,114,97,98,108,101,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,105,102,32,40,40,118,97,108,117,101,32,61,32,118,97,108,117,101,115,91,105,93,41,32,33,61,32,110,117,108,108,32,38,38,32,118,97,108,117,101,32,62,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,109,105,110,32,61,32,109,97,120,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,32,47,47,32,67,111,109,112,97,114,101,32,116,104,101,32,114,101,109,97,105,110,105,110,103,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,118,97,108,117,101,32,61,32,118,97,108,117,101,115,91,105,93,41,32,33,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,105,110,32,62,32,118,97,108,117,101,41,32,109,105,110,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,97,120,32,60,32,118,97,108,117,101,41,32,109,97,120,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,101,108,115,101,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,32,47,47,32,70,105,110,100,32,116,104,101,32,102,105,114,115,116,32,99,111,109,112,97,114,97,98,108,101,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,105,102,32,40,40,118,97,108,117,101,32,61,32,118,97,108,117,101,111,102,40,118,97,108,117,101,115,91,105,93,44,32,105,44,32,118,97,108,117,101,115,41,41,32,33,61,32,110,117,108,108,32,38,38,32,118,97,108,117,101,32,62,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,109,105,110,32,61,32,109,97,120,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,32,47,47,32,67,111,109,112,97,114,101,32,116,104,101,32,114,101,109,97,105,110,105,110,103,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,118,97,108,117,101,32,61,32,118,97,108,117,101,111,102,40,118,97,108,117,101,115,91,105,93,44,32,105,44,32,118,97,108,117,101,115,41,41,32,33,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,105,110,32,62,32,118,97,108,117,101,41,32,109,105,110,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,97,120,32,60,32,118,97,108,117,101,41,32,109,97,120,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,91,109,105,110,44,32,109,97,120,93,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,101,120,116,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,104,105,115,116,111,103,114,97,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,104,105,115,116,111,103,114,97,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,105,115,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,105,115,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,98,105,115,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,120,116,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,120,116,101,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,101,120,116,101,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,110,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,97,110,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,114,97,110,103,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,105,99,107,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,105,99,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,105,99,107,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,104,114,101,115,104,111,108,100,95,115,116,117,114,103,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,104,114,101,115,104,111,108,100,47,115,116,117,114,103,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,104,114,101,115,104,111,108,100,47,115,116,117,114,103,101,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,118,97,108,117,101,32,61,32,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,32,32,100,111,109,97,105,110,32,61,32,95,101,120,116,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,32,32,116,104,114,101,115,104,111,108,100,32,61,32,95,116,104,114,101,115,104,111,108,100,95,115,116,117,114,103,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,104,105,115,116,111,103,114,97,109,40,100,97,116,97,41,32,123,92,110,32,32,32,32,118,97,114,32,105,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,100,97,116,97,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,120,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,115,91,105,93,32,61,32,118,97,108,117,101,40,100,97,116,97,91,105,93,44,32,105,44,32,100,97,116,97,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,120,122,32,61,32,100,111,109,97,105,110,40,118,97,108,117,101,115,41,44,92,110,32,32,32,32,32,32,32,32,120,48,32,61,32,120,122,91,48,93,44,92,110,32,32,32,32,32,32,32,32,120,49,32,61,32,120,122,91,49,93,44,92,110,32,32,32,32,32,32,32,32,116,122,32,61,32,116,104,114,101,115,104,111,108,100,40,118,97,108,117,101,115,44,32,120,48,44,32,120,49,41,59,92,110,92,110,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,110,117,109,98,101,114,32,111,102,32,116,104,114,101,115,104,111,108,100,115,32,105,110,116,111,32,117,110,105,102,111,114,109,32,116,104,114,101,115,104,111,108,100,115,46,92,110,32,32,32,32,105,102,32,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,122,41,41,32,123,92,110,32,32,32,32,32,32,116,122,32,61,32,40,48,44,95,116,105,99,107,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,105,99,107,83,116,101,112,41,40,120,48,44,32,120,49,44,32,116,122,41,59,92,110,32,32,32,32,32,32,116,122,32,61,32,40,48,44,95,114,97,110,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,77,97,116,104,46,99,101,105,108,40,120,48,32,47,32,116,122,41,32,42,32,116,122,44,32,120,49,44,32,116,122,41,59,32,47,47,32,101,120,99,108,117,115,105,118,101,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,82,101,109,111,118,101,32,97,110,121,32,116,104,114,101,115,104,111,108,100,115,32,111,117,116,115,105,100,101,32,116,104,101,32,100,111,109,97,105,110,46,92,110,32,32,32,32,118,97,114,32,109,32,61,32,116,122,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,116,122,91,48,93,32,60,61,32,120,48,41,32,116,122,46,115,104,105,102,116,40,41,44,32,45,45,109,59,92,110,32,32,32,32,119,104,105,108,101,32,40,116,122,91,109,32,45,32,49,93,32,62,32,120,49,41,32,116,122,46,112,111,112,40,41,44,32,45,45,109,59,92,110,92,110,32,32,32,32,118,97,114,32,98,105,110,115,32,61,32,110,101,119,32,65,114,114,97,121,40,109,32,43,32,49,41,44,92,110,32,32,32,32,32,32,32,32,98,105,110,59,92,110,92,110,32,32,32,32,47,47,32,73,110,105,116,105,97,108,105,122,101,32,98,105,110,115,46,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,61,32,109,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,98,105,110,32,61,32,98,105,110,115,91,105,93,32,61,32,91,93,59,92,110,32,32,32,32,32,32,98,105,110,46,120,48,32,61,32,105,32,62,32,48,32,63,32,116,122,91,105,32,45,32,49,93,32,58,32,120,48,59,92,110,32,32,32,32,32,32,98,105,110,46,120,49,32,61,32,105,32,60,32,109,32,63,32,116,122,91,105,93,32,58,32,120,49,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,65,115,115,105,103,110,32,100,97,116,97,32,116,111,32,98,105,110,115,32,98,121,32,118,97,108,117,101,44,32,105,103,110,111,114,105,110,103,32,97,110,121,32,111,117,116,115,105,100,101,32,116,104,101,32,100,111,109,97,105,110,46,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,120,32,61,32,118,97,108,117,101,115,91,105,93,59,92,110,32,32,32,32,32,32,105,102,32,40,120,48,32,60,61,32,120,32,38,38,32,120,32,60,61,32,120,49,41,32,123,92,110,32,32,32,32,32,32,32,32,98,105,110,115,91,40,48,44,95,98,105,115,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,122,44,32,120,44,32,48,44,32,109,41,93,46,112,117,115,104,40,100,97,116,97,91,105,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,98,105,110,115,59,92,110,32,32,125,92,110,92,110,32,32,104,105,115,116,111,103,114,97,109,46,118,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,118,97,108,117,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,41,44,32,104,105,115,116,111,103,114,97,109,41,32,58,32,118,97,108,117,101,59,92,110,32,32,125,59,92,110,92,110,32,32,104,105,115,116,111,103,114,97,109,46,100,111,109,97,105,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,111,109,97,105,110,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,91,95,91,48,93,44,32,95,91,49,93,93,41,44,32,104,105,115,116,111,103,114,97,109,41,32,58,32,100,111,109,97,105,110,59,92,110,32,32,125,59,92,110,92,110,32,32,104,105,115,116,111,103,114,97,109,46,116,104,114,101,115,104,111,108,100,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,104,114,101,115,104,111,108,100,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,95,41,32,63,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,108,105,99,101,46,99,97,108,108,40,95,41,41,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,41,44,32,104,105,115,116,111,103,114,97,109,41,32,58,32,116,104,114,101,115,104,111,108,100,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,104,105,115,116,111,103,114,97,109,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,104,105,115,116,111,103,114,97,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,115,99,101,110,100,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,105,115,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,105,115,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,105,115,101,99,116,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,105,115,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,98,105,115,101,99,116,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,105,115,101,99,116,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,105,115,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,98,105,115,101,99,116,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,105,115,101,99,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,105,115,101,99,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,111,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,114,111,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,115,99,101,110,100,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,101,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,118,105,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,101,118,105,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,120,116,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,101,120,116,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,105,115,116,111,103,114,97,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,104,105,115,116,111,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,97,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,101,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,101,97,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,101,100,105,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,101,100,105,97,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,101,114,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,101,114,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,105,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,105,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,97,105,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,101,114,109,117,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,101,114,109,117,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,113,117,97,110,116,105,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,113,117,97,110,116,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,110,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,114,97,110,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,99,97,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,104,117,102,102,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,104,117,102,102,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,117,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,117,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,104,114,101,115,104,111,108,100,70,114,101,101,100,109,97,110,68,105,97,99,111,110,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,104,114,101,115,104,111,108,100,95,102,114,101,101,100,109,97,110,68,105,97,99,111,110,105,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,104,114,101,115,104,111,108,100,83,99,111,116,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,104,114,101,115,104,111,108,100,95,115,99,111,116,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,104,114,101,115,104,111,108,100,83,116,117,114,103,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,104,114,101,115,104,111,108,100,95,115,116,117,114,103,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,99,107,73,110,99,114,101,109,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,105,99,107,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,116,105,99,107,73,110,99,114,101,109,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,99,107,83,116,101,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,105,99,107,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,116,105,99,107,83,116,101,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,99,107,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,105,99,107,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,97,110,115,112,111,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,97,110,115,112,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,118,97,114,105,97,110,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,118,97,114,105,97,110,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,122,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,122,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,105,115,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,105,115,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,98,105,115,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,115,99,101,110,100,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,97,115,99,101,110,100,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,105,115,101,99,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,105,115,101,99,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,98,105,115,101,99,116,111,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,114,111,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,114,111,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,99,114,111,115,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,115,99,101,110,100,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,100,101,115,99,101,110,100,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,118,105,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,118,105,97,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,100,101,118,105,97,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,120,116,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,120,116,101,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,101,120,116,101,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,105,115,116,111,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,105,115,116,111,103,114,97,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,104,105,115,116,111,103,114,97,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,104,114,101,115,104,111,108,100,95,102,114,101,101,100,109,97,110,68,105,97,99,111,110,105,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,104,114,101,115,104,111,108,100,47,102,114,101,101,100,109,97,110,68,105,97,99,111,110,105,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,104,114,101,115,104,111,108,100,47,102,114,101,101,100,109,97,110,68,105,97,99,111,110,105,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,104,114,101,115,104,111,108,100,95,115,99,111,116,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,104,114,101,115,104,111,108,100,47,115,99,111,116,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,104,114,101,115,104,111,108,100,47,115,99,111,116,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,104,114,101,115,104,111,108,100,95,115,116,117,114,103,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,104,114,101,115,104,111,108,100,47,115,116,117,114,103,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,104,114,101,115,104,111,108,100,47,115,116,117,114,103,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,97,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,101,97,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,97,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,101,97,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,101,100,105,97,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,100,105,97,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,101,100,105,97,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,101,114,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,114,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,101,114,103,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,105,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,105,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,97,105,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,97,105,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,112,97,105,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,101,114,109,117,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,101,114,109,117,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,112,101,114,109,117,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,113,117,97,110,116,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,113,117,97,110,116,105,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,113,117,97,110,116,105,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,110,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,97,110,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,114,97,110,103,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,99,97,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,99,97,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,115,99,97,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,104,117,102,102,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,104,117,102,102,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,115,104,117,102,102,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,117,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,117,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,115,117,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,105,99,107,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,105,99,107,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,105,99,107,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,112,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,97,110,115,112,111,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,114,97,110,115,112,111,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,97,114,105,97,110,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,118,97,114,105,97,110,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,118,97,114,105,97,110,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,122,105,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,122,105,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,122,105,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,97,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,97,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,115,44,32,118,97,108,117,101,111,102,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,109,97,120,59,92,110,92,110,32,32,105,102,32,40,118,97,108,117,101,111,102,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,32,47,47,32,70,105,110,100,32,116,104,101,32,102,105,114,115,116,32,99,111,109,112,97,114,97,98,108,101,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,105,102,32,40,40,118,97,108,117,101,32,61,32,118,97,108,117,101,115,91,105,93,41,32,33,61,32,110,117,108,108,32,38,38,32,118,97,108,117,101,32,62,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,109,97,120,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,32,47,47,32,67,111,109,112,97,114,101,32,116,104,101,32,114,101,109,97,105,110,105,110,103,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,118,97,108,117,101,32,61,32,118,97,108,117,101,115,91,105,93,41,32,33,61,32,110,117,108,108,32,38,38,32,118,97,108,117,101,32,62,32,109,97,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,97,120,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,101,108,115,101,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,32,47,47,32,70,105,110,100,32,116,104,101,32,102,105,114,115,116,32,99,111,109,112,97,114,97,98,108,101,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,105,102,32,40,40,118,97,108,117,101,32,61,32,118,97,108,117,101,111,102,40,118,97,108,117,101,115,91,105,93,44,32,105,44,32,118,97,108,117,101,115,41,41,32,33,61,32,110,117,108,108,32,38,38,32,118,97,108,117,101,32,62,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,109,97,120,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,32,47,47,32,67,111,109,112,97,114,101,32,116,104,101,32,114,101,109,97,105,110,105,110,103,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,118,97,108,117,101,32,61,32,118,97,108,117,101,111,102,40,118,97,108,117,101,115,91,105,93,44,32,105,44,32,118,97,108,117,101,115,41,41,32,33,61,32,110,117,108,108,32,38,38,32,118,97,108,117,101,32,62,32,109,97,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,97,120,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,109,97,120,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,97,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,101,97,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,101,97,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,115,44,32,118,97,108,117,101,111,102,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,109,32,61,32,110,44,92,110,32,32,32,32,32,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,115,117,109,32,61,32,48,59,92,110,92,110,32,32,105,102,32,40,118,97,108,117,101,111,102,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,78,97,78,40,118,97,108,117,101,32,61,32,40,48,44,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,97,108,117,101,115,91,105,93,41,41,41,32,115,117,109,32,43,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,101,108,115,101,32,45,45,109,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,101,108,115,101,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,78,97,78,40,118,97,108,117,101,32,61,32,40,48,44,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,97,108,117,101,111,102,40,118,97,108,117,101,115,91,105,93,44,32,105,44,32,118,97,108,117,101,115,41,41,41,41,32,115,117,109,32,43,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,101,108,115,101,32,45,45,109,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,109,41,32,114,101,116,117,114,110,32,115,117,109,32,47,32,109,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,101,97,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,101,100,105,97,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,101,100,105,97,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,115,99,101,110,100,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,97,115,99,101,110,100,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,113,117,97,110,116,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,113,117,97,110,116,105,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,113,117,97,110,116,105,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,115,44,32,118,97,108,117,101,111,102,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,110,117,109,98,101,114,115,32,61,32,91,93,59,92,110,92,110,32,32,105,102,32,40,118,97,108,117,101,111,102,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,78,97,78,40,118,97,108,117,101,32,61,32,40,48,44,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,97,108,117,101,115,91,105,93,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,110,117,109,98,101,114,115,46,112,117,115,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,101,108,115,101,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,78,97,78,40,118,97,108,117,101,32,61,32,40,48,44,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,97,108,117,101,111,102,40,118,97,108,117,101,115,91,105,93,44,32,105,44,32,118,97,108,117,101,115,41,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,110,117,109,98,101,114,115,46,112,117,115,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,113,117,97,110,116,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,117,109,98,101,114,115,46,115,111,114,116,40,95,97,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,44,32,48,46,53,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,101,100,105,97,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,101,114,103,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,101,114,103,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,114,114,97,121,115,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,97,114,114,97,121,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,109,44,92,110,32,32,32,32,32,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,106,32,61,32,48,44,92,110,32,32,32,32,32,32,109,101,114,103,101,100,44,92,110,32,32,32,32,32,32,97,114,114,97,121,59,92,110,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,106,32,43,61,32,97,114,114,97,121,115,91,105,93,46,108,101,110,103,116,104,59,92,110,32,32,109,101,114,103,101,100,32,61,32,110,101,119,32,65,114,114,97,121,40,106,41,59,92,110,92,110,32,32,119,104,105,108,101,32,40,45,45,110,32,62,61,32,48,41,32,123,92,110,32,32,32,32,97,114,114,97,121,32,61,32,97,114,114,97,121,115,91,110,93,59,92,110,32,32,32,32,109,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,45,45,109,32,62,61,32,48,41,32,123,92,110,32,32,32,32,32,32,109,101,114,103,101,100,91,45,45,106,93,32,61,32,97,114,114,97,121,91,109,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,109,101,114,103,101,100,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,101,114,103,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,105,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,105,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,115,44,32,118,97,108,117,101,111,102,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,109,105,110,59,92,110,92,110,32,32,105,102,32,40,118,97,108,117,101,111,102,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,32,47,47,32,70,105,110,100,32,116,104,101,32,102,105,114,115,116,32,99,111,109,112,97,114,97,98,108,101,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,105,102,32,40,40,118,97,108,117,101,32,61,32,118,97,108,117,101,115,91,105,93,41,32,33,61,32,110,117,108,108,32,38,38,32,118,97,108,117,101,32,62,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,109,105,110,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,32,47,47,32,67,111,109,112,97,114,101,32,116,104,101,32,114,101,109,97,105,110,105,110,103,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,118,97,108,117,101,32,61,32,118,97,108,117,101,115,91,105,93,41,32,33,61,32,110,117,108,108,32,38,38,32,109,105,110,32,62,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,105,110,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,101,108,115,101,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,32,47,47,32,70,105,110,100,32,116,104,101,32,102,105,114,115,116,32,99,111,109,112,97,114,97,98,108,101,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,105,102,32,40,40,118,97,108,117,101,32,61,32,118,97,108,117,101,111,102,40,118,97,108,117,101,115,91,105,93,44,32,105,44,32,118,97,108,117,101,115,41,41,32,33,61,32,110,117,108,108,32,38,38,32,118,97,108,117,101,32,62,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,109,105,110,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,32,47,47,32,67,111,109,112,97,114,101,32,116,104,101,32,114,101,109,97,105,110,105,110,103,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,118,97,108,117,101,32,61,32,118,97,108,117,101,111,102,40,118,97,108,117,101,115,91,105,93,44,32,105,44,32,118,97,108,117,101,115,41,41,32,33,61,32,110,117,108,108,32,38,38,32,109,105,110,32,62,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,105,110,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,109,105,110,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,105,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,110,117,109,98,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,110,117,109,98,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,32,61,61,61,32,110,117,108,108,32,63,32,78,97,78,32,58,32,43,120,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,110,117,109,98,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,112,97,105,114,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,112,97,105,114,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,105,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,97,105,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,114,114,97,121,44,32,102,41,32,123,92,110,32,32,105,102,32,40,102,32,61,61,32,110,117,108,108,41,32,102,32,61,32,112,97,105,114,59,92,110,32,32,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,32,45,32,49,44,32,112,32,61,32,97,114,114,97,121,91,48,93,44,32,112,97,105,114,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,32,60,32,48,32,63,32,48,32,58,32,110,41,59,92,110,32,32,119,104,105,108,101,32,40,105,32,60,32,110,41,32,112,97,105,114,115,91,105,93,32,61,32,102,40,112,44,32,112,32,61,32,97,114,114,97,121,91,43,43,105,93,41,59,92,110,32,32,114,101,116,117,114,110,32,112,97,105,114,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,105,114,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,97,44,32,98,93,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,112,97,105,114,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,112,101,114,109,117,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,112,101,114,109,117,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,114,114,97,121,44,32,105,110,100,101,120,101,115,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,105,110,100,101,120,101,115,46,108,101,110,103,116,104,44,32,112,101,114,109,117,116,101,115,32,61,32,110,101,119,32,65,114,114,97,121,40,105,41,59,92,110,32,32,119,104,105,108,101,32,40,105,45,45,41,32,112,101,114,109,117,116,101,115,91,105,93,32,61,32,97,114,114,97,121,91,105,110,100,101,120,101,115,91,105,93,93,59,92,110,32,32,114,101,116,117,114,110,32,112,101,114,109,117,116,101,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,112,101,114,109,117,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,113,117,97,110,116,105,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,113,117,97,110,116,105,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,115,44,32,112,44,32,118,97,108,117,101,111,102,41,32,123,92,110,32,32,105,102,32,40,118,97,108,117,101,111,102,32,61,61,32,110,117,108,108,41,32,118,97,108,117,101,111,102,32,61,32,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,32,32,105,102,32,40,33,40,110,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,41,41,32,114,101,116,117,114,110,59,92,110,32,32,105,102,32,40,40,112,32,61,32,43,112,41,32,60,61,32,48,32,124,124,32,110,32,60,32,50,41,32,114,101,116,117,114,110,32,43,118,97,108,117,101,111,102,40,118,97,108,117,101,115,91,48,93,44,32,48,44,32,118,97,108,117,101,115,41,59,92,110,32,32,105,102,32,40,112,32,62,61,32,49,41,32,114,101,116,117,114,110,32,43,118,97,108,117,101,111,102,40,118,97,108,117,101,115,91,110,32,45,32,49,93,44,32,110,32,45,32,49,44,32,118,97,108,117,101,115,41,59,92,110,32,32,118,97,114,32,110,44,92,110,32,32,32,32,32,32,105,32,61,32,40,110,32,45,32,49,41,32,42,32,112,44,92,110,32,32,32,32,32,32,105,48,32,61,32,77,97,116,104,46,102,108,111,111,114,40,105,41,44,92,110,32,32,32,32,32,32,118,97,108,117,101,48,32,61,32,43,118,97,108,117,101,111,102,40,118,97,108,117,101,115,91,105,48,93,44,32,105,48,44,32,118,97,108,117,101,115,41,44,92,110,32,32,32,32,32,32,118,97,108,117,101,49,32,61,32,43,118,97,108,117,101,111,102,40,118,97,108,117,101,115,91,105,48,32,43,32,49,93,44,32,105,48,32,43,32,49,44,32,118,97,108,117,101,115,41,59,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,48,32,43,32,40,118,97,108,117,101,49,32,45,32,118,97,108,117,101,48,41,32,42,32,40,105,32,45,32,105,48,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,113,117,97,110,116,105,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,114,97,110,103,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,114,97,110,103,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,116,97,114,116,44,32,115,116,111,112,44,32,115,116,101,112,41,32,123,92,110,32,32,115,116,97,114,116,32,61,32,43,115,116,97,114,116,44,32,115,116,111,112,32,61,32,43,115,116,111,112,44,32,115,116,101,112,32,61,32,40,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,60,32,50,32,63,32,40,115,116,111,112,32,61,32,115,116,97,114,116,44,32,115,116,97,114,116,32,61,32,48,44,32,49,41,32,58,32,110,32,60,32,51,32,63,32,49,32,58,32,43,115,116,101,112,59,92,110,92,110,32,32,118,97,114,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,110,32,61,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,99,101,105,108,40,40,115,116,111,112,32,45,32,115,116,97,114,116,41,32,47,32,115,116,101,112,41,41,32,124,32,48,44,92,110,32,32,32,32,32,32,114,97,110,103,101,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,114,97,110,103,101,91,105,93,32,61,32,115,116,97,114,116,32,43,32,105,32,42,32,115,116,101,112,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,114,97,110,103,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,114,97,110,103,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,115,99,97,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,115,99,97,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,115,99,101,110,100,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,97,115,99,101,110,100,105,110,103,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,115,44,32,99,111,109,112,97,114,101,41,32,123,92,110,32,32,105,102,32,40,33,40,110,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,41,41,32,114,101,116,117,114,110,59,92,110,32,32,118,97,114,32,110,44,92,110,32,32,32,32,32,32,105,32,61,32,48,44,92,110,32,32,32,32,32,32,106,32,61,32,48,44,92,110,32,32,32,32,32,32,120,105,44,92,110,32,32,32,32,32,32,120,106,32,61,32,118,97,108,117,101,115,91,106,93,59,92,110,92,110,32,32,105,102,32,40,99,111,109,112,97,114,101,32,61,61,32,110,117,108,108,41,32,99,111,109,112,97,114,101,32,61,32,95,97,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,105,102,32,40,99,111,109,112,97,114,101,40,120,105,32,61,32,118,97,108,117,101,115,91,105,93,44,32,120,106,41,32,60,32,48,32,124,124,32,99,111,109,112,97,114,101,40,120,106,44,32,120,106,41,32,33,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,120,106,32,61,32,120,105,44,32,106,32,61,32,105,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,99,111,109,112,97,114,101,40,120,106,44,32,120,106,41,32,61,61,61,32,48,41,32,114,101,116,117,114,110,32,106,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,115,99,97,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,115,104,117,102,102,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,115,104,117,102,102,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,114,114,97,121,44,32,105,48,44,32,105,49,41,32,123,92,110,32,32,118,97,114,32,109,32,61,32,40,105,49,32,61,61,32,110,117,108,108,32,63,32,97,114,114,97,121,46,108,101,110,103,116,104,32,58,32,105,49,41,32,45,32,40,105,48,32,61,32,105,48,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,43,105,48,41,44,92,110,32,32,32,32,32,32,116,44,92,110,32,32,32,32,32,32,105,59,92,110,92,110,32,32,119,104,105,108,101,32,40,109,41,32,123,92,110,32,32,32,32,105,32,61,32,77,97,116,104,46,114,97,110,100,111,109,40,41,32,42,32,109,45,45,32,124,32,48,59,92,110,32,32,32,32,116,32,61,32,97,114,114,97,121,91,109,32,43,32,105,48,93,59,92,110,32,32,32,32,97,114,114,97,121,91,109,32,43,32,105,48,93,32,61,32,97,114,114,97,121,91,105,32,43,32,105,48,93,59,92,110,32,32,32,32,97,114,114,97,121,91,105,32,43,32,105,48,93,32,61,32,116,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,115,104,117,102,102,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,115,117,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,115,117,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,115,44,32,118,97,108,117,101,111,102,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,115,117,109,32,61,32,48,59,92,110,92,110,32,32,105,102,32,40,118,97,108,117,101,111,102,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,32,43,118,97,108,117,101,115,91,105,93,41,32,115,117,109,32,43,61,32,118,97,108,117,101,59,32,47,47,32,78,111,116,101,58,32,122,101,114,111,32,97,110,100,32,110,117,108,108,32,97,114,101,32,101,113,117,105,118,97,108,101,110,116,46,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,101,108,115,101,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,32,43,118,97,108,117,101,111,102,40,118,97,108,117,101,115,91,105,93,44,32,105,44,32,118,97,108,117,101,115,41,41,32,115,117,109,32,43,61,32,118,97,108,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,115,117,109,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,115,117,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,104,114,101,115,104,111,108,100,47,102,114,101,101,100,109,97,110,68,105,97,99,111,110,105,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,104,114,101,115,104,111,108,100,47,102,114,101,101,100,109,97,110,68,105,97,99,111,110,105,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,97,115,99,101,110,100,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,97,115,99,101,110,100,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,113,117,97,110,116,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,113,117,97,110,116,105,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,113,117,97,110,116,105,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,115,44,32,109,105,110,44,32,109,97,120,41,32,123,92,110,32,32,118,97,108,117,101,115,32,61,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,112,46,99,97,108,108,40,118,97,108,117,101,115,44,32,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,46,115,111,114,116,40,95,97,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,99,101,105,108,40,40,109,97,120,32,45,32,109,105,110,41,32,47,32,40,50,32,42,32,40,40,48,44,95,113,117,97,110,116,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,97,108,117,101,115,44,32,48,46,55,53,41,32,45,32,40,48,44,95,113,117,97,110,116,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,97,108,117,101,115,44,32,48,46,50,53,41,41,32,42,32,77,97,116,104,46,112,111,119,40,118,97,108,117,101,115,46,108,101,110,103,116,104,44,32,45,49,32,47,32,51,41,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,104,114,101,115,104,111,108,100,47,102,114,101,101,100,109,97,110,68,105,97,99,111,110,105,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,104,114,101,115,104,111,108,100,47,115,99,111,116,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,104,114,101,115,104,111,108,100,47,115,99,111,116,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,118,105,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,100,101,118,105,97,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,100,101,118,105,97,116,105,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,115,44,32,109,105,110,44,32,109,97,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,99,101,105,108,40,40,109,97,120,32,45,32,109,105,110,41,32,47,32,40,51,46,53,32,42,32,40,48,44,95,100,101,118,105,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,97,108,117,101,115,41,32,42,32,77,97,116,104,46,112,111,119,40,118,97,108,117,101,115,46,108,101,110,103,116,104,44,32,45,49,32,47,32,51,41,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,104,114,101,115,104,111,108,100,47,115,99,111,116,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,104,114,101,115,104,111,108,100,47,115,116,117,114,103,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,104,114,101,115,104,111,108,100,47,115,116,117,114,103,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,99,101,105,108,40,77,97,116,104,46,108,111,103,40,118,97,108,117,101,115,46,108,101,110,103,116,104,41,32,47,32,77,97,116,104,46,76,78,50,41,32,43,32,49,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,104,114,101,115,104,111,108,100,47,115,116,117,114,103,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,105,99,107,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,105,99,107,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,99,107,73,110,99,114,101,109,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,105,99,107,73,110,99,114,101,109,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,99,107,83,116,101,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,105,99,107,83,116,101,112,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,101,49,48,32,61,32,77,97,116,104,46,115,113,114,116,40,53,48,41,44,92,110,32,32,32,32,101,53,32,61,32,77,97,116,104,46,115,113,114,116,40,49,48,41,44,92,110,32,32,32,32,101,50,32,61,32,77,97,116,104,46,115,113,114,116,40,50,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,116,97,114,116,44,32,115,116,111,112,44,32,99,111,117,110,116,41,32,123,92,110,32,32,118,97,114,32,114,101,118,101,114,115,101,44,92,110,32,32,32,32,32,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,110,44,92,110,32,32,32,32,32,32,116,105,99,107,115,44,92,110,32,32,32,32,32,32,115,116,101,112,59,92,110,92,110,32,32,115,116,111,112,32,61,32,43,115,116,111,112,44,32,115,116,97,114,116,32,61,32,43,115,116,97,114,116,44,32,99,111,117,110,116,32,61,32,43,99,111,117,110,116,59,92,110,32,32,105,102,32,40,115,116,97,114,116,32,61,61,61,32,115,116,111,112,32,38,38,32,99,111,117,110,116,32,62,32,48,41,32,114,101,116,117,114,110,32,91,115,116,97,114,116,93,59,92,110,32,32,105,102,32,40,114,101,118,101,114,115,101,32,61,32,115,116,111,112,32,60,32,115,116,97,114,116,41,32,110,32,61,32,115,116,97,114,116,44,32,115,116,97,114,116,32,61,32,115,116,111,112,44,32,115,116,111,112,32,61,32,110,59,92,110,32,32,105,102,32,40,40,115,116,101,112,32,61,32,116,105,99,107,73,110,99,114,101,109,101,110,116,40,115,116,97,114,116,44,32,115,116,111,112,44,32,99,111,117,110,116,41,41,32,61,61,61,32,48,32,124,124,32,33,105,115,70,105,110,105,116,101,40,115,116,101,112,41,41,32,114,101,116,117,114,110,32,91,93,59,92,110,92,110,32,32,105,102,32,40,115,116,101,112,32,62,32,48,41,32,123,92,110,32,32,32,32,115,116,97,114,116,32,61,32,77,97,116,104,46,99,101,105,108,40,115,116,97,114,116,32,47,32,115,116,101,112,41,59,92,110,32,32,32,32,115,116,111,112,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,116,111,112,32,47,32,115,116,101,112,41,59,92,110,32,32,32,32,116,105,99,107,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,32,61,32,77,97,116,104,46,99,101,105,108,40,115,116,111,112,32,45,32,115,116,97,114,116,32,43,32,49,41,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,116,105,99,107,115,91,105,93,32,61,32,40,115,116,97,114,116,32,43,32,105,41,32,42,32,115,116,101,112,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,115,116,97,114,116,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,116,97,114,116,32,42,32,115,116,101,112,41,59,92,110,32,32,32,32,115,116,111,112,32,61,32,77,97,116,104,46,99,101,105,108,40,115,116,111,112,32,42,32,115,116,101,112,41,59,92,110,32,32,32,32,116,105,99,107,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,32,61,32,77,97,116,104,46,99,101,105,108,40,115,116,97,114,116,32,45,32,115,116,111,112,32,43,32,49,41,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,116,105,99,107,115,91,105,93,32,61,32,40,115,116,97,114,116,32,45,32,105,41,32,47,32,115,116,101,112,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,114,101,118,101,114,115,101,41,32,116,105,99,107,115,46,114,101,118,101,114,115,101,40,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,116,105,99,107,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,105,99,107,73,110,99,114,101,109,101,110,116,40,115,116,97,114,116,44,32,115,116,111,112,44,32,99,111,117,110,116,41,32,123,92,110,32,32,118,97,114,32,115,116,101,112,32,61,32,40,115,116,111,112,32,45,32,115,116,97,114,116,41,32,47,32,77,97,116,104,46,109,97,120,40,48,44,32,99,111,117,110,116,41,44,92,110,32,32,32,32,32,32,112,111,119,101,114,32,61,32,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,115,116,101,112,41,32,47,32,77,97,116,104,46,76,78,49,48,41,44,92,110,32,32,32,32,32,32,101,114,114,111,114,32,61,32,115,116,101,112,32,47,32,77,97,116,104,46,112,111,119,40,49,48,44,32,112,111,119,101,114,41,59,92,110,32,32,114,101,116,117,114,110,32,112,111,119,101,114,32,62,61,32,48,92,110,32,32,32,32,32,32,63,32,40,101,114,114,111,114,32,62,61,32,101,49,48,32,63,32,49,48,32,58,32,101,114,114,111,114,32,62,61,32,101,53,32,63,32,53,32,58,32,101,114,114,111,114,32,62,61,32,101,50,32,63,32,50,32,58,32,49,41,32,42,32,77,97,116,104,46,112,111,119,40,49,48,44,32,112,111,119,101,114,41,92,110,32,32,32,32,32,32,58,32,45,77,97,116,104,46,112,111,119,40,49,48,44,32,45,112,111,119,101,114,41,32,47,32,40,101,114,114,111,114,32,62,61,32,101,49,48,32,63,32,49,48,32,58,32,101,114,114,111,114,32,62,61,32,101,53,32,63,32,53,32,58,32,101,114,114,111,114,32,62,61,32,101,50,32,63,32,50,32,58,32,49,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,105,99,107,83,116,101,112,40,115,116,97,114,116,44,32,115,116,111,112,44,32,99,111,117,110,116,41,32,123,92,110,32,32,118,97,114,32,115,116,101,112,48,32,61,32,77,97,116,104,46,97,98,115,40,115,116,111,112,32,45,32,115,116,97,114,116,41,32,47,32,77,97,116,104,46,109,97,120,40,48,44,32,99,111,117,110,116,41,44,92,110,32,32,32,32,32,32,115,116,101,112,49,32,61,32,77,97,116,104,46,112,111,119,40,49,48,44,32,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,115,116,101,112,48,41,32,47,32,77,97,116,104,46,76,78,49,48,41,41,44,92,110,32,32,32,32,32,32,101,114,114,111,114,32,61,32,115,116,101,112,48,32,47,32,115,116,101,112,49,59,92,110,32,32,105,102,32,40,101,114,114,111,114,32,62,61,32,101,49,48,41,32,115,116,101,112,49,32,42,61,32,49,48,59,92,110,32,32,101,108,115,101,32,105,102,32,40,101,114,114,111,114,32,62,61,32,101,53,41,32,115,116,101,112,49,32,42,61,32,53,59,92,110,32,32,101,108,115,101,32,105,102,32,40,101,114,114,111,114,32,62,61,32,101,50,41,32,115,116,101,112,49,32,42,61,32,50,59,92,110,32,32,114,101,116,117,114,110,32,115,116,111,112,32,60,32,115,116,97,114,116,32,63,32,45,115,116,101,112,49,32,58,32,115,116,101,112,49,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,105,99,107,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,114,97,110,115,112,111,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,114,97,110,115,112,111,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,105,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,109,105,110,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,109,97,116,114,105,120,41,32,123,92,110,32,32,105,102,32,40,33,40,110,32,61,32,109,97,116,114,105,120,46,108,101,110,103,116,104,41,41,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,45,49,44,32,109,32,61,32,40,48,44,95,109,105,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,109,97,116,114,105,120,44,32,108,101,110,103,116,104,41,44,32,116,114,97,110,115,112,111,115,101,32,61,32,110,101,119,32,65,114,114,97,121,40,109,41,59,32,43,43,105,32,60,32,109,59,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,45,49,44,32,110,44,32,114,111,119,32,61,32,116,114,97,110,115,112,111,115,101,91,105,93,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,32,43,43,106,32,60,32,110,59,41,32,123,92,110,32,32,32,32,32,32,114,111,119,91,106,93,32,61,32,109,97,116,114,105,120,91,106,93,91,105,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,114,97,110,115,112,111,115,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,101,110,103,116,104,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,108,101,110,103,116,104,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,114,97,110,115,112,111,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,118,97,114,105,97,110,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,118,97,114,105,97,110,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,115,44,32,118,97,108,117,101,111,102,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,109,32,61,32,48,44,92,110,32,32,32,32,32,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,109,101,97,110,32,61,32,48,44,92,110,32,32,32,32,32,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,100,101,108,116,97,44,92,110,32,32,32,32,32,32,115,117,109,32,61,32,48,59,92,110,92,110,32,32,105,102,32,40,118,97,108,117,101,111,102,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,78,97,78,40,118,97,108,117,101,32,61,32,40,48,44,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,97,108,117,101,115,91,105,93,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,108,116,97,32,61,32,118,97,108,117,101,32,45,32,109,101,97,110,59,92,110,32,32,32,32,32,32,32,32,109,101,97,110,32,43,61,32,100,101,108,116,97,32,47,32,43,43,109,59,92,110,32,32,32,32,32,32,32,32,115,117,109,32,43,61,32,100,101,108,116,97,32,42,32,40,118,97,108,117,101,32,45,32,109,101,97,110,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,101,108,115,101,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,78,97,78,40,118,97,108,117,101,32,61,32,40,48,44,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,97,108,117,101,111,102,40,118,97,108,117,101,115,91,105,93,44,32,105,44,32,118,97,108,117,101,115,41,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,108,116,97,32,61,32,118,97,108,117,101,32,45,32,109,101,97,110,59,92,110,32,32,32,32,32,32,32,32,109,101,97,110,32,43,61,32,100,101,108,116,97,32,47,32,43,43,109,59,92,110,32,32,32,32,32,32,32,32,115,117,109,32,43,61,32,100,101,108,116,97,32,42,32,40,118,97,108,117,101,32,45,32,109,101,97,110,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,109,32,62,32,49,41,32,114,101,116,117,114,110,32,115,117,109,32,47,32,40,109,32,45,32,49,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,118,97,114,105,97,110,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,122,105,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,122,105,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,112,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,97,110,115,112,111,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,116,114,97,110,115,112,111,115,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,116,114,97,110,115,112,111,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,122,105,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,108,105,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,108,105,99,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,115,108,105,99,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,97,120,105,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,97,120,105,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,120,105,115,66,111,116,116,111,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,120,105,115,66,111,116,116,111,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,120,105,115,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,120,105,115,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,120,105,115,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,120,105,115,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,120,105,115,84,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,120,105,115,84,111,112,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,116,111,112,32,61,32,49,44,92,110,32,32,32,32,114,105,103,104,116,32,61,32,50,44,92,110,32,32,32,32,98,111,116,116,111,109,32,61,32,51,44,92,110,32,32,32,32,108,101,102,116,32,61,32,52,44,92,110,32,32,32,32,101,112,115,105,108,111,110,32,61,32,49,101,45,54,59,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,108,97,116,101,88,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,92,34,116,114,97,110,115,108,97,116,101,40,92,34,32,43,32,40,120,32,43,32,48,46,53,41,32,43,32,92,34,44,48,41,92,34,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,108,97,116,101,89,40,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,92,34,116,114,97,110,115,108,97,116,101,40,48,44,92,34,32,43,32,40,121,32,43,32,48,46,53,41,32,43,32,92,34,41,92,34,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,117,109,98,101,114,40,115,99,97,108,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,43,115,99,97,108,101,40,100,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,101,114,40,115,99,97,108,101,41,32,123,92,110,32,32,118,97,114,32,111,102,102,115,101,116,32,61,32,77,97,116,104,46,109,97,120,40,48,44,32,115,99,97,108,101,46,98,97,110,100,119,105,100,116,104,40,41,32,45,32,49,41,32,47,32,50,59,32,47,47,32,65,100,106,117,115,116,32,102,111,114,32,48,46,53,112,120,32,111,102,102,115,101,116,46,92,110,32,32,105,102,32,40,115,99,97,108,101,46,114,111,117,110,100,40,41,41,32,111,102,102,115,101,116,32,61,32,77,97,116,104,46,114,111,117,110,100,40,111,102,102,115,101,116,41,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,43,115,99,97,108,101,40,100,41,32,43,32,111,102,102,115,101,116,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,110,116,101,114,105,110,103,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,95,95,97,120,105,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,120,105,115,40,111,114,105,101,110,116,44,32,115,99,97,108,101,41,32,123,92,110,32,32,118,97,114,32,116,105,99,107,65,114,103,117,109,101,110,116,115,32,61,32,91,93,44,92,110,32,32,32,32,32,32,116,105,99,107,86,97,108,117,101,115,32,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,116,105,99,107,70,111,114,109,97,116,32,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,116,105,99,107,83,105,122,101,73,110,110,101,114,32,61,32,54,44,92,110,32,32,32,32,32,32,116,105,99,107,83,105,122,101,79,117,116,101,114,32,61,32,54,44,92,110,32,32,32,32,32,32,116,105,99,107,80,97,100,100,105,110,103,32,61,32,51,44,92,110,32,32,32,32,32,32,107,32,61,32,111,114,105,101,110,116,32,61,61,61,32,116,111,112,32,124,124,32,111,114,105,101,110,116,32,61,61,61,32,108,101,102,116,32,63,32,45,49,32,58,32,49,44,92,110,32,32,32,32,32,32,120,32,61,32,111,114,105,101,110,116,32,61,61,61,32,108,101,102,116,32,124,124,32,111,114,105,101,110,116,32,61,61,61,32,114,105,103,104,116,32,63,32,92,34,120,92,34,32,58,32,92,34,121,92,34,44,92,110,32,32,32,32,32,32,116,114,97,110,115,102,111,114,109,32,61,32,111,114,105,101,110,116,32,61,61,61,32,116,111,112,32,124,124,32,111,114,105,101,110,116,32,61,61,61,32,98,111,116,116,111,109,32,63,32,116,114,97,110,115,108,97,116,101,88,32,58,32,116,114,97,110,115,108,97,116,101,89,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,97,120,105,115,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,116,105,99,107,86,97,108,117,101,115,32,61,61,32,110,117,108,108,32,63,32,40,115,99,97,108,101,46,116,105,99,107,115,32,63,32,115,99,97,108,101,46,116,105,99,107,115,46,97,112,112,108,121,40,115,99,97,108,101,44,32,116,105,99,107,65,114,103,117,109,101,110,116,115,41,32,58,32,115,99,97,108,101,46,100,111,109,97,105,110,40,41,41,32,58,32,116,105,99,107,86,97,108,117,101,115,44,92,110,32,32,32,32,32,32,32,32,102,111,114,109,97,116,32,61,32,116,105,99,107,70,111,114,109,97,116,32,61,61,32,110,117,108,108,32,63,32,40,115,99,97,108,101,46,116,105,99,107,70,111,114,109,97,116,32,63,32,115,99,97,108,101,46,116,105,99,107,70,111,114,109,97,116,46,97,112,112,108,121,40,115,99,97,108,101,44,32,116,105,99,107,65,114,103,117,109,101,110,116,115,41,32,58,32,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,32,58,32,116,105,99,107,70,111,114,109,97,116,44,92,110,32,32,32,32,32,32,32,32,115,112,97,99,105,110,103,32,61,32,77,97,116,104,46,109,97,120,40,116,105,99,107,83,105,122,101,73,110,110,101,114,44,32,48,41,32,43,32,116,105,99,107,80,97,100,100,105,110,103,44,92,110,32,32,32,32,32,32,32,32,114,97,110,103,101,32,61,32,115,99,97,108,101,46,114,97,110,103,101,40,41,44,92,110,32,32,32,32,32,32,32,32,114,97,110,103,101,48,32,61,32,43,114,97,110,103,101,91,48,93,32,43,32,48,46,53,44,92,110,32,32,32,32,32,32,32,32,114,97,110,103,101,49,32,61,32,43,114,97,110,103,101,91,114,97,110,103,101,46,108,101,110,103,116,104,32,45,32,49,93,32,43,32,48,46,53,44,92,110,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,32,61,32,40,115,99,97,108,101,46,98,97,110,100,119,105,100,116,104,32,63,32,99,101,110,116,101,114,32,58,32,110,117,109,98,101,114,41,40,115,99,97,108,101,46,99,111,112,121,40,41,41,44,92,110,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,32,61,32,99,111,110,116,101,120,116,46,115,101,108,101,99,116,105,111,110,32,63,32,99,111,110,116,101,120,116,46,115,101,108,101,99,116,105,111,110,40,41,32,58,32,99,111,110,116,101,120,116,44,92,110,32,32,32,32,32,32,32,32,112,97,116,104,32,61,32,115,101,108,101,99,116,105,111,110,46,115,101,108,101,99,116,65,108,108,40,92,34,46,100,111,109,97,105,110,92,34,41,46,100,97,116,97,40,91,110,117,108,108,93,41,44,92,110,32,32,32,32,32,32,32,32,116,105,99,107,32,61,32,115,101,108,101,99,116,105,111,110,46,115,101,108,101,99,116,65,108,108,40,92,34,46,116,105,99,107,92,34,41,46,100,97,116,97,40,118,97,108,117,101,115,44,32,115,99,97,108,101,41,46,111,114,100,101,114,40,41,44,92,110,32,32,32,32,32,32,32,32,116,105,99,107,69,120,105,116,32,61,32,116,105,99,107,46,101,120,105,116,40,41,44,92,110,32,32,32,32,32,32,32,32,116,105,99,107,69,110,116,101,114,32,61,32,116,105,99,107,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,99,108,97,115,115,92,34,44,32,92,34,116,105,99,107,92,34,41,44,92,110,32,32,32,32,32,32,32,32,108,105,110,101,32,61,32,116,105,99,107,46,115,101,108,101,99,116,40,92,34,108,105,110,101,92,34,41,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,32,61,32,116,105,99,107,46,115,101,108,101,99,116,40,92,34,116,101,120,116,92,34,41,59,92,110,92,110,32,32,32,32,112,97,116,104,32,61,32,112,97,116,104,46,109,101,114,103,101,40,112,97,116,104,46,101,110,116,101,114,40,41,46,105,110,115,101,114,116,40,92,34,112,97,116,104,92,34,44,32,92,34,46,116,105,99,107,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,99,108,97,115,115,92,34,44,32,92,34,100,111,109,97,105,110,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,115,116,114,111,107,101,92,34,44,32,92,34,99,117,114,114,101,110,116,67,111,108,111,114,92,34,41,41,59,92,110,92,110,32,32,32,32,116,105,99,107,32,61,32,116,105,99,107,46,109,101,114,103,101,40,116,105,99,107,69,110,116,101,114,41,59,92,110,92,110,32,32,32,32,108,105,110,101,32,61,32,108,105,110,101,46,109,101,114,103,101,40,116,105,99,107,69,110,116,101,114,46,97,112,112,101,110,100,40,92,34,108,105,110,101,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,115,116,114,111,107,101,92,34,44,32,92,34,99,117,114,114,101,110,116,67,111,108,111,114,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,120,32,43,32,92,34,50,92,34,44,32,107,32,42,32,116,105,99,107,83,105,122,101,73,110,110,101,114,41,41,59,92,110,92,110,32,32,32,32,116,101,120,116,32,61,32,116,101,120,116,46,109,101,114,103,101,40,116,105,99,107,69,110,116,101,114,46,97,112,112,101,110,100,40,92,34,116,101,120,116,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,102,105,108,108,92,34,44,32,92,34,99,117,114,114,101,110,116,67,111,108,111,114,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,120,44,32,107,32,42,32,115,112,97,99,105,110,103,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,100,121,92,34,44,32,111,114,105,101,110,116,32,61,61,61,32,116,111,112,32,63,32,92,34,48,101,109,92,34,32,58,32,111,114,105,101,110,116,32,61,61,61,32,98,111,116,116,111,109,32,63,32,92,34,48,46,55,49,101,109,92,34,32,58,32,92,34,48,46,51,50,101,109,92,34,41,41,59,92,110,92,110,32,32,32,32,105,102,32,40,99,111,110,116,101,120,116,32,33,61,61,32,115,101,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,112,97,116,104,32,61,32,112,97,116,104,46,116,114,97,110,115,105,116,105,111,110,40,99,111,110,116,101,120,116,41,59,92,110,32,32,32,32,32,32,116,105,99,107,32,61,32,116,105,99,107,46,116,114,97,110,115,105,116,105,111,110,40,99,111,110,116,101,120,116,41,59,92,110,32,32,32,32,32,32,108,105,110,101,32,61,32,108,105,110,101,46,116,114,97,110,115,105,116,105,111,110,40,99,111,110,116,101,120,116,41,59,92,110,32,32,32,32,32,32,116,101,120,116,32,61,32,116,101,120,116,46,116,114,97,110,115,105,116,105,111,110,40,99,111,110,116,101,120,116,41,59,92,110,92,110,32,32,32,32,32,32,116,105,99,107,69,120,105,116,32,61,32,116,105,99,107,69,120,105,116,46,116,114,97,110,115,105,116,105,111,110,40,99,111,110,116,101,120,116,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,111,112,97,99,105,116,121,92,34,44,32,101,112,115,105,108,111,110,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,102,117,110,99,116,105,111,110,40,100,41,32,123,32,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,100,32,61,32,112,111,115,105,116,105,111,110,40,100,41,41,32,63,32,116,114,97,110,115,102,111,114,109,40,100,41,32,58,32,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,92,34,116,114,97,110,115,102,111,114,109,92,34,41,59,32,125,41,59,92,110,92,110,32,32,32,32,32,32,116,105,99,107,69,110,116,101,114,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,111,112,97,99,105,116,121,92,34,44,32,101,112,115,105,108,111,110,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,102,117,110,99,116,105,111,110,40,100,41,32,123,32,118,97,114,32,112,32,61,32,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,95,95,97,120,105,115,59,32,114,101,116,117,114,110,32,116,114,97,110,115,102,111,114,109,40,112,32,38,38,32,105,115,70,105,110,105,116,101,40,112,32,61,32,112,40,100,41,41,32,63,32,112,32,58,32,112,111,115,105,116,105,111,110,40,100,41,41,59,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,105,99,107,69,120,105,116,46,114,101,109,111,118,101,40,41,59,92,110,92,110,32,32,32,32,112,97,116,104,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,100,92,34,44,32,111,114,105,101,110,116,32,61,61,61,32,108,101,102,116,32,124,124,32,111,114,105,101,110,116,32,61,61,32,114,105,103,104,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,116,105,99,107,83,105,122,101,79,117,116,101,114,32,63,32,92,34,77,92,34,32,43,32,107,32,42,32,116,105,99,107,83,105,122,101,79,117,116,101,114,32,43,32,92,34,44,92,34,32,43,32,114,97,110,103,101,48,32,43,32,92,34,72,48,46,53,86,92,34,32,43,32,114,97,110,103,101,49,32,43,32,92,34,72,92,34,32,43,32,107,32,42,32,116,105,99,107,83,105,122,101,79,117,116,101,114,32,58,32,92,34,77,48,46,53,44,92,34,32,43,32,114,97,110,103,101,48,32,43,32,92,34,86,92,34,32,43,32,114,97,110,103,101,49,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,40,116,105,99,107,83,105,122,101,79,117,116,101,114,32,63,32,92,34,77,92,34,32,43,32,114,97,110,103,101,48,32,43,32,92,34,44,92,34,32,43,32,107,32,42,32,116,105,99,107,83,105,122,101,79,117,116,101,114,32,43,32,92,34,86,48,46,53,72,92,34,32,43,32,114,97,110,103,101,49,32,43,32,92,34,86,92,34,32,43,32,107,32,42,32,116,105,99,107,83,105,122,101,79,117,116,101,114,32,58,32,92,34,77,92,34,32,43,32,114,97,110,103,101,48,32,43,32,92,34,44,48,46,53,72,92,34,32,43,32,114,97,110,103,101,49,41,41,59,92,110,92,110,32,32,32,32,116,105,99,107,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,111,112,97,99,105,116,121,92,34,44,32,49,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,102,117,110,99,116,105,111,110,40,100,41,32,123,32,114,101,116,117,114,110,32,116,114,97,110,115,102,111,114,109,40,112,111,115,105,116,105,111,110,40,100,41,41,59,32,125,41,59,92,110,92,110,32,32,32,32,108,105,110,101,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,120,32,43,32,92,34,50,92,34,44,32,107,32,42,32,116,105,99,107,83,105,122,101,73,110,110,101,114,41,59,92,110,92,110,32,32,32,32,116,101,120,116,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,120,44,32,107,32,42,32,115,112,97,99,105,110,103,41,92,110,32,32,32,32,32,32,32,32,46,116,101,120,116,40,102,111,114,109,97,116,41,59,92,110,92,110,32,32,32,32,115,101,108,101,99,116,105,111,110,46,102,105,108,116,101,114,40,101,110,116,101,114,105,110,103,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,102,105,108,108,92,34,44,32,92,34,110,111,110,101,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,102,111,110,116,45,115,105,122,101,92,34,44,32,49,48,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,102,111,110,116,45,102,97,109,105,108,121,92,34,44,32,92,34,115,97,110,115,45,115,101,114,105,102,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,116,101,120,116,45,97,110,99,104,111,114,92,34,44,32,111,114,105,101,110,116,32,61,61,61,32,114,105,103,104,116,32,63,32,92,34,115,116,97,114,116,92,34,32,58,32,111,114,105,101,110,116,32,61,61,61,32,108,101,102,116,32,63,32,92,34,101,110,100,92,34,32,58,32,92,34,109,105,100,100,108,101,92,34,41,59,92,110,92,110,32,32,32,32,115,101,108,101,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,32,123,32,116,104,105,115,46,95,95,97,120,105,115,32,61,32,112,111,115,105,116,105,111,110,59,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,97,120,105,115,46,115,99,97,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,99,97,108,101,32,61,32,95,44,32,97,120,105,115,41,32,58,32,115,99,97,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,97,120,105,115,46,116,105,99,107,115,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,105,99,107,65,114,103,117,109,101,110,116,115,32,61,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,32,97,120,105,115,59,92,110,32,32,125,59,92,110,92,110,32,32,97,120,105,115,46,116,105,99,107,65,114,103,117,109,101,110,116,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,105,99,107,65,114,103,117,109,101,110,116,115,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,91,93,32,58,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,108,105,99,101,46,99,97,108,108,40,95,41,44,32,97,120,105,115,41,32,58,32,116,105,99,107,65,114,103,117,109,101,110,116,115,46,115,108,105,99,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,97,120,105,115,46,116,105,99,107,86,97,108,117,101,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,105,99,107,86,97,108,117,101,115,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,108,105,99,101,46,99,97,108,108,40,95,41,44,32,97,120,105,115,41,32,58,32,116,105,99,107,86,97,108,117,101,115,32,38,38,32,116,105,99,107,86,97,108,117,101,115,46,115,108,105,99,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,97,120,105,115,46,116,105,99,107,70,111,114,109,97,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,105,99,107,70,111,114,109,97,116,32,61,32,95,44,32,97,120,105,115,41,32,58,32,116,105,99,107,70,111,114,109,97,116,59,92,110,32,32,125,59,92,110,92,110,32,32,97,120,105,115,46,116,105,99,107,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,105,99,107,83,105,122,101,73,110,110,101,114,32,61,32,116,105,99,107,83,105,122,101,79,117,116,101,114,32,61,32,43,95,44,32,97,120,105,115,41,32,58,32,116,105,99,107,83,105,122,101,73,110,110,101,114,59,92,110,32,32,125,59,92,110,92,110,32,32,97,120,105,115,46,116,105,99,107,83,105,122,101,73,110,110,101,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,105,99,107,83,105,122,101,73,110,110,101,114,32,61,32,43,95,44,32,97,120,105,115,41,32,58,32,116,105,99,107,83,105,122,101,73,110,110,101,114,59,92,110,32,32,125,59,92,110,92,110,32,32,97,120,105,115,46,116,105,99,107,83,105,122,101,79,117,116,101,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,105,99,107,83,105,122,101,79,117,116,101,114,32,61,32,43,95,44,32,97,120,105,115,41,32,58,32,116,105,99,107,83,105,122,101,79,117,116,101,114,59,92,110,32,32,125,59,92,110,92,110,32,32,97,120,105,115,46,116,105,99,107,80,97,100,100,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,105,99,107,80,97,100,100,105,110,103,32,61,32,43,95,44,32,97,120,105,115,41,32,58,32,116,105,99,107,80,97,100,100,105,110,103,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,97,120,105,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,120,105,115,84,111,112,40,115,99,97,108,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,120,105,115,40,116,111,112,44,32,115,99,97,108,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,120,105,115,82,105,103,104,116,40,115,99,97,108,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,120,105,115,40,114,105,103,104,116,44,32,115,99,97,108,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,120,105,115,66,111,116,116,111,109,40,115,99,97,108,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,120,105,115,40,98,111,116,116,111,109,44,32,115,99,97,108,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,120,105,115,76,101,102,116,40,115,99,97,108,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,120,105,115,40,108,101,102,116,44,32,115,99,97,108,101,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,97,120,105,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,120,105,115,66,111,116,116,111,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,120,105,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,120,105,115,66,111,116,116,111,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,120,105,115,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,120,105,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,120,105,115,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,120,105,115,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,120,105,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,120,105,115,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,120,105,115,84,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,120,105,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,120,105,115,84,111,112,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,120,105,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,120,105,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,97,120,105,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,98,114,117,115,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,98,114,117,115,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,114,117,115,104,83,101,108,101,99,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,114,117,115,104,83,101,108,101,99,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,114,117,115,104,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,114,117,115,104,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,114,117,115,104,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,114,117,115,104,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,100,105,115,112,97,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,100,105,115,112,97,116,99,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,105,115,112,97,116,99,104,47,115,114,99,47,100,105,115,112,97,116,99,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,100,114,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,100,114,97,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,110,111,100,114,97,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,105,110,116,101,114,112,111,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,118,97,108,117,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,116,111,117,99,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,109,111,117,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,114,97,110,115,105,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,118,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,101,118,101,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,101,118,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,110,111,101,118,101,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,77,79,68,69,95,68,82,65,71,32,61,32,123,110,97,109,101,58,32,92,34,100,114,97,103,92,34,125,44,92,110,32,32,32,32,77,79,68,69,95,83,80,65,67,69,32,61,32,123,110,97,109,101,58,32,92,34,115,112,97,99,101,92,34,125,44,92,110,32,32,32,32,77,79,68,69,95,72,65,78,68,76,69,32,61,32,123,110,97,109,101,58,32,92,34,104,97,110,100,108,101,92,34,125,44,92,110,32,32,32,32,77,79,68,69,95,67,69,78,84,69,82,32,61,32,123,110,97,109,101,58,32,92,34,99,101,110,116,101,114,92,34,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,110,117,109,98,101,114,49,40,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,43,101,91,48,93,44,32,43,101,91,49,93,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,117,109,98,101,114,50,40,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,110,117,109,98,101,114,49,40,101,91,48,93,41,44,32,110,117,109,98,101,114,49,40,101,91,49,93,41,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,111,117,99,104,101,114,40,105,100,101,110,116,105,102,105,101,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,97,114,103,101,116,44,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,116,111,117,99,104,101,115,44,32,105,100,101,110,116,105,102,105,101,114,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,118,97,114,32,88,32,61,32,123,92,110,32,32,110,97,109,101,58,32,92,34,120,92,34,44,92,110,32,32,104,97,110,100,108,101,115,58,32,91,92,34,119,92,34,44,32,92,34,101,92,34,93,46,109,97,112,40,116,121,112,101,41,44,92,110,32,32,105,110,112,117,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,101,41,32,123,32,114,101,116,117,114,110,32,120,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,91,91,43,120,91,48,93,44,32,101,91,48,93,91,49,93,93,44,32,91,43,120,91,49,93,44,32,101,91,49,93,91,49,93,93,93,59,32,125,44,92,110,32,32,111,117,116,112,117,116,58,32,102,117,110,99,116,105,111,110,40,120,121,41,32,123,32,114,101,116,117,114,110,32,120,121,32,38,38,32,91,120,121,91,48,93,91,48,93,44,32,120,121,91,49,93,91,48,93,93,59,32,125,92,110,125,59,92,110,92,110,118,97,114,32,89,32,61,32,123,92,110,32,32,110,97,109,101,58,32,92,34,121,92,34,44,92,110,32,32,104,97,110,100,108,101,115,58,32,91,92,34,110,92,34,44,32,92,34,115,92,34,93,46,109,97,112,40,116,121,112,101,41,44,92,110,32,32,105,110,112,117,116,58,32,102,117,110,99,116,105,111,110,40,121,44,32,101,41,32,123,32,114,101,116,117,114,110,32,121,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,91,91,101,91,48,93,91,48,93,44,32,43,121,91,48,93,93,44,32,91,101,91,49,93,91,48,93,44,32,43,121,91,49,93,93,93,59,32,125,44,92,110,32,32,111,117,116,112,117,116,58,32,102,117,110,99,116,105,111,110,40,120,121,41,32,123,32,114,101,116,117,114,110,32,120,121,32,38,38,32,91,120,121,91,48,93,91,49,93,44,32,120,121,91,49,93,91,49,93,93,59,32,125,92,110,125,59,92,110,92,110,118,97,114,32,88,89,32,61,32,123,92,110,32,32,110,97,109,101,58,32,92,34,120,121,92,34,44,92,110,32,32,104,97,110,100,108,101,115,58,32,91,92,34,110,92,34,44,32,92,34,119,92,34,44,32,92,34,101,92,34,44,32,92,34,115,92,34,44,32,92,34,110,119,92,34,44,32,92,34,110,101,92,34,44,32,92,34,115,119,92,34,44,32,92,34,115,101,92,34,93,46,109,97,112,40,116,121,112,101,41,44,92,110,32,32,105,110,112,117,116,58,32,102,117,110,99,116,105,111,110,40,120,121,41,32,123,32,114,101,116,117,114,110,32,120,121,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,110,117,109,98,101,114,50,40,120,121,41,59,32,125,44,92,110,32,32,111,117,116,112,117,116,58,32,102,117,110,99,116,105,111,110,40,120,121,41,32,123,32,114,101,116,117,114,110,32,120,121,59,32,125,92,110,125,59,92,110,92,110,118,97,114,32,99,117,114,115,111,114,115,32,61,32,123,92,110,32,32,111,118,101,114,108,97,121,58,32,92,34,99,114,111,115,115,104,97,105,114,92,34,44,92,110,32,32,115,101,108,101,99,116,105,111,110,58,32,92,34,109,111,118,101,92,34,44,92,110,32,32,110,58,32,92,34,110,115,45,114,101,115,105,122,101,92,34,44,92,110,32,32,101,58,32,92,34,101,119,45,114,101,115,105,122,101,92,34,44,92,110,32,32,115,58,32,92,34,110,115,45,114,101,115,105,122,101,92,34,44,92,110,32,32,119,58,32,92,34,101,119,45,114,101,115,105,122,101,92,34,44,92,110,32,32,110,119,58,32,92,34,110,119,115,101,45,114,101,115,105,122,101,92,34,44,92,110,32,32,110,101,58,32,92,34,110,101,115,119,45,114,101,115,105,122,101,92,34,44,92,110,32,32,115,101,58,32,92,34,110,119,115,101,45,114,101,115,105,122,101,92,34,44,92,110,32,32,115,119,58,32,92,34,110,101,115,119,45,114,101,115,105,122,101,92,34,92,110,125,59,92,110,92,110,118,97,114,32,102,108,105,112,88,32,61,32,123,92,110,32,32,101,58,32,92,34,119,92,34,44,92,110,32,32,119,58,32,92,34,101,92,34,44,92,110,32,32,110,119,58,32,92,34,110,101,92,34,44,92,110,32,32,110,101,58,32,92,34,110,119,92,34,44,92,110,32,32,115,101,58,32,92,34,115,119,92,34,44,92,110,32,32,115,119,58,32,92,34,115,101,92,34,92,110,125,59,92,110,92,110,118,97,114,32,102,108,105,112,89,32,61,32,123,92,110,32,32,110,58,32,92,34,115,92,34,44,92,110,32,32,115,58,32,92,34,110,92,34,44,92,110,32,32,110,119,58,32,92,34,115,119,92,34,44,92,110,32,32,110,101,58,32,92,34,115,101,92,34,44,92,110,32,32,115,101,58,32,92,34,110,101,92,34,44,92,110,32,32,115,119,58,32,92,34,110,119,92,34,92,110,125,59,92,110,92,110,118,97,114,32,115,105,103,110,115,88,32,61,32,123,92,110,32,32,111,118,101,114,108,97,121,58,32,43,49,44,92,110,32,32,115,101,108,101,99,116,105,111,110,58,32,43,49,44,92,110,32,32,110,58,32,110,117,108,108,44,92,110,32,32,101,58,32,43,49,44,92,110,32,32,115,58,32,110,117,108,108,44,92,110,32,32,119,58,32,45,49,44,92,110,32,32,110,119,58,32,45,49,44,92,110,32,32,110,101,58,32,43,49,44,92,110,32,32,115,101,58,32,43,49,44,92,110,32,32,115,119,58,32,45,49,92,110,125,59,92,110,92,110,118,97,114,32,115,105,103,110,115,89,32,61,32,123,92,110,32,32,111,118,101,114,108,97,121,58,32,43,49,44,92,110,32,32,115,101,108,101,99,116,105,111,110,58,32,43,49,44,92,110,32,32,110,58,32,45,49,44,92,110,32,32,101,58,32,110,117,108,108,44,92,110,32,32,115,58,32,43,49,44,92,110,32,32,119,58,32,110,117,108,108,44,92,110,32,32,110,119,58,32,45,49,44,92,110,32,32,110,101,58,32,45,49,44,92,110,32,32,115,101,58,32,43,49,44,92,110,32,32,115,119,58,32,43,49,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,116,121,112,101,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,116,121,112,101,58,32,116,125,59,92,110,125,92,110,92,110,47,47,32,73,103,110,111,114,101,32,114,105,103,104,116,45,99,108,105,99,107,44,32,115,105,110,99,101,32,116,104,97,116,32,115,104,111,117,108,100,32,111,112,101,110,32,116,104,101,32,99,111,110,116,101,120,116,32,109,101,110,117,46,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,70,105,108,116,101,114,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,99,116,114,108,75,101,121,32,38,38,32,33,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,98,117,116,116,111,110,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,69,120,116,101,110,116,40,41,32,123,92,110,32,32,118,97,114,32,115,118,103,32,61,32,116,104,105,115,46,111,119,110,101,114,83,86,71,69,108,101,109,101,110,116,32,124,124,32,116,104,105,115,59,92,110,32,32,105,102,32,40,115,118,103,46,104,97,115,65,116,116,114,105,98,117,116,101,40,92,34,118,105,101,119,66,111,120,92,34,41,41,32,123,92,110,32,32,32,32,115,118,103,32,61,32,115,118,103,46,118,105,101,119,66,111,120,46,98,97,115,101,86,97,108,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,91,115,118,103,46,120,44,32,115,118,103,46,121,93,44,32,91,115,118,103,46,120,32,43,32,115,118,103,46,119,105,100,116,104,44,32,115,118,103,46,121,32,43,32,115,118,103,46,104,101,105,103,104,116,93,93,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,91,91,48,44,32,48,93,44,32,91,115,118,103,46,119,105,100,116,104,46,98,97,115,101,86,97,108,46,118,97,108,117,101,44,32,115,118,103,46,104,101,105,103,104,116,46,98,97,115,101,86,97,108,46,118,97,108,117,101,93,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,84,111,117,99,104,97,98,108,101,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,32,124,124,32,40,92,34,111,110,116,111,117,99,104,115,116,97,114,116,92,34,32,105,110,32,116,104,105,115,41,59,92,110,125,92,110,92,110,47,47,32,76,105,107,101,32,100,51,46,108,111,99,97,108,44,32,98,117,116,32,119,105,116,104,32,116,104,101,32,110,97,109,101,32,226,128,156,95,95,98,114,117,115,104,226,128,157,32,114,97,116,104,101,114,32,116,104,97,110,32,97,117,116,111,45,103,101,110,101,114,97,116,101,100,46,92,110,102,117,110,99,116,105,111,110,32,108,111,99,97,108,40,110,111,100,101,41,32,123,92,110,32,32,119,104,105,108,101,32,40,33,110,111,100,101,46,95,95,98,114,117,115,104,41,32,105,102,32,40,33,40,110,111,100,101,32,61,32,110,111,100,101,46,112,97,114,101,110,116,78,111,100,101,41,41,32,114,101,116,117,114,110,59,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,46,95,95,98,114,117,115,104,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,109,112,116,121,40,101,120,116,101,110,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,120,116,101,110,116,91,48,93,91,48,93,32,61,61,61,32,101,120,116,101,110,116,91,49,93,91,48,93,92,110,32,32,32,32,32,32,124,124,32,101,120,116,101,110,116,91,48,93,91,49,93,32,61,61,61,32,101,120,116,101,110,116,91,49,93,91,49,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,114,117,115,104,83,101,108,101,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,115,116,97,116,101,32,61,32,110,111,100,101,46,95,95,98,114,117,115,104,59,92,110,32,32,114,101,116,117,114,110,32,115,116,97,116,101,32,63,32,115,116,97,116,101,46,100,105,109,46,111,117,116,112,117,116,40,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,41,32,58,32,110,117,108,108,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,114,117,115,104,88,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,98,114,117,115,104,40,88,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,114,117,115,104,89,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,98,114,117,115,104,40,89,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,98,114,117,115,104,40,88,89,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,114,117,115,104,40,100,105,109,41,32,123,92,110,32,32,118,97,114,32,101,120,116,101,110,116,32,61,32,100,101,102,97,117,108,116,69,120,116,101,110,116,44,92,110,32,32,32,32,32,32,102,105,108,116,101,114,32,61,32,100,101,102,97,117,108,116,70,105,108,116,101,114,44,92,110,32,32,32,32,32,32,116,111,117,99,104,97,98,108,101,32,61,32,100,101,102,97,117,108,116,84,111,117,99,104,97,98,108,101,44,92,110,32,32,32,32,32,32,107,101,121,115,32,61,32,116,114,117,101,44,92,110,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,32,61,32,40,48,44,100,51,95,100,105,115,112,97,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,115,116,97,114,116,92,34,44,32,92,34,98,114,117,115,104,92,34,44,32,92,34,101,110,100,92,34,41,44,92,110,32,32,32,32,32,32,104,97,110,100,108,101,83,105,122,101,32,61,32,54,44,92,110,32,32,32,32,32,32,116,111,117,99,104,101,110,100,105,110,103,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,98,114,117,115,104,40,103,114,111,117,112,41,32,123,92,110,32,32,32,32,118,97,114,32,111,118,101,114,108,97,121,32,61,32,103,114,111,117,112,92,110,32,32,32,32,32,32,32,32,46,112,114,111,112,101,114,116,121,40,92,34,95,95,98,114,117,115,104,92,34,44,32,105,110,105,116,105,97,108,105,122,101,41,92,110,32,32,32,32,32,32,46,115,101,108,101,99,116,65,108,108,40,92,34,46,111,118,101,114,108,97,121,92,34,41,92,110,32,32,32,32,32,32,46,100,97,116,97,40,91,116,121,112,101,40,92,34,111,118,101,114,108,97,121,92,34,41,93,41,59,92,110,92,110,32,32,32,32,111,118,101,114,108,97,121,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,92,34,114,101,99,116,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,99,108,97,115,115,92,34,44,32,92,34,111,118,101,114,108,97,121,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,92,34,44,32,92,34,97,108,108,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,99,117,114,115,111,114,92,34,44,32,99,117,114,115,111,114,115,46,111,118,101,114,108,97,121,41,92,110,32,32,32,32,32,32,46,109,101,114,103,101,40,111,118,101,114,108,97,121,41,92,110,32,32,32,32,32,32,32,32,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,120,116,101,110,116,32,61,32,108,111,99,97,108,40,116,104,105,115,41,46,101,120,116,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,104,105,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,120,92,34,44,32,101,120,116,101,110,116,91,48,93,91,48,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,121,92,34,44,32,101,120,116,101,110,116,91,48,93,91,49,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,119,105,100,116,104,92,34,44,32,101,120,116,101,110,116,91,49,93,91,48,93,32,45,32,101,120,116,101,110,116,91,48,93,91,48,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,104,101,105,103,104,116,92,34,44,32,101,120,116,101,110,116,91,49,93,91,49,93,32,45,32,101,120,116,101,110,116,91,48,93,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,103,114,111,117,112,46,115,101,108,101,99,116,65,108,108,40,92,34,46,115,101,108,101,99,116,105,111,110,92,34,41,92,110,32,32,32,32,32,32,46,100,97,116,97,40,91,116,121,112,101,40,92,34,115,101,108,101,99,116,105,111,110,92,34,41,93,41,92,110,32,32,32,32,32,32,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,92,34,114,101,99,116,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,99,108,97,115,115,92,34,44,32,92,34,115,101,108,101,99,116,105,111,110,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,99,117,114,115,111,114,92,34,44,32,99,117,114,115,111,114,115,46,115,101,108,101,99,116,105,111,110,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,102,105,108,108,92,34,44,32,92,34,35,55,55,55,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,102,105,108,108,45,111,112,97,99,105,116,121,92,34,44,32,48,46,51,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,115,116,114,111,107,101,92,34,44,32,92,34,35,102,102,102,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,115,104,97,112,101,45,114,101,110,100,101,114,105,110,103,92,34,44,32,92,34,99,114,105,115,112,69,100,103,101,115,92,34,41,59,92,110,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,32,61,32,103,114,111,117,112,46,115,101,108,101,99,116,65,108,108,40,92,34,46,104,97,110,100,108,101,92,34,41,92,110,32,32,32,32,32,32,46,100,97,116,97,40,100,105,109,46,104,97,110,100,108,101,115,44,32,102,117,110,99,116,105,111,110,40,100,41,32,123,32,114,101,116,117,114,110,32,100,46,116,121,112,101,59,32,125,41,59,92,110,92,110,32,32,32,32,104,97,110,100,108,101,46,101,120,105,116,40,41,46,114,101,109,111,118,101,40,41,59,92,110,92,110,32,32,32,32,104,97,110,100,108,101,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,92,34,114,101,99,116,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,99,108,97,115,115,92,34,44,32,102,117,110,99,116,105,111,110,40,100,41,32,123,32,114,101,116,117,114,110,32,92,34,104,97,110,100,108,101,32,104,97,110,100,108,101,45,45,92,34,32,43,32,100,46,116,121,112,101,59,32,125,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,99,117,114,115,111,114,92,34,44,32,102,117,110,99,116,105,111,110,40,100,41,32,123,32,114,101,116,117,114,110,32,99,117,114,115,111,114,115,91,100,46,116,121,112,101,93,59,32,125,41,59,92,110,92,110,32,32,32,32,103,114,111,117,112,92,110,32,32,32,32,32,32,32,32,46,101,97,99,104,40,114,101,100,114,97,119,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,102,105,108,108,92,34,44,32,92,34,110,111,110,101,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,92,34,44,32,92,34,97,108,108,92,34,41,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,109,111,117,115,101,100,111,119,110,46,98,114,117,115,104,92,34,44,32,115,116,97,114,116,101,100,41,92,110,32,32,32,32,32,32,46,102,105,108,116,101,114,40,116,111,117,99,104,97,98,108,101,41,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,116,111,117,99,104,115,116,97,114,116,46,98,114,117,115,104,92,34,44,32,115,116,97,114,116,101,100,41,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,116,111,117,99,104,109,111,118,101,46,98,114,117,115,104,92,34,44,32,116,111,117,99,104,109,111,118,101,100,41,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,116,111,117,99,104,101,110,100,46,98,114,117,115,104,32,116,111,117,99,104,99,97,110,99,101,108,46,98,114,117,115,104,92,34,44,32,116,111,117,99,104,101,110,100,101,100,41,92,110,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,92,34,116,111,117,99,104,45,97,99,116,105,111,110,92,34,44,32,92,34,110,111,110,101,92,34,41,92,110,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,92,34,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,92,34,44,32,92,34,114,103,98,97,40,48,44,48,44,48,44,48,41,92,34,41,59,92,110,32,32,125,92,110,92,110,32,32,98,114,117,115,104,46,109,111,118,101,32,61,32,102,117,110,99,116,105,111,110,40,103,114,111,117,112,44,32,115,101,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,105,102,32,40,103,114,111,117,112,46,115,101,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,92,110,32,32,32,32,32,32,32,32,32,32,46,111,110,40,92,34,115,116,97,114,116,46,98,114,117,115,104,92,34,44,32,102,117,110,99,116,105,111,110,40,41,32,123,32,101,109,105,116,116,101,114,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,46,98,101,102,111,114,101,115,116,97,114,116,40,41,46,115,116,97,114,116,40,41,59,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,46,111,110,40,92,34,105,110,116,101,114,114,117,112,116,46,98,114,117,115,104,32,101,110,100,46,98,114,117,115,104,92,34,44,32,102,117,110,99,116,105,111,110,40,41,32,123,32,101,109,105,116,116,101,114,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,46,101,110,100,40,41,59,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,46,116,119,101,101,110,40,92,34,98,114,117,115,104,92,34,44,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,104,97,116,32,61,32,116,104,105,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,101,32,61,32,116,104,97,116,46,95,95,98,114,117,115,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,109,105,116,32,61,32,101,109,105,116,116,101,114,40,116,104,97,116,44,32,97,114,103,117,109,101,110,116,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,48,32,61,32,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,49,32,61,32,100,105,109,46,105,110,112,117,116,40,116,121,112,101,111,102,32,115,101,108,101,99,116,105,111,110,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,115,101,108,101,99,116,105,111,110,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,58,32,115,101,108,101,99,116,105,111,110,44,32,115,116,97,116,101,46,101,120,116,101,110,116,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,32,61,32,40,48,44,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,101,108,101,99,116,105,111,110,48,44,32,115,101,108,101,99,116,105,111,110,49,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,116,119,101,101,110,40,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,32,61,32,116,32,61,61,61,32,49,32,38,38,32,115,101,108,101,99,116,105,111,110,49,32,61,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,105,40,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,100,114,97,119,46,99,97,108,108,40,116,104,97,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,109,105,116,46,98,114,117,115,104,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,101,108,101,99,116,105,111,110,48,32,33,61,61,32,110,117,108,108,32,38,38,32,115,101,108,101,99,116,105,111,110,49,32,33,61,61,32,110,117,108,108,32,63,32,116,119,101,101,110,32,58,32,116,119,101,101,110,40,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,92,110,32,32,32,32,32,32,32,32,32,32,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,104,97,116,32,61,32,116,104,105,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,101,32,61,32,116,104,97,116,46,95,95,98,114,117,115,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,49,32,61,32,100,105,109,46,105,110,112,117,116,40,116,121,112,101,111,102,32,115,101,108,101,99,116,105,111,110,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,115,101,108,101,99,116,105,111,110,46,97,112,112,108,121,40,116,104,97,116,44,32,97,114,103,115,41,32,58,32,115,101,108,101,99,116,105,111,110,44,32,115,116,97,116,101,46,101,120,116,101,110,116,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,109,105,116,32,61,32,101,109,105,116,116,101,114,40,116,104,97,116,44,32,97,114,103,115,41,46,98,101,102,111,114,101,115,116,97,114,116,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,100,51,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,114,117,112,116,41,40,116,104,97,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,32,61,32,115,101,108,101,99,116,105,111,110,49,32,61,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,115,101,108,101,99,116,105,111,110,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,100,114,97,119,46,99,97,108,108,40,116,104,97,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,109,105,116,46,115,116,97,114,116,40,41,46,98,114,117,115,104,40,41,46,101,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,98,114,117,115,104,46,99,108,101,97,114,32,61,32,102,117,110,99,116,105,111,110,40,103,114,111,117,112,41,32,123,92,110,32,32,32,32,98,114,117,115,104,46,109,111,118,101,40,103,114,111,117,112,44,32,110,117,108,108,41,59,92,110,32,32,125,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,100,114,97,119,40,41,32,123,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,104,105,115,41,44,92,110,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,32,61,32,108,111,99,97,108,40,116,104,105,115,41,46,115,101,108,101,99,116,105,111,110,59,92,110,92,110,32,32,32,32,105,102,32,40,115,101,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,46,115,101,108,101,99,116,65,108,108,40,92,34,46,115,101,108,101,99,116,105,111,110,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,92,34,100,105,115,112,108,97,121,92,34,44,32,110,117,108,108,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,120,92,34,44,32,115,101,108,101,99,116,105,111,110,91,48,93,91,48,93,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,121,92,34,44,32,115,101,108,101,99,116,105,111,110,91,48,93,91,49,93,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,119,105,100,116,104,92,34,44,32,115,101,108,101,99,116,105,111,110,91,49,93,91,48,93,32,45,32,115,101,108,101,99,116,105,111,110,91,48,93,91,48,93,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,104,101,105,103,104,116,92,34,44,32,115,101,108,101,99,116,105,111,110,91,49,93,91,49,93,32,45,32,115,101,108,101,99,116,105,111,110,91,48,93,91,49,93,41,59,92,110,92,110,32,32,32,32,32,32,103,114,111,117,112,46,115,101,108,101,99,116,65,108,108,40,92,34,46,104,97,110,100,108,101,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,92,34,100,105,115,112,108,97,121,92,34,44,32,110,117,108,108,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,120,92,34,44,32,102,117,110,99,116,105,111,110,40,100,41,32,123,32,114,101,116,117,114,110,32,100,46,116,121,112,101,91,100,46,116,121,112,101,46,108,101,110,103,116,104,32,45,32,49,93,32,61,61,61,32,92,34,101,92,34,32,63,32,115,101,108,101,99,116,105,111,110,91,49,93,91,48,93,32,45,32,104,97,110,100,108,101,83,105,122,101,32,47,32,50,32,58,32,115,101,108,101,99,116,105,111,110,91,48,93,91,48,93,32,45,32,104,97,110,100,108,101,83,105,122,101,32,47,32,50,59,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,121,92,34,44,32,102,117,110,99,116,105,111,110,40,100,41,32,123,32,114,101,116,117,114,110,32,100,46,116,121,112,101,91,48,93,32,61,61,61,32,92,34,115,92,34,32,63,32,115,101,108,101,99,116,105,111,110,91,49,93,91,49,93,32,45,32,104,97,110,100,108,101,83,105,122,101,32,47,32,50,32,58,32,115,101,108,101,99,116,105,111,110,91,48,93,91,49,93,32,45,32,104,97,110,100,108,101,83,105,122,101,32,47,32,50,59,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,119,105,100,116,104,92,34,44,32,102,117,110,99,116,105,111,110,40,100,41,32,123,32,114,101,116,117,114,110,32,100,46,116,121,112,101,32,61,61,61,32,92,34,110,92,34,32,124,124,32,100,46,116,121,112,101,32,61,61,61,32,92,34,115,92,34,32,63,32,115,101,108,101,99,116,105,111,110,91,49,93,91,48,93,32,45,32,115,101,108,101,99,116,105,111,110,91,48,93,91,48,93,32,43,32,104,97,110,100,108,101,83,105,122,101,32,58,32,104,97,110,100,108,101,83,105,122,101,59,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,104,101,105,103,104,116,92,34,44,32,102,117,110,99,116,105,111,110,40,100,41,32,123,32,114,101,116,117,114,110,32,100,46,116,121,112,101,32,61,61,61,32,92,34,101,92,34,32,124,124,32,100,46,116,121,112,101,32,61,61,61,32,92,34,119,92,34,32,63,32,115,101,108,101,99,116,105,111,110,91,49,93,91,49,93,32,45,32,115,101,108,101,99,116,105,111,110,91,48,93,91,49,93,32,43,32,104,97,110,100,108,101,83,105,122,101,32,58,32,104,97,110,100,108,101,83,105,122,101,59,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,103,114,111,117,112,46,115,101,108,101,99,116,65,108,108,40,92,34,46,115,101,108,101,99,116,105,111,110,44,46,104,97,110,100,108,101,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,92,34,100,105,115,112,108,97,121,92,34,44,32,92,34,110,111,110,101,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,120,92,34,44,32,110,117,108,108,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,121,92,34,44,32,110,117,108,108,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,119,105,100,116,104,92,34,44,32,110,117,108,108,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,104,101,105,103,104,116,92,34,44,32,110,117,108,108,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,101,109,105,116,116,101,114,40,116,104,97,116,44,32,97,114,103,115,44,32,99,108,101,97,110,41,32,123,92,110,32,32,32,32,118,97,114,32,101,109,105,116,32,61,32,116,104,97,116,46,95,95,98,114,117,115,104,46,101,109,105,116,116,101,114,59,92,110,32,32,32,32,114,101,116,117,114,110,32,101,109,105,116,32,38,38,32,40,33,99,108,101,97,110,32,124,124,32,33,101,109,105,116,46,99,108,101,97,110,41,32,63,32,101,109,105,116,32,58,32,110,101,119,32,69,109,105,116,116,101,114,40,116,104,97,116,44,32,97,114,103,115,44,32,99,108,101,97,110,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,69,109,105,116,116,101,114,40,116,104,97,116,44,32,97,114,103,115,44,32,99,108,101,97,110,41,32,123,92,110,32,32,32,32,116,104,105,115,46,116,104,97,116,32,61,32,116,104,97,116,59,92,110,32,32,32,32,116,104,105,115,46,97,114,103,115,32,61,32,97,114,103,115,59,92,110,32,32,32,32,116,104,105,115,46,115,116,97,116,101,32,61,32,116,104,97,116,46,95,95,98,114,117,115,104,59,92,110,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,110,32,61,32,99,108,101,97,110,59,92,110,32,32,125,92,110,92,110,32,32,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,32,32,98,101,102,111,114,101,115,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,43,43,116,104,105,115,46,97,99,116,105,118,101,32,61,61,61,32,49,41,32,116,104,105,115,46,115,116,97,116,101,46,101,109,105,116,116,101,114,32,61,32,116,104,105,115,44,32,116,104,105,115,46,115,116,97,114,116,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,115,116,97,114,116,105,110,103,41,32,116,104,105,115,46,115,116,97,114,116,105,110,103,32,61,32,102,97,108,115,101,44,32,116,104,105,115,46,101,109,105,116,40,92,34,115,116,97,114,116,92,34,41,59,92,110,32,32,32,32,32,32,101,108,115,101,32,116,104,105,115,46,101,109,105,116,40,92,34,98,114,117,115,104,92,34,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,114,117,115,104,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,40,92,34,98,114,117,115,104,92,34,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,45,45,116,104,105,115,46,97,99,116,105,118,101,32,61,61,61,32,48,41,32,100,101,108,101,116,101,32,116,104,105,115,46,115,116,97,116,101,46,101,109,105,116,116,101,114,44,32,116,104,105,115,46,101,109,105,116,40,92,34,101,110,100,92,34,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,109,105,116,58,32,102,117,110,99,116,105,111,110,40,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,99,117,115,116,111,109,69,118,101,110,116,41,40,110,101,119,32,95,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,98,114,117,115,104,44,32,116,121,112,101,44,32,100,105,109,46,111,117,116,112,117,116,40,116,104,105,115,46,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,41,41,44,32,108,105,115,116,101,110,101,114,115,46,97,112,112,108,121,44,32,108,105,115,116,101,110,101,114,115,44,32,91,116,121,112,101,44,32,116,104,105,115,46,116,104,97,116,44,32,116,104,105,115,46,97,114,103,115,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,116,97,114,116,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,111,117,99,104,101,110,100,105,110,103,32,38,38,32,33,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,116,111,117,99,104,101,115,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,33,102,105,108,116,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,118,97,114,32,116,104,97,116,32,61,32,116,104,105,115,44,92,110,32,32,32,32,32,32,32,32,116,121,112,101,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,116,97,114,103,101,116,46,95,95,100,97,116,97,95,95,46,116,121,112,101,44,92,110,32,32,32,32,32,32,32,32,109,111,100,101,32,61,32,40,107,101,121,115,32,38,38,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,109,101,116,97,75,101,121,32,63,32,116,121,112,101,32,61,32,92,34,111,118,101,114,108,97,121,92,34,32,58,32,116,121,112,101,41,32,61,61,61,32,92,34,115,101,108,101,99,116,105,111,110,92,34,32,63,32,77,79,68,69,95,68,82,65,71,32,58,32,40,107,101,121,115,32,38,38,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,97,108,116,75,101,121,32,63,32,77,79,68,69,95,67,69,78,84,69,82,32,58,32,77,79,68,69,95,72,65,78,68,76,69,41,44,92,110,32,32,32,32,32,32,32,32,115,105,103,110,88,32,61,32,100,105,109,32,61,61,61,32,89,32,63,32,110,117,108,108,32,58,32,115,105,103,110,115,88,91,116,121,112,101,93,44,92,110,32,32,32,32,32,32,32,32,115,105,103,110,89,32,61,32,100,105,109,32,61,61,61,32,88,32,63,32,110,117,108,108,32,58,32,115,105,103,110,115,89,91,116,121,112,101,93,44,92,110,32,32,32,32,32,32,32,32,115,116,97,116,101,32,61,32,108,111,99,97,108,40,116,104,97,116,41,44,92,110,32,32,32,32,32,32,32,32,101,120,116,101,110,116,32,61,32,115,116,97,116,101,46,101,120,116,101,110,116,44,92,110,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,32,61,32,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,87,32,61,32,101,120,116,101,110,116,91,48,93,91,48,93,44,32,119,48,44,32,119,49,44,92,110,32,32,32,32,32,32,32,32,78,32,61,32,101,120,116,101,110,116,91,48,93,91,49,93,44,32,110,48,44,32,110,49,44,92,110,32,32,32,32,32,32,32,32,69,32,61,32,101,120,116,101,110,116,91,49,93,91,48,93,44,32,101,48,44,32,101,49,44,92,110,32,32,32,32,32,32,32,32,83,32,61,32,101,120,116,101,110,116,91,49,93,91,49,93,44,32,115,48,44,32,115,49,44,92,110,32,32,32,32,32,32,32,32,100,120,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,100,121,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,109,111,118,105,110,103,44,92,110,32,32,32,32,32,32,32,32,115,104,105,102,116,105,110,103,32,61,32,115,105,103,110,88,32,38,38,32,115,105,103,110,89,32,38,38,32,107,101,121,115,32,38,38,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,115,104,105,102,116,75,101,121,44,92,110,32,32,32,32,32,32,32,32,108,111,99,107,88,44,92,110,32,32,32,32,32,32,32,32,108,111,99,107,89,44,92,110,32,32,32,32,32,32,32,32,112,111,105,110,116,101,114,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,116,111,117,99,104,101,115,32,63,32,116,111,117,99,104,101,114,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,91,48,93,46,105,100,101,110,116,105,102,105,101,114,41,32,58,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,32,32,32,32,112,111,105,110,116,48,32,61,32,112,111,105,110,116,101,114,40,116,104,97,116,41,44,92,110,32,32,32,32,32,32,32,32,112,111,105,110,116,32,61,32,112,111,105,110,116,48,44,92,110,32,32,32,32,32,32,32,32,101,109,105,116,32,61,32,101,109,105,116,116,101,114,40,116,104,97,116,44,32,97,114,103,117,109,101,110,116,115,44,32,116,114,117,101,41,46,98,101,102,111,114,101,115,116,97,114,116,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,92,34,111,118,101,114,108,97,121,92,34,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,105,111,110,41,32,109,111,118,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,32,61,32,115,101,108,101,99,116,105,111,110,32,61,32,91,92,110,32,32,32,32,32,32,32,32,91,119,48,32,61,32,100,105,109,32,61,61,61,32,89,32,63,32,87,32,58,32,112,111,105,110,116,48,91,48,93,44,32,110,48,32,61,32,100,105,109,32,61,61,61,32,88,32,63,32,78,32,58,32,112,111,105,110,116,48,91,49,93,93,44,92,110,32,32,32,32,32,32,32,32,91,101,48,32,61,32,100,105,109,32,61,61,61,32,89,32,63,32,69,32,58,32,119,48,44,32,115,48,32,61,32,100,105,109,32,61,61,61,32,88,32,63,32,83,32,58,32,110,48,93,92,110,32,32,32,32,32,32,93,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,119,48,32,61,32,115,101,108,101,99,116,105,111,110,91,48,93,91,48,93,59,92,110,32,32,32,32,32,32,110,48,32,61,32,115,101,108,101,99,116,105,111,110,91,48,93,91,49,93,59,92,110,32,32,32,32,32,32,101,48,32,61,32,115,101,108,101,99,116,105,111,110,91,49,93,91,48,93,59,92,110,32,32,32,32,32,32,115,48,32,61,32,115,101,108,101,99,116,105,111,110,91,49,93,91,49,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,119,49,32,61,32,119,48,59,92,110,32,32,32,32,110,49,32,61,32,110,48,59,92,110,32,32,32,32,101,49,32,61,32,101,48,59,92,110,32,32,32,32,115,49,32,61,32,115,48,59,92,110,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,104,97,116,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,92,34,44,32,92,34,110,111,110,101,92,34,41,59,92,110,92,110,32,32,32,32,118,97,114,32,111,118,101,114,108,97,121,32,61,32,103,114,111,117,112,46,115,101,108,101,99,116,65,108,108,40,92,34,46,111,118,101,114,108,97,121,92,34,41,92,110,32,32,32,32,32,32,32,32,46,97,116,116,114,40,92,34,99,117,114,115,111,114,92,34,44,32,99,117,114,115,111,114,115,91,116,121,112,101,93,41,59,92,110,92,110,32,32,32,32,105,102,32,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,116,111,117,99,104,101,115,41,32,123,92,110,32,32,32,32,32,32,101,109,105,116,46,109,111,118,101,100,32,61,32,109,111,118,101,100,59,92,110,32,32,32,32,32,32,101,109,105,116,46,101,110,100,101,100,32,61,32,101,110,100,101,100,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,105,101,119,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,118,105,101,119,41,92,110,32,32,32,32,32,32,32,32,32,32,46,111,110,40,92,34,109,111,117,115,101,109,111,118,101,46,98,114,117,115,104,92,34,44,32,109,111,118,101,100,44,32,116,114,117,101,41,92,110,32,32,32,32,32,32,32,32,32,32,46,111,110,40,92,34,109,111,117,115,101,117,112,46,98,114,117,115,104,92,34,44,32,101,110,100,101,100,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,115,41,32,118,105,101,119,92,110,32,32,32,32,32,32,32,32,32,32,46,111,110,40,92,34,107,101,121,100,111,119,110,46,98,114,117,115,104,92,34,44,32,107,101,121,100,111,119,110,101,100,44,32,116,114,117,101,41,92,110,32,32,32,32,32,32,32,32,32,32,46,111,110,40,92,34,107,101,121,117,112,46,98,114,117,115,104,92,34,44,32,107,101,121,117,112,112,101,100,44,32,116,114,117,101,41,92,110,92,110,32,32,32,32,32,32,59,40,48,44,100,51,95,100,114,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,118,105,101,119,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,110,111,112,114,111,112,97,103,97,116,105,111,110,41,40,41,59,92,110,32,32,32,32,40,48,44,100,51,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,114,117,112,116,41,40,116,104,97,116,41,59,92,110,32,32,32,32,114,101,100,114,97,119,46,99,97,108,108,40,116,104,97,116,41,59,92,110,32,32,32,32,101,109,105,116,46,115,116,97,114,116,40,41,59,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,118,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,111,105,110,116,49,32,61,32,112,111,105,110,116,101,114,40,116,104,97,116,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,104,105,102,116,105,110,103,32,38,38,32,33,108,111,99,107,88,32,38,38,32,33,108,111,99,107,89,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,77,97,116,104,46,97,98,115,40,112,111,105,110,116,49,91,48,93,32,45,32,112,111,105,110,116,91,48,93,41,32,62,32,77,97,116,104,46,97,98,115,40,112,111,105,110,116,49,91,49,93,32,45,32,112,111,105,110,116,91,49,93,41,41,32,108,111,99,107,89,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,108,111,99,107,88,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,112,111,105,110,116,32,61,32,112,111,105,110,116,49,59,92,110,32,32,32,32,32,32,109,111,118,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,32,32,32,32,109,111,118,101,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,118,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,59,92,110,92,110,32,32,32,32,32,32,100,120,32,61,32,112,111,105,110,116,91,48,93,32,45,32,112,111,105,110,116,48,91,48,93,59,92,110,32,32,32,32,32,32,100,121,32,61,32,112,111,105,110,116,91,49,93,32,45,32,112,111,105,110,116,48,91,49,93,59,92,110,92,110,32,32,32,32,32,32,115,119,105,116,99,104,32,40,109,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,77,79,68,69,95,83,80,65,67,69,58,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,77,79,68,69,95,68,82,65,71,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,88,41,32,100,120,32,61,32,77,97,116,104,46,109,97,120,40,87,32,45,32,119,48,44,32,77,97,116,104,46,109,105,110,40,69,32,45,32,101,48,44,32,100,120,41,41,44,32,119,49,32,61,32,119,48,32,43,32,100,120,44,32,101,49,32,61,32,101,48,32,43,32,100,120,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,89,41,32,100,121,32,61,32,77,97,116,104,46,109,97,120,40,78,32,45,32,110,48,44,32,77,97,116,104,46,109,105,110,40,83,32,45,32,115,48,44,32,100,121,41,41,44,32,110,49,32,61,32,110,48,32,43,32,100,121,44,32,115,49,32,61,32,115,48,32,43,32,100,121,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,77,79,68,69,95,72,65,78,68,76,69,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,88,32,60,32,48,41,32,100,120,32,61,32,77,97,116,104,46,109,97,120,40,87,32,45,32,119,48,44,32,77,97,116,104,46,109,105,110,40,69,32,45,32,119,48,44,32,100,120,41,41,44,32,119,49,32,61,32,119,48,32,43,32,100,120,44,32,101,49,32,61,32,101,48,59,92,110,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,115,105,103,110,88,32,62,32,48,41,32,100,120,32,61,32,77,97,116,104,46,109,97,120,40,87,32,45,32,101,48,44,32,77,97,116,104,46,109,105,110,40,69,32,45,32,101,48,44,32,100,120,41,41,44,32,119,49,32,61,32,119,48,44,32,101,49,32,61,32,101,48,32,43,32,100,120,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,89,32,60,32,48,41,32,100,121,32,61,32,77,97,116,104,46,109,97,120,40,78,32,45,32,110,48,44,32,77,97,116,104,46,109,105,110,40,83,32,45,32,110,48,44,32,100,121,41,41,44,32,110,49,32,61,32,110,48,32,43,32,100,121,44,32,115,49,32,61,32,115,48,59,92,110,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,115,105,103,110,89,32,62,32,48,41,32,100,121,32,61,32,77,97,116,104,46,109,97,120,40,78,32,45,32,115,48,44,32,77,97,116,104,46,109,105,110,40,83,32,45,32,115,48,44,32,100,121,41,41,44,32,110,49,32,61,32,110,48,44,32,115,49,32,61,32,115,48,32,43,32,100,121,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,77,79,68,69,95,67,69,78,84,69,82,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,88,41,32,119,49,32,61,32,77,97,116,104,46,109,97,120,40,87,44,32,77,97,116,104,46,109,105,110,40,69,44,32,119,48,32,45,32,100,120,32,42,32,115,105,103,110,88,41,41,44,32,101,49,32,61,32,77,97,116,104,46,109,97,120,40,87,44,32,77,97,116,104,46,109,105,110,40,69,44,32,101,48,32,43,32,100,120,32,42,32,115,105,103,110,88,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,89,41,32,110,49,32,61,32,77,97,116,104,46,109,97,120,40,78,44,32,77,97,116,104,46,109,105,110,40,83,44,32,110,48,32,45,32,100,121,32,42,32,115,105,103,110,89,41,41,44,32,115,49,32,61,32,77,97,116,104,46,109,97,120,40,78,44,32,77,97,116,104,46,109,105,110,40,83,44,32,115,48,32,43,32,100,121,32,42,32,115,105,103,110,89,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,101,49,32,60,32,119,49,41,32,123,92,110,32,32,32,32,32,32,32,32,115,105,103,110,88,32,42,61,32,45,49,59,92,110,32,32,32,32,32,32,32,32,116,32,61,32,119,48,44,32,119,48,32,61,32,101,48,44,32,101,48,32,61,32,116,59,92,110,32,32,32,32,32,32,32,32,116,32,61,32,119,49,44,32,119,49,32,61,32,101,49,44,32,101,49,32,61,32,116,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,105,110,32,102,108,105,112,88,41,32,111,118,101,114,108,97,121,46,97,116,116,114,40,92,34,99,117,114,115,111,114,92,34,44,32,99,117,114,115,111,114,115,91,116,121,112,101,32,61,32,102,108,105,112,88,91,116,121,112,101,93,93,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,49,32,60,32,110,49,41,32,123,92,110,32,32,32,32,32,32,32,32,115,105,103,110,89,32,42,61,32,45,49,59,92,110,32,32,32,32,32,32,32,32,116,32,61,32,110,48,44,32,110,48,32,61,32,115,48,44,32,115,48,32,61,32,116,59,92,110,32,32,32,32,32,32,32,32,116,32,61,32,110,49,44,32,110,49,32,61,32,115,49,44,32,115,49,32,61,32,116,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,105,110,32,102,108,105,112,89,41,32,111,118,101,114,108,97,121,46,97,116,116,114,40,92,34,99,117,114,115,111,114,92,34,44,32,99,117,114,115,111,114,115,91,116,121,112,101,32,61,32,102,108,105,112,89,91,116,121,112,101,93,93,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,41,32,115,101,108,101,99,116,105,111,110,32,61,32,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,59,32,47,47,32,77,97,121,32,98,101,32,115,101,116,32,98,121,32,98,114,117,115,104,46,109,111,118,101,33,92,110,32,32,32,32,32,32,105,102,32,40,108,111,99,107,88,41,32,119,49,32,61,32,115,101,108,101,99,116,105,111,110,91,48,93,91,48,93,44,32,101,49,32,61,32,115,101,108,101,99,116,105,111,110,91,49,93,91,48,93,59,92,110,32,32,32,32,32,32,105,102,32,40,108,111,99,107,89,41,32,110,49,32,61,32,115,101,108,101,99,116,105,111,110,91,48,93,91,49,93,44,32,115,49,32,61,32,115,101,108,101,99,116,105,111,110,91,49,93,91,49,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,105,111,110,91,48,93,91,48,93,32,33,61,61,32,119,49,92,110,32,32,32,32,32,32,32,32,32,32,124,124,32,115,101,108,101,99,116,105,111,110,91,48,93,91,49,93,32,33,61,61,32,110,49,92,110,32,32,32,32,32,32,32,32,32,32,124,124,32,115,101,108,101,99,116,105,111,110,91,49,93,91,48,93,32,33,61,61,32,101,49,92,110,32,32,32,32,32,32,32,32,32,32,124,124,32,115,101,108,101,99,116,105,111,110,91,49,93,91,49,93,32,33,61,61,32,115,49,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,32,61,32,91,91,119,49,44,32,110,49,93,44,32,91,101,49,44,32,115,49,93,93,59,92,110,32,32,32,32,32,32,32,32,114,101,100,114,97,119,46,99,97,108,108,40,116,104,97,116,41,59,92,110,32,32,32,32,32,32,32,32,101,109,105,116,46,98,114,117,115,104,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,101,110,100,101,100,40,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,110,111,112,114,111,112,97,103,97,116,105,111,110,41,40,41,59,92,110,32,32,32,32,32,32,105,102,32,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,116,111,117,99,104,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,116,111,117,99,104,101,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,111,117,99,104,101,110,100,105,110,103,41,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,111,117,99,104,101,110,100,105,110,103,41,59,92,110,32,32,32,32,32,32,32,32,116,111,117,99,104,101,110,100,105,110,103,32,61,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,32,123,32,116,111,117,99,104,101,110,100,105,110,103,32,61,32,110,117,108,108,59,32,125,44,32,53,48,48,41,59,32,47,47,32,71,104,111,115,116,32,99,108,105,99,107,115,32,97,114,101,32,100,101,108,97,121,101,100,33,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,100,51,95,100,114,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,121,101,115,100,114,97,103,41,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,118,105,101,119,44,32,109,111,118,105,110,103,41,59,92,110,32,32,32,32,32,32,32,32,118,105,101,119,46,111,110,40,92,34,107,101,121,100,111,119,110,46,98,114,117,115,104,32,107,101,121,117,112,46,98,114,117,115,104,32,109,111,117,115,101,109,111,118,101,46,98,114,117,115,104,32,109,111,117,115,101,117,112,46,98,114,117,115,104,92,34,44,32,110,117,108,108,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,103,114,111,117,112,46,97,116,116,114,40,92,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,92,34,44,32,92,34,97,108,108,92,34,41,59,92,110,32,32,32,32,32,32,111,118,101,114,108,97,121,46,97,116,116,114,40,92,34,99,117,114,115,111,114,92,34,44,32,99,117,114,115,111,114,115,46,111,118,101,114,108,97,121,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,41,32,115,101,108,101,99,116,105,111,110,32,61,32,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,59,32,47,47,32,77,97,121,32,98,101,32,115,101,116,32,98,121,32,98,114,117,115,104,46,109,111,118,101,32,40,111,110,32,115,116,97,114,116,41,33,92,110,32,32,32,32,32,32,105,102,32,40,101,109,112,116,121,40,115,101,108,101,99,116,105,111,110,41,41,32,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,32,61,32,110,117,108,108,44,32,114,101,100,114,97,119,46,99,97,108,108,40,116,104,97,116,41,59,92,110,32,32,32,32,32,32,101,109,105,116,46,101,110,100,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,107,101,121,100,111,119,110,101,100,40,41,32,123,92,110,32,32,32,32,32,32,115,119,105,116,99,104,32,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,107,101,121,67,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,49,54,58,32,123,32,47,47,32,83,72,73,70,84,92,110,32,32,32,32,32,32,32,32,32,32,115,104,105,102,116,105,110,103,32,61,32,115,105,103,110,88,32,38,38,32,115,105,103,110,89,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,49,56,58,32,123,32,47,47,32,65,76,84,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,111,100,101,32,61,61,61,32,77,79,68,69,95,72,65,78,68,76,69,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,88,41,32,101,48,32,61,32,101,49,32,45,32,100,120,32,42,32,115,105,103,110,88,44,32,119,48,32,61,32,119,49,32,43,32,100,120,32,42,32,115,105,103,110,88,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,89,41,32,115,48,32,61,32,115,49,32,45,32,100,121,32,42,32,115,105,103,110,89,44,32,110,48,32,61,32,110,49,32,43,32,100,121,32,42,32,115,105,103,110,89,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,32,61,32,77,79,68,69,95,67,69,78,84,69,82,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,118,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,51,50,58,32,123,32,47,47,32,83,80,65,67,69,59,32,116,97,107,101,115,32,112,114,105,111,114,105,116,121,32,111,118,101,114,32,65,76,84,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,111,100,101,32,61,61,61,32,77,79,68,69,95,72,65,78,68,76,69,32,124,124,32,109,111,100,101,32,61,61,61,32,77,79,68,69,95,67,69,78,84,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,88,32,60,32,48,41,32,101,48,32,61,32,101,49,32,45,32,100,120,59,32,101,108,115,101,32,105,102,32,40,115,105,103,110,88,32,62,32,48,41,32,119,48,32,61,32,119,49,32,45,32,100,120,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,89,32,60,32,48,41,32,115,48,32,61,32,115,49,32,45,32,100,121,59,32,101,108,115,101,32,105,102,32,40,115,105,103,110,89,32,62,32,48,41,32,110,48,32,61,32,110,49,32,45,32,100,121,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,32,61,32,77,79,68,69,95,83,80,65,67,69,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,118,101,114,108,97,121,46,97,116,116,114,40,92,34,99,117,114,115,111,114,92,34,44,32,99,117,114,115,111,114,115,46,115,101,108,101,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,118,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,107,101,121,117,112,112,101,100,40,41,32,123,92,110,32,32,32,32,32,32,115,119,105,116,99,104,32,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,107,101,121,67,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,49,54,58,32,123,32,47,47,32,83,72,73,70,84,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,104,105,102,116,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,107,88,32,61,32,108,111,99,107,89,32,61,32,115,104,105,102,116,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,118,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,49,56,58,32,123,32,47,47,32,65,76,84,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,111,100,101,32,61,61,61,32,77,79,68,69,95,67,69,78,84,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,88,32,60,32,48,41,32,101,48,32,61,32,101,49,59,32,101,108,115,101,32,105,102,32,40,115,105,103,110,88,32,62,32,48,41,32,119,48,32,61,32,119,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,89,32,60,32,48,41,32,115,48,32,61,32,115,49,59,32,101,108,115,101,32,105,102,32,40,115,105,103,110,89,32,62,32,48,41,32,110,48,32,61,32,110,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,32,61,32,77,79,68,69,95,72,65,78,68,76,69,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,118,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,51,50,58,32,123,32,47,47,32,83,80,65,67,69,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,111,100,101,32,61,61,61,32,77,79,68,69,95,83,80,65,67,69,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,97,108,116,75,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,88,41,32,101,48,32,61,32,101,49,32,45,32,100,120,32,42,32,115,105,103,110,88,44,32,119,48,32,61,32,119,49,32,43,32,100,120,32,42,32,115,105,103,110,88,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,89,41,32,115,48,32,61,32,115,49,32,45,32,100,121,32,42,32,115,105,103,110,89,44,32,110,48,32,61,32,110,49,32,43,32,100,121,32,42,32,115,105,103,110,89,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,32,61,32,77,79,68,69,95,67,69,78,84,69,82,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,88,32,60,32,48,41,32,101,48,32,61,32,101,49,59,32,101,108,115,101,32,105,102,32,40,115,105,103,110,88,32,62,32,48,41,32,119,48,32,61,32,119,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,105,103,110,89,32,60,32,48,41,32,115,48,32,61,32,115,49,59,32,101,108,115,101,32,105,102,32,40,115,105,103,110,89,32,62,32,48,41,32,110,48,32,61,32,110,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,32,61,32,77,79,68,69,95,72,65,78,68,76,69,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,118,101,114,108,97,121,46,97,116,116,114,40,92,34,99,117,114,115,111,114,92,34,44,32,99,117,114,115,111,114,115,91,116,121,112,101,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,118,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,111,117,99,104,109,111,118,101,100,40,41,32,123,92,110,32,32,32,32,101,109,105,116,116,101,114,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,46,109,111,118,101,100,40,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,111,117,99,104,101,110,100,101,100,40,41,32,123,92,110,32,32,32,32,101,109,105,116,116,101,114,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,46,101,110,100,101,100,40,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,105,97,108,105,122,101,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,97,116,101,32,61,32,116,104,105,115,46,95,95,98,114,117,115,104,32,124,124,32,123,115,101,108,101,99,116,105,111,110,58,32,110,117,108,108,125,59,92,110,32,32,32,32,115,116,97,116,101,46,101,120,116,101,110,116,32,61,32,110,117,109,98,101,114,50,40,101,120,116,101,110,116,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,59,92,110,32,32,32,32,115,116,97,116,101,46,100,105,109,32,61,32,100,105,109,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,97,116,101,59,92,110,32,32,125,92,110,92,110,32,32,98,114,117,115,104,46,101,120,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,101,120,116,101,110,116,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,117,109,98,101,114,50,40,95,41,41,44,32,98,114,117,115,104,41,32,58,32,101,120,116,101,110,116,59,92,110,32,32,125,59,92,110,92,110,32,32,98,114,117,115,104,46,102,105,108,116,101,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,102,105,108,116,101,114,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,33,33,95,41,44,32,98,114,117,115,104,41,32,58,32,102,105,108,116,101,114,59,92,110,32,32,125,59,92,110,92,110,32,32,98,114,117,115,104,46,116,111,117,99,104,97,98,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,111,117,99,104,97,98,108,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,33,33,95,41,44,32,98,114,117,115,104,41,32,58,32,116,111,117,99,104,97,98,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,98,114,117,115,104,46,104,97,110,100,108,101,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,104,97,110,100,108,101,83,105,122,101,32,61,32,43,95,44,32,98,114,117,115,104,41,32,58,32,104,97,110,100,108,101,83,105,122,101,59,92,110,32,32,125,59,92,110,92,110,32,32,98,114,117,115,104,46,107,101,121,77,111,100,105,102,105,101,114,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,107,101,121,115,32,61,32,33,33,95,44,32,98,114,117,115,104,41,32,58,32,107,101,121,115,59,92,110,32,32,125,59,92,110,92,110,32,32,98,114,117,115,104,46,111,110,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,108,105,115,116,101,110,101,114,115,46,111,110,46,97,112,112,108,121,40,108,105,115,116,101,110,101,114,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,108,105,115,116,101,110,101,114,115,32,63,32,98,114,117,115,104,32,58,32,118,97,108,117,101,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,98,114,117,115,104,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,98,114,117,115,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,101,118,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,101,118,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,116,97,114,103,101,116,44,32,116,121,112,101,44,32,115,101,108,101,99,116,105,111,110,41,32,123,92,110,32,32,116,104,105,115,46,116,97,114,103,101,116,32,61,32,116,97,114,103,101,116,59,92,110,32,32,116,104,105,115,46,116,121,112,101,32,61,32,116,121,112,101,59,92,110,32,32,116,104,105,115,46,115,101,108,101,99,116,105,111,110,32,61,32,115,101,108,101,99,116,105,111,110,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,101,118,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,114,117,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,114,117,115,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,114,117,115,104,83,101,108,101,99,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,114,117,115,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,98,114,117,115,104,83,101,108,101,99,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,114,117,115,104,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,114,117,115,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,98,114,117,115,104,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,114,117,115,104,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,114,117,115,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,98,114,117,115,104,89,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,114,117,115,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,114,117,115,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,98,114,117,115,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,110,111,101,118,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,110,111,101,118,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,111,112,114,111,112,97,103,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,111,112,114,111,112,97,103,97,116,105,111,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,112,114,111,112,97,103,97,116,105,111,110,40,41,32,123,92,110,32,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,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,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,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,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,110,111,101,118,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,108,105,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,108,105,99,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,115,108,105,99,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,99,104,111,114,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,99,104,111,114,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,109,112,97,114,101,86,97,108,117,101,40,99,111,109,112,97,114,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,97,44,32,98,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,97,114,101,40,92,110,32,32,32,32,32,32,97,46,115,111,117,114,99,101,46,118,97,108,117,101,32,43,32,97,46,116,97,114,103,101,116,46,118,97,108,117,101,44,92,110,32,32,32,32,32,32,98,46,115,111,117,114,99,101,46,118,97,108,117,101,32,43,32,98,46,116,97,114,103,101,116,46,118,97,108,117,101,92,110,32,32,32,32,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,112,97,100,65,110,103,108,101,32,61,32,48,44,92,110,32,32,32,32,32,32,115,111,114,116,71,114,111,117,112,115,32,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,115,111,114,116,83,117,98,103,114,111,117,112,115,32,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,115,111,114,116,67,104,111,114,100,115,32,61,32,110,117,108,108,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,104,111,114,100,40,109,97,116,114,105,120,41,32,123,92,110,32,32,32,32,118,97,114,32,110,32,61,32,109,97,116,114,105,120,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,83,117,109,115,32,61,32,91,93,44,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,73,110,100,101,120,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,110,103,101,41,40,110,41,44,92,110,32,32,32,32,32,32,32,32,115,117,98,103,114,111,117,112,73,110,100,101,120,32,61,32,91,93,44,92,110,32,32,32,32,32,32,32,32,99,104,111,114,100,115,32,61,32,91,93,44,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,115,32,61,32,99,104,111,114,100,115,46,103,114,111,117,112,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,92,110,32,32,32,32,32,32,32,32,115,117,98,103,114,111,117,112,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,32,42,32,110,41,44,92,110,32,32,32,32,32,32,32,32,107,44,92,110,32,32,32,32,32,32,32,32,120,44,92,110,32,32,32,32,32,32,32,32,120,48,44,92,110,32,32,32,32,32,32,32,32,100,120,44,92,110,32,32,32,32,32,32,32,32,105,44,92,110,32,32,32,32,32,32,32,32,106,59,92,110,92,110,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,115,117,109,46,92,110,32,32,32,32,107,32,61,32,48,44,32,105,32,61,32,45,49,59,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,120,32,61,32,48,44,32,106,32,61,32,45,49,59,32,119,104,105,108,101,32,40,43,43,106,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,32,32,120,32,43,61,32,109,97,116,114,105,120,91,105,93,91,106,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,103,114,111,117,112,83,117,109,115,46,112,117,115,104,40,120,41,59,92,110,32,32,32,32,32,32,115,117,98,103,114,111,117,112,73,110,100,101,120,46,112,117,115,104,40,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,110,103,101,41,40,110,41,41,59,92,110,32,32,32,32,32,32,107,32,43,61,32,120,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,83,111,114,116,32,103,114,111,117,112,115,226,128,166,92,110,32,32,32,32,105,102,32,40,115,111,114,116,71,114,111,117,112,115,41,32,103,114,111,117,112,73,110,100,101,120,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,111,114,116,71,114,111,117,112,115,40,103,114,111,117,112,83,117,109,115,91,97,93,44,32,103,114,111,117,112,83,117,109,115,91,98,93,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,47,32,83,111,114,116,32,115,117,98,103,114,111,117,112,115,226,128,166,92,110,32,32,32,32,105,102,32,40,115,111,114,116,83,117,98,103,114,111,117,112,115,41,32,115,117,98,103,114,111,117,112,73,110,100,101,120,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,100,44,32,105,41,32,123,92,110,32,32,32,32,32,32,100,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,111,114,116,83,117,98,103,114,111,117,112,115,40,109,97,116,114,105,120,91,105,93,91,97,93,44,32,109,97,116,114,105,120,91,105,93,91,98,93,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,116,104,101,32,115,117,109,32,116,111,32,115,99,97,108,105,110,103,32,102,97,99,116,111,114,32,102,111,114,32,91,48,44,32,50,112,105,93,46,92,110,32,32,32,32,47,47,32,84,79,68,79,32,65,108,108,111,119,32,115,116,97,114,116,32,97,110,100,32,101,110,100,32,97,110,103,108,101,32,116,111,32,98,101,32,115,112,101,99,105,102,105,101,100,63,92,110,32,32,32,32,47,47,32,84,79,68,79,32,65,108,108,111,119,32,112,97,100,100,105,110,103,32,116,111,32,98,101,32,115,112,101,99,105,102,105,101,100,32,97,115,32,112,101,114,99,101,110,116,97,103,101,63,92,110,32,32,32,32,107,32,61,32,40,48,44,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,120,41,40,48,44,32,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,97,117,32,45,32,112,97,100,65,110,103,108,101,32,42,32,110,41,32,47,32,107,59,92,110,32,32,32,32,100,120,32,61,32,107,32,63,32,112,97,100,65,110,103,108,101,32,58,32,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,97,117,32,47,32,110,59,92,110,92,110,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,115,116,97,114,116,32,97,110,100,32,101,110,100,32,97,110,103,108,101,32,102,111,114,32,101,97,99,104,32,103,114,111,117,112,32,97,110,100,32,115,117,98,103,114,111,117,112,46,92,110,32,32,32,32,47,47,32,78,111,116,101,58,32,79,112,101,114,97,32,104,97,115,32,97,32,98,117,103,32,114,101,111,114,100,101,114,105,110,103,32,111,98,106,101,99,116,32,108,105,116,101,114,97,108,32,112,114,111,112,101,114,116,105,101,115,33,92,110,32,32,32,32,120,32,61,32,48,44,32,105,32,61,32,45,49,59,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,120,48,32,61,32,120,44,32,106,32,61,32,45,49,59,32,119,104,105,108,101,32,40,43,43,106,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,105,32,61,32,103,114,111,117,112,73,110,100,101,120,91,105,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,106,32,61,32,115,117,98,103,114,111,117,112,73,110,100,101,120,91,100,105,93,91,106,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,32,61,32,109,97,116,114,105,120,91,100,105,93,91,100,106,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,48,32,61,32,120,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,49,32,61,32,120,32,43,61,32,118,32,42,32,107,59,92,110,32,32,32,32,32,32,32,32,115,117,98,103,114,111,117,112,115,91,100,106,32,42,32,110,32,43,32,100,105,93,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,100,105,44,92,110,32,32,32,32,32,32,32,32,32,32,115,117,98,105,110,100,101,120,58,32,100,106,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,65,110,103,108,101,58,32,97,48,44,92,110,32,32,32,32,32,32,32,32,32,32,101,110,100,65,110,103,108,101,58,32,97,49,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,118,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,103,114,111,117,112,115,91,100,105,93,32,61,32,123,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,100,105,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,65,110,103,108,101,58,32,120,48,44,92,110,32,32,32,32,32,32,32,32,101,110,100,65,110,103,108,101,58,32,120,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,103,114,111,117,112,83,117,109,115,91,100,105,93,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,120,32,43,61,32,100,120,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,71,101,110,101,114,97,116,101,32,99,104,111,114,100,115,32,102,111,114,32,101,97,99,104,32,40,110,111,110,45,101,109,112,116,121,41,32,115,117,98,103,114,111,117,112,45,115,117,98,103,114,111,117,112,32,108,105,110,107,46,92,110,32,32,32,32,105,32,61,32,45,49,59,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,106,32,61,32,105,32,45,32,49,59,32,119,104,105,108,101,32,40,43,43,106,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,111,117,114,99,101,32,61,32,115,117,98,103,114,111,117,112,115,91,106,32,42,32,110,32,43,32,105,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,32,61,32,115,117,98,103,114,111,117,112,115,91,105,32,42,32,110,32,43,32,106,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,111,117,114,99,101,46,118,97,108,117,101,32,124,124,32,116,97,114,103,101,116,46,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,104,111,114,100,115,46,112,117,115,104,40,115,111,117,114,99,101,46,118,97,108,117,101,32,60,32,116,97,114,103,101,116,46,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,123,115,111,117,114,99,101,58,32,116,97,114,103,101,116,44,32,116,97,114,103,101,116,58,32,115,111,117,114,99,101,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,123,115,111,117,114,99,101,58,32,115,111,117,114,99,101,44,32,116,97,114,103,101,116,58,32,116,97,114,103,101,116,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,115,111,114,116,67,104,111,114,100,115,32,63,32,99,104,111,114,100,115,46,115,111,114,116,40,115,111,114,116,67,104,111,114,100,115,41,32,58,32,99,104,111,114,100,115,59,92,110,32,32,125,92,110,92,110,32,32,99,104,111,114,100,46,112,97,100,65,110,103,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,97,100,65,110,103,108,101,32,61,32,40,48,44,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,120,41,40,48,44,32,95,41,44,32,99,104,111,114,100,41,32,58,32,112,97,100,65,110,103,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,99,104,111,114,100,46,115,111,114,116,71,114,111,117,112,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,111,114,116,71,114,111,117,112,115,32,61,32,95,44,32,99,104,111,114,100,41,32,58,32,115,111,114,116,71,114,111,117,112,115,59,92,110,32,32,125,59,92,110,92,110,32,32,99,104,111,114,100,46,115,111,114,116,83,117,98,103,114,111,117,112,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,111,114,116,83,117,98,103,114,111,117,112,115,32,61,32,95,44,32,99,104,111,114,100,41,32,58,32,115,111,114,116,83,117,98,103,114,111,117,112,115,59,92,110,32,32,125,59,92,110,92,110,32,32,99,104,111,114,100,46,115,111,114,116,67,104,111,114,100,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,95,32,61,61,32,110,117,108,108,32,63,32,115,111,114,116,67,104,111,114,100,115,32,61,32,110,117,108,108,32,58,32,40,115,111,114,116,67,104,111,114,100,115,32,61,32,99,111,109,112,97,114,101,86,97,108,117,101,40,95,41,41,46,95,32,61,32,95,44,32,99,104,111,114,100,41,32,58,32,115,111,114,116,67,104,111,114,100,115,32,38,38,32,115,111,114,116,67,104,111,114,100,115,46,95,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,104,111,114,100,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,99,104,111,114,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,104,111,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,104,111,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,105,98,98,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,114,105,98,98,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,104,111,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,104,111,114,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,99,104,111,114,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,105,98,98,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,105,98,98,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,114,105,98,98,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,109,97,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,109,97,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,97,108,102,80,105,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,97,108,102,80,105,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,105,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,105,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,97,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,97,117,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,99,111,115,32,61,32,77,97,116,104,46,99,111,115,59,92,110,118,97,114,32,115,105,110,32,61,32,77,97,116,104,46,115,105,110,59,92,110,118,97,114,32,112,105,32,61,32,77,97,116,104,46,80,73,59,92,110,118,97,114,32,104,97,108,102,80,105,32,61,32,112,105,32,47,32,50,59,92,110,118,97,114,32,116,97,117,32,61,32,112,105,32,42,32,50,59,92,110,118,97,114,32,109,97,120,32,61,32,77,97,116,104,46,109,97,120,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,109,97,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,114,105,98,98,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,114,105,98,98,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,112,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,112,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,97,116,104,47,115,114,99,47,112,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,83,111,117,114,99,101,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,115,111,117,114,99,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,84,97,114,103,101,116,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,116,97,114,103,101,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,82,97,100,105,117,115,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,114,97,100,105,117,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,83,116,97,114,116,65,110,103,108,101,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,115,116,97,114,116,65,110,103,108,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,69,110,100,65,110,103,108,101,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,101,110,100,65,110,103,108,101,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,115,111,117,114,99,101,32,61,32,100,101,102,97,117,108,116,83,111,117,114,99,101,44,92,110,32,32,32,32,32,32,116,97,114,103,101,116,32,61,32,100,101,102,97,117,108,116,84,97,114,103,101,116,44,92,110,32,32,32,32,32,32,114,97,100,105,117,115,32,61,32,100,101,102,97,117,108,116,82,97,100,105,117,115,44,92,110,32,32,32,32,32,32,115,116,97,114,116,65,110,103,108,101,32,61,32,100,101,102,97,117,108,116,83,116,97,114,116,65,110,103,108,101,44,92,110,32,32,32,32,32,32,101,110,100,65,110,103,108,101,32,61,32,100,101,102,97,117,108,116,69,110,100,65,110,103,108,101,44,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,32,61,32,110,117,108,108,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,105,98,98,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,98,117,102,102,101,114,44,92,110,32,32,32,32,32,32,32,32,97,114,103,118,32,61,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,92,110,32,32,32,32,32,32,32,32,115,32,61,32,115,111,117,114,99,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,118,41,44,92,110,32,32,32,32,32,32,32,32,116,32,61,32,116,97,114,103,101,116,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,118,41,44,92,110,32,32,32,32,32,32,32,32,115,114,32,61,32,43,114,97,100,105,117,115,46,97,112,112,108,121,40,116,104,105,115,44,32,40,97,114,103,118,91,48,93,32,61,32,115,44,32,97,114,103,118,41,41,44,92,110,32,32,32,32,32,32,32,32,115,97,48,32,61,32,115,116,97,114,116,65,110,103,108,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,118,41,32,45,32,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,97,108,102,80,105,44,92,110,32,32,32,32,32,32,32,32,115,97,49,32,61,32,101,110,100,65,110,103,108,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,118,41,32,45,32,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,97,108,102,80,105,44,92,110,32,32,32,32,32,32,32,32,115,120,48,32,61,32,115,114,32,42,32,40,48,44,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,111,115,41,40,115,97,48,41,44,92,110,32,32,32,32,32,32,32,32,115,121,48,32,61,32,115,114,32,42,32,40,48,44,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,105,110,41,40,115,97,48,41,44,92,110,32,32,32,32,32,32,32,32,116,114,32,61,32,43,114,97,100,105,117,115,46,97,112,112,108,121,40,116,104,105,115,44,32,40,97,114,103,118,91,48,93,32,61,32,116,44,32,97,114,103,118,41,41,44,92,110,32,32,32,32,32,32,32,32,116,97,48,32,61,32,115,116,97,114,116,65,110,103,108,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,118,41,32,45,32,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,97,108,102,80,105,44,92,110,32,32,32,32,32,32,32,32,116,97,49,32,61,32,101,110,100,65,110,103,108,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,118,41,32,45,32,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,97,108,102,80,105,59,92,110,92,110,32,32,32,32,105,102,32,40,33,99,111,110,116,101,120,116,41,32,99,111,110,116,101,120,116,32,61,32,98,117,102,102,101,114,32,61,32,40,48,44,100,51,95,112,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,92,110,32,32,32,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,115,120,48,44,32,115,121,48,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,97,114,99,40,48,44,32,48,44,32,115,114,44,32,115,97,48,44,32,115,97,49,41,59,92,110,32,32,32,32,105,102,32,40,115,97,48,32,33,61,61,32,116,97,48,32,124,124,32,115,97,49,32,33,61,61,32,116,97,49,41,32,123,32,47,47,32,84,79,68,79,32,115,114,32,33,61,61,32,116,114,63,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,113,117,97,100,114,97,116,105,99,67,117,114,118,101,84,111,40,48,44,32,48,44,32,116,114,32,42,32,40,48,44,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,111,115,41,40,116,97,48,41,44,32,116,114,32,42,32,40,48,44,95,109,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,105,110,41,40,116,97,48,41,41,59,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,99,40,48,44,32,48,44,32,116,114,44,32,116,97,48,44,32,116,97,49,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,99,111,110,116,101,120,116,46,113,117,97,100,114,97,116,105,99,67,117,114,118,101,84,111,40,48,44,32,48,44,32,115,120,48,44,32,115,121,48,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,98,117,102,102,101,114,41,32,114,101,116,117,114,110,32,99,111,110,116,101,120,116,32,61,32,110,117,108,108,44,32,98,117,102,102,101,114,32,43,32,92,34,92,34,32,124,124,32,110,117,108,108,59,92,110,32,32,125,92,110,92,110,32,32,114,105,98,98,111,110,46,114,97,100,105,117,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,114,97,100,105,117,115,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,114,105,98,98,111,110,41,32,58,32,114,97,100,105,117,115,59,92,110,32,32,125,59,92,110,92,110,32,32,114,105,98,98,111,110,46,115,116,97,114,116,65,110,103,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,116,97,114,116,65,110,103,108,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,114,105,98,98,111,110,41,32,58,32,115,116,97,114,116,65,110,103,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,114,105,98,98,111,110,46,101,110,100,65,110,103,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,101,110,100,65,110,103,108,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,114,105,98,98,111,110,41,32,58,32,101,110,100,65,110,103,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,114,105,98,98,111,110,46,115,111,117,114,99,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,111,117,114,99,101,32,61,32,95,44,32,114,105,98,98,111,110,41,32,58,32,115,111,117,114,99,101,59,92,110,32,32,125,59,92,110,92,110,32,32,114,105,98,98,111,110,46,116,97,114,103,101,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,97,114,103,101,116,32,61,32,95,44,32,114,105,98,98,111,110,41,32,58,32,116,97,114,103,101,116,59,92,110,32,32,125,59,92,110,92,110,32,32,114,105,98,98,111,110,46,99,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,40,99,111,110,116,101,120,116,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,95,41,44,32,114,105,98,98,111,110,41,32,58,32,99,111,110,116,101,120,116,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,114,105,98,98,111,110,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,114,105,98,98,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,101,110,116,114,105,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,101,110,116,114,105,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,109,97,112,41,32,123,92,110,32,32,118,97,114,32,101,110,116,114,105,101,115,32,61,32,91,93,59,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,109,97,112,41,32,101,110,116,114,105,101,115,46,112,117,115,104,40,123,107,101,121,58,32,107,101,121,44,32,118,97,108,117,101,58,32,109,97,112,91,107,101,121,93,125,41,59,92,110,32,32,114,101,116,117,114,110,32,101,110,116,114,105,101,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,101,110,116,114,105,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,110,116,114,105,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,101,110,116,114,105,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,107,101,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,107,101,121,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,97,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,101,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,101,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,118,97,108,117,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,118,97,108,117,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,101,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,101,115,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,110,101,115,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,115,101,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,109,97,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,107,101,121,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,107,101,121,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,107,101,121,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,97,108,117,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,118,97,108,117,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,118,97,108,117,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,110,116,114,105,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,110,116,114,105,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,101,110,116,114,105,101,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,107,101,121,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,107,101,121,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,109,97,112,41,32,123,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,91,93,59,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,109,97,112,41,32,107,101,121,115,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,114,101,116,117,114,110,32,107,101,121,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,107,101,121,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,109,97,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,109,97,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,101,102,105,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,101,102,105,120,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,112,114,101,102,105,120,32,61,32,92,34,36,92,34,59,92,110,92,110,102,117,110,99,116,105,111,110,32,77,97,112,40,41,32,123,125,92,110,92,110,77,97,112,46,112,114,111,116,111,116,121,112,101,32,61,32,109,97,112,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,77,97,112,44,92,110,32,32,104,97,115,58,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,112,114,101,102,105,120,32,43,32,107,101,121,41,32,105,110,32,116,104,105,115,59,92,110,32,32,125,44,92,110,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,112,114,101,102,105,120,32,43,32,107,101,121,93,59,92,110,32,32,125,44,92,110,32,32,115,101,116,58,32,102,117,110,99,116,105,111,110,40,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,116,104,105,115,91,112,114,101,102,105,120,32,43,32,107,101,121,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,44,92,110,32,32,114,101,109,111,118,101,58,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,101,114,116,121,32,61,32,112,114,101,102,105,120,32,43,32,107,101,121,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,101,114,116,121,32,105,110,32,116,104,105,115,32,38,38,32,100,101,108,101,116,101,32,116,104,105,115,91,112,114,111,112,101,114,116,121,93,59,92,110,32,32,125,44,92,110,32,32,99,108,101,97,114,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,101,114,116,121,32,105,110,32,116,104,105,115,41,32,105,102,32,40,112,114,111,112,101,114,116,121,91,48,93,32,61,61,61,32,112,114,101,102,105,120,41,32,100,101,108,101,116,101,32,116,104,105,115,91,112,114,111,112,101,114,116,121,93,59,92,110,32,32,125,44,92,110,32,32,107,101,121,115,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,107,101,121,115,32,61,32,91,93,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,101,114,116,121,32,105,110,32,116,104,105,115,41,32,105,102,32,40,112,114,111,112,101,114,116,121,91,48,93,32,61,61,61,32,112,114,101,102,105,120,41,32,107,101,121,115,46,112,117,115,104,40,112,114,111,112,101,114,116,121,46,115,108,105,99,101,40,49,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,107,101,121,115,59,92,110,32,32,125,44,92,110,32,32,118,97,108,117,101,115,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,91,93,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,101,114,116,121,32,105,110,32,116,104,105,115,41,32,105,102,32,40,112,114,111,112,101,114,116,121,91,48,93,32,61,61,61,32,112,114,101,102,105,120,41,32,118,97,108,117,101,115,46,112,117,115,104,40,116,104,105,115,91,112,114,111,112,101,114,116,121,93,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,115,59,92,110,32,32,125,44,92,110,32,32,101,110,116,114,105,101,115,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,101,110,116,114,105,101,115,32,61,32,91,93,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,101,114,116,121,32,105,110,32,116,104,105,115,41,32,105,102,32,40,112,114,111,112,101,114,116,121,91,48,93,32,61,61,61,32,112,114,101,102,105,120,41,32,101,110,116,114,105,101,115,46,112,117,115,104,40,123,107,101,121,58,32,112,114,111,112,101,114,116,121,46,115,108,105,99,101,40,49,41,44,32,118,97,108,117,101,58,32,116,104,105,115,91,112,114,111,112,101,114,116,121,93,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,101,110,116,114,105,101,115,59,92,110,32,32,125,44,92,110,32,32,115,105,122,101,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,48,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,101,114,116,121,32,105,110,32,116,104,105,115,41,32,105,102,32,40,112,114,111,112,101,114,116,121,91,48,93,32,61,61,61,32,112,114,101,102,105,120,41,32,43,43,115,105,122,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,105,122,101,59,92,110,32,32,125,44,92,110,32,32,101,109,112,116,121,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,101,114,116,121,32,105,110,32,116,104,105,115,41,32,105,102,32,40,112,114,111,112,101,114,116,121,91,48,93,32,61,61,61,32,112,114,101,102,105,120,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,44,92,110,32,32,101,97,99,104,58,32,102,117,110,99,116,105,111,110,40,102,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,101,114,116,121,32,105,110,32,116,104,105,115,41,32,105,102,32,40,112,114,111,112,101,114,116,121,91,48,93,32,61,61,61,32,112,114,101,102,105,120,41,32,102,40,116,104,105,115,91,112,114,111,112,101,114,116,121,93,44,32,112,114,111,112,101,114,116,121,46,115,108,105,99,101,40,49,41,44,32,116,104,105,115,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,109,97,112,40,111,98,106,101,99,116,44,32,102,41,32,123,92,110,32,32,118,97,114,32,109,97,112,32,61,32,110,101,119,32,77,97,112,59,92,110,92,110,32,32,47,47,32,67,111,112,121,32,99,111,110,115,116,114,117,99,116,111,114,46,92,110,32,32,105,102,32,40,111,98,106,101,99,116,32,105,110,115,116,97,110,99,101,111,102,32,77,97,112,41,32,111,98,106,101,99,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,107,101,121,41,32,123,32,109,97,112,46,115,101,116,40,107,101,121,44,32,118,97,108,117,101,41,59,32,125,41,59,92,110,92,110,32,32,47,47,32,73,110,100,101,120,32,97,114,114,97,121,32,98,121,32,110,117,109,101,114,105,99,32,105,110,100,101,120,32,111,114,32,115,112,101,99,105,102,105,101,100,32,107,101,121,32,102,117,110,99,116,105,111,110,46,92,110,32,32,101,108,115,101,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,98,106,101,99,116,41,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,111,98,106,101,99,116,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,111,59,92,110,92,110,32,32,32,32,105,102,32,40,102,32,61,61,32,110,117,108,108,41,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,109,97,112,46,115,101,116,40,105,44,32,111,98,106,101,99,116,91,105,93,41,59,92,110,32,32,32,32,101,108,115,101,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,109,97,112,46,115,101,116,40,102,40,111,32,61,32,111,98,106,101,99,116,91,105,93,44,32,105,44,32,111,98,106,101,99,116,41,44,32,111,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,67,111,110,118,101,114,116,32,111,98,106,101,99,116,32,116,111,32,109,97,112,46,92,110,32,32,101,108,115,101,32,105,102,32,40,111,98,106,101,99,116,41,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,111,98,106,101,99,116,41,32,109,97,112,46,115,101,116,40,107,101,121,44,32,111,98,106,101,99,116,91,107,101,121,93,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,109,97,112,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,109,97,112,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,109,97,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,110,101,115,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,110,101,115,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,109,97,112,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,91,93,44,92,110,32,32,32,32,32,32,115,111,114,116,75,101,121,115,32,61,32,91,93,44,92,110,32,32,32,32,32,32,115,111,114,116,86,97,108,117,101,115,44,92,110,32,32,32,32,32,32,114,111,108,108,117,112,44,92,110,32,32,32,32,32,32,110,101,115,116,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,97,112,112,108,121,40,97,114,114,97,121,44,32,100,101,112,116,104,44,32,99,114,101,97,116,101,82,101,115,117,108,116,44,32,115,101,116,82,101,115,117,108,116,41,32,123,92,110,32,32,32,32,105,102,32,40,100,101,112,116,104,32,62,61,32,107,101,121,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,111,114,116,86,97,108,117,101,115,32,33,61,32,110,117,108,108,41,32,97,114,114,97,121,46,115,111,114,116,40,115,111,114,116,86,97,108,117,101,115,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,111,108,108,117,112,32,33,61,32,110,117,108,108,32,63,32,114,111,108,108,117,112,40,97,114,114,97,121,41,32,58,32,97,114,114,97,121,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,107,101,121,32,61,32,107,101,121,115,91,100,101,112,116,104,43,43,93,44,92,110,32,32,32,32,32,32,32,32,107,101,121,86,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,115,66,121,75,101,121,32,61,32,40,48,44,95,109,97,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,115,44,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,99,114,101,97,116,101,82,101,115,117,108,116,40,41,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,115,32,61,32,118,97,108,117,101,115,66,121,75,101,121,46,103,101,116,40,107,101,121,86,97,108,117,101,32,61,32,107,101,121,40,118,97,108,117,101,32,61,32,97,114,114,97,121,91,105,93,41,32,43,32,92,34,92,34,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,115,46,112,117,115,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,115,66,121,75,101,121,46,115,101,116,40,107,101,121,86,97,108,117,101,44,32,91,118,97,108,117,101,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,108,117,101,115,66,121,75,101,121,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,115,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,115,101,116,82,101,115,117,108,116,40,114,101,115,117,108,116,44,32,107,101,121,44,32,97,112,112,108,121,40,118,97,108,117,101,115,44,32,100,101,112,116,104,44,32,99,114,101,97,116,101,82,101,115,117,108,116,44,32,115,101,116,82,101,115,117,108,116,41,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,101,110,116,114,105,101,115,40,109,97,112,44,32,100,101,112,116,104,41,32,123,92,110,32,32,32,32,105,102,32,40,43,43,100,101,112,116,104,32,62,32,107,101,121,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,109,97,112,59,92,110,32,32,32,32,118,97,114,32,97,114,114,97,121,44,32,115,111,114,116,75,101,121,32,61,32,115,111,114,116,75,101,121,115,91,100,101,112,116,104,32,45,32,49,93,59,92,110,32,32,32,32,105,102,32,40,114,111,108,108,117,112,32,33,61,32,110,117,108,108,32,38,38,32,100,101,112,116,104,32,62,61,32,107,101,121,115,46,108,101,110,103,116,104,41,32,97,114,114,97,121,32,61,32,109,97,112,46,101,110,116,114,105,101,115,40,41,59,92,110,32,32,32,32,101,108,115,101,32,97,114,114,97,121,32,61,32,91,93,44,32,109,97,112,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,118,44,32,107,41,32,123,32,97,114,114,97,121,46,112,117,115,104,40,123,107,101,121,58,32,107,44,32,118,97,108,117,101,115,58,32,101,110,116,114,105,101,115,40,118,44,32,100,101,112,116,104,41,125,41,59,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,111,114,116,75,101,121,32,33,61,32,110,117,108,108,32,63,32,97,114,114,97,121,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,97,44,32,98,41,32,123,32,114,101,116,117,114,110,32,115,111,114,116,75,101,121,40,97,46,107,101,121,44,32,98,46,107,101,121,41,59,32,125,41,32,58,32,97,114,114,97,121,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,101,115,116,32,61,32,123,92,110,32,32,32,32,111,98,106,101,99,116,58,32,102,117,110,99,116,105,111,110,40,97,114,114,97,121,41,32,123,32,114,101,116,117,114,110,32,97,112,112,108,121,40,97,114,114,97,121,44,32,48,44,32,99,114,101,97,116,101,79,98,106,101,99,116,44,32,115,101,116,79,98,106,101,99,116,41,59,32,125,44,92,110,32,32,32,32,109,97,112,58,32,102,117,110,99,116,105,111,110,40,97,114,114,97,121,41,32,123,32,114,101,116,117,114,110,32,97,112,112,108,121,40,97,114,114,97,121,44,32,48,44,32,99,114,101,97,116,101,77,97,112,44,32,115,101,116,77,97,112,41,59,32,125,44,92,110,32,32,32,32,101,110,116,114,105,101,115,58,32,102,117,110,99,116,105,111,110,40,97,114,114,97,121,41,32,123,32,114,101,116,117,114,110,32,101,110,116,114,105,101,115,40,97,112,112,108,121,40,97,114,114,97,121,44,32,48,44,32,99,114,101,97,116,101,77,97,112,44,32,115,101,116,77,97,112,41,44,32,48,41,59,32,125,44,92,110,32,32,32,32,107,101,121,58,32,102,117,110,99,116,105,111,110,40,100,41,32,123,32,107,101,121,115,46,112,117,115,104,40,100,41,59,32,114,101,116,117,114,110,32,110,101,115,116,59,32,125,44,92,110,32,32,32,32,115,111,114,116,75,101,121,115,58,32,102,117,110,99,116,105,111,110,40,111,114,100,101,114,41,32,123,32,115,111,114,116,75,101,121,115,91,107,101,121,115,46,108,101,110,103,116,104,32,45,32,49,93,32,61,32,111,114,100,101,114,59,32,114,101,116,117,114,110,32,110,101,115,116,59,32,125,44,92,110,32,32,32,32,115,111,114,116,86,97,108,117,101,115,58,32,102,117,110,99,116,105,111,110,40,111,114,100,101,114,41,32,123,32,115,111,114,116,86,97,108,117,101,115,32,61,32,111,114,100,101,114,59,32,114,101,116,117,114,110,32,110,101,115,116,59,32,125,44,92,110,32,32,32,32,114,111,108,108,117,112,58,32,102,117,110,99,116,105,111,110,40,102,41,32,123,32,114,111,108,108,117,112,32,61,32,102,59,32,114,101,116,117,114,110,32,110,101,115,116,59,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,79,98,106,101,99,116,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,79,98,106,101,99,116,40,111,98,106,101,99,116,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,111,98,106,101,99,116,91,107,101,121,93,32,61,32,118,97,108,117,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,77,97,112,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,109,97,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,77,97,112,40,109,97,112,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,109,97,112,46,115,101,116,40,107,101,121,44,32,118,97,108,117,101,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,110,101,115,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,115,101,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,115,101,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,109,97,112,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,83,101,116,40,41,32,123,125,92,110,92,110,118,97,114,32,112,114,111,116,111,32,61,32,95,109,97,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,83,101,116,46,112,114,111,116,111,116,121,112,101,32,61,32,115,101,116,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,83,101,116,44,92,110,32,32,104,97,115,58,32,112,114,111,116,111,46,104,97,115,44,92,110,32,32,97,100,100,58,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,108,117,101,32,43,61,32,92,34,92,34,59,92,110,32,32,32,32,116,104,105,115,91,95,109,97,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,114,101,102,105,120,32,43,32,118,97,108,117,101,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,44,92,110,32,32,114,101,109,111,118,101,58,32,112,114,111,116,111,46,114,101,109,111,118,101,44,92,110,32,32,99,108,101,97,114,58,32,112,114,111,116,111,46,99,108,101,97,114,44,92,110,32,32,118,97,108,117,101,115,58,32,112,114,111,116,111,46,107,101,121,115,44,92,110,32,32,115,105,122,101,58,32,112,114,111,116,111,46,115,105,122,101,44,92,110,32,32,101,109,112,116,121,58,32,112,114,111,116,111,46,101,109,112,116,121,44,92,110,32,32,101,97,99,104,58,32,112,114,111,116,111,46,101,97,99,104,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,40,111,98,106,101,99,116,44,32,102,41,32,123,92,110,32,32,118,97,114,32,115,101,116,32,61,32,110,101,119,32,83,101,116,59,92,110,92,110,32,32,47,47,32,67,111,112,121,32,99,111,110,115,116,114,117,99,116,111,114,46,92,110,32,32,105,102,32,40,111,98,106,101,99,116,32,105,110,115,116,97,110,99,101,111,102,32,83,101,116,41,32,111,98,106,101,99,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,32,115,101,116,46,97,100,100,40,118,97,108,117,101,41,59,32,125,41,59,92,110,92,110,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,97,115,115,117,109,101,32,105,116,226,128,153,115,32,97,110,32,97,114,114,97,121,46,92,110,32,32,101,108,115,101,32,105,102,32,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,45,49,44,32,110,32,61,32,111,98,106,101,99,116,46,108,101,110,103,116,104,59,92,110,32,32,32,32,105,102,32,40,102,32,61,61,32,110,117,108,108,41,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,115,101,116,46,97,100,100,40,111,98,106,101,99,116,91,105,93,41,59,92,110,32,32,32,32,101,108,115,101,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,115,101,116,46,97,100,100,40,102,40,111,98,106,101,99,116,91,105,93,44,32,105,44,32,111,98,106,101,99,116,41,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,115,101,116,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,115,101,116,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,115,101,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,118,97,108,117,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,118,97,108,117,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,109,97,112,41,32,123,92,110,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,91,93,59,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,109,97,112,41,32,118,97,108,117,101,115,46,112,117,115,104,40,109,97,112,91,107,101,121,93,41,59,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,118,97,108,117,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,111,108,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,111,108,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,111,108,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,111,108,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,103,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,103,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,114,105,103,104,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,114,105,103,104,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,97,114,107,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,97,114,107,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,108,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,115,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,115,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,115,108,67,111,110,118,101,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,115,108,67,111,110,118,101,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,103,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,103,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,103,98,67,111,110,118,101,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,103,98,67,111,110,118,101,114,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,102,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,102,105,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,67,111,108,111,114,40,41,32,123,125,92,110,92,110,118,97,114,32,100,97,114,107,101,114,32,61,32,48,46,55,59,92,110,118,97,114,32,98,114,105,103,104,116,101,114,32,61,32,49,32,47,32,100,97,114,107,101,114,59,92,110,92,110,118,97,114,32,114,101,73,32,61,32,92,34,92,92,92,92,115,42,40,91,43,45,93,63,92,92,92,92,100,43,41,92,92,92,92,115,42,92,34,44,92,110,32,32,32,32,114,101,78,32,61,32,92,34,92,92,92,92,115,42,40,91,43,45,93,63,92,92,92,92,100,42,92,92,92,92,46,63,92,92,92,92,100,43,40,63,58,91,101,69,93,91,43,45,93,63,92,92,92,92,100,43,41,63,41,92,92,92,92,115,42,92,34,44,92,110,32,32,32,32,114,101,80,32,61,32,92,34,92,92,92,92,115,42,40,91,43,45,93,63,92,92,92,92,100,42,92,92,92,92,46,63,92,92,92,92,100,43,40,63,58,91,101,69,93,91,43,45,93,63,92,92,92,92,100,43,41,63,41,37,92,92,92,92,115,42,92,34,44,92,110,32,32,32,32,114,101,72,101,120,32,61,32,47,94,35,40,91,48,45,57,97,45,102,93,123,51,44,56,125,41,36,47,44,92,110,32,32,32,32,114,101,82,103,98,73,110,116,101,103,101,114,32,61,32,110,101,119,32,82,101,103,69,120,112,40,92,34,94,114,103,98,92,92,92,92,40,92,34,32,43,32,91,114,101,73,44,32,114,101,73,44,32,114,101,73,93,32,43,32,92,34,92,92,92,92,41,36,92,34,41,44,92,110,32,32,32,32,114,101,82,103,98,80,101,114,99,101,110,116,32,61,32,110,101,119,32,82,101,103,69,120,112,40,92,34,94,114,103,98,92,92,92,92,40,92,34,32,43,32,91,114,101,80,44,32,114,101,80,44,32,114,101,80,93,32,43,32,92,34,92,92,92,92,41,36,92,34,41,44,92,110,32,32,32,32,114,101,82,103,98,97,73,110,116,101,103,101,114,32,61,32,110,101,119,32,82,101,103,69,120,112,40,92,34,94,114,103,98,97,92,92,92,92,40,92,34,32,43,32,91,114,101,73,44,32,114,101,73,44,32,114,101,73,44,32,114,101,78,93,32,43,32,92,34,92,92,92,92,41,36,92,34,41,44,92,110,32,32,32,32,114,101,82,103,98,97,80,101,114,99,101,110,116,32,61,32,110,101,119,32,82,101,103,69,120,112,40,92,34,94,114,103,98,97,92,92,92,92,40,92,34,32,43,32,91,114,101,80,44,32,114,101,80,44,32,114,101,80,44,32,114,101,78,93,32,43,32,92,34,92,92,92,92,41,36,92,34,41,44,92,110,32,32,32,32,114,101,72,115,108,80,101,114,99,101,110,116,32,61,32,110,101,119,32,82,101,103,69,120,112,40,92,34,94,104,115,108,92,92,92,92,40,92,34,32,43,32,91,114,101,78,44,32,114,101,80,44,32,114,101,80,93,32,43,32,92,34,92,92,92,92,41,36,92,34,41,44,92,110,32,32,32,32,114,101,72,115,108,97,80,101,114,99,101,110,116,32,61,32,110,101,119,32,82,101,103,69,120,112,40,92,34,94,104,115,108,97,92,92,92,92,40,92,34,32,43,32,91,114,101,78,44,32,114,101,80,44,32,114,101,80,44,32,114,101,78,93,32,43,32,92,34,92,92,92,92,41,36,92,34,41,59,92,110,92,110,118,97,114,32,110,97,109,101,100,32,61,32,123,92,110,32,32,97,108,105,99,101,98,108,117,101,58,32,48,120,102,48,102,56,102,102,44,92,110,32,32,97,110,116,105,113,117,101,119,104,105,116,101,58,32,48,120,102,97,101,98,100,55,44,92,110,32,32,97,113,117,97,58,32,48,120,48,48,102,102,102,102,44,92,110,32,32,97,113,117,97,109,97,114,105,110,101,58,32,48,120,55,102,102,102,100,52,44,92,110,32,32,97,122,117,114,101,58,32,48,120,102,48,102,102,102,102,44,92,110,32,32,98,101,105,103,101,58,32,48,120,102,53,102,53,100,99,44,92,110,32,32,98,105,115,113,117,101,58,32,48,120,102,102,101,52,99,52,44,92,110,32,32,98,108,97,99,107,58,32,48,120,48,48,48,48,48,48,44,92,110,32,32,98,108,97,110,99,104,101,100,97,108,109,111,110,100,58,32,48,120,102,102,101,98,99,100,44,92,110,32,32,98,108,117,101,58,32,48,120,48,48,48,48,102,102,44,92,110,32,32,98,108,117,101,118,105,111,108,101,116,58,32,48,120,56,97,50,98,101,50,44,92,110,32,32,98,114,111,119,110,58,32,48,120,97,53,50,97,50,97,44,92,110,32,32,98,117,114,108,121,119,111,111,100,58,32,48,120,100,101,98,56,56,55,44,92,110,32,32,99,97,100,101,116,98,108,117,101,58,32,48,120,53,102,57,101,97,48,44,92,110,32,32,99,104,97,114,116,114,101,117,115,101,58,32,48,120,55,102,102,102,48,48,44,92,110,32,32,99,104,111,99,111,108,97,116,101,58,32,48,120,100,50,54,57,49,101,44,92,110,32,32,99,111,114,97,108,58,32,48,120,102,102,55,102,53,48,44,92,110,32,32,99,111,114,110,102,108,111,119,101,114,98,108,117,101,58,32,48,120,54,52,57,53,101,100,44,92,110,32,32,99,111,114,110,115,105,108,107,58,32,48,120,102,102,102,56,100,99,44,92,110,32,32,99,114,105,109,115,111,110,58,32,48,120,100,99,49,52,51,99,44,92,110,32,32,99,121,97,110,58,32,48,120,48,48,102,102,102,102,44,92,110,32,32,100,97,114,107,98,108,117,101,58,32,48,120,48,48,48,48,56,98,44,92,110,32,32,100,97,114,107,99,121,97,110,58,32,48,120,48,48,56,98,56,98,44,92,110,32,32,100,97,114,107,103,111,108,100,101,110,114,111,100,58,32,48,120,98,56,56,54,48,98,44,92,110,32,32,100,97,114,107,103,114,97,121,58,32,48,120,97,57,97,57,97,57,44,92,110,32,32,100,97,114,107,103,114,101,101,110,58,32,48,120,48,48,54,52,48,48,44,92,110,32,32,100,97,114,107,103,114,101,121,58,32,48,120,97,57,97,57,97,57,44,92,110,32,32,100,97,114,107,107,104,97,107,105,58,32,48,120,98,100,98,55,54,98,44,92,110,32,32,100,97,114,107,109,97,103,101,110,116,97,58,32,48,120,56,98,48,48,56,98,44,92,110,32,32,100,97,114,107,111,108,105,118,101,103,114,101,101,110,58,32,48,120,53,53,54,98,50,102,44,92,110,32,32,100,97,114,107,111,114,97,110,103,101,58,32,48,120,102,102,56,99,48,48,44,92,110,32,32,100,97,114,107,111,114,99,104,105,100,58,32,48,120,57,57,51,50,99,99,44,92,110,32,32,100,97,114,107,114,101,100,58,32,48,120,56,98,48,48,48,48,44,92,110,32,32,100,97,114,107,115,97,108,109,111,110,58,32,48,120,101,57,57,54,55,97,44,92,110,32,32,100,97,114,107,115,101,97,103,114,101,101,110,58,32,48,120,56,102,98,99,56,102,44,92,110,32,32,100,97,114,107,115,108,97,116,101,98,108,117,101,58,32,48,120,52,56,51,100,56,98,44,92,110,32,32,100,97,114,107,115,108,97,116,101,103,114,97,121,58,32,48,120,50,102,52,102,52,102,44,92,110,32,32,100,97,114,107,115,108,97,116,101,103,114,101,121,58,32,48,120,50,102,52,102,52,102,44,92,110,32,32,100,97,114,107,116,117,114,113,117,111,105,115,101,58,32,48,120,48,48,99,101,100,49,44,92,110,32,32,100,97,114,107,118,105,111,108,101,116,58,32,48,120,57,52,48,48,100,51,44,92,110,32,32,100,101,101,112,112,105,110,107,58,32,48,120,102,102,49,52,57,51,44,92,110,32,32,100,101,101,112,115,107,121,98,108,117,101,58,32,48,120,48,48,98,102,102,102,44,92,110,32,32,100,105,109,103,114,97,121,58,32,48,120,54,57,54,57,54,57,44,92,110,32,32,100,105,109,103,114,101,121,58,32,48,120,54,57,54,57,54,57,44,92,110,32,32,100,111,100,103,101,114,98,108,117,101,58,32,48,120,49,101,57,48,102,102,44,92,110,32,32,102,105,114,101,98,114,105,99,107,58,32,48,120,98,50,50,50,50,50,44,92,110,32,32,102,108,111,114,97,108,119,104,105,116,101,58,32,48,120,102,102,102,97,102,48,44,92,110,32,32,102,111,114,101,115,116,103,114,101,101,110,58,32,48,120,50,50,56,98,50,50,44,92,110,32,32,102,117,99,104,115,105,97,58,32,48,120,102,102,48,48,102,102,44,92,110,32,32,103,97,105,110,115,98,111,114,111,58,32,48,120,100,99,100,99,100,99,44,92,110,32,32,103,104,111,115,116,119,104,105,116,101,58,32,48,120,102,56,102,56,102,102,44,92,110,32,32,103,111,108,100,58,32,48,120,102,102,100,55,48,48,44,92,110,32,32,103,111,108,100,101,110,114,111,100,58,32,48,120,100,97,97,53,50,48,44,92,110,32,32,103,114,97,121,58,32,48,120,56,48,56,48,56,48,44,92,110,32,32,103,114,101,101,110,58,32,48,120,48,48,56,48,48,48,44,92,110,32,32,103,114,101,101,110,121,101,108,108,111,119,58,32,48,120,97,100,102,102,50,102,44,92,110,32,32,103,114,101,121,58,32,48,120,56,48,56,48,56,48,44,92,110,32,32,104,111,110,101,121,100,101,119,58,32,48,120,102,48,102,102,102,48,44,92,110,32,32,104,111,116,112,105,110,107,58,32,48,120,102,102,54,57,98,52,44,92,110,32,32,105,110,100,105,97,110,114,101,100,58,32,48,120,99,100,53,99,53,99,44,92,110,32,32,105,110,100,105,103,111,58,32,48,120,52,98,48,48,56,50,44,92,110,32,32,105,118,111,114,121,58,32,48,120,102,102,102,102,102,48,44,92,110,32,32,107,104,97,107,105,58,32,48,120,102,48,101,54,56,99,44,92,110,32,32,108,97,118,101,110,100,101,114,58,32,48,120,101,54,101,54,102,97,44,92,110,32,32,108,97,118,101,110,100,101,114,98,108,117,115,104,58,32,48,120,102,102,102,48,102,53,44,92,110,32,32,108,97,119,110,103,114,101,101,110,58,32,48,120,55,99,102,99,48,48,44,92,110,32,32,108,101,109,111,110,99,104,105,102,102,111,110,58,32,48,120,102,102,102,97,99,100,44,92,110,32,32,108,105,103,104,116,98,108,117,101,58,32,48,120,97,100,100,56,101,54,44,92,110,32,32,108,105,103,104,116,99,111,114,97,108,58,32,48,120,102,48,56,48,56,48,44,92,110,32,32,108,105,103,104,116,99,121,97,110,58,32,48,120,101,48,102,102,102,102,44,92,110,32,32,108,105,103,104,116,103,111,108,100,101,110,114,111,100,121,101,108,108,111,119,58,32,48,120,102,97,102,97,100,50,44,92,110,32,32,108,105,103,104,116,103,114,97,121,58,32,48,120,100,51,100,51,100,51,44,92,110,32,32,108,105,103,104,116,103,114,101,101,110,58,32,48,120,57,48,101,101,57,48,44,92,110,32,32,108,105,103,104,116,103,114,101,121,58,32,48,120,100,51,100,51,100,51,44,92,110,32,32,108,105,103,104,116,112,105,110,107,58,32,48,120,102,102,98,54,99,49,44,92,110,32,32,108,105,103,104,116,115,97,108,109,111,110,58,32,48,120,102,102,97,48,55,97,44,92,110,32,32,108,105,103,104,116,115,101,97,103,114,101,101,110,58,32,48,120,50,48,98,50,97,97,44,92,110,32,32,108,105,103,104,116,115,107,121,98,108,117,101,58,32,48,120,56,55,99,101,102,97,44,92,110,32,32,108,105,103,104,116,115,108,97,116,101,103,114,97,121,58,32,48,120,55,55,56,56,57,57,44,92,110,32,32,108,105,103,104,116,115,108,97,116,101,103,114,101,121,58,32,48,120,55,55,56,56,57,57,44,92,110,32,32,108,105,103,104,116,115,116,101,101,108,98,108,117,101,58,32,48,120,98,48,99,52,100,101,44,92,110,32,32,108,105,103,104,116,121,101,108,108,111,119,58,32,48,120,102,102,102,102,101,48,44,92,110,32,32,108,105,109,101,58,32,48,120,48,48,102,102,48,48,44,92,110,32,32,108,105,109,101,103,114,101,101,110,58,32,48,120,51,50,99,100,51,50,44,92,110,32,32,108,105,110,101,110,58,32,48,120,102,97,102,48,101,54,44,92,110,32,32,109,97,103,101,110,116,97,58,32,48,120,102,102,48,48,102,102,44,92,110,32,32,109,97,114,111,111,110,58,32,48,120,56,48,48,48,48,48,44,92,110,32,32,109,101,100,105,117,109,97,113,117,97,109,97,114,105,110,101,58,32,48,120,54,54,99,100,97,97,44,92,110,32,32,109,101,100,105,117,109,98,108,117,101,58,32,48,120,48,48,48,48,99,100,44,92,110,32,32,109,101,100,105,117,109,111,114,99,104,105,100,58,32,48,120,98,97,53,53,100,51,44,92,110,32,32,109,101,100,105,117,109,112,117,114,112,108,101,58,32,48,120,57,51,55,48,100,98,44,92,110,32,32,109,101,100,105,117,109,115,101,97,103,114,101,101,110,58,32,48,120,51,99,98,51,55,49,44,92,110,32,32,109,101,100,105,117,109,115,108,97,116,101,98,108,117,101,58,32,48,120,55,98,54,56,101,101,44,92,110,32,32,109,101,100,105,117,109,115,112,114,105,110,103,103,114,101,101,110,58,32,48,120,48,48,102,97,57,97,44,92,110,32,32,109,101,100,105,117,109,116,117,114,113,117,111,105,115,101,58,32,48,120,52,56,100,49,99,99,44,92,110,32,32,109,101,100,105,117,109,118,105,111,108,101,116,114,101,100,58,32,48,120,99,55,49,53,56,53,44,92,110,32,32,109,105,100,110,105,103,104,116,98,108,117,101,58,32,48,120,49,57,49,57,55,48,44,92,110,32,32,109,105,110,116,99,114,101,97,109,58,32,48,120,102,53,102,102,102,97,44,92,110,32,32,109,105,115,116,121,114,111,115,101,58,32,48,120,102,102,101,52,101,49,44,92,110,32,32,109,111,99,99,97,115,105,110,58,32,48,120,102,102,101,52,98,53,44,92,110,32,32,110,97,118,97,106,111,119,104,105,116,101,58,32,48,120,102,102,100,101,97,100,44,92,110,32,32,110,97,118,121,58,32,48,120,48,48,48,48,56,48,44,92,110,32,32,111,108,100,108,97,99,101,58,32,48,120,102,100,102,53,101,54,44,92,110,32,32,111,108,105,118,101,58,32,48,120,56,48,56,48,48,48,44,92,110,32,32,111,108,105,118,101,100,114,97,98,58,32,48,120,54,98,56,101,50,51,44,92,110,32,32,111,114,97,110,103,101,58,32,48,120,102,102,97,53,48,48,44,92,110,32,32,111,114,97,110,103,101,114,101,100,58,32,48,120,102,102,52,53,48,48,44,92,110,32,32,111,114,99,104,105,100,58,32,48,120,100,97,55,48,100,54,44,92,110,32,32,112,97,108,101,103,111,108,100,101,110,114,111,100,58,32,48,120,101,101,101,56,97,97,44,92,110,32,32,112,97,108,101,103,114,101,101,110,58,32,48,120,57,56,102,98,57,56,44,92,110,32,32,112,97,108,101,116,117,114,113,117,111,105,115,101,58,32,48,120,97,102,101,101,101,101,44,92,110,32,32,112,97,108,101,118,105,111,108,101,116,114,101,100,58,32,48,120,100,98,55,48,57,51,44,92,110,32,32,112,97,112,97,121,97,119,104,105,112,58,32,48,120,102,102,101,102,100,53,44,92,110,32,32,112,101,97,99,104,112,117,102,102,58,32,48,120,102,102,100,97,98,57,44,92,110,32,32,112,101,114,117,58,32,48,120,99,100,56,53,51,102,44,92,110,32,32,112,105,110,107,58,32,48,120,102,102,99,48,99,98,44,92,110,32,32,112,108,117,109,58,32,48,120,100,100,97,48,100,100,44,92,110,32,32,112,111,119,100,101,114,98,108,117,101,58,32,48,120,98,48,101,48,101,54,44,92,110,32,32,112,117,114,112,108,101,58,32,48,120,56,48,48,48,56,48,44,92,110,32,32,114,101,98,101,99,99,97,112,117,114,112,108,101,58,32,48,120,54,54,51,51,57,57,44,92,110,32,32,114,101,100,58,32,48,120,102,102,48,48,48,48,44,92,110,32,32,114,111,115,121,98,114,111,119,110,58,32,48,120,98,99,56,102,56,102,44,92,110,32,32,114,111,121,97,108,98,108,117,101,58,32,48,120,52,49,54,57,101,49,44,92,110,32,32,115,97,100,100,108,101,98,114,111,119,110,58,32,48,120,56,98,52,53,49,51,44,92,110,32,32,115,97,108,109,111,110,58,32,48,120,102,97,56,48,55,50,44,92,110,32,32,115,97,110,100,121,98,114,111,119,110,58,32,48,120,102,52,97,52,54,48,44,92,110,32,32,115,101,97,103,114,101,101,110,58,32,48,120,50,101,56,98,53,55,44,92,110,32,32,115,101,97,115,104,101,108,108,58,32,48,120,102,102,102,53,101,101,44,92,110,32,32,115,105,101,110,110,97,58,32,48,120,97,48,53,50,50,100,44,92,110,32,32,115,105,108,118,101,114,58,32,48,120,99,48,99,48,99,48,44,92,110,32,32,115,107,121,98,108,117,101,58,32,48,120,56,55,99,101,101,98,44,92,110,32,32,115,108,97,116,101,98,108,117,101,58,32,48,120,54,97,53,97,99,100,44,92,110,32,32,115,108,97,116,101,103,114,97,121,58,32,48,120,55,48,56,48,57,48,44,92,110,32,32,115,108,97,116,101,103,114,101,121,58,32,48,120,55,48,56,48,57,48,44,92,110,32,32,115,110,111,119,58,32,48,120,102,102,102,97,102,97,44,92,110,32,32,115,112,114,105,110,103,103,114,101,101,110,58,32,48,120,48,48,102,102,55,102,44,92,110,32,32,115,116,101,101,108,98,108,117,101,58,32,48,120,52,54,56,50,98,52,44,92,110,32,32,116,97,110,58,32,48,120,100,50,98,52,56,99,44,92,110,32,32,116,101,97,108,58,32,48,120,48,48,56,48,56,48,44,92,110,32,32,116,104,105,115,116,108,101,58,32,48,120,100,56,98,102,100,56,44,92,110,32,32,116,111,109,97,116,111,58,32,48,120,102,102,54,51,52,55,44,92,110,32,32,116,117,114,113,117,111,105,115,101,58,32,48,120,52,48,101,48,100,48,44,92,110,32,32,118,105,111,108,101,116,58,32,48,120,101,101,56,50,101,101,44,92,110,32,32,119,104,101,97,116,58,32,48,120,102,53,100,101,98,51,44,92,110,32,32,119,104,105,116,101,58,32,48,120,102,102,102,102,102,102,44,92,110,32,32,119,104,105,116,101,115,109,111,107,101,58,32,48,120,102,53,102,53,102,53,44,92,110,32,32,121,101,108,108,111,119,58,32,48,120,102,102,102,102,48,48,44,92,110,32,32,121,101,108,108,111,119,103,114,101,101,110,58,32,48,120,57,97,99,100,51,50,92,110,125,59,92,110,92,110,40,48,44,95,100,101,102,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,67,111,108,111,114,44,32,99,111,108,111,114,44,32,123,92,110,32,32,99,111,112,121,58,32,102,117,110,99,116,105,111,110,40,99,104,97,110,110,101,108,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,44,32,116,104,105,115,44,32,99,104,97,110,110,101,108,115,41,59,92,110,32,32,125,44,92,110,32,32,100,105,115,112,108,97,121,97,98,108,101,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,103,98,40,41,46,100,105,115,112,108,97,121,97,98,108,101,40,41,59,92,110,32,32,125,44,92,110,32,32,104,101,120,58,32,99,111,108,111,114,95,102,111,114,109,97,116,72,101,120,44,32,47,47,32,68,101,112,114,101,99,97,116,101,100,33,32,85,115,101,32,99,111,108,111,114,46,102,111,114,109,97,116,72,101,120,46,92,110,32,32,102,111,114,109,97,116,72,101,120,58,32,99,111,108,111,114,95,102,111,114,109,97,116,72,101,120,44,92,110,32,32,102,111,114,109,97,116,72,115,108,58,32,99,111,108,111,114,95,102,111,114,109,97,116,72,115,108,44,92,110,32,32,102,111,114,109,97,116,82,103,98,58,32,99,111,108,111,114,95,102,111,114,109,97,116,82,103,98,44,92,110,32,32,116,111,83,116,114,105,110,103,58,32,99,111,108,111,114,95,102,111,114,109,97,116,82,103,98,92,110,125,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,108,111,114,95,102,111,114,109,97,116,72,101,120,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,103,98,40,41,46,102,111,114,109,97,116,72,101,120,40,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,108,111,114,95,102,111,114,109,97,116,72,115,108,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,104,115,108,67,111,110,118,101,114,116,40,116,104,105,115,41,46,102,111,114,109,97,116,72,115,108,40,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,108,111,114,95,102,111,114,109,97,116,82,103,98,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,103,98,40,41,46,102,111,114,109,97,116,82,103,98,40,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,108,111,114,40,102,111,114,109,97,116,41,32,123,92,110,32,32,118,97,114,32,109,44,32,108,59,92,110,32,32,102,111,114,109,97,116,32,61,32,40,102,111,114,109,97,116,32,43,32,92,34,92,34,41,46,116,114,105,109,40,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,114,101,116,117,114,110,32,40,109,32,61,32,114,101,72,101,120,46,101,120,101,99,40,102,111,114,109,97,116,41,41,32,63,32,40,108,32,61,32,109,91,49,93,46,108,101,110,103,116,104,44,32,109,32,61,32,112,97,114,115,101,73,110,116,40,109,91,49,93,44,32,49,54,41,44,32,108,32,61,61,61,32,54,32,63,32,114,103,98,110,40,109,41,32,47,47,32,35,102,102,48,48,48,48,92,110,32,32,32,32,32,32,58,32,108,32,61,61,61,32,51,32,63,32,110,101,119,32,82,103,98,40,40,109,32,62,62,32,56,32,38,32,48,120,102,41,32,124,32,40,109,32,62,62,32,52,32,38,32,48,120,102,48,41,44,32,40,109,32,62,62,32,52,32,38,32,48,120,102,41,32,124,32,40,109,32,38,32,48,120,102,48,41,44,32,40,40,109,32,38,32,48,120,102,41,32,60,60,32,52,41,32,124,32,40,109,32,38,32,48,120,102,41,44,32,49,41,32,47,47,32,35,102,48,48,92,110,32,32,32,32,32,32,58,32,108,32,61,61,61,32,56,32,63,32,114,103,98,97,40,109,32,62,62,32,50,52,32,38,32,48,120,102,102,44,32,109,32,62,62,32,49,54,32,38,32,48,120,102,102,44,32,109,32,62,62,32,56,32,38,32,48,120,102,102,44,32,40,109,32,38,32,48,120,102,102,41,32,47,32,48,120,102,102,41,32,47,47,32,35,102,102,48,48,48,48,48,48,92,110,32,32,32,32,32,32,58,32,108,32,61,61,61,32,52,32,63,32,114,103,98,97,40,40,109,32,62,62,32,49,50,32,38,32,48,120,102,41,32,124,32,40,109,32,62,62,32,56,32,38,32,48,120,102,48,41,44,32,40,109,32,62,62,32,56,32,38,32,48,120,102,41,32,124,32,40,109,32,62,62,32,52,32,38,32,48,120,102,48,41,44,32,40,109,32,62,62,32,52,32,38,32,48,120,102,41,32,124,32,40,109,32,38,32,48,120,102,48,41,44,32,40,40,40,109,32,38,32,48,120,102,41,32,60,60,32,52,41,32,124,32,40,109,32,38,32,48,120,102,41,41,32,47,32,48,120,102,102,41,32,47,47,32,35,102,48,48,48,92,110,32,32,32,32,32,32,58,32,110,117,108,108,41,32,47,47,32,105,110,118,97,108,105,100,32,104,101,120,92,110,32,32,32,32,32,32,58,32,40,109,32,61,32,114,101,82,103,98,73,110,116,101,103,101,114,46,101,120,101,99,40,102,111,114,109,97,116,41,41,32,63,32,110,101,119,32,82,103,98,40,109,91,49,93,44,32,109,91,50,93,44,32,109,91,51,93,44,32,49,41,32,47,47,32,114,103,98,40,50,53,53,44,32,48,44,32,48,41,92,110,32,32,32,32,32,32,58,32,40,109,32,61,32,114,101,82,103,98,80,101,114,99,101,110,116,46,101,120,101,99,40,102,111,114,109,97,116,41,41,32,63,32,110,101,119,32,82,103,98,40,109,91,49,93,32,42,32,50,53,53,32,47,32,49,48,48,44,32,109,91,50,93,32,42,32,50,53,53,32,47,32,49,48,48,44,32,109,91,51,93,32,42,32,50,53,53,32,47,32,49,48,48,44,32,49,41,32,47,47,32,114,103,98,40,49,48,48,37,44,32,48,37,44,32,48,37,41,92,110,32,32,32,32,32,32,58,32,40,109,32,61,32,114,101,82,103,98,97,73,110,116,101,103,101,114,46,101,120,101,99,40,102,111,114,109,97,116,41,41,32,63,32,114,103,98,97,40,109,91,49,93,44,32,109,91,50,93,44,32,109,91,51,93,44,32,109,91,52,93,41,32,47,47,32,114,103,98,97,40,50,53,53,44,32,48,44,32,48,44,32,49,41,92,110,32,32,32,32,32,32,58,32,40,109,32,61,32,114,101,82,103,98,97,80,101,114,99,101,110,116,46,101,120,101,99,40,102,111,114,109,97,116,41,41,32,63,32,114,103,98,97,40,109,91,49,93,32,42,32,50,53,53,32,47,32,49,48,48,44,32,109,91,50,93,32,42,32,50,53,53,32,47,32,49,48,48,44,32,109,91,51,93,32,42,32,50,53,53,32,47,32,49,48,48,44,32,109,91,52,93,41,32,47,47,32,114,103,98,40,49,48,48,37,44,32,48,37,44,32,48,37,44,32,49,41,92,110,32,32,32,32,32,32,58,32,40,109,32,61,32,114,101,72,115,108,80,101,114,99,101,110,116,46,101,120,101,99,40,102,111,114,109,97,116,41,41,32,63,32,104,115,108,97,40,109,91,49,93,44,32,109,91,50,93,32,47,32,49,48,48,44,32,109,91,51,93,32,47,32,49,48,48,44,32,49,41,32,47,47,32,104,115,108,40,49,50,48,44,32,53,48,37,44,32,53,48,37,41,92,110,32,32,32,32,32,32,58,32,40,109,32,61,32,114,101,72,115,108,97,80,101,114,99,101,110,116,46,101,120,101,99,40,102,111,114,109,97,116,41,41,32,63,32,104,115,108,97,40,109,91,49,93,44,32,109,91,50,93,32,47,32,49,48,48,44,32,109,91,51,93,32,47,32,49,48,48,44,32,109,91,52,93,41,32,47,47,32,104,115,108,97,40,49,50,48,44,32,53,48,37,44,32,53,48,37,44,32,49,41,92,110,32,32,32,32,32,32,58,32,110,97,109,101,100,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,102,111,114,109,97,116,41,32,63,32,114,103,98,110,40,110,97,109,101,100,91,102,111,114,109,97,116,93,41,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,112,114,111,116,111,116,121,112,101,45,98,117,105,108,116,105,110,115,92,110,32,32,32,32,32,32,58,32,102,111,114,109,97,116,32,61,61,61,32,92,34,116,114,97,110,115,112,97,114,101,110,116,92,34,32,63,32,110,101,119,32,82,103,98,40,78,97,78,44,32,78,97,78,44,32,78,97,78,44,32,48,41,92,110,32,32,32,32,32,32,58,32,110,117,108,108,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,103,98,110,40,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,82,103,98,40,110,32,62,62,32,49,54,32,38,32,48,120,102,102,44,32,110,32,62,62,32,56,32,38,32,48,120,102,102,44,32,110,32,38,32,48,120,102,102,44,32,49,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,103,98,97,40,114,44,32,103,44,32,98,44,32,97,41,32,123,92,110,32,32,105,102,32,40,97,32,60,61,32,48,41,32,114,32,61,32,103,32,61,32,98,32,61,32,78,97,78,59,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,82,103,98,40,114,44,32,103,44,32,98,44,32,97,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,103,98,67,111,110,118,101,114,116,40,111,41,32,123,92,110,32,32,105,102,32,40,33,40,111,32,105,110,115,116,97,110,99,101,111,102,32,67,111,108,111,114,41,41,32,111,32,61,32,99,111,108,111,114,40,111,41,59,92,110,32,32,105,102,32,40,33,111,41,32,114,101,116,117,114,110,32,110,101,119,32,82,103,98,59,92,110,32,32,111,32,61,32,111,46,114,103,98,40,41,59,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,82,103,98,40,111,46,114,44,32,111,46,103,44,32,111,46,98,44,32,111,46,111,112,97,99,105,116,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,103,98,40,114,44,32,103,44,32,98,44,32,111,112,97,99,105,116,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,63,32,114,103,98,67,111,110,118,101,114,116,40,114,41,32,58,32,110,101,119,32,82,103,98,40,114,44,32,103,44,32,98,44,32,111,112,97,99,105,116,121,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,111,112,97,99,105,116,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,82,103,98,40,114,44,32,103,44,32,98,44,32,111,112,97,99,105,116,121,41,32,123,92,110,32,32,116,104,105,115,46,114,32,61,32,43,114,59,92,110,32,32,116,104,105,115,46,103,32,61,32,43,103,59,92,110,32,32,116,104,105,115,46,98,32,61,32,43,98,59,92,110,32,32,116,104,105,115,46,111,112,97,99,105,116,121,32,61,32,43,111,112,97,99,105,116,121,59,92,110,125,92,110,92,110,40,48,44,95,100,101,102,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,82,103,98,44,32,114,103,98,44,32,40,48,44,95,100,101,102,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,120,116,101,110,100,41,40,67,111,108,111,114,44,32,123,92,110,32,32,98,114,105,103,104,116,101,114,58,32,102,117,110,99,116,105,111,110,40,107,41,32,123,92,110,32,32,32,32,107,32,61,32,107,32,61,61,32,110,117,108,108,32,63,32,98,114,105,103,104,116,101,114,32,58,32,77,97,116,104,46,112,111,119,40,98,114,105,103,104,116,101,114,44,32,107,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,82,103,98,40,116,104,105,115,46,114,32,42,32,107,44,32,116,104,105,115,46,103,32,42,32,107,44,32,116,104,105,115,46,98,32,42,32,107,44,32,116,104,105,115,46,111,112,97,99,105,116,121,41,59,92,110,32,32,125,44,92,110,32,32,100,97,114,107,101,114,58,32,102,117,110,99,116,105,111,110,40,107,41,32,123,92,110,32,32,32,32,107,32,61,32,107,32,61,61,32,110,117,108,108,32,63,32,100,97,114,107,101,114,32,58,32,77,97,116,104,46,112,111,119,40,100,97,114,107,101,114,44,32,107,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,82,103,98,40,116,104,105,115,46,114,32,42,32,107,44,32,116,104,105,115,46,103,32,42,32,107,44,32,116,104,105,115,46,98,32,42,32,107,44,32,116,104,105,115,46,111,112,97,99,105,116,121,41,59,92,110,32,32,125,44,92,110,32,32,114,103,98,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,44,92,110,32,32,100,105,115,112,108,97,121,97,98,108,101,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,45,48,46,53,32,60,61,32,116,104,105,115,46,114,32,38,38,32,116,104,105,115,46,114,32,60,32,50,53,53,46,53,41,92,110,32,32,32,32,32,32,32,32,38,38,32,40,45,48,46,53,32,60,61,32,116,104,105,115,46,103,32,38,38,32,116,104,105,115,46,103,32,60,32,50,53,53,46,53,41,92,110,32,32,32,32,32,32,32,32,38,38,32,40,45,48,46,53,32,60,61,32,116,104,105,115,46,98,32,38,38,32,116,104,105,115,46,98,32,60,32,50,53,53,46,53,41,92,110,32,32,32,32,32,32,32,32,38,38,32,40,48,32,60,61,32,116,104,105,115,46,111,112,97,99,105,116,121,32,38,38,32,116,104,105,115,46,111,112,97,99,105,116,121,32,60,61,32,49,41,59,92,110,32,32,125,44,92,110,32,32,104,101,120,58,32,114,103,98,95,102,111,114,109,97,116,72,101,120,44,32,47,47,32,68,101,112,114,101,99,97,116,101,100,33,32,85,115,101,32,99,111,108,111,114,46,102,111,114,109,97,116,72,101,120,46,92,110,32,32,102,111,114,109,97,116,72,101,120,58,32,114,103,98,95,102,111,114,109,97,116,72,101,120,44,92,110,32,32,102,111,114,109,97,116,82,103,98,58,32,114,103,98,95,102,111,114,109,97,116,82,103,98,44,92,110,32,32,116,111,83,116,114,105,110,103,58,32,114,103,98,95,102,111,114,109,97,116,82,103,98,92,110,125,41,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,114,103,98,95,102,111,114,109,97,116,72,101,120,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,92,34,35,92,34,32,43,32,104,101,120,40,116,104,105,115,46,114,41,32,43,32,104,101,120,40,116,104,105,115,46,103,41,32,43,32,104,101,120,40,116,104,105,115,46,98,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,103,98,95,102,111,114,109,97,116,82,103,98,40,41,32,123,92,110,32,32,118,97,114,32,97,32,61,32,116,104,105,115,46,111,112,97,99,105,116,121,59,32,97,32,61,32,105,115,78,97,78,40,97,41,32,63,32,49,32,58,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,49,44,32,97,41,41,59,92,110,32,32,114,101,116,117,114,110,32,40,97,32,61,61,61,32,49,32,63,32,92,34,114,103,98,40,92,34,32,58,32,92,34,114,103,98,97,40,92,34,41,92,110,32,32,32,32,32,32,43,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,50,53,53,44,32,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,114,41,32,124,124,32,48,41,41,32,43,32,92,34,44,32,92,34,92,110,32,32,32,32,32,32,43,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,50,53,53,44,32,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,103,41,32,124,124,32,48,41,41,32,43,32,92,34,44,32,92,34,92,110,32,32,32,32,32,32,43,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,50,53,53,44,32,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,98,41,32,124,124,32,48,41,41,92,110,32,32,32,32,32,32,43,32,40,97,32,61,61,61,32,49,32,63,32,92,34,41,92,34,32,58,32,92,34,44,32,92,34,32,43,32,97,32,43,32,92,34,41,92,34,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,101,120,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,108,117,101,32,61,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,50,53,53,44,32,77,97,116,104,46,114,111,117,110,100,40,118,97,108,117,101,41,32,124,124,32,48,41,41,59,92,110,32,32,114,101,116,117,114,110,32,40,118,97,108,117,101,32,60,32,49,54,32,63,32,92,34,48,92,34,32,58,32,92,34,92,34,41,32,43,32,118,97,108,117,101,46,116,111,83,116,114,105,110,103,40,49,54,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,115,108,97,40,104,44,32,115,44,32,108,44,32,97,41,32,123,92,110,32,32,105,102,32,40,97,32,60,61,32,48,41,32,104,32,61,32,115,32,61,32,108,32,61,32,78,97,78,59,92,110,32,32,101,108,115,101,32,105,102,32,40,108,32,60,61,32,48,32,124,124,32,108,32,62,61,32,49,41,32,104,32,61,32,115,32,61,32,78,97,78,59,92,110,32,32,101,108,115,101,32,105,102,32,40,115,32,60,61,32,48,41,32,104,32,61,32,78,97,78,59,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,72,115,108,40,104,44,32,115,44,32,108,44,32,97,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,115,108,67,111,110,118,101,114,116,40,111,41,32,123,92,110,32,32,105,102,32,40,111,32,105,110,115,116,97,110,99,101,111,102,32,72,115,108,41,32,114,101,116,117,114,110,32,110,101,119,32,72,115,108,40,111,46,104,44,32,111,46,115,44,32,111,46,108,44,32,111,46,111,112,97,99,105,116,121,41,59,92,110,32,32,105,102,32,40,33,40,111,32,105,110,115,116,97,110,99,101,111,102,32,67,111,108,111,114,41,41,32,111,32,61,32,99,111,108,111,114,40,111,41,59,92,110,32,32,105,102,32,40,33,111,41,32,114,101,116,117,114,110,32,110,101,119,32,72,115,108,59,92,110,32,32,105,102,32,40,111,32,105,110,115,116,97,110,99,101,111,102,32,72,115,108,41,32,114,101,116,117,114,110,32,111,59,92,110,32,32,111,32,61,32,111,46,114,103,98,40,41,59,92,110,32,32,118,97,114,32,114,32,61,32,111,46,114,32,47,32,50,53,53,44,92,110,32,32,32,32,32,32,103,32,61,32,111,46,103,32,47,32,50,53,53,44,92,110,32,32,32,32,32,32,98,32,61,32,111,46,98,32,47,32,50,53,53,44,92,110,32,32,32,32,32,32,109,105,110,32,61,32,77,97,116,104,46,109,105,110,40,114,44,32,103,44,32,98,41,44,92,110,32,32,32,32,32,32,109,97,120,32,61,32,77,97,116,104,46,109,97,120,40,114,44,32,103,44,32,98,41,44,92,110,32,32,32,32,32,32,104,32,61,32,78,97,78,44,92,110,32,32,32,32,32,32,115,32,61,32,109,97,120,32,45,32,109,105,110,44,92,110,32,32,32,32,32,32,108,32,61,32,40,109,97,120,32,43,32,109,105,110,41,32,47,32,50,59,92,110,32,32,105,102,32,40,115,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,61,61,61,32,109,97,120,41,32,104,32,61,32,40,103,32,45,32,98,41,32,47,32,115,32,43,32,40,103,32,60,32,98,41,32,42,32,54,59,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,103,32,61,61,61,32,109,97,120,41,32,104,32,61,32,40,98,32,45,32,114,41,32,47,32,115,32,43,32,50,59,92,110,32,32,32,32,101,108,115,101,32,104,32,61,32,40,114,32,45,32,103,41,32,47,32,115,32,43,32,52,59,92,110,32,32,32,32,115,32,47,61,32,108,32,60,32,48,46,53,32,63,32,109,97,120,32,43,32,109,105,110,32,58,32,50,32,45,32,109,97,120,32,45,32,109,105,110,59,92,110,32,32,32,32,104,32,42,61,32,54,48,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,115,32,61,32,108,32,62,32,48,32,38,38,32,108,32,60,32,49,32,63,32,48,32,58,32,104,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,72,115,108,40,104,44,32,115,44,32,108,44,32,111,46,111,112,97,99,105,116,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,115,108,40,104,44,32,115,44,32,108,44,32,111,112,97,99,105,116,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,63,32,104,115,108,67,111,110,118,101,114,116,40,104,41,32,58,32,110,101,119,32,72,115,108,40,104,44,32,115,44,32,108,44,32,111,112,97,99,105,116,121,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,111,112,97,99,105,116,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,72,115,108,40,104,44,32,115,44,32,108,44,32,111,112,97,99,105,116,121,41,32,123,92,110,32,32,116,104,105,115,46,104,32,61,32,43,104,59,92,110,32,32,116,104,105,115,46,115,32,61,32,43,115,59,92,110,32,32,116,104,105,115,46,108,32,61,32,43,108,59,92,110,32,32,116,104,105,115,46,111,112,97,99,105,116,121,32,61,32,43,111,112,97,99,105,116,121,59,92,110,125,92,110,92,110,40,48,44,95,100,101,102,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,72,115,108,44,32,104,115,108,44,32,40,48,44,95,100,101,102,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,120,116,101,110,100,41,40,67,111,108,111,114,44,32,123,92,110,32,32,98,114,105,103,104,116,101,114,58,32,102,117,110,99,116,105,111,110,40,107,41,32,123,92,110,32,32,32,32,107,32,61,32,107,32,61,61,32,110,117,108,108,32,63,32,98,114,105,103,104,116,101,114,32,58,32,77,97,116,104,46,112,111,119,40,98,114,105,103,104,116,101,114,44,32,107,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,72,115,108,40,116,104,105,115,46,104,44,32,116,104,105,115,46,115,44,32,116,104,105,115,46,108,32,42,32,107,44,32,116,104,105,115,46,111,112,97,99,105,116,121,41,59,92,110,32,32,125,44,92,110,32,32,100,97,114,107,101,114,58,32,102,117,110,99,116,105,111,110,40,107,41,32,123,92,110,32,32,32,32,107,32,61,32,107,32,61,61,32,110,117,108,108,32,63,32,100,97,114,107,101,114,32,58,32,77,97,116,104,46,112,111,119,40,100,97,114,107,101,114,44,32,107,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,72,115,108,40,116,104,105,115,46,104,44,32,116,104,105,115,46,115,44,32,116,104,105,115,46,108,32,42,32,107,44,32,116,104,105,115,46,111,112,97,99,105,116,121,41,59,92,110,32,32,125,44,92,110,32,32,114,103,98,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,104,32,61,32,116,104,105,115,46,104,32,37,32,51,54,48,32,43,32,40,116,104,105,115,46,104,32,60,32,48,41,32,42,32,51,54,48,44,92,110,32,32,32,32,32,32,32,32,115,32,61,32,105,115,78,97,78,40,104,41,32,124,124,32,105,115,78,97,78,40,116,104,105,115,46,115,41,32,63,32,48,32,58,32,116,104,105,115,46,115,44,92,110,32,32,32,32,32,32,32,32,108,32,61,32,116,104,105,115,46,108,44,92,110,32,32,32,32,32,32,32,32,109,50,32,61,32,108,32,43,32,40,108,32,60,32,48,46,53,32,63,32,108,32,58,32,49,32,45,32,108,41,32,42,32,115,44,92,110,32,32,32,32,32,32,32,32,109,49,32,61,32,50,32,42,32,108,32,45,32,109,50,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,82,103,98,40,92,110,32,32,32,32,32,32,104,115,108,50,114,103,98,40,104,32,62,61,32,50,52,48,32,63,32,104,32,45,32,50,52,48,32,58,32,104,32,43,32,49,50,48,44,32,109,49,44,32,109,50,41,44,92,110,32,32,32,32,32,32,104,115,108,50,114,103,98,40,104,44,32,109,49,44,32,109,50,41,44,92,110,32,32,32,32,32,32,104,115,108,50,114,103,98,40,104,32,60,32,49,50,48,32,63,32,104,32,43,32,50,52,48,32,58,32,104,32,45,32,49,50,48,44,32,109,49,44,32,109,50,41,44,92,110,32,32,32,32,32,32,116,104,105,115,46,111,112,97,99,105,116,121,92,110,32,32,32,32,41,59,92,110,32,32,125,44,92,110,32,32,100,105,115,112,108,97,121,97,98,108,101,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,32,60,61,32,116,104,105,115,46,115,32,38,38,32,116,104,105,115,46,115,32,60,61,32,49,32,124,124,32,105,115,78,97,78,40,116,104,105,115,46,115,41,41,92,110,32,32,32,32,32,32,32,32,38,38,32,40,48,32,60,61,32,116,104,105,115,46,108,32,38,38,32,116,104,105,115,46,108,32,60,61,32,49,41,92,110,32,32,32,32,32,32,32,32,38,38,32,40,48,32,60,61,32,116,104,105,115,46,111,112,97,99,105,116,121,32,38,38,32,116,104,105,115,46,111,112,97,99,105,116,121,32,60,61,32,49,41,59,92,110,32,32,125,44,92,110,32,32,102,111,114,109,97,116,72,115,108,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,97,32,61,32,116,104,105,115,46,111,112,97,99,105,116,121,59,32,97,32,61,32,105,115,78,97,78,40,97,41,32,63,32,49,32,58,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,49,44,32,97,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,97,32,61,61,61,32,49,32,63,32,92,34,104,115,108,40,92,34,32,58,32,92,34,104,115,108,97,40,92,34,41,92,110,32,32,32,32,32,32,32,32,43,32,40,116,104,105,115,46,104,32,124,124,32,48,41,32,43,32,92,34,44,32,92,34,92,110,32,32,32,32,32,32,32,32,43,32,40,116,104,105,115,46,115,32,124,124,32,48,41,32,42,32,49,48,48,32,43,32,92,34,37,44,32,92,34,92,110,32,32,32,32,32,32,32,32,43,32,40,116,104,105,115,46,108,32,124,124,32,48,41,32,42,32,49,48,48,32,43,32,92,34,37,92,34,92,110,32,32,32,32,32,32,32,32,43,32,40,97,32,61,61,61,32,49,32,63,32,92,34,41,92,34,32,58,32,92,34,44,32,92,34,32,43,32,97,32,43,32,92,34,41,92,34,41,59,92,110,32,32,125,92,110,125,41,41,59,92,110,92,110,47,42,32,70,114,111,109,32,70,118,68,32,49,51,46,51,55,44,32,67,83,83,32,67,111,108,111,114,32,77,111,100,117,108,101,32,76,101,118,101,108,32,51,32,42,47,92,110,102,117,110,99,116,105,111,110,32,104,115,108,50,114,103,98,40,104,44,32,109,49,44,32,109,50,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,104,32,60,32,54,48,32,63,32,109,49,32,43,32,40,109,50,32,45,32,109,49,41,32,42,32,104,32,47,32,54,48,92,110,32,32,32,32,32,32,58,32,104,32,60,32,49,56,48,32,63,32,109,50,92,110,32,32,32,32,32,32,58,32,104,32,60,32,50,52,48,32,63,32,109,49,32,43,32,40,109,50,32,45,32,109,49,41,32,42,32,40,50,52,48,32,45,32,104,41,32,47,32,54,48,92,110,32,32,32,32,32,32,58,32,109,49,41,32,42,32,50,53,53,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,111,108,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,117,98,101,104,101,108,105,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,117,98,101,104,101,108,105,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,117,98,101,104,101,108,105,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,117,98,101,104,101,108,105,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,117,98,101,104,101,108,105,120,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,102,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,102,105,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,108,111,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,111,108,111,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,65,32,61,32,45,48,46,49,52,56,54,49,44,92,110,32,32,32,32,66,32,61,32,43,49,46,55,56,50,55,55,44,92,110,32,32,32,32,67,32,61,32,45,48,46,50,57,50,50,55,44,92,110,32,32,32,32,68,32,61,32,45,48,46,57,48,54,52,57,44,92,110,32,32,32,32,69,32,61,32,43,49,46,57,55,50,57,52,44,92,110,32,32,32,32,69,68,32,61,32,69,32,42,32,68,44,92,110,32,32,32,32,69,66,32,61,32,69,32,42,32,66,44,92,110,32,32,32,32,66,67,95,68,65,32,61,32,66,32,42,32,67,32,45,32,68,32,42,32,65,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,117,98,101,104,101,108,105,120,67,111,110,118,101,114,116,40,111,41,32,123,92,110,32,32,105,102,32,40,111,32,105,110,115,116,97,110,99,101,111,102,32,67,117,98,101,104,101,108,105,120,41,32,114,101,116,117,114,110,32,110,101,119,32,67,117,98,101,104,101,108,105,120,40,111,46,104,44,32,111,46,115,44,32,111,46,108,44,32,111,46,111,112,97,99,105,116,121,41,59,92,110,32,32,105,102,32,40,33,40,111,32,105,110,115,116,97,110,99,101,111,102,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,103,98,41,41,32,111,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,103,98,67,111,110,118,101,114,116,41,40,111,41,59,92,110,32,32,118,97,114,32,114,32,61,32,111,46,114,32,47,32,50,53,53,44,92,110,32,32,32,32,32,32,103,32,61,32,111,46,103,32,47,32,50,53,53,44,92,110,32,32,32,32,32,32,98,32,61,32,111,46,98,32,47,32,50,53,53,44,92,110,32,32,32,32,32,32,108,32,61,32,40,66,67,95,68,65,32,42,32,98,32,43,32,69,68,32,42,32,114,32,45,32,69,66,32,42,32,103,41,32,47,32,40,66,67,95,68,65,32,43,32,69,68,32,45,32,69,66,41,44,92,110,32,32,32,32,32,32,98,108,32,61,32,98,32,45,32,108,44,92,110,32,32,32,32,32,32,107,32,61,32,40,69,32,42,32,40,103,32,45,32,108,41,32,45,32,67,32,42,32,98,108,41,32,47,32,68,44,92,110,32,32,32,32,32,32,115,32,61,32,77,97,116,104,46,115,113,114,116,40,107,32,42,32,107,32,43,32,98,108,32,42,32,98,108,41,32,47,32,40,69,32,42,32,108,32,42,32,40,49,32,45,32,108,41,41,44,32,47,47,32,78,97,78,32,105,102,32,108,61,48,32,111,114,32,108,61,49,92,110,32,32,32,32,32,32,104,32,61,32,115,32,63,32,77,97,116,104,46,97,116,97,110,50,40,107,44,32,98,108,41,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,50,100,101,103,32,45,32,49,50,48,32,58,32,78,97,78,59,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,67,117,98,101,104,101,108,105,120,40,104,32,60,32,48,32,63,32,104,32,43,32,51,54,48,32,58,32,104,44,32,115,44,32,108,44,32,111,46,111,112,97,99,105,116,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,117,98,101,104,101,108,105,120,40,104,44,32,115,44,32,108,44,32,111,112,97,99,105,116,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,63,32,99,117,98,101,104,101,108,105,120,67,111,110,118,101,114,116,40,104,41,32,58,32,110,101,119,32,67,117,98,101,104,101,108,105,120,40,104,44,32,115,44,32,108,44,32,111,112,97,99,105,116,121,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,111,112,97,99,105,116,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,67,117,98,101,104,101,108,105,120,40,104,44,32,115,44,32,108,44,32,111,112,97,99,105,116,121,41,32,123,92,110,32,32,116,104,105,115,46,104,32,61,32,43,104,59,92,110,32,32,116,104,105,115,46,115,32,61,32,43,115,59,92,110,32,32,116,104,105,115,46,108,32,61,32,43,108,59,92,110,32,32,116,104,105,115,46,111,112,97,99,105,116,121,32,61,32,43,111,112,97,99,105,116,121,59,92,110,125,92,110,92,110,40,48,44,95,100,101,102,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,67,117,98,101,104,101,108,105,120,44,32,99,117,98,101,104,101,108,105,120,44,32,40,48,44,95,100,101,102,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,120,116,101,110,100,41,40,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,67,111,108,111,114,44,32,123,92,110,32,32,98,114,105,103,104,116,101,114,58,32,102,117,110,99,116,105,111,110,40,107,41,32,123,92,110,32,32,32,32,107,32,61,32,107,32,61,61,32,110,117,108,108,32,63,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,98,114,105,103,104,116,101,114,32,58,32,77,97,116,104,46,112,111,119,40,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,98,114,105,103,104,116,101,114,44,32,107,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,67,117,98,101,104,101,108,105,120,40,116,104,105,115,46,104,44,32,116,104,105,115,46,115,44,32,116,104,105,115,46,108,32,42,32,107,44,32,116,104,105,115,46,111,112,97,99,105,116,121,41,59,92,110,32,32,125,44,92,110,32,32,100,97,114,107,101,114,58,32,102,117,110,99,116,105,111,110,40,107,41,32,123,92,110,32,32,32,32,107,32,61,32,107,32,61,61,32,110,117,108,108,32,63,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,97,114,107,101,114,32,58,32,77,97,116,104,46,112,111,119,40,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,97,114,107,101,114,44,32,107,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,67,117,98,101,104,101,108,105,120,40,116,104,105,115,46,104,44,32,116,104,105,115,46,115,44,32,116,104,105,115,46,108,32,42,32,107,44,32,116,104,105,115,46,111,112,97,99,105,116,121,41,59,92,110,32,32,125,44,92,110,32,32,114,103,98,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,104,32,61,32,105,115,78,97,78,40,116,104,105,115,46,104,41,32,63,32,48,32,58,32,40,116,104,105,115,46,104,32,43,32,49,50,48,41,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,101,103,50,114,97,100,44,92,110,32,32,32,32,32,32,32,32,108,32,61,32,43,116,104,105,115,46,108,44,92,110,32,32,32,32,32,32,32,32,97,32,61,32,105,115,78,97,78,40,116,104,105,115,46,115,41,32,63,32,48,32,58,32,116,104,105,115,46,115,32,42,32,108,32,42,32,40,49,32,45,32,108,41,44,92,110,32,32,32,32,32,32,32,32,99,111,115,104,32,61,32,77,97,116,104,46,99,111,115,40,104,41,44,92,110,32,32,32,32,32,32,32,32,115,105,110,104,32,61,32,77,97,116,104,46,115,105,110,40,104,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,103,98,40,92,110,32,32,32,32,32,32,50,53,53,32,42,32,40,108,32,43,32,97,32,42,32,40,65,32,42,32,99,111,115,104,32,43,32,66,32,42,32,115,105,110,104,41,41,44,92,110,32,32,32,32,32,32,50,53,53,32,42,32,40,108,32,43,32,97,32,42,32,40,67,32,42,32,99,111,115,104,32,43,32,68,32,42,32,115,105,110,104,41,41,44,92,110,32,32,32,32,32,32,50,53,53,32,42,32,40,108,32,43,32,97,32,42,32,40,69,32,42,32,99,111,115,104,41,41,44,92,110,32,32,32,32,32,32,116,104,105,115,46,111,112,97,99,105,116,121,92,110,32,32,32,32,41,59,92,110,32,32,125,92,110,125,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,117,98,101,104,101,108,105,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,100,101,102,105,110,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,100,101,102,105,110,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,120,116,101,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,120,116,101,110,100,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,111,110,115,116,114,117,99,116,111,114,44,32,102,97,99,116,111,114,121,44,32,112,114,111,116,111,116,121,112,101,41,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,32,61,32,102,97,99,116,111,114,121,46,112,114,111,116,111,116,121,112,101,32,61,32,112,114,111,116,111,116,121,112,101,59,92,110,32,32,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,99,111,110,115,116,114,117,99,116,111,114,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,116,101,110,100,40,112,97,114,101,110,116,44,32,100,101,102,105,110,105,116,105,111,110,41,32,123,92,110,32,32,118,97,114,32,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,112,97,114,101,110,116,46,112,114,111,116,111,116,121,112,101,41,59,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,100,101,102,105,110,105,116,105,111,110,41,32,112,114,111,116,111,116,121,112,101,91,107,101,121,93,32,61,32,100,101,102,105,110,105,116,105,111,110,91,107,101,121,93,59,92,110,32,32,114,101,116,117,114,110,32,112,114,111,116,111,116,121,112,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,100,101,102,105,110,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,108,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,98,101,104,101,108,105,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,98,101,104,101,108,105,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,114,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,97,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,103,114,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,99,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,97,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,104,99,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,115,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,115,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,97,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,97,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,97,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,108,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,103,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,103,98,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,108,111,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,111,108,111,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,97,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,97,98,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,108,97,98,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,98,101,104,101,108,105,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,98,101,104,101,108,105,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,117,98,101,104,101,108,105,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,108,97,98,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,108,97,98,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,72,99,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,72,99,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,76,97,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,76,97,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,97,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,114,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,114,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,99,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,99,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,99,104,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,102,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,102,105,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,100,101,102,105,110,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,108,111,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,111,108,111,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,47,47,32,104,116,116,112,115,58,47,47,111,98,115,101,114,118,97,98,108,101,104,113,46,99,111,109,47,64,109,98,111,115,116,111,99,107,47,108,97,98,45,97,110,100,45,114,103,98,92,110,118,97,114,32,75,32,61,32,49,56,44,92,110,32,32,32,32,88,110,32,61,32,48,46,57,54,52,50,50,44,92,110,32,32,32,32,89,110,32,61,32,49,44,92,110,32,32,32,32,90,110,32,61,32,48,46,56,50,53,50,49,44,92,110,32,32,32,32,116,48,32,61,32,52,32,47,32,50,57,44,92,110,32,32,32,32,116,49,32,61,32,54,32,47,32,50,57,44,92,110,32,32,32,32,116,50,32,61,32,51,32,42,32,116,49,32,42,32,116,49,44,92,110,32,32,32,32,116,51,32,61,32,116,49,32,42,32,116,49,32,42,32,116,49,59,92,110,92,110,102,117,110,99,116,105,111,110,32,108,97,98,67,111,110,118,101,114,116,40,111,41,32,123,92,110,32,32,105,102,32,40,111,32,105,110,115,116,97,110,99,101,111,102,32,76,97,98,41,32,114,101,116,117,114,110,32,110,101,119,32,76,97,98,40,111,46,108,44,32,111,46,97,44,32,111,46,98,44,32,111,46,111,112,97,99,105,116,121,41,59,92,110,32,32,105,102,32,40,111,32,105,110,115,116,97,110,99,101,111,102,32,72,99,108,41,32,114,101,116,117,114,110,32,104,99,108,50,108,97,98,40,111,41,59,92,110,32,32,105,102,32,40,33,40,111,32,105,110,115,116,97,110,99,101,111,102,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,103,98,41,41,32,111,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,103,98,67,111,110,118,101,114,116,41,40,111,41,59,92,110,32,32,118,97,114,32,114,32,61,32,114,103,98,50,108,114,103,98,40,111,46,114,41,44,92,110,32,32,32,32,32,32,103,32,61,32,114,103,98,50,108,114,103,98,40,111,46,103,41,44,92,110,32,32,32,32,32,32,98,32,61,32,114,103,98,50,108,114,103,98,40,111,46,98,41,44,92,110,32,32,32,32,32,32,121,32,61,32,120,121,122,50,108,97,98,40,40,48,46,50,50,50,53,48,52,53,32,42,32,114,32,43,32,48,46,55,49,54,56,55,56,54,32,42,32,103,32,43,32,48,46,48,54,48,54,49,54,57,32,42,32,98,41,32,47,32,89,110,41,44,32,120,44,32,122,59,92,110,32,32,105,102,32,40,114,32,61,61,61,32,103,32,38,38,32,103,32,61,61,61,32,98,41,32,120,32,61,32,122,32,61,32,121,59,32,101,108,115,101,32,123,92,110,32,32,32,32,120,32,61,32,120,121,122,50,108,97,98,40,40,48,46,52,51,54,48,55,52,55,32,42,32,114,32,43,32,48,46,51,56,53,48,54,52,57,32,42,32,103,32,43,32,48,46,49,52,51,48,56,48,52,32,42,32,98,41,32,47,32,88,110,41,59,92,110,32,32,32,32,122,32,61,32,120,121,122,50,108,97,98,40,40,48,46,48,49,51,57,51,50,50,32,42,32,114,32,43,32,48,46,48,57,55,49,48,52,53,32,42,32,103,32,43,32,48,46,55,49,52,49,55,51,51,32,42,32,98,41,32,47,32,90,110,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,76,97,98,40,49,49,54,32,42,32,121,32,45,32,49,54,44,32,53,48,48,32,42,32,40,120,32,45,32,121,41,44,32,50,48,48,32,42,32,40,121,32,45,32,122,41,44,32,111,46,111,112,97,99,105,116,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,114,97,121,40,108,44,32,111,112,97,99,105,116,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,76,97,98,40,108,44,32,48,44,32,48,44,32,111,112,97,99,105,116,121,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,111,112,97,99,105,116,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,97,98,40,108,44,32,97,44,32,98,44,32,111,112,97,99,105,116,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,63,32,108,97,98,67,111,110,118,101,114,116,40,108,41,32,58,32,110,101,119,32,76,97,98,40,108,44,32,97,44,32,98,44,32,111,112,97,99,105,116,121,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,111,112,97,99,105,116,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,76,97,98,40,108,44,32,97,44,32,98,44,32,111,112,97,99,105,116,121,41,32,123,92,110,32,32,116,104,105,115,46,108,32,61,32,43,108,59,92,110,32,32,116,104,105,115,46,97,32,61,32,43,97,59,92,110,32,32,116,104,105,115,46,98,32,61,32,43,98,59,92,110,32,32,116,104,105,115,46,111,112,97,99,105,116,121,32,61,32,43,111,112,97,99,105,116,121,59,92,110,125,92,110,92,110,40,48,44,95,100,101,102,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,76,97,98,44,32,108,97,98,44,32,40,48,44,95,100,101,102,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,120,116,101,110,100,41,40,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,67,111,108,111,114,44,32,123,92,110,32,32,98,114,105,103,104,116,101,114,58,32,102,117,110,99,116,105,111,110,40,107,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,76,97,98,40,116,104,105,115,46,108,32,43,32,75,32,42,32,40,107,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,107,41,44,32,116,104,105,115,46,97,44,32,116,104,105,115,46,98,44,32,116,104,105,115,46,111,112,97,99,105,116,121,41,59,92,110,32,32,125,44,92,110,32,32,100,97,114,107,101,114,58,32,102,117,110,99,116,105,111,110,40,107,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,76,97,98,40,116,104,105,115,46,108,32,45,32,75,32,42,32,40,107,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,107,41,44,32,116,104,105,115,46,97,44,32,116,104,105,115,46,98,44,32,116,104,105,115,46,111,112,97,99,105,116,121,41,59,92,110,32,32,125,44,92,110,32,32,114,103,98,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,121,32,61,32,40,116,104,105,115,46,108,32,43,32,49,54,41,32,47,32,49,49,54,44,92,110,32,32,32,32,32,32,32,32,120,32,61,32,105,115,78,97,78,40,116,104,105,115,46,97,41,32,63,32,121,32,58,32,121,32,43,32,116,104,105,115,46,97,32,47,32,53,48,48,44,92,110,32,32,32,32,32,32,32,32,122,32,61,32,105,115,78,97,78,40,116,104,105,115,46,98,41,32,63,32,121,32,58,32,121,32,45,32,116,104,105,115,46,98,32,47,32,50,48,48,59,92,110,32,32,32,32,120,32,61,32,88,110,32,42,32,108,97,98,50,120,121,122,40,120,41,59,92,110,32,32,32,32,121,32,61,32,89,110,32,42,32,108,97,98,50,120,121,122,40,121,41,59,92,110,32,32,32,32,122,32,61,32,90,110,32,42,32,108,97,98,50,120,121,122,40,122,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,103,98,40,92,110,32,32,32,32,32,32,108,114,103,98,50,114,103,98,40,32,51,46,49,51,51,56,53,54,49,32,42,32,120,32,45,32,49,46,54,49,54,56,54,54,55,32,42,32,121,32,45,32,48,46,52,57,48,54,49,52,54,32,42,32,122,41,44,92,110,32,32,32,32,32,32,108,114,103,98,50,114,103,98,40,45,48,46,57,55,56,55,54,56,52,32,42,32,120,32,43,32,49,46,57,49,54,49,52,49,53,32,42,32,121,32,43,32,48,46,48,51,51,52,53,52,48,32,42,32,122,41,44,92,110,32,32,32,32,32,32,108,114,103,98,50,114,103,98,40,32,48,46,48,55,49,57,52,53,51,32,42,32,120,32,45,32,48,46,50,50,56,57,57,49,52,32,42,32,121,32,43,32,49,46,52,48,53,50,52,50,55,32,42,32,122,41,44,92,110,32,32,32,32,32,32,116,104,105,115,46,111,112,97,99,105,116,121,92,110,32,32,32,32,41,59,92,110,32,32,125,92,110,125,41,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,120,121,122,50,108,97,98,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,32,62,32,116,51,32,63,32,77,97,116,104,46,112,111,119,40,116,44,32,49,32,47,32,51,41,32,58,32,116,32,47,32,116,50,32,43,32,116,48,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,97,98,50,120,121,122,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,32,62,32,116,49,32,63,32,116,32,42,32,116,32,42,32,116,32,58,32,116,50,32,42,32,40,116,32,45,32,116,48,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,114,103,98,50,114,103,98,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,50,53,53,32,42,32,40,120,32,60,61,32,48,46,48,48,51,49,51,48,56,32,63,32,49,50,46,57,50,32,42,32,120,32,58,32,49,46,48,53,53,32,42,32,77,97,116,104,46,112,111,119,40,120,44,32,49,32,47,32,50,46,52,41,32,45,32,48,46,48,53,53,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,103,98,50,108,114,103,98,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,120,32,47,61,32,50,53,53,41,32,60,61,32,48,46,48,52,48,52,53,32,63,32,120,32,47,32,49,50,46,57,50,32,58,32,77,97,116,104,46,112,111,119,40,40,120,32,43,32,48,46,48,53,53,41,32,47,32,49,46,48,53,53,44,32,50,46,52,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,99,108,67,111,110,118,101,114,116,40,111,41,32,123,92,110,32,32,105,102,32,40,111,32,105,110,115,116,97,110,99,101,111,102,32,72,99,108,41,32,114,101,116,117,114,110,32,110,101,119,32,72,99,108,40,111,46,104,44,32,111,46,99,44,32,111,46,108,44,32,111,46,111,112,97,99,105,116,121,41,59,92,110,32,32,105,102,32,40,33,40,111,32,105,110,115,116,97,110,99,101,111,102,32,76,97,98,41,41,32,111,32,61,32,108,97,98,67,111,110,118,101,114,116,40,111,41,59,92,110,32,32,105,102,32,40,111,46,97,32,61,61,61,32,48,32,38,38,32,111,46,98,32,61,61,61,32,48,41,32,114,101,116,117,114,110,32,110,101,119,32,72,99,108,40,78,97,78,44,32,48,32,60,32,111,46,108,32,38,38,32,111,46,108,32,60,32,49,48,48,32,63,32,48,32,58,32,78,97,78,44,32,111,46,108,44,32,111,46,111,112,97,99,105,116,121,41,59,92,110,32,32,118,97,114,32,104,32,61,32,77,97,116,104,46,97,116,97,110,50,40,111,46,98,44,32,111,46,97,41,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,97,100,50,100,101,103,59,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,72,99,108,40,104,32,60,32,48,32,63,32,104,32,43,32,51,54,48,32,58,32,104,44,32,77,97,116,104,46,115,113,114,116,40,111,46,97,32,42,32,111,46,97,32,43,32,111,46,98,32,42,32,111,46,98,41,44,32,111,46,108,44,32,111,46,111,112,97,99,105,116,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,99,104,40,108,44,32,99,44,32,104,44,32,111,112,97,99,105,116,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,63,32,104,99,108,67,111,110,118,101,114,116,40,108,41,32,58,32,110,101,119,32,72,99,108,40,104,44,32,99,44,32,108,44,32,111,112,97,99,105,116,121,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,111,112,97,99,105,116,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,99,108,40,104,44,32,99,44,32,108,44,32,111,112,97,99,105,116,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,63,32,104,99,108,67,111,110,118,101,114,116,40,104,41,32,58,32,110,101,119,32,72,99,108,40,104,44,32,99,44,32,108,44,32,111,112,97,99,105,116,121,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,111,112,97,99,105,116,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,72,99,108,40,104,44,32,99,44,32,108,44,32,111,112,97,99,105,116,121,41,32,123,92,110,32,32,116,104,105,115,46,104,32,61,32,43,104,59,92,110,32,32,116,104,105,115,46,99,32,61,32,43,99,59,92,110,32,32,116,104,105,115,46,108,32,61,32,43,108,59,92,110,32,32,116,104,105,115,46,111,112,97,99,105,116,121,32,61,32,43,111,112,97,99,105,116,121,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,99,108,50,108,97,98,40,111,41,32,123,92,110,32,32,105,102,32,40,105,115,78,97,78,40,111,46,104,41,41,32,114,101,116,117,114,110,32,110,101,119,32,76,97,98,40,111,46,108,44,32,48,44,32,48,44,32,111,46,111,112,97,99,105,116,121,41,59,92,110,32,32,118,97,114,32,104,32,61,32,111,46,104,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,100,101,103,50,114,97,100,59,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,76,97,98,40,111,46,108,44,32,77,97,116,104,46,99,111,115,40,104,41,32,42,32,111,46,99,44,32,77,97,116,104,46,115,105,110,40,104,41,32,42,32,111,46,99,44,32,111,46,111,112,97,99,105,116,121,41,59,92,110,125,92,110,92,110,40,48,44,95,100,101,102,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,72,99,108,44,32,104,99,108,44,32,40,48,44,95,100,101,102,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,120,116,101,110,100,41,40,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,67,111,108,111,114,44,32,123,92,110,32,32,98,114,105,103,104,116,101,114,58,32,102,117,110,99,116,105,111,110,40,107,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,72,99,108,40,116,104,105,115,46,104,44,32,116,104,105,115,46,99,44,32,116,104,105,115,46,108,32,43,32,75,32,42,32,40,107,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,107,41,44,32,116,104,105,115,46,111,112,97,99,105,116,121,41,59,92,110,32,32,125,44,92,110,32,32,100,97,114,107,101,114,58,32,102,117,110,99,116,105,111,110,40,107,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,72,99,108,40,116,104,105,115,46,104,44,32,116,104,105,115,46,99,44,32,116,104,105,115,46,108,32,45,32,75,32,42,32,40,107,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,107,41,44,32,116,104,105,115,46,111,112,97,99,105,116,121,41,59,92,110,32,32,125,44,92,110,32,32,114,103,98,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,99,108,50,108,97,98,40,116,104,105,115,41,46,114,103,98,40,41,59,92,110,32,32,125,92,110,125,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,108,97,98,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,109,97,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,109,97,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,103,50,114,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,101,103,50,114,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,100,50,100,101,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,97,100,50,100,101,103,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,100,101,103,50,114,97,100,32,61,32,77,97,116,104,46,80,73,32,47,32,49,56,48,59,92,110,118,97,114,32,114,97,100,50,100,101,103,32,61,32,49,56,48,32,47,32,77,97,116,104,46,80,73,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,109,97,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,97,114,101,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,97,114,101,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,114,105,110,103,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,114,105,110,103,46,108,101,110,103,116,104,44,32,97,114,101,97,32,61,32,114,105,110,103,91,110,32,45,32,49,93,91,49,93,32,42,32,114,105,110,103,91,48,93,91,48,93,32,45,32,114,105,110,103,91,110,32,45,32,49,93,91,48,93,32,42,32,114,105,110,103,91,48,93,91,49,93,59,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,97,114,101,97,32,43,61,32,114,105,110,103,91,105,32,45,32,49,93,91,49,93,32,42,32,114,105,110,103,91,105,93,91,48,93,32,45,32,114,105,110,103,91,105,32,45,32,49,93,91,48,93,32,42,32,114,105,110,103,91,105,93,91,49,93,59,92,110,32,32,114,101,116,117,114,110,32,97,114,101,97,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,97,114,101,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,108,105,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,108,105,99,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,97,114,114,97,121,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,118,97,114,32,115,108,105,99,101,32,61,32,97,114,114,97,121,46,115,108,105,99,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,97,115,99,101,110,100,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,97,115,99,101,110,100,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,32,45,32,98,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,97,115,99,101,110,100,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,98,108,117,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,98,108,117,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,108,117,114,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,108,117,114,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,108,117,114,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,108,117,114,89,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,47,32,84,79,68,79,32,79,112,116,105,109,105,122,101,32,101,100,103,101,32,99,97,115,101,115,46,92,110,47,47,32,84,79,68,79,32,79,112,116,105,109,105,122,101,32,105,110,100,101,120,32,99,97,108,99,117,108,97,116,105,111,110,46,92,110,47,47,32,84,79,68,79,32,79,112,116,105,109,105,122,101,32,97,114,103,117,109,101,110,116,115,46,92,110,102,117,110,99,116,105,111,110,32,98,108,117,114,88,40,115,111,117,114,99,101,44,32,116,97,114,103,101,116,44,32,114,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,115,111,117,114,99,101,46,119,105,100,116,104,44,92,110,32,32,32,32,32,32,109,32,61,32,115,111,117,114,99,101,46,104,101,105,103,104,116,44,92,110,32,32,32,32,32,32,119,32,61,32,40,114,32,60,60,32,49,41,32,43,32,49,59,92,110,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,115,114,32,61,32,48,59,32,105,32,60,32,110,32,43,32,114,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,32,32,115,114,32,43,61,32,115,111,117,114,99,101,46,100,97,116,97,91,105,32,43,32,106,32,42,32,110,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,32,62,61,32,114,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,32,62,61,32,119,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,114,32,45,61,32,115,111,117,114,99,101,46,100,97,116,97,91,105,32,45,32,119,32,43,32,106,32,42,32,110,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,46,100,97,116,97,91,105,32,45,32,114,32,43,32,106,32,42,32,110,93,32,61,32,115,114,32,47,32,77,97,116,104,46,109,105,110,40,105,32,43,32,49,44,32,110,32,45,32,49,32,43,32,119,32,45,32,105,44,32,119,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,47,32,84,79,68,79,32,79,112,116,105,109,105,122,101,32,101,100,103,101,32,99,97,115,101,115,46,92,110,47,47,32,84,79,68,79,32,79,112,116,105,109,105,122,101,32,105,110,100,101,120,32,99,97,108,99,117,108,97,116,105,111,110,46,92,110,47,47,32,84,79,68,79,32,79,112,116,105,109,105,122,101,32,97,114,103,117,109,101,110,116,115,46,92,110,102,117,110,99,116,105,111,110,32,98,108,117,114,89,40,115,111,117,114,99,101,44,32,116,97,114,103,101,116,44,32,114,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,115,111,117,114,99,101,46,119,105,100,116,104,44,92,110,32,32,32,32,32,32,109,32,61,32,115,111,117,114,99,101,46,104,101,105,103,104,116,44,92,110,32,32,32,32,32,32,119,32,61,32,40,114,32,60,60,32,49,41,32,43,32,49,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,44,32,115,114,32,61,32,48,59,32,106,32,60,32,109,32,43,32,114,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,106,32,60,32,109,41,32,123,92,110,32,32,32,32,32,32,32,32,115,114,32,43,61,32,115,111,117,114,99,101,46,100,97,116,97,91,105,32,43,32,106,32,42,32,110,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,106,32,62,61,32,114,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,106,32,62,61,32,119,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,114,32,45,61,32,115,111,117,114,99,101,46,100,97,116,97,91,105,32,43,32,40,106,32,45,32,119,41,32,42,32,110,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,46,100,97,116,97,91,105,32,43,32,40,106,32,45,32,114,41,32,42,32,110,93,32,61,32,115,114,32,47,32,77,97,116,104,46,109,105,110,40,106,32,43,32,49,44,32,109,32,45,32,49,32,43,32,119,32,45,32,106,44,32,119,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,98,108,117,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,99,111,110,116,97,105,110,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,99,111,110,116,97,105,110,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,114,105,110,103,44,32,104,111,108,101,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,45,49,44,32,110,32,61,32,104,111,108,101,46,108,101,110,103,116,104,44,32,99,59,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,105,102,32,40,99,32,61,32,114,105,110,103,67,111,110,116,97,105,110,115,40,114,105,110,103,44,32,104,111,108,101,91,105,93,41,41,32,114,101,116,117,114,110,32,99,59,92,110,32,32,114,101,116,117,114,110,32,48,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,105,110,103,67,111,110,116,97,105,110,115,40,114,105,110,103,44,32,112,111,105,110,116,41,32,123,92,110,32,32,118,97,114,32,120,32,61,32,112,111,105,110,116,91,48,93,44,32,121,32,61,32,112,111,105,110,116,91,49,93,44,32,99,111,110,116,97,105,110,115,32,61,32,45,49,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,114,105,110,103,46,108,101,110,103,116,104,44,32,106,32,61,32,110,32,45,32,49,59,32,105,32,60,32,110,59,32,106,32,61,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,112,105,32,61,32,114,105,110,103,91,105,93,44,32,120,105,32,61,32,112,105,91,48,93,44,32,121,105,32,61,32,112,105,91,49,93,44,32,112,106,32,61,32,114,105,110,103,91,106,93,44,32,120,106,32,61,32,112,106,91,48,93,44,32,121,106,32,61,32,112,106,91,49,93,59,92,110,32,32,32,32,105,102,32,40,115,101,103,109,101,110,116,67,111,110,116,97,105,110,115,40,112,105,44,32,112,106,44,32,112,111,105,110,116,41,41,32,114,101,116,117,114,110,32,48,59,92,110,32,32,32,32,105,102,32,40,40,40,121,105,32,62,32,121,41,32,33,61,61,32,40,121,106,32,62,32,121,41,41,32,38,38,32,40,40,120,32,60,32,40,120,106,32,45,32,120,105,41,32,42,32,40,121,32,45,32,121,105,41,32,47,32,40,121,106,32,45,32,121,105,41,32,43,32,120,105,41,41,41,32,99,111,110,116,97,105,110,115,32,61,32,45,99,111,110,116,97,105,110,115,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,99,111,110,116,97,105,110,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,103,109,101,110,116,67,111,110,116,97,105,110,115,40,97,44,32,98,44,32,99,41,32,123,92,110,32,32,118,97,114,32,105,59,32,114,101,116,117,114,110,32,99,111,108,108,105,110,101,97,114,40,97,44,32,98,44,32,99,41,32,38,38,32,119,105,116,104,105,110,40,97,91,105,32,61,32,43,40,97,91,48,93,32,61,61,61,32,98,91,48,93,41,93,44,32,99,91,105,93,44,32,98,91,105,93,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,108,108,105,110,101,97,114,40,97,44,32,98,44,32,99,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,98,91,48,93,32,45,32,97,91,48,93,41,32,42,32,40,99,91,49,93,32,45,32,97,91,49,93,41,32,61,61,61,32,40,99,91,48,93,32,45,32,97,91,48,93,41,32,42,32,40,98,91,49,93,32,45,32,97,91,49,93,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,119,105,116,104,105,110,40,112,44,32,113,44,32,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,32,60,61,32,113,32,38,38,32,113,32,60,61,32,114,32,124,124,32,114,32,60,61,32,113,32,38,38,32,113,32,60,61,32,112,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,99,111,110,116,97,105,110,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,99,111,110,116,111,117,114,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,99,111,110,116,111,117,114,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,115,99,101,110,100,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,97,115,99,101,110,100,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,101,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,101,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,97,114,101,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,116,97,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,116,97,105,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,99,111,110,116,97,105,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,111,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,111,112,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,110,111,111,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,99,97,115,101,115,32,61,32,91,92,110,32,32,91,93,44,92,110,32,32,91,91,91,49,46,48,44,32,49,46,53,93,44,32,91,48,46,53,44,32,49,46,48,93,93,93,44,92,110,32,32,91,91,91,49,46,53,44,32,49,46,48,93,44,32,91,49,46,48,44,32,49,46,53,93,93,93,44,92,110,32,32,91,91,91,49,46,53,44,32,49,46,48,93,44,32,91,48,46,53,44,32,49,46,48,93,93,93,44,92,110,32,32,91,91,91,49,46,48,44,32,48,46,53,93,44,32,91,49,46,53,44,32,49,46,48,93,93,93,44,92,110,32,32,91,91,91,49,46,48,44,32,49,46,53,93,44,32,91,48,46,53,44,32,49,46,48,93,93,44,32,91,91,49,46,48,44,32,48,46,53,93,44,32,91,49,46,53,44,32,49,46,48,93,93,93,44,92,110,32,32,91,91,91,49,46,48,44,32,48,46,53,93,44,32,91,49,46,48,44,32,49,46,53,93,93,93,44,92,110,32,32,91,91,91,49,46,48,44,32,48,46,53,93,44,32,91,48,46,53,44,32,49,46,48,93,93,93,44,92,110,32,32,91,91,91,48,46,53,44,32,49,46,48,93,44,32,91,49,46,48,44,32,48,46,53,93,93,93,44,92,110,32,32,91,91,91,49,46,48,44,32,49,46,53,93,44,32,91,49,46,48,44,32,48,46,53,93,93,93,44,92,110,32,32,91,91,91,48,46,53,44,32,49,46,48,93,44,32,91,49,46,48,44,32,48,46,53,93,93,44,32,91,91,49,46,53,44,32,49,46,48,93,44,32,91,49,46,48,44,32,49,46,53,93,93,93,44,92,110,32,32,91,91,91,49,46,53,44,32,49,46,48,93,44,32,91,49,46,48,44,32,48,46,53,93,93,93,44,92,110,32,32,91,91,91,48,46,53,44,32,49,46,48,93,44,32,91,49,46,53,44,32,49,46,48,93,93,93,44,92,110,32,32,91,91,91,49,46,48,44,32,49,46,53,93,44,32,91,49,46,53,44,32,49,46,48,93,93,93,44,92,110,32,32,91,91,91,48,46,53,44,32,49,46,48,93,44,32,91,49,46,48,44,32,49,46,53,93,93,93,44,92,110,32,32,91,93,92,110,93,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,100,120,32,61,32,49,44,92,110,32,32,32,32,32,32,100,121,32,61,32,49,44,92,110,32,32,32,32,32,32,116,104,114,101,115,104,111,108,100,32,61,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,104,114,101,115,104,111,108,100,83,116,117,114,103,101,115,44,92,110,32,32,32,32,32,32,115,109,111,111,116,104,32,61,32,115,109,111,111,116,104,76,105,110,101,97,114,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,111,110,116,111,117,114,115,40,118,97,108,117,101,115,41,32,123,92,110,32,32,32,32,118,97,114,32,116,122,32,61,32,116,104,114,101,115,104,111,108,100,40,118,97,108,117,101,115,41,59,92,110,92,110,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,110,117,109,98,101,114,32,111,102,32,116,104,114,101,115,104,111,108,100,115,32,105,110,116,111,32,117,110,105,102,111,114,109,32,116,104,114,101,115,104,111,108,100,115,46,92,110,32,32,32,32,105,102,32,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,122,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,111,109,97,105,110,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,120,116,101,110,116,41,40,118,97,108,117,101,115,41,44,32,115,116,97,114,116,32,61,32,100,111,109,97,105,110,91,48,93,44,32,115,116,111,112,32,61,32,100,111,109,97,105,110,91,49,93,59,92,110,32,32,32,32,32,32,116,122,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,105,99,107,83,116,101,112,41,40,115,116,97,114,116,44,32,115,116,111,112,44,32,116,122,41,59,92,110,32,32,32,32,32,32,116,122,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,110,103,101,41,40,77,97,116,104,46,102,108,111,111,114,40,115,116,97,114,116,32,47,32,116,122,41,32,42,32,116,122,44,32,77,97,116,104,46,102,108,111,111,114,40,115,116,111,112,32,47,32,116,122,41,32,42,32,116,122,44,32,116,122,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,122,32,61,32,116,122,46,115,108,105,99,101,40,41,46,115,111,114,116,40,95,97,115,99,101,110,100,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,122,46,109,97,112,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,110,116,111,117,114,40,118,97,108,117,101,115,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,65,99,99,117,109,117,108,97,116,101,44,32,115,109,111,111,116,104,32,99,111,110,116,111,117,114,32,114,105,110,103,115,44,32,97,115,115,105,103,110,32,104,111,108,101,115,32,116,111,32,101,120,116,101,114,105,111,114,32,114,105,110,103,115,46,92,110,32,32,47,47,32,66,97,115,101,100,32,111,110,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,109,98,111,115,116,111,99,107,47,115,104,97,112,101,102,105,108,101,47,98,108,111,98,47,118,48,46,54,46,50,47,115,104,112,47,112,111,108,121,103,111,110,46,106,115,92,110,32,32,102,117,110,99,116,105,111,110,32,99,111,110,116,111,117,114,40,118,97,108,117,101,115,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,112,111,108,121,103,111,110,115,32,61,32,91,93,44,92,110,32,32,32,32,32,32,32,32,104,111,108,101,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,105,115,111,114,105,110,103,115,40,118,97,108,117,101,115,44,32,118,97,108,117,101,44,32,102,117,110,99,116,105,111,110,40,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,115,109,111,111,116,104,40,114,105,110,103,44,32,118,97,108,117,101,115,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,97,114,101,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,114,105,110,103,41,32,62,32,48,41,32,112,111,108,121,103,111,110,115,46,112,117,115,104,40,91,114,105,110,103,93,41,59,92,110,32,32,32,32,32,32,101,108,115,101,32,104,111,108,101,115,46,112,117,115,104,40,114,105,110,103,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,104,111,108,101,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,104,111,108,101,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,112,111,108,121,103,111,110,115,46,108,101,110,103,116,104,44,32,112,111,108,121,103,111,110,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,99,111,110,116,97,105,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,40,112,111,108,121,103,111,110,32,61,32,112,111,108,121,103,111,110,115,91,105,93,41,91,48,93,44,32,104,111,108,101,41,32,33,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,111,108,121,103,111,110,46,112,117,115,104,40,104,111,108,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,92,34,77,117,108,116,105,80,111,108,121,103,111,110,92,34,44,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,99,111,111,114,100,105,110,97,116,101,115,58,32,112,111,108,121,103,111,110,115,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,77,97,114,99,104,105,110,103,32,115,113,117,97,114,101,115,32,119,105,116,104,32,105,115,111,108,105,110,101,115,32,115,116,105,116,99,104,101,100,32,105,110,116,111,32,114,105,110,103,115,46,92,110,32,32,47,47,32,66,97,115,101,100,32,111,110,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,111,112,111,106,115,111,110,47,116,111,112,111,106,115,111,110,45,99,108,105,101,110,116,47,98,108,111,98,47,118,51,46,48,46,48,47,115,114,99,47,115,116,105,116,99,104,46,106,115,92,110,32,32,102,117,110,99,116,105,111,110,32,105,115,111,114,105,110,103,115,40,118,97,108,117,101,115,44,32,118,97,108,117,101,44,32,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,32,32,118,97,114,32,102,114,97,103,109,101,110,116,66,121,83,116,97,114,116,32,61,32,110,101,119,32,65,114,114,97,121,44,92,110,32,32,32,32,32,32,32,32,102,114,97,103,109,101,110,116,66,121,69,110,100,32,61,32,110,101,119,32,65,114,114,97,121,44,92,110,32,32,32,32,32,32,32,32,120,44,32,121,44,32,116,48,44,32,116,49,44,32,116,50,44,32,116,51,59,92,110,92,110,32,32,32,32,47,47,32,83,112,101,99,105,97,108,32,99,97,115,101,32,102,111,114,32,116,104,101,32,102,105,114,115,116,32,114,111,119,32,40,121,32,61,32,45,49,44,32,116,50,32,61,32,116,51,32,61,32,48,41,46,92,110,32,32,32,32,120,32,61,32,121,32,61,32,45,49,59,92,110,32,32,32,32,116,49,32,61,32,118,97,108,117,101,115,91,48,93,32,62,61,32,118,97,108,117,101,59,92,110,32,32,32,32,99,97,115,101,115,91,116,49,32,60,60,32,49,93,46,102,111,114,69,97,99,104,40,115,116,105,116,99,104,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,120,32,60,32,100,120,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,116,48,32,61,32,116,49,44,32,116,49,32,61,32,118,97,108,117,101,115,91,120,32,43,32,49,93,32,62,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,99,97,115,101,115,91,116,48,32,124,32,116,49,32,60,60,32,49,93,46,102,111,114,69,97,99,104,40,115,116,105,116,99,104,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,99,97,115,101,115,91,116,49,32,60,60,32,48,93,46,102,111,114,69,97,99,104,40,115,116,105,116,99,104,41,59,92,110,92,110,32,32,32,32,47,47,32,71,101,110,101,114,97,108,32,99,97,115,101,32,102,111,114,32,116,104,101,32,105,110,116,101,114,109,101,100,105,97,116,101,32,114,111,119,115,46,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,121,32,60,32,100,121,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,120,32,61,32,45,49,59,92,110,32,32,32,32,32,32,116,49,32,61,32,118,97,108,117,101,115,91,121,32,42,32,100,120,32,43,32,100,120,93,32,62,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,116,50,32,61,32,118,97,108,117,101,115,91,121,32,42,32,100,120,93,32,62,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,99,97,115,101,115,91,116,49,32,60,60,32,49,32,124,32,116,50,32,60,60,32,50,93,46,102,111,114,69,97,99,104,40,115,116,105,116,99,104,41,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,120,32,60,32,100,120,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,116,48,32,61,32,116,49,44,32,116,49,32,61,32,118,97,108,117,101,115,91,121,32,42,32,100,120,32,43,32,100,120,32,43,32,120,32,43,32,49,93,32,62,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,116,51,32,61,32,116,50,44,32,116,50,32,61,32,118,97,108,117,101,115,91,121,32,42,32,100,120,32,43,32,120,32,43,32,49,93,32,62,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,99,97,115,101,115,91,116,48,32,124,32,116,49,32,60,60,32,49,32,124,32,116,50,32,60,60,32,50,32,124,32,116,51,32,60,60,32,51,93,46,102,111,114,69,97,99,104,40,115,116,105,116,99,104,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,97,115,101,115,91,116,49,32,124,32,116,50,32,60,60,32,51,93,46,102,111,114,69,97,99,104,40,115,116,105,116,99,104,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,83,112,101,99,105,97,108,32,99,97,115,101,32,102,111,114,32,116,104,101,32,108,97,115,116,32,114,111,119,32,40,121,32,61,32,100,121,32,45,32,49,44,32,116,48,32,61,32,116,49,32,61,32,48,41,46,92,110,32,32,32,32,120,32,61,32,45,49,59,92,110,32,32,32,32,116,50,32,61,32,118,97,108,117,101,115,91,121,32,42,32,100,120,93,32,62,61,32,118,97,108,117,101,59,92,110,32,32,32,32,99,97,115,101,115,91,116,50,32,60,60,32,50,93,46,102,111,114,69,97,99,104,40,115,116,105,116,99,104,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,120,32,60,32,100,120,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,116,51,32,61,32,116,50,44,32,116,50,32,61,32,118,97,108,117,101,115,91,121,32,42,32,100,120,32,43,32,120,32,43,32,49,93,32,62,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,99,97,115,101,115,91,116,50,32,60,60,32,50,32,124,32,116,51,32,60,60,32,51,93,46,102,111,114,69,97,99,104,40,115,116,105,116,99,104,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,99,97,115,101,115,91,116,50,32,60,60,32,51,93,46,102,111,114,69,97,99,104,40,115,116,105,116,99,104,41,59,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,116,105,116,99,104,40,108,105,110,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,114,116,32,61,32,91,108,105,110,101,91,48,93,91,48,93,32,43,32,120,44,32,108,105,110,101,91,48,93,91,49,93,32,43,32,121,93,44,92,110,32,32,32,32,32,32,32,32,32,32,101,110,100,32,61,32,91,108,105,110,101,91,49,93,91,48,93,32,43,32,120,44,32,108,105,110,101,91,49,93,91,49,93,32,43,32,121,93,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,73,110,100,101,120,32,61,32,105,110,100,101,120,40,115,116,97,114,116,41,44,92,110,32,32,32,32,32,32,32,32,32,32,101,110,100,73,110,100,101,120,32,61,32,105,110,100,101,120,40,101,110,100,41,44,92,110,32,32,32,32,32,32,32,32,32,32,102,44,32,103,59,92,110,32,32,32,32,32,32,105,102,32,40,102,32,61,32,102,114,97,103,109,101,110,116,66,121,69,110,100,91,115,116,97,114,116,73,110,100,101,120,93,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,103,32,61,32,102,114,97,103,109,101,110,116,66,121,83,116,97,114,116,91,101,110,100,73,110,100,101,120,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,102,114,97,103,109,101,110,116,66,121,69,110,100,91,102,46,101,110,100,93,59,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,102,114,97,103,109,101,110,116,66,121,83,116,97,114,116,91,103,46,115,116,97,114,116,93,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,102,32,61,61,61,32,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,46,114,105,110,103,46,112,117,115,104,40,101,110,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,98,97,99,107,40,102,46,114,105,110,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,114,97,103,109,101,110,116,66,121,83,116,97,114,116,91,102,46,115,116,97,114,116,93,32,61,32,102,114,97,103,109,101,110,116,66,121,69,110,100,91,103,46,101,110,100,93,32,61,32,123,115,116,97,114,116,58,32,102,46,115,116,97,114,116,44,32,101,110,100,58,32,103,46,101,110,100,44,32,114,105,110,103,58,32,102,46,114,105,110,103,46,99,111,110,99,97,116,40,103,46,114,105,110,103,41,125,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,102,114,97,103,109,101,110,116,66,121,69,110,100,91,102,46,101,110,100,93,59,92,110,32,32,32,32,32,32,32,32,32,32,102,46,114,105,110,103,46,112,117,115,104,40,101,110,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,102,114,97,103,109,101,110,116,66,121,69,110,100,91,102,46,101,110,100,32,61,32,101,110,100,73,110,100,101,120,93,32,61,32,102,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,102,32,61,32,102,114,97,103,109,101,110,116,66,121,83,116,97,114,116,91,101,110,100,73,110,100,101,120,93,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,103,32,61,32,102,114,97,103,109,101,110,116,66,121,69,110,100,91,115,116,97,114,116,73,110,100,101,120,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,102,114,97,103,109,101,110,116,66,121,83,116,97,114,116,91,102,46,115,116,97,114,116,93,59,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,102,114,97,103,109,101,110,116,66,121,69,110,100,91,103,46,101,110,100,93,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,102,32,61,61,61,32,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,46,114,105,110,103,46,112,117,115,104,40,101,110,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,98,97,99,107,40,102,46,114,105,110,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,114,97,103,109,101,110,116,66,121,83,116,97,114,116,91,103,46,115,116,97,114,116,93,32,61,32,102,114,97,103,109,101,110,116,66,121,69,110,100,91,102,46,101,110,100,93,32,61,32,123,115,116,97,114,116,58,32,103,46,115,116,97,114,116,44,32,101,110,100,58,32,102,46,101,110,100,44,32,114,105,110,103,58,32,103,46,114,105,110,103,46,99,111,110,99,97,116,40,102,46,114,105,110,103,41,125,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,102,114,97,103,109,101,110,116,66,121,83,116,97,114,116,91,102,46,115,116,97,114,116,93,59,92,110,32,32,32,32,32,32,32,32,32,32,102,46,114,105,110,103,46,117,110,115,104,105,102,116,40,115,116,97,114,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,102,114,97,103,109,101,110,116,66,121,83,116,97,114,116,91,102,46,115,116,97,114,116,32,61,32,115,116,97,114,116,73,110,100,101,120,93,32,61,32,102,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,102,114,97,103,109,101,110,116,66,121,83,116,97,114,116,91,115,116,97,114,116,73,110,100,101,120,93,32,61,32,102,114,97,103,109,101,110,116,66,121,69,110,100,91,101,110,100,73,110,100,101,120,93,32,61,32,123,115,116,97,114,116,58,32,115,116,97,114,116,73,110,100,101,120,44,32,101,110,100,58,32,101,110,100,73,110,100,101,120,44,32,114,105,110,103,58,32,91,115,116,97,114,116,44,32,101,110,100,93,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,100,101,120,40,112,111,105,110,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,111,105,110,116,91,48,93,32,42,32,50,32,43,32,112,111,105,110,116,91,49,93,32,42,32,40,100,120,32,43,32,49,41,32,42,32,52,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,109,111,111,116,104,76,105,110,101,97,114,40,114,105,110,103,44,32,118,97,108,117,101,115,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,105,110,103,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,120,32,61,32,112,111,105,110,116,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,121,32,61,32,112,111,105,110,116,91,49,93,44,92,110,32,32,32,32,32,32,32,32,32,32,120,116,32,61,32,120,32,124,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,121,116,32,61,32,121,32,124,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,118,48,44,92,110,32,32,32,32,32,32,32,32,32,32,118,49,32,61,32,118,97,108,117,101,115,91,121,116,32,42,32,100,120,32,43,32,120,116,93,59,92,110,32,32,32,32,32,32,105,102,32,40,120,32,62,32,48,32,38,38,32,120,32,60,32,100,120,32,38,38,32,120,116,32,61,61,61,32,120,41,32,123,92,110,32,32,32,32,32,32,32,32,118,48,32,61,32,118,97,108,117,101,115,91,121,116,32,42,32,100,120,32,43,32,120,116,32,45,32,49,93,59,92,110,32,32,32,32,32,32,32,32,112,111,105,110,116,91,48,93,32,61,32,120,32,43,32,40,118,97,108,117,101,32,45,32,118,48,41,32,47,32,40,118,49,32,45,32,118,48,41,32,45,32,48,46,53,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,121,32,62,32,48,32,38,38,32,121,32,60,32,100,121,32,38,38,32,121,116,32,61,61,61,32,121,41,32,123,92,110,32,32,32,32,32,32,32,32,118,48,32,61,32,118,97,108,117,101,115,91,40,121,116,32,45,32,49,41,32,42,32,100,120,32,43,32,120,116,93,59,92,110,32,32,32,32,32,32,32,32,112,111,105,110,116,91,49,93,32,61,32,121,32,43,32,40,118,97,108,117,101,32,45,32,118,48,41,32,47,32,40,118,49,32,45,32,118,48,41,32,45,32,48,46,53,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,99,111,110,116,111,117,114,115,46,99,111,110,116,111,117,114,32,61,32,99,111,110,116,111,117,114,59,92,110,92,110,32,32,99,111,110,116,111,117,114,115,46,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,91,100,120,44,32,100,121,93,59,92,110,32,32,32,32,118,97,114,32,95,48,32,61,32,77,97,116,104,46,99,101,105,108,40,95,91,48,93,41,44,32,95,49,32,61,32,77,97,116,104,46,99,101,105,108,40,95,91,49,93,41,59,92,110,32,32,32,32,105,102,32,40,33,40,95,48,32,62,32,48,41,32,124,124,32,33,40,95,49,32,62,32,48,41,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,105,110,118,97,108,105,100,32,115,105,122,101,92,34,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,100,120,32,61,32,95,48,44,32,100,121,32,61,32,95,49,44,32,99,111,110,116,111,117,114,115,59,92,110,32,32,125,59,92,110,92,110,32,32,99,111,110,116,111,117,114,115,46,116,104,114,101,115,104,111,108,100,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,104,114,101,115,104,111,108,100,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,95,41,32,63,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,108,105,99,101,46,99,97,108,108,40,95,41,41,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,41,44,32,99,111,110,116,111,117,114,115,41,32,58,32,116,104,114,101,115,104,111,108,100,59,92,110,32,32,125,59,92,110,92,110,32,32,99,111,110,116,111,117,114,115,46,115,109,111,111,116,104,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,109,111,111,116,104,32,61,32,95,32,63,32,115,109,111,111,116,104,76,105,110,101,97,114,32,58,32,95,110,111,111,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,99,111,110,116,111,117,114,115,41,32,58,32,115,109,111,111,116,104,32,61,61,61,32,115,109,111,111,116,104,76,105,110,101,97,114,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,111,110,116,111,117,114,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,99,111,110,116,111,117,114,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,100,101,110,115,105,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,100,101,110,115,105,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,108,117,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,108,117,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,98,108,117,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,116,111,117,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,116,111,117,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,99,111,110,116,111,117,114,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,88,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,91,48,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,89,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,91,49,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,87,101,105,103,104,116,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,49,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,120,32,61,32,100,101,102,97,117,108,116,88,44,92,110,32,32,32,32,32,32,121,32,61,32,100,101,102,97,117,108,116,89,44,92,110,32,32,32,32,32,32,119,101,105,103,104,116,32,61,32,100,101,102,97,117,108,116,87,101,105,103,104,116,44,92,110,32,32,32,32,32,32,100,120,32,61,32,57,54,48,44,92,110,32,32,32,32,32,32,100,121,32,61,32,53,48,48,44,92,110,32,32,32,32,32,32,114,32,61,32,50,48,44,32,47,47,32,98,108,117,114,32,114,97,100,105,117,115,92,110,32,32,32,32,32,32,107,32,61,32,50,44,32,47,47,32,108,111,103,50,40,103,114,105,100,32,99,101,108,108,32,115,105,122,101,41,92,110,32,32,32,32,32,32,111,32,61,32,114,32,42,32,51,44,32,47,47,32,103,114,105,100,32,111,102,102,115,101,116,44,32,116,111,32,112,97,100,32,102,111,114,32,98,108,117,114,92,110,32,32,32,32,32,32,110,32,61,32,40,100,120,32,43,32,111,32,42,32,50,41,32,62,62,32,107,44,32,47,47,32,103,114,105,100,32,119,105,100,116,104,92,110,32,32,32,32,32,32,109,32,61,32,40,100,121,32,43,32,111,32,42,32,50,41,32,62,62,32,107,44,32,47,47,32,103,114,105,100,32,104,101,105,103,104,116,92,110,32,32,32,32,32,32,116,104,114,101,115,104,111,108,100,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,50,48,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,100,101,110,115,105,116,121,40,100,97,116,97,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,115,48,32,61,32,110,101,119,32,70,108,111,97,116,51,50,65,114,114,97,121,40,110,32,42,32,109,41,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,115,49,32,61,32,110,101,119,32,70,108,111,97,116,51,50,65,114,114,97,121,40,110,32,42,32,109,41,59,92,110,92,110,32,32,32,32,100,97,116,97,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,100,44,32,105,44,32,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,120,105,32,61,32,40,43,120,40,100,44,32,105,44,32,100,97,116,97,41,32,43,32,111,41,32,62,62,32,107,44,92,110,32,32,32,32,32,32,32,32,32,32,121,105,32,61,32,40,43,121,40,100,44,32,105,44,32,100,97,116,97,41,32,43,32,111,41,32,62,62,32,107,44,92,110,32,32,32,32,32,32,32,32,32,32,119,105,32,61,32,43,119,101,105,103,104,116,40,100,44,32,105,44,32,100,97,116,97,41,59,92,110,32,32,32,32,32,32,105,102,32,40,120,105,32,62,61,32,48,32,38,38,32,120,105,32,60,32,110,32,38,38,32,121,105,32,62,61,32,48,32,38,38,32,121,105,32,60,32,109,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,115,48,91,120,105,32,43,32,121,105,32,42,32,110,93,32,43,61,32,119,105,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,47,32,84,79,68,79,32,79,112,116,105,109,105,122,101,46,92,110,32,32,32,32,40,48,44,95,98,108,117,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,98,108,117,114,88,41,40,123,119,105,100,116,104,58,32,110,44,32,104,101,105,103,104,116,58,32,109,44,32,100,97,116,97,58,32,118,97,108,117,101,115,48,125,44,32,123,119,105,100,116,104,58,32,110,44,32,104,101,105,103,104,116,58,32,109,44,32,100,97,116,97,58,32,118,97,108,117,101,115,49,125,44,32,114,32,62,62,32,107,41,59,92,110,32,32,32,32,40,48,44,95,98,108,117,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,98,108,117,114,89,41,40,123,119,105,100,116,104,58,32,110,44,32,104,101,105,103,104,116,58,32,109,44,32,100,97,116,97,58,32,118,97,108,117,101,115,49,125,44,32,123,119,105,100,116,104,58,32,110,44,32,104,101,105,103,104,116,58,32,109,44,32,100,97,116,97,58,32,118,97,108,117,101,115,48,125,44,32,114,32,62,62,32,107,41,59,92,110,32,32,32,32,40,48,44,95,98,108,117,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,98,108,117,114,88,41,40,123,119,105,100,116,104,58,32,110,44,32,104,101,105,103,104,116,58,32,109,44,32,100,97,116,97,58,32,118,97,108,117,101,115,48,125,44,32,123,119,105,100,116,104,58,32,110,44,32,104,101,105,103,104,116,58,32,109,44,32,100,97,116,97,58,32,118,97,108,117,101,115,49,125,44,32,114,32,62,62,32,107,41,59,92,110,32,32,32,32,40,48,44,95,98,108,117,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,98,108,117,114,89,41,40,123,119,105,100,116,104,58,32,110,44,32,104,101,105,103,104,116,58,32,109,44,32,100,97,116,97,58,32,118,97,108,117,101,115,49,125,44,32,123,119,105,100,116,104,58,32,110,44,32,104,101,105,103,104,116,58,32,109,44,32,100,97,116,97,58,32,118,97,108,117,101,115,48,125,44,32,114,32,62,62,32,107,41,59,92,110,32,32,32,32,40,48,44,95,98,108,117,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,98,108,117,114,88,41,40,123,119,105,100,116,104,58,32,110,44,32,104,101,105,103,104,116,58,32,109,44,32,100,97,116,97,58,32,118,97,108,117,101,115,48,125,44,32,123,119,105,100,116,104,58,32,110,44,32,104,101,105,103,104,116,58,32,109,44,32,100,97,116,97,58,32,118,97,108,117,101,115,49,125,44,32,114,32,62,62,32,107,41,59,92,110,32,32,32,32,40,48,44,95,98,108,117,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,98,108,117,114,89,41,40,123,119,105,100,116,104,58,32,110,44,32,104,101,105,103,104,116,58,32,109,44,32,100,97,116,97,58,32,118,97,108,117,101,115,49,125,44,32,123,119,105,100,116,104,58,32,110,44,32,104,101,105,103,104,116,58,32,109,44,32,100,97,116,97,58,32,118,97,108,117,101,115,48,125,44,32,114,32,62,62,32,107,41,59,92,110,92,110,32,32,32,32,118,97,114,32,116,122,32,61,32,116,104,114,101,115,104,111,108,100,40,118,97,108,117,101,115,48,41,59,92,110,92,110,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,110,117,109,98,101,114,32,111,102,32,116,104,114,101,115,104,111,108,100,115,32,105,110,116,111,32,117,110,105,102,111,114,109,32,116,104,114,101,115,104,111,108,100,115,46,92,110,32,32,32,32,105,102,32,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,122,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,116,111,112,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,120,41,40,118,97,108,117,101,115,48,41,59,92,110,32,32,32,32,32,32,116,122,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,105,99,107,83,116,101,112,41,40,48,44,32,115,116,111,112,44,32,116,122,41,59,92,110,32,32,32,32,32,32,116,122,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,110,103,101,41,40,48,44,32,77,97,116,104,46,102,108,111,111,114,40,115,116,111,112,32,47,32,116,122,41,32,42,32,116,122,44,32,116,122,41,59,92,110,32,32,32,32,32,32,116,122,46,115,104,105,102,116,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,99,111,110,116,111,117,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,92,110,32,32,32,32,32,32,32,32,46,116,104,114,101,115,104,111,108,100,115,40,116,122,41,92,110,32,32,32,32,32,32,32,32,46,115,105,122,101,40,91,110,44,32,109,93,41,92,110,32,32,32,32,32,32,40,118,97,108,117,101,115,48,41,92,110,32,32,32,32,32,32,32,32,46,109,97,112,40,116,114,97,110,115,102,111,114,109,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,40,103,101,111,109,101,116,114,121,41,32,123,92,110,32,32,32,32,103,101,111,109,101,116,114,121,46,118,97,108,117,101,32,42,61,32,77,97,116,104,46,112,111,119,40,50,44,32,45,50,32,42,32,107,41,59,32,47,47,32,68,101,110,115,105,116,121,32,105,110,32,112,111,105,110,116,115,32,112,101,114,32,115,113,117,97,114,101,32,112,105,120,101,108,46,92,110,32,32,32,32,103,101,111,109,101,116,114,121,46,99,111,111,114,100,105,110,97,116,101,115,46,102,111,114,69,97,99,104,40,116,114,97,110,115,102,111,114,109,80,111,108,121,103,111,110,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,103,101,111,109,101,116,114,121,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,80,111,108,121,103,111,110,40,99,111,111,114,100,105,110,97,116,101,115,41,32,123,92,110,32,32,32,32,99,111,111,114,100,105,110,97,116,101,115,46,102,111,114,69,97,99,104,40,116,114,97,110,115,102,111,114,109,82,105,110,103,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,82,105,110,103,40,99,111,111,114,100,105,110,97,116,101,115,41,32,123,92,110,32,32,32,32,99,111,111,114,100,105,110,97,116,101,115,46,102,111,114,69,97,99,104,40,116,114,97,110,115,102,111,114,109,80,111,105,110,116,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,84,79,68,79,32,79,112,116,105,109,105,122,101,46,92,110,32,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,80,111,105,110,116,40,99,111,111,114,100,105,110,97,116,101,115,41,32,123,92,110,32,32,32,32,99,111,111,114,100,105,110,97,116,101,115,91,48,93,32,61,32,99,111,111,114,100,105,110,97,116,101,115,91,48,93,32,42,32,77,97,116,104,46,112,111,119,40,50,44,32,107,41,32,45,32,111,59,92,110,32,32,32,32,99,111,111,114,100,105,110,97,116,101,115,91,49,93,32,61,32,99,111,111,114,100,105,110,97,116,101,115,91,49,93,32,42,32,77,97,116,104,46,112,111,119,40,50,44,32,107,41,32,45,32,111,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,115,105,122,101,40,41,32,123,92,110,32,32,32,32,111,32,61,32,114,32,42,32,51,59,92,110,32,32,32,32,110,32,61,32,40,100,120,32,43,32,111,32,42,32,50,41,32,62,62,32,107,59,92,110,32,32,32,32,109,32,61,32,40,100,121,32,43,32,111,32,42,32,50,41,32,62,62,32,107,59,92,110,32,32,32,32,114,101,116,117,114,110,32,100,101,110,115,105,116,121,59,92,110,32,32,125,92,110,92,110,32,32,100,101,110,115,105,116,121,46,120,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,120,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,100,101,110,115,105,116,121,41,32,58,32,120,59,92,110,32,32,125,59,92,110,92,110,32,32,100,101,110,115,105,116,121,46,121,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,121,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,100,101,110,115,105,116,121,41,32,58,32,121,59,92,110,32,32,125,59,92,110,92,110,32,32,100,101,110,115,105,116,121,46,119,101,105,103,104,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,119,101,105,103,104,116,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,100,101,110,115,105,116,121,41,32,58,32,119,101,105,103,104,116,59,92,110,32,32,125,59,92,110,92,110,32,32,100,101,110,115,105,116,121,46,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,91,100,120,44,32,100,121,93,59,92,110,32,32,32,32,118,97,114,32,95,48,32,61,32,77,97,116,104,46,99,101,105,108,40,95,91,48,93,41,44,32,95,49,32,61,32,77,97,116,104,46,99,101,105,108,40,95,91,49,93,41,59,92,110,32,32,32,32,105,102,32,40,33,40,95,48,32,62,61,32,48,41,32,38,38,32,33,40,95,48,32,62,61,32,48,41,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,105,110,118,97,108,105,100,32,115,105,122,101,92,34,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,100,120,32,61,32,95,48,44,32,100,121,32,61,32,95,49,44,32,114,101,115,105,122,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,100,101,110,115,105,116,121,46,99,101,108,108,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,49,32,60,60,32,107,59,92,110,32,32,32,32,105,102,32,40,33,40,40,95,32,61,32,43,95,41,32,62,61,32,49,41,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,105,110,118,97,108,105,100,32,99,101,108,108,32,115,105,122,101,92,34,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,107,32,61,32,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,95,41,32,47,32,77,97,116,104,46,76,78,50,41,44,32,114,101,115,105,122,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,100,101,110,115,105,116,121,46,116,104,114,101,115,104,111,108,100,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,104,114,101,115,104,111,108,100,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,95,41,32,63,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,108,105,99,101,46,99,97,108,108,40,95,41,41,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,41,44,32,100,101,110,115,105,116,121,41,32,58,32,116,104,114,101,115,104,111,108,100,59,92,110,32,32,125,59,92,110,92,110,32,32,100,101,110,115,105,116,121,46,98,97,110,100,119,105,100,116,104,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,77,97,116,104,46,115,113,114,116,40,114,32,42,32,40,114,32,43,32,49,41,41,59,92,110,32,32,32,32,105,102,32,40,33,40,40,95,32,61,32,43,95,41,32,62,61,32,48,41,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,105,110,118,97,108,105,100,32,98,97,110,100,119,105,100,116,104,92,34,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,32,61,32,77,97,116,104,46,114,111,117,110,100,40,40,77,97,116,104,46,115,113,114,116,40,52,32,42,32,95,32,42,32,95,32,43,32,49,41,32,45,32,49,41,32,47,32,50,41,44,32,114,101,115,105,122,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,100,101,110,115,105,116,121,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,100,101,110,115,105,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,110,116,111,117,114,68,101,110,115,105,116,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,101,110,115,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,110,116,111,117,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,110,116,111,117,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,116,111,117,114,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,116,111,117,114,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,99,111,110,116,111,117,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,110,115,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,110,115,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,100,101,110,115,105,116,121,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,110,111,111,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,110,111,111,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,110,111,111,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,105,115,112,97,116,99,104,47,115,114,99,47,100,105,115,112,97,116,99,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,105,115,112,97,116,99,104,47,115,114,99,47,100,105,115,112,97,116,99,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,118,97,114,32,110,111,111,112,32,61,32,123,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,40,41,32,123,125,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,100,105,115,112,97,116,99,104,40,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,32,95,32,61,32,123,125,44,32,116,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,116,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,32,43,32,92,34,92,34,41,32,124,124,32,40,116,32,105,110,32,95,41,32,124,124,32,47,91,92,92,115,46,93,47,46,116,101,115,116,40,116,41,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,105,108,108,101,103,97,108,32,116,121,112,101,58,32,92,34,32,43,32,116,41,59,92,110,32,32,32,32,95,91,116,93,32,61,32,91,93,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,68,105,115,112,97,116,99,104,40,95,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,68,105,115,112,97,116,99,104,40,95,41,32,123,92,110,32,32,116,104,105,115,46,95,32,61,32,95,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,84,121,112,101,110,97,109,101,115,40,116,121,112,101,110,97,109,101,115,44,32,116,121,112,101,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,110,97,109,101,115,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,92,115,43,47,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,92,34,92,34,44,32,105,32,61,32,116,46,105,110,100,101,120,79,102,40,92,34,46,92,34,41,59,92,110,32,32,32,32,105,102,32,40,105,32,62,61,32,48,41,32,110,97,109,101,32,61,32,116,46,115,108,105,99,101,40,105,32,43,32,49,41,44,32,116,32,61,32,116,46,115,108,105,99,101,40,48,44,32,105,41,59,92,110,32,32,32,32,105,102,32,40,116,32,38,38,32,33,116,121,112,101,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,117,110,107,110,111,119,110,32,116,121,112,101,58,32,92,34,32,43,32,116,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,116,121,112,101,58,32,116,44,32,110,97,109,101,58,32,110,97,109,101,125,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,68,105,115,112,97,116,99,104,46,112,114,111,116,111,116,121,112,101,32,61,32,100,105,115,112,97,116,99,104,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,68,105,115,112,97,116,99,104,44,92,110,32,32,111,110,58,32,102,117,110,99,116,105,111,110,40,116,121,112,101,110,97,109,101,44,32,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,32,32,118,97,114,32,95,32,61,32,116,104,105,115,46,95,44,92,110,32,32,32,32,32,32,32,32,84,32,61,32,112,97,114,115,101,84,121,112,101,110,97,109,101,115,40,116,121,112,101,110,97,109,101,32,43,32,92,34,92,34,44,32,95,41,44,92,110,32,32,32,32,32,32,32,32,116,44,92,110,32,32,32,32,32,32,32,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,84,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,47,47,32,73,102,32,110,111,32,99,97,108,108,98,97,99,107,32,119,97,115,32,115,112,101,99,105,102,105,101,100,44,32,114,101,116,117,114,110,32,116,104,101,32,99,97,108,108,98,97,99,107,32,111,102,32,116,104,101,32,103,105,118,101,110,32,116,121,112,101,32,97,110,100,32,110,97,109,101,46,92,110,32,32,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,50,41,32,123,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,105,102,32,40,40,116,32,61,32,40,116,121,112,101,110,97,109,101,32,61,32,84,91,105,93,41,46,116,121,112,101,41,32,38,38,32,40,116,32,61,32,103,101,116,40,95,91,116,93,44,32,116,121,112,101,110,97,109,101,46,110,97,109,101,41,41,41,32,114,101,116,117,114,110,32,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,73,102,32,97,32,116,121,112,101,32,119,97,115,32,115,112,101,99,105,102,105,101,100,44,32,115,101,116,32,116,104,101,32,99,97,108,108,98,97,99,107,32,102,111,114,32,116,104,101,32,103,105,118,101,110,32,116,121,112,101,32,97,110,100,32,110,97,109,101,46,92,110,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,105,102,32,97,32,110,117,108,108,32,99,97,108,108,98,97,99,107,32,119,97,115,32,115,112,101,99,105,102,105,101,100,44,32,114,101,109,111,118,101,32,99,97,108,108,98,97,99,107,115,32,111,102,32,116,104,101,32,103,105,118,101,110,32,110,97,109,101,46,92,110,32,32,32,32,105,102,32,40,99,97,108,108,98,97,99,107,32,33,61,32,110,117,108,108,32,38,38,32,116,121,112,101,111,102,32,99,97,108,108,98,97,99,107,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,105,110,118,97,108,105,100,32,99,97,108,108,98,97,99,107,58,32,92,34,32,43,32,99,97,108,108,98,97,99,107,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,32,61,32,40,116,121,112,101,110,97,109,101,32,61,32,84,91,105,93,41,46,116,121,112,101,41,32,95,91,116,93,32,61,32,115,101,116,40,95,91,116,93,44,32,116,121,112,101,110,97,109,101,46,110,97,109,101,44,32,99,97,108,108,98,97,99,107,41,59,92,110,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,99,97,108,108,98,97,99,107,32,61,61,32,110,117,108,108,41,32,102,111,114,32,40,116,32,105,110,32,95,41,32,95,91,116,93,32,61,32,115,101,116,40,95,91,116,93,44,32,116,121,112,101,110,97,109,101,46,110,97,109,101,44,32,110,117,108,108,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,44,92,110,32,32,99,111,112,121,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,99,111,112,121,32,61,32,123,125,44,32,95,32,61,32,116,104,105,115,46,95,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,116,32,105,110,32,95,41,32,99,111,112,121,91,116,93,32,61,32,95,91,116,93,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,68,105,115,112,97,116,99,104,40,99,111,112,121,41,59,92,110,32,32,125,44,92,110,32,32,99,97,108,108,58,32,102,117,110,99,116,105,111,110,40,116,121,112,101,44,32,116,104,97,116,41,32,123,92,110,32,32,32,32,105,102,32,40,40,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,45,32,50,41,32,62,32,48,41,32,102,111,114,32,40,118,97,114,32,97,114,103,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,32,105,32,61,32,48,44,32,110,44,32,116,59,32,105,32,60,32,110,59,32,43,43,105,41,32,97,114,103,115,91,105,93,32,61,32,97,114,103,117,109,101,110,116,115,91,105,32,43,32,50,93,59,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,121,112,101,41,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,117,110,107,110,111,119,110,32,116,121,112,101,58,32,92,34,32,43,32,116,121,112,101,41,59,92,110,32,32,32,32,102,111,114,32,40,116,32,61,32,116,104,105,115,46,95,91,116,121,112,101,93,44,32,105,32,61,32,48,44,32,110,32,61,32,116,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,116,91,105,93,46,118,97,108,117,101,46,97,112,112,108,121,40,116,104,97,116,44,32,97,114,103,115,41,59,92,110,32,32,125,44,92,110,32,32,97,112,112,108,121,58,32,102,117,110,99,116,105,111,110,40,116,121,112,101,44,32,116,104,97,116,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,121,112,101,41,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,117,110,107,110,111,119,110,32,116,121,112,101,58,32,92,34,32,43,32,116,121,112,101,41,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,116,32,61,32,116,104,105,115,46,95,91,116,121,112,101,93,44,32,105,32,61,32,48,44,32,110,32,61,32,116,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,116,91,105,93,46,118,97,108,117,101,46,97,112,112,108,121,40,116,104,97,116,44,32,97,114,103,115,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,40,116,121,112,101,44,32,110,97,109,101,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,116,121,112,101,46,108,101,110,103,116,104,44,32,99,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,40,99,32,61,32,116,121,112,101,91,105,93,41,46,110,97,109,101,32,61,61,61,32,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,46,118,97,108,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,40,116,121,112,101,44,32,110,97,109,101,44,32,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,116,121,112,101,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,116,121,112,101,91,105,93,46,110,97,109,101,32,61,61,61,32,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,116,121,112,101,91,105,93,32,61,32,110,111,111,112,44,32,116,121,112,101,32,61,32,116,121,112,101,46,115,108,105,99,101,40,48,44,32,105,41,46,99,111,110,99,97,116,40,116,121,112,101,46,115,108,105,99,101,40,105,32,43,32,49,41,41,59,92,110,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,105,102,32,40,99,97,108,108,98,97,99,107,32,33,61,32,110,117,108,108,41,32,116,121,112,101,46,112,117,115,104,40,123,110,97,109,101,58,32,110,97,109,101,44,32,118,97,108,117,101,58,32,99,97,108,108,98,97,99,107,125,41,59,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,100,105,115,112,97,116,99,104,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,105,115,112,97,116,99,104,47,115,114,99,47,100,105,115,112,97,116,99,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,105,115,112,97,116,99,104,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,105,115,112,97,116,99,104,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,105,115,112,97,116,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,115,112,97,116,99,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,115,112,97,116,99,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,115,112,97,116,99,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,105,115,112,97,116,99,104,47,115,114,99,47,100,105,115,112,97,116,99,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,105,115,112,97,116,99,104,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,100,114,97,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,100,114,97,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,100,105,115,112,97,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,100,105,115,112,97,116,99,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,105,115,112,97,116,99,104,47,115,114,99,47,100,105,115,112,97,116,99,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,109,111,117,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,116,111,117,99,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,114,97,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,100,114,97,103,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,110,111,100,114,97,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,101,118,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,110,111,101,118,101,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,118,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,101,118,101,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,32,73,103,110,111,114,101,32,114,105,103,104,116,45,99,108,105,99,107,44,32,115,105,110,99,101,32,116,104,97,116,32,115,104,111,117,108,100,32,111,112,101,110,32,116,104,101,32,99,111,110,116,101,120,116,32,109,101,110,117,46,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,70,105,108,116,101,114,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,99,116,114,108,75,101,121,32,38,38,32,33,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,98,117,116,116,111,110,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,67,111,110,116,97,105,110,101,114,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,83,117,98,106,101,99,116,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,32,61,61,32,110,117,108,108,32,63,32,123,120,58,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,120,44,32,121,58,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,121,125,32,58,32,100,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,84,111,117,99,104,97,98,108,101,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,32,124,124,32,40,92,34,111,110,116,111,117,99,104,115,116,97,114,116,92,34,32,105,110,32,116,104,105,115,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,102,105,108,116,101,114,32,61,32,100,101,102,97,117,108,116,70,105,108,116,101,114,44,92,110,32,32,32,32,32,32,99,111,110,116,97,105,110,101,114,32,61,32,100,101,102,97,117,108,116,67,111,110,116,97,105,110,101,114,44,92,110,32,32,32,32,32,32,115,117,98,106,101,99,116,32,61,32,100,101,102,97,117,108,116,83,117,98,106,101,99,116,44,92,110,32,32,32,32,32,32,116,111,117,99,104,97,98,108,101,32,61,32,100,101,102,97,117,108,116,84,111,117,99,104,97,98,108,101,44,92,110,32,32,32,32,32,32,103,101,115,116,117,114,101,115,32,61,32,123,125,44,92,110,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,32,61,32,40,48,44,100,51,95,100,105,115,112,97,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,115,116,97,114,116,92,34,44,32,92,34,100,114,97,103,92,34,44,32,92,34,101,110,100,92,34,41,44,92,110,32,32,32,32,32,32,97,99,116,105,118,101,32,61,32,48,44,92,110,32,32,32,32,32,32,109,111,117,115,101,100,111,119,110,120,44,92,110,32,32,32,32,32,32,109,111,117,115,101,100,111,119,110,121,44,92,110,32,32,32,32,32,32,109,111,117,115,101,109,111,118,105,110,103,44,92,110,32,32,32,32,32,32,116,111,117,99,104,101,110,100,105,110,103,44,92,110,32,32,32,32,32,32,99,108,105,99,107,68,105,115,116,97,110,99,101,50,32,61,32,48,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,100,114,97,103,40,115,101,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,115,101,108,101,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,109,111,117,115,101,100,111,119,110,46,100,114,97,103,92,34,44,32,109,111,117,115,101,100,111,119,110,101,100,41,92,110,32,32,32,32,32,32,46,102,105,108,116,101,114,40,116,111,117,99,104,97,98,108,101,41,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,116,111,117,99,104,115,116,97,114,116,46,100,114,97,103,92,34,44,32,116,111,117,99,104,115,116,97,114,116,101,100,41,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,116,111,117,99,104,109,111,118,101,46,100,114,97,103,92,34,44,32,116,111,117,99,104,109,111,118,101,100,41,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,116,111,117,99,104,101,110,100,46,100,114,97,103,32,116,111,117,99,104,99,97,110,99,101,108,46,100,114,97,103,92,34,44,32,116,111,117,99,104,101,110,100,101,100,41,92,110,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,92,34,116,111,117,99,104,45,97,99,116,105,111,110,92,34,44,32,92,34,110,111,110,101,92,34,41,92,110,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,92,34,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,92,34,44,32,92,34,114,103,98,97,40,48,44,48,44,48,44,48,41,92,34,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,109,111,117,115,101,100,111,119,110,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,111,117,99,104,101,110,100,105,110,103,32,124,124,32,33,102,105,108,116,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,118,97,114,32,103,101,115,116,117,114,101,32,61,32,98,101,102,111,114,101,115,116,97,114,116,40,92,34,109,111,117,115,101,92,34,44,32,99,111,110,116,97,105,110,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,44,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,105,102,32,40,33,103,101,115,116,117,114,101,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,118,105,101,119,41,46,111,110,40,92,34,109,111,117,115,101,109,111,118,101,46,100,114,97,103,92,34,44,32,109,111,117,115,101,109,111,118,101,100,44,32,116,114,117,101,41,46,111,110,40,92,34,109,111,117,115,101,117,112,46,100,114,97,103,92,34,44,32,109,111,117,115,101,117,112,112,101,100,44,32,116,114,117,101,41,59,92,110,32,32,32,32,40,48,44,95,110,111,100,114,97,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,118,105,101,119,41,59,92,110,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,110,111,112,114,111,112,97,103,97,116,105,111,110,41,40,41,59,92,110,32,32,32,32,109,111,117,115,101,109,111,118,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,109,111,117,115,101,100,111,119,110,120,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,99,108,105,101,110,116,88,59,92,110,32,32,32,32,109,111,117,115,101,100,111,119,110,121,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,99,108,105,101,110,116,89,59,92,110,32,32,32,32,103,101,115,116,117,114,101,40,92,34,115,116,97,114,116,92,34,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,109,111,117,115,101,109,111,118,101,100,40,41,32,123,92,110,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,32,32,105,102,32,40,33,109,111,117,115,101,109,111,118,105,110,103,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,120,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,99,108,105,101,110,116,88,32,45,32,109,111,117,115,101,100,111,119,110,120,44,32,100,121,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,99,108,105,101,110,116,89,32,45,32,109,111,117,115,101,100,111,119,110,121,59,92,110,32,32,32,32,32,32,109,111,117,115,101,109,111,118,105,110,103,32,61,32,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,32,62,32,99,108,105,99,107,68,105,115,116,97,110,99,101,50,59,92,110,32,32,32,32,125,92,110,32,32,32,32,103,101,115,116,117,114,101,115,46,109,111,117,115,101,40,92,34,100,114,97,103,92,34,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,109,111,117,115,101,117,112,112,101,100,40,41,32,123,92,110,32,32,32,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,118,105,101,119,41,46,111,110,40,92,34,109,111,117,115,101,109,111,118,101,46,100,114,97,103,32,109,111,117,115,101,117,112,46,100,114,97,103,92,34,44,32,110,117,108,108,41,59,92,110,32,32,32,32,40,48,44,95,110,111,100,114,97,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,121,101,115,100,114,97,103,41,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,118,105,101,119,44,32,109,111,117,115,101,109,111,118,105,110,103,41,59,92,110,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,32,32,103,101,115,116,117,114,101,115,46,109,111,117,115,101,40,92,34,101,110,100,92,34,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,111,117,99,104,115,116,97,114,116,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,102,105,108,116,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,118,97,114,32,116,111,117,99,104,101,115,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,92,110,32,32,32,32,32,32,32,32,99,32,61,32,99,111,110,116,97,105,110,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,116,111,117,99,104,101,115,46,108,101,110,103,116,104,44,32,105,44,32,103,101,115,116,117,114,101,59,92,110,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,103,101,115,116,117,114,101,32,61,32,98,101,102,111,114,101,115,116,97,114,116,40,116,111,117,99,104,101,115,91,105,93,46,105,100,101,110,116,105,102,105,101,114,44,32,99,44,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,110,111,112,114,111,112,97,103,97,116,105,111,110,41,40,41,59,92,110,32,32,32,32,32,32,32,32,103,101,115,116,117,114,101,40,92,34,115,116,97,114,116,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,111,117,99,104,109,111,118,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,116,111,117,99,104,101,115,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,116,111,117,99,104,101,115,46,108,101,110,103,116,104,44,32,105,44,32,103,101,115,116,117,114,101,59,92,110,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,103,101,115,116,117,114,101,32,61,32,103,101,115,116,117,114,101,115,91,116,111,117,99,104,101,115,91,105,93,46,105,100,101,110,116,105,102,105,101,114,93,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,32,32,32,32,32,32,103,101,115,116,117,114,101,40,92,34,100,114,97,103,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,111,117,99,104,101,110,100,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,116,111,117,99,104,101,115,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,116,111,117,99,104,101,115,46,108,101,110,103,116,104,44,32,105,44,32,103,101,115,116,117,114,101,59,92,110,92,110,32,32,32,32,105,102,32,40,116,111,117,99,104,101,110,100,105,110,103,41,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,111,117,99,104,101,110,100,105,110,103,41,59,92,110,32,32,32,32,116,111,117,99,104,101,110,100,105,110,103,32,61,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,32,123,32,116,111,117,99,104,101,110,100,105,110,103,32,61,32,110,117,108,108,59,32,125,44,32,53,48,48,41,59,32,47,47,32,71,104,111,115,116,32,99,108,105,99,107,115,32,97,114,101,32,100,101,108,97,121,101,100,33,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,103,101,115,116,117,114,101,32,61,32,103,101,115,116,117,114,101,115,91,116,111,117,99,104,101,115,91,105,93,46,105,100,101,110,116,105,102,105,101,114,93,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,110,111,112,114,111,112,97,103,97,116,105,111,110,41,40,41,59,92,110,32,32,32,32,32,32,32,32,103,101,115,116,117,114,101,40,92,34,101,110,100,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,115,116,97,114,116,40,105,100,44,32,99,111,110,116,97,105,110,101,114,44,32,112,111,105,110,116,44,32,116,104,97,116,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,118,97,114,32,112,32,61,32,112,111,105,110,116,40,99,111,110,116,97,105,110,101,114,44,32,105,100,41,44,32,115,44,32,100,120,44,32,100,121,44,92,110,32,32,32,32,32,32,32,32,115,117,98,108,105,115,116,101,110,101,114,115,32,61,32,108,105,115,116,101,110,101,114,115,46,99,111,112,121,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,117,115,116,111,109,69,118,101,110,116,41,40,110,101,119,32,95,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,100,114,97,103,44,32,92,34,98,101,102,111,114,101,115,116,97,114,116,92,34,44,32,115,44,32,105,100,44,32,97,99,116,105,118,101,44,32,112,91,48,93,44,32,112,91,49,93,44,32,48,44,32,48,44,32,115,117,98,108,105,115,116,101,110,101,114,115,41,44,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,115,117,98,106,101,99,116,32,61,32,115,32,61,32,115,117,98,106,101,99,116,46,97,112,112,108,121,40,116,104,97,116,44,32,97,114,103,115,41,41,32,61,61,32,110,117,108,108,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,100,120,32,61,32,115,46,120,32,45,32,112,91,48,93,32,124,124,32,48,59,92,110,32,32,32,32,32,32,100,121,32,61,32,115,46,121,32,45,32,112,91,49,93,32,124,124,32,48,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,41,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,103,101,115,116,117,114,101,40,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,48,32,61,32,112,44,32,110,59,92,110,32,32,32,32,32,32,115,119,105,116,99,104,32,40,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,115,116,97,114,116,92,34,58,32,103,101,115,116,117,114,101,115,91,105,100,93,32,61,32,103,101,115,116,117,114,101,44,32,110,32,61,32,97,99,116,105,118,101,43,43,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,101,110,100,92,34,58,32,100,101,108,101,116,101,32,103,101,115,116,117,114,101,115,91,105,100,93,44,32,45,45,97,99,116,105,118,101,59,32,47,47,32,110,111,98,114,101,97,107,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,100,114,97,103,92,34,58,32,112,32,61,32,112,111,105,110,116,40,99,111,110,116,97,105,110,101,114,44,32,105,100,41,44,32,110,32,61,32,97,99,116,105,118,101,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,117,115,116,111,109,69,118,101,110,116,41,40,110,101,119,32,95,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,100,114,97,103,44,32,116,121,112,101,44,32,115,44,32,105,100,44,32,110,44,32,112,91,48,93,32,43,32,100,120,44,32,112,91,49,93,32,43,32,100,121,44,32,112,91,48,93,32,45,32,112,48,91,48,93,44,32,112,91,49,93,32,45,32,112,48,91,49,93,44,32,115,117,98,108,105,115,116,101,110,101,114,115,41,44,32,115,117,98,108,105,115,116,101,110,101,114,115,46,97,112,112,108,121,44,32,115,117,98,108,105,115,116,101,110,101,114,115,44,32,91,116,121,112,101,44,32,116,104,97,116,44,32,97,114,103,115,93,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,100,114,97,103,46,102,105,108,116,101,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,102,105,108,116,101,114,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,33,33,95,41,44,32,100,114,97,103,41,32,58,32,102,105,108,116,101,114,59,92,110,32,32,125,59,92,110,92,110,32,32,100,114,97,103,46,99,111,110,116,97,105,110,101,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,99,111,110,116,97,105,110,101,114,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,41,44,32,100,114,97,103,41,32,58,32,99,111,110,116,97,105,110,101,114,59,92,110,32,32,125,59,92,110,92,110,32,32,100,114,97,103,46,115,117,98,106,101,99,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,117,98,106,101,99,116,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,41,44,32,100,114,97,103,41,32,58,32,115,117,98,106,101,99,116,59,92,110,32,32,125,59,92,110,92,110,32,32,100,114,97,103,46,116,111,117,99,104,97,98,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,111,117,99,104,97,98,108,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,33,33,95,41,44,32,100,114,97,103,41,32,58,32,116,111,117,99,104,97,98,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,100,114,97,103,46,111,110,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,108,105,115,116,101,110,101,114,115,46,111,110,46,97,112,112,108,121,40,108,105,115,116,101,110,101,114,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,108,105,115,116,101,110,101,114,115,32,63,32,100,114,97,103,32,58,32,118,97,108,117,101,59,92,110,32,32,125,59,92,110,92,110,32,32,100,114,97,103,46,99,108,105,99,107,68,105,115,116,97,110,99,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,99,108,105,99,107,68,105,115,116,97,110,99,101,50,32,61,32,40,95,32,61,32,43,95,41,32,42,32,95,44,32,100,114,97,103,41,32,58,32,77,97,116,104,46,115,113,114,116,40,99,108,105,99,107,68,105,115,116,97,110,99,101,50,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,100,114,97,103,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,100,114,97,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,101,118,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,101,118,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,68,114,97,103,69,118,101,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,68,114,97,103,69,118,101,110,116,40,116,97,114,103,101,116,44,32,116,121,112,101,44,32,115,117,98,106,101,99,116,44,32,105,100,44,32,97,99,116,105,118,101,44,32,120,44,32,121,44,32,100,120,44,32,100,121,44,32,100,105,115,112,97,116,99,104,41,32,123,92,110,32,32,116,104,105,115,46,116,97,114,103,101,116,32,61,32,116,97,114,103,101,116,59,92,110,32,32,116,104,105,115,46,116,121,112,101,32,61,32,116,121,112,101,59,92,110,32,32,116,104,105,115,46,115,117,98,106,101,99,116,32,61,32,115,117,98,106,101,99,116,59,92,110,32,32,116,104,105,115,46,105,100,101,110,116,105,102,105,101,114,32,61,32,105,100,59,92,110,32,32,116,104,105,115,46,97,99,116,105,118,101,32,61,32,97,99,116,105,118,101,59,92,110,32,32,116,104,105,115,46,120,32,61,32,120,59,92,110,32,32,116,104,105,115,46,121,32,61,32,121,59,92,110,32,32,116,104,105,115,46,100,120,32,61,32,100,120,59,92,110,32,32,116,104,105,115,46,100,121,32,61,32,100,121,59,92,110,32,32,116,104,105,115,46,95,32,61,32,100,105,115,112,97,116,99,104,59,92,110,125,92,110,92,110,68,114,97,103,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,46,111,110,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,118,97,114,32,118,97,108,117,101,32,61,32,116,104,105,115,46,95,46,111,110,46,97,112,112,108,121,40,116,104,105,115,46,95,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,116,104,105,115,46,95,32,63,32,116,104,105,115,32,58,32,118,97,108,117,101,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,101,118,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,114,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,114,97,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,114,97,103,68,105,115,97,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,114,97,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,114,97,103,69,110,97,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,114,97,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,121,101,115,100,114,97,103,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,114,97,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,114,97,103,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,100,114,97,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,114,97,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,100,114,97,103,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,110,111,100,114,97,103,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,110,111,100,114,97,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,110,111,100,114,97,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,121,101,115,100,114,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,121,101,115,100,114,97,103,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,101,118,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,110,111,101,118,101,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,105,101,119,41,32,123,92,110,32,32,118,97,114,32,114,111,111,116,32,61,32,118,105,101,119,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,44,92,110,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,105,101,119,41,46,111,110,40,92,34,100,114,97,103,115,116,97,114,116,46,100,114,97,103,92,34,44,32,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,116,114,117,101,41,59,92,110,32,32,105,102,32,40,92,34,111,110,115,101,108,101,99,116,115,116,97,114,116,92,34,32,105,110,32,114,111,111,116,41,32,123,92,110,32,32,32,32,115,101,108,101,99,116,105,111,110,46,111,110,40,92,34,115,101,108,101,99,116,115,116,97,114,116,46,100,114,97,103,92,34,44,32,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,116,114,117,101,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,111,111,116,46,95,95,110,111,115,101,108,101,99,116,32,61,32,114,111,111,116,46,115,116,121,108,101,46,77,111,122,85,115,101,114,83,101,108,101,99,116,59,92,110,32,32,32,32,114,111,111,116,46,115,116,121,108,101,46,77,111,122,85,115,101,114,83,101,108,101,99,116,32,61,32,92,34,110,111,110,101,92,34,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,121,101,115,100,114,97,103,40,118,105,101,119,44,32,110,111,99,108,105,99,107,41,32,123,92,110,32,32,118,97,114,32,114,111,111,116,32,61,32,118,105,101,119,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,44,92,110,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,105,101,119,41,46,111,110,40,92,34,100,114,97,103,115,116,97,114,116,46,100,114,97,103,92,34,44,32,110,117,108,108,41,59,92,110,32,32,105,102,32,40,110,111,99,108,105,99,107,41,32,123,92,110,32,32,32,32,115,101,108,101,99,116,105,111,110,46,111,110,40,92,34,99,108,105,99,107,46,100,114,97,103,92,34,44,32,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,116,114,117,101,41,59,92,110,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,32,123,32,115,101,108,101,99,116,105,111,110,46,111,110,40,92,34,99,108,105,99,107,46,100,114,97,103,92,34,44,32,110,117,108,108,41,59,32,125,44,32,48,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,92,34,111,110,115,101,108,101,99,116,115,116,97,114,116,92,34,32,105,110,32,114,111,111,116,41,32,123,92,110,32,32,32,32,115,101,108,101,99,116,105,111,110,46,111,110,40,92,34,115,101,108,101,99,116,115,116,97,114,116,46,100,114,97,103,92,34,44,32,110,117,108,108,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,111,111,116,46,115,116,121,108,101,46,77,111,122,85,115,101,114,83,101,108,101,99,116,32,61,32,114,111,111,116,46,95,95,110,111,115,101,108,101,99,116,59,92,110,32,32,32,32,100,101,108,101,116,101,32,114,111,111,116,46,95,95,110,111,115,101,108,101,99,116,59,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,110,111,100,114,97,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,110,111,101,118,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,110,111,101,118,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,111,112,114,111,112,97,103,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,111,112,114,111,112,97,103,97,116,105,111,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,112,114,111,112,97,103,97,116,105,111,110,40,41,32,123,92,110,32,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,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,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,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,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,110,111,101,118,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,97,117,116,111,84,121,112,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,97,117,116,111,84,121,112,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,117,116,111,84,121,112,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,97,117,116,111,84,121,112,101,40,111,98,106,101,99,116,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,111,98,106,101,99,116,91,107,101,121,93,46,116,114,105,109,40,41,44,32,110,117,109,98,101,114,44,32,109,59,92,110,32,32,32,32,105,102,32,40,33,118,97,108,117,101,41,32,118,97,108,117,101,32,61,32,110,117,108,108,59,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,92,34,116,114,117,101,92,34,41,32,118,97,108,117,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,92,34,102,97,108,115,101,92,34,41,32,118,97,108,117,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,92,34,78,97,78,92,34,41,32,118,97,108,117,101,32,61,32,78,97,78,59,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,33,105,115,78,97,78,40,110,117,109,98,101,114,32,61,32,43,118,97,108,117,101,41,41,32,118,97,108,117,101,32,61,32,110,117,109,98,101,114,59,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,109,32,61,32,118,97,108,117,101,46,109,97,116,99,104,40,47,94,40,91,45,43,93,92,92,100,123,50,125,41,63,92,92,100,123,52,125,40,45,92,92,100,123,50,125,40,45,92,92,100,123,50,125,41,63,41,63,40,84,92,92,100,123,50,125,58,92,92,100,123,50,125,40,58,92,92,100,123,50,125,40,92,92,46,92,92,100,123,51,125,41,63,41,63,40,90,124,91,45,43,93,92,92,100,123,50,125,58,92,92,100,123,50,125,41,63,41,63,36,47,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,102,105,120,116,122,32,38,38,32,33,33,109,91,52,93,32,38,38,32,33,109,91,55,93,41,32,118,97,108,117,101,32,61,32,118,97,108,117,101,46,114,101,112,108,97,99,101,40,47,45,47,103,44,32,92,34,47,92,34,41,46,114,101,112,108,97,99,101,40,47,84,47,44,32,92,34,32,92,34,41,59,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,110,101,119,32,68,97,116,101,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,101,108,115,101,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,111,98,106,101,99,116,91,107,101,121,93,32,61,32,118,97,108,117,101,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,92,110,125,92,110,92,110,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,51,47,100,51,45,100,115,118,47,105,115,115,117,101,115,47,52,53,92,110,118,97,114,32,102,105,120,116,122,32,61,32,110,101,119,32,68,97,116,101,40,92,34,50,48,49,57,45,48,49,45,48,49,84,48,48,58,48,48,92,34,41,46,103,101,116,72,111,117,114,115,40,41,32,124,124,32,110,101,119,32,68,97,116,101,40,92,34,50,48,49,57,45,48,55,45,48,49,84,48,48,58,48,48,92,34,41,46,103,101,116,72,111,117,114,115,40,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,97,117,116,111,84,121,112,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,99,115,118,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,99,115,118,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,115,118,70,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,70,111,114,109,97,116,66,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,115,118,70,111,114,109,97,116,66,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,70,111,114,109,97,116,82,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,115,118,70,111,114,109,97,116,82,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,70,111,114,109,97,116,82,111,119,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,115,118,70,111,114,109,97,116,82,111,119,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,70,111,114,109,97,116,86,97,108,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,115,118,70,111,114,109,97,116,86,97,108,117,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,80,97,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,115,118,80,97,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,80,97,114,115,101,82,111,119,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,115,118,80,97,114,115,101,82,111,119,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,115,118,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,100,115,118,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,99,115,118,32,61,32,40,48,44,95,100,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,44,92,34,41,59,92,110,92,110,118,97,114,32,99,115,118,80,97,114,115,101,32,61,32,99,115,118,46,112,97,114,115,101,59,92,110,118,97,114,32,99,115,118,80,97,114,115,101,82,111,119,115,32,61,32,99,115,118,46,112,97,114,115,101,82,111,119,115,59,92,110,118,97,114,32,99,115,118,70,111,114,109,97,116,32,61,32,99,115,118,46,102,111,114,109,97,116,59,92,110,118,97,114,32,99,115,118,70,111,114,109,97,116,66,111,100,121,32,61,32,99,115,118,46,102,111,114,109,97,116,66,111,100,121,59,92,110,118,97,114,32,99,115,118,70,111,114,109,97,116,82,111,119,115,32,61,32,99,115,118,46,102,111,114,109,97,116,82,111,119,115,59,92,110,118,97,114,32,99,115,118,70,111,114,109,97,116,82,111,119,32,61,32,99,115,118,46,102,111,114,109,97,116,82,111,119,59,92,110,118,97,114,32,99,115,118,70,111,114,109,97,116,86,97,108,117,101,32,61,32,99,115,118,46,102,111,114,109,97,116,86,97,108,117,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,99,115,118,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,100,115,118,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,100,115,118,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,69,79,76,32,61,32,123,125,44,92,110,32,32,32,32,69,79,70,32,61,32,123,125,44,92,110,32,32,32,32,81,85,79,84,69,32,61,32,51,52,44,92,110,32,32,32,32,78,69,87,76,73,78,69,32,61,32,49,48,44,92,110,32,32,32,32,82,69,84,85,82,78,32,61,32,49,51,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,98,106,101,99,116,67,111,110,118,101,114,116,101,114,40,99,111,108,117,109,110,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,70,117,110,99,116,105,111,110,40,92,34,100,92,34,44,32,92,34,114,101,116,117,114,110,32,123,92,34,32,43,32,99,111,108,117,109,110,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,97,109,101,44,32,105,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,110,97,109,101,41,32,43,32,92,34,58,32,100,91,92,34,32,43,32,105,32,43,32,92,34,93,32,124,124,32,92,92,92,34,92,92,92,34,92,34,59,92,110,32,32,125,41,46,106,111,105,110,40,92,34,44,92,34,41,32,43,32,92,34,125,92,34,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,67,111,110,118,101,114,116,101,114,40,99,111,108,117,109,110,115,44,32,102,41,32,123,92,110,32,32,118,97,114,32,111,98,106,101,99,116,32,61,32,111,98,106,101,99,116,67,111,110,118,101,114,116,101,114,40,99,111,108,117,109,110,115,41,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,111,119,44,32,105,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,40,111,98,106,101,99,116,40,114,111,119,41,44,32,105,44,32,99,111,108,117,109,110,115,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,47,32,67,111,109,112,117,116,101,32,117,110,105,113,117,101,32,99,111,108,117,109,110,115,32,105,110,32,111,114,100,101,114,32,111,102,32,100,105,115,99,111,118,101,114,121,46,92,110,102,117,110,99,116,105,111,110,32,105,110,102,101,114,67,111,108,117,109,110,115,40,114,111,119,115,41,32,123,92,110,32,32,118,97,114,32,99,111,108,117,109,110,83,101,116,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,92,110,32,32,32,32,32,32,99,111,108,117,109,110,115,32,61,32,91,93,59,92,110,92,110,32,32,114,111,119,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,114,111,119,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,99,111,108,117,109,110,32,105,110,32,114,111,119,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,99,111,108,117,109,110,32,105,110,32,99,111,108,117,109,110,83,101,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,108,117,109,110,115,46,112,117,115,104,40,99,111,108,117,109,110,83,101,116,91,99,111,108,117,109,110,93,32,61,32,99,111,108,117,109,110,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,111,108,117,109,110,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,100,40,118,97,108,117,101,44,32,119,105,100,116,104,41,32,123,92,110,32,32,118,97,114,32,115,32,61,32,118,97,108,117,101,32,43,32,92,34,92,34,44,32,108,101,110,103,116,104,32,61,32,115,46,108,101,110,103,116,104,59,92,110,32,32,114,101,116,117,114,110,32,108,101,110,103,116,104,32,60,32,119,105,100,116,104,32,63,32,110,101,119,32,65,114,114,97,121,40,119,105,100,116,104,32,45,32,108,101,110,103,116,104,32,43,32,49,41,46,106,111,105,110,40,48,41,32,43,32,115,32,58,32,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,89,101,97,114,40,121,101,97,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,121,101,97,114,32,60,32,48,32,63,32,92,34,45,92,34,32,43,32,112,97,100,40,45,121,101,97,114,44,32,54,41,92,110,32,32,32,32,58,32,121,101,97,114,32,62,32,57,57,57,57,32,63,32,92,34,43,92,34,32,43,32,112,97,100,40,121,101,97,114,44,32,54,41,92,110,32,32,32,32,58,32,112,97,100,40,121,101,97,114,44,32,52,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,68,97,116,101,40,100,97,116,101,41,32,123,92,110,32,32,118,97,114,32,104,111,117,114,115,32,61,32,100,97,116,101,46,103,101,116,85,84,67,72,111,117,114,115,40,41,44,92,110,32,32,32,32,32,32,109,105,110,117,116,101,115,32,61,32,100,97,116,101,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,44,92,110,32,32,32,32,32,32,115,101,99,111,110,100,115,32,61,32,100,97,116,101,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,44,92,110,32,32,32,32,32,32,109,105,108,108,105,115,101,99,111,110,100,115,32,61,32,100,97,116,101,46,103,101,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,41,59,92,110,32,32,114,101,116,117,114,110,32,105,115,78,97,78,40,100,97,116,101,41,32,63,32,92,34,73,110,118,97,108,105,100,32,68,97,116,101,92,34,92,110,32,32,32,32,32,32,58,32,102,111,114,109,97,116,89,101,97,114,40,100,97,116,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,44,32,52,41,32,43,32,92,34,45,92,34,32,43,32,112,97,100,40,100,97,116,101,46,103,101,116,85,84,67,77,111,110,116,104,40,41,32,43,32,49,44,32,50,41,32,43,32,92,34,45,92,34,32,43,32,112,97,100,40,100,97,116,101,46,103,101,116,85,84,67,68,97,116,101,40,41,44,32,50,41,92,110,32,32,32,32,32,32,43,32,40,109,105,108,108,105,115,101,99,111,110,100,115,32,63,32,92,34,84,92,34,32,43,32,112,97,100,40,104,111,117,114,115,44,32,50,41,32,43,32,92,34,58,92,34,32,43,32,112,97,100,40,109,105,110,117,116,101,115,44,32,50,41,32,43,32,92,34,58,92,34,32,43,32,112,97,100,40,115,101,99,111,110,100,115,44,32,50,41,32,43,32,92,34,46,92,34,32,43,32,112,97,100,40,109,105,108,108,105,115,101,99,111,110,100,115,44,32,51,41,32,43,32,92,34,90,92,34,92,110,32,32,32,32,32,32,58,32,115,101,99,111,110,100,115,32,63,32,92,34,84,92,34,32,43,32,112,97,100,40,104,111,117,114,115,44,32,50,41,32,43,32,92,34,58,92,34,32,43,32,112,97,100,40,109,105,110,117,116,101,115,44,32,50,41,32,43,32,92,34,58,92,34,32,43,32,112,97,100,40,115,101,99,111,110,100,115,44,32,50,41,32,43,32,92,34,90,92,34,92,110,32,32,32,32,32,32,58,32,109,105,110,117,116,101,115,32,124,124,32,104,111,117,114,115,32,63,32,92,34,84,92,34,32,43,32,112,97,100,40,104,111,117,114,115,44,32,50,41,32,43,32,92,34,58,92,34,32,43,32,112,97,100,40,109,105,110,117,116,101,115,44,32,50,41,32,43,32,92,34,90,92,34,92,110,32,32,32,32,32,32,58,32,92,34,92,34,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,100,101,108,105,109,105,116,101,114,41,32,123,92,110,32,32,118,97,114,32,114,101,70,111,114,109,97,116,32,61,32,110,101,119,32,82,101,103,69,120,112,40,92,34,91,92,92,92,34,92,34,32,43,32,100,101,108,105,109,105,116,101,114,32,43,32,92,34,92,92,110,92,92,114,93,92,34,41,44,92,110,32,32,32,32,32,32,68,69,76,73,77,73,84,69,82,32,61,32,100,101,108,105,109,105,116,101,114,46,99,104,97,114,67,111,100,101,65,116,40,48,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,40,116,101,120,116,44,32,102,41,32,123,92,110,32,32,32,32,118,97,114,32,99,111,110,118,101,114,116,44,32,99,111,108,117,109,110,115,44,32,114,111,119,115,32,61,32,112,97,114,115,101,82,111,119,115,40,116,101,120,116,44,32,102,117,110,99,116,105,111,110,40,114,111,119,44,32,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,99,111,110,118,101,114,116,41,32,114,101,116,117,114,110,32,99,111,110,118,101,114,116,40,114,111,119,44,32,105,32,45,32,49,41,59,92,110,32,32,32,32,32,32,99,111,108,117,109,110,115,32,61,32,114,111,119,44,32,99,111,110,118,101,114,116,32,61,32,102,32,63,32,99,117,115,116,111,109,67,111,110,118,101,114,116,101,114,40,114,111,119,44,32,102,41,32,58,32,111,98,106,101,99,116,67,111,110,118,101,114,116,101,114,40,114,111,119,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,111,119,115,46,99,111,108,117,109,110,115,32,61,32,99,111,108,117,109,110,115,32,124,124,32,91,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,111,119,115,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,82,111,119,115,40,116,101,120,116,44,32,102,41,32,123,92,110,32,32,32,32,118,97,114,32,114,111,119,115,32,61,32,91,93,44,32,47,47,32,111,117,116,112,117,116,32,114,111,119,115,92,110,32,32,32,32,32,32,32,32,78,32,61,32,116,101,120,116,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,73,32,61,32,48,44,32,47,47,32,99,117,114,114,101,110,116,32,99,104,97,114,97,99,116,101,114,32,105,110,100,101,120,92,110,32,32,32,32,32,32,32,32,110,32,61,32,48,44,32,47,47,32,99,117,114,114,101,110,116,32,108,105,110,101,32,110,117,109,98,101,114,92,110,32,32,32,32,32,32,32,32,116,44,32,47,47,32,99,117,114,114,101,110,116,32,116,111,107,101,110,92,110,32,32,32,32,32,32,32,32,101,111,102,32,61,32,78,32,60,61,32,48,44,32,47,47,32,99,117,114,114,101,110,116,32,116,111,107,101,110,32,102,111,108,108,111,119,101,100,32,98,121,32,69,79,70,63,92,110,32,32,32,32,32,32,32,32,101,111,108,32,61,32,102,97,108,115,101,59,32,47,47,32,99,117,114,114,101,110,116,32,116,111,107,101,110,32,102,111,108,108,111,119,101,100,32,98,121,32,69,79,76,63,92,110,92,110,32,32,32,32,47,47,32,83,116,114,105,112,32,116,104,101,32,116,114,97,105,108,105,110,103,32,110,101,119,108,105,110,101,46,92,110,32,32,32,32,105,102,32,40,116,101,120,116,46,99,104,97,114,67,111,100,101,65,116,40,78,32,45,32,49,41,32,61,61,61,32,78,69,87,76,73,78,69,41,32,45,45,78,59,92,110,32,32,32,32,105,102,32,40,116,101,120,116,46,99,104,97,114,67,111,100,101,65,116,40,78,32,45,32,49,41,32,61,61,61,32,82,69,84,85,82,78,41,32,45,45,78,59,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,107,101,110,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,101,111,102,41,32,114,101,116,117,114,110,32,69,79,70,59,92,110,32,32,32,32,32,32,105,102,32,40,101,111,108,41,32,114,101,116,117,114,110,32,101,111,108,32,61,32,102,97,108,115,101,44,32,69,79,76,59,92,110,92,110,32,32,32,32,32,32,47,47,32,85,110,101,115,99,97,112,101,32,113,117,111,116,101,115,46,92,110,32,32,32,32,32,32,118,97,114,32,105,44,32,106,32,61,32,73,44,32,99,59,92,110,32,32,32,32,32,32,105,102,32,40,116,101,120,116,46,99,104,97,114,67,111,100,101,65,116,40,106,41,32,61,61,61,32,81,85,79,84,69,41,32,123,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,73,43,43,32,60,32,78,32,38,38,32,116,101,120,116,46,99,104,97,114,67,111,100,101,65,116,40,73,41,32,33,61,61,32,81,85,79,84,69,32,124,124,32,116,101,120,116,46,99,104,97,114,67,111,100,101,65,116,40,43,43,73,41,32,61,61,61,32,81,85,79,84,69,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,105,32,61,32,73,41,32,62,61,32,78,41,32,101,111,102,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,40,99,32,61,32,116,101,120,116,46,99,104,97,114,67,111,100,101,65,116,40,73,43,43,41,41,32,61,61,61,32,78,69,87,76,73,78,69,41,32,101,111,108,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,99,32,61,61,61,32,82,69,84,85,82,78,41,32,123,32,101,111,108,32,61,32,116,114,117,101,59,32,105,102,32,40,116,101,120,116,46,99,104,97,114,67,111,100,101,65,116,40,73,41,32,61,61,61,32,78,69,87,76,73,78,69,41,32,43,43,73,59,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,46,115,108,105,99,101,40,106,32,43,32,49,44,32,105,32,45,32,49,41,46,114,101,112,108,97,99,101,40,47,92,34,92,34,47,103,44,32,92,34,92,92,92,34,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,70,105,110,100,32,110,101,120,116,32,100,101,108,105,109,105,116,101,114,32,111,114,32,110,101,119,108,105,110,101,46,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,73,32,60,32,78,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,99,32,61,32,116,101,120,116,46,99,104,97,114,67,111,100,101,65,116,40,105,32,61,32,73,43,43,41,41,32,61,61,61,32,78,69,87,76,73,78,69,41,32,101,111,108,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,99,32,61,61,61,32,82,69,84,85,82,78,41,32,123,32,101,111,108,32,61,32,116,114,117,101,59,32,105,102,32,40,116,101,120,116,46,99,104,97,114,67,111,100,101,65,116,40,73,41,32,61,61,61,32,78,69,87,76,73,78,69,41,32,43,43,73,59,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,99,32,33,61,61,32,68,69,76,73,77,73,84,69,82,41,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,46,115,108,105,99,101,40,106,44,32,105,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,32,108,97,115,116,32,116,111,107,101,110,32,98,101,102,111,114,101,32,69,79,70,46,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,101,111,102,32,61,32,116,114,117,101,44,32,116,101,120,116,46,115,108,105,99,101,40,106,44,32,78,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,40,116,32,61,32,116,111,107,101,110,40,41,41,32,33,61,61,32,69,79,70,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,111,119,32,61,32,91,93,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,116,32,33,61,61,32,69,79,76,32,38,38,32,116,32,33,61,61,32,69,79,70,41,32,114,111,119,46,112,117,115,104,40,116,41,44,32,116,32,61,32,116,111,107,101,110,40,41,59,92,110,32,32,32,32,32,32,105,102,32,40,102,32,38,38,32,40,114,111,119,32,61,32,102,40,114,111,119,44,32,110,43,43,41,41,32,61,61,32,110,117,108,108,41,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,114,111,119,115,46,112,117,115,104,40,114,111,119,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,111,119,115,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,114,101,102,111,114,109,97,116,66,111,100,121,40,114,111,119,115,44,32,99,111,108,117,109,110,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,111,119,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,114,111,119,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,108,117,109,110,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,99,111,108,117,109,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,86,97,108,117,101,40,114,111,119,91,99,111,108,117,109,110,93,41,59,92,110,32,32,32,32,32,32,125,41,46,106,111,105,110,40,100,101,108,105,109,105,116,101,114,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,40,114,111,119,115,44,32,99,111,108,117,109,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,99,111,108,117,109,110,115,32,61,61,32,110,117,108,108,41,32,99,111,108,117,109,110,115,32,61,32,105,110,102,101,114,67,111,108,117,109,110,115,40,114,111,119,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,99,111,108,117,109,110,115,46,109,97,112,40,102,111,114,109,97,116,86,97,108,117,101,41,46,106,111,105,110,40,100,101,108,105,109,105,116,101,114,41,93,46,99,111,110,99,97,116,40,112,114,101,102,111,114,109,97,116,66,111,100,121,40,114,111,119,115,44,32,99,111,108,117,109,110,115,41,41,46,106,111,105,110,40,92,34,92,92,110,92,34,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,66,111,100,121,40,114,111,119,115,44,32,99,111,108,117,109,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,99,111,108,117,109,110,115,32,61,61,32,110,117,108,108,41,32,99,111,108,117,109,110,115,32,61,32,105,110,102,101,114,67,111,108,117,109,110,115,40,114,111,119,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,101,102,111,114,109,97,116,66,111,100,121,40,114,111,119,115,44,32,99,111,108,117,109,110,115,41,46,106,111,105,110,40,92,34,92,92,110,92,34,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,82,111,119,115,40,114,111,119,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,111,119,115,46,109,97,112,40,102,111,114,109,97,116,82,111,119,41,46,106,111,105,110,40,92,34,92,92,110,92,34,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,82,111,119,40,114,111,119,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,111,119,46,109,97,112,40,102,111,114,109,97,116,86,97,108,117,101,41,46,106,111,105,110,40,100,101,108,105,109,105,116,101,114,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,86,97,108,117,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,32,110,117,108,108,32,63,32,92,34,92,34,92,110,32,32,32,32,32,32,32,32,58,32,118,97,108,117,101,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,32,63,32,102,111,114,109,97,116,68,97,116,101,40,118,97,108,117,101,41,92,110,32,32,32,32,32,32,32,32,58,32,114,101,70,111,114,109,97,116,46,116,101,115,116,40,118,97,108,117,101,32,43,61,32,92,34,92,34,41,32,63,32,92,34,92,92,92,34,92,34,32,43,32,118,97,108,117,101,46,114,101,112,108,97,99,101,40,47,92,34,47,103,44,32,92,34,92,92,92,34,92,92,92,34,92,34,41,32,43,32,92,34,92,92,92,34,92,34,92,110,32,32,32,32,32,32,32,32,58,32,118,97,108,117,101,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,112,97,114,115,101,58,32,112,97,114,115,101,44,92,110,32,32,32,32,112,97,114,115,101,82,111,119,115,58,32,112,97,114,115,101,82,111,119,115,44,92,110,32,32,32,32,102,111,114,109,97,116,58,32,102,111,114,109,97,116,44,92,110,32,32,32,32,102,111,114,109,97,116,66,111,100,121,58,32,102,111,114,109,97,116,66,111,100,121,44,92,110,32,32,32,32,102,111,114,109,97,116,82,111,119,115,58,32,102,111,114,109,97,116,82,111,119,115,44,92,110,32,32,32,32,102,111,114,109,97,116,82,111,119,58,32,102,111,114,109,97,116,82,111,119,44,92,110,32,32,32,32,102,111,114,109,97,116,86,97,108,117,101,58,32,102,111,114,109,97,116,86,97,108,117,101,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,100,115,118,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,117,116,111,84,121,112,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,117,116,111,84,121,112,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,115,118,70,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,70,111,114,109,97,116,66,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,115,118,70,111,114,109,97,116,66,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,70,111,114,109,97,116,82,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,115,118,70,111,114,109,97,116,82,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,70,111,114,109,97,116,82,111,119,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,115,118,70,111,114,109,97,116,82,111,119,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,70,111,114,109,97,116,86,97,108,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,115,118,70,111,114,109,97,116,86,97,108,117,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,80,97,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,115,118,80,97,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,80,97,114,115,101,82,111,119,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,115,118,80,97,114,115,101,82,111,119,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,115,118,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,115,118,70,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,70,111,114,109,97,116,66,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,115,118,70,111,114,109,97,116,66,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,70,111,114,109,97,116,82,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,115,118,70,111,114,109,97,116,82,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,70,111,114,109,97,116,82,111,119,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,115,118,70,111,114,109,97,116,82,111,119,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,70,111,114,109,97,116,86,97,108,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,115,118,70,111,114,109,97,116,86,97,108,117,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,80,97,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,115,118,80,97,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,80,97,114,115,101,82,111,119,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,115,118,80,97,114,115,101,82,111,119,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,115,118,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,100,115,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,115,118,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,99,115,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,115,118,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,116,115,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,117,116,111,84,121,112,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,117,116,111,84,121,112,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,97,117,116,111,84,121,112,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,116,115,118,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,116,115,118,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,115,118,70,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,70,111,114,109,97,116,66,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,115,118,70,111,114,109,97,116,66,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,70,111,114,109,97,116,82,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,115,118,70,111,114,109,97,116,82,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,70,111,114,109,97,116,82,111,119,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,115,118,70,111,114,109,97,116,82,111,119,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,70,111,114,109,97,116,86,97,108,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,115,118,70,111,114,109,97,116,86,97,108,117,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,80,97,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,115,118,80,97,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,80,97,114,115,101,82,111,119,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,115,118,80,97,114,115,101,82,111,119,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,115,118,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,100,115,118,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,116,115,118,32,61,32,40,48,44,95,100,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,92,92,116,92,34,41,59,92,110,92,110,118,97,114,32,116,115,118,80,97,114,115,101,32,61,32,116,115,118,46,112,97,114,115,101,59,92,110,118,97,114,32,116,115,118,80,97,114,115,101,82,111,119,115,32,61,32,116,115,118,46,112,97,114,115,101,82,111,119,115,59,92,110,118,97,114,32,116,115,118,70,111,114,109,97,116,32,61,32,116,115,118,46,102,111,114,109,97,116,59,92,110,118,97,114,32,116,115,118,70,111,114,109,97,116,66,111,100,121,32,61,32,116,115,118,46,102,111,114,109,97,116,66,111,100,121,59,92,110,118,97,114,32,116,115,118,70,111,114,109,97,116,82,111,119,115,32,61,32,116,115,118,46,102,111,114,109,97,116,82,111,119,115,59,92,110,118,97,114,32,116,115,118,70,111,114,109,97,116,82,111,119,32,61,32,116,115,118,46,102,111,114,109,97,116,82,111,119,59,92,110,118,97,114,32,116,115,118,70,111,114,109,97,116,86,97,108,117,101,32,61,32,116,115,118,46,102,111,114,109,97,116,86,97,108,117,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,116,115,118,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,98,97,99,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,98,97,99,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,97,99,107,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,97,99,107,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,97,99,107,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,97,99,107,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,97,99,107,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,97,99,107,79,117,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,111,118,101,114,115,104,111,111,116,32,61,32,49,46,55,48,49,53,56,59,92,110,92,110,118,97,114,32,98,97,99,107,73,110,32,61,32,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,115,41,32,123,92,110,32,32,115,32,61,32,43,115,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,99,107,73,110,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,116,32,61,32,43,116,41,32,42,32,116,32,42,32,40,115,32,42,32,40,116,32,45,32,49,41,32,43,32,116,41,59,92,110,32,32,125,92,110,92,110,32,32,98,97,99,107,73,110,46,111,118,101,114,115,104,111,111,116,32,61,32,99,117,115,116,111,109,59,92,110,92,110,32,32,114,101,116,117,114,110,32,98,97,99,107,73,110,59,92,110,125,41,40,111,118,101,114,115,104,111,111,116,41,59,92,110,92,110,118,97,114,32,98,97,99,107,79,117,116,32,61,32,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,115,41,32,123,92,110,32,32,115,32,61,32,43,115,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,99,107,79,117,116,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,45,45,116,32,42,32,116,32,42,32,40,40,116,32,43,32,49,41,32,42,32,115,32,43,32,116,41,32,43,32,49,59,92,110,32,32,125,92,110,92,110,32,32,98,97,99,107,79,117,116,46,111,118,101,114,115,104,111,111,116,32,61,32,99,117,115,116,111,109,59,92,110,92,110,32,32,114,101,116,117,114,110,32,98,97,99,107,79,117,116,59,92,110,125,41,40,111,118,101,114,115,104,111,111,116,41,59,92,110,92,110,118,97,114,32,98,97,99,107,73,110,79,117,116,32,61,32,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,115,41,32,123,92,110,32,32,115,32,61,32,43,115,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,99,107,73,110,79,117,116,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,40,116,32,42,61,32,50,41,32,60,32,49,32,63,32,116,32,42,32,116,32,42,32,40,40,115,32,43,32,49,41,32,42,32,116,32,45,32,115,41,32,58,32,40,116,32,45,61,32,50,41,32,42,32,116,32,42,32,40,40,115,32,43,32,49,41,32,42,32,116,32,43,32,115,41,32,43,32,50,41,32,47,32,50,59,92,110,32,32,125,92,110,92,110,32,32,98,97,99,107,73,110,79,117,116,46,111,118,101,114,115,104,111,111,116,32,61,32,99,117,115,116,111,109,59,92,110,92,110,32,32,114,101,116,117,114,110,32,98,97,99,107,73,110,79,117,116,59,92,110,125,41,40,111,118,101,114,115,104,111,111,116,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,98,97,99,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,98,111,117,110,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,98,111,117,110,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,111,117,110,99,101,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,111,117,110,99,101,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,111,117,110,99,101,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,111,117,110,99,101,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,111,117,110,99,101,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,111,117,110,99,101,79,117,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,98,49,32,61,32,52,32,47,32,49,49,44,92,110,32,32,32,32,98,50,32,61,32,54,32,47,32,49,49,44,92,110,32,32,32,32,98,51,32,61,32,56,32,47,32,49,49,44,92,110,32,32,32,32,98,52,32,61,32,51,32,47,32,52,44,92,110,32,32,32,32,98,53,32,61,32,57,32,47,32,49,49,44,92,110,32,32,32,32,98,54,32,61,32,49,48,32,47,32,49,49,44,92,110,32,32,32,32,98,55,32,61,32,49,53,32,47,32,49,54,44,92,110,32,32,32,32,98,56,32,61,32,50,49,32,47,32,50,50,44,92,110,32,32,32,32,98,57,32,61,32,54,51,32,47,32,54,52,44,92,110,32,32,32,32,98,48,32,61,32,49,32,47,32,98,49,32,47,32,98,49,59,92,110,92,110,102,117,110,99,116,105,111,110,32,98,111,117,110,99,101,73,110,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,49,32,45,32,98,111,117,110,99,101,79,117,116,40,49,32,45,32,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,111,117,110,99,101,79,117,116,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,116,32,61,32,43,116,41,32,60,32,98,49,32,63,32,98,48,32,42,32,116,32,42,32,116,32,58,32,116,32,60,32,98,51,32,63,32,98,48,32,42,32,40,116,32,45,61,32,98,50,41,32,42,32,116,32,43,32,98,52,32,58,32,116,32,60,32,98,54,32,63,32,98,48,32,42,32,40,116,32,45,61,32,98,53,41,32,42,32,116,32,43,32,98,55,32,58,32,98,48,32,42,32,40,116,32,45,61,32,98,56,41,32,42,32,116,32,43,32,98,57,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,111,117,110,99,101,73,110,79,117,116,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,40,116,32,42,61,32,50,41,32,60,61,32,49,32,63,32,49,32,45,32,98,111,117,110,99,101,79,117,116,40,49,32,45,32,116,41,32,58,32,98,111,117,110,99,101,79,117,116,40,116,32,45,32,49,41,32,43,32,49,41,32,47,32,50,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,98,111,117,110,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,99,105,114,99,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,99,105,114,99,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,105,114,99,108,101,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,105,114,99,108,101,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,105,114,99,108,101,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,105,114,99,108,101,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,105,114,99,108,101,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,105,114,99,108,101,79,117,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,99,105,114,99,108,101,73,110,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,49,32,45,32,77,97,116,104,46,115,113,114,116,40,49,32,45,32,116,32,42,32,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,105,114,99,108,101,79,117,116,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,115,113,114,116,40,49,32,45,32,45,45,116,32,42,32,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,105,114,99,108,101,73,110,79,117,116,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,40,116,32,42,61,32,50,41,32,60,61,32,49,32,63,32,49,32,45,32,77,97,116,104,46,115,113,114,116,40,49,32,45,32,116,32,42,32,116,41,32,58,32,77,97,116,104,46,115,113,114,116,40,49,32,45,32,40,116,32,45,61,32,50,41,32,42,32,116,41,32,43,32,49,41,32,47,32,50,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,99,105,114,99,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,99,117,98,105,99,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,99,117,98,105,99,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,98,105,99,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,117,98,105,99,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,98,105,99,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,117,98,105,99,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,98,105,99,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,117,98,105,99,79,117,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,99,117,98,105,99,73,110,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,32,42,32,116,32,42,32,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,117,98,105,99,79,117,116,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,45,45,116,32,42,32,116,32,42,32,116,32,43,32,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,117,98,105,99,73,110,79,117,116,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,40,116,32,42,61,32,50,41,32,60,61,32,49,32,63,32,116,32,42,32,116,32,42,32,116,32,58,32,40,116,32,45,61,32,50,41,32,42,32,116,32,42,32,116,32,43,32,50,41,32,47,32,50,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,99,117,98,105,99,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,101,108,97,115,116,105,99,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,101,108,97,115,116,105,99,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,108,97,115,116,105,99,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,108,97,115,116,105,99,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,108,97,115,116,105,99,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,108,97,115,116,105,99,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,108,97,115,116,105,99,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,108,97,115,116,105,99,79,117,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,116,97,117,32,61,32,50,32,42,32,77,97,116,104,46,80,73,44,92,110,32,32,32,32,97,109,112,108,105,116,117,100,101,32,61,32,49,44,92,110,32,32,32,32,112,101,114,105,111,100,32,61,32,48,46,51,59,92,110,92,110,118,97,114,32,101,108,97,115,116,105,99,73,110,32,61,32,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,97,44,32,112,41,32,123,92,110,32,32,118,97,114,32,115,32,61,32,77,97,116,104,46,97,115,105,110,40,49,32,47,32,40,97,32,61,32,77,97,116,104,46,109,97,120,40,49,44,32,97,41,41,41,32,42,32,40,112,32,47,61,32,116,97,117,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,101,108,97,115,116,105,99,73,110,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,112,109,116,41,40,45,40,45,45,116,41,41,32,42,32,77,97,116,104,46,115,105,110,40,40,115,32,45,32,116,41,32,47,32,112,41,59,92,110,32,32,125,92,110,92,110,32,32,101,108,97,115,116,105,99,73,110,46,97,109,112,108,105,116,117,100,101,32,61,32,102,117,110,99,116,105,111,110,40,97,41,32,123,32,114,101,116,117,114,110,32,99,117,115,116,111,109,40,97,44,32,112,32,42,32,116,97,117,41,59,32,125,59,92,110,32,32,101,108,97,115,116,105,99,73,110,46,112,101,114,105,111,100,32,61,32,102,117,110,99,116,105,111,110,40,112,41,32,123,32,114,101,116,117,114,110,32,99,117,115,116,111,109,40,97,44,32,112,41,59,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,101,108,97,115,116,105,99,73,110,59,92,110,125,41,40,97,109,112,108,105,116,117,100,101,44,32,112,101,114,105,111,100,41,59,92,110,92,110,118,97,114,32,101,108,97,115,116,105,99,79,117,116,32,61,32,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,97,44,32,112,41,32,123,92,110,32,32,118,97,114,32,115,32,61,32,77,97,116,104,46,97,115,105,110,40,49,32,47,32,40,97,32,61,32,77,97,116,104,46,109,97,120,40,49,44,32,97,41,41,41,32,42,32,40,112,32,47,61,32,116,97,117,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,101,108,97,115,116,105,99,79,117,116,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,49,32,45,32,97,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,112,109,116,41,40,116,32,61,32,43,116,41,32,42,32,77,97,116,104,46,115,105,110,40,40,116,32,43,32,115,41,32,47,32,112,41,59,92,110,32,32,125,92,110,92,110,32,32,101,108,97,115,116,105,99,79,117,116,46,97,109,112,108,105,116,117,100,101,32,61,32,102,117,110,99,116,105,111,110,40,97,41,32,123,32,114,101,116,117,114,110,32,99,117,115,116,111,109,40,97,44,32,112,32,42,32,116,97,117,41,59,32,125,59,92,110,32,32,101,108,97,115,116,105,99,79,117,116,46,112,101,114,105,111,100,32,61,32,102,117,110,99,116,105,111,110,40,112,41,32,123,32,114,101,116,117,114,110,32,99,117,115,116,111,109,40,97,44,32,112,41,59,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,101,108,97,115,116,105,99,79,117,116,59,92,110,125,41,40,97,109,112,108,105,116,117,100,101,44,32,112,101,114,105,111,100,41,59,92,110,92,110,118,97,114,32,101,108,97,115,116,105,99,73,110,79,117,116,32,61,32,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,97,44,32,112,41,32,123,92,110,32,32,118,97,114,32,115,32,61,32,77,97,116,104,46,97,115,105,110,40,49,32,47,32,40,97,32,61,32,77,97,116,104,46,109,97,120,40,49,44,32,97,41,41,41,32,42,32,40,112,32,47,61,32,116,97,117,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,101,108,97,115,116,105,99,73,110,79,117,116,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,40,116,32,61,32,116,32,42,32,50,32,45,32,49,41,32,60,32,48,92,110,32,32,32,32,32,32,32,32,63,32,97,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,112,109,116,41,40,45,116,41,32,42,32,77,97,116,104,46,115,105,110,40,40,115,32,45,32,116,41,32,47,32,112,41,92,110,32,32,32,32,32,32,32,32,58,32,50,32,45,32,97,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,112,109,116,41,40,116,41,32,42,32,77,97,116,104,46,115,105,110,40,40,115,32,43,32,116,41,32,47,32,112,41,41,32,47,32,50,59,92,110,32,32,125,92,110,92,110,32,32,101,108,97,115,116,105,99,73,110,79,117,116,46,97,109,112,108,105,116,117,100,101,32,61,32,102,117,110,99,116,105,111,110,40,97,41,32,123,32,114,101,116,117,114,110,32,99,117,115,116,111,109,40,97,44,32,112,32,42,32,116,97,117,41,59,32,125,59,92,110,32,32,101,108,97,115,116,105,99,73,110,79,117,116,46,112,101,114,105,111,100,32,61,32,102,117,110,99,116,105,111,110,40,112,41,32,123,32,114,101,116,117,114,110,32,99,117,115,116,111,109,40,97,44,32,112,41,59,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,101,108,97,115,116,105,99,73,110,79,117,116,59,92,110,125,41,40,97,109,112,108,105,116,117,100,101,44,32,112,101,114,105,111,100,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,101,108,97,115,116,105,99,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,101,120,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,101,120,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,120,112,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,120,112,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,120,112,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,120,112,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,120,112,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,120,112,79,117,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,112,73,110,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,112,109,116,41,40,49,32,45,32,43,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,112,79,117,116,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,49,32,45,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,112,109,116,41,40,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,112,73,110,79,117,116,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,40,116,32,42,61,32,50,41,32,60,61,32,49,32,63,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,112,109,116,41,40,49,32,45,32,116,41,32,58,32,50,32,45,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,112,109,116,41,40,116,32,45,32,49,41,41,32,47,32,50,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,101,120,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,97,99,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,98,97,99,107,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,97,99,107,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,97,99,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,98,97,99,107,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,97,99,107,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,97,99,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,98,97,99,107,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,97,99,107,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,97,99,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,98,97,99,107,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,111,117,110,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,111,117,110,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,98,111,117,110,99,101,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,111,117,110,99,101,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,111,117,110,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,98,111,117,110,99,101,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,111,117,110,99,101,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,111,117,110,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,98,111,117,110,99,101,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,111,117,110,99,101,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,111,117,110,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,98,111,117,110,99,101,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,99,105,114,99,108,101,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,105,114,99,108,101,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,99,105,114,99,108,101,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,105,114,99,108,101,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,99,105,114,99,108,101,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,105,114,99,108,101,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,99,105,114,99,108,101,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,117,98,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,98,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,117,98,105,99,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,117,98,105,99,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,98,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,117,98,105,99,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,117,98,105,99,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,98,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,117,98,105,99,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,117,98,105,99,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,98,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,117,98,105,99,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,108,97,115,116,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,101,108,97,115,116,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,101,108,97,115,116,105,99,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,108,97,115,116,105,99,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,101,108,97,115,116,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,101,108,97,115,116,105,99,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,108,97,115,116,105,99,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,101,108,97,115,116,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,101,108,97,115,116,105,99,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,108,97,115,116,105,99,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,101,108,97,115,116,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,101,108,97,115,116,105,99,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,120,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,101,120,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,120,112,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,120,112,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,101,120,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,120,112,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,120,112,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,101,120,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,120,112,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,120,112,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,101,120,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,120,112,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,76,105,110,101,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,105,110,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,108,105,110,101,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,80,111,108,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,111,108,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,111,108,121,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,80,111,108,121,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,111,108,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,111,108,121,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,80,111,108,121,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,111,108,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,111,108,121,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,80,111,108,121,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,111,108,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,112,111,108,121,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,81,117,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,113,117,97,100,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,81,117,97,100,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,113,117,97,100,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,81,117,97,100,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,113,117,97,100,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,81,117,97,100,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,113,117,97,100,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,83,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,105,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,115,105,110,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,83,105,110,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,105,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,115,105,110,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,83,105,110,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,105,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,115,105,110,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,83,105,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,105,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,115,105,110,79,117,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,101,97,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,108,105,110,101,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,113,117,97,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,113,117,97,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,98,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,98,105,99,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,99,117,98,105,99,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,108,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,108,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,112,111,108,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,105,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,105,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,115,105,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,120,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,120,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,101,120,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,105,114,99,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,99,105,114,99,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,111,117,110,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,111,117,110,99,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,98,111,117,110,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,99,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,97,99,107,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,98,97,99,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,108,97,115,116,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,108,97,115,116,105,99,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,101,108,97,115,116,105,99,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,108,105,110,101,97,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,108,105,110,101,97,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,101,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,105,110,101,97,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,108,105,110,101,97,114,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,43,116,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,108,105,110,101,97,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,109,97,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,109,97,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,112,109,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,112,109,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,47,32,116,112,109,116,32,105,115,32,116,119,111,32,112,111,119,101,114,32,109,105,110,117,115,32,116,101,110,32,116,105,109,101,115,32,116,32,115,99,97,108,101,100,32,116,111,32,91,48,44,49,93,92,110,102,117,110,99,116,105,111,110,32,116,112,109,116,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,77,97,116,104,46,112,111,119,40,50,44,32,45,49,48,32,42,32,120,41,32,45,32,48,46,48,48,48,57,55,54,53,54,50,53,41,32,42,32,49,46,48,48,48,57,55,55,53,49,55,49,48,54,53,52,57,52,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,109,97,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,112,111,108,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,112,111,108,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,108,121,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,111,108,121,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,108,121,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,111,108,121,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,108,121,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,111,108,121,79,117,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,101,120,112,111,110,101,110,116,32,61,32,51,59,92,110,92,110,118,97,114,32,112,111,108,121,73,110,32,61,32,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,101,41,32,123,92,110,32,32,101,32,61,32,43,101,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,111,108,121,73,110,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,116,44,32,101,41,59,92,110,32,32,125,92,110,92,110,32,32,112,111,108,121,73,110,46,101,120,112,111,110,101,110,116,32,61,32,99,117,115,116,111,109,59,92,110,92,110,32,32,114,101,116,117,114,110,32,112,111,108,121,73,110,59,92,110,125,41,40,101,120,112,111,110,101,110,116,41,59,92,110,92,110,118,97,114,32,112,111,108,121,79,117,116,32,61,32,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,101,41,32,123,92,110,32,32,101,32,61,32,43,101,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,111,108,121,79,117,116,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,49,32,45,32,77,97,116,104,46,112,111,119,40,49,32,45,32,116,44,32,101,41,59,92,110,32,32,125,92,110,92,110,32,32,112,111,108,121,79,117,116,46,101,120,112,111,110,101,110,116,32,61,32,99,117,115,116,111,109,59,92,110,92,110,32,32,114,101,116,117,114,110,32,112,111,108,121,79,117,116,59,92,110,125,41,40,101,120,112,111,110,101,110,116,41,59,92,110,92,110,118,97,114,32,112,111,108,121,73,110,79,117,116,32,61,32,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,101,41,32,123,92,110,32,32,101,32,61,32,43,101,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,111,108,121,73,110,79,117,116,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,40,116,32,42,61,32,50,41,32,60,61,32,49,32,63,32,77,97,116,104,46,112,111,119,40,116,44,32,101,41,32,58,32,50,32,45,32,77,97,116,104,46,112,111,119,40,50,32,45,32,116,44,32,101,41,41,32,47,32,50,59,92,110,32,32,125,92,110,92,110,32,32,112,111,108,121,73,110,79,117,116,46,101,120,112,111,110,101,110,116,32,61,32,99,117,115,116,111,109,59,92,110,92,110,32,32,114,101,116,117,114,110,32,112,111,108,121,73,110,79,117,116,59,92,110,125,41,40,101,120,112,111,110,101,110,116,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,112,111,108,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,113,117,97,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,113,117,97,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,113,117,97,100,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,113,117,97,100,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,113,117,97,100,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,113,117,97,100,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,113,117,97,100,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,113,117,97,100,79,117,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,113,117,97,100,73,110,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,32,42,32,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,113,117,97,100,79,117,116,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,32,42,32,40,50,32,45,32,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,113,117,97,100,73,110,79,117,116,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,40,116,32,42,61,32,50,41,32,60,61,32,49,32,63,32,116,32,42,32,116,32,58,32,45,45,116,32,42,32,40,50,32,45,32,116,41,32,43,32,49,41,32,47,32,50,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,113,117,97,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,115,105,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,115,105,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,105,110,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,105,110,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,105,110,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,105,110,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,105,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,105,110,79,117,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,112,105,32,61,32,77,97,116,104,46,80,73,44,92,110,32,32,32,32,104,97,108,102,80,105,32,61,32,112,105,32,47,32,50,59,92,110,92,110,102,117,110,99,116,105,111,110,32,115,105,110,73,110,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,43,116,32,61,61,61,32,49,41,32,63,32,49,32,58,32,49,32,45,32,77,97,116,104,46,99,111,115,40,116,32,42,32,104,97,108,102,80,105,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,105,110,79,117,116,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,115,105,110,40,116,32,42,32,104,97,108,102,80,105,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,105,110,73,110,79,117,116,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,49,32,45,32,77,97,116,104,46,99,111,115,40,112,105,32,42,32,116,41,41,32,47,32,50,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,115,105,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,98,108,111,98,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,98,108,111,98,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,114,101,115,112,111,110,115,101,66,108,111,98,40,114,101,115,112,111,110,115,101,41,32,123,92,110,32,32,105,102,32,40,33,114,101,115,112,111,110,115,101,46,111,107,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,32,43,32,92,34,32,92,34,32,43,32,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,84,101,120,116,41,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,112,111,110,115,101,46,98,108,111,98,40,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,105,110,112,117,116,44,32,105,110,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,101,116,99,104,40,105,110,112,117,116,44,32,105,110,105,116,41,46,116,104,101,110,40,114,101,115,112,111,110,115,101,66,108,111,98,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,98,108,111,98,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,98,117,102,102,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,98,117,102,102,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,114,101,115,112,111,110,115,101,65,114,114,97,121,66,117,102,102,101,114,40,114,101,115,112,111,110,115,101,41,32,123,92,110,32,32,105,102,32,40,33,114,101,115,112,111,110,115,101,46,111,107,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,32,43,32,92,34,32,92,34,32,43,32,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,84,101,120,116,41,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,112,111,110,115,101,46,97,114,114,97,121,66,117,102,102,101,114,40,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,105,110,112,117,116,44,32,105,110,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,101,116,99,104,40,105,110,112,117,116,44,32,105,110,105,116,41,46,116,104,101,110,40,114,101,115,112,111,110,115,101,65,114,114,97,121,66,117,102,102,101,114,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,98,117,102,102,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,100,115,118,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,100,115,118,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,115,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,115,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,115,118,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,100,115,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,100,115,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,100,115,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,99,115,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,100,115,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,116,115,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,101,120,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,101,120,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,116,101,120,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,100,115,118,80,97,114,115,101,40,112,97,114,115,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,105,110,112,117,116,44,32,105,110,105,116,44,32,114,111,119,41,32,123,92,110,32,32,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,61,61,61,32,50,32,38,38,32,116,121,112,101,111,102,32,105,110,105,116,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,114,111,119,32,61,32,105,110,105,116,44,32,105,110,105,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,116,101,120,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,105,110,112,117,116,44,32,105,110,105,116,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,114,101,115,112,111,110,115,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,114,115,101,40,114,101,115,112,111,110,115,101,44,32,114,111,119,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,115,118,40,100,101,108,105,109,105,116,101,114,44,32,105,110,112,117,116,44,32,105,110,105,116,44,32,114,111,119,41,32,123,92,110,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,61,61,61,32,51,32,38,38,32,116,121,112,101,111,102,32,105,110,105,116,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,114,111,119,32,61,32,105,110,105,116,44,32,105,110,105,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,118,97,114,32,102,111,114,109,97,116,32,61,32,40,48,44,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,101,108,105,109,105,116,101,114,41,59,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,116,101,120,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,105,110,112,117,116,44,32,105,110,105,116,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,114,101,115,112,111,110,115,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,46,112,97,114,115,101,40,114,101,115,112,111,110,115,101,44,32,114,111,119,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,118,97,114,32,99,115,118,32,61,32,100,115,118,80,97,114,115,101,40,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,115,118,80,97,114,115,101,41,59,92,110,118,97,114,32,116,115,118,32,61,32,100,115,118,80,97,114,115,101,40,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,116,115,118,80,97,114,115,101,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,100,115,118,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,105,109,97,103,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,105,109,97,103,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,105,110,112,117,116,44,32,105,110,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,118,97,114,32,105,109,97,103,101,32,61,32,110,101,119,32,73,109,97,103,101,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,105,110,105,116,41,32,105,109,97,103,101,91,107,101,121,93,32,61,32,105,110,105,116,91,107,101,121,93,59,92,110,32,32,32,32,105,109,97,103,101,46,111,110,101,114,114,111,114,32,61,32,114,101,106,101,99,116,59,92,110,32,32,32,32,105,109,97,103,101,46,111,110,108,111,97,100,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,115,111,108,118,101,40,105,109,97,103,101,41,59,32,125,59,92,110,32,32,32,32,105,109,97,103,101,46,115,114,99,32,61,32,105,110,112,117,116,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,105,109,97,103,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,108,111,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,108,111,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,117,102,102,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,117,102,102,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,115,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,115,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,116,109,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,120,109,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,104,116,109,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,109,97,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,109,97,103,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,106,115,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,106,115,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,118,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,120,109,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,118,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,101,120,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,115,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,120,109,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,120,109,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,108,111,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,108,111,98,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,98,108,111,98,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,102,102,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,117,102,102,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,98,117,102,102,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,115,118,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,115,118,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,100,115,118,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,109,97,103,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,109,97,103,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,105,109,97,103,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,106,115,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,106,115,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,106,115,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,101,120,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,101,120,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,120,109,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,120,109,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,120,109,108,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,106,115,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,106,115,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,114,101,115,112,111,110,115,101,74,115,111,110,40,114,101,115,112,111,110,115,101,41,32,123,92,110,32,32,105,102,32,40,33,114,101,115,112,111,110,115,101,46,111,107,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,32,43,32,92,34,32,92,34,32,43,32,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,84,101,120,116,41,59,92,110,32,32,105,102,32,40,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,32,61,61,61,32,50,48,52,32,124,124,32,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,32,61,61,61,32,50,48,53,41,32,114,101,116,117,114,110,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,112,111,110,115,101,46,106,115,111,110,40,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,105,110,112,117,116,44,32,105,110,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,101,116,99,104,40,105,110,112,117,116,44,32,105,110,105,116,41,46,116,104,101,110,40,114,101,115,112,111,110,115,101,74,115,111,110,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,106,115,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,116,101,120,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,116,101,120,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,114,101,115,112,111,110,115,101,84,101,120,116,40,114,101,115,112,111,110,115,101,41,32,123,92,110,32,32,105,102,32,40,33,114,101,115,112,111,110,115,101,46,111,107,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,32,43,32,92,34,32,92,34,32,43,32,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,84,101,120,116,41,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,112,111,110,115,101,46,116,101,120,116,40,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,105,110,112,117,116,44,32,105,110,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,101,116,99,104,40,105,110,112,117,116,44,32,105,110,105,116,41,46,116,104,101,110,40,114,101,115,112,111,110,115,101,84,101,120,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,116,101,120,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,120,109,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,120,109,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,116,109,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,116,109,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,118,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,118,103,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,101,120,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,101,120,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,116,101,120,116,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,114,40,116,121,112,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,105,110,112,117,116,44,32,105,110,105,116,41,32,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,116,101,120,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,105,110,112,117,116,44,32,105,110,105,116,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,116,101,120,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,110,101,119,32,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,101,120,116,44,32,116,121,112,101,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,112,97,114,115,101,114,40,92,34,97,112,112,108,105,99,97,116,105,111,110,47,120,109,108,92,34,41,41,59,92,110,92,110,118,97,114,32,104,116,109,108,32,61,32,112,97,114,115,101,114,40,92,34,116,101,120,116,47,104,116,109,108,92,34,41,59,92,110,92,110,118,97,114,32,115,118,103,32,61,32,112,97,114,115,101,114,40,92,34,105,109,97,103,101,47,115,118,103,43,120,109,108,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,120,109,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,101,110,116,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,101,110,116,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,44,32,121,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,115,59,92,110,92,110,32,32,105,102,32,40,120,32,61,61,32,110,117,108,108,41,32,120,32,61,32,48,59,92,110,32,32,105,102,32,40,121,32,61,61,32,110,117,108,108,41,32,121,32,61,32,48,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,99,101,40,41,32,123,92,110,32,32,32,32,118,97,114,32,105,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,110,111,100,101,44,92,110,32,32,32,32,32,32,32,32,115,120,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,115,121,32,61,32,48,59,92,110,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,44,32,115,120,32,43,61,32,110,111,100,101,46,120,44,32,115,121,32,43,61,32,110,111,100,101,46,121,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,111,114,32,40,115,120,32,61,32,115,120,32,47,32,110,32,45,32,120,44,32,115,121,32,61,32,115,121,32,47,32,110,32,45,32,121,44,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,44,32,110,111,100,101,46,120,32,45,61,32,115,120,44,32,110,111,100,101,46,121,32,45,61,32,115,121,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,111,114,99,101,46,105,110,105,116,105,97,108,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,110,111,100,101,115,32,61,32,95,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,120,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,120,32,61,32,43,95,44,32,102,111,114,99,101,41,32,58,32,120,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,121,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,121,32,61,32,43,95,44,32,102,111,114,99,101,41,32,58,32,121,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,111,114,99,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,101,110,116,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,111,108,108,105,100,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,111,108,108,105,100,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,106,105,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,106,105,103,103,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,106,105,103,103,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,113,117,97,100,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,113,117,97,100,116,114,101,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,113,117,97,100,116,114,101,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,120,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,120,32,43,32,100,46,118,120,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,121,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,121,32,43,32,100,46,118,121,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,114,97,100,105,117,115,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,115,44,92,110,32,32,32,32,32,32,114,97,100,105,105,44,92,110,32,32,32,32,32,32,115,116,114,101,110,103,116,104,32,61,32,49,44,92,110,32,32,32,32,32,32,105,116,101,114,97,116,105,111,110,115,32,61,32,49,59,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,114,97,100,105,117,115,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,114,97,100,105,117,115,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,114,97,100,105,117,115,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,43,114,97,100,105,117,115,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,99,101,40,41,32,123,92,110,32,32,32,32,118,97,114,32,105,44,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,116,114,101,101,44,92,110,32,32,32,32,32,32,32,32,110,111,100,101,44,92,110,32,32,32,32,32,32,32,32,120,105,44,92,110,32,32,32,32,32,32,32,32,121,105,44,92,110,32,32,32,32,32,32,32,32,114,105,44,92,110,32,32,32,32,32,32,32,32,114,105,50,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,32,61,32,48,59,32,107,32,60,32,105,116,101,114,97,116,105,111,110,115,59,32,43,43,107,41,32,123,92,110,32,32,32,32,32,32,116,114,101,101,32,61,32,40,48,44,100,51,95,113,117,97,100,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,111,100,101,115,44,32,120,44,32,121,41,46,118,105,115,105,116,65,102,116,101,114,40,112,114,101,112,97,114,101,41,59,92,110,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,59,92,110,32,32,32,32,32,32,32,32,114,105,32,61,32,114,97,100,105,105,91,110,111,100,101,46,105,110,100,101,120,93,44,32,114,105,50,32,61,32,114,105,32,42,32,114,105,59,92,110,32,32,32,32,32,32,32,32,120,105,32,61,32,110,111,100,101,46,120,32,43,32,110,111,100,101,46,118,120,59,92,110,32,32,32,32,32,32,32,32,121,105,32,61,32,110,111,100,101,46,121,32,43,32,110,111,100,101,46,118,121,59,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,118,105,115,105,116,40,97,112,112,108,121,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,112,112,108,121,40,113,117,97,100,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,113,117,97,100,46,100,97,116,97,44,32,114,106,32,61,32,113,117,97,100,46,114,44,32,114,32,61,32,114,105,32,43,32,114,106,59,92,110,32,32,32,32,32,32,105,102,32,40,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,97,116,97,46,105,110,100,101,120,32,62,32,110,111,100,101,46,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,120,32,61,32,120,105,32,45,32,100,97,116,97,46,120,32,45,32,100,97,116,97,46,118,120,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,121,32,61,32,121,105,32,45,32,100,97,116,97,46,121,32,45,32,100,97,116,97,46,118,121,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,32,61,32,120,32,42,32,120,32,43,32,121,32,42,32,121,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,32,60,32,114,32,42,32,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,120,32,61,61,61,32,48,41,32,120,32,61,32,40,48,44,95,106,105,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,32,108,32,43,61,32,120,32,42,32,120,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,121,32,61,61,61,32,48,41,32,121,32,61,32,40,48,44,95,106,105,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,32,108,32,43,61,32,121,32,42,32,121,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,32,61,32,40,114,32,45,32,40,108,32,61,32,77,97,116,104,46,115,113,114,116,40,108,41,41,41,32,47,32,108,32,42,32,115,116,114,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,118,120,32,43,61,32,40,120,32,42,61,32,108,41,32,42,32,40,114,32,61,32,40,114,106,32,42,61,32,114,106,41,32,47,32,40,114,105,50,32,43,32,114,106,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,118,121,32,43,61,32,40,121,32,42,61,32,108,41,32,42,32,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,97,46,118,120,32,45,61,32,120,32,42,32,40,114,32,61,32,49,32,45,32,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,97,46,118,121,32,45,61,32,121,32,42,32,114,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,120,48,32,62,32,120,105,32,43,32,114,32,124,124,32,120,49,32,60,32,120,105,32,45,32,114,32,124,124,32,121,48,32,62,32,121,105,32,43,32,114,32,124,124,32,121,49,32,60,32,121,105,32,45,32,114,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,114,101,112,97,114,101,40,113,117,97,100,41,32,123,92,110,32,32,32,32,105,102,32,40,113,117,97,100,46,100,97,116,97,41,32,114,101,116,117,114,110,32,113,117,97,100,46,114,32,61,32,114,97,100,105,105,91,113,117,97,100,46,100,97,116,97,46,105,110,100,101,120,93,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,113,117,97,100,46,114,32,61,32,48,59,32,105,32,60,32,52,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,113,117,97,100,91,105,93,32,38,38,32,113,117,97,100,91,105,93,46,114,32,62,32,113,117,97,100,46,114,41,32,123,92,110,32,32,32,32,32,32,32,32,113,117,97,100,46,114,32,61,32,113,117,97,100,91,105,93,46,114,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,105,97,108,105,122,101,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,110,111,100,101,115,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,118,97,114,32,105,44,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,44,32,110,111,100,101,59,92,110,32,32,32,32,114,97,100,105,105,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,44,32,114,97,100,105,105,91,110,111,100,101,46,105,110,100,101,120,93,32,61,32,43,114,97,100,105,117,115,40,110,111,100,101,44,32,105,44,32,110,111,100,101,115,41,59,92,110,32,32,125,92,110,92,110,32,32,102,111,114,99,101,46,105,110,105,116,105,97,108,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,110,111,100,101,115,32,61,32,95,59,92,110,32,32,32,32,105,110,105,116,105,97,108,105,122,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,105,116,101,114,97,116,105,111,110,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,105,116,101,114,97,116,105,111,110,115,32,61,32,43,95,44,32,102,111,114,99,101,41,32,58,32,105,116,101,114,97,116,105,111,110,115,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,115,116,114,101,110,103,116,104,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,116,114,101,110,103,116,104,32,61,32,43,95,44,32,102,111,114,99,101,41,32,58,32,115,116,114,101,110,103,116,104,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,114,97,100,105,117,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,114,97,100,105,117,115,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,105,110,105,116,105,97,108,105,122,101,40,41,44,32,102,111,114,99,101,41,32,58,32,114,97,100,105,117,115,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,111,114,99,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,111,108,108,105,100,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,67,101,110,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,101,110,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,67,111,108,108,105,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,108,108,105,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,76,105,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,77,97,110,121,66,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,97,110,121,66,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,82,97,100,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,114,97,100,105,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,83,105,109,117,108,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,105,109,117,108,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,101,110,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,101,110,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,101,110,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,108,105,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,108,108,105,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,111,108,108,105,100,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,107,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,108,105,110,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,110,121,66,111,100,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,110,121,66,111,100,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,109,97,110,121,66,111,100,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,100,105,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,97,100,105,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,114,97,100,105,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,105,109,117,108,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,105,109,117,108,97,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,115,105,109,117,108,97,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,121,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,106,105,103,103,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,106,105,103,103,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,77,97,116,104,46,114,97,110,100,111,109,40,41,32,45,32,48,46,53,41,32,42,32,49,101,45,54,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,106,105,103,103,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,108,105,110,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,108,105,110,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,106,105,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,106,105,103,103,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,106,105,103,103,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,108,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,108,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,100,101,120,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,105,110,100,101,120,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,105,110,100,40,110,111,100,101,66,121,73,100,44,32,110,111,100,101,73,100,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,32,61,32,110,111,100,101,66,121,73,100,46,103,101,116,40,110,111,100,101,73,100,41,59,92,110,32,32,105,102,32,40,33,110,111,100,101,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,109,105,115,115,105,110,103,58,32,92,34,32,43,32,110,111,100,101,73,100,41,59,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,108,105,110,107,115,41,32,123,92,110,32,32,118,97,114,32,105,100,32,61,32,105,110,100,101,120,44,92,110,32,32,32,32,32,32,115,116,114,101,110,103,116,104,32,61,32,100,101,102,97,117,108,116,83,116,114,101,110,103,116,104,44,92,110,32,32,32,32,32,32,115,116,114,101,110,103,116,104,115,44,92,110,32,32,32,32,32,32,100,105,115,116,97,110,99,101,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,51,48,41,44,92,110,32,32,32,32,32,32,100,105,115,116,97,110,99,101,115,44,92,110,32,32,32,32,32,32,110,111,100,101,115,44,92,110,32,32,32,32,32,32,99,111,117,110,116,44,92,110,32,32,32,32,32,32,98,105,97,115,44,92,110,32,32,32,32,32,32,105,116,101,114,97,116,105,111,110,115,32,61,32,49,59,92,110,92,110,32,32,105,102,32,40,108,105,110,107,115,32,61,61,32,110,117,108,108,41,32,108,105,110,107,115,32,61,32,91,93,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,83,116,114,101,110,103,116,104,40,108,105,110,107,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,49,32,47,32,77,97,116,104,46,109,105,110,40,99,111,117,110,116,91,108,105,110,107,46,115,111,117,114,99,101,46,105,110,100,101,120,93,44,32,99,111,117,110,116,91,108,105,110,107,46,116,97,114,103,101,116,46,105,110,100,101,120,93,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,99,101,40,97,108,112,104,97,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,32,61,32,48,44,32,110,32,61,32,108,105,110,107,115,46,108,101,110,103,116,104,59,32,107,32,60,32,105,116,101,114,97,116,105,111,110,115,59,32,43,43,107,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,105,110,107,44,32,115,111,117,114,99,101,44,32,116,97,114,103,101,116,44,32,120,44,32,121,44,32,108,44,32,98,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,108,105,110,107,32,61,32,108,105,110,107,115,91,105,93,44,32,115,111,117,114,99,101,32,61,32,108,105,110,107,46,115,111,117,114,99,101,44,32,116,97,114,103,101,116,32,61,32,108,105,110,107,46,116,97,114,103,101,116,59,92,110,32,32,32,32,32,32,32,32,120,32,61,32,116,97,114,103,101,116,46,120,32,43,32,116,97,114,103,101,116,46,118,120,32,45,32,115,111,117,114,99,101,46,120,32,45,32,115,111,117,114,99,101,46,118,120,32,124,124,32,40,48,44,95,106,105,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,32,32,32,32,32,32,121,32,61,32,116,97,114,103,101,116,46,121,32,43,32,116,97,114,103,101,116,46,118,121,32,45,32,115,111,117,114,99,101,46,121,32,45,32,115,111,117,114,99,101,46,118,121,32,124,124,32,40,48,44,95,106,105,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,32,32,32,32,32,32,108,32,61,32,77,97,116,104,46,115,113,114,116,40,120,32,42,32,120,32,43,32,121,32,42,32,121,41,59,92,110,32,32,32,32,32,32,32,32,108,32,61,32,40,108,32,45,32,100,105,115,116,97,110,99,101,115,91,105,93,41,32,47,32,108,32,42,32,97,108,112,104,97,32,42,32,115,116,114,101,110,103,116,104,115,91,105,93,59,92,110,32,32,32,32,32,32,32,32,120,32,42,61,32,108,44,32,121,32,42,61,32,108,59,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,46,118,120,32,45,61,32,120,32,42,32,40,98,32,61,32,98,105,97,115,91,105,93,41,59,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,46,118,121,32,45,61,32,121,32,42,32,98,59,92,110,32,32,32,32,32,32,32,32,115,111,117,114,99,101,46,118,120,32,43,61,32,120,32,42,32,40,98,32,61,32,49,32,45,32,98,41,59,92,110,32,32,32,32,32,32,32,32,115,111,117,114,99,101,46,118,121,32,43,61,32,121,32,42,32,98,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,105,97,108,105,122,101,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,110,111,100,101,115,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,118,97,114,32,105,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,109,32,61,32,108,105,110,107,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,110,111,100,101,66,121,73,100,32,61,32,40,48,44,100,51,95,99,111,108,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,112,41,40,110,111,100,101,115,44,32,105,100,41,44,92,110,32,32,32,32,32,32,32,32,108,105,110,107,59,92,110,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,44,32,99,111,117,110,116,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,32,105,32,60,32,109,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,108,105,110,107,32,61,32,108,105,110,107,115,91,105,93,44,32,108,105,110,107,46,105,110,100,101,120,32,61,32,105,59,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,108,105,110,107,46,115,111,117,114,99,101,32,33,61,61,32,92,34,111,98,106,101,99,116,92,34,41,32,108,105,110,107,46,115,111,117,114,99,101,32,61,32,102,105,110,100,40,110,111,100,101,66,121,73,100,44,32,108,105,110,107,46,115,111,117,114,99,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,108,105,110,107,46,116,97,114,103,101,116,32,33,61,61,32,92,34,111,98,106,101,99,116,92,34,41,32,108,105,110,107,46,116,97,114,103,101,116,32,61,32,102,105,110,100,40,110,111,100,101,66,121,73,100,44,32,108,105,110,107,46,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,99,111,117,110,116,91,108,105,110,107,46,115,111,117,114,99,101,46,105,110,100,101,120,93,32,61,32,40,99,111,117,110,116,91,108,105,110,107,46,115,111,117,114,99,101,46,105,110,100,101,120,93,32,124,124,32,48,41,32,43,32,49,59,92,110,32,32,32,32,32,32,99,111,117,110,116,91,108,105,110,107,46,116,97,114,103,101,116,46,105,110,100,101,120,93,32,61,32,40,99,111,117,110,116,91,108,105,110,107,46,116,97,114,103,101,116,46,105,110,100,101,120,93,32,124,124,32,48,41,32,43,32,49,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,44,32,98,105,97,115,32,61,32,110,101,119,32,65,114,114,97,121,40,109,41,59,32,105,32,60,32,109,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,108,105,110,107,32,61,32,108,105,110,107,115,91,105,93,44,32,98,105,97,115,91,105,93,32,61,32,99,111,117,110,116,91,108,105,110,107,46,115,111,117,114,99,101,46,105,110,100,101,120,93,32,47,32,40,99,111,117,110,116,91,108,105,110,107,46,115,111,117,114,99,101,46,105,110,100,101,120,93,32,43,32,99,111,117,110,116,91,108,105,110,107,46,116,97,114,103,101,116,46,105,110,100,101,120,93,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,116,114,101,110,103,116,104,115,32,61,32,110,101,119,32,65,114,114,97,121,40,109,41,44,32,105,110,105,116,105,97,108,105,122,101,83,116,114,101,110,103,116,104,40,41,59,92,110,32,32,32,32,100,105,115,116,97,110,99,101,115,32,61,32,110,101,119,32,65,114,114,97,121,40,109,41,44,32,105,110,105,116,105,97,108,105,122,101,68,105,115,116,97,110,99,101,40,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,105,97,108,105,122,101,83,116,114,101,110,103,116,104,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,110,111,100,101,115,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,108,105,110,107,115,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,115,116,114,101,110,103,116,104,115,91,105,93,32,61,32,43,115,116,114,101,110,103,116,104,40,108,105,110,107,115,91,105,93,44,32,105,44,32,108,105,110,107,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,105,97,108,105,122,101,68,105,115,116,97,110,99,101,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,110,111,100,101,115,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,108,105,110,107,115,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,100,105,115,116,97,110,99,101,115,91,105,93,32,61,32,43,100,105,115,116,97,110,99,101,40,108,105,110,107,115,91,105,93,44,32,105,44,32,108,105,110,107,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,111,114,99,101,46,105,110,105,116,105,97,108,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,110,111,100,101,115,32,61,32,95,59,92,110,32,32,32,32,105,110,105,116,105,97,108,105,122,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,108,105,110,107,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,108,105,110,107,115,32,61,32,95,44,32,105,110,105,116,105,97,108,105,122,101,40,41,44,32,102,111,114,99,101,41,32,58,32,108,105,110,107,115,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,105,100,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,105,100,32,61,32,95,44,32,102,111,114,99,101,41,32,58,32,105,100,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,105,116,101,114,97,116,105,111,110,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,105,116,101,114,97,116,105,111,110,115,32,61,32,43,95,44,32,102,111,114,99,101,41,32,58,32,105,116,101,114,97,116,105,111,110,115,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,115,116,114,101,110,103,116,104,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,116,114,101,110,103,116,104,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,105,110,105,116,105,97,108,105,122,101,83,116,114,101,110,103,116,104,40,41,44,32,102,111,114,99,101,41,32,58,32,115,116,114,101,110,103,116,104,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,100,105,115,116,97,110,99,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,105,115,116,97,110,99,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,105,110,105,116,105,97,108,105,122,101,68,105,115,116,97,110,99,101,40,41,44,32,102,111,114,99,101,41,32,58,32,100,105,115,116,97,110,99,101,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,111,114,99,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,108,105,110,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,109,97,110,121,66,111,100,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,109,97,110,121,66,111,100,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,106,105,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,106,105,103,103,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,106,105,103,103,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,113,117,97,100,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,113,117,97,100,116,114,101,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,113,117,97,100,116,114,101,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,105,109,117,108,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,105,109,117,108,97,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,115,105,109,117,108,97,116,105,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,115,44,92,110,32,32,32,32,32,32,110,111,100,101,44,92,110,32,32,32,32,32,32,97,108,112,104,97,44,92,110,32,32,32,32,32,32,115,116,114,101,110,103,116,104,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,45,51,48,41,44,92,110,32,32,32,32,32,32,115,116,114,101,110,103,116,104,115,44,92,110,32,32,32,32,32,32,100,105,115,116,97,110,99,101,77,105,110,50,32,61,32,49,44,92,110,32,32,32,32,32,32,100,105,115,116,97,110,99,101,77,97,120,50,32,61,32,73,110,102,105,110,105,116,121,44,92,110,32,32,32,32,32,32,116,104,101,116,97,50,32,61,32,48,46,56,49,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,99,101,40,95,41,32,123,92,110,32,32,32,32,118,97,114,32,105,44,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,44,32,116,114,101,101,32,61,32,40,48,44,100,51,95,113,117,97,100,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,111,100,101,115,44,32,95,115,105,109,117,108,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,120,44,32,95,115,105,109,117,108,97,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,121,41,46,118,105,115,105,116,65,102,116,101,114,40,97,99,99,117,109,117,108,97,116,101,41,59,92,110,32,32,32,32,102,111,114,32,40,97,108,112,104,97,32,61,32,95,44,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,44,32,116,114,101,101,46,118,105,115,105,116,40,97,112,112,108,121,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,105,97,108,105,122,101,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,110,111,100,101,115,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,118,97,114,32,105,44,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,44,32,110,111,100,101,59,92,110,32,32,32,32,115,116,114,101,110,103,116,104,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,44,32,115,116,114,101,110,103,116,104,115,91,110,111,100,101,46,105,110,100,101,120,93,32,61,32,43,115,116,114,101,110,103,116,104,40,110,111,100,101,44,32,105,44,32,110,111,100,101,115,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,97,99,99,117,109,117,108,97,116,101,40,113,117,97,100,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,114,101,110,103,116,104,32,61,32,48,44,32,113,44,32,99,44,32,119,101,105,103,104,116,32,61,32,48,44,32,120,44,32,121,44,32,105,59,92,110,92,110,32,32,32,32,47,47,32,70,111,114,32,105,110,116,101,114,110,97,108,32,110,111,100,101,115,44,32,97,99,99,117,109,117,108,97,116,101,32,102,111,114,99,101,115,32,102,114,111,109,32,99,104,105,108,100,32,113,117,97,100,114,97,110,116,115,46,92,110,32,32,32,32,105,102,32,40,113,117,97,100,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,120,32,61,32,121,32,61,32,105,32,61,32,48,59,32,105,32,60,32,52,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,113,32,61,32,113,117,97,100,91,105,93,41,32,38,38,32,40,99,32,61,32,77,97,116,104,46,97,98,115,40,113,46,118,97,108,117,101,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,114,101,110,103,116,104,32,43,61,32,113,46,118,97,108,117,101,44,32,119,101,105,103,104,116,32,43,61,32,99,44,32,120,32,43,61,32,99,32,42,32,113,46,120,44,32,121,32,43,61,32,99,32,42,32,113,46,121,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,113,117,97,100,46,120,32,61,32,120,32,47,32,119,101,105,103,104,116,59,92,110,32,32,32,32,32,32,113,117,97,100,46,121,32,61,32,121,32,47,32,119,101,105,103,104,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,70,111,114,32,108,101,97,102,32,110,111,100,101,115,44,32,97,99,99,117,109,117,108,97,116,101,32,102,111,114,99,101,115,32,102,114,111,109,32,99,111,105,110,99,105,100,101,110,116,32,113,117,97,100,114,97,110,116,115,46,92,110,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,113,32,61,32,113,117,97,100,59,92,110,32,32,32,32,32,32,113,46,120,32,61,32,113,46,100,97,116,97,46,120,59,92,110,32,32,32,32,32,32,113,46,121,32,61,32,113,46,100,97,116,97,46,121,59,92,110,32,32,32,32,32,32,100,111,32,115,116,114,101,110,103,116,104,32,43,61,32,115,116,114,101,110,103,116,104,115,91,113,46,100,97,116,97,46,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,113,32,61,32,113,46,110,101,120,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,113,117,97,100,46,118,97,108,117,101,32,61,32,115,116,114,101,110,103,116,104,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,97,112,112,108,121,40,113,117,97,100,44,32,120,49,44,32,95,44,32,120,50,41,32,123,92,110,32,32,32,32,105,102,32,40,33,113,117,97,100,46,118,97,108,117,101,41,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,92,110,32,32,32,32,118,97,114,32,120,32,61,32,113,117,97,100,46,120,32,45,32,110,111,100,101,46,120,44,92,110,32,32,32,32,32,32,32,32,121,32,61,32,113,117,97,100,46,121,32,45,32,110,111,100,101,46,121,44,92,110,32,32,32,32,32,32,32,32,119,32,61,32,120,50,32,45,32,120,49,44,92,110,32,32,32,32,32,32,32,32,108,32,61,32,120,32,42,32,120,32,43,32,121,32,42,32,121,59,92,110,92,110,32,32,32,32,47,47,32,65,112,112,108,121,32,116,104,101,32,66,97,114,110,101,115,45,72,117,116,32,97,112,112,114,111,120,105,109,97,116,105,111,110,32,105,102,32,112,111,115,115,105,98,108,101,46,92,110,32,32,32,32,47,47,32,76,105,109,105,116,32,102,111,114,99,101,115,32,102,111,114,32,118,101,114,121,32,99,108,111,115,101,32,110,111,100,101,115,59,32,114,97,110,100,111,109,105,122,101,32,100,105,114,101,99,116,105,111,110,32,105,102,32,99,111,105,110,99,105,100,101,110,116,46,92,110,32,32,32,32,105,102,32,40,119,32,42,32,119,32,47,32,116,104,101,116,97,50,32,60,32,108,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,108,32,60,32,100,105,115,116,97,110,99,101,77,97,120,50,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,120,32,61,61,61,32,48,41,32,120,32,61,32,40,48,44,95,106,105,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,32,108,32,43,61,32,120,32,42,32,120,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,121,32,61,61,61,32,48,41,32,121,32,61,32,40,48,44,95,106,105,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,32,108,32,43,61,32,121,32,42,32,121,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,32,60,32,100,105,115,116,97,110,99,101,77,105,110,50,41,32,108,32,61,32,77,97,116,104,46,115,113,114,116,40,100,105,115,116,97,110,99,101,77,105,110,50,32,42,32,108,41,59,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,118,120,32,43,61,32,120,32,42,32,113,117,97,100,46,118,97,108,117,101,32,42,32,97,108,112,104,97,32,47,32,108,59,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,118,121,32,43,61,32,121,32,42,32,113,117,97,100,46,118,97,108,117,101,32,42,32,97,108,112,104,97,32,47,32,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,112,114,111,99,101,115,115,32,112,111,105,110,116,115,32,100,105,114,101,99,116,108,121,46,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,113,117,97,100,46,108,101,110,103,116,104,32,124,124,32,108,32,62,61,32,100,105,115,116,97,110,99,101,77,97,120,50,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,47,47,32,76,105,109,105,116,32,102,111,114,99,101,115,32,102,111,114,32,118,101,114,121,32,99,108,111,115,101,32,110,111,100,101,115,59,32,114,97,110,100,111,109,105,122,101,32,100,105,114,101,99,116,105,111,110,32,105,102,32,99,111,105,110,99,105,100,101,110,116,46,92,110,32,32,32,32,105,102,32,40,113,117,97,100,46,100,97,116,97,32,33,61,61,32,110,111,100,101,32,124,124,32,113,117,97,100,46,110,101,120,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,120,32,61,61,61,32,48,41,32,120,32,61,32,40,48,44,95,106,105,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,32,108,32,43,61,32,120,32,42,32,120,59,92,110,32,32,32,32,32,32,105,102,32,40,121,32,61,61,61,32,48,41,32,121,32,61,32,40,48,44,95,106,105,103,103,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,32,108,32,43,61,32,121,32,42,32,121,59,92,110,32,32,32,32,32,32,105,102,32,40,108,32,60,32,100,105,115,116,97,110,99,101,77,105,110,50,41,32,108,32,61,32,77,97,116,104,46,115,113,114,116,40,100,105,115,116,97,110,99,101,77,105,110,50,32,42,32,108,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,100,111,32,105,102,32,40,113,117,97,100,46,100,97,116,97,32,33,61,61,32,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,119,32,61,32,115,116,114,101,110,103,116,104,115,91,113,117,97,100,46,100,97,116,97,46,105,110,100,101,120,93,32,42,32,97,108,112,104,97,32,47,32,108,59,92,110,32,32,32,32,32,32,110,111,100,101,46,118,120,32,43,61,32,120,32,42,32,119,59,92,110,32,32,32,32,32,32,110,111,100,101,46,118,121,32,43,61,32,121,32,42,32,119,59,92,110,32,32,32,32,125,32,119,104,105,108,101,32,40,113,117,97,100,32,61,32,113,117,97,100,46,110,101,120,116,41,59,92,110,32,32,125,92,110,92,110,32,32,102,111,114,99,101,46,105,110,105,116,105,97,108,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,110,111,100,101,115,32,61,32,95,59,92,110,32,32,32,32,105,110,105,116,105,97,108,105,122,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,115,116,114,101,110,103,116,104,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,116,114,101,110,103,116,104,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,105,110,105,116,105,97,108,105,122,101,40,41,44,32,102,111,114,99,101,41,32,58,32,115,116,114,101,110,103,116,104,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,100,105,115,116,97,110,99,101,77,105,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,105,115,116,97,110,99,101,77,105,110,50,32,61,32,95,32,42,32,95,44,32,102,111,114,99,101,41,32,58,32,77,97,116,104,46,115,113,114,116,40,100,105,115,116,97,110,99,101,77,105,110,50,41,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,100,105,115,116,97,110,99,101,77,97,120,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,105,115,116,97,110,99,101,77,97,120,50,32,61,32,95,32,42,32,95,44,32,102,111,114,99,101,41,32,58,32,77,97,116,104,46,115,113,114,116,40,100,105,115,116,97,110,99,101,77,97,120,50,41,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,116,104,101,116,97,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,104,101,116,97,50,32,61,32,95,32,42,32,95,44,32,102,111,114,99,101,41,32,58,32,77,97,116,104,46,115,113,114,116,40,116,104,101,116,97,50,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,111,114,99,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,109,97,110,121,66,111,100,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,114,97,100,105,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,114,97,100,105,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,114,97,100,105,117,115,44,32,120,44,32,121,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,115,44,92,110,32,32,32,32,32,32,115,116,114,101,110,103,116,104,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,48,46,49,41,44,92,110,32,32,32,32,32,32,115,116,114,101,110,103,116,104,115,44,92,110,32,32,32,32,32,32,114,97,100,105,117,115,101,115,59,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,114,97,100,105,117,115,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,114,97,100,105,117,115,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,114,97,100,105,117,115,41,59,92,110,32,32,105,102,32,40,120,32,61,61,32,110,117,108,108,41,32,120,32,61,32,48,59,92,110,32,32,105,102,32,40,121,32,61,61,32,110,117,108,108,41,32,121,32,61,32,48,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,99,101,40,97,108,112,104,97,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,44,92,110,32,32,32,32,32,32,32,32,32,32,100,120,32,61,32,110,111,100,101,46,120,32,45,32,120,32,124,124,32,49,101,45,54,44,92,110,32,32,32,32,32,32,32,32,32,32,100,121,32,61,32,110,111,100,101,46,121,32,45,32,121,32,124,124,32,49,101,45,54,44,92,110,32,32,32,32,32,32,32,32,32,32,114,32,61,32,77,97,116,104,46,115,113,114,116,40,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,41,44,92,110,32,32,32,32,32,32,32,32,32,32,107,32,61,32,40,114,97,100,105,117,115,101,115,91,105,93,32,45,32,114,41,32,42,32,115,116,114,101,110,103,116,104,115,91,105,93,32,42,32,97,108,112,104,97,32,47,32,114,59,92,110,32,32,32,32,32,32,110,111,100,101,46,118,120,32,43,61,32,100,120,32,42,32,107,59,92,110,32,32,32,32,32,32,110,111,100,101,46,118,121,32,43,61,32,100,121,32,42,32,107,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,105,97,108,105,122,101,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,110,111,100,101,115,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,118,97,114,32,105,44,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,115,116,114,101,110,103,116,104,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,32,32,32,32,114,97,100,105,117,115,101,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,114,97,100,105,117,115,101,115,91,105,93,32,61,32,43,114,97,100,105,117,115,40,110,111,100,101,115,91,105,93,44,32,105,44,32,110,111,100,101,115,41,59,92,110,32,32,32,32,32,32,115,116,114,101,110,103,116,104,115,91,105,93,32,61,32,105,115,78,97,78,40,114,97,100,105,117,115,101,115,91,105,93,41,32,63,32,48,32,58,32,43,115,116,114,101,110,103,116,104,40,110,111,100,101,115,91,105,93,44,32,105,44,32,110,111,100,101,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,111,114,99,101,46,105,110,105,116,105,97,108,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,110,111,100,101,115,32,61,32,95,44,32,105,110,105,116,105,97,108,105,122,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,115,116,114,101,110,103,116,104,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,116,114,101,110,103,116,104,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,105,110,105,116,105,97,108,105,122,101,40,41,44,32,102,111,114,99,101,41,32,58,32,115,116,114,101,110,103,116,104,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,114,97,100,105,117,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,114,97,100,105,117,115,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,105,110,105,116,105,97,108,105,122,101,40,41,44,32,102,111,114,99,101,41,32,58,32,114,97,100,105,117,115,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,120,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,120,32,61,32,43,95,44,32,102,111,114,99,101,41,32,58,32,120,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,121,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,121,32,61,32,43,95,44,32,102,111,114,99,101,41,32,58,32,121,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,111,114,99,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,114,97,100,105,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,115,105,109,117,108,97,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,115,105,109,117,108,97,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,121,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,100,105,115,112,97,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,100,105,115,112,97,116,99,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,105,115,112,97,116,99,104,47,115,114,99,47,100,105,115,112,97,116,99,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,108,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,108,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,116,105,109,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,120,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,120,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,121,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,121,59,92,110,125,92,110,92,110,118,97,114,32,105,110,105,116,105,97,108,82,97,100,105,117,115,32,61,32,49,48,44,92,110,32,32,32,32,105,110,105,116,105,97,108,65,110,103,108,101,32,61,32,77,97,116,104,46,80,73,32,42,32,40,51,32,45,32,77,97,116,104,46,115,113,114,116,40,53,41,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,111,100,101,115,41,32,123,92,110,32,32,118,97,114,32,115,105,109,117,108,97,116,105,111,110,44,92,110,32,32,32,32,32,32,97,108,112,104,97,32,61,32,49,44,92,110,32,32,32,32,32,32,97,108,112,104,97,77,105,110,32,61,32,48,46,48,48,49,44,92,110,32,32,32,32,32,32,97,108,112,104,97,68,101,99,97,121,32,61,32,49,32,45,32,77,97,116,104,46,112,111,119,40,97,108,112,104,97,77,105,110,44,32,49,32,47,32,51,48,48,41,44,92,110,32,32,32,32,32,32,97,108,112,104,97,84,97,114,103,101,116,32,61,32,48,44,92,110,32,32,32,32,32,32,118,101,108,111,99,105,116,121,68,101,99,97,121,32,61,32,48,46,54,44,92,110,32,32,32,32,32,32,102,111,114,99,101,115,32,61,32,40,48,44,100,51,95,99,111,108,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,112,41,40,41,44,92,110,32,32,32,32,32,32,115,116,101,112,112,101,114,32,61,32,40,48,44,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,105,109,101,114,41,40,115,116,101,112,41,44,92,110,32,32,32,32,32,32,101,118,101,110,116,32,61,32,40,48,44,100,51,95,100,105,115,112,97,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,116,105,99,107,92,34,44,32,92,34,101,110,100,92,34,41,59,92,110,92,110,32,32,105,102,32,40,110,111,100,101,115,32,61,61,32,110,117,108,108,41,32,110,111,100,101,115,32,61,32,91,93,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,116,101,112,40,41,32,123,92,110,32,32,32,32,116,105,99,107,40,41,59,92,110,32,32,32,32,101,118,101,110,116,46,99,97,108,108,40,92,34,116,105,99,107,92,34,44,32,115,105,109,117,108,97,116,105,111,110,41,59,92,110,32,32,32,32,105,102,32,40,97,108,112,104,97,32,60,32,97,108,112,104,97,77,105,110,41,32,123,92,110,32,32,32,32,32,32,115,116,101,112,112,101,114,46,115,116,111,112,40,41,59,92,110,32,32,32,32,32,32,101,118,101,110,116,46,99,97,108,108,40,92,34,101,110,100,92,34,44,32,115,105,109,117,108,97,116,105,111,110,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,105,99,107,40,105,116,101,114,97,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,105,44,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,44,32,110,111,100,101,59,92,110,92,110,32,32,32,32,105,102,32,40,105,116,101,114,97,116,105,111,110,115,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,105,116,101,114,97,116,105,111,110,115,32,61,32,49,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,32,61,32,48,59,32,107,32,60,32,105,116,101,114,97,116,105,111,110,115,59,32,43,43,107,41,32,123,92,110,32,32,32,32,32,32,97,108,112,104,97,32,43,61,32,40,97,108,112,104,97,84,97,114,103,101,116,32,45,32,97,108,112,104,97,41,32,42,32,97,108,112,104,97,68,101,99,97,121,59,92,110,92,110,32,32,32,32,32,32,102,111,114,99,101,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,32,40,102,111,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,99,101,40,97,108,112,104,97,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,102,120,32,61,61,32,110,117,108,108,41,32,110,111,100,101,46,120,32,43,61,32,110,111,100,101,46,118,120,32,42,61,32,118,101,108,111,99,105,116,121,68,101,99,97,121,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,110,111,100,101,46,120,32,61,32,110,111,100,101,46,102,120,44,32,110,111,100,101,46,118,120,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,102,121,32,61,61,32,110,117,108,108,41,32,110,111,100,101,46,121,32,43,61,32,110,111,100,101,46,118,121,32,42,61,32,118,101,108,111,99,105,116,121,68,101,99,97,121,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,110,111,100,101,46,121,32,61,32,110,111,100,101,46,102,121,44,32,110,111,100,101,46,118,121,32,61,32,48,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,115,105,109,117,108,97,116,105,111,110,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,105,97,108,105,122,101,78,111,100,101,115,40,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,44,32,110,111,100,101,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,44,32,110,111,100,101,46,105,110,100,101,120,32,61,32,105,59,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,102,120,32,33,61,32,110,117,108,108,41,32,110,111,100,101,46,120,32,61,32,110,111,100,101,46,102,120,59,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,102,121,32,33,61,32,110,117,108,108,41,32,110,111,100,101,46,121,32,61,32,110,111,100,101,46,102,121,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,78,97,78,40,110,111,100,101,46,120,41,32,124,124,32,105,115,78,97,78,40,110,111,100,101,46,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,97,100,105,117,115,32,61,32,105,110,105,116,105,97,108,82,97,100,105,117,115,32,42,32,77,97,116,104,46,115,113,114,116,40,105,41,44,32,97,110,103,108,101,32,61,32,105,32,42,32,105,110,105,116,105,97,108,65,110,103,108,101,59,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,120,32,61,32,114,97,100,105,117,115,32,42,32,77,97,116,104,46,99,111,115,40,97,110,103,108,101,41,59,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,121,32,61,32,114,97,100,105,117,115,32,42,32,77,97,116,104,46,115,105,110,40,97,110,103,108,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,78,97,78,40,110,111,100,101,46,118,120,41,32,124,124,32,105,115,78,97,78,40,110,111,100,101,46,118,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,118,120,32,61,32,110,111,100,101,46,118,121,32,61,32,48,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,105,97,108,105,122,101,70,111,114,99,101,40,102,111,114,99,101,41,32,123,92,110,32,32,32,32,105,102,32,40,102,111,114,99,101,46,105,110,105,116,105,97,108,105,122,101,41,32,102,111,114,99,101,46,105,110,105,116,105,97,108,105,122,101,40,110,111,100,101,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,111,114,99,101,59,92,110,32,32,125,92,110,92,110,32,32,105,110,105,116,105,97,108,105,122,101,78,111,100,101,115,40,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,115,105,109,117,108,97,116,105,111,110,32,61,32,123,92,110,32,32,32,32,116,105,99,107,58,32,116,105,99,107,44,92,110,92,110,32,32,32,32,114,101,115,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,101,112,112,101,114,46,114,101,115,116,97,114,116,40,115,116,101,112,41,44,32,115,105,109,117,108,97,116,105,111,110,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,115,116,111,112,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,101,112,112,101,114,46,115,116,111,112,40,41,44,32,115,105,109,117,108,97,116,105,111,110,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,110,111,100,101,115,58,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,110,111,100,101,115,32,61,32,95,44,32,105,110,105,116,105,97,108,105,122,101,78,111,100,101,115,40,41,44,32,102,111,114,99,101,115,46,101,97,99,104,40,105,110,105,116,105,97,108,105,122,101,70,111,114,99,101,41,44,32,115,105,109,117,108,97,116,105,111,110,41,32,58,32,110,111,100,101,115,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,97,108,112,104,97,58,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,97,108,112,104,97,32,61,32,43,95,44,32,115,105,109,117,108,97,116,105,111,110,41,32,58,32,97,108,112,104,97,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,97,108,112,104,97,77,105,110,58,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,97,108,112,104,97,77,105,110,32,61,32,43,95,44,32,115,105,109,117,108,97,116,105,111,110,41,32,58,32,97,108,112,104,97,77,105,110,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,97,108,112,104,97,68,101,99,97,121,58,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,97,108,112,104,97,68,101,99,97,121,32,61,32,43,95,44,32,115,105,109,117,108,97,116,105,111,110,41,32,58,32,43,97,108,112,104,97,68,101,99,97,121,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,97,108,112,104,97,84,97,114,103,101,116,58,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,97,108,112,104,97,84,97,114,103,101,116,32,61,32,43,95,44,32,115,105,109,117,108,97,116,105,111,110,41,32,58,32,97,108,112,104,97,84,97,114,103,101,116,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,118,101,108,111,99,105,116,121,68,101,99,97,121,58,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,118,101,108,111,99,105,116,121,68,101,99,97,121,32,61,32,49,32,45,32,95,44,32,115,105,109,117,108,97,116,105,111,110,41,32,58,32,49,32,45,32,118,101,108,111,99,105,116,121,68,101,99,97,121,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,102,111,114,99,101,58,32,102,117,110,99,116,105,111,110,40,110,97,109,101,44,32,95,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,40,40,95,32,61,61,32,110,117,108,108,32,63,32,102,111,114,99,101,115,46,114,101,109,111,118,101,40,110,97,109,101,41,32,58,32,102,111,114,99,101,115,46,115,101,116,40,110,97,109,101,44,32,105,110,105,116,105,97,108,105,122,101,70,111,114,99,101,40,95,41,41,41,44,32,115,105,109,117,108,97,116,105,111,110,41,32,58,32,102,111,114,99,101,115,46,103,101,116,40,110,97,109,101,41,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,102,105,110,100,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,44,32,114,97,100,105,117,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,100,120,44,92,110,32,32,32,32,32,32,32,32,32,32,100,121,44,92,110,32,32,32,32,32,32,32,32,32,32,100,50,44,92,110,32,32,32,32,32,32,32,32,32,32,110,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,99,108,111,115,101,115,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,114,97,100,105,117,115,32,61,61,32,110,117,108,108,41,32,114,97,100,105,117,115,32,61,32,73,110,102,105,110,105,116,121,59,92,110,32,32,32,32,32,32,101,108,115,101,32,114,97,100,105,117,115,32,42,61,32,114,97,100,105,117,115,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,59,92,110,32,32,32,32,32,32,32,32,100,120,32,61,32,120,32,45,32,110,111,100,101,46,120,59,92,110,32,32,32,32,32,32,32,32,100,121,32,61,32,121,32,45,32,110,111,100,101,46,121,59,92,110,32,32,32,32,32,32,32,32,100,50,32,61,32,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,50,32,60,32,114,97,100,105,117,115,41,32,99,108,111,115,101,115,116,32,61,32,110,111,100,101,44,32,114,97,100,105,117,115,32,61,32,100,50,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,111,115,101,115,116,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,111,110,58,32,102,117,110,99,116,105,111,110,40,110,97,109,101,44,32,95,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,40,101,118,101,110,116,46,111,110,40,110,97,109,101,44,32,95,41,44,32,115,105,109,117,108,97,116,105,111,110,41,32,58,32,101,118,101,110,116,46,111,110,40,110,97,109,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,115,105,109,117,108,97,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,118,97,114,32,115,116,114,101,110,103,116,104,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,48,46,49,41,44,92,110,32,32,32,32,32,32,110,111,100,101,115,44,92,110,32,32,32,32,32,32,115,116,114,101,110,103,116,104,115,44,92,110,32,32,32,32,32,32,120,122,59,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,120,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,120,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,120,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,43,120,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,99,101,40,97,108,112,104,97,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,44,32,110,111,100,101,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,44,32,110,111,100,101,46,118,120,32,43,61,32,40,120,122,91,105,93,32,45,32,110,111,100,101,46,120,41,32,42,32,115,116,114,101,110,103,116,104,115,91,105,93,32,42,32,97,108,112,104,97,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,105,97,108,105,122,101,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,110,111,100,101,115,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,118,97,114,32,105,44,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,115,116,114,101,110,103,116,104,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,32,32,32,32,120,122,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,115,116,114,101,110,103,116,104,115,91,105,93,32,61,32,105,115,78,97,78,40,120,122,91,105,93,32,61,32,43,120,40,110,111,100,101,115,91,105,93,44,32,105,44,32,110,111,100,101,115,41,41,32,63,32,48,32,58,32,43,115,116,114,101,110,103,116,104,40,110,111,100,101,115,91,105,93,44,32,105,44,32,110,111,100,101,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,111,114,99,101,46,105,110,105,116,105,97,108,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,110,111,100,101,115,32,61,32,95,59,92,110,32,32,32,32,105,110,105,116,105,97,108,105,122,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,115,116,114,101,110,103,116,104,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,116,114,101,110,103,116,104,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,105,110,105,116,105,97,108,105,122,101,40,41,44,32,102,111,114,99,101,41,32,58,32,115,116,114,101,110,103,116,104,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,120,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,120,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,105,110,105,116,105,97,108,105,122,101,40,41,44,32,102,111,114,99,101,41,32,58,32,120,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,111,114,99,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,121,41,32,123,92,110,32,32,118,97,114,32,115,116,114,101,110,103,116,104,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,48,46,49,41,44,92,110,32,32,32,32,32,32,110,111,100,101,115,44,92,110,32,32,32,32,32,32,115,116,114,101,110,103,116,104,115,44,92,110,32,32,32,32,32,32,121,122,59,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,121,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,121,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,43,121,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,99,101,40,97,108,112,104,97,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,44,32,110,111,100,101,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,44,32,110,111,100,101,46,118,121,32,43,61,32,40,121,122,91,105,93,32,45,32,110,111,100,101,46,121,41,32,42,32,115,116,114,101,110,103,116,104,115,91,105,93,32,42,32,97,108,112,104,97,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,105,97,108,105,122,101,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,110,111,100,101,115,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,118,97,114,32,105,44,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,115,116,114,101,110,103,116,104,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,32,32,32,32,121,122,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,115,116,114,101,110,103,116,104,115,91,105,93,32,61,32,105,115,78,97,78,40,121,122,91,105,93,32,61,32,43,121,40,110,111,100,101,115,91,105,93,44,32,105,44,32,110,111,100,101,115,41,41,32,63,32,48,32,58,32,43,115,116,114,101,110,103,116,104,40,110,111,100,101,115,91,105,93,44,32,105,44,32,110,111,100,101,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,111,114,99,101,46,105,110,105,116,105,97,108,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,110,111,100,101,115,32,61,32,95,59,92,110,32,32,32,32,105,110,105,116,105,97,108,105,122,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,115,116,114,101,110,103,116,104,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,116,114,101,110,103,116,104,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,105,110,105,116,105,97,108,105,122,101,40,41,44,32,102,111,114,99,101,41,32,58,32,115,116,114,101,110,103,116,104,59,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,99,101,46,121,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,121,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,105,110,105,116,105,97,108,105,122,101,40,41,44,32,102,111,114,99,101,41,32,58,32,121,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,111,114,99,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,101,102,97,117,108,116,76,111,99,97,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,97,116,80,114,101,102,105,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,97,116,80,114,101,102,105,120,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,111,99,97,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,108,111,99,97,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,108,111,99,97,108,101,59,92,110,118,97,114,32,102,111,114,109,97,116,59,92,110,118,97,114,32,102,111,114,109,97,116,80,114,101,102,105,120,59,92,110,92,110,100,101,102,97,117,108,116,76,111,99,97,108,101,40,123,92,110,32,32,100,101,99,105,109,97,108,58,32,92,34,46,92,34,44,92,110,32,32,116,104,111,117,115,97,110,100,115,58,32,92,34,44,92,34,44,92,110,32,32,103,114,111,117,112,105,110,103,58,32,91,51,93,44,92,110,32,32,99,117,114,114,101,110,99,121,58,32,91,92,34,36,92,34,44,32,92,34,92,34,93,44,92,110,32,32,109,105,110,117,115,58,32,92,34,45,92,34,92,110,125,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,76,111,99,97,108,101,40,100,101,102,105,110,105,116,105,111,110,41,32,123,92,110,32,32,108,111,99,97,108,101,32,61,32,40,48,44,95,108,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,101,102,105,110,105,116,105,111,110,41,59,92,110,32,32,102,111,114,109,97,116,32,61,32,108,111,99,97,108,101,46,102,111,114,109,97,116,59,92,110,32,32,102,111,114,109,97,116,80,114,101,102,105,120,32,61,32,108,111,99,97,108,101,46,102,111,114,109,97,116,80,114,101,102,105,120,59,92,110,32,32,114,101,116,117,114,110,32,108,111,99,97,108,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,101,120,112,111,110,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,101,120,112,111,110,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,97,116,68,101,99,105,109,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,97,116,68,101,99,105,109,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,68,101,99,105,109,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,32,61,32,40,48,44,95,102,111,114,109,97,116,68,101,99,105,109,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,102,111,114,109,97,116,68,101,99,105,109,97,108,80,97,114,116,115,41,40,77,97,116,104,46,97,98,115,40,120,41,41,44,32,120,32,63,32,120,91,49,93,32,58,32,78,97,78,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,101,120,112,111,110,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,68,101,99,105,109,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,68,101,99,105,109,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,97,116,68,101,99,105,109,97,108,80,97,114,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,97,116,68,101,99,105,109,97,108,80,97,114,116,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,97,98,115,40,120,32,61,32,77,97,116,104,46,114,111,117,110,100,40,120,41,41,32,62,61,32,49,101,50,49,92,110,32,32,32,32,32,32,63,32,120,46,116,111,76,111,99,97,108,101,83,116,114,105,110,103,40,92,34,101,110,92,34,41,46,114,101,112,108,97,99,101,40,47,44,47,103,44,32,92,34,92,34,41,92,110,32,32,32,32,32,32,58,32,120,46,116,111,83,116,114,105,110,103,40,49,48,41,59,92,110,125,92,110,92,110,47,47,32,67,111,109,112,117,116,101,115,32,116,104,101,32,100,101,99,105,109,97,108,32,99,111,101,102,102,105,99,105,101,110,116,32,97,110,100,32,101,120,112,111,110,101,110,116,32,111,102,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,110,117,109,98,101,114,32,120,32,119,105,116,104,92,110,47,47,32,115,105,103,110,105,102,105,99,97,110,116,32,100,105,103,105,116,115,32,112,44,32,119,104,101,114,101,32,120,32,105,115,32,112,111,115,105,116,105,118,101,32,97,110,100,32,112,32,105,115,32,105,110,32,91,49,44,32,50,49,93,32,111,114,32,117,110,100,101,102,105,110,101,100,46,92,110,47,47,32,70,111,114,32,101,120,97,109,112,108,101,44,32,102,111,114,109,97,116,68,101,99,105,109,97,108,80,97,114,116,115,40,49,46,50,51,41,32,114,101,116,117,114,110,115,32,91,92,34,49,50,51,92,34,44,32,48,93,46,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,68,101,99,105,109,97,108,80,97,114,116,115,40,120,44,32,112,41,32,123,92,110,32,32,105,102,32,40,40,105,32,61,32,40,120,32,61,32,112,32,63,32,120,46,116,111,69,120,112,111,110,101,110,116,105,97,108,40,112,32,45,32,49,41,32,58,32,120,46,116,111,69,120,112,111,110,101,110,116,105,97,108,40,41,41,46,105,110,100,101,120,79,102,40,92,34,101,92,34,41,41,32,60,32,48,41,32,114,101,116,117,114,110,32,110,117,108,108,59,32,47,47,32,78,97,78,44,32,194,177,73,110,102,105,110,105,116,121,92,110,32,32,118,97,114,32,105,44,32,99,111,101,102,102,105,99,105,101,110,116,32,61,32,120,46,115,108,105,99,101,40,48,44,32,105,41,59,92,110,92,110,32,32,47,47,32,84,104,101,32,115,116,114,105,110,103,32,114,101,116,117,114,110,101,100,32,98,121,32,116,111,69,120,112,111,110,101,110,116,105,97,108,32,101,105,116,104,101,114,32,104,97,115,32,116,104,101,32,102,111,114,109,32,92,92,100,92,92,46,92,92,100,43,101,91,45,43,93,92,92,100,43,92,110,32,32,47,47,32,40,101,46,103,46,44,32,49,46,50,101,43,51,41,32,111,114,32,116,104,101,32,102,111,114,109,32,92,92,100,101,91,45,43,93,92,92,100,43,32,40,101,46,103,46,44,32,49,101,43,51,41,46,92,110,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,99,111,101,102,102,105,99,105,101,110,116,46,108,101,110,103,116,104,32,62,32,49,32,63,32,99,111,101,102,102,105,99,105,101,110,116,91,48,93,32,43,32,99,111,101,102,102,105,99,105,101,110,116,46,115,108,105,99,101,40,50,41,32,58,32,99,111,101,102,102,105,99,105,101,110,116,44,92,110,32,32,32,32,43,120,46,115,108,105,99,101,40,105,32,43,32,49,41,92,110,32,32,93,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,68,101,99,105,109,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,71,114,111,117,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,71,114,111,117,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,103,114,111,117,112,105,110,103,44,32,116,104,111,117,115,97,110,100,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,119,105,100,116,104,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,118,97,108,117,101,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,116,32,61,32,91,93,44,92,110,32,32,32,32,32,32,32,32,106,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,103,32,61,32,103,114,111,117,112,105,110,103,91,48,93,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,48,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,105,32,62,32,48,32,38,38,32,103,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,108,101,110,103,116,104,32,43,32,103,32,43,32,49,32,62,32,119,105,100,116,104,41,32,103,32,61,32,77,97,116,104,46,109,97,120,40,49,44,32,119,105,100,116,104,32,45,32,108,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,116,46,112,117,115,104,40,118,97,108,117,101,46,115,117,98,115,116,114,105,110,103,40,105,32,45,61,32,103,44,32,105,32,43,32,103,41,41,59,92,110,32,32,32,32,32,32,105,102,32,40,40,108,101,110,103,116,104,32,43,61,32,103,32,43,32,49,41,32,62,32,119,105,100,116,104,41,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,103,32,61,32,103,114,111,117,112,105,110,103,91,106,32,61,32,40,106,32,43,32,49,41,32,37,32,103,114,111,117,112,105,110,103,46,108,101,110,103,116,104,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,46,114,101,118,101,114,115,101,40,41,46,106,111,105,110,40,116,104,111,117,115,97,110,100,115,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,71,114,111,117,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,78,117,109,101,114,97,108,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,78,117,109,101,114,97,108,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,117,109,101,114,97,108,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,46,114,101,112,108,97,99,101,40,47,91,48,45,57,93,47,103,44,32,102,117,110,99,116,105,111,110,40,105,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,109,101,114,97,108,115,91,43,105,93,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,78,117,109,101,114,97,108,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,80,114,101,102,105,120,65,117,116,111,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,80,114,101,102,105,120,65,117,116,111,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,101,102,105,120,69,120,112,111,110,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,101,102,105,120,69,120,112,111,110,101,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,97,116,68,101,99,105,109,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,97,116,68,101,99,105,109,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,68,101,99,105,109,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,112,114,101,102,105,120,69,120,112,111,110,101,110,116,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,44,32,112,41,32,123,92,110,32,32,118,97,114,32,100,32,61,32,40,48,44,95,102,111,114,109,97,116,68,101,99,105,109,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,102,111,114,109,97,116,68,101,99,105,109,97,108,80,97,114,116,115,41,40,120,44,32,112,41,59,92,110,32,32,105,102,32,40,33,100,41,32,114,101,116,117,114,110,32,120,32,43,32,92,34,92,34,59,92,110,32,32,118,97,114,32,99,111,101,102,102,105,99,105,101,110,116,32,61,32,100,91,48,93,44,92,110,32,32,32,32,32,32,101,120,112,111,110,101,110,116,32,61,32,100,91,49,93,44,92,110,32,32,32,32,32,32,105,32,61,32,101,120,112,111,110,101,110,116,32,45,32,40,112,114,101,102,105,120,69,120,112,111,110,101,110,116,32,61,32,77,97,116,104,46,109,97,120,40,45,56,44,32,77,97,116,104,46,109,105,110,40,56,44,32,77,97,116,104,46,102,108,111,111,114,40,101,120,112,111,110,101,110,116,32,47,32,51,41,41,41,32,42,32,51,41,32,43,32,49,44,92,110,32,32,32,32,32,32,110,32,61,32,99,111,101,102,102,105,99,105,101,110,116,46,108,101,110,103,116,104,59,92,110,32,32,114,101,116,117,114,110,32,105,32,61,61,61,32,110,32,63,32,99,111,101,102,102,105,99,105,101,110,116,92,110,32,32,32,32,32,32,58,32,105,32,62,32,110,32,63,32,99,111,101,102,102,105,99,105,101,110,116,32,43,32,110,101,119,32,65,114,114,97,121,40,105,32,45,32,110,32,43,32,49,41,46,106,111,105,110,40,92,34,48,92,34,41,92,110,32,32,32,32,32,32,58,32,105,32,62,32,48,32,63,32,99,111,101,102,102,105,99,105,101,110,116,46,115,108,105,99,101,40,48,44,32,105,41,32,43,32,92,34,46,92,34,32,43,32,99,111,101,102,102,105,99,105,101,110,116,46,115,108,105,99,101,40,105,41,92,110,32,32,32,32,32,32,58,32,92,34,48,46,92,34,32,43,32,110,101,119,32,65,114,114,97,121,40,49,32,45,32,105,41,46,106,111,105,110,40,92,34,48,92,34,41,32,43,32,40,48,44,95,102,111,114,109,97,116,68,101,99,105,109,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,102,111,114,109,97,116,68,101,99,105,109,97,108,80,97,114,116,115,41,40,120,44,32,77,97,116,104,46,109,97,120,40,48,44,32,112,32,43,32,105,32,45,32,49,41,41,91,48,93,59,32,47,47,32,108,101,115,115,32,116,104,97,110,32,49,121,33,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,80,114,101,102,105,120,65,117,116,111,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,82,111,117,110,100,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,82,111,117,110,100,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,97,116,68,101,99,105,109,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,97,116,68,101,99,105,109,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,68,101,99,105,109,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,44,32,112,41,32,123,92,110,32,32,118,97,114,32,100,32,61,32,40,48,44,95,102,111,114,109,97,116,68,101,99,105,109,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,102,111,114,109,97,116,68,101,99,105,109,97,108,80,97,114,116,115,41,40,120,44,32,112,41,59,92,110,32,32,105,102,32,40,33,100,41,32,114,101,116,117,114,110,32,120,32,43,32,92,34,92,34,59,92,110,32,32,118,97,114,32,99,111,101,102,102,105,99,105,101,110,116,32,61,32,100,91,48,93,44,92,110,32,32,32,32,32,32,101,120,112,111,110,101,110,116,32,61,32,100,91,49,93,59,92,110,32,32,114,101,116,117,114,110,32,101,120,112,111,110,101,110,116,32,60,32,48,32,63,32,92,34,48,46,92,34,32,43,32,110,101,119,32,65,114,114,97,121,40,45,101,120,112,111,110,101,110,116,41,46,106,111,105,110,40,92,34,48,92,34,41,32,43,32,99,111,101,102,102,105,99,105,101,110,116,92,110,32,32,32,32,32,32,58,32,99,111,101,102,102,105,99,105,101,110,116,46,108,101,110,103,116,104,32,62,32,101,120,112,111,110,101,110,116,32,43,32,49,32,63,32,99,111,101,102,102,105,99,105,101,110,116,46,115,108,105,99,101,40,48,44,32,101,120,112,111,110,101,110,116,32,43,32,49,41,32,43,32,92,34,46,92,34,32,43,32,99,111,101,102,102,105,99,105,101,110,116,46,115,108,105,99,101,40,101,120,112,111,110,101,110,116,32,43,32,49,41,92,110,32,32,32,32,32,32,58,32,99,111,101,102,102,105,99,105,101,110,116,32,43,32,110,101,119,32,65,114,114,97,121,40,101,120,112,111,110,101,110,116,32,45,32,99,111,101,102,102,105,99,105,101,110,116,46,108,101,110,103,116,104,32,43,32,50,41,46,106,111,105,110,40,92,34,48,92,34,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,82,111,117,110,100,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,97,116,83,112,101,99,105,102,105,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,70,111,114,109,97,116,83,112,101,99,105,102,105,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,47,32,91,91,102,105,108,108,93,97,108,105,103,110,93,91,115,105,103,110,93,91,115,121,109,98,111,108,93,91,48,93,91,119,105,100,116,104,93,91,44,93,91,46,112,114,101,99,105,115,105,111,110,93,91,126,93,91,116,121,112,101,93,92,110,118,97,114,32,114,101,32,61,32,47,94,40,63,58,40,46,41,63,40,91,60,62,61,94,93,41,41,63,40,91,43,92,92,45,40,32,93,41,63,40,91,36,35,93,41,63,40,48,41,63,40,92,92,100,43,41,63,40,44,41,63,40,92,92,46,92,92,100,43,41,63,40,126,41,63,40,91,97,45,122,37,93,41,63,36,47,105,59,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,40,115,112,101,99,105,102,105,101,114,41,32,123,92,110,32,32,105,102,32,40,33,40,109,97,116,99,104,32,61,32,114,101,46,101,120,101,99,40,115,112,101,99,105,102,105,101,114,41,41,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,105,110,118,97,108,105,100,32,102,111,114,109,97,116,58,32,92,34,32,43,32,115,112,101,99,105,102,105,101,114,41,59,92,110,32,32,118,97,114,32,109,97,116,99,104,59,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,70,111,114,109,97,116,83,112,101,99,105,102,105,101,114,40,123,92,110,32,32,32,32,102,105,108,108,58,32,109,97,116,99,104,91,49,93,44,92,110,32,32,32,32,97,108,105,103,110,58,32,109,97,116,99,104,91,50,93,44,92,110,32,32,32,32,115,105,103,110,58,32,109,97,116,99,104,91,51,93,44,92,110,32,32,32,32,115,121,109,98,111,108,58,32,109,97,116,99,104,91,52,93,44,92,110,32,32,32,32,122,101,114,111,58,32,109,97,116,99,104,91,53,93,44,92,110,32,32,32,32,119,105,100,116,104,58,32,109,97,116,99,104,91,54,93,44,92,110,32,32,32,32,99,111,109,109,97,58,32,109,97,116,99,104,91,55,93,44,92,110,32,32,32,32,112,114,101,99,105,115,105,111,110,58,32,109,97,116,99,104,91,56,93,32,38,38,32,109,97,116,99,104,91,56,93,46,115,108,105,99,101,40,49,41,44,92,110,32,32,32,32,116,114,105,109,58,32,109,97,116,99,104,91,57,93,44,92,110,32,32,32,32,116,121,112,101,58,32,109,97,116,99,104,91,49,48,93,92,110,32,32,125,41,59,92,110,125,92,110,92,110,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,46,112,114,111,116,111,116,121,112,101,32,61,32,70,111,114,109,97,116,83,112,101,99,105,102,105,101,114,46,112,114,111,116,111,116,121,112,101,59,32,47,47,32,105,110,115,116,97,110,99,101,111,102,92,110,92,110,102,117,110,99,116,105,111,110,32,70,111,114,109,97,116,83,112,101,99,105,102,105,101,114,40,115,112,101,99,105,102,105,101,114,41,32,123,92,110,32,32,116,104,105,115,46,102,105,108,108,32,61,32,115,112,101,99,105,102,105,101,114,46,102,105,108,108,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,92,34,32,92,34,32,58,32,115,112,101,99,105,102,105,101,114,46,102,105,108,108,32,43,32,92,34,92,34,59,92,110,32,32,116,104,105,115,46,97,108,105,103,110,32,61,32,115,112,101,99,105,102,105,101,114,46,97,108,105,103,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,92,34,62,92,34,32,58,32,115,112,101,99,105,102,105,101,114,46,97,108,105,103,110,32,43,32,92,34,92,34,59,92,110,32,32,116,104,105,115,46,115,105,103,110,32,61,32,115,112,101,99,105,102,105,101,114,46,115,105,103,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,92,34,45,92,34,32,58,32,115,112,101,99,105,102,105,101,114,46,115,105,103,110,32,43,32,92,34,92,34,59,92,110,32,32,116,104,105,115,46,115,121,109,98,111,108,32,61,32,115,112,101,99,105,102,105,101,114,46,115,121,109,98,111,108,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,92,34,92,34,32,58,32,115,112,101,99,105,102,105,101,114,46,115,121,109,98,111,108,32,43,32,92,34,92,34,59,92,110,32,32,116,104,105,115,46,122,101,114,111,32,61,32,33,33,115,112,101,99,105,102,105,101,114,46,122,101,114,111,59,92,110,32,32,116,104,105,115,46,119,105,100,116,104,32,61,32,115,112,101,99,105,102,105,101,114,46,119,105,100,116,104,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,43,115,112,101,99,105,102,105,101,114,46,119,105,100,116,104,59,92,110,32,32,116,104,105,115,46,99,111,109,109,97,32,61,32,33,33,115,112,101,99,105,102,105,101,114,46,99,111,109,109,97,59,92,110,32,32,116,104,105,115,46,112,114,101,99,105,115,105,111,110,32,61,32,115,112,101,99,105,102,105,101,114,46,112,114,101,99,105,115,105,111,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,43,115,112,101,99,105,102,105,101,114,46,112,114,101,99,105,115,105,111,110,59,92,110,32,32,116,104,105,115,46,116,114,105,109,32,61,32,33,33,115,112,101,99,105,102,105,101,114,46,116,114,105,109,59,92,110,32,32,116,104,105,115,46,116,121,112,101,32,61,32,115,112,101,99,105,102,105,101,114,46,116,121,112,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,92,34,92,34,32,58,32,115,112,101,99,105,102,105,101,114,46,116,121,112,101,32,43,32,92,34,92,34,59,92,110,125,92,110,92,110,70,111,114,109,97,116,83,112,101,99,105,102,105,101,114,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,108,92,110,32,32,32,32,32,32,43,32,116,104,105,115,46,97,108,105,103,110,92,110,32,32,32,32,32,32,43,32,116,104,105,115,46,115,105,103,110,92,110,32,32,32,32,32,32,43,32,116,104,105,115,46,115,121,109,98,111,108,92,110,32,32,32,32,32,32,43,32,40,116,104,105,115,46,122,101,114,111,32,63,32,92,34,48,92,34,32,58,32,92,34,92,34,41,92,110,32,32,32,32,32,32,43,32,40,116,104,105,115,46,119,105,100,116,104,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,92,34,92,34,32,58,32,77,97,116,104,46,109,97,120,40,49,44,32,116,104,105,115,46,119,105,100,116,104,32,124,32,48,41,41,92,110,32,32,32,32,32,32,43,32,40,116,104,105,115,46,99,111,109,109,97,32,63,32,92,34,44,92,34,32,58,32,92,34,92,34,41,92,110,32,32,32,32,32,32,43,32,40,116,104,105,115,46,112,114,101,99,105,115,105,111,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,92,34,92,34,32,58,32,92,34,46,92,34,32,43,32,77,97,116,104,46,109,97,120,40,48,44,32,116,104,105,115,46,112,114,101,99,105,115,105,111,110,32,124,32,48,41,41,92,110,32,32,32,32,32,32,43,32,40,116,104,105,115,46,116,114,105,109,32,63,32,92,34,126,92,34,32,58,32,92,34,92,34,41,92,110,32,32,32,32,32,32,43,32,116,104,105,115,46,116,121,112,101,59,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,84,114,105,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,84,114,105,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,47,32,84,114,105,109,115,32,105,110,115,105,103,110,105,102,105,99,97,110,116,32,122,101,114,111,115,44,32,101,46,103,46,44,32,114,101,112,108,97,99,101,115,32,49,46,50,48,48,48,107,32,119,105,116,104,32,49,46,50,107,46,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,41,32,123,92,110,32,32,111,117,116,58,32,102,111,114,32,40,118,97,114,32,110,32,61,32,115,46,108,101,110,103,116,104,44,32,105,32,61,32,49,44,32,105,48,32,61,32,45,49,44,32,105,49,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,115,119,105,116,99,104,32,40,115,91,105,93,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,92,34,46,92,34,58,32,105,48,32,61,32,105,49,32,61,32,105,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,92,34,48,92,34,58,32,105,102,32,40,105,48,32,61,61,61,32,48,41,32,105,48,32,61,32,105,59,32,105,49,32,61,32,105,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,105,102,32,40,33,43,115,91,105,93,41,32,98,114,101,97,107,32,111,117,116,59,32,105,102,32,40,105,48,32,62,32,48,41,32,105,48,32,61,32,48,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,105,48,32,62,32,48,32,63,32,115,46,115,108,105,99,101,40,48,44,32,105,48,41,32,43,32,115,46,115,108,105,99,101,40,105,49,32,43,32,49,41,32,58,32,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,84,114,105,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,84,121,112,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,84,121,112,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,97,116,68,101,99,105,109,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,97,116,68,101,99,105,109,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,68,101,99,105,109,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,97,116,80,114,101,102,105,120,65,117,116,111,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,97,116,80,114,101,102,105,120,65,117,116,111,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,80,114,101,102,105,120,65,117,116,111,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,97,116,82,111,117,110,100,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,97,116,82,111,117,110,100,101,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,82,111,117,110,100,101,100,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,92,34,37,92,34,58,32,102,117,110,99,116,105,111,110,40,120,44,32,112,41,32,123,32,114,101,116,117,114,110,32,40,120,32,42,32,49,48,48,41,46,116,111,70,105,120,101,100,40,112,41,59,32,125,44,92,110,32,32,92,34,98,92,34,58,32,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,120,41,46,116,111,83,116,114,105,110,103,40,50,41,59,32,125,44,92,110,32,32,92,34,99,92,34,58,32,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,120,32,43,32,92,34,92,34,59,32,125,44,92,110,32,32,92,34,100,92,34,58,32,95,102,111,114,109,97,116,68,101,99,105,109,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,92,34,101,92,34,58,32,102,117,110,99,116,105,111,110,40,120,44,32,112,41,32,123,32,114,101,116,117,114,110,32,120,46,116,111,69,120,112,111,110,101,110,116,105,97,108,40,112,41,59,32,125,44,92,110,32,32,92,34,102,92,34,58,32,102,117,110,99,116,105,111,110,40,120,44,32,112,41,32,123,32,114,101,116,117,114,110,32,120,46,116,111,70,105,120,101,100,40,112,41,59,32,125,44,92,110,32,32,92,34,103,92,34,58,32,102,117,110,99,116,105,111,110,40,120,44,32,112,41,32,123,32,114,101,116,117,114,110,32,120,46,116,111,80,114,101,99,105,115,105,111,110,40,112,41,59,32,125,44,92,110,32,32,92,34,111,92,34,58,32,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,120,41,46,116,111,83,116,114,105,110,103,40,56,41,59,32,125,44,92,110,32,32,92,34,112,92,34,58,32,102,117,110,99,116,105,111,110,40,120,44,32,112,41,32,123,32,114,101,116,117,114,110,32,40,48,44,95,102,111,114,109,97,116,82,111,117,110,100,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,120,32,42,32,49,48,48,44,32,112,41,59,32,125,44,92,110,32,32,92,34,114,92,34,58,32,95,102,111,114,109,97,116,82,111,117,110,100,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,92,34,115,92,34,58,32,95,102,111,114,109,97,116,80,114,101,102,105,120,65,117,116,111,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,92,34,88,92,34,58,32,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,120,41,46,116,111,83,116,114,105,110,103,40,49,54,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,59,32,125,44,92,110,32,32,92,34,120,92,34,58,32,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,120,41,46,116,111,83,116,114,105,110,103,40,49,54,41,59,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,84,121,112,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,97,116,83,112,101,99,105,102,105,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,70,111,114,109,97,116,83,112,101,99,105,102,105,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,101,102,97,117,108,116,76,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,102,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,97,116,68,101,102,97,117,108,116,76,111,99,97,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,101,102,97,117,108,116,76,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,97,116,76,111,99,97,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,97,116,80,114,101,102,105,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,101,102,97,117,108,116,76,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,102,111,114,109,97,116,80,114,101,102,105,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,101,99,105,115,105,111,110,70,105,120,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,101,99,105,115,105,111,110,70,105,120,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,101,99,105,115,105,111,110,80,114,101,102,105,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,101,99,105,115,105,111,110,80,114,101,102,105,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,101,99,105,115,105,111,110,82,111,117,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,101,99,105,115,105,111,110,82,111,117,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,102,97,117,108,116,76,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,111,99,97,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,108,111,99,97,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,101,99,105,115,105,111,110,70,105,120,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,101,99,105,115,105,111,110,70,105,120,101,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,112,114,101,99,105,115,105,111,110,70,105,120,101,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,101,99,105,115,105,111,110,80,114,101,102,105,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,101,99,105,115,105,111,110,80,114,101,102,105,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,112,114,101,99,105,115,105,111,110,80,114,101,102,105,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,101,99,105,115,105,111,110,82,111,117,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,101,99,105,115,105,111,110,82,111,117,110,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,112,114,101,99,105,115,105,111,110,82,111,117,110,100,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,108,111,99,97,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,108,111,99,97,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,120,112,111,110,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,120,112,111,110,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,101,120,112,111,110,101,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,97,116,71,114,111,117,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,97,116,71,114,111,117,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,71,114,111,117,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,97,116,78,117,109,101,114,97,108,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,97,116,78,117,109,101,114,97,108,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,78,117,109,101,114,97,108,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,97,116,84,114,105,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,97,116,84,114,105,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,84,114,105,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,97,116,84,121,112,101,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,97,116,84,121,112,101,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,84,121,112,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,111,114,109,97,116,80,114,101,102,105,120,65,117,116,111,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,111,114,109,97,116,80,114,101,102,105,120,65,117,116,111,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,80,114,101,102,105,120,65,117,116,111,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,100,101,110,116,105,116,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,100,101,110,116,105,116,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,109,97,112,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,109,97,112,44,92,110,32,32,32,32,112,114,101,102,105,120,101,115,32,61,32,91,92,34,121,92,34,44,92,34,122,92,34,44,92,34,97,92,34,44,92,34,102,92,34,44,92,34,112,92,34,44,92,34,110,92,34,44,92,34,194,181,92,34,44,92,34,109,92,34,44,92,34,92,34,44,92,34,107,92,34,44,92,34,77,92,34,44,92,34,71,92,34,44,92,34,84,92,34,44,92,34,80,92,34,44,92,34,69,92,34,44,92,34,90,92,34,44,92,34,89,92,34,93,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,108,111,99,97,108,101,41,32,123,92,110,32,32,118,97,114,32,103,114,111,117,112,32,61,32,108,111,99,97,108,101,46,103,114,111,117,112,105,110,103,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,32,108,111,99,97,108,101,46,116,104,111,117,115,97,110,100,115,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,95,105,100,101,110,116,105,116,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,58,32,40,48,44,95,102,111,114,109,97,116,71,114,111,117,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,109,97,112,46,99,97,108,108,40,108,111,99,97,108,101,46,103,114,111,117,112,105,110,103,44,32,78,117,109,98,101,114,41,44,32,108,111,99,97,108,101,46,116,104,111,117,115,97,110,100,115,32,43,32,92,34,92,34,41,44,92,110,32,32,32,32,32,32,99,117,114,114,101,110,99,121,80,114,101,102,105,120,32,61,32,108,111,99,97,108,101,46,99,117,114,114,101,110,99,121,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,92,34,92,34,32,58,32,108,111,99,97,108,101,46,99,117,114,114,101,110,99,121,91,48,93,32,43,32,92,34,92,34,44,92,110,32,32,32,32,32,32,99,117,114,114,101,110,99,121,83,117,102,102,105,120,32,61,32,108,111,99,97,108,101,46,99,117,114,114,101,110,99,121,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,92,34,92,34,32,58,32,108,111,99,97,108,101,46,99,117,114,114,101,110,99,121,91,49,93,32,43,32,92,34,92,34,44,92,110,32,32,32,32,32,32,100,101,99,105,109,97,108,32,61,32,108,111,99,97,108,101,46,100,101,99,105,109,97,108,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,92,34,46,92,34,32,58,32,108,111,99,97,108,101,46,100,101,99,105,109,97,108,32,43,32,92,34,92,34,44,92,110,32,32,32,32,32,32,110,117,109,101,114,97,108,115,32,61,32,108,111,99,97,108,101,46,110,117,109,101,114,97,108,115,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,95,105,100,101,110,116,105,116,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,58,32,40,48,44,95,102,111,114,109,97,116,78,117,109,101,114,97,108,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,109,97,112,46,99,97,108,108,40,108,111,99,97,108,101,46,110,117,109,101,114,97,108,115,44,32,83,116,114,105,110,103,41,41,44,92,110,32,32,32,32,32,32,112,101,114,99,101,110,116,32,61,32,108,111,99,97,108,101,46,112,101,114,99,101,110,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,92,34,37,92,34,32,58,32,108,111,99,97,108,101,46,112,101,114,99,101,110,116,32,43,32,92,34,92,34,44,92,110,32,32,32,32,32,32,109,105,110,117,115,32,61,32,108,111,99,97,108,101,46,109,105,110,117,115,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,92,34,45,92,34,32,58,32,108,111,99,97,108,101,46,109,105,110,117,115,32,43,32,92,34,92,34,44,92,110,32,32,32,32,32,32,110,97,110,32,61,32,108,111,99,97,108,101,46,110,97,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,92,34,78,97,78,92,34,32,58,32,108,111,99,97,108,101,46,110,97,110,32,43,32,92,34,92,34,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,110,101,119,70,111,114,109,97,116,40,115,112,101,99,105,102,105,101,114,41,32,123,92,110,32,32,32,32,115,112,101,99,105,102,105,101,114,32,61,32,40,48,44,95,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,112,101,99,105,102,105,101,114,41,59,92,110,92,110,32,32,32,32,118,97,114,32,102,105,108,108,32,61,32,115,112,101,99,105,102,105,101,114,46,102,105,108,108,44,92,110,32,32,32,32,32,32,32,32,97,108,105,103,110,32,61,32,115,112,101,99,105,102,105,101,114,46,97,108,105,103,110,44,92,110,32,32,32,32,32,32,32,32,115,105,103,110,32,61,32,115,112,101,99,105,102,105,101,114,46,115,105,103,110,44,92,110,32,32,32,32,32,32,32,32,115,121,109,98,111,108,32,61,32,115,112,101,99,105,102,105,101,114,46,115,121,109,98,111,108,44,92,110,32,32,32,32,32,32,32,32,122,101,114,111,32,61,32,115,112,101,99,105,102,105,101,114,46,122,101,114,111,44,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,32,61,32,115,112,101,99,105,102,105,101,114,46,119,105,100,116,104,44,92,110,32,32,32,32,32,32,32,32,99,111,109,109,97,32,61,32,115,112,101,99,105,102,105,101,114,46,99,111,109,109,97,44,92,110,32,32,32,32,32,32,32,32,112,114,101,99,105,115,105,111,110,32,61,32,115,112,101,99,105,102,105,101,114,46,112,114,101,99,105,115,105,111,110,44,92,110,32,32,32,32,32,32,32,32,116,114,105,109,32,61,32,115,112,101,99,105,102,105,101,114,46,116,114,105,109,44,92,110,32,32,32,32,32,32,32,32,116,121,112,101,32,61,32,115,112,101,99,105,102,105,101,114,46,116,121,112,101,59,92,110,92,110,32,32,32,32,47,47,32,84,104,101,32,92,34,110,92,34,32,116,121,112,101,32,105,115,32,97,110,32,97,108,105,97,115,32,102,111,114,32,92,34,44,103,92,34,46,92,110,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,92,34,110,92,34,41,32,99,111,109,109,97,32,61,32,116,114,117,101,44,32,116,121,112,101,32,61,32,92,34,103,92,34,59,92,110,92,110,32,32,32,32,47,47,32,84,104,101,32,92,34,92,34,32,116,121,112,101,44,32,97,110,100,32,97,110,121,32,105,110,118,97,108,105,100,32,116,121,112,101,44,32,105,115,32,97,110,32,97,108,105,97,115,32,102,111,114,32,92,34,46,49,50,126,103,92,34,46,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,33,95,102,111,114,109,97,116,84,121,112,101,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,91,116,121,112,101,93,41,32,112,114,101,99,105,115,105,111,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,40,112,114,101,99,105,115,105,111,110,32,61,32,49,50,41,44,32,116,114,105,109,32,61,32,116,114,117,101,44,32,116,121,112,101,32,61,32,92,34,103,92,34,59,92,110,92,110,32,32,32,32,47,47,32,73,102,32,122,101,114,111,32,102,105,108,108,32,105,115,32,115,112,101,99,105,102,105,101,100,44,32,112,97,100,100,105,110,103,32,103,111,101,115,32,97,102,116,101,114,32,115,105,103,110,32,97,110,100,32,98,101,102,111,114,101,32,100,105,103,105,116,115,46,92,110,32,32,32,32,105,102,32,40,122,101,114,111,32,124,124,32,40,102,105,108,108,32,61,61,61,32,92,34,48,92,34,32,38,38,32,97,108,105,103,110,32,61,61,61,32,92,34,61,92,34,41,41,32,122,101,114,111,32,61,32,116,114,117,101,44,32,102,105,108,108,32,61,32,92,34,48,92,34,44,32,97,108,105,103,110,32,61,32,92,34,61,92,34,59,92,110,92,110,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,112,114,101,102,105,120,32,97,110,100,32,115,117,102,102,105,120,46,92,110,32,32,32,32,47,47,32,70,111,114,32,83,73,45,112,114,101,102,105,120,44,32,116,104,101,32,115,117,102,102,105,120,32,105,115,32,108,97,122,105,108,121,32,99,111,109,112,117,116,101,100,46,92,110,32,32,32,32,118,97,114,32,112,114,101,102,105,120,32,61,32,115,121,109,98,111,108,32,61,61,61,32,92,34,36,92,34,32,63,32,99,117,114,114,101,110,99,121,80,114,101,102,105,120,32,58,32,115,121,109,98,111,108,32,61,61,61,32,92,34,35,92,34,32,38,38,32,47,91,98,111,120,88,93,47,46,116,101,115,116,40,116,121,112,101,41,32,63,32,92,34,48,92,34,32,43,32,116,121,112,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,32,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,115,117,102,102,105,120,32,61,32,115,121,109,98,111,108,32,61,61,61,32,92,34,36,92,34,32,63,32,99,117,114,114,101,110,99,121,83,117,102,102,105,120,32,58,32,47,91,37,112,93,47,46,116,101,115,116,40,116,121,112,101,41,32,63,32,112,101,114,99,101,110,116,32,58,32,92,34,92,34,59,92,110,92,110,32,32,32,32,47,47,32,87,104,97,116,32,102,111,114,109,97,116,32,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,32,119,101,32,117,115,101,63,92,110,32,32,32,32,47,47,32,73,115,32,116,104,105,115,32,97,110,32,105,110,116,101,103,101,114,32,116,121,112,101,63,92,110,32,32,32,32,47,47,32,67,97,110,32,116,104,105,115,32,116,121,112,101,32,103,101,110,101,114,97,116,101,32,101,120,112,111,110,101,110,116,105,97,108,32,110,111,116,97,116,105,111,110,63,92,110,32,32,32,32,118,97,114,32,102,111,114,109,97,116,84,121,112,101,32,61,32,95,102,111,114,109,97,116,84,121,112,101,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,91,116,121,112,101,93,44,92,110,32,32,32,32,32,32,32,32,109,97,121,98,101,83,117,102,102,105,120,32,61,32,47,91,100,101,102,103,112,114,115,37,93,47,46,116,101,115,116,40,116,121,112,101,41,59,92,110,92,110,32,32,32,32,47,47,32,83,101,116,32,116,104,101,32,100,101,102,97,117,108,116,32,112,114,101,99,105,115,105,111,110,32,105,102,32,110,111,116,32,115,112,101,99,105,102,105,101,100,44,92,110,32,32,32,32,47,47,32,111,114,32,99,108,97,109,112,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,112,114,101,99,105,115,105,111,110,32,116,111,32,116,104,101,32,115,117,112,112,111,114,116,101,100,32,114,97,110,103,101,46,92,110,32,32,32,32,47,47,32,70,111,114,32,115,105,103,110,105,102,105,99,97,110,116,32,112,114,101,99,105,115,105,111,110,44,32,105,116,32,109,117,115,116,32,98,101,32,105,110,32,91,49,44,32,50,49,93,46,92,110,32,32,32,32,47,47,32,70,111,114,32,102,105,120,101,100,32,112,114,101,99,105,115,105,111,110,44,32,105,116,32,109,117,115,116,32,98,101,32,105,110,32,91,48,44,32,50,48,93,46,92,110,32,32,32,32,112,114,101,99,105,115,105,111,110,32,61,32,112,114,101,99,105,115,105,111,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,54,92,110,32,32,32,32,32,32,32,32,58,32,47,91,103,112,114,115,93,47,46,116,101,115,116,40,116,121,112,101,41,32,63,32,77,97,116,104,46,109,97,120,40,49,44,32,77,97,116,104,46,109,105,110,40,50,49,44,32,112,114,101,99,105,115,105,111,110,41,41,92,110,32,32,32,32,32,32,32,32,58,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,50,48,44,32,112,114,101,99,105,115,105,111,110,41,41,59,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,80,114,101,102,105,120,32,61,32,112,114,101,102,105,120,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,83,117,102,102,105,120,32,61,32,115,117,102,102,105,120,44,92,110,32,32,32,32,32,32,32,32,32,32,105,44,32,110,44,32,99,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,92,34,99,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,83,117,102,102,105,120,32,61,32,102,111,114,109,97,116,84,121,112,101,40,118,97,108,117,101,41,32,43,32,118,97,108,117,101,83,117,102,102,105,120,59,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,92,34,92,34,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,43,118,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,68,101,116,101,114,109,105,110,101,32,116,104,101,32,115,105,103,110,46,32,45,48,32,105,115,32,110,111,116,32,108,101,115,115,32,116,104,97,110,32,48,44,32,98,117,116,32,49,32,47,32,45,48,32,105,115,33,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,78,101,103,97,116,105,118,101,32,61,32,118,97,108,117,101,32,60,32,48,32,124,124,32,49,32,47,32,118,97,108,117,101,32,60,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,80,101,114,102,111,114,109,32,116,104,101,32,105,110,105,116,105,97,108,32,102,111,114,109,97,116,116,105,110,103,46,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,105,115,78,97,78,40,118,97,108,117,101,41,32,63,32,110,97,110,32,58,32,102,111,114,109,97,116,84,121,112,101,40,77,97,116,104,46,97,98,115,40,118,97,108,117,101,41,44,32,112,114,101,99,105,115,105,111,110,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,84,114,105,109,32,105,110,115,105,103,110,105,102,105,99,97,110,116,32,122,101,114,111,115,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,114,105,109,41,32,118,97,108,117,101,32,61,32,40,48,44,95,102,111,114,109,97,116,84,114,105,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,97,108,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,97,32,110,101,103,97,116,105,118,101,32,118,97,108,117,101,32,114,111,117,110,100,115,32,116,111,32,122,101,114,111,32,97,102,116,101,114,32,102,111,114,109,97,116,116,105,110,103,44,32,97,110,100,32,110,111,32,101,120,112,108,105,99,105,116,32,112,111,115,105,116,105,118,101,32,115,105,103,110,32,105,115,32,114,101,113,117,101,115,116,101,100,44,32,104,105,100,101,32,116,104,101,32,115,105,103,110,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,78,101,103,97,116,105,118,101,32,38,38,32,43,118,97,108,117,101,32,61,61,61,32,48,32,38,38,32,115,105,103,110,32,33,61,61,32,92,34,43,92,34,41,32,118,97,108,117,101,78,101,103,97,116,105,118,101,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,112,114,101,102,105,120,32,97,110,100,32,115,117,102,102,105,120,46,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,80,114,101,102,105,120,32,61,32,40,118,97,108,117,101,78,101,103,97,116,105,118,101,32,63,32,40,115,105,103,110,32,61,61,61,32,92,34,40,92,34,32,63,32,115,105,103,110,32,58,32,109,105,110,117,115,41,32,58,32,115,105,103,110,32,61,61,61,32,92,34,45,92,34,32,124,124,32,115,105,103,110,32,61,61,61,32,92,34,40,92,34,32,63,32,92,34,92,34,32,58,32,115,105,103,110,41,32,43,32,118,97,108,117,101,80,114,101,102,105,120,59,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,83,117,102,102,105,120,32,61,32,40,116,121,112,101,32,61,61,61,32,92,34,115,92,34,32,63,32,112,114,101,102,105,120,101,115,91,56,32,43,32,95,102,111,114,109,97,116,80,114,101,102,105,120,65,117,116,111,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,114,101,102,105,120,69,120,112,111,110,101,110,116,32,47,32,51,93,32,58,32,92,34,92,34,41,32,43,32,118,97,108,117,101,83,117,102,102,105,120,32,43,32,40,118,97,108,117,101,78,101,103,97,116,105,118,101,32,38,38,32,115,105,103,110,32,61,61,61,32,92,34,40,92,34,32,63,32,92,34,41,92,34,32,58,32,92,34,92,34,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,66,114,101,97,107,32,116,104,101,32,102,111,114,109,97,116,116,101,100,32,118,97,108,117,101,32,105,110,116,111,32,116,104,101,32,105,110,116,101,103,101,114,32,226,128,156,118,97,108,117,101,226,128,157,32,112,97,114,116,32,116,104,97,116,32,99,97,110,32,98,101,92,110,32,32,32,32,32,32,32,32,47,47,32,103,114,111,117,112,101,100,44,32,97,110,100,32,102,114,97,99,116,105,111,110,97,108,32,111,114,32,101,120,112,111,110,101,110,116,105,97,108,32,226,128,156,115,117,102,102,105,120,226,128,157,32,112,97,114,116,32,116,104,97,116,32,105,115,32,110,111,116,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,109,97,121,98,101,83,117,102,102,105,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,32,61,32,45,49,44,32,110,32,61,32,118,97,108,117,101,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,32,61,32,118,97,108,117,101,46,99,104,97,114,67,111,100,101,65,116,40,105,41,44,32,52,56,32,62,32,99,32,124,124,32,99,32,62,32,53,55,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,83,117,102,102,105,120,32,61,32,40,99,32,61,61,61,32,52,54,32,63,32,100,101,99,105,109,97,108,32,43,32,118,97,108,117,101,46,115,108,105,99,101,40,105,32,43,32,49,41,32,58,32,118,97,108,117,101,46,115,108,105,99,101,40,105,41,41,32,43,32,118,97,108,117,101,83,117,102,102,105,120,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,118,97,108,117,101,46,115,108,105,99,101,40,48,44,32,105,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,102,105,108,108,32,99,104,97,114,97,99,116,101,114,32,105,115,32,110,111,116,32,92,34,48,92,34,44,32,103,114,111,117,112,105,110,103,32,105,115,32,97,112,112,108,105,101,100,32,98,101,102,111,114,101,32,112,97,100,100,105,110,103,46,92,110,32,32,32,32,32,32,105,102,32,40,99,111,109,109,97,32,38,38,32,33,122,101,114,111,41,32,118,97,108,117,101,32,61,32,103,114,111,117,112,40,118,97,108,117,101,44,32,73,110,102,105,110,105,116,121,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,112,97,100,100,105,110,103,46,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,118,97,108,117,101,80,114,101,102,105,120,46,108,101,110,103,116,104,32,43,32,118,97,108,117,101,46,108,101,110,103,116,104,32,43,32,118,97,108,117,101,83,117,102,102,105,120,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,112,97,100,100,105,110,103,32,61,32,108,101,110,103,116,104,32,60,32,119,105,100,116,104,32,63,32,110,101,119,32,65,114,114,97,121,40,119,105,100,116,104,32,45,32,108,101,110,103,116,104,32,43,32,49,41,46,106,111,105,110,40,102,105,108,108,41,32,58,32,92,34,92,34,59,92,110,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,102,105,108,108,32,99,104,97,114,97,99,116,101,114,32,105,115,32,92,34,48,92,34,44,32,103,114,111,117,112,105,110,103,32,105,115,32,97,112,112,108,105,101,100,32,97,102,116,101,114,32,112,97,100,100,105,110,103,46,92,110,32,32,32,32,32,32,105,102,32,40,99,111,109,109,97,32,38,38,32,122,101,114,111,41,32,118,97,108,117,101,32,61,32,103,114,111,117,112,40,112,97,100,100,105,110,103,32,43,32,118,97,108,117,101,44,32,112,97,100,100,105,110,103,46,108,101,110,103,116,104,32,63,32,119,105,100,116,104,32,45,32,118,97,108,117,101,83,117,102,102,105,120,46,108,101,110,103,116,104,32,58,32,73,110,102,105,110,105,116,121,41,44,32,112,97,100,100,105,110,103,32,61,32,92,34,92,34,59,92,110,92,110,32,32,32,32,32,32,47,47,32,82,101,99,111,110,115,116,114,117,99,116,32,116,104,101,32,102,105,110,97,108,32,111,117,116,112,117,116,32,98,97,115,101,100,32,111,110,32,116,104,101,32,100,101,115,105,114,101,100,32,97,108,105,103,110,109,101,110,116,46,92,110,32,32,32,32,32,32,115,119,105,116,99,104,32,40,97,108,105,103,110,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,60,92,34,58,32,118,97,108,117,101,32,61,32,118,97,108,117,101,80,114,101,102,105,120,32,43,32,118,97,108,117,101,32,43,32,118,97,108,117,101,83,117,102,102,105,120,32,43,32,112,97,100,100,105,110,103,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,61,92,34,58,32,118,97,108,117,101,32,61,32,118,97,108,117,101,80,114,101,102,105,120,32,43,32,112,97,100,100,105,110,103,32,43,32,118,97,108,117,101,32,43,32,118,97,108,117,101,83,117,102,102,105,120,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,94,92,34,58,32,118,97,108,117,101,32,61,32,112,97,100,100,105,110,103,46,115,108,105,99,101,40,48,44,32,108,101,110,103,116,104,32,61,32,112,97,100,100,105,110,103,46,108,101,110,103,116,104,32,62,62,32,49,41,32,43,32,118,97,108,117,101,80,114,101,102,105,120,32,43,32,118,97,108,117,101,32,43,32,118,97,108,117,101,83,117,102,102,105,120,32,43,32,112,97,100,100,105,110,103,46,115,108,105,99,101,40,108,101,110,103,116,104,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,118,97,108,117,101,32,61,32,112,97,100,100,105,110,103,32,43,32,118,97,108,117,101,80,114,101,102,105,120,32,43,32,118,97,108,117,101,32,43,32,118,97,108,117,101,83,117,102,102,105,120,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,109,101,114,97,108,115,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,111,114,109,97,116,46,116,111,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,112,101,99,105,102,105,101,114,32,43,32,92,34,92,34,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,80,114,101,102,105,120,40,115,112,101,99,105,102,105,101,114,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,102,32,61,32,110,101,119,70,111,114,109,97,116,40,40,115,112,101,99,105,102,105,101,114,32,61,32,40,48,44,95,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,112,101,99,105,102,105,101,114,41,44,32,115,112,101,99,105,102,105,101,114,46,116,121,112,101,32,61,32,92,34,102,92,34,44,32,115,112,101,99,105,102,105,101,114,41,41,44,92,110,32,32,32,32,32,32,32,32,101,32,61,32,77,97,116,104,46,109,97,120,40,45,56,44,32,77,97,116,104,46,109,105,110,40,56,44,32,77,97,116,104,46,102,108,111,111,114,40,40,48,44,95,101,120,112,111,110,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,97,108,117,101,41,32,47,32,51,41,41,41,32,42,32,51,44,92,110,32,32,32,32,32,32,32,32,107,32,61,32,77,97,116,104,46,112,111,119,40,49,48,44,32,45,101,41,44,92,110,32,32,32,32,32,32,32,32,112,114,101,102,105,120,32,61,32,112,114,101,102,105,120,101,115,91,56,32,43,32,101,32,47,32,51,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,40,107,32,42,32,118,97,108,117,101,41,32,43,32,112,114,101,102,105,120,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,102,111,114,109,97,116,58,32,110,101,119,70,111,114,109,97,116,44,92,110,32,32,32,32,102,111,114,109,97,116,80,114,101,102,105,120,58,32,102,111,114,109,97,116,80,114,101,102,105,120,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,108,111,99,97,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,112,114,101,99,105,115,105,111,110,70,105,120,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,112,114,101,99,105,115,105,111,110,70,105,120,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,120,112,111,110,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,120,112,111,110,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,101,120,112,111,110,101,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,116,101,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,48,44,32,45,40,48,44,95,101,120,112,111,110,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,77,97,116,104,46,97,98,115,40,115,116,101,112,41,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,112,114,101,99,105,115,105,111,110,70,105,120,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,112,114,101,99,105,115,105,111,110,80,114,101,102,105,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,112,114,101,99,105,115,105,111,110,80,114,101,102,105,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,120,112,111,110,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,120,112,111,110,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,101,120,112,111,110,101,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,116,101,112,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,97,120,40,45,56,44,32,77,97,116,104,46,109,105,110,40,56,44,32,77,97,116,104,46,102,108,111,111,114,40,40,48,44,95,101,120,112,111,110,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,97,108,117,101,41,32,47,32,51,41,41,41,32,42,32,51,32,45,32,40,48,44,95,101,120,112,111,110,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,77,97,116,104,46,97,98,115,40,115,116,101,112,41,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,112,114,101,99,105,115,105,111,110,80,114,101,102,105,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,112,114,101,99,105,115,105,111,110,82,111,117,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,112,114,101,99,105,115,105,111,110,82,111,117,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,120,112,111,110,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,120,112,111,110,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,101,120,112,111,110,101,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,116,101,112,44,32,109,97,120,41,32,123,92,110,32,32,115,116,101,112,32,61,32,77,97,116,104,46,97,98,115,40,115,116,101,112,41,44,32,109,97,120,32,61,32,77,97,116,104,46,97,98,115,40,109,97,120,41,32,45,32,115,116,101,112,59,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,48,44,32,40,48,44,95,101,120,112,111,110,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,109,97,120,41,32,45,32,40,48,44,95,101,120,112,111,110,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,101,112,41,41,32,43,32,49,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,112,114,101,99,105,115,105,111,110,82,111,117,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,97,100,100,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,97,100,100,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,47,32,65,100,100,115,32,102,108,111,97,116,105,110,103,32,112,111,105,110,116,32,110,117,109,98,101,114,115,32,119,105,116,104,32,116,119,105,99,101,32,116,104,101,32,110,111,114,109,97,108,32,112,114,101,99,105,115,105,111,110,46,92,110,47,47,32,82,101,102,101,114,101,110,99,101,58,32,74,46,32,82,46,32,83,104,101,119,99,104,117,107,44,32,65,100,97,112,116,105,118,101,32,80,114,101,99,105,115,105,111,110,32,70,108,111,97,116,105,110,103,45,80,111,105,110,116,32,65,114,105,116,104,109,101,116,105,99,32,97,110,100,92,110,47,47,32,70,97,115,116,32,82,111,98,117,115,116,32,71,101,111,109,101,116,114,105,99,32,80,114,101,100,105,99,97,116,101,115,44,32,68,105,115,99,114,101,116,101,32,38,32,67,111,109,112,117,116,97,116,105,111,110,97,108,32,71,101,111,109,101,116,114,121,32,49,56,40,51,41,92,110,47,47,32,51,48,53,226,128,147,51,54,51,32,40,49,57,57,55,41,46,92,110,47,47,32,67,111,100,101,32,97,100,97,112,116,101,100,32,102,114,111,109,32,71,101,111,103,114,97,112,104,105,99,76,105,98,32,98,121,32,67,104,97,114,108,101,115,32,70,46,32,70,46,32,75,97,114,110,101,121,44,92,110,47,47,32,104,116,116,112,58,47,47,103,101,111,103,114,97,112,104,105,99,108,105,98,46,115,111,117,114,99,101,102,111,114,103,101,46,110,101,116,47,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,65,100,100,101,114,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,65,100,100,101,114,40,41,32,123,92,110,32,32,116,104,105,115,46,114,101,115,101,116,40,41,59,92,110,125,92,110,92,110,65,100,100,101,114,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,65,100,100,101,114,44,92,110,32,32,114,101,115,101,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,32,61,32,47,47,32,114,111,117,110,100,101,100,32,118,97,108,117,101,92,110,32,32,32,32,116,104,105,115,46,116,32,61,32,48,59,32,47,47,32,101,120,97,99,116,32,101,114,114,111,114,92,110,32,32,125,44,92,110,32,32,97,100,100,58,32,102,117,110,99,116,105,111,110,40,121,41,32,123,92,110,32,32,32,32,97,100,100,40,116,101,109,112,44,32,121,44,32,116,104,105,115,46,116,41,59,92,110,32,32,32,32,97,100,100,40,116,104,105,115,44,32,116,101,109,112,46,115,44,32,116,104,105,115,46,115,41,59,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,115,41,32,116,104,105,115,46,116,32,43,61,32,116,101,109,112,46,116,59,92,110,32,32,32,32,101,108,115,101,32,116,104,105,115,46,115,32,61,32,116,101,109,112,46,116,59,92,110,32,32,125,44,92,110,32,32,118,97,108,117,101,79,102,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,59,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,116,101,109,112,32,61,32,110,101,119,32,65,100,100,101,114,59,92,110,92,110,102,117,110,99,116,105,111,110,32,97,100,100,40,97,100,100,101,114,44,32,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,120,32,61,32,97,100,100,101,114,46,115,32,61,32,97,32,43,32,98,44,92,110,32,32,32,32,32,32,98,118,32,61,32,120,32,45,32,97,44,92,110,32,32,32,32,32,32,97,118,32,61,32,120,32,45,32,98,118,59,92,110,32,32,97,100,100,101,114,46,116,32,61,32,40,97,32,45,32,97,118,41,32,43,32,40,98,32,45,32,98,118,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,97,100,100,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,97,114,101,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,97,114,101,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,114,101,97,82,105,110,103,83,117,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,114,101,97,82,105,110,103,83,117,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,114,101,97,83,116,114,101,97,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,114,101,97,83,116,114,101,97,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,100,100,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,100,100,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,97,100,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,111,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,110,111,111,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,101,97,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,115,116,114,101,97,109,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,97,114,101,97,82,105,110,103,83,117,109,32,61,32,40,48,44,95,97,100,100,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,92,110,118,97,114,32,97,114,101,97,83,117,109,32,61,32,40,48,44,95,97,100,100,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,92,110,32,32,32,32,108,97,109,98,100,97,48,48,44,92,110,32,32,32,32,112,104,105,48,48,44,92,110,32,32,32,32,108,97,109,98,100,97,48,44,92,110,32,32,32,32,99,111,115,80,104,105,48,44,92,110,32,32,32,32,115,105,110,80,104,105,48,59,92,110,92,110,118,97,114,32,97,114,101,97,83,116,114,101,97,109,32,61,32,123,92,110,32,32,112,111,105,110,116,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,108,105,110,101,69,110,100,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,112,111,108,121,103,111,110,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,97,114,101,97,82,105,110,103,83,117,109,46,114,101,115,101,116,40,41,59,92,110,32,32,32,32,97,114,101,97,83,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,32,61,32,97,114,101,97,82,105,110,103,83,116,97,114,116,59,92,110,32,32,32,32,97,114,101,97,83,116,114,101,97,109,46,108,105,110,101,69,110,100,32,61,32,97,114,101,97,82,105,110,103,69,110,100,59,92,110,32,32,125,44,92,110,32,32,112,111,108,121,103,111,110,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,97,114,101,97,82,105,110,103,32,61,32,43,97,114,101,97,82,105,110,103,83,117,109,59,92,110,32,32,32,32,97,114,101,97,83,117,109,46,97,100,100,40,97,114,101,97,82,105,110,103,32,60,32,48,32,63,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,97,117,32,43,32,97,114,101,97,82,105,110,103,32,58,32,97,114,101,97,82,105,110,103,41,59,92,110,32,32,32,32,116,104,105,115,46,108,105,110,101,83,116,97,114,116,32,61,32,116,104,105,115,46,108,105,110,101,69,110,100,32,61,32,116,104,105,115,46,112,111,105,110,116,32,61,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,32,32,125,44,92,110,32,32,115,112,104,101,114,101,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,97,114,101,97,83,117,109,46,97,100,100,40,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,97,117,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,97,114,101,97,82,105,110,103,83,116,97,114,116,40,41,32,123,92,110,32,32,97,114,101,97,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,97,114,101,97,80,111,105,110,116,70,105,114,115,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,114,101,97,82,105,110,103,69,110,100,40,41,32,123,92,110,32,32,97,114,101,97,80,111,105,110,116,40,108,97,109,98,100,97,48,48,44,32,112,104,105,48,48,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,114,101,97,80,111,105,110,116,70,105,114,115,116,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,97,114,101,97,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,97,114,101,97,80,111,105,110,116,59,92,110,32,32,108,97,109,98,100,97,48,48,32,61,32,108,97,109,98,100,97,44,32,112,104,105,48,48,32,61,32,112,104,105,59,92,110,32,32,108,97,109,98,100,97,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,97,100,105,97,110,115,44,32,112,104,105,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,97,100,105,97,110,115,59,92,110,32,32,108,97,109,98,100,97,48,32,61,32,108,97,109,98,100,97,44,32,99,111,115,80,104,105,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,111,115,41,40,112,104,105,32,61,32,112,104,105,32,47,32,50,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,113,117,97,114,116,101,114,80,105,41,44,32,115,105,110,80,104,105,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,105,110,41,40,112,104,105,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,114,101,97,80,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,108,97,109,98,100,97,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,97,100,105,97,110,115,44,32,112,104,105,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,97,100,105,97,110,115,59,92,110,32,32,112,104,105,32,61,32,112,104,105,32,47,32,50,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,113,117,97,114,116,101,114,80,105,59,32,47,47,32,104,97,108,102,32,116,104,101,32,97,110,103,117,108,97,114,32,100,105,115,116,97,110,99,101,32,102,114,111,109,32,115,111,117,116,104,32,112,111,108,101,92,110,92,110,32,32,47,47,32,83,112,104,101,114,105,99,97,108,32,101,120,99,101,115,115,32,69,32,102,111,114,32,97,32,115,112,104,101,114,105,99,97,108,32,116,114,105,97,110,103,108,101,32,119,105,116,104,32,118,101,114,116,105,99,101,115,58,32,115,111,117,116,104,32,112,111,108,101,44,92,110,32,32,47,47,32,112,114,101,118,105,111,117,115,32,112,111,105,110,116,44,32,99,117,114,114,101,110,116,32,112,111,105,110,116,46,32,32,85,115,101,115,32,97,32,102,111,114,109,117,108,97,32,100,101,114,105,118,101,100,32,102,114,111,109,32,67,97,103,110,111,108,105,226,128,153,115,92,110,32,32,47,47,32,116,104,101,111,114,101,109,46,32,32,83,101,101,32,84,111,100,104,117,110,116,101,114,44,32,83,112,104,101,114,105,99,97,108,32,84,114,105,103,46,32,40,49,56,55,49,41,44,32,83,101,99,46,32,49,48,51,44,32,69,113,46,32,40,50,41,46,92,110,32,32,118,97,114,32,100,76,97,109,98,100,97,32,61,32,108,97,109,98,100,97,32,45,32,108,97,109,98,100,97,48,44,92,110,32,32,32,32,32,32,115,100,76,97,109,98,100,97,32,61,32,100,76,97,109,98,100,97,32,62,61,32,48,32,63,32,49,32,58,32,45,49,44,92,110,32,32,32,32,32,32,97,100,76,97,109,98,100,97,32,61,32,115,100,76,97,109,98,100,97,32,42,32,100,76,97,109,98,100,97,44,92,110,32,32,32,32,32,32,99,111,115,80,104,105,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,111,115,41,40,112,104,105,41,44,92,110,32,32,32,32,32,32,115,105,110,80,104,105,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,105,110,41,40,112,104,105,41,44,92,110,32,32,32,32,32,32,107,32,61,32,115,105,110,80,104,105,48,32,42,32,115,105,110,80,104,105,44,92,110,32,32,32,32,32,32,117,32,61,32,99,111,115,80,104,105,48,32,42,32,99,111,115,80,104,105,32,43,32,107,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,111,115,41,40,97,100,76,97,109,98,100,97,41,44,92,110,32,32,32,32,32,32,118,32,61,32,107,32,42,32,115,100,76,97,109,98,100,97,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,105,110,41,40,97,100,76,97,109,98,100,97,41,59,92,110,32,32,97,114,101,97,82,105,110,103,83,117,109,46,97,100,100,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,116,97,110,50,41,40,118,44,32,117,41,41,59,92,110,92,110,32,32,47,47,32,65,100,118,97,110,99,101,32,116,104,101,32,112,114,101,118,105,111,117,115,32,112,111,105,110,116,115,46,92,110,32,32,108,97,109,98,100,97,48,32,61,32,108,97,109,98,100,97,44,32,99,111,115,80,104,105,48,32,61,32,99,111,115,80,104,105,44,32,115,105,110,80,104,105,48,32,61,32,115,105,110,80,104,105,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,111,98,106,101,99,116,41,32,123,92,110,32,32,97,114,101,97,83,117,109,46,114,101,115,101,116,40,41,59,92,110,32,32,40,48,44,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,98,106,101,99,116,44,32,97,114,101,97,83,116,114,101,97,109,41,59,92,110,32,32,114,101,116,117,114,110,32,97,114,101,97,83,117,109,32,42,32,50,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,97,114,101,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,98,111,117,110,100,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,98,111,117,110,100,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,100,100,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,100,100,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,97,100,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,101,97,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,97,114,101,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,116,101,115,105,97,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,97,114,116,101,115,105,97,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,101,97,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,115,116,114,101,97,109,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,108,97,109,98,100,97,48,44,32,112,104,105,48,44,32,108,97,109,98,100,97,49,44,32,112,104,105,49,44,32,47,47,32,98,111,117,110,100,115,92,110,32,32,32,32,108,97,109,98,100,97,50,44,32,47,47,32,112,114,101,118,105,111,117,115,32,108,97,109,98,100,97,45,99,111,111,114,100,105,110,97,116,101,92,110,32,32,32,32,108,97,109,98,100,97,48,48,44,32,112,104,105,48,48,44,32,47,47,32,102,105,114,115,116,32,112,111,105,110,116,92,110,32,32,32,32,112,48,44,32,47,47,32,112,114,101,118,105,111,117,115,32,51,68,32,112,111,105,110,116,92,110,32,32,32,32,100,101,108,116,97,83,117,109,32,61,32,40,48,44,95,97,100,100,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,92,110,32,32,32,32,114,97,110,103,101,115,44,92,110,32,32,32,32,114,97,110,103,101,59,92,110,92,110,118,97,114,32,98,111,117,110,100,115,83,116,114,101,97,109,32,61,32,123,92,110,32,32,112,111,105,110,116,58,32,98,111,117,110,100,115,80,111,105,110,116,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,98,111,117,110,100,115,76,105,110,101,83,116,97,114,116,44,92,110,32,32,108,105,110,101,69,110,100,58,32,98,111,117,110,100,115,76,105,110,101,69,110,100,44,92,110,32,32,112,111,108,121,103,111,110,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,98,111,117,110,100,115,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,98,111,117,110,100,115,82,105,110,103,80,111,105,110,116,59,92,110,32,32,32,32,98,111,117,110,100,115,83,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,32,61,32,98,111,117,110,100,115,82,105,110,103,83,116,97,114,116,59,92,110,32,32,32,32,98,111,117,110,100,115,83,116,114,101,97,109,46,108,105,110,101,69,110,100,32,61,32,98,111,117,110,100,115,82,105,110,103,69,110,100,59,92,110,32,32,32,32,100,101,108,116,97,83,117,109,46,114,101,115,101,116,40,41,59,92,110,32,32,32,32,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,114,101,97,83,116,114,101,97,109,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,59,92,110,32,32,125,44,92,110,32,32,112,111,108,121,103,111,110,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,114,101,97,83,116,114,101,97,109,46,112,111,108,121,103,111,110,69,110,100,40,41,59,92,110,32,32,32,32,98,111,117,110,100,115,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,98,111,117,110,100,115,80,111,105,110,116,59,92,110,32,32,32,32,98,111,117,110,100,115,83,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,32,61,32,98,111,117,110,100,115,76,105,110,101,83,116,97,114,116,59,92,110,32,32,32,32,98,111,117,110,100,115,83,116,114,101,97,109,46,108,105,110,101,69,110,100,32,61,32,98,111,117,110,100,115,76,105,110,101,69,110,100,59,92,110,32,32,32,32,105,102,32,40,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,114,101,97,82,105,110,103,83,117,109,32,60,32,48,41,32,108,97,109,98,100,97,48,32,61,32,45,40,108,97,109,98,100,97,49,32,61,32,49,56,48,41,44,32,112,104,105,48,32,61,32,45,40,112,104,105,49,32,61,32,57,48,41,59,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,100,101,108,116,97,83,117,109,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,112,115,105,108,111,110,41,32,112,104,105,49,32,61,32,57,48,59,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,100,101,108,116,97,83,117,109,32,60,32,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,112,115,105,108,111,110,41,32,112,104,105,48,32,61,32,45,57,48,59,92,110,32,32,32,32,114,97,110,103,101,91,48,93,32,61,32,108,97,109,98,100,97,48,44,32,114,97,110,103,101,91,49,93,32,61,32,108,97,109,98,100,97,49,59,92,110,32,32,125,44,92,110,32,32,115,112,104,101,114,101,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,108,97,109,98,100,97,48,32,61,32,45,40,108,97,109,98,100,97,49,32,61,32,49,56,48,41,44,32,112,104,105,48,32,61,32,45,40,112,104,105,49,32,61,32,57,48,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,98,111,117,110,100,115,80,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,114,97,110,103,101,115,46,112,117,115,104,40,114,97,110,103,101,32,61,32,91,108,97,109,98,100,97,48,32,61,32,108,97,109,98,100,97,44,32,108,97,109,98,100,97,49,32,61,32,108,97,109,98,100,97,93,41,59,92,110,32,32,105,102,32,40,112,104,105,32,60,32,112,104,105,48,41,32,112,104,105,48,32,61,32,112,104,105,59,92,110,32,32,105,102,32,40,112,104,105,32,62,32,112,104,105,49,41,32,112,104,105,49,32,61,32,112,104,105,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,105,110,101,80,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,118,97,114,32,112,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,41,40,91,108,97,109,98,100,97,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,97,100,105,97,110,115,44,32,112,104,105,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,97,100,105,97,110,115,93,41,59,92,110,32,32,105,102,32,40,112,48,41,32,123,92,110,32,32,32,32,118,97,114,32,110,111,114,109,97,108,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,67,114,111,115,115,41,40,112,48,44,32,112,41,44,92,110,32,32,32,32,32,32,32,32,101,113,117,97,116,111,114,105,97,108,32,61,32,91,110,111,114,109,97,108,91,49,93,44,32,45,110,111,114,109,97,108,91,48,93,44,32,48,93,44,92,110,32,32,32,32,32,32,32,32,105,110,102,108,101,99,116,105,111,110,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,67,114,111,115,115,41,40,101,113,117,97,116,111,114,105,97,108,44,32,110,111,114,109,97,108,41,59,92,110,32,32,32,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,78,111,114,109,97,108,105,122,101,73,110,80,108,97,99,101,41,40,105,110,102,108,101,99,116,105,111,110,41,59,92,110,32,32,32,32,105,110,102,108,101,99,116,105,111,110,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,112,104,101,114,105,99,97,108,41,40,105,110,102,108,101,99,116,105,111,110,41,59,92,110,32,32,32,32,118,97,114,32,100,101,108,116,97,32,61,32,108,97,109,98,100,97,32,45,32,108,97,109,98,100,97,50,44,92,110,32,32,32,32,32,32,32,32,115,105,103,110,32,61,32,100,101,108,116,97,32,62,32,48,32,63,32,49,32,58,32,45,49,44,92,110,32,32,32,32,32,32,32,32,108,97,109,98,100,97,105,32,61,32,105,110,102,108,101,99,116,105,111,110,91,48,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,100,101,103,114,101,101,115,32,42,32,115,105,103,110,44,92,110,32,32,32,32,32,32,32,32,112,104,105,105,44,92,110,32,32,32,32,32,32,32,32,97,110,116,105,109,101,114,105,100,105,97,110,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,98,115,41,40,100,101,108,116,97,41,32,62,32,49,56,48,59,92,110,32,32,32,32,105,102,32,40,97,110,116,105,109,101,114,105,100,105,97,110,32,94,32,40,115,105,103,110,32,42,32,108,97,109,98,100,97,50,32,60,32,108,97,109,98,100,97,105,32,38,38,32,108,97,109,98,100,97,105,32,60,32,115,105,103,110,32,42,32,108,97,109,98,100,97,41,41,32,123,92,110,32,32,32,32,32,32,112,104,105,105,32,61,32,105,110,102,108,101,99,116,105,111,110,91,49,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,100,101,103,114,101,101,115,59,92,110,32,32,32,32,32,32,105,102,32,40,112,104,105,105,32,62,32,112,104,105,49,41,32,112,104,105,49,32,61,32,112,104,105,105,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,108,97,109,98,100,97,105,32,61,32,40,108,97,109,98,100,97,105,32,43,32,51,54,48,41,32,37,32,51,54,48,32,45,32,49,56,48,44,32,97,110,116,105,109,101,114,105,100,105,97,110,32,94,32,40,115,105,103,110,32,42,32,108,97,109,98,100,97,50,32,60,32,108,97,109,98,100,97,105,32,38,38,32,108,97,109,98,100,97,105,32,60,32,115,105,103,110,32,42,32,108,97,109,98,100,97,41,41,32,123,92,110,32,32,32,32,32,32,112,104,105,105,32,61,32,45,105,110,102,108,101,99,116,105,111,110,91,49,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,100,101,103,114,101,101,115,59,92,110,32,32,32,32,32,32,105,102,32,40,112,104,105,105,32,60,32,112,104,105,48,41,32,112,104,105,48,32,61,32,112,104,105,105,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,105,102,32,40,112,104,105,32,60,32,112,104,105,48,41,32,112,104,105,48,32,61,32,112,104,105,59,92,110,32,32,32,32,32,32,105,102,32,40,112,104,105,32,62,32,112,104,105,49,41,32,112,104,105,49,32,61,32,112,104,105,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,97,110,116,105,109,101,114,105,100,105,97,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,108,97,109,98,100,97,32,60,32,108,97,109,98,100,97,50,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,97,110,103,108,101,40,108,97,109,98,100,97,48,44,32,108,97,109,98,100,97,41,32,62,32,97,110,103,108,101,40,108,97,109,98,100,97,48,44,32,108,97,109,98,100,97,49,41,41,32,108,97,109,98,100,97,49,32,61,32,108,97,109,98,100,97,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,97,110,103,108,101,40,108,97,109,98,100,97,44,32,108,97,109,98,100,97,49,41,32,62,32,97,110,103,108,101,40,108,97,109,98,100,97,48,44,32,108,97,109,98,100,97,49,41,41,32,108,97,109,98,100,97,48,32,61,32,108,97,109,98,100,97,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,105,102,32,40,108,97,109,98,100,97,49,32,62,61,32,108,97,109,98,100,97,48,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,97,109,98,100,97,32,60,32,108,97,109,98,100,97,48,41,32,108,97,109,98,100,97,48,32,61,32,108,97,109,98,100,97,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,97,109,98,100,97,32,62,32,108,97,109,98,100,97,49,41,32,108,97,109,98,100,97,49,32,61,32,108,97,109,98,100,97,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,97,109,98,100,97,32,62,32,108,97,109,98,100,97,50,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,110,103,108,101,40,108,97,109,98,100,97,48,44,32,108,97,109,98,100,97,41,32,62,32,97,110,103,108,101,40,108,97,109,98,100,97,48,44,32,108,97,109,98,100,97,49,41,41,32,108,97,109,98,100,97,49,32,61,32,108,97,109,98,100,97,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,110,103,108,101,40,108,97,109,98,100,97,44,32,108,97,109,98,100,97,49,41,32,62,32,97,110,103,108,101,40,108,97,109,98,100,97,48,44,32,108,97,109,98,100,97,49,41,41,32,108,97,109,98,100,97,48,32,61,32,108,97,109,98,100,97,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,97,110,103,101,115,46,112,117,115,104,40,114,97,110,103,101,32,61,32,91,108,97,109,98,100,97,48,32,61,32,108,97,109,98,100,97,44,32,108,97,109,98,100,97,49,32,61,32,108,97,109,98,100,97,93,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,112,104,105,32,60,32,112,104,105,48,41,32,112,104,105,48,32,61,32,112,104,105,59,92,110,32,32,105,102,32,40,112,104,105,32,62,32,112,104,105,49,41,32,112,104,105,49,32,61,32,112,104,105,59,92,110,32,32,112,48,32,61,32,112,44,32,108,97,109,98,100,97,50,32,61,32,108,97,109,98,100,97,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,111,117,110,100,115,76,105,110,101,83,116,97,114,116,40,41,32,123,92,110,32,32,98,111,117,110,100,115,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,108,105,110,101,80,111,105,110,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,111,117,110,100,115,76,105,110,101,69,110,100,40,41,32,123,92,110,32,32,114,97,110,103,101,91,48,93,32,61,32,108,97,109,98,100,97,48,44,32,114,97,110,103,101,91,49,93,32,61,32,108,97,109,98,100,97,49,59,92,110,32,32,98,111,117,110,100,115,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,98,111,117,110,100,115,80,111,105,110,116,59,92,110,32,32,112,48,32,61,32,110,117,108,108,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,111,117,110,100,115,82,105,110,103,80,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,105,102,32,40,112,48,41,32,123,92,110,32,32,32,32,118,97,114,32,100,101,108,116,97,32,61,32,108,97,109,98,100,97,32,45,32,108,97,109,98,100,97,50,59,92,110,32,32,32,32,100,101,108,116,97,83,117,109,46,97,100,100,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,98,115,41,40,100,101,108,116,97,41,32,62,32,49,56,48,32,63,32,100,101,108,116,97,32,43,32,40,100,101,108,116,97,32,62,32,48,32,63,32,51,54,48,32,58,32,45,51,54,48,41,32,58,32,100,101,108,116,97,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,108,97,109,98,100,97,48,48,32,61,32,108,97,109,98,100,97,44,32,112,104,105,48,48,32,61,32,112,104,105,59,92,110,32,32,125,92,110,32,32,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,114,101,97,83,116,114,101,97,109,46,112,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,59,92,110,32,32,108,105,110,101,80,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,111,117,110,100,115,82,105,110,103,83,116,97,114,116,40,41,32,123,92,110,32,32,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,114,101,97,83,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,111,117,110,100,115,82,105,110,103,69,110,100,40,41,32,123,92,110,32,32,98,111,117,110,100,115,82,105,110,103,80,111,105,110,116,40,108,97,109,98,100,97,48,48,44,32,112,104,105,48,48,41,59,92,110,32,32,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,114,101,97,83,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,105,102,32,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,98,115,41,40,100,101,108,116,97,83,117,109,41,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,112,115,105,108,111,110,41,32,108,97,109,98,100,97,48,32,61,32,45,40,108,97,109,98,100,97,49,32,61,32,49,56,48,41,59,92,110,32,32,114,97,110,103,101,91,48,93,32,61,32,108,97,109,98,100,97,48,44,32,114,97,110,103,101,91,49,93,32,61,32,108,97,109,98,100,97,49,59,92,110,32,32,112,48,32,61,32,110,117,108,108,59,92,110,125,92,110,92,110,47,47,32,70,105,110,100,115,32,116,104,101,32,108,101,102,116,45,114,105,103,104,116,32,100,105,115,116,97,110,99,101,32,98,101,116,119,101,101,110,32,116,119,111,32,108,111,110,103,105,116,117,100,101,115,46,92,110,47,47,32,84,104,105,115,32,105,115,32,97,108,109,111,115,116,32,116,104,101,32,115,97,109,101,32,97,115,32,40,108,97,109,98,100,97,49,32,45,32,108,97,109,98,100,97,48,32,43,32,51,54,48,194,176,41,32,37,32,51,54,48,194,176,44,32,101,120,99,101,112,116,32,116,104,97,116,32,119,101,32,119,97,110,116,92,110,47,47,32,116,104,101,32,100,105,115,116,97,110,99,101,32,98,101,116,119,101,101,110,32,194,177,49,56,48,194,176,32,116,111,32,98,101,32,51,54,48,194,176,46,92,110,102,117,110,99,116,105,111,110,32,97,110,103,108,101,40,108,97,109,98,100,97,48,44,32,108,97,109,98,100,97,49,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,108,97,109,98,100,97,49,32,45,61,32,108,97,109,98,100,97,48,41,32,60,32,48,32,63,32,108,97,109,98,100,97,49,32,43,32,51,54,48,32,58,32,108,97,109,98,100,97,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,97,110,103,101,67,111,109,112,97,114,101,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,91,48,93,32,45,32,98,91,48,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,97,110,103,101,67,111,110,116,97,105,110,115,40,114,97,110,103,101,44,32,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,114,97,110,103,101,91,48,93,32,60,61,32,114,97,110,103,101,91,49,93,32,63,32,114,97,110,103,101,91,48,93,32,60,61,32,120,32,38,38,32,120,32,60,61,32,114,97,110,103,101,91,49,93,32,58,32,120,32,60,32,114,97,110,103,101,91,48,93,32,124,124,32,114,97,110,103,101,91,49,93,32,60,32,120,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,102,101,97,116,117,114,101,41,32,123,92,110,32,32,118,97,114,32,105,44,32,110,44,32,97,44,32,98,44,32,109,101,114,103,101,100,44,32,100,101,108,116,97,77,97,120,44,32,100,101,108,116,97,59,92,110,92,110,32,32,112,104,105,49,32,61,32,108,97,109,98,100,97,49,32,61,32,45,40,108,97,109,98,100,97,48,32,61,32,112,104,105,48,32,61,32,73,110,102,105,110,105,116,121,41,59,92,110,32,32,114,97,110,103,101,115,32,61,32,91,93,59,92,110,32,32,40,48,44,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,101,97,116,117,114,101,44,32,98,111,117,110,100,115,83,116,114,101,97,109,41,59,92,110,92,110,32,32,47,47,32,70,105,114,115,116,44,32,115,111,114,116,32,114,97,110,103,101,115,32,98,121,32,116,104,101,105,114,32,109,105,110,105,109,117,109,32,108,111,110,103,105,116,117,100,101,115,46,92,110,32,32,105,102,32,40,110,32,61,32,114,97,110,103,101,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,97,110,103,101,115,46,115,111,114,116,40,114,97,110,103,101,67,111,109,112,97,114,101,41,59,92,110,92,110,32,32,32,32,47,47,32,84,104,101,110,44,32,109,101,114,103,101,32,97,110,121,32,114,97,110,103,101,115,32,116,104,97,116,32,111,118,101,114,108,97,112,46,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,49,44,32,97,32,61,32,114,97,110,103,101,115,91,48,93,44,32,109,101,114,103,101,100,32,61,32,91,97,93,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,98,32,61,32,114,97,110,103,101,115,91,105,93,59,92,110,32,32,32,32,32,32,105,102,32,40,114,97,110,103,101,67,111,110,116,97,105,110,115,40,97,44,32,98,91,48,93,41,32,124,124,32,114,97,110,103,101,67,111,110,116,97,105,110,115,40,97,44,32,98,91,49,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,97,110,103,108,101,40,97,91,48,93,44,32,98,91,49,93,41,32,62,32,97,110,103,108,101,40,97,91,48,93,44,32,97,91,49,93,41,41,32,97,91,49,93,32,61,32,98,91,49,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,97,110,103,108,101,40,98,91,48,93,44,32,97,91,49,93,41,32,62,32,97,110,103,108,101,40,97,91,48,93,44,32,97,91,49,93,41,41,32,97,91,48,93,32,61,32,98,91,48,93,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,109,101,114,103,101,100,46,112,117,115,104,40,97,32,61,32,98,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,70,105,110,97,108,108,121,44,32,102,105,110,100,32,116,104,101,32,108,97,114,103,101,115,116,32,103,97,112,32,98,101,116,119,101,101,110,32,116,104,101,32,109,101,114,103,101,100,32,114,97,110,103,101,115,46,92,110,32,32,32,32,47,47,32,84,104,101,32,102,105,110,97,108,32,98,111,117,110,100,105,110,103,32,98,111,120,32,119,105,108,108,32,98,101,32,116,104,101,32,105,110,118,101,114,115,101,32,111,102,32,116,104,105,115,32,103,97,112,46,92,110,32,32,32,32,102,111,114,32,40,100,101,108,116,97,77,97,120,32,61,32,45,73,110,102,105,110,105,116,121,44,32,110,32,61,32,109,101,114,103,101,100,46,108,101,110,103,116,104,32,45,32,49,44,32,105,32,61,32,48,44,32,97,32,61,32,109,101,114,103,101,100,91,110,93,59,32,105,32,60,61,32,110,59,32,97,32,61,32,98,44,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,98,32,61,32,109,101,114,103,101,100,91,105,93,59,92,110,32,32,32,32,32,32,105,102,32,40,40,100,101,108,116,97,32,61,32,97,110,103,108,101,40,97,91,49,93,44,32,98,91,48,93,41,41,32,62,32,100,101,108,116,97,77,97,120,41,32,100,101,108,116,97,77,97,120,32,61,32,100,101,108,116,97,44,32,108,97,109,98,100,97,48,32,61,32,98,91,48,93,44,32,108,97,109,98,100,97,49,32,61,32,97,91,49,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,97,110,103,101,115,32,61,32,114,97,110,103,101,32,61,32,110,117,108,108,59,92,110,92,110,32,32,114,101,116,117,114,110,32,108,97,109,98,100,97,48,32,61,61,61,32,73,110,102,105,110,105,116,121,32,124,124,32,112,104,105,48,32,61,61,61,32,73,110,102,105,110,105,116,121,92,110,32,32,32,32,32,32,63,32,91,91,78,97,78,44,32,78,97,78,93,44,32,91,78,97,78,44,32,78,97,78,93,93,92,110,32,32,32,32,32,32,58,32,91,91,108,97,109,98,100,97,48,44,32,112,104,105,48,93,44,32,91,108,97,109,98,100,97,49,44,32,112,104,105,49,93,93,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,98,111,117,110,100,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,97,114,116,101,115,105,97,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,97,114,116,101,115,105,97,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,97,114,116,101,115,105,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,97,114,116,101,115,105,97,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,97,114,116,101,115,105,97,110,65,100,100,73,110,80,108,97,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,97,114,116,101,115,105,97,110,65,100,100,73,110,80,108,97,99,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,97,114,116,101,115,105,97,110,67,114,111,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,97,114,116,101,115,105,97,110,67,114,111,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,97,114,116,101,115,105,97,110,68,111,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,97,114,116,101,115,105,97,110,68,111,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,97,114,116,101,115,105,97,110,78,111,114,109,97,108,105,122,101,73,110,80,108,97,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,97,114,116,101,115,105,97,110,78,111,114,109,97,108,105,122,101,73,110,80,108,97,99,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,97,114,116,101,115,105,97,110,83,99,97,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,97,114,116,101,115,105,97,110,83,99,97,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,112,104,101,114,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,112,104,101,114,105,99,97,108,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,115,112,104,101,114,105,99,97,108,40,99,97,114,116,101,115,105,97,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,99,97,114,116,101,115,105,97,110,91,49,93,44,32,99,97,114,116,101,115,105,97,110,91,48,93,41,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,105,110,41,40,99,97,114,116,101,115,105,97,110,91,50,93,41,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,97,114,116,101,115,105,97,110,40,115,112,104,101,114,105,99,97,108,41,32,123,92,110,32,32,118,97,114,32,108,97,109,98,100,97,32,61,32,115,112,104,101,114,105,99,97,108,91,48,93,44,32,112,104,105,32,61,32,115,112,104,101,114,105,99,97,108,91,49,93,44,32,99,111,115,80,104,105,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,112,104,105,41,59,92,110,32,32,114,101,116,117,114,110,32,91,99,111,115,80,104,105,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,108,97,109,98,100,97,41,44,32,99,111,115,80,104,105,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,108,97,109,98,100,97,41,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,112,104,105,41,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,97,114,116,101,115,105,97,110,68,111,116,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,91,48,93,32,42,32,98,91,48,93,32,43,32,97,91,49,93,32,42,32,98,91,49,93,32,43,32,97,91,50,93,32,42,32,98,91,50,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,97,114,116,101,115,105,97,110,67,114,111,115,115,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,97,91,49,93,32,42,32,98,91,50,93,32,45,32,97,91,50,93,32,42,32,98,91,49,93,44,32,97,91,50,93,32,42,32,98,91,48,93,32,45,32,97,91,48,93,32,42,32,98,91,50,93,44,32,97,91,48,93,32,42,32,98,91,49,93,32,45,32,97,91,49,93,32,42,32,98,91,48,93,93,59,92,110,125,92,110,92,110,47,47,32,84,79,68,79,32,114,101,116,117,114,110,32,97,92,110,102,117,110,99,116,105,111,110,32,99,97,114,116,101,115,105,97,110,65,100,100,73,110,80,108,97,99,101,40,97,44,32,98,41,32,123,92,110,32,32,97,91,48,93,32,43,61,32,98,91,48,93,44,32,97,91,49,93,32,43,61,32,98,91,49,93,44,32,97,91,50,93,32,43,61,32,98,91,50,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,97,114,116,101,115,105,97,110,83,99,97,108,101,40,118,101,99,116,111,114,44,32,107,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,118,101,99,116,111,114,91,48,93,32,42,32,107,44,32,118,101,99,116,111,114,91,49,93,32,42,32,107,44,32,118,101,99,116,111,114,91,50,93,32,42,32,107,93,59,92,110,125,92,110,92,110,47,47,32,84,79,68,79,32,114,101,116,117,114,110,32,100,92,110,102,117,110,99,116,105,111,110,32,99,97,114,116,101,115,105,97,110,78,111,114,109,97,108,105,122,101,73,110,80,108,97,99,101,40,100,41,32,123,92,110,32,32,118,97,114,32,108,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,100,91,48,93,32,42,32,100,91,48,93,32,43,32,100,91,49,93,32,42,32,100,91,49,93,32,43,32,100,91,50,93,32,42,32,100,91,50,93,41,59,92,110,32,32,100,91,48,93,32,47,61,32,108,44,32,100,91,49,93,32,47,61,32,108,44,32,100,91,50,93,32,47,61,32,108,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,97,114,116,101,115,105,97,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,101,110,116,114,111,105,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,101,110,116,114,111,105,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,111,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,110,111,111,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,101,97,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,115,116,114,101,97,109,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,87,48,44,32,87,49,44,92,110,32,32,32,32,88,48,44,32,89,48,44,32,90,48,44,92,110,32,32,32,32,88,49,44,32,89,49,44,32,90,49,44,92,110,32,32,32,32,88,50,44,32,89,50,44,32,90,50,44,92,110,32,32,32,32,108,97,109,98,100,97,48,48,44,32,112,104,105,48,48,44,32,47,47,32,102,105,114,115,116,32,112,111,105,110,116,92,110,32,32,32,32,120,48,44,32,121,48,44,32,122,48,59,32,47,47,32,112,114,101,118,105,111,117,115,32,112,111,105,110,116,92,110,92,110,118,97,114,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,32,61,32,123,92,110,32,32,115,112,104,101,114,101,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,112,111,105,110,116,58,32,99,101,110,116,114,111,105,100,80,111,105,110,116,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,99,101,110,116,114,111,105,100,76,105,110,101,83,116,97,114,116,44,92,110,32,32,108,105,110,101,69,110,100,58,32,99,101,110,116,114,111,105,100,76,105,110,101,69,110,100,44,92,110,32,32,112,111,108,121,103,111,110,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,32,61,32,99,101,110,116,114,111,105,100,82,105,110,103,83,116,97,114,116,59,92,110,32,32,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,108,105,110,101,69,110,100,32,61,32,99,101,110,116,114,111,105,100,82,105,110,103,69,110,100,59,92,110,32,32,125,44,92,110,32,32,112,111,108,121,103,111,110,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,32,61,32,99,101,110,116,114,111,105,100,76,105,110,101,83,116,97,114,116,59,92,110,32,32,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,108,105,110,101,69,110,100,32,61,32,99,101,110,116,114,111,105,100,76,105,110,101,69,110,100,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,32,65,114,105,116,104,109,101,116,105,99,32,109,101,97,110,32,111,102,32,67,97,114,116,101,115,105,97,110,32,118,101,99,116,111,114,115,46,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,80,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,108,97,109,98,100,97,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,44,32,112,104,105,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,59,92,110,32,32,118,97,114,32,99,111,115,80,104,105,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,112,104,105,41,59,92,110,32,32,99,101,110,116,114,111,105,100,80,111,105,110,116,67,97,114,116,101,115,105,97,110,40,99,111,115,80,104,105,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,108,97,109,98,100,97,41,44,32,99,111,115,80,104,105,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,108,97,109,98,100,97,41,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,112,104,105,41,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,80,111,105,110,116,67,97,114,116,101,115,105,97,110,40,120,44,32,121,44,32,122,41,32,123,92,110,32,32,43,43,87,48,59,92,110,32,32,88,48,32,43,61,32,40,120,32,45,32,88,48,41,32,47,32,87,48,59,92,110,32,32,89,48,32,43,61,32,40,121,32,45,32,89,48,41,32,47,32,87,48,59,92,110,32,32,90,48,32,43,61,32,40,122,32,45,32,90,48,41,32,47,32,87,48,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,76,105,110,101,83,116,97,114,116,40,41,32,123,92,110,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,99,101,110,116,114,111,105,100,76,105,110,101,80,111,105,110,116,70,105,114,115,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,76,105,110,101,80,111,105,110,116,70,105,114,115,116,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,108,97,109,98,100,97,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,44,32,112,104,105,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,59,92,110,32,32,118,97,114,32,99,111,115,80,104,105,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,112,104,105,41,59,92,110,32,32,120,48,32,61,32,99,111,115,80,104,105,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,108,97,109,98,100,97,41,59,92,110,32,32,121,48,32,61,32,99,111,115,80,104,105,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,108,97,109,98,100,97,41,59,92,110,32,32,122,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,112,104,105,41,59,92,110,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,99,101,110,116,114,111,105,100,76,105,110,101,80,111,105,110,116,59,92,110,32,32,99,101,110,116,114,111,105,100,80,111,105,110,116,67,97,114,116,101,115,105,97,110,40,120,48,44,32,121,48,44,32,122,48,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,76,105,110,101,80,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,108,97,109,98,100,97,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,44,32,112,104,105,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,59,92,110,32,32,118,97,114,32,99,111,115,80,104,105,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,112,104,105,41,44,92,110,32,32,32,32,32,32,120,32,61,32,99,111,115,80,104,105,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,108,97,109,98,100,97,41,44,92,110,32,32,32,32,32,32,121,32,61,32,99,111,115,80,104,105,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,108,97,109,98,100,97,41,44,92,110,32,32,32,32,32,32,122,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,112,104,105,41,44,92,110,32,32,32,32,32,32,119,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,116,97,110,50,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,113,114,116,41,40,40,119,32,61,32,121,48,32,42,32,122,32,45,32,122,48,32,42,32,121,41,32,42,32,119,32,43,32,40,119,32,61,32,122,48,32,42,32,120,32,45,32,120,48,32,42,32,122,41,32,42,32,119,32,43,32,40,119,32,61,32,120,48,32,42,32,121,32,45,32,121,48,32,42,32,120,41,32,42,32,119,41,44,32,120,48,32,42,32,120,32,43,32,121,48,32,42,32,121,32,43,32,122,48,32,42,32,122,41,59,92,110,32,32,87,49,32,43,61,32,119,59,92,110,32,32,88,49,32,43,61,32,119,32,42,32,40,120,48,32,43,32,40,120,48,32,61,32,120,41,41,59,92,110,32,32,89,49,32,43,61,32,119,32,42,32,40,121,48,32,43,32,40,121,48,32,61,32,121,41,41,59,92,110,32,32,90,49,32,43,61,32,119,32,42,32,40,122,48,32,43,32,40,122,48,32,61,32,122,41,41,59,92,110,32,32,99,101,110,116,114,111,105,100,80,111,105,110,116,67,97,114,116,101,115,105,97,110,40,120,48,44,32,121,48,44,32,122,48,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,76,105,110,101,69,110,100,40,41,32,123,92,110,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,99,101,110,116,114,111,105,100,80,111,105,110,116,59,92,110,125,92,110,92,110,47,47,32,83,101,101,32,74,46,32,69,46,32,66,114,111,99,107,44,32,84,104,101,32,73,110,101,114,116,105,97,32,84,101,110,115,111,114,32,102,111,114,32,97,32,83,112,104,101,114,105,99,97,108,32,84,114,105,97,110,103,108,101,44,92,110,47,47,32,74,46,32,65,112,112,108,105,101,100,32,77,101,99,104,97,110,105,99,115,32,52,50,44,32,50,51,57,32,40,49,57,55,53,41,46,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,82,105,110,103,83,116,97,114,116,40,41,32,123,92,110,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,99,101,110,116,114,111,105,100,82,105,110,103,80,111,105,110,116,70,105,114,115,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,82,105,110,103,69,110,100,40,41,32,123,92,110,32,32,99,101,110,116,114,111,105,100,82,105,110,103,80,111,105,110,116,40,108,97,109,98,100,97,48,48,44,32,112,104,105,48,48,41,59,92,110,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,99,101,110,116,114,111,105,100,80,111,105,110,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,82,105,110,103,80,111,105,110,116,70,105,114,115,116,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,108,97,109,98,100,97,48,48,32,61,32,108,97,109,98,100,97,44,32,112,104,105,48,48,32,61,32,112,104,105,59,92,110,32,32,108,97,109,98,100,97,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,44,32,112,104,105,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,59,92,110,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,99,101,110,116,114,111,105,100,82,105,110,103,80,111,105,110,116,59,92,110,32,32,118,97,114,32,99,111,115,80,104,105,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,112,104,105,41,59,92,110,32,32,120,48,32,61,32,99,111,115,80,104,105,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,108,97,109,98,100,97,41,59,92,110,32,32,121,48,32,61,32,99,111,115,80,104,105,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,108,97,109,98,100,97,41,59,92,110,32,32,122,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,112,104,105,41,59,92,110,32,32,99,101,110,116,114,111,105,100,80,111,105,110,116,67,97,114,116,101,115,105,97,110,40,120,48,44,32,121,48,44,32,122,48,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,82,105,110,103,80,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,108,97,109,98,100,97,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,44,32,112,104,105,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,59,92,110,32,32,118,97,114,32,99,111,115,80,104,105,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,112,104,105,41,44,92,110,32,32,32,32,32,32,120,32,61,32,99,111,115,80,104,105,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,108,97,109,98,100,97,41,44,92,110,32,32,32,32,32,32,121,32,61,32,99,111,115,80,104,105,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,108,97,109,98,100,97,41,44,92,110,32,32,32,32,32,32,122,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,112,104,105,41,44,92,110,32,32,32,32,32,32,99,120,32,61,32,121,48,32,42,32,122,32,45,32,122,48,32,42,32,121,44,92,110,32,32,32,32,32,32,99,121,32,61,32,122,48,32,42,32,120,32,45,32,120,48,32,42,32,122,44,92,110,32,32,32,32,32,32,99,122,32,61,32,120,48,32,42,32,121,32,45,32,121,48,32,42,32,120,44,92,110,32,32,32,32,32,32,109,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,113,114,116,41,40,99,120,32,42,32,99,120,32,43,32,99,121,32,42,32,99,121,32,43,32,99,122,32,42,32,99,122,41,44,92,110,32,32,32,32,32,32,119,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,115,105,110,41,40,109,41,44,32,47,47,32,108,105,110,101,32,119,101,105,103,104,116,32,61,32,97,110,103,108,101,92,110,32,32,32,32,32,32,118,32,61,32,109,32,38,38,32,45,119,32,47,32,109,59,32,47,47,32,97,114,101,97,32,119,101,105,103,104,116,32,109,117,108,116,105,112,108,105,101,114,92,110,32,32,88,50,32,43,61,32,118,32,42,32,99,120,59,92,110,32,32,89,50,32,43,61,32,118,32,42,32,99,121,59,92,110,32,32,90,50,32,43,61,32,118,32,42,32,99,122,59,92,110,32,32,87,49,32,43,61,32,119,59,92,110,32,32,88,49,32,43,61,32,119,32,42,32,40,120,48,32,43,32,40,120,48,32,61,32,120,41,41,59,92,110,32,32,89,49,32,43,61,32,119,32,42,32,40,121,48,32,43,32,40,121,48,32,61,32,121,41,41,59,92,110,32,32,90,49,32,43,61,32,119,32,42,32,40,122,48,32,43,32,40,122,48,32,61,32,122,41,41,59,92,110,32,32,99,101,110,116,114,111,105,100,80,111,105,110,116,67,97,114,116,101,115,105,97,110,40,120,48,44,32,121,48,44,32,122,48,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,111,98,106,101,99,116,41,32,123,92,110,32,32,87,48,32,61,32,87,49,32,61,92,110,32,32,88,48,32,61,32,89,48,32,61,32,90,48,32,61,92,110,32,32,88,49,32,61,32,89,49,32,61,32,90,49,32,61,92,110,32,32,88,50,32,61,32,89,50,32,61,32,90,50,32,61,32,48,59,92,110,32,32,40,48,44,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,98,106,101,99,116,44,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,41,59,92,110,92,110,32,32,118,97,114,32,120,32,61,32,88,50,44,92,110,32,32,32,32,32,32,121,32,61,32,89,50,44,92,110,32,32,32,32,32,32,122,32,61,32,90,50,44,92,110,32,32,32,32,32,32,109,32,61,32,120,32,42,32,120,32,43,32,121,32,42,32,121,32,43,32,122,32,42,32,122,59,92,110,92,110,32,32,47,47,32,73,102,32,116,104,101,32,97,114,101,97,45,119,101,105,103,104,116,101,100,32,99,99,101,110,116,114,111,105,100,32,105,115,32,117,110,100,101,102,105,110,101,100,44,32,102,97,108,108,32,98,97,99,107,32,116,111,32,108,101,110,103,116,104,45,119,101,105,103,104,116,101,100,32,99,99,101,110,116,114,111,105,100,46,92,110,32,32,105,102,32,40,109,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,50,41,32,123,92,110,32,32,32,32,120,32,61,32,88,49,44,32,121,32,61,32,89,49,44,32,122,32,61,32,90,49,59,92,110,32,32,32,32,47,47,32,73,102,32,116,104,101,32,102,101,97,116,117,114,101,32,104,97,115,32,122,101,114,111,32,108,101,110,103,116,104,44,32,102,97,108,108,32,98,97,99,107,32,116,111,32,97,114,105,116,104,109,101,116,105,99,32,109,101,97,110,32,111,102,32,112,111,105,110,116,32,118,101,99,116,111,114,115,46,92,110,32,32,32,32,105,102,32,40,87,49,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,41,32,120,32,61,32,88,48,44,32,121,32,61,32,89,48,44,32,122,32,61,32,90,48,59,92,110,32,32,32,32,109,32,61,32,120,32,42,32,120,32,43,32,121,32,42,32,121,32,43,32,122,32,42,32,122,59,92,110,32,32,32,32,47,47,32,73,102,32,116,104,101,32,102,101,97,116,117,114,101,32,115,116,105,108,108,32,104,97,115,32,97,110,32,117,110,100,101,102,105,110,101,100,32,99,99,101,110,116,114,111,105,100,44,32,116,104,101,110,32,114,101,116,117,114,110,46,92,110,32,32,32,32,105,102,32,40,109,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,50,41,32,114,101,116,117,114,110,32,91,78,97,78,44,32,78,97,78,93,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,91,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,116,97,110,50,41,40,121,44,32,120,41,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,101,103,114,101,101,115,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,115,105,110,41,40,122,32,47,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,113,114,116,41,40,109,41,41,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,101,103,114,101,101,115,93,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,101,110,116,114,111,105,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,105,114,99,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,105,114,99,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,105,114,99,108,101,83,116,114,101,97,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,105,114,99,108,101,83,116,114,101,97,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,116,101,115,105,97,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,97,114,116,101,115,105,97,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,111,116,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,111,116,97,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,114,111,116,97,116,105,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,47,32,71,101,110,101,114,97,116,101,115,32,97,32,99,105,114,99,108,101,32,99,101,110,116,101,114,101,100,32,97,116,32,91,48,194,176,44,32,48,194,176,93,44,32,119,105,116,104,32,97,32,103,105,118,101,110,32,114,97,100,105,117,115,32,97,110,100,32,112,114,101,99,105,115,105,111,110,46,92,110,102,117,110,99,116,105,111,110,32,99,105,114,99,108,101,83,116,114,101,97,109,40,115,116,114,101,97,109,44,32,114,97,100,105,117,115,44,32,100,101,108,116,97,44,32,100,105,114,101,99,116,105,111,110,44,32,116,48,44,32,116,49,41,32,123,92,110,32,32,105,102,32,40,33,100,101,108,116,97,41,32,114,101,116,117,114,110,59,92,110,32,32,118,97,114,32,99,111,115,82,97,100,105,117,115,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,114,97,100,105,117,115,41,44,92,110,32,32,32,32,32,32,115,105,110,82,97,100,105,117,115,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,114,97,100,105,117,115,41,44,92,110,32,32,32,32,32,32,115,116,101,112,32,61,32,100,105,114,101,99,116,105,111,110,32,42,32,100,101,108,116,97,59,92,110,32,32,105,102,32,40,116,48,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,116,48,32,61,32,114,97,100,105,117,115,32,43,32,100,105,114,101,99,116,105,111,110,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,59,92,110,32,32,32,32,116,49,32,61,32,114,97,100,105,117,115,32,45,32,115,116,101,112,32,47,32,50,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,116,48,32,61,32,99,105,114,99,108,101,82,97,100,105,117,115,40,99,111,115,82,97,100,105,117,115,44,32,116,48,41,59,92,110,32,32,32,32,116,49,32,61,32,99,105,114,99,108,101,82,97,100,105,117,115,40,99,111,115,82,97,100,105,117,115,44,32,116,49,41,59,92,110,32,32,32,32,105,102,32,40,100,105,114,101,99,116,105,111,110,32,62,32,48,32,63,32,116,48,32,60,32,116,49,32,58,32,116,48,32,62,32,116,49,41,32,116,48,32,43,61,32,100,105,114,101,99,116,105,111,110,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,59,92,110,32,32,125,92,110,32,32,102,111,114,32,40,118,97,114,32,112,111,105,110,116,44,32,116,32,61,32,116,48,59,32,100,105,114,101,99,116,105,111,110,32,62,32,48,32,63,32,116,32,62,32,116,49,32,58,32,116,32,60,32,116,49,59,32,116,32,45,61,32,115,116,101,112,41,32,123,92,110,32,32,32,32,112,111,105,110,116,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,112,104,101,114,105,99,97,108,41,40,91,99,111,115,82,97,100,105,117,115,44,32,45,115,105,110,82,97,100,105,117,115,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,116,41,44,32,45,115,105,110,82,97,100,105,117,115,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,116,41,93,41,59,92,110,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,112,111,105,110,116,91,48,93,44,32,112,111,105,110,116,91,49,93,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,47,32,82,101,116,117,114,110,115,32,116,104,101,32,115,105,103,110,101,100,32,97,110,103,108,101,32,111,102,32,97,32,99,97,114,116,101,115,105,97,110,32,112,111,105,110,116,32,114,101,108,97,116,105,118,101,32,116,111,32,91,99,111,115,82,97,100,105,117,115,44,32,48,44,32,48,93,46,92,110,102,117,110,99,116,105,111,110,32,99,105,114,99,108,101,82,97,100,105,117,115,40,99,111,115,82,97,100,105,117,115,44,32,112,111,105,110,116,41,32,123,92,110,32,32,112,111,105,110,116,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,97,114,116,101,115,105,97,110,41,40,112,111,105,110,116,41,44,32,112,111,105,110,116,91,48,93,32,45,61,32,99,111,115,82,97,100,105,117,115,59,92,110,32,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,97,114,116,101,115,105,97,110,78,111,114,109,97,108,105,122,101,73,110,80,108,97,99,101,41,40,112,111,105,110,116,41,59,92,110,32,32,118,97,114,32,114,97,100,105,117,115,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,99,111,115,41,40,45,112,111,105,110,116,91,49,93,41,59,92,110,32,32,114,101,116,117,114,110,32,40,40,45,112,111,105,110,116,91,50,93,32,60,32,48,32,63,32,45,114,97,100,105,117,115,32,58,32,114,97,100,105,117,115,41,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,37,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,99,101,110,116,101,114,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,91,48,44,32,48,93,41,44,92,110,32,32,32,32,32,32,114,97,100,105,117,115,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,57,48,41,44,92,110,32,32,32,32,32,32,112,114,101,99,105,115,105,111,110,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,54,41,44,92,110,32,32,32,32,32,32,114,105,110,103,44,92,110,32,32,32,32,32,32,114,111,116,97,116,101,44,92,110,32,32,32,32,32,32,115,116,114,101,97,109,32,61,32,123,112,111,105,110,116,58,32,112,111,105,110,116,125,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,111,105,110,116,40,120,44,32,121,41,32,123,92,110,32,32,32,32,114,105,110,103,46,112,117,115,104,40,120,32,61,32,114,111,116,97,116,101,40,120,44,32,121,41,41,59,92,110,32,32,32,32,120,91,48,93,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,103,114,101,101,115,44,32,120,91,49,93,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,103,114,101,101,115,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,105,114,99,108,101,40,41,32,123,92,110,32,32,32,32,118,97,114,32,99,32,61,32,99,101,110,116,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,44,92,110,32,32,32,32,32,32,32,32,114,32,61,32,114,97,100,105,117,115,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,44,92,110,32,32,32,32,32,32,32,32,112,32,61,32,112,114,101,99,105,115,105,111,110,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,59,92,110,32,32,32,32,114,105,110,103,32,61,32,91,93,59,92,110,32,32,32,32,114,111,116,97,116,101,32,61,32,40,48,44,95,114,111,116,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,114,111,116,97,116,101,82,97,100,105,97,110,115,41,40,45,99,91,48,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,44,32,45,99,91,49,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,44,32,48,41,46,105,110,118,101,114,116,59,92,110,32,32,32,32,99,105,114,99,108,101,83,116,114,101,97,109,40,115,116,114,101,97,109,44,32,114,44,32,112,44,32,49,41,59,92,110,32,32,32,32,99,32,61,32,123,116,121,112,101,58,32,92,34,80,111,108,121,103,111,110,92,34,44,32,99,111,111,114,100,105,110,97,116,101,115,58,32,91,114,105,110,103,93,125,59,92,110,32,32,32,32,114,105,110,103,32,61,32,114,111,116,97,116,101,32,61,32,110,117,108,108,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,59,92,110,32,32,125,92,110,92,110,32,32,99,105,114,99,108,101,46,99,101,110,116,101,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,99,101,110,116,101,114,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,91,43,95,91,48,93,44,32,43,95,91,49,93,93,41,44,32,99,105,114,99,108,101,41,32,58,32,99,101,110,116,101,114,59,92,110,32,32,125,59,92,110,92,110,32,32,99,105,114,99,108,101,46,114,97,100,105,117,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,114,97,100,105,117,115,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,99,105,114,99,108,101,41,32,58,32,114,97,100,105,117,115,59,92,110,32,32,125,59,92,110,92,110,32,32,99,105,114,99,108,101,46,112,114,101,99,105,115,105,111,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,114,101,99,105,115,105,111,110,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,99,105,114,99,108,101,41,32,58,32,112,114,101,99,105,115,105,111,110,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,105,114,99,108,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,105,114,99,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,97,110,116,105,109,101,114,105,100,105,97,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,97,110,116,105,109,101,114,105,100,105,97,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,116,114,117,101,59,32,125,44,92,110,32,32,99,108,105,112,65,110,116,105,109,101,114,105,100,105,97,110,76,105,110,101,44,92,110,32,32,99,108,105,112,65,110,116,105,109,101,114,105,100,105,97,110,73,110,116,101,114,112,111,108,97,116,101,44,92,110,32,32,91,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,44,32,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,104,97,108,102,80,105,93,92,110,41,41,59,92,110,92,110,47,47,32,84,97,107,101,115,32,97,32,108,105,110,101,32,97,110,100,32,99,117,116,115,32,105,110,116,111,32,118,105,115,105,98,108,101,32,115,101,103,109,101,110,116,115,46,32,82,101,116,117,114,110,32,118,97,108,117,101,115,58,32,48,32,45,32,116,104,101,114,101,32,119,101,114,101,92,110,47,47,32,105,110,116,101,114,115,101,99,116,105,111,110,115,32,111,114,32,116,104,101,32,108,105,110,101,32,119,97,115,32,101,109,112,116,121,59,32,49,32,45,32,110,111,32,105,110,116,101,114,115,101,99,116,105,111,110,115,59,32,50,32,45,32,116,104,101,114,101,32,119,101,114,101,92,110,47,47,32,105,110,116,101,114,115,101,99,116,105,111,110,115,44,32,97,110,100,32,116,104,101,32,102,105,114,115,116,32,97,110,100,32,108,97,115,116,32,115,101,103,109,101,110,116,115,32,115,104,111,117,108,100,32,98,101,32,114,101,106,111,105,110,101,100,46,92,110,102,117,110,99,116,105,111,110,32,99,108,105,112,65,110,116,105,109,101,114,105,100,105,97,110,76,105,110,101,40,115,116,114,101,97,109,41,32,123,92,110,32,32,118,97,114,32,108,97,109,98,100,97,48,32,61,32,78,97,78,44,92,110,32,32,32,32,32,32,112,104,105,48,32,61,32,78,97,78,44,92,110,32,32,32,32,32,32,115,105,103,110,48,32,61,32,78,97,78,44,92,110,32,32,32,32,32,32,99,108,101,97,110,59,32,47,47,32,110,111,32,105,110,116,101,114,115,101,99,116,105,111,110,115,92,110,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,99,108,101,97,110,32,61,32,49,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,108,97,109,98,100,97,49,44,32,112,104,105,49,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,105,103,110,49,32,61,32,108,97,109,98,100,97,49,32,62,32,48,32,63,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,32,58,32,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,44,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,116,97,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,98,115,41,40,108,97,109,98,100,97,49,32,45,32,108,97,109,98,100,97,48,41,59,92,110,32,32,32,32,32,32,105,102,32,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,98,115,41,40,100,101,108,116,97,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,41,32,123,32,47,47,32,108,105,110,101,32,99,114,111,115,115,101,115,32,97,32,112,111,108,101,92,110,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,108,97,109,98,100,97,48,44,32,112,104,105,48,32,61,32,40,112,104,105,48,32,43,32,112,104,105,49,41,32,47,32,50,32,62,32,48,32,63,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,104,97,108,102,80,105,32,58,32,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,104,97,108,102,80,105,41,59,92,110,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,115,105,103,110,48,44,32,112,104,105,48,41,59,92,110,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,115,105,103,110,49,44,32,112,104,105,48,41,59,92,110,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,108,97,109,98,100,97,49,44,32,112,104,105,48,41,59,92,110,32,32,32,32,32,32,32,32,99,108,101,97,110,32,61,32,48,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,105,103,110,48,32,33,61,61,32,115,105,103,110,49,32,38,38,32,100,101,108,116,97,32,62,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,41,32,123,32,47,47,32,108,105,110,101,32,99,114,111,115,115,101,115,32,97,110,116,105,109,101,114,105,100,105,97,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,98,115,41,40,108,97,109,98,100,97,48,32,45,32,115,105,103,110,48,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,41,32,108,97,109,98,100,97,48,32,45,61,32,115,105,103,110,48,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,59,32,47,47,32,104,97,110,100,108,101,32,100,101,103,101,110,101,114,97,99,105,101,115,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,98,115,41,40,108,97,109,98,100,97,49,32,45,32,115,105,103,110,49,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,41,32,108,97,109,98,100,97,49,32,45,61,32,115,105,103,110,49,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,59,92,110,32,32,32,32,32,32,32,32,112,104,105,48,32,61,32,99,108,105,112,65,110,116,105,109,101,114,105,100,105,97,110,73,110,116,101,114,115,101,99,116,40,108,97,109,98,100,97,48,44,32,112,104,105,48,44,32,108,97,109,98,100,97,49,44,32,112,104,105,49,41,59,92,110,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,115,105,103,110,48,44,32,112,104,105,48,41,59,92,110,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,115,105,103,110,49,44,32,112,104,105,48,41,59,92,110,32,32,32,32,32,32,32,32,99,108,101,97,110,32,61,32,48,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,108,97,109,98,100,97,48,32,61,32,108,97,109,98,100,97,49,44,32,112,104,105,48,32,61,32,112,104,105,49,41,59,92,110,32,32,32,32,32,32,115,105,103,110,48,32,61,32,115,105,103,110,49,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,108,97,109,98,100,97,48,32,61,32,112,104,105,48,32,61,32,78,97,78,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,108,101,97,110,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,50,32,45,32,99,108,101,97,110,59,32,47,47,32,105,102,32,105,110,116,101,114,115,101,99,116,105,111,110,115,44,32,114,101,106,111,105,110,32,102,105,114,115,116,32,97,110,100,32,108,97,115,116,32,115,101,103,109,101,110,116,115,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,105,112,65,110,116,105,109,101,114,105,100,105,97,110,73,110,116,101,114,115,101,99,116,40,108,97,109,98,100,97,48,44,32,112,104,105,48,44,32,108,97,109,98,100,97,49,44,32,112,104,105,49,41,32,123,92,110,32,32,118,97,114,32,99,111,115,80,104,105,48,44,92,110,32,32,32,32,32,32,99,111,115,80,104,105,49,44,92,110,32,32,32,32,32,32,115,105,110,76,97,109,98,100,97,48,76,97,109,98,100,97,49,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,108,97,109,98,100,97,48,32,45,32,108,97,109,98,100,97,49,41,59,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,98,115,41,40,115,105,110,76,97,109,98,100,97,48,76,97,109,98,100,97,49,41,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,92,110,32,32,32,32,32,32,63,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,116,97,110,41,40,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,112,104,105,48,41,32,42,32,40,99,111,115,80,104,105,49,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,112,104,105,49,41,41,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,108,97,109,98,100,97,49,41,92,110,32,32,32,32,32,32,32,32,32,32,45,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,112,104,105,49,41,32,42,32,40,99,111,115,80,104,105,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,112,104,105,48,41,41,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,108,97,109,98,100,97,48,41,41,92,110,32,32,32,32,32,32,32,32,32,32,47,32,40,99,111,115,80,104,105,48,32,42,32,99,111,115,80,104,105,49,32,42,32,115,105,110,76,97,109,98,100,97,48,76,97,109,98,100,97,49,41,41,92,110,32,32,32,32,32,32,58,32,40,112,104,105,48,32,43,32,112,104,105,49,41,32,47,32,50,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,105,112,65,110,116,105,109,101,114,105,100,105,97,110,73,110,116,101,114,112,111,108,97,116,101,40,102,114,111,109,44,32,116,111,44,32,100,105,114,101,99,116,105,111,110,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,118,97,114,32,112,104,105,59,92,110,32,32,105,102,32,40,102,114,111,109,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,112,104,105,32,61,32,100,105,114,101,99,116,105,111,110,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,104,97,108,102,80,105,59,92,110,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,44,32,112,104,105,41,59,92,110,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,48,44,32,112,104,105,41,59,92,110,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,44,32,112,104,105,41,59,92,110,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,44,32,48,41,59,92,110,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,44,32,45,112,104,105,41,59,92,110,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,48,44,32,45,112,104,105,41,59,92,110,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,44,32,45,112,104,105,41,59,92,110,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,44,32,48,41,59,92,110,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,44,32,112,104,105,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,98,115,41,40,102,114,111,109,91,48,93,32,45,32,116,111,91,48,93,41,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,118,97,114,32,108,97,109,98,100,97,32,61,32,102,114,111,109,91,48,93,32,60,32,116,111,91,48,93,32,63,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,32,58,32,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,59,92,110,32,32,32,32,112,104,105,32,61,32,100,105,114,101,99,116,105,111,110,32,42,32,108,97,109,98,100,97,32,47,32,50,59,92,110,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,45,108,97,109,98,100,97,44,32,112,104,105,41,59,92,110,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,48,44,32,112,104,105,41,59,92,110,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,116,111,91,48,93,44,32,116,111,91,49,93,41,59,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,97,110,116,105,109,101,114,105,100,105,97,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,98,117,102,102,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,98,117,102,102,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,111,111,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,110,111,111,112,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,108,105,110,101,115,32,61,32,91,93,44,92,110,32,32,32,32,32,32,108,105,110,101,59,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,44,32,109,41,32,123,92,110,32,32,32,32,32,32,108,105,110,101,46,112,117,115,104,40,91,120,44,32,121,44,32,109,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,108,105,110,101,115,46,112,117,115,104,40,108,105,110,101,32,61,32,91,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,105,110,101,69,110,100,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,114,101,106,111,105,110,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,108,105,110,101,115,46,108,101,110,103,116,104,32,62,32,49,41,32,108,105,110,101,115,46,112,117,115,104,40,108,105,110,101,115,46,112,111,112,40,41,46,99,111,110,99,97,116,40,108,105,110,101,115,46,115,104,105,102,116,40,41,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,115,117,108,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,108,105,110,101,115,59,92,110,32,32,32,32,32,32,108,105,110,101,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,108,105,110,101,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,98,117,102,102,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,99,105,114,99,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,99,105,114,99,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,97,114,116,101,115,105,97,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,97,114,116,101,115,105,97,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,105,114,99,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,105,114,99,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,105,110,116,69,113,117,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,112,111,105,110,116,69,113,117,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,111,105,110,116,69,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,114,97,100,105,117,115,41,32,123,92,110,32,32,118,97,114,32,99,114,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,114,97,100,105,117,115,41,44,92,110,32,32,32,32,32,32,100,101,108,116,97,32,61,32,54,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,44,92,110,32,32,32,32,32,32,115,109,97,108,108,82,97,100,105,117,115,32,61,32,99,114,32,62,32,48,44,92,110,32,32,32,32,32,32,110,111,116,72,101,109,105,115,112,104,101,114,101,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,99,114,41,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,59,32,47,47,32,84,79,68,79,32,111,112,116,105,109,105,115,101,32,102,111,114,32,116,104,105,115,32,99,111,109,109,111,110,32,99,97,115,101,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,116,101,114,112,111,108,97,116,101,40,102,114,111,109,44,32,116,111,44,32,100,105,114,101,99,116,105,111,110,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,40,48,44,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,105,114,99,108,101,83,116,114,101,97,109,41,40,115,116,114,101,97,109,44,32,114,97,100,105,117,115,44,32,100,101,108,116,97,44,32,100,105,114,101,99,116,105,111,110,44,32,102,114,111,109,44,32,116,111,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,118,105,115,105,98,108,101,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,108,97,109,98,100,97,41,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,112,104,105,41,32,62,32,99,114,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,84,97,107,101,115,32,97,32,108,105,110,101,32,97,110,100,32,99,117,116,115,32,105,110,116,111,32,118,105,115,105,98,108,101,32,115,101,103,109,101,110,116,115,46,32,82,101,116,117,114,110,32,118,97,108,117,101,115,32,117,115,101,100,32,102,111,114,32,112,111,108,121,103,111,110,92,110,32,32,47,47,32,99,108,105,112,112,105,110,103,58,32,48,32,45,32,116,104,101,114,101,32,119,101,114,101,32,105,110,116,101,114,115,101,99,116,105,111,110,115,32,111,114,32,116,104,101,32,108,105,110,101,32,119,97,115,32,101,109,112,116,121,59,32,49,32,45,32,110,111,92,110,32,32,47,47,32,105,110,116,101,114,115,101,99,116,105,111,110,115,32,50,32,45,32,116,104,101,114,101,32,119,101,114,101,32,105,110,116,101,114,115,101,99,116,105,111,110,115,44,32,97,110,100,32,116,104,101,32,102,105,114,115,116,32,97,110,100,32,108,97,115,116,32,115,101,103,109,101,110,116,115,92,110,32,32,47,47,32,115,104,111,117,108,100,32,98,101,32,114,101,106,111,105,110,101,100,46,92,110,32,32,102,117,110,99,116,105,111,110,32,99,108,105,112,76,105,110,101,40,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,118,97,114,32,112,111,105,110,116,48,44,32,47,47,32,112,114,101,118,105,111,117,115,32,112,111,105,110,116,92,110,32,32,32,32,32,32,32,32,99,48,44,32,47,47,32,99,111,100,101,32,102,111,114,32,112,114,101,118,105,111,117,115,32,112,111,105,110,116,92,110,32,32,32,32,32,32,32,32,118,48,44,32,47,47,32,118,105,115,105,98,105,108,105,116,121,32,111,102,32,112,114,101,118,105,111,117,115,32,112,111,105,110,116,92,110,32,32,32,32,32,32,32,32,118,48,48,44,32,47,47,32,118,105,115,105,98,105,108,105,116,121,32,111,102,32,102,105,114,115,116,32,112,111,105,110,116,92,110,32,32,32,32,32,32,32,32,99,108,101,97,110,59,32,47,47,32,110,111,32,105,110,116,101,114,115,101,99,116,105,111,110,115,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,48,48,32,61,32,118,48,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,99,108,101,97,110,32,61,32,49,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,111,105,110,116,49,32,61,32,91,108,97,109,98,100,97,44,32,112,104,105,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,111,105,110,116,50,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,32,61,32,118,105,115,105,98,108,101,40,108,97,109,98,100,97,44,32,112,104,105,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,32,61,32,115,109,97,108,108,82,97,100,105,117,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,118,32,63,32,48,32,58,32,99,111,100,101,40,108,97,109,98,100,97,44,32,112,104,105,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,118,32,63,32,99,111,100,101,40,108,97,109,98,100,97,32,43,32,40,108,97,109,98,100,97,32,60,32,48,32,63,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,32,58,32,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,41,44,32,112,104,105,41,32,58,32,48,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,112,111,105,110,116,48,32,38,38,32,40,118,48,48,32,61,32,118,48,32,61,32,118,41,41,32,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,32,33,61,61,32,118,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,111,105,110,116,50,32,61,32,105,110,116,101,114,115,101,99,116,40,112,111,105,110,116,48,44,32,112,111,105,110,116,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,112,111,105,110,116,50,32,124,124,32,40,48,44,95,112,111,105,110,116,69,113,117,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,112,111,105,110,116,48,44,32,112,111,105,110,116,50,41,32,124,124,32,40,48,44,95,112,111,105,110,116,69,113,117,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,112,111,105,110,116,49,44,32,112,111,105,110,116,50,41,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,111,105,110,116,49,91,50,93,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,32,33,61,61,32,118,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,101,97,110,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,111,117,116,115,105,100,101,32,103,111,105,110,103,32,105,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,111,105,110,116,50,32,61,32,105,110,116,101,114,115,101,99,116,40,112,111,105,110,116,49,44,32,112,111,105,110,116,48,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,112,111,105,110,116,50,91,48,93,44,32,112,111,105,110,116,50,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,105,110,115,105,100,101,32,103,111,105,110,103,32,111,117,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,111,105,110,116,50,32,61,32,105,110,116,101,114,115,101,99,116,40,112,111,105,110,116,48,44,32,112,111,105,110,116,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,112,111,105,110,116,50,91,48,93,44,32,112,111,105,110,116,50,91,49,93,44,32,50,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,112,111,105,110,116,48,32,61,32,112,111,105,110,116,50,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,111,116,72,101,109,105,115,112,104,101,114,101,32,38,38,32,112,111,105,110,116,48,32,38,38,32,115,109,97,108,108,82,97,100,105,117,115,32,94,32,118,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,59,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,99,111,100,101,115,32,102,111,114,32,116,119,111,32,112,111,105,110,116,115,32,97,114,101,32,100,105,102,102,101,114,101,110,116,44,32,111,114,32,97,114,101,32,98,111,116,104,32,122,101,114,111,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,97,110,100,32,116,104,101,114,101,32,116,104,105,115,32,115,101,103,109,101,110,116,32,105,110,116,101,114,115,101,99,116,115,32,119,105,116,104,32,116,104,101,32,115,109,97,108,108,32,99,105,114,99,108,101,46,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,99,32,38,32,99,48,41,32,38,38,32,40,116,32,61,32,105,110,116,101,114,115,101,99,116,40,112,111,105,110,116,49,44,32,112,111,105,110,116,48,44,32,116,114,117,101,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,101,97,110,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,109,97,108,108,82,97,100,105,117,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,116,91,48,93,91,48,93,44,32,116,91,48,93,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,116,91,49,93,91,48,93,44,32,116,91,49,93,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,116,91,49,93,91,48,93,44,32,116,91,49,93,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,116,91,48,93,91,48,93,44,32,116,91,48,93,91,49,93,44,32,51,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,32,38,38,32,40,33,112,111,105,110,116,48,32,124,124,32,33,40,48,44,95,112,111,105,110,116,69,113,117,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,112,111,105,110,116,48,44,32,112,111,105,110,116,49,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,112,111,105,110,116,49,91,48,93,44,32,112,111,105,110,116,49,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,111,105,110,116,48,32,61,32,112,111,105,110,116,49,44,32,118,48,32,61,32,118,44,32,99,48,32,61,32,99,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,48,41,32,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,112,111,105,110,116,48,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,47,47,32,82,101,106,111,105,110,32,102,105,114,115,116,32,97,110,100,32,108,97,115,116,32,115,101,103,109,101,110,116,115,32,105,102,32,116,104,101,114,101,32,119,101,114,101,32,105,110,116,101,114,115,101,99,116,105,111,110,115,32,97,110,100,32,116,104,101,32,102,105,114,115,116,92,110,32,32,32,32,32,32,47,47,32,97,110,100,32,108,97,115,116,32,112,111,105,110,116,115,32,119,101,114,101,32,118,105,115,105,98,108,101,46,92,110,32,32,32,32,32,32,99,108,101,97,110,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,101,97,110,32,124,32,40,40,118,48,48,32,38,38,32,118,48,41,32,60,60,32,49,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,73,110,116,101,114,115,101,99,116,115,32,116,104,101,32,103,114,101,97,116,32,99,105,114,99,108,101,32,98,101,116,119,101,101,110,32,97,32,97,110,100,32,98,32,119,105,116,104,32,116,104,101,32,99,108,105,112,32,99,105,114,99,108,101,46,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,116,101,114,115,101,99,116,40,97,44,32,98,44,32,116,119,111,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,41,40,97,41,44,92,110,32,32,32,32,32,32,32,32,112,98,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,41,40,98,41,59,92,110,92,110,32,32,32,32,47,47,32,87,101,32,104,97,118,101,32,116,119,111,32,112,108,97,110,101,115,44,32,110,49,46,112,32,61,32,100,49,32,97,110,100,32,110,50,46,112,32,61,32,100,50,46,92,110,32,32,32,32,47,47,32,70,105,110,100,32,105,110,116,101,114,115,101,99,116,105,111,110,32,108,105,110,101,32,112,40,116,41,32,61,32,99,49,32,110,49,32,43,32,99,50,32,110,50,32,43,32,116,32,40,110,49,32,226,168,175,32,110,50,41,46,92,110,32,32,32,32,118,97,114,32,110,49,32,61,32,91,49,44,32,48,44,32,48,93,44,32,47,47,32,110,111,114,109,97,108,92,110,32,32,32,32,32,32,32,32,110,50,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,67,114,111,115,115,41,40,112,97,44,32,112,98,41,44,92,110,32,32,32,32,32,32,32,32,110,50,110,50,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,68,111,116,41,40,110,50,44,32,110,50,41,44,92,110,32,32,32,32,32,32,32,32,110,49,110,50,32,61,32,110,50,91,48,93,44,32,47,47,32,99,97,114,116,101,115,105,97,110,68,111,116,40,110,49,44,32,110,50,41,44,92,110,32,32,32,32,32,32,32,32,100,101,116,101,114,109,105,110,97,110,116,32,61,32,110,50,110,50,32,45,32,110,49,110,50,32,42,32,110,49,110,50,59,92,110,92,110,32,32,32,32,47,47,32,84,119,111,32,112,111,108,97,114,32,112,111,105,110,116,115,46,92,110,32,32,32,32,105,102,32,40,33,100,101,116,101,114,109,105,110,97,110,116,41,32,114,101,116,117,114,110,32,33,116,119,111,32,38,38,32,97,59,92,110,92,110,32,32,32,32,118,97,114,32,99,49,32,61,32,32,99,114,32,42,32,110,50,110,50,32,47,32,100,101,116,101,114,109,105,110,97,110,116,44,92,110,32,32,32,32,32,32,32,32,99,50,32,61,32,45,99,114,32,42,32,110,49,110,50,32,47,32,100,101,116,101,114,109,105,110,97,110,116,44,92,110,32,32,32,32,32,32,32,32,110,49,120,110,50,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,67,114,111,115,115,41,40,110,49,44,32,110,50,41,44,92,110,32,32,32,32,32,32,32,32,65,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,83,99,97,108,101,41,40,110,49,44,32,99,49,41,44,92,110,32,32,32,32,32,32,32,32,66,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,83,99,97,108,101,41,40,110,50,44,32,99,50,41,59,92,110,32,32,32,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,65,100,100,73,110,80,108,97,99,101,41,40,65,44,32,66,41,59,92,110,92,110,32,32,32,32,47,47,32,83,111,108,118,101,32,124,112,40,116,41,124,94,50,32,61,32,49,46,92,110,32,32,32,32,118,97,114,32,117,32,61,32,110,49,120,110,50,44,92,110,32,32,32,32,32,32,32,32,119,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,68,111,116,41,40,65,44,32,117,41,44,92,110,32,32,32,32,32,32,32,32,117,117,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,68,111,116,41,40,117,44,32,117,41,44,92,110,32,32,32,32,32,32,32,32,116,50,32,61,32,119,32,42,32,119,32,45,32,117,117,32,42,32,40,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,68,111,116,41,40,65,44,32,65,41,32,45,32,49,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,50,32,60,32,48,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,118,97,114,32,116,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,116,50,41,44,92,110,32,32,32,32,32,32,32,32,113,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,83,99,97,108,101,41,40,117,44,32,40,45,119,32,45,32,116,41,32,47,32,117,117,41,59,92,110,32,32,32,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,65,100,100,73,110,80,108,97,99,101,41,40,113,44,32,65,41,59,92,110,32,32,32,32,113,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,112,104,101,114,105,99,97,108,41,40,113,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,116,119,111,41,32,114,101,116,117,114,110,32,113,59,92,110,92,110,32,32,32,32,47,47,32,84,119,111,32,105,110,116,101,114,115,101,99,116,105,111,110,32,112,111,105,110,116,115,46,92,110,32,32,32,32,118,97,114,32,108,97,109,98,100,97,48,32,61,32,97,91,48,93,44,92,110,32,32,32,32,32,32,32,32,108,97,109,98,100,97,49,32,61,32,98,91,48,93,44,92,110,32,32,32,32,32,32,32,32,112,104,105,48,32,61,32,97,91,49,93,44,92,110,32,32,32,32,32,32,32,32,112,104,105,49,32,61,32,98,91,49,93,44,92,110,32,32,32,32,32,32,32,32,122,59,92,110,92,110,32,32,32,32,105,102,32,40,108,97,109,98,100,97,49,32,60,32,108,97,109,98,100,97,48,41,32,122,32,61,32,108,97,109,98,100,97,48,44,32,108,97,109,98,100,97,48,32,61,32,108,97,109,98,100,97,49,44,32,108,97,109,98,100,97,49,32,61,32,122,59,92,110,92,110,32,32,32,32,118,97,114,32,100,101,108,116,97,32,61,32,108,97,109,98,100,97,49,32,45,32,108,97,109,98,100,97,48,44,92,110,32,32,32,32,32,32,32,32,112,111,108,97,114,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,100,101,108,116,97,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,44,92,110,32,32,32,32,32,32,32,32,109,101,114,105,100,105,97,110,32,61,32,112,111,108,97,114,32,124,124,32,100,101,108,116,97,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,59,92,110,92,110,32,32,32,32,105,102,32,40,33,112,111,108,97,114,32,38,38,32,112,104,105,49,32,60,32,112,104,105,48,41,32,122,32,61,32,112,104,105,48,44,32,112,104,105,48,32,61,32,112,104,105,49,44,32,112,104,105,49,32,61,32,122,59,92,110,92,110,32,32,32,32,47,47,32,67,104,101,99,107,32,116,104,97,116,32,116,104,101,32,102,105,114,115,116,32,112,111,105,110,116,32,105,115,32,98,101,116,119,101,101,110,32,97,32,97,110,100,32,98,46,92,110,32,32,32,32,105,102,32,40,109,101,114,105,100,105,97,110,92,110,32,32,32,32,32,32,32,32,63,32,112,111,108,97,114,92,110,32,32,32,32,32,32,32,32,32,32,63,32,112,104,105,48,32,43,32,112,104,105,49,32,62,32,48,32,94,32,113,91,49,93,32,60,32,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,113,91,48,93,32,45,32,108,97,109,98,100,97,48,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,32,63,32,112,104,105,48,32,58,32,112,104,105,49,41,92,110,32,32,32,32,32,32,32,32,32,32,58,32,112,104,105,48,32,60,61,32,113,91,49,93,32,38,38,32,113,91,49,93,32,60,61,32,112,104,105,49,92,110,32,32,32,32,32,32,32,32,58,32,100,101,108,116,97,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,32,94,32,40,108,97,109,98,100,97,48,32,60,61,32,113,91,48,93,32,38,38,32,113,91,48,93,32,60,61,32,108,97,109,98,100,97,49,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,113,49,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,83,99,97,108,101,41,40,117,44,32,40,45,119,32,43,32,116,41,32,47,32,117,117,41,59,92,110,32,32,32,32,32,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,97,114,116,101,115,105,97,110,65,100,100,73,110,80,108,97,99,101,41,40,113,49,44,32,65,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,113,44,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,112,104,101,114,105,99,97,108,41,40,113,49,41,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,71,101,110,101,114,97,116,101,115,32,97,32,52,45,98,105,116,32,118,101,99,116,111,114,32,114,101,112,114,101,115,101,110,116,105,110,103,32,116,104,101,32,108,111,99,97,116,105,111,110,32,111,102,32,97,32,112,111,105,110,116,32,114,101,108,97,116,105,118,101,32,116,111,92,110,32,32,47,47,32,116,104,101,32,115,109,97,108,108,32,99,105,114,99,108,101,39,115,32,98,111,117,110,100,105,110,103,32,98,111,120,46,92,110,32,32,102,117,110,99,116,105,111,110,32,99,111,100,101,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,32,32,118,97,114,32,114,32,61,32,115,109,97,108,108,82,97,100,105,117,115,32,63,32,114,97,100,105,117,115,32,58,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,32,45,32,114,97,100,105,117,115,44,92,110,32,32,32,32,32,32,32,32,99,111,100,101,32,61,32,48,59,92,110,32,32,32,32,105,102,32,40,108,97,109,98,100,97,32,60,32,45,114,41,32,99,111,100,101,32,124,61,32,49,59,32,47,47,32,108,101,102,116,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,108,97,109,98,100,97,32,62,32,114,41,32,99,111,100,101,32,124,61,32,50,59,32,47,47,32,114,105,103,104,116,92,110,32,32,32,32,105,102,32,40,112,104,105,32,60,32,45,114,41,32,99,111,100,101,32,124,61,32,52,59,32,47,47,32,98,101,108,111,119,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,112,104,105,32,62,32,114,41,32,99,111,100,101,32,124,61,32,56,59,32,47,47,32,97,98,111,118,101,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,100,101,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,105,115,105,98,108,101,44,32,99,108,105,112,76,105,110,101,44,32,105,110,116,101,114,112,111,108,97,116,101,44,32,115,109,97,108,108,82,97,100,105,117,115,32,63,32,91,48,44,32,45,114,97,100,105,117,115,93,32,58,32,91,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,44,32,114,97,100,105,117,115,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,93,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,99,105,114,99,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,101,120,116,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,101,120,116,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,99,116,97,110,103,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,101,99,116,97,110,103,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,114,101,99,116,97,110,103,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,120,48,32,61,32,48,44,92,110,32,32,32,32,32,32,121,48,32,61,32,48,44,92,110,32,32,32,32,32,32,120,49,32,61,32,57,54,48,44,92,110,32,32,32,32,32,32,121,49,32,61,32,53,48,48,44,92,110,32,32,32,32,32,32,99,97,99,104,101,44,92,110,32,32,32,32,32,32,99,97,99,104,101,83,116,114,101,97,109,44,92,110,32,32,32,32,32,32,99,108,105,112,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,108,105,112,32,61,32,123,92,110,32,32,32,32,115,116,114,101,97,109,58,32,102,117,110,99,116,105,111,110,40,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,99,104,101,32,38,38,32,99,97,99,104,101,83,116,114,101,97,109,32,61,61,61,32,115,116,114,101,97,109,32,63,32,99,97,99,104,101,32,58,32,99,97,99,104,101,32,61,32,40,48,44,95,114,101,99,116,97,110,103,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,40,99,97,99,104,101,83,116,114,101,97,109,32,61,32,115,116,114,101,97,109,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,120,116,101,110,116,58,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,120,48,32,61,32,43,95,91,48,93,91,48,93,44,32,121,48,32,61,32,43,95,91,48,93,91,49,93,44,32,120,49,32,61,32,43,95,91,49,93,91,48,93,44,32,121,49,32,61,32,43,95,91,49,93,91,49,93,44,32,99,97,99,104,101,32,61,32,99,97,99,104,101,83,116,114,101,97,109,32,61,32,110,117,108,108,44,32,99,108,105,112,41,32,58,32,91,91,120,48,44,32,121,48,93,44,32,91,120,49,44,32,121,49,93,93,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,101,120,116,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,102,102,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,117,102,102,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,98,117,102,102,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,106,111,105,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,101,106,111,105,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,114,101,106,111,105,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,112,111,105,110,116,86,105,115,105,98,108,101,44,32,99,108,105,112,76,105,110,101,44,32,105,110,116,101,114,112,111,108,97,116,101,44,32,115,116,97,114,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,115,105,110,107,41,32,123,92,110,32,32,32,32,118,97,114,32,108,105,110,101,32,61,32,99,108,105,112,76,105,110,101,40,115,105,110,107,41,44,92,110,32,32,32,32,32,32,32,32,114,105,110,103,66,117,102,102,101,114,32,61,32,40,48,44,95,98,117,102,102,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,92,110,32,32,32,32,32,32,32,32,114,105,110,103,83,105,110,107,32,61,32,99,108,105,112,76,105,110,101,40,114,105,110,103,66,117,102,102,101,114,41,44,92,110,32,32,32,32,32,32,32,32,112,111,108,121,103,111,110,83,116,97,114,116,101,100,32,61,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,112,111,108,121,103,111,110,44,92,110,32,32,32,32,32,32,32,32,115,101,103,109,101,110,116,115,44,92,110,32,32,32,32,32,32,32,32,114,105,110,103,59,92,110,92,110,32,32,32,32,118,97,114,32,99,108,105,112,32,61,32,123,92,110,32,32,32,32,32,32,112,111,105,110,116,58,32,112,111,105,110,116,44,92,110,32,32,32,32,32,32,108,105,110,101,83,116,97,114,116,58,32,108,105,110,101,83,116,97,114,116,44,92,110,32,32,32,32,32,32,108,105,110,101,69,110,100,58,32,108,105,110,101,69,110,100,44,92,110,32,32,32,32,32,32,112,111,108,121,103,111,110,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,99,108,105,112,46,112,111,105,110,116,32,61,32,112,111,105,110,116,82,105,110,103,59,92,110,32,32,32,32,32,32,32,32,99,108,105,112,46,108,105,110,101,83,116,97,114,116,32,61,32,114,105,110,103,83,116,97,114,116,59,92,110,32,32,32,32,32,32,32,32,99,108,105,112,46,108,105,110,101,69,110,100,32,61,32,114,105,110,103,69,110,100,59,92,110,32,32,32,32,32,32,32,32,115,101,103,109,101,110,116,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,112,111,108,121,103,111,110,32,61,32,91,93,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,112,111,108,121,103,111,110,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,99,108,105,112,46,112,111,105,110,116,32,61,32,112,111,105,110,116,59,92,110,32,32,32,32,32,32,32,32,99,108,105,112,46,108,105,110,101,83,116,97,114,116,32,61,32,108,105,110,101,83,116,97,114,116,59,92,110,32,32,32,32,32,32,32,32,99,108,105,112,46,108,105,110,101,69,110,100,32,61,32,108,105,110,101,69,110,100,59,92,110,32,32,32,32,32,32,32,32,115,101,103,109,101,110,116,115,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,101,114,103,101,41,40,115,101,103,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,116,97,114,116,73,110,115,105,100,101,32,61,32,40,48,44,95,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,112,111,108,121,103,111,110,44,32,115,116,97,114,116,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,101,103,109,101,110,116,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,112,111,108,121,103,111,110,83,116,97,114,116,101,100,41,32,115,105,110,107,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,32,112,111,108,121,103,111,110,83,116,97,114,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,114,101,106,111,105,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,101,103,109,101,110,116,115,44,32,99,111,109,112,97,114,101,73,110,116,101,114,115,101,99,116,105,111,110,44,32,115,116,97,114,116,73,110,115,105,100,101,44,32,105,110,116,101,114,112,111,108,97,116,101,44,32,115,105,110,107,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,116,97,114,116,73,110,115,105,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,112,111,108,121,103,111,110,83,116,97,114,116,101,100,41,32,115,105,110,107,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,32,112,111,108,121,103,111,110,83,116,97,114,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,115,105,110,107,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,40,110,117,108,108,44,32,110,117,108,108,44,32,49,44,32,115,105,110,107,41,59,92,110,32,32,32,32,32,32,32,32,32,32,115,105,110,107,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,111,108,121,103,111,110,83,116,97,114,116,101,100,41,32,115,105,110,107,46,112,111,108,121,103,111,110,69,110,100,40,41,44,32,112,111,108,121,103,111,110,83,116,97,114,116,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,115,101,103,109,101,110,116,115,32,61,32,112,111,108,121,103,111,110,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,115,112,104,101,114,101,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,115,105,110,107,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,115,105,110,107,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,40,110,117,108,108,44,32,110,117,108,108,44,32,49,44,32,115,105,110,107,41,59,92,110,32,32,32,32,32,32,32,32,115,105,110,107,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,115,105,110,107,46,112,111,108,121,103,111,110,69,110,100,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,112,111,105,110,116,86,105,115,105,98,108,101,40,108,97,109,98,100,97,44,32,112,104,105,41,41,32,115,105,110,107,46,112,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,111,105,110,116,76,105,110,101,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,32,32,32,32,108,105,110,101,46,112,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,110,101,83,116,97,114,116,40,41,32,123,92,110,32,32,32,32,32,32,99,108,105,112,46,112,111,105,110,116,32,61,32,112,111,105,110,116,76,105,110,101,59,92,110,32,32,32,32,32,32,108,105,110,101,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,110,101,69,110,100,40,41,32,123,92,110,32,32,32,32,32,32,99,108,105,112,46,112,111,105,110,116,32,61,32,112,111,105,110,116,59,92,110,32,32,32,32,32,32,108,105,110,101,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,111,105,110,116,82,105,110,103,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,32,32,32,32,114,105,110,103,46,112,117,115,104,40,91,108,97,109,98,100,97,44,32,112,104,105,93,41,59,92,110,32,32,32,32,32,32,114,105,110,103,83,105,110,107,46,112,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,105,110,103,83,116,97,114,116,40,41,32,123,92,110,32,32,32,32,32,32,114,105,110,103,83,105,110,107,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,114,105,110,103,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,105,110,103,69,110,100,40,41,32,123,92,110,32,32,32,32,32,32,112,111,105,110,116,82,105,110,103,40,114,105,110,103,91,48,93,91,48,93,44,32,114,105,110,103,91,48,93,91,49,93,41,59,92,110,32,32,32,32,32,32,114,105,110,103,83,105,110,107,46,108,105,110,101,69,110,100,40,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,108,101,97,110,32,61,32,114,105,110,103,83,105,110,107,46,99,108,101,97,110,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,114,105,110,103,83,101,103,109,101,110,116,115,32,61,32,114,105,110,103,66,117,102,102,101,114,46,114,101,115,117,108,116,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,44,32,110,32,61,32,114,105,110,103,83,101,103,109,101,110,116,115,46,108,101,110,103,116,104,44,32,109,44,92,110,32,32,32,32,32,32,32,32,32,32,115,101,103,109,101,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,112,111,105,110,116,59,92,110,92,110,32,32,32,32,32,32,114,105,110,103,46,112,111,112,40,41,59,92,110,32,32,32,32,32,32,112,111,108,121,103,111,110,46,112,117,115,104,40,114,105,110,103,41,59,92,110,32,32,32,32,32,32,114,105,110,103,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,110,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,32,32,47,47,32,78,111,32,105,110,116,101,114,115,101,99,116,105,111,110,115,46,92,110,32,32,32,32,32,32,105,102,32,40,99,108,101,97,110,32,38,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,115,101,103,109,101,110,116,32,61,32,114,105,110,103,83,101,103,109,101,110,116,115,91,48,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,109,32,61,32,115,101,103,109,101,110,116,46,108,101,110,103,116,104,32,45,32,49,41,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,112,111,108,121,103,111,110,83,116,97,114,116,101,100,41,32,115,105,110,107,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,32,112,111,108,121,103,111,110,83,116,97,114,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,115,105,110,107,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,109,59,32,43,43,105,41,32,115,105,110,107,46,112,111,105,110,116,40,40,112,111,105,110,116,32,61,32,115,101,103,109,101,110,116,91,105,93,41,91,48,93,44,32,112,111,105,110,116,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,115,105,110,107,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,82,101,106,111,105,110,32,99,111,110,110,101,99,116,101,100,32,115,101,103,109,101,110,116,115,46,92,110,32,32,32,32,32,32,47,47,32,84,79,68,79,32,114,101,117,115,101,32,114,105,110,103,66,117,102,102,101,114,46,114,101,106,111,105,110,40,41,63,92,110,32,32,32,32,32,32,105,102,32,40,110,32,62,32,49,32,38,38,32,99,108,101,97,110,32,38,32,50,41,32,114,105,110,103,83,101,103,109,101,110,116,115,46,112,117,115,104,40,114,105,110,103,83,101,103,109,101,110,116,115,46,112,111,112,40,41,46,99,111,110,99,97,116,40,114,105,110,103,83,101,103,109,101,110,116,115,46,115,104,105,102,116,40,41,41,41,59,92,110,92,110,32,32,32,32,32,32,115,101,103,109,101,110,116,115,46,112,117,115,104,40,114,105,110,103,83,101,103,109,101,110,116,115,46,102,105,108,116,101,114,40,118,97,108,105,100,83,101,103,109,101,110,116,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,99,108,105,112,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,118,97,108,105,100,83,101,103,109,101,110,116,40,115,101,103,109,101,110,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,101,103,109,101,110,116,46,108,101,110,103,116,104,32,62,32,49,59,92,110,125,92,110,92,110,47,47,32,73,110,116,101,114,115,101,99,116,105,111,110,115,32,97,114,101,32,115,111,114,116,101,100,32,97,108,111,110,103,32,116,104,101,32,99,108,105,112,32,101,100,103,101,46,32,70,111,114,32,98,111,116,104,32,97,110,116,105,109,101,114,105,100,105,97,110,32,99,117,116,116,105,110,103,92,110,47,47,32,97,110,100,32,99,105,114,99,108,101,32,99,108,105,112,112,105,110,103,44,32,116,104,101,32,115,97,109,101,32,99,111,109,112,97,114,105,115,111,110,32,105,115,32,117,115,101,100,46,92,110,102,117,110,99,116,105,111,110,32,99,111,109,112,97,114,101,73,110,116,101,114,115,101,99,116,105,111,110,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,40,97,32,61,32,97,46,120,41,91,48,93,32,60,32,48,32,63,32,97,91,49,93,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,97,108,102,80,105,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,101,112,115,105,108,111,110,32,58,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,97,108,102,80,105,32,45,32,97,91,49,93,41,92,110,32,32,32,32,32,32,32,45,32,40,40,98,32,61,32,98,46,120,41,91,48,93,32,60,32,48,32,63,32,98,91,49,93,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,97,108,102,80,105,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,101,112,115,105,108,111,110,32,58,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,97,108,102,80,105,32,45,32,98,91,49,93,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,108,105,110,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,108,105,110,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,118,97,114,32,97,120,32,61,32,97,91,48,93,44,92,110,32,32,32,32,32,32,97,121,32,61,32,97,91,49,93,44,92,110,32,32,32,32,32,32,98,120,32,61,32,98,91,48,93,44,92,110,32,32,32,32,32,32,98,121,32,61,32,98,91,49,93,44,92,110,32,32,32,32,32,32,116,48,32,61,32,48,44,92,110,32,32,32,32,32,32,116,49,32,61,32,49,44,92,110,32,32,32,32,32,32,100,120,32,61,32,98,120,32,45,32,97,120,44,92,110,32,32,32,32,32,32,100,121,32,61,32,98,121,32,45,32,97,121,44,92,110,32,32,32,32,32,32,114,59,92,110,92,110,32,32,114,32,61,32,120,48,32,45,32,97,120,59,92,110,32,32,105,102,32,40,33,100,120,32,38,38,32,114,32,62,32,48,41,32,114,101,116,117,114,110,59,92,110,32,32,114,32,47,61,32,100,120,59,92,110,32,32,105,102,32,40,100,120,32,60,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,48,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,49,41,32,116,49,32,61,32,114,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,100,120,32,62,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,49,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,48,41,32,116,48,32,61,32,114,59,92,110,32,32,125,92,110,92,110,32,32,114,32,61,32,120,49,32,45,32,97,120,59,92,110,32,32,105,102,32,40,33,100,120,32,38,38,32,114,32,60,32,48,41,32,114,101,116,117,114,110,59,92,110,32,32,114,32,47,61,32,100,120,59,92,110,32,32,105,102,32,40,100,120,32,60,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,49,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,48,41,32,116,48,32,61,32,114,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,100,120,32,62,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,48,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,49,41,32,116,49,32,61,32,114,59,92,110,32,32,125,92,110,92,110,32,32,114,32,61,32,121,48,32,45,32,97,121,59,92,110,32,32,105,102,32,40,33,100,121,32,38,38,32,114,32,62,32,48,41,32,114,101,116,117,114,110,59,92,110,32,32,114,32,47,61,32,100,121,59,92,110,32,32,105,102,32,40,100,121,32,60,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,48,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,49,41,32,116,49,32,61,32,114,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,100,121,32,62,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,49,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,48,41,32,116,48,32,61,32,114,59,92,110,32,32,125,92,110,92,110,32,32,114,32,61,32,121,49,32,45,32,97,121,59,92,110,32,32,105,102,32,40,33,100,121,32,38,38,32,114,32,60,32,48,41,32,114,101,116,117,114,110,59,92,110,32,32,114,32,47,61,32,100,121,59,92,110,32,32,105,102,32,40,100,121,32,60,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,49,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,48,41,32,116,48,32,61,32,114,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,100,121,32,62,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,48,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,49,41,32,116,49,32,61,32,114,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,116,48,32,62,32,48,41,32,97,91,48,93,32,61,32,97,120,32,43,32,116,48,32,42,32,100,120,44,32,97,91,49,93,32,61,32,97,121,32,43,32,116,48,32,42,32,100,121,59,92,110,32,32,105,102,32,40,116,49,32,60,32,49,41,32,98,91,48,93,32,61,32,97,120,32,43,32,116,49,32,42,32,100,120,44,32,98,91,49,93,32,61,32,97,121,32,43,32,116,49,32,42,32,100,121,59,92,110,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,108,105,110,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,114,101,99,116,97,110,103,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,114,101,99,116,97,110,103,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,108,105,112,82,101,99,116,97,110,103,108,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,117,102,102,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,117,102,102,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,98,117,102,102,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,108,105,110,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,106,111,105,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,101,106,111,105,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,114,101,106,111,105,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,99,108,105,112,77,97,120,32,61,32,49,101,57,44,32,99,108,105,112,77,105,110,32,61,32,45,99,108,105,112,77,97,120,59,92,110,92,110,47,47,32,84,79,68,79,32,85,115,101,32,100,51,45,112,111,108,121,103,111,110,226,128,153,115,32,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,32,104,101,114,101,32,102,111,114,32,116,104,101,32,114,105,110,103,32,99,104,101,99,107,63,92,110,47,47,32,84,79,68,79,32,69,108,105,109,105,110,97,116,101,32,100,117,112,108,105,99,97,116,101,32,98,117,102,102,101,114,105,110,103,32,105,110,32,99,108,105,112,66,117,102,102,101,114,32,97,110,100,32,112,111,108,121,103,111,110,46,112,117,115,104,63,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,105,112,82,101,99,116,97,110,103,108,101,40,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,118,105,115,105,98,108,101,40,120,44,32,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,48,32,60,61,32,120,32,38,38,32,120,32,60,61,32,120,49,32,38,38,32,121,48,32,60,61,32,121,32,38,38,32,121,32,60,61,32,121,49,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,116,101,114,112,111,108,97,116,101,40,102,114,111,109,44,32,116,111,44,32,100,105,114,101,99,116,105,111,110,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,118,97,114,32,97,32,61,32,48,44,32,97,49,32,61,32,48,59,92,110,32,32,32,32,105,102,32,40,102,114,111,109,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,124,124,32,40,97,32,61,32,99,111,114,110,101,114,40,102,114,111,109,44,32,100,105,114,101,99,116,105,111,110,41,41,32,33,61,61,32,40,97,49,32,61,32,99,111,114,110,101,114,40,116,111,44,32,100,105,114,101,99,116,105,111,110,41,41,92,110,32,32,32,32,32,32,32,32,124,124,32,99,111,109,112,97,114,101,80,111,105,110,116,40,102,114,111,109,44,32,116,111,41,32,60,32,48,32,94,32,100,105,114,101,99,116,105,111,110,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,100,111,32,115,116,114,101,97,109,46,112,111,105,110,116,40,97,32,61,61,61,32,48,32,124,124,32,97,32,61,61,61,32,51,32,63,32,120,48,32,58,32,120,49,44,32,97,32,62,32,49,32,63,32,121,49,32,58,32,121,48,41,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,40,97,32,61,32,40,97,32,43,32,100,105,114,101,99,116,105,111,110,32,43,32,52,41,32,37,32,52,41,32,33,61,61,32,97,49,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,116,111,91,48,93,44,32,116,111,91,49,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,111,114,110,101,114,40,112,44,32,100,105,114,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,98,115,41,40,112,91,48,93,32,45,32,120,48,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,63,32,100,105,114,101,99,116,105,111,110,32,62,32,48,32,63,32,48,32,58,32,51,92,110,32,32,32,32,32,32,32,32,58,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,98,115,41,40,112,91,48,93,32,45,32,120,49,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,63,32,100,105,114,101,99,116,105,111,110,32,62,32,48,32,63,32,50,32,58,32,49,92,110,32,32,32,32,32,32,32,32,58,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,98,115,41,40,112,91,49,93,32,45,32,121,48,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,63,32,100,105,114,101,99,116,105,111,110,32,62,32,48,32,63,32,49,32,58,32,48,92,110,32,32,32,32,32,32,32,32,58,32,100,105,114,101,99,116,105,111,110,32,62,32,48,32,63,32,51,32,58,32,50,59,32,47,47,32,97,98,115,40,112,91,49,93,32,45,32,121,49,41,32,60,32,101,112,115,105,108,111,110,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,111,109,112,97,114,101,73,110,116,101,114,115,101,99,116,105,111,110,40,97,44,32,98,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,97,114,101,80,111,105,110,116,40,97,46,120,44,32,98,46,120,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,111,109,112,97,114,101,80,111,105,110,116,40,97,44,32,98,41,32,123,92,110,32,32,32,32,118,97,114,32,99,97,32,61,32,99,111,114,110,101,114,40,97,44,32,49,41,44,92,110,32,32,32,32,32,32,32,32,99,98,32,61,32,99,111,114,110,101,114,40,98,44,32,49,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,97,32,33,61,61,32,99,98,32,63,32,99,97,32,45,32,99,98,92,110,32,32,32,32,32,32,32,32,58,32,99,97,32,61,61,61,32,48,32,63,32,98,91,49,93,32,45,32,97,91,49,93,92,110,32,32,32,32,32,32,32,32,58,32,99,97,32,61,61,61,32,49,32,63,32,97,91,48,93,32,45,32,98,91,48,93,92,110,32,32,32,32,32,32,32,32,58,32,99,97,32,61,61,61,32,50,32,63,32,97,91,49,93,32,45,32,98,91,49,93,92,110,32,32,32,32,32,32,32,32,58,32,98,91,48,93,32,45,32,97,91,48,93,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,118,97,114,32,97,99,116,105,118,101,83,116,114,101,97,109,32,61,32,115,116,114,101,97,109,44,92,110,32,32,32,32,32,32,32,32,98,117,102,102,101,114,83,116,114,101,97,109,32,61,32,40,48,44,95,98,117,102,102,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,92,110,32,32,32,32,32,32,32,32,115,101,103,109,101,110,116,115,44,92,110,32,32,32,32,32,32,32,32,112,111,108,121,103,111,110,44,92,110,32,32,32,32,32,32,32,32,114,105,110,103,44,92,110,32,32,32,32,32,32,32,32,120,95,95,44,32,121,95,95,44,32,118,95,95,44,32,47,47,32,102,105,114,115,116,32,112,111,105,110,116,92,110,32,32,32,32,32,32,32,32,120,95,44,32,121,95,44,32,118,95,44,32,47,47,32,112,114,101,118,105,111,117,115,32,112,111,105,110,116,92,110,32,32,32,32,32,32,32,32,102,105,114,115,116,44,92,110,32,32,32,32,32,32,32,32,99,108,101,97,110,59,92,110,92,110,32,32,32,32,118,97,114,32,99,108,105,112,83,116,114,101,97,109,32,61,32,123,92,110,32,32,32,32,32,32,112,111,105,110,116,58,32,112,111,105,110,116,44,92,110,32,32,32,32,32,32,108,105,110,101,83,116,97,114,116,58,32,108,105,110,101,83,116,97,114,116,44,92,110,32,32,32,32,32,32,108,105,110,101,69,110,100,58,32,108,105,110,101,69,110,100,44,92,110,32,32,32,32,32,32,112,111,108,121,103,111,110,83,116,97,114,116,58,32,112,111,108,121,103,111,110,83,116,97,114,116,44,92,110,32,32,32,32,32,32,112,111,108,121,103,111,110,69,110,100,58,32,112,111,108,121,103,111,110,69,110,100,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,111,105,110,116,40,120,44,32,121,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,105,115,105,98,108,101,40,120,44,32,121,41,41,32,97,99,116,105,118,101,83,116,114,101,97,109,46,112,111,105,110,116,40,120,44,32,121,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,111,108,121,103,111,110,73,110,115,105,100,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,119,105,110,100,105,110,103,32,61,32,48,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,112,111,108,121,103,111,110,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,114,105,110,103,32,61,32,112,111,108,121,103,111,110,91,105,93,44,32,106,32,61,32,49,44,32,109,32,61,32,114,105,110,103,46,108,101,110,103,116,104,44,32,112,111,105,110,116,32,61,32,114,105,110,103,91,48,93,44,32,97,48,44,32,97,49,44,32,98,48,32,61,32,112,111,105,110,116,91,48,93,44,32,98,49,32,61,32,112,111,105,110,116,91,49,93,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,48,32,61,32,98,48,44,32,97,49,32,61,32,98,49,44,32,112,111,105,110,116,32,61,32,114,105,110,103,91,106,93,44,32,98,48,32,61,32,112,111,105,110,116,91,48,93,44,32,98,49,32,61,32,112,111,105,110,116,91,49,93,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,49,32,60,61,32,121,49,41,32,123,32,105,102,32,40,98,49,32,62,32,121,49,32,38,38,32,40,98,48,32,45,32,97,48,41,32,42,32,40,121,49,32,45,32,97,49,41,32,62,32,40,98,49,32,45,32,97,49,41,32,42,32,40,120,48,32,45,32,97,48,41,41,32,43,43,119,105,110,100,105,110,103,59,32,125,92,110,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,32,105,102,32,40,98,49,32,60,61,32,121,49,32,38,38,32,40,98,48,32,45,32,97,48,41,32,42,32,40,121,49,32,45,32,97,49,41,32,60,32,40,98,49,32,45,32,97,49,41,32,42,32,40,120,48,32,45,32,97,48,41,41,32,45,45,119,105,110,100,105,110,103,59,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,119,105,110,100,105,110,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,66,117,102,102,101,114,32,103,101,111,109,101,116,114,121,32,119,105,116,104,105,110,32,97,32,112,111,108,121,103,111,110,32,97,110,100,32,116,104,101,110,32,99,108,105,112,32,105,116,32,101,110,32,109,97,115,115,101,46,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,111,108,121,103,111,110,83,116,97,114,116,40,41,32,123,92,110,32,32,32,32,32,32,97,99,116,105,118,101,83,116,114,101,97,109,32,61,32,98,117,102,102,101,114,83,116,114,101,97,109,44,32,115,101,103,109,101,110,116,115,32,61,32,91,93,44,32,112,111,108,121,103,111,110,32,61,32,91,93,44,32,99,108,101,97,110,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,111,108,121,103,111,110,69,110,100,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,114,116,73,110,115,105,100,101,32,61,32,112,111,108,121,103,111,110,73,110,115,105,100,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,99,108,101,97,110,73,110,115,105,100,101,32,61,32,99,108,101,97,110,32,38,38,32,115,116,97,114,116,73,110,115,105,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,32,61,32,40,115,101,103,109,101,110,116,115,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,101,114,103,101,41,40,115,101,103,109,101,110,116,115,41,41,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,99,108,101,97,110,73,110,115,105,100,101,32,124,124,32,118,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,108,101,97,110,73,110,115,105,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,40,110,117,108,108,44,32,110,117,108,108,44,32,49,44,32,115,116,114,101,97,109,41,59,92,110,32,32,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,105,115,105,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,40,48,44,95,114,101,106,111,105,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,101,103,109,101,110,116,115,44,32,99,111,109,112,97,114,101,73,110,116,101,114,115,101,99,116,105,111,110,44,32,115,116,97,114,116,73,110,115,105,100,101,44,32,105,110,116,101,114,112,111,108,97,116,101,44,32,115,116,114,101,97,109,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,108,121,103,111,110,69,110,100,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,97,99,116,105,118,101,83,116,114,101,97,109,32,61,32,115,116,114,101,97,109,44,32,115,101,103,109,101,110,116,115,32,61,32,112,111,108,121,103,111,110,32,61,32,114,105,110,103,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,110,101,83,116,97,114,116,40,41,32,123,92,110,32,32,32,32,32,32,99,108,105,112,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,108,105,110,101,80,111,105,110,116,59,92,110,32,32,32,32,32,32,105,102,32,40,112,111,108,121,103,111,110,41,32,112,111,108,121,103,111,110,46,112,117,115,104,40,114,105,110,103,32,61,32,91,93,41,59,92,110,32,32,32,32,32,32,102,105,114,115,116,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,118,95,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,120,95,32,61,32,121,95,32,61,32,78,97,78,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,84,79,68,79,32,114,97,116,104,101,114,32,116,104,97,110,32,115,112,101,99,105,97,108,45,99,97,115,101,32,112,111,108,121,103,111,110,115,44,32,115,105,109,112,108,121,32,104,97,110,100,108,101,32,116,104,101,109,32,115,101,112,97,114,97,116,101,108,121,46,92,110,32,32,32,32,47,47,32,73,100,101,97,108,108,121,44,32,99,111,105,110,99,105,100,101,110,116,32,105,110,116,101,114,115,101,99,116,105,111,110,32,112,111,105,110,116,115,32,115,104,111,117,108,100,32,98,101,32,106,105,116,116,101,114,101,100,32,116,111,32,97,118,111,105,100,92,110,32,32,32,32,47,47,32,99,108,105,112,112,105,110,103,32,105,115,115,117,101,115,46,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,110,101,69,110,100,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,101,103,109,101,110,116,115,41,32,123,92,110,32,32,32,32,32,32,32,32,108,105,110,101,80,111,105,110,116,40,120,95,95,44,32,121,95,95,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,95,95,32,38,38,32,118,95,41,32,98,117,102,102,101,114,83,116,114,101,97,109,46,114,101,106,111,105,110,40,41,59,92,110,32,32,32,32,32,32,32,32,115,101,103,109,101,110,116,115,46,112,117,115,104,40,98,117,102,102,101,114,83,116,114,101,97,109,46,114,101,115,117,108,116,40,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,108,105,112,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,112,111,105,110,116,59,92,110,32,32,32,32,32,32,105,102,32,40,118,95,41,32,97,99,116,105,118,101,83,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,110,101,80,111,105,110,116,40,120,44,32,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,32,61,32,118,105,115,105,98,108,101,40,120,44,32,121,41,59,92,110,32,32,32,32,32,32,105,102,32,40,112,111,108,121,103,111,110,41,32,114,105,110,103,46,112,117,115,104,40,91,120,44,32,121,93,41,59,92,110,32,32,32,32,32,32,105,102,32,40,102,105,114,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,120,95,95,32,61,32,120,44,32,121,95,95,32,61,32,121,44,32,118,95,95,32,61,32,118,59,92,110,32,32,32,32,32,32,32,32,102,105,114,115,116,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,83,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,83,116,114,101,97,109,46,112,111,105,110,116,40,120,44,32,121,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,32,38,38,32,118,95,41,32,97,99,116,105,118,101,83,116,114,101,97,109,46,112,111,105,110,116,40,120,44,32,121,41,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,32,61,32,91,120,95,32,61,32,77,97,116,104,46,109,97,120,40,99,108,105,112,77,105,110,44,32,77,97,116,104,46,109,105,110,40,99,108,105,112,77,97,120,44,32,120,95,41,41,44,32,121,95,32,61,32,77,97,116,104,46,109,97,120,40,99,108,105,112,77,105,110,44,32,77,97,116,104,46,109,105,110,40,99,108,105,112,77,97,120,44,32,121,95,41,41,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,32,61,32,91,120,32,61,32,77,97,116,104,46,109,97,120,40,99,108,105,112,77,105,110,44,32,77,97,116,104,46,109,105,110,40,99,108,105,112,77,97,120,44,32,120,41,41,44,32,121,32,61,32,77,97,116,104,46,109,97,120,40,99,108,105,112,77,105,110,44,32,77,97,116,104,46,109,105,110,40,99,108,105,112,77,97,120,44,32,121,41,41,93,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,48,44,95,108,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,97,44,32,98,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,118,95,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,83,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,83,116,114,101,97,109,46,112,111,105,110,116,40,97,91,48,93,44,32,97,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,83,116,114,101,97,109,46,112,111,105,110,116,40,98,91,48,93,44,32,98,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,118,41,32,97,99,116,105,118,101,83,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,101,97,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,118,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,83,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,99,116,105,118,101,83,116,114,101,97,109,46,112,111,105,110,116,40,120,44,32,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,101,97,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,120,95,32,61,32,120,44,32,121,95,32,61,32,121,44,32,118,95,32,61,32,118,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,99,108,105,112,83,116,114,101,97,109,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,114,101,99,116,97,110,103,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,114,101,106,111,105,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,114,101,106,111,105,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,105,110,116,69,113,117,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,112,111,105,110,116,69,113,117,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,111,105,110,116,69,113,117,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,73,110,116,101,114,115,101,99,116,105,111,110,40,112,111,105,110,116,44,32,112,111,105,110,116,115,44,32,111,116,104,101,114,44,32,101,110,116,114,121,41,32,123,92,110,32,32,116,104,105,115,46,120,32,61,32,112,111,105,110,116,59,92,110,32,32,116,104,105,115,46,122,32,61,32,112,111,105,110,116,115,59,92,110,32,32,116,104,105,115,46,111,32,61,32,111,116,104,101,114,59,32,47,47,32,97,110,111,116,104,101,114,32,105,110,116,101,114,115,101,99,116,105,111,110,92,110,32,32,116,104,105,115,46,101,32,61,32,101,110,116,114,121,59,32,47,47,32,105,115,32,97,110,32,101,110,116,114,121,63,92,110,32,32,116,104,105,115,46,118,32,61,32,102,97,108,115,101,59,32,47,47,32,118,105,115,105,116,101,100,92,110,32,32,116,104,105,115,46,110,32,61,32,116,104,105,115,46,112,32,61,32,110,117,108,108,59,32,47,47,32,110,101,120,116,32,38,32,112,114,101,118,105,111,117,115,92,110,125,92,110,92,110,47,47,32,65,32,103,101,110,101,114,97,108,105,122,101,100,32,112,111,108,121,103,111,110,32,99,108,105,112,112,105,110,103,32,97,108,103,111,114,105,116,104,109,58,32,103,105,118,101,110,32,97,32,112,111,108,121,103,111,110,32,116,104,97,116,32,104,97,115,32,98,101,101,110,32,99,117,116,92,110,47,47,32,105,110,116,111,32,105,116,115,32,118,105,115,105,98,108,101,32,108,105,110,101,32,115,101,103,109,101,110,116,115,44,32,97,110,100,32,114,101,106,111,105,110,115,32,116,104,101,32,115,101,103,109,101,110,116,115,32,98,121,32,105,110,116,101,114,112,111,108,97,116,105,110,103,92,110,47,47,32,97,108,111,110,103,32,116,104,101,32,99,108,105,112,32,101,100,103,101,46,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,103,109,101,110,116,115,44,32,99,111,109,112,97,114,101,73,110,116,101,114,115,101,99,116,105,111,110,44,32,115,116,97,114,116,73,110,115,105,100,101,44,32,105,110,116,101,114,112,111,108,97,116,101,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,118,97,114,32,115,117,98,106,101,99,116,32,61,32,91,93,44,92,110,32,32,32,32,32,32,99,108,105,112,32,61,32,91,93,44,92,110,32,32,32,32,32,32,105,44,92,110,32,32,32,32,32,32,110,59,92,110,92,110,32,32,115,101,103,109,101,110,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,115,101,103,109,101,110,116,41,32,123,92,110,32,32,32,32,105,102,32,40,40,110,32,61,32,115,101,103,109,101,110,116,46,108,101,110,103,116,104,32,45,32,49,41,32,60,61,32,48,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,118,97,114,32,110,44,32,112,48,32,61,32,115,101,103,109,101,110,116,91,48,93,44,32,112,49,32,61,32,115,101,103,109,101,110,116,91,110,93,44,32,120,59,92,110,92,110,32,32,32,32,105,102,32,40,40,48,44,95,112,111,105,110,116,69,113,117,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,112,48,44,32,112,49,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,112,48,91,50,93,32,38,38,32,33,112,49,91,50,93,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,115,116,114,101,97,109,46,112,111,105,110,116,40,40,112,48,32,61,32,115,101,103,109,101,110,116,91,105,93,41,91,48,93,44,32,112,48,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,104,97,110,100,108,101,32,100,101,103,101,110,101,114,97,116,101,32,99,97,115,101,115,32,98,121,32,109,111,118,105,110,103,32,116,104,101,32,112,111,105,110,116,92,110,32,32,32,32,32,32,112,49,91,48,93,32,43,61,32,50,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,117,98,106,101,99,116,46,112,117,115,104,40,120,32,61,32,110,101,119,32,73,110,116,101,114,115,101,99,116,105,111,110,40,112,48,44,32,115,101,103,109,101,110,116,44,32,110,117,108,108,44,32,116,114,117,101,41,41,59,92,110,32,32,32,32,99,108,105,112,46,112,117,115,104,40,120,46,111,32,61,32,110,101,119,32,73,110,116,101,114,115,101,99,116,105,111,110,40,112,48,44,32,110,117,108,108,44,32,120,44,32,102,97,108,115,101,41,41,59,92,110,32,32,32,32,115,117,98,106,101,99,116,46,112,117,115,104,40,120,32,61,32,110,101,119,32,73,110,116,101,114,115,101,99,116,105,111,110,40,112,49,44,32,115,101,103,109,101,110,116,44,32,110,117,108,108,44,32,102,97,108,115,101,41,41,59,92,110,32,32,32,32,99,108,105,112,46,112,117,115,104,40,120,46,111,32,61,32,110,101,119,32,73,110,116,101,114,115,101,99,116,105,111,110,40,112,49,44,32,110,117,108,108,44,32,120,44,32,116,114,117,101,41,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,105,102,32,40,33,115,117,98,106,101,99,116,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,99,108,105,112,46,115,111,114,116,40,99,111,109,112,97,114,101,73,110,116,101,114,115,101,99,116,105,111,110,41,59,92,110,32,32,108,105,110,107,40,115,117,98,106,101,99,116,41,59,92,110,32,32,108,105,110,107,40,99,108,105,112,41,59,92,110,92,110,32,32,102,111,114,32,40,105,32,61,32,48,44,32,110,32,61,32,99,108,105,112,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,99,108,105,112,91,105,93,46,101,32,61,32,115,116,97,114,116,73,110,115,105,100,101,32,61,32,33,115,116,97,114,116,73,110,115,105,100,101,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,115,116,97,114,116,32,61,32,115,117,98,106,101,99,116,91,48,93,44,92,110,32,32,32,32,32,32,112,111,105,110,116,115,44,92,110,32,32,32,32,32,32,112,111,105,110,116,59,92,110,92,110,32,32,119,104,105,108,101,32,40,49,41,32,123,92,110,32,32,32,32,47,47,32,70,105,110,100,32,102,105,114,115,116,32,117,110,118,105,115,105,116,101,100,32,105,110,116,101,114,115,101,99,116,105,111,110,46,92,110,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,32,61,32,115,116,97,114,116,44,92,110,32,32,32,32,32,32,32,32,105,115,83,117,98,106,101,99,116,32,61,32,116,114,117,101,59,92,110,32,32,32,32,119,104,105,108,101,32,40,99,117,114,114,101,110,116,46,118,41,32,105,102,32,40,40,99,117,114,114,101,110,116,32,61,32,99,117,114,114,101,110,116,46,110,41,32,61,61,61,32,115,116,97,114,116,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,112,111,105,110,116,115,32,61,32,99,117,114,114,101,110,116,46,122,59,92,110,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,100,111,32,123,92,110,32,32,32,32,32,32,99,117,114,114,101,110,116,46,118,32,61,32,99,117,114,114,101,110,116,46,111,46,118,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,46,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,83,117,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,44,32,110,32,61,32,112,111,105,110,116,115,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,115,116,114,101,97,109,46,112,111,105,110,116,40,40,112,111,105,110,116,32,61,32,112,111,105,110,116,115,91,105,93,41,91,48,93,44,32,112,111,105,110,116,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,40,99,117,114,114,101,110,116,46,120,44,32,99,117,114,114,101,110,116,46,110,46,120,44,32,49,44,32,115,116,114,101,97,109,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,32,61,32,99,117,114,114,101,110,116,46,110,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,83,117,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,111,105,110,116,115,32,61,32,99,117,114,114,101,110,116,46,112,46,122,59,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,112,111,105,110,116,115,46,108,101,110,103,116,104,32,45,32,49,59,32,105,32,62,61,32,48,59,32,45,45,105,41,32,115,116,114,101,97,109,46,112,111,105,110,116,40,40,112,111,105,110,116,32,61,32,112,111,105,110,116,115,91,105,93,41,91,48,93,44,32,112,111,105,110,116,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,40,99,117,114,114,101,110,116,46,120,44,32,99,117,114,114,101,110,116,46,112,46,120,44,32,45,49,44,32,115,116,114,101,97,109,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,32,61,32,99,117,114,114,101,110,116,46,112,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,117,114,114,101,110,116,32,61,32,99,117,114,114,101,110,116,46,111,59,92,110,32,32,32,32,32,32,112,111,105,110,116,115,32,61,32,99,117,114,114,101,110,116,46,122,59,92,110,32,32,32,32,32,32,105,115,83,117,98,106,101,99,116,32,61,32,33,105,115,83,117,98,106,101,99,116,59,92,110,32,32,32,32,125,32,119,104,105,108,101,32,40,33,99,117,114,114,101,110,116,46,118,41,59,92,110,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,105,110,107,40,97,114,114,97,121,41,32,123,92,110,32,32,105,102,32,40,33,40,110,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,41,41,32,114,101,116,117,114,110,59,92,110,32,32,118,97,114,32,110,44,92,110,32,32,32,32,32,32,105,32,61,32,48,44,92,110,32,32,32,32,32,32,97,32,61,32,97,114,114,97,121,91,48,93,44,92,110,32,32,32,32,32,32,98,59,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,97,46,110,32,61,32,98,32,61,32,97,114,114,97,121,91,105,93,59,92,110,32,32,32,32,98,46,112,32,61,32,97,59,92,110,32,32,32,32,97,32,61,32,98,59,92,110,32,32,125,92,110,32,32,97,46,110,32,61,32,98,32,61,32,97,114,114,97,121,91,48,93,59,92,110,32,32,98,46,112,32,61,32,97,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,114,101,106,111,105,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,111,109,112,111,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,111,109,112,111,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,111,109,112,111,115,101,40,120,44,32,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,32,61,32,97,40,120,44,32,121,41,44,32,98,40,120,91,48,93,44,32,120,91,49,93,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,97,46,105,110,118,101,114,116,32,38,38,32,98,46,105,110,118,101,114,116,41,32,99,111,109,112,111,115,101,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,32,61,32,98,46,105,110,118,101,114,116,40,120,44,32,121,41,44,32,120,32,38,38,32,97,46,105,110,118,101,114,116,40,120,91,48,93,44,32,120,91,49,93,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,111,109,112,111,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,111,110,116,97,105,110,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,111,110,116,97,105,110,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,115,116,97,110,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,115,116,97,110,99,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,100,105,115,116,97,110,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,99,111,110,116,97,105,110,115,79,98,106,101,99,116,84,121,112,101,32,61,32,123,92,110,32,32,70,101,97,116,117,114,101,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,112,111,105,110,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,110,116,97,105,110,115,71,101,111,109,101,116,114,121,40,111,98,106,101,99,116,46,103,101,111,109,101,116,114,121,44,32,112,111,105,110,116,41,59,92,110,32,32,125,44,92,110,32,32,70,101,97,116,117,114,101,67,111,108,108,101,99,116,105,111,110,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,112,111,105,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,102,101,97,116,117,114,101,115,32,61,32,111,98,106,101,99,116,46,102,101,97,116,117,114,101,115,44,32,105,32,61,32,45,49,44,32,110,32,61,32,102,101,97,116,117,114,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,105,102,32,40,99,111,110,116,97,105,110,115,71,101,111,109,101,116,114,121,40,102,101,97,116,117,114,101,115,91,105,93,46,103,101,111,109,101,116,114,121,44,32,112,111,105,110,116,41,41,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,99,111,110,116,97,105,110,115,71,101,111,109,101,116,114,121,84,121,112,101,32,61,32,123,92,110,32,32,83,112,104,101,114,101,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,44,92,110,32,32,80,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,112,111,105,110,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,110,116,97,105,110,115,80,111,105,110,116,40,111,98,106,101,99,116,46,99,111,111,114,100,105,110,97,116,101,115,44,32,112,111,105,110,116,41,59,92,110,32,32,125,44,92,110,32,32,77,117,108,116,105,80,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,112,111,105,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,99,111,111,114,100,105,110,97,116,101,115,32,61,32,111,98,106,101,99,116,46,99,111,111,114,100,105,110,97,116,101,115,44,32,105,32,61,32,45,49,44,32,110,32,61,32,99,111,111,114,100,105,110,97,116,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,105,102,32,40,99,111,110,116,97,105,110,115,80,111,105,110,116,40,99,111,111,114,100,105,110,97,116,101,115,91,105,93,44,32,112,111,105,110,116,41,41,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,44,92,110,32,32,76,105,110,101,83,116,114,105,110,103,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,112,111,105,110,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,110,116,97,105,110,115,76,105,110,101,40,111,98,106,101,99,116,46,99,111,111,114,100,105,110,97,116,101,115,44,32,112,111,105,110,116,41,59,92,110,32,32,125,44,92,110,32,32,77,117,108,116,105,76,105,110,101,83,116,114,105,110,103,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,112,111,105,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,99,111,111,114,100,105,110,97,116,101,115,32,61,32,111,98,106,101,99,116,46,99,111,111,114,100,105,110,97,116,101,115,44,32,105,32,61,32,45,49,44,32,110,32,61,32,99,111,111,114,100,105,110,97,116,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,105,102,32,40,99,111,110,116,97,105,110,115,76,105,110,101,40,99,111,111,114,100,105,110,97,116,101,115,91,105,93,44,32,112,111,105,110,116,41,41,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,44,92,110,32,32,80,111,108,121,103,111,110,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,112,111,105,110,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,110,116,97,105,110,115,80,111,108,121,103,111,110,40,111,98,106,101,99,116,46,99,111,111,114,100,105,110,97,116,101,115,44,32,112,111,105,110,116,41,59,92,110,32,32,125,44,92,110,32,32,77,117,108,116,105,80,111,108,121,103,111,110,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,112,111,105,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,99,111,111,114,100,105,110,97,116,101,115,32,61,32,111,98,106,101,99,116,46,99,111,111,114,100,105,110,97,116,101,115,44,32,105,32,61,32,45,49,44,32,110,32,61,32,99,111,111,114,100,105,110,97,116,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,105,102,32,40,99,111,110,116,97,105,110,115,80,111,108,121,103,111,110,40,99,111,111,114,100,105,110,97,116,101,115,91,105,93,44,32,112,111,105,110,116,41,41,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,44,92,110,32,32,71,101,111,109,101,116,114,121,67,111,108,108,101,99,116,105,111,110,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,112,111,105,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,103,101,111,109,101,116,114,105,101,115,32,61,32,111,98,106,101,99,116,46,103,101,111,109,101,116,114,105,101,115,44,32,105,32,61,32,45,49,44,32,110,32,61,32,103,101,111,109,101,116,114,105,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,105,102,32,40,99,111,110,116,97,105,110,115,71,101,111,109,101,116,114,121,40,103,101,111,109,101,116,114,105,101,115,91,105,93,44,32,112,111,105,110,116,41,41,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,110,116,97,105,110,115,71,101,111,109,101,116,114,121,40,103,101,111,109,101,116,114,121,44,32,112,111,105,110,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,101,111,109,101,116,114,121,32,38,38,32,99,111,110,116,97,105,110,115,71,101,111,109,101,116,114,121,84,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,103,101,111,109,101,116,114,121,46,116,121,112,101,41,92,110,32,32,32,32,32,32,63,32,99,111,110,116,97,105,110,115,71,101,111,109,101,116,114,121,84,121,112,101,91,103,101,111,109,101,116,114,121,46,116,121,112,101,93,40,103,101,111,109,101,116,114,121,44,32,112,111,105,110,116,41,92,110,32,32,32,32,32,32,58,32,102,97,108,115,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,110,116,97,105,110,115,80,111,105,110,116,40,99,111,111,114,100,105,110,97,116,101,115,44,32,112,111,105,110,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,100,105,115,116,97,110,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,99,111,111,114,100,105,110,97,116,101,115,44,32,112,111,105,110,116,41,32,61,61,61,32,48,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,110,116,97,105,110,115,76,105,110,101,40,99,111,111,114,100,105,110,97,116,101,115,44,32,112,111,105,110,116,41,32,123,92,110,32,32,118,97,114,32,97,111,44,32,98,111,44,32,97,98,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,99,111,111,114,100,105,110,97,116,101,115,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,105,43,43,41,32,123,92,110,32,32,32,32,98,111,32,61,32,40,48,44,95,100,105,115,116,97,110,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,99,111,111,114,100,105,110,97,116,101,115,91,105,93,44,32,112,111,105,110,116,41,59,92,110,32,32,32,32,105,102,32,40,98,111,32,61,61,61,32,48,41,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,105,102,32,40,105,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,97,98,32,61,32,40,48,44,95,100,105,115,116,97,110,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,99,111,111,114,100,105,110,97,116,101,115,91,105,93,44,32,99,111,111,114,100,105,110,97,116,101,115,91,105,32,45,32,49,93,41,59,92,110,32,32,32,32,32,32,105,102,32,40,92,110,32,32,32,32,32,32,32,32,97,98,32,62,32,48,32,38,38,92,110,32,32,32,32,32,32,32,32,97,111,32,60,61,32,97,98,32,38,38,92,110,32,32,32,32,32,32,32,32,98,111,32,60,61,32,97,98,32,38,38,92,110,32,32,32,32,32,32,32,32,40,97,111,32,43,32,98,111,32,45,32,97,98,41,32,42,32,40,49,32,45,32,77,97,116,104,46,112,111,119,40,40,97,111,32,45,32,98,111,41,32,47,32,97,98,44,32,50,41,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,50,32,42,32,97,98,92,110,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,32,32,32,32,97,111,32,61,32,98,111,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,110,116,97,105,110,115,80,111,108,121,103,111,110,40,99,111,111,114,100,105,110,97,116,101,115,44,32,112,111,105,110,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,33,40,48,44,95,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,99,111,111,114,100,105,110,97,116,101,115,46,109,97,112,40,114,105,110,103,82,97,100,105,97,110,115,41,44,32,112,111,105,110,116,82,97,100,105,97,110,115,40,112,111,105,110,116,41,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,105,110,103,82,97,100,105,97,110,115,40,114,105,110,103,41,32,123,92,110,32,32,114,101,116,117,114,110,32,114,105,110,103,32,61,32,114,105,110,103,46,109,97,112,40,112,111,105,110,116,82,97,100,105,97,110,115,41,44,32,114,105,110,103,46,112,111,112,40,41,44,32,114,105,110,103,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,111,105,110,116,82,97,100,105,97,110,115,40,112,111,105,110,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,112,111,105,110,116,91,48,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,44,32,112,111,105,110,116,91,49,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,93,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,111,98,106,101,99,116,44,32,112,111,105,110,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,111,98,106,101,99,116,32,38,38,32,99,111,110,116,97,105,110,115,79,98,106,101,99,116,84,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,98,106,101,99,116,46,116,121,112,101,41,92,110,32,32,32,32,32,32,63,32,99,111,110,116,97,105,110,115,79,98,106,101,99,116,84,121,112,101,91,111,98,106,101,99,116,46,116,121,112,101,93,92,110,32,32,32,32,32,32,58,32,99,111,110,116,97,105,110,115,71,101,111,109,101,116,114,121,41,40,111,98,106,101,99,116,44,32,112,111,105,110,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,111,110,116,97,105,110,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,100,105,115,116,97,110,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,100,105,115,116,97,110,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,101,110,103,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,101,110,103,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,99,111,111,114,100,105,110,97,116,101,115,32,61,32,91,110,117,108,108,44,32,110,117,108,108,93,44,92,110,32,32,32,32,111,98,106,101,99,116,32,61,32,123,116,121,112,101,58,32,92,34,76,105,110,101,83,116,114,105,110,103,92,34,44,32,99,111,111,114,100,105,110,97,116,101,115,58,32,99,111,111,114,100,105,110,97,116,101,115,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,99,111,111,114,100,105,110,97,116,101,115,91,48,93,32,61,32,97,59,92,110,32,32,99,111,111,114,100,105,110,97,116,101,115,91,49,93,32,61,32,98,59,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,108,101,110,103,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,98,106,101,99,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,100,105,115,116,97,110,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,103,114,97,116,105,99,117,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,103,114,97,116,105,99,117,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,114,97,116,105,99,117,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,114,97,116,105,99,117,108,101,49,48,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,114,97,116,105,99,117,108,101,49,48,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,103,114,97,116,105,99,117,108,101,88,40,121,48,44,32,121,49,44,32,100,121,41,32,123,92,110,32,32,118,97,114,32,121,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,110,103,101,41,40,121,48,44,32,121,49,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,44,32,100,121,41,46,99,111,110,99,97,116,40,121,49,41,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,121,46,109,97,112,40,102,117,110,99,116,105,111,110,40,121,41,32,123,32,114,101,116,117,114,110,32,91,120,44,32,121,93,59,32,125,41,59,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,114,97,116,105,99,117,108,101,89,40,120,48,44,32,120,49,44,32,100,120,41,32,123,92,110,32,32,118,97,114,32,120,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,110,103,101,41,40,120,48,44,32,120,49,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,44,32,100,120,41,46,99,111,110,99,97,116,40,120,49,41,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,121,41,32,123,32,114,101,116,117,114,110,32,120,46,109,97,112,40,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,91,120,44,32,121,93,59,32,125,41,59,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,114,97,116,105,99,117,108,101,40,41,32,123,92,110,32,32,118,97,114,32,120,49,44,32,120,48,44,32,88,49,44,32,88,48,44,92,110,32,32,32,32,32,32,121,49,44,32,121,48,44,32,89,49,44,32,89,48,44,92,110,32,32,32,32,32,32,100,120,32,61,32,49,48,44,32,100,121,32,61,32,100,120,44,32,68,88,32,61,32,57,48,44,32,68,89,32,61,32,51,54,48,44,92,110,32,32,32,32,32,32,120,44,32,121,44,32,88,44,32,89,44,92,110,32,32,32,32,32,32,112,114,101,99,105,115,105,111,110,32,61,32,50,46,53,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,103,114,97,116,105,99,117,108,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,116,121,112,101,58,32,92,34,77,117,108,116,105,76,105,110,101,83,116,114,105,110,103,92,34,44,32,99,111,111,114,100,105,110,97,116,101,115,58,32,108,105,110,101,115,40,41,125,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,108,105,110,101,115,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,110,103,101,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,101,105,108,41,40,88,48,32,47,32,68,88,41,32,42,32,68,88,44,32,88,49,44,32,68,88,41,46,109,97,112,40,88,41,92,110,32,32,32,32,32,32,32,32,46,99,111,110,99,97,116,40,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,110,103,101,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,101,105,108,41,40,89,48,32,47,32,68,89,41,32,42,32,68,89,44,32,89,49,44,32,68,89,41,46,109,97,112,40,89,41,41,92,110,32,32,32,32,32,32,32,32,46,99,111,110,99,97,116,40,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,110,103,101,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,101,105,108,41,40,120,48,32,47,32,100,120,41,32,42,32,100,120,44,32,120,49,44,32,100,120,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,98,115,41,40,120,32,37,32,68,88,41,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,59,32,125,41,46,109,97,112,40,120,41,41,92,110,32,32,32,32,32,32,32,32,46,99,111,110,99,97,116,40,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,110,103,101,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,101,105,108,41,40,121,48,32,47,32,100,121,41,32,42,32,100,121,44,32,121,49,44,32,100,121,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,121,41,32,123,32,114,101,116,117,114,110,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,98,115,41,40,121,32,37,32,68,89,41,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,59,32,125,41,46,109,97,112,40,121,41,41,59,92,110,32,32,125,92,110,92,110,32,32,103,114,97,116,105,99,117,108,101,46,108,105,110,101,115,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,108,105,110,101,115,40,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,99,111,111,114,100,105,110,97,116,101,115,41,32,123,32,114,101,116,117,114,110,32,123,116,121,112,101,58,32,92,34,76,105,110,101,83,116,114,105,110,103,92,34,44,32,99,111,111,114,100,105,110,97,116,101,115,58,32,99,111,111,114,100,105,110,97,116,101,115,125,59,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,103,114,97,116,105,99,117,108,101,46,111,117,116,108,105,110,101,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,92,34,80,111,108,121,103,111,110,92,34,44,92,110,32,32,32,32,32,32,99,111,111,114,100,105,110,97,116,101,115,58,32,91,92,110,32,32,32,32,32,32,32,32,88,40,88,48,41,46,99,111,110,99,97,116,40,92,110,32,32,32,32,32,32,32,32,89,40,89,49,41,46,115,108,105,99,101,40,49,41,44,92,110,32,32,32,32,32,32,32,32,88,40,88,49,41,46,114,101,118,101,114,115,101,40,41,46,115,108,105,99,101,40,49,41,44,92,110,32,32,32,32,32,32,32,32,89,40,89,48,41,46,114,101,118,101,114,115,101,40,41,46,115,108,105,99,101,40,49,41,41,92,110,32,32,32,32,32,32,93,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,103,114,97,116,105,99,117,108,101,46,101,120,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,103,114,97,116,105,99,117,108,101,46,101,120,116,101,110,116,77,105,110,111,114,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,103,114,97,116,105,99,117,108,101,46,101,120,116,101,110,116,77,97,106,111,114,40,95,41,46,101,120,116,101,110,116,77,105,110,111,114,40,95,41,59,92,110,32,32,125,59,92,110,92,110,32,32,103,114,97,116,105,99,117,108,101,46,101,120,116,101,110,116,77,97,106,111,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,91,91,88,48,44,32,89,48,93,44,32,91,88,49,44,32,89,49,93,93,59,92,110,32,32,32,32,88,48,32,61,32,43,95,91,48,93,91,48,93,44,32,88,49,32,61,32,43,95,91,49,93,91,48,93,59,92,110,32,32,32,32,89,48,32,61,32,43,95,91,48,93,91,49,93,44,32,89,49,32,61,32,43,95,91,49,93,91,49,93,59,92,110,32,32,32,32,105,102,32,40,88,48,32,62,32,88,49,41,32,95,32,61,32,88,48,44,32,88,48,32,61,32,88,49,44,32,88,49,32,61,32,95,59,92,110,32,32,32,32,105,102,32,40,89,48,32,62,32,89,49,41,32,95,32,61,32,89,48,44,32,89,48,32,61,32,89,49,44,32,89,49,32,61,32,95,59,92,110,32,32,32,32,114,101,116,117,114,110,32,103,114,97,116,105,99,117,108,101,46,112,114,101,99,105,115,105,111,110,40,112,114,101,99,105,115,105,111,110,41,59,92,110,32,32,125,59,92,110,92,110,32,32,103,114,97,116,105,99,117,108,101,46,101,120,116,101,110,116,77,105,110,111,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,91,91,120,48,44,32,121,48,93,44,32,91,120,49,44,32,121,49,93,93,59,92,110,32,32,32,32,120,48,32,61,32,43,95,91,48,93,91,48,93,44,32,120,49,32,61,32,43,95,91,49,93,91,48,93,59,92,110,32,32,32,32,121,48,32,61,32,43,95,91,48,93,91,49,93,44,32,121,49,32,61,32,43,95,91,49,93,91,49,93,59,92,110,32,32,32,32,105,102,32,40,120,48,32,62,32,120,49,41,32,95,32,61,32,120,48,44,32,120,48,32,61,32,120,49,44,32,120,49,32,61,32,95,59,92,110,32,32,32,32,105,102,32,40,121,48,32,62,32,121,49,41,32,95,32,61,32,121,48,44,32,121,48,32,61,32,121,49,44,32,121,49,32,61,32,95,59,92,110,32,32,32,32,114,101,116,117,114,110,32,103,114,97,116,105,99,117,108,101,46,112,114,101,99,105,115,105,111,110,40,112,114,101,99,105,115,105,111,110,41,59,92,110,32,32,125,59,92,110,92,110,32,32,103,114,97,116,105,99,117,108,101,46,115,116,101,112,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,103,114,97,116,105,99,117,108,101,46,115,116,101,112,77,105,110,111,114,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,103,114,97,116,105,99,117,108,101,46,115,116,101,112,77,97,106,111,114,40,95,41,46,115,116,101,112,77,105,110,111,114,40,95,41,59,92,110,32,32,125,59,92,110,92,110,32,32,103,114,97,116,105,99,117,108,101,46,115,116,101,112,77,97,106,111,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,91,68,88,44,32,68,89,93,59,92,110,32,32,32,32,68,88,32,61,32,43,95,91,48,93,44,32,68,89,32,61,32,43,95,91,49,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,103,114,97,116,105,99,117,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,103,114,97,116,105,99,117,108,101,46,115,116,101,112,77,105,110,111,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,91,100,120,44,32,100,121,93,59,92,110,32,32,32,32,100,120,32,61,32,43,95,91,48,93,44,32,100,121,32,61,32,43,95,91,49,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,103,114,97,116,105,99,117,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,103,114,97,116,105,99,117,108,101,46,112,114,101,99,105,115,105,111,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,112,114,101,99,105,115,105,111,110,59,92,110,32,32,32,32,112,114,101,99,105,115,105,111,110,32,61,32,43,95,59,92,110,32,32,32,32,120,32,61,32,103,114,97,116,105,99,117,108,101,88,40,121,48,44,32,121,49,44,32,57,48,41,59,92,110,32,32,32,32,121,32,61,32,103,114,97,116,105,99,117,108,101,89,40,120,48,44,32,120,49,44,32,112,114,101,99,105,115,105,111,110,41,59,92,110,32,32,32,32,88,32,61,32,103,114,97,116,105,99,117,108,101,88,40,89,48,44,32,89,49,44,32,57,48,41,59,92,110,32,32,32,32,89,32,61,32,103,114,97,116,105,99,117,108,101,89,40,88,48,44,32,88,49,44,32,112,114,101,99,105,115,105,111,110,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,103,114,97,116,105,99,117,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,103,114,97,116,105,99,117,108,101,92,110,32,32,32,32,32,32,46,101,120,116,101,110,116,77,97,106,111,114,40,91,91,45,49,56,48,44,32,45,57,48,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,93,44,32,91,49,56,48,44,32,57,48,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,93,93,41,92,110,32,32,32,32,32,32,46,101,120,116,101,110,116,77,105,110,111,114,40,91,91,45,49,56,48,44,32,45,56,48,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,93,44,32,91,49,56,48,44,32,56,48,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,93,93,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,114,97,116,105,99,117,108,101,49,48,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,114,97,116,105,99,117,108,101,40,41,40,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,103,114,97,116,105,99,117,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,65,108,98,101,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,97,108,98,101,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,65,108,98,101,114,115,85,115,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,97,108,98,101,114,115,85,115,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,65,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,97,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,97,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,97,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,97,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,97,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,97,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,66,111,117,110,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,111,117,110,100,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,101,110,116,114,111,105,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,101,110,116,114,111,105,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,108,105,112,65,110,116,105,109,101,114,105,100,105,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,108,105,112,95,97,110,116,105,109,101,114,105,100,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,108,105,112,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,108,105,112,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,108,105,112,69,120,116,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,108,105,112,95,101,120,116,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,108,105,112,82,101,99,116,97,110,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,108,105,112,95,114,101,99,116,97,110,103,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,111,110,105,99,67,111,110,102,111,114,109,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,99,111,110,105,99,67,111,110,102,111,114,109,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,111,110,105,99,67,111,110,102,111,114,109,97,108,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,99,111,110,105,99,67,111,110,102,111,114,109,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,99,111,110,105,99,67,111,110,102,111,114,109,97,108,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,111,110,105,99,69,113,117,97,108,65,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,99,111,110,105,99,69,113,117,97,108,65,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,111,110,105,99,69,113,117,97,108,65,114,101,97,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,99,111,110,105,99,69,113,117,97,108,65,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,99,111,110,105,99,69,113,117,97,108,65,114,101,97,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,99,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,99,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,99,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,111,110,116,97,105,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,110,116,97,105,110,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,68,105,115,116,97,110,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,115,116,97,110,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,69,113,117,97,108,69,97,114,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,101,113,117,97,108,69,97,114,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,69,113,117,97,108,69,97,114,116,104,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,101,113,117,97,108,69,97,114,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,101,113,117,97,108,69,97,114,116,104,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,69,113,117,105,114,101,99,116,97,110,103,117,108,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,69,113,117,105,114,101,99,116,97,110,103,117,108,97,114,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,71,110,111,109,111,110,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,103,110,111,109,111,110,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,71,110,111,109,111,110,105,99,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,103,110,111,109,111,110,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,103,110,111,109,111,110,105,99,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,71,114,97,116,105,99,117,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,103,114,97,116,105,99,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,71,114,97,116,105,99,117,108,101,49,48,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,103,114,97,116,105,99,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,103,114,97,116,105,99,117,108,101,49,48,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,73,100,101,110,116,105,116,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,105,100,101,110,116,105,116,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,73,110,116,101,114,112,111,108,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,110,116,101,114,112,111,108,97,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,76,101,110,103,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,101,110,103,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,77,101,114,99,97,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,109,101,114,99,97,116,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,77,101,114,99,97,116,111,114,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,109,101,114,99,97,116,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,109,101,114,99,97,116,111,114,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,78,97,116,117,114,97,108,69,97,114,116,104,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,110,97,116,117,114,97,108,69,97,114,116,104,49,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,78,97,116,117,114,97,108,69,97,114,116,104,49,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,110,97,116,117,114,97,108,69,97,114,116,104,49,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,46,110,97,116,117,114,97,108,69,97,114,116,104,49,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,79,114,116,104,111,103,114,97,112,104,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,111,114,116,104,111,103,114,97,112,104,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,79,114,116,104,111,103,114,97,112,104,105,99,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,111,114,116,104,111,103,114,97,112,104,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,46,111,114,116,104,111,103,114,97,112,104,105,99,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,80,97,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,97,116,104,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,80,114,111,106,101,99,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,80,114,111,106,101,99,116,105,111,110,77,117,116,97,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,112,114,111,106,101,99,116,105,111,110,77,117,116,97,116,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,82,111,116,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,114,111,116,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,83,116,101,114,101,111,103,114,97,112,104,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,115,116,101,114,101,111,103,114,97,112,104,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,83,116,101,114,101,111,103,114,97,112,104,105,99,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,115,116,101,114,101,111,103,114,97,112,104,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,46,115,116,101,114,101,111,103,114,97,112,104,105,99,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,83,116,114,101,97,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,84,114,97,110,115,102,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,84,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,116,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,84,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,114,111,106,101,99,116,105,111,110,95,116,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,46,116,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,82,97,119,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,101,97,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,97,114,101,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,111,117,110,100,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,111,117,110,100,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,98,111,117,110,100,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,101,110,116,114,111,105,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,101,110,116,114,111,105,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,101,110,116,114,111,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,105,114,99,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,105,114,99,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,105,112,95,97,110,116,105,109,101,114,105,100,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,108,105,112,47,97,110,116,105,109,101,114,105,100,105,97,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,97,110,116,105,109,101,114,105,100,105,97,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,105,112,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,108,105,112,47,99,105,114,99,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,99,105,114,99,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,105,112,95,101,120,116,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,108,105,112,47,101,120,116,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,101,120,116,101,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,105,112,95,114,101,99,116,97,110,103,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,108,105,112,47,114,101,99,116,97,110,103,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,114,101,99,116,97,110,103,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,116,97,105,110,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,116,97,105,110,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,111,110,116,97,105,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,115,116,97,110,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,115,116,97,110,99,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,100,105,115,116,97,110,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,103,114,97,116,105,99,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,103,114,97,116,105,99,117,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,103,114,97,116,105,99,117,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,112,111,108,97,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,112,111,108,97,116,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,105,110,116,101,114,112,111,108,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,101,110,103,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,101,110,103,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,97,116,104,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,97,116,104,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,97,108,98,101,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,97,108,98,101,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,108,98,101,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,97,108,98,101,114,115,85,115,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,97,108,98,101,114,115,85,115,97,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,108,98,101,114,115,85,115,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,97,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,97,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,99,111,110,105,99,67,111,110,102,111,114,109,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,67,111,110,102,111,114,109,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,67,111,110,102,111,114,109,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,99,111,110,105,99,69,113,117,97,108,65,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,69,113,117,97,108,65,114,101,97,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,69,113,117,97,108,65,114,101,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,99,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,101,113,117,97,108,69,97,114,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,101,113,117,97,108,69,97,114,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,101,113,117,97,108,69,97,114,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,103,110,111,109,111,110,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,103,110,111,109,111,110,105,99,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,103,110,111,109,111,110,105,99,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,105,100,101,110,116,105,116,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,105,100,101,110,116,105,116,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,109,101,114,99,97,116,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,109,101,114,99,97,116,111,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,109,101,114,99,97,116,111,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,110,97,116,117,114,97,108,69,97,114,116,104,49,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,110,97,116,117,114,97,108,69,97,114,116,104,49,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,110,97,116,117,114,97,108,69,97,114,116,104,49,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,111,114,116,104,111,103,114,97,112,104,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,111,114,116,104,111,103,114,97,112,104,105,99,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,111,114,116,104,111,103,114,97,112,104,105,99,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,115,116,101,114,101,111,103,114,97,112,104,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,115,116,101,114,101,111,103,114,97,112,104,105,99,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,115,116,101,114,101,111,103,114,97,112,104,105,99,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,106,101,99,116,105,111,110,95,116,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,106,101,99,116,105,111,110,47,116,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,116,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,111,116,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,111,116,97,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,114,111,116,97,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,101,97,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,115,116,114,101,97,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,97,110,115,102,111,114,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,116,114,97,110,115,102,111,114,109,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,68,69,80,82,69,67,65,84,69,68,33,32,85,115,101,32,100,51,46,103,101,111,73,100,101,110,116,105,116,121,40,41,46,99,108,105,112,69,120,116,101,110,116,40,226,128,166,41,46,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,105,110,116,101,114,112,111,108,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,105,110,116,101,114,112,111,108,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,120,48,32,61,32,97,91,48,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,44,92,110,32,32,32,32,32,32,121,48,32,61,32,97,91,49,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,44,92,110,32,32,32,32,32,32,120,49,32,61,32,98,91,48,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,44,92,110,32,32,32,32,32,32,121,49,32,61,32,98,91,49,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,44,92,110,32,32,32,32,32,32,99,121,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,121,48,41,44,92,110,32,32,32,32,32,32,115,121,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,121,48,41,44,92,110,32,32,32,32,32,32,99,121,49,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,121,49,41,44,92,110,32,32,32,32,32,32,115,121,49,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,121,49,41,44,92,110,32,32,32,32,32,32,107,120,48,32,61,32,99,121,48,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,120,48,41,44,92,110,32,32,32,32,32,32,107,121,48,32,61,32,99,121,48,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,120,48,41,44,92,110,32,32,32,32,32,32,107,120,49,32,61,32,99,121,49,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,120,49,41,44,92,110,32,32,32,32,32,32,107,121,49,32,61,32,99,121,49,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,120,49,41,44,92,110,32,32,32,32,32,32,100,32,61,32,50,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,105,110,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,118,101,114,115,105,110,41,40,121,49,32,45,32,121,48,41,32,43,32,99,121,48,32,42,32,99,121,49,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,118,101,114,115,105,110,41,40,120,49,32,45,32,120,48,41,41,41,44,92,110,32,32,32,32,32,32,107,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,100,41,59,92,110,92,110,32,32,118,97,114,32,105,110,116,101,114,112,111,108,97,116,101,32,61,32,100,32,63,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,118,97,114,32,66,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,116,32,42,61,32,100,41,32,47,32,107,44,92,110,32,32,32,32,32,32,32,32,65,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,100,32,45,32,116,41,32,47,32,107,44,92,110,32,32,32,32,32,32,32,32,120,32,61,32,65,32,42,32,107,120,48,32,43,32,66,32,42,32,107,120,49,44,92,110,32,32,32,32,32,32,32,32,121,32,61,32,65,32,42,32,107,121,48,32,43,32,66,32,42,32,107,121,49,44,92,110,32,32,32,32,32,32,32,32,122,32,61,32,65,32,42,32,115,121,48,32,43,32,66,32,42,32,115,121,49,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,32,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,121,44,32,120,41,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,103,114,101,101,115,44,92,110,32,32,32,32,32,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,122,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,120,32,42,32,120,32,43,32,121,32,42,32,121,41,41,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,103,114,101,101,115,92,110,32,32,32,32,93,59,92,110,32,32,125,32,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,120,48,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,103,114,101,101,115,44,32,121,48,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,103,114,101,101,115,93,59,92,110,32,32,125,59,92,110,92,110,32,32,105,110,116,101,114,112,111,108,97,116,101,46,100,105,115,116,97,110,99,101,32,61,32,100,59,92,110,92,110,32,32,114,101,116,117,114,110,32,105,110,116,101,114,112,111,108,97,116,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,105,110,116,101,114,112,111,108,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,108,101,110,103,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,108,101,110,103,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,100,100,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,100,100,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,97,100,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,111,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,110,111,111,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,101,97,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,115,116,114,101,97,109,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,108,101,110,103,116,104,83,117,109,32,61,32,40,48,44,95,97,100,100,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,92,110,32,32,32,32,108,97,109,98,100,97,48,44,92,110,32,32,32,32,115,105,110,80,104,105,48,44,92,110,32,32,32,32,99,111,115,80,104,105,48,59,92,110,92,110,118,97,114,32,108,101,110,103,116,104,83,116,114,101,97,109,32,61,32,123,92,110,32,32,115,112,104,101,114,101,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,112,111,105,110,116,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,108,101,110,103,116,104,76,105,110,101,83,116,97,114,116,44,92,110,32,32,108,105,110,101,69,110,100,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,112,111,108,121,103,111,110,83,116,97,114,116,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,112,111,108,121,103,111,110,69,110,100,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,108,101,110,103,116,104,76,105,110,101,83,116,97,114,116,40,41,32,123,92,110,32,32,108,101,110,103,116,104,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,108,101,110,103,116,104,80,111,105,110,116,70,105,114,115,116,59,92,110,32,32,108,101,110,103,116,104,83,116,114,101,97,109,46,108,105,110,101,69,110,100,32,61,32,108,101,110,103,116,104,76,105,110,101,69,110,100,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,101,110,103,116,104,76,105,110,101,69,110,100,40,41,32,123,92,110,32,32,108,101,110,103,116,104,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,108,101,110,103,116,104,83,116,114,101,97,109,46,108,105,110,101,69,110,100,32,61,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,101,110,103,116,104,80,111,105,110,116,70,105,114,115,116,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,108,97,109,98,100,97,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,97,100,105,97,110,115,44,32,112,104,105,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,97,100,105,97,110,115,59,92,110,32,32,108,97,109,98,100,97,48,32,61,32,108,97,109,98,100,97,44,32,115,105,110,80,104,105,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,105,110,41,40,112,104,105,41,44,32,99,111,115,80,104,105,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,111,115,41,40,112,104,105,41,59,92,110,32,32,108,101,110,103,116,104,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,108,101,110,103,116,104,80,111,105,110,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,101,110,103,116,104,80,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,108,97,109,98,100,97,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,97,100,105,97,110,115,44,32,112,104,105,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,114,97,100,105,97,110,115,59,92,110,32,32,118,97,114,32,115,105,110,80,104,105,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,105,110,41,40,112,104,105,41,44,92,110,32,32,32,32,32,32,99,111,115,80,104,105,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,111,115,41,40,112,104,105,41,44,92,110,32,32,32,32,32,32,100,101,108,116,97,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,98,115,41,40,108,97,109,98,100,97,32,45,32,108,97,109,98,100,97,48,41,44,92,110,32,32,32,32,32,32,99,111,115,68,101,108,116,97,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,111,115,41,40,100,101,108,116,97,41,44,92,110,32,32,32,32,32,32,115,105,110,68,101,108,116,97,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,105,110,41,40,100,101,108,116,97,41,44,92,110,32,32,32,32,32,32,120,32,61,32,99,111,115,80,104,105,32,42,32,115,105,110,68,101,108,116,97,44,92,110,32,32,32,32,32,32,121,32,61,32,99,111,115,80,104,105,48,32,42,32,115,105,110,80,104,105,32,45,32,115,105,110,80,104,105,48,32,42,32,99,111,115,80,104,105,32,42,32,99,111,115,68,101,108,116,97,44,92,110,32,32,32,32,32,32,122,32,61,32,115,105,110,80,104,105,48,32,42,32,115,105,110,80,104,105,32,43,32,99,111,115,80,104,105,48,32,42,32,99,111,115,80,104,105,32,42,32,99,111,115,68,101,108,116,97,59,92,110,32,32,108,101,110,103,116,104,83,117,109,46,97,100,100,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,116,97,110,50,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,113,114,116,41,40,120,32,42,32,120,32,43,32,121,32,42,32,121,41,44,32,122,41,41,59,92,110,32,32,108,97,109,98,100,97,48,32,61,32,108,97,109,98,100,97,44,32,115,105,110,80,104,105,48,32,61,32,115,105,110,80,104,105,44,32,99,111,115,80,104,105,48,32,61,32,99,111,115,80,104,105,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,111,98,106,101,99,116,41,32,123,92,110,32,32,108,101,110,103,116,104,83,117,109,46,114,101,115,101,116,40,41,59,92,110,32,32,40,48,44,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,98,106,101,99,116,44,32,108,101,110,103,116,104,83,116,114,101,97,109,41,59,92,110,32,32,114,101,116,117,114,110,32,43,108,101,110,103,116,104,83,117,109,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,108,101,110,103,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,98,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,98,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,99,111,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,99,111,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,115,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,115,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,116,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,116,97,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,116,97,110,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,116,97,110,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,101,105,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,101,105,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,103,114,101,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,101,103,114,101,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,112,115,105,108,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,112,115,105,108,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,112,115,105,108,111,110,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,112,115,105,108,111,110,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,120,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,120,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,108,111,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,108,111,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,97,108,102,80,105,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,97,108,102,80,105,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,97,118,101,114,115,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,97,118,101,114,115,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,111,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,105,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,105,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,113,117,97,114,116,101,114,80,105,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,113,117,97,114,116,101,114,80,105,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,100,105,97,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,97,100,105,97,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,105,103,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,105,103,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,113,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,113,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,97,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,97,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,97,117,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,101,112,115,105,108,111,110,32,61,32,49,101,45,54,59,92,110,118,97,114,32,101,112,115,105,108,111,110,50,32,61,32,49,101,45,49,50,59,92,110,118,97,114,32,112,105,32,61,32,77,97,116,104,46,80,73,59,92,110,118,97,114,32,104,97,108,102,80,105,32,61,32,112,105,32,47,32,50,59,92,110,118,97,114,32,113,117,97,114,116,101,114,80,105,32,61,32,112,105,32,47,32,52,59,92,110,118,97,114,32,116,97,117,32,61,32,112,105,32,42,32,50,59,92,110,92,110,118,97,114,32,100,101,103,114,101,101,115,32,61,32,49,56,48,32,47,32,112,105,59,92,110,118,97,114,32,114,97,100,105,97,110,115,32,61,32,112,105,32,47,32,49,56,48,59,92,110,92,110,118,97,114,32,97,98,115,32,61,32,77,97,116,104,46,97,98,115,59,92,110,118,97,114,32,97,116,97,110,32,61,32,77,97,116,104,46,97,116,97,110,59,92,110,118,97,114,32,97,116,97,110,50,32,61,32,77,97,116,104,46,97,116,97,110,50,59,92,110,118,97,114,32,99,111,115,32,61,32,77,97,116,104,46,99,111,115,59,92,110,118,97,114,32,99,101,105,108,32,61,32,77,97,116,104,46,99,101,105,108,59,92,110,118,97,114,32,101,120,112,32,61,32,77,97,116,104,46,101,120,112,59,92,110,118,97,114,32,102,108,111,111,114,32,61,32,77,97,116,104,46,102,108,111,111,114,59,92,110,118,97,114,32,108,111,103,32,61,32,77,97,116,104,46,108,111,103,59,92,110,118,97,114,32,112,111,119,32,61,32,77,97,116,104,46,112,111,119,59,92,110,118,97,114,32,115,105,110,32,61,32,77,97,116,104,46,115,105,110,59,92,110,118,97,114,32,115,105,103,110,32,61,32,77,97,116,104,46,115,105,103,110,32,124,124,32,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,120,32,62,32,48,32,63,32,49,32,58,32,120,32,60,32,48,32,63,32,45,49,32,58,32,48,59,32,125,59,92,110,118,97,114,32,115,113,114,116,32,61,32,77,97,116,104,46,115,113,114,116,59,92,110,118,97,114,32,116,97,110,32,61,32,77,97,116,104,46,116,97,110,59,92,110,92,110,102,117,110,99,116,105,111,110,32,97,99,111,115,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,32,62,32,49,32,63,32,48,32,58,32,120,32,60,32,45,49,32,63,32,112,105,32,58,32,77,97,116,104,46,97,99,111,115,40,120,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,115,105,110,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,32,62,32,49,32,63,32,104,97,108,102,80,105,32,58,32,120,32,60,32,45,49,32,63,32,45,104,97,108,102,80,105,32,58,32,77,97,116,104,46,97,115,105,110,40,120,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,97,118,101,114,115,105,110,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,120,32,61,32,115,105,110,40,120,32,47,32,50,41,41,32,42,32,120,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,110,111,111,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,110,111,111,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,111,111,112,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,110,111,111,112,40,41,32,123,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,110,111,111,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,97,114,101,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,97,114,101,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,100,100,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,97,100,100,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,97,100,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,111,111,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,110,111,111,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,97,114,101,97,83,117,109,32,61,32,40,48,44,95,97,100,100,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,92,110,32,32,32,32,97,114,101,97,82,105,110,103,83,117,109,32,61,32,40,48,44,95,97,100,100,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,92,110,32,32,32,32,120,48,48,44,92,110,32,32,32,32,121,48,48,44,92,110,32,32,32,32,120,48,44,92,110,32,32,32,32,121,48,59,92,110,92,110,118,97,114,32,97,114,101,97,83,116,114,101,97,109,32,61,32,123,92,110,32,32,112,111,105,110,116,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,108,105,110,101,69,110,100,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,112,111,108,121,103,111,110,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,97,114,101,97,83,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,32,61,32,97,114,101,97,82,105,110,103,83,116,97,114,116,59,92,110,32,32,32,32,97,114,101,97,83,116,114,101,97,109,46,108,105,110,101,69,110,100,32,61,32,97,114,101,97,82,105,110,103,69,110,100,59,92,110,32,32,125,44,92,110,32,32,112,111,108,121,103,111,110,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,97,114,101,97,83,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,32,61,32,97,114,101,97,83,116,114,101,97,109,46,108,105,110,101,69,110,100,32,61,32,97,114,101,97,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,32,32,32,32,97,114,101,97,83,117,109,46,97,100,100,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,98,115,41,40,97,114,101,97,82,105,110,103,83,117,109,41,41,59,92,110,32,32,32,32,97,114,101,97,82,105,110,103,83,117,109,46,114,101,115,101,116,40,41,59,92,110,32,32,125,44,92,110,32,32,114,101,115,117,108,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,97,114,101,97,32,61,32,97,114,101,97,83,117,109,32,47,32,50,59,92,110,32,32,32,32,97,114,101,97,83,117,109,46,114,101,115,101,116,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,101,97,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,97,114,101,97,82,105,110,103,83,116,97,114,116,40,41,32,123,92,110,32,32,97,114,101,97,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,97,114,101,97,80,111,105,110,116,70,105,114,115,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,114,101,97,80,111,105,110,116,70,105,114,115,116,40,120,44,32,121,41,32,123,92,110,32,32,97,114,101,97,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,97,114,101,97,80,111,105,110,116,59,92,110,32,32,120,48,48,32,61,32,120,48,32,61,32,120,44,32,121,48,48,32,61,32,121,48,32,61,32,121,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,114,101,97,80,111,105,110,116,40,120,44,32,121,41,32,123,92,110,32,32,97,114,101,97,82,105,110,103,83,117,109,46,97,100,100,40,121,48,32,42,32,120,32,45,32,120,48,32,42,32,121,41,59,92,110,32,32,120,48,32,61,32,120,44,32,121,48,32,61,32,121,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,114,101,97,82,105,110,103,69,110,100,40,41,32,123,92,110,32,32,97,114,101,97,80,111,105,110,116,40,120,48,48,44,32,121,48,48,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,97,114,101,97,83,116,114,101,97,109,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,97,114,101,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,98,111,117,110,100,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,98,111,117,110,100,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,111,111,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,110,111,111,112,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,120,48,32,61,32,73,110,102,105,110,105,116,121,44,92,110,32,32,32,32,121,48,32,61,32,120,48,44,92,110,32,32,32,32,120,49,32,61,32,45,120,48,44,92,110,32,32,32,32,121,49,32,61,32,120,49,59,92,110,92,110,118,97,114,32,98,111,117,110,100,115,83,116,114,101,97,109,32,61,32,123,92,110,32,32,112,111,105,110,116,58,32,98,111,117,110,100,115,80,111,105,110,116,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,108,105,110,101,69,110,100,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,112,111,108,121,103,111,110,83,116,97,114,116,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,112,111,108,121,103,111,110,69,110,100,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,114,101,115,117,108,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,98,111,117,110,100,115,32,61,32,91,91,120,48,44,32,121,48,93,44,32,91,120,49,44,32,121,49,93,93,59,92,110,32,32,32,32,120,49,32,61,32,121,49,32,61,32,45,40,121,48,32,61,32,120,48,32,61,32,73,110,102,105,110,105,116,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,98,111,117,110,100,115,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,98,111,117,110,100,115,80,111,105,110,116,40,120,44,32,121,41,32,123,92,110,32,32,105,102,32,40,120,32,60,32,120,48,41,32,120,48,32,61,32,120,59,92,110,32,32,105,102,32,40,120,32,62,32,120,49,41,32,120,49,32,61,32,120,59,92,110,32,32,105,102,32,40,121,32,60,32,121,48,41,32,121,48,32,61,32,121,59,92,110,32,32,105,102,32,40,121,32,62,32,121,49,41,32,121,49,32,61,32,121,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,98,111,117,110,100,115,83,116,114,101,97,109,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,98,111,117,110,100,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,99,101,110,116,114,111,105,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,99,101,110,116,114,111,105,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,47,47,32,84,79,68,79,32,69,110,102,111,114,99,101,32,112,111,115,105,116,105,118,101,32,97,114,101,97,32,102,111,114,32,101,120,116,101,114,105,111,114,44,32,110,101,103,97,116,105,118,101,32,97,114,101,97,32,102,111,114,32,105,110,116,101,114,105,111,114,63,92,110,92,110,118,97,114,32,88,48,32,61,32,48,44,92,110,32,32,32,32,89,48,32,61,32,48,44,92,110,32,32,32,32,90,48,32,61,32,48,44,92,110,32,32,32,32,88,49,32,61,32,48,44,92,110,32,32,32,32,89,49,32,61,32,48,44,92,110,32,32,32,32,90,49,32,61,32,48,44,92,110,32,32,32,32,88,50,32,61,32,48,44,92,110,32,32,32,32,89,50,32,61,32,48,44,92,110,32,32,32,32,90,50,32,61,32,48,44,92,110,32,32,32,32,120,48,48,44,92,110,32,32,32,32,121,48,48,44,92,110,32,32,32,32,120,48,44,92,110,32,32,32,32,121,48,59,92,110,92,110,118,97,114,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,32,61,32,123,92,110,32,32,112,111,105,110,116,58,32,99,101,110,116,114,111,105,100,80,111,105,110,116,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,99,101,110,116,114,111,105,100,76,105,110,101,83,116,97,114,116,44,92,110,32,32,108,105,110,101,69,110,100,58,32,99,101,110,116,114,111,105,100,76,105,110,101,69,110,100,44,92,110,32,32,112,111,108,121,103,111,110,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,32,61,32,99,101,110,116,114,111,105,100,82,105,110,103,83,116,97,114,116,59,92,110,32,32,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,108,105,110,101,69,110,100,32,61,32,99,101,110,116,114,111,105,100,82,105,110,103,69,110,100,59,92,110,32,32,125,44,92,110,32,32,112,111,108,121,103,111,110,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,99,101,110,116,114,111,105,100,80,111,105,110,116,59,92,110,32,32,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,32,61,32,99,101,110,116,114,111,105,100,76,105,110,101,83,116,97,114,116,59,92,110,32,32,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,108,105,110,101,69,110,100,32,61,32,99,101,110,116,114,111,105,100,76,105,110,101,69,110,100,59,92,110,32,32,125,44,92,110,32,32,114,101,115,117,108,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,99,101,110,116,114,111,105,100,32,61,32,90,50,32,63,32,91,88,50,32,47,32,90,50,44,32,89,50,32,47,32,90,50,93,92,110,32,32,32,32,32,32,32,32,58,32,90,49,32,63,32,91,88,49,32,47,32,90,49,44,32,89,49,32,47,32,90,49,93,92,110,32,32,32,32,32,32,32,32,58,32,90,48,32,63,32,91,88,48,32,47,32,90,48,44,32,89,48,32,47,32,90,48,93,92,110,32,32,32,32,32,32,32,32,58,32,91,78,97,78,44,32,78,97,78,93,59,92,110,32,32,32,32,88,48,32,61,32,89,48,32,61,32,90,48,32,61,92,110,32,32,32,32,88,49,32,61,32,89,49,32,61,32,90,49,32,61,92,110,32,32,32,32,88,50,32,61,32,89,50,32,61,32,90,50,32,61,32,48,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,101,110,116,114,111,105,100,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,80,111,105,110,116,40,120,44,32,121,41,32,123,92,110,32,32,88,48,32,43,61,32,120,59,92,110,32,32,89,48,32,43,61,32,121,59,92,110,32,32,43,43,90,48,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,76,105,110,101,83,116,97,114,116,40,41,32,123,92,110,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,99,101,110,116,114,111,105,100,80,111,105,110,116,70,105,114,115,116,76,105,110,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,80,111,105,110,116,70,105,114,115,116,76,105,110,101,40,120,44,32,121,41,32,123,92,110,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,99,101,110,116,114,111,105,100,80,111,105,110,116,76,105,110,101,59,92,110,32,32,99,101,110,116,114,111,105,100,80,111,105,110,116,40,120,48,32,61,32,120,44,32,121,48,32,61,32,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,80,111,105,110,116,76,105,110,101,40,120,44,32,121,41,32,123,92,110,32,32,118,97,114,32,100,120,32,61,32,120,32,45,32,120,48,44,32,100,121,32,61,32,121,32,45,32,121,48,44,32,122,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,41,59,92,110,32,32,88,49,32,43,61,32,122,32,42,32,40,120,48,32,43,32,120,41,32,47,32,50,59,92,110,32,32,89,49,32,43,61,32,122,32,42,32,40,121,48,32,43,32,121,41,32,47,32,50,59,92,110,32,32,90,49,32,43,61,32,122,59,92,110,32,32,99,101,110,116,114,111,105,100,80,111,105,110,116,40,120,48,32,61,32,120,44,32,121,48,32,61,32,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,76,105,110,101,69,110,100,40,41,32,123,92,110,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,99,101,110,116,114,111,105,100,80,111,105,110,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,82,105,110,103,83,116,97,114,116,40,41,32,123,92,110,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,99,101,110,116,114,111,105,100,80,111,105,110,116,70,105,114,115,116,82,105,110,103,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,82,105,110,103,69,110,100,40,41,32,123,92,110,32,32,99,101,110,116,114,111,105,100,80,111,105,110,116,82,105,110,103,40,120,48,48,44,32,121,48,48,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,80,111,105,110,116,70,105,114,115,116,82,105,110,103,40,120,44,32,121,41,32,123,92,110,32,32,99,101,110,116,114,111,105,100,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,99,101,110,116,114,111,105,100,80,111,105,110,116,82,105,110,103,59,92,110,32,32,99,101,110,116,114,111,105,100,80,111,105,110,116,40,120,48,48,32,61,32,120,48,32,61,32,120,44,32,121,48,48,32,61,32,121,48,32,61,32,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,80,111,105,110,116,82,105,110,103,40,120,44,32,121,41,32,123,92,110,32,32,118,97,114,32,100,120,32,61,32,120,32,45,32,120,48,44,92,110,32,32,32,32,32,32,100,121,32,61,32,121,32,45,32,121,48,44,92,110,32,32,32,32,32,32,122,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,41,59,92,110,92,110,32,32,88,49,32,43,61,32,122,32,42,32,40,120,48,32,43,32,120,41,32,47,32,50,59,92,110,32,32,89,49,32,43,61,32,122,32,42,32,40,121,48,32,43,32,121,41,32,47,32,50,59,92,110,32,32,90,49,32,43,61,32,122,59,92,110,92,110,32,32,122,32,61,32,121,48,32,42,32,120,32,45,32,120,48,32,42,32,121,59,92,110,32,32,88,50,32,43,61,32,122,32,42,32,40,120,48,32,43,32,120,41,59,92,110,32,32,89,50,32,43,61,32,122,32,42,32,40,121,48,32,43,32,121,41,59,92,110,32,32,90,50,32,43,61,32,122,32,42,32,51,59,92,110,32,32,99,101,110,116,114,111,105,100,80,111,105,110,116,40,120,48,32,61,32,120,44,32,121,48,32,61,32,121,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,101,110,116,114,111,105,100,83,116,114,101,97,109,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,99,101,110,116,114,111,105,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,99,111,110,116,101,120,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,99,111,110,116,101,120,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,97,116,104,67,111,110,116,101,120,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,111,111,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,110,111,111,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,80,97,116,104,67,111,110,116,101,120,116,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,125,92,110,92,110,80,97,116,104,67,111,110,116,101,120,116,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,95,114,97,100,105,117,115,58,32,52,46,53,44,92,110,32,32,112,111,105,110,116,82,97,100,105,117,115,58,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,114,97,100,105,117,115,32,61,32,95,44,32,116,104,105,115,59,92,110,32,32,125,44,92,110,32,32,112,111,108,121,103,111,110,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,112,111,108,121,103,111,110,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,78,97,78,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,108,105,110,101,32,61,61,61,32,48,41,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,78,97,78,59,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,48,58,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,44,32,121,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,44,32,121,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,32,43,32,116,104,105,115,46,95,114,97,100,105,117,115,44,32,121,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,97,114,99,40,120,44,32,121,44,32,116,104,105,115,46,95,114,97,100,105,117,115,44,32,48,44,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,115,117,108,116,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,99,111,110,116,101,120,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,100,101,110,116,105,116,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,105,100,101,110,116,105,116,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,115,116,114,101,97,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,115,116,114,101,97,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,101,97,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,97,114,101,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,111,117,110,100,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,111,117,110,100,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,98,111,117,110,100,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,101,110,116,114,111,105,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,101,110,116,114,111,105,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,99,101,110,116,114,111,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,116,101,120,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,116,101,120,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,99,111,110,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,101,97,115,117,114,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,97,115,117,114,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,109,101,97,115,117,114,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,105,110,103,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,112,114,111,106,101,99,116,105,111,110,44,32,99,111,110,116,101,120,116,41,32,123,92,110,32,32,118,97,114,32,112,111,105,110,116,82,97,100,105,117,115,32,61,32,52,46,53,44,92,110,32,32,32,32,32,32,112,114,111,106,101,99,116,105,111,110,83,116,114,101,97,109,44,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,83,116,114,101,97,109,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,116,104,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,105,102,32,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,112,111,105,110,116,82,97,100,105,117,115,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,99,111,110,116,101,120,116,83,116,114,101,97,109,46,112,111,105,110,116,82,97,100,105,117,115,40,43,112,111,105,110,116,82,97,100,105,117,115,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,59,92,110,32,32,32,32,32,32,40,48,44,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,98,106,101,99,116,44,32,112,114,111,106,101,99,116,105,111,110,83,116,114,101,97,109,40,99,111,110,116,101,120,116,83,116,114,101,97,109,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,110,116,101,120,116,83,116,114,101,97,109,46,114,101,115,117,108,116,40,41,59,92,110,32,32,125,92,110,92,110,32,32,112,97,116,104,46,97,114,101,97,32,61,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,40,48,44,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,98,106,101,99,116,44,32,112,114,111,106,101,99,116,105,111,110,83,116,114,101,97,109,40,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,114,101,115,117,108,116,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,112,97,116,104,46,109,101,97,115,117,114,101,32,61,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,40,48,44,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,98,106,101,99,116,44,32,112,114,111,106,101,99,116,105,111,110,83,116,114,101,97,109,40,95,109,101,97,115,117,114,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,95,109,101,97,115,117,114,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,114,101,115,117,108,116,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,112,97,116,104,46,98,111,117,110,100,115,32,61,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,40,48,44,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,98,106,101,99,116,44,32,112,114,111,106,101,99,116,105,111,110,83,116,114,101,97,109,40,95,98,111,117,110,100,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,95,98,111,117,110,100,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,114,101,115,117,108,116,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,112,97,116,104,46,99,101,110,116,114,111,105,100,32,61,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,40,48,44,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,98,106,101,99,116,44,32,112,114,111,106,101,99,116,105,111,110,83,116,114,101,97,109,40,95,99,101,110,116,114,111,105,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,95,99,101,110,116,114,111,105,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,114,101,115,117,108,116,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,112,97,116,104,46,112,114,111,106,101,99,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,114,111,106,101,99,116,105,111,110,83,116,114,101,97,109,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,40,112,114,111,106,101,99,116,105,111,110,32,61,32,110,117,108,108,44,32,95,105,100,101,110,116,105,116,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,32,58,32,40,112,114,111,106,101,99,116,105,111,110,32,61,32,95,41,46,115,116,114,101,97,109,44,32,112,97,116,104,41,32,58,32,112,114,111,106,101,99,116,105,111,110,59,92,110,32,32,125,59,92,110,92,110,32,32,112,97,116,104,46,99,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,99,111,110,116,101,120,116,59,92,110,32,32,32,32,99,111,110,116,101,120,116,83,116,114,101,97,109,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,40,99,111,110,116,101,120,116,32,61,32,110,117,108,108,44,32,110,101,119,32,95,115,116,114,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,32,58,32,110,101,119,32,95,99,111,110,116,101,120,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,99,111,110,116,101,120,116,32,61,32,95,41,59,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,112,111,105,110,116,82,97,100,105,117,115,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,99,111,110,116,101,120,116,83,116,114,101,97,109,46,112,111,105,110,116,82,97,100,105,117,115,40,112,111,105,110,116,82,97,100,105,117,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,97,116,104,59,92,110,32,32,125,59,92,110,92,110,32,32,112,97,116,104,46,112,111,105,110,116,82,97,100,105,117,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,112,111,105,110,116,82,97,100,105,117,115,59,92,110,32,32,32,32,112,111,105,110,116,82,97,100,105,117,115,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,99,111,110,116,101,120,116,83,116,114,101,97,109,46,112,111,105,110,116,82,97,100,105,117,115,40,43,95,41,44,32,43,95,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,97,116,104,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,112,97,116,104,46,112,114,111,106,101,99,116,105,111,110,40,112,114,111,106,101,99,116,105,111,110,41,46,99,111,110,116,101,120,116,40,99,111,110,116,101,120,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,109,101,97,115,117,114,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,109,101,97,115,117,114,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,100,100,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,97,100,100,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,97,100,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,111,111,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,110,111,111,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,108,101,110,103,116,104,83,117,109,32,61,32,40,48,44,95,97,100,100,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,92,110,32,32,32,32,108,101,110,103,116,104,82,105,110,103,44,92,110,32,32,32,32,120,48,48,44,92,110,32,32,32,32,121,48,48,44,92,110,32,32,32,32,120,48,44,92,110,32,32,32,32,121,48,59,92,110,92,110,118,97,114,32,108,101,110,103,116,104,83,116,114,101,97,109,32,61,32,123,92,110,32,32,112,111,105,110,116,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,108,101,110,103,116,104,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,108,101,110,103,116,104,80,111,105,110,116,70,105,114,115,116,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,105,102,32,40,108,101,110,103,116,104,82,105,110,103,41,32,108,101,110,103,116,104,80,111,105,110,116,40,120,48,48,44,32,121,48,48,41,59,92,110,32,32,32,32,108,101,110,103,116,104,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,32,32,125,44,92,110,32,32,112,111,108,121,103,111,110,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,108,101,110,103,116,104,82,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,125,44,92,110,32,32,112,111,108,121,103,111,110,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,108,101,110,103,116,104,82,105,110,103,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,114,101,115,117,108,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,43,108,101,110,103,116,104,83,117,109,59,92,110,32,32,32,32,108,101,110,103,116,104,83,117,109,46,114,101,115,101,116,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,108,101,110,103,116,104,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,108,101,110,103,116,104,80,111,105,110,116,70,105,114,115,116,40,120,44,32,121,41,32,123,92,110,32,32,108,101,110,103,116,104,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,108,101,110,103,116,104,80,111,105,110,116,59,92,110,32,32,120,48,48,32,61,32,120,48,32,61,32,120,44,32,121,48,48,32,61,32,121,48,32,61,32,121,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,101,110,103,116,104,80,111,105,110,116,40,120,44,32,121,41,32,123,92,110,32,32,120,48,32,45,61,32,120,44,32,121,48,32,45,61,32,121,59,92,110,32,32,108,101,110,103,116,104,83,117,109,46,97,100,100,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,113,114,116,41,40,120,48,32,42,32,120,48,32,43,32,121,48,32,42,32,121,48,41,41,59,92,110,32,32,120,48,32,61,32,120,44,32,121,48,32,61,32,121,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,108,101,110,103,116,104,83,116,114,101,97,109,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,109,101,97,115,117,114,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,115,116,114,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,115,116,114,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,97,116,104,83,116,114,105,110,103,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,80,97,116,104,83,116,114,105,110,103,40,41,32,123,92,110,32,32,116,104,105,115,46,95,115,116,114,105,110,103,32,61,32,91,93,59,92,110,125,92,110,92,110,80,97,116,104,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,95,114,97,100,105,117,115,58,32,52,46,53,44,92,110,32,32,95,99,105,114,99,108,101,58,32,99,105,114,99,108,101,40,52,46,53,41,44,92,110,32,32,112,111,105,110,116,82,97,100,105,117,115,58,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,40,95,32,61,32,43,95,41,32,33,61,61,32,116,104,105,115,46,95,114,97,100,105,117,115,41,32,116,104,105,115,46,95,114,97,100,105,117,115,32,61,32,95,44,32,116,104,105,115,46,95,99,105,114,99,108,101,32,61,32,110,117,108,108,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,44,92,110,32,32,112,111,108,121,103,111,110,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,112,111,108,121,103,111,110,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,78,97,78,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,108,105,110,101,32,61,61,61,32,48,41,32,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,92,34,90,92,34,41,59,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,78,97,78,59,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,48,58,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,92,34,77,92,34,44,32,120,44,32,92,34,44,92,34,44,32,121,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,92,34,76,92,34,44,32,120,44,32,92,34,44,92,34,44,32,121,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,99,105,114,99,108,101,32,61,61,32,110,117,108,108,41,32,116,104,105,115,46,95,99,105,114,99,108,101,32,61,32,99,105,114,99,108,101,40,116,104,105,115,46,95,114,97,100,105,117,115,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,92,34,77,92,34,44,32,120,44,32,92,34,44,92,34,44,32,121,44,32,116,104,105,115,46,95,99,105,114,99,108,101,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,115,117,108,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,115,116,114,105,110,103,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,116,104,105,115,46,95,115,116,114,105,110,103,46,106,111,105,110,40,92,34,92,34,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,115,116,114,105,110,103,32,61,32,91,93,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,105,114,99,108,101,40,114,97,100,105,117,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,92,34,109,48,44,92,34,32,43,32,114,97,100,105,117,115,92,110,32,32,32,32,32,32,43,32,92,34,97,92,34,32,43,32,114,97,100,105,117,115,32,43,32,92,34,44,92,34,32,43,32,114,97,100,105,117,115,32,43,32,92,34,32,48,32,49,44,49,32,48,44,92,34,32,43,32,45,50,32,42,32,114,97,100,105,117,115,92,110,32,32,32,32,32,32,43,32,92,34,97,92,34,32,43,32,114,97,100,105,117,115,32,43,32,92,34,44,92,34,32,43,32,114,97,100,105,117,115,32,43,32,92,34,32,48,32,49,44,49,32,48,44,92,34,32,43,32,50,32,42,32,114,97,100,105,117,115,92,110,32,32,32,32,32,32,43,32,92,34,122,92,34,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,115,116,114,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,111,105,110,116,69,113,117,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,111,105,110,116,69,113,117,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,97,91,48,93,32,45,32,98,91,48,93,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,32,38,38,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,97,91,49,93,32,45,32,98,91,49,93,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,111,105,110,116,69,113,117,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,100,100,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,100,100,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,97,100,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,116,101,115,105,97,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,97,114,116,101,115,105,97,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,115,117,109,32,61,32,40,48,44,95,97,100,100,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,108,111,110,103,105,116,117,100,101,40,112,111,105,110,116,41,32,123,92,110,32,32,105,102,32,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,98,115,41,40,112,111,105,110,116,91,48,93,41,32,60,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,41,92,110,32,32,32,32,114,101,116,117,114,110,32,112,111,105,110,116,91,48,93,59,92,110,32,32,101,108,115,101,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,103,110,41,40,112,111,105,110,116,91,48,93,41,32,42,32,40,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,98,115,41,40,112,111,105,110,116,91,48,93,41,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,41,32,37,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,97,117,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,112,111,108,121,103,111,110,44,32,112,111,105,110,116,41,32,123,92,110,32,32,118,97,114,32,108,97,109,98,100,97,32,61,32,108,111,110,103,105,116,117,100,101,40,112,111,105,110,116,41,44,92,110,32,32,32,32,32,32,112,104,105,32,61,32,112,111,105,110,116,91,49,93,44,92,110,32,32,32,32,32,32,115,105,110,80,104,105,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,112,104,105,41,44,92,110,32,32,32,32,32,32,110,111,114,109,97,108,32,61,32,91,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,108,97,109,98,100,97,41,44,32,45,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,108,97,109,98,100,97,41,44,32,48,93,44,92,110,32,32,32,32,32,32,97,110,103,108,101,32,61,32,48,44,92,110,32,32,32,32,32,32,119,105,110,100,105,110,103,32,61,32,48,59,92,110,92,110,32,32,115,117,109,46,114,101,115,101,116,40,41,59,92,110,92,110,32,32,105,102,32,40,115,105,110,80,104,105,32,61,61,61,32,49,41,32,112,104,105,32,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,104,97,108,102,80,105,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,59,92,110,32,32,101,108,115,101,32,105,102,32,40,115,105,110,80,104,105,32,61,61,61,32,45,49,41,32,112,104,105,32,61,32,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,104,97,108,102,80,105,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,112,111,108,121,103,111,110,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,109,32,61,32,40,114,105,110,103,32,61,32,112,111,108,121,103,111,110,91,105,93,41,46,108,101,110,103,116,104,41,41,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,118,97,114,32,114,105,110,103,44,92,110,32,32,32,32,32,32,32,32,109,44,92,110,32,32,32,32,32,32,32,32,112,111,105,110,116,48,32,61,32,114,105,110,103,91,109,32,45,32,49,93,44,92,110,32,32,32,32,32,32,32,32,108,97,109,98,100,97,48,32,61,32,108,111,110,103,105,116,117,100,101,40,112,111,105,110,116,48,41,44,92,110,32,32,32,32,32,32,32,32,112,104,105,48,32,61,32,112,111,105,110,116,48,91,49,93,32,47,32,50,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,113,117,97,114,116,101,114,80,105,44,92,110,32,32,32,32,32,32,32,32,115,105,110,80,104,105,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,112,104,105,48,41,44,92,110,32,32,32,32,32,32,32,32,99,111,115,80,104,105,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,112,104,105,48,41,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,44,32,108,97,109,98,100,97,48,32,61,32,108,97,109,98,100,97,49,44,32,115,105,110,80,104,105,48,32,61,32,115,105,110,80,104,105,49,44,32,99,111,115,80,104,105,48,32,61,32,99,111,115,80,104,105,49,44,32,112,111,105,110,116,48,32,61,32,112,111,105,110,116,49,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,111,105,110,116,49,32,61,32,114,105,110,103,91,106,93,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,109,98,100,97,49,32,61,32,108,111,110,103,105,116,117,100,101,40,112,111,105,110,116,49,41,44,92,110,32,32,32,32,32,32,32,32,32,32,112,104,105,49,32,61,32,112,111,105,110,116,49,91,49,93,32,47,32,50,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,113,117,97,114,116,101,114,80,105,44,92,110,32,32,32,32,32,32,32,32,32,32,115,105,110,80,104,105,49,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,112,104,105,49,41,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,115,80,104,105,49,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,112,104,105,49,41,44,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,116,97,32,61,32,108,97,109,98,100,97,49,32,45,32,108,97,109,98,100,97,48,44,92,110,32,32,32,32,32,32,32,32,32,32,115,105,103,110,32,61,32,100,101,108,116,97,32,62,61,32,48,32,63,32,49,32,58,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,97,98,115,68,101,108,116,97,32,61,32,115,105,103,110,32,42,32,100,101,108,116,97,44,92,110,32,32,32,32,32,32,32,32,32,32,97,110,116,105,109,101,114,105,100,105,97,110,32,61,32,97,98,115,68,101,108,116,97,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,105,44,92,110,32,32,32,32,32,32,32,32,32,32,107,32,61,32,115,105,110,80,104,105,48,32,42,32,115,105,110,80,104,105,49,59,92,110,92,110,32,32,32,32,32,32,115,117,109,46,97,100,100,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,116,97,110,50,41,40,107,32,42,32,115,105,103,110,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,97,98,115,68,101,108,116,97,41,44,32,99,111,115,80,104,105,48,32,42,32,99,111,115,80,104,105,49,32,43,32,107,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,97,98,115,68,101,108,116,97,41,41,41,59,92,110,32,32,32,32,32,32,97,110,103,108,101,32,43,61,32,97,110,116,105,109,101,114,105,100,105,97,110,32,63,32,100,101,108,116,97,32,43,32,115,105,103,110,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,97,117,32,58,32,100,101,108,116,97,59,92,110,92,110,32,32,32,32,32,32,47,47,32,65,114,101,32,116,104,101,32,108,111,110,103,105,116,117,100,101,115,32,101,105,116,104,101,114,32,115,105,100,101,32,111,102,32,116,104,101,32,112,111,105,110,116,226,128,153,115,32,109,101,114,105,100,105,97,110,32,40,108,97,109,98,100,97,41,44,92,110,32,32,32,32,32,32,47,47,32,97,110,100,32,97,114,101,32,116,104,101,32,108,97,116,105,116,117,100,101,115,32,115,109,97,108,108,101,114,32,116,104,97,110,32,116,104,101,32,112,97,114,97,108,108,101,108,32,40,112,104,105,41,63,92,110,32,32,32,32,32,32,105,102,32,40,97,110,116,105,109,101,114,105,100,105,97,110,32,94,32,108,97,109,98,100,97,48,32,62,61,32,108,97,109,98,100,97,32,94,32,108,97,109,98,100,97,49,32,62,61,32,108,97,109,98,100,97,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,99,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,97,114,116,101,115,105,97,110,67,114,111,115,115,41,40,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,97,114,116,101,115,105,97,110,41,40,112,111,105,110,116,48,41,44,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,97,114,116,101,115,105,97,110,41,40,112,111,105,110,116,49,41,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,97,114,116,101,115,105,97,110,78,111,114,109,97,108,105,122,101,73,110,80,108,97,99,101,41,40,97,114,99,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,116,101,114,115,101,99,116,105,111,110,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,97,114,116,101,115,105,97,110,67,114,111,115,115,41,40,110,111,114,109,97,108,44,32,97,114,99,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,97,114,116,101,115,105,97,110,78,111,114,109,97,108,105,122,101,73,110,80,108,97,99,101,41,40,105,110,116,101,114,115,101,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,104,105,65,114,99,32,61,32,40,97,110,116,105,109,101,114,105,100,105,97,110,32,94,32,100,101,108,116,97,32,62,61,32,48,32,63,32,45,49,32,58,32,49,41,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,115,105,110,41,40,105,110,116,101,114,115,101,99,116,105,111,110,91,50,93,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,104,105,32,62,32,112,104,105,65,114,99,32,124,124,32,112,104,105,32,61,61,61,32,112,104,105,65,114,99,32,38,38,32,40,97,114,99,91,48,93,32,124,124,32,97,114,99,91,49,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,110,100,105,110,103,32,43,61,32,97,110,116,105,109,101,114,105,100,105,97,110,32,94,32,100,101,108,116,97,32,62,61,32,48,32,63,32,49,32,58,32,45,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,70,105,114,115,116,44,32,100,101,116,101,114,109,105,110,101,32,119,104,101,116,104,101,114,32,116,104,101,32,83,111,117,116,104,32,112,111,108,101,32,105,115,32,105,110,115,105,100,101,32,111,114,32,111,117,116,115,105,100,101,58,92,110,32,32,47,47,92,110,32,32,47,47,32,73,116,32,105,115,32,105,110,115,105,100,101,32,105,102,58,92,110,32,32,47,47,32,42,32,116,104,101,32,112,111,108,121,103,111,110,32,119,105,110,100,115,32,97,114,111,117,110,100,32,105,116,32,105,110,32,97,32,99,108,111,99,107,119,105,115,101,32,100,105,114,101,99,116,105,111,110,46,92,110,32,32,47,47,32,42,32,116,104,101,32,112,111,108,121,103,111,110,32,100,111,101,115,32,110,111,116,32,40,99,117,109,117,108,97,116,105,118,101,108,121,41,32,119,105,110,100,32,97,114,111,117,110,100,32,105,116,44,32,98,117,116,32,104,97,115,32,97,32,110,101,103,97,116,105,118,101,92,110,32,32,47,47,32,32,32,40,99,111,117,110,116,101,114,45,99,108,111,99,107,119,105,115,101,41,32,97,114,101,97,46,92,110,32,32,47,47,92,110,32,32,47,47,32,83,101,99,111,110,100,44,32,99,111,117,110,116,32,116,104,101,32,40,115,105,103,110,101,100,41,32,110,117,109,98,101,114,32,111,102,32,116,105,109,101,115,32,97,32,115,101,103,109,101,110,116,32,99,114,111,115,115,101,115,32,97,32,108,97,109,98,100,97,92,110,32,32,47,47,32,102,114,111,109,32,116,104,101,32,112,111,105,110,116,32,116,111,32,116,104,101,32,83,111,117,116,104,32,112,111,108,101,46,32,32,73,102,32,105,116,32,105,115,32,122,101,114,111,44,32,116,104,101,110,32,116,104,101,32,112,111,105,110,116,32,105,115,32,116,104,101,92,110,32,32,47,47,32,115,97,109,101,32,115,105,100,101,32,97,115,32,116,104,101,32,83,111,117,116,104,32,112,111,108,101,46,92,110,92,110,32,32,114,101,116,117,114,110,32,40,97,110,103,108,101,32,60,32,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,124,124,32,97,110,103,108,101,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,38,38,32,115,117,109,32,60,32,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,41,32,94,32,40,119,105,110,100,105,110,103,32,38,32,49,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,108,98,101,114,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,108,98,101,114,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,105,99,69,113,117,97,108,65,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,105,99,69,113,117,97,108,65,114,101,97,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,69,113,117,97,108,65,114,101,97,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,99,111,110,105,99,69,113,117,97,108,65,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,92,110,32,32,32,32,32,32,46,112,97,114,97,108,108,101,108,115,40,91,50,57,46,53,44,32,52,53,46,53,93,41,92,110,32,32,32,32,32,32,46,115,99,97,108,101,40,49,48,55,48,41,92,110,32,32,32,32,32,32,46,116,114,97,110,115,108,97,116,101,40,91,52,56,48,44,32,50,53,48,93,41,92,110,32,32,32,32,32,32,46,114,111,116,97,116,101,40,91,57,54,44,32,48,93,41,92,110,32,32,32,32,32,32,46,99,101,110,116,101,114,40,91,45,48,46,54,44,32,51,56,46,55,93,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,108,98,101,114,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,108,98,101,114,115,85,115,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,108,98,101,114,115,85,115,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,108,98,101,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,108,98,101,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,108,98,101,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,105,99,69,113,117,97,108,65,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,105,99,69,113,117,97,108,65,114,101,97,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,69,113,117,97,108,65,114,101,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,105,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,102,105,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,47,32,84,104,101,32,112,114,111,106,101,99,116,105,111,110,115,32,109,117,115,116,32,104,97,118,101,32,109,117,116,117,97,108,108,121,32,101,120,99,108,117,115,105,118,101,32,99,108,105,112,32,114,101,103,105,111,110,115,32,111,110,32,116,104,101,32,115,112,104,101,114,101,44,92,110,47,47,32,97,115,32,116,104,105,115,32,119,105,108,108,32,97,118,111,105,100,32,101,109,105,116,116,105,110,103,32,105,110,116,101,114,108,101,97,118,105,110,103,32,108,105,110,101,115,32,97,110,100,32,112,111,108,121,103,111,110,115,46,92,110,102,117,110,99,116,105,111,110,32,109,117,108,116,105,112,108,101,120,40,115,116,114,101,97,109,115,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,115,116,114,101,97,109,115,46,108,101,110,103,116,104,59,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,32,118,97,114,32,105,32,61,32,45,49,59,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,115,116,114,101,97,109,115,91,105,93,46,112,111,105,110,116,40,120,44,32,121,41,59,32,125,44,92,110,32,32,32,32,115,112,104,101,114,101,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,118,97,114,32,105,32,61,32,45,49,59,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,115,116,114,101,97,109,115,91,105,93,46,115,112,104,101,114,101,40,41,59,32,125,44,92,110,32,32,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,118,97,114,32,105,32,61,32,45,49,59,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,115,116,114,101,97,109,115,91,105,93,46,108,105,110,101,83,116,97,114,116,40,41,59,32,125,44,92,110,32,32,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,118,97,114,32,105,32,61,32,45,49,59,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,115,116,114,101,97,109,115,91,105,93,46,108,105,110,101,69,110,100,40,41,59,32,125,44,92,110,32,32,32,32,112,111,108,121,103,111,110,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,118,97,114,32,105,32,61,32,45,49,59,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,115,116,114,101,97,109,115,91,105,93,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,59,32,125,44,92,110,32,32,32,32,112,111,108,121,103,111,110,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,118,97,114,32,105,32,61,32,45,49,59,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,115,116,114,101,97,109,115,91,105,93,46,112,111,108,121,103,111,110,69,110,100,40,41,59,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,47,47,32,65,32,99,111,109,112,111,115,105,116,101,32,112,114,111,106,101,99,116,105,111,110,32,102,111,114,32,116,104,101,32,85,110,105,116,101,100,32,83,116,97,116,101,115,44,32,99,111,110,102,105,103,117,114,101,100,32,98,121,32,100,101,102,97,117,108,116,32,102,111,114,92,110,47,47,32,57,54,48,195,151,53,48,48,46,32,84,104,101,32,112,114,111,106,101,99,116,105,111,110,32,97,108,115,111,32,119,111,114,107,115,32,113,117,105,116,101,32,119,101,108,108,32,97,116,32,57,54,48,195,151,54,48,48,32,105,102,32,121,111,117,32,99,104,97,110,103,101,32,116,104,101,92,110,47,47,32,115,99,97,108,101,32,116,111,32,49,50,56,53,32,97,110,100,32,97,100,106,117,115,116,32,116,104,101,32,116,114,97,110,115,108,97,116,101,32,97,99,99,111,114,100,105,110,103,108,121,46,32,84,104,101,32,115,101,116,32,111,102,32,115,116,97,110,100,97,114,100,92,110,47,47,32,112,97,114,97,108,108,101,108,115,32,102,111,114,32,101,97,99,104,32,114,101,103,105,111,110,32,99,111,109,101,115,32,102,114,111,109,32,85,83,71,83,44,32,119,104,105,99,104,32,105,115,32,112,117,98,108,105,115,104,101,100,32,104,101,114,101,58,92,110,47,47,32,104,116,116,112,58,47,47,101,103,115,99,46,117,115,103,115,46,103,111,118,47,105,115,98,47,112,117,98,115,47,77,97,112,80,114,111,106,101,99,116,105,111,110,115,47,112,114,111,106,101,99,116,105,111,110,115,46,104,116,109,108,35,97,108,98,101,114,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,99,97,99,104,101,44,92,110,32,32,32,32,32,32,99,97,99,104,101,83,116,114,101,97,109,44,92,110,32,32,32,32,32,32,108,111,119,101,114,52,56,32,61,32,40,48,44,95,97,108,98,101,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,44,32,108,111,119,101,114,52,56,80,111,105,110,116,44,92,110,32,32,32,32,32,32,97,108,97,115,107,97,32,61,32,40,48,44,95,99,111,110,105,99,69,113,117,97,108,65,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,46,114,111,116,97,116,101,40,91,49,53,52,44,32,48,93,41,46,99,101,110,116,101,114,40,91,45,50,44,32,53,56,46,53,93,41,46,112,97,114,97,108,108,101,108,115,40,91,53,53,44,32,54,53,93,41,44,32,97,108,97,115,107,97,80,111,105,110,116,44,32,47,47,32,69,80,83,71,58,51,51,51,56,92,110,32,32,32,32,32,32,104,97,119,97,105,105,32,61,32,40,48,44,95,99,111,110,105,99,69,113,117,97,108,65,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,46,114,111,116,97,116,101,40,91,49,53,55,44,32,48,93,41,46,99,101,110,116,101,114,40,91,45,51,44,32,49,57,46,57,93,41,46,112,97,114,97,108,108,101,108,115,40,91,56,44,32,49,56,93,41,44,32,104,97,119,97,105,105,80,111,105,110,116,44,32,47,47,32,69,83,82,73,58,49,48,50,48,48,55,92,110,32,32,32,32,32,32,112,111,105,110,116,44,32,112,111,105,110,116,83,116,114,101,97,109,32,61,32,123,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,32,112,111,105,110,116,32,61,32,91,120,44,32,121,93,59,32,125,125,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,97,108,98,101,114,115,85,115,97,40,99,111,111,114,100,105,110,97,116,101,115,41,32,123,92,110,32,32,32,32,118,97,114,32,120,32,61,32,99,111,111,114,100,105,110,97,116,101,115,91,48,93,44,32,121,32,61,32,99,111,111,114,100,105,110,97,116,101,115,91,49,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,111,105,110,116,32,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,40,108,111,119,101,114,52,56,80,111,105,110,116,46,112,111,105,110,116,40,120,44,32,121,41,44,32,112,111,105,110,116,41,92,110,32,32,32,32,32,32,32,32,124,124,32,40,97,108,97,115,107,97,80,111,105,110,116,46,112,111,105,110,116,40,120,44,32,121,41,44,32,112,111,105,110,116,41,92,110,32,32,32,32,32,32,32,32,124,124,32,40,104,97,119,97,105,105,80,111,105,110,116,46,112,111,105,110,116,40,120,44,32,121,41,44,32,112,111,105,110,116,41,59,92,110,32,32,125,92,110,92,110,32,32,97,108,98,101,114,115,85,115,97,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,99,111,111,114,100,105,110,97,116,101,115,41,32,123,92,110,32,32,32,32,118,97,114,32,107,32,61,32,108,111,119,101,114,52,56,46,115,99,97,108,101,40,41,44,92,110,32,32,32,32,32,32,32,32,116,32,61,32,108,111,119,101,114,52,56,46,116,114,97,110,115,108,97,116,101,40,41,44,92,110,32,32,32,32,32,32,32,32,120,32,61,32,40,99,111,111,114,100,105,110,97,116,101,115,91,48,93,32,45,32,116,91,48,93,41,32,47,32,107,44,92,110,32,32,32,32,32,32,32,32,121,32,61,32,40,99,111,111,114,100,105,110,97,116,101,115,91,49,93,32,45,32,116,91,49,93,41,32,47,32,107,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,121,32,62,61,32,48,46,49,50,48,32,38,38,32,121,32,60,32,48,46,50,51,52,32,38,38,32,120,32,62,61,32,45,48,46,52,50,53,32,38,38,32,120,32,60,32,45,48,46,50,49,52,32,63,32,97,108,97,115,107,97,92,110,32,32,32,32,32,32,32,32,58,32,121,32,62,61,32,48,46,49,54,54,32,38,38,32,121,32,60,32,48,46,50,51,52,32,38,38,32,120,32,62,61,32,45,48,46,50,49,52,32,38,38,32,120,32,60,32,45,48,46,49,49,53,32,63,32,104,97,119,97,105,105,92,110,32,32,32,32,32,32,32,32,58,32,108,111,119,101,114,52,56,41,46,105,110,118,101,114,116,40,99,111,111,114,100,105,110,97,116,101,115,41,59,92,110,32,32,125,59,92,110,92,110,32,32,97,108,98,101,114,115,85,115,97,46,115,116,114,101,97,109,32,61,32,102,117,110,99,116,105,111,110,40,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,97,99,104,101,32,38,38,32,99,97,99,104,101,83,116,114,101,97,109,32,61,61,61,32,115,116,114,101,97,109,32,63,32,99,97,99,104,101,32,58,32,99,97,99,104,101,32,61,32,109,117,108,116,105,112,108,101,120,40,91,108,111,119,101,114,52,56,46,115,116,114,101,97,109,40,99,97,99,104,101,83,116,114,101,97,109,32,61,32,115,116,114,101,97,109,41,44,32,97,108,97,115,107,97,46,115,116,114,101,97,109,40,115,116,114,101,97,109,41,44,32,104,97,119,97,105,105,46,115,116,114,101,97,109,40,115,116,114,101,97,109,41,93,41,59,92,110,32,32,125,59,92,110,92,110,32,32,97,108,98,101,114,115,85,115,97,46,112,114,101,99,105,115,105,111,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,108,111,119,101,114,52,56,46,112,114,101,99,105,115,105,111,110,40,41,59,92,110,32,32,32,32,108,111,119,101,114,52,56,46,112,114,101,99,105,115,105,111,110,40,95,41,44,32,97,108,97,115,107,97,46,112,114,101,99,105,115,105,111,110,40,95,41,44,32,104,97,119,97,105,105,46,112,114,101,99,105,115,105,111,110,40,95,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,101,116,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,97,108,98,101,114,115,85,115,97,46,115,99,97,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,108,111,119,101,114,52,56,46,115,99,97,108,101,40,41,59,92,110,32,32,32,32,108,111,119,101,114,52,56,46,115,99,97,108,101,40,95,41,44,32,97,108,97,115,107,97,46,115,99,97,108,101,40,95,32,42,32,48,46,51,53,41,44,32,104,97,119,97,105,105,46,115,99,97,108,101,40,95,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,97,108,98,101,114,115,85,115,97,46,116,114,97,110,115,108,97,116,101,40,108,111,119,101,114,52,56,46,116,114,97,110,115,108,97,116,101,40,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,97,108,98,101,114,115,85,115,97,46,116,114,97,110,115,108,97,116,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,108,111,119,101,114,52,56,46,116,114,97,110,115,108,97,116,101,40,41,59,92,110,32,32,32,32,118,97,114,32,107,32,61,32,108,111,119,101,114,52,56,46,115,99,97,108,101,40,41,44,32,120,32,61,32,43,95,91,48,93,44,32,121,32,61,32,43,95,91,49,93,59,92,110,92,110,32,32,32,32,108,111,119,101,114,52,56,80,111,105,110,116,32,61,32,108,111,119,101,114,52,56,92,110,32,32,32,32,32,32,32,32,46,116,114,97,110,115,108,97,116,101,40,95,41,92,110,32,32,32,32,32,32,32,32,46,99,108,105,112,69,120,116,101,110,116,40,91,91,120,32,45,32,48,46,52,53,53,32,42,32,107,44,32,121,32,45,32,48,46,50,51,56,32,42,32,107,93,44,32,91,120,32,43,32,48,46,52,53,53,32,42,32,107,44,32,121,32,43,32,48,46,50,51,56,32,42,32,107,93,93,41,92,110,32,32,32,32,32,32,32,32,46,115,116,114,101,97,109,40,112,111,105,110,116,83,116,114,101,97,109,41,59,92,110,92,110,32,32,32,32,97,108,97,115,107,97,80,111,105,110,116,32,61,32,97,108,97,115,107,97,92,110,32,32,32,32,32,32,32,32,46,116,114,97,110,115,108,97,116,101,40,91,120,32,45,32,48,46,51,48,55,32,42,32,107,44,32,121,32,43,32,48,46,50,48,49,32,42,32,107,93,41,92,110,32,32,32,32,32,32,32,32,46,99,108,105,112,69,120,116,101,110,116,40,91,91,120,32,45,32,48,46,52,50,53,32,42,32,107,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,112,115,105,108,111,110,44,32,121,32,43,32,48,46,49,50,48,32,42,32,107,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,112,115,105,108,111,110,93,44,32,91,120,32,45,32,48,46,50,49,52,32,42,32,107,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,112,115,105,108,111,110,44,32,121,32,43,32,48,46,50,51,52,32,42,32,107,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,112,115,105,108,111,110,93,93,41,92,110,32,32,32,32,32,32,32,32,46,115,116,114,101,97,109,40,112,111,105,110,116,83,116,114,101,97,109,41,59,92,110,92,110,32,32,32,32,104,97,119,97,105,105,80,111,105,110,116,32,61,32,104,97,119,97,105,105,92,110,32,32,32,32,32,32,32,32,46,116,114,97,110,115,108,97,116,101,40,91,120,32,45,32,48,46,50,48,53,32,42,32,107,44,32,121,32,43,32,48,46,50,49,50,32,42,32,107,93,41,92,110,32,32,32,32,32,32,32,32,46,99,108,105,112,69,120,116,101,110,116,40,91,91,120,32,45,32,48,46,50,49,52,32,42,32,107,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,112,115,105,108,111,110,44,32,121,32,43,32,48,46,49,54,54,32,42,32,107,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,112,115,105,108,111,110,93,44,32,91,120,32,45,32,48,46,49,49,53,32,42,32,107,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,112,115,105,108,111,110,44,32,121,32,43,32,48,46,50,51,52,32,42,32,107,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,112,115,105,108,111,110,93,93,41,92,110,32,32,32,32,32,32,32,32,46,115,116,114,101,97,109,40,112,111,105,110,116,83,116,114,101,97,109,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,101,116,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,97,108,98,101,114,115,85,115,97,46,102,105,116,69,120,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,101,120,116,101,110,116,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,102,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,102,105,116,69,120,116,101,110,116,41,40,97,108,98,101,114,115,85,115,97,44,32,101,120,116,101,110,116,44,32,111,98,106,101,99,116,41,59,92,110,32,32,125,59,92,110,92,110,32,32,97,108,98,101,114,115,85,115,97,46,102,105,116,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,115,105,122,101,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,102,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,102,105,116,83,105,122,101,41,40,97,108,98,101,114,115,85,115,97,44,32,115,105,122,101,44,32,111,98,106,101,99,116,41,59,92,110,32,32,125,59,92,110,92,110,32,32,97,108,98,101,114,115,85,115,97,46,102,105,116,87,105,100,116,104,32,61,32,102,117,110,99,116,105,111,110,40,119,105,100,116,104,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,102,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,102,105,116,87,105,100,116,104,41,40,97,108,98,101,114,115,85,115,97,44,32,119,105,100,116,104,44,32,111,98,106,101,99,116,41,59,92,110,32,32,125,59,92,110,92,110,32,32,97,108,98,101,114,115,85,115,97,46,102,105,116,72,101,105,103,104,116,32,61,32,102,117,110,99,116,105,111,110,40,104,101,105,103,104,116,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,102,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,102,105,116,72,101,105,103,104,116,41,40,97,108,98,101,114,115,85,115,97,44,32,104,101,105,103,104,116,44,32,111,98,106,101,99,116,41,59,92,110,32,32,125,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,115,101,116,40,41,32,123,92,110,32,32,32,32,99,97,99,104,101,32,61,32,99,97,99,104,101,83,116,114,101,97,109,32,61,32,110,117,108,108,59,92,110,32,32,32,32,114,101,116,117,114,110,32,97,108,98,101,114,115,85,115,97,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,97,108,98,101,114,115,85,115,97,46,115,99,97,108,101,40,49,48,55,48,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,108,98,101,114,115,85,115,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,122,105,109,117,116,104,97,108,73,110,118,101,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,122,105,109,117,116,104,97,108,73,110,118,101,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,122,105,109,117,116,104,97,108,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,122,105,109,117,116,104,97,108,82,97,119,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,97,122,105,109,117,116,104,97,108,82,97,119,40,115,99,97,108,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,118,97,114,32,99,120,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,120,41,44,92,110,32,32,32,32,32,32,32,32,99,121,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,121,41,44,92,110,32,32,32,32,32,32,32,32,107,32,61,32,115,99,97,108,101,40,99,120,32,42,32,99,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,32,32,107,32,42,32,99,121,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,120,41,44,92,110,32,32,32,32,32,32,107,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,121,41,92,110,32,32,32,32,93,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,122,105,109,117,116,104,97,108,73,110,118,101,114,116,40,97,110,103,108,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,118,97,114,32,122,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,120,32,42,32,120,32,43,32,121,32,42,32,121,41,44,92,110,32,32,32,32,32,32,32,32,99,32,61,32,97,110,103,108,101,40,122,41,44,92,110,32,32,32,32,32,32,32,32,115,99,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,99,41,44,92,110,32,32,32,32,32,32,32,32,99,99,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,99,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,32,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,120,32,42,32,115,99,44,32,122,32,42,32,99,99,41,44,92,110,32,32,32,32,32,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,105,110,41,40,122,32,38,38,32,121,32,42,32,115,99,32,47,32,122,41,92,110,32,32,32,32,93,59,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,122,105,109,117,116,104,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,122,105,109,117,116,104,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,97,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,82,97,119,32,61,32,40,48,44,95,97,122,105,109,117,116,104,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,122,105,109,117,116,104,97,108,82,97,119,41,40,102,117,110,99,116,105,111,110,40,99,120,99,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,113,114,116,41,40,50,32,47,32,40,49,32,43,32,99,120,99,121,41,41,59,92,110,125,41,59,92,110,92,110,97,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,82,97,119,46,105,110,118,101,114,116,32,61,32,40,48,44,95,97,122,105,109,117,116,104,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,122,105,109,117,116,104,97,108,73,110,118,101,114,116,41,40,102,117,110,99,116,105,111,110,40,122,41,32,123,92,110,32,32,114,101,116,117,114,110,32,50,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,115,105,110,41,40,122,32,47,32,50,41,59,92,110,125,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,97,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,82,97,119,41,92,110,32,32,32,32,32,32,46,115,99,97,108,101,40,49,50,52,46,55,53,41,92,110,32,32,32,32,32,32,46,99,108,105,112,65,110,103,108,101,40,49,56,48,32,45,32,49,101,45,51,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,122,105,109,117,116,104,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,122,105,109,117,116,104,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,97,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,82,97,119,32,61,32,40,48,44,95,97,122,105,109,117,116,104,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,122,105,109,117,116,104,97,108,82,97,119,41,40,102,117,110,99,116,105,111,110,40,99,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,99,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,99,111,115,41,40,99,41,41,32,38,38,32,99,32,47,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,99,41,59,92,110,125,41,59,92,110,92,110,97,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,82,97,119,46,105,110,118,101,114,116,32,61,32,40,48,44,95,97,122,105,109,117,116,104,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,122,105,109,117,116,104,97,108,73,110,118,101,114,116,41,40,102,117,110,99,116,105,111,110,40,122,41,32,123,92,110,32,32,114,101,116,117,114,110,32,122,59,92,110,125,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,97,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,82,97,119,41,92,110,32,32,32,32,32,32,46,115,99,97,108,101,40,55,57,46,52,49,56,56,41,92,110,32,32,32,32,32,32,46,99,108,105,112,65,110,103,108,101,40,49,56,48,32,45,32,49,101,45,51,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,110,105,99,80,114,111,106,101,99,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,110,105,99,80,114,111,106,101,99,116,105,111,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,110,105,99,80,114,111,106,101,99,116,105,111,110,40,112,114,111,106,101,99,116,65,116,41,32,123,92,110,32,32,118,97,114,32,112,104,105,48,32,61,32,48,44,92,110,32,32,32,32,32,32,112,104,105,49,32,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,32,47,32,51,44,92,110,32,32,32,32,32,32,109,32,61,32,40,48,44,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,114,111,106,101,99,116,105,111,110,77,117,116,97,116,111,114,41,40,112,114,111,106,101,99,116,65,116,41,44,92,110,32,32,32,32,32,32,112,32,61,32,109,40,112,104,105,48,44,32,112,104,105,49,41,59,92,110,92,110,32,32,112,46,112,97,114,97,108,108,101,108,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,109,40,112,104,105,48,32,61,32,95,91,48,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,44,32,112,104,105,49,32,61,32,95,91,49,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,41,32,58,32,91,112,104,105,48,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,103,114,101,101,115,44,32,112,104,105,49,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,103,114,101,101,115,93,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,112,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,67,111,110,102,111,114,109,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,67,111,110,102,111,114,109,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,110,105,99,67,111,110,102,111,114,109,97,108,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,110,105,99,67,111,110,102,111,114,109,97,108,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,105,99,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,101,114,99,97,116,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,114,99,97,116,111,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,109,101,114,99,97,116,111,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,116,97,110,121,40,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,110,41,40,40,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,108,102,80,105,32,43,32,121,41,32,47,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,110,105,99,67,111,110,102,111,114,109,97,108,82,97,119,40,121,48,44,32,121,49,41,32,123,92,110,32,32,118,97,114,32,99,121,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,121,48,41,44,92,110,32,32,32,32,32,32,110,32,61,32,121,48,32,61,61,61,32,121,49,32,63,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,121,48,41,32,58,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,108,111,103,41,40,99,121,48,32,47,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,121,49,41,41,32,47,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,108,111,103,41,40,116,97,110,121,40,121,49,41,32,47,32,116,97,110,121,40,121,48,41,41,44,92,110,32,32,32,32,32,32,102,32,61,32,99,121,48,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,111,119,41,40,116,97,110,121,40,121,48,41,44,32,110,41,32,47,32,110,59,92,110,92,110,32,32,105,102,32,40,33,110,41,32,114,101,116,117,114,110,32,95,109,101,114,99,97,116,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,101,114,99,97,116,111,114,82,97,119,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,114,111,106,101,99,116,40,120,44,32,121,41,32,123,92,110,32,32,32,32,105,102,32,40,102,32,62,32,48,41,32,123,32,105,102,32,40,121,32,60,32,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,108,102,80,105,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,121,32,61,32,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,108,102,80,105,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,59,32,125,92,110,32,32,32,32,101,108,115,101,32,123,32,105,102,32,40,121,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,108,102,80,105,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,121,32,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,108,102,80,105,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,59,32,125,92,110,32,32,32,32,118,97,114,32,114,32,61,32,102,32,47,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,111,119,41,40,116,97,110,121,40,121,41,44,32,110,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,114,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,110,32,42,32,120,41,44,32,102,32,45,32,114,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,110,32,42,32,120,41,93,59,92,110,32,32,125,92,110,92,110,32,32,112,114,111,106,101,99,116,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,118,97,114,32,102,121,32,61,32,102,32,45,32,121,44,32,114,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,103,110,41,40,110,41,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,120,32,42,32,120,32,43,32,102,121,32,42,32,102,121,41,44,92,110,32,32,32,32,32,32,108,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,120,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,102,121,41,41,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,103,110,41,40,102,121,41,59,92,110,32,32,32,32,105,102,32,40,102,121,32,42,32,110,32,60,32,48,41,92,110,32,32,32,32,32,32,108,32,45,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,103,110,41,40,120,41,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,103,110,41,40,102,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,108,32,47,32,110,44,32,50,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,111,119,41,40,102,32,47,32,114,44,32,49,32,47,32,110,41,41,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,108,102,80,105,93,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,112,114,111,106,101,99,116,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,99,111,110,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,111,110,105,99,80,114,111,106,101,99,116,105,111,110,41,40,99,111,110,105,99,67,111,110,102,111,114,109,97,108,82,97,119,41,92,110,32,32,32,32,32,32,46,115,99,97,108,101,40,49,48,57,46,53,41,92,110,32,32,32,32,32,32,46,112,97,114,97,108,108,101,108,115,40,91,51,48,44,32,51,48,93,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,67,111,110,102,111,114,109,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,69,113,117,97,108,65,114,101,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,69,113,117,97,108,65,114,101,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,110,105,99,69,113,117,97,108,65,114,101,97,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,110,105,99,69,113,117,97,108,65,114,101,97,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,105,99,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,121,108,105,110,100,114,105,99,97,108,69,113,117,97,108,65,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,121,108,105,110,100,114,105,99,97,108,69,113,117,97,108,65,114,101,97,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,121,108,105,110,100,114,105,99,97,108,69,113,117,97,108,65,114,101,97,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,110,105,99,69,113,117,97,108,65,114,101,97,82,97,119,40,121,48,44,32,121,49,41,32,123,92,110,32,32,118,97,114,32,115,121,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,121,48,41,44,32,110,32,61,32,40,115,121,48,32,43,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,121,49,41,41,32,47,32,50,59,92,110,92,110,32,32,47,47,32,65,114,101,32,116,104,101,32,112,97,114,97,108,108,101,108,115,32,115,121,109,109,101,116,114,105,99,97,108,32,97,114,111,117,110,100,32,116,104,101,32,69,113,117,97,116,111,114,63,92,110,32,32,105,102,32,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,110,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,114,101,116,117,114,110,32,40,48,44,95,99,121,108,105,110,100,114,105,99,97,108,69,113,117,97,108,65,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,121,108,105,110,100,114,105,99,97,108,69,113,117,97,108,65,114,101,97,82,97,119,41,40,121,48,41,59,92,110,92,110,32,32,118,97,114,32,99,32,61,32,49,32,43,32,115,121,48,32,42,32,40,50,32,42,32,110,32,45,32,115,121,48,41,44,32,114,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,99,41,32,47,32,110,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,114,111,106,101,99,116,40,120,44,32,121,41,32,123,92,110,32,32,32,32,118,97,114,32,114,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,99,32,45,32,50,32,42,32,110,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,121,41,41,32,47,32,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,114,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,120,32,42,61,32,110,41,44,32,114,48,32,45,32,114,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,120,41,93,59,92,110,32,32,125,92,110,92,110,32,32,112,114,111,106,101,99,116,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,118,97,114,32,114,48,121,32,61,32,114,48,32,45,32,121,44,92,110,32,32,32,32,32,32,32,32,108,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,120,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,114,48,121,41,41,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,103,110,41,40,114,48,121,41,59,92,110,32,32,32,32,105,102,32,40,114,48,121,32,42,32,110,32,60,32,48,41,92,110,32,32,32,32,32,32,108,32,45,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,103,110,41,40,120,41,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,103,110,41,40,114,48,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,108,32,47,32,110,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,105,110,41,40,40,99,32,45,32,40,120,32,42,32,120,32,43,32,114,48,121,32,42,32,114,48,121,41,32,42,32,110,32,42,32,110,41,32,47,32,40,50,32,42,32,110,41,41,93,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,112,114,111,106,101,99,116,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,99,111,110,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,111,110,105,99,80,114,111,106,101,99,116,105,111,110,41,40,99,111,110,105,99,69,113,117,97,108,65,114,101,97,82,97,119,41,92,110,32,32,32,32,32,32,46,115,99,97,108,101,40,49,53,53,46,52,50,52,41,92,110,32,32,32,32,32,32,46,99,101,110,116,101,114,40,91,48,44,32,51,51,46,54,52,52,50,93,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,69,113,117,97,108,65,114,101,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,105,99,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,82,97,119,40,121,48,44,32,121,49,41,32,123,92,110,32,32,118,97,114,32,99,121,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,121,48,41,44,92,110,32,32,32,32,32,32,110,32,61,32,121,48,32,61,61,61,32,121,49,32,63,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,121,48,41,32,58,32,40,99,121,48,32,45,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,121,49,41,41,32,47,32,40,121,49,32,45,32,121,48,41,44,92,110,32,32,32,32,32,32,103,32,61,32,99,121,48,32,47,32,110,32,43,32,121,48,59,92,110,92,110,32,32,105,102,32,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,110,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,114,101,116,117,114,110,32,95,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,82,97,119,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,114,111,106,101,99,116,40,120,44,32,121,41,32,123,92,110,32,32,32,32,118,97,114,32,103,121,32,61,32,103,32,45,32,121,44,32,110,120,32,61,32,110,32,42,32,120,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,103,121,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,110,120,41,44,32,103,32,45,32,103,121,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,110,120,41,93,59,92,110,32,32,125,92,110,92,110,32,32,112,114,111,106,101,99,116,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,118,97,114,32,103,121,32,61,32,103,32,45,32,121,44,92,110,32,32,32,32,32,32,32,32,108,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,120,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,103,121,41,41,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,103,110,41,40,103,121,41,59,92,110,32,32,32,32,105,102,32,40,103,121,32,42,32,110,32,60,32,48,41,92,110,32,32,32,32,32,32,108,32,45,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,103,110,41,40,120,41,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,103,110,41,40,103,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,108,32,47,32,110,44,32,103,32,45,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,103,110,41,40,110,41,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,120,32,42,32,120,32,43,32,103,121,32,42,32,103,121,41,93,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,112,114,111,106,101,99,116,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,99,111,110,105,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,111,110,105,99,80,114,111,106,101,99,116,105,111,110,41,40,99,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,82,97,119,41,92,110,32,32,32,32,32,32,46,115,99,97,108,101,40,49,51,49,46,49,53,52,41,92,110,32,32,32,32,32,32,46,99,101,110,116,101,114,40,91,48,44,32,49,51,46,57,51,56,57,93,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,121,108,105,110,100,114,105,99,97,108,69,113,117,97,108,65,114,101,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,121,108,105,110,100,114,105,99,97,108,69,113,117,97,108,65,114,101,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,121,108,105,110,100,114,105,99,97,108,69,113,117,97,108,65,114,101,97,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,121,108,105,110,100,114,105,99,97,108,69,113,117,97,108,65,114,101,97,82,97,119,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,99,121,108,105,110,100,114,105,99,97,108,69,113,117,97,108,65,114,101,97,82,97,119,40,112,104,105,48,41,32,123,92,110,32,32,118,97,114,32,99,111,115,80,104,105,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,112,104,105,48,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,119,97,114,100,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,108,97,109,98,100,97,32,42,32,99,111,115,80,104,105,48,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,112,104,105,41,32,47,32,99,111,115,80,104,105,48,93,59,92,110,32,32,125,92,110,92,110,32,32,102,111,114,119,97,114,100,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,120,32,47,32,99,111,115,80,104,105,48,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,105,110,41,40,121,32,42,32,99,111,115,80,104,105,48,41,93,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,111,114,119,97,114,100,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,99,121,108,105,110,100,114,105,99,97,108,69,113,117,97,108,65,114,101,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,101,113,117,97,108,69,97,114,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,101,113,117,97,108,69,97,114,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,113,117,97,108,69,97,114,116,104,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,113,117,97,108,69,97,114,116,104,82,97,119,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,65,49,32,61,32,49,46,51,52,48,50,54,52,44,92,110,32,32,32,32,65,50,32,61,32,45,48,46,48,56,49,49,48,54,44,92,110,32,32,32,32,65,51,32,61,32,48,46,48,48,48,56,57,51,44,92,110,32,32,32,32,65,52,32,61,32,48,46,48,48,51,55,57,54,44,92,110,32,32,32,32,77,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,51,41,32,47,32,50,44,92,110,32,32,32,32,105,116,101,114,97,116,105,111,110,115,32,61,32,49,50,59,92,110,92,110,102,117,110,99,116,105,111,110,32,101,113,117,97,108,69,97,114,116,104,82,97,119,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,118,97,114,32,108,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,105,110,41,40,77,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,112,104,105,41,41,44,32,108,50,32,61,32,108,32,42,32,108,44,32,108,54,32,61,32,108,50,32,42,32,108,50,32,42,32,108,50,59,92,110,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,108,97,109,98,100,97,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,108,41,32,47,32,40,77,32,42,32,40,65,49,32,43,32,51,32,42,32,65,50,32,42,32,108,50,32,43,32,108,54,32,42,32,40,55,32,42,32,65,51,32,43,32,57,32,42,32,65,52,32,42,32,108,50,41,41,41,44,92,110,32,32,32,32,108,32,42,32,40,65,49,32,43,32,65,50,32,42,32,108,50,32,43,32,108,54,32,42,32,40,65,51,32,43,32,65,52,32,42,32,108,50,41,41,92,110,32,32,93,59,92,110,125,92,110,92,110,101,113,117,97,108,69,97,114,116,104,82,97,119,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,118,97,114,32,108,32,61,32,121,44,32,108,50,32,61,32,108,32,42,32,108,44,32,108,54,32,61,32,108,50,32,42,32,108,50,32,42,32,108,50,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,100,101,108,116,97,44,32,102,121,44,32,102,112,121,59,32,105,32,60,32,105,116,101,114,97,116,105,111,110,115,59,32,43,43,105,41,32,123,92,110,32,32,32,32,102,121,32,61,32,108,32,42,32,40,65,49,32,43,32,65,50,32,42,32,108,50,32,43,32,108,54,32,42,32,40,65,51,32,43,32,65,52,32,42,32,108,50,41,41,32,45,32,121,59,92,110,32,32,32,32,102,112,121,32,61,32,65,49,32,43,32,51,32,42,32,65,50,32,42,32,108,50,32,43,32,108,54,32,42,32,40,55,32,42,32,65,51,32,43,32,57,32,42,32,65,52,32,42,32,108,50,41,59,92,110,32,32,32,32,108,32,45,61,32,100,101,108,116,97,32,61,32,102,121,32,47,32,102,112,121,44,32,108,50,32,61,32,108,32,42,32,108,44,32,108,54,32,61,32,108,50,32,42,32,108,50,32,42,32,108,50,59,92,110,32,32,32,32,105,102,32,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,100,101,108,116,97,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,50,41,32,98,114,101,97,107,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,77,32,42,32,120,32,42,32,40,65,49,32,43,32,51,32,42,32,65,50,32,42,32,108,50,32,43,32,108,54,32,42,32,40,55,32,42,32,65,51,32,43,32,57,32,42,32,65,52,32,42,32,108,50,41,41,32,47,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,108,41,44,92,110,32,32,32,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,105,110,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,108,41,32,47,32,77,41,92,110,32,32,93,59,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,101,113,117,97,108,69,97,114,116,104,82,97,119,41,92,110,32,32,32,32,32,32,46,115,99,97,108,101,40,49,55,55,46,49,53,56,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,101,113,117,97,108,69,97,114,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,82,97,119,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,82,97,119,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,108,97,109,98,100,97,44,32,112,104,105,93,59,92,110,125,92,110,92,110,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,82,97,119,46,105,110,118,101,114,116,32,61,32,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,82,97,119,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,82,97,119,41,92,110,32,32,32,32,32,32,46,115,99,97,108,101,40,49,53,50,46,54,51,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,101,113,117,105,114,101,99,116,97,110,103,117,108,97,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,102,105,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,102,105,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,105,116,69,120,116,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,105,116,69,120,116,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,105,116,72,101,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,105,116,72,101,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,105,116,83,105,122,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,105,116,83,105,122,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,105,116,87,105,100,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,105,116,87,105,100,116,104,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,115,116,114,101,97,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,115,116,114,101,97,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,97,116,104,95,98,111,117,110,100,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,112,97,116,104,47,98,111,117,110,100,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,97,116,104,47,98,111,117,110,100,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,102,105,116,40,112,114,111,106,101,99,116,105,111,110,44,32,102,105,116,66,111,117,110,100,115,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,118,97,114,32,99,108,105,112,32,61,32,112,114,111,106,101,99,116,105,111,110,46,99,108,105,112,69,120,116,101,110,116,32,38,38,32,112,114,111,106,101,99,116,105,111,110,46,99,108,105,112,69,120,116,101,110,116,40,41,59,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,115,99,97,108,101,40,49,53,48,41,46,116,114,97,110,115,108,97,116,101,40,91,48,44,32,48,93,41,59,92,110,32,32,105,102,32,40,99,108,105,112,32,33,61,32,110,117,108,108,41,32,112,114,111,106,101,99,116,105,111,110,46,99,108,105,112,69,120,116,101,110,116,40,110,117,108,108,41,59,92,110,32,32,40,48,44,95,115,116,114,101,97,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,98,106,101,99,116,44,32,112,114,111,106,101,99,116,105,111,110,46,115,116,114,101,97,109,40,95,112,97,116,104,95,98,111,117,110,100,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,41,59,92,110,32,32,102,105,116,66,111,117,110,100,115,40,95,112,97,116,104,95,98,111,117,110,100,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,114,101,115,117,108,116,40,41,41,59,92,110,32,32,105,102,32,40,99,108,105,112,32,33,61,32,110,117,108,108,41,32,112,114,111,106,101,99,116,105,111,110,46,99,108,105,112,69,120,116,101,110,116,40,99,108,105,112,41,59,92,110,32,32,114,101,116,117,114,110,32,112,114,111,106,101,99,116,105,111,110,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,105,116,69,120,116,101,110,116,40,112,114,111,106,101,99,116,105,111,110,44,32,101,120,116,101,110,116,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,105,116,40,112,114,111,106,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,98,41,32,123,92,110,32,32,32,32,118,97,114,32,119,32,61,32,101,120,116,101,110,116,91,49,93,91,48,93,32,45,32,101,120,116,101,110,116,91,48,93,91,48,93,44,92,110,32,32,32,32,32,32,32,32,104,32,61,32,101,120,116,101,110,116,91,49,93,91,49,93,32,45,32,101,120,116,101,110,116,91,48,93,91,49,93,44,92,110,32,32,32,32,32,32,32,32,107,32,61,32,77,97,116,104,46,109,105,110,40,119,32,47,32,40,98,91,49,93,91,48,93,32,45,32,98,91,48,93,91,48,93,41,44,32,104,32,47,32,40,98,91,49,93,91,49,93,32,45,32,98,91,48,93,91,49,93,41,41,44,92,110,32,32,32,32,32,32,32,32,120,32,61,32,43,101,120,116,101,110,116,91,48,93,91,48,93,32,43,32,40,119,32,45,32,107,32,42,32,40,98,91,49,93,91,48,93,32,43,32,98,91,48,93,91,48,93,41,41,32,47,32,50,44,92,110,32,32,32,32,32,32,32,32,121,32,61,32,43,101,120,116,101,110,116,91,48,93,91,49,93,32,43,32,40,104,32,45,32,107,32,42,32,40,98,91,49,93,91,49,93,32,43,32,98,91,48,93,91,49,93,41,41,32,47,32,50,59,92,110,32,32,32,32,112,114,111,106,101,99,116,105,111,110,46,115,99,97,108,101,40,49,53,48,32,42,32,107,41,46,116,114,97,110,115,108,97,116,101,40,91,120,44,32,121,93,41,59,92,110,32,32,125,44,32,111,98,106,101,99,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,105,116,83,105,122,101,40,112,114,111,106,101,99,116,105,111,110,44,32,115,105,122,101,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,105,116,69,120,116,101,110,116,40,112,114,111,106,101,99,116,105,111,110,44,32,91,91,48,44,32,48,93,44,32,115,105,122,101,93,44,32,111,98,106,101,99,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,105,116,87,105,100,116,104,40,112,114,111,106,101,99,116,105,111,110,44,32,119,105,100,116,104,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,105,116,40,112,114,111,106,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,98,41,32,123,92,110,32,32,32,32,118,97,114,32,119,32,61,32,43,119,105,100,116,104,44,92,110,32,32,32,32,32,32,32,32,107,32,61,32,119,32,47,32,40,98,91,49,93,91,48,93,32,45,32,98,91,48,93,91,48,93,41,44,92,110,32,32,32,32,32,32,32,32,120,32,61,32,40,119,32,45,32,107,32,42,32,40,98,91,49,93,91,48,93,32,43,32,98,91,48,93,91,48,93,41,41,32,47,32,50,44,92,110,32,32,32,32,32,32,32,32,121,32,61,32,45,107,32,42,32,98,91,48,93,91,49,93,59,92,110,32,32,32,32,112,114,111,106,101,99,116,105,111,110,46,115,99,97,108,101,40,49,53,48,32,42,32,107,41,46,116,114,97,110,115,108,97,116,101,40,91,120,44,32,121,93,41,59,92,110,32,32,125,44,32,111,98,106,101,99,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,105,116,72,101,105,103,104,116,40,112,114,111,106,101,99,116,105,111,110,44,32,104,101,105,103,104,116,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,105,116,40,112,114,111,106,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,98,41,32,123,92,110,32,32,32,32,118,97,114,32,104,32,61,32,43,104,101,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,107,32,61,32,104,32,47,32,40,98,91,49,93,91,49,93,32,45,32,98,91,48,93,91,49,93,41,44,92,110,32,32,32,32,32,32,32,32,120,32,61,32,45,107,32,42,32,98,91,48,93,91,48,93,44,92,110,32,32,32,32,32,32,32,32,121,32,61,32,40,104,32,45,32,107,32,42,32,40,98,91,49,93,91,49,93,32,43,32,98,91,48,93,91,49,93,41,41,32,47,32,50,59,92,110,32,32,32,32,112,114,111,106,101,99,116,105,111,110,46,115,99,97,108,101,40,49,53,48,32,42,32,107,41,46,116,114,97,110,115,108,97,116,101,40,91,120,44,32,121,93,41,59,92,110,32,32,125,44,32,111,98,106,101,99,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,102,105,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,103,110,111,109,111,110,105,99,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,103,110,111,109,111,110,105,99,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,110,111,109,111,110,105,99,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,110,111,109,111,110,105,99,82,97,119,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,122,105,109,117,116,104,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,122,105,109,117,116,104,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,103,110,111,109,111,110,105,99,82,97,119,40,120,44,32,121,41,32,123,92,110,32,32,118,97,114,32,99,121,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,121,41,44,32,107,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,120,41,32,42,32,99,121,59,92,110,32,32,114,101,116,117,114,110,32,91,99,121,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,120,41,32,47,32,107,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,121,41,32,47,32,107,93,59,92,110,125,92,110,92,110,103,110,111,109,111,110,105,99,82,97,119,46,105,110,118,101,114,116,32,61,32,40,48,44,95,97,122,105,109,117,116,104,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,122,105,109,117,116,104,97,108,73,110,118,101,114,116,41,40,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,103,110,111,109,111,110,105,99,82,97,119,41,92,110,32,32,32,32,32,32,46,115,99,97,108,101,40,49,52,52,46,48,52,57,41,92,110,32,32,32,32,32,32,46,99,108,105,112,65,110,103,108,101,40,54,48,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,103,110,111,109,111,110,105,99,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,100,101,110,116,105,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,100,101,110,116,105,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,105,112,95,114,101,99,116,97,110,103,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,108,105,112,47,114,101,99,116,97,110,103,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,114,101,99,116,97,110,103,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,100,101,110,116,105,116,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,105,100,101,110,116,105,116,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,97,110,115,102,111,114,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,116,114,97,110,115,102,111,114,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,105,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,102,105,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,107,32,61,32,49,44,32,116,120,32,61,32,48,44,32,116,121,32,61,32,48,44,32,115,120,32,61,32,49,44,32,115,121,32,61,32,49,44,32,47,47,32,115,99,97,108,101,44,32,116,114,97,110,115,108,97,116,101,32,97,110,100,32,114,101,102,108,101,99,116,92,110,32,32,32,32,32,32,97,108,112,104,97,32,61,32,48,44,32,99,97,44,32,115,97,44,32,47,47,32,97,110,103,108,101,92,110,32,32,32,32,32,32,120,48,32,61,32,110,117,108,108,44,32,121,48,44,32,120,49,44,32,121,49,44,32,47,47,32,99,108,105,112,32,101,120,116,101,110,116,92,110,32,32,32,32,32,32,107,120,32,61,32,49,44,32,107,121,32,61,32,49,44,92,110,32,32,32,32,32,32,116,114,97,110,115,102,111,114,109,32,61,32,40,48,44,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,114,97,110,115,102,111,114,109,101,114,41,40,123,92,110,32,32,32,32,32,32,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,32,61,32,112,114,111,106,101,99,116,105,111,110,40,91,120,44,32,121,93,41,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,112,91,48,93,44,32,112,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,112,111,115,116,99,108,105,112,32,61,32,95,105,100,101,110,116,105,116,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,32,32,99,97,99,104,101,44,92,110,32,32,32,32,32,32,99,97,99,104,101,83,116,114,101,97,109,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,115,101,116,40,41,32,123,92,110,32,32,32,32,107,120,32,61,32,107,32,42,32,115,120,59,92,110,32,32,32,32,107,121,32,61,32,107,32,42,32,115,121,59,92,110,32,32,32,32,99,97,99,104,101,32,61,32,99,97,99,104,101,83,116,114,101,97,109,32,61,32,110,117,108,108,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,106,101,99,116,105,111,110,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,114,111,106,101,99,116,105,111,110,32,40,112,41,32,123,92,110,32,32,32,32,118,97,114,32,120,32,61,32,112,91,48,93,32,42,32,107,120,44,32,121,32,61,32,112,91,49,93,32,42,32,107,121,59,92,110,32,32,32,32,105,102,32,40,97,108,112,104,97,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,32,61,32,121,32,42,32,99,97,32,45,32,120,32,42,32,115,97,59,92,110,32,32,32,32,32,32,120,32,61,32,120,32,42,32,99,97,32,43,32,121,32,42,32,115,97,59,92,110,32,32,32,32,32,32,121,32,61,32,116,59,92,110,32,32,32,32,125,32,32,32,32,92,110,32,32,32,32,114,101,116,117,114,110,32,91,120,32,43,32,116,120,44,32,121,32,43,32,116,121,93,59,92,110,32,32,125,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,112,41,32,123,92,110,32,32,32,32,118,97,114,32,120,32,61,32,112,91,48,93,32,45,32,116,120,44,32,121,32,61,32,112,91,49,93,32,45,32,116,121,59,92,110,32,32,32,32,105,102,32,40,97,108,112,104,97,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,32,61,32,121,32,42,32,99,97,32,43,32,120,32,42,32,115,97,59,92,110,32,32,32,32,32,32,120,32,61,32,120,32,42,32,99,97,32,45,32,121,32,42,32,115,97,59,92,110,32,32,32,32,32,32,121,32,61,32,116,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,91,120,32,47,32,107,120,44,32,121,32,47,32,107,121,93,59,92,110,32,32,125,59,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,115,116,114,101,97,109,32,61,32,102,117,110,99,116,105,111,110,40,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,97,99,104,101,32,38,38,32,99,97,99,104,101,83,116,114,101,97,109,32,61,61,61,32,115,116,114,101,97,109,32,63,32,99,97,99,104,101,32,58,32,99,97,99,104,101,32,61,32,116,114,97,110,115,102,111,114,109,40,112,111,115,116,99,108,105,112,40,99,97,99,104,101,83,116,114,101,97,109,32,61,32,115,116,114,101,97,109,41,41,59,92,110,32,32,125,59,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,112,111,115,116,99,108,105,112,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,111,115,116,99,108,105,112,32,61,32,95,44,32,120,48,32,61,32,121,48,32,61,32,120,49,32,61,32,121,49,32,61,32,110,117,108,108,44,32,114,101,115,101,116,40,41,41,32,58,32,112,111,115,116,99,108,105,112,59,92,110,32,32,125,59,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,99,108,105,112,69,120,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,111,115,116,99,108,105,112,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,40,120,48,32,61,32,121,48,32,61,32,120,49,32,61,32,121,49,32,61,32,110,117,108,108,44,32,95,105,100,101,110,116,105,116,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,32,58,32,40,48,44,95,99,108,105,112,95,114,101,99,116,97,110,103,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,120,48,32,61,32,43,95,91,48,93,91,48,93,44,32,121,48,32,61,32,43,95,91,48,93,91,49,93,44,32,120,49,32,61,32,43,95,91,49,93,91,48,93,44,32,121,49,32,61,32,43,95,91,49,93,91,49,93,41,44,32,114,101,115,101,116,40,41,41,32,58,32,120,48,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,91,91,120,48,44,32,121,48,93,44,32,91,120,49,44,32,121,49,93,93,59,92,110,32,32,125,59,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,115,99,97,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,107,32,61,32,43,95,44,32,114,101,115,101,116,40,41,41,32,58,32,107,59,92,110,32,32,125,59,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,116,114,97,110,115,108,97,116,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,120,32,61,32,43,95,91,48,93,44,32,116,121,32,61,32,43,95,91,49,93,44,32,114,101,115,101,116,40,41,41,32,58,32,91,116,120,44,32,116,121,93,59,92,110,32,32,125,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,97,110,103,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,97,108,112,104,97,32,61,32,95,32,37,32,51,54,48,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,114,97,100,105,97,110,115,44,32,115,97,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,105,110,41,40,97,108,112,104,97,41,44,32,99,97,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,111,115,41,40,97,108,112,104,97,41,44,32,114,101,115,101,116,40,41,41,32,58,32,97,108,112,104,97,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,100,101,103,114,101,101,115,59,92,110,32,32,125,59,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,114,101,102,108,101,99,116,88,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,120,32,61,32,95,32,63,32,45,49,32,58,32,49,44,32,114,101,115,101,116,40,41,41,32,58,32,115,120,32,60,32,48,59,92,110,32,32,125,59,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,114,101,102,108,101,99,116,89,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,121,32,61,32,95,32,63,32,45,49,32,58,32,49,44,32,114,101,115,101,116,40,41,41,32,58,32,115,121,32,60,32,48,59,92,110,32,32,125,59,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,102,105,116,69,120,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,101,120,116,101,110,116,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,102,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,102,105,116,69,120,116,101,110,116,41,40,112,114,111,106,101,99,116,105,111,110,44,32,101,120,116,101,110,116,44,32,111,98,106,101,99,116,41,59,92,110,32,32,125,59,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,102,105,116,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,115,105,122,101,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,102,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,102,105,116,83,105,122,101,41,40,112,114,111,106,101,99,116,105,111,110,44,32,115,105,122,101,44,32,111,98,106,101,99,116,41,59,92,110,32,32,125,59,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,102,105,116,87,105,100,116,104,32,61,32,102,117,110,99,116,105,111,110,40,119,105,100,116,104,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,102,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,102,105,116,87,105,100,116,104,41,40,112,114,111,106,101,99,116,105,111,110,44,32,119,105,100,116,104,44,32,111,98,106,101,99,116,41,59,92,110,32,32,125,59,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,102,105,116,72,101,105,103,104,116,32,61,32,102,117,110,99,116,105,111,110,40,104,101,105,103,104,116,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,102,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,102,105,116,72,101,105,103,104,116,41,40,112,114,111,106,101,99,116,105,111,110,44,32,104,101,105,103,104,116,44,32,111,98,106,101,99,116,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,112,114,111,106,101,99,116,105,111,110,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,100,101,110,116,105,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,106,101,99,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,111,106,101,99,116,105,111,110,77,117,116,97,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,114,111,106,101,99,116,105,111,110,77,117,116,97,116,111,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,105,112,95,97,110,116,105,109,101,114,105,100,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,108,105,112,47,97,110,116,105,109,101,114,105,100,105,97,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,97,110,116,105,109,101,114,105,100,105,97,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,105,112,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,108,105,112,47,99,105,114,99,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,99,105,114,99,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,105,112,95,114,101,99,116,97,110,103,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,108,105,112,47,114,101,99,116,97,110,103,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,108,105,112,47,114,101,99,116,97,110,103,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,109,112,111,115,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,111,109,112,111,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,100,101,110,116,105,116,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,105,100,101,110,116,105,116,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,111,116,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,111,116,97,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,114,111,116,97,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,97,110,115,102,111,114,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,116,114,97,110,115,102,111,114,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,105,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,102,105,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,115,97,109,112,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,101,115,97,109,112,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,114,101,115,97,109,112,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,116,114,97,110,115,102,111,114,109,82,97,100,105,97,110,115,32,61,32,40,48,44,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,114,97,110,115,102,111,114,109,101,114,41,40,123,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,120,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,44,32,121,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,82,111,116,97,116,101,40,114,111,116,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,114,97,110,115,102,111,114,109,101,114,41,40,123,92,110,32,32,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,32,61,32,114,111,116,97,116,101,40,120,44,32,121,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,114,91,48,93,44,32,114,91,49,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,99,97,108,101,84,114,97,110,115,108,97,116,101,40,107,44,32,100,120,44,32,100,121,44,32,115,120,44,32,115,121,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,40,120,44,32,121,41,32,123,92,110,32,32,32,32,120,32,42,61,32,115,120,59,32,121,32,42,61,32,115,121,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,100,120,32,43,32,107,32,42,32,120,44,32,100,121,32,45,32,107,32,42,32,121,93,59,92,110,32,32,125,92,110,32,32,116,114,97,110,115,102,111,114,109,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,40,120,32,45,32,100,120,41,32,47,32,107,32,42,32,115,120,44,32,40,100,121,32,45,32,121,41,32,47,32,107,32,42,32,115,121,93,59,92,110,32,32,125,59,92,110,32,32,114,101,116,117,114,110,32,116,114,97,110,115,102,111,114,109,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,99,97,108,101,84,114,97,110,115,108,97,116,101,82,111,116,97,116,101,40,107,44,32,100,120,44,32,100,121,44,32,115,120,44,32,115,121,44,32,97,108,112,104,97,41,32,123,92,110,32,32,118,97,114,32,99,111,115,65,108,112,104,97,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,115,41,40,97,108,112,104,97,41,44,92,110,32,32,32,32,32,32,115,105,110,65,108,112,104,97,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,105,110,41,40,97,108,112,104,97,41,44,92,110,32,32,32,32,32,32,97,32,61,32,99,111,115,65,108,112,104,97,32,42,32,107,44,92,110,32,32,32,32,32,32,98,32,61,32,115,105,110,65,108,112,104,97,32,42,32,107,44,92,110,32,32,32,32,32,32,97,105,32,61,32,99,111,115,65,108,112,104,97,32,47,32,107,44,92,110,32,32,32,32,32,32,98,105,32,61,32,115,105,110,65,108,112,104,97,32,47,32,107,44,92,110,32,32,32,32,32,32,99,105,32,61,32,40,115,105,110,65,108,112,104,97,32,42,32,100,121,32,45,32,99,111,115,65,108,112,104,97,32,42,32,100,120,41,32,47,32,107,44,92,110,32,32,32,32,32,32,102,105,32,61,32,40,115,105,110,65,108,112,104,97,32,42,32,100,120,32,43,32,99,111,115,65,108,112,104,97,32,42,32,100,121,41,32,47,32,107,59,92,110,32,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,40,120,44,32,121,41,32,123,92,110,32,32,32,32,120,32,42,61,32,115,120,59,32,121,32,42,61,32,115,121,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,97,32,42,32,120,32,45,32,98,32,42,32,121,32,43,32,100,120,44,32,100,121,32,45,32,98,32,42,32,120,32,45,32,97,32,42,32,121,93,59,92,110,32,32,125,92,110,32,32,116,114,97,110,115,102,111,114,109,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,115,120,32,42,32,40,97,105,32,42,32,120,32,45,32,98,105,32,42,32,121,32,43,32,99,105,41,44,32,115,121,32,42,32,40,102,105,32,45,32,98,105,32,42,32,120,32,45,32,97,105,32,42,32,121,41,93,59,92,110,32,32,125,59,92,110,32,32,114,101,116,117,114,110,32,116,114,97,110,115,102,111,114,109,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,114,111,106,101,99,116,105,111,110,40,112,114,111,106,101,99,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,114,111,106,101,99,116,105,111,110,77,117,116,97,116,111,114,40,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,112,114,111,106,101,99,116,59,32,125,41,40,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,114,111,106,101,99,116,105,111,110,77,117,116,97,116,111,114,40,112,114,111,106,101,99,116,65,116,41,32,123,92,110,32,32,118,97,114,32,112,114,111,106,101,99,116,44,92,110,32,32,32,32,32,32,107,32,61,32,49,53,48,44,32,47,47,32,115,99,97,108,101,92,110,32,32,32,32,32,32,120,32,61,32,52,56,48,44,32,121,32,61,32,50,53,48,44,32,47,47,32,116,114,97,110,115,108,97,116,101,92,110,32,32,32,32,32,32,108,97,109,98,100,97,32,61,32,48,44,32,112,104,105,32,61,32,48,44,32,47,47,32,99,101,110,116,101,114,92,110,32,32,32,32,32,32,100,101,108,116,97,76,97,109,98,100,97,32,61,32,48,44,32,100,101,108,116,97,80,104,105,32,61,32,48,44,32,100,101,108,116,97,71,97,109,109,97,32,61,32,48,44,32,114,111,116,97,116,101,44,32,47,47,32,112,114,101,45,114,111,116,97,116,101,92,110,32,32,32,32,32,32,97,108,112,104,97,32,61,32,48,44,32,47,47,32,112,111,115,116,45,114,111,116,97,116,101,32,97,110,103,108,101,92,110,32,32,32,32,32,32,115,120,32,61,32,49,44,32,47,47,32,114,101,102,108,101,99,116,88,92,110,32,32,32,32,32,32,115,121,32,61,32,49,44,32,47,47,32,114,101,102,108,101,99,116,88,92,110,32,32,32,32,32,32,116,104,101,116,97,32,61,32,110,117,108,108,44,32,112,114,101,99,108,105,112,32,61,32,95,99,108,105,112,95,97,110,116,105,109,101,114,105,100,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,47,47,32,112,114,101,45,99,108,105,112,32,97,110,103,108,101,92,110,32,32,32,32,32,32,120,48,32,61,32,110,117,108,108,44,32,121,48,44,32,120,49,44,32,121,49,44,32,112,111,115,116,99,108,105,112,32,61,32,95,105,100,101,110,116,105,116,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,47,47,32,112,111,115,116,45,99,108,105,112,32,101,120,116,101,110,116,92,110,32,32,32,32,32,32,100,101,108,116,97,50,32,61,32,48,46,53,44,32,47,47,32,112,114,101,99,105,115,105,111,110,92,110,32,32,32,32,32,32,112,114,111,106,101,99,116,82,101,115,97,109,112,108,101,44,92,110,32,32,32,32,32,32,112,114,111,106,101,99,116,84,114,97,110,115,102,111,114,109,44,92,110,32,32,32,32,32,32,112,114,111,106,101,99,116,82,111,116,97,116,101,84,114,97,110,115,102,111,114,109,44,92,110,32,32,32,32,32,32,99,97,99,104,101,44,92,110,32,32,32,32,32,32,99,97,99,104,101,83,116,114,101,97,109,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,114,111,106,101,99,116,105,111,110,40,112,111,105,110,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,106,101,99,116,82,111,116,97,116,101,84,114,97,110,115,102,111,114,109,40,112,111,105,110,116,91,48,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,44,32,112,111,105,110,116,91,49,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,118,101,114,116,40,112,111,105,110,116,41,32,123,92,110,32,32,32,32,112,111,105,110,116,32,61,32,112,114,111,106,101,99,116,82,111,116,97,116,101,84,114,97,110,115,102,111,114,109,46,105,110,118,101,114,116,40,112,111,105,110,116,91,48,93,44,32,112,111,105,110,116,91,49,93,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,111,105,110,116,32,38,38,32,91,112,111,105,110,116,91,48,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,101,103,114,101,101,115,44,32,112,111,105,110,116,91,49,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,101,103,114,101,101,115,93,59,92,110,32,32,125,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,115,116,114,101,97,109,32,61,32,102,117,110,99,116,105,111,110,40,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,97,99,104,101,32,38,38,32,99,97,99,104,101,83,116,114,101,97,109,32,61,61,61,32,115,116,114,101,97,109,32,63,32,99,97,99,104,101,32,58,32,99,97,99,104,101,32,61,32,116,114,97,110,115,102,111,114,109,82,97,100,105,97,110,115,40,116,114,97,110,115,102,111,114,109,82,111,116,97,116,101,40,114,111,116,97,116,101,41,40,112,114,101,99,108,105,112,40,112,114,111,106,101,99,116,82,101,115,97,109,112,108,101,40,112,111,115,116,99,108,105,112,40,99,97,99,104,101,83,116,114,101,97,109,32,61,32,115,116,114,101,97,109,41,41,41,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,112,114,101,99,108,105,112,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,114,101,99,108,105,112,32,61,32,95,44,32,116,104,101,116,97,32,61,32,117,110,100,101,102,105,110,101,100,44,32,114,101,115,101,116,40,41,41,32,58,32,112,114,101,99,108,105,112,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,112,111,115,116,99,108,105,112,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,111,115,116,99,108,105,112,32,61,32,95,44,32,120,48,32,61,32,121,48,32,61,32,120,49,32,61,32,121,49,32,61,32,110,117,108,108,44,32,114,101,115,101,116,40,41,41,32,58,32,112,111,115,116,99,108,105,112,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,99,108,105,112,65,110,103,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,114,101,99,108,105,112,32,61,32,43,95,32,63,32,40,48,44,95,99,108,105,112,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,104,101,116,97,32,61,32,95,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,41,32,58,32,40,116,104,101,116,97,32,61,32,110,117,108,108,44,32,95,99,108,105,112,95,97,110,116,105,109,101,114,105,100,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,44,32,114,101,115,101,116,40,41,41,32,58,32,116,104,101,116,97,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,101,103,114,101,101,115,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,99,108,105,112,69,120,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,111,115,116,99,108,105,112,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,40,120,48,32,61,32,121,48,32,61,32,120,49,32,61,32,121,49,32,61,32,110,117,108,108,44,32,95,105,100,101,110,116,105,116,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,32,58,32,40,48,44,95,99,108,105,112,95,114,101,99,116,97,110,103,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,120,48,32,61,32,43,95,91,48,93,91,48,93,44,32,121,48,32,61,32,43,95,91,48,93,91,49,93,44,32,120,49,32,61,32,43,95,91,49,93,91,48,93,44,32,121,49,32,61,32,43,95,91,49,93,91,49,93,41,44,32,114,101,115,101,116,40,41,41,32,58,32,120,48,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,91,91,120,48,44,32,121,48,93,44,32,91,120,49,44,32,121,49,93,93,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,115,99,97,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,107,32,61,32,43,95,44,32,114,101,99,101,110,116,101,114,40,41,41,32,58,32,107,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,116,114,97,110,115,108,97,116,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,120,32,61,32,43,95,91,48,93,44,32,121,32,61,32,43,95,91,49,93,44,32,114,101,99,101,110,116,101,114,40,41,41,32,58,32,91,120,44,32,121,93,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,99,101,110,116,101,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,108,97,109,98,100,97,32,61,32,95,91,48,93,32,37,32,51,54,48,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,44,32,112,104,105,32,61,32,95,91,49,93,32,37,32,51,54,48,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,44,32,114,101,99,101,110,116,101,114,40,41,41,32,58,32,91,108,97,109,98,100,97,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,101,103,114,101,101,115,44,32,112,104,105,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,101,103,114,101,101,115,93,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,114,111,116,97,116,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,101,108,116,97,76,97,109,98,100,97,32,61,32,95,91,48,93,32,37,32,51,54,48,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,44,32,100,101,108,116,97,80,104,105,32,61,32,95,91,49,93,32,37,32,51,54,48,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,44,32,100,101,108,116,97,71,97,109,109,97,32,61,32,95,46,108,101,110,103,116,104,32,62,32,50,32,63,32,95,91,50,93,32,37,32,51,54,48,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,32,58,32,48,44,32,114,101,99,101,110,116,101,114,40,41,41,32,58,32,91,100,101,108,116,97,76,97,109,98,100,97,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,101,103,114,101,101,115,44,32,100,101,108,116,97,80,104,105,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,101,103,114,101,101,115,44,32,100,101,108,116,97,71,97,109,109,97,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,101,103,114,101,101,115,93,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,97,110,103,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,97,108,112,104,97,32,61,32,95,32,37,32,51,54,48,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,100,105,97,110,115,44,32,114,101,99,101,110,116,101,114,40,41,41,32,58,32,97,108,112,104,97,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,101,103,114,101,101,115,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,114,101,102,108,101,99,116,88,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,120,32,61,32,95,32,63,32,45,49,32,58,32,49,44,32,114,101,99,101,110,116,101,114,40,41,41,32,58,32,115,120,32,60,32,48,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,114,101,102,108,101,99,116,89,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,121,32,61,32,95,32,63,32,45,49,32,58,32,49,44,32,114,101,99,101,110,116,101,114,40,41,41,32,58,32,115,121,32,60,32,48,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,112,114,101,99,105,115,105,111,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,114,111,106,101,99,116,82,101,115,97,109,112,108,101,32,61,32,40,48,44,95,114,101,115,97,109,112,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,112,114,111,106,101,99,116,84,114,97,110,115,102,111,114,109,44,32,100,101,108,116,97,50,32,61,32,95,32,42,32,95,41,44,32,114,101,115,101,116,40,41,41,32,58,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,113,114,116,41,40,100,101,108,116,97,50,41,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,102,105,116,69,120,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,101,120,116,101,110,116,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,102,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,102,105,116,69,120,116,101,110,116,41,40,112,114,111,106,101,99,116,105,111,110,44,32,101,120,116,101,110,116,44,32,111,98,106,101,99,116,41,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,102,105,116,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,115,105,122,101,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,102,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,102,105,116,83,105,122,101,41,40,112,114,111,106,101,99,116,105,111,110,44,32,115,105,122,101,44,32,111,98,106,101,99,116,41,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,102,105,116,87,105,100,116,104,32,61,32,102,117,110,99,116,105,111,110,40,119,105,100,116,104,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,102,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,102,105,116,87,105,100,116,104,41,40,112,114,111,106,101,99,116,105,111,110,44,32,119,105,100,116,104,44,32,111,98,106,101,99,116,41,59,92,110,32,32,125,59,92,110,92,110,32,32,112,114,111,106,101,99,116,105,111,110,46,102,105,116,72,101,105,103,104,116,32,61,32,102,117,110,99,116,105,111,110,40,104,101,105,103,104,116,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,102,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,102,105,116,72,101,105,103,104,116,41,40,112,114,111,106,101,99,116,105,111,110,44,32,104,101,105,103,104,116,44,32,111,98,106,101,99,116,41,59,92,110,32,32,125,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,99,101,110,116,101,114,40,41,32,123,92,110,32,32,32,32,118,97,114,32,99,101,110,116,101,114,32,61,32,115,99,97,108,101,84,114,97,110,115,108,97,116,101,82,111,116,97,116,101,40,107,44,32,48,44,32,48,44,32,115,120,44,32,115,121,44,32,97,108,112,104,97,41,46,97,112,112,108,121,40,110,117,108,108,44,32,112,114,111,106,101,99,116,40,108,97,109,98,100,97,44,32,112,104,105,41,41,44,92,110,32,32,32,32,32,32,32,32,116,114,97,110,115,102,111,114,109,32,61,32,40,97,108,112,104,97,32,63,32,115,99,97,108,101,84,114,97,110,115,108,97,116,101,82,111,116,97,116,101,32,58,32,115,99,97,108,101,84,114,97,110,115,108,97,116,101,41,40,107,44,32,120,32,45,32,99,101,110,116,101,114,91,48,93,44,32,121,32,45,32,99,101,110,116,101,114,91,49,93,44,32,115,120,44,32,115,121,44,32,97,108,112,104,97,41,59,92,110,32,32,32,32,114,111,116,97,116,101,32,61,32,40,48,44,95,114,111,116,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,114,111,116,97,116,101,82,97,100,105,97,110,115,41,40,100,101,108,116,97,76,97,109,98,100,97,44,32,100,101,108,116,97,80,104,105,44,32,100,101,108,116,97,71,97,109,109,97,41,59,92,110,32,32,32,32,112,114,111,106,101,99,116,84,114,97,110,115,102,111,114,109,32,61,32,40,48,44,95,99,111,109,112,111,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,112,114,111,106,101,99,116,44,32,116,114,97,110,115,102,111,114,109,41,59,92,110,32,32,32,32,112,114,111,106,101,99,116,82,111,116,97,116,101,84,114,97,110,115,102,111,114,109,32,61,32,40,48,44,95,99,111,109,112,111,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,114,111,116,97,116,101,44,32,112,114,111,106,101,99,116,84,114,97,110,115,102,111,114,109,41,59,92,110,32,32,32,32,112,114,111,106,101,99,116,82,101,115,97,109,112,108,101,32,61,32,40,48,44,95,114,101,115,97,109,112,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,112,114,111,106,101,99,116,84,114,97,110,115,102,111,114,109,44,32,100,101,108,116,97,50,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,101,116,40,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,115,101,116,40,41,32,123,92,110,32,32,32,32,99,97,99,104,101,32,61,32,99,97,99,104,101,83,116,114,101,97,109,32,61,32,110,117,108,108,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,106,101,99,116,105,111,110,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,112,114,111,106,101,99,116,32,61,32,112,114,111,106,101,99,116,65,116,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,112,114,111,106,101,99,116,105,111,110,46,105,110,118,101,114,116,32,61,32,112,114,111,106,101,99,116,46,105,110,118,101,114,116,32,38,38,32,105,110,118,101,114,116,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,99,101,110,116,101,114,40,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,109,101,114,99,97,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,109,101,114,99,97,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,101,114,99,97,116,111,114,80,114,111,106,101,99,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,101,114,99,97,116,111,114,80,114,111,106,101,99,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,101,114,99,97,116,111,114,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,101,114,99,97,116,111,114,82,97,119,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,111,116,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,111,116,97,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,114,111,116,97,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,109,101,114,99,97,116,111,114,82,97,119,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,108,97,109,98,100,97,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,108,111,103,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,110,41,40,40,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,108,102,80,105,32,43,32,112,104,105,41,32,47,32,50,41,41,93,59,92,110,125,92,110,92,110,109,101,114,99,97,116,111,114,82,97,119,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,120,44,32,50,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,120,112,41,40,121,41,41,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,108,102,80,105,93,59,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,109,101,114,99,97,116,111,114,80,114,111,106,101,99,116,105,111,110,40,109,101,114,99,97,116,111,114,82,97,119,41,92,110,32,32,32,32,32,32,46,115,99,97,108,101,40,57,54,49,32,47,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,101,114,99,97,116,111,114,80,114,111,106,101,99,116,105,111,110,40,112,114,111,106,101,99,116,41,32,123,92,110,32,32,118,97,114,32,109,32,61,32,40,48,44,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,112,114,111,106,101,99,116,41,44,92,110,32,32,32,32,32,32,99,101,110,116,101,114,32,61,32,109,46,99,101,110,116,101,114,44,92,110,32,32,32,32,32,32,115,99,97,108,101,32,61,32,109,46,115,99,97,108,101,44,92,110,32,32,32,32,32,32,116,114,97,110,115,108,97,116,101,32,61,32,109,46,116,114,97,110,115,108,97,116,101,44,92,110,32,32,32,32,32,32,99,108,105,112,69,120,116,101,110,116,32,61,32,109,46,99,108,105,112,69,120,116,101,110,116,44,92,110,32,32,32,32,32,32,120,48,32,61,32,110,117,108,108,44,32,121,48,44,32,120,49,44,32,121,49,59,32,47,47,32,99,108,105,112,32,101,120,116,101,110,116,92,110,92,110,32,32,109,46,115,99,97,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,99,97,108,101,40,95,41,44,32,114,101,99,108,105,112,40,41,41,32,58,32,115,99,97,108,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,109,46,116,114,97,110,115,108,97,116,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,114,97,110,115,108,97,116,101,40,95,41,44,32,114,101,99,108,105,112,40,41,41,32,58,32,116,114,97,110,115,108,97,116,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,109,46,99,101,110,116,101,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,99,101,110,116,101,114,40,95,41,44,32,114,101,99,108,105,112,40,41,41,32,58,32,99,101,110,116,101,114,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,109,46,99,108,105,112,69,120,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,40,95,32,61,61,32,110,117,108,108,32,63,32,120,48,32,61,32,121,48,32,61,32,120,49,32,61,32,121,49,32,61,32,110,117,108,108,32,58,32,40,120,48,32,61,32,43,95,91,48,93,91,48,93,44,32,121,48,32,61,32,43,95,91,48,93,91,49,93,44,32,120,49,32,61,32,43,95,91,49,93,91,48,93,44,32,121,49,32,61,32,43,95,91,49,93,91,49,93,41,41,44,32,114,101,99,108,105,112,40,41,41,32,58,32,120,48,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,91,91,120,48,44,32,121,48,93,44,32,91,120,49,44,32,121,49,93,93,59,92,110,32,32,125,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,99,108,105,112,40,41,32,123,92,110,32,32,32,32,118,97,114,32,107,32,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,32,42,32,115,99,97,108,101,40,41,44,92,110,32,32,32,32,32,32,32,32,116,32,61,32,109,40,40,48,44,95,114,111,116,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,109,46,114,111,116,97,116,101,40,41,41,46,105,110,118,101,114,116,40,91,48,44,32,48,93,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,108,105,112,69,120,116,101,110,116,40,120,48,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,63,32,91,91,116,91,48,93,32,45,32,107,44,32,116,91,49,93,32,45,32,107,93,44,32,91,116,91,48,93,32,43,32,107,44,32,116,91,49,93,32,43,32,107,93,93,32,58,32,112,114,111,106,101,99,116,32,61,61,61,32,109,101,114,99,97,116,111,114,82,97,119,92,110,32,32,32,32,32,32,32,32,63,32,91,91,77,97,116,104,46,109,97,120,40,116,91,48,93,32,45,32,107,44,32,120,48,41,44,32,121,48,93,44,32,91,77,97,116,104,46,109,105,110,40,116,91,48,93,32,43,32,107,44,32,120,49,41,44,32,121,49,93,93,92,110,32,32,32,32,32,32,32,32,58,32,91,91,120,48,44,32,77,97,116,104,46,109,97,120,40,116,91,49,93,32,45,32,107,44,32,121,48,41,93,44,32,91,120,49,44,32,77,97,116,104,46,109,105,110,40,116,91,49,93,32,43,32,107,44,32,121,49,41,93,93,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,114,101,99,108,105,112,40,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,109,101,114,99,97,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,110,97,116,117,114,97,108,69,97,114,116,104,49,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,110,97,116,117,114,97,108,69,97,114,116,104,49,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,97,116,117,114,97,108,69,97,114,116,104,49,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,97,116,117,114,97,108,69,97,114,116,104,49,82,97,119,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,110,97,116,117,114,97,108,69,97,114,116,104,49,82,97,119,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,118,97,114,32,112,104,105,50,32,61,32,112,104,105,32,42,32,112,104,105,44,32,112,104,105,52,32,61,32,112,104,105,50,32,42,32,112,104,105,50,59,92,110,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,108,97,109,98,100,97,32,42,32,40,48,46,56,55,48,55,32,45,32,48,46,49,51,49,57,55,57,32,42,32,112,104,105,50,32,43,32,112,104,105,52,32,42,32,40,45,48,46,48,49,51,55,57,49,32,43,32,112,104,105,52,32,42,32,40,48,46,48,48,51,57,55,49,32,42,32,112,104,105,50,32,45,32,48,46,48,48,49,53,50,57,32,42,32,112,104,105,52,41,41,41,44,92,110,32,32,32,32,112,104,105,32,42,32,40,49,46,48,48,55,50,50,54,32,43,32,112,104,105,50,32,42,32,40,48,46,48,49,53,48,56,53,32,43,32,112,104,105,52,32,42,32,40,45,48,46,48,52,52,52,55,53,32,43,32,48,46,48,50,56,56,55,52,32,42,32,112,104,105,50,32,45,32,48,46,48,48,53,57,49,54,32,42,32,112,104,105,52,41,41,41,92,110,32,32,93,59,92,110,125,92,110,92,110,110,97,116,117,114,97,108,69,97,114,116,104,49,82,97,119,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,118,97,114,32,112,104,105,32,61,32,121,44,32,105,32,61,32,50,53,44,32,100,101,108,116,97,59,92,110,32,32,100,111,32,123,92,110,32,32,32,32,118,97,114,32,112,104,105,50,32,61,32,112,104,105,32,42,32,112,104,105,44,32,112,104,105,52,32,61,32,112,104,105,50,32,42,32,112,104,105,50,59,92,110,32,32,32,32,112,104,105,32,45,61,32,100,101,108,116,97,32,61,32,40,112,104,105,32,42,32,40,49,46,48,48,55,50,50,54,32,43,32,112,104,105,50,32,42,32,40,48,46,48,49,53,48,56,53,32,43,32,112,104,105,52,32,42,32,40,45,48,46,48,52,52,52,55,53,32,43,32,48,46,48,50,56,56,55,52,32,42,32,112,104,105,50,32,45,32,48,46,48,48,53,57,49,54,32,42,32,112,104,105,52,41,41,41,32,45,32,121,41,32,47,92,110,32,32,32,32,32,32,32,32,40,49,46,48,48,55,50,50,54,32,43,32,112,104,105,50,32,42,32,40,48,46,48,49,53,48,56,53,32,42,32,51,32,43,32,112,104,105,52,32,42,32,40,45,48,46,48,52,52,52,55,53,32,42,32,55,32,43,32,48,46,48,50,56,56,55,52,32,42,32,57,32,42,32,112,104,105,50,32,45,32,48,46,48,48,53,57,49,54,32,42,32,49,49,32,42,32,112,104,105,52,41,41,41,59,92,110,32,32,125,32,119,104,105,108,101,32,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,100,101,108,116,97,41,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,32,38,38,32,45,45,105,32,62,32,48,41,59,92,110,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,120,32,47,32,40,48,46,56,55,48,55,32,43,32,40,112,104,105,50,32,61,32,112,104,105,32,42,32,112,104,105,41,32,42,32,40,45,48,46,49,51,49,57,55,57,32,43,32,112,104,105,50,32,42,32,40,45,48,46,48,49,51,55,57,49,32,43,32,112,104,105,50,32,42,32,112,104,105,50,32,42,32,112,104,105,50,32,42,32,40,48,46,48,48,51,57,55,49,32,45,32,48,46,48,48,49,53,50,57,32,42,32,112,104,105,50,41,41,41,41,44,92,110,32,32,32,32,112,104,105,92,110,32,32,93,59,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,97,116,117,114,97,108,69,97,114,116,104,49,82,97,119,41,92,110,32,32,32,32,32,32,46,115,99,97,108,101,40,49,55,53,46,50,57,53,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,110,97,116,117,114,97,108,69,97,114,116,104,49,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,111,114,116,104,111,103,114,97,112,104,105,99,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,111,114,116,104,111,103,114,97,112,104,105,99,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,111,114,116,104,111,103,114,97,112,104,105,99,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,111,114,116,104,111,103,114,97,112,104,105,99,82,97,119,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,122,105,109,117,116,104,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,122,105,109,117,116,104,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,111,114,116,104,111,103,114,97,112,104,105,99,82,97,119,40,120,44,32,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,121,41,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,120,41,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,121,41,93,59,92,110,125,92,110,92,110,111,114,116,104,111,103,114,97,112,104,105,99,82,97,119,46,105,110,118,101,114,116,32,61,32,40,48,44,95,97,122,105,109,117,116,104,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,122,105,109,117,116,104,97,108,73,110,118,101,114,116,41,40,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,105,110,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,114,116,104,111,103,114,97,112,104,105,99,82,97,119,41,92,110,32,32,32,32,32,32,46,115,99,97,108,101,40,50,52,57,46,53,41,92,110,32,32,32,32,32,32,46,99,108,105,112,65,110,103,108,101,40,57,48,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,111,114,116,104,111,103,114,97,112,104,105,99,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,114,101,115,97,109,112,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,114,101,115,97,109,112,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,97,114,116,101,115,105,97,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,97,114,116,101,115,105,97,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,97,110,115,102,111,114,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,116,114,97,110,115,102,111,114,109,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,109,97,120,68,101,112,116,104,32,61,32,49,54,44,32,47,47,32,109,97,120,105,109,117,109,32,100,101,112,116,104,32,111,102,32,115,117,98,100,105,118,105,115,105,111,110,92,110,32,32,32,32,99,111,115,77,105,110,68,105,115,116,97,110,99,101,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,51,48,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,41,59,32,47,47,32,99,111,115,40,109,105,110,105,109,117,109,32,97,110,103,117,108,97,114,32,100,105,115,116,97,110,99,101,41,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,112,114,111,106,101,99,116,44,32,100,101,108,116,97,50,41,32,123,92,110,32,32,114,101,116,117,114,110,32,43,100,101,108,116,97,50,32,63,32,114,101,115,97,109,112,108,101,40,112,114,111,106,101,99,116,44,32,100,101,108,116,97,50,41,32,58,32,114,101,115,97,109,112,108,101,78,111,110,101,40,112,114,111,106,101,99,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,97,109,112,108,101,78,111,110,101,40,112,114,111,106,101,99,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,114,97,110,115,102,111,114,109,101,114,41,40,123,92,110,32,32,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,32,32,120,32,61,32,112,114,111,106,101,99,116,40,120,44,32,121,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,120,91,48,93,44,32,120,91,49,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,97,109,112,108,101,40,112,114,111,106,101,99,116,44,32,100,101,108,116,97,50,41,32,123,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,115,97,109,112,108,101,76,105,110,101,84,111,40,120,48,44,32,121,48,44,32,108,97,109,98,100,97,48,44,32,97,48,44,32,98,48,44,32,99,48,44,32,120,49,44,32,121,49,44,32,108,97,109,98,100,97,49,44,32,97,49,44,32,98,49,44,32,99,49,44,32,100,101,112,116,104,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,118,97,114,32,100,120,32,61,32,120,49,32,45,32,120,48,44,92,110,32,32,32,32,32,32,32,32,100,121,32,61,32,121,49,32,45,32,121,48,44,92,110,32,32,32,32,32,32,32,32,100,50,32,61,32,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,59,92,110,32,32,32,32,105,102,32,40,100,50,32,62,32,52,32,42,32,100,101,108,116,97,50,32,38,38,32,100,101,112,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,32,61,32,97,48,32,43,32,97,49,44,92,110,32,32,32,32,32,32,32,32,32,32,98,32,61,32,98,48,32,43,32,98,49,44,92,110,32,32,32,32,32,32,32,32,32,32,99,32,61,32,99,48,32,43,32,99,49,44,92,110,32,32,32,32,32,32,32,32,32,32,109,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,97,32,42,32,97,32,43,32,98,32,42,32,98,32,43,32,99,32,42,32,99,41,44,92,110,32,32,32,32,32,32,32,32,32,32,112,104,105,50,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,105,110,41,40,99,32,47,61,32,109,41,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,109,98,100,97,50,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,99,41,32,45,32,49,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,32,124,124,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,108,97,109,98,100,97,48,32,45,32,108,97,109,98,100,97,49,41,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,32,63,32,40,108,97,109,98,100,97,48,32,43,32,108,97,109,98,100,97,49,41,32,47,32,50,32,58,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,98,44,32,97,41,44,92,110,32,32,32,32,32,32,32,32,32,32,112,32,61,32,112,114,111,106,101,99,116,40,108,97,109,98,100,97,50,44,32,112,104,105,50,41,44,92,110,32,32,32,32,32,32,32,32,32,32,120,50,32,61,32,112,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,121,50,32,61,32,112,91,49,93,44,92,110,32,32,32,32,32,32,32,32,32,32,100,120,50,32,61,32,120,50,32,45,32,120,48,44,92,110,32,32,32,32,32,32,32,32,32,32,100,121,50,32,61,32,121,50,32,45,32,121,48,44,92,110,32,32,32,32,32,32,32,32,32,32,100,122,32,61,32,100,121,32,42,32,100,120,50,32,45,32,100,120,32,42,32,100,121,50,59,92,110,32,32,32,32,32,32,105,102,32,40,100,122,32,42,32,100,122,32,47,32,100,50,32,62,32,100,101,108,116,97,50,32,47,47,32,112,101,114,112,101,110,100,105,99,117,108,97,114,32,112,114,111,106,101,99,116,101,100,32,100,105,115,116,97,110,99,101,92,110,32,32,32,32,32,32,32,32,32,32,124,124,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,40,100,120,32,42,32,100,120,50,32,43,32,100,121,32,42,32,100,121,50,41,32,47,32,100,50,32,45,32,48,46,53,41,32,62,32,48,46,51,32,47,47,32,109,105,100,112,111,105,110,116,32,99,108,111,115,101,32,116,111,32,97,110,32,101,110,100,92,110,32,32,32,32,32,32,32,32,32,32,124,124,32,97,48,32,42,32,97,49,32,43,32,98,48,32,42,32,98,49,32,43,32,99,48,32,42,32,99,49,32,60,32,99,111,115,77,105,110,68,105,115,116,97,110,99,101,41,32,123,32,47,47,32,97,110,103,117,108,97,114,32,100,105,115,116,97,110,99,101,92,110,32,32,32,32,32,32,32,32,114,101,115,97,109,112,108,101,76,105,110,101,84,111,40,120,48,44,32,121,48,44,32,108,97,109,98,100,97,48,44,32,97,48,44,32,98,48,44,32,99,48,44,32,120,50,44,32,121,50,44,32,108,97,109,98,100,97,50,44,32,97,32,47,61,32,109,44,32,98,32,47,61,32,109,44,32,99,44,32,100,101,112,116,104,44,32,115,116,114,101,97,109,41,59,92,110,32,32,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,120,50,44,32,121,50,41,59,92,110,32,32,32,32,32,32,32,32,114,101,115,97,109,112,108,101,76,105,110,101,84,111,40,120,50,44,32,121,50,44,32,108,97,109,98,100,97,50,44,32,97,44,32,98,44,32,99,44,32,120,49,44,32,121,49,44,32,108,97,109,98,100,97,49,44,32,97,49,44,32,98,49,44,32,99,49,44,32,100,101,112,116,104,44,32,115,116,114,101,97,109,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,118,97,114,32,108,97,109,98,100,97,48,48,44,32,120,48,48,44,32,121,48,48,44,32,97,48,48,44,32,98,48,48,44,32,99,48,48,44,32,47,47,32,102,105,114,115,116,32,112,111,105,110,116,92,110,32,32,32,32,32,32,32,32,108,97,109,98,100,97,48,44,32,120,48,44,32,121,48,44,32,97,48,44,32,98,48,44,32,99,48,59,32,47,47,32,112,114,101,118,105,111,117,115,32,112,111,105,110,116,92,110,92,110,32,32,32,32,118,97,114,32,114,101,115,97,109,112,108,101,83,116,114,101,97,109,32,61,32,123,92,110,32,32,32,32,32,32,112,111,105,110,116,58,32,112,111,105,110,116,44,92,110,32,32,32,32,32,32,108,105,110,101,83,116,97,114,116,58,32,108,105,110,101,83,116,97,114,116,44,92,110,32,32,32,32,32,32,108,105,110,101,69,110,100,58,32,108,105,110,101,69,110,100,44,92,110,32,32,32,32,32,32,112,111,108,121,103,111,110,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,115,116,114,101,97,109,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,59,32,114,101,115,97,109,112,108,101,83,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,32,61,32,114,105,110,103,83,116,97,114,116,59,32,125,44,92,110,32,32,32,32,32,32,112,111,108,121,103,111,110,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,115,116,114,101,97,109,46,112,111,108,121,103,111,110,69,110,100,40,41,59,32,114,101,115,97,109,112,108,101,83,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,32,61,32,108,105,110,101,83,116,97,114,116,59,32,125,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,111,105,110,116,40,120,44,32,121,41,32,123,92,110,32,32,32,32,32,32,120,32,61,32,112,114,111,106,101,99,116,40,120,44,32,121,41,59,92,110,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,120,91,48,93,44,32,120,91,49,93,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,110,101,83,116,97,114,116,40,41,32,123,92,110,32,32,32,32,32,32,120,48,32,61,32,78,97,78,59,92,110,32,32,32,32,32,32,114,101,115,97,109,112,108,101,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,108,105,110,101,80,111,105,110,116,59,92,110,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,110,101,80,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,32,61,32,40,48,44,95,99,97,114,116,101,115,105,97,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,97,114,116,101,115,105,97,110,41,40,91,108,97,109,98,100,97,44,32,112,104,105,93,41,44,32,112,32,61,32,112,114,111,106,101,99,116,40,108,97,109,98,100,97,44,32,112,104,105,41,59,92,110,32,32,32,32,32,32,114,101,115,97,109,112,108,101,76,105,110,101,84,111,40,120,48,44,32,121,48,44,32,108,97,109,98,100,97,48,44,32,97,48,44,32,98,48,44,32,99,48,44,32,120,48,32,61,32,112,91,48,93,44,32,121,48,32,61,32,112,91,49,93,44,32,108,97,109,98,100,97,48,32,61,32,108,97,109,98,100,97,44,32,97,48,32,61,32,99,91,48,93,44,32,98,48,32,61,32,99,91,49,93,44,32,99,48,32,61,32,99,91,50,93,44,32,109,97,120,68,101,112,116,104,44,32,115,116,114,101,97,109,41,59,92,110,32,32,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,120,48,44,32,121,48,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,110,101,69,110,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,115,97,109,112,108,101,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,112,111,105,110,116,59,92,110,32,32,32,32,32,32,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,105,110,103,83,116,97,114,116,40,41,32,123,92,110,32,32,32,32,32,32,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,114,101,115,97,109,112,108,101,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,114,105,110,103,80,111,105,110,116,59,92,110,32,32,32,32,32,32,114,101,115,97,109,112,108,101,83,116,114,101,97,109,46,108,105,110,101,69,110,100,32,61,32,114,105,110,103,69,110,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,105,110,103,80,111,105,110,116,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,32,32,32,32,108,105,110,101,80,111,105,110,116,40,108,97,109,98,100,97,48,48,32,61,32,108,97,109,98,100,97,44,32,112,104,105,41,44,32,120,48,48,32,61,32,120,48,44,32,121,48,48,32,61,32,121,48,44,32,97,48,48,32,61,32,97,48,44,32,98,48,48,32,61,32,98,48,44,32,99,48,48,32,61,32,99,48,59,92,110,32,32,32,32,32,32,114,101,115,97,109,112,108,101,83,116,114,101,97,109,46,112,111,105,110,116,32,61,32,108,105,110,101,80,111,105,110,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,105,110,103,69,110,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,115,97,109,112,108,101,76,105,110,101,84,111,40,120,48,44,32,121,48,44,32,108,97,109,98,100,97,48,44,32,97,48,44,32,98,48,44,32,99,48,44,32,120,48,48,44,32,121,48,48,44,32,108,97,109,98,100,97,48,48,44,32,97,48,48,44,32,98,48,48,44,32,99,48,48,44,32,109,97,120,68,101,112,116,104,44,32,115,116,114,101,97,109,41,59,92,110,32,32,32,32,32,32,114,101,115,97,109,112,108,101,83,116,114,101,97,109,46,108,105,110,101,69,110,100,32,61,32,108,105,110,101,69,110,100,59,92,110,32,32,32,32,32,32,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,97,109,112,108,101,83,116,114,101,97,109,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,114,101,115,97,109,112,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,115,116,101,114,101,111,103,114,97,112,104,105,99,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,115,116,101,114,101,111,103,114,97,112,104,105,99,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,101,114,101,111,103,114,97,112,104,105,99,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,101,114,101,111,103,114,97,112,104,105,99,82,97,119,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,122,105,109,117,116,104,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,122,105,109,117,116,104,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,97,122,105,109,117,116,104,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,101,114,101,111,103,114,97,112,104,105,99,82,97,119,40,120,44,32,121,41,32,123,92,110,32,32,118,97,114,32,99,121,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,121,41,44,32,107,32,61,32,49,32,43,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,120,41,32,42,32,99,121,59,92,110,32,32,114,101,116,117,114,110,32,91,99,121,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,120,41,32,47,32,107,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,121,41,32,47,32,107,93,59,92,110,125,92,110,92,110,115,116,101,114,101,111,103,114,97,112,104,105,99,82,97,119,46,105,110,118,101,114,116,32,61,32,40,48,44,95,97,122,105,109,117,116,104,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,122,105,109,117,116,104,97,108,73,110,118,101,114,116,41,40,102,117,110,99,116,105,111,110,40,122,41,32,123,92,110,32,32,114,101,116,117,114,110,32,50,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,41,40,122,41,59,92,110,125,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,101,114,101,111,103,114,97,112,104,105,99,82,97,119,41,92,110,32,32,32,32,32,32,46,115,99,97,108,101,40,50,53,48,41,92,110,32,32,32,32,32,32,46,99,108,105,112,65,110,103,108,101,40,49,52,50,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,115,116,101,114,101,111,103,114,97,112,104,105,99,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,116,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,116,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,82,97,119,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,101,114,99,97,116,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,114,99,97,116,111,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,109,101,114,99,97,116,111,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,82,97,119,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,108,111,103,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,110,41,40,40,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,108,102,80,105,32,43,32,112,104,105,41,32,47,32,50,41,41,44,32,45,108,97,109,98,100,97,93,59,92,110,125,92,110,92,110,116,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,82,97,119,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,45,121,44,32,50,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,120,112,41,40,120,41,41,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,108,102,80,105,93,59,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,109,32,61,32,40,48,44,95,109,101,114,99,97,116,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,101,114,99,97,116,111,114,80,114,111,106,101,99,116,105,111,110,41,40,116,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,82,97,119,41,44,92,110,32,32,32,32,32,32,99,101,110,116,101,114,32,61,32,109,46,99,101,110,116,101,114,44,92,110,32,32,32,32,32,32,114,111,116,97,116,101,32,61,32,109,46,114,111,116,97,116,101,59,92,110,92,110,32,32,109,46,99,101,110,116,101,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,99,101,110,116,101,114,40,91,45,95,91,49,93,44,32,95,91,48,93,93,41,32,58,32,40,95,32,61,32,99,101,110,116,101,114,40,41,44,32,91,95,91,49,93,44,32,45,95,91,48,93,93,41,59,92,110,32,32,125,59,92,110,92,110,32,32,109,46,114,111,116,97,116,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,114,111,116,97,116,101,40,91,95,91,48,93,44,32,95,91,49,93,44,32,95,46,108,101,110,103,116,104,32,62,32,50,32,63,32,95,91,50,93,32,43,32,57,48,32,58,32,57,48,93,41,32,58,32,40,95,32,61,32,114,111,116,97,116,101,40,41,44,32,91,95,91,48,93,44,32,95,91,49,93,44,32,95,91,50,93,32,45,32,57,48,93,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,114,111,116,97,116,101,40,91,48,44,32,48,44,32,57,48,93,41,92,110,32,32,32,32,32,32,46,115,99,97,108,101,40,49,53,57,46,49,53,53,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,112,114,111,106,101,99,116,105,111,110,47,116,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,114,111,116,97,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,114,111,116,97,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,111,116,97,116,101,82,97,100,105,97,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,111,116,97,116,101,82,97,100,105,97,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,109,112,111,115,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,99,111,109,112,111,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,114,111,116,97,116,105,111,110,73,100,101,110,116,105,116,121,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,108,97,109,98,100,97,41,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,32,63,32,108,97,109,98,100,97,32,43,32,77,97,116,104,46,114,111,117,110,100,40,45,108,97,109,98,100,97,32,47,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,41,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,32,58,32,108,97,109,98,100,97,44,32,112,104,105,93,59,92,110,125,92,110,92,110,114,111,116,97,116,105,111,110,73,100,101,110,116,105,116,121,46,105,110,118,101,114,116,32,61,32,114,111,116,97,116,105,111,110,73,100,101,110,116,105,116,121,59,92,110,92,110,102,117,110,99,116,105,111,110,32,114,111,116,97,116,101,82,97,100,105,97,110,115,40,100,101,108,116,97,76,97,109,98,100,97,44,32,100,101,108,116,97,80,104,105,44,32,100,101,108,116,97,71,97,109,109,97,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,100,101,108,116,97,76,97,109,98,100,97,32,37,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,41,32,63,32,40,100,101,108,116,97,80,104,105,32,124,124,32,100,101,108,116,97,71,97,109,109,97,32,63,32,40,48,44,95,99,111,109,112,111,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,114,111,116,97,116,105,111,110,76,97,109,98,100,97,40,100,101,108,116,97,76,97,109,98,100,97,41,44,32,114,111,116,97,116,105,111,110,80,104,105,71,97,109,109,97,40,100,101,108,116,97,80,104,105,44,32,100,101,108,116,97,71,97,109,109,97,41,41,92,110,32,32,32,32,58,32,114,111,116,97,116,105,111,110,76,97,109,98,100,97,40,100,101,108,116,97,76,97,109,98,100,97,41,41,92,110,32,32,32,32,58,32,40,100,101,108,116,97,80,104,105,32,124,124,32,100,101,108,116,97,71,97,109,109,97,32,63,32,114,111,116,97,116,105,111,110,80,104,105,71,97,109,109,97,40,100,101,108,116,97,80,104,105,44,32,100,101,108,116,97,71,97,109,109,97,41,92,110,32,32,32,32,58,32,114,111,116,97,116,105,111,110,73,100,101,110,116,105,116,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,119,97,114,100,82,111,116,97,116,105,111,110,76,97,109,98,100,97,40,100,101,108,116,97,76,97,109,98,100,97,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,108,97,109,98,100,97,32,43,61,32,100,101,108,116,97,76,97,109,98,100,97,44,32,91,108,97,109,98,100,97,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,32,63,32,108,97,109,98,100,97,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,32,58,32,108,97,109,98,100,97,32,60,32,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,32,63,32,108,97,109,98,100,97,32,43,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,32,58,32,108,97,109,98,100,97,44,32,112,104,105,93,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,111,116,97,116,105,111,110,76,97,109,98,100,97,40,100,101,108,116,97,76,97,109,98,100,97,41,32,123,92,110,32,32,118,97,114,32,114,111,116,97,116,105,111,110,32,61,32,102,111,114,119,97,114,100,82,111,116,97,116,105,111,110,76,97,109,98,100,97,40,100,101,108,116,97,76,97,109,98,100,97,41,59,92,110,32,32,114,111,116,97,116,105,111,110,46,105,110,118,101,114,116,32,61,32,102,111,114,119,97,114,100,82,111,116,97,116,105,111,110,76,97,109,98,100,97,40,45,100,101,108,116,97,76,97,109,98,100,97,41,59,92,110,32,32,114,101,116,117,114,110,32,114,111,116,97,116,105,111,110,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,111,116,97,116,105,111,110,80,104,105,71,97,109,109,97,40,100,101,108,116,97,80,104,105,44,32,100,101,108,116,97,71,97,109,109,97,41,32,123,92,110,32,32,118,97,114,32,99,111,115,68,101,108,116,97,80,104,105,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,100,101,108,116,97,80,104,105,41,44,92,110,32,32,32,32,32,32,115,105,110,68,101,108,116,97,80,104,105,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,100,101,108,116,97,80,104,105,41,44,92,110,32,32,32,32,32,32,99,111,115,68,101,108,116,97,71,97,109,109,97,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,100,101,108,116,97,71,97,109,109,97,41,44,92,110,32,32,32,32,32,32,115,105,110,68,101,108,116,97,71,97,109,109,97,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,100,101,108,116,97,71,97,109,109,97,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,111,116,97,116,105,111,110,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,32,32,118,97,114,32,99,111,115,80,104,105,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,112,104,105,41,44,92,110,32,32,32,32,32,32,32,32,120,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,108,97,109,98,100,97,41,32,42,32,99,111,115,80,104,105,44,92,110,32,32,32,32,32,32,32,32,121,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,108,97,109,98,100,97,41,32,42,32,99,111,115,80,104,105,44,92,110,32,32,32,32,32,32,32,32,122,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,112,104,105,41,44,92,110,32,32,32,32,32,32,32,32,107,32,61,32,122,32,42,32,99,111,115,68,101,108,116,97,80,104,105,32,43,32,120,32,42,32,115,105,110,68,101,108,116,97,80,104,105,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,32,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,121,32,42,32,99,111,115,68,101,108,116,97,71,97,109,109,97,32,45,32,107,32,42,32,115,105,110,68,101,108,116,97,71,97,109,109,97,44,32,120,32,42,32,99,111,115,68,101,108,116,97,80,104,105,32,45,32,122,32,42,32,115,105,110,68,101,108,116,97,80,104,105,41,44,92,110,32,32,32,32,32,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,105,110,41,40,107,32,42,32,99,111,115,68,101,108,116,97,71,97,109,109,97,32,43,32,121,32,42,32,115,105,110,68,101,108,116,97,71,97,109,109,97,41,92,110,32,32,32,32,93,59,92,110,32,32,125,92,110,92,110,32,32,114,111,116,97,116,105,111,110,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,108,97,109,98,100,97,44,32,112,104,105,41,32,123,92,110,32,32,32,32,118,97,114,32,99,111,115,80,104,105,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,112,104,105,41,44,92,110,32,32,32,32,32,32,32,32,120,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,108,97,109,98,100,97,41,32,42,32,99,111,115,80,104,105,44,92,110,32,32,32,32,32,32,32,32,121,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,108,97,109,98,100,97,41,32,42,32,99,111,115,80,104,105,44,92,110,32,32,32,32,32,32,32,32,122,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,112,104,105,41,44,92,110,32,32,32,32,32,32,32,32,107,32,61,32,122,32,42,32,99,111,115,68,101,108,116,97,71,97,109,109,97,32,45,32,121,32,42,32,115,105,110,68,101,108,116,97,71,97,109,109,97,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,32,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,121,32,42,32,99,111,115,68,101,108,116,97,71,97,109,109,97,32,43,32,122,32,42,32,115,105,110,68,101,108,116,97,71,97,109,109,97,44,32,120,32,42,32,99,111,115,68,101,108,116,97,80,104,105,32,43,32,107,32,42,32,115,105,110,68,101,108,116,97,80,104,105,41,44,92,110,32,32,32,32,32,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,105,110,41,40,107,32,42,32,99,111,115,68,101,108,116,97,80,104,105,32,45,32,120,32,42,32,115,105,110,68,101,108,116,97,80,104,105,41,92,110,32,32,32,32,93,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,114,111,116,97,116,105,111,110,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,114,111,116,97,116,101,41,32,123,92,110,32,32,114,111,116,97,116,101,32,61,32,114,111,116,97,116,101,82,97,100,105,97,110,115,40,114,111,116,97,116,101,91,48,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,44,32,114,111,116,97,116,101,91,49,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,44,32,114,111,116,97,116,101,46,108,101,110,103,116,104,32,62,32,50,32,63,32,114,111,116,97,116,101,91,50,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,32,58,32,48,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,119,97,114,100,40,99,111,111,114,100,105,110,97,116,101,115,41,32,123,92,110,32,32,32,32,99,111,111,114,100,105,110,97,116,101,115,32,61,32,114,111,116,97,116,101,40,99,111,111,114,100,105,110,97,116,101,115,91,48,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,44,32,99,111,111,114,100,105,110,97,116,101,115,91,49,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,111,114,100,105,110,97,116,101,115,91,48,93,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,103,114,101,101,115,44,32,99,111,111,114,100,105,110,97,116,101,115,91,49,93,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,103,114,101,101,115,44,32,99,111,111,114,100,105,110,97,116,101,115,59,92,110,32,32,125,92,110,92,110,32,32,102,111,114,119,97,114,100,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,99,111,111,114,100,105,110,97,116,101,115,41,32,123,92,110,32,32,32,32,99,111,111,114,100,105,110,97,116,101,115,32,61,32,114,111,116,97,116,101,46,105,110,118,101,114,116,40,99,111,111,114,100,105,110,97,116,101,115,91,48,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,44,32,99,111,111,114,100,105,110,97,116,101,115,91,49,93,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,100,105,97,110,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,111,114,100,105,110,97,116,101,115,91,48,93,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,103,114,101,101,115,44,32,99,111,111,114,100,105,110,97,116,101,115,91,49,93,32,42,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,103,114,101,101,115,44,32,99,111,111,114,100,105,110,97,116,101,115,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,111,114,119,97,114,100,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,114,111,116,97,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,115,116,114,101,97,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,115,116,114,101,97,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,115,116,114,101,97,109,71,101,111,109,101,116,114,121,40,103,101,111,109,101,116,114,121,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,105,102,32,40,103,101,111,109,101,116,114,121,32,38,38,32,115,116,114,101,97,109,71,101,111,109,101,116,114,121,84,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,103,101,111,109,101,116,114,121,46,116,121,112,101,41,41,32,123,92,110,32,32,32,32,115,116,114,101,97,109,71,101,111,109,101,116,114,121,84,121,112,101,91,103,101,111,109,101,116,114,121,46,116,121,112,101,93,40,103,101,111,109,101,116,114,121,44,32,115,116,114,101,97,109,41,59,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,115,116,114,101,97,109,79,98,106,101,99,116,84,121,112,101,32,61,32,123,92,110,32,32,70,101,97,116,117,114,101,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,115,116,114,101,97,109,71,101,111,109,101,116,114,121,40,111,98,106,101,99,116,46,103,101,111,109,101,116,114,121,44,32,115,116,114,101,97,109,41,59,92,110,32,32,125,44,92,110,32,32,70,101,97,116,117,114,101,67,111,108,108,101,99,116,105,111,110,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,118,97,114,32,102,101,97,116,117,114,101,115,32,61,32,111,98,106,101,99,116,46,102,101,97,116,117,114,101,115,44,32,105,32,61,32,45,49,44,32,110,32,61,32,102,101,97,116,117,114,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,115,116,114,101,97,109,71,101,111,109,101,116,114,121,40,102,101,97,116,117,114,101,115,91,105,93,46,103,101,111,109,101,116,114,121,44,32,115,116,114,101,97,109,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,115,116,114,101,97,109,71,101,111,109,101,116,114,121,84,121,112,101,32,61,32,123,92,110,32,32,83,112,104,101,114,101,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,115,116,114,101,97,109,46,115,112,104,101,114,101,40,41,59,92,110,32,32,125,44,92,110,32,32,80,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,111,98,106,101,99,116,32,61,32,111,98,106,101,99,116,46,99,111,111,114,100,105,110,97,116,101,115,59,92,110,32,32,32,32,115,116,114,101,97,109,46,112,111,105,110,116,40,111,98,106,101,99,116,91,48,93,44,32,111,98,106,101,99,116,91,49,93,44,32,111,98,106,101,99,116,91,50,93,41,59,92,110,32,32,125,44,92,110,32,32,77,117,108,116,105,80,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,118,97,114,32,99,111,111,114,100,105,110,97,116,101,115,32,61,32,111,98,106,101,99,116,46,99,111,111,114,100,105,110,97,116,101,115,44,32,105,32,61,32,45,49,44,32,110,32,61,32,99,111,111,114,100,105,110,97,116,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,111,98,106,101,99,116,32,61,32,99,111,111,114,100,105,110,97,116,101,115,91,105,93,44,32,115,116,114,101,97,109,46,112,111,105,110,116,40,111,98,106,101,99,116,91,48,93,44,32,111,98,106,101,99,116,91,49,93,44,32,111,98,106,101,99,116,91,50,93,41,59,92,110,32,32,125,44,92,110,32,32,76,105,110,101,83,116,114,105,110,103,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,115,116,114,101,97,109,76,105,110,101,40,111,98,106,101,99,116,46,99,111,111,114,100,105,110,97,116,101,115,44,32,115,116,114,101,97,109,44,32,48,41,59,92,110,32,32,125,44,92,110,32,32,77,117,108,116,105,76,105,110,101,83,116,114,105,110,103,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,118,97,114,32,99,111,111,114,100,105,110,97,116,101,115,32,61,32,111,98,106,101,99,116,46,99,111,111,114,100,105,110,97,116,101,115,44,32,105,32,61,32,45,49,44,32,110,32,61,32,99,111,111,114,100,105,110,97,116,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,115,116,114,101,97,109,76,105,110,101,40,99,111,111,114,100,105,110,97,116,101,115,91,105,93,44,32,115,116,114,101,97,109,44,32,48,41,59,92,110,32,32,125,44,92,110,32,32,80,111,108,121,103,111,110,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,115,116,114,101,97,109,80,111,108,121,103,111,110,40,111,98,106,101,99,116,46,99,111,111,114,100,105,110,97,116,101,115,44,32,115,116,114,101,97,109,41,59,92,110,32,32,125,44,92,110,32,32,77,117,108,116,105,80,111,108,121,103,111,110,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,118,97,114,32,99,111,111,114,100,105,110,97,116,101,115,32,61,32,111,98,106,101,99,116,46,99,111,111,114,100,105,110,97,116,101,115,44,32,105,32,61,32,45,49,44,32,110,32,61,32,99,111,111,114,100,105,110,97,116,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,115,116,114,101,97,109,80,111,108,121,103,111,110,40,99,111,111,114,100,105,110,97,116,101,115,91,105,93,44,32,115,116,114,101,97,109,41,59,92,110,32,32,125,44,92,110,32,32,71,101,111,109,101,116,114,121,67,111,108,108,101,99,116,105,111,110,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,118,97,114,32,103,101,111,109,101,116,114,105,101,115,32,61,32,111,98,106,101,99,116,46,103,101,111,109,101,116,114,105,101,115,44,32,105,32,61,32,45,49,44,32,110,32,61,32,103,101,111,109,101,116,114,105,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,115,116,114,101,97,109,71,101,111,109,101,116,114,121,40,103,101,111,109,101,116,114,105,101,115,91,105,93,44,32,115,116,114,101,97,109,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,114,101,97,109,76,105,110,101,40,99,111,111,114,100,105,110,97,116,101,115,44,32,115,116,114,101,97,109,44,32,99,108,111,115,101,100,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,45,49,44,32,110,32,61,32,99,111,111,114,100,105,110,97,116,101,115,46,108,101,110,103,116,104,32,45,32,99,108,111,115,101,100,44,32,99,111,111,114,100,105,110,97,116,101,59,92,110,32,32,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,99,111,111,114,100,105,110,97,116,101,32,61,32,99,111,111,114,100,105,110,97,116,101,115,91,105,93,44,32,115,116,114,101,97,109,46,112,111,105,110,116,40,99,111,111,114,100,105,110,97,116,101,91,48,93,44,32,99,111,111,114,100,105,110,97,116,101,91,49,93,44,32,99,111,111,114,100,105,110,97,116,101,91,50,93,41,59,92,110,32,32,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,114,101,97,109,80,111,108,121,103,111,110,40,99,111,111,114,100,105,110,97,116,101,115,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,45,49,44,32,110,32,61,32,99,111,111,114,100,105,110,97,116,101,115,46,108,101,110,103,116,104,59,92,110,32,32,115,116,114,101,97,109,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,59,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,115,116,114,101,97,109,76,105,110,101,40,99,111,111,114,100,105,110,97,116,101,115,91,105,93,44,32,115,116,114,101,97,109,44,32,49,41,59,92,110,32,32,115,116,114,101,97,109,46,112,111,108,121,103,111,110,69,110,100,40,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,111,98,106,101,99,116,44,32,115,116,114,101,97,109,41,32,123,92,110,32,32,105,102,32,40,111,98,106,101,99,116,32,38,38,32,115,116,114,101,97,109,79,98,106,101,99,116,84,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,98,106,101,99,116,46,116,121,112,101,41,41,32,123,92,110,32,32,32,32,115,116,114,101,97,109,79,98,106,101,99,116,84,121,112,101,91,111,98,106,101,99,116,46,116,121,112,101,93,40,111,98,106,101,99,116,44,32,115,116,114,101,97,109,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,115,116,114,101,97,109,71,101,111,109,101,116,114,121,40,111,98,106,101,99,116,44,32,115,116,114,101,97,109,41,59,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,115,116,114,101,97,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,116,114,97,110,115,102,111,114,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,116,114,97,110,115,102,111,114,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,97,110,115,102,111,114,109,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,114,97,110,115,102,111,114,109,101,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,109,101,116,104,111,100,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,115,116,114,101,97,109,58,32,116,114,97,110,115,102,111,114,109,101,114,40,109,101,116,104,111,100,115,41,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,101,114,40,109,101,116,104,111,100,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,115,116,114,101,97,109,41,32,123,92,110,32,32,32,32,118,97,114,32,115,32,61,32,110,101,119,32,84,114,97,110,115,102,111,114,109,83,116,114,101,97,109,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,109,101,116,104,111,100,115,41,32,115,91,107,101,121,93,32,61,32,109,101,116,104,111,100,115,91,107,101,121,93,59,92,110,32,32,32,32,115,46,115,116,114,101,97,109,32,61,32,115,116,114,101,97,109,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,84,114,97,110,115,102,111,114,109,83,116,114,101,97,109,40,41,32,123,125,92,110,92,110,84,114,97,110,115,102,111,114,109,83,116,114,101,97,109,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,84,114,97,110,115,102,111,114,109,83,116,114,101,97,109,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,32,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,120,44,32,121,41,59,32,125,44,92,110,32,32,115,112,104,101,114,101,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,116,104,105,115,46,115,116,114,101,97,109,46,115,112,104,101,114,101,40,41,59,32,125,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,116,104,105,115,46,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,59,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,116,104,105,115,46,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,59,32,125,44,92,110,32,32,112,111,108,121,103,111,110,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,116,104,105,115,46,115,116,114,101,97,109,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,59,32,125,44,92,110,32,32,112,111,108,121,103,111,110,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,116,104,105,115,46,115,116,114,101,97,109,46,112,111,108,121,103,111,110,69,110,100,40,41,59,32,125,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,116,114,97,110,115,102,111,114,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,97,99,99,101,115,115,111,114,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,97,99,99,101,115,115,111,114,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,111,112,116,105,111,110,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,111,112,116,105,111,110,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,113,117,105,114,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,113,117,105,114,101,100,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,111,112,116,105,111,110,97,108,40,102,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,114,101,113,117,105,114,101,100,40,102,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,113,117,105,114,101,100,40,102,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,102,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,92,110,32,32,114,101,116,117,114,110,32,102,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,97,99,99,101,115,115,111,114,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,104,117,102,102,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,104,117,102,102,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,108,105,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,108,105,99,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,115,108,105,99,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,92,110,92,110,102,117,110,99,116,105,111,110,32,115,104,117,102,102,108,101,40,97,114,114,97,121,41,32,123,92,110,32,32,118,97,114,32,109,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,116,44,92,110,32,32,32,32,32,32,105,59,92,110,92,110,32,32,119,104,105,108,101,32,40,109,41,32,123,92,110,32,32,32,32,105,32,61,32,77,97,116,104,46,114,97,110,100,111,109,40,41,32,42,32,109,45,45,32,124,32,48,59,92,110,32,32,32,32,116,32,61,32,97,114,114,97,121,91,109,93,59,92,110,32,32,32,32,97,114,114,97,121,91,109,93,32,61,32,97,114,114,97,121,91,105,93,59,92,110,32,32,32,32,97,114,114,97,121,91,105,93,32,61,32,116,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,99,108,117,115,116,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,99,108,117,115,116,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,83,101,112,97,114,97,116,105,111,110,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,46,112,97,114,101,110,116,32,61,61,61,32,98,46,112,97,114,101,110,116,32,63,32,49,32,58,32,50,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,101,97,110,88,40,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,99,104,105,108,100,114,101,110,46,114,101,100,117,99,101,40,109,101,97,110,88,82,101,100,117,99,101,44,32,48,41,32,47,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,101,97,110,88,82,101,100,117,99,101,40,120,44,32,99,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,32,43,32,99,46,120,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,97,120,89,40,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,49,32,43,32,99,104,105,108,100,114,101,110,46,114,101,100,117,99,101,40,109,97,120,89,82,101,100,117,99,101,44,32,48,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,97,120,89,82,101,100,117,99,101,40,121,44,32,99,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,121,44,32,99,46,121,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,101,97,102,76,101,102,116,40,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,99,104,105,108,100,114,101,110,59,92,110,32,32,119,104,105,108,101,32,40,99,104,105,108,100,114,101,110,32,61,32,110,111,100,101,46,99,104,105,108,100,114,101,110,41,32,110,111,100,101,32,61,32,99,104,105,108,100,114,101,110,91,48,93,59,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,101,97,102,82,105,103,104,116,40,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,99,104,105,108,100,114,101,110,59,92,110,32,32,119,104,105,108,101,32,40,99,104,105,108,100,114,101,110,32,61,32,110,111,100,101,46,99,104,105,108,100,114,101,110,41,32,110,111,100,101,32,61,32,99,104,105,108,100,114,101,110,91,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,45,32,49,93,59,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,115,101,112,97,114,97,116,105,111,110,32,61,32,100,101,102,97,117,108,116,83,101,112,97,114,97,116,105,111,110,44,92,110,32,32,32,32,32,32,100,120,32,61,32,49,44,92,110,32,32,32,32,32,32,100,121,32,61,32,49,44,92,110,32,32,32,32,32,32,110,111,100,101,83,105,122,101,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,108,117,115,116,101,114,40,114,111,111,116,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,101,118,105,111,117,115,78,111,100,101,44,92,110,32,32,32,32,32,32,32,32,120,32,61,32,48,59,92,110,92,110,32,32,32,32,47,47,32,70,105,114,115,116,32,119,97,108,107,44,32,99,111,109,112,117,116,105,110,103,32,116,104,101,32,105,110,105,116,105,97,108,32,120,32,38,32,121,32,118,97,108,117,101,115,46,92,110,32,32,32,32,114,111,111,116,46,101,97,99,104,65,102,116,101,114,40,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,110,111,100,101,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,120,32,61,32,109,101,97,110,88,40,99,104,105,108,100,114,101,110,41,59,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,121,32,61,32,109,97,120,89,40,99,104,105,108,100,114,101,110,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,120,32,61,32,112,114,101,118,105,111,117,115,78,111,100,101,32,63,32,120,32,43,61,32,115,101,112,97,114,97,116,105,111,110,40,110,111,100,101,44,32,112,114,101,118,105,111,117,115,78,111,100,101,41,32,58,32,48,59,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,121,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,112,114,101,118,105,111,117,115,78,111,100,101,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,118,97,114,32,108,101,102,116,32,61,32,108,101,97,102,76,101,102,116,40,114,111,111,116,41,44,92,110,32,32,32,32,32,32,32,32,114,105,103,104,116,32,61,32,108,101,97,102,82,105,103,104,116,40,114,111,111,116,41,44,92,110,32,32,32,32,32,32,32,32,120,48,32,61,32,108,101,102,116,46,120,32,45,32,115,101,112,97,114,97,116,105,111,110,40,108,101,102,116,44,32,114,105,103,104,116,41,32,47,32,50,44,92,110,32,32,32,32,32,32,32,32,120,49,32,61,32,114,105,103,104,116,46,120,32,43,32,115,101,112,97,114,97,116,105,111,110,40,114,105,103,104,116,44,32,108,101,102,116,41,32,47,32,50,59,92,110,92,110,32,32,32,32,47,47,32,83,101,99,111,110,100,32,119,97,108,107,44,32,110,111,114,109,97,108,105,122,105,110,103,32,120,32,38,32,121,32,116,111,32,116,104,101,32,100,101,115,105,114,101,100,32,115,105,122,101,46,92,110,32,32,32,32,114,101,116,117,114,110,32,114,111,111,116,46,101,97,99,104,65,102,116,101,114,40,110,111,100,101,83,105,122,101,32,63,32,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,46,120,32,61,32,40,110,111,100,101,46,120,32,45,32,114,111,111,116,46,120,41,32,42,32,100,120,59,92,110,32,32,32,32,32,32,110,111,100,101,46,121,32,61,32,40,114,111,111,116,46,121,32,45,32,110,111,100,101,46,121,41,32,42,32,100,121,59,92,110,32,32,32,32,125,32,58,32,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,46,120,32,61,32,40,110,111,100,101,46,120,32,45,32,120,48,41,32,47,32,40,120,49,32,45,32,120,48,41,32,42,32,100,120,59,92,110,32,32,32,32,32,32,110,111,100,101,46,121,32,61,32,40,49,32,45,32,40,114,111,111,116,46,121,32,63,32,110,111,100,101,46,121,32,47,32,114,111,111,116,46,121,32,58,32,49,41,41,32,42,32,100,121,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,99,108,117,115,116,101,114,46,115,101,112,97,114,97,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,101,112,97,114,97,116,105,111,110,32,61,32,120,44,32,99,108,117,115,116,101,114,41,32,58,32,115,101,112,97,114,97,116,105,111,110,59,92,110,32,32,125,59,92,110,92,110,32,32,99,108,117,115,116,101,114,46,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,110,111,100,101,83,105,122,101,32,61,32,102,97,108,115,101,44,32,100,120,32,61,32,43,120,91,48,93,44,32,100,121,32,61,32,43,120,91,49,93,44,32,99,108,117,115,116,101,114,41,32,58,32,40,110,111,100,101,83,105,122,101,32,63,32,110,117,108,108,32,58,32,91,100,120,44,32,100,121,93,41,59,92,110,32,32,125,59,92,110,92,110,32,32,99,108,117,115,116,101,114,46,110,111,100,101,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,110,111,100,101,83,105,122,101,32,61,32,116,114,117,101,44,32,100,120,32,61,32,43,120,91,48,93,44,32,100,121,32,61,32,43,120,91,49,93,44,32,99,108,117,115,116,101,114,41,32,58,32,40,110,111,100,101,83,105,122,101,32,63,32,91,100,120,44,32,100,121,93,32,58,32,110,117,108,108,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,108,117,115,116,101,114,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,99,108,117,115,116,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,110,115,116,97,110,116,90,101,114,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,110,115,116,97,110,116,90,101,114,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,99,111,110,115,116,97,110,116,90,101,114,111,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,48,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,97,110,99,101,115,116,111,114,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,97,110,99,101,115,116,111,114,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,44,32,110,111,100,101,115,32,61,32,91,110,111,100,101,93,59,92,110,32,32,119,104,105,108,101,32,40,110,111,100,101,32,61,32,110,111,100,101,46,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,110,111,100,101,115,46,112,117,115,104,40,110,111,100,101,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,97,110,99,101,115,116,111,114,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,99,111,117,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,99,111,117,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,99,111,117,110,116,40,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,115,117,109,32,61,32,48,44,92,110,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,110,111,100,101,46,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,105,32,61,32,99,104,105,108,100,114,101,110,32,38,38,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,92,110,32,32,105,102,32,40,33,105,41,32,115,117,109,32,61,32,49,59,92,110,32,32,101,108,115,101,32,119,104,105,108,101,32,40,45,45,105,32,62,61,32,48,41,32,115,117,109,32,43,61,32,99,104,105,108,100,114,101,110,91,105,93,46,118,97,108,117,101,59,92,110,32,32,110,111,100,101,46,118,97,108,117,101,32,61,32,115,117,109,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,65,102,116,101,114,40,99,111,117,110,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,99,111,117,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,100,101,115,99,101,110,100,97,110,116,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,100,101,115,99,101,110,100,97,110,116,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,115,32,61,32,91,93,59,92,110,32,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,110,111,100,101,115,46,112,117,115,104,40,110,111,100,101,41,59,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,100,101,115,99,101,110,100,97,110,116,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,101,97,99,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,101,97,99,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,44,32,99,117,114,114,101,110,116,44,32,110,101,120,116,32,61,32,91,110,111,100,101,93,44,32,99,104,105,108,100,114,101,110,44,32,105,44,32,110,59,92,110,32,32,100,111,32,123,92,110,32,32,32,32,99,117,114,114,101,110,116,32,61,32,110,101,120,116,46,114,101,118,101,114,115,101,40,41,44,32,110,101,120,116,32,61,32,91,93,59,92,110,32,32,32,32,119,104,105,108,101,32,40,110,111,100,101,32,61,32,99,117,114,114,101,110,116,46,112,111,112,40,41,41,32,123,92,110,32,32,32,32,32,32,99,97,108,108,98,97,99,107,40,110,111,100,101,41,44,32,99,104,105,108,100,114,101,110,32,61,32,110,111,100,101,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,114,101,110,41,32,102,111,114,32,40,105,32,61,32,48,44,32,110,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,110,101,120,116,46,112,117,115,104,40,99,104,105,108,100,114,101,110,91,105,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,32,119,104,105,108,101,32,40,110,101,120,116,46,108,101,110,103,116,104,41,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,101,97,99,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,101,97,99,104,65,102,116,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,101,97,99,104,65,102,116,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,44,32,110,111,100,101,115,32,61,32,91,110,111,100,101,93,44,32,110,101,120,116,32,61,32,91,93,44,32,99,104,105,108,100,114,101,110,44,32,105,44,32,110,59,92,110,32,32,119,104,105,108,101,32,40,110,111,100,101,32,61,32,110,111,100,101,115,46,112,111,112,40,41,41,32,123,92,110,32,32,32,32,110,101,120,116,46,112,117,115,104,40,110,111,100,101,41,44,32,99,104,105,108,100,114,101,110,32,61,32,110,111,100,101,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,105,102,32,40,99,104,105,108,100,114,101,110,41,32,102,111,114,32,40,105,32,61,32,48,44,32,110,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,115,46,112,117,115,104,40,99,104,105,108,100,114,101,110,91,105,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,119,104,105,108,101,32,40,110,111,100,101,32,61,32,110,101,120,116,46,112,111,112,40,41,41,32,123,92,110,32,32,32,32,99,97,108,108,98,97,99,107,40,110,111,100,101,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,101,97,99,104,65,102,116,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,101,97,99,104,66,101,102,111,114,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,101,97,99,104,66,101,102,111,114,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,44,32,110,111,100,101,115,32,61,32,91,110,111,100,101,93,44,32,99,104,105,108,100,114,101,110,44,32,105,59,92,110,32,32,119,104,105,108,101,32,40,110,111,100,101,32,61,32,110,111,100,101,115,46,112,111,112,40,41,41,32,123,92,110,32,32,32,32,99,97,108,108,98,97,99,107,40,110,111,100,101,41,44,32,99,104,105,108,100,114,101,110,32,61,32,110,111,100,101,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,105,102,32,40,99,104,105,108,100,114,101,110,41,32,102,111,114,32,40,105,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,45,32,49,59,32,105,32,62,61,32,48,59,32,45,45,105,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,115,46,112,117,115,104,40,99,104,105,108,100,114,101,110,91,105,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,101,97,99,104,66,101,102,111,114,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,78,111,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,78,111,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,109,112,117,116,101,72,101,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,109,112,117,116,101,72,101,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,105,101,114,97,114,99,104,121,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,117,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,117,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,99,111,117,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,97,99,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,97,99,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,101,97,99,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,97,99,104,66,101,102,111,114,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,97,99,104,66,101,102,111,114,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,101,97,99,104,66,101,102,111,114,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,97,99,104,65,102,116,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,97,99,104,65,102,116,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,101,97,99,104,65,102,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,117,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,117,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,115,117,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,111,114,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,111,114,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,115,111,114,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,112,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,110,99,101,115,116,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,110,99,101,115,116,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,97,110,99,101,115,116,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,115,99,101,110,100,97,110,116,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,115,99,101,110,100,97,110,116,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,100,101,115,99,101,110,100,97,110,116,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,101,97,118,101,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,101,97,118,101,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,108,101,97,118,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,107,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,108,105,110,107,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,104,105,101,114,97,114,99,104,121,40,100,97,116,97,44,32,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,118,97,114,32,114,111,111,116,32,61,32,110,101,119,32,78,111,100,101,40,100,97,116,97,41,44,92,110,32,32,32,32,32,32,118,97,108,117,101,100,32,61,32,43,100,97,116,97,46,118,97,108,117,101,32,38,38,32,40,114,111,111,116,46,118,97,108,117,101,32,61,32,100,97,116,97,46,118,97,108,117,101,41,44,92,110,32,32,32,32,32,32,110,111,100,101,44,92,110,32,32,32,32,32,32,110,111,100,101,115,32,61,32,91,114,111,111,116,93,44,92,110,32,32,32,32,32,32,99,104,105,108,100,44,92,110,32,32,32,32,32,32,99,104,105,108,100,115,44,92,110,32,32,32,32,32,32,105,44,92,110,32,32,32,32,32,32,110,59,92,110,92,110,32,32,105,102,32,40,99,104,105,108,100,114,101,110,32,61,61,32,110,117,108,108,41,32,99,104,105,108,100,114,101,110,32,61,32,100,101,102,97,117,108,116,67,104,105,108,100,114,101,110,59,92,110,92,110,32,32,119,104,105,108,101,32,40,110,111,100,101,32,61,32,110,111,100,101,115,46,112,111,112,40,41,41,32,123,92,110,32,32,32,32,105,102,32,40,118,97,108,117,101,100,41,32,110,111,100,101,46,118,97,108,117,101,32,61,32,43,110,111,100,101,46,100,97,116,97,46,118,97,108,117,101,59,92,110,32,32,32,32,105,102,32,40,40,99,104,105,108,100,115,32,61,32,99,104,105,108,100,114,101,110,40,110,111,100,101,46,100,97,116,97,41,41,32,38,38,32,40,110,32,61,32,99,104,105,108,100,115,46,108,101,110,103,116,104,41,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,46,99,104,105,108,100,114,101,110,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,110,32,45,32,49,59,32,105,32,62,61,32,48,59,32,45,45,105,41,32,123,92,110,32,32,32,32,32,32,32,32,110,111,100,101,115,46,112,117,115,104,40,99,104,105,108,100,32,61,32,110,111,100,101,46,99,104,105,108,100,114,101,110,91,105,93,32,61,32,110,101,119,32,78,111,100,101,40,99,104,105,108,100,115,91,105,93,41,41,59,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,46,112,97,114,101,110,116,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,46,100,101,112,116,104,32,61,32,110,111,100,101,46,100,101,112,116,104,32,43,32,49,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,114,111,111,116,46,101,97,99,104,66,101,102,111,114,101,40,99,111,109,112,117,116,101,72,101,105,103,104,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,100,101,95,99,111,112,121,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,104,105,101,114,97,114,99,104,121,40,116,104,105,115,41,46,101,97,99,104,66,101,102,111,114,101,40,99,111,112,121,68,97,116,97,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,67,104,105,108,100,114,101,110,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,99,104,105,108,100,114,101,110,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,112,121,68,97,116,97,40,110,111,100,101,41,32,123,92,110,32,32,110,111,100,101,46,100,97,116,97,32,61,32,110,111,100,101,46,100,97,116,97,46,100,97,116,97,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,72,101,105,103,104,116,40,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,104,101,105,103,104,116,32,61,32,48,59,92,110,32,32,100,111,32,110,111,100,101,46,104,101,105,103,104,116,32,61,32,104,101,105,103,104,116,59,92,110,32,32,119,104,105,108,101,32,40,40,110,111,100,101,32,61,32,110,111,100,101,46,112,97,114,101,110,116,41,32,38,38,32,40,110,111,100,101,46,104,101,105,103,104,116,32,60,32,43,43,104,101,105,103,104,116,41,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,78,111,100,101,40,100,97,116,97,41,32,123,92,110,32,32,116,104,105,115,46,100,97,116,97,32,61,32,100,97,116,97,59,92,110,32,32,116,104,105,115,46,100,101,112,116,104,32,61,92,110,32,32,116,104,105,115,46,104,101,105,103,104,116,32,61,32,48,59,92,110,32,32,116,104,105,115,46,112,97,114,101,110,116,32,61,32,110,117,108,108,59,92,110,125,92,110,92,110,78,111,100,101,46,112,114,111,116,111,116,121,112,101,32,61,32,104,105,101,114,97,114,99,104,121,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,78,111,100,101,44,92,110,32,32,99,111,117,110,116,58,32,95,99,111,117,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,101,97,99,104,58,32,95,101,97,99,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,101,97,99,104,65,102,116,101,114,58,32,95,101,97,99,104,65,102,116,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,101,97,99,104,66,101,102,111,114,101,58,32,95,101,97,99,104,66,101,102,111,114,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,115,117,109,58,32,95,115,117,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,115,111,114,116,58,32,95,115,111,114,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,112,97,116,104,58,32,95,112,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,97,110,99,101,115,116,111,114,115,58,32,95,97,110,99,101,115,116,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,100,101,115,99,101,110,100,97,110,116,115,58,32,95,100,101,115,99,101,110,100,97,110,116,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,108,101,97,118,101,115,58,32,95,108,101,97,118,101,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,108,105,110,107,115,58,32,95,108,105,110,107,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,99,111,112,121,58,32,110,111,100,101,95,99,111,112,121,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,108,101,97,118,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,108,101,97,118,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,108,101,97,118,101,115,32,61,32,91,93,59,92,110,32,32,116,104,105,115,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,110,111,100,101,46,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,108,101,97,118,101,115,46,112,117,115,104,40,110,111,100,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,108,101,97,118,101,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,108,101,97,118,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,108,105,110,107,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,108,105,110,107,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,114,111,111,116,32,61,32,116,104,105,115,44,32,108,105,110,107,115,32,61,32,91,93,59,92,110,32,32,114,111,111,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,111,100,101,32,33,61,61,32,114,111,111,116,41,32,123,32,47,47,32,68,111,110,226,128,153,116,32,105,110,99,108,117,100,101,32,116,104,101,32,114,111,111,116,226,128,153,115,32,112,97,114,101,110,116,44,32,105,102,32,97,110,121,46,92,110,32,32,32,32,32,32,108,105,110,107,115,46,112,117,115,104,40,123,115,111,117,114,99,101,58,32,110,111,100,101,46,112,97,114,101,110,116,44,32,116,97,114,103,101,116,58,32,110,111,100,101,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,108,105,110,107,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,108,105,110,107,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,112,97,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,112,97,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,101,110,100,41,32,123,92,110,32,32,118,97,114,32,115,116,97,114,116,32,61,32,116,104,105,115,44,92,110,32,32,32,32,32,32,97,110,99,101,115,116,111,114,32,61,32,108,101,97,115,116,67,111,109,109,111,110,65,110,99,101,115,116,111,114,40,115,116,97,114,116,44,32,101,110,100,41,44,92,110,32,32,32,32,32,32,110,111,100,101,115,32,61,32,91,115,116,97,114,116,93,59,92,110,32,32,119,104,105,108,101,32,40,115,116,97,114,116,32,33,61,61,32,97,110,99,101,115,116,111,114,41,32,123,92,110,32,32,32,32,115,116,97,114,116,32,61,32,115,116,97,114,116,46,112,97,114,101,110,116,59,92,110,32,32,32,32,110,111,100,101,115,46,112,117,115,104,40,115,116,97,114,116,41,59,92,110,32,32,125,92,110,32,32,118,97,114,32,107,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,59,92,110,32,32,119,104,105,108,101,32,40,101,110,100,32,33,61,61,32,97,110,99,101,115,116,111,114,41,32,123,92,110,32,32,32,32,110,111,100,101,115,46,115,112,108,105,99,101,40,107,44,32,48,44,32,101,110,100,41,59,92,110,32,32,32,32,101,110,100,32,61,32,101,110,100,46,112,97,114,101,110,116,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,101,97,115,116,67,111,109,109,111,110,65,110,99,101,115,116,111,114,40,97,44,32,98,41,32,123,92,110,32,32,105,102,32,40,97,32,61,61,61,32,98,41,32,114,101,116,117,114,110,32,97,59,92,110,32,32,118,97,114,32,97,78,111,100,101,115,32,61,32,97,46,97,110,99,101,115,116,111,114,115,40,41,44,92,110,32,32,32,32,32,32,98,78,111,100,101,115,32,61,32,98,46,97,110,99,101,115,116,111,114,115,40,41,44,92,110,32,32,32,32,32,32,99,32,61,32,110,117,108,108,59,92,110,32,32,97,32,61,32,97,78,111,100,101,115,46,112,111,112,40,41,59,92,110,32,32,98,32,61,32,98,78,111,100,101,115,46,112,111,112,40,41,59,92,110,32,32,119,104,105,108,101,32,40,97,32,61,61,61,32,98,41,32,123,92,110,32,32,32,32,99,32,61,32,97,59,92,110,32,32,32,32,97,32,61,32,97,78,111,100,101,115,46,112,111,112,40,41,59,92,110,32,32,32,32,98,32,61,32,98,78,111,100,101,115,46,112,111,112,40,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,99,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,112,97,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,115,111,114,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,115,111,114,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,111,109,112,97,114,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,111,100,101,46,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,46,99,104,105,108,100,114,101,110,46,115,111,114,116,40,99,111,109,112,97,114,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,115,111,114,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,115,117,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,115,117,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,65,102,116,101,114,40,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,118,97,114,32,115,117,109,32,61,32,43,118,97,108,117,101,40,110,111,100,101,46,100,97,116,97,41,32,124,124,32,48,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,110,111,100,101,46,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,32,32,105,32,61,32,99,104,105,108,100,114,101,110,32,38,38,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,45,45,105,32,62,61,32,48,41,32,115,117,109,32,43,61,32,99,104,105,108,100,114,101,110,91,105,93,46,118,97,108,117,101,59,92,110,32,32,32,32,110,111,100,101,46,118,97,108,117,101,32,61,32,115,117,109,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,115,117,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,108,117,115,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,108,117,115,116,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,105,101,114,97,114,99,104,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,104,105,101,114,97,114,99,104,121,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,97,99,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,99,107,69,110,99,108,111,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,97,99,107,95,101,110,99,108,111,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,99,107,83,105,98,108,105,110,103,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,97,99,107,95,115,105,98,108,105,110,103,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,114,116,105,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,97,114,116,105,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,114,97,116,105,102,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,116,114,97,116,105,102,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,101,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,109,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,101,101,109,97,112,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,109,97,112,66,105,110,97,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,101,101,109,97,112,95,98,105,110,97,114,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,109,97,112,68,105,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,101,101,109,97,112,95,100,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,109,97,112,82,101,115,113,117,97,114,105,102,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,101,101,109,97,112,95,114,101,115,113,117,97,114,105,102,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,109,97,112,83,108,105,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,101,101,109,97,112,95,115,108,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,109,97,112,83,108,105,99,101,68,105,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,101,101,109,97,112,95,115,108,105,99,101,68,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,109,97,112,83,113,117,97,114,105,102,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,101,101,109,97,112,95,115,113,117,97,114,105,102,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,117,115,116,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,108,117,115,116,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,99,108,117,115,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,105,101,114,97,114,99,104,121,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,105,101,114,97,114,99,104,121,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,97,99,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,97,99,107,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,99,107,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,97,99,107,95,115,105,98,108,105,110,103,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,97,99,107,47,115,105,98,108,105,110,103,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,99,107,47,115,105,98,108,105,110,103,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,97,99,107,95,101,110,99,108,111,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,97,99,107,47,101,110,99,108,111,115,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,99,107,47,101,110,99,108,111,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,97,114,116,105,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,97,114,116,105,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,114,116,105,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,97,116,105,102,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,97,116,105,102,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,115,116,114,97,116,105,102,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,101,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,101,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,101,101,109,97,112,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,101,101,109,97,112,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,101,101,109,97,112,95,98,105,110,97,114,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,101,101,109,97,112,47,98,105,110,97,114,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,98,105,110,97,114,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,101,101,109,97,112,95,100,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,101,101,109,97,112,47,100,105,99,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,100,105,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,101,101,109,97,112,95,115,108,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,101,101,109,97,112,47,115,108,105,99,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,108,105,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,101,101,109,97,112,95,115,108,105,99,101,68,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,101,101,109,97,112,47,115,108,105,99,101,68,105,99,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,108,105,99,101,68,105,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,101,101,109,97,112,95,115,113,117,97,114,105,102,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,101,101,109,97,112,47,115,113,117,97,114,105,102,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,113,117,97,114,105,102,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,101,101,109,97,112,95,114,101,115,113,117,97,114,105,102,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,101,101,109,97,112,47,114,101,115,113,117,97,114,105,102,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,114,101,115,113,117,97,114,105,102,121,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,99,107,47,101,110,99,108,111,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,99,107,47,101,110,99,108,111,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,97,114,114,97,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,105,114,99,108,101,115,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,40,99,105,114,99,108,101,115,32,61,32,40,48,44,95,97,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,104,117,102,102,108,101,41,40,95,97,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,108,105,99,101,46,99,97,108,108,40,99,105,114,99,108,101,115,41,41,41,46,108,101,110,103,116,104,44,32,66,32,61,32,91,93,44,32,112,44,32,101,59,92,110,92,110,32,32,119,104,105,108,101,32,40,105,32,60,32,110,41,32,123,92,110,32,32,32,32,112,32,61,32,99,105,114,99,108,101,115,91,105,93,59,92,110,32,32,32,32,105,102,32,40,101,32,38,38,32,101,110,99,108,111,115,101,115,87,101,97,107,40,101,44,32,112,41,41,32,43,43,105,59,92,110,32,32,32,32,101,108,115,101,32,101,32,61,32,101,110,99,108,111,115,101,66,97,115,105,115,40,66,32,61,32,101,120,116,101,110,100,66,97,115,105,115,40,66,44,32,112,41,41,44,32,105,32,61,32,48,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,116,101,110,100,66,97,115,105,115,40,66,44,32,112,41,32,123,92,110,32,32,118,97,114,32,105,44,32,106,59,92,110,92,110,32,32,105,102,32,40,101,110,99,108,111,115,101,115,87,101,97,107,65,108,108,40,112,44,32,66,41,41,32,114,101,116,117,114,110,32,91,112,93,59,92,110,92,110,32,32,47,47,32,73,102,32,119,101,32,103,101,116,32,104,101,114,101,32,116,104,101,110,32,66,32,109,117,115,116,32,104,97,118,101,32,97,116,32,108,101,97,115,116,32,111,110,101,32,101,108,101,109,101,110,116,46,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,66,46,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,101,110,99,108,111,115,101,115,78,111,116,40,112,44,32,66,91,105,93,41,92,110,32,32,32,32,32,32,32,32,38,38,32,101,110,99,108,111,115,101,115,87,101,97,107,65,108,108,40,101,110,99,108,111,115,101,66,97,115,105,115,50,40,66,91,105,93,44,32,112,41,44,32,66,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,66,91,105,93,44,32,112,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,73,102,32,119,101,32,103,101,116,32,104,101,114,101,32,116,104,101,110,32,66,32,109,117,115,116,32,104,97,118,101,32,97,116,32,108,101,97,115,116,32,116,119,111,32,101,108,101,109,101,110,116,115,46,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,66,46,108,101,110,103,116,104,32,45,32,49,59,32,43,43,105,41,32,123,92,110,32,32,32,32,102,111,114,32,40,106,32,61,32,105,32,43,32,49,59,32,106,32,60,32,66,46,108,101,110,103,116,104,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,101,110,99,108,111,115,101,115,78,111,116,40,101,110,99,108,111,115,101,66,97,115,105,115,50,40,66,91,105,93,44,32,66,91,106,93,41,44,32,112,41,92,110,32,32,32,32,32,32,32,32,32,32,38,38,32,101,110,99,108,111,115,101,115,78,111,116,40,101,110,99,108,111,115,101,66,97,115,105,115,50,40,66,91,105,93,44,32,112,41,44,32,66,91,106,93,41,92,110,32,32,32,32,32,32,32,32,32,32,38,38,32,101,110,99,108,111,115,101,115,78,111,116,40,101,110,99,108,111,115,101,66,97,115,105,115,50,40,66,91,106,93,44,32,112,41,44,32,66,91,105,93,41,92,110,32,32,32,32,32,32,32,32,32,32,38,38,32,101,110,99,108,111,115,101,115,87,101,97,107,65,108,108,40,101,110,99,108,111,115,101,66,97,115,105,115,51,40,66,91,105,93,44,32,66,91,106,93,44,32,112,41,44,32,66,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,66,91,105,93,44,32,66,91,106,93,44,32,112,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,73,102,32,119,101,32,103,101,116,32,104,101,114,101,32,116,104,101,110,32,115,111,109,101,116,104,105,110,103,32,105,115,32,118,101,114,121,32,119,114,111,110,103,46,92,110,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,110,99,108,111,115,101,115,78,111,116,40,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,100,114,32,61,32,97,46,114,32,45,32,98,46,114,44,32,100,120,32,61,32,98,46,120,32,45,32,97,46,120,44,32,100,121,32,61,32,98,46,121,32,45,32,97,46,121,59,92,110,32,32,114,101,116,117,114,110,32,100,114,32,60,32,48,32,124,124,32,100,114,32,42,32,100,114,32,60,32,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,110,99,108,111,115,101,115,87,101,97,107,40,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,100,114,32,61,32,97,46,114,32,45,32,98,46,114,32,43,32,49,101,45,54,44,32,100,120,32,61,32,98,46,120,32,45,32,97,46,120,44,32,100,121,32,61,32,98,46,121,32,45,32,97,46,121,59,92,110,32,32,114,101,116,117,114,110,32,100,114,32,62,32,48,32,38,38,32,100,114,32,42,32,100,114,32,62,32,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,110,99,108,111,115,101,115,87,101,97,107,65,108,108,40,97,44,32,66,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,66,46,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,33,101,110,99,108,111,115,101,115,87,101,97,107,40,97,44,32,66,91,105,93,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,110,99,108,111,115,101,66,97,115,105,115,40,66,41,32,123,92,110,32,32,115,119,105,116,99,104,32,40,66,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,99,97,115,101,32,49,58,32,114,101,116,117,114,110,32,101,110,99,108,111,115,101,66,97,115,105,115,49,40,66,91,48,93,41,59,92,110,32,32,32,32,99,97,115,101,32,50,58,32,114,101,116,117,114,110,32,101,110,99,108,111,115,101,66,97,115,105,115,50,40,66,91,48,93,44,32,66,91,49,93,41,59,92,110,32,32,32,32,99,97,115,101,32,51,58,32,114,101,116,117,114,110,32,101,110,99,108,111,115,101,66,97,115,105,115,51,40,66,91,48,93,44,32,66,91,49,93,44,32,66,91,50,93,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,110,99,108,111,115,101,66,97,115,105,115,49,40,97,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,120,58,32,97,46,120,44,92,110,32,32,32,32,121,58,32,97,46,121,44,92,110,32,32,32,32,114,58,32,97,46,114,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,110,99,108,111,115,101,66,97,115,105,115,50,40,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,120,49,32,61,32,97,46,120,44,32,121,49,32,61,32,97,46,121,44,32,114,49,32,61,32,97,46,114,44,92,110,32,32,32,32,32,32,120,50,32,61,32,98,46,120,44,32,121,50,32,61,32,98,46,121,44,32,114,50,32,61,32,98,46,114,44,92,110,32,32,32,32,32,32,120,50,49,32,61,32,120,50,32,45,32,120,49,44,32,121,50,49,32,61,32,121,50,32,45,32,121,49,44,32,114,50,49,32,61,32,114,50,32,45,32,114,49,44,92,110,32,32,32,32,32,32,108,32,61,32,77,97,116,104,46,115,113,114,116,40,120,50,49,32,42,32,120,50,49,32,43,32,121,50,49,32,42,32,121,50,49,41,59,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,120,58,32,40,120,49,32,43,32,120,50,32,43,32,120,50,49,32,47,32,108,32,42,32,114,50,49,41,32,47,32,50,44,92,110,32,32,32,32,121,58,32,40,121,49,32,43,32,121,50,32,43,32,121,50,49,32,47,32,108,32,42,32,114,50,49,41,32,47,32,50,44,92,110,32,32,32,32,114,58,32,40,108,32,43,32,114,49,32,43,32,114,50,41,32,47,32,50,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,110,99,108,111,115,101,66,97,115,105,115,51,40,97,44,32,98,44,32,99,41,32,123,92,110,32,32,118,97,114,32,120,49,32,61,32,97,46,120,44,32,121,49,32,61,32,97,46,121,44,32,114,49,32,61,32,97,46,114,44,92,110,32,32,32,32,32,32,120,50,32,61,32,98,46,120,44,32,121,50,32,61,32,98,46,121,44,32,114,50,32,61,32,98,46,114,44,92,110,32,32,32,32,32,32,120,51,32,61,32,99,46,120,44,32,121,51,32,61,32,99,46,121,44,32,114,51,32,61,32,99,46,114,44,92,110,32,32,32,32,32,32,97,50,32,61,32,120,49,32,45,32,120,50,44,92,110,32,32,32,32,32,32,97,51,32,61,32,120,49,32,45,32,120,51,44,92,110,32,32,32,32,32,32,98,50,32,61,32,121,49,32,45,32,121,50,44,92,110,32,32,32,32,32,32,98,51,32,61,32,121,49,32,45,32,121,51,44,92,110,32,32,32,32,32,32,99,50,32,61,32,114,50,32,45,32,114,49,44,92,110,32,32,32,32,32,32,99,51,32,61,32,114,51,32,45,32,114,49,44,92,110,32,32,32,32,32,32,100,49,32,61,32,120,49,32,42,32,120,49,32,43,32,121,49,32,42,32,121,49,32,45,32,114,49,32,42,32,114,49,44,92,110,32,32,32,32,32,32,100,50,32,61,32,100,49,32,45,32,120,50,32,42,32,120,50,32,45,32,121,50,32,42,32,121,50,32,43,32,114,50,32,42,32,114,50,44,92,110,32,32,32,32,32,32,100,51,32,61,32,100,49,32,45,32,120,51,32,42,32,120,51,32,45,32,121,51,32,42,32,121,51,32,43,32,114,51,32,42,32,114,51,44,92,110,32,32,32,32,32,32,97,98,32,61,32,97,51,32,42,32,98,50,32,45,32,97,50,32,42,32,98,51,44,92,110,32,32,32,32,32,32,120,97,32,61,32,40,98,50,32,42,32,100,51,32,45,32,98,51,32,42,32,100,50,41,32,47,32,40,97,98,32,42,32,50,41,32,45,32,120,49,44,92,110,32,32,32,32,32,32,120,98,32,61,32,40,98,51,32,42,32,99,50,32,45,32,98,50,32,42,32,99,51,41,32,47,32,97,98,44,92,110,32,32,32,32,32,32,121,97,32,61,32,40,97,51,32,42,32,100,50,32,45,32,97,50,32,42,32,100,51,41,32,47,32,40,97,98,32,42,32,50,41,32,45,32,121,49,44,92,110,32,32,32,32,32,32,121,98,32,61,32,40,97,50,32,42,32,99,51,32,45,32,97,51,32,42,32,99,50,41,32,47,32,97,98,44,92,110,32,32,32,32,32,32,65,32,61,32,120,98,32,42,32,120,98,32,43,32,121,98,32,42,32,121,98,32,45,32,49,44,92,110,32,32,32,32,32,32,66,32,61,32,50,32,42,32,40,114,49,32,43,32,120,97,32,42,32,120,98,32,43,32,121,97,32,42,32,121,98,41,44,92,110,32,32,32,32,32,32,67,32,61,32,120,97,32,42,32,120,97,32,43,32,121,97,32,42,32,121,97,32,45,32,114,49,32,42,32,114,49,44,92,110,32,32,32,32,32,32,114,32,61,32,45,40,65,32,63,32,40,66,32,43,32,77,97,116,104,46,115,113,114,116,40,66,32,42,32,66,32,45,32,52,32,42,32,65,32,42,32,67,41,41,32,47,32,40,50,32,42,32,65,41,32,58,32,67,32,47,32,66,41,59,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,120,58,32,120,49,32,43,32,120,97,32,43,32,120,98,32,42,32,114,44,92,110,32,32,32,32,121,58,32,121,49,32,43,32,121,97,32,43,32,121,98,32,42,32,114,44,92,110,32,32,32,32,114,58,32,114,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,99,107,47,101,110,99,108,111,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,99,107,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,99,107,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,105,98,108,105,110,103,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,105,98,108,105,110,103,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,99,107,47,115,105,98,108,105,110,103,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,99,99,101,115,115,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,97,99,99,101,115,115,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,97,99,99,101,115,115,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,82,97,100,105,117,115,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,115,113,114,116,40,100,46,118,97,108,117,101,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,114,97,100,105,117,115,32,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,100,120,32,61,32,49,44,92,110,32,32,32,32,32,32,100,121,32,61,32,49,44,92,110,32,32,32,32,32,32,112,97,100,100,105,110,103,32,61,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,110,115,116,97,110,116,90,101,114,111,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,99,107,40,114,111,111,116,41,32,123,92,110,32,32,32,32,114,111,111,116,46,120,32,61,32,100,120,32,47,32,50,44,32,114,111,111,116,46,121,32,61,32,100,121,32,47,32,50,59,92,110,32,32,32,32,105,102,32,40,114,97,100,105,117,115,41,32,123,92,110,32,32,32,32,32,32,114,111,111,116,46,101,97,99,104,66,101,102,111,114,101,40,114,97,100,105,117,115,76,101,97,102,40,114,97,100,105,117,115,41,41,92,110,32,32,32,32,32,32,32,32,32,32,46,101,97,99,104,65,102,116,101,114,40,112,97,99,107,67,104,105,108,100,114,101,110,40,112,97,100,100,105,110,103,44,32,48,46,53,41,41,92,110,32,32,32,32,32,32,32,32,32,32,46,101,97,99,104,66,101,102,111,114,101,40,116,114,97,110,115,108,97,116,101,67,104,105,108,100,40,49,41,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,111,111,116,46,101,97,99,104,66,101,102,111,114,101,40,114,97,100,105,117,115,76,101,97,102,40,100,101,102,97,117,108,116,82,97,100,105,117,115,41,41,92,110,32,32,32,32,32,32,32,32,32,32,46,101,97,99,104,65,102,116,101,114,40,112,97,99,107,67,104,105,108,100,114,101,110,40,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,110,115,116,97,110,116,90,101,114,111,44,32,49,41,41,92,110,32,32,32,32,32,32,32,32,32,32,46,101,97,99,104,65,102,116,101,114,40,112,97,99,107,67,104,105,108,100,114,101,110,40,112,97,100,100,105,110,103,44,32,114,111,111,116,46,114,32,47,32,77,97,116,104,46,109,105,110,40,100,120,44,32,100,121,41,41,41,92,110,32,32,32,32,32,32,32,32,32,32,46,101,97,99,104,66,101,102,111,114,101,40,116,114,97,110,115,108,97,116,101,67,104,105,108,100,40,77,97,116,104,46,109,105,110,40,100,120,44,32,100,121,41,32,47,32,40,50,32,42,32,114,111,111,116,46,114,41,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,111,111,116,59,92,110,32,32,125,92,110,92,110,32,32,112,97,99,107,46,114,97,100,105,117,115,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,114,97,100,105,117,115,32,61,32,40,48,44,95,97,99,99,101,115,115,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,111,112,116,105,111,110,97,108,41,40,120,41,44,32,112,97,99,107,41,32,58,32,114,97,100,105,117,115,59,92,110,32,32,125,59,92,110,92,110,32,32,112,97,99,107,46,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,120,32,61,32,43,120,91,48,93,44,32,100,121,32,61,32,43,120,91,49,93,44,32,112,97,99,107,41,32,58,32,91,100,120,44,32,100,121,93,59,92,110,32,32,125,59,92,110,92,110,32,32,112,97,99,107,46,112,97,100,100,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,97,100,100,105,110,103,32,61,32,116,121,112,101,111,102,32,120,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,120,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,120,41,44,32,112,97,99,107,41,32,58,32,112,97,100,100,105,110,103,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,112,97,99,107,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,97,100,105,117,115,76,101,97,102,40,114,97,100,105,117,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,110,111,100,101,46,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,46,114,32,61,32,77,97,116,104,46,109,97,120,40,48,44,32,43,114,97,100,105,117,115,40,110,111,100,101,41,32,124,124,32,48,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,99,107,67,104,105,108,100,114,101,110,40,112,97,100,100,105,110,103,44,32,107,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,105,102,32,40,99,104,105,108,100,114,101,110,32,61,32,110,111,100,101,46,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,32,32,32,32,105,44,92,110,32,32,32,32,32,32,32,32,32,32,110,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,32,61,32,112,97,100,100,105,110,103,40,110,111,100,101,41,32,42,32,107,32,124,124,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,114,41,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,99,104,105,108,100,114,101,110,91,105,93,46,114,32,43,61,32,114,59,92,110,32,32,32,32,32,32,101,32,61,32,40,48,44,95,115,105,98,108,105,110,103,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,97,99,107,69,110,99,108,111,115,101,41,40,99,104,105,108,100,114,101,110,41,59,92,110,32,32,32,32,32,32,105,102,32,40,114,41,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,99,104,105,108,100,114,101,110,91,105,93,46,114,32,45,61,32,114,59,92,110,32,32,32,32,32,32,110,111,100,101,46,114,32,61,32,101,32,43,32,114,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,108,97,116,101,67,104,105,108,100,40,107,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,110,111,100,101,46,112,97,114,101,110,116,59,92,110,32,32,32,32,110,111,100,101,46,114,32,42,61,32,107,59,92,110,32,32,32,32,105,102,32,40,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,46,120,32,61,32,112,97,114,101,110,116,46,120,32,43,32,107,32,42,32,110,111,100,101,46,120,59,92,110,32,32,32,32,32,32,110,111,100,101,46,121,32,61,32,112,97,114,101,110,116,46,121,32,43,32,107,32,42,32,110,111,100,101,46,121,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,99,107,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,99,107,47,115,105,98,108,105,110,103,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,99,107,47,115,105,98,108,105,110,103,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,99,107,69,110,99,108,111,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,97,99,107,69,110,99,108,111,115,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,110,99,108,111,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,110,99,108,111,115,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,99,107,47,101,110,99,108,111,115,101,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,112,108,97,99,101,40,98,44,32,97,44,32,99,41,32,123,92,110,32,32,118,97,114,32,100,120,32,61,32,98,46,120,32,45,32,97,46,120,44,32,120,44,32,97,50,44,92,110,32,32,32,32,32,32,100,121,32,61,32,98,46,121,32,45,32,97,46,121,44,32,121,44,32,98,50,44,92,110,32,32,32,32,32,32,100,50,32,61,32,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,59,92,110,32,32,105,102,32,40,100,50,41,32,123,92,110,32,32,32,32,97,50,32,61,32,97,46,114,32,43,32,99,46,114,44,32,97,50,32,42,61,32,97,50,59,92,110,32,32,32,32,98,50,32,61,32,98,46,114,32,43,32,99,46,114,44,32,98,50,32,42,61,32,98,50,59,92,110,32,32,32,32,105,102,32,40,97,50,32,62,32,98,50,41,32,123,92,110,32,32,32,32,32,32,120,32,61,32,40,100,50,32,43,32,98,50,32,45,32,97,50,41,32,47,32,40,50,32,42,32,100,50,41,59,92,110,32,32,32,32,32,32,121,32,61,32,77,97,116,104,46,115,113,114,116,40,77,97,116,104,46,109,97,120,40,48,44,32,98,50,32,47,32,100,50,32,45,32,120,32,42,32,120,41,41,59,92,110,32,32,32,32,32,32,99,46,120,32,61,32,98,46,120,32,45,32,120,32,42,32,100,120,32,45,32,121,32,42,32,100,121,59,92,110,32,32,32,32,32,32,99,46,121,32,61,32,98,46,121,32,45,32,120,32,42,32,100,121,32,43,32,121,32,42,32,100,120,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,120,32,61,32,40,100,50,32,43,32,97,50,32,45,32,98,50,41,32,47,32,40,50,32,42,32,100,50,41,59,92,110,32,32,32,32,32,32,121,32,61,32,77,97,116,104,46,115,113,114,116,40,77,97,116,104,46,109,97,120,40,48,44,32,97,50,32,47,32,100,50,32,45,32,120,32,42,32,120,41,41,59,92,110,32,32,32,32,32,32,99,46,120,32,61,32,97,46,120,32,43,32,120,32,42,32,100,120,32,45,32,121,32,42,32,100,121,59,92,110,32,32,32,32,32,32,99,46,121,32,61,32,97,46,121,32,43,32,120,32,42,32,100,121,32,43,32,121,32,42,32,100,120,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,99,46,120,32,61,32,97,46,120,32,43,32,99,46,114,59,92,110,32,32,32,32,99,46,121,32,61,32,97,46,121,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,116,101,114,115,101,99,116,115,40,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,100,114,32,61,32,97,46,114,32,43,32,98,46,114,32,45,32,49,101,45,54,44,32,100,120,32,61,32,98,46,120,32,45,32,97,46,120,44,32,100,121,32,61,32,98,46,121,32,45,32,97,46,121,59,92,110,32,32,114,101,116,117,114,110,32,100,114,32,62,32,48,32,38,38,32,100,114,32,42,32,100,114,32,62,32,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,99,111,114,101,40,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,97,32,61,32,110,111,100,101,46,95,44,92,110,32,32,32,32,32,32,98,32,61,32,110,111,100,101,46,110,101,120,116,46,95,44,92,110,32,32,32,32,32,32,97,98,32,61,32,97,46,114,32,43,32,98,46,114,44,92,110,32,32,32,32,32,32,100,120,32,61,32,40,97,46,120,32,42,32,98,46,114,32,43,32,98,46,120,32,42,32,97,46,114,41,32,47,32,97,98,44,92,110,32,32,32,32,32,32,100,121,32,61,32,40,97,46,121,32,42,32,98,46,114,32,43,32,98,46,121,32,42,32,97,46,114,41,32,47,32,97,98,59,92,110,32,32,114,101,116,117,114,110,32,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,78,111,100,101,40,99,105,114,99,108,101,41,32,123,92,110,32,32,116,104,105,115,46,95,32,61,32,99,105,114,99,108,101,59,92,110,32,32,116,104,105,115,46,110,101,120,116,32,61,32,110,117,108,108,59,92,110,32,32,116,104,105,115,46,112,114,101,118,105,111,117,115,32,61,32,110,117,108,108,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,99,107,69,110,99,108,111,115,101,40,99,105,114,99,108,101,115,41,32,123,92,110,32,32,105,102,32,40,33,40,110,32,61,32,99,105,114,99,108,101,115,46,108,101,110,103,116,104,41,41,32,114,101,116,117,114,110,32,48,59,92,110,92,110,32,32,118,97,114,32,97,44,32,98,44,32,99,44,32,110,44,32,97,97,44,32,99,97,44,32,105,44,32,106,44,32,107,44,32,115,106,44,32,115,107,59,92,110,92,110,32,32,47,47,32,80,108,97,99,101,32,116,104,101,32,102,105,114,115,116,32,99,105,114,99,108,101,46,92,110,32,32,97,32,61,32,99,105,114,99,108,101,115,91,48,93,44,32,97,46,120,32,61,32,48,44,32,97,46,121,32,61,32,48,59,92,110,32,32,105,102,32,40,33,40,110,32,62,32,49,41,41,32,114,101,116,117,114,110,32,97,46,114,59,92,110,92,110,32,32,47,47,32,80,108,97,99,101,32,116,104,101,32,115,101,99,111,110,100,32,99,105,114,99,108,101,46,92,110,32,32,98,32,61,32,99,105,114,99,108,101,115,91,49,93,44,32,97,46,120,32,61,32,45,98,46,114,44,32,98,46,120,32,61,32,97,46,114,44,32,98,46,121,32,61,32,48,59,92,110,32,32,105,102,32,40,33,40,110,32,62,32,50,41,41,32,114,101,116,117,114,110,32,97,46,114,32,43,32,98,46,114,59,92,110,92,110,32,32,47,47,32,80,108,97,99,101,32,116,104,101,32,116,104,105,114,100,32,99,105,114,99,108,101,46,92,110,32,32,112,108,97,99,101,40,98,44,32,97,44,32,99,32,61,32,99,105,114,99,108,101,115,91,50,93,41,59,92,110,92,110,32,32,47,47,32,73,110,105,116,105,97,108,105,122,101,32,116,104,101,32,102,114,111,110,116,45,99,104,97,105,110,32,117,115,105,110,103,32,116,104,101,32,102,105,114,115,116,32,116,104,114,101,101,32,99,105,114,99,108,101,115,32,97,44,32,98,32,97,110,100,32,99,46,92,110,32,32,97,32,61,32,110,101,119,32,78,111,100,101,40,97,41,44,32,98,32,61,32,110,101,119,32,78,111,100,101,40,98,41,44,32,99,32,61,32,110,101,119,32,78,111,100,101,40,99,41,59,92,110,32,32,97,46,110,101,120,116,32,61,32,99,46,112,114,101,118,105,111,117,115,32,61,32,98,59,92,110,32,32,98,46,110,101,120,116,32,61,32,97,46,112,114,101,118,105,111,117,115,32,61,32,99,59,92,110,32,32,99,46,110,101,120,116,32,61,32,98,46,112,114,101,118,105,111,117,115,32,61,32,97,59,92,110,92,110,32,32,47,47,32,65,116,116,101,109,112,116,32,116,111,32,112,108,97,99,101,32,101,97,99,104,32,114,101,109,97,105,110,105,110,103,32,99,105,114,99,108,101,226,128,166,92,110,32,32,112,97,99,107,58,32,102,111,114,32,40,105,32,61,32,51,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,112,108,97,99,101,40,97,46,95,44,32,98,46,95,44,32,99,32,61,32,99,105,114,99,108,101,115,91,105,93,41,44,32,99,32,61,32,110,101,119,32,78,111,100,101,40,99,41,59,92,110,92,110,32,32,32,32,47,47,32,70,105,110,100,32,116,104,101,32,99,108,111,115,101,115,116,32,105,110,116,101,114,115,101,99,116,105,110,103,32,99,105,114,99,108,101,32,111,110,32,116,104,101,32,102,114,111,110,116,45,99,104,97,105,110,44,32,105,102,32,97,110,121,46,92,110,32,32,32,32,47,47,32,226,128,156,67,108,111,115,101,110,101,115,115,226,128,157,32,105,115,32,100,101,116,101,114,109,105,110,101,100,32,98,121,32,108,105,110,101,97,114,32,100,105,115,116,97,110,99,101,32,97,108,111,110,103,32,116,104,101,32,102,114,111,110,116,45,99,104,97,105,110,46,92,110,32,32,32,32,47,47,32,226,128,156,65,104,101,97,100,226,128,157,32,111,114,32,226,128,156,98,101,104,105,110,100,226,128,157,32,105,115,32,108,105,107,101,119,105,115,101,32,100,101,116,101,114,109,105,110,101,100,32,98,121,32,108,105,110,101,97,114,32,100,105,115,116,97,110,99,101,46,92,110,32,32,32,32,106,32,61,32,98,46,110,101,120,116,44,32,107,32,61,32,97,46,112,114,101,118,105,111,117,115,44,32,115,106,32,61,32,98,46,95,46,114,44,32,115,107,32,61,32,97,46,95,46,114,59,92,110,32,32,32,32,100,111,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,106,32,60,61,32,115,107,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,116,101,114,115,101,99,116,115,40,106,46,95,44,32,99,46,95,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,98,32,61,32,106,44,32,97,46,110,101,120,116,32,61,32,98,44,32,98,46,112,114,101,118,105,111,117,115,32,61,32,97,44,32,45,45,105,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,32,112,97,99,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,115,106,32,43,61,32,106,46,95,46,114,44,32,106,32,61,32,106,46,110,101,120,116,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,116,101,114,115,101,99,116,115,40,107,46,95,44,32,99,46,95,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,32,61,32,107,44,32,97,46,110,101,120,116,32,61,32,98,44,32,98,46,112,114,101,118,105,111,117,115,32,61,32,97,44,32,45,45,105,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,32,112,97,99,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,115,107,32,43,61,32,107,46,95,46,114,44,32,107,32,61,32,107,46,112,114,101,118,105,111,117,115,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,119,104,105,108,101,32,40,106,32,33,61,61,32,107,46,110,101,120,116,41,59,92,110,92,110,32,32,32,32,47,47,32,83,117,99,99,101,115,115,33,32,73,110,115,101,114,116,32,116,104,101,32,110,101,119,32,99,105,114,99,108,101,32,99,32,98,101,116,119,101,101,110,32,97,32,97,110,100,32,98,46,92,110,32,32,32,32,99,46,112,114,101,118,105,111,117,115,32,61,32,97,44,32,99,46,110,101,120,116,32,61,32,98,44,32,97,46,110,101,120,116,32,61,32,98,46,112,114,101,118,105,111,117,115,32,61,32,98,32,61,32,99,59,92,110,92,110,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,110,101,119,32,99,108,111,115,101,115,116,32,99,105,114,99,108,101,32,112,97,105,114,32,116,111,32,116,104,101,32,99,101,110,116,114,111,105,100,46,92,110,32,32,32,32,97,97,32,61,32,115,99,111,114,101,40,97,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,40,99,32,61,32,99,46,110,101,120,116,41,32,33,61,61,32,98,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,99,97,32,61,32,115,99,111,114,101,40,99,41,41,32,60,32,97,97,41,32,123,92,110,32,32,32,32,32,32,32,32,97,32,61,32,99,44,32,97,97,32,61,32,99,97,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,98,32,61,32,97,46,110,101,120,116,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,101,110,99,108,111,115,105,110,103,32,99,105,114,99,108,101,32,111,102,32,116,104,101,32,102,114,111,110,116,32,99,104,97,105,110,46,92,110,32,32,97,32,61,32,91,98,46,95,93,44,32,99,32,61,32,98,59,32,119,104,105,108,101,32,40,40,99,32,61,32,99,46,110,101,120,116,41,32,33,61,61,32,98,41,32,97,46,112,117,115,104,40,99,46,95,41,59,32,99,32,61,32,40,48,44,95,101,110,99,108,111,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,97,41,59,92,110,92,110,32,32,47,47,32,84,114,97,110,115,108,97,116,101,32,116,104,101,32,99,105,114,99,108,101,115,32,116,111,32,112,117,116,32,116,104,101,32,101,110,99,108,111,115,105,110,103,32,99,105,114,99,108,101,32,97,114,111,117,110,100,32,116,104,101,32,111,114,105,103,105,110,46,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,97,32,61,32,99,105,114,99,108,101,115,91,105,93,44,32,97,46,120,32,45,61,32,99,46,120,44,32,97,46,121,32,45,61,32,99,46,121,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,46,114,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,105,114,99,108,101,115,41,32,123,92,110,32,32,112,97,99,107,69,110,99,108,111,115,101,40,99,105,114,99,108,101,115,41,59,92,110,32,32,114,101,116,117,114,110,32,99,105,114,99,108,101,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,99,107,47,115,105,98,108,105,110,103,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,114,116,105,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,114,116,105,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,101,101,109,97,112,95,114,111,117,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,101,101,109,97,112,47,114,111,117,110,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,114,111,117,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,101,101,109,97,112,95,100,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,101,101,109,97,112,47,100,105,99,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,100,105,99,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,100,120,32,61,32,49,44,92,110,32,32,32,32,32,32,100,121,32,61,32,49,44,92,110,32,32,32,32,32,32,112,97,100,100,105,110,103,32,61,32,48,44,92,110,32,32,32,32,32,32,114,111,117,110,100,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,114,116,105,116,105,111,110,40,114,111,111,116,41,32,123,92,110,32,32,32,32,118,97,114,32,110,32,61,32,114,111,111,116,46,104,101,105,103,104,116,32,43,32,49,59,92,110,32,32,32,32,114,111,111,116,46,120,48,32,61,92,110,32,32,32,32,114,111,111,116,46,121,48,32,61,32,112,97,100,100,105,110,103,59,92,110,32,32,32,32,114,111,111,116,46,120,49,32,61,32,100,120,59,92,110,32,32,32,32,114,111,111,116,46,121,49,32,61,32,100,121,32,47,32,110,59,92,110,32,32,32,32,114,111,111,116,46,101,97,99,104,66,101,102,111,114,101,40,112,111,115,105,116,105,111,110,78,111,100,101,40,100,121,44,32,110,41,41,59,92,110,32,32,32,32,105,102,32,40,114,111,117,110,100,41,32,114,111,111,116,46,101,97,99,104,66,101,102,111,114,101,40,95,116,114,101,101,109,97,112,95,114,111,117,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,111,111,116,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,111,115,105,116,105,111,110,78,111,100,101,40,100,121,44,32,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,116,114,101,101,109,97,112,95,100,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,111,100,101,44,32,110,111,100,101,46,120,48,44,32,100,121,32,42,32,40,110,111,100,101,46,100,101,112,116,104,32,43,32,49,41,32,47,32,110,44,32,110,111,100,101,46,120,49,44,32,100,121,32,42,32,40,110,111,100,101,46,100,101,112,116,104,32,43,32,50,41,32,47,32,110,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,120,48,32,61,32,110,111,100,101,46,120,48,44,92,110,32,32,32,32,32,32,32,32,32,32,121,48,32,61,32,110,111,100,101,46,121,48,44,92,110,32,32,32,32,32,32,32,32,32,32,120,49,32,61,32,110,111,100,101,46,120,49,32,45,32,112,97,100,100,105,110,103,44,92,110,32,32,32,32,32,32,32,32,32,32,121,49,32,61,32,110,111,100,101,46,121,49,32,45,32,112,97,100,100,105,110,103,59,92,110,32,32,32,32,32,32,105,102,32,40,120,49,32,60,32,120,48,41,32,120,48,32,61,32,120,49,32,61,32,40,120,48,32,43,32,120,49,41,32,47,32,50,59,92,110,32,32,32,32,32,32,105,102,32,40,121,49,32,60,32,121,48,41,32,121,48,32,61,32,121,49,32,61,32,40,121,48,32,43,32,121,49,41,32,47,32,50,59,92,110,32,32,32,32,32,32,110,111,100,101,46,120,48,32,61,32,120,48,59,92,110,32,32,32,32,32,32,110,111,100,101,46,121,48,32,61,32,121,48,59,92,110,32,32,32,32,32,32,110,111,100,101,46,120,49,32,61,32,120,49,59,92,110,32,32,32,32,32,32,110,111,100,101,46,121,49,32,61,32,121,49,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,112,97,114,116,105,116,105,111,110,46,114,111,117,110,100,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,114,111,117,110,100,32,61,32,33,33,120,44,32,112,97,114,116,105,116,105,111,110,41,32,58,32,114,111,117,110,100,59,92,110,32,32,125,59,92,110,92,110,32,32,112,97,114,116,105,116,105,111,110,46,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,120,32,61,32,43,120,91,48,93,44,32,100,121,32,61,32,43,120,91,49,93,44,32,112,97,114,116,105,116,105,111,110,41,32,58,32,91,100,120,44,32,100,121,93,59,92,110,32,32,125,59,92,110,92,110,32,32,112,97,114,116,105,116,105,111,110,46,112,97,100,100,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,97,100,100,105,110,103,32,61,32,43,120,44,32,112,97,114,116,105,116,105,111,110,41,32,58,32,112,97,100,100,105,110,103,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,112,97,114,116,105,116,105,111,110,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,112,97,114,116,105,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,115,116,114,97,116,105,102,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,115,116,114,97,116,105,102,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,99,99,101,115,115,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,99,99,101,115,115,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,97,99,99,101,115,115,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,105,101,114,97,114,99,104,121,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,105,101,114,97,114,99,104,121,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,107,101,121,80,114,101,102,105,120,32,61,32,92,34,36,92,34,44,32,47,47,32,80,114,111,116,101,99,116,32,97,103,97,105,110,115,116,32,107,101,121,115,32,108,105,107,101,32,226,128,156,95,95,112,114,111,116,111,95,95,226,128,157,46,92,110,32,32,32,32,112,114,101,114,111,111,116,32,61,32,123,100,101,112,116,104,58,32,45,49,125,44,92,110,32,32,32,32,97,109,98,105,103,117,111,117,115,32,61,32,123,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,73,100,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,105,100,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,80,97,114,101,110,116,73,100,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,112,97,114,101,110,116,73,100,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,105,100,32,61,32,100,101,102,97,117,108,116,73,100,44,92,110,32,32,32,32,32,32,112,97,114,101,110,116,73,100,32,61,32,100,101,102,97,117,108,116,80,97,114,101,110,116,73,100,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,116,114,97,116,105,102,121,40,100,97,116,97,41,32,123,92,110,32,32,32,32,118,97,114,32,100,44,92,110,32,32,32,32,32,32,32,32,105,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,100,97,116,97,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,114,111,111,116,44,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,44,92,110,32,32,32,32,32,32,32,32,110,111,100,101,44,92,110,32,32,32,32,32,32,32,32,110,111,100,101,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,92,110,32,32,32,32,32,32,32,32,110,111,100,101,73,100,44,92,110,32,32,32,32,32,32,32,32,110,111,100,101,75,101,121,44,92,110,32,32,32,32,32,32,32,32,110,111,100,101,66,121,75,101,121,32,61,32,123,125,59,92,110,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,100,32,61,32,100,97,116,97,91,105,93,44,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,32,61,32,110,101,119,32,95,104,105,101,114,97,114,99,104,121,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,78,111,100,101,40,100,41,59,92,110,32,32,32,32,32,32,105,102,32,40,40,110,111,100,101,73,100,32,61,32,105,100,40,100,44,32,105,44,32,100,97,116,97,41,41,32,33,61,32,110,117,108,108,32,38,38,32,40,110,111,100,101,73,100,32,43,61,32,92,34,92,34,41,41,32,123,92,110,32,32,32,32,32,32,32,32,110,111,100,101,75,101,121,32,61,32,107,101,121,80,114,101,102,105,120,32,43,32,40,110,111,100,101,46,105,100,32,61,32,110,111,100,101,73,100,41,59,92,110,32,32,32,32,32,32,32,32,110,111,100,101,66,121,75,101,121,91,110,111,100,101,75,101,121,93,32,61,32,110,111,100,101,75,101,121,32,105,110,32,110,111,100,101,66,121,75,101,121,32,63,32,97,109,98,105,103,117,111,117,115,32,58,32,110,111,100,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,44,32,110,111,100,101,73,100,32,61,32,112,97,114,101,110,116,73,100,40,100,97,116,97,91,105,93,44,32,105,44,32,100,97,116,97,41,59,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,73,100,32,61,61,32,110,117,108,108,32,124,124,32,33,40,110,111,100,101,73,100,32,43,61,32,92,34,92,34,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,111,111,116,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,109,117,108,116,105,112,108,101,32,114,111,111,116,115,92,34,41,59,92,110,32,32,32,32,32,32,32,32,114,111,111,116,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,110,111,100,101,66,121,75,101,121,91,107,101,121,80,114,101,102,105,120,32,43,32,110,111,100,101,73,100,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,112,97,114,101,110,116,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,109,105,115,115,105,110,103,58,32,92,34,32,43,32,110,111,100,101,73,100,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,97,114,101,110,116,32,61,61,61,32,97,109,98,105,103,117,111,117,115,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,97,109,98,105,103,117,111,117,115,58,32,92,34,32,43,32,110,111,100,101,73,100,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,97,114,101,110,116,46,99,104,105,108,100,114,101,110,41,32,112,97,114,101,110,116,46,99,104,105,108,100,114,101,110,46,112,117,115,104,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,112,97,114,101,110,116,46,99,104,105,108,100,114,101,110,32,61,32,91,110,111,100,101,93,59,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,112,97,114,101,110,116,32,61,32,112,97,114,101,110,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,114,111,111,116,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,32,114,111,111,116,92,34,41,59,92,110,32,32,32,32,114,111,111,116,46,112,97,114,101,110,116,32,61,32,112,114,101,114,111,111,116,59,92,110,32,32,32,32,114,111,111,116,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,32,110,111,100,101,46,100,101,112,116,104,32,61,32,110,111,100,101,46,112,97,114,101,110,116,46,100,101,112,116,104,32,43,32,49,59,32,45,45,110,59,32,125,41,46,101,97,99,104,66,101,102,111,114,101,40,95,104,105,101,114,97,114,99,104,121,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,109,112,117,116,101,72,101,105,103,104,116,41,59,92,110,32,32,32,32,114,111,111,116,46,112,97,114,101,110,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,105,102,32,40,110,32,62,32,48,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,99,121,99,108,101,92,34,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,111,111,116,59,92,110,32,32,125,92,110,92,110,32,32,115,116,114,97,116,105,102,121,46,105,100,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,105,100,32,61,32,40,48,44,95,97,99,99,101,115,115,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,101,113,117,105,114,101,100,41,40,120,41,44,32,115,116,114,97,116,105,102,121,41,32,58,32,105,100,59,92,110,32,32,125,59,92,110,92,110,32,32,115,116,114,97,116,105,102,121,46,112,97,114,101,110,116,73,100,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,97,114,101,110,116,73,100,32,61,32,40,48,44,95,97,99,99,101,115,115,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,101,113,117,105,114,101,100,41,40,120,41,44,32,115,116,114,97,116,105,102,121,41,32,58,32,112,97,114,101,110,116,73,100,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,115,116,114,97,116,105,102,121,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,115,116,114,97,116,105,102,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,105,101,114,97,114,99,104,121,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,105,101,114,97,114,99,104,121,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,104,105,101,114,97,114,99,104,121,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,83,101,112,97,114,97,116,105,111,110,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,46,112,97,114,101,110,116,32,61,61,61,32,98,46,112,97,114,101,110,116,32,63,32,49,32,58,32,50,59,92,110,125,92,110,92,110,47,47,32,102,117,110,99,116,105,111,110,32,114,97,100,105,97,108,83,101,112,97,114,97,116,105,111,110,40,97,44,32,98,41,32,123,92,110,47,47,32,32,32,114,101,116,117,114,110,32,40,97,46,112,97,114,101,110,116,32,61,61,61,32,98,46,112,97,114,101,110,116,32,63,32,49,32,58,32,50,41,32,47,32,97,46,100,101,112,116,104,59,92,110,47,47,32,125,92,110,92,110,47,47,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,105,115,32,117,115,101,100,32,116,111,32,116,114,97,118,101,114,115,101,32,116,104,101,32,108,101,102,116,32,99,111,110,116,111,117,114,32,111,102,32,97,32,115,117,98,116,114,101,101,32,40,111,114,92,110,47,47,32,115,117,98,102,111,114,101,115,116,41,46,32,73,116,32,114,101,116,117,114,110,115,32,116,104,101,32,115,117,99,99,101,115,115,111,114,32,111,102,32,118,32,111,110,32,116,104,105,115,32,99,111,110,116,111,117,114,46,32,84,104,105,115,32,115,117,99,99,101,115,115,111,114,32,105,115,92,110,47,47,32,101,105,116,104,101,114,32,103,105,118,101,110,32,98,121,32,116,104,101,32,108,101,102,116,109,111,115,116,32,99,104,105,108,100,32,111,102,32,118,32,111,114,32,98,121,32,116,104,101,32,116,104,114,101,97,100,32,111,102,32,118,46,32,84,104,101,32,102,117,110,99,116,105,111,110,92,110,47,47,32,114,101,116,117,114,110,115,32,110,117,108,108,32,105,102,32,97,110,100,32,111,110,108,121,32,105,102,32,118,32,105,115,32,111,110,32,116,104,101,32,104,105,103,104,101,115,116,32,108,101,118,101,108,32,111,102,32,105,116,115,32,115,117,98,116,114,101,101,46,92,110,102,117,110,99,116,105,111,110,32,110,101,120,116,76,101,102,116,40,118,41,32,123,92,110,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,118,46,99,104,105,108,100,114,101,110,59,92,110,32,32,114,101,116,117,114,110,32,99,104,105,108,100,114,101,110,32,63,32,99,104,105,108,100,114,101,110,91,48,93,32,58,32,118,46,116,59,92,110,125,92,110,92,110,47,47,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,119,111,114,107,115,32,97,110,97,108,111,103,111,117,115,108,121,32,116,111,32,110,101,120,116,76,101,102,116,46,92,110,102,117,110,99,116,105,111,110,32,110,101,120,116,82,105,103,104,116,40,118,41,32,123,92,110,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,118,46,99,104,105,108,100,114,101,110,59,92,110,32,32,114,101,116,117,114,110,32,99,104,105,108,100,114,101,110,32,63,32,99,104,105,108,100,114,101,110,91,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,45,32,49,93,32,58,32,118,46,116,59,92,110,125,92,110,92,110,47,47,32,83,104,105,102,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,115,117,98,116,114,101,101,32,114,111,111,116,101,100,32,97,116,32,119,43,46,32,84,104,105,115,32,105,115,32,100,111,110,101,32,98,121,32,105,110,99,114,101,97,115,105,110,103,92,110,47,47,32,112,114,101,108,105,109,40,119,43,41,32,97,110,100,32,109,111,100,40,119,43,41,32,98,121,32,115,104,105,102,116,46,92,110,102,117,110,99,116,105,111,110,32,109,111,118,101,83,117,98,116,114,101,101,40,119,109,44,32,119,112,44,32,115,104,105,102,116,41,32,123,92,110,32,32,118,97,114,32,99,104,97,110,103,101,32,61,32,115,104,105,102,116,32,47,32,40,119,112,46,105,32,45,32,119,109,46,105,41,59,92,110,32,32,119,112,46,99,32,45,61,32,99,104,97,110,103,101,59,92,110,32,32,119,112,46,115,32,43,61,32,115,104,105,102,116,59,92,110,32,32,119,109,46,99,32,43,61,32,99,104,97,110,103,101,59,92,110,32,32,119,112,46,122,32,43,61,32,115,104,105,102,116,59,92,110,32,32,119,112,46,109,32,43,61,32,115,104,105,102,116,59,92,110,125,92,110,92,110,47,47,32,65,108,108,32,111,116,104,101,114,32,115,104,105,102,116,115,44,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,115,109,97,108,108,101,114,32,115,117,98,116,114,101,101,115,32,98,101,116,119,101,101,110,32,119,45,32,97,110,100,32,119,43,44,32,97,114,101,92,110,47,47,32,112,101,114,102,111,114,109,101,100,32,98,121,32,116,104,105,115,32,102,117,110,99,116,105,111,110,46,32,84,111,32,112,114,101,112,97,114,101,32,116,104,101,32,115,104,105,102,116,115,44,32,119,101,32,104,97,118,101,32,116,111,32,97,100,106,117,115,116,92,110,47,47,32,99,104,97,110,103,101,40,119,43,41,44,32,115,104,105,102,116,40,119,43,41,44,32,97,110,100,32,99,104,97,110,103,101,40,119,45,41,46,92,110,102,117,110,99,116,105,111,110,32,101,120,101,99,117,116,101,83,104,105,102,116,115,40,118,41,32,123,92,110,32,32,118,97,114,32,115,104,105,102,116,32,61,32,48,44,92,110,32,32,32,32,32,32,99,104,97,110,103,101,32,61,32,48,44,92,110,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,118,46,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,105,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,119,59,92,110,32,32,119,104,105,108,101,32,40,45,45,105,32,62,61,32,48,41,32,123,92,110,32,32,32,32,119,32,61,32,99,104,105,108,100,114,101,110,91,105,93,59,92,110,32,32,32,32,119,46,122,32,43,61,32,115,104,105,102,116,59,92,110,32,32,32,32,119,46,109,32,43,61,32,115,104,105,102,116,59,92,110,32,32,32,32,115,104,105,102,116,32,43,61,32,119,46,115,32,43,32,40,99,104,97,110,103,101,32,43,61,32,119,46,99,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,47,32,73,102,32,118,105,45,226,128,153,115,32,97,110,99,101,115,116,111,114,32,105,115,32,97,32,115,105,98,108,105,110,103,32,111,102,32,118,44,32,114,101,116,117,114,110,115,32,118,105,45,226,128,153,115,32,97,110,99,101,115,116,111,114,46,32,79,116,104,101,114,119,105,115,101,44,92,110,47,47,32,114,101,116,117,114,110,115,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,40,100,101,102,97,117,108,116,41,32,97,110,99,101,115,116,111,114,46,92,110,102,117,110,99,116,105,111,110,32,110,101,120,116,65,110,99,101,115,116,111,114,40,118,105,109,44,32,118,44,32,97,110,99,101,115,116,111,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,105,109,46,97,46,112,97,114,101,110,116,32,61,61,61,32,118,46,112,97,114,101,110,116,32,63,32,118,105,109,46,97,32,58,32,97,110,99,101,115,116,111,114,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,84,114,101,101,78,111,100,101,40,110,111,100,101,44,32,105,41,32,123,92,110,32,32,116,104,105,115,46,95,32,61,32,110,111,100,101,59,92,110,32,32,116,104,105,115,46,112,97,114,101,110,116,32,61,32,110,117,108,108,59,92,110,32,32,116,104,105,115,46,99,104,105,108,100,114,101,110,32,61,32,110,117,108,108,59,92,110,32,32,116,104,105,115,46,65,32,61,32,110,117,108,108,59,32,47,47,32,100,101,102,97,117,108,116,32,97,110,99,101,115,116,111,114,92,110,32,32,116,104,105,115,46,97,32,61,32,116,104,105,115,59,32,47,47,32,97,110,99,101,115,116,111,114,92,110,32,32,116,104,105,115,46,122,32,61,32,48,59,32,47,47,32,112,114,101,108,105,109,92,110,32,32,116,104,105,115,46,109,32,61,32,48,59,32,47,47,32,109,111,100,92,110,32,32,116,104,105,115,46,99,32,61,32,48,59,32,47,47,32,99,104,97,110,103,101,92,110,32,32,116,104,105,115,46,115,32,61,32,48,59,32,47,47,32,115,104,105,102,116,92,110,32,32,116,104,105,115,46,116,32,61,32,110,117,108,108,59,32,47,47,32,116,104,114,101,97,100,92,110,32,32,116,104,105,115,46,105,32,61,32,105,59,32,47,47,32,110,117,109,98,101,114,92,110,125,92,110,92,110,84,114,101,101,78,111,100,101,46,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,95,104,105,101,114,97,114,99,104,121,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,78,111,100,101,46,112,114,111,116,111,116,121,112,101,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,101,101,82,111,111,116,40,114,111,111,116,41,32,123,92,110,32,32,118,97,114,32,116,114,101,101,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,40,114,111,111,116,44,32,48,41,44,92,110,32,32,32,32,32,32,110,111,100,101,44,92,110,32,32,32,32,32,32,110,111,100,101,115,32,61,32,91,116,114,101,101,93,44,92,110,32,32,32,32,32,32,99,104,105,108,100,44,92,110,32,32,32,32,32,32,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,105,44,92,110,32,32,32,32,32,32,110,59,92,110,92,110,32,32,119,104,105,108,101,32,40,110,111,100,101,32,61,32,110,111,100,101,115,46,112,111,112,40,41,41,32,123,92,110,32,32,32,32,105,102,32,40,99,104,105,108,100,114,101,110,32,61,32,110,111,100,101,46,95,46,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,46,99,104,105,108,100,114,101,110,32,61,32,110,101,119,32,65,114,114,97,121,40,110,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,110,32,45,32,49,59,32,105,32,62,61,32,48,59,32,45,45,105,41,32,123,92,110,32,32,32,32,32,32,32,32,110,111,100,101,115,46,112,117,115,104,40,99,104,105,108,100,32,61,32,110,111,100,101,46,99,104,105,108,100,114,101,110,91,105,93,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,40,99,104,105,108,100,114,101,110,91,105,93,44,32,105,41,41,59,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,46,112,97,114,101,110,116,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,40,116,114,101,101,46,112,97,114,101,110,116,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,40,110,117,108,108,44,32,48,41,41,46,99,104,105,108,100,114,101,110,32,61,32,91,116,114,101,101,93,59,92,110,32,32,114,101,116,117,114,110,32,116,114,101,101,59,92,110,125,92,110,92,110,47,47,32,78,111,100,101,45,108,105,110,107,32,116,114,101,101,32,100,105,97,103,114,97,109,32,117,115,105,110,103,32,116,104,101,32,82,101,105,110,103,111,108,100,45,84,105,108,102,111,114,100,32,92,34,116,105,100,121,92,34,32,97,108,103,111,114,105,116,104,109,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,115,101,112,97,114,97,116,105,111,110,32,61,32,100,101,102,97,117,108,116,83,101,112,97,114,97,116,105,111,110,44,92,110,32,32,32,32,32,32,100,120,32,61,32,49,44,92,110,32,32,32,32,32,32,100,121,32,61,32,49,44,92,110,32,32,32,32,32,32,110,111,100,101,83,105,122,101,32,61,32,110,117,108,108,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,114,101,101,40,114,111,111,116,41,32,123,92,110,32,32,32,32,118,97,114,32,116,32,61,32,116,114,101,101,82,111,111,116,40,114,111,111,116,41,59,92,110,92,110,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,108,97,121,111,117,116,32,117,115,105,110,103,32,66,117,99,104,104,101,105,109,32,101,116,32,97,108,46,226,128,153,115,32,97,108,103,111,114,105,116,104,109,46,92,110,32,32,32,32,116,46,101,97,99,104,65,102,116,101,114,40,102,105,114,115,116,87,97,108,107,41,44,32,116,46,112,97,114,101,110,116,46,109,32,61,32,45,116,46,122,59,92,110,32,32,32,32,116,46,101,97,99,104,66,101,102,111,114,101,40,115,101,99,111,110,100,87,97,108,107,41,59,92,110,92,110,32,32,32,32,47,47,32,73,102,32,97,32,102,105,120,101,100,32,110,111,100,101,32,115,105,122,101,32,105,115,32,115,112,101,99,105,102,105,101,100,44,32,115,99,97,108,101,32,120,32,97,110,100,32,121,46,92,110,32,32,32,32,105,102,32,40,110,111,100,101,83,105,122,101,41,32,114,111,111,116,46,101,97,99,104,66,101,102,111,114,101,40,115,105,122,101,78,111,100,101,41,59,92,110,92,110,32,32,32,32,47,47,32,73,102,32,97,32,102,105,120,101,100,32,116,114,101,101,32,115,105,122,101,32,105,115,32,115,112,101,99,105,102,105,101,100,44,32,115,99,97,108,101,32,120,32,97,110,100,32,121,32,98,97,115,101,100,32,111,110,32,116,104,101,32,101,120,116,101,110,116,46,92,110,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,108,101,102,116,45,109,111,115,116,44,32,114,105,103,104,116,45,109,111,115,116,44,32,97,110,100,32,100,101,112,116,104,45,109,111,115,116,32,110,111,100,101,115,32,102,111,114,32,101,120,116,101,110,116,115,46,92,110,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,102,116,32,61,32,114,111,111,116,44,92,110,32,32,32,32,32,32,32,32,32,32,114,105,103,104,116,32,61,32,114,111,111,116,44,92,110,32,32,32,32,32,32,32,32,32,32,98,111,116,116,111,109,32,61,32,114,111,111,116,59,92,110,32,32,32,32,32,32,114,111,111,116,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,120,32,60,32,108,101,102,116,46,120,41,32,108,101,102,116,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,120,32,62,32,114,105,103,104,116,46,120,41,32,114,105,103,104,116,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,100,101,112,116,104,32,62,32,98,111,116,116,111,109,46,100,101,112,116,104,41,32,98,111,116,116,111,109,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,32,61,32,108,101,102,116,32,61,61,61,32,114,105,103,104,116,32,63,32,49,32,58,32,115,101,112,97,114,97,116,105,111,110,40,108,101,102,116,44,32,114,105,103,104,116,41,32,47,32,50,44,92,110,32,32,32,32,32,32,32,32,32,32,116,120,32,61,32,115,32,45,32,108,101,102,116,46,120,44,92,110,32,32,32,32,32,32,32,32,32,32,107,120,32,61,32,100,120,32,47,32,40,114,105,103,104,116,46,120,32,43,32,115,32,43,32,116,120,41,44,92,110,32,32,32,32,32,32,32,32,32,32,107,121,32,61,32,100,121,32,47,32,40,98,111,116,116,111,109,46,100,101,112,116,104,32,124,124,32,49,41,59,92,110,32,32,32,32,32,32,114,111,111,116,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,120,32,61,32,40,110,111,100,101,46,120,32,43,32,116,120,41,32,42,32,107,120,59,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,121,32,61,32,110,111,100,101,46,100,101,112,116,104,32,42,32,107,121,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,111,111,116,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,67,111,109,112,117,116,101,115,32,97,32,112,114,101,108,105,109,105,110,97,114,121,32,120,45,99,111,111,114,100,105,110,97,116,101,32,102,111,114,32,118,46,32,66,101,102,111,114,101,32,116,104,97,116,44,32,70,73,82,83,84,32,87,65,76,75,32,105,115,92,110,32,32,47,47,32,97,112,112,108,105,101,100,32,114,101,99,117,114,115,105,118,101,108,121,32,116,111,32,116,104,101,32,99,104,105,108,100,114,101,110,32,111,102,32,118,44,32,97,115,32,119,101,108,108,32,97,115,32,116,104,101,32,102,117,110,99,116,105,111,110,92,110,32,32,47,47,32,65,80,80,79,82,84,73,79,78,46,32,65,102,116,101,114,32,115,112,97,99,105,110,103,32,111,117,116,32,116,104,101,32,99,104,105,108,100,114,101,110,32,98,121,32,99,97,108,108,105,110,103,32,69,88,69,67,85,84,69,32,83,72,73,70,84,83,44,32,116,104,101,92,110,32,32,47,47,32,110,111,100,101,32,118,32,105,115,32,112,108,97,99,101,100,32,116,111,32,116,104,101,32,109,105,100,112,111,105,110,116,32,111,102,32,105,116,115,32,111,117,116,101,114,109,111,115,116,32,99,104,105,108,100,114,101,110,46,92,110,32,32,102,117,110,99,116,105,111,110,32,102,105,114,115,116,87,97,108,107,40,118,41,32,123,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,118,46,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,115,32,61,32,118,46,112,97,114,101,110,116,46,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,32,32,119,32,61,32,118,46,105,32,63,32,115,105,98,108,105,110,103,115,91,118,46,105,32,45,32,49,93,32,58,32,110,117,108,108,59,92,110,32,32,32,32,105,102,32,40,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,101,120,101,99,117,116,101,83,104,105,102,116,115,40,118,41,59,92,110,32,32,32,32,32,32,118,97,114,32,109,105,100,112,111,105,110,116,32,61,32,40,99,104,105,108,100,114,101,110,91,48,93,46,122,32,43,32,99,104,105,108,100,114,101,110,91,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,45,32,49,93,46,122,41,32,47,32,50,59,92,110,32,32,32,32,32,32,105,102,32,40,119,41,32,123,92,110,32,32,32,32,32,32,32,32,118,46,122,32,61,32,119,46,122,32,43,32,115,101,112,97,114,97,116,105,111,110,40,118,46,95,44,32,119,46,95,41,59,92,110,32,32,32,32,32,32,32,32,118,46,109,32,61,32,118,46,122,32,45,32,109,105,100,112,111,105,110,116,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,118,46,122,32,61,32,109,105,100,112,111,105,110,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,119,41,32,123,92,110,32,32,32,32,32,32,118,46,122,32,61,32,119,46,122,32,43,32,115,101,112,97,114,97,116,105,111,110,40,118,46,95,44,32,119,46,95,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,118,46,112,97,114,101,110,116,46,65,32,61,32,97,112,112,111,114,116,105,111,110,40,118,44,32,119,44,32,118,46,112,97,114,101,110,116,46,65,32,124,124,32,115,105,98,108,105,110,103,115,91,48,93,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,67,111,109,112,117,116,101,115,32,97,108,108,32,114,101,97,108,32,120,45,99,111,111,114,100,105,110,97,116,101,115,32,98,121,32,115,117,109,109,105,110,103,32,117,112,32,116,104,101,32,109,111,100,105,102,105,101,114,115,32,114,101,99,117,114,115,105,118,101,108,121,46,92,110,32,32,102,117,110,99,116,105,111,110,32,115,101,99,111,110,100,87,97,108,107,40,118,41,32,123,92,110,32,32,32,32,118,46,95,46,120,32,61,32,118,46,122,32,43,32,118,46,112,97,114,101,110,116,46,109,59,92,110,32,32,32,32,118,46,109,32,43,61,32,118,46,112,97,114,101,110,116,46,109,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,84,104,101,32,99,111,114,101,32,111,102,32,116,104,101,32,97,108,103,111,114,105,116,104,109,46,32,72,101,114,101,44,32,97,32,110,101,119,32,115,117,98,116,114,101,101,32,105,115,32,99,111,109,98,105,110,101,100,32,119,105,116,104,32,116,104,101,92,110,32,32,47,47,32,112,114,101,118,105,111,117,115,32,115,117,98,116,114,101,101,115,46,32,84,104,114,101,97,100,115,32,97,114,101,32,117,115,101,100,32,116,111,32,116,114,97,118,101,114,115,101,32,116,104,101,32,105,110,115,105,100,101,32,97,110,100,32,111,117,116,115,105,100,101,92,110,32,32,47,47,32,99,111,110,116,111,117,114,115,32,111,102,32,116,104,101,32,108,101,102,116,32,97,110,100,32,114,105,103,104,116,32,115,117,98,116,114,101,101,32,117,112,32,116,111,32,116,104,101,32,104,105,103,104,101,115,116,32,99,111,109,109,111,110,32,108,101,118,101,108,46,32,84,104,101,92,110,32,32,47,47,32,118,101,114,116,105,99,101,115,32,117,115,101,100,32,102,111,114,32,116,104,101,32,116,114,97,118,101,114,115,97,108,115,32,97,114,101,32,118,105,43,44,32,118,105,45,44,32,118,111,45,44,32,97,110,100,32,118,111,43,44,32,119,104,101,114,101,32,116,104,101,92,110,32,32,47,47,32,115,117,112,101,114,115,99,114,105,112,116,32,111,32,109,101,97,110,115,32,111,117,116,115,105,100,101,32,97,110,100,32,105,32,109,101,97,110,115,32,105,110,115,105,100,101,44,32,116,104,101,32,115,117,98,115,99,114,105,112,116,32,45,32,109,101,97,110,115,32,108,101,102,116,92,110,32,32,47,47,32,115,117,98,116,114,101,101,32,97,110,100,32,43,32,109,101,97,110,115,32,114,105,103,104,116,32,115,117,98,116,114,101,101,46,32,70,111,114,32,115,117,109,109,105,110,103,32,117,112,32,116,104,101,32,109,111,100,105,102,105,101,114,115,32,97,108,111,110,103,32,116,104,101,92,110,32,32,47,47,32,99,111,110,116,111,117,114,44,32,119,101,32,117,115,101,32,114,101,115,112,101,99,116,105,118,101,32,118,97,114,105,97,98,108,101,115,32,115,105,43,44,32,115,105,45,44,32,115,111,45,44,32,97,110,100,32,115,111,43,46,32,87,104,101,110,101,118,101,114,32,116,119,111,92,110,32,32,47,47,32,110,111,100,101,115,32,111,102,32,116,104,101,32,105,110,115,105,100,101,32,99,111,110,116,111,117,114,115,32,99,111,110,102,108,105,99,116,44,32,119,101,32,99,111,109,112,117,116,101,32,116,104,101,32,108,101,102,116,32,111,110,101,32,111,102,32,116,104,101,92,110,32,32,47,47,32,103,114,101,97,116,101,115,116,32,117,110,99,111,109,109,111,110,32,97,110,99,101,115,116,111,114,115,32,117,115,105,110,103,32,116,104,101,32,102,117,110,99,116,105,111,110,32,65,78,67,69,83,84,79,82,32,97,110,100,32,99,97,108,108,32,77,79,86,69,92,110,32,32,47,47,32,83,85,66,84,82,69,69,32,116,111,32,115,104,105,102,116,32,116,104,101,32,115,117,98,116,114,101,101,32,97,110,100,32,112,114,101,112,97,114,101,32,116,104,101,32,115,104,105,102,116,115,32,111,102,32,115,109,97,108,108,101,114,32,115,117,98,116,114,101,101,115,46,92,110,32,32,47,47,32,70,105,110,97,108,108,121,44,32,119,101,32,97,100,100,32,97,32,110,101,119,32,116,104,114,101,97,100,32,40,105,102,32,110,101,99,101,115,115,97,114,121,41,46,92,110,32,32,102,117,110,99,116,105,111,110,32,97,112,112,111,114,116,105,111,110,40,118,44,32,119,44,32,97,110,99,101,115,116,111,114,41,32,123,92,110,32,32,32,32,105,102,32,40,119,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,105,112,32,61,32,118,44,92,110,32,32,32,32,32,32,32,32,32,32,118,111,112,32,61,32,118,44,92,110,32,32,32,32,32,32,32,32,32,32,118,105,109,32,61,32,119,44,92,110,32,32,32,32,32,32,32,32,32,32,118,111,109,32,61,32,118,105,112,46,112,97,114,101,110,116,46,99,104,105,108,100,114,101,110,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,115,105,112,32,61,32,118,105,112,46,109,44,92,110,32,32,32,32,32,32,32,32,32,32,115,111,112,32,61,32,118,111,112,46,109,44,92,110,32,32,32,32,32,32,32,32,32,32,115,105,109,32,61,32,118,105,109,46,109,44,92,110,32,32,32,32,32,32,32,32,32,32,115,111,109,32,61,32,118,111,109,46,109,44,92,110,32,32,32,32,32,32,32,32,32,32,115,104,105,102,116,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,118,105,109,32,61,32,110,101,120,116,82,105,103,104,116,40,118,105,109,41,44,32,118,105,112,32,61,32,110,101,120,116,76,101,102,116,40,118,105,112,41,44,32,118,105,109,32,38,38,32,118,105,112,41,32,123,92,110,32,32,32,32,32,32,32,32,118,111,109,32,61,32,110,101,120,116,76,101,102,116,40,118,111,109,41,59,92,110,32,32,32,32,32,32,32,32,118,111,112,32,61,32,110,101,120,116,82,105,103,104,116,40,118,111,112,41,59,92,110,32,32,32,32,32,32,32,32,118,111,112,46,97,32,61,32,118,59,92,110,32,32,32,32,32,32,32,32,115,104,105,102,116,32,61,32,118,105,109,46,122,32,43,32,115,105,109,32,45,32,118,105,112,46,122,32,45,32,115,105,112,32,43,32,115,101,112,97,114,97,116,105,111,110,40,118,105,109,46,95,44,32,118,105,112,46,95,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,104,105,102,116,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,109,111,118,101,83,117,98,116,114,101,101,40,110,101,120,116,65,110,99,101,115,116,111,114,40,118,105,109,44,32,118,44,32,97,110,99,101,115,116,111,114,41,44,32,118,44,32,115,104,105,102,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,115,105,112,32,43,61,32,115,104,105,102,116,59,92,110,32,32,32,32,32,32,32,32,32,32,115,111,112,32,43,61,32,115,104,105,102,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,115,105,109,32,43,61,32,118,105,109,46,109,59,92,110,32,32,32,32,32,32,32,32,115,105,112,32,43,61,32,118,105,112,46,109,59,92,110,32,32,32,32,32,32,32,32,115,111,109,32,43,61,32,118,111,109,46,109,59,92,110,32,32,32,32,32,32,32,32,115,111,112,32,43,61,32,118,111,112,46,109,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,118,105,109,32,38,38,32,33,110,101,120,116,82,105,103,104,116,40,118,111,112,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,111,112,46,116,32,61,32,118,105,109,59,92,110,32,32,32,32,32,32,32,32,118,111,112,46,109,32,43,61,32,115,105,109,32,45,32,115,111,112,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,118,105,112,32,38,38,32,33,110,101,120,116,76,101,102,116,40,118,111,109,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,111,109,46,116,32,61,32,118,105,112,59,92,110,32,32,32,32,32,32,32,32,118,111,109,46,109,32,43,61,32,115,105,112,32,45,32,115,111,109,59,92,110,32,32,32,32,32,32,32,32,97,110,99,101,115,116,111,114,32,61,32,118,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,97,110,99,101,115,116,111,114,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,105,122,101,78,111,100,101,40,110,111,100,101,41,32,123,92,110,32,32,32,32,110,111,100,101,46,120,32,42,61,32,100,120,59,92,110,32,32,32,32,110,111,100,101,46,121,32,61,32,110,111,100,101,46,100,101,112,116,104,32,42,32,100,121,59,92,110,32,32,125,92,110,92,110,32,32,116,114,101,101,46,115,101,112,97,114,97,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,101,112,97,114,97,116,105,111,110,32,61,32,120,44,32,116,114,101,101,41,32,58,32,115,101,112,97,114,97,116,105,111,110,59,92,110,32,32,125,59,92,110,92,110,32,32,116,114,101,101,46,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,110,111,100,101,83,105,122,101,32,61,32,102,97,108,115,101,44,32,100,120,32,61,32,43,120,91,48,93,44,32,100,121,32,61,32,43,120,91,49,93,44,32,116,114,101,101,41,32,58,32,40,110,111,100,101,83,105,122,101,32,63,32,110,117,108,108,32,58,32,91,100,120,44,32,100,121,93,41,59,92,110,32,32,125,59,92,110,92,110,32,32,116,114,101,101,46,110,111,100,101,83,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,110,111,100,101,83,105,122,101,32,61,32,116,114,117,101,44,32,100,120,32,61,32,43,120,91,48,93,44,32,100,121,32,61,32,43,120,91,49,93,44,32,116,114,101,101,41,32,58,32,40,110,111,100,101,83,105,122,101,32,63,32,91,100,120,44,32,100,121,93,32,58,32,110,117,108,108,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,116,114,101,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,98,105,110,97,114,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,98,105,110,97,114,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,112,97,114,101,110,116,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,115,32,61,32,112,97,114,101,110,116,46,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,105,44,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,115,117,109,44,32,115,117,109,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,32,43,32,49,41,59,92,110,92,110,32,32,102,111,114,32,40,115,117,109,115,91,48,93,32,61,32,115,117,109,32,61,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,115,117,109,115,91,105,32,43,32,49,93,32,61,32,115,117,109,32,43,61,32,110,111,100,101,115,91,105,93,46,118,97,108,117,101,59,92,110,32,32,125,92,110,92,110,32,32,112,97,114,116,105,116,105,111,110,40,48,44,32,110,44,32,112,97,114,101,110,116,46,118,97,108,117,101,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,114,116,105,116,105,111,110,40,105,44,32,106,44,32,118,97,108,117,101,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,32,32,105,102,32,40,105,32,62,61,32,106,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,59,92,110,32,32,32,32,32,32,110,111,100,101,46,120,48,32,61,32,120,48,44,32,110,111,100,101,46,121,48,32,61,32,121,48,59,92,110,32,32,32,32,32,32,110,111,100,101,46,120,49,32,61,32,120,49,44,32,110,111,100,101,46,121,49,32,61,32,121,49,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,79,102,102,115,101,116,32,61,32,115,117,109,115,91,105,93,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,84,97,114,103,101,116,32,61,32,40,118,97,108,117,101,32,47,32,50,41,32,43,32,118,97,108,117,101,79,102,102,115,101,116,44,92,110,32,32,32,32,32,32,32,32,107,32,61,32,105,32,43,32,49,44,92,110,32,32,32,32,32,32,32,32,104,105,32,61,32,106,32,45,32,49,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,107,32,60,32,104,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,105,100,32,61,32,107,32,43,32,104,105,32,62,62,62,32,49,59,92,110,32,32,32,32,32,32,105,102,32,40,115,117,109,115,91,109,105,100,93,32,60,32,118,97,108,117,101,84,97,114,103,101,116,41,32,107,32,61,32,109,105,100,32,43,32,49,59,92,110,32,32,32,32,32,32,101,108,115,101,32,104,105,32,61,32,109,105,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,40,118,97,108,117,101,84,97,114,103,101,116,32,45,32,115,117,109,115,91,107,32,45,32,49,93,41,32,60,32,40,115,117,109,115,91,107,93,32,45,32,118,97,108,117,101,84,97,114,103,101,116,41,32,38,38,32,105,32,43,32,49,32,60,32,107,41,32,45,45,107,59,92,110,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,76,101,102,116,32,61,32,115,117,109,115,91,107,93,32,45,32,118,97,108,117,101,79,102,102,115,101,116,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,82,105,103,104,116,32,61,32,118,97,108,117,101,32,45,32,118,97,108,117,101,76,101,102,116,59,92,110,92,110,32,32,32,32,105,102,32,40,40,120,49,32,45,32,120,48,41,32,62,32,40,121,49,32,45,32,121,48,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,120,107,32,61,32,40,120,48,32,42,32,118,97,108,117,101,82,105,103,104,116,32,43,32,120,49,32,42,32,118,97,108,117,101,76,101,102,116,41,32,47,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,112,97,114,116,105,116,105,111,110,40,105,44,32,107,44,32,118,97,108,117,101,76,101,102,116,44,32,120,48,44,32,121,48,44,32,120,107,44,32,121,49,41,59,92,110,32,32,32,32,32,32,112,97,114,116,105,116,105,111,110,40,107,44,32,106,44,32,118,97,108,117,101,82,105,103,104,116,44,32,120,107,44,32,121,48,44,32,120,49,44,32,121,49,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,121,107,32,61,32,40,121,48,32,42,32,118,97,108,117,101,82,105,103,104,116,32,43,32,121,49,32,42,32,118,97,108,117,101,76,101,102,116,41,32,47,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,112,97,114,116,105,116,105,111,110,40,105,44,32,107,44,32,118,97,108,117,101,76,101,102,116,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,107,41,59,92,110,32,32,32,32,32,32,112,97,114,116,105,116,105,111,110,40,107,44,32,106,44,32,118,97,108,117,101,82,105,103,104,116,44,32,120,48,44,32,121,107,44,32,120,49,44,32,121,49,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,98,105,110,97,114,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,100,105,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,100,105,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,112,97,114,101,110,116,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,115,32,61,32,112,97,114,101,110,116,46,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,110,111,100,101,44,92,110,32,32,32,32,32,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,107,32,61,32,112,97,114,101,110,116,46,118,97,108,117,101,32,38,38,32,40,120,49,32,45,32,120,48,41,32,47,32,112,97,114,101,110,116,46,118,97,108,117,101,59,92,110,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,44,32,110,111,100,101,46,121,48,32,61,32,121,48,44,32,110,111,100,101,46,121,49,32,61,32,121,49,59,92,110,32,32,32,32,110,111,100,101,46,120,48,32,61,32,120,48,44,32,110,111,100,101,46,120,49,32,61,32,120,48,32,43,61,32,110,111,100,101,46,118,97,108,117,101,32,42,32,107,59,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,100,105,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,111,117,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,111,117,110,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,114,111,117,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,113,117,97,114,105,102,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,113,117,97,114,105,102,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,113,117,97,114,105,102,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,99,99,101,115,115,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,97,99,99,101,115,115,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,97,99,99,101,115,115,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,116,105,108,101,32,61,32,95,115,113,117,97,114,105,102,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,32,32,114,111,117,110,100,32,61,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,100,120,32,61,32,49,44,92,110,32,32,32,32,32,32,100,121,32,61,32,49,44,92,110,32,32,32,32,32,32,112,97,100,100,105,110,103,83,116,97,99,107,32,61,32,91,48,93,44,92,110,32,32,32,32,32,32,112,97,100,100,105,110,103,73,110,110,101,114,32,61,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,110,115,116,97,110,116,90,101,114,111,44,92,110,32,32,32,32,32,32,112,97,100,100,105,110,103,84,111,112,32,61,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,110,115,116,97,110,116,90,101,114,111,44,92,110,32,32,32,32,32,32,112,97,100,100,105,110,103,82,105,103,104,116,32,61,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,110,115,116,97,110,116,90,101,114,111,44,92,110,32,32,32,32,32,32,112,97,100,100,105,110,103,66,111,116,116,111,109,32,61,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,110,115,116,97,110,116,90,101,114,111,44,92,110,32,32,32,32,32,32,112,97,100,100,105,110,103,76,101,102,116,32,61,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,110,115,116,97,110,116,90,101,114,111,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,114,101,101,109,97,112,40,114,111,111,116,41,32,123,92,110,32,32,32,32,114,111,111,116,46,120,48,32,61,92,110,32,32,32,32,114,111,111,116,46,121,48,32,61,32,48,59,92,110,32,32,32,32,114,111,111,116,46,120,49,32,61,32,100,120,59,92,110,32,32,32,32,114,111,111,116,46,121,49,32,61,32,100,121,59,92,110,32,32,32,32,114,111,111,116,46,101,97,99,104,66,101,102,111,114,101,40,112,111,115,105,116,105,111,110,78,111,100,101,41,59,92,110,32,32,32,32,112,97,100,100,105,110,103,83,116,97,99,107,32,61,32,91,48,93,59,92,110,32,32,32,32,105,102,32,40,114,111,117,110,100,41,32,114,111,111,116,46,101,97,99,104,66,101,102,111,114,101,40,95,114,111,117,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,111,111,116,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,111,115,105,116,105,111,110,78,111,100,101,40,110,111,100,101,41,32,123,92,110,32,32,32,32,118,97,114,32,112,32,61,32,112,97,100,100,105,110,103,83,116,97,99,107,91,110,111,100,101,46,100,101,112,116,104,93,44,92,110,32,32,32,32,32,32,32,32,120,48,32,61,32,110,111,100,101,46,120,48,32,43,32,112,44,92,110,32,32,32,32,32,32,32,32,121,48,32,61,32,110,111,100,101,46,121,48,32,43,32,112,44,92,110,32,32,32,32,32,32,32,32,120,49,32,61,32,110,111,100,101,46,120,49,32,45,32,112,44,92,110,32,32,32,32,32,32,32,32,121,49,32,61,32,110,111,100,101,46,121,49,32,45,32,112,59,92,110,32,32,32,32,105,102,32,40,120,49,32,60,32,120,48,41,32,120,48,32,61,32,120,49,32,61,32,40,120,48,32,43,32,120,49,41,32,47,32,50,59,92,110,32,32,32,32,105,102,32,40,121,49,32,60,32,121,48,41,32,121,48,32,61,32,121,49,32,61,32,40,121,48,32,43,32,121,49,41,32,47,32,50,59,92,110,32,32,32,32,110,111,100,101,46,120,48,32,61,32,120,48,59,92,110,32,32,32,32,110,111,100,101,46,121,48,32,61,32,121,48,59,92,110,32,32,32,32,110,111,100,101,46,120,49,32,61,32,120,49,59,92,110,32,32,32,32,110,111,100,101,46,121,49,32,61,32,121,49,59,92,110,32,32,32,32,105,102,32,40,110,111,100,101,46,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,112,32,61,32,112,97,100,100,105,110,103,83,116,97,99,107,91,110,111,100,101,46,100,101,112,116,104,32,43,32,49,93,32,61,32,112,97,100,100,105,110,103,73,110,110,101,114,40,110,111,100,101,41,32,47,32,50,59,92,110,32,32,32,32,32,32,120,48,32,43,61,32,112,97,100,100,105,110,103,76,101,102,116,40,110,111,100,101,41,32,45,32,112,59,92,110,32,32,32,32,32,32,121,48,32,43,61,32,112,97,100,100,105,110,103,84,111,112,40,110,111,100,101,41,32,45,32,112,59,92,110,32,32,32,32,32,32,120,49,32,45,61,32,112,97,100,100,105,110,103,82,105,103,104,116,40,110,111,100,101,41,32,45,32,112,59,92,110,32,32,32,32,32,32,121,49,32,45,61,32,112,97,100,100,105,110,103,66,111,116,116,111,109,40,110,111,100,101,41,32,45,32,112,59,92,110,32,32,32,32,32,32,105,102,32,40,120,49,32,60,32,120,48,41,32,120,48,32,61,32,120,49,32,61,32,40,120,48,32,43,32,120,49,41,32,47,32,50,59,92,110,32,32,32,32,32,32,105,102,32,40,121,49,32,60,32,121,48,41,32,121,48,32,61,32,121,49,32,61,32,40,121,48,32,43,32,121,49,41,32,47,32,50,59,92,110,32,32,32,32,32,32,116,105,108,101,40,110,111,100,101,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,116,114,101,101,109,97,112,46,114,111,117,110,100,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,114,111,117,110,100,32,61,32,33,33,120,44,32,116,114,101,101,109,97,112,41,32,58,32,114,111,117,110,100,59,92,110,32,32,125,59,92,110,92,110,32,32,116,114,101,101,109,97,112,46,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,120,32,61,32,43,120,91,48,93,44,32,100,121,32,61,32,43,120,91,49,93,44,32,116,114,101,101,109,97,112,41,32,58,32,91,100,120,44,32,100,121,93,59,92,110,32,32,125,59,92,110,92,110,32,32,116,114,101,101,109,97,112,46,116,105,108,101,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,105,108,101,32,61,32,40,48,44,95,97,99,99,101,115,115,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,114,101,113,117,105,114,101,100,41,40,120,41,44,32,116,114,101,101,109,97,112,41,32,58,32,116,105,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,116,114,101,101,109,97,112,46,112,97,100,100,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,116,114,101,101,109,97,112,46,112,97,100,100,105,110,103,73,110,110,101,114,40,120,41,46,112,97,100,100,105,110,103,79,117,116,101,114,40,120,41,32,58,32,116,114,101,101,109,97,112,46,112,97,100,100,105,110,103,73,110,110,101,114,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,116,114,101,101,109,97,112,46,112,97,100,100,105,110,103,73,110,110,101,114,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,97,100,100,105,110,103,73,110,110,101,114,32,61,32,116,121,112,101,111,102,32,120,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,120,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,120,41,44,32,116,114,101,101,109,97,112,41,32,58,32,112,97,100,100,105,110,103,73,110,110,101,114,59,92,110,32,32,125,59,92,110,92,110,32,32,116,114,101,101,109,97,112,46,112,97,100,100,105,110,103,79,117,116,101,114,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,116,114,101,101,109,97,112,46,112,97,100,100,105,110,103,84,111,112,40,120,41,46,112,97,100,100,105,110,103,82,105,103,104,116,40,120,41,46,112,97,100,100,105,110,103,66,111,116,116,111,109,40,120,41,46,112,97,100,100,105,110,103,76,101,102,116,40,120,41,32,58,32,116,114,101,101,109,97,112,46,112,97,100,100,105,110,103,84,111,112,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,116,114,101,101,109,97,112,46,112,97,100,100,105,110,103,84,111,112,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,97,100,100,105,110,103,84,111,112,32,61,32,116,121,112,101,111,102,32,120,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,120,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,120,41,44,32,116,114,101,101,109,97,112,41,32,58,32,112,97,100,100,105,110,103,84,111,112,59,92,110,32,32,125,59,92,110,92,110,32,32,116,114,101,101,109,97,112,46,112,97,100,100,105,110,103,82,105,103,104,116,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,97,100,100,105,110,103,82,105,103,104,116,32,61,32,116,121,112,101,111,102,32,120,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,120,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,120,41,44,32,116,114,101,101,109,97,112,41,32,58,32,112,97,100,100,105,110,103,82,105,103,104,116,59,92,110,32,32,125,59,92,110,92,110,32,32,116,114,101,101,109,97,112,46,112,97,100,100,105,110,103,66,111,116,116,111,109,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,97,100,100,105,110,103,66,111,116,116,111,109,32,61,32,116,121,112,101,111,102,32,120,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,120,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,120,41,44,32,116,114,101,101,109,97,112,41,32,58,32,112,97,100,100,105,110,103,66,111,116,116,111,109,59,92,110,32,32,125,59,92,110,92,110,32,32,116,114,101,101,109,97,112,46,112,97,100,100,105,110,103,76,101,102,116,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,97,100,100,105,110,103,76,101,102,116,32,61,32,116,121,112,101,111,102,32,120,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,120,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,120,41,44,32,116,114,101,101,109,97,112,41,32,58,32,112,97,100,100,105,110,103,76,101,102,116,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,116,114,101,101,109,97,112,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,114,101,115,113,117,97,114,105,102,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,114,101,115,113,117,97,114,105,102,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,99,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,100,105,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,108,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,108,105,99,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,108,105,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,113,117,97,114,105,102,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,113,117,97,114,105,102,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,113,117,97,114,105,102,121,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,114,97,116,105,111,41,32,123,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,115,113,117,97,114,105,102,121,40,112,97,114,101,110,116,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,32,32,105,102,32,40,40,114,111,119,115,32,61,32,112,97,114,101,110,116,46,95,115,113,117,97,114,105,102,121,41,32,38,38,32,40,114,111,119,115,46,114,97,116,105,111,32,61,61,61,32,114,97,116,105,111,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,111,119,115,44,92,110,32,32,32,32,32,32,32,32,32,32,114,111,119,44,92,110,32,32,32,32,32,32,32,32,32,32,110,111,100,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,105,44,92,110,32,32,32,32,32,32,32,32,32,32,106,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,110,44,92,110,32,32,32,32,32,32,32,32,32,32,109,32,61,32,114,111,119,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,112,97,114,101,110,116,46,118,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,106,32,60,32,109,41,32,123,92,110,32,32,32,32,32,32,32,32,114,111,119,32,61,32,114,111,119,115,91,106,93,44,32,110,111,100,101,115,32,61,32,114,111,119,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,114,111,119,46,118,97,108,117,101,32,61,32,48,44,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,114,111,119,46,118,97,108,117,101,32,43,61,32,110,111,100,101,115,91,105,93,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,111,119,46,100,105,99,101,41,32,40,48,44,95,100,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,114,111,119,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,48,32,43,61,32,40,121,49,32,45,32,121,48,41,32,42,32,114,111,119,46,118,97,108,117,101,32,47,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,40,48,44,95,115,108,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,114,111,119,44,32,120,48,44,32,121,48,44,32,120,48,32,43,61,32,40,120,49,32,45,32,120,48,41,32,42,32,114,111,119,46,118,97,108,117,101,32,47,32,118,97,108,117,101,44,32,121,49,41,59,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,45,61,32,114,111,119,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,112,97,114,101,110,116,46,95,115,113,117,97,114,105,102,121,32,61,32,114,111,119,115,32,61,32,40,48,44,95,115,113,117,97,114,105,102,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,113,117,97,114,105,102,121,82,97,116,105,111,41,40,114,97,116,105,111,44,32,112,97,114,101,110,116,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,59,92,110,32,32,32,32,32,32,114,111,119,115,46,114,97,116,105,111,32,61,32,114,97,116,105,111,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,115,113,117,97,114,105,102,121,46,114,97,116,105,111,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,117,115,116,111,109,40,40,120,32,61,32,43,120,41,32,62,32,49,32,63,32,120,32,58,32,49,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,114,101,115,113,117,97,114,105,102,121,59,92,110,125,41,40,95,115,113,117,97,114,105,102,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,112,104,105,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,114,101,115,113,117,97,114,105,102,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,114,111,117,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,114,111,117,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,111,100,101,41,32,123,92,110,32,32,110,111,100,101,46,120,48,32,61,32,77,97,116,104,46,114,111,117,110,100,40,110,111,100,101,46,120,48,41,59,92,110,32,32,110,111,100,101,46,121,48,32,61,32,77,97,116,104,46,114,111,117,110,100,40,110,111,100,101,46,121,48,41,59,92,110,32,32,110,111,100,101,46,120,49,32,61,32,77,97,116,104,46,114,111,117,110,100,40,110,111,100,101,46,120,49,41,59,92,110,32,32,110,111,100,101,46,121,49,32,61,32,77,97,116,104,46,114,111,117,110,100,40,110,111,100,101,46,121,49,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,114,111,117,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,108,105,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,108,105,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,112,97,114,101,110,116,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,115,32,61,32,112,97,114,101,110,116,46,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,110,111,100,101,44,92,110,32,32,32,32,32,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,107,32,61,32,112,97,114,101,110,116,46,118,97,108,117,101,32,38,38,32,40,121,49,32,45,32,121,48,41,32,47,32,112,97,114,101,110,116,46,118,97,108,117,101,59,92,110,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,110,111,100,101,32,61,32,110,111,100,101,115,91,105,93,44,32,110,111,100,101,46,120,48,32,61,32,120,48,44,32,110,111,100,101,46,120,49,32,61,32,120,49,59,92,110,32,32,32,32,110,111,100,101,46,121,48,32,61,32,121,48,44,32,110,111,100,101,46,121,49,32,61,32,121,48,32,43,61,32,110,111,100,101,46,118,97,108,117,101,32,42,32,107,59,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,108,105,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,108,105,99,101,68,105,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,108,105,99,101,68,105,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,99,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,100,105,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,108,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,108,105,99,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,108,105,99,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,112,97,114,101,110,116,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,40,112,97,114,101,110,116,46,100,101,112,116,104,32,38,32,49,32,63,32,95,115,108,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,58,32,95,100,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,112,97,114,101,110,116,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,108,105,99,101,68,105,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,113,117,97,114,105,102,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,113,117,97,114,105,102,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,104,105,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,104,105,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,113,117,97,114,105,102,121,82,97,116,105,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,113,117,97,114,105,102,121,82,97,116,105,111,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,99,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,100,105,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,108,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,108,105,99,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,108,105,99,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,112,104,105,32,61,32,40,49,32,43,32,77,97,116,104,46,115,113,114,116,40,53,41,41,32,47,32,50,59,92,110,92,110,102,117,110,99,116,105,111,110,32,115,113,117,97,114,105,102,121,82,97,116,105,111,40,114,97,116,105,111,44,32,112,97,114,101,110,116,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,118,97,114,32,114,111,119,115,32,61,32,91,93,44,92,110,32,32,32,32,32,32,110,111,100,101,115,32,61,32,112,97,114,101,110,116,46,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,114,111,119,44,92,110,32,32,32,32,32,32,110,111,100,101,86,97,108,117,101,44,92,110,32,32,32,32,32,32,105,48,32,61,32,48,44,92,110,32,32,32,32,32,32,105,49,32,61,32,48,44,92,110,32,32,32,32,32,32,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,100,120,44,32,100,121,44,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,112,97,114,101,110,116,46,118,97,108,117,101,44,92,110,32,32,32,32,32,32,115,117,109,86,97,108,117,101,44,92,110,32,32,32,32,32,32,109,105,110,86,97,108,117,101,44,92,110,32,32,32,32,32,32,109,97,120,86,97,108,117,101,44,92,110,32,32,32,32,32,32,110,101,119,82,97,116,105,111,44,92,110,32,32,32,32,32,32,109,105,110,82,97,116,105,111,44,92,110,32,32,32,32,32,32,97,108,112,104,97,44,92,110,32,32,32,32,32,32,98,101,116,97,59,92,110,92,110,32,32,119,104,105,108,101,32,40,105,48,32,60,32,110,41,32,123,92,110,32,32,32,32,100,120,32,61,32,120,49,32,45,32,120,48,44,32,100,121,32,61,32,121,49,32,45,32,121,48,59,92,110,92,110,32,32,32,32,47,47,32,70,105,110,100,32,116,104,101,32,110,101,120,116,32,110,111,110,45,101,109,112,116,121,32,110,111,100,101,46,92,110,32,32,32,32,100,111,32,115,117,109,86,97,108,117,101,32,61,32,110,111,100,101,115,91,105,49,43,43,93,46,118,97,108,117,101,59,32,119,104,105,108,101,32,40,33,115,117,109,86,97,108,117,101,32,38,38,32,105,49,32,60,32,110,41,59,92,110,32,32,32,32,109,105,110,86,97,108,117,101,32,61,32,109,97,120,86,97,108,117,101,32,61,32,115,117,109,86,97,108,117,101,59,92,110,32,32,32,32,97,108,112,104,97,32,61,32,77,97,116,104,46,109,97,120,40,100,121,32,47,32,100,120,44,32,100,120,32,47,32,100,121,41,32,47,32,40,118,97,108,117,101,32,42,32,114,97,116,105,111,41,59,92,110,32,32,32,32,98,101,116,97,32,61,32,115,117,109,86,97,108,117,101,32,42,32,115,117,109,86,97,108,117,101,32,42,32,97,108,112,104,97,59,92,110,32,32,32,32,109,105,110,82,97,116,105,111,32,61,32,77,97,116,104,46,109,97,120,40,109,97,120,86,97,108,117,101,32,47,32,98,101,116,97,44,32,98,101,116,97,32,47,32,109,105,110,86,97,108,117,101,41,59,92,110,92,110,32,32,32,32,47,47,32,75,101,101,112,32,97,100,100,105,110,103,32,110,111,100,101,115,32,119,104,105,108,101,32,116,104,101,32,97,115,112,101,99,116,32,114,97,116,105,111,32,109,97,105,110,116,97,105,110,115,32,111,114,32,105,109,112,114,111,118,101,115,46,92,110,32,32,32,32,102,111,114,32,40,59,32,105,49,32,60,32,110,59,32,43,43,105,49,41,32,123,92,110,32,32,32,32,32,32,115,117,109,86,97,108,117,101,32,43,61,32,110,111,100,101,86,97,108,117,101,32,61,32,110,111,100,101,115,91,105,49,93,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,86,97,108,117,101,32,60,32,109,105,110,86,97,108,117,101,41,32,109,105,110,86,97,108,117,101,32,61,32,110,111,100,101,86,97,108,117,101,59,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,86,97,108,117,101,32,62,32,109,97,120,86,97,108,117,101,41,32,109,97,120,86,97,108,117,101,32,61,32,110,111,100,101,86,97,108,117,101,59,92,110,32,32,32,32,32,32,98,101,116,97,32,61,32,115,117,109,86,97,108,117,101,32,42,32,115,117,109,86,97,108,117,101,32,42,32,97,108,112,104,97,59,92,110,32,32,32,32,32,32,110,101,119,82,97,116,105,111,32,61,32,77,97,116,104,46,109,97,120,40,109,97,120,86,97,108,117,101,32,47,32,98,101,116,97,44,32,98,101,116,97,32,47,32,109,105,110,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,82,97,116,105,111,32,62,32,109,105,110,82,97,116,105,111,41,32,123,32,115,117,109,86,97,108,117,101,32,45,61,32,110,111,100,101,86,97,108,117,101,59,32,98,114,101,97,107,59,32,125,92,110,32,32,32,32,32,32,109,105,110,82,97,116,105,111,32,61,32,110,101,119,82,97,116,105,111,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,80,111,115,105,116,105,111,110,32,97,110,100,32,114,101,99,111,114,100,32,116,104,101,32,114,111,119,32,111,114,105,101,110,116,97,116,105,111,110,46,92,110,32,32,32,32,114,111,119,115,46,112,117,115,104,40,114,111,119,32,61,32,123,118,97,108,117,101,58,32,115,117,109,86,97,108,117,101,44,32,100,105,99,101,58,32,100,120,32,60,32,100,121,44,32,99,104,105,108,100,114,101,110,58,32,110,111,100,101,115,46,115,108,105,99,101,40,105,48,44,32,105,49,41,125,41,59,92,110,32,32,32,32,105,102,32,40,114,111,119,46,100,105,99,101,41,32,40,48,44,95,100,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,114,111,119,44,32,120,48,44,32,121,48,44,32,120,49,44,32,118,97,108,117,101,32,63,32,121,48,32,43,61,32,100,121,32,42,32,115,117,109,86,97,108,117,101,32,47,32,118,97,108,117,101,32,58,32,121,49,41,59,92,110,32,32,32,32,101,108,115,101,32,40,48,44,95,115,108,105,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,114,111,119,44,32,120,48,44,32,121,48,44,32,118,97,108,117,101,32,63,32,120,48,32,43,61,32,100,120,32,42,32,115,117,109,86,97,108,117,101,32,47,32,118,97,108,117,101,32,58,32,120,49,44,32,121,49,41,59,92,110,32,32,32,32,118,97,108,117,101,32,45,61,32,115,117,109,86,97,108,117,101,44,32,105,48,32,61,32,105,49,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,114,111,119,115,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,114,97,116,105,111,41,32,123,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,113,117,97,114,105,102,121,40,112,97,114,101,110,116,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,32,32,115,113,117,97,114,105,102,121,82,97,116,105,111,40,114,97,116,105,111,44,32,112,97,114,101,110,116,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,59,92,110,32,32,125,92,110,92,110,32,32,115,113,117,97,114,105,102,121,46,114,97,116,105,111,32,61,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,117,115,116,111,109,40,40,120,32,61,32,43,120,41,32,62,32,49,32,63,32,120,32,58,32,49,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,115,113,117,97,114,105,102,121,59,92,110,125,41,40,112,104,105,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,116,114,101,101,109,97,112,47,115,113,117,97,114,105,102,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,110,101,114,105,99,65,114,114,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,110,101,114,105,99,65,114,114,97,121,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,97,108,117,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,118,97,108,117,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,118,97,108,117,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,65,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,117,109,98,101,114,65,114,114,97,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,110,117,109,98,101,114,65,114,114,97,121,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,40,48,44,95,110,117,109,98,101,114,65,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,115,78,117,109,98,101,114,65,114,114,97,121,41,40,98,41,32,63,32,95,110,117,109,98,101,114,65,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,58,32,103,101,110,101,114,105,99,65,114,114,97,121,41,40,97,44,32,98,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,110,101,114,105,99,65,114,114,97,121,40,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,110,98,32,61,32,98,32,63,32,98,46,108,101,110,103,116,104,32,58,32,48,44,92,110,32,32,32,32,32,32,110,97,32,61,32,97,32,63,32,77,97,116,104,46,109,105,110,40,110,98,44,32,97,46,108,101,110,103,116,104,41,32,58,32,48,44,92,110,32,32,32,32,32,32,120,32,61,32,110,101,119,32,65,114,114,97,121,40,110,97,41,44,92,110,32,32,32,32,32,32,99,32,61,32,110,101,119,32,65,114,114,97,121,40,110,98,41,44,92,110,32,32,32,32,32,32,105,59,92,110,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,97,59,32,43,43,105,41,32,120,91,105,93,32,61,32,40,48,44,95,118,97,108,117,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,97,91,105,93,44,32,98,91,105,93,41,59,92,110,32,32,102,111,114,32,40,59,32,105,32,60,32,110,98,59,32,43,43,105,41,32,99,91,105,93,32,61,32,98,91,105,93,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,97,59,32,43,43,105,41,32,99,91,105,93,32,61,32,120,91,105,93,40,116,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,98,97,115,105,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,98,97,115,105,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,97,115,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,97,115,105,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,98,97,115,105,115,40,116,49,44,32,118,48,44,32,118,49,44,32,118,50,44,32,118,51,41,32,123,92,110,32,32,118,97,114,32,116,50,32,61,32,116,49,32,42,32,116,49,44,32,116,51,32,61,32,116,50,32,42,32,116,49,59,92,110,32,32,114,101,116,117,114,110,32,40,40,49,32,45,32,51,32,42,32,116,49,32,43,32,51,32,42,32,116,50,32,45,32,116,51,41,32,42,32,118,48,92,110,32,32,32,32,32,32,43,32,40,52,32,45,32,54,32,42,32,116,50,32,43,32,51,32,42,32,116,51,41,32,42,32,118,49,92,110,32,32,32,32,32,32,43,32,40,49,32,43,32,51,32,42,32,116,49,32,43,32,51,32,42,32,116,50,32,45,32,51,32,42,32,116,51,41,32,42,32,118,50,92,110,32,32,32,32,32,32,43,32,116,51,32,42,32,118,51,41,32,47,32,54,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,115,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,116,32,60,61,32,48,32,63,32,40,116,32,61,32,48,41,32,58,32,116,32,62,61,32,49,32,63,32,40,116,32,61,32,49,44,32,110,32,45,32,49,41,32,58,32,77,97,116,104,46,102,108,111,111,114,40,116,32,42,32,110,41,44,92,110,32,32,32,32,32,32,32,32,118,49,32,61,32,118,97,108,117,101,115,91,105,93,44,92,110,32,32,32,32,32,32,32,32,118,50,32,61,32,118,97,108,117,101,115,91,105,32,43,32,49,93,44,92,110,32,32,32,32,32,32,32,32,118,48,32,61,32,105,32,62,32,48,32,63,32,118,97,108,117,101,115,91,105,32,45,32,49,93,32,58,32,50,32,42,32,118,49,32,45,32,118,50,44,92,110,32,32,32,32,32,32,32,32,118,51,32,61,32,105,32,60,32,110,32,45,32,49,32,63,32,118,97,108,117,101,115,91,105,32,43,32,50,93,32,58,32,50,32,42,32,118,50,32,45,32,118,49,59,92,110,32,32,32,32,114,101,116,117,114,110,32,98,97,115,105,115,40,40,116,32,45,32,105,32,47,32,110,41,32,42,32,110,44,32,118,48,44,32,118,49,44,32,118,50,44,32,118,51,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,98,97,115,105,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,98,97,115,105,115,67,108,111,115,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,98,97,115,105,115,67,108,111,115,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,115,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,97,115,105,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,98,97,115,105,115,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,115,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,77,97,116,104,46,102,108,111,111,114,40,40,40,116,32,37,61,32,49,41,32,60,32,48,32,63,32,43,43,116,32,58,32,116,41,32,42,32,110,41,44,92,110,32,32,32,32,32,32,32,32,118,48,32,61,32,118,97,108,117,101,115,91,40,105,32,43,32,110,32,45,32,49,41,32,37,32,110,93,44,92,110,32,32,32,32,32,32,32,32,118,49,32,61,32,118,97,108,117,101,115,91,105,32,37,32,110,93,44,92,110,32,32,32,32,32,32,32,32,118,50,32,61,32,118,97,108,117,101,115,91,40,105,32,43,32,49,41,32,37,32,110,93,44,92,110,32,32,32,32,32,32,32,32,118,51,32,61,32,118,97,108,117,101,115,91,40,105,32,43,32,50,41,32,37,32,110,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,98,97,115,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,98,97,115,105,115,41,40,40,116,32,45,32,105,32,47,32,110,41,32,42,32,110,44,32,118,48,44,32,118,49,44,32,118,50,44,32,118,51,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,98,97,115,105,115,67,108,111,115,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,111,108,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,111,108,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,111,103,97,109,109,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,97,109,109,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,97,109,109,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,117,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,108,105,110,101,97,114,40,97,44,32,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,32,43,32,116,32,42,32,100,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,112,111,110,101,110,116,105,97,108,40,97,44,32,98,44,32,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,32,61,32,77,97,116,104,46,112,111,119,40,97,44,32,121,41,44,32,98,32,61,32,77,97,116,104,46,112,111,119,40,98,44,32,121,41,32,45,32,97,44,32,121,32,61,32,49,32,47,32,121,44,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,97,32,43,32,116,32,42,32,98,44,32,121,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,117,101,40,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,100,32,61,32,98,32,45,32,97,59,92,110,32,32,114,101,116,117,114,110,32,100,32,63,32,108,105,110,101,97,114,40,97,44,32,100,32,62,32,49,56,48,32,124,124,32,100,32,60,32,45,49,56,48,32,63,32,100,32,45,32,51,54,48,32,42,32,77,97,116,104,46,114,111,117,110,100,40,100,32,47,32,51,54,48,41,32,58,32,100,41,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,105,115,78,97,78,40,97,41,32,63,32,98,32,58,32,97,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,97,109,109,97,40,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,121,32,61,32,43,121,41,32,61,61,61,32,49,32,63,32,110,111,103,97,109,109,97,32,58,32,102,117,110,99,116,105,111,110,40,97,44,32,98,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,98,32,45,32,97,32,63,32,101,120,112,111,110,101,110,116,105,97,108,40,97,44,32,98,44,32,121,41,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,105,115,78,97,78,40,97,41,32,63,32,98,32,58,32,97,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,103,97,109,109,97,40,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,100,32,61,32,98,32,45,32,97,59,92,110,32,32,114,101,116,117,114,110,32,100,32,63,32,108,105,110,101,97,114,40,97,44,32,100,41,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,105,115,78,97,78,40,97,41,32,63,32,98,32,58,32,97,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,111,108,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,117,98,101,104,101,108,105,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,117,98,101,104,101,108,105,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,98,101,104,101,108,105,120,76,111,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,117,98,101,104,101,108,105,120,76,111,110,103,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,108,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,117,98,101,104,101,108,105,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,108,111,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,111,108,111,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,99,117,98,101,104,101,108,105,120,40,104,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,102,117,110,99,116,105,111,110,32,99,117,98,101,104,101,108,105,120,71,97,109,109,97,40,121,41,32,123,92,110,32,32,32,32,121,32,61,32,43,121,59,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,117,98,101,104,101,108,105,120,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,32,61,32,104,117,101,40,40,115,116,97,114,116,32,61,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,41,41,46,104,44,32,40,101,110,100,32,61,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,101,110,100,41,41,46,104,41,44,92,110,32,32,32,32,32,32,32,32,32,32,115,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,46,115,44,32,101,110,100,46,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,108,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,46,108,44,32,101,110,100,46,108,41,44,92,110,32,32,32,32,32,32,32,32,32,32,111,112,97,99,105,116,121,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,46,111,112,97,99,105,116,121,44,32,101,110,100,46,111,112,97,99,105,116,121,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,46,104,32,61,32,104,40,116,41,59,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,46,115,32,61,32,115,40,116,41,59,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,46,108,32,61,32,108,40,77,97,116,104,46,112,111,119,40,116,44,32,121,41,41,59,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,46,111,112,97,99,105,116,121,32,61,32,111,112,97,99,105,116,121,40,116,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,97,114,116,32,43,32,92,34,92,34,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,99,117,98,101,104,101,108,105,120,46,103,97,109,109,97,32,61,32,99,117,98,101,104,101,108,105,120,71,97,109,109,97,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,99,117,98,101,104,101,108,105,120,59,92,110,32,32,125,41,40,49,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,117,98,101,104,101,108,105,120,40,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,104,117,101,41,41,59,92,110,118,97,114,32,99,117,98,101,104,101,108,105,120,76,111,110,103,32,61,32,99,117,98,101,104,101,108,105,120,40,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,117,98,101,104,101,108,105,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,100,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,100,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,100,32,61,32,110,101,119,32,68,97,116,101,59,92,110,32,32,114,101,116,117,114,110,32,97,32,61,32,43,97,44,32,98,32,61,32,43,98,44,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,46,115,101,116,84,105,109,101,40,97,32,42,32,40,49,32,45,32,116,41,32,43,32,98,32,42,32,116,41,44,32,100,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,100,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,100,105,115,99,114,101,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,100,105,115,99,114,101,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,114,97,110,103,101,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,114,97,110,103,101,46,108,101,110,103,116,104,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,97,110,103,101,91,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,110,32,45,32,49,44,32,77,97,116,104,46,102,108,111,111,114,40,116,32,42,32,110,41,41,41,93,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,100,105,115,99,114,101,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,104,99,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,104,99,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,99,108,76,111,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,99,108,76,111,110,103,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,108,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,108,97,98,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,108,111,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,111,108,111,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,104,99,108,40,104,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,104,32,61,32,104,117,101,40,40,115,116,97,114,116,32,61,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,99,108,41,40,115,116,97,114,116,41,41,46,104,44,32,40,101,110,100,32,61,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,99,108,41,40,101,110,100,41,41,46,104,41,44,92,110,32,32,32,32,32,32,32,32,99,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,46,99,44,32,101,110,100,46,99,41,44,92,110,32,32,32,32,32,32,32,32,108,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,46,108,44,32,101,110,100,46,108,41,44,92,110,32,32,32,32,32,32,32,32,111,112,97,99,105,116,121,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,46,111,112,97,99,105,116,121,44,32,101,110,100,46,111,112,97,99,105,116,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,46,104,32,61,32,104,40,116,41,59,92,110,32,32,32,32,32,32,115,116,97,114,116,46,99,32,61,32,99,40,116,41,59,92,110,32,32,32,32,32,32,115,116,97,114,116,46,108,32,61,32,108,40,116,41,59,92,110,32,32,32,32,32,32,115,116,97,114,116,46,111,112,97,99,105,116,121,32,61,32,111,112,97,99,105,116,121,40,116,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,97,114,116,32,43,32,92,34,92,34,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,104,99,108,40,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,104,117,101,41,41,59,92,110,118,97,114,32,104,99,108,76,111,110,103,32,61,32,104,99,108,40,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,104,99,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,104,115,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,104,115,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,115,108,76,111,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,115,108,76,111,110,103,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,108,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,111,108,111,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,108,111,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,111,108,111,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,104,115,108,40,104,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,104,32,61,32,104,117,101,40,40,115,116,97,114,116,32,61,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,115,108,41,40,115,116,97,114,116,41,41,46,104,44,32,40,101,110,100,32,61,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,115,108,41,40,101,110,100,41,41,46,104,41,44,92,110,32,32,32,32,32,32,32,32,115,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,46,115,44,32,101,110,100,46,115,41,44,92,110,32,32,32,32,32,32,32,32,108,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,46,108,44,32,101,110,100,46,108,41,44,92,110,32,32,32,32,32,32,32,32,111,112,97,99,105,116,121,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,46,111,112,97,99,105,116,121,44,32,101,110,100,46,111,112,97,99,105,116,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,46,104,32,61,32,104,40,116,41,59,92,110,32,32,32,32,32,32,115,116,97,114,116,46,115,32,61,32,115,40,116,41,59,92,110,32,32,32,32,32,32,115,116,97,114,116,46,108,32,61,32,108,40,116,41,59,92,110,32,32,32,32,32,32,115,116,97,114,116,46,111,112,97,99,105,116,121,32,61,32,111,112,97,99,105,116,121,40,116,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,97,114,116,32,43,32,92,34,92,34,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,104,115,108,40,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,104,117,101,41,41,59,92,110,118,97,114,32,104,115,108,76,111,110,103,32,61,32,104,115,108,40,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,104,115,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,104,117,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,104,117,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,108,111,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,111,108,111,114,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,117,101,41,40,43,97,44,32,43,98,41,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,118,97,114,32,120,32,61,32,105,40,116,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,120,32,45,32,51,54,48,32,42,32,77,97,116,104,46,102,108,111,111,114,40,120,32,47,32,51,54,48,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,104,117,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,118,97,108,117,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,65,114,114,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,66,97,115,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,97,115,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,66,97,115,105,115,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,97,115,105,115,67,108,111,115,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,98,101,104,101,108,105,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,76,111,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,98,101,104,101,108,105,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,99,117,98,101,104,101,108,105,120,76,111,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,68,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,97,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,68,105,115,99,114,101,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,115,99,114,101,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,72,99,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,104,99,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,72,99,108,76,111,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,104,99,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,104,99,108,76,111,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,72,115,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,104,115,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,72,115,108,76,111,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,104,115,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,104,115,108,76,111,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,72,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,104,117,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,76,97,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,97,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,78,117,109,98,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,117,109,98,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,78,117,109,98,101,114,65,114,114,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,117,109,98,101,114,65,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,79,98,106,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,111,98,106,101,99,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,103,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,114,103,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,103,98,66,97,115,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,114,103,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,114,103,98,66,97,115,105,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,103,98,66,97,115,105,115,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,114,103,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,114,103,98,66,97,115,105,115,67,108,111,115,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,111,117,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,114,111,117,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,83,116,114,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,116,114,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,67,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,97,110,115,102,111,114,109,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,67,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,83,118,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,97,110,115,102,111,114,109,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,83,118,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,90,111,111,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,122,111,111,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,105,101,99,101,119,105,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,105,101,99,101,119,105,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,113,117,97,110,116,105,122,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,113,117,97,110,116,105,122,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,97,108,117,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,118,97,108,117,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,118,97,108,117,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,115,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,97,115,105,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,98,97,115,105,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,115,105,115,67,108,111,115,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,97,115,105,115,67,108,111,115,101,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,98,97,115,105,115,67,108,111,115,101,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,97,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,97,116,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,100,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,115,99,114,101,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,115,99,114,101,116,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,100,105,115,99,114,101,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,117,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,117,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,104,117,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,117,109,98,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,65,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,117,109,98,101,114,65,114,114,97,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,110,117,109,98,101,114,65,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,98,106,101,99,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,98,106,101,99,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,111,117,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,111,117,110,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,114,111,117,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,105,110,103,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,102,111,114,109,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,97,110,115,102,111,114,109,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,116,114,97,110,115,102,111,114,109,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,122,111,111,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,122,111,111,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,122,111,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,103,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,103,98,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,114,103,98,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,115,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,115,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,104,115,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,97,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,97,98,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,108,97,98,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,99,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,99,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,104,99,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,98,101,104,101,108,105,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,98,101,104,101,108,105,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,117,98,101,104,101,108,105,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,105,101,99,101,119,105,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,105,101,99,101,119,105,115,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,112,105,101,99,101,119,105,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,113,117,97,110,116,105,122,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,113,117,97,110,116,105,122,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,113,117,97,110,116,105,122,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,108,97,98,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,108,97,98,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,97,98,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,108,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,108,97,98,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,108,111,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,111,108,111,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,108,97,98,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,118,97,114,32,108,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,40,115,116,97,114,116,32,61,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,41,41,46,108,44,32,40,101,110,100,32,61,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,101,110,100,41,41,46,108,41,44,92,110,32,32,32,32,32,32,97,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,46,97,44,32,101,110,100,46,97,41,44,92,110,32,32,32,32,32,32,98,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,46,98,44,32,101,110,100,46,98,41,44,92,110,32,32,32,32,32,32,111,112,97,99,105,116,121,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,46,111,112,97,99,105,116,121,44,32,101,110,100,46,111,112,97,99,105,116,121,41,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,115,116,97,114,116,46,108,32,61,32,108,40,116,41,59,92,110,32,32,32,32,115,116,97,114,116,46,97,32,61,32,97,40,116,41,59,92,110,32,32,32,32,115,116,97,114,116,46,98,32,61,32,98,40,116,41,59,92,110,32,32,32,32,115,116,97,114,116,46,111,112,97,99,105,116,121,32,61,32,111,112,97,99,105,116,121,40,116,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,97,114,116,32,43,32,92,34,92,34,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,108,97,98,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,110,117,109,98,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,110,117,109,98,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,32,61,32,43,97,44,32,98,32,61,32,43,98,44,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,32,42,32,40,49,32,45,32,116,41,32,43,32,98,32,42,32,116,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,110,117,109,98,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,110,117,109,98,101,114,65,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,110,117,109,98,101,114,65,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,78,117,109,98,101,114,65,114,114,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,78,117,109,98,101,114,65,114,114,97,121,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,105,102,32,40,33,98,41,32,98,32,61,32,91,93,59,92,110,32,32,118,97,114,32,110,32,61,32,97,32,63,32,77,97,116,104,46,109,105,110,40,98,46,108,101,110,103,116,104,44,32,97,46,108,101,110,103,116,104,41,32,58,32,48,44,92,110,32,32,32,32,32,32,99,32,61,32,98,46,115,108,105,99,101,40,41,44,92,110,32,32,32,32,32,32,105,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,99,91,105,93,32,61,32,97,91,105,93,32,42,32,40,49,32,45,32,116,41,32,43,32,98,91,105,93,32,42,32,116,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,78,117,109,98,101,114,65,114,114,97,121,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,65,114,114,97,121,66,117,102,102,101,114,46,105,115,86,105,101,119,40,120,41,32,38,38,32,33,40,120,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,97,86,105,101,119,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,110,117,109,98,101,114,65,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,111,98,106,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,111,98,106,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,97,108,117,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,118,97,108,117,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,118,97,108,117,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,123,125,44,92,110,32,32,32,32,32,32,99,32,61,32,123,125,44,92,110,32,32,32,32,32,32,107,59,92,110,92,110,32,32,105,102,32,40,97,32,61,61,61,32,110,117,108,108,32,124,124,32,116,121,112,101,111,102,32,97,32,33,61,61,32,92,34,111,98,106,101,99,116,92,34,41,32,97,32,61,32,123,125,59,92,110,32,32,105,102,32,40,98,32,61,61,61,32,110,117,108,108,32,124,124,32,116,121,112,101,111,102,32,98,32,33,61,61,32,92,34,111,98,106,101,99,116,92,34,41,32,98,32,61,32,123,125,59,92,110,92,110,32,32,102,111,114,32,40,107,32,105,110,32,98,41,32,123,92,110,32,32,32,32,105,102,32,40,107,32,105,110,32,97,41,32,123,92,110,32,32,32,32,32,32,105,91,107,93,32,61,32,40,48,44,95,118,97,108,117,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,97,91,107,93,44,32,98,91,107,93,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,99,91,107,93,32,61,32,98,91,107,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,102,111,114,32,40,107,32,105,110,32,105,41,32,99,91,107,93,32,61,32,105,91,107,93,40,116,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,111,98,106,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,112,105,101,99,101,119,105,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,112,105,101,99,101,119,105,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,105,101,99,101,119,105,115,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,112,105,101,99,101,119,105,115,101,40,105,110,116,101,114,112,111,108,97,116,101,44,32,118,97,108,117,101,115,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,32,45,32,49,44,32,118,32,61,32,118,97,108,117,101,115,91,48,93,44,32,73,32,61,32,110,101,119,32,65,114,114,97,121,40,110,32,60,32,48,32,63,32,48,32,58,32,110,41,59,92,110,32,32,119,104,105,108,101,32,40,105,32,60,32,110,41,32,73,91,105,93,32,61,32,105,110,116,101,114,112,111,108,97,116,101,40,118,44,32,118,32,61,32,118,97,108,117,101,115,91,43,43,105,93,41,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,110,32,45,32,49,44,32,77,97,116,104,46,102,108,111,111,114,40,116,32,42,61,32,110,41,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,73,91,105,93,40,116,32,45,32,105,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,112,105,101,99,101,119,105,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,113,117,97,110,116,105,122,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,113,117,97,110,116,105,122,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,105,110,116,101,114,112,111,108,97,116,111,114,44,32,110,41,32,123,92,110,32,32,118,97,114,32,115,97,109,112,108,101,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,115,97,109,112,108,101,115,91,105,93,32,61,32,105,110,116,101,114,112,111,108,97,116,111,114,40,105,32,47,32,40,110,32,45,32,49,41,41,59,92,110,32,32,114,101,116,117,114,110,32,115,97,109,112,108,101,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,113,117,97,110,116,105,122,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,114,103,98,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,114,103,98,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,103,98,66,97,115,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,103,98,66,97,115,105,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,103,98,66,97,115,105,115,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,103,98,66,97,115,105,115,67,108,111,115,101,100,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,108,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,111,108,111,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,115,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,97,115,105,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,98,97,115,105,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,115,105,115,67,108,111,115,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,97,115,105,115,67,108,111,115,101,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,98,97,115,105,115,67,108,111,115,101,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,108,111,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,111,108,111,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,114,103,98,71,97,109,109,97,40,121,41,32,123,92,110,32,32,118,97,114,32,99,111,108,111,114,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,97,109,109,97,41,40,121,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,103,98,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,118,97,114,32,114,32,61,32,99,111,108,111,114,40,40,115,116,97,114,116,32,61,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,103,98,41,40,115,116,97,114,116,41,41,46,114,44,32,40,101,110,100,32,61,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,103,98,41,40,101,110,100,41,41,46,114,41,44,92,110,32,32,32,32,32,32,32,32,103,32,61,32,99,111,108,111,114,40,115,116,97,114,116,46,103,44,32,101,110,100,46,103,41,44,92,110,32,32,32,32,32,32,32,32,98,32,61,32,99,111,108,111,114,40,115,116,97,114,116,46,98,44,32,101,110,100,46,98,41,44,92,110,32,32,32,32,32,32,32,32,111,112,97,99,105,116,121,32,61,32,40,48,44,95,99,111,108,111,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,46,111,112,97,99,105,116,121,44,32,101,110,100,46,111,112,97,99,105,116,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,46,114,32,61,32,114,40,116,41,59,92,110,32,32,32,32,32,32,115,116,97,114,116,46,103,32,61,32,103,40,116,41,59,92,110,32,32,32,32,32,32,115,116,97,114,116,46,98,32,61,32,98,40,116,41,59,92,110,32,32,32,32,32,32,115,116,97,114,116,46,111,112,97,99,105,116,121,32,61,32,111,112,97,99,105,116,121,40,116,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,97,114,116,32,43,32,92,34,92,34,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,114,103,98,46,103,97,109,109,97,32,61,32,114,103,98,71,97,109,109,97,59,92,110,92,110,32,32,114,101,116,117,114,110,32,114,103,98,59,92,110,125,41,40,49,41,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,114,103,98,83,112,108,105,110,101,40,115,112,108,105,110,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,99,111,108,111,114,115,41,32,123,92,110,32,32,32,32,118,97,114,32,110,32,61,32,99,111,108,111,114,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,114,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,92,110,32,32,32,32,32,32,32,32,103,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,92,110,32,32,32,32,32,32,32,32,98,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,92,110,32,32,32,32,32,32,32,32,105,44,32,99,111,108,111,114,59,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,99,111,108,111,114,32,61,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,103,98,41,40,99,111,108,111,114,115,91,105,93,41,59,92,110,32,32,32,32,32,32,114,91,105,93,32,61,32,99,111,108,111,114,46,114,32,124,124,32,48,59,92,110,32,32,32,32,32,32,103,91,105,93,32,61,32,99,111,108,111,114,46,103,32,124,124,32,48,59,92,110,32,32,32,32,32,32,98,91,105,93,32,61,32,99,111,108,111,114,46,98,32,124,124,32,48,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,32,61,32,115,112,108,105,110,101,40,114,41,59,92,110,32,32,32,32,103,32,61,32,115,112,108,105,110,101,40,103,41,59,92,110,32,32,32,32,98,32,61,32,115,112,108,105,110,101,40,98,41,59,92,110,32,32,32,32,99,111,108,111,114,46,111,112,97,99,105,116,121,32,61,32,49,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,32,32,99,111,108,111,114,46,114,32,61,32,114,40,116,41,59,92,110,32,32,32,32,32,32,99,111,108,111,114,46,103,32,61,32,103,40,116,41,59,92,110,32,32,32,32,32,32,99,111,108,111,114,46,98,32,61,32,98,40,116,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,32,43,32,92,34,92,34,59,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,125,92,110,92,110,118,97,114,32,114,103,98,66,97,115,105,115,32,61,32,114,103,98,83,112,108,105,110,101,40,95,98,97,115,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,118,97,114,32,114,103,98,66,97,115,105,115,67,108,111,115,101,100,32,61,32,114,103,98,83,112,108,105,110,101,40,95,98,97,115,105,115,67,108,111,115,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,114,103,98,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,114,111,117,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,114,111,117,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,32,61,32,43,97,44,32,98,32,61,32,43,98,44,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,97,32,42,32,40,49,32,45,32,116,41,32,43,32,98,32,42,32,116,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,114,111,117,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,115,116,114,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,115,116,114,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,117,109,98,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,114,101,65,32,61,32,47,91,45,43,93,63,40,63,58,92,92,100,43,92,92,46,63,92,92,100,42,124,92,92,46,63,92,92,100,43,41,40,63,58,91,101,69,93,91,45,43,93,63,92,92,100,43,41,63,47,103,44,92,110,32,32,32,32,114,101,66,32,61,32,110,101,119,32,82,101,103,69,120,112,40,114,101,65,46,115,111,117,114,99,101,44,32,92,34,103,92,34,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,122,101,114,111,40,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,98,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,111,110,101,40,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,98,40,116,41,32,43,32,92,34,92,34,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,98,105,32,61,32,114,101,65,46,108,97,115,116,73,110,100,101,120,32,61,32,114,101,66,46,108,97,115,116,73,110,100,101,120,32,61,32,48,44,32,47,47,32,115,99,97,110,32,105,110,100,101,120,32,102,111,114,32,110,101,120,116,32,110,117,109,98,101,114,32,105,110,32,98,92,110,32,32,32,32,32,32,97,109,44,32,47,47,32,99,117,114,114,101,110,116,32,109,97,116,99,104,32,105,110,32,97,92,110,32,32,32,32,32,32,98,109,44,32,47,47,32,99,117,114,114,101,110,116,32,109,97,116,99,104,32,105,110,32,98,92,110,32,32,32,32,32,32,98,115,44,32,47,47,32,115,116,114,105,110,103,32,112,114,101,99,101,100,105,110,103,32,99,117,114,114,101,110,116,32,110,117,109,98,101,114,32,105,110,32,98,44,32,105,102,32,97,110,121,92,110,32,32,32,32,32,32,105,32,61,32,45,49,44,32,47,47,32,105,110,100,101,120,32,105,110,32,115,92,110,32,32,32,32,32,32,115,32,61,32,91,93,44,32,47,47,32,115,116,114,105,110,103,32,99,111,110,115,116,97,110,116,115,32,97,110,100,32,112,108,97,99,101,104,111,108,100,101,114,115,92,110,32,32,32,32,32,32,113,32,61,32,91,93,59,32,47,47,32,110,117,109,98,101,114,32,105,110,116,101,114,112,111,108,97,116,111,114,115,92,110,92,110,32,32,47,47,32,67,111,101,114,99,101,32,105,110,112,117,116,115,32,116,111,32,115,116,114,105,110,103,115,46,92,110,32,32,97,32,61,32,97,32,43,32,92,34,92,34,44,32,98,32,61,32,98,32,43,32,92,34,92,34,59,92,110,92,110,32,32,47,47,32,73,110,116,101,114,112,111,108,97,116,101,32,112,97,105,114,115,32,111,102,32,110,117,109,98,101,114,115,32,105,110,32,97,32,38,32,98,46,92,110,32,32,119,104,105,108,101,32,40,40,97,109,32,61,32,114,101,65,46,101,120,101,99,40,97,41,41,92,110,32,32,32,32,32,32,38,38,32,40,98,109,32,61,32,114,101,66,46,101,120,101,99,40,98,41,41,41,32,123,92,110,32,32,32,32,105,102,32,40,40,98,115,32,61,32,98,109,46,105,110,100,101,120,41,32,62,32,98,105,41,32,123,32,47,47,32,97,32,115,116,114,105,110,103,32,112,114,101,99,101,100,101,115,32,116,104,101,32,110,101,120,116,32,110,117,109,98,101,114,32,105,110,32,98,92,110,32,32,32,32,32,32,98,115,32,61,32,98,46,115,108,105,99,101,40,98,105,44,32,98,115,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,91,105,93,41,32,115,91,105,93,32,43,61,32,98,115,59,32,47,47,32,99,111,97,108,101,115,99,101,32,119,105,116,104,32,112,114,101,118,105,111,117,115,32,115,116,114,105,110,103,92,110,32,32,32,32,32,32,101,108,115,101,32,115,91,43,43,105,93,32,61,32,98,115,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,40,97,109,32,61,32,97,109,91,48,93,41,32,61,61,61,32,40,98,109,32,61,32,98,109,91,48,93,41,41,32,123,32,47,47,32,110,117,109,98,101,114,115,32,105,110,32,97,32,38,32,98,32,109,97,116,99,104,92,110,32,32,32,32,32,32,105,102,32,40,115,91,105,93,41,32,115,91,105,93,32,43,61,32,98,109,59,32,47,47,32,99,111,97,108,101,115,99,101,32,119,105,116,104,32,112,114,101,118,105,111,117,115,32,115,116,114,105,110,103,92,110,32,32,32,32,32,32,101,108,115,101,32,115,91,43,43,105,93,32,61,32,98,109,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,32,47,47,32,105,110,116,101,114,112,111,108,97,116,101,32,110,111,110,45,109,97,116,99,104,105,110,103,32,110,117,109,98,101,114,115,92,110,32,32,32,32,32,32,115,91,43,43,105,93,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,113,46,112,117,115,104,40,123,105,58,32,105,44,32,120,58,32,40,48,44,95,110,117,109,98,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,97,109,44,32,98,109,41,125,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,98,105,32,61,32,114,101,66,46,108,97,115,116,73,110,100,101,120,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,65,100,100,32,114,101,109,97,105,110,115,32,111,102,32,98,46,92,110,32,32,105,102,32,40,98,105,32,60,32,98,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,98,115,32,61,32,98,46,115,108,105,99,101,40,98,105,41,59,92,110,32,32,32,32,105,102,32,40,115,91,105,93,41,32,115,91,105,93,32,43,61,32,98,115,59,32,47,47,32,99,111,97,108,101,115,99,101,32,119,105,116,104,32,112,114,101,118,105,111,117,115,32,115,116,114,105,110,103,92,110,32,32,32,32,101,108,115,101,32,115,91,43,43,105,93,32,61,32,98,115,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,83,112,101,99,105,97,108,32,111,112,116,105,109,105,122,97,116,105,111,110,32,102,111,114,32,111,110,108,121,32,97,32,115,105,110,103,108,101,32,109,97,116,99,104,46,92,110,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,105,110,116,101,114,112,111,108,97,116,101,32,101,97,99,104,32,111,102,32,116,104,101,32,110,117,109,98,101,114,115,32,97,110,100,32,114,101,106,111,105,110,32,116,104,101,32,115,116,114,105,110,103,46,92,110,32,32,114,101,116,117,114,110,32,115,46,108,101,110,103,116,104,32,60,32,50,32,63,32,40,113,91,48,93,92,110,32,32,32,32,32,32,63,32,111,110,101,40,113,91,48,93,46,120,41,92,110,32,32,32,32,32,32,58,32,122,101,114,111,40,98,41,41,92,110,32,32,32,32,32,32,58,32,40,98,32,61,32,113,46,108,101,110,103,116,104,44,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,111,59,32,105,32,60,32,98,59,32,43,43,105,41,32,115,91,40,111,32,61,32,113,91,105,93,41,46,105,93,32,61,32,111,46,120,40,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,46,106,111,105,110,40,92,34,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,115,116,114,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,116,114,97,110,115,102,111,114,109,47,100,101,99,111,109,112,111,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,116,114,97,110,115,102,111,114,109,47,100,101,99,111,109,112,111,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,100,101,110,116,105,116,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,100,101,110,116,105,116,121,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,100,101,103,114,101,101,115,32,61,32,49,56,48,32,47,32,77,97,116,104,46,80,73,59,92,110,92,110,118,97,114,32,105,100,101,110,116,105,116,121,32,61,32,123,92,110,32,32,116,114,97,110,115,108,97,116,101,88,58,32,48,44,92,110,32,32,116,114,97,110,115,108,97,116,101,89,58,32,48,44,92,110,32,32,114,111,116,97,116,101,58,32,48,44,92,110,32,32,115,107,101,119,88,58,32,48,44,92,110,32,32,115,99,97,108,101,88,58,32,49,44,92,110,32,32,115,99,97,108,101,89,58,32,49,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,44,32,99,44,32,100,44,32,101,44,32,102,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,88,44,32,115,99,97,108,101,89,44,32,115,107,101,119,88,59,92,110,32,32,105,102,32,40,115,99,97,108,101,88,32,61,32,77,97,116,104,46,115,113,114,116,40,97,32,42,32,97,32,43,32,98,32,42,32,98,41,41,32,97,32,47,61,32,115,99,97,108,101,88,44,32,98,32,47,61,32,115,99,97,108,101,88,59,92,110,32,32,105,102,32,40,115,107,101,119,88,32,61,32,97,32,42,32,99,32,43,32,98,32,42,32,100,41,32,99,32,45,61,32,97,32,42,32,115,107,101,119,88,44,32,100,32,45,61,32,98,32,42,32,115,107,101,119,88,59,92,110,32,32,105,102,32,40,115,99,97,108,101,89,32,61,32,77,97,116,104,46,115,113,114,116,40,99,32,42,32,99,32,43,32,100,32,42,32,100,41,41,32,99,32,47,61,32,115,99,97,108,101,89,44,32,100,32,47,61,32,115,99,97,108,101,89,44,32,115,107,101,119,88,32,47,61,32,115,99,97,108,101,89,59,92,110,32,32,105,102,32,40,97,32,42,32,100,32,60,32,98,32,42,32,99,41,32,97,32,61,32,45,97,44,32,98,32,61,32,45,98,44,32,115,107,101,119,88,32,61,32,45,115,107,101,119,88,44,32,115,99,97,108,101,88,32,61,32,45,115,99,97,108,101,88,59,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,116,114,97,110,115,108,97,116,101,88,58,32,101,44,92,110,32,32,32,32,116,114,97,110,115,108,97,116,101,89,58,32,102,44,92,110,32,32,32,32,114,111,116,97,116,101,58,32,77,97,116,104,46,97,116,97,110,50,40,98,44,32,97,41,32,42,32,100,101,103,114,101,101,115,44,92,110,32,32,32,32,115,107,101,119,88,58,32,77,97,116,104,46,97,116,97,110,40,115,107,101,119,88,41,32,42,32,100,101,103,114,101,101,115,44,92,110,32,32,32,32,115,99,97,108,101,88,58,32,115,99,97,108,101,88,44,92,110,32,32,32,32,115,99,97,108,101,89,58,32,115,99,97,108,101,89,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,116,114,97,110,115,102,111,114,109,47,100,101,99,111,109,112,111,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,116,114,97,110,115,102,111,114,109,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,116,114,97,110,115,102,111,114,109,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,67,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,67,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,83,118,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,83,118,103,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,117,109,98,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,97,114,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,97,114,115,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,116,114,97,110,115,102,111,114,109,47,112,97,114,115,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,40,112,97,114,115,101,44,32,112,120,67,111,109,109,97,44,32,112,120,80,97,114,101,110,44,32,100,101,103,80,97,114,101,110,41,32,123,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,111,112,40,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,46,108,101,110,103,116,104,32,63,32,115,46,112,111,112,40,41,32,43,32,92,34,32,92,34,32,58,32,92,34,92,34,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,108,97,116,101,40,120,97,44,32,121,97,44,32,120,98,44,32,121,98,44,32,115,44,32,113,41,32,123,92,110,32,32,32,32,105,102,32,40,120,97,32,33,61,61,32,120,98,32,124,124,32,121,97,32,33,61,61,32,121,98,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,32,61,32,115,46,112,117,115,104,40,92,34,116,114,97,110,115,108,97,116,101,40,92,34,44,32,110,117,108,108,44,32,112,120,67,111,109,109,97,44,32,110,117,108,108,44,32,112,120,80,97,114,101,110,41,59,92,110,32,32,32,32,32,32,113,46,112,117,115,104,40,123,105,58,32,105,32,45,32,52,44,32,120,58,32,40,48,44,95,110,117,109,98,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,120,97,44,32,120,98,41,125,44,32,123,105,58,32,105,32,45,32,50,44,32,120,58,32,40,48,44,95,110,117,109,98,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,121,97,44,32,121,98,41,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,120,98,32,124,124,32,121,98,41,32,123,92,110,32,32,32,32,32,32,115,46,112,117,115,104,40,92,34,116,114,97,110,115,108,97,116,101,40,92,34,32,43,32,120,98,32,43,32,112,120,67,111,109,109,97,32,43,32,121,98,32,43,32,112,120,80,97,114,101,110,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,111,116,97,116,101,40,97,44,32,98,44,32,115,44,32,113,41,32,123,92,110,32,32,32,32,105,102,32,40,97,32,33,61,61,32,98,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,97,32,45,32,98,32,62,32,49,56,48,41,32,98,32,43,61,32,51,54,48,59,32,101,108,115,101,32,105,102,32,40,98,32,45,32,97,32,62,32,49,56,48,41,32,97,32,43,61,32,51,54,48,59,32,47,47,32,115,104,111,114,116,101,115,116,32,112,97,116,104,92,110,32,32,32,32,32,32,113,46,112,117,115,104,40,123,105,58,32,115,46,112,117,115,104,40,112,111,112,40,115,41,32,43,32,92,34,114,111,116,97,116,101,40,92,34,44,32,110,117,108,108,44,32,100,101,103,80,97,114,101,110,41,32,45,32,50,44,32,120,58,32,40,48,44,95,110,117,109,98,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,97,44,32,98,41,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,98,41,32,123,92,110,32,32,32,32,32,32,115,46,112,117,115,104,40,112,111,112,40,115,41,32,43,32,92,34,114,111,116,97,116,101,40,92,34,32,43,32,98,32,43,32,100,101,103,80,97,114,101,110,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,107,101,119,88,40,97,44,32,98,44,32,115,44,32,113,41,32,123,92,110,32,32,32,32,105,102,32,40,97,32,33,61,61,32,98,41,32,123,92,110,32,32,32,32,32,32,113,46,112,117,115,104,40,123,105,58,32,115,46,112,117,115,104,40,112,111,112,40,115,41,32,43,32,92,34,115,107,101,119,88,40,92,34,44,32,110,117,108,108,44,32,100,101,103,80,97,114,101,110,41,32,45,32,50,44,32,120,58,32,40,48,44,95,110,117,109,98,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,97,44,32,98,41,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,98,41,32,123,92,110,32,32,32,32,32,32,115,46,112,117,115,104,40,112,111,112,40,115,41,32,43,32,92,34,115,107,101,119,88,40,92,34,32,43,32,98,32,43,32,100,101,103,80,97,114,101,110,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,99,97,108,101,40,120,97,44,32,121,97,44,32,120,98,44,32,121,98,44,32,115,44,32,113,41,32,123,92,110,32,32,32,32,105,102,32,40,120,97,32,33,61,61,32,120,98,32,124,124,32,121,97,32,33,61,61,32,121,98,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,32,61,32,115,46,112,117,115,104,40,112,111,112,40,115,41,32,43,32,92,34,115,99,97,108,101,40,92,34,44,32,110,117,108,108,44,32,92,34,44,92,34,44,32,110,117,108,108,44,32,92,34,41,92,34,41,59,92,110,32,32,32,32,32,32,113,46,112,117,115,104,40,123,105,58,32,105,32,45,32,52,44,32,120,58,32,40,48,44,95,110,117,109,98,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,120,97,44,32,120,98,41,125,44,32,123,105,58,32,105,32,45,32,50,44,32,120,58,32,40,48,44,95,110,117,109,98,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,121,97,44,32,121,98,41,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,120,98,32,33,61,61,32,49,32,124,124,32,121,98,32,33,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,115,46,112,117,115,104,40,112,111,112,40,115,41,32,43,32,92,34,115,99,97,108,101,40,92,34,32,43,32,120,98,32,43,32,92,34,44,92,34,32,43,32,121,98,32,43,32,92,34,41,92,34,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,97,44,32,98,41,32,123,92,110,32,32,32,32,118,97,114,32,115,32,61,32,91,93,44,32,47,47,32,115,116,114,105,110,103,32,99,111,110,115,116,97,110,116,115,32,97,110,100,32,112,108,97,99,101,104,111,108,100,101,114,115,92,110,32,32,32,32,32,32,32,32,113,32,61,32,91,93,59,32,47,47,32,110,117,109,98,101,114,32,105,110,116,101,114,112,111,108,97,116,111,114,115,92,110,32,32,32,32,97,32,61,32,112,97,114,115,101,40,97,41,44,32,98,32,61,32,112,97,114,115,101,40,98,41,59,92,110,32,32,32,32,116,114,97,110,115,108,97,116,101,40,97,46,116,114,97,110,115,108,97,116,101,88,44,32,97,46,116,114,97,110,115,108,97,116,101,89,44,32,98,46,116,114,97,110,115,108,97,116,101,88,44,32,98,46,116,114,97,110,115,108,97,116,101,89,44,32,115,44,32,113,41,59,92,110,32,32,32,32,114,111,116,97,116,101,40,97,46,114,111,116,97,116,101,44,32,98,46,114,111,116,97,116,101,44,32,115,44,32,113,41,59,92,110,32,32,32,32,115,107,101,119,88,40,97,46,115,107,101,119,88,44,32,98,46,115,107,101,119,88,44,32,115,44,32,113,41,59,92,110,32,32,32,32,115,99,97,108,101,40,97,46,115,99,97,108,101,88,44,32,97,46,115,99,97,108,101,89,44,32,98,46,115,99,97,108,101,88,44,32,98,46,115,99,97,108,101,89,44,32,115,44,32,113,41,59,92,110,32,32,32,32,97,32,61,32,98,32,61,32,110,117,108,108,59,32,47,47,32,103,99,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,32,61,32,45,49,44,32,110,32,61,32,113,46,108,101,110,103,116,104,44,32,111,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,115,91,40,111,32,61,32,113,91,105,93,41,46,105,93,32,61,32,111,46,120,40,116,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,46,106,111,105,110,40,92,34,92,34,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,125,92,110,92,110,118,97,114,32,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,67,115,115,32,61,32,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,40,95,112,97,114,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,97,114,115,101,67,115,115,44,32,92,34,112,120,44,32,92,34,44,32,92,34,112,120,41,92,34,44,32,92,34,100,101,103,41,92,34,41,59,92,110,118,97,114,32,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,83,118,103,32,61,32,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,40,95,112,97,114,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,97,114,115,101,83,118,103,44,32,92,34,44,32,92,34,44,32,92,34,41,92,34,44,32,92,34,41,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,116,114,97,110,115,102,111,114,109,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,116,114,97,110,115,102,111,114,109,47,112,97,114,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,116,114,97,110,115,102,111,114,109,47,112,97,114,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,114,115,101,67,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,97,114,115,101,67,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,114,115,101,83,118,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,97,114,115,101,83,118,103,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,99,111,109,112,111,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,99,111,109,112,111,115,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,116,114,97,110,115,102,111,114,109,47,100,101,99,111,109,112,111,115,101,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,99,115,115,78,111,100,101,44,92,110,32,32,32,32,99,115,115,82,111,111,116,44,92,110,32,32,32,32,99,115,115,86,105,101,119,44,92,110,32,32,32,32,115,118,103,78,111,100,101,59,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,67,115,115,40,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,92,34,110,111,110,101,92,34,41,32,114,101,116,117,114,110,32,95,100,101,99,111,109,112,111,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,100,101,110,116,105,116,121,59,92,110,32,32,105,102,32,40,33,99,115,115,78,111,100,101,41,32,99,115,115,78,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,92,34,68,73,86,92,34,41,44,32,99,115,115,82,111,111,116,32,61,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,44,32,99,115,115,86,105,101,119,32,61,32,100,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,59,92,110,32,32,99,115,115,78,111,100,101,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,32,61,32,118,97,108,117,101,59,92,110,32,32,118,97,108,117,101,32,61,32,99,115,115,86,105,101,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,99,115,115,82,111,111,116,46,97,112,112,101,110,100,67,104,105,108,100,40,99,115,115,78,111,100,101,41,44,32,110,117,108,108,41,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,92,34,116,114,97,110,115,102,111,114,109,92,34,41,59,92,110,32,32,99,115,115,82,111,111,116,46,114,101,109,111,118,101,67,104,105,108,100,40,99,115,115,78,111,100,101,41,59,92,110,32,32,118,97,108,117,101,32,61,32,118,97,108,117,101,46,115,108,105,99,101,40,55,44,32,45,49,41,46,115,112,108,105,116,40,92,34,44,92,34,41,59,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,100,101,99,111,109,112,111,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,118,97,108,117,101,91,48,93,44,32,43,118,97,108,117,101,91,49,93,44,32,43,118,97,108,117,101,91,50,93,44,32,43,118,97,108,117,101,91,51,93,44,32,43,118,97,108,117,101,91,52,93,44,32,43,118,97,108,117,101,91,53,93,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,83,118,103,40,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,118,97,108,117,101,32,61,61,32,110,117,108,108,41,32,114,101,116,117,114,110,32,95,100,101,99,111,109,112,111,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,100,101,110,116,105,116,121,59,92,110,32,32,105,102,32,40,33,115,118,103,78,111,100,101,41,32,115,118,103,78,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,78,83,40,92,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,92,34,44,32,92,34,103,92,34,41,59,92,110,32,32,115,118,103,78,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,118,97,108,117,101,41,59,92,110,32,32,105,102,32,40,33,40,118,97,108,117,101,32,61,32,115,118,103,78,111,100,101,46,116,114,97,110,115,102,111,114,109,46,98,97,115,101,86,97,108,46,99,111,110,115,111,108,105,100,97,116,101,40,41,41,41,32,114,101,116,117,114,110,32,95,100,101,99,111,109,112,111,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,100,101,110,116,105,116,121,59,92,110,32,32,118,97,108,117,101,32,61,32,118,97,108,117,101,46,109,97,116,114,105,120,59,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,100,101,99,111,109,112,111,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,97,108,117,101,46,97,44,32,118,97,108,117,101,46,98,44,32,118,97,108,117,101,46,99,44,32,118,97,108,117,101,46,100,44,32,118,97,108,117,101,46,101,44,32,118,97,108,117,101,46,102,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,116,114,97,110,115,102,111,114,109,47,112,97,114,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,118,97,108,117,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,118,97,108,117,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,108,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,111,108,111,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,103,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,103,98,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,114,103,98,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,97,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,97,116,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,100,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,117,109,98,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,98,106,101,99,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,98,106,101,99,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,111,98,106,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,114,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,114,105,110,103,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,65,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,117,109,98,101,114,65,114,114,97,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,110,117,109,98,101,114,65,114,114,97,121,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,116,32,61,32,116,121,112,101,111,102,32,98,44,32,99,59,92,110,32,32,114,101,116,117,114,110,32,98,32,61,61,32,110,117,108,108,32,124,124,32,116,32,61,61,61,32,92,34,98,111,111,108,101,97,110,92,34,32,63,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,98,41,92,110,32,32,32,32,32,32,58,32,40,116,32,61,61,61,32,92,34,110,117,109,98,101,114,92,34,32,63,32,95,110,117,109,98,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,32,32,32,32,58,32,116,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,32,63,32,40,40,99,32,61,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,98,41,41,32,63,32,40,98,32,61,32,99,44,32,95,114,103,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,32,58,32,95,115,116,114,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,32,32,32,32,32,32,58,32,98,32,105,110,115,116,97,110,99,101,111,102,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,63,32,95,114,103,98,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,32,32,32,32,58,32,98,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,32,63,32,95,100,97,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,32,32,32,32,58,32,40,48,44,95,110,117,109,98,101,114,65,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,105,115,78,117,109,98,101,114,65,114,114,97,121,41,40,98,41,32,63,32,95,110,117,109,98,101,114,65,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,32,32,32,32,58,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,98,41,32,63,32,95,97,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,103,101,110,101,114,105,99,65,114,114,97,121,92,110,32,32,32,32,32,32,58,32,116,121,112,101,111,102,32,98,46,118,97,108,117,101,79,102,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,116,121,112,101,111,102,32,98,46,116,111,83,116,114,105,110,103,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,124,124,32,105,115,78,97,78,40,98,41,32,63,32,95,111,98,106,101,99,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,32,32,32,32,58,32,95,110,117,109,98,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,97,44,32,98,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,118,97,108,117,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,122,111,111,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,122,111,111,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,104,111,32,61,32,77,97,116,104,46,83,81,82,84,50,44,92,110,32,32,32,32,114,104,111,50,32,61,32,50,44,92,110,32,32,32,32,114,104,111,52,32,61,32,52,44,92,110,32,32,32,32,101,112,115,105,108,111,110,50,32,61,32,49,101,45,49,50,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,115,104,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,40,120,32,61,32,77,97,116,104,46,101,120,112,40,120,41,41,32,43,32,49,32,47,32,120,41,32,47,32,50,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,105,110,104,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,40,120,32,61,32,77,97,116,104,46,101,120,112,40,120,41,41,32,45,32,49,32,47,32,120,41,32,47,32,50,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,97,110,104,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,40,120,32,61,32,77,97,116,104,46,101,120,112,40,50,32,42,32,120,41,41,32,45,32,49,41,32,47,32,40,120,32,43,32,49,41,59,92,110,125,92,110,92,110,47,47,32,112,48,32,61,32,91,117,120,48,44,32,117,121,48,44,32,119,48,93,92,110,47,47,32,112,49,32,61,32,91,117,120,49,44,32,117,121,49,44,32,119,49,93,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,112,48,44,32,112,49,41,32,123,92,110,32,32,118,97,114,32,117,120,48,32,61,32,112,48,91,48,93,44,32,117,121,48,32,61,32,112,48,91,49,93,44,32,119,48,32,61,32,112,48,91,50,93,44,92,110,32,32,32,32,32,32,117,120,49,32,61,32,112,49,91,48,93,44,32,117,121,49,32,61,32,112,49,91,49,93,44,32,119,49,32,61,32,112,49,91,50,93,44,92,110,32,32,32,32,32,32,100,120,32,61,32,117,120,49,32,45,32,117,120,48,44,92,110,32,32,32,32,32,32,100,121,32,61,32,117,121,49,32,45,32,117,121,48,44,92,110,32,32,32,32,32,32,100,50,32,61,32,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,44,92,110,32,32,32,32,32,32,105,44,92,110,32,32,32,32,32,32,83,59,92,110,92,110,32,32,47,47,32,83,112,101,99,105,97,108,32,99,97,115,101,32,102,111,114,32,117,48,32,226,137,133,32,117,49,46,92,110,32,32,105,102,32,40,100,50,32,60,32,101,112,115,105,108,111,110,50,41,32,123,92,110,32,32,32,32,83,32,61,32,77,97,116,104,46,108,111,103,40,119,49,32,47,32,119,48,41,32,47,32,114,104,111,59,92,110,32,32,32,32,105,32,61,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,32,32,32,32,117,120,48,32,43,32,116,32,42,32,100,120,44,92,110,32,32,32,32,32,32,32,32,117,121,48,32,43,32,116,32,42,32,100,121,44,92,110,32,32,32,32,32,32,32,32,119,48,32,42,32,77,97,116,104,46,101,120,112,40,114,104,111,32,42,32,116,32,42,32,83,41,92,110,32,32,32,32,32,32,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,71,101,110,101,114,97,108,32,99,97,115,101,46,92,110,32,32,101,108,115,101,32,123,92,110,32,32,32,32,118,97,114,32,100,49,32,61,32,77,97,116,104,46,115,113,114,116,40,100,50,41,44,92,110,32,32,32,32,32,32,32,32,98,48,32,61,32,40,119,49,32,42,32,119,49,32,45,32,119,48,32,42,32,119,48,32,43,32,114,104,111,52,32,42,32,100,50,41,32,47,32,40,50,32,42,32,119,48,32,42,32,114,104,111,50,32,42,32,100,49,41,44,92,110,32,32,32,32,32,32,32,32,98,49,32,61,32,40,119,49,32,42,32,119,49,32,45,32,119,48,32,42,32,119,48,32,45,32,114,104,111,52,32,42,32,100,50,41,32,47,32,40,50,32,42,32,119,49,32,42,32,114,104,111,50,32,42,32,100,49,41,44,92,110,32,32,32,32,32,32,32,32,114,48,32,61,32,77,97,116,104,46,108,111,103,40,77,97,116,104,46,115,113,114,116,40,98,48,32,42,32,98,48,32,43,32,49,41,32,45,32,98,48,41,44,92,110,32,32,32,32,32,32,32,32,114,49,32,61,32,77,97,116,104,46,108,111,103,40,77,97,116,104,46,115,113,114,116,40,98,49,32,42,32,98,49,32,43,32,49,41,32,45,32,98,49,41,59,92,110,32,32,32,32,83,32,61,32,40,114,49,32,45,32,114,48,41,32,47,32,114,104,111,59,92,110,32,32,32,32,105,32,61,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,32,61,32,116,32,42,32,83,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,115,104,114,48,32,61,32,99,111,115,104,40,114,48,41,44,92,110,32,32,32,32,32,32,32,32,32,32,117,32,61,32,119,48,32,47,32,40,114,104,111,50,32,42,32,100,49,41,32,42,32,40,99,111,115,104,114,48,32,42,32,116,97,110,104,40,114,104,111,32,42,32,115,32,43,32,114,48,41,32,45,32,115,105,110,104,40,114,48,41,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,32,32,32,32,117,120,48,32,43,32,117,32,42,32,100,120,44,92,110,32,32,32,32,32,32,32,32,117,121,48,32,43,32,117,32,42,32,100,121,44,92,110,32,32,32,32,32,32,32,32,119,48,32,42,32,99,111,115,104,114,48,32,47,32,99,111,115,104,40,114,104,111,32,42,32,115,32,43,32,114,48,41,92,110,32,32,32,32,32,32,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,46,100,117,114,97,116,105,111,110,32,61,32,83,32,42,32,49,48,48,48,59,92,110,92,110,32,32,114,101,116,117,114,110,32,105,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,122,111,111,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,97,116,104,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,97,116,104,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,97,116,104,47,115,114,99,47,112,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,97,116,104,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,97,116,104,47,115,114,99,47,112,97,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,97,116,104,47,115,114,99,47,112,97,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,118,97,114,32,112,105,32,61,32,77,97,116,104,46,80,73,44,92,110,32,32,32,32,116,97,117,32,61,32,50,32,42,32,112,105,44,92,110,32,32,32,32,101,112,115,105,108,111,110,32,61,32,49,101,45,54,44,92,110,32,32,32,32,116,97,117,69,112,115,105,108,111,110,32,61,32,116,97,117,32,45,32,101,112,115,105,108,111,110,59,92,110,92,110,102,117,110,99,116,105,111,110,32,80,97,116,104,40,41,32,123,92,110,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,121,48,32,61,32,47,47,32,115,116,97,114,116,32,111,102,32,99,117,114,114,101,110,116,32,115,117,98,112,97,116,104,92,110,32,32,116,104,105,115,46,95,120,49,32,61,32,116,104,105,115,46,95,121,49,32,61,32,110,117,108,108,59,32,47,47,32,101,110,100,32,111,102,32,99,117,114,114,101,110,116,32,115,117,98,112,97,116,104,92,110,32,32,116,104,105,115,46,95,32,61,32,92,34,92,34,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,116,104,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,80,97,116,104,59,92,110,125,92,110,92,110,80,97,116,104,46,112,114,111,116,111,116,121,112,101,32,61,32,112,97,116,104,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,80,97,116,104,44,92,110,32,32,109,111,118,101,84,111,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,32,43,61,32,92,34,77,92,34,32,43,32,40,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,32,61,32,43,120,41,32,43,32,92,34,44,92,34,32,43,32,40,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,32,61,32,43,121,41,59,92,110,32,32,125,44,92,110,32,32,99,108,111,115,101,80,97,116,104,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,120,49,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,120,49,32,61,32,116,104,105,115,46,95,120,48,44,32,116,104,105,115,46,95,121,49,32,61,32,116,104,105,115,46,95,121,48,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,32,43,61,32,92,34,90,92,34,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,108,105,110,101,84,111,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,32,43,61,32,92,34,76,92,34,32,43,32,40,116,104,105,115,46,95,120,49,32,61,32,43,120,41,32,43,32,92,34,44,92,34,32,43,32,40,116,104,105,115,46,95,121,49,32,61,32,43,121,41,59,92,110,32,32,125,44,92,110,32,32,113,117,97,100,114,97,116,105,99,67,117,114,118,101,84,111,58,32,102,117,110,99,116,105,111,110,40,120,49,44,32,121,49,44,32,120,44,32,121,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,32,43,61,32,92,34,81,92,34,32,43,32,40,43,120,49,41,32,43,32,92,34,44,92,34,32,43,32,40,43,121,49,41,32,43,32,92,34,44,92,34,32,43,32,40,116,104,105,115,46,95,120,49,32,61,32,43,120,41,32,43,32,92,34,44,92,34,32,43,32,40,116,104,105,115,46,95,121,49,32,61,32,43,121,41,59,92,110,32,32,125,44,92,110,32,32,98,101,122,105,101,114,67,117,114,118,101,84,111,58,32,102,117,110,99,116,105,111,110,40,120,49,44,32,121,49,44,32,120,50,44,32,121,50,44,32,120,44,32,121,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,32,43,61,32,92,34,67,92,34,32,43,32,40,43,120,49,41,32,43,32,92,34,44,92,34,32,43,32,40,43,121,49,41,32,43,32,92,34,44,92,34,32,43,32,40,43,120,50,41,32,43,32,92,34,44,92,34,32,43,32,40,43,121,50,41,32,43,32,92,34,44,92,34,32,43,32,40,116,104,105,115,46,95,120,49,32,61,32,43,120,41,32,43,32,92,34,44,92,34,32,43,32,40,116,104,105,115,46,95,121,49,32,61,32,43,121,41,59,92,110,32,32,125,44,92,110,32,32,97,114,99,84,111,58,32,102,117,110,99,116,105,111,110,40,120,49,44,32,121,49,44,32,120,50,44,32,121,50,44,32,114,41,32,123,92,110,32,32,32,32,120,49,32,61,32,43,120,49,44,32,121,49,32,61,32,43,121,49,44,32,120,50,32,61,32,43,120,50,44,32,121,50,32,61,32,43,121,50,44,32,114,32,61,32,43,114,59,92,110,32,32,32,32,118,97,114,32,120,48,32,61,32,116,104,105,115,46,95,120,49,44,92,110,32,32,32,32,32,32,32,32,121,48,32,61,32,116,104,105,115,46,95,121,49,44,92,110,32,32,32,32,32,32,32,32,120,50,49,32,61,32,120,50,32,45,32,120,49,44,92,110,32,32,32,32,32,32,32,32,121,50,49,32,61,32,121,50,32,45,32,121,49,44,92,110,32,32,32,32,32,32,32,32,120,48,49,32,61,32,120,48,32,45,32,120,49,44,92,110,32,32,32,32,32,32,32,32,121,48,49,32,61,32,121,48,32,45,32,121,49,44,92,110,32,32,32,32,32,32,32,32,108,48,49,95,50,32,61,32,120,48,49,32,42,32,120,48,49,32,43,32,121,48,49,32,42,32,121,48,49,59,92,110,92,110,32,32,32,32,47,47,32,73,115,32,116,104,101,32,114,97,100,105,117,115,32,110,101,103,97,116,105,118,101,63,32,69,114,114,111,114,46,92,110,32,32,32,32,105,102,32,40,114,32,60,32,48,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,101,103,97,116,105,118,101,32,114,97,100,105,117,115,58,32,92,34,32,43,32,114,41,59,92,110,92,110,32,32,32,32,47,47,32,73,115,32,116,104,105,115,32,112,97,116,104,32,101,109,112,116,121,63,32,77,111,118,101,32,116,111,32,40,120,49,44,121,49,41,46,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,120,49,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,32,43,61,32,92,34,77,92,34,32,43,32,40,116,104,105,115,46,95,120,49,32,61,32,120,49,41,32,43,32,92,34,44,92,34,32,43,32,40,116,104,105,115,46,95,121,49,32,61,32,121,49,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,79,114,44,32,105,115,32,40,120,49,44,121,49,41,32,99,111,105,110,99,105,100,101,110,116,32,119,105,116,104,32,40,120,48,44,121,48,41,63,32,68,111,32,110,111,116,104,105,110,103,46,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,33,40,108,48,49,95,50,32,62,32,101,112,115,105,108,111,110,41,41,59,92,110,92,110,32,32,32,32,47,47,32,79,114,44,32,97,114,101,32,40,120,48,44,121,48,41,44,32,40,120,49,44,121,49,41,32,97,110,100,32,40,120,50,44,121,50,41,32,99,111,108,108,105,110,101,97,114,63,92,110,32,32,32,32,47,47,32,69,113,117,105,118,97,108,101,110,116,108,121,44,32,105,115,32,40,120,49,44,121,49,41,32,99,111,105,110,99,105,100,101,110,116,32,119,105,116,104,32,40,120,50,44,121,50,41,63,92,110,32,32,32,32,47,47,32,79,114,44,32,105,115,32,116,104,101,32,114,97,100,105,117,115,32,122,101,114,111,63,32,76,105,110,101,32,116,111,32,40,120,49,44,121,49,41,46,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,33,40,77,97,116,104,46,97,98,115,40,121,48,49,32,42,32,120,50,49,32,45,32,121,50,49,32,42,32,120,48,49,41,32,62,32,101,112,115,105,108,111,110,41,32,124,124,32,33,114,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,32,43,61,32,92,34,76,92,34,32,43,32,40,116,104,105,115,46,95,120,49,32,61,32,120,49,41,32,43,32,92,34,44,92,34,32,43,32,40,116,104,105,115,46,95,121,49,32,61,32,121,49,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,100,114,97,119,32,97,110,32,97,114,99,33,92,110,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,120,50,48,32,61,32,120,50,32,45,32,120,48,44,92,110,32,32,32,32,32,32,32,32,32,32,121,50,48,32,61,32,121,50,32,45,32,121,48,44,92,110,32,32,32,32,32,32,32,32,32,32,108,50,49,95,50,32,61,32,120,50,49,32,42,32,120,50,49,32,43,32,121,50,49,32,42,32,121,50,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,50,48,95,50,32,61,32,120,50,48,32,42,32,120,50,48,32,43,32,121,50,48,32,42,32,121,50,48,44,92,110,32,32,32,32,32,32,32,32,32,32,108,50,49,32,61,32,77,97,116,104,46,115,113,114,116,40,108,50,49,95,50,41,44,92,110,32,32,32,32,32,32,32,32,32,32,108,48,49,32,61,32,77,97,116,104,46,115,113,114,116,40,108,48,49,95,50,41,44,92,110,32,32,32,32,32,32,32,32,32,32,108,32,61,32,114,32,42,32,77,97,116,104,46,116,97,110,40,40,112,105,32,45,32,77,97,116,104,46,97,99,111,115,40,40,108,50,49,95,50,32,43,32,108,48,49,95,50,32,45,32,108,50,48,95,50,41,32,47,32,40,50,32,42,32,108,50,49,32,42,32,108,48,49,41,41,41,32,47,32,50,41,44,92,110,32,32,32,32,32,32,32,32,32,32,116,48,49,32,61,32,108,32,47,32,108,48,49,44,92,110,32,32,32,32,32,32,32,32,32,32,116,50,49,32,61,32,108,32,47,32,108,50,49,59,92,110,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,115,116,97,114,116,32,116,97,110,103,101,110,116,32,105,115,32,110,111,116,32,99,111,105,110,99,105,100,101,110,116,32,119,105,116,104,32,40,120,48,44,121,48,41,44,32,108,105,110,101,32,116,111,46,92,110,32,32,32,32,32,32,105,102,32,40,77,97,116,104,46,97,98,115,40,116,48,49,32,45,32,49,41,32,62,32,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,32,43,61,32,92,34,76,92,34,32,43,32,40,120,49,32,43,32,116,48,49,32,42,32,120,48,49,41,32,43,32,92,34,44,92,34,32,43,32,40,121,49,32,43,32,116,48,49,32,42,32,121,48,49,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,95,32,43,61,32,92,34,65,92,34,32,43,32,114,32,43,32,92,34,44,92,34,32,43,32,114,32,43,32,92,34,44,48,44,48,44,92,34,32,43,32,40,43,40,121,48,49,32,42,32,120,50,48,32,62,32,120,48,49,32,42,32,121,50,48,41,41,32,43,32,92,34,44,92,34,32,43,32,40,116,104,105,115,46,95,120,49,32,61,32,120,49,32,43,32,116,50,49,32,42,32,120,50,49,41,32,43,32,92,34,44,92,34,32,43,32,40,116,104,105,115,46,95,121,49,32,61,32,121,49,32,43,32,116,50,49,32,42,32,121,50,49,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,97,114,99,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,44,32,114,44,32,97,48,44,32,97,49,44,32,99,99,119,41,32,123,92,110,32,32,32,32,120,32,61,32,43,120,44,32,121,32,61,32,43,121,44,32,114,32,61,32,43,114,44,32,99,99,119,32,61,32,33,33,99,99,119,59,92,110,32,32,32,32,118,97,114,32,100,120,32,61,32,114,32,42,32,77,97,116,104,46,99,111,115,40,97,48,41,44,92,110,32,32,32,32,32,32,32,32,100,121,32,61,32,114,32,42,32,77,97,116,104,46,115,105,110,40,97,48,41,44,92,110,32,32,32,32,32,32,32,32,120,48,32,61,32,120,32,43,32,100,120,44,92,110,32,32,32,32,32,32,32,32,121,48,32,61,32,121,32,43,32,100,121,44,92,110,32,32,32,32,32,32,32,32,99,119,32,61,32,49,32,94,32,99,99,119,44,92,110,32,32,32,32,32,32,32,32,100,97,32,61,32,99,99,119,32,63,32,97,48,32,45,32,97,49,32,58,32,97,49,32,45,32,97,48,59,92,110,92,110,32,32,32,32,47,47,32,73,115,32,116,104,101,32,114,97,100,105,117,115,32,110,101,103,97,116,105,118,101,63,32,69,114,114,111,114,46,92,110,32,32,32,32,105,102,32,40,114,32,60,32,48,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,101,103,97,116,105,118,101,32,114,97,100,105,117,115,58,32,92,34,32,43,32,114,41,59,92,110,92,110,32,32,32,32,47,47,32,73,115,32,116,104,105,115,32,112,97,116,104,32,101,109,112,116,121,63,32,77,111,118,101,32,116,111,32,40,120,48,44,121,48,41,46,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,120,49,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,32,43,61,32,92,34,77,92,34,32,43,32,120,48,32,43,32,92,34,44,92,34,32,43,32,121,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,79,114,44,32,105,115,32,40,120,48,44,121,48,41,32,110,111,116,32,99,111,105,110,99,105,100,101,110,116,32,119,105,116,104,32,116,104,101,32,112,114,101,118,105,111,117,115,32,112,111,105,110,116,63,32,76,105,110,101,32,116,111,32,40,120,48,44,121,48,41,46,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,77,97,116,104,46,97,98,115,40,116,104,105,115,46,95,120,49,32,45,32,120,48,41,32,62,32,101,112,115,105,108,111,110,32,124,124,32,77,97,116,104,46,97,98,115,40,116,104,105,115,46,95,121,49,32,45,32,121,48,41,32,62,32,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,32,43,61,32,92,34,76,92,34,32,43,32,120,48,32,43,32,92,34,44,92,34,32,43,32,121,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,73,115,32,116,104,105,115,32,97,114,99,32,101,109,112,116,121,63,32,87,101,226,128,153,114,101,32,100,111,110,101,46,92,110,32,32,32,32,105,102,32,40,33,114,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,47,47,32,68,111,101,115,32,116,104,101,32,97,110,103,108,101,32,103,111,32,116,104,101,32,119,114,111,110,103,32,119,97,121,63,32,70,108,105,112,32,116,104,101,32,100,105,114,101,99,116,105,111,110,46,92,110,32,32,32,32,105,102,32,40,100,97,32,60,32,48,41,32,100,97,32,61,32,100,97,32,37,32,116,97,117,32,43,32,116,97,117,59,92,110,92,110,32,32,32,32,47,47,32,73,115,32,116,104,105,115,32,97,32,99,111,109,112,108,101,116,101,32,99,105,114,99,108,101,63,32,68,114,97,119,32,116,119,111,32,97,114,99,115,32,116,111,32,99,111,109,112,108,101,116,101,32,116,104,101,32,99,105,114,99,108,101,46,92,110,32,32,32,32,105,102,32,40,100,97,32,62,32,116,97,117,69,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,32,43,61,32,92,34,65,92,34,32,43,32,114,32,43,32,92,34,44,92,34,32,43,32,114,32,43,32,92,34,44,48,44,49,44,92,34,32,43,32,99,119,32,43,32,92,34,44,92,34,32,43,32,40,120,32,45,32,100,120,41,32,43,32,92,34,44,92,34,32,43,32,40,121,32,45,32,100,121,41,32,43,32,92,34,65,92,34,32,43,32,114,32,43,32,92,34,44,92,34,32,43,32,114,32,43,32,92,34,44,48,44,49,44,92,34,32,43,32,99,119,32,43,32,92,34,44,92,34,32,43,32,40,116,104,105,115,46,95,120,49,32,61,32,120,48,41,32,43,32,92,34,44,92,34,32,43,32,40,116,104,105,115,46,95,121,49,32,61,32,121,48,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,73,115,32,116,104,105,115,32,97,114,99,32,110,111,110,45,101,109,112,116,121,63,32,68,114,97,119,32,97,110,32,97,114,99,33,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,100,97,32,62,32,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,32,43,61,32,92,34,65,92,34,32,43,32,114,32,43,32,92,34,44,92,34,32,43,32,114,32,43,32,92,34,44,48,44,92,34,32,43,32,40,43,40,100,97,32,62,61,32,112,105,41,41,32,43,32,92,34,44,92,34,32,43,32,99,119,32,43,32,92,34,44,92,34,32,43,32,40,116,104,105,115,46,95,120,49,32,61,32,120,32,43,32,114,32,42,32,77,97,116,104,46,99,111,115,40,97,49,41,41,32,43,32,92,34,44,92,34,32,43,32,40,116,104,105,115,46,95,121,49,32,61,32,121,32,43,32,114,32,42,32,77,97,116,104,46,115,105,110,40,97,49,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,99,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,44,32,119,44,32,104,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,32,43,61,32,92,34,77,92,34,32,43,32,40,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,32,61,32,43,120,41,32,43,32,92,34,44,92,34,32,43,32,40,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,32,61,32,43,121,41,32,43,32,92,34,104,92,34,32,43,32,40,43,119,41,32,43,32,92,34,118,92,34,32,43,32,40,43,104,41,32,43,32,92,34,104,92,34,32,43,32,40,45,119,41,32,43,32,92,34,90,92,34,59,92,110,32,32,125,44,92,110,32,32,116,111,83,116,114,105,110,103,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,112,97,116,104,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,97,116,104,47,115,114,99,47,112,97,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,97,114,101,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,97,114,101,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,112,111,108,121,103,111,110,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,110,32,61,32,112,111,108,121,103,111,110,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,97,44,92,110,32,32,32,32,32,32,98,32,61,32,112,111,108,121,103,111,110,91,110,32,45,32,49,93,44,92,110,32,32,32,32,32,32,97,114,101,97,32,61,32,48,59,92,110,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,97,32,61,32,98,59,92,110,32,32,32,32,98,32,61,32,112,111,108,121,103,111,110,91,105,93,59,92,110,32,32,32,32,97,114,101,97,32,43,61,32,97,91,49,93,32,42,32,98,91,48,93,32,45,32,97,91,48,93,32,42,32,98,91,49,93,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,97,114,101,97,32,47,32,50,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,97,114,101,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,99,101,110,116,114,111,105,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,99,101,110,116,114,111,105,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,112,111,108,121,103,111,110,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,110,32,61,32,112,111,108,121,103,111,110,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,120,32,61,32,48,44,92,110,32,32,32,32,32,32,121,32,61,32,48,44,92,110,32,32,32,32,32,32,97,44,92,110,32,32,32,32,32,32,98,32,61,32,112,111,108,121,103,111,110,91,110,32,45,32,49,93,44,92,110,32,32,32,32,32,32,99,44,92,110,32,32,32,32,32,32,107,32,61,32,48,59,92,110,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,97,32,61,32,98,59,92,110,32,32,32,32,98,32,61,32,112,111,108,121,103,111,110,91,105,93,59,92,110,32,32,32,32,107,32,43,61,32,99,32,61,32,97,91,48,93,32,42,32,98,91,49,93,32,45,32,98,91,48,93,32,42,32,97,91,49,93,59,92,110,32,32,32,32,120,32,43,61,32,40,97,91,48,93,32,43,32,98,91,48,93,41,32,42,32,99,59,92,110,32,32,32,32,121,32,43,61,32,40,97,91,49,93,32,43,32,98,91,49,93,41,32,42,32,99,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,107,32,42,61,32,51,44,32,91,120,32,47,32,107,44,32,121,32,47,32,107,93,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,99,101,110,116,114,111,105,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,99,111,110,116,97,105,110,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,99,111,110,116,97,105,110,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,112,111,108,121,103,111,110,44,32,112,111,105,110,116,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,112,111,108,121,103,111,110,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,112,32,61,32,112,111,108,121,103,111,110,91,110,32,45,32,49,93,44,92,110,32,32,32,32,32,32,120,32,61,32,112,111,105,110,116,91,48,93,44,32,121,32,61,32,112,111,105,110,116,91,49,93,44,92,110,32,32,32,32,32,32,120,48,32,61,32,112,91,48,93,44,32,121,48,32,61,32,112,91,49,93,44,92,110,32,32,32,32,32,32,120,49,44,32,121,49,44,92,110,32,32,32,32,32,32,105,110,115,105,100,101,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,112,32,61,32,112,111,108,121,103,111,110,91,105,93,44,32,120,49,32,61,32,112,91,48,93,44,32,121,49,32,61,32,112,91,49,93,59,92,110,32,32,32,32,105,102,32,40,40,40,121,49,32,62,32,121,41,32,33,61,61,32,40,121,48,32,62,32,121,41,41,32,38,38,32,40,120,32,60,32,40,120,48,32,45,32,120,49,41,32,42,32,40,121,32,45,32,121,49,41,32,47,32,40,121,48,32,45,32,121,49,41,32,43,32,120,49,41,41,32,105,110,115,105,100,101,32,61,32,33,105,110,115,105,100,101,59,92,110,32,32,32,32,120,48,32,61,32,120,49,44,32,121,48,32,61,32,121,49,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,105,110,115,105,100,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,99,111,110,116,97,105,110,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,99,114,111,115,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,99,114,111,115,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,47,32,82,101,116,117,114,110,115,32,116,104,101,32,50,68,32,99,114,111,115,115,32,112,114,111,100,117,99,116,32,111,102,32,65,66,32,97,110,100,32,65,67,32,118,101,99,116,111,114,115,44,32,105,46,101,46,44,32,116,104,101,32,122,45,99,111,109,112,111,110,101,110,116,32,111,102,92,110,47,47,32,116,104,101,32,51,68,32,99,114,111,115,115,32,112,114,111,100,117,99,116,32,105,110,32,97,32,113,117,97,100,114,97,110,116,32,73,32,67,97,114,116,101,115,105,97,110,32,99,111,111,114,100,105,110,97,116,101,32,115,121,115,116,101,109,32,40,43,120,32,105,115,92,110,47,47,32,114,105,103,104,116,44,32,43,121,32,105,115,32,117,112,41,46,32,82,101,116,117,114,110,115,32,97,32,112,111,115,105,116,105,118,101,32,118,97,108,117,101,32,105,102,32,65,66,67,32,105,115,32,99,111,117,110,116,101,114,45,99,108,111,99,107,119,105,115,101,44,92,110,47,47,32,110,101,103,97,116,105,118,101,32,105,102,32,99,108,111,99,107,119,105,115,101,44,32,97,110,100,32,122,101,114,111,32,105,102,32,116,104,101,32,112,111,105,110,116,115,32,97,114,101,32,99,111,108,108,105,110,101,97,114,46,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,44,32,99,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,98,91,48,93,32,45,32,97,91,48,93,41,32,42,32,40,99,91,49,93,32,45,32,97,91,49,93,41,32,45,32,40,98,91,49,93,32,45,32,97,91,49,93,41,32,42,32,40,99,91,48,93,32,45,32,97,91,48,93,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,99,114,111,115,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,104,117,108,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,104,117,108,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,114,111,115,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,114,111,115,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,99,114,111,115,115,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,108,101,120,105,99,111,103,114,97,112,104,105,99,79,114,100,101,114,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,91,48,93,32,45,32,98,91,48,93,32,124,124,32,97,91,49,93,32,45,32,98,91,49,93,59,92,110,125,92,110,92,110,47,47,32,67,111,109,112,117,116,101,115,32,116,104,101,32,117,112,112,101,114,32,99,111,110,118,101,120,32,104,117,108,108,32,112,101,114,32,116,104,101,32,109,111,110,111,116,111,110,101,32,99,104,97,105,110,32,97,108,103,111,114,105,116,104,109,46,92,110,47,47,32,65,115,115,117,109,101,115,32,112,111,105,110,116,115,46,108,101,110,103,116,104,32,62,61,32,51,44,32,105,115,32,115,111,114,116,101,100,32,98,121,32,120,44,32,117,110,105,113,117,101,32,105,110,32,121,46,92,110,47,47,32,82,101,116,117,114,110,115,32,97,110,32,97,114,114,97,121,32,111,102,32,105,110,100,105,99,101,115,32,105,110,116,111,32,112,111,105,110,116,115,32,105,110,32,108,101,102,116,45,116,111,45,114,105,103,104,116,32,111,114,100,101,114,46,92,110,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,85,112,112,101,114,72,117,108,108,73,110,100,101,120,101,115,40,112,111,105,110,116,115,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,112,111,105,110,116,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,105,110,100,101,120,101,115,32,61,32,91,48,44,32,49,93,44,92,110,32,32,32,32,32,32,115,105,122,101,32,61,32,50,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,50,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,115,105,122,101,32,62,32,49,32,38,38,32,40,48,44,95,99,114,111,115,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,112,111,105,110,116,115,91,105,110,100,101,120,101,115,91,115,105,122,101,32,45,32,50,93,93,44,32,112,111,105,110,116,115,91,105,110,100,101,120,101,115,91,115,105,122,101,32,45,32,49,93,93,44,32,112,111,105,110,116,115,91,105,93,41,32,60,61,32,48,41,32,45,45,115,105,122,101,59,92,110,32,32,32,32,105,110,100,101,120,101,115,91,115,105,122,101,43,43,93,32,61,32,105,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,105,110,100,101,120,101,115,46,115,108,105,99,101,40,48,44,32,115,105,122,101,41,59,32,47,47,32,114,101,109,111,118,101,32,112,111,112,112,101,100,32,112,111,105,110,116,115,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,112,111,105,110,116,115,41,32,123,92,110,32,32,105,102,32,40,40,110,32,61,32,112,111,105,110,116,115,46,108,101,110,103,116,104,41,32,60,32,51,41,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,92,110,32,32,118,97,114,32,105,44,92,110,32,32,32,32,32,32,110,44,92,110,32,32,32,32,32,32,115,111,114,116,101,100,80,111,105,110,116,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,92,110,32,32,32,32,32,32,102,108,105,112,112,101,100,80,111,105,110,116,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,115,111,114,116,101,100,80,111,105,110,116,115,91,105,93,32,61,32,91,43,112,111,105,110,116,115,91,105,93,91,48,93,44,32,43,112,111,105,110,116,115,91,105,93,91,49,93,44,32,105,93,59,92,110,32,32,115,111,114,116,101,100,80,111,105,110,116,115,46,115,111,114,116,40,108,101,120,105,99,111,103,114,97,112,104,105,99,79,114,100,101,114,41,59,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,102,108,105,112,112,101,100,80,111,105,110,116,115,91,105,93,32,61,32,91,115,111,114,116,101,100,80,111,105,110,116,115,91,105,93,91,48,93,44,32,45,115,111,114,116,101,100,80,111,105,110,116,115,91,105,93,91,49,93,93,59,92,110,92,110,32,32,118,97,114,32,117,112,112,101,114,73,110,100,101,120,101,115,32,61,32,99,111,109,112,117,116,101,85,112,112,101,114,72,117,108,108,73,110,100,101,120,101,115,40,115,111,114,116,101,100,80,111,105,110,116,115,41,44,92,110,32,32,32,32,32,32,108,111,119,101,114,73,110,100,101,120,101,115,32,61,32,99,111,109,112,117,116,101,85,112,112,101,114,72,117,108,108,73,110,100,101,120,101,115,40,102,108,105,112,112,101,100,80,111,105,110,116,115,41,59,92,110,92,110,32,32,47,47,32,67,111,110,115,116,114,117,99,116,32,116,104,101,32,104,117,108,108,32,112,111,108,121,103,111,110,44,32,114,101,109,111,118,105,110,103,32,112,111,115,115,105,98,108,101,32,100,117,112,108,105,99,97,116,101,32,101,110,100,112,111,105,110,116,115,46,92,110,32,32,118,97,114,32,115,107,105,112,76,101,102,116,32,61,32,108,111,119,101,114,73,110,100,101,120,101,115,91,48,93,32,61,61,61,32,117,112,112,101,114,73,110,100,101,120,101,115,91,48,93,44,92,110,32,32,32,32,32,32,115,107,105,112,82,105,103,104,116,32,61,32,108,111,119,101,114,73,110,100,101,120,101,115,91,108,111,119,101,114,73,110,100,101,120,101,115,46,108,101,110,103,116,104,32,45,32,49,93,32,61,61,61,32,117,112,112,101,114,73,110,100,101,120,101,115,91,117,112,112,101,114,73,110,100,101,120,101,115,46,108,101,110,103,116,104,32,45,32,49,93,44,92,110,32,32,32,32,32,32,104,117,108,108,32,61,32,91,93,59,92,110,92,110,32,32,47,47,32,65,100,100,32,117,112,112,101,114,32,104,117,108,108,32,105,110,32,114,105,103,104,116,45,116,111,45,108,32,111,114,100,101,114,46,92,110,32,32,47,47,32,84,104,101,110,32,97,100,100,32,108,111,119,101,114,32,104,117,108,108,32,105,110,32,108,101,102,116,45,116,111,45,114,105,103,104,116,32,111,114,100,101,114,46,92,110,32,32,102,111,114,32,40,105,32,61,32,117,112,112,101,114,73,110,100,101,120,101,115,46,108,101,110,103,116,104,32,45,32,49,59,32,105,32,62,61,32,48,59,32,45,45,105,41,32,104,117,108,108,46,112,117,115,104,40,112,111,105,110,116,115,91,115,111,114,116,101,100,80,111,105,110,116,115,91,117,112,112,101,114,73,110,100,101,120,101,115,91,105,93,93,91,50,93,93,41,59,92,110,32,32,102,111,114,32,40,105,32,61,32,43,115,107,105,112,76,101,102,116,59,32,105,32,60,32,108,111,119,101,114,73,110,100,101,120,101,115,46,108,101,110,103,116,104,32,45,32,115,107,105,112,82,105,103,104,116,59,32,43,43,105,41,32,104,117,108,108,46,112,117,115,104,40,112,111,105,110,116,115,91,115,111,114,116,101,100,80,111,105,110,116,115,91,108,111,119,101,114,73,110,100,101,120,101,115,91,105,93,93,91,50,93,93,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,104,117,108,108,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,104,117,108,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,108,121,103,111,110,65,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,108,121,103,111,110,67,101,110,116,114,111,105,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,101,110,116,114,111,105,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,111,110,116,97,105,110,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,108,121,103,111,110,72,117,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,104,117,108,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,108,121,103,111,110,76,101,110,103,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,101,110,103,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,101,97,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,97,114,101,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,101,110,116,114,111,105,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,101,110,116,114,111,105,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,99,101,110,116,114,111,105,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,117,108,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,117,108,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,104,117,108,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,116,97,105,110,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,116,97,105,110,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,99,111,110,116,97,105,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,101,110,103,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,101,110,103,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,108,101,110,103,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,108,101,110,103,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,108,101,110,103,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,112,111,108,121,103,111,110,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,110,32,61,32,112,111,108,121,103,111,110,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,98,32,61,32,112,111,108,121,103,111,110,91,110,32,45,32,49,93,44,92,110,32,32,32,32,32,32,120,97,44,92,110,32,32,32,32,32,32,121,97,44,92,110,32,32,32,32,32,32,120,98,32,61,32,98,91,48,93,44,92,110,32,32,32,32,32,32,121,98,32,61,32,98,91,49,93,44,92,110,32,32,32,32,32,32,112,101,114,105,109,101,116,101,114,32,61,32,48,59,92,110,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,120,97,32,61,32,120,98,59,92,110,32,32,32,32,121,97,32,61,32,121,98,59,92,110,32,32,32,32,98,32,61,32,112,111,108,121,103,111,110,91,105,93,59,92,110,32,32,32,32,120,98,32,61,32,98,91,48,93,59,92,110,32,32,32,32,121,98,32,61,32,98,91,49,93,59,92,110,32,32,32,32,120,97,32,45,61,32,120,98,59,92,110,32,32,32,32,121,97,32,45,61,32,121,98,59,92,110,32,32,32,32,112,101,114,105,109,101,116,101,114,32,43,61,32,77,97,116,104,46,115,113,114,116,40,120,97,32,42,32,120,97,32,43,32,121,97,32,42,32,121,97,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,112,101,114,105,109,101,116,101,114,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,108,101,110,103,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,97,100,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,97,100,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,100,100,65,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,100,100,65,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,100,41,32,123,92,110,32,32,118,97,114,32,120,32,61,32,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,32,100,41,44,92,110,32,32,32,32,32,32,121,32,61,32,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,32,100,41,59,92,110,32,32,114,101,116,117,114,110,32,97,100,100,40,116,104,105,115,46,99,111,118,101,114,40,120,44,32,121,41,44,32,120,44,32,121,44,32,100,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,100,100,40,116,114,101,101,44,32,120,44,32,121,44,32,100,41,32,123,92,110,32,32,105,102,32,40,105,115,78,97,78,40,120,41,32,124,124,32,105,115,78,97,78,40,121,41,41,32,114,101,116,117,114,110,32,116,114,101,101,59,32,47,47,32,105,103,110,111,114,101,32,105,110,118,97,108,105,100,32,112,111,105,110,116,115,92,110,92,110,32,32,118,97,114,32,112,97,114,101,110,116,44,92,110,32,32,32,32,32,32,110,111,100,101,32,61,32,116,114,101,101,46,95,114,111,111,116,44,92,110,32,32,32,32,32,32,108,101,97,102,32,61,32,123,100,97,116,97,58,32,100,125,44,92,110,32,32,32,32,32,32,120,48,32,61,32,116,114,101,101,46,95,120,48,44,92,110,32,32,32,32,32,32,121,48,32,61,32,116,114,101,101,46,95,121,48,44,92,110,32,32,32,32,32,32,120,49,32,61,32,116,114,101,101,46,95,120,49,44,92,110,32,32,32,32,32,32,121,49,32,61,32,116,114,101,101,46,95,121,49,44,92,110,32,32,32,32,32,32,120,109,44,92,110,32,32,32,32,32,32,121,109,44,92,110,32,32,32,32,32,32,120,112,44,92,110,32,32,32,32,32,32,121,112,44,92,110,32,32,32,32,32,32,114,105,103,104,116,44,92,110,32,32,32,32,32,32,98,111,116,116,111,109,44,92,110,32,32,32,32,32,32,105,44,92,110,32,32,32,32,32,32,106,59,92,110,92,110,32,32,47,47,32,73,102,32,116,104,101,32,116,114,101,101,32,105,115,32,101,109,112,116,121,44,32,105,110,105,116,105,97,108,105,122,101,32,116,104,101,32,114,111,111,116,32,97,115,32,97,32,108,101,97,102,46,92,110,32,32,105,102,32,40,33,110,111,100,101,41,32,114,101,116,117,114,110,32,116,114,101,101,46,95,114,111,111,116,32,61,32,108,101,97,102,44,32,116,114,101,101,59,92,110,92,110,32,32,47,47,32,70,105,110,100,32,116,104,101,32,101,120,105,115,116,105,110,103,32,108,101,97,102,32,102,111,114,32,116,104,101,32,110,101,119,32,112,111,105,110,116,44,32,111,114,32,97,100,100,32,105,116,46,92,110,32,32,119,104,105,108,101,32,40,110,111,100,101,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,105,102,32,40,114,105,103,104,116,32,61,32,120,32,62,61,32,40,120,109,32,61,32,40,120,48,32,43,32,120,49,41,32,47,32,50,41,41,32,120,48,32,61,32,120,109,59,32,101,108,115,101,32,120,49,32,61,32,120,109,59,92,110,32,32,32,32,105,102,32,40,98,111,116,116,111,109,32,61,32,121,32,62,61,32,40,121,109,32,61,32,40,121,48,32,43,32,121,49,41,32,47,32,50,41,41,32,121,48,32,61,32,121,109,59,32,101,108,115,101,32,121,49,32,61,32,121,109,59,92,110,32,32,32,32,105,102,32,40,112,97,114,101,110,116,32,61,32,110,111,100,101,44,32,33,40,110,111,100,101,32,61,32,110,111,100,101,91,105,32,61,32,98,111,116,116,111,109,32,60,60,32,49,32,124,32,114,105,103,104,116,93,41,41,32,114,101,116,117,114,110,32,112,97,114,101,110,116,91,105,93,32,61,32,108,101,97,102,44,32,116,114,101,101,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,73,115,32,116,104,101,32,110,101,119,32,112,111,105,110,116,32,105,115,32,101,120,97,99,116,108,121,32,99,111,105,110,99,105,100,101,110,116,32,119,105,116,104,32,116,104,101,32,101,120,105,115,116,105,110,103,32,112,111,105,110,116,63,92,110,32,32,120,112,32,61,32,43,116,114,101,101,46,95,120,46,99,97,108,108,40,110,117,108,108,44,32,110,111,100,101,46,100,97,116,97,41,59,92,110,32,32,121,112,32,61,32,43,116,114,101,101,46,95,121,46,99,97,108,108,40,110,117,108,108,44,32,110,111,100,101,46,100,97,116,97,41,59,92,110,32,32,105,102,32,40,120,32,61,61,61,32,120,112,32,38,38,32,121,32,61,61,61,32,121,112,41,32,114,101,116,117,114,110,32,108,101,97,102,46,110,101,120,116,32,61,32,110,111,100,101,44,32,112,97,114,101,110,116,32,63,32,112,97,114,101,110,116,91,105,93,32,61,32,108,101,97,102,32,58,32,116,114,101,101,46,95,114,111,111,116,32,61,32,108,101,97,102,44,32,116,114,101,101,59,92,110,92,110,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,115,112,108,105,116,32,116,104,101,32,108,101,97,102,32,110,111,100,101,32,117,110,116,105,108,32,116,104,101,32,111,108,100,32,97,110,100,32,110,101,119,32,112,111,105,110,116,32,97,114,101,32,115,101,112,97,114,97,116,101,100,46,92,110,32,32,100,111,32,123,92,110,32,32,32,32,112,97,114,101,110,116,32,61,32,112,97,114,101,110,116,32,63,32,112,97,114,101,110,116,91,105,93,32,61,32,110,101,119,32,65,114,114,97,121,40,52,41,32,58,32,116,114,101,101,46,95,114,111,111,116,32,61,32,110,101,119,32,65,114,114,97,121,40,52,41,59,92,110,32,32,32,32,105,102,32,40,114,105,103,104,116,32,61,32,120,32,62,61,32,40,120,109,32,61,32,40,120,48,32,43,32,120,49,41,32,47,32,50,41,41,32,120,48,32,61,32,120,109,59,32,101,108,115,101,32,120,49,32,61,32,120,109,59,92,110,32,32,32,32,105,102,32,40,98,111,116,116,111,109,32,61,32,121,32,62,61,32,40,121,109,32,61,32,40,121,48,32,43,32,121,49,41,32,47,32,50,41,41,32,121,48,32,61,32,121,109,59,32,101,108,115,101,32,121,49,32,61,32,121,109,59,92,110,32,32,125,32,119,104,105,108,101,32,40,40,105,32,61,32,98,111,116,116,111,109,32,60,60,32,49,32,124,32,114,105,103,104,116,41,32,61,61,61,32,40,106,32,61,32,40,121,112,32,62,61,32,121,109,41,32,60,60,32,49,32,124,32,40,120,112,32,62,61,32,120,109,41,41,41,59,92,110,32,32,114,101,116,117,114,110,32,112,97,114,101,110,116,91,106,93,32,61,32,110,111,100,101,44,32,112,97,114,101,110,116,91,105,93,32,61,32,108,101,97,102,44,32,116,114,101,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,100,100,65,108,108,40,100,97,116,97,41,32,123,92,110,32,32,118,97,114,32,100,44,32,105,44,32,110,32,61,32,100,97,116,97,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,120,44,92,110,32,32,32,32,32,32,121,44,92,110,32,32,32,32,32,32,120,122,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,92,110,32,32,32,32,32,32,121,122,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,92,110,32,32,32,32,32,32,120,48,32,61,32,73,110,102,105,110,105,116,121,44,92,110,32,32,32,32,32,32,121,48,32,61,32,73,110,102,105,110,105,116,121,44,92,110,32,32,32,32,32,32,120,49,32,61,32,45,73,110,102,105,110,105,116,121,44,92,110,32,32,32,32,32,32,121,49,32,61,32,45,73,110,102,105,110,105,116,121,59,92,110,92,110,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,112,111,105,110,116,115,32,97,110,100,32,116,104,101,105,114,32,101,120,116,101,110,116,46,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,78,97,78,40,120,32,61,32,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,32,100,32,61,32,100,97,116,97,91,105,93,41,41,32,124,124,32,105,115,78,97,78,40,121,32,61,32,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,32,100,41,41,41,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,120,122,91,105,93,32,61,32,120,59,92,110,32,32,32,32,121,122,91,105,93,32,61,32,121,59,92,110,32,32,32,32,105,102,32,40,120,32,60,32,120,48,41,32,120,48,32,61,32,120,59,92,110,32,32,32,32,105,102,32,40,120,32,62,32,120,49,41,32,120,49,32,61,32,120,59,92,110,32,32,32,32,105,102,32,40,121,32,60,32,121,48,41,32,121,48,32,61,32,121,59,92,110,32,32,32,32,105,102,32,40,121,32,62,32,121,49,41,32,121,49,32,61,32,121,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,73,102,32,116,104,101,114,101,32,119,101,114,101,32,110,111,32,40,118,97,108,105,100,41,32,112,111,105,110,116,115,44,32,97,98,111,114,116,46,92,110,32,32,105,102,32,40,120,48,32,62,32,120,49,32,124,124,32,121,48,32,62,32,121,49,41,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,92,110,32,32,47,47,32,69,120,112,97,110,100,32,116,104,101,32,116,114,101,101,32,116,111,32,99,111,118,101,114,32,116,104,101,32,110,101,119,32,112,111,105,110,116,115,46,92,110,32,32,116,104,105,115,46,99,111,118,101,114,40,120,48,44,32,121,48,41,46,99,111,118,101,114,40,120,49,44,32,121,49,41,59,92,110,92,110,32,32,47,47,32,65,100,100,32,116,104,101,32,110,101,119,32,112,111,105,110,116,115,46,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,97,100,100,40,116,104,105,115,44,32,120,122,91,105,93,44,32,121,122,91,105,93,44,32,100,97,116,97,91,105,93,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,97,100,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,99,111,118,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,99,111,118,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,44,32,121,41,32,123,92,110,32,32,105,102,32,40,105,115,78,97,78,40,120,32,61,32,43,120,41,32,124,124,32,105,115,78,97,78,40,121,32,61,32,43,121,41,41,32,114,101,116,117,114,110,32,116,104,105,115,59,32,47,47,32,105,103,110,111,114,101,32,105,110,118,97,108,105,100,32,112,111,105,110,116,115,92,110,92,110,32,32,118,97,114,32,120,48,32,61,32,116,104,105,115,46,95,120,48,44,92,110,32,32,32,32,32,32,121,48,32,61,32,116,104,105,115,46,95,121,48,44,92,110,32,32,32,32,32,32,120,49,32,61,32,116,104,105,115,46,95,120,49,44,92,110,32,32,32,32,32,32,121,49,32,61,32,116,104,105,115,46,95,121,49,59,92,110,92,110,32,32,47,47,32,73,102,32,116,104,101,32,113,117,97,100,116,114,101,101,32,104,97,115,32,110,111,32,101,120,116,101,110,116,44,32,105,110,105,116,105,97,108,105,122,101,32,116,104,101,109,46,92,110,32,32,47,47,32,73,110,116,101,103,101,114,32,101,120,116,101,110,116,32,97,114,101,32,110,101,99,101,115,115,97,114,121,32,115,111,32,116,104,97,116,32,105,102,32,119,101,32,108,97,116,101,114,32,100,111,117,98,108,101,32,116,104,101,32,101,120,116,101,110,116,44,92,110,32,32,47,47,32,116,104,101,32,101,120,105,115,116,105,110,103,32,113,117,97,100,114,97,110,116,32,98,111,117,110,100,97,114,105,101,115,32,100,111,110,226,128,153,116,32,99,104,97,110,103,101,32,100,117,101,32,116,111,32,102,108,111,97,116,105,110,103,32,112,111,105,110,116,32,101,114,114,111,114,33,92,110,32,32,105,102,32,40,105,115,78,97,78,40,120,48,41,41,32,123,92,110,32,32,32,32,120,49,32,61,32,40,120,48,32,61,32,77,97,116,104,46,102,108,111,111,114,40,120,41,41,32,43,32,49,59,92,110,32,32,32,32,121,49,32,61,32,40,121,48,32,61,32,77,97,116,104,46,102,108,111,111,114,40,121,41,41,32,43,32,49,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,100,111,117,98,108,101,32,114,101,112,101,97,116,101,100,108,121,32,116,111,32,99,111,118,101,114,46,92,110,32,32,101,108,115,101,32,123,92,110,32,32,32,32,118,97,114,32,122,32,61,32,120,49,32,45,32,120,48,44,92,110,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,116,104,105,115,46,95,114,111,111,116,44,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,44,92,110,32,32,32,32,32,32,32,32,105,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,120,48,32,62,32,120,32,124,124,32,120,32,62,61,32,120,49,32,124,124,32,121,48,32,62,32,121,32,124,124,32,121,32,62,61,32,121,49,41,32,123,92,110,32,32,32,32,32,32,105,32,61,32,40,121,32,60,32,121,48,41,32,60,60,32,49,32,124,32,40,120,32,60,32,120,48,41,59,92,110,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,110,101,119,32,65,114,114,97,121,40,52,41,44,32,112,97,114,101,110,116,91,105,93,32,61,32,110,111,100,101,44,32,110,111,100,101,32,61,32,112,97,114,101,110,116,44,32,122,32,42,61,32,50,59,92,110,32,32,32,32,32,32,115,119,105,116,99,104,32,40,105,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,48,58,32,120,49,32,61,32,120,48,32,43,32,122,44,32,121,49,32,61,32,121,48,32,43,32,122,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,49,58,32,120,48,32,61,32,120,49,32,45,32,122,44,32,121,49,32,61,32,121,48,32,43,32,122,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,50,58,32,120,49,32,61,32,120,48,32,43,32,122,44,32,121,48,32,61,32,121,49,32,45,32,122,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,51,58,32,120,48,32,61,32,120,49,32,45,32,122,44,32,121,48,32,61,32,121,49,32,45,32,122,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,114,111,111,116,32,38,38,32,116,104,105,115,46,95,114,111,111,116,46,108,101,110,103,116,104,41,32,116,104,105,115,46,95,114,111,111,116,32,61,32,110,111,100,101,59,92,110,32,32,125,92,110,92,110,32,32,116,104,105,115,46,95,120,48,32,61,32,120,48,59,92,110,32,32,116,104,105,115,46,95,121,48,32,61,32,121,48,59,92,110,32,32,116,104,105,115,46,95,120,49,32,61,32,120,49,59,92,110,32,32,116,104,105,115,46,95,121,49,32,61,32,121,49,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,99,111,118,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,100,97,116,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,100,97,116,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,100,97,116,97,32,61,32,91,93,59,92,110,32,32,116,104,105,115,46,118,105,115,105,116,40,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,110,111,100,101,46,108,101,110,103,116,104,41,32,100,111,32,100,97,116,97,46,112,117,115,104,40,110,111,100,101,46,100,97,116,97,41,59,32,119,104,105,108,101,32,40,110,111,100,101,32,61,32,110,111,100,101,46,110,101,120,116,41,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,100,97,116,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,101,120,116,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,101,120,116,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,95,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,92,110,32,32,32,32,32,32,63,32,116,104,105,115,46,99,111,118,101,114,40,43,95,91,48,93,91,48,93,44,32,43,95,91,48,93,91,49,93,41,46,99,111,118,101,114,40,43,95,91,49,93,91,48,93,44,32,43,95,91,49,93,91,49,93,41,92,110,32,32,32,32,32,32,58,32,105,115,78,97,78,40,116,104,105,115,46,95,120,48,41,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,91,91,116,104,105,115,46,95,120,48,44,32,116,104,105,115,46,95,121,48,93,44,32,91,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,121,49,93,93,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,101,120,116,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,102,105,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,102,105,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,113,117,97,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,113,117,97,100,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,44,32,121,44,32,114,97,100,105,117,115,41,32,123,92,110,32,32,118,97,114,32,100,97,116,97,44,92,110,32,32,32,32,32,32,120,48,32,61,32,116,104,105,115,46,95,120,48,44,92,110,32,32,32,32,32,32,121,48,32,61,32,116,104,105,115,46,95,121,48,44,92,110,32,32,32,32,32,32,120,49,44,92,110,32,32,32,32,32,32,121,49,44,92,110,32,32,32,32,32,32,120,50,44,92,110,32,32,32,32,32,32,121,50,44,92,110,32,32,32,32,32,32,120,51,32,61,32,116,104,105,115,46,95,120,49,44,92,110,32,32,32,32,32,32,121,51,32,61,32,116,104,105,115,46,95,121,49,44,92,110,32,32,32,32,32,32,113,117,97,100,115,32,61,32,91,93,44,92,110,32,32,32,32,32,32,110,111,100,101,32,61,32,116,104,105,115,46,95,114,111,111,116,44,92,110,32,32,32,32,32,32,113,44,92,110,32,32,32,32,32,32,105,59,92,110,92,110,32,32,105,102,32,40,110,111,100,101,41,32,113,117,97,100,115,46,112,117,115,104,40,110,101,119,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,110,111,100,101,44,32,120,48,44,32,121,48,44,32,120,51,44,32,121,51,41,41,59,92,110,32,32,105,102,32,40,114,97,100,105,117,115,32,61,61,32,110,117,108,108,41,32,114,97,100,105,117,115,32,61,32,73,110,102,105,110,105,116,121,59,92,110,32,32,101,108,115,101,32,123,92,110,32,32,32,32,120,48,32,61,32,120,32,45,32,114,97,100,105,117,115,44,32,121,48,32,61,32,121,32,45,32,114,97,100,105,117,115,59,92,110,32,32,32,32,120,51,32,61,32,120,32,43,32,114,97,100,105,117,115,44,32,121,51,32,61,32,121,32,43,32,114,97,100,105,117,115,59,92,110,32,32,32,32,114,97,100,105,117,115,32,42,61,32,114,97,100,105,117,115,59,92,110,32,32,125,92,110,92,110,32,32,119,104,105,108,101,32,40,113,32,61,32,113,117,97,100,115,46,112,111,112,40,41,41,32,123,92,110,92,110,32,32,32,32,47,47,32,83,116,111,112,32,115,101,97,114,99,104,105,110,103,32,105,102,32,116,104,105,115,32,113,117,97,100,114,97,110,116,32,99,97,110,226,128,153,116,32,99,111,110,116,97,105,110,32,97,32,99,108,111,115,101,114,32,110,111,100,101,46,92,110,32,32,32,32,105,102,32,40,33,40,110,111,100,101,32,61,32,113,46,110,111,100,101,41,92,110,32,32,32,32,32,32,32,32,124,124,32,40,120,49,32,61,32,113,46,120,48,41,32,62,32,120,51,92,110,32,32,32,32,32,32,32,32,124,124,32,40,121,49,32,61,32,113,46,121,48,41,32,62,32,121,51,92,110,32,32,32,32,32,32,32,32,124,124,32,40,120,50,32,61,32,113,46,120,49,41,32,60,32,120,48,92,110,32,32,32,32,32,32,32,32,124,124,32,40,121,50,32,61,32,113,46,121,49,41,32,60,32,121,48,41,32,99,111,110,116,105,110,117,101,59,92,110,92,110,32,32,32,32,47,47,32,66,105,115,101,99,116,32,116,104,101,32,99,117,114,114,101,110,116,32,113,117,97,100,114,97,110,116,46,92,110,32,32,32,32,105,102,32,40,110,111,100,101,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,120,109,32,61,32,40,120,49,32,43,32,120,50,41,32,47,32,50,44,92,110,32,32,32,32,32,32,32,32,32,32,121,109,32,61,32,40,121,49,32,43,32,121,50,41,32,47,32,50,59,92,110,92,110,32,32,32,32,32,32,113,117,97,100,115,46,112,117,115,104,40,92,110,32,32,32,32,32,32,32,32,110,101,119,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,110,111,100,101,91,51,93,44,32,120,109,44,32,121,109,44,32,120,50,44,32,121,50,41,44,92,110,32,32,32,32,32,32,32,32,110,101,119,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,110,111,100,101,91,50,93,44,32,120,49,44,32,121,109,44,32,120,109,44,32,121,50,41,44,92,110,32,32,32,32,32,32,32,32,110,101,119,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,110,111,100,101,91,49,93,44,32,120,109,44,32,121,49,44,32,120,50,44,32,121,109,41,44,92,110,32,32,32,32,32,32,32,32,110,101,119,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,110,111,100,101,91,48,93,44,32,120,49,44,32,121,49,44,32,120,109,44,32,121,109,41,92,110,32,32,32,32,32,32,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,86,105,115,105,116,32,116,104,101,32,99,108,111,115,101,115,116,32,113,117,97,100,114,97,110,116,32,102,105,114,115,116,46,92,110,32,32,32,32,32,32,105,102,32,40,105,32,61,32,40,121,32,62,61,32,121,109,41,32,60,60,32,49,32,124,32,40,120,32,62,61,32,120,109,41,41,32,123,92,110,32,32,32,32,32,32,32,32,113,32,61,32,113,117,97,100,115,91,113,117,97,100,115,46,108,101,110,103,116,104,32,45,32,49,93,59,92,110,32,32,32,32,32,32,32,32,113,117,97,100,115,91,113,117,97,100,115,46,108,101,110,103,116,104,32,45,32,49,93,32,61,32,113,117,97,100,115,91,113,117,97,100,115,46,108,101,110,103,116,104,32,45,32,49,32,45,32,105,93,59,92,110,32,32,32,32,32,32,32,32,113,117,97,100,115,91,113,117,97,100,115,46,108,101,110,103,116,104,32,45,32,49,32,45,32,105,93,32,61,32,113,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,86,105,115,105,116,32,116,104,105,115,32,112,111,105,110,116,46,32,40,86,105,115,105,116,105,110,103,32,99,111,105,110,99,105,100,101,110,116,32,112,111,105,110,116,115,32,105,115,110,226,128,153,116,32,110,101,99,101,115,115,97,114,121,33,41,92,110,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,120,32,61,32,120,32,45,32,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,32,110,111,100,101,46,100,97,116,97,41,44,92,110,32,32,32,32,32,32,32,32,32,32,100,121,32,61,32,121,32,45,32,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,32,110,111,100,101,46,100,97,116,97,41,44,92,110,32,32,32,32,32,32,32,32,32,32,100,50,32,61,32,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,59,92,110,32,32,32,32,32,32,105,102,32,40,100,50,32,60,32,114,97,100,105,117,115,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,32,61,32,77,97,116,104,46,115,113,114,116,40,114,97,100,105,117,115,32,61,32,100,50,41,59,92,110,32,32,32,32,32,32,32,32,120,48,32,61,32,120,32,45,32,100,44,32,121,48,32,61,32,121,32,45,32,100,59,92,110,32,32,32,32,32,32,32,32,120,51,32,61,32,120,32,43,32,100,44,32,121,51,32,61,32,121,32,43,32,100,59,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,110,111,100,101,46,100,97,116,97,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,102,105,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,113,117,97,100,116,114,101,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,113,117,97,100,116,114,101,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,113,117,97,100,116,114,101,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,113,117,97,100,116,114,101,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,113,117,97,100,116,114,101,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,113,117,97,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,113,117,97,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,111,100,101,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,116,104,105,115,46,110,111,100,101,32,61,32,110,111,100,101,59,92,110,32,32,116,104,105,115,46,120,48,32,61,32,120,48,59,92,110,32,32,116,104,105,115,46,121,48,32,61,32,121,48,59,92,110,32,32,116,104,105,115,46,120,49,32,61,32,120,49,59,92,110,32,32,116,104,105,115,46,121,49,32,61,32,121,49,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,113,117,97,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,113,117,97,100,116,114,101,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,113,117,97,100,116,114,101,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,113,117,97,100,116,114,101,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,100,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,100,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,97,100,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,118,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,118,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,99,111,118,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,97,116,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,97,116,97,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,100,97,116,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,120,116,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,120,116,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,101,120,116,101,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,105,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,105,110,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,102,105,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,109,111,118,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,101,109,111,118,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,114,101,109,111,118,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,111,111,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,111,111,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,114,111,111,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,105,122,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,105,122,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,115,105,122,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,105,115,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,118,105,115,105,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,118,105,115,105,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,105,115,105,116,65,102,116,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,118,105,115,105,116,65,102,116,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,118,105,115,105,116,65,102,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,121,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,113,117,97,100,116,114,101,101,40,110,111,100,101,115,44,32,120,44,32,121,41,32,123,92,110,32,32,118,97,114,32,116,114,101,101,32,61,32,110,101,119,32,81,117,97,100,116,114,101,101,40,120,32,61,61,32,110,117,108,108,32,63,32,95,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,102,97,117,108,116,88,32,58,32,120,44,32,121,32,61,61,32,110,117,108,108,32,63,32,95,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,101,102,97,117,108,116,89,32,58,32,121,44,32,78,97,78,44,32,78,97,78,44,32,78,97,78,44,32,78,97,78,41,59,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,115,32,61,61,32,110,117,108,108,32,63,32,116,114,101,101,32,58,32,116,114,101,101,46,97,100,100,65,108,108,40,110,111,100,101,115,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,81,117,97,100,116,114,101,101,40,120,44,32,121,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,116,104,105,115,46,95,120,32,61,32,120,59,92,110,32,32,116,104,105,115,46,95,121,32,61,32,121,59,92,110,32,32,116,104,105,115,46,95,120,48,32,61,32,120,48,59,92,110,32,32,116,104,105,115,46,95,121,48,32,61,32,121,48,59,92,110,32,32,116,104,105,115,46,95,120,49,32,61,32,120,49,59,92,110,32,32,116,104,105,115,46,95,121,49,32,61,32,121,49,59,92,110,32,32,116,104,105,115,46,95,114,111,111,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,101,97,102,95,99,111,112,121,40,108,101,97,102,41,32,123,92,110,32,32,118,97,114,32,99,111,112,121,32,61,32,123,100,97,116,97,58,32,108,101,97,102,46,100,97,116,97,125,44,32,110,101,120,116,32,61,32,99,111,112,121,59,92,110,32,32,119,104,105,108,101,32,40,108,101,97,102,32,61,32,108,101,97,102,46,110,101,120,116,41,32,110,101,120,116,32,61,32,110,101,120,116,46,110,101,120,116,32,61,32,123,100,97,116,97,58,32,108,101,97,102,46,100,97,116,97,125,59,92,110,32,32,114,101,116,117,114,110,32,99,111,112,121,59,92,110,125,92,110,92,110,118,97,114,32,116,114,101,101,80,114,111,116,111,32,61,32,113,117,97,100,116,114,101,101,46,112,114,111,116,111,116,121,112,101,32,61,32,81,117,97,100,116,114,101,101,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,116,114,101,101,80,114,111,116,111,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,118,97,114,32,99,111,112,121,32,61,32,110,101,119,32,81,117,97,100,116,114,101,101,40,116,104,105,115,46,95,120,44,32,116,104,105,115,46,95,121,44,32,116,104,105,115,46,95,120,48,44,32,116,104,105,115,46,95,121,48,44,32,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,121,49,41,44,92,110,32,32,32,32,32,32,110,111,100,101,32,61,32,116,104,105,115,46,95,114,111,111,116,44,92,110,32,32,32,32,32,32,110,111,100,101,115,44,92,110,32,32,32,32,32,32,99,104,105,108,100,59,92,110,92,110,32,32,105,102,32,40,33,110,111,100,101,41,32,114,101,116,117,114,110,32,99,111,112,121,59,92,110,92,110,32,32,105,102,32,40,33,110,111,100,101,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,99,111,112,121,46,95,114,111,111,116,32,61,32,108,101,97,102,95,99,111,112,121,40,110,111,100,101,41,44,32,99,111,112,121,59,92,110,92,110,32,32,110,111,100,101,115,32,61,32,91,123,115,111,117,114,99,101,58,32,110,111,100,101,44,32,116,97,114,103,101,116,58,32,99,111,112,121,46,95,114,111,111,116,32,61,32,110,101,119,32,65,114,114,97,121,40,52,41,125,93,59,92,110,32,32,119,104,105,108,101,32,40,110,111,100,101,32,61,32,110,111,100,101,115,46,112,111,112,40,41,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,52,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,32,61,32,110,111,100,101,46,115,111,117,114,99,101,91,105,93,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,46,108,101,110,103,116,104,41,32,110,111,100,101,115,46,112,117,115,104,40,123,115,111,117,114,99,101,58,32,99,104,105,108,100,44,32,116,97,114,103,101,116,58,32,110,111,100,101,46,116,97,114,103,101,116,91,105,93,32,61,32,110,101,119,32,65,114,114,97,121,40,52,41,125,41,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,110,111,100,101,46,116,97,114,103,101,116,91,105,93,32,61,32,108,101,97,102,95,99,111,112,121,40,99,104,105,108,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,99,111,112,121,59,92,110,125,59,92,110,92,110,116,114,101,101,80,114,111,116,111,46,97,100,100,32,61,32,95,97,100,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,116,114,101,101,80,114,111,116,111,46,97,100,100,65,108,108,32,61,32,95,97,100,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,100,100,65,108,108,59,92,110,116,114,101,101,80,114,111,116,111,46,99,111,118,101,114,32,61,32,95,99,111,118,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,116,114,101,101,80,114,111,116,111,46,100,97,116,97,32,61,32,95,100,97,116,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,116,114,101,101,80,114,111,116,111,46,101,120,116,101,110,116,32,61,32,95,101,120,116,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,116,114,101,101,80,114,111,116,111,46,102,105,110,100,32,61,32,95,102,105,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,116,114,101,101,80,114,111,116,111,46,114,101,109,111,118,101,32,61,32,95,114,101,109,111,118,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,116,114,101,101,80,114,111,116,111,46,114,101,109,111,118,101,65,108,108,32,61,32,95,114,101,109,111,118,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,114,101,109,111,118,101,65,108,108,59,92,110,116,114,101,101,80,114,111,116,111,46,114,111,111,116,32,61,32,95,114,111,111,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,116,114,101,101,80,114,111,116,111,46,115,105,122,101,32,61,32,95,115,105,122,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,116,114,101,101,80,114,111,116,111,46,118,105,115,105,116,32,61,32,95,118,105,115,105,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,116,114,101,101,80,114,111,116,111,46,118,105,115,105,116,65,102,116,101,114,32,61,32,95,118,105,115,105,116,65,102,116,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,116,114,101,101,80,114,111,116,111,46,120,32,61,32,95,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,116,114,101,101,80,114,111,116,111,46,121,32,61,32,95,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,113,117,97,100,116,114,101,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,114,101,109,111,118,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,114,101,109,111,118,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,109,111,118,101,65,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,109,111,118,101,65,108,108,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,100,41,32,123,92,110,32,32,105,102,32,40,105,115,78,97,78,40,120,32,61,32,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,32,100,41,41,32,124,124,32,105,115,78,97,78,40,121,32,61,32,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,32,100,41,41,41,32,114,101,116,117,114,110,32,116,104,105,115,59,32,47,47,32,105,103,110,111,114,101,32,105,110,118,97,108,105,100,32,112,111,105,110,116,115,92,110,92,110,32,32,118,97,114,32,112,97,114,101,110,116,44,92,110,32,32,32,32,32,32,110,111,100,101,32,61,32,116,104,105,115,46,95,114,111,111,116,44,92,110,32,32,32,32,32,32,114,101,116,97,105,110,101,114,44,92,110,32,32,32,32,32,32,112,114,101,118,105,111,117,115,44,92,110,32,32,32,32,32,32,110,101,120,116,44,92,110,32,32,32,32,32,32,120,48,32,61,32,116,104,105,115,46,95,120,48,44,92,110,32,32,32,32,32,32,121,48,32,61,32,116,104,105,115,46,95,121,48,44,92,110,32,32,32,32,32,32,120,49,32,61,32,116,104,105,115,46,95,120,49,44,92,110,32,32,32,32,32,32,121,49,32,61,32,116,104,105,115,46,95,121,49,44,92,110,32,32,32,32,32,32,120,44,92,110,32,32,32,32,32,32,121,44,92,110,32,32,32,32,32,32,120,109,44,92,110,32,32,32,32,32,32,121,109,44,92,110,32,32,32,32,32,32,114,105,103,104,116,44,92,110,32,32,32,32,32,32,98,111,116,116,111,109,44,92,110,32,32,32,32,32,32,105,44,92,110,32,32,32,32,32,32,106,59,92,110,92,110,32,32,47,47,32,73,102,32,116,104,101,32,116,114,101,101,32,105,115,32,101,109,112,116,121,44,32,105,110,105,116,105,97,108,105,122,101,32,116,104,101,32,114,111,111,116,32,97,115,32,97,32,108,101,97,102,46,92,110,32,32,105,102,32,40,33,110,111,100,101,41,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,92,110,32,32,47,47,32,70,105,110,100,32,116,104,101,32,108,101,97,102,32,110,111,100,101,32,102,111,114,32,116,104,101,32,112,111,105,110,116,46,92,110,32,32,47,47,32,87,104,105,108,101,32,100,101,115,99,101,110,100,105,110,103,44,32,97,108,115,111,32,114,101,116,97,105,110,32,116,104,101,32,100,101,101,112,101,115,116,32,112,97,114,101,110,116,32,119,105,116,104,32,97,32,110,111,110,45,114,101,109,111,118,101,100,32,115,105,98,108,105,110,103,46,92,110,32,32,105,102,32,40,110,111,100,101,46,108,101,110,103,116,104,41,32,119,104,105,108,101,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,114,105,103,104,116,32,61,32,120,32,62,61,32,40,120,109,32,61,32,40,120,48,32,43,32,120,49,41,32,47,32,50,41,41,32,120,48,32,61,32,120,109,59,32,101,108,115,101,32,120,49,32,61,32,120,109,59,92,110,32,32,32,32,105,102,32,40,98,111,116,116,111,109,32,61,32,121,32,62,61,32,40,121,109,32,61,32,40,121,48,32,43,32,121,49,41,32,47,32,50,41,41,32,121,48,32,61,32,121,109,59,32,101,108,115,101,32,121,49,32,61,32,121,109,59,92,110,32,32,32,32,105,102,32,40,33,40,112,97,114,101,110,116,32,61,32,110,111,100,101,44,32,110,111,100,101,32,61,32,110,111,100,101,91,105,32,61,32,98,111,116,116,111,109,32,60,60,32,49,32,124,32,114,105,103,104,116,93,41,41,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,105,102,32,40,33,110,111,100,101,46,108,101,110,103,116,104,41,32,98,114,101,97,107,59,92,110,32,32,32,32,105,102,32,40,112,97,114,101,110,116,91,40,105,32,43,32,49,41,32,38,32,51,93,32,124,124,32,112,97,114,101,110,116,91,40,105,32,43,32,50,41,32,38,32,51,93,32,124,124,32,112,97,114,101,110,116,91,40,105,32,43,32,51,41,32,38,32,51,93,41,32,114,101,116,97,105,110,101,114,32,61,32,112,97,114,101,110,116,44,32,106,32,61,32,105,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,70,105,110,100,32,116,104,101,32,112,111,105,110,116,32,116,111,32,114,101,109,111,118,101,46,92,110,32,32,119,104,105,108,101,32,40,110,111,100,101,46,100,97,116,97,32,33,61,61,32,100,41,32,105,102,32,40,33,40,112,114,101,118,105,111,117,115,32,61,32,110,111,100,101,44,32,110,111,100,101,32,61,32,110,111,100,101,46,110,101,120,116,41,41,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,105,102,32,40,110,101,120,116,32,61,32,110,111,100,101,46,110,101,120,116,41,32,100,101,108,101,116,101,32,110,111,100,101,46,110,101,120,116,59,92,110,92,110,32,32,47,47,32,73,102,32,116,104,101,114,101,32,97,114,101,32,109,117,108,116,105,112,108,101,32,99,111,105,110,99,105,100,101,110,116,32,112,111,105,110,116,115,44,32,114,101,109,111,118,101,32,106,117,115,116,32,116,104,101,32,112,111,105,110,116,46,92,110,32,32,105,102,32,40,112,114,101,118,105,111,117,115,41,32,114,101,116,117,114,110,32,40,110,101,120,116,32,63,32,112,114,101,118,105,111,117,115,46,110,101,120,116,32,61,32,110,101,120,116,32,58,32,100,101,108,101,116,101,32,112,114,101,118,105,111,117,115,46,110,101,120,116,41,44,32,116,104,105,115,59,92,110,92,110,32,32,47,47,32,73,102,32,116,104,105,115,32,105,115,32,116,104,101,32,114,111,111,116,32,112,111,105,110,116,44,32,114,101,109,111,118,101,32,105,116,46,92,110,32,32,105,102,32,40,33,112,97,114,101,110,116,41,32,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,111,116,32,61,32,110,101,120,116,44,32,116,104,105,115,59,92,110,92,110,32,32,47,47,32,82,101,109,111,118,101,32,116,104,105,115,32,108,101,97,102,46,92,110,32,32,110,101,120,116,32,63,32,112,97,114,101,110,116,91,105,93,32,61,32,110,101,120,116,32,58,32,100,101,108,101,116,101,32,112,97,114,101,110,116,91,105,93,59,92,110,92,110,32,32,47,47,32,73,102,32,116,104,101,32,112,97,114,101,110,116,32,110,111,119,32,99,111,110,116,97,105,110,115,32,101,120,97,99,116,108,121,32,111,110,101,32,108,101,97,102,44,32,99,111,108,108,97,112,115,101,32,115,117,112,101,114,102,108,117,111,117,115,32,112,97,114,101,110,116,115,46,92,110,32,32,105,102,32,40,40,110,111,100,101,32,61,32,112,97,114,101,110,116,91,48,93,32,124,124,32,112,97,114,101,110,116,91,49,93,32,124,124,32,112,97,114,101,110,116,91,50,93,32,124,124,32,112,97,114,101,110,116,91,51,93,41,92,110,32,32,32,32,32,32,38,38,32,110,111,100,101,32,61,61,61,32,40,112,97,114,101,110,116,91,51,93,32,124,124,32,112,97,114,101,110,116,91,50,93,32,124,124,32,112,97,114,101,110,116,91,49,93,32,124,124,32,112,97,114,101,110,116,91,48,93,41,92,110,32,32,32,32,32,32,38,38,32,33,110,111,100,101,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,105,102,32,40,114,101,116,97,105,110,101,114,41,32,114,101,116,97,105,110,101,114,91,106,93,32,61,32,110,111,100,101,59,92,110,32,32,32,32,101,108,115,101,32,116,104,105,115,46,95,114,111,111,116,32,61,32,110,111,100,101,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,65,108,108,40,100,97,116,97,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,100,97,116,97,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,116,104,105,115,46,114,101,109,111,118,101,40,100,97,116,97,91,105,93,41,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,114,101,109,111,118,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,114,111,111,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,114,111,111,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,111,116,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,114,111,111,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,115,105,122,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,115,105,122,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,115,105,122,101,32,61,32,48,59,92,110,32,32,116,104,105,115,46,118,105,115,105,116,40,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,110,111,100,101,46,108,101,110,103,116,104,41,32,100,111,32,43,43,115,105,122,101,59,32,119,104,105,108,101,32,40,110,111,100,101,32,61,32,110,111,100,101,46,110,101,120,116,41,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,115,105,122,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,115,105,122,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,118,105,115,105,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,118,105,115,105,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,113,117,97,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,113,117,97,100,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,118,97,114,32,113,117,97,100,115,32,61,32,91,93,44,32,113,44,32,110,111,100,101,32,61,32,116,104,105,115,46,95,114,111,111,116,44,32,99,104,105,108,100,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,59,92,110,32,32,105,102,32,40,110,111,100,101,41,32,113,117,97,100,115,46,112,117,115,104,40,110,101,119,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,110,111,100,101,44,32,116,104,105,115,46,95,120,48,44,32,116,104,105,115,46,95,121,48,44,32,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,121,49,41,41,59,92,110,32,32,119,104,105,108,101,32,40,113,32,61,32,113,117,97,100,115,46,112,111,112,40,41,41,32,123,92,110,32,32,32,32,105,102,32,40,33,99,97,108,108,98,97,99,107,40,110,111,100,101,32,61,32,113,46,110,111,100,101,44,32,120,48,32,61,32,113,46,120,48,44,32,121,48,32,61,32,113,46,121,48,44,32,120,49,32,61,32,113,46,120,49,44,32,121,49,32,61,32,113,46,121,49,41,32,38,38,32,110,111,100,101,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,120,109,32,61,32,40,120,48,32,43,32,120,49,41,32,47,32,50,44,32,121,109,32,61,32,40,121,48,32,43,32,121,49,41,32,47,32,50,59,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,32,61,32,110,111,100,101,91,51,93,41,32,113,117,97,100,115,46,112,117,115,104,40,110,101,119,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,99,104,105,108,100,44,32,120,109,44,32,121,109,44,32,120,49,44,32,121,49,41,41,59,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,32,61,32,110,111,100,101,91,50,93,41,32,113,117,97,100,115,46,112,117,115,104,40,110,101,119,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,99,104,105,108,100,44,32,120,48,44,32,121,109,44,32,120,109,44,32,121,49,41,41,59,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,32,61,32,110,111,100,101,91,49,93,41,32,113,117,97,100,115,46,112,117,115,104,40,110,101,119,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,99,104,105,108,100,44,32,120,109,44,32,121,48,44,32,120,49,44,32,121,109,41,41,59,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,32,61,32,110,111,100,101,91,48,93,41,32,113,117,97,100,115,46,112,117,115,104,40,110,101,119,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,99,104,105,108,100,44,32,120,48,44,32,121,48,44,32,120,109,44,32,121,109,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,118,105,115,105,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,118,105,115,105,116,65,102,116,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,118,105,115,105,116,65,102,116,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,113,117,97,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,113,117,97,100,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,118,97,114,32,113,117,97,100,115,32,61,32,91,93,44,32,110,101,120,116,32,61,32,91,93,44,32,113,59,92,110,32,32,105,102,32,40,116,104,105,115,46,95,114,111,111,116,41,32,113,117,97,100,115,46,112,117,115,104,40,110,101,119,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,116,104,105,115,46,95,114,111,111,116,44,32,116,104,105,115,46,95,120,48,44,32,116,104,105,115,46,95,121,48,44,32,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,121,49,41,41,59,92,110,32,32,119,104,105,108,101,32,40,113,32,61,32,113,117,97,100,115,46,112,111,112,40,41,41,32,123,92,110,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,113,46,110,111,100,101,59,92,110,32,32,32,32,105,102,32,40,110,111,100,101,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,44,32,120,48,32,61,32,113,46,120,48,44,32,121,48,32,61,32,113,46,121,48,44,32,120,49,32,61,32,113,46,120,49,44,32,121,49,32,61,32,113,46,121,49,44,32,120,109,32,61,32,40,120,48,32,43,32,120,49,41,32,47,32,50,44,32,121,109,32,61,32,40,121,48,32,43,32,121,49,41,32,47,32,50,59,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,32,61,32,110,111,100,101,91,48,93,41,32,113,117,97,100,115,46,112,117,115,104,40,110,101,119,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,99,104,105,108,100,44,32,120,48,44,32,121,48,44,32,120,109,44,32,121,109,41,41,59,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,32,61,32,110,111,100,101,91,49,93,41,32,113,117,97,100,115,46,112,117,115,104,40,110,101,119,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,99,104,105,108,100,44,32,120,109,44,32,121,48,44,32,120,49,44,32,121,109,41,41,59,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,32,61,32,110,111,100,101,91,50,93,41,32,113,117,97,100,115,46,112,117,115,104,40,110,101,119,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,99,104,105,108,100,44,32,120,48,44,32,121,109,44,32,120,109,44,32,121,49,41,41,59,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,32,61,32,110,111,100,101,91,51,93,41,32,113,117,97,100,115,46,112,117,115,104,40,110,101,119,32,95,113,117,97,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,99,104,105,108,100,44,32,120,109,44,32,121,109,44,32,120,49,44,32,121,49,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,110,101,120,116,46,112,117,115,104,40,113,41,59,92,110,32,32,125,92,110,32,32,119,104,105,108,101,32,40,113,32,61,32,110,101,120,116,46,112,111,112,40,41,41,32,123,92,110,32,32,32,32,99,97,108,108,98,97,99,107,40,113,46,110,111,100,101,44,32,113,46,120,48,44,32,113,46,121,48,44,32,113,46,120,49,44,32,113,46,121,49,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,118,105,115,105,116,65,102,116,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,101,102,97,117,108,116,88,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,88,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,91,48,93,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,95,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,104,105,115,46,95,120,32,61,32,95,44,32,116,104,105,115,41,32,58,32,116,104,105,115,46,95,120,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,101,102,97,117,108,116,89,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,89,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,91,49,93,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,95,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,104,105,115,46,95,121,32,61,32,95,44,32,116,104,105,115,41,32,58,32,116,104,105,115,46,95,121,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,98,97,116,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,98,97,116,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,102,97,117,108,116,83,111,117,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,102,97,117,108,116,83,111,117,114,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,100,101,102,97,117,108,116,83,111,117,114,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,114,119,105,110,72,97,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,114,119,105,110,72,97,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,105,114,119,105,110,72,97,108,108,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,115,111,117,114,99,101,82,97,110,100,111,109,66,97,116,101,115,40,115,111,117,114,99,101,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,114,97,110,100,111,109,66,97,116,101,115,40,110,41,32,123,92,110,32,32,32,32,118,97,114,32,114,97,110,100,111,109,73,114,119,105,110,72,97,108,108,32,61,32,95,105,114,119,105,110,72,97,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,115,111,117,114,99,101,40,115,111,117,114,99,101,41,40,110,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,97,110,100,111,109,73,114,119,105,110,72,97,108,108,40,41,32,47,32,110,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,114,97,110,100,111,109,66,97,116,101,115,46,115,111,117,114,99,101,32,61,32,115,111,117,114,99,101,82,97,110,100,111,109,66,97,116,101,115,59,92,110,92,110,32,32,114,101,116,117,114,110,32,114,97,110,100,111,109,66,97,116,101,115,59,92,110,125,41,40,95,100,101,102,97,117,108,116,83,111,117,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,98,97,116,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,100,101,102,97,117,108,116,83,111,117,114,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,100,101,102,97,117,108,116,83,111,117,114,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,114,97,110,100,111,109,40,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,100,101,102,97,117,108,116,83,111,117,114,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,101,120,112,111,110,101,110,116,105,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,101,120,112,111,110,101,110,116,105,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,102,97,117,108,116,83,111,117,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,102,97,117,108,116,83,111,117,114,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,100,101,102,97,117,108,116,83,111,117,114,99,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,115,111,117,114,99,101,82,97,110,100,111,109,69,120,112,111,110,101,110,116,105,97,108,40,115,111,117,114,99,101,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,114,97,110,100,111,109,69,120,112,111,110,101,110,116,105,97,108,40,108,97,109,98,100,97,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,45,77,97,116,104,46,108,111,103,40,49,32,45,32,115,111,117,114,99,101,40,41,41,32,47,32,108,97,109,98,100,97,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,114,97,110,100,111,109,69,120,112,111,110,101,110,116,105,97,108,46,115,111,117,114,99,101,32,61,32,115,111,117,114,99,101,82,97,110,100,111,109,69,120,112,111,110,101,110,116,105,97,108,59,92,110,92,110,32,32,114,101,116,117,114,110,32,114,97,110,100,111,109,69,120,112,111,110,101,110,116,105,97,108,59,92,110,125,41,40,95,100,101,102,97,117,108,116,83,111,117,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,101,120,112,111,110,101,110,116,105,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,110,100,111,109,66,97,116,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,97,116,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,110,100,111,109,69,120,112,111,110,101,110,116,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,101,120,112,111,110,101,110,116,105,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,110,100,111,109,73,114,119,105,110,72,97,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,114,119,105,110,72,97,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,110,100,111,109,76,111,103,78,111,114,109,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,111,103,78,111,114,109,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,110,100,111,109,78,111,114,109,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,114,109,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,110,100,111,109,85,110,105,102,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,110,105,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,110,105,102,111,114,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,117,110,105,102,111,114,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,117,110,105,102,111,114,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,114,109,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,114,109,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,110,111,114,109,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,111,103,78,111,114,109,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,111,103,78,111,114,109,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,108,111,103,78,111,114,109,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,116,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,97,116,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,98,97,116,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,114,119,105,110,72,97,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,114,119,105,110,72,97,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,105,114,119,105,110,72,97,108,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,120,112,111,110,101,110,116,105,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,120,112,111,110,101,110,116,105,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,101,120,112,111,110,101,110,116,105,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,105,114,119,105,110,72,97,108,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,105,114,119,105,110,72,97,108,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,102,97,117,108,116,83,111,117,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,102,97,117,108,116,83,111,117,114,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,100,101,102,97,117,108,116,83,111,117,114,99,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,115,111,117,114,99,101,82,97,110,100,111,109,73,114,119,105,110,72,97,108,108,40,115,111,117,114,99,101,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,114,97,110,100,111,109,73,114,119,105,110,72,97,108,108,40,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,115,117,109,32,61,32,48,44,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,115,117,109,32,43,61,32,115,111,117,114,99,101,40,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,117,109,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,114,97,110,100,111,109,73,114,119,105,110,72,97,108,108,46,115,111,117,114,99,101,32,61,32,115,111,117,114,99,101,82,97,110,100,111,109,73,114,119,105,110,72,97,108,108,59,92,110,92,110,32,32,114,101,116,117,114,110,32,114,97,110,100,111,109,73,114,119,105,110,72,97,108,108,59,92,110,125,41,40,95,100,101,102,97,117,108,116,83,111,117,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,105,114,119,105,110,72,97,108,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,108,111,103,78,111,114,109,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,108,111,103,78,111,114,109,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,102,97,117,108,116,83,111,117,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,102,97,117,108,116,83,111,117,114,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,100,101,102,97,117,108,116,83,111,117,114,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,114,109,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,114,109,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,110,111,114,109,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,115,111,117,114,99,101,82,97,110,100,111,109,76,111,103,78,111,114,109,97,108,40,115,111,117,114,99,101,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,114,97,110,100,111,109,76,111,103,78,111,114,109,97,108,40,41,32,123,92,110,32,32,32,32,118,97,114,32,114,97,110,100,111,109,78,111,114,109,97,108,32,61,32,95,110,111,114,109,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,115,111,117,114,99,101,40,115,111,117,114,99,101,41,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,101,120,112,40,114,97,110,100,111,109,78,111,114,109,97,108,40,41,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,114,97,110,100,111,109,76,111,103,78,111,114,109,97,108,46,115,111,117,114,99,101,32,61,32,115,111,117,114,99,101,82,97,110,100,111,109,76,111,103,78,111,114,109,97,108,59,92,110,92,110,32,32,114,101,116,117,114,110,32,114,97,110,100,111,109,76,111,103,78,111,114,109,97,108,59,92,110,125,41,40,95,100,101,102,97,117,108,116,83,111,117,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,108,111,103,78,111,114,109,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,110,111,114,109,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,110,111,114,109,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,102,97,117,108,116,83,111,117,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,102,97,117,108,116,83,111,117,114,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,100,101,102,97,117,108,116,83,111,117,114,99,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,115,111,117,114,99,101,82,97,110,100,111,109,78,111,114,109,97,108,40,115,111,117,114,99,101,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,114,97,110,100,111,109,78,111,114,109,97,108,40,109,117,44,32,115,105,103,109,97,41,32,123,92,110,32,32,32,32,118,97,114,32,120,44,32,114,59,92,110,32,32,32,32,109,117,32,61,32,109,117,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,43,109,117,59,92,110,32,32,32,32,115,105,103,109,97,32,61,32,115,105,103,109,97,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,43,115,105,103,109,97,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,121,59,92,110,92,110,32,32,32,32,32,32,47,47,32,73,102,32,97,118,97,105,108,97,98,108,101,44,32,117,115,101,32,116,104,101,32,115,101,99,111,110,100,32,112,114,101,118,105,111,117,115,108,121,45,103,101,110,101,114,97,116,101,100,32,117,110,105,102,111,114,109,32,114,97,110,100,111,109,46,92,110,32,32,32,32,32,32,105,102,32,40,120,32,33,61,32,110,117,108,108,41,32,121,32,61,32,120,44,32,120,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,103,101,110,101,114,97,116,101,32,97,32,110,101,119,32,120,32,97,110,100,32,121,46,92,110,32,32,32,32,32,32,101,108,115,101,32,100,111,32,123,92,110,32,32,32,32,32,32,32,32,120,32,61,32,115,111,117,114,99,101,40,41,32,42,32,50,32,45,32,49,59,92,110,32,32,32,32,32,32,32,32,121,32,61,32,115,111,117,114,99,101,40,41,32,42,32,50,32,45,32,49,59,92,110,32,32,32,32,32,32,32,32,114,32,61,32,120,32,42,32,120,32,43,32,121,32,42,32,121,59,92,110,32,32,32,32,32,32,125,32,119,104,105,108,101,32,40,33,114,32,124,124,32,114,32,62,32,49,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,117,32,43,32,115,105,103,109,97,32,42,32,121,32,42,32,77,97,116,104,46,115,113,114,116,40,45,50,32,42,32,77,97,116,104,46,108,111,103,40,114,41,32,47,32,114,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,114,97,110,100,111,109,78,111,114,109,97,108,46,115,111,117,114,99,101,32,61,32,115,111,117,114,99,101,82,97,110,100,111,109,78,111,114,109,97,108,59,92,110,92,110,32,32,114,101,116,117,114,110,32,114,97,110,100,111,109,78,111,114,109,97,108,59,92,110,125,41,40,95,100,101,102,97,117,108,116,83,111,117,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,110,111,114,109,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,117,110,105,102,111,114,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,117,110,105,102,111,114,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,102,97,117,108,116,83,111,117,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,102,97,117,108,116,83,111,117,114,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,100,101,102,97,117,108,116,83,111,117,114,99,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,115,111,117,114,99,101,82,97,110,100,111,109,85,110,105,102,111,114,109,40,115,111,117,114,99,101,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,114,97,110,100,111,109,85,110,105,102,111,114,109,40,109,105,110,44,32,109,97,120,41,32,123,92,110,32,32,32,32,109,105,110,32,61,32,109,105,110,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,43,109,105,110,59,92,110,32,32,32,32,109,97,120,32,61,32,109,97,120,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,43,109,97,120,59,92,110,32,32,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,61,61,61,32,49,41,32,109,97,120,32,61,32,109,105,110,44,32,109,105,110,32,61,32,48,59,92,110,32,32,32,32,101,108,115,101,32,109,97,120,32,45,61,32,109,105,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,111,117,114,99,101,40,41,32,42,32,109,97,120,32,43,32,109,105,110,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,114,97,110,100,111,109,85,110,105,102,111,114,109,46,115,111,117,114,99,101,32,61,32,115,111,117,114,99,101,82,97,110,100,111,109,85,110,105,102,111,114,109,59,92,110,92,110,32,32,114,101,116,117,114,110,32,114,97,110,100,111,109,85,110,105,102,111,114,109,59,92,110,125,41,40,95,100,101,102,97,117,108,116,83,111,117,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,117,110,105,102,111,114,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,65,99,99,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,65,99,99,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,55,102,99,57,55,102,98,101,97,101,100,52,102,100,99,48,56,54,102,102,102,102,57,57,51,56,54,99,98,48,102,48,48,50,55,102,98,102,53,98,49,55,54,54,54,54,54,54,92,34,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,65,99,99,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,68,97,114,107,50,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,68,97,114,107,50,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,49,98,57,101,55,55,100,57,53,102,48,50,55,53,55,48,98,51,101,55,50,57,56,97,54,54,97,54,49,101,101,54,97,98,48,50,97,54,55,54,49,100,54,54,54,54,54,54,92,34,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,68,97,114,107,50,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,80,97,105,114,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,80,97,105,114,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,97,54,99,101,101,51,49,102,55,56,98,52,98,50,100,102,56,97,51,51,97,48,50,99,102,98,57,97,57,57,101,51,49,97,49,99,102,100,98,102,54,102,102,102,55,102,48,48,99,97,98,50,100,54,54,97,51,100,57,97,102,102,102,102,57,57,98,49,53,57,50,56,92,34,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,80,97,105,114,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,80,97,115,116,101,108,49,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,80,97,115,116,101,108,49,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,102,98,98,52,97,101,98,51,99,100,101,51,99,99,101,98,99,53,100,101,99,98,101,52,102,101,100,57,97,54,102,102,102,102,99,99,101,53,100,56,98,100,102,100,100,97,101,99,102,50,102,50,102,50,92,34,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,80,97,115,116,101,108,49,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,80,97,115,116,101,108,50,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,80,97,115,116,101,108,50,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,98,51,101,50,99,100,102,100,99,100,97,99,99,98,100,53,101,56,102,52,99,97,101,52,101,54,102,53,99,57,102,102,102,50,97,101,102,49,101,50,99,99,99,99,99,99,99,99,92,34,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,80,97,115,116,101,108,50,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,83,101,116,49,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,83,101,116,49,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,101,52,49,97,49,99,51,55,55,101,98,56,52,100,97,102,52,97,57,56,52,101,97,51,102,102,55,102,48,48,102,102,102,102,51,51,97,54,53,54,50,56,102,55,56,49,98,102,57,57,57,57,57,57,92,34,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,83,101,116,49,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,83,101,116,50,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,83,101,116,50,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,54,54,99,50,97,53,102,99,56,100,54,50,56,100,97,48,99,98,101,55,56,97,99,51,97,54,100,56,53,52,102,102,100,57,50,102,101,53,99,52,57,52,98,51,98,51,98,51,92,34,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,83,101,116,50,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,83,101,116,51,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,83,101,116,51,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,56,100,100,51,99,55,102,102,102,102,98,51,98,101,98,97,100,97,102,98,56,48,55,50,56,48,98,49,100,51,102,100,98,52,54,50,98,51,100,101,54,57,102,99,99,100,101,53,100,57,100,57,100,57,98,99,56,48,98,100,99,99,101,98,99,53,102,102,101,100,54,102,92,34,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,83,101,116,51,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,84,97,98,108,101,97,117,49,48,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,84,97,98,108,101,97,117,49,48,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,52,101,55,57,97,55,102,50,56,101,50,99,101,49,53,55,53,57,55,54,98,55,98,50,53,57,97,49,52,102,101,100,99,57,52,57,97,102,55,97,97,49,102,102,57,100,97,55,57,99,55,53,53,102,98,97,98,48,97,98,92,34,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,84,97,98,108,101,97,117,49,48,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,99,97,116,101,103,111,114,121,49,48,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,99,97,116,101,103,111,114,121,49,48,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,49,102,55,55,98,52,102,102,55,102,48,101,50,99,97,48,50,99,100,54,50,55,50,56,57,52,54,55,98,100,56,99,53,54,52,98,101,51,55,55,99,50,55,102,55,102,55,102,98,99,98,100,50,50,49,55,98,101,99,102,92,34,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,99,97,116,101,103,111,114,121,49,48,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,112,101,99,105,102,105,101,114,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,115,112,101,99,105,102,105,101,114,46,108,101,110,103,116,104,32,47,32,54,32,124,32,48,44,32,99,111,108,111,114,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,32,105,32,61,32,48,59,92,110,32,32,119,104,105,108,101,32,40,105,32,60,32,110,41,32,99,111,108,111,114,115,91,105,93,32,61,32,92,34,35,92,34,32,43,32,115,112,101,99,105,102,105,101,114,46,115,108,105,99,101,40,105,32,42,32,54,44,32,43,43,105,32,42,32,54,41,59,92,110,32,32,114,101,116,117,114,110,32,99,111,108,111,114,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,66,114,66,71,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,66,114,66,71,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,100,56,98,51,54,53,102,53,102,53,102,53,53,97,98,52,97,99,92,34,44,92,110,32,32,92,34,97,54,54,49,49,97,100,102,99,50,55,100,56,48,99,100,99,49,48,49,56,53,55,49,92,34,44,92,110,32,32,92,34,97,54,54,49,49,97,100,102,99,50,55,100,102,53,102,53,102,53,56,48,99,100,99,49,48,49,56,53,55,49,92,34,44,92,110,32,32,92,34,56,99,53,49,48,97,100,56,98,51,54,53,102,54,101,56,99,51,99,55,101,97,101,53,53,97,98,52,97,99,48,49,54,54,53,101,92,34,44,92,110,32,32,92,34,56,99,53,49,48,97,100,56,98,51,54,53,102,54,101,56,99,51,102,53,102,53,102,53,99,55,101,97,101,53,53,97,98,52,97,99,48,49,54,54,53,101,92,34,44,92,110,32,32,92,34,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,92,34,44,92,110,32,32,92,34,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,102,53,102,53,102,53,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,92,34,44,92,110,32,32,92,34,53,52,51,48,48,53,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,48,48,51,99,51,48,92,34,44,92,110,32,32,92,34,53,52,51,48,48,53,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,102,53,102,53,102,53,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,48,48,51,99,51,48,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,66,114,66,71,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,80,82,71,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,80,82,71,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,97,102,56,100,99,51,102,55,102,55,102,55,55,102,98,102,55,98,92,34,44,92,110,32,32,92,34,55,98,51,50,57,52,99,50,97,53,99,102,97,54,100,98,97,48,48,48,56,56,51,55,92,34,44,92,110,32,32,92,34,55,98,51,50,57,52,99,50,97,53,99,102,102,55,102,55,102,55,97,54,100,98,97,48,48,48,56,56,51,55,92,34,44,92,110,32,32,92,34,55,54,50,97,56,51,97,102,56,100,99,51,101,55,100,52,101,56,100,57,102,48,100,51,55,102,98,102,55,98,49,98,55,56,51,55,92,34,44,92,110,32,32,92,34,55,54,50,97,56,51,97,102,56,100,99,51,101,55,100,52,101,56,102,55,102,55,102,55,100,57,102,48,100,51,55,102,98,102,55,98,49,98,55,56,51,55,92,34,44,92,110,32,32,92,34,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,92,34,44,92,110,32,32,92,34,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,102,55,102,55,102,55,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,92,34,44,92,110,32,32,92,34,52,48,48,48,52,98,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,48,48,52,52,49,98,92,34,44,92,110,32,32,92,34,52,48,48,48,52,98,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,102,55,102,55,102,55,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,48,48,52,52,49,98,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,80,82,71,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,80,105,89,71,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,80,105,89,71,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,101,57,97,51,99,57,102,55,102,55,102,55,97,49,100,55,54,97,92,34,44,92,110,32,32,92,34,100,48,49,99,56,98,102,49,98,54,100,97,98,56,101,49,56,54,52,100,97,99,50,54,92,34,44,92,110,32,32,92,34,100,48,49,99,56,98,102,49,98,54,100,97,102,55,102,55,102,55,98,56,101,49,56,54,52,100,97,99,50,54,92,34,44,92,110,32,32,92,34,99,53,49,98,55,100,101,57,97,51,99,57,102,100,101,48,101,102,101,54,102,53,100,48,97,49,100,55,54,97,52,100,57,50,50,49,92,34,44,92,110,32,32,92,34,99,53,49,98,55,100,101,57,97,51,99,57,102,100,101,48,101,102,102,55,102,55,102,55,101,54,102,53,100,48,97,49,100,55,54,97,52,100,57,50,50,49,92,34,44,92,110,32,32,92,34,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,92,34,44,92,110,32,32,92,34,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,102,55,102,55,102,55,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,92,34,44,92,110,32,32,92,34,56,101,48,49,53,50,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,50,55,54,52,49,57,92,34,44,92,110,32,32,92,34,56,101,48,49,53,50,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,102,55,102,55,102,55,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,50,55,54,52,49,57,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,80,105,89,71,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,80,117,79,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,80,117,79,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,57,57,56,101,99,51,102,55,102,55,102,55,102,49,97,51,52,48,92,34,44,92,110,32,32,92,34,53,101,51,99,57,57,98,50,97,98,100,50,102,100,98,56,54,51,101,54,54,49,48,49,92,34,44,92,110,32,32,92,34,53,101,51,99,57,57,98,50,97,98,100,50,102,55,102,55,102,55,102,100,98,56,54,51,101,54,54,49,48,49,92,34,44,92,110,32,32,92,34,53,52,50,55,56,56,57,57,56,101,99,51,100,56,100,97,101,98,102,101,101,48,98,54,102,49,97,51,52,48,98,51,53,56,48,54,92,34,44,92,110,32,32,92,34,53,52,50,55,56,56,57,57,56,101,99,51,100,56,100,97,101,98,102,55,102,55,102,55,102,101,101,48,98,54,102,49,97,51,52,48,98,51,53,56,48,54,92,34,44,92,110,32,32,92,34,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,92,34,44,92,110,32,32,92,34,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,55,102,55,102,55,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,92,34,44,92,110,32,32,92,34,50,100,48,48,52,98,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,55,102,51,98,48,56,92,34,44,92,110,32,32,92,34,50,100,48,48,52,98,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,55,102,55,102,55,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,55,102,51,98,48,56,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,80,117,79,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,66,117,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,66,117,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,101,102,56,97,54,50,102,55,102,55,102,55,54,55,97,57,99,102,92,34,44,92,110,32,32,92,34,99,97,48,48,50,48,102,52,97,53,56,50,57,50,99,53,100,101,48,53,55,49,98,48,92,34,44,92,110,32,32,92,34,99,97,48,48,50,48,102,52,97,53,56,50,102,55,102,55,102,55,57,50,99,53,100,101,48,53,55,49,98,48,92,34,44,92,110,32,32,92,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,100,49,101,53,102,48,54,55,97,57,99,102,50,49,54,54,97,99,92,34,44,92,110,32,32,92,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,102,55,102,55,102,55,100,49,101,53,102,48,54,55,97,57,99,102,50,49,54,54,97,99,92,34,44,92,110,32,32,92,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,92,34,44,92,110,32,32,92,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,55,102,55,102,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,92,34,44,92,110,32,32,92,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,48,53,51,48,54,49,92,34,44,92,110,32,32,92,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,55,102,55,102,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,48,53,51,48,54,49,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,66,117,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,71,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,71,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,101,102,56,97,54,50,102,102,102,102,102,102,57,57,57,57,57,57,92,34,44,92,110,32,32,92,34,99,97,48,48,50,48,102,52,97,53,56,50,98,97,98,97,98,97,52,48,52,48,52,48,92,34,44,92,110,32,32,92,34,99,97,48,48,50,48,102,52,97,53,56,50,102,102,102,102,102,102,98,97,98,97,98,97,52,48,52,48,52,48,92,34,44,92,110,32,32,92,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,101,48,101,48,101,48,57,57,57,57,57,57,52,100,52,100,52,100,92,34,44,92,110,32,32,92,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,102,102,102,102,102,102,101,48,101,48,101,48,57,57,57,57,57,57,52,100,52,100,52,100,92,34,44,92,110,32,32,92,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,92,34,44,92,110,32,32,92,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,102,102,102,102,102,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,92,34,44,92,110,32,32,92,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,49,97,49,97,49,97,92,34,44,92,110,32,32,92,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,102,102,102,102,102,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,49,97,49,97,49,97,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,71,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,89,108,66,117,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,89,108,66,117,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,102,99,56,100,53,57,102,102,102,102,98,102,57,49,98,102,100,98,92,34,44,92,110,32,32,92,34,100,55,49,57,49,99,102,100,97,101,54,49,97,98,100,57,101,57,50,99,55,98,98,54,92,34,44,92,110,32,32,92,34,100,55,49,57,49,99,102,100,97,101,54,49,102,102,102,102,98,102,97,98,100,57,101,57,50,99,55,98,98,54,92,34,44,92,110,32,32,92,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,57,48,101,48,102,51,102,56,57,49,98,102,100,98,52,53,55,53,98,52,92,34,44,92,110,32,32,92,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,57,48,102,102,102,102,98,102,101,48,102,51,102,56,57,49,98,102,100,98,52,53,55,53,98,52,92,34,44,92,110,32,32,92,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,92,34,44,92,110,32,32,92,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,102,102,102,102,98,102,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,92,34,44,92,110,32,32,92,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,51,49,51,54,57,53,92,34,44,92,110,32,32,92,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,102,102,102,102,98,102,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,51,49,51,54,57,53,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,89,108,66,117,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,89,108,71,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,89,108,71,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,102,99,56,100,53,57,102,102,102,102,98,102,57,49,99,102,54,48,92,34,44,92,110,32,32,92,34,100,55,49,57,49,99,102,100,97,101,54,49,97,54,100,57,54,97,49,97,57,54,52,49,92,34,44,92,110,32,32,92,34,100,55,49,57,49,99,102,100,97,101,54,49,102,102,102,102,98,102,97,54,100,57,54,97,49,97,57,54,52,49,92,34,44,92,110,32,32,92,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,56,98,100,57,101,102,56,98,57,49,99,102,54,48,49,97,57,56,53,48,92,34,44,92,110,32,32,92,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,56,98,102,102,102,102,98,102,100,57,101,102,56,98,57,49,99,102,54,48,49,97,57,56,53,48,92,34,44,92,110,32,32,92,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,92,34,44,92,110,32,32,92,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,92,34,44,92,110,32,32,92,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,48,48,54,56,51,55,92,34,44,92,110,32,32,92,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,48,48,54,56,51,55,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,89,108,71,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,83,112,101,99,116,114,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,83,112,101,99,116,114,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,102,99,56,100,53,57,102,102,102,102,98,102,57,57,100,53,57,52,92,34,44,92,110,32,32,92,34,100,55,49,57,49,99,102,100,97,101,54,49,97,98,100,100,97,52,50,98,56,51,98,97,92,34,44,92,110,32,32,92,34,100,55,49,57,49,99,102,100,97,101,54,49,102,102,102,102,98,102,97,98,100,100,97,52,50,98,56,51,98,97,92,34,44,92,110,32,32,92,34,100,53,51,101,52,102,102,99,56,100,53,57,102,101,101,48,56,98,101,54,102,53,57,56,57,57,100,53,57,52,51,50,56,56,98,100,92,34,44,92,110,32,32,92,34,100,53,51,101,52,102,102,99,56,100,53,57,102,101,101,48,56,98,102,102,102,102,98,102,101,54,102,53,57,56,57,57,100,53,57,52,51,50,56,56,98,100,92,34,44,92,110,32,32,92,34,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,92,34,44,92,110,32,32,92,34,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,92,34,44,92,110,32,32,92,34,57,101,48,49,52,50,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,53,101,52,102,97,50,92,34,44,92,110,32,32,92,34,57,101,48,49,52,50,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,53,101,52,102,97,50,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,83,112,101,99,116,114,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,66,108,117,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,66,108,117,101,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,66,114,66,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,66,114,66,71,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,66,117,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,66,117,71,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,66,117,80,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,66,117,80,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,67,105,118,105,100,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,99,105,118,105,100,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,67,111,111,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,114,97,105,110,98,111,119,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,57,95,95,46,99,111,111,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,68,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,99,117,98,101,104,101,108,105,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,71,110,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,71,110,66,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,71,114,101,101,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,71,114,101,101,110,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,71,114,101,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,71,114,101,121,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,73,110,102,101,114,110,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,118,105,114,105,100,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,50,95,95,46,105,110,102,101,114,110,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,77,97,103,109,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,118,105,114,105,100,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,50,95,95,46,109,97,103,109,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,79,114,82,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,79,114,82,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,79,114,97,110,103,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,79,114,97,110,103,101,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,82,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,80,82,71,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,105,89,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,80,105,89,71,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,108,97,115,109,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,118,105,114,105,100,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,50,95,95,46,112,108,97,115,109,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,80,117,66,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,80,117,66,117,71,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,117,79,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,80,117,79,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,117,82,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,80,117,82,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,117,114,112,108,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,80,117,114,112,108,101,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,97,105,110,98,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,114,97,105,110,98,111,119,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,100,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,82,100,66,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,100,71,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,82,100,71,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,100,80,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,82,100,80,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,100,89,108,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,82,100,89,108,66,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,100,89,108,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,82,100,89,108,71,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,101,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,82,101,100,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,83,105,110,101,98,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,115,105,110,101,98,111,119,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,83,112,101,99,116,114,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,83,112,101,99,116,114,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,84,117,114,98,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,116,117,114,98,111,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,86,105,114,105,100,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,118,105,114,105,100,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,87,97,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,114,97,105,110,98,111,119,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,57,95,95,46,119,97,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,89,108,71,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,89,108,71,110,66,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,66,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,89,108,79,114,66,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,82,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,89,108,79,114,82,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,65,99,99,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,116,101,103,111,114,105,99,97,108,95,65,99,99,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,66,108,117,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,66,108,117,101,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,66,114,66,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,66,114,66,71,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,66,117,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,66,117,71,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,66,117,80,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,66,117,80,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,67,97,116,101,103,111,114,121,49,48,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,116,101,103,111,114,105,99,97,108,95,99,97,116,101,103,111,114,121,49,48,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,68,97,114,107,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,116,101,103,111,114,105,99,97,108,95,68,97,114,107,50,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,71,110,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,71,110,66,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,71,114,101,101,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,71,114,101,101,110,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,50,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,71,114,101,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,71,114,101,121,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,51,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,79,114,82,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,79,114,82,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,79,114,97,110,103,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,79,114,97,110,103,101,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,54,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,82,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,80,82,71,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,97,105,114,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,116,101,103,111,114,105,99,97,108,95,80,97,105,114,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,97,115,116,101,108,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,116,101,103,111,114,105,99,97,108,95,80,97,115,116,101,108,49,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,97,115,116,101,108,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,116,101,103,111,114,105,99,97,108,95,80,97,115,116,101,108,50,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,105,89,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,80,105,89,71,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,117,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,80,117,66,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,117,66,117,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,80,117,66,117,71,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,117,79,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,80,117,79,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,117,82,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,80,117,82,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,117,114,112,108,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,80,117,114,112,108,101,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,52,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,82,100,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,82,100,66,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,82,100,71,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,82,100,71,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,82,100,80,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,82,100,80,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,82,100,89,108,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,82,100,89,108,66,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,82,100,89,108,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,82,100,89,108,71,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,82,101,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,82,101,100,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,53,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,83,101,116,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,116,101,103,111,114,105,99,97,108,95,83,101,116,49,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,83,101,116,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,116,101,103,111,114,105,99,97,108,95,83,101,116,50,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,83,101,116,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,116,101,103,111,114,105,99,97,108,95,83,101,116,51,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,83,112,101,99,116,114,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,83,112,101,99,116,114,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,84,97,98,108,101,97,117,49,48,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,97,116,101,103,111,114,105,99,97,108,95,84,97,98,108,101,97,117,49,48,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,89,108,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,89,108,71,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,89,108,71,110,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,89,108,71,110,66,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,89,108,79,114,66,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,89,108,79,114,66,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,46,115,99,104,101,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,89,108,79,114,82,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,89,108,79,114,82,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,46,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,116,101,103,111,114,105,99,97,108,95,99,97,116,101,103,111,114,121,49,48,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,116,101,103,111,114,105,99,97,108,47,99,97,116,101,103,111,114,121,49,48,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,99,97,116,101,103,111,114,121,49,48,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,116,101,103,111,114,105,99,97,108,95,65,99,99,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,116,101,103,111,114,105,99,97,108,47,65,99,99,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,65,99,99,101,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,116,101,103,111,114,105,99,97,108,95,68,97,114,107,50,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,116,101,103,111,114,105,99,97,108,47,68,97,114,107,50,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,68,97,114,107,50,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,116,101,103,111,114,105,99,97,108,95,80,97,105,114,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,116,101,103,111,114,105,99,97,108,47,80,97,105,114,101,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,80,97,105,114,101,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,116,101,103,111,114,105,99,97,108,95,80,97,115,116,101,108,49,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,116,101,103,111,114,105,99,97,108,47,80,97,115,116,101,108,49,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,80,97,115,116,101,108,49,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,116,101,103,111,114,105,99,97,108,95,80,97,115,116,101,108,50,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,116,101,103,111,114,105,99,97,108,47,80,97,115,116,101,108,50,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,80,97,115,116,101,108,50,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,116,101,103,111,114,105,99,97,108,95,83,101,116,49,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,116,101,103,111,114,105,99,97,108,47,83,101,116,49,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,83,101,116,49,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,116,101,103,111,114,105,99,97,108,95,83,101,116,50,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,116,101,103,111,114,105,99,97,108,47,83,101,116,50,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,83,101,116,50,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,116,101,103,111,114,105,99,97,108,95,83,101,116,51,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,116,101,103,111,114,105,99,97,108,47,83,101,116,51,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,83,101,116,51,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,116,101,103,111,114,105,99,97,108,95,84,97,98,108,101,97,117,49,48,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,116,101,103,111,114,105,99,97,108,47,84,97,98,108,101,97,117,49,48,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,97,116,101,103,111,114,105,99,97,108,47,84,97,98,108,101,97,117,49,48,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,118,101,114,103,105,110,103,95,66,114,66,71,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,118,101,114,103,105,110,103,47,66,114,66,71,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,66,114,66,71,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,118,101,114,103,105,110,103,95,80,82,71,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,118,101,114,103,105,110,103,47,80,82,71,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,80,82,71,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,118,101,114,103,105,110,103,95,80,105,89,71,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,118,101,114,103,105,110,103,47,80,105,89,71,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,80,105,89,71,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,118,101,114,103,105,110,103,95,80,117,79,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,118,101,114,103,105,110,103,47,80,117,79,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,80,117,79,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,118,101,114,103,105,110,103,95,82,100,66,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,118,101,114,103,105,110,103,47,82,100,66,117,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,66,117,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,118,101,114,103,105,110,103,95,82,100,71,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,118,101,114,103,105,110,103,47,82,100,71,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,71,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,118,101,114,103,105,110,103,95,82,100,89,108,66,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,118,101,114,103,105,110,103,47,82,100,89,108,66,117,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,89,108,66,117,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,118,101,114,103,105,110,103,95,82,100,89,108,71,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,118,101,114,103,105,110,103,47,82,100,89,108,71,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,82,100,89,108,71,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,118,101,114,103,105,110,103,95,83,112,101,99,116,114,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,118,101,114,103,105,110,103,47,83,112,101,99,116,114,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,100,105,118,101,114,103,105,110,103,47,83,112,101,99,116,114,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,66,117,71,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,66,117,71,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,66,117,71,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,66,117,80,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,66,117,80,117,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,66,117,80,117,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,71,110,66,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,71,110,66,117,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,71,110,66,117,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,79,114,82,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,79,114,82,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,79,114,82,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,80,117,66,117,71,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,80,117,66,117,71,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,80,117,66,117,71,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,80,117,66,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,80,117,66,117,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,80,117,66,117,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,80,117,82,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,80,117,82,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,80,117,82,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,82,100,80,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,82,100,80,117,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,82,100,80,117,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,89,108,71,110,66,117,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,71,110,66,117,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,71,110,66,117,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,89,108,71,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,71,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,71,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,89,108,79,114,66,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,79,114,66,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,79,114,66,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,89,108,79,114,82,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,79,114,82,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,79,114,82,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,66,108,117,101,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,66,108,117,101,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,66,108,117,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,71,114,101,101,110,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,71,114,101,101,110,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,71,114,101,101,110,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,71,114,101,121,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,71,114,101,121,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,71,114,101,121,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,80,117,114,112,108,101,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,80,117,114,112,108,101,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,80,117,114,112,108,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,82,101,100,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,82,101,100,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,82,101,100,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,115,105,110,103,108,101,95,79,114,97,110,103,101,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,79,114,97,110,103,101,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,79,114,97,110,103,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,99,105,118,105,100,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,99,105,118,105,100,105,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,99,105,118,105,100,105,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,99,117,98,101,104,101,108,105,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,99,117,98,101,104,101,108,105,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,99,117,98,101,104,101,108,105,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,114,97,105,110,98,111,119,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,114,97,105,110,98,111,119,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,114,97,105,110,98,111,119,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,115,105,110,101,98,111,119,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,115,105,110,101,98,111,119,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,115,105,110,101,98,111,119,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,116,117,114,98,111,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,116,117,114,98,111,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,116,117,114,98,111,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,109,117,108,116,105,95,118,105,114,105,100,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,118,105,114,105,100,105,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,118,105,114,105,100,105,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,105,110,116,101,114,112,111,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,114,103,98,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,99,104,101,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,103,98,66,97,115,105,115,41,40,115,99,104,101,109,101,91,115,99,104,101,109,101,46,108,101,110,103,116,104,32,45,32,49,93,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,66,117,71,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,66,117,71,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,101,53,102,53,102,57,57,57,100,56,99,57,50,99,97,50,53,102,92,34,44,92,110,32,32,92,34,101,100,102,56,102,98,98,50,101,50,101,50,54,54,99,50,97,52,50,51,56,98,52,53,92,34,44,92,110,32,32,92,34,101,100,102,56,102,98,98,50,101,50,101,50,54,54,99,50,97,52,50,99,97,50,53,102,48,48,54,100,50,99,92,34,44,92,110,32,32,92,34,101,100,102,56,102,98,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,50,99,97,50,53,102,48,48,54,100,50,99,92,34,44,92,110,32,32,92,34,101,100,102,56,102,98,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,52,49,97,101,55,54,50,51,56,98,52,53,48,48,53,56,50,52,92,34,44,92,110,32,32,92,34,102,55,102,99,102,100,101,53,102,53,102,57,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,52,49,97,101,55,54,50,51,56,98,52,53,48,48,53,56,50,52,92,34,44,92,110,32,32,92,34,102,55,102,99,102,100,101,53,102,53,102,57,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,52,49,97,101,55,54,50,51,56,98,52,53,48,48,54,100,50,99,48,48,52,52,49,98,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,66,117,71,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,66,117,80,117,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,66,117,80,117,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,101,48,101,99,102,52,57,101,98,99,100,97,56,56,53,54,97,55,92,34,44,92,110,32,32,92,34,101,100,102,56,102,98,98,51,99,100,101,51,56,99,57,54,99,54,56,56,52,49,57,100,92,34,44,92,110,32,32,92,34,101,100,102,56,102,98,98,51,99,100,101,51,56,99,57,54,99,54,56,56,53,54,97,55,56,49,48,102,55,99,92,34,44,92,110,32,32,92,34,101,100,102,56,102,98,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,56,53,54,97,55,56,49,48,102,55,99,92,34,44,92,110,32,32,92,34,101,100,102,56,102,98,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,99,54,98,98,49,56,56,52,49,57,100,54,101,48,49,54,98,92,34,44,92,110,32,32,92,34,102,55,102,99,102,100,101,48,101,99,102,52,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,99,54,98,98,49,56,56,52,49,57,100,54,101,48,49,54,98,92,34,44,92,110,32,32,92,34,102,55,102,99,102,100,101,48,101,99,102,52,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,99,54,98,98,49,56,56,52,49,57,100,56,49,48,102,55,99,52,100,48,48,52,98,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,66,117,80,117,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,71,110,66,117,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,71,110,66,117,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,101,48,102,51,100,98,97,56,100,100,98,53,52,51,97,50,99,97,92,34,44,92,110,32,32,92,34,102,48,102,57,101,56,98,97,101,52,98,99,55,98,99,99,99,52,50,98,56,99,98,101,92,34,44,92,110,32,32,92,34,102,48,102,57,101,56,98,97,101,52,98,99,55,98,99,99,99,52,52,51,97,50,99,97,48,56,54,56,97,99,92,34,44,92,110,32,32,92,34,102,48,102,57,101,56,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,51,97,50,99,97,48,56,54,56,97,99,92,34,44,92,110,32,32,92,34,102,48,102,57,101,56,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,101,98,51,100,51,50,98,56,99,98,101,48,56,53,56,57,101,92,34,44,92,110,32,32,92,34,102,55,102,99,102,48,101,48,102,51,100,98,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,101,98,51,100,51,50,98,56,99,98,101,48,56,53,56,57,101,92,34,44,92,110,32,32,92,34,102,55,102,99,102,48,101,48,102,51,100,98,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,101,98,51,100,51,50,98,56,99,98,101,48,56,54,56,97,99,48,56,52,48,56,49,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,71,110,66,117,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,79,114,82,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,79,114,82,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,102,101,101,56,99,56,102,100,98,98,56,52,101,51,52,97,51,51,92,34,44,92,110,32,32,92,34,102,101,102,48,100,57,102,100,99,99,56,97,102,99,56,100,53,57,100,55,51,48,49,102,92,34,44,92,110,32,32,92,34,102,101,102,48,100,57,102,100,99,99,56,97,102,99,56,100,53,57,101,51,52,97,51,51,98,51,48,48,48,48,92,34,44,92,110,32,32,92,34,102,101,102,48,100,57,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,51,52,97,51,51,98,51,48,48,48,48,92,34,44,92,110,32,32,92,34,102,101,102,48,100,57,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,102,54,53,52,56,100,55,51,48,49,102,57,57,48,48,48,48,92,34,44,92,110,32,32,92,34,102,102,102,55,101,99,102,101,101,56,99,56,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,102,54,53,52,56,100,55,51,48,49,102,57,57,48,48,48,48,92,34,44,92,110,32,32,92,34,102,102,102,55,101,99,102,101,101,56,99,56,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,102,54,53,52,56,100,55,51,48,49,102,98,51,48,48,48,48,55,102,48,48,48,48,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,79,114,82,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,80,117,66,117,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,80,117,66,117,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,101,99,101,55,102,50,97,54,98,100,100,98,50,98,56,99,98,101,92,34,44,92,110,32,32,92,34,102,49,101,101,102,54,98,100,99,57,101,49,55,52,97,57,99,102,48,53,55,48,98,48,92,34,44,92,110,32,32,92,34,102,49,101,101,102,54,98,100,99,57,101,49,55,52,97,57,99,102,50,98,56,99,98,101,48,52,53,97,56,100,92,34,44,92,110,32,32,92,34,102,49,101,101,102,54,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,50,98,56,99,98,101,48,52,53,97,56,100,92,34,44,92,110,32,32,92,34,102,49,101,101,102,54,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,51,54,57,48,99,48,48,53,55,48,98,48,48,51,52,101,55,98,92,34,44,92,110,32,32,92,34,102,102,102,55,102,98,101,99,101,55,102,50,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,51,54,57,48,99,48,48,53,55,48,98,48,48,51,52,101,55,98,92,34,44,92,110,32,32,92,34,102,102,102,55,102,98,101,99,101,55,102,50,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,51,54,57,48,99,48,48,53,55,48,98,48,48,52,53,97,56,100,48,50,51,56,53,56,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,80,117,66,117,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,80,117,66,117,71,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,80,117,66,117,71,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,101,99,101,50,102,48,97,54,98,100,100,98,49,99,57,48,57,57,92,34,44,92,110,32,32,92,34,102,54,101,102,102,55,98,100,99,57,101,49,54,55,97,57,99,102,48,50,56,49,56,97,92,34,44,92,110,32,32,92,34,102,54,101,102,102,55,98,100,99,57,101,49,54,55,97,57,99,102,49,99,57,48,57,57,48,49,54,99,53,57,92,34,44,92,110,32,32,92,34,102,54,101,102,102,55,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,49,99,57,48,57,57,48,49,54,99,53,57,92,34,44,92,110,32,32,92,34,102,54,101,102,102,55,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,51,54,57,48,99,48,48,50,56,49,56,97,48,49,54,52,53,48,92,34,44,92,110,32,32,92,34,102,102,102,55,102,98,101,99,101,50,102,48,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,51,54,57,48,99,48,48,50,56,49,56,97,48,49,54,52,53,48,92,34,44,92,110,32,32,92,34,102,102,102,55,102,98,101,99,101,50,102,48,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,51,54,57,48,99,48,48,50,56,49,56,97,48,49,54,99,53,57,48,49,52,54,51,54,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,80,117,66,117,71,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,80,117,82,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,80,117,82,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,101,55,101,49,101,102,99,57,57,52,99,55,100,100,49,99,55,55,92,34,44,92,110,32,32,92,34,102,49,101,101,102,54,100,55,98,53,100,56,100,102,54,53,98,48,99,101,49,50,53,54,92,34,44,92,110,32,32,92,34,102,49,101,101,102,54,100,55,98,53,100,56,100,102,54,53,98,48,100,100,49,99,55,55,57,56,48,48,52,51,92,34,44,92,110,32,32,92,34,102,49,101,101,102,54,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,100,100,49,99,55,55,57,56,48,48,52,51,92,34,44,92,110,32,32,92,34,102,49,101,101,102,54,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,101,55,50,57,56,97,99,101,49,50,53,54,57,49,48,48,51,102,92,34,44,92,110,32,32,92,34,102,55,102,52,102,57,101,55,101,49,101,102,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,101,55,50,57,56,97,99,101,49,50,53,54,57,49,48,48,51,102,92,34,44,92,110,32,32,92,34,102,55,102,52,102,57,101,55,101,49,101,102,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,101,55,50,57,56,97,99,101,49,50,53,54,57,56,48,48,52,51,54,55,48,48,49,102,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,80,117,82,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,82,100,80,117,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,82,100,80,117,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,102,100,101,48,100,100,102,97,57,102,98,53,99,53,49,98,56,97,92,34,44,92,110,32,32,92,34,102,101,101,98,101,50,102,98,98,52,98,57,102,55,54,56,97,49,97,101,48,49,55,101,92,34,44,92,110,32,32,92,34,102,101,101,98,101,50,102,98,98,52,98,57,102,55,54,56,97,49,99,53,49,98,56,97,55,97,48,49,55,55,92,34,44,92,110,32,32,92,34,102,101,101,98,101,50,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,99,53,49,98,56,97,55,97,48,49,55,55,92,34,44,92,110,32,32,92,34,102,101,101,98,101,50,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,100,100,51,52,57,55,97,101,48,49,55,101,55,97,48,49,55,55,92,34,44,92,110,32,32,92,34,102,102,102,55,102,51,102,100,101,48,100,100,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,100,100,51,52,57,55,97,101,48,49,55,101,55,97,48,49,55,55,92,34,44,92,110,32,32,92,34,102,102,102,55,102,51,102,100,101,48,100,100,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,100,100,51,52,57,55,97,101,48,49,55,101,55,97,48,49,55,55,52,57,48,48,54,97,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,82,100,80,117,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,71,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,71,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,102,55,102,99,98,57,97,100,100,100,56,101,51,49,97,51,53,52,92,34,44,92,110,32,32,92,34,102,102,102,102,99,99,99,50,101,54,57,57,55,56,99,54,55,57,50,51,56,52,52,51,92,34,44,92,110,32,32,92,34,102,102,102,102,99,99,99,50,101,54,57,57,55,56,99,54,55,57,51,49,97,51,53,52,48,48,54,56,51,55,92,34,44,92,110,32,32,92,34,102,102,102,102,99,99,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,51,49,97,51,53,52,48,48,54,56,51,55,92,34,44,92,110,32,32,92,34,102,102,102,102,99,99,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,52,49,97,98,53,100,50,51,56,52,52,51,48,48,53,97,51,50,92,34,44,92,110,32,32,92,34,102,102,102,102,101,53,102,55,102,99,98,57,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,52,49,97,98,53,100,50,51,56,52,52,51,48,48,53,97,51,50,92,34,44,92,110,32,32,92,34,102,102,102,102,101,53,102,55,102,99,98,57,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,52,49,97,98,53,100,50,51,56,52,52,51,48,48,54,56,51,55,48,48,52,53,50,57,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,71,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,71,110,66,117,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,71,110,66,117,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,101,100,102,56,98,49,55,102,99,100,98,98,50,99,55,102,98,56,92,34,44,92,110,32,32,92,34,102,102,102,102,99,99,97,49,100,97,98,52,52,49,98,54,99,52,50,50,53,101,97,56,92,34,44,92,110,32,32,92,34,102,102,102,102,99,99,97,49,100,97,98,52,52,49,98,54,99,52,50,99,55,102,98,56,50,53,51,52,57,52,92,34,44,92,110,32,32,92,34,102,102,102,102,99,99,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,50,99,55,102,98,56,50,53,51,52,57,52,92,34,44,92,110,32,32,92,34,102,102,102,102,99,99,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,49,100,57,49,99,48,50,50,53,101,97,56,48,99,50,99,56,52,92,34,44,92,110,32,32,92,34,102,102,102,102,100,57,101,100,102,56,98,49,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,49,100,57,49,99,48,50,50,53,101,97,56,48,99,50,99,56,52,92,34,44,92,110,32,32,92,34,102,102,102,102,100,57,101,100,102,56,98,49,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,49,100,57,49,99,48,50,50,53,101,97,56,50,53,51,52,57,52,48,56,49,100,53,56,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,71,110,66,117,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,79,114,66,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,79,114,66,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,102,102,102,55,98,99,102,101,99,52,52,102,100,57,53,102,48,101,92,34,44,92,110,32,32,92,34,102,102,102,102,100,52,102,101,100,57,56,101,102,101,57,57,50,57,99,99,52,99,48,50,92,34,44,92,110,32,32,92,34,102,102,102,102,100,52,102,101,100,57,56,101,102,101,57,57,50,57,100,57,53,102,48,101,57,57,51,52,48,52,92,34,44,92,110,32,32,92,34,102,102,102,102,100,52,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,100,57,53,102,48,101,57,57,51,52,48,52,92,34,44,92,110,32,32,92,34,102,102,102,102,100,52,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,101,99,55,48,49,52,99,99,52,99,48,50,56,99,50,100,48,52,92,34,44,92,110,32,32,92,34,102,102,102,102,101,53,102,102,102,55,98,99,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,101,99,55,48,49,52,99,99,52,99,48,50,56,99,50,100,48,52,92,34,44,92,110,32,32,92,34,102,102,102,102,101,53,102,102,102,55,98,99,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,101,99,55,48,49,52,99,99,52,99,48,50,57,57,51,52,48,52,54,54,50,53,48,54,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,79,114,66,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,79,114,82,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,79,114,82,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,102,102,101,100,97,48,102,101,98,50,52,99,102,48,51,98,50,48,92,34,44,92,110,32,32,92,34,102,102,102,102,98,50,102,101,99,99,53,99,102,100,56,100,51,99,101,51,49,97,49,99,92,34,44,92,110,32,32,92,34,102,102,102,102,98,50,102,101,99,99,53,99,102,100,56,100,51,99,102,48,51,98,50,48,98,100,48,48,50,54,92,34,44,92,110,32,32,92,34,102,102,102,102,98,50,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,48,51,98,50,48,98,100,48,48,50,54,92,34,44,92,110,32,32,92,34,102,102,102,102,98,50,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,99,52,101,50,97,101,51,49,97,49,99,98,49,48,48,50,54,92,34,44,92,110,32,32,92,34,102,102,102,102,99,99,102,102,101,100,97,48,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,99,52,101,50,97,101,51,49,97,49,99,98,49,48,48,50,54,92,34,44,92,110,32,32,92,34,102,102,102,102,99,99,102,102,101,100,97,48,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,99,52,101,50,97,101,51,49,97,49,99,98,100,48,48,50,54,56,48,48,48,50,54,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,89,108,79,114,82,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,99,105,118,105,100,105,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,99,105,118,105,100,105,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,116,41,32,123,92,110,32,32,116,32,61,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,49,44,32,116,41,41,59,92,110,32,32,114,101,116,117,114,110,32,92,34,114,103,98,40,92,34,92,110,32,32,32,32,32,32,43,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,50,53,53,44,32,77,97,116,104,46,114,111,117,110,100,40,45,52,46,53,52,32,45,32,116,32,42,32,40,51,53,46,51,52,32,45,32,116,32,42,32,40,50,51,56,49,46,55,51,32,45,32,116,32,42,32,40,54,52,48,50,46,55,32,45,32,116,32,42,32,40,55,48,50,52,46,55,50,32,45,32,116,32,42,32,50,55,49,48,46,53,55,41,41,41,41,41,41,41,32,43,32,92,34,44,32,92,34,92,110,32,32,32,32,32,32,43,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,50,53,53,44,32,77,97,116,104,46,114,111,117,110,100,40,51,50,46,52,57,32,43,32,116,32,42,32,40,49,55,48,46,55,51,32,43,32,116,32,42,32,40,53,50,46,56,50,32,45,32,116,32,42,32,40,49,51,49,46,52,54,32,45,32,116,32,42,32,40,49,55,54,46,53,56,32,45,32,116,32,42,32,54,55,46,51,55,41,41,41,41,41,41,41,32,43,32,92,34,44,32,92,34,92,110,32,32,32,32,32,32,43,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,50,53,53,44,32,77,97,116,104,46,114,111,117,110,100,40,56,49,46,50,52,32,43,32,116,32,42,32,40,52,52,50,46,51,54,32,45,32,116,32,42,32,40,50,52,56,50,46,52,51,32,45,32,116,32,42,32,40,54,49,54,55,46,50,52,32,45,32,116,32,42,32,40,54,54,49,52,46,57,52,32,45,32,116,32,42,32,50,52,55,53,46,54,55,41,41,41,41,41,41,41,92,110,32,32,32,32,32,32,43,32,92,34,41,92,34,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,99,105,118,105,100,105,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,99,117,98,101,104,101,108,105,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,99,117,98,101,104,101,108,105,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,108,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,117,98,101,104,101,108,105,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,105,110,116,101,114,112,111,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,117,98,101,104,101,108,105,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,117,98,101,104,101,108,105,120,76,111,110,103,41,40,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,51,48,48,44,32,48,46,53,44,32,48,46,48,41,44,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,45,50,52,48,44,32,48,46,53,44,32,49,46,48,41,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,99,117,98,101,104,101,108,105,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,114,97,105,110,98,111,119,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,114,97,105,110,98,111,119,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,111,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,111,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,119,97,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,119,97,114,109,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,108,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,117,98,101,104,101,108,105,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,105,110,116,101,114,112,111,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,99,117,98,101,104,101,108,105,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,119,97,114,109,32,61,32,40,48,44,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,117,98,101,104,101,108,105,120,76,111,110,103,41,40,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,45,49,48,48,44,32,48,46,55,53,44,32,48,46,51,53,41,44,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,56,48,44,32,49,46,53,48,44,32,48,46,56,41,41,59,92,110,92,110,118,97,114,32,99,111,111,108,32,61,32,40,48,44,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,117,98,101,104,101,108,105,120,76,111,110,103,41,40,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,50,54,48,44,32,48,46,55,53,44,32,48,46,51,53,41,44,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,56,48,44,32,49,46,53,48,44,32,48,46,56,41,41,59,92,110,92,110,118,97,114,32,99,32,61,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,116,41,32,123,92,110,32,32,105,102,32,40,116,32,60,32,48,32,124,124,32,116,32,62,32,49,41,32,116,32,45,61,32,77,97,116,104,46,102,108,111,111,114,40,116,41,59,92,110,32,32,118,97,114,32,116,115,32,61,32,77,97,116,104,46,97,98,115,40,116,32,45,32,48,46,53,41,59,92,110,32,32,99,46,104,32,61,32,51,54,48,32,42,32,116,32,45,32,49,48,48,59,92,110,32,32,99,46,115,32,61,32,49,46,53,32,45,32,49,46,53,32,42,32,116,115,59,92,110,32,32,99,46,108,32,61,32,48,46,56,32,45,32,48,46,57,32,42,32,116,115,59,92,110,32,32,114,101,116,117,114,110,32,99,32,43,32,92,34,92,34,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,114,97,105,110,98,111,119,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,115,105,110,101,98,111,119,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,115,105,110,101,98,111,119,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,108,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,111,108,111,114,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,99,32,61,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,103,98,41,40,41,44,92,110,32,32,32,32,112,105,95,49,95,51,32,61,32,77,97,116,104,46,80,73,32,47,32,51,44,92,110,32,32,32,32,112,105,95,50,95,51,32,61,32,77,97,116,104,46,80,73,32,42,32,50,32,47,32,51,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,116,41,32,123,92,110,32,32,118,97,114,32,120,59,92,110,32,32,116,32,61,32,40,48,46,53,32,45,32,116,41,32,42,32,77,97,116,104,46,80,73,59,92,110,32,32,99,46,114,32,61,32,50,53,53,32,42,32,40,120,32,61,32,77,97,116,104,46,115,105,110,40,116,41,41,32,42,32,120,59,92,110,32,32,99,46,103,32,61,32,50,53,53,32,42,32,40,120,32,61,32,77,97,116,104,46,115,105,110,40,116,32,43,32,112,105,95,49,95,51,41,41,32,42,32,120,59,92,110,32,32,99,46,98,32,61,32,50,53,53,32,42,32,40,120,32,61,32,77,97,116,104,46,115,105,110,40,116,32,43,32,112,105,95,50,95,51,41,41,32,42,32,120,59,92,110,32,32,114,101,116,117,114,110,32,99,32,43,32,92,34,92,34,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,115,105,110,101,98,111,119,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,116,117,114,98,111,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,116,117,114,98,111,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,116,41,32,123,92,110,32,32,116,32,61,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,49,44,32,116,41,41,59,92,110,32,32,114,101,116,117,114,110,32,92,34,114,103,98,40,92,34,92,110,32,32,32,32,32,32,43,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,50,53,53,44,32,77,97,116,104,46,114,111,117,110,100,40,51,52,46,54,49,32,43,32,116,32,42,32,40,49,49,55,50,46,51,51,32,45,32,116,32,42,32,40,49,48,55,57,51,46,53,54,32,45,32,116,32,42,32,40,51,51,51,48,48,46,49,50,32,45,32,116,32,42,32,40,51,56,51,57,52,46,52,57,32,45,32,116,32,42,32,49,52,56,50,53,46,48,53,41,41,41,41,41,41,41,32,43,32,92,34,44,32,92,34,92,110,32,32,32,32,32,32,43,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,50,53,53,44,32,77,97,116,104,46,114,111,117,110,100,40,50,51,46,51,49,32,43,32,116,32,42,32,40,53,53,55,46,51,51,32,43,32,116,32,42,32,40,49,50,50,53,46,51,51,32,45,32,116,32,42,32,40,51,53,55,52,46,57,54,32,45,32,116,32,42,32,40,49,48,55,51,46,55,55,32,43,32,116,32,42,32,55,48,55,46,53,54,41,41,41,41,41,41,41,32,43,32,92,34,44,32,92,34,92,110,32,32,32,32,32,32,43,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,50,53,53,44,32,77,97,116,104,46,114,111,117,110,100,40,50,55,46,50,32,43,32,116,32,42,32,40,51,50,49,49,46,49,32,45,32,116,32,42,32,40,49,53,51,50,55,46,57,55,32,45,32,116,32,42,32,40,50,55,56,49,52,32,45,32,116,32,42,32,40,50,50,53,54,57,46,49,56,32,45,32,116,32,42,32,54,56,51,56,46,54,54,41,41,41,41,41,41,41,92,110,32,32,32,32,32,32,43,32,92,34,41,92,34,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,116,117,114,98,111,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,118,105,114,105,100,105,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,118,105,114,105,100,105,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,102,101,114,110,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,110,102,101,114,110,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,103,109,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,103,109,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,108,97,115,109,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,108,97,115,109,97,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,114,97,109,112,40,114,97,110,103,101,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,114,97,110,103,101,46,108,101,110,103,116,104,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,97,110,103,101,91,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,110,32,45,32,49,44,32,77,97,116,104,46,102,108,111,111,114,40,116,32,42,32,110,41,41,41,93,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,114,97,109,112,40,40,48,44,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,52,52,48,49,53,52,52,52,48,50,53,54,52,53,48,52,53,55,52,53,48,53,53,57,52,54,48,55,53,97,52,54,48,56,53,99,52,54,48,97,53,100,52,54,48,98,53,101,52,55,48,100,54,48,52,55,48,101,54,49,52,55,49,48,54,51,52,55,49,49,54,52,52,55,49,51,54,53,52,56,49,52,54,55,52,56,49,54,54,56,52,56,49,55,54,57,52,56,49,56,54,97,52,56,49,97,54,99,52,56,49,98,54,100,52,56,49,99,54,101,52,56,49,100,54,102,52,56,49,102,55,48,52,56,50,48,55,49,52,56,50,49,55,51,52,56,50,51,55,52,52,56,50,52,55,53,52,56,50,53,55,54,52,56,50,54,55,55,52,56,50,56,55,56,52,56,50,57,55,57,52,55,50,97,55,97,52,55,50,99,55,97,52,55,50,100,55,98,52,55,50,101,55,99,52,55,50,102,55,100,52,54,51,48,55,101,52,54,51,50,55,101,52,54,51,51,55,102,52,54,51,52,56,48,52,53,51,53,56,49,52,53,51,55,56,49,52,53,51,56,56,50,52,52,51,57,56,51,52,52,51,97,56,51,52,52,51,98,56,52,52,51,51,100,56,52,52,51,51,101,56,53,52,50,51,102,56,53,52,50,52,48,56,54,52,50,52,49,56,54,52,49,52,50,56,55,52,49,52,52,56,55,52,48,52,53,56,56,52,48,52,54,56,56,51,102,52,55,56,56,51,102,52,56,56,57,51,101,52,57,56,57,51,101,52,97,56,57,51,101,52,99,56,97,51,100,52,100,56,97,51,100,52,101,56,97,51,99,52,102,56,97,51,99,53,48,56,98,51,98,53,49,56,98,51,98,53,50,56,98,51,97,53,51,56,98,51,97,53,52,56,99,51,57,53,53,56,99,51,57,53,54,56,99,51,56,53,56,56,99,51,56,53,57,56,99,51,55,53,97,56,99,51,55,53,98,56,100,51,54,53,99,56,100,51,54,53,100,56,100,51,53,53,101,56,100,51,53,53,102,56,100,51,52,54,48,56,100,51,52,54,49,56,100,51,51,54,50,56,100,51,51,54,51,56,100,51,50,54,52,56,101,51,50,54,53,56,101,51,49,54,54,56,101,51,49,54,55,56,101,51,49,54,56,56,101,51,48,54,57,56,101,51,48,54,97,56,101,50,102,54,98,56,101,50,102,54,99,56,101,50,101,54,100,56,101,50,101,54,101,56,101,50,101,54,102,56,101,50,100,55,48,56,101,50,100,55,49,56,101,50,99,55,49,56,101,50,99,55,50,56,101,50,99,55,51,56,101,50,98,55,52,56,101,50,98,55,53,56,101,50,97,55,54,56,101,50,97,55,55,56,101,50,97,55,56,56,101,50,57,55,57,56,101,50,57,55,97,56,101,50,57,55,98,56,101,50,56,55,99,56,101,50,56,55,100,56,101,50,55,55,101,56,101,50,55,55,102,56,101,50,55,56,48,56,101,50,54,56,49,56,101,50,54,56,50,56,101,50,54,56,50,56,101,50,53,56,51,56,101,50,53,56,52,56,101,50,53,56,53,56,101,50,52,56,54,56,101,50,52,56,55,56,101,50,51,56,56,56,101,50,51,56,57,56,101,50,51,56,97,56,100,50,50,56,98,56,100,50,50,56,99,56,100,50,50,56,100,56,100,50,49,56,101,56,100,50,49,56,102,56,100,50,49,57,48,56,100,50,49,57,49,56,99,50,48,57,50,56,99,50,48,57,50,56,99,50,48,57,51,56,99,49,102,57,52,56,99,49,102,57,53,56,98,49,102,57,54,56,98,49,102,57,55,56,98,49,102,57,56,56,98,49,102,57,57,56,97,49,102,57,97,56,97,49,101,57,98,56,97,49,101,57,99,56,57,49,101,57,100,56,57,49,102,57,101,56,57,49,102,57,102,56,56,49,102,97,48,56,56,49,102,97,49,56,56,49,102,97,49,56,55,49,102,97,50,56,55,50,48,97,51,56,54,50,48,97,52,56,54,50,49,97,53,56,53,50,49,97,54,56,53,50,50,97,55,56,53,50,50,97,56,56,52,50,51,97,57,56,51,50,52,97,97,56,51,50,53,97,98,56,50,50,53,97,99,56,50,50,54,97,100,56,49,50,55,97,100,56,49,50,56,97,101,56,48,50,57,97,102,55,102,50,97,98,48,55,102,50,99,98,49,55,101,50,100,98,50,55,100,50,101,98,51,55,99,50,102,98,52,55,99,51,49,98,53,55,98,51,50,98,54,55,97,51,52,98,54,55,57,51,53,98,55,55,57,51,55,98,56,55,56,51,56,98,57,55,55,51,97,98,97,55,54,51,98,98,98,55,53,51,100,98,99,55,52,51,102,98,99,55,51,52,48,98,100,55,50,52,50,98,101,55,49,52,52,98,102,55,48,52,54,99,48,54,102,52,56,99,49,54,101,52,97,99,49,54,100,52,99,99,50,54,99,52,101,99,51,54,98,53,48,99,52,54,97,53,50,99,53,54,57,53,52,99,53,54,56,53,54,99,54,54,55,53,56,99,55,54,53,53,97,99,56,54,52,53,99,99,56,54,51,53,101,99,57,54,50,54,48,99,97,54,48,54,51,99,98,53,102,54,53,99,98,53,101,54,55,99,99,53,99,54,57,99,100,53,98,54,99,99,100,53,97,54,101,99,101,53,56,55,48,99,102,53,55,55,51,100,48,53,54,55,53,100,48,53,52,55,55,100,49,53,51,55,97,100,49,53,49,55,99,100,50,53,48,55,102,100,51,52,101,56,49,100,51,52,100,56,52,100,52,52,98,56,54,100,53,52,57,56,57,100,53,52,56,56,98,100,54,52,54,56,101,100,54,52,53,57,48,100,55,52,51,57,51,100,55,52,49,57,53,100,56,52,48,57,56,100,56,51,101,57,98,100,57,51,99,57,100,100,57,51,98,97,48,100,97,51,57,97,50,100,97,51,55,97,53,100,98,51,54,97,56,100,98,51,52,97,97,100,99,51,50,97,100,100,99,51,48,98,48,100,100,50,102,98,50,100,100,50,100,98,53,100,101,50,98,98,56,100,101,50,57,98,97,100,101,50,56,98,100,100,102,50,54,99,48,100,102,50,53,99,50,100,102,50,51,99,53,101,48,50,49,99,56,101,48,50,48,99,97,101,49,49,102,99,100,101,49,49,100,100,48,101,49,49,99,100,50,101,50,49,98,100,53,101,50,49,97,100,56,101,50,49,57,100,97,101,51,49,57,100,100,101,51,49,56,100,102,101,51,49,56,101,50,101,52,49,56,101,53,101,52,49,57,101,55,101,52,49,57,101,97,101,53,49,97,101,99,101,53,49,98,101,102,101,53,49,99,102,49,101,53,49,100,102,52,101,54,49,101,102,54,101,54,50,48,102,56,101,54,50,49,102,98,101,55,50,51,102,100,101,55,50,53,92,34,41,41,41,59,92,110,92,110,118,97,114,32,109,97,103,109,97,32,61,32,114,97,109,112,40,40,48,44,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,48,48,48,48,48,52,48,49,48,48,48,53,48,49,48,49,48,54,48,49,48,49,48,56,48,50,48,49,48,57,48,50,48,50,48,98,48,50,48,50,48,100,48,51,48,51,48,102,48,51,48,51,49,50,48,52,48,52,49,52,48,53,48,52,49,54,48,54,48,53,49,56,48,54,48,53,49,97,48,55,48,54,49,99,48,56,48,55,49,101,48,57,48,55,50,48,48,97,48,56,50,50,48,98,48,57,50,52,48,99,48,57,50,54,48,100,48,97,50,57,48,101,48,98,50,98,49,48,48,98,50,100,49,49,48,99,50,102,49,50,48,100,51,49,49,51,48,100,51,52,49,52,48,101,51,54,49,53,48,101,51,56,49,54,48,102,51,98,49,56,48,102,51,100,49,57,49,48,51,102,49,97,49,48,52,50,49,99,49,48,52,52,49,100,49,49,52,55,49,101,49,49,52,57,50,48,49,49,52,98,50,49,49,49,52,101,50,50,49,49,53,48,50,52,49,50,53,51,50,53,49,50,53,53,50,55,49,50,53,56,50,57,49,49,53,97,50,97,49,49,53,99,50,99,49,49,53,102,50,100,49,49,54,49,50,102,49,49,54,51,51,49,49,49,54,53,51,51,49,48,54,55,51,52,49,48,54,57,51,54,49,48,54,98,51,56,49,48,54,99,51,57,48,102,54,101,51,98,48,102,55,48,51,100,48,102,55,49,51,102,48,102,55,50,52,48,48,102,55,52,52,50,48,102,55,53,52,52,48,102,55,54,52,53,49,48,55,55,52,55,49,48,55,56,52,57,49,48,55,56,52,97,49,48,55,57,52,99,49,49,55,97,52,101,49,49,55,98,52,102,49,50,55,98,53,49,49,50,55,99,53,50,49,51,55,99,53,52,49,51,55,100,53,54,49,52,55,100,53,55,49,53,55,101,53,57,49,53,55,101,53,97,49,54,55,101,53,99,49,54,55,102,53,100,49,55,55,102,53,102,49,56,55,102,54,48,49,56,56,48,54,50,49,57,56,48,54,52,49,97,56,48,54,53,49,97,56,48,54,55,49,98,56,48,54,56,49,99,56,49,54,97,49,99,56,49,54,98,49,100,56,49,54,100,49,100,56,49,54,101,49,101,56,49,55,48,49,102,56,49,55,50,49,102,56,49,55,51,50,48,56,49,55,53,50,49,56,49,55,54,50,49,56,49,55,56,50,50,56,49,55,57,50,50,56,50,55,98,50,51,56,50,55,99,50,51,56,50,55,101,50,52,56,50,56,48,50,53,56,50,56,49,50,53,56,49,56,51,50,54,56,49,56,52,50,54,56,49,56,54,50,55,56,49,56,56,50,55,56,49,56,57,50,56,56,49,56,98,50,57,56,49,56,99,50,57,56,49,56,101,50,97,56,49,57,48,50,97,56,49,57,49,50,98,56,49,57,51,50,98,56,48,57,52,50,99,56,48,57,54,50,99,56,48,57,56,50,100,56,48,57,57,50,100,56,48,57,98,50,101,55,102,57,99,50,101,55,102,57,101,50,102,55,102,97,48,50,102,55,102,97,49,51,48,55,101,97,51,51,48,55,101,97,53,51,49,55,101,97,54,51,49,55,100,97,56,51,50,55,100,97,97,51,51,55,100,97,98,51,51,55,99,97,100,51,52,55,99,97,101,51,52,55,98,98,48,51,53,55,98,98,50,51,53,55,98,98,51,51,54,55,97,98,53,51,54,55,97,98,55,51,55,55,57,98,56,51,55,55,57,98,97,51,56,55,56,98,99,51,57,55,56,98,100,51,57,55,55,98,102,51,97,55,55,99,48,51,97,55,54,99,50,51,98,55,53,99,52,51,99,55,53,99,53,51,99,55,52,99,55,51,100,55,51,99,56,51,101,55,51,99,97,51,101,55,50,99,99,51,102,55,49,99,100,52,48,55,49,99,102,52,48,55,48,100,48,52,49,54,102,100,50,52,50,54,102,100,51,52,51,54,101,100,53,52,52,54,100,100,54,52,53,54,99,100,56,52,53,54,99,100,57,52,54,54,98,100,98,52,55,54,97,100,99,52,56,54,57,100,101,52,57,54,56,100,102,52,97,54,56,101,48,52,99,54,55,101,50,52,100,54,54,101,51,52,101,54,53,101,52,52,102,54,52,101,53,53,48,54,52,101,55,53,50,54,51,101,56,53,51,54,50,101,57,53,52,54,50,101,97,53,54,54,49,101,98,53,55,54,48,101,99,53,56,54,48,101,100,53,97,53,102,101,101,53,98,53,101,101,102,53,100,53,101,102,48,53,102,53,101,102,49,54,48,53,100,102,50,54,50,53,100,102,50,54,52,53,99,102,51,54,53,53,99,102,52,54,55,53,99,102,52,54,57,53,99,102,53,54,98,53,99,102,54,54,99,53,99,102,54,54,101,53,99,102,55,55,48,53,99,102,55,55,50,53,99,102,56,55,52,53,99,102,56,55,54,53,99,102,57,55,56,53,100,102,57,55,57,53,100,102,57,55,98,53,100,102,97,55,100,53,101,102,97,55,102,53,101,102,97,56,49,53,102,102,98,56,51,53,102,102,98,56,53,54,48,102,98,56,55,54,49,102,99,56,57,54,49,102,99,56,97,54,50,102,99,56,99,54,51,102,99,56,101,54,52,102,99,57,48,54,53,102,100,57,50,54,54,102,100,57,52,54,55,102,100,57,54,54,56,102,100,57,56,54,57,102,100,57,97,54,97,102,100,57,98,54,98,102,101,57,100,54,99,102,101,57,102,54,100,102,101,97,49,54,101,102,101,97,51,54,102,102,101,97,53,55,49,102,101,97,55,55,50,102,101,97,57,55,51,102,101,97,97,55,52,102,101,97,99,55,54,102,101,97,101,55,55,102,101,98,48,55,56,102,101,98,50,55,97,102,101,98,52,55,98,102,101,98,54,55,99,102,101,98,55,55,101,102,101,98,57,55,102,102,101,98,98,56,49,102,101,98,100,56,50,102,101,98,102,56,52,102,101,99,49,56,53,102,101,99,50,56,55,102,101,99,52,56,56,102,101,99,54,56,97,102,101,99,56,56,99,102,101,99,97,56,100,102,101,99,99,56,102,102,101,99,100,57,48,102,101,99,102,57,50,102,101,100,49,57,52,102,101,100,51,57,53,102,101,100,53,57,55,102,101,100,55,57,57,102,101,100,56,57,97,102,100,100,97,57,99,102,100,100,99,57,101,102,100,100,101,97,48,102,100,101,48,97,49,102,100,101,50,97,51,102,100,101,51,97,53,102,100,101,53,97,55,102,100,101,55,97,57,102,100,101,57,97,97,102,100,101,98,97,99,102,99,101,99,97,101,102,99,101,101,98,48,102,99,102,48,98,50,102,99,102,50,98,52,102,99,102,52,98,54,102,99,102,54,98,56,102,99,102,55,98,57,102,99,102,57,98,98,102,99,102,98,98,100,102,99,102,100,98,102,92,34,41,41,59,92,110,92,110,118,97,114,32,105,110,102,101,114,110,111,32,61,32,114,97,109,112,40,40,48,44,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,48,48,48,48,48,52,48,49,48,48,48,53,48,49,48,49,48,54,48,49,48,49,48,56,48,50,48,49,48,97,48,50,48,50,48,99,48,50,48,50,48,101,48,51,48,50,49,48,48,52,48,51,49,50,48,52,48,51,49,52,48,53,48,52,49,55,48,54,48,52,49,57,48,55,48,53,49,98,48,56,48,53,49,100,48,57,48,54,49,102,48,97,48,55,50,50,48,98,48,55,50,52,48,99,48,56,50,54,48,100,48,56,50,57,48,101,48,57,50,98,49,48,48,57,50,100,49,49,48,97,51,48,49,50,48,97,51,50,49,52,48,98,51,52,49,53,48,98,51,55,49,54,48,98,51,57,49,56,48,99,51,99,49,57,48,99,51,101,49,98,48,99,52,49,49,99,48,99,52,51,49,101,48,99,52,53,49,102,48,99,52,56,50,49,48,99,52,97,50,51,48,99,52,99,50,52,48,99,52,102,50,54,48,99,53,49,50,56,48,98,53,51,50,57,48,98,53,53,50,98,48,98,53,55,50,100,48,98,53,57,50,102,48,97,53,98,51,49,48,97,53,99,51,50,48,97,53,101,51,52,48,97,53,102,51,54,48,57,54,49,51,56,48,57,54,50,51,57,48,57,54,51,51,98,48,57,54,52,51,100,48,57,54,53,51,101,48,57,54,54,52,48,48,97,54,55,52,50,48,97,54,56,52,52,48,97,54,56,52,53,48,97,54,57,52,55,48,98,54,97,52,57,48,98,54,97,52,97,48,99,54,98,52,99,48,99,54,98,52,100,48,100,54,99,52,102,48,100,54,99,53,49,48,101,54,99,53,50,48,101,54,100,53,52,48,102,54,100,53,53,48,102,54,100,53,55,49,48,54,101,53,57,49,48,54,101,53,97,49,49,54,101,53,99,49,50,54,101,53,100,49,50,54,101,53,102,49,51,54,101,54,49,49,51,54,101,54,50,49,52,54,101,54,52,49,53,54,101,54,53,49,53,54,101,54,55,49,54,54,101,54,57,49,54,54,101,54,97,49,55,54,101,54,99,49,56,54,101,54,100,49,56,54,101,54,102,49,57,54,101,55,49,49,57,54,101,55,50,49,97,54,101,55,52,49,97,54,101,55,53,49,98,54,101,55,55,49,99,54,100,55,56,49,99,54,100,55,97,49,100,54,100,55,99,49,100,54,100,55,100,49,101,54,100,55,102,49,101,54,99,56,48,49,102,54,99,56,50,50,48,54,99,56,52,50,48,54,98,56,53,50,49,54,98,56,55,50,49,54,98,56,56,50,50,54,97,56,97,50,50,54,97,56,99,50,51,54,57,56,100,50,51,54,57,56,102,50,52,54,57,57,48,50,53,54,56,57,50,50,53,54,56,57,51,50,54,54,55,57,53,50,54,54,55,57,55,50,55,54,54,57,56,50,55,54,54,57,97,50,56,54,53,57,98,50,57,54,52,57,100,50,57,54,52,57,102,50,97,54,51,97,48,50,97,54,51,97,50,50,98,54,50,97,51,50,99,54,49,97,53,50,99,54,48,97,54,50,100,54,48,97,56,50,101,53,102,97,57,50,101,53,101,97,98,50,102,53,101,97,100,51,48,53,100,97,101,51,48,53,99,98,48,51,49,53,98,98,49,51,50,53,97,98,51,51,50,53,97,98,52,51,51,53,57,98,54,51,52,53,56,98,55,51,53,53,55,98,57,51,53,53,54,98,97,51,54,53,53,98,99,51,55,53,52,98,100,51,56,53,51,98,102,51,57,53,50,99,48,51,97,53,49,99,49,51,97,53,48,99,51,51,98,52,102,99,52,51,99,52,101,99,54,51,100,52,100,99,55,51,101,52,99,99,56,51,102,52,98,99,97,52,48,52,97,99,98,52,49,52,57,99,99,52,50,52,56,99,101,52,51,52,55,99,102,52,52,52,54,100,48,52,53,52,53,100,50,52,54,52,52,100,51,52,55,52,51,100,52,52,56,52,50,100,53,52,97,52,49,100,55,52,98,51,102,100,56,52,99,51,101,100,57,52,100,51,100,100,97,52,101,51,99,100,98,53,48,51,98,100,100,53,49,51,97,100,101,53,50,51,56,100,102,53,51,51,55,101,48,53,53,51,54,101,49,53,54,51,53,101,50,53,55,51,52,101,51,53,57,51,51,101,52,53,97,51,49,101,53,53,99,51,48,101,54,53,100,50,102,101,55,53,101,50,101,101,56,54,48,50,100,101,57,54,49,50,98,101,97,54,51,50,97,101,98,54,52,50,57,101,98,54,54,50,56,101,99,54,55,50,54,101,100,54,57,50,53,101,101,54,97,50,52,101,102,54,99,50,51,101,102,54,101,50,49,102,48,54,102,50,48,102,49,55,49,49,102,102,49,55,51,49,100,102,50,55,52,49,99,102,51,55,54,49,98,102,51,55,56,49,57,102,52,55,57,49,56,102,53,55,98,49,55,102,53,55,100,49,53,102,54,55,101,49,52,102,54,56,48,49,51,102,55,56,50,49,50,102,55,56,52,49,48,102,56,56,53,48,102,102,56,56,55,48,101,102,56,56,57,48,99,102,57,56,98,48,98,102,57,56,99,48,97,102,57,56,101,48,57,102,97,57,48,48,56,102,97,57,50,48,55,102,97,57,52,48,55,102,98,57,54,48,54,102,98,57,55,48,54,102,98,57,57,48,54,102,98,57,98,48,54,102,98,57,100,48,55,102,99,57,102,48,55,102,99,97,49,48,56,102,99,97,51,48,57,102,99,97,53,48,97,102,99,97,54,48,99,102,99,97,56,48,100,102,99,97,97,48,102,102,99,97,99,49,49,102,99,97,101,49,50,102,99,98,48,49,52,102,99,98,50,49,54,102,99,98,52,49,56,102,98,98,54,49,97,102,98,98,56,49,100,102,98,98,97,49,102,102,98,98,99,50,49,102,98,98,101,50,51,102,97,99,48,50,54,102,97,99,50,50,56,102,97,99,52,50,97,102,97,99,54,50,100,102,57,99,55,50,102,102,57,99,57,51,50,102,57,99,98,51,53,102,56,99,100,51,55,102,56,99,102,51,97,102,55,100,49,51,100,102,55,100,51,52,48,102,54,100,53,52,51,102,54,100,55,52,54,102,53,100,57,52,57,102,53,100,98,52,99,102,52,100,100,52,102,102,52,100,102,53,51,102,52,101,49,53,54,102,51,101,51,53,97,102,51,101,53,53,100,102,50,101,54,54,49,102,50,101,56,54,53,102,50,101,97,54,57,102,49,101,99,54,100,102,49,101,100,55,49,102,49,101,102,55,53,102,49,102,49,55,57,102,50,102,50,55,100,102,50,102,52,56,50,102,51,102,53,56,54,102,51,102,54,56,97,102,52,102,56,56,101,102,53,102,57,57,50,102,54,102,97,57,54,102,56,102,98,57,97,102,57,102,99,57,100,102,97,102,100,97,49,102,99,102,102,97,52,92,34,41,41,59,92,110,92,110,118,97,114,32,112,108,97,115,109,97,32,61,32,114,97,109,112,40,40,48,44,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,48,100,48,56,56,55,49,48,48,55,56,56,49,51,48,55,56,57,49,54,48,55,56,97,49,57,48,54,56,99,49,98,48,54,56,100,49,100,48,54,56,101,50,48,48,54,56,102,50,50,48,54,57,48,50,52,48,54,57,49,50,54,48,53,57,49,50,56,48,53,57,50,50,97,48,53,57,51,50,99,48,53,57,52,50,101,48,53,57,53,50,102,48,53,57,54,51,49,48,53,57,55,51,51,48,53,57,55,51,53,48,52,57,56,51,55,48,52,57,57,51,56,48,52,57,97,51,97,48,52,57,97,51,99,48,52,57,98,51,101,48,52,57,99,51,102,48,52,57,99,52,49,48,52,57,100,52,51,48,51,57,101,52,52,48,51,57,101,52,54,48,51,57,102,52,56,48,51,57,102,52,57,48,51,97,48,52,98,48,51,97,49,52,99,48,50,97,49,52,101,48,50,97,50,53,48,48,50,97,50,53,49,48,50,97,51,53,51,48,50,97,51,53,53,48,50,97,52,53,54,48,49,97,52,53,56,48,49,97,52,53,57,48,49,97,53,53,98,48,49,97,53,53,99,48,49,97,54,53,101,48,49,97,54,54,48,48,49,97,54,54,49,48,48,97,55,54,51,48,48,97,55,54,52,48,48,97,55,54,54,48,48,97,55,54,55,48,48,97,56,54,57,48,48,97,56,54,97,48,48,97,56,54,99,48,48,97,56,54,101,48,48,97,56,54,102,48,48,97,56,55,49,48,48,97,56,55,50,48,49,97,56,55,52,48,49,97,56,55,53,48,49,97,56,55,55,48,49,97,56,55,56,48,49,97,56,55,97,48,50,97,56,55,98,48,50,97,56,55,100,48,51,97,56,55,101,48,51,97,56,56,48,48,52,97,56,56,49,48,52,97,55,56,51,48,53,97,55,56,52,48,53,97,55,56,54,48,54,97,54,56,55,48,55,97,54,56,56,48,56,97,54,56,97,48,57,97,53,56,98,48,97,97,53,56,100,48,98,97,53,56,101,48,99,97,52,56,102,48,100,97,52,57,49,48,101,97,51,57,50,48,102,97,51,57,52,49,48,97,50,57,53,49,49,97,49,57,54,49,51,97,49,57,56,49,52,97,48,57,57,49,53,57,102,57,97,49,54,57,102,57,99,49,55,57,101,57,100,49,56,57,100,57,101,49,57,57,100,97,48,49,97,57,99,97,49,49,98,57,98,97,50,49,100,57,97,97,51,49,101,57,97,97,53,49,102,57,57,97,54,50,48,57,56,97,55,50,49,57,55,97,56,50,50,57,54,97,97,50,51,57,53,97,98,50,52,57,52,97,99,50,54,57,52,97,100,50,55,57,51,97,101,50,56,57,50,98,48,50,57,57,49,98,49,50,97,57,48,98,50,50,98,56,102,98,51,50,99,56,101,98,52,50,101,56,100,98,53,50,102,56,99,98,54,51,48,56,98,98,55,51,49,56,97,98,56,51,50,56,57,98,97,51,51,56,56,98,98,51,52,56,56,98,99,51,53,56,55,98,100,51,55,56,54,98,101,51,56,56,53,98,102,51,57,56,52,99,48,51,97,56,51,99,49,51,98,56,50,99,50,51,99,56,49,99,51,51,100,56,48,99,52,51,101,55,102,99,53,52,48,55,101,99,54,52,49,55,100,99,55,52,50,55,99,99,56,52,51,55,98,99,57,52,52,55,97,99,97,52,53,55,97,99,98,52,54,55,57,99,99,52,55,55,56,99,99,52,57,55,55,99,100,52,97,55,54,99,101,52,98,55,53,99,102,52,99,55,52,100,48,52,100,55,51,100,49,52,101,55,50,100,50,52,102,55,49,100,51,53,49,55,49,100,52,53,50,55,48,100,53,53,51,54,102,100,53,53,52,54,101,100,54,53,53,54,100,100,55,53,54,54,99,100,56,53,55,54,98,100,57,53,56,54,97,100,97,53,97,54,97,100,97,53,98,54,57,100,98,53,99,54,56,100,99,53,100,54,55,100,100,53,101,54,54,100,101,53,102,54,53,100,101,54,49,54,52,100,102,54,50,54,51,101,48,54,51,54,51,101,49,54,52,54,50,101,50,54,53,54,49,101,50,54,54,54,48,101,51,54,56,53,102,101,52,54,57,53,101,101,53,54,97,53,100,101,53,54,98,53,100,101,54,54,99,53,99,101,55,54,101,53,98,101,55,54,102,53,97,101,56,55,48,53,57,101,57,55,49,53,56,101,57,55,50,53,55,101,97,55,52,53,55,101,98,55,53,53,54,101,98,55,54,53,53,101,99,55,55,53,52,101,100,55,57,53,51,101,100,55,97,53,50,101,101,55,98,53,49,101,102,55,99,53,49,101,102,55,101,53,48,102,48,55,102,52,102,102,48,56,48,52,101,102,49,56,49,52,100,102,49,56,51,52,99,102,50,56,52,52,98,102,51,56,53,52,98,102,51,56,55,52,97,102,52,56,56,52,57,102,52,56,57,52,56,102,53,56,98,52,55,102,53,56,99,52,54,102,54,56,100,52,53,102,54,56,102,52,52,102,55,57,48,52,52,102,55,57,49,52,51,102,55,57,51,52,50,102,56,57,52,52,49,102,56,57,53,52,48,102,57,57,55,51,102,102,57,57,56,51,101,102,57,57,97,51,101,102,97,57,98,51,100,102,97,57,99,51,99,102,97,57,101,51,98,102,98,57,102,51,97,102,98,97,49,51,57,102,98,97,50,51,56,102,99,97,51,51,56,102,99,97,53,51,55,102,99,97,54,51,54,102,99,97,56,51,53,102,99,97,57,51,52,102,100,97,98,51,51,102,100,97,99,51,51,102,100,97,101,51,50,102,100,97,102,51,49,102,100,98,49,51,48,102,100,98,50,50,102,102,100,98,52,50,102,102,100,98,53,50,101,102,101,98,55,50,100,102,101,98,56,50,99,102,101,98,97,50,99,102,101,98,98,50,98,102,101,98,100,50,97,102,101,98,101,50,97,102,101,99,48,50,57,102,100,99,50,50,57,102,100,99,51,50,56,102,100,99,53,50,55,102,100,99,54,50,55,102,100,99,56,50,55,102,100,99,97,50,54,102,100,99,98,50,54,102,99,99,100,50,53,102,99,99,101,50,53,102,99,100,48,50,53,102,99,100,50,50,53,102,98,100,51,50,52,102,98,100,53,50,52,102,98,100,55,50,52,102,97,100,56,50,52,102,97,100,97,50,52,102,57,100,99,50,52,102,57,100,100,50,53,102,56,100,102,50,53,102,56,101,49,50,53,102,55,101,50,50,53,102,55,101,52,50,53,102,54,101,54,50,54,102,54,101,56,50,54,102,53,101,57,50,54,102,53,101,98,50,55,102,52,101,100,50,55,102,51,101,101,50,55,102,51,102,48,50,55,102,50,102,50,50,55,102,49,102,52,50,54,102,49,102,53,50,53,102,48,102,55,50,52,102,48,102,57,50,49,92,34,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,109,117,108,116,105,47,118,105,114,105,100,105,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,66,108,117,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,66,108,117,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,100,101,101,98,102,55,57,101,99,97,101,49,51,49,56,50,98,100,92,34,44,92,110,32,32,92,34,101,102,102,51,102,102,98,100,100,55,101,55,54,98,97,101,100,54,50,49,55,49,98,53,92,34,44,92,110,32,32,92,34,101,102,102,51,102,102,98,100,100,55,101,55,54,98,97,101,100,54,51,49,56,50,98,100,48,56,53,49,57,99,92,34,44,92,110,32,32,92,34,101,102,102,51,102,102,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,51,49,56,50,98,100,48,56,53,49,57,99,92,34,44,92,110,32,32,92,34,101,102,102,51,102,102,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,52,50,57,50,99,54,50,49,55,49,98,53,48,56,52,53,57,52,92,34,44,92,110,32,32,92,34,102,55,102,98,102,102,100,101,101,98,102,55,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,52,50,57,50,99,54,50,49,55,49,98,53,48,56,52,53,57,52,92,34,44,92,110,32,32,92,34,102,55,102,98,102,102,100,101,101,98,102,55,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,52,50,57,50,99,54,50,49,55,49,98,53,48,56,53,49,57,99,48,56,51,48,54,98,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,66,108,117,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,71,114,101,101,110,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,71,114,101,101,110,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,101,53,102,53,101,48,97,49,100,57,57,98,51,49,97,51,53,52,92,34,44,92,110,32,32,92,34,101,100,102,56,101,57,98,97,101,52,98,51,55,52,99,52,55,54,50,51,56,98,52,53,92,34,44,92,110,32,32,92,34,101,100,102,56,101,57,98,97,101,52,98,51,55,52,99,52,55,54,51,49,97,51,53,52,48,48,54,100,50,99,92,34,44,92,110,32,32,92,34,101,100,102,56,101,57,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,51,49,97,51,53,52,48,48,54,100,50,99,92,34,44,92,110,32,32,92,34,101,100,102,56,101,57,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,52,49,97,98,53,100,50,51,56,98,52,53,48,48,53,97,51,50,92,34,44,92,110,32,32,92,34,102,55,102,99,102,53,101,53,102,53,101,48,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,52,49,97,98,53,100,50,51,56,98,52,53,48,48,53,97,51,50,92,34,44,92,110,32,32,92,34,102,55,102,99,102,53,101,53,102,53,101,48,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,52,49,97,98,53,100,50,51,56,98,52,53,48,48,54,100,50,99,48,48,52,52,49,98,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,71,114,101,101,110,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,71,114,101,121,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,71,114,101,121,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,102,48,102,48,102,48,98,100,98,100,98,100,54,51,54,51,54,51,92,34,44,92,110,32,32,92,34,102,55,102,55,102,55,99,99,99,99,99,99,57,54,57,54,57,54,53,50,53,50,53,50,92,34,44,92,110,32,32,92,34,102,55,102,55,102,55,99,99,99,99,99,99,57,54,57,54,57,54,54,51,54,51,54,51,50,53,50,53,50,53,92,34,44,92,110,32,32,92,34,102,55,102,55,102,55,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,54,51,54,51,54,51,50,53,50,53,50,53,92,34,44,92,110,32,32,92,34,102,55,102,55,102,55,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,55,51,55,51,55,51,53,50,53,50,53,50,50,53,50,53,50,53,92,34,44,92,110,32,32,92,34,102,102,102,102,102,102,102,48,102,48,102,48,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,55,51,55,51,55,51,53,50,53,50,53,50,50,53,50,53,50,53,92,34,44,92,110,32,32,92,34,102,102,102,102,102,102,102,48,102,48,102,48,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,55,51,55,51,55,51,53,50,53,50,53,50,50,53,50,53,50,53,48,48,48,48,48,48,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,71,114,101,121,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,79,114,97,110,103,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,79,114,97,110,103,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,102,101,101,54,99,101,102,100,97,101,54,98,101,54,53,53,48,100,92,34,44,92,110,32,32,92,34,102,101,101,100,100,101,102,100,98,101,56,53,102,100,56,100,51,99,100,57,52,55,48,49,92,34,44,92,110,32,32,92,34,102,101,101,100,100,101,102,100,98,101,56,53,102,100,56,100,51,99,101,54,53,53,48,100,97,54,51,54,48,51,92,34,44,92,110,32,32,92,34,102,101,101,100,100,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,101,54,53,53,48,100,97,54,51,54,48,51,92,34,44,92,110,32,32,92,34,102,101,101,100,100,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,102,49,54,57,49,51,100,57,52,56,48,49,56,99,50,100,48,52,92,34,44,92,110,32,32,92,34,102,102,102,53,101,98,102,101,101,54,99,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,102,49,54,57,49,51,100,57,52,56,48,49,56,99,50,100,48,52,92,34,44,92,110,32,32,92,34,102,102,102,53,101,98,102,101,101,54,99,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,102,49,54,57,49,51,100,57,52,56,48,49,97,54,51,54,48,51,55,102,50,55,48,52,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,79,114,97,110,103,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,80,117,114,112,108,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,80,117,114,112,108,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,101,102,101,100,102,53,98,99,98,100,100,99,55,53,54,98,98,49,92,34,44,92,110,32,32,92,34,102,50,102,48,102,55,99,98,99,57,101,50,57,101,57,97,99,56,54,97,53,49,97,51,92,34,44,92,110,32,32,92,34,102,50,102,48,102,55,99,98,99,57,101,50,57,101,57,97,99,56,55,53,54,98,98,49,53,52,50,55,56,102,92,34,44,92,110,32,32,92,34,102,50,102,48,102,55,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,55,53,54,98,98,49,53,52,50,55,56,102,92,34,44,92,110,32,32,92,34,102,50,102,48,102,55,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,56,48,55,100,98,97,54,97,53,49,97,51,52,97,49,52,56,54,92,34,44,92,110,32,32,92,34,102,99,102,98,102,100,101,102,101,100,102,53,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,56,48,55,100,98,97,54,97,53,49,97,51,52,97,49,52,56,54,92,34,44,92,110,32,32,92,34,102,99,102,98,102,100,101,102,101,100,102,53,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,56,48,55,100,98,97,54,97,53,49,97,51,53,52,50,55,56,102,51,102,48,48,55,100,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,80,117,114,112,108,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,82,101,100,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,82,101,100,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,104,101,109,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,108,111,114,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,99,111,108,111,114,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,97,109,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,114,97,109,112,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,99,104,101,109,101,32,61,32,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,92,110,32,32,92,34,102,101,101,48,100,50,102,99,57,50,55,50,100,101,50,100,50,54,92,34,44,92,110,32,32,92,34,102,101,101,53,100,57,102,99,97,101,57,49,102,98,54,97,52,97,99,98,49,56,49,100,92,34,44,92,110,32,32,92,34,102,101,101,53,100,57,102,99,97,101,57,49,102,98,54,97,52,97,100,101,50,100,50,54,97,53,48,102,49,53,92,34,44,92,110,32,32,92,34,102,101,101,53,100,57,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,100,101,50,100,50,54,97,53,48,102,49,53,92,34,44,92,110,32,32,92,34,102,101,101,53,100,57,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,101,102,51,98,50,99,99,98,49,56,49,100,57,57,48,48,48,100,92,34,44,92,110,32,32,92,34,102,102,102,53,102,48,102,101,101,48,100,50,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,101,102,51,98,50,99,99,98,49,56,49,100,57,57,48,48,48,100,92,34,44,92,110,32,32,92,34,102,102,102,53,102,48,102,101,101,48,100,50,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,101,102,51,98,50,99,99,98,49,56,49,100,97,53,48,102,49,53,54,55,48,48,48,100,92,34,92,110,41,46,109,97,112,40,95,99,111,108,111,114,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,48,44,95,114,97,109,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,99,104,101,109,101,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,45,115,105,110,103,108,101,47,82,101,100,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,108,105,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,108,105,99,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,97,114,114,97,121,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,118,97,114,32,109,97,112,32,61,32,97,114,114,97,121,46,109,97,112,59,92,110,118,97,114,32,115,108,105,99,101,32,61,32,97,114,114,97,121,46,115,108,105,99,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,98,97,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,98,97,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,105,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,111,105,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,114,100,105,110,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,114,100,105,110,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,111,114,100,105,110,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,98,97,110,100,40,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,40,48,44,95,111,114,100,105,110,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,46,117,110,107,110,111,119,110,40,117,110,100,101,102,105,110,101,100,41,44,92,110,32,32,32,32,32,32,100,111,109,97,105,110,32,61,32,115,99,97,108,101,46,100,111,109,97,105,110,44,92,110,32,32,32,32,32,32,111,114,100,105,110,97,108,82,97,110,103,101,32,61,32,115,99,97,108,101,46,114,97,110,103,101,44,92,110,32,32,32,32,32,32,114,97,110,103,101,32,61,32,91,48,44,32,49,93,44,92,110,32,32,32,32,32,32,115,116,101,112,44,92,110,32,32,32,32,32,32,98,97,110,100,119,105,100,116,104,44,92,110,32,32,32,32,32,32,114,111,117,110,100,32,61,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,112,97,100,100,105,110,103,73,110,110,101,114,32,61,32,48,44,92,110,32,32,32,32,32,32,112,97,100,100,105,110,103,79,117,116,101,114,32,61,32,48,44,92,110,32,32,32,32,32,32,97,108,105,103,110,32,61,32,48,46,53,59,92,110,92,110,32,32,100,101,108,101,116,101,32,115,99,97,108,101,46,117,110,107,110,111,119,110,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,115,99,97,108,101,40,41,32,123,92,110,32,32,32,32,118,97,114,32,110,32,61,32,100,111,109,97,105,110,40,41,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,114,101,118,101,114,115,101,32,61,32,114,97,110,103,101,91,49,93,32,60,32,114,97,110,103,101,91,48,93,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,114,97,110,103,101,91,114,101,118,101,114,115,101,32,45,32,48,93,44,92,110,32,32,32,32,32,32,32,32,115,116,111,112,32,61,32,114,97,110,103,101,91,49,32,45,32,114,101,118,101,114,115,101,93,59,92,110,32,32,32,32,115,116,101,112,32,61,32,40,115,116,111,112,32,45,32,115,116,97,114,116,41,32,47,32,77,97,116,104,46,109,97,120,40,49,44,32,110,32,45,32,112,97,100,100,105,110,103,73,110,110,101,114,32,43,32,112,97,100,100,105,110,103,79,117,116,101,114,32,42,32,50,41,59,92,110,32,32,32,32,105,102,32,40,114,111,117,110,100,41,32,115,116,101,112,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,116,101,112,41,59,92,110,32,32,32,32,115,116,97,114,116,32,43,61,32,40,115,116,111,112,32,45,32,115,116,97,114,116,32,45,32,115,116,101,112,32,42,32,40,110,32,45,32,112,97,100,100,105,110,103,73,110,110,101,114,41,41,32,42,32,97,108,105,103,110,59,92,110,32,32,32,32,98,97,110,100,119,105,100,116,104,32,61,32,115,116,101,112,32,42,32,40,49,32,45,32,112,97,100,100,105,110,103,73,110,110,101,114,41,59,92,110,32,32,32,32,105,102,32,40,114,111,117,110,100,41,32,115,116,97,114,116,32,61,32,77,97,116,104,46,114,111,117,110,100,40,115,116,97,114,116,41,44,32,98,97,110,100,119,105,100,116,104,32,61,32,77,97,116,104,46,114,111,117,110,100,40,98,97,110,100,119,105,100,116,104,41,59,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,110,103,101,41,40,110,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,105,41,32,123,32,114,101,116,117,114,110,32,115,116,97,114,116,32,43,32,115,116,101,112,32,42,32,105,59,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,111,114,100,105,110,97,108,82,97,110,103,101,40,114,101,118,101,114,115,101,32,63,32,118,97,108,117,101,115,46,114,101,118,101,114,115,101,40,41,32,58,32,118,97,108,117,101,115,41,59,92,110,32,32,125,92,110,92,110,32,32,115,99,97,108,101,46,100,111,109,97,105,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,111,109,97,105,110,40,95,41,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,100,111,109,97,105,110,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,114,97,110,103,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,114,97,110,103,101,32,61,32,91,43,95,91,48,93,44,32,43,95,91,49,93,93,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,114,97,110,103,101,46,115,108,105,99,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,114,97,110,103,101,82,111,117,110,100,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,97,110,103,101,32,61,32,91,43,95,91,48,93,44,32,43,95,91,49,93,93,44,32,114,111,117,110,100,32,61,32,116,114,117,101,44,32,114,101,115,99,97,108,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,98,97,110,100,119,105,100,116,104,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,98,97,110,100,119,105,100,116,104,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,115,116,101,112,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,101,112,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,114,111,117,110,100,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,114,111,117,110,100,32,61,32,33,33,95,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,114,111,117,110,100,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,112,97,100,100,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,97,100,100,105,110,103,73,110,110,101,114,32,61,32,77,97,116,104,46,109,105,110,40,49,44,32,112,97,100,100,105,110,103,79,117,116,101,114,32,61,32,43,95,41,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,112,97,100,100,105,110,103,73,110,110,101,114,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,112,97,100,100,105,110,103,73,110,110,101,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,97,100,100,105,110,103,73,110,110,101,114,32,61,32,77,97,116,104,46,109,105,110,40,49,44,32,95,41,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,112,97,100,100,105,110,103,73,110,110,101,114,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,112,97,100,100,105,110,103,79,117,116,101,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,97,100,100,105,110,103,79,117,116,101,114,32,61,32,43,95,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,112,97,100,100,105,110,103,79,117,116,101,114,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,97,108,105,103,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,97,108,105,103,110,32,61,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,49,44,32,95,41,41,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,97,108,105,103,110,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,98,97,110,100,40,100,111,109,97,105,110,40,41,44,32,114,97,110,103,101,41,92,110,32,32,32,32,32,32,32,32,46,114,111,117,110,100,40,114,111,117,110,100,41,92,110,32,32,32,32,32,32,32,32,46,112,97,100,100,105,110,103,73,110,110,101,114,40,112,97,100,100,105,110,103,73,110,110,101,114,41,92,110,32,32,32,32,32,32,32,32,46,112,97,100,100,105,110,103,79,117,116,101,114,40,112,97,100,100,105,110,103,79,117,116,101,114,41,92,110,32,32,32,32,32,32,32,32,46,97,108,105,103,110,40,97,108,105,103,110,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,110,105,116,82,97,110,103,101,46,97,112,112,108,121,40,114,101,115,99,97,108,101,40,41,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,111,105,110,116,105,115,104,40,115,99,97,108,101,41,32,123,92,110,32,32,118,97,114,32,99,111,112,121,32,61,32,115,99,97,108,101,46,99,111,112,121,59,92,110,92,110,32,32,115,99,97,108,101,46,112,97,100,100,105,110,103,32,61,32,115,99,97,108,101,46,112,97,100,100,105,110,103,79,117,116,101,114,59,92,110,32,32,100,101,108,101,116,101,32,115,99,97,108,101,46,112,97,100,100,105,110,103,73,110,110,101,114,59,92,110,32,32,100,101,108,101,116,101,32,115,99,97,108,101,46,112,97,100,100,105,110,103,79,117,116,101,114,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,111,105,110,116,105,115,104,40,99,111,112,121,40,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,111,105,110,116,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,111,105,110,116,105,115,104,40,98,97,110,100,46,97,112,112,108,121,40,110,117,108,108,44,32,97,114,103,117,109,101,110,116,115,41,46,112,97,100,100,105,110,103,73,110,110,101,114,40,49,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,98,97,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,99,111,110,116,105,110,117,111,117,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,99,111,110,116,105,110,117,111,117,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,112,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,112,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,110,116,105,110,117,111,117,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,100,101,110,116,105,116,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,100,101,110,116,105,116,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,97,110,115,102,111,114,109,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,114,97,110,115,102,111,114,109,101,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,105,110,116,101,114,112,111,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,118,97,108,117,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,105,110,116,101,114,112,111,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,105,110,116,101,114,112,111,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,114,111,117,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,117,110,105,116,32,61,32,91,48,44,32,49,93,59,92,110,92,110,102,117,110,99,116,105,111,110,32,105,100,101,110,116,105,116,121,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,98,32,45,61,32,40,97,32,61,32,43,97,41,41,92,110,32,32,32,32,32,32,63,32,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,40,120,32,45,32,97,41,32,47,32,98,59,32,125,92,110,32,32,32,32,32,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,105,115,78,97,78,40,98,41,32,63,32,78,97,78,32,58,32,48,46,53,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,97,109,112,101,114,40,100,111,109,97,105,110,41,32,123,92,110,32,32,118,97,114,32,97,32,61,32,100,111,109,97,105,110,91,48,93,44,32,98,32,61,32,100,111,109,97,105,110,91,100,111,109,97,105,110,46,108,101,110,103,116,104,32,45,32,49,93,44,32,116,59,92,110,32,32,105,102,32,40,97,32,62,32,98,41,32,116,32,61,32,97,44,32,97,32,61,32,98,44,32,98,32,61,32,116,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,97,44,32,77,97,116,104,46,109,105,110,40,98,44,32,120,41,41,59,32,125,59,92,110,125,92,110,92,110,47,47,32,110,111,114,109,97,108,105,122,101,40,97,44,32,98,41,40,120,41,32,116,97,107,101,115,32,97,32,100,111,109,97,105,110,32,118,97,108,117,101,32,120,32,105,110,32,91,97,44,98,93,32,97,110,100,32,114,101,116,117,114,110,115,32,116,104,101,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,112,97,114,97,109,101,116,101,114,32,116,32,105,110,32,91,48,44,49,93,46,92,110,47,47,32,105,110,116,101,114,112,111,108,97,116,101,40,97,44,32,98,41,40,116,41,32,116,97,107,101,115,32,97,32,112,97,114,97,109,101,116,101,114,32,116,32,105,110,32,91,48,44,49,93,32,97,110,100,32,114,101,116,117,114,110,115,32,116,104,101,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,114,97,110,103,101,32,118,97,108,117,101,32,120,32,105,110,32,91,97,44,98,93,46,92,110,102,117,110,99,116,105,111,110,32,98,105,109,97,112,40,100,111,109,97,105,110,44,32,114,97,110,103,101,44,32,105,110,116,101,114,112,111,108,97,116,101,41,32,123,92,110,32,32,118,97,114,32,100,48,32,61,32,100,111,109,97,105,110,91,48,93,44,32,100,49,32,61,32,100,111,109,97,105,110,91,49,93,44,32,114,48,32,61,32,114,97,110,103,101,91,48,93,44,32,114,49,32,61,32,114,97,110,103,101,91,49,93,59,92,110,32,32,105,102,32,40,100,49,32,60,32,100,48,41,32,100,48,32,61,32,110,111,114,109,97,108,105,122,101,40,100,49,44,32,100,48,41,44,32,114,48,32,61,32,105,110,116,101,114,112,111,108,97,116,101,40,114,49,44,32,114,48,41,59,92,110,32,32,101,108,115,101,32,100,48,32,61,32,110,111,114,109,97,108,105,122,101,40,100,48,44,32,100,49,41,44,32,114,48,32,61,32,105,110,116,101,114,112,111,108,97,116,101,40,114,48,44,32,114,49,41,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,114,48,40,100,48,40,120,41,41,59,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,111,108,121,109,97,112,40,100,111,109,97,105,110,44,32,114,97,110,103,101,44,32,105,110,116,101,114,112,111,108,97,116,101,41,32,123,92,110,32,32,118,97,114,32,106,32,61,32,77,97,116,104,46,109,105,110,40,100,111,109,97,105,110,46,108,101,110,103,116,104,44,32,114,97,110,103,101,46,108,101,110,103,116,104,41,32,45,32,49,44,92,110,32,32,32,32,32,32,100,32,61,32,110,101,119,32,65,114,114,97,121,40,106,41,44,92,110,32,32,32,32,32,32,114,32,61,32,110,101,119,32,65,114,114,97,121,40,106,41,44,92,110,32,32,32,32,32,32,105,32,61,32,45,49,59,92,110,92,110,32,32,47,47,32,82,101,118,101,114,115,101,32,100,101,115,99,101,110,100,105,110,103,32,100,111,109,97,105,110,115,46,92,110,32,32,105,102,32,40,100,111,109,97,105,110,91,106,93,32,60,32,100,111,109,97,105,110,91,48,93,41,32,123,92,110,32,32,32,32,100,111,109,97,105,110,32,61,32,100,111,109,97,105,110,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,32,32,114,97,110,103,101,32,61,32,114,97,110,103,101,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,125,92,110,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,106,41,32,123,92,110,32,32,32,32,100,91,105,93,32,61,32,110,111,114,109,97,108,105,122,101,40,100,111,109,97,105,110,91,105,93,44,32,100,111,109,97,105,110,91,105,32,43,32,49,93,41,59,92,110,32,32,32,32,114,91,105,93,32,61,32,105,110,116,101,114,112,111,108,97,116,101,40,114,97,110,103,101,91,105,93,44,32,114,97,110,103,101,91,105,32,43,32,49,93,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,98,105,115,101,99,116,41,40,100,111,109,97,105,110,44,32,120,44,32,49,44,32,106,41,32,45,32,49,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,91,105,93,40,100,91,105,93,40,120,41,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,112,121,40,115,111,117,114,99,101,44,32,116,97,114,103,101,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,46,100,111,109,97,105,110,40,115,111,117,114,99,101,46,100,111,109,97,105,110,40,41,41,92,110,32,32,32,32,32,32,46,114,97,110,103,101,40,115,111,117,114,99,101,46,114,97,110,103,101,40,41,41,92,110,32,32,32,32,32,32,46,105,110,116,101,114,112,111,108,97,116,101,40,115,111,117,114,99,101,46,105,110,116,101,114,112,111,108,97,116,101,40,41,41,92,110,32,32,32,32,32,32,46,99,108,97,109,112,40,115,111,117,114,99,101,46,99,108,97,109,112,40,41,41,92,110,32,32,32,32,32,32,46,117,110,107,110,111,119,110,40,115,111,117,114,99,101,46,117,110,107,110,111,119,110,40,41,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,101,114,40,41,32,123,92,110,32,32,118,97,114,32,100,111,109,97,105,110,32,61,32,117,110,105,116,44,92,110,32,32,32,32,32,32,114,97,110,103,101,32,61,32,117,110,105,116,44,92,110,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,32,61,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,32,32,116,114,97,110,115,102,111,114,109,44,92,110,32,32,32,32,32,32,117,110,116,114,97,110,115,102,111,114,109,44,92,110,32,32,32,32,32,32,117,110,107,110,111,119,110,44,92,110,32,32,32,32,32,32,99,108,97,109,112,32,61,32,105,100,101,110,116,105,116,121,44,92,110,32,32,32,32,32,32,112,105,101,99,101,119,105,115,101,44,92,110,32,32,32,32,32,32,111,117,116,112,117,116,44,92,110,32,32,32,32,32,32,105,110,112,117,116,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,115,99,97,108,101,40,41,32,123,92,110,32,32,32,32,112,105,101,99,101,119,105,115,101,32,61,32,77,97,116,104,46,109,105,110,40,100,111,109,97,105,110,46,108,101,110,103,116,104,44,32,114,97,110,103,101,46,108,101,110,103,116,104,41,32,62,32,50,32,63,32,112,111,108,121,109,97,112,32,58,32,98,105,109,97,112,59,92,110,32,32,32,32,111,117,116,112,117,116,32,61,32,105,110,112,117,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,99,97,108,101,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,78,97,78,40,120,32,61,32,43,120,41,32,63,32,117,110,107,110,111,119,110,32,58,32,40,111,117,116,112,117,116,32,124,124,32,40,111,117,116,112,117,116,32,61,32,112,105,101,99,101,119,105,115,101,40,100,111,109,97,105,110,46,109,97,112,40,116,114,97,110,115,102,111,114,109,41,44,32,114,97,110,103,101,44,32,105,110,116,101,114,112,111,108,97,116,101,41,41,41,40,116,114,97,110,115,102,111,114,109,40,99,108,97,109,112,40,120,41,41,41,59,92,110,32,32,125,92,110,92,110,32,32,115,99,97,108,101,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,108,97,109,112,40,117,110,116,114,97,110,115,102,111,114,109,40,40,105,110,112,117,116,32,124,124,32,40,105,110,112,117,116,32,61,32,112,105,101,99,101,119,105,115,101,40,114,97,110,103,101,44,32,100,111,109,97,105,110,46,109,97,112,40,116,114,97,110,115,102,111,114,109,41,44,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,41,41,40,121,41,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,100,111,109,97,105,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,111,109,97,105,110,32,61,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,112,46,99,97,108,108,40,95,44,32,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,44,32,99,108,97,109,112,32,61,61,61,32,105,100,101,110,116,105,116,121,32,124,124,32,40,99,108,97,109,112,32,61,32,99,108,97,109,112,101,114,40,100,111,109,97,105,110,41,41,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,100,111,109,97,105,110,46,115,108,105,99,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,114,97,110,103,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,114,97,110,103,101,32,61,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,108,105,99,101,46,99,97,108,108,40,95,41,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,114,97,110,103,101,46,115,108,105,99,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,114,97,110,103,101,82,111,117,110,100,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,97,110,103,101,32,61,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,108,105,99,101,46,99,97,108,108,40,95,41,44,32,105,110,116,101,114,112,111,108,97,116,101,32,61,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,114,101,115,99,97,108,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,99,108,97,109,112,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,99,108,97,109,112,32,61,32,95,32,63,32,99,108,97,109,112,101,114,40,100,111,109,97,105,110,41,32,58,32,105,100,101,110,116,105,116,121,44,32,115,99,97,108,101,41,32,58,32,99,108,97,109,112,32,33,61,61,32,105,100,101,110,116,105,116,121,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,105,110,116,101,114,112,111,108,97,116,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,105,110,116,101,114,112,111,108,97,116,101,32,61,32,95,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,105,110,116,101,114,112,111,108,97,116,101,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,117,110,107,110,111,119,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,117,110,107,110,111,119,110,32,61,32,95,44,32,115,99,97,108,101,41,32,58,32,117,110,107,110,111,119,110,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,32,117,41,32,123,92,110,32,32,32,32,116,114,97,110,115,102,111,114,109,32,61,32,116,44,32,117,110,116,114,97,110,115,102,111,114,109,32,61,32,117,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,99,97,108,101,40,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,110,116,105,110,117,111,117,115,40,116,114,97,110,115,102,111,114,109,44,32,117,110,116,114,97,110,115,102,111,114,109,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,114,97,110,115,102,111,114,109,101,114,40,41,40,116,114,97,110,115,102,111,114,109,44,32,117,110,116,114,97,110,115,102,111,114,109,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,99,111,110,116,105,110,117,111,117,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,100,105,118,101,114,103,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,100,105,118,101,114,103,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,105,118,101,114,103,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,105,118,101,114,103,105,110,103,76,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,105,118,101,114,103,105,110,103,76,111,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,105,118,101,114,103,105,110,103,80,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,105,118,101,114,103,105,110,103,80,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,105,118,101,114,103,105,110,103,83,113,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,105,118,101,114,103,105,110,103,83,113,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,105,118,101,114,103,105,110,103,83,121,109,108,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,105,118,101,114,103,105,110,103,83,121,109,108,111,103,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,116,105,110,117,111,117,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,99,111,110,116,105,110,117,111,117,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,101,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,101,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,105,110,101,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,111,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,111,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,111,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,108,111,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,108,111,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,115,121,109,108,111,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,112,111,119,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,101,114,40,41,32,123,92,110,32,32,118,97,114,32,120,48,32,61,32,48,44,92,110,32,32,32,32,32,32,120,49,32,61,32,48,46,53,44,92,110,32,32,32,32,32,32,120,50,32,61,32,49,44,92,110,32,32,32,32,32,32,116,48,44,92,110,32,32,32,32,32,32,116,49,44,92,110,32,32,32,32,32,32,116,50,44,92,110,32,32,32,32,32,32,107,49,48,44,92,110,32,32,32,32,32,32,107,50,49,44,92,110,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,111,114,32,61,32,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,100,101,110,116,105,116,121,44,92,110,32,32,32,32,32,32,116,114,97,110,115,102,111,114,109,44,92,110,32,32,32,32,32,32,99,108,97,109,112,32,61,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,117,110,107,110,111,119,110,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,99,97,108,101,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,78,97,78,40,120,32,61,32,43,120,41,32,63,32,117,110,107,110,111,119,110,32,58,32,40,120,32,61,32,48,46,53,32,43,32,40,40,120,32,61,32,43,116,114,97,110,115,102,111,114,109,40,120,41,41,32,45,32,116,49,41,32,42,32,40,120,32,60,32,116,49,32,63,32,107,49,48,32,58,32,107,50,49,41,44,32,105,110,116,101,114,112,111,108,97,116,111,114,40,99,108,97,109,112,32,63,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,49,44,32,120,41,41,32,58,32,120,41,41,59,92,110,32,32,125,92,110,92,110,32,32,115,99,97,108,101,46,100,111,109,97,105,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,48,32,61,32,116,114,97,110,115,102,111,114,109,40,120,48,32,61,32,43,95,91,48,93,41,44,32,116,49,32,61,32,116,114,97,110,115,102,111,114,109,40,120,49,32,61,32,43,95,91,49,93,41,44,32,116,50,32,61,32,116,114,97,110,115,102,111,114,109,40,120,50,32,61,32,43,95,91,50,93,41,44,32,107,49,48,32,61,32,116,48,32,61,61,61,32,116,49,32,63,32,48,32,58,32,48,46,53,32,47,32,40,116,49,32,45,32,116,48,41,44,32,107,50,49,32,61,32,116,49,32,61,61,61,32,116,50,32,63,32,48,32,58,32,48,46,53,32,47,32,40,116,50,32,45,32,116,49,41,44,32,115,99,97,108,101,41,32,58,32,91,120,48,44,32,120,49,44,32,120,50,93,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,99,108,97,109,112,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,99,108,97,109,112,32,61,32,33,33,95,44,32,115,99,97,108,101,41,32,58,32,99,108,97,109,112,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,105,110,116,101,114,112,111,108,97,116,111,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,105,110,116,101,114,112,111,108,97,116,111,114,32,61,32,95,44,32,115,99,97,108,101,41,32,58,32,105,110,116,101,114,112,111,108,97,116,111,114,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,117,110,107,110,111,119,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,117,110,107,110,111,119,110,32,61,32,95,44,32,115,99,97,108,101,41,32,58,32,117,110,107,110,111,119,110,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,116,114,97,110,115,102,111,114,109,32,61,32,116,44,32,116,48,32,61,32,116,40,120,48,41,44,32,116,49,32,61,32,116,40,120,49,41,44,32,116,50,32,61,32,116,40,120,50,41,44,32,107,49,48,32,61,32,116,48,32,61,61,61,32,116,49,32,63,32,48,32,58,32,48,46,53,32,47,32,40,116,49,32,45,32,116,48,41,44,32,107,50,49,32,61,32,116,49,32,61,61,61,32,116,50,32,63,32,48,32,58,32,48,46,53,32,47,32,40,116,50,32,45,32,116,49,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,105,118,101,114,103,105,110,103,40,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,40,48,44,95,108,105,110,101,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,108,105,110,101,97,114,105,115,104,41,40,116,114,97,110,115,102,111,114,109,101,114,40,41,40,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,100,101,110,116,105,116,121,41,41,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,115,101,113,117,101,110,116,105,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,111,112,121,41,40,115,99,97,108,101,44,32,100,105,118,101,114,103,105,110,103,40,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,110,105,116,73,110,116,101,114,112,111,108,97,116,111,114,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,105,118,101,114,103,105,110,103,76,111,103,40,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,40,48,44,95,108,111,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,108,111,103,103,105,115,104,41,40,116,114,97,110,115,102,111,114,109,101,114,40,41,41,46,100,111,109,97,105,110,40,91,48,46,49,44,32,49,44,32,49,48,93,41,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,115,101,113,117,101,110,116,105,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,111,112,121,41,40,115,99,97,108,101,44,32,100,105,118,101,114,103,105,110,103,76,111,103,40,41,41,46,98,97,115,101,40,115,99,97,108,101,46,98,97,115,101,40,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,110,105,116,73,110,116,101,114,112,111,108,97,116,111,114,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,105,118,101,114,103,105,110,103,83,121,109,108,111,103,40,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,40,48,44,95,115,121,109,108,111,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,121,109,108,111,103,105,115,104,41,40,116,114,97,110,115,102,111,114,109,101,114,40,41,41,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,115,101,113,117,101,110,116,105,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,111,112,121,41,40,115,99,97,108,101,44,32,100,105,118,101,114,103,105,110,103,83,121,109,108,111,103,40,41,41,46,99,111,110,115,116,97,110,116,40,115,99,97,108,101,46,99,111,110,115,116,97,110,116,40,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,110,105,116,73,110,116,101,114,112,111,108,97,116,111,114,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,105,118,101,114,103,105,110,103,80,111,119,40,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,40,48,44,95,112,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,112,111,119,105,115,104,41,40,116,114,97,110,115,102,111,114,109,101,114,40,41,41,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,115,101,113,117,101,110,116,105,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,111,112,121,41,40,115,99,97,108,101,44,32,100,105,118,101,114,103,105,110,103,80,111,119,40,41,41,46,101,120,112,111,110,101,110,116,40,115,99,97,108,101,46,101,120,112,111,110,101,110,116,40,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,110,105,116,73,110,116,101,114,112,111,108,97,116,111,114,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,105,118,101,114,103,105,110,103,83,113,114,116,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,105,118,101,114,103,105,110,103,80,111,119,46,97,112,112,108,121,40,110,117,108,108,44,32,97,114,103,117,109,101,110,116,115,41,46,101,120,112,111,110,101,110,116,40,48,46,53,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,100,105,118,101,114,103,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,100,101,110,116,105,116,121,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,101,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,101,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,105,110,101,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,105,100,101,110,116,105,116,121,40,100,111,109,97,105,110,41,32,123,92,110,32,32,118,97,114,32,117,110,107,110,111,119,110,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,99,97,108,101,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,78,97,78,40,120,32,61,32,43,120,41,32,63,32,117,110,107,110,111,119,110,32,58,32,120,59,92,110,32,32,125,92,110,92,110,32,32,115,99,97,108,101,46,105,110,118,101,114,116,32,61,32,115,99,97,108,101,59,92,110,92,110,32,32,115,99,97,108,101,46,100,111,109,97,105,110,32,61,32,115,99,97,108,101,46,114,97,110,103,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,111,109,97,105,110,32,61,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,112,46,99,97,108,108,40,95,44,32,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,44,32,115,99,97,108,101,41,32,58,32,100,111,109,97,105,110,46,115,108,105,99,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,117,110,107,110,111,119,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,117,110,107,110,111,119,110,32,61,32,95,44,32,115,99,97,108,101,41,32,58,32,117,110,107,110,111,119,110,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,100,101,110,116,105,116,121,40,100,111,109,97,105,110,41,46,117,110,107,110,111,119,110,40,117,110,107,110,111,119,110,41,59,92,110,32,32,125,59,92,110,92,110,32,32,100,111,109,97,105,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,112,46,99,97,108,108,40,100,111,109,97,105,110,44,32,95,110,117,109,98,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,32,58,32,91,48,44,32,49,93,59,92,110,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,108,105,110,101,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,108,105,110,101,97,114,105,115,104,41,40,115,99,97,108,101,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,66,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,97,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,68,105,118,101,114,103,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,68,105,118,101,114,103,105,110,103,76,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,100,105,118,101,114,103,105,110,103,76,111,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,68,105,118,101,114,103,105,110,103,80,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,100,105,118,101,114,103,105,110,103,80,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,68,105,118,101,114,103,105,110,103,83,113,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,100,105,118,101,114,103,105,110,103,83,113,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,68,105,118,101,114,103,105,110,103,83,121,109,108,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,118,101,114,103,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,100,105,118,101,114,103,105,110,103,83,121,109,108,111,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,73,100,101,110,116,105,116,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,73,109,112,108,105,99,105,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,111,114,100,105,110,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,105,109,112,108,105,99,105,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,76,105,110,101,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,105,110,101,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,76,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,111,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,79,114,100,105,110,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,111,114,100,105,110,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,80,111,105,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,98,97,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,111,105,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,80,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,81,117,97,110,116,105,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,113,117,97,110,116,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,81,117,97,110,116,105,122,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,113,117,97,110,116,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,76,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,115,101,113,117,101,110,116,105,97,108,76,111,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,80,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,115,101,113,117,101,110,116,105,97,108,80,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,83,113,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,115,101,113,117,101,110,116,105,97,108,83,113,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,83,121,109,108,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,113,117,101,110,116,105,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,115,101,113,117,101,110,116,105,97,108,83,121,109,108,111,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,113,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,113,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,121,109,108,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,121,109,108,111,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,84,104,114,101,115,104,111,108,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,104,114,101,115,104,111,108,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,84,105,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,85,116,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,84,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,99,107,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,105,99,107,70,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,97,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,98,97,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,100,101,110,116,105,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,100,101,110,116,105,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,101,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,101,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,105,110,101,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,111,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,111,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,111,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,108,111,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,108,111,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,115,121,109,108,111,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,114,100,105,110,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,114,100,105,110,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,111,114,100,105,110,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,112,111,119,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,113,117,97,110,116,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,113,117,97,110,116,105,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,113,117,97,110,116,105,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,113,117,97,110,116,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,113,117,97,110,116,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,113,117,97,110,116,105,122,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,104,114,101,115,104,111,108,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,104,114,101,115,104,111,108,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,116,104,114,101,115,104,111,108,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,116,105,109,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,99,84,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,117,116,99,84,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,117,116,99,84,105,109,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,118,101,114,103,105,110,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,118,101,114,103,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,100,105,118,101,114,103,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,105,99,107,70,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,105,99,107,70,111,114,109,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,116,105,99,107,70,111,114,109,97,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,105,116,73,110,116,101,114,112,111,108,97,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,110,105,116,73,110,116,101,114,112,111,108,97,116,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,105,116,82,97,110,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,110,105,116,82,97,110,103,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,82,97,110,103,101,40,100,111,109,97,105,110,44,32,114,97,110,103,101,41,32,123,92,110,32,32,115,119,105,116,99,104,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,99,97,115,101,32,48,58,32,98,114,101,97,107,59,92,110,32,32,32,32,99,97,115,101,32,49,58,32,116,104,105,115,46,114,97,110,103,101,40,100,111,109,97,105,110,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,116,104,105,115,46,114,97,110,103,101,40,114,97,110,103,101,41,46,100,111,109,97,105,110,40,100,111,109,97,105,110,41,59,32,98,114,101,97,107,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,73,110,116,101,114,112,111,108,97,116,111,114,40,100,111,109,97,105,110,44,32,105,110,116,101,114,112,111,108,97,116,111,114,41,32,123,92,110,32,32,115,119,105,116,99,104,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,99,97,115,101,32,48,58,32,98,114,101,97,107,59,92,110,32,32,32,32,99,97,115,101,32,49,58,32,116,104,105,115,46,105,110,116,101,114,112,111,108,97,116,111,114,40,100,111,109,97,105,110,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,100,101,102,97,117,108,116,58,32,116,104,105,115,46,105,110,116,101,114,112,111,108,97,116,111,114,40,105,110,116,101,114,112,111,108,97,116,111,114,41,46,100,111,109,97,105,110,40,100,111,109,97,105,110,41,59,32,98,114,101,97,107,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,105,110,101,97,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,105,110,101,97,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,105,110,101,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,101,97,114,105,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,105,110,101,97,114,105,115,104,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,116,105,110,117,111,117,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,99,111,110,116,105,110,117,111,117,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,105,99,107,70,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,105,99,107,70,111,114,109,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,116,105,99,107,70,111,114,109,97,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,108,105,110,101,97,114,105,115,104,40,115,99,97,108,101,41,32,123,92,110,32,32,118,97,114,32,100,111,109,97,105,110,32,61,32,115,99,97,108,101,46,100,111,109,97,105,110,59,92,110,92,110,32,32,115,99,97,108,101,46,116,105,99,107,115,32,61,32,102,117,110,99,116,105,111,110,40,99,111,117,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,100,32,61,32,100,111,109,97,105,110,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,105,99,107,115,41,40,100,91,48,93,44,32,100,91,100,46,108,101,110,103,116,104,32,45,32,49,93,44,32,99,111,117,110,116,32,61,61,32,110,117,108,108,32,63,32,49,48,32,58,32,99,111,117,110,116,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,116,105,99,107,70,111,114,109,97,116,32,61,32,102,117,110,99,116,105,111,110,40,99,111,117,110,116,44,32,115,112,101,99,105,102,105,101,114,41,32,123,92,110,32,32,32,32,118,97,114,32,100,32,61,32,100,111,109,97,105,110,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,116,105,99,107,70,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,91,48,93,44,32,100,91,100,46,108,101,110,103,116,104,32,45,32,49,93,44,32,99,111,117,110,116,32,61,61,32,110,117,108,108,32,63,32,49,48,32,58,32,99,111,117,110,116,44,32,115,112,101,99,105,102,105,101,114,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,110,105,99,101,32,61,32,102,117,110,99,116,105,111,110,40,99,111,117,110,116,41,32,123,92,110,32,32,32,32,105,102,32,40,99,111,117,110,116,32,61,61,32,110,117,108,108,41,32,99,111,117,110,116,32,61,32,49,48,59,92,110,92,110,32,32,32,32,118,97,114,32,100,32,61,32,100,111,109,97,105,110,40,41,44,92,110,32,32,32,32,32,32,32,32,105,48,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,105,49,32,61,32,100,46,108,101,110,103,116,104,32,45,32,49,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,100,91,105,48,93,44,92,110,32,32,32,32,32,32,32,32,115,116,111,112,32,61,32,100,91,105,49,93,44,92,110,32,32,32,32,32,32,32,32,115,116,101,112,59,92,110,92,110,32,32,32,32,105,102,32,40,115,116,111,112,32,60,32,115,116,97,114,116,41,32,123,92,110,32,32,32,32,32,32,115,116,101,112,32,61,32,115,116,97,114,116,44,32,115,116,97,114,116,32,61,32,115,116,111,112,44,32,115,116,111,112,32,61,32,115,116,101,112,59,92,110,32,32,32,32,32,32,115,116,101,112,32,61,32,105,48,44,32,105,48,32,61,32,105,49,44,32,105,49,32,61,32,115,116,101,112,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,116,101,112,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,105,99,107,73,110,99,114,101,109,101,110,116,41,40,115,116,97,114,116,44,32,115,116,111,112,44,32,99,111,117,110,116,41,59,92,110,92,110,32,32,32,32,105,102,32,40,115,116,101,112,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,116,97,114,116,32,47,32,115,116,101,112,41,32,42,32,115,116,101,112,59,92,110,32,32,32,32,32,32,115,116,111,112,32,61,32,77,97,116,104,46,99,101,105,108,40,115,116,111,112,32,47,32,115,116,101,112,41,32,42,32,115,116,101,112,59,92,110,32,32,32,32,32,32,115,116,101,112,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,105,99,107,73,110,99,114,101,109,101,110,116,41,40,115,116,97,114,116,44,32,115,116,111,112,44,32,99,111,117,110,116,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,116,101,112,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,32,61,32,77,97,116,104,46,99,101,105,108,40,115,116,97,114,116,32,42,32,115,116,101,112,41,32,47,32,115,116,101,112,59,92,110,32,32,32,32,32,32,115,116,111,112,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,116,111,112,32,42,32,115,116,101,112,41,32,47,32,115,116,101,112,59,92,110,32,32,32,32,32,32,115,116,101,112,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,105,99,107,73,110,99,114,101,109,101,110,116,41,40,115,116,97,114,116,44,32,115,116,111,112,44,32,99,111,117,110,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,115,116,101,112,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,100,91,105,48,93,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,116,97,114,116,32,47,32,115,116,101,112,41,32,42,32,115,116,101,112,59,92,110,32,32,32,32,32,32,100,91,105,49,93,32,61,32,77,97,116,104,46,99,101,105,108,40,115,116,111,112,32,47,32,115,116,101,112,41,32,42,32,115,116,101,112,59,92,110,32,32,32,32,32,32,100,111,109,97,105,110,40,100,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,116,101,112,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,100,91,105,48,93,32,61,32,77,97,116,104,46,99,101,105,108,40,115,116,97,114,116,32,42,32,115,116,101,112,41,32,47,32,115,116,101,112,59,92,110,32,32,32,32,32,32,100,91,105,49,93,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,116,111,112,32,42,32,115,116,101,112,41,32,47,32,115,116,101,112,59,92,110,32,32,32,32,32,32,100,111,109,97,105,110,40,100,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,105,110,101,97,114,40,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,40,48,44,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,100,101,110,116,105,116,121,44,32,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,100,101,110,116,105,116,121,41,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,112,121,41,40,115,99,97,108,101,44,32,108,105,110,101,97,114,40,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,110,105,116,82,97,110,103,101,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,108,105,110,101,97,114,105,115,104,40,115,99,97,108,101,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,105,110,101,97,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,111,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,111,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,111,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,111,103,103,105,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,111,103,103,105,115,104,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,102,111,114,109,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,105,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,105,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,110,105,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,116,105,110,117,111,117,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,99,111,110,116,105,110,117,111,117,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,76,111,103,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,108,111,103,40,120,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,69,120,112,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,101,120,112,40,120,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,76,111,103,110,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,45,77,97,116,104,46,108,111,103,40,45,120,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,69,120,112,110,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,45,77,97,116,104,46,101,120,112,40,45,120,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,111,119,49,48,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,120,41,32,63,32,43,40,92,34,49,101,92,34,32,43,32,120,41,32,58,32,120,32,60,32,48,32,63,32,48,32,58,32,120,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,111,119,112,40,98,97,115,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,98,97,115,101,32,61,61,61,32,49,48,32,63,32,112,111,119,49,48,92,110,32,32,32,32,32,32,58,32,98,97,115,101,32,61,61,61,32,77,97,116,104,46,69,32,63,32,77,97,116,104,46,101,120,112,92,110,32,32,32,32,32,32,58,32,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,98,97,115,101,44,32,120,41,59,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,111,103,112,40,98,97,115,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,98,97,115,101,32,61,61,61,32,77,97,116,104,46,69,32,63,32,77,97,116,104,46,108,111,103,92,110,32,32,32,32,32,32,58,32,98,97,115,101,32,61,61,61,32,49,48,32,38,38,32,77,97,116,104,46,108,111,103,49,48,92,110,32,32,32,32,32,32,124,124,32,98,97,115,101,32,61,61,61,32,50,32,38,38,32,77,97,116,104,46,108,111,103,50,92,110,32,32,32,32,32,32,124,124,32,40,98,97,115,101,32,61,32,77,97,116,104,46,108,111,103,40,98,97,115,101,41,44,32,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,77,97,116,104,46,108,111,103,40,120,41,32,47,32,98,97,115,101,59,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,102,108,101,99,116,40,102,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,45,102,40,45,120,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,111,103,103,105,115,104,40,116,114,97,110,115,102,111,114,109,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,116,114,97,110,115,102,111,114,109,40,116,114,97,110,115,102,111,114,109,76,111,103,44,32,116,114,97,110,115,102,111,114,109,69,120,112,41,44,92,110,32,32,32,32,32,32,100,111,109,97,105,110,32,61,32,115,99,97,108,101,46,100,111,109,97,105,110,44,92,110,32,32,32,32,32,32,98,97,115,101,32,61,32,49,48,44,92,110,32,32,32,32,32,32,108,111,103,115,44,92,110,32,32,32,32,32,32,112,111,119,115,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,115,99,97,108,101,40,41,32,123,92,110,32,32,32,32,108,111,103,115,32,61,32,108,111,103,112,40,98,97,115,101,41,44,32,112,111,119,115,32,61,32,112,111,119,112,40,98,97,115,101,41,59,92,110,32,32,32,32,105,102,32,40,100,111,109,97,105,110,40,41,91,48,93,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,108,111,103,115,32,61,32,114,101,102,108,101,99,116,40,108,111,103,115,41,44,32,112,111,119,115,32,61,32,114,101,102,108,101,99,116,40,112,111,119,115,41,59,92,110,32,32,32,32,32,32,116,114,97,110,115,102,111,114,109,40,116,114,97,110,115,102,111,114,109,76,111,103,110,44,32,116,114,97,110,115,102,111,114,109,69,120,112,110,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,114,97,110,115,102,111,114,109,40,116,114,97,110,115,102,111,114,109,76,111,103,44,32,116,114,97,110,115,102,111,114,109,69,120,112,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,32,32,125,92,110,92,110,32,32,115,99,97,108,101,46,98,97,115,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,98,97,115,101,32,61,32,43,95,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,98,97,115,101,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,100,111,109,97,105,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,111,109,97,105,110,40,95,41,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,100,111,109,97,105,110,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,116,105,99,107,115,32,61,32,102,117,110,99,116,105,111,110,40,99,111,117,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,100,32,61,32,100,111,109,97,105,110,40,41,44,92,110,32,32,32,32,32,32,32,32,117,32,61,32,100,91,48,93,44,92,110,32,32,32,32,32,32,32,32,118,32,61,32,100,91,100,46,108,101,110,103,116,104,32,45,32,49,93,44,92,110,32,32,32,32,32,32,32,32,114,59,92,110,92,110,32,32,32,32,105,102,32,40,114,32,61,32,118,32,60,32,117,41,32,105,32,61,32,117,44,32,117,32,61,32,118,44,32,118,32,61,32,105,59,92,110,92,110,32,32,32,32,118,97,114,32,105,32,61,32,108,111,103,115,40,117,41,44,92,110,32,32,32,32,32,32,32,32,106,32,61,32,108,111,103,115,40,118,41,44,92,110,32,32,32,32,32,32,32,32,112,44,92,110,32,32,32,32,32,32,32,32,107,44,92,110,32,32,32,32,32,32,32,32,116,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,99,111,117,110,116,32,61,61,32,110,117,108,108,32,63,32,49,48,32,58,32,43,99,111,117,110,116,44,92,110,32,32,32,32,32,32,32,32,122,32,61,32,91,93,59,92,110,92,110,32,32,32,32,105,102,32,40,33,40,98,97,115,101,32,37,32,49,41,32,38,38,32,106,32,45,32,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,105,32,61,32,77,97,116,104,46,114,111,117,110,100,40,105,41,32,45,32,49,44,32,106,32,61,32,77,97,116,104,46,114,111,117,110,100,40,106,41,32,43,32,49,59,92,110,32,32,32,32,32,32,105,102,32,40,117,32,62,32,48,41,32,102,111,114,32,40,59,32,105,32,60,32,106,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,107,32,61,32,49,44,32,112,32,61,32,112,111,119,115,40,105,41,59,32,107,32,60,32,98,97,115,101,59,32,43,43,107,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,32,61,32,112,32,42,32,107,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,32,60,32,117,41,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,32,62,32,118,41,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,122,46,112,117,115,104,40,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,102,111,114,32,40,59,32,105,32,60,32,106,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,107,32,61,32,98,97,115,101,32,45,32,49,44,32,112,32,61,32,112,111,119,115,40,105,41,59,32,107,32,62,61,32,49,59,32,45,45,107,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,32,61,32,112,32,42,32,107,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,32,60,32,117,41,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,32,62,32,118,41,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,122,46,112,117,115,104,40,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,122,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,105,99,107,115,41,40,105,44,32,106,44,32,77,97,116,104,46,109,105,110,40,106,32,45,32,105,44,32,110,41,41,46,109,97,112,40,112,111,119,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,32,63,32,122,46,114,101,118,101,114,115,101,40,41,32,58,32,122,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,116,105,99,107,70,111,114,109,97,116,32,61,32,102,117,110,99,116,105,111,110,40,99,111,117,110,116,44,32,115,112,101,99,105,102,105,101,114,41,32,123,92,110,32,32,32,32,105,102,32,40,115,112,101,99,105,102,105,101,114,32,61,61,32,110,117,108,108,41,32,115,112,101,99,105,102,105,101,114,32,61,32,98,97,115,101,32,61,61,61,32,49,48,32,63,32,92,34,46,48,101,92,34,32,58,32,92,34,44,92,34,59,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,115,112,101,99,105,102,105,101,114,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,115,112,101,99,105,102,105,101,114,32,61,32,40,48,44,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,102,111,114,109,97,116,41,40,115,112,101,99,105,102,105,101,114,41,59,92,110,32,32,32,32,105,102,32,40,99,111,117,110,116,32,61,61,61,32,73,110,102,105,110,105,116,121,41,32,114,101,116,117,114,110,32,115,112,101,99,105,102,105,101,114,59,92,110,32,32,32,32,105,102,32,40,99,111,117,110,116,32,61,61,32,110,117,108,108,41,32,99,111,117,110,116,32,61,32,49,48,59,92,110,32,32,32,32,118,97,114,32,107,32,61,32,77,97,116,104,46,109,97,120,40,49,44,32,98,97,115,101,32,42,32,99,111,117,110,116,32,47,32,115,99,97,108,101,46,116,105,99,107,115,40,41,46,108,101,110,103,116,104,41,59,32,47,47,32,84,79,68,79,32,102,97,115,116,32,101,115,116,105,109,97,116,101,63,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,32,61,32,100,32,47,32,112,111,119,115,40,77,97,116,104,46,114,111,117,110,100,40,108,111,103,115,40,100,41,41,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,32,42,32,98,97,115,101,32,60,32,98,97,115,101,32,45,32,48,46,53,41,32,105,32,42,61,32,98,97,115,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,32,60,61,32,107,32,63,32,115,112,101,99,105,102,105,101,114,40,100,41,32,58,32,92,34,92,34,59,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,110,105,99,101,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,111,109,97,105,110,40,40,48,44,95,110,105,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,111,109,97,105,110,40,41,44,32,123,92,110,32,32,32,32,32,32,102,108,111,111,114,58,32,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,112,111,119,115,40,77,97,116,104,46,102,108,111,111,114,40,108,111,103,115,40,120,41,41,41,59,32,125,44,92,110,32,32,32,32,32,32,99,101,105,108,58,32,102,117,110,99,116,105,111,110,40,120,41,32,123,32,114,101,116,117,114,110,32,112,111,119,115,40,77,97,116,104,46,99,101,105,108,40,108,111,103,115,40,120,41,41,41,59,32,125,92,110,32,32,32,32,125,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,111,103,40,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,108,111,103,103,105,115,104,40,40,48,44,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,114,97,110,115,102,111,114,109,101,114,41,40,41,41,46,100,111,109,97,105,110,40,91,49,44,32,49,48,93,41,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,111,112,121,41,40,115,99,97,108,101,44,32,108,111,103,40,41,41,46,98,97,115,101,40,115,99,97,108,101,46,98,97,115,101,40,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,110,105,116,82,97,110,103,101,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,111,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,110,105,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,110,105,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,100,111,109,97,105,110,44,32,105,110,116,101,114,118,97,108,41,32,123,92,110,32,32,100,111,109,97,105,110,32,61,32,100,111,109,97,105,110,46,115,108,105,99,101,40,41,59,92,110,92,110,32,32,118,97,114,32,105,48,32,61,32,48,44,92,110,32,32,32,32,32,32,105,49,32,61,32,100,111,109,97,105,110,46,108,101,110,103,116,104,32,45,32,49,44,92,110,32,32,32,32,32,32,120,48,32,61,32,100,111,109,97,105,110,91,105,48,93,44,92,110,32,32,32,32,32,32,120,49,32,61,32,100,111,109,97,105,110,91,105,49,93,44,92,110,32,32,32,32,32,32,116,59,92,110,92,110,32,32,105,102,32,40,120,49,32,60,32,120,48,41,32,123,92,110,32,32,32,32,116,32,61,32,105,48,44,32,105,48,32,61,32,105,49,44,32,105,49,32,61,32,116,59,92,110,32,32,32,32,116,32,61,32,120,48,44,32,120,48,32,61,32,120,49,44,32,120,49,32,61,32,116,59,92,110,32,32,125,92,110,92,110,32,32,100,111,109,97,105,110,91,105,48,93,32,61,32,105,110,116,101,114,118,97,108,46,102,108,111,111,114,40,120,48,41,59,92,110,32,32,100,111,109,97,105,110,91,105,49,93,32,61,32,105,110,116,101,114,118,97,108,46,99,101,105,108,40,120,49,41,59,92,110,32,32,114,101,116,117,114,110,32,100,111,109,97,105,110,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,110,105,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,110,117,109,98,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,110,117,109,98,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,43,120,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,110,117,109,98,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,111,114,100,105,110,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,111,114,100,105,110,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,111,114,100,105,110,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,109,112,108,105,99,105,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,109,112,108,105,99,105,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,108,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,108,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,105,109,112,108,105,99,105,116,32,61,32,123,110,97,109,101,58,32,92,34,105,109,112,108,105,99,105,116,92,34,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,114,100,105,110,97,108,40,41,32,123,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,40,48,44,100,51,95,99,111,108,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,112,41,40,41,44,92,110,32,32,32,32,32,32,100,111,109,97,105,110,32,61,32,91,93,44,92,110,32,32,32,32,32,32,114,97,110,103,101,32,61,32,91,93,44,92,110,32,32,32,32,32,32,117,110,107,110,111,119,110,32,61,32,105,109,112,108,105,99,105,116,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,99,97,108,101,40,100,41,32,123,92,110,32,32,32,32,118,97,114,32,107,101,121,32,61,32,100,32,43,32,92,34,92,34,44,32,105,32,61,32,105,110,100,101,120,46,103,101,116,40,107,101,121,41,59,92,110,32,32,32,32,105,102,32,40,33,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,117,110,107,110,111,119,110,32,33,61,61,32,105,109,112,108,105,99,105,116,41,32,114,101,116,117,114,110,32,117,110,107,110,111,119,110,59,92,110,32,32,32,32,32,32,105,110,100,101,120,46,115,101,116,40,107,101,121,44,32,105,32,61,32,100,111,109,97,105,110,46,112,117,115,104,40,100,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,97,110,103,101,91,40,105,32,45,32,49,41,32,37,32,114,97,110,103,101,46,108,101,110,103,116,104,93,59,92,110,32,32,125,92,110,92,110,32,32,115,99,97,108,101,46,100,111,109,97,105,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,100,111,109,97,105,110,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,100,111,109,97,105,110,32,61,32,91,93,44,32,105,110,100,101,120,32,61,32,40,48,44,100,51,95,99,111,108,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,112,41,40,41,59,92,110,32,32,32,32,118,97,114,32,105,32,61,32,45,49,44,32,110,32,61,32,95,46,108,101,110,103,116,104,44,32,100,44,32,107,101,121,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,105,102,32,40,33,105,110,100,101,120,46,104,97,115,40,107,101,121,32,61,32,40,100,32,61,32,95,91,105,93,41,32,43,32,92,34,92,34,41,41,32,105,110,100,101,120,46,115,101,116,40,107,101,121,44,32,100,111,109,97,105,110,46,112,117,115,104,40,100,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,114,97,110,103,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,114,97,110,103,101,32,61,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,108,105,99,101,46,99,97,108,108,40,95,41,44,32,115,99,97,108,101,41,32,58,32,114,97,110,103,101,46,115,108,105,99,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,117,110,107,110,111,119,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,117,110,107,110,111,119,110,32,61,32,95,44,32,115,99,97,108,101,41,32,58,32,117,110,107,110,111,119,110,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,111,114,100,105,110,97,108,40,100,111,109,97,105,110,44,32,114,97,110,103,101,41,46,117,110,107,110,111,119,110,40,117,110,107,110,111,119,110,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,110,105,116,82,97,110,103,101,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,111,114,100,105,110,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,112,111,119,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,112,111,119,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,119,105,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,111,119,105,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,113,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,113,114,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,101,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,101,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,105,110,101,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,116,105,110,117,111,117,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,99,111,110,116,105,110,117,111,117,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,80,111,119,40,101,120,112,111,110,101,110,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,32,60,32,48,32,63,32,45,77,97,116,104,46,112,111,119,40,45,120,44,32,101,120,112,111,110,101,110,116,41,32,58,32,77,97,116,104,46,112,111,119,40,120,44,32,101,120,112,111,110,101,110,116,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,83,113,114,116,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,32,60,32,48,32,63,32,45,77,97,116,104,46,115,113,114,116,40,45,120,41,32,58,32,77,97,116,104,46,115,113,114,116,40,120,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,83,113,117,97,114,101,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,32,60,32,48,32,63,32,45,120,32,42,32,120,32,58,32,120,32,42,32,120,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,111,119,105,115,104,40,116,114,97,110,115,102,111,114,109,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,116,114,97,110,115,102,111,114,109,40,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,100,101,110,116,105,116,121,44,32,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,100,101,110,116,105,116,121,41,44,92,110,32,32,32,32,32,32,101,120,112,111,110,101,110,116,32,61,32,49,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,115,99,97,108,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,120,112,111,110,101,110,116,32,61,61,61,32,49,32,63,32,116,114,97,110,115,102,111,114,109,40,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,100,101,110,116,105,116,121,44,32,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,100,101,110,116,105,116,121,41,92,110,32,32,32,32,32,32,32,32,58,32,101,120,112,111,110,101,110,116,32,61,61,61,32,48,46,53,32,63,32,116,114,97,110,115,102,111,114,109,40,116,114,97,110,115,102,111,114,109,83,113,114,116,44,32,116,114,97,110,115,102,111,114,109,83,113,117,97,114,101,41,92,110,32,32,32,32,32,32,32,32,58,32,116,114,97,110,115,102,111,114,109,40,116,114,97,110,115,102,111,114,109,80,111,119,40,101,120,112,111,110,101,110,116,41,44,32,116,114,97,110,115,102,111,114,109,80,111,119,40,49,32,47,32,101,120,112,111,110,101,110,116,41,41,59,92,110,32,32,125,92,110,92,110,32,32,115,99,97,108,101,46,101,120,112,111,110,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,101,120,112,111,110,101,110,116,32,61,32,43,95,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,101,120,112,111,110,101,110,116,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,108,105,110,101,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,108,105,110,101,97,114,105,115,104,41,40,115,99,97,108,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,111,119,40,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,112,111,119,105,115,104,40,40,48,44,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,114,97,110,115,102,111,114,109,101,114,41,40,41,41,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,112,121,41,40,115,99,97,108,101,44,32,112,111,119,40,41,41,46,101,120,112,111,110,101,110,116,40,115,99,97,108,101,46,101,120,112,111,110,101,110,116,40,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,110,105,116,82,97,110,103,101,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,113,114,116,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,111,119,46,97,112,112,108,121,40,110,117,108,108,44,32,97,114,103,117,109,101,110,116,115,41,46,101,120,112,111,110,101,110,116,40,48,46,53,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,112,111,119,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,113,117,97,110,116,105,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,113,117,97,110,116,105,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,113,117,97,110,116,105,108,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,113,117,97,110,116,105,108,101,40,41,32,123,92,110,32,32,118,97,114,32,100,111,109,97,105,110,32,61,32,91,93,44,92,110,32,32,32,32,32,32,114,97,110,103,101,32,61,32,91,93,44,92,110,32,32,32,32,32,32,116,104,114,101,115,104,111,108,100,115,32,61,32,91,93,44,92,110,32,32,32,32,32,32,117,110,107,110,111,119,110,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,115,99,97,108,101,40,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,77,97,116,104,46,109,97,120,40,49,44,32,114,97,110,103,101,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,116,104,114,101,115,104,111,108,100,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,32,45,32,49,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,116,104,114,101,115,104,111,108,100,115,91,105,32,45,32,49,93,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,113,117,97,110,116,105,108,101,41,40,100,111,109,97,105,110,44,32,105,32,47,32,110,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,99,97,108,101,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,78,97,78,40,120,32,61,32,43,120,41,32,63,32,117,110,107,110,111,119,110,32,58,32,114,97,110,103,101,91,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,98,105,115,101,99,116,41,40,116,104,114,101,115,104,111,108,100,115,44,32,120,41,93,59,92,110,32,32,125,92,110,92,110,32,32,115,99,97,108,101,46,105,110,118,101,114,116,69,120,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,121,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,114,97,110,103,101,46,105,110,100,101,120,79,102,40,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,105,32,60,32,48,32,63,32,91,78,97,78,44,32,78,97,78,93,32,58,32,91,92,110,32,32,32,32,32,32,105,32,62,32,48,32,63,32,116,104,114,101,115,104,111,108,100,115,91,105,32,45,32,49,93,32,58,32,100,111,109,97,105,110,91,48,93,44,92,110,32,32,32,32,32,32,105,32,60,32,116,104,114,101,115,104,111,108,100,115,46,108,101,110,103,116,104,32,63,32,116,104,114,101,115,104,111,108,100,115,91,105,93,32,58,32,100,111,109,97,105,110,91,100,111,109,97,105,110,46,108,101,110,103,116,104,32,45,32,49,93,92,110,32,32,32,32,93,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,100,111,109,97,105,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,100,111,109,97,105,110,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,100,111,109,97,105,110,32,61,32,91,93,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,95,46,108,101,110,103,116,104,44,32,100,59,32,105,32,60,32,110,59,32,43,43,105,41,32,105,102,32,40,100,32,61,32,95,91,105,93,44,32,100,32,33,61,32,110,117,108,108,32,38,38,32,33,105,115,78,97,78,40,100,32,61,32,43,100,41,41,32,100,111,109,97,105,110,46,112,117,115,104,40,100,41,59,92,110,32,32,32,32,100,111,109,97,105,110,46,115,111,114,116,40,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,99,101,110,100,105,110,103,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,99,97,108,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,114,97,110,103,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,114,97,110,103,101,32,61,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,108,105,99,101,46,99,97,108,108,40,95,41,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,114,97,110,103,101,46,115,108,105,99,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,117,110,107,110,111,119,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,117,110,107,110,111,119,110,32,61,32,95,44,32,115,99,97,108,101,41,32,58,32,117,110,107,110,111,119,110,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,113,117,97,110,116,105,108,101,115,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,114,101,115,104,111,108,100,115,46,115,108,105,99,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,113,117,97,110,116,105,108,101,40,41,92,110,32,32,32,32,32,32,32,32,46,100,111,109,97,105,110,40,100,111,109,97,105,110,41,92,110,32,32,32,32,32,32,32,32,46,114,97,110,103,101,40,114,97,110,103,101,41,92,110,32,32,32,32,32,32,32,32,46,117,110,107,110,111,119,110,40,117,110,107,110,111,119,110,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,110,105,116,82,97,110,103,101,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,113,117,97,110,116,105,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,113,117,97,110,116,105,122,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,113,117,97,110,116,105,122,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,113,117,97,110,116,105,122,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,101,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,101,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,105,110,101,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,113,117,97,110,116,105,122,101,40,41,32,123,92,110,32,32,118,97,114,32,120,48,32,61,32,48,44,92,110,32,32,32,32,32,32,120,49,32,61,32,49,44,92,110,32,32,32,32,32,32,110,32,61,32,49,44,92,110,32,32,32,32,32,32,100,111,109,97,105,110,32,61,32,91,48,46,53,93,44,92,110,32,32,32,32,32,32,114,97,110,103,101,32,61,32,91,48,44,32,49,93,44,92,110,32,32,32,32,32,32,117,110,107,110,111,119,110,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,99,97,108,101,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,32,60,61,32,120,32,63,32,114,97,110,103,101,91,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,98,105,115,101,99,116,41,40,100,111,109,97,105,110,44,32,120,44,32,48,44,32,110,41,93,32,58,32,117,110,107,110,111,119,110,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,115,99,97,108,101,40,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,45,49,59,92,110,32,32,32,32,100,111,109,97,105,110,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,100,111,109,97,105,110,91,105,93,32,61,32,40,40,105,32,43,32,49,41,32,42,32,120,49,32,45,32,40,105,32,45,32,110,41,32,42,32,120,48,41,32,47,32,40,110,32,43,32,49,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,32,32,125,92,110,92,110,32,32,115,99,97,108,101,46,100,111,109,97,105,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,120,48,32,61,32,43,95,91,48,93,44,32,120,49,32,61,32,43,95,91,49,93,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,91,120,48,44,32,120,49,93,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,114,97,110,103,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,110,32,61,32,40,114,97,110,103,101,32,61,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,108,105,99,101,46,99,97,108,108,40,95,41,41,46,108,101,110,103,116,104,32,45,32,49,44,32,114,101,115,99,97,108,101,40,41,41,32,58,32,114,97,110,103,101,46,115,108,105,99,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,105,110,118,101,114,116,69,120,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,121,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,114,97,110,103,101,46,105,110,100,101,120,79,102,40,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,105,32,60,32,48,32,63,32,91,78,97,78,44,32,78,97,78,93,92,110,32,32,32,32,32,32,32,32,58,32,105,32,60,32,49,32,63,32,91,120,48,44,32,100,111,109,97,105,110,91,48,93,93,92,110,32,32,32,32,32,32,32,32,58,32,105,32,62,61,32,110,32,63,32,91,100,111,109,97,105,110,91,110,32,45,32,49,93,44,32,120,49,93,92,110,32,32,32,32,32,32,32,32,58,32,91,100,111,109,97,105,110,91,105,32,45,32,49,93,44,32,100,111,109,97,105,110,91,105,93,93,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,117,110,107,110,111,119,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,117,110,107,110,111,119,110,32,61,32,95,44,32,115,99,97,108,101,41,32,58,32,115,99,97,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,116,104,114,101,115,104,111,108,100,115,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,111,109,97,105,110,46,115,108,105,99,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,113,117,97,110,116,105,122,101,40,41,92,110,32,32,32,32,32,32,32,32,46,100,111,109,97,105,110,40,91,120,48,44,32,120,49,93,41,92,110,32,32,32,32,32,32,32,32,46,114,97,110,103,101,40,114,97,110,103,101,41,92,110,32,32,32,32,32,32,32,32,46,117,110,107,110,111,119,110,40,117,110,107,110,111,119,110,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,110,105,116,82,97,110,103,101,46,97,112,112,108,121,40,40,48,44,95,108,105,110,101,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,108,105,110,101,97,114,105,115,104,41,40,115,99,97,108,101,41,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,113,117,97,110,116,105,122,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,112,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,112,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,113,117,101,110,116,105,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,113,117,101,110,116,105,97,108,76,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,113,117,101,110,116,105,97,108,76,111,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,113,117,101,110,116,105,97,108,80,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,113,117,101,110,116,105,97,108,80,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,113,117,101,110,116,105,97,108,83,113,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,113,117,101,110,116,105,97,108,83,113,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,113,117,101,110,116,105,97,108,83,121,109,108,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,113,117,101,110,116,105,97,108,83,121,109,108,111,103,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,116,105,110,117,111,117,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,99,111,110,116,105,110,117,111,117,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,101,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,101,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,105,110,101,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,111,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,111,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,111,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,108,111,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,108,111,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,115,121,109,108,111,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,112,111,119,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,101,114,40,41,32,123,92,110,32,32,118,97,114,32,120,48,32,61,32,48,44,92,110,32,32,32,32,32,32,120,49,32,61,32,49,44,92,110,32,32,32,32,32,32,116,48,44,92,110,32,32,32,32,32,32,116,49,44,92,110,32,32,32,32,32,32,107,49,48,44,92,110,32,32,32,32,32,32,116,114,97,110,115,102,111,114,109,44,92,110,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,111,114,32,61,32,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,100,101,110,116,105,116,121,44,92,110,32,32,32,32,32,32,99,108,97,109,112,32,61,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,117,110,107,110,111,119,110,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,99,97,108,101,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,78,97,78,40,120,32,61,32,43,120,41,32,63,32,117,110,107,110,111,119,110,32,58,32,105,110,116,101,114,112,111,108,97,116,111,114,40,107,49,48,32,61,61,61,32,48,32,63,32,48,46,53,32,58,32,40,120,32,61,32,40,116,114,97,110,115,102,111,114,109,40,120,41,32,45,32,116,48,41,32,42,32,107,49,48,44,32,99,108,97,109,112,32,63,32,77,97,116,104,46,109,97,120,40,48,44,32,77,97,116,104,46,109,105,110,40,49,44,32,120,41,41,32,58,32,120,41,41,59,92,110,32,32,125,92,110,92,110,32,32,115,99,97,108,101,46,100,111,109,97,105,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,48,32,61,32,116,114,97,110,115,102,111,114,109,40,120,48,32,61,32,43,95,91,48,93,41,44,32,116,49,32,61,32,116,114,97,110,115,102,111,114,109,40,120,49,32,61,32,43,95,91,49,93,41,44,32,107,49,48,32,61,32,116,48,32,61,61,61,32,116,49,32,63,32,48,32,58,32,49,32,47,32,40,116,49,32,45,32,116,48,41,44,32,115,99,97,108,101,41,32,58,32,91,120,48,44,32,120,49,93,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,99,108,97,109,112,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,99,108,97,109,112,32,61,32,33,33,95,44,32,115,99,97,108,101,41,32,58,32,99,108,97,109,112,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,105,110,116,101,114,112,111,108,97,116,111,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,105,110,116,101,114,112,111,108,97,116,111,114,32,61,32,95,44,32,115,99,97,108,101,41,32,58,32,105,110,116,101,114,112,111,108,97,116,111,114,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,117,110,107,110,111,119,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,117,110,107,110,111,119,110,32,61,32,95,44,32,115,99,97,108,101,41,32,58,32,117,110,107,110,111,119,110,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,116,114,97,110,115,102,111,114,109,32,61,32,116,44,32,116,48,32,61,32,116,40,120,48,41,44,32,116,49,32,61,32,116,40,120,49,41,44,32,107,49,48,32,61,32,116,48,32,61,61,61,32,116,49,32,63,32,48,32,58,32,49,32,47,32,40,116,49,32,45,32,116,48,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,112,121,40,115,111,117,114,99,101,44,32,116,97,114,103,101,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,46,100,111,109,97,105,110,40,115,111,117,114,99,101,46,100,111,109,97,105,110,40,41,41,92,110,32,32,32,32,32,32,46,105,110,116,101,114,112,111,108,97,116,111,114,40,115,111,117,114,99,101,46,105,110,116,101,114,112,111,108,97,116,111,114,40,41,41,92,110,32,32,32,32,32,32,46,99,108,97,109,112,40,115,111,117,114,99,101,46,99,108,97,109,112,40,41,41,92,110,32,32,32,32,32,32,46,117,110,107,110,111,119,110,40,115,111,117,114,99,101,46,117,110,107,110,111,119,110,40,41,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,113,117,101,110,116,105,97,108,40,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,40,48,44,95,108,105,110,101,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,108,105,110,101,97,114,105,115,104,41,40,116,114,97,110,115,102,111,114,109,101,114,40,41,40,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,100,101,110,116,105,116,121,41,41,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,112,121,40,115,99,97,108,101,44,32,115,101,113,117,101,110,116,105,97,108,40,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,110,105,116,73,110,116,101,114,112,111,108,97,116,111,114,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,113,117,101,110,116,105,97,108,76,111,103,40,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,40,48,44,95,108,111,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,108,111,103,103,105,115,104,41,40,116,114,97,110,115,102,111,114,109,101,114,40,41,41,46,100,111,109,97,105,110,40,91,49,44,32,49,48,93,41,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,112,121,40,115,99,97,108,101,44,32,115,101,113,117,101,110,116,105,97,108,76,111,103,40,41,41,46,98,97,115,101,40,115,99,97,108,101,46,98,97,115,101,40,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,110,105,116,73,110,116,101,114,112,111,108,97,116,111,114,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,113,117,101,110,116,105,97,108,83,121,109,108,111,103,40,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,40,48,44,95,115,121,109,108,111,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,115,121,109,108,111,103,105,115,104,41,40,116,114,97,110,115,102,111,114,109,101,114,40,41,41,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,112,121,40,115,99,97,108,101,44,32,115,101,113,117,101,110,116,105,97,108,83,121,109,108,111,103,40,41,41,46,99,111,110,115,116,97,110,116,40,115,99,97,108,101,46,99,111,110,115,116,97,110,116,40,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,110,105,116,73,110,116,101,114,112,111,108,97,116,111,114,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,113,117,101,110,116,105,97,108,80,111,119,40,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,40,48,44,95,112,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,112,111,119,105,115,104,41,40,116,114,97,110,115,102,111,114,109,101,114,40,41,41,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,112,121,40,115,99,97,108,101,44,32,115,101,113,117,101,110,116,105,97,108,80,111,119,40,41,41,46,101,120,112,111,110,101,110,116,40,115,99,97,108,101,46,101,120,112,111,110,101,110,116,40,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,110,105,116,73,110,116,101,114,112,111,108,97,116,111,114,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,113,117,101,110,116,105,97,108,83,113,114,116,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,101,113,117,101,110,116,105,97,108,80,111,119,46,97,112,112,108,121,40,110,117,108,108,44,32,97,114,103,117,109,101,110,116,115,41,46,101,120,112,111,110,101,110,116,40,48,46,53,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,116,105,110,117,111,117,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,99,111,110,116,105,110,117,111,117,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,40,41,32,123,92,110,32,32,118,97,114,32,100,111,109,97,105,110,32,61,32,91,93,44,92,110,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,111,114,32,61,32,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,100,101,110,116,105,116,121,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,99,97,108,101,40,120,41,32,123,92,110,32,32,32,32,105,102,32,40,33,105,115,78,97,78,40,120,32,61,32,43,120,41,41,32,114,101,116,117,114,110,32,105,110,116,101,114,112,111,108,97,116,111,114,40,40,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,98,105,115,101,99,116,41,40,100,111,109,97,105,110,44,32,120,41,32,45,32,49,41,32,47,32,40,100,111,109,97,105,110,46,108,101,110,103,116,104,32,45,32,49,41,41,59,92,110,32,32,125,92,110,92,110,32,32,115,99,97,108,101,46,100,111,109,97,105,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,100,111,109,97,105,110,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,100,111,109,97,105,110,32,61,32,91,93,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,95,46,108,101,110,103,116,104,44,32,100,59,32,105,32,60,32,110,59,32,43,43,105,41,32,105,102,32,40,100,32,61,32,95,91,105,93,44,32,100,32,33,61,32,110,117,108,108,32,38,38,32,33,105,115,78,97,78,40,100,32,61,32,43,100,41,41,32,100,111,109,97,105,110,46,112,117,115,104,40,100,41,59,92,110,32,32,32,32,100,111,109,97,105,110,46,115,111,114,116,40,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,99,101,110,100,105,110,103,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,105,110,116,101,114,112,111,108,97,116,111,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,105,110,116,101,114,112,111,108,97,116,111,114,32,61,32,95,44,32,115,99,97,108,101,41,32,58,32,105,110,116,101,114,112,111,108,97,116,111,114,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,40,105,110,116,101,114,112,111,108,97,116,111,114,41,46,100,111,109,97,105,110,40,100,111,109,97,105,110,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,110,105,116,73,110,116,101,114,112,111,108,97,116,111,114,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,115,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,115,121,109,108,111,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,115,121,109,108,111,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,121,109,108,111,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,108,111,103,105,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,121,109,108,111,103,105,115,104,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,101,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,101,97,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,108,105,110,101,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,116,105,110,117,111,117,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,99,111,110,116,105,110,117,111,117,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,83,121,109,108,111,103,40,99,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,115,105,103,110,40,120,41,32,42,32,77,97,116,104,46,108,111,103,49,112,40,77,97,116,104,46,97,98,115,40,120,32,47,32,99,41,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,83,121,109,101,120,112,40,99,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,115,105,103,110,40,120,41,32,42,32,77,97,116,104,46,101,120,112,109,49,40,77,97,116,104,46,97,98,115,40,120,41,41,32,42,32,99,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,121,109,108,111,103,105,115,104,40,116,114,97,110,115,102,111,114,109,41,32,123,92,110,32,32,118,97,114,32,99,32,61,32,49,44,32,115,99,97,108,101,32,61,32,116,114,97,110,115,102,111,114,109,40,116,114,97,110,115,102,111,114,109,83,121,109,108,111,103,40,99,41,44,32,116,114,97,110,115,102,111,114,109,83,121,109,101,120,112,40,99,41,41,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,110,115,116,97,110,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,116,114,97,110,115,102,111,114,109,40,116,114,97,110,115,102,111,114,109,83,121,109,108,111,103,40,99,32,61,32,43,95,41,44,32,116,114,97,110,115,102,111,114,109,83,121,109,101,120,112,40,99,41,41,32,58,32,99,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,108,105,110,101,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,108,105,110,101,97,114,105,115,104,41,40,115,99,97,108,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,121,109,108,111,103,40,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,115,121,109,108,111,103,105,115,104,40,40,48,44,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,114,97,110,115,102,111,114,109,101,114,41,40,41,41,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,111,112,121,41,40,115,99,97,108,101,44,32,115,121,109,108,111,103,40,41,41,46,99,111,110,115,116,97,110,116,40,115,99,97,108,101,46,99,111,110,115,116,97,110,116,40,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,110,105,116,82,97,110,103,101,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,115,121,109,108,111,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,116,104,114,101,115,104,111,108,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,116,104,114,101,115,104,111,108,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,104,114,101,115,104,111,108,100,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,116,104,114,101,115,104,111,108,100,40,41,32,123,92,110,32,32,118,97,114,32,100,111,109,97,105,110,32,61,32,91,48,46,53,93,44,92,110,32,32,32,32,32,32,114,97,110,103,101,32,61,32,91,48,44,32,49,93,44,92,110,32,32,32,32,32,32,117,110,107,110,111,119,110,44,92,110,32,32,32,32,32,32,110,32,61,32,49,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,99,97,108,101,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,32,60,61,32,120,32,63,32,114,97,110,103,101,91,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,98,105,115,101,99,116,41,40,100,111,109,97,105,110,44,32,120,44,32,48,44,32,110,41,93,32,58,32,117,110,107,110,111,119,110,59,92,110,32,32,125,92,110,92,110,32,32,115,99,97,108,101,46,100,111,109,97,105,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,111,109,97,105,110,32,61,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,108,105,99,101,46,99,97,108,108,40,95,41,44,32,110,32,61,32,77,97,116,104,46,109,105,110,40,100,111,109,97,105,110,46,108,101,110,103,116,104,44,32,114,97,110,103,101,46,108,101,110,103,116,104,32,45,32,49,41,44,32,115,99,97,108,101,41,32,58,32,100,111,109,97,105,110,46,115,108,105,99,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,114,97,110,103,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,114,97,110,103,101,32,61,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,108,105,99,101,46,99,97,108,108,40,95,41,44,32,110,32,61,32,77,97,116,104,46,109,105,110,40,100,111,109,97,105,110,46,108,101,110,103,116,104,44,32,114,97,110,103,101,46,108,101,110,103,116,104,32,45,32,49,41,44,32,115,99,97,108,101,41,32,58,32,114,97,110,103,101,46,115,108,105,99,101,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,105,110,118,101,114,116,69,120,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,121,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,114,97,110,103,101,46,105,110,100,101,120,79,102,40,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,100,111,109,97,105,110,91,105,32,45,32,49,93,44,32,100,111,109,97,105,110,91,105,93,93,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,117,110,107,110,111,119,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,117,110,107,110,111,119,110,32,61,32,95,44,32,115,99,97,108,101,41,32,58,32,117,110,107,110,111,119,110,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,114,101,115,104,111,108,100,40,41,92,110,32,32,32,32,32,32,32,32,46,100,111,109,97,105,110,40,100,111,109,97,105,110,41,92,110,32,32,32,32,32,32,32,32,46,114,97,110,103,101,40,114,97,110,103,101,41,92,110,32,32,32,32,32,32,32,32,46,117,110,107,110,111,119,110,40,117,110,107,110,111,119,110,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,110,105,116,82,97,110,103,101,46,97,112,112,108,121,40,115,99,97,108,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,116,104,114,101,115,104,111,108,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,116,105,99,107,70,111,114,109,97,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,116,105,99,107,70,111,114,109,97,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,102,111,114,109,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,102,111,114,109,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,112,114,101,99,105,115,105,111,110,80,114,101,102,105,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,102,111,114,109,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,102,111,114,109,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,112,114,101,99,105,115,105,111,110,82,111,117,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,102,111,114,109,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,112,114,101,99,105,115,105,111,110,70,105,120,101,100,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,116,97,114,116,44,32,115,116,111,112,44,32,99,111,117,110,116,44,32,115,112,101,99,105,102,105,101,114,41,32,123,92,110,32,32,118,97,114,32,115,116,101,112,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,105,99,107,83,116,101,112,41,40,115,116,97,114,116,44,32,115,116,111,112,44,32,99,111,117,110,116,41,44,92,110,32,32,32,32,32,32,112,114,101,99,105,115,105,111,110,59,92,110,32,32,115,112,101,99,105,102,105,101,114,32,61,32,40,48,44,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,112,101,99,105,102,105,101,114,32,61,61,32,110,117,108,108,32,63,32,92,34,44,102,92,34,32,58,32,115,112,101,99,105,102,105,101,114,41,59,92,110,32,32,115,119,105,116,99,104,32,40,115,112,101,99,105,102,105,101,114,46,116,121,112,101,41,32,123,92,110,32,32,32,32,99,97,115,101,32,92,34,115,92,34,58,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,77,97,116,104,46,109,97,120,40,77,97,116,104,46,97,98,115,40,115,116,97,114,116,41,44,32,77,97,116,104,46,97,98,115,40,115,116,111,112,41,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,112,101,99,105,102,105,101,114,46,112,114,101,99,105,115,105,111,110,32,61,61,32,110,117,108,108,32,38,38,32,33,105,115,78,97,78,40,112,114,101,99,105,115,105,111,110,32,61,32,40,48,44,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,101,112,44,32,118,97,108,117,101,41,41,41,32,115,112,101,99,105,102,105,101,114,46,112,114,101,99,105,115,105,111,110,32,61,32,112,114,101,99,105,115,105,111,110,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,102,111,114,109,97,116,80,114,101,102,105,120,41,40,115,112,101,99,105,102,105,101,114,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,99,97,115,101,32,92,34,92,34,58,92,110,32,32,32,32,99,97,115,101,32,92,34,101,92,34,58,92,110,32,32,32,32,99,97,115,101,32,92,34,103,92,34,58,92,110,32,32,32,32,99,97,115,101,32,92,34,112,92,34,58,92,110,32,32,32,32,99,97,115,101,32,92,34,114,92,34,58,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,112,101,99,105,102,105,101,114,46,112,114,101,99,105,115,105,111,110,32,61,61,32,110,117,108,108,32,38,38,32,33,105,115,78,97,78,40,112,114,101,99,105,115,105,111,110,32,61,32,40,48,44,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,101,112,44,32,77,97,116,104,46,109,97,120,40,77,97,116,104,46,97,98,115,40,115,116,97,114,116,41,44,32,77,97,116,104,46,97,98,115,40,115,116,111,112,41,41,41,41,41,32,115,112,101,99,105,102,105,101,114,46,112,114,101,99,105,115,105,111,110,32,61,32,112,114,101,99,105,115,105,111,110,32,45,32,40,115,112,101,99,105,102,105,101,114,46,116,121,112,101,32,61,61,61,32,92,34,101,92,34,41,59,92,110,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,32,32,99,97,115,101,32,92,34,102,92,34,58,92,110,32,32,32,32,99,97,115,101,32,92,34,37,92,34,58,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,112,101,99,105,102,105,101,114,46,112,114,101,99,105,115,105,111,110,32,61,61,32,110,117,108,108,32,38,38,32,33,105,115,78,97,78,40,112,114,101,99,105,115,105,111,110,32,61,32,40,48,44,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,101,112,41,41,41,32,115,112,101,99,105,102,105,101,114,46,112,114,101,99,105,115,105,111,110,32,61,32,112,114,101,99,105,115,105,111,110,32,45,32,40,115,112,101,99,105,102,105,101,114,46,116,121,112,101,32,61,61,61,32,92,34,37,92,34,41,32,42,32,50,59,92,110,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,40,48,44,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,102,111,114,109,97,116,41,40,115,112,101,99,105,102,105,101,114,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,116,105,99,107,70,111,114,109,97,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,116,105,109,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,116,105,109,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,97,108,101,110,100,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,97,108,101,110,100,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,121,101,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,111,110,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,119,101,101,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,104,111,117,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,105,110,117,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,115,101,99,111,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,105,108,108,105,115,101,99,111,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,45,102,111,114,109,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,116,105,110,117,111,117,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,99,111,110,116,105,110,117,111,117,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,105,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,105,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,110,105,99,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,100,117,114,97,116,105,111,110,83,101,99,111,110,100,32,61,32,49,48,48,48,44,92,110,32,32,32,32,100,117,114,97,116,105,111,110,77,105,110,117,116,101,32,61,32,100,117,114,97,116,105,111,110,83,101,99,111,110,100,32,42,32,54,48,44,92,110,32,32,32,32,100,117,114,97,116,105,111,110,72,111,117,114,32,61,32,100,117,114,97,116,105,111,110,77,105,110,117,116,101,32,42,32,54,48,44,92,110,32,32,32,32,100,117,114,97,116,105,111,110,68,97,121,32,61,32,100,117,114,97,116,105,111,110,72,111,117,114,32,42,32,50,52,44,92,110,32,32,32,32,100,117,114,97,116,105,111,110,87,101,101,107,32,61,32,100,117,114,97,116,105,111,110,68,97,121,32,42,32,55,44,92,110,32,32,32,32,100,117,114,97,116,105,111,110,77,111,110,116,104,32,61,32,100,117,114,97,116,105,111,110,68,97,121,32,42,32,51,48,44,92,110,32,32,32,32,100,117,114,97,116,105,111,110,89,101,97,114,32,61,32,100,117,114,97,116,105,111,110,68,97,121,32,42,32,51,54,53,59,92,110,92,110,102,117,110,99,116,105,111,110,32,100,97,116,101,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,117,109,98,101,114,40,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,32,63,32,43,116,32,58,32,43,110,101,119,32,68,97,116,101,40,43,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,97,108,101,110,100,97,114,40,121,101,97,114,44,32,109,111,110,116,104,44,32,119,101,101,107,44,32,100,97,121,44,32,104,111,117,114,44,32,109,105,110,117,116,101,44,32,115,101,99,111,110,100,44,32,109,105,108,108,105,115,101,99,111,110,100,44,32,102,111,114,109,97,116,41,32,123,92,110,32,32,118,97,114,32,115,99,97,108,101,32,61,32,40,48,44,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,101,110,116,105,116,121,44,32,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,105,100,101,110,116,105,116,121,41,44,92,110,32,32,32,32,32,32,105,110,118,101,114,116,32,61,32,115,99,97,108,101,46,105,110,118,101,114,116,44,92,110,32,32,32,32,32,32,100,111,109,97,105,110,32,61,32,115,99,97,108,101,46,100,111,109,97,105,110,59,92,110,92,110,32,32,118,97,114,32,102,111,114,109,97,116,77,105,108,108,105,115,101,99,111,110,100,32,61,32,102,111,114,109,97,116,40,92,34,46,37,76,92,34,41,44,92,110,32,32,32,32,32,32,102,111,114,109,97,116,83,101,99,111,110,100,32,61,32,102,111,114,109,97,116,40,92,34,58,37,83,92,34,41,44,92,110,32,32,32,32,32,32,102,111,114,109,97,116,77,105,110,117,116,101,32,61,32,102,111,114,109,97,116,40,92,34,37,73,58,37,77,92,34,41,44,92,110,32,32,32,32,32,32,102,111,114,109,97,116,72,111,117,114,32,61,32,102,111,114,109,97,116,40,92,34,37,73,32,37,112,92,34,41,44,92,110,32,32,32,32,32,32,102,111,114,109,97,116,68,97,121,32,61,32,102,111,114,109,97,116,40,92,34,37,97,32,37,100,92,34,41,44,92,110,32,32,32,32,32,32,102,111,114,109,97,116,87,101,101,107,32,61,32,102,111,114,109,97,116,40,92,34,37,98,32,37,100,92,34,41,44,92,110,32,32,32,32,32,32,102,111,114,109,97,116,77,111,110,116,104,32,61,32,102,111,114,109,97,116,40,92,34,37,66,92,34,41,44,92,110,32,32,32,32,32,32,102,111,114,109,97,116,89,101,97,114,32,61,32,102,111,114,109,97,116,40,92,34,37,89,92,34,41,59,92,110,92,110,32,32,118,97,114,32,116,105,99,107,73,110,116,101,114,118,97,108,115,32,61,32,91,92,110,32,32,32,32,91,115,101,99,111,110,100,44,32,32,49,44,32,32,32,32,32,32,100,117,114,97,116,105,111,110,83,101,99,111,110,100,93,44,92,110,32,32,32,32,91,115,101,99,111,110,100,44,32,32,53,44,32,32,53,32,42,32,100,117,114,97,116,105,111,110,83,101,99,111,110,100,93,44,92,110,32,32,32,32,91,115,101,99,111,110,100,44,32,49,53,44,32,49,53,32,42,32,100,117,114,97,116,105,111,110,83,101,99,111,110,100,93,44,92,110,32,32,32,32,91,115,101,99,111,110,100,44,32,51,48,44,32,51,48,32,42,32,100,117,114,97,116,105,111,110,83,101,99,111,110,100,93,44,92,110,32,32,32,32,91,109,105,110,117,116,101,44,32,32,49,44,32,32,32,32,32,32,100,117,114,97,116,105,111,110,77,105,110,117,116,101,93,44,92,110,32,32,32,32,91,109,105,110,117,116,101,44,32,32,53,44,32,32,53,32,42,32,100,117,114,97,116,105,111,110,77,105,110,117,116,101,93,44,92,110,32,32,32,32,91,109,105,110,117,116,101,44,32,49,53,44,32,49,53,32,42,32,100,117,114,97,116,105,111,110,77,105,110,117,116,101,93,44,92,110,32,32,32,32,91,109,105,110,117,116,101,44,32,51,48,44,32,51,48,32,42,32,100,117,114,97,116,105,111,110,77,105,110,117,116,101,93,44,92,110,32,32,32,32,91,32,32,104,111,117,114,44,32,32,49,44,32,32,32,32,32,32,100,117,114,97,116,105,111,110,72,111,117,114,32,32,93,44,92,110,32,32,32,32,91,32,32,104,111,117,114,44,32,32,51,44,32,32,51,32,42,32,100,117,114,97,116,105,111,110,72,111,117,114,32,32,93,44,92,110,32,32,32,32,91,32,32,104,111,117,114,44,32,32,54,44,32,32,54,32,42,32,100,117,114,97,116,105,111,110,72,111,117,114,32,32,93,44,92,110,32,32,32,32,91,32,32,104,111,117,114,44,32,49,50,44,32,49,50,32,42,32,100,117,114,97,116,105,111,110,72,111,117,114,32,32,93,44,92,110,32,32,32,32,91,32,32,32,100,97,121,44,32,32,49,44,32,32,32,32,32,32,100,117,114,97,116,105,111,110,68,97,121,32,32,32,93,44,92,110,32,32,32,32,91,32,32,32,100,97,121,44,32,32,50,44,32,32,50,32,42,32,100,117,114,97,116,105,111,110,68,97,121,32,32,32,93,44,92,110,32,32,32,32,91,32,32,119,101,101,107,44,32,32,49,44,32,32,32,32,32,32,100,117,114,97,116,105,111,110,87,101,101,107,32,32,93,44,92,110,32,32,32,32,91,32,109,111,110,116,104,44,32,32,49,44,32,32,32,32,32,32,100,117,114,97,116,105,111,110,77,111,110,116,104,32,93,44,92,110,32,32,32,32,91,32,109,111,110,116,104,44,32,32,51,44,32,32,51,32,42,32,100,117,114,97,116,105,111,110,77,111,110,116,104,32,93,44,92,110,32,32,32,32,91,32,32,121,101,97,114,44,32,32,49,44,32,32,32,32,32,32,100,117,114,97,116,105,111,110,89,101,97,114,32,32,93,92,110,32,32,93,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,105,99,107,70,111,114,109,97,116,40,100,97,116,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,115,101,99,111,110,100,40,100,97,116,101,41,32,60,32,100,97,116,101,32,63,32,102,111,114,109,97,116,77,105,108,108,105,115,101,99,111,110,100,92,110,32,32,32,32,32,32,32,32,58,32,109,105,110,117,116,101,40,100,97,116,101,41,32,60,32,100,97,116,101,32,63,32,102,111,114,109,97,116,83,101,99,111,110,100,92,110,32,32,32,32,32,32,32,32,58,32,104,111,117,114,40,100,97,116,101,41,32,60,32,100,97,116,101,32,63,32,102,111,114,109,97,116,77,105,110,117,116,101,92,110,32,32,32,32,32,32,32,32,58,32,100,97,121,40,100,97,116,101,41,32,60,32,100,97,116,101,32,63,32,102,111,114,109,97,116,72,111,117,114,92,110,32,32,32,32,32,32,32,32,58,32,109,111,110,116,104,40,100,97,116,101,41,32,60,32,100,97,116,101,32,63,32,40,119,101,101,107,40,100,97,116,101,41,32,60,32,100,97,116,101,32,63,32,102,111,114,109,97,116,68,97,121,32,58,32,102,111,114,109,97,116,87,101,101,107,41,92,110,32,32,32,32,32,32,32,32,58,32,121,101,97,114,40,100,97,116,101,41,32,60,32,100,97,116,101,32,63,32,102,111,114,109,97,116,77,111,110,116,104,92,110,32,32,32,32,32,32,32,32,58,32,102,111,114,109,97,116,89,101,97,114,41,40,100,97,116,101,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,105,99,107,73,110,116,101,114,118,97,108,40,105,110,116,101,114,118,97,108,44,32,115,116,97,114,116,44,32,115,116,111,112,44,32,115,116,101,112,41,32,123,92,110,32,32,32,32,105,102,32,40,105,110,116,101,114,118,97,108,32,61,61,32,110,117,108,108,41,32,105,110,116,101,114,118,97,108,32,61,32,49,48,59,92,110,92,110,32,32,32,32,47,47,32,73,102,32,97,32,100,101,115,105,114,101,100,32,116,105,99,107,32,99,111,117,110,116,32,105,115,32,115,112,101,99,105,102,105,101,100,44,32,112,105,99,107,32,97,32,114,101,97,115,111,110,97,98,108,101,32,116,105,99,107,32,105,110,116,101,114,118,97,108,92,110,32,32,32,32,47,47,32,98,97,115,101,100,32,111,110,32,116,104,101,32,101,120,116,101,110,116,32,111,102,32,116,104,101,32,100,111,109,97,105,110,32,97,110,100,32,97,32,114,111,117,103,104,32,101,115,116,105,109,97,116,101,32,111,102,32,116,105,99,107,32,115,105,122,101,46,92,110,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,97,115,115,117,109,101,32,105,110,116,101,114,118,97,108,32,105,115,32,97,108,114,101,97,100,121,32,97,32,116,105,109,101,32,105,110,116,101,114,118,97,108,32,97,110,100,32,117,115,101,32,105,116,46,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,105,110,116,101,114,118,97,108,32,61,61,61,32,92,34,110,117,109,98,101,114,92,34,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,77,97,116,104,46,97,98,115,40,115,116,111,112,32,45,32,115,116,97,114,116,41,32,47,32,105,110,116,101,114,118,97,108,44,92,110,32,32,32,32,32,32,32,32,32,32,105,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,98,105,115,101,99,116,111,114,41,40,102,117,110,99,116,105,111,110,40,105,41,32,123,32,114,101,116,117,114,110,32,105,91,50,93,59,32,125,41,46,114,105,103,104,116,40,116,105,99,107,73,110,116,101,114,118,97,108,115,44,32,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,32,61,61,61,32,116,105,99,107,73,110,116,101,114,118,97,108,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,101,112,32,61,32,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,105,99,107,83,116,101,112,41,40,115,116,97,114,116,32,47,32,100,117,114,97,116,105,111,110,89,101,97,114,44,32,115,116,111,112,32,47,32,100,117,114,97,116,105,111,110,89,101,97,114,44,32,105,110,116,101,114,118,97,108,41,59,92,110,32,32,32,32,32,32,32,32,105,110,116,101,114,118,97,108,32,61,32,121,101,97,114,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,41,32,123,92,110,32,32,32,32,32,32,32,32,105,32,61,32,116,105,99,107,73,110,116,101,114,118,97,108,115,91,116,97,114,103,101,116,32,47,32,116,105,99,107,73,110,116,101,114,118,97,108,115,91,105,32,45,32,49,93,91,50,93,32,60,32,116,105,99,107,73,110,116,101,114,118,97,108,115,91,105,93,91,50,93,32,47,32,116,97,114,103,101,116,32,63,32,105,32,45,32,49,32,58,32,105,93,59,92,110,32,32,32,32,32,32,32,32,115,116,101,112,32,61,32,105,91,49,93,59,92,110,32,32,32,32,32,32,32,32,105,110,116,101,114,118,97,108,32,61,32,105,91,48,93,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,115,116,101,112,32,61,32,77,97,116,104,46,109,97,120,40,40,48,44,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,105,99,107,83,116,101,112,41,40,115,116,97,114,116,44,32,115,116,111,112,44,32,105,110,116,101,114,118,97,108,41,44,32,49,41,59,92,110,32,32,32,32,32,32,32,32,105,110,116,101,114,118,97,108,32,61,32,109,105,108,108,105,115,101,99,111,110,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,101,112,32,61,61,32,110,117,108,108,32,63,32,105,110,116,101,114,118,97,108,32,58,32,105,110,116,101,114,118,97,108,46,101,118,101,114,121,40,115,116,101,112,41,59,92,110,32,32,125,92,110,92,110,32,32,115,99,97,108,101,46,105,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,40,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,105,110,118,101,114,116,40,121,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,100,111,109,97,105,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,100,111,109,97,105,110,40,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,112,46,99,97,108,108,40,95,44,32,110,117,109,98,101,114,41,41,32,58,32,100,111,109,97,105,110,40,41,46,109,97,112,40,100,97,116,101,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,116,105,99,107,115,32,61,32,102,117,110,99,116,105,111,110,40,105,110,116,101,114,118,97,108,44,32,115,116,101,112,41,32,123,92,110,32,32,32,32,118,97,114,32,100,32,61,32,100,111,109,97,105,110,40,41,44,92,110,32,32,32,32,32,32,32,32,116,48,32,61,32,100,91,48,93,44,92,110,32,32,32,32,32,32,32,32,116,49,32,61,32,100,91,100,46,108,101,110,103,116,104,32,45,32,49,93,44,92,110,32,32,32,32,32,32,32,32,114,32,61,32,116,49,32,60,32,116,48,44,92,110,32,32,32,32,32,32,32,32,116,59,92,110,32,32,32,32,105,102,32,40,114,41,32,116,32,61,32,116,48,44,32,116,48,32,61,32,116,49,44,32,116,49,32,61,32,116,59,92,110,32,32,32,32,116,32,61,32,116,105,99,107,73,110,116,101,114,118,97,108,40,105,110,116,101,114,118,97,108,44,32,116,48,44,32,116,49,44,32,115,116,101,112,41,59,92,110,32,32,32,32,116,32,61,32,116,32,63,32,116,46,114,97,110,103,101,40,116,48,44,32,116,49,32,43,32,49,41,32,58,32,91,93,59,32,47,47,32,105,110,99,108,117,115,105,118,101,32,115,116,111,112,92,110,32,32,32,32,114,101,116,117,114,110,32,114,32,63,32,116,46,114,101,118,101,114,115,101,40,41,32,58,32,116,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,116,105,99,107,70,111,114,109,97,116,32,61,32,102,117,110,99,116,105,111,110,40,99,111,117,110,116,44,32,115,112,101,99,105,102,105,101,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,112,101,99,105,102,105,101,114,32,61,61,32,110,117,108,108,32,63,32,116,105,99,107,70,111,114,109,97,116,32,58,32,102,111,114,109,97,116,40,115,112,101,99,105,102,105,101,114,41,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,110,105,99,101,32,61,32,102,117,110,99,116,105,111,110,40,105,110,116,101,114,118,97,108,44,32,115,116,101,112,41,32,123,92,110,32,32,32,32,118,97,114,32,100,32,61,32,100,111,109,97,105,110,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,105,110,116,101,114,118,97,108,32,61,32,116,105,99,107,73,110,116,101,114,118,97,108,40,105,110,116,101,114,118,97,108,44,32,100,91,48,93,44,32,100,91,100,46,108,101,110,103,116,104,32,45,32,49,93,44,32,115,116,101,112,41,41,92,110,32,32,32,32,32,32,32,32,63,32,100,111,109,97,105,110,40,40,48,44,95,110,105,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,44,32,105,110,116,101,114,118,97,108,41,41,92,110,32,32,32,32,32,32,32,32,58,32,115,99,97,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,115,99,97,108,101,46,99,111,112,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,99,111,110,116,105,110,117,111,117,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,111,112,121,41,40,115,99,97,108,101,44,32,99,97,108,101,110,100,97,114,40,121,101,97,114,44,32,109,111,110,116,104,44,32,119,101,101,107,44,32,100,97,121,44,32,104,111,117,114,44,32,109,105,110,117,116,101,44,32,115,101,99,111,110,100,44,32,109,105,108,108,105,115,101,99,111,110,100,44,32,102,111,114,109,97,116,41,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,115,99,97,108,101,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,110,105,116,82,97,110,103,101,46,97,112,112,108,121,40,99,97,108,101,110,100,97,114,40,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,115,117,110,100,97,121,44,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,100,51,95,116,105,109,101,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,116,105,109,101,70,111,114,109,97,116,41,46,100,111,109,97,105,110,40,91,110,101,119,32,68,97,116,101,40,50,48,48,48,44,32,48,44,32,49,41,44,32,110,101,119,32,68,97,116,101,40,50,48,48,48,44,32,48,44,32,50,41,93,41,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,116,105,109,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,117,116,99,84,105,109,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,117,116,99,84,105,109,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,116,105,109,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,45,102,111,114,109,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,89,101,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,77,111,110,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,87,101,101,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,68,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,72,111,117,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,77,105,110,117,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,115,101,99,111,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,105,108,108,105,115,101,99,111,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,105,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,105,110,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,110,105,116,82,97,110,103,101,46,97,112,112,108,121,40,40,48,44,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,97,108,101,110,100,97,114,41,40,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,117,116,99,83,117,110,100,97,121,44,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,32,100,51,95,116,105,109,101,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,117,116,99,70,111,114,109,97,116,41,46,100,111,109,97,105,110,40,91,68,97,116,101,46,85,84,67,40,50,48,48,48,44,32,48,44,32,49,41,44,32,68,97,116,101,46,85,84,67,40,50,48,48,48,44,32,48,44,32,50,41,93,41,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,117,116,99,84,105,109,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,99,114,101,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,99,114,101,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,114,101,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,114,101,97,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,99,114,101,97,116,111,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,40,48,44,95,99,114,101,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,97,109,101,41,46,99,97,108,108,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,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,99,114,101,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,99,114,101,97,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,99,114,101,97,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,109,101,115,112,97,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,109,101,115,112,97,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,110,97,109,101,115,112,97,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,109,101,115,112,97,99,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,109,101,115,112,97,99,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,110,97,109,101,115,112,97,99,101,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,111,114,73,110,104,101,114,105,116,40,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,100,111,99,117,109,101,110,116,32,61,32,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,92,110,32,32,32,32,32,32,32,32,117,114,105,32,61,32,116,104,105,115,46,110,97,109,101,115,112,97,99,101,85,82,73,59,92,110,32,32,32,32,114,101,116,117,114,110,32,117,114,105,32,61,61,61,32,95,110,97,109,101,115,112,97,99,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,120,104,116,109,108,32,38,38,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,46,110,97,109,101,115,112,97,99,101,85,82,73,32,61,61,61,32,95,110,97,109,101,115,112,97,99,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,120,104,116,109,108,92,110,32,32,32,32,32,32,32,32,63,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,110,97,109,101,41,92,110,32,32,32,32,32,32,32,32,58,32,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,117,114,105,44,32,110,97,109,101,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,111,114,70,105,120,101,100,40,102,117,108,108,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,102,117,108,108,110,97,109,101,46,115,112,97,99,101,44,32,102,117,108,108,110,97,109,101,46,108,111,99,97,108,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,41,32,123,92,110,32,32,118,97,114,32,102,117,108,108,110,97,109,101,32,61,32,40,48,44,95,110,97,109,101,115,112,97,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,97,109,101,41,59,92,110,32,32,114,101,116,117,114,110,32,40,102,117,108,108,110,97,109,101,46,108,111,99,97,108,92,110,32,32,32,32,32,32,63,32,99,114,101,97,116,111,114,70,105,120,101,100,92,110,32,32,32,32,32,32,58,32,99,114,101,97,116,111,114,73,110,104,101,114,105,116,41,40,102,117,108,108,110,97,109,101,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,99,114,101,97,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,108,105,101,110,116,80,111,105,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,111,105,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,101,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,114,101,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,101,97,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,114,101,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,115,116,111,109,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,108,101,99,116,105,111,110,95,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,99,117,115,116,111,109,69,118,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,108,101,99,116,105,111,110,95,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,101,118,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,111,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,111,99,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,116,99,104,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,97,116,99,104,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,111,117,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,111,117,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,97,109,101,115,112,97,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,97,109,101,115,112,97,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,97,109,101,115,112,97,99,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,97,109,101,115,112,97,99,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,108,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,108,101,99,116,65,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,108,101,99,116,65,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,108,101,99,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,108,101,99,116,105,111,110,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,108,101,99,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,108,101,99,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,108,101,99,116,111,114,65,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,108,101,99,116,111,114,65,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,121,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,108,101,99,116,105,111,110,95,115,116,121,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,115,116,121,108,101,86,97,108,117,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,111,117,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,111,117,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,111,117,99,104,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,111,117,99,104,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,119,105,110,100,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,105,110,100,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,114,101,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,114,101,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,99,114,101,97,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,114,101,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,114,101,97,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,99,114,101,97,116,111,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,111,99,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,111,99,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,108,111,99,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,99,104,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,99,104,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,109,97,116,99,104,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,111,117,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,111,117,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,109,111,117,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,109,101,115,112,97,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,109,101,115,112,97,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,110,97,109,101,115,112,97,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,109,101,115,112,97,99,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,109,101,115,112,97,99,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,110,97,109,101,115,112,97,99,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,105,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,105,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,112,111,105,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,65,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,65,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,65,108,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,105,111,110,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,111,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,111,114,65,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,111,114,65,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,111,114,65,108,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,105,111,110,95,115,116,121,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,105,111,110,47,115,116,121,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,116,121,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,117,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,111,117,99,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,116,111,117,99,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,117,99,104,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,111,117,99,104,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,116,111,117,99,104,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,119,105,110,100,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,119,105,110,100,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,119,105,110,100,111,119,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,105,111,110,95,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,105,111,110,47,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,108,111,99,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,108,111,99,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,111,99,97,108,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,110,101,120,116,73,100,32,61,32,48,59,92,110,92,110,102,117,110,99,116,105,111,110,32,108,111,99,97,108,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,76,111,99,97,108,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,76,111,99,97,108,40,41,32,123,92,110,32,32,116,104,105,115,46,95,32,61,32,92,34,64,92,34,32,43,32,40,43,43,110,101,120,116,73,100,41,46,116,111,83,116,114,105,110,103,40,51,54,41,59,92,110,125,92,110,92,110,76,111,99,97,108,46,112,114,111,116,111,116,121,112,101,32,61,32,108,111,99,97,108,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,76,111,99,97,108,44,92,110,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,100,32,61,32,116,104,105,115,46,95,59,92,110,32,32,32,32,119,104,105,108,101,32,40,33,40,105,100,32,105,110,32,110,111,100,101,41,41,32,105,102,32,40,33,40,110,111,100,101,32,61,32,110,111,100,101,46,112,97,114,101,110,116,78,111,100,101,41,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,91,105,100,93,59,92,110,32,32,125,44,92,110,32,32,115,101,116,58,32,102,117,110,99,116,105,111,110,40,110,111,100,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,91,116,104,105,115,46,95,93,32,61,32,118,97,108,117,101,59,92,110,32,32,125,44,92,110,32,32,114,101,109,111,118,101,58,32,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,32,105,110,32,110,111,100,101,32,38,38,32,100,101,108,101,116,101,32,110,111,100,101,91,116,104,105,115,46,95,93,59,92,110,32,32,125,44,92,110,32,32,116,111,83,116,114,105,110,103,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,59,92,110,32,32,125,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,108,111,99,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,109,97,116,99,104,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,109,97,116,99,104,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,108,101,99,116,111,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,109,97,116,99,104,101,115,40,115,101,108,101,99,116,111,114,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,109,97,116,99,104,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,109,111,117,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,109,111,117,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,111,117,114,99,101,69,118,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,111,117,114,99,101,69,118,101,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,111,117,114,99,101,69,118,101,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,105,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,105,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,112,111,105,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,101,118,101,110,116,32,61,32,40,48,44,95,115,111,117,114,99,101,69,118,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,105,102,32,40,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,41,32,101,118,101,110,116,32,61,32,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,91,48,93,59,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,112,111,105,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,111,100,101,44,32,101,118,101,110,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,109,111,117,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,110,97,109,101,115,112,97,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,110,97,109,101,115,112,97,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,109,101,115,112,97,99,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,97,109,101,115,112,97,99,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,110,97,109,101,115,112,97,99,101,115,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,41,32,123,92,110,32,32,118,97,114,32,112,114,101,102,105,120,32,61,32,110,97,109,101,32,43,61,32,92,34,92,34,44,32,105,32,61,32,112,114,101,102,105,120,46,105,110,100,101,120,79,102,40,92,34,58,92,34,41,59,92,110,32,32,105,102,32,40,105,32,62,61,32,48,32,38,38,32,40,112,114,101,102,105,120,32,61,32,110,97,109,101,46,115,108,105,99,101,40,48,44,32,105,41,41,32,33,61,61,32,92,34,120,109,108,110,115,92,34,41,32,110,97,109,101,32,61,32,110,97,109,101,46,115,108,105,99,101,40,105,32,43,32,49,41,59,92,110,32,32,114,101,116,117,114,110,32,95,110,97,109,101,115,112,97,99,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,112,114,101,102,105,120,41,32,63,32,123,115,112,97,99,101,58,32,95,110,97,109,101,115,112,97,99,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,91,112,114,101,102,105,120,93,44,32,108,111,99,97,108,58,32,110,97,109,101,125,32,58,32,110,97,109,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,110,97,109,101,115,112,97,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,110,97,109,101,115,112,97,99,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,110,97,109,101,115,112,97,99,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,120,104,116,109,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,120,104,116,109,108,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,120,104,116,109,108,32,61,32,92,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,104,116,109,108,92,34,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,115,118,103,58,32,92,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,92,34,44,92,110,32,32,120,104,116,109,108,58,32,120,104,116,109,108,44,92,110,32,32,120,108,105,110,107,58,32,92,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,92,34,44,92,110,32,32,120,109,108,58,32,92,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,92,34,44,92,110,32,32,120,109,108,110,115,58,32,92,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,120,109,108,110,115,47,92,34,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,110,97,109,101,115,112,97,99,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,112,111,105,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,112,111,105,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,111,100,101,44,32,101,118,101,110,116,41,32,123,92,110,32,32,118,97,114,32,115,118,103,32,61,32,110,111,100,101,46,111,119,110,101,114,83,86,71,69,108,101,109,101,110,116,32,124,124,32,110,111,100,101,59,92,110,92,110,32,32,105,102,32,40,115,118,103,46,99,114,101,97,116,101,83,86,71,80,111,105,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,112,111,105,110,116,32,61,32,115,118,103,46,99,114,101,97,116,101,83,86,71,80,111,105,110,116,40,41,59,92,110,32,32,32,32,112,111,105,110,116,46,120,32,61,32,101,118,101,110,116,46,99,108,105,101,110,116,88,44,32,112,111,105,110,116,46,121,32,61,32,101,118,101,110,116,46,99,108,105,101,110,116,89,59,92,110,32,32,32,32,112,111,105,110,116,32,61,32,112,111,105,110,116,46,109,97,116,114,105,120,84,114,97,110,115,102,111,114,109,40,110,111,100,101,46,103,101,116,83,99,114,101,101,110,67,84,77,40,41,46,105,110,118,101,114,115,101,40,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,112,111,105,110,116,46,120,44,32,112,111,105,110,116,46,121,93,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,114,101,99,116,32,61,32,110,111,100,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,92,110,32,32,114,101,116,117,114,110,32,91,101,118,101,110,116,46,99,108,105,101,110,116,88,32,45,32,114,101,99,116,46,108,101,102,116,32,45,32,110,111,100,101,46,99,108,105,101,110,116,76,101,102,116,44,32,101,118,101,110,116,46,99,108,105,101,110,116,89,32,45,32,114,101,99,116,46,116,111,112,32,45,32,110,111,100,101,46,99,108,105,101,110,116,84,111,112,93,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,112,111,105,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,105,111,110,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,108,101,99,116,111,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,115,101,108,101,99,116,111,114,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,92,110,32,32,32,32,32,32,63,32,110,101,119,32,95,115,101,108,101,99,116,105,111,110,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,83,101,108,101,99,116,105,111,110,40,91,91,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,115,101,108,101,99,116,111,114,41,93,93,44,32,91,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,93,41,92,110,32,32,32,32,32,32,58,32,110,101,119,32,95,115,101,108,101,99,116,105,111,110,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,83,101,108,101,99,116,105,111,110,40,91,91,115,101,108,101,99,116,111,114,93,93,44,32,95,115,101,108,101,99,116,105,111,110,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,111,111,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,65,108,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,65,108,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,105,111,110,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,108,101,99,116,111,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,115,101,108,101,99,116,111,114,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,92,110,32,32,32,32,32,32,63,32,110,101,119,32,95,115,101,108,101,99,116,105,111,110,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,83,101,108,101,99,116,105,111,110,40,91,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,101,108,101,99,116,111,114,41,93,44,32,91,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,93,41,92,110,32,32,32,32,32,32,58,32,110,101,119,32,95,115,101,108,101,99,116,105,111,110,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,83,101,108,101,99,116,105,111,110,40,91,115,101,108,101,99,116,111,114,32,61,61,32,110,117,108,108,32,63,32,91,93,32,58,32,115,101,108,101,99,116,111,114,93,44,32,95,115,101,108,101,99,116,105,111,110,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,111,111,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,65,108,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,97,112,112,101,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,97,112,112,101,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,114,101,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,114,101,97,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,99,114,101,97,116,111,114,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,41,32,123,92,110,32,32,118,97,114,32,99,114,101,97,116,101,32,61,32,116,121,112,101,111,102,32,110,97,109,101,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,110,97,109,101,32,58,32,40,48,44,95,99,114,101,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,97,109,101,41,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,97,112,112,101,110,100,67,104,105,108,100,40,99,114,101,97,116,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,97,112,112,101,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,97,116,116,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,97,116,116,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,97,109,101,115,112,97,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,97,109,101,115,112,97,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,110,97,109,101,115,112,97,99,101,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,82,101,109,111,118,101,40,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,110,97,109,101,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,82,101,109,111,118,101,78,83,40,102,117,108,108,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,102,117,108,108,110,97,109,101,46,115,112,97,99,101,44,32,102,117,108,108,110,97,109,101,46,108,111,99,97,108,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,67,111,110,115,116,97,110,116,40,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,110,97,109,101,44,32,118,97,108,117,101,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,67,111,110,115,116,97,110,116,78,83,40,102,117,108,108,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,102,117,108,108,110,97,109,101,46,115,112,97,99,101,44,32,102,117,108,108,110,97,109,101,46,108,111,99,97,108,44,32,118,97,108,117,101,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,70,117,110,99,116,105,111,110,40,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,32,61,32,118,97,108,117,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,105,102,32,40,118,32,61,61,32,110,117,108,108,41,32,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,110,97,109,101,41,59,92,110,32,32,32,32,101,108,115,101,32,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,110,97,109,101,44,32,118,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,70,117,110,99,116,105,111,110,78,83,40,102,117,108,108,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,32,61,32,118,97,108,117,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,105,102,32,40,118,32,61,61,32,110,117,108,108,41,32,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,102,117,108,108,110,97,109,101,46,115,112,97,99,101,44,32,102,117,108,108,110,97,109,101,46,108,111,99,97,108,41,59,92,110,32,32,32,32,101,108,115,101,32,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,102,117,108,108,110,97,109,101,46,115,112,97,99,101,44,32,102,117,108,108,110,97,109,101,46,108,111,99,97,108,44,32,118,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,102,117,108,108,110,97,109,101,32,61,32,40,48,44,95,110,97,109,101,115,112,97,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,97,109,101,41,59,92,110,92,110,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,50,41,32,123,92,110,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,46,110,111,100,101,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,108,108,110,97,109,101,46,108,111,99,97,108,92,110,32,32,32,32,32,32,32,32,63,32,110,111,100,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,83,40,102,117,108,108,110,97,109,101,46,115,112,97,99,101,44,32,102,117,108,108,110,97,109,101,46,108,111,99,97,108,41,92,110,32,32,32,32,32,32,32,32,58,32,110,111,100,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,102,117,108,108,110,97,109,101,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,118,97,108,117,101,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,63,32,40,102,117,108,108,110,97,109,101,46,108,111,99,97,108,32,63,32,97,116,116,114,82,101,109,111,118,101,78,83,32,58,32,97,116,116,114,82,101,109,111,118,101,41,32,58,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,92,110,32,32,32,32,32,32,63,32,40,102,117,108,108,110,97,109,101,46,108,111,99,97,108,32,63,32,97,116,116,114,70,117,110,99,116,105,111,110,78,83,32,58,32,97,116,116,114,70,117,110,99,116,105,111,110,41,92,110,32,32,32,32,32,32,58,32,40,102,117,108,108,110,97,109,101,46,108,111,99,97,108,32,63,32,97,116,116,114,67,111,110,115,116,97,110,116,78,83,32,58,32,97,116,116,114,67,111,110,115,116,97,110,116,41,41,41,40,102,117,108,108,110,97,109,101,44,32,118,97,108,117,101,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,97,116,116,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,99,97,108,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,99,97,108,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,99,97,108,108,98,97,99,107,32,61,32,97,114,103,117,109,101,110,116,115,91,48,93,59,92,110,32,32,97,114,103,117,109,101,110,116,115,91,48,93,32,61,32,116,104,105,115,59,92,110,32,32,99,97,108,108,98,97,99,107,46,97,112,112,108,121,40,110,117,108,108,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,99,97,108,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,99,108,97,115,115,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,99,108,97,115,115,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,99,108,97,115,115,65,114,114,97,121,40,115,116,114,105,110,103,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,92,115,43,47,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,97,115,115,76,105,115,116,40,110,111,100,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,46,99,108,97,115,115,76,105,115,116,32,124,124,32,110,101,119,32,67,108,97,115,115,76,105,115,116,40,110,111,100,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,67,108,97,115,115,76,105,115,116,40,110,111,100,101,41,32,123,92,110,32,32,116,104,105,115,46,95,110,111,100,101,32,61,32,110,111,100,101,59,92,110,32,32,116,104,105,115,46,95,110,97,109,101,115,32,61,32,99,108,97,115,115,65,114,114,97,121,40,110,111,100,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,92,34,99,108,97,115,115,92,34,41,32,124,124,32,92,34,92,34,41,59,92,110,125,92,110,92,110,67,108,97,115,115,76,105,115,116,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,100,100,58,32,102,117,110,99,116,105,111,110,40,110,97,109,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,116,104,105,115,46,95,110,97,109,101,115,46,105,110,100,101,120,79,102,40,110,97,109,101,41,59,92,110,32,32,32,32,105,102,32,40,105,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,110,97,109,101,115,46,112,117,115,104,40,110,97,109,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,110,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,99,108,97,115,115,92,34,44,32,116,104,105,115,46,95,110,97,109,101,115,46,106,111,105,110,40,92,34,32,92,34,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,109,111,118,101,58,32,102,117,110,99,116,105,111,110,40,110,97,109,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,116,104,105,115,46,95,110,97,109,101,115,46,105,110,100,101,120,79,102,40,110,97,109,101,41,59,92,110,32,32,32,32,105,102,32,40,105,32,62,61,32,48,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,110,97,109,101,115,46,115,112,108,105,99,101,40,105,44,32,49,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,110,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,99,108,97,115,115,92,34,44,32,116,104,105,115,46,95,110,97,109,101,115,46,106,111,105,110,40,92,34,32,92,34,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,99,111,110,116,97,105,110,115,58,32,102,117,110,99,116,105,111,110,40,110,97,109,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,110,97,109,101,115,46,105,110,100,101,120,79,102,40,110,97,109,101,41,32,62,61,32,48,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,97,115,115,101,100,65,100,100,40,110,111,100,101,44,32,110,97,109,101,115,41,32,123,92,110,32,32,118,97,114,32,108,105,115,116,32,61,32,99,108,97,115,115,76,105,115,116,40,110,111,100,101,41,44,32,105,32,61,32,45,49,44,32,110,32,61,32,110,97,109,101,115,46,108,101,110,103,116,104,59,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,108,105,115,116,46,97,100,100,40,110,97,109,101,115,91,105,93,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,97,115,115,101,100,82,101,109,111,118,101,40,110,111,100,101,44,32,110,97,109,101,115,41,32,123,92,110,32,32,118,97,114,32,108,105,115,116,32,61,32,99,108,97,115,115,76,105,115,116,40,110,111,100,101,41,44,32,105,32,61,32,45,49,44,32,110,32,61,32,110,97,109,101,115,46,108,101,110,103,116,104,59,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,108,105,115,116,46,114,101,109,111,118,101,40,110,97,109,101,115,91,105,93,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,97,115,115,101,100,84,114,117,101,40,110,97,109,101,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,99,108,97,115,115,101,100,65,100,100,40,116,104,105,115,44,32,110,97,109,101,115,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,97,115,115,101,100,70,97,108,115,101,40,110,97,109,101,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,99,108,97,115,115,101,100,82,101,109,111,118,101,40,116,104,105,115,44,32,110,97,109,101,115,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,97,115,115,101,100,70,117,110,99,116,105,111,110,40,110,97,109,101,115,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,40,118,97,108,117,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,63,32,99,108,97,115,115,101,100,65,100,100,32,58,32,99,108,97,115,115,101,100,82,101,109,111,118,101,41,40,116,104,105,115,44,32,110,97,109,101,115,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,110,97,109,101,115,32,61,32,99,108,97,115,115,65,114,114,97,121,40,110,97,109,101,32,43,32,92,34,92,34,41,59,92,110,92,110,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,50,41,32,123,92,110,32,32,32,32,118,97,114,32,108,105,115,116,32,61,32,99,108,97,115,115,76,105,115,116,40,116,104,105,115,46,110,111,100,101,40,41,41,44,32,105,32,61,32,45,49,44,32,110,32,61,32,110,97,109,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,105,102,32,40,33,108,105,115,116,46,99,111,110,116,97,105,110,115,40,110,97,109,101,115,91,105,93,41,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,92,110,32,32,32,32,32,32,63,32,99,108,97,115,115,101,100,70,117,110,99,116,105,111,110,32,58,32,118,97,108,117,101,92,110,32,32,32,32,32,32,63,32,99,108,97,115,115,101,100,84,114,117,101,92,110,32,32,32,32,32,32,58,32,99,108,97,115,115,101,100,70,97,108,115,101,41,40,110,97,109,101,115,44,32,118,97,108,117,101,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,99,108,97,115,115,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,99,108,111,110,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,99,108,111,110,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,105,111,110,95,99,108,111,110,101,83,104,97,108,108,111,119,40,41,32,123,92,110,32,32,118,97,114,32,99,108,111,110,101,32,61,32,116,104,105,115,46,99,108,111,110,101,78,111,100,101,40,102,97,108,115,101,41,44,32,112,97,114,101,110,116,32,61,32,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,92,110,32,32,114,101,116,117,114,110,32,112,97,114,101,110,116,32,63,32,112,97,114,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,99,108,111,110,101,44,32,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,32,58,32,99,108,111,110,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,105,111,110,95,99,108,111,110,101,68,101,101,112,40,41,32,123,92,110,32,32,118,97,114,32,99,108,111,110,101,32,61,32,116,104,105,115,46,99,108,111,110,101,78,111,100,101,40,116,114,117,101,41,44,32,112,97,114,101,110,116,32,61,32,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,92,110,32,32,114,101,116,117,114,110,32,112,97,114,101,110,116,32,63,32,112,97,114,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,99,108,111,110,101,44,32,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,32,58,32,99,108,111,110,101,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,100,101,101,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,40,100,101,101,112,32,63,32,115,101,108,101,99,116,105,111,110,95,99,108,111,110,101,68,101,101,112,32,58,32,115,101,108,101,99,116,105,111,110,95,99,108,111,110,101,83,104,97,108,108,111,119,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,99,108,111,110,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,100,97,116,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,100,97,116,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,110,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,110,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,110,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,107,101,121,80,114,101,102,105,120,32,61,32,92,34,36,92,34,59,32,47,47,32,80,114,111,116,101,99,116,32,97,103,97,105,110,115,116,32,107,101,121,115,32,108,105,107,101,32,226,128,156,95,95,112,114,111,116,111,95,95,226,128,157,46,92,110,92,110,102,117,110,99,116,105,111,110,32,98,105,110,100,73,110,100,101,120,40,112,97,114,101,110,116,44,32,103,114,111,117,112,44,32,101,110,116,101,114,44,32,117,112,100,97,116,101,44,32,101,120,105,116,44,32,100,97,116,97,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,48,44,92,110,32,32,32,32,32,32,110,111,100,101,44,92,110,32,32,32,32,32,32,103,114,111,117,112,76,101,110,103,116,104,32,61,32,103,114,111,117,112,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,100,97,116,97,76,101,110,103,116,104,32,61,32,100,97,116,97,46,108,101,110,103,116,104,59,92,110,92,110,32,32,47,47,32,80,117,116,32,97,110,121,32,110,111,110,45,110,117,108,108,32,110,111,100,101,115,32,116,104,97,116,32,102,105,116,32,105,110,116,111,32,117,112,100,97,116,101,46,92,110,32,32,47,47,32,80,117,116,32,97,110,121,32,110,117,108,108,32,110,111,100,101,115,32,105,110,116,111,32,101,110,116,101,114,46,92,110,32,32,47,47,32,80,117,116,32,97,110,121,32,114,101,109,97,105,110,105,110,103,32,100,97,116,97,32,105,110,116,111,32,101,110,116,101,114,46,92,110,32,32,102,111,114,32,40,59,32,105,32,60,32,100,97,116,97,76,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,46,95,95,100,97,116,97,95,95,32,61,32,100,97,116,97,91,105,93,59,92,110,32,32,32,32,32,32,117,112,100,97,116,101,91,105,93,32,61,32,110,111,100,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,101,110,116,101,114,91,105,93,32,61,32,110,101,119,32,95,101,110,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,110,116,101,114,78,111,100,101,40,112,97,114,101,110,116,44,32,100,97,116,97,91,105,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,80,117,116,32,97,110,121,32,110,111,110,45,110,117,108,108,32,110,111,100,101,115,32,116,104,97,116,32,100,111,110,226,128,153,116,32,102,105,116,32,105,110,116,111,32,101,120,105,116,46,92,110,32,32,102,111,114,32,40,59,32,105,32,60,32,103,114,111,117,112,76,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,41,32,123,92,110,32,32,32,32,32,32,101,120,105,116,91,105,93,32,61,32,110,111,100,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,105,110,100,75,101,121,40,112,97,114,101,110,116,44,32,103,114,111,117,112,44,32,101,110,116,101,114,44,32,117,112,100,97,116,101,44,32,101,120,105,116,44,32,100,97,116,97,44,32,107,101,121,41,32,123,92,110,32,32,118,97,114,32,105,44,92,110,32,32,32,32,32,32,110,111,100,101,44,92,110,32,32,32,32,32,32,110,111,100,101,66,121,75,101,121,86,97,108,117,101,32,61,32,123,125,44,92,110,32,32,32,32,32,32,103,114,111,117,112,76,101,110,103,116,104,32,61,32,103,114,111,117,112,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,100,97,116,97,76,101,110,103,116,104,32,61,32,100,97,116,97,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,107,101,121,86,97,108,117,101,115,32,61,32,110,101,119,32,65,114,114,97,121,40,103,114,111,117,112,76,101,110,103,116,104,41,44,92,110,32,32,32,32,32,32,107,101,121,86,97,108,117,101,59,92,110,92,110,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,107,101,121,32,102,111,114,32,101,97,99,104,32,110,111,100,101,46,92,110,32,32,47,47,32,73,102,32,109,117,108,116,105,112,108,101,32,110,111,100,101,115,32,104,97,118,101,32,116,104,101,32,115,97,109,101,32,107,101,121,44,32,116,104,101,32,100,117,112,108,105,99,97,116,101,115,32,97,114,101,32,97,100,100,101,100,32,116,111,32,101,120,105,116,46,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,103,114,111,117,112,76,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,41,32,123,92,110,32,32,32,32,32,32,107,101,121,86,97,108,117,101,115,91,105,93,32,61,32,107,101,121,86,97,108,117,101,32,61,32,107,101,121,80,114,101,102,105,120,32,43,32,107,101,121,46,99,97,108,108,40,110,111,100,101,44,32,110,111,100,101,46,95,95,100,97,116,97,95,95,44,32,105,44,32,103,114,111,117,112,41,59,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,86,97,108,117,101,32,105,110,32,110,111,100,101,66,121,75,101,121,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,101,120,105,116,91,105,93,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,110,111,100,101,66,121,75,101,121,86,97,108,117,101,91,107,101,121,86,97,108,117,101,93,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,107,101,121,32,102,111,114,32,101,97,99,104,32,100,97,116,117,109,46,92,110,32,32,47,47,32,73,102,32,116,104,101,114,101,32,97,32,110,111,100,101,32,97,115,115,111,99,105,97,116,101,100,32,119,105,116,104,32,116,104,105,115,32,107,101,121,44,32,106,111,105,110,32,97,110,100,32,97,100,100,32,105,116,32,116,111,32,117,112,100,97,116,101,46,92,110,32,32,47,47,32,73,102,32,116,104,101,114,101,32,105,115,32,110,111,116,32,40,111,114,32,116,104,101,32,107,101,121,32,105,115,32,97,32,100,117,112,108,105,99,97,116,101,41,44,32,97,100,100,32,105,116,32,116,111,32,101,110,116,101,114,46,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,100,97,116,97,76,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,107,101,121,86,97,108,117,101,32,61,32,107,101,121,80,114,101,102,105,120,32,43,32,107,101,121,46,99,97,108,108,40,112,97,114,101,110,116,44,32,100,97,116,97,91,105,93,44,32,105,44,32,100,97,116,97,41,59,92,110,32,32,32,32,105,102,32,40,110,111,100,101,32,61,32,110,111,100,101,66,121,75,101,121,86,97,108,117,101,91,107,101,121,86,97,108,117,101,93,41,32,123,92,110,32,32,32,32,32,32,117,112,100,97,116,101,91,105,93,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,110,111,100,101,46,95,95,100,97,116,97,95,95,32,61,32,100,97,116,97,91,105,93,59,92,110,32,32,32,32,32,32,110,111,100,101,66,121,75,101,121,86,97,108,117,101,91,107,101,121,86,97,108,117,101,93,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,101,110,116,101,114,91,105,93,32,61,32,110,101,119,32,95,101,110,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,110,116,101,114,78,111,100,101,40,112,97,114,101,110,116,44,32,100,97,116,97,91,105,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,65,100,100,32,97,110,121,32,114,101,109,97,105,110,105,110,103,32,110,111,100,101,115,32,116,104,97,116,32,119,101,114,101,32,110,111,116,32,98,111,117,110,100,32,116,111,32,100,97,116,97,32,116,111,32,101,120,105,116,46,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,103,114,111,117,112,76,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,40,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,41,32,38,38,32,40,110,111,100,101,66,121,75,101,121,86,97,108,117,101,91,107,101,121,86,97,108,117,101,115,91,105,93,93,32,61,61,61,32,110,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,101,120,105,116,91,105,93,32,61,32,110,111,100,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,105,102,32,40,33,118,97,108,117,101,41,32,123,92,110,32,32,32,32,100,97,116,97,32,61,32,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,115,105,122,101,40,41,41,44,32,106,32,61,32,45,49,59,92,110,32,32,32,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,100,41,32,123,32,100,97,116,97,91,43,43,106,93,32,61,32,100,59,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,98,105,110,100,32,61,32,107,101,121,32,63,32,98,105,110,100,75,101,121,32,58,32,98,105,110,100,73,110,100,101,120,44,92,110,32,32,32,32,32,32,112,97,114,101,110,116,115,32,61,32,116,104,105,115,46,95,112,97,114,101,110,116,115,44,92,110,32,32,32,32,32,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,59,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,118,97,108,117,101,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,118,97,108,117,101,41,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,109,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,44,32,117,112,100,97,116,101,32,61,32,110,101,119,32,65,114,114,97,121,40,109,41,44,32,101,110,116,101,114,32,61,32,110,101,119,32,65,114,114,97,121,40,109,41,44,32,101,120,105,116,32,61,32,110,101,119,32,65,114,114,97,121,40,109,41,44,32,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,112,97,114,101,110,116,115,91,106,93,44,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,106,93,44,92,110,32,32,32,32,32,32,32,32,103,114,111,117,112,76,101,110,103,116,104,32,61,32,103,114,111,117,112,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,118,97,108,117,101,46,99,97,108,108,40,112,97,114,101,110,116,44,32,112,97,114,101,110,116,32,38,38,32,112,97,114,101,110,116,46,95,95,100,97,116,97,95,95,44,32,106,44,32,112,97,114,101,110,116,115,41,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,76,101,110,103,116,104,32,61,32,100,97,116,97,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,101,110,116,101,114,71,114,111,117,112,32,61,32,101,110,116,101,114,91,106,93,32,61,32,110,101,119,32,65,114,114,97,121,40,100,97,116,97,76,101,110,103,116,104,41,44,92,110,32,32,32,32,32,32,32,32,117,112,100,97,116,101,71,114,111,117,112,32,61,32,117,112,100,97,116,101,91,106,93,32,61,32,110,101,119,32,65,114,114,97,121,40,100,97,116,97,76,101,110,103,116,104,41,44,92,110,32,32,32,32,32,32,32,32,101,120,105,116,71,114,111,117,112,32,61,32,101,120,105,116,91,106,93,32,61,32,110,101,119,32,65,114,114,97,121,40,103,114,111,117,112,76,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,98,105,110,100,40,112,97,114,101,110,116,44,32,103,114,111,117,112,44,32,101,110,116,101,114,71,114,111,117,112,44,32,117,112,100,97,116,101,71,114,111,117,112,44,32,101,120,105,116,71,114,111,117,112,44,32,100,97,116,97,44,32,107,101,121,41,59,92,110,92,110,32,32,32,32,47,47,32,78,111,119,32,99,111,110,110,101,99,116,32,116,104,101,32,101,110,116,101,114,32,110,111,100,101,115,32,116,111,32,116,104,101,105,114,32,102,111,108,108,111,119,105,110,103,32,117,112,100,97,116,101,32,110,111,100,101,44,32,115,117,99,104,32,116,104,97,116,92,110,32,32,32,32,47,47,32,97,112,112,101,110,100,67,104,105,108,100,32,99,97,110,32,105,110,115,101,114,116,32,116,104,101,32,109,97,116,101,114,105,97,108,105,122,101,100,32,101,110,116,101,114,32,110,111,100,101,32,98,101,102,111,114,101,32,116,104,105,115,32,110,111,100,101,44,92,110,32,32,32,32,47,47,32,114,97,116,104,101,114,32,116,104,97,110,32,97,116,32,116,104,101,32,101,110,100,32,111,102,32,116,104,101,32,112,97,114,101,110,116,32,110,111,100,101,46,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,48,32,61,32,48,44,32,105,49,32,61,32,48,44,32,112,114,101,118,105,111,117,115,44,32,110,101,120,116,59,32,105,48,32,60,32,100,97,116,97,76,101,110,103,116,104,59,32,43,43,105,48,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,112,114,101,118,105,111,117,115,32,61,32,101,110,116,101,114,71,114,111,117,112,91,105,48,93,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,48,32,62,61,32,105,49,41,32,105,49,32,61,32,105,48,32,43,32,49,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,33,40,110,101,120,116,32,61,32,117,112,100,97,116,101,71,114,111,117,112,91,105,49,93,41,32,38,38,32,43,43,105,49,32,60,32,100,97,116,97,76,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,32,32,112,114,101,118,105,111,117,115,46,95,110,101,120,116,32,61,32,110,101,120,116,32,124,124,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,117,112,100,97,116,101,32,61,32,110,101,119,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,83,101,108,101,99,116,105,111,110,40,117,112,100,97,116,101,44,32,112,97,114,101,110,116,115,41,59,92,110,32,32,117,112,100,97,116,101,46,95,101,110,116,101,114,32,61,32,101,110,116,101,114,59,92,110,32,32,117,112,100,97,116,101,46,95,101,120,105,116,32,61,32,101,120,105,116,59,92,110,32,32,114,101,116,117,114,110,32,117,112,100,97,116,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,100,97,116,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,100,97,116,117,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,100,97,116,117,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,92,110,32,32,32,32,32,32,63,32,116,104,105,115,46,112,114,111,112,101,114,116,121,40,92,34,95,95,100,97,116,97,95,95,92,34,44,32,118,97,108,117,101,41,92,110,32,32,32,32,32,32,58,32,116,104,105,115,46,110,111,100,101,40,41,46,95,95,100,97,116,97,95,95,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,100,97,116,117,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,100,105,115,112,97,116,99,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,100,105,115,112,97,116,99,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,119,105,110,100,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,119,105,110,100,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,119,105,110,100,111,119,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,100,105,115,112,97,116,99,104,69,118,101,110,116,40,110,111,100,101,44,32,116,121,112,101,44,32,112,97,114,97,109,115,41,32,123,92,110,32,32,118,97,114,32,119,105,110,100,111,119,32,61,32,40,48,44,95,119,105,110,100,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,111,100,101,41,44,92,110,32,32,32,32,32,32,101,118,101,110,116,32,61,32,119,105,110,100,111,119,46,67,117,115,116,111,109,69,118,101,110,116,59,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,101,118,101,110,116,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,123,92,110,32,32,32,32,101,118,101,110,116,32,61,32,110,101,119,32,101,118,101,110,116,40,116,121,112,101,44,32,112,97,114,97,109,115,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,101,118,101,110,116,32,61,32,119,105,110,100,111,119,46,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,118,101,110,116,40,92,34,69,118,101,110,116,92,34,41,59,92,110,32,32,32,32,105,102,32,40,112,97,114,97,109,115,41,32,101,118,101,110,116,46,105,110,105,116,69,118,101,110,116,40,116,121,112,101,44,32,112,97,114,97,109,115,46,98,117,98,98,108,101,115,44,32,112,97,114,97,109,115,46,99,97,110,99,101,108,97,98,108,101,41,44,32,101,118,101,110,116,46,100,101,116,97,105,108,32,61,32,112,97,114,97,109,115,46,100,101,116,97,105,108,59,92,110,32,32,32,32,101,108,115,101,32,101,118,101,110,116,46,105,110,105,116,69,118,101,110,116,40,116,121,112,101,44,32,102,97,108,115,101,44,32,102,97,108,115,101,41,59,92,110,32,32,125,92,110,92,110,32,32,110,111,100,101,46,100,105,115,112,97,116,99,104,69,118,101,110,116,40,101,118,101,110,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,105,115,112,97,116,99,104,67,111,110,115,116,97,110,116,40,116,121,112,101,44,32,112,97,114,97,109,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,105,115,112,97,116,99,104,69,118,101,110,116,40,116,104,105,115,44,32,116,121,112,101,44,32,112,97,114,97,109,115,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,105,115,112,97,116,99,104,70,117,110,99,116,105,111,110,40,116,121,112,101,44,32,112,97,114,97,109,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,105,115,112,97,116,99,104,69,118,101,110,116,40,116,104,105,115,44,32,116,121,112,101,44,32,112,97,114,97,109,115,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,116,121,112,101,44,32,112,97,114,97,109,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,116,121,112,101,111,102,32,112,97,114,97,109,115,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,92,110,32,32,32,32,32,32,63,32,100,105,115,112,97,116,99,104,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,58,32,100,105,115,112,97,116,99,104,67,111,110,115,116,97,110,116,41,40,116,121,112,101,44,32,112,97,114,97,109,115,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,100,105,115,112,97,116,99,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,97,99,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,97,99,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,97,108,108,98,97,99,107,41,32,123,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,44,32,106,32,61,32,48,44,32,109,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,106,93,44,32,105,32,61,32,48,44,32,110,32,61,32,103,114,111,117,112,46,108,101,110,103,116,104,44,32,110,111,100,101,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,41,32,99,97,108,108,98,97,99,107,46,99,97,108,108,40,110,111,100,101,44,32,110,111,100,101,46,95,95,100,97,116,97,95,95,44,32,105,44,32,103,114,111,117,112,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,97,99,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,109,112,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,109,112,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,110,111,100,101,40,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,109,112,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,110,116,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,110,116,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,110,116,101,114,78,111,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,110,116,101,114,78,111,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,112,97,114,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,112,97,114,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,112,97,114,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,83,101,108,101,99,116,105,111,110,40,116,104,105,115,46,95,101,110,116,101,114,32,124,124,32,116,104,105,115,46,95,103,114,111,117,112,115,46,109,97,112,40,95,115,112,97,114,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,44,32,116,104,105,115,46,95,112,97,114,101,110,116,115,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,69,110,116,101,114,78,111,100,101,40,112,97,114,101,110,116,44,32,100,97,116,117,109,41,32,123,92,110,32,32,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,32,61,32,112,97,114,101,110,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,59,92,110,32,32,116,104,105,115,46,110,97,109,101,115,112,97,99,101,85,82,73,32,61,32,112,97,114,101,110,116,46,110,97,109,101,115,112,97,99,101,85,82,73,59,92,110,32,32,116,104,105,115,46,95,110,101,120,116,32,61,32,110,117,108,108,59,92,110,32,32,116,104,105,115,46,95,112,97,114,101,110,116,32,61,32,112,97,114,101,110,116,59,92,110,32,32,116,104,105,115,46,95,95,100,97,116,97,95,95,32,61,32,100,97,116,117,109,59,92,110,125,92,110,92,110,69,110,116,101,114,78,111,100,101,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,69,110,116,101,114,78,111,100,101,44,92,110,32,32,97,112,112,101,110,100,67,104,105,108,100,58,32,102,117,110,99,116,105,111,110,40,99,104,105,108,100,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,114,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,99,104,105,108,100,44,32,116,104,105,115,46,95,110,101,120,116,41,59,32,125,44,92,110,32,32,105,110,115,101,114,116,66,101,102,111,114,101,58,32,102,117,110,99,116,105,111,110,40,99,104,105,108,100,44,32,110,101,120,116,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,114,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,99,104,105,108,100,44,32,110,101,120,116,41,59,32,125,44,92,110,32,32,113,117,101,114,121,83,101,108,101,99,116,111,114,58,32,102,117,110,99,116,105,111,110,40,115,101,108,101,99,116,111,114,41,32,123,32,114,101,116,117,114,110,32,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,40,115,101,108,101,99,116,111,114,41,59,32,125,44,92,110,32,32,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,58,32,102,117,110,99,116,105,111,110,40,115,101,108,101,99,116,111,114,41,32,123,32,114,101,116,117,114,110,32,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,115,101,108,101,99,116,111,114,41,59,32,125,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,110,116,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,120,105,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,120,105,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,112,97,114,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,112,97,114,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,112,97,114,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,83,101,108,101,99,116,105,111,110,40,116,104,105,115,46,95,101,120,105,116,32,124,124,32,116,104,105,115,46,95,103,114,111,117,112,115,46,109,97,112,40,95,115,112,97,114,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,44,32,116,104,105,115,46,95,112,97,114,101,110,116,115,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,120,105,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,102,105,108,116,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,102,105,108,116,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,99,104,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,99,104,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,109,97,116,99,104,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,109,97,116,99,104,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,109,97,116,99,104,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,109,97,116,99,104,32,61,32,40,48,44,95,109,97,116,99,104,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,109,97,116,99,104,41,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,44,32,109,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,44,32,115,117,98,103,114,111,117,112,115,32,61,32,110,101,119,32,65,114,114,97,121,40,109,41,44,32,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,106,93,44,32,110,32,61,32,103,114,111,117,112,46,108,101,110,103,116,104,44,32,115,117,98,103,114,111,117,112,32,61,32,115,117,98,103,114,111,117,112,115,91,106,93,32,61,32,91,93,44,32,110,111,100,101,44,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,41,32,38,38,32,109,97,116,99,104,46,99,97,108,108,40,110,111,100,101,44,32,110,111,100,101,46,95,95,100,97,116,97,95,95,44,32,105,44,32,103,114,111,117,112,41,41,32,123,92,110,32,32,32,32,32,32,32,32,115,117,98,103,114,111,117,112,46,112,117,115,104,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,83,101,108,101,99,116,105,111,110,40,115,117,98,103,114,111,117,112,115,44,32,116,104,105,115,46,95,112,97,114,101,110,116,115,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,102,105,108,116,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,104,116,109,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,104,116,109,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,104,116,109,108,82,101,109,111,118,101,40,41,32,123,92,110,32,32,116,104,105,115,46,105,110,110,101,114,72,84,77,76,32,61,32,92,34,92,34,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,116,109,108,67,111,110,115,116,97,110,116,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,105,110,110,101,114,72,84,77,76,32,61,32,118,97,108,117,101,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,116,109,108,70,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,32,61,32,118,97,108,117,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,116,104,105,115,46,105,110,110,101,114,72,84,77,76,32,61,32,118,32,61,61,32,110,117,108,108,32,63,32,92,34,92,34,32,58,32,118,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,92,110,32,32,32,32,32,32,63,32,116,104,105,115,46,101,97,99,104,40,118,97,108,117,101,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,63,32,104,116,109,108,82,101,109,111,118,101,32,58,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,92,110,32,32,32,32,32,32,32,32,32,32,63,32,104,116,109,108,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,58,32,104,116,109,108,67,111,110,115,116,97,110,116,41,40,118,97,108,117,101,41,41,92,110,32,32,32,32,32,32,58,32,116,104,105,115,46,110,111,100,101,40,41,46,105,110,110,101,114,72,84,77,76,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,104,116,109,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,101,108,101,99,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,101,108,101,99,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,111,111,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,111,111,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,101,108,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,65,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,65,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,101,108,101,99,116,65,108,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,105,108,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,105,108,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,102,105,108,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,97,116,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,97,116,97,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,100,97,116,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,110,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,110,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,110,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,120,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,120,105,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,120,105,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,106,111,105,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,106,111,105,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,106,111,105,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,101,114,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,114,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,109,101,114,103,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,114,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,114,100,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,114,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,111,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,111,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,111,114,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,99,97,108,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,100,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,110,111,100,101,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,100,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,110,111,100,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,105,122,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,105,122,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,109,112,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,109,112,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,109,112,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,97,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,97,99,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,101,97,99,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,116,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,116,116,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,97,116,116,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,121,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,121,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,116,121,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,114,111,112,101,114,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,114,111,112,101,114,116,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,112,114,111,112,101,114,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,97,115,115,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,108,97,115,115,101,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,99,108,97,115,115,101,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,101,120,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,116,109,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,104,116,109,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,97,105,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,97,105,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,114,97,105,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,111,119,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,111,119,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,108,111,119,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,112,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,112,112,101,110,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,97,112,112,101,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,115,101,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,115,101,114,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,115,101,114,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,109,111,118,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,101,109,111,118,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,114,101,109,111,118,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,108,111,110,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,108,111,110,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,99,108,111,110,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,97,116,117,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,97,116,117,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,100,97,116,117,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,115,112,97,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,115,112,97,116,99,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,100,105,115,112,97,116,99,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,114,111,111,116,32,61,32,91,110,117,108,108,93,59,92,110,92,110,102,117,110,99,116,105,111,110,32,83,101,108,101,99,116,105,111,110,40,103,114,111,117,112,115,44,32,112,97,114,101,110,116,115,41,32,123,92,110,32,32,116,104,105,115,46,95,103,114,111,117,112,115,32,61,32,103,114,111,117,112,115,59,92,110,32,32,116,104,105,115,46,95,112,97,114,101,110,116,115,32,61,32,112,97,114,101,110,116,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,105,111,110,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,83,101,108,101,99,116,105,111,110,40,91,91,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,93,93,44,32,114,111,111,116,41,59,92,110,125,92,110,92,110,83,101,108,101,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,32,61,32,115,101,108,101,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,83,101,108,101,99,116,105,111,110,44,92,110,32,32,115,101,108,101,99,116,58,32,95,115,101,108,101,99,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,115,101,108,101,99,116,65,108,108,58,32,95,115,101,108,101,99,116,65,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,102,105,108,116,101,114,58,32,95,102,105,108,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,100,97,116,97,58,32,95,100,97,116,97,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,101,110,116,101,114,58,32,95,101,110,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,101,120,105,116,58,32,95,101,120,105,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,106,111,105,110,58,32,95,106,111,105,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,109,101,114,103,101,58,32,95,109,101,114,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,111,114,100,101,114,58,32,95,111,114,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,115,111,114,116,58,32,95,115,111,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,99,97,108,108,58,32,95,99,97,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,110,111,100,101,115,58,32,95,110,111,100,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,110,111,100,101,58,32,95,110,111,100,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,115,105,122,101,58,32,95,115,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,101,109,112,116,121,58,32,95,101,109,112,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,101,97,99,104,58,32,95,101,97,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,97,116,116,114,58,32,95,97,116,116,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,115,116,121,108,101,58,32,95,115,116,121,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,112,114,111,112,101,114,116,121,58,32,95,112,114,111,112,101,114,116,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,99,108,97,115,115,101,100,58,32,95,99,108,97,115,115,101,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,116,101,120,116,58,32,95,116,101,120,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,104,116,109,108,58,32,95,104,116,109,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,114,97,105,115,101,58,32,95,114,97,105,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,108,111,119,101,114,58,32,95,108,111,119,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,97,112,112,101,110,100,58,32,95,97,112,112,101,110,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,105,110,115,101,114,116,58,32,95,105,110,115,101,114,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,114,101,109,111,118,101,58,32,95,114,101,109,111,118,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,99,108,111,110,101,58,32,95,99,108,111,110,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,100,97,116,117,109,58,32,95,100,97,116,117,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,111,110,58,32,95,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,100,105,115,112,97,116,99,104,58,32,95,100,105,115,112,97,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,115,101,108,101,99,116,105,111,110,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,115,101,114,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,115,101,114,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,114,101,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,114,101,97,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,99,114,101,97,116,111,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,115,101,108,101,99,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,111,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,110,115,116,97,110,116,78,117,108,108,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,44,32,98,101,102,111,114,101,41,32,123,92,110,32,32,118,97,114,32,99,114,101,97,116,101,32,61,32,116,121,112,101,111,102,32,110,97,109,101,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,110,97,109,101,32,58,32,40,48,44,95,99,114,101,97,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,97,109,101,41,44,92,110,32,32,32,32,32,32,115,101,108,101,99,116,32,61,32,98,101,102,111,114,101,32,61,61,32,110,117,108,108,32,63,32,99,111,110,115,116,97,110,116,78,117,108,108,32,58,32,116,121,112,101,111,102,32,98,101,102,111,114,101,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,98,101,102,111,114,101,32,58,32,40,48,44,95,115,101,108,101,99,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,98,101,102,111,114,101,41,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,115,101,114,116,66,101,102,111,114,101,40,99,114,101,97,116,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,44,32,115,101,108,101,99,116,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,124,124,32,110,117,108,108,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,115,101,114,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,106,111,105,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,106,111,105,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,111,110,101,110,116,101,114,44,32,111,110,117,112,100,97,116,101,44,32,111,110,101,120,105,116,41,32,123,92,110,32,32,118,97,114,32,101,110,116,101,114,32,61,32,116,104,105,115,46,101,110,116,101,114,40,41,44,32,117,112,100,97,116,101,32,61,32,116,104,105,115,44,32,101,120,105,116,32,61,32,116,104,105,115,46,101,120,105,116,40,41,59,92,110,32,32,101,110,116,101,114,32,61,32,116,121,112,101,111,102,32,111,110,101,110,116,101,114,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,111,110,101,110,116,101,114,40,101,110,116,101,114,41,32,58,32,101,110,116,101,114,46,97,112,112,101,110,100,40,111,110,101,110,116,101,114,32,43,32,92,34,92,34,41,59,92,110,32,32,105,102,32,40,111,110,117,112,100,97,116,101,32,33,61,32,110,117,108,108,41,32,117,112,100,97,116,101,32,61,32,111,110,117,112,100,97,116,101,40,117,112,100,97,116,101,41,59,92,110,32,32,105,102,32,40,111,110,101,120,105,116,32,61,61,32,110,117,108,108,41,32,101,120,105,116,46,114,101,109,111,118,101,40,41,59,32,101,108,115,101,32,111,110,101,120,105,116,40,101,120,105,116,41,59,92,110,32,32,114,101,116,117,114,110,32,101,110,116,101,114,32,38,38,32,117,112,100,97,116,101,32,63,32,101,110,116,101,114,46,109,101,114,103,101,40,117,112,100,97,116,101,41,46,111,114,100,101,114,40,41,32,58,32,117,112,100,97,116,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,106,111,105,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,108,111,119,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,108,111,119,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,108,111,119,101,114,40,41,32,123,92,110,32,32,105,102,32,40,116,104,105,115,46,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,41,32,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,116,104,105,115,44,32,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,102,105,114,115,116,67,104,105,108,100,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,108,111,119,101,114,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,108,111,119,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,109,101,114,103,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,109,101,114,103,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,108,101,99,116,105,111,110,41,32,123,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,115,48,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,44,32,103,114,111,117,112,115,49,32,61,32,115,101,108,101,99,116,105,111,110,46,95,103,114,111,117,112,115,44,32,109,48,32,61,32,103,114,111,117,112,115,48,46,108,101,110,103,116,104,44,32,109,49,32,61,32,103,114,111,117,112,115,49,46,108,101,110,103,116,104,44,32,109,32,61,32,77,97,116,104,46,109,105,110,40,109,48,44,32,109,49,41,44,32,109,101,114,103,101,115,32,61,32,110,101,119,32,65,114,114,97,121,40,109,48,41,44,32,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,48,32,61,32,103,114,111,117,112,115,48,91,106,93,44,32,103,114,111,117,112,49,32,61,32,103,114,111,117,112,115,49,91,106,93,44,32,110,32,61,32,103,114,111,117,112,48,46,108,101,110,103,116,104,44,32,109,101,114,103,101,32,61,32,109,101,114,103,101,115,91,106,93,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,32,110,111,100,101,44,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,32,61,32,103,114,111,117,112,48,91,105,93,32,124,124,32,103,114,111,117,112,49,91,105,93,41,32,123,92,110,32,32,32,32,32,32,32,32,109,101,114,103,101,91,105,93,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,111,114,32,40,59,32,106,32,60,32,109,48,59,32,43,43,106,41,32,123,92,110,32,32,32,32,109,101,114,103,101,115,91,106,93,32,61,32,103,114,111,117,112,115,48,91,106,93,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,83,101,108,101,99,116,105,111,110,40,109,101,114,103,101,115,44,32,116,104,105,115,46,95,112,97,114,101,110,116,115,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,109,101,114,103,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,110,111,100,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,110,111,100,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,44,32,106,32,61,32,48,44,32,109,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,106,93,44,32,105,32,61,32,48,44,32,110,32,61,32,103,114,111,117,112,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,59,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,41,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,110,111,100,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,110,111,100,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,110,111,100,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,115,32,61,32,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,115,105,122,101,40,41,41,44,32,105,32,61,32,45,49,59,92,110,32,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,32,123,32,110,111,100,101,115,91,43,43,105,93,32,61,32,116,104,105,115,59,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,110,111,100,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,115,116,111,109,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,117,115,116,111,109,69,118,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,118,101,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,102,105,108,116,101,114,69,118,101,110,116,115,32,61,32,123,125,59,92,110,92,110,118,97,114,32,101,118,101,110,116,32,61,32,110,117,108,108,59,92,110,92,110,105,102,32,40,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,32,33,61,61,32,92,34,117,110,100,101,102,105,110,101,100,92,34,41,32,123,92,110,32,32,118,97,114,32,101,108,101,109,101,110,116,32,61,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,92,110,32,32,105,102,32,40,33,40,92,34,111,110,109,111,117,115,101,101,110,116,101,114,92,34,32,105,110,32,101,108,101,109,101,110,116,41,41,32,123,92,110,32,32,32,32,102,105,108,116,101,114,69,118,101,110,116,115,32,61,32,123,109,111,117,115,101,101,110,116,101,114,58,32,92,34,109,111,117,115,101,111,118,101,114,92,34,44,32,109,111,117,115,101,108,101,97,118,101,58,32,92,34,109,111,117,115,101,111,117,116,92,34,125,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,67,111,110,116,101,120,116,76,105,115,116,101,110,101,114,40,108,105,115,116,101,110,101,114,44,32,105,110,100,101,120,44,32,103,114,111,117,112,41,32,123,92,110,32,32,108,105,115,116,101,110,101,114,32,61,32,99,111,110,116,101,120,116,76,105,115,116,101,110,101,114,40,108,105,115,116,101,110,101,114,44,32,105,110,100,101,120,44,32,103,114,111,117,112,41,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,108,97,116,101,100,32,61,32,101,118,101,110,116,46,114,101,108,97,116,101,100,84,97,114,103,101,116,59,92,110,32,32,32,32,105,102,32,40,33,114,101,108,97,116,101,100,32,124,124,32,40,114,101,108,97,116,101,100,32,33,61,61,32,116,104,105,115,32,38,38,32,33,40,114,101,108,97,116,101,100,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,104,105,115,41,32,38,32,56,41,41,41,32,123,92,110,32,32,32,32,32,32,108,105,115,116,101,110,101,114,46,99,97,108,108,40,116,104,105,115,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,110,116,101,120,116,76,105,115,116,101,110,101,114,40,108,105,115,116,101,110,101,114,44,32,105,110,100,101,120,44,32,103,114,111,117,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,118,101,110,116,49,41,32,123,92,110,32,32,32,32,118,97,114,32,101,118,101,110,116,48,32,61,32,101,118,101,110,116,59,32,47,47,32,69,118,101,110,116,115,32,99,97,110,32,98,101,32,114,101,101,110,116,114,97,110,116,32,40,101,46,103,46,44,32,102,111,99,117,115,41,46,92,110,32,32,32,32,101,118,101,110,116,32,61,32,101,118,101,110,116,49,59,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,108,105,115,116,101,110,101,114,46,99,97,108,108,40,116,104,105,115,44,32,116,104,105,115,46,95,95,100,97,116,97,95,95,44,32,105,110,100,101,120,44,32,103,114,111,117,112,41,59,92,110,32,32,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,32,32,101,118,101,110,116,32,61,32,101,118,101,110,116,48,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,84,121,112,101,110,97,109,101,115,40,116,121,112,101,110,97,109,101,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,110,97,109,101,115,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,92,115,43,47,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,92,34,92,34,44,32,105,32,61,32,116,46,105,110,100,101,120,79,102,40,92,34,46,92,34,41,59,92,110,32,32,32,32,105,102,32,40,105,32,62,61,32,48,41,32,110,97,109,101,32,61,32,116,46,115,108,105,99,101,40,105,32,43,32,49,41,44,32,116,32,61,32,116,46,115,108,105,99,101,40,48,44,32,105,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,116,121,112,101,58,32,116,44,32,110,97,109,101,58,32,110,97,109,101,125,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,111,110,82,101,109,111,118,101,40,116,121,112,101,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,111,110,32,61,32,116,104,105,115,46,95,95,111,110,59,92,110,32,32,32,32,105,102,32,40,33,111,110,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,44,32,105,32,61,32,45,49,44,32,109,32,61,32,111,110,46,108,101,110,103,116,104,44,32,111,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,111,32,61,32,111,110,91,106,93,44,32,40,33,116,121,112,101,110,97,109,101,46,116,121,112,101,32,124,124,32,111,46,116,121,112,101,32,61,61,61,32,116,121,112,101,110,97,109,101,46,116,121,112,101,41,32,38,38,32,111,46,110,97,109,101,32,61,61,61,32,116,121,112,101,110,97,109,101,46,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,111,46,116,121,112,101,44,32,111,46,108,105,115,116,101,110,101,114,44,32,111,46,99,97,112,116,117,114,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,111,110,91,43,43,105,93,32,61,32,111,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,43,43,105,41,32,111,110,46,108,101,110,103,116,104,32,61,32,105,59,92,110,32,32,32,32,101,108,115,101,32,100,101,108,101,116,101,32,116,104,105,115,46,95,95,111,110,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,111,110,65,100,100,40,116,121,112,101,110,97,109,101,44,32,118,97,108,117,101,44,32,99,97,112,116,117,114,101,41,32,123,92,110,32,32,118,97,114,32,119,114,97,112,32,61,32,102,105,108,116,101,114,69,118,101,110,116,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,121,112,101,110,97,109,101,46,116,121,112,101,41,32,63,32,102,105,108,116,101,114,67,111,110,116,101,120,116,76,105,115,116,101,110,101,114,32,58,32,99,111,110,116,101,120,116,76,105,115,116,101,110,101,114,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,100,44,32,105,44,32,103,114,111,117,112,41,32,123,92,110,32,32,32,32,118,97,114,32,111,110,32,61,32,116,104,105,115,46,95,95,111,110,44,32,111,44,32,108,105,115,116,101,110,101,114,32,61,32,119,114,97,112,40,118,97,108,117,101,44,32,105,44,32,103,114,111,117,112,41,59,92,110,32,32,32,32,105,102,32,40,111,110,41,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,44,32,109,32,61,32,111,110,46,108,101,110,103,116,104,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,111,32,61,32,111,110,91,106,93,41,46,116,121,112,101,32,61,61,61,32,116,121,112,101,110,97,109,101,46,116,121,112,101,32,38,38,32,111,46,110,97,109,101,32,61,61,61,32,116,121,112,101,110,97,109,101,46,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,111,46,116,121,112,101,44,32,111,46,108,105,115,116,101,110,101,114,44,32,111,46,99,97,112,116,117,114,101,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,111,46,116,121,112,101,44,32,111,46,108,105,115,116,101,110,101,114,32,61,32,108,105,115,116,101,110,101,114,44,32,111,46,99,97,112,116,117,114,101,32,61,32,99,97,112,116,117,114,101,41,59,92,110,32,32,32,32,32,32,32,32,111,46,118,97,108,117,101,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,116,104,105,115,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,121,112,101,110,97,109,101,46,116,121,112,101,44,32,108,105,115,116,101,110,101,114,44,32,99,97,112,116,117,114,101,41,59,92,110,32,32,32,32,111,32,61,32,123,116,121,112,101,58,32,116,121,112,101,110,97,109,101,46,116,121,112,101,44,32,110,97,109,101,58,32,116,121,112,101,110,97,109,101,46,110,97,109,101,44,32,118,97,108,117,101,58,32,118,97,108,117,101,44,32,108,105,115,116,101,110,101,114,58,32,108,105,115,116,101,110,101,114,44,32,99,97,112,116,117,114,101,58,32,99,97,112,116,117,114,101,125,59,92,110,32,32,32,32,105,102,32,40,33,111,110,41,32,116,104,105,115,46,95,95,111,110,32,61,32,91,111,93,59,92,110,32,32,32,32,101,108,115,101,32,111,110,46,112,117,115,104,40,111,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,116,121,112,101,110,97,109,101,44,32,118,97,108,117,101,44,32,99,97,112,116,117,114,101,41,32,123,92,110,32,32,118,97,114,32,116,121,112,101,110,97,109,101,115,32,61,32,112,97,114,115,101,84,121,112,101,110,97,109,101,115,40,116,121,112,101,110,97,109,101,32,43,32,92,34,92,34,41,44,32,105,44,32,110,32,61,32,116,121,112,101,110,97,109,101,115,46,108,101,110,103,116,104,44,32,116,59,92,110,92,110,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,50,41,32,123,92,110,32,32,32,32,118,97,114,32,111,110,32,61,32,116,104,105,115,46,110,111,100,101,40,41,46,95,95,111,110,59,92,110,32,32,32,32,105,102,32,40,111,110,41,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,44,32,109,32,61,32,111,110,46,108,101,110,103,116,104,44,32,111,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,44,32,111,32,61,32,111,110,91,106,93,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,116,32,61,32,116,121,112,101,110,97,109,101,115,91,105,93,41,46,116,121,112,101,32,61,61,61,32,111,46,116,121,112,101,32,38,38,32,116,46,110,97,109,101,32,61,61,61,32,111,46,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,125,92,110,92,110,32,32,111,110,32,61,32,118,97,108,117,101,32,63,32,111,110,65,100,100,32,58,32,111,110,82,101,109,111,118,101,59,92,110,32,32,105,102,32,40,99,97,112,116,117,114,101,32,61,61,32,110,117,108,108,41,32,99,97,112,116,117,114,101,32,61,32,102,97,108,115,101,59,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,116,104,105,115,46,101,97,99,104,40,111,110,40,116,121,112,101,110,97,109,101,115,91,105,93,44,32,118,97,108,117,101,44,32,99,97,112,116,117,114,101,41,41,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,69,118,101,110,116,40,101,118,101,110,116,49,44,32,108,105,115,116,101,110,101,114,44,32,116,104,97,116,44,32,97,114,103,115,41,32,123,92,110,32,32,118,97,114,32,101,118,101,110,116,48,32,61,32,101,118,101,110,116,59,92,110,32,32,101,118,101,110,116,49,46,115,111,117,114,99,101,69,118,101,110,116,32,61,32,101,118,101,110,116,59,92,110,32,32,101,118,101,110,116,32,61,32,101,118,101,110,116,49,59,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,108,105,115,116,101,110,101,114,46,97,112,112,108,121,40,116,104,97,116,44,32,97,114,103,115,41,59,92,110,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,101,118,101,110,116,32,61,32,101,118,101,110,116,48,59,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,114,100,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,114,100,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,44,32,106,32,61,32,45,49,44,32,109,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,59,32,43,43,106,32,60,32,109,59,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,106,93,44,32,105,32,61,32,103,114,111,117,112,46,108,101,110,103,116,104,32,45,32,49,44,32,110,101,120,116,32,61,32,103,114,111,117,112,91,105,93,44,32,110,111,100,101,59,32,45,45,105,32,62,61,32,48,59,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,32,38,38,32,110,111,100,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,110,101,120,116,41,32,94,32,52,41,32,110,101,120,116,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,110,111,100,101,44,32,110,101,120,116,41,59,92,110,32,32,32,32,32,32,32,32,110,101,120,116,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,114,100,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,112,114,111,112,101,114,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,112,114,111,112,101,114,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,112,114,111,112,101,114,116,121,82,101,109,111,118,101,40,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,100,101,108,101,116,101,32,116,104,105,115,91,110,97,109,101,93,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,114,111,112,101,114,116,121,67,111,110,115,116,97,110,116,40,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,91,110,97,109,101,93,32,61,32,118,97,108,117,101,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,114,111,112,101,114,116,121,70,117,110,99,116,105,111,110,40,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,32,61,32,118,97,108,117,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,105,102,32,40,118,32,61,61,32,110,117,108,108,41,32,100,101,108,101,116,101,32,116,104,105,115,91,110,97,109,101,93,59,92,110,32,32,32,32,101,108,115,101,32,116,104,105,115,91,110,97,109,101,93,32,61,32,118,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,92,110,32,32,32,32,32,32,63,32,116,104,105,115,46,101,97,99,104,40,40,118,97,108,117,101,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,63,32,112,114,111,112,101,114,116,121,82,101,109,111,118,101,32,58,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,92,110,32,32,32,32,32,32,32,32,32,32,63,32,112,114,111,112,101,114,116,121,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,58,32,112,114,111,112,101,114,116,121,67,111,110,115,116,97,110,116,41,40,110,97,109,101,44,32,118,97,108,117,101,41,41,92,110,32,32,32,32,32,32,58,32,116,104,105,115,46,110,111,100,101,40,41,91,110,97,109,101,93,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,112,114,111,112,101,114,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,114,97,105,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,114,97,105,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,114,97,105,115,101,40,41,32,123,92,110,32,32,105,102,32,40,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,32,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,105,115,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,114,97,105,115,101,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,114,97,105,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,114,101,109,111,118,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,114,101,109,111,118,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,40,41,32,123,92,110,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,92,110,32,32,105,102,32,40,112,97,114,101,110,116,41,32,112,97,114,101,110,116,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,114,101,109,111,118,101,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,114,101,109,111,118,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,101,108,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,101,108,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,115,101,108,101,99,116,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,111,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,108,101,99,116,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,115,101,108,101,99,116,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,115,101,108,101,99,116,32,61,32,40,48,44,95,115,101,108,101,99,116,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,101,108,101,99,116,41,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,44,32,109,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,44,32,115,117,98,103,114,111,117,112,115,32,61,32,110,101,119,32,65,114,114,97,121,40,109,41,44,32,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,106,93,44,32,110,32,61,32,103,114,111,117,112,46,108,101,110,103,116,104,44,32,115,117,98,103,114,111,117,112,32,61,32,115,117,98,103,114,111,117,112,115,91,106,93,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,32,110,111,100,101,44,32,115,117,98,110,111,100,101,44,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,41,32,38,38,32,40,115,117,98,110,111,100,101,32,61,32,115,101,108,101,99,116,46,99,97,108,108,40,110,111,100,101,44,32,110,111,100,101,46,95,95,100,97,116,97,95,95,44,32,105,44,32,103,114,111,117,112,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,92,34,95,95,100,97,116,97,95,95,92,34,32,105,110,32,110,111,100,101,41,32,115,117,98,110,111,100,101,46,95,95,100,97,116,97,95,95,32,61,32,110,111,100,101,46,95,95,100,97,116,97,95,95,59,92,110,32,32,32,32,32,32,32,32,115,117,98,103,114,111,117,112,91,105,93,32,61,32,115,117,98,110,111,100,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,83,101,108,101,99,116,105,111,110,40,115,117,98,103,114,111,117,112,115,44,32,116,104,105,115,46,95,112,97,114,101,110,116,115,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,101,108,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,101,108,101,99,116,65,108,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,101,108,101,99,116,65,108,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,111,114,65,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,115,101,108,101,99,116,111,114,65,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,111,114,65,108,108,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,108,101,99,116,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,115,101,108,101,99,116,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,115,101,108,101,99,116,32,61,32,40,48,44,95,115,101,108,101,99,116,111,114,65,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,101,108,101,99,116,41,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,44,32,109,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,44,32,115,117,98,103,114,111,117,112,115,32,61,32,91,93,44,32,112,97,114,101,110,116,115,32,61,32,91,93,44,32,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,106,93,44,32,110,32,61,32,103,114,111,117,112,46,108,101,110,103,116,104,44,32,110,111,100,101,44,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,41,32,123,92,110,32,32,32,32,32,32,32,32,115,117,98,103,114,111,117,112,115,46,112,117,115,104,40,115,101,108,101,99,116,46,99,97,108,108,40,110,111,100,101,44,32,110,111,100,101,46,95,95,100,97,116,97,95,95,44,32,105,44,32,103,114,111,117,112,41,41,59,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,115,46,112,117,115,104,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,83,101,108,101,99,116,105,111,110,40,115,117,98,103,114,111,117,112,115,44,32,112,97,114,101,110,116,115,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,101,108,101,99,116,65,108,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,105,122,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,105,122,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,115,105,122,101,32,61,32,48,59,92,110,32,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,32,123,32,43,43,115,105,122,101,59,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,115,105,122,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,105,122,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,111,114,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,111,114,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,111,109,112,97,114,101,41,32,123,92,110,32,32,105,102,32,40,33,99,111,109,112,97,114,101,41,32,99,111,109,112,97,114,101,32,61,32,97,115,99,101,110,100,105,110,103,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,111,109,112,97,114,101,78,111,100,101,40,97,44,32,98,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,32,38,38,32,98,32,63,32,99,111,109,112,97,114,101,40,97,46,95,95,100,97,116,97,95,95,44,32,98,46,95,95,100,97,116,97,95,95,41,32,58,32,33,97,32,45,32,33,98,59,92,110,32,32,125,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,44,32,109,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,44,32,115,111,114,116,103,114,111,117,112,115,32,61,32,110,101,119,32,65,114,114,97,121,40,109,41,44,32,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,106,93,44,32,110,32,61,32,103,114,111,117,112,46,108,101,110,103,116,104,44,32,115,111,114,116,103,114,111,117,112,32,61,32,115,111,114,116,103,114,111,117,112,115,91,106,93,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,32,110,111,100,101,44,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,41,32,123,92,110,32,32,32,32,32,32,32,32,115,111,114,116,103,114,111,117,112,91,105,93,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,115,111,114,116,103,114,111,117,112,46,115,111,114,116,40,99,111,109,112,97,114,101,78,111,100,101,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,95,105,110,100,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,83,101,108,101,99,116,105,111,110,40,115,111,114,116,103,114,111,117,112,115,44,32,116,104,105,115,46,95,112,97,114,101,110,116,115,41,46,111,114,100,101,114,40,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,115,99,101,110,100,105,110,103,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,32,60,32,98,32,63,32,45,49,32,58,32,97,32,62,32,98,32,63,32,49,32,58,32,97,32,62,61,32,98,32,63,32,48,32,58,32,78,97,78,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,111,114,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,112,97,114,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,112,97,114,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,117,112,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,65,114,114,97,121,40,117,112,100,97,116,101,46,108,101,110,103,116,104,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,112,97,114,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,116,121,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,116,121,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,121,108,101,86,97,108,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,121,108,101,86,97,108,117,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,119,105,110,100,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,119,105,110,100,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,119,105,110,100,111,119,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,121,108,101,82,101,109,111,118,101,40,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,110,97,109,101,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,121,108,101,67,111,110,115,116,97,110,116,40,110,97,109,101,44,32,118,97,108,117,101,44,32,112,114,105,111,114,105,116,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,110,97,109,101,44,32,118,97,108,117,101,44,32,112,114,105,111,114,105,116,121,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,121,108,101,70,117,110,99,116,105,111,110,40,110,97,109,101,44,32,118,97,108,117,101,44,32,112,114,105,111,114,105,116,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,32,61,32,118,97,108,117,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,105,102,32,40,118,32,61,61,32,110,117,108,108,41,32,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,110,97,109,101,41,59,92,110,32,32,32,32,101,108,115,101,32,116,104,105,115,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,110,97,109,101,44,32,118,44,32,112,114,105,111,114,105,116,121,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,44,32,118,97,108,117,101,44,32,112,114,105,111,114,105,116,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,92,110,32,32,32,32,32,32,63,32,116,104,105,115,46,101,97,99,104,40,40,118,97,108,117,101,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,115,116,121,108,101,82,101,109,111,118,101,32,58,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,115,116,121,108,101,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,115,116,121,108,101,67,111,110,115,116,97,110,116,41,40,110,97,109,101,44,32,118,97,108,117,101,44,32,112,114,105,111,114,105,116,121,32,61,61,32,110,117,108,108,32,63,32,92,34,92,34,32,58,32,112,114,105,111,114,105,116,121,41,41,92,110,32,32,32,32,32,32,58,32,115,116,121,108,101,86,97,108,117,101,40,116,104,105,115,46,110,111,100,101,40,41,44,32,110,97,109,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,121,108,101,86,97,108,117,101,40,110,111,100,101,44,32,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,110,97,109,101,41,92,110,32,32,32,32,32,32,124,124,32,40,48,44,95,119,105,110,100,111,119,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,111,100,101,41,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,110,111,100,101,44,32,110,117,108,108,41,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,110,97,109,101,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,116,121,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,116,101,120,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,116,101,120,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,116,101,120,116,82,101,109,111,118,101,40,41,32,123,92,110,32,32,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,32,61,32,92,34,92,34,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,101,120,116,67,111,110,115,116,97,110,116,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,32,61,32,118,97,108,117,101,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,101,120,116,70,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,32,61,32,118,97,108,117,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,32,61,32,118,32,61,61,32,110,117,108,108,32,63,32,92,34,92,34,32,58,32,118,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,92,110,32,32,32,32,32,32,63,32,116,104,105,115,46,101,97,99,104,40,118,97,108,117,101,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,63,32,116,101,120,116,82,101,109,111,118,101,32,58,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,92,110,32,32,32,32,32,32,32,32,32,32,63,32,116,101,120,116,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,58,32,116,101,120,116,67,111,110,115,116,97,110,116,41,40,118,97,108,117,101,41,41,92,110,32,32,32,32,32,32,58,32,116,104,105,115,46,110,111,100,101,40,41,46,116,101,120,116,67,111,110,116,101,110,116,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,116,101,120,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,110,111,110,101,40,41,32,123,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,108,101,99,116,111,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,101,108,101,99,116,111,114,32,61,61,32,110,117,108,108,32,63,32,110,111,110,101,32,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,115,101,108,101,99,116,111,114,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,111,114,65,108,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,111,114,65,108,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,101,109,112,116,121,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,93,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,108,101,99,116,111,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,101,108,101,99,116,111,114,32,61,61,32,110,117,108,108,32,63,32,101,109,112,116,121,32,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,115,101,108,101,99,116,111,114,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,111,114,65,108,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,111,117,114,99,101,69,118,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,111,117,114,99,101,69,118,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,105,111,110,95,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,105,111,110,47,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,99,117,114,114,101,110,116,32,61,32,95,115,101,108,101,99,116,105,111,110,95,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,44,32,115,111,117,114,99,101,59,92,110,32,32,119,104,105,108,101,32,40,115,111,117,114,99,101,32,61,32,99,117,114,114,101,110,116,46,115,111,117,114,99,101,69,118,101,110,116,41,32,99,117,114,114,101,110,116,32,61,32,115,111,117,114,99,101,59,92,110,32,32,114,101,116,117,114,110,32,99,117,114,114,101,110,116,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,111,117,114,99,101,69,118,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,116,111,117,99,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,116,111,117,99,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,111,117,114,99,101,69,118,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,111,117,114,99,101,69,118,101,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,111,117,114,99,101,69,118,101,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,105,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,105,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,112,111,105,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,111,100,101,44,32,116,111,117,99,104,101,115,44,32,105,100,101,110,116,105,102,105,101,114,41,32,123,92,110,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,51,41,32,105,100,101,110,116,105,102,105,101,114,32,61,32,116,111,117,99,104,101,115,44,32,116,111,117,99,104,101,115,32,61,32,40,48,44,95,115,111,117,114,99,101,69,118,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,116,111,117,99,104,101,115,32,63,32,116,111,117,99,104,101,115,46,108,101,110,103,116,104,32,58,32,48,44,32,116,111,117,99,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,40,116,111,117,99,104,32,61,32,116,111,117,99,104,101,115,91,105,93,41,46,105,100,101,110,116,105,102,105,101,114,32,61,61,61,32,105,100,101,110,116,105,102,105,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,112,111,105,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,111,100,101,44,32,116,111,117,99,104,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,116,111,117,99,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,116,111,117,99,104,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,116,111,117,99,104,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,111,117,114,99,101,69,118,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,111,117,114,99,101,69,118,101,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,111,117,114,99,101,69,118,101,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,105,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,105,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,112,111,105,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,111,100,101,44,32,116,111,117,99,104,101,115,41,32,123,92,110,32,32,105,102,32,40,116,111,117,99,104,101,115,32,61,61,32,110,117,108,108,41,32,116,111,117,99,104,101,115,32,61,32,40,48,44,95,115,111,117,114,99,101,69,118,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,46,116,111,117,99,104,101,115,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,116,111,117,99,104,101,115,32,63,32,116,111,117,99,104,101,115,46,108,101,110,103,116,104,32,58,32,48,44,32,112,111,105,110,116,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,112,111,105,110,116,115,91,105,93,32,61,32,40,48,44,95,112,111,105,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,111,100,101,44,32,116,111,117,99,104,101,115,91,105,93,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,112,111,105,110,116,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,116,111,117,99,104,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,119,105,110,100,111,119,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,119,105,110,100,111,119,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,111,100,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,110,111,100,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,32,38,38,32,110,111,100,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,41,32,47,47,32,110,111,100,101,32,105,115,32,97,32,78,111,100,101,92,110,32,32,32,32,32,32,124,124,32,40,110,111,100,101,46,100,111,99,117,109,101,110,116,32,38,38,32,110,111,100,101,41,32,47,47,32,110,111,100,101,32,105,115,32,97,32,87,105,110,100,111,119,92,110,32,32,32,32,32,32,124,124,32,110,111,100,101,46,100,101,102,97,117,108,116,86,105,101,119,59,32,47,47,32,110,111,100,101,32,105,115,32,97,32,68,111,99,117,109,101,110,116,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,119,105,110,100,111,119,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,99,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,99,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,112,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,112,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,97,116,104,47,115,114,99,47,112,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,97,114,99,73,110,110,101,114,82,97,100,105,117,115,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,105,110,110,101,114,82,97,100,105,117,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,114,99,79,117,116,101,114,82,97,100,105,117,115,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,111,117,116,101,114,82,97,100,105,117,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,114,99,83,116,97,114,116,65,110,103,108,101,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,115,116,97,114,116,65,110,103,108,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,114,99,69,110,100,65,110,103,108,101,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,101,110,100,65,110,103,108,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,114,99,80,97,100,65,110,103,108,101,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,32,38,38,32,100,46,112,97,100,65,110,103,108,101,59,32,47,47,32,78,111,116,101,58,32,111,112,116,105,111,110,97,108,33,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,116,101,114,115,101,99,116,40,120,48,44,32,121,48,44,32,120,49,44,32,121,49,44,32,120,50,44,32,121,50,44,32,120,51,44,32,121,51,41,32,123,92,110,32,32,118,97,114,32,120,49,48,32,61,32,120,49,32,45,32,120,48,44,32,121,49,48,32,61,32,121,49,32,45,32,121,48,44,92,110,32,32,32,32,32,32,120,51,50,32,61,32,120,51,32,45,32,120,50,44,32,121,51,50,32,61,32,121,51,32,45,32,121,50,44,92,110,32,32,32,32,32,32,116,32,61,32,121,51,50,32,42,32,120,49,48,32,45,32,120,51,50,32,42,32,121,49,48,59,92,110,32,32,105,102,32,40,116,32,42,32,116,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,114,101,116,117,114,110,59,92,110,32,32,116,32,61,32,40,120,51,50,32,42,32,40,121,48,32,45,32,121,50,41,32,45,32,121,51,50,32,42,32,40,120,48,32,45,32,120,50,41,41,32,47,32,116,59,92,110,32,32,114,101,116,117,114,110,32,91,120,48,32,43,32,116,32,42,32,120,49,48,44,32,121,48,32,43,32,116,32,42,32,121,49,48,93,59,92,110,125,92,110,92,110,47,47,32,67,111,109,112,117,116,101,32,112,101,114,112,101,110,100,105,99,117,108,97,114,32,111,102,102,115,101,116,32,108,105,110,101,32,111,102,32,108,101,110,103,116,104,32,114,99,46,92,110,47,47,32,104,116,116,112,58,47,47,109,97,116,104,119,111,114,108,100,46,119,111,108,102,114,97,109,46,99,111,109,47,67,105,114,99,108,101,45,76,105,110,101,73,110,116,101,114,115,101,99,116,105,111,110,46,104,116,109,108,92,110,102,117,110,99,116,105,111,110,32,99,111,114,110,101,114,84,97,110,103,101,110,116,115,40,120,48,44,32,121,48,44,32,120,49,44,32,121,49,44,32,114,49,44,32,114,99,44,32,99,119,41,32,123,92,110,32,32,118,97,114,32,120,48,49,32,61,32,120,48,32,45,32,120,49,44,92,110,32,32,32,32,32,32,121,48,49,32,61,32,121,48,32,45,32,121,49,44,92,110,32,32,32,32,32,32,108,111,32,61,32,40,99,119,32,63,32,114,99,32,58,32,45,114,99,41,32,47,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,120,48,49,32,42,32,120,48,49,32,43,32,121,48,49,32,42,32,121,48,49,41,44,92,110,32,32,32,32,32,32,111,120,32,61,32,108,111,32,42,32,121,48,49,44,92,110,32,32,32,32,32,32,111,121,32,61,32,45,108,111,32,42,32,120,48,49,44,92,110,32,32,32,32,32,32,120,49,49,32,61,32,120,48,32,43,32,111,120,44,92,110,32,32,32,32,32,32,121,49,49,32,61,32,121,48,32,43,32,111,121,44,92,110,32,32,32,32,32,32,120,49,48,32,61,32,120,49,32,43,32,111,120,44,92,110,32,32,32,32,32,32,121,49,48,32,61,32,121,49,32,43,32,111,121,44,92,110,32,32,32,32,32,32,120,48,48,32,61,32,40,120,49,49,32,43,32,120,49,48,41,32,47,32,50,44,92,110,32,32,32,32,32,32,121,48,48,32,61,32,40,121,49,49,32,43,32,121,49,48,41,32,47,32,50,44,92,110,32,32,32,32,32,32,100,120,32,61,32,120,49,48,32,45,32,120,49,49,44,92,110,32,32,32,32,32,32,100,121,32,61,32,121,49,48,32,45,32,121,49,49,44,92,110,32,32,32,32,32,32,100,50,32,61,32,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,44,92,110,32,32,32,32,32,32,114,32,61,32,114,49,32,45,32,114,99,44,92,110,32,32,32,32,32,32,68,32,61,32,120,49,49,32,42,32,121,49,48,32,45,32,120,49,48,32,42,32,121,49,49,44,92,110,32,32,32,32,32,32,100,32,61,32,40,100,121,32,60,32,48,32,63,32,45,49,32,58,32,49,41,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,120,41,40,48,44,32,114,32,42,32,114,32,42,32,100,50,32,45,32,68,32,42,32,68,41,41,44,92,110,32,32,32,32,32,32,99,120,48,32,61,32,40,68,32,42,32,100,121,32,45,32,100,120,32,42,32,100,41,32,47,32,100,50,44,92,110,32,32,32,32,32,32,99,121,48,32,61,32,40,45,68,32,42,32,100,120,32,45,32,100,121,32,42,32,100,41,32,47,32,100,50,44,92,110,32,32,32,32,32,32,99,120,49,32,61,32,40,68,32,42,32,100,121,32,43,32,100,120,32,42,32,100,41,32,47,32,100,50,44,92,110,32,32,32,32,32,32,99,121,49,32,61,32,40,45,68,32,42,32,100,120,32,43,32,100,121,32,42,32,100,41,32,47,32,100,50,44,92,110,32,32,32,32,32,32,100,120,48,32,61,32,99,120,48,32,45,32,120,48,48,44,92,110,32,32,32,32,32,32,100,121,48,32,61,32,99,121,48,32,45,32,121,48,48,44,92,110,32,32,32,32,32,32,100,120,49,32,61,32,99,120,49,32,45,32,120,48,48,44,92,110,32,32,32,32,32,32,100,121,49,32,61,32,99,121,49,32,45,32,121,48,48,59,92,110,92,110,32,32,47,47,32,80,105,99,107,32,116,104,101,32,99,108,111,115,101,114,32,111,102,32,116,104,101,32,116,119,111,32,105,110,116,101,114,115,101,99,116,105,111,110,32,112,111,105,110,116,115,46,92,110,32,32,47,47,32,84,79,68,79,32,73,115,32,116,104,101,114,101,32,97,32,102,97,115,116,101,114,32,119,97,121,32,116,111,32,100,101,116,101,114,109,105,110,101,32,119,104,105,99,104,32,105,110,116,101,114,115,101,99,116,105,111,110,32,116,111,32,117,115,101,63,92,110,32,32,105,102,32,40,100,120,48,32,42,32,100,120,48,32,43,32,100,121,48,32,42,32,100,121,48,32,62,32,100,120,49,32,42,32,100,120,49,32,43,32,100,121,49,32,42,32,100,121,49,41,32,99,120,48,32,61,32,99,120,49,44,32,99,121,48,32,61,32,99,121,49,59,92,110,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,99,120,58,32,99,120,48,44,92,110,32,32,32,32,99,121,58,32,99,121,48,44,92,110,32,32,32,32,120,48,49,58,32,45,111,120,44,92,110,32,32,32,32,121,48,49,58,32,45,111,121,44,92,110,32,32,32,32,120,49,49,58,32,99,120,48,32,42,32,40,114,49,32,47,32,114,32,45,32,49,41,44,92,110,32,32,32,32,121,49,49,58,32,99,121,48,32,42,32,40,114,49,32,47,32,114,32,45,32,49,41,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,105,110,110,101,114,82,97,100,105,117,115,32,61,32,97,114,99,73,110,110,101,114,82,97,100,105,117,115,44,92,110,32,32,32,32,32,32,111,117,116,101,114,82,97,100,105,117,115,32,61,32,97,114,99,79,117,116,101,114,82,97,100,105,117,115,44,92,110,32,32,32,32,32,32,99,111,114,110,101,114,82,97,100,105,117,115,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,48,41,44,92,110,32,32,32,32,32,32,112,97,100,82,97,100,105,117,115,32,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,115,116,97,114,116,65,110,103,108,101,32,61,32,97,114,99,83,116,97,114,116,65,110,103,108,101,44,92,110,32,32,32,32,32,32,101,110,100,65,110,103,108,101,32,61,32,97,114,99,69,110,100,65,110,103,108,101,44,92,110,32,32,32,32,32,32,112,97,100,65,110,103,108,101,32,61,32,97,114,99,80,97,100,65,110,103,108,101,44,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,32,61,32,110,117,108,108,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,97,114,99,40,41,32,123,92,110,32,32,32,32,118,97,114,32,98,117,102,102,101,114,44,92,110,32,32,32,32,32,32,32,32,114,44,92,110,32,32,32,32,32,32,32,32,114,48,32,61,32,43,105,110,110,101,114,82,97,100,105,117,115,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,44,92,110,32,32,32,32,32,32,32,32,114,49,32,61,32,43,111,117,116,101,114,82,97,100,105,117,115,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,44,92,110,32,32,32,32,32,32,32,32,97,48,32,61,32,115,116,97,114,116,65,110,103,108,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,108,102,80,105,44,92,110,32,32,32,32,32,32,32,32,97,49,32,61,32,101,110,100,65,110,103,108,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,97,108,102,80,105,44,92,110,32,32,32,32,32,32,32,32,100,97,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,97,49,32,45,32,97,48,41,44,92,110,32,32,32,32,32,32,32,32,99,119,32,61,32,97,49,32,62,32,97,48,59,92,110,92,110,32,32,32,32,105,102,32,40,33,99,111,110,116,101,120,116,41,32,99,111,110,116,101,120,116,32,61,32,98,117,102,102,101,114,32,61,32,40,48,44,100,51,95,112,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,92,110,32,32,32,32,47,47,32,69,110,115,117,114,101,32,116,104,97,116,32,116,104,101,32,111,117,116,101,114,32,114,97,100,105,117,115,32,105,115,32,97,108,119,97,121,115,32,108,97,114,103,101,114,32,116,104,97,110,32,116,104,101,32,105,110,110,101,114,32,114,97,100,105,117,115,46,92,110,32,32,32,32,105,102,32,40,114,49,32,60,32,114,48,41,32,114,32,61,32,114,49,44,32,114,49,32,61,32,114,48,44,32,114,48,32,61,32,114,59,92,110,92,110,32,32,32,32,47,47,32,73,115,32,105,116,32,97,32,112,111,105,110,116,63,92,110,32,32,32,32,105,102,32,40,33,40,114,49,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,41,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,48,44,32,48,41,59,92,110,92,110,32,32,32,32,47,47,32,79,114,32,105,115,32,105,116,32,97,32,99,105,114,99,108,101,32,111,114,32,97,110,110,117,108,117,115,63,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,100,97,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,114,49,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,97,48,41,44,32,114,49,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,97,48,41,41,59,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,99,40,48,44,32,48,44,32,114,49,44,32,97,48,44,32,97,49,44,32,33,99,119,41,59,92,110,32,32,32,32,32,32,105,102,32,40,114,48,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,114,48,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,97,49,41,44,32,114,48,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,97,49,41,41,59,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,99,40,48,44,32,48,44,32,114,48,44,32,97,49,44,32,97,48,44,32,99,119,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,79,114,32,105,115,32,105,116,32,97,32,99,105,114,99,117,108,97,114,32,111,114,32,97,110,110,117,108,97,114,32,115,101,99,116,111,114,63,92,110,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,48,49,32,61,32,97,48,44,92,110,32,32,32,32,32,32,32,32,32,32,97,49,49,32,61,32,97,49,44,92,110,32,32,32,32,32,32,32,32,32,32,97,48,48,32,61,32,97,48,44,92,110,32,32,32,32,32,32,32,32,32,32,97,49,48,32,61,32,97,49,44,92,110,32,32,32,32,32,32,32,32,32,32,100,97,48,32,61,32,100,97,44,92,110,32,32,32,32,32,32,32,32,32,32,100,97,49,32,61,32,100,97,44,92,110,32,32,32,32,32,32,32,32,32,32,97,112,32,61,32,112,97,100,65,110,103,108,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,47,32,50,44,92,110,32,32,32,32,32,32,32,32,32,32,114,112,32,61,32,40,97,112,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,38,38,32,40,112,97,100,82,97,100,105,117,115,32,63,32,43,112,97,100,82,97,100,105,117,115,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,58,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,114,48,32,42,32,114,48,32,43,32,114,49,32,42,32,114,49,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,114,99,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,105,110,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,98,115,41,40,114,49,32,45,32,114,48,41,32,47,32,50,44,32,43,99,111,114,110,101,114,82,97,100,105,117,115,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,114,99,48,32,61,32,114,99,44,92,110,32,32,32,32,32,32,32,32,32,32,114,99,49,32,61,32,114,99,44,92,110,32,32,32,32,32,32,32,32,32,32,116,48,44,92,110,32,32,32,32,32,32,32,32,32,32,116,49,59,92,110,92,110,32,32,32,32,32,32,47,47,32,65,112,112,108,121,32,112,97,100,100,105,110,103,63,32,78,111,116,101,32,116,104,97,116,32,115,105,110,99,101,32,114,49,32,226,137,165,32,114,48,44,32,100,97,49,32,226,137,165,32,100,97,48,46,92,110,32,32,32,32,32,32,105,102,32,40,114,112,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,105,110,41,40,114,112,32,47,32,114,48,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,97,112,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,49,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,105,110,41,40,114,112,32,47,32,114,49,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,97,112,41,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,100,97,48,32,45,61,32,112,48,32,42,32,50,41,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,112,48,32,42,61,32,40,99,119,32,63,32,49,32,58,32,45,49,41,44,32,97,48,48,32,43,61,32,112,48,44,32,97,49,48,32,45,61,32,112,48,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,100,97,48,32,61,32,48,44,32,97,48,48,32,61,32,97,49,48,32,61,32,40,97,48,32,43,32,97,49,41,32,47,32,50,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,100,97,49,32,45,61,32,112,49,32,42,32,50,41,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,112,49,32,42,61,32,40,99,119,32,63,32,49,32,58,32,45,49,41,44,32,97,48,49,32,43,61,32,112,49,44,32,97,49,49,32,45,61,32,112,49,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,100,97,49,32,61,32,48,44,32,97,48,49,32,61,32,97,49,49,32,61,32,40,97,48,32,43,32,97,49,41,32,47,32,50,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,120,48,49,32,61,32,114,49,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,97,48,49,41,44,92,110,32,32,32,32,32,32,32,32,32,32,121,48,49,32,61,32,114,49,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,97,48,49,41,44,92,110,32,32,32,32,32,32,32,32,32,32,120,49,48,32,61,32,114,48,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,97,49,48,41,44,92,110,32,32,32,32,32,32,32,32,32,32,121,49,48,32,61,32,114,48,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,97,49,48,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,65,112,112,108,121,32,114,111,117,110,100,101,100,32,99,111,114,110,101,114,115,63,92,110,32,32,32,32,32,32,105,102,32,40,114,99,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,120,49,49,32,61,32,114,49,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,97,49,49,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,121,49,49,32,61,32,114,49,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,97,49,49,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,120,48,48,32,61,32,114,48,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,97,48,48,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,121,48,48,32,61,32,114,48,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,97,48,48,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,99,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,115,116,114,105,99,116,32,116,104,101,32,99,111,114,110,101,114,32,114,97,100,105,117,115,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,101,32,115,101,99,116,111,114,32,97,110,103,108,101,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,97,32,60,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,32,38,38,32,40,111,99,32,61,32,105,110,116,101,114,115,101,99,116,40,120,48,49,44,32,121,48,49,44,32,120,48,48,44,32,121,48,48,44,32,120,49,49,44,32,121,49,49,44,32,120,49,48,44,32,121,49,48,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,120,32,61,32,120,48,49,32,45,32,111,99,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,121,32,61,32,121,48,49,32,45,32,111,99,91,49,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,120,32,61,32,120,49,49,32,45,32,111,99,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,121,32,61,32,121,49,49,32,45,32,111,99,91,49,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,107,99,32,61,32,49,32,47,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,99,111,115,41,40,40,97,120,32,42,32,98,120,32,43,32,97,121,32,42,32,98,121,41,32,47,32,40,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,97,120,32,42,32,97,120,32,43,32,97,121,32,42,32,97,121,41,32,42,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,98,120,32,42,32,98,120,32,43,32,98,121,32,42,32,98,121,41,41,41,32,47,32,50,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,99,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,113,114,116,41,40,111,99,91,48,93,32,42,32,111,99,91,48,93,32,43,32,111,99,91,49,93,32,42,32,111,99,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,99,48,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,105,110,41,40,114,99,44,32,40,114,48,32,45,32,108,99,41,32,47,32,40,107,99,32,45,32,49,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,99,49,32,61,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,105,110,41,40,114,99,44,32,40,114,49,32,45,32,108,99,41,32,47,32,40,107,99,32,43,32,49,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,73,115,32,116,104,101,32,115,101,99,116,111,114,32,99,111,108,108,97,112,115,101,100,32,116,111,32,97,32,108,105,110,101,63,92,110,32,32,32,32,32,32,105,102,32,40,33,40,100,97,49,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,41,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,48,49,44,32,121,48,49,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,68,111,101,115,32,116,104,101,32,115,101,99,116,111,114,226,128,153,115,32,111,117,116,101,114,32,114,105,110,103,32,104,97,118,101,32,114,111,117,110,100,101,100,32,99,111,114,110,101,114,115,63,92,110,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,114,99,49,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,116,48,32,61,32,99,111,114,110,101,114,84,97,110,103,101,110,116,115,40,120,48,48,44,32,121,48,48,44,32,120,48,49,44,32,121,48,49,44,32,114,49,44,32,114,99,49,44,32,99,119,41,59,92,110,32,32,32,32,32,32,32,32,116,49,32,61,32,99,111,114,110,101,114,84,97,110,103,101,110,116,115,40,120,49,49,44,32,121,49,49,44,32,120,49,48,44,32,121,49,48,44,32,114,49,44,32,114,99,49,44,32,99,119,41,59,92,110,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,48,46,99,120,32,43,32,116,48,46,120,48,49,44,32,116,48,46,99,121,32,43,32,116,48,46,121,48,49,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,72,97,118,101,32,116,104,101,32,99,111,114,110,101,114,115,32,109,101,114,103,101,100,63,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,99,49,32,60,32,114,99,41,32,99,111,110,116,101,120,116,46,97,114,99,40,116,48,46,99,120,44,32,116,48,46,99,121,44,32,114,99,49,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,48,46,121,48,49,44,32,116,48,46,120,48,49,41,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,49,46,121,48,49,44,32,116,49,46,120,48,49,41,44,32,33,99,119,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,100,114,97,119,32,116,104,101,32,116,119,111,32,99,111,114,110,101,114,115,32,97,110,100,32,116,104,101,32,114,105,110,103,46,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,99,40,116,48,46,99,120,44,32,116,48,46,99,121,44,32,114,99,49,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,48,46,121,48,49,44,32,116,48,46,120,48,49,41,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,48,46,121,49,49,44,32,116,48,46,120,49,49,41,44,32,33,99,119,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,99,40,48,44,32,48,44,32,114,49,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,48,46,99,121,32,43,32,116,48,46,121,49,49,44,32,116,48,46,99,120,32,43,32,116,48,46,120,49,49,41,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,49,46,99,121,32,43,32,116,49,46,121,49,49,44,32,116,49,46,99,120,32,43,32,116,49,46,120,49,49,41,44,32,33,99,119,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,99,40,116,49,46,99,120,44,32,116,49,46,99,121,44,32,114,99,49,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,49,46,121,49,49,44,32,116,49,46,120,49,49,41,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,49,46,121,48,49,44,32,116,49,46,120,48,49,41,44,32,33,99,119,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,79,114,32,105,115,32,116,104,101,32,111,117,116,101,114,32,114,105,110,103,32,106,117,115,116,32,97,32,99,105,114,99,117,108,97,114,32,97,114,99,63,92,110,32,32,32,32,32,32,101,108,115,101,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,48,49,44,32,121,48,49,41,44,32,99,111,110,116,101,120,116,46,97,114,99,40,48,44,32,48,44,32,114,49,44,32,97,48,49,44,32,97,49,49,44,32,33,99,119,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,73,115,32,116,104,101,114,101,32,110,111,32,105,110,110,101,114,32,114,105,110,103,44,32,97,110,100,32,105,116,226,128,153,115,32,97,32,99,105,114,99,117,108,97,114,32,115,101,99,116,111,114,63,92,110,32,32,32,32,32,32,47,47,32,79,114,32,112,101,114,104,97,112,115,32,105,116,226,128,153,115,32,97,110,32,97,110,110,117,108,97,114,32,115,101,99,116,111,114,32,99,111,108,108,97,112,115,101,100,32,100,117,101,32,116,111,32,112,97,100,100,105,110,103,63,92,110,32,32,32,32,32,32,105,102,32,40,33,40,114,48,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,124,124,32,33,40,100,97,48,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,41,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,49,48,44,32,121,49,48,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,68,111,101,115,32,116,104,101,32,115,101,99,116,111,114,226,128,153,115,32,105,110,110,101,114,32,114,105,110,103,32,40,111,114,32,112,111,105,110,116,41,32,104,97,118,101,32,114,111,117,110,100,101,100,32,99,111,114,110,101,114,115,63,92,110,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,114,99,48,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,116,48,32,61,32,99,111,114,110,101,114,84,97,110,103,101,110,116,115,40,120,49,48,44,32,121,49,48,44,32,120,49,49,44,32,121,49,49,44,32,114,48,44,32,45,114,99,48,44,32,99,119,41,59,92,110,32,32,32,32,32,32,32,32,116,49,32,61,32,99,111,114,110,101,114,84,97,110,103,101,110,116,115,40,120,48,49,44,32,121,48,49,44,32,120,48,48,44,32,121,48,48,44,32,114,48,44,32,45,114,99,48,44,32,99,119,41,59,92,110,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,48,46,99,120,32,43,32,116,48,46,120,48,49,44,32,116,48,46,99,121,32,43,32,116,48,46,121,48,49,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,72,97,118,101,32,116,104,101,32,99,111,114,110,101,114,115,32,109,101,114,103,101,100,63,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,99,48,32,60,32,114,99,41,32,99,111,110,116,101,120,116,46,97,114,99,40,116,48,46,99,120,44,32,116,48,46,99,121,44,32,114,99,48,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,48,46,121,48,49,44,32,116,48,46,120,48,49,41,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,49,46,121,48,49,44,32,116,49,46,120,48,49,41,44,32,33,99,119,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,100,114,97,119,32,116,104,101,32,116,119,111,32,99,111,114,110,101,114,115,32,97,110,100,32,116,104,101,32,114,105,110,103,46,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,99,40,116,48,46,99,120,44,32,116,48,46,99,121,44,32,114,99,48,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,48,46,121,48,49,44,32,116,48,46,120,48,49,41,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,48,46,121,49,49,44,32,116,48,46,120,49,49,41,44,32,33,99,119,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,99,40,48,44,32,48,44,32,114,48,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,48,46,99,121,32,43,32,116,48,46,121,49,49,44,32,116,48,46,99,120,32,43,32,116,48,46,120,49,49,41,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,49,46,99,121,32,43,32,116,49,46,121,49,49,44,32,116,49,46,99,120,32,43,32,116,49,46,120,49,49,41,44,32,99,119,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,99,40,116,49,46,99,120,44,32,116,49,46,99,121,44,32,114,99,48,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,49,46,121,49,49,44,32,116,49,46,120,49,49,41,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,116,97,110,50,41,40,116,49,46,121,48,49,44,32,116,49,46,120,48,49,41,44,32,33,99,119,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,79,114,32,105,115,32,116,104,101,32,105,110,110,101,114,32,114,105,110,103,32,106,117,115,116,32,97,32,99,105,114,99,117,108,97,114,32,97,114,99,63,92,110,32,32,32,32,32,32,101,108,115,101,32,99,111,110,116,101,120,116,46,97,114,99,40,48,44,32,48,44,32,114,48,44,32,97,49,48,44,32,97,48,48,44,32,99,119,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,98,117,102,102,101,114,41,32,114,101,116,117,114,110,32,99,111,110,116,101,120,116,32,61,32,110,117,108,108,44,32,98,117,102,102,101,114,32,43,32,92,34,92,34,32,124,124,32,110,117,108,108,59,92,110,32,32,125,92,110,92,110,32,32,97,114,99,46,99,101,110,116,114,111,105,100,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,114,32,61,32,40,43,105,110,110,101,114,82,97,100,105,117,115,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,43,32,43,111,117,116,101,114,82,97,100,105,117,115,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,32,47,32,50,44,92,110,32,32,32,32,32,32,32,32,97,32,61,32,40,43,115,116,97,114,116,65,110,103,108,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,43,32,43,101,110,100,65,110,103,108,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,32,47,32,50,32,45,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,32,47,32,50,59,92,110,32,32,32,32,114,101,116,117,114,110,32,91,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,111,115,41,40,97,41,32,42,32,114,44,32,40,48,44,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,105,110,41,40,97,41,32,42,32,114,93,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,99,46,105,110,110,101,114,82,97,100,105,117,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,105,110,110,101,114,82,97,100,105,117,115,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,97,114,99,41,32,58,32,105,110,110,101,114,82,97,100,105,117,115,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,99,46,111,117,116,101,114,82,97,100,105,117,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,111,117,116,101,114,82,97,100,105,117,115,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,97,114,99,41,32,58,32,111,117,116,101,114,82,97,100,105,117,115,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,99,46,99,111,114,110,101,114,82,97,100,105,117,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,99,111,114,110,101,114,82,97,100,105,117,115,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,97,114,99,41,32,58,32,99,111,114,110,101,114,82,97,100,105,117,115,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,99,46,112,97,100,82,97,100,105,117,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,97,100,82,97,100,105,117,115,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,97,114,99,41,32,58,32,112,97,100,82,97,100,105,117,115,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,99,46,115,116,97,114,116,65,110,103,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,116,97,114,116,65,110,103,108,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,97,114,99,41,32,58,32,115,116,97,114,116,65,110,103,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,99,46,101,110,100,65,110,103,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,101,110,100,65,110,103,108,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,97,114,99,41,32,58,32,101,110,100,65,110,103,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,99,46,112,97,100,65,110,103,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,97,100,65,110,103,108,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,97,114,99,41,32,58,32,112,97,100,65,110,103,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,99,46,99,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,40,99,111,110,116,101,120,116,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,95,41,44,32,97,114,99,41,32,58,32,99,111,110,116,101,120,116,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,97,114,99,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,99,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,101,97,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,101,97,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,112,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,112,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,97,116,104,47,115,114,99,47,112,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,108,105,110,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,108,105,110,101,97,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,108,105,110,101,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,108,105,110,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,105,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,105,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,112,111,105,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,120,48,32,61,32,95,112,111,105,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,120,44,92,110,32,32,32,32,32,32,120,49,32,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,121,48,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,48,41,44,92,110,32,32,32,32,32,32,121,49,32,61,32,95,112,111,105,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,121,44,92,110,32,32,32,32,32,32,100,101,102,105,110,101,100,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,114,117,101,41,44,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,32,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,99,117,114,118,101,32,61,32,95,99,117,114,118,101,95,108,105,110,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,32,32,111,117,116,112,117,116,32,61,32,110,117,108,108,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,97,114,101,97,40,100,97,116,97,41,32,123,92,110,32,32,32,32,118,97,114,32,105,44,92,110,32,32,32,32,32,32,32,32,106,44,92,110,32,32,32,32,32,32,32,32,107,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,100,97,116,97,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,100,44,92,110,32,32,32,32,32,32,32,32,100,101,102,105,110,101,100,48,32,61,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,98,117,102,102,101,114,44,92,110,32,32,32,32,32,32,32,32,120,48,122,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,92,110,32,32,32,32,32,32,32,32,121,48,122,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,92,110,32,32,32,32,105,102,32,40,99,111,110,116,101,120,116,32,61,61,32,110,117,108,108,41,32,111,117,116,112,117,116,32,61,32,99,117,114,118,101,40,98,117,102,102,101,114,32,61,32,40,48,44,100,51,95,112,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,41,59,92,110,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,61,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,105,32,60,32,110,32,38,38,32,100,101,102,105,110,101,100,40,100,32,61,32,100,97,116,97,91,105,93,44,32,105,44,32,100,97,116,97,41,41,32,61,61,61,32,100,101,102,105,110,101,100,48,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,101,102,105,110,101,100,48,32,61,32,33,100,101,102,105,110,101,100,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,106,32,61,32,105,59,92,110,32,32,32,32,32,32,32,32,32,32,111,117,116,112,117,116,46,97,114,101,97,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,111,117,116,112,117,116,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,111,117,116,112,117,116,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,111,117,116,112,117,116,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,107,32,61,32,105,32,45,32,49,59,32,107,32,62,61,32,106,59,32,45,45,107,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,112,117,116,46,112,111,105,110,116,40,120,48,122,91,107,93,44,32,121,48,122,91,107,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,111,117,116,112,117,116,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,111,117,116,112,117,116,46,97,114,101,97,69,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,100,101,102,105,110,101,100,48,41,32,123,92,110,32,32,32,32,32,32,32,32,120,48,122,91,105,93,32,61,32,43,120,48,40,100,44,32,105,44,32,100,97,116,97,41,44,32,121,48,122,91,105,93,32,61,32,43,121,48,40,100,44,32,105,44,32,100,97,116,97,41,59,92,110,32,32,32,32,32,32,32,32,111,117,116,112,117,116,46,112,111,105,110,116,40,120,49,32,63,32,43,120,49,40,100,44,32,105,44,32,100,97,116,97,41,32,58,32,120,48,122,91,105,93,44,32,121,49,32,63,32,43,121,49,40,100,44,32,105,44,32,100,97,116,97,41,32,58,32,121,48,122,91,105,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,98,117,102,102,101,114,41,32,114,101,116,117,114,110,32,111,117,116,112,117,116,32,61,32,110,117,108,108,44,32,98,117,102,102,101,114,32,43,32,92,34,92,34,32,124,124,32,110,117,108,108,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,97,114,101,97,108,105,110,101,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,108,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,46,100,101,102,105,110,101,100,40,100,101,102,105,110,101,100,41,46,99,117,114,118,101,40,99,117,114,118,101,41,46,99,111,110,116,101,120,116,40,99,111,110,116,101,120,116,41,59,92,110,32,32,125,92,110,92,110,32,32,97,114,101,97,46,120,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,120,48,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,120,49,32,61,32,110,117,108,108,44,32,97,114,101,97,41,32,58,32,120,48,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,101,97,46,120,48,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,120,48,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,97,114,101,97,41,32,58,32,120,48,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,101,97,46,120,49,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,120,49,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,97,114,101,97,41,32,58,32,120,49,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,101,97,46,121,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,121,48,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,121,49,32,61,32,110,117,108,108,44,32,97,114,101,97,41,32,58,32,121,48,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,101,97,46,121,48,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,121,48,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,97,114,101,97,41,32,58,32,121,48,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,101,97,46,121,49,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,121,49,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,97,114,101,97,41,32,58,32,121,49,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,101,97,46,108,105,110,101,88,48,32,61,92,110,32,32,97,114,101,97,46,108,105,110,101,89,48,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,101,97,108,105,110,101,40,41,46,120,40,120,48,41,46,121,40,121,48,41,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,101,97,46,108,105,110,101,89,49,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,101,97,108,105,110,101,40,41,46,120,40,120,48,41,46,121,40,121,49,41,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,101,97,46,108,105,110,101,88,49,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,101,97,108,105,110,101,40,41,46,120,40,120,49,41,46,121,40,121,48,41,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,101,97,46,100,101,102,105,110,101,100,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,101,102,105,110,101,100,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,33,33,95,41,44,32,97,114,101,97,41,32,58,32,100,101,102,105,110,101,100,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,101,97,46,99,117,114,118,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,99,117,114,118,101,32,61,32,95,44,32,99,111,110,116,101,120,116,32,33,61,32,110,117,108,108,32,38,38,32,40,111,117,116,112,117,116,32,61,32,99,117,114,118,101,40,99,111,110,116,101,120,116,41,41,44,32,97,114,101,97,41,32,58,32,99,117,114,118,101,59,92,110,32,32,125,59,92,110,92,110,32,32,97,114,101,97,46,99,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,95,32,61,61,32,110,117,108,108,32,63,32,99,111,110,116,101,120,116,32,61,32,111,117,116,112,117,116,32,61,32,110,117,108,108,32,58,32,111,117,116,112,117,116,32,61,32,99,117,114,118,101,40,99,111,110,116,101,120,116,32,61,32,95,41,44,32,97,114,101,97,41,32,58,32,99,111,110,116,101,120,116,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,97,114,101,97,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,101,97,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,101,97,82,97,100,105,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,101,97,82,97,100,105,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,114,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,114,97,100,105,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,114,97,100,105,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,101,97,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,101,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,101,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,101,82,97,100,105,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,108,105,110,101,82,97,100,105,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,97,32,61,32,40,48,44,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,46,99,117,114,118,101,40,95,99,117,114,118,101,95,114,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,117,114,118,101,82,97,100,105,97,108,76,105,110,101,97,114,41,44,92,110,32,32,32,32,32,32,99,32,61,32,97,46,99,117,114,118,101,44,92,110,32,32,32,32,32,32,120,48,32,61,32,97,46,108,105,110,101,88,48,44,92,110,32,32,32,32,32,32,120,49,32,61,32,97,46,108,105,110,101,88,49,44,92,110,32,32,32,32,32,32,121,48,32,61,32,97,46,108,105,110,101,89,48,44,92,110,32,32,32,32,32,32,121,49,32,61,32,97,46,108,105,110,101,89,49,59,92,110,92,110,32,32,97,46,97,110,103,108,101,32,61,32,97,46,120,44,32,100,101,108,101,116,101,32,97,46,120,59,92,110,32,32,97,46,115,116,97,114,116,65,110,103,108,101,32,61,32,97,46,120,48,44,32,100,101,108,101,116,101,32,97,46,120,48,59,92,110,32,32,97,46,101,110,100,65,110,103,108,101,32,61,32,97,46,120,49,44,32,100,101,108,101,116,101,32,97,46,120,49,59,92,110,32,32,97,46,114,97,100,105,117,115,32,61,32,97,46,121,44,32,100,101,108,101,116,101,32,97,46,121,59,92,110,32,32,97,46,105,110,110,101,114,82,97,100,105,117,115,32,61,32,97,46,121,48,44,32,100,101,108,101,116,101,32,97,46,121,48,59,92,110,32,32,97,46,111,117,116,101,114,82,97,100,105,117,115,32,61,32,97,46,121,49,44,32,100,101,108,101,116,101,32,97,46,121,49,59,92,110,32,32,97,46,108,105,110,101,83,116,97,114,116,65,110,103,108,101,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,40,48,44,95,108,105,110,101,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,108,105,110,101,82,97,100,105,97,108,41,40,120,48,40,41,41,59,32,125,44,32,100,101,108,101,116,101,32,97,46,108,105,110,101,88,48,59,92,110,32,32,97,46,108,105,110,101,69,110,100,65,110,103,108,101,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,40,48,44,95,108,105,110,101,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,108,105,110,101,82,97,100,105,97,108,41,40,120,49,40,41,41,59,32,125,44,32,100,101,108,101,116,101,32,97,46,108,105,110,101,88,49,59,92,110,32,32,97,46,108,105,110,101,73,110,110,101,114,82,97,100,105,117,115,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,40,48,44,95,108,105,110,101,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,108,105,110,101,82,97,100,105,97,108,41,40,121,48,40,41,41,59,32,125,44,32,100,101,108,101,116,101,32,97,46,108,105,110,101,89,48,59,92,110,32,32,97,46,108,105,110,101,79,117,116,101,114,82,97,100,105,117,115,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,40,48,44,95,108,105,110,101,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,108,105,110,101,82,97,100,105,97,108,41,40,121,49,40,41,41,59,32,125,44,32,100,101,108,101,116,101,32,97,46,108,105,110,101,89,49,59,92,110,92,110,32,32,97,46,99,117,114,118,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,99,40,40,48,44,95,99,117,114,118,101,95,114,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,41,41,32,58,32,99,40,41,46,95,99,117,114,118,101,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,97,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,101,97,82,97,100,105,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,114,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,114,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,108,105,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,108,105,99,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,115,108,105,99,101,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,114,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,99,111,110,115,116,97,110,116,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,97,115,105,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,97,115,105,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,66,97,115,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,66,97,115,105,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,105,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,111,105,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,112,111,105,110,116,40,116,104,97,116,44,32,120,44,32,121,41,32,123,92,110,32,32,116,104,97,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,92,110,32,32,32,32,40,50,32,42,32,116,104,97,116,46,95,120,48,32,43,32,116,104,97,116,46,95,120,49,41,32,47,32,51,44,92,110,32,32,32,32,40,50,32,42,32,116,104,97,116,46,95,121,48,32,43,32,116,104,97,116,46,95,121,49,41,32,47,32,51,44,92,110,32,32,32,32,40,116,104,97,116,46,95,120,48,32,43,32,50,32,42,32,116,104,97,116,46,95,120,49,41,32,47,32,51,44,92,110,32,32,32,32,40,116,104,97,116,46,95,121,48,32,43,32,50,32,42,32,116,104,97,116,46,95,121,49,41,32,47,32,51,44,92,110,32,32,32,32,40,116,104,97,116,46,95,120,48,32,43,32,52,32,42,32,116,104,97,116,46,95,120,49,32,43,32,120,41,32,47,32,54,44,92,110,32,32,32,32,40,116,104,97,116,46,95,121,48,32,43,32,52,32,42,32,116,104,97,116,46,95,121,49,32,43,32,121,41,32,47,32,54,92,110,32,32,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,66,97,115,105,115,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,125,92,110,92,110,66,97,115,105,115,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,114,101,97,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,97,114,101,97,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,78,97,78,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,32,61,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,32,61,32,78,97,78,59,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,51,58,32,112,111,105,110,116,40,116,104,105,115,44,32,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,121,49,41,59,32,47,47,32,112,114,111,99,101,101,100,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,121,49,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,108,105,110,101,32,124,124,32,40,116,104,105,115,46,95,108,105,110,101,32,33,61,61,32,48,32,38,38,32,116,104,105,115,46,95,112,111,105,110,116,32,61,61,61,32,49,41,41,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,49,32,45,32,116,104,105,115,46,95,108,105,110,101,59,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,120,32,61,32,43,120,44,32,121,32,61,32,43,121,59,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,48,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,49,59,32,116,104,105,115,46,95,108,105,110,101,32,63,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,44,32,121,41,32,58,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,50,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,51,59,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,40,53,32,42,32,116,104,105,115,46,95,120,48,32,43,32,116,104,105,115,46,95,120,49,41,32,47,32,54,44,32,40,53,32,42,32,116,104,105,115,46,95,121,48,32,43,32,116,104,105,115,46,95,121,49,41,32,47,32,54,41,59,32,47,47,32,112,114,111,99,101,101,100,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,112,111,105,110,116,40,116,104,105,115,44,32,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,120,49,32,61,32,120,59,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,44,32,116,104,105,115,46,95,121,49,32,61,32,121,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,66,97,115,105,115,40,99,111,110,116,101,120,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,97,115,105,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,97,115,105,115,67,108,111,115,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,97,115,105,115,67,108,111,115,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,111,111,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,110,111,111,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,115,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,97,115,105,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,97,115,105,115,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,66,97,115,105,115,67,108,111,115,101,100,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,125,92,110,92,110,66,97,115,105,115,67,108,111,115,101,100,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,114,101,97,83,116,97,114,116,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,97,114,101,97,69,110,100,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,32,61,32,116,104,105,115,46,95,120,50,32,61,32,116,104,105,115,46,95,120,51,32,61,32,116,104,105,115,46,95,120,52,32,61,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,32,61,32,116,104,105,115,46,95,121,50,32,61,32,116,104,105,115,46,95,121,51,32,61,32,116,104,105,115,46,95,121,52,32,61,32,78,97,78,59,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,50,44,32,116,104,105,115,46,95,121,50,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,40,116,104,105,115,46,95,120,50,32,43,32,50,32,42,32,116,104,105,115,46,95,120,51,41,32,47,32,51,44,32,40,116,104,105,115,46,95,121,50,32,43,32,50,32,42,32,116,104,105,115,46,95,121,51,41,32,47,32,51,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,40,116,104,105,115,46,95,120,51,32,43,32,50,32,42,32,116,104,105,115,46,95,120,50,41,32,47,32,51,44,32,40,116,104,105,115,46,95,121,51,32,43,32,50,32,42,32,116,104,105,115,46,95,121,50,41,32,47,32,51,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,97,115,101,32,51,58,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,50,44,32,116,104,105,115,46,95,121,50,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,51,44,32,116,104,105,115,46,95,121,51,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,52,44,32,116,104,105,115,46,95,121,52,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,120,32,61,32,43,120,44,32,121,32,61,32,43,121,59,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,48,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,49,59,32,116,104,105,115,46,95,120,50,32,61,32,120,44,32,116,104,105,115,46,95,121,50,32,61,32,121,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,50,59,32,116,104,105,115,46,95,120,51,32,61,32,120,44,32,116,104,105,115,46,95,121,51,32,61,32,121,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,51,59,32,116,104,105,115,46,95,120,52,32,61,32,120,44,32,116,104,105,115,46,95,121,52,32,61,32,121,59,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,40,116,104,105,115,46,95,120,48,32,43,32,52,32,42,32,116,104,105,115,46,95,120,49,32,43,32,120,41,32,47,32,54,44,32,40,116,104,105,115,46,95,121,48,32,43,32,52,32,42,32,116,104,105,115,46,95,121,49,32,43,32,121,41,32,47,32,54,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,40,48,44,95,98,97,115,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,111,105,110,116,41,40,116,104,105,115,44,32,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,120,49,32,61,32,120,59,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,44,32,116,104,105,115,46,95,121,49,32,61,32,121,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,66,97,115,105,115,67,108,111,115,101,100,40,99,111,110,116,101,120,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,97,115,105,115,67,108,111,115,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,97,115,105,115,79,112,101,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,97,115,105,115,79,112,101,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,115,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,97,115,105,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,97,115,105,115,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,66,97,115,105,115,79,112,101,110,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,125,92,110,92,110,66,97,115,105,115,79,112,101,110,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,114,101,97,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,97,114,101,97,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,78,97,78,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,32,61,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,32,61,32,78,97,78,59,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,108,105,110,101,32,124,124,32,40,116,104,105,115,46,95,108,105,110,101,32,33,61,61,32,48,32,38,38,32,116,104,105,115,46,95,112,111,105,110,116,32,61,61,61,32,51,41,41,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,49,32,45,32,116,104,105,115,46,95,108,105,110,101,59,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,120,32,61,32,43,120,44,32,121,32,61,32,43,121,59,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,48,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,49,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,50,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,51,59,32,118,97,114,32,120,48,32,61,32,40,116,104,105,115,46,95,120,48,32,43,32,52,32,42,32,116,104,105,115,46,95,120,49,32,43,32,120,41,32,47,32,54,44,32,121,48,32,61,32,40,116,104,105,115,46,95,121,48,32,43,32,52,32,42,32,116,104,105,115,46,95,121,49,32,43,32,121,41,32,47,32,54,59,32,116,104,105,115,46,95,108,105,110,101,32,63,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,48,44,32,121,48,41,32,58,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,48,44,32,121,48,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,51,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,52,59,32,47,47,32,112,114,111,99,101,101,100,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,40,48,44,95,98,97,115,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,111,105,110,116,41,40,116,104,105,115,44,32,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,120,49,32,61,32,120,59,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,44,32,116,104,105,115,46,95,121,49,32,61,32,121,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,66,97,115,105,115,79,112,101,110,40,99,111,110,116,101,120,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,97,115,105,115,79,112,101,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,117,110,100,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,117,110,100,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,115,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,98,97,115,105,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,97,115,105,115,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,66,117,110,100,108,101,40,99,111,110,116,101,120,116,44,32,98,101,116,97,41,32,123,92,110,32,32,116,104,105,115,46,95,98,97,115,105,115,32,61,32,110,101,119,32,95,98,97,115,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,66,97,115,105,115,40,99,111,110,116,101,120,116,41,59,92,110,32,32,116,104,105,115,46,95,98,101,116,97,32,61,32,98,101,116,97,59,92,110,125,92,110,92,110,66,117,110,100,108,101,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,120,32,61,32,91,93,59,92,110,32,32,32,32,116,104,105,115,46,95,121,32,61,32,91,93,59,92,110,32,32,32,32,116,104,105,115,46,95,98,97,115,105,115,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,120,32,61,32,116,104,105,115,46,95,120,44,92,110,32,32,32,32,32,32,32,32,121,32,61,32,116,104,105,115,46,95,121,44,92,110,32,32,32,32,32,32,32,32,106,32,61,32,120,46,108,101,110,103,116,104,32,45,32,49,59,92,110,92,110,32,32,32,32,105,102,32,40,106,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,120,48,32,61,32,120,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,121,48,32,61,32,121,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,100,120,32,61,32,120,91,106,93,32,45,32,120,48,44,92,110,32,32,32,32,32,32,32,32,32,32,100,121,32,61,32,121,91,106,93,32,45,32,121,48,44,92,110,32,32,32,32,32,32,32,32,32,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,116,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,61,32,106,41,32,123,92,110,32,32,32,32,32,32,32,32,116,32,61,32,105,32,47,32,106,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,98,97,115,105,115,46,112,111,105,110,116,40,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,98,101,116,97,32,42,32,120,91,105,93,32,43,32,40,49,32,45,32,116,104,105,115,46,95,98,101,116,97,41,32,42,32,40,120,48,32,43,32,116,32,42,32,100,120,41,44,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,98,101,116,97,32,42,32,121,91,105,93,32,43,32,40,49,32,45,32,116,104,105,115,46,95,98,101,116,97,41,32,42,32,40,121,48,32,43,32,116,32,42,32,100,121,41,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,120,32,61,32,116,104,105,115,46,95,121,32,61,32,110,117,108,108,59,92,110,32,32,32,32,116,104,105,115,46,95,98,97,115,105,115,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,120,46,112,117,115,104,40,43,120,41,59,92,110,32,32,32,32,116,104,105,115,46,95,121,46,112,117,115,104,40,43,121,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,98,101,116,97,41,32,123,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,98,117,110,100,108,101,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,98,101,116,97,32,61,61,61,32,49,32,63,32,110,101,119,32,95,98,97,115,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,66,97,115,105,115,40,99,111,110,116,101,120,116,41,32,58,32,110,101,119,32,66,117,110,100,108,101,40,99,111,110,116,101,120,116,44,32,98,101,116,97,41,59,92,110,32,32,125,92,110,92,110,32,32,98,117,110,100,108,101,46,98,101,116,97,32,61,32,102,117,110,99,116,105,111,110,40,98,101,116,97,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,117,115,116,111,109,40,43,98,101,116,97,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,98,117,110,100,108,101,59,92,110,125,41,40,48,46,56,53,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,117,110,100,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,97,114,100,105,110,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,97,114,100,105,110,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,105,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,111,105,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,112,111,105,110,116,40,116,104,97,116,44,32,120,44,32,121,41,32,123,92,110,32,32,116,104,97,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,92,110,32,32,32,32,116,104,97,116,46,95,120,49,32,43,32,116,104,97,116,46,95,107,32,42,32,40,116,104,97,116,46,95,120,50,32,45,32,116,104,97,116,46,95,120,48,41,44,92,110,32,32,32,32,116,104,97,116,46,95,121,49,32,43,32,116,104,97,116,46,95,107,32,42,32,40,116,104,97,116,46,95,121,50,32,45,32,116,104,97,116,46,95,121,48,41,44,92,110,32,32,32,32,116,104,97,116,46,95,120,50,32,43,32,116,104,97,116,46,95,107,32,42,32,40,116,104,97,116,46,95,120,49,32,45,32,120,41,44,92,110,32,32,32,32,116,104,97,116,46,95,121,50,32,43,32,116,104,97,116,46,95,107,32,42,32,40,116,104,97,116,46,95,121,49,32,45,32,121,41,44,92,110,32,32,32,32,116,104,97,116,46,95,120,50,44,92,110,32,32,32,32,116,104,97,116,46,95,121,50,92,110,32,32,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,67,97,114,100,105,110,97,108,40,99,111,110,116,101,120,116,44,32,116,101,110,115,105,111,110,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,32,32,116,104,105,115,46,95,107,32,61,32,40,49,32,45,32,116,101,110,115,105,111,110,41,32,47,32,54,59,92,110,125,92,110,92,110,67,97,114,100,105,110,97,108,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,114,101,97,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,97,114,101,97,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,78,97,78,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,32,61,32,116,104,105,115,46,95,120,50,32,61,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,32,61,32,116,104,105,115,46,95,121,50,32,61,32,78,97,78,59,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,32,116,104,105,115,46,95,121,50,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,51,58,32,112,111,105,110,116,40,116,104,105,115,44,32,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,121,49,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,108,105,110,101,32,124,124,32,40,116,104,105,115,46,95,108,105,110,101,32,33,61,61,32,48,32,38,38,32,116,104,105,115,46,95,112,111,105,110,116,32,61,61,61,32,49,41,41,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,49,32,45,32,116,104,105,115,46,95,108,105,110,101,59,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,120,32,61,32,43,120,44,32,121,32,61,32,43,121,59,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,48,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,49,59,32,116,104,105,115,46,95,108,105,110,101,32,63,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,44,32,121,41,32,58,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,50,59,32,116,104,105,115,46,95,120,49,32,61,32,120,44,32,116,104,105,115,46,95,121,49,32,61,32,121,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,51,59,32,47,47,32,112,114,111,99,101,101,100,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,112,111,105,110,116,40,116,104,105,115,44,32,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,120,49,32,61,32,116,104,105,115,46,95,120,50,44,32,116,104,105,115,46,95,120,50,32,61,32,120,59,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,44,32,116,104,105,115,46,95,121,49,32,61,32,116,104,105,115,46,95,121,50,44,32,116,104,105,115,46,95,121,50,32,61,32,121,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,116,101,110,115,105,111,110,41,32,123,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,97,114,100,105,110,97,108,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,67,97,114,100,105,110,97,108,40,99,111,110,116,101,120,116,44,32,116,101,110,115,105,111,110,41,59,92,110,32,32,125,92,110,92,110,32,32,99,97,114,100,105,110,97,108,46,116,101,110,115,105,111,110,32,61,32,102,117,110,99,116,105,111,110,40,116,101,110,115,105,111,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,117,115,116,111,109,40,43,116,101,110,115,105,111,110,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,97,114,100,105,110,97,108,59,92,110,125,41,40,48,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,67,108,111,115,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,67,108,111,115,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,97,114,100,105,110,97,108,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,97,114,100,105,110,97,108,67,108,111,115,101,100,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,111,111,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,110,111,111,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,105,110,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,105,110,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,67,97,114,100,105,110,97,108,67,108,111,115,101,100,40,99,111,110,116,101,120,116,44,32,116,101,110,115,105,111,110,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,32,32,116,104,105,115,46,95,107,32,61,32,40,49,32,45,32,116,101,110,115,105,111,110,41,32,47,32,54,59,92,110,125,92,110,92,110,67,97,114,100,105,110,97,108,67,108,111,115,101,100,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,114,101,97,83,116,97,114,116,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,97,114,101,97,69,110,100,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,32,61,32,116,104,105,115,46,95,120,50,32,61,32,116,104,105,115,46,95,120,51,32,61,32,116,104,105,115,46,95,120,52,32,61,32,116,104,105,115,46,95,120,53,32,61,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,32,61,32,116,104,105,115,46,95,121,50,32,61,32,116,104,105,115,46,95,121,51,32,61,32,116,104,105,115,46,95,121,52,32,61,32,116,104,105,115,46,95,121,53,32,61,32,78,97,78,59,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,51,44,32,116,104,105,115,46,95,121,51,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,51,44,32,116,104,105,115,46,95,121,51,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,97,115,101,32,51,58,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,51,44,32,116,104,105,115,46,95,121,51,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,52,44,32,116,104,105,115,46,95,121,52,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,53,44,32,116,104,105,115,46,95,121,53,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,120,32,61,32,43,120,44,32,121,32,61,32,43,121,59,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,48,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,49,59,32,116,104,105,115,46,95,120,51,32,61,32,120,44,32,116,104,105,115,46,95,121,51,32,61,32,121,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,50,59,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,52,32,61,32,120,44,32,116,104,105,115,46,95,121,52,32,61,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,51,59,32,116,104,105,115,46,95,120,53,32,61,32,120,44,32,116,104,105,115,46,95,121,53,32,61,32,121,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,40,48,44,95,99,97,114,100,105,110,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,111,105,110,116,41,40,116,104,105,115,44,32,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,120,49,32,61,32,116,104,105,115,46,95,120,50,44,32,116,104,105,115,46,95,120,50,32,61,32,120,59,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,44,32,116,104,105,115,46,95,121,49,32,61,32,116,104,105,115,46,95,121,50,44,32,116,104,105,115,46,95,121,50,32,61,32,121,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,116,101,110,115,105,111,110,41,32,123,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,97,114,100,105,110,97,108,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,67,97,114,100,105,110,97,108,67,108,111,115,101,100,40,99,111,110,116,101,120,116,44,32,116,101,110,115,105,111,110,41,59,92,110,32,32,125,92,110,92,110,32,32,99,97,114,100,105,110,97,108,46,116,101,110,115,105,111,110,32,61,32,102,117,110,99,116,105,111,110,40,116,101,110,115,105,111,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,117,115,116,111,109,40,43,116,101,110,115,105,111,110,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,97,114,100,105,110,97,108,59,92,110,125,41,40,48,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,67,108,111,115,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,79,112,101,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,79,112,101,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,97,114,100,105,110,97,108,79,112,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,97,114,100,105,110,97,108,79,112,101,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,105,110,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,105,110,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,67,97,114,100,105,110,97,108,79,112,101,110,40,99,111,110,116,101,120,116,44,32,116,101,110,115,105,111,110,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,32,32,116,104,105,115,46,95,107,32,61,32,40,49,32,45,32,116,101,110,115,105,111,110,41,32,47,32,54,59,92,110,125,92,110,92,110,67,97,114,100,105,110,97,108,79,112,101,110,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,114,101,97,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,97,114,101,97,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,78,97,78,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,32,61,32,116,104,105,115,46,95,120,50,32,61,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,32,61,32,116,104,105,115,46,95,121,50,32,61,32,78,97,78,59,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,108,105,110,101,32,124,124,32,40,116,104,105,115,46,95,108,105,110,101,32,33,61,61,32,48,32,38,38,32,116,104,105,115,46,95,112,111,105,110,116,32,61,61,61,32,51,41,41,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,49,32,45,32,116,104,105,115,46,95,108,105,110,101,59,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,120,32,61,32,43,120,44,32,121,32,61,32,43,121,59,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,48,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,49,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,50,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,51,59,32,116,104,105,115,46,95,108,105,110,101,32,63,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,32,116,104,105,115,46,95,121,50,41,32,58,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,50,44,32,116,104,105,115,46,95,121,50,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,51,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,52,59,32,47,47,32,112,114,111,99,101,101,100,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,40,48,44,95,99,97,114,100,105,110,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,111,105,110,116,41,40,116,104,105,115,44,32,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,120,49,32,61,32,116,104,105,115,46,95,120,50,44,32,116,104,105,115,46,95,120,50,32,61,32,120,59,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,44,32,116,104,105,115,46,95,121,49,32,61,32,116,104,105,115,46,95,121,50,44,32,116,104,105,115,46,95,121,50,32,61,32,121,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,116,101,110,115,105,111,110,41,32,123,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,97,114,100,105,110,97,108,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,67,97,114,100,105,110,97,108,79,112,101,110,40,99,111,110,116,101,120,116,44,32,116,101,110,115,105,111,110,41,59,92,110,32,32,125,92,110,92,110,32,32,99,97,114,100,105,110,97,108,46,116,101,110,115,105,111,110,32,61,32,102,117,110,99,116,105,111,110,40,116,101,110,115,105,111,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,117,115,116,111,109,40,43,116,101,110,115,105,111,110,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,97,114,100,105,110,97,108,59,92,110,125,41,40,48,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,79,112,101,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,105,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,111,105,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,105,110,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,105,110,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,112,111,105,110,116,40,116,104,97,116,44,32,120,44,32,121,41,32,123,92,110,32,32,118,97,114,32,120,49,32,61,32,116,104,97,116,46,95,120,49,44,92,110,32,32,32,32,32,32,121,49,32,61,32,116,104,97,116,46,95,121,49,44,92,110,32,32,32,32,32,32,120,50,32,61,32,116,104,97,116,46,95,120,50,44,92,110,32,32,32,32,32,32,121,50,32,61,32,116,104,97,116,46,95,121,50,59,92,110,92,110,32,32,105,102,32,40,116,104,97,116,46,95,108,48,49,95,97,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,118,97,114,32,97,32,61,32,50,32,42,32,116,104,97,116,46,95,108,48,49,95,50,97,32,43,32,51,32,42,32,116,104,97,116,46,95,108,48,49,95,97,32,42,32,116,104,97,116,46,95,108,49,50,95,97,32,43,32,116,104,97,116,46,95,108,49,50,95,50,97,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,51,32,42,32,116,104,97,116,46,95,108,48,49,95,97,32,42,32,40,116,104,97,116,46,95,108,48,49,95,97,32,43,32,116,104,97,116,46,95,108,49,50,95,97,41,59,92,110,32,32,32,32,120,49,32,61,32,40,120,49,32,42,32,97,32,45,32,116,104,97,116,46,95,120,48,32,42,32,116,104,97,116,46,95,108,49,50,95,50,97,32,43,32,116,104,97,116,46,95,120,50,32,42,32,116,104,97,116,46,95,108,48,49,95,50,97,41,32,47,32,110,59,92,110,32,32,32,32,121,49,32,61,32,40,121,49,32,42,32,97,32,45,32,116,104,97,116,46,95,121,48,32,42,32,116,104,97,116,46,95,108,49,50,95,50,97,32,43,32,116,104,97,116,46,95,121,50,32,42,32,116,104,97,116,46,95,108,48,49,95,50,97,41,32,47,32,110,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,116,104,97,116,46,95,108,50,51,95,97,32,62,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,118,97,114,32,98,32,61,32,50,32,42,32,116,104,97,116,46,95,108,50,51,95,50,97,32,43,32,51,32,42,32,116,104,97,116,46,95,108,50,51,95,97,32,42,32,116,104,97,116,46,95,108,49,50,95,97,32,43,32,116,104,97,116,46,95,108,49,50,95,50,97,44,92,110,32,32,32,32,32,32,32,32,109,32,61,32,51,32,42,32,116,104,97,116,46,95,108,50,51,95,97,32,42,32,40,116,104,97,116,46,95,108,50,51,95,97,32,43,32,116,104,97,116,46,95,108,49,50,95,97,41,59,92,110,32,32,32,32,120,50,32,61,32,40,120,50,32,42,32,98,32,43,32,116,104,97,116,46,95,120,49,32,42,32,116,104,97,116,46,95,108,50,51,95,50,97,32,45,32,120,32,42,32,116,104,97,116,46,95,108,49,50,95,50,97,41,32,47,32,109,59,92,110,32,32,32,32,121,50,32,61,32,40,121,50,32,42,32,98,32,43,32,116,104,97,116,46,95,121,49,32,42,32,116,104,97,116,46,95,108,50,51,95,50,97,32,45,32,121,32,42,32,116,104,97,116,46,95,108,49,50,95,50,97,41,32,47,32,109,59,92,110,32,32,125,92,110,92,110,32,32,116,104,97,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,120,49,44,32,121,49,44,32,120,50,44,32,121,50,44,32,116,104,97,116,46,95,120,50,44,32,116,104,97,116,46,95,121,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,67,97,116,109,117,108,108,82,111,109,40,99,111,110,116,101,120,116,44,32,97,108,112,104,97,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,32,32,116,104,105,115,46,95,97,108,112,104,97,32,61,32,97,108,112,104,97,59,92,110,125,92,110,92,110,67,97,116,109,117,108,108,82,111,109,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,114,101,97,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,97,114,101,97,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,78,97,78,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,32,61,32,116,104,105,115,46,95,120,50,32,61,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,32,61,32,116,104,105,115,46,95,121,50,32,61,32,78,97,78,59,92,110,32,32,32,32,116,104,105,115,46,95,108,48,49,95,97,32,61,32,116,104,105,115,46,95,108,49,50,95,97,32,61,32,116,104,105,115,46,95,108,50,51,95,97,32,61,92,110,32,32,32,32,116,104,105,115,46,95,108,48,49,95,50,97,32,61,32,116,104,105,115,46,95,108,49,50,95,50,97,32,61,32,116,104,105,115,46,95,108,50,51,95,50,97,32,61,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,32,116,104,105,115,46,95,121,50,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,51,58,32,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,50,44,32,116,104,105,115,46,95,121,50,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,108,105,110,101,32,124,124,32,40,116,104,105,115,46,95,108,105,110,101,32,33,61,61,32,48,32,38,38,32,116,104,105,115,46,95,112,111,105,110,116,32,61,61,61,32,49,41,41,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,49,32,45,32,116,104,105,115,46,95,108,105,110,101,59,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,120,32,61,32,43,120,44,32,121,32,61,32,43,121,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,120,50,51,32,61,32,116,104,105,115,46,95,120,50,32,45,32,120,44,92,110,32,32,32,32,32,32,32,32,32,32,121,50,51,32,61,32,116,104,105,115,46,95,121,50,32,45,32,121,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,108,50,51,95,97,32,61,32,77,97,116,104,46,115,113,114,116,40,116,104,105,115,46,95,108,50,51,95,50,97,32,61,32,77,97,116,104,46,112,111,119,40,120,50,51,32,42,32,120,50,51,32,43,32,121,50,51,32,42,32,121,50,51,44,32,116,104,105,115,46,95,97,108,112,104,97,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,48,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,49,59,32,116,104,105,115,46,95,108,105,110,101,32,63,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,44,32,121,41,32,58,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,50,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,51,59,32,47,47,32,112,114,111,99,101,101,100,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,112,111,105,110,116,40,116,104,105,115,44,32,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,108,48,49,95,97,32,61,32,116,104,105,115,46,95,108,49,50,95,97,44,32,116,104,105,115,46,95,108,49,50,95,97,32,61,32,116,104,105,115,46,95,108,50,51,95,97,59,92,110,32,32,32,32,116,104,105,115,46,95,108,48,49,95,50,97,32,61,32,116,104,105,115,46,95,108,49,50,95,50,97,44,32,116,104,105,115,46,95,108,49,50,95,50,97,32,61,32,116,104,105,115,46,95,108,50,51,95,50,97,59,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,120,49,32,61,32,116,104,105,115,46,95,120,50,44,32,116,104,105,115,46,95,120,50,32,61,32,120,59,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,44,32,116,104,105,115,46,95,121,49,32,61,32,116,104,105,115,46,95,121,50,44,32,116,104,105,115,46,95,121,50,32,61,32,121,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,97,108,112,104,97,41,32,123,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,97,116,109,117,108,108,82,111,109,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,108,112,104,97,32,63,32,110,101,119,32,67,97,116,109,117,108,108,82,111,109,40,99,111,110,116,101,120,116,44,32,97,108,112,104,97,41,32,58,32,110,101,119,32,95,99,97,114,100,105,110,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,67,97,114,100,105,110,97,108,40,99,111,110,116,101,120,116,44,32,48,41,59,92,110,32,32,125,92,110,92,110,32,32,99,97,116,109,117,108,108,82,111,109,46,97,108,112,104,97,32,61,32,102,117,110,99,116,105,111,110,40,97,108,112,104,97,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,117,115,116,111,109,40,43,97,108,112,104,97,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,97,116,109,117,108,108,82,111,109,59,92,110,125,41,40,48,46,53,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,105,110,97,108,67,108,111,115,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,105,110,97,108,67,108,111,115,101,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,67,108,111,115,101,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,111,111,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,110,111,111,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,116,109,117,108,108,82,111,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,116,109,117,108,108,82,111,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,67,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,40,99,111,110,116,101,120,116,44,32,97,108,112,104,97,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,32,32,116,104,105,115,46,95,97,108,112,104,97,32,61,32,97,108,112,104,97,59,92,110,125,92,110,92,110,67,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,114,101,97,83,116,97,114,116,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,97,114,101,97,69,110,100,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,32,61,32,116,104,105,115,46,95,120,50,32,61,32,116,104,105,115,46,95,120,51,32,61,32,116,104,105,115,46,95,120,52,32,61,32,116,104,105,115,46,95,120,53,32,61,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,32,61,32,116,104,105,115,46,95,121,50,32,61,32,116,104,105,115,46,95,121,51,32,61,32,116,104,105,115,46,95,121,52,32,61,32,116,104,105,115,46,95,121,53,32,61,32,78,97,78,59,92,110,32,32,32,32,116,104,105,115,46,95,108,48,49,95,97,32,61,32,116,104,105,115,46,95,108,49,50,95,97,32,61,32,116,104,105,115,46,95,108,50,51,95,97,32,61,92,110,32,32,32,32,116,104,105,115,46,95,108,48,49,95,50,97,32,61,32,116,104,105,115,46,95,108,49,50,95,50,97,32,61,32,116,104,105,115,46,95,108,50,51,95,50,97,32,61,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,51,44,32,116,104,105,115,46,95,121,51,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,51,44,32,116,104,105,115,46,95,121,51,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,97,115,101,32,51,58,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,51,44,32,116,104,105,115,46,95,121,51,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,52,44,32,116,104,105,115,46,95,121,52,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,53,44,32,116,104,105,115,46,95,121,53,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,120,32,61,32,43,120,44,32,121,32,61,32,43,121,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,120,50,51,32,61,32,116,104,105,115,46,95,120,50,32,45,32,120,44,92,110,32,32,32,32,32,32,32,32,32,32,121,50,51,32,61,32,116,104,105,115,46,95,121,50,32,45,32,121,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,108,50,51,95,97,32,61,32,77,97,116,104,46,115,113,114,116,40,116,104,105,115,46,95,108,50,51,95,50,97,32,61,32,77,97,116,104,46,112,111,119,40,120,50,51,32,42,32,120,50,51,32,43,32,121,50,51,32,42,32,121,50,51,44,32,116,104,105,115,46,95,97,108,112,104,97,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,48,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,49,59,32,116,104,105,115,46,95,120,51,32,61,32,120,44,32,116,104,105,115,46,95,121,51,32,61,32,121,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,50,59,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,52,32,61,32,120,44,32,116,104,105,115,46,95,121,52,32,61,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,51,59,32,116,104,105,115,46,95,120,53,32,61,32,120,44,32,116,104,105,115,46,95,121,53,32,61,32,121,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,40,48,44,95,99,97,116,109,117,108,108,82,111,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,111,105,110,116,41,40,116,104,105,115,44,32,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,108,48,49,95,97,32,61,32,116,104,105,115,46,95,108,49,50,95,97,44,32,116,104,105,115,46,95,108,49,50,95,97,32,61,32,116,104,105,115,46,95,108,50,51,95,97,59,92,110,32,32,32,32,116,104,105,115,46,95,108,48,49,95,50,97,32,61,32,116,104,105,115,46,95,108,49,50,95,50,97,44,32,116,104,105,115,46,95,108,49,50,95,50,97,32,61,32,116,104,105,115,46,95,108,50,51,95,50,97,59,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,120,49,32,61,32,116,104,105,115,46,95,120,50,44,32,116,104,105,115,46,95,120,50,32,61,32,120,59,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,44,32,116,104,105,115,46,95,121,49,32,61,32,116,104,105,115,46,95,121,50,44,32,116,104,105,115,46,95,121,50,32,61,32,121,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,97,108,112,104,97,41,32,123,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,97,116,109,117,108,108,82,111,109,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,108,112,104,97,32,63,32,110,101,119,32,67,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,40,99,111,110,116,101,120,116,44,32,97,108,112,104,97,41,32,58,32,110,101,119,32,95,99,97,114,100,105,110,97,108,67,108,111,115,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,67,97,114,100,105,110,97,108,67,108,111,115,101,100,40,99,111,110,116,101,120,116,44,32,48,41,59,92,110,32,32,125,92,110,92,110,32,32,99,97,116,109,117,108,108,82,111,109,46,97,108,112,104,97,32,61,32,102,117,110,99,116,105,111,110,40,97,108,112,104,97,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,117,115,116,111,109,40,43,97,108,112,104,97,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,97,116,109,117,108,108,82,111,109,59,92,110,125,41,40,48,46,53,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,79,112,101,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,79,112,101,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,114,100,105,110,97,108,79,112,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,114,100,105,110,97,108,79,112,101,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,79,112,101,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,97,116,109,117,108,108,82,111,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,97,116,109,117,108,108,82,111,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,67,97,116,109,117,108,108,82,111,109,79,112,101,110,40,99,111,110,116,101,120,116,44,32,97,108,112,104,97,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,32,32,116,104,105,115,46,95,97,108,112,104,97,32,61,32,97,108,112,104,97,59,92,110,125,92,110,92,110,67,97,116,109,117,108,108,82,111,109,79,112,101,110,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,114,101,97,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,97,114,101,97,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,78,97,78,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,32,61,32,116,104,105,115,46,95,120,50,32,61,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,32,61,32,116,104,105,115,46,95,121,50,32,61,32,78,97,78,59,92,110,32,32,32,32,116,104,105,115,46,95,108,48,49,95,97,32,61,32,116,104,105,115,46,95,108,49,50,95,97,32,61,32,116,104,105,115,46,95,108,50,51,95,97,32,61,92,110,32,32,32,32,116,104,105,115,46,95,108,48,49,95,50,97,32,61,32,116,104,105,115,46,95,108,49,50,95,50,97,32,61,32,116,104,105,115,46,95,108,50,51,95,50,97,32,61,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,108,105,110,101,32,124,124,32,40,116,104,105,115,46,95,108,105,110,101,32,33,61,61,32,48,32,38,38,32,116,104,105,115,46,95,112,111,105,110,116,32,61,61,61,32,51,41,41,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,49,32,45,32,116,104,105,115,46,95,108,105,110,101,59,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,120,32,61,32,43,120,44,32,121,32,61,32,43,121,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,120,50,51,32,61,32,116,104,105,115,46,95,120,50,32,45,32,120,44,92,110,32,32,32,32,32,32,32,32,32,32,121,50,51,32,61,32,116,104,105,115,46,95,121,50,32,45,32,121,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,108,50,51,95,97,32,61,32,77,97,116,104,46,115,113,114,116,40,116,104,105,115,46,95,108,50,51,95,50,97,32,61,32,77,97,116,104,46,112,111,119,40,120,50,51,32,42,32,120,50,51,32,43,32,121,50,51,32,42,32,121,50,51,44,32,116,104,105,115,46,95,97,108,112,104,97,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,48,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,49,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,50,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,51,59,32,116,104,105,115,46,95,108,105,110,101,32,63,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,32,116,104,105,115,46,95,121,50,41,32,58,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,50,44,32,116,104,105,115,46,95,121,50,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,51,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,52,59,32,47,47,32,112,114,111,99,101,101,100,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,40,48,44,95,99,97,116,109,117,108,108,82,111,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,111,105,110,116,41,40,116,104,105,115,44,32,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,108,48,49,95,97,32,61,32,116,104,105,115,46,95,108,49,50,95,97,44,32,116,104,105,115,46,95,108,49,50,95,97,32,61,32,116,104,105,115,46,95,108,50,51,95,97,59,92,110,32,32,32,32,116,104,105,115,46,95,108,48,49,95,50,97,32,61,32,116,104,105,115,46,95,108,49,50,95,50,97,44,32,116,104,105,115,46,95,108,49,50,95,50,97,32,61,32,116,104,105,115,46,95,108,50,51,95,50,97,59,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,120,49,32,61,32,116,104,105,115,46,95,120,50,44,32,116,104,105,115,46,95,120,50,32,61,32,120,59,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,44,32,116,104,105,115,46,95,121,49,32,61,32,116,104,105,115,46,95,121,50,44,32,116,104,105,115,46,95,121,50,32,61,32,121,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,40,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,40,97,108,112,104,97,41,32,123,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,97,116,109,117,108,108,82,111,109,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,108,112,104,97,32,63,32,110,101,119,32,67,97,116,109,117,108,108,82,111,109,79,112,101,110,40,99,111,110,116,101,120,116,44,32,97,108,112,104,97,41,32,58,32,110,101,119,32,95,99,97,114,100,105,110,97,108,79,112,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,67,97,114,100,105,110,97,108,79,112,101,110,40,99,111,110,116,101,120,116,44,32,48,41,59,92,110,32,32,125,92,110,92,110,32,32,99,97,116,109,117,108,108,82,111,109,46,97,108,112,104,97,32,61,32,102,117,110,99,116,105,111,110,40,97,108,112,104,97,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,117,115,116,111,109,40,43,97,108,112,104,97,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,97,116,109,117,108,108,82,111,109,59,92,110,125,41,40,48,46,53,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,79,112,101,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,108,105,110,101,97,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,108,105,110,101,97,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,76,105,110,101,97,114,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,125,92,110,92,110,76,105,110,101,97,114,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,114,101,97,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,97,114,101,97,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,78,97,78,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,108,105,110,101,32,124,124,32,40,116,104,105,115,46,95,108,105,110,101,32,33,61,61,32,48,32,38,38,32,116,104,105,115,46,95,112,111,105,110,116,32,61,61,61,32,49,41,41,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,49,32,45,32,116,104,105,115,46,95,108,105,110,101,59,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,120,32,61,32,43,120,44,32,121,32,61,32,43,121,59,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,48,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,49,59,32,116,104,105,115,46,95,108,105,110,101,32,63,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,44,32,121,41,32,58,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,50,59,32,47,47,32,112,114,111,99,101,101,100,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,76,105,110,101,97,114,40,99,111,110,116,101,120,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,108,105,110,101,97,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,108,105,110,101,97,114,67,108,111,115,101,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,108,105,110,101,97,114,67,108,111,115,101,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,111,111,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,110,111,111,112,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,76,105,110,101,97,114,67,108,111,115,101,100,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,125,92,110,92,110,76,105,110,101,97,114,67,108,111,115,101,100,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,114,101,97,83,116,97,114,116,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,97,114,101,97,69,110,100,58,32,95,110,111,111,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,120,32,61,32,43,120,44,32,121,32,61,32,43,121,59,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,44,32,121,41,59,92,110,32,32,32,32,101,108,115,101,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,49,44,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,44,32,121,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,76,105,110,101,97,114,67,108,111,115,101,100,40,99,111,110,116,101,120,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,108,105,110,101,97,114,67,108,111,115,101,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,109,111,110,111,116,111,110,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,109,111,110,111,116,111,110,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,111,110,111,116,111,110,101,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,111,110,111,116,111,110,101,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,111,110,111,116,111,110,101,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,111,110,111,116,111,110,101,89,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,115,105,103,110,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,32,60,32,48,32,63,32,45,49,32,58,32,49,59,92,110,125,92,110,92,110,47,47,32,67,97,108,99,117,108,97,116,101,32,116,104,101,32,115,108,111,112,101,115,32,111,102,32,116,104,101,32,116,97,110,103,101,110,116,115,32,40,72,101,114,109,105,116,101,45,116,121,112,101,32,105,110,116,101,114,112,111,108,97,116,105,111,110,41,32,98,97,115,101,100,32,111,110,92,110,47,47,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,112,97,112,101,114,58,32,83,116,101,102,102,101,110,44,32,77,46,32,49,57,57,48,46,32,65,32,83,105,109,112,108,101,32,77,101,116,104,111,100,32,102,111,114,32,77,111,110,111,116,111,110,105,99,92,110,47,47,32,73,110,116,101,114,112,111,108,97,116,105,111,110,32,105,110,32,79,110,101,32,68,105,109,101,110,115,105,111,110,46,32,65,115,116,114,111,110,111,109,121,32,97,110,100,32,65,115,116,114,111,112,104,121,115,105,99,115,44,32,86,111,108,46,32,50,51,57,44,32,78,79,46,92,110,47,47,32,78,79,86,40,73,73,41,44,32,80,46,32,52,52,51,44,32,49,57,57,48,46,92,110,102,117,110,99,116,105,111,110,32,115,108,111,112,101,51,40,116,104,97,116,44,32,120,50,44,32,121,50,41,32,123,92,110,32,32,118,97,114,32,104,48,32,61,32,116,104,97,116,46,95,120,49,32,45,32,116,104,97,116,46,95,120,48,44,92,110,32,32,32,32,32,32,104,49,32,61,32,120,50,32,45,32,116,104,97,116,46,95,120,49,44,92,110,32,32,32,32,32,32,115,48,32,61,32,40,116,104,97,116,46,95,121,49,32,45,32,116,104,97,116,46,95,121,48,41,32,47,32,40,104,48,32,124,124,32,104,49,32,60,32,48,32,38,38,32,45,48,41,44,92,110,32,32,32,32,32,32,115,49,32,61,32,40,121,50,32,45,32,116,104,97,116,46,95,121,49,41,32,47,32,40,104,49,32,124,124,32,104,48,32,60,32,48,32,38,38,32,45,48,41,44,92,110,32,32,32,32,32,32,112,32,61,32,40,115,48,32,42,32,104,49,32,43,32,115,49,32,42,32,104,48,41,32,47,32,40,104,48,32,43,32,104,49,41,59,92,110,32,32,114,101,116,117,114,110,32,40,115,105,103,110,40,115,48,41,32,43,32,115,105,103,110,40,115,49,41,41,32,42,32,77,97,116,104,46,109,105,110,40,77,97,116,104,46,97,98,115,40,115,48,41,44,32,77,97,116,104,46,97,98,115,40,115,49,41,44,32,48,46,53,32,42,32,77,97,116,104,46,97,98,115,40,112,41,41,32,124,124,32,48,59,92,110,125,92,110,92,110,47,47,32,67,97,108,99,117,108,97,116,101,32,97,32,111,110,101,45,115,105,100,101,100,32,115,108,111,112,101,46,92,110,102,117,110,99,116,105,111,110,32,115,108,111,112,101,50,40,116,104,97,116,44,32,116,41,32,123,92,110,32,32,118,97,114,32,104,32,61,32,116,104,97,116,46,95,120,49,32,45,32,116,104,97,116,46,95,120,48,59,92,110,32,32,114,101,116,117,114,110,32,104,32,63,32,40,51,32,42,32,40,116,104,97,116,46,95,121,49,32,45,32,116,104,97,116,46,95,121,48,41,32,47,32,104,32,45,32,116,41,32,47,32,50,32,58,32,116,59,92,110,125,92,110,92,110,47,47,32,65,99,99,111,114,100,105,110,103,32,116,111,32,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,67,117,98,105,99,95,72,101,114,109,105,116,101,95,115,112,108,105,110,101,35,82,101,112,114,101,115,101,110,116,97,116,105,111,110,115,92,110,47,47,32,92,34,121,111,117,32,99,97,110,32,101,120,112,114,101,115,115,32,99,117,98,105,99,32,72,101,114,109,105,116,101,32,105,110,116,101,114,112,111,108,97,116,105,111,110,32,105,110,32,116,101,114,109,115,32,111,102,32,99,117,98,105,99,32,66,195,169,122,105,101,114,32,99,117,114,118,101,115,92,110,47,47,32,119,105,116,104,32,114,101,115,112,101,99,116,32,116,111,32,116,104,101,32,102,111,117,114,32,118,97,108,117,101,115,32,112,48,44,32,112,48,32,43,32,109,48,32,47,32,51,44,32,112,49,32,45,32,109,49,32,47,32,51,44,32,112,49,92,34,46,92,110,102,117,110,99,116,105,111,110,32,112,111,105,110,116,40,116,104,97,116,44,32,116,48,44,32,116,49,41,32,123,92,110,32,32,118,97,114,32,120,48,32,61,32,116,104,97,116,46,95,120,48,44,92,110,32,32,32,32,32,32,121,48,32,61,32,116,104,97,116,46,95,121,48,44,92,110,32,32,32,32,32,32,120,49,32,61,32,116,104,97,116,46,95,120,49,44,92,110,32,32,32,32,32,32,121,49,32,61,32,116,104,97,116,46,95,121,49,44,92,110,32,32,32,32,32,32,100,120,32,61,32,40,120,49,32,45,32,120,48,41,32,47,32,51,59,92,110,32,32,116,104,97,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,120,48,32,43,32,100,120,44,32,121,48,32,43,32,100,120,32,42,32,116,48,44,32,120,49,32,45,32,100,120,44,32,121,49,32,45,32,100,120,32,42,32,116,49,44,32,120,49,44,32,121,49,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,77,111,110,111,116,111,110,101,88,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,125,92,110,92,110,77,111,110,111,116,111,110,101,88,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,114,101,97,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,97,114,101,97,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,78,97,78,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,32,61,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,32,61,92,110,32,32,32,32,116,104,105,115,46,95,116,48,32,61,32,78,97,78,59,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,121,49,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,51,58,32,112,111,105,110,116,40,116,104,105,115,44,32,116,104,105,115,46,95,116,48,44,32,115,108,111,112,101,50,40,116,104,105,115,44,32,116,104,105,115,46,95,116,48,41,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,108,105,110,101,32,124,124,32,40,116,104,105,115,46,95,108,105,110,101,32,33,61,61,32,48,32,38,38,32,116,104,105,115,46,95,112,111,105,110,116,32,61,61,61,32,49,41,41,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,49,32,45,32,116,104,105,115,46,95,108,105,110,101,59,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,118,97,114,32,116,49,32,61,32,78,97,78,59,92,110,92,110,32,32,32,32,120,32,61,32,43,120,44,32,121,32,61,32,43,121,59,92,110,32,32,32,32,105,102,32,40,120,32,61,61,61,32,116,104,105,115,46,95,120,49,32,38,38,32,121,32,61,61,61,32,116,104,105,115,46,95,121,49,41,32,114,101,116,117,114,110,59,32,47,47,32,73,103,110,111,114,101,32,99,111,105,110,99,105,100,101,110,116,32,112,111,105,110,116,115,46,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,48,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,49,59,32,116,104,105,115,46,95,108,105,110,101,32,63,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,44,32,121,41,32,58,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,50,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,51,59,32,112,111,105,110,116,40,116,104,105,115,44,32,115,108,111,112,101,50,40,116,104,105,115,44,32,116,49,32,61,32,115,108,111,112,101,51,40,116,104,105,115,44,32,120,44,32,121,41,41,44,32,116,49,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,112,111,105,110,116,40,116,104,105,115,44,32,116,104,105,115,46,95,116,48,44,32,116,49,32,61,32,115,108,111,112,101,51,40,116,104,105,115,44,32,120,44,32,121,41,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,95,120,48,32,61,32,116,104,105,115,46,95,120,49,44,32,116,104,105,115,46,95,120,49,32,61,32,120,59,92,110,32,32,32,32,116,104,105,115,46,95,121,48,32,61,32,116,104,105,115,46,95,121,49,44,32,116,104,105,115,46,95,121,49,32,61,32,121,59,92,110,32,32,32,32,116,104,105,115,46,95,116,48,32,61,32,116,49,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,77,111,110,111,116,111,110,101,89,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,110,101,119,32,82,101,102,108,101,99,116,67,111,110,116,101,120,116,40,99,111,110,116,101,120,116,41,59,92,110,125,92,110,92,110,40,77,111,110,111,116,111,110,101,89,46,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,77,111,110,111,116,111,110,101,88,46,112,114,111,116,111,116,121,112,101,41,41,46,112,111,105,110,116,32,61,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,77,111,110,111,116,111,110,101,88,46,112,114,111,116,111,116,121,112,101,46,112,111,105,110,116,46,99,97,108,108,40,116,104,105,115,44,32,121,44,32,120,41,59,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,82,101,102,108,101,99,116,67,111,110,116,101,120,116,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,125,92,110,92,110,82,101,102,108,101,99,116,67,111,110,116,101,120,116,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,109,111,118,101,84,111,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,121,44,32,120,41,59,32,125,44,92,110,32,32,99,108,111,115,101,80,97,116,104,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,32,125,44,92,110,32,32,108,105,110,101,84,111,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,121,44,32,120,41,59,32,125,44,92,110,32,32,98,101,122,105,101,114,67,117,114,118,101,84,111,58,32,102,117,110,99,116,105,111,110,40,120,49,44,32,121,49,44,32,120,50,44,32,121,50,44,32,120,44,32,121,41,32,123,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,121,49,44,32,120,49,44,32,121,50,44,32,120,50,44,32,121,44,32,120,41,59,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,109,111,110,111,116,111,110,101,88,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,77,111,110,111,116,111,110,101,88,40,99,111,110,116,101,120,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,111,110,111,116,111,110,101,89,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,77,111,110,111,116,111,110,101,89,40,99,111,110,116,101,120,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,109,111,110,111,116,111,110,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,110,97,116,117,114,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,110,97,116,117,114,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,78,97,116,117,114,97,108,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,125,92,110,92,110,78,97,116,117,114,97,108,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,114,101,97,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,97,114,101,97,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,78,97,78,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,120,32,61,32,91,93,59,92,110,32,32,32,32,116,104,105,115,46,95,121,32,61,32,91,93,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,120,32,61,32,116,104,105,115,46,95,120,44,92,110,32,32,32,32,32,32,32,32,121,32,61,32,116,104,105,115,46,95,121,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,120,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,105,102,32,40,110,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,63,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,91,48,93,44,32,121,91,48,93,41,32,58,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,91,48,93,44,32,121,91,48,93,41,59,92,110,32,32,32,32,32,32,105,102,32,40,110,32,61,61,61,32,50,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,91,49,93,44,32,121,91,49,93,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,120,32,61,32,99,111,110,116,114,111,108,80,111,105,110,116,115,40,120,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,121,32,61,32,99,111,110,116,114,111,108,80,111,105,110,116,115,40,121,41,59,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,48,32,61,32,48,44,32,105,49,32,61,32,49,59,32,105,49,32,60,32,110,59,32,43,43,105,48,44,32,43,43,105,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,112,120,91,48,93,91,105,48,93,44,32,112,121,91,48,93,91,105,48,93,44,32,112,120,91,49,93,91,105,48,93,44,32,112,121,91,49,93,91,105,48,93,44,32,120,91,105,49,93,44,32,121,91,105,49,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,108,105,110,101,32,124,124,32,40,116,104,105,115,46,95,108,105,110,101,32,33,61,61,32,48,32,38,38,32,110,32,61,61,61,32,49,41,41,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,49,32,45,32,116,104,105,115,46,95,108,105,110,101,59,92,110,32,32,32,32,116,104,105,115,46,95,120,32,61,32,116,104,105,115,46,95,121,32,61,32,110,117,108,108,59,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,120,46,112,117,115,104,40,43,120,41,59,92,110,32,32,32,32,116,104,105,115,46,95,121,46,112,117,115,104,40,43,121,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,32,83,101,101,32,104,116,116,112,115,58,47,47,119,119,119,46,112,97,114,116,105,99,108,101,105,110,99,101,108,108,46,99,111,109,47,50,48,49,50,47,98,101,122,105,101,114,45,115,112,108,105,110,101,115,47,32,102,111,114,32,100,101,114,105,118,97,116,105,111,110,46,92,110,102,117,110,99,116,105,111,110,32,99,111,110,116,114,111,108,80,111,105,110,116,115,40,120,41,32,123,92,110,32,32,118,97,114,32,105,44,92,110,32,32,32,32,32,32,110,32,61,32,120,46,108,101,110,103,116,104,32,45,32,49,44,92,110,32,32,32,32,32,32,109,44,92,110,32,32,32,32,32,32,97,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,92,110,32,32,32,32,32,32,98,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,92,110,32,32,32,32,32,32,114,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,32,32,97,91,48,93,32,61,32,48,44,32,98,91,48,93,32,61,32,50,44,32,114,91,48,93,32,61,32,120,91,48,93,32,43,32,50,32,42,32,120,91,49,93,59,92,110,32,32,102,111,114,32,40,105,32,61,32,49,59,32,105,32,60,32,110,32,45,32,49,59,32,43,43,105,41,32,97,91,105,93,32,61,32,49,44,32,98,91,105,93,32,61,32,52,44,32,114,91,105,93,32,61,32,52,32,42,32,120,91,105,93,32,43,32,50,32,42,32,120,91,105,32,43,32,49,93,59,92,110,32,32,97,91,110,32,45,32,49,93,32,61,32,50,44,32,98,91,110,32,45,32,49,93,32,61,32,55,44,32,114,91,110,32,45,32,49,93,32,61,32,56,32,42,32,120,91,110,32,45,32,49,93,32,43,32,120,91,110,93,59,92,110,32,32,102,111,114,32,40,105,32,61,32,49,59,32,105,32,60,32,110,59,32,43,43,105,41,32,109,32,61,32,97,91,105,93,32,47,32,98,91,105,32,45,32,49,93,44,32,98,91,105,93,32,45,61,32,109,44,32,114,91,105,93,32,45,61,32,109,32,42,32,114,91,105,32,45,32,49,93,59,92,110,32,32,97,91,110,32,45,32,49,93,32,61,32,114,91,110,32,45,32,49,93,32,47,32,98,91,110,32,45,32,49,93,59,92,110,32,32,102,111,114,32,40,105,32,61,32,110,32,45,32,50,59,32,105,32,62,61,32,48,59,32,45,45,105,41,32,97,91,105,93,32,61,32,40,114,91,105,93,32,45,32,97,91,105,32,43,32,49,93,41,32,47,32,98,91,105,93,59,92,110,32,32,98,91,110,32,45,32,49,93,32,61,32,40,120,91,110,93,32,43,32,97,91,110,32,45,32,49,93,41,32,47,32,50,59,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,32,45,32,49,59,32,43,43,105,41,32,98,91,105,93,32,61,32,50,32,42,32,120,91,105,32,43,32,49,93,32,45,32,97,91,105,32,43,32,49,93,59,92,110,32,32,114,101,116,117,114,110,32,91,97,44,32,98,93,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,78,97,116,117,114,97,108,40,99,111,110,116,101,120,116,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,110,97,116,117,114,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,114,97,100,105,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,114,97,100,105,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,82,97,100,105,97,108,76,105,110,101,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,117,114,118,101,82,97,100,105,97,108,76,105,110,101,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,117,114,118,101,82,97,100,105,97,108,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,101,97,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,108,105,110,101,97,114,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,99,117,114,118,101,82,97,100,105,97,108,76,105,110,101,97,114,32,61,32,99,117,114,118,101,82,97,100,105,97,108,40,95,108,105,110,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,82,97,100,105,97,108,40,99,117,114,118,101,41,32,123,92,110,32,32,116,104,105,115,46,95,99,117,114,118,101,32,61,32,99,117,114,118,101,59,92,110,125,92,110,92,110,82,97,100,105,97,108,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,114,101,97,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,99,117,114,118,101,46,97,114,101,97,83,116,97,114,116,40,41,59,92,110,32,32,125,44,92,110,32,32,97,114,101,97,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,99,117,114,118,101,46,97,114,101,97,69,110,100,40,41,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,99,117,114,118,101,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,99,117,114,118,101,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,97,44,32,114,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,99,117,114,118,101,46,112,111,105,110,116,40,114,32,42,32,77,97,116,104,46,115,105,110,40,97,41,44,32,114,32,42,32,45,77,97,116,104,46,99,111,115,40,97,41,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,117,114,118,101,82,97,100,105,97,108,40,99,117,114,118,101,41,32,123,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,97,100,105,97,108,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,82,97,100,105,97,108,40,99,117,114,118,101,40,99,111,110,116,101,120,116,41,41,59,92,110,32,32,125,92,110,92,110,32,32,114,97,100,105,97,108,46,95,99,117,114,118,101,32,61,32,99,117,114,118,101,59,92,110,92,110,32,32,114,101,116,117,114,110,32,114,97,100,105,97,108,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,114,97,100,105,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,115,116,101,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,115,116,101,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,101,112,65,102,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,101,112,65,102,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,101,112,66,101,102,111,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,101,112,66,101,102,111,114,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,83,116,101,112,40,99,111,110,116,101,120,116,44,32,116,41,32,123,92,110,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,32,32,116,104,105,115,46,95,116,32,61,32,116,59,92,110,125,92,110,92,110,83,116,101,112,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,97,114,101,97,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,97,114,101,97,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,105,110,101,32,61,32,78,97,78,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,83,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,120,32,61,32,116,104,105,115,46,95,121,32,61,32,78,97,78,59,92,110,32,32,32,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,48,59,92,110,32,32,125,44,92,110,32,32,108,105,110,101,69,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,105,102,32,40,48,32,60,32,116,104,105,115,46,95,116,32,38,38,32,116,104,105,115,46,95,116,32,60,32,49,32,38,38,32,116,104,105,115,46,95,112,111,105,110,116,32,61,61,61,32,50,41,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,44,32,116,104,105,115,46,95,121,41,59,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,108,105,110,101,32,124,124,32,40,116,104,105,115,46,95,108,105,110,101,32,33,61,61,32,48,32,38,38,32,116,104,105,115,46,95,112,111,105,110,116,32,61,61,61,32,49,41,41,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,108,105,110,101,32,62,61,32,48,41,32,116,104,105,115,46,95,116,32,61,32,49,32,45,32,116,104,105,115,46,95,116,44,32,116,104,105,115,46,95,108,105,110,101,32,61,32,49,32,45,32,116,104,105,115,46,95,108,105,110,101,59,92,110,32,32,125,44,92,110,32,32,112,111,105,110,116,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,120,32,61,32,43,120,44,32,121,32,61,32,43,121,59,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,104,105,115,46,95,112,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,48,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,49,59,32,116,104,105,115,46,95,108,105,110,101,32,63,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,44,32,121,41,32,58,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,44,32,121,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,116,104,105,115,46,95,112,111,105,110,116,32,61,32,50,59,32,47,47,32,112,114,111,99,101,101,100,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,116,32,60,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,44,32,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,44,32,121,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,120,49,32,61,32,116,104,105,115,46,95,120,32,42,32,40,49,32,45,32,116,104,105,115,46,95,116,41,32,43,32,120,32,42,32,116,104,105,115,46,95,116,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,49,44,32,116,104,105,115,46,95,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,49,44,32,121,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,116,104,105,115,46,95,120,32,61,32,120,44,32,116,104,105,115,46,95,121,32,61,32,121,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,83,116,101,112,40,99,111,110,116,101,120,116,44,32,48,46,53,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,101,112,66,101,102,111,114,101,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,83,116,101,112,40,99,111,110,116,101,120,116,44,32,48,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,101,112,65,102,116,101,114,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,83,116,101,112,40,99,111,110,116,101,120,116,44,32,49,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,115,116,101,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,100,101,115,99,101,110,100,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,100,101,115,99,101,110,100,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,98,32,60,32,97,32,63,32,45,49,32,58,32,98,32,62,32,97,32,63,32,49,32,58,32,98,32,62,61,32,97,32,63,32,48,32,58,32,78,97,78,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,100,101,115,99,101,110,100,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,114,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,114,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,114,101,97,82,97,100,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,114,101,97,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,66,97,115,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,98,97,115,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,66,97,115,105,115,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,98,97,115,105,115,67,108,111,115,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,66,97,115,105,115,79,112,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,98,97,115,105,115,79,112,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,66,117,110,100,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,98,117,110,100,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,67,97,114,100,105,110,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,99,97,114,100,105,110,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,67,97,114,100,105,110,97,108,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,99,97,114,100,105,110,97,108,67,108,111,115,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,67,97,114,100,105,110,97,108,79,112,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,99,97,114,100,105,110,97,108,79,112,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,99,97,116,109,117,108,108,82,111,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,99,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,79,112,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,99,97,116,109,117,108,108,82,111,109,79,112,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,76,105,110,101,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,108,105,110,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,76,105,110,101,97,114,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,108,105,110,101,97,114,67,108,111,115,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,77,111,110,111,116,111,110,101,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,109,111,110,111,116,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,46,109,111,110,111,116,111,110,101,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,77,111,110,111,116,111,110,101,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,109,111,110,111,116,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,46,109,111,110,111,116,111,110,101,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,78,97,116,117,114,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,110,97,116,117,114,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,83,116,101,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,115,116,101,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,83,116,101,112,65,102,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,115,116,101,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,46,115,116,101,112,65,102,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,83,116,101,112,66,101,102,111,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,99,117,114,118,101,95,115,116,101,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,46,115,116,101,112,66,101,102,111,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,101,82,97,100,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,105,110,101,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,107,72,111,114,105,122,111,110,116,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,105,110,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,108,105,110,107,72,111,114,105,122,111,110,116,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,107,82,97,100,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,105,110,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,108,105,110,107,82,97,100,105,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,107,86,101,114,116,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,105,110,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,108,105,110,107,86,101,114,116,105,99,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,105,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,105,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,105,110,116,82,97,100,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,112,111,105,110,116,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,100,105,97,108,65,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,114,101,97,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,100,105,97,108,76,105,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,105,110,101,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,116,97,99,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,102,102,115,101,116,68,105,118,101,114,103,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,111,102,102,115,101,116,95,100,105,118,101,114,103,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,102,102,115,101,116,69,120,112,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,111,102,102,115,101,116,95,101,120,112,97,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,102,102,115,101,116,78,111,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,111,102,102,115,101,116,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,102,102,115,101,116,83,105,108,104,111,117,101,116,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,111,102,102,115,101,116,95,115,105,108,104,111,117,101,116,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,102,102,115,101,116,87,105,103,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,111,102,102,115,101,116,95,119,105,103,103,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,114,100,101,114,65,112,112,101,97,114,97,110,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,111,114,100,101,114,95,97,112,112,101,97,114,97,110,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,114,100,101,114,65,115,99,101,110,100,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,111,114,100,101,114,95,97,115,99,101,110,100,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,114,100,101,114,68,101,115,99,101,110,100,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,111,114,100,101,114,95,100,101,115,99,101,110,100,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,114,100,101,114,73,110,115,105,100,101,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,111,114,100,101,114,95,105,110,115,105,100,101,79,117,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,114,100,101,114,78,111,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,111,114,100,101,114,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,114,100,101,114,82,101,118,101,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,111,114,100,101,114,95,114,101,118,101,114,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,121,109,98,111,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,121,109,98,111,108,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,67,114,111,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,121,109,98,111,108,95,99,114,111,115,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,68,105,97,109,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,121,109,98,111,108,95,100,105,97,109,111,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,121,109,98,111,108,95,115,113,117,97,114,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,83,116,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,121,109,98,111,108,95,115,116,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,84,114,105,97,110,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,121,109,98,111,108,95,116,114,105,97,110,103,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,87,121,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,121,109,98,111,108,95,119,121,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,121,109,98,111,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,115,121,109,98,111,108,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,99,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,99,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,99,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,101,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,101,97,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,101,97,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,108,105,110,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,105,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,105,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,112,105,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,101,97,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,101,97,82,97,100,105,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,101,97,82,97,100,105,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,101,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,101,82,97,100,105,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,108,105,110,101,82,97,100,105,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,105,110,116,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,105,110,116,82,97,100,105,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,112,111,105,110,116,82,97,100,105,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,107,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,108,105,110,107,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,98,111,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,98,111,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,98,111,108,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,98,111,108,47,99,105,114,99,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,99,105,114,99,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,98,111,108,95,99,114,111,115,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,98,111,108,47,99,114,111,115,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,99,114,111,115,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,98,111,108,95,100,105,97,109,111,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,98,111,108,47,100,105,97,109,111,110,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,100,105,97,109,111,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,98,111,108,95,115,113,117,97,114,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,98,111,108,47,115,113,117,97,114,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,115,113,117,97,114,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,98,111,108,95,115,116,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,98,111,108,47,115,116,97,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,115,116,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,98,111,108,95,116,114,105,97,110,103,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,98,111,108,47,116,114,105,97,110,103,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,116,114,105,97,110,103,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,98,111,108,95,119,121,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,98,111,108,47,119,121,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,119,121,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,98,97,115,105,115,67,108,111,115,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,98,97,115,105,115,67,108,111,115,101,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,97,115,105,115,67,108,111,115,101,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,98,97,115,105,115,79,112,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,98,97,115,105,115,79,112,101,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,97,115,105,115,79,112,101,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,98,97,115,105,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,98,97,115,105,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,97,115,105,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,98,117,110,100,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,98,117,110,100,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,98,117,110,100,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,99,97,114,100,105,110,97,108,67,108,111,115,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,67,108,111,115,101,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,67,108,111,115,101,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,99,97,114,100,105,110,97,108,79,112,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,79,112,101,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,79,112,101,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,99,97,114,100,105,110,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,114,100,105,110,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,99,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,99,97,116,109,117,108,108,82,111,109,79,112,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,79,112,101,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,79,112,101,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,99,97,116,109,117,108,108,82,111,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,99,97,116,109,117,108,108,82,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,108,105,110,101,97,114,67,108,111,115,101,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,108,105,110,101,97,114,67,108,111,115,101,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,108,105,110,101,97,114,67,108,111,115,101,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,108,105,110,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,108,105,110,101,97,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,108,105,110,101,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,109,111,110,111,116,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,109,111,110,111,116,111,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,109,111,110,111,116,111,110,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,110,97,116,117,114,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,110,97,116,117,114,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,110,97,116,117,114,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,115,116,101,112,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,115,116,101,112,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,115,116,101,112,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,97,99,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,97,99,107,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,116,97,99,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,102,102,115,101,116,95,101,120,112,97,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,102,102,115,101,116,47,101,120,112,97,110,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,101,120,112,97,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,102,102,115,101,116,95,100,105,118,101,114,103,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,102,102,115,101,116,47,100,105,118,101,114,103,105,110,103,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,100,105,118,101,114,103,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,102,102,115,101,116,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,102,102,115,101,116,47,110,111,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,110,111,110,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,102,102,115,101,116,95,115,105,108,104,111,117,101,116,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,102,102,115,101,116,47,115,105,108,104,111,117,101,116,116,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,115,105,108,104,111,117,101,116,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,102,102,115,101,116,95,119,105,103,103,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,102,102,115,101,116,47,119,105,103,103,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,119,105,103,103,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,114,100,101,114,95,97,112,112,101,97,114,97,110,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,114,100,101,114,47,97,112,112,101,97,114,97,110,99,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,97,112,112,101,97,114,97,110,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,114,100,101,114,95,97,115,99,101,110,100,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,114,100,101,114,47,97,115,99,101,110,100,105,110,103,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,97,115,99,101,110,100,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,114,100,101,114,95,100,101,115,99,101,110,100,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,114,100,101,114,47,100,101,115,99,101,110,100,105,110,103,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,100,101,115,99,101,110,100,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,114,100,101,114,95,105,110,115,105,100,101,79,117,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,114,100,101,114,47,105,110,115,105,100,101,79,117,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,105,110,115,105,100,101,79,117,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,114,100,101,114,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,114,100,101,114,47,110,111,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,110,111,110,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,114,100,101,114,95,114,101,118,101,114,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,114,100,101,114,47,114,101,118,101,114,115,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,114,101,118,101,114,115,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,32,47,47,32,78,111,116,101,58,32,114,97,100,105,97,108,65,114,101,97,32,105,115,32,100,101,112,114,101,99,97,116,101,100,33,92,110,32,47,47,32,78,111,116,101,58,32,114,97,100,105,97,108,76,105,110,101,32,105,115,32,100,101,112,114,101,99,97,116,101,100,33,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,108,105,110,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,108,105,110,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,112,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,112,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,97,116,104,47,115,114,99,47,112,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,108,105,110,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,108,105,110,101,97,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,108,105,110,101,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,105,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,105,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,112,111,105,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,120,32,61,32,95,112,111,105,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,120,44,92,110,32,32,32,32,32,32,121,32,61,32,95,112,111,105,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,121,44,92,110,32,32,32,32,32,32,100,101,102,105,110,101,100,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,114,117,101,41,44,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,32,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,99,117,114,118,101,32,61,32,95,99,117,114,118,101,95,108,105,110,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,32,32,111,117,116,112,117,116,32,61,32,110,117,108,108,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,108,105,110,101,40,100,97,116,97,41,32,123,92,110,32,32,32,32,118,97,114,32,105,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,100,97,116,97,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,100,44,92,110,32,32,32,32,32,32,32,32,100,101,102,105,110,101,100,48,32,61,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,98,117,102,102,101,114,59,92,110,92,110,32,32,32,32,105,102,32,40,99,111,110,116,101,120,116,32,61,61,32,110,117,108,108,41,32,111,117,116,112,117,116,32,61,32,99,117,114,118,101,40,98,117,102,102,101,114,32,61,32,40,48,44,100,51,95,112,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,41,59,92,110,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,61,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,105,32,60,32,110,32,38,38,32,100,101,102,105,110,101,100,40,100,32,61,32,100,97,116,97,91,105,93,44,32,105,44,32,100,97,116,97,41,41,32,61,61,61,32,100,101,102,105,110,101,100,48,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,101,102,105,110,101,100,48,32,61,32,33,100,101,102,105,110,101,100,48,41,32,111,117,116,112,117,116,46,108,105,110,101,83,116,97,114,116,40,41,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,111,117,116,112,117,116,46,108,105,110,101,69,110,100,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,100,101,102,105,110,101,100,48,41,32,111,117,116,112,117,116,46,112,111,105,110,116,40,43,120,40,100,44,32,105,44,32,100,97,116,97,41,44,32,43,121,40,100,44,32,105,44,32,100,97,116,97,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,98,117,102,102,101,114,41,32,114,101,116,117,114,110,32,111,117,116,112,117,116,32,61,32,110,117,108,108,44,32,98,117,102,102,101,114,32,43,32,92,34,92,34,32,124,124,32,110,117,108,108,59,92,110,32,32,125,92,110,92,110,32,32,108,105,110,101,46,120,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,120,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,108,105,110,101,41,32,58,32,120,59,92,110,32,32,125,59,92,110,92,110,32,32,108,105,110,101,46,121,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,121,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,108,105,110,101,41,32,58,32,121,59,92,110,32,32,125,59,92,110,92,110,32,32,108,105,110,101,46,100,101,102,105,110,101,100,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,101,102,105,110,101,100,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,33,33,95,41,44,32,108,105,110,101,41,32,58,32,100,101,102,105,110,101,100,59,92,110,32,32,125,59,92,110,92,110,32,32,108,105,110,101,46,99,117,114,118,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,99,117,114,118,101,32,61,32,95,44,32,99,111,110,116,101,120,116,32,33,61,32,110,117,108,108,32,38,38,32,40,111,117,116,112,117,116,32,61,32,99,117,114,118,101,40,99,111,110,116,101,120,116,41,41,44,32,108,105,110,101,41,32,58,32,99,117,114,118,101,59,92,110,32,32,125,59,92,110,92,110,32,32,108,105,110,101,46,99,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,95,32,61,61,32,110,117,108,108,32,63,32,99,111,110,116,101,120,116,32,61,32,111,117,116,112,117,116,32,61,32,110,117,108,108,32,58,32,111,117,116,112,117,116,32,61,32,99,117,114,118,101,40,99,111,110,116,101,120,116,32,61,32,95,41,44,32,108,105,110,101,41,32,58,32,99,111,110,116,101,120,116,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,108,105,110,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,108,105,110,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,108,105,110,101,82,97,100,105,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,108,105,110,101,82,97,100,105,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,101,82,97,100,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,105,110,101,82,97,100,105,97,108,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,117,114,118,101,95,114,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,117,114,118,101,47,114,97,100,105,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,117,114,118,101,47,114,97,100,105,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,108,105,110,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,108,105,110,101,82,97,100,105,97,108,40,108,41,32,123,92,110,32,32,118,97,114,32,99,32,61,32,108,46,99,117,114,118,101,59,92,110,92,110,32,32,108,46,97,110,103,108,101,32,61,32,108,46,120,44,32,100,101,108,101,116,101,32,108,46,120,59,92,110,32,32,108,46,114,97,100,105,117,115,32,61,32,108,46,121,44,32,100,101,108,101,116,101,32,108,46,121,59,92,110,92,110,32,32,108,46,99,117,114,118,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,99,40,40,48,44,95,99,117,114,118,101,95,114,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,41,41,32,58,32,99,40,41,46,95,99,117,114,118,101,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,108,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,108,105,110,101,82,97,100,105,97,108,40,40,48,44,95,108,105,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,46,99,117,114,118,101,40,95,99,117,114,118,101,95,114,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,117,114,118,101,82,97,100,105,97,108,76,105,110,101,97,114,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,108,105,110,101,82,97,100,105,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,108,105,110,107,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,108,105,110,107,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,107,72,111,114,105,122,111,110,116,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,105,110,107,72,111,114,105,122,111,110,116,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,107,82,97,100,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,105,110,107,82,97,100,105,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,107,86,101,114,116,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,105,110,107,86,101,114,116,105,99,97,108,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,112,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,112,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,97,116,104,47,115,114,99,47,112,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,97,114,114,97,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,110,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,105,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,112,111,105,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,112,111,105,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,105,110,116,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,112,111,105,110,116,82,97,100,105,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,112,111,105,110,116,82,97,100,105,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,108,105,110,107,83,111,117,114,99,101,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,115,111,117,114,99,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,105,110,107,84,97,114,103,101,116,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,116,97,114,103,101,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,105,110,107,40,99,117,114,118,101,41,32,123,92,110,32,32,118,97,114,32,115,111,117,114,99,101,32,61,32,108,105,110,107,83,111,117,114,99,101,44,92,110,32,32,32,32,32,32,116,97,114,103,101,116,32,61,32,108,105,110,107,84,97,114,103,101,116,44,92,110,32,32,32,32,32,32,120,32,61,32,95,112,111,105,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,120,44,92,110,32,32,32,32,32,32,121,32,61,32,95,112,111,105,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,121,44,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,32,61,32,110,117,108,108,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,108,105,110,107,40,41,32,123,92,110,32,32,32,32,118,97,114,32,98,117,102,102,101,114,44,32,97,114,103,118,32,61,32,95,97,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,32,115,32,61,32,115,111,117,114,99,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,118,41,44,32,116,32,61,32,116,97,114,103,101,116,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,118,41,59,92,110,32,32,32,32,105,102,32,40,33,99,111,110,116,101,120,116,41,32,99,111,110,116,101,120,116,32,61,32,98,117,102,102,101,114,32,61,32,40,48,44,100,51,95,112,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,32,32,99,117,114,118,101,40,99,111,110,116,101,120,116,44,32,43,120,46,97,112,112,108,121,40,116,104,105,115,44,32,40,97,114,103,118,91,48,93,32,61,32,115,44,32,97,114,103,118,41,41,44,32,43,121,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,118,41,44,32,43,120,46,97,112,112,108,121,40,116,104,105,115,44,32,40,97,114,103,118,91,48,93,32,61,32,116,44,32,97,114,103,118,41,41,44,32,43,121,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,118,41,41,59,92,110,32,32,32,32,105,102,32,40,98,117,102,102,101,114,41,32,114,101,116,117,114,110,32,99,111,110,116,101,120,116,32,61,32,110,117,108,108,44,32,98,117,102,102,101,114,32,43,32,92,34,92,34,32,124,124,32,110,117,108,108,59,92,110,32,32,125,92,110,92,110,32,32,108,105,110,107,46,115,111,117,114,99,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,111,117,114,99,101,32,61,32,95,44,32,108,105,110,107,41,32,58,32,115,111,117,114,99,101,59,92,110,32,32,125,59,92,110,92,110,32,32,108,105,110,107,46,116,97,114,103,101,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,97,114,103,101,116,32,61,32,95,44,32,108,105,110,107,41,32,58,32,116,97,114,103,101,116,59,92,110,32,32,125,59,92,110,92,110,32,32,108,105,110,107,46,120,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,120,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,108,105,110,107,41,32,58,32,120,59,92,110,32,32,125,59,92,110,92,110,32,32,108,105,110,107,46,121,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,121,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,108,105,110,107,41,32,58,32,121,59,92,110,32,32,125,59,92,110,92,110,32,32,108,105,110,107,46,99,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,40,99,111,110,116,101,120,116,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,95,41,44,32,108,105,110,107,41,32,58,32,99,111,110,116,101,120,116,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,108,105,110,107,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,117,114,118,101,72,111,114,105,122,111,110,116,97,108,40,99,111,110,116,101,120,116,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,48,44,32,121,48,41,59,92,110,32,32,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,120,48,32,61,32,40,120,48,32,43,32,120,49,41,32,47,32,50,44,32,121,48,44,32,120,48,44,32,121,49,44,32,120,49,44,32,121,49,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,117,114,118,101,86,101,114,116,105,99,97,108,40,99,111,110,116,101,120,116,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,48,44,32,121,48,41,59,92,110,32,32,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,120,48,44,32,121,48,32,61,32,40,121,48,32,43,32,121,49,41,32,47,32,50,44,32,120,49,44,32,121,48,44,32,120,49,44,32,121,49,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,117,114,118,101,82,97,100,105,97,108,40,99,111,110,116,101,120,116,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,118,97,114,32,112,48,32,61,32,40,48,44,95,112,111,105,110,116,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,120,48,44,32,121,48,41,44,92,110,32,32,32,32,32,32,112,49,32,61,32,40,48,44,95,112,111,105,110,116,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,120,48,44,32,121,48,32,61,32,40,121,48,32,43,32,121,49,41,32,47,32,50,41,44,92,110,32,32,32,32,32,32,112,50,32,61,32,40,48,44,95,112,111,105,110,116,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,120,49,44,32,121,48,41,44,92,110,32,32,32,32,32,32,112,51,32,61,32,40,48,44,95,112,111,105,110,116,82,97,100,105,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,120,49,44,32,121,49,41,59,92,110,32,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,112,48,91,48,93,44,32,112,48,91,49,93,41,59,92,110,32,32,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,112,49,91,48,93,44,32,112,49,91,49,93,44,32,112,50,91,48,93,44,32,112,50,91,49,93,44,32,112,51,91,48,93,44,32,112,51,91,49,93,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,105,110,107,72,111,114,105,122,111,110,116,97,108,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,108,105,110,107,40,99,117,114,118,101,72,111,114,105,122,111,110,116,97,108,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,105,110,107,86,101,114,116,105,99,97,108,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,108,105,110,107,40,99,117,114,118,101,86,101,114,116,105,99,97,108,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,105,110,107,82,97,100,105,97,108,40,41,32,123,92,110,32,32,118,97,114,32,108,32,61,32,108,105,110,107,40,99,117,114,118,101,82,97,100,105,97,108,41,59,92,110,32,32,108,46,97,110,103,108,101,32,61,32,108,46,120,44,32,100,101,108,101,116,101,32,108,46,120,59,92,110,32,32,108,46,114,97,100,105,117,115,32,61,32,108,46,121,44,32,100,101,108,101,116,101,32,108,46,121,59,92,110,32,32,114,101,116,117,114,110,32,108,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,108,105,110,107,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,109,97,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,109,97,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,98,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,98,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,99,111,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,99,111,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,115,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,115,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,116,97,110,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,116,97,110,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,112,115,105,108,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,112,115,105,108,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,97,108,102,80,105,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,97,108,102,80,105,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,105,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,112,105,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,113,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,113,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,97,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,97,117,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,97,98,115,32,61,32,77,97,116,104,46,97,98,115,59,92,110,118,97,114,32,97,116,97,110,50,32,61,32,77,97,116,104,46,97,116,97,110,50,59,92,110,118,97,114,32,99,111,115,32,61,32,77,97,116,104,46,99,111,115,59,92,110,118,97,114,32,109,97,120,32,61,32,77,97,116,104,46,109,97,120,59,92,110,118,97,114,32,109,105,110,32,61,32,77,97,116,104,46,109,105,110,59,92,110,118,97,114,32,115,105,110,32,61,32,77,97,116,104,46,115,105,110,59,92,110,118,97,114,32,115,113,114,116,32,61,32,77,97,116,104,46,115,113,114,116,59,92,110,92,110,118,97,114,32,101,112,115,105,108,111,110,32,61,32,49,101,45,49,50,59,92,110,118,97,114,32,112,105,32,61,32,77,97,116,104,46,80,73,59,92,110,118,97,114,32,104,97,108,102,80,105,32,61,32,112,105,32,47,32,50,59,92,110,118,97,114,32,116,97,117,32,61,32,50,32,42,32,112,105,59,92,110,92,110,102,117,110,99,116,105,111,110,32,97,99,111,115,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,32,62,32,49,32,63,32,48,32,58,32,120,32,60,32,45,49,32,63,32,112,105,32,58,32,77,97,116,104,46,97,99,111,115,40,120,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,115,105,110,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,120,32,62,61,32,49,32,63,32,104,97,108,102,80,105,32,58,32,120,32,60,61,32,45,49,32,63,32,45,104,97,108,102,80,105,32,58,32,77,97,116,104,46,97,115,105,110,40,120,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,109,97,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,110,111,111,112,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,110,111,111,112,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,110,111,111,112,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,100,105,118,101,114,103,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,100,105,118,101,114,103,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,114,105,101,115,44,32,111,114,100,101,114,41,32,123,92,110,32,32,105,102,32,40,33,40,40,110,32,61,32,115,101,114,105,101,115,46,108,101,110,103,116,104,41,32,62,32,48,41,41,32,114,101,116,117,114,110,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,44,32,106,32,61,32,48,44,32,100,44,32,100,121,44,32,121,112,44,32,121,110,44,32,110,44,32,109,32,61,32,115,101,114,105,101,115,91,111,114,100,101,114,91,48,93,93,46,108,101,110,103,116,104,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,121,112,32,61,32,121,110,32,61,32,48,44,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,100,121,32,61,32,40,100,32,61,32,115,101,114,105,101,115,91,111,114,100,101,114,91,105,93,93,91,106,93,41,91,49,93,32,45,32,100,91,48,93,41,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,100,91,48,93,32,61,32,121,112,44,32,100,91,49,93,32,61,32,121,112,32,43,61,32,100,121,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,121,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,100,91,49,93,32,61,32,121,110,44,32,100,91,48,93,32,61,32,121,110,32,43,61,32,100,121,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,100,91,48,93,32,61,32,48,44,32,100,91,49,93,32,61,32,100,121,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,100,105,118,101,114,103,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,101,120,112,97,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,101,120,112,97,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,110,111,110,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,114,105,101,115,44,32,111,114,100,101,114,41,32,123,92,110,32,32,105,102,32,40,33,40,40,110,32,61,32,115,101,114,105,101,115,46,108,101,110,103,116,104,41,32,62,32,48,41,41,32,114,101,116,117,114,110,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,44,32,110,44,32,106,32,61,32,48,44,32,109,32,61,32,115,101,114,105,101,115,91,48,93,46,108,101,110,103,116,104,44,32,121,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,121,32,61,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,121,32,43,61,32,115,101,114,105,101,115,91,105,93,91,106,93,91,49,93,32,124,124,32,48,59,92,110,32,32,32,32,105,102,32,40,121,41,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,115,101,114,105,101,115,91,105,93,91,106,93,91,49,93,32,47,61,32,121,59,92,110,32,32,125,92,110,32,32,40,48,44,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,101,114,105,101,115,44,32,111,114,100,101,114,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,101,120,112,97,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,110,111,110,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,110,111,110,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,114,105,101,115,44,32,111,114,100,101,114,41,32,123,92,110,32,32,105,102,32,40,33,40,40,110,32,61,32,115,101,114,105,101,115,46,108,101,110,103,116,104,41,32,62,32,49,41,41,32,114,101,116,117,114,110,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,44,32,106,44,32,115,48,44,32,115,49,32,61,32,115,101,114,105,101,115,91,111,114,100,101,114,91,48,93,93,44,32,110,44,32,109,32,61,32,115,49,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,115,48,32,61,32,115,49,44,32,115,49,32,61,32,115,101,114,105,101,115,91,111,114,100,101,114,91,105,93,93,59,92,110,32,32,32,32,102,111,114,32,40,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,115,49,91,106,93,91,49,93,32,43,61,32,115,49,91,106,93,91,48,93,32,61,32,105,115,78,97,78,40,115,48,91,106,93,91,49,93,41,32,63,32,115,48,91,106,93,91,48,93,32,58,32,115,48,91,106,93,91,49,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,110,111,110,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,115,105,108,104,111,117,101,116,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,115,105,108,104,111,117,101,116,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,110,111,110,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,114,105,101,115,44,32,111,114,100,101,114,41,32,123,92,110,32,32,105,102,32,40,33,40,40,110,32,61,32,115,101,114,105,101,115,46,108,101,110,103,116,104,41,32,62,32,48,41,41,32,114,101,116,117,114,110,59,92,110,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,44,32,115,48,32,61,32,115,101,114,105,101,115,91,111,114,100,101,114,91,48,93,93,44,32,110,44,32,109,32,61,32,115,48,46,108,101,110,103,116,104,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,121,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,121,32,43,61,32,115,101,114,105,101,115,91,105,93,91,106,93,91,49,93,32,124,124,32,48,59,92,110,32,32,32,32,115,48,91,106,93,91,49,93,32,43,61,32,115,48,91,106,93,91,48,93,32,61,32,45,121,32,47,32,50,59,92,110,32,32,125,92,110,32,32,40,48,44,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,101,114,105,101,115,44,32,111,114,100,101,114,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,115,105,108,104,111,117,101,116,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,119,105,103,103,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,119,105,103,103,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,110,111,110,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,114,105,101,115,44,32,111,114,100,101,114,41,32,123,92,110,32,32,105,102,32,40,33,40,40,110,32,61,32,115,101,114,105,101,115,46,108,101,110,103,116,104,41,32,62,32,48,41,32,124,124,32,33,40,40,109,32,61,32,40,115,48,32,61,32,115,101,114,105,101,115,91,111,114,100,101,114,91,48,93,93,41,46,108,101,110,103,116,104,41,32,62,32,48,41,41,32,114,101,116,117,114,110,59,92,110,32,32,102,111,114,32,40,118,97,114,32,121,32,61,32,48,44,32,106,32,61,32,49,44,32,115,48,44,32,109,44,32,110,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,115,49,32,61,32,48,44,32,115,50,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,105,32,61,32,115,101,114,105,101,115,91,111,114,100,101,114,91,105,93,93,44,92,110,32,32,32,32,32,32,32,32,32,32,115,105,106,48,32,61,32,115,105,91,106,93,91,49,93,32,124,124,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,115,105,106,49,32,61,32,115,105,91,106,32,45,32,49,93,91,49,93,32,124,124,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,115,51,32,61,32,40,115,105,106,48,32,45,32,115,105,106,49,41,32,47,32,50,59,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,32,61,32,48,59,32,107,32,60,32,105,59,32,43,43,107,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,107,32,61,32,115,101,114,105,101,115,91,111,114,100,101,114,91,107,93,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,107,106,48,32,61,32,115,107,91,106,93,91,49,93,32,124,124,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,107,106,49,32,61,32,115,107,91,106,32,45,32,49,93,91,49,93,32,124,124,32,48,59,92,110,32,32,32,32,32,32,32,32,115,51,32,43,61,32,115,107,106,48,32,45,32,115,107,106,49,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,49,32,43,61,32,115,105,106,48,44,32,115,50,32,43,61,32,115,51,32,42,32,115,105,106,48,59,92,110,32,32,32,32,125,92,110,32,32,32,32,115,48,91,106,32,45,32,49,93,91,49,93,32,43,61,32,115,48,91,106,32,45,32,49,93,91,48,93,32,61,32,121,59,92,110,32,32,32,32,105,102,32,40,115,49,41,32,121,32,45,61,32,115,50,32,47,32,115,49,59,92,110,32,32,125,92,110,32,32,115,48,91,106,32,45,32,49,93,91,49,93,32,43,61,32,115,48,91,106,32,45,32,49,93,91,48,93,32,61,32,121,59,92,110,32,32,40,48,44,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,101,114,105,101,115,44,32,111,114,100,101,114,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,119,105,103,103,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,97,112,112,101,97,114,97,110,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,97,112,112,101,97,114,97,110,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,110,111,110,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,114,105,101,115,41,32,123,92,110,32,32,118,97,114,32,112,101,97,107,115,32,61,32,115,101,114,105,101,115,46,109,97,112,40,112,101,97,107,41,59,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,101,114,105,101,115,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,97,44,32,98,41,32,123,32,114,101,116,117,114,110,32,112,101,97,107,115,91,97,93,32,45,32,112,101,97,107,115,91,98,93,59,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,101,97,107,40,115,101,114,105,101,115,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,45,49,44,32,106,32,61,32,48,44,32,110,32,61,32,115,101,114,105,101,115,46,108,101,110,103,116,104,44,32,118,105,44,32,118,106,32,61,32,45,73,110,102,105,110,105,116,121,59,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,105,102,32,40,40,118,105,32,61,32,43,115,101,114,105,101,115,91,105,93,91,49,93,41,32,62,32,118,106,41,32,118,106,32,61,32,118,105,44,32,106,32,61,32,105,59,92,110,32,32,114,101,116,117,114,110,32,106,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,97,112,112,101,97,114,97,110,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,97,115,99,101,110,100,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,97,115,99,101,110,100,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,117,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,117,109,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,110,111,110,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,114,105,101,115,41,32,123,92,110,32,32,118,97,114,32,115,117,109,115,32,61,32,115,101,114,105,101,115,46,109,97,112,40,115,117,109,41,59,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,101,114,105,101,115,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,97,44,32,98,41,32,123,32,114,101,116,117,114,110,32,115,117,109,115,91,97,93,32,45,32,115,117,109,115,91,98,93,59,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,117,109,40,115,101,114,105,101,115,41,32,123,92,110,32,32,118,97,114,32,115,32,61,32,48,44,32,105,32,61,32,45,49,44,32,110,32,61,32,115,101,114,105,101,115,46,108,101,110,103,116,104,44,32,118,59,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,105,102,32,40,118,32,61,32,43,115,101,114,105,101,115,91,105,93,91,49,93,41,32,115,32,43,61,32,118,59,92,110,32,32,114,101,116,117,114,110,32,115,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,97,115,99,101,110,100,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,100,101,115,99,101,110,100,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,100,101,115,99,101,110,100,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,115,99,101,110,100,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,115,99,101,110,100,105,110,103,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,97,115,99,101,110,100,105,110,103,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,114,105,101,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,97,115,99,101,110,100,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,101,114,105,101,115,41,46,114,101,118,101,114,115,101,40,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,100,101,115,99,101,110,100,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,105,110,115,105,100,101,79,117,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,105,110,115,105,100,101,79,117,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,112,112,101,97,114,97,110,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,112,112,101,97,114,97,110,99,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,97,112,112,101,97,114,97,110,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,115,99,101,110,100,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,115,99,101,110,100,105,110,103,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,97,115,99,101,110,100,105,110,103,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,114,105,101,115,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,115,101,114,105,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,105,44,92,110,32,32,32,32,32,32,106,44,92,110,32,32,32,32,32,32,115,117,109,115,32,61,32,115,101,114,105,101,115,46,109,97,112,40,95,97,115,99,101,110,100,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,117,109,41,44,92,110,32,32,32,32,32,32,111,114,100,101,114,32,61,32,40,48,44,95,97,112,112,101,97,114,97,110,99,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,101,114,105,101,115,41,44,92,110,32,32,32,32,32,32,116,111,112,32,61,32,48,44,92,110,32,32,32,32,32,32,98,111,116,116,111,109,32,61,32,48,44,92,110,32,32,32,32,32,32,116,111,112,115,32,61,32,91,93,44,92,110,32,32,32,32,32,32,98,111,116,116,111,109,115,32,61,32,91,93,59,92,110,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,106,32,61,32,111,114,100,101,114,91,105,93,59,92,110,32,32,32,32,105,102,32,40,116,111,112,32,60,32,98,111,116,116,111,109,41,32,123,92,110,32,32,32,32,32,32,116,111,112,32,43,61,32,115,117,109,115,91,106,93,59,92,110,32,32,32,32,32,32,116,111,112,115,46,112,117,115,104,40,106,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,98,111,116,116,111,109,32,43,61,32,115,117,109,115,91,106,93,59,92,110,32,32,32,32,32,32,98,111,116,116,111,109,115,46,112,117,115,104,40,106,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,98,111,116,116,111,109,115,46,114,101,118,101,114,115,101,40,41,46,99,111,110,99,97,116,40,116,111,112,115,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,105,110,115,105,100,101,79,117,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,110,111,110,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,110,111,110,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,114,105,101,115,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,115,101,114,105,101,115,46,108,101,110,103,116,104,44,32,111,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,59,92,110,32,32,119,104,105,108,101,32,40,45,45,110,32,62,61,32,48,41,32,111,91,110,93,32,61,32,110,59,92,110,32,32,114,101,116,117,114,110,32,111,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,110,111,110,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,114,101,118,101,114,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,114,101,118,101,114,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,110,111,110,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,114,105,101,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,101,114,105,101,115,41,46,114,101,118,101,114,115,101,40,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,114,101,118,101,114,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,112,105,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,112,105,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,115,99,101,110,100,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,115,99,101,110,100,105,110,103,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,100,101,115,99,101,110,100,105,110,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,100,101,110,116,105,116,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,100,101,110,116,105,116,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,105,100,101,110,116,105,116,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,118,97,108,117,101,32,61,32,95,105,100,101,110,116,105,116,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,32,32,115,111,114,116,86,97,108,117,101,115,32,61,32,95,100,101,115,99,101,110,100,105,110,103,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,32,32,115,111,114,116,32,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,115,116,97,114,116,65,110,103,108,101,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,48,41,44,92,110,32,32,32,32,32,32,101,110,100,65,110,103,108,101,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,116,97,117,41,44,92,110,32,32,32,32,32,32,112,97,100,65,110,103,108,101,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,48,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,105,101,40,100,97,116,97,41,32,123,92,110,32,32,32,32,118,97,114,32,105,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,100,97,116,97,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,106,44,92,110,32,32,32,32,32,32,32,32,107,44,92,110,32,32,32,32,32,32,32,32,115,117,109,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,92,110,32,32,32,32,32,32,32,32,97,114,99,115,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,92,110,32,32,32,32,32,32,32,32,97,48,32,61,32,43,115,116,97,114,116,65,110,103,108,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,44,92,110,32,32,32,32,32,32,32,32,100,97,32,61,32,77,97,116,104,46,109,105,110,40,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,116,97,117,44,32,77,97,116,104,46,109,97,120,40,45,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,116,97,117,44,32,101,110,100,65,110,103,108,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,45,32,97,48,41,41,44,92,110,32,32,32,32,32,32,32,32,97,49,44,92,110,32,32,32,32,32,32,32,32,112,32,61,32,77,97,116,104,46,109,105,110,40,77,97,116,104,46,97,98,115,40,100,97,41,32,47,32,110,44,32,112,97,100,65,110,103,108,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,44,92,110,32,32,32,32,32,32,32,32,112,97,32,61,32,112,32,42,32,40,100,97,32,60,32,48,32,63,32,45,49,32,58,32,49,41,44,92,110,32,32,32,32,32,32,32,32,118,59,92,110,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,118,32,61,32,97,114,99,115,91,105,110,100,101,120,91,105,93,32,61,32,105,93,32,61,32,43,118,97,108,117,101,40,100,97,116,97,91,105,93,44,32,105,44,32,100,97,116,97,41,41,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,115,117,109,32,43,61,32,118,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,79,112,116,105,111,110,97,108,108,121,32,115,111,114,116,32,116,104,101,32,97,114,99,115,32,98,121,32,112,114,101,118,105,111,117,115,108,121,45,99,111,109,112,117,116,101,100,32,118,97,108,117,101,115,32,111,114,32,98,121,32,100,97,116,97,46,92,110,32,32,32,32,105,102,32,40,115,111,114,116,86,97,108,117,101,115,32,33,61,32,110,117,108,108,41,32,105,110,100,101,120,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,105,44,32,106,41,32,123,32,114,101,116,117,114,110,32,115,111,114,116,86,97,108,117,101,115,40,97,114,99,115,91,105,93,44,32,97,114,99,115,91,106,93,41,59,32,125,41,59,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,115,111,114,116,32,33,61,32,110,117,108,108,41,32,105,110,100,101,120,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,105,44,32,106,41,32,123,32,114,101,116,117,114,110,32,115,111,114,116,40,100,97,116,97,91,105,93,44,32,100,97,116,97,91,106,93,41,59,32,125,41,59,92,110,92,110,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,97,114,99,115,33,32,84,104,101,121,32,97,114,101,32,115,116,111,114,101,100,32,105,110,32,116,104,101,32,111,114,105,103,105,110,97,108,32,100,97,116,97,39,115,32,111,114,100,101,114,46,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,44,32,107,32,61,32,115,117,109,32,63,32,40,100,97,32,45,32,110,32,42,32,112,97,41,32,47,32,115,117,109,32,58,32,48,59,32,105,32,60,32,110,59,32,43,43,105,44,32,97,48,32,61,32,97,49,41,32,123,92,110,32,32,32,32,32,32,106,32,61,32,105,110,100,101,120,91,105,93,44,32,118,32,61,32,97,114,99,115,91,106,93,44,32,97,49,32,61,32,97,48,32,43,32,40,118,32,62,32,48,32,63,32,118,32,42,32,107,32,58,32,48,41,32,43,32,112,97,44,32,97,114,99,115,91,106,93,32,61,32,123,92,110,32,32,32,32,32,32,32,32,100,97,116,97,58,32,100,97,116,97,91,106,93,44,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,105,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,118,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,65,110,103,108,101,58,32,97,48,44,92,110,32,32,32,32,32,32,32,32,101,110,100,65,110,103,108,101,58,32,97,49,44,92,110,32,32,32,32,32,32,32,32,112,97,100,65,110,103,108,101,58,32,112,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,99,115,59,92,110,32,32,125,92,110,92,110,32,32,112,105,101,46,118,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,118,97,108,117,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,112,105,101,41,32,58,32,118,97,108,117,101,59,92,110,32,32,125,59,92,110,92,110,32,32,112,105,101,46,115,111,114,116,86,97,108,117,101,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,111,114,116,86,97,108,117,101,115,32,61,32,95,44,32,115,111,114,116,32,61,32,110,117,108,108,44,32,112,105,101,41,32,58,32,115,111,114,116,86,97,108,117,101,115,59,92,110,32,32,125,59,92,110,92,110,32,32,112,105,101,46,115,111,114,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,111,114,116,32,61,32,95,44,32,115,111,114,116,86,97,108,117,101,115,32,61,32,110,117,108,108,44,32,112,105,101,41,32,58,32,115,111,114,116,59,92,110,32,32,125,59,92,110,92,110,32,32,112,105,101,46,115,116,97,114,116,65,110,103,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,116,97,114,116,65,110,103,108,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,112,105,101,41,32,58,32,115,116,97,114,116,65,110,103,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,112,105,101,46,101,110,100,65,110,103,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,101,110,100,65,110,103,108,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,112,105,101,41,32,58,32,101,110,100,65,110,103,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,112,105,101,46,112,97,100,65,110,103,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,112,97,100,65,110,103,108,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,112,105,101,41,32,58,32,112,97,100,65,110,103,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,112,105,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,112,105,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,112,111,105,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,112,111,105,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,121,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,120,40,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,91,48,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,121,40,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,91,49,93,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,112,111,105,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,112,111,105,110,116,82,97,100,105,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,112,111,105,110,116,82,97,100,105,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,44,32,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,91,40,121,32,61,32,43,121,41,32,42,32,77,97,116,104,46,99,111,115,40,120,32,45,61,32,77,97,116,104,46,80,73,32,47,32,50,41,44,32,121,32,42,32,77,97,116,104,46,115,105,110,40,120,41,93,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,112,111,105,110,116,82,97,100,105,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,116,97,99,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,116,97,99,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,114,114,97,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,97,114,114,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,102,102,115,101,116,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,102,102,115,101,116,47,110,111,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,102,102,115,101,116,47,110,111,110,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,114,100,101,114,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,114,100,101,114,47,110,111,110,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,111,114,100,101,114,47,110,111,110,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,97,99,107,86,97,108,117,101,40,100,44,32,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,91,107,101,121,93,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,91,93,41,44,92,110,32,32,32,32,32,32,111,114,100,101,114,32,61,32,95,111,114,100,101,114,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,32,32,111,102,102,115,101,116,32,61,32,95,111,102,102,115,101,116,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,115,116,97,99,107,86,97,108,117,101,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,116,97,99,107,40,100,97,116,97,41,32,123,92,110,32,32,32,32,118,97,114,32,107,122,32,61,32,107,101,121,115,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,44,92,110,32,32,32,32,32,32,32,32,105,44,92,110,32,32,32,32,32,32,32,32,109,32,61,32,100,97,116,97,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,107,122,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,115,122,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,92,110,32,32,32,32,32,32,32,32,111,122,59,92,110,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,105,32,61,32,107,122,91,105,93,44,32,115,105,32,61,32,115,122,91,105,93,32,61,32,110,101,119,32,65,114,114,97,121,40,109,41,44,32,106,32,61,32,48,44,32,115,105,106,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,32,32,115,105,91,106,93,32,61,32,115,105,106,32,61,32,91,48,44,32,43,118,97,108,117,101,40,100,97,116,97,91,106,93,44,32,107,105,44,32,106,44,32,100,97,116,97,41,93,59,92,110,32,32,32,32,32,32,32,32,115,105,106,46,100,97,116,97,32,61,32,100,97,116,97,91,106,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,105,46,107,101,121,32,61,32,107,105,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,44,32,111,122,32,61,32,111,114,100,101,114,40,115,122,41,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,115,122,91,111,122,91,105,93,93,46,105,110,100,101,120,32,61,32,105,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,111,102,102,115,101,116,40,115,122,44,32,111,122,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,122,59,92,110,32,32,125,92,110,92,110,32,32,115,116,97,99,107,46,107,101,121,115,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,107,101,121,115,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,97,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,108,105,99,101,46,99,97,108,108,40,95,41,41,44,32,115,116,97,99,107,41,32,58,32,107,101,121,115,59,92,110,32,32,125,59,92,110,92,110,32,32,115,116,97,99,107,46,118,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,118,97,108,117,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,115,116,97,99,107,41,32,58,32,118,97,108,117,101,59,92,110,32,32,125,59,92,110,92,110,32,32,115,116,97,99,107,46,111,114,100,101,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,111,114,100,101,114,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,95,111,114,100,101,114,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,58,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,97,114,114,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,108,105,99,101,46,99,97,108,108,40,95,41,41,44,32,115,116,97,99,107,41,32,58,32,111,114,100,101,114,59,92,110,32,32,125,59,92,110,92,110,32,32,115,116,97,99,107,46,111,102,102,115,101,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,111,102,102,115,101,116,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,95,111,102,102,115,101,116,95,110,111,110,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,58,32,95,44,32,115,116,97,99,107,41,32,58,32,111,102,102,115,101,116,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,115,116,97,99,107,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,116,97,99,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,121,109,98,111,108,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,112,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,112,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,97,116,104,47,115,114,99,47,112,97,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,98,111,108,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,98,111,108,47,99,105,114,99,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,99,105,114,99,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,98,111,108,95,99,114,111,115,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,98,111,108,47,99,114,111,115,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,99,114,111,115,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,98,111,108,95,100,105,97,109,111,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,98,111,108,47,100,105,97,109,111,110,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,100,105,97,109,111,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,98,111,108,95,115,116,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,98,111,108,47,115,116,97,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,115,116,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,98,111,108,95,115,113,117,97,114,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,98,111,108,47,115,113,117,97,114,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,115,113,117,97,114,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,98,111,108,95,116,114,105,97,110,103,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,98,111,108,47,116,114,105,97,110,103,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,116,114,105,97,110,103,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,121,109,98,111,108,95,119,121,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,121,109,98,111,108,47,119,121,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,119,121,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,115,121,109,98,111,108,115,32,61,32,91,92,110,32,32,95,115,121,109,98,111,108,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,115,121,109,98,111,108,95,99,114,111,115,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,115,121,109,98,111,108,95,100,105,97,109,111,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,115,121,109,98,111,108,95,115,113,117,97,114,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,115,121,109,98,111,108,95,115,116,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,115,121,109,98,111,108,95,116,114,105,97,110,103,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,115,121,109,98,111,108,95,119,121,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,93,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,116,121,112,101,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,115,121,109,98,111,108,95,99,105,114,99,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,44,92,110,32,32,32,32,32,32,115,105,122,101,32,61,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,54,52,41,44,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,32,61,32,110,117,108,108,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,121,109,98,111,108,40,41,32,123,92,110,32,32,32,32,118,97,114,32,98,117,102,102,101,114,59,92,110,32,32,32,32,105,102,32,40,33,99,111,110,116,101,120,116,41,32,99,111,110,116,101,120,116,32,61,32,98,117,102,102,101,114,32,61,32,40,48,44,100,51,95,112,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,32,32,116,121,112,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,46,100,114,97,119,40,99,111,110,116,101,120,116,44,32,43,115,105,122,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,59,92,110,32,32,32,32,105,102,32,40,98,117,102,102,101,114,41,32,114,101,116,117,114,110,32,99,111,110,116,101,120,116,32,61,32,110,117,108,108,44,32,98,117,102,102,101,114,32,43,32,92,34,92,34,32,124,124,32,110,117,108,108,59,92,110,32,32,125,92,110,92,110,32,32,115,121,109,98,111,108,46,116,121,112,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,121,112,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,95,41,44,32,115,121,109,98,111,108,41,32,58,32,116,121,112,101,59,92,110,32,32,125,59,92,110,92,110,32,32,115,121,109,98,111,108,46,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,105,122,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,115,121,109,98,111,108,41,32,58,32,115,105,122,101,59,92,110,32,32,125,59,92,110,92,110,32,32,115,121,109,98,111,108,46,99,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,99,111,110,116,101,120,116,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,95,44,32,115,121,109,98,111,108,41,32,58,32,99,111,110,116,101,120,116,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,115,121,109,98,111,108,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,99,105,114,99,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,99,105,114,99,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,100,114,97,119,58,32,102,117,110,99,116,105,111,110,40,99,111,110,116,101,120,116,44,32,115,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,114,32,61,32,77,97,116,104,46,115,113,114,116,40,115,105,122,101,32,47,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,114,44,32,48,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,97,114,99,40,48,44,32,48,44,32,114,44,32,48,44,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,99,105,114,99,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,99,114,111,115,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,99,114,111,115,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,100,114,97,119,58,32,102,117,110,99,116,105,111,110,40,99,111,110,116,101,120,116,44,32,115,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,114,32,61,32,77,97,116,104,46,115,113,114,116,40,115,105,122,101,32,47,32,53,41,32,47,32,50,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,45,51,32,42,32,114,44,32,45,114,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,45,114,44,32,45,114,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,45,114,44,32,45,51,32,42,32,114,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,114,44,32,45,51,32,42,32,114,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,114,44,32,45,114,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,51,32,42,32,114,44,32,45,114,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,51,32,42,32,114,44,32,114,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,114,44,32,114,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,114,44,32,51,32,42,32,114,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,45,114,44,32,51,32,42,32,114,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,45,114,44,32,114,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,45,51,32,42,32,114,44,32,114,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,99,114,111,115,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,100,105,97,109,111,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,100,105,97,109,111,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,118,97,114,32,116,97,110,51,48,32,61,32,77,97,116,104,46,115,113,114,116,40,49,32,47,32,51,41,44,92,110,32,32,32,32,116,97,110,51,48,95,50,32,61,32,116,97,110,51,48,32,42,32,50,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,100,114,97,119,58,32,102,117,110,99,116,105,111,110,40,99,111,110,116,101,120,116,44,32,115,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,121,32,61,32,77,97,116,104,46,115,113,114,116,40,115,105,122,101,32,47,32,116,97,110,51,48,95,50,41,44,92,110,32,32,32,32,32,32,32,32,120,32,61,32,121,32,42,32,116,97,110,51,48,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,48,44,32,45,121,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,44,32,48,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,48,44,32,121,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,45,120,44,32,48,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,100,105,97,109,111,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,115,113,117,97,114,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,115,113,117,97,114,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,100,114,97,119,58,32,102,117,110,99,116,105,111,110,40,99,111,110,116,101,120,116,44,32,115,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,119,32,61,32,77,97,116,104,46,115,113,114,116,40,115,105,122,101,41,44,92,110,32,32,32,32,32,32,32,32,120,32,61,32,45,119,32,47,32,50,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,114,101,99,116,40,120,44,32,120,44,32,119,44,32,119,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,115,113,117,97,114,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,115,116,97,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,115,116,97,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,109,97,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,109,97,116,104,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,107,97,32,61,32,48,46,56,57,48,56,49,51,48,57,49,53,50,57,50,56,53,50,50,56,49,48,44,92,110,32,32,32,32,107,114,32,61,32,77,97,116,104,46,115,105,110,40,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,32,47,32,49,48,41,32,47,32,77,97,116,104,46,115,105,110,40,55,32,42,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,112,105,32,47,32,49,48,41,44,92,110,32,32,32,32,107,120,32,61,32,77,97,116,104,46,115,105,110,40,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,32,47,32,49,48,41,32,42,32,107,114,44,92,110,32,32,32,32,107,121,32,61,32,45,77,97,116,104,46,99,111,115,40,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,32,47,32,49,48,41,32,42,32,107,114,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,100,114,97,119,58,32,102,117,110,99,116,105,111,110,40,99,111,110,116,101,120,116,44,32,115,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,114,32,61,32,77,97,116,104,46,115,113,114,116,40,115,105,122,101,32,42,32,107,97,41,44,92,110,32,32,32,32,32,32,32,32,120,32,61,32,107,120,32,42,32,114,44,92,110,32,32,32,32,32,32,32,32,121,32,61,32,107,121,32,42,32,114,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,48,44,32,45,114,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,44,32,121,41,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,53,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,32,61,32,95,109,97,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,97,117,32,42,32,105,32,47,32,53,44,92,110,32,32,32,32,32,32,32,32,32,32,99,32,61,32,77,97,116,104,46,99,111,115,40,97,41,44,92,110,32,32,32,32,32,32,32,32,32,32,115,32,61,32,77,97,116,104,46,115,105,110,40,97,41,59,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,115,32,42,32,114,44,32,45,99,32,42,32,114,41,59,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,99,32,42,32,120,32,45,32,115,32,42,32,121,44,32,115,32,42,32,120,32,43,32,99,32,42,32,121,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,115,116,97,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,116,114,105,97,110,103,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,116,114,105,97,110,103,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,118,97,114,32,115,113,114,116,51,32,61,32,77,97,116,104,46,115,113,114,116,40,51,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,100,114,97,119,58,32,102,117,110,99,116,105,111,110,40,99,111,110,116,101,120,116,44,32,115,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,121,32,61,32,45,77,97,116,104,46,115,113,114,116,40,115,105,122,101,32,47,32,40,115,113,114,116,51,32,42,32,51,41,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,48,44,32,121,32,42,32,50,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,45,115,113,114,116,51,32,42,32,121,44,32,45,121,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,115,113,114,116,51,32,42,32,121,44,32,45,121,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,116,114,105,97,110,103,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,119,121,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,119,121,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,118,97,114,32,99,32,61,32,45,48,46,53,44,92,110,32,32,32,32,115,32,61,32,77,97,116,104,46,115,113,114,116,40,51,41,32,47,32,50,44,92,110,32,32,32,32,107,32,61,32,49,32,47,32,77,97,116,104,46,115,113,114,116,40,49,50,41,44,92,110,32,32,32,32,97,32,61,32,40,107,32,47,32,50,32,43,32,49,41,32,42,32,51,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,100,114,97,119,58,32,102,117,110,99,116,105,111,110,40,99,111,110,116,101,120,116,44,32,115,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,114,32,61,32,77,97,116,104,46,115,113,114,116,40,115,105,122,101,32,47,32,97,41,44,92,110,32,32,32,32,32,32,32,32,120,48,32,61,32,114,32,47,32,50,44,92,110,32,32,32,32,32,32,32,32,121,48,32,61,32,114,32,42,32,107,44,92,110,32,32,32,32,32,32,32,32,120,49,32,61,32,120,48,44,92,110,32,32,32,32,32,32,32,32,121,49,32,61,32,114,32,42,32,107,32,43,32,114,44,92,110,32,32,32,32,32,32,32,32,120,50,32,61,32,45,120,49,44,92,110,32,32,32,32,32,32,32,32,121,50,32,61,32,121,49,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,120,48,44,32,121,48,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,49,44,32,121,49,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,120,50,44,32,121,50,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,99,32,42,32,120,48,32,45,32,115,32,42,32,121,48,44,32,115,32,42,32,120,48,32,43,32,99,32,42,32,121,48,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,99,32,42,32,120,49,32,45,32,115,32,42,32,121,49,44,32,115,32,42,32,120,49,32,43,32,99,32,42,32,121,49,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,99,32,42,32,120,50,32,45,32,115,32,42,32,121,50,44,32,115,32,42,32,120,50,32,43,32,99,32,42,32,121,50,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,99,32,42,32,120,48,32,43,32,115,32,42,32,121,48,44,32,99,32,42,32,121,48,32,45,32,115,32,42,32,120,48,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,99,32,42,32,120,49,32,43,32,115,32,42,32,121,49,44,32,99,32,42,32,121,49,32,45,32,115,32,42,32,120,49,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,99,32,42,32,120,50,32,43,32,115,32,42,32,121,50,44,32,99,32,42,32,121,50,32,45,32,115,32,42,32,120,50,41,59,92,110,32,32,32,32,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,115,121,109,98,111,108,47,119,121,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,101,102,97,117,108,116,76,111,99,97,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,105,109,101,70,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,80,97,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,105,109,101,80,97,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,70,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,80,97,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,80,97,114,115,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,111,99,97,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,108,111,99,97,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,108,111,99,97,108,101,59,92,110,118,97,114,32,116,105,109,101,70,111,114,109,97,116,59,92,110,118,97,114,32,116,105,109,101,80,97,114,115,101,59,92,110,118,97,114,32,117,116,99,70,111,114,109,97,116,59,92,110,118,97,114,32,117,116,99,80,97,114,115,101,59,92,110,92,110,100,101,102,97,117,108,116,76,111,99,97,108,101,40,123,92,110,32,32,100,97,116,101,84,105,109,101,58,32,92,34,37,120,44,32,37,88,92,34,44,92,110,32,32,100,97,116,101,58,32,92,34,37,45,109,47,37,45,100,47,37,89,92,34,44,92,110,32,32,116,105,109,101,58,32,92,34,37,45,73,58,37,77,58,37,83,32,37,112,92,34,44,92,110,32,32,112,101,114,105,111,100,115,58,32,91,92,34,65,77,92,34,44,32,92,34,80,77,92,34,93,44,92,110,32,32,100,97,121,115,58,32,91,92,34,83,117,110,100,97,121,92,34,44,32,92,34,77,111,110,100,97,121,92,34,44,32,92,34,84,117,101,115,100,97,121,92,34,44,32,92,34,87,101,100,110,101,115,100,97,121,92,34,44,32,92,34,84,104,117,114,115,100,97,121,92,34,44,32,92,34,70,114,105,100,97,121,92,34,44,32,92,34,83,97,116,117,114,100,97,121,92,34,93,44,92,110,32,32,115,104,111,114,116,68,97,121,115,58,32,91,92,34,83,117,110,92,34,44,32,92,34,77,111,110,92,34,44,32,92,34,84,117,101,92,34,44,32,92,34,87,101,100,92,34,44,32,92,34,84,104,117,92,34,44,32,92,34,70,114,105,92,34,44,32,92,34,83,97,116,92,34,93,44,92,110,32,32,109,111,110,116,104,115,58,32,91,92,34,74,97,110,117,97,114,121,92,34,44,32,92,34,70,101,98,114,117,97,114,121,92,34,44,32,92,34,77,97,114,99,104,92,34,44,32,92,34,65,112,114,105,108,92,34,44,32,92,34,77,97,121,92,34,44,32,92,34,74,117,110,101,92,34,44,32,92,34,74,117,108,121,92,34,44,32,92,34,65,117,103,117,115,116,92,34,44,32,92,34,83,101,112,116,101,109,98,101,114,92,34,44,32,92,34,79,99,116,111,98,101,114,92,34,44,32,92,34,78,111,118,101,109,98,101,114,92,34,44,32,92,34,68,101,99,101,109,98,101,114,92,34,93,44,92,110,32,32,115,104,111,114,116,77,111,110,116,104,115,58,32,91,92,34,74,97,110,92,34,44,32,92,34,70,101,98,92,34,44,32,92,34,77,97,114,92,34,44,32,92,34,65,112,114,92,34,44,32,92,34,77,97,121,92,34,44,32,92,34,74,117,110,92,34,44,32,92,34,74,117,108,92,34,44,32,92,34,65,117,103,92,34,44,32,92,34,83,101,112,92,34,44,32,92,34,79,99,116,92,34,44,32,92,34,78,111,118,92,34,44,32,92,34,68,101,99,92,34,93,92,110,125,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,76,111,99,97,108,101,40,100,101,102,105,110,105,116,105,111,110,41,32,123,92,110,32,32,108,111,99,97,108,101,32,61,32,40,48,44,95,108,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,101,102,105,110,105,116,105,111,110,41,59,92,110,32,32,116,105,109,101,70,111,114,109,97,116,32,61,32,108,111,99,97,108,101,46,102,111,114,109,97,116,59,92,110,32,32,116,105,109,101,80,97,114,115,101,32,61,32,108,111,99,97,108,101,46,112,97,114,115,101,59,92,110,32,32,117,116,99,70,111,114,109,97,116,32,61,32,108,111,99,97,108,101,46,117,116,99,70,111,114,109,97,116,59,92,110,32,32,117,116,99,80,97,114,115,101,32,61,32,108,111,99,97,108,101,46,117,116,99,80,97,114,115,101,59,92,110,32,32,114,101,116,117,114,110,32,108,111,99,97,108,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,111,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,115,111,70,111,114,109,97,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,111,80,97,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,115,111,80,97,114,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,101,102,97,117,108,116,76,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,105,109,101,70,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,70,111,114,109,97,116,68,101,102,97,117,108,116,76,111,99,97,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,101,102,97,117,108,116,76,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,70,111,114,109,97,116,76,111,99,97,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,108,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,80,97,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,101,102,97,117,108,116,76,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,105,109,101,80,97,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,101,102,97,117,108,116,76,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,116,99,70,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,80,97,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,101,102,97,117,108,116,76,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,116,99,80,97,114,115,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,102,97,117,108,116,76,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,111,99,97,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,108,111,99,97,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,115,111,70,111,114,109,97,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,115,111,70,111,114,109,97,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,105,115,111,70,111,114,109,97,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,115,111,80,97,114,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,115,111,80,97,114,115,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,105,115,111,80,97,114,115,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,105,115,111,70,111,114,109,97,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,105,115,111,70,111,114,109,97,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,111,83,112,101,99,105,102,105,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,111,83,112,101,99,105,102,105,101,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,102,97,117,108,116,76,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,105,115,111,83,112,101,99,105,102,105,101,114,32,61,32,92,34,37,89,45,37,109,45,37,100,84,37,72,58,37,77,58,37,83,46,37,76,90,92,34,59,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,73,115,111,78,97,116,105,118,101,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,46,116,111,73,83,79,83,116,114,105,110,103,40,41,59,92,110,125,92,110,92,110,118,97,114,32,102,111,114,109,97,116,73,115,111,32,61,32,68,97,116,101,46,112,114,111,116,111,116,121,112,101,46,116,111,73,83,79,83,116,114,105,110,103,92,110,32,32,32,32,63,32,102,111,114,109,97,116,73,115,111,78,97,116,105,118,101,92,110,32,32,32,32,58,32,40,48,44,95,100,101,102,97,117,108,116,76,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,116,99,70,111,114,109,97,116,41,40,105,115,111,83,112,101,99,105,102,105,101,114,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,102,111,114,109,97,116,73,115,111,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,105,115,111,70,111,114,109,97,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,105,115,111,80,97,114,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,105,115,111,80,97,114,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,115,111,70,111,114,109,97,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,115,111,70,111,114,109,97,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,105,115,111,70,111,114,109,97,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,102,97,117,108,116,76,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,100,101,102,97,117,108,116,76,111,99,97,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,73,115,111,78,97,116,105,118,101,40,115,116,114,105,110,103,41,32,123,92,110,32,32,118,97,114,32,100,97,116,101,32,61,32,110,101,119,32,68,97,116,101,40,115,116,114,105,110,103,41,59,92,110,32,32,114,101,116,117,114,110,32,105,115,78,97,78,40,100,97,116,101,41,32,63,32,110,117,108,108,32,58,32,100,97,116,101,59,92,110,125,92,110,92,110,118,97,114,32,112,97,114,115,101,73,115,111,32,61,32,43,110,101,119,32,68,97,116,101,40,92,34,50,48,48,48,45,48,49,45,48,49,84,48,48,58,48,48,58,48,48,46,48,48,48,90,92,34,41,92,110,32,32,32,32,63,32,112,97,114,115,101,73,115,111,78,97,116,105,118,101,92,110,32,32,32,32,58,32,40,48,44,95,100,101,102,97,117,108,116,76,111,99,97,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,116,99,80,97,114,115,101,41,40,95,105,115,111,70,111,114,109,97,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,115,111,83,112,101,99,105,102,105,101,114,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,112,97,114,115,101,73,115,111,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,105,115,111,80,97,114,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,108,111,99,97,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,108,111,99,97,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,97,116,76,111,99,97,108,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,87,101,101,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,68,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,119,101,101,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,121,101,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,89,101,97,114,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,108,111,99,97,108,68,97,116,101,40,100,41,32,123,92,110,32,32,105,102,32,40,48,32,60,61,32,100,46,121,32,38,38,32,100,46,121,32,60,32,49,48,48,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,116,101,32,61,32,110,101,119,32,68,97,116,101,40,45,49,44,32,100,46,109,44,32,100,46,100,44,32,100,46,72,44,32,100,46,77,44,32,100,46,83,44,32,100,46,76,41,59,92,110,32,32,32,32,100,97,116,101,46,115,101,116,70,117,108,108,89,101,97,114,40,100,46,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,100,97,116,101,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,100,46,121,44,32,100,46,109,44,32,100,46,100,44,32,100,46,72,44,32,100,46,77,44,32,100,46,83,44,32,100,46,76,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,117,116,99,68,97,116,101,40,100,41,32,123,92,110,32,32,105,102,32,40,48,32,60,61,32,100,46,121,32,38,38,32,100,46,121,32,60,32,49,48,48,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,116,101,32,61,32,110,101,119,32,68,97,116,101,40,68,97,116,101,46,85,84,67,40,45,49,44,32,100,46,109,44,32,100,46,100,44,32,100,46,72,44,32,100,46,77,44,32,100,46,83,44,32,100,46,76,41,41,59,92,110,32,32,32,32,100,97,116,101,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,100,46,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,100,97,116,101,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,68,97,116,101,46,85,84,67,40,100,46,121,44,32,100,46,109,44,32,100,46,100,44,32,100,46,72,44,32,100,46,77,44,32,100,46,83,44,32,100,46,76,41,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,101,119,68,97,116,101,40,121,44,32,109,44,32,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,121,58,32,121,44,32,109,58,32,109,44,32,100,58,32,100,44,32,72,58,32,48,44,32,77,58,32,48,44,32,83,58,32,48,44,32,76,58,32,48,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,76,111,99,97,108,101,40,108,111,99,97,108,101,41,32,123,92,110,32,32,118,97,114,32,108,111,99,97,108,101,95,100,97,116,101,84,105,109,101,32,61,32,108,111,99,97,108,101,46,100,97,116,101,84,105,109,101,44,92,110,32,32,32,32,32,32,108,111,99,97,108,101,95,100,97,116,101,32,61,32,108,111,99,97,108,101,46,100,97,116,101,44,92,110,32,32,32,32,32,32,108,111,99,97,108,101,95,116,105,109,101,32,61,32,108,111,99,97,108,101,46,116,105,109,101,44,92,110,32,32,32,32,32,32,108,111,99,97,108,101,95,112,101,114,105,111,100,115,32,61,32,108,111,99,97,108,101,46,112,101,114,105,111,100,115,44,92,110,32,32,32,32,32,32,108,111,99,97,108,101,95,119,101,101,107,100,97,121,115,32,61,32,108,111,99,97,108,101,46,100,97,121,115,44,92,110,32,32,32,32,32,32,108,111,99,97,108,101,95,115,104,111,114,116,87,101,101,107,100,97,121,115,32,61,32,108,111,99,97,108,101,46,115,104,111,114,116,68,97,121,115,44,92,110,32,32,32,32,32,32,108,111,99,97,108,101,95,109,111,110,116,104,115,32,61,32,108,111,99,97,108,101,46,109,111,110,116,104,115,44,92,110,32,32,32,32,32,32,108,111,99,97,108,101,95,115,104,111,114,116,77,111,110,116,104,115,32,61,32,108,111,99,97,108,101,46,115,104,111,114,116,77,111,110,116,104,115,59,92,110,92,110,32,32,118,97,114,32,112,101,114,105,111,100,82,101,32,61,32,102,111,114,109,97,116,82,101,40,108,111,99,97,108,101,95,112,101,114,105,111,100,115,41,44,92,110,32,32,32,32,32,32,112,101,114,105,111,100,76,111,111,107,117,112,32,61,32,102,111,114,109,97,116,76,111,111,107,117,112,40,108,111,99,97,108,101,95,112,101,114,105,111,100,115,41,44,92,110,32,32,32,32,32,32,119,101,101,107,100,97,121,82,101,32,61,32,102,111,114,109,97,116,82,101,40,108,111,99,97,108,101,95,119,101,101,107,100,97,121,115,41,44,92,110,32,32,32,32,32,32,119,101,101,107,100,97,121,76,111,111,107,117,112,32,61,32,102,111,114,109,97,116,76,111,111,107,117,112,40,108,111,99,97,108,101,95,119,101,101,107,100,97,121,115,41,44,92,110,32,32,32,32,32,32,115,104,111,114,116,87,101,101,107,100,97,121,82,101,32,61,32,102,111,114,109,97,116,82,101,40,108,111,99,97,108,101,95,115,104,111,114,116,87,101,101,107,100,97,121,115,41,44,92,110,32,32,32,32,32,32,115,104,111,114,116,87,101,101,107,100,97,121,76,111,111,107,117,112,32,61,32,102,111,114,109,97,116,76,111,111,107,117,112,40,108,111,99,97,108,101,95,115,104,111,114,116,87,101,101,107,100,97,121,115,41,44,92,110,32,32,32,32,32,32,109,111,110,116,104,82,101,32,61,32,102,111,114,109,97,116,82,101,40,108,111,99,97,108,101,95,109,111,110,116,104,115,41,44,92,110,32,32,32,32,32,32,109,111,110,116,104,76,111,111,107,117,112,32,61,32,102,111,114,109,97,116,76,111,111,107,117,112,40,108,111,99,97,108,101,95,109,111,110,116,104,115,41,44,92,110,32,32,32,32,32,32,115,104,111,114,116,77,111,110,116,104,82,101,32,61,32,102,111,114,109,97,116,82,101,40,108,111,99,97,108,101,95,115,104,111,114,116,77,111,110,116,104,115,41,44,92,110,32,32,32,32,32,32,115,104,111,114,116,77,111,110,116,104,76,111,111,107,117,112,32,61,32,102,111,114,109,97,116,76,111,111,107,117,112,40,108,111,99,97,108,101,95,115,104,111,114,116,77,111,110,116,104,115,41,59,92,110,92,110,32,32,118,97,114,32,102,111,114,109,97,116,115,32,61,32,123,92,110,32,32,32,32,92,34,97,92,34,58,32,102,111,114,109,97,116,83,104,111,114,116,87,101,101,107,100,97,121,44,92,110,32,32,32,32,92,34,65,92,34,58,32,102,111,114,109,97,116,87,101,101,107,100,97,121,44,92,110,32,32,32,32,92,34,98,92,34,58,32,102,111,114,109,97,116,83,104,111,114,116,77,111,110,116,104,44,92,110,32,32,32,32,92,34,66,92,34,58,32,102,111,114,109,97,116,77,111,110,116,104,44,92,110,32,32,32,32,92,34,99,92,34,58,32,110,117,108,108,44,92,110,32,32,32,32,92,34,100,92,34,58,32,102,111,114,109,97,116,68,97,121,79,102,77,111,110,116,104,44,92,110,32,32,32,32,92,34,101,92,34,58,32,102,111,114,109,97,116,68,97,121,79,102,77,111,110,116,104,44,92,110,32,32,32,32,92,34,102,92,34,58,32,102,111,114,109,97,116,77,105,99,114,111,115,101,99,111,110,100,115,44,92,110,32,32,32,32,92,34,103,92,34,58,32,102,111,114,109,97,116,89,101,97,114,73,83,79,44,92,110,32,32,32,32,92,34,71,92,34,58,32,102,111,114,109,97,116,70,117,108,108,89,101,97,114,73,83,79,44,92,110,32,32,32,32,92,34,72,92,34,58,32,102,111,114,109,97,116,72,111,117,114,50,52,44,92,110,32,32,32,32,92,34,73,92,34,58,32,102,111,114,109,97,116,72,111,117,114,49,50,44,92,110,32,32,32,32,92,34,106,92,34,58,32,102,111,114,109,97,116,68,97,121,79,102,89,101,97,114,44,92,110,32,32,32,32,92,34,76,92,34,58,32,102,111,114,109,97,116,77,105,108,108,105,115,101,99,111,110,100,115,44,92,110,32,32,32,32,92,34,109,92,34,58,32,102,111,114,109,97,116,77,111,110,116,104,78,117,109,98,101,114,44,92,110,32,32,32,32,92,34,77,92,34,58,32,102,111,114,109,97,116,77,105,110,117,116,101,115,44,92,110,32,32,32,32,92,34,112,92,34,58,32,102,111,114,109,97,116,80,101,114,105,111,100,44,92,110,32,32,32,32,92,34,113,92,34,58,32,102,111,114,109,97,116,81,117,97,114,116,101,114,44,92,110,32,32,32,32,92,34,81,92,34,58,32,102,111,114,109,97,116,85,110,105,120,84,105,109,101,115,116,97,109,112,44,92,110,32,32,32,32,92,34,115,92,34,58,32,102,111,114,109,97,116,85,110,105,120,84,105,109,101,115,116,97,109,112,83,101,99,111,110,100,115,44,92,110,32,32,32,32,92,34,83,92,34,58,32,102,111,114,109,97,116,83,101,99,111,110,100,115,44,92,110,32,32,32,32,92,34,117,92,34,58,32,102,111,114,109,97,116,87,101,101,107,100,97,121,78,117,109,98,101,114,77,111,110,100,97,121,44,92,110,32,32,32,32,92,34,85,92,34,58,32,102,111,114,109,97,116,87,101,101,107,78,117,109,98,101,114,83,117,110,100,97,121,44,92,110,32,32,32,32,92,34,86,92,34,58,32,102,111,114,109,97,116,87,101,101,107,78,117,109,98,101,114,73,83,79,44,92,110,32,32,32,32,92,34,119,92,34,58,32,102,111,114,109,97,116,87,101,101,107,100,97,121,78,117,109,98,101,114,83,117,110,100,97,121,44,92,110,32,32,32,32,92,34,87,92,34,58,32,102,111,114,109,97,116,87,101,101,107,78,117,109,98,101,114,77,111,110,100,97,121,44,92,110,32,32,32,32,92,34,120,92,34,58,32,110,117,108,108,44,92,110,32,32,32,32,92,34,88,92,34,58,32,110,117,108,108,44,92,110,32,32,32,32,92,34,121,92,34,58,32,102,111,114,109,97,116,89,101,97,114,44,92,110,32,32,32,32,92,34,89,92,34,58,32,102,111,114,109,97,116,70,117,108,108,89,101,97,114,44,92,110,32,32,32,32,92,34,90,92,34,58,32,102,111,114,109,97,116,90,111,110,101,44,92,110,32,32,32,32,92,34,37,92,34,58,32,102,111,114,109,97,116,76,105,116,101,114,97,108,80,101,114,99,101,110,116,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,117,116,99,70,111,114,109,97,116,115,32,61,32,123,92,110,32,32,32,32,92,34,97,92,34,58,32,102,111,114,109,97,116,85,84,67,83,104,111,114,116,87,101,101,107,100,97,121,44,92,110,32,32,32,32,92,34,65,92,34,58,32,102,111,114,109,97,116,85,84,67,87,101,101,107,100,97,121,44,92,110,32,32,32,32,92,34,98,92,34,58,32,102,111,114,109,97,116,85,84,67,83,104,111,114,116,77,111,110,116,104,44,92,110,32,32,32,32,92,34,66,92,34,58,32,102,111,114,109,97,116,85,84,67,77,111,110,116,104,44,92,110,32,32,32,32,92,34,99,92,34,58,32,110,117,108,108,44,92,110,32,32,32,32,92,34,100,92,34,58,32,102,111,114,109,97,116,85,84,67,68,97,121,79,102,77,111,110,116,104,44,92,110,32,32,32,32,92,34,101,92,34,58,32,102,111,114,109,97,116,85,84,67,68,97,121,79,102,77,111,110,116,104,44,92,110,32,32,32,32,92,34,102,92,34,58,32,102,111,114,109,97,116,85,84,67,77,105,99,114,111,115,101,99,111,110,100,115,44,92,110,32,32,32,32,92,34,103,92,34,58,32,102,111,114,109,97,116,85,84,67,89,101,97,114,73,83,79,44,92,110,32,32,32,32,92,34,71,92,34,58,32,102,111,114,109,97,116,85,84,67,70,117,108,108,89,101,97,114,73,83,79,44,92,110,32,32,32,32,92,34,72,92,34,58,32,102,111,114,109,97,116,85,84,67,72,111,117,114,50,52,44,92,110,32,32,32,32,92,34,73,92,34,58,32,102,111,114,109,97,116,85,84,67,72,111,117,114,49,50,44,92,110,32,32,32,32,92,34,106,92,34,58,32,102,111,114,109,97,116,85,84,67,68,97,121,79,102,89,101,97,114,44,92,110,32,32,32,32,92,34,76,92,34,58,32,102,111,114,109,97,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,44,92,110,32,32,32,32,92,34,109,92,34,58,32,102,111,114,109,97,116,85,84,67,77,111,110,116,104,78,117,109,98,101,114,44,92,110,32,32,32,32,92,34,77,92,34,58,32,102,111,114,109,97,116,85,84,67,77,105,110,117,116,101,115,44,92,110,32,32,32,32,92,34,112,92,34,58,32,102,111,114,109,97,116,85,84,67,80,101,114,105,111,100,44,92,110,32,32,32,32,92,34,113,92,34,58,32,102,111,114,109,97,116,85,84,67,81,117,97,114,116,101,114,44,92,110,32,32,32,32,92,34,81,92,34,58,32,102,111,114,109,97,116,85,110,105,120,84,105,109,101,115,116,97,109,112,44,92,110,32,32,32,32,92,34,115,92,34,58,32,102,111,114,109,97,116,85,110,105,120,84,105,109,101,115,116,97,109,112,83,101,99,111,110,100,115,44,92,110,32,32,32,32,92,34,83,92,34,58,32,102,111,114,109,97,116,85,84,67,83,101,99,111,110,100,115,44,92,110,32,32,32,32,92,34,117,92,34,58,32,102,111,114,109,97,116,85,84,67,87,101,101,107,100,97,121,78,117,109,98,101,114,77,111,110,100,97,121,44,92,110,32,32,32,32,92,34,85,92,34,58,32,102,111,114,109,97,116,85,84,67,87,101,101,107,78,117,109,98,101,114,83,117,110,100,97,121,44,92,110,32,32,32,32,92,34,86,92,34,58,32,102,111,114,109,97,116,85,84,67,87,101,101,107,78,117,109,98,101,114,73,83,79,44,92,110,32,32,32,32,92,34,119,92,34,58,32,102,111,114,109,97,116,85,84,67,87,101,101,107,100,97,121,78,117,109,98,101,114,83,117,110,100,97,121,44,92,110,32,32,32,32,92,34,87,92,34,58,32,102,111,114,109,97,116,85,84,67,87,101,101,107,78,117,109,98,101,114,77,111,110,100,97,121,44,92,110,32,32,32,32,92,34,120,92,34,58,32,110,117,108,108,44,92,110,32,32,32,32,92,34,88,92,34,58,32,110,117,108,108,44,92,110,32,32,32,32,92,34,121,92,34,58,32,102,111,114,109,97,116,85,84,67,89,101,97,114,44,92,110,32,32,32,32,92,34,89,92,34,58,32,102,111,114,109,97,116,85,84,67,70,117,108,108,89,101,97,114,44,92,110,32,32,32,32,92,34,90,92,34,58,32,102,111,114,109,97,116,85,84,67,90,111,110,101,44,92,110,32,32,32,32,92,34,37,92,34,58,32,102,111,114,109,97,116,76,105,116,101,114,97,108,80,101,114,99,101,110,116,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,112,97,114,115,101,115,32,61,32,123,92,110,32,32,32,32,92,34,97,92,34,58,32,112,97,114,115,101,83,104,111,114,116,87,101,101,107,100,97,121,44,92,110,32,32,32,32,92,34,65,92,34,58,32,112,97,114,115,101,87,101,101,107,100,97,121,44,92,110,32,32,32,32,92,34,98,92,34,58,32,112,97,114,115,101,83,104,111,114,116,77,111,110,116,104,44,92,110,32,32,32,32,92,34,66,92,34,58,32,112,97,114,115,101,77,111,110,116,104,44,92,110,32,32,32,32,92,34,99,92,34,58,32,112,97,114,115,101,76,111,99,97,108,101,68,97,116,101,84,105,109,101,44,92,110,32,32,32,32,92,34,100,92,34,58,32,112,97,114,115,101,68,97,121,79,102,77,111,110,116,104,44,92,110,32,32,32,32,92,34,101,92,34,58,32,112,97,114,115,101,68,97,121,79,102,77,111,110,116,104,44,92,110,32,32,32,32,92,34,102,92,34,58,32,112,97,114,115,101,77,105,99,114,111,115,101,99,111,110,100,115,44,92,110,32,32,32,32,92,34,103,92,34,58,32,112,97,114,115,101,89,101,97,114,44,92,110,32,32,32,32,92,34,71,92,34,58,32,112,97,114,115,101,70,117,108,108,89,101,97,114,44,92,110,32,32,32,32,92,34,72,92,34,58,32,112,97,114,115,101,72,111,117,114,50,52,44,92,110,32,32,32,32,92,34,73,92,34,58,32,112,97,114,115,101,72,111,117,114,50,52,44,92,110,32,32,32,32,92,34,106,92,34,58,32,112,97,114,115,101,68,97,121,79,102,89,101,97,114,44,92,110,32,32,32,32,92,34,76,92,34,58,32,112,97,114,115,101,77,105,108,108,105,115,101,99,111,110,100,115,44,92,110,32,32,32,32,92,34,109,92,34,58,32,112,97,114,115,101,77,111,110,116,104,78,117,109,98,101,114,44,92,110,32,32,32,32,92,34,77,92,34,58,32,112,97,114,115,101,77,105,110,117,116,101,115,44,92,110,32,32,32,32,92,34,112,92,34,58,32,112,97,114,115,101,80,101,114,105,111,100,44,92,110,32,32,32,32,92,34,113,92,34,58,32,112,97,114,115,101,81,117,97,114,116,101,114,44,92,110,32,32,32,32,92,34,81,92,34,58,32,112,97,114,115,101,85,110,105,120,84,105,109,101,115,116,97,109,112,44,92,110,32,32,32,32,92,34,115,92,34,58,32,112,97,114,115,101,85,110,105,120,84,105,109,101,115,116,97,109,112,83,101,99,111,110,100,115,44,92,110,32,32,32,32,92,34,83,92,34,58,32,112,97,114,115,101,83,101,99,111,110,100,115,44,92,110,32,32,32,32,92,34,117,92,34,58,32,112,97,114,115,101,87,101,101,107,100,97,121,78,117,109,98,101,114,77,111,110,100,97,121,44,92,110,32,32,32,32,92,34,85,92,34,58,32,112,97,114,115,101,87,101,101,107,78,117,109,98,101,114,83,117,110,100,97,121,44,92,110,32,32,32,32,92,34,86,92,34,58,32,112,97,114,115,101,87,101,101,107,78,117,109,98,101,114,73,83,79,44,92,110,32,32,32,32,92,34,119,92,34,58,32,112,97,114,115,101,87,101,101,107,100,97,121,78,117,109,98,101,114,83,117,110,100,97,121,44,92,110,32,32,32,32,92,34,87,92,34,58,32,112,97,114,115,101,87,101,101,107,78,117,109,98,101,114,77,111,110,100,97,121,44,92,110,32,32,32,32,92,34,120,92,34,58,32,112,97,114,115,101,76,111,99,97,108,101,68,97,116,101,44,92,110,32,32,32,32,92,34,88,92,34,58,32,112,97,114,115,101,76,111,99,97,108,101,84,105,109,101,44,92,110,32,32,32,32,92,34,121,92,34,58,32,112,97,114,115,101,89,101,97,114,44,92,110,32,32,32,32,92,34,89,92,34,58,32,112,97,114,115,101,70,117,108,108,89,101,97,114,44,92,110,32,32,32,32,92,34,90,92,34,58,32,112,97,114,115,101,90,111,110,101,44,92,110,32,32,32,32,92,34,37,92,34,58,32,112,97,114,115,101,76,105,116,101,114,97,108,80,101,114,99,101,110,116,92,110,32,32,125,59,92,110,92,110,32,32,47,47,32,84,104,101,115,101,32,114,101,99,117,114,115,105,118,101,32,100,105,114,101,99,116,105,118,101,32,100,101,102,105,110,105,116,105,111,110,115,32,109,117,115,116,32,98,101,32,100,101,102,101,114,114,101,100,46,92,110,32,32,102,111,114,109,97,116,115,46,120,32,61,32,110,101,119,70,111,114,109,97,116,40,108,111,99,97,108,101,95,100,97,116,101,44,32,102,111,114,109,97,116,115,41,59,92,110,32,32,102,111,114,109,97,116,115,46,88,32,61,32,110,101,119,70,111,114,109,97,116,40,108,111,99,97,108,101,95,116,105,109,101,44,32,102,111,114,109,97,116,115,41,59,92,110,32,32,102,111,114,109,97,116,115,46,99,32,61,32,110,101,119,70,111,114,109,97,116,40,108,111,99,97,108,101,95,100,97,116,101,84,105,109,101,44,32,102,111,114,109,97,116,115,41,59,92,110,32,32,117,116,99,70,111,114,109,97,116,115,46,120,32,61,32,110,101,119,70,111,114,109,97,116,40,108,111,99,97,108,101,95,100,97,116,101,44,32,117,116,99,70,111,114,109,97,116,115,41,59,92,110,32,32,117,116,99,70,111,114,109,97,116,115,46,88,32,61,32,110,101,119,70,111,114,109,97,116,40,108,111,99,97,108,101,95,116,105,109,101,44,32,117,116,99,70,111,114,109,97,116,115,41,59,92,110,32,32,117,116,99,70,111,114,109,97,116,115,46,99,32,61,32,110,101,119,70,111,114,109,97,116,40,108,111,99,97,108,101,95,100,97,116,101,84,105,109,101,44,32,117,116,99,70,111,114,109,97,116,115,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,110,101,119,70,111,114,109,97,116,40,115,112,101,99,105,102,105,101,114,44,32,102,111,114,109,97,116,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,116,114,105,110,103,32,61,32,91,93,44,92,110,32,32,32,32,32,32,32,32,32,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,106,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,110,32,61,32,115,112,101,99,105,102,105,101,114,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,99,44,92,110,32,32,32,32,32,32,32,32,32,32,112,97,100,44,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,40,100,97,116,101,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,41,41,32,100,97,116,101,32,61,32,110,101,119,32,68,97,116,101,40,43,100,97,116,101,41,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,112,101,99,105,102,105,101,114,46,99,104,97,114,67,111,100,101,65,116,40,105,41,32,61,61,61,32,51,55,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,114,105,110,103,46,112,117,115,104,40,115,112,101,99,105,102,105,101,114,46,115,108,105,99,101,40,106,44,32,105,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,112,97,100,32,61,32,112,97,100,115,91,99,32,61,32,115,112,101,99,105,102,105,101,114,46,99,104,97,114,65,116,40,43,43,105,41,93,41,32,33,61,32,110,117,108,108,41,32,99,32,61,32,115,112,101,99,105,102,105,101,114,46,99,104,97,114,65,116,40,43,43,105,41,59,92,110,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,112,97,100,32,61,32,99,32,61,61,61,32,92,34,101,92,34,32,63,32,92,34,32,92,34,32,58,32,92,34,48,92,34,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,102,111,114,109,97,116,32,61,32,102,111,114,109,97,116,115,91,99,93,41,32,99,32,61,32,102,111,114,109,97,116,40,100,97,116,101,44,32,112,97,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,115,116,114,105,110,103,46,112,117,115,104,40,99,41,59,92,110,32,32,32,32,32,32,32,32,32,32,106,32,61,32,105,32,43,32,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,115,116,114,105,110,103,46,112,117,115,104,40,115,112,101,99,105,102,105,101,114,46,115,108,105,99,101,40,106,44,32,105,41,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,106,111,105,110,40,92,34,92,34,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,110,101,119,80,97,114,115,101,40,115,112,101,99,105,102,105,101,114,44,32,90,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,32,61,32,110,101,119,68,97,116,101,40,49,57,48,48,44,32,117,110,100,101,102,105,110,101,100,44,32,49,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,32,61,32,112,97,114,115,101,83,112,101,99,105,102,105,101,114,40,100,44,32,115,112,101,99,105,102,105,101,114,44,32,115,116,114,105,110,103,32,43,61,32,92,34,92,34,44,32,48,41,44,92,110,32,32,32,32,32,32,32,32,32,32,119,101,101,107,44,32,100,97,121,59,92,110,32,32,32,32,32,32,105,102,32,40,105,32,33,61,32,115,116,114,105,110,103,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,47,47,32,73,102,32,97,32,85,78,73,88,32,116,105,109,101,115,116,97,109,112,32,105,115,32,115,112,101,99,105,102,105,101,100,44,32,114,101,116,117,114,110,32,105,116,46,92,110,32,32,32,32,32,32,105,102,32,40,92,34,81,92,34,32,105,110,32,100,41,32,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,100,46,81,41,59,92,110,32,32,32,32,32,32,105,102,32,40,92,34,115,92,34,32,105,110,32,100,41,32,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,100,46,115,32,42,32,49,48,48,48,32,43,32,40,92,34,76,92,34,32,105,110,32,100,32,63,32,100,46,76,32,58,32,48,41,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,105,115,32,105,115,32,117,116,99,80,97,114,115,101,44,32,110,101,118,101,114,32,117,115,101,32,116,104,101,32,108,111,99,97,108,32,116,105,109,101,122,111,110,101,46,92,110,32,32,32,32,32,32,105,102,32,40,90,32,38,38,32,33,40,92,34,90,92,34,32,105,110,32,100,41,41,32,100,46,90,32,61,32,48,59,92,110,92,110,32,32,32,32,32,32,47,47,32,84,104,101,32,97,109,45,112,109,32,102,108,97,103,32,105,115,32,48,32,102,111,114,32,65,77,44,32,97,110,100,32,49,32,102,111,114,32,80,77,46,92,110,32,32,32,32,32,32,105,102,32,40,92,34,112,92,34,32,105,110,32,100,41,32,100,46,72,32,61,32,100,46,72,32,37,32,49,50,32,43,32,100,46,112,32,42,32,49,50,59,92,110,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,109,111,110,116,104,32,119,97,115,32,110,111,116,32,115,112,101,99,105,102,105,101,100,44,32,105,110,104,101,114,105,116,32,102,114,111,109,32,116,104,101,32,113,117,97,114,116,101,114,46,92,110,32,32,32,32,32,32,105,102,32,40,100,46,109,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,100,46,109,32,61,32,92,34,113,92,34,32,105,110,32,100,32,63,32,100,46,113,32,58,32,48,59,92,110,92,110,32,32,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,100,97,121,45,111,102,45,119,101,101,107,32,97,110,100,32,119,101,101,107,45,111,102,45,121,101,97,114,32,116,111,32,100,97,121,45,111,102,45,121,101,97,114,46,92,110,32,32,32,32,32,32,105,102,32,40,92,34,86,92,34,32,105,110,32,100,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,46,86,32,60,32,49,32,124,124,32,100,46,86,32,62,32,53,51,41,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,92,34,119,92,34,32,105,110,32,100,41,41,32,100,46,119,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,92,34,90,92,34,32,105,110,32,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,101,101,107,32,61,32,117,116,99,68,97,116,101,40,110,101,119,68,97,116,101,40,100,46,121,44,32,48,44,32,49,41,41,44,32,100,97,121,32,61,32,119,101,101,107,46,103,101,116,85,84,67,68,97,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,119,101,101,107,32,61,32,100,97,121,32,62,32,52,32,124,124,32,100,97,121,32,61,61,61,32,48,32,63,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,116,99,77,111,110,100,97,121,46,99,101,105,108,40,119,101,101,107,41,32,58,32,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,116,99,77,111,110,100,97,121,41,40,119,101,101,107,41,59,92,110,32,32,32,32,32,32,32,32,32,32,119,101,101,107,32,61,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,111,102,102,115,101,116,40,119,101,101,107,44,32,40,100,46,86,32,45,32,49,41,32,42,32,55,41,59,92,110,32,32,32,32,32,32,32,32,32,32,100,46,121,32,61,32,119,101,101,107,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,100,46,109,32,61,32,119,101,101,107,46,103,101,116,85,84,67,77,111,110,116,104,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,100,46,100,32,61,32,119,101,101,107,46,103,101,116,85,84,67,68,97,116,101,40,41,32,43,32,40,100,46,119,32,43,32,54,41,32,37,32,55,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,101,101,107,32,61,32,108,111,99,97,108,68,97,116,101,40,110,101,119,68,97,116,101,40,100,46,121,44,32,48,44,32,49,41,41,44,32,100,97,121,32,61,32,119,101,101,107,46,103,101,116,68,97,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,119,101,101,107,32,61,32,100,97,121,32,62,32,52,32,124,124,32,100,97,121,32,61,61,61,32,48,32,63,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,111,110,100,97,121,46,99,101,105,108,40,119,101,101,107,41,32,58,32,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,111,110,100,97,121,41,40,119,101,101,107,41,59,92,110,32,32,32,32,32,32,32,32,32,32,119,101,101,107,32,61,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,111,102,102,115,101,116,40,119,101,101,107,44,32,40,100,46,86,32,45,32,49,41,32,42,32,55,41,59,92,110,32,32,32,32,32,32,32,32,32,32,100,46,121,32,61,32,119,101,101,107,46,103,101,116,70,117,108,108,89,101,97,114,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,100,46,109,32,61,32,119,101,101,107,46,103,101,116,77,111,110,116,104,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,100,46,100,32,61,32,119,101,101,107,46,103,101,116,68,97,116,101,40,41,32,43,32,40,100,46,119,32,43,32,54,41,32,37,32,55,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,92,34,87,92,34,32,105,110,32,100,32,124,124,32,92,34,85,92,34,32,105,110,32,100,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,92,34,119,92,34,32,105,110,32,100,41,41,32,100,46,119,32,61,32,92,34,117,92,34,32,105,110,32,100,32,63,32,100,46,117,32,37,32,55,32,58,32,92,34,87,92,34,32,105,110,32,100,32,63,32,49,32,58,32,48,59,92,110,32,32,32,32,32,32,32,32,100,97,121,32,61,32,92,34,90,92,34,32,105,110,32,100,32,63,32,117,116,99,68,97,116,101,40,110,101,119,68,97,116,101,40,100,46,121,44,32,48,44,32,49,41,41,46,103,101,116,85,84,67,68,97,121,40,41,32,58,32,108,111,99,97,108,68,97,116,101,40,110,101,119,68,97,116,101,40,100,46,121,44,32,48,44,32,49,41,41,46,103,101,116,68,97,121,40,41,59,92,110,32,32,32,32,32,32,32,32,100,46,109,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,100,46,100,32,61,32,92,34,87,92,34,32,105,110,32,100,32,63,32,40,100,46,119,32,43,32,54,41,32,37,32,55,32,43,32,100,46,87,32,42,32,55,32,45,32,40,100,97,121,32,43,32,53,41,32,37,32,55,32,58,32,100,46,119,32,43,32,100,46,85,32,42,32,55,32,45,32,40,100,97,121,32,43,32,54,41,32,37,32,55,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,73,102,32,97,32,116,105,109,101,32,122,111,110,101,32,105,115,32,115,112,101,99,105,102,105,101,100,44,32,97,108,108,32,102,105,101,108,100,115,32,97,114,101,32,105,110,116,101,114,112,114,101,116,101,100,32,97,115,32,85,84,67,32,97,110,100,32,116,104,101,110,92,110,32,32,32,32,32,32,47,47,32,111,102,102,115,101,116,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,116,105,109,101,32,122,111,110,101,46,92,110,32,32,32,32,32,32,105,102,32,40,92,34,90,92,34,32,105,110,32,100,41,32,123,92,110,32,32,32,32,32,32,32,32,100,46,72,32,43,61,32,100,46,90,32,47,32,49,48,48,32,124,32,48,59,92,110,32,32,32,32,32,32,32,32,100,46,77,32,43,61,32,100,46,90,32,37,32,49,48,48,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,117,116,99,68,97,116,101,40,100,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,97,108,108,32,102,105,101,108,100,115,32,97,114,101,32,105,110,32,108,111,99,97,108,32,116,105,109,101,46,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,68,97,116,101,40,100,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,83,112,101,99,105,102,105,101,114,40,100,44,32,115,112,101,99,105,102,105,101,114,44,32,115,116,114,105,110,103,44,32,106,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,115,112,101,99,105,102,105,101,114,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,109,32,61,32,115,116,114,105,110,103,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,99,44,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,106,32,62,61,32,109,41,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,32,32,32,32,99,32,61,32,115,112,101,99,105,102,105,101,114,46,99,104,97,114,67,111,100,101,65,116,40,105,43,43,41,59,92,110,32,32,32,32,32,32,105,102,32,40,99,32,61,61,61,32,51,55,41,32,123,92,110,32,32,32,32,32,32,32,32,99,32,61,32,115,112,101,99,105,102,105,101,114,46,99,104,97,114,65,116,40,105,43,43,41,59,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,32,61,32,112,97,114,115,101,115,91,99,32,105,110,32,112,97,100,115,32,63,32,115,112,101,99,105,102,105,101,114,46,99,104,97,114,65,116,40,105,43,43,41,32,58,32,99,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,112,97,114,115,101,32,124,124,32,40,40,106,32,61,32,112,97,114,115,101,40,100,44,32,115,116,114,105,110,103,44,32,106,41,41,32,60,32,48,41,41,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,99,32,33,61,32,115,116,114,105,110,103,46,99,104,97,114,67,111,100,101,65,116,40,106,43,43,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,106,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,80,101,114,105,111,100,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,32,32,118,97,114,32,110,32,61,32,112,101,114,105,111,100,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,112,32,61,32,112,101,114,105,111,100,76,111,111,107,117,112,91,110,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,83,104,111,114,116,87,101,101,107,100,97,121,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,32,32,118,97,114,32,110,32,61,32,115,104,111,114,116,87,101,101,107,100,97,121,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,119,32,61,32,115,104,111,114,116,87,101,101,107,100,97,121,76,111,111,107,117,112,91,110,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,87,101,101,107,100,97,121,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,32,32,118,97,114,32,110,32,61,32,119,101,101,107,100,97,121,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,119,32,61,32,119,101,101,107,100,97,121,76,111,111,107,117,112,91,110,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,83,104,111,114,116,77,111,110,116,104,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,32,32,118,97,114,32,110,32,61,32,115,104,111,114,116,77,111,110,116,104,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,109,32,61,32,115,104,111,114,116,77,111,110,116,104,76,111,111,107,117,112,91,110,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,77,111,110,116,104,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,32,32,118,97,114,32,110,32,61,32,109,111,110,116,104,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,109,32,61,32,109,111,110,116,104,76,111,111,107,117,112,91,110,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,76,111,99,97,108,101,68,97,116,101,84,105,109,101,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,97,114,115,101,83,112,101,99,105,102,105,101,114,40,100,44,32,108,111,99,97,108,101,95,100,97,116,101,84,105,109,101,44,32,115,116,114,105,110,103,44,32,105,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,76,111,99,97,108,101,68,97,116,101,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,97,114,115,101,83,112,101,99,105,102,105,101,114,40,100,44,32,108,111,99,97,108,101,95,100,97,116,101,44,32,115,116,114,105,110,103,44,32,105,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,76,111,99,97,108,101,84,105,109,101,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,97,114,115,101,83,112,101,99,105,102,105,101,114,40,100,44,32,108,111,99,97,108,101,95,116,105,109,101,44,32,115,116,114,105,110,103,44,32,105,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,83,104,111,114,116,87,101,101,107,100,97,121,40,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,101,95,115,104,111,114,116,87,101,101,107,100,97,121,115,91,100,46,103,101,116,68,97,121,40,41,93,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,87,101,101,107,100,97,121,40,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,101,95,119,101,101,107,100,97,121,115,91,100,46,103,101,116,68,97,121,40,41,93,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,83,104,111,114,116,77,111,110,116,104,40,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,101,95,115,104,111,114,116,77,111,110,116,104,115,91,100,46,103,101,116,77,111,110,116,104,40,41,93,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,77,111,110,116,104,40,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,101,95,109,111,110,116,104,115,91,100,46,103,101,116,77,111,110,116,104,40,41,93,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,80,101,114,105,111,100,40,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,101,95,112,101,114,105,111,100,115,91,43,40,100,46,103,101,116,72,111,117,114,115,40,41,32,62,61,32,49,50,41,93,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,81,117,97,114,116,101,114,40,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,49,32,43,32,126,126,40,100,46,103,101,116,77,111,110,116,104,40,41,32,47,32,51,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,83,104,111,114,116,87,101,101,107,100,97,121,40,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,101,95,115,104,111,114,116,87,101,101,107,100,97,121,115,91,100,46,103,101,116,85,84,67,68,97,121,40,41,93,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,87,101,101,107,100,97,121,40,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,101,95,119,101,101,107,100,97,121,115,91,100,46,103,101,116,85,84,67,68,97,121,40,41,93,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,83,104,111,114,116,77,111,110,116,104,40,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,101,95,115,104,111,114,116,77,111,110,116,104,115,91,100,46,103,101,116,85,84,67,77,111,110,116,104,40,41,93,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,77,111,110,116,104,40,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,101,95,109,111,110,116,104,115,91,100,46,103,101,116,85,84,67,77,111,110,116,104,40,41,93,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,80,101,114,105,111,100,40,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,101,95,112,101,114,105,111,100,115,91,43,40,100,46,103,101,116,85,84,67,72,111,117,114,115,40,41,32,62,61,32,49,50,41,93,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,81,117,97,114,116,101,114,40,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,49,32,43,32,126,126,40,100,46,103,101,116,85,84,67,77,111,110,116,104,40,41,32,47,32,51,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,102,111,114,109,97,116,58,32,102,117,110,99,116,105,111,110,40,115,112,101,99,105,102,105,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,32,61,32,110,101,119,70,111,114,109,97,116,40,115,112,101,99,105,102,105,101,114,32,43,61,32,92,34,92,34,44,32,102,111,114,109,97,116,115,41,59,92,110,32,32,32,32,32,32,102,46,116,111,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,115,112,101,99,105,102,105,101,114,59,32,125,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,97,114,115,101,58,32,102,117,110,99,116,105,111,110,40,115,112,101,99,105,102,105,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,32,61,32,110,101,119,80,97,114,115,101,40,115,112,101,99,105,102,105,101,114,32,43,61,32,92,34,92,34,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,112,46,116,111,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,115,112,101,99,105,102,105,101,114,59,32,125,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,116,99,70,111,114,109,97,116,58,32,102,117,110,99,116,105,111,110,40,115,112,101,99,105,102,105,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,32,61,32,110,101,119,70,111,114,109,97,116,40,115,112,101,99,105,102,105,101,114,32,43,61,32,92,34,92,34,44,32,117,116,99,70,111,114,109,97,116,115,41,59,92,110,32,32,32,32,32,32,102,46,116,111,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,115,112,101,99,105,102,105,101,114,59,32,125,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,116,99,80,97,114,115,101,58,32,102,117,110,99,116,105,111,110,40,115,112,101,99,105,102,105,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,32,61,32,110,101,119,80,97,114,115,101,40,115,112,101,99,105,102,105,101,114,32,43,61,32,92,34,92,34,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,112,46,116,111,83,116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,115,112,101,99,105,102,105,101,114,59,32,125,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,118,97,114,32,112,97,100,115,32,61,32,123,92,34,45,92,34,58,32,92,34,92,34,44,32,92,34,95,92,34,58,32,92,34,32,92,34,44,32,92,34,48,92,34,58,32,92,34,48,92,34,125,44,92,110,32,32,32,32,110,117,109,98,101,114,82,101,32,61,32,47,94,92,92,115,42,92,92,100,43,47,44,32,47,47,32,110,111,116,101,58,32,105,103,110,111,114,101,115,32,110,101,120,116,32,100,105,114,101,99,116,105,118,101,92,110,32,32,32,32,112,101,114,99,101,110,116,82,101,32,61,32,47,94,37,47,44,92,110,32,32,32,32,114,101,113,117,111,116,101,82,101,32,61,32,47,91,92,92,92,92,94,36,42,43,63,124,91,92,92,93,40,41,46,123,125,93,47,103,59,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,100,40,118,97,108,117,101,44,32,102,105,108,108,44,32,119,105,100,116,104,41,32,123,92,110,32,32,118,97,114,32,115,105,103,110,32,61,32,118,97,108,117,101,32,60,32,48,32,63,32,92,34,45,92,34,32,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,40,115,105,103,110,32,63,32,45,118,97,108,117,101,32,58,32,118,97,108,117,101,41,32,43,32,92,34,92,34,44,92,110,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,115,116,114,105,110,103,46,108,101,110,103,116,104,59,92,110,32,32,114,101,116,117,114,110,32,115,105,103,110,32,43,32,40,108,101,110,103,116,104,32,60,32,119,105,100,116,104,32,63,32,110,101,119,32,65,114,114,97,121,40,119,105,100,116,104,32,45,32,108,101,110,103,116,104,32,43,32,49,41,46,106,111,105,110,40,102,105,108,108,41,32,43,32,115,116,114,105,110,103,32,58,32,115,116,114,105,110,103,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,113,117,111,116,101,40,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,46,114,101,112,108,97,99,101,40,114,101,113,117,111,116,101,82,101,44,32,92,34,92,92,92,92,36,38,92,34,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,82,101,40,110,97,109,101,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,82,101,103,69,120,112,40,92,34,94,40,63,58,92,34,32,43,32,110,97,109,101,115,46,109,97,112,40,114,101,113,117,111,116,101,41,46,106,111,105,110,40,92,34,124,92,34,41,32,43,32,92,34,41,92,34,44,32,92,34,105,92,34,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,76,111,111,107,117,112,40,110,97,109,101,115,41,32,123,92,110,32,32,118,97,114,32,109,97,112,32,61,32,123,125,44,32,105,32,61,32,45,49,44,32,110,32,61,32,110,97,109,101,115,46,108,101,110,103,116,104,59,92,110,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,109,97,112,91,110,97,109,101,115,91,105,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,32,61,32,105,59,92,110,32,32,114,101,116,117,114,110,32,109,97,112,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,87,101,101,107,100,97,121,78,117,109,98,101,114,83,117,110,100,97,121,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,49,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,119,32,61,32,43,110,91,48,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,87,101,101,107,100,97,121,78,117,109,98,101,114,77,111,110,100,97,121,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,49,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,117,32,61,32,43,110,91,48,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,87,101,101,107,78,117,109,98,101,114,83,117,110,100,97,121,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,50,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,85,32,61,32,43,110,91,48,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,87,101,101,107,78,117,109,98,101,114,73,83,79,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,50,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,86,32,61,32,43,110,91,48,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,87,101,101,107,78,117,109,98,101,114,77,111,110,100,97,121,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,50,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,87,32,61,32,43,110,91,48,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,70,117,108,108,89,101,97,114,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,52,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,121,32,61,32,43,110,91,48,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,89,101,97,114,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,50,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,121,32,61,32,43,110,91,48,93,32,43,32,40,43,110,91,48,93,32,62,32,54,56,32,63,32,49,57,48,48,32,58,32,50,48,48,48,41,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,90,111,110,101,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,47,94,40,90,41,124,40,91,43,45,93,92,92,100,92,92,100,41,40,63,58,58,63,40,92,92,100,92,92,100,41,41,63,47,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,54,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,90,32,61,32,110,91,49,93,32,63,32,48,32,58,32,45,40,110,91,50,93,32,43,32,40,110,91,51,93,32,124,124,32,92,34,48,48,92,34,41,41,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,81,117,97,114,116,101,114,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,49,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,113,32,61,32,110,91,48,93,32,42,32,51,32,45,32,51,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,77,111,110,116,104,78,117,109,98,101,114,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,50,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,109,32,61,32,110,91,48,93,32,45,32,49,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,68,97,121,79,102,77,111,110,116,104,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,50,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,100,32,61,32,43,110,91,48,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,68,97,121,79,102,89,101,97,114,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,51,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,109,32,61,32,48,44,32,100,46,100,32,61,32,43,110,91,48,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,72,111,117,114,50,52,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,50,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,72,32,61,32,43,110,91,48,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,77,105,110,117,116,101,115,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,50,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,77,32,61,32,43,110,91,48,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,83,101,99,111,110,100,115,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,50,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,83,32,61,32,43,110,91,48,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,77,105,108,108,105,115,101,99,111,110,100,115,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,51,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,76,32,61,32,43,110,91,48,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,77,105,99,114,111,115,101,99,111,110,100,115,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,54,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,76,32,61,32,77,97,116,104,46,102,108,111,111,114,40,110,91,48,93,32,47,32,49,48,48,48,41,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,76,105,116,101,114,97,108,80,101,114,99,101,110,116,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,112,101,114,99,101,110,116,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,44,32,105,32,43,32,49,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,85,110,105,120,84,105,109,101,115,116,97,109,112,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,81,32,61,32,43,110,91,48,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,85,110,105,120,84,105,109,101,115,116,97,109,112,83,101,99,111,110,100,115,40,100,44,32,115,116,114,105,110,103,44,32,105,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,110,117,109,98,101,114,82,101,46,101,120,101,99,40,115,116,114,105,110,103,46,115,108,105,99,101,40,105,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,63,32,40,100,46,115,32,61,32,43,110,91,48,93,44,32,105,32,43,32,110,91,48,93,46,108,101,110,103,116,104,41,32,58,32,45,49,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,68,97,121,79,102,77,111,110,116,104,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,68,97,116,101,40,41,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,72,111,117,114,50,52,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,72,111,117,114,115,40,41,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,72,111,117,114,49,50,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,72,111,117,114,115,40,41,32,37,32,49,50,32,124,124,32,49,50,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,68,97,121,79,102,89,101,97,114,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,49,32,43,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,99,111,117,110,116,40,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,41,44,32,100,41,44,32,112,44,32,51,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,77,105,108,108,105,115,101,99,111,110,100,115,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,44,32,112,44,32,51,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,77,105,99,114,111,115,101,99,111,110,100,115,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,77,105,108,108,105,115,101,99,111,110,100,115,40,100,44,32,112,41,32,43,32,92,34,48,48,48,92,34,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,77,111,110,116,104,78,117,109,98,101,114,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,77,111,110,116,104,40,41,32,43,32,49,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,77,105,110,117,116,101,115,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,77,105,110,117,116,101,115,40,41,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,83,101,99,111,110,100,115,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,83,101,99,111,110,100,115,40,41,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,87,101,101,107,100,97,121,78,117,109,98,101,114,77,111,110,100,97,121,40,100,41,32,123,92,110,32,32,118,97,114,32,100,97,121,32,61,32,100,46,103,101,116,68,97,121,40,41,59,92,110,32,32,114,101,116,117,114,110,32,100,97,121,32,61,61,61,32,48,32,63,32,55,32,58,32,100,97,121,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,87,101,101,107,78,117,109,98,101,114,83,117,110,100,97,121,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,117,110,100,97,121,46,99,111,117,110,116,40,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,41,32,45,32,49,44,32,100,41,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,73,83,79,40,100,41,32,123,92,110,32,32,118,97,114,32,100,97,121,32,61,32,100,46,103,101,116,68,97,121,40,41,59,92,110,32,32,114,101,116,117,114,110,32,40,100,97,121,32,62,61,32,52,32,124,124,32,100,97,121,32,61,61,61,32,48,41,32,63,32,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,104,117,114,115,100,97,121,41,40,100,41,32,58,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,104,117,114,115,100,97,121,46,99,101,105,108,40,100,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,87,101,101,107,78,117,109,98,101,114,73,83,79,40,100,44,32,112,41,32,123,92,110,32,32,100,32,61,32,100,73,83,79,40,100,41,59,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,104,117,114,115,100,97,121,46,99,111,117,110,116,40,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,41,44,32,100,41,32,43,32,40,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,41,46,103,101,116,68,97,121,40,41,32,61,61,61,32,52,41,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,87,101,101,107,100,97,121,78,117,109,98,101,114,83,117,110,100,97,121,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,103,101,116,68,97,121,40,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,87,101,101,107,78,117,109,98,101,114,77,111,110,100,97,121,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,111,110,100,97,121,46,99,111,117,110,116,40,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,41,32,45,32,49,44,32,100,41,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,89,101,97,114,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,70,117,108,108,89,101,97,114,40,41,32,37,32,49,48,48,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,89,101,97,114,73,83,79,40,100,44,32,112,41,32,123,92,110,32,32,100,32,61,32,100,73,83,79,40,100,41,59,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,70,117,108,108,89,101,97,114,40,41,32,37,32,49,48,48,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,70,117,108,108,89,101,97,114,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,70,117,108,108,89,101,97,114,40,41,32,37,32,49,48,48,48,48,44,32,112,44,32,52,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,70,117,108,108,89,101,97,114,73,83,79,40,100,44,32,112,41,32,123,92,110,32,32,118,97,114,32,100,97,121,32,61,32,100,46,103,101,116,68,97,121,40,41,59,92,110,32,32,100,32,61,32,40,100,97,121,32,62,61,32,52,32,124,124,32,100,97,121,32,61,61,61,32,48,41,32,63,32,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,104,117,114,115,100,97,121,41,40,100,41,32,58,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,116,104,117,114,115,100,97,121,46,99,101,105,108,40,100,41,59,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,70,117,108,108,89,101,97,114,40,41,32,37,32,49,48,48,48,48,44,32,112,44,32,52,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,90,111,110,101,40,100,41,32,123,92,110,32,32,118,97,114,32,122,32,61,32,100,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,59,92,110,32,32,114,101,116,117,114,110,32,40,122,32,62,32,48,32,63,32,92,34,45,92,34,32,58,32,40,122,32,42,61,32,45,49,44,32,92,34,43,92,34,41,41,92,110,32,32,32,32,32,32,43,32,112,97,100,40,122,32,47,32,54,48,32,124,32,48,44,32,92,34,48,92,34,44,32,50,41,92,110,32,32,32,32,32,32,43,32,112,97,100,40,122,32,37,32,54,48,44,32,92,34,48,92,34,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,68,97,121,79,102,77,111,110,116,104,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,85,84,67,68,97,116,101,40,41,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,72,111,117,114,50,52,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,85,84,67,72,111,117,114,115,40,41,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,72,111,117,114,49,50,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,85,84,67,72,111,117,114,115,40,41,32,37,32,49,50,32,124,124,32,49,50,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,68,97,121,79,102,89,101,97,114,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,49,32,43,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,99,111,117,110,116,40,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,41,44,32,100,41,44,32,112,44,32,51,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,41,44,32,112,44,32,51,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,77,105,99,114,111,115,101,99,111,110,100,115,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,100,44,32,112,41,32,43,32,92,34,48,48,48,92,34,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,77,111,110,116,104,78,117,109,98,101,114,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,85,84,67,77,111,110,116,104,40,41,32,43,32,49,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,77,105,110,117,116,101,115,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,83,101,99,111,110,100,115,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,87,101,101,107,100,97,121,78,117,109,98,101,114,77,111,110,100,97,121,40,100,41,32,123,92,110,32,32,118,97,114,32,100,111,119,32,61,32,100,46,103,101,116,85,84,67,68,97,121,40,41,59,92,110,32,32,114,101,116,117,114,110,32,100,111,119,32,61,61,61,32,48,32,63,32,55,32,58,32,100,111,119,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,87,101,101,107,78,117,109,98,101,114,83,117,110,100,97,121,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,116,99,83,117,110,100,97,121,46,99,111,117,110,116,40,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,41,32,45,32,49,44,32,100,41,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,85,84,67,100,73,83,79,40,100,41,32,123,92,110,32,32,118,97,114,32,100,97,121,32,61,32,100,46,103,101,116,85,84,67,68,97,121,40,41,59,92,110,32,32,114,101,116,117,114,110,32,40,100,97,121,32,62,61,32,52,32,124,124,32,100,97,121,32,61,61,61,32,48,41,32,63,32,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,116,99,84,104,117,114,115,100,97,121,41,40,100,41,32,58,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,116,99,84,104,117,114,115,100,97,121,46,99,101,105,108,40,100,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,87,101,101,107,78,117,109,98,101,114,73,83,79,40,100,44,32,112,41,32,123,92,110,32,32,100,32,61,32,85,84,67,100,73,83,79,40,100,41,59,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,116,99,84,104,117,114,115,100,97,121,46,99,111,117,110,116,40,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,41,44,32,100,41,32,43,32,40,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,41,46,103,101,116,85,84,67,68,97,121,40,41,32,61,61,61,32,52,41,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,87,101,101,107,100,97,121,78,117,109,98,101,114,83,117,110,100,97,121,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,46,103,101,116,85,84,67,68,97,121,40,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,87,101,101,107,78,117,109,98,101,114,77,111,110,100,97,121,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,116,99,77,111,110,100,97,121,46,99,111,117,110,116,40,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,41,32,45,32,49,44,32,100,41,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,89,101,97,114,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,32,37,32,49,48,48,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,89,101,97,114,73,83,79,40,100,44,32,112,41,32,123,92,110,32,32,100,32,61,32,85,84,67,100,73,83,79,40,100,41,59,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,32,37,32,49,48,48,44,32,112,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,70,117,108,108,89,101,97,114,40,100,44,32,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,32,37,32,49,48,48,48,48,44,32,112,44,32,52,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,70,117,108,108,89,101,97,114,73,83,79,40,100,44,32,112,41,32,123,92,110,32,32,118,97,114,32,100,97,121,32,61,32,100,46,103,101,116,85,84,67,68,97,121,40,41,59,92,110,32,32,100,32,61,32,40,100,97,121,32,62,61,32,52,32,124,124,32,100,97,121,32,61,61,61,32,48,41,32,63,32,40,48,44,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,116,99,84,104,117,114,115,100,97,121,41,40,100,41,32,58,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,116,99,84,104,117,114,115,100,97,121,46,99,101,105,108,40,100,41,59,92,110,32,32,114,101,116,117,114,110,32,112,97,100,40,100,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,32,37,32,49,48,48,48,48,44,32,112,44,32,52,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,84,67,90,111,110,101,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,92,34,43,48,48,48,48,92,34,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,76,105,116,101,114,97,108,80,101,114,99,101,110,116,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,92,34,37,92,34,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,110,105,120,84,105,109,101,115,116,97,109,112,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,43,100,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,85,110,105,120,84,105,109,101,115,116,97,109,112,83,101,99,111,110,100,115,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,102,108,111,111,114,40,43,100,32,47,32,49,48,48,48,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,108,111,99,97,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,97,121,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,117,114,97,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,117,114,97,116,105,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,100,97,121,32,61,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,68,97,116,101,40,100,97,116,101,46,103,101,116,68,97,116,101,40,41,32,43,32,115,116,101,112,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,101,110,100,32,45,32,115,116,97,114,116,32,45,32,40,101,110,100,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,32,45,32,115,116,97,114,116,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,41,32,42,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,77,105,110,117,116,101,41,32,47,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,68,97,121,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,68,97,116,101,40,41,32,45,32,49,59,92,110,125,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,100,97,121,41,59,92,110,118,97,114,32,100,97,121,115,32,61,32,100,97,121,46,114,97,110,103,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,117,114,97,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,117,114,97,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,117,114,97,116,105,111,110,68,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,117,114,97,116,105,111,110,68,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,117,114,97,116,105,111,110,72,111,117,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,117,114,97,116,105,111,110,72,111,117,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,117,114,97,116,105,111,110,77,105,110,117,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,117,114,97,116,105,111,110,77,105,110,117,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,117,114,97,116,105,111,110,83,101,99,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,117,114,97,116,105,111,110,83,101,99,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,117,114,97,116,105,111,110,87,101,101,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,117,114,97,116,105,111,110,87,101,101,107,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,100,117,114,97,116,105,111,110,83,101,99,111,110,100,32,61,32,49,101,51,59,92,110,118,97,114,32,100,117,114,97,116,105,111,110,77,105,110,117,116,101,32,61,32,54,101,52,59,92,110,118,97,114,32,100,117,114,97,116,105,111,110,72,111,117,114,32,61,32,51,54,101,53,59,92,110,118,97,114,32,100,117,114,97,116,105,111,110,68,97,121,32,61,32,56,54,52,101,53,59,92,110,118,97,114,32,100,117,114,97,116,105,111,110,87,101,101,107,32,61,32,54,48,52,56,101,53,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,117,114,97,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,104,111,117,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,104,111,117,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,111,117,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,111,117,114,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,117,114,97,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,117,114,97,116,105,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,104,111,117,114,32,61,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,84,105,109,101,40,100,97,116,101,32,45,32,100,97,116,101,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,32,45,32,100,97,116,101,46,103,101,116,83,101,99,111,110,100,115,40,41,32,42,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,83,101,99,111,110,100,32,45,32,100,97,116,101,46,103,101,116,77,105,110,117,116,101,115,40,41,32,42,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,77,105,110,117,116,101,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,84,105,109,101,40,43,100,97,116,101,32,43,32,115,116,101,112,32,42,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,72,111,117,114,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,101,110,100,32,45,32,115,116,97,114,116,41,32,47,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,72,111,117,114,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,72,111,117,114,115,40,41,59,92,110,125,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,104,111,117,114,41,59,92,110,118,97,114,32,104,111,117,114,115,32,61,32,104,111,117,114,46,114,97,110,103,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,104,111,117,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,68,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,68,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,70,114,105,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,114,105,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,70,114,105,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,102,114,105,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,72,111,117,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,104,111,117,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,72,111,117,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,104,111,117,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,104,111,117,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,73,110,116,101,114,118,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,105,108,108,105,115,101,99,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,105,108,108,105,115,101,99,111,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,105,108,108,105,115,101,99,111,110,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,105,108,108,105,115,101,99,111,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,105,108,108,105,115,101,99,111,110,100,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,105,110,117,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,105,110,117,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,105,110,117,116,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,105,110,117,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,105,110,117,116,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,111,110,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,111,110,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,111,110,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,111,110,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,111,110,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,111,110,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,111,110,116,104,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,111,110,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,109,111,110,116,104,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,83,97,116,117,114,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,97,116,117,114,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,83,97,116,117,114,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,97,116,117,114,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,83,101,99,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,99,111,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,83,101,99,111,110,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,99,111,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,99,111,110,100,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,83,117,110,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,117,110,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,83,117,110,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,117,110,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,84,104,117,114,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,104,117,114,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,84,104,117,114,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,104,117,114,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,84,117,101,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,117,101,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,84,117,101,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,116,117,101,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,87,101,100,110,101,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,119,101,100,110,101,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,87,101,100,110,101,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,119,101,100,110,101,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,87,101,101,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,117,110,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,87,101,101,107,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,115,117,110,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,89,101,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,121,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,89,101,97,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,121,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,121,101,97,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,68,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,68,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,68,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,68,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,117,116,99,68,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,70,114,105,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,70,114,105,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,70,114,105,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,70,114,105,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,72,111,117,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,72,111,117,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,72,111,117,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,72,111,117,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,117,116,99,72,111,117,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,105,108,108,105,115,101,99,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,105,108,108,105,115,101,99,111,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,105,108,108,105,115,101,99,111,110,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,109,105,108,108,105,115,101,99,111,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,105,108,108,105,115,101,99,111,110,100,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,105,110,117,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,77,105,110,117,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,105,110,117,116,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,77,105,110,117,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,117,116,99,77,105,110,117,116,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,111,110,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,77,111,110,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,111,110,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,77,111,110,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,111,110,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,77,111,110,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,111,110,116,104,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,77,111,110,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,117,116,99,77,111,110,116,104,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,97,116,117,114,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,83,97,116,117,114,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,97,116,117,114,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,83,97,116,117,114,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,101,99,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,99,111,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,101,99,111,110,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,115,101,99,111,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,99,111,110,100,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,117,110,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,83,117,110,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,117,110,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,83,117,110,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,84,104,117,114,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,84,104,117,114,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,84,104,117,114,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,84,104,117,114,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,84,117,101,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,84,117,101,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,84,117,101,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,84,117,101,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,87,101,100,110,101,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,87,101,100,110,101,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,87,101,100,110,101,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,87,101,100,110,101,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,87,101,101,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,83,117,110,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,87,101,101,107,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,117,116,99,83,117,110,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,89,101,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,89,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,89,101,97,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,117,116,99,89,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,117,116,99,89,101,97,114,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,108,108,105,115,101,99,111,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,105,108,108,105,115,101,99,111,110,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,105,108,108,105,115,101,99,111,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,99,111,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,99,111,110,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,115,101,99,111,110,100,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,105,110,117,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,105,110,117,116,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,105,110,117,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,104,111,117,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,104,111,117,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,104,111,117,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,97,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,119,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,119,101,101,107,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,119,101,101,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,111,110,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,111,110,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,111,110,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,121,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,121,101,97,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,121,101,97,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,99,77,105,110,117,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,117,116,99,77,105,110,117,116,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,77,105,110,117,116,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,99,72,111,117,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,117,116,99,72,111,117,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,72,111,117,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,99,68,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,117,116,99,68,97,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,68,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,99,87,101,101,107,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,117,116,99,87,101,101,107,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,87,101,101,107,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,99,77,111,110,116,104,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,117,116,99,77,111,110,116,104,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,77,111,110,116,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,99,89,101,97,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,117,116,99,89,101,97,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,89,101,97,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,101,119,73,110,116,101,114,118,97,108,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,116,48,32,61,32,110,101,119,32,68,97,116,101,44,92,110,32,32,32,32,116,49,32,61,32,110,101,119,32,68,97,116,101,59,92,110,92,110,102,117,110,99,116,105,111,110,32,110,101,119,73,110,116,101,114,118,97,108,40,102,108,111,111,114,105,44,32,111,102,102,115,101,116,105,44,32,99,111,117,110,116,44,32,102,105,101,108,100,41,32,123,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,116,101,114,118,97,108,40,100,97,116,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,108,111,111,114,105,40,100,97,116,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,61,61,61,32,48,32,63,32,110,101,119,32,68,97,116,101,32,58,32,110,101,119,32,68,97,116,101,40,43,100,97,116,101,41,41,44,32,100,97,116,101,59,92,110,32,32,125,92,110,92,110,32,32,105,110,116,101,114,118,97,108,46,102,108,111,111,114,32,61,32,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,108,111,111,114,105,40,100,97,116,101,32,61,32,110,101,119,32,68,97,116,101,40,43,100,97,116,101,41,41,44,32,100,97,116,101,59,92,110,32,32,125,59,92,110,92,110,32,32,105,110,116,101,114,118,97,108,46,99,101,105,108,32,61,32,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,108,111,111,114,105,40,100,97,116,101,32,61,32,110,101,119,32,68,97,116,101,40,100,97,116,101,32,45,32,49,41,41,44,32,111,102,102,115,101,116,105,40,100,97,116,101,44,32,49,41,44,32,102,108,111,111,114,105,40,100,97,116,101,41,44,32,100,97,116,101,59,92,110,32,32,125,59,92,110,92,110,32,32,105,110,116,101,114,118,97,108,46,114,111,117,110,100,32,61,32,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,32,32,118,97,114,32,100,48,32,61,32,105,110,116,101,114,118,97,108,40,100,97,116,101,41,44,92,110,32,32,32,32,32,32,32,32,100,49,32,61,32,105,110,116,101,114,118,97,108,46,99,101,105,108,40,100,97,116,101,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,100,97,116,101,32,45,32,100,48,32,60,32,100,49,32,45,32,100,97,116,101,32,63,32,100,48,32,58,32,100,49,59,92,110,32,32,125,59,92,110,92,110,32,32,105,110,116,101,114,118,97,108,46,111,102,102,115,101,116,32,61,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,111,102,102,115,101,116,105,40,100,97,116,101,32,61,32,110,101,119,32,68,97,116,101,40,43,100,97,116,101,41,44,32,115,116,101,112,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,77,97,116,104,46,102,108,111,111,114,40,115,116,101,112,41,41,44,32,100,97,116,101,59,92,110,32,32,125,59,92,110,92,110,32,32,105,110,116,101,114,118,97,108,46,114,97,110,103,101,32,61,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,115,116,111,112,44,32,115,116,101,112,41,32,123,92,110,32,32,32,32,118,97,114,32,114,97,110,103,101,32,61,32,91,93,44,32,112,114,101,118,105,111,117,115,59,92,110,32,32,32,32,115,116,97,114,116,32,61,32,105,110,116,101,114,118,97,108,46,99,101,105,108,40,115,116,97,114,116,41,59,92,110,32,32,32,32,115,116,101,112,32,61,32,115,116,101,112,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,77,97,116,104,46,102,108,111,111,114,40,115,116,101,112,41,59,92,110,32,32,32,32,105,102,32,40,33,40,115,116,97,114,116,32,60,32,115,116,111,112,41,32,124,124,32,33,40,115,116,101,112,32,62,32,48,41,41,32,114,101,116,117,114,110,32,114,97,110,103,101,59,32,47,47,32,97,108,115,111,32,104,97,110,100,108,101,115,32,73,110,118,97,108,105,100,32,68,97,116,101,92,110,32,32,32,32,100,111,32,114,97,110,103,101,46,112,117,115,104,40,112,114,101,118,105,111,117,115,32,61,32,110,101,119,32,68,97,116,101,40,43,115,116,97,114,116,41,41,44,32,111,102,102,115,101,116,105,40,115,116,97,114,116,44,32,115,116,101,112,41,44,32,102,108,111,111,114,105,40,115,116,97,114,116,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,112,114,101,118,105,111,117,115,32,60,32,115,116,97,114,116,32,38,38,32,115,116,97,114,116,32,60,32,115,116,111,112,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,97,110,103,101,59,92,110,32,32,125,59,92,110,92,110,32,32,105,110,116,101,114,118,97,108,46,102,105,108,116,101,114,32,61,32,102,117,110,99,116,105,111,110,40,116,101,115,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,73,110,116,101,114,118,97,108,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,100,97,116,101,32,62,61,32,100,97,116,101,41,32,119,104,105,108,101,32,40,102,108,111,111,114,105,40,100,97,116,101,41,44,32,33,116,101,115,116,40,100,97,116,101,41,41,32,100,97,116,101,46,115,101,116,84,105,109,101,40,100,97,116,101,32,45,32,49,41,59,92,110,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,100,97,116,101,32,62,61,32,100,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,116,101,112,32,60,32,48,41,32,119,104,105,108,101,32,40,43,43,115,116,101,112,32,60,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,111,102,102,115,101,116,105,40,100,97,116,101,44,32,45,49,41,44,32,33,116,101,115,116,40,100,97,116,101,41,41,32,123,125,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,101,109,112,116,121,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,119,104,105,108,101,32,40,45,45,115,116,101,112,32,62,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,111,102,102,115,101,116,105,40,100,97,116,101,44,32,43,49,41,44,32,33,116,101,115,116,40,100,97,116,101,41,41,32,123,125,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,101,109,112,116,121,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,105,102,32,40,99,111,117,110,116,41,32,123,92,110,32,32,32,32,105,110,116,101,114,118,97,108,46,99,111,117,110,116,32,61,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,32,32,116,48,46,115,101,116,84,105,109,101,40,43,115,116,97,114,116,41,44,32,116,49,46,115,101,116,84,105,109,101,40,43,101,110,100,41,59,92,110,32,32,32,32,32,32,102,108,111,111,114,105,40,116,48,41,44,32,102,108,111,111,114,105,40,116,49,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,102,108,111,111,114,40,99,111,117,110,116,40,116,48,44,32,116,49,41,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,105,110,116,101,114,118,97,108,46,101,118,101,114,121,32,61,32,102,117,110,99,116,105,111,110,40,115,116,101,112,41,32,123,92,110,32,32,32,32,32,32,115,116,101,112,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,116,101,112,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,105,115,70,105,110,105,116,101,40,115,116,101,112,41,32,124,124,32,33,40,115,116,101,112,32,62,32,48,41,32,63,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,58,32,33,40,115,116,101,112,32,62,32,49,41,32,63,32,105,110,116,101,114,118,97,108,92,110,32,32,32,32,32,32,32,32,32,32,58,32,105,110,116,101,114,118,97,108,46,102,105,108,116,101,114,40,102,105,101,108,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,102,117,110,99,116,105,111,110,40,100,41,32,123,32,114,101,116,117,114,110,32,102,105,101,108,100,40,100,41,32,37,32,115,116,101,112,32,61,61,61,32,48,59,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,102,117,110,99,116,105,111,110,40,100,41,32,123,32,114,101,116,117,114,110,32,105,110,116,101,114,118,97,108,46,99,111,117,110,116,40,48,44,32,100,41,32,37,32,115,116,101,112,32,61,61,61,32,48,59,32,125,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,105,110,116,101,114,118,97,108,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,105,108,108,105,115,101,99,111,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,105,108,108,105,115,101,99,111,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,105,108,108,105,115,101,99,111,110,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,105,108,108,105,115,101,99,111,110,100,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,109,105,108,108,105,115,101,99,111,110,100,32,61,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,47,47,32,110,111,111,112,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,84,105,109,101,40,43,100,97,116,101,32,43,32,115,116,101,112,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,110,100,32,45,32,115,116,97,114,116,59,92,110,125,41,59,92,110,92,110,47,47,32,65,110,32,111,112,116,105,109,105,122,101,100,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,102,111,114,32,116,104,105,115,32,115,105,109,112,108,101,32,99,97,115,101,46,92,110,109,105,108,108,105,115,101,99,111,110,100,46,101,118,101,114,121,32,61,32,102,117,110,99,116,105,111,110,40,107,41,32,123,92,110,32,32,107,32,61,32,77,97,116,104,46,102,108,111,111,114,40,107,41,59,92,110,32,32,105,102,32,40,33,105,115,70,105,110,105,116,101,40,107,41,32,124,124,32,33,40,107,32,62,32,48,41,41,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,105,102,32,40,33,40,107,32,62,32,49,41,41,32,114,101,116,117,114,110,32,109,105,108,108,105,115,101,99,111,110,100,59,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,32,32,100,97,116,101,46,115,101,116,84,105,109,101,40,77,97,116,104,46,102,108,111,111,114,40,100,97,116,101,32,47,32,107,41,32,42,32,107,41,59,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,32,32,100,97,116,101,46,115,101,116,84,105,109,101,40,43,100,97,116,101,32,43,32,115,116,101,112,32,42,32,107,41,59,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,101,110,100,32,45,32,115,116,97,114,116,41,32,47,32,107,59,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,109,105,108,108,105,115,101,99,111,110,100,41,59,92,110,118,97,114,32,109,105,108,108,105,115,101,99,111,110,100,115,32,61,32,109,105,108,108,105,115,101,99,111,110,100,46,114,97,110,103,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,105,108,108,105,115,101,99,111,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,105,110,117,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,105,110,117,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,105,110,117,116,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,105,110,117,116,101,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,117,114,97,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,117,114,97,116,105,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,109,105,110,117,116,101,32,61,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,84,105,109,101,40,100,97,116,101,32,45,32,100,97,116,101,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,32,45,32,100,97,116,101,46,103,101,116,83,101,99,111,110,100,115,40,41,32,42,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,83,101,99,111,110,100,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,84,105,109,101,40,43,100,97,116,101,32,43,32,115,116,101,112,32,42,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,77,105,110,117,116,101,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,101,110,100,32,45,32,115,116,97,114,116,41,32,47,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,77,105,110,117,116,101,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,77,105,110,117,116,101,115,40,41,59,92,110,125,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,109,105,110,117,116,101,41,59,92,110,118,97,114,32,109,105,110,117,116,101,115,32,61,32,109,105,110,117,116,101,46,114,97,110,103,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,105,110,117,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,111,110,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,111,110,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,111,110,116,104,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,111,110,116,104,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,109,111,110,116,104,32,61,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,68,97,116,101,40,49,41,59,92,110,32,32,100,97,116,101,46,115,101,116,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,77,111,110,116,104,40,100,97,116,101,46,103,101,116,77,111,110,116,104,40,41,32,43,32,115,116,101,112,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,110,100,46,103,101,116,77,111,110,116,104,40,41,32,45,32,115,116,97,114,116,46,103,101,116,77,111,110,116,104,40,41,32,43,32,40,101,110,100,46,103,101,116,70,117,108,108,89,101,97,114,40,41,32,45,32,115,116,97,114,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,41,32,42,32,49,50,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,77,111,110,116,104,40,41,59,92,110,125,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,109,111,110,116,104,41,59,92,110,118,97,114,32,109,111,110,116,104,115,32,61,32,109,111,110,116,104,46,114,97,110,103,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,109,111,110,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,115,101,99,111,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,115,101,99,111,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,99,111,110,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,99,111,110,100,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,117,114,97,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,117,114,97,116,105,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,115,101,99,111,110,100,32,61,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,84,105,109,101,40,100,97,116,101,32,45,32,100,97,116,101,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,84,105,109,101,40,43,100,97,116,101,32,43,32,115,116,101,112,32,42,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,83,101,99,111,110,100,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,101,110,100,32,45,32,115,116,97,114,116,41,32,47,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,83,101,99,111,110,100,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,59,92,110,125,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,115,101,99,111,110,100,41,59,92,110,118,97,114,32,115,101,99,111,110,100,115,32,61,32,115,101,99,111,110,100,46,114,97,110,103,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,115,101,99,111,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,68,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,68,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,68,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,68,97,121,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,117,114,97,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,117,114,97,116,105,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,117,116,99,68,97,121,32,61,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,68,97,116,101,40,100,97,116,101,46,103,101,116,85,84,67,68,97,116,101,40,41,32,43,32,115,116,101,112,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,101,110,100,32,45,32,115,116,97,114,116,41,32,47,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,68,97,121,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,85,84,67,68,97,116,101,40,41,32,45,32,49,59,92,110,125,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,117,116,99,68,97,121,41,59,92,110,118,97,114,32,117,116,99,68,97,121,115,32,61,32,117,116,99,68,97,121,46,114,97,110,103,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,68,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,72,111,117,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,72,111,117,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,72,111,117,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,72,111,117,114,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,117,114,97,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,117,114,97,116,105,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,117,116,99,72,111,117,114,32,61,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,77,105,110,117,116,101,115,40,48,44,32,48,44,32,48,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,84,105,109,101,40,43,100,97,116,101,32,43,32,115,116,101,112,32,42,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,72,111,117,114,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,101,110,100,32,45,32,115,116,97,114,116,41,32,47,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,72,111,117,114,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,85,84,67,72,111,117,114,115,40,41,59,92,110,125,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,117,116,99,72,111,117,114,41,59,92,110,118,97,114,32,117,116,99,72,111,117,114,115,32,61,32,117,116,99,72,111,117,114,46,114,97,110,103,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,72,111,117,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,77,105,110,117,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,77,105,110,117,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,105,110,117,116,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,77,105,110,117,116,101,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,117,114,97,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,117,114,97,116,105,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,117,116,99,77,105,110,117,116,101,32,61,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,83,101,99,111,110,100,115,40,48,44,32,48,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,84,105,109,101,40,43,100,97,116,101,32,43,32,115,116,101,112,32,42,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,77,105,110,117,116,101,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,101,110,100,32,45,32,115,116,97,114,116,41,32,47,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,77,105,110,117,116,101,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,59,92,110,125,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,117,116,99,77,105,110,117,116,101,41,59,92,110,118,97,114,32,117,116,99,77,105,110,117,116,101,115,32,61,32,117,116,99,77,105,110,117,116,101,46,114,97,110,103,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,77,105,110,117,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,77,111,110,116,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,77,111,110,116,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,111,110,116,104,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,77,111,110,116,104,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,117,116,99,77,111,110,116,104,32,61,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,68,97,116,101,40,49,41,59,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,77,111,110,116,104,40,100,97,116,101,46,103,101,116,85,84,67,77,111,110,116,104,40,41,32,43,32,115,116,101,112,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,110,100,46,103,101,116,85,84,67,77,111,110,116,104,40,41,32,45,32,115,116,97,114,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,32,43,32,40,101,110,100,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,32,45,32,115,116,97,114,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,41,32,42,32,49,50,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,85,84,67,77,111,110,116,104,40,41,59,92,110,125,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,117,116,99,77,111,110,116,104,41,59,92,110,118,97,114,32,117,116,99,77,111,110,116,104,115,32,61,32,117,116,99,77,111,110,116,104,46,114,97,110,103,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,77,111,110,116,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,87,101,101,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,87,101,101,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,70,114,105,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,70,114,105,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,70,114,105,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,70,114,105,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,111,110,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,77,111,110,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,111,110,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,77,111,110,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,97,116,117,114,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,83,97,116,117,114,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,97,116,117,114,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,83,97,116,117,114,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,117,110,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,83,117,110,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,117,110,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,83,117,110,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,84,104,117,114,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,84,104,117,114,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,84,104,117,114,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,84,104,117,114,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,84,117,101,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,84,117,101,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,84,117,101,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,84,117,101,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,87,101,100,110,101,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,87,101,100,110,101,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,87,101,100,110,101,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,87,101,100,110,101,115,100,97,121,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,117,114,97,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,117,114,97,116,105,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,117,116,99,87,101,101,107,100,97,121,40,105,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,32,32,100,97,116,101,46,115,101,116,85,84,67,68,97,116,101,40,100,97,116,101,46,103,101,116,85,84,67,68,97,116,101,40,41,32,45,32,40,100,97,116,101,46,103,101,116,85,84,67,68,97,121,40,41,32,43,32,55,32,45,32,105,41,32,37,32,55,41,59,92,110,32,32,32,32,100,97,116,101,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,32,32,100,97,116,101,46,115,101,116,85,84,67,68,97,116,101,40,100,97,116,101,46,103,101,116,85,84,67,68,97,116,101,40,41,32,43,32,115,116,101,112,32,42,32,55,41,59,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,101,110,100,32,45,32,115,116,97,114,116,41,32,47,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,87,101,101,107,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,118,97,114,32,117,116,99,83,117,110,100,97,121,32,61,32,117,116,99,87,101,101,107,100,97,121,40,48,41,59,92,110,118,97,114,32,117,116,99,77,111,110,100,97,121,32,61,32,117,116,99,87,101,101,107,100,97,121,40,49,41,59,92,110,118,97,114,32,117,116,99,84,117,101,115,100,97,121,32,61,32,117,116,99,87,101,101,107,100,97,121,40,50,41,59,92,110,118,97,114,32,117,116,99,87,101,100,110,101,115,100,97,121,32,61,32,117,116,99,87,101,101,107,100,97,121,40,51,41,59,92,110,118,97,114,32,117,116,99,84,104,117,114,115,100,97,121,32,61,32,117,116,99,87,101,101,107,100,97,121,40,52,41,59,92,110,118,97,114,32,117,116,99,70,114,105,100,97,121,32,61,32,117,116,99,87,101,101,107,100,97,121,40,53,41,59,92,110,118,97,114,32,117,116,99,83,97,116,117,114,100,97,121,32,61,32,117,116,99,87,101,101,107,100,97,121,40,54,41,59,92,110,92,110,118,97,114,32,117,116,99,83,117,110,100,97,121,115,32,61,32,117,116,99,83,117,110,100,97,121,46,114,97,110,103,101,59,92,110,118,97,114,32,117,116,99,77,111,110,100,97,121,115,32,61,32,117,116,99,77,111,110,100,97,121,46,114,97,110,103,101,59,92,110,118,97,114,32,117,116,99,84,117,101,115,100,97,121,115,32,61,32,117,116,99,84,117,101,115,100,97,121,46,114,97,110,103,101,59,92,110,118,97,114,32,117,116,99,87,101,100,110,101,115,100,97,121,115,32,61,32,117,116,99,87,101,100,110,101,115,100,97,121,46,114,97,110,103,101,59,92,110,118,97,114,32,117,116,99,84,104,117,114,115,100,97,121,115,32,61,32,117,116,99,84,104,117,114,115,100,97,121,46,114,97,110,103,101,59,92,110,118,97,114,32,117,116,99,70,114,105,100,97,121,115,32,61,32,117,116,99,70,114,105,100,97,121,46,114,97,110,103,101,59,92,110,118,97,114,32,117,116,99,83,97,116,117,114,100,97,121,115,32,61,32,117,116,99,83,97,116,117,114,100,97,121,46,114,97,110,103,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,87,101,101,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,89,101,97,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,89,101,97,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,89,101,97,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,116,99,89,101,97,114,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,117,116,99,89,101,97,114,32,61,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,77,111,110,116,104,40,48,44,32,49,41,59,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,100,97,116,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,32,43,32,115,116,101,112,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,110,100,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,32,45,32,115,116,97,114,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,59,92,110,125,41,59,92,110,92,110,47,47,32,65,110,32,111,112,116,105,109,105,122,101,100,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,102,111,114,32,116,104,105,115,32,115,105,109,112,108,101,32,99,97,115,101,46,92,110,117,116,99,89,101,97,114,46,101,118,101,114,121,32,61,32,102,117,110,99,116,105,111,110,40,107,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,105,115,70,105,110,105,116,101,40,107,32,61,32,77,97,116,104,46,102,108,111,111,114,40,107,41,41,32,124,124,32,33,40,107,32,62,32,48,41,32,63,32,110,117,108,108,32,58,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,32,32,100,97,116,101,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,77,97,116,104,46,102,108,111,111,114,40,100,97,116,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,32,47,32,107,41,32,42,32,107,41,59,92,110,32,32,32,32,100,97,116,101,46,115,101,116,85,84,67,77,111,110,116,104,40,48,44,32,49,41,59,92,110,32,32,32,32,100,97,116,101,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,32,32,100,97,116,101,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,100,97,116,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,32,43,32,115,116,101,112,32,42,32,107,41,59,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,117,116,99,89,101,97,114,41,59,92,110,118,97,114,32,117,116,99,89,101,97,114,115,32,61,32,117,116,99,89,101,97,114,46,114,97,110,103,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,117,116,99,89,101,97,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,119,101,101,107,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,119,101,101,107,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,114,105,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,114,105,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,114,105,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,114,105,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,111,110,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,111,110,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,111,110,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,111,110,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,97,116,117,114,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,97,116,117,114,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,97,116,117,114,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,97,116,117,114,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,117,110,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,117,110,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,117,110,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,117,110,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,104,117,114,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,104,117,114,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,104,117,114,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,104,117,114,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,117,101,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,117,101,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,117,101,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,117,101,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,119,101,100,110,101,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,119,101,100,110,101,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,119,101,100,110,101,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,119,101,100,110,101,115,100,97,121,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,117,114,97,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,100,117,114,97,116,105,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,119,101,101,107,100,97,121,40,105,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,32,32,100,97,116,101,46,115,101,116,68,97,116,101,40,100,97,116,101,46,103,101,116,68,97,116,101,40,41,32,45,32,40,100,97,116,101,46,103,101,116,68,97,121,40,41,32,43,32,55,32,45,32,105,41,32,37,32,55,41,59,92,110,32,32,32,32,100,97,116,101,46,115,101,116,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,32,32,100,97,116,101,46,115,101,116,68,97,116,101,40,100,97,116,101,46,103,101,116,68,97,116,101,40,41,32,43,32,115,116,101,112,32,42,32,55,41,59,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,101,110,100,32,45,32,115,116,97,114,116,32,45,32,40,101,110,100,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,32,45,32,115,116,97,114,116,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,41,32,42,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,77,105,110,117,116,101,41,32,47,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,117,114,97,116,105,111,110,87,101,101,107,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,118,97,114,32,115,117,110,100,97,121,32,61,32,119,101,101,107,100,97,121,40,48,41,59,92,110,118,97,114,32,109,111,110,100,97,121,32,61,32,119,101,101,107,100,97,121,40,49,41,59,92,110,118,97,114,32,116,117,101,115,100,97,121,32,61,32,119,101,101,107,100,97,121,40,50,41,59,92,110,118,97,114,32,119,101,100,110,101,115,100,97,121,32,61,32,119,101,101,107,100,97,121,40,51,41,59,92,110,118,97,114,32,116,104,117,114,115,100,97,121,32,61,32,119,101,101,107,100,97,121,40,52,41,59,92,110,118,97,114,32,102,114,105,100,97,121,32,61,32,119,101,101,107,100,97,121,40,53,41,59,92,110,118,97,114,32,115,97,116,117,114,100,97,121,32,61,32,119,101,101,107,100,97,121,40,54,41,59,92,110,92,110,118,97,114,32,115,117,110,100,97,121,115,32,61,32,115,117,110,100,97,121,46,114,97,110,103,101,59,92,110,118,97,114,32,109,111,110,100,97,121,115,32,61,32,109,111,110,100,97,121,46,114,97,110,103,101,59,92,110,118,97,114,32,116,117,101,115,100,97,121,115,32,61,32,116,117,101,115,100,97,121,46,114,97,110,103,101,59,92,110,118,97,114,32,119,101,100,110,101,115,100,97,121,115,32,61,32,119,101,100,110,101,115,100,97,121,46,114,97,110,103,101,59,92,110,118,97,114,32,116,104,117,114,115,100,97,121,115,32,61,32,116,104,117,114,115,100,97,121,46,114,97,110,103,101,59,92,110,118,97,114,32,102,114,105,100,97,121,115,32,61,32,102,114,105,100,97,121,46,114,97,110,103,101,59,92,110,118,97,114,32,115,97,116,117,114,100,97,121,115,32,61,32,115,97,116,117,114,100,97,121,46,114,97,110,103,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,119,101,101,107,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,121,101,97,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,121,101,97,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,121,101,97,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,121,101,97,114,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,121,101,97,114,32,61,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,77,111,110,116,104,40,48,44,32,49,41,59,92,110,32,32,100,97,116,101,46,115,101,116,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,100,97,116,101,46,115,101,116,70,117,108,108,89,101,97,114,40,100,97,116,101,46,103,101,116,70,117,108,108,89,101,97,114,40,41,32,43,32,115,116,101,112,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,110,100,46,103,101,116,70,117,108,108,89,101,97,114,40,41,32,45,32,115,116,97,114,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,59,92,110,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,70,117,108,108,89,101,97,114,40,41,59,92,110,125,41,59,92,110,92,110,47,47,32,65,110,32,111,112,116,105,109,105,122,101,100,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,102,111,114,32,116,104,105,115,32,115,105,109,112,108,101,32,99,97,115,101,46,92,110,121,101,97,114,46,101,118,101,114,121,32,61,32,102,117,110,99,116,105,111,110,40,107,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,105,115,70,105,110,105,116,101,40,107,32,61,32,77,97,116,104,46,102,108,111,111,114,40,107,41,41,32,124,124,32,33,40,107,32,62,32,48,41,32,63,32,110,117,108,108,32,58,32,40,48,44,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,100,97,116,101,41,32,123,92,110,32,32,32,32,100,97,116,101,46,115,101,116,70,117,108,108,89,101,97,114,40,77,97,116,104,46,102,108,111,111,114,40,100,97,116,101,46,103,101,116,70,117,108,108,89,101,97,114,40,41,32,47,32,107,41,32,42,32,107,41,59,92,110,32,32,32,32,100,97,116,101,46,115,101,116,77,111,110,116,104,40,48,44,32,49,41,59,92,110,32,32,32,32,100,97,116,101,46,115,101,116,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,100,97,116,101,44,32,115,116,101,112,41,32,123,92,110,32,32,32,32,100,97,116,101,46,115,101,116,70,117,108,108,89,101,97,114,40,100,97,116,101,46,103,101,116,70,117,108,108,89,101,97,114,40,41,32,43,32,115,116,101,112,32,42,32,107,41,59,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,121,101,97,114,41,59,92,110,118,97,114,32,121,101,97,114,115,32,61,32,121,101,97,114,46,114,97,110,103,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,121,101,97,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,118,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,105,109,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,110,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,111,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,105,109,101,111,117,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,105,109,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,105,109,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,114,70,108,117,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,105,109,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,105,109,101,114,70,108,117,115,104,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,105,109,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,105,109,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,116,105,109,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,105,109,101,111,117,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,105,109,101,111,117,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,116,105,109,101,111,117,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,118,97,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,118,97,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,105,109,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,105,109,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,116,105,109,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,97,108,108,98,97,99,107,44,32,100,101,108,97,121,44,32,116,105,109,101,41,32,123,92,110,32,32,118,97,114,32,116,32,61,32,110,101,119,32,95,116,105,109,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,84,105,109,101,114,44,32,116,111,116,97,108,32,61,32,100,101,108,97,121,59,92,110,32,32,105,102,32,40,100,101,108,97,121,32,61,61,32,110,117,108,108,41,32,114,101,116,117,114,110,32,116,46,114,101,115,116,97,114,116,40,99,97,108,108,98,97,99,107,44,32,100,101,108,97,121,44,32,116,105,109,101,41,44,32,116,59,92,110,32,32,100,101,108,97,121,32,61,32,43,100,101,108,97,121,44,32,116,105,109,101,32,61,32,116,105,109,101,32,61,61,32,110,117,108,108,32,63,32,40,48,44,95,116,105,109,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,110,111,119,41,40,41,32,58,32,43,116,105,109,101,59,92,110,32,32,116,46,114,101,115,116,97,114,116,40,102,117,110,99,116,105,111,110,32,116,105,99,107,40,101,108,97,112,115,101,100,41,32,123,92,110,32,32,32,32,101,108,97,112,115,101,100,32,43,61,32,116,111,116,97,108,59,92,110,32,32,32,32,116,46,114,101,115,116,97,114,116,40,116,105,99,107,44,32,116,111,116,97,108,32,43,61,32,100,101,108,97,121,44,32,116,105,109,101,41,59,92,110,32,32,32,32,99,97,108,108,98,97,99,107,40,101,108,97,112,115,101,100,41,59,92,110,32,32,125,44,32,100,101,108,97,121,44,32,116,105,109,101,41,59,92,110,32,32,114,101,116,117,114,110,32,116,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,105,110,116,101,114,118,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,116,105,109,101,111,117,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,116,105,109,101,111,117,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,105,109,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,105,109,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,116,105,109,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,99,97,108,108,98,97,99,107,44,32,100,101,108,97,121,44,32,116,105,109,101,41,32,123,92,110,32,32,118,97,114,32,116,32,61,32,110,101,119,32,95,116,105,109,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,84,105,109,101,114,59,92,110,32,32,100,101,108,97,121,32,61,32,100,101,108,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,43,100,101,108,97,121,59,92,110,32,32,116,46,114,101,115,116,97,114,116,40,102,117,110,99,116,105,111,110,40,101,108,97,112,115,101,100,41,32,123,92,110,32,32,32,32,116,46,115,116,111,112,40,41,59,92,110,32,32,32,32,99,97,108,108,98,97,99,107,40,101,108,97,112,115,101,100,32,43,32,100,101,108,97,121,41,59,92,110,32,32,125,44,32,100,101,108,97,121,44,32,116,105,109,101,41,59,92,110,32,32,114,101,116,117,114,110,32,116,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,116,105,109,101,111,117,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,116,105,109,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,116,105,109,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,105,109,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,84,105,109,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,105,109,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,114,70,108,117,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,105,109,101,114,70,108,117,115,104,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,102,114,97,109,101,32,61,32,48,44,32,47,47,32,105,115,32,97,110,32,97,110,105,109,97,116,105,111,110,32,102,114,97,109,101,32,112,101,110,100,105,110,103,63,92,110,32,32,32,32,116,105,109,101,111,117,116,32,61,32,48,44,32,47,47,32,105,115,32,97,32,116,105,109,101,111,117,116,32,112,101,110,100,105,110,103,63,92,110,32,32,32,32,105,110,116,101,114,118,97,108,32,61,32,48,44,32,47,47,32,97,114,101,32,97,110,121,32,116,105,109,101,114,115,32,97,99,116,105,118,101,63,92,110,32,32,32,32,112,111,107,101,68,101,108,97,121,32,61,32,49,48,48,48,44,32,47,47,32,104,111,119,32,102,114,101,113,117,101,110,116,108,121,32,119,101,32,99,104,101,99,107,32,102,111,114,32,99,108,111,99,107,32,115,107,101,119,92,110,32,32,32,32,116,97,115,107,72,101,97,100,44,92,110,32,32,32,32,116,97,115,107,84,97,105,108,44,92,110,32,32,32,32,99,108,111,99,107,76,97,115,116,32,61,32,48,44,92,110,32,32,32,32,99,108,111,99,107,78,111,119,32,61,32,48,44,92,110,32,32,32,32,99,108,111,99,107,83,107,101,119,32,61,32,48,44,92,110,32,32,32,32,99,108,111,99,107,32,61,32,116,121,112,101,111,102,32,112,101,114,102,111,114,109,97,110,99,101,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,32,38,38,32,112,101,114,102,111,114,109,97,110,99,101,46,110,111,119,32,63,32,112,101,114,102,111,114,109,97,110,99,101,32,58,32,68,97,116,101,44,92,110,32,32,32,32,115,101,116,70,114,97,109,101,32,61,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,32,38,38,32,119,105,110,100,111,119,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,32,63,32,119,105,110,100,111,119,46,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,32,58,32,102,117,110,99,116,105,111,110,40,102,41,32,123,32,115,101,116,84,105,109,101,111,117,116,40,102,44,32,49,55,41,59,32,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,119,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,99,108,111,99,107,78,111,119,32,124,124,32,40,115,101,116,70,114,97,109,101,40,99,108,101,97,114,78,111,119,41,44,32,99,108,111,99,107,78,111,119,32,61,32,99,108,111,99,107,46,110,111,119,40,41,32,43,32,99,108,111,99,107,83,107,101,119,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,101,97,114,78,111,119,40,41,32,123,92,110,32,32,99,108,111,99,107,78,111,119,32,61,32,48,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,84,105,109,101,114,40,41,32,123,92,110,32,32,116,104,105,115,46,95,99,97,108,108,32,61,92,110,32,32,116,104,105,115,46,95,116,105,109,101,32,61,92,110,32,32,116,104,105,115,46,95,110,101,120,116,32,61,32,110,117,108,108,59,92,110,125,92,110,92,110,84,105,109,101,114,46,112,114,111,116,111,116,121,112,101,32,61,32,116,105,109,101,114,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,84,105,109,101,114,44,92,110,32,32,114,101,115,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,99,97,108,108,98,97,99,107,44,32,100,101,108,97,121,44,32,116,105,109,101,41,32,123,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,99,97,108,108,98,97,99,107,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,99,97,108,108,98,97,99,107,32,105,115,32,110,111,116,32,97,32,102,117,110,99,116,105,111,110,92,34,41,59,92,110,32,32,32,32,116,105,109,101,32,61,32,40,116,105,109,101,32,61,61,32,110,117,108,108,32,63,32,110,111,119,40,41,32,58,32,43,116,105,109,101,41,32,43,32,40,100,101,108,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,43,100,101,108,97,121,41,59,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,110,101,120,116,32,38,38,32,116,97,115,107,84,97,105,108,32,33,61,61,32,116,104,105,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,97,115,107,84,97,105,108,41,32,116,97,115,107,84,97,105,108,46,95,110,101,120,116,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,101,108,115,101,32,116,97,115,107,72,101,97,100,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,116,97,115,107,84,97,105,108,32,61,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,104,105,115,46,95,99,97,108,108,32,61,32,99,97,108,108,98,97,99,107,59,92,110,32,32,32,32,116,104,105,115,46,95,116,105,109,101,32,61,32,116,105,109,101,59,92,110,32,32,32,32,115,108,101,101,112,40,41,59,92,110,32,32,125,44,92,110,32,32,115,116,111,112,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,99,97,108,108,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,99,97,108,108,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,116,105,109,101,32,61,32,73,110,102,105,110,105,116,121,59,92,110,32,32,32,32,32,32,115,108,101,101,112,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,116,105,109,101,114,40,99,97,108,108,98,97,99,107,44,32,100,101,108,97,121,44,32,116,105,109,101,41,32,123,92,110,32,32,118,97,114,32,116,32,61,32,110,101,119,32,84,105,109,101,114,59,92,110,32,32,116,46,114,101,115,116,97,114,116,40,99,97,108,108,98,97,99,107,44,32,100,101,108,97,121,44,32,116,105,109,101,41,59,92,110,32,32,114,101,116,117,114,110,32,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,105,109,101,114,70,108,117,115,104,40,41,32,123,92,110,32,32,110,111,119,40,41,59,32,47,47,32,71,101,116,32,116,104,101,32,99,117,114,114,101,110,116,32,116,105,109,101,44,32,105,102,32,110,111,116,32,97,108,114,101,97,100,121,32,115,101,116,46,92,110,32,32,43,43,102,114,97,109,101,59,32,47,47,32,80,114,101,116,101,110,100,32,119,101,226,128,153,118,101,32,115,101,116,32,97,110,32,97,108,97,114,109,44,32,105,102,32,119,101,32,104,97,118,101,110,226,128,153,116,32,97,108,114,101,97,100,121,46,92,110,32,32,118,97,114,32,116,32,61,32,116,97,115,107,72,101,97,100,44,32,101,59,92,110,32,32,119,104,105,108,101,32,40,116,41,32,123,92,110,32,32,32,32,105,102,32,40,40,101,32,61,32,99,108,111,99,107,78,111,119,32,45,32,116,46,95,116,105,109,101,41,32,62,61,32,48,41,32,116,46,95,99,97,108,108,46,99,97,108,108,40,110,117,108,108,44,32,101,41,59,92,110,32,32,32,32,116,32,61,32,116,46,95,110,101,120,116,59,92,110,32,32,125,92,110,32,32,45,45,102,114,97,109,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,119,97,107,101,40,41,32,123,92,110,32,32,99,108,111,99,107,78,111,119,32,61,32,40,99,108,111,99,107,76,97,115,116,32,61,32,99,108,111,99,107,46,110,111,119,40,41,41,32,43,32,99,108,111,99,107,83,107,101,119,59,92,110,32,32,102,114,97,109,101,32,61,32,116,105,109,101,111,117,116,32,61,32,48,59,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,116,105,109,101,114,70,108,117,115,104,40,41,59,92,110,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,102,114,97,109,101,32,61,32,48,59,92,110,32,32,32,32,110,97,112,40,41,59,92,110,32,32,32,32,99,108,111,99,107,78,111,119,32,61,32,48,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,111,107,101,40,41,32,123,92,110,32,32,118,97,114,32,110,111,119,32,61,32,99,108,111,99,107,46,110,111,119,40,41,44,32,100,101,108,97,121,32,61,32,110,111,119,32,45,32,99,108,111,99,107,76,97,115,116,59,92,110,32,32,105,102,32,40,100,101,108,97,121,32,62,32,112,111,107,101,68,101,108,97,121,41,32,99,108,111,99,107,83,107,101,119,32,45,61,32,100,101,108,97,121,44,32,99,108,111,99,107,76,97,115,116,32,61,32,110,111,119,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,97,112,40,41,32,123,92,110,32,32,118,97,114,32,116,48,44,32,116,49,32,61,32,116,97,115,107,72,101,97,100,44,32,116,50,44,32,116,105,109,101,32,61,32,73,110,102,105,110,105,116,121,59,92,110,32,32,119,104,105,108,101,32,40,116,49,41,32,123,92,110,32,32,32,32,105,102,32,40,116,49,46,95,99,97,108,108,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,105,109,101,32,62,32,116,49,46,95,116,105,109,101,41,32,116,105,109,101,32,61,32,116,49,46,95,116,105,109,101,59,92,110,32,32,32,32,32,32,116,48,32,61,32,116,49,44,32,116,49,32,61,32,116,49,46,95,110,101,120,116,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,50,32,61,32,116,49,46,95,110,101,120,116,44,32,116,49,46,95,110,101,120,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,49,32,61,32,116,48,32,63,32,116,48,46,95,110,101,120,116,32,61,32,116,50,32,58,32,116,97,115,107,72,101,97,100,32,61,32,116,50,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,116,97,115,107,84,97,105,108,32,61,32,116,48,59,92,110,32,32,115,108,101,101,112,40,116,105,109,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,108,101,101,112,40,116,105,109,101,41,32,123,92,110,32,32,105,102,32,40,102,114,97,109,101,41,32,114,101,116,117,114,110,59,32,47,47,32,83,111,111,110,101,115,116,32,97,108,97,114,109,32,97,108,114,101,97,100,121,32,115,101,116,44,32,111,114,32,119,105,108,108,32,98,101,46,92,110,32,32,105,102,32,40,116,105,109,101,111,117,116,41,32,116,105,109,101,111,117,116,32,61,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,105,109,101,111,117,116,41,59,92,110,32,32,118,97,114,32,100,101,108,97,121,32,61,32,116,105,109,101,32,45,32,99,108,111,99,107,78,111,119,59,32,47,47,32,83,116,114,105,99,116,108,121,32,108,101,115,115,32,116,104,97,110,32,105,102,32,119,101,32,114,101,99,111,109,112,117,116,101,100,32,99,108,111,99,107,78,111,119,46,92,110,32,32,105,102,32,40,100,101,108,97,121,32,62,32,50,52,41,32,123,92,110,32,32,32,32,105,102,32,40,116,105,109,101,32,60,32,73,110,102,105,110,105,116,121,41,32,116,105,109,101,111,117,116,32,61,32,115,101,116,84,105,109,101,111,117,116,40,119,97,107,101,44,32,116,105,109,101,32,45,32,99,108,111,99,107,46,110,111,119,40,41,32,45,32,99,108,111,99,107,83,107,101,119,41,59,92,110,32,32,32,32,105,102,32,40,105,110,116,101,114,118,97,108,41,32,105,110,116,101,114,118,97,108,32,61,32,99,108,101,97,114,73,110,116,101,114,118,97,108,40,105,110,116,101,114,118,97,108,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,105,102,32,40,33,105,110,116,101,114,118,97,108,41,32,99,108,111,99,107,76,97,115,116,32,61,32,99,108,111,99,107,46,110,111,119,40,41,44,32,105,110,116,101,114,118,97,108,32,61,32,115,101,116,73,110,116,101,114,118,97,108,40,112,111,107,101,44,32,112,111,107,101,68,101,108,97,121,41,59,92,110,32,32,32,32,102,114,97,109,101,32,61,32,49,44,32,115,101,116,70,114,97,109,101,40,119,97,107,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,116,105,109,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,97,99,116,105,118,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,97,99,116,105,118,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,105,116,105,111,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,97,110,115,105,116,105,111,110,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,105,116,105,111,110,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,114,111,111,116,32,61,32,91,110,117,108,108,93,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,111,100,101,44,32,110,97,109,101,41,32,123,92,110,32,32,118,97,114,32,115,99,104,101,100,117,108,101,115,32,61,32,110,111,100,101,46,95,95,116,114,97,110,115,105,116,105,111,110,44,92,110,32,32,32,32,32,32,115,99,104,101,100,117,108,101,44,92,110,32,32,32,32,32,32,105,59,92,110,92,110,32,32,105,102,32,40,115,99,104,101,100,117,108,101,115,41,32,123,92,110,32,32,32,32,110,97,109,101,32,61,32,110,97,109,101,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,110,97,109,101,32,43,32,92,34,92,34,59,92,110,32,32,32,32,102,111,114,32,40,105,32,105,110,32,115,99,104,101,100,117,108,101,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,115,99,104,101,100,117,108,101,32,61,32,115,99,104,101,100,117,108,101,115,91,105,93,41,46,115,116,97,116,101,32,62,32,95,116,114,97,110,115,105,116,105,111,110,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,83,67,72,69,68,85,76,69,68,32,38,38,32,115,99,104,101,100,117,108,101,46,110,97,109,101,32,61,61,61,32,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,95,116,114,97,110,115,105,116,105,111,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,84,114,97,110,115,105,116,105,111,110,40,91,91,110,111,100,101,93,93,44,32,114,111,111,116,44,32,110,97,109,101,44,32,43,105,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,97,99,116,105,118,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,99,116,105,118,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,97,99,116,105,118,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,114,117,112,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,105,110,116,101,114,114,117,112,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,97,110,115,105,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,97,110,115,105,116,105,111,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,105,111,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,105,116,105,111,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,97,110,115,105,116,105,111,110,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,99,116,105,118,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,99,116,105,118,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,97,99,116,105,118,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,114,117,112,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,114,117,112,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,105,110,116,101,114,114,117,112,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,105,110,116,101,114,114,117,112,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,105,110,116,101,114,114,117,112,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,105,116,105,111,110,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,111,100,101,44,32,110,97,109,101,41,32,123,92,110,32,32,118,97,114,32,115,99,104,101,100,117,108,101,115,32,61,32,110,111,100,101,46,95,95,116,114,97,110,115,105,116,105,111,110,44,92,110,32,32,32,32,32,32,115,99,104,101,100,117,108,101,44,92,110,32,32,32,32,32,32,97,99,116,105,118,101,44,92,110,32,32,32,32,32,32,101,109,112,116,121,32,61,32,116,114,117,101,44,92,110,32,32,32,32,32,32,105,59,92,110,92,110,32,32,105,102,32,40,33,115,99,104,101,100,117,108,101,115,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,110,97,109,101,32,61,32,110,97,109,101,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,110,97,109,101,32,43,32,92,34,92,34,59,92,110,92,110,32,32,102,111,114,32,40,105,32,105,110,32,115,99,104,101,100,117,108,101,115,41,32,123,92,110,32,32,32,32,105,102,32,40,40,115,99,104,101,100,117,108,101,32,61,32,115,99,104,101,100,117,108,101,115,91,105,93,41,46,110,97,109,101,32,33,61,61,32,110,97,109,101,41,32,123,32,101,109,112,116,121,32,61,32,102,97,108,115,101,59,32,99,111,110,116,105,110,117,101,59,32,125,92,110,32,32,32,32,97,99,116,105,118,101,32,61,32,115,99,104,101,100,117,108,101,46,115,116,97,116,101,32,62,32,95,116,114,97,110,115,105,116,105,111,110,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,83,84,65,82,84,73,78,71,32,38,38,32,115,99,104,101,100,117,108,101,46,115,116,97,116,101,32,60,32,95,116,114,97,110,115,105,116,105,111,110,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,78,68,73,78,71,59,92,110,32,32,32,32,115,99,104,101,100,117,108,101,46,115,116,97,116,101,32,61,32,95,116,114,97,110,115,105,116,105,111,110,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,69,78,68,69,68,59,92,110,32,32,32,32,115,99,104,101,100,117,108,101,46,116,105,109,101,114,46,115,116,111,112,40,41,59,92,110,32,32,32,32,115,99,104,101,100,117,108,101,46,111,110,46,99,97,108,108,40,97,99,116,105,118,101,32,63,32,92,34,105,110,116,101,114,114,117,112,116,92,34,32,58,32,92,34,99,97,110,99,101,108,92,34,44,32,110,111,100,101,44,32,110,111,100,101,46,95,95,100,97,116,97,95,95,44,32,115,99,104,101,100,117,108,101,46,105,110,100,101,120,44,32,115,99,104,101,100,117,108,101,46,103,114,111,117,112,41,59,92,110,32,32,32,32,100,101,108,101,116,101,32,115,99,104,101,100,117,108,101,115,91,105,93,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,101,109,112,116,121,41,32,100,101,108,101,116,101,32,110,111,100,101,46,95,95,116,114,97,110,115,105,116,105,111,110,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,105,110,116,101,114,114,117,112,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,114,117,112,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,114,117,112,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,116,101,114,114,117,112,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,105,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,97,110,115,105,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,116,114,97,110,115,105,116,105,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,112,114,111,116,111,116,121,112,101,46,105,110,116,101,114,114,117,112,116,32,61,32,95,105,110,116,101,114,114,117,112,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,112,114,111,116,111,116,121,112,101,46,116,114,97,110,115,105,116,105,111,110,32,61,32,95,116,114,97,110,115,105,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,116,101,114,114,117,112,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,116,101,114,114,117,112,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,114,117,112,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,105,110,116,101,114,114,117,112,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,105,110,116,101,114,114,117,112,116,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,41,32,123,92,110,32,32,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,32,123,92,110,32,32,32,32,40,48,44,95,105,110,116,101,114,114,117,112,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,104,105,115,44,32,110,97,109,101,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,116,101,114,114,117,112,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,116,114,97,110,115,105,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,116,114,97,110,115,105,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,105,116,105,111,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,97,110,115,105,116,105,111,110,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,105,116,105,111,110,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,101,97,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,99,117,98,105,99,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,116,105,109,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,100,101,102,97,117,108,116,84,105,109,105,110,103,32,61,32,123,92,110,32,32,116,105,109,101,58,32,110,117,108,108,44,32,47,47,32,83,101,116,32,111,110,32,117,115,101,46,92,110,32,32,100,101,108,97,121,58,32,48,44,92,110,32,32,100,117,114,97,116,105,111,110,58,32,50,53,48,44,92,110,32,32,101,97,115,101,58,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,99,117,98,105,99,73,110,79,117,116,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,104,101,114,105,116,40,110,111,100,101,44,32,105,100,41,32,123,92,110,32,32,118,97,114,32,116,105,109,105,110,103,59,92,110,32,32,119,104,105,108,101,32,40,33,40,116,105,109,105,110,103,32,61,32,110,111,100,101,46,95,95,116,114,97,110,115,105,116,105,111,110,41,32,124,124,32,33,40,116,105,109,105,110,103,32,61,32,116,105,109,105,110,103,91,105,100,93,41,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,110,111,100,101,32,61,32,110,111,100,101,46,112,97,114,101,110,116,78,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,102,97,117,108,116,84,105,109,105,110,103,46,116,105,109,101,32,61,32,40,48,44,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,110,111,119,41,40,41,44,32,100,101,102,97,117,108,116,84,105,109,105,110,103,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,105,109,105,110,103,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,41,32,123,92,110,32,32,118,97,114,32,105,100,44,92,110,32,32,32,32,32,32,116,105,109,105,110,103,59,92,110,92,110,32,32,105,102,32,40,110,97,109,101,32,105,110,115,116,97,110,99,101,111,102,32,95,116,114,97,110,115,105,116,105,111,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,84,114,97,110,115,105,116,105,111,110,41,32,123,92,110,32,32,32,32,105,100,32,61,32,110,97,109,101,46,95,105,100,44,32,110,97,109,101,32,61,32,110,97,109,101,46,95,110,97,109,101,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,105,100,32,61,32,40,48,44,95,116,114,97,110,115,105,116,105,111,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,110,101,119,73,100,41,40,41,44,32,40,116,105,109,105,110,103,32,61,32,100,101,102,97,117,108,116,84,105,109,105,110,103,41,46,116,105,109,101,32,61,32,40,48,44,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,110,111,119,41,40,41,44,32,110,97,109,101,32,61,32,110,97,109,101,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,110,97,109,101,32,43,32,92,34,92,34,59,92,110,32,32,125,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,44,32,109,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,44,32,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,106,93,44,32,110,32,61,32,103,114,111,117,112,46,108,101,110,103,116,104,44,32,110,111,100,101,44,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,116,114,97,110,115,105,116,105,111,110,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,111,100,101,44,32,110,97,109,101,44,32,105,100,44,32,105,44,32,103,114,111,117,112,44,32,116,105,109,105,110,103,32,124,124,32,105,110,104,101,114,105,116,40,110,111,100,101,44,32,105,100,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,95,116,114,97,110,115,105,116,105,111,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,84,114,97,110,115,105,116,105,111,110,40,103,114,111,117,112,115,44,32,116,104,105,115,46,95,112,97,114,101,110,116,115,44,32,110,97,109,101,44,32,105,100,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,116,114,97,110,115,105,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,97,116,116,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,97,116,116,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,105,110,116,101,114,112,111,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,116,114,97,110,115,102,111,114,109,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,110,97,109,101,115,112,97,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,119,101,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,119,101,101,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,119,101,101,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,112,111,108,97,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,112,111,108,97,116,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,116,101,114,112,111,108,97,116,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,82,101,109,111,118,101,40,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,110,97,109,101,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,82,101,109,111,118,101,78,83,40,102,117,108,108,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,102,117,108,108,110,97,109,101,46,115,112,97,99,101,44,32,102,117,108,108,110,97,109,101,46,108,111,99,97,108,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,67,111,110,115,116,97,110,116,40,110,97,109,101,44,32,105,110,116,101,114,112,111,108,97,116,101,44,32,118,97,108,117,101,49,41,32,123,92,110,32,32,118,97,114,32,115,116,114,105,110,103,48,48,44,92,110,32,32,32,32,32,32,115,116,114,105,110,103,49,32,61,32,118,97,108,117,101,49,32,43,32,92,34,92,34,44,92,110,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,48,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,114,105,110,103,48,32,61,32,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,110,97,109,101,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,48,32,61,61,61,32,115,116,114,105,110,103,49,32,63,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,58,32,115,116,114,105,110,103,48,32,61,61,61,32,115,116,114,105,110,103,48,48,32,63,32,105,110,116,101,114,112,111,108,97,116,101,48,92,110,32,32,32,32,32,32,32,32,58,32,105,110,116,101,114,112,111,108,97,116,101,48,32,61,32,105,110,116,101,114,112,111,108,97,116,101,40,115,116,114,105,110,103,48,48,32,61,32,115,116,114,105,110,103,48,44,32,118,97,108,117,101,49,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,67,111,110,115,116,97,110,116,78,83,40,102,117,108,108,110,97,109,101,44,32,105,110,116,101,114,112,111,108,97,116,101,44,32,118,97,108,117,101,49,41,32,123,92,110,32,32,118,97,114,32,115,116,114,105,110,103,48,48,44,92,110,32,32,32,32,32,32,115,116,114,105,110,103,49,32,61,32,118,97,108,117,101,49,32,43,32,92,34,92,34,44,92,110,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,48,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,114,105,110,103,48,32,61,32,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,78,83,40,102,117,108,108,110,97,109,101,46,115,112,97,99,101,44,32,102,117,108,108,110,97,109,101,46,108,111,99,97,108,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,48,32,61,61,61,32,115,116,114,105,110,103,49,32,63,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,58,32,115,116,114,105,110,103,48,32,61,61,61,32,115,116,114,105,110,103,48,48,32,63,32,105,110,116,101,114,112,111,108,97,116,101,48,92,110,32,32,32,32,32,32,32,32,58,32,105,110,116,101,114,112,111,108,97,116,101,48,32,61,32,105,110,116,101,114,112,111,108,97,116,101,40,115,116,114,105,110,103,48,48,32,61,32,115,116,114,105,110,103,48,44,32,118,97,108,117,101,49,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,70,117,110,99,116,105,111,110,40,110,97,109,101,44,32,105,110,116,101,114,112,111,108,97,116,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,115,116,114,105,110,103,48,48,44,92,110,32,32,32,32,32,32,115,116,114,105,110,103,49,48,44,92,110,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,48,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,114,105,110,103,48,44,32,118,97,108,117,101,49,32,61,32,118,97,108,117,101,40,116,104,105,115,41,44,32,115,116,114,105,110,103,49,59,92,110,32,32,32,32,105,102,32,40,118,97,108,117,101,49,32,61,61,32,110,117,108,108,41,32,114,101,116,117,114,110,32,118,111,105,100,32,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,110,97,109,101,41,59,92,110,32,32,32,32,115,116,114,105,110,103,48,32,61,32,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,110,97,109,101,41,59,92,110,32,32,32,32,115,116,114,105,110,103,49,32,61,32,118,97,108,117,101,49,32,43,32,92,34,92,34,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,48,32,61,61,61,32,115,116,114,105,110,103,49,32,63,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,58,32,115,116,114,105,110,103,48,32,61,61,61,32,115,116,114,105,110,103,48,48,32,38,38,32,115,116,114,105,110,103,49,32,61,61,61,32,115,116,114,105,110,103,49,48,32,63,32,105,110,116,101,114,112,111,108,97,116,101,48,92,110,32,32,32,32,32,32,32,32,58,32,40,115,116,114,105,110,103,49,48,32,61,32,115,116,114,105,110,103,49,44,32,105,110,116,101,114,112,111,108,97,116,101,48,32,61,32,105,110,116,101,114,112,111,108,97,116,101,40,115,116,114,105,110,103,48,48,32,61,32,115,116,114,105,110,103,48,44,32,118,97,108,117,101,49,41,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,70,117,110,99,116,105,111,110,78,83,40,102,117,108,108,110,97,109,101,44,32,105,110,116,101,114,112,111,108,97,116,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,115,116,114,105,110,103,48,48,44,92,110,32,32,32,32,32,32,115,116,114,105,110,103,49,48,44,92,110,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,48,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,114,105,110,103,48,44,32,118,97,108,117,101,49,32,61,32,118,97,108,117,101,40,116,104,105,115,41,44,32,115,116,114,105,110,103,49,59,92,110,32,32,32,32,105,102,32,40,118,97,108,117,101,49,32,61,61,32,110,117,108,108,41,32,114,101,116,117,114,110,32,118,111,105,100,32,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,102,117,108,108,110,97,109,101,46,115,112,97,99,101,44,32,102,117,108,108,110,97,109,101,46,108,111,99,97,108,41,59,92,110,32,32,32,32,115,116,114,105,110,103,48,32,61,32,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,78,83,40,102,117,108,108,110,97,109,101,46,115,112,97,99,101,44,32,102,117,108,108,110,97,109,101,46,108,111,99,97,108,41,59,92,110,32,32,32,32,115,116,114,105,110,103,49,32,61,32,118,97,108,117,101,49,32,43,32,92,34,92,34,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,48,32,61,61,61,32,115,116,114,105,110,103,49,32,63,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,58,32,115,116,114,105,110,103,48,32,61,61,61,32,115,116,114,105,110,103,48,48,32,38,38,32,115,116,114,105,110,103,49,32,61,61,61,32,115,116,114,105,110,103,49,48,32,63,32,105,110,116,101,114,112,111,108,97,116,101,48,92,110,32,32,32,32,32,32,32,32,58,32,40,115,116,114,105,110,103,49,48,32,61,32,115,116,114,105,110,103,49,44,32,105,110,116,101,114,112,111,108,97,116,101,48,32,61,32,105,110,116,101,114,112,111,108,97,116,101,40,115,116,114,105,110,103,48,48,32,61,32,115,116,114,105,110,103,48,44,32,118,97,108,117,101,49,41,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,102,117,108,108,110,97,109,101,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,97,109,101,41,44,32,105,32,61,32,102,117,108,108,110,97,109,101,32,61,61,61,32,92,34,116,114,97,110,115,102,111,114,109,92,34,32,63,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,83,118,103,32,58,32,95,105,110,116,101,114,112,111,108,97,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,97,116,116,114,84,119,101,101,110,40,110,97,109,101,44,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,92,110,32,32,32,32,32,32,63,32,40,102,117,108,108,110,97,109,101,46,108,111,99,97,108,32,63,32,97,116,116,114,70,117,110,99,116,105,111,110,78,83,32,58,32,97,116,116,114,70,117,110,99,116,105,111,110,41,40,102,117,108,108,110,97,109,101,44,32,105,44,32,40,48,44,95,116,119,101,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,119,101,101,110,86,97,108,117,101,41,40,116,104,105,115,44,32,92,34,97,116,116,114,46,92,34,32,43,32,110,97,109,101,44,32,118,97,108,117,101,41,41,92,110,32,32,32,32,32,32,58,32,118,97,108,117,101,32,61,61,32,110,117,108,108,32,63,32,40,102,117,108,108,110,97,109,101,46,108,111,99,97,108,32,63,32,97,116,116,114,82,101,109,111,118,101,78,83,32,58,32,97,116,116,114,82,101,109,111,118,101,41,40,102,117,108,108,110,97,109,101,41,92,110,32,32,32,32,32,32,58,32,40,102,117,108,108,110,97,109,101,46,108,111,99,97,108,32,63,32,97,116,116,114,67,111,110,115,116,97,110,116,78,83,32,58,32,97,116,116,114,67,111,110,115,116,97,110,116,41,40,102,117,108,108,110,97,109,101,44,32,105,44,32,118,97,108,117,101,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,97,116,116,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,97,116,116,114,84,119,101,101,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,97,116,116,114,84,119,101,101,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,110,97,109,101,115,112,97,99,101,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,73,110,116,101,114,112,111,108,97,116,101,40,110,97,109,101,44,32,105,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,110,97,109,101,44,32,105,46,99,97,108,108,40,116,104,105,115,44,32,116,41,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,73,110,116,101,114,112,111,108,97,116,101,78,83,40,102,117,108,108,110,97,109,101,44,32,105,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,102,117,108,108,110,97,109,101,46,115,112,97,99,101,44,32,102,117,108,108,110,97,109,101,46,108,111,99,97,108,44,32,105,46,99,97,108,108,40,116,104,105,115,44,32,116,41,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,84,119,101,101,110,78,83,40,102,117,108,108,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,116,48,44,32,105,48,59,92,110,32,32,102,117,110,99,116,105,111,110,32,116,119,101,101,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,118,97,108,117,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,105,102,32,40,105,32,33,61,61,32,105,48,41,32,116,48,32,61,32,40,105,48,32,61,32,105,41,32,38,38,32,97,116,116,114,73,110,116,101,114,112,111,108,97,116,101,78,83,40,102,117,108,108,110,97,109,101,44,32,105,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,48,59,92,110,32,32,125,92,110,32,32,116,119,101,101,110,46,95,118,97,108,117,101,32,61,32,118,97,108,117,101,59,92,110,32,32,114,101,116,117,114,110,32,116,119,101,101,110,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,114,84,119,101,101,110,40,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,116,48,44,32,105,48,59,92,110,32,32,102,117,110,99,116,105,111,110,32,116,119,101,101,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,118,97,108,117,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,105,102,32,40,105,32,33,61,61,32,105,48,41,32,116,48,32,61,32,40,105,48,32,61,32,105,41,32,38,38,32,97,116,116,114,73,110,116,101,114,112,111,108,97,116,101,40,110,97,109,101,44,32,105,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,48,59,92,110,32,32,125,92,110,32,32,116,119,101,101,110,46,95,118,97,108,117,101,32,61,32,118,97,108,117,101,59,92,110,32,32,114,101,116,117,114,110,32,116,119,101,101,110,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,107,101,121,32,61,32,92,34,97,116,116,114,46,92,34,32,43,32,110,97,109,101,59,92,110,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,50,41,32,114,101,116,117,114,110,32,40,107,101,121,32,61,32,116,104,105,115,46,116,119,101,101,110,40,107,101,121,41,41,32,38,38,32,107,101,121,46,95,118,97,108,117,101,59,92,110,32,32,105,102,32,40,118,97,108,117,101,32,61,61,32,110,117,108,108,41,32,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,107,101,121,44,32,110,117,108,108,41,59,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,92,110,32,32,118,97,114,32,102,117,108,108,110,97,109,101,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,97,109,101,41,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,107,101,121,44,32,40,102,117,108,108,110,97,109,101,46,108,111,99,97,108,32,63,32,97,116,116,114,84,119,101,101,110,78,83,32,58,32,97,116,116,114,84,119,101,101,110,41,40,102,117,108,108,110,97,109,101,44,32,118,97,108,117,101,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,97,116,116,114,84,119,101,101,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,100,101,108,97,121,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,100,101,108,97,121,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,99,104,101,100,117,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,108,97,121,70,117,110,99,116,105,111,110,40,105,100,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,105,116,41,40,116,104,105,115,44,32,105,100,41,46,100,101,108,97,121,32,61,32,43,118,97,108,117,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,108,97,121,67,111,110,115,116,97,110,116,40,105,100,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,32,43,118,97,108,117,101,44,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,105,116,41,40,116,104,105,115,44,32,105,100,41,46,100,101,108,97,121,32,61,32,118,97,108,117,101,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,105,100,32,61,32,116,104,105,115,46,95,105,100,59,92,110,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,92,110,32,32,32,32,32,32,63,32,116,104,105,115,46,101,97,99,104,40,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,92,110,32,32,32,32,32,32,32,32,32,32,63,32,100,101,108,97,121,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,58,32,100,101,108,97,121,67,111,110,115,116,97,110,116,41,40,105,100,44,32,118,97,108,117,101,41,41,92,110,32,32,32,32,32,32,58,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,41,40,116,104,105,115,46,110,111,100,101,40,41,44,32,105,100,41,46,100,101,108,97,121,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,100,101,108,97,121,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,100,117,114,97,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,100,117,114,97,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,99,104,101,100,117,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,100,117,114,97,116,105,111,110,70,117,110,99,116,105,111,110,40,105,100,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,116,41,40,116,104,105,115,44,32,105,100,41,46,100,117,114,97,116,105,111,110,32,61,32,43,118,97,108,117,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,117,114,97,116,105,111,110,67,111,110,115,116,97,110,116,40,105,100,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,32,43,118,97,108,117,101,44,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,116,41,40,116,104,105,115,44,32,105,100,41,46,100,117,114,97,116,105,111,110,32,61,32,118,97,108,117,101,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,105,100,32,61,32,116,104,105,115,46,95,105,100,59,92,110,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,92,110,32,32,32,32,32,32,63,32,116,104,105,115,46,101,97,99,104,40,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,92,110,32,32,32,32,32,32,32,32,32,32,63,32,100,117,114,97,116,105,111,110,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,58,32,100,117,114,97,116,105,111,110,67,111,110,115,116,97,110,116,41,40,105,100,44,32,118,97,108,117,101,41,41,92,110,32,32,32,32,32,32,58,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,41,40,116,104,105,115,46,110,111,100,101,40,41,44,32,105,100,41,46,100,117,114,97,116,105,111,110,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,100,117,114,97,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,101,97,115,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,101,97,115,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,99,104,101,100,117,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,101,97,115,101,67,111,110,115,116,97,110,116,40,105,100,44,32,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,116,41,40,116,104,105,115,44,32,105,100,41,46,101,97,115,101,32,61,32,118,97,108,117,101,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,105,100,32,61,32,116,104,105,115,46,95,105,100,59,92,110,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,92,110,32,32,32,32,32,32,63,32,116,104,105,115,46,101,97,99,104,40,101,97,115,101,67,111,110,115,116,97,110,116,40,105,100,44,32,118,97,108,117,101,41,41,92,110,32,32,32,32,32,32,58,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,41,40,116,104,105,115,46,110,111,100,101,40,41,44,32,105,100,41,46,101,97,115,101,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,101,97,115,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,101,110,100,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,101,110,100,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,99,104,101,100,117,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,111,110,48,44,32,111,110,49,44,32,116,104,97,116,32,61,32,116,104,105,115,44,32,105,100,32,61,32,116,104,97,116,46,95,105,100,44,32,115,105,122,101,32,61,32,116,104,97,116,46,115,105,122,101,40,41,59,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,118,97,114,32,99,97,110,99,101,108,32,61,32,123,118,97,108,117,101,58,32,114,101,106,101,99,116,125,44,92,110,32,32,32,32,32,32,32,32,101,110,100,32,61,32,123,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,105,102,32,40,45,45,115,105,122,101,32,61,61,61,32,48,41,32,114,101,115,111,108,118,101,40,41,59,32,125,125,59,92,110,92,110,32,32,32,32,116,104,97,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,99,104,101,100,117,108,101,32,61,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,116,41,40,116,104,105,115,44,32,105,100,41,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,32,61,32,115,99,104,101,100,117,108,101,46,111,110,59,92,110,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,105,115,32,110,111,100,101,32,115,104,97,114,101,100,32,97,32,100,105,115,112,97,116,99,104,32,119,105,116,104,32,116,104,101,32,112,114,101,118,105,111,117,115,32,110,111,100,101,44,92,110,32,32,32,32,32,32,47,47,32,106,117,115,116,32,97,115,115,105,103,110,32,116,104,101,32,117,112,100,97,116,101,100,32,115,104,97,114,101,100,32,100,105,115,112,97,116,99,104,32,97,110,100,32,119,101,226,128,153,114,101,32,100,111,110,101,33,92,110,32,32,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,99,111,112,121,45,111,110,45,119,114,105,116,101,46,92,110,32,32,32,32,32,32,105,102,32,40,111,110,32,33,61,61,32,111,110,48,41,32,123,92,110,32,32,32,32,32,32,32,32,111,110,49,32,61,32,40,111,110,48,32,61,32,111,110,41,46,99,111,112,121,40,41,59,92,110,32,32,32,32,32,32,32,32,111,110,49,46,95,46,99,97,110,99,101,108,46,112,117,115,104,40,99,97,110,99,101,108,41,59,92,110,32,32,32,32,32,32,32,32,111,110,49,46,95,46,105,110,116,101,114,114,117,112,116,46,112,117,115,104,40,99,97,110,99,101,108,41,59,92,110,32,32,32,32,32,32,32,32,111,110,49,46,95,46,101,110,100,46,112,117,115,104,40,101,110,100,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,115,99,104,101,100,117,108,101,46,111,110,32,61,32,111,110,49,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,101,110,100,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,102,105,108,116,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,102,105,108,116,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,109,97,116,99,104,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,109,97,116,99,104,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,109,97,116,99,104,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,109,97,116,99,104,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,109,97,116,99,104,41,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,44,32,109,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,44,32,115,117,98,103,114,111,117,112,115,32,61,32,110,101,119,32,65,114,114,97,121,40,109,41,44,32,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,106,93,44,32,110,32,61,32,103,114,111,117,112,46,108,101,110,103,116,104,44,32,115,117,98,103,114,111,117,112,32,61,32,115,117,98,103,114,111,117,112,115,91,106,93,32,61,32,91,93,44,32,110,111,100,101,44,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,41,32,38,38,32,109,97,116,99,104,46,99,97,108,108,40,110,111,100,101,44,32,110,111,100,101,46,95,95,100,97,116,97,95,95,44,32,105,44,32,103,114,111,117,112,41,41,32,123,92,110,32,32,32,32,32,32,32,32,115,117,98,103,114,111,117,112,46,112,117,115,104,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,84,114,97,110,115,105,116,105,111,110,40,115,117,98,103,114,111,117,112,115,44,32,116,104,105,115,46,95,112,97,114,101,110,116,115,44,32,116,104,105,115,46,95,110,97,109,101,44,32,116,104,105,115,46,95,105,100,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,102,105,108,116,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,114,97,110,115,105,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,84,114,97,110,115,105,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,114,97,110,115,105,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,101,119,73,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,101,119,73,100,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,116,116,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,116,116,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,97,116,116,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,116,116,114,84,119,101,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,97,116,116,114,84,119,101,101,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,97,116,116,114,84,119,101,101,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,101,108,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,101,108,97,121,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,100,101,108,97,121,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,117,114,97,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,100,117,114,97,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,97,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,97,115,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,101,97,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,102,105,108,116,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,102,105,108,116,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,102,105,108,116,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,101,114,103,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,109,101,114,103,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,109,101,114,103,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,109,111,118,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,101,109,111,118,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,114,101,109,111,118,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,101,108,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,65,108,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,65,108,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,101,108,101,99,116,65,108,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,101,108,101,99,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,101,108,101,99,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,101,108,101,99,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,121,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,121,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,116,121,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,121,108,101,84,119,101,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,121,108,101,84,119,101,101,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,116,121,108,101,84,119,101,101,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,101,120,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,101,120,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,101,120,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,101,120,116,84,119,101,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,101,120,116,84,119,101,101,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,101,120,116,84,119,101,101,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,105,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,97,110,115,105,116,105,111,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,114,97,110,115,105,116,105,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,119,101,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,119,101,101,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,119,101,101,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,110,100,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,101,110,100,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,105,100,32,61,32,48,59,92,110,92,110,102,117,110,99,116,105,111,110,32,84,114,97,110,115,105,116,105,111,110,40,103,114,111,117,112,115,44,32,112,97,114,101,110,116,115,44,32,110,97,109,101,44,32,105,100,41,32,123,92,110,32,32,116,104,105,115,46,95,103,114,111,117,112,115,32,61,32,103,114,111,117,112,115,59,92,110,32,32,116,104,105,115,46,95,112,97,114,101,110,116,115,32,61,32,112,97,114,101,110,116,115,59,92,110,32,32,116,104,105,115,46,95,110,97,109,101,32,61,32,110,97,109,101,59,92,110,32,32,116,104,105,115,46,95,105,100,32,61,32,105,100,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,105,116,105,111,110,40,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,46,116,114,97,110,115,105,116,105,111,110,40,110,97,109,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,101,119,73,100,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,43,43,105,100,59,92,110,125,92,110,92,110,118,97,114,32,115,101,108,101,99,116,105,111,110,95,112,114,111,116,111,116,121,112,101,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,84,114,97,110,115,105,116,105,111,110,46,112,114,111,116,111,116,121,112,101,32,61,32,116,114,97,110,115,105,116,105,111,110,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,84,114,97,110,115,105,116,105,111,110,44,92,110,32,32,115,101,108,101,99,116,58,32,95,115,101,108,101,99,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,115,101,108,101,99,116,65,108,108,58,32,95,115,101,108,101,99,116,65,108,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,102,105,108,116,101,114,58,32,95,102,105,108,116,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,109,101,114,103,101,58,32,95,109,101,114,103,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,115,101,108,101,99,116,105,111,110,58,32,95,115,101,108,101,99,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,116,114,97,110,115,105,116,105,111,110,58,32,95,116,114,97,110,115,105,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,99,97,108,108,58,32,115,101,108,101,99,116,105,111,110,95,112,114,111,116,111,116,121,112,101,46,99,97,108,108,44,92,110,32,32,110,111,100,101,115,58,32,115,101,108,101,99,116,105,111,110,95,112,114,111,116,111,116,121,112,101,46,110,111,100,101,115,44,92,110,32,32,110,111,100,101,58,32,115,101,108,101,99,116,105,111,110,95,112,114,111,116,111,116,121,112,101,46,110,111,100,101,44,92,110,32,32,115,105,122,101,58,32,115,101,108,101,99,116,105,111,110,95,112,114,111,116,111,116,121,112,101,46,115,105,122,101,44,92,110,32,32,101,109,112,116,121,58,32,115,101,108,101,99,116,105,111,110,95,112,114,111,116,111,116,121,112,101,46,101,109,112,116,121,44,92,110,32,32,101,97,99,104,58,32,115,101,108,101,99,116,105,111,110,95,112,114,111,116,111,116,121,112,101,46,101,97,99,104,44,92,110,32,32,111,110,58,32,95,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,97,116,116,114,58,32,95,97,116,116,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,97,116,116,114,84,119,101,101,110,58,32,95,97,116,116,114,84,119,101,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,115,116,121,108,101,58,32,95,115,116,121,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,115,116,121,108,101,84,119,101,101,110,58,32,95,115,116,121,108,101,84,119,101,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,116,101,120,116,58,32,95,116,101,120,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,116,101,120,116,84,119,101,101,110,58,32,95,116,101,120,116,84,119,101,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,114,101,109,111,118,101,58,32,95,114,101,109,111,118,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,116,119,101,101,110,58,32,95,116,119,101,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,100,101,108,97,121,58,32,95,100,101,108,97,121,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,100,117,114,97,116,105,111,110,58,32,95,100,117,114,97,116,105,111,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,101,97,115,101,58,32,95,101,97,115,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,101,110,100,58,32,95,101,110,100,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,116,101,114,112,111,108,97,116,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,116,101,114,112,111,108,97,116,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,108,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,99,111,108,111,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,105,110,116,101,114,112,111,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,110,117,109,98,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,105,110,116,101,114,112,111,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,114,103,98,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,105,110,116,101,114,112,111,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,115,116,114,105,110,103,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,97,44,32,98,41,32,123,92,110,32,32,118,97,114,32,99,59,92,110,32,32,114,101,116,117,114,110,32,40,116,121,112,101,111,102,32,98,32,61,61,61,32,92,34,110,117,109,98,101,114,92,34,32,63,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,32,32,32,32,58,32,98,32,105,110,115,116,97,110,99,101,111,102,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,63,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,32,32,32,32,58,32,40,99,32,61,32,40,48,44,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,98,41,41,32,63,32,40,98,32,61,32,99,44,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,32,32,32,32,32,32,58,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,97,44,32,98,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,116,101,114,112,111,108,97,116,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,109,101,114,103,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,109,101,114,103,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,116,114,97,110,115,105,116,105,111,110,41,32,123,92,110,32,32,105,102,32,40,116,114,97,110,115,105,116,105,111,110,46,95,105,100,32,33,61,61,32,116,104,105,115,46,95,105,100,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,115,48,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,44,32,103,114,111,117,112,115,49,32,61,32,116,114,97,110,115,105,116,105,111,110,46,95,103,114,111,117,112,115,44,32,109,48,32,61,32,103,114,111,117,112,115,48,46,108,101,110,103,116,104,44,32,109,49,32,61,32,103,114,111,117,112,115,49,46,108,101,110,103,116,104,44,32,109,32,61,32,77,97,116,104,46,109,105,110,40,109,48,44,32,109,49,41,44,32,109,101,114,103,101,115,32,61,32,110,101,119,32,65,114,114,97,121,40,109,48,41,44,32,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,48,32,61,32,103,114,111,117,112,115,48,91,106,93,44,32,103,114,111,117,112,49,32,61,32,103,114,111,117,112,115,49,91,106,93,44,32,110,32,61,32,103,114,111,117,112,48,46,108,101,110,103,116,104,44,32,109,101,114,103,101,32,61,32,109,101,114,103,101,115,91,106,93,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,32,110,111,100,101,44,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,32,61,32,103,114,111,117,112,48,91,105,93,32,124,124,32,103,114,111,117,112,49,91,105,93,41,32,123,92,110,32,32,32,32,32,32,32,32,109,101,114,103,101,91,105,93,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,111,114,32,40,59,32,106,32,60,32,109,48,59,32,43,43,106,41,32,123,92,110,32,32,32,32,109,101,114,103,101,115,91,106,93,32,61,32,103,114,111,117,112,115,48,91,106,93,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,84,114,97,110,115,105,116,105,111,110,40,109,101,114,103,101,115,44,32,116,104,105,115,46,95,112,97,114,101,110,116,115,44,32,116,104,105,115,46,95,110,97,109,101,44,32,116,104,105,115,46,95,105,100,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,109,101,114,103,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,99,104,101,100,117,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,97,114,116,40,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,110,97,109,101,32,43,32,92,34,92,34,41,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,92,115,43,47,41,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,116,46,105,110,100,101,120,79,102,40,92,34,46,92,34,41,59,92,110,32,32,32,32,105,102,32,40,105,32,62,61,32,48,41,32,116,32,61,32,116,46,115,108,105,99,101,40,48,44,32,105,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,33,116,32,124,124,32,116,32,61,61,61,32,92,34,115,116,97,114,116,92,34,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,111,110,70,117,110,99,116,105,111,110,40,105,100,44,32,110,97,109,101,44,32,108,105,115,116,101,110,101,114,41,32,123,92,110,32,32,118,97,114,32,111,110,48,44,32,111,110,49,44,32,115,105,116,32,61,32,115,116,97,114,116,40,110,97,109,101,41,32,63,32,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,105,116,32,58,32,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,116,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,99,104,101,100,117,108,101,32,61,32,115,105,116,40,116,104,105,115,44,32,105,100,41,44,92,110,32,32,32,32,32,32,32,32,111,110,32,61,32,115,99,104,101,100,117,108,101,46,111,110,59,92,110,92,110,32,32,32,32,47,47,32,73,102,32,116,104,105,115,32,110,111,100,101,32,115,104,97,114,101,100,32,97,32,100,105,115,112,97,116,99,104,32,119,105,116,104,32,116,104,101,32,112,114,101,118,105,111,117,115,32,110,111,100,101,44,92,110,32,32,32,32,47,47,32,106,117,115,116,32,97,115,115,105,103,110,32,116,104,101,32,117,112,100,97,116,101,100,32,115,104,97,114,101,100,32,100,105,115,112,97,116,99,104,32,97,110,100,32,119,101,226,128,153,114,101,32,100,111,110,101,33,92,110,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,99,111,112,121,45,111,110,45,119,114,105,116,101,46,92,110,32,32,32,32,105,102,32,40,111,110,32,33,61,61,32,111,110,48,41,32,40,111,110,49,32,61,32,40,111,110,48,32,61,32,111,110,41,46,99,111,112,121,40,41,41,46,111,110,40,110,97,109,101,44,32,108,105,115,116,101,110,101,114,41,59,92,110,92,110,32,32,32,32,115,99,104,101,100,117,108,101,46,111,110,32,61,32,111,110,49,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,44,32,108,105,115,116,101,110,101,114,41,32,123,92,110,32,32,118,97,114,32,105,100,32,61,32,116,104,105,115,46,95,105,100,59,92,110,92,110,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,50,92,110,32,32,32,32,32,32,63,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,41,40,116,104,105,115,46,110,111,100,101,40,41,44,32,105,100,41,46,111,110,46,111,110,40,110,97,109,101,41,92,110,32,32,32,32,32,32,58,32,116,104,105,115,46,101,97,99,104,40,111,110,70,117,110,99,116,105,111,110,40,105,100,44,32,110,97,109,101,44,32,108,105,115,116,101,110,101,114,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,114,101,109,111,118,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,114,101,109,111,118,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,70,117,110,99,116,105,111,110,40,105,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,105,110,32,116,104,105,115,46,95,95,116,114,97,110,115,105,116,105,111,110,41,32,105,102,32,40,43,105,32,33,61,61,32,105,100,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,112,97,114,101,110,116,41,32,112,97,114,101,110,116,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,92,34,101,110,100,46,114,101,109,111,118,101,92,34,44,32,114,101,109,111,118,101,70,117,110,99,116,105,111,110,40,116,104,105,115,46,95,105,100,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,114,101,109,111,118,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,82,69,65,84,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,67,82,69,65,84,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,78,68,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,78,68,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,78,68,73,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,78,68,73,78,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,85,78,78,73,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,85,78,78,73,78,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,67,72,69,68,85,76,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,67,72,69,68,85,76,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,84,65,82,84,69,68,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,84,65,82,84,69,68,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,84,65,82,84,73,78,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,84,65,82,84,73,78,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,105,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,110,105,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,100,105,115,112,97,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,100,105,115,112,97,116,99,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,105,115,112,97,116,99,104,47,115,114,99,47,100,105,115,112,97,116,99,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,116,105,109,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,116,105,109,101,111,117,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,101,109,112,116,121,79,110,32,61,32,40,48,44,100,51,95,100,105,115,112,97,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,115,116,97,114,116,92,34,44,32,92,34,101,110,100,92,34,44,32,92,34,99,97,110,99,101,108,92,34,44,32,92,34,105,110,116,101,114,114,117,112,116,92,34,41,59,92,110,118,97,114,32,101,109,112,116,121,84,119,101,101,110,32,61,32,91,93,59,92,110,92,110,118,97,114,32,67,82,69,65,84,69,68,32,61,32,48,59,92,110,118,97,114,32,83,67,72,69,68,85,76,69,68,32,61,32,49,59,92,110,118,97,114,32,83,84,65,82,84,73,78,71,32,61,32,50,59,92,110,118,97,114,32,83,84,65,82,84,69,68,32,61,32,51,59,92,110,118,97,114,32,82,85,78,78,73,78,71,32,61,32,52,59,92,110,118,97,114,32,69,78,68,73,78,71,32,61,32,53,59,92,110,118,97,114,32,69,78,68,69,68,32,61,32,54,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,111,100,101,44,32,110,97,109,101,44,32,105,100,44,32,105,110,100,101,120,44,32,103,114,111,117,112,44,32,116,105,109,105,110,103,41,32,123,92,110,32,32,118,97,114,32,115,99,104,101,100,117,108,101,115,32,61,32,110,111,100,101,46,95,95,116,114,97,110,115,105,116,105,111,110,59,92,110,32,32,105,102,32,40,33,115,99,104,101,100,117,108,101,115,41,32,110,111,100,101,46,95,95,116,114,97,110,115,105,116,105,111,110,32,61,32,123,125,59,92,110,32,32,101,108,115,101,32,105,102,32,40,105,100,32,105,110,32,115,99,104,101,100,117,108,101,115,41,32,114,101,116,117,114,110,59,92,110,32,32,99,114,101,97,116,101,40,110,111,100,101,44,32,105,100,44,32,123,92,110,32,32,32,32,110,97,109,101,58,32,110,97,109,101,44,92,110,32,32,32,32,105,110,100,101,120,58,32,105,110,100,101,120,44,32,47,47,32,70,111,114,32,99,111,110,116,101,120,116,32,100,117,114,105,110,103,32,99,97,108,108,98,97,99,107,46,92,110,32,32,32,32,103,114,111,117,112,58,32,103,114,111,117,112,44,32,47,47,32,70,111,114,32,99,111,110,116,101,120,116,32,100,117,114,105,110,103,32,99,97,108,108,98,97,99,107,46,92,110,32,32,32,32,111,110,58,32,101,109,112,116,121,79,110,44,92,110,32,32,32,32,116,119,101,101,110,58,32,101,109,112,116,121,84,119,101,101,110,44,92,110,32,32,32,32,116,105,109,101,58,32,116,105,109,105,110,103,46,116,105,109,101,44,92,110,32,32,32,32,100,101,108,97,121,58,32,116,105,109,105,110,103,46,100,101,108,97,121,44,92,110,32,32,32,32,100,117,114,97,116,105,111,110,58,32,116,105,109,105,110,103,46,100,117,114,97,116,105,111,110,44,92,110,32,32,32,32,101,97,115,101,58,32,116,105,109,105,110,103,46,101,97,115,101,44,92,110,32,32,32,32,116,105,109,101,114,58,32,110,117,108,108,44,92,110,32,32,32,32,115,116,97,116,101,58,32,67,82,69,65,84,69,68,92,110,32,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,40,110,111,100,101,44,32,105,100,41,32,123,92,110,32,32,118,97,114,32,115,99,104,101,100,117,108,101,32,61,32,103,101,116,40,110,111,100,101,44,32,105,100,41,59,92,110,32,32,105,102,32,40,115,99,104,101,100,117,108,101,46,115,116,97,116,101,32,62,32,67,82,69,65,84,69,68,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,116,111,111,32,108,97,116,101,59,32,97,108,114,101,97,100,121,32,115,99,104,101,100,117,108,101,100,92,34,41,59,92,110,32,32,114,101,116,117,114,110,32,115,99,104,101,100,117,108,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,40,110,111,100,101,44,32,105,100,41,32,123,92,110,32,32,118,97,114,32,115,99,104,101,100,117,108,101,32,61,32,103,101,116,40,110,111,100,101,44,32,105,100,41,59,92,110,32,32,105,102,32,40,115,99,104,101,100,117,108,101,46,115,116,97,116,101,32,62,32,83,84,65,82,84,69,68,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,116,111,111,32,108,97,116,101,59,32,97,108,114,101,97,100,121,32,114,117,110,110,105,110,103,92,34,41,59,92,110,32,32,114,101,116,117,114,110,32,115,99,104,101,100,117,108,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,40,110,111,100,101,44,32,105,100,41,32,123,92,110,32,32,118,97,114,32,115,99,104,101,100,117,108,101,32,61,32,110,111,100,101,46,95,95,116,114,97,110,115,105,116,105,111,110,59,92,110,32,32,105,102,32,40,33,115,99,104,101,100,117,108,101,32,124,124,32,33,40,115,99,104,101,100,117,108,101,32,61,32,115,99,104,101,100,117,108,101,91,105,100,93,41,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,116,114,97,110,115,105,116,105,111,110,32,110,111,116,32,102,111,117,110,100,92,34,41,59,92,110,32,32,114,101,116,117,114,110,32,115,99,104,101,100,117,108,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,40,110,111,100,101,44,32,105,100,44,32,115,101,108,102,41,32,123,92,110,32,32,118,97,114,32,115,99,104,101,100,117,108,101,115,32,61,32,110,111,100,101,46,95,95,116,114,97,110,115,105,116,105,111,110,44,92,110,32,32,32,32,32,32,116,119,101,101,110,59,92,110,92,110,32,32,47,47,32,73,110,105,116,105,97,108,105,122,101,32,116,104,101,32,115,101,108,102,32,116,105,109,101,114,32,119,104,101,110,32,116,104,101,32,116,114,97,110,115,105,116,105,111,110,32,105,115,32,99,114,101,97,116,101,100,46,92,110,32,32,47,47,32,78,111,116,101,32,116,104,101,32,97,99,116,117,97,108,32,100,101,108,97,121,32,105,115,32,110,111,116,32,107,110,111,119,110,32,117,110,116,105,108,32,116,104,101,32,102,105,114,115,116,32,99,97,108,108,98,97,99,107,33,92,110,32,32,115,99,104,101,100,117,108,101,115,91,105,100,93,32,61,32,115,101,108,102,59,92,110,32,32,115,101,108,102,46,116,105,109,101,114,32,61,32,40,48,44,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,105,109,101,114,41,40,115,99,104,101,100,117,108,101,44,32,48,44,32,115,101,108,102,46,116,105,109,101,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,99,104,101,100,117,108,101,40,101,108,97,112,115,101,100,41,32,123,92,110,32,32,32,32,115,101,108,102,46,115,116,97,116,101,32,61,32,83,67,72,69,68,85,76,69,68,59,92,110,32,32,32,32,115,101,108,102,46,116,105,109,101,114,46,114,101,115,116,97,114,116,40,115,116,97,114,116,44,32,115,101,108,102,46,100,101,108,97,121,44,32,115,101,108,102,46,116,105,109,101,41,59,92,110,92,110,32,32,32,32,47,47,32,73,102,32,116,104,101,32,101,108,97,112,115,101,100,32,100,101,108,97,121,32,105,115,32,108,101,115,115,32,116,104,97,110,32,111,117,114,32,102,105,114,115,116,32,115,108,101,101,112,44,32,115,116,97,114,116,32,105,109,109,101,100,105,97,116,101,108,121,46,92,110,32,32,32,32,105,102,32,40,115,101,108,102,46,100,101,108,97,121,32,60,61,32,101,108,97,112,115,101,100,41,32,115,116,97,114,116,40,101,108,97,112,115,101,100,32,45,32,115,101,108,102,46,100,101,108,97,121,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,116,97,114,116,40,101,108,97,112,115,101,100,41,32,123,92,110,32,32,32,32,118,97,114,32,105,44,32,106,44,32,110,44,32,111,59,92,110,92,110,32,32,32,32,47,47,32,73,102,32,116,104,101,32,115,116,97,116,101,32,105,115,32,110,111,116,32,83,67,72,69,68,85,76,69,68,44,32,116,104,101,110,32,119,101,32,112,114,101,118,105,111,117,115,108,121,32,101,114,114,111,114,101,100,32,111,110,32,115,116,97,114,116,46,92,110,32,32,32,32,105,102,32,40,115,101,108,102,46,115,116,97,116,101,32,33,61,61,32,83,67,72,69,68,85,76,69,68,41,32,114,101,116,117,114,110,32,115,116,111,112,40,41,59,92,110,92,110,32,32,32,32,102,111,114,32,40,105,32,105,110,32,115,99,104,101,100,117,108,101,115,41,32,123,92,110,32,32,32,32,32,32,111,32,61,32,115,99,104,101,100,117,108,101,115,91,105,93,59,92,110,32,32,32,32,32,32,105,102,32,40,111,46,110,97,109,101,32,33,61,61,32,115,101,108,102,46,110,97,109,101,41,32,99,111,110,116,105,110,117,101,59,92,110,92,110,32,32,32,32,32,32,47,47,32,87,104,105,108,101,32,116,104,105,115,32,101,108,101,109,101,110,116,32,97,108,114,101,97,100,121,32,104,97,115,32,97,32,115,116,97,114,116,105,110,103,32,116,114,97,110,115,105,116,105,111,110,32,100,117,114,105,110,103,32,116,104,105,115,32,102,114,97,109,101,44,92,110,32,32,32,32,32,32,47,47,32,100,101,102,101,114,32,115,116,97,114,116,105,110,103,32,97,110,32,105,110,116,101,114,114,117,112,116,105,110,103,32,116,114,97,110,115,105,116,105,111,110,32,117,110,116,105,108,32,116,104,97,116,32,116,114,97,110,115,105,116,105,111,110,32,104,97,115,32,97,92,110,32,32,32,32,32,32,47,47,32,99,104,97,110,99,101,32,116,111,32,116,105,99,107,32,40,97,110,100,32,112,111,115,115,105,98,108,121,32,101,110,100,41,59,32,115,101,101,32,100,51,47,100,51,45,116,114,97,110,115,105,116,105,111,110,35,53,52,33,92,110,32,32,32,32,32,32,105,102,32,40,111,46,115,116,97,116,101,32,61,61,61,32,83,84,65,82,84,69,68,41,32,114,101,116,117,114,110,32,40,48,44,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,116,97,114,116,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,73,110,116,101,114,114,117,112,116,32,116,104,101,32,97,99,116,105,118,101,32,116,114,97,110,115,105,116,105,111,110,44,32,105,102,32,97,110,121,46,92,110,32,32,32,32,32,32,105,102,32,40,111,46,115,116,97,116,101,32,61,61,61,32,82,85,78,78,73,78,71,41,32,123,92,110,32,32,32,32,32,32,32,32,111,46,115,116,97,116,101,32,61,32,69,78,68,69,68,59,92,110,32,32,32,32,32,32,32,32,111,46,116,105,109,101,114,46,115,116,111,112,40,41,59,92,110,32,32,32,32,32,32,32,32,111,46,111,110,46,99,97,108,108,40,92,34,105,110,116,101,114,114,117,112,116,92,34,44,32,110,111,100,101,44,32,110,111,100,101,46,95,95,100,97,116,97,95,95,44,32,111,46,105,110,100,101,120,44,32,111,46,103,114,111,117,112,41,59,92,110,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,115,99,104,101,100,117,108,101,115,91,105,93,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,67,97,110,99,101,108,32,97,110,121,32,112,114,101,45,101,109,112,116,101,100,32,116,114,97,110,115,105,116,105,111,110,115,46,92,110,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,43,105,32,60,32,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,111,46,115,116,97,116,101,32,61,32,69,78,68,69,68,59,92,110,32,32,32,32,32,32,32,32,111,46,116,105,109,101,114,46,115,116,111,112,40,41,59,92,110,32,32,32,32,32,32,32,32,111,46,111,110,46,99,97,108,108,40,92,34,99,97,110,99,101,108,92,34,44,32,110,111,100,101,44,32,110,111,100,101,46,95,95,100,97,116,97,95,95,44,32,111,46,105,110,100,101,120,44,32,111,46,103,114,111,117,112,41,59,92,110,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,115,99,104,101,100,117,108,101,115,91,105,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,68,101,102,101,114,32,116,104,101,32,102,105,114,115,116,32,116,105,99,107,32,116,111,32,101,110,100,32,111,102,32,116,104,101,32,99,117,114,114,101,110,116,32,102,114,97,109,101,59,32,115,101,101,32,100,51,47,100,51,35,49,53,55,54,46,92,110,32,32,32,32,47,47,32,78,111,116,101,32,116,104,101,32,116,114,97,110,115,105,116,105,111,110,32,109,97,121,32,98,101,32,99,97,110,99,101,108,101,100,32,97,102,116,101,114,32,115,116,97,114,116,32,97,110,100,32,98,101,102,111,114,101,32,116,104,101,32,102,105,114,115,116,32,116,105,99,107,33,92,110,32,32,32,32,47,47,32,78,111,116,101,32,116,104,105,115,32,109,117,115,116,32,98,101,32,115,99,104,101,100,117,108,101,100,32,98,101,102,111,114,101,32,116,104,101,32,115,116,97,114,116,32,101,118,101,110,116,59,32,115,101,101,32,100,51,47,100,51,45,116,114,97,110,115,105,116,105,111,110,35,49,54,33,92,110,32,32,32,32,47,47,32,65,115,115,117,109,105,110,103,32,116,104,105,115,32,105,115,32,115,117,99,99,101,115,115,102,117,108,44,32,115,117,98,115,101,113,117,101,110,116,32,99,97,108,108,98,97,99,107,115,32,103,111,32,115,116,114,97,105,103,104,116,32,116,111,32,116,105,99,107,46,92,110,32,32,32,32,40,48,44,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,101,108,102,46,115,116,97,116,101,32,61,61,61,32,83,84,65,82,84,69,68,41,32,123,92,110,32,32,32,32,32,32,32,32,115,101,108,102,46,115,116,97,116,101,32,61,32,82,85,78,78,73,78,71,59,92,110,32,32,32,32,32,32,32,32,115,101,108,102,46,116,105,109,101,114,46,114,101,115,116,97,114,116,40,116,105,99,107,44,32,115,101,108,102,46,100,101,108,97,121,44,32,115,101,108,102,46,116,105,109,101,41,59,92,110,32,32,32,32,32,32,32,32,116,105,99,107,40,101,108,97,112,115,101,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,47,32,68,105,115,112,97,116,99,104,32,116,104,101,32,115,116,97,114,116,32,101,118,101,110,116,46,92,110,32,32,32,32,47,47,32,78,111,116,101,32,116,104,105,115,32,109,117,115,116,32,98,101,32,100,111,110,101,32,98,101,102,111,114,101,32,116,104,101,32,116,119,101,101,110,32,97,114,101,32,105,110,105,116,105,97,108,105,122,101,100,46,92,110,32,32,32,32,115,101,108,102,46,115,116,97,116,101,32,61,32,83,84,65,82,84,73,78,71,59,92,110,32,32,32,32,115,101,108,102,46,111,110,46,99,97,108,108,40,92,34,115,116,97,114,116,92,34,44,32,110,111,100,101,44,32,110,111,100,101,46,95,95,100,97,116,97,95,95,44,32,115,101,108,102,46,105,110,100,101,120,44,32,115,101,108,102,46,103,114,111,117,112,41,59,92,110,32,32,32,32,105,102,32,40,115,101,108,102,46,115,116,97,116,101,32,33,61,61,32,83,84,65,82,84,73,78,71,41,32,114,101,116,117,114,110,59,32,47,47,32,105,110,116,101,114,114,117,112,116,101,100,92,110,32,32,32,32,115,101,108,102,46,115,116,97,116,101,32,61,32,83,84,65,82,84,69,68,59,92,110,92,110,32,32,32,32,47,47,32,73,110,105,116,105,97,108,105,122,101,32,116,104,101,32,116,119,101,101,110,44,32,100,101,108,101,116,105,110,103,32,110,117,108,108,32,116,119,101,101,110,46,92,110,32,32,32,32,116,119,101,101,110,32,61,32,110,101,119,32,65,114,114,97,121,40,110,32,61,32,115,101,108,102,46,116,119,101,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,44,32,106,32,61,32,45,49,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,111,32,61,32,115,101,108,102,46,116,119,101,101,110,91,105,93,46,118,97,108,117,101,46,99,97,108,108,40,110,111,100,101,44,32,110,111,100,101,46,95,95,100,97,116,97,95,95,44,32,115,101,108,102,46,105,110,100,101,120,44,32,115,101,108,102,46,103,114,111,117,112,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,119,101,101,110,91,43,43,106,93,32,61,32,111,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,116,119,101,101,110,46,108,101,110,103,116,104,32,61,32,106,32,43,32,49,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,105,99,107,40,101,108,97,112,115,101,100,41,32,123,92,110,32,32,32,32,118,97,114,32,116,32,61,32,101,108,97,112,115,101,100,32,60,32,115,101,108,102,46,100,117,114,97,116,105,111,110,32,63,32,115,101,108,102,46,101,97,115,101,46,99,97,108,108,40,110,117,108,108,44,32,101,108,97,112,115,101,100,32,47,32,115,101,108,102,46,100,117,114,97,116,105,111,110,41,32,58,32,40,115,101,108,102,46,116,105,109,101,114,46,114,101,115,116,97,114,116,40,115,116,111,112,41,44,32,115,101,108,102,46,115,116,97,116,101,32,61,32,69,78,68,73,78,71,44,32,49,41,44,92,110,32,32,32,32,32,32,32,32,105,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,116,119,101,101,110,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,116,119,101,101,110,91,105,93,46,99,97,108,108,40,110,111,100,101,44,32,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,68,105,115,112,97,116,99,104,32,116,104,101,32,101,110,100,32,101,118,101,110,116,46,92,110,32,32,32,32,105,102,32,40,115,101,108,102,46,115,116,97,116,101,32,61,61,61,32,69,78,68,73,78,71,41,32,123,92,110,32,32,32,32,32,32,115,101,108,102,46,111,110,46,99,97,108,108,40,92,34,101,110,100,92,34,44,32,110,111,100,101,44,32,110,111,100,101,46,95,95,100,97,116,97,95,95,44,32,115,101,108,102,46,105,110,100,101,120,44,32,115,101,108,102,46,103,114,111,117,112,41,59,92,110,32,32,32,32,32,32,115,116,111,112,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,116,111,112,40,41,32,123,92,110,32,32,32,32,115,101,108,102,46,115,116,97,116,101,32,61,32,69,78,68,69,68,59,92,110,32,32,32,32,115,101,108,102,46,116,105,109,101,114,46,115,116,111,112,40,41,59,92,110,32,32,32,32,100,101,108,101,116,101,32,115,99,104,101,100,117,108,101,115,91,105,100,93,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,105,110,32,115,99,104,101,100,117,108,101,115,41,32,114,101,116,117,114,110,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,117,110,117,115,101,100,45,118,97,114,115,92,110,32,32,32,32,100,101,108,101,116,101,32,110,111,100,101,46,95,95,116,114,97,110,115,105,116,105,111,110,59,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,101,108,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,101,108,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,111,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,99,104,101,100,117,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,108,101,99,116,41,32,123,92,110,32,32,118,97,114,32,110,97,109,101,32,61,32,116,104,105,115,46,95,110,97,109,101,44,92,110,32,32,32,32,32,32,105,100,32,61,32,116,104,105,115,46,95,105,100,59,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,115,101,108,101,99,116,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,115,101,108,101,99,116,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,101,108,101,99,116,41,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,44,32,109,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,44,32,115,117,98,103,114,111,117,112,115,32,61,32,110,101,119,32,65,114,114,97,121,40,109,41,44,32,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,106,93,44,32,110,32,61,32,103,114,111,117,112,46,108,101,110,103,116,104,44,32,115,117,98,103,114,111,117,112,32,61,32,115,117,98,103,114,111,117,112,115,91,106,93,32,61,32,110,101,119,32,65,114,114,97,121,40,110,41,44,32,110,111,100,101,44,32,115,117,98,110,111,100,101,44,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,41,32,38,38,32,40,115,117,98,110,111,100,101,32,61,32,115,101,108,101,99,116,46,99,97,108,108,40,110,111,100,101,44,32,110,111,100,101,46,95,95,100,97,116,97,95,95,44,32,105,44,32,103,114,111,117,112,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,92,34,95,95,100,97,116,97,95,95,92,34,32,105,110,32,110,111,100,101,41,32,115,117,98,110,111,100,101,46,95,95,100,97,116,97,95,95,32,61,32,110,111,100,101,46,95,95,100,97,116,97,95,95,59,92,110,32,32,32,32,32,32,32,32,115,117,98,103,114,111,117,112,91,105,93,32,61,32,115,117,98,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,117,98,103,114,111,117,112,91,105,93,44,32,110,97,109,101,44,32,105,100,44,32,105,44,32,115,117,98,103,114,111,117,112,44,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,103,101,116,41,40,110,111,100,101,44,32,105,100,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,84,114,97,110,115,105,116,105,111,110,40,115,117,98,103,114,111,117,112,115,44,32,116,104,105,115,46,95,112,97,114,101,110,116,115,44,32,110,97,109,101,44,32,105,100,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,101,108,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,101,108,101,99,116,65,108,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,101,108,101,99,116,65,108,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,111,114,65,108,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,99,104,101,100,117,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,115,101,108,101,99,116,41,32,123,92,110,32,32,118,97,114,32,110,97,109,101,32,61,32,116,104,105,115,46,95,110,97,109,101,44,92,110,32,32,32,32,32,32,105,100,32,61,32,116,104,105,115,46,95,105,100,59,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,115,101,108,101,99,116,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,115,101,108,101,99,116,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,115,101,108,101,99,116,41,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,44,32,109,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,44,32,115,117,98,103,114,111,117,112,115,32,61,32,91,93,44,32,112,97,114,101,110,116,115,32,61,32,91,93,44,32,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,106,93,44,32,110,32,61,32,103,114,111,117,112,46,108,101,110,103,116,104,44,32,110,111,100,101,44,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,115,101,108,101,99,116,46,99,97,108,108,40,110,111,100,101,44,32,110,111,100,101,46,95,95,100,97,116,97,95,95,44,32,105,44,32,103,114,111,117,112,41,44,32,99,104,105,108,100,44,32,105,110,104,101,114,105,116,32,61,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,103,101,116,41,40,110,111,100,101,44,32,105,100,41,44,32,107,32,61,32,48,44,32,108,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,107,32,60,32,108,59,32,43,43,107,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,32,61,32,99,104,105,108,100,114,101,110,91,107,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,99,104,105,108,100,44,32,110,97,109,101,44,32,105,100,44,32,107,44,32,99,104,105,108,100,114,101,110,44,32,105,110,104,101,114,105,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,115,117,98,103,114,111,117,112,115,46,112,117,115,104,40,99,104,105,108,100,114,101,110,41,59,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,115,46,112,117,115,104,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,84,114,97,110,115,105,116,105,111,110,40,115,117,98,103,114,111,117,112,115,44,32,112,97,114,101,110,116,115,44,32,110,97,109,101,44,32,105,100,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,101,108,101,99,116,65,108,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,101,108,101,99,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,101,108,101,99,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,83,101,108,101,99,116,105,111,110,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,83,101,108,101,99,116,105,111,110,40,116,104,105,115,46,95,103,114,111,117,112,115,44,32,116,104,105,115,46,95,112,97,114,101,110,116,115,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,101,108,101,99,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,116,121,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,116,121,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,105,110,116,101,114,112,111,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,116,114,97,110,115,102,111,114,109,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,115,116,121,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,99,104,101,100,117,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,119,101,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,119,101,101,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,119,101,101,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,116,101,114,112,111,108,97,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,116,101,114,112,111,108,97,116,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,116,101,114,112,111,108,97,116,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,121,108,101,78,117,108,108,40,110,97,109,101,44,32,105,110,116,101,114,112,111,108,97,116,101,41,32,123,92,110,32,32,118,97,114,32,115,116,114,105,110,103,48,48,44,92,110,32,32,32,32,32,32,115,116,114,105,110,103,49,48,44,92,110,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,48,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,114,105,110,103,48,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,116,121,108,101,86,97,108,117,101,41,40,116,104,105,115,44,32,110,97,109,101,41,44,92,110,32,32,32,32,32,32,32,32,115,116,114,105,110,103,49,32,61,32,40,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,110,97,109,101,41,44,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,116,121,108,101,86,97,108,117,101,41,40,116,104,105,115,44,32,110,97,109,101,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,48,32,61,61,61,32,115,116,114,105,110,103,49,32,63,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,58,32,115,116,114,105,110,103,48,32,61,61,61,32,115,116,114,105,110,103,48,48,32,38,38,32,115,116,114,105,110,103,49,32,61,61,61,32,115,116,114,105,110,103,49,48,32,63,32,105,110,116,101,114,112,111,108,97,116,101,48,92,110,32,32,32,32,32,32,32,32,58,32,105,110,116,101,114,112,111,108,97,116,101,48,32,61,32,105,110,116,101,114,112,111,108,97,116,101,40,115,116,114,105,110,103,48,48,32,61,32,115,116,114,105,110,103,48,44,32,115,116,114,105,110,103,49,48,32,61,32,115,116,114,105,110,103,49,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,121,108,101,82,101,109,111,118,101,40,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,110,97,109,101,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,121,108,101,67,111,110,115,116,97,110,116,40,110,97,109,101,44,32,105,110,116,101,114,112,111,108,97,116,101,44,32,118,97,108,117,101,49,41,32,123,92,110,32,32,118,97,114,32,115,116,114,105,110,103,48,48,44,92,110,32,32,32,32,32,32,115,116,114,105,110,103,49,32,61,32,118,97,108,117,101,49,32,43,32,92,34,92,34,44,92,110,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,48,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,114,105,110,103,48,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,116,121,108,101,86,97,108,117,101,41,40,116,104,105,115,44,32,110,97,109,101,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,48,32,61,61,61,32,115,116,114,105,110,103,49,32,63,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,58,32,115,116,114,105,110,103,48,32,61,61,61,32,115,116,114,105,110,103,48,48,32,63,32,105,110,116,101,114,112,111,108,97,116,101,48,92,110,32,32,32,32,32,32,32,32,58,32,105,110,116,101,114,112,111,108,97,116,101,48,32,61,32,105,110,116,101,114,112,111,108,97,116,101,40,115,116,114,105,110,103,48,48,32,61,32,115,116,114,105,110,103,48,44,32,118,97,108,117,101,49,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,121,108,101,70,117,110,99,116,105,111,110,40,110,97,109,101,44,32,105,110,116,101,114,112,111,108,97,116,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,115,116,114,105,110,103,48,48,44,92,110,32,32,32,32,32,32,115,116,114,105,110,103,49,48,44,92,110,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,48,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,114,105,110,103,48,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,116,121,108,101,86,97,108,117,101,41,40,116,104,105,115,44,32,110,97,109,101,41,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,49,32,61,32,118,97,108,117,101,40,116,104,105,115,41,44,92,110,32,32,32,32,32,32,32,32,115,116,114,105,110,103,49,32,61,32,118,97,108,117,101,49,32,43,32,92,34,92,34,59,92,110,32,32,32,32,105,102,32,40,118,97,108,117,101,49,32,61,61,32,110,117,108,108,41,32,115,116,114,105,110,103,49,32,61,32,118,97,108,117,101,49,32,61,32,40,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,110,97,109,101,41,44,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,116,121,108,101,86,97,108,117,101,41,40,116,104,105,115,44,32,110,97,109,101,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,48,32,61,61,61,32,115,116,114,105,110,103,49,32,63,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,58,32,115,116,114,105,110,103,48,32,61,61,61,32,115,116,114,105,110,103,48,48,32,38,38,32,115,116,114,105,110,103,49,32,61,61,61,32,115,116,114,105,110,103,49,48,32,63,32,105,110,116,101,114,112,111,108,97,116,101,48,92,110,32,32,32,32,32,32,32,32,58,32,40,115,116,114,105,110,103,49,48,32,61,32,115,116,114,105,110,103,49,44,32,105,110,116,101,114,112,111,108,97,116,101,48,32,61,32,105,110,116,101,114,112,111,108,97,116,101,40,115,116,114,105,110,103,48,48,32,61,32,115,116,114,105,110,103,48,44,32,118,97,108,117,101,49,41,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,121,108,101,77,97,121,98,101,82,101,109,111,118,101,40,105,100,44,32,110,97,109,101,41,32,123,92,110,32,32,118,97,114,32,111,110,48,44,32,111,110,49,44,32,108,105,115,116,101,110,101,114,48,44,32,107,101,121,32,61,32,92,34,115,116,121,108,101,46,92,34,32,43,32,110,97,109,101,44,32,101,118,101,110,116,32,61,32,92,34,101,110,100,46,92,34,32,43,32,107,101,121,44,32,114,101,109,111,118,101,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,99,104,101,100,117,108,101,32,61,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,116,41,40,116,104,105,115,44,32,105,100,41,44,92,110,32,32,32,32,32,32,32,32,111,110,32,61,32,115,99,104,101,100,117,108,101,46,111,110,44,92,110,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,32,61,32,115,99,104,101,100,117,108,101,46,118,97,108,117,101,91,107,101,121,93,32,61,61,32,110,117,108,108,32,63,32,114,101,109,111,118,101,32,124,124,32,40,114,101,109,111,118,101,32,61,32,115,116,121,108,101,82,101,109,111,118,101,40,110,97,109,101,41,41,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,47,47,32,73,102,32,116,104,105,115,32,110,111,100,101,32,115,104,97,114,101,100,32,97,32,100,105,115,112,97,116,99,104,32,119,105,116,104,32,116,104,101,32,112,114,101,118,105,111,117,115,32,110,111,100,101,44,92,110,32,32,32,32,47,47,32,106,117,115,116,32,97,115,115,105,103,110,32,116,104,101,32,117,112,100,97,116,101,100,32,115,104,97,114,101,100,32,100,105,115,112,97,116,99,104,32,97,110,100,32,119,101,226,128,153,114,101,32,100,111,110,101,33,92,110,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,99,111,112,121,45,111,110,45,119,114,105,116,101,46,92,110,32,32,32,32,105,102,32,40,111,110,32,33,61,61,32,111,110,48,32,124,124,32,108,105,115,116,101,110,101,114,48,32,33,61,61,32,108,105,115,116,101,110,101,114,41,32,40,111,110,49,32,61,32,40,111,110,48,32,61,32,111,110,41,46,99,111,112,121,40,41,41,46,111,110,40,101,118,101,110,116,44,32,108,105,115,116,101,110,101,114,48,32,61,32,108,105,115,116,101,110,101,114,41,59,92,110,92,110,32,32,32,32,115,99,104,101,100,117,108,101,46,111,110,32,61,32,111,110,49,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,44,32,118,97,108,117,101,44,32,112,114,105,111,114,105,116,121,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,40,110,97,109,101,32,43,61,32,92,34,92,34,41,32,61,61,61,32,92,34,116,114,97,110,115,102,111,114,109,92,34,32,63,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,67,115,115,32,58,32,95,105,110,116,101,114,112,111,108,97,116,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,32,110,117,108,108,32,63,32,116,104,105,115,92,110,32,32,32,32,32,32,46,115,116,121,108,101,84,119,101,101,110,40,110,97,109,101,44,32,115,116,121,108,101,78,117,108,108,40,110,97,109,101,44,32,105,41,41,92,110,32,32,32,32,32,32,46,111,110,40,92,34,101,110,100,46,115,116,121,108,101,46,92,34,32,43,32,110,97,109,101,44,32,115,116,121,108,101,82,101,109,111,118,101,40,110,97,109,101,41,41,92,110,32,32,32,32,58,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,116,104,105,115,92,110,32,32,32,32,32,32,46,115,116,121,108,101,84,119,101,101,110,40,110,97,109,101,44,32,115,116,121,108,101,70,117,110,99,116,105,111,110,40,110,97,109,101,44,32,105,44,32,40,48,44,95,116,119,101,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,119,101,101,110,86,97,108,117,101,41,40,116,104,105,115,44,32,92,34,115,116,121,108,101,46,92,34,32,43,32,110,97,109,101,44,32,118,97,108,117,101,41,41,41,92,110,32,32,32,32,32,32,46,101,97,99,104,40,115,116,121,108,101,77,97,121,98,101,82,101,109,111,118,101,40,116,104,105,115,46,95,105,100,44,32,110,97,109,101,41,41,92,110,32,32,32,32,58,32,116,104,105,115,92,110,32,32,32,32,32,32,46,115,116,121,108,101,84,119,101,101,110,40,110,97,109,101,44,32,115,116,121,108,101,67,111,110,115,116,97,110,116,40,110,97,109,101,44,32,105,44,32,118,97,108,117,101,41,44,32,112,114,105,111,114,105,116,121,41,92,110,32,32,32,32,32,32,46,111,110,40,92,34,101,110,100,46,115,116,121,108,101,46,92,34,32,43,32,110,97,109,101,44,32,110,117,108,108,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,116,121,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,116,121,108,101,84,119,101,101,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,116,121,108,101,84,119,101,101,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,115,116,121,108,101,73,110,116,101,114,112,111,108,97,116,101,40,110,97,109,101,44,32,105,44,32,112,114,105,111,114,105,116,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,110,97,109,101,44,32,105,46,99,97,108,108,40,116,104,105,115,44,32,116,41,44,32,112,114,105,111,114,105,116,121,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,121,108,101,84,119,101,101,110,40,110,97,109,101,44,32,118,97,108,117,101,44,32,112,114,105,111,114,105,116,121,41,32,123,92,110,32,32,118,97,114,32,116,44,32,105,48,59,92,110,32,32,102,117,110,99,116,105,111,110,32,116,119,101,101,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,118,97,108,117,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,105,102,32,40,105,32,33,61,61,32,105,48,41,32,116,32,61,32,40,105,48,32,61,32,105,41,32,38,38,32,115,116,121,108,101,73,110,116,101,114,112,111,108,97,116,101,40,110,97,109,101,44,32,105,44,32,112,114,105,111,114,105,116,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,59,92,110,32,32,125,92,110,32,32,116,119,101,101,110,46,95,118,97,108,117,101,32,61,32,118,97,108,117,101,59,92,110,32,32,114,101,116,117,114,110,32,116,119,101,101,110,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,44,32,118,97,108,117,101,44,32,112,114,105,111,114,105,116,121,41,32,123,92,110,32,32,118,97,114,32,107,101,121,32,61,32,92,34,115,116,121,108,101,46,92,34,32,43,32,40,110,97,109,101,32,43,61,32,92,34,92,34,41,59,92,110,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,50,41,32,114,101,116,117,114,110,32,40,107,101,121,32,61,32,116,104,105,115,46,116,119,101,101,110,40,107,101,121,41,41,32,38,38,32,107,101,121,46,95,118,97,108,117,101,59,92,110,32,32,105,102,32,40,118,97,108,117,101,32,61,61,32,110,117,108,108,41,32,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,107,101,121,44,32,110,117,108,108,41,59,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,107,101,121,44,32,115,116,121,108,101,84,119,101,101,110,40,110,97,109,101,44,32,118,97,108,117,101,44,32,112,114,105,111,114,105,116,121,32,61,61,32,110,117,108,108,32,63,32,92,34,92,34,32,58,32,112,114,105,111,114,105,116,121,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,116,121,108,101,84,119,101,101,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,101,120,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,101,120,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,119,101,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,119,101,101,110,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,119,101,101,110,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,116,101,120,116,67,111,110,115,116,97,110,116,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,32,61,32,118,97,108,117,101,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,101,120,116,70,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,49,32,61,32,118,97,108,117,101,40,116,104,105,115,41,59,92,110,32,32,32,32,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,32,61,32,118,97,108,117,101,49,32,61,61,32,110,117,108,108,32,63,32,92,34,92,34,32,58,32,118,97,108,117,101,49,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,92,34,116,101,120,116,92,34,44,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,92,110,32,32,32,32,32,32,63,32,116,101,120,116,70,117,110,99,116,105,111,110,40,40,48,44,95,116,119,101,101,110,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,119,101,101,110,86,97,108,117,101,41,40,116,104,105,115,44,32,92,34,116,101,120,116,92,34,44,32,118,97,108,117,101,41,41,92,110,32,32,32,32,32,32,58,32,116,101,120,116,67,111,110,115,116,97,110,116,40,118,97,108,117,101,32,61,61,32,110,117,108,108,32,63,32,92,34,92,34,32,58,32,118,97,108,117,101,32,43,32,92,34,92,34,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,101,120,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,101,120,116,84,119,101,101,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,101,120,116,84,119,101,101,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,116,101,120,116,73,110,116,101,114,112,111,108,97,116,101,40,105,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,32,61,32,105,46,99,97,108,108,40,116,104,105,115,44,32,116,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,101,120,116,84,119,101,101,110,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,116,48,44,32,105,48,59,92,110,32,32,102,117,110,99,116,105,111,110,32,116,119,101,101,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,118,97,108,117,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,105,102,32,40,105,32,33,61,61,32,105,48,41,32,116,48,32,61,32,40,105,48,32,61,32,105,41,32,38,38,32,116,101,120,116,73,110,116,101,114,112,111,108,97,116,101,40,105,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,48,59,92,110,32,32,125,92,110,32,32,116,119,101,101,110,46,95,118,97,108,117,101,32,61,32,118,97,108,117,101,59,92,110,32,32,114,101,116,117,114,110,32,116,119,101,101,110,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,107,101,121,32,61,32,92,34,116,101,120,116,92,34,59,92,110,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,49,41,32,114,101,116,117,114,110,32,40,107,101,121,32,61,32,116,104,105,115,46,116,119,101,101,110,40,107,101,121,41,41,32,38,38,32,107,101,121,46,95,118,97,108,117,101,59,92,110,32,32,105,102,32,40,118,97,108,117,101,32,61,61,32,110,117,108,108,41,32,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,107,101,121,44,32,110,117,108,108,41,59,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,107,101,121,44,32,116,101,120,116,84,119,101,101,110,40,118,97,108,117,101,41,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,101,120,116,84,119,101,101,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,114,97,110,115,105,116,105,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,114,97,110,115,105,116,105,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,99,104,101,100,117,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,110,97,109,101,32,61,32,116,104,105,115,46,95,110,97,109,101,44,92,110,32,32,32,32,32,32,105,100,48,32,61,32,116,104,105,115,46,95,105,100,44,92,110,32,32,32,32,32,32,105,100,49,32,61,32,40,48,44,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,110,101,119,73,100,41,40,41,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,115,32,61,32,116,104,105,115,46,95,103,114,111,117,112,115,44,32,109,32,61,32,103,114,111,117,112,115,46,108,101,110,103,116,104,44,32,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,103,114,111,117,112,32,61,32,103,114,111,117,112,115,91,106,93,44,32,110,32,61,32,103,114,111,117,112,46,108,101,110,103,116,104,44,32,110,111,100,101,44,32,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,32,61,32,103,114,111,117,112,91,105,93,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,104,101,114,105,116,32,61,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,103,101,116,41,40,110,111,100,101,44,32,105,100,48,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,111,100,101,44,32,110,97,109,101,44,32,105,100,49,44,32,105,44,32,103,114,111,117,112,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,105,109,101,58,32,105,110,104,101,114,105,116,46,116,105,109,101,32,43,32,105,110,104,101,114,105,116,46,100,101,108,97,121,32,43,32,105,110,104,101,114,105,116,46,100,117,114,97,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,97,121,58,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,100,117,114,97,116,105,111,110,58,32,105,110,104,101,114,105,116,46,100,117,114,97,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,32,32,101,97,115,101,58,32,105,110,104,101,114,105,116,46,101,97,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,84,114,97,110,115,105,116,105,111,110,40,103,114,111,117,112,115,44,32,116,104,105,115,46,95,112,97,114,101,110,116,115,44,32,110,97,109,101,44,32,105,100,49,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,114,97,110,115,105,116,105,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,119,101,101,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,119,101,101,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,119,101,101,110,86,97,108,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,119,101,101,110,86,97,108,117,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,99,104,101,100,117,108,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,115,99,104,101,100,117,108,101,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,116,119,101,101,110,82,101,109,111,118,101,40,105,100,44,32,110,97,109,101,41,32,123,92,110,32,32,118,97,114,32,116,119,101,101,110,48,44,32,116,119,101,101,110,49,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,99,104,101,100,117,108,101,32,61,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,116,41,40,116,104,105,115,44,32,105,100,41,44,92,110,32,32,32,32,32,32,32,32,116,119,101,101,110,32,61,32,115,99,104,101,100,117,108,101,46,116,119,101,101,110,59,92,110,92,110,32,32,32,32,47,47,32,73,102,32,116,104,105,115,32,110,111,100,101,32,115,104,97,114,101,100,32,116,119,101,101,110,32,119,105,116,104,32,116,104,101,32,112,114,101,118,105,111,117,115,32,110,111,100,101,44,92,110,32,32,32,32,47,47,32,106,117,115,116,32,97,115,115,105,103,110,32,116,104,101,32,117,112,100,97,116,101,100,32,115,104,97,114,101,100,32,116,119,101,101,110,32,97,110,100,32,119,101,226,128,153,114,101,32,100,111,110,101,33,92,110,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,99,111,112,121,45,111,110,45,119,114,105,116,101,46,92,110,32,32,32,32,105,102,32,40,116,119,101,101,110,32,33,61,61,32,116,119,101,101,110,48,41,32,123,92,110,32,32,32,32,32,32,116,119,101,101,110,49,32,61,32,116,119,101,101,110,48,32,61,32,116,119,101,101,110,59,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,116,119,101,101,110,49,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,119,101,101,110,49,91,105,93,46,110,97,109,101,32,61,61,61,32,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,119,101,101,110,49,32,61,32,116,119,101,101,110,49,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,119,101,101,110,49,46,115,112,108,105,99,101,40,105,44,32,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,99,104,101,100,117,108,101,46,116,119,101,101,110,32,61,32,116,119,101,101,110,49,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,119,101,101,110,70,117,110,99,116,105,111,110,40,105,100,44,32,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,116,119,101,101,110,48,44,32,116,119,101,101,110,49,59,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,99,104,101,100,117,108,101,32,61,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,116,41,40,116,104,105,115,44,32,105,100,41,44,92,110,32,32,32,32,32,32,32,32,116,119,101,101,110,32,61,32,115,99,104,101,100,117,108,101,46,116,119,101,101,110,59,92,110,92,110,32,32,32,32,47,47,32,73,102,32,116,104,105,115,32,110,111,100,101,32,115,104,97,114,101,100,32,116,119,101,101,110,32,119,105,116,104,32,116,104,101,32,112,114,101,118,105,111,117,115,32,110,111,100,101,44,92,110,32,32,32,32,47,47,32,106,117,115,116,32,97,115,115,105,103,110,32,116,104,101,32,117,112,100,97,116,101,100,32,115,104,97,114,101,100,32,116,119,101,101,110,32,97,110,100,32,119,101,226,128,153,114,101,32,100,111,110,101,33,92,110,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,99,111,112,121,45,111,110,45,119,114,105,116,101,46,92,110,32,32,32,32,105,102,32,40,116,119,101,101,110,32,33,61,61,32,116,119,101,101,110,48,41,32,123,92,110,32,32,32,32,32,32,116,119,101,101,110,49,32,61,32,40,116,119,101,101,110,48,32,61,32,116,119,101,101,110,41,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,116,32,61,32,123,110,97,109,101,58,32,110,97,109,101,44,32,118,97,108,117,101,58,32,118,97,108,117,101,125,44,32,105,32,61,32,48,44,32,110,32,61,32,116,119,101,101,110,49,46,108,101,110,103,116,104,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,119,101,101,110,49,91,105,93,46,110,97,109,101,32,61,61,61,32,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,119,101,101,110,49,91,105,93,32,61,32,116,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,32,61,61,61,32,110,41,32,116,119,101,101,110,49,46,112,117,115,104,40,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,99,104,101,100,117,108,101,46,116,119,101,101,110,32,61,32,116,119,101,101,110,49,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,105,100,32,61,32,116,104,105,115,46,95,105,100,59,92,110,92,110,32,32,110,97,109,101,32,43,61,32,92,34,92,34,59,92,110,92,110,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,50,41,32,123,92,110,32,32,32,32,118,97,114,32,116,119,101,101,110,32,61,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,41,40,116,104,105,115,46,110,111,100,101,40,41,44,32,105,100,41,46,116,119,101,101,110,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,116,119,101,101,110,46,108,101,110,103,116,104,44,32,116,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,116,32,61,32,116,119,101,101,110,91,105,93,41,46,110,97,109,101,32,61,61,61,32,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,118,97,108,117,101,32,61,61,32,110,117,108,108,32,63,32,116,119,101,101,110,82,101,109,111,118,101,32,58,32,116,119,101,101,110,70,117,110,99,116,105,111,110,41,40,105,100,44,32,110,97,109,101,44,32,118,97,108,117,101,41,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,119,101,101,110,86,97,108,117,101,40,116,114,97,110,115,105,116,105,111,110,44,32,110,97,109,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,105,100,32,61,32,116,114,97,110,115,105,116,105,111,110,46,95,105,100,59,92,110,92,110,32,32,116,114,97,110,115,105,116,105,111,110,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,99,104,101,100,117,108,101,32,61,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,116,41,40,116,104,105,115,44,32,105,100,41,59,92,110,32,32,32,32,40,115,99,104,101,100,117,108,101,46,118,97,108,117,101,32,124,124,32,40,115,99,104,101,100,117,108,101,46,118,97,108,117,101,32,61,32,123,125,41,41,91,110,97,109,101,93,32,61,32,118,97,108,117,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,115,99,104,101,100,117,108,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,41,40,110,111,100,101,44,32,105,100,41,46,118,97,108,117,101,91,110,97,109,101,93,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,116,114,97,110,115,105,116,105,111,110,47,116,119,101,101,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,66,101,97,99,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,66,101,97,99,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,100,100,66,101,97,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,100,100,66,101,97,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,109,111,118,101,66,101,97,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,109,111,118,101,66,101,97,99,104,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,82,101,100,66,108,97,99,107,84,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,82,101,100,66,108,97,99,107,84,114,101,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,82,101,100,66,108,97,99,107,84,114,101,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,67,101,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,67,101,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,67,101,108,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,67,105,114,99,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,67,105,114,99,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,67,105,114,99,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,69,100,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,69,100,103,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,105,97,103,114,97,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,68,105,97,103,114,97,109,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,98,101,97,99,104,80,111,111,108,32,61,32,91,93,59,92,110,92,110,102,117,110,99,116,105,111,110,32,66,101,97,99,104,40,41,32,123,92,110,32,32,40,48,44,95,82,101,100,66,108,97,99,107,84,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,101,100,66,108,97,99,107,78,111,100,101,41,40,116,104,105,115,41,59,92,110,32,32,116,104,105,115,46,101,100,103,101,32,61,92,110,32,32,116,104,105,115,46,115,105,116,101,32,61,92,110,32,32,116,104,105,115,46,99,105,114,99,108,101,32,61,32,110,117,108,108,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,66,101,97,99,104,40,115,105,116,101,41,32,123,92,110,32,32,118,97,114,32,98,101,97,99,104,32,61,32,98,101,97,99,104,80,111,111,108,46,112,111,112,40,41,32,124,124,32,110,101,119,32,66,101,97,99,104,59,92,110,32,32,98,101,97,99,104,46,115,105,116,101,32,61,32,115,105,116,101,59,92,110,32,32,114,101,116,117,114,110,32,98,101,97,99,104,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,116,97,99,104,66,101,97,99,104,40,98,101,97,99,104,41,32,123,92,110,32,32,40,48,44,95,67,105,114,99,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,100,101,116,97,99,104,67,105,114,99,108,101,41,40,98,101,97,99,104,41,59,92,110,32,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,98,101,97,99,104,101,115,46,114,101,109,111,118,101,40,98,101,97,99,104,41,59,92,110,32,32,98,101,97,99,104,80,111,111,108,46,112,117,115,104,40,98,101,97,99,104,41,59,92,110,32,32,40,48,44,95,82,101,100,66,108,97,99,107,84,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,101,100,66,108,97,99,107,78,111,100,101,41,40,98,101,97,99,104,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,66,101,97,99,104,40,98,101,97,99,104,41,32,123,92,110,32,32,118,97,114,32,99,105,114,99,108,101,32,61,32,98,101,97,99,104,46,99,105,114,99,108,101,44,92,110,32,32,32,32,32,32,120,32,61,32,99,105,114,99,108,101,46,120,44,92,110,32,32,32,32,32,32,121,32,61,32,99,105,114,99,108,101,46,99,121,44,92,110,32,32,32,32,32,32,118,101,114,116,101,120,32,61,32,91,120,44,32,121,93,44,92,110,32,32,32,32,32,32,112,114,101,118,105,111,117,115,32,61,32,98,101,97,99,104,46,80,44,92,110,32,32,32,32,32,32,110,101,120,116,32,61,32,98,101,97,99,104,46,78,44,92,110,32,32,32,32,32,32,100,105,115,97,112,112,101,97,114,105,110,103,32,61,32,91,98,101,97,99,104,93,59,92,110,92,110,32,32,100,101,116,97,99,104,66,101,97,99,104,40,98,101,97,99,104,41,59,92,110,92,110,32,32,118,97,114,32,108,65,114,99,32,61,32,112,114,101,118,105,111,117,115,59,92,110,32,32,119,104,105,108,101,32,40,108,65,114,99,46,99,105,114,99,108,101,92,110,32,32,32,32,32,32,38,38,32,77,97,116,104,46,97,98,115,40,120,32,45,32,108,65,114,99,46,99,105,114,99,108,101,46,120,41,32,60,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,101,112,115,105,108,111,110,92,110,32,32,32,32,32,32,38,38,32,77,97,116,104,46,97,98,115,40,121,32,45,32,108,65,114,99,46,99,105,114,99,108,101,46,99,121,41,32,60,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,112,114,101,118,105,111,117,115,32,61,32,108,65,114,99,46,80,59,92,110,32,32,32,32,100,105,115,97,112,112,101,97,114,105,110,103,46,117,110,115,104,105,102,116,40,108,65,114,99,41,59,92,110,32,32,32,32,100,101,116,97,99,104,66,101,97,99,104,40,108,65,114,99,41,59,92,110,32,32,32,32,108,65,114,99,32,61,32,112,114,101,118,105,111,117,115,59,92,110,32,32,125,92,110,92,110,32,32,100,105,115,97,112,112,101,97,114,105,110,103,46,117,110,115,104,105,102,116,40,108,65,114,99,41,59,92,110,32,32,40,48,44,95,67,105,114,99,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,100,101,116,97,99,104,67,105,114,99,108,101,41,40,108,65,114,99,41,59,92,110,92,110,32,32,118,97,114,32,114,65,114,99,32,61,32,110,101,120,116,59,92,110,32,32,119,104,105,108,101,32,40,114,65,114,99,46,99,105,114,99,108,101,92,110,32,32,32,32,32,32,38,38,32,77,97,116,104,46,97,98,115,40,120,32,45,32,114,65,114,99,46,99,105,114,99,108,101,46,120,41,32,60,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,101,112,115,105,108,111,110,92,110,32,32,32,32,32,32,38,38,32,77,97,116,104,46,97,98,115,40,121,32,45,32,114,65,114,99,46,99,105,114,99,108,101,46,99,121,41,32,60,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,110,101,120,116,32,61,32,114,65,114,99,46,78,59,92,110,32,32,32,32,100,105,115,97,112,112,101,97,114,105,110,103,46,112,117,115,104,40,114,65,114,99,41,59,92,110,32,32,32,32,100,101,116,97,99,104,66,101,97,99,104,40,114,65,114,99,41,59,92,110,32,32,32,32,114,65,114,99,32,61,32,110,101,120,116,59,92,110,32,32,125,92,110,92,110,32,32,100,105,115,97,112,112,101,97,114,105,110,103,46,112,117,115,104,40,114,65,114,99,41,59,92,110,32,32,40,48,44,95,67,105,114,99,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,100,101,116,97,99,104,67,105,114,99,108,101,41,40,114,65,114,99,41,59,92,110,92,110,32,32,118,97,114,32,110,65,114,99,115,32,61,32,100,105,115,97,112,112,101,97,114,105,110,103,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,105,65,114,99,59,92,110,32,32,102,111,114,32,40,105,65,114,99,32,61,32,49,59,32,105,65,114,99,32,60,32,110,65,114,99,115,59,32,43,43,105,65,114,99,41,32,123,92,110,32,32,32,32,114,65,114,99,32,61,32,100,105,115,97,112,112,101,97,114,105,110,103,91,105,65,114,99,93,59,92,110,32,32,32,32,108,65,114,99,32,61,32,100,105,115,97,112,112,101,97,114,105,110,103,91,105,65,114,99,32,45,32,49,93,59,92,110,32,32,32,32,40,48,44,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,101,116,69,100,103,101,69,110,100,41,40,114,65,114,99,46,101,100,103,101,44,32,108,65,114,99,46,115,105,116,101,44,32,114,65,114,99,46,115,105,116,101,44,32,118,101,114,116,101,120,41,59,92,110,32,32,125,92,110,92,110,32,32,108,65,114,99,32,61,32,100,105,115,97,112,112,101,97,114,105,110,103,91,48,93,59,92,110,32,32,114,65,114,99,32,61,32,100,105,115,97,112,112,101,97,114,105,110,103,91,110,65,114,99,115,32,45,32,49,93,59,92,110,32,32,114,65,114,99,46,101,100,103,101,32,61,32,40,48,44,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,114,101,97,116,101,69,100,103,101,41,40,108,65,114,99,46,115,105,116,101,44,32,114,65,114,99,46,115,105,116,101,44,32,110,117,108,108,44,32,118,101,114,116,101,120,41,59,92,110,92,110,32,32,40,48,44,95,67,105,114,99,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,116,116,97,99,104,67,105,114,99,108,101,41,40,108,65,114,99,41,59,92,110,32,32,40,48,44,95,67,105,114,99,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,116,116,97,99,104,67,105,114,99,108,101,41,40,114,65,114,99,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,100,100,66,101,97,99,104,40,115,105,116,101,41,32,123,92,110,32,32,118,97,114,32,120,32,61,32,115,105,116,101,91,48,93,44,92,110,32,32,32,32,32,32,100,105,114,101,99,116,114,105,120,32,61,32,115,105,116,101,91,49,93,44,92,110,32,32,32,32,32,32,108,65,114,99,44,92,110,32,32,32,32,32,32,114,65,114,99,44,92,110,32,32,32,32,32,32,100,120,108,44,92,110,32,32,32,32,32,32,100,120,114,44,92,110,32,32,32,32,32,32,110,111,100,101,32,61,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,98,101,97,99,104,101,115,46,95,59,92,110,92,110,32,32,119,104,105,108,101,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,100,120,108,32,61,32,108,101,102,116,66,114,101,97,107,80,111,105,110,116,40,110,111,100,101,44,32,100,105,114,101,99,116,114,105,120,41,32,45,32,120,59,92,110,32,32,32,32,105,102,32,40,100,120,108,32,62,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,101,112,115,105,108,111,110,41,32,110,111,100,101,32,61,32,110,111,100,101,46,76,59,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,100,120,114,32,61,32,120,32,45,32,114,105,103,104,116,66,114,101,97,107,80,111,105,110,116,40,110,111,100,101,44,32,100,105,114,101,99,116,114,105,120,41,59,92,110,32,32,32,32,32,32,105,102,32,40,100,120,114,32,62,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,110,111,100,101,46,82,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,108,65,114,99,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,110,111,100,101,46,82,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,120,108,32,62,32,45,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,108,65,114,99,32,61,32,110,111,100,101,46,80,59,92,110,32,32,32,32,32,32,32,32,32,32,114,65,114,99,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,120,114,32,62,32,45,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,108,65,114,99,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,32,32,114,65,114,99,32,61,32,110,111,100,101,46,78,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,108,65,114,99,32,61,32,114,65,114,99,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,40,48,44,95,67,101,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,114,101,97,116,101,67,101,108,108,41,40,115,105,116,101,41,59,92,110,32,32,118,97,114,32,110,101,119,65,114,99,32,61,32,99,114,101,97,116,101,66,101,97,99,104,40,115,105,116,101,41,59,92,110,32,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,98,101,97,99,104,101,115,46,105,110,115,101,114,116,40,108,65,114,99,44,32,110,101,119,65,114,99,41,59,92,110,92,110,32,32,105,102,32,40,33,108,65,114,99,32,38,38,32,33,114,65,114,99,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,105,102,32,40,108,65,114,99,32,61,61,61,32,114,65,114,99,41,32,123,92,110,32,32,32,32,40,48,44,95,67,105,114,99,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,100,101,116,97,99,104,67,105,114,99,108,101,41,40,108,65,114,99,41,59,92,110,32,32,32,32,114,65,114,99,32,61,32,99,114,101,97,116,101,66,101,97,99,104,40,108,65,114,99,46,115,105,116,101,41,59,92,110,32,32,32,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,98,101,97,99,104,101,115,46,105,110,115,101,114,116,40,110,101,119,65,114,99,44,32,114,65,114,99,41,59,92,110,32,32,32,32,110,101,119,65,114,99,46,101,100,103,101,32,61,32,114,65,114,99,46,101,100,103,101,32,61,32,40,48,44,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,114,101,97,116,101,69,100,103,101,41,40,108,65,114,99,46,115,105,116,101,44,32,110,101,119,65,114,99,46,115,105,116,101,41,59,92,110,32,32,32,32,40,48,44,95,67,105,114,99,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,116,116,97,99,104,67,105,114,99,108,101,41,40,108,65,114,99,41,59,92,110,32,32,32,32,40,48,44,95,67,105,114,99,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,116,116,97,99,104,67,105,114,99,108,101,41,40,114,65,114,99,41,59,92,110,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,114,65,114,99,41,32,123,32,47,47,32,38,38,32,108,65,114,99,92,110,32,32,32,32,110,101,119,65,114,99,46,101,100,103,101,32,61,32,40,48,44,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,114,101,97,116,101,69,100,103,101,41,40,108,65,114,99,46,115,105,116,101,44,32,110,101,119,65,114,99,46,115,105,116,101,41,59,92,110,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,101,108,115,101,32,108,65,114,99,32,33,61,61,32,114,65,114,99,92,110,32,32,40,48,44,95,67,105,114,99,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,100,101,116,97,99,104,67,105,114,99,108,101,41,40,108,65,114,99,41,59,92,110,32,32,40,48,44,95,67,105,114,99,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,100,101,116,97,99,104,67,105,114,99,108,101,41,40,114,65,114,99,41,59,92,110,92,110,32,32,118,97,114,32,108,83,105,116,101,32,61,32,108,65,114,99,46,115,105,116,101,44,92,110,32,32,32,32,32,32,97,120,32,61,32,108,83,105,116,101,91,48,93,44,92,110,32,32,32,32,32,32,97,121,32,61,32,108,83,105,116,101,91,49,93,44,92,110,32,32,32,32,32,32,98,120,32,61,32,115,105,116,101,91,48,93,32,45,32,97,120,44,92,110,32,32,32,32,32,32,98,121,32,61,32,115,105,116,101,91,49,93,32,45,32,97,121,44,92,110,32,32,32,32,32,32,114,83,105,116,101,32,61,32,114,65,114,99,46,115,105,116,101,44,92,110,32,32,32,32,32,32,99,120,32,61,32,114,83,105,116,101,91,48,93,32,45,32,97,120,44,92,110,32,32,32,32,32,32,99,121,32,61,32,114,83,105,116,101,91,49,93,32,45,32,97,121,44,92,110,32,32,32,32,32,32,100,32,61,32,50,32,42,32,40,98,120,32,42,32,99,121,32,45,32,98,121,32,42,32,99,120,41,44,92,110,32,32,32,32,32,32,104,98,32,61,32,98,120,32,42,32,98,120,32,43,32,98,121,32,42,32,98,121,44,92,110,32,32,32,32,32,32,104,99,32,61,32,99,120,32,42,32,99,120,32,43,32,99,121,32,42,32,99,121,44,92,110,32,32,32,32,32,32,118,101,114,116,101,120,32,61,32,91,40,99,121,32,42,32,104,98,32,45,32,98,121,32,42,32,104,99,41,32,47,32,100,32,43,32,97,120,44,32,40,98,120,32,42,32,104,99,32,45,32,99,120,32,42,32,104,98,41,32,47,32,100,32,43,32,97,121,93,59,92,110,92,110,32,32,40,48,44,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,115,101,116,69,100,103,101,69,110,100,41,40,114,65,114,99,46,101,100,103,101,44,32,108,83,105,116,101,44,32,114,83,105,116,101,44,32,118,101,114,116,101,120,41,59,92,110,32,32,110,101,119,65,114,99,46,101,100,103,101,32,61,32,40,48,44,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,114,101,97,116,101,69,100,103,101,41,40,108,83,105,116,101,44,32,115,105,116,101,44,32,110,117,108,108,44,32,118,101,114,116,101,120,41,59,92,110,32,32,114,65,114,99,46,101,100,103,101,32,61,32,40,48,44,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,114,101,97,116,101,69,100,103,101,41,40,115,105,116,101,44,32,114,83,105,116,101,44,32,110,117,108,108,44,32,118,101,114,116,101,120,41,59,92,110,32,32,40,48,44,95,67,105,114,99,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,116,116,97,99,104,67,105,114,99,108,101,41,40,108,65,114,99,41,59,92,110,32,32,40,48,44,95,67,105,114,99,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,116,116,97,99,104,67,105,114,99,108,101,41,40,114,65,114,99,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,101,102,116,66,114,101,97,107,80,111,105,110,116,40,97,114,99,44,32,100,105,114,101,99,116,114,105,120,41,32,123,92,110,32,32,118,97,114,32,115,105,116,101,32,61,32,97,114,99,46,115,105,116,101,44,92,110,32,32,32,32,32,32,114,102,111,99,120,32,61,32,115,105,116,101,91,48,93,44,92,110,32,32,32,32,32,32,114,102,111,99,121,32,61,32,115,105,116,101,91,49,93,44,92,110,32,32,32,32,32,32,112,98,121,50,32,61,32,114,102,111,99,121,32,45,32,100,105,114,101,99,116,114,105,120,59,92,110,92,110,32,32,105,102,32,40,33,112,98,121,50,41,32,114,101,116,117,114,110,32,114,102,111,99,120,59,92,110,92,110,32,32,118,97,114,32,108,65,114,99,32,61,32,97,114,99,46,80,59,92,110,32,32,105,102,32,40,33,108,65,114,99,41,32,114,101,116,117,114,110,32,45,73,110,102,105,110,105,116,121,59,92,110,92,110,32,32,115,105,116,101,32,61,32,108,65,114,99,46,115,105,116,101,59,92,110,32,32,118,97,114,32,108,102,111,99,120,32,61,32,115,105,116,101,91,48,93,44,92,110,32,32,32,32,32,32,108,102,111,99,121,32,61,32,115,105,116,101,91,49,93,44,92,110,32,32,32,32,32,32,112,108,98,121,50,32,61,32,108,102,111,99,121,32,45,32,100,105,114,101,99,116,114,105,120,59,92,110,92,110,32,32,105,102,32,40,33,112,108,98,121,50,41,32,114,101,116,117,114,110,32,108,102,111,99,120,59,92,110,92,110,32,32,118,97,114,32,104,108,32,61,32,108,102,111,99,120,32,45,32,114,102,111,99,120,44,92,110,32,32,32,32,32,32,97,98,121,50,32,61,32,49,32,47,32,112,98,121,50,32,45,32,49,32,47,32,112,108,98,121,50,44,92,110,32,32,32,32,32,32,98,32,61,32,104,108,32,47,32,112,108,98,121,50,59,92,110,92,110,32,32,105,102,32,40,97,98,121,50,41,32,114,101,116,117,114,110,32,40,45,98,32,43,32,77,97,116,104,46,115,113,114,116,40,98,32,42,32,98,32,45,32,50,32,42,32,97,98,121,50,32,42,32,40,104,108,32,42,32,104,108,32,47,32,40,45,50,32,42,32,112,108,98,121,50,41,32,45,32,108,102,111,99,121,32,43,32,112,108,98,121,50,32,47,32,50,32,43,32,114,102,111,99,121,32,45,32,112,98,121,50,32,47,32,50,41,41,41,32,47,32,97,98,121,50,32,43,32,114,102,111,99,120,59,92,110,92,110,32,32,114,101,116,117,114,110,32,40,114,102,111,99,120,32,43,32,108,102,111,99,120,41,32,47,32,50,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,105,103,104,116,66,114,101,97,107,80,111,105,110,116,40,97,114,99,44,32,100,105,114,101,99,116,114,105,120,41,32,123,92,110,32,32,118,97,114,32,114,65,114,99,32,61,32,97,114,99,46,78,59,92,110,32,32,105,102,32,40,114,65,114,99,41,32,114,101,116,117,114,110,32,108,101,102,116,66,114,101,97,107,80,111,105,110,116,40,114,65,114,99,44,32,100,105,114,101,99,116,114,105,120,41,59,92,110,32,32,118,97,114,32,115,105,116,101,32,61,32,97,114,99,46,115,105,116,101,59,92,110,32,32,114,101,116,117,114,110,32,115,105,116,101,91,49,93,32,61,61,61,32,100,105,114,101,99,116,114,105,120,32,63,32,115,105,116,101,91,48,93,32,58,32,73,110,102,105,110,105,116,121,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,66,101,97,99,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,67,101,108,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,67,101,108,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,101,108,108,72,97,108,102,101,100,103,101,69,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,101,108,108,72,97,108,102,101,100,103,101,69,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,101,108,108,72,97,108,102,101,100,103,101,83,116,97,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,101,108,108,72,97,108,102,101,100,103,101,83,116,97,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,108,105,112,67,101,108,108,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,108,105,112,67,101,108,108,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,101,97,116,101,67,101,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,114,101,97,116,101,67,101,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,111,114,116,67,101,108,108,72,97,108,102,101,100,103,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,111,114,116,67,101,108,108,72,97,108,102,101,100,103,101,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,69,100,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,69,100,103,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,105,97,103,114,97,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,68,105,97,103,114,97,109,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,101,108,108,40,115,105,116,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,101,108,108,115,91,115,105,116,101,46,105,110,100,101,120,93,32,61,32,123,92,110,32,32,32,32,115,105,116,101,58,32,115,105,116,101,44,92,110,32,32,32,32,104,97,108,102,101,100,103,101,115,58,32,91,93,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,108,108,72,97,108,102,101,100,103,101,65,110,103,108,101,40,99,101,108,108,44,32,101,100,103,101,41,32,123,92,110,32,32,118,97,114,32,115,105,116,101,32,61,32,99,101,108,108,46,115,105,116,101,44,92,110,32,32,32,32,32,32,118,97,32,61,32,101,100,103,101,46,108,101,102,116,44,92,110,32,32,32,32,32,32,118,98,32,61,32,101,100,103,101,46,114,105,103,104,116,59,92,110,32,32,105,102,32,40,115,105,116,101,32,61,61,61,32,118,98,41,32,118,98,32,61,32,118,97,44,32,118,97,32,61,32,115,105,116,101,59,92,110,32,32,105,102,32,40,118,98,41,32,114,101,116,117,114,110,32,77,97,116,104,46,97,116,97,110,50,40,118,98,91,49,93,32,45,32,118,97,91,49,93,44,32,118,98,91,48,93,32,45,32,118,97,91,48,93,41,59,92,110,32,32,105,102,32,40,115,105,116,101,32,61,61,61,32,118,97,41,32,118,97,32,61,32,101,100,103,101,91,49,93,44,32,118,98,32,61,32,101,100,103,101,91,48,93,59,92,110,32,32,101,108,115,101,32,118,97,32,61,32,101,100,103,101,91,48,93,44,32,118,98,32,61,32,101,100,103,101,91,49,93,59,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,97,116,97,110,50,40,118,97,91,48,93,32,45,32,118,98,91,48,93,44,32,118,98,91,49,93,32,45,32,118,97,91,49,93,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,108,108,72,97,108,102,101,100,103,101,83,116,97,114,116,40,99,101,108,108,44,32,101,100,103,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,100,103,101,91,43,40,101,100,103,101,46,108,101,102,116,32,33,61,61,32,99,101,108,108,46,115,105,116,101,41,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,101,108,108,72,97,108,102,101,100,103,101,69,110,100,40,99,101,108,108,44,32,101,100,103,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,100,103,101,91,43,40,101,100,103,101,46,108,101,102,116,32,61,61,61,32,99,101,108,108,46,115,105,116,101,41,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,111,114,116,67,101,108,108,72,97,108,102,101,100,103,101,115,40,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,110,32,61,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,101,108,108,115,46,108,101,110,103,116,104,44,32,99,101,108,108,44,32,104,97,108,102,101,100,103,101,115,44,32,106,44,32,109,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,105,102,32,40,40,99,101,108,108,32,61,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,101,108,108,115,91,105,93,41,32,38,38,32,40,109,32,61,32,40,104,97,108,102,101,100,103,101,115,32,61,32,99,101,108,108,46,104,97,108,102,101,100,103,101,115,41,46,108,101,110,103,116,104,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,110,101,119,32,65,114,114,97,121,40,109,41,44,92,110,32,32,32,32,32,32,32,32,32,32,97,114,114,97,121,32,61,32,110,101,119,32,65,114,114,97,121,40,109,41,59,92,110,32,32,32,32,32,32,102,111,114,32,40,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,105,110,100,101,120,91,106,93,32,61,32,106,44,32,97,114,114,97,121,91,106,93,32,61,32,99,101,108,108,72,97,108,102,101,100,103,101,65,110,103,108,101,40,99,101,108,108,44,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,100,103,101,115,91,104,97,108,102,101,100,103,101,115,91,106,93,93,41,59,92,110,32,32,32,32,32,32,105,110,100,101,120,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,105,44,32,106,41,32,123,32,114,101,116,117,114,110,32,97,114,114,97,121,91,106,93,32,45,32,97,114,114,97,121,91,105,93,59,32,125,41,59,92,110,32,32,32,32,32,32,102,111,114,32,40,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,97,114,114,97,121,91,106,93,32,61,32,104,97,108,102,101,100,103,101,115,91,105,110,100,101,120,91,106,93,93,59,92,110,32,32,32,32,32,32,102,111,114,32,40,106,32,61,32,48,59,32,106,32,60,32,109,59,32,43,43,106,41,32,104,97,108,102,101,100,103,101,115,91,106,93,32,61,32,97,114,114,97,121,91,106,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,105,112,67,101,108,108,115,40,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,118,97,114,32,110,67,101,108,108,115,32,61,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,101,108,108,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,105,67,101,108,108,44,92,110,32,32,32,32,32,32,99,101,108,108,44,92,110,32,32,32,32,32,32,115,105,116,101,44,92,110,32,32,32,32,32,32,105,72,97,108,102,101,100,103,101,44,92,110,32,32,32,32,32,32,104,97,108,102,101,100,103,101,115,44,92,110,32,32,32,32,32,32,110,72,97,108,102,101,100,103,101,115,44,92,110,32,32,32,32,32,32,115,116,97,114,116,44,92,110,32,32,32,32,32,32,115,116,97,114,116,88,44,92,110,32,32,32,32,32,32,115,116,97,114,116,89,44,92,110,32,32,32,32,32,32,101,110,100,44,92,110,32,32,32,32,32,32,101,110,100,88,44,92,110,32,32,32,32,32,32,101,110,100,89,44,92,110,32,32,32,32,32,32,99,111,118,101,114,32,61,32,116,114,117,101,59,92,110,92,110,32,32,102,111,114,32,40,105,67,101,108,108,32,61,32,48,59,32,105,67,101,108,108,32,60,32,110,67,101,108,108,115,59,32,43,43,105,67,101,108,108,41,32,123,92,110,32,32,32,32,105,102,32,40,99,101,108,108,32,61,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,101,108,108,115,91,105,67,101,108,108,93,41,32,123,92,110,32,32,32,32,32,32,115,105,116,101,32,61,32,99,101,108,108,46,115,105,116,101,59,92,110,32,32,32,32,32,32,104,97,108,102,101,100,103,101,115,32,61,32,99,101,108,108,46,104,97,108,102,101,100,103,101,115,59,92,110,32,32,32,32,32,32,105,72,97,108,102,101,100,103,101,32,61,32,104,97,108,102,101,100,103,101,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,97,110,121,32,100,97,110,103,108,105,110,103,32,99,108,105,112,112,101,100,32,101,100,103,101,115,46,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,105,72,97,108,102,101,100,103,101,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,100,103,101,115,91,104,97,108,102,101,100,103,101,115,91,105,72,97,108,102,101,100,103,101,93,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,97,108,102,101,100,103,101,115,46,115,112,108,105,99,101,40,105,72,97,108,102,101,100,103,101,44,32,49,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,73,110,115,101,114,116,32,97,110,121,32,98,111,114,100,101,114,32,101,100,103,101,115,32,97,115,32,110,101,99,101,115,115,97,114,121,46,92,110,32,32,32,32,32,32,105,72,97,108,102,101,100,103,101,32,61,32,48,44,32,110,72,97,108,102,101,100,103,101,115,32,61,32,104,97,108,102,101,100,103,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,105,72,97,108,102,101,100,103,101,32,60,32,110,72,97,108,102,101,100,103,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,101,110,100,32,61,32,99,101,108,108,72,97,108,102,101,100,103,101,69,110,100,40,99,101,108,108,44,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,100,103,101,115,91,104,97,108,102,101,100,103,101,115,91,105,72,97,108,102,101,100,103,101,93,93,41,44,32,101,110,100,88,32,61,32,101,110,100,91,48,93,44,32,101,110,100,89,32,61,32,101,110,100,91,49,93,59,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,99,101,108,108,72,97,108,102,101,100,103,101,83,116,97,114,116,40,99,101,108,108,44,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,100,103,101,115,91,104,97,108,102,101,100,103,101,115,91,43,43,105,72,97,108,102,101,100,103,101,32,37,32,110,72,97,108,102,101,100,103,101,115,93,93,41,44,32,115,116,97,114,116,88,32,61,32,115,116,97,114,116,91,48,93,44,32,115,116,97,114,116,89,32,61,32,115,116,97,114,116,91,49,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,77,97,116,104,46,97,98,115,40,101,110,100,88,32,45,32,115,116,97,114,116,88,41,32,62,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,124,124,32,77,97,116,104,46,97,98,115,40,101,110,100,89,32,45,32,115,116,97,114,116,89,41,32,62,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,97,108,102,101,100,103,101,115,46,115,112,108,105,99,101,40,105,72,97,108,102,101,100,103,101,44,32,48,44,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,100,103,101,115,46,112,117,115,104,40,40,48,44,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,66,111,114,100,101,114,69,100,103,101,41,40,115,105,116,101,44,32,101,110,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,77,97,116,104,46,97,98,115,40,101,110,100,88,32,45,32,120,48,41,32,60,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,38,38,32,121,49,32,45,32,101,110,100,89,32,62,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,63,32,91,120,48,44,32,77,97,116,104,46,97,98,115,40,115,116,97,114,116,88,32,45,32,120,48,41,32,60,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,63,32,115,116,97,114,116,89,32,58,32,121,49,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,77,97,116,104,46,97,98,115,40,101,110,100,89,32,45,32,121,49,41,32,60,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,38,38,32,120,49,32,45,32,101,110,100,88,32,62,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,63,32,91,77,97,116,104,46,97,98,115,40,115,116,97,114,116,89,32,45,32,121,49,41,32,60,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,63,32,115,116,97,114,116,88,32,58,32,120,49,44,32,121,49,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,77,97,116,104,46,97,98,115,40,101,110,100,88,32,45,32,120,49,41,32,60,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,38,38,32,101,110,100,89,32,45,32,121,48,32,62,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,63,32,91,120,49,44,32,77,97,116,104,46,97,98,115,40,115,116,97,114,116,88,32,45,32,120,49,41,32,60,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,63,32,115,116,97,114,116,89,32,58,32,121,48,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,77,97,116,104,46,97,98,115,40,101,110,100,89,32,45,32,121,48,41,32,60,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,38,38,32,101,110,100,88,32,45,32,120,48,32,62,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,63,32,91,77,97,116,104,46,97,98,115,40,115,116,97,114,116,89,32,45,32,121,48,41,32,60,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,32,63,32,115,116,97,114,116,88,32,58,32,120,48,44,32,121,48,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,110,117,108,108,41,41,32,45,32,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,43,43,110,72,97,108,102,101,100,103,101,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,110,72,97,108,102,101,100,103,101,115,41,32,99,111,118,101,114,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,73,102,32,116,104,101,114,101,32,119,101,114,101,110,226,128,153,116,32,97,110,121,32,101,100,103,101,115,44,32,104,97,118,101,32,116,104,101,32,99,108,111,115,101,115,116,32,115,105,116,101,32,99,111,118,101,114,32,116,104,101,32,101,120,116,101,110,116,46,92,110,32,32,47,47,32,73,116,32,100,111,101,115,110,226,128,153,116,32,109,97,116,116,101,114,32,119,104,105,99,104,32,99,111,114,110,101,114,32,111,102,32,116,104,101,32,101,120,116,101,110,116,32,119,101,32,109,101,97,115,117,114,101,33,92,110,32,32,105,102,32,40,99,111,118,101,114,41,32,123,92,110,32,32,32,32,118,97,114,32,100,120,44,32,100,121,44,32,100,50,44,32,100,99,32,61,32,73,110,102,105,110,105,116,121,59,92,110,92,110,32,32,32,32,102,111,114,32,40,105,67,101,108,108,32,61,32,48,44,32,99,111,118,101,114,32,61,32,110,117,108,108,59,32,105,67,101,108,108,32,60,32,110,67,101,108,108,115,59,32,43,43,105,67,101,108,108,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,99,101,108,108,32,61,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,101,108,108,115,91,105,67,101,108,108,93,41,32,123,92,110,32,32,32,32,32,32,32,32,115,105,116,101,32,61,32,99,101,108,108,46,115,105,116,101,59,92,110,32,32,32,32,32,32,32,32,100,120,32,61,32,115,105,116,101,91,48,93,32,45,32,120,48,59,92,110,32,32,32,32,32,32,32,32,100,121,32,61,32,115,105,116,101,91,49,93,32,45,32,121,48,59,92,110,32,32,32,32,32,32,32,32,100,50,32,61,32,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,50,32,60,32,100,99,41,32,100,99,32,61,32,100,50,44,32,99,111,118,101,114,32,61,32,99,101,108,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,99,111,118,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,48,48,32,61,32,91,120,48,44,32,121,48,93,44,32,118,48,49,32,61,32,91,120,48,44,32,121,49,93,44,32,118,49,49,32,61,32,91,120,49,44,32,121,49,93,44,32,118,49,48,32,61,32,91,120,49,44,32,121,48,93,59,92,110,32,32,32,32,32,32,99,111,118,101,114,46,104,97,108,102,101,100,103,101,115,46,112,117,115,104,40,92,110,32,32,32,32,32,32,32,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,100,103,101,115,46,112,117,115,104,40,40,48,44,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,66,111,114,100,101,114,69,100,103,101,41,40,115,105,116,101,32,61,32,99,111,118,101,114,46,115,105,116,101,44,32,118,48,48,44,32,118,48,49,41,41,32,45,32,49,44,92,110,32,32,32,32,32,32,32,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,100,103,101,115,46,112,117,115,104,40,40,48,44,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,66,111,114,100,101,114,69,100,103,101,41,40,115,105,116,101,44,32,118,48,49,44,32,118,49,49,41,41,32,45,32,49,44,92,110,32,32,32,32,32,32,32,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,100,103,101,115,46,112,117,115,104,40,40,48,44,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,66,111,114,100,101,114,69,100,103,101,41,40,115,105,116,101,44,32,118,49,49,44,32,118,49,48,41,41,32,45,32,49,44,92,110,32,32,32,32,32,32,32,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,100,103,101,115,46,112,117,115,104,40,40,48,44,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,66,111,114,100,101,114,69,100,103,101,41,40,115,105,116,101,44,32,118,49,48,44,32,118,48,48,41,41,32,45,32,49,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,76,97,115,116,108,121,32,100,101,108,101,116,101,32,97,110,121,32,99,101,108,108,115,32,119,105,116,104,32,110,111,32,101,100,103,101,115,59,32,116,104,101,115,101,32,119,101,114,101,32,101,110,116,105,114,101,108,121,32,99,108,105,112,112,101,100,46,92,110,32,32,102,111,114,32,40,105,67,101,108,108,32,61,32,48,59,32,105,67,101,108,108,32,60,32,110,67,101,108,108,115,59,32,43,43,105,67,101,108,108,41,32,123,92,110,32,32,32,32,105,102,32,40,99,101,108,108,32,61,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,101,108,108,115,91,105,67,101,108,108,93,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,99,101,108,108,46,104,97,108,102,101,100,103,101,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,101,108,108,115,91,105,67,101,108,108,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,67,101,108,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,67,105,114,99,108,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,67,105,114,99,108,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,116,116,97,99,104,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,116,116,97,99,104,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,116,97,99,104,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,101,116,97,99,104,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,105,114,115,116,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,105,114,115,116,67,105,114,99,108,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,82,101,100,66,108,97,99,107,84,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,82,101,100,66,108,97,99,107,84,114,101,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,82,101,100,66,108,97,99,107,84,114,101,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,105,97,103,114,97,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,68,105,97,103,114,97,109,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,118,97,114,32,99,105,114,99,108,101,80,111,111,108,32,61,32,91,93,59,92,110,92,110,118,97,114,32,102,105,114,115,116,67,105,114,99,108,101,59,92,110,92,110,102,117,110,99,116,105,111,110,32,67,105,114,99,108,101,40,41,32,123,92,110,32,32,40,48,44,95,82,101,100,66,108,97,99,107,84,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,101,100,66,108,97,99,107,78,111,100,101,41,40,116,104,105,115,41,59,92,110,32,32,116,104,105,115,46,120,32,61,92,110,32,32,116,104,105,115,46,121,32,61,92,110,32,32,116,104,105,115,46,97,114,99,32,61,92,110,32,32,116,104,105,115,46,115,105,116,101,32,61,92,110,32,32,116,104,105,115,46,99,121,32,61,32,110,117,108,108,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,97,99,104,67,105,114,99,108,101,40,97,114,99,41,32,123,92,110,32,32,118,97,114,32,108,65,114,99,32,61,32,97,114,99,46,80,44,92,110,32,32,32,32,32,32,114,65,114,99,32,61,32,97,114,99,46,78,59,92,110,92,110,32,32,105,102,32,40,33,108,65,114,99,32,124,124,32,33,114,65,114,99,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,118,97,114,32,108,83,105,116,101,32,61,32,108,65,114,99,46,115,105,116,101,44,92,110,32,32,32,32,32,32,99,83,105,116,101,32,61,32,97,114,99,46,115,105,116,101,44,92,110,32,32,32,32,32,32,114,83,105,116,101,32,61,32,114,65,114,99,46,115,105,116,101,59,92,110,92,110,32,32,105,102,32,40,108,83,105,116,101,32,61,61,61,32,114,83,105,116,101,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,118,97,114,32,98,120,32,61,32,99,83,105,116,101,91,48,93,44,92,110,32,32,32,32,32,32,98,121,32,61,32,99,83,105,116,101,91,49,93,44,92,110,32,32,32,32,32,32,97,120,32,61,32,108,83,105,116,101,91,48,93,32,45,32,98,120,44,92,110,32,32,32,32,32,32,97,121,32,61,32,108,83,105,116,101,91,49,93,32,45,32,98,121,44,92,110,32,32,32,32,32,32,99,120,32,61,32,114,83,105,116,101,91,48,93,32,45,32,98,120,44,92,110,32,32,32,32,32,32,99,121,32,61,32,114,83,105,116,101,91,49,93,32,45,32,98,121,59,92,110,92,110,32,32,118,97,114,32,100,32,61,32,50,32,42,32,40,97,120,32,42,32,99,121,32,45,32,97,121,32,42,32,99,120,41,59,92,110,32,32,105,102,32,40,100,32,62,61,32,45,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,112,115,105,108,111,110,50,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,118,97,114,32,104,97,32,61,32,97,120,32,42,32,97,120,32,43,32,97,121,32,42,32,97,121,44,92,110,32,32,32,32,32,32,104,99,32,61,32,99,120,32,42,32,99,120,32,43,32,99,121,32,42,32,99,121,44,92,110,32,32,32,32,32,32,120,32,61,32,40,99,121,32,42,32,104,97,32,45,32,97,121,32,42,32,104,99,41,32,47,32,100,44,92,110,32,32,32,32,32,32,121,32,61,32,40,97,120,32,42,32,104,99,32,45,32,99,120,32,42,32,104,97,41,32,47,32,100,59,92,110,92,110,32,32,118,97,114,32,99,105,114,99,108,101,32,61,32,99,105,114,99,108,101,80,111,111,108,46,112,111,112,40,41,32,124,124,32,110,101,119,32,67,105,114,99,108,101,59,92,110,32,32,99,105,114,99,108,101,46,97,114,99,32,61,32,97,114,99,59,92,110,32,32,99,105,114,99,108,101,46,115,105,116,101,32,61,32,99,83,105,116,101,59,92,110,32,32,99,105,114,99,108,101,46,120,32,61,32,120,32,43,32,98,120,59,92,110,32,32,99,105,114,99,108,101,46,121,32,61,32,40,99,105,114,99,108,101,46,99,121,32,61,32,121,32,43,32,98,121,41,32,43,32,77,97,116,104,46,115,113,114,116,40,120,32,42,32,120,32,43,32,121,32,42,32,121,41,59,32,47,47,32,121,32,98,111,116,116,111,109,92,110,92,110,32,32,97,114,99,46,99,105,114,99,108,101,32,61,32,99,105,114,99,108,101,59,92,110,92,110,32,32,118,97,114,32,98,101,102,111,114,101,32,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,110,111,100,101,32,61,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,105,114,99,108,101,115,46,95,59,92,110,92,110,32,32,119,104,105,108,101,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,105,102,32,40,99,105,114,99,108,101,46,121,32,60,32,110,111,100,101,46,121,32,124,124,32,40,99,105,114,99,108,101,46,121,32,61,61,61,32,110,111,100,101,46,121,32,38,38,32,99,105,114,99,108,101,46,120,32,60,61,32,110,111,100,101,46,120,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,76,41,32,110,111,100,101,32,61,32,110,111,100,101,46,76,59,92,110,32,32,32,32,32,32,101,108,115,101,32,123,32,98,101,102,111,114,101,32,61,32,110,111,100,101,46,80,59,32,98,114,101,97,107,59,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,82,41,32,110,111,100,101,32,61,32,110,111,100,101,46,82,59,92,110,32,32,32,32,32,32,101,108,115,101,32,123,32,98,101,102,111,114,101,32,61,32,110,111,100,101,59,32,98,114,101,97,107,59,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,105,114,99,108,101,115,46,105,110,115,101,114,116,40,98,101,102,111,114,101,44,32,99,105,114,99,108,101,41,59,92,110,32,32,105,102,32,40,33,98,101,102,111,114,101,41,32,102,105,114,115,116,67,105,114,99,108,101,32,61,32,99,105,114,99,108,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,116,97,99,104,67,105,114,99,108,101,40,97,114,99,41,32,123,92,110,32,32,118,97,114,32,99,105,114,99,108,101,32,61,32,97,114,99,46,99,105,114,99,108,101,59,92,110,32,32,105,102,32,40,99,105,114,99,108,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,99,105,114,99,108,101,46,80,41,32,102,105,114,115,116,67,105,114,99,108,101,32,61,32,99,105,114,99,108,101,46,78,59,92,110,32,32,32,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,105,114,99,108,101,115,46,114,101,109,111,118,101,40,99,105,114,99,108,101,41,59,92,110,32,32,32,32,99,105,114,99,108,101,80,111,111,108,46,112,117,115,104,40,99,105,114,99,108,101,41,59,92,110,32,32,32,32,40,48,44,95,82,101,100,66,108,97,99,107,84,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,82,101,100,66,108,97,99,107,78,111,100,101,41,40,99,105,114,99,108,101,41,59,92,110,32,32,32,32,97,114,99,46,99,105,114,99,108,101,32,61,32,110,117,108,108,59,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,67,105,114,99,108,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,68,105,97,103,114,97,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,68,105,97,103,114,97,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,101,97,99,104,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,101,97,99,104,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,101,108,108,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,101,108,108,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,105,114,99,108,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,105,114,99,108,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,68,105,97,103,114,97,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,100,103,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,100,103,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,112,115,105,108,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,112,115,105,108,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,112,115,105,108,111,110,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,112,115,105,108,111,110,50,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,66,101,97,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,66,101,97,99,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,66,101,97,99,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,67,101,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,67,101,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,67,101,108,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,67,105,114,99,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,67,105,114,99,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,67,105,114,99,108,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,69,100,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,69,100,103,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,82,101,100,66,108,97,99,107,84,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,82,101,100,66,108,97,99,107,84,114,101,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,82,101,100,66,108,97,99,107,84,114,101,101,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,101,112,115,105,108,111,110,32,61,32,49,101,45,54,59,92,110,118,97,114,32,101,112,115,105,108,111,110,50,32,61,32,49,101,45,49,50,59,92,110,118,97,114,32,98,101,97,99,104,101,115,59,92,110,118,97,114,32,99,101,108,108,115,59,92,110,118,97,114,32,99,105,114,99,108,101,115,59,92,110,118,97,114,32,101,100,103,101,115,59,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,105,97,110,103,108,101,65,114,101,97,40,97,44,32,98,44,32,99,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,97,91,48,93,32,45,32,99,91,48,93,41,32,42,32,40,98,91,49,93,32,45,32,97,91,49,93,41,32,45,32,40,97,91,48,93,32,45,32,98,91,48,93,41,32,42,32,40,99,91,49,93,32,45,32,97,91,49,93,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,101,120,105,99,111,103,114,97,112,104,105,99,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,98,91,49,93,32,45,32,97,91,49,93,92,110,32,32,32,32,32,32,124,124,32,98,91,48,93,32,45,32,97,91,48,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,68,105,97,103,114,97,109,40,115,105,116,101,115,44,32,101,120,116,101,110,116,41,32,123,92,110,32,32,118,97,114,32,115,105,116,101,32,61,32,115,105,116,101,115,46,115,111,114,116,40,108,101,120,105,99,111,103,114,97,112,104,105,99,41,46,112,111,112,40,41,44,92,110,32,32,32,32,32,32,120,44,92,110,32,32,32,32,32,32,121,44,92,110,32,32,32,32,32,32,99,105,114,99,108,101,59,92,110,92,110,32,32,101,100,103,101,115,32,61,32,91,93,59,92,110,32,32,99,101,108,108,115,32,61,32,110,101,119,32,65,114,114,97,121,40,115,105,116,101,115,46,108,101,110,103,116,104,41,59,92,110,32,32,98,101,97,99,104,101,115,32,61,32,110,101,119,32,95,82,101,100,66,108,97,99,107,84,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,32,32,99,105,114,99,108,101,115,32,61,32,110,101,119,32,95,82,101,100,66,108,97,99,107,84,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,92,110,32,32,119,104,105,108,101,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,99,105,114,99,108,101,32,61,32,95,67,105,114,99,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,102,105,114,115,116,67,105,114,99,108,101,59,92,110,32,32,32,32,105,102,32,40,115,105,116,101,32,38,38,32,40,33,99,105,114,99,108,101,32,124,124,32,115,105,116,101,91,49,93,32,60,32,99,105,114,99,108,101,46,121,32,124,124,32,40,115,105,116,101,91,49,93,32,61,61,61,32,99,105,114,99,108,101,46,121,32,38,38,32,115,105,116,101,91,48,93,32,60,32,99,105,114,99,108,101,46,120,41,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,105,116,101,91,48,93,32,33,61,61,32,120,32,124,124,32,115,105,116,101,91,49,93,32,33,61,61,32,121,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,66,101,97,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,100,100,66,101,97,99,104,41,40,115,105,116,101,41,59,92,110,32,32,32,32,32,32,32,32,120,32,61,32,115,105,116,101,91,48,93,44,32,121,32,61,32,115,105,116,101,91,49,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,105,116,101,32,61,32,115,105,116,101,115,46,112,111,112,40,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,99,105,114,99,108,101,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,66,101,97,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,109,111,118,101,66,101,97,99,104,41,40,99,105,114,99,108,101,46,97,114,99,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,40,48,44,95,67,101,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,111,114,116,67,101,108,108,72,97,108,102,101,100,103,101,115,41,40,41,59,92,110,92,110,32,32,105,102,32,40,101,120,116,101,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,120,48,32,61,32,43,101,120,116,101,110,116,91,48,93,91,48,93,44,92,110,32,32,32,32,32,32,32,32,121,48,32,61,32,43,101,120,116,101,110,116,91,48,93,91,49,93,44,92,110,32,32,32,32,32,32,32,32,120,49,32,61,32,43,101,120,116,101,110,116,91,49,93,91,48,93,44,92,110,32,32,32,32,32,32,32,32,121,49,32,61,32,43,101,120,116,101,110,116,91,49,93,91,49,93,59,92,110,32,32,32,32,40,48,44,95,69,100,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,99,108,105,112,69,100,103,101,115,41,40,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,59,92,110,32,32,32,32,40,48,44,95,67,101,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,108,105,112,67,101,108,108,115,41,40,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,59,92,110,32,32,125,92,110,92,110,32,32,116,104,105,115,46,101,100,103,101,115,32,61,32,101,100,103,101,115,59,92,110,32,32,116,104,105,115,46,99,101,108,108,115,32,61,32,99,101,108,108,115,59,92,110,92,110,32,32,98,101,97,99,104,101,115,32,61,92,110,32,32,99,105,114,99,108,101,115,32,61,92,110,32,32,101,100,103,101,115,32,61,92,110,32,32,99,101,108,108,115,32,61,32,110,117,108,108,59,92,110,125,92,110,92,110,68,105,97,103,114,97,109,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,68,105,97,103,114,97,109,44,92,110,92,110,32,32,112,111,108,121,103,111,110,115,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,101,100,103,101,115,32,61,32,116,104,105,115,46,101,100,103,101,115,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,101,108,108,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,99,101,108,108,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,111,108,121,103,111,110,32,61,32,99,101,108,108,46,104,97,108,102,101,100,103,101,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,105,41,32,123,32,114,101,116,117,114,110,32,40,48,44,95,67,101,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,101,108,108,72,97,108,102,101,100,103,101,83,116,97,114,116,41,40,99,101,108,108,44,32,101,100,103,101,115,91,105,93,41,59,32,125,41,59,92,110,32,32,32,32,32,32,112,111,108,121,103,111,110,46,100,97,116,97,32,61,32,99,101,108,108,46,115,105,116,101,46,100,97,116,97,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,111,108,121,103,111,110,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,92,110,32,32,116,114,105,97,110,103,108,101,115,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,116,114,105,97,110,103,108,101,115,32,61,32,91,93,44,92,110,32,32,32,32,32,32,32,32,101,100,103,101,115,32,61,32,116,104,105,115,46,101,100,103,101,115,59,92,110,92,110,32,32,32,32,116,104,105,115,46,99,101,108,108,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,99,101,108,108,44,32,105,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,109,32,61,32,40,104,97,108,102,101,100,103,101,115,32,61,32,99,101,108,108,46,104,97,108,102,101,100,103,101,115,41,46,108,101,110,103,116,104,41,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,118,97,114,32,115,105,116,101,32,61,32,99,101,108,108,46,115,105,116,101,44,92,110,32,32,32,32,32,32,32,32,32,32,104,97,108,102,101,100,103,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,106,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,109,44,92,110,32,32,32,32,32,32,32,32,32,32,115,48,44,92,110,32,32,32,32,32,32,32,32,32,32,101,49,32,61,32,101,100,103,101,115,91,104,97,108,102,101,100,103,101,115,91,109,32,45,32,49,93,93,44,92,110,32,32,32,32,32,32,32,32,32,32,115,49,32,61,32,101,49,46,108,101,102,116,32,61,61,61,32,115,105,116,101,32,63,32,101,49,46,114,105,103,104,116,32,58,32,101,49,46,108,101,102,116,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,106,32,60,32,109,41,32,123,92,110,32,32,32,32,32,32,32,32,115,48,32,61,32,115,49,59,92,110,32,32,32,32,32,32,32,32,101,49,32,61,32,101,100,103,101,115,91,104,97,108,102,101,100,103,101,115,91,106,93,93,59,92,110,32,32,32,32,32,32,32,32,115,49,32,61,32,101,49,46,108,101,102,116,32,61,61,61,32,115,105,116,101,32,63,32,101,49,46,114,105,103,104,116,32,58,32,101,49,46,108,101,102,116,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,48,32,38,38,32,115,49,32,38,38,32,105,32,60,32,115,48,46,105,110,100,101,120,32,38,38,32,105,32,60,32,115,49,46,105,110,100,101,120,32,38,38,32,116,114,105,97,110,103,108,101,65,114,101,97,40,115,105,116,101,44,32,115,48,44,32,115,49,41,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,114,105,97,110,103,108,101,115,46,112,117,115,104,40,91,115,105,116,101,46,100,97,116,97,44,32,115,48,46,100,97,116,97,44,32,115,49,46,100,97,116,97,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,105,97,110,103,108,101,115,59,92,110,32,32,125,44,92,110,92,110,32,32,108,105,110,107,115,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,100,103,101,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,101,100,103,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,101,100,103,101,46,114,105,103,104,116,59,92,110,32,32,32,32,125,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,100,103,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,115,111,117,114,99,101,58,32,101,100,103,101,46,108,101,102,116,46,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,101,100,103,101,46,114,105,103,104,116,46,100,97,116,97,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,92,110,32,32,102,105,110,100,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,44,32,114,97,100,105,117,115,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,97,116,32,61,32,116,104,105,115,44,32,105,48,44,32,105,49,32,61,32,116,104,97,116,46,95,102,111,117,110,100,32,124,124,32,48,44,32,110,32,61,32,116,104,97,116,46,99,101,108,108,115,46,108,101,110,103,116,104,44,32,99,101,108,108,59,92,110,92,110,32,32,32,32,47,47,32,85,115,101,32,116,104,101,32,112,114,101,118,105,111,117,115,108,121,45,102,111,117,110,100,32,99,101,108,108,44,32,111,114,32,115,116,97,114,116,32,119,105,116,104,32,97,110,32,97,114,98,105,116,114,97,114,121,32,111,110,101,46,92,110,32,32,32,32,119,104,105,108,101,32,40,33,40,99,101,108,108,32,61,32,116,104,97,116,46,99,101,108,108,115,91,105,49,93,41,41,32,105,102,32,40,43,43,105,49,32,62,61,32,110,41,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,118,97,114,32,100,120,32,61,32,120,32,45,32,99,101,108,108,46,115,105,116,101,91,48,93,44,32,100,121,32,61,32,121,32,45,32,99,101,108,108,46,115,105,116,101,91,49,93,44,32,100,50,32,61,32,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,59,92,110,92,110,32,32,32,32,47,47,32,84,114,97,118,101,114,115,101,32,116,104,101,32,104,97,108,102,45,101,100,103,101,115,32,116,111,32,102,105,110,100,32,97,32,99,108,111,115,101,114,32,99,101,108,108,44,32,105,102,32,97,110,121,46,92,110,32,32,32,32,100,111,32,123,92,110,32,32,32,32,32,32,99,101,108,108,32,61,32,116,104,97,116,46,99,101,108,108,115,91,105,48,32,61,32,105,49,93,44,32,105,49,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,99,101,108,108,46,104,97,108,102,101,100,103,101,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,100,103,101,32,61,32,116,104,97,116,46,101,100,103,101,115,91,101,93,44,32,118,32,61,32,101,100,103,101,46,108,101,102,116,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,118,32,61,61,61,32,99,101,108,108,46,115,105,116,101,32,124,124,32,33,118,41,32,38,38,32,33,40,118,32,61,32,101,100,103,101,46,114,105,103,104,116,41,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,120,32,61,32,120,32,45,32,118,91,48,93,44,32,118,121,32,61,32,121,32,45,32,118,91,49,93,44,32,118,50,32,61,32,118,120,32,42,32,118,120,32,43,32,118,121,32,42,32,118,121,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,50,32,60,32,100,50,41,32,100,50,32,61,32,118,50,44,32,105,49,32,61,32,118,46,105,110,100,101,120,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,119,104,105,108,101,32,40,105,49,32,33,61,61,32,110,117,108,108,41,59,92,110,92,110,32,32,32,32,116,104,97,116,46,95,102,111,117,110,100,32,61,32,105,48,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,97,100,105,117,115,32,61,61,32,110,117,108,108,32,124,124,32,100,50,32,60,61,32,114,97,100,105,117,115,32,42,32,114,97,100,105,117,115,32,63,32,99,101,108,108,46,115,105,116,101,32,58,32,110,117,108,108,59,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,68,105,97,103,114,97,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,69,100,103,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,69,100,103,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,108,105,112,69,100,103,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,108,105,112,69,100,103,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,101,97,116,101,66,111,114,100,101,114,69,100,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,114,101,97,116,101,66,111,114,100,101,114,69,100,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,101,97,116,101,69,100,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,114,101,97,116,101,69,100,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,116,69,100,103,101,69,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,116,69,100,103,101,69,110,100,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,105,97,103,114,97,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,68,105,97,103,114,97,109,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,69,100,103,101,40,108,101,102,116,44,32,114,105,103,104,116,44,32,118,48,44,32,118,49,41,32,123,92,110,32,32,118,97,114,32,101,100,103,101,32,61,32,91,110,117,108,108,44,32,110,117,108,108,93,44,92,110,32,32,32,32,32,32,105,110,100,101,120,32,61,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,100,103,101,115,46,112,117,115,104,40,101,100,103,101,41,32,45,32,49,59,92,110,32,32,101,100,103,101,46,108,101,102,116,32,61,32,108,101,102,116,59,92,110,32,32,101,100,103,101,46,114,105,103,104,116,32,61,32,114,105,103,104,116,59,92,110,32,32,105,102,32,40,118,48,41,32,115,101,116,69,100,103,101,69,110,100,40,101,100,103,101,44,32,108,101,102,116,44,32,114,105,103,104,116,44,32,118,48,41,59,92,110,32,32,105,102,32,40,118,49,41,32,115,101,116,69,100,103,101,69,110,100,40,101,100,103,101,44,32,114,105,103,104,116,44,32,108,101,102,116,44,32,118,49,41,59,92,110,32,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,101,108,108,115,91,108,101,102,116,46,105,110,100,101,120,93,46,104,97,108,102,101,100,103,101,115,46,112,117,115,104,40,105,110,100,101,120,41,59,92,110,32,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,101,108,108,115,91,114,105,103,104,116,46,105,110,100,101,120,93,46,104,97,108,102,101,100,103,101,115,46,112,117,115,104,40,105,110,100,101,120,41,59,92,110,32,32,114,101,116,117,114,110,32,101,100,103,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,66,111,114,100,101,114,69,100,103,101,40,108,101,102,116,44,32,118,48,44,32,118,49,41,32,123,92,110,32,32,118,97,114,32,101,100,103,101,32,61,32,91,118,48,44,32,118,49,93,59,92,110,32,32,101,100,103,101,46,108,101,102,116,32,61,32,108,101,102,116,59,92,110,32,32,114,101,116,117,114,110,32,101,100,103,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,69,100,103,101,69,110,100,40,101,100,103,101,44,32,108,101,102,116,44,32,114,105,103,104,116,44,32,118,101,114,116,101,120,41,32,123,92,110,32,32,105,102,32,40,33,101,100,103,101,91,48,93,32,38,38,32,33,101,100,103,101,91,49,93,41,32,123,92,110,32,32,32,32,101,100,103,101,91,48,93,32,61,32,118,101,114,116,101,120,59,92,110,32,32,32,32,101,100,103,101,46,108,101,102,116,32,61,32,108,101,102,116,59,92,110,32,32,32,32,101,100,103,101,46,114,105,103,104,116,32,61,32,114,105,103,104,116,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,101,100,103,101,46,108,101,102,116,32,61,61,61,32,114,105,103,104,116,41,32,123,92,110,32,32,32,32,101,100,103,101,91,49,93,32,61,32,118,101,114,116,101,120,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,101,100,103,101,91,48,93,32,61,32,118,101,114,116,101,120,59,92,110,32,32,125,92,110,125,92,110,92,110,47,47,32,76,105,97,110,103,226,128,147,66,97,114,115,107,121,32,108,105,110,101,32,99,108,105,112,112,105,110,103,46,92,110,102,117,110,99,116,105,111,110,32,99,108,105,112,69,100,103,101,40,101,100,103,101,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,118,97,114,32,97,32,61,32,101,100,103,101,91,48,93,44,92,110,32,32,32,32,32,32,98,32,61,32,101,100,103,101,91,49,93,44,92,110,32,32,32,32,32,32,97,120,32,61,32,97,91,48,93,44,92,110,32,32,32,32,32,32,97,121,32,61,32,97,91,49,93,44,92,110,32,32,32,32,32,32,98,120,32,61,32,98,91,48,93,44,92,110,32,32,32,32,32,32,98,121,32,61,32,98,91,49,93,44,92,110,32,32,32,32,32,32,116,48,32,61,32,48,44,92,110,32,32,32,32,32,32,116,49,32,61,32,49,44,92,110,32,32,32,32,32,32,100,120,32,61,32,98,120,32,45,32,97,120,44,92,110,32,32,32,32,32,32,100,121,32,61,32,98,121,32,45,32,97,121,44,92,110,32,32,32,32,32,32,114,59,92,110,92,110,32,32,114,32,61,32,120,48,32,45,32,97,120,59,92,110,32,32,105,102,32,40,33,100,120,32,38,38,32,114,32,62,32,48,41,32,114,101,116,117,114,110,59,92,110,32,32,114,32,47,61,32,100,120,59,92,110,32,32,105,102,32,40,100,120,32,60,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,48,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,49,41,32,116,49,32,61,32,114,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,100,120,32,62,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,49,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,48,41,32,116,48,32,61,32,114,59,92,110,32,32,125,92,110,92,110,32,32,114,32,61,32,120,49,32,45,32,97,120,59,92,110,32,32,105,102,32,40,33,100,120,32,38,38,32,114,32,60,32,48,41,32,114,101,116,117,114,110,59,92,110,32,32,114,32,47,61,32,100,120,59,92,110,32,32,105,102,32,40,100,120,32,60,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,49,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,48,41,32,116,48,32,61,32,114,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,100,120,32,62,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,48,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,49,41,32,116,49,32,61,32,114,59,92,110,32,32,125,92,110,92,110,32,32,114,32,61,32,121,48,32,45,32,97,121,59,92,110,32,32,105,102,32,40,33,100,121,32,38,38,32,114,32,62,32,48,41,32,114,101,116,117,114,110,59,92,110,32,32,114,32,47,61,32,100,121,59,92,110,32,32,105,102,32,40,100,121,32,60,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,48,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,49,41,32,116,49,32,61,32,114,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,100,121,32,62,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,49,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,48,41,32,116,48,32,61,32,114,59,92,110,32,32,125,92,110,92,110,32,32,114,32,61,32,121,49,32,45,32,97,121,59,92,110,32,32,105,102,32,40,33,100,121,32,38,38,32,114,32,60,32,48,41,32,114,101,116,117,114,110,59,92,110,32,32,114,32,47,61,32,100,121,59,92,110,32,32,105,102,32,40,100,121,32,60,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,49,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,62,32,116,48,41,32,116,48,32,61,32,114,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,100,121,32,62,32,48,41,32,123,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,48,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,114,32,60,32,116,49,41,32,116,49,32,61,32,114,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,40,116,48,32,62,32,48,41,32,38,38,32,33,40,116,49,32,60,32,49,41,41,32,114,101,116,117,114,110,32,116,114,117,101,59,32,47,47,32,84,79,68,79,32,66,101,116,116,101,114,32,99,104,101,99,107,63,92,110,92,110,32,32,105,102,32,40,116,48,32,62,32,48,41,32,101,100,103,101,91,48,93,32,61,32,91,97,120,32,43,32,116,48,32,42,32,100,120,44,32,97,121,32,43,32,116,48,32,42,32,100,121,93,59,92,110,32,32,105,102,32,40,116,49,32,60,32,49,41,32,101,100,103,101,91,49,93,32,61,32,91,97,120,32,43,32,116,49,32,42,32,100,120,44,32,97,121,32,43,32,116,49,32,42,32,100,121,93,59,92,110,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,110,110,101,99,116,69,100,103,101,40,101,100,103,101,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,118,97,114,32,118,49,32,61,32,101,100,103,101,91,49,93,59,92,110,32,32,105,102,32,40,118,49,41,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,92,110,32,32,118,97,114,32,118,48,32,61,32,101,100,103,101,91,48,93,44,92,110,32,32,32,32,32,32,108,101,102,116,32,61,32,101,100,103,101,46,108,101,102,116,44,92,110,32,32,32,32,32,32,114,105,103,104,116,32,61,32,101,100,103,101,46,114,105,103,104,116,44,92,110,32,32,32,32,32,32,108,120,32,61,32,108,101,102,116,91,48,93,44,92,110,32,32,32,32,32,32,108,121,32,61,32,108,101,102,116,91,49,93,44,92,110,32,32,32,32,32,32,114,120,32,61,32,114,105,103,104,116,91,48,93,44,92,110,32,32,32,32,32,32,114,121,32,61,32,114,105,103,104,116,91,49,93,44,92,110,32,32,32,32,32,32,102,120,32,61,32,40,108,120,32,43,32,114,120,41,32,47,32,50,44,92,110,32,32,32,32,32,32,102,121,32,61,32,40,108,121,32,43,32,114,121,41,32,47,32,50,44,92,110,32,32,32,32,32,32,102,109,44,92,110,32,32,32,32,32,32,102,98,59,92,110,92,110,32,32,105,102,32,40,114,121,32,61,61,61,32,108,121,41,32,123,92,110,32,32,32,32,105,102,32,40,102,120,32,60,32,120,48,32,124,124,32,102,120,32,62,61,32,120,49,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,108,120,32,62,32,114,120,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,118,48,41,32,118,48,32,61,32,91,102,120,44,32,121,48,93,59,92,110,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,118,48,91,49,93,32,62,61,32,121,49,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,118,49,32,61,32,91,102,120,44,32,121,49,93,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,118,48,41,32,118,48,32,61,32,91,102,120,44,32,121,49,93,59,92,110,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,118,48,91,49,93,32,60,32,121,48,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,118,49,32,61,32,91,102,120,44,32,121,48,93,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,102,109,32,61,32,40,108,120,32,45,32,114,120,41,32,47,32,40,114,121,32,45,32,108,121,41,59,92,110,32,32,32,32,102,98,32,61,32,102,121,32,45,32,102,109,32,42,32,102,120,59,92,110,32,32,32,32,105,102,32,40,102,109,32,60,32,45,49,32,124,124,32,102,109,32,62,32,49,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,108,120,32,62,32,114,120,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,118,48,41,32,118,48,32,61,32,91,40,121,48,32,45,32,102,98,41,32,47,32,102,109,44,32,121,48,93,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,118,48,91,49,93,32,62,61,32,121,49,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,118,49,32,61,32,91,40,121,49,32,45,32,102,98,41,32,47,32,102,109,44,32,121,49,93,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,118,48,41,32,118,48,32,61,32,91,40,121,49,32,45,32,102,98,41,32,47,32,102,109,44,32,121,49,93,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,118,48,91,49,93,32,60,32,121,48,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,118,49,32,61,32,91,40,121,48,32,45,32,102,98,41,32,47,32,102,109,44,32,121,48,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,105,102,32,40,108,121,32,60,32,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,118,48,41,32,118,48,32,61,32,91,120,48,44,32,102,109,32,42,32,120,48,32,43,32,102,98,93,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,118,48,91,48,93,32,62,61,32,120,49,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,118,49,32,61,32,91,120,49,44,32,102,109,32,42,32,120,49,32,43,32,102,98,93,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,118,48,41,32,118,48,32,61,32,91,120,49,44,32,102,109,32,42,32,120,49,32,43,32,102,98,93,59,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,118,48,91,48,93,32,60,32,120,48,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,118,49,32,61,32,91,120,48,44,32,102,109,32,42,32,120,48,32,43,32,102,98,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,101,100,103,101,91,48,93,32,61,32,118,48,59,92,110,32,32,101,100,103,101,91,49,93,32,61,32,118,49,59,92,110,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,105,112,69,100,103,101,115,40,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,100,103,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,101,100,103,101,59,92,110,92,110,32,32,119,104,105,108,101,32,40,105,45,45,41,32,123,92,110,32,32,32,32,105,102,32,40,33,99,111,110,110,101,99,116,69,100,103,101,40,101,100,103,101,32,61,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,100,103,101,115,91,105,93,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,92,110,32,32,32,32,32,32,32,32,124,124,32,33,99,108,105,112,69,100,103,101,40,101,100,103,101,44,32,120,48,44,32,121,48,44,32,120,49,44,32,121,49,41,92,110,32,32,32,32,32,32,32,32,124,124,32,33,40,77,97,116,104,46,97,98,115,40,101,100,103,101,91,48,93,91,48,93,32,45,32,101,100,103,101,91,49,93,91,48,93,41,32,62,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,124,124,32,77,97,116,104,46,97,98,115,40,101,100,103,101,91,48,93,91,49,93,32,45,32,101,100,103,101,91,49,93,91,49,93,41,32,62,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,112,115,105,108,111,110,41,41,32,123,92,110,32,32,32,32,32,32,100,101,108,101,116,101,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,100,103,101,115,91,105,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,69,100,103,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,82,101,100,66,108,97,99,107,84,114,101,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,82,101,100,66,108,97,99,107,84,114,101,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,101,100,66,108,97,99,107,78,111,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,101,100,66,108,97,99,107,78,111,100,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,82,101,100,66,108,97,99,107,84,114,101,101,40,41,32,123,92,110,32,32,116,104,105,115,46,95,32,61,32,110,117,108,108,59,32,47,47,32,114,111,111,116,32,110,111,100,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,82,101,100,66,108,97,99,107,78,111,100,101,40,110,111,100,101,41,32,123,92,110,32,32,110,111,100,101,46,85,32,61,32,47,47,32,112,97,114,101,110,116,32,110,111,100,101,92,110,32,32,110,111,100,101,46,67,32,61,32,47,47,32,99,111,108,111,114,32,45,32,116,114,117,101,32,102,111,114,32,114,101,100,44,32,102,97,108,115,101,32,102,111,114,32,98,108,97,99,107,92,110,32,32,110,111,100,101,46,76,32,61,32,47,47,32,108,101,102,116,32,110,111,100,101,92,110,32,32,110,111,100,101,46,82,32,61,32,47,47,32,114,105,103,104,116,32,110,111,100,101,92,110,32,32,110,111,100,101,46,80,32,61,32,47,47,32,112,114,101,118,105,111,117,115,32,110,111,100,101,92,110,32,32,110,111,100,101,46,78,32,61,32,110,117,108,108,59,32,47,47,32,110,101,120,116,32,110,111,100,101,92,110,125,92,110,92,110,82,101,100,66,108,97,99,107,84,114,101,101,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,82,101,100,66,108,97,99,107,84,114,101,101,44,92,110,92,110,32,32,105,110,115,101,114,116,58,32,102,117,110,99,116,105,111,110,40,97,102,116,101,114,44,32,110,111,100,101,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,44,32,103,114,97,110,100,112,97,44,32,117,110,99,108,101,59,92,110,92,110,32,32,32,32,105,102,32,40,97,102,116,101,114,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,46,80,32,61,32,97,102,116,101,114,59,92,110,32,32,32,32,32,32,110,111,100,101,46,78,32,61,32,97,102,116,101,114,46,78,59,92,110,32,32,32,32,32,32,105,102,32,40,97,102,116,101,114,46,78,41,32,97,102,116,101,114,46,78,46,80,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,97,102,116,101,114,46,78,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,105,102,32,40,97,102,116,101,114,46,82,41,32,123,92,110,32,32,32,32,32,32,32,32,97,102,116,101,114,32,61,32,97,102,116,101,114,46,82,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,97,102,116,101,114,46,76,41,32,97,102,116,101,114,32,61,32,97,102,116,101,114,46,76,59,92,110,32,32,32,32,32,32,32,32,97,102,116,101,114,46,76,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,97,102,116,101,114,46,82,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,97,102,116,101,114,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,95,41,32,123,92,110,32,32,32,32,32,32,97,102,116,101,114,32,61,32,82,101,100,66,108,97,99,107,70,105,114,115,116,40,116,104,105,115,46,95,41,59,92,110,32,32,32,32,32,32,110,111,100,101,46,80,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,110,111,100,101,46,78,32,61,32,97,102,116,101,114,59,92,110,32,32,32,32,32,32,97,102,116,101,114,46,80,32,61,32,97,102,116,101,114,46,76,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,97,102,116,101,114,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,110,111,100,101,46,80,32,61,32,110,111,100,101,46,78,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,32,32,110,111,100,101,46,76,32,61,32,110,111,100,101,46,82,32,61,32,110,117,108,108,59,92,110,32,32,32,32,110,111,100,101,46,85,32,61,32,112,97,114,101,110,116,59,92,110,32,32,32,32,110,111,100,101,46,67,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,97,102,116,101,114,32,61,32,110,111,100,101,59,92,110,32,32,32,32,119,104,105,108,101,32,40,112,97,114,101,110,116,32,38,38,32,112,97,114,101,110,116,46,67,41,32,123,92,110,32,32,32,32,32,32,103,114,97,110,100,112,97,32,61,32,112,97,114,101,110,116,46,85,59,92,110,32,32,32,32,32,32,105,102,32,40,112,97,114,101,110,116,32,61,61,61,32,103,114,97,110,100,112,97,46,76,41,32,123,92,110,32,32,32,32,32,32,32,32,117,110,99,108,101,32,61,32,103,114,97,110,100,112,97,46,82,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,117,110,99,108,101,32,38,38,32,117,110,99,108,101,46,67,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,46,67,32,61,32,117,110,99,108,101,46,67,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,103,114,97,110,100,112,97,46,67,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,97,102,116,101,114,32,61,32,103,114,97,110,100,112,97,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,102,116,101,114,32,61,61,61,32,112,97,114,101,110,116,46,82,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,82,101,100,66,108,97,99,107,82,111,116,97,116,101,76,101,102,116,40,116,104,105,115,44,32,112,97,114,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,102,116,101,114,32,61,32,112,97,114,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,97,102,116,101,114,46,85,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,46,67,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,103,114,97,110,100,112,97,46,67,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,82,101,100,66,108,97,99,107,82,111,116,97,116,101,82,105,103,104,116,40,116,104,105,115,44,32,103,114,97,110,100,112,97,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,117,110,99,108,101,32,61,32,103,114,97,110,100,112,97,46,76,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,117,110,99,108,101,32,38,38,32,117,110,99,108,101,46,67,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,46,67,32,61,32,117,110,99,108,101,46,67,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,103,114,97,110,100,112,97,46,67,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,97,102,116,101,114,32,61,32,103,114,97,110,100,112,97,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,102,116,101,114,32,61,61,61,32,112,97,114,101,110,116,46,76,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,82,101,100,66,108,97,99,107,82,111,116,97,116,101,82,105,103,104,116,40,116,104,105,115,44,32,112,97,114,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,102,116,101,114,32,61,32,112,97,114,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,97,102,116,101,114,46,85,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,46,67,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,103,114,97,110,100,112,97,46,67,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,82,101,100,66,108,97,99,107,82,111,116,97,116,101,76,101,102,116,40,116,104,105,115,44,32,103,114,97,110,100,112,97,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,97,102,116,101,114,46,85,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,104,105,115,46,95,46,67,32,61,32,102,97,108,115,101,59,92,110,32,32,125,44,92,110,92,110,32,32,114,101,109,111,118,101,58,32,102,117,110,99,116,105,111,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,105,102,32,40,110,111,100,101,46,78,41,32,110,111,100,101,46,78,46,80,32,61,32,110,111,100,101,46,80,59,92,110,32,32,32,32,105,102,32,40,110,111,100,101,46,80,41,32,110,111,100,101,46,80,46,78,32,61,32,110,111,100,101,46,78,59,92,110,32,32,32,32,110,111,100,101,46,78,32,61,32,110,111,100,101,46,80,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,110,111,100,101,46,85,44,92,110,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,44,92,110,32,32,32,32,32,32,32,32,108,101,102,116,32,61,32,110,111,100,101,46,76,44,92,110,32,32,32,32,32,32,32,32,114,105,103,104,116,32,61,32,110,111,100,101,46,82,44,92,110,32,32,32,32,32,32,32,32,110,101,120,116,44,92,110,32,32,32,32,32,32,32,32,114,101,100,59,92,110,92,110,32,32,32,32,105,102,32,40,33,108,101,102,116,41,32,110,101,120,116,32,61,32,114,105,103,104,116,59,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,33,114,105,103,104,116,41,32,110,101,120,116,32,61,32,108,101,102,116,59,92,110,32,32,32,32,101,108,115,101,32,110,101,120,116,32,61,32,82,101,100,66,108,97,99,107,70,105,114,115,116,40,114,105,103,104,116,41,59,92,110,92,110,32,32,32,32,105,102,32,40,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,112,97,114,101,110,116,46,76,32,61,61,61,32,110,111,100,101,41,32,112,97,114,101,110,116,46,76,32,61,32,110,101,120,116,59,92,110,32,32,32,32,32,32,101,108,115,101,32,112,97,114,101,110,116,46,82,32,61,32,110,101,120,116,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,32,61,32,110,101,120,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,108,101,102,116,32,38,38,32,114,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,114,101,100,32,61,32,110,101,120,116,46,67,59,92,110,32,32,32,32,32,32,110,101,120,116,46,67,32,61,32,110,111,100,101,46,67,59,92,110,32,32,32,32,32,32,110,101,120,116,46,76,32,61,32,108,101,102,116,59,92,110,32,32,32,32,32,32,108,101,102,116,46,85,32,61,32,110,101,120,116,59,92,110,32,32,32,32,32,32,105,102,32,40,110,101,120,116,32,33,61,61,32,114,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,110,101,120,116,46,85,59,92,110,32,32,32,32,32,32,32,32,110,101,120,116,46,85,32,61,32,110,111,100,101,46,85,59,92,110,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,110,101,120,116,46,82,59,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,46,76,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,110,101,120,116,46,82,32,61,32,114,105,103,104,116,59,92,110,32,32,32,32,32,32,32,32,114,105,103,104,116,46,85,32,61,32,110,101,120,116,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,110,101,120,116,46,85,32,61,32,112,97,114,101,110,116,59,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,110,101,120,116,59,92,110,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,110,101,120,116,46,82,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,100,32,61,32,110,111,100,101,46,67,59,92,110,32,32,32,32,32,32,110,111,100,101,32,61,32,110,101,120,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,110,111,100,101,41,32,110,111,100,101,46,85,32,61,32,112,97,114,101,110,116,59,92,110,32,32,32,32,105,102,32,40,114,101,100,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,105,102,32,40,110,111,100,101,32,38,38,32,110,111,100,101,46,67,41,32,123,32,110,111,100,101,46,67,32,61,32,102,97,108,115,101,59,32,114,101,116,117,114,110,59,32,125,92,110,92,110,32,32,32,32,100,111,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,32,61,61,61,32,116,104,105,115,46,95,41,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,32,61,61,61,32,112,97,114,101,110,116,46,76,41,32,123,92,110,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,32,61,32,112,97,114,101,110,116,46,82,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,105,98,108,105,110,103,46,67,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,46,67,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,46,67,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,82,101,100,66,108,97,99,107,82,111,116,97,116,101,76,101,102,116,40,116,104,105,115,44,32,112,97,114,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,32,61,32,112,97,114,101,110,116,46,82,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,115,105,98,108,105,110,103,46,76,32,38,38,32,115,105,98,108,105,110,103,46,76,46,67,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,124,124,32,40,115,105,98,108,105,110,103,46,82,32,38,38,32,115,105,98,108,105,110,103,46,82,46,67,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,115,105,98,108,105,110,103,46,82,32,124,124,32,33,115,105,98,108,105,110,103,46,82,46,67,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,46,76,46,67,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,46,67,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,82,101,100,66,108,97,99,107,82,111,116,97,116,101,82,105,103,104,116,40,116,104,105,115,44,32,115,105,98,108,105,110,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,32,61,32,112,97,114,101,110,116,46,82,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,46,67,32,61,32,112,97,114,101,110,116,46,67,59,92,110,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,46,67,32,61,32,115,105,98,108,105,110,103,46,82,46,67,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,82,101,100,66,108,97,99,107,82,111,116,97,116,101,76,101,102,116,40,116,104,105,115,44,32,112,97,114,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,116,104,105,115,46,95,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,32,61,32,112,97,114,101,110,116,46,76,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,105,98,108,105,110,103,46,67,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,46,67,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,46,67,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,82,101,100,66,108,97,99,107,82,111,116,97,116,101,82,105,103,104,116,40,116,104,105,115,44,32,112,97,114,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,32,61,32,112,97,114,101,110,116,46,76,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,115,105,98,108,105,110,103,46,76,32,38,38,32,115,105,98,108,105,110,103,46,76,46,67,41,92,110,32,32,32,32,32,32,32,32,32,32,124,124,32,40,115,105,98,108,105,110,103,46,82,32,38,38,32,115,105,98,108,105,110,103,46,82,46,67,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,115,105,98,108,105,110,103,46,76,32,124,124,32,33,115,105,98,108,105,110,103,46,76,46,67,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,46,82,46,67,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,46,67,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,82,101,100,66,108,97,99,107,82,111,116,97,116,101,76,101,102,116,40,116,104,105,115,44,32,115,105,98,108,105,110,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,32,61,32,112,97,114,101,110,116,46,76,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,115,105,98,108,105,110,103,46,67,32,61,32,112,97,114,101,110,116,46,67,59,92,110,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,46,67,32,61,32,115,105,98,108,105,110,103,46,76,46,67,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,82,101,100,66,108,97,99,107,82,111,116,97,116,101,82,105,103,104,116,40,116,104,105,115,44,32,112,97,114,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,116,104,105,115,46,95,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,105,98,108,105,110,103,46,67,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,110,111,100,101,32,61,32,112,97,114,101,110,116,59,92,110,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,112,97,114,101,110,116,46,85,59,92,110,32,32,32,32,125,32,119,104,105,108,101,32,40,33,110,111,100,101,46,67,41,59,92,110,92,110,32,32,32,32,105,102,32,40,110,111,100,101,41,32,110,111,100,101,46,67,32,61,32,102,97,108,115,101,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,82,101,100,66,108,97,99,107,82,111,116,97,116,101,76,101,102,116,40,116,114,101,101,44,32,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,112,32,61,32,110,111,100,101,44,92,110,32,32,32,32,32,32,113,32,61,32,110,111,100,101,46,82,44,92,110,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,112,46,85,59,92,110,92,110,32,32,105,102,32,40,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,105,102,32,40,112,97,114,101,110,116,46,76,32,61,61,61,32,112,41,32,112,97,114,101,110,116,46,76,32,61,32,113,59,92,110,32,32,32,32,101,108,115,101,32,112,97,114,101,110,116,46,82,32,61,32,113,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,116,114,101,101,46,95,32,61,32,113,59,92,110,32,32,125,92,110,92,110,32,32,113,46,85,32,61,32,112,97,114,101,110,116,59,92,110,32,32,112,46,85,32,61,32,113,59,92,110,32,32,112,46,82,32,61,32,113,46,76,59,92,110,32,32,105,102,32,40,112,46,82,41,32,112,46,82,46,85,32,61,32,112,59,92,110,32,32,113,46,76,32,61,32,112,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,82,101,100,66,108,97,99,107,82,111,116,97,116,101,82,105,103,104,116,40,116,114,101,101,44,32,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,112,32,61,32,110,111,100,101,44,92,110,32,32,32,32,32,32,113,32,61,32,110,111,100,101,46,76,44,92,110,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,112,46,85,59,92,110,92,110,32,32,105,102,32,40,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,105,102,32,40,112,97,114,101,110,116,46,76,32,61,61,61,32,112,41,32,112,97,114,101,110,116,46,76,32,61,32,113,59,92,110,32,32,32,32,101,108,115,101,32,112,97,114,101,110,116,46,82,32,61,32,113,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,116,114,101,101,46,95,32,61,32,113,59,92,110,32,32,125,92,110,92,110,32,32,113,46,85,32,61,32,112,97,114,101,110,116,59,92,110,32,32,112,46,85,32,61,32,113,59,92,110,32,32,112,46,76,32,61,32,113,46,82,59,92,110,32,32,105,102,32,40,112,46,76,41,32,112,46,76,46,85,32,61,32,112,59,92,110,32,32,113,46,82,32,61,32,112,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,82,101,100,66,108,97,99,107,70,105,114,115,116,40,110,111,100,101,41,32,123,92,110,32,32,119,104,105,108,101,32,40,110,111,100,101,46,76,41,32,110,111,100,101,32,61,32,110,111,100,101,46,76,59,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,82,101,100,66,108,97,99,107,84,114,101,101,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,82,101,100,66,108,97,99,107,84,114,101,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,118,111,114,111,110,111,105,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,118,111,114,111,110,111,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,111,114,111,110,111,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,118,111,114,111,110,111,105,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,118,111,114,111,110,111,105,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,112,111,105,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,112,111,105,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,121,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,120,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,91,48,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,121,40,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,91,49,93,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,112,111,105,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,118,111,114,111,110,111,105,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,118,111,114,111,110,111,105,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,111,105,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,111,105,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,112,111,105,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,105,97,103,114,97,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,68,105,97,103,114,97,109,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,120,32,61,32,95,112,111,105,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,120,44,92,110,32,32,32,32,32,32,121,32,61,32,95,112,111,105,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,121,44,92,110,32,32,32,32,32,32,101,120,116,101,110,116,32,61,32,110,117,108,108,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,118,111,114,111,110,111,105,40,100,97,116,97,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,100,97,116,97,46,109,97,112,40,102,117,110,99,116,105,111,110,40,100,44,32,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,32,61,32,91,77,97,116,104,46,114,111,117,110,100,40,120,40,100,44,32,105,44,32,100,97,116,97,41,32,47,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,112,115,105,108,111,110,41,32,42,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,112,115,105,108,111,110,44,32,77,97,116,104,46,114,111,117,110,100,40,121,40,100,44,32,105,44,32,100,97,116,97,41,32,47,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,112,115,105,108,111,110,41,32,42,32,95,68,105,97,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,101,112,115,105,108,111,110,93,59,92,110,32,32,32,32,32,32,115,46,105,110,100,101,120,32,61,32,105,59,92,110,32,32,32,32,32,32,115,46,100,97,116,97,32,61,32,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,59,92,110,32,32,32,32,125,41,44,32,101,120,116,101,110,116,41,59,92,110,32,32,125,92,110,92,110,32,32,118,111,114,111,110,111,105,46,112,111,108,121,103,111,110,115,32,61,32,102,117,110,99,116,105,111,110,40,100,97,116,97,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,111,114,111,110,111,105,40,100,97,116,97,41,46,112,111,108,121,103,111,110,115,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,118,111,114,111,110,111,105,46,108,105,110,107,115,32,61,32,102,117,110,99,116,105,111,110,40,100,97,116,97,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,111,114,111,110,111,105,40,100,97,116,97,41,46,108,105,110,107,115,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,118,111,114,111,110,111,105,46,116,114,105,97,110,103,108,101,115,32,61,32,102,117,110,99,116,105,111,110,40,100,97,116,97,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,111,114,111,110,111,105,40,100,97,116,97,41,46,116,114,105,97,110,103,108,101,115,40,41,59,92,110,32,32,125,59,92,110,92,110,32,32,118,111,114,111,110,111,105,46,120,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,120,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,118,111,114,111,110,111,105,41,32,58,32,120,59,92,110,32,32,125,59,92,110,92,110,32,32,118,111,114,111,110,111,105,46,121,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,121,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,118,111,114,111,110,111,105,41,32,58,32,121,59,92,110,32,32,125,59,92,110,92,110,32,32,118,111,114,111,110,111,105,46,101,120,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,101,120,116,101,110,116,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,91,91,43,95,91,48,93,91,48,93,44,32,43,95,91,48,93,91,49,93,93,44,32,91,43,95,91,49,93,91,48,93,44,32,43,95,91,49,93,91,49,93,93,93,44,32,118,111,114,111,110,111,105,41,32,58,32,101,120,116,101,110,116,32,38,38,32,91,91,101,120,116,101,110,116,91,48,93,91,48,93,44,32,101,120,116,101,110,116,91,48,93,91,49,93,93,44,32,91,101,120,116,101,110,116,91,49,93,91,48,93,44,32,101,120,116,101,110,116,91,49,93,91,49,93,93,93,59,92,110,32,32,125,59,92,110,92,110,32,32,118,111,114,111,110,111,105,46,115,105,122,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,101,120,116,101,110,116,32,61,32,95,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,91,91,48,44,32,48,93,44,32,91,43,95,91,48,93,44,32,43,95,91,49,93,93,93,44,32,118,111,114,111,110,111,105,41,32,58,32,101,120,116,101,110,116,32,38,38,32,91,101,120,116,101,110,116,91,49,93,91,48,93,32,45,32,101,120,116,101,110,116,91,48,93,91,48,93,44,32,101,120,116,101,110,116,91,49,93,91,49,93,32,45,32,101,120,116,101,110,116,91,48,93,91,49,93,93,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,118,111,114,111,110,111,105,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,118,111,114,111,110,111,105,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,59,92,110,32,32,125,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,101,118,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,101,118,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,90,111,111,109,69,118,101,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,90,111,111,109,69,118,101,110,116,40,116,97,114,103,101,116,44,32,116,121,112,101,44,32,116,114,97,110,115,102,111,114,109,41,32,123,92,110,32,32,116,104,105,115,46,116,97,114,103,101,116,32,61,32,116,97,114,103,101,116,59,92,110,32,32,116,104,105,115,46,116,121,112,101,32,61,32,116,121,112,101,59,92,110,32,32,116,104,105,115,46,116,114,97,110,115,102,111,114,109,32,61,32,116,114,97,110,115,102,111,114,109,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,101,118,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,122,111,111,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,122,111,111,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,122,111,111,109,73,100,101,110,116,105,116,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,105,100,101,110,116,105,116,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,122,111,111,109,84,114,97,110,115,102,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,122,111,111,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,122,111,111,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,122,111,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,97,110,115,102,111,114,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,116,114,97,110,115,102,111,114,109,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,110,111,101,118,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,110,111,101,118,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,111,112,114,111,112,97,103,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,111,112,114,111,112,97,103,97,116,105,111,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,110,46,106,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,112,114,111,112,97,103,97,116,105,111,110,40,41,32,123,92,110,32,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,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,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,118,101,110,116,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,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,110,111,101,118,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,116,114,97,110,115,102,111,114,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,116,114,97,110,115,102,111,114,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,84,114,97,110,115,102,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,84,114,97,110,115,102,111,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,114,97,110,115,102,111,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,100,101,110,116,105,116,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,100,101,110,116,105,116,121,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,84,114,97,110,115,102,111,114,109,40,107,44,32,120,44,32,121,41,32,123,92,110,32,32,116,104,105,115,46,107,32,61,32,107,59,92,110,32,32,116,104,105,115,46,120,32,61,32,120,59,92,110,32,32,116,104,105,115,46,121,32,61,32,121,59,92,110,125,92,110,92,110,84,114,97,110,115,102,111,114,109,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,84,114,97,110,115,102,111,114,109,44,92,110,32,32,115,99,97,108,101,58,32,102,117,110,99,116,105,111,110,40,107,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,107,32,61,61,61,32,49,32,63,32,116,104,105,115,32,58,32,110,101,119,32,84,114,97,110,115,102,111,114,109,40,116,104,105,115,46,107,32,42,32,107,44,32,116,104,105,115,46,120,44,32,116,104,105,115,46,121,41,59,92,110,32,32,125,44,92,110,32,32,116,114,97,110,115,108,97,116,101,58,32,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,32,61,61,61,32,48,32,38,32,121,32,61,61,61,32,48,32,63,32,116,104,105,115,32,58,32,110,101,119,32,84,114,97,110,115,102,111,114,109,40,116,104,105,115,46,107,44,32,116,104,105,115,46,120,32,43,32,116,104,105,115,46,107,32,42,32,120,44,32,116,104,105,115,46,121,32,43,32,116,104,105,115,46,107,32,42,32,121,41,59,92,110,32,32,125,44,92,110,32,32,97,112,112,108,121,58,32,102,117,110,99,116,105,111,110,40,112,111,105,110,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,112,111,105,110,116,91,48,93,32,42,32,116,104,105,115,46,107,32,43,32,116,104,105,115,46,120,44,32,112,111,105,110,116,91,49,93,32,42,32,116,104,105,115,46,107,32,43,32,116,104,105,115,46,121,93,59,92,110,32,32,125,44,92,110,32,32,97,112,112,108,121,88,58,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,32,42,32,116,104,105,115,46,107,32,43,32,116,104,105,115,46,120,59,92,110,32,32,125,44,92,110,32,32,97,112,112,108,121,89,58,32,102,117,110,99,116,105,111,110,40,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,121,32,42,32,116,104,105,115,46,107,32,43,32,116,104,105,115,46,121,59,92,110,32,32,125,44,92,110,32,32,105,110,118,101,114,116,58,32,102,117,110,99,116,105,111,110,40,108,111,99,97,116,105,111,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,40,108,111,99,97,116,105,111,110,91,48,93,32,45,32,116,104,105,115,46,120,41,32,47,32,116,104,105,115,46,107,44,32,40,108,111,99,97,116,105,111,110,91,49,93,32,45,32,116,104,105,115,46,121,41,32,47,32,116,104,105,115,46,107,93,59,92,110,32,32,125,44,92,110,32,32,105,110,118,101,114,116,88,58,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,120,32,45,32,116,104,105,115,46,120,41,32,47,32,116,104,105,115,46,107,59,92,110,32,32,125,44,92,110,32,32,105,110,118,101,114,116,89,58,32,102,117,110,99,116,105,111,110,40,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,121,32,45,32,116,104,105,115,46,121,41,32,47,32,116,104,105,115,46,107,59,92,110,32,32,125,44,92,110,32,32,114,101,115,99,97,108,101,88,58,32,102,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,120,46,99,111,112,121,40,41,46,100,111,109,97,105,110,40,120,46,114,97,110,103,101,40,41,46,109,97,112,40,116,104,105,115,46,105,110,118,101,114,116,88,44,32,116,104,105,115,41,46,109,97,112,40,120,46,105,110,118,101,114,116,44,32,120,41,41,59,92,110,32,32,125,44,92,110,32,32,114,101,115,99,97,108,101,89,58,32,102,117,110,99,116,105,111,110,40,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,121,46,99,111,112,121,40,41,46,100,111,109,97,105,110,40,121,46,114,97,110,103,101,40,41,46,109,97,112,40,116,104,105,115,46,105,110,118,101,114,116,89,44,32,116,104,105,115,41,46,109,97,112,40,121,46,105,110,118,101,114,116,44,32,121,41,41,59,92,110,32,32,125,44,92,110,32,32,116,111,83,116,114,105,110,103,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,92,34,116,114,97,110,115,108,97,116,101,40,92,34,32,43,32,116,104,105,115,46,120,32,43,32,92,34,44,92,34,32,43,32,116,104,105,115,46,121,32,43,32,92,34,41,32,115,99,97,108,101,40,92,34,32,43,32,116,104,105,115,46,107,32,43,32,92,34,41,92,34,59,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,105,100,101,110,116,105,116,121,32,61,32,110,101,119,32,84,114,97,110,115,102,111,114,109,40,49,44,32,48,44,32,48,41,59,92,110,92,110,116,114,97,110,115,102,111,114,109,46,112,114,111,116,111,116,121,112,101,32,61,32,84,114,97,110,115,102,111,114,109,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,40,110,111,100,101,41,32,123,92,110,32,32,119,104,105,108,101,32,40,33,110,111,100,101,46,95,95,122,111,111,109,41,32,105,102,32,40,33,40,110,111,100,101,32,61,32,110,111,100,101,46,112,97,114,101,110,116,78,111,100,101,41,41,32,114,101,116,117,114,110,32,105,100,101,110,116,105,116,121,59,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,46,95,95,122,111,111,109,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,116,114,97,110,115,102,111,114,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,122,111,111,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,122,111,111,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,101,120,112,111,114,116,32,100,101,102,97,117,108,116,32,98,105,110,100,105,110,103,32,42,47,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,100,105,115,112,97,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,100,105,115,112,97,116,99,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,105,115,112,97,116,99,104,47,115,114,99,47,100,105,115,112,97,116,99,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,100,114,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,100,114,97,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,110,111,100,114,97,103,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,105,110,116,101,114,112,111,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,122,111,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,105,111,110,47,111,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,109,111,117,115,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,115,101,108,101,99,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,116,111,117,99,104,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,114,97,110,115,105,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,99,111,110,115,116,97,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,99,111,110,115,116,97,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,101,118,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,101,118,101,110,116,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,114,97,110,115,102,111,114,109,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,116,114,97,110,115,102,111,114,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,101,118,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,110,111,101,118,101,110,116,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,32,73,103,110,111,114,101,32,114,105,103,104,116,45,99,108,105,99,107,44,32,115,105,110,99,101,32,116,104,97,116,32,115,104,111,117,108,100,32,111,112,101,110,32,116,104,101,32,99,111,110,116,101,120,116,32,109,101,110,117,46,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,70,105,108,116,101,114,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,99,116,114,108,75,101,121,32,38,38,32,33,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,98,117,116,116,111,110,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,69,120,116,101,110,116,40,41,32,123,92,110,32,32,118,97,114,32,101,32,61,32,116,104,105,115,59,92,110,32,32,105,102,32,40,101,32,105,110,115,116,97,110,99,101,111,102,32,83,86,71,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,101,32,61,32,101,46,111,119,110,101,114,83,86,71,69,108,101,109,101,110,116,32,124,124,32,101,59,92,110,32,32,32,32,105,102,32,40,101,46,104,97,115,65,116,116,114,105,98,117,116,101,40,92,34,118,105,101,119,66,111,120,92,34,41,41,32,123,92,110,32,32,32,32,32,32,101,32,61,32,101,46,118,105,101,119,66,111,120,46,98,97,115,101,86,97,108,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,91,101,46,120,44,32,101,46,121,93,44,32,91,101,46,120,32,43,32,101,46,119,105,100,116,104,44,32,101,46,121,32,43,32,101,46,104,101,105,103,104,116,93,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,91,91,48,44,32,48,93,44,32,91,101,46,119,105,100,116,104,46,98,97,115,101,86,97,108,46,118,97,108,117,101,44,32,101,46,104,101,105,103,104,116,46,98,97,115,101,86,97,108,46,118,97,108,117,101,93,93,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,91,91,48,44,32,48,93,44,32,91,101,46,99,108,105,101,110,116,87,105,100,116,104,44,32,101,46,99,108,105,101,110,116,72,101,105,103,104,116,93,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,84,114,97,110,115,102,111,114,109,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,95,122,111,111,109,32,124,124,32,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,100,101,110,116,105,116,121,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,87,104,101,101,108,68,101,108,116,97,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,45,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,100,101,108,116,97,89,32,42,32,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,100,101,108,116,97,77,111,100,101,32,61,61,61,32,49,32,63,32,48,46,48,53,32,58,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,100,101,108,116,97,77,111,100,101,32,63,32,49,32,58,32,48,46,48,48,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,84,111,117,99,104,97,98,108,101,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,32,124,124,32,40,92,34,111,110,116,111,117,99,104,115,116,97,114,116,92,34,32,105,110,32,116,104,105,115,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,67,111,110,115,116,114,97,105,110,40,116,114,97,110,115,102,111,114,109,44,32,101,120,116,101,110,116,44,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,41,32,123,92,110,32,32,118,97,114,32,100,120,48,32,61,32,116,114,97,110,115,102,111,114,109,46,105,110,118,101,114,116,88,40,101,120,116,101,110,116,91,48,93,91,48,93,41,32,45,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,91,48,93,91,48,93,44,92,110,32,32,32,32,32,32,100,120,49,32,61,32,116,114,97,110,115,102,111,114,109,46,105,110,118,101,114,116,88,40,101,120,116,101,110,116,91,49,93,91,48,93,41,32,45,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,91,49,93,91,48,93,44,92,110,32,32,32,32,32,32,100,121,48,32,61,32,116,114,97,110,115,102,111,114,109,46,105,110,118,101,114,116,89,40,101,120,116,101,110,116,91,48,93,91,49,93,41,32,45,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,91,48,93,91,49,93,44,92,110,32,32,32,32,32,32,100,121,49,32,61,32,116,114,97,110,115,102,111,114,109,46,105,110,118,101,114,116,89,40,101,120,116,101,110,116,91,49,93,91,49,93,41,32,45,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,91,49,93,91,49,93,59,92,110,32,32,114,101,116,117,114,110,32,116,114,97,110,115,102,111,114,109,46,116,114,97,110,115,108,97,116,101,40,92,110,32,32,32,32,100,120,49,32,62,32,100,120,48,32,63,32,40,100,120,48,32,43,32,100,120,49,41,32,47,32,50,32,58,32,77,97,116,104,46,109,105,110,40,48,44,32,100,120,48,41,32,124,124,32,77,97,116,104,46,109,97,120,40,48,44,32,100,120,49,41,44,92,110,32,32,32,32,100,121,49,32,62,32,100,121,48,32,63,32,40,100,121,48,32,43,32,100,121,49,41,32,47,32,50,32,58,32,77,97,116,104,46,109,105,110,40,48,44,32,100,121,48,41,32,124,124,32,77,97,116,104,46,109,97,120,40,48,44,32,100,121,49,41,92,110,32,32,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,102,117,110,99,116,105,111,110,32,95,95,87,69,66,80,65,67,75,95,68,69,70,65,85,76,84,95,69,88,80,79,82,84,95,95,40,41,32,123,92,110,32,32,118,97,114,32,102,105,108,116,101,114,32,61,32,100,101,102,97,117,108,116,70,105,108,116,101,114,44,92,110,32,32,32,32,32,32,101,120,116,101,110,116,32,61,32,100,101,102,97,117,108,116,69,120,116,101,110,116,44,92,110,32,32,32,32,32,32,99,111,110,115,116,114,97,105,110,32,61,32,100,101,102,97,117,108,116,67,111,110,115,116,114,97,105,110,44,92,110,32,32,32,32,32,32,119,104,101,101,108,68,101,108,116,97,32,61,32,100,101,102,97,117,108,116,87,104,101,101,108,68,101,108,116,97,44,92,110,32,32,32,32,32,32,116,111,117,99,104,97,98,108,101,32,61,32,100,101,102,97,117,108,116,84,111,117,99,104,97,98,108,101,44,92,110,32,32,32,32,32,32,115,99,97,108,101,69,120,116,101,110,116,32,61,32,91,48,44,32,73,110,102,105,110,105,116,121,93,44,92,110,32,32,32,32,32,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,32,61,32,91,91,45,73,110,102,105,110,105,116,121,44,32,45,73,110,102,105,110,105,116,121,93,44,32,91,73,110,102,105,110,105,116,121,44,32,73,110,102,105,110,105,116,121,93,93,44,92,110,32,32,32,32,32,32,100,117,114,97,116,105,111,110,32,61,32,50,53,48,44,92,110,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,32,61,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,32,61,32,40,48,44,100,51,95,100,105,115,112,97,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,34,115,116,97,114,116,92,34,44,32,92,34,122,111,111,109,92,34,44,32,92,34,101,110,100,92,34,41,44,92,110,32,32,32,32,32,32,116,111,117,99,104,115,116,97,114,116,105,110,103,44,92,110,32,32,32,32,32,32,116,111,117,99,104,101,110,100,105,110,103,44,92,110,32,32,32,32,32,32,116,111,117,99,104,68,101,108,97,121,32,61,32,53,48,48,44,92,110,32,32,32,32,32,32,119,104,101,101,108,68,101,108,97,121,32,61,32,49,53,48,44,92,110,32,32,32,32,32,32,99,108,105,99,107,68,105,115,116,97,110,99,101,50,32,61,32,48,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,122,111,111,109,40,115,101,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,115,101,108,101,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,46,112,114,111,112,101,114,116,121,40,92,34,95,95,122,111,111,109,92,34,44,32,100,101,102,97,117,108,116,84,114,97,110,115,102,111,114,109,41,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,119,104,101,101,108,46,122,111,111,109,92,34,44,32,119,104,101,101,108,101,100,41,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,109,111,117,115,101,100,111,119,110,46,122,111,111,109,92,34,44,32,109,111,117,115,101,100,111,119,110,101,100,41,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,100,98,108,99,108,105,99,107,46,122,111,111,109,92,34,44,32,100,98,108,99,108,105,99,107,101,100,41,92,110,32,32,32,32,32,32,46,102,105,108,116,101,114,40,116,111,117,99,104,97,98,108,101,41,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,116,111,117,99,104,115,116,97,114,116,46,122,111,111,109,92,34,44,32,116,111,117,99,104,115,116,97,114,116,101,100,41,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,116,111,117,99,104,109,111,118,101,46,122,111,111,109,92,34,44,32,116,111,117,99,104,109,111,118,101,100,41,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,116,111,117,99,104,101,110,100,46,122,111,111,109,32,116,111,117,99,104,99,97,110,99,101,108,46,122,111,111,109,92,34,44,32,116,111,117,99,104,101,110,100,101,100,41,92,110,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,92,34,116,111,117,99,104,45,97,99,116,105,111,110,92,34,44,32,92,34,110,111,110,101,92,34,41,92,110,32,32,32,32,32,32,32,32,46,115,116,121,108,101,40,92,34,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,92,34,44,32,92,34,114,103,98,97,40,48,44,48,44,48,44,48,41,92,34,41,59,92,110,32,32,125,92,110,92,110,32,32,122,111,111,109,46,116,114,97,110,115,102,111,114,109,32,61,32,102,117,110,99,116,105,111,110,40,99,111,108,108,101,99,116,105,111,110,44,32,116,114,97,110,115,102,111,114,109,44,32,112,111,105,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,115,101,108,101,99,116,105,111,110,32,61,32,99,111,108,108,101,99,116,105,111,110,46,115,101,108,101,99,116,105,111,110,32,63,32,99,111,108,108,101,99,116,105,111,110,46,115,101,108,101,99,116,105,111,110,40,41,32,58,32,99,111,108,108,101,99,116,105,111,110,59,92,110,32,32,32,32,115,101,108,101,99,116,105,111,110,46,112,114,111,112,101,114,116,121,40,92,34,95,95,122,111,111,109,92,34,44,32,100,101,102,97,117,108,116,84,114,97,110,115,102,111,114,109,41,59,92,110,32,32,32,32,105,102,32,40,99,111,108,108,101,99,116,105,111,110,32,33,61,61,32,115,101,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,115,99,104,101,100,117,108,101,40,99,111,108,108,101,99,116,105,111,110,44,32,116,114,97,110,115,102,111,114,109,44,32,112,111,105,110,116,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,46,105,110,116,101,114,114,117,112,116,40,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,103,101,115,116,117,114,101,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,115,116,97,114,116,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,122,111,111,109,40,110,117,108,108,44,32,116,121,112,101,111,102,32,116,114,97,110,115,102,111,114,109,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,116,114,97,110,115,102,111,114,109,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,58,32,116,114,97,110,115,102,111,114,109,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,101,110,100,40,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,122,111,111,109,46,115,99,97,108,101,66,121,32,61,32,102,117,110,99,116,105,111,110,40,115,101,108,101,99,116,105,111,110,44,32,107,44,32,112,41,32,123,92,110,32,32,32,32,122,111,111,109,46,115,99,97,108,101,84,111,40,115,101,108,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,48,32,61,32,116,104,105,115,46,95,95,122,111,111,109,46,107,44,92,110,32,32,32,32,32,32,32,32,32,32,107,49,32,61,32,116,121,112,101,111,102,32,107,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,107,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,58,32,107,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,107,48,32,42,32,107,49,59,92,110,32,32,32,32,125,44,32,112,41,59,92,110,32,32,125,59,92,110,92,110,32,32,122,111,111,109,46,115,99,97,108,101,84,111,32,61,32,102,117,110,99,116,105,111,110,40,115,101,108,101,99,116,105,111,110,44,32,107,44,32,112,41,32,123,92,110,32,32,32,32,122,111,111,109,46,116,114,97,110,115,102,111,114,109,40,115,101,108,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,101,32,61,32,101,120,116,101,110,116,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,116,48,32,61,32,116,104,105,115,46,95,95,122,111,111,109,44,92,110,32,32,32,32,32,32,32,32,32,32,112,48,32,61,32,112,32,61,61,32,110,117,108,108,32,63,32,99,101,110,116,114,111,105,100,40,101,41,32,58,32,116,121,112,101,111,102,32,112,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,112,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,58,32,112,44,92,110,32,32,32,32,32,32,32,32,32,32,112,49,32,61,32,116,48,46,105,110,118,101,114,116,40,112,48,41,44,92,110,32,32,32,32,32,32,32,32,32,32,107,49,32,61,32,116,121,112,101,111,102,32,107,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,107,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,58,32,107,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,110,115,116,114,97,105,110,40,116,114,97,110,115,108,97,116,101,40,115,99,97,108,101,40,116,48,44,32,107,49,41,44,32,112,48,44,32,112,49,41,44,32,101,44,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,41,59,92,110,32,32,32,32,125,44,32,112,41,59,92,110,32,32,125,59,92,110,92,110,32,32,122,111,111,109,46,116,114,97,110,115,108,97,116,101,66,121,32,61,32,102,117,110,99,116,105,111,110,40,115,101,108,101,99,116,105,111,110,44,32,120,44,32,121,41,32,123,92,110,32,32,32,32,122,111,111,109,46,116,114,97,110,115,102,111,114,109,40,115,101,108,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,110,115,116,114,97,105,110,40,116,104,105,115,46,95,95,122,111,111,109,46,116,114,97,110,115,108,97,116,101,40,92,110,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,120,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,120,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,58,32,120,44,92,110,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,121,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,121,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,58,32,121,92,110,32,32,32,32,32,32,41,44,32,101,120,116,101,110,116,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,44,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,122,111,111,109,46,116,114,97,110,115,108,97,116,101,84,111,32,61,32,102,117,110,99,116,105,111,110,40,115,101,108,101,99,116,105,111,110,44,32,120,44,32,121,44,32,112,41,32,123,92,110,32,32,32,32,122,111,111,109,46,116,114,97,110,115,102,111,114,109,40,115,101,108,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,101,32,61,32,101,120,116,101,110,116,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,116,32,61,32,116,104,105,115,46,95,95,122,111,111,109,44,92,110,32,32,32,32,32,32,32,32,32,32,112,48,32,61,32,112,32,61,61,32,110,117,108,108,32,63,32,99,101,110,116,114,111,105,100,40,101,41,32,58,32,116,121,112,101,111,102,32,112,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,112,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,58,32,112,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,110,115,116,114,97,105,110,40,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,105,100,101,110,116,105,116,121,46,116,114,97,110,115,108,97,116,101,40,112,48,91,48,93,44,32,112,48,91,49,93,41,46,115,99,97,108,101,40,116,46,107,41,46,116,114,97,110,115,108,97,116,101,40,92,110,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,120,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,45,120,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,58,32,45,120,44,92,110,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,121,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,45,121,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,32,58,32,45,121,92,110,32,32,32,32,32,32,41,44,32,101,44,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,41,59,92,110,32,32,32,32,125,44,32,112,41,59,92,110,32,32,125,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,99,97,108,101,40,116,114,97,110,115,102,111,114,109,44,32,107,41,32,123,92,110,32,32,32,32,107,32,61,32,77,97,116,104,46,109,97,120,40,115,99,97,108,101,69,120,116,101,110,116,91,48,93,44,32,77,97,116,104,46,109,105,110,40,115,99,97,108,101,69,120,116,101,110,116,91,49,93,44,32,107,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,107,32,61,61,61,32,116,114,97,110,115,102,111,114,109,46,107,32,63,32,116,114,97,110,115,102,111,114,109,32,58,32,110,101,119,32,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,84,114,97,110,115,102,111,114,109,40,107,44,32,116,114,97,110,115,102,111,114,109,46,120,44,32,116,114,97,110,115,102,111,114,109,46,121,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,108,97,116,101,40,116,114,97,110,115,102,111,114,109,44,32,112,48,44,32,112,49,41,32,123,92,110,32,32,32,32,118,97,114,32,120,32,61,32,112,48,91,48,93,32,45,32,112,49,91,48,93,32,42,32,116,114,97,110,115,102,111,114,109,46,107,44,32,121,32,61,32,112,48,91,49,93,32,45,32,112,49,91,49,93,32,42,32,116,114,97,110,115,102,111,114,109,46,107,59,92,110,32,32,32,32,114,101,116,117,114,110,32,120,32,61,61,61,32,116,114,97,110,115,102,111,114,109,46,120,32,38,38,32,121,32,61,61,61,32,116,114,97,110,115,102,111,114,109,46,121,32,63,32,116,114,97,110,115,102,111,114,109,32,58,32,110,101,119,32,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,84,114,97,110,115,102,111,114,109,40,116,114,97,110,115,102,111,114,109,46,107,44,32,120,44,32,121,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,101,110,116,114,111,105,100,40,101,120,116,101,110,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,40,43,101,120,116,101,110,116,91,48,93,91,48,93,32,43,32,43,101,120,116,101,110,116,91,49,93,91,48,93,41,32,47,32,50,44,32,40,43,101,120,116,101,110,116,91,48,93,91,49,93,32,43,32,43,101,120,116,101,110,116,91,49,93,91,49,93,41,32,47,32,50,93,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,99,104,101,100,117,108,101,40,116,114,97,110,115,105,116,105,111,110,44,32,116,114,97,110,115,102,111,114,109,44,32,112,111,105,110,116,41,32,123,92,110,32,32,32,32,116,114,97,110,115,105,116,105,111,110,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,115,116,97,114,116,46,122,111,111,109,92,34,44,32,102,117,110,99,116,105,111,110,40,41,32,123,32,103,101,115,116,117,114,101,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,46,115,116,97,114,116,40,41,59,32,125,41,92,110,32,32,32,32,32,32,32,32,46,111,110,40,92,34,105,110,116,101,114,114,117,112,116,46,122,111,111,109,32,101,110,100,46,122,111,111,109,92,34,44,32,102,117,110,99,116,105,111,110,40,41,32,123,32,103,101,115,116,117,114,101,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,46,101,110,100,40,41,59,32,125,41,92,110,32,32,32,32,32,32,32,32,46,116,119,101,101,110,40,92,34,122,111,111,109,92,34,44,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,104,97,116,32,61,32,116,104,105,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,32,61,32,103,101,115,116,117,114,101,40,116,104,97,116,44,32,97,114,103,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,32,61,32,101,120,116,101,110,116,46,97,112,112,108,121,40,116,104,97,116,44,32,97,114,103,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,32,61,32,112,111,105,110,116,32,61,61,32,110,117,108,108,32,63,32,99,101,110,116,114,111,105,100,40,101,41,32,58,32,116,121,112,101,111,102,32,112,111,105,110,116,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,112,111,105,110,116,46,97,112,112,108,121,40,116,104,97,116,44,32,97,114,103,115,41,32,58,32,112,111,105,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,32,61,32,77,97,116,104,46,109,97,120,40,101,91,49,93,91,48,93,32,45,32,101,91,48,93,91,48,93,44,32,101,91,49,93,91,49,93,32,45,32,101,91,48,93,91,49,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,32,61,32,116,104,97,116,46,95,95,122,111,111,109,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,32,61,32,116,121,112,101,111,102,32,116,114,97,110,115,102,111,114,109,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,116,114,97,110,115,102,111,114,109,46,97,112,112,108,121,40,116,104,97,116,44,32,97,114,103,115,41,32,58,32,116,114,97,110,115,102,111,114,109,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,32,61,32,105,110,116,101,114,112,111,108,97,116,101,40,97,46,105,110,118,101,114,116,40,112,41,46,99,111,110,99,97,116,40,119,32,47,32,97,46,107,41,44,32,98,46,105,110,118,101,114,116,40,112,41,46,99,111,110,99,97,116,40,119,32,47,32,98,46,107,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,32,61,61,61,32,49,41,32,116,32,61,32,98,59,32,47,47,32,65,118,111,105,100,32,114,111,117,110,100,105,110,103,32,101,114,114,111,114,32,111,110,32,101,110,100,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,32,118,97,114,32,108,32,61,32,105,40,116,41,44,32,107,32,61,32,119,32,47,32,108,91,50,93,59,32,116,32,61,32,110,101,119,32,95,116,114,97,110,115,102,111,114,109,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,84,114,97,110,115,102,111,114,109,40,107,44,32,112,91,48,93,32,45,32,108,91,48,93,32,42,32,107,44,32,112,91,49,93,32,45,32,108,91,49,93,32,42,32,107,41,59,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,103,46,122,111,111,109,40,110,117,108,108,44,32,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,103,101,115,116,117,114,101,40,116,104,97,116,44,32,97,114,103,115,44,32,99,108,101,97,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,33,99,108,101,97,110,32,38,38,32,116,104,97,116,46,95,95,122,111,111,109,105,110,103,41,32,124,124,32,110,101,119,32,71,101,115,116,117,114,101,40,116,104,97,116,44,32,97,114,103,115,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,71,101,115,116,117,114,101,40,116,104,97,116,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,116,104,105,115,46,116,104,97,116,32,61,32,116,104,97,116,59,92,110,32,32,32,32,116,104,105,115,46,97,114,103,115,32,61,32,97,114,103,115,59,92,110,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,32,61,32,48,59,92,110,32,32,32,32,116,104,105,115,46,101,120,116,101,110,116,32,61,32,101,120,116,101,110,116,46,97,112,112,108,121,40,116,104,97,116,44,32,97,114,103,115,41,59,92,110,32,32,32,32,116,104,105,115,46,116,97,112,115,32,61,32,48,59,92,110,32,32,125,92,110,92,110,32,32,71,101,115,116,117,114,101,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,32,32,115,116,97,114,116,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,43,43,116,104,105,115,46,97,99,116,105,118,101,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,105,110,103,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,40,92,34,115,116,97,114,116,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,122,111,111,109,58,32,102,117,110,99,116,105,111,110,40,107,101,121,44,32,116,114,97,110,115,102,111,114,109,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,109,111,117,115,101,32,38,38,32,107,101,121,32,33,61,61,32,92,34,109,111,117,115,101,92,34,41,32,116,104,105,115,46,109,111,117,115,101,91,49,93,32,61,32,116,114,97,110,115,102,111,114,109,46,105,110,118,101,114,116,40,116,104,105,115,46,109,111,117,115,101,91,48,93,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,116,111,117,99,104,48,32,38,38,32,107,101,121,32,33,61,61,32,92,34,116,111,117,99,104,92,34,41,32,116,104,105,115,46,116,111,117,99,104,48,91,49,93,32,61,32,116,114,97,110,115,102,111,114,109,46,105,110,118,101,114,116,40,116,104,105,115,46,116,111,117,99,104,48,91,48,93,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,116,111,117,99,104,49,32,38,38,32,107,101,121,32,33,61,61,32,92,34,116,111,117,99,104,92,34,41,32,116,104,105,115,46,116,111,117,99,104,49,91,49,93,32,61,32,116,114,97,110,115,102,111,114,109,46,105,110,118,101,114,116,40,116,104,105,115,46,116,111,117,99,104,49,91,48,93,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,32,61,32,116,114,97,110,115,102,111,114,109,59,92,110,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,40,92,34,122,111,111,109,92,34,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,110,100,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,45,45,116,104,105,115,46,97,99,116,105,118,101,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,105,110,103,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,40,92,34,101,110,100,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,109,105,116,58,32,102,117,110,99,116,105,111,110,40,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,99,117,115,116,111,109,69,118,101,110,116,41,40,110,101,119,32,95,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,122,111,111,109,44,32,116,121,112,101,44,32,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,41,44,32,108,105,115,116,101,110,101,114,115,46,97,112,112,108,121,44,32,108,105,115,116,101,110,101,114,115,44,32,91,116,121,112,101,44,32,116,104,105,115,46,116,104,97,116,44,32,116,104,105,115,46,97,114,103,115,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,119,104,101,101,108,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,102,105,108,116,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,118,97,114,32,103,32,61,32,103,101,115,116,117,114,101,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,44,92,110,32,32,32,32,32,32,32,32,116,32,61,32,116,104,105,115,46,95,95,122,111,111,109,44,92,110,32,32,32,32,32,32,32,32,107,32,61,32,77,97,116,104,46,109,97,120,40,115,99,97,108,101,69,120,116,101,110,116,91,48,93,44,32,77,97,116,104,46,109,105,110,40,115,99,97,108,101,69,120,116,101,110,116,91,49,93,44,32,116,46,107,32,42,32,77,97,116,104,46,112,111,119,40,50,44,32,119,104,101,101,108,68,101,108,116,97,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,41,41,44,92,110,32,32,32,32,32,32,32,32,112,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,104,105,115,41,59,92,110,92,110,32,32,32,32,47,47,32,73,102,32,116,104,101,32,109,111,117,115,101,32,105,115,32,105,110,32,116,104,101,32,115,97,109,101,32,108,111,99,97,116,105,111,110,32,97,115,32,98,101,102,111,114,101,44,32,114,101,117,115,101,32,105,116,46,92,110,32,32,32,32,47,47,32,73,102,32,116,104,101,114,101,32,119,101,114,101,32,114,101,99,101,110,116,32,119,104,101,101,108,32,101,118,101,110,116,115,44,32,114,101,115,101,116,32,116,104,101,32,119,104,101,101,108,32,105,100,108,101,32,116,105,109,101,111,117,116,46,92,110,32,32,32,32,105,102,32,40,103,46,119,104,101,101,108,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,103,46,109,111,117,115,101,91,48,93,91,48,93,32,33,61,61,32,112,91,48,93,32,124,124,32,103,46,109,111,117,115,101,91,48,93,91,49,93,32,33,61,61,32,112,91,49,93,41,32,123,92,110,32,32,32,32,32,32,32,32,103,46,109,111,117,115,101,91,49,93,32,61,32,116,46,105,110,118,101,114,116,40,103,46,109,111,117,115,101,91,48,93,32,61,32,112,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,103,46,119,104,101,101,108,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,73,102,32,116,104,105,115,32,119,104,101,101,108,32,101,118,101,110,116,32,119,111,110,226,128,153,116,32,116,114,105,103,103,101,114,32,97,32,116,114,97,110,115,102,111,114,109,32,99,104,97,110,103,101,44,32,105,103,110,111,114,101,32,105,116,46,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,116,46,107,32,61,61,61,32,107,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,99,97,112,116,117,114,101,32,116,104,101,32,109,111,117,115,101,32,112,111,105,110,116,32,97,110,100,32,108,111,99,97,116,105,111,110,32,97,116,32,116,104,101,32,115,116,97,114,116,46,92,110,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,103,46,109,111,117,115,101,32,61,32,91,112,44,32,116,46,105,110,118,101,114,116,40,112,41,93,59,92,110,32,32,32,32,32,32,40,48,44,100,51,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,114,117,112,116,41,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,103,46,115,116,97,114,116,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,32,32,103,46,119,104,101,101,108,32,61,32,115,101,116,84,105,109,101,111,117,116,40,119,104,101,101,108,105,100,108,101,100,44,32,119,104,101,101,108,68,101,108,97,121,41,59,92,110,32,32,32,32,103,46,122,111,111,109,40,92,34,109,111,117,115,101,92,34,44,32,99,111,110,115,116,114,97,105,110,40,116,114,97,110,115,108,97,116,101,40,115,99,97,108,101,40,116,44,32,107,41,44,32,103,46,109,111,117,115,101,91,48,93,44,32,103,46,109,111,117,115,101,91,49,93,41,44,32,103,46,101,120,116,101,110,116,44,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,41,41,59,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,119,104,101,101,108,105,100,108,101,100,40,41,32,123,92,110,32,32,32,32,32,32,103,46,119,104,101,101,108,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,103,46,101,110,100,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,109,111,117,115,101,100,111,119,110,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,111,117,99,104,101,110,100,105,110,103,32,124,124,32,33,102,105,108,116,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,118,97,114,32,103,32,61,32,103,101,115,116,117,114,101,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,44,32,116,114,117,101,41,44,92,110,32,32,32,32,32,32,32,32,118,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,118,105,101,119,41,46,111,110,40,92,34,109,111,117,115,101,109,111,118,101,46,122,111,111,109,92,34,44,32,109,111,117,115,101,109,111,118,101,100,44,32,116,114,117,101,41,46,111,110,40,92,34,109,111,117,115,101,117,112,46,122,111,111,109,92,34,44,32,109,111,117,115,101,117,112,112,101,100,44,32,116,114,117,101,41,44,92,110,32,32,32,32,32,32,32,32,112,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,104,105,115,41,44,92,110,32,32,32,32,32,32,32,32,120,48,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,99,108,105,101,110,116,88,44,92,110,32,32,32,32,32,32,32,32,121,48,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,99,108,105,101,110,116,89,59,92,110,92,110,32,32,32,32,40,48,44,100,51,95,100,114,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,118,105,101,119,41,59,92,110,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,112,114,111,112,97,103,97,116,105,111,110,41,40,41,59,92,110,32,32,32,32,103,46,109,111,117,115,101,32,61,32,91,112,44,32,116,104,105,115,46,95,95,122,111,111,109,46,105,110,118,101,114,116,40,112,41,93,59,92,110,32,32,32,32,40,48,44,100,51,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,114,117,112,116,41,40,116,104,105,115,41,59,92,110,32,32,32,32,103,46,115,116,97,114,116,40,41,59,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,117,115,101,109,111,118,101,100,40,41,32,123,92,110,32,32,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,32,32,32,32,105,102,32,40,33,103,46,109,111,118,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,120,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,99,108,105,101,110,116,88,32,45,32,120,48,44,32,100,121,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,99,108,105,101,110,116,89,32,45,32,121,48,59,92,110,32,32,32,32,32,32,32,32,103,46,109,111,118,101,100,32,61,32,100,120,32,42,32,100,120,32,43,32,100,121,32,42,32,100,121,32,62,32,99,108,105,99,107,68,105,115,116,97,110,99,101,50,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,103,46,122,111,111,109,40,92,34,109,111,117,115,101,92,34,44,32,99,111,110,115,116,114,97,105,110,40,116,114,97,110,115,108,97,116,101,40,103,46,116,104,97,116,46,95,95,122,111,111,109,44,32,103,46,109,111,117,115,101,91,48,93,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,103,46,116,104,97,116,41,44,32,103,46,109,111,117,115,101,91,49,93,41,44,32,103,46,101,120,116,101,110,116,44,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,117,115,101,117,112,112,101,100,40,41,32,123,92,110,32,32,32,32,32,32,118,46,111,110,40,92,34,109,111,117,115,101,109,111,118,101,46,122,111,111,109,32,109,111,117,115,101,117,112,46,122,111,111,109,92,34,44,32,110,117,108,108,41,59,92,110,32,32,32,32,32,32,40,48,44,100,51,95,100,114,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,121,101,115,100,114,97,103,41,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,118,105,101,119,44,32,103,46,109,111,118,101,100,41,59,92,110,32,32,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,32,32,32,32,103,46,101,110,100,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,100,98,108,99,108,105,99,107,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,102,105,108,116,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,118,97,114,32,116,48,32,61,32,116,104,105,115,46,95,95,122,111,111,109,44,92,110,32,32,32,32,32,32,32,32,112,48,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,104,105,115,41,44,92,110,32,32,32,32,32,32,32,32,112,49,32,61,32,116,48,46,105,110,118,101,114,116,40,112,48,41,44,92,110,32,32,32,32,32,32,32,32,107,49,32,61,32,116,48,46,107,32,42,32,40,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,115,104,105,102,116,75,101,121,32,63,32,48,46,53,32,58,32,50,41,44,92,110,32,32,32,32,32,32,32,32,116,49,32,61,32,99,111,110,115,116,114,97,105,110,40,116,114,97,110,115,108,97,116,101,40,115,99,97,108,101,40,116,48,44,32,107,49,41,44,32,112,48,44,32,112,49,41,44,32,101,120,116,101,110,116,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,44,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,41,59,92,110,92,110,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,32,32,105,102,32,40,100,117,114,97,116,105,111,110,32,62,32,48,41,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,104,105,115,41,46,116,114,97,110,115,105,116,105,111,110,40,41,46,100,117,114,97,116,105,111,110,40,100,117,114,97,116,105,111,110,41,46,99,97,108,108,40,115,99,104,101,100,117,108,101,44,32,116,49,44,32,112,48,41,59,92,110,32,32,32,32,101,108,115,101,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,104,105,115,41,46,99,97,108,108,40,122,111,111,109,46,116,114,97,110,115,102,111,114,109,44,32,116,49,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,111,117,99,104,115,116,97,114,116,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,102,105,108,116,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,118,97,114,32,116,111,117,99,104,101,115,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,116,111,117,99,104,101,115,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,116,111,117,99,104,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,103,32,61,32,103,101,115,116,117,114,101,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,44,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,46,108,101,110,103,116,104,32,61,61,61,32,110,41,44,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,101,100,44,32,105,44,32,116,44,32,112,59,92,110,92,110,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,112,114,111,112,97,103,97,116,105,111,110,41,40,41,59,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,116,32,61,32,116,111,117,99,104,101,115,91,105,93,44,32,112,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,104,105,115,44,32,116,111,117,99,104,101,115,44,32,116,46,105,100,101,110,116,105,102,105,101,114,41,59,92,110,32,32,32,32,32,32,112,32,61,32,91,112,44,32,116,104,105,115,46,95,95,122,111,111,109,46,105,110,118,101,114,116,40,112,41,44,32,116,46,105,100,101,110,116,105,102,105,101,114,93,59,92,110,32,32,32,32,32,32,105,102,32,40,33,103,46,116,111,117,99,104,48,41,32,103,46,116,111,117,99,104,48,32,61,32,112,44,32,115,116,97,114,116,101,100,32,61,32,116,114,117,101,44,32,103,46,116,97,112,115,32,61,32,49,32,43,32,33,33,116,111,117,99,104,115,116,97,114,116,105,110,103,59,92,110,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,33,103,46,116,111,117,99,104,49,32,38,38,32,103,46,116,111,117,99,104,48,91,50,93,32,33,61,61,32,112,91,50,93,41,32,103,46,116,111,117,99,104,49,32,61,32,112,44,32,103,46,116,97,112,115,32,61,32,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,111,117,99,104,115,116,97,114,116,105,110,103,41,32,116,111,117,99,104,115,116,97,114,116,105,110,103,32,61,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,111,117,99,104,115,116,97,114,116,105,110,103,41,59,92,110,92,110,32,32,32,32,105,102,32,40,115,116,97,114,116,101,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,103,46,116,97,112,115,32,60,32,50,41,32,116,111,117,99,104,115,116,97,114,116,105,110,103,32,61,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,32,123,32,116,111,117,99,104,115,116,97,114,116,105,110,103,32,61,32,110,117,108,108,59,32,125,44,32,116,111,117,99,104,68,101,108,97,121,41,59,92,110,32,32,32,32,32,32,40,48,44,100,51,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,114,117,112,116,41,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,103,46,115,116,97,114,116,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,111,117,99,104,109,111,118,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,95,122,111,111,109,105,110,103,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,118,97,114,32,103,32,61,32,103,101,115,116,117,114,101,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,44,92,110,32,32,32,32,32,32,32,32,116,111,117,99,104,101,115,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,116,111,117,99,104,101,115,46,108,101,110,103,116,104,44,32,105,44,32,116,44,32,112,44,32,108,59,92,110,92,110,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,41,59,92,110,32,32,32,32,105,102,32,40,116,111,117,99,104,115,116,97,114,116,105,110,103,41,32,116,111,117,99,104,115,116,97,114,116,105,110,103,32,61,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,111,117,99,104,115,116,97,114,116,105,110,103,41,59,92,110,32,32,32,32,103,46,116,97,112,115,32,61,32,48,59,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,116,32,61,32,116,111,117,99,104,101,115,91,105,93,44,32,112,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,104,105,115,44,32,116,111,117,99,104,101,115,44,32,116,46,105,100,101,110,116,105,102,105,101,114,41,59,92,110,32,32,32,32,32,32,105,102,32,40,103,46,116,111,117,99,104,48,32,38,38,32,103,46,116,111,117,99,104,48,91,50,93,32,61,61,61,32,116,46,105,100,101,110,116,105,102,105,101,114,41,32,103,46,116,111,117,99,104,48,91,48,93,32,61,32,112,59,92,110,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,103,46,116,111,117,99,104,49,32,38,38,32,103,46,116,111,117,99,104,49,91,50,93,32,61,61,61,32,116,46,105,100,101,110,116,105,102,105,101,114,41,32,103,46,116,111,117,99,104,49,91,48,93,32,61,32,112,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,32,61,32,103,46,116,104,97,116,46,95,95,122,111,111,109,59,92,110,32,32,32,32,105,102,32,40,103,46,116,111,117,99,104,49,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,48,32,61,32,103,46,116,111,117,99,104,48,91,48,93,44,32,108,48,32,61,32,103,46,116,111,117,99,104,48,91,49,93,44,92,110,32,32,32,32,32,32,32,32,32,32,112,49,32,61,32,103,46,116,111,117,99,104,49,91,48,93,44,32,108,49,32,61,32,103,46,116,111,117,99,104,49,91,49,93,44,92,110,32,32,32,32,32,32,32,32,32,32,100,112,32,61,32,40,100,112,32,61,32,112,49,91,48,93,32,45,32,112,48,91,48,93,41,32,42,32,100,112,32,43,32,40,100,112,32,61,32,112,49,91,49,93,32,45,32,112,48,91,49,93,41,32,42,32,100,112,44,92,110,32,32,32,32,32,32,32,32,32,32,100,108,32,61,32,40,100,108,32,61,32,108,49,91,48,93,32,45,32,108,48,91,48,93,41,32,42,32,100,108,32,43,32,40,100,108,32,61,32,108,49,91,49,93,32,45,32,108,48,91,49,93,41,32,42,32,100,108,59,92,110,32,32,32,32,32,32,116,32,61,32,115,99,97,108,101,40,116,44,32,77,97,116,104,46,115,113,114,116,40,100,112,32,47,32,100,108,41,41,59,92,110,32,32,32,32,32,32,112,32,61,32,91,40,112,48,91,48,93,32,43,32,112,49,91,48,93,41,32,47,32,50,44,32,40,112,48,91,49,93,32,43,32,112,49,91,49,93,41,32,47,32,50,93,59,92,110,32,32,32,32,32,32,108,32,61,32,91,40,108,48,91,48,93,32,43,32,108,49,91,48,93,41,32,47,32,50,44,32,40,108,48,91,49,93,32,43,32,108,49,91,49,93,41,32,47,32,50,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,103,46,116,111,117,99,104,48,41,32,112,32,61,32,103,46,116,111,117,99,104,48,91,48,93,44,32,108,32,61,32,103,46,116,111,117,99,104,48,91,49,93,59,92,110,32,32,32,32,101,108,115,101,32,114,101,116,117,114,110,59,92,110,32,32,32,32,103,46,122,111,111,109,40,92,34,116,111,117,99,104,92,34,44,32,99,111,110,115,116,114,97,105,110,40,116,114,97,110,115,108,97,116,101,40,116,44,32,112,44,32,108,41,44,32,103,46,101,120,116,101,110,116,44,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,41,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,111,117,99,104,101,110,100,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,95,122,111,111,109,105,110,103,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,118,97,114,32,103,32,61,32,103,101,115,116,117,114,101,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,44,92,110,32,32,32,32,32,32,32,32,116,111,117,99,104,101,115,32,61,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,92,110,32,32,32,32,32,32,32,32,110,32,61,32,116,111,117,99,104,101,115,46,108,101,110,103,116,104,44,32,105,44,32,116,59,92,110,92,110,32,32,32,32,40,48,44,95,110,111,101,118,101,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,110,111,112,114,111,112,97,103,97,116,105,111,110,41,40,41,59,92,110,32,32,32,32,105,102,32,40,116,111,117,99,104,101,110,100,105,110,103,41,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,111,117,99,104,101,110,100,105,110,103,41,59,92,110,32,32,32,32,116,111,117,99,104,101,110,100,105,110,103,32,61,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,32,123,32,116,111,117,99,104,101,110,100,105,110,103,32,61,32,110,117,108,108,59,32,125,44,32,116,111,117,99,104,68,101,108,97,121,41,59,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,116,32,61,32,116,111,117,99,104,101,115,91,105,93,59,92,110,32,32,32,32,32,32,105,102,32,40,103,46,116,111,117,99,104,48,32,38,38,32,103,46,116,111,117,99,104,48,91,50,93,32,61,61,61,32,116,46,105,100,101,110,116,105,102,105,101,114,41,32,100,101,108,101,116,101,32,103,46,116,111,117,99,104,48,59,92,110,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,103,46,116,111,117,99,104,49,32,38,38,32,103,46,116,111,117,99,104,49,91,50,93,32,61,61,61,32,116,46,105,100,101,110,116,105,102,105,101,114,41,32,100,101,108,101,116,101,32,103,46,116,111,117,99,104,49,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,103,46,116,111,117,99,104,49,32,38,38,32,33,103,46,116,111,117,99,104,48,41,32,103,46,116,111,117,99,104,48,32,61,32,103,46,116,111,117,99,104,49,44,32,100,101,108,101,116,101,32,103,46,116,111,117,99,104,49,59,92,110,32,32,32,32,105,102,32,40,103,46,116,111,117,99,104,48,41,32,103,46,116,111,117,99,104,48,91,49,93,32,61,32,116,104,105,115,46,95,95,122,111,111,109,46,105,110,118,101,114,116,40,103,46,116,111,117,99,104,48,91,48,93,41,59,92,110,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,103,46,101,110,100,40,41,59,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,105,115,32,119,97,115,32,97,32,100,98,108,116,97,112,44,32,114,101,114,111,117,116,101,32,116,111,32,116,104,101,32,40,111,112,116,105,111,110,97,108,41,32,100,98,108,99,108,105,99,107,46,122,111,111,109,32,104,97,110,100,108,101,114,46,92,110,32,32,32,32,32,32,105,102,32,40,103,46,116,97,112,115,32,61,61,61,32,50,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,32,61,32,40,48,44,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,104,105,115,41,46,111,110,40,92,34,100,98,108,99,108,105,99,107,46,122,111,111,109,92,34,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,41,32,112,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,122,111,111,109,46,119,104,101,101,108,68,101,108,116,97,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,119,104,101,101,108,68,101,108,116,97,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,43,95,41,44,32,122,111,111,109,41,32,58,32,119,104,101,101,108,68,101,108,116,97,59,92,110,32,32,125,59,92,110,92,110,32,32,122,111,111,109,46,102,105,108,116,101,114,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,102,105,108,116,101,114,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,33,33,95,41,44,32,122,111,111,109,41,32,58,32,102,105,108,116,101,114,59,92,110,32,32,125,59,92,110,92,110,32,32,122,111,111,109,46,116,111,117,99,104,97,98,108,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,111,117,99,104,97,98,108,101,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,33,33,95,41,44,32,122,111,111,109,41,32,58,32,116,111,117,99,104,97,98,108,101,59,92,110,32,32,125,59,92,110,92,110,32,32,122,111,111,109,46,101,120,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,101,120,116,101,110,116,32,61,32,116,121,112,101,111,102,32,95,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,95,32,58,32,40,48,44,95,99,111,110,115,116,97,110,116,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,91,91,43,95,91,48,93,91,48,93,44,32,43,95,91,48,93,91,49,93,93,44,32,91,43,95,91,49,93,91,48,93,44,32,43,95,91,49,93,91,49,93,93,93,41,44,32,122,111,111,109,41,32,58,32,101,120,116,101,110,116,59,92,110,32,32,125,59,92,110,92,110,32,32,122,111,111,109,46,115,99,97,108,101,69,120,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,115,99,97,108,101,69,120,116,101,110,116,91,48,93,32,61,32,43,95,91,48,93,44,32,115,99,97,108,101,69,120,116,101,110,116,91,49,93,32,61,32,43,95,91,49,93,44,32,122,111,111,109,41,32,58,32,91,115,99,97,108,101,69,120,116,101,110,116,91,48,93,44,32,115,99,97,108,101,69,120,116,101,110,116,91,49,93,93,59,92,110,32,32,125,59,92,110,92,110,32,32,122,111,111,109,46,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,91,48,93,91,48,93,32,61,32,43,95,91,48,93,91,48,93,44,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,91,49,93,91,48,93,32,61,32,43,95,91,49,93,91,48,93,44,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,91,48,93,91,49,93,32,61,32,43,95,91,48,93,91,49,93,44,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,91,49,93,91,49,93,32,61,32,43,95,91,49,93,91,49,93,44,32,122,111,111,109,41,32,58,32,91,91,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,91,48,93,91,48,93,44,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,91,48,93,91,49,93,93,44,32,91,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,91,49,93,91,48,93,44,32,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,91,49,93,91,49,93,93,93,59,92,110,32,32,125,59,92,110,92,110,32,32,122,111,111,109,46,99,111,110,115,116,114,97,105,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,99,111,110,115,116,114,97,105,110,32,61,32,95,44,32,122,111,111,109,41,32,58,32,99,111,110,115,116,114,97,105,110,59,92,110,32,32,125,59,92,110,92,110,32,32,122,111,111,109,46,100,117,114,97,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,100,117,114,97,116,105,111,110,32,61,32,43,95,44,32,122,111,111,109,41,32,58,32,100,117,114,97,116,105,111,110,59,92,110,32,32,125,59,92,110,92,110,32,32,122,111,111,109,46,105,110,116,101,114,112,111,108,97,116,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,105,110,116,101,114,112,111,108,97,116,101,32,61,32,95,44,32,122,111,111,109,41,32,58,32,105,110,116,101,114,112,111,108,97,116,101,59,92,110,32,32,125,59,92,110,92,110,32,32,122,111,111,109,46,111,110,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,108,105,115,116,101,110,101,114,115,46,111,110,46,97,112,112,108,121,40,108,105,115,116,101,110,101,114,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,108,105,115,116,101,110,101,114,115,32,63,32,122,111,111,109,32,58,32,118,97,108,117,101,59,92,110,32,32,125,59,92,110,92,110,32,32,122,111,111,109,46,99,108,105,99,107,68,105,115,116,97,110,99,101,32,61,32,102,117,110,99,116,105,111,110,40,95,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,40,99,108,105,99,107,68,105,115,116,97,110,99,101,50,32,61,32,40,95,32,61,32,43,95,41,32,42,32,95,44,32,122,111,111,109,41,32,58,32,77,97,116,104,46,115,113,114,116,40,99,108,105,99,107,68,105,115,116,97,110,99,101,50,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,122,111,111,109,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,122,111,111,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,47,100,105,115,116,47,112,97,99,107,97,103,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,47,100,105,115,116,47,112,97,99,107,97,103,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,117,116,104,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,117,116,104,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,112,101,110,100,101,110,99,105,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,101,112,101,110,100,101,110,99,105,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,115,99,114,105,112,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,101,115,99,114,105,112,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,118,68,101,112,101,110,100,101,110,99,105,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,101,118,68,101,112,101,110,100,101,110,99,105,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,105,108,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,105,108,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,111,109,101,112,97,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,111,109,101,112,97,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,106,115,100,101,108,105,118,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,106,115,100,101,108,105,118,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,107,101,121,119,111,114,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,107,101,121,119,111,114,100,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,99,101,110,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,105,99,101,110,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,111,100,117,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,111,100,117,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,97,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,110,97,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,112,111,115,105,116,111,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,112,111,115,105,116,111,114,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,114,105,112,116,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,99,114,105,112,116,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,110,112,107,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,110,112,107,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,118,101,114,115,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,118,101,114,115,105,111,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,110,97,109,101,32,61,32,92,34,100,51,92,34,59,92,110,118,97,114,32,118,101,114,115,105,111,110,32,61,32,92,34,53,46,49,54,46,48,92,34,59,92,110,118,97,114,32,100,101,115,99,114,105,112,116,105,111,110,32,61,32,92,34,68,97,116,97,45,68,114,105,118,101,110,32,68,111,99,117,109,101,110,116,115,92,34,59,92,110,118,97,114,32,107,101,121,119,111,114,100,115,32,61,32,91,92,34,100,111,109,92,34,44,92,34,118,105,115,117,97,108,105,122,97,116,105,111,110,92,34,44,92,34,115,118,103,92,34,44,92,34,97,110,105,109,97,116,105,111,110,92,34,44,92,34,99,97,110,118,97,115,92,34,93,59,92,110,118,97,114,32,104,111,109,101,112,97,103,101,32,61,32,92,34,104,116,116,112,115,58,47,47,100,51,106,115,46,111,114,103,92,34,59,92,110,118,97,114,32,108,105,99,101,110,115,101,32,61,32,92,34,66,83,68,45,51,45,67,108,97,117,115,101,92,34,59,92,110,118,97,114,32,97,117,116,104,111,114,32,61,32,123,92,34,110,97,109,101,92,34,58,92,34,77,105,107,101,32,66,111,115,116,111,99,107,92,34,44,92,34,117,114,108,92,34,58,92,34,104,116,116,112,115,58,47,47,98,111,115,116,46,111,99,107,115,46,111,114,103,47,109,105,107,101,92,34,125,59,92,110,118,97,114,32,109,97,105,110,32,61,32,92,34,100,105,115,116,47,100,51,46,110,111,100,101,46,106,115,92,34,59,92,110,118,97,114,32,117,110,112,107,103,32,61,32,92,34,100,105,115,116,47,100,51,46,109,105,110,46,106,115,92,34,59,92,110,118,97,114,32,106,115,100,101,108,105,118,114,32,61,32,92,34,100,105,115,116,47,100,51,46,109,105,110,46,106,115,92,34,59,92,110,118,97,114,32,109,111,100,117,108,101,32,61,32,92,34,105,110,100,101,120,46,106,115,92,34,59,92,110,118,97,114,32,114,101,112,111,115,105,116,111,114,121,32,61,32,123,92,34,116,121,112,101,92,34,58,92,34,103,105,116,92,34,44,92,34,117,114,108,92,34,58,92,34,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,51,47,100,51,46,103,105,116,92,34,125,59,92,110,118,97,114,32,102,105,108,101,115,32,61,32,91,92,34,100,105,115,116,47,42,42,47,42,46,106,115,92,34,44,92,34,105,110,100,101,120,46,106,115,92,34,93,59,92,110,118,97,114,32,115,99,114,105,112,116,115,32,61,32,123,92,34,112,114,101,116,101,115,116,92,34,58,92,34,114,105,109,114,97,102,32,100,105,115,116,32,38,38,32,109,107,100,105,114,32,100,105,115,116,32,38,38,32,106,115,111,110,50,109,111,100,117,108,101,32,112,97,99,107,97,103,101,46,106,115,111,110,32,62,32,100,105,115,116,47,112,97,99,107,97,103,101,46,106,115,32,38,38,32,114,111,108,108,117,112,32,45,99,92,34,44,92,34,116,101,115,116,92,34,58,92,34,116,97,112,101,32,39,116,101,115,116,47,42,42,47,42,45,116,101,115,116,46,106,115,39,92,34,44,92,34,112,114,101,112,117,98,108,105,115,104,79,110,108,121,92,34,58,92,34,121,97,114,110,32,116,101,115,116,92,34,44,92,34,112,111,115,116,112,117,98,108,105,115,104,92,34,58,92,34,103,105,116,32,112,117,115,104,32,38,38,32,103,105,116,32,112,117,115,104,32,45,45,116,97,103,115,32,38,38,32,99,100,32,46,46,47,100,51,46,103,105,116,104,117,98,46,99,111,109,32,38,38,32,103,105,116,32,112,117,108,108,32,38,38,32,99,112,32,46,46,47,100,51,47,100,105,115,116,47,100,51,46,106,115,32,100,51,46,118,53,46,106,115,32,38,38,32,99,112,32,46,46,47,100,51,47,100,105,115,116,47,100,51,46,109,105,110,46,106,115,32,100,51,46,118,53,46,109,105,110,46,106,115,32,38,38,32,103,105,116,32,97,100,100,32,100,51,46,118,53,46,106,115,32,100,51,46,118,53,46,109,105,110,46,106,115,32,38,38,32,103,105,116,32,99,111,109,109,105,116,32,45,109,32,92,92,92,34,100,51,32,36,123,110,112,109,95,112,97,99,107,97,103,101,95,118,101,114,115,105,111,110,125,92,92,92,34,32,38,38,32,103,105,116,32,112,117,115,104,32,38,38,32,99,100,32,45,32,38,38,32,99,100,32,46,46,47,100,51,45,98,111,119,101,114,32,38,38,32,103,105,116,32,112,117,108,108,32,38,38,32,99,112,32,46,46,47,100,51,47,76,73,67,69,78,83,69,32,46,46,47,100,51,47,82,69,65,68,77,69,46,109,100,32,46,46,47,100,51,47,100,105,115,116,47,100,51,46,106,115,32,46,46,47,100,51,47,100,105,115,116,47,100,51,46,109,105,110,46,106,115,32,46,32,38,38,32,103,105,116,32,97,100,100,32,45,45,32,76,73,67,69,78,83,69,32,82,69,65,68,77,69,46,109,100,32,100,51,46,106,115,32,100,51,46,109,105,110,46,106,115,32,38,38,32,103,105,116,32,99,111,109,109,105,116,32,45,109,32,92,92,92,34,36,123,110,112,109,95,112,97,99,107,97,103,101,95,118,101,114,115,105,111,110,125,92,92,92,34,32,38,38,32,103,105,116,32,116,97,103,32,45,97,109,32,92,92,92,34,36,123,110,112,109,95,112,97,99,107,97,103,101,95,118,101,114,115,105,111,110,125,92,92,92,34,32,118,36,123,110,112,109,95,112,97,99,107,97,103,101,95,118,101,114,115,105,111,110,125,32,38,38,32,103,105,116,32,112,117,115,104,32,38,38,32,103,105,116,32,112,117,115,104,32,45,45,116,97,103,115,32,38,38,32,99,100,32,45,32,38,38,32,122,105,112,32,45,106,32,100,105,115,116,47,100,51,46,122,105,112,32,45,45,32,76,73,67,69,78,83,69,32,82,69,65,68,77,69,46,109,100,32,65,80,73,46,109,100,32,67,72,65,78,71,69,83,46,109,100,32,100,105,115,116,47,100,51,46,106,115,32,100,105,115,116,47,100,51,46,109,105,110,46,106,115,92,34,125,59,92,110,118,97,114,32,100,101,118,68,101,112,101,110,100,101,110,99,105,101,115,32,61,32,123,92,34,106,115,111,110,50,109,111,100,117,108,101,92,34,58,92,34,48,46,48,92,34,44,92,34,114,105,109,114,97,102,92,34,58,92,34,50,92,34,44,92,34,114,111,108,108,117,112,92,34,58,92,34,49,92,34,44,92,34,114,111,108,108,117,112,45,112,108,117,103,105,110,45,97,115,99,105,105,92,34,58,92,34,48,46,48,92,34,44,92,34,114,111,108,108,117,112,45,112,108,117,103,105,110,45,110,111,100,101,45,114,101,115,111,108,118,101,92,34,58,92,34,51,92,34,44,92,34,114,111,108,108,117,112,45,112,108,117,103,105,110,45,116,101,114,115,101,114,92,34,58,92,34,53,92,34,44,92,34,116,97,112,101,92,34,58,92,34,52,92,34,125,59,92,110,118,97,114,32,100,101,112,101,110,100,101,110,99,105,101,115,32,61,32,123,92,34,100,51,45,97,114,114,97,121,92,34,58,92,34,49,92,34,44,92,34,100,51,45,97,120,105,115,92,34,58,92,34,49,92,34,44,92,34,100,51,45,98,114,117,115,104,92,34,58,92,34,49,92,34,44,92,34,100,51,45,99,104,111,114,100,92,34,58,92,34,49,92,34,44,92,34,100,51,45,99,111,108,108,101,99,116,105,111,110,92,34,58,92,34,49,92,34,44,92,34,100,51,45,99,111,108,111,114,92,34,58,92,34,49,92,34,44,92,34,100,51,45,99,111,110,116,111,117,114,92,34,58,92,34,49,92,34,44,92,34,100,51,45,100,105,115,112,97,116,99,104,92,34,58,92,34,49,92,34,44,92,34,100,51,45,100,114,97,103,92,34,58,92,34,49,92,34,44,92,34,100,51,45,100,115,118,92,34,58,92,34,49,92,34,44,92,34,100,51,45,101,97,115,101,92,34,58,92,34,49,92,34,44,92,34,100,51,45,102,101,116,99,104,92,34,58,92,34,49,92,34,44,92,34,100,51,45,102,111,114,99,101,92,34,58,92,34,49,92,34,44,92,34,100,51,45,102,111,114,109,97,116,92,34,58,92,34,49,92,34,44,92,34,100,51,45,103,101,111,92,34,58,92,34,49,92,34,44,92,34,100,51,45,104,105,101,114,97,114,99,104,121,92,34,58,92,34,49,92,34,44,92,34,100,51,45,105,110,116,101,114,112,111,108,97,116,101,92,34,58,92,34,49,92,34,44,92,34,100,51,45,112,97,116,104,92,34,58,92,34,49,92,34,44,92,34,100,51,45,112,111,108,121,103,111,110,92,34,58,92,34,49,92,34,44,92,34,100,51,45,113,117,97,100,116,114,101,101,92,34,58,92,34,49,92,34,44,92,34,100,51,45,114,97,110,100,111,109,92,34,58,92,34,49,92,34,44,92,34,100,51,45,115,99,97,108,101,92,34,58,92,34,50,92,34,44,92,34,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,92,34,58,92,34,49,92,34,44,92,34,100,51,45,115,101,108,101,99,116,105,111,110,92,34,58,92,34,49,92,34,44,92,34,100,51,45,115,104,97,112,101,92,34,58,92,34,49,92,34,44,92,34,100,51,45,116,105,109,101,92,34,58,92,34,49,92,34,44,92,34,100,51,45,116,105,109,101,45,102,111,114,109,97,116,92,34,58,92,34,50,92,34,44,92,34,100,51,45,116,105,109,101,114,92,34,58,92,34,49,92,34,44,92,34,100,51,45,116,114,97,110,115,105,116,105,111,110,92,34,58,92,34,49,92,34,44,92,34,100,51,45,118,111,114,111,110,111,105,92,34,58,92,34,49,92,34,44,92,34,100,51,45,122,111,111,109,92,34,58,92,34,49,92,34,125,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,47,100,105,115,116,47,112,97,99,107,97,103,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,70,111,114,109,97,116,83,112,101,99,105,102,105,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,70,111,114,109,97,116,83,112,101,99,105,102,105,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,99,116,105,118,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,46,97,99,116,105,118,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,114,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,97,114,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,97,114,101,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,114,101,97,82,97,100,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,97,114,101,97,82,97,100,105,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,115,99,101,110,100,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,97,115,99,101,110,100,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,117,116,111,84,121,112,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,97,117,116,111,84,121,112,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,120,105,115,66,111,116,116,111,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,120,105,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,120,105,115,66,111,116,116,111,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,120,105,115,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,120,105,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,120,105,115,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,120,105,115,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,120,105,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,120,105,115,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,120,105,115,84,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,120,105,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,97,120,105,115,84,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,105,115,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,98,105,115,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,105,115,101,99,116,76,101,102,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,98,105,115,101,99,116,76,101,102,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,105,115,101,99,116,82,105,103,104,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,98,105,115,101,99,116,82,105,103,104,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,105,115,101,99,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,98,105,115,101,99,116,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,108,111,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,101,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,98,108,111,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,114,117,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,98,114,117,115,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,98,114,117,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,114,117,115,104,83,101,108,101,99,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,98,114,117,115,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,98,114,117,115,104,83,101,108,101,99,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,114,117,115,104,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,98,114,117,115,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,98,114,117,115,104,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,114,117,115,104,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,98,114,117,115,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,98,114,117,115,104,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,117,102,102,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,101,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,98,117,102,102,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,104,111,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,104,111,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,99,104,111,114,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,108,105,101,110,116,80,111,105,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,99,108,105,101,110,116,80,111,105,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,108,117,115,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,99,108,117,115,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,108,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,99,111,108,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,110,116,111,117,114,68,101,110,115,105,116,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,110,116,111,117,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,99,111,110,116,111,117,114,68,101,110,115,105,116,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,110,116,111,117,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,110,116,111,117,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,99,111,110,116,111,117,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,101,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,99,114,101,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,101,97,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,99,114,101,97,116,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,111,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,99,114,111,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,101,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,99,115,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,99,115,118,70,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,70,111,114,109,97,116,66,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,99,115,118,70,111,114,109,97,116,66,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,70,111,114,109,97,116,82,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,99,115,118,70,111,114,109,97,116,82,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,70,111,114,109,97,116,82,111,119,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,99,115,118,70,111,114,109,97,116,82,111,119,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,70,111,114,109,97,116,86,97,108,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,99,115,118,70,111,114,109,97,116,86,97,108,117,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,80,97,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,99,115,118,80,97,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,115,118,80,97,114,115,101,82,111,119,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,99,115,118,80,97,114,115,101,82,111,119,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,98,101,104,101,108,105,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,99,117,98,101,104,101,108,105,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,66,97,115,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,66,97,115,105,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,66,97,115,105,115,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,66,97,115,105,115,67,108,111,115,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,66,97,115,105,115,79,112,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,66,97,115,105,115,79,112,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,66,117,110,100,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,66,117,110,100,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,67,97,114,100,105,110,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,67,97,114,100,105,110,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,67,97,114,100,105,110,97,108,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,67,97,114,100,105,110,97,108,67,108,111,115,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,67,97,114,100,105,110,97,108,79,112,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,67,97,114,100,105,110,97,108,79,112,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,79,112,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,79,112,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,76,105,110,101,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,76,105,110,101,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,76,105,110,101,97,114,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,76,105,110,101,97,114,67,108,111,115,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,77,111,110,111,116,111,110,101,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,77,111,110,111,116,111,110,101,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,77,111,110,111,116,111,110,101,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,77,111,110,111,116,111,110,101,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,78,97,116,117,114,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,78,97,116,117,114,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,83,116,101,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,83,116,101,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,83,116,101,112,65,102,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,83,116,101,112,65,102,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,114,118,101,83,116,101,112,66,101,102,111,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,99,117,114,118,101,83,116,101,112,66,101,102,111,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,117,115,116,111,109,69,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,99,117,115,116,111,109,69,118,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,115,99,101,110,100,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,101,115,99,101,110,100,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,118,105,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,100,101,118,105,97,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,105,115,112,97,116,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,105,115,112,97,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,46,100,105,115,112,97,116,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,114,97,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,114,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,100,114,97,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,114,97,103,68,105,115,97,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,114,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,100,114,97,103,68,105,115,97,98,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,114,97,103,69,110,97,98,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,114,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,100,114,97,103,69,110,97,98,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,115,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,101,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,100,115,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,115,118,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,100,115,118,70,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,66,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,97,99,107,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,66,97,99,107,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,97,99,107,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,66,97,99,107,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,97,99,107,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,66,97,99,107,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,111,117,110,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,66,111,117,110,99,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,111,117,110,99,101,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,66,111,117,110,99,101,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,111,117,110,99,101,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,66,111,117,110,99,101,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,66,111,117,110,99,101,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,66,111,117,110,99,101,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,105,114,99,108,101,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,67,105,114,99,108,101,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,105,114,99,108,101,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,67,105,114,99,108,101,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,105,114,99,108,101,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,67,105,114,99,108,101,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,117,98,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,67,117,98,105,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,117,98,105,99,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,67,117,98,105,99,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,117,98,105,99,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,67,117,98,105,99,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,67,117,98,105,99,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,67,117,98,105,99,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,108,97,115,116,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,69,108,97,115,116,105,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,108,97,115,116,105,99,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,69,108,97,115,116,105,99,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,108,97,115,116,105,99,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,69,108,97,115,116,105,99,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,108,97,115,116,105,99,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,69,108,97,115,116,105,99,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,120,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,69,120,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,120,112,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,69,120,112,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,120,112,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,69,120,112,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,69,120,112,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,69,120,112,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,76,105,110,101,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,76,105,110,101,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,80,111,108,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,80,111,108,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,80,111,108,121,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,80,111,108,121,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,80,111,108,121,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,80,111,108,121,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,80,111,108,121,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,80,111,108,121,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,81,117,97,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,81,117,97,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,81,117,97,100,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,81,117,97,100,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,81,117,97,100,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,81,117,97,100,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,81,117,97,100,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,81,117,97,100,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,83,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,83,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,83,105,110,73,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,83,105,110,73,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,83,105,110,73,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,83,105,110,73,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,97,115,101,83,105,110,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,46,101,97,115,101,83,105,110,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,110,116,114,105,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,108,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,101,110,116,114,105,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,118,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,101,118,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,120,116,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,101,120,116,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,67,101,110,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,102,111,114,99,101,67,101,110,116,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,67,111,108,108,105,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,102,111,114,99,101,67,111,108,108,105,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,76,105,110,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,102,111,114,99,101,76,105,110,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,77,97,110,121,66,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,102,111,114,99,101,77,97,110,121,66,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,82,97,100,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,102,111,114,99,101,82,97,100,105,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,83,105,109,117,108,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,102,111,114,99,101,83,105,109,117,108,97,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,88,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,102,111,114,99,101,88,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,99,101,89,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,46,102,111,114,99,101,89,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,102,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,97,116,68,101,102,97,117,108,116,76,111,99,97,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,102,111,114,109,97,116,68,101,102,97,117,108,116,76,111,99,97,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,97,116,76,111,99,97,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,102,111,114,109,97,116,76,111,99,97,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,97,116,80,114,101,102,105,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,102,111,114,109,97,116,80,114,101,102,105,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,65,108,98,101,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,65,108,98,101,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,65,108,98,101,114,115,85,115,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,65,108,98,101,114,115,85,115,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,65,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,65,114,101,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,66,111,117,110,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,66,111,117,110,100,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,101,110,116,114,111,105,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,67,101,110,116,114,111,105,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,108,105,112,65,110,116,105,109,101,114,105,100,105,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,67,108,105,112,65,110,116,105,109,101,114,105,100,105,97,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,108,105,112,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,67,108,105,112,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,108,105,112,69,120,116,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,67,108,105,112,69,120,116,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,108,105,112,82,101,99,116,97,110,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,67,108,105,112,82,101,99,116,97,110,103,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,111,110,105,99,67,111,110,102,111,114,109,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,67,111,110,105,99,67,111,110,102,111,114,109,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,111,110,105,99,67,111,110,102,111,114,109,97,108,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,67,111,110,105,99,67,111,110,102,111,114,109,97,108,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,111,110,105,99,69,113,117,97,108,65,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,67,111,110,105,99,69,113,117,97,108,65,114,101,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,111,110,105,99,69,113,117,97,108,65,114,101,97,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,67,111,110,105,99,69,113,117,97,108,65,114,101,97,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,67,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,67,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,67,111,110,116,97,105,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,67,111,110,116,97,105,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,68,105,115,116,97,110,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,68,105,115,116,97,110,99,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,69,113,117,97,108,69,97,114,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,69,113,117,97,108,69,97,114,116,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,69,113,117,97,108,69,97,114,116,104,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,69,113,117,97,108,69,97,114,116,104,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,69,113,117,105,114,101,99,116,97,110,103,117,108,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,69,113,117,105,114,101,99,116,97,110,103,117,108,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,69,113,117,105,114,101,99,116,97,110,103,117,108,97,114,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,69,113,117,105,114,101,99,116,97,110,103,117,108,97,114,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,71,110,111,109,111,110,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,71,110,111,109,111,110,105,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,71,110,111,109,111,110,105,99,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,71,110,111,109,111,110,105,99,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,71,114,97,116,105,99,117,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,71,114,97,116,105,99,117,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,71,114,97,116,105,99,117,108,101,49,48,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,71,114,97,116,105,99,117,108,101,49,48,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,73,100,101,110,116,105,116,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,73,100,101,110,116,105,116,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,73,110,116,101,114,112,111,108,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,73,110,116,101,114,112,111,108,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,76,101,110,103,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,76,101,110,103,116,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,77,101,114,99,97,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,77,101,114,99,97,116,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,77,101,114,99,97,116,111,114,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,77,101,114,99,97,116,111,114,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,78,97,116,117,114,97,108,69,97,114,116,104,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,78,97,116,117,114,97,108,69,97,114,116,104,49,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,78,97,116,117,114,97,108,69,97,114,116,104,49,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,78,97,116,117,114,97,108,69,97,114,116,104,49,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,79,114,116,104,111,103,114,97,112,104,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,79,114,116,104,111,103,114,97,112,104,105,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,79,114,116,104,111,103,114,97,112,104,105,99,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,79,114,116,104,111,103,114,97,112,104,105,99,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,80,97,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,80,97,116,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,80,114,111,106,101,99,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,80,114,111,106,101,99,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,80,114,111,106,101,99,116,105,111,110,77,117,116,97,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,80,114,111,106,101,99,116,105,111,110,77,117,116,97,116,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,82,111,116,97,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,82,111,116,97,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,83,116,101,114,101,111,103,114,97,112,104,105,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,83,116,101,114,101,111,103,114,97,112,104,105,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,83,116,101,114,101,111,103,114,97,112,104,105,99,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,83,116,101,114,101,111,103,114,97,112,104,105,99,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,83,116,114,101,97,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,83,116,114,101,97,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,84,114,97,110,115,102,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,84,114,97,110,115,102,111,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,84,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,84,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,111,84,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,82,97,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,46,103,101,111,84,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,82,97,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,114,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,103,114,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,99,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,104,99,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,105,101,114,97,114,99,104,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,104,105,101,114,97,114,99,104,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,105,115,116,111,103,114,97,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,104,105,115,116,111,103,114,97,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,115,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,104,115,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,116,109,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,101,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,104,116,109,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,109,97,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,101,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,105,109,97,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,65,114,114,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,65,114,114,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,66,97,115,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,66,97,115,105,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,66,97,115,105,115,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,66,97,115,105,115,67,108,111,115,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,66,108,117,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,66,108,117,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,66,114,66,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,66,114,66,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,66,117,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,66,117,71,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,66,117,80,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,66,117,80,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,67,105,118,105,100,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,67,105,118,105,100,105,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,67,111,111,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,67,111,111,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,68,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,68,101,102,97,117,108,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,76,111,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,76,111,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,68,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,68,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,68,105,115,99,114,101,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,68,105,115,99,114,101,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,71,110,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,71,110,66,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,71,114,101,101,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,71,114,101,101,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,71,114,101,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,71,114,101,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,72,99,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,72,99,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,72,99,108,76,111,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,72,99,108,76,111,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,72,115,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,72,115,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,72,115,108,76,111,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,72,115,108,76,111,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,72,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,72,117,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,73,110,102,101,114,110,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,73,110,102,101,114,110,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,76,97,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,76,97,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,77,97,103,109,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,77,97,103,109,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,78,117,109,98,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,78,117,109,98,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,78,117,109,98,101,114,65,114,114,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,78,117,109,98,101,114,65,114,114,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,79,98,106,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,79,98,106,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,79,114,82,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,79,114,82,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,79,114,97,110,103,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,79,114,97,110,103,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,82,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,80,82,71,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,105,89,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,80,105,89,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,108,97,115,109,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,80,108,97,115,109,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,71,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,117,79,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,80,117,79,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,117,82,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,80,117,82,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,80,117,114,112,108,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,80,117,114,112,108,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,97,105,110,98,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,82,97,105,110,98,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,100,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,82,100,66,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,100,71,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,82,100,71,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,100,80,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,82,100,80,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,100,89,108,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,82,100,89,108,66,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,100,89,108,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,82,100,89,108,71,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,101,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,82,101,100,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,103,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,82,103,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,103,98,66,97,115,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,82,103,98,66,97,115,105,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,103,98,66,97,115,105,115,67,108,111,115,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,82,103,98,66,97,115,105,115,67,108,111,115,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,82,111,117,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,82,111,117,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,83,105,110,101,98,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,83,105,110,101,98,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,83,112,101,99,116,114,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,83,112,101,99,116,114,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,83,116,114,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,83,116,114,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,67,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,67,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,83,118,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,83,118,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,84,117,114,98,111,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,84,117,114,98,111,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,86,105,114,105,100,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,86,105,114,105,100,105,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,87,97,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,87,97,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,66,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,66,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,66,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,82,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,82,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,112,111,108,97,116,101,90,111,111,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,105,110,116,101,114,112,111,108,97,116,101,90,111,111,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,114,117,112,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,46,105,110,116,101,114,114,117,112,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,116,101,114,118,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,46,105,110,116,101,114,118,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,111,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,46,105,115,111,70,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,111,80,97,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,46,105,115,111,80,97,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,106,115,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,101,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,106,115,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,107,101,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,108,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,107,101,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,97,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,108,97,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,108,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,108,105,110,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,101,82,97,100,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,108,105,110,101,82,97,100,105,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,107,72,111,114,105,122,111,110,116,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,108,105,110,107,72,111,114,105,122,111,110,116,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,107,82,97,100,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,108,105,110,107,82,97,100,105,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,105,110,107,86,101,114,116,105,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,108,105,110,107,86,101,114,116,105,99,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,111,99,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,108,111,99,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,108,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,116,99,104,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,109,97,116,99,104,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,97,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,101,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,101,97,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,101,100,105,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,101,100,105,97,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,101,114,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,101,114,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,109,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,111,117,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,109,111,117,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,97,109,101,115,112,97,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,110,97,109,101,115,112,97,99,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,97,109,101,115,112,97,99,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,110,97,109,101,115,112,97,99,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,101,115,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,108,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,110,101,115,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,110,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,46,110,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,112,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,99,107,69,110,99,108,111,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,112,97,99,107,69,110,99,108,111,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,99,107,83,105,98,108,105,110,103,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,112,97,99,107,83,105,98,108,105,110,103,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,105,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,97,105,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,114,116,105,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,112,97,114,116,105,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,97,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,112,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,112,97,116,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,101,114,109,117,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,112,101,114,109,117,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,105,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,112,105,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,105,101,99,101,119,105,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,112,105,101,99,101,119,105,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,105,110,116,82,97,100,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,112,111,105,110,116,82,97,100,105,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,108,121,103,111,110,65,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,112,111,108,121,103,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,112,111,108,121,103,111,110,65,114,101,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,108,121,103,111,110,67,101,110,116,114,111,105,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,112,111,108,121,103,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,112,111,108,121,103,111,110,67,101,110,116,114,111,105,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,112,111,108,121,103,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,108,121,103,111,110,72,117,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,112,111,108,121,103,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,112,111,108,121,103,111,110,72,117,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,111,108,121,103,111,110,76,101,110,103,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,112,111,108,121,103,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,46,112,111,108,121,103,111,110,76,101,110,103,116,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,101,99,105,115,105,111,110,70,105,120,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,112,114,101,99,105,115,105,111,110,70,105,120,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,101,99,105,115,105,111,110,80,114,101,102,105,120,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,112,114,101,99,105,115,105,111,110,80,114,101,102,105,120,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,112,114,101,99,105,115,105,111,110,82,111,117,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,46,112,114,101,99,105,115,105,111,110,82,111,117,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,113,117,97,100,116,114,101,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,113,117,97,100,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,46,113,117,97,100,116,114,101,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,113,117,97,110,116,105,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,113,117,97,110,116,105,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,113,117,97,110,116,105,122,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,46,113,117,97,110,116,105,122,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,100,105,97,108,65,114,101,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,114,97,100,105,97,108,65,114,101,97,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,100,105,97,108,76,105,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,114,97,100,105,97,108,76,105,110,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,110,100,111,109,66,97,116,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,114,97,110,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,114,97,110,100,111,109,66,97,116,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,110,100,111,109,69,120,112,111,110,101,110,116,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,114,97,110,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,114,97,110,100,111,109,69,120,112,111,110,101,110,116,105,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,110,100,111,109,73,114,119,105,110,72,97,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,114,97,110,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,114,97,110,100,111,109,73,114,119,105,110,72,97,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,110,100,111,109,76,111,103,78,111,114,109,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,114,97,110,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,114,97,110,100,111,109,76,111,103,78,111,114,109,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,110,100,111,109,78,111,114,109,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,114,97,110,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,114,97,110,100,111,109,78,111,114,109,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,110,100,111,109,85,110,105,102,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,114,97,110,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,46,114,97,110,100,111,109,85,110,105,102,111,114,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,110,103,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,114,97,110,103,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,103,98,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,114,103,98,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,105,98,98,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,104,111,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,114,105,98,98,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,66,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,66,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,68,105,118,101,114,103,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,68,105,118,101,114,103,105,110,103,76,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,76,111,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,68,105,118,101,114,103,105,110,103,80,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,80,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,68,105,118,101,114,103,105,110,103,83,113,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,83,113,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,68,105,118,101,114,103,105,110,103,83,121,109,108,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,83,121,109,108,111,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,73,100,101,110,116,105,116,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,73,100,101,110,116,105,116,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,73,109,112,108,105,99,105,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,73,109,112,108,105,99,105,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,76,105,110,101,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,76,105,110,101,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,76,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,76,111,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,79,114,100,105,110,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,79,114,100,105,110,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,80,111,105,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,80,111,105,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,80,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,80,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,81,117,97,110,116,105,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,81,117,97,110,116,105,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,81,117,97,110,116,105,122,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,81,117,97,110,116,105,122,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,76,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,76,111,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,80,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,80,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,83,113,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,83,113,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,83,121,109,108,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,83,121,109,108,111,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,113,114,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,83,113,114,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,83,121,109,108,111,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,83,121,109,108,111,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,84,104,114,101,115,104,111,108,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,84,104,114,101,115,104,111,108,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,84,105,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,84,105,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,108,101,85,116,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,115,99,97,108,101,85,116,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,97,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,99,97,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,65,99,99,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,65,99,99,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,66,108,117,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,66,108,117,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,66,114,66,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,66,114,66,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,66,117,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,66,117,71,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,66,117,80,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,66,117,80,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,67,97,116,101,103,111,114,121,49,48,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,67,97,116,101,103,111,114,121,49,48,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,68,97,114,107,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,68,97,114,107,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,71,110,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,71,110,66,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,71,114,101,101,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,71,114,101,101,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,71,114,101,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,71,114,101,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,79,114,82,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,79,114,82,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,79,114,97,110,103,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,79,114,97,110,103,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,82,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,80,82,71,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,97,105,114,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,80,97,105,114,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,97,115,116,101,108,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,80,97,115,116,101,108,49,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,97,115,116,101,108,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,80,97,115,116,101,108,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,105,89,71,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,80,105,89,71,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,117,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,80,117,66,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,117,66,117,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,80,117,66,117,71,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,117,79,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,80,117,79,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,117,82,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,80,117,82,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,80,117,114,112,108,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,80,117,114,112,108,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,82,100,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,82,100,66,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,82,100,71,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,82,100,71,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,82,100,80,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,82,100,80,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,82,100,89,108,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,82,100,89,108,66,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,82,100,89,108,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,82,100,89,108,71,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,82,101,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,82,101,100,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,83,101,116,49,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,83,101,116,49,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,83,101,116,50,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,83,101,116,50,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,83,101,116,51,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,83,101,116,51,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,83,112,101,99,116,114,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,83,112,101,99,116,114,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,84,97,98,108,101,97,117,49,48,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,84,97,98,108,101,97,117,49,48,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,89,108,71,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,89,108,71,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,89,108,71,110,66,117,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,89,108,71,110,66,117,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,89,108,79,114,66,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,89,108,79,114,66,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,99,104,101,109,101,89,108,79,114,82,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,46,115,99,104,101,109,101,89,108,79,114,82,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,108,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,115,101,108,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,108,101,99,116,65,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,115,101,108,101,99,116,65,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,108,101,99,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,115,101,108,101,99,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,108,101,99,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,115,101,108,101,99,116,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,108,101,99,116,111,114,65,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,115,101,108,101,99,116,111,114,65,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,108,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,115,101,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,104,117,102,102,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,104,117,102,102,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,116,97,99,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,102,102,115,101,116,68,105,118,101,114,103,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,116,97,99,107,79,102,102,115,101,116,68,105,118,101,114,103,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,102,102,115,101,116,69,120,112,97,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,116,97,99,107,79,102,102,115,101,116,69,120,112,97,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,102,102,115,101,116,78,111,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,116,97,99,107,79,102,102,115,101,116,78,111,110,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,102,102,115,101,116,83,105,108,104,111,117,101,116,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,116,97,99,107,79,102,102,115,101,116,83,105,108,104,111,117,101,116,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,102,102,115,101,116,87,105,103,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,116,97,99,107,79,102,102,115,101,116,87,105,103,103,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,114,100,101,114,65,112,112,101,97,114,97,110,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,116,97,99,107,79,114,100,101,114,65,112,112,101,97,114,97,110,99,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,114,100,101,114,65,115,99,101,110,100,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,116,97,99,107,79,114,100,101,114,65,115,99,101,110,100,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,114,100,101,114,68,101,115,99,101,110,100,105,110,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,116,97,99,107,79,114,100,101,114,68,101,115,99,101,110,100,105,110,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,114,100,101,114,73,110,115,105,100,101,79,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,116,97,99,107,79,114,100,101,114,73,110,115,105,100,101,79,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,114,100,101,114,78,111,110,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,116,97,99,107,79,114,100,101,114,78,111,110,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,99,107,79,114,100,101,114,82,101,118,101,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,116,97,99,107,79,114,100,101,114,82,101,118,101,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,114,97,116,105,102,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,115,116,114,97,116,105,102,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,121,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,115,116,121,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,117,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,117,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,118,103,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,101,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,115,118,103,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,121,109,98,111,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,67,105,114,99,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,121,109,98,111,108,67,105,114,99,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,67,114,111,115,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,121,109,98,111,108,67,114,111,115,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,68,105,97,109,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,121,109,98,111,108,68,105,97,109,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,83,113,117,97,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,121,109,98,111,108,83,113,117,97,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,83,116,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,121,109,98,111,108,83,116,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,84,114,105,97,110,103,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,121,109,98,111,108,84,114,105,97,110,103,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,87,121,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,121,109,98,111,108,87,121,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,121,109,98,111,108,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,46,115,121,109,98,111,108,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,101,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,116,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,104,114,101,115,104,111,108,100,70,114,101,101,100,109,97,110,68,105,97,99,111,110,105,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,104,114,101,115,104,111,108,100,70,114,101,101,100,109,97,110,68,105,97,99,111,110,105,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,104,114,101,115,104,111,108,100,83,99,111,116,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,104,114,101,115,104,111,108,100,83,99,111,116,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,104,114,101,115,104,111,108,100,83,116,117,114,103,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,104,114,101,115,104,111,108,100,83,116,117,114,103,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,99,107,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,46,116,105,99,107,70,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,99,107,73,110,99,114,101,109,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,105,99,107,73,110,99,114,101,109,101,110,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,99,107,83,116,101,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,105,99,107,83,116,101,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,99,107,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,105,99,107,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,68,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,68,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,68,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,68,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,46,116,105,109,101,70,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,70,111,114,109,97,116,68,101,102,97,117,108,116,76,111,99,97,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,46,116,105,109,101,70,111,114,109,97,116,68,101,102,97,117,108,116,76,111,99,97,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,70,111,114,109,97,116,76,111,99,97,108,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,46,116,105,109,101,70,111,114,109,97,116,76,111,99,97,108,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,70,114,105,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,70,114,105,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,70,114,105,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,70,114,105,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,72,111,117,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,72,111,117,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,72,111,117,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,72,111,117,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,73,110,116,101,114,118,97,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,73,110,116,101,114,118,97,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,105,108,108,105,115,101,99,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,77,105,108,108,105,115,101,99,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,105,108,108,105,115,101,99,111,110,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,77,105,108,108,105,115,101,99,111,110,100,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,105,110,117,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,77,105,110,117,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,105,110,117,116,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,77,105,110,117,116,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,111,110,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,77,111,110,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,111,110,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,77,111,110,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,111,110,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,77,111,110,116,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,77,111,110,116,104,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,77,111,110,116,104,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,80,97,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,46,116,105,109,101,80,97,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,83,97,116,117,114,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,83,97,116,117,114,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,83,97,116,117,114,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,83,97,116,117,114,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,83,101,99,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,83,101,99,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,83,101,99,111,110,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,83,101,99,111,110,100,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,83,117,110,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,83,117,110,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,83,117,110,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,83,117,110,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,84,104,117,114,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,84,104,117,114,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,84,104,117,114,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,84,104,117,114,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,84,117,101,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,84,117,101,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,84,117,101,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,84,117,101,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,87,101,100,110,101,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,87,101,100,110,101,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,87,101,100,110,101,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,87,101,100,110,101,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,87,101,101,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,87,101,101,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,87,101,101,107,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,87,101,101,107,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,89,101,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,89,101,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,89,101,97,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,116,105,109,101,89,101,97,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,111,117,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,46,116,105,109,101,111,117,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,46,116,105,109,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,105,109,101,114,70,108,117,115,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,46,116,105,109,101,114,70,108,117,115,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,111,117,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,116,111,117,99,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,111,117,99,104,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,116,111,117,99,104,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,97,110,115,105,116,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,46,116,114,97,110,115,105,116,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,97,110,115,112,111,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,116,114,97,110,115,112,111,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,114,101,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,109,97,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,114,101,101,109,97,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,109,97,112,66,105,110,97,114,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,114,101,101,109,97,112,66,105,110,97,114,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,109,97,112,68,105,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,114,101,101,109,97,112,68,105,99,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,109,97,112,82,101,115,113,117,97,114,105,102,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,114,101,101,109,97,112,82,101,115,113,117,97,114,105,102,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,109,97,112,83,108,105,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,114,101,101,109,97,112,83,108,105,99,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,109,97,112,83,108,105,99,101,68,105,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,114,101,101,109,97,112,83,108,105,99,101,68,105,99,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,114,101,101,109,97,112,83,113,117,97,114,105,102,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,46,116,114,101,101,109,97,112,83,113,117,97,114,105,102,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,101,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,116,115,118,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,116,115,118,70,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,70,111,114,109,97,116,66,111,100,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,116,115,118,70,111,114,109,97,116,66,111,100,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,70,111,114,109,97,116,82,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,116,115,118,70,111,114,109,97,116,82,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,70,111,114,109,97,116,82,111,119,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,116,115,118,70,111,114,109,97,116,82,111,119,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,70,111,114,109,97,116,86,97,108,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,116,115,118,70,111,114,109,97,116,86,97,108,117,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,80,97,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,116,115,118,80,97,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,115,118,80,97,114,115,101,82,111,119,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,46,116,115,118,80,97,114,115,101,82,111,119,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,68,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,68,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,68,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,68,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,70,111,114,109,97,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,46,117,116,99,70,111,114,109,97,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,70,114,105,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,70,114,105,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,70,114,105,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,70,114,105,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,72,111,117,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,72,111,117,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,72,111,117,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,72,111,117,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,105,108,108,105,115,101,99,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,77,105,108,108,105,115,101,99,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,105,108,108,105,115,101,99,111,110,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,77,105,108,108,105,115,101,99,111,110,100,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,105,110,117,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,77,105,110,117,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,105,110,117,116,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,77,105,110,117,116,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,111,110,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,77,111,110,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,111,110,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,77,111,110,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,111,110,116,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,77,111,110,116,104,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,77,111,110,116,104,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,77,111,110,116,104,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,80,97,114,115,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,46,117,116,99,80,97,114,115,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,97,116,117,114,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,83,97,116,117,114,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,97,116,117,114,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,83,97,116,117,114,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,101,99,111,110,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,83,101,99,111,110,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,101,99,111,110,100,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,83,101,99,111,110,100,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,117,110,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,83,117,110,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,83,117,110,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,83,117,110,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,84,104,117,114,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,84,104,117,114,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,84,104,117,114,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,84,104,117,114,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,84,117,101,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,84,117,101,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,84,117,101,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,84,117,101,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,87,101,100,110,101,115,100,97,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,87,101,100,110,101,115,100,97,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,87,101,100,110,101,115,100,97,121,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,87,101,100,110,101,115,100,97,121,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,87,101,101,107,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,87,101,101,107,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,87,101,101,107,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,87,101,101,107,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,89,101,97,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,89,101,97,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,116,99,89,101,97,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,46,117,116,99,89,101,97,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,118,97,108,117,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,99,111,108,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,118,97,108,117,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,118,97,114,105,97,110,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,118,97,114,105,97,110,99,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,118,101,114,115,105,111,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,100,105,115,116,95,112,97,99,107,97,103,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,118,101,114,115,105,111,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,118,111,114,111,110,111,105,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,118,111,114,111,110,111,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,46,118,111,114,111,110,111,105,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,119,105,110,100,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,46,119,105,110,100,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,120,109,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,102,101,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,46,120,109,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,122,105,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,122,105,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,122,111,111,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,122,111,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,46,122,111,111,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,122,111,111,109,73,100,101,110,116,105,116,121,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,122,111,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,46,122,111,111,109,73,100,101,110,116,105,116,121,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,122,111,111,109,84,114,97,110,115,102,111,114,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,100,51,95,122,111,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,46,122,111,111,109,84,114,97,110,115,102,111,114,109,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,100,105,115,116,95,112,97,99,107,97,103,101,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,100,105,115,116,47,112,97,99,107,97,103,101,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,47,100,105,115,116,47,112,97,99,107,97,103,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,114,114,97,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,114,114,97,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,114,114,97,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,97,120,105,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,97,120,105,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,97,120,105,115,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,98,114,117,115,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,98,114,117,115,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,98,114,117,115,104,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,104,111,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,104,111,114,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,104,111,114,100,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,108,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,108,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,108,101,99,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,108,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,108,111,114,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,99,111,110,116,111,117,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,99,111,110,116,111,117,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,99,111,110,116,111,117,114,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,100,105,115,112,97,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,100,105,115,112,97,116,99,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,105,115,112,97,116,99,104,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,100,114,97,103,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,100,114,97,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,114,97,103,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,100,115,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,100,115,118,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,100,115,118,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,101,97,115,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,101,97,115,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,101,97,115,101,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,102,101,116,99,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,102,101,116,99,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,101,116,99,104,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,102,111,114,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,102,111,114,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,99,101,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,102,111,114,109,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,102,111,114,109,97,116,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,103,101,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,103,101,111,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,103,101,111,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,104,105,101,114,97,114,99,104,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,104,105,101,114,97,114,99,104,121,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,104,105,101,114,97,114,99,104,121,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,105,110,116,101,114,112,111,108,97,116,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,105,110,116,101,114,112,111,108,97,116,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,105,110,116,101,114,112,111,108,97,116,101,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,112,97,116,104,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,112,97,116,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,97,116,104,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,112,111,108,121,103,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,112,111,108,121,103,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,112,111,108,121,103,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,113,117,97,100,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,113,117,97,100,116,114,101,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,113,117,97,100,116,114,101,101,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,114,97,110,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,114,97,110,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,114,97,110,100,111,109,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,99,97,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,99,97,108,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,99,97,108,101,95,99,104,114,111,109,97,116,105,99,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,99,97,108,101,45,99,104,114,111,109,97,116,105,99,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,101,108,101,99,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,101,108,101,99,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,101,108,101,99,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,115,104,97,112,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,115,104,97,112,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,115,104,97,112,101,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,95,102,111,114,109,97,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,45,102,111,114,109,97,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,45,102,111,114,109,97,116,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,105,109,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,105,109,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,105,109,101,114,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,116,114,97,110,115,105,116,105,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,116,114,97,110,115,105,116,105,111,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,116,114,97,110,115,105,116,105,111,110,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,118,111,114,111,110,111,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,118,111,114,111,110,111,105,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,118,111,114,111,110,111,105,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,122,111,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,45,122,111,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,45,122,111,111,109,47,115,114,99,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,40,110,117,109,98,101,114,44,32,116,97,114,103,101,116,76,101,110,103,116,104,41,32,123,92,110,32,32,118,97,114,32,115,105,103,110,32,61,32,110,117,109,98,101,114,32,60,32,48,32,63,32,39,45,39,32,58,32,39,39,59,92,110,32,32,118,97,114,32,111,117,116,112,117,116,32,61,32,77,97,116,104,46,97,98,115,40,110,117,109,98,101,114,41,46,116,111,83,116,114,105,110,103,40,41,59,92,110,92,110,32,32,119,104,105,108,101,32,40,111,117,116,112,117,116,46,108,101,110,103,116,104,32,60,32,116,97,114,103,101,116,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,111,117,116,112,117,116,32,61,32,39,48,39,32,43,32,111,117,116,112,117,116,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,115,105,103,110,32,43,32,111,117,116,112,117,116,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,102,111,114,109,97,116,47,102,111,114,109,97,116,116,101,114,115,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,102,111,114,109,97,116,47,102,111,114,109,97,116,116,101,114,115,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,103,104,116,70,111,114,109,97,116,116,101,114,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,105,103,104,116,70,111,114,109,97,116,116,101,114,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,102,111,114,109,97,116,47,108,105,103,104,116,70,111,114,109,97,116,116,101,114,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,103,101,116,85,84,67,68,97,121,79,102,89,101,97,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,95,108,105,98,47,103,101,116,85,84,67,68,97,121,79,102,89,101,97,114,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,68,97,121,79,102,89,101,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,103,101,116,85,84,67,73,83,79,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,95,108,105,98,47,103,101,116,85,84,67,73,83,79,87,101,101,107,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,73,83,79,87,101,101,107,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,103,101,116,85,84,67,73,83,79,87,101,101,107,89,101,97,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,95,108,105,98,47,103,101,116,85,84,67,73,83,79,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,73,83,79,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,103,101,116,85,84,67,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,95,108,105,98,47,103,101,116,85,84,67,87,101,101,107,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,87,101,101,107,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,103,101,116,85,84,67,87,101,101,107,89,101,97,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,95,108,105,98,47,103,101,116,85,84,67,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,100,97,121,80,101,114,105,111,100,69,110,117,109,32,61,32,123,92,110,32,32,97,109,58,32,39,97,109,39,44,92,110,32,32,112,109,58,32,39,112,109,39,44,92,110,32,32,109,105,100,110,105,103,104,116,58,32,39,109,105,100,110,105,103,104,116,39,44,92,110,32,32,110,111,111,110,58,32,39,110,111,111,110,39,44,92,110,32,32,109,111,114,110,105,110,103,58,32,39,109,111,114,110,105,110,103,39,44,92,110,32,32,97,102,116,101,114,110,111,111,110,58,32,39,97,102,116,101,114,110,111,111,110,39,44,92,110,32,32,101,118,101,110,105,110,103,58,32,39,101,118,101,110,105,110,103,39,44,92,110,32,32,110,105,103,104,116,58,32,39,110,105,103,104,116,39,92,110,32,32,47,42,92,110,32,32,32,42,32,124,32,32,32,32,32,124,32,85,110,105,116,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,124,32,32,32,32,32,124,32,85,110,105,116,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,124,92,110,32,32,32,42,32,124,45,45,45,45,45,124,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,124,45,45,45,45,45,124,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,124,92,110,32,32,32,42,32,124,32,32,97,32,32,124,32,65,77,44,32,80,77,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,124,32,32,65,42,32,124,32,77,105,108,108,105,115,101,99,111,110,100,115,32,105,110,32,100,97,121,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,98,32,32,124,32,65,77,44,32,80,77,44,32,110,111,111,110,44,32,109,105,100,110,105,103,104,116,32,32,32,32,32,32,32,32,32,124,32,32,66,32,32,124,32,70,108,101,120,105,98,108,101,32,100,97,121,32,112,101,114,105,111,100,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,99,32,32,124,32,83,116,97,110,100,45,97,108,111,110,101,32,108,111,99,97,108,32,100,97,121,32,111,102,32,119,101,101,107,32,32,124,32,32,67,42,32,124,32,76,111,99,97,108,105,122,101,100,32,104,111,117,114,32,119,47,32,100,97,121,32,112,101,114,105,111,100,32,32,32,124,92,110,32,32,32,42,32,124,32,32,100,32,32,124,32,68,97,121,32,111,102,32,109,111,110,116,104,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,68,32,32,124,32,68,97,121,32,111,102,32,121,101,97,114,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,101,32,32,124,32,76,111,99,97,108,32,100,97,121,32,111,102,32,119,101,101,107,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,69,32,32,124,32,68,97,121,32,111,102,32,119,101,101,107,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,102,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,70,42,32,124,32,68,97,121,32,111,102,32,119,101,101,107,32,105,110,32,109,111,110,116,104,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,103,42,32,124,32,77,111,100,105,102,105,101,100,32,74,117,108,105,97,110,32,100,97,121,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,71,32,32,124,32,69,114,97,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,124,92,110,32,32,32,42,32,124,32,32,104,32,32,124,32,72,111,117,114,32,91,49,45,49,50,93,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,72,32,32,124,32,72,111,117,114,32,91,48,45,50,51,93,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,105,33,32,124,32,73,83,79,32,100,97,121,32,111,102,32,119,101,101,107,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,73,33,32,124,32,73,83,79,32,119,101,101,107,32,111,102,32,121,101,97,114,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,106,42,32,124,32,76,111,99,97,108,105,122,101,100,32,104,111,117,114,32,119,47,32,100,97,121,32,112,101,114,105,111,100,32,32,32,124,32,32,74,42,32,124,32,76,111,99,97,108,105,122,101,100,32,104,111,117,114,32,119,47,111,32,100,97,121,32,112,101,114,105,111,100,32,32,124,92,110,32,32,32,42,32,124,32,32,107,32,32,124,32,72,111,117,114,32,91,49,45,50,52,93,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,75,32,32,124,32,72,111,117,114,32,91,48,45,49,49,93,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,108,42,32,124,32,40,100,101,112,114,101,99,97,116,101,100,41,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,76,32,32,124,32,83,116,97,110,100,45,97,108,111,110,101,32,109,111,110,116,104,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,109,32,32,124,32,77,105,110,117,116,101,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,124,32,32,77,32,32,124,32,77,111,110,116,104,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,124,92,110,32,32,32,42,32,124,32,32,110,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,78,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,111,33,32,124,32,79,114,100,105,110,97,108,32,110,117,109,98,101,114,32,109,111,100,105,102,105,101,114,32,32,32,32,32,32,32,32,124,32,32,79,32,32,124,32,84,105,109,101,122,111,110,101,32,40,71,77,84,41,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,112,33,32,124,32,76,111,110,103,32,108,111,99,97,108,105,122,101,100,32,116,105,109,101,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,80,33,32,124,32,76,111,110,103,32,108,111,99,97,108,105,122,101,100,32,100,97,116,101,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,113,32,32,124,32,83,116,97,110,100,45,97,108,111,110,101,32,113,117,97,114,116,101,114,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,81,32,32,124,32,81,117,97,114,116,101,114,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,114,42,32,124,32,82,101,108,97,116,101,100,32,71,114,101,103,111,114,105,97,110,32,121,101,97,114,32,32,32,32,32,32,32,32,32,124,32,32,82,33,32,124,32,73,83,79,32,119,101,101,107,45,110,117,109,98,101,114,105,110,103,32,121,101,97,114,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,115,32,32,124,32,83,101,99,111,110,100,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,124,32,32,83,32,32,124,32,70,114,97,99,116,105,111,110,32,111,102,32,115,101,99,111,110,100,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,116,33,32,124,32,83,101,99,111,110,100,115,32,116,105,109,101,115,116,97,109,112,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,84,33,32,124,32,77,105,108,108,105,115,101,99,111,110,100,115,32,116,105,109,101,115,116,97,109,112,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,117,32,32,124,32,69,120,116,101,110,100,101,100,32,121,101,97,114,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,85,42,32,124,32,67,121,99,108,105,99,32,121,101,97,114,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,118,42,32,124,32,84,105,109,101,122,111,110,101,32,40,103,101,110,101,114,105,99,32,110,111,110,45,108,111,99,97,116,46,41,32,32,124,32,32,86,42,32,124,32,84,105,109,101,122,111,110,101,32,40,108,111,99,97,116,105,111,110,41,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,119,32,32,124,32,76,111,99,97,108,32,119,101,101,107,32,111,102,32,121,101,97,114,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,87,42,32,124,32,87,101,101,107,32,111,102,32,109,111,110,116,104,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,120,32,32,124,32,84,105,109,101,122,111,110,101,32,40,73,83,79,45,56,54,48,49,32,119,47,111,32,90,41,32,32,32,32,32,32,124,32,32,88,32,32,124,32,84,105,109,101,122,111,110,101,32,40,73,83,79,45,56,54,48,49,41,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,121,32,32,124,32,89,101,97,114,32,40,97,98,115,41,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,89,32,32,124,32,76,111,99,97,108,32,119,101,101,107,45,110,117,109,98,101,114,105,110,103,32,121,101,97,114,32,32,32,32,32,32,124,92,110,32,32,32,42,32,124,32,32,122,32,32,124,32,84,105,109,101,122,111,110,101,32,40,115,112,101,99,105,102,105,99,32,110,111,110,45,108,111,99,97,116,46,41,32,124,32,32,90,42,32,124,32,84,105,109,101,122,111,110,101,32,40,97,108,105,97,115,101,115,41,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,32,32,42,92,110,32,32,32,42,32,76,101,116,116,101,114,115,32,109,97,114,107,101,100,32,98,121,32,42,32,97,114,101,32,110,111,116,32,105,109,112,108,101,109,101,110,116,101,100,32,98,117,116,32,114,101,115,101,114,118,101,100,32,98,121,32,85,110,105,99,111,100,101,32,115,116,97,110,100,97,114,100,46,92,110,32,32,32,42,92,110,32,32,32,42,32,76,101,116,116,101,114,115,32,109,97,114,107,101,100,32,98,121,32,33,32,97,114,101,32,110,111,110,45,115,116,97,110,100,97,114,100,44,32,98,117,116,32,105,109,112,108,101,109,101,110,116,101,100,32,98,121,32,100,97,116,101,45,102,110,115,58,92,110,32,32,32,42,32,45,32,96,111,96,32,109,111,100,105,102,105,101,115,32,116,104,101,32,112,114,101,118,105,111,117,115,32,116,111,107,101,110,32,116,111,32,116,117,114,110,32,105,116,32,105,110,116,111,32,97,110,32,111,114,100,105,110,97,108,32,40,115,101,101,32,96,102,111,114,109,97,116,96,32,100,111,99,115,41,92,110,32,32,32,42,32,45,32,96,105,96,32,105,115,32,73,83,79,32,100,97,121,32,111,102,32,119,101,101,107,46,32,70,111,114,32,96,105,96,32,97,110,100,32,96,105,105,96,32,105,115,32,114,101,116,117,114,110,115,32,110,117,109,101,114,105,99,32,73,83,79,32,119,101,101,107,32,100,97,121,115,44,92,110,32,32,32,42,32,32,32,105,46,101,46,32,55,32,102,111,114,32,83,117,110,100,97,121,44,32,49,32,102,111,114,32,77,111,110,100,97,121,44,32,101,116,99,46,92,110,32,32,32,42,32,45,32,96,73,96,32,105,115,32,73,83,79,32,119,101,101,107,32,111,102,32,121,101,97,114,44,32,97,115,32,111,112,112,111,115,101,100,32,116,111,32,96,119,96,32,119,104,105,99,104,32,105,115,32,108,111,99,97,108,32,119,101,101,107,32,111,102,32,121,101,97,114,46,92,110,32,32,32,42,32,45,32,96,82,96,32,105,115,32,73,83,79,32,119,101,101,107,45,110,117,109,98,101,114,105,110,103,32,121,101,97,114,44,32,97,115,32,111,112,112,111,115,101,100,32,116,111,32,96,89,96,32,119,104,105,99,104,32,105,115,32,108,111,99,97,108,32,119,101,101,107,45,110,117,109,98,101,114,105,110,103,32,121,101,97,114,46,92,110,32,32,32,42,32,32,32,96,82,96,32,105,115,32,115,117,112,112,111,115,101,100,32,116,111,32,98,101,32,117,115,101,100,32,105,110,32,99,111,110,106,117,110,99,116,105,111,110,32,119,105,116,104,32,96,73,96,32,97,110,100,32,96,105,96,92,110,32,32,32,42,32,32,32,102,111,114,32,117,110,105,118,101,114,115,97,108,32,73,83,79,32,119,101,101,107,45,110,117,109,98,101,114,105,110,103,32,100,97,116,101,44,32,119,104,101,114,101,97,115,92,110,32,32,32,42,32,32,32,96,89,96,32,105,115,32,115,117,112,112,111,115,101,100,32,116,111,32,98,101,32,117,115,101,100,32,105,110,32,99,111,110,106,117,110,99,116,105,111,110,32,119,105,116,104,32,96,119,96,32,97,110,100,32,96,101,96,92,110,32,32,32,42,32,32,32,102,111,114,32,119,101,101,107,45,110,117,109,98,101,114,105,110,103,32,100,97,116,101,32,115,112,101,99,105,102,105,99,32,116,111,32,116,104,101,32,108,111,99,97,108,101,46,92,110,32,32,32,42,32,45,32,96,80,96,32,105,115,32,108,111,110,103,32,108,111,99,97,108,105,122,101,100,32,100,97,116,101,32,102,111,114,109,97,116,92,110,32,32,32,42,32,45,32,96,112,96,32,105,115,32,108,111,110,103,32,108,111,99,97,108,105,122,101,100,32,116,105,109,101,32,102,111,114,109,97,116,92,110,32,32,32,42,47,92,110,92,110,125,59,92,110,118,97,114,32,102,111,114,109,97,116,116,101,114,115,32,61,32,123,92,110,32,32,47,47,32,69,114,97,92,110,32,32,71,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,101,114,97,32,61,32,100,97,116,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,32,62,32,48,32,63,32,49,32,58,32,48,59,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,65,68,44,32,66,67,92,110,32,32,32,32,32,32,99,97,115,101,32,39,71,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,71,71,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,71,71,71,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,101,114,97,40,101,114,97,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,97,98,98,114,101,118,105,97,116,101,100,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,65,44,32,66,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,71,71,71,71,71,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,101,114,97,40,101,114,97,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,110,97,114,114,111,119,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,65,110,110,111,32,68,111,109,105,110,105,44,32,66,101,102,111,114,101,32,67,104,114,105,115,116,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,71,71,71,71,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,101,114,97,40,101,114,97,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,119,105,100,101,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,89,101,97,114,92,110,32,32,121,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,47,47,32,79,114,100,105,110,97,108,32,110,117,109,98,101,114,92,110,32,32,32,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,121,111,39,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,105,103,110,101,100,89,101,97,114,32,61,32,100,97,116,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,59,32,47,47,32,82,101,116,117,114,110,115,32,49,32,102,111,114,32,49,32,66,67,32,40,119,104,105,99,104,32,105,115,32,121,101,97,114,32,48,32,105,110,32,74,97,118,97,83,99,114,105,112,116,41,92,110,92,110,32,32,32,32,32,32,118,97,114,32,121,101,97,114,32,61,32,115,105,103,110,101,100,89,101,97,114,32,62,32,48,32,63,32,115,105,103,110,101,100,89,101,97,114,32,58,32,49,32,45,32,115,105,103,110,101,100,89,101,97,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,121,101,97,114,44,32,123,92,110,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,121,101,97,114,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,95,108,105,103,104,116,70,111,114,109,97,116,116,101,114,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,121,40,100,97,116,101,44,32,116,111,107,101,110,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,76,111,99,97,108,32,119,101,101,107,45,110,117,109,98,101,114,105,110,103,32,121,101,97,114,92,110,32,32,89,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,115,105,103,110,101,100,87,101,101,107,89,101,97,114,32,61,32,40,48,44,95,108,105,98,95,103,101,116,85,84,67,87,101,101,107,89,101,97,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,97,116,101,44,32,111,112,116,105,111,110,115,41,59,32,47,47,32,82,101,116,117,114,110,115,32,49,32,102,111,114,32,49,32,66,67,32,40,119,104,105,99,104,32,105,115,32,121,101,97,114,32,48,32,105,110,32,74,97,118,97,83,99,114,105,112,116,41,92,110,92,110,32,32,32,32,118,97,114,32,119,101,101,107,89,101,97,114,32,61,32,115,105,103,110,101,100,87,101,101,107,89,101,97,114,32,62,32,48,32,63,32,115,105,103,110,101,100,87,101,101,107,89,101,97,114,32,58,32,49,32,45,32,115,105,103,110,101,100,87,101,101,107,89,101,97,114,59,32,47,47,32,84,119,111,32,100,105,103,105,116,32,121,101,97,114,92,110,92,110,32,32,32,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,89,89,39,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,119,111,68,105,103,105,116,89,101,97,114,32,61,32,119,101,101,107,89,101,97,114,32,37,32,49,48,48,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,119,111,68,105,103,105,116,89,101,97,114,44,32,50,41,59,92,110,32,32,32,32,125,32,47,47,32,79,114,100,105,110,97,108,32,110,117,109,98,101,114,92,110,92,110,92,110,32,32,32,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,89,111,39,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,119,101,101,107,89,101,97,114,44,32,123,92,110,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,121,101,97,114,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,47,47,32,80,97,100,100,105,110,103,92,110,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,119,101,101,107,89,101,97,114,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,73,83,79,32,119,101,101,107,45,110,117,109,98,101,114,105,110,103,32,121,101,97,114,92,110,32,32,82,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,41,32,123,92,110,32,32,32,32,118,97,114,32,105,115,111,87,101,101,107,89,101,97,114,32,61,32,40,48,44,95,108,105,98,95,103,101,116,85,84,67,73,83,79,87,101,101,107,89,101,97,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,97,116,101,41,59,32,47,47,32,80,97,100,100,105,110,103,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,105,115,111,87,101,101,107,89,101,97,114,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,69,120,116,101,110,100,101,100,32,121,101,97,114,46,32,84,104,105,115,32,105,115,32,97,32,115,105,110,103,108,101,32,110,117,109,98,101,114,32,100,101,115,105,103,110,97,116,105,110,103,32,116,104,101,32,121,101,97,114,32,111,102,32,116,104,105,115,32,99,97,108,101,110,100,97,114,32,115,121,115,116,101,109,46,92,110,32,32,47,47,32,84,104,101,32,109,97,105,110,32,100,105,102,102,101,114,101,110,99,101,32,98,101,116,119,101,101,110,32,96,121,96,32,97,110,100,32,96,117,96,32,108,111,99,97,108,105,122,101,114,115,32,97,114,101,32,66,46,67,46,32,121,101,97,114,115,58,92,110,32,32,47,47,32,124,32,89,101,97,114,32,124,32,96,121,96,32,124,32,96,117,96,32,124,92,110,32,32,47,47,32,124,45,45,45,45,45,45,124,45,45,45,45,45,124,45,45,45,45,45,124,92,110,32,32,47,47,32,124,32,65,67,32,49,32,124,32,32,32,49,32,124,32,32,32,49,32,124,92,110,32,32,47,47,32,124,32,66,67,32,49,32,124,32,32,32,49,32,124,32,32,32,48,32,124,92,110,32,32,47,47,32,124,32,66,67,32,50,32,124,32,32,32,50,32,124,32,32,45,49,32,124,92,110,32,32,47,47,32,65,108,115,111,32,96,121,121,96,32,97,108,119,97,121,115,32,114,101,116,117,114,110,115,32,116,104,101,32,108,97,115,116,32,116,119,111,32,100,105,103,105,116,115,32,111,102,32,97,32,121,101,97,114,44,92,110,32,32,47,47,32,119,104,105,108,101,32,96,117,117,96,32,112,97,100,115,32,115,105,110,103,108,101,32,100,105,103,105,116,32,121,101,97,114,115,32,116,111,32,50,32,99,104,97,114,97,99,116,101,114,115,32,97,110,100,32,114,101,116,117,114,110,115,32,111,116,104,101,114,32,121,101,97,114,115,32,117,110,99,104,97,110,103,101,100,46,92,110,32,32,117,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,41,32,123,92,110,32,32,32,32,118,97,114,32,121,101,97,114,32,61,32,100,97,116,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,121,101,97,114,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,81,117,97,114,116,101,114,92,110,32,32,81,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,113,117,97,114,116,101,114,32,61,32,77,97,116,104,46,99,101,105,108,40,40,100,97,116,101,46,103,101,116,85,84,67,77,111,110,116,104,40,41,32,43,32,49,41,32,47,32,51,41,59,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,49,44,32,50,44,32,51,44,32,52,92,110,32,32,32,32,32,32,99,97,115,101,32,39,81,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,113,117,97,114,116,101,114,41,59,92,110,32,32,32,32,32,32,47,47,32,48,49,44,32,48,50,44,32,48,51,44,32,48,52,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,81,81,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,113,117,97,114,116,101,114,44,32,50,41,59,92,110,32,32,32,32,32,32,47,47,32,49,115,116,44,32,50,110,100,44,32,51,114,100,44,32,52,116,104,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,81,111,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,113,117,97,114,116,101,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,113,117,97,114,116,101,114,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,81,49,44,32,81,50,44,32,81,51,44,32,81,52,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,81,81,81,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,113,117,97,114,116,101,114,40,113,117,97,114,116,101,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,97,98,98,114,101,118,105,97,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,49,44,32,50,44,32,51,44,32,52,32,40,110,97,114,114,111,119,32,113,117,97,114,116,101,114,59,32,99,111,117,108,100,32,98,101,32,110,111,116,32,110,117,109,101,114,105,99,97,108,41,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,81,81,81,81,81,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,113,117,97,114,116,101,114,40,113,117,97,114,116,101,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,110,97,114,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,49,115,116,32,113,117,97,114,116,101,114,44,32,50,110,100,32,113,117,97,114,116,101,114,44,32,46,46,46,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,81,81,81,81,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,113,117,97,114,116,101,114,40,113,117,97,114,116,101,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,83,116,97,110,100,45,97,108,111,110,101,32,113,117,97,114,116,101,114,92,110,32,32,113,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,113,117,97,114,116,101,114,32,61,32,77,97,116,104,46,99,101,105,108,40,40,100,97,116,101,46,103,101,116,85,84,67,77,111,110,116,104,40,41,32,43,32,49,41,32,47,32,51,41,59,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,49,44,32,50,44,32,51,44,32,52,92,110,32,32,32,32,32,32,99,97,115,101,32,39,113,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,113,117,97,114,116,101,114,41,59,92,110,32,32,32,32,32,32,47,47,32,48,49,44,32,48,50,44,32,48,51,44,32,48,52,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,113,113,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,113,117,97,114,116,101,114,44,32,50,41,59,92,110,32,32,32,32,32,32,47,47,32,49,115,116,44,32,50,110,100,44,32,51,114,100,44,32,52,116,104,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,113,111,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,113,117,97,114,116,101,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,113,117,97,114,116,101,114,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,81,49,44,32,81,50,44,32,81,51,44,32,81,52,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,113,113,113,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,113,117,97,114,116,101,114,40,113,117,97,114,116,101,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,97,98,98,114,101,118,105,97,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,115,116,97,110,100,97,108,111,110,101,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,49,44,32,50,44,32,51,44,32,52,32,40,110,97,114,114,111,119,32,113,117,97,114,116,101,114,59,32,99,111,117,108,100,32,98,101,32,110,111,116,32,110,117,109,101,114,105,99,97,108,41,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,113,113,113,113,113,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,113,117,97,114,116,101,114,40,113,117,97,114,116,101,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,110,97,114,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,115,116,97,110,100,97,108,111,110,101,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,49,115,116,32,113,117,97,114,116,101,114,44,32,50,110,100,32,113,117,97,114,116,101,114,44,32,46,46,46,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,113,113,113,113,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,113,117,97,114,116,101,114,40,113,117,97,114,116,101,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,115,116,97,110,100,97,108,111,110,101,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,77,111,110,116,104,92,110,32,32,77,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,109,111,110,116,104,32,61,32,100,97,116,101,46,103,101,116,85,84,67,77,111,110,116,104,40,41,59,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,39,77,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,77,77,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,108,105,103,104,116,70,111,114,109,97,116,116,101,114,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,77,40,100,97,116,101,44,32,116,111,107,101,110,41,59,92,110,32,32,32,32,32,32,47,47,32,49,115,116,44,32,50,110,100,44,32,46,46,46,44,32,49,50,116,104,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,77,111,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,109,111,110,116,104,32,43,32,49,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,109,111,110,116,104,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,74,97,110,44,32,70,101,98,44,32,46,46,46,44,32,68,101,99,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,77,77,77,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,109,111,110,116,104,40,109,111,110,116,104,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,97,98,98,114,101,118,105,97,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,74,44,32,70,44,32,46,46,46,44,32,68,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,77,77,77,77,77,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,109,111,110,116,104,40,109,111,110,116,104,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,110,97,114,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,74,97,110,117,97,114,121,44,32,70,101,98,114,117,97,114,121,44,32,46,46,46,44,32,68,101,99,101,109,98,101,114,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,77,77,77,77,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,109,111,110,116,104,40,109,111,110,116,104,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,83,116,97,110,100,45,97,108,111,110,101,32,109,111,110,116,104,92,110,32,32,76,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,109,111,110,116,104,32,61,32,100,97,116,101,46,103,101,116,85,84,67,77,111,110,116,104,40,41,59,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,49,44,32,50,44,32,46,46,46,44,32,49,50,92,110,32,32,32,32,32,32,99,97,115,101,32,39,76,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,109,111,110,116,104,32,43,32,49,41,59,92,110,32,32,32,32,32,32,47,47,32,48,49,44,32,48,50,44,32,46,46,46,44,32,49,50,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,76,76,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,109,111,110,116,104,32,43,32,49,44,32,50,41,59,92,110,32,32,32,32,32,32,47,47,32,49,115,116,44,32,50,110,100,44,32,46,46,46,44,32,49,50,116,104,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,76,111,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,109,111,110,116,104,32,43,32,49,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,109,111,110,116,104,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,74,97,110,44,32,70,101,98,44,32,46,46,46,44,32,68,101,99,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,76,76,76,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,109,111,110,116,104,40,109,111,110,116,104,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,97,98,98,114,101,118,105,97,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,115,116,97,110,100,97,108,111,110,101,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,74,44,32,70,44,32,46,46,46,44,32,68,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,76,76,76,76,76,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,109,111,110,116,104,40,109,111,110,116,104,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,110,97,114,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,115,116,97,110,100,97,108,111,110,101,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,74,97,110,117,97,114,121,44,32,70,101,98,114,117,97,114,121,44,32,46,46,46,44,32,68,101,99,101,109,98,101,114,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,76,76,76,76,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,109,111,110,116,104,40,109,111,110,116,104,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,115,116,97,110,100,97,108,111,110,101,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,76,111,99,97,108,32,119,101,101,107,32,111,102,32,121,101,97,114,92,110,32,32,119,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,119,101,101,107,32,61,32,40,48,44,95,108,105,98,95,103,101,116,85,84,67,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,97,116,101,44,32,111,112,116,105,111,110,115,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,119,111,39,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,119,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,119,101,101,107,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,119,101,101,107,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,73,83,79,32,119,101,101,107,32,111,102,32,121,101,97,114,92,110,32,32,73,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,115,111,87,101,101,107,32,61,32,40,48,44,95,108,105,98,95,103,101,116,85,84,67,73,83,79,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,97,116,101,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,73,111,39,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,105,115,111,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,119,101,101,107,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,105,115,111,87,101,101,107,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,68,97,121,32,111,102,32,116,104,101,32,109,111,110,116,104,92,110,32,32,100,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,100,111,39,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,100,97,116,101,46,103,101,116,85,84,67,68,97,116,101,40,41,44,32,123,92,110,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,100,97,116,101,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,95,108,105,103,104,116,70,111,114,109,97,116,116,101,114,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,100,40,100,97,116,101,44,32,116,111,107,101,110,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,68,97,121,32,111,102,32,121,101,97,114,92,110,32,32,68,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,121,79,102,89,101,97,114,32,61,32,40,48,44,95,108,105,98,95,103,101,116,85,84,67,68,97,121,79,102,89,101,97,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,97,116,101,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,68,111,39,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,100,97,121,79,102,89,101,97,114,44,32,123,92,110,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,100,97,121,79,102,89,101,97,114,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,97,121,79,102,89,101,97,114,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,68,97,121,32,111,102,32,119,101,101,107,92,110,32,32,69,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,121,79,102,87,101,101,107,32,61,32,100,97,116,101,46,103,101,116,85,84,67,68,97,121,40,41,59,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,117,101,92,110,32,32,32,32,32,32,99,97,115,101,32,39,69,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,69,69,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,69,69,69,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,97,98,98,114,101,118,105,97,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,84,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,69,69,69,69,69,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,110,97,114,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,84,117,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,69,69,69,69,69,69,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,115,104,111,114,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,84,117,101,115,100,97,121,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,69,69,69,69,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,76,111,99,97,108,32,100,97,121,32,111,102,32,119,101,101,107,92,110,32,32,101,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,121,79,102,87,101,101,107,32,61,32,100,97,116,101,46,103,101,116,85,84,67,68,97,121,40,41,59,92,110,32,32,32,32,118,97,114,32,108,111,99,97,108,68,97,121,79,102,87,101,101,107,32,61,32,40,100,97,121,79,102,87,101,101,107,32,45,32,111,112,116,105,111,110,115,46,119,101,101,107,83,116,97,114,116,115,79,110,32,43,32,56,41,32,37,32,55,32,124,124,32,55,59,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,78,117,109,101,114,105,99,97,108,32,118,97,108,117,101,32,40,78,116,104,32,100,97,121,32,111,102,32,119,101,101,107,32,119,105,116,104,32,99,117,114,114,101,110,116,32,108,111,99,97,108,101,32,111,114,32,119,101,101,107,83,116,97,114,116,115,79,110,41,92,110,32,32,32,32,32,32,99,97,115,101,32,39,101,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,108,111,99,97,108,68,97,121,79,102,87,101,101,107,41,59,92,110,32,32,32,32,32,32,47,47,32,80,97,100,100,101,100,32,110,117,109,101,114,105,99,97,108,32,118,97,108,117,101,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,101,101,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,108,111,99,97,108,68,97,121,79,102,87,101,101,107,44,32,50,41,59,92,110,32,32,32,32,32,32,47,47,32,49,115,116,44,32,50,110,100,44,32,46,46,46,44,32,55,116,104,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,101,111,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,108,111,99,97,108,68,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,100,97,121,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,101,101,101,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,97,98,98,114,101,118,105,97,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,84,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,101,101,101,101,101,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,110,97,114,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,84,117,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,101,101,101,101,101,101,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,115,104,111,114,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,84,117,101,115,100,97,121,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,101,101,101,101,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,83,116,97,110,100,45,97,108,111,110,101,32,108,111,99,97,108,32,100,97,121,32,111,102,32,119,101,101,107,92,110,32,32,99,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,121,79,102,87,101,101,107,32,61,32,100,97,116,101,46,103,101,116,85,84,67,68,97,121,40,41,59,92,110,32,32,32,32,118,97,114,32,108,111,99,97,108,68,97,121,79,102,87,101,101,107,32,61,32,40,100,97,121,79,102,87,101,101,107,32,45,32,111,112,116,105,111,110,115,46,119,101,101,107,83,116,97,114,116,115,79,110,32,43,32,56,41,32,37,32,55,32,124,124,32,55,59,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,78,117,109,101,114,105,99,97,108,32,118,97,108,117,101,32,40,115,97,109,101,32,97,115,32,105,110,32,96,101,96,41,92,110,32,32,32,32,32,32,99,97,115,101,32,39,99,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,108,111,99,97,108,68,97,121,79,102,87,101,101,107,41,59,92,110,32,32,32,32,32,32,47,47,32,80,97,100,100,101,100,32,110,117,109,101,114,105,99,97,108,32,118,97,108,117,101,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,99,99,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,108,111,99,97,108,68,97,121,79,102,87,101,101,107,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,47,47,32,49,115,116,44,32,50,110,100,44,32,46,46,46,44,32,55,116,104,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,99,111,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,108,111,99,97,108,68,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,100,97,121,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,99,99,99,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,97,98,98,114,101,118,105,97,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,115,116,97,110,100,97,108,111,110,101,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,84,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,99,99,99,99,99,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,110,97,114,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,115,116,97,110,100,97,108,111,110,101,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,84,117,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,99,99,99,99,99,99,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,115,104,111,114,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,115,116,97,110,100,97,108,111,110,101,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,84,117,101,115,100,97,121,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,99,99,99,99,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,115,116,97,110,100,97,108,111,110,101,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,73,83,79,32,100,97,121,32,111,102,32,119,101,101,107,92,110,32,32,105,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,121,79,102,87,101,101,107,32,61,32,100,97,116,101,46,103,101,116,85,84,67,68,97,121,40,41,59,92,110,32,32,32,32,118,97,114,32,105,115,111,68,97,121,79,102,87,101,101,107,32,61,32,100,97,121,79,102,87,101,101,107,32,61,61,61,32,48,32,63,32,55,32,58,32,100,97,121,79,102,87,101,101,107,59,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,50,92,110,32,32,32,32,32,32,99,97,115,101,32,39,105,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,105,115,111,68,97,121,79,102,87,101,101,107,41,59,92,110,32,32,32,32,32,32,47,47,32,48,50,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,105,105,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,105,115,111,68,97,121,79,102,87,101,101,107,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,47,47,32,50,110,100,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,105,111,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,105,115,111,68,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,100,97,121,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,84,117,101,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,105,105,105,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,97,98,98,114,101,118,105,97,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,84,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,105,105,105,105,105,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,110,97,114,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,84,117,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,105,105,105,105,105,105,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,115,104,111,114,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,84,117,101,115,100,97,121,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,105,105,105,105,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,40,100,97,121,79,102,87,101,101,107,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,65,77,32,111,114,32,80,77,92,110,32,32,97,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,104,111,117,114,115,32,61,32,100,97,116,101,46,103,101,116,85,84,67,72,111,117,114,115,40,41,59,92,110,32,32,32,32,118,97,114,32,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,32,61,32,104,111,117,114,115,32,47,32,49,50,32,62,61,32,49,32,63,32,39,112,109,39,32,58,32,39,97,109,39,59,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,39,97,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,97,97,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,80,101,114,105,111,100,40,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,97,98,98,114,101,118,105,97,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,97,97,97,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,80,101,114,105,111,100,40,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,97,98,98,114,101,118,105,97,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,97,97,97,97,97,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,80,101,114,105,111,100,40,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,110,97,114,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,97,97,97,97,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,80,101,114,105,111,100,40,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,65,77,44,32,80,77,44,32,109,105,100,110,105,103,104,116,44,32,110,111,111,110,92,110,32,32,98,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,104,111,117,114,115,32,61,32,100,97,116,101,46,103,101,116,85,84,67,72,111,117,114,115,40,41,59,92,110,32,32,32,32,118,97,114,32,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,59,92,110,92,110,32,32,32,32,105,102,32,40,104,111,117,114,115,32,61,61,61,32,49,50,41,32,123,92,110,32,32,32,32,32,32,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,32,61,32,100,97,121,80,101,114,105,111,100,69,110,117,109,46,110,111,111,110,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,111,117,114,115,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,32,61,32,100,97,121,80,101,114,105,111,100,69,110,117,109,46,109,105,100,110,105,103,104,116,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,32,61,32,104,111,117,114,115,32,47,32,49,50,32,62,61,32,49,32,63,32,39,112,109,39,32,58,32,39,97,109,39,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,39,98,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,98,98,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,80,101,114,105,111,100,40,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,97,98,98,114,101,118,105,97,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,98,98,98,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,80,101,114,105,111,100,40,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,97,98,98,114,101,118,105,97,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,98,98,98,98,98,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,80,101,114,105,111,100,40,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,110,97,114,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,98,98,98,98,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,80,101,114,105,111,100,40,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,105,110,32,116,104,101,32,109,111,114,110,105,110,103,44,32,105,110,32,116,104,101,32,97,102,116,101,114,110,111,111,110,44,32,105,110,32,116,104,101,32,101,118,101,110,105,110,103,44,32,97,116,32,110,105,103,104,116,92,110,32,32,66,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,104,111,117,114,115,32,61,32,100,97,116,101,46,103,101,116,85,84,67,72,111,117,114,115,40,41,59,92,110,32,32,32,32,118,97,114,32,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,59,92,110,92,110,32,32,32,32,105,102,32,40,104,111,117,114,115,32,62,61,32,49,55,41,32,123,92,110,32,32,32,32,32,32,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,32,61,32,100,97,121,80,101,114,105,111,100,69,110,117,109,46,101,118,101,110,105,110,103,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,111,117,114,115,32,62,61,32,49,50,41,32,123,92,110,32,32,32,32,32,32,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,32,61,32,100,97,121,80,101,114,105,111,100,69,110,117,109,46,97,102,116,101,114,110,111,111,110,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,111,117,114,115,32,62,61,32,52,41,32,123,92,110,32,32,32,32,32,32,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,32,61,32,100,97,121,80,101,114,105,111,100,69,110,117,109,46,109,111,114,110,105,110,103,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,32,61,32,100,97,121,80,101,114,105,111,100,69,110,117,109,46,110,105,103,104,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,39,66,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,66,66,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,66,66,66,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,80,101,114,105,111,100,40,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,97,98,98,114,101,118,105,97,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,66,66,66,66,66,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,80,101,114,105,111,100,40,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,110,97,114,114,111,119,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,66,66,66,66,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,100,97,121,80,101,114,105,111,100,40,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,58,32,39,102,111,114,109,97,116,116,105,110,103,39,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,72,111,117,114,32,91,49,45,49,50,93,92,110,32,32,104,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,104,111,39,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,111,117,114,115,32,61,32,100,97,116,101,46,103,101,116,85,84,67,72,111,117,114,115,40,41,32,37,32,49,50,59,92,110,32,32,32,32,32,32,105,102,32,40,104,111,117,114,115,32,61,61,61,32,48,41,32,104,111,117,114,115,32,61,32,49,50,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,104,111,117,114,115,44,32,123,92,110,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,104,111,117,114,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,95,108,105,103,104,116,70,111,114,109,97,116,116,101,114,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,104,40,100,97,116,101,44,32,116,111,107,101,110,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,72,111,117,114,32,91,48,45,50,51,93,92,110,32,32,72,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,72,111,39,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,100,97,116,101,46,103,101,116,85,84,67,72,111,117,114,115,40,41,44,32,123,92,110,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,104,111,117,114,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,95,108,105,103,104,116,70,111,114,109,97,116,116,101,114,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,72,40,100,97,116,101,44,32,116,111,107,101,110,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,72,111,117,114,32,91,48,45,49,49,93,92,110,32,32,75,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,104,111,117,114,115,32,61,32,100,97,116,101,46,103,101,116,85,84,67,72,111,117,114,115,40,41,32,37,32,49,50,59,92,110,92,110,32,32,32,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,75,111,39,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,104,111,117,114,115,44,32,123,92,110,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,104,111,117,114,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,104,111,117,114,115,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,72,111,117,114,32,91,49,45,50,52,93,92,110,32,32,107,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,118,97,114,32,104,111,117,114,115,32,61,32,100,97,116,101,46,103,101,116,85,84,67,72,111,117,114,115,40,41,59,92,110,32,32,32,32,105,102,32,40,104,111,117,114,115,32,61,61,61,32,48,41,32,104,111,117,114,115,32,61,32,50,52,59,92,110,92,110,32,32,32,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,107,111,39,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,104,111,117,114,115,44,32,123,92,110,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,104,111,117,114,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,104,111,117,114,115,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,77,105,110,117,116,101,92,110,32,32,109,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,109,111,39,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,100,97,116,101,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,44,32,123,92,110,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,109,105,110,117,116,101,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,95,108,105,103,104,116,70,111,114,109,97,116,116,101,114,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,109,40,100,97,116,101,44,32,116,111,107,101,110,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,83,101,99,111,110,100,92,110,32,32,115,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,115,111,39,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,99,97,108,105,122,101,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,100,97,116,101,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,44,32,123,92,110,32,32,32,32,32,32,32,32,117,110,105,116,58,32,39,115,101,99,111,110,100,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,95,108,105,103,104,116,70,111,114,109,97,116,116,101,114,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,115,40,100,97,116,101,44,32,116,111,107,101,110,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,70,114,97,99,116,105,111,110,32,111,102,32,115,101,99,111,110,100,92,110,32,32,83,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,108,105,103,104,116,70,111,114,109,97,116,116,101,114,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,83,40,100,97,116,101,44,32,116,111,107,101,110,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,84,105,109,101,122,111,110,101,32,40,73,83,79,45,56,54,48,49,46,32,73,102,32,111,102,102,115,101,116,32,105,115,32,48,44,32,111,117,116,112,117,116,32,105,115,32,97,108,119,97,121,115,32,96,39,90,39,96,41,92,110,32,32,88,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,95,108,111,99,97,108,105,122,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,111,114,105,103,105,110,97,108,68,97,116,101,32,61,32,111,112,116,105,111,110,115,46,95,111,114,105,103,105,110,97,108,68,97,116,101,32,124,124,32,100,97,116,101,59,92,110,32,32,32,32,118,97,114,32,116,105,109,101,122,111,110,101,79,102,102,115,101,116,32,61,32,111,114,105,103,105,110,97,108,68,97,116,101,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,105,109,101,122,111,110,101,79,102,102,115,101,116,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,90,39,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,72,111,117,114,115,32,97,110,100,32,111,112,116,105,111,110,97,108,32,109,105,110,117,116,101,115,92,110,32,32,32,32,32,32,99,97,115,101,32,39,88,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,84,105,109,101,122,111,110,101,87,105,116,104,79,112,116,105,111,110,97,108,77,105,110,117,116,101,115,40,116,105,109,101,122,111,110,101,79,102,102,115,101,116,41,59,92,110,32,32,32,32,32,32,47,47,32,72,111,117,114,115,44,32,109,105,110,117,116,101,115,32,97,110,100,32,111,112,116,105,111,110,97,108,32,115,101,99,111,110,100,115,32,119,105,116,104,111,117,116,32,96,58,96,32,100,101,108,105,109,105,116,101,114,92,110,32,32,32,32,32,32,47,47,32,78,111,116,101,58,32,110,101,105,116,104,101,114,32,73,83,79,45,56,54,48,49,32,110,111,114,32,74,97,118,97,83,99,114,105,112,116,32,115,117,112,112,111,114,116,115,32,115,101,99,111,110,100,115,32,105,110,32,116,105,109,101,122,111,110,101,32,111,102,102,115,101,116,115,92,110,32,32,32,32,32,32,47,47,32,115,111,32,116,104,105,115,32,116,111,107,101,110,32,97,108,119,97,121,115,32,104,97,115,32,116,104,101,32,115,97,109,101,32,111,117,116,112,117,116,32,97,115,32,96,88,88,96,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,88,88,88,88,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,88,88,39,58,92,110,32,32,32,32,32,32,32,32,47,47,32,72,111,117,114,115,32,97,110,100,32,109,105,110,117,116,101,115,32,119,105,116,104,111,117,116,32,96,58,96,32,100,101,108,105,109,105,116,101,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,84,105,109,101,122,111,110,101,40,116,105,109,101,122,111,110,101,79,102,102,115,101,116,41,59,92,110,32,32,32,32,32,32,47,47,32,72,111,117,114,115,44,32,109,105,110,117,116,101,115,32,97,110,100,32,111,112,116,105,111,110,97,108,32,115,101,99,111,110,100,115,32,119,105,116,104,32,96,58,96,32,100,101,108,105,109,105,116,101,114,92,110,32,32,32,32,32,32,47,47,32,78,111,116,101,58,32,110,101,105,116,104,101,114,32,73,83,79,45,56,54,48,49,32,110,111,114,32,74,97,118,97,83,99,114,105,112,116,32,115,117,112,112,111,114,116,115,32,115,101,99,111,110,100,115,32,105,110,32,116,105,109,101,122,111,110,101,32,111,102,102,115,101,116,115,92,110,32,32,32,32,32,32,47,47,32,115,111,32,116,104,105,115,32,116,111,107,101,110,32,97,108,119,97,121,115,32,104,97,115,32,116,104,101,32,115,97,109,101,32,111,117,116,112,117,116,32,97,115,32,96,88,88,88,96,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,88,88,88,88,88,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,88,88,88,39,58,32,47,47,32,72,111,117,114,115,32,97,110,100,32,109,105,110,117,116,101,115,32,119,105,116,104,32,96,58,96,32,100,101,108,105,109,105,116,101,114,92,110,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,84,105,109,101,122,111,110,101,40,116,105,109,101,122,111,110,101,79,102,102,115,101,116,44,32,39,58,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,84,105,109,101,122,111,110,101,32,40,73,83,79,45,56,54,48,49,46,32,73,102,32,111,102,102,115,101,116,32,105,115,32,48,44,32,111,117,116,112,117,116,32,105,115,32,96,39,43,48,48,58,48,48,39,96,32,111,114,32,101,113,117,105,118,97,108,101,110,116,41,92,110,32,32,120,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,95,108,111,99,97,108,105,122,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,111,114,105,103,105,110,97,108,68,97,116,101,32,61,32,111,112,116,105,111,110,115,46,95,111,114,105,103,105,110,97,108,68,97,116,101,32,124,124,32,100,97,116,101,59,92,110,32,32,32,32,118,97,114,32,116,105,109,101,122,111,110,101,79,102,102,115,101,116,32,61,32,111,114,105,103,105,110,97,108,68,97,116,101,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,59,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,72,111,117,114,115,32,97,110,100,32,111,112,116,105,111,110,97,108,32,109,105,110,117,116,101,115,92,110,32,32,32,32,32,32,99,97,115,101,32,39,120,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,84,105,109,101,122,111,110,101,87,105,116,104,79,112,116,105,111,110,97,108,77,105,110,117,116,101,115,40,116,105,109,101,122,111,110,101,79,102,102,115,101,116,41,59,92,110,32,32,32,32,32,32,47,47,32,72,111,117,114,115,44,32,109,105,110,117,116,101,115,32,97,110,100,32,111,112,116,105,111,110,97,108,32,115,101,99,111,110,100,115,32,119,105,116,104,111,117,116,32,96,58,96,32,100,101,108,105,109,105,116,101,114,92,110,32,32,32,32,32,32,47,47,32,78,111,116,101,58,32,110,101,105,116,104,101,114,32,73,83,79,45,56,54,48,49,32,110,111,114,32,74,97,118,97,83,99,114,105,112,116,32,115,117,112,112,111,114,116,115,32,115,101,99,111,110,100,115,32,105,110,32,116,105,109,101,122,111,110,101,32,111,102,102,115,101,116,115,92,110,32,32,32,32,32,32,47,47,32,115,111,32,116,104,105,115,32,116,111,107,101,110,32,97,108,119,97,121,115,32,104,97,115,32,116,104,101,32,115,97,109,101,32,111,117,116,112,117,116,32,97,115,32,96,120,120,96,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,120,120,120,120,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,120,120,39,58,92,110,32,32,32,32,32,32,32,32,47,47,32,72,111,117,114,115,32,97,110,100,32,109,105,110,117,116,101,115,32,119,105,116,104,111,117,116,32,96,58,96,32,100,101,108,105,109,105,116,101,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,84,105,109,101,122,111,110,101,40,116,105,109,101,122,111,110,101,79,102,102,115,101,116,41,59,92,110,32,32,32,32,32,32,47,47,32,72,111,117,114,115,44,32,109,105,110,117,116,101,115,32,97,110,100,32,111,112,116,105,111,110,97,108,32,115,101,99,111,110,100,115,32,119,105,116,104,32,96,58,96,32,100,101,108,105,109,105,116,101,114,92,110,32,32,32,32,32,32,47,47,32,78,111,116,101,58,32,110,101,105,116,104,101,114,32,73,83,79,45,56,54,48,49,32,110,111,114,32,74,97,118,97,83,99,114,105,112,116,32,115,117,112,112,111,114,116,115,32,115,101,99,111,110,100,115,32,105,110,32,116,105,109,101,122,111,110,101,32,111,102,102,115,101,116,115,92,110,32,32,32,32,32,32,47,47,32,115,111,32,116,104,105,115,32,116,111,107,101,110,32,97,108,119,97,121,115,32,104,97,115,32,116,104,101,32,115,97,109,101,32,111,117,116,112,117,116,32,97,115,32,96,120,120,120,96,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,120,120,120,120,120,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,120,120,120,39,58,32,47,47,32,72,111,117,114,115,32,97,110,100,32,109,105,110,117,116,101,115,32,119,105,116,104,32,96,58,96,32,100,101,108,105,109,105,116,101,114,92,110,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,84,105,109,101,122,111,110,101,40,116,105,109,101,122,111,110,101,79,102,102,115,101,116,44,32,39,58,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,84,105,109,101,122,111,110,101,32,40,71,77,84,41,92,110,32,32,79,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,95,108,111,99,97,108,105,122,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,111,114,105,103,105,110,97,108,68,97,116,101,32,61,32,111,112,116,105,111,110,115,46,95,111,114,105,103,105,110,97,108,68,97,116,101,32,124,124,32,100,97,116,101,59,92,110,32,32,32,32,118,97,114,32,116,105,109,101,122,111,110,101,79,102,102,115,101,116,32,61,32,111,114,105,103,105,110,97,108,68,97,116,101,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,59,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,104,111,114,116,92,110,32,32,32,32,32,32,99,97,115,101,32,39,79,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,79,79,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,79,79,79,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,71,77,84,39,32,43,32,102,111,114,109,97,116,84,105,109,101,122,111,110,101,83,104,111,114,116,40,116,105,109,101,122,111,110,101,79,102,102,115,101,116,44,32,39,58,39,41,59,92,110,32,32,32,32,32,32,47,47,32,76,111,110,103,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,79,79,79,79,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,71,77,84,39,32,43,32,102,111,114,109,97,116,84,105,109,101,122,111,110,101,40,116,105,109,101,122,111,110,101,79,102,102,115,101,116,44,32,39,58,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,84,105,109,101,122,111,110,101,32,40,115,112,101,99,105,102,105,99,32,110,111,110,45,108,111,99,97,116,105,111,110,41,92,110,32,32,122,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,95,108,111,99,97,108,105,122,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,111,114,105,103,105,110,97,108,68,97,116,101,32,61,32,111,112,116,105,111,110,115,46,95,111,114,105,103,105,110,97,108,68,97,116,101,32,124,124,32,100,97,116,101,59,92,110,32,32,32,32,118,97,114,32,116,105,109,101,122,111,110,101,79,102,102,115,101,116,32,61,32,111,114,105,103,105,110,97,108,68,97,116,101,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,59,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,104,111,114,116,92,110,32,32,32,32,32,32,99,97,115,101,32,39,122,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,122,122,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,122,122,122,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,71,77,84,39,32,43,32,102,111,114,109,97,116,84,105,109,101,122,111,110,101,83,104,111,114,116,40,116,105,109,101,122,111,110,101,79,102,102,115,101,116,44,32,39,58,39,41,59,92,110,32,32,32,32,32,32,47,47,32,76,111,110,103,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,122,122,122,122,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,71,77,84,39,32,43,32,102,111,114,109,97,116,84,105,109,101,122,111,110,101,40,116,105,109,101,122,111,110,101,79,102,102,115,101,116,44,32,39,58,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,83,101,99,111,110,100,115,32,116,105,109,101,115,116,97,109,112,92,110,32,32,116,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,95,108,111,99,97,108,105,122,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,111,114,105,103,105,110,97,108,68,97,116,101,32,61,32,111,112,116,105,111,110,115,46,95,111,114,105,103,105,110,97,108,68,97,116,101,32,124,124,32,100,97,116,101,59,92,110,32,32,32,32,118,97,114,32,116,105,109,101,115,116,97,109,112,32,61,32,77,97,116,104,46,102,108,111,111,114,40,111,114,105,103,105,110,97,108,68,97,116,101,46,103,101,116,84,105,109,101,40,41,32,47,32,49,48,48,48,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,105,109,101,115,116,97,109,112,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,77,105,108,108,105,115,101,99,111,110,100,115,32,116,105,109,101,115,116,97,109,112,92,110,32,32,84,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,44,32,95,108,111,99,97,108,105,122,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,111,114,105,103,105,110,97,108,68,97,116,101,32,61,32,111,112,116,105,111,110,115,46,95,111,114,105,103,105,110,97,108,68,97,116,101,32,124,124,32,100,97,116,101,59,92,110,32,32,32,32,118,97,114,32,116,105,109,101,115,116,97,109,112,32,61,32,111,114,105,103,105,110,97,108,68,97,116,101,46,103,101,116,84,105,109,101,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,105,109,101,115,116,97,109,112,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,84,105,109,101,122,111,110,101,83,104,111,114,116,40,111,102,102,115,101,116,44,32,100,105,114,116,121,68,101,108,105,109,105,116,101,114,41,32,123,92,110,32,32,118,97,114,32,115,105,103,110,32,61,32,111,102,102,115,101,116,32,62,32,48,32,63,32,39,45,39,32,58,32,39,43,39,59,92,110,32,32,118,97,114,32,97,98,115,79,102,102,115,101,116,32,61,32,77,97,116,104,46,97,98,115,40,111,102,102,115,101,116,41,59,92,110,32,32,118,97,114,32,104,111,117,114,115,32,61,32,77,97,116,104,46,102,108,111,111,114,40,97,98,115,79,102,102,115,101,116,32,47,32,54,48,41,59,92,110,32,32,118,97,114,32,109,105,110,117,116,101,115,32,61,32,97,98,115,79,102,102,115,101,116,32,37,32,54,48,59,92,110,92,110,32,32,105,102,32,40,109,105,110,117,116,101,115,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,105,103,110,32,43,32,83,116,114,105,110,103,40,104,111,117,114,115,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,100,101,108,105,109,105,116,101,114,32,61,32,100,105,114,116,121,68,101,108,105,109,105,116,101,114,32,124,124,32,39,39,59,92,110,32,32,114,101,116,117,114,110,32,115,105,103,110,32,43,32,83,116,114,105,110,103,40,104,111,117,114,115,41,32,43,32,100,101,108,105,109,105,116,101,114,32,43,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,109,105,110,117,116,101,115,44,32,50,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,84,105,109,101,122,111,110,101,87,105,116,104,79,112,116,105,111,110,97,108,77,105,110,117,116,101,115,40,111,102,102,115,101,116,44,32,100,105,114,116,121,68,101,108,105,109,105,116,101,114,41,32,123,92,110,32,32,105,102,32,40,111,102,102,115,101,116,32,37,32,54,48,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,118,97,114,32,115,105,103,110,32,61,32,111,102,102,115,101,116,32,62,32,48,32,63,32,39,45,39,32,58,32,39,43,39,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,105,103,110,32,43,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,77,97,116,104,46,97,98,115,40,111,102,102,115,101,116,41,32,47,32,54,48,44,32,50,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,84,105,109,101,122,111,110,101,40,111,102,102,115,101,116,44,32,100,105,114,116,121,68,101,108,105,109,105,116,101,114,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,84,105,109,101,122,111,110,101,40,111,102,102,115,101,116,44,32,100,105,114,116,121,68,101,108,105,109,105,116,101,114,41,32,123,92,110,32,32,118,97,114,32,100,101,108,105,109,105,116,101,114,32,61,32,100,105,114,116,121,68,101,108,105,109,105,116,101,114,32,124,124,32,39,39,59,92,110,32,32,118,97,114,32,115,105,103,110,32,61,32,111,102,102,115,101,116,32,62,32,48,32,63,32,39,45,39,32,58,32,39,43,39,59,92,110,32,32,118,97,114,32,97,98,115,79,102,102,115,101,116,32,61,32,77,97,116,104,46,97,98,115,40,111,102,102,115,101,116,41,59,92,110,32,32,118,97,114,32,104,111,117,114,115,32,61,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,77,97,116,104,46,102,108,111,111,114,40,97,98,115,79,102,102,115,101,116,32,47,32,54,48,41,44,32,50,41,59,92,110,32,32,118,97,114,32,109,105,110,117,116,101,115,32,61,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,97,98,115,79,102,102,115,101,116,32,37,32,54,48,44,32,50,41,59,92,110,32,32,114,101,116,117,114,110,32,115,105,103,110,32,43,32,104,111,117,114,115,32,43,32,100,101,108,105,109,105,116,101,114,32,43,32,109,105,110,117,116,101,115,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,102,111,114,109,97,116,116,101,114,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,102,111,114,109,97,116,47,102,111,114,109,97,116,116,101,114,115,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,102,111,114,109,97,116,47,108,105,103,104,116,70,111,114,109,97,116,116,101,114,115,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,102,111,114,109,97,116,47,108,105,103,104,116,70,111,114,109,97,116,116,101,114,115,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,47,42,92,110,32,42,32,124,32,32,32,32,32,124,32,85,110,105,116,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,124,32,32,32,32,32,124,32,85,110,105,116,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,124,92,110,32,42,32,124,45,45,45,45,45,124,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,124,45,45,45,45,45,124,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,124,92,110,32,42,32,124,32,32,97,32,32,124,32,65,77,44,32,80,77,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,124,32,32,65,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,100,32,32,124,32,68,97,121,32,111,102,32,109,111,110,116,104,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,68,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,104,32,32,124,32,72,111,117,114,32,91,49,45,49,50,93,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,72,32,32,124,32,72,111,117,114,32,91,48,45,50,51,93,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,109,32,32,124,32,77,105,110,117,116,101,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,124,32,32,77,32,32,124,32,77,111,110,116,104,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,124,92,110,32,42,32,124,32,32,115,32,32,124,32,83,101,99,111,110,100,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,124,32,32,83,32,32,124,32,70,114,97,99,116,105,111,110,32,111,102,32,115,101,99,111,110,100,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,121,32,32,124,32,89,101,97,114,32,40,97,98,115,41,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,89,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,92,110,32,42,92,110,32,42,32,76,101,116,116,101,114,115,32,109,97,114,107,101,100,32,98,121,32,42,32,97,114,101,32,110,111,116,32,105,109,112,108,101,109,101,110,116,101,100,32,98,117,116,32,114,101,115,101,114,118,101,100,32,98,121,32,85,110,105,99,111,100,101,32,115,116,97,110,100,97,114,100,46,92,110,32,42,47,92,110,92,110,118,97,114,32,102,111,114,109,97,116,116,101,114,115,32,61,32,123,92,110,32,32,47,47,32,89,101,97,114,92,110,32,32,121,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,41,32,123,92,110,32,32,32,32,47,47,32,70,114,111,109,32,104,116,116,112,58,47,47,119,119,119,46,117,110,105,99,111,100,101,46,111,114,103,47,114,101,112,111,114,116,115,47,116,114,51,53,47,116,114,51,53,45,51,49,47,116,114,51,53,45,100,97,116,101,115,46,104,116,109,108,35,68,97,116,101,95,70,111,114,109,97,116,95,116,111,107,101,110,115,92,110,32,32,32,32,47,47,32,124,32,89,101,97,114,32,32,32,32,32,124,32,32,32,32,32,121,32,124,32,121,121,32,124,32,32,32,121,121,121,32,124,32,32,121,121,121,121,32,124,32,121,121,121,121,121,32,124,92,110,32,32,32,32,47,47,32,124,45,45,45,45,45,45,45,45,45,45,124,45,45,45,45,45,45,45,124,45,45,45,45,124,45,45,45,45,45,45,45,124,45,45,45,45,45,45,45,124,45,45,45,45,45,45,45,124,92,110,32,32,32,32,47,47,32,124,32,65,68,32,49,32,32,32,32,32,124,32,32,32,32,32,49,32,124,32,48,49,32,124,32,32,32,48,48,49,32,124,32,32,48,48,48,49,32,124,32,48,48,48,48,49,32,124,92,110,32,32,32,32,47,47,32,124,32,65,68,32,49,50,32,32,32,32,124,32,32,32,32,49,50,32,124,32,49,50,32,124,32,32,32,48,49,50,32,124,32,32,48,48,49,50,32,124,32,48,48,48,49,50,32,124,92,110,32,32,32,32,47,47,32,124,32,65,68,32,49,50,51,32,32,32,124,32,32,32,49,50,51,32,124,32,50,51,32,124,32,32,32,49,50,51,32,124,32,32,48,49,50,51,32,124,32,48,48,49,50,51,32,124,92,110,32,32,32,32,47,47,32,124,32,65,68,32,49,50,51,52,32,32,124,32,32,49,50,51,52,32,124,32,51,52,32,124,32,32,49,50,51,52,32,124,32,32,49,50,51,52,32,124,32,48,49,50,51,52,32,124,92,110,32,32,32,32,47,47,32,124,32,65,68,32,49,50,51,52,53,32,124,32,49,50,51,52,53,32,124,32,52,53,32,124,32,49,50,51,52,53,32,124,32,49,50,51,52,53,32,124,32,49,50,51,52,53,32,124,92,110,32,32,32,32,118,97,114,32,115,105,103,110,101,100,89,101,97,114,32,61,32,100,97,116,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,59,32,47,47,32,82,101,116,117,114,110,115,32,49,32,102,111,114,32,49,32,66,67,32,40,119,104,105,99,104,32,105,115,32,121,101,97,114,32,48,32,105,110,32,74,97,118,97,83,99,114,105,112,116,41,92,110,92,110,32,32,32,32,118,97,114,32,121,101,97,114,32,61,32,115,105,103,110,101,100,89,101,97,114,32,62,32,48,32,63,32,115,105,103,110,101,100,89,101,97,114,32,58,32,49,32,45,32,115,105,103,110,101,100,89,101,97,114,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,116,111,107,101,110,32,61,61,61,32,39,121,121,39,32,63,32,121,101,97,114,32,37,32,49,48,48,32,58,32,121,101,97,114,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,77,111,110,116,104,92,110,32,32,77,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,41,32,123,92,110,32,32,32,32,118,97,114,32,109,111,110,116,104,32,61,32,100,97,116,101,46,103,101,116,85,84,67,77,111,110,116,104,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,111,107,101,110,32,61,61,61,32,39,77,39,32,63,32,83,116,114,105,110,103,40,109,111,110,116,104,32,43,32,49,41,32,58,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,109,111,110,116,104,32,43,32,49,44,32,50,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,68,97,121,32,111,102,32,116,104,101,32,109,111,110,116,104,92,110,32,32,100,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,97,116,101,46,103,101,116,85,84,67,68,97,116,101,40,41,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,65,77,32,111,114,32,80,77,92,110,32,32,97,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,32,61,32,100,97,116,101,46,103,101,116,85,84,67,72,111,117,114,115,40,41,32,47,32,49,50,32,62,61,32,49,32,63,32,39,112,109,39,32,58,32,39,97,109,39,59,92,110,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,39,97,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,97,97,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,59,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,97,97,97,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,97,97,97,97,97,39,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,91,48,93,59,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,39,97,97,97,97,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,121,80,101,114,105,111,100,69,110,117,109,86,97,108,117,101,32,61,61,61,32,39,97,109,39,32,63,32,39,97,46,109,46,39,32,58,32,39,112,46,109,46,39,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,72,111,117,114,32,91,49,45,49,50,93,92,110,32,32,104,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,97,116,101,46,103,101,116,85,84,67,72,111,117,114,115,40,41,32,37,32,49,50,32,124,124,32,49,50,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,72,111,117,114,32,91,48,45,50,51,93,92,110,32,32,72,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,97,116,101,46,103,101,116,85,84,67,72,111,117,114,115,40,41,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,77,105,110,117,116,101,92,110,32,32,109,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,97,116,101,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,83,101,99,111,110,100,92,110,32,32,115,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,97,116,101,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,44,92,110,32,32,47,47,32,70,114,97,99,116,105,111,110,32,111,102,32,115,101,99,111,110,100,92,110,32,32,83,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,101,44,32,116,111,107,101,110,41,32,123,92,110,32,32,32,32,118,97,114,32,110,117,109,98,101,114,79,102,68,105,103,105,116,115,32,61,32,116,111,107,101,110,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,109,105,108,108,105,115,101,99,111,110,100,115,32,61,32,100,97,116,101,46,103,101,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,41,59,92,110,32,32,32,32,118,97,114,32,102,114,97,99,116,105,111,110,97,108,83,101,99,111,110,100,115,32,61,32,77,97,116,104,46,102,108,111,111,114,40,109,105,108,108,105,115,101,99,111,110,100,115,32,42,32,77,97,116,104,46,112,111,119,40,49,48,44,32,110,117,109,98,101,114,79,102,68,105,103,105,116,115,32,45,32,51,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,76,101,97,100,105,110,103,90,101,114,111,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,114,97,99,116,105,111,110,97,108,83,101,99,111,110,100,115,44,32,116,111,107,101,110,46,108,101,110,103,116,104,41,59,92,110,32,32,125,92,110,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,102,111,114,109,97,116,116,101,114,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,102,111,114,109,97,116,47,108,105,103,104,116,70,111,114,109,97,116,116,101,114,115,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,102,111,114,109,97,116,47,108,111,110,103,70,111,114,109,97,116,116,101,114,115,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,102,111,114,109,97,116,47,108,111,110,103,70,111,114,109,97,116,116,101,114,115,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,102,117,110,99,116,105,111,110,32,100,97,116,101,76,111,110,103,70,111,114,109,97,116,116,101,114,40,112,97,116,116,101,114,110,44,32,102,111,114,109,97,116,76,111,110,103,41,32,123,92,110,32,32,115,119,105,116,99,104,32,40,112,97,116,116,101,114,110,41,32,123,92,110,32,32,32,32,99,97,115,101,32,39,80,39,58,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,76,111,110,103,46,100,97,116,101,40,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,115,104,111,114,116,39,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,99,97,115,101,32,39,80,80,39,58,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,76,111,110,103,46,100,97,116,101,40,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,109,101,100,105,117,109,39,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,99,97,115,101,32,39,80,80,80,39,58,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,76,111,110,103,46,100,97,116,101,40,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,108,111,110,103,39,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,99,97,115,101,32,39,80,80,80,80,39,58,92,110,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,76,111,110,103,46,100,97,116,101,40,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,102,117,108,108,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,105,109,101,76,111,110,103,70,111,114,109,97,116,116,101,114,40,112,97,116,116,101,114,110,44,32,102,111,114,109,97,116,76,111,110,103,41,32,123,92,110,32,32,115,119,105,116,99,104,32,40,112,97,116,116,101,114,110,41,32,123,92,110,32,32,32,32,99,97,115,101,32,39,112,39,58,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,76,111,110,103,46,116,105,109,101,40,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,115,104,111,114,116,39,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,99,97,115,101,32,39,112,112,39,58,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,76,111,110,103,46,116,105,109,101,40,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,109,101,100,105,117,109,39,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,99,97,115,101,32,39,112,112,112,39,58,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,76,111,110,103,46,116,105,109,101,40,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,108,111,110,103,39,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,99,97,115,101,32,39,112,112,112,112,39,58,92,110,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,76,111,110,103,46,116,105,109,101,40,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,102,117,108,108,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,97,116,101,84,105,109,101,76,111,110,103,70,111,114,109,97,116,116,101,114,40,112,97,116,116,101,114,110,44,32,102,111,114,109,97,116,76,111,110,103,41,32,123,92,110,32,32,118,97,114,32,109,97,116,99,104,82,101,115,117,108,116,32,61,32,112,97,116,116,101,114,110,46,109,97,116,99,104,40,47,40,80,43,41,40,112,43,41,63,47,41,59,92,110,32,32,118,97,114,32,100,97,116,101,80,97,116,116,101,114,110,32,61,32,109,97,116,99,104,82,101,115,117,108,116,91,49,93,59,92,110,32,32,118,97,114,32,116,105,109,101,80,97,116,116,101,114,110,32,61,32,109,97,116,99,104,82,101,115,117,108,116,91,50,93,59,92,110,92,110,32,32,105,102,32,40,33,116,105,109,101,80,97,116,116,101,114,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,97,116,101,76,111,110,103,70,111,114,109,97,116,116,101,114,40,112,97,116,116,101,114,110,44,32,102,111,114,109,97,116,76,111,110,103,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,100,97,116,101,84,105,109,101,70,111,114,109,97,116,59,92,110,92,110,32,32,115,119,105,116,99,104,32,40,100,97,116,101,80,97,116,116,101,114,110,41,32,123,92,110,32,32,32,32,99,97,115,101,32,39,80,39,58,92,110,32,32,32,32,32,32,100,97,116,101,84,105,109,101,70,111,114,109,97,116,32,61,32,102,111,114,109,97,116,76,111,110,103,46,100,97,116,101,84,105,109,101,40,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,115,104,111,114,116,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,98,114,101,97,107,59,92,110,92,110,32,32,32,32,99,97,115,101,32,39,80,80,39,58,92,110,32,32,32,32,32,32,100,97,116,101,84,105,109,101,70,111,114,109,97,116,32,61,32,102,111,114,109,97,116,76,111,110,103,46,100,97,116,101,84,105,109,101,40,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,109,101,100,105,117,109,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,98,114,101,97,107,59,92,110,92,110,32,32,32,32,99,97,115,101,32,39,80,80,80,39,58,92,110,32,32,32,32,32,32,100,97,116,101,84,105,109,101,70,111,114,109,97,116,32,61,32,102,111,114,109,97,116,76,111,110,103,46,100,97,116,101,84,105,109,101,40,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,108,111,110,103,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,98,114,101,97,107,59,92,110,92,110,32,32,32,32,99,97,115,101,32,39,80,80,80,80,39,58,92,110,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,100,97,116,101,84,105,109,101,70,111,114,109,97,116,32,61,32,102,111,114,109,97,116,76,111,110,103,46,100,97,116,101,84,105,109,101,40,123,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,39,102,117,108,108,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,84,105,109,101,70,111,114,109,97,116,46,114,101,112,108,97,99,101,40,39,123,123,100,97,116,101,125,125,39,44,32,100,97,116,101,76,111,110,103,70,111,114,109,97,116,116,101,114,40,100,97,116,101,80,97,116,116,101,114,110,44,32,102,111,114,109,97,116,76,111,110,103,41,41,46,114,101,112,108,97,99,101,40,39,123,123,116,105,109,101,125,125,39,44,32,116,105,109,101,76,111,110,103,70,111,114,109,97,116,116,101,114,40,116,105,109,101,80,97,116,116,101,114,110,44,32,102,111,114,109,97,116,76,111,110,103,41,41,59,92,110,125,92,110,92,110,118,97,114,32,108,111,110,103,70,111,114,109,97,116,116,101,114,115,32,61,32,123,92,110,32,32,112,58,32,116,105,109,101,76,111,110,103,70,111,114,109,97,116,116,101,114,44,92,110,32,32,80,58,32,100,97,116,101,84,105,109,101,76,111,110,103,70,111,114,109,97,116,116,101,114,92,110,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,108,111,110,103,70,111,114,109,97,116,116,101,114,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,102,111,114,109,97,116,47,108,111,110,103,70,111,114,109,97,116,116,101,114,115,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,73,110,77,105,108,108,105,115,101,99,111,110,100,115,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,73,110,77,105,108,108,105,115,101,99,111,110,100,115,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,73,110,77,105,108,108,105,115,101,99,111,110,100,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,42,92,110,32,42,32,71,111,111,103,108,101,32,67,104,114,111,109,101,32,97,115,32,111,102,32,54,55,46,48,46,51,51,57,54,46,56,55,32,105,110,116,114,111,100,117,99,101,100,32,116,105,109,101,122,111,110,101,115,32,119,105,116,104,32,111,102,102,115,101,116,32,116,104,97,116,32,105,110,99,108,117,100,101,115,32,115,101,99,111,110,100,115,46,92,110,32,42,32,84,104,101,121,32,117,115,117,97,108,108,121,32,97,112,112,101,97,114,32,102,111,114,32,100,97,116,101,115,32,116,104,97,116,32,100,101,110,111,116,101,32,116,105,109,101,32,98,101,102,111,114,101,32,116,104,101,32,116,105,109,101,122,111,110,101,115,32,119,101,114,101,32,105,110,116,114,111,100,117,99,101,100,92,110,32,42,32,40,101,46,103,46,32,102,111,114,32,39,69,117,114,111,112,101,47,80,114,97,103,117,101,39,32,116,105,109,101,122,111,110,101,32,116,104,101,32,111,102,102,115,101,116,32,105,115,32,71,77,84,43,48,48,58,53,55,58,52,52,32,98,101,102,111,114,101,32,49,32,79,99,116,111,98,101,114,32,49,56,57,49,92,110,32,42,32,97,110,100,32,71,77,84,43,48,49,58,48,48,58,48,48,32,97,102,116,101,114,32,116,104,97,116,32,100,97,116,101,41,92,110,32,42,92,110,32,42,32,68,97,116,101,35,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,32,114,101,116,117,114,110,115,32,116,104,101,32,111,102,102,115,101,116,32,105,110,32,109,105,110,117,116,101,115,32,97,110,100,32,119,111,117,108,100,32,114,101,116,117,114,110,32,53,55,32,102,111,114,32,116,104,101,32,101,120,97,109,112,108,101,32,97,98,111,118,101,44,92,110,32,42,32,119,104,105,99,104,32,119,111,117,108,100,32,108,101,97,100,32,116,111,32,105,110,99,111,114,114,101,99,116,32,99,97,108,99,117,108,97,116,105,111,110,115,46,92,110,32,42,92,110,32,42,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,115,32,116,104,101,32,116,105,109,101,122,111,110,101,32,111,102,102,115,101,116,32,105,110,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,104,97,116,32,116,97,107,101,115,32,115,101,99,111,110,100,115,32,105,110,32,97,99,99,111,117,110,116,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,73,110,77,105,108,108,105,115,101,99,111,110,100,115,40,100,97,116,101,41,32,123,92,110,32,32,118,97,114,32,117,116,99,68,97,116,101,32,61,32,110,101,119,32,68,97,116,101,40,68,97,116,101,46,85,84,67,40,100,97,116,101,46,103,101,116,70,117,108,108,89,101,97,114,40,41,44,32,100,97,116,101,46,103,101,116,77,111,110,116,104,40,41,44,32,100,97,116,101,46,103,101,116,68,97,116,101,40,41,44,32,100,97,116,101,46,103,101,116,72,111,117,114,115,40,41,44,32,100,97,116,101,46,103,101,116,77,105,110,117,116,101,115,40,41,44,32,100,97,116,101,46,103,101,116,83,101,99,111,110,100,115,40,41,44,32,100,97,116,101,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,41,41,59,92,110,32,32,117,116,99,68,97,116,101,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,100,97,116,101,46,103,101,116,70,117,108,108,89,101,97,114,40,41,41,59,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,84,105,109,101,40,41,32,45,32,117,116,99,68,97,116,101,46,103,101,116,84,105,109,101,40,41,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,73,110,77,105,108,108,105,115,101,99,111,110,100,115,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,68,97,121,79,102,89,101,97,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,68,97,121,79,102,89,101,97,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,85,84,67,68,97,121,79,102,89,101,97,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,77,73,76,76,73,83,69,67,79,78,68,83,95,73,78,95,68,65,89,32,61,32,56,54,52,48,48,48,48,48,59,32,47,47,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,97,32,112,97,114,116,32,111,102,32,112,117,98,108,105,99,32,65,80,73,32,119,104,101,110,32,85,84,67,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,105,109,112,108,101,109,101,110,116,101,100,46,92,110,47,47,32,83,101,101,32,105,115,115,117,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,97,116,101,45,102,110,115,47,100,97,116,101,45,102,110,115,47,105,115,115,117,101,115,47,51,55,54,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,85,84,67,68,97,121,79,102,89,101,97,114,40,100,105,114,116,121,68,97,116,101,41,32,123,92,110,32,32,40,48,44,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,49,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,118,97,114,32,100,97,116,101,32,61,32,40,48,44,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,105,114,116,121,68,97,116,101,41,59,92,110,32,32,118,97,114,32,116,105,109,101,115,116,97,109,112,32,61,32,100,97,116,101,46,103,101,116,84,105,109,101,40,41,59,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,77,111,110,116,104,40,48,44,32,49,41,59,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,32,32,118,97,114,32,115,116,97,114,116,79,102,89,101,97,114,84,105,109,101,115,116,97,109,112,32,61,32,100,97,116,101,46,103,101,116,84,105,109,101,40,41,59,92,110,32,32,118,97,114,32,100,105,102,102,101,114,101,110,99,101,32,61,32,116,105,109,101,115,116,97,109,112,32,45,32,115,116,97,114,116,79,102,89,101,97,114,84,105,109,101,115,116,97,109,112,59,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,102,108,111,111,114,40,100,105,102,102,101,114,101,110,99,101,32,47,32,77,73,76,76,73,83,69,67,79,78,68,83,95,73,78,95,68,65,89,41,32,43,32,49,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,68,97,121,79,102,89,101,97,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,73,83,79,87,101,101,107,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,73,83,79,87,101,101,107,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,85,84,67,73,83,79,87,101,101,107,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,89,101,97,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,77,73,76,76,73,83,69,67,79,78,68,83,95,73,78,95,87,69,69,75,32,61,32,54,48,52,56,48,48,48,48,48,59,32,47,47,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,97,32,112,97,114,116,32,111,102,32,112,117,98,108,105,99,32,65,80,73,32,119,104,101,110,32,85,84,67,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,105,109,112,108,101,109,101,110,116,101,100,46,92,110,47,47,32,83,101,101,32,105,115,115,117,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,97,116,101,45,102,110,115,47,100,97,116,101,45,102,110,115,47,105,115,115,117,101,115,47,51,55,54,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,85,84,67,73,83,79,87,101,101,107,40,100,105,114,116,121,68,97,116,101,41,32,123,92,110,32,32,40,48,44,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,49,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,118,97,114,32,100,97,116,101,32,61,32,40,48,44,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,105,114,116,121,68,97,116,101,41,59,92,110,32,32,118,97,114,32,100,105,102,102,32,61,32,40,48,44,95,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,97,116,101,41,46,103,101,116,84,105,109,101,40,41,32,45,32,40,48,44,95,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,89,101,97,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,97,116,101,41,46,103,101,116,84,105,109,101,40,41,59,32,47,47,32,82,111,117,110,100,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,100,97,121,115,32,116,111,32,116,104,101,32,110,101,97,114,101,115,116,32,105,110,116,101,103,101,114,92,110,32,32,47,47,32,98,101,99,97,117,115,101,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,105,110,32,97,32,119,101,101,107,32,105,115,32,110,111,116,32,99,111,110,115,116,97,110,116,92,110,32,32,47,47,32,40,101,46,103,46,32,105,116,39,115,32,100,105,102,102,101,114,101,110,116,32,105,110,32,116,104,101,32,119,101,101,107,32,111,102,32,116,104,101,32,100,97,121,108,105,103,104,116,32,115,97,118,105,110,103,32,116,105,109,101,32,99,108,111,99,107,32,115,104,105,102,116,41,92,110,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,100,105,102,102,32,47,32,77,73,76,76,73,83,69,67,79,78,68,83,95,73,78,95,87,69,69,75,41,32,43,32,49,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,73,83,79,87,101,101,107,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,73,83,79,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,73,83,79,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,85,84,67,73,83,79,87,101,101,107,89,101,97,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,32,47,47,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,97,32,112,97,114,116,32,111,102,32,112,117,98,108,105,99,32,65,80,73,32,119,104,101,110,32,85,84,67,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,105,109,112,108,101,109,101,110,116,101,100,46,92,110,47,47,32,83,101,101,32,105,115,115,117,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,97,116,101,45,102,110,115,47,100,97,116,101,45,102,110,115,47,105,115,115,117,101,115,47,51,55,54,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,85,84,67,73,83,79,87,101,101,107,89,101,97,114,40,100,105,114,116,121,68,97,116,101,41,32,123,92,110,32,32,40,48,44,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,49,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,118,97,114,32,100,97,116,101,32,61,32,40,48,44,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,105,114,116,121,68,97,116,101,41,59,92,110,32,32,118,97,114,32,121,101,97,114,32,61,32,100,97,116,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,59,92,110,32,32,118,97,114,32,102,111,117,114,116,104,79,102,74,97,110,117,97,114,121,79,102,78,101,120,116,89,101,97,114,32,61,32,110,101,119,32,68,97,116,101,40,48,41,59,92,110,32,32,102,111,117,114,116,104,79,102,74,97,110,117,97,114,121,79,102,78,101,120,116,89,101,97,114,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,121,101,97,114,32,43,32,49,44,32,48,44,32,52,41,59,92,110,32,32,102,111,117,114,116,104,79,102,74,97,110,117,97,114,121,79,102,78,101,120,116,89,101,97,114,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,32,32,118,97,114,32,115,116,97,114,116,79,102,78,101,120,116,89,101,97,114,32,61,32,40,48,44,95,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,111,117,114,116,104,79,102,74,97,110,117,97,114,121,79,102,78,101,120,116,89,101,97,114,41,59,92,110,32,32,118,97,114,32,102,111,117,114,116,104,79,102,74,97,110,117,97,114,121,79,102,84,104,105,115,89,101,97,114,32,61,32,110,101,119,32,68,97,116,101,40,48,41,59,92,110,32,32,102,111,117,114,116,104,79,102,74,97,110,117,97,114,121,79,102,84,104,105,115,89,101,97,114,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,121,101,97,114,44,32,48,44,32,52,41,59,92,110,32,32,102,111,117,114,116,104,79,102,74,97,110,117,97,114,121,79,102,84,104,105,115,89,101,97,114,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,32,32,118,97,114,32,115,116,97,114,116,79,102,84,104,105,115,89,101,97,114,32,61,32,40,48,44,95,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,111,117,114,116,104,79,102,74,97,110,117,97,114,121,79,102,84,104,105,115,89,101,97,114,41,59,92,110,92,110,32,32,105,102,32,40,100,97,116,101,46,103,101,116,84,105,109,101,40,41,32,62,61,32,115,116,97,114,116,79,102,78,101,120,116,89,101,97,114,46,103,101,116,84,105,109,101,40,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,121,101,97,114,32,43,32,49,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,100,97,116,101,46,103,101,116,84,105,109,101,40,41,32,62,61,32,115,116,97,114,116,79,102,84,104,105,115,89,101,97,114,46,103,101,116,84,105,109,101,40,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,121,101,97,114,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,121,101,97,114,32,45,32,49,59,92,110,32,32,125,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,73,83,79,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,87,101,101,107,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,87,101,101,107,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,85,84,67,87,101,101,107,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,97,114,116,79,102,85,84,67,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,115,116,97,114,116,79,102,85,84,67,87,101,101,107,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,87,101,101,107,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,97,114,116,79,102,85,84,67,87,101,101,107,89,101,97,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,115,116,97,114,116,79,102,85,84,67,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,118,97,114,32,77,73,76,76,73,83,69,67,79,78,68,83,95,73,78,95,87,69,69,75,32,61,32,54,48,52,56,48,48,48,48,48,59,32,47,47,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,97,32,112,97,114,116,32,111,102,32,112,117,98,108,105,99,32,65,80,73,32,119,104,101,110,32,85,84,67,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,105,109,112,108,101,109,101,110,116,101,100,46,92,110,47,47,32,83,101,101,32,105,115,115,117,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,97,116,101,45,102,110,115,47,100,97,116,101,45,102,110,115,47,105,115,115,117,101,115,47,51,55,54,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,85,84,67,87,101,101,107,40,100,105,114,116,121,68,97,116,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,40,48,44,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,49,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,118,97,114,32,100,97,116,101,32,61,32,40,48,44,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,105,114,116,121,68,97,116,101,41,59,92,110,32,32,118,97,114,32,100,105,102,102,32,61,32,40,48,44,95,115,116,97,114,116,79,102,85,84,67,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,97,116,101,44,32,111,112,116,105,111,110,115,41,46,103,101,116,84,105,109,101,40,41,32,45,32,40,48,44,95,115,116,97,114,116,79,102,85,84,67,87,101,101,107,89,101,97,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,97,116,101,44,32,111,112,116,105,111,110,115,41,46,103,101,116,84,105,109,101,40,41,59,32,47,47,32,82,111,117,110,100,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,100,97,121,115,32,116,111,32,116,104,101,32,110,101,97,114,101,115,116,32,105,110,116,101,103,101,114,92,110,32,32,47,47,32,98,101,99,97,117,115,101,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,105,110,32,97,32,119,101,101,107,32,105,115,32,110,111,116,32,99,111,110,115,116,97,110,116,92,110,32,32,47,47,32,40,101,46,103,46,32,105,116,39,115,32,100,105,102,102,101,114,101,110,116,32,105,110,32,116,104,101,32,119,101,101,107,32,111,102,32,116,104,101,32,100,97,121,108,105,103,104,116,32,115,97,118,105,110,103,32,116,105,109,101,32,99,108,111,99,107,32,115,104,105,102,116,41,92,110,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,100,105,102,102,32,47,32,77,73,76,76,73,83,69,67,79,78,68,83,95,73,78,95,87,69,69,75,41,32,43,32,49,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,87,101,101,107,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,85,84,67,87,101,101,107,89,101,97,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,111,73,110,116,101,103,101,114,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,116,111,73,110,116,101,103,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,97,114,116,79,102,85,84,67,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,115,116,97,114,116,79,102,85,84,67,87,101,101,107,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,87,101,101,107,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,97,32,112,97,114,116,32,111,102,32,112,117,98,108,105,99,32,65,80,73,32,119,104,101,110,32,85,84,67,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,105,109,112,108,101,109,101,110,116,101,100,46,92,110,47,47,32,83,101,101,32,105,115,115,117,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,97,116,101,45,102,110,115,47,100,97,116,101,45,102,110,115,47,105,115,115,117,101,115,47,51,55,54,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,85,84,67,87,101,101,107,89,101,97,114,40,100,105,114,116,121,68,97,116,101,44,32,100,105,114,116,121,79,112,116,105,111,110,115,41,32,123,92,110,32,32,40,48,44,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,49,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,118,97,114,32,100,97,116,101,32,61,32,40,48,44,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,105,114,116,121,68,97,116,101,44,32,100,105,114,116,121,79,112,116,105,111,110,115,41,59,92,110,32,32,118,97,114,32,121,101,97,114,32,61,32,100,97,116,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,59,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,100,105,114,116,121,79,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,111,112,116,105,111,110,115,46,108,111,99,97,108,101,59,92,110,32,32,118,97,114,32,108,111,99,97,108,101,70,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,61,32,108,111,99,97,108,101,32,38,38,32,108,111,99,97,108,101,46,111,112,116,105,111,110,115,32,38,38,32,108,111,99,97,108,101,46,111,112,116,105,111,110,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,59,92,110,32,32,118,97,114,32,100,101,102,97,117,108,116,70,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,61,32,108,111,99,97,108,101,70,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,40,48,44,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,108,111,99,97,108,101,70,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,41,59,92,110,32,32,118,97,114,32,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,61,32,111,112,116,105,111,110,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,61,61,32,110,117,108,108,32,63,32,100,101,102,97,117,108,116,70,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,58,32,40,48,44,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,112,116,105,111,110,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,41,59,32,47,47,32,84,101,115,116,32,105,102,32,119,101,101,107,83,116,97,114,116,115,79,110,32,105,115,32,98,101,116,119,101,101,110,32,49,32,97,110,100,32,55,32,95,97,110,100,95,32,105,115,32,110,111,116,32,78,97,78,92,110,92,110,32,32,105,102,32,40,33,40,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,62,61,32,49,32,38,38,32,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,60,61,32,55,41,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,39,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,109,117,115,116,32,98,101,32,98,101,116,119,101,101,110,32,49,32,97,110,100,32,55,32,105,110,99,108,117,115,105,118,101,108,121,39,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,102,105,114,115,116,87,101,101,107,79,102,78,101,120,116,89,101,97,114,32,61,32,110,101,119,32,68,97,116,101,40,48,41,59,92,110,32,32,102,105,114,115,116,87,101,101,107,79,102,78,101,120,116,89,101,97,114,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,121,101,97,114,32,43,32,49,44,32,48,44,32,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,41,59,92,110,32,32,102,105,114,115,116,87,101,101,107,79,102,78,101,120,116,89,101,97,114,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,32,32,118,97,114,32,115,116,97,114,116,79,102,78,101,120,116,89,101,97,114,32,61,32,40,48,44,95,115,116,97,114,116,79,102,85,84,67,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,105,114,115,116,87,101,101,107,79,102,78,101,120,116,89,101,97,114,44,32,100,105,114,116,121,79,112,116,105,111,110,115,41,59,92,110,32,32,118,97,114,32,102,105,114,115,116,87,101,101,107,79,102,84,104,105,115,89,101,97,114,32,61,32,110,101,119,32,68,97,116,101,40,48,41,59,92,110,32,32,102,105,114,115,116,87,101,101,107,79,102,84,104,105,115,89,101,97,114,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,121,101,97,114,44,32,48,44,32,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,41,59,92,110,32,32,102,105,114,115,116,87,101,101,107,79,102,84,104,105,115,89,101,97,114,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,32,32,118,97,114,32,115,116,97,114,116,79,102,84,104,105,115,89,101,97,114,32,61,32,40,48,44,95,115,116,97,114,116,79,102,85,84,67,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,105,114,115,116,87,101,101,107,79,102,84,104,105,115,89,101,97,114,44,32,100,105,114,116,121,79,112,116,105,111,110,115,41,59,92,110,92,110,32,32,105,102,32,40,100,97,116,101,46,103,101,116,84,105,109,101,40,41,32,62,61,32,115,116,97,114,116,79,102,78,101,120,116,89,101,97,114,46,103,101,116,84,105,109,101,40,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,121,101,97,114,32,43,32,49,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,100,97,116,101,46,103,101,116,84,105,109,101,40,41,32,62,61,32,115,116,97,114,116,79,102,84,104,105,115,89,101,97,114,46,103,101,116,84,105,109,101,40,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,121,101,97,114,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,121,101,97,114,32,45,32,49,59,92,110,32,32,125,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,112,114,111,116,101,99,116,101,100,84,111,107,101,110,115,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,112,114,111,116,101,99,116,101,100,84,111,107,101,110,115,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,80,114,111,116,101,99,116,101,100,68,97,121,79,102,89,101,97,114,84,111,107,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,80,114,111,116,101,99,116,101,100,68,97,121,79,102,89,101,97,114,84,111,107,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,115,80,114,111,116,101,99,116,101,100,87,101,101,107,89,101,97,114,84,111,107,101,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,80,114,111,116,101,99,116,101,100,87,101,101,107,89,101,97,114,84,111,107,101,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,116,104,114,111,119,80,114,111,116,101,99,116,101,100,69,114,114,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,104,114,111,119,80,114,111,116,101,99,116,101,100,69,114,114,111,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,112,114,111,116,101,99,116,101,100,68,97,121,79,102,89,101,97,114,84,111,107,101,110,115,32,61,32,91,39,68,39,44,32,39,68,68,39,93,59,92,110,118,97,114,32,112,114,111,116,101,99,116,101,100,87,101,101,107,89,101,97,114,84,111,107,101,110,115,32,61,32,91,39,89,89,39,44,32,39,89,89,89,89,39,93,59,92,110,102,117,110,99,116,105,111,110,32,105,115,80,114,111,116,101,99,116,101,100,68,97,121,79,102,89,101,97,114,84,111,107,101,110,40,116,111,107,101,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,114,111,116,101,99,116,101,100,68,97,121,79,102,89,101,97,114,84,111,107,101,110,115,46,105,110,100,101,120,79,102,40,116,111,107,101,110,41,32,33,61,61,32,45,49,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,105,115,80,114,111,116,101,99,116,101,100,87,101,101,107,89,101,97,114,84,111,107,101,110,40,116,111,107,101,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,114,111,116,101,99,116,101,100,87,101,101,107,89,101,97,114,84,111,107,101,110,115,46,105,110,100,101,120,79,102,40,116,111,107,101,110,41,32,33,61,61,32,45,49,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,116,104,114,111,119,80,114,111,116,101,99,116,101,100,69,114,114,111,114,40,116,111,107,101,110,44,32,102,111,114,109,97,116,44,32,105,110,112,117,116,41,32,123,92,110,32,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,89,89,89,89,39,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,92,34,85,115,101,32,96,121,121,121,121,96,32,105,110,115,116,101,97,100,32,111,102,32,96,89,89,89,89,96,32,40,105,110,32,96,92,34,46,99,111,110,99,97,116,40,102,111,114,109,97,116,44,32,92,34,96,41,32,102,111,114,32,102,111,114,109,97,116,116,105,110,103,32,121,101,97,114,115,32,116,111,32,116,104,101,32,105,110,112,117,116,32,96,92,34,41,46,99,111,110,99,97,116,40,105,110,112,117,116,44,32,92,34,96,59,32,115,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,92,34,41,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,89,89,39,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,92,34,85,115,101,32,96,121,121,96,32,105,110,115,116,101,97,100,32,111,102,32,96,89,89,96,32,40,105,110,32,96,92,34,46,99,111,110,99,97,116,40,102,111,114,109,97,116,44,32,92,34,96,41,32,102,111,114,32,102,111,114,109,97,116,116,105,110,103,32,121,101,97,114,115,32,116,111,32,116,104,101,32,105,110,112,117,116,32,96,92,34,41,46,99,111,110,99,97,116,40,105,110,112,117,116,44,32,92,34,96,59,32,115,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,92,34,41,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,68,39,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,92,34,85,115,101,32,96,100,96,32,105,110,115,116,101,97,100,32,111,102,32,96,68,96,32,40,105,110,32,96,92,34,46,99,111,110,99,97,116,40,102,111,114,109,97,116,44,32,92,34,96,41,32,102,111,114,32,102,111,114,109,97,116,116,105,110,103,32,100,97,121,115,32,111,102,32,116,104,101,32,109,111,110,116,104,32,116,111,32,116,104,101,32,105,110,112,117,116,32,96,92,34,41,46,99,111,110,99,97,116,40,105,110,112,117,116,44,32,92,34,96,59,32,115,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,92,34,41,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,116,111,107,101,110,32,61,61,61,32,39,68,68,39,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,92,34,85,115,101,32,96,100,100,96,32,105,110,115,116,101,97,100,32,111,102,32,96,68,68,96,32,40,105,110,32,96,92,34,46,99,111,110,99,97,116,40,102,111,114,109,97,116,44,32,92,34,96,41,32,102,111,114,32,102,111,114,109,97,116,116,105,110,103,32,100,97,121,115,32,111,102,32,116,104,101,32,109,111,110,116,104,32,116,111,32,116,104,101,32,105,110,112,117,116,32,96,92,34,41,46,99,111,110,99,97,116,40,105,110,112,117,116,44,32,92,34,96,59,32,115,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,92,34,41,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,112,114,111,116,101,99,116,101,100,84,111,107,101,110,115,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,113,117,105,114,101,100,65,114,103,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,114,101,113,117,105,114,101,100,65,114,103,115,40,114,101,113,117,105,114,101,100,44,32,97,114,103,115,41,32,123,92,110,32,32,105,102,32,40,97,114,103,115,46,108,101,110,103,116,104,32,60,32,114,101,113,117,105,114,101,100,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,114,101,113,117,105,114,101,100,32,43,32,39,32,97,114,103,117,109,101,110,116,39,32,43,32,40,114,101,113,117,105,114,101,100,32,62,32,49,32,63,32,39,115,39,32,58,32,39,39,41,32,43,32,39,32,114,101,113,117,105,114,101,100,44,32,98,117,116,32,111,110,108,121,32,39,32,43,32,97,114,103,115,46,108,101,110,103,116,104,32,43,32,39,32,112,114,101,115,101,110,116,39,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,32,47,47,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,97,32,112,97,114,116,32,111,102,32,112,117,98,108,105,99,32,65,80,73,32,119,104,101,110,32,85,84,67,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,105,109,112,108,101,109,101,110,116,101,100,46,92,110,47,47,32,83,101,101,32,105,115,115,117,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,97,116,101,45,102,110,115,47,100,97,116,101,45,102,110,115,47,105,115,115,117,101,115,47,51,55,54,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,40,100,105,114,116,121,68,97,116,101,41,32,123,92,110,32,32,40,48,44,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,49,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,118,97,114,32,119,101,101,107,83,116,97,114,116,115,79,110,32,61,32,49,59,92,110,32,32,118,97,114,32,100,97,116,101,32,61,32,40,48,44,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,105,114,116,121,68,97,116,101,41,59,92,110,32,32,118,97,114,32,100,97,121,32,61,32,100,97,116,101,46,103,101,116,85,84,67,68,97,121,40,41,59,92,110,32,32,118,97,114,32,100,105,102,102,32,61,32,40,100,97,121,32,60,32,119,101,101,107,83,116,97,114,116,115,79,110,32,63,32,55,32,58,32,48,41,32,43,32,100,97,121,32,45,32,119,101,101,107,83,116,97,114,116,115,79,110,59,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,68,97,116,101,40,100,97,116,101,46,103,101,116,85,84,67,68,97,116,101,40,41,32,45,32,100,105,102,102,41,59,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,89,101,97,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,103,101,116,85,84,67,73,83,79,87,101,101,107,89,101,97,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,103,101,116,85,84,67,73,83,79,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,73,83,79,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,32,47,47,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,97,32,112,97,114,116,32,111,102,32,112,117,98,108,105,99,32,65,80,73,32,119,104,101,110,32,85,84,67,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,105,109,112,108,101,109,101,110,116,101,100,46,92,110,47,47,32,83,101,101,32,105,115,115,117,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,97,116,101,45,102,110,115,47,100,97,116,101,45,102,110,115,47,105,115,115,117,101,115,47,51,55,54,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,89,101,97,114,40,100,105,114,116,121,68,97,116,101,41,32,123,92,110,32,32,40,48,44,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,49,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,118,97,114,32,121,101,97,114,32,61,32,40,48,44,95,103,101,116,85,84,67,73,83,79,87,101,101,107,89,101,97,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,105,114,116,121,68,97,116,101,41,59,92,110,32,32,118,97,114,32,102,111,117,114,116,104,79,102,74,97,110,117,97,114,121,32,61,32,110,101,119,32,68,97,116,101,40,48,41,59,92,110,32,32,102,111,117,114,116,104,79,102,74,97,110,117,97,114,121,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,121,101,97,114,44,32,48,44,32,52,41,59,92,110,32,32,102,111,117,114,116,104,79,102,74,97,110,117,97,114,121,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,32,32,118,97,114,32,100,97,116,101,32,61,32,40,48,44,95,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,111,117,114,116,104,79,102,74,97,110,117,97,114,121,41,59,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,73,83,79,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,87,101,101,107,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,87,101,101,107,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,114,116,79,102,85,84,67,87,101,101,107,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,111,73,110,116,101,103,101,114,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,116,111,73,110,116,101,103,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,32,47,47,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,97,32,112,97,114,116,32,111,102,32,112,117,98,108,105,99,32,65,80,73,32,119,104,101,110,32,85,84,67,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,105,109,112,108,101,109,101,110,116,101,100,46,92,110,47,47,32,83,101,101,32,105,115,115,117,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,97,116,101,45,102,110,115,47,100,97,116,101,45,102,110,115,47,105,115,115,117,101,115,47,51,55,54,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,97,114,116,79,102,85,84,67,87,101,101,107,40,100,105,114,116,121,68,97,116,101,44,32,100,105,114,116,121,79,112,116,105,111,110,115,41,32,123,92,110,32,32,40,48,44,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,49,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,100,105,114,116,121,79,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,111,112,116,105,111,110,115,46,108,111,99,97,108,101,59,92,110,32,32,118,97,114,32,108,111,99,97,108,101,87,101,101,107,83,116,97,114,116,115,79,110,32,61,32,108,111,99,97,108,101,32,38,38,32,108,111,99,97,108,101,46,111,112,116,105,111,110,115,32,38,38,32,108,111,99,97,108,101,46,111,112,116,105,111,110,115,46,119,101,101,107,83,116,97,114,116,115,79,110,59,92,110,32,32,118,97,114,32,100,101,102,97,117,108,116,87,101,101,107,83,116,97,114,116,115,79,110,32,61,32,108,111,99,97,108,101,87,101,101,107,83,116,97,114,116,115,79,110,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,40,48,44,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,108,111,99,97,108,101,87,101,101,107,83,116,97,114,116,115,79,110,41,59,92,110,32,32,118,97,114,32,119,101,101,107,83,116,97,114,116,115,79,110,32,61,32,111,112,116,105,111,110,115,46,119,101,101,107,83,116,97,114,116,115,79,110,32,61,61,32,110,117,108,108,32,63,32,100,101,102,97,117,108,116,87,101,101,107,83,116,97,114,116,115,79,110,32,58,32,40,48,44,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,112,116,105,111,110,115,46,119,101,101,107,83,116,97,114,116,115,79,110,41,59,32,47,47,32,84,101,115,116,32,105,102,32,119,101,101,107,83,116,97,114,116,115,79,110,32,105,115,32,98,101,116,119,101,101,110,32,48,32,97,110,100,32,54,32,95,97,110,100,95,32,105,115,32,110,111,116,32,78,97,78,92,110,92,110,32,32,105,102,32,40,33,40,119,101,101,107,83,116,97,114,116,115,79,110,32,62,61,32,48,32,38,38,32,119,101,101,107,83,116,97,114,116,115,79,110,32,60,61,32,54,41,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,39,119,101,101,107,83,116,97,114,116,115,79,110,32,109,117,115,116,32,98,101,32,98,101,116,119,101,101,110,32,48,32,97,110,100,32,54,32,105,110,99,108,117,115,105,118,101,108,121,39,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,100,97,116,101,32,61,32,40,48,44,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,105,114,116,121,68,97,116,101,41,59,92,110,32,32,118,97,114,32,100,97,121,32,61,32,100,97,116,101,46,103,101,116,85,84,67,68,97,121,40,41,59,92,110,32,32,118,97,114,32,100,105,102,102,32,61,32,40,100,97,121,32,60,32,119,101,101,107,83,116,97,114,116,115,79,110,32,63,32,55,32,58,32,48,41,32,43,32,100,97,121,32,45,32,119,101,101,107,83,116,97,114,116,115,79,110,59,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,68,97,116,101,40,100,97,116,101,46,103,101,116,85,84,67,68,97,116,101,40,41,32,45,32,100,105,102,102,41,59,92,110,32,32,100,97,116,101,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,87,101,101,107,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,114,116,79,102,85,84,67,87,101,101,107,89,101,97,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,111,73,110,116,101,103,101,114,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,116,111,73,110,116,101,103,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,103,101,116,85,84,67,87,101,101,107,89,101,97,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,103,101,116,85,84,67,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,85,84,67,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,97,114,116,79,102,85,84,67,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,115,116,97,114,116,79,102,85,84,67,87,101,101,107,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,87,101,101,107,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,32,47,47,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,97,32,112,97,114,116,32,111,102,32,112,117,98,108,105,99,32,65,80,73,32,119,104,101,110,32,85,84,67,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,98,101,32,105,109,112,108,101,109,101,110,116,101,100,46,92,110,47,47,32,83,101,101,32,105,115,115,117,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,97,116,101,45,102,110,115,47,100,97,116,101,45,102,110,115,47,105,115,115,117,101,115,47,51,55,54,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,97,114,116,79,102,85,84,67,87,101,101,107,89,101,97,114,40,100,105,114,116,121,68,97,116,101,44,32,100,105,114,116,121,79,112,116,105,111,110,115,41,32,123,92,110,32,32,40,48,44,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,49,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,100,105,114,116,121,79,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,111,112,116,105,111,110,115,46,108,111,99,97,108,101,59,92,110,32,32,118,97,114,32,108,111,99,97,108,101,70,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,61,32,108,111,99,97,108,101,32,38,38,32,108,111,99,97,108,101,46,111,112,116,105,111,110,115,32,38,38,32,108,111,99,97,108,101,46,111,112,116,105,111,110,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,59,92,110,32,32,118,97,114,32,100,101,102,97,117,108,116,70,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,61,32,108,111,99,97,108,101,70,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,40,48,44,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,108,111,99,97,108,101,70,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,41,59,92,110,32,32,118,97,114,32,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,61,32,111,112,116,105,111,110,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,61,61,32,110,117,108,108,32,63,32,100,101,102,97,117,108,116,70,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,58,32,40,48,44,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,112,116,105,111,110,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,41,59,92,110,32,32,118,97,114,32,121,101,97,114,32,61,32,40,48,44,95,103,101,116,85,84,67,87,101,101,107,89,101,97,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,105,114,116,121,68,97,116,101,44,32,100,105,114,116,121,79,112,116,105,111,110,115,41,59,92,110,32,32,118,97,114,32,102,105,114,115,116,87,101,101,107,32,61,32,110,101,119,32,68,97,116,101,40,48,41,59,92,110,32,32,102,105,114,115,116,87,101,101,107,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,121,101,97,114,44,32,48,44,32,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,41,59,92,110,32,32,102,105,114,115,116,87,101,101,107,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,32,48,44,32,48,44,32,48,41,59,92,110,32,32,118,97,114,32,100,97,116,101,32,61,32,40,48,44,95,115,116,97,114,116,79,102,85,84,67,87,101,101,107,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,102,105,114,115,116,87,101,101,107,44,32,100,105,114,116,121,79,112,116,105,111,110,115,41,59,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,115,116,97,114,116,79,102,85,84,67,87,101,101,107,89,101,97,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,116,111,73,110,116,101,103,101,114,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,116,111,73,110,116,101,103,101,114,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,111,73,110,116,101,103,101,114,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,116,111,73,110,116,101,103,101,114,40,100,105,114,116,121,78,117,109,98,101,114,41,32,123,92,110,32,32,105,102,32,40,100,105,114,116,121,78,117,109,98,101,114,32,61,61,61,32,110,117,108,108,32,124,124,32,100,105,114,116,121,78,117,109,98,101,114,32,61,61,61,32,116,114,117,101,32,124,124,32,100,105,114,116,121,78,117,109,98,101,114,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,78,97,78,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,110,117,109,98,101,114,32,61,32,78,117,109,98,101,114,40,100,105,114,116,121,78,117,109,98,101,114,41,59,92,110,92,110,32,32,105,102,32,40,105,115,78,97,78,40,110,117,109,98,101,114,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,117,109,98,101,114,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,117,109,98,101,114,32,60,32,48,32,63,32,77,97,116,104,46,99,101,105,108,40,110,117,109,98,101,114,41,32,58,32,77,97,116,104,46,102,108,111,111,114,40,110,117,109,98,101,114,41,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,116,111,73,110,116,101,103,101,114,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,97,100,100,77,105,108,108,105,115,101,99,111,110,100,115,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,97,100,100,77,105,108,108,105,115,101,99,111,110,100,115,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,100,100,77,105,108,108,105,115,101,99,111,110,100,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,95,108,105,98,47,116,111,73,110,116,101,103,101,114,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,116,111,73,110,116,101,103,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,42,92,110,32,42,32,64,110,97,109,101,32,97,100,100,77,105,108,108,105,115,101,99,111,110,100,115,92,110,32,42,32,64,99,97,116,101,103,111,114,121,32,77,105,108,108,105,115,101,99,111,110,100,32,72,101,108,112,101,114,115,92,110,32,42,32,64,115,117,109,109,97,114,121,32,65,100,100,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,111,32,116,104,101,32,103,105,118,101,110,32,100,97,116,101,46,92,110,32,42,92,110,32,42,32,64,100,101,115,99,114,105,112,116,105,111,110,92,110,32,42,32,65,100,100,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,111,32,116,104,101,32,103,105,118,101,110,32,100,97,116,101,46,92,110,32,42,92,110,32,42,32,35,35,35,32,118,50,46,48,46,48,32,98,114,101,97,107,105,110,103,32,99,104,97,110,103,101,115,58,92,110,32,42,92,110,32,42,32,45,32,91,67,104,97,110,103,101,115,32,116,104,97,116,32,97,114,101,32,99,111,109,109,111,110,32,102,111,114,32,116,104,101,32,119,104,111,108,101,32,108,105,98,114,97,114,121,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,97,116,101,45,102,110,115,47,100,97,116,101,45,102,110,115,47,98,108,111,98,47,109,97,115,116,101,114,47,100,111,99,115,47,117,112,103,114,97,100,101,71,117,105,100,101,46,109,100,35,67,111,109,109,111,110,45,67,104,97,110,103,101,115,41,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,68,97,116,101,124,78,117,109,98,101,114,125,32,100,97,116,101,32,45,32,116,104,101,32,100,97,116,101,32,116,111,32,98,101,32,99,104,97,110,103,101,100,92,110,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,97,109,111,117,110,116,32,45,32,116,104,101,32,97,109,111,117,110,116,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,111,32,98,101,32,97,100,100,101,100,46,32,80,111,115,105,116,105,118,101,32,100,101,99,105,109,97,108,115,32,119,105,108,108,32,98,101,32,114,111,117,110,100,101,100,32,117,115,105,110,103,32,96,77,97,116,104,46,102,108,111,111,114,96,44,32,100,101,99,105,109,97,108,115,32,108,101,115,115,32,116,104,97,110,32,122,101,114,111,32,119,105,108,108,32,98,101,32,114,111,117,110,100,101,100,32,117,115,105,110,103,32,96,77,97,116,104,46,99,101,105,108,96,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,68,97,116,101,125,32,116,104,101,32,110,101,119,32,100,97,116,101,32,119,105,116,104,32,116,104,101,32,109,105,108,108,105,115,101,99,111,110,100,115,32,97,100,100,101,100,92,110,32,42,32,64,116,104,114,111,119,115,32,123,84,121,112,101,69,114,114,111,114,125,32,50,32,97,114,103,117,109,101,110,116,115,32,114,101,113,117,105,114,101,100,92,110,32,42,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,32,47,47,32,65,100,100,32,55,53,48,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,111,32,49,48,32,74,117,108,121,32,50,48,49,52,32,49,50,58,52,53,58,51,48,46,48,48,48,58,92,110,32,42,32,99,111,110,115,116,32,114,101,115,117,108,116,32,61,32,97,100,100,77,105,108,108,105,115,101,99,111,110,100,115,40,110,101,119,32,68,97,116,101,40,50,48,49,52,44,32,54,44,32,49,48,44,32,49,50,44,32,52,53,44,32,51,48,44,32,48,41,44,32,55,53,48,41,92,110,32,42,32,47,47,61,62,32,84,104,117,32,74,117,108,32,49,48,32,50,48,49,52,32,49,50,58,52,53,58,51,48,46,55,53,48,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,97,100,100,77,105,108,108,105,115,101,99,111,110,100,115,40,100,105,114,116,121,68,97,116,101,44,32,100,105,114,116,121,65,109,111,117,110,116,41,32,123,92,110,32,32,40,48,44,95,108,105,98,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,50,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,118,97,114,32,116,105,109,101,115,116,97,109,112,32,61,32,40,48,44,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,105,114,116,121,68,97,116,101,41,46,103,101,116,84,105,109,101,40,41,59,92,110,32,32,118,97,114,32,97,109,111,117,110,116,32,61,32,40,48,44,95,108,105,98,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,105,114,116,121,65,109,111,117,110,116,41,59,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,116,105,109,101,115,116,97,109,112,32,43,32,97,109,111,117,110,116,41,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,97,100,100,77,105,108,108,105,115,101,99,111,110,100,115,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,102,111,114,109,97,116,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,102,111,114,109,97,116,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,97,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,115,86,97,108,105,100,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,105,115,86,97,108,105,100,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,105,115,86,97,108,105,100,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,111,99,97,108,101,95,101,110,95,85,83,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,108,111,99,97,108,101,47,101,110,45,85,83,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,117,98,77,105,108,108,105,115,101,99,111,110,100,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,115,117,98,77,105,108,108,105,115,101,99,111,110,100,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,115,117,98,77,105,108,108,105,115,101,99,111,110,100,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,102,111,114,109,97,116,95,102,111,114,109,97,116,116,101,114,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,95,108,105,98,47,102,111,114,109,97,116,47,102,111,114,109,97,116,116,101,114,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,102,111,114,109,97,116,47,102,111,114,109,97,116,116,101,114,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,102,111,114,109,97,116,95,108,111,110,103,70,111,114,109,97,116,116,101,114,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,95,108,105,98,47,102,111,114,109,97,116,47,108,111,110,103,70,111,114,109,97,116,116,101,114,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,102,111,114,109,97,116,47,108,111,110,103,70,111,114,109,97,116,116,101,114,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,73,110,77,105,108,108,105,115,101,99,111,110,100,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,95,108,105,98,47,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,73,110,77,105,108,108,105,115,101,99,111,110,100,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,73,110,77,105,108,108,105,115,101,99,111,110,100,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,112,114,111,116,101,99,116,101,100,84,111,107,101,110,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,95,108,105,98,47,112,114,111,116,101,99,116,101,100,84,111,107,101,110,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,112,114,111,116,101,99,116,101,100,84,111,107,101,110,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,95,108,105,98,47,116,111,73,110,116,101,103,101,114,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,116,111,73,110,116,101,103,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,84,104,105,115,32,82,101,103,69,120,112,32,99,111,110,115,105,115,116,115,32,111,102,32,116,104,114,101,101,32,112,97,114,116,115,32,115,101,112,97,114,97,116,101,100,32,98,121,32,96,124,96,58,92,110,47,47,32,45,32,91,121,89,81,113,77,76,119,73,100,68,101,99,105,104,72,75,107,109,115,93,111,32,109,97,116,99,104,101,115,32,97,110,121,32,97,118,97,105,108,97,98,108,101,32,111,114,100,105,110,97,108,32,110,117,109,98,101,114,32,116,111,107,101,110,92,110,47,47,32,32,32,40,111,110,101,32,111,102,32,116,104,101,32,99,101,114,116,97,105,110,32,108,101,116,116,101,114,115,32,102,111,108,108,111,119,101,100,32,98,121,32,96,111,96,41,92,110,47,47,32,45,32,40,92,92,119,41,92,92,49,42,32,109,97,116,99,104,101,115,32,97,110,121,32,115,101,113,117,101,110,99,101,115,32,111,102,32,116,104,101,32,115,97,109,101,32,108,101,116,116,101,114,92,110,47,47,32,45,32,39,39,32,109,97,116,99,104,101,115,32,116,119,111,32,113,117,111,116,101,32,99,104,97,114,97,99,116,101,114,115,32,105,110,32,97,32,114,111,119,92,110,47,47,32,45,32,39,40,39,39,124,91,94,39,93,41,43,40,39,124,36,41,32,109,97,116,99,104,101,115,32,97,110,121,116,104,105,110,103,32,115,117,114,114,111,117,110,100,101,100,32,98,121,32,116,119,111,32,113,117,111,116,101,32,99,104,97,114,97,99,116,101,114,115,32,40,39,41,44,92,110,47,47,32,32,32,101,120,99,101,112,116,32,97,32,115,105,110,103,108,101,32,113,117,111,116,101,32,115,121,109,98,111,108,44,32,119,104,105,99,104,32,101,110,100,115,32,116,104,101,32,115,101,113,117,101,110,99,101,46,92,110,47,47,32,32,32,84,119,111,32,113,117,111,116,101,32,99,104,97,114,97,99,116,101,114,115,32,100,111,32,110,111,116,32,101,110,100,32,116,104,101,32,115,101,113,117,101,110,99,101,46,92,110,47,47,32,32,32,73,102,32,116,104,101,114,101,32,105,115,32,110,111,32,109,97,116,99,104,105,110,103,32,115,105,110,103,108,101,32,113,117,111,116,101,92,110,47,47,32,32,32,116,104,101,110,32,116,104,101,32,115,101,113,117,101,110,99,101,32,119,105,108,108,32,99,111,110,116,105,110,117,101,32,117,110,116,105,108,32,116,104,101,32,101,110,100,32,111,102,32,116,104,101,32,115,116,114,105,110,103,46,92,110,47,47,32,45,32,46,32,109,97,116,99,104,101,115,32,97,110,121,32,115,105,110,103,108,101,32,99,104,97,114,97,99,116,101,114,32,117,110,109,97,116,99,104,101,100,32,98,121,32,112,114,101,118,105,111,117,115,32,112,97,114,116,115,32,111,102,32,116,104,101,32,82,101,103,69,120,112,115,92,110,92,110,118,97,114,32,102,111,114,109,97,116,116,105,110,103,84,111,107,101,110,115,82,101,103,69,120,112,32,61,32,47,91,121,89,81,113,77,76,119,73,100,68,101,99,105,104,72,75,107,109,115,93,111,124,40,92,92,119,41,92,92,49,42,124,39,39,124,39,40,39,39,124,91,94,39,93,41,43,40,39,124,36,41,124,46,47,103,59,32,47,47,32,84,104,105,115,32,82,101,103,69,120,112,32,99,97,116,99,104,101,115,32,115,121,109,98,111,108,115,32,101,115,99,97,112,101,100,32,98,121,32,113,117,111,116,101,115,44,32,97,110,100,32,97,108,115,111,92,110,47,47,32,115,101,113,117,101,110,99,101,115,32,111,102,32,115,121,109,98,111,108,115,32,80,44,32,112,44,32,97,110,100,32,116,104,101,32,99,111,109,98,105,110,97,116,105,111,110,115,32,108,105,107,101,32,96,80,80,80,80,80,80,80,112,112,112,112,112,96,92,110,92,110,118,97,114,32,108,111,110,103,70,111,114,109,97,116,116,105,110,103,84,111,107,101,110,115,82,101,103,69,120,112,32,61,32,47,80,43,112,43,124,80,43,124,112,43,124,39,39,124,39,40,39,39,124,91,94,39,93,41,43,40,39,124,36,41,124,46,47,103,59,92,110,118,97,114,32,101,115,99,97,112,101,100,83,116,114,105,110,103,82,101,103,69,120,112,32,61,32,47,94,39,40,91,94,93,42,63,41,39,63,36,47,59,92,110,118,97,114,32,100,111,117,98,108,101,81,117,111,116,101,82,101,103,69,120,112,32,61,32,47,39,39,47,103,59,92,110,118,97,114,32,117,110,101,115,99,97,112,101,100,76,97,116,105,110,67,104,97,114,97,99,116,101,114,82,101,103,69,120,112,32,61,32,47,91,97,45,122,65,45,90,93,47,59,92,110,47,42,42,92,110,32,42,32,64,110,97,109,101,32,102,111,114,109,97,116,92,110,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,109,109,111,110,32,72,101,108,112,101,114,115,92,110,32,42,32,64,115,117,109,109,97,114,121,32,70,111,114,109,97,116,32,116,104,101,32,100,97,116,101,46,92,110,32,42,92,110,32,42,32,64,100,101,115,99,114,105,112,116,105,111,110,92,110,32,42,32,82,101,116,117,114,110,32,116,104,101,32,102,111,114,109,97,116,116,101,100,32,100,97,116,101,32,115,116,114,105,110,103,32,105,110,32,116,104,101,32,103,105,118,101,110,32,102,111,114,109,97,116,46,32,84,104,101,32,114,101,115,117,108,116,32,109,97,121,32,118,97,114,121,32,98,121,32,108,111,99,97,108,101,46,92,110,32,42,92,110,32,42,32,62,32,226,154,160,239,184,143,32,80,108,101,97,115,101,32,110,111,116,101,32,116,104,97,116,32,116,104,101,32,96,102,111,114,109,97,116,96,32,116,111,107,101,110,115,32,100,105,102,102,101,114,32,102,114,111,109,32,77,111,109,101,110,116,46,106,115,32,97,110,100,32,111,116,104,101,114,32,108,105,98,114,97,114,105,101,115,46,92,110,32,42,32,62,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,92,110,32,42,92,110,32,42,32,84,104,101,32,99,104,97,114,97,99,116,101,114,115,32,119,114,97,112,112,101,100,32,98,101,116,119,101,101,110,32,116,119,111,32,115,105,110,103,108,101,32,113,117,111,116,101,115,32,99,104,97,114,97,99,116,101,114,115,32,40,39,41,32,97,114,101,32,101,115,99,97,112,101,100,46,92,110,32,42,32,84,119,111,32,115,105,110,103,108,101,32,113,117,111,116,101,115,32,105,110,32,97,32,114,111,119,44,32,119,104,101,116,104,101,114,32,105,110,115,105,100,101,32,111,114,32,111,117,116,115,105,100,101,32,97,32,113,117,111,116,101,100,32,115,101,113,117,101,110,99,101,44,32,114,101,112,114,101,115,101,110,116,32,97,32,39,114,101,97,108,39,32,115,105,110,103,108,101,32,113,117,111,116,101,46,92,110,32,42,32,40,115,101,101,32,116,104,101,32,108,97,115,116,32,101,120,97,109,112,108,101,41,92,110,32,42,92,110,32,42,32,70,111,114,109,97,116,32,111,102,32,116,104,101,32,115,116,114,105,110,103,32,105,115,32,98,97,115,101,100,32,111,110,32,85,110,105,99,111,100,101,32,84,101,99,104,110,105,99,97,108,32,83,116,97,110,100,97,114,100,32,35,51,53,58,92,110,32,42,32,104,116,116,112,115,58,47,47,119,119,119,46,117,110,105,99,111,100,101,46,111,114,103,47,114,101,112,111,114,116,115,47,116,114,51,53,47,116,114,51,53,45,100,97,116,101,115,46,104,116,109,108,35,68,97,116,101,95,70,105,101,108,100,95,83,121,109,98,111,108,95,84,97,98,108,101,92,110,32,42,32,119,105,116,104,32,97,32,102,101,119,32,97,100,100,105,116,105,111,110,115,32,40,115,101,101,32,110,111,116,101,32,55,32,98,101,108,111,119,32,116,104,101,32,116,97,98,108,101,41,46,92,110,32,42,92,110,32,42,32,65,99,99,101,112,116,101,100,32,112,97,116,116,101,114,110,115,58,92,110,32,42,32,124,32,85,110,105,116,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,124,32,80,97,116,116,101,114,110,32,124,32,82,101,115,117,108,116,32,101,120,97,109,112,108,101,115,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,78,111,116,101,115,32,124,92,110,32,42,32,124,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,124,45,45,45,45,45,45,45,45,45,124,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,124,45,45,45,45,45,45,45,124,92,110,32,42,32,124,32,69,114,97,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,124,32,71,46,46,71,71,71,32,32,124,32,65,68,44,32,66,67,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,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,71,71,71,71,32,32,32,32,124,32,65,110,110,111,32,68,111,109,105,110,105,44,32,66,101,102,111,114,101,32,67,104,114,105,115,116,32,32,32,32,32,32,32,32,124,32,50,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,71,71,71,71,71,32,32,32,124,32,65,44,32,66,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,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,67,97,108,101,110,100,97,114,32,121,101,97,114,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,121,32,32,32,32,32,32,32,124,32,52,52,44,32,49,44,32,49,57,48,48,44,32,50,48,49,55,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,53,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,121,111,32,32,32,32,32,32,124,32,52,52,116,104,44,32,49,115,116,44,32,48,116,104,44,32,49,55,116,104,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,53,44,55,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,121,121,32,32,32,32,32,32,124,32,52,52,44,32,48,49,44,32,48,48,44,32,49,55,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,53,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,121,121,121,32,32,32,32,32,124,32,48,52,52,44,32,48,48,49,44,32,49,57,48,48,44,32,50,48,49,55,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,53,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,121,121,121,121,32,32,32,32,124,32,48,48,52,52,44,32,48,48,48,49,44,32,49,57,48,48,44,32,50,48,49,55,32,32,32,32,32,32,32,32,32,32,32,32,124,32,53,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,121,121,121,121,121,32,32,32,124,32,46,46,46,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,124,32,51,44,53,32,32,32,124,92,110,32,42,32,124,32,76,111,99,97,108,32,119,101,101,107,45,110,117,109,98,101,114,105,110,103,32,121,101,97,114,32,32,32,32,32,32,32,124,32,89,32,32,32,32,32,32,32,124,32,52,52,44,32,49,44,32,49,57,48,48,44,32,50,48,49,55,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,53,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,89,111,32,32,32,32,32,32,124,32,52,52,116,104,44,32,49,115,116,44,32,49,57,48,48,116,104,44,32,50,48,49,55,116,104,32,32,32,32,32,32,32,32,32,124,32,53,44,55,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,89,89,32,32,32,32,32,32,124,32,52,52,44,32,48,49,44,32,48,48,44,32,49,55,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,53,44,56,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,89,89,89,32,32,32,32,32,124,32,48,52,52,44,32,48,48,49,44,32,49,57,48,48,44,32,50,48,49,55,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,53,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,89,89,89,89,32,32,32,32,124,32,48,48,52,52,44,32,48,48,48,49,44,32,49,57,48,48,44,32,50,48,49,55,32,32,32,32,32,32,32,32,32,32,32,32,124,32,53,44,56,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,89,89,89,89,89,32,32,32,124,32,46,46,46,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,124,32,51,44,53,32,32,32,124,92,110,32,42,32,124,32,73,83,79,32,119,101,101,107,45,110,117,109,98,101,114,105,110,103,32,121,101,97,114,32,32,32,32,32,32,32,32,32,124,32,82,32,32,32,32,32,32,32,124,32,45,52,51,44,32,48,44,32,49,44,32,49,57,48,48,44,32,50,48,49,55,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,53,44,55,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,82,82,32,32,32,32,32,32,124,32,45,52,51,44,32,48,48,44,32,48,49,44,32,49,57,48,48,44,32,50,48,49,55,32,32,32,32,32,32,32,32,32,32,32,124,32,53,44,55,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,82,82,82,32,32,32,32,32,124,32,45,48,52,51,44,32,48,48,48,44,32,48,48,49,44,32,49,57,48,48,44,32,50,48,49,55,32,32,32,32,32,32,32,32,124,32,53,44,55,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,82,82,82,82,32,32,32,32,124,32,45,48,48,52,51,44,32,48,48,48,48,44,32,48,48,48,49,44,32,49,57,48,48,44,32,50,48,49,55,32,32,32,32,32,124,32,53,44,55,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,82,82,82,82,82,32,32,32,124,32,46,46,46,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,124,32,51,44,53,44,55,32,124,92,110,32,42,32,124,32,69,120,116,101,110,100,101,100,32,121,101,97,114,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,117,32,32,32,32,32,32,32,124,32,45,52,51,44,32,48,44,32,49,44,32,49,57,48,48,44,32,50,48,49,55,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,53,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,117,117,32,32,32,32,32,32,124,32,45,52,51,44,32,48,49,44,32,49,57,48,48,44,32,50,48,49,55,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,53,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,117,117,117,32,32,32,32,32,124,32,45,48,52,51,44,32,48,48,49,44,32,49,57,48,48,44,32,50,48,49,55,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,53,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,117,117,117,117,32,32,32,32,124,32,45,48,48,52,51,44,32,48,48,48,49,44,32,49,57,48,48,44,32,50,48,49,55,32,32,32,32,32,32,32,32,32,32,32,124,32,53,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,117,117,117,117,117,32,32,32,124,32,46,46,46,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,124,32,51,44,53,32,32,32,124,92,110,32,42,32,124,32,81,117,97,114,116,101,114,32,40,102,111,114,109,97,116,116,105,110,103,41,32,32,32,32,32,32,32,32,32,32,32,32,124,32,81,32,32,32,32,32,32,32,124,32,49,44,32,50,44,32,51,44,32,52,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,81,111,32,32,32,32,32,32,124,32,49,115,116,44,32,50,110,100,44,32,51,114,100,44,32,52,116,104,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,81,81,32,32,32,32,32,32,124,32,48,49,44,32,48,50,44,32,48,51,44,32,48,52,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,81,81,81,32,32,32,32,32,124,32,81,49,44,32,81,50,44,32,81,51,44,32,81,52,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,81,81,81,81,32,32,32,32,124,32,49,115,116,32,113,117,97,114,116,101,114,44,32,50,110,100,32,113,117,97,114,116,101,114,44,32,46,46,46,32,32,32,32,32,124,32,50,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,81,81,81,81,81,32,32,32,124,32,49,44,32,50,44,32,51,44,32,52,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,52,32,32,32,32,32,124,92,110,32,42,32,124,32,81,117,97,114,116,101,114,32,40,115,116,97,110,100,45,97,108,111,110,101,41,32,32,32,32,32,32,32,32,32,32,32,124,32,113,32,32,32,32,32,32,32,124,32,49,44,32,50,44,32,51,44,32,52,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,113,111,32,32,32,32,32,32,124,32,49,115,116,44,32,50,110,100,44,32,51,114,100,44,32,52,116,104,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,113,113,32,32,32,32,32,32,124,32,48,49,44,32,48,50,44,32,48,51,44,32,48,52,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,113,113,113,32,32,32,32,32,124,32,81,49,44,32,81,50,44,32,81,51,44,32,81,52,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,113,113,113,113,32,32,32,32,124,32,49,115,116,32,113,117,97,114,116,101,114,44,32,50,110,100,32,113,117,97,114,116,101,114,44,32,46,46,46,32,32,32,32,32,124,32,50,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,113,113,113,113,113,32,32,32,124,32,49,44,32,50,44,32,51,44,32,52,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,52,32,32,32,32,32,124,92,110,32,42,32,124,32,77,111,110,116,104,32,40,102,111,114,109,97,116,116,105,110,103,41,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,77,32,32,32,32,32,32,32,124,32,49,44,32,50,44,32,46,46,46,44,32,49,50,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,77,111,32,32,32,32,32,32,124,32,49,115,116,44,32,50,110,100,44,32,46,46,46,44,32,49,50,116,104,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,77,77,32,32,32,32,32,32,124,32,48,49,44,32,48,50,44,32,46,46,46,44,32,49,50,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,77,77,77,32,32,32,32,32,124,32,74,97,110,44,32,70,101,98,44,32,46,46,46,44,32,68,101,99,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,77,77,77,77,32,32,32,32,124,32,74,97,110,117,97,114,121,44,32,70,101,98,114,117,97,114,121,44,32,46,46,46,44,32,68,101,99,101,109,98,101,114,32,32,124,32,50,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,77,77,77,77,77,32,32,32,124,32,74,44,32,70,44,32,46,46,46,44,32,68,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,77,111,110,116,104,32,40,115,116,97,110,100,45,97,108,111,110,101,41,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,76,32,32,32,32,32,32,32,124,32,49,44,32,50,44,32,46,46,46,44,32,49,50,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,76,111,32,32,32,32,32,32,124,32,49,115,116,44,32,50,110,100,44,32,46,46,46,44,32,49,50,116,104,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,76,76,32,32,32,32,32,32,124,32,48,49,44,32,48,50,44,32,46,46,46,44,32,49,50,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,76,76,76,32,32,32,32,32,124,32,74,97,110,44,32,70,101,98,44,32,46,46,46,44,32,68,101,99,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,76,76,76,76,32,32,32,32,124,32,74,97,110,117,97,114,121,44,32,70,101,98,114,117,97,114,121,44,32,46,46,46,44,32,68,101,99,101,109,98,101,114,32,32,124,32,50,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,76,76,76,76,76,32,32,32,124,32,74,44,32,70,44,32,46,46,46,44,32,68,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,76,111,99,97,108,32,119,101,101,107,32,111,102,32,121,101,97,114,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,119,32,32,32,32,32,32,32,124,32,49,44,32,50,44,32,46,46,46,44,32,53,51,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,119,111,32,32,32,32,32,32,124,32,49,115,116,44,32,50,110,100,44,32,46,46,46,44,32,53,51,116,104,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,119,119,32,32,32,32,32,32,124,32,48,49,44,32,48,50,44,32,46,46,46,44,32,53,51,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,73,83,79,32,119,101,101,107,32,111,102,32,121,101,97,114,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,73,32,32,32,32,32,32,32,124,32,49,44,32,50,44,32,46,46,46,44,32,53,51,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,73,111,32,32,32,32,32,32,124,32,49,115,116,44,32,50,110,100,44,32,46,46,46,44,32,53,51,116,104,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,73,73,32,32,32,32,32,32,124,32,48,49,44,32,48,50,44,32,46,46,46,44,32,53,51,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,68,97,121,32,111,102,32,109,111,110,116,104,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,100,32,32,32,32,32,32,32,124,32,49,44,32,50,44,32,46,46,46,44,32,51,49,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,100,111,32,32,32,32,32,32,124,32,49,115,116,44,32,50,110,100,44,32,46,46,46,44,32,51,49,115,116,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,100,100,32,32,32,32,32,32,124,32,48,49,44,32,48,50,44,32,46,46,46,44,32,51,49,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,68,97,121,32,111,102,32,121,101,97,114,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,68,32,32,32,32,32,32,32,124,32,49,44,32,50,44,32,46,46,46,44,32,51,54,53,44,32,51,54,54,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,57,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,68,111,32,32,32,32,32,32,124,32,49,115,116,44,32,50,110,100,44,32,46,46,46,44,32,51,54,53,116,104,44,32,51,54,54,116,104,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,68,68,32,32,32,32,32,32,124,32,48,49,44,32,48,50,44,32,46,46,46,44,32,51,54,53,44,32,51,54,54,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,57,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,68,68,68,32,32,32,32,32,124,32,48,48,49,44,32,48,48,50,44,32,46,46,46,44,32,51,54,53,44,32,51,54,54,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,68,68,68,68,32,32,32,32,124,32,46,46,46,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,124,32,51,32,32,32,32,32,124,92,110,32,42,32,124,32,68,97,121,32,111,102,32,119,101,101,107,32,40,102,111,114,109,97,116,116,105,110,103,41,32,32,32,32,32,32,32,32,124,32,69,46,46,69,69,69,32,32,124,32,77,111,110,44,32,84,117,101,44,32,87,101,100,44,32,46,46,46,44,32,83,117,110,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,69,69,69,69,32,32,32,32,124,32,77,111,110,100,97,121,44,32,84,117,101,115,100,97,121,44,32,46,46,46,44,32,83,117,110,100,97,121,32,32,32,32,32,32,124,32,50,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,69,69,69,69,69,32,32,32,124,32,77,44,32,84,44,32,87,44,32,84,44,32,70,44,32,83,44,32,83,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,69,69,69,69,69,69,32,32,124,32,77,111,44,32,84,117,44,32,87,101,44,32,84,104,44,32,70,114,44,32,83,117,44,32,83,97,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,73,83,79,32,100,97,121,32,111,102,32,119,101,101,107,32,40,102,111,114,109,97,116,116,105,110,103,41,32,32,32,32,124,32,105,32,32,32,32,32,32,32,124,32,49,44,32,50,44,32,51,44,32,46,46,46,44,32,55,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,105,111,32,32,32,32,32,32,124,32,49,115,116,44,32,50,110,100,44,32,46,46,46,44,32,55,116,104,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,105,105,32,32,32,32,32,32,124,32,48,49,44,32,48,50,44,32,46,46,46,44,32,48,55,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,105,105,105,32,32,32,32,32,124,32,77,111,110,44,32,84,117,101,44,32,87,101,100,44,32,46,46,46,44,32,83,117,110,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,105,105,105,105,32,32,32,32,124,32,77,111,110,100,97,121,44,32,84,117,101,115,100,97,121,44,32,46,46,46,44,32,83,117,110,100,97,121,32,32,32,32,32,32,124,32,50,44,55,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,105,105,105,105,105,32,32,32,124,32,77,44,32,84,44,32,87,44,32,84,44,32,70,44,32,83,44,32,83,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,105,105,105,105,105,105,32,32,124,32,77,111,44,32,84,117,44,32,87,101,44,32,84,104,44,32,70,114,44,32,83,117,44,32,83,97,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,76,111,99,97,108,32,100,97,121,32,111,102,32,119,101,101,107,32,40,102,111,114,109,97,116,116,105,110,103,41,32,32,124,32,101,32,32,32,32,32,32,32,124,32,50,44,32,51,44,32,52,44,32,46,46,46,44,32,49,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,101,111,32,32,32,32,32,32,124,32,50,110,100,44,32,51,114,100,44,32,46,46,46,44,32,49,115,116,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,101,101,32,32,32,32,32,32,124,32,48,50,44,32,48,51,44,32,46,46,46,44,32,48,49,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,101,101,101,32,32,32,32,32,124,32,77,111,110,44,32,84,117,101,44,32,87,101,100,44,32,46,46,46,44,32,83,117,110,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,101,101,101,101,32,32,32,32,124,32,77,111,110,100,97,121,44,32,84,117,101,115,100,97,121,44,32,46,46,46,44,32,83,117,110,100,97,121,32,32,32,32,32,32,124,32,50,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,101,101,101,101,101,32,32,32,124,32,77,44,32,84,44,32,87,44,32,84,44,32,70,44,32,83,44,32,83,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,101,101,101,101,101,101,32,32,124,32,77,111,44,32,84,117,44,32,87,101,44,32,84,104,44,32,70,114,44,32,83,117,44,32,83,97,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,76,111,99,97,108,32,100,97,121,32,111,102,32,119,101,101,107,32,40,115,116,97,110,100,45,97,108,111,110,101,41,32,124,32,99,32,32,32,32,32,32,32,124,32,50,44,32,51,44,32,52,44,32,46,46,46,44,32,49,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,99,111,32,32,32,32,32,32,124,32,50,110,100,44,32,51,114,100,44,32,46,46,46,44,32,49,115,116,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,99,99,32,32,32,32,32,32,124,32,48,50,44,32,48,51,44,32,46,46,46,44,32,48,49,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,99,99,99,32,32,32,32,32,124,32,77,111,110,44,32,84,117,101,44,32,87,101,100,44,32,46,46,46,44,32,83,117,110,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,99,99,99,99,32,32,32,32,124,32,77,111,110,100,97,121,44,32,84,117,101,115,100,97,121,44,32,46,46,46,44,32,83,117,110,100,97,121,32,32,32,32,32,32,124,32,50,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,99,99,99,99,99,32,32,32,124,32,77,44,32,84,44,32,87,44,32,84,44,32,70,44,32,83,44,32,83,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,99,99,99,99,99,99,32,32,124,32,77,111,44,32,84,117,44,32,87,101,44,32,84,104,44,32,70,114,44,32,83,117,44,32,83,97,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,65,77,44,32,80,77,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,124,32,97,46,46,97,97,32,32,32,124,32,65,77,44,32,80,77,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,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,97,97,97,32,32,32,32,32,124,32,97,109,44,32,112,109,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,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,97,97,97,97,32,32,32,32,124,32,97,46,109,46,44,32,112,46,109,46,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,50,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,97,97,97,97,97,32,32,32,124,32,97,44,32,112,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,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,65,77,44,32,80,77,44,32,110,111,111,110,44,32,109,105,100,110,105,103,104,116,32,32,32,32,32,32,32,32,32,32,124,32,98,46,46,98,98,32,32,32,124,32,65,77,44,32,80,77,44,32,110,111,111,110,44,32,109,105,100,110,105,103,104,116,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,98,98,98,32,32,32,32,32,124,32,97,109,44,32,112,109,44,32,110,111,111,110,44,32,109,105,100,110,105,103,104,116,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,98,98,98,98,32,32,32,32,124,32,97,46,109,46,44,32,112,46,109,46,44,32,110,111,111,110,44,32,109,105,100,110,105,103,104,116,32,32,32,32,32,32,32,32,124,32,50,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,98,98,98,98,98,32,32,32,124,32,97,44,32,112,44,32,110,44,32,109,105,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,70,108,101,120,105,98,108,101,32,100,97,121,32,112,101,114,105,111,100,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,66,46,46,66,66,66,32,32,124,32,97,116,32,110,105,103,104,116,44,32,105,110,32,116,104,101,32,109,111,114,110,105,110,103,44,32,46,46,46,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,66,66,66,66,32,32,32,32,124,32,97,116,32,110,105,103,104,116,44,32,105,110,32,116,104,101,32,109,111,114,110,105,110,103,44,32,46,46,46,32,32,32,32,32,124,32,50,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,66,66,66,66,66,32,32,32,124,32,97,116,32,110,105,103,104,116,44,32,105,110,32,116,104,101,32,109,111,114,110,105,110,103,44,32,46,46,46,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,72,111,117,114,32,91,49,45,49,50,93,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,104,32,32,32,32,32,32,32,124,32,49,44,32,50,44,32,46,46,46,44,32,49,49,44,32,49,50,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,104,111,32,32,32,32,32,32,124,32,49,115,116,44,32,50,110,100,44,32,46,46,46,44,32,49,49,116,104,44,32,49,50,116,104,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,104,104,32,32,32,32,32,32,124,32,48,49,44,32,48,50,44,32,46,46,46,44,32,49,49,44,32,49,50,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,72,111,117,114,32,91,48,45,50,51,93,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,72,32,32,32,32,32,32,32,124,32,48,44,32,49,44,32,50,44,32,46,46,46,44,32,50,51,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,72,111,32,32,32,32,32,32,124,32,48,116,104,44,32,49,115,116,44,32,50,110,100,44,32,46,46,46,44,32,50,51,114,100,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,72,72,32,32,32,32,32,32,124,32,48,48,44,32,48,49,44,32,48,50,44,32,46,46,46,44,32,50,51,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,72,111,117,114,32,91,48,45,49,49,93,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,75,32,32,32,32,32,32,32,124,32,49,44,32,50,44,32,46,46,46,44,32,49,49,44,32,48,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,75,111,32,32,32,32,32,32,124,32,49,115,116,44,32,50,110,100,44,32,46,46,46,44,32,49,49,116,104,44,32,48,116,104,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,75,75,32,32,32,32,32,32,124,32,48,49,44,32,48,50,44,32,46,46,46,44,32,49,49,44,32,48,48,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,72,111,117,114,32,91,49,45,50,52,93,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,107,32,32,32,32,32,32,32,124,32,50,52,44,32,49,44,32,50,44,32,46,46,46,44,32,50,51,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,107,111,32,32,32,32,32,32,124,32,50,52,116,104,44,32,49,115,116,44,32,50,110,100,44,32,46,46,46,44,32,50,51,114,100,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,107,107,32,32,32,32,32,32,124,32,50,52,44,32,48,49,44,32,48,50,44,32,46,46,46,44,32,50,51,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,77,105,110,117,116,101,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,124,32,109,32,32,32,32,32,32,32,124,32,48,44,32,49,44,32,46,46,46,44,32,53,57,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,109,111,32,32,32,32,32,32,124,32,48,116,104,44,32,49,115,116,44,32,46,46,46,44,32,53,57,116,104,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,109,109,32,32,32,32,32,32,124,32,48,48,44,32,48,49,44,32,46,46,46,44,32,53,57,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,83,101,99,111,110,100,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,124,32,115,32,32,32,32,32,32,32,124,32,48,44,32,49,44,32,46,46,46,44,32,53,57,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,115,111,32,32,32,32,32,32,124,32,48,116,104,44,32,49,115,116,44,32,46,46,46,44,32,53,57,116,104,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,115,115,32,32,32,32,32,32,124,32,48,48,44,32,48,49,44,32,46,46,46,44,32,53,57,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,70,114,97,99,116,105,111,110,32,111,102,32,115,101,99,111,110,100,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,83,32,32,32,32,32,32,32,124,32,48,44,32,49,44,32,46,46,46,44,32,57,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,83,83,32,32,32,32,32,32,124,32,48,48,44,32,48,49,44,32,46,46,46,44,32,57,57,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,83,83,83,32,32,32,32,32,124,32,48,48,48,44,32,48,48,49,44,32,46,46,46,44,32,57,57,57,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,83,83,83,83,32,32,32,32,124,32,46,46,46,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,124,32,51,32,32,32,32,32,124,92,110,32,42,32,124,32,84,105,109,101,122,111,110,101,32,40,73,83,79,45,56,54,48,49,32,119,47,32,90,41,32,32,32,32,32,32,32,32,124,32,88,32,32,32,32,32,32,32,124,32,45,48,56,44,32,43,48,53,51,48,44,32,90,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,88,88,32,32,32,32,32,32,124,32,45,48,56,48,48,44,32,43,48,53,51,48,44,32,90,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,88,88,88,32,32,32,32,32,124,32,45,48,56,58,48,48,44,32,43,48,53,58,51,48,44,32,90,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,88,88,88,88,32,32,32,32,124,32,45,48,56,48,48,44,32,43,48,53,51,48,44,32,90,44,32,43,49,50,51,52,53,54,32,32,32,32,32,32,32,32,32,32,124,32,50,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,88,88,88,88,88,32,32,32,124,32,45,48,56,58,48,48,44,32,43,48,53,58,51,48,44,32,90,44,32,43,49,50,58,51,52,58,53,54,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,84,105,109,101,122,111,110,101,32,40,73,83,79,45,56,54,48,49,32,119,47,111,32,90,41,32,32,32,32,32,32,32,124,32,120,32,32,32,32,32,32,32,124,32,45,48,56,44,32,43,48,53,51,48,44,32,43,48,48,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,120,32,32,32,32,32,32,124,32,45,48,56,48,48,44,32,43,48,53,51,48,44,32,43,48,48,48,48,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,120,120,32,32,32,32,32,124,32,45,48,56,58,48,48,44,32,43,48,53,58,51,48,44,32,43,48,48,58,48,48,32,32,32,32,32,32,32,32,32,32,32,32,124,32,50,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,120,120,120,32,32,32,32,124,32,45,48,56,48,48,44,32,43,48,53,51,48,44,32,43,48,48,48,48,44,32,43,49,50,51,52,53,54,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,120,120,120,120,32,32,32,124,32,45,48,56,58,48,48,44,32,43,48,53,58,51,48,44,32,43,48,48,58,48,48,44,32,43,49,50,58,51,52,58,53,54,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,84,105,109,101,122,111,110,101,32,40,71,77,84,41,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,79,46,46,46,79,79,79,32,124,32,71,77,84,45,56,44,32,71,77,84,43,53,58,51,48,44,32,71,77,84,43,48,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,79,79,79,79,32,32,32,32,124,32,71,77,84,45,48,56,58,48,48,44,32,71,77,84,43,48,53,58,51,48,44,32,71,77,84,43,48,48,58,48,48,32,32,32,124,32,50,32,32,32,32,32,124,92,110,32,42,32,124,32,84,105,109,101,122,111,110,101,32,40,115,112,101,99,105,102,105,99,32,110,111,110,45,108,111,99,97,116,46,41,32,32,124,32,122,46,46,46,122,122,122,32,124,32,71,77,84,45,56,44,32,71,77,84,43,53,58,51,48,44,32,71,77,84,43,48,32,32,32,32,32,32,32,32,32,32,32,32,124,32,54,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,122,122,122,122,32,32,32,32,124,32,71,77,84,45,48,56,58,48,48,44,32,71,77,84,43,48,53,58,51,48,44,32,71,77,84,43,48,48,58,48,48,32,32,32,124,32,50,44,54,32,32,32,124,92,110,32,42,32,124,32,83,101,99,111,110,100,115,32,116,105,109,101,115,116,97,109,112,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,116,32,32,32,32,32,32,32,124,32,53,49,50,57,54,57,53,50,48,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,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,116,116,32,32,32,32,32,32,124,32,46,46,46,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,124,32,51,44,55,32,32,32,124,92,110,32,42,32,124,32,77,105,108,108,105,115,101,99,111,110,100,115,32,116,105,109,101,115,116,97,109,112,32,32,32,32,32,32,32,32,32,32,124,32,84,32,32,32,32,32,32,32,124,32,53,49,50,57,54,57,53,50,48,57,48,48,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,84,84,32,32,32,32,32,32,124,32,46,46,46,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,124,32,51,44,55,32,32,32,124,92,110,32,42,32,124,32,76,111,110,103,32,108,111,99,97,108,105,122,101,100,32,100,97,116,101,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,80,32,32,32,32,32,32,32,124,32,48,52,47,50,57,47,49,52,53,51,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,80,80,32,32,32,32,32,32,124,32,65,112,114,32,50,57,44,32,49,52,53,51,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,80,80,80,32,32,32,32,32,124,32,65,112,114,105,108,32,50,57,116,104,44,32,49,52,53,51,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,80,80,80,80,32,32,32,32,124,32,70,114,105,100,97,121,44,32,65,112,114,105,108,32,50,57,116,104,44,32,49,52,53,51,32,32,32,32,32,32,32,32,32,32,124,32,50,44,55,32,32,32,124,92,110,32,42,32,124,32,76,111,110,103,32,108,111,99,97,108,105,122,101,100,32,116,105,109,101,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,112,32,32,32,32,32,32,32,124,32,49,50,58,48,48,32,65,77,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,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,112,112,32,32,32,32,32,32,124,32,49,50,58,48,48,58,48,48,32,65,77,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,112,112,112,32,32,32,32,32,124,32,49,50,58,48,48,58,48,48,32,65,77,32,71,77,84,43,50,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,112,112,112,112,32,32,32,32,124,32,49,50,58,48,48,58,48,48,32,65,77,32,71,77,84,43,48,50,58,48,48,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,50,44,55,32,32,32,124,92,110,32,42,32,124,32,67,111,109,98,105,110,97,116,105,111,110,32,111,102,32,100,97,116,101,32,97,110,100,32,116,105,109,101,32,32,32,32,124,32,80,112,32,32,32,32,32,32,124,32,48,52,47,50,57,47,49,52,53,51,44,32,49,50,58,48,48,32,65,77,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,80,80,112,112,32,32,32,32,124,32,65,112,114,32,50,57,44,32,49,52,53,51,44,32,49,50,58,48,48,58,48,48,32,65,77,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,80,80,80,112,112,112,32,32,124,32,65,112,114,105,108,32,50,57,116,104,44,32,49,52,53,51,32,97,116,32,46,46,46,32,32,32,32,32,32,32,32,32,32,32,124,32,55,32,32,32,32,32,124,92,110,32,42,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,80,80,80,80,112,112,112,112,124,32,70,114,105,100,97,121,44,32,65,112,114,105,108,32,50,57,116,104,44,32,49,52,53,51,32,97,116,32,46,46,46,32,32,32,124,32,50,44,55,32,32,32,124,92,110,32,42,32,78,111,116,101,115,58,92,110,32,42,32,49,46,32,92,34,70,111,114,109,97,116,116,105,110,103,92,34,32,117,110,105,116,115,32,40,101,46,103,46,32,102,111,114,109,97,116,116,105,110,103,32,113,117,97,114,116,101,114,41,32,105,110,32,116,104,101,32,100,101,102,97,117,108,116,32,101,110,45,85,83,32,108,111,99,97,108,101,92,110,32,42,32,32,32,32,97,114,101,32,116,104,101,32,115,97,109,101,32,97,115,32,92,34,115,116,97,110,100,45,97,108,111,110,101,92,34,32,117,110,105,116,115,44,32,98,117,116,32,97,114,101,32,100,105,102,102,101,114,101,110,116,32,105,110,32,115,111,109,101,32,108,97,110,103,117,97,103,101,115,46,92,110,32,42,32,32,32,32,92,34,70,111,114,109,97,116,116,105,110,103,92,34,32,117,110,105,116,115,32,97,114,101,32,100,101,99,108,105,110,101,100,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,101,32,114,117,108,101,115,32,111,102,32,116,104,101,32,108,97,110,103,117,97,103,101,92,110,32,42,32,32,32,32,105,110,32,116,104,101,32,99,111,110,116,101,120,116,32,111,102,32,97,32,100,97,116,101,46,32,92,34,83,116,97,110,100,45,97,108,111,110,101,92,34,32,117,110,105,116,115,32,97,114,101,32,97,108,119,97,121,115,32,110,111,109,105,110,97,116,105,118,101,32,115,105,110,103,117,108,97,114,58,92,110,32,42,92,110,32,42,32,32,32,32,96,102,111,114,109,97,116,40,110,101,119,32,68,97,116,101,40,50,48,49,55,44,32,49,48,44,32,54,41,44,32,39,100,111,32,76,76,76,76,39,44,32,123,108,111,99,97,108,101,58,32,99,115,125,41,32,47,47,61,62,32,39,54,46,32,108,105,115,116,111,112,97,100,39,96,92,110,32,42,92,110,32,42,32,32,32,32,96,102,111,114,109,97,116,40,110,101,119,32,68,97,116,101,40,50,48,49,55,44,32,49,48,44,32,54,41,44,32,39,100,111,32,77,77,77,77,39,44,32,123,108,111,99,97,108,101,58,32,99,115,125,41,32,47,47,61,62,32,39,54,46,32,108,105,115,116,111,112,97,100,117,39,96,92,110,32,42,92,110,32,42,32,50,46,32,65,110,121,32,115,101,113,117,101,110,99,101,32,111,102,32,116,104,101,32,105,100,101,110,116,105,99,97,108,32,108,101,116,116,101,114,115,32,105,115,32,97,32,112,97,116,116,101,114,110,44,32,117,110,108,101,115,115,32,105,116,32,105,115,32,101,115,99,97,112,101,100,32,98,121,92,110,32,42,32,32,32,32,116,104,101,32,115,105,110,103,108,101,32,113,117,111,116,101,32,99,104,97,114,97,99,116,101,114,115,32,40,115,101,101,32,98,101,108,111,119,41,46,92,110,32,42,32,32,32,32,73,102,32,116,104,101,32,115,101,113,117,101,110,99,101,32,105,115,32,108,111,110,103,101,114,32,116,104,97,110,32,108,105,115,116,101,100,32,105,110,32,116,97,98,108,101,32,40,101,46,103,46,32,96,69,69,69,69,69,69,69,69,69,69,69,96,41,92,110,32,42,32,32,32,32,116,104,101,32,111,117,116,112,117,116,32,119,105,108,108,32,98,101,32,116,104,101,32,115,97,109,101,32,97,115,32,100,101,102,97,117,108,116,32,112,97,116,116,101,114,110,32,102,111,114,32,116,104,105,115,32,117,110,105,116,44,32,117,115,117,97,108,108,121,92,110,32,42,32,32,32,32,116,104,101,32,108,111,110,103,101,115,116,32,111,110,101,32,40,105,110,32,99,97,115,101,32,111,102,32,73,83,79,32,119,101,101,107,100,97,121,115,44,32,96,69,69,69,69,96,41,46,32,68,101,102,97,117,108,116,32,112,97,116,116,101,114,110,115,32,102,111,114,32,117,110,105,116,115,92,110,32,42,32,32,32,32,97,114,101,32,109,97,114,107,101,100,32,119,105,116,104,32,92,34,50,92,34,32,105,110,32,116,104,101,32,108,97,115,116,32,99,111,108,117,109,110,32,111,102,32,116,104,101,32,116,97,98,108,101,46,92,110,32,42,92,110,32,42,32,32,32,32,96,102,111,114,109,97,116,40,110,101,119,32,68,97,116,101,40,50,48,49,55,44,32,49,48,44,32,54,41,44,32,39,77,77,77,39,41,32,47,47,61,62,32,39,78,111,118,39,96,92,110,32,42,92,110,32,42,32,32,32,32,96,102,111,114,109,97,116,40,110,101,119,32,68,97,116,101,40,50,48,49,55,44,32,49,48,44,32,54,41,44,32,39,77,77,77,77,39,41,32,47,47,61,62,32,39,78,111,118,101,109,98,101,114,39,96,92,110,32,42,92,110,32,42,32,32,32,32,96,102,111,114,109,97,116,40,110,101,119,32,68,97,116,101,40,50,48,49,55,44,32,49,48,44,32,54,41,44,32,39,77,77,77,77,77,39,41,32,47,47,61,62,32,39,78,39,96,92,110,32,42,92,110,32,42,32,32,32,32,96,102,111,114,109,97,116,40,110,101,119,32,68,97,116,101,40,50,48,49,55,44,32,49,48,44,32,54,41,44,32,39,77,77,77,77,77,77,39,41,32,47,47,61,62,32,39,78,111,118,101,109,98,101,114,39,96,92,110,32,42,92,110,32,42,32,32,32,32,96,102,111,114,109,97,116,40,110,101,119,32,68,97,116,101,40,50,48,49,55,44,32,49,48,44,32,54,41,44,32,39,77,77,77,77,77,77,77,39,41,32,47,47,61,62,32,39,78,111,118,101,109,98,101,114,39,96,92,110,32,42,92,110,32,42,32,51,46,32,83,111,109,101,32,112,97,116,116,101,114,110,115,32,99,111,117,108,100,32,98,101,32,117,110,108,105,109,105,116,101,100,32,108,101,110,103,116,104,32,40,115,117,99,104,32,97,115,32,96,121,121,121,121,121,121,121,121,96,41,46,92,110,32,42,32,32,32,32,84,104,101,32,111,117,116,112,117,116,32,119,105,108,108,32,98,101,32,112,97,100,100,101,100,32,119,105,116,104,32,122,101,114,111,115,32,116,111,32,109,97,116,99,104,32,116,104,101,32,108,101,110,103,116,104,32,111,102,32,116,104,101,32,112,97,116,116,101,114,110,46,92,110,32,42,92,110,32,42,32,32,32,32,96,102,111,114,109,97,116,40,110,101,119,32,68,97,116,101,40,50,48,49,55,44,32,49,48,44,32,54,41,44,32,39,121,121,121,121,121,121,121,121,39,41,32,47,47,61,62,32,39,48,48,48,48,50,48,49,55,39,96,92,110,32,42,92,110,32,42,32,52,46,32,96,81,81,81,81,81,96,32,97,110,100,32,96,113,113,113,113,113,96,32,99,111,117,108,100,32,98,101,32,110,111,116,32,115,116,114,105,99,116,108,121,32,110,117,109,101,114,105,99,97,108,32,105,110,32,115,111,109,101,32,108,111,99,97,108,101,115,46,92,110,32,42,32,32,32,32,84,104,101,115,101,32,116,111,107,101,110,115,32,114,101,112,114,101,115,101,110,116,32,116,104,101,32,115,104,111,114,116,101,115,116,32,102,111,114,109,32,111,102,32,116,104,101,32,113,117,97,114,116,101,114,46,92,110,32,42,92,110,32,42,32,53,46,32,84,104,101,32,109,97,105,110,32,100,105,102,102,101,114,101,110,99,101,32,98,101,116,119,101,101,110,32,96,121,96,32,97,110,100,32,96,117,96,32,112,97,116,116,101,114,110,115,32,97,114,101,32,66,46,67,46,32,121,101,97,114,115,58,92,110,32,42,92,110,32,42,32,32,32,32,124,32,89,101,97,114,32,124,32,96,121,96,32,124,32,96,117,96,32,124,92,110,32,42,32,32,32,32,124,45,45,45,45,45,45,124,45,45,45,45,45,124,45,45,45,45,45,124,92,110,32,42,32,32,32,32,124,32,65,67,32,49,32,124,32,32,32,49,32,124,32,32,32,49,32,124,92,110,32,42,32,32,32,32,124,32,66,67,32,49,32,124,32,32,32,49,32,124,32,32,32,48,32,124,92,110,32,42,32,32,32,32,124,32,66,67,32,50,32,124,32,32,32,50,32,124,32,32,45,49,32,124,92,110,32,42,92,110,32,42,32,32,32,32,65,108,115,111,32,96,121,121,96,32,97,108,119,97,121,115,32,114,101,116,117,114,110,115,32,116,104,101,32,108,97,115,116,32,116,119,111,32,100,105,103,105,116,115,32,111,102,32,97,32,121,101,97,114,44,92,110,32,42,32,32,32,32,119,104,105,108,101,32,96,117,117,96,32,112,97,100,115,32,115,105,110,103,108,101,32,100,105,103,105,116,32,121,101,97,114,115,32,116,111,32,50,32,99,104,97,114,97,99,116,101,114,115,32,97,110,100,32,114,101,116,117,114,110,115,32,111,116,104,101,114,32,121,101,97,114,115,32,117,110,99,104,97,110,103,101,100,58,92,110,32,42,92,110,32,42,32,32,32,32,124,32,89,101,97,114,32,124,32,96,121,121,96,32,124,32,96,117,117,96,32,124,92,110,32,42,32,32,32,32,124,45,45,45,45,45,45,124,45,45,45,45,45,45,124,45,45,45,45,45,45,124,92,110,32,42,32,32,32,32,124,32,49,32,32,32,32,124,32,32,32,48,49,32,124,32,32,32,48,49,32,124,92,110,32,42,32,32,32,32,124,32,49,52,32,32,32,124,32,32,32,49,52,32,124,32,32,32,49,52,32,124,92,110,32,42,32,32,32,32,124,32,51,55,54,32,32,124,32,32,32,55,54,32,124,32,32,51,55,54,32,124,92,110,32,42,32,32,32,32,124,32,49,52,53,51,32,124,32,32,32,53,51,32,124,32,49,52,53,51,32,124,92,110,32,42,92,110,32,42,32,32,32,32,84,104,101,32,115,97,109,101,32,100,105,102,102,101,114,101,110,99,101,32,105,115,32,116,114,117,101,32,102,111,114,32,108,111,99,97,108,32,97,110,100,32,73,83,79,32,119,101,101,107,45,110,117,109,98,101,114,105,110,103,32,121,101,97,114,115,32,40,96,89,96,32,97,110,100,32,96,82,96,41,44,92,110,32,42,32,32,32,32,101,120,99,101,112,116,32,108,111,99,97,108,32,119,101,101,107,45,110,117,109,98,101,114,105,110,103,32,121,101,97,114,115,32,97,114,101,32,100,101,112,101,110,100,101,110,116,32,111,110,32,96,111,112,116,105,111,110,115,46,119,101,101,107,83,116,97,114,116,115,79,110,96,92,110,32,42,32,32,32,32,97,110,100,32,96,111,112,116,105,111,110,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,96,32,40,99,111,109,112,97,114,101,32,91,103,101,116,73,83,79,87,101,101,107,89,101,97,114,93,123,64,108,105,110,107,32,104,116,116,112,115,58,47,47,100,97,116,101,45,102,110,115,46,111,114,103,47,100,111,99,115,47,103,101,116,73,83,79,87,101,101,107,89,101,97,114,125,92,110,32,42,32,32,32,32,97,110,100,32,91,103,101,116,87,101,101,107,89,101,97,114,93,123,64,108,105,110,107,32,104,116,116,112,115,58,47,47,100,97,116,101,45,102,110,115,46,111,114,103,47,100,111,99,115,47,103,101,116,87,101,101,107,89,101,97,114,125,41,46,92,110,32,42,92,110,32,42,32,54,46,32,83,112,101,99,105,102,105,99,32,110,111,110,45,108,111,99,97,116,105,111,110,32,116,105,109,101,122,111,110,101,115,32,97,114,101,32,99,117,114,114,101,110,116,108,121,32,117,110,97,118,97,105,108,97,98,108,101,32,105,110,32,96,100,97,116,101,45,102,110,115,96,44,92,110,32,42,32,32,32,32,115,111,32,114,105,103,104,116,32,110,111,119,32,116,104,101,115,101,32,116,111,107,101,110,115,32,102,97,108,108,32,98,97,99,107,32,116,111,32,71,77,84,32,116,105,109,101,122,111,110,101,115,46,92,110,32,42,92,110,32,42,32,55,46,32,84,104,101,115,101,32,112,97,116,116,101,114,110,115,32,97,114,101,32,110,111,116,32,105,110,32,116,104,101,32,85,110,105,99,111,100,101,32,84,101,99,104,110,105,99,97,108,32,83,116,97,110,100,97,114,100,32,35,51,53,58,92,110,32,42,32,32,32,32,45,32,96,105,96,58,32,73,83,79,32,100,97,121,32,111,102,32,119,101,101,107,92,110,32,42,32,32,32,32,45,32,96,73,96,58,32,73,83,79,32,119,101,101,107,32,111,102,32,121,101,97,114,92,110,32,42,32,32,32,32,45,32,96,82,96,58,32,73,83,79,32,119,101,101,107,45,110,117,109,98,101,114,105,110,103,32,121,101,97,114,92,110,32,42,32,32,32,32,45,32,96,116,96,58,32,115,101,99,111,110,100,115,32,116,105,109,101,115,116,97,109,112,92,110,32,42,32,32,32,32,45,32,96,84,96,58,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,105,109,101,115,116,97,109,112,92,110,32,42,32,32,32,32,45,32,96,111,96,58,32,111,114,100,105,110,97,108,32,110,117,109,98,101,114,32,109,111,100,105,102,105,101,114,92,110,32,42,32,32,32,32,45,32,96,80,96,58,32,108,111,110,103,32,108,111,99,97,108,105,122,101,100,32,100,97,116,101,92,110,32,42,32,32,32,32,45,32,96,112,96,58,32,108,111,110,103,32,108,111,99,97,108,105,122,101,100,32,116,105,109,101,92,110,32,42,92,110,32,42,32,56,46,32,96,89,89,96,32,97,110,100,32,96,89,89,89,89,96,32,116,111,107,101,110,115,32,114,101,112,114,101,115,101,110,116,32,119,101,101,107,45,110,117,109,98,101,114,105,110,103,32,121,101,97,114,115,32,98,117,116,32,116,104,101,121,32,97,114,101,32,111,102,116,101,110,32,99,111,110,102,117,115,101,100,32,119,105,116,104,32,121,101,97,114,115,46,92,110,32,42,32,32,32,32,89,111,117,32,115,104,111,117,108,100,32,101,110,97,98,108,101,32,96,111,112,116,105,111,110,115,46,117,115,101,65,100,100,105,116,105,111,110,97,108,87,101,101,107,89,101,97,114,84,111,107,101,110,115,96,32,116,111,32,117,115,101,32,116,104,101,109,46,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,92,110,32,42,92,110,32,42,32,57,46,32,96,68,96,32,97,110,100,32,96,68,68,96,32,116,111,107,101,110,115,32,114,101,112,114,101,115,101,110,116,32,100,97,121,115,32,111,102,32,116,104,101,32,121,101,97,114,32,98,117,116,32,116,104,101,121,32,97,114,101,32,111,102,116,104,101,110,32,99,111,110,102,117,115,101,100,32,119,105,116,104,32,100,97,121,115,32,111,102,32,116,104,101,32,109,111,110,116,104,46,92,110,32,42,32,32,32,32,89,111,117,32,115,104,111,117,108,100,32,101,110,97,98,108,101,32,96,111,112,116,105,111,110,115,46,117,115,101,65,100,100,105,116,105,111,110,97,108,68,97,121,79,102,89,101,97,114,84,111,107,101,110,115,96,32,116,111,32,117,115,101,32,116,104,101,109,46,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,92,110,32,42,92,110,32,42,32,35,35,35,32,118,50,46,48,46,48,32,98,114,101,97,107,105,110,103,32,99,104,97,110,103,101,115,58,92,110,32,42,92,110,32,42,32,45,32,91,67,104,97,110,103,101,115,32,116,104,97,116,32,97,114,101,32,99,111,109,109,111,110,32,102,111,114,32,116,104,101,32,119,104,111,108,101,32,108,105,98,114,97,114,121,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,97,116,101,45,102,110,115,47,100,97,116,101,45,102,110,115,47,98,108,111,98,47,109,97,115,116,101,114,47,100,111,99,115,47,117,112,103,114,97,100,101,71,117,105,100,101,46,109,100,35,67,111,109,109,111,110,45,67,104,97,110,103,101,115,41,46,92,110,32,42,92,110,32,42,32,45,32,84,104,101,32,115,101,99,111,110,100,32,97,114,103,117,109,101,110,116,32,105,115,32,110,111,119,32,114,101,113,117,105,114,101,100,32,102,111,114,32,116,104,101,32,115,97,107,101,32,111,102,32,101,120,112,108,105,99,105,116,110,101,115,115,46,92,110,32,42,92,110,32,42,32,32,32,96,96,96,106,97,118,97,115,99,114,105,112,116,92,110,32,42,32,32,32,47,47,32,66,101,102,111,114,101,32,118,50,46,48,46,48,92,110,32,42,32,32,32,102,111,114,109,97,116,40,110,101,119,32,68,97,116,101,40,50,48,49,54,44,32,48,44,32,49,41,41,92,110,32,42,92,110,32,42,32,32,32,47,47,32,118,50,46,48,46,48,32,111,110,119,97,114,100,92,110,32,42,32,32,32,102,111,114,109,97,116,40,110,101,119,32,68,97,116,101,40,50,48,49,54,44,32,48,44,32,49,41,44,32,92,34,121,121,121,121,45,77,77,45,100,100,39,84,39,72,72,58,109,109,58,115,115,46,83,83,83,120,120,120,92,34,41,92,110,32,42,32,32,32,96,96,96,92,110,32,42,92,110,32,42,32,45,32,78,101,119,32,102,111,114,109,97,116,32,115,116,114,105,110,103,32,65,80,73,32,102,111,114,32,96,102,111,114,109,97,116,96,32,102,117,110,99,116,105,111,110,92,110,32,42,32,32,32,119,104,105,99,104,32,105,115,32,98,97,115,101,100,32,111,110,32,91,85,110,105,99,111,100,101,32,84,101,99,104,110,105,99,97,108,32,83,116,97,110,100,97,114,100,32,35,51,53,93,40,104,116,116,112,115,58,47,47,119,119,119,46,117,110,105,99,111,100,101,46,111,114,103,47,114,101,112,111,114,116,115,47,116,114,51,53,47,116,114,51,53,45,100,97,116,101,115,46,104,116,109,108,35,68,97,116,101,95,70,105,101,108,100,95,83,121,109,98,111,108,95,84,97,98,108,101,41,46,92,110,32,42,32,32,32,83,101,101,32,91,116,104,105,115,32,112,111,115,116,93,40,104,116,116,112,115,58,47,47,98,108,111,103,46,100,97,116,101,45,102,110,115,46,111,114,103,47,112,111,115,116,47,117,110,105,99,111,100,101,45,116,111,107,101,110,115,45,105,110,45,100,97,116,101,45,102,110,115,45,118,50,45,115,114,101,97,116,121,107,105,57,49,106,103,41,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,42,92,110,32,42,32,45,32,67,104,97,114,97,99,116,101,114,115,32,97,114,101,32,110,111,119,32,101,115,99,97,112,101,100,32,117,115,105,110,103,32,115,105,110,103,108,101,32,113,117,111,116,101,32,115,121,109,98,111,108,115,32,40,96,39,96,41,32,105,110,115,116,101,97,100,32,111,102,32,115,113,117,97,114,101,32,98,114,97,99,107,101,116,115,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,68,97,116,101,124,78,117,109,98,101,114,125,32,100,97,116,101,32,45,32,116,104,101,32,111,114,105,103,105,110,97,108,32,100,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,102,111,114,109,97,116,32,45,32,116,104,101,32,115,116,114,105,110,103,32,111,102,32,116,111,107,101,110,115,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,112,116,105,111,110,115,93,32,45,32,97,110,32,111,98,106,101,99,116,32,119,105,116,104,32,111,112,116,105,111,110,115,46,92,110,32,42,32,64,112,97,114,97,109,32,123,76,111,99,97,108,101,125,32,91,111,112,116,105,111,110,115,46,108,111,99,97,108,101,61,100,101,102,97,117,108,116,76,111,99,97,108,101,93,32,45,32,116,104,101,32,108,111,99,97,108,101,32,111,98,106,101,99,116,46,32,83,101,101,32,91,76,111,99,97,108,101,93,123,64,108,105,110,107,32,104,116,116,112,115,58,47,47,100,97,116,101,45,102,110,115,46,111,114,103,47,100,111,99,115,47,76,111,99,97,108,101,125,92,110,32,42,32,64,112,97,114,97,109,32,123,48,124,49,124,50,124,51,124,52,124,53,124,54,125,32,91,111,112,116,105,111,110,115,46,119,101,101,107,83,116,97,114,116,115,79,110,61,48,93,32,45,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,102,105,114,115,116,32,100,97,121,32,111,102,32,116,104,101,32,119,101,101,107,32,40,48,32,45,32,83,117,110,100,97,121,41,92,110,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,91,111,112,116,105,111,110,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,61,49,93,32,45,32,116,104,101,32,100,97,121,32,111,102,32,74,97,110,117,97,114,121,44,32,119,104,105,99,104,32,105,115,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,117,115,101,65,100,100,105,116,105,111,110,97,108,87,101,101,107,89,101,97,114,84,111,107,101,110,115,61,102,97,108,115,101,93,32,45,32,105,102,32,116,114,117,101,44,32,97,108,108,111,119,115,32,117,115,97,103,101,32,111,102,32,116,104,101,32,119,101,101,107,45,110,117,109,98,101,114,105,110,103,32,121,101,97,114,32,116,111,107,101,110,115,32,96,89,89,96,32,97,110,100,32,96,89,89,89,89,96,59,92,110,32,42,32,32,32,115,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,117,115,101,65,100,100,105,116,105,111,110,97,108,68,97,121,79,102,89,101,97,114,84,111,107,101,110,115,61,102,97,108,115,101,93,32,45,32,105,102,32,116,114,117,101,44,32,97,108,108,111,119,115,32,117,115,97,103,101,32,111,102,32,116,104,101,32,100,97,121,32,111,102,32,121,101,97,114,32,116,111,107,101,110,115,32,96,68,96,32,97,110,100,32,96,68,68,96,59,92,110,32,42,32,32,32,115,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,83,116,114,105,110,103,125,32,116,104,101,32,102,111,114,109,97,116,116,101,100,32,100,97,116,101,32,115,116,114,105,110,103,92,110,32,42,32,64,116,104,114,111,119,115,32,123,84,121,112,101,69,114,114,111,114,125,32,50,32,97,114,103,117,109,101,110,116,115,32,114,101,113,117,105,114,101,100,92,110,32,42,32,64,116,104,114,111,119,115,32,123,82,97,110,103,101,69,114,114,111,114,125,32,96,100,97,116,101,96,32,109,117,115,116,32,110,111,116,32,98,101,32,73,110,118,97,108,105,100,32,68,97,116,101,92,110,32,42,32,64,116,104,114,111,119,115,32,123,82,97,110,103,101,69,114,114,111,114,125,32,96,111,112,116,105,111,110,115,46,108,111,99,97,108,101,96,32,109,117,115,116,32,99,111,110,116,97,105,110,32,96,108,111,99,97,108,105,122,101,96,32,112,114,111,112,101,114,116,121,92,110,32,42,32,64,116,104,114,111,119,115,32,123,82,97,110,103,101,69,114,114,111,114,125,32,96,111,112,116,105,111,110,115,46,108,111,99,97,108,101,96,32,109,117,115,116,32,99,111,110,116,97,105,110,32,96,102,111,114,109,97,116,76,111,110,103,96,32,112,114,111,112,101,114,116,121,92,110,32,42,32,64,116,104,114,111,119,115,32,123,82,97,110,103,101,69,114,114,111,114,125,32,96,111,112,116,105,111,110,115,46,119,101,101,107,83,116,97,114,116,115,79,110,96,32,109,117,115,116,32,98,101,32,98,101,116,119,101,101,110,32,48,32,97,110,100,32,54,92,110,32,42,32,64,116,104,114,111,119,115,32,123,82,97,110,103,101,69,114,114,111,114,125,32,96,111,112,116,105,111,110,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,96,32,109,117,115,116,32,98,101,32,98,101,116,119,101,101,110,32,49,32,97,110,100,32,55,92,110,32,42,32,64,116,104,114,111,119,115,32,123,82,97,110,103,101,69,114,114,111,114,125,32,117,115,101,32,96,121,121,121,121,96,32,105,110,115,116,101,97,100,32,111,102,32,96,89,89,89,89,96,32,102,111,114,32,102,111,114,109,97,116,116,105,110,103,32,121,101,97,114,115,32,117,115,105,110,103,32,91,102,111,114,109,97,116,32,112,114,111,118,105,100,101,100,93,32,116,111,32,116,104,101,32,105,110,112,117,116,32,91,105,110,112,117,116,32,112,114,111,118,105,100,101,100,93,59,32,115,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,92,110,32,42,32,64,116,104,114,111,119,115,32,123,82,97,110,103,101,69,114,114,111,114,125,32,117,115,101,32,96,121,121,96,32,105,110,115,116,101,97,100,32,111,102,32,96,89,89,96,32,102,111,114,32,102,111,114,109,97,116,116,105,110,103,32,121,101,97,114,115,32,117,115,105,110,103,32,91,102,111,114,109,97,116,32,112,114,111,118,105,100,101,100,93,32,116,111,32,116,104,101,32,105,110,112,117,116,32,91,105,110,112,117,116,32,112,114,111,118,105,100,101,100,93,59,32,115,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,92,110,32,42,32,64,116,104,114,111,119,115,32,123,82,97,110,103,101,69,114,114,111,114,125,32,117,115,101,32,96,100,96,32,105,110,115,116,101,97,100,32,111,102,32,96,68,96,32,102,111,114,32,102,111,114,109,97,116,116,105,110,103,32,100,97,121,115,32,111,102,32,116,104,101,32,109,111,110,116,104,32,117,115,105,110,103,32,91,102,111,114,109,97,116,32,112,114,111,118,105,100,101,100,93,32,116,111,32,116,104,101,32,105,110,112,117,116,32,91,105,110,112,117,116,32,112,114,111,118,105,100,101,100,93,59,32,115,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,92,110,32,42,32,64,116,104,114,111,119,115,32,123,82,97,110,103,101,69,114,114,111,114,125,32,117,115,101,32,96,100,100,96,32,105,110,115,116,101,97,100,32,111,102,32,96,68,68,96,32,102,111,114,32,102,111,114,109,97,116,116,105,110,103,32,100,97,121,115,32,111,102,32,116,104,101,32,109,111,110,116,104,32,117,115,105,110,103,32,91,102,111,114,109,97,116,32,112,114,111,118,105,100,101,100,93,32,116,111,32,116,104,101,32,105,110,112,117,116,32,91,105,110,112,117,116,32,112,114,111,118,105,100,101,100,93,59,32,115,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,92,110,32,42,32,64,116,104,114,111,119,115,32,123,82,97,110,103,101,69,114,114,111,114,125,32,102,111,114,109,97,116,32,115,116,114,105,110,103,32,99,111,110,116,97,105,110,115,32,97,110,32,117,110,101,115,99,97,112,101,100,32,108,97,116,105,110,32,97,108,112,104,97,98,101,116,32,99,104,97,114,97,99,116,101,114,92,110,32,42,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,32,47,47,32,82,101,112,114,101,115,101,110,116,32,49,49,32,70,101,98,114,117,97,114,121,32,50,48,49,52,32,105,110,32,109,105,100,100,108,101,45,101,110,100,105,97,110,32,102,111,114,109,97,116,58,92,110,32,42,32,118,97,114,32,114,101,115,117,108,116,32,61,32,102,111,114,109,97,116,40,110,101,119,32,68,97,116,101,40,50,48,49,52,44,32,49,44,32,49,49,41,44,32,39,77,77,47,100,100,47,121,121,121,121,39,41,92,110,32,42,32,47,47,61,62,32,39,48,50,47,49,49,47,50,48,49,52,39,92,110,32,42,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,32,47,47,32,82,101,112,114,101,115,101,110,116,32,50,32,74,117,108,121,32,50,48,49,52,32,105,110,32,69,115,112,101,114,97,110,116,111,58,92,110,32,42,32,105,109,112,111,114,116,32,123,32,101,111,76,111,99,97,108,101,32,125,32,102,114,111,109,32,39,100,97,116,101,45,102,110,115,47,108,111,99,97,108,101,47,101,111,39,92,110,32,42,32,118,97,114,32,114,101,115,117,108,116,32,61,32,102,111,114,109,97,116,40,110,101,119,32,68,97,116,101,40,50,48,49,52,44,32,54,44,32,50,41,44,32,92,34,100,111,32,39,100,101,39,32,77,77,77,77,32,121,121,121,121,92,34,44,32,123,92,110,32,42,32,32,32,108,111,99,97,108,101,58,32,101,111,76,111,99,97,108,101,92,110,32,42,32,125,41,92,110,32,42,32,47,47,61,62,32,39,50,45,97,32,100,101,32,106,117,108,105,111,32,50,48,49,52,39,92,110,32,42,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,32,47,47,32,69,115,99,97,112,101,32,115,116,114,105,110,103,32,98,121,32,115,105,110,103,108,101,32,113,117,111,116,101,32,99,104,97,114,97,99,116,101,114,115,58,92,110,32,42,32,118,97,114,32,114,101,115,117,108,116,32,61,32,102,111,114,109,97,116,40,110,101,119,32,68,97,116,101,40,50,48,49,52,44,32,54,44,32,50,44,32,49,53,41,44,32,92,34,104,32,39,111,39,39,99,108,111,99,107,39,92,34,41,92,110,32,42,32,47,47,61,62,32,92,34,51,32,111,39,99,108,111,99,107,92,34,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,40,100,105,114,116,121,68,97,116,101,44,32,100,105,114,116,121,70,111,114,109,97,116,83,116,114,44,32,100,105,114,116,121,79,112,116,105,111,110,115,41,32,123,92,110,32,32,40,48,44,95,108,105,98,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,50,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,118,97,114,32,102,111,114,109,97,116,83,116,114,32,61,32,83,116,114,105,110,103,40,100,105,114,116,121,70,111,114,109,97,116,83,116,114,41,59,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,100,105,114,116,121,79,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,111,112,116,105,111,110,115,46,108,111,99,97,108,101,32,124,124,32,95,108,111,99,97,108,101,95,101,110,95,85,83,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,32,32,118,97,114,32,108,111,99,97,108,101,70,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,61,32,108,111,99,97,108,101,46,111,112,116,105,111,110,115,32,38,38,32,108,111,99,97,108,101,46,111,112,116,105,111,110,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,59,92,110,32,32,118,97,114,32,100,101,102,97,117,108,116,70,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,61,32,108,111,99,97,108,101,70,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,61,61,32,110,117,108,108,32,63,32,49,32,58,32,40,48,44,95,108,105,98,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,108,111,99,97,108,101,70,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,41,59,92,110,32,32,118,97,114,32,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,61,32,111,112,116,105,111,110,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,61,61,32,110,117,108,108,32,63,32,100,101,102,97,117,108,116,70,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,58,32,40,48,44,95,108,105,98,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,112,116,105,111,110,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,41,59,32,47,47,32,84,101,115,116,32,105,102,32,119,101,101,107,83,116,97,114,116,115,79,110,32,105,115,32,98,101,116,119,101,101,110,32,49,32,97,110,100,32,55,32,95,97,110,100,95,32,105,115,32,110,111,116,32,78,97,78,92,110,92,110,32,32,105,102,32,40,33,40,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,62,61,32,49,32,38,38,32,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,60,61,32,55,41,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,39,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,109,117,115,116,32,98,101,32,98,101,116,119,101,101,110,32,49,32,97,110,100,32,55,32,105,110,99,108,117,115,105,118,101,108,121,39,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,108,111,99,97,108,101,87,101,101,107,83,116,97,114,116,115,79,110,32,61,32,108,111,99,97,108,101,46,111,112,116,105,111,110,115,32,38,38,32,108,111,99,97,108,101,46,111,112,116,105,111,110,115,46,119,101,101,107,83,116,97,114,116,115,79,110,59,92,110,32,32,118,97,114,32,100,101,102,97,117,108,116,87,101,101,107,83,116,97,114,116,115,79,110,32,61,32,108,111,99,97,108,101,87,101,101,107,83,116,97,114,116,115,79,110,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,40,48,44,95,108,105,98,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,108,111,99,97,108,101,87,101,101,107,83,116,97,114,116,115,79,110,41,59,92,110,32,32,118,97,114,32,119,101,101,107,83,116,97,114,116,115,79,110,32,61,32,111,112,116,105,111,110,115,46,119,101,101,107,83,116,97,114,116,115,79,110,32,61,61,32,110,117,108,108,32,63,32,100,101,102,97,117,108,116,87,101,101,107,83,116,97,114,116,115,79,110,32,58,32,40,48,44,95,108,105,98,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,112,116,105,111,110,115,46,119,101,101,107,83,116,97,114,116,115,79,110,41,59,32,47,47,32,84,101,115,116,32,105,102,32,119,101,101,107,83,116,97,114,116,115,79,110,32,105,115,32,98,101,116,119,101,101,110,32,48,32,97,110,100,32,54,32,95,97,110,100,95,32,105,115,32,110,111,116,32,78,97,78,92,110,92,110,32,32,105,102,32,40,33,40,119,101,101,107,83,116,97,114,116,115,79,110,32,62,61,32,48,32,38,38,32,119,101,101,107,83,116,97,114,116,115,79,110,32,60,61,32,54,41,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,39,119,101,101,107,83,116,97,114,116,115,79,110,32,109,117,115,116,32,98,101,32,98,101,116,119,101,101,110,32,48,32,97,110,100,32,54,32,105,110,99,108,117,115,105,118,101,108,121,39,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,108,111,99,97,108,101,46,108,111,99,97,108,105,122,101,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,39,108,111,99,97,108,101,32,109,117,115,116,32,99,111,110,116,97,105,110,32,108,111,99,97,108,105,122,101,32,112,114,111,112,101,114,116,121,39,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,108,111,99,97,108,101,46,102,111,114,109,97,116,76,111,110,103,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,39,108,111,99,97,108,101,32,109,117,115,116,32,99,111,110,116,97,105,110,32,102,111,114,109,97,116,76,111,110,103,32,112,114,111,112,101,114,116,121,39,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,111,114,105,103,105,110,97,108,68,97,116,101,32,61,32,40,48,44,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,105,114,116,121,68,97,116,101,41,59,92,110,92,110,32,32,105,102,32,40,33,40,48,44,95,105,115,86,97,108,105,100,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,114,105,103,105,110,97,108,68,97,116,101,41,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,39,73,110,118,97,108,105,100,32,116,105,109,101,32,118,97,108,117,101,39,41,59,92,110,32,32,125,32,47,47,32,67,111,110,118,101,114,116,32,116,104,101,32,100,97,116,101,32,105,110,32,115,121,115,116,101,109,32,116,105,109,101,122,111,110,101,32,116,111,32,116,104,101,32,115,97,109,101,32,100,97,116,101,32,105,110,32,85,84,67,43,48,48,58,48,48,32,116,105,109,101,122,111,110,101,46,92,110,32,32,47,47,32,84,104,105,115,32,101,110,115,117,114,101,115,32,116,104,97,116,32,119,104,101,110,32,85,84,67,32,102,117,110,99,116,105,111,110,115,32,119,105,108,108,32,98,101,32,105,109,112,108,101,109,101,110,116,101,100,44,32,108,111,99,97,108,101,115,32,119,105,108,108,32,98,101,32,99,111,109,112,97,116,105,98,108,101,32,119,105,116,104,32,116,104,101,109,46,92,110,32,32,47,47,32,83,101,101,32,97,110,32,105,115,115,117,101,32,97,98,111,117,116,32,85,84,67,32,102,117,110,99,116,105,111,110,115,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,97,116,101,45,102,110,115,47,100,97,116,101,45,102,110,115,47,105,115,115,117,101,115,47,51,55,54,92,110,92,110,92,110,32,32,118,97,114,32,116,105,109,101,122,111,110,101,79,102,102,115,101,116,32,61,32,40,48,44,95,108,105,98,95,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,73,110,77,105,108,108,105,115,101,99,111,110,100,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,114,105,103,105,110,97,108,68,97,116,101,41,59,92,110,32,32,118,97,114,32,117,116,99,68,97,116,101,32,61,32,40,48,44,95,115,117,98,77,105,108,108,105,115,101,99,111,110,100,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,111,114,105,103,105,110,97,108,68,97,116,101,44,32,116,105,109,101,122,111,110,101,79,102,102,115,101,116,41,59,92,110,32,32,118,97,114,32,102,111,114,109,97,116,116,101,114,79,112,116,105,111,110,115,32,61,32,123,92,110,32,32,32,32,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,58,32,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,44,92,110,32,32,32,32,119,101,101,107,83,116,97,114,116,115,79,110,58,32,119,101,101,107,83,116,97,114,116,115,79,110,44,92,110,32,32,32,32,108,111,99,97,108,101,58,32,108,111,99,97,108,101,44,92,110,32,32,32,32,95,111,114,105,103,105,110,97,108,68,97,116,101,58,32,111,114,105,103,105,110,97,108,68,97,116,101,92,110,32,32,125,59,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,102,111,114,109,97,116,83,116,114,46,109,97,116,99,104,40,108,111,110,103,70,111,114,109,97,116,116,105,110,103,84,111,107,101,110,115,82,101,103,69,120,112,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,115,117,98,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,118,97,114,32,102,105,114,115,116,67,104,97,114,97,99,116,101,114,32,61,32,115,117,98,115,116,114,105,110,103,91,48,93,59,92,110,92,110,32,32,32,32,105,102,32,40,102,105,114,115,116,67,104,97,114,97,99,116,101,114,32,61,61,61,32,39,112,39,32,124,124,32,102,105,114,115,116,67,104,97,114,97,99,116,101,114,32,61,61,61,32,39,80,39,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,111,110,103,70,111,114,109,97,116,116,101,114,32,61,32,95,108,105,98,95,102,111,114,109,97,116,95,108,111,110,103,70,111,114,109,97,116,116,101,114,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,91,102,105,114,115,116,67,104,97,114,97,99,116,101,114,93,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,110,103,70,111,114,109,97,116,116,101,114,40,115,117,98,115,116,114,105,110,103,44,32,108,111,99,97,108,101,46,102,111,114,109,97,116,76,111,110,103,44,32,102,111,114,109,97,116,116,101,114,79,112,116,105,111,110,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,115,117,98,115,116,114,105,110,103,59,92,110,32,32,125,41,46,106,111,105,110,40,39,39,41,46,109,97,116,99,104,40,102,111,114,109,97,116,116,105,110,103,84,111,107,101,110,115,82,101,103,69,120,112,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,115,117,98,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,47,47,32,82,101,112,108,97,99,101,32,116,119,111,32,115,105,110,103,108,101,32,113,117,111,116,101,32,99,104,97,114,97,99,116,101,114,115,32,119,105,116,104,32,111,110,101,32,115,105,110,103,108,101,32,113,117,111,116,101,32,99,104,97,114,97,99,116,101,114,92,110,32,32,32,32,105,102,32,40,115,117,98,115,116,114,105,110,103,32,61,61,61,32,92,34,39,39,92,34,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,92,34,39,92,34,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,102,105,114,115,116,67,104,97,114,97,99,116,101,114,32,61,32,115,117,98,115,116,114,105,110,103,91,48,93,59,92,110,92,110,32,32,32,32,105,102,32,40,102,105,114,115,116,67,104,97,114,97,99,116,101,114,32,61,61,61,32,92,34,39,92,34,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,101,97,110,69,115,99,97,112,101,100,83,116,114,105,110,103,40,115,117,98,115,116,114,105,110,103,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,114,32,61,32,95,108,105,98,95,102,111,114,109,97,116,95,102,111,114,109,97,116,116,101,114,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,91,102,105,114,115,116,67,104,97,114,97,99,116,101,114,93,59,92,110,92,110,32,32,32,32,105,102,32,40,102,111,114,109,97,116,116,101,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,111,112,116,105,111,110,115,46,117,115,101,65,100,100,105,116,105,111,110,97,108,87,101,101,107,89,101,97,114,84,111,107,101,110,115,32,38,38,32,40,48,44,95,108,105,98,95,112,114,111,116,101,99,116,101,100,84,111,107,101,110,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,105,115,80,114,111,116,101,99,116,101,100,87,101,101,107,89,101,97,114,84,111,107,101,110,41,40,115,117,98,115,116,114,105,110,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,108,105,98,95,112,114,111,116,101,99,116,101,100,84,111,107,101,110,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,116,104,114,111,119,80,114,111,116,101,99,116,101,100,69,114,114,111,114,41,40,115,117,98,115,116,114,105,110,103,44,32,100,105,114,116,121,70,111,114,109,97,116,83,116,114,44,32,100,105,114,116,121,68,97,116,101,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,111,112,116,105,111,110,115,46,117,115,101,65,100,100,105,116,105,111,110,97,108,68,97,121,79,102,89,101,97,114,84,111,107,101,110,115,32,38,38,32,40,48,44,95,108,105,98,95,112,114,111,116,101,99,116,101,100,84,111,107,101,110,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,105,115,80,114,111,116,101,99,116,101,100,68,97,121,79,102,89,101,97,114,84,111,107,101,110,41,40,115,117,98,115,116,114,105,110,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,40,48,44,95,108,105,98,95,112,114,111,116,101,99,116,101,100,84,111,107,101,110,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,46,116,104,114,111,119,80,114,111,116,101,99,116,101,100,69,114,114,111,114,41,40,115,117,98,115,116,114,105,110,103,44,32,100,105,114,116,121,70,111,114,109,97,116,83,116,114,44,32,100,105,114,116,121,68,97,116,101,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,116,101,114,40,117,116,99,68,97,116,101,44,32,115,117,98,115,116,114,105,110,103,44,32,108,111,99,97,108,101,46,108,111,99,97,108,105,122,101,44,32,102,111,114,109,97,116,116,101,114,79,112,116,105,111,110,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,102,105,114,115,116,67,104,97,114,97,99,116,101,114,46,109,97,116,99,104,40,117,110,101,115,99,97,112,101,100,76,97,116,105,110,67,104,97,114,97,99,116,101,114,82,101,103,69,120,112,41,41,32,123,92,110,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,39,70,111,114,109,97,116,32,115,116,114,105,110,103,32,99,111,110,116,97,105,110,115,32,97,110,32,117,110,101,115,99,97,112,101,100,32,108,97,116,105,110,32,97,108,112,104,97,98,101,116,32,99,104,97,114,97,99,116,101,114,32,96,39,32,43,32,102,105,114,115,116,67,104,97,114,97,99,116,101,114,32,43,32,39,96,39,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,115,117,98,115,116,114,105,110,103,59,92,110,32,32,125,41,46,106,111,105,110,40,39,39,41,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,101,97,110,69,115,99,97,112,101,100,83,116,114,105,110,103,40,105,110,112,117,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,110,112,117,116,46,109,97,116,99,104,40,101,115,99,97,112,101,100,83,116,114,105,110,103,82,101,103,69,120,112,41,91,49,93,46,114,101,112,108,97,99,101,40,100,111,117,98,108,101,81,117,111,116,101,82,101,103,69,120,112,44,32,92,34,39,92,34,41,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,102,111,114,109,97,116,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,105,115,86,97,108,105,100,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,105,115,86,97,108,105,100,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,115,86,97,108,105,100,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,42,92,110,32,42,32,64,110,97,109,101,32,105,115,86,97,108,105,100,92,110,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,109,109,111,110,32,72,101,108,112,101,114,115,92,110,32,42,32,64,115,117,109,109,97,114,121,32,73,115,32,116,104,101,32,103,105,118,101,110,32,100,97,116,101,32,118,97,108,105,100,63,92,110,32,42,92,110,32,42,32,64,100,101,115,99,114,105,112,116,105,111,110,92,110,32,42,32,82,101,116,117,114,110,115,32,102,97,108,115,101,32,105,102,32,97,114,103,117,109,101,110,116,32,105,115,32,73,110,118,97,108,105,100,32,68,97,116,101,32,97,110,100,32,116,114,117,101,32,111,116,104,101,114,119,105,115,101,46,92,110,32,42,32,65,114,103,117,109,101,110,116,32,105,115,32,99,111,110,118,101,114,116,101,100,32,116,111,32,68,97,116,101,32,117,115,105,110,103,32,96,116,111,68,97,116,101,96,46,32,83,101,101,32,91,116,111,68,97,116,101,93,123,64,108,105,110,107,32,104,116,116,112,115,58,47,47,100,97,116,101,45,102,110,115,46,111,114,103,47,100,111,99,115,47,116,111,68,97,116,101,125,92,110,32,42,32,73,110,118,97,108,105,100,32,68,97,116,101,32,105,115,32,97,32,68,97,116,101,44,32,119,104,111,115,101,32,116,105,109,101,32,118,97,108,117,101,32,105,115,32,78,97,78,46,92,110,32,42,92,110,32,42,32,84,105,109,101,32,118,97,108,117,101,32,111,102,32,68,97,116,101,58,32,104,116,116,112,58,47,47,101,115,53,46,103,105,116,104,117,98,46,105,111,47,35,120,49,53,46,57,46,49,46,49,92,110,32,42,92,110,32,42,32,35,35,35,32,118,50,46,48,46,48,32,98,114,101,97,107,105,110,103,32,99,104,97,110,103,101,115,58,92,110,32,42,92,110,32,42,32,45,32,91,67,104,97,110,103,101,115,32,116,104,97,116,32,97,114,101,32,99,111,109,109,111,110,32,102,111,114,32,116,104,101,32,119,104,111,108,101,32,108,105,98,114,97,114,121,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,97,116,101,45,102,110,115,47,100,97,116,101,45,102,110,115,47,98,108,111,98,47,109,97,115,116,101,114,47,100,111,99,115,47,117,112,103,114,97,100,101,71,117,105,100,101,46,109,100,35,67,111,109,109,111,110,45,67,104,97,110,103,101,115,41,46,92,110,32,42,92,110,32,42,32,45,32,78,111,119,32,96,105,115,86,97,108,105,100,96,32,100,111,101,115,110,39,116,32,116,104,114,111,119,32,97,110,32,101,120,99,101,112,116,105,111,110,92,110,32,42,32,32,32,105,102,32,116,104,101,32,102,105,114,115,116,32,97,114,103,117,109,101,110,116,32,105,115,32,110,111,116,32,97,110,32,105,110,115,116,97,110,99,101,32,111,102,32,68,97,116,101,46,92,110,32,42,32,32,32,73,110,115,116,101,97,100,44,32,97,114,103,117,109,101,110,116,32,105,115,32,99,111,110,118,101,114,116,101,100,32,98,101,102,111,114,101,104,97,110,100,32,117,115,105,110,103,32,96,116,111,68,97,116,101,96,46,92,110,32,42,92,110,32,42,32,32,32,69,120,97,109,112,108,101,115,58,92,110,32,42,92,110,32,42,32,32,32,124,32,96,105,115,86,97,108,105,100,96,32,97,114,103,117,109,101,110,116,32,32,32,32,32,32,32,32,124,32,66,101,102,111,114,101,32,118,50,46,48,46,48,32,124,32,118,50,46,48,46,48,32,111,110,119,97,114,100,32,124,92,110,32,42,32,32,32,124,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,124,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,124,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,124,92,110,32,42,32,32,32,124,32,96,110,101,119,32,68,97,116,101,40,41,96,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,96,116,114,117,101,96,32,32,32,32,32,32,32,32,124,32,96,116,114,117,101,96,32,32,32,32,32,32,32,32,124,92,110,32,42,32,32,32,124,32,96,110,101,119,32,68,97,116,101,40,39,50,48,49,54,45,48,49,45,48,49,39,41,96,32,32,124,32,96,116,114,117,101,96,32,32,32,32,32,32,32,32,124,32,96,116,114,117,101,96,32,32,32,32,32,32,32,32,124,92,110,32,42,32,32,32,124,32,96,110,101,119,32,68,97,116,101,40,39,39,41,96,32,32,32,32,32,32,32,32,32,32,32,32,124,32,96,102,97,108,115,101,96,32,32,32,32,32,32,32,124,32,96,102,97,108,115,101,96,32,32,32,32,32,32,32,124,92,110,32,42,32,32,32,124,32,96,110,101,119,32,68,97,116,101,40,49,52,56,56,51,55,48,56,51,53,48,56,49,41,96,32,124,32,96,116,114,117,101,96,32,32,32,32,32,32,32,32,124,32,96,116,114,117,101,96,32,32,32,32,32,32,32,32,124,92,110,32,42,32,32,32,124,32,96,110,101,119,32,68,97,116,101,40,78,97,78,41,96,32,32,32,32,32,32,32,32,32,32,32,124,32,96,102,97,108,115,101,96,32,32,32,32,32,32,32,124,32,96,102,97,108,115,101,96,32,32,32,32,32,32,32,124,92,110,32,42,32,32,32,124,32,96,39,50,48,49,54,45,48,49,45,48,49,39,96,32,32,32,32,32,32,32,32,32,32,32,32,124,32,96,84,121,112,101,69,114,114,111,114,96,32,32,32,124,32,96,102,97,108,115,101,96,32,32,32,32,32,32,32,124,92,110,32,42,32,32,32,124,32,96,39,39,96,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,96,84,121,112,101,69,114,114,111,114,96,32,32,32,124,32,96,102,97,108,115,101,96,32,32,32,32,32,32,32,124,92,110,32,42,32,32,32,124,32,96,49,52,56,56,51,55,48,56,51,53,48,56,49,96,32,32,32,32,32,32,32,32,32,32,32,124,32,96,84,121,112,101,69,114,114,111,114,96,32,32,32,124,32,96,116,114,117,101,96,32,32,32,32,32,32,32,32,124,92,110,32,42,32,32,32,124,32,96,78,97,78,96,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,96,84,121,112,101,69,114,114,111,114,96,32,32,32,124,32,96,102,97,108,115,101,96,32,32,32,32,32,32,32,124,92,110,32,42,92,110,32,42,32,32,32,87,101,32,105,110,116,114,111,100,117,99,101,32,116,104,105,115,32,99,104,97,110,103,101,32,116,111,32,109,97,107,101,32,42,100,97,116,101,45,102,110,115,42,32,99,111,110,115,105,115,116,101,110,116,32,119,105,116,104,32,69,67,77,65,83,99,114,105,112,116,32,98,101,104,97,118,105,111,114,92,110,32,42,32,32,32,116,104,97,116,32,116,114,121,32,116,111,32,99,111,101,114,99,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,116,104,101,32,101,120,112,101,99,116,101,100,32,116,121,112,101,92,110,32,42,32,32,32,40,119,104,105,99,104,32,105,115,32,97,108,115,111,32,116,104,101,32,99,97,115,101,32,119,105,116,104,32,111,116,104,101,114,32,42,100,97,116,101,45,102,110,115,42,32,102,117,110,99,116,105,111,110,115,41,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,42,125,32,100,97,116,101,32,45,32,116,104,101,32,100,97,116,101,32,116,111,32,99,104,101,99,107,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,66,111,111,108,101,97,110,125,32,116,104,101,32,100,97,116,101,32,105,115,32,118,97,108,105,100,92,110,32,42,32,64,116,104,114,111,119,115,32,123,84,121,112,101,69,114,114,111,114,125,32,49,32,97,114,103,117,109,101,110,116,32,114,101,113,117,105,114,101,100,92,110,32,42,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,32,47,47,32,70,111,114,32,116,104,101,32,118,97,108,105,100,32,100,97,116,101,58,92,110,32,42,32,118,97,114,32,114,101,115,117,108,116,32,61,32,105,115,86,97,108,105,100,40,110,101,119,32,68,97,116,101,40,50,48,49,52,44,32,49,44,32,51,49,41,41,92,110,32,42,32,47,47,61,62,32,116,114,117,101,92,110,32,42,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,32,47,47,32,70,111,114,32,116,104,101,32,118,97,108,117,101,44,32,99,111,110,118,101,114,116,97,98,108,101,32,105,110,116,111,32,97,32,100,97,116,101,58,92,110,32,42,32,118,97,114,32,114,101,115,117,108,116,32,61,32,105,115,86,97,108,105,100,40,49,51,57,51,56,48,52,56,48,48,48,48,48,41,92,110,32,42,32,47,47,61,62,32,116,114,117,101,92,110,32,42,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,32,47,47,32,70,111,114,32,116,104,101,32,105,110,118,97,108,105,100,32,100,97,116,101,58,92,110,32,42,32,118,97,114,32,114,101,115,117,108,116,32,61,32,105,115,86,97,108,105,100,40,110,101,119,32,68,97,116,101,40,39,39,41,41,92,110,32,42,32,47,47,61,62,32,102,97,108,115,101,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,86,97,108,105,100,40,100,105,114,116,121,68,97,116,101,41,32,123,92,110,32,32,40,48,44,95,108,105,98,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,49,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,118,97,114,32,100,97,116,101,32,61,32,40,48,44,95,116,111,68,97,116,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,105,114,116,121,68,97,116,101,41,59,92,110,32,32,114,101,116,117,114,110,32,33,105,115,78,97,78,40,100,97,116,101,41,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,105,115,86,97,108,105,100,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,70,111,114,109,97,116,76,111,110,103,70,110,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,70,111,114,109,97,116,76,111,110,103,70,110,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,117,105,108,100,70,111,114,109,97,116,76,111,110,103,70,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,98,117,105,108,100,70,111,114,109,97,116,76,111,110,103,70,110,40,97,114,103,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,100,105,114,116,121,79,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,100,105,114,116,121,79,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,119,105,100,116,104,32,61,32,111,112,116,105,111,110,115,46,119,105,100,116,104,32,63,32,83,116,114,105,110,103,40,111,112,116,105,111,110,115,46,119,105,100,116,104,41,32,58,32,97,114,103,115,46,100,101,102,97,117,108,116,87,105,100,116,104,59,92,110,32,32,32,32,118,97,114,32,102,111,114,109,97,116,32,61,32,97,114,103,115,46,102,111,114,109,97,116,115,91,119,105,100,116,104,93,32,124,124,32,97,114,103,115,46,102,111,114,109,97,116,115,91,97,114,103,115,46,100,101,102,97,117,108,116,87,105,100,116,104,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,70,111,114,109,97,116,76,111,110,103,70,110,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,76,111,99,97,108,105,122,101,70,110,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,76,111,99,97,108,105,122,101,70,110,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,117,105,108,100,76,111,99,97,108,105,122,101,70,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,98,117,105,108,100,76,111,99,97,108,105,122,101,70,110,40,97,114,103,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,100,105,114,116,121,73,110,100,101,120,44,32,100,105,114,116,121,79,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,100,105,114,116,121,79,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,99,111,110,116,101,120,116,32,61,32,111,112,116,105,111,110,115,46,99,111,110,116,101,120,116,32,63,32,83,116,114,105,110,103,40,111,112,116,105,111,110,115,46,99,111,110,116,101,120,116,41,32,58,32,39,115,116,97,110,100,97,108,111,110,101,39,59,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,115,65,114,114,97,121,59,92,110,92,110,32,32,32,32,105,102,32,40,99,111,110,116,101,120,116,32,61,61,61,32,39,102,111,114,109,97,116,116,105,110,103,39,32,38,38,32,97,114,103,115,46,102,111,114,109,97,116,116,105,110,103,86,97,108,117,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,87,105,100,116,104,32,61,32,97,114,103,115,46,100,101,102,97,117,108,116,70,111,114,109,97,116,116,105,110,103,87,105,100,116,104,32,124,124,32,97,114,103,115,46,100,101,102,97,117,108,116,87,105,100,116,104,59,92,110,32,32,32,32,32,32,118,97,114,32,119,105,100,116,104,32,61,32,111,112,116,105,111,110,115,46,119,105,100,116,104,32,63,32,83,116,114,105,110,103,40,111,112,116,105,111,110,115,46,119,105,100,116,104,41,32,58,32,100,101,102,97,117,108,116,87,105,100,116,104,59,92,110,32,32,32,32,32,32,118,97,108,117,101,115,65,114,114,97,121,32,61,32,97,114,103,115,46,102,111,114,109,97,116,116,105,110,103,86,97,108,117,101,115,91,119,105,100,116,104,93,32,124,124,32,97,114,103,115,46,102,111,114,109,97,116,116,105,110,103,86,97,108,117,101,115,91,100,101,102,97,117,108,116,87,105,100,116,104,93,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,100,101,102,97,117,108,116,87,105,100,116,104,32,61,32,97,114,103,115,46,100,101,102,97,117,108,116,87,105,100,116,104,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,95,119,105,100,116,104,32,61,32,111,112,116,105,111,110,115,46,119,105,100,116,104,32,63,32,83,116,114,105,110,103,40,111,112,116,105,111,110,115,46,119,105,100,116,104,41,32,58,32,97,114,103,115,46,100,101,102,97,117,108,116,87,105,100,116,104,59,92,110,92,110,32,32,32,32,32,32,118,97,108,117,101,115,65,114,114,97,121,32,61,32,97,114,103,115,46,118,97,108,117,101,115,91,95,119,105,100,116,104,93,32,124,124,32,97,114,103,115,46,118,97,108,117,101,115,91,95,100,101,102,97,117,108,116,87,105,100,116,104,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,97,114,103,115,46,97,114,103,117,109,101,110,116,67,97,108,108,98,97,99,107,32,63,32,97,114,103,115,46,97,114,103,117,109,101,110,116,67,97,108,108,98,97,99,107,40,100,105,114,116,121,73,110,100,101,120,41,32,58,32,100,105,114,116,121,73,110,100,101,120,59,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,115,65,114,114,97,121,91,105,110,100,101,120,93,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,76,111,99,97,108,105,122,101,70,110,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,77,97,116,99,104,70,110,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,77,97,116,99,104,70,110,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,117,105,108,100,77,97,116,99,104,70,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,98,117,105,108,100,77,97,116,99,104,70,110,40,97,114,103,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,100,105,114,116,121,83,116,114,105,110,103,44,32,100,105,114,116,121,79,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,114,105,110,103,32,61,32,83,116,114,105,110,103,40,100,105,114,116,121,83,116,114,105,110,103,41,59,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,100,105,114,116,121,79,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,119,105,100,116,104,32,61,32,111,112,116,105,111,110,115,46,119,105,100,116,104,59,92,110,32,32,32,32,118,97,114,32,109,97,116,99,104,80,97,116,116,101,114,110,32,61,32,119,105,100,116,104,32,38,38,32,97,114,103,115,46,109,97,116,99,104,80,97,116,116,101,114,110,115,91,119,105,100,116,104,93,32,124,124,32,97,114,103,115,46,109,97,116,99,104,80,97,116,116,101,114,110,115,91,97,114,103,115,46,100,101,102,97,117,108,116,77,97,116,99,104,87,105,100,116,104,93,59,92,110,32,32,32,32,118,97,114,32,109,97,116,99,104,82,101,115,117,108,116,32,61,32,115,116,114,105,110,103,46,109,97,116,99,104,40,109,97,116,99,104,80,97,116,116,101,114,110,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,109,97,116,99,104,82,101,115,117,108,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,109,97,116,99,104,101,100,83,116,114,105,110,103,32,61,32,109,97,116,99,104,82,101,115,117,108,116,91,48,93,59,92,110,32,32,32,32,118,97,114,32,112,97,114,115,101,80,97,116,116,101,114,110,115,32,61,32,119,105,100,116,104,32,38,38,32,97,114,103,115,46,112,97,114,115,101,80,97,116,116,101,114,110,115,91,119,105,100,116,104,93,32,124,124,32,97,114,103,115,46,112,97,114,115,101,80,97,116,116,101,114,110,115,91,97,114,103,115,46,100,101,102,97,117,108,116,80,97,114,115,101,87,105,100,116,104,93,59,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,59,92,110,92,110,32,32,32,32,105,102,32,40,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,112,97,114,115,101,80,97,116,116,101,114,110,115,41,32,61,61,61,32,39,91,111,98,106,101,99,116,32,65,114,114,97,121,93,39,41,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,102,105,110,100,73,110,100,101,120,40,112,97,114,115,101,80,97,116,116,101,114,110,115,44,32,102,117,110,99,116,105,111,110,32,40,112,97,116,116,101,114,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,116,116,101,114,110,46,116,101,115,116,40,109,97,116,99,104,101,100,83,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,102,105,110,100,75,101,121,40,112,97,114,115,101,80,97,116,116,101,114,110,115,44,32,102,117,110,99,116,105,111,110,32,40,112,97,116,116,101,114,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,116,116,101,114,110,46,116,101,115,116,40,109,97,116,99,104,101,100,83,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,108,117,101,32,61,32,97,114,103,115,46,118,97,108,117,101,67,97,108,108,98,97,99,107,32,63,32,97,114,103,115,46,118,97,108,117,101,67,97,108,108,98,97,99,107,40,118,97,108,117,101,41,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,118,97,108,117,101,32,61,32,111,112,116,105,111,110,115,46,118,97,108,117,101,67,97,108,108,98,97,99,107,32,63,32,111,112,116,105,111,110,115,46,118,97,108,117,101,67,97,108,108,98,97,99,107,40,118,97,108,117,101,41,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,114,101,115,116,58,32,115,116,114,105,110,103,46,115,108,105,99,101,40,109,97,116,99,104,101,100,83,116,114,105,110,103,46,108,101,110,103,116,104,41,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,105,110,100,75,101,121,40,111,98,106,101,99,116,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,105,102,32,40,111,98,106,101,99,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,107,101,121,41,32,38,38,32,112,114,101,100,105,99,97,116,101,40,111,98,106,101,99,116,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,107,101,121,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,105,110,100,73,110,100,101,120,40,97,114,114,97,121,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,61,32,48,59,32,107,101,121,32,60,32,97,114,114,97,121,46,108,101,110,103,116,104,59,32,107,101,121,43,43,41,32,123,92,110,32,32,32,32,105,102,32,40,112,114,101,100,105,99,97,116,101,40,97,114,114,97,121,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,107,101,121,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,77,97,116,99,104,70,110,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,77,97,116,99,104,80,97,116,116,101,114,110,70,110,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,77,97,116,99,104,80,97,116,116,101,114,110,70,110,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,117,105,108,100,77,97,116,99,104,80,97,116,116,101,114,110,70,110,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,98,117,105,108,100,77,97,116,99,104,80,97,116,116,101,114,110,70,110,40,97,114,103,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,100,105,114,116,121,83,116,114,105,110,103,44,32,100,105,114,116,121,79,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,114,105,110,103,32,61,32,83,116,114,105,110,103,40,100,105,114,116,121,83,116,114,105,110,103,41,59,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,100,105,114,116,121,79,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,109,97,116,99,104,82,101,115,117,108,116,32,61,32,115,116,114,105,110,103,46,109,97,116,99,104,40,97,114,103,115,46,109,97,116,99,104,80,97,116,116,101,114,110,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,109,97,116,99,104,82,101,115,117,108,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,109,97,116,99,104,101,100,83,116,114,105,110,103,32,61,32,109,97,116,99,104,82,101,115,117,108,116,91,48,93,59,92,110,32,32,32,32,118,97,114,32,112,97,114,115,101,82,101,115,117,108,116,32,61,32,115,116,114,105,110,103,46,109,97,116,99,104,40,97,114,103,115,46,112,97,114,115,101,80,97,116,116,101,114,110,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,112,97,114,115,101,82,101,115,117,108,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,97,114,103,115,46,118,97,108,117,101,67,97,108,108,98,97,99,107,32,63,32,97,114,103,115,46,118,97,108,117,101,67,97,108,108,98,97,99,107,40,112,97,114,115,101,82,101,115,117,108,116,91,48,93,41,32,58,32,112,97,114,115,101,82,101,115,117,108,116,91,48,93,59,92,110,32,32,32,32,118,97,108,117,101,32,61,32,111,112,116,105,111,110,115,46,118,97,108,117,101,67,97,108,108,98,97,99,107,32,63,32,111,112,116,105,111,110,115,46,118,97,108,117,101,67,97,108,108,98,97,99,107,40,118,97,108,117,101,41,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,114,101,115,116,58,32,115,116,114,105,110,103,46,115,108,105,99,101,40,109,97,116,99,104,101,100,83,116,114,105,110,103,46,108,101,110,103,116,104,41,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,77,97,116,99,104,80,97,116,116,101,114,110,70,110,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,102,111,114,109,97,116,68,105,115,116,97,110,99,101,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,102,111,114,109,97,116,68,105,115,116,97,110,99,101,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,97,116,68,105,115,116,97,110,99,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,102,111,114,109,97,116,68,105,115,116,97,110,99,101,76,111,99,97,108,101,32,61,32,123,92,110,32,32,108,101,115,115,84,104,97,110,88,83,101,99,111,110,100,115,58,32,123,92,110,32,32,32,32,111,110,101,58,32,39,108,101,115,115,32,116,104,97,110,32,97,32,115,101,99,111,110,100,39,44,92,110,32,32,32,32,111,116,104,101,114,58,32,39,108,101,115,115,32,116,104,97,110,32,123,123,99,111,117,110,116,125,125,32,115,101,99,111,110,100,115,39,92,110,32,32,125,44,92,110,32,32,120,83,101,99,111,110,100,115,58,32,123,92,110,32,32,32,32,111,110,101,58,32,39,49,32,115,101,99,111,110,100,39,44,92,110,32,32,32,32,111,116,104,101,114,58,32,39,123,123,99,111,117,110,116,125,125,32,115,101,99,111,110,100,115,39,92,110,32,32,125,44,92,110,32,32,104,97,108,102,65,77,105,110,117,116,101,58,32,39,104,97,108,102,32,97,32,109,105,110,117,116,101,39,44,92,110,32,32,108,101,115,115,84,104,97,110,88,77,105,110,117,116,101,115,58,32,123,92,110,32,32,32,32,111,110,101,58,32,39,108,101,115,115,32,116,104,97,110,32,97,32,109,105,110,117,116,101,39,44,92,110,32,32,32,32,111,116,104,101,114,58,32,39,108,101,115,115,32,116,104,97,110,32,123,123,99,111,117,110,116,125,125,32,109,105,110,117,116,101,115,39,92,110,32,32,125,44,92,110,32,32,120,77,105,110,117,116,101,115,58,32,123,92,110,32,32,32,32,111,110,101,58,32,39,49,32,109,105,110,117,116,101,39,44,92,110,32,32,32,32,111,116,104,101,114,58,32,39,123,123,99,111,117,110,116,125,125,32,109,105,110,117,116,101,115,39,92,110,32,32,125,44,92,110,32,32,97,98,111,117,116,88,72,111,117,114,115,58,32,123,92,110,32,32,32,32,111,110,101,58,32,39,97,98,111,117,116,32,49,32,104,111,117,114,39,44,92,110,32,32,32,32,111,116,104,101,114,58,32,39,97,98,111,117,116,32,123,123,99,111,117,110,116,125,125,32,104,111,117,114,115,39,92,110,32,32,125,44,92,110,32,32,120,72,111,117,114,115,58,32,123,92,110,32,32,32,32,111,110,101,58,32,39,49,32,104,111,117,114,39,44,92,110,32,32,32,32,111,116,104,101,114,58,32,39,123,123,99,111,117,110,116,125,125,32,104,111,117,114,115,39,92,110,32,32,125,44,92,110,32,32,120,68,97,121,115,58,32,123,92,110,32,32,32,32,111,110,101,58,32,39,49,32,100,97,121,39,44,92,110,32,32,32,32,111,116,104,101,114,58,32,39,123,123,99,111,117,110,116,125,125,32,100,97,121,115,39,92,110,32,32,125,44,92,110,32,32,97,98,111,117,116,88,87,101,101,107,115,58,32,123,92,110,32,32,32,32,111,110,101,58,32,39,97,98,111,117,116,32,49,32,119,101,101,107,39,44,92,110,32,32,32,32,111,116,104,101,114,58,32,39,97,98,111,117,116,32,123,123,99,111,117,110,116,125,125,32,119,101,101,107,115,39,92,110,32,32,125,44,92,110,32,32,120,87,101,101,107,115,58,32,123,92,110,32,32,32,32,111,110,101,58,32,39,49,32,119,101,101,107,39,44,92,110,32,32,32,32,111,116,104,101,114,58,32,39,123,123,99,111,117,110,116,125,125,32,119,101,101,107,115,39,92,110,32,32,125,44,92,110,32,32,97,98,111,117,116,88,77,111,110,116,104,115,58,32,123,92,110,32,32,32,32,111,110,101,58,32,39,97,98,111,117,116,32,49,32,109,111,110,116,104,39,44,92,110,32,32,32,32,111,116,104,101,114,58,32,39,97,98,111,117,116,32,123,123,99,111,117,110,116,125,125,32,109,111,110,116,104,115,39,92,110,32,32,125,44,92,110,32,32,120,77,111,110,116,104,115,58,32,123,92,110,32,32,32,32,111,110,101,58,32,39,49,32,109,111,110,116,104,39,44,92,110,32,32,32,32,111,116,104,101,114,58,32,39,123,123,99,111,117,110,116,125,125,32,109,111,110,116,104,115,39,92,110,32,32,125,44,92,110,32,32,97,98,111,117,116,88,89,101,97,114,115,58,32,123,92,110,32,32,32,32,111,110,101,58,32,39,97,98,111,117,116,32,49,32,121,101,97,114,39,44,92,110,32,32,32,32,111,116,104,101,114,58,32,39,97,98,111,117,116,32,123,123,99,111,117,110,116,125,125,32,121,101,97,114,115,39,92,110,32,32,125,44,92,110,32,32,120,89,101,97,114,115,58,32,123,92,110,32,32,32,32,111,110,101,58,32,39,49,32,121,101,97,114,39,44,92,110,32,32,32,32,111,116,104,101,114,58,32,39,123,123,99,111,117,110,116,125,125,32,121,101,97,114,115,39,92,110,32,32,125,44,92,110,32,32,111,118,101,114,88,89,101,97,114,115,58,32,123,92,110,32,32,32,32,111,110,101,58,32,39,111,118,101,114,32,49,32,121,101,97,114,39,44,92,110,32,32,32,32,111,116,104,101,114,58,32,39,111,118,101,114,32,123,123,99,111,117,110,116,125,125,32,121,101,97,114,115,39,92,110,32,32,125,44,92,110,32,32,97,108,109,111,115,116,88,89,101,97,114,115,58,32,123,92,110,32,32,32,32,111,110,101,58,32,39,97,108,109,111,115,116,32,49,32,121,101,97,114,39,44,92,110,32,32,32,32,111,116,104,101,114,58,32,39,97,108,109,111,115,116,32,123,123,99,111,117,110,116,125,125,32,121,101,97,114,115,39,92,110,32,32,125,92,110,125,59,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,68,105,115,116,97,110,99,101,40,116,111,107,101,110,44,32,99,111,117,110,116,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,32,32,118,97,114,32,114,101,115,117,108,116,59,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,102,111,114,109,97,116,68,105,115,116,97,110,99,101,76,111,99,97,108,101,91,116,111,107,101,110,93,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,114,101,115,117,108,116,32,61,32,102,111,114,109,97,116,68,105,115,116,97,110,99,101,76,111,99,97,108,101,91,116,111,107,101,110,93,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,99,111,117,110,116,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,114,101,115,117,108,116,32,61,32,102,111,114,109,97,116,68,105,115,116,97,110,99,101,76,111,99,97,108,101,91,116,111,107,101,110,93,46,111,110,101,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,115,117,108,116,32,61,32,102,111,114,109,97,116,68,105,115,116,97,110,99,101,76,111,99,97,108,101,91,116,111,107,101,110,93,46,111,116,104,101,114,46,114,101,112,108,97,99,101,40,39,123,123,99,111,117,110,116,125,125,39,44,32,99,111,117,110,116,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,111,112,116,105,111,110,115,46,97,100,100,83,117,102,102,105,120,41,32,123,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,99,111,109,112,97,114,105,115,111,110,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,105,110,32,39,32,43,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,43,32,39,32,97,103,111,39,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,102,111,114,109,97,116,68,105,115,116,97,110,99,101,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,102,111,114,109,97,116,76,111,110,103,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,102,111,114,109,97,116,76,111,110,103,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,98,117,105,108,100,70,111,114,109,97,116,76,111,110,103,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,95,108,105,98,47,98,117,105,108,100,70,111,114,109,97,116,76,111,110,103,70,110,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,70,111,114,109,97,116,76,111,110,103,70,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,118,97,114,32,100,97,116,101,70,111,114,109,97,116,115,32,61,32,123,92,110,32,32,102,117,108,108,58,32,39,69,69,69,69,44,32,77,77,77,77,32,100,111,44,32,121,39,44,92,110,32,32,108,111,110,103,58,32,39,77,77,77,77,32,100,111,44,32,121,39,44,92,110,32,32,109,101,100,105,117,109,58,32,39,77,77,77,32,100,44,32,121,39,44,92,110,32,32,115,104,111,114,116,58,32,39,77,77,47,100,100,47,121,121,121,121,39,92,110,125,59,92,110,118,97,114,32,116,105,109,101,70,111,114,109,97,116,115,32,61,32,123,92,110,32,32,102,117,108,108,58,32,39,104,58,109,109,58,115,115,32,97,32,122,122,122,122,39,44,92,110,32,32,108,111,110,103,58,32,39,104,58,109,109,58,115,115,32,97,32,122,39,44,92,110,32,32,109,101,100,105,117,109,58,32,39,104,58,109,109,58,115,115,32,97,39,44,92,110,32,32,115,104,111,114,116,58,32,39,104,58,109,109,32,97,39,92,110,125,59,92,110,118,97,114,32,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,32,61,32,123,92,110,32,32,102,117,108,108,58,32,92,34,123,123,100,97,116,101,125,125,32,39,97,116,39,32,123,123,116,105,109,101,125,125,92,34,44,92,110,32,32,108,111,110,103,58,32,92,34,123,123,100,97,116,101,125,125,32,39,97,116,39,32,123,123,116,105,109,101,125,125,92,34,44,92,110,32,32,109,101,100,105,117,109,58,32,39,123,123,100,97,116,101,125,125,44,32,123,123,116,105,109,101,125,125,39,44,92,110,32,32,115,104,111,114,116,58,32,39,123,123,100,97,116,101,125,125,44,32,123,123,116,105,109,101,125,125,39,92,110,125,59,92,110,118,97,114,32,102,111,114,109,97,116,76,111,110,103,32,61,32,123,92,110,32,32,100,97,116,101,58,32,40,48,44,95,108,105,98,95,98,117,105,108,100,70,111,114,109,97,116,76,111,110,103,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,123,92,110,32,32,32,32,102,111,114,109,97,116,115,58,32,100,97,116,101,70,111,114,109,97,116,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,87,105,100,116,104,58,32,39,102,117,108,108,39,92,110,32,32,125,41,44,92,110,32,32,116,105,109,101,58,32,40,48,44,95,108,105,98,95,98,117,105,108,100,70,111,114,109,97,116,76,111,110,103,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,123,92,110,32,32,32,32,102,111,114,109,97,116,115,58,32,116,105,109,101,70,111,114,109,97,116,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,87,105,100,116,104,58,32,39,102,117,108,108,39,92,110,32,32,125,41,44,92,110,32,32,100,97,116,101,84,105,109,101,58,32,40,48,44,95,108,105,98,95,98,117,105,108,100,70,111,114,109,97,116,76,111,110,103,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,123,92,110,32,32,32,32,102,111,114,109,97,116,115,58,32,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,87,105,100,116,104,58,32,39,102,117,108,108,39,92,110,32,32,125,41,92,110,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,102,111,114,109,97,116,76,111,110,103,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,102,111,114,109,97,116,76,111,110,103,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,102,111,114,109,97,116,82,101,108,97,116,105,118,101,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,102,111,114,109,97,116,82,101,108,97,116,105,118,101,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,102,111,114,109,97,116,82,101,108,97,116,105,118,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,102,111,114,109,97,116,82,101,108,97,116,105,118,101,76,111,99,97,108,101,32,61,32,123,92,110,32,32,108,97,115,116,87,101,101,107,58,32,92,34,39,108,97,115,116,39,32,101,101,101,101,32,39,97,116,39,32,112,92,34,44,92,110,32,32,121,101,115,116,101,114,100,97,121,58,32,92,34,39,121,101,115,116,101,114,100,97,121,32,97,116,39,32,112,92,34,44,92,110,32,32,116,111,100,97,121,58,32,92,34,39,116,111,100,97,121,32,97,116,39,32,112,92,34,44,92,110,32,32,116,111,109,111,114,114,111,119,58,32,92,34,39,116,111,109,111,114,114,111,119,32,97,116,39,32,112,92,34,44,92,110,32,32,110,101,120,116,87,101,101,107,58,32,92,34,101,101,101,101,32,39,97,116,39,32,112,92,34,44,92,110,32,32,111,116,104,101,114,58,32,39,80,39,92,110,125,59,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,82,101,108,97,116,105,118,101,40,116,111,107,101,110,44,32,95,100,97,116,101,44,32,95,98,97,115,101,68,97,116,101,44,32,95,111,112,116,105,111,110,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,82,101,108,97,116,105,118,101,76,111,99,97,108,101,91,116,111,107,101,110,93,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,102,111,114,109,97,116,82,101,108,97,116,105,118,101,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,108,111,99,97,108,105,122,101,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,108,111,99,97,108,105,122,101,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,98,117,105,108,100,76,111,99,97,108,105,122,101,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,95,108,105,98,47,98,117,105,108,100,76,111,99,97,108,105,122,101,70,110,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,76,111,99,97,108,105,122,101,70,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,118,97,114,32,101,114,97,86,97,108,117,101,115,32,61,32,123,92,110,32,32,110,97,114,114,111,119,58,32,91,39,66,39,44,32,39,65,39,93,44,92,110,32,32,97,98,98,114,101,118,105,97,116,101,100,58,32,91,39,66,67,39,44,32,39,65,68,39,93,44,92,110,32,32,119,105,100,101,58,32,91,39,66,101,102,111,114,101,32,67,104,114,105,115,116,39,44,32,39,65,110,110,111,32,68,111,109,105,110,105,39,93,92,110,125,59,92,110,118,97,114,32,113,117,97,114,116,101,114,86,97,108,117,101,115,32,61,32,123,92,110,32,32,110,97,114,114,111,119,58,32,91,39,49,39,44,32,39,50,39,44,32,39,51,39,44,32,39,52,39,93,44,92,110,32,32,97,98,98,114,101,118,105,97,116,101,100,58,32,91,39,81,49,39,44,32,39,81,50,39,44,32,39,81,51,39,44,32,39,81,52,39,93,44,92,110,32,32,119,105,100,101,58,32,91,39,49,115,116,32,113,117,97,114,116,101,114,39,44,32,39,50,110,100,32,113,117,97,114,116,101,114,39,44,32,39,51,114,100,32,113,117,97,114,116,101,114,39,44,32,39,52,116,104,32,113,117,97,114,116,101,114,39,93,32,47,47,32,78,111,116,101,58,32,105,110,32,69,110,103,108,105,115,104,44,32,116,104,101,32,110,97,109,101,115,32,111,102,32,100,97,121,115,32,111,102,32,116,104,101,32,119,101,101,107,32,97,110,100,32,109,111,110,116,104,115,32,97,114,101,32,99,97,112,105,116,97,108,105,122,101,100,46,92,110,32,32,47,47,32,73,102,32,121,111,117,32,97,114,101,32,109,97,107,105,110,103,32,97,32,110,101,119,32,108,111,99,97,108,101,32,98,97,115,101,100,32,111,110,32,116,104,105,115,32,111,110,101,44,32,99,104,101,99,107,32,105,102,32,116,104,101,32,115,97,109,101,32,105,115,32,116,114,117,101,32,102,111,114,32,116,104,101,32,108,97,110,103,117,97,103,101,32,121,111,117,39,114,101,32,119,111,114,107,105,110,103,32,111,110,46,92,110,32,32,47,47,32,71,101,110,101,114,97,108,108,121,44,32,102,111,114,109,97,116,116,101,100,32,100,97,116,101,115,32,115,104,111,117,108,100,32,108,111,111,107,32,108,105,107,101,32,116,104,101,121,32,97,114,101,32,105,110,32,116,104,101,32,109,105,100,100,108,101,32,111,102,32,97,32,115,101,110,116,101,110,99,101,44,92,110,32,32,47,47,32,101,46,103,46,32,105,110,32,83,112,97,110,105,115,104,32,108,97,110,103,117,97,103,101,32,116,104,101,32,119,101,101,107,100,97,121,115,32,97,110,100,32,109,111,110,116,104,115,32,115,104,111,117,108,100,32,98,101,32,105,110,32,116,104,101,32,108,111,119,101,114,99,97,115,101,46,92,110,92,110,125,59,92,110,118,97,114,32,109,111,110,116,104,86,97,108,117,101,115,32,61,32,123,92,110,32,32,110,97,114,114,111,119,58,32,91,39,74,39,44,32,39,70,39,44,32,39,77,39,44,32,39,65,39,44,32,39,77,39,44,32,39,74,39,44,32,39,74,39,44,32,39,65,39,44,32,39,83,39,44,32,39,79,39,44,32,39,78,39,44,32,39,68,39,93,44,92,110,32,32,97,98,98,114,101,118,105,97,116,101,100,58,32,91,39,74,97,110,39,44,32,39,70,101,98,39,44,32,39,77,97,114,39,44,32,39,65,112,114,39,44,32,39,77,97,121,39,44,32,39,74,117,110,39,44,32,39,74,117,108,39,44,32,39,65,117,103,39,44,32,39,83,101,112,39,44,32,39,79,99,116,39,44,32,39,78,111,118,39,44,32,39,68,101,99,39,93,44,92,110,32,32,119,105,100,101,58,32,91,39,74,97,110,117,97,114,121,39,44,32,39,70,101,98,114,117,97,114,121,39,44,32,39,77,97,114,99,104,39,44,32,39,65,112,114,105,108,39,44,32,39,77,97,121,39,44,32,39,74,117,110,101,39,44,32,39,74,117,108,121,39,44,32,39,65,117,103,117,115,116,39,44,32,39,83,101,112,116,101,109,98,101,114,39,44,32,39,79,99,116,111,98,101,114,39,44,32,39,78,111,118,101,109,98,101,114,39,44,32,39,68,101,99,101,109,98,101,114,39,93,92,110,125,59,92,110,118,97,114,32,100,97,121,86,97,108,117,101,115,32,61,32,123,92,110,32,32,110,97,114,114,111,119,58,32,91,39,83,39,44,32,39,77,39,44,32,39,84,39,44,32,39,87,39,44,32,39,84,39,44,32,39,70,39,44,32,39,83,39,93,44,92,110,32,32,115,104,111,114,116,58,32,91,39,83,117,39,44,32,39,77,111,39,44,32,39,84,117,39,44,32,39,87,101,39,44,32,39,84,104,39,44,32,39,70,114,39,44,32,39,83,97,39,93,44,92,110,32,32,97,98,98,114,101,118,105,97,116,101,100,58,32,91,39,83,117,110,39,44,32,39,77,111,110,39,44,32,39,84,117,101,39,44,32,39,87,101,100,39,44,32,39,84,104,117,39,44,32,39,70,114,105,39,44,32,39,83,97,116,39,93,44,92,110,32,32,119,105,100,101,58,32,91,39,83,117,110,100,97,121,39,44,32,39,77,111,110,100,97,121,39,44,32,39,84,117,101,115,100,97,121,39,44,32,39,87,101,100,110,101,115,100,97,121,39,44,32,39,84,104,117,114,115,100,97,121,39,44,32,39,70,114,105,100,97,121,39,44,32,39,83,97,116,117,114,100,97,121,39,93,92,110,125,59,92,110,118,97,114,32,100,97,121,80,101,114,105,111,100,86,97,108,117,101,115,32,61,32,123,92,110,32,32,110,97,114,114,111,119,58,32,123,92,110,32,32,32,32,97,109,58,32,39,97,39,44,92,110,32,32,32,32,112,109,58,32,39,112,39,44,92,110,32,32,32,32,109,105,100,110,105,103,104,116,58,32,39,109,105,39,44,92,110,32,32,32,32,110,111,111,110,58,32,39,110,39,44,92,110,32,32,32,32,109,111,114,110,105,110,103,58,32,39,109,111,114,110,105,110,103,39,44,92,110,32,32,32,32,97,102,116,101,114,110,111,111,110,58,32,39,97,102,116,101,114,110,111,111,110,39,44,92,110,32,32,32,32,101,118,101,110,105,110,103,58,32,39,101,118,101,110,105,110,103,39,44,92,110,32,32,32,32,110,105,103,104,116,58,32,39,110,105,103,104,116,39,92,110,32,32,125,44,92,110,32,32,97,98,98,114,101,118,105,97,116,101,100,58,32,123,92,110,32,32,32,32,97,109,58,32,39,65,77,39,44,92,110,32,32,32,32,112,109,58,32,39,80,77,39,44,92,110,32,32,32,32,109,105,100,110,105,103,104,116,58,32,39,109,105,100,110,105,103,104,116,39,44,92,110,32,32,32,32,110,111,111,110,58,32,39,110,111,111,110,39,44,92,110,32,32,32,32,109,111,114,110,105,110,103,58,32,39,109,111,114,110,105,110,103,39,44,92,110,32,32,32,32,97,102,116,101,114,110,111,111,110,58,32,39,97,102,116,101,114,110,111,111,110,39,44,92,110,32,32,32,32,101,118,101,110,105,110,103,58,32,39,101,118,101,110,105,110,103,39,44,92,110,32,32,32,32,110,105,103,104,116,58,32,39,110,105,103,104,116,39,92,110,32,32,125,44,92,110,32,32,119,105,100,101,58,32,123,92,110,32,32,32,32,97,109,58,32,39,97,46,109,46,39,44,92,110,32,32,32,32,112,109,58,32,39,112,46,109,46,39,44,92,110,32,32,32,32,109,105,100,110,105,103,104,116,58,32,39,109,105,100,110,105,103,104,116,39,44,92,110,32,32,32,32,110,111,111,110,58,32,39,110,111,111,110,39,44,92,110,32,32,32,32,109,111,114,110,105,110,103,58,32,39,109,111,114,110,105,110,103,39,44,92,110,32,32,32,32,97,102,116,101,114,110,111,111,110,58,32,39,97,102,116,101,114,110,111,111,110,39,44,92,110,32,32,32,32,101,118,101,110,105,110,103,58,32,39,101,118,101,110,105,110,103,39,44,92,110,32,32,32,32,110,105,103,104,116,58,32,39,110,105,103,104,116,39,92,110,32,32,125,92,110,125,59,92,110,118,97,114,32,102,111,114,109,97,116,116,105,110,103,68,97,121,80,101,114,105,111,100,86,97,108,117,101,115,32,61,32,123,92,110,32,32,110,97,114,114,111,119,58,32,123,92,110,32,32,32,32,97,109,58,32,39,97,39,44,92,110,32,32,32,32,112,109,58,32,39,112,39,44,92,110,32,32,32,32,109,105,100,110,105,103,104,116,58,32,39,109,105,39,44,92,110,32,32,32,32,110,111,111,110,58,32,39,110,39,44,92,110,32,32,32,32,109,111,114,110,105,110,103,58,32,39,105,110,32,116,104,101,32,109,111,114,110,105,110,103,39,44,92,110,32,32,32,32,97,102,116,101,114,110,111,111,110,58,32,39,105,110,32,116,104,101,32,97,102,116,101,114,110,111,111,110,39,44,92,110,32,32,32,32,101,118,101,110,105,110,103,58,32,39,105,110,32,116,104,101,32,101,118,101,110,105,110,103,39,44,92,110,32,32,32,32,110,105,103,104,116,58,32,39,97,116,32,110,105,103,104,116,39,92,110,32,32,125,44,92,110,32,32,97,98,98,114,101,118,105,97,116,101,100,58,32,123,92,110,32,32,32,32,97,109,58,32,39,65,77,39,44,92,110,32,32,32,32,112,109,58,32,39,80,77,39,44,92,110,32,32,32,32,109,105,100,110,105,103,104,116,58,32,39,109,105,100,110,105,103,104,116,39,44,92,110,32,32,32,32,110,111,111,110,58,32,39,110,111,111,110,39,44,92,110,32,32,32,32,109,111,114,110,105,110,103,58,32,39,105,110,32,116,104,101,32,109,111,114,110,105,110,103,39,44,92,110,32,32,32,32,97,102,116,101,114,110,111,111,110,58,32,39,105,110,32,116,104,101,32,97,102,116,101,114,110,111,111,110,39,44,92,110,32,32,32,32,101,118,101,110,105,110,103,58,32,39,105,110,32,116,104,101,32,101,118,101,110,105,110,103,39,44,92,110,32,32,32,32,110,105,103,104,116,58,32,39,97,116,32,110,105,103,104,116,39,92,110,32,32,125,44,92,110,32,32,119,105,100,101,58,32,123,92,110,32,32,32,32,97,109,58,32,39,97,46,109,46,39,44,92,110,32,32,32,32,112,109,58,32,39,112,46,109,46,39,44,92,110,32,32,32,32,109,105,100,110,105,103,104,116,58,32,39,109,105,100,110,105,103,104,116,39,44,92,110,32,32,32,32,110,111,111,110,58,32,39,110,111,111,110,39,44,92,110,32,32,32,32,109,111,114,110,105,110,103,58,32,39,105,110,32,116,104,101,32,109,111,114,110,105,110,103,39,44,92,110,32,32,32,32,97,102,116,101,114,110,111,111,110,58,32,39,105,110,32,116,104,101,32,97,102,116,101,114,110,111,111,110,39,44,92,110,32,32,32,32,101,118,101,110,105,110,103,58,32,39,105,110,32,116,104,101,32,101,118,101,110,105,110,103,39,44,92,110,32,32,32,32,110,105,103,104,116,58,32,39,97,116,32,110,105,103,104,116,39,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,114,100,105,110,97,108,78,117,109,98,101,114,40,100,105,114,116,121,78,117,109,98,101,114,44,32,95,100,105,114,116,121,79,112,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,110,117,109,98,101,114,32,61,32,78,117,109,98,101,114,40,100,105,114,116,121,78,117,109,98,101,114,41,59,32,47,47,32,73,102,32,111,114,100,105,110,97,108,32,110,117,109,98,101,114,115,32,100,101,112,101,110,100,32,111,110,32,99,111,110,116,101,120,116,44,32,102,111,114,32,101,120,97,109,112,108,101,44,92,110,32,32,47,47,32,105,102,32,116,104,101,121,32,97,114,101,32,100,105,102,102,101,114,101,110,116,32,102,111,114,32,100,105,102,102,101,114,101,110,116,32,103,114,97,109,109,97,116,105,99,97,108,32,103,101,110,100,101,114,115,44,92,110,32,32,47,47,32,117,115,101,32,96,111,112,116,105,111,110,115,46,117,110,105,116,96,58,92,110,32,32,47,47,92,110,32,32,47,47,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,100,105,114,116,121,79,112,116,105,111,110,115,32,124,124,32,123,125,92,110,32,32,47,47,32,32,32,118,97,114,32,117,110,105,116,32,61,32,83,116,114,105,110,103,40,111,112,116,105,111,110,115,46,117,110,105,116,41,92,110,32,32,47,47,92,110,32,32,47,47,32,119,104,101,114,101,32,96,117,110,105,116,96,32,99,97,110,32,98,101,32,39,121,101,97,114,39,44,32,39,113,117,97,114,116,101,114,39,44,32,39,109,111,110,116,104,39,44,32,39,119,101,101,107,39,44,32,39,100,97,116,101,39,44,32,39,100,97,121,79,102,89,101,97,114,39,44,92,110,32,32,47,47,32,39,100,97,121,39,44,32,39,104,111,117,114,39,44,32,39,109,105,110,117,116,101,39,44,32,39,115,101,99,111,110,100,39,92,110,92,110,32,32,118,97,114,32,114,101,109,49,48,48,32,61,32,110,117,109,98,101,114,32,37,32,49,48,48,59,92,110,92,110,32,32,105,102,32,40,114,101,109,49,48,48,32,62,32,50,48,32,124,124,32,114,101,109,49,48,48,32,60,32,49,48,41,32,123,92,110,32,32,32,32,115,119,105,116,99,104,32,40,114,101,109,49,48,48,32,37,32,49,48,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,109,98,101,114,32,43,32,39,115,116,39,59,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,109,98,101,114,32,43,32,39,110,100,39,59,92,110,92,110,32,32,32,32,32,32,99,97,115,101,32,51,58,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,109,98,101,114,32,43,32,39,114,100,39,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,117,109,98,101,114,32,43,32,39,116,104,39,59,92,110,125,92,110,92,110,118,97,114,32,108,111,99,97,108,105,122,101,32,61,32,123,92,110,32,32,111,114,100,105,110,97,108,78,117,109,98,101,114,58,32,111,114,100,105,110,97,108,78,117,109,98,101,114,44,92,110,32,32,101,114,97,58,32,40,48,44,95,108,105,98,95,98,117,105,108,100,76,111,99,97,108,105,122,101,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,123,92,110,32,32,32,32,118,97,108,117,101,115,58,32,101,114,97,86,97,108,117,101,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,87,105,100,116,104,58,32,39,119,105,100,101,39,92,110,32,32,125,41,44,92,110,32,32,113,117,97,114,116,101,114,58,32,40,48,44,95,108,105,98,95,98,117,105,108,100,76,111,99,97,108,105,122,101,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,123,92,110,32,32,32,32,118,97,108,117,101,115,58,32,113,117,97,114,116,101,114,86,97,108,117,101,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,87,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,97,114,103,117,109,101,110,116,67,97,108,108,98,97,99,107,58,32,102,117,110,99,116,105,111,110,32,40,113,117,97,114,116,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,78,117,109,98,101,114,40,113,117,97,114,116,101,114,41,32,45,32,49,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,92,110,32,32,109,111,110,116,104,58,32,40,48,44,95,108,105,98,95,98,117,105,108,100,76,111,99,97,108,105,122,101,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,123,92,110,32,32,32,32,118,97,108,117,101,115,58,32,109,111,110,116,104,86,97,108,117,101,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,87,105,100,116,104,58,32,39,119,105,100,101,39,92,110,32,32,125,41,44,92,110,32,32,100,97,121,58,32,40,48,44,95,108,105,98,95,98,117,105,108,100,76,111,99,97,108,105,122,101,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,123,92,110,32,32,32,32,118,97,108,117,101,115,58,32,100,97,121,86,97,108,117,101,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,87,105,100,116,104,58,32,39,119,105,100,101,39,92,110,32,32,125,41,44,92,110,32,32,100,97,121,80,101,114,105,111,100,58,32,40,48,44,95,108,105,98,95,98,117,105,108,100,76,111,99,97,108,105,122,101,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,123,92,110,32,32,32,32,118,97,108,117,101,115,58,32,100,97,121,80,101,114,105,111,100,86,97,108,117,101,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,87,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,102,111,114,109,97,116,116,105,110,103,86,97,108,117,101,115,58,32,102,111,114,109,97,116,116,105,110,103,68,97,121,80,101,114,105,111,100,86,97,108,117,101,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,70,111,114,109,97,116,116,105,110,103,87,105,100,116,104,58,32,39,119,105,100,101,39,92,110,32,32,125,41,92,110,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,108,111,99,97,108,105,122,101,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,108,111,99,97,108,105,122,101,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,109,97,116,99,104,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,109,97,116,99,104,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,98,117,105,108,100,77,97,116,99,104,80,97,116,116,101,114,110,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,95,108,105,98,47,98,117,105,108,100,77,97,116,99,104,80,97,116,116,101,114,110,70,110,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,77,97,116,99,104,80,97,116,116,101,114,110,70,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,98,117,105,108,100,77,97,116,99,104,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,95,108,105,98,47,98,117,105,108,100,77,97,116,99,104,70,110,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,95,108,105,98,47,98,117,105,108,100,77,97,116,99,104,70,110,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,118,97,114,32,109,97,116,99,104,79,114,100,105,110,97,108,78,117,109,98,101,114,80,97,116,116,101,114,110,32,61,32,47,94,40,92,92,100,43,41,40,116,104,124,115,116,124,110,100,124,114,100,41,63,47,105,59,92,110,118,97,114,32,112,97,114,115,101,79,114,100,105,110,97,108,78,117,109,98,101,114,80,97,116,116,101,114,110,32,61,32,47,92,92,100,43,47,105,59,92,110,118,97,114,32,109,97,116,99,104,69,114,97,80,97,116,116,101,114,110,115,32,61,32,123,92,110,32,32,110,97,114,114,111,119,58,32,47,94,40,98,124,97,41,47,105,44,92,110,32,32,97,98,98,114,101,118,105,97,116,101,100,58,32,47,94,40,98,92,92,46,63,92,92,115,63,99,92,92,46,63,124,98,92,92,46,63,92,92,115,63,99,92,92,46,63,92,92,115,63,101,92,92,46,63,124,97,92,92,46,63,92,92,115,63,100,92,92,46,63,124,99,92,92,46,63,92,92,115,63,101,92,92,46,63,41,47,105,44,92,110,32,32,119,105,100,101,58,32,47,94,40,98,101,102,111,114,101,32,99,104,114,105,115,116,124,98,101,102,111,114,101,32,99,111,109,109,111,110,32,101,114,97,124,97,110,110,111,32,100,111,109,105,110,105,124,99,111,109,109,111,110,32,101,114,97,41,47,105,92,110,125,59,92,110,118,97,114,32,112,97,114,115,101,69,114,97,80,97,116,116,101,114,110,115,32,61,32,123,92,110,32,32,97,110,121,58,32,91,47,94,98,47,105,44,32,47,94,40,97,124,99,41,47,105,93,92,110,125,59,92,110,118,97,114,32,109,97,116,99,104,81,117,97,114,116,101,114,80,97,116,116,101,114,110,115,32,61,32,123,92,110,32,32,110,97,114,114,111,119,58,32,47,94,91,49,50,51,52,93,47,105,44,92,110,32,32,97,98,98,114,101,118,105,97,116,101,100,58,32,47,94,113,91,49,50,51,52,93,47,105,44,92,110,32,32,119,105,100,101,58,32,47,94,91,49,50,51,52,93,40,116,104,124,115,116,124,110,100,124,114,100,41,63,32,113,117,97,114,116,101,114,47,105,92,110,125,59,92,110,118,97,114,32,112,97,114,115,101,81,117,97,114,116,101,114,80,97,116,116,101,114,110,115,32,61,32,123,92,110,32,32,97,110,121,58,32,91,47,49,47,105,44,32,47,50,47,105,44,32,47,51,47,105,44,32,47,52,47,105,93,92,110,125,59,92,110,118,97,114,32,109,97,116,99,104,77,111,110,116,104,80,97,116,116,101,114,110,115,32,61,32,123,92,110,32,32,110,97,114,114,111,119,58,32,47,94,91,106,102,109,97,115,111,110,100,93,47,105,44,92,110,32,32,97,98,98,114,101,118,105,97,116,101,100,58,32,47,94,40,106,97,110,124,102,101,98,124,109,97,114,124,97,112,114,124,109,97,121,124,106,117,110,124,106,117,108,124,97,117,103,124,115,101,112,124,111,99,116,124,110,111,118,124,100,101,99,41,47,105,44,92,110,32,32,119,105,100,101,58,32,47,94,40,106,97,110,117,97,114,121,124,102,101,98,114,117,97,114,121,124,109,97,114,99,104,124,97,112,114,105,108,124,109,97,121,124,106,117,110,101,124,106,117,108,121,124,97,117,103,117,115,116,124,115,101,112,116,101,109,98,101,114,124,111,99,116,111,98,101,114,124,110,111,118,101,109,98,101,114,124,100,101,99,101,109,98,101,114,41,47,105,92,110,125,59,92,110,118,97,114,32,112,97,114,115,101,77,111,110,116,104,80,97,116,116,101,114,110,115,32,61,32,123,92,110,32,32,110,97,114,114,111,119,58,32,91,47,94,106,47,105,44,32,47,94,102,47,105,44,32,47,94,109,47,105,44,32,47,94,97,47,105,44,32,47,94,109,47,105,44,32,47,94,106,47,105,44,32,47,94,106,47,105,44,32,47,94,97,47,105,44,32,47,94,115,47,105,44,32,47,94,111,47,105,44,32,47,94,110,47,105,44,32,47,94,100,47,105,93,44,92,110,32,32,97,110,121,58,32,91,47,94,106,97,47,105,44,32,47,94,102,47,105,44,32,47,94,109,97,114,47,105,44,32,47,94,97,112,47,105,44,32,47,94,109,97,121,47,105,44,32,47,94,106,117,110,47,105,44,32,47,94,106,117,108,47,105,44,32,47,94,97,117,47,105,44,32,47,94,115,47,105,44,32,47,94,111,47,105,44,32,47,94,110,47,105,44,32,47,94,100,47,105,93,92,110,125,59,92,110,118,97,114,32,109,97,116,99,104,68,97,121,80,97,116,116,101,114,110,115,32,61,32,123,92,110,32,32,110,97,114,114,111,119,58,32,47,94,91,115,109,116,119,102,93,47,105,44,92,110,32,32,115,104,111,114,116,58,32,47,94,40,115,117,124,109,111,124,116,117,124,119,101,124,116,104,124,102,114,124,115,97,41,47,105,44,92,110,32,32,97,98,98,114,101,118,105,97,116,101,100,58,32,47,94,40,115,117,110,124,109,111,110,124,116,117,101,124,119,101,100,124,116,104,117,124,102,114,105,124,115,97,116,41,47,105,44,92,110,32,32,119,105,100,101,58,32,47,94,40,115,117,110,100,97,121,124,109,111,110,100,97,121,124,116,117,101,115,100,97,121,124,119,101,100,110,101,115,100,97,121,124,116,104,117,114,115,100,97,121,124,102,114,105,100,97,121,124,115,97,116,117,114,100,97,121,41,47,105,92,110,125,59,92,110,118,97,114,32,112,97,114,115,101,68,97,121,80,97,116,116,101,114,110,115,32,61,32,123,92,110,32,32,110,97,114,114,111,119,58,32,91,47,94,115,47,105,44,32,47,94,109,47,105,44,32,47,94,116,47,105,44,32,47,94,119,47,105,44,32,47,94,116,47,105,44,32,47,94,102,47,105,44,32,47,94,115,47,105,93,44,92,110,32,32,97,110,121,58,32,91,47,94,115,117,47,105,44,32,47,94,109,47,105,44,32,47,94,116,117,47,105,44,32,47,94,119,47,105,44,32,47,94,116,104,47,105,44,32,47,94,102,47,105,44,32,47,94,115,97,47,105,93,92,110,125,59,92,110,118,97,114,32,109,97,116,99,104,68,97,121,80,101,114,105,111,100,80,97,116,116,101,114,110,115,32,61,32,123,92,110,32,32,110,97,114,114,111,119,58,32,47,94,40,97,124,112,124,109,105,124,110,124,40,105,110,32,116,104,101,124,97,116,41,32,40,109,111,114,110,105,110,103,124,97,102,116,101,114,110,111,111,110,124,101,118,101,110,105,110,103,124,110,105,103,104,116,41,41,47,105,44,92,110,32,32,97,110,121,58,32,47,94,40,91,97,112,93,92,92,46,63,92,92,115,63,109,92,92,46,63,124,109,105,100,110,105,103,104,116,124,110,111,111,110,124,40,105,110,32,116,104,101,124,97,116,41,32,40,109,111,114,110,105,110,103,124,97,102,116,101,114,110,111,111,110,124,101,118,101,110,105,110,103,124,110,105,103,104,116,41,41,47,105,92,110,125,59,92,110,118,97,114,32,112,97,114,115,101,68,97,121,80,101,114,105,111,100,80,97,116,116,101,114,110,115,32,61,32,123,92,110,32,32,97,110,121,58,32,123,92,110,32,32,32,32,97,109,58,32,47,94,97,47,105,44,92,110,32,32,32,32,112,109,58,32,47,94,112,47,105,44,92,110,32,32,32,32,109,105,100,110,105,103,104,116,58,32,47,94,109,105,47,105,44,92,110,32,32,32,32,110,111,111,110,58,32,47,94,110,111,47,105,44,92,110,32,32,32,32,109,111,114,110,105,110,103,58,32,47,109,111,114,110,105,110,103,47,105,44,92,110,32,32,32,32,97,102,116,101,114,110,111,111,110,58,32,47,97,102,116,101,114,110,111,111,110,47,105,44,92,110,32,32,32,32,101,118,101,110,105,110,103,58,32,47,101,118,101,110,105,110,103,47,105,44,92,110,32,32,32,32,110,105,103,104,116,58,32,47,110,105,103,104,116,47,105,92,110,32,32,125,92,110,125,59,92,110,118,97,114,32,109,97,116,99,104,32,61,32,123,92,110,32,32,111,114,100,105,110,97,108,78,117,109,98,101,114,58,32,40,48,44,95,108,105,98,95,98,117,105,108,100,77,97,116,99,104,80,97,116,116,101,114,110,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,123,92,110,32,32,32,32,109,97,116,99,104,80,97,116,116,101,114,110,58,32,109,97,116,99,104,79,114,100,105,110,97,108,78,117,109,98,101,114,80,97,116,116,101,114,110,44,92,110,32,32,32,32,112,97,114,115,101,80,97,116,116,101,114,110,58,32,112,97,114,115,101,79,114,100,105,110,97,108,78,117,109,98,101,114,80,97,116,116,101,114,110,44,92,110,32,32,32,32,118,97,108,117,101,67,97,108,108,98,97,99,107,58,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,114,115,101,73,110,116,40,118,97,108,117,101,44,32,49,48,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,92,110,32,32,101,114,97,58,32,40,48,44,95,108,105,98,95,98,117,105,108,100,77,97,116,99,104,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,123,92,110,32,32,32,32,109,97,116,99,104,80,97,116,116,101,114,110,115,58,32,109,97,116,99,104,69,114,97,80,97,116,116,101,114,110,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,77,97,116,99,104,87,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,112,97,114,115,101,80,97,116,116,101,114,110,115,58,32,112,97,114,115,101,69,114,97,80,97,116,116,101,114,110,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,80,97,114,115,101,87,105,100,116,104,58,32,39,97,110,121,39,92,110,32,32,125,41,44,92,110,32,32,113,117,97,114,116,101,114,58,32,40,48,44,95,108,105,98,95,98,117,105,108,100,77,97,116,99,104,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,123,92,110,32,32,32,32,109,97,116,99,104,80,97,116,116,101,114,110,115,58,32,109,97,116,99,104,81,117,97,114,116,101,114,80,97,116,116,101,114,110,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,77,97,116,99,104,87,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,112,97,114,115,101,80,97,116,116,101,114,110,115,58,32,112,97,114,115,101,81,117,97,114,116,101,114,80,97,116,116,101,114,110,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,80,97,114,115,101,87,105,100,116,104,58,32,39,97,110,121,39,44,92,110,32,32,32,32,118,97,108,117,101,67,97,108,108,98,97,99,107,58,32,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,32,43,32,49,59,92,110,32,32,32,32,125,92,110,32,32,125,41,44,92,110,32,32,109,111,110,116,104,58,32,40,48,44,95,108,105,98,95,98,117,105,108,100,77,97,116,99,104,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,123,92,110,32,32,32,32,109,97,116,99,104,80,97,116,116,101,114,110,115,58,32,109,97,116,99,104,77,111,110,116,104,80,97,116,116,101,114,110,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,77,97,116,99,104,87,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,112,97,114,115,101,80,97,116,116,101,114,110,115,58,32,112,97,114,115,101,77,111,110,116,104,80,97,116,116,101,114,110,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,80,97,114,115,101,87,105,100,116,104,58,32,39,97,110,121,39,92,110,32,32,125,41,44,92,110,32,32,100,97,121,58,32,40,48,44,95,108,105,98,95,98,117,105,108,100,77,97,116,99,104,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,123,92,110,32,32,32,32,109,97,116,99,104,80,97,116,116,101,114,110,115,58,32,109,97,116,99,104,68,97,121,80,97,116,116,101,114,110,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,77,97,116,99,104,87,105,100,116,104,58,32,39,119,105,100,101,39,44,92,110,32,32,32,32,112,97,114,115,101,80,97,116,116,101,114,110,115,58,32,112,97,114,115,101,68,97,121,80,97,116,116,101,114,110,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,80,97,114,115,101,87,105,100,116,104,58,32,39,97,110,121,39,92,110,32,32,125,41,44,92,110,32,32,100,97,121,80,101,114,105,111,100,58,32,40,48,44,95,108,105,98,95,98,117,105,108,100,77,97,116,99,104,70,110,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,123,92,110,32,32,32,32,109,97,116,99,104,80,97,116,116,101,114,110,115,58,32,109,97,116,99,104,68,97,121,80,101,114,105,111,100,80,97,116,116,101,114,110,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,77,97,116,99,104,87,105,100,116,104,58,32,39,97,110,121,39,44,92,110,32,32,32,32,112,97,114,115,101,80,97,116,116,101,114,110,115,58,32,112,97,114,115,101,68,97,121,80,101,114,105,111,100,80,97,116,116,101,114,110,115,44,92,110,32,32,32,32,100,101,102,97,117,108,116,80,97,114,115,101,87,105,100,116,104,58,32,39,97,110,121,39,92,110,32,32,125,41,92,110,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,109,97,116,99,104,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,109,97,116,99,104,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,102,111,114,109,97,116,68,105,115,116,97,110,99,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,108,105,98,47,102,111,114,109,97,116,68,105,115,116,97,110,99,101,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,102,111,114,109,97,116,68,105,115,116,97,110,99,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,102,111,114,109,97,116,76,111,110,103,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,108,105,98,47,102,111,114,109,97,116,76,111,110,103,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,102,111,114,109,97,116,76,111,110,103,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,102,111,114,109,97,116,82,101,108,97,116,105,118,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,108,105,98,47,102,111,114,109,97,116,82,101,108,97,116,105,118,101,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,102,111,114,109,97,116,82,101,108,97,116,105,118,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,108,111,99,97,108,105,122,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,108,105,98,47,108,111,99,97,108,105,122,101,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,108,111,99,97,108,105,122,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,109,97,116,99,104,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,108,105,98,47,109,97,116,99,104,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,95,108,105,98,47,109,97,116,99,104,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,42,92,110,32,42,32,64,116,121,112,101,32,123,76,111,99,97,108,101,125,92,110,32,42,32,64,99,97,116,101,103,111,114,121,32,76,111,99,97,108,101,115,92,110,32,42,32,64,115,117,109,109,97,114,121,32,69,110,103,108,105,115,104,32,108,111,99,97,108,101,32,40,85,110,105,116,101,100,32,83,116,97,116,101,115,41,46,92,110,32,42,32,64,108,97,110,103,117,97,103,101,32,69,110,103,108,105,115,104,92,110,32,42,32,64,105,115,111,45,54,51,57,45,50,32,101,110,103,92,110,32,42,32,64,97,117,116,104,111,114,32,83,97,115,104,97,32,75,111,115,115,32,91,64,107,111,115,115,110,111,99,111,114,112,93,123,64,108,105,110,107,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,107,111,115,115,110,111,99,111,114,112,125,92,110,32,42,32,64,97,117,116,104,111,114,32,76,101,115,104,97,32,75,111,115,115,32,91,64,108,101,115,104,97,107,111,115,115,93,123,64,108,105,110,107,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,108,101,115,104,97,107,111,115,115,125,92,110,32,42,47,92,110,92,110,118,97,114,32,108,111,99,97,108,101,32,61,32,123,92,110,32,32,99,111,100,101,58,32,39,101,110,45,85,83,39,44,92,110,32,32,102,111,114,109,97,116,68,105,115,116,97,110,99,101,58,32,95,108,105,98,95,102,111,114,109,97,116,68,105,115,116,97,110,99,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,102,111,114,109,97,116,76,111,110,103,58,32,95,108,105,98,95,102,111,114,109,97,116,76,111,110,103,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,102,111,114,109,97,116,82,101,108,97,116,105,118,101,58,32,95,108,105,98,95,102,111,114,109,97,116,82,101,108,97,116,105,118,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,108,111,99,97,108,105,122,101,58,32,95,108,105,98,95,108,111,99,97,108,105,122,101,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,109,97,116,99,104,58,32,95,108,105,98,95,109,97,116,99,104,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,111,112,116,105,111,110,115,58,32,123,92,110,32,32,32,32,119,101,101,107,83,116,97,114,116,115,79,110,58,32,48,92,110,32,32,32,32,47,42,32,83,117,110,100,97,121,32,42,47,92,110,32,32,32,32,44,92,110,32,32,32,32,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,58,32,49,92,110,32,32,125,92,110,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,108,111,99,97,108,101,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,108,111,99,97,108,101,47,101,110,45,85,83,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,115,117,98,77,105,108,108,105,115,101,99,111,110,100,115,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,115,117,98,77,105,108,108,105,115,101,99,111,110,100,115,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,117,98,77,105,108,108,105,115,101,99,111,110,100,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,95,108,105,98,47,116,111,73,110,116,101,103,101,114,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,116,111,73,110,116,101,103,101,114,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,100,100,77,105,108,108,105,115,101,99,111,110,100,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,97,100,100,77,105,108,108,105,115,101,99,111,110,100,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,97,100,100,77,105,108,108,105,115,101,99,111,110,100,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,42,92,110,32,42,32,64,110,97,109,101,32,115,117,98,77,105,108,108,105,115,101,99,111,110,100,115,92,110,32,42,32,64,99,97,116,101,103,111,114,121,32,77,105,108,108,105,115,101,99,111,110,100,32,72,101,108,112,101,114,115,92,110,32,42,32,64,115,117,109,109,97,114,121,32,83,117,98,116,114,97,99,116,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,102,114,111,109,32,116,104,101,32,103,105,118,101,110,32,100,97,116,101,46,92,110,32,42,92,110,32,42,32,64,100,101,115,99,114,105,112,116,105,111,110,92,110,32,42,32,83,117,98,116,114,97,99,116,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,102,114,111,109,32,116,104,101,32,103,105,118,101,110,32,100,97,116,101,46,92,110,32,42,92,110,32,42,32,35,35,35,32,118,50,46,48,46,48,32,98,114,101,97,107,105,110,103,32,99,104,97,110,103,101,115,58,92,110,32,42,92,110,32,42,32,45,32,91,67,104,97,110,103,101,115,32,116,104,97,116,32,97,114,101,32,99,111,109,109,111,110,32,102,111,114,32,116,104,101,32,119,104,111,108,101,32,108,105,98,114,97,114,121,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,100,97,116,101,45,102,110,115,47,100,97,116,101,45,102,110,115,47,98,108,111,98,47,109,97,115,116,101,114,47,100,111,99,115,47,117,112,103,114,97,100,101,71,117,105,100,101,46,109,100,35,67,111,109,109,111,110,45,67,104,97,110,103,101,115,41,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,68,97,116,101,124,78,117,109,98,101,114,125,32,100,97,116,101,32,45,32,116,104,101,32,100,97,116,101,32,116,111,32,98,101,32,99,104,97,110,103,101,100,92,110,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,97,109,111,117,110,116,32,45,32,116,104,101,32,97,109,111,117,110,116,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,111,32,98,101,32,115,117,98,116,114,97,99,116,101,100,46,32,80,111,115,105,116,105,118,101,32,100,101,99,105,109,97,108,115,32,119,105,108,108,32,98,101,32,114,111,117,110,100,101,100,32,117,115,105,110,103,32,96,77,97,116,104,46,102,108,111,111,114,96,44,32,100,101,99,105,109,97,108,115,32,108,101,115,115,32,116,104,97,110,32,122,101,114,111,32,119,105,108,108,32,98,101,32,114,111,117,110,100,101,100,32,117,115,105,110,103,32,96,77,97,116,104,46,99,101,105,108,96,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,68,97,116,101,125,32,116,104,101,32,110,101,119,32,100,97,116,101,32,119,105,116,104,32,116,104,101,32,109,105,108,108,105,115,101,99,111,110,100,115,32,115,117,98,116,114,97,99,116,101,100,92,110,32,42,32,64,116,104,114,111,119,115,32,123,84,121,112,101,69,114,114,111,114,125,32,50,32,97,114,103,117,109,101,110,116,115,32,114,101,113,117,105,114,101,100,92,110,32,42,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,32,47,47,32,83,117,98,116,114,97,99,116,32,55,53,48,32,109,105,108,108,105,115,101,99,111,110,100,115,32,102,114,111,109,32,49,48,32,74,117,108,121,32,50,48,49,52,32,49,50,58,52,53,58,51,48,46,48,48,48,58,92,110,32,42,32,99,111,110,115,116,32,114,101,115,117,108,116,32,61,32,115,117,98,77,105,108,108,105,115,101,99,111,110,100,115,40,110,101,119,32,68,97,116,101,40,50,48,49,52,44,32,54,44,32,49,48,44,32,49,50,44,32,52,53,44,32,51,48,44,32,48,41,44,32,55,53,48,41,92,110,32,42,32,47,47,61,62,32,84,104,117,32,74,117,108,32,49,48,32,50,48,49,52,32,49,50,58,52,53,58,50,57,46,50,53,48,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,115,117,98,77,105,108,108,105,115,101,99,111,110,100,115,40,100,105,114,116,121,68,97,116,101,44,32,100,105,114,116,121,65,109,111,117,110,116,41,32,123,92,110,32,32,40,48,44,95,108,105,98,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,50,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,118,97,114,32,97,109,111,117,110,116,32,61,32,40,48,44,95,108,105,98,95,116,111,73,110,116,101,103,101,114,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,105,114,116,121,65,109,111,117,110,116,41,59,92,110,32,32,114,101,116,117,114,110,32,40,48,44,95,97,100,100,77,105,108,108,105,115,101,99,111,110,100,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,100,105,114,116,121,68,97,116,101,44,32,45,97,109,111,117,110,116,41,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,115,117,98,77,105,108,108,105,115,101,99,111,110,100,115,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,116,111,68,97,116,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,98,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,95,108,105,98,47,114,101,113,117,105,114,101,100,65,114,103,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,47,42,42,92,110,32,42,32,64,110,97,109,101,32,116,111,68,97,116,101,92,110,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,109,109,111,110,32,72,101,108,112,101,114,115,92,110,32,42,32,64,115,117,109,109,97,114,121,32,67,111,110,118,101,114,116,32,116,104,101,32,103,105,118,101,110,32,97,114,103,117,109,101,110,116,32,116,111,32,97,110,32,105,110,115,116,97,110,99,101,32,111,102,32,68,97,116,101,46,92,110,32,42,92,110,32,42,32,64,100,101,115,99,114,105,112,116,105,111,110,92,110,32,42,32,67,111,110,118,101,114,116,32,116,104,101,32,103,105,118,101,110,32,97,114,103,117,109,101,110,116,32,116,111,32,97,110,32,105,110,115,116,97,110,99,101,32,111,102,32,68,97,116,101,46,92,110,32,42,92,110,32,42,32,73,102,32,116,104,101,32,97,114,103,117,109,101,110,116,32,105,115,32,97,110,32,105,110,115,116,97,110,99,101,32,111,102,32,68,97,116,101,44,32,116,104,101,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,115,32,105,116,115,32,99,108,111,110,101,46,92,110,32,42,92,110,32,42,32,73,102,32,116,104,101,32,97,114,103,117,109,101,110,116,32,105,115,32,97,32,110,117,109,98,101,114,44,32,105,116,32,105,115,32,116,114,101,97,116,101,100,32,97,115,32,97,32,116,105,109,101,115,116,97,109,112,46,92,110,32,42,92,110,32,42,32,73,102,32,116,104,101,32,97,114,103,117,109,101,110,116,32,105,115,32,110,111,110,101,32,111,102,32,116,104,101,32,97,98,111,118,101,44,32,116,104,101,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,115,32,73,110,118,97,108,105,100,32,68,97,116,101,46,92,110,32,42,92,110,32,42,32,42,42,78,111,116,101,42,42,58,32,42,97,108,108,42,32,68,97,116,101,32,97,114,103,117,109,101,110,116,115,32,112,97,115,115,101,100,32,116,111,32,97,110,121,32,42,100,97,116,101,45,102,110,115,42,32,102,117,110,99,116,105,111,110,32,105,115,32,112,114,111,99,101,115,115,101,100,32,98,121,32,96,116,111,68,97,116,101,96,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,68,97,116,101,124,78,117,109,98,101,114,125,32,97,114,103,117,109,101,110,116,32,45,32,116,104,101,32,118,97,108,117,101,32,116,111,32,99,111,110,118,101,114,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,68,97,116,101,125,32,116,104,101,32,112,97,114,115,101,100,32,100,97,116,101,32,105,110,32,116,104,101,32,108,111,99,97,108,32,116,105,109,101,32,122,111,110,101,92,110,32,42,32,64,116,104,114,111,119,115,32,123,84,121,112,101,69,114,114,111,114,125,32,49,32,97,114,103,117,109,101,110,116,32,114,101,113,117,105,114,101,100,92,110,32,42,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,32,47,47,32,67,108,111,110,101,32,116,104,101,32,100,97,116,101,58,92,110,32,42,32,99,111,110,115,116,32,114,101,115,117,108,116,32,61,32,116,111,68,97,116,101,40,110,101,119,32,68,97,116,101,40,50,48,49,52,44,32,49,44,32,49,49,44,32,49,49,44,32,51,48,44,32,51,48,41,41,92,110,32,42,32,47,47,61,62,32,84,117,101,32,70,101,98,32,49,49,32,50,48,49,52,32,49,49,58,51,48,58,51,48,92,110,32,42,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,32,47,47,32,67,111,110,118,101,114,116,32,116,104,101,32,116,105,109,101,115,116,97,109,112,32,116,111,32,100,97,116,101,58,92,110,32,42,32,99,111,110,115,116,32,114,101,115,117,108,116,32,61,32,116,111,68,97,116,101,40,49,51,57,50,48,57,56,52,51,48,48,48,48,41,92,110,32,42,32,47,47,61,62,32,84,117,101,32,70,101,98,32,49,49,32,50,48,49,52,32,49,49,58,51,48,58,51,48,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,116,111,68,97,116,101,40,97,114,103,117,109,101,110,116,41,32,123,92,110,32,32,40,48,44,95,108,105,98,95,114,101,113,117,105,114,101,100,65,114,103,115,95,105,110,100,101,120,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,49,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,118,97,114,32,97,114,103,83,116,114,32,61,32,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,97,114,103,117,109,101,110,116,41,59,32,47,47,32,67,108,111,110,101,32,116,104,101,32,100,97,116,101,92,110,92,110,32,32,105,102,32,40,97,114,103,117,109,101,110,116,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,32,124,124,32,116,121,112,101,111,102,32,97,114,103,117,109,101,110,116,32,61,61,61,32,39,111,98,106,101,99,116,39,32,38,38,32,97,114,103,83,116,114,32,61,61,61,32,39,91,111,98,106,101,99,116,32,68,97,116,101,93,39,41,32,123,92,110,32,32,32,32,47,47,32,80,114,101,118,101,110,116,32,116,104,101,32,100,97,116,101,32,116,111,32,108,111,115,101,32,116,104,101,32,109,105,108,108,105,115,101,99,111,110,100,115,32,119,104,101,110,32,112,97,115,115,101,100,32,116,111,32,110,101,119,32,68,97,116,101,40,41,32,105,110,32,73,69,49,48,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,97,114,103,117,109,101,110,116,46,103,101,116,84,105,109,101,40,41,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,111,102,32,97,114,103,117,109,101,110,116,32,61,61,61,32,39,110,117,109,98,101,114,39,32,124,124,32,97,114,103,83,116,114,32,61,61,61,32,39,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,97,114,103,117,109,101,110,116,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,105,102,32,40,40,116,121,112,101,111,102,32,97,114,103,117,109,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,32,124,124,32,97,114,103,83,116,114,32,61,61,61,32,39,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,39,41,32,38,38,32,116,121,112,101,111,102,32,99,111,110,115,111,108,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,99,111,110,115,111,108,101,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,34,83,116,97,114,116,105,110,103,32,119,105,116,104,32,118,50,46,48,46,48,45,98,101,116,97,46,49,32,100,97,116,101,45,102,110,115,32,100,111,101,115,110,39,116,32,97,99,99,101,112,116,32,115,116,114,105,110,103,115,32,97,115,32,100,97,116,101,32,97,114,103,117,109,101,110,116,115,46,32,80,108,101,97,115,101,32,117,115,101,32,96,112,97,114,115,101,73,83,79,96,32,116,111,32,112,97,114,115,101,32,115,116,114,105,110,103,115,46,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,106,117,108,101,92,34,41,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,99,111,110,115,111,108,101,92,110,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,110,101,119,32,69,114,114,111,114,40,41,46,115,116,97,99,107,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,78,97,78,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,116,111,68,97,116,101,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,111,109,45,116,111,45,105,109,97,103,101,47,115,114,99,47,100,111,109,45,116,111,45,105,109,97,103,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,111,109,45,116,111,45,105,109,97,103,101,47,115,114,99,47,100,111,109,45,116,111,45,105,109,97,103,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,40,102,117,110,99,116,105,111,110,32,40,103,108,111,98,97,108,41,32,123,92,110,32,32,32,32,39,117,115,101,32,115,116,114,105,99,116,39,59,92,110,92,110,32,32,32,32,118,97,114,32,117,116,105,108,32,61,32,110,101,119,85,116,105,108,40,41,59,92,110,32,32,32,32,118,97,114,32,105,110,108,105,110,101,114,32,61,32,110,101,119,73,110,108,105,110,101,114,40,41,59,92,110,32,32,32,32,118,97,114,32,102,111,110,116,70,97,99,101,115,32,61,32,110,101,119,70,111,110,116,70,97,99,101,115,40,41,59,92,110,32,32,32,32,118,97,114,32,105,109,97,103,101,115,32,61,32,110,101,119,73,109,97,103,101,115,40,41,59,92,110,92,110,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,105,109,112,108,32,111,112,116,105,111,110,115,92,110,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,79,112,116,105,111,110,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,105,115,32,116,111,32,102,97,105,108,32,111,110,32,101,114,114,111,114,44,32,110,111,32,112,108,97,99,101,104,111,108,100,101,114,92,110,32,32,32,32,32,32,32,32,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,99,97,99,104,101,32,98,117,115,116,32,105,115,32,102,97,108,115,101,44,32,105,116,32,119,105,108,108,32,117,115,101,32,116,104,101,32,99,97,99,104,101,92,110,32,32,32,32,32,32,32,32,99,97,99,104,101,66,117,115,116,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,118,97,114,32,100,111,109,116,111,105,109,97,103,101,32,61,32,123,92,110,32,32,32,32,32,32,32,32,116,111,83,118,103,58,32,116,111,83,118,103,44,92,110,32,32,32,32,32,32,32,32,116,111,80,110,103,58,32,116,111,80,110,103,44,92,110,32,32,32,32,32,32,32,32,116,111,74,112,101,103,58,32,116,111,74,112,101,103,44,92,110,32,32,32,32,32,32,32,32,116,111,66,108,111,98,58,32,116,111,66,108,111,98,44,92,110,32,32,32,32,32,32,32,32,116,111,80,105,120,101,108,68,97,116,97,58,32,116,111,80,105,120,101,108,68,97,116,97,44,92,110,32,32,32,32,32,32,32,32,105,109,112,108,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,110,116,70,97,99,101,115,58,32,102,111,110,116,70,97,99,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,109,97,103,101,115,58,32,105,109,97,103,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,116,105,108,58,32,117,116,105,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,108,105,110,101,114,58,32,105,110,108,105,110,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,58,32,123,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,92,110,32,32,32,32,32,32,32,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,100,111,109,116,111,105,109,97,103,101,59,92,110,32,32,32,32,101,108,115,101,92,110,32,32,32,32,32,32,32,32,123,125,92,110,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,78,111,100,101,125,32,110,111,100,101,32,45,32,84,104,101,32,68,79,77,32,78,111,100,101,32,111,98,106,101,99,116,32,116,111,32,114,101,110,100,101,114,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,82,101,110,100,101,114,105,110,103,32,111,112,116,105,111,110,115,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,111,112,116,105,111,110,115,46,102,105,108,116,101,114,32,45,32,83,104,111,117,108,100,32,114,101,116,117,114,110,32,116,114,117,101,32,105,102,32,112,97,115,115,101,100,32,110,111,100,101,32,115,104,111,117,108,100,32,98,101,32,105,110,99,108,117,100,101,100,32,105,110,32,116,104,101,32,111,117,116,112,117,116,92,110,32,32,32,32,32,42,32,32,32,32,32,32,32,32,32,32,40,101,120,99,108,117,100,105,110,103,32,110,111,100,101,32,109,101,97,110,115,32,101,120,99,108,117,100,105,110,103,32,105,116,39,115,32,99,104,105,108,100,114,101,110,32,97,115,32,119,101,108,108,41,46,32,78,111,116,32,99,97,108,108,101,100,32,111,110,32,116,104,101,32,114,111,111,116,32,110,111,100,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,111,112,116,105,111,110,115,46,98,103,99,111,108,111,114,32,45,32,99,111,108,111,114,32,102,111,114,32,116,104,101,32,98,97,99,107,103,114,111,117,110,100,44,32,97,110,121,32,118,97,108,105,100,32,67,83,83,32,99,111,108,111,114,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,111,112,116,105,111,110,115,46,119,105,100,116,104,32,45,32,119,105,100,116,104,32,116,111,32,98,101,32,97,112,112,108,105,101,100,32,116,111,32,110,111,100,101,32,98,101,102,111,114,101,32,114,101,110,100,101,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,111,112,116,105,111,110,115,46,104,101,105,103,104,116,32,45,32,104,101,105,103,104,116,32,116,111,32,98,101,32,97,112,112,108,105,101,100,32,116,111,32,110,111,100,101,32,98,101,102,111,114,101,32,114,101,110,100,101,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,46,115,116,121,108,101,32,45,32,97,110,32,111,98,106,101,99,116,32,119,104,111,115,101,32,112,114,111,112,101,114,116,105,101,115,32,116,111,32,98,101,32,99,111,112,105,101,100,32,116,111,32,110,111,100,101,39,115,32,115,116,121,108,101,32,98,101,102,111,114,101,32,114,101,110,100,101,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,111,112,116,105,111,110,115,46,113,117,97,108,105,116,121,32,45,32,97,32,78,117,109,98,101,114,32,98,101,116,119,101,101,110,32,48,32,97,110,100,32,49,32,105,110,100,105,99,97,116,105,110,103,32,105,109,97,103,101,32,113,117,97,108,105,116,121,32,40,97,112,112,108,105,99,97,98,108,101,32,116,111,32,74,80,69,71,32,111,110,108,121,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,115,32,116,111,32,49,46,48,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,32,45,32,100,97,116,97,85,82,76,32,116,111,32,117,115,101,32,97,115,32,97,32,112,108,97,99,101,104,111,108,100,101,114,32,102,111,114,32,102,97,105,108,101,100,32,105,109,97,103,101,115,44,32,100,101,102,97,117,108,116,32,98,101,104,97,118,105,111,117,114,32,105,115,32,116,111,32,102,97,105,108,32,102,97,115,116,32,111,110,32,105,109,97,103,101,115,32,119,101,32,99,97,110,39,116,32,102,101,116,99,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,32,45,32,115,101,116,32,116,111,32,116,114,117,101,32,116,111,32,99,97,99,104,101,32,98,117,115,116,32,98,121,32,97,112,112,101,110,100,105,110,103,32,116,104,101,32,116,105,109,101,32,116,111,32,116,104,101,32,114,101,113,117,101,115,116,32,117,114,108,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,45,32,65,32,112,114,111,109,105,115,101,32,116,104,97,116,32,105,115,32,102,117,108,102,105,108,108,101,100,32,119,105,116,104,32,97,32,83,86,71,32,105,109,97,103,101,32,100,97,116,97,32,85,82,76,92,110,32,32,32,32,32,42,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,83,118,103,40,110,111,100,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,32,32,32,32,32,32,32,32,99,111,112,121,79,112,116,105,111,110,115,40,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,110,111,100,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,111,110,101,78,111,100,101,40,110,111,100,101,44,32,111,112,116,105,111,110,115,46,102,105,108,116,101,114,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,101,109,98,101,100,70,111,110,116,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,105,110,108,105,110,101,73,109,97,103,101,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,97,112,112,108,121,79,112,116,105,111,110,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,99,108,111,110,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,107,101,83,118,103,68,97,116,97,85,114,105,40,99,108,111,110,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,119,105,100,116,104,32,124,124,32,117,116,105,108,46,119,105,100,116,104,40,110,111,100,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,104,101,105,103,104,116,32,124,124,32,117,116,105,108,46,104,101,105,103,104,116,40,110,111,100,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,97,112,112,108,121,79,112,116,105,111,110,115,40,99,108,111,110,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,98,103,99,111,108,111,114,41,32,99,108,111,110,101,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,111,108,111,114,32,61,32,111,112,116,105,111,110,115,46,98,103,99,111,108,111,114,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,119,105,100,116,104,41,32,99,108,111,110,101,46,115,116,121,108,101,46,119,105,100,116,104,32,61,32,111,112,116,105,111,110,115,46,119,105,100,116,104,32,43,32,39,112,120,39,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,104,101,105,103,104,116,41,32,99,108,111,110,101,46,115,116,121,108,101,46,104,101,105,103,104,116,32,61,32,111,112,116,105,111,110,115,46,104,101,105,103,104,116,32,43,32,39,112,120,39,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,115,116,121,108,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,111,112,116,105,111,110,115,46,115,116,121,108,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,101,114,116,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,111,110,101,46,115,116,121,108,101,91,112,114,111,112,101,114,116,121,93,32,61,32,111,112,116,105,111,110,115,46,115,116,121,108,101,91,112,114,111,112,101,114,116,121,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,111,110,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,78,111,100,101,125,32,110,111,100,101,32,45,32,84,104,101,32,68,79,77,32,78,111,100,101,32,111,98,106,101,99,116,32,116,111,32,114,101,110,100,101,114,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,82,101,110,100,101,114,105,110,103,32,111,112,116,105,111,110,115,44,32,64,115,101,101,32,123,64,108,105,110,107,32,116,111,83,118,103,125,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,45,32,65,32,112,114,111,109,105,115,101,32,116,104,97,116,32,105,115,32,102,117,108,102,105,108,108,101,100,32,119,105,116,104,32,97,32,85,105,110,116,56,65,114,114,97,121,32,99,111,110,116,97,105,110,105,110,103,32,82,71,66,65,32,112,105,120,101,108,32,100,97,116,97,46,92,110,32,32,32,32,32,42,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,80,105,120,101,108,68,97,116,97,40,110,111,100,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,114,97,119,40,110,111,100,101,44,32,111,112,116,105,111,110,115,32,124,124,32,123,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,99,97,110,118,97,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,110,118,97,115,46,103,101,116,67,111,110,116,101,120,116,40,39,50,100,39,41,46,103,101,116,73,109,97,103,101,68,97,116,97,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,116,105,108,46,119,105,100,116,104,40,110,111,100,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,116,105,108,46,104,101,105,103,104,116,40,110,111,100,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,46,100,97,116,97,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,78,111,100,101,125,32,110,111,100,101,32,45,32,84,104,101,32,68,79,77,32,78,111,100,101,32,111,98,106,101,99,116,32,116,111,32,114,101,110,100,101,114,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,82,101,110,100,101,114,105,110,103,32,111,112,116,105,111,110,115,44,32,64,115,101,101,32,123,64,108,105,110,107,32,116,111,83,118,103,125,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,45,32,65,32,112,114,111,109,105,115,101,32,116,104,97,116,32,105,115,32,102,117,108,102,105,108,108,101,100,32,119,105,116,104,32,97,32,80,78,71,32,105,109,97,103,101,32,100,97,116,97,32,85,82,76,92,110,32,32,32,32,32,42,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,80,110,103,40,110,111,100,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,114,97,119,40,110,111,100,101,44,32,111,112,116,105,111,110,115,32,124,124,32,123,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,99,97,110,118,97,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,110,118,97,115,46,116,111,68,97,116,97,85,82,76,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,78,111,100,101,125,32,110,111,100,101,32,45,32,84,104,101,32,68,79,77,32,78,111,100,101,32,111,98,106,101,99,116,32,116,111,32,114,101,110,100,101,114,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,82,101,110,100,101,114,105,110,103,32,111,112,116,105,111,110,115,44,32,64,115,101,101,32,123,64,108,105,110,107,32,116,111,83,118,103,125,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,45,32,65,32,112,114,111,109,105,115,101,32,116,104,97,116,32,105,115,32,102,117,108,102,105,108,108,101,100,32,119,105,116,104,32,97,32,74,80,69,71,32,105,109,97,103,101,32,100,97,116,97,32,85,82,76,92,110,32,32,32,32,32,42,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,74,112,101,103,40,110,111,100,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,114,97,119,40,110,111,100,101,44,32,111,112,116,105,111,110,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,99,97,110,118,97,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,110,118,97,115,46,116,111,68,97,116,97,85,82,76,40,39,105,109,97,103,101,47,106,112,101,103,39,44,32,111,112,116,105,111,110,115,46,113,117,97,108,105,116,121,32,124,124,32,49,46,48,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,78,111,100,101,125,32,110,111,100,101,32,45,32,84,104,101,32,68,79,77,32,78,111,100,101,32,111,98,106,101,99,116,32,116,111,32,114,101,110,100,101,114,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,82,101,110,100,101,114,105,110,103,32,111,112,116,105,111,110,115,44,32,64,115,101,101,32,123,64,108,105,110,107,32,116,111,83,118,103,125,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,45,32,65,32,112,114,111,109,105,115,101,32,116,104,97,116,32,105,115,32,102,117,108,102,105,108,108,101,100,32,119,105,116,104,32,97,32,80,78,71,32,105,109,97,103,101,32,98,108,111,98,92,110,32,32,32,32,32,42,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,66,108,111,98,40,110,111,100,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,114,97,119,40,110,111,100,101,44,32,111,112,116,105,111,110,115,32,124,124,32,123,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,117,116,105,108,46,99,97,110,118,97,115,84,111,66,108,111,98,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,112,121,79,112,116,105,111,110,115,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,67,111,112,121,32,111,112,116,105,111,110,115,32,116,111,32,105,109,112,108,32,111,112,116,105,111,110,115,32,102,111,114,32,117,115,101,32,105,110,32,105,109,112,108,92,110,32,32,32,32,32,32,32,32,105,102,40,116,121,112,101,111,102,40,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,41,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,116,111,105,109,97,103,101,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,32,61,32,100,101,102,97,117,108,116,79,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,116,111,105,109,97,103,101,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,32,61,32,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,102,40,116,121,112,101,111,102,40,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,41,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,116,111,105,109,97,103,101,46,105,109,112,108,46,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,32,61,32,100,101,102,97,117,108,116,79,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,116,111,105,109,97,103,101,46,105,109,112,108,46,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,32,61,32,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,100,114,97,119,40,100,111,109,78,111,100,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,111,83,118,103,40,100,111,109,78,111,100,101,44,32,111,112,116,105,111,110,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,117,116,105,108,46,109,97,107,101,73,109,97,103,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,117,116,105,108,46,100,101,108,97,121,40,49,48,48,41,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,105,109,97,103,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,97,110,118,97,115,32,61,32,110,101,119,67,97,110,118,97,115,40,100,111,109,78,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,110,118,97,115,46,103,101,116,67,111,110,116,101,120,116,40,39,50,100,39,41,46,100,114,97,119,73,109,97,103,101,40,105,109,97,103,101,44,32,48,44,32,48,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,110,118,97,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,110,101,119,67,97,110,118,97,115,40,100,111,109,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,97,110,118,97,115,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,39,99,97,110,118,97,115,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,110,118,97,115,46,119,105,100,116,104,32,61,32,111,112,116,105,111,110,115,46,119,105,100,116,104,32,124,124,32,117,116,105,108,46,119,105,100,116,104,40,100,111,109,78,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,110,118,97,115,46,104,101,105,103,104,116,32,61,32,111,112,116,105,111,110,115,46,104,101,105,103,104,116,32,124,124,32,117,116,105,108,46,104,101,105,103,104,116,40,100,111,109,78,111,100,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,98,103,99,111,108,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,116,120,32,61,32,99,97,110,118,97,115,46,103,101,116,67,111,110,116,101,120,116,40,39,50,100,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,116,120,46,102,105,108,108,83,116,121,108,101,32,61,32,111,112,116,105,111,110,115,46,98,103,99,111,108,111,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,116,120,46,102,105,108,108,82,101,99,116,40,48,44,32,48,44,32,99,97,110,118,97,115,46,119,105,100,116,104,44,32,99,97,110,118,97,115,46,104,101,105,103,104,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,110,118,97,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,78,111,100,101,40,110,111,100,101,44,32,102,105,108,116,101,114,44,32,114,111,111,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,114,111,111,116,32,38,38,32,102,105,108,116,101,114,32,38,38,32,33,102,105,108,116,101,114,40,110,111,100,101,41,41,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,110,111,100,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,109,97,107,101,78,111,100,101,67,111,112,121,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,99,108,111,110,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,111,110,101,67,104,105,108,100,114,101,110,40,110,111,100,101,44,32,99,108,111,110,101,44,32,102,105,108,116,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,99,108,111,110,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,114,111,99,101,115,115,67,108,111,110,101,40,110,111,100,101,44,32,99,108,111,110,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,107,101,78,111,100,101,67,111,112,121,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,67,97,110,118,97,115,69,108,101,109,101,110,116,41,32,114,101,116,117,114,110,32,117,116,105,108,46,109,97,107,101,73,109,97,103,101,40,110,111,100,101,46,116,111,68,97,116,97,85,82,76,40,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,46,99,108,111,110,101,78,111,100,101,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,67,104,105,108,100,114,101,110,40,111,114,105,103,105,110,97,108,44,32,99,108,111,110,101,44,32,102,105,108,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,111,114,105,103,105,110,97,108,46,99,104,105,108,100,78,111,100,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,99,108,111,110,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,111,110,101,67,104,105,108,100,114,101,110,73,110,79,114,100,101,114,40,99,108,111,110,101,44,32,117,116,105,108,46,97,115,65,114,114,97,121,40,99,104,105,108,100,114,101,110,41,44,32,102,105,108,116,101,114,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,111,110,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,67,104,105,108,100,114,101,110,73,110,79,114,100,101,114,40,112,97,114,101,110,116,44,32,99,104,105,108,100,114,101,110,44,32,102,105,108,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,111,110,101,32,61,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,104,105,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,110,101,32,61,32,100,111,110,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,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,114,101,116,117,114,110,32,99,108,111,110,101,78,111,100,101,40,99,104,105,108,100,44,32,102,105,108,116,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,99,104,105,108,100,67,108,111,110,101,41,32,123,92,110,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,105,102,32,40,99,104,105,108,100,67,108,111,110,101,41,32,112,97,114,101,110,116,46,97,112,112,101,110,100,67,104,105,108,100,40,99,104,105,108,100,67,108,111,110,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,111,110,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,112,114,111,99,101,115,115,67,108,111,110,101,40,111,114,105,103,105,110,97,108,44,32,99,108,111,110,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,99,108,111,110,101,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,41,41,32,114,101,116,117,114,110,32,99,108,111,110,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,99,108,111,110,101,83,116,121,108,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,99,108,111,110,101,80,115,101,117,100,111,69,108,101,109,101,110,116,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,99,111,112,121,85,115,101,114,73,110,112,117,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,105,120,83,118,103,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,111,110,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,83,116,121,108,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,112,121,83,116,121,108,101,40,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,111,114,105,103,105,110,97,108,41,44,32,99,108,111,110,101,46,115,116,121,108,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,112,121,83,116,121,108,101,40,115,111,117,114,99,101,44,32,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,111,117,114,99,101,46,99,115,115,84,101,120,116,41,32,116,97,114,103,101,116,46,99,115,115,84,101,120,116,32,61,32,115,111,117,114,99,101,46,99,115,115,84,101,120,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,99,111,112,121,80,114,111,112,101,114,116,105,101,115,40,115,111,117,114,99,101,44,32,116,97,114,103,101,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,112,121,80,114,111,112,101,114,116,105,101,115,40,115,111,117,114,99,101,44,32,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,116,105,108,46,97,115,65,114,114,97,121,40,115,111,117,114,99,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,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,116,97,114,103,101,116,46,115,101,116,80,114,111,112,101,114,116,121,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,111,117,114,99,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,110,97,109,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,111,117,114,99,101,46,103,101,116,80,114,111,112,101,114,116,121,80,114,105,111,114,105,116,121,40,110,97,109,101,41,92,110,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,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,80,115,101,117,100,111,69,108,101,109,101,110,116,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,39,58,98,101,102,111,114,101,39,44,32,39,58,97,102,116,101,114,39,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,111,110,101,80,115,101,117,100,111,69,108,101,109,101,110,116,40,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,80,115,101,117,100,111,69,108,101,109,101,110,116,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,121,108,101,32,61,32,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,111,114,105,103,105,110,97,108,44,32,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,116,101,110,116,32,61,32,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,39,99,111,110,116,101,110,116,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,111,110,116,101,110,116,32,61,61,61,32,39,39,32,124,124,32,99,111,110,116,101,110,116,32,61,61,61,32,39,110,111,110,101,39,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,108,97,115,115,78,97,109,101,32,61,32,117,116,105,108,46,117,105,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,111,110,101,46,99,108,97,115,115,78,97,109,101,32,61,32,99,108,111,110,101,46,99,108,97,115,115,78,97,109,101,32,43,32,39,32,39,32,43,32,99,108,97,115,115,78,97,109,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,121,108,101,69,108,101,109,101,110,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,39,115,116,121,108,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,121,108,101,69,108,101,109,101,110,116,46,97,112,112,101,110,100,67,104,105,108,100,40,102,111,114,109,97,116,80,115,101,117,100,111,69,108,101,109,101,110,116,83,116,121,108,101,40,99,108,97,115,115,78,97,109,101,44,32,101,108,101,109,101,110,116,44,32,115,116,121,108,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,111,110,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,116,121,108,101,69,108,101,109,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,80,115,101,117,100,111,69,108,101,109,101,110,116,83,116,121,108,101,40,99,108,97,115,115,78,97,109,101,44,32,101,108,101,109,101,110,116,44,32,115,116,121,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,111,114,32,61,32,39,46,39,32,43,32,99,108,97,115,115,78,97,109,101,32,43,32,39,58,39,32,43,32,101,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,115,115,84,101,120,116,32,61,32,115,116,121,108,101,46,99,115,115,84,101,120,116,32,63,32,102,111,114,109,97,116,67,115,115,84,101,120,116,40,115,116,121,108,101,41,32,58,32,102,111,114,109,97,116,67,115,115,80,114,111,112,101,114,116,105,101,115,40,115,116,121,108,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,115,101,108,101,99,116,111,114,32,43,32,39,123,39,32,43,32,99,115,115,84,101,120,116,32,43,32,39,125,39,41,59,92,110,92,110,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,117,110,99,116,105,111,110,32,102,111,114,109,97,116,67,115,115,84,101,120,116,40,115,116,121,108,101,41,32,123,92,110,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,118,97,114,32,99,111,110,116,101,110,116,32,61,32,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,39,99,111,110,116,101,110,116,39,41,59,92,110,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,114,101,116,117,114,110,32,115,116,121,108,101,46,99,115,115,84,101,120,116,32,43,32,39,32,99,111,110,116,101,110,116,58,32,39,32,43,32,99,111,110,116,101,110,116,32,43,32,39,59,39,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,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,117,110,99,116,105,111,110,32,102,111,114,109,97,116,67,115,115,80,114,111,112,101,114,116,105,101,115,40,115,116,121,108,101,41,32,123,92,110,92,110,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,114,101,116,117,114,110,32,117,116,105,108,46,97,115,65,114,114,97,121,40,115,116,121,108,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,109,97,112,40,102,111,114,109,97,116,80,114,111,112,101,114,116,121,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,106,111,105,110,40,39,59,32,39,41,32,43,32,39,59,39,59,92,110,92,110,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,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,80,114,111,112,101,114,116,121,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,97,109,101,32,43,32,39,58,32,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,110,97,109,101,41,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,80,114,105,111,114,105,116,121,40,110,97,109,101,41,32,63,32,39,32,33,105,109,112,111,114,116,97,110,116,39,32,58,32,39,39,41,59,92,110,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,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,112,121,85,115,101,114,73,110,112,117,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,114,105,103,105,110,97,108,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,84,101,120,116,65,114,101,97,69,108,101,109,101,110,116,41,32,99,108,111,110,101,46,105,110,110,101,114,72,84,77,76,32,61,32,111,114,105,103,105,110,97,108,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,114,105,103,105,110,97,108,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,73,110,112,117,116,69,108,101,109,101,110,116,41,32,99,108,111,110,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,118,97,108,117,101,92,34,44,32,111,114,105,103,105,110,97,108,46,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,102,105,120,83,118,103,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,99,108,111,110,101,32,105,110,115,116,97,110,99,101,111,102,32,83,86,71,69,108,101,109,101,110,116,41,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,111,110,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,120,109,108,110,115,39,44,32,39,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,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,99,108,111,110,101,32,105,110,115,116,97,110,99,101,111,102,32,83,86,71,82,101,99,116,69,108,101,109,101,110,116,41,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,39,119,105,100,116,104,39,44,32,39,104,101,105,103,104,116,39,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,97,116,116,114,105,98,117,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,99,108,111,110,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,97,116,116,114,105,98,117,116,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,118,97,108,117,101,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,111,110,101,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,97,116,116,114,105,98,117,116,101,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,101,109,98,101,100,70,111,110,116,115,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,110,116,70,97,99,101,115,46,114,101,115,111,108,118,101,65,108,108,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,99,115,115,84,101,120,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,121,108,101,78,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,39,115,116,121,108,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,116,121,108,101,78,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,121,108,101,78,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,99,115,115,84,101,120,116,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,108,105,110,101,73,109,97,103,101,115,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,109,97,103,101,115,46,105,110,108,105,110,101,65,108,108,40,110,111,100,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,107,101,83,118,103,68,97,116,97,85,114,105,40,110,111,100,101,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,110,111,100,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,120,109,108,110,115,39,44,32,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,104,116,109,108,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,88,77,76,83,101,114,105,97,108,105,122,101,114,40,41,46,115,101,114,105,97,108,105,122,101,84,111,83,116,114,105,110,103,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,117,116,105,108,46,101,115,99,97,112,101,88,104,116,109,108,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,120,104,116,109,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,60,102,111,114,101,105,103,110,79,98,106,101,99,116,32,120,61,92,34,48,92,34,32,121,61,92,34,48,92,34,32,119,105,100,116,104,61,92,34,49,48,48,37,92,34,32,104,101,105,103,104,116,61,92,34,49,48,48,37,92,34,62,39,32,43,32,120,104,116,109,108,32,43,32,39,60,47,102,111,114,101,105,103,110,79,98,106,101,99,116,62,39,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,102,111,114,101,105,103,110,79,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,60,115,118,103,32,120,109,108,110,115,61,92,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,92,34,32,119,105,100,116,104,61,92,34,39,32,43,32,119,105,100,116,104,32,43,32,39,92,34,32,104,101,105,103,104,116,61,92,34,39,32,43,32,104,101,105,103,104,116,32,43,32,39,92,34,62,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,101,105,103,110,79,98,106,101,99,116,32,43,32,39,60,47,115,118,103,62,39,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,115,118,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,39,32,43,32,115,118,103,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,110,101,119,85,116,105,108,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,115,99,97,112,101,58,32,101,115,99,97,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,115,101,69,120,116,101,110,115,105,111,110,58,32,112,97,114,115,101,69,120,116,101,110,115,105,111,110,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,105,109,101,84,121,112,101,58,32,109,105,109,101,84,121,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,97,65,115,85,114,108,58,32,100,97,116,97,65,115,85,114,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,68,97,116,97,85,114,108,58,32,105,115,68,97,116,97,85,114,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,110,118,97,115,84,111,66,108,111,98,58,32,99,97,110,118,97,115,84,111,66,108,111,98,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,118,101,85,114,108,58,32,114,101,115,111,108,118,101,85,114,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,103,101,116,65,110,100,69,110,99,111,100,101,58,32,103,101,116,65,110,100,69,110,99,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,105,100,58,32,117,105,100,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,101,108,97,121,58,32,100,101,108,97,121,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,115,65,114,114,97,121,58,32,97,115,65,114,114,97,121,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,115,99,97,112,101,88,104,116,109,108,58,32,101,115,99,97,112,101,88,104,116,109,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,97,107,101,73,109,97,103,101,58,32,109,97,107,101,73,109,97,103,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,119,105,100,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,104,101,105,103,104,116,92,110,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,109,105,109,101,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,79,110,108,121,32,87,79,70,70,32,97,110,100,32,69,79,84,32,109,105,109,101,32,116,121,112,101,115,32,102,111,114,32,102,111,110,116,115,32,97,114,101,32,39,114,101,97,108,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,115,101,101,32,104,116,116,112,58,47,47,119,119,119,46,105,97,110,97,46,111,114,103,47,97,115,115,105,103,110,109,101,110,116,115,47,109,101,100,105,97,45,116,121,112,101,115,47,109,101,100,105,97,45,116,121,112,101,115,46,120,104,116,109,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,87,79,70,70,32,61,32,39,97,112,112,108,105,99,97,116,105,111,110,47,102,111,110,116,45,119,111,102,102,39,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,74,80,69,71,32,61,32,39,105,109,97,103,101,47,106,112,101,103,39,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,119,111,102,102,39,58,32,87,79,70,70,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,119,111,102,102,50,39,58,32,87,79,70,70,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,116,116,102,39,58,32,39,97,112,112,108,105,99,97,116,105,111,110,47,102,111,110,116,45,116,114,117,101,116,121,112,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,101,111,116,39,58,32,39,97,112,112,108,105,99,97,116,105,111,110,47,118,110,100,46,109,115,45,102,111,110,116,111,98,106,101,99,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,112,110,103,39,58,32,39,105,109,97,103,101,47,112,110,103,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,106,112,103,39,58,32,74,80,69,71,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,106,112,101,103,39,58,32,74,80,69,71,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,103,105,102,39,58,32,39,105,109,97,103,101,47,103,105,102,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,116,105,102,102,39,58,32,39,105,109,97,103,101,47,116,105,102,102,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,115,118,103,39,58,32,39,105,109,97,103,101,47,115,118,103,43,120,109,108,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,69,120,116,101,110,115,105,111,110,40,117,114,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,32,61,32,47,92,92,46,40,91,94,92,92,46,92,92,47,93,42,63,41,36,47,103,46,101,120,101,99,40,117,114,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,97,116,99,104,41,32,114,101,116,117,114,110,32,109,97,116,99,104,91,49,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,114,101,116,117,114,110,32,39,39,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,109,105,109,101,84,121,112,101,40,117,114,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,120,116,101,110,115,105,111,110,32,61,32,112,97,114,115,101,69,120,116,101,110,115,105,111,110,40,117,114,108,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,105,109,101,115,40,41,91,101,120,116,101,110,115,105,111,110,93,32,124,124,32,39,39,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,68,97,116,97,85,114,108,40,117,114,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,117,114,108,46,115,101,97,114,99,104,40,47,94,40,100,97,116,97,58,41,47,41,32,33,61,61,32,45,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,66,108,111,98,40,99,97,110,118,97,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,98,105,110,97,114,121,83,116,114,105,110,103,32,61,32,119,105,110,100,111,119,46,97,116,111,98,40,99,97,110,118,97,115,46,116,111,68,97,116,97,85,82,76,40,41,46,115,112,108,105,116,40,39,44,39,41,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,98,105,110,97,114,121,83,116,114,105,110,103,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,98,105,110,97,114,121,65,114,114,97,121,32,61,32,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,108,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,59,32,105,43,43,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,105,110,97,114,121,65,114,114,97,121,91,105,93,32,61,32,98,105,110,97,114,121,83,116,114,105,110,103,46,99,104,97,114,67,111,100,101,65,116,40,105,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,118,101,40,110,101,119,32,66,108,111,98,40,91,98,105,110,97,114,121,65,114,114,97,121,93,44,32,123,92,110,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,39,105,109,97,103,101,47,112,110,103,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,97,110,118,97,115,84,111,66,108,111,98,40,99,97,110,118,97,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,97,110,118,97,115,46,116,111,66,108,111,98,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,110,118,97,115,46,116,111,66,108,111,98,40,114,101,115,111,108,118,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,111,66,108,111,98,40,99,97,110,118,97,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,85,114,108,40,117,114,108,44,32,98,97,115,101,85,114,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,111,99,32,61,32,100,111,99,117,109,101,110,116,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,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,98,97,115,101,32,61,32,100,111,99,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,39,98,97,115,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,98,97,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,32,61,32,100,111,99,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,39,97,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,97,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,46,104,114,101,102,32,61,32,98,97,115,101,85,114,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,46,104,114,101,102,32,61,32,117,114,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,46,104,114,101,102,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,117,105,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,117,39,32,43,32,102,111,117,114,82,97,110,100,111,109,67,104,97,114,115,40,41,32,43,32,105,110,100,101,120,43,43,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,102,111,117,114,82,97,110,100,111,109,67,104,97,114,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,42,32,115,101,101,32,104,116,116,112,58,47,47,115,116,97,99,107,111,118,101,114,102,108,111,119,46,99,111,109,47,97,47,54,50,52,56,55,50,50,47,50,53,49,57,51,55,51,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,39,48,48,48,48,39,32,43,32,40,77,97,116,104,46,114,97,110,100,111,109,40,41,32,42,32,77,97,116,104,46,112,111,119,40,51,54,44,32,52,41,32,60,60,32,48,41,46,116,111,83,116,114,105,110,103,40,51,54,41,41,46,115,108,105,99,101,40,45,52,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,107,101,73,109,97,103,101,40,117,114,105,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,109,97,103,101,32,61,32,110,101,119,32,73,109,97,103,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,109,97,103,101,46,111,110,108,111,97,100,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,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,118,101,40,105,109,97,103,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,109,97,103,101,46,111,110,101,114,114,111,114,32,61,32,114,101,106,101,99,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,109,97,103,101,46,115,114,99,32,61,32,117,114,105,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,65,110,100,69,110,99,111,100,101,40,117,114,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,84,73,77,69,79,85,84,32,61,32,51,48,48,48,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,40,100,111,109,116,111,105,109,97,103,101,46,105,109,112,108,46,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,97,99,104,101,32,98,121,112,97,115,115,32,115,111,32,119,101,32,100,111,110,116,32,104,97,118,101,32,67,79,82,83,32,105,115,115,117,101,115,32,119,105,116,104,32,99,97,99,104,101,100,32,105,109,97,103,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,111,117,114,99,101,58,32,104,116,116,112,115,58,47,47,100,101,118,101,108,111,112,101,114,46,109,111,122,105,108,108,97,46,111,114,103,47,101,110,47,100,111,99,115,47,87,101,98,47,65,80,73,47,88,77,76,72,116,116,112,82,101,113,117,101,115,116,47,85,115,105,110,103,95,88,77,76,72,116,116,112,82,101,113,117,101,115,116,35,66,121,112,97,115,115,105,110,103,95,116,104,101,95,99,97,99,104,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,114,108,32,43,61,32,40,40,47,92,92,63,47,41,46,116,101,115,116,40,117,114,108,41,32,63,32,92,34,38,92,34,32,58,32,92,34,63,92,34,41,32,43,32,40,110,101,119,32,68,97,116,101,40,41,41,46,103,101,116,84,105,109,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,113,117,101,115,116,32,61,32,110,101,119,32,88,77,76,72,116,116,112,82,101,113,117,101,115,116,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,32,61,32,100,111,110,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,46,111,110,116,105,109,101,111,117,116,32,61,32,116,105,109,101,111,117,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,46,114,101,115,112,111,110,115,101,84,121,112,101,32,61,32,39,98,108,111,98,39,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,46,116,105,109,101,111,117,116,32,61,32,84,73,77,69,79,85,84,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,46,111,112,101,110,40,39,71,69,84,39,44,32,117,114,108,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,113,117,101,115,116,46,115,101,110,100,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,108,97,99,101,104,111,108,100,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,40,100,111,109,116,111,105,109,97,103,101,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,112,108,105,116,32,61,32,100,111,109,116,111,105,109,97,103,101,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,46,115,112,108,105,116,40,47,44,47,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,40,115,112,108,105,116,32,38,38,32,115,112,108,105,116,91,49,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,32,61,32,115,112,108,105,116,91,49,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,100,111,110,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,114,101,113,117,101,115,116,46,114,101,97,100,121,83,116,97,116,101,32,33,61,61,32,52,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,114,101,113,117,101,115,116,46,115,116,97,116,117,115,32,33,61,61,32,50,48,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,40,112,108,97,99,101,104,111,108,100,101,114,41,32,123,92,110,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,114,101,115,111,108,118,101,40,112,108,97,99,101,104,111,108,100,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,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,102,97,105,108,40,39,99,97,110,110,111,116,32,102,101,116,99,104,32,114,101,115,111,117,114,99,101,58,32,39,32,43,32,117,114,108,32,43,32,39,44,32,115,116,97,116,117,115,58,32,39,32,43,32,114,101,113,117,101,115,116,46,115,116,97,116,117,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,110,99,111,100,101,114,32,61,32,110,101,119,32,70,105,108,101,82,101,97,100,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,110,99,111,100,101,114,46,111,110,108,111,97,100,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,116,101,110,116,32,61,32,101,110,99,111,100,101,114,46,114,101,115,117,108,116,46,115,112,108,105,116,40,47,44,47,41,91,49,93,59,92,110,32,32,32,32,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,118,101,40,99,111,110,116,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,110,99,111,100,101,114,46,114,101,97,100,65,115,68,97,116,97,85,82,76,40,114,101,113,117,101,115,116,46,114,101,115,112,111,110,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,116,105,109,101,111,117,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,40,112,108,97,99,101,104,111,108,100,101,114,41,32,123,92,110,32,32,32,32,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,118,101,40,112,108,97,99,101,104,111,108,100,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,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,97,105,108,40,39,116,105,109,101,111,117,116,32,111,102,32,39,32,43,32,84,73,77,69,79,85,84,32,43,32,39,109,115,32,111,99,99,117,114,101,100,32,119,104,105,108,101,32,102,101,116,99,104,105,110,103,32,114,101,115,111,117,114,99,101,58,32,39,32,43,32,117,114,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,102,97,105,108,40,109,101,115,115,97,103,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,109,101,115,115,97,103,101,41,59,92,110,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,118,101,40,39,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,100,97,116,97,65,115,85,114,108,40,99,111,110,116,101,110,116,44,32,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,100,97,116,97,58,39,32,43,32,116,121,112,101,32,43,32,39,59,98,97,115,101,54,52,44,39,32,43,32,99,111,110,116,101,110,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,101,115,99,97,112,101,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,114,101,112,108,97,99,101,40,47,40,91,46,42,43,63,94,36,123,125,40,41,124,92,92,91,92,92,93,92,92,47,92,92,92,92,93,41,47,103,44,32,39,92,92,92,92,36,49,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,100,101,108,97,121,40,109,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,97,114,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,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,118,101,40,97,114,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,32,109,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,97,115,65,114,114,97,121,40,97,114,114,97,121,76,105,107,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,114,114,97,121,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,76,105,107,101,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,59,32,105,43,43,41,32,97,114,114,97,121,46,112,117,115,104,40,97,114,114,97,121,76,105,107,101,91,105,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,101,115,99,97,112,101,88,104,116,109,108,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,114,101,112,108,97,99,101,40,47,35,47,103,44,32,39,37,50,51,39,41,46,114,101,112,108,97,99,101,40,47,92,92,110,47,103,44,32,39,37,48,65,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,119,105,100,116,104,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,101,102,116,66,111,114,100,101,114,32,61,32,112,120,40,110,111,100,101,44,32,39,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,105,103,104,116,66,111,114,100,101,114,32,61,32,112,120,40,110,111,100,101,44,32,39,98,111,114,100,101,114,45,114,105,103,104,116,45,119,105,100,116,104,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,46,115,99,114,111,108,108,87,105,100,116,104,32,43,32,108,101,102,116,66,111,114,100,101,114,32,43,32,114,105,103,104,116,66,111,114,100,101,114,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,104,101,105,103,104,116,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,111,112,66,111,114,100,101,114,32,61,32,112,120,40,110,111,100,101,44,32,39,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,98,111,116,116,111,109,66,111,114,100,101,114,32,61,32,112,120,40,110,111,100,101,44,32,39,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,46,115,99,114,111,108,108,72,101,105,103,104,116,32,43,32,116,111,112,66,111,114,100,101,114,32,43,32,98,111,116,116,111,109,66,111,114,100,101,114,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,112,120,40,110,111,100,101,44,32,115,116,121,108,101,80,114,111,112,101,114,116,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,110,111,100,101,41,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,115,116,121,108,101,80,114,111,112,101,114,116,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,114,115,101,70,108,111,97,116,40,118,97,108,117,101,46,114,101,112,108,97,99,101,40,39,112,120,39,44,32,39,39,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,110,101,119,73,110,108,105,110,101,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,85,82,76,95,82,69,71,69,88,32,61,32,47,117,114,108,92,92,40,91,39,92,34,93,63,40,91,94,39,92,34,93,43,63,41,91,39,92,34,93,63,92,92,41,47,103,59,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,108,105,110,101,65,108,108,58,32,105,110,108,105,110,101,65,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,104,111,117,108,100,80,114,111,99,101,115,115,58,32,115,104,111,117,108,100,80,114,111,99,101,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,109,112,108,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,97,100,85,114,108,115,58,32,114,101,97,100,85,114,108,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,108,105,110,101,58,32,105,110,108,105,110,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,80,114,111,99,101,115,115,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,115,101,97,114,99,104,40,85,82,76,95,82,69,71,69,88,41,32,33,61,61,32,45,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,97,100,85,114,108,115,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,40,109,97,116,99,104,32,61,32,85,82,76,95,82,69,71,69,88,46,101,120,101,99,40,115,116,114,105,110,103,41,41,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,109,97,116,99,104,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,117,114,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,117,116,105,108,46,105,115,68,97,116,97,85,114,108,40,117,114,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,108,105,110,101,40,115,116,114,105,110,103,44,32,117,114,108,44,32,98,97,115,101,85,114,108,44,32,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,117,114,108,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,117,114,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,85,114,108,32,63,32,117,116,105,108,46,114,101,115,111,108,118,101,85,114,108,40,117,114,108,44,32,98,97,115,101,85,114,108,41,32,58,32,117,114,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,103,101,116,32,124,124,32,117,116,105,108,46,103,101,116,65,110,100,69,110,99,111,100,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,117,116,105,108,46,100,97,116,97,65,115,85,114,108,40,100,97,116,97,44,32,117,116,105,108,46,109,105,109,101,84,121,112,101,40,117,114,108,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,100,97,116,97,85,114,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,114,101,112,108,97,99,101,40,117,114,108,65,115,82,101,103,101,120,40,117,114,108,41,44,32,39,36,49,39,32,43,32,100,97,116,97,85,114,108,32,43,32,39,36,51,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,117,114,108,65,115,82,101,103,101,120,40,117,114,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,82,101,103,69,120,112,40,39,40,117,114,108,92,92,92,92,40,91,92,92,39,92,34,93,63,41,40,39,32,43,32,117,116,105,108,46,101,115,99,97,112,101,40,117,114,108,41,32,43,32,39,41,40,91,92,92,39,92,34,93,63,92,92,92,92,41,41,39,44,32,39,103,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,108,105,110,101,65,108,108,40,115,116,114,105,110,103,44,32,98,97,115,101,85,114,108,44,32,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,116,104,105,110,103,84,111,73,110,108,105,110,101,40,41,41,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,115,116,114,105,110,103,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,115,116,114,105,110,103,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,114,101,97,100,85,114,108,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,117,114,108,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,111,110,101,32,61,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,114,108,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,117,114,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,110,101,32,61,32,100,111,110,101,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,115,116,114,105,110,103,41,32,123,92,110,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,114,101,116,117,114,110,32,105,110,108,105,110,101,40,115,116,114,105,110,103,44,32,117,114,108,44,32,98,97,115,101,85,114,108,44,32,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,111,110,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,110,111,116,104,105,110,103,84,111,73,110,108,105,110,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,115,104,111,117,108,100,80,114,111,99,101,115,115,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,110,101,119,70,111,110,116,70,97,99,101,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,118,101,65,108,108,58,32,114,101,115,111,108,118,101,65,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,109,112,108,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,97,100,65,108,108,58,32,114,101,97,100,65,108,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,65,108,108,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,97,100,65,108,108,40,100,111,99,117,109,101,110,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,119,101,98,70,111,110,116,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,101,98,70,111,110,116,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,119,101,98,70,111,110,116,41,32,123,92,110,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,114,101,116,117,114,110,32,119,101,98,70,111,110,116,46,114,101,115,111,108,118,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,99,115,115,83,116,114,105,110,103,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,115,115,83,116,114,105,110,103,115,46,106,111,105,110,40,39,92,92,110,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,97,100,65,108,108,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,117,116,105,108,46,97,115,65,114,114,97,121,40,100,111,99,117,109,101,110,116,46,115,116,121,108,101,83,104,101,101,116,115,41,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,103,101,116,67,115,115,82,117,108,101,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,115,101,108,101,99,116,87,101,98,70,111,110,116,82,117,108,101,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,114,117,108,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,117,108,101,115,46,109,97,112,40,110,101,119,87,101,98,70,111,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,87,101,98,70,111,110,116,82,117,108,101,115,40,99,115,115,82,117,108,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,115,115,82,117,108,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,114,117,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,117,108,101,46,116,121,112,101,32,61,61,61,32,67,83,83,82,117,108,101,46,70,79,78,84,95,70,65,67,69,95,82,85,76,69,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,114,117,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,108,105,110,101,114,46,115,104,111,117,108,100,80,114,111,99,101,115,115,40,114,117,108,101,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,39,115,114,99,39,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,67,115,115,82,117,108,101,115,40,115,116,121,108,101,83,104,101,101,116,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,115,115,82,117,108,101,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,121,108,101,83,104,101,101,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,115,104,101,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,116,105,108,46,97,115,65,114,114,97,121,40,115,104,101,101,116,46,99,115,115,82,117,108,101,115,32,124,124,32,91,93,41,46,102,111,114,69,97,99,104,40,99,115,115,82,117,108,101,115,46,112,117,115,104,46,98,105,110,100,40,99,115,115,82,117,108,101,115,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,39,69,114,114,111,114,32,119,104,105,108,101,32,114,101,97,100,105,110,103,32,67,83,83,32,114,117,108,101,115,32,102,114,111,109,32,39,32,43,32,115,104,101,101,116,46,104,114,101,102,44,32,101,46,116,111,83,116,114,105,110,103,40,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,115,115,82,117,108,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,110,101,119,87,101,98,70,111,110,116,40,119,101,98,70,111,110,116,82,117,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,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,118,101,58,32,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,98,97,115,101,85,114,108,32,61,32,40,119,101,98,70,111,110,116,82,117,108,101,46,112,97,114,101,110,116,83,116,121,108,101,83,104,101,101,116,32,124,124,32,123,125,41,46,104,114,101,102,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,108,105,110,101,114,46,105,110,108,105,110,101,65,108,108,40,119,101,98,70,111,110,116,82,117,108,101,46,99,115,115,84,101,120,116,44,32,98,97,115,101,85,114,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,114,99,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,119,101,98,70,111,110,116,82,117,108,101,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,39,115,114,99,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,110,101,119,73,109,97,103,101,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,108,105,110,101,65,108,108,58,32,105,110,108,105,110,101,65,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,109,112,108,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,73,109,97,103,101,58,32,110,101,119,73,109,97,103,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,110,101,119,73,109,97,103,101,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,108,105,110,101,58,32,105,110,108,105,110,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,108,105,110,101,40,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,117,116,105,108,46,105,115,68,97,116,97,85,114,108,40,101,108,101,109,101,110,116,46,115,114,99,41,41,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,101,108,101,109,101,110,116,46,115,114,99,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,103,101,116,32,124,124,32,117,116,105,108,46,103,101,116,65,110,100,69,110,99,111,100,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,117,116,105,108,46,100,97,116,97,65,115,85,114,108,40,100,97,116,97,44,32,117,116,105,108,46,109,105,109,101,84,121,112,101,40,101,108,101,109,101,110,116,46,115,114,99,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,100,97,116,97,85,114,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,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,101,108,101,109,101,110,116,46,111,110,108,111,97,100,32,61,32,114,101,115,111,108,118,101,59,92,110,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,101,108,101,109,101,110,116,46,111,110,101,114,114,111,114,32,61,32,114,101,106,101,99,116,59,92,110,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,101,108,101,109,101,110,116,46,115,114,99,32,61,32,100,97,116,97,85,114,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,108,105,110,101,65,108,108,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,110,111,100,101,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,41,41,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,110,111,100,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,108,105,110,101,66,97,99,107,103,114,111,117,110,100,40,110,111,100,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,73,109,97,103,101,69,108,101,109,101,110,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,73,109,97,103,101,40,110,111,100,101,41,46,105,110,108,105,110,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,92,110,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,117,116,105,108,46,97,115,65,114,114,97,121,40,110,111,100,101,46,99,104,105,108,100,78,111,100,101,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,99,104,105,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,108,105,110,101,65,108,108,40,99,104,105,108,100,41,59,92,110,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,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,108,105,110,101,66,97,99,107,103,114,111,117,110,100,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,98,97,99,107,103,114,111,117,110,100,32,61,32,110,111,100,101,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,39,98,97,99,107,103,114,111,117,110,100,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,98,97,99,107,103,114,111,117,110,100,41,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,110,111,100,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,108,105,110,101,114,46,105,110,108,105,110,101,65,108,108,40,98,97,99,107,103,114,111,117,110,100,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,105,110,108,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,92,110,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,39,98,97,99,107,103,114,111,117,110,100,39,44,92,110,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,105,110,108,105,110,101,100,44,92,110,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,110,111,100,101,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,80,114,105,111,114,105,116,121,40,39,98,97,99,107,103,114,111,117,110,100,39,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,125,41,40,116,104,105,115,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,111,109,45,116,111,45,105,109,97,103,101,47,115,114,99,47,100,111,109,45,116,111,45,105,109,97,103,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,102,115,108,105,103,104,116,98,111,120,45,118,117,101,47,105,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,102,115,108,105,103,104,116,98,111,120,45,118,117,101,47,105,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,123,125,59,102,117,110,99,116,105,111,110,32,110,40,111,41,123,105,102,40,116,91,111,93,41,114,101,116,117,114,110,32,116,91,111,93,46,101,120,112,111,114,116,115,59,118,97,114,32,105,61,116,91,111,93,61,123,105,58,111,44,108,58,33,49,44,101,120,112,111,114,116,115,58,123,125,125,59,114,101,116,117,114,110,32,101,91,111,93,46,99,97,108,108,40,105,46,101,120,112,111,114,116,115,44,105,44,105,46,101,120,112,111,114,116,115,44,110,41,44,105,46,108,61,33,48,44,105,46,101,120,112,111,114,116,115,125,114,101,116,117,114,110,32,110,46,109,61,101,44,110,46,99,61,116,44,110,46,100,61,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,110,46,111,40,101,44,116,41,124,124,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,44,123,101,110,117,109,101,114,97,98,108,101,58,33,48,44,103,101,116,58,111,125,41,125,44,110,46,114,61,102,117,110,99,116,105,111,110,40,101,41,123,92,34,117,110,100,101,102,105,110,101,100,92,34,33,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,38,38,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,44,123,118,97,108,117,101,58,92,34,77,111,100,117,108,101,92,34,125,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,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,125,44,110,46,116,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,49,38,116,38,38,40,101,61,110,40,101,41,41,44,56,38,116,41,114,101,116,117,114,110,32,101,59,105,102,40,52,38,116,38,38,92,34,111,98,106,101,99,116,92,34,61,61,116,121,112,101,111,102,32,101,38,38,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,41,114,101,116,117,114,110,32,101,59,118,97,114,32,111,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,105,102,40,110,46,114,40,111,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,44,92,34,100,101,102,97,117,108,116,92,34,44,123,101,110,117,109,101,114,97,98,108,101,58,33,48,44,118,97,108,117,101,58,101,125,41,44,50,38,116,38,38,92,34,115,116,114,105,110,103,92,34,33,61,116,121,112,101,111,102,32,101,41,102,111,114,40,118,97,114,32,105,32,105,110,32,101,41,110,46,100,40,111,44,105,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,46,98,105,110,100,40,110,117,108,108,44,105,41,41,59,114,101,116,117,114,110,32,111,125,44,110,46,110,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,100,101,102,97,117,108,116,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,125,59,114,101,116,117,114,110,32,110,46,100,40,116,44,92,34,97,92,34,44,116,41,44,116,125,44,110,46,111,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,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,101,44,116,41,125,44,110,46,112,61,92,34,92,34,44,110,40,110,46,115,61,48,41,125,40,91,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,110,46,114,40,116,41,59,118,97,114,32,111,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,46,105,115,79,112,101,110,63,110,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,99,111,110,116,97,105,110,101,114,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,99,111,110,116,97,105,110,101,114,32,102,115,108,105,103,104,116,98,111,120,45,102,117,108,108,45,100,105,109,101,110,115,105,111,110,32,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,45,115,116,114,111,110,103,92,34,125,44,91,110,40,92,34,67,97,112,116,105,111,110,115,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,101,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,78,97,118,101,114,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,101,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,83,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,101,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,83,108,105,100,101,66,117,116,116,111,110,115,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,101,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,83,108,105,100,101,115,104,111,119,66,97,114,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,101,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,101,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,101,46,102,115,76,105,103,104,116,98,111,120,83,116,111,114,101,91,101,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,112,114,111,112,115,46,100,105,115,97,98,108,101,84,104,117,109,98,115,63,101,46,95,101,40,41,58,110,40,92,34,84,104,117,109,98,115,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,101,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,93,44,49,41,58,101,46,95,101,40,41,125,59,111,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,105,61,92,34,102,115,108,105,103,104,116,98,111,120,45,92,34,44,114,61,92,34,92,34,46,99,111,110,99,97,116,40,105,44,92,34,115,116,121,108,101,115,92,34,41,44,115,61,92,34,92,34,46,99,111,110,99,97,116,40,105,44,92,34,99,117,114,115,111,114,45,103,114,97,98,98,105,110,103,92,34,41,44,97,61,92,34,92,34,46,99,111,110,99,97,116,40,105,44,92,34,102,108,101,120,45,99,101,110,116,101,114,101,100,92,34,41,44,117,61,92,34,92,34,46,99,111,110,99,97,116,40,105,44,92,34,111,112,101,110,92,34,41,44,99,61,92,34,92,34,46,99,111,110,99,97,116,40,105,44,92,34,116,114,97,110,115,102,111,114,109,45,116,114,97,110,115,105,116,105,111,110,92,34,41,44,108,61,92,34,92,34,46,99,111,110,99,97,116,40,105,44,92,34,102,97,100,101,45,105,110,92,34,41,44,104,61,92,34,92,34,46,99,111,110,99,97,116,40,105,44,92,34,102,97,100,101,45,111,117,116,92,34,41,44,100,61,108,43,92,34,45,115,116,114,111,110,103,92,34,44,112,61,104,43,92,34,45,115,116,114,111,110,103,92,34,44,102,61,92,34,92,34,46,99,111,110,99,97,116,40,105,44,92,34,99,97,112,116,105,111,110,92,34,41,43,92,34,45,97,99,116,105,118,101,92,34,44,109,61,92,34,92,34,46,99,111,110,99,97,116,40,105,44,92,34,111,112,97,99,105,116,121,45,92,34,41,44,98,61,92,34,92,34,46,99,111,110,99,97,116,40,109,44,92,34,48,92,34,41,44,103,61,92,34,92,34,46,99,111,110,99,97,116,40,109,44,92,34,49,92,34,41,44,120,61,92,34,92,34,46,99,111,110,99,97,116,40,105,44,92,34,115,111,117,114,99,101,92,34,41,44,118,61,92,34,92,34,46,99,111,110,99,97,116,40,120,44,92,34,45,119,114,97,112,112,101,114,115,45,99,111,110,116,97,105,110,101,114,45,112,105,110,99,104,105,110,103,92,34,41,44,83,61,92,34,92,34,46,99,111,110,99,97,116,40,105,44,92,34,116,104,117,109,98,92,34,41,44,119,61,83,43,92,34,115,45,97,99,116,105,118,101,92,34,44,76,61,83,43,92,34,45,97,99,116,105,118,101,92,34,59,102,117,110,99,116,105,111,110,32,84,40,41,123,118,97,114,32,101,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,92,34,115,116,121,108,101,92,34,41,59,101,46,99,108,97,115,115,78,97,109,101,61,114,44,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,92,34,46,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,123,97,110,105,109,97,116,105,111,110,58,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,32,46,51,115,32,99,117,98,105,99,45,98,101,122,105,101,114,40,48,44,48,44,46,55,44,49,41,125,46,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,111,117,116,123,97,110,105,109,97,116,105,111,110,58,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,111,117,116,32,46,51,115,32,101,97,115,101,125,46,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,45,115,116,114,111,110,103,123,97,110,105,109,97,116,105,111,110,58,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,45,115,116,114,111,110,103,32,46,51,115,32,99,117,98,105,99,45,98,101,122,105,101,114,40,48,44,48,44,46,55,44,49,41,125,46,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,111,117,116,45,115,116,114,111,110,103,123,97,110,105,109,97,116,105,111,110,58,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,111,117,116,45,115,116,114,111,110,103,32,46,51,115,32,101,97,115,101,125,64,107,101,121,102,114,97,109,101,115,32,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,123,102,114,111,109,123,111,112,97,99,105,116,121,58,46,54,53,125,116,111,123,111,112,97,99,105,116,121,58,49,125,125,64,107,101,121,102,114,97,109,101,115,32,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,111,117,116,123,102,114,111,109,123,111,112,97,99,105,116,121,58,46,51,53,125,116,111,123,111,112,97,99,105,116,121,58,48,125,125,64,107,101,121,102,114,97,109,101,115,32,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,45,115,116,114,111,110,103,123,102,114,111,109,123,111,112,97,99,105,116,121,58,46,51,125,116,111,123,111,112,97,99,105,116,121,58,49,125,125,64,107,101,121,102,114,97,109,101,115,32,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,111,117,116,45,115,116,114,111,110,103,123,102,114,111,109,123,111,112,97,99,105,116,121,58,49,125,116,111,123,111,112,97,99,105,116,121,58,48,125,125,46,102,115,108,105,103,104,116,98,111,120,45,115,99,97,108,101,45,105,110,123,97,110,105,109,97,116,105,111,110,58,102,115,108,105,103,104,116,98,111,120,45,115,99,97,108,101,45,105,110,32,46,53,115,32,101,97,115,101,125,64,107,101,121,102,114,97,109,101,115,32,102,115,108,105,103,104,116,98,111,120,45,115,99,97,108,101,45,105,110,123,102,114,111,109,123,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,53,41,125,116,111,123,111,112,97,99,105,116,121,58,49,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,125,125,46,102,115,108,105,103,104,116,98,111,120,45,97,98,115,111,108,117,116,101,100,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,125,46,102,115,108,105,103,104,116,98,111,120,45,99,117,114,115,111,114,45,103,114,97,98,98,105,110,103,123,99,117,114,115,111,114,58,103,114,97,98,98,105,110,103,33,105,109,112,111,114,116,97,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,102,117,108,108,45,100,105,109,101,110,115,105,111,110,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,125,46,102,115,108,105,103,104,116,98,111,120,45,111,112,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,104,101,105,103,104,116,58,49,48,48,37,125,46,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,123,100,105,115,112,108,97,121,58,102,108,101,120,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,102,115,108,105,103,104,116,98,111,120,45,111,112,97,99,105,116,121,45,48,123,111,112,97,99,105,116,121,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,111,112,97,99,105,116,121,45,49,123,111,112,97,99,105,116,121,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,115,99,114,111,108,108,98,97,114,102,105,120,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,55,112,120,125,46,102,115,108,105,103,104,116,98,111,120,45,116,114,97,110,115,102,111,114,109,45,116,114,97,110,115,105,116,105,111,110,123,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,125,46,102,115,108,105,103,104,116,98,111,120,45,99,111,110,116,97,105,110,101,114,123,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,115,97,110,115,45,115,101,114,105,102,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,114,103,98,97,40,51,48,44,51,48,44,51,48,44,46,57,41,44,35,48,48,48,32,49,56,49,48,37,41,59,122,45,105,110,100,101,120,58,49,48,48,48,48,48,48,48,48,48,59,116,111,117,99,104,45,97,99,116,105,111,110,58,110,111,110,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,99,111,110,116,97,105,110,101,114,32,42,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,102,115,108,105,103,104,116,98,111,120,45,115,118,103,45,112,97,116,104,123,116,114,97,110,115,105,116,105,111,110,58,102,105,108,108,32,46,49,53,115,32,101,97,115,101,59,102,105,108,108,58,35,100,49,100,50,100,50,125,46,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,58,97,117,116,111,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,108,101,102,116,58,53,48,37,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,45,53,48,37,41,59,119,105,100,116,104,58,54,55,112,120,59,104,101,105,103,104,116,58,54,55,112,120,125,46,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,32,100,105,118,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,53,52,112,120,59,104,101,105,103,104,116,58,53,52,112,120,59,109,97,114,103,105,110,58,54,112,120,59,98,111,114,100,101,114,58,53,112,120,32,115,111,108,105,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,57,57,57,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,97,110,105,109,97,116,105,111,110,58,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,32,49,46,50,115,32,99,117,98,105,99,45,98,101,122,105,101,114,40,46,53,44,48,44,46,53,44,49,41,32,105,110,102,105,110,105,116,101,125,46,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,32,100,105,118,58,110,116,104,45,99,104,105,108,100,40,49,41,123,97,110,105,109,97,116,105,111,110,45,100,101,108,97,121,58,45,46,52,53,115,125,46,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,32,100,105,118,58,110,116,104,45,99,104,105,108,100,40,50,41,123,97,110,105,109,97,116,105,111,110,45,100,101,108,97,121,58,45,46,51,115,125,46,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,32,100,105,118,58,110,116,104,45,99,104,105,108,100,40,51,41,123,97,110,105,109,97,116,105,111,110,45,100,101,108,97,121,58,45,46,49,53,115,125,64,107,101,121,102,114,97,109,101,115,32,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,123,48,37,123,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,48,41,125,49,48,48,37,123,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,125,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,108,111,97,100,101,114,123,119,105,100,116,104,58,53,52,112,120,33,105,109,112,111,114,116,97,110,116,59,104,101,105,103,104,116,58,53,52,112,120,33,105,109,112,111,114,116,97,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,108,111,97,100,101,114,32,100,105,118,123,98,111,114,100,101,114,45,119,105,100,116,104,58,52,112,120,33,105,109,112,111,114,116,97,110,116,59,119,105,100,116,104,58,52,52,112,120,33,105,109,112,111,114,116,97,110,116,59,104,101,105,103,104,116,58,52,52,112,120,33,105,109,112,111,114,116,97,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,110,97,118,123,104,101,105,103,104,116,58,52,53,112,120,59,119,105,100,116,104,58,49,48,48,37,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,110,117,109,98,101,114,45,99,111,110,116,97,105,110,101,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,104,101,105,103,104,116,58,49,48,48,37,59,102,111,110,116,45,115,105,122,101,58,49,53,112,120,59,99,111,108,111,114,58,35,100,55,100,55,100,55,59,122,45,105,110,100,101,120,58,48,59,109,97,120,45,119,105,100,116,104,58,53,53,112,120,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,110,117,109,98,101,114,45,99,111,110,116,97,105,110,101,114,32,46,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,123,104,101,105,103,104,116,58,49,48,48,37,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,97,115,104,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,58,48,32,53,112,120,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,49,50,112,120,59,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,49,53,100,101,103,41,59,98,97,99,107,103,114,111,117,110,100,58,35,102,102,102,125,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,51,59,114,105,103,104,116,58,48,59,116,111,112,58,48,59,104,101,105,103,104,116,58,52,53,112,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,51,53,44,51,53,44,51,53,44,46,54,53,41,125,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,123,104,101,105,103,104,116,58,49,48,48,37,59,119,105,100,116,104,58,52,53,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,104,111,118,101,114,32,46,102,115,108,105,103,104,116,98,111,120,45,115,118,103,45,112,97,116,104,123,102,105,108,108,58,35,102,102,102,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,49,50,112,120,32,49,50,112,120,32,49,50,112,120,32,54,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,122,45,105,110,100,101,120,58,51,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,52,55,54,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,123,112,97,100,100,105,110,103,58,50,50,112,120,32,50,50,112,120,32,50,50,112,120,32,54,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,123,112,97,100,100,105,110,103,58,51,48,112,120,32,51,48,112,120,32,51,48,112,120,32,54,112,120,125,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,58,104,111,118,101,114,32,46,102,115,108,105,103,104,116,98,111,120,45,115,118,103,45,112,97,116,104,123,102,105,108,108,58,35,102,49,102,49,102,49,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,123,112,97,100,100,105,110,103,58,57,112,120,59,102,111,110,116,45,115,105,122,101,58,50,54,112,120,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,51,53,44,51,53,44,51,53,44,46,54,53,41,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,123,112,97,100,100,105,110,103,58,49,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,54,48,48,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,123,112,97,100,100,105,110,103,58,49,49,112,120,125,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,45,112,114,101,118,105,111,117,115,123,108,101,102,116,58,48,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,52,55,53,46,57,57,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,45,112,114,101,118,105,111,117,115,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,112,120,125,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,45,110,101,120,116,123,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,50,112,120,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,52,55,54,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,45,110,101,120,116,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,50,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,45,110,101,120,116,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,52,55,54,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,45,110,101,120,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,54,112,120,125,125,46,102,115,108,105,103,104,116,98,111,120,45,100,111,119,110,45,101,118,101,110,116,45,100,101,116,101,99,116,111,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,115,119,105,112,105,110,103,45,104,111,118,101,114,101,114,123,122,45,105,110,100,101,120,58,52,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,115,104,111,119,45,98,97,114,123,119,105,100,116,104,58,48,59,104,101,105,103,104,116,58,50,112,120,59,122,45,105,110,100,101,120,58,52,59,111,112,97,99,105,116,121,58,48,59,98,97,99,107,103,114,111,117,110,100,58,35,102,102,102,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,52,115,125,46,102,115,108,105,103,104,116,98,111,120,45,105,110,118,97,108,105,100,45,102,105,108,101,45,119,114,97,112,112,101,114,123,102,111,110,116,45,115,105,122,101,58,50,52,112,120,59,99,111,108,111,114,58,35,101,97,101,98,101,98,59,109,97,114,103,105,110,58,97,117,116,111,125,46,102,115,108,105,103,104,116,98,111,120,45,118,105,100,101,111,123,111,98,106,101,99,116,45,102,105,116,58,99,111,118,101,114,125,46,102,115,108,105,103,104,116,98,111,120,45,121,111,117,116,117,98,101,45,105,102,114,97,109,101,123,98,111,114,100,101,114,58,48,125,46,102,115,108,105,103,104,116,98,111,120,45,115,111,117,114,99,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,90,40,48,41,59,109,97,114,103,105,110,58,97,117,116,111,59,99,117,114,115,111,114,58,122,111,111,109,45,105,110,59,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,125,46,102,115,108,105,103,104,116,98,111,120,45,115,111,117,114,99,101,45,119,114,97,112,112,101,114,115,45,99,111,110,116,97,105,110,101,114,123,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,50,115,32,108,105,110,101,97,114,59,122,45,105,110,100,101,120,58,50,125,46,102,115,108,105,103,104,116,98,111,120,45,115,111,117,114,99,101,45,119,114,97,112,112,101,114,115,45,99,111,110,116,97,105,110,101,114,45,112,105,110,99,104,105,110,103,123,116,114,97,110,115,105,116,105,111,110,45,100,117,114,97,116,105,111,110,58,46,49,115,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,122,45,105,110,100,101,120,58,45,49,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,49,56,48,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,48,41,44,35,49,101,49,101,49,101,32,49,48,48,37,41,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,50,115,59,112,97,100,100,105,110,103,58,48,32,53,112,120,32,49,50,112,120,32,53,112,120,59,104,101,105,103,104,116,58,49,49,52,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,51,112,120,59,104,101,105,103,104,116,58,49,50,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,54,48,48,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,52,112,120,59,104,101,105,103,104,116,58,49,50,54,112,120,125,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,97,99,116,105,118,101,123,111,112,97,99,105,116,121,58,49,59,122,45,105,110,100,101,120,58,51,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,105,110,110,101,114,123,104,101,105,103,104,116,58,49,48,48,37,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,119,114,97,112,112,101,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,104,101,105,103,104,116,58,49,48,48,37,59,109,97,114,103,105,110,58,48,32,52,112,120,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,119,114,97,112,112,101,114,32,115,118,103,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,108,101,102,116,58,53,48,37,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,45,53,48,37,41,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,122,45,105,110,100,101,120,58,49,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,119,114,97,112,112,101,114,32,112,97,116,104,123,102,105,108,108,58,35,102,102,102,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,119,114,97,112,112,101,114,45,100,97,114,107,101,110,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,50,112,120,59,108,101,102,116,58,50,112,120,59,119,105,100,116,104,58,99,97,108,99,40,49,48,48,37,32,45,32,52,112,120,41,59,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,52,112,120,41,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,46,52,41,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,112,120,59,104,101,105,103,104,116,58,49,48,48,37,59,119,105,100,116,104,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,58,50,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,97,99,116,105,118,101,123,98,111,114,100,101,114,58,50,112,120,32,115,111,108,105,100,32,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,105,110,118,97,108,105,100,123,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,98,111,116,116,111,109,44,35,48,102,48,102,48,102,44,114,103,98,97,40,49,53,44,49,53,44,49,53,44,46,53,41,41,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,105,110,45,119,105,100,116,104,58,49,53,53,112,120,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,99,117,114,115,111,114,101,114,123,122,45,105,110,100,101,120,58,52,59,99,117,114,115,111,114,58,103,114,97,98,98,105,110,103,125,46,102,115,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,53,48,37,59,119,105,100,116,104,58,49,48,48,37,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,49,56,48,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,48,41,44,35,49,101,49,101,49,101,32,49,48,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,53,48,37,41,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,50,115,59,122,45,105,110,100,101,120,58,45,49,125,46,102,115,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,45,105,110,110,101,114,123,112,97,100,100,105,110,103,58,50,53,112,120,59,109,97,120,45,119,105,100,116,104,58,49,50,48,48,112,120,59,99,111,108,111,114,58,35,101,101,101,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,45,105,110,110,101,114,123,112,97,100,100,105,110,103,58,51,48,112,120,32,50,53,112,120,125,125,46,102,115,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,45,97,99,116,105,118,101,123,111,112,97,99,105,116,121,58,49,59,122,45,105,110,100,101,120,58,51,125,92,34,41,41,44,100,111,99,117,109,101,110,116,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,125,102,117,110,99,116,105,111,110,32,67,40,101,41,123,114,101,116,117,114,110,40,67,61,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,92,34,115,121,109,98,111,108,92,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,101,125,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,83,121,109,98,111,108,38,38,101,33,61,61,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,63,92,34,115,121,109,98,111,108,92,34,58,116,121,112,101,111,102,32,101,125,41,40,101,41,125,92,34,111,98,106,101,99,116,92,34,61,61,61,40,92,34,117,110,100,101,102,105,110,101,100,92,34,61,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,63,92,34,117,110,100,101,102,105,110,101,100,92,34,58,67,40,100,111,99,117,109,101,110,116,41,41,38,38,84,40,41,59,118,97,114,32,73,61,91,93,44,121,61,123,116,104,117,109,98,115,58,123,119,105,100,116,104,58,92,34,49,55,112,120,92,34,44,104,101,105,103,104,116,58,92,34,49,55,112,120,92,34,44,118,105,101,119,66,111,120,58,92,34,48,32,48,32,50,50,32,50,50,92,34,44,100,58,92,34,77,32,51,32,50,32,67,32,50,46,52,52,56,32,50,32,50,32,50,46,52,52,56,32,50,32,51,32,76,32,50,32,54,32,67,32,50,32,54,46,53,53,50,32,50,46,52,52,56,32,55,32,51,32,55,32,76,32,54,32,55,32,67,32,54,46,53,53,50,32,55,32,55,32,54,46,53,53,50,32,55,32,54,32,76,32,55,32,51,32,67,32,55,32,50,46,52,52,56,32,54,46,53,53,50,32,50,32,54,32,50,32,76,32,51,32,50,32,122,32,77,32,49,48,32,50,32,67,32,57,46,52,52,56,32,50,32,57,32,50,46,52,52,56,32,57,32,51,32,76,32,57,32,54,32,67,32,57,32,54,46,53,53,50,32,57,46,52,52,56,32,55,32,49,48,32,55,32,76,32,49,51,32,55,32,67,32,49,51,46,53,53,50,32,55,32,49,52,32,54,46,53,53,50,32,49,52,32,54,32,76,32,49,52,32,51,32,67,32,49,52,32,50,46,52,52,56,32,49,51,46,53,53,50,32,50,32,49,51,32,50,32,76,32,49,48,32,50,32,122,32,77,32,49,55,32,50,32,67,32,49,54,46,52,52,56,32,50,32,49,54,32,50,46,52,52,56,32,49,54,32,51,32,76,32,49,54,32,54,32,67,32,49,54,32,54,46,53,53,50,32,49,54,46,52,52,56,32,55,32,49,55,32,55,32,76,32,50,48,32,55,32,67,32,50,48,46,53,53,50,32,55,32,50,49,32,54,46,53,53,50,32,50,49,32,54,32,76,32,50,49,32,51,32,67,32,50,49,32,50,46,52,52,56,32,50,48,46,53,53,50,32,50,32,50,48,32,50,32,76,32,49,55,32,50,32,122,32,77,32,51,32,57,32,67,32,50,46,52,52,56,32,57,32,50,32,57,46,52,52,56,32,50,32,49,48,32,76,32,50,32,49,51,32,67,32,50,32,49,51,46,53,53,50,32,50,46,52,52,56,32,49,52,32,51,32,49,52,32,76,32,54,32,49,52,32,67,32,54,46,53,53,50,32,49,52,32,55,32,49,51,46,53,53,50,32,55,32,49,51,32,76,32,55,32,49,48,32,67,32,55,32,57,46,52,52,56,32,54,46,53,53,50,32,57,32,54,32,57,32,76,32,51,32,57,32,122,32,77,32,49,48,32,57,32,67,32,57,46,52,52,56,32,57,32,57,32,57,46,52,52,56,32,57,32,49,48,32,76,32,57,32,49,51,32,67,32,57,32,49,51,46,53,53,50,32,57,46,52,52,56,32,49,52,32,49,48,32,49,52,32,76,32,49,51,32,49,52,32,67,32,49,51,46,53,53,50,32,49,52,32,49,52,32,49,51,46,53,53,50,32,49,52,32,49,51,32,76,32,49,52,32,49,48,32,67,32,49,52,32,57,46,52,52,56,32,49,51,46,53,53,50,32,57,32,49,51,32,57,32,76,32,49,48,32,57,32,122,32,77,32,49,55,32,57,32,67,32,49,54,46,52,52,56,32,57,32,49,54,32,57,46,52,52,56,32,49,54,32,49,48,32,76,32,49,54,32,49,51,32,67,32,49,54,32,49,51,46,53,53,50,32,49,54,46,52,52,56,32,49,52,32,49,55,32,49,52,32,76,32,50,48,32,49,52,32,67,32,50,48,46,53,53,50,32,49,52,32,50,49,32,49,51,46,53,53,50,32,50,49,32,49,51,32,76,32,50,49,32,49,48,32,67,32,50,49,32,57,46,52,52,56,32,50,48,46,53,53,50,32,57,32,50,48,32,57,32,76,32,49,55,32,57,32,122,32,77,32,51,32,49,54,32,67,32,50,46,52,52,56,32,49,54,32,50,32,49,54,46,52,52,56,32,50,32,49,55,32,76,32,50,32,50,48,32,67,32,50,32,50,48,46,53,53,50,32,50,46,52,52,56,32,50,49,32,51,32,50,49,32,76,32,54,32,50,49,32,67,32,54,46,53,53,50,32,50,49,32,55,32,50,48,46,53,53,50,32,55,32,50,48,32,76,32,55,32,49,55,32,67,32,55,32,49,54,46,52,52,56,32,54,46,53,53,50,32,49,54,32,54,32,49,54,32,76,32,51,32,49,54,32,122,32,77,32,49,48,32,49,54,32,67,32,57,46,52,52,56,32,49,54,32,57,32,49,54,46,52,52,56,32,57,32,49,55,32,76,32,57,32,50,48,32,67,32,57,32,50,48,46,53,53,50,32,57,46,52,52,56,32,50,49,32,49,48,32,50,49,32,76,32,49,51,32,50,49,32,67,32,49,51,46,53,53,50,32,50,49,32,49,52,32,50,48,46,53,53,50,32,49,52,32,50,48,32,76,32,49,52,32,49,55,32,67,32,49,52,32,49,54,46,52,52,56,32,49,51,46,53,53,50,32,49,54,32,49,51,32,49,54,32,76,32,49,48,32,49,54,32,122,32,77,32,49,55,32,49,54,32,67,32,49,54,46,52,52,56,32,49,54,32,49,54,32,49,54,46,52,52,56,32,49,54,32,49,55,32,76,32,49,54,32,50,48,32,67,32,49,54,32,50,48,46,53,53,50,32,49,54,46,52,52,56,32,50,49,32,49,55,32,50,49,32,76,32,50,48,32,50,49,32,67,32,50,48,46,53,53,50,32,50,49,32,50,49,32,50,48,46,53,53,50,32,50,49,32,50,48,32,76,32,50,49,32,49,55,32,67,32,50,49,32,49,54,46,52,52,56,32,50,48,46,53,53,50,32,49,54,32,50,48,32,49,54,32,76,32,49,55,32,49,54,32,122,92,34,44,116,105,116,108,101,58,92,34,84,104,117,109,98,110,97,105,108,115,92,34,125,44,122,111,111,109,73,110,58,123,119,105,100,116,104,58,92,34,50,48,112,120,92,34,44,104,101,105,103,104,116,58,92,34,50,48,112,120,92,34,44,118,105,101,119,66,111,120,58,92,34,48,32,48,32,51,48,32,51,48,92,34,44,100,58,92,34,77,32,49,51,32,51,32,67,32,55,46,52,56,56,57,57,55,49,32,51,32,51,32,55,46,52,56,56,57,57,55,49,32,51,32,49,51,32,67,32,51,32,49,56,46,53,49,49,48,48,51,32,55,46,52,56,56,57,57,55,49,32,50,51,32,49,51,32,50,51,32,67,32,49,53,46,51,57,54,53,48,56,32,50,51,32,49,55,46,53,57,55,51,56,53,32,50,50,46,49,52,56,57,56,54,32,49,57,46,51,50,50,50,54,54,32,50,48,46,55,51,54,51,50,56,32,76,32,50,53,46,50,57,50,57,54,57,32,50,54,46,55,48,55,48,51,49,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,49,32,48,32,50,54,46,55,48,55,48,51,49,32,50,53,46,50,57,50,57,54,57,32,76,32,50,48,46,55,51,54,51,50,56,32,49,57,46,51,50,50,50,54,54,32,67,32,50,50,46,49,52,56,57,56,54,32,49,55,46,53,57,55,51,56,53,32,50,51,32,49,53,46,51,57,54,53,48,56,32,50,51,32,49,51,32,67,32,50,51,32,55,46,52,56,56,57,57,55,49,32,49,56,46,53,49,49,48,48,51,32,51,32,49,51,32,51,32,122,32,77,32,49,51,32,53,32,67,32,49,55,46,52,51,48,49,50,51,32,53,32,50,49,32,56,46,53,54,57,56,55,55,52,32,50,49,32,49,51,32,67,32,50,49,32,49,55,46,52,51,48,49,50,51,32,49,55,46,52,51,48,49,50,51,32,50,49,32,49,51,32,50,49,32,67,32,56,46,53,54,57,56,55,55,52,32,50,49,32,53,32,49,55,46,52,51,48,49,50,51,32,53,32,49,51,32,67,32,53,32,56,46,53,54,57,56,55,55,52,32,56,46,53,54,57,56,55,55,52,32,53,32,49,51,32,53,32,122,32,77,32,49,50,46,57,56,52,51,55,53,32,55,46,57,56,54,51,50,56,49,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,48,32,48,32,49,50,32,57,32,76,32,49,50,32,49,50,32,76,32,57,32,49,50,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,49,32,48,32,57,32,49,52,32,76,32,49,50,32,49,52,32,76,32,49,50,32,49,55,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,49,32,48,32,49,52,32,49,55,32,76,32,49,52,32,49,52,32,76,32,49,55,32,49,52,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,49,32,48,32,49,55,32,49,50,32,76,32,49,52,32,49,50,32,76,32,49,52,32,57,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,48,32,48,32,49,50,46,57,56,52,51,55,53,32,55,46,57,56,54,51,50,56,49,32,122,92,34,44,116,105,116,108,101,58,92,34,90,111,111,109,32,73,110,92,34,125,44,122,111,111,109,79,117,116,58,123,119,105,100,116,104,58,92,34,50,48,112,120,92,34,44,104,101,105,103,104,116,58,92,34,50,48,112,120,92,34,44,118,105,101,119,66,111,120,58,92,34,48,32,48,32,51,48,32,51,48,92,34,44,100,58,92,34,77,32,49,51,32,51,32,67,32,55,46,52,56,56,57,57,55,49,32,51,32,51,32,55,46,52,56,56,57,57,55,49,32,51,32,49,51,32,67,32,51,32,49,56,46,53,49,49,48,48,51,32,55,46,52,56,56,57,57,55,49,32,50,51,32,49,51,32,50,51,32,67,32,49,53,46,51,57,54,53,48,56,32,50,51,32,49,55,46,53,57,55,51,56,53,32,50,50,46,49,52,56,57,56,54,32,49,57,46,51,50,50,50,54,54,32,50,48,46,55,51,54,51,50,56,32,76,32,50,53,46,50,57,50,57,54,57,32,50,54,46,55,48,55,48,51,49,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,49,32,48,32,50,54,46,55,48,55,48,51,49,32,50,53,46,50,57,50,57,54,57,32,76,32,50,48,46,55,51,54,51,50,56,32,49,57,46,51,50,50,50,54,54,32,67,32,50,50,46,49,52,56,57,56,54,32,49,55,46,53,57,55,51,56,53,32,50,51,32,49,53,46,51,57,54,53,48,56,32,50,51,32,49,51,32,67,32,50,51,32,55,46,52,56,56,57,57,55,49,32,49,56,46,53,49,49,48,48,51,32,51,32,49,51,32,51,32,122,32,77,32,49,51,32,53,32,67,32,49,55,46,52,51,48,49,50,51,32,53,32,50,49,32,56,46,53,54,57,56,55,55,52,32,50,49,32,49,51,32,67,32,50,49,32,49,55,46,52,51,48,49,50,51,32,49,55,46,52,51,48,49,50,51,32,50,49,32,49,51,32,50,49,32,67,32,56,46,53,54,57,56,55,55,52,32,50,49,32,53,32,49,55,46,52,51,48,49,50,51,32,53,32,49,51,32,67,32,53,32,56,46,53,54,57,56,55,55,52,32,56,46,53,54,57,56,55,55,52,32,53,32,49,51,32,53,32,122,32,77,32,57,32,49,50,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,49,32,48,32,57,32,49,52,32,76,32,49,55,32,49,52,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,49,32,48,32,49,55,32,49,50,32,76,32,57,32,49,50,32,122,92,34,44,116,105,116,108,101,58,92,34,90,111,111,109,32,79,117,116,92,34,125,44,115,108,105,100,101,115,104,111,119,58,123,115,116,97,114,116,58,123,119,105,100,116,104,58,92,34,49,54,112,120,92,34,44,104,101,105,103,104,116,58,92,34,49,54,112,120,92,34,44,118,105,101,119,66,111,120,58,92,34,48,32,48,32,51,48,32,51,48,92,34,44,100,58,92,34,77,32,54,32,51,32,65,32,49,32,49,32,48,32,48,32,48,32,53,32,52,32,65,32,49,32,49,32,48,32,48,32,48,32,53,32,52,46,48,48,51,57,48,54,50,32,76,32,53,32,49,53,32,76,32,53,32,50,53,46,57,57,54,48,57,52,32,65,32,49,32,49,32,48,32,48,32,48,32,53,32,50,54,32,65,32,49,32,49,32,48,32,48,32,48,32,54,32,50,55,32,65,32,49,32,49,32,48,32,48,32,48,32,54,46,53,56,48,48,55,56,49,32,50,54,46,56,49,50,53,32,76,32,54,46,53,56,50,48,51,49,50,32,50,54,46,56,49,52,52,53,51,32,76,32,50,54,46,52,49,54,48,49,54,32,49,53,46,57,48,56,50,48,51,32,65,32,49,32,49,32,48,32,48,32,48,32,50,55,32,49,53,32,65,32,49,32,49,32,48,32,48,32,48,32,50,54,46,51,56,56,54,55,50,32,49,52,46,48,55,56,49,50,53,32,76,32,54,46,53,56,50,48,51,49,50,32,51,46,49,56,53,53,52,54,57,32,76,32,54,46,53,56,48,48,55,56,49,32,51,46,49,56,53,53,52,54,57,32,65,32,49,32,49,32,48,32,48,32,48,32,54,32,51,32,122,92,34,44,116,105,116,108,101,58,92,34,84,117,114,110,32,111,110,32,115,108,105,100,101,115,104,111,119,92,34,125,44,112,97,117,115,101,58,123,119,105,100,116,104,58,92,34,49,52,112,120,92,34,44,104,101,105,103,104,116,58,92,34,49,52,112,120,92,34,44,118,105,101,119,66,111,120,58,92,34,48,32,48,32,51,53,54,46,49,57,32,51,53,54,46,49,57,92,34,44,100,58,92,34,77,49,50,49,44,48,99,49,56,44,48,44,51,51,44,49,53,44,51,51,44,51,51,118,51,55,50,99,48,44,49,56,45,49,53,44,51,51,45,51,51,44,51,51,115,45,51,50,45,49,53,45,51,50,45,51,51,86,51,51,67,56,57,44,49,53,44,49,48,51,44,48,44,49,50,49,44,48,122,77,51,49,55,44,48,99,49,56,44,48,44,51,50,44,49,53,44,51,50,44,51,51,118,51,55,50,99,48,44,49,56,45,49,52,44,51,51,45,51,50,44,51,51,115,45,51,51,45,49,53,45,51,51,45,51,51,86,51,51,67,50,56,52,44,49,53,44,50,57,57,44,48,44,51,49,55,44,48,122,92,34,44,116,105,116,108,101,58,92,34,84,117,114,110,32,111,102,102,32,115,108,105,100,101,115,104,111,119,92,34,125,125,44,102,117,108,108,115,99,114,101,101,110,58,123,101,110,116,101,114,58,123,119,105,100,116,104,58,92,34,50,48,112,120,92,34,44,104,101,105,103,104,116,58,92,34,50,48,112,120,92,34,44,118,105,101,119,66,111,120,58,92,34,48,32,48,32,49,56,32,49,56,92,34,44,100,58,92,34,77,52,46,53,32,49,49,72,51,118,52,104,52,118,45,49,46,53,72,52,46,53,86,49,49,122,77,51,32,55,104,49,46,53,86,52,46,53,72,55,86,51,72,51,118,52,122,109,49,48,46,53,32,54,46,53,72,49,49,86,49,53,104,52,118,45,52,104,45,49,46,53,118,50,46,53,122,77,49,49,32,51,118,49,46,53,104,50,46,53,86,55,72,49,53,86,51,104,45,52,122,92,34,44,116,105,116,108,101,58,92,34,69,110,116,101,114,32,102,117,108,108,115,99,114,101,101,110,92,34,125,44,101,120,105,116,58,123,119,105,100,116,104,58,92,34,50,52,112,120,92,34,44,104,101,105,103,104,116,58,92,34,50,52,112,120,92,34,44,118,105,101,119,66,111,120,58,92,34,48,32,48,32,57,53,48,32,49,48,50,52,92,34,44,100,58,92,34,77,54,56,50,32,51,52,50,104,49,50,56,118,56,52,104,45,50,49,50,118,45,50,49,50,104,56,52,118,49,50,56,122,77,53,57,56,32,56,49,48,118,45,50,49,50,104,50,49,50,118,56,52,104,45,49,50,56,118,49,50,56,104,45,56,52,122,77,51,52,50,32,51,52,50,118,45,49,50,56,104,56,52,118,50,49,50,104,45,50,49,50,118,45,56,52,104,49,50,56,122,77,50,49,52,32,54,56,50,118,45,56,52,104,50,49,50,118,50,49,50,104,45,56,52,118,45,49,50,56,104,45,49,50,56,122,92,34,44,116,105,116,108,101,58,92,34,69,120,105,116,32,102,117,108,108,115,99,114,101,101,110,92,34,125,125,44,99,108,111,115,101,58,123,119,105,100,116,104,58,92,34,50,48,112,120,92,34,44,104,101,105,103,104,116,58,92,34,50,48,112,120,92,34,44,118,105,101,119,66,111,120,58,92,34,48,32,48,32,50,52,32,50,52,92,34,44,100,58,92,34,77,32,52,46,55,48,55,48,51,49,50,32,51,46,50,57,50,57,54,56,56,32,76,32,51,46,50,57,50,57,54,56,56,32,52,46,55,48,55,48,51,49,50,32,76,32,49,48,46,53,56,53,57,51,56,32,49,50,32,76,32,51,46,50,57,50,57,54,56,56,32,49,57,46,50,57,50,57,54,57,32,76,32,52,46,55,48,55,48,51,49,50,32,50,48,46,55,48,55,48,51,49,32,76,32,49,50,32,49,51,46,52,49,52,48,54,50,32,76,32,49,57,46,50,57,50,57,54,57,32,50,48,46,55,48,55,48,51,49,32,76,32,50,48,46,55,48,55,48,51,49,32,49,57,46,50,57,50,57,54,57,32,76,32,49,51,46,52,49,52,48,54,50,32,49,50,32,76,32,50,48,46,55,48,55,48,51,49,32,52,46,55,48,55,48,51,49,50,32,76,32,49,57,46,50,57,50,57,54,57,32,51,46,50,57,50,57,54,56,56,32,76,32,49,50,32,49,48,46,53,56,53,57,51,56,32,76,32,52,46,55,48,55,48,51,49,50,32,51,46,50,57,50,57,54,56,56,32,122,92,34,44,116,105,116,108,101,58,92,34,67,108,111,115,101,92,34,125,125,44,95,61,123,112,114,101,118,105,111,117,115,58,123,119,105,100,116,104,58,92,34,50,48,112,120,92,34,44,104,101,105,103,104,116,58,92,34,50,48,112,120,92,34,44,118,105,101,119,66,111,120,58,92,34,48,32,48,32,50,48,32,50,48,92,34,44,100,58,92,34,77,49,56,46,50,55,49,44,57,46,50,49,50,72,51,46,54,49,53,108,52,46,49,56,52,45,52,46,49,56,52,99,48,46,51,48,54,45,48,46,51,48,54,44,48,46,51,48,54,45,48,46,56,48,49,44,48,45,49,46,49,48,55,99,45,48,46,51,48,54,45,48,46,51,48,54,45,48,46,56,48,49,45,48,46,51,48,54,45,49,46,49,48,55,44,48,76,49,46,50,49,44,57,46,52,48,51,67,49,46,49,57,52,44,57,46,52,49,55,44,49,46,49,55,52,44,57,46,52,50,49,44,49,46,49,53,56,44,57,46,52,51,55,99,45,48,46,49,56,49,44,48,46,49,56,49,45,48,46,50,52,50,44,48,46,52,50,53,45,48,46,50,48,57,44,48,46,54,54,99,48,46,48,48,53,44,48,46,48,51,56,44,48,46,48,49,50,44,48,46,48,55,49,44,48,46,48,50,50,44,48,46,49,48,57,99,48,46,48,50,56,44,48,46,48,57,56,44,48,46,48,55,53,44,48,46,49,56,56,44,48,46,49,52,50,44,48,46,50,55,49,99,48,46,48,50,49,44,48,46,48,50,54,44,48,46,48,50,49,44,48,46,48,54,49,44,48,46,48,52,53,44,48,46,48,56,53,99,48,46,48,49,53,44,48,46,48,49,54,44,48,46,48,51,52,44,48,46,48,50,44,48,46,48,53,44,48,46,48,51,51,108,53,46,52,56,52,44,53,46,52,56,51,99,48,46,51,48,54,44,48,46,51,48,55,44,48,46,56,48,49,44,48,46,51,48,55,44,49,46,49,48,55,44,48,99,48,46,51,48,54,45,48,46,51,48,53,44,48,46,51,48,54,45,48,46,56,48,49,44,48,45,49,46,49,48,53,108,45,52,46,49,56,52,45,52,46,49,56,53,104,49,52,46,54,53,54,99,48,46,52,51,54,44,48,44,48,46,55,56,56,45,48,46,51,53,51,44,48,46,55,56,56,45,48,46,55,56,56,83,49,56,46,55,48,55,44,57,46,50,49,50,44,49,56,46,50,55,49,44,57,46,50,49,50,122,92,34,44,116,105,116,108,101,58,92,34,80,114,101,118,105,111,117,115,92,34,125,44,110,101,120,116,58,123,119,105,100,116,104,58,92,34,50,48,112,120,92,34,44,104,101,105,103,104,116,58,92,34,50,48,112,120,92,34,44,118,105,101,119,66,111,120,58,92,34,48,32,48,32,50,48,32,50,48,92,34,44,100,58,92,34,77,49,46,55,50,57,44,57,46,50,49,50,104,49,52,46,54,53,54,108,45,52,46,49,56,52,45,52,46,49,56,52,99,45,48,46,51,48,55,45,48,46,51,48,54,45,48,46,51,48,55,45,48,46,56,48,49,44,48,45,49,46,49,48,55,99,48,46,51,48,53,45,48,46,51,48,54,44,48,46,56,48,49,45,48,46,51,48,54,44,49,46,49,48,54,44,48,108,53,46,52,56,49,44,53,46,52,56,50,99,48,46,48,49,56,44,48,46,48,49,52,44,48,46,48,51,55,44,48,46,48,49,57,44,48,46,48,53,51,44,48,46,48,51,52,99,48,46,49,56,49,44,48,46,49,56,49,44,48,46,50,52,50,44,48,46,52,50,53,44,48,46,50,48,57,44,48,46,54,54,99,45,48,46,48,48,52,44,48,46,48,51,56,45,48,46,48,49,50,44,48,46,48,55,49,45,48,46,48,50,49,44,48,46,49,48,57,99,45,48,46,48,50,56,44,48,46,48,57,56,45,48,46,48,55,53,44,48,46,49,56,56,45,48,46,49,52,51,44,48,46,50,55,49,99,45,48,46,48,50,49,44,48,46,48,50,54,45,48,46,48,50,49,44,48,46,48,54,49,45,48,46,48,52,53,44,48,46,48,56,53,99,45,48,46,48,49,53,44,48,46,48,49,54,45,48,46,48,51,52,44,48,46,48,50,45,48,46,48,53,49,44,48,46,48,51,51,108,45,53,46,52,56,51,44,53,46,52,56,51,99,45,48,46,51,48,54,44,48,46,51,48,55,45,48,46,56,48,50,44,48,46,51,48,55,45,49,46,49,48,54,44,48,99,45,48,46,51,48,55,45,48,46,51,48,53,45,48,46,51,48,55,45,48,46,56,48,49,44,48,45,49,46,49,48,53,108,52,46,49,56,52,45,52,46,49,56,53,72,49,46,55,50,57,99,45,48,46,52,51,54,44,48,45,48,46,55,56,56,45,48,46,51,53,51,45,48,46,55,56,56,45,48,46,55,56,56,83,49,46,50,57,51,44,57,46,50,49,50,44,49,46,55,50,57,44,57,46,50,49,50,122,92,34,44,116,105,116,108,101,58,92,34,78,101,120,116,92,34,125,125,59,102,117,110,99,116,105,111,110,32,65,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,114,101,116,117,114,110,32,122,40,101,41,125,40,101,41,124,124,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,92,34,117,110,100,101,102,105,110,101,100,92,34,33,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,101,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,101,41,125,40,101,41,124,124,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,101,41,114,101,116,117,114,110,59,105,102,40,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,122,40,101,44,116,41,59,118,97,114,32,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,101,41,46,115,108,105,99,101,40,56,44,45,49,41,59,92,34,79,98,106,101,99,116,92,34,61,61,61,110,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,101,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,59,105,102,40,92,34,77,97,112,92,34,61,61,61,110,124,124,92,34,83,101,116,92,34,61,61,61,110,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,101,41,59,105,102,40,92,34,65,114,103,117,109,101,110,116,115,92,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,41,114,101,116,117,114,110,32,122,40,101,44,116,41,125,40,101,41,124,124,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,92,34,41,125,40,41,125,102,117,110,99,116,105,111,110,32,122,40,101,44,116,41,123,40,110,117,108,108,61,61,116,124,124,116,62,101,46,108,101,110,103,116,104,41,38,38,40,116,61,101,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,111,61,110,101,119,32,65,114,114,97,121,40,116,41,59,110,60,116,59,110,43,43,41,111,91,110,93,61,101,91,110,93,59,114,101,116,117,114,110,32,111,125,102,117,110,99,116,105,111,110,32,69,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,91,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,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,105,61,110,101,119,32,65,114,114,97,121,40,111,41,44,114,61,48,59,114,60,111,59,114,43,43,41,105,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,116,46,97,112,112,108,121,40,118,111,105,100,32,48,44,65,40,110,46,99,111,110,99,97,116,40,105,41,41,41,38,38,101,46,97,112,112,108,121,40,118,111,105,100,32,48,44,105,41,125,125,102,117,110,99,116,105,111,110,32,87,40,101,41,123,118,97,114,32,116,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,44,110,61,101,46,99,111,114,101,46,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,44,111,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,59,116,104,105,115,46,114,117,110,67,117,114,114,101,110,116,83,116,97,103,101,73,110,100,101,120,85,112,100,97,116,101,65,99,116,105,111,110,115,70,111,114,61,102,117,110,99,116,105,111,110,40,101,41,123,101,33,61,61,111,46,99,117,114,114,101,110,116,38,38,40,116,46,103,101,116,40,41,63,110,46,106,117,109,112,84,111,40,101,41,58,111,46,99,117,114,114,101,110,116,61,101,41,125,125,102,117,110,99,116,105,111,110,32,66,40,101,41,123,118,97,114,32,116,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,44,110,61,101,46,99,111,114,101,44,111,61,110,46,108,105,103,104,116,98,111,120,67,108,111,115,101,114,44,105,61,110,46,108,105,103,104,116,98,111,120,79,112,101,110,101,114,44,114,61,110,46,108,105,103,104,116,98,111,120,85,112,100,97,116,101,114,44,115,61,101,46,100,97,116,97,44,97,61,40,48,44,101,46,114,101,115,111,108,118,101,41,40,87,41,59,114,46,104,97,110,100,108,101,83,108,105,100,101,80,114,111,112,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,101,46,112,114,111,112,115,59,92,34,110,117,109,98,101,114,92,34,61,61,116,121,112,101,111,102,32,116,46,115,111,117,114,99,101,73,110,100,101,120,63,97,46,114,117,110,67,117,114,114,101,110,116,83,116,97,103,101,73,110,100,101,120,85,112,100,97,116,101,65,99,116,105,111,110,115,70,111,114,40,116,46,115,111,117,114,99,101,73,110,100,101,120,41,58,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,116,46,115,111,117,114,99,101,63,97,46,114,117,110,67,117,114,114,101,110,116,83,116,97,103,101,73,110,100,101,120,85,112,100,97,116,101,65,99,116,105,111,110,115,70,111,114,40,116,46,115,111,117,114,99,101,115,46,105,110,100,101,120,79,102,40,116,46,115,111,117,114,99,101,41,41,58,92,34,110,117,109,98,101,114,92,34,61,61,116,121,112,101,111,102,32,116,46,115,108,105,100,101,38,38,97,46,114,117,110,67,117,114,114,101,110,116,83,116,97,103,101,73,110,100,101,120,85,112,100,97,116,101,65,99,116,105,111,110,115,70,111,114,40,116,46,115,108,105,100,101,45,49,41,125,44,114,46,104,97,110,100,108,101,84,111,103,103,108,101,114,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,116,46,103,101,116,40,41,63,111,46,99,108,111,115,101,76,105,103,104,116,98,111,120,40,41,58,115,46,105,115,73,110,105,116,105,97,108,105,122,101,100,63,105,46,111,112,101,110,76,105,103,104,116,98,111,120,40,41,58,105,46,105,110,105,116,105,97,108,105,122,101,65,110,100,79,112,101,110,76,105,103,104,116,98,111,120,40,41,125,125,102,117,110,99,116,105,111,110,32,70,40,101,44,116,41,123,118,97,114,32,110,61,101,46,99,108,97,115,115,76,105,115,116,59,110,46,99,111,110,116,97,105,110,115,40,116,41,38,38,110,46,114,101,109,111,118,101,40,116,41,125,102,117,110,99,116,105,111,110,32,77,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,111,61,110,46,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,77,97,110,97,103,101,114,44,105,61,110,46,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,44,114,61,101,46,99,111,114,101,44,115,61,114,46,101,118,101,110,116,115,68,105,115,112,97,116,99,104,101,114,44,97,61,114,46,102,117,108,108,115,99,114,101,101,110,84,111,103,103,108,101,114,44,99,61,114,46,103,108,111,98,97,108,69,118,101,110,116,115,67,111,110,116,114,111,108,108,101,114,44,108,61,114,46,115,99,114,111,108,108,98,97,114,82,101,99,111,109,112,101,110,115,111,114,44,104,61,114,46,115,108,105,100,101,115,104,111,119,77,97,110,97,103,101,114,44,100,61,114,46,122,111,111,109,101,114,44,102,61,101,46,101,108,101,109,101,110,116,115,44,109,61,101,46,112,114,111,112,115,44,98,61,101,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,103,61,101,46,116,105,109,101,111,117,116,44,120,61,101,46,116,104,117,109,98,115,83,119,105,112,105,110,103,80,114,111,112,115,59,116,104,105,115,46,105,115,76,105,103,104,116,98,111,120,70,97,100,105,110,103,79,117,116,61,33,49,44,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,116,46,105,115,76,105,103,104,116,98,111,120,70,97,100,105,110,103,79,117,116,61,33,48,44,102,46,99,111,110,116,97,105,110,101,114,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,112,41,44,99,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,115,40,41,44,100,46,105,102,90,111,111,109,105,110,103,82,101,115,101,116,90,111,111,109,40,41,44,104,46,114,101,115,101,116,83,108,105,100,101,115,104,111,119,40,41,44,109,46,101,120,105,116,70,117,108,108,115,99,114,101,101,110,79,110,67,108,111,115,101,38,38,111,46,103,101,116,40,41,38,38,97,46,101,120,105,116,70,117,108,108,115,99,114,101,101,110,40,41,44,103,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,105,115,76,105,103,104,116,98,111,120,70,97,100,105,110,103,79,117,116,61,33,49,44,98,46,105,115,80,111,105,110,116,101,114,105,110,103,61,33,49,44,120,38,38,40,120,46,105,115,80,111,105,110,116,101,114,105,110,103,61,33,49,41,44,102,46,99,111,110,116,97,105,110,101,114,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,112,41,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,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,117,41,44,108,46,114,101,109,111,118,101,82,101,99,111,109,112,101,110,115,101,40,41,44,105,46,115,101,116,40,33,49,41,44,115,46,100,105,115,112,97,116,99,104,40,92,34,111,110,67,108,111,115,101,92,34,41,125,41,44,50,50,48,41,125,125,102,117,110,99,116,105,111,110,32,78,40,101,41,123,118,97,114,32,116,61,101,46,101,108,101,109,101,110,116,115,46,99,97,112,116,105,111,110,115,59,116,104,105,115,46,114,117,110,83,108,105,100,101,67,104,97,110,103,101,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,40,101,44,92,34,114,101,109,111,118,101,92,34,41,44,110,40,116,44,92,34,97,100,100,92,34,41,125,59,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,101,44,110,41,123,116,91,101,93,38,38,116,91,101,93,46,99,108,97,115,115,76,105,115,116,91,110,93,40,102,41,125,125,102,117,110,99,116,105,111,110,32,79,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,44,110,61,116,46,99,108,105,99,107,90,111,111,109,101,114,44,111,61,116,46,108,105,103,104,116,98,111,120,67,108,111,115,101,114,44,105,61,116,46,102,117,108,108,115,99,114,101,101,110,84,111,103,103,108,101,114,44,114,61,116,46,115,108,105,100,101,67,104,97,110,103,101,70,97,99,97,100,101,44,115,61,116,46,115,108,105,100,101,115,104,111,119,77,97,110,97,103,101,114,44,97,61,116,46,116,104,117,109,98,115,84,111,103,103,108,101,114,44,117,61,101,46,112,114,111,112,115,59,116,104,105,115,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,92,34,83,112,97,99,101,92,34,33,61,61,101,46,99,111,100,101,41,115,119,105,116,99,104,40,101,46,107,101,121,41,123,99,97,115,101,92,34,69,115,99,97,112,101,92,34,58,111,46,99,108,111,115,101,76,105,103,104,116,98,111,120,40,41,59,98,114,101,97,107,59,99,97,115,101,92,34,65,114,114,111,119,76,101,102,116,92,34,58,114,46,99,104,97,110,103,101,84,111,80,114,101,118,105,111,117,115,40,41,59,98,114,101,97,107,59,99,97,115,101,92,34,65,114,114,111,119,82,105,103,104,116,92,34,58,114,46,99,104,97,110,103,101,84,111,78,101,120,116,40,41,59,98,114,101,97,107,59,99,97,115,101,92,34,116,92,34,58,117,46,100,105,115,97,98,108,101,84,104,117,109,98,115,124,124,97,46,116,111,103,103,108,101,84,104,117,109,98,115,40,41,59,98,114,101,97,107,59,99,97,115,101,92,34,43,92,34,58,110,46,122,111,111,109,73,110,40,41,59,98,114,101,97,107,59,99,97,115,101,92,34,45,92,34,58,110,46,122,111,111,109,79,117,116,40,41,59,98,114,101,97,107,59,99,97,115,101,92,34,70,49,49,92,34,58,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,105,46,101,110,116,101,114,70,117,108,108,115,99,114,101,101,110,40,41,125,101,108,115,101,32,115,46,116,111,103,103,108,101,83,108,105,100,101,115,104,111,119,40,41,125,125,102,117,110,99,116,105,111,110,32,80,40,101,41,123,114,101,116,117,114,110,32,101,46,116,111,117,99,104,101,115,63,101,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,89,58,101,46,99,108,105,101,110,116,89,125,102,117,110,99,116,105,111,110,32,107,40,101,41,123,118,97,114,32,116,61,101,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,44,110,61,101,46,99,111,114,101,46,122,111,111,109,101,114,44,111,61,101,46,100,97,116,97,44,105,61,101,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,59,116,104,105,115,46,114,117,110,90,111,111,109,105,110,103,80,105,110,99,104,65,99,116,105,111,110,115,70,111,114,72,121,112,111,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,45,105,46,112,105,110,99,104,101,100,72,121,112,111,116,44,114,61,111,46,122,111,111,109,43,116,47,77,97,116,104,46,104,121,112,111,116,40,105,110,110,101,114,87,105,100,116,104,44,105,110,110,101,114,72,101,105,103,104,116,41,42,49,48,59,114,60,46,57,38,38,40,114,61,46,57,41,44,110,46,122,111,111,109,84,111,40,114,41,44,105,46,112,105,110,99,104,101,100,72,121,112,111,116,61,101,125,44,116,104,105,115,46,116,114,97,110,115,108,97,116,101,83,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,65,116,73,110,100,101,120,85,115,105,110,103,77,101,116,104,111,100,61,102,117,110,99,116,105,111,110,40,101,44,110,41,123,116,91,101,93,46,116,114,97,110,115,108,97,116,101,40,105,46,115,119,105,112,101,100,88,41,91,110,93,40,41,125,125,102,117,110,99,116,105,111,110,32,68,40,101,41,123,114,101,116,117,114,110,32,77,97,116,104,46,104,121,112,111,116,40,101,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,45,101,46,116,111,117,99,104,101,115,91,49,93,46,112,97,103,101,88,44,101,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,89,45,101,46,116,111,117,99,104,101,115,91,49,93,46,112,97,103,101,89,41,125,102,117,110,99,116,105,111,110,32,72,40,101,41,123,114,101,116,117,114,110,32,101,46,116,111,117,99,104,101,115,63,101,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,58,101,46,99,108,105,101,110,116,88,125,102,117,110,99,116,105,111,110,32,36,40,101,41,123,118,97,114,32,116,61,101,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,44,110,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,111,61,101,46,99,111,114,101,46,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,44,105,61,101,46,100,97,116,97,44,114,61,101,46,114,101,115,111,108,118,101,44,115,61,101,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,97,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,44,117,61,114,40,107,41,59,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,101,41,123,111,46,114,117,110,83,119,105,112,105,110,103,77,111,118,101,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,40,115,44,101,41,44,110,46,115,104,111,119,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,73,102,78,111,116,89,101,116,40,41,125,44,116,104,105,115,46,114,117,110,80,105,110,99,104,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,68,40,101,41,59,115,46,112,105,110,99,104,101,100,72,121,112,111,116,63,117,46,114,117,110,90,111,111,109,105,110,103,80,105,110,99,104,65,99,116,105,111,110,115,70,111,114,72,121,112,111,116,40,116,41,58,115,46,112,105,110,99,104,101,100,72,121,112,111,116,61,116,125,44,116,104,105,115,46,114,117,110,78,111,114,109,97,108,83,119,105,112,101,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,117,46,116,114,97,110,115,108,97,116,101,83,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,65,116,73,110,100,101,120,85,115,105,110,103,77,101,116,104,111,100,40,97,46,99,117,114,114,101,110,116,44,92,34,122,101,114,111,92,34,41,44,118,111,105,100,32,48,33,61,61,97,46,112,114,101,118,105,111,117,115,38,38,115,46,115,119,105,112,101,100,88,62,48,63,117,46,116,114,97,110,115,108,97,116,101,83,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,65,116,73,110,100,101,120,85,115,105,110,103,77,101,116,104,111,100,40,97,46,112,114,101,118,105,111,117,115,44,92,34,110,101,103,97,116,105,118,101,92,34,41,58,118,111,105,100,32,48,33,61,61,97,46,110,101,120,116,38,38,115,46,115,119,105,112,101,100,88,60,48,38,38,117,46,116,114,97,110,115,108,97,116,101,83,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,65,116,73,110,100,101,120,85,115,105,110,103,77,101,116,104,111,100,40,97,46,110,101,120,116,44,92,34,112,111,115,105,116,105,118,101,92,34,41,125,44,116,104,105,115,46,114,117,110,90,111,111,109,83,119,105,112,101,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,101,41,123,115,46,115,119,105,112,101,100,88,61,40,72,40,101,41,45,115,46,100,111,119,110,67,108,105,101,110,116,88,41,47,105,46,122,111,111,109,44,115,46,115,119,105,112,101,100,89,61,40,80,40,101,41,45,115,46,100,111,119,110,67,108,105,101,110,116,89,41,47,105,46,122,111,111,109,44,116,91,97,46,99,117,114,114,101,110,116,93,46,116,114,97,110,115,108,97,116,101,40,115,46,117,112,83,119,105,112,101,100,88,43,115,46,115,119,105,112,101,100,88,44,115,46,117,112,83,119,105,112,101,100,89,43,115,46,115,119,105,112,101,100,89,41,46,122,101,114,111,40,41,125,125,102,117,110,99,116,105,111,110,32,82,40,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,114,101,116,117,114,110,33,101,38,38,40,101,61,33,48,44,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,40,102,117,110,99,116,105,111,110,40,41,123,101,61,33,49,125,41,41,44,33,48,41,125,125,102,117,110,99,116,105,111,110,32,85,40,101,41,123,118,97,114,32,116,61,82,40,41,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,46,105,115,80,111,105,110,116,101,114,105,110,103,38,38,116,40,41,125,125,102,117,110,99,116,105,111,110,32,89,40,101,41,123,114,101,116,117,114,110,32,101,46,116,111,117,99,104,101,115,63,101,46,116,111,117,99,104,101,115,46,108,101,110,103,116,104,58,48,125,102,117,110,99,116,105,111,110,32,88,40,101,41,123,118,97,114,32,116,61,101,46,100,97,116,97,44,110,61,101,46,112,114,111,112,115,44,111,61,101,46,114,101,115,111,108,118,101,44,105,61,101,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,114,61,85,40,105,41,44,115,61,111,40,36,41,59,116,104,105,115,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,114,40,41,38,38,40,115,46,114,117,110,65,99,116,105,111,110,115,40,101,41,44,89,40,101,41,38,38,105,46,105,115,80,105,110,99,104,105,110,103,63,115,46,114,117,110,80,105,110,99,104,65,99,116,105,111,110,115,40,101,41,58,49,61,61,61,116,46,122,111,111,109,63,49,61,61,61,110,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,63,105,46,115,119,105,112,101,100,88,61,49,58,115,46,114,117,110,78,111,114,109,97,108,83,119,105,112,101,65,99,116,105,111,110,115,40,101,41,58,115,46,114,117,110,90,111,111,109,83,119,105,112,101,65,99,116,105,111,110,115,40,101,41,41,125,125,102,117,110,99,116,105,111,110,32,106,40,101,41,123,118,97,114,32,116,61,101,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,44,110,61,101,46,99,111,114,101,44,111,61,110,46,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,44,105,61,110,46,99,108,105,99,107,90,111,111,109,101,114,44,114,61,101,46,100,97,116,97,44,115,61,101,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,44,97,61,101,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,117,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,59,116,104,105,115,46,114,117,110,80,111,115,105,116,105,118,101,83,119,105,112,101,100,88,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,118,111,105,100,32,48,61,61,61,117,46,112,114,101,118,105,111,117,115,124,124,40,108,40,92,34,112,111,115,105,116,105,118,101,92,34,41,44,111,46,99,104,97,110,103,101,84,111,40,117,46,112,114,101,118,105,111,117,115,41,41,44,108,40,92,34,122,101,114,111,92,34,41,125,44,116,104,105,115,46,114,117,110,78,101,103,97,116,105,118,101,83,119,105,112,101,100,88,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,118,111,105,100,32,48,61,61,61,117,46,110,101,120,116,124,124,40,108,40,92,34,110,101,103,97,116,105,118,101,92,34,41,44,111,46,99,104,97,110,103,101,84,111,40,117,46,110,101,120,116,41,41,44,108,40,92,34,122,101,114,111,92,34,41,125,44,116,104,105,115,46,115,97,118,101,67,117,114,114,101,110,116,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,80,111,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,97,46,117,112,83,119,105,112,101,100,88,61,116,91,117,46,99,117,114,114,101,110,116,93,46,103,101,116,84,114,97,110,115,108,97,116,101,88,40,41,44,97,46,117,112,83,119,105,112,101,100,89,61,116,91,117,46,99,117,114,114,101,110,116,93,46,103,101,116,84,114,97,110,115,108,97,116,101,89,40,41,125,44,116,104,105,115,46,114,117,110,83,111,117,114,99,101,68,111,119,110,69,118,101,110,116,84,97,114,103,101,116,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,114,46,122,111,111,109,60,61,49,63,105,46,122,111,111,109,73,110,40,41,58,105,46,122,111,111,109,79,117,116,40,41,125,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,101,41,123,115,91,117,46,99,117,114,114,101,110,116,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,99,41,44,116,91,117,46,99,117,114,114,101,110,116,93,91,101,93,40,41,125,125,102,117,110,99,116,105,111,110,32,90,40,101,41,123,118,97,114,32,116,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,110,61,101,46,99,111,114,101,44,111,61,110,46,108,105,103,104,116,98,111,120,67,108,111,115,101,114,44,105,61,110,46,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,44,114,61,101,46,100,97,116,97,44,115,61,101,46,101,108,101,109,101,110,116,115,44,97,61,101,46,114,101,115,111,108,118,101,44,117,61,101,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,99,61,97,40,106,41,59,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,116,46,104,105,100,101,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,40,41,44,117,46,105,115,80,105,110,99,104,105,110,103,61,33,49,44,117,46,112,105,110,99,104,101,100,72,121,112,111,116,61,48,44,105,46,114,117,110,83,119,105,112,105,110,103,84,111,112,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,40,117,41,44,70,40,115,46,115,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,44,118,41,125,44,116,104,105,115,46,114,117,110,83,119,105,112,101,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,49,61,61,61,114,46,122,111,111,109,63,117,46,115,119,105,112,101,100,88,62,48,63,99,46,114,117,110,80,111,115,105,116,105,118,101,83,119,105,112,101,100,88,65,99,116,105,111,110,115,40,41,58,99,46,114,117,110,78,101,103,97,116,105,118,101,83,119,105,112,101,100,88,65,99,116,105,111,110,115,40,41,58,99,46,115,97,118,101,67,117,114,114,101,110,116,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,80,111,115,105,116,105,111,110,40,41,125,44,116,104,105,115,46,114,117,110,78,111,83,119,105,112,101,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,117,46,105,115,83,111,117,114,99,101,68,111,119,110,69,118,101,110,116,84,97,114,103,101,116,63,99,46,114,117,110,83,111,117,114,99,101,68,111,119,110,69,118,101,110,116,84,97,114,103,101,116,65,99,116,105,111,110,115,40,41,58,111,46,99,108,111,115,101,76,105,103,104,116,98,111,120,40,41,125,125,102,117,110,99,116,105,111,110,32,86,40,101,41,123,118,97,114,32,116,61,101,46,100,97,116,97,44,110,61,101,46,114,101,115,111,108,118,101,44,111,61,101,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,105,61,101,46,99,111,114,101,46,122,111,111,109,101,114,44,114,61,110,40,90,41,59,116,104,105,115,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,111,46,105,115,80,111,105,110,116,101,114,105,110,103,38,38,40,111,46,105,115,80,105,110,99,104,105,110,103,124,124,40,111,46,115,119,105,112,101,100,88,63,114,46,114,117,110,83,119,105,112,101,65,99,116,105,111,110,115,40,41,58,114,46,114,117,110,78,111,83,119,105,112,101,65,99,116,105,111,110,115,40,41,41,44,114,46,114,117,110,65,99,116,105,111,110,115,40,101,41,44,116,46,122,111,111,109,60,49,38,38,40,105,46,122,111,111,109,84,111,40,49,41,44,105,46,115,116,111,112,90,111,111,109,105,110,103,40,41,41,41,125,125,102,117,110,99,116,105,111,110,32,113,40,101,41,123,118,97,114,32,116,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,110,61,101,46,99,111,114,101,46,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,44,111,61,101,46,100,97,116,97,44,105,61,101,46,101,108,101,109,101,110,116,115,44,114,61,101,46,116,104,117,109,98,115,83,119,105,112,105,110,103,80,114,111,112,115,59,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,101,41,123,110,46,114,117,110,83,119,105,112,105,110,103,77,111,118,101,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,40,114,44,101,41,44,105,46,116,104,117,109,98,115,73,110,110,101,114,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,92,34,116,114,97,110,115,108,97,116,101,88,40,92,34,46,99,111,110,99,97,116,40,111,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,43,114,46,115,119,105,112,101,100,88,44,92,34,112,120,41,92,34,41,44,116,46,115,104,111,119,84,104,117,109,98,115,67,117,114,115,111,114,101,114,73,102,78,111,116,89,101,116,40,41,125,125,102,117,110,99,116,105,111,110,32,81,40,101,41,123,118,97,114,32,116,61,101,46,100,97,116,97,44,110,61,101,46,114,101,115,111,108,118,101,44,111,61,85,40,101,46,116,104,117,109,98,115,83,119,105,112,105,110,103,80,114,111,112,115,41,44,105,61,110,40,113,41,59,116,104,105,115,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,116,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,62,105,110,110,101,114,87,105,100,116,104,38,38,111,40,41,38,38,105,46,114,117,110,65,99,116,105,111,110,115,40,101,41,125,125,102,117,110,99,116,105,111,110,32,74,40,101,41,123,118,97,114,32,116,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,110,61,101,46,100,97,116,97,44,111,61,101,46,99,111,114,101,44,105,61,111,46,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,44,114,61,111,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,84,114,97,110,115,105,116,105,111,110,101,114,44,115,61,111,46,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,44,97,61,101,46,101,108,101,109,101,110,116,115,44,117,61,101,46,116,104,117,109,98,115,83,119,105,112,105,110,103,80,114,111,112,115,44,99,61,97,46,116,104,117,109,98,115,87,114,97,112,112,101,114,115,59,116,104,105,115,46,114,117,110,78,111,83,119,105,112,101,65,99,116,105,111,110,115,70,111,114,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,117,46,105,115,80,111,105,110,116,101,114,105,110,103,61,33,49,59,102,111,114,40,118,97,114,32,116,61,48,59,116,60,97,46,116,104,117,109,98,115,87,114,97,112,112,101,114,115,46,108,101,110,103,116,104,59,116,43,43,41,105,102,40,99,91,116,93,38,38,99,91,116,93,46,99,111,110,116,97,105,110,115,40,101,46,116,97,114,103,101,116,41,41,114,101,116,117,114,110,32,118,111,105,100,32,105,46,106,117,109,112,84,111,40,116,41,125,44,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,46,104,105,100,101,84,104,117,109,98,115,67,117,114,115,111,114,101,114,40,41,44,110,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,43,61,117,46,115,119,105,112,101,100,88,44,115,46,114,117,110,83,119,105,112,105,110,103,84,111,112,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,40,117,41,44,110,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,62,48,41,114,101,116,117,114,110,32,108,40,48,41,59,110,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,60,105,110,110,101,114,87,105,100,116,104,45,110,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,45,57,38,38,108,40,105,110,110,101,114,87,105,100,116,104,45,110,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,45,57,41,125,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,101,41,123,110,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,61,101,44,114,46,99,97,108,108,65,99,116,105,111,110,87,105,116,104,84,114,97,110,115,105,116,105,111,110,40,40,102,117,110,99,116,105,111,110,40,41,123,97,46,116,104,117,109,98,115,73,110,110,101,114,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,92,34,116,114,97,110,115,108,97,116,101,88,40,92,34,46,99,111,110,99,97,116,40,101,44,92,34,112,120,41,92,34,41,125,41,41,125,125,102,117,110,99,116,105,111,110,32,71,40,101,41,123,118,97,114,32,116,61,101,46,114,101,115,111,108,118,101,44,110,61,101,46,116,104,117,109,98,115,83,119,105,112,105,110,103,80,114,111,112,115,44,111,61,116,40,74,41,59,116,104,105,115,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,110,46,105,115,80,111,105,110,116,101,114,105,110,103,38,38,40,110,46,115,119,105,112,101,100,88,63,111,46,114,117,110,65,99,116,105,111,110,115,40,41,58,111,46,114,117,110,78,111,83,119,105,112,101,65,99,116,105,111,110,115,70,111,114,69,118,101,110,116,40,101,41,41,125,125,102,117,110,99,116,105,111,110,32,75,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,46,105,110,97,99,116,105,118,101,114,44,110,61,101,46,112,114,111,112,115,44,111,61,101,46,114,101,115,111,108,118,101,44,105,61,111,40,88,41,44,114,61,111,40,86,41,44,115,61,111,40,81,41,44,97,61,111,40,71,41,59,116,104,105,115,46,109,111,118,101,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,116,46,108,105,115,116,101,110,101,114,40,101,41,44,105,46,108,105,115,116,101,110,101,114,40,101,41,44,110,46,100,105,115,97,98,108,101,84,104,117,109,98,115,124,124,115,46,108,105,115,116,101,110,101,114,40,101,41,125,44,116,104,105,115,46,117,112,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,114,46,108,105,115,116,101,110,101,114,40,101,41,44,110,46,100,105,115,97,98,108,101,84,104,117,109,98,115,124,124,97,46,108,105,115,116,101,110,101,114,40,101,41,125,125,102,117,110,99,116,105,111,110,32,101,101,40,41,123,114,101,116,117,114,110,92,34,111,110,116,111,117,99,104,115,116,97,114,116,92,34,105,110,32,119,105,110,100,111,119,124,124,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,62,48,124,124,110,97,118,105,103,97,116,111,114,46,109,115,77,97,120,84,111,117,99,104,80,111,105,110,116,115,62,48,125,102,117,110,99,116,105,111,110,32,116,101,40,101,41,123,114,101,116,117,114,110,33,101,46,116,111,117,99,104,101,115,124,124,101,46,116,111,117,99,104,101,115,46,108,101,110,103,116,104,60,61,50,125,102,117,110,99,116,105,111,110,32,110,101,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,46,122,111,111,109,101,114,44,110,61,101,46,100,97,116,97,59,116,104,105,115,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,49,61,61,61,110,46,122,111,111,109,41,123,105,102,40,101,46,100,101,108,116,97,89,62,48,41,114,101,116,117,114,110,59,116,46,115,116,97,114,116,90,111,111,109,105,110,103,40,41,125,118,97,114,32,111,61,46,49,42,110,46,122,111,111,109,44,105,61,110,46,122,111,111,109,59,101,46,100,101,108,116,97,89,60,48,63,105,43,61,111,58,40,105,45,61,111,41,60,49,38,38,40,105,61,49,41,44,116,46,122,111,111,109,84,111,40,105,41,44,49,61,61,61,105,38,38,116,46,115,116,111,112,90,111,111,109,105,110,103,40,41,125,125,102,117,110,99,116,105,111,110,32,111,101,40,101,41,123,114,101,116,117,114,110,33,101,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,46,105,115,80,111,105,110,116,101,114,105,110,103,125,102,117,110,99,116,105,111,110,32,105,101,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,44,110,61,116,46,115,108,105,100,101,115,104,111,119,77,97,110,97,103,101,114,44,111,61,116,46,115,108,105,100,101,67,104,97,110,103,101,70,97,99,97,100,101,44,105,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,114,61,101,46,101,108,101,109,101,110,116,115,44,115,61,101,46,112,114,111,112,115,44,97,61,48,44,117,61,33,49,59,102,117,110,99,116,105,111,110,32,99,40,41,123,114,46,115,108,105,100,101,115,104,111,119,66,97,114,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,103,41,44,105,46,115,116,111,112,83,108,105,100,101,115,104,111,119,40,41,44,117,61,33,49,125,102,117,110,99,116,105,111,110,32,108,40,41,123,118,97,114,32,101,61,40,97,43,61,49,54,46,54,55,41,47,115,46,115,108,105,100,101,115,104,111,119,84,105,109,101,59,114,46,115,108,105,100,101,115,104,111,119,66,97,114,46,115,116,121,108,101,46,119,105,100,116,104,61,101,42,105,110,110,101,114,87,105,100,116,104,43,92,34,112,120,92,34,44,101,62,61,49,38,38,40,97,61,48,44,111,46,99,104,97,110,103,101,84,111,78,101,120,116,40,41,41,44,117,38,38,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,108,41,125,110,46,116,111,103,103,108,101,83,108,105,100,101,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,117,63,99,40,41,58,40,117,61,33,48,44,114,46,115,108,105,100,101,115,104,111,119,66,97,114,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,103,41,44,105,46,115,116,97,114,116,83,108,105,100,101,115,104,111,119,40,41,44,108,40,41,41,125,44,110,46,114,101,115,101,116,83,108,105,100,101,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,97,61,48,44,117,38,38,99,40,41,125,125,102,117,110,99,116,105,111,110,32,114,101,40,101,41,123,118,97,114,32,116,61,101,46,100,97,116,97,44,110,61,101,46,101,108,101,109,101,110,116,115,44,111,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,59,116,104,105,115,46,114,117,110,79,112,97,99,105,116,121,48,65,99,116,105,111,110,85,115,105,110,103,77,101,116,104,111,100,61,102,117,110,99,116,105,111,110,40,101,41,123,110,46,115,108,105,100,101,66,117,116,116,111,110,80,114,101,118,105,111,117,115,38,38,40,110,46,115,108,105,100,101,66,117,116,116,111,110,80,114,101,118,105,111,117,115,46,99,108,97,115,115,76,105,115,116,91,101,93,40,98,41,44,110,46,115,108,105,100,101,66,117,116,116,111,110,78,101,120,116,46,99,108,97,115,115,76,105,115,116,91,101,93,40,98,41,41,125,44,116,104,105,115,46,114,117,110,65,99,116,105,118,101,69,110,104,97,110,99,101,109,101,110,116,65,99,116,105,111,110,85,115,105,110,103,77,101,116,104,111,100,61,102,117,110,99,116,105,111,110,40,101,41,123,116,46,105,115,84,104,117,109,98,105,110,103,63,110,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,46,99,108,97,115,115,76,105,115,116,91,101,93,40,119,41,58,110,46,99,97,112,116,105,111,110,115,91,111,46,99,117,114,114,101,110,116,93,38,38,110,46,99,97,112,116,105,111,110,115,91,111,46,99,117,114,114,101,110,116,93,46,99,108,97,115,115,76,105,115,116,91,101,93,40,102,41,125,125,102,117,110,99,116,105,111,110,32,115,101,40,101,44,116,41,123,118,97,114,32,110,61,101,46,99,108,97,115,115,76,105,115,116,59,110,46,99,111,110,116,97,105,110,115,40,116,41,124,124,110,46,97,100,100,40,116,41,125,102,117,110,99,116,105,111,110,32,97,101,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,46,122,111,111,109,101,114,44,110,61,101,46,100,97,116,97,44,111,61,101,46,101,108,101,109,101,110,116,115,44,105,61,101,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,59,116,104,105,115,46,114,117,110,80,105,110,99,104,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,101,41,123,105,46,105,115,80,105,110,99,104,105,110,103,61,33,48,44,105,46,112,105,110,99,104,101,100,72,121,112,111,116,61,68,40,101,41,44,115,101,40,111,46,115,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,44,118,41,44,49,61,61,61,110,46,122,111,111,109,38,38,116,46,115,116,97,114,116,90,111,111,109,105,110,103,40,41,125,125,102,117,110,99,116,105,111,110,32,117,101,40,101,41,123,118,97,114,32,116,44,110,44,111,44,105,61,101,46,100,97,116,97,44,114,61,101,46,101,108,101,109,101,110,116,115,44,115,61,105,46,99,97,112,116,105,111,110,72,101,105,103,104,116,115,44,97,61,105,46,110,111,116,84,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,83,99,97,108,101,115,44,117,61,105,46,110,111,116,84,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,108,97,116,101,115,89,44,99,61,114,46,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,44,108,61,114,46,115,111,117,114,99,101,115,59,116,104,105,115,46,115,101,116,85,112,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,61,102,117,110,99,116,105,111,110,40,41,123,116,61,114,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,46,111,102,102,115,101,116,72,101,105,103,104,116,44,110,61,105,46,116,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,108,97,116,101,89,44,111,61,92,34,116,114,97,110,115,108,97,116,101,89,40,92,34,46,99,111,110,99,97,116,40,110,44,92,34,112,120,41,32,115,99,97,108,101,40,92,34,41,46,99,111,110,99,97,116,40,105,46,116,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,83,99,97,108,101,44,92,34,41,92,34,41,125,44,116,104,105,115,46,115,101,116,85,112,78,111,116,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,65,116,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,101,41,123,116,61,115,91,101,93,44,110,61,117,91,101,93,44,111,61,92,34,116,114,97,110,115,108,97,116,101,89,40,92,34,46,99,111,110,99,97,116,40,110,44,92,34,112,120,41,32,115,99,97,108,101,40,92,34,41,46,99,111,110,99,97,116,40,97,91,101,93,44,92,34,41,92,34,41,125,44,116,104,105,115,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,101,41,123,108,91,101,93,38,38,40,105,110,110,101,114,87,105,100,116,104,60,105,110,110,101,114,72,101,105,103,104,116,38,38,108,91,101,93,46,111,102,102,115,101,116,87,105,100,116,104,62,108,91,101,93,46,111,102,102,115,101,116,72,101,105,103,104,116,43,116,63,99,91,101,93,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,92,34,116,114,97,110,115,108,97,116,101,89,40,92,34,46,99,111,110,99,97,116,40,110,47,50,44,92,34,112,120,41,32,115,99,97,108,101,40,49,41,92,34,41,58,99,91,101,93,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,111,41,125,125,102,117,110,99,116,105,111,110,32,99,101,40,101,41,123,118,97,114,32,116,44,110,44,111,59,110,61,40,116,61,101,41,46,99,111,114,101,46,99,108,97,115,115,70,97,99,97,100,101,44,111,61,116,46,101,108,101,109,101,110,116,115,44,110,46,114,101,109,111,118,101,70,114,111,109,69,97,99,104,69,108,101,109,101,110,116,67,108,97,115,115,73,102,67,111,110,116,97,105,110,115,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,59,110,60,111,91,101,93,46,108,101,110,103,116,104,59,110,43,43,41,70,40,111,91,101,93,91,110,93,44,116,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,44,110,61,116,46,99,108,105,99,107,90,111,111,109,101,114,44,111,61,116,46,122,111,111,109,101,114,44,105,61,101,46,100,97,116,97,44,114,61,101,46,101,108,101,109,101,110,116,115,44,115,61,101,46,103,101,116,81,117,101,117,101,100,65,99,116,105,111,110,44,97,61,101,46,112,114,111,112,115,46,122,111,111,109,73,110,99,114,101,109,101,110,116,44,117,61,115,40,40,102,117,110,99,116,105,111,110,40,41,123,70,40,114,46,115,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,44,99,41,125,41,44,51,48,48,41,59,110,46,122,111,111,109,73,110,61,102,117,110,99,116,105,111,110,40,41,123,108,40,41,44,104,40,105,46,122,111,111,109,43,97,41,125,44,110,46,122,111,111,109,79,117,116,61,102,117,110,99,116,105,111,110,40,41,123,105,46,122,111,111,109,45,97,60,61,49,63,49,33,61,61,105,46,122,111,111,109,38,38,40,104,40,49,41,44,111,46,115,116,111,112,90,111,111,109,105,110,103,40,41,41,58,40,108,40,41,44,104,40,105,46,122,111,111,109,45,97,41,44,49,61,61,61,105,46,122,111,111,109,38,38,111,46,115,116,111,112,90,111,111,109,105,110,103,40,41,41,125,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,41,123,49,61,61,61,105,46,122,111,111,109,38,38,111,46,115,116,97,114,116,90,111,111,109,105,110,103,40,41,125,44,104,61,102,117,110,99,116,105,111,110,40,101,41,123,115,101,40,114,46,115,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,44,99,41,44,111,46,122,111,111,109,84,111,40,101,41,44,117,40,41,125,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,46,101,118,101,110,116,115,68,105,115,112,97,116,99,104,101,114,44,110,61,101,46,112,114,111,112,115,59,116,46,100,105,115,112,97,116,99,104,61,102,117,110,99,116,105,111,110,40,116,41,123,110,91,116,93,38,38,110,91,116,93,40,101,41,125,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,77,97,110,97,103,101,114,44,110,61,101,46,99,111,114,101,46,102,117,108,108,115,99,114,101,101,110,84,111,103,103,108,101,114,59,110,46,101,110,116,101,114,70,117,108,108,115,99,114,101,101,110,61,102,117,110,99,116,105,111,110,40,41,123,116,46,115,101,116,40,33,48,41,59,118,97,114,32,101,61,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,101,46,114,101,113,117,101,115,116,70,117,108,108,115,99,114,101,101,110,63,101,46,114,101,113,117,101,115,116,70,117,108,108,115,99,114,101,101,110,40,41,58,101,46,109,111,122,82,101,113,117,101,115,116,70,117,108,108,83,99,114,101,101,110,63,101,46,109,111,122,82,101,113,117,101,115,116,70,117,108,108,83,99,114,101,101,110,40,41,58,101,46,119,101,98,107,105,116,82,101,113,117,101,115,116,70,117,108,108,115,99,114,101,101,110,63,101,46,119,101,98,107,105,116,82,101,113,117,101,115,116,70,117,108,108,115,99,114,101,101,110,40,41,58,101,46,109,115,82,101,113,117,101,115,116,70,117,108,108,115,99,114,101,101,110,38,38,101,46,109,115,82,101,113,117,101,115,116,70,117,108,108,115,99,114,101,101,110,40,41,125,44,110,46,101,120,105,116,70,117,108,108,115,99,114,101,101,110,61,102,117,110,99,116,105,111,110,40,41,123,116,46,115,101,116,40,33,49,41,44,100,111,99,117,109,101,110,116,46,101,120,105,116,70,117,108,108,115,99,114,101,101,110,63,100,111,99,117,109,101,110,116,46,101,120,105,116,70,117,108,108,115,99,114,101,101,110,40,41,58,100,111,99,117,109,101,110,116,46,109,111,122,67,97,110,99,101,108,70,117,108,108,83,99,114,101,101,110,63,100,111,99,117,109,101,110,116,46,109,111,122,67,97,110,99,101,108,70,117,108,108,83,99,114,101,101,110,40,41,58,100,111,99,117,109,101,110,116,46,119,101,98,107,105,116,69,120,105,116,70,117,108,108,115,99,114,101,101,110,63,100,111,99,117,109,101,110,116,46,119,101,98,107,105,116,69,120,105,116,70,117,108,108,115,99,114,101,101,110,40,41,58,100,111,99,117,109,101,110,116,46,109,115,69,120,105,116,70,117,108,108,115,99,114,101,101,110,38,38,100,111,99,117,109,101,110,116,46,109,115,69,120,105,116,70,117,108,108,115,99,114,101,101,110,40,41,125,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,111,44,105,61,101,46,99,111,114,101,44,114,61,105,46,105,110,97,99,116,105,118,101,114,44,115,61,105,46,103,108,111,98,97,108,69,118,101,110,116,115,67,111,110,116,114,111,108,108,101,114,44,97,61,105,46,119,105,110,100,111,119,82,101,115,105,122,101,65,99,116,105,111,110,101,114,44,117,61,101,46,109,105,100,100,108,101,119,97,114,101,44,99,61,101,46,114,101,115,111,108,118,101,44,108,61,99,40,75,41,44,104,61,99,40,79,41,44,100,61,99,40,110,101,41,59,115,46,97,100,100,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,101,101,40,41,63,40,116,61,69,40,108,46,109,111,118,101,76,105,115,116,101,110,101,114,44,116,101,41,44,110,61,69,40,108,46,117,112,76,105,115,116,101,110,101,114,44,116,101,41,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,92,34,116,111,117,99,104,115,116,97,114,116,92,34,44,114,46,108,105,115,116,101,110,101,114,44,123,112,97,115,115,105,118,101,58,33,48,125,41,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,92,34,116,111,117,99,104,109,111,118,101,92,34,44,116,44,123,112,97,115,115,105,118,101,58,33,48,125,41,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,92,34,116,111,117,99,104,101,110,100,92,34,44,110,41,41,58,40,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,92,34,109,111,117,115,101,100,111,119,110,92,34,44,114,46,108,105,115,116,101,110,101,114,41,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,92,34,109,111,117,115,101,109,111,118,101,92,34,44,108,46,109,111,118,101,76,105,115,116,101,110,101,114,41,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,92,34,109,111,117,115,101,117,112,92,34,44,108,46,117,112,76,105,115,116,101,110,101,114,41,41,44,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,114,101,115,105,122,101,92,34,44,97,46,114,117,110,65,99,116,105,111,110,115,41,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,92,34,107,101,121,100,111,119,110,92,34,44,104,46,108,105,115,116,101,110,101,114,41,59,118,97,114,32,101,61,82,40,41,59,111,61,117,40,111,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,40,41,38,38,100,46,108,105,115,116,101,110,101,114,40,116,41,125,44,111,101,41,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,92,34,119,104,101,101,108,92,34,44,111,41,125,44,115,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,101,101,40,41,63,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,92,34,116,111,117,99,104,115,116,97,114,116,92,34,44,114,46,108,105,115,116,101,110,101,114,41,44,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,92,34,116,111,117,99,104,109,111,118,101,92,34,44,116,41,44,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,92,34,116,111,117,99,104,101,110,100,92,34,44,110,41,41,58,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,92,34,109,111,117,115,101,100,111,119,110,92,34,44,114,46,108,105,115,116,101,110,101,114,41,44,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,92,34,109,111,117,115,101,109,111,118,101,92,34,44,108,46,109,111,118,101,76,105,115,116,101,110,101,114,41,44,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,92,34,109,111,117,115,101,117,112,92,34,44,108,46,117,112,76,105,115,116,101,110,101,114,41,41,44,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,114,101,115,105,122,101,92,34,44,97,46,114,117,110,65,99,116,105,111,110,115,41,44,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,92,34,107,101,121,100,111,119,110,92,34,44,104,46,108,105,115,116,101,110,101,114,41,44,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,92,34,119,104,101,101,108,92,34,44,111,41,125,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,46,105,110,97,99,116,105,118,101,114,44,110,61,101,46,100,97,116,97,44,111,61,101,46,101,108,101,109,101,110,116,115,44,105,61,101,46,103,101,116,81,117,101,117,101,100,65,99,116,105,111,110,44,114,61,101,46,112,114,111,112,115,46,85,73,70,97,100,101,79,117,116,84,105,109,101,44,115,61,33,49,44,97,61,105,40,40,102,117,110,99,116,105,111,110,40,41,123,115,61,33,48,44,117,40,99,41,125,41,44,114,41,59,116,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,41,123,97,40,41,44,115,38,38,40,117,40,108,41,44,115,61,33,49,41,125,59,118,97,114,32,117,61,102,117,110,99,116,105,111,110,40,101,41,123,101,40,111,46,110,97,118,41,44,49,61,61,61,110,46,122,111,111,109,38,38,111,46,115,108,105,100,101,66,117,116,116,111,110,80,114,101,118,105,111,117,115,38,38,40,101,40,111,46,115,108,105,100,101,66,117,116,116,111,110,80,114,101,118,105,111,117,115,41,44,101,40,111,46,115,108,105,100,101,66,117,116,116,111,110,78,101,120,116,41,41,44,110,46,105,115,84,104,117,109,98,105,110,103,38,38,101,40,111,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,41,125,44,99,61,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,98,41,125,44,108,61,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,98,41,125,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,46,108,105,103,104,116,98,111,120,67,108,111,115,101,114,44,110,61,40,48,44,101,46,114,101,115,111,108,118,101,41,40,77,41,59,116,46,99,108,111,115,101,76,105,103,104,116,98,111,120,61,102,117,110,99,116,105,111,110,40,41,123,110,46,105,115,76,105,103,104,116,98,111,120,70,97,100,105,110,103,79,117,116,124,124,110,46,114,117,110,65,99,116,105,111,110,115,40,41,125,125,40,101,41,44,73,101,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,44,110,61,101,46,99,111,114,101,44,111,61,110,46,101,118,101,110,116,115,68,105,115,112,97,116,99,104,101,114,44,105,61,110,46,108,105,103,104,116,98,111,120,79,112,101,110,65,99,116,105,111,110,101,114,44,114,61,110,46,103,108,111,98,97,108,69,118,101,110,116,115,67,111,110,116,114,111,108,108,101,114,44,115,61,110,46,115,99,114,111,108,108,98,97,114,82,101,99,111,109,112,101,110,115,111,114,44,97,61,110,46,115,111,117,114,99,101,68,105,115,112,108,97,121,70,97,99,97,100,101,44,99,61,110,46,115,116,97,103,101,77,97,110,97,103,101,114,44,108,61,110,46,119,105,110,100,111,119,82,101,115,105,122,101,65,99,116,105,111,110,101,114,44,104,61,101,46,100,97,116,97,44,100,61,101,46,112,114,111,112,115,46,115,111,117,114,99,101,115,44,112,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,59,105,46,114,117,110,66,101,102,111,114,101,82,101,110,100,101,114,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,104,46,117,110,108,111,97,100,101,100,84,104,117,109,98,115,67,111,117,110,116,61,100,46,108,101,110,103,116,104,125,44,105,46,114,117,110,65,102,116,101,114,82,101,110,100,101,114,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,104,46,105,115,70,117,108,108,121,82,101,110,100,101,114,101,100,61,33,48,44,99,46,117,112,100,97,116,101,83,116,97,103,101,73,110,100,101,120,101,115,40,41,44,97,46,100,105,115,112,108,97,121,83,111,117,114,99,101,115,87,104,105,99,104,83,104,111,117,108,100,66,101,68,105,115,112,108,97,121,101,100,40,41,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,99,108,97,115,115,76,105,115,116,46,97,100,100,40,117,41,44,115,46,97,100,100,82,101,99,111,109,112,101,110,115,101,40,41,44,114,46,97,100,100,76,105,115,116,101,110,101,114,115,40,41,44,108,46,114,117,110,65,99,116,105,111,110,115,40,41,44,116,91,112,46,99,117,114,114,101,110,116,93,46,122,101,114,111,40,41,44,111,46,100,105,115,112,97,116,99,104,40,92,34,111,110,79,112,101,110,92,34,41,125,125,40,101,41,44,66,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,100,97,116,97,44,110,61,101,46,99,111,114,101,46,115,99,114,111,108,108,98,97,114,82,101,99,111,109,112,101,110,115,111,114,59,110,46,97,100,100,82,101,99,111,109,112,101,110,115,101,61,102,117,110,99,116,105,111,110,40,41,123,92,34,99,111,109,112,108,101,116,101,92,34,61,61,61,100,111,99,117,109,101,110,116,46,114,101,97,100,121,83,116,97,116,101,63,111,40,41,58,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,108,111,97,100,92,34,44,40,102,117,110,99,116,105,111,110,40,41,123,111,40,41,44,110,46,97,100,100,82,101,99,111,109,112,101,110,115,101,61,111,125,41,41,125,59,118,97,114,32,111,61,102,117,110,99,116,105,111,110,40,41,123,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,62,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,38,38,40,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,46,109,97,114,103,105,110,82,105,103,104,116,61,116,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,92,34,112,120,92,34,41,125,59,110,46,114,101,109,111,118,101,82,101,99,111,109,112,101,110,115,101,61,102,117,110,99,116,105,111,110,40,41,123,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,92,34,109,97,114,103,105,110,45,114,105,103,104,116,92,34,41,125,125,40,101,41,44,105,101,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,44,110,61,116,46,115,108,105,100,101,67,104,97,110,103,101,70,97,99,97,100,101,44,111,61,116,46,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,44,105,61,116,46,115,116,97,103,101,77,97,110,97,103,101,114,59,101,46,112,114,111,112,115,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,62,49,63,40,110,46,99,104,97,110,103,101,84,111,80,114,101,118,105,111,117,115,61,102,117,110,99,116,105,111,110,40,41,123,111,46,106,117,109,112,84,111,40,105,46,103,101,116,80,114,101,118,105,111,117,115,83,108,105,100,101,73,110,100,101,120,40,41,41,125,44,110,46,99,104,97,110,103,101,84,111,78,101,120,116,61,102,117,110,99,116,105,111,110,40,41,123,111,46,106,117,109,112,84,111,40,105,46,103,101,116,78,101,120,116,83,108,105,100,101,73,110,100,101,120,40,41,41,125,41,58,40,110,46,99,104,97,110,103,101,84,111,80,114,101,118,105,111,117,115,61,102,117,110,99,116,105,111,110,40,41,123,125,44,110,46,99,104,97,110,103,101,84,111,78,101,120,116,61,102,117,110,99,116,105,111,110,40,41,123,125,41,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,44,110,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,111,61,101,46,99,111,114,101,44,105,61,111,46,99,108,97,115,115,70,97,99,97,100,101,44,114,61,111,46,101,118,101,110,116,115,68,105,115,112,97,116,99,104,101,114,44,115,61,111,46,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,44,97,61,111,46,115,111,117,114,99,101,68,105,115,112,108,97,121,70,97,99,97,100,101,44,117,61,111,46,115,116,97,103,101,77,97,110,97,103,101,114,44,108,61,111,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,101,114,44,100,61,111,46,122,111,111,109,101,114,44,112,61,101,46,100,97,116,97,44,102,61,101,46,101,108,101,109,101,110,116,115,44,109,61,102,46,115,111,117,114,99,101,65,110,105,109,97,116,105,111,110,87,114,97,112,112,101,114,115,44,98,61,102,46,116,104,117,109,98,115,44,103,61,101,46,103,101,116,81,117,101,117,101,100,65,99,116,105,111,110,44,120,61,101,46,112,114,111,112,115,44,118,61,120,46,100,105,115,97,98,108,101,84,104,117,109,98,115,44,83,61,120,46,105,110,105,116,105,97,108,65,110,105,109,97,116,105,111,110,44,119,61,120,46,115,108,105,100,101,67,104,97,110,103,101,65,110,105,109,97,116,105,111,110,44,84,61,101,46,114,101,115,111,108,118,101,44,67,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,44,73,61,101,46,116,105,109,101,111,117,116,44,121,61,84,40,78,41,44,95,61,103,40,40,102,117,110,99,116,105,111,110,40,41,123,105,46,114,101,109,111,118,101,70,114,111,109,69,97,99,104,69,108,101,109,101,110,116,67,108,97,115,115,73,102,67,111,110,116,97,105,110,115,40,92,34,115,111,117,114,99,101,65,110,105,109,97,116,105,111,110,87,114,97,112,112,101,114,115,92,34,44,104,41,125,41,44,50,53,48,41,59,115,46,99,104,97,110,103,101,84,111,61,102,117,110,99,116,105,111,110,40,101,41,123,118,124,124,40,98,91,67,46,99,117,114,114,101,110,116,93,38,38,98,91,67,46,99,117,114,114,101,110,116,93,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,76,41,44,98,91,101,93,38,38,98,91,101,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,76,41,41,44,100,46,105,102,90,111,111,109,105,110,103,82,101,115,101,116,90,111,111,109,40,41,44,112,46,105,115,84,104,117,109,98,105,110,103,124,124,121,46,114,117,110,83,108,105,100,101,67,104,97,110,103,101,65,99,116,105,111,110,115,40,67,46,99,117,114,114,101,110,116,44,101,41,44,67,46,99,117,114,114,101,110,116,61,101,44,117,46,117,112,100,97,116,101,83,116,97,103,101,73,110,100,101,120,101,115,40,41,44,33,118,38,38,98,91,67,46,99,117,114,114,101,110,116,93,38,38,108,46,116,114,97,110,115,102,111,114,109,84,111,67,117,114,114,101,110,116,87,105,116,104,84,114,97,110,115,105,116,105,111,110,40,41,44,110,46,115,101,116,83,108,105,100,101,78,117,109,98,101,114,40,101,43,49,41,44,97,46,100,105,115,112,108,97,121,83,111,117,114,99,101,115,87,104,105,99,104,83,104,111,117,108,100,66,101,68,105,115,112,108,97,121,101,100,40,41,44,114,46,100,105,115,112,97,116,99,104,40,92,34,111,110,83,108,105,100,101,67,104,97,110,103,101,92,34,41,125,44,115,46,106,117,109,112,84,111,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,67,46,99,117,114,114,101,110,116,59,115,46,99,104,97,110,103,101,84,111,40,101,41,44,105,46,114,101,109,111,118,101,70,114,111,109,69,97,99,104,69,108,101,109,101,110,116,67,108,97,115,115,73,102,67,111,110,116,97,105,110,115,40,92,34,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,92,34,44,99,41,44,70,40,109,91,110,93,44,83,41,44,70,40,109,91,110,93,44,119,41,44,109,91,110,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,104,41,44,70,40,109,91,101,93,44,83,41,44,70,40,109,91,101,93,44,104,41,44,109,91,101,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,119,41,44,95,40,41,44,116,91,101,93,46,122,101,114,111,40,41,44,73,40,40,102,117,110,99,116,105,111,110,40,41,123,110,33,61,61,67,46,99,117,114,114,101,110,116,38,38,116,91,110,93,46,110,101,103,97,116,105,118,101,40,41,125,41,44,50,50,48,41,125,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,46,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,84,114,97,110,115,102,111,114,109,101,114,44,110,61,101,46,100,97,116,97,44,111,61,40,48,44,101,46,114,101,115,111,108,118,101,41,40,117,101,41,59,116,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,101,41,123,110,46,105,115,84,104,117,109,98,105,110,103,63,111,46,115,101,116,85,112,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,40,41,58,111,46,115,101,116,85,112,78,111,116,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,65,116,73,110,100,101,120,40,101,41,44,111,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,40,101,41,125,44,116,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,101,41,123,111,46,115,101,116,85,112,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,40,101,41,44,111,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,40,101,41,125,44,116,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,78,111,116,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,101,41,123,111,46,115,101,116,85,112,78,111,116,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,65,116,73,110,100,101,120,40,101,41,44,111,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,40,101,41,125,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,46,115,111,117,114,99,101,68,105,115,112,108,97,121,70,97,99,97,100,101,44,110,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,117,112,100,97,116,101,83,111,117,114,99,101,68,105,114,101,99,116,87,114,97,112,112,101,114,67,111,108,108,101,99,116,105,111,110,44,111,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,44,105,61,101,46,112,114,111,112,115,46,108,111,97,100,79,110,108,121,67,117,114,114,101,110,116,83,111,117,114,99,101,59,116,46,100,105,115,112,108,97,121,83,111,117,114,99,101,115,87,104,105,99,104,83,104,111,117,108,100,66,101,68,105,115,112,108,97,121,101,100,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,105,41,110,91,111,46,99,117,114,114,101,110,116,93,40,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,101,32,105,110,32,111,41,118,111,105,100,32,48,33,61,61,111,91,101,93,38,38,110,91,111,91,101,93,93,40,41,125,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,44,110,61,116,46,99,108,97,115,115,70,97,99,97,100,101,44,111,61,116,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,68,111,119,110,44,105,61,116,46,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,44,114,61,101,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,115,44,115,61,101,46,114,101,115,111,108,118,101,44,97,61,101,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,117,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,44,108,61,115,40,97,101,41,59,111,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,92,34,86,73,68,69,79,92,34,61,61,61,101,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,124,124,101,46,116,111,117,99,104,101,115,124,124,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,105,46,114,117,110,83,119,105,112,105,110,103,68,111,119,110,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,40,97,44,101,41,44,97,46,105,115,77,111,118,101,67,97,108,108,70,105,114,115,116,61,33,48,44,97,46,100,111,119,110,67,108,105,101,110,116,89,61,80,40,101,41,44,50,61,61,61,89,40,101,41,63,108,46,114,117,110,80,105,110,99,104,65,99,116,105,111,110,115,40,101,41,58,110,46,114,101,109,111,118,101,70,114,111,109,69,97,99,104,69,108,101,109,101,110,116,67,108,97,115,115,73,102,67,111,110,116,97,105,110,115,40,92,34,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,92,34,44,99,41,59,118,97,114,32,116,61,114,91,117,46,99,117,114,114,101,110,116,93,59,116,38,38,116,46,99,111,110,116,97,105,110,115,40,101,46,116,97,114,103,101,116,41,63,97,46,105,115,83,111,117,114,99,101,68,111,119,110,69,118,101,110,116,84,97,114,103,101,116,61,33,48,58,97,46,105,115,83,111,117,114,99,101,68,111,119,110,69,118,101,110,116,84,97,114,103,101,116,61,33,49,125,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,44,110,61,101,46,99,111,114,101,46,115,116,97,103,101,77,97,110,97,103,101,114,44,111,61,101,46,112,114,111,112,115,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,45,49,59,110,46,103,101,116,80,114,101,118,105,111,117,115,83,108,105,100,101,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,61,116,46,99,117,114,114,101,110,116,63,111,58,116,46,99,117,114,114,101,110,116,45,49,125,44,110,46,103,101,116,78,101,120,116,83,108,105,100,101,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,99,117,114,114,101,110,116,61,61,61,111,63,48,58,116,46,99,117,114,114,101,110,116,43,49,125,44,110,46,117,112,100,97,116,101,83,116,97,103,101,73,110,100,101,120,101,115,61,48,61,61,61,111,63,102,117,110,99,116,105,111,110,40,41,123,125,58,49,61,61,61,111,63,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,116,46,99,117,114,114,101,110,116,63,40,116,46,110,101,120,116,61,49,44,100,101,108,101,116,101,32,116,46,112,114,101,118,105,111,117,115,41,58,40,116,46,112,114,101,118,105,111,117,115,61,48,44,100,101,108,101,116,101,32,116,46,110,101,120,116,41,125,58,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,101,118,105,111,117,115,61,110,46,103,101,116,80,114,101,118,105,111,117,115,83,108,105,100,101,73,110,100,101,120,40,41,44,116,46,110,101,120,116,61,110,46,103,101,116,78,101,120,116,83,108,105,100,101,73,110,100,101,120,40,41,125,44,110,46,105,115,83,111,117,114,99,101,73,110,83,116,97,103,101,61,111,60,61,50,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,118,97,114,32,110,61,116,46,99,117,114,114,101,110,116,59,105,102,40,48,61,61,61,110,38,38,101,61,61,61,111,124,124,110,61,61,61,111,38,38,48,61,61,61,101,41,114,101,116,117,114,110,33,48,59,118,97,114,32,105,61,110,45,101,59,114,101,116,117,114,110,45,49,61,61,61,105,124,124,48,61,61,61,105,124,124,49,61,61,61,105,125,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,46,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,44,110,61,101,46,101,108,101,109,101,110,116,115,59,116,46,114,117,110,83,119,105,112,105,110,103,68,111,119,110,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,46,105,115,80,111,105,110,116,101,114,105,110,103,61,33,48,44,101,46,100,111,119,110,67,108,105,101,110,116,88,61,72,40,116,41,44,101,46,115,119,105,112,101,100,88,61,48,125,44,116,46,114,117,110,83,119,105,112,105,110,103,77,111,118,101,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,115,101,40,110,46,99,111,110,116,97,105,110,101,114,44,115,41,44,101,46,115,119,105,112,101,100,88,61,72,40,116,41,45,101,46,100,111,119,110,67,108,105,101,110,116,88,125,44,116,46,114,117,110,83,119,105,112,105,110,103,84,111,112,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,70,40,110,46,99,111,110,116,97,105,110,101,114,44,115,41,44,101,46,105,115,80,111,105,110,116,101,114,105,110,103,61,33,49,125,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,108,108,101,99,116,105,111,110,115,44,110,61,116,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,44,111,61,116,46,115,111,117,114,99,101,83,105,122,101,114,115,44,105,61,101,46,99,111,114,101,44,114,61,105,46,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,84,114,97,110,115,102,111,114,109,101,114,44,115,61,105,46,119,105,110,100,111,119,82,101,115,105,122,101,65,99,116,105,111,110,101,114,44,97,61,105,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,101,114,44,117,61,101,46,100,97,116,97,44,108,61,101,46,101,108,101,109,101,110,116,115,44,104,61,101,46,112,114,111,112,115,44,100,61,104,46,100,105,115,97,98,108,101,84,104,117,109,98,115,44,112,61,104,46,115,111,117,114,99,101,115,44,102,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,44,109,61,117,46,99,97,112,116,105,111,110,72,101,105,103,104,116,115,44,98,61,117,46,110,111,116,84,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,83,99,97,108,101,115,44,103,61,117,46,110,111,116,84,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,108,97,116,101,115,89,44,120,61,108,46,99,97,112,116,105,111,110,115,44,118,61,108,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,44,83,61,108,46,116,104,117,109,98,115,59,115,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,105,110,110,101,114,87,105,100,116,104,60,57,57,50,63,117,46,109,97,120,83,111,117,114,99,101,87,105,100,116,104,61,105,110,110,101,114,87,105,100,116,104,58,117,46,109,97,120,83,111,117,114,99,101,87,105,100,116,104,61,46,57,42,105,110,110,101,114,87,105,100,116,104,44,117,46,109,97,120,83,111,117,114,99,101,72,101,105,103,104,116,61,46,57,42,105,110,110,101,114,72,101,105,103,104,116,44,100,124,124,40,117,46,116,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,83,99,97,108,101,61,49,45,108,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,46,111,102,102,115,101,116,72,101,105,103,104,116,47,105,110,110,101,114,72,101,105,103,104,116,44,117,46,116,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,108,97,116,101,89,61,45,108,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,46,111,102,102,115,101,116,72,101,105,103,104,116,47,50,41,44,48,61,61,61,117,46,117,110,108,111,97,100,101,100,84,104,117,109,98,115,67,111,117,110,116,38,38,115,46,114,117,110,84,104,117,109,98,115,65,99,116,105,111,110,115,40,41,59,102,111,114,40,118,97,114,32,101,61,48,59,101,60,112,46,108,101,110,103,116,104,59,101,43,43,41,123,105,102,40,120,91,101,93,41,123,109,91,101,93,61,120,91,101,93,46,111,102,102,115,101,116,72,101,105,103,104,116,59,118,97,114,32,116,61,109,91,101,93,45,50,53,59,98,91,101,93,61,49,45,116,47,105,110,110,101,114,72,101,105,103,104,116,44,103,91,101,93,61,45,116,47,50,125,101,108,115,101,32,98,91,101,93,61,49,44,103,91,101,93,61,48,59,70,40,118,91,101,93,44,99,41,44,114,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,40,101,41,44,101,33,61,61,102,46,99,117,114,114,101,110,116,38,38,110,91,101,93,46,110,101,103,97,116,105,118,101,40,41,44,111,91,101,93,38,38,111,91,101,93,46,97,100,106,117,115,116,83,105,122,101,40,41,125,125,44,115,46,114,117,110,84,104,117,109,98,115,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,117,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,61,48,59,102,111,114,40,118,97,114,32,101,61,48,59,101,60,112,46,108,101,110,103,116,104,59,101,43,43,41,117,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,43,61,83,91,101,93,46,111,102,102,115,101,116,87,105,100,116,104,43,56,59,97,46,116,114,97,110,115,102,111,114,109,84,111,67,117,114,114,101,110,116,40,41,125,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,44,110,61,101,46,99,111,114,101,46,122,111,111,109,101,114,44,111,61,101,46,100,97,116,97,44,105,61,101,46,101,108,101,109,101,110,116,115,44,114,61,101,46,114,101,115,111,108,118,101,44,115,61,101,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,97,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,44,117,61,105,46,115,111,117,114,99,101,115,44,108,61,105,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,44,104,61,114,40,114,101,41,59,110,46,122,111,111,109,84,111,61,102,117,110,99,116,105,111,110,40,101,41,123,111,46,122,111,111,109,61,112,40,101,41,44,105,46,115,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,92,34,115,99,97,108,101,40,92,34,46,99,111,110,99,97,116,40,111,46,122,111,111,109,44,92,34,41,92,34,41,125,44,110,46,105,102,90,111,111,109,105,110,103,82,101,115,101,116,90,111,111,109,61,102,117,110,99,116,105,111,110,40,41,123,49,33,61,61,111,46,122,111,111,109,38,38,40,110,46,122,111,111,109,84,111,40,49,41,44,110,46,115,116,111,112,90,111,111,109,105,110,103,40,41,41,125,44,110,46,115,116,97,114,116,90,111,111,109,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,100,40,92,34,103,114,97,98,92,34,41,44,104,46,114,117,110,79,112,97,99,105,116,121,48,65,99,116,105,111,110,85,115,105,110,103,77,101,116,104,111,100,40,92,34,97,100,100,92,34,41,44,104,46,114,117,110,65,99,116,105,118,101,69,110,104,97,110,99,101,109,101,110,116,65,99,116,105,111,110,85,115,105,110,103,77,101,116,104,111,100,40,92,34,114,101,109,111,118,101,92,34,41,125,44,110,46,115,116,111,112,90,111,111,109,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,100,40,92,34,122,111,111,109,45,105,110,92,34,41,44,104,46,114,117,110,79,112,97,99,105,116,121,48,65,99,116,105,111,110,85,115,105,110,103,77,101,116,104,111,100,40,92,34,114,101,109,111,118,101,92,34,41,44,104,46,114,117,110,65,99,116,105,118,101,69,110,104,97,110,99,101,109,101,110,116,65,99,116,105,111,110,85,115,105,110,103,77,101,116,104,111,100,40,92,34,97,100,100,92,34,41,44,108,91,97,46,99,117,114,114,101,110,116,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,99,41,44,116,91,97,46,99,117,114,114,101,110,116,93,46,116,114,97,110,115,108,97,116,101,40,48,44,48,41,46,122,101,114,111,40,41,44,115,46,117,112,83,119,105,112,101,100,88,61,48,44,115,46,117,112,83,119,105,112,101,100,89,61,48,125,59,118,97,114,32,100,61,102,117,110,99,116,105,111,110,40,101,41,123,117,91,97,46,99,117,114,114,101,110,116,93,38,38,40,117,91,97,46,99,117,114,114,101,110,116,93,46,115,116,121,108,101,46,99,117,114,115,111,114,61,101,41,125,44,112,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,112,97,114,115,101,70,108,111,97,116,40,101,46,116,111,80,114,101,99,105,115,105,111,110,40,49,50,41,41,125,125,40,101,41,125,102,117,110,99,116,105,111,110,32,108,101,40,101,41,123,118,97,114,32,116,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,110,61,101,46,99,111,114,101,44,111,61,110,46,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,84,114,97,110,115,102,111,114,109,101,114,44,105,61,110,46,122,111,111,109,101,114,44,114,61,101,46,100,97,116,97,44,115,61,101,46,101,108,101,109,101,110,116,115,44,97,61,101,46,112,114,111,112,115,46,115,111,117,114,99,101,115,44,117,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,59,116,104,105,115,46,111,112,101,110,84,104,117,109,98,115,61,102,117,110,99,116,105,111,110,40,41,123,105,46,105,102,90,111,111,109,105,110,103,82,101,115,101,116,90,111,111,109,40,41,44,115,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,119,41,44,99,40,92,34,114,101,109,111,118,101,92,34,41,44,114,46,105,115,84,104,117,109,98,105,110,103,61,33,48,44,108,40,41,44,114,46,117,110,108,111,97,100,101,100,84,104,117,109,98,115,67,111,117,110,116,38,38,116,46,117,112,100,97,116,101,84,104,117,109,98,115,73,110,110,101,114,40,41,125,44,116,104,105,115,46,99,108,111,115,101,84,104,117,109,98,115,61,102,117,110,99,116,105,111,110,40,41,123,105,46,105,102,90,111,111,109,105,110,103,82,101,115,101,116,90,111,111,109,40,41,44,115,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,119,41,44,99,40,92,34,97,100,100,92,34,41,44,114,46,105,115,84,104,117,109,98,105,110,103,61,33,49,44,108,40,41,125,59,118,97,114,32,99,61,102,117,110,99,116,105,111,110,40,101,41,123,115,46,99,97,112,116,105,111,110,115,91,117,46,99,117,114,114,101,110,116,93,38,38,115,46,99,97,112,116,105,111,110,115,91,117,46,99,117,114,114,101,110,116,93,46,99,108,97,115,115,76,105,115,116,91,101,93,40,102,41,125,44,108,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,111,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,40,101,41,125,125,102,117,110,99,116,105,111,110,32,104,101,40,101,41,123,118,97,114,32,116,61,101,46,100,97,116,97,44,110,61,101,46,101,108,101,109,101,110,116,115,44,111,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,59,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,70,40,110,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,44,97,41,59,118,97,114,32,101,61,105,110,110,101,114,87,105,100,116,104,47,50,44,114,61,110,46,116,104,117,109,98,115,87,114,97,112,112,101,114,115,91,111,46,99,117,114,114,101,110,116,93,44,115,61,114,46,111,102,102,115,101,116,76,101,102,116,43,114,46,111,102,102,115,101,116,87,105,100,116,104,47,50,44,117,61,116,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,45,115,59,115,62,101,38,38,117,62,101,63,105,40,101,45,115,41,58,115,62,101,63,105,40,105,110,110,101,114,87,105,100,116,104,45,116,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,45,57,41,58,117,62,101,38,38,105,40,48,41,125,44,116,104,105,115,46,114,117,110,84,111,84,104,105,110,84,104,117,109,98,115,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,115,101,40,110,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,44,97,41,44,105,40,48,41,125,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,101,41,123,116,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,61,101,44,110,46,116,104,117,109,98,115,73,110,110,101,114,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,92,34,116,114,97,110,115,108,97,116,101,88,40,92,34,46,99,111,110,99,97,116,40,101,44,92,34,112,120,41,92,34,41,125,125,102,117,110,99,116,105,111,110,32,100,101,40,101,41,123,118,97,114,32,116,44,110,44,111,44,105,44,114,44,115,61,101,46,99,111,114,101,44,97,61,101,46,99,111,108,108,101,99,116,105,111,110,115,44,117,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,108,61,101,46,100,97,116,97,44,104,61,101,46,101,108,101,109,101,110,116,115,44,100,61,101,46,112,114,111,112,115,59,117,46,115,104,111,119,84,104,117,109,98,115,67,117,114,115,111,114,101,114,73,102,78,111,116,89,101,116,61,110,117,108,108,44,117,46,104,105,100,101,84,104,117,109,98,115,76,111,97,100,101,114,61,110,117,108,108,44,117,46,104,105,100,101,84,104,117,109,98,115,67,117,114,115,111,114,101,114,61,110,117,108,108,44,108,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,61,110,117,108,108,44,108,46,117,110,108,111,97,100,101,100,84,104,117,109,98,115,67,111,117,110,116,61,100,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,44,108,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,61,48,44,108,46,105,115,84,104,117,109,98,105,110,103,61,100,46,115,104,111,119,84,104,117,109,98,115,79,110,77,111,117,110,116,44,108,46,116,104,117,109,98,101,100,83,111,117,114,99,101,115,79,117,116,101,114,115,83,99,97,108,101,61,110,117,108,108,44,101,46,116,104,117,109,98,115,83,119,105,112,105,110,103,80,114,111,112,115,61,123,105,115,80,111,105,110,116,101,114,105,110,103,58,33,49,44,100,111,119,110,67,108,105,101,110,116,88,58,110,117,108,108,44,115,119,105,112,101,100,88,58,110,117,108,108,125,44,97,46,116,104,117,109,98,115,82,101,110,100,101,114,70,117,110,99,116,105,111,110,115,61,91,93,44,115,46,116,104,117,109,98,76,111,97,100,72,97,110,100,108,101,114,61,123,125,44,115,46,116,104,117,109,98,115,79,112,101,110,105,110,103,65,99,116,105,111,110,115,61,123,125,44,115,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,101,114,61,123,125,44,115,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,84,114,97,110,115,105,116,105,111,110,101,114,61,123,125,44,115,46,116,104,117,109,98,115,84,111,103,103,108,101,114,61,123,125,44,115,46,116,104,117,109,98,115,83,119,105,112,105,110,103,68,111,119,110,61,123,125,44,104,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,61,110,117,108,108,44,104,46,116,104,117,109,98,115,61,91,93,44,104,46,116,104,117,109,98,115,87,114,97,112,112,101,114,115,61,91,93,44,104,46,116,104,117,109,98,115,80,114,111,112,101,100,67,111,109,112,111,110,101,110,116,115,61,91,93,44,104,46,116,104,117,109,98,115,73,110,110,101,114,61,110,117,108,108,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,44,110,61,116,46,116,104,117,109,98,76,111,97,100,72,97,110,100,108,101,114,44,111,61,116,46,119,105,110,100,111,119,82,101,115,105,122,101,65,99,116,105,111,110,101,114,44,105,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,114,61,101,46,100,97,116,97,44,115,61,101,46,101,108,101,109,101,110,116,115,46,116,104,117,109,98,115,87,114,97,112,112,101,114,115,59,110,46,104,97,110,100,108,101,76,111,97,100,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,114,46,117,110,108,111,97,100,101,100,84,104,117,109,98,115,67,111,117,110,116,45,45,44,48,61,61,61,114,46,117,110,108,111,97,100,101,100,84,104,117,109,98,115,67,111,117,110,116,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,115,46,108,101,110,103,116,104,59,101,43,43,41,115,91,101,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,103,41,59,111,46,114,117,110,84,104,117,109,98,115,65,99,116,105,111,110,115,40,41,44,105,46,104,105,100,101,84,104,117,109,98,115,76,111,97,100,101,114,40,41,125,125,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,46,116,104,117,109,98,115,84,111,103,103,108,101,114,44,110,61,101,46,100,97,116,97,44,111,61,40,48,44,101,46,114,101,115,111,108,118,101,41,40,108,101,41,59,116,46,116,111,103,103,108,101,84,104,117,109,98,115,61,102,117,110,99,116,105,111,110,40,41,123,110,46,105,115,84,104,117,109,98,105,110,103,63,111,46,99,108,111,115,101,84,104,117,109,98,115,40,41,58,111,46,111,112,101,110,84,104,117,109,98,115,40,41,125,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,44,110,61,116,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,101,114,44,111,61,116,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,84,114,97,110,115,105,116,105,111,110,101,114,44,105,61,101,46,100,97,116,97,44,114,61,40,48,44,101,46,114,101,115,111,108,118,101,41,40,104,101,41,59,110,46,116,114,97,110,115,102,111,114,109,84,111,67,117,114,114,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,105,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,62,105,110,110,101,114,87,105,100,116,104,63,114,46,114,117,110,65,99,116,105,111,110,115,40,41,58,114,46,114,117,110,84,111,84,104,105,110,84,104,117,109,98,115,65,99,116,105,111,110,115,40,41,125,44,110,46,116,114,97,110,115,102,111,114,109,84,111,67,117,114,114,101,110,116,87,105,116,104,84,114,97,110,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,105,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,62,105,110,110,101,114,87,105,100,116,104,38,38,111,46,99,97,108,108,65,99,116,105,111,110,87,105,116,104,84,114,97,110,115,105,116,105,111,110,40,114,46,114,117,110,65,99,116,105,111,110,115,41,125,125,40,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,84,114,97,110,115,105,116,105,111,110,101,114,44,110,61,101,46,101,108,101,109,101,110,116,115,44,111,61,40,48,44,101,46,103,101,116,81,117,101,117,101,100,65,99,116,105,111,110,41,40,40,102,117,110,99,116,105,111,110,40,41,123,110,46,116,104,117,109,98,115,73,110,110,101,114,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,99,41,125,41,44,50,53,48,41,59,116,46,99,97,108,108,65,99,116,105,111,110,87,105,116,104,84,114,97,110,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,101,41,123,110,46,116,104,117,109,98,115,73,110,110,101,114,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,99,41,44,101,40,41,44,111,40,41,125,125,40,101,41,44,110,61,40,116,61,101,41,46,99,111,114,101,44,111,61,110,46,116,104,117,109,98,115,83,119,105,112,105,110,103,68,111,119,110,44,105,61,110,46,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,44,114,61,116,46,116,104,117,109,98,115,83,119,105,112,105,110,103,80,114,111,112,115,44,111,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,105,46,114,117,110,83,119,105,112,105,110,103,68,111,119,110,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,40,114,44,101,41,44,101,46,116,111,117,99,104,101,115,124,124,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,125,102,117,110,99,116,105,111,110,32,112,101,40,101,41,123,114,101,116,117,114,110,40,112,101,61,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,92,34,115,121,109,98,111,108,92,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,101,125,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,83,121,109,98,111,108,38,38,101,33,61,61,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,63,92,34,115,121,109,98,111,108,92,34,58,116,121,112,101,111,102,32,101,125,41,40,101,41,125,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,41,123,105,102,40,92,34,111,98,106,101,99,116,92,34,61,61,61,112,101,40,116,41,41,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,92,34,111,98,106,101,99,116,92,34,61,61,61,112,101,40,116,91,110,93,41,63,102,101,40,101,91,110,93,44,116,91,110,93,41,58,116,91,110,93,38,38,40,101,91,110,93,61,116,91,110,93,41,125,102,117,110,99,116,105,111,110,32,109,101,40,101,41,123,118,97,114,32,116,44,110,61,101,46,112,114,111,112,115,44,111,61,48,44,105,61,123,125,59,116,104,105,115,46,103,101,116,83,111,117,114,99,101,84,121,112,101,70,114,111,109,76,111,99,97,108,83,116,111,114,97,103,101,66,121,85,114,108,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,91,101,93,63,116,91,101,93,58,114,40,101,41,125,44,116,104,105,115,46,104,97,110,100,108,101,82,101,99,101,105,118,101,100,83,111,117,114,99,101,84,121,112,101,70,111,114,85,114,108,61,102,117,110,99,116,105,111,110,40,101,44,110,41,123,33,49,61,61,61,105,91,110,93,38,38,40,111,45,45,44,92,34,105,110,118,97,108,105,100,92,34,33,61,61,101,63,105,91,110,93,61,101,58,100,101,108,101,116,101,32,105,91,110,93,44,48,61,61,61,111,38,38,40,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,116,41,101,91,110,93,61,116,91,110,93,125,40,116,44,105,41,44,108,111,99,97,108,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,92,34,102,115,108,105,103,104,116,98,111,120,45,116,121,112,101,115,92,34,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,41,41,41,41,125,59,118,97,114,32,114,61,102,117,110,99,116,105,111,110,40,101,41,123,111,43,43,44,105,91,101,93,61,33,49,125,59,110,46,100,105,115,97,98,108,101,76,111,99,97,108,83,116,111,114,97,103,101,63,40,116,104,105,115,46,103,101,116,83,111,117,114,99,101,84,121,112,101,70,114,111,109,76,111,99,97,108,83,116,111,114,97,103,101,66,121,85,114,108,61,102,117,110,99,116,105,111,110,40,41,123,125,44,116,104,105,115,46,104,97,110,100,108,101,82,101,99,101,105,118,101,100,83,111,117,114,99,101,84,121,112,101,70,111,114,85,114,108,61,102,117,110,99,116,105,111,110,40,41,123,125,41,58,40,116,61,74,83,79,78,46,112,97,114,115,101,40,108,111,99,97,108,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,92,34,102,115,108,105,103,104,116,98,111,120,45,116,121,112,101,115,92,34,41,41,41,124,124,40,116,61,123,125,44,116,104,105,115,46,103,101,116,83,111,117,114,99,101,84,121,112,101,70,114,111,109,76,111,99,97,108,83,116,111,114,97,103,101,66,121,85,114,108,61,114,41,125,102,117,110,99,116,105,111,110,32,98,101,40,101,41,123,118,97,114,32,116,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,110,61,101,46,100,97,116,97,44,111,61,101,46,101,108,101,109,101,110,116,115,46,116,104,117,109,98,115,80,114,111,112,101,100,67,111,109,112,111,110,101,110,116,115,44,105,61,101,46,112,114,111,112,115,44,114,61,105,46,115,104,111,119,84,104,117,109,98,115,79,110,77,111,117,110,116,44,115,61,105,46,115,111,117,114,99,101,115,44,97,61,105,46,116,104,117,109,98,115,59,116,104,105,115,46,98,117,105,108,100,84,104,117,109,98,70,111,114,84,121,112,101,65,110,100,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,101,44,105,41,123,97,38,38,97,91,105,93,63,111,91,105,93,61,123,99,111,109,112,111,110,101,110,116,58,92,34,84,104,117,109,98,92,34,44,112,114,111,112,115,58,123,105,58,105,44,115,114,99,58,97,91,105,93,125,125,58,111,91,105,93,61,92,34,105,109,97,103,101,92,34,61,61,61,101,63,123,99,111,109,112,111,110,101,110,116,58,92,34,84,104,117,109,98,92,34,44,112,114,111,112,115,58,123,105,58,105,44,115,114,99,58,115,91,105,93,125,125,58,123,99,111,109,112,111,110,101,110,116,58,92,34,73,110,118,97,108,105,100,84,104,117,109,98,92,34,44,112,114,111,112,115,58,123,105,58,105,125,125,44,116,46,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,46,103,101,116,40,41,38,38,40,114,124,124,110,46,105,115,84,104,117,109,98,105,110,103,41,38,38,116,46,117,112,100,97,116,101,84,104,117,109,98,115,73,110,110,101,114,40,41,125,125,102,117,110,99,116,105,111,110,32,103,101,40,101,41,123,118,97,114,32,116,44,110,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,111,61,110,46,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,44,105,61,110,46,117,112,100,97,116,101,83,111,117,114,99,101,68,105,114,101,99,116,87,114,97,112,112,101,114,67,111,108,108,101,99,116,105,111,110,44,114,61,101,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,67,111,109,112,111,110,101,110,116,115,44,115,61,101,46,112,114,111,112,115,46,100,105,115,97,98,108,101,84,104,117,109,98,115,44,97,61,101,46,114,101,115,111,108,118,101,59,115,124,124,40,116,61,97,40,98,101,41,41,44,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,70,111,114,83,111,117,114,99,101,84,121,112,101,65,110,100,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,97,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,92,34,105,109,97,103,101,92,34,58,97,61,92,34,73,109,97,103,101,114,92,34,59,98,114,101,97,107,59,99,97,115,101,92,34,118,105,100,101,111,92,34,58,97,61,92,34,86,105,100,101,111,114,92,34,59,98,114,101,97,107,59,99,97,115,101,92,34,121,111,117,116,117,98,101,92,34,58,97,61,92,34,89,111,117,116,117,98,101,114,92,34,59,98,114,101,97,107,59,99,97,115,101,92,34,99,117,115,116,111,109,92,34,58,97,61,92,34,67,117,115,116,111,109,101,114,92,34,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,97,61,92,34,73,110,118,97,108,105,100,101,114,92,34,125,114,91,110,93,61,97,44,111,46,103,101,116,40,41,38,38,105,91,110,93,40,41,44,115,124,124,116,46,98,117,105,108,100,84,104,117,109,98,70,111,114,84,121,112,101,65,110,100,73,110,100,101,120,40,101,44,110,41,125,125,102,117,110,99,116,105,111,110,32,120,101,40,41,123,118,97,114,32,101,44,116,44,110,44,111,61,123,105,115,85,114,108,89,111,117,116,117,98,101,79,110,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,99,114,101,97,116,101,69,108,101,109,101,110,116,40,92,34,97,92,34,41,59,114,101,116,117,114,110,32,116,46,104,114,101,102,61,101,44,92,34,119,119,119,46,121,111,117,116,117,98,101,46,99,111,109,92,34,61,61,61,116,46,104,111,115,116,110,97,109,101,125,44,103,101,116,84,121,112,101,70,114,111,109,82,101,115,112,111,110,115,101,67,111,110,116,101,110,116,84,121,112,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,115,108,105,99,101,40,48,44,101,46,105,110,100,101,120,79,102,40,92,34,47,92,34,41,41,125,125,59,102,117,110,99,116,105,111,110,32,105,40,41,123,105,102,40,52,33,61,61,110,46,114,101,97,100,121,83,116,97,116,101,41,123,105,102,40,50,61,61,61,110,46,114,101,97,100,121,83,116,97,116,101,41,123,118,97,114,32,101,59,115,119,105,116,99,104,40,111,46,103,101,116,84,121,112,101,70,114,111,109,82,101,115,112,111,110,115,101,67,111,110,116,101,110,116,84,121,112,101,40,110,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,92,34,99,111,110,116,101,110,116,45,116,121,112,101,92,34,41,41,41,123,99,97,115,101,92,34,105,109,97,103,101,92,34,58,101,61,92,34,105,109,97,103,101,92,34,59,98,114,101,97,107,59,99,97,115,101,92,34,118,105,100,101,111,92,34,58,101,61,92,34,118,105,100,101,111,92,34,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,101,61,92,34,105,110,118,97,108,105,100,92,34,125,110,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,110,46,97,98,111,114,116,40,41,44,116,40,101,41,125,125,101,108,115,101,32,116,40,92,34,105,110,118,97,108,105,100,92,34,41,125,116,104,105,115,46,115,101,116,85,114,108,84,111,67,104,101,99,107,61,102,117,110,99,116,105,111,110,40,116,41,123,101,61,116,125,44,116,104,105,115,46,103,101,116,83,111,117,114,99,101,84,121,112,101,61,102,117,110,99,116,105,111,110,40,114,41,123,105,102,40,111,46,105,115,85,114,108,89,111,117,116,117,98,101,79,110,101,40,101,41,41,114,101,116,117,114,110,32,114,40,92,34,121,111,117,116,117,98,101,92,34,41,59,116,61,114,44,40,110,61,110,101,119,32,88,77,76,72,116,116,112,82,101,113,117,101,115,116,41,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,105,44,110,46,111,112,101,110,40,92,34,71,69,84,92,34,44,101,44,33,48,41,44,110,46,115,101,110,100,40,41,125,125,102,117,110,99,116,105,111,110,32,118,101,40,101,44,116,44,110,41,123,118,97,114,32,111,61,101,46,112,114,111,112,115,44,105,61,111,46,116,121,112,101,115,44,114,61,111,46,116,121,112,101,44,115,61,111,46,115,111,117,114,99,101,115,44,97,61,101,46,114,101,115,111,108,118,101,59,116,104,105,115,46,103,101,116,84,121,112,101,83,101,116,66,121,67,108,105,101,110,116,70,111,114,73,110,100,101,120,61,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,105,38,38,105,91,101,93,63,116,61,105,91,101,93,58,114,38,38,40,116,61,114,41,44,116,125,44,116,104,105,115,46,114,101,116,114,105,101,118,101,84,121,112,101,87,105,116,104,88,104,114,70,111,114,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,111,61,97,40,120,101,41,59,111,46,115,101,116,85,114,108,84,111,67,104,101,99,107,40,115,91,101,93,41,44,111,46,103,101,116,83,111,117,114,99,101,84,121,112,101,40,40,102,117,110,99,116,105,111,110,40,111,41,123,116,46,104,97,110,100,108,101,82,101,99,101,105,118,101,100,83,111,117,114,99,101,84,121,112,101,70,111,114,85,114,108,40,111,44,115,91,101,93,41,44,110,46,114,117,110,65,99,116,105,111,110,115,70,111,114,83,111,117,114,99,101,84,121,112,101,65,110,100,73,110,100,101,120,40,111,44,101,41,125,41,41,125,125,102,117,110,99,116,105,111,110,32,83,101,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,101,46,112,114,111,112,115,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,59,111,43,43,41,101,46,99,111,108,108,101,99,116,105,111,110,115,91,116,93,91,111,93,61,101,46,114,101,115,111,108,118,101,40,110,44,91,111,93,41,125,102,117,110,99,116,105,111,110,32,119,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,105,61,101,46,100,97,116,97,44,114,61,101,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,115,44,115,61,110,47,111,44,97,61,48,59,116,104,105,115,46,97,100,106,117,115,116,83,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,40,97,61,105,46,109,97,120,83,111,117,114,99,101,87,105,100,116,104,47,115,41,60,105,46,109,97,120,83,111,117,114,99,101,72,101,105,103,104,116,41,114,101,116,117,114,110,32,110,60,105,46,109,97,120,83,111,117,114,99,101,87,105,100,116,104,38,38,40,97,61,111,41,44,117,40,41,59,97,61,111,62,105,46,109,97,120,83,111,117,114,99,101,72,101,105,103,104,116,63,105,46,109,97,120,83,111,117,114,99,101,72,101,105,103,104,116,58,111,44,117,40,41,125,59,118,97,114,32,117,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,114,91,116,93,46,115,116,121,108,101,59,101,46,119,105,100,116,104,61,97,42,115,43,92,34,112,120,92,34,44,101,46,104,101,105,103,104,116,61,97,43,92,34,112,120,92,34,125,125,102,117,110,99,116,105,111,110,32,76,101,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,44,111,61,101,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,83,105,122,101,114,115,44,105,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,104,105,100,101,83,111,117,114,99,101,76,111,97,100,101,114,67,111,108,108,101,99,116,105,111,110,44,114,61,101,46,99,111,114,101,46,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,84,114,97,110,115,102,111,114,109,101,114,44,115,61,101,46,101,108,101,109,101,110,116,115,44,97,61,115,46,115,111,117,114,99,101,65,110,105,109,97,116,105,111,110,87,114,97,112,112,101,114,115,44,117,61,115,46,115,111,117,114,99,101,115,44,99,61,101,46,114,101,115,111,108,118,101,59,102,117,110,99,116,105,111,110,32,108,40,101,44,110,41,123,111,91,116,93,61,99,40,119,101,44,91,116,44,101,44,110,93,41,44,111,91,116,93,46,97,100,106,117,115,116,83,105,122,101,40,41,125,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,101,44,111,41,123,117,91,116,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,103,41,44,97,91,116,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,100,41,44,105,91,116,93,40,41,44,114,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,40,116,41,44,108,40,101,44,111,41,44,110,46,114,117,110,65,99,116,105,111,110,115,61,108,125,125,102,117,110,99,116,105,111,110,32,84,101,40,101,44,116,41,123,118,97,114,32,110,44,111,61,116,104,105,115,44,105,61,101,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,115,44,114,61,101,46,112,114,111,112,115,44,115,61,101,46,114,101,115,111,108,118,101,44,97,61,101,46,116,105,109,101,111,117,116,44,117,61,115,40,76,101,44,91,116,93,41,59,116,104,105,115,46,104,97,110,100,108,101,73,109,97,103,101,76,111,97,100,61,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,44,110,61,116,46,110,97,116,117,114,97,108,87,105,100,116,104,44,111,61,116,46,110,97,116,117,114,97,108,72,101,105,103,104,116,59,117,46,114,117,110,65,99,116,105,111,110,115,40,110,44,111,41,125,44,116,104,105,115,46,104,97,110,100,108,101,86,105,100,101,111,76,111,97,100,61,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,44,111,61,116,46,118,105,100,101,111,87,105,100,116,104,44,105,61,116,46,118,105,100,101,111,72,101,105,103,104,116,59,110,61,33,48,44,117,46,114,117,110,65,99,116,105,111,110,115,40,111,44,105,41,125,44,116,104,105,115,46,104,97,110,100,108,101,78,111,116,77,101,116,97,68,97,116,101,100,86,105,100,101,111,76,111,97,100,61,102,117,110,99,116,105,111,110,40,41,123,110,124,124,111,46,104,97,110,100,108,101,89,111,117,116,117,98,101,76,111,97,100,40,41,125,44,116,104,105,115,46,104,97,110,100,108,101,89,111,117,116,117,98,101,76,111,97,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,49,57,50,48,44,116,61,49,48,56,48,59,114,46,109,97,120,89,111,117,116,117,98,101,86,105,100,101,111,68,105,109,101,110,115,105,111,110,115,38,38,40,101,61,114,46,109,97,120,89,111,117,116,117,98,101,86,105,100,101,111,68,105,109,101,110,115,105,111,110,115,46,119,105,100,116,104,44,116,61,114,46,109,97,120,89,111,117,116,117,98,101,86,105,100,101,111,68,105,109,101,110,115,105,111,110,115,46,104,101,105,103,104,116,41,44,117,46,114,117,110,65,99,116,105,111,110,115,40,101,44,116,41,125,44,116,104,105,115,46,104,97,110,100,108,101,67,117,115,116,111,109,76,111,97,100,61,102,117,110,99,116,105,111,110,40,41,123,97,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,105,91,116,93,59,117,46,114,117,110,65,99,116,105,111,110,115,40,101,46,111,102,102,115,101,116,87,105,100,116,104,44,101,46,111,102,102,115,101,116,72,101,105,103,104,116,41,125,41,41,125,125,102,117,110,99,116,105,111,110,32,67,101,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,44,111,61,101,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,44,105,61,101,46,112,114,111,112,115,44,114,61,48,44,115,61,48,44,97,61,48,59,116,104,105,115,46,116,114,97,110,115,108,97,116,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,115,61,101,44,118,111,105,100,32,48,33,61,61,116,38,38,40,97,61,116,41,44,110,125,44,116,104,105,115,46,103,101,116,84,114,97,110,115,108,97,116,101,88,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,125,44,116,104,105,115,46,103,101,116,84,114,97,110,115,108,97,116,101,89,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,125,44,116,104,105,115,46,110,101,103,97,116,105,118,101,61,102,117,110,99,116,105,111,110,40,41,123,117,40,45,40,49,43,105,46,115,108,105,100,101,68,105,115,116,97,110,99,101,41,42,105,110,110,101,114,87,105,100,116,104,41,125,44,116,104,105,115,46,122,101,114,111,61,102,117,110,99,116,105,111,110,40,41,123,117,40,48,41,125,44,116,104,105,115,46,112,111,115,105,116,105,118,101,61,102,117,110,99,116,105,111,110,40,41,123,117,40,40,49,43,105,46,115,108,105,100,101,68,105,115,116,97,110,99,101,41,42,105,110,110,101,114,87,105,100,116,104,41,125,59,118,97,114,32,117,61,102,117,110,99,116,105,111,110,40,101,41,123,114,61,101,43,115,44,99,40,41,44,115,61,48,125,44,99,61,102,117,110,99,116,105,111,110,40,41,123,111,91,116,93,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,92,34,116,114,97,110,115,108,97,116,101,40,92,34,46,99,111,110,99,97,116,40,114,44,92,34,112,120,44,32,92,34,41,46,99,111,110,99,97,116,40,97,44,92,34,112,120,41,92,34,41,125,125,102,117,110,99,116,105,111,110,32,73,101,40,101,41,123,118,97,114,32,116,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,44,110,61,101,46,99,111,114,101,44,111,61,110,46,101,118,101,110,116,115,68,105,115,112,97,116,99,104,101,114,44,105,61,110,46,108,105,103,104,116,98,111,120,79,112,101,110,101,114,44,114,61,110,46,108,105,103,104,116,98,111,120,79,112,101,110,65,99,116,105,111,110,101,114,44,115,61,101,46,100,97,116,97,44,97,61,101,46,112,114,111,112,115,59,105,46,111,112,101,110,76,105,103,104,116,98,111,120,61,102,117,110,99,116,105,111,110,40,41,123,114,46,114,117,110,66,101,102,111,114,101,82,101,110,100,101,114,65,99,116,105,111,110,115,40,41,44,83,101,40,101,44,92,34,115,111,117,114,99,101,76,111,97,100,72,97,110,100,108,101,114,115,92,34,44,84,101,41,44,111,46,100,105,115,112,97,116,99,104,40,92,34,111,110,83,104,111,119,92,34,41,44,116,46,115,101,116,40,33,48,44,114,46,114,117,110,65,102,116,101,114,82,101,110,100,101,114,65,99,116,105,111,110,115,41,125,44,105,46,105,110,105,116,105,97,108,105,122,101,65,110,100,79,112,101,110,76,105,103,104,116,98,111,120,61,102,117,110,99,116,105,111,110,40,41,123,115,46,105,115,73,110,105,116,105,97,108,105,122,101,100,61,33,48,44,83,101,40,101,44,92,34,115,111,117,114,99,101,76,111,97,100,72,97,110,100,108,101,114,115,92,34,44,84,101,41,44,83,101,40,101,44,92,34,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,92,34,44,67,101,41,44,102,101,40,115,46,115,108,105,100,101,66,117,116,116,111,110,115,44,97,46,115,108,105,100,101,66,117,116,116,111,110,115,41,44,102,101,40,115,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,44,97,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,41,44,97,46,100,105,115,97,98,108,101,84,104,117,109,98,115,124,124,100,101,40,101,41,44,99,101,40,101,41,44,111,46,100,105,115,112,97,116,99,104,40,92,34,111,110,73,110,105,116,92,34,41,44,116,46,115,101,116,40,33,48,44,40,102,117,110,99,116,105,111,110,40,41,123,114,46,114,117,110,65,102,116,101,114,82,101,110,100,101,114,65,99,116,105,111,110,115,40,41,44,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,101,46,112,114,111,112,115,46,115,111,117,114,99,101,115,44,110,61,101,46,114,101,115,111,108,118,101,44,111,61,110,40,109,101,41,44,105,61,110,40,103,101,41,44,114,61,110,40,118,101,44,91,111,44,105,93,41,44,115,61,48,59,115,60,116,46,108,101,110,103,116,104,59,115,43,43,41,105,102,40,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,116,91,115,93,41,123,118,97,114,32,97,61,114,46,103,101,116,84,121,112,101,83,101,116,66,121,67,108,105,101,110,116,70,111,114,73,110,100,101,120,40,115,41,59,105,102,40,97,41,105,46,114,117,110,65,99,116,105,111,110,115,70,111,114,83,111,117,114,99,101,84,121,112,101,65,110,100,73,110,100,101,120,40,97,44,115,41,59,101,108,115,101,123,118,97,114,32,117,61,111,46,103,101,116,83,111,117,114,99,101,84,121,112,101,70,114,111,109,76,111,99,97,108,83,116,111,114,97,103,101,66,121,85,114,108,40,116,91,115,93,41,59,117,63,105,46,114,117,110,65,99,116,105,111,110,115,70,111,114,83,111,117,114,99,101,84,121,112,101,65,110,100,73,110,100,101,120,40,117,44,115,41,58,114,46,114,101,116,114,105,101,118,101,84,121,112,101,87,105,116,104,88,104,114,70,111,114,73,110,100,101,120,40,115,41,125,125,101,108,115,101,32,105,46,114,117,110,65,99,116,105,111,110,115,70,111,114,83,111,117,114,99,101,84,121,112,101,65,110,100,73,110,100,101,120,40,92,34,99,117,115,116,111,109,92,34,44,115,41,125,40,101,41,125,41,41,125,125,102,117,110,99,116,105,111,110,32,121,101,40,101,44,116,44,110,41,123,114,101,116,117,114,110,40,121,101,61,95,101,40,41,63,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,61,91,110,117,108,108,93,59,111,46,112,117,115,104,46,97,112,112,108,121,40,111,44,116,41,59,118,97,114,32,105,61,110,101,119,40,70,117,110,99,116,105,111,110,46,98,105,110,100,46,97,112,112,108,121,40,101,44,111,41,41,59,114,101,116,117,114,110,32,110,38,38,65,101,40,105,44,110,46,112,114,111,116,111,116,121,112,101,41,44,105,125,41,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,95,101,40,41,123,105,102,40,92,34,117,110,100,101,102,105,110,101,100,92,34,61,61,116,121,112,101,111,102,32,82,101,102,108,101,99,116,124,124,33,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,41,114,101,116,117,114,110,33,49,59,105,102,40,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,46,115,104,97,109,41,114,101,116,117,114,110,33,49,59,105,102,40,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,80,114,111,120,121,41,114,101,116,117,114,110,33,48,59,116,114,121,123,114,101,116,117,114,110,32,68,97,116,101,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,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,40,68,97,116,101,44,91,93,44,40,102,117,110,99,116,105,111,110,40,41,123,125,41,41,41,44,33,48,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,33,49,125,125,102,117,110,99,116,105,111,110,32,65,101,40,101,44,116,41,123,114,101,116,117,114,110,40,65,101,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,95,95,112,114,111,116,111,95,95,61,116,44,101,125,41,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,122,101,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,114,101,116,117,114,110,32,69,101,40,101,41,125,40,101,41,124,124,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,92,34,117,110,100,101,102,105,110,101,100,92,34,33,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,101,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,101,41,125,40,101,41,124,124,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,101,41,114,101,116,117,114,110,59,105,102,40,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,69,101,40,101,44,116,41,59,118,97,114,32,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,101,41,46,115,108,105,99,101,40,56,44,45,49,41,59,92,34,79,98,106,101,99,116,92,34,61,61,61,110,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,101,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,59,105,102,40,92,34,77,97,112,92,34,61,61,61,110,124,124,92,34,83,101,116,92,34,61,61,61,110,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,101,41,59,105,102,40,92,34,65,114,103,117,109,101,110,116,115,92,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,41,114,101,116,117,114,110,32,69,101,40,101,44,116,41,125,40,101,41,124,124,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,92,34,41,125,40,41,125,102,117,110,99,116,105,111,110,32,69,101,40,101,44,116,41,123,40,110,117,108,108,61,61,116,124,124,116,62,101,46,108,101,110,103,116,104,41,38,38,40,116,61,101,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,111,61,110,101,119,32,65,114,114,97,121,40,116,41,59,110,60,116,59,110,43,43,41,111,91,110,93,61,101,91,110,93,59,114,101,116,117,114,110,32,111,125,102,117,110,99,116,105,111,110,32,87,101,40,101,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,112,114,111,112,115,61,101,44,116,104,105,115,46,100,97,116,97,61,123,105,115,73,110,105,116,105,97,108,105,122,101,100,58,33,49,44,105,115,70,117,108,108,121,82,101,110,100,101,114,101,100,58,33,49,44,109,97,120,83,111,117,114,99,101,87,105,100,116,104,58,48,44,109,97,120,83,111,117,114,99,101,72,101,105,103,104,116,58,48,44,115,99,114,111,108,108,98,97,114,87,105,100,116,104,58,48,44,116,111,111,108,98,97,114,66,117,116,116,111,110,115,58,121,44,115,108,105,100,101,66,117,116,116,111,110,115,58,95,44,99,97,112,116,105,111,110,72,101,105,103,104,116,115,58,91,93,44,110,111,116,84,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,83,99,97,108,101,115,58,91,93,44,110,111,116,84,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,108,97,116,101,115,89,58,91,93,44,116,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,108,97,116,101,89,58,110,117,108,108,44,122,111,111,109,58,49,125,44,116,104,105,115,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,61,123,105,115,80,111,105,110,116,101,114,105,110,103,58,33,49,44,100,111,119,110,67,108,105,101,110,116,88,58,110,117,108,108,44,100,111,119,110,67,108,105,101,110,116,89,58,110,117,108,108,44,105,115,83,111,117,114,99,101,68,111,119,110,69,118,101,110,116,84,97,114,103,101,116,58,33,49,44,105,115,77,111,118,101,67,97,108,108,70,105,114,115,116,58,33,49,44,115,119,105,112,101,100,88,58,48,44,115,119,105,112,101,100,89,58,48,44,117,112,83,119,105,112,101,100,88,58,48,44,117,112,83,119,105,112,101,100,89,58,48,44,112,105,110,99,104,101,100,72,121,112,111,116,58,48,125,44,116,104,105,115,46,115,116,97,103,101,73,110,100,101,120,101,115,61,123,99,117,114,114,101,110,116,58,48,125,44,116,104,105,115,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,61,123,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,58,123,125,44,115,101,116,83,108,105,100,101,78,117,109,98,101,114,58,110,117,108,108,44,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,77,97,110,97,103,101,114,58,123,125,44,104,105,100,101,83,111,117,114,99,101,76,111,97,100,101,114,67,111,108,108,101,99,116,105,111,110,58,91,93,44,117,112,100,97,116,101,83,111,117,114,99,101,68,105,114,101,99,116,87,114,97,112,112,101,114,67,111,108,108,101,99,116,105,111,110,58,91,93,44,115,104,111,119,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,73,102,78,111,116,89,101,116,58,110,117,108,108,44,104,105,100,101,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,58,110,117,108,108,44,115,116,97,114,116,83,108,105,100,101,115,104,111,119,58,110,117,108,108,44,115,116,111,112,83,108,105,100,101,115,104,111,119,58,110,117,108,108,125,44,116,104,105,115,46,101,108,101,109,101,110,116,115,61,123,99,97,112,116,105,111,110,115,58,91,93,44,99,111,110,116,97,105,110,101,114,58,110,117,108,108,44,110,97,118,58,110,117,108,108,44,115,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,58,110,117,108,108,44,115,108,105,100,101,115,104,111,119,66,97,114,58,110,117,108,108,44,115,111,117,114,99,101,65,110,105,109,97,116,105,111,110,87,114,97,112,112,101,114,115,58,91,93,44,115,111,117,114,99,101,67,111,109,112,111,110,101,110,116,115,58,91,93,44,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,58,91,93,44,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,58,91,93,44,115,111,117,114,99,101,115,58,91,93,125,44,116,104,105,115,46,99,111,108,108,101,99,116,105,111,110,115,61,123,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,58,91,93,44,115,111,117,114,99,101,76,111,97,100,72,97,110,100,108,101,114,115,58,91,93,44,115,111,117,114,99,101,83,105,122,101,114,115,58,91,93,44,120,104,114,115,58,91,93,125,44,116,104,105,115,46,99,111,114,101,61,123,99,108,97,115,115,70,97,99,97,100,101,58,123,125,44,99,108,105,99,107,90,111,111,109,101,114,58,123,125,44,101,118,101,110,116,115,68,105,115,112,97,116,99,104,101,114,58,123,125,44,102,117,108,108,115,99,114,101,101,110,84,111,103,103,108,101,114,58,123,125,44,103,108,111,98,97,108,69,118,101,110,116,115,67,111,110,116,114,111,108,108,101,114,58,123,125,44,105,110,97,99,116,105,118,101,114,58,123,125,44,108,105,103,104,116,98,111,120,67,108,111,115,101,114,58,123,125,44,108,105,103,104,116,98,111,120,79,112,101,110,101,114,58,123,125,44,108,105,103,104,116,98,111,120,79,112,101,110,65,99,116,105,111,110,101,114,58,123,125,44,108,105,103,104,116,98,111,120,85,112,100,97,116,101,114,58,123,125,44,115,99,114,111,108,108,98,97,114,82,101,99,111,109,112,101,110,115,111,114,58,123,125,44,115,108,105,100,101,115,104,111,119,77,97,110,97,103,101,114,58,123,125,44,115,108,105,100,101,67,104,97,110,103,101,70,97,99,97,100,101,58,123,125,44,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,58,123,125,44,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,84,114,97,110,115,102,111,114,109,101,114,58,123,125,44,115,111,117,114,99,101,68,105,115,112,108,97,121,70,97,99,97,100,101,58,123,125,44,115,111,117,114,99,101,115,80,111,105,110,116,101,114,68,111,119,110,58,123,125,44,115,116,97,103,101,77,97,110,97,103,101,114,58,123,125,44,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,58,123,125,44,119,105,110,100,111,119,82,101,115,105,122,101,65,99,116,105,111,110,101,114,58,123,125,44,122,111,111,109,101,114,58,123,125,125,44,116,104,105,115,46,103,101,116,81,117,101,117,101,100,65,99,116,105,111,110,61,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,111,61,91,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,111,46,112,117,115,104,40,33,48,41,44,116,46,116,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,111,46,112,111,112,40,41,44,111,46,108,101,110,103,116,104,124,124,101,40,41,125,41,44,110,41,125,125,44,116,104,105,115,46,109,105,100,100,108,101,119,97,114,101,61,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,69,40,101,44,110,44,91,116,93,41,125,44,116,104,105,115,46,114,101,115,111,108,118,101,61,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,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,91,93,59,114,101,116,117,114,110,32,110,46,117,110,115,104,105,102,116,40,116,41,44,121,101,40,101,44,122,101,40,110,41,41,125,44,116,104,105,115,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,101,41,123,119,105,110,100,111,119,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,101,108,101,109,101,110,116,115,46,99,111,110,116,97,105,110,101,114,46,99,117,114,114,101,110,116,38,38,101,40,41,125,41,41,125,44,116,104,105,115,46,116,105,109,101,111,117,116,61,102,117,110,99,116,105,111,110,40,101,44,110,41,123,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,101,108,101,109,101,110,116,115,46,99,111,110,116,97,105,110,101,114,38,38,101,40,41,125,41,44,110,41,125,44,66,40,116,104,105,115,41,44,73,101,40,116,104,105,115,41,125,118,97,114,32,66,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,116,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,110,97,118,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,110,97,118,92,34,125,44,91,116,40,92,34,84,111,111,108,98,97,114,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,116,104,105,115,46,95,118,40,92,34,32,92,34,41,44,116,104,105,115,46,104,97,115,77,111,114,101,84,104,97,110,83,111,117,114,99,101,63,116,40,92,34,83,108,105,100,101,78,117,109,98,101,114,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,58,116,104,105,115,46,95,101,40,41,93,44,49,41,125,59,66,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,70,101,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,92,34,125,44,91,101,46,95,108,40,101,46,99,117,115,116,111,109,84,111,111,108,98,97,114,66,117,116,116,111,110,115,44,40,102,117,110,99,116,105,111,110,40,116,44,111,41,123,114,101,116,117,114,110,32,101,46,99,117,115,116,111,109,84,111,111,108,98,97,114,66,117,116,116,111,110,115,63,110,40,92,34,79,110,101,83,116,97,116,101,66,117,116,116,111,110,92,34,44,123,107,101,121,58,111,44,97,116,116,114,115,58,123,92,34,98,117,116,116,111,110,45,100,97,116,97,92,34,58,116,44,92,34,111,110,45,99,108,105,99,107,92,34,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,111,110,67,108,105,99,107,40,101,46,102,115,76,105,103,104,116,98,111,120,41,125,125,125,41,58,101,46,95,101,40,41,125,41,41,44,101,46,95,118,40,92,34,32,92,34,41,44,101,46,100,105,115,97,98,108,101,84,104,117,109,98,115,63,101,46,95,101,40,41,58,110,40,92,34,79,110,101,83,116,97,116,101,66,117,116,116,111,110,92,34,44,123,97,116,116,114,115,58,123,92,34,98,117,116,116,111,110,45,100,97,116,97,92,34,58,101,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,68,97,116,97,46,116,104,117,109,98,115,44,92,34,111,110,45,99,108,105,99,107,92,34,58,101,46,116,111,103,103,108,101,84,104,117,109,98,115,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,79,110,101,83,116,97,116,101,66,117,116,116,111,110,92,34,44,123,97,116,116,114,115,58,123,92,34,98,117,116,116,111,110,45,100,97,116,97,92,34,58,101,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,68,97,116,97,46,122,111,111,109,73,110,44,92,34,111,110,45,99,108,105,99,107,92,34,58,101,46,122,111,111,109,73,110,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,79,110,101,83,116,97,116,101,66,117,116,116,111,110,92,34,44,123,97,116,116,114,115,58,123,92,34,98,117,116,116,111,110,45,100,97,116,97,92,34,58,101,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,68,97,116,97,46,122,111,111,109,79,117,116,44,92,34,111,110,45,99,108,105,99,107,92,34,58,101,46,122,111,111,109,79,117,116,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,83,108,105,100,101,115,104,111,119,66,117,116,116,111,110,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,101,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,70,117,108,108,115,99,114,101,101,110,66,117,116,116,111,110,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,101,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,79,110,101,83,116,97,116,101,66,117,116,116,111,110,92,34,44,123,97,116,116,114,115,58,123,92,34,98,117,116,116,111,110,45,100,97,116,97,92,34,58,101,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,68,97,116,97,46,99,108,111,115,101,44,92,34,111,110,45,99,108,105,99,107,92,34,58,101,46,99,108,111,115,101,76,105,103,104,116,98,111,120,125,125,41,93,44,50,41,125,59,70,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,77,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,41,40,92,34,84,111,111,108,98,97,114,66,117,116,116,111,110,92,34,44,123,97,116,116,114,115,58,123,92,34,111,110,45,99,108,105,99,107,92,34,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,92,34,111,110,67,108,105,99,107,92,34,41,44,92,34,118,105,101,119,45,98,111,120,92,34,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,92,34,118,105,101,119,66,111,120,92,34,41,44,119,105,100,116,104,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,92,34,119,105,100,116,104,92,34,41,44,104,101,105,103,104,116,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,92,34,104,101,105,103,104,116,92,34,41,44,100,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,92,34,100,92,34,41,44,116,105,116,108,101,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,92,34,116,105,116,108,101,92,34,41,125,125,41,125,59,77,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,78,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,116,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,32,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,92,34,44,97,116,116,114,115,58,123,116,105,116,108,101,58,116,104,105,115,46,116,105,116,108,101,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,67,108,105,99,107,125,125,44,91,116,40,92,34,83,118,103,101,114,92,34,44,123,97,116,116,114,115,58,123,92,34,118,105,101,119,45,98,111,120,92,34,58,116,104,105,115,46,118,105,101,119,66,111,120,44,119,105,100,116,104,58,116,104,105,115,46,119,105,100,116,104,44,104,101,105,103,104,116,58,116,104,105,115,46,104,101,105,103,104,116,44,100,58,116,104,105,115,46,100,125,125,41,93,44,49,41,125,59,78,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,79,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,116,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,40,92,34,115,118,103,92,34,44,123,97,116,116,114,115,58,123,119,105,100,116,104,58,116,104,105,115,46,119,105,100,116,104,44,104,101,105,103,104,116,58,116,104,105,115,46,104,101,105,103,104,116,44,118,105,101,119,66,111,120,58,116,104,105,115,46,118,105,101,119,66,111,120,44,120,109,108,110,115,58,92,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,92,34,125,125,44,91,116,40,92,34,112,97,116,104,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,115,118,103,45,112,97,116,104,92,34,44,97,116,116,114,115,58,123,100,58,116,104,105,115,46,100,125,125,41,93,41,125,59,102,117,110,99,116,105,111,110,32,80,101,40,101,44,116,44,110,44,111,44,105,44,114,44,115,44,97,41,123,118,97,114,32,117,44,99,61,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,101,63,101,46,111,112,116,105,111,110,115,58,101,59,105,102,40,116,38,38,40,99,46,114,101,110,100,101,114,61,116,44,99,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,61,110,44,99,46,95,99,111,109,112,105,108,101,100,61,33,48,41,44,111,38,38,40,99,46,102,117,110,99,116,105,111,110,97,108,61,33,48,41,44,114,38,38,40,99,46,95,115,99,111,112,101,73,100,61,92,34,100,97,116,97,45,118,45,92,34,43,114,41,44,115,63,40,117,61,102,117,110,99,116,105,111,110,40,101,41,123,40,101,61,101,124,124,116,104,105,115,46,36,118,110,111,100,101,38,38,116,104,105,115,46,36,118,110,111,100,101,46,115,115,114,67,111,110,116,101,120,116,124,124,116,104,105,115,46,112,97,114,101,110,116,38,38,116,104,105,115,46,112,97,114,101,110,116,46,36,118,110,111,100,101,38,38,116,104,105,115,46,112,97,114,101,110,116,46,36,118,110,111,100,101,46,115,115,114,67,111,110,116,101,120,116,41,124,124,92,34,117,110,100,101,102,105,110,101,100,92,34,61,61,116,121,112,101,111,102,32,95,95,86,85,69,95,83,83,82,95,67,79,78,84,69,88,84,95,95,124,124,40,101,61,95,95,86,85,69,95,83,83,82,95,67,79,78,84,69,88,84,95,95,41,44,105,38,38,105,46,99,97,108,108,40,116,104,105,115,44,101,41,44,101,38,38,101,46,95,114,101,103,105,115,116,101,114,101,100,67,111,109,112,111,110,101,110,116,115,38,38,101,46,95,114,101,103,105,115,116,101,114,101,100,67,111,109,112,111,110,101,110,116,115,46,97,100,100,40,115,41,125,44,99,46,95,115,115,114,82,101,103,105,115,116,101,114,61,117,41,58,105,38,38,40,117,61,97,63,102,117,110,99,116,105,111,110,40,41,123,105,46,99,97,108,108,40,116,104,105,115,44,40,99,46,102,117,110,99,116,105,111,110,97,108,63,116,104,105,115,46,112,97,114,101,110,116,58,116,104,105,115,41,46,36,114,111,111,116,46,36,111,112,116,105,111,110,115,46,115,104,97,100,111,119,82,111,111,116,41,125,58,105,41,44,117,41,105,102,40,99,46,102,117,110,99,116,105,111,110,97,108,41,123,99,46,95,105,110,106,101,99,116,83,116,121,108,101,115,61,117,59,118,97,114,32,108,61,99,46,114,101,110,100,101,114,59,99,46,114,101,110,100,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,117,46,99,97,108,108,40,116,41,44,108,40,101,44,116,41,125,125,101,108,115,101,123,118,97,114,32,104,61,99,46,98,101,102,111,114,101,67,114,101,97,116,101,59,99,46,98,101,102,111,114,101,67,114,101,97,116,101,61,104,63,91,93,46,99,111,110,99,97,116,40,104,44,117,41,58,91,117,93,125,114,101,116,117,114,110,123,101,120,112,111,114,116,115,58,101,44,111,112,116,105,111,110,115,58,99,125,125,79,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,107,101,61,80,101,40,123,112,114,111,112,115,58,123,119,105,100,116,104,58,83,116,114,105,110,103,44,104,101,105,103,104,116,58,83,116,114,105,110,103,44,118,105,101,119,66,111,120,58,83,116,114,105,110,103,44,100,58,83,116,114,105,110,103,125,125,44,79,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,107,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,104,101,108,112,101,114,115,47,83,118,103,101,114,46,118,117,101,92,34,59,118,97,114,32,68,101,61,107,101,46,101,120,112,111,114,116,115,44,72,101,61,80,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,83,118,103,101,114,58,68,101,125,44,112,114,111,112,115,58,123,111,110,67,108,105,99,107,58,70,117,110,99,116,105,111,110,44,119,105,100,116,104,58,83,116,114,105,110,103,44,104,101,105,103,104,116,58,83,116,114,105,110,103,44,118,105,101,119,66,111,120,58,83,116,114,105,110,103,44,100,58,83,116,114,105,110,103,44,116,105,116,108,101,58,83,116,114,105,110,103,125,125,44,78,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,72,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,116,111,111,108,98,97,114,47,84,111,111,108,98,97,114,66,117,116,116,111,110,46,118,117,101,92,34,59,118,97,114,32,36,101,61,72,101,46,101,120,112,111,114,116,115,59,102,117,110,99,116,105,111,110,32,82,101,40,101,44,116,41,123,114,101,116,117,114,110,123,111,110,67,108,105,99,107,58,116,44,118,105,101,119,66,111,120,58,101,46,118,105,101,119,66,111,120,44,119,105,100,116,104,58,101,46,119,105,100,116,104,44,104,101,105,103,104,116,58,101,46,104,101,105,103,104,116,44,100,58,101,46,100,44,116,105,116,108,101,58,101,46,116,105,116,108,101,125,125,118,97,114,32,85,101,61,80,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,84,111,111,108,98,97,114,66,117,116,116,111,110,58,36,101,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,58,33,49,125,125,44,109,101,116,104,111,100,115,58,123,103,101,116,66,117,116,116,111,110,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,110,61,116,46,99,111,114,101,46,102,117,108,108,115,99,114,101,101,110,84,111,103,103,108,101,114,44,111,61,110,46,101,120,105,116,70,117,108,108,115,99,114,101,101,110,44,105,61,110,46,101,110,116,101,114,70,117,108,108,115,99,114,101,101,110,44,114,61,116,46,100,97,116,97,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,46,102,117,108,108,115,99,114,101,101,110,44,115,61,114,46,101,110,116,101,114,44,97,61,114,46,101,120,105,116,59,114,101,116,117,114,110,40,116,104,105,115,46,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,63,82,101,40,97,44,111,41,58,82,101,40,115,44,105,41,41,91,101,93,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,77,97,110,97,103,101,114,59,116,46,103,101,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,125,44,116,46,115,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,61,116,125,125,125,44,77,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,85,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,116,111,111,108,98,97,114,47,116,111,111,108,98,97,114,45,98,117,116,116,111,110,115,47,70,117,108,108,115,99,114,101,101,110,66,117,116,116,111,110,46,118,117,101,92,34,59,118,97,114,32,89,101,61,85,101,46,101,120,112,111,114,116,115,44,88,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,41,40,92,34,84,111,111,108,98,97,114,66,117,116,116,111,110,92,34,44,123,97,116,116,114,115,58,123,92,34,111,110,45,99,108,105,99,107,92,34,58,116,104,105,115,46,111,110,67,108,105,99,107,44,92,34,118,105,101,119,45,98,111,120,92,34,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,118,105,101,119,66,111,120,44,119,105,100,116,104,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,119,105,100,116,104,44,104,101,105,103,104,116,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,104,101,105,103,104,116,44,100,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,100,44,116,105,116,108,101,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,116,105,116,108,101,125,125,41,125,59,88,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,106,101,61,80,101,40,123,112,114,111,112,115,58,123,98,117,116,116,111,110,68,97,116,97,58,79,98,106,101,99,116,44,111,110,67,108,105,99,107,58,70,117,110,99,116,105,111,110,125,44,99,111,109,112,111,110,101,110,116,115,58,123,84,111,111,108,98,97,114,66,117,116,116,111,110,58,36,101,125,125,44,88,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,106,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,116,111,111,108,98,97,114,47,116,111,111,108,98,97,114,45,98,117,116,116,111,110,115,47,79,110,101,83,116,97,116,101,66,117,116,116,111,110,46,118,117,101,92,34,59,118,97,114,32,90,101,61,106,101,46,101,120,112,111,114,116,115,44,86,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,41,40,92,34,84,111,111,108,98,97,114,66,117,116,116,111,110,92,34,44,123,97,116,116,114,115,58,123,92,34,111,110,45,99,108,105,99,107,92,34,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,92,34,111,110,67,108,105,99,107,92,34,41,44,92,34,118,105,101,119,45,98,111,120,92,34,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,92,34,118,105,101,119,66,111,120,92,34,41,44,119,105,100,116,104,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,92,34,119,105,100,116,104,92,34,41,44,104,101,105,103,104,116,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,92,34,104,101,105,103,104,116,92,34,41,44,100,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,92,34,100,92,34,41,44,116,105,116,108,101,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,92,34,116,105,116,108,101,92,34,41,125,125,41,125,59,86,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,113,101,61,80,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,84,111,111,108,98,97,114,66,117,116,116,111,110,58,36,101,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,83,108,105,100,101,115,104,111,119,79,110,58,33,49,125,125,44,109,101,116,104,111,100,115,58,123,103,101,116,66,117,116,116,111,110,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,110,61,116,46,99,111,114,101,46,115,108,105,100,101,115,104,111,119,77,97,110,97,103,101,114,46,116,111,103,103,108,101,83,108,105,100,101,115,104,111,119,44,111,61,116,46,100,97,116,97,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,46,115,108,105,100,101,115,104,111,119,44,105,61,111,46,115,116,97,114,116,44,114,61,111,46,112,97,117,115,101,59,114,101,116,117,114,110,40,116,104,105,115,46,105,115,83,108,105,100,101,115,104,111,119,79,110,63,82,101,40,114,44,110,41,58,82,101,40,105,44,110,41,41,91,101,93,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,59,116,46,115,116,97,114,116,83,108,105,100,101,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,105,115,83,108,105,100,101,115,104,111,119,79,110,61,33,48,125,44,116,46,115,116,111,112,83,108,105,100,101,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,105,115,83,108,105,100,101,115,104,111,119,79,110,61,33,49,125,125,125,44,86,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,113,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,116,111,111,108,98,97,114,47,116,111,111,108,98,97,114,45,98,117,116,116,111,110,115,47,83,108,105,100,101,115,104,111,119,66,117,116,116,111,110,46,118,117,101,92,34,59,118,97,114,32,81,101,61,80,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,83,108,105,100,101,115,104,111,119,66,117,116,116,111,110,58,113,101,46,101,120,112,111,114,116,115,44,79,110,101,83,116,97,116,101,66,117,116,116,111,110,58,90,101,44,70,117,108,108,115,99,114,101,101,110,66,117,116,116,111,110,58,89,101,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,116,61,101,46,99,111,114,101,44,110,61,116,46,99,108,105,99,107,90,111,111,109,101,114,44,111,61,110,46,122,111,111,109,73,110,44,105,61,110,46,122,111,111,109,79,117,116,44,114,61,116,46,108,105,103,104,116,98,111,120,67,108,111,115,101,114,46,99,108,111,115,101,76,105,103,104,116,98,111,120,44,115,61,101,46,100,97,116,97,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,44,97,61,101,46,112,114,111,112,115,44,117,61,97,46,100,105,115,97,98,108,101,84,104,117,109,98,115,44,99,61,97,46,99,117,115,116,111,109,84,111,111,108,98,97,114,66,117,116,116,111,110,115,44,108,61,123,102,115,76,105,103,104,116,98,111,120,58,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,116,111,111,108,98,97,114,66,117,116,116,111,110,115,68,97,116,97,58,115,44,99,117,115,116,111,109,84,111,111,108,98,97,114,66,117,116,116,111,110,115,58,99,44,99,108,111,115,101,76,105,103,104,116,98,111,120,58,114,44,122,111,111,109,73,110,58,111,44,122,111,111,109,79,117,116,58,105,44,100,105,115,97,98,108,101,84,104,117,109,98,115,58,117,125,59,114,101,116,117,114,110,32,117,124,124,40,108,46,116,111,103,103,108,101,84,104,117,109,98,115,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,114,101,46,116,104,117,109,98,115,84,111,103,103,108,101,114,46,116,111,103,103,108,101,84,104,117,109,98,115,41,44,108,125,125,44,70,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,81,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,116,111,111,108,98,97,114,47,84,111,111,108,98,97,114,46,118,117,101,92,34,59,118,97,114,32,74,101,61,81,101,46,101,120,112,111,114,116,115,44,71,101,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,115,111,117,114,99,101,45,110,117,109,98,101,114,45,111,117,116,101,114,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,110,117,109,98,101,114,45,99,111,110,116,97,105,110,101,114,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,115,111,117,114,99,101,45,110,117,109,98,101,114,45,105,110,110,101,114,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,92,34,125,44,91,110,40,92,34,115,112,97,110,92,34,44,123,97,116,116,114,115,58,123,92,34,100,97,116,97,45,116,101,115,116,45,105,100,92,34,58,92,34,115,108,105,100,101,45,110,117,109,98,101,114,92,34,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,115,108,105,100,101,41,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,115,112,97,110,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,115,108,97,115,104,92,34,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,115,112,97,110,92,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,115,111,117,114,99,101,115,67,111,117,110,116,41,41,93,41,93,41,93,41,125,59,71,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,75,101,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,115,108,105,100,101,58,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,115,116,97,103,101,73,110,100,101,120,101,115,46,99,117,114,114,101,110,116,43,49,44,115,111,117,114,99,101,115,67,111,117,110,116,58,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,112,114,111,112,115,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,115,101,116,83,108,105,100,101,78,117,109,98,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,115,108,105,100,101,61,116,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,114,101,102,115,91,92,34,115,111,117,114,99,101,45,110,117,109,98,101,114,45,105,110,110,101,114,92,34,93,46,111,102,102,115,101,116,87,105,100,116,104,62,53,53,38,38,40,116,104,105,115,46,36,114,101,102,115,91,92,34,115,111,117,114,99,101,45,110,117,109,98,101,114,45,111,117,116,101,114,92,34,93,46,115,116,121,108,101,46,106,117,115,116,105,102,121,67,111,110,116,101,110,116,61,92,34,102,108,101,120,45,115,116,97,114,116,92,34,41,125,125,44,71,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,75,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,83,108,105,100,101,78,117,109,98,101,114,46,118,117,101,92,34,59,118,97,114,32,101,116,61,80,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,83,108,105,100,101,78,117,109,98,101,114,58,75,101,46,101,120,112,111,114,116,115,44,84,111,111,108,98,97,114,58,74,101,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,104,97,115,77,111,114,101,84,104,97,110,83,111,117,114,99,101,58,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,112,114,111,112,115,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,62,49,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,110,97,118,61,116,104,105,115,46,36,114,101,102,115,46,110,97,118,125,125,44,66,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,101,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,78,97,118,101,114,46,118,117,101,92,34,59,118,97,114,32,116,116,61,101,116,46,101,120,112,111,114,116,115,44,110,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,114,101,102,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,115,111,117,114,99,101,45,119,114,97,112,112,101,114,115,45,99,111,110,116,97,105,110,101,114,32,102,115,108,105,103,104,116,98,111,120,45,97,98,115,111,108,117,116,101,100,32,102,115,108,105,103,104,116,98,111,120,45,102,117,108,108,45,100,105,109,101,110,115,105,111,110,92,34,44,97,116,116,114,115,58,123,92,34,100,97,116,97,45,116,101,115,116,45,105,100,92,34,58,92,34,115,111,117,114,99,101,45,119,114,97,112,112,101,114,115,45,99,111,110,116,97,105,110,101,114,92,34,125,125,44,101,46,95,108,40,101,46,115,111,117,114,99,101,115,76,101,110,103,116,104,44,40,102,117,110,99,116,105,111,110,40,116,44,111,41,123,114,101,116,117,114,110,32,110,40,92,34,83,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,92,34,44,123,107,101,121,58,111,44,97,116,116,114,115,58,123,105,58,111,44,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,101,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,125,41,41,44,49,41,125,59,110,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,116,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,114,101,102,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,97,98,115,111,108,117,116,101,100,32,102,115,108,105,103,104,116,98,111,120,45,102,117,108,108,45,100,105,109,101,110,115,105,111,110,32,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,92,34,44,97,116,116,114,115,58,123,92,34,100,97,116,97,45,116,101,115,116,45,99,108,97,115,115,92,34,58,92,34,115,111,117,114,99,101,45,109,97,105,110,45,119,114,97,112,112,101,114,92,34,125,125,44,91,116,40,92,34,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,44,105,58,116,104,105,115,46,105,125,125,41,44,116,104,105,115,46,95,118,40,92,34,32,92,34,41,44,116,104,105,115,46,105,115,83,111,117,114,99,101,76,111,97,100,101,100,63,116,104,105,115,46,95,101,40,41,58,116,40,92,34,76,111,97,100,101,114,92,34,41,93,44,49,41,125,59,111,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,105,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,116,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,114,101,102,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,116,114,97,110,115,102,111,114,109,45,116,114,97,110,115,105,116,105,111,110,92,34,44,97,116,116,114,115,58,123,92,34,100,97,116,97,45,116,101,115,116,45,99,108,97,115,115,92,34,58,92,34,115,111,117,114,99,101,45,101,110,104,97,110,99,101,109,101,110,116,45,119,114,97,112,112,101,114,92,34,125,125,44,91,116,40,92,34,115,111,117,114,99,101,45,97,110,105,109,97,116,105,111,110,45,119,114,97,112,112,101,114,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,44,105,58,116,104,105,115,46,105,125,125,41,93,44,49,41,125,59,105,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,114,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,116,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,114,101,102,92,34,125,44,91,116,104,105,115,46,115,111,117,114,99,101,67,111,109,112,111,110,101,110,116,38,38,116,104,105,115,46,115,104,111,117,108,100,83,111,117,114,99,101,66,101,82,101,110,100,101,114,101,100,63,116,40,116,104,105,115,46,115,111,117,114,99,101,67,111,109,112,111,110,101,110,116,44,123,116,97,103,58,92,34,99,111,109,112,111,110,101,110,116,92,34,44,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,44,105,58,116,104,105,115,46,105,125,125,41,58,116,104,105,115,46,95,101,40,41,93,44,49,41,125,59,114,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,115,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,41,40,92,34,105,109,103,92,34,44,116,104,105,115,46,95,98,40,123,114,101,102,58,92,34,114,101,102,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,115,111,117,114,99,101,92,34,44,97,116,116,114,115,58,123,115,114,99,58,116,104,105,115,46,115,114,99,125,44,111,110,58,123,108,111,97,100,58,116,104,105,115,46,111,110,76,111,97,100,125,125,44,92,34,105,109,103,92,34,44,116,104,105,115,46,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,44,33,49,41,41,125,59,115,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,97,116,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,116,61,101,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,76,111,97,100,72,97,110,100,108,101,114,115,44,110,61,101,46,112,114,111,112,115,44,111,61,110,46,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,44,105,61,110,46,115,111,117,114,99,101,115,59,114,101,116,117,114,110,123,111,110,76,111,97,100,58,116,91,116,104,105,115,46,105,93,46,104,97,110,100,108,101,73,109,97,103,101,76,111,97,100,44,115,114,99,58,105,91,116,104,105,115,46,105,93,44,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,58,111,38,38,111,91,116,104,105,115,46,105,93,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,115,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,125,44,115,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,97,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,112,114,111,112,101,114,45,115,111,117,114,99,101,115,47,73,109,97,103,101,114,46,118,117,101,92,34,59,118,97,114,32,117,116,61,97,116,46,101,120,112,111,114,116,115,44,99,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,116,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,40,92,34,118,105,100,101,111,92,34,44,116,104,105,115,46,95,98,40,123,114,101,102,58,92,34,114,101,102,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,115,111,117,114,99,101,32,102,115,108,105,103,104,116,98,111,120,45,118,105,100,101,111,92,34,44,97,116,116,114,115,58,123,99,111,110,116,114,111,108,115,58,92,34,92,34,125,44,111,110,58,123,108,111,97,100,101,100,109,101,116,97,100,97,116,97,58,116,104,105,115,46,111,110,76,111,97,100,125,125,44,92,34,118,105,100,101,111,92,34,44,116,104,105,115,46,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,44,33,49,41,44,91,116,40,92,34,115,111,117,114,99,101,92,34,44,123,97,116,116,114,115,58,123,115,114,99,58,116,104,105,115,46,115,114,99,125,125,41,93,41,125,59,99,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,108,116,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,116,61,101,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,76,111,97,100,72,97,110,100,108,101,114,115,44,110,61,101,46,112,114,111,112,115,44,111,61,110,46,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,44,105,61,110,46,115,111,117,114,99,101,115,59,114,101,116,117,114,110,123,111,110,76,111,97,100,58,116,91,116,104,105,115,46,105,93,46,104,97,110,100,108,101,86,105,100,101,111,76,111,97,100,44,115,114,99,58,105,91,116,104,105,115,46,105,93,44,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,58,111,38,38,111,91,116,104,105,115,46,105,93,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,115,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,125,44,99,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,108,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,112,114,111,112,101,114,45,115,111,117,114,99,101,115,47,86,105,100,101,111,114,46,118,117,101,92,34,59,118,97,114,32,104,116,61,108,116,46,101,120,112,111,114,116,115,44,100,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,41,40,92,34,105,102,114,97,109,101,92,34,44,116,104,105,115,46,95,98,40,123,114,101,102,58,92,34,114,101,102,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,115,111,117,114,99,101,32,102,115,108,105,103,104,116,98,111,120,45,121,111,117,116,117,98,101,45,105,102,114,97,109,101,92,34,44,97,116,116,114,115,58,123,115,114,99,58,116,104,105,115,46,115,114,99,44,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,58,92,34,92,34,125,125,44,92,34,105,102,114,97,109,101,92,34,44,116,104,105,115,46,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,44,33,49,41,41,125,59,100,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,112,116,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,112,114,111,112,115,44,110,61,116,46,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,44,111,61,116,46,115,111,117,114,99,101,115,59,114,101,116,117,114,110,123,115,114,99,58,92,34,104,116,116,112,115,58,47,47,119,119,119,46,121,111,117,116,117,98,101,46,99,111,109,47,101,109,98,101,100,47,92,34,46,99,111,110,99,97,116,40,40,101,61,111,91,116,104,105,115,46,105,93,44,101,46,109,97,116,99,104,40,47,94,46,42,40,121,111,117,116,117,46,98,101,92,92,47,124,118,92,92,47,124,117,92,92,47,92,92,119,92,92,47,124,101,109,98,101,100,92,92,47,124,119,97,116,99,104,92,92,63,118,61,124,92,92,38,118,61,41,40,91,94,35,92,92,38,92,92,63,93,42,41,46,42,47,41,91,50,93,41,41,44,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,58,110,38,38,110,91,116,104,105,115,46,105,93,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,116,61,101,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,76,111,97,100,72,97,110,100,108,101,114,115,59,101,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,115,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,44,116,91,116,104,105,115,46,105,93,46,104,97,110,100,108,101,89,111,117,116,117,98,101,76,111,97,100,40,41,125,125,44,100,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,112,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,112,114,111,112,101,114,45,115,111,117,114,99,101,115,47,89,111,117,116,117,98,101,114,46,118,117,101,92,34,59,118,97,114,32,102,116,61,112,116,46,101,120,112,111,114,116,115,44,109,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,41,40,116,104,105,115,46,99,111,109,112,111,110,101,110,116,44,116,104,105,115,46,95,98,40,123,114,101,102,58,92,34,114,101,102,92,34,44,116,97,103,58,92,34,99,111,109,112,111,110,101,110,116,92,34,125,44,92,34,99,111,109,112,111,110,101,110,116,92,34,44,116,104,105,115,46,99,111,109,112,111,110,101,110,116,80,114,111,112,115,44,33,49,41,41,125,59,102,117,110,99,116,105,111,110,32,98,116,40,101,41,123,118,97,114,32,116,61,123,99,111,109,112,111,110,101,110,116,58,101,44,99,111,109,112,111,110,101,110,116,80,114,111,112,115,58,123,125,125,59,114,101,116,117,114,110,32,101,46,99,111,109,112,111,110,101,110,116,38,38,40,116,46,99,111,109,112,111,110,101,110,116,61,101,46,99,111,109,112,111,110,101,110,116,44,116,46,99,111,109,112,111,110,101,110,116,80,114,111,112,115,61,101,46,112,114,111,112,115,41,44,116,125,109,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,103,116,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,98,116,40,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,112,114,111,112,115,46,115,111,117,114,99,101,115,91,116,104,105,115,46,105,93,41,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,116,61,101,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,76,111,97,100,72,97,110,100,108,101,114,115,44,110,61,101,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,115,59,110,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,46,36,101,108,44,110,91,116,104,105,115,46,105,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,120,41,44,116,91,116,104,105,115,46,105,93,46,104,97,110,100,108,101,67,117,115,116,111,109,76,111,97,100,40,41,125,125,44,109,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,103,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,112,114,111,112,101,114,45,115,111,117,114,99,101,115,47,67,117,115,116,111,109,101,114,46,118,117,101,92,34,59,118,97,114,32,120,116,61,103,116,46,101,120,112,111,114,116,115,44,118,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,41,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,105,110,118,97,108,105,100,45,102,105,108,101,45,119,114,97,112,112,101,114,32,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,92,34,125,44,91,116,104,105,115,46,95,118,40,92,34,92,92,110,32,32,32,32,73,110,118,97,108,105,100,32,115,111,117,114,99,101,92,92,110,92,34,41,93,41,125,59,118,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,83,116,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,116,61,101,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,104,105,100,101,83,111,117,114,99,101,76,111,97,100,101,114,67,111,108,108,101,99,116,105,111,110,44,110,61,101,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,59,116,91,116,104,105,115,46,105,93,40,41,44,110,91,116,104,105,115,46,105,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,100,41,125,125,44,118,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,83,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,112,114,111,112,101,114,45,115,111,117,114,99,101,115,47,73,110,118,97,108,105,100,101,114,46,118,117,101,92,34,59,118,97,114,32,119,116,61,83,116,46,101,120,112,111,114,116,115,44,76,116,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,99,111,109,112,111,110,101,110,116,115,58,123,73,109,97,103,101,114,58,117,116,44,86,105,100,101,111,114,58,104,116,44,89,111,117,116,117,98,101,114,58,102,116,44,67,117,115,116,111,109,101,114,58,120,116,44,73,110,118,97,108,105,100,101,114,58,119,116,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,123,125,59,114,101,116,117,114,110,32,116,104,105,115,46,97,116,116,97,99,104,67,111,109,112,111,110,101,110,116,68,97,116,97,84,111,79,98,106,101,99,116,40,101,41,44,101,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,117,112,100,97,116,101,83,111,117,114,99,101,68,105,114,101,99,116,87,114,97,112,112,101,114,67,111,108,108,101,99,116,105,111,110,91,116,104,105,115,46,105,93,61,102,117,110,99,116,105,111,110,40,41,123,101,46,97,116,116,97,99,104,67,111,109,112,111,110,101,110,116,68,97,116,97,84,111,79,98,106,101,99,116,40,101,41,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,65,110,105,109,97,116,105,111,110,87,114,97,112,112,101,114,115,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,44,109,101,116,104,111,100,115,58,123,97,116,116,97,99,104,67,111,109,112,111,110,101,110,116,68,97,116,97,84,111,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,110,61,116,46,99,111,114,101,46,115,116,97,103,101,77,97,110,97,103,101,114,44,111,61,116,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,67,111,109,112,111,110,101,110,116,115,44,105,61,116,46,112,114,111,112,115,46,108,111,97,100,79,110,108,121,67,117,114,114,101,110,116,83,111,117,114,99,101,44,114,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,59,101,46,115,111,117,114,99,101,67,111,109,112,111,110,101,110,116,61,111,91,116,104,105,115,46,105,93,44,101,46,115,104,111,117,108,100,83,111,117,114,99,101,66,101,82,101,110,100,101,114,101,100,61,116,104,105,115,46,105,61,61,61,114,46,99,117,114,114,101,110,116,124,124,33,105,38,38,110,46,105,115,83,111,117,114,99,101,73,110,83,116,97,103,101,40,116,104,105,115,46,105,41,125,125,125,44,114,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,76,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,83,111,117,114,99,101,65,110,105,109,97,116,105,111,110,87,114,97,112,112,101,114,46,118,117,101,92,34,59,118,97,114,32,84,116,61,76,116,46,101,120,112,111,114,116,115,44,67,116,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,99,111,109,112,111,110,101,110,116,115,58,123,83,111,117,114,99,101,65,110,105,109,97,116,105,111,110,87,114,97,112,112,101,114,58,84,116,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,125,44,105,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,67,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,46,118,117,101,92,34,59,118,97,114,32,73,116,61,67,116,46,101,120,112,111,114,116,115,44,121,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,116,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,40,92,34,100,105,118,92,34,44,123,99,108,97,115,115,58,116,104,105,115,46,99,108,97,115,115,78,97,109,101,44,97,116,116,114,115,58,123,92,34,100,97,116,97,45,116,101,115,116,45,105,100,92,34,58,116,104,105,115,46,116,101,115,116,73,100,125,125,44,91,116,40,92,34,100,105,118,92,34,41,44,116,104,105,115,46,95,118,40,92,34,32,92,34,41,44,116,40,92,34,100,105,118,92,34,41,44,116,104,105,115,46,95,118,40,92,34,32,92,34,41,44,116,40,92,34,100,105,118,92,34,41,44,116,104,105,115,46,95,118,40,92,34,32,92,34,41,44,116,40,92,34,100,105,118,92,34,41,93,41,125,59,121,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,95,116,61,80,101,40,123,112,114,111,112,115,58,123,97,100,100,105,116,105,111,110,97,108,67,108,97,115,115,78,97,109,101,58,83,116,114,105,110,103,44,116,101,115,116,73,100,58,83,116,114,105,110,103,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,92,34,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,92,34,59,114,101,116,117,114,110,32,116,104,105,115,46,97,100,100,105,116,105,111,110,97,108,67,108,97,115,115,78,97,109,101,38,38,40,101,43,61,92,34,32,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,97,100,100,105,116,105,111,110,97,108,67,108,97,115,115,78,97,109,101,41,41,44,123,99,108,97,115,115,78,97,109,101,58,101,125,125,125,44,121,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,95,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,104,101,108,112,101,114,115,47,76,111,97,100,101,114,46,118,117,101,92,34,59,118,97,114,32,65,116,61,95,116,46,101,120,112,111,114,116,115,44,122,116,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,99,111,109,112,111,110,101,110,116,115,58,123,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,58,73,116,44,76,111,97,100,101,114,58,65,116,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,83,111,117,114,99,101,76,111,97,100,101,100,58,33,49,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,104,105,100,101,83,111,117,114,99,101,76,111,97,100,101,114,67,111,108,108,101,99,116,105,111,110,91,116,104,105,115,46,105,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,105,115,83,111,117,114,99,101,76,111,97,100,101,100,61,33,48,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,125,44,111,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,122,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,83,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,46,118,117,101,92,34,59,118,97,114,32,69,116,61,122,116,46,101,120,112,111,114,116,115,59,102,117,110,99,116,105,111,110,32,87,116,40,41,123,116,104,105,115,46,103,101,116,77,111,117,115,101,68,111,119,110,76,105,115,116,101,110,101,114,70,117,110,99,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,101,40,41,63,118,111,105,100,32,48,58,69,40,101,44,116,101,41,125,44,116,104,105,115,46,103,101,116,84,111,117,99,104,83,116,97,114,116,76,105,115,116,101,110,101,114,70,111,114,70,117,110,99,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,101,40,41,63,69,40,101,44,116,101,41,58,118,111,105,100,32,48,125,125,118,97,114,32,66,116,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,99,111,109,112,111,110,101,110,116,115,58,123,83,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,58,69,116,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,115,111,117,114,99,101,115,76,101,110,103,116,104,58,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,112,114,111,112,115,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,116,61,101,46,99,111,114,101,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,68,111,119,110,46,108,105,115,116,101,110,101,114,59,101,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,59,118,97,114,32,110,61,110,101,119,32,87,116,59,116,104,105,115,46,36,114,101,102,115,46,114,101,102,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,100,111,119,110,92,34,44,110,46,103,101,116,77,111,117,115,101,68,111,119,110,76,105,115,116,101,110,101,114,70,117,110,99,40,116,41,41,44,116,104,105,115,46,36,114,101,102,115,46,114,101,102,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,116,111,117,99,104,115,116,97,114,116,92,34,44,110,46,103,101,116,84,111,117,99,104,83,116,97,114,116,76,105,115,116,101,110,101,114,70,111,114,70,117,110,99,40,116,41,41,125,125,44,110,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,66,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,83,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,46,118,117,101,92,34,59,118,97,114,32,70,116,61,66,116,46,101,120,112,111,114,116,115,44,77,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,115,76,101,110,103,116,104,62,49,63,110,40,92,34,100,105,118,92,34,44,91,110,40,92,34,83,108,105,100,101,66,117,116,116,111,110,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,101,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,44,92,34,111,110,45,99,108,105,99,107,92,34,58,101,46,99,104,97,110,103,101,84,111,80,114,101,118,105,111,117,115,44,92,34,98,117,116,116,111,110,45,100,97,116,97,92,34,58,101,46,112,114,101,118,105,111,117,115,66,117,116,116,111,110,68,97,116,97,44,110,97,109,101,58,92,34,112,114,101,118,105,111,117,115,92,34,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,83,108,105,100,101,66,117,116,116,111,110,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,101,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,44,92,34,111,110,45,99,108,105,99,107,92,34,58,101,46,99,104,97,110,103,101,84,111,78,101,120,116,44,92,34,98,117,116,116,111,110,45,100,97,116,97,92,34,58,101,46,110,101,120,116,66,117,116,116,111,110,68,97,116,97,44,110,97,109,101,58,92,34,110,101,120,116,92,34,125,125,41,93,44,49,41,58,101,46,95,101,40,41,125,59,77,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,78,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,116,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,114,101,102,92,34,44,99,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,32,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,45,92,34,43,116,104,105,115,46,110,97,109,101,44,97,116,116,114,115,58,123,116,105,116,108,101,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,116,105,116,108,101,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,67,108,105,99,107,125,125,44,91,116,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,32,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,92,34,125,44,91,116,40,92,34,83,118,103,101,114,92,34,44,123,97,116,116,114,115,58,123,92,34,118,105,101,119,45,98,111,120,92,34,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,118,105,101,119,66,111,120,44,119,105,100,116,104,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,119,105,100,116,104,44,104,101,105,103,104,116,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,104,101,105,103,104,116,44,100,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,100,125,125,41,93,44,49,41,93,41,125,59,78,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,79,116,61,80,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,83,118,103,101,114,58,68,101,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,111,110,67,108,105,99,107,58,70,117,110,99,116,105,111,110,44,98,117,116,116,111,110,68,97,116,97,58,79,98,106,101,99,116,44,110,97,109,101,58,83,116,114,105,110,103,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,91,92,34,115,108,105,100,101,66,117,116,116,111,110,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,110,97,109,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,46,115,117,98,115,116,114,40,48,44,49,41,43,116,104,105,115,46,110,97,109,101,46,115,117,98,115,116,114,40,49,41,41,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,125,44,78,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,79,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,108,105,100,101,66,117,116,116,111,110,46,118,117,101,92,34,59,118,97,114,32,80,116,61,79,116,46,101,120,112,111,114,116,115,44,107,116,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,99,111,109,112,111,110,101,110,116,115,58,123,83,108,105,100,101,66,117,116,116,111,110,58,80,116,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,116,61,101,46,99,111,114,101,46,115,108,105,100,101,67,104,97,110,103,101,70,97,99,97,100,101,44,110,61,116,46,99,104,97,110,103,101,84,111,80,114,101,118,105,111,117,115,44,111,61,116,46,99,104,97,110,103,101,84,111,78,101,120,116,44,105,61,101,46,100,97,116,97,46,115,108,105,100,101,66,117,116,116,111,110,115,44,114,61,105,46,112,114,101,118,105,111,117,115,44,115,61,105,46,110,101,120,116,59,114,101,116,117,114,110,123,115,111,117,114,99,101,115,76,101,110,103,116,104,58,101,46,112,114,111,112,115,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,44,99,104,97,110,103,101,84,111,80,114,101,118,105,111,117,115,58,110,44,99,104,97,110,103,101,84,111,78,101,120,116,58,111,44,112,114,101,118,105,111,117,115,66,117,116,116,111,110,68,97,116,97,58,114,44,110,101,120,116,66,117,116,116,111,110,68,97,116,97,58,115,125,125,125,44,77,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,107,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,108,105,100,101,66,117,116,116,111,110,115,46,118,117,101,92,34,59,118,97,114,32,68,116,61,107,116,46,101,120,112,111,114,116,115,44,72,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,116,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,83,104,111,119,110,63,116,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,115,119,105,112,105,110,103,45,104,111,118,101,114,101,114,32,102,115,108,105,103,104,116,98,111,120,45,102,117,108,108,45,100,105,109,101,110,115,105,111,110,32,102,115,108,105,103,104,116,98,111,120,45,97,98,115,111,108,117,116,101,100,92,34,125,41,58,116,104,105,115,46,95,101,40,41,125,59,72,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,36,116,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,83,104,111,119,110,58,33,49,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,59,116,46,115,104,111,119,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,73,102,78,111,116,89,101,116,61,102,117,110,99,116,105,111,110,40,41,123,101,46,105,115,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,83,104,111,119,110,124,124,40,101,46,105,115,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,83,104,111,119,110,61,33,48,41,125,44,116,46,104,105,100,101,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,61,102,117,110,99,116,105,111,110,40,41,123,101,46,105,115,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,83,104,111,119,110,61,33,49,125,125,125,44,72,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,36,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,46,118,117,101,92,34,59,118,97,114,32,82,116,61,36,116,46,101,120,112,111,114,116,115,44,85,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,41,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,114,101,102,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,115,104,111,119,45,98,97,114,32,102,115,108,105,103,104,116,98,111,120,45,97,98,115,111,108,117,116,101,100,92,34,125,41,125,59,85,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,89,116,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,115,108,105,100,101,115,104,111,119,66,97,114,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,125,44,85,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,89,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,108,105,100,101,115,104,111,119,66,97,114,46,118,117,101,92,34,59,118,97,114,32,88,116,61,89,116,46,101,120,112,111,114,116,115,59,102,117,110,99,116,105,111,110,32,106,116,40,101,41,123,118,97,114,32,116,61,101,46,112,114,111,112,115,46,100,105,115,97,98,108,101,76,111,99,97,108,83,116,111,114,97,103,101,59,105,102,40,33,116,41,123,118,97,114,32,110,61,108,111,99,97,108,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,92,34,102,115,108,105,103,104,116,98,111,120,45,115,99,114,111,108,108,98,97,114,45,119,105,100,116,104,92,34,41,59,105,102,40,110,41,114,101,116,117,114,110,32,110,125,118,97,114,32,111,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,92,34,100,105,118,92,34,41,44,116,61,101,46,115,116,121,108,101,59,114,101,116,117,114,110,32,116,46,118,105,115,105,98,105,108,105,116,121,61,92,34,104,105,100,100,101,110,92,34,44,116,46,119,105,100,116,104,61,92,34,49,48,48,112,120,92,34,44,116,46,109,115,79,118,101,114,102,108,111,119,83,116,121,108,101,61,92,34,115,99,114,111,108,108,98,97,114,92,34,44,116,46,111,118,101,114,102,108,111,119,61,92,34,115,99,114,111,108,108,92,34,44,101,125,40,41,44,105,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,92,34,100,105,118,92,34,41,59,114,101,116,117,114,110,32,101,46,115,116,121,108,101,46,119,105,100,116,104,61,92,34,49,48,48,37,92,34,44,101,125,40,41,59,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,111,41,59,118,97,114,32,114,61,111,46,111,102,102,115,101,116,87,105,100,116,104,59,111,46,97,112,112,101,110,100,67,104,105,108,100,40,105,41,59,118,97,114,32,115,61,105,46,111,102,102,115,101,116,87,105,100,116,104,59,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,111,41,59,118,97,114,32,97,61,114,45,115,59,114,101,116,117,114,110,32,116,124,124,108,111,99,97,108,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,92,34,102,115,108,105,103,104,116,98,111,120,45,115,99,114,111,108,108,98,97,114,45,119,105,100,116,104,92,34,44,97,46,116,111,83,116,114,105,110,103,40,41,41,44,97,125,102,117,110,99,116,105,111,110,32,90,116,40,101,41,123,118,97,114,32,116,61,101,46,99,111,114,101,46,108,105,103,104,116,98,111,120,79,112,101,110,101,114,44,110,61,101,46,100,97,116,97,44,111,61,101,46,112,114,111,112,115,46,111,112,101,110,79,110,77,111,117,110,116,59,100,111,99,117,109,101,110,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,114,41,46,108,101,110,103,116,104,124,124,84,40,41,44,110,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,106,116,40,101,41,44,111,38,38,116,46,105,110,105,116,105,97,108,105,122,101,65,110,100,79,112,101,110,76,105,103,104,116,98,111,120,40,41,125,118,97,114,32,86,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,101,46,95,108,40,101,46,99,97,112,116,105,111,110,115,44,40,102,117,110,99,116,105,111,110,40,116,44,111,41,123,114,101,116,117,114,110,32,116,63,110,40,92,34,67,97,112,116,105,111,110,92,34,44,123,107,101,121,58,111,44,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,101,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,44,105,58,111,125,125,41,58,101,46,95,101,40,41,125,41,41,44,49,41,125,59,86,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,113,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,116,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,114,101,102,92,34,44,99,108,97,115,115,58,116,104,105,115,46,99,108,97,115,115,78,97,109,101,125,44,91,116,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,45,105,110,110,101,114,92,34,125,44,91,116,40,116,104,105,115,46,99,111,109,112,111,110,101,110,116,44,116,104,105,115,46,95,98,40,123,116,97,103,58,92,34,99,111,109,112,111,110,101,110,116,92,34,125,44,92,34,99,111,109,112,111,110,101,110,116,92,34,44,116,104,105,115,46,99,111,109,112,111,110,101,110,116,80,114,111,112,115,44,33,49,41,41,93,44,49,41,93,41,125,59,113,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,81,116,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,116,61,101,46,100,97,116,97,46,105,115,84,104,117,109,98,105,110,103,44,110,61,101,46,112,114,111,112,115,46,99,97,112,116,105,111,110,115,44,111,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,44,105,61,98,116,40,110,91,116,104,105,115,46,105,93,41,59,114,101,116,117,114,110,32,105,46,99,108,97,115,115,78,97,109,101,61,92,34,102,115,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,32,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,92,34,44,111,46,99,117,114,114,101,110,116,33,61,61,116,104,105,115,46,105,124,124,116,124,124,40,105,46,99,108,97,115,115,78,97,109,101,43,61,92,34,32,102,115,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,45,97,99,116,105,118,101,92,34,41,44,105,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,99,97,112,116,105,111,110,115,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,125,44,113,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,81,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,99,97,112,116,105,111,110,115,47,67,97,112,116,105,111,110,46,118,117,101,92,34,59,118,97,114,32,74,116,61,80,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,67,97,112,116,105,111,110,58,81,116,46,101,120,112,111,114,116,115,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,99,97,112,116,105,111,110,115,58,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,112,114,111,112,115,46,99,97,112,116,105,111,110,115,125,125,125,44,86,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,74,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,99,97,112,116,105,111,110,115,47,67,97,112,116,105,111,110,115,46,118,117,101,92,34,59,118,97,114,32,71,116,61,74,116,46,101,120,112,111,114,116,115,44,75,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,116,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,114,101,102,92,34,44,99,108,97,115,115,58,116,104,105,115,46,99,108,97,115,115,78,97,109,101,125,44,91,116,40,92,34,84,104,117,109,98,115,67,117,114,115,111,114,101,114,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,116,104,105,115,46,95,118,40,92,34,32,92,34,41,44,116,40,92,34,84,104,117,109,98,115,73,110,110,101,114,92,34,44,123,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,116,104,105,115,46,95,118,40,92,34,32,92,34,41,44,116,104,105,115,46,97,114,101,84,104,117,109,98,115,76,111,97,100,105,110,103,63,116,40,92,34,76,111,97,100,101,114,92,34,44,123,97,116,116,114,115,58,123,116,101,115,116,73,100,58,92,34,116,104,117,109,98,115,45,108,111,97,100,101,114,92,34,44,92,34,97,100,100,105,116,105,111,110,97,108,45,99,108,97,115,115,45,110,97,109,101,92,34,58,92,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,108,111,97,100,101,114,92,34,125,125,41,58,116,104,105,115,46,95,101,40,41,93,44,49,41,125,59,75,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,101,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,116,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,84,104,117,109,98,115,67,117,114,115,111,114,101,114,83,104,111,119,110,63,116,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,99,117,114,115,111,114,101,114,32,102,115,108,105,103,104,116,98,111,120,45,102,117,108,108,45,100,105,109,101,110,115,105,111,110,32,102,115,108,105,103,104,116,98,111,120,45,97,98,115,111,108,117,116,101,100,92,34,125,41,58,116,104,105,115,46,95,101,40,41,125,59,101,110,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,116,110,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,84,104,117,109,98,115,67,117,114,115,111,114,101,114,83,104,111,119,110,58,33,49,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,59,116,46,115,104,111,119,84,104,117,109,98,115,67,117,114,115,111,114,101,114,73,102,78,111,116,89,101,116,61,102,117,110,99,116,105,111,110,40,41,123,101,46,105,115,84,104,117,109,98,115,67,117,114,115,111,114,101,114,83,104,111,119,110,124,124,40,101,46,105,115,84,104,117,109,98,115,67,117,114,115,111,114,101,114,83,104,111,119,110,61,33,48,41,125,44,116,46,104,105,100,101,84,104,117,109,98,115,67,117,114,115,111,114,101,114,61,102,117,110,99,116,105,111,110,40,41,123,101,46,105,115,84,104,117,109,98,115,67,117,114,115,111,114,101,114,83,104,111,119,110,61,33,49,125,125,125,44,101,110,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,116,110,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,116,104,117,109,98,115,47,84,104,117,109,98,115,67,117,114,115,111,114,101,114,46,118,117,101,92,34,59,118,97,114,32,110,110,61,116,110,46,101,120,112,111,114,116,115,44,111,110,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,114,101,102,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,105,110,110,101,114,92,34,44,97,116,116,114,115,58,123,92,34,100,97,116,97,45,116,101,115,116,45,105,100,92,34,58,92,34,116,104,117,109,98,115,45,105,110,110,101,114,92,34,125,125,44,101,46,95,108,40,101,46,99,104,105,108,100,114,101,110,44,40,102,117,110,99,116,105,111,110,40,116,44,111,41,123,114,101,116,117,114,110,32,116,63,110,40,116,46,99,111,109,112,111,110,101,110,116,44,101,46,95,98,40,123,107,101,121,58,111,44,116,97,103,58,92,34,99,111,109,112,111,110,101,110,116,92,34,44,97,116,116,114,115,58,123,92,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,92,34,58,101,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,44,92,34,99,111,109,112,111,110,101,110,116,92,34,44,116,46,112,114,111,112,115,44,33,49,41,41,58,101,46,95,101,40,41,125,41,41,44,49,41,125,59,111,110,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,114,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,116,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,116,104,117,109,98,45,119,114,97,112,112,101,114,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,105,110,118,97,108,105,100,32,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,119,114,97,112,112,101,114,92,34,125,44,91,116,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,116,104,117,109,98,92,34,44,99,108,97,115,115,58,116,104,105,115,46,116,104,117,109,98,67,108,97,115,115,78,97,109,101,125,44,91,116,40,92,34,83,118,103,101,114,92,34,44,123,97,116,116,114,115,58,123,119,105,100,116,104,58,92,34,50,50,112,120,92,34,44,104,101,105,103,104,116,58,92,34,50,50,112,120,92,34,44,92,34,118,105,101,119,45,98,111,120,92,34,58,92,34,48,32,48,32,51,48,32,51,48,92,34,44,100,58,92,34,77,49,53,44,51,67,56,46,51,55,51,44,51,44,51,44,56,46,51,55,51,44,51,44,49,53,99,48,44,54,46,54,50,55,44,53,46,51,55,51,44,49,50,44,49,50,44,49,50,115,49,50,45,53,46,51,55,51,44,49,50,45,49,50,67,50,55,44,56,46,51,55,51,44,50,49,46,54,50,55,44,51,44,49,53,44,51,122,32,77,49,54,46,50,49,50,44,56,108,45,48,46,50,44,57,104,45,50,46,48,50,52,108,45,48,46,50,45,57,32,72,49,54,46,50,49,50,122,32,77,49,53,46,48,48,51,44,50,50,46,49,56,57,99,45,48,46,56,50,56,44,48,45,49,46,51,50,51,45,48,46,52,52,49,45,49,46,51,50,51,45,49,46,49,56,50,99,48,45,48,46,55,53,53,44,48,46,52,57,52,45,49,46,49,57,54,44,49,46,51,50,51,45,49,46,49,57,54,99,48,46,56,50,50,44,48,44,49,46,51,49,54,44,48,46,52,52,49,44,49,46,51,49,54,44,49,46,49,57,54,32,67,49,54,46,51,49,57,44,50,49,46,55,52,56,44,49,53,46,56,50,53,44,50,50,46,49,56,57,44,49,53,46,48,48,51,44,50,50,46,49,56,57,122,92,34,125,125,41,93,44,49,41,93,41,125,59,114,110,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,115,110,61,80,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,83,118,103,101,114,58,68,101,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,123,116,104,117,109,98,67,108,97,115,115,78,97,109,101,58,92,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,32,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,92,34,125,59,114,101,116,117,114,110,32,116,104,105,115,46,105,61,61,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,115,116,97,103,101,73,110,100,101,120,101,115,46,99,117,114,114,101,110,116,38,38,40,101,46,116,104,117,109,98,67,108,97,115,115,78,97,109,101,43,61,92,34,32,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,97,99,116,105,118,101,92,34,41,44,101,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,116,61,101,46,99,111,114,101,46,116,104,117,109,98,76,111,97,100,72,97,110,100,108,101,114,46,104,97,110,100,108,101,76,111,97,100,44,110,61,101,46,101,108,101,109,101,110,116,115,44,111,61,110,46,116,104,117,109,98,115,87,114,97,112,112,101,114,115,44,105,61,110,46,116,104,117,109,98,115,59,111,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,91,92,34,116,104,117,109,98,45,119,114,97,112,112,101,114,92,34,93,44,105,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,116,104,117,109,98,44,116,40,41,125,125,44,114,110,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,115,110,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,116,104,117,109,98,115,47,73,110,118,97,108,105,100,84,104,117,109,98,46,118,117,101,92,34,59,118,97,114,32,97,110,61,115,110,46,101,120,112,111,114,116,115,44,117,110,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,116,104,117,109,98,45,119,114,97,112,112,101,114,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,119,114,97,112,112,101,114,92,34,125,44,91,101,46,116,104,117,109,98,73,99,111,110,63,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,119,114,97,112,112,101,114,45,100,97,114,107,101,110,101,114,92,34,125,41,58,101,46,95,101,40,41,44,101,46,95,118,40,92,34,32,92,34,41,44,101,46,116,104,117,109,98,73,99,111,110,63,110,40,101,46,116,104,117,109,98,73,99,111,110,46,99,111,109,112,111,110,101,110,116,44,101,46,95,98,40,123,116,97,103,58,92,34,99,111,109,112,111,110,101,110,116,92,34,125,44,92,34,99,111,109,112,111,110,101,110,116,92,34,44,101,46,116,104,117,109,98,73,99,111,110,46,99,111,109,112,111,110,101,110,116,80,114,111,112,115,44,33,49,41,41,58,101,46,95,101,40,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,105,109,103,92,34,44,123,114,101,102,58,92,34,116,104,117,109,98,92,34,44,99,108,97,115,115,58,101,46,116,104,117,109,98,67,108,97,115,115,78,97,109,101,44,97,116,116,114,115,58,123,115,114,99,58,101,46,115,114,99,44,97,108,116,58,101,46,115,114,99,125,44,111,110,58,123,108,111,97,100,58,101,46,111,110,76,111,97,100,125,125,41,93,44,49,41,125,59,117,110,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,99,110,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,44,115,114,99,58,83,116,114,105,110,103,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,116,61,101,46,99,111,114,101,46,116,104,117,109,98,76,111,97,100,72,97,110,100,108,101,114,46,104,97,110,100,108,101,76,111,97,100,44,110,61,101,46,112,114,111,112,115,46,116,104,117,109,98,115,73,99,111,110,115,44,111,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,44,105,61,123,116,104,117,109,98,73,99,111,110,58,110,117,108,108,125,44,114,61,110,38,38,110,91,116,104,105,115,46,105,93,59,114,101,116,117,114,110,32,114,38,38,40,105,46,116,104,117,109,98,73,99,111,110,61,98,116,40,114,41,41,44,105,46,111,110,76,111,97,100,61,116,44,105,46,116,104,117,109,98,67,108,97,115,115,78,97,109,101,61,92,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,92,34,44,116,104,105,115,46,105,61,61,61,111,46,99,117,114,114,101,110,116,38,38,40,105,46,116,104,117,109,98,67,108,97,115,115,78,97,109,101,43,61,92,34,32,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,97,99,116,105,118,101,92,34,41,44,105,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,44,116,61,101,46,116,104,117,109,98,115,87,114,97,112,112,101,114,115,44,110,61,101,46,116,104,117,109,98,115,59,116,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,91,92,34,116,104,117,109,98,45,119,114,97,112,112,101,114,92,34,93,44,110,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,116,104,117,109,98,125,125,44,117,110,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,99,110,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,116,104,117,109,98,115,47,84,104,117,109,98,46,118,117,101,92,34,59,118,97,114,32,108,110,61,99,110,46,101,120,112,111,114,116,115,44,104,110,61,80,101,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,99,111,109,112,111,110,101,110,116,115,58,123,76,111,97,100,101,114,58,65,116,44,84,104,117,109,98,58,108,110,44,73,110,118,97,108,105,100,84,104,117,109,98,58,97,110,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,99,104,105,108,100,114,101,110,58,116,104,105,115,46,103,101,116,67,104,105,108,100,114,101,110,40,41,46,115,108,105,99,101,40,41,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,117,112,100,97,116,101,84,104,117,109,98,115,73,110,110,101,114,61,102,117,110,99,116,105,111,110,40,41,123,101,46,99,104,105,108,100,114,101,110,61,101,46,103,101,116,67,104,105,108,100,114,101,110,40,41,46,115,108,105,99,101,40,41,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,116,61,101,46,99,111,114,101,46,116,104,117,109,98,115,83,119,105,112,105,110,103,68,111,119,110,46,108,105,115,116,101,110,101,114,59,101,46,101,108,101,109,101,110,116,115,46,116,104,117,109,98,115,73,110,110,101,114,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,59,118,97,114,32,110,61,110,101,119,32,87,116,59,116,104,105,115,46,36,114,101,102,115,46,114,101,102,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,100,111,119,110,92,34,44,110,46,103,101,116,77,111,117,115,101,68,111,119,110,76,105,115,116,101,110,101,114,70,117,110,99,40,116,41,41,44,116,104,105,115,46,36,114,101,102,115,46,114,101,102,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,116,111,117,99,104,115,116,97,114,116,92,34,44,110,46,103,101,116,84,111,117,99,104,83,116,97,114,116,76,105,115,116,101,110,101,114,70,111,114,70,117,110,99,40,116,41,41,125,44,109,101,116,104,111,100,115,58,123,103,101,116,67,104,105,108,100,114,101,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,116,104,117,109,98,115,80,114,111,112,101,100,67,111,109,112,111,110,101,110,116,115,125,125,125,44,111,110,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,104,110,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,116,104,117,109,98,115,47,84,104,117,109,98,115,73,110,110,101,114,46,118,117,101,92,34,59,118,97,114,32,100,110,61,80,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,76,111,97,100,101,114,58,65,116,44,84,104,117,109,98,115,73,110,110,101,114,58,104,110,46,101,120,112,111,114,116,115,44,84,104,117,109,98,115,67,117,114,115,111,114,101,114,58,110,110,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,123,97,114,101,84,104,117,109,98,115,76,111,97,100,105,110,103,58,33,48,44,99,108,97,115,115,78,97,109,101,58,92,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,92,34,125,59,114,101,116,117,114,110,32,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,100,97,116,97,46,105,115,84,104,117,109,98,105,110,103,38,38,40,101,46,99,108,97,115,115,78,97,109,101,43,61,92,34,32,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,97,99,116,105,118,101,92,34,41,44,101,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,44,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,104,105,100,101,84,104,117,109,98,115,76,111,97,100,101,114,61,102,117,110,99,116,105,111,110,40,41,123,101,46,97,114,101,84,104,117,109,98,115,76,111,97,100,105,110,103,61,33,49,125,125,125,44,75,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,100,110,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,116,104,117,109,98,115,47,84,104,117,109,98,115,46,118,117,101,92,34,59,118,97,114,32,112,110,61,100,110,46,101,120,112,111,114,116,115,44,102,110,61,80,101,40,123,112,114,111,112,115,58,123,116,111,103,103,108,101,114,58,66,111,111,108,101,97,110,44,115,111,117,114,99,101,115,58,65,114,114,97,121,44,105,110,105,116,105,97,108,65,110,105,109,97,116,105,111,110,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,100,125,44,115,108,105,100,101,67,104,97,110,103,101,65,110,105,109,97,116,105,111,110,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,108,125,44,99,97,112,116,105,111,110,115,58,65,114,114,97,121,44,111,110,79,112,101,110,58,70,117,110,99,116,105,111,110,44,111,110,67,108,111,115,101,58,70,117,110,99,116,105,111,110,44,111,110,73,110,105,116,58,70,117,110,99,116,105,111,110,44,111,110,83,104,111,119,58,70,117,110,99,116,105,111,110,44,111,110,83,108,105,100,101,67,104,97,110,103,101,58,70,117,110,99,116,105,111,110,44,115,108,105,100,101,58,78,117,109,98,101,114,44,115,111,117,114,99,101,58,83,116,114,105,110,103,44,115,111,117,114,99,101,73,110,100,101,120,58,78,117,109,98,101,114,44,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,58,65,114,114,97,121,44,109,97,120,89,111,117,116,117,98,101,86,105,100,101,111,68,105,109,101,110,115,105,111,110,115,58,79,98,106,101,99,116,44,115,108,105,100,101,66,117,116,116,111,110,115,58,79,98,106,101,99,116,44,116,111,111,108,98,97,114,66,117,116,116,111,110,115,58,79,98,106,101,99,116,44,100,105,115,97,98,108,101,76,111,99,97,108,83,116,111,114,97,103,101,58,66,111,111,108,101,97,110,44,116,121,112,101,115,58,65,114,114,97,121,44,116,121,112,101,58,83,116,114,105,110,103,44,116,104,117,109,98,115,58,65,114,114,97,121,44,100,105,115,97,98,108,101,84,104,117,109,98,115,58,66,111,111,108,101,97,110,44,115,104,111,119,84,104,117,109,98,115,79,110,77,111,117,110,116,58,66,111,111,108,101,97,110,44,116,104,117,109,98,115,73,99,111,110,115,58,65,114,114,97,121,44,99,117,115,116,111,109,84,111,111,108,98,97,114,66,117,116,116,111,110,115,58,65,114,114,97,121,44,101,120,105,116,70,117,108,108,115,99,114,101,101,110,79,110,67,108,111,115,101,58,66,111,111,108,101,97,110,44,108,111,97,100,79,110,108,121,67,117,114,114,101,110,116,83,111,117,114,99,101,58,66,111,111,108,101,97,110,44,111,112,101,110,79,110,77,111,117,110,116,58,66,111,111,108,101,97,110,44,115,108,105,100,101,68,105,115,116,97,110,99,101,58,123,116,121,112,101,58,78,117,109,98,101,114,44,100,101,102,97,117,108,116,58,46,51,125,44,115,108,105,100,101,115,104,111,119,84,105,109,101,58,123,116,121,112,101,58,78,117,109,98,101,114,44,100,101,102,97,117,108,116,58,56,101,51,125,44,85,73,70,97,100,101,79,117,116,84,105,109,101,58,123,116,121,112,101,58,78,117,109,98,101,114,44,100,101,102,97,117,108,116,58,56,101,51,125,44,122,111,111,109,73,110,99,114,101,109,101,110,116,58,123,116,121,112,101,58,78,117,109,98,101,114,44,100,101,102,97,117,108,116,58,46,50,53,125,125,44,99,111,109,112,111,110,101,110,116,115,58,123,84,104,117,109,98,115,58,112,110,44,67,97,112,116,105,111,110,115,58,71,116,44,78,97,118,101,114,58,116,116,44,83,108,105,100,101,66,117,116,116,111,110,115,58,68,116,44,83,108,105,100,101,115,104,111,119,66,97,114,58,88,116,44,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,58,82,116,44,83,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,58,70,116,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,79,112,101,110,58,33,49,44,102,115,76,105,103,104,116,98,111,120,83,116,111,114,101,58,73,125,125,44,119,97,116,99,104,58,123,115,108,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,114,101,46,108,105,103,104,116,98,111,120,85,112,100,97,116,101,114,46,104,97,110,100,108,101,83,108,105,100,101,80,114,111,112,40,41,125,44,115,111,117,114,99,101,73,110,100,101,120,58,102,117,110,99,116,105,111,110,40,41,123,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,114,101,46,108,105,103,104,116,98,111,120,85,112,100,97,116,101,114,46,104,97,110,100,108,101,83,108,105,100,101,80,114,111,112,40,41,125,44,115,111,117,114,99,101,58,102,117,110,99,116,105,111,110,40,41,123,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,114,101,46,108,105,103,104,116,98,111,120,85,112,100,97,116,101,114,46,104,97,110,100,108,101,83,108,105,100,101,80,114,111,112,40,41,125,44,116,111,103,103,108,101,114,58,102,117,110,99,116,105,111,110,40,41,123,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,114,101,46,108,105,103,104,116,98,111,120,85,112,100,97,116,101,114,46,104,97,110,100,108,101,83,108,105,100,101,80,114,111,112,40,41,44,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,114,101,46,108,105,103,104,116,98,111,120,85,112,100,97,116,101,114,46,104,97,110,100,108,101,84,111,103,103,108,101,114,85,112,100,97,116,101,40,41,125,125,44,99,114,101,97,116,101,100,58,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,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,61,73,46,112,117,115,104,40,110,101,119,32,87,101,40,116,104,105,115,41,41,45,49,59,118,97,114,32,116,61,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,59,116,46,103,101,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,105,115,79,112,101,110,125,44,116,46,115,101,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,101,46,105,115,79,112,101,110,61,116,44,110,38,38,40,101,46,117,112,100,97,116,101,100,67,97,108,108,98,97,99,107,61,110,41,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,99,111,110,116,97,105,110,101,114,61,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,97,105,110,101,114,44,90,116,40,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,41,125,44,117,112,100,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,73,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,99,111,110,116,97,105,110,101,114,61,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,97,105,110,101,114,44,116,104,105,115,46,117,112,100,97,116,101,100,67,97,108,108,98,97,99,107,38,38,116,104,105,115,46,117,112,100,97,116,101,100,67,97,108,108,98,97,99,107,40,41,44,116,104,105,115,46,117,112,100,97,116,101,100,67,97,108,108,98,97,99,107,61,110,117,108,108,125,125,44,111,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,102,110,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,70,115,76,105,103,104,116,98,111,120,46,118,117,101,92,34,59,118,97,114,32,109,110,61,102,110,46,101,120,112,111,114,116,115,59,116,46,100,101,102,97,117,108,116,61,109,110,125,93,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,102,115,108,105,103,104,116,98,111,120,45,118,117,101,47,105,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,42,32,73,110,115,112,105,114,101,32,84,114,101,101,32,68,79,77,92,110,32,42,32,64,118,101,114,115,105,111,110,32,52,46,48,46,54,92,110,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,92,110,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,92,110,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,92,110,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,92,110,32,42,47,92,110,40,102,117,110,99,116,105,111,110,32,40,103,108,111,98,97,108,44,32,102,97,99,116,111,114,121,41,32,123,92,110,32,32,32,32,32,116,114,117,101,32,63,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,97,99,116,111,114,121,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,108,111,100,97,115,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,108,111,100,97,115,104,46,106,115,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,105,110,115,112,105,114,101,45,116,114,101,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,46,106,115,92,34,41,41,32,58,92,110,32,32,32,32,48,59,92,110,125,40,116,104,105,115,44,32,40,102,117,110,99,116,105,111,110,32,40,95,44,73,110,115,112,105,114,101,84,114,101,101,41,32,123,32,39,117,115,101,32,115,116,114,105,99,116,39,59,92,110,92,110,32,32,32,32,73,110,115,112,105,114,101,84,114,101,101,32,61,32,73,110,115,112,105,114,101,84,114,101,101,32,38,38,32,73,110,115,112,105,114,101,84,114,101,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,39,100,101,102,97,117,108,116,39,41,32,63,32,73,110,115,112,105,114,101,84,114,101,101,91,39,100,101,102,97,117,108,116,39,93,32,58,32,73,110,115,112,105,114,101,84,114,101,101,59,92,110,92,110,32,32,32,32,118,97,114,32,78,79,95,79,80,32,61,32,39,36,78,79,95,79,80,39,59,92,114,92,110,32,32,32,32,118,97,114,32,69,82,82,79,82,95,77,83,71,32,61,32,39,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,39,59,92,114,92,110,32,32,32,32,118,97,114,32,105,115,66,114,111,119,115,101,114,32,61,32,33,33,40,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,119,105,110,100,111,119,46,100,111,99,117,109,101,110,116,41,59,92,114,92,110,32,32,32,32,118,97,114,32,105,115,65,114,114,97,121,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,59,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,83,116,114,105,110,103,79,114,78,117,109,98,101,114,40,111,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,116,121,112,101,111,102,32,111,59,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,32,61,61,61,32,39,115,116,114,105,110,103,39,32,124,124,32,116,121,112,101,32,61,61,61,32,39,110,117,109,98,101,114,39,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,78,117,108,108,79,114,85,110,100,101,102,40,111,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,85,110,100,101,102,105,110,101,100,40,111,41,32,124,124,32,105,115,78,117,108,108,40,111,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,73,110,118,97,108,105,100,40,111,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,78,117,108,108,40,111,41,32,124,124,32,111,32,61,61,61,32,102,97,108,115,101,32,124,124,32,105,115,84,114,117,101,40,111,41,32,124,124,32,105,115,85,110,100,101,102,105,110,101,100,40,111,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,70,117,110,99,116,105,111,110,40,111,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,111,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,83,116,114,105,110,103,40,111,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,111,32,61,61,61,32,39,115,116,114,105,110,103,39,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,78,117,109,98,101,114,40,111,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,111,32,61,61,61,32,39,110,117,109,98,101,114,39,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,78,117,108,108,40,111,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,32,61,61,61,32,110,117,108,108,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,84,114,117,101,40,111,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,32,61,61,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,85,110,100,101,102,105,110,101,100,40,111,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,32,61,61,61,32,118,111,105,100,32,48,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,104,114,111,119,69,114,114,111,114,40,109,101,115,115,97,103,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,109,101,115,115,97,103,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,101,115,115,97,103,101,32,61,32,69,82,82,79,82,95,77,83,71,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,40,92,34,73,110,102,101,114,110,111,32,69,114,114,111,114,58,32,92,34,32,43,32,109,101,115,115,97,103,101,41,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,109,98,105,110,101,70,114,111,109,40,102,105,114,115,116,44,32,115,101,99,111,110,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,117,116,32,61,32,123,125,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,105,114,115,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,102,105,114,115,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,91,107,101,121,93,32,61,32,102,105,114,115,116,91,107,101,121,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,101,99,111,110,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,36,49,32,105,110,32,115,101,99,111,110,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,91,107,101,121,36,49,93,32,61,32,115,101,99,111,110,100,91,107,101,121,36,49,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,117,116,59,92,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,107,101,121,80,114,101,102,105,120,32,61,32,39,36,39,59,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,86,78,111,100,101,40,99,104,105,108,100,70,108,97,103,115,44,32,99,104,105,108,100,114,101,110,44,32,99,108,97,115,115,78,97,109,101,44,32,102,108,97,103,115,44,32,107,101,121,44,32,112,114,111,112,115,44,32,114,101,102,44,32,116,121,112,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,70,108,97,103,115,58,32,99,104,105,108,100,70,108,97,103,115,44,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,99,104,105,108,100,114,101,110,44,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,78,97,109,101,58,32,99,108,97,115,115,78,97,109,101,44,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,58,32,110,117,108,108,44,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,108,97,103,115,58,32,102,108,97,103,115,44,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,107,101,121,32,61,61,61,32,118,111,105,100,32,48,32,63,32,110,117,108,108,32,58,32,107,101,121,44,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,86,78,111,100,101,58,32,110,117,108,108,44,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,112,114,111,112,115,32,61,61,61,32,118,111,105,100,32,48,32,63,32,110,117,108,108,32,58,32,112,114,111,112,115,44,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,102,58,32,114,101,102,32,61,61,61,32,118,111,105,100,32,48,32,63,32,110,117,108,108,32,58,32,114,101,102,44,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,58,32,116,121,112,101,92,114,92,110,32,32,32,32,32,32,32,32,125,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,86,78,111,100,101,40,102,108,97,103,115,44,32,116,121,112,101,44,32,99,108,97,115,115,78,97,109,101,44,32,99,104,105,108,100,114,101,110,44,32,99,104,105,108,100,70,108,97,103,115,44,32,112,114,111,112,115,44,32,107,101,121,44,32,114,101,102,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,70,108,97,103,32,61,32,99,104,105,108,100,70,108,97,103,115,32,61,61,61,32,118,111,105,100,32,48,32,63,32,49,32,47,42,32,72,97,115,73,110,118,97,108,105,100,67,104,105,108,100,114,101,110,32,42,47,32,58,32,99,104,105,108,100,70,108,97,103,115,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,78,111,100,101,32,61,32,103,101,116,86,78,111,100,101,40,99,104,105,108,100,70,108,97,103,44,32,99,104,105,108,100,114,101,110,44,32,99,108,97,115,115,78,97,109,101,44,32,102,108,97,103,115,44,32,107,101,121,44,32,112,114,111,112,115,44,32,114,101,102,44,32,116,121,112,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,70,108,97,103,32,61,61,61,32,48,32,47,42,32,85,110,107,110,111,119,110,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,111,114,109,97,108,105,122,101,67,104,105,108,100,114,101,110,40,118,78,111,100,101,44,32,118,78,111,100,101,46,99,104,105,108,100,114,101,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,78,111,100,101,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,86,78,111,100,101,40,102,108,97,103,115,44,32,116,121,112,101,44,32,112,114,111,112,115,44,32,107,101,121,44,32,114,101,102,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,102,108,97,103,115,32,38,32,50,32,47,42,32,67,111,109,112,111,110,101,110,116,85,110,107,110,111,119,110,32,42,47,41,32,62,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,108,97,103,115,32,61,32,116,121,112,101,46,112,114,111,116,111,116,121,112,101,32,38,38,32,105,115,70,117,110,99,116,105,111,110,40,116,121,112,101,46,112,114,111,116,111,116,121,112,101,46,114,101,110,100,101,114,41,32,63,32,52,32,47,42,32,67,111,109,112,111,110,101,110,116,67,108,97,115,115,32,42,47,32,58,32,56,32,47,42,32,67,111,109,112,111,110,101,110,116,70,117,110,99,116,105,111,110,32,42,47,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,47,47,32,115,101,116,32,100,101,102,97,117,108,116,32,112,114,111,112,115,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,80,114,111,112,115,32,61,32,116,121,112,101,46,100,101,102,97,117,108,116,80,114,111,112,115,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,100,101,102,97,117,108,116,80,114,111,112,115,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,112,114,111,112,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,32,61,32,123,125,59,32,47,47,32,80,114,111,112,115,32,99,97,110,32,98,101,32,114,101,102,101,114,101,110,99,101,100,32,97,110,100,32,109,111,100,105,102,105,101,100,32,97,116,32,97,112,112,108,105,99,97,116,105,111,110,32,108,101,118,101,108,32,115,111,32,97,108,119,97,121,115,32,99,114,101,97,116,101,32,110,101,119,32,111,98,106,101,99,116,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,32,105,110,32,100,101,102,97,117,108,116,80,114,111,112,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,105,110,101,100,40,112,114,111,112,115,91,112,114,111,112,93,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,91,112,114,111,112,93,32,61,32,100,101,102,97,117,108,116,80,114,111,112,115,91,112,114,111,112,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,102,108,97,103,115,32,38,32,56,32,47,42,32,67,111,109,112,111,110,101,110,116,70,117,110,99,116,105,111,110,32,42,47,41,32,62,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,72,111,111,107,115,32,61,32,116,121,112,101,46,100,101,102,97,117,108,116,72,111,111,107,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,100,101,102,97,117,108,116,72,111,111,107,115,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,114,101,102,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,115,32,114,101,102,32,99,97,110,110,111,116,32,98,101,32,114,101,102,101,114,101,110,99,101,100,32,102,114,111,109,32,97,112,112,108,105,99,97,116,105,111,110,32,108,101,118,101,108,44,32,119,101,32,99,97,110,32,117,115,101,32,116,104,101,32,115,97,109,101,32,114,101,102,115,32,111,98,106,101,99,116,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,102,32,61,32,100,101,102,97,117,108,116,72,111,111,107,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,36,49,32,105,110,32,100,101,102,97,117,108,116,72,111,111,107,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,105,110,101,100,40,114,101,102,91,112,114,111,112,36,49,93,41,41,32,123,92,114,92,110,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,114,101,102,91,112,114,111,112,36,49,93,32,61,32,100,101,102,97,117,108,116,72,111,111,107,115,91,112,114,111,112,36,49,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,78,111,100,101,32,61,32,103,101,116,86,78,111,100,101,40,49,32,47,42,32,72,97,115,73,110,118,97,108,105,100,67,104,105,108,100,114,101,110,32,42,47,44,32,110,117,108,108,44,32,110,117,108,108,44,32,102,108,97,103,115,44,32,107,101,121,44,32,112,114,111,112,115,44,32,114,101,102,44,32,116,121,112,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,112,116,115,86,78,111,100,101,32,61,32,111,112,116,105,111,110,115,46,99,114,101,97,116,101,86,78,111,100,101,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,111,112,116,115,86,78,111,100,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,115,86,78,111,100,101,40,118,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,78,111,100,101,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,40,116,101,120,116,44,32,107,101,121,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,86,78,111,100,101,40,49,32,47,42,32,72,97,115,73,110,118,97,108,105,100,67,104,105,108,100,114,101,110,32,42,47,44,32,105,115,78,117,108,108,79,114,85,110,100,101,102,40,116,101,120,116,41,32,63,32,39,39,32,58,32,116,101,120,116,44,32,110,117,108,108,44,32,49,54,32,47,42,32,84,101,120,116,32,42,47,44,32,107,101,121,44,32,110,117,108,108,44,32,110,117,108,108,44,32,110,117,108,108,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,80,114,111,112,115,40,118,78,111,100,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,118,78,111,100,101,46,112,114,111,112,115,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,108,97,103,115,32,61,32,118,78,111,100,101,46,102,108,97,103,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,102,108,97,103,115,32,38,32,52,56,49,32,47,42,32,69,108,101,109,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,46,99,104,105,108,100,114,101,110,32,33,61,61,32,118,111,105,100,32,48,32,38,38,32,105,115,78,117,108,108,79,114,85,110,100,101,102,40,118,78,111,100,101,46,99,104,105,108,100,114,101,110,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,114,109,97,108,105,122,101,67,104,105,108,100,114,101,110,40,118,78,111,100,101,44,32,112,114,111,112,115,46,99,104,105,108,100,114,101,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,46,99,108,97,115,115,78,97,109,101,32,33,61,61,32,118,111,105,100,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,99,108,97,115,115,78,97,109,101,32,61,32,112,114,111,112,115,46,99,108,97,115,115,78,97,109,101,32,124,124,32,110,117,108,108,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,46,99,108,97,115,115,78,97,109,101,32,61,32,117,110,100,101,102,105,110,101,100,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,46,107,101,121,32,33,61,61,32,118,111,105,100,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,107,101,121,32,61,32,112,114,111,112,115,46,107,101,121,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,46,107,101,121,32,61,32,117,110,100,101,102,105,110,101,100,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,46,114,101,102,32,33,61,61,32,118,111,105,100,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,102,108,97,103,115,32,38,32,56,32,47,42,32,67,111,109,112,111,110,101,110,116,70,117,110,99,116,105,111,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,114,101,102,32,61,32,99,111,109,98,105,110,101,70,114,111,109,40,118,78,111,100,101,46,114,101,102,44,32,112,114,111,112,115,46,114,101,102,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,114,101,102,32,61,32,112,114,111,112,115,46,114,101,102,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,46,114,101,102,32,61,32,117,110,100,101,102,105,110,101,100,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,78,111,100,101,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,100,105,114,101,99,116,67,108,111,110,101,40,118,78,111,100,101,84,111,67,108,111,110,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,86,78,111,100,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,108,97,103,115,32,61,32,118,78,111,100,101,84,111,67,108,111,110,101,46,102,108,97,103,115,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,108,97,103,115,32,38,32,49,52,32,47,42,32,67,111,109,112,111,110,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,84,111,67,108,111,110,101,32,61,32,118,78,111,100,101,84,111,67,108,111,110,101,46,112,114,111,112,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,40,112,114,111,112,115,84,111,67,108,111,110,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,32,61,32,123,125,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,112,114,111,112,115,84,111,67,108,111,110,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,91,107,101,121,93,32,61,32,112,114,111,112,115,84,111,67,108,111,110,101,91,107,101,121,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,86,78,111,100,101,32,61,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,86,78,111,100,101,40,102,108,97,103,115,44,32,118,78,111,100,101,84,111,67,108,111,110,101,46,116,121,112,101,44,32,112,114,111,112,115,44,32,118,78,111,100,101,84,111,67,108,111,110,101,46,107,101,121,44,32,118,78,111,100,101,84,111,67,108,111,110,101,46,114,101,102,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,102,108,97,103,115,32,38,32,52,56,49,32,47,42,32,69,108,101,109,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,86,78,111,100,101,32,61,32,99,114,101,97,116,101,86,78,111,100,101,40,102,108,97,103,115,44,32,118,78,111,100,101,84,111,67,108,111,110,101,46,116,121,112,101,44,32,118,78,111,100,101,84,111,67,108,111,110,101,46,99,108,97,115,115,78,97,109,101,44,32,118,78,111,100,101,84,111,67,108,111,110,101,46,99,104,105,108,100,114,101,110,44,32,118,78,111,100,101,84,111,67,108,111,110,101,46,99,104,105,108,100,70,108,97,103,115,44,32,118,78,111,100,101,84,111,67,108,111,110,101,46,112,114,111,112,115,44,32,118,78,111,100,101,84,111,67,108,111,110,101,46,107,101,121,44,32,118,78,111,100,101,84,111,67,108,111,110,101,46,114,101,102,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,102,108,97,103,115,32,38,32,49,54,32,47,42,32,84,101,120,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,86,78,111,100,101,32,61,32,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,40,118,78,111,100,101,84,111,67,108,111,110,101,46,99,104,105,108,100,114,101,110,44,32,118,78,111,100,101,84,111,67,108,111,110,101,46,107,101,121,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,102,108,97,103,115,32,38,32,49,48,50,52,32,47,42,32,80,111,114,116,97,108,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,86,78,111,100,101,32,61,32,118,78,111,100,101,84,111,67,108,111,110,101,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,86,78,111,100,101,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,86,111,105,100,86,78,111,100,101,40,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,40,39,39,44,32,110,117,108,108,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,95,110,111,114,109,97,108,105,122,101,86,78,111,100,101,115,40,110,111,100,101,115,44,32,114,101,115,117,108,116,44,32,105,110,100,101,120,44,32,99,117,114,114,101,110,116,75,101,121,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,108,101,110,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,59,32,105,110,100,101,120,32,60,32,108,101,110,59,32,105,110,100,101,120,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,32,61,32,110,111,100,101,115,91,105,110,100,101,120,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,73,110,118,97,108,105,100,40,110,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,75,101,121,32,61,32,99,117,114,114,101,110,116,75,101,121,32,43,32,107,101,121,80,114,101,102,105,120,32,43,32,105,110,100,101,120,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,40,110,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,110,111,114,109,97,108,105,122,101,86,78,111,100,101,115,40,110,44,32,114,101,115,117,108,116,44,32,48,44,32,110,101,119,75,101,121,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,83,116,114,105,110,103,79,114,78,117,109,98,101,114,40,110,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,32,61,32,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,40,110,44,32,110,101,119,75,101,121,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,108,100,75,101,121,32,61,32,110,46,107,101,121,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,80,114,101,102,105,120,101,100,75,101,121,32,61,32,105,115,83,116,114,105,110,103,40,111,108,100,75,101,121,41,32,38,38,32,111,108,100,75,101,121,91,48,93,32,61,61,61,32,107,101,121,80,114,101,102,105,120,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,40,110,46,100,111,109,41,32,124,124,32,105,115,80,114,101,102,105,120,101,100,75,101,121,41,32,123,92,114,92,110,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,110,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,40,111,108,100,75,101,121,41,32,124,124,32,105,115,80,114,101,102,105,120,101,100,75,101,121,41,32,123,92,114,92,110,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,110,46,107,101,121,32,61,32,110,101,119,75,101,121,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,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,110,46,107,101,121,32,61,32,99,117,114,114,101,110,116,75,101,121,32,43,32,111,108,100,75,101,121,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,67,104,105,108,100,114,101,110,40,118,78,111,100,101,44,32,99,104,105,108,100,114,101,110,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,67,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,67,104,105,108,100,70,108,97,103,115,32,61,32,49,32,47,42,32,72,97,115,73,110,118,97,108,105,100,67,104,105,108,100,114,101,110,32,42,47,59,92,114,92,110,32,32,32,32,32,32,32,32,47,47,32,68,111,110,39,116,32,99,104,97,110,103,101,32,99,104,105,108,100,114,101,110,32,116,111,32,109,97,116,99,104,32,115,116,114,105,99,116,32,101,113,117,97,108,32,40,61,61,61,41,32,116,114,117,101,32,105,110,32,112,97,116,99,104,105,110,103,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,73,110,118,97,108,105,100,40,99,104,105,108,100,114,101,110,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,114,101,110,32,61,32,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,115,83,116,114,105,110,103,40,99,104,105,108,100,114,101,110,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,70,108,97,103,115,32,61,32,50,32,47,42,32,72,97,115,86,78,111,100,101,67,104,105,108,100,114,101,110,32,42,47,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,114,101,110,32,61,32,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,40,99,104,105,108,100,114,101,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,115,78,117,109,98,101,114,40,99,104,105,108,100,114,101,110,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,70,108,97,103,115,32,61,32,50,32,47,42,32,72,97,115,86,78,111,100,101,67,104,105,108,100,114,101,110,32,42,47,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,114,101,110,32,61,32,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,40,99,104,105,108,100,114,101,110,32,43,32,39,39,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,115,65,114,114,97,121,40,99,104,105,108,100,114,101,110,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,101,110,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,101,110,32,61,61,61,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,114,101,110,32,61,32,110,117,108,108,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,70,108,97,103,115,32,61,32,49,32,47,42,32,72,97,115,73,110,118,97,108,105,100,67,104,105,108,100,114,101,110,32,42,47,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,119,101,32,97,115,115,105,103,110,32,36,32,119,104,105,99,104,32,98,97,115,105,99,97,108,108,121,32,109,101,97,110,115,32,119,101,39,118,101,32,102,108,97,103,103,101,100,32,116,104,105,115,32,97,114,114,97,121,32,102,111,114,32,102,117,116,117,114,101,32,110,111,116,101,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,105,102,32,105,116,32,99,111,109,101,115,32,98,97,99,107,32,97,103,97,105,110,44,32,119,101,32,110,101,101,100,32,116,111,32,99,108,111,110,101,32,105,116,44,32,97,115,32,112,101,111,112,108,101,32,97,114,101,32,117,115,105,110,103,32,105,116,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,105,110,32,97,110,32,105,109,109,117,116,97,98,108,101,32,119,97,121,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,116,115,108,105,110,116,58,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,79,98,106,101,99,116,46,105,115,70,114,111,122,101,110,40,99,104,105,108,100,114,101,110,41,32,124,124,32,99,104,105,108,100,114,101,110,91,39,36,39,93,32,61,61,61,32,116,114,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,99,104,105,108,100,114,101,110,46,115,108,105,99,101,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,70,108,97,103,115,32,61,32,56,32,47,42,32,72,97,115,75,101,121,101,100,67,104,105,108,100,114,101,110,32,42,47,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,32,61,32,99,104,105,108,100,114,101,110,91,105,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,73,110,118,97,108,105,100,40,110,41,32,124,124,32,105,115,65,114,114,97,121,40,110,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,114,101,110,32,61,32,110,101,119,67,104,105,108,100,114,101,110,32,124,124,32,99,104,105,108,100,114,101,110,46,115,108,105,99,101,40,48,44,32,105,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,110,111,114,109,97,108,105,122,101,86,78,111,100,101,115,40,99,104,105,108,100,114,101,110,44,32,110,101,119,67,104,105,108,100,114,101,110,44,32,105,44,32,39,39,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,115,83,116,114,105,110,103,79,114,78,117,109,98,101,114,40,110,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,114,101,110,32,61,32,110,101,119,67,104,105,108,100,114,101,110,32,124,124,32,99,104,105,108,100,114,101,110,46,115,108,105,99,101,40,48,44,32,105,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,114,101,110,46,112,117,115,104,40,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,40,110,44,32,107,101,121,80,114,101,102,105,120,32,43,32,105,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,110,46,107,101,121,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,78,117,108,108,68,111,109,32,61,32,105,115,78,117,108,108,40,110,46,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,78,117,108,108,75,101,121,32,61,32,105,115,78,117,108,108,40,107,101,121,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,80,114,101,102,105,120,101,100,32,61,32,33,105,115,78,117,108,108,75,101,121,32,38,38,32,107,101,121,91,48,93,32,61,61,61,32,107,101,121,80,114,101,102,105,120,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,68,111,109,32,124,124,32,105,115,78,117,108,108,75,101,121,32,124,124,32,105,115,80,114,101,102,105,120,101,100,41,32,123,92,114,92,110,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,110,101,119,67,104,105,108,100,114,101,110,32,61,32,110,101,119,67,104,105,108,100,114,101,110,32,124,124,32,99,104,105,108,100,114,101,110,46,115,108,105,99,101,40,48,44,32,105,41,59,92,114,92,110,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,105,102,32,40,33,105,115,78,117,108,108,68,111,109,32,124,124,32,105,115,80,114,101,102,105,120,101,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,110,41,59,92,114,92,110,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,125,92,114,92,110,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,105,102,32,40,105,115,78,117,108,108,75,101,121,32,124,124,32,105,115,80,114,101,102,105,120,101,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,46,107,101,121,32,61,32,107,101,121,80,114,101,102,105,120,32,43,32,105,59,92,114,92,110,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,125,92,114,92,110,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,110,101,119,67,104,105,108,100,114,101,110,46,112,117,115,104,40,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,110,101,119,67,104,105,108,100,114,101,110,41,32,123,92,114,92,110,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,110,101,119,67,104,105,108,100,114,101,110,46,112,117,115,104,40,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,114,101,110,32,61,32,110,101,119,67,104,105,108,100,114,101,110,32,124,124,32,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,114,101,110,46,36,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,114,101,110,32,61,32,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,40,99,104,105,108,100,114,101,110,46,100,111,109,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,114,101,110,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,99,104,105,108,100,114,101,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,67,104,105,108,100,70,108,97,103,115,32,61,32,50,32,47,42,32,72,97,115,86,78,111,100,101,67,104,105,108,100,114,101,110,32,42,47,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,118,78,111,100,101,46,99,104,105,108,100,114,101,110,32,61,32,110,101,119,67,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,118,78,111,100,101,46,99,104,105,108,100,70,108,97,103,115,32,61,32,110,101,119,67,104,105,108,100,70,108,97,103,115,59,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,78,111,100,101,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,123,92,114,92,110,32,32,32,32,32,32,32,32,97,102,116,101,114,82,101,110,100,101,114,58,32,110,117,108,108,44,92,114,92,110,32,32,32,32,32,32,32,32,98,101,102,111,114,101,82,101,110,100,101,114,58,32,110,117,108,108,44,92,114,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,86,78,111,100,101,58,32,110,117,108,108,44,92,114,92,110,32,32,32,32,32,32,32,32,114,101,110,100,101,114,67,111,109,112,108,101,116,101,58,32,110,117,108,108,92,114,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,118,97,114,32,120,108,105,110,107,78,83,32,61,32,39,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,39,59,92,114,92,110,32,32,32,32,118,97,114,32,120,109,108,78,83,32,61,32,39,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,39,59,92,114,92,110,32,32,32,32,118,97,114,32,115,118,103,78,83,32,61,32,39,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,39,59,92,114,92,110,32,32,32,32,118,97,114,32,110,97,109,101,115,112,97,99,101,115,32,61,32,123,92,114,92,110,32,32,32,32,32,32,32,32,39,120,108,105,110,107,58,97,99,116,117,97,116,101,39,58,32,120,108,105,110,107,78,83,44,92,114,92,110,32,32,32,32,32,32,32,32,39,120,108,105,110,107,58,97,114,99,114,111,108,101,39,58,32,120,108,105,110,107,78,83,44,92,114,92,110,32,32,32,32,32,32,32,32,39,120,108,105,110,107,58,104,114,101,102,39,58,32,120,108,105,110,107,78,83,44,92,114,92,110,32,32,32,32,32,32,32,32,39,120,108,105,110,107,58,114,111,108,101,39,58,32,120,108,105,110,107,78,83,44,92,114,92,110,32,32,32,32,32,32,32,32,39,120,108,105,110,107,58,115,104,111,119,39,58,32,120,108,105,110,107,78,83,44,92,114,92,110,32,32,32,32,32,32,32,32,39,120,108,105,110,107,58,116,105,116,108,101,39,58,32,120,108,105,110,107,78,83,44,92,114,92,110,32,32,32,32,32,32,32,32,39,120,108,105,110,107,58,116,121,112,101,39,58,32,120,108,105,110,107,78,83,44,92,114,92,110,32,32,32,32,32,32,32,32,39,120,109,108,58,98,97,115,101,39,58,32,120,109,108,78,83,44,92,114,92,110,32,32,32,32,32,32,32,32,39,120,109,108,58,108,97,110,103,39,58,32,120,109,108,78,83,44,92,114,92,110,32,32,32,32,32,32,32,32,39,120,109,108,58,115,112,97,99,101,39,58,32,120,109,108,78,83,92,114,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,47,32,87,101,32,110,101,101,100,32,69,77,80,84,89,95,79,66,74,32,100,101,102,105,110,101,100,32,105,110,32,111,110,101,32,112,108,97,99,101,46,92,114,92,110,32,32,32,32,47,47,32,73,116,115,32,117,115,101,100,32,102,111,114,32,99,111,109,112,97,114,105,115,111,110,32,115,111,32,119,101,32,99,97,110,116,32,105,110,108,105,110,101,32,105,116,32,105,110,116,111,32,115,104,97,114,101,100,92,114,92,110,32,32,32,32,118,97,114,32,69,77,80,84,89,95,79,66,74,32,61,32,123,125,59,92,114,92,110,32,32,32,32,118,97,114,32,76,73,70,69,67,89,67,76,69,32,61,32,91,93,59,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,112,112,101,110,100,67,104,105,108,100,40,112,97,114,101,110,116,68,111,109,44,32,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,68,111,109,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,109,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,115,101,114,116,79,114,65,112,112,101,110,100,40,112,97,114,101,110,116,68,111,109,44,32,110,101,119,78,111,100,101,44,32,110,101,120,116,78,111,100,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,79,114,85,110,100,101,102,40,110,101,120,116,78,111,100,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,112,112,101,110,100,67,104,105,108,100,40,112,97,114,101,110,116,68,111,109,44,32,110,101,119,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,68,111,109,46,105,110,115,101,114,116,66,101,102,111,114,101,40,110,101,119,78,111,100,101,44,32,110,101,120,116,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,100,111,99,117,109,101,110,116,67,114,101,97,116,101,69,108,101,109,101,110,116,40,116,97,103,44,32,105,115,83,86,71,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,83,86,71,32,61,61,61,32,116,114,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,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,115,118,103,78,83,44,32,116,97,103,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,116,97,103,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,112,108,97,99,101,67,104,105,108,100,40,112,97,114,101,110,116,68,111,109,44,32,110,101,119,68,111,109,44,32,108,97,115,116,68,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,68,111,109,46,114,101,112,108,97,99,101,67,104,105,108,100,40,110,101,119,68,111,109,44,32,108,97,115,116,68,111,109,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,67,104,105,108,100,40,112,97,114,101,110,116,68,111,109,44,32,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,68,111,109,46,114,101,109,111,118,101,67,104,105,108,100,40,100,111,109,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,97,108,108,65,108,108,40,97,114,114,97,121,70,110,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,105,115,116,101,110,101,114,59,92,114,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,40,108,105,115,116,101,110,101,114,32,61,32,97,114,114,97,121,70,110,46,115,104,105,102,116,40,41,41,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,97,116,116,97,99,104,101,100,69,118,101,110,116,67,111,117,110,116,115,32,61,32,123,125,59,92,114,92,110,32,32,32,32,118,97,114,32,97,116,116,97,99,104,101,100,69,118,101,110,116,115,32,61,32,123,125,59,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,69,118,101,110,116,40,110,97,109,101,44,32,110,101,120,116,69,118,101,110,116,44,32,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,115,76,101,102,116,32,61,32,97,116,116,97,99,104,101,100,69,118,101,110,116,67,111,117,110,116,115,91,110,97,109,101,93,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,115,79,98,106,101,99,116,32,61,32,100,111,109,46,36,69,86,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,69,118,101,110,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,101,118,101,110,116,115,76,101,102,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,97,99,104,101,100,69,118,101,110,116,115,91,110,97,109,101,93,32,61,32,97,116,116,97,99,104,69,118,101,110,116,84,111,68,111,99,117,109,101,110,116,40,110,97,109,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,97,99,104,101,100,69,118,101,110,116,67,111,117,110,116,115,91,110,97,109,101,93,32,61,32,48,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,101,118,101,110,116,115,79,98,106,101,99,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,115,79,98,106,101,99,116,32,61,32,100,111,109,46,36,69,86,32,61,32,123,125,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,101,118,101,110,116,115,79,98,106,101,99,116,91,110,97,109,101,93,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,97,99,104,101,100,69,118,101,110,116,67,111,117,110,116,115,91,110,97,109,101,93,43,43,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,115,79,98,106,101,99,116,91,110,97,109,101,93,32,61,32,110,101,120,116,69,118,101,110,116,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,101,118,101,110,116,115,79,98,106,101,99,116,32,38,38,32,101,118,101,110,116,115,79,98,106,101,99,116,91,110,97,109,101,93,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,97,99,104,101,100,69,118,101,110,116,67,111,117,110,116,115,91,110,97,109,101,93,45,45,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,115,76,101,102,116,32,61,61,61,32,49,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,110,111,114,109,97,108,105,122,101,69,118,101,110,116,78,97,109,101,40,110,97,109,101,41,44,32,97,116,116,97,99,104,101,100,69,118,101,110,116,115,91,110,97,109,101,93,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,97,99,104,101,100,69,118,101,110,116,115,91,110,97,109,101,93,32,61,32,110,117,108,108,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,115,79,98,106,101,99,116,91,110,97,109,101,93,32,61,32,110,101,120,116,69,118,101,110,116,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,100,105,115,112,97,116,99,104,69,118,101,110,116,115,40,101,118,101,110,116,44,32,116,97,114,103,101,116,44,32,105,115,67,108,105,99,107,44,32,110,97,109,101,44,32,101,118,101,110,116,68,97,116,97,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,111,109,32,61,32,116,97,114,103,101,116,59,92,114,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,33,105,115,78,117,108,108,40,100,111,109,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,72,116,109,108,32,78,111,100,101,115,32,99,97,110,32,98,101,32,110,101,115,116,101,100,32,102,101,58,32,115,112,97,110,32,105,110,115,105,100,101,32,98,117,116,116,111,110,32,105,110,32,116,104,97,116,32,115,99,101,110,97,114,105,111,32,98,114,111,119,115,101,114,32,100,111,101,115,32,110,111,116,32,104,97,110,100,108,101,32,100,105,115,97,98,108,101,100,32,97,116,116,114,105,98,117,116,101,32,111,110,32,112,97,114,101,110,116,44,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,98,101,99,97,117,115,101,32,116,104,101,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,32,105,115,32,111,110,32,100,111,99,117,109,101,110,116,46,98,111,100,121,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,111,110,39,116,32,112,114,111,99,101,115,115,32,99,108,105,99,107,115,32,111,110,32,100,105,115,97,98,108,101,100,32,101,108,101,109,101,110,116,115,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,67,108,105,99,107,32,38,38,32,100,111,109,46,100,105,115,97,98,108,101,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,115,79,98,106,101,99,116,32,61,32,100,111,109,46,36,69,86,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,115,79,98,106,101,99,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,69,118,101,110,116,32,61,32,101,118,101,110,116,115,79,98,106,101,99,116,91,110,97,109,101,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,69,118,101,110,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,108,105,110,107,69,118,101,110,116,32,111,98,106,101,99,116,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,68,97,116,97,46,100,111,109,32,61,32,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,69,118,101,110,116,46,101,118,101,110,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,69,118,101,110,116,46,101,118,101,110,116,40,99,117,114,114,101,110,116,69,118,101,110,116,46,100,97,116,97,44,32,101,118,101,110,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,69,118,101,110,116,40,101,118,101,110,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,99,97,110,99,101,108,66,117,98,98,108,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,32,61,32,100,111,109,46,112,97,114,101,110,116,78,111,100,101,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,69,118,101,110,116,78,97,109,101,40,110,97,109,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,97,109,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,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,97,110,99,101,108,66,117,98,98,108,101,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,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,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,116,116,97,99,104,69,118,101,110,116,84,111,68,111,99,117,109,101,110,116,40,110,97,109,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,111,99,69,118,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,101,118,101,110,116,46,116,121,112,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,67,108,105,99,107,32,61,32,116,121,112,101,32,61,61,61,32,39,99,108,105,99,107,39,32,124,124,32,116,121,112,101,32,61,61,61,32,39,100,98,108,99,108,105,99,107,39,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,67,108,105,99,107,32,38,38,32,101,118,101,110,116,46,98,117,116,116,111,110,32,33,61,61,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,114,101,102,111,120,32,105,110,99,111,114,114,101,99,116,108,121,32,116,114,105,103,103,101,114,115,32,99,108,105,99,107,32,101,118,101,110,116,32,102,111,114,32,109,105,100,47,114,105,103,104,116,32,109,111,117,115,101,32,98,117,116,116,111,110,115,46,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,105,115,32,98,117,103,32,104,97,115,32,98,101,101,110,32,97,99,116,105,118,101,32,102,111,114,32,49,50,32,121,101,97,114,115,46,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,98,117,103,122,105,108,108,97,46,109,111,122,105,108,108,97,46,111,114,103,47,115,104,111,119,95,98,117,103,46,99,103,105,63,105,100,61,49,56,52,48,53,49,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,32,61,32,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,118,101,110,116,32,100,97,116,97,32,110,101,101,100,115,32,116,111,32,98,101,32,111,98,106,101,99,116,32,116,111,32,115,97,118,101,32,114,101,102,101,114,101,110,99,101,32,116,111,32,99,117,114,114,101,110,116,84,97,114,103,101,116,32,103,101,116,116,101,114,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,68,97,116,97,32,61,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,58,32,100,111,99,117,109,101,110,116,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,118,101,110,116,44,32,39,99,117,114,114,101,110,116,84,97,114,103,101,116,39,44,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,118,101,110,116,68,97,116,97,46,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,105,115,112,97,116,99,104,69,118,101,110,116,115,40,101,118,101,110,116,44,32,101,118,101,110,116,46,116,97,114,103,101,116,44,32,105,115,67,108,105,99,107,44,32,110,97,109,101,44,32,101,118,101,110,116,68,97,116,97,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,32,32,125,59,92,114,92,110,32,32,32,32,32,32,32,32,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,110,111,114,109,97,108,105,122,101,69,118,101,110,116,78,97,109,101,40,110,97,109,101,41,44,32,100,111,99,69,118,101,110,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,111,99,69,118,101,110,116,59,92,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,83,97,109,101,73,110,110,101,114,72,84,77,76,40,100,111,109,44,32,105,110,110,101,114,72,84,77,76,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,101,109,112,100,111,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,39,105,39,41,59,92,114,92,110,32,32,32,32,32,32,32,32,116,101,109,112,100,111,109,46,105,110,110,101,114,72,84,77,76,32,61,32,105,110,110,101,114,72,84,77,76,59,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,101,109,112,100,111,109,46,105,110,110,101,114,72,84,77,76,32,61,61,61,32,100,111,109,46,105,110,110,101,114,72,84,77,76,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,83,97,109,101,80,114,111,112,115,73,110,110,101,114,72,84,77,76,40,100,111,109,44,32,112,114,111,112,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,112,114,111,112,115,32,38,38,32,112,114,111,112,115,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,32,38,38,32,112,114,111,112,115,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,32,38,38,32,105,115,83,97,109,101,73,110,110,101,114,72,84,77,76,40,100,111,109,44,32,112,114,111,112,115,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,59,92,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,114,105,103,103,101,114,69,118,101,110,116,76,105,115,116,101,110,101,114,40,112,114,111,112,115,44,32,109,101,116,104,111,100,78,97,109,101,44,32,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,91,109,101,116,104,111,100,78,97,109,101,93,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,105,115,116,101,110,101,114,32,61,32,112,114,111,112,115,91,109,101,116,104,111,100,78,97,109,101,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,105,115,116,101,110,101,114,46,101,118,101,110,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,46,101,118,101,110,116,40,108,105,115,116,101,110,101,114,46,100,97,116,97,44,32,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,40,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,97,116,105,118,101,76,105,115,116,101,110,101,114,78,97,109,101,32,61,32,109,101,116,104,111,100,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,91,110,97,116,105,118,101,76,105,115,116,101,110,101,114,78,97,109,101,93,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,91,110,97,116,105,118,101,76,105,115,116,101,110,101,114,78,97,109,101,93,40,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,87,114,97,112,112,101,100,70,117,110,99,116,105,111,110,40,109,101,116,104,111,100,78,97,109,101,44,32,97,112,112,108,121,86,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,110,77,101,116,104,111,100,32,61,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,78,111,100,101,32,61,32,116,104,105,115,46,36,86,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,118,78,111,100,101,32,105,115,32,103,111,110,101,32,98,121,32,116,104,101,32,116,105,109,101,32,101,118,101,110,116,32,102,105,114,101,115,44,32,110,111,45,111,112,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,118,78,111,100,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,118,78,111,100,101,46,112,114,111,112,115,32,124,124,32,69,77,80,84,89,95,79,66,74,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,111,109,32,61,32,118,78,111,100,101,46,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,83,116,114,105,110,103,40,109,101,116,104,111,100,78,97,109,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,105,103,103,101,114,69,118,101,110,116,76,105,115,116,101,110,101,114,40,112,114,111,112,115,44,32,109,101,116,104,111,100,78,97,109,101,44,32,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,109,101,116,104,111,100,78,97,109,101,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,105,103,103,101,114,69,118,101,110,116,76,105,115,116,101,110,101,114,40,112,114,111,112,115,44,32,109,101,116,104,111,100,78,97,109,101,91,105,93,44,32,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,97,112,112,108,121,86,97,108,117,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,86,78,111,100,101,32,61,32,116,104,105,115,46,36,86,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,80,114,111,112,115,32,61,32,110,101,119,86,78,111,100,101,46,112,114,111,112,115,32,124,124,32,69,77,80,84,89,95,79,66,74,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,112,112,108,121,86,97,108,117,101,40,110,101,119,80,114,111,112,115,44,32,100,111,109,44,32,102,97,108,115,101,44,32,110,101,119,86,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,59,92,114,92,110,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,102,110,77,101,116,104,111,100,44,32,39,119,114,97,112,112,101,100,39,44,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,102,97,108,115,101,44,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,102,97,108,115,101,44,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,114,117,101,44,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,114,105,116,97,98,108,101,58,32,102,97,108,115,101,92,114,92,110,32,32,32,32,32,32,32,32,125,41,59,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,77,101,116,104,111,100,59,92,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,67,104,101,99,107,101,100,84,121,112,101,40,116,121,112,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,32,61,61,61,32,39,99,104,101,99,107,98,111,120,39,32,124,124,32,116,121,112,101,32,61,61,61,32,39,114,97,100,105,111,39,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,118,97,114,32,111,110,84,101,120,116,73,110,112,117,116,67,104,97,110,103,101,32,61,32,99,114,101,97,116,101,87,114,97,112,112,101,100,70,117,110,99,116,105,111,110,40,39,111,110,73,110,112,117,116,39,44,32,97,112,112,108,121,86,97,108,117,101,73,110,112,117,116,41,59,92,114,92,110,32,32,32,32,118,97,114,32,119,114,97,112,112,101,100,79,110,67,104,97,110,103,101,32,61,32,99,114,101,97,116,101,87,114,97,112,112,101,100,70,117,110,99,116,105,111,110,40,91,39,111,110,67,108,105,99,107,39,44,32,39,111,110,67,104,97,110,103,101,39,93,44,32,97,112,112,108,121,86,97,108,117,101,73,110,112,117,116,41,59,92,114,92,110,32,32,32,32,47,42,32,116,115,108,105,110,116,58,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,58,110,111,45,101,109,112,116,121,32,42,47,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,101,109,112,116,121,119,114,97,112,112,101,114,40,101,118,101,110,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,101,109,112,116,121,119,114,97,112,112,101,114,46,119,114,97,112,112,101,100,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,112,117,116,69,118,101,110,116,115,40,100,111,109,44,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,67,104,101,99,107,101,100,84,121,112,101,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,116,121,112,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,111,110,99,104,97,110,103,101,32,61,32,119,114,97,112,112,101,100,79,110,67,104,97,110,103,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,111,110,99,108,105,99,107,32,61,32,101,109,112,116,121,119,114,97,112,112,101,114,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,111,110,105,110,112,117,116,32,61,32,111,110,84,101,120,116,73,110,112,117,116,67,104,97,110,103,101,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,112,112,108,121,86,97,108,117,101,73,110,112,117,116,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,44,32,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,116,121,112,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,118,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,104,101,99,107,101,100,32,61,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,99,104,101,99,107,101,100,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,117,108,116,105,112,108,101,32,61,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,109,117,108,116,105,112,108,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,100,101,102,97,117,108,116,86,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,104,97,115,86,97,108,117,101,32,61,32,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,118,97,108,117,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,38,38,32,116,121,112,101,32,33,61,61,32,100,111,109,46,116,121,112,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,116,121,112,101,39,44,32,116,121,112,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,109,117,108,116,105,112,108,101,41,32,38,38,32,109,117,108,116,105,112,108,101,32,33,61,61,32,100,111,109,46,109,117,108,116,105,112,108,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,109,117,108,116,105,112,108,101,32,61,32,109,117,108,116,105,112,108,101,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,100,101,102,97,117,108,116,86,97,108,117,101,41,32,38,38,32,33,104,97,115,86,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,100,101,102,97,117,108,116,86,97,108,117,101,32,43,32,39,39,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,67,104,101,99,107,101,100,84,121,112,101,40,116,121,112,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,86,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,118,97,108,117,101,32,61,32,118,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,99,104,101,99,107,101,100,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,99,104,101,99,107,101,100,32,61,32,99,104,101,99,107,101,100,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,86,97,108,117,101,32,38,38,32,100,111,109,46,118,97,108,117,101,32,33,61,61,32,118,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,118,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,118,97,108,117,101,32,61,32,118,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,99,104,101,99,107,101,100,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,99,104,101,99,107,101,100,32,61,32,99,104,101,99,107,101,100,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,67,104,105,108,100,79,112,116,105,111,110,71,114,111,117,112,40,118,78,111,100,101,44,32,118,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,118,78,111,100,101,46,116,121,112,101,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,111,112,116,103,114,111,117,112,39,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,118,78,111,100,101,46,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,70,108,97,103,115,32,61,32,118,78,111,100,101,46,99,104,105,108,100,70,108,97,103,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,70,108,97,103,115,32,38,32,49,50,32,47,42,32,77,117,108,116,105,112,108,101,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,101,110,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,112,100,97,116,101,67,104,105,108,100,79,112,116,105,111,110,40,99,104,105,108,100,114,101,110,91,105,93,44,32,118,97,108,117,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,99,104,105,108,100,70,108,97,103,115,32,61,61,61,32,50,32,47,42,32,72,97,115,86,78,111,100,101,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,112,100,97,116,101,67,104,105,108,100,79,112,116,105,111,110,40,99,104,105,108,100,114,101,110,44,32,118,97,108,117,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,112,100,97,116,101,67,104,105,108,100,79,112,116,105,111,110,40,118,78,111,100,101,44,32,118,97,108,117,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,67,104,105,108,100,79,112,116,105,111,110,40,118,78,111,100,101,44,32,118,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,118,78,111,100,101,46,112,114,111,112,115,32,124,124,32,69,77,80,84,89,95,79,66,74,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,111,109,32,61,32,118,78,111,100,101,46,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,47,47,32,119,101,32,100,111,32,116,104,105,115,32,97,115,32,109,117,108,116,105,112,108,101,32,109,97,121,32,104,97,118,101,32,99,104,97,110,103,101,100,92,114,92,110,32,32,32,32,32,32,32,32,100,111,109,46,118,97,108,117,101,32,61,32,112,114,111,112,115,46,118,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,105,115,65,114,114,97,121,40,118,97,108,117,101,41,32,38,38,32,118,97,108,117,101,46,105,110,100,101,120,79,102,40,112,114,111,112,115,46,118,97,108,117,101,41,32,33,61,61,32,45,49,41,32,124,124,32,112,114,111,112,115,46,118,97,108,117,101,32,61,61,61,32,118,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,115,101,108,101,99,116,101,100,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,118,97,108,117,101,41,32,124,124,32,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,112,114,111,112,115,46,115,101,108,101,99,116,101,100,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,115,101,108,101,99,116,101,100,32,61,32,112,114,111,112,115,46,115,101,108,101,99,116,101,100,32,124,124,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,118,97,114,32,111,110,83,101,108,101,99,116,67,104,97,110,103,101,32,61,32,99,114,101,97,116,101,87,114,97,112,112,101,100,70,117,110,99,116,105,111,110,40,39,111,110,67,104,97,110,103,101,39,44,32,97,112,112,108,121,86,97,108,117,101,83,101,108,101,99,116,41,59,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,69,118,101,110,116,115,40,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,100,111,109,46,111,110,99,104,97,110,103,101,32,61,32,111,110,83,101,108,101,99,116,67,104,97,110,103,101,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,112,112,108,121,86,97,108,117,101,83,101,108,101,99,116,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,44,32,100,111,109,44,32,109,111,117,110,116,105,110,103,44,32,118,78,111,100,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,117,108,116,105,112,108,101,80,114,111,112,73,110,66,111,111,108,101,97,110,32,61,32,66,111,111,108,101,97,110,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,109,117,108,116,105,112,108,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,109,117,108,116,105,112,108,101,41,32,38,38,32,109,117,108,116,105,112,108,101,80,114,111,112,73,110,66,111,111,108,101,97,110,32,33,61,61,32,100,111,109,46,109,117,108,116,105,112,108,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,109,117,108,116,105,112,108,101,32,61,32,109,117,108,116,105,112,108,101,80,114,111,112,73,110,66,111,111,108,101,97,110,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,70,108,97,103,115,32,61,32,118,78,111,100,101,46,99,104,105,108,100,70,108,97,103,115,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,99,104,105,108,100,70,108,97,103,115,32,38,32,49,32,47,42,32,72,97,115,73,110,118,97,108,105,100,67,104,105,108,100,114,101,110,32,42,47,41,32,61,61,61,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,118,78,111,100,101,46,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,118,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,111,117,110,116,105,110,103,32,38,38,32,105,115,78,117,108,108,79,114,85,110,100,101,102,40,118,97,108,117,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,100,101,102,97,117,108,116,86,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,70,108,97,103,115,32,38,32,49,50,32,47,42,32,77,117,108,116,105,112,108,101,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,101,110,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,112,100,97,116,101,67,104,105,108,100,79,112,116,105,111,110,71,114,111,117,112,40,99,104,105,108,100,114,101,110,91,105,93,44,32,118,97,108,117,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,99,104,105,108,100,70,108,97,103,115,32,61,61,61,32,50,32,47,42,32,72,97,115,86,78,111,100,101,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,112,100,97,116,101,67,104,105,108,100,79,112,116,105,111,110,71,114,111,117,112,40,99,104,105,108,100,114,101,110,44,32,118,97,108,117,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,111,110,84,101,120,116,97,114,101,97,73,110,112,117,116,67,104,97,110,103,101,32,61,32,99,114,101,97,116,101,87,114,97,112,112,101,100,70,117,110,99,116,105,111,110,40,39,111,110,73,110,112,117,116,39,44,32,97,112,112,108,121,86,97,108,117,101,84,101,120,116,65,114,101,97,41,59,92,114,92,110,32,32,32,32,118,97,114,32,119,114,97,112,112,101,100,79,110,67,104,97,110,103,101,36,49,32,61,32,99,114,101,97,116,101,87,114,97,112,112,101,100,70,117,110,99,116,105,111,110,40,39,111,110,67,104,97,110,103,101,39,41,59,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,120,116,65,114,101,97,69,118,101,110,116,115,40,100,111,109,44,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,100,111,109,46,111,110,105,110,112,117,116,32,61,32,111,110,84,101,120,116,97,114,101,97,73,110,112,117,116,67,104,97,110,103,101,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,111,110,67,104,97,110,103,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,111,110,99,104,97,110,103,101,32,61,32,119,114,97,112,112,101,100,79,110,67,104,97,110,103,101,36,49,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,112,112,108,121,86,97,108,117,101,84,101,120,116,65,114,101,97,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,44,32,100,111,109,44,32,109,111,117,110,116,105,110,103,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,118,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,111,109,86,97,108,117,101,32,61,32,100,111,109,46,118,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,79,114,85,110,100,101,102,40,118,97,108,117,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,111,117,110,116,105,110,103,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,100,101,102,97,117,108,116,86,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,100,101,102,97,117,108,116,86,97,108,117,101,41,32,38,38,32,100,101,102,97,117,108,116,86,97,108,117,101,32,33,61,61,32,100,111,109,86,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,100,101,102,97,117,108,116,86,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,118,97,108,117,101,32,61,32,100,101,102,97,117,108,116,86,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,100,111,109,86,97,108,117,101,32,33,61,61,32,118,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,32,84,104,101,114,101,32,105,115,32,118,97,108,117,101,32,115,111,32,107,101,101,112,32,105,116,32,99,111,110,116,114,111,108,108,101,100,32,42,47,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,118,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,118,97,108,117,101,32,61,32,118,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,114,92,110,32,32,32,32,32,42,32,84,104,101,114,101,32,105,115,32,99,117,114,114,101,110,116,108,121,32,110,111,32,115,117,112,112,111,114,116,32,102,111,114,32,115,119,105,116,99,104,105,110,103,32,115,97,109,101,32,105,110,112,117,116,32,98,101,116,119,101,101,110,32,99,111,110,116,114,111,108,108,101,100,32,97,110,100,32,110,111,110,67,111,110,116,114,111,108,108,101,100,92,114,92,110,32,32,32,32,32,42,32,73,102,32,116,104,97,116,32,101,118,101,114,32,98,101,99,111,109,101,115,32,97,32,114,101,97,108,32,105,115,115,117,101,44,32,116,104,101,110,32,114,101,32,100,101,115,105,103,110,32,99,111,110,116,114,111,108,108,101,100,32,101,108,101,109,101,110,116,115,92,114,92,110,32,32,32,32,32,42,32,67,117,114,114,101,110,116,108,121,32,117,115,101,114,32,109,117,115,116,32,99,104,111,111,115,101,32,101,105,116,104,101,114,32,99,111,110,116,114,111,108,108,101,100,32,111,114,32,110,111,110,45,99,111,110,116,114,111,108,108,101,100,32,97,110,100,32,115,116,105,99,107,32,119,105,116,104,32,116,104,97,116,92,114,92,110,32,32,32,32,32,42,47,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,114,111,99,101,115,115,69,108,101,109,101,110,116,40,102,108,97,103,115,44,32,118,78,111,100,101,44,32,100,111,109,44,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,44,32,109,111,117,110,116,105,110,103,44,32,105,115,67,111,110,116,114,111,108,108,101,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,108,97,103,115,32,38,32,54,52,32,47,42,32,73,110,112,117,116,69,108,101,109,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,112,112,108,121,86,97,108,117,101,73,110,112,117,116,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,102,108,97,103,115,32,38,32,50,53,54,32,47,42,32,83,101,108,101,99,116,69,108,101,109,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,112,112,108,121,86,97,108,117,101,83,101,108,101,99,116,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,44,32,100,111,109,44,32,109,111,117,110,116,105,110,103,44,32,118,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,102,108,97,103,115,32,38,32,49,50,56,32,47,42,32,84,101,120,116,97,114,101,97,69,108,101,109,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,112,112,108,121,86,97,108,117,101,84,101,120,116,65,114,101,97,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,44,32,100,111,109,44,32,109,111,117,110,116,105,110,103,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,67,111,110,116,114,111,108,108,101,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,36,86,32,61,32,118,78,111,100,101,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,100,100,70,111,114,109,69,108,101,109,101,110,116,69,118,101,110,116,72,97,110,100,108,101,114,115,40,102,108,97,103,115,44,32,100,111,109,44,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,108,97,103,115,32,38,32,54,52,32,47,42,32,73,110,112,117,116,69,108,101,109,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,112,117,116,69,118,101,110,116,115,40,100,111,109,44,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,102,108,97,103,115,32,38,32,50,53,54,32,47,42,32,83,101,108,101,99,116,69,108,101,109,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,69,118,101,110,116,115,40,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,102,108,97,103,115,32,38,32,49,50,56,32,47,42,32,84,101,120,116,97,114,101,97,69,108,101,109,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,65,114,101,97,69,118,101,110,116,115,40,100,111,109,44,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,67,111,110,116,114,111,108,108,101,100,70,111,114,109,69,108,101,109,101,110,116,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,116,121,112,101,32,38,38,32,105,115,67,104,101,99,107,101,100,84,121,112,101,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,116,121,112,101,41,32,63,32,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,99,104,101,99,107,101,100,41,32,58,32,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,118,97,108,117,101,41,59,92,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,40,118,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,117,110,109,111,117,110,116,40,118,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,97,114,101,110,116,68,111,109,32,38,38,32,118,78,111,100,101,46,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,67,104,105,108,100,40,112,97,114,101,110,116,68,111,109,44,32,118,78,111,100,101,46,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,76,101,116,32,99,97,114,98,97,103,101,32,99,111,108,108,101,99,116,111,114,32,102,114,101,101,32,109,101,109,111,114,121,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,100,111,109,32,61,32,110,117,108,108,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,110,109,111,117,110,116,40,118,78,111,100,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,108,97,103,115,32,61,32,118,78,111,100,101,46,102,108,97,103,115,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,108,97,103,115,32,38,32,52,56,49,32,47,42,32,69,108,101,109,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,102,32,61,32,118,78,111,100,101,46,114,101,102,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,118,78,111,100,101,46,112,114,111,112,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,114,101,102,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,102,40,110,117,108,108,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,118,78,111,100,101,46,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,70,108,97,103,115,32,61,32,118,78,111,100,101,46,99,104,105,108,100,70,108,97,103,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,70,108,97,103,115,32,38,32,49,50,32,47,42,32,77,117,108,116,105,112,108,101,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,110,109,111,117,110,116,65,108,108,67,104,105,108,100,114,101,110,40,99,104,105,108,100,114,101,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,99,104,105,108,100,70,108,97,103,115,32,61,61,61,32,50,32,47,42,32,72,97,115,86,78,111,100,101,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,110,109,111,117,110,116,40,99,104,105,108,100,114,101,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,40,112,114,111,112,115,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,110,97,109,101,32,105,110,32,112,114,111,112,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,110,97,109,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,67,108,105,99,107,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,68,98,108,67,108,105,99,107,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,70,111,99,117,115,73,110,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,70,111,99,117,115,79,117,116,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,75,101,121,68,111,119,110,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,75,101,121,80,114,101,115,115,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,75,101,121,85,112,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,77,111,117,115,101,68,111,119,110,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,77,111,117,115,101,77,111,118,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,77,111,117,115,101,85,112,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,83,117,98,109,105,116,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,84,111,117,99,104,69,110,100,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,84,111,117,99,104,77,111,118,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,84,111,117,99,104,83,116,97,114,116,39,58,92,114,92,110,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,104,97,110,100,108,101,69,118,101,110,116,40,110,97,109,101,44,32,110,117,108,108,44,32,118,78,111,100,101,46,100,111,109,41,59,92,114,92,110,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,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,114,92,110,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,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,36,49,32,61,32,118,78,111,100,101,46,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,97,102,101,32,103,117,97,114,100,32,102,111,114,32,99,114,97,115,104,101,100,32,86,78,111,100,101,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,114,101,110,36,49,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,102,108,97,103,115,32,38,32,49,52,32,47,42,32,67,111,109,112,111,110,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,102,36,49,32,61,32,118,78,111,100,101,46,114,101,102,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,102,108,97,103,115,32,38,32,52,32,47,42,32,67,111,109,112,111,110,101,110,116,67,108,97,115,115,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,99,104,105,108,100,114,101,110,36,49,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,41,41,32,123,92,114,92,110,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,99,104,105,108,100,114,101,110,36,49,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,114,101,102,36,49,41,41,32,123,92,114,92,110,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,114,101,102,36,49,40,110,117,108,108,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,36,49,46,36,85,78,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,114,101,110,36,49,46,36,76,73,41,32,123,92,114,92,110,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,117,110,109,111,117,110,116,40,99,104,105,108,100,114,101,110,36,49,46,36,76,73,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,114,101,102,36,49,41,32,38,38,32,105,115,70,117,110,99,116,105,111,110,40,114,101,102,36,49,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,41,41,32,123,92,114,92,110,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,114,101,102,36,49,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,40,118,78,111,100,101,46,100,111,109,44,32,118,78,111,100,101,46,112,114,111,112,115,32,124,124,32,69,77,80,84,89,95,79,66,74,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,110,109,111,117,110,116,40,99,104,105,108,100,114,101,110,36,49,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,102,108,97,103,115,32,38,32,49,48,50,52,32,47,42,32,80,111,114,116,97,108,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,40,99,104,105,108,100,114,101,110,36,49,44,32,118,78,111,100,101,46,116,121,112,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,110,109,111,117,110,116,65,108,108,67,104,105,108,100,114,101,110,40,99,104,105,108,100,114,101,110,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,101,110,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,110,109,111,117,110,116,40,99,104,105,108,100,114,101,110,91,105,93,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,65,108,108,67,104,105,108,100,114,101,110,40,100,111,109,44,32,99,104,105,108,100,114,101,110,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,117,110,109,111,117,110,116,65,108,108,67,104,105,108,100,114,101,110,40,99,104,105,108,100,114,101,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,100,111,109,46,116,101,120,116,67,111,110,116,101,110,116,32,61,32,39,39,59,92,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,76,105,110,107,69,118,101,110,116,40,108,105,110,107,69,118,101,110,116,44,32,110,101,120,116,86,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,105,110,107,69,118,101,110,116,40,110,101,120,116,86,97,108,117,101,46,100,97,116,97,44,32,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,116,99,104,69,118,101,110,116,40,110,97,109,101,44,32,108,97,115,116,86,97,108,117,101,44,32,110,101,120,116,86,97,108,117,101,44,32,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,97,109,101,76,111,119,101,114,67,97,115,101,32,61,32,110,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,70,117,110,99,116,105,111,110,40,110,101,120,116,86,97,108,117,101,41,32,38,38,32,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,110,101,120,116,86,97,108,117,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,105,110,107,69,118,101,110,116,32,61,32,110,101,120,116,86,97,108,117,101,46,101,118,101,110,116,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,105,110,107,69,118,101,110,116,32,38,38,32,105,115,70,117,110,99,116,105,111,110,40,108,105,110,107,69,118,101,110,116,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,91,110,97,109,101,76,111,119,101,114,67,97,115,101,93,32,61,32,99,114,101,97,116,101,76,105,110,107,69,118,101,110,116,40,108,105,110,107,69,118,101,110,116,44,32,110,101,120,116,86,97,108,117,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,111,109,69,118,101,110,116,32,61,32,100,111,109,91,110,97,109,101,76,111,119,101,114,67,97,115,101,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,105,102,32,116,104,101,32,102,117,110,99,116,105,111,110,32,105,115,32,119,114,97,112,112,101,100,44,32,116,104,97,116,32,109,101,97,110,115,32,105,116,39,115,32,98,101,101,110,32,99,111,110,116,114,111,108,108,101,100,32,98,121,32,97,32,119,114,97,112,112,101,114,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,100,111,109,69,118,101,110,116,32,124,124,32,33,100,111,109,69,118,101,110,116,46,119,114,97,112,112,101,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,91,110,97,109,101,76,111,119,101,114,67,97,115,101,93,32,61,32,110,101,120,116,86,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,78,117,109,98,101,114,83,116,121,108,101,86,97,108,117,101,40,115,116,121,108,101,44,32,118,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,115,116,121,108,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,97,110,105,109,97,116,105,111,110,73,116,101,114,97,116,105,111,110,67,111,117,110,116,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,98,111,114,100,101,114,73,109,97,103,101,79,117,116,115,101,116,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,98,111,114,100,101,114,73,109,97,103,101,83,108,105,99,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,98,111,114,100,101,114,73,109,97,103,101,87,105,100,116,104,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,98,111,120,70,108,101,120,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,98,111,120,70,108,101,120,71,114,111,117,112,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,98,111,120,79,114,100,105,110,97,108,71,114,111,117,112,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,99,111,108,117,109,110,67,111,117,110,116,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,102,105,108,108,79,112,97,99,105,116,121,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,102,108,101,120,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,102,108,101,120,71,114,111,119,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,102,108,101,120,78,101,103,97,116,105,118,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,102,108,101,120,79,114,100,101,114,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,102,108,101,120,80,111,115,105,116,105,118,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,102,108,101,120,83,104,114,105,110,107,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,102,108,111,111,100,79,112,97,99,105,116,121,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,102,111,110,116,87,101,105,103,104,116,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,103,114,105,100,67,111,108,117,109,110,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,103,114,105,100,82,111,119,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,108,105,110,101,67,108,97,109,112,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,108,105,110,101,72,101,105,103,104,116,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,112,97,99,105,116,121,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,114,100,101,114,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,114,112,104,97,110,115,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,115,116,111,112,79,112,97,99,105,116,121,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,115,116,114,111,107,101,68,97,115,104,97,114,114,97,121,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,115,116,114,111,107,101,68,97,115,104,111,102,102,115,101,116,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,115,116,114,111,107,101,77,105,116,101,114,108,105,109,105,116,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,115,116,114,111,107,101,79,112,97,99,105,116,121,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,115,116,114,111,107,101,87,105,100,116,104,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,116,97,98,83,105,122,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,119,105,100,111,119,115,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,122,73,110,100,101,120,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,122,111,111,109,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,43,32,39,112,120,39,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,47,47,32,87,101,32,97,114,101,32,97,115,115,117,109,105,110,103,32,104,101,114,101,32,116,104,97,116,32,119,101,32,99,111,109,101,32,102,114,111,109,32,112,97,116,99,104,80,114,111,112,32,114,111,117,116,105,110,101,92,114,92,110,32,32,32,32,47,47,32,45,110,101,120,116,65,116,116,114,86,97,108,117,101,32,99,97,110,110,111,116,32,98,101,32,110,117,108,108,32,111,114,32,117,110,100,101,102,105,110,101,100,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,116,99,104,83,116,121,108,101,40,108,97,115,116,65,116,116,114,86,97,108,117,101,44,32,110,101,120,116,65,116,116,114,86,97,108,117,101,44,32,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,111,109,83,116,121,108,101,32,61,32,100,111,109,46,115,116,121,108,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,116,121,108,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,83,116,114,105,110,103,40,110,101,120,116,65,116,116,114,86,97,108,117,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,83,116,121,108,101,46,99,115,115,84,101,120,116,32,61,32,110,101,120,116,65,116,116,114,86,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,108,97,115,116,65,116,116,114,86,97,108,117,101,41,32,38,38,32,33,105,115,83,116,114,105,110,103,40,108,97,115,116,65,116,116,114,86,97,108,117,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,115,116,121,108,101,32,105,110,32,110,101,120,116,65,116,116,114,86,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,100,111,32,110,111,116,32,97,100,100,32,97,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,32,99,104,101,99,107,32,104,101,114,101,44,32,105,116,32,97,102,102,101,99,116,115,32,112,101,114,102,111,114,109,97,110,99,101,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,110,101,120,116,65,116,116,114,86,97,108,117,101,91,115,116,121,108,101,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,33,61,61,32,108,97,115,116,65,116,116,114,86,97,108,117,101,91,115,116,121,108,101,93,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,83,116,121,108,101,91,115,116,121,108,101,93,32,61,32,105,115,78,117,109,98,101,114,40,118,97,108,117,101,41,32,63,32,103,101,116,78,117,109,98,101,114,83,116,121,108,101,86,97,108,117,101,40,115,116,121,108,101,44,32,118,97,108,117,101,41,32,58,32,118,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,115,116,121,108,101,32,105,110,32,108,97,115,116,65,116,116,114,86,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,79,114,85,110,100,101,102,40,110,101,120,116,65,116,116,114,86,97,108,117,101,91,115,116,121,108,101,93,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,83,116,121,108,101,91,115,116,121,108,101,93,32,61,32,39,39,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,115,116,121,108,101,32,105,110,32,110,101,120,116,65,116,116,114,86,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,110,101,120,116,65,116,116,114,86,97,108,117,101,91,115,116,121,108,101,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,83,116,121,108,101,91,115,116,121,108,101,93,32,61,32,105,115,78,117,109,98,101,114,40,118,97,108,117,101,41,32,63,32,103,101,116,78,117,109,98,101,114,83,116,121,108,101,86,97,108,117,101,40,115,116,121,108,101,44,32,118,97,108,117,101,41,32,58,32,118,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,116,99,104,80,114,111,112,40,112,114,111,112,44,32,108,97,115,116,86,97,108,117,101,44,32,110,101,120,116,86,97,108,117,101,44,32,100,111,109,44,32,105,115,83,86,71,44,32,104,97,115,67,111,110,116,114,111,108,108,101,100,86,97,108,117,101,44,32,108,97,115,116,86,78,111,100,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,112,114,111,112,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,67,108,105,99,107,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,68,98,108,67,108,105,99,107,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,70,111,99,117,115,73,110,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,70,111,99,117,115,79,117,116,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,75,101,121,68,111,119,110,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,75,101,121,80,114,101,115,115,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,75,101,121,85,112,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,77,111,117,115,101,68,111,119,110,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,77,111,117,115,101,77,111,118,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,77,111,117,115,101,85,112,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,83,117,98,109,105,116,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,84,111,117,99,104,69,110,100,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,84,111,117,99,104,77,111,118,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,110,84,111,117,99,104,83,116,97,114,116,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,69,118,101,110,116,40,112,114,111,112,44,32,110,101,120,116,86,97,108,117,101,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,99,104,105,108,100,114,101,110,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,99,104,105,108,100,114,101,110,84,121,112,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,99,108,97,115,115,78,97,109,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,100,101,102,97,117,108,116,86,97,108,117,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,107,101,121,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,109,117,108,116,105,112,108,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,114,101,102,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,97,117,116,111,70,111,99,117,115,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,97,117,116,111,102,111,99,117,115,32,61,32,33,33,110,101,120,116,86,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,97,117,116,111,112,108,97,121,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,99,97,112,116,117,114,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,99,104,101,99,107,101,100,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,99,111,110,116,114,111,108,115,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,100,101,102,97,117,108,116,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,100,105,115,97,98,108,101,100,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,104,105,100,100,101,110,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,108,111,111,112,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,109,117,116,101,100,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,110,111,118,97,108,105,100,97,116,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,111,112,101,110,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,114,101,97,100,79,110,108,121,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,114,101,113,117,105,114,101,100,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,114,101,118,101,114,115,101,100,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,115,99,111,112,101,100,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,115,101,97,109,108,101,115,115,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,115,101,108,101,99,116,101,100,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,91,112,114,111,112,93,32,61,32,33,33,110,101,120,116,86,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,100,101,102,97,117,108,116,67,104,101,99,107,101,100,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,118,97,108,117,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,118,111,108,117,109,101,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,67,111,110,116,114,111,108,108,101,100,86,97,108,117,101,32,38,38,32,112,114,111,112,32,61,61,61,32,39,118,97,108,117,101,39,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,105,115,78,117,108,108,79,114,85,110,100,101,102,40,110,101,120,116,86,97,108,117,101,41,32,63,32,39,39,32,58,32,110,101,120,116,86,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,111,109,91,112,114,111,112,93,32,33,61,61,32,118,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,91,112,114,111,112,93,32,61,32,118,97,108,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,39,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,72,116,109,108,32,61,32,40,108,97,115,116,86,97,108,117,101,32,38,38,32,108,97,115,116,86,97,108,117,101,46,95,95,104,116,109,108,41,32,124,124,32,39,39,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,72,116,109,108,32,61,32,40,110,101,120,116,86,97,108,117,101,32,38,38,32,110,101,120,116,86,97,108,117,101,46,95,95,104,116,109,108,41,32,124,124,32,39,39,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,72,116,109,108,32,33,61,61,32,110,101,120,116,72,116,109,108,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,110,101,120,116,72,116,109,108,41,32,38,38,32,33,105,115,83,97,109,101,73,110,110,101,114,72,84,77,76,40,100,111,109,44,32,110,101,120,116,72,116,109,108,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,40,108,97,115,116,86,78,111,100,101,41,41,32,123,92,114,92,110,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,105,102,32,40,108,97,115,116,86,78,111,100,101,46,99,104,105,108,100,70,108,97,103,115,32,38,32,49,50,32,47,42,32,77,117,108,116,105,112,108,101,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,110,109,111,117,110,116,65,108,108,67,104,105,108,100,114,101,110,40,108,97,115,116,86,78,111,100,101,46,99,104,105,108,100,114,101,110,41,59,92,114,92,110,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,125,92,114,92,110,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,101,108,115,101,32,105,102,32,40,108,97,115,116,86,78,111,100,101,46,99,104,105,108,100,70,108,97,103,115,32,61,61,61,32,50,32,47,42,32,72,97,115,86,78,111,100,101,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,110,109,111,117,110,116,40,108,97,115,116,86,78,111,100,101,46,99,104,105,108,100,114,101,110,41,59,92,114,92,110,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,125,92,114,92,110,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,108,97,115,116,86,78,111,100,101,46,99,104,105,108,100,114,101,110,32,61,32,110,117,108,108,59,92,114,92,110,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,108,97,115,116,86,78,111,100,101,46,99,104,105,108,100,70,108,97,103,115,32,61,32,49,32,47,42,32,72,97,115,73,110,118,97,108,105,100,67,104,105,108,100,114,101,110,32,42,47,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,105,110,110,101,114,72,84,77,76,32,61,32,110,101,120,116,72,116,109,108,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,91,48,93,32,61,61,61,32,39,111,39,32,38,38,32,112,114,111,112,91,49,93,32,61,61,61,32,39,110,39,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,69,118,101,110,116,40,112,114,111,112,44,32,108,97,115,116,86,97,108,117,101,44,32,110,101,120,116,86,97,108,117,101,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,115,78,117,108,108,79,114,85,110,100,101,102,40,110,101,120,116,86,97,108,117,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,112,114,111,112,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,112,114,111,112,32,61,61,61,32,39,115,116,121,108,101,39,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,83,116,121,108,101,40,108,97,115,116,86,97,108,117,101,44,32,110,101,120,116,86,97,108,117,101,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,115,83,86,71,32,38,38,32,110,97,109,101,115,112,97,99,101,115,91,112,114,111,112,93,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,111,112,116,105,109,105,122,101,32,102,111,114,32,105,115,83,86,71,32,98,101,105,110,103,32,102,97,108,115,101,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,119,101,32,101,110,100,32,117,112,32,105,110,32,116,104,105,115,32,112,97,116,104,32,119,101,32,99,97,110,32,114,101,97,100,32,112,114,111,112,101,114,116,121,32,97,103,97,105,110,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,110,97,109,101,115,112,97,99,101,115,91,112,114,111,112,93,44,32,112,114,111,112,44,32,110,101,120,116,86,97,108,117,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,115,101,116,65,116,116,114,105,98,117,116,101,40,112,114,111,112,44,32,110,101,120,116,86,97,108,117,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,80,114,111,112,115,40,118,78,111,100,101,44,32,102,108,97,103,115,44,32,112,114,111,112,115,44,32,100,111,109,44,32,105,115,83,86,71,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,104,97,115,67,111,110,116,114,111,108,108,101,100,86,97,108,117,101,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,115,70,111,114,109,69,108,101,109,101,110,116,32,61,32,40,102,108,97,103,115,32,38,32,52,52,56,32,47,42,32,70,111,114,109,69,108,101,109,101,110,116,32,42,47,41,32,62,32,48,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,111,114,109,69,108,101,109,101,110,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,97,115,67,111,110,116,114,111,108,108,101,100,86,97,108,117,101,32,61,32,105,115,67,111,110,116,114,111,108,108,101,100,70,111,114,109,69,108,101,109,101,110,116,40,112,114,111,112,115,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,67,111,110,116,114,111,108,108,101,100,86,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,70,111,114,109,69,108,101,109,101,110,116,69,118,101,110,116,72,97,110,100,108,101,114,115,40,102,108,97,103,115,44,32,100,111,109,44,32,112,114,111,112,115,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,32,105,110,32,112,114,111,112,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,100,111,32,110,111,116,32,97,100,100,32,97,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,32,99,104,101,99,107,32,104,101,114,101,44,32,105,116,32,97,102,102,101,99,116,115,32,112,101,114,102,111,114,109,97,110,99,101,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,80,114,111,112,40,112,114,111,112,44,32,110,117,108,108,44,32,112,114,111,112,115,91,112,114,111,112,93,44,32,100,111,109,44,32,105,115,83,86,71,44,32,104,97,115,67,111,110,116,114,111,108,108,101,100,86,97,108,117,101,44,32,110,117,108,108,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,111,114,109,69,108,101,109,101,110,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,99,101,115,115,69,108,101,109,101,110,116,40,102,108,97,103,115,44,32,118,78,111,100,101,44,32,100,111,109,44,32,112,114,111,112,115,44,32,116,114,117,101,44,32,104,97,115,67,111,110,116,114,111,108,108,101,100,86,97,108,117,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,108,97,115,115,67,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,40,118,78,111,100,101,44,32,67,111,109,112,111,110,101,110,116,44,32,112,114,111,112,115,44,32,99,111,110,116,101,120,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,115,116,97,110,99,101,32,61,32,110,101,119,32,67,111,109,112,111,110,101,110,116,40,112,114,111,112,115,44,32,99,111,110,116,101,120,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,118,78,111,100,101,46,99,104,105,108,100,114,101,110,32,61,32,105,110,115,116,97,110,99,101,59,92,114,92,110,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,86,32,61,32,118,78,111,100,101,59,92,114,92,110,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,66,83,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,115,116,97,110,99,101,46,112,114,111,112,115,32,61,61,61,32,69,77,80,84,89,95,79,66,74,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,112,114,111,112,115,32,61,32,112,114,111,112,115,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,85,78,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,105,110,115,116,97,110,99,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,66,82,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,115,116,97,110,99,101,46,36,80,83,83,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,97,116,101,32,61,32,105,110,115,116,97,110,99,101,46,115,116,97,116,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,101,110,100,105,110,103,32,61,32,105,110,115,116,97,110,99,101,46,36,80,83,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,40,115,116,97,116,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,115,116,97,116,101,32,61,32,112,101,110,100,105,110,103,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,112,101,110,100,105,110,103,41,32,123,92,114,92,110,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,116,97,116,101,91,107,101,121,93,32,61,32,112,101,110,100,105,110,103,91,107,101,121,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,80,83,83,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,80,83,32,61,32,110,117,108,108,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,66,82,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,46,98,101,102,111,114,101,82,101,110,100,101,114,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,98,101,102,111,114,101,82,101,110,100,101,114,40,105,110,115,116,97,110,99,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,112,117,116,32,61,32,104,97,110,100,108,101,67,111,109,112,111,110,101,110,116,73,110,112,117,116,40,105,110,115,116,97,110,99,101,46,114,101,110,100,101,114,40,112,114,111,112,115,44,32,105,110,115,116,97,110,99,101,46,115,116,97,116,101,44,32,99,111,110,116,101,120,116,41,44,32,118,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,67,111,110,116,101,120,116,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,105,110,115,116,97,110,99,101,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,67,111,110,116,101,120,116,32,61,32,105,110,115,116,97,110,99,101,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,79,114,85,110,100,101,102,40,99,104,105,108,100,67,111,110,116,101,120,116,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,67,88,32,61,32,99,111,110,116,101,120,116,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,67,88,32,61,32,99,111,109,98,105,110,101,70,114,111,109,40,99,111,110,116,101,120,116,44,32,99,104,105,108,100,67,111,110,116,101,120,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,46,97,102,116,101,114,82,101,110,100,101,114,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,97,102,116,101,114,82,101,110,100,101,114,40,105,110,115,116,97,110,99,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,76,73,32,61,32,105,110,112,117,116,59,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,115,116,97,110,99,101,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,67,111,109,112,111,110,101,110,116,73,110,112,117,116,40,105,110,112,117,116,44,32,99,111,109,112,111,110,101,110,116,86,78,111,100,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,73,110,118,97,108,105,100,40,105,110,112,117,116,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,112,117,116,32,61,32,99,114,101,97,116,101,86,111,105,100,86,78,111,100,101,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,115,83,116,114,105,110,103,79,114,78,117,109,98,101,114,40,105,110,112,117,116,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,112,117,116,32,61,32,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,40,105,110,112,117,116,44,32,110,117,108,108,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,112,117,116,46,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,112,117,116,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,105,110,112,117,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,112,117,116,46,102,108,97,103,115,32,38,32,49,52,32,47,42,32,67,111,109,112,111,110,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,105,102,32,119,101,32,104,97,118,101,32,97,110,32,105,110,112,117,116,32,116,104,97,116,32,105,115,32,97,108,115,111,32,97,32,99,111,109,112,111,110,101,110,116,44,32,119,101,32,114,117,110,32,105,110,116,111,32,97,32,116,114,105,99,107,121,32,115,105,116,117,97,116,105,111,110,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,119,104,101,114,101,32,116,104,101,32,114,111,111,116,32,118,78,111,100,101,32,110,101,101,100,115,32,116,111,32,97,108,119,97,121,115,32,104,97,118,101,32,116,104,101,32,99,111,114,114,101,99,116,32,68,79,77,32,101,110,116,114,121,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,119,101,32,99,97,110,32,111,112,116,105,109,105,115,101,32,116,104,105,115,32,105,110,32,116,104,101,32,102,117,116,117,114,101,44,32,98,117,116,32,116,104,105,115,32,103,101,116,115,32,117,115,32,111,117,116,32,111,102,32,97,32,108,111,116,32,111,102,32,105,115,115,117,101,115,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,112,117,116,46,112,97,114,101,110,116,86,78,111,100,101,32,61,32,99,111,109,112,111,110,101,110,116,86,78,111,100,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,112,117,116,59,92,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,40,118,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,108,97,103,115,32,61,32,118,78,111,100,101,46,102,108,97,103,115,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,108,97,103,115,32,38,32,52,56,49,32,47,42,32,69,108,101,109,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,111,117,110,116,69,108,101,109,101,110,116,40,118,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,108,97,103,115,32,38,32,49,52,32,47,42,32,67,111,109,112,111,110,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,111,117,110,116,67,111,109,112,111,110,101,110,116,40,118,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,44,32,40,102,108,97,103,115,32,38,32,52,32,47,42,32,67,111,109,112,111,110,101,110,116,67,108,97,115,115,32,42,47,41,32,62,32,48,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,108,97,103,115,32,38,32,53,49,50,32,47,42,32,86,111,105,100,32,42,47,32,124,124,32,102,108,97,103,115,32,38,32,49,54,32,47,42,32,84,101,120,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,111,117,110,116,84,101,120,116,40,118,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,108,97,103,115,32,38,32,49,48,50,52,32,47,42,32,80,111,114,116,97,108,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,40,118,78,111,100,101,46,99,104,105,108,100,114,101,110,44,32,118,78,111,100,101,46,116,121,112,101,44,32,99,111,110,116,101,120,116,44,32,102,97,108,115,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,118,78,111,100,101,46,100,111,109,32,61,32,109,111,117,110,116,84,101,120,116,40,99,114,101,97,116,101,86,111,105,100,86,78,111,100,101,40,41,44,32,112,97,114,101,110,116,68,111,109,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,84,101,120,116,40,118,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,111,109,32,61,32,40,118,78,111,100,101,46,100,111,109,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,118,78,111,100,101,46,99,104,105,108,100,114,101,110,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,40,112,97,114,101,110,116,68,111,109,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,112,112,101,110,100,67,104,105,108,100,40,112,97,114,101,110,116,68,111,109,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,111,109,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,69,108,101,109,101,110,116,40,118,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,108,97,103,115,32,61,32,118,78,111,100,101,46,102,108,97,103,115,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,118,78,111,100,101,46,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,118,78,111,100,101,46,112,114,111,112,115,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,108,97,115,115,78,97,109,101,32,61,32,118,78,111,100,101,46,99,108,97,115,115,78,97,109,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,102,32,61,32,118,78,111,100,101,46,114,101,102,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,70,108,97,103,115,32,61,32,118,78,111,100,101,46,99,104,105,108,100,70,108,97,103,115,59,92,114,92,110,32,32,32,32,32,32,32,32,105,115,83,86,71,32,61,32,105,115,83,86,71,32,124,124,32,40,102,108,97,103,115,32,38,32,51,50,32,47,42,32,83,118,103,69,108,101,109,101,110,116,32,42,47,41,32,62,32,48,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,111,109,32,61,32,100,111,99,117,109,101,110,116,67,114,101,97,116,101,69,108,101,109,101,110,116,40,118,78,111,100,101,46,116,121,112,101,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,118,78,111,100,101,46,100,111,109,32,61,32,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,99,108,97,115,115,78,97,109,101,41,32,38,38,32,99,108,97,115,115,78,97,109,101,32,33,61,61,32,39,39,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,83,86,71,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,99,108,97,115,115,39,44,32,99,108,97,115,115,78,97,109,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,99,108,97,115,115,78,97,109,101,32,61,32,99,108,97,115,115,78,97,109,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,40,112,97,114,101,110,116,68,111,109,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,112,112,101,110,100,67,104,105,108,100,40,112,97,114,101,110,116,68,111,109,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,99,104,105,108,100,70,108,97,103,115,32,38,32,49,32,47,42,32,72,97,115,73,110,118,97,108,105,100,67,104,105,108,100,114,101,110,32,42,47,41,32,61,61,61,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,73,115,83,86,71,32,61,32,105,115,83,86,71,32,61,61,61,32,116,114,117,101,32,38,38,32,118,78,111,100,101,46,116,121,112,101,32,33,61,61,32,39,102,111,114,101,105,103,110,79,98,106,101,99,116,39,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,70,108,97,103,115,32,61,61,61,32,50,32,47,42,32,72,97,115,86,78,111,100,101,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,40,99,104,105,108,100,114,101,110,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,99,104,105,108,100,114,101,110,73,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,99,104,105,108,100,70,108,97,103,115,32,38,32,49,50,32,47,42,32,77,117,108,116,105,112,108,101,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,65,114,114,97,121,67,104,105,108,100,114,101,110,40,99,104,105,108,100,114,101,110,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,99,104,105,108,100,114,101,110,73,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,40,112,114,111,112,115,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,80,114,111,112,115,40,118,78,111,100,101,44,32,102,108,97,103,115,44,32,112,114,111,112,115,44,32,100,111,109,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,114,101,102,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,82,101,102,40,100,111,109,44,32,114,101,102,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,111,109,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,65,114,114,97,121,67,104,105,108,100,114,101,110,40,99,104,105,108,100,114,101,110,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,101,110,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,32,61,32,99,104,105,108,100,114,101,110,91,105,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,40,99,104,105,108,100,46,100,111,109,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,91,105,93,32,61,32,99,104,105,108,100,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,99,104,105,108,100,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,40,99,104,105,108,100,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,67,111,109,112,111,110,101,110,116,40,118,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,44,32,105,115,67,108,97,115,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,118,78,111,100,101,46,116,121,112,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,118,78,111,100,101,46,112,114,111,112,115,32,124,124,32,69,77,80,84,89,95,79,66,74,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,102,32,61,32,118,78,111,100,101,46,114,101,102,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,67,108,97,115,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,115,116,97,110,99,101,32,61,32,99,114,101,97,116,101,67,108,97,115,115,67,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,40,118,78,111,100,101,44,32,116,121,112,101,44,32,112,114,111,112,115,44,32,99,111,110,116,101,120,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,100,111,109,32,61,32,100,111,109,32,61,32,109,111,117,110,116,40,105,110,115,116,97,110,99,101,46,36,76,73,44,32,110,117,108,108,44,32,105,110,115,116,97,110,99,101,46,36,67,88,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,67,108,97,115,115,67,111,109,112,111,110,101,110,116,67,97,108,108,98,97,99,107,115,40,118,78,111,100,101,44,32,114,101,102,44,32,105,110,115,116,97,110,99,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,85,80,68,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,112,117,116,32,61,32,104,97,110,100,108,101,67,111,109,112,111,110,101,110,116,73,110,112,117,116,40,116,121,112,101,40,112,114,111,112,115,44,32,99,111,110,116,101,120,116,41,44,32,118,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,99,104,105,108,100,114,101,110,32,61,32,105,110,112,117,116,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,100,111,109,32,61,32,100,111,109,32,61,32,109,111,117,110,116,40,105,110,112,117,116,44,32,110,117,108,108,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,70,117,110,99,116,105,111,110,97,108,67,111,109,112,111,110,101,110,116,67,97,108,108,98,97,99,107,115,40,112,114,111,112,115,44,32,114,101,102,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,40,112,97,114,101,110,116,68,111,109,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,112,112,101,110,100,67,104,105,108,100,40,112,97,114,101,110,116,68,111,109,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,111,109,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,108,97,115,115,77,111,117,110,116,67,97,108,108,98,97,99,107,40,105,110,115,116,97,110,99,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,99,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,67,108,97,115,115,67,111,109,112,111,110,101,110,116,67,97,108,108,98,97,99,107,115,40,118,78,111,100,101,44,32,114,101,102,44,32,105,110,115,116,97,110,99,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,114,101,102,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,102,40,105,110,115,116,97,110,99,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,105,110,115,116,97,110,99,101,46,99,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,76,73,70,69,67,89,67,76,69,46,112,117,115,104,40,99,114,101,97,116,101,67,108,97,115,115,77,111,117,110,116,67,97,108,108,98,97,99,107,40,105,110,115,116,97,110,99,101,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,79,110,77,111,117,110,116,67,97,108,108,98,97,99,107,40,114,101,102,44,32,100,111,109,44,32,112,114,111,112,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,114,101,102,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,40,100,111,109,44,32,112,114,111,112,115,41,59,32,125,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,70,117,110,99,116,105,111,110,97,108,67,111,109,112,111,110,101,110,116,67,97,108,108,98,97,99,107,115,40,112,114,111,112,115,44,32,114,101,102,44,32,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,114,101,102,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,114,101,102,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,102,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,40,112,114,111,112,115,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,114,101,102,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,76,73,70,69,67,89,67,76,69,46,112,117,115,104,40,99,114,101,97,116,101,79,110,77,111,117,110,116,67,97,108,108,98,97,99,107,40,114,101,102,44,32,100,111,109,44,32,112,114,111,112,115,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,82,101,102,40,100,111,109,44,32,118,97,108,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,76,73,70,69,67,89,67,76,69,46,112,117,115,104,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,118,97,108,117,101,40,100,111,109,41,59,32,125,41,59,92,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,121,100,114,97,116,101,67,111,109,112,111,110,101,110,116,40,118,78,111,100,101,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,44,32,105,115,67,108,97,115,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,118,78,111,100,101,46,116,121,112,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,102,32,61,32,118,78,111,100,101,46,114,101,102,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,118,78,111,100,101,46,112,114,111,112,115,32,124,124,32,69,77,80,84,89,95,79,66,74,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,67,108,97,115,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,115,116,97,110,99,101,32,61,32,99,114,101,97,116,101,67,108,97,115,115,67,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,40,118,78,111,100,101,44,32,116,121,112,101,44,32,112,114,111,112,115,44,32,99,111,110,116,101,120,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,112,117,116,32,61,32,105,110,115,116,97,110,99,101,46,36,76,73,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,121,100,114,97,116,101,86,78,111,100,101,40,105,110,112,117,116,44,32,100,111,109,44,32,105,110,115,116,97,110,99,101,46,36,67,88,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,100,111,109,32,61,32,105,110,112,117,116,46,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,67,108,97,115,115,67,111,109,112,111,110,101,110,116,67,97,108,108,98,97,99,107,115,40,118,78,111,100,101,44,32,114,101,102,44,32,105,110,115,116,97,110,99,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,85,80,68,32,61,32,102,97,108,115,101,59,32,47,47,32,77,111,117,110,116,32,102,105,110,105,115,104,101,100,32,97,108,108,111,119,32,103,111,105,110,103,32,115,121,110,99,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,112,117,116,36,49,32,61,32,104,97,110,100,108,101,67,111,109,112,111,110,101,110,116,73,110,112,117,116,40,116,121,112,101,40,112,114,111,112,115,44,32,99,111,110,116,101,120,116,41,44,32,118,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,121,100,114,97,116,101,86,78,111,100,101,40,105,110,112,117,116,36,49,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,99,104,105,108,100,114,101,110,32,61,32,105,110,112,117,116,36,49,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,100,111,109,32,61,32,105,110,112,117,116,36,49,46,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,70,117,110,99,116,105,111,110,97,108,67,111,109,112,111,110,101,110,116,67,97,108,108,98,97,99,107,115,40,112,114,111,112,115,44,32,114,101,102,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,121,100,114,97,116,101,69,108,101,109,101,110,116,40,118,78,111,100,101,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,118,78,111,100,101,46,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,118,78,111,100,101,46,112,114,111,112,115,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,108,97,115,115,78,97,109,101,32,61,32,118,78,111,100,101,46,99,108,97,115,115,78,97,109,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,108,97,103,115,32,61,32,118,78,111,100,101,46,102,108,97,103,115,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,102,32,61,32,118,78,111,100,101,46,114,101,102,59,92,114,92,110,32,32,32,32,32,32,32,32,105,115,83,86,71,32,61,32,105,115,83,86,71,32,124,124,32,40,102,108,97,103,115,32,38,32,51,50,32,47,42,32,83,118,103,69,108,101,109,101,110,116,32,42,47,41,32,62,32,48,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,111,109,46,110,111,100,101,84,121,112,101,32,33,61,61,32,49,32,124,124,32,100,111,109,46,116,97,103,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,32,33,61,61,32,118,78,111,100,101,46,116,121,112,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,68,111,109,32,61,32,109,111,117,110,116,69,108,101,109,101,110,116,40,118,78,111,100,101,44,32,110,117,108,108,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,100,111,109,32,61,32,110,101,119,68,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,112,108,97,99,101,67,104,105,108,100,40,100,111,109,46,112,97,114,101,110,116,78,111,100,101,44,32,110,101,119,68,111,109,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,100,111,109,32,61,32,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,78,111,100,101,32,61,32,100,111,109,46,102,105,114,115,116,67,104,105,108,100,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,70,108,97,103,115,32,61,32,118,78,111,100,101,46,99,104,105,108,100,70,108,97,103,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,99,104,105,108,100,70,108,97,103,115,32,38,32,49,32,47,42,32,72,97,115,73,110,118,97,108,105,100,67,104,105,108,100,114,101,110,32,42,47,41,32,61,61,61,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,83,105,98,108,105,110,103,32,61,32,110,117,108,108,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,99,104,105,108,100,78,111,100,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,83,105,98,108,105,110,103,32,61,32,99,104,105,108,100,78,111,100,101,46,110,101,120,116,83,105,98,108,105,110,103,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,78,111,100,101,46,110,111,100,101,84,121,112,101,32,61,61,61,32,56,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,78,111,100,101,46,100,97,116,97,32,61,61,61,32,39,33,39,41,32,123,92,114,92,110,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,100,111,109,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,39,39,41,44,32,99,104,105,108,100,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,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,100,111,109,46,114,101,109,111,118,101,67,104,105,108,100,40,99,104,105,108,100,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,78,111,100,101,32,61,32,110,101,120,116,83,105,98,108,105,110,103,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,78,111,100,101,32,61,32,100,111,109,46,102,105,114,115,116,67,104,105,108,100,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,70,108,97,103,115,32,61,61,61,32,50,32,47,42,32,72,97,115,86,78,111,100,101,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,40,99,104,105,108,100,78,111,100,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,40,99,104,105,108,100,114,101,110,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,83,105,98,108,105,110,103,32,61,32,99,104,105,108,100,78,111,100,101,46,110,101,120,116,83,105,98,108,105,110,103,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,121,100,114,97,116,101,86,78,111,100,101,40,99,104,105,108,100,114,101,110,44,32,99,104,105,108,100,78,111,100,101,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,78,111,100,101,32,61,32,110,101,120,116,83,105,98,108,105,110,103,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,99,104,105,108,100,70,108,97,103,115,32,38,32,49,50,32,47,42,32,77,117,108,116,105,112,108,101,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,101,110,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,32,61,32,99,104,105,108,100,114,101,110,91,105,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,40,99,104,105,108,100,78,111,100,101,41,41,32,123,92,114,92,110,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,109,111,117,110,116,40,99,104,105,108,100,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,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,110,101,120,116,83,105,98,108,105,110,103,32,61,32,99,104,105,108,100,78,111,100,101,46,110,101,120,116,83,105,98,108,105,110,103,59,92,114,92,110,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,104,121,100,114,97,116,101,86,78,111,100,101,40,99,104,105,108,100,44,32,99,104,105,108,100,78,111,100,101,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,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,99,104,105,108,100,78,111,100,101,32,61,32,110,101,120,116,83,105,98,108,105,110,103,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,99,108,101,97,114,32,97,110,121,32,111,116,104,101,114,32,68,79,77,32,110,111,100,101,115,44,32,116,104,101,114,101,32,115,104,111,117,108,100,32,98,101,32,111,110,108,121,32,97,32,115,105,110,103,108,101,32,101,110,116,114,121,32,102,111,114,32,116,104,101,32,114,111,111,116,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,99,104,105,108,100,78,111,100,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,83,105,98,108,105,110,103,32,61,32,99,104,105,108,100,78,111,100,101,46,110,101,120,116,83,105,98,108,105,110,103,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,114,101,109,111,118,101,67,104,105,108,100,40,99,104,105,108,100,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,78,111,100,101,32,61,32,110,101,120,116,83,105,98,108,105,110,103,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,33,105,115,78,117,108,108,40,100,111,109,46,102,105,114,115,116,67,104,105,108,100,41,32,38,38,32,33,105,115,83,97,109,101,80,114,111,112,115,73,110,110,101,114,72,84,77,76,40,100,111,109,44,32,112,114,111,112,115,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,116,101,120,116,67,111,110,116,101,110,116,32,61,32,39,39,59,32,47,47,32,100,111,109,32,104,97,115,32,99,111,110,116,101,110,116,44,32,98,117,116,32,86,78,111,100,101,32,104,97,115,32,110,111,32,99,104,105,108,100,114,101,110,32,114,101,109,111,118,101,32,101,118,101,114,121,116,104,105,110,103,32,102,114,111,109,32,68,79,77,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,102,108,97,103,115,32,38,32,52,52,56,32,47,42,32,70,111,114,109,69,108,101,109,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,101,108,101,109,101,110,116,32,105,115,32,102,111,114,109,32,101,108,101,109,101,110,116,44,32,119,101,32,110,101,101,100,32,116,111,32,99,108,101,97,114,32,100,101,102,97,117,108,116,86,97,108,117,101,32,97,108,115,111,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,100,101,102,97,117,108,116,86,97,108,117,101,32,61,32,39,39,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,40,112,114,111,112,115,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,80,114,111,112,115,40,118,78,111,100,101,44,32,102,108,97,103,115,44,32,112,114,111,112,115,44,32,100,111,109,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,79,114,85,110,100,101,102,40,99,108,97,115,115,78,97,109,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,111,109,46,99,108,97,115,115,78,97,109,101,32,33,61,61,32,39,39,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,39,99,108,97,115,115,39,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,115,83,86,71,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,99,108,97,115,115,39,44,32,99,108,97,115,115,78,97,109,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,99,108,97,115,115,78,97,109,101,32,61,32,99,108,97,115,115,78,97,109,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,114,101,102,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,82,101,102,40,100,111,109,44,32,114,101,102,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,121,100,114,97,116,101,84,101,120,116,40,118,78,111,100,101,44,32,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,111,109,46,110,111,100,101,84,121,112,101,32,33,61,61,32,51,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,68,111,109,32,61,32,109,111,117,110,116,84,101,120,116,40,118,78,111,100,101,44,32,110,117,108,108,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,100,111,109,32,61,32,110,101,119,68,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,112,108,97,99,101,67,104,105,108,100,40,100,111,109,46,112,97,114,101,110,116,78,111,100,101,44,32,110,101,119,68,111,109,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,101,120,116,32,61,32,118,78,111,100,101,46,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,111,109,46,110,111,100,101,86,97,108,117,101,32,33,61,61,32,116,101,120,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,110,111,100,101,86,97,108,117,101,32,61,32,116,101,120,116,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,100,111,109,32,61,32,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,121,100,114,97,116,101,86,78,111,100,101,40,118,78,111,100,101,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,108,97,103,115,32,61,32,118,78,111,100,101,46,102,108,97,103,115,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,108,97,103,115,32,38,32,49,52,32,47,42,32,67,111,109,112,111,110,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,121,100,114,97,116,101,67,111,109,112,111,110,101,110,116,40,118,78,111,100,101,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,44,32,40,102,108,97,103,115,32,38,32,52,32,47,42,32,67,111,109,112,111,110,101,110,116,67,108,97,115,115,32,42,47,41,32,62,32,48,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,102,108,97,103,115,32,38,32,52,56,49,32,47,42,32,69,108,101,109,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,121,100,114,97,116,101,69,108,101,109,101,110,116,40,118,78,111,100,101,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,102,108,97,103,115,32,38,32,49,54,32,47,42,32,84,101,120,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,121,100,114,97,116,101,84,101,120,116,40,118,78,111,100,101,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,102,108,97,103,115,32,38,32,53,49,50,32,47,42,32,86,111,105,100,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,100,111,109,32,61,32,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,69,114,114,111,114,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,121,100,114,97,116,101,40,105,110,112,117,116,44,32,112,97,114,101,110,116,68,111,109,44,32,99,97,108,108,98,97,99,107,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,111,109,32,61,32,112,97,114,101,110,116,68,111,109,46,102,105,114,115,116,67,104,105,108,100,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,40,100,111,109,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,73,110,118,97,108,105,100,40,105,110,112,117,116,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,121,100,114,97,116,101,86,78,111,100,101,40,105,110,112,117,116,44,32,100,111,109,44,32,69,77,80,84,89,95,79,66,74,44,32,102,97,108,115,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,32,61,32,112,97,114,101,110,116,68,111,109,46,102,105,114,115,116,67,104,105,108,100,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,99,108,101,97,114,32,97,110,121,32,111,116,104,101,114,32,68,79,77,32,110,111,100,101,115,44,32,116,104,101,114,101,32,115,104,111,117,108,100,32,98,101,32,111,110,108,121,32,97,32,115,105,110,103,108,101,32,101,110,116,114,121,32,102,111,114,32,116,104,101,32,114,111,111,116,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,40,100,111,109,32,61,32,100,111,109,46,110,101,120,116,83,105,98,108,105,110,103,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,68,111,109,46,114,101,109,111,118,101,67,104,105,108,100,40,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,76,73,70,69,67,89,67,76,69,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,65,108,108,40,76,73,70,69,67,89,67,76,69,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,68,111,109,46,36,86,32,61,32,105,110,112,117,116,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,99,97,108,108,98,97,99,107,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,98,97,99,107,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,112,108,97,99,101,87,105,116,104,78,101,119,78,111,100,101,40,108,97,115,116,78,111,100,101,44,32,110,101,120,116,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,117,110,109,111,117,110,116,40,108,97,115,116,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,114,101,112,108,97,99,101,67,104,105,108,100,40,112,97,114,101,110,116,68,111,109,44,32,109,111,117,110,116,40,110,101,120,116,78,111,100,101,44,32,110,117,108,108,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,44,32,108,97,115,116,78,111,100,101,46,100,111,109,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,116,99,104,40,108,97,115,116,86,78,111,100,101,44,32,110,101,120,116,86,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,86,78,111,100,101,32,33,61,61,32,110,101,120,116,86,78,111,100,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,70,108,97,103,115,32,61,32,110,101,120,116,86,78,111,100,101,46,102,108,97,103,115,32,124,32,48,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,86,78,111,100,101,46,102,108,97,103,115,32,33,61,61,32,110,101,120,116,70,108,97,103,115,32,124,124,32,110,101,120,116,70,108,97,103,115,32,38,32,50,48,52,56,32,47,42,32,82,101,67,114,101,97,116,101,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,112,108,97,99,101,87,105,116,104,78,101,119,78,111,100,101,40,108,97,115,116,86,78,111,100,101,44,32,110,101,120,116,86,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,110,101,120,116,70,108,97,103,115,32,38,32,52,56,49,32,47,42,32,69,108,101,109,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,69,108,101,109,101,110,116,40,108,97,115,116,86,78,111,100,101,44,32,110,101,120,116,86,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,110,101,120,116,70,108,97,103,115,32,38,32,49,52,32,47,42,32,67,111,109,112,111,110,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,67,111,109,112,111,110,101,110,116,40,108,97,115,116,86,78,111,100,101,44,32,110,101,120,116,86,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,44,32,40,110,101,120,116,70,108,97,103,115,32,38,32,52,32,47,42,32,67,111,109,112,111,110,101,110,116,67,108,97,115,115,32,42,47,41,32,62,32,48,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,110,101,120,116,70,108,97,103,115,32,38,32,49,54,32,47,42,32,84,101,120,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,84,101,120,116,40,108,97,115,116,86,78,111,100,101,44,32,110,101,120,116,86,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,110,101,120,116,70,108,97,103,115,32,38,32,53,49,50,32,47,42,32,86,111,105,100,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,86,78,111,100,101,46,100,111,109,32,61,32,108,97,115,116,86,78,111,100,101,46,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,80,111,114,116,97,108,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,80,111,114,116,97,108,40,108,97,115,116,86,78,111,100,101,44,32,110,101,120,116,86,78,111,100,101,44,32,99,111,110,116,101,120,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,116,99,104,80,111,114,116,97,108,40,108,97,115,116,86,78,111,100,101,44,32,110,101,120,116,86,78,111,100,101,44,32,99,111,110,116,101,120,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,67,111,110,116,97,105,110,101,114,32,61,32,108,97,115,116,86,78,111,100,101,46,116,121,112,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,67,111,110,116,97,105,110,101,114,32,61,32,110,101,120,116,86,78,111,100,101,46,116,121,112,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,67,104,105,108,100,114,101,110,32,61,32,110,101,120,116,86,78,111,100,101,46,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,112,97,116,99,104,67,104,105,108,100,114,101,110,40,108,97,115,116,86,78,111,100,101,46,99,104,105,108,100,70,108,97,103,115,44,32,110,101,120,116,86,78,111,100,101,46,99,104,105,108,100,70,108,97,103,115,44,32,108,97,115,116,86,78,111,100,101,46,99,104,105,108,100,114,101,110,44,32,110,101,120,116,67,104,105,108,100,114,101,110,44,32,108,97,115,116,67,111,110,116,97,105,110,101,114,44,32,99,111,110,116,101,120,116,44,32,102,97,108,115,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,110,101,120,116,86,78,111,100,101,46,100,111,109,32,61,32,108,97,115,116,86,78,111,100,101,46,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,67,111,110,116,97,105,110,101,114,32,33,61,61,32,110,101,120,116,67,111,110,116,97,105,110,101,114,32,38,38,32,33,105,115,73,110,118,97,108,105,100,40,110,101,120,116,67,104,105,108,100,114,101,110,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,110,101,120,116,67,104,105,108,100,114,101,110,46,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,97,115,116,67,111,110,116,97,105,110,101,114,46,114,101,109,111,118,101,67,104,105,108,100,40,110,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,110,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,116,99,104,69,108,101,109,101,110,116,40,108,97,115,116,86,78,111,100,101,44,32,110,101,120,116,86,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,84,97,103,32,61,32,110,101,120,116,86,78,111,100,101,46,116,121,112,101,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,86,78,111,100,101,46,116,121,112,101,32,33,61,61,32,110,101,120,116,84,97,103,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,112,108,97,99,101,87,105,116,104,78,101,119,78,111,100,101,40,108,97,115,116,86,78,111,100,101,44,32,110,101,120,116,86,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,111,109,32,61,32,108,97,115,116,86,78,111,100,101,46,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,70,108,97,103,115,32,61,32,110,101,120,116,86,78,111,100,101,46,102,108,97,103,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,80,114,111,112,115,32,61,32,108,97,115,116,86,78,111,100,101,46,112,114,111,112,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,80,114,111,112,115,32,61,32,110,101,120,116,86,78,111,100,101,46,112,114,111,112,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,70,111,114,109,69,108,101,109,101,110,116,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,115,67,111,110,116,114,111,108,108,101,100,86,97,108,117,101,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,86,78,111,100,101,46,100,111,109,32,61,32,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,83,86,71,32,61,32,105,115,83,86,71,32,124,124,32,40,110,101,120,116,70,108,97,103,115,32,38,32,51,50,32,47,42,32,83,118,103,69,108,101,109,101,110,116,32,42,47,41,32,62,32,48,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,105,110,108,105,110,101,100,32,112,97,116,99,104,80,114,111,112,115,32,32,45,45,32,115,116,97,114,116,115,32,45,45,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,80,114,111,112,115,32,33,61,61,32,110,101,120,116,80,114,111,112,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,80,114,111,112,115,79,114,69,109,112,116,121,32,61,32,108,97,115,116,80,114,111,112,115,32,124,124,32,69,77,80,84,89,95,79,66,74,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,32,61,32,110,101,120,116,80,114,111,112,115,32,124,124,32,69,77,80,84,89,95,79,66,74,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,32,33,61,61,32,69,77,80,84,89,95,79,66,74,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,115,70,111,114,109,69,108,101,109,101,110,116,32,61,32,40,110,101,120,116,70,108,97,103,115,32,38,32,52,52,56,32,47,42,32,70,111,114,109,69,108,101,109,101,110,116,32,42,47,41,32,62,32,48,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,111,114,109,69,108,101,109,101,110,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,115,67,111,110,116,114,111,108,108,101,100,86,97,108,117,101,32,61,32,105,115,67,111,110,116,114,111,108,108,101,100,70,111,114,109,69,108,101,109,101,110,116,40,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,32,105,110,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,86,97,108,117,101,32,61,32,108,97,115,116,80,114,111,112,115,79,114,69,109,112,116,121,91,112,114,111,112,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,86,97,108,117,101,32,61,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,91,112,114,111,112,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,86,97,108,117,101,32,33,61,61,32,110,101,120,116,86,97,108,117,101,41,32,123,92,114,92,110,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,112,97,116,99,104,80,114,111,112,40,112,114,111,112,44,32,108,97,115,116,86,97,108,117,101,44,32,110,101,120,116,86,97,108,117,101,44,32,100,111,109,44,32,105,115,83,86,71,44,32,104,97,115,67,111,110,116,114,111,108,108,101,100,86,97,108,117,101,44,32,108,97,115,116,86,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,80,114,111,112,115,79,114,69,109,112,116,121,32,33,61,61,32,69,77,80,84,89,95,79,66,74,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,112,114,111,112,36,49,32,105,110,32,108,97,115,116,80,114,111,112,115,79,114,69,109,112,116,121,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,100,111,32,110,111,116,32,97,100,100,32,97,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,32,99,104,101,99,107,32,104,101,114,101,44,32,105,116,32,97,102,102,101,99,116,115,32,112,101,114,102,111,114,109,97,110,99,101,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,112,114,111,112,36,49,41,32,38,38,32,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,108,97,115,116,80,114,111,112,115,79,114,69,109,112,116,121,91,112,114,111,112,36,49,93,41,41,32,123,92,114,92,110,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,112,97,116,99,104,80,114,111,112,40,112,114,111,112,36,49,44,32,108,97,115,116,80,114,111,112,115,79,114,69,109,112,116,121,91,112,114,111,112,36,49,93,44,32,110,117,108,108,44,32,100,111,109,44,32,105,115,83,86,71,44,32,104,97,115,67,111,110,116,114,111,108,108,101,100,86,97,108,117,101,44,32,108,97,115,116,86,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,67,104,105,108,100,114,101,110,32,61,32,108,97,115,116,86,78,111,100,101,46,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,67,104,105,108,100,114,101,110,32,61,32,110,101,120,116,86,78,111,100,101,46,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,82,101,102,32,61,32,110,101,120,116,86,78,111,100,101,46,114,101,102,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,67,108,97,115,115,78,97,109,101,32,61,32,108,97,115,116,86,78,111,100,101,46,99,108,97,115,115,78,97,109,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,67,108,97,115,115,78,97,109,101,32,61,32,110,101,120,116,86,78,111,100,101,46,99,108,97,115,115,78,97,109,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,67,104,105,108,100,114,101,110,32,33,61,61,32,110,101,120,116,67,104,105,108,100,114,101,110,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,67,104,105,108,100,114,101,110,40,108,97,115,116,86,78,111,100,101,46,99,104,105,108,100,70,108,97,103,115,44,32,110,101,120,116,86,78,111,100,101,46,99,104,105,108,100,70,108,97,103,115,44,32,108,97,115,116,67,104,105,108,100,114,101,110,44,32,110,101,120,116,67,104,105,108,100,114,101,110,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,32,38,38,32,110,101,120,116,84,97,103,32,33,61,61,32,39,102,111,114,101,105,103,110,79,98,106,101,99,116,39,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,111,114,109,69,108,101,109,101,110,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,99,101,115,115,69,108,101,109,101,110,116,40,110,101,120,116,70,108,97,103,115,44,32,110,101,120,116,86,78,111,100,101,44,32,100,111,109,44,32,110,101,120,116,80,114,111,112,115,79,114,69,109,112,116,121,44,32,102,97,108,115,101,44,32,104,97,115,67,111,110,116,114,111,108,108,101,100,86,97,108,117,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,105,110,108,105,110,101,100,32,112,97,116,99,104,80,114,111,112,115,32,32,45,45,32,101,110,100,115,32,45,45,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,67,108,97,115,115,78,97,109,101,32,33,61,61,32,110,101,120,116,67,108,97,115,115,78,97,109,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,79,114,85,110,100,101,102,40,110,101,120,116,67,108,97,115,115,78,97,109,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,39,99,108,97,115,115,39,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,115,83,86,71,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,99,108,97,115,115,39,44,32,110,101,120,116,67,108,97,115,115,78,97,109,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,99,108,97,115,115,78,97,109,101,32,61,32,110,101,120,116,67,108,97,115,115,78,97,109,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,110,101,120,116,82,101,102,41,32,38,38,32,108,97,115,116,86,78,111,100,101,46,114,101,102,32,33,61,61,32,110,101,120,116,82,101,102,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,82,101,102,40,100,111,109,44,32,110,101,120,116,82,101,102,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,116,99,104,67,104,105,108,100,114,101,110,40,108,97,115,116,67,104,105,108,100,70,108,97,103,115,44,32,110,101,120,116,67,104,105,108,100,70,108,97,103,115,44,32,108,97,115,116,67,104,105,108,100,114,101,110,44,32,110,101,120,116,67,104,105,108,100,114,101,110,44,32,112,97,114,101,110,116,68,79,77,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,108,97,115,116,67,104,105,108,100,70,108,97,103,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,50,32,47,42,32,72,97,115,86,78,111,100,101,67,104,105,108,100,114,101,110,32,42,47,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,110,101,120,116,67,104,105,108,100,70,108,97,103,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,50,32,47,42,32,72,97,115,86,78,111,100,101,67,104,105,108,100,114,101,110,32,42,47,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,40,108,97,115,116,67,104,105,108,100,114,101,110,44,32,110,101,120,116,67,104,105,108,100,114,101,110,44,32,112,97,114,101,110,116,68,79,77,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,49,32,47,42,32,72,97,115,73,110,118,97,108,105,100,67,104,105,108,100,114,101,110,32,42,47,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,40,108,97,115,116,67,104,105,108,100,114,101,110,44,32,112,97,114,101,110,116,68,79,77,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,40,108,97,115,116,67,104,105,108,100,114,101,110,44,32,112,97,114,101,110,116,68,79,77,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,65,114,114,97,121,67,104,105,108,100,114,101,110,40,110,101,120,116,67,104,105,108,100,114,101,110,44,32,112,97,114,101,110,116,68,79,77,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,49,32,47,42,32,72,97,115,73,110,118,97,108,105,100,67,104,105,108,100,114,101,110,32,42,47,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,110,101,120,116,67,104,105,108,100,70,108,97,103,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,50,32,47,42,32,72,97,115,86,78,111,100,101,67,104,105,108,100,114,101,110,32,42,47,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,40,110,101,120,116,67,104,105,108,100,114,101,110,44,32,112,97,114,101,110,116,68,79,77,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,49,32,47,42,32,72,97,115,73,110,118,97,108,105,100,67,104,105,108,100,114,101,110,32,42,47,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,65,114,114,97,121,67,104,105,108,100,114,101,110,40,110,101,120,116,67,104,105,108,100,114,101,110,44,32,112,97,114,101,110,116,68,79,77,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,67,104,105,108,100,70,108,97,103,115,32,38,32,49,50,32,47,42,32,77,117,108,116,105,112,108,101,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,76,101,110,103,116,104,32,61,32,108,97,115,116,67,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,76,101,110,103,116,104,32,61,32,110,101,120,116,67,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,97,115,116,32,112,97,116,104,39,115,32,102,111,114,32,98,111,116,104,32,97,108,103,111,114,105,116,104,109,115,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,76,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,76,101,110,103,116,104,32,62,32,48,41,32,123,92,114,92,110,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,109,111,117,110,116,65,114,114,97,121,67,104,105,108,100,114,101,110,40,110,101,120,116,67,104,105,108,100,114,101,110,44,32,112,97,114,101,110,116,68,79,77,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,110,101,120,116,76,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,65,108,108,67,104,105,108,100,114,101,110,40,112,97,114,101,110,116,68,79,77,44,32,108,97,115,116,67,104,105,108,100,114,101,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,110,101,120,116,67,104,105,108,100,70,108,97,103,115,32,61,61,61,32,56,32,47,42,32,72,97,115,75,101,121,101,100,67,104,105,108,100,114,101,110,32,42,47,32,38,38,32,108,97,115,116,67,104,105,108,100,70,108,97,103,115,32,61,61,61,32,56,32,47,42,32,72,97,115,75,101,121,101,100,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,75,101,121,101,100,67,104,105,108,100,114,101,110,40,108,97,115,116,67,104,105,108,100,114,101,110,44,32,110,101,120,116,67,104,105,108,100,114,101,110,44,32,112,97,114,101,110,116,68,79,77,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,44,32,108,97,115,116,76,101,110,103,116,104,44,32,110,101,120,116,76,101,110,103,116,104,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,78,111,110,75,101,121,101,100,67,104,105,108,100,114,101,110,40,108,97,115,116,67,104,105,108,100,114,101,110,44,32,110,101,120,116,67,104,105,108,100,114,101,110,44,32,112,97,114,101,110,116,68,79,77,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,44,32,108,97,115,116,76,101,110,103,116,104,44,32,110,101,120,116,76,101,110,103,116,104,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,110,101,120,116,67,104,105,108,100,70,108,97,103,115,32,61,61,61,32,49,32,47,42,32,72,97,115,73,110,118,97,108,105,100,67,104,105,108,100,114,101,110,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,65,108,108,67,104,105,108,100,114,101,110,40,112,97,114,101,110,116,68,79,77,44,32,108,97,115,116,67,104,105,108,100,114,101,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,65,108,108,67,104,105,108,100,114,101,110,40,112,97,114,101,110,116,68,79,77,44,32,108,97,115,116,67,104,105,108,100,114,101,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,40,110,101,120,116,67,104,105,108,100,114,101,110,44,32,112,97,114,101,110,116,68,79,77,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,67,108,97,115,115,67,111,109,112,111,110,101,110,116,40,105,110,115,116,97,110,99,101,44,32,110,101,120,116,83,116,97,116,101,44,32,110,101,120,116,86,78,111,100,101,44,32,110,101,120,116,80,114,111,112,115,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,44,32,102,111,114,99,101,44,32,102,114,111,109,83,101,116,83,116,97,116,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,83,116,97,116,101,32,61,32,105,110,115,116,97,110,99,101,46,115,116,97,116,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,80,114,111,112,115,32,61,32,105,110,115,116,97,110,99,101,46,112,114,111,112,115,59,92,114,92,110,32,32,32,32,32,32,32,32,110,101,120,116,86,78,111,100,101,46,99,104,105,108,100,114,101,110,32,61,32,105,110,115,116,97,110,99,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,110,100,101,114,79,117,116,112,117,116,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,115,116,97,110,99,101,46,36,85,78,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,80,114,111,112,115,32,33,61,61,32,110,101,120,116,80,114,111,112,115,32,124,124,32,110,101,120,116,80,114,111,112,115,32,61,61,61,32,69,77,80,84,89,95,79,66,74,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,102,114,111,109,83,101,116,83,116,97,116,101,32,38,38,32,105,115,70,117,110,99,116,105,111,110,40,105,110,115,116,97,110,99,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,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,66,82,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,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,110,101,120,116,80,114,111,112,115,44,32,99,111,110,116,101,120,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,105,110,115,116,97,110,99,101,32,99,111,109,112,111,110,101,110,116,32,119,97,115,32,114,101,109,111,118,101,100,32,100,117,114,105,110,103,32,105,116,115,32,111,119,110,32,117,112,100,97,116,101,32,100,111,32,110,111,116,104,105,110,103,46,46,46,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,115,116,97,110,99,101,46,36,85,78,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,66,82,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,115,116,97,110,99,101,46,36,80,83,83,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,83,116,97,116,101,32,61,32,99,111,109,98,105,110,101,70,114,111,109,40,110,101,120,116,83,116,97,116,101,44,32,105,110,115,116,97,110,99,101,46,36,80,83,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,80,83,83,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,80,83,32,61,32,110,117,108,108,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,47,42,32,85,112,100,97,116,101,32,105,102,32,115,99,117,32,105,115,32,110,111,116,32,100,101,102,105,110,101,100,44,32,111,114,32,105,116,32,114,101,116,117,114,110,115,32,116,114,117,116,104,121,32,118,97,108,117,101,32,111,114,32,102,111,114,99,101,32,42,47,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,104,97,115,83,67,85,32,61,32,66,111,111,108,101,97,110,40,105,110,115,116,97,110,99,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,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,111,114,99,101,32,124,124,32,33,104,97,115,83,67,85,32,124,124,32,40,104,97,115,83,67,85,32,38,38,32,105,110,115,116,97,110,99,101,46,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,40,110,101,120,116,80,114,111,112,115,44,32,110,101,120,116,83,116,97,116,101,44,32,99,111,110,116,101,120,116,41,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,105,110,115,116,97,110,99,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,66,83,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,40,110,101,120,116,80,114,111,112,115,44,32,110,101,120,116,83,116,97,116,101,44,32,99,111,110,116,101,120,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,66,83,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,112,114,111,112,115,32,61,32,110,101,120,116,80,114,111,112,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,115,116,97,116,101,32,61,32,110,101,120,116,83,116,97,116,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,46,98,101,102,111,114,101,82,101,110,100,101,114,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,98,101,102,111,114,101,82,101,110,100,101,114,40,105,110,115,116,97,110,99,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,110,100,101,114,79,117,116,112,117,116,32,61,32,105,110,115,116,97,110,99,101,46,114,101,110,100,101,114,40,110,101,120,116,80,114,111,112,115,44,32,110,101,120,116,83,116,97,116,101,44,32,99,111,110,116,101,120,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,46,97,102,116,101,114,82,101,110,100,101,114,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,97,102,116,101,114,82,101,110,100,101,114,40,105,110,115,116,97,110,99,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,105,100,85,112,100,97,116,101,32,61,32,114,101,110,100,101,114,79,117,116,112,117,116,32,33,61,61,32,78,79,95,79,80,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,67,111,110,116,101,120,116,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,105,110,115,116,97,110,99,101,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,67,111,110,116,101,120,116,32,61,32,105,110,115,116,97,110,99,101,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,79,114,85,110,100,101,102,40,99,104,105,108,100,67,111,110,116,101,120,116,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,67,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,67,111,110,116,101,120,116,32,61,32,99,111,109,98,105,110,101,70,114,111,109,40,99,111,110,116,101,120,116,44,32,99,104,105,108,100,67,111,110,116,101,120,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,67,88,32,61,32,99,104,105,108,100,67,111,110,116,101,120,116,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,105,100,85,112,100,97,116,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,73,110,112,117,116,32,61,32,105,110,115,116,97,110,99,101,46,36,76,73,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,73,110,112,117,116,32,61,32,40,105,110,115,116,97,110,99,101,46,36,76,73,32,61,32,104,97,110,100,108,101,67,111,109,112,111,110,101,110,116,73,110,112,117,116,40,114,101,110,100,101,114,79,117,116,112,117,116,44,32,110,101,120,116,86,78,111,100,101,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,40,108,97,115,116,73,110,112,117,116,44,32,110,101,120,116,73,110,112,117,116,44,32,112,97,114,101,110,116,68,111,109,44,32,99,104,105,108,100,67,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,105,110,115,116,97,110,99,101,46,99,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,99,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,40,108,97,115,116,80,114,111,112,115,44,32,108,97,115,116,83,116,97,116,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,112,114,111,112,115,32,61,32,110,101,120,116,80,114,111,112,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,115,116,97,116,101,32,61,32,110,101,120,116,83,116,97,116,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,110,101,120,116,86,78,111,100,101,46,100,111,109,32,61,32,105,110,115,116,97,110,99,101,46,36,76,73,46,100,111,109,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,116,99,104,67,111,109,112,111,110,101,110,116,40,108,97,115,116,86,78,111,100,101,44,32,110,101,120,116,86,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,44,32,105,115,67,108,97,115,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,84,121,112,101,32,61,32,110,101,120,116,86,78,111,100,101,46,116,121,112,101,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,75,101,121,32,61,32,108,97,115,116,86,78,111,100,101,46,107,101,121,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,75,101,121,32,61,32,110,101,120,116,86,78,111,100,101,46,107,101,121,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,86,78,111,100,101,46,116,121,112,101,32,33,61,61,32,110,101,120,116,84,121,112,101,32,124,124,32,108,97,115,116,75,101,121,32,33,61,61,32,110,101,120,116,75,101,121,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,112,108,97,99,101,87,105,116,104,78,101,119,78,111,100,101,40,108,97,115,116,86,78,111,100,101,44,32,110,101,120,116,86,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,80,114,111,112,115,32,61,32,110,101,120,116,86,78,111,100,101,46,112,114,111,112,115,32,124,124,32,69,77,80,84,89,95,79,66,74,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,67,108,97,115,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,115,116,97,110,99,101,32,61,32,108,97,115,116,86,78,111,100,101,46,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,85,80,68,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,86,32,61,32,110,101,120,116,86,78,111,100,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,112,100,97,116,101,67,108,97,115,115,67,111,109,112,111,110,101,110,116,40,105,110,115,116,97,110,99,101,44,32,105,110,115,116,97,110,99,101,46,115,116,97,116,101,44,32,110,101,120,116,86,78,111,100,101,44,32,110,101,120,116,80,114,111,112,115,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,44,32,102,97,108,115,101,44,32,102,97,108,115,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,116,97,110,99,101,46,36,85,80,68,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,104,111,117,108,100,85,112,100,97,116,101,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,80,114,111,112,115,32,61,32,108,97,115,116,86,78,111,100,101,46,112,114,111,112,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,72,111,111,107,115,32,61,32,110,101,120,116,86,78,111,100,101,46,114,101,102,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,72,111,111,107,115,68,101,102,105,110,101,100,32,61,32,33,105,115,78,117,108,108,79,114,85,110,100,101,102,40,110,101,120,116,72,111,111,107,115,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,73,110,112,117,116,32,61,32,108,97,115,116,86,78,111,100,101,46,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,86,78,111,100,101,46,100,111,109,32,61,32,108,97,115,116,86,78,111,100,101,46,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,86,78,111,100,101,46,99,104,105,108,100,114,101,110,32,61,32,108,97,115,116,73,110,112,117,116,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,72,111,111,107,115,68,101,102,105,110,101,100,32,38,38,32,105,115,70,117,110,99,116,105,111,110,40,110,101,120,116,72,111,111,107,115,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,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,104,111,117,108,100,85,112,100,97,116,101,32,61,32,110,101,120,116,72,111,111,107,115,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,108,97,115,116,80,114,111,112,115,44,32,110,101,120,116,80,114,111,112,115,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,104,111,117,108,100,85,112,100,97,116,101,32,33,61,61,32,102,97,108,115,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,72,111,111,107,115,68,101,102,105,110,101,100,32,38,38,32,105,115,70,117,110,99,116,105,111,110,40,110,101,120,116,72,111,111,107,115,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,72,111,111,107,115,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,40,108,97,115,116,80,114,111,112,115,44,32,110,101,120,116,80,114,111,112,115,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,73,110,112,117,116,32,61,32,110,101,120,116,84,121,112,101,40,110,101,120,116,80,114,111,112,115,44,32,99,111,110,116,101,120,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,73,110,112,117,116,32,33,61,61,32,78,79,95,79,80,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,73,110,112,117,116,32,61,32,104,97,110,100,108,101,67,111,109,112,111,110,101,110,116,73,110,112,117,116,40,110,101,120,116,73,110,112,117,116,44,32,110,101,120,116,86,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,40,108,97,115,116,73,110,112,117,116,44,32,110,101,120,116,73,110,112,117,116,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,86,78,111,100,101,46,99,104,105,108,100,114,101,110,32,61,32,110,101,120,116,73,110,112,117,116,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,86,78,111,100,101,46,100,111,109,32,61,32,110,101,120,116,73,110,112,117,116,46,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,72,111,111,107,115,68,101,102,105,110,101,100,32,38,38,32,105,115,70,117,110,99,116,105,111,110,40,110,101,120,116,72,111,111,107,115,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,41,41,32,123,92,114,92,110,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,110,101,120,116,72,111,111,107,115,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,40,108,97,115,116,80,114,111,112,115,44,32,110,101,120,116,80,114,111,112,115,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,108,97,115,116,73,110,112,117,116,46,102,108,97,103,115,32,38,32,49,52,32,47,42,32,67,111,109,112,111,110,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,97,115,116,73,110,112,117,116,46,112,97,114,101,110,116,86,78,111,100,101,32,61,32,110,101,120,116,86,78,111,100,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,116,99,104,84,101,120,116,40,108,97,115,116,86,78,111,100,101,44,32,110,101,120,116,86,78,111,100,101,44,32,112,97,114,101,110,116,68,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,84,101,120,116,32,61,32,110,101,120,116,86,78,111,100,101,46,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,101,120,116,78,111,100,101,32,61,32,112,97,114,101,110,116,68,111,109,46,102,105,114,115,116,67,104,105,108,100,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,47,47,32,71,117,97,114,100,32,97,103,97,105,110,115,116,32,101,120,116,101,114,110,97,108,32,99,104,97,110,103,101,32,111,110,32,68,79,77,32,110,111,100,101,46,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,40,116,101,120,116,78,111,100,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,68,111,109,46,116,101,120,116,67,111,110,116,101,110,116,32,61,32,110,101,120,116,84,101,120,116,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,32,61,32,112,97,114,101,110,116,68,111,109,46,102,105,114,115,116,67,104,105,108,100,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,32,61,32,108,97,115,116,86,78,111,100,101,46,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,84,101,120,116,32,33,61,61,32,108,97,115,116,86,78,111,100,101,46,99,104,105,108,100,114,101,110,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,110,111,100,101,86,97,108,117,101,32,61,32,110,101,120,116,84,101,120,116,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,110,101,120,116,86,78,111,100,101,46,100,111,109,32,61,32,100,111,109,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,116,99,104,78,111,110,75,101,121,101,100,67,104,105,108,100,114,101,110,40,108,97,115,116,67,104,105,108,100,114,101,110,44,32,110,101,120,116,67,104,105,108,100,114,101,110,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,44,32,108,97,115,116,67,104,105,108,100,114,101,110,76,101,110,103,116,104,44,32,110,101,120,116,67,104,105,108,100,114,101,110,76,101,110,103,116,104,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,111,109,109,111,110,76,101,110,103,116,104,32,61,32,108,97,115,116,67,104,105,108,100,114,101,110,76,101,110,103,116,104,32,62,32,110,101,120,116,67,104,105,108,100,114,101,110,76,101,110,103,116,104,32,63,32,110,101,120,116,67,104,105,108,100,114,101,110,76,101,110,103,116,104,32,58,32,108,97,115,116,67,104,105,108,100,114,101,110,76,101,110,103,116,104,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,32,61,32,48,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,67,104,105,108,100,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,67,104,105,108,100,59,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,59,32,105,32,60,32,99,111,109,109,111,110,76,101,110,103,116,104,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,67,104,105,108,100,32,61,32,110,101,120,116,67,104,105,108,100,114,101,110,91,105,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,97,115,116,67,104,105,108,100,32,61,32,108,97,115,116,67,104,105,108,100,114,101,110,91,105,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,67,104,105,108,100,46,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,67,104,105,108,100,32,61,32,110,101,120,116,67,104,105,108,100,114,101,110,91,105,93,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,110,101,120,116,67,104,105,108,100,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,40,108,97,115,116,67,104,105,108,100,44,32,110,101,120,116,67,104,105,108,100,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,97,115,116,67,104,105,108,100,114,101,110,91,105,93,32,61,32,110,101,120,116,67,104,105,108,100,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,67,104,105,108,100,114,101,110,76,101,110,103,116,104,32,60,32,110,101,120,116,67,104,105,108,100,114,101,110,76,101,110,103,116,104,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,99,111,109,109,111,110,76,101,110,103,116,104,59,32,105,32,60,32,110,101,120,116,67,104,105,108,100,114,101,110,76,101,110,103,116,104,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,67,104,105,108,100,32,61,32,110,101,120,116,67,104,105,108,100,114,101,110,91,105,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,67,104,105,108,100,46,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,67,104,105,108,100,32,61,32,110,101,120,116,67,104,105,108,100,114,101,110,91,105,93,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,110,101,120,116,67,104,105,108,100,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,40,110,101,120,116,67,104,105,108,100,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,108,97,115,116,67,104,105,108,100,114,101,110,76,101,110,103,116,104,32,62,32,110,101,120,116,67,104,105,108,100,114,101,110,76,101,110,103,116,104,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,99,111,109,109,111,110,76,101,110,103,116,104,59,32,105,32,60,32,108,97,115,116,67,104,105,108,100,114,101,110,76,101,110,103,116,104,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,40,108,97,115,116,67,104,105,108,100,114,101,110,91,105,93,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,116,99,104,75,101,121,101,100,67,104,105,108,100,114,101,110,40,97,44,32,98,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,44,32,97,76,101,110,103,116,104,44,32,98,76,101,110,103,116,104,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,69,110,100,32,61,32,97,76,101,110,103,116,104,32,45,32,49,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,98,69,110,100,32,61,32,98,76,101,110,103,116,104,32,45,32,49,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,106,32,61,32,48,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,78,111,100,101,32,61,32,97,91,106,93,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,98,78,111,100,101,32,61,32,98,91,106,93,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,80,111,115,59,92,114,92,110,32,32,32,32,32,32,32,32,47,47,32,83,116,101,112,32,49,92,114,92,110,32,32,32,32,32,32,32,32,47,47,32,116,115,108,105,110,116,58,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,114,92,110,32,32,32,32,32,32,32,32,111,117,116,101,114,58,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,121,110,99,32,110,111,100,101,115,32,119,105,116,104,32,116,104,101,32,115,97,109,101,32,107,101,121,32,97,116,32,116,104,101,32,98,101,103,105,110,110,105,110,103,46,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,97,78,111,100,101,46,107,101,121,32,61,61,61,32,98,78,111,100,101,46,107,101,121,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,78,111,100,101,46,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,91,106,93,32,61,32,98,78,111,100,101,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,98,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,40,97,78,111,100,101,44,32,98,78,111,100,101,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,91,106,93,32,61,32,98,78,111,100,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,106,43,43,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,106,32,62,32,97,69,110,100,32,124,124,32,106,32,62,32,98,69,110,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,32,111,117,116,101,114,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,78,111,100,101,32,61,32,97,91,106,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,78,111,100,101,32,61,32,98,91,106,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,78,111,100,101,32,61,32,97,91,97,69,110,100,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,78,111,100,101,32,61,32,98,91,98,69,110,100,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,121,110,99,32,110,111,100,101,115,32,119,105,116,104,32,116,104,101,32,115,97,109,101,32,107,101,121,32,97,116,32,116,104,101,32,101,110,100,46,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,97,78,111,100,101,46,107,101,121,32,61,61,61,32,98,78,111,100,101,46,107,101,121,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,78,111,100,101,46,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,91,98,69,110,100,93,32,61,32,98,78,111,100,101,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,98,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,40,97,78,111,100,101,44,32,98,78,111,100,101,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,91,97,69,110,100,93,32,61,32,98,78,111,100,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,69,110,100,45,45,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,69,110,100,45,45,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,106,32,62,32,97,69,110,100,32,124,124,32,106,32,62,32,98,69,110,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,32,111,117,116,101,114,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,78,111,100,101,32,61,32,97,91,97,69,110,100,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,78,111,100,101,32,61,32,98,91,98,69,110,100,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,106,32,62,32,97,69,110,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,106,32,60,61,32,98,69,110,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,80,111,115,32,61,32,98,69,110,100,32,43,32,49,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,78,111,100,101,32,61,32,110,101,120,116,80,111,115,32,60,32,98,76,101,110,103,116,104,32,63,32,98,91,110,101,120,116,80,111,115,93,46,100,111,109,32,58,32,110,117,108,108,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,106,32,60,61,32,98,69,110,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,78,111,100,101,32,61,32,98,91,106,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,78,111,100,101,46,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,91,106,93,32,61,32,98,78,111,100,101,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,98,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,106,43,43,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,101,114,116,79,114,65,112,112,101,110,100,40,100,111,109,44,32,109,111,117,110,116,40,98,78,111,100,101,44,32,110,117,108,108,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,44,32,110,101,120,116,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,106,32,62,32,98,69,110,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,106,32,60,61,32,97,69,110,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,40,97,91,106,43,43,93,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,83,116,97,114,116,32,61,32,106,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,98,83,116,97,114,116,32,61,32,106,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,76,101,102,116,32,61,32,97,69,110,100,32,45,32,106,32,43,32,49,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,98,76,101,102,116,32,61,32,98,69,110,100,32,45,32,106,32,43,32,49,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,111,117,114,99,101,115,32,61,32,91,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,98,76,101,102,116,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,111,117,114,99,101,115,46,112,117,115,104,40,48,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,75,101,101,112,32,116,114,97,99,107,32,105,102,32,105,116,115,32,112,111,115,115,105,98,108,101,32,116,111,32,114,101,109,111,118,101,32,119,104,111,108,101,32,68,79,77,32,117,115,105,110,103,32,116,101,120,116,67,111,110,116,101,110,116,32,61,32,39,39,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,97,110,82,101,109,111,118,101,87,104,111,108,101,67,111,110,116,101,110,116,32,61,32,97,76,101,102,116,32,61,61,61,32,97,76,101,110,103,116,104,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,111,118,101,100,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,111,115,32,61,32,48,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,116,99,104,101,100,32,61,32,48,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,104,101,110,32,115,105,122,101,115,32,97,114,101,32,115,109,97,108,108,44,32,106,117,115,116,32,108,111,111,112,32,116,104,101,109,32,116,104,114,111,117,103,104,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,76,101,110,103,116,104,32,60,32,52,32,124,124,32,40,97,76,101,102,116,32,124,32,98,76,101,102,116,41,32,60,32,51,50,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,97,83,116,97,114,116,59,32,105,32,60,61,32,97,69,110,100,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,78,111,100,101,32,61,32,97,91,105,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,97,116,99,104,101,100,32,60,32,98,76,101,102,116,41,32,123,92,114,92,110,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,111,114,32,40,106,32,61,32,98,83,116,97,114,116,59,32,106,32,60,61,32,98,69,110,100,59,32,106,43,43,41,32,123,92,114,92,110,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,98,78,111,100,101,32,61,32,98,91,106,93,59,92,114,92,110,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,105,102,32,40,97,78,111,100,101,46,107,101,121,32,61,61,61,32,98,78,111,100,101,46,107,101,121,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,111,117,114,99,101,115,91,106,32,45,32,98,83,116,97,114,116,93,32,61,32,105,32,43,32,49,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,97,110,82,101,109,111,118,101,87,104,111,108,101,67,111,110,116,101,110,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,110,82,101,109,111,118,101,87,104,111,108,101,67,111,110,116,101,110,116,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,105,32,62,32,97,83,116,97,114,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,40,97,91,97,83,116,97,114,116,43,43,93,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,111,115,32,62,32,106,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,118,101,100,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,111,115,32,61,32,106,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,78,111,100,101,46,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,91,106,93,32,61,32,98,78,111,100,101,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,98,78,111,100,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,40,97,78,111,100,101,44,32,98,78,111,100,101,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,101,100,43,43,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,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,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,99,97,110,82,101,109,111,118,101,87,104,111,108,101,67,111,110,116,101,110,116,32,38,38,32,106,32,62,32,98,69,110,100,41,32,123,92,114,92,110,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,114,101,109,111,118,101,40,97,78,111,100,101,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,33,99,97,110,82,101,109,111,118,101,87,104,111,108,101,67,111,110,116,101,110,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,40,97,78,111,100,101,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,73,110,100,101,120,32,61,32,123,125,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,112,32,107,101,121,115,32,98,121,32,116,104,101,105,114,32,105,110,100,101,120,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,98,83,116,97,114,116,59,32,105,32,60,61,32,98,69,110,100,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,73,110,100,101,120,91,98,91,105,93,46,107,101,121,93,32,61,32,105,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,114,121,32,116,111,32,112,97,116,99,104,32,115,97,109,101,32,107,101,121,115,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,97,83,116,97,114,116,59,32,105,32,60,61,32,97,69,110,100,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,78,111,100,101,32,61,32,97,91,105,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,97,116,99,104,101,100,32,60,32,98,76,101,102,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,106,32,61,32,107,101,121,73,110,100,101,120,91,97,78,111,100,101,46,107,101,121,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,106,32,33,61,61,32,118,111,105,100,32,48,41,32,123,92,114,92,110,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,105,102,32,40,99,97,110,82,101,109,111,118,101,87,104,111,108,101,67,111,110,116,101,110,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,110,82,101,109,111,118,101,87,104,111,108,101,67,111,110,116,101,110,116,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,105,32,62,32,97,83,116,97,114,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,40,97,91,97,83,116,97,114,116,43,43,93,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,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,125,92,114,92,110,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,98,78,111,100,101,32,61,32,98,91,106,93,59,92,114,92,110,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,115,111,117,114,99,101,115,91,106,32,45,32,98,83,116,97,114,116,93,32,61,32,105,32,43,32,49,59,92,114,92,110,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,105,102,32,40,112,111,115,32,62,32,106,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,118,101,100,32,61,32,116,114,117,101,59,92,114,92,110,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,125,92,114,92,110,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,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,111,115,32,61,32,106,59,92,114,92,110,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,125,92,114,92,110,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,105,102,32,40,98,78,111,100,101,46,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,91,106,93,32,61,32,98,78,111,100,101,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,98,78,111,100,101,41,59,92,114,92,110,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,125,92,114,92,110,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,112,97,116,99,104,40,97,78,111,100,101,44,32,98,78,111,100,101,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,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,112,97,116,99,104,101,100,43,43,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,33,99,97,110,82,101,109,111,118,101,87,104,111,108,101,67,111,110,116,101,110,116,41,32,123,92,114,92,110,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,114,101,109,111,118,101,40,97,78,111,100,101,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,33,99,97,110,82,101,109,111,118,101,87,104,111,108,101,67,111,110,116,101,110,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,40,97,78,111,100,101,44,32,100,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,102,97,115,116,45,112,97,116,104,58,32,105,102,32,110,111,116,104,105,110,103,32,112,97,116,99,104,101,100,32,114,101,109,111,118,101,32,97,108,108,32,111,108,100,32,97,110,100,32,97,100,100,32,97,108,108,32,110,101,119,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,97,110,82,101,109,111,118,101,87,104,111,108,101,67,111,110,116,101,110,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,65,108,108,67,104,105,108,100,114,101,110,40,100,111,109,44,32,97,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,65,114,114,97,121,67,104,105,108,100,114,101,110,40,98,44,32,100,111,109,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,111,118,101,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,101,113,32,61,32,108,105,115,95,97,108,103,111,114,105,116,104,109,40,115,111,117,114,99,101,115,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,106,32,61,32,115,101,113,46,108,101,110,103,116,104,32,45,32,49,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,98,76,101,102,116,32,45,32,49,59,32,105,32,62,61,32,48,59,32,105,45,45,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,111,117,114,99,101,115,91,105,93,32,61,61,61,32,48,41,32,123,92,114,92,110,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,112,111,115,32,61,32,105,32,43,32,98,83,116,97,114,116,59,92,114,92,110,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,98,78,111,100,101,32,61,32,98,91,112,111,115,93,59,92,114,92,110,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,105,102,32,40,98,78,111,100,101,46,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,91,112,111,115,93,32,61,32,98,78,111,100,101,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,98,78,111,100,101,41,59,92,114,92,110,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,125,92,114,92,110,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,110,101,120,116,80,111,115,32,61,32,112,111,115,32,43,32,49,59,92,114,92,110,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,105,110,115,101,114,116,79,114,65,112,112,101,110,100,40,100,111,109,44,32,109,111,117,110,116,40,98,78,111,100,101,44,32,110,117,108,108,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,44,32,110,101,120,116,80,111,115,32,60,32,98,76,101,110,103,116,104,32,63,32,98,91,110,101,120,116,80,111,115,93,46,100,111,109,32,58,32,110,117,108,108,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,106,32,60,32,48,32,124,124,32,105,32,33,61,61,32,115,101,113,91,106,93,41,32,123,92,114,92,110,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,112,111,115,32,61,32,105,32,43,32,98,83,116,97,114,116,59,92,114,92,110,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,98,78,111,100,101,32,61,32,98,91,112,111,115,93,59,92,114,92,110,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,110,101,120,116,80,111,115,32,61,32,112,111,115,32,43,32,49,59,92,114,92,110,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,105,110,115,101,114,116,79,114,65,112,112,101,110,100,40,100,111,109,44,32,98,78,111,100,101,46,100,111,109,44,32,110,101,120,116,80,111,115,32,60,32,98,76,101,110,103,116,104,32,63,32,98,91,110,101,120,116,80,111,115,93,46,100,111,109,32,58,32,110,117,108,108,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,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,106,45,45,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,112,97,116,99,104,101,100,32,33,61,61,32,98,76,101,102,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,119,104,101,110,32,112,97,116,99,104,101,100,32,99,111,117,110,116,32,100,111,101,115,110,39,116,32,109,97,116,99,104,32,98,32,108,101,110,103,116,104,32,119,101,32,110,101,101,100,32,116,111,32,105,110,115,101,114,116,32,116,104,111,115,101,32,110,101,119,32,111,110,101,115,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,108,111,111,112,32,98,97,99,107,119,97,114,100,115,32,115,111,32,119,101,32,99,97,110,32,117,115,101,32,105,110,115,101,114,116,66,101,102,111,114,101,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,98,76,101,102,116,32,45,32,49,59,32,105,32,62,61,32,48,59,32,105,45,45,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,111,117,114,99,101,115,91,105,93,32,61,61,61,32,48,41,32,123,92,114,92,110,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,112,111,115,32,61,32,105,32,43,32,98,83,116,97,114,116,59,92,114,92,110,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,98,78,111,100,101,32,61,32,98,91,112,111,115,93,59,92,114,92,110,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,105,102,32,40,98,78,111,100,101,46,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,91,112,111,115,93,32,61,32,98,78,111,100,101,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,98,78,111,100,101,41,59,92,114,92,110,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,125,92,114,92,110,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,110,101,120,116,80,111,115,32,61,32,112,111,115,32,43,32,49,59,92,114,92,110,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,105,110,115,101,114,116,79,114,65,112,112,101,110,100,40,100,111,109,44,32,109,111,117,110,116,40,98,78,111,100,101,44,32,110,117,108,108,44,32,99,111,110,116,101,120,116,44,32,105,115,83,86,71,41,44,32,110,101,120,116,80,111,115,32,60,32,98,76,101,110,103,116,104,32,63,32,98,91,110,101,120,116,80,111,115,93,46,100,111,109,32,58,32,110,117,108,108,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,76,111,110,103,101,115,116,95,105,110,99,114,101,97,115,105,110,103,95,115,117,98,115,101,113,117,101,110,99,101,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,115,95,97,108,103,111,114,105,116,104,109,40,97,114,114,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,32,61,32,97,114,114,46,115,108,105,99,101,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,91,48,93,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,106,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,117,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,101,110,32,61,32,97,114,114,46,108,101,110,103,116,104,59,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,114,114,73,32,61,32,97,114,114,91,105,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,114,114,73,32,33,61,61,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,106,32,61,32,114,101,115,117,108,116,91,114,101,115,117,108,116,46,108,101,110,103,116,104,32,45,32,49,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,114,114,91,106,93,32,60,32,97,114,114,73,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,91,105,93,32,61,32,106,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,105,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,32,61,32,48,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,32,61,32,114,101,115,117,108,116,46,108,101,110,103,116,104,32,45,32,49,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,117,32,60,32,118,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,32,61,32,40,40,117,32,43,32,118,41,32,47,32,50,41,32,124,32,48,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,114,114,91,114,101,115,117,108,116,91,99,93,93,32,60,32,97,114,114,73,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,32,61,32,99,32,43,32,49,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,32,61,32,99,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,114,114,73,32,60,32,97,114,114,91,114,101,115,117,108,116,91,117,93,93,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,117,32,62,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,91,105,93,32,61,32,114,101,115,117,108,116,91,117,32,45,32,49,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,117,93,32,61,32,105,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,117,32,61,32,114,101,115,117,108,116,46,108,101,110,103,116,104,59,92,114,92,110,32,32,32,32,32,32,32,32,118,32,61,32,114,101,115,117,108,116,91,117,32,45,32,49,93,59,92,114,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,117,45,45,32,62,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,117,93,32,61,32,118,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,32,61,32,112,91,118,93,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,100,111,99,117,109,101,110,116,66,111,100,121,32,61,32,105,115,66,114,111,119,115,101,114,32,63,32,100,111,99,117,109,101,110,116,46,98,111,100,121,32,58,32,110,117,108,108,59,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,105,110,112,117,116,44,32,112,97,114,101,110,116,68,111,109,44,32,99,97,108,108,98,97,99,107,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,112,117,116,32,61,61,61,32,78,79,95,79,80,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,111,111,116,73,110,112,117,116,32,61,32,112,97,114,101,110,116,68,111,109,46,36,86,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,79,114,85,110,100,101,102,40,114,111,111,116,73,110,112,117,116,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,73,110,118,97,108,105,100,40,105,110,112,117,116,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,112,117,116,46,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,112,117,116,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,105,110,112,117,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,40,112,97,114,101,110,116,68,111,109,46,102,105,114,115,116,67,104,105,108,100,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,110,116,40,105,110,112,117,116,44,32,112,97,114,101,110,116,68,111,109,44,32,69,77,80,84,89,95,79,66,74,44,32,102,97,108,115,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,68,111,109,46,36,86,32,61,32,105,110,112,117,116,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,121,100,114,97,116,101,40,105,110,112,117,116,44,32,112,97,114,101,110,116,68,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,111,111,116,73,110,112,117,116,32,61,32,105,110,112,117,116,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,79,114,85,110,100,101,102,40,105,110,112,117,116,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,40,114,111,111,116,73,110,112,117,116,44,32,112,97,114,101,110,116,68,111,109,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,68,111,109,46,36,86,32,61,32,110,117,108,108,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,112,117,116,46,100,111,109,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,112,117,116,32,61,32,100,105,114,101,99,116,67,108,111,110,101,40,105,110,112,117,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,40,114,111,111,116,73,110,112,117,116,44,32,105,110,112,117,116,44,32,112,97,114,101,110,116,68,111,109,44,32,69,77,80,84,89,95,79,66,74,44,32,102,97,108,115,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,111,111,116,73,110,112,117,116,32,61,32,112,97,114,101,110,116,68,111,109,46,36,86,32,61,32,105,110,112,117,116,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,76,73,70,69,67,89,67,76,69,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,65,108,108,40,76,73,70,69,67,89,67,76,69,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,99,97,108,108,98,97,99,107,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,98,97,99,107,40,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,111,112,116,105,111,110,115,46,114,101,110,100,101,114,67,111,109,112,108,101,116,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,114,101,110,100,101,114,67,111,109,112,108,101,116,101,40,114,111,111,116,73,110,112,117,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,111,111,116,73,110,112,117,116,32,38,38,32,114,111,111,116,73,110,112,117,116,46,102,108,97,103,115,32,38,32,49,52,32,47,42,32,67,111,109,112,111,110,101,110,116,32,42,47,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,111,111,116,73,110,112,117,116,46,99,104,105,108,100,114,101,110,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,92,110,32,32,32,32,118,97,114,32,114,101,115,111,108,118,101,100,80,114,111,109,105,115,101,32,61,32,116,121,112,101,111,102,32,80,114,111,109,105,115,101,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,63,32,110,117,108,108,32,58,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,59,92,114,92,110,32,32,32,32,47,47,32,114,97,102,46,98,105,110,100,40,119,105,110,100,111,119,41,32,105,115,32,110,101,101,100,101,100,32,116,111,32,119,111,114,107,32,97,114,111,117,110,100,32,98,117,103,32,105,110,32,73,69,49,48,45,73,69,49,49,32,115,116,114,105,99,116,32,109,111,100,101,32,40,84,121,112,101,69,114,114,111,114,58,32,73,110,118,97,108,105,100,32,99,97,108,108,105,110,103,32,111,98,106,101,99,116,41,92,114,92,110,32,32,32,32,118,97,114,32,102,97,108,108,98,97,99,107,77,101,116,104,111,100,32,61,32,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,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,63,32,115,101,116,84,105,109,101,111,117,116,32,58,32,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,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,110,101,120,116,84,105,99,107,40,102,110,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,101,115,111,108,118,101,100,80,114,111,109,105,115,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,111,108,118,101,100,80,114,111,109,105,115,101,46,116,104,101,110,40,102,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,108,98,97,99,107,77,101,116,104,111,100,40,102,110,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,113,117,101,117,101,83,116,97,116,101,67,104,97,110,103,101,115,40,99,111,109,112,111,110,101,110,116,44,32,110,101,119,83,116,97,116,101,44,32,99,97,108,108,98,97,99,107,44,32,102,111,114,99,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,110,101,119,83,116,97,116,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,83,116,97,116,101,32,61,32,110,101,119,83,116,97,116,101,40,99,111,109,112,111,110,101,110,116,46,115,116,97,116,101,44,32,99,111,109,112,111,110,101,110,116,46,112,114,111,112,115,44,32,99,111,109,112,111,110,101,110,116,46,99,111,110,116,101,120,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,101,110,100,105,110,103,32,61,32,99,111,109,112,111,110,101,110,116,46,36,80,83,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,79,114,85,110,100,101,102,40,112,101,110,100,105,110,103,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,46,36,80,83,32,61,32,110,101,119,83,116,97,116,101,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,115,116,97,116,101,75,101,121,32,105,110,32,110,101,119,83,116,97,116,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,101,110,100,105,110,103,91,115,116,97,116,101,75,101,121,93,32,61,32,110,101,119,83,116,97,116,101,91,115,116,97,116,101,75,101,121,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,99,111,109,112,111,110,101,110,116,46,36,80,83,83,32,38,38,32,33,99,111,109,112,111,110,101,110,116,46,36,66,82,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,99,111,109,112,111,110,101,110,116,46,36,85,80,68,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,46,36,80,83,83,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,46,36,85,80,68,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,112,112,108,121,83,116,97,116,101,40,99,111,109,112,111,110,101,110,116,44,32,102,111,114,99,101,44,32,99,97,108,108,98,97,99,107,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,46,36,85,80,68,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,115,121,110,99,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,113,117,101,117,101,32,61,32,99,111,109,112,111,110,101,110,116,46,36,81,85,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,117,108,108,40,113,117,101,117,101,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,113,117,101,117,101,32,61,32,99,111,109,112,111,110,101,110,116,46,36,81,85,32,61,32,91,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,84,105,99,107,40,112,114,111,109,105,115,101,67,97,108,108,98,97,99,107,40,99,111,109,112,111,110,101,110,116,44,32,113,117,101,117,101,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,99,97,108,108,98,97,99,107,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,113,117,101,117,101,46,112,117,115,104,40,99,97,108,108,98,97,99,107,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,46,36,80,83,83,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,111,109,112,111,110,101,110,116,46,36,66,82,32,38,38,32,105,115,70,117,110,99,116,105,111,110,40,99,97,108,108,98,97,99,107,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,76,73,70,69,67,89,67,76,69,46,112,117,115,104,40,99,97,108,108,98,97,99,107,46,98,105,110,100,40,99,111,109,112,111,110,101,110,116,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,114,111,109,105,115,101,67,97,108,108,98,97,99,107,40,99,111,109,112,111,110,101,110,116,44,32,113,117,101,117,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,46,36,81,85,32,61,32,110,117,108,108,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,46,36,85,80,68,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,112,112,108,121,83,116,97,116,101,40,99,111,109,112,111,110,101,110,116,44,32,102,97,108,115,101,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,101,110,32,61,32,113,117,101,117,101,46,108,101,110,103,116,104,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,113,117,101,117,101,91,105,93,46,99,97,108,108,40,99,111,109,112,111,110,101,110,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,46,36,85,80,68,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,125,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,112,112,108,121,83,116,97,116,101,40,99,111,109,112,111,110,101,110,116,44,32,102,111,114,99,101,44,32,99,97,108,108,98,97,99,107,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,111,109,112,111,110,101,110,116,46,36,85,78,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,111,114,99,101,32,124,124,32,33,99,111,109,112,111,110,101,110,116,46,36,66,82,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,46,36,80,83,83,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,101,110,100,105,110,103,83,116,97,116,101,32,61,32,99,111,109,112,111,110,101,110,116,46,36,80,83,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,101,118,83,116,97,116,101,32,61,32,99,111,109,112,111,110,101,110,116,46,115,116,97,116,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,83,116,97,116,101,32,61,32,99,111,109,98,105,110,101,70,114,111,109,40,112,114,101,118,83,116,97,116,101,44,32,112,101,110,100,105,110,103,83,116,97,116,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,99,111,109,112,111,110,101,110,116,46,112,114,111,112,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,116,101,120,116,32,61,32,99,111,109,112,111,110,101,110,116,46,99,111,110,116,101,120,116,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,46,36,80,83,32,61,32,110,117,108,108,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,78,111,100,101,32,61,32,99,111,109,112,111,110,101,110,116,46,36,86,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,73,110,112,117,116,32,61,32,99,111,109,112,111,110,101,110,116,46,36,76,73,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,114,101,110,116,68,111,109,32,61,32,108,97,115,116,73,110,112,117,116,46,100,111,109,32,38,38,32,108,97,115,116,73,110,112,117,116,46,100,111,109,46,112,97,114,101,110,116,78,111,100,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,112,100,97,116,101,67,108,97,115,115,67,111,109,112,111,110,101,110,116,40,99,111,109,112,111,110,101,110,116,44,32,110,101,120,116,83,116,97,116,101,44,32,118,78,111,100,101,44,32,112,114,111,112,115,44,32,112,97,114,101,110,116,68,111,109,44,32,99,111,110,116,101,120,116,44,32,40,118,78,111,100,101,46,102,108,97,103,115,32,38,32,51,50,32,47,42,32,83,118,103,69,108,101,109,101,110,116,32,42,47,41,32,62,32,48,44,32,102,111,114,99,101,44,32,116,114,117,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,111,109,112,111,110,101,110,116,46,36,85,78,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,99,111,109,112,111,110,101,110,116,46,36,76,73,46,102,108,97,103,115,32,38,32,49,48,50,52,32,47,42,32,80,111,114,116,97,108,32,42,47,41,32,61,61,61,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,111,109,32,61,32,99,111,109,112,111,110,101,110,116,46,36,76,73,46,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,33,105,115,78,117,108,108,40,40,118,78,111,100,101,32,61,32,118,78,111,100,101,46,112,97,114,101,110,116,86,78,111,100,101,41,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,118,78,111,100,101,46,102,108,97,103,115,32,38,32,49,52,32,47,42,32,67,111,109,112,111,110,101,110,116,32,42,47,41,32,62,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,78,111,100,101,46,100,111,109,32,61,32,100,111,109,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,76,73,70,69,67,89,67,76,69,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,65,108,108,40,76,73,70,69,67,89,67,76,69,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,46,115,116,97,116,101,32,61,32,99,111,109,112,111,110,101,110,116,46,36,80,83,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,46,36,80,83,32,61,32,110,117,108,108,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,99,97,108,108,98,97,99,107,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,98,97,99,107,46,99,97,108,108,40,99,111,109,112,111,110,101,110,116,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,118,97,114,32,67,111,109,112,111,110,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,67,111,109,112,111,110,101,110,116,40,112,114,111,112,115,44,32,99,111,110,116,101,120,116,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,116,101,32,61,32,110,117,108,108,59,92,114,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,116,101,114,110,97,108,32,112,114,111,112,101,114,116,105,101,115,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,66,82,32,61,32,102,97,108,115,101,59,32,47,47,32,66,76,79,67,75,32,82,69,78,68,69,82,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,66,83,32,61,32,116,114,117,101,59,32,47,47,32,66,76,79,67,75,32,83,84,65,84,69,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,80,83,83,32,61,32,102,97,108,115,101,59,32,47,47,32,80,69,78,68,73,78,71,32,83,69,84,32,83,84,65,84,69,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,80,83,32,61,32,110,117,108,108,59,32,47,47,32,80,69,78,68,73,78,71,32,83,84,65,84,69,32,40,80,65,82,84,73,65,76,32,111,114,32,70,85,76,76,41,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,76,73,32,61,32,110,117,108,108,59,32,47,47,32,76,65,83,84,32,73,78,80,85,84,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,86,32,61,32,110,117,108,108,59,32,47,47,32,86,78,79,68,69,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,85,78,32,61,32,102,97,108,115,101,59,32,47,47,32,85,78,77,79,85,78,84,69,68,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,67,88,32,61,32,110,117,108,108,59,32,47,47,32,67,72,73,76,68,67,79,78,84,69,88,84,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,85,80,68,32,61,32,116,114,117,101,59,32,47,47,32,85,80,68,65,84,73,78,71,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,81,85,32,61,32,110,117,108,108,59,32,47,47,32,81,85,69,85,69,92,114,92,110,32,32,32,32,32,32,32,32,47,42,42,32,64,116,121,112,101,32,123,111,98,106,101,99,116,125,32,42,47,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,112,114,111,112,115,32,61,32,112,114,111,112,115,32,124,124,32,69,77,80,84,89,95,79,66,74,59,92,114,92,110,32,32,32,32,32,32,32,32,47,42,42,32,64,116,121,112,101,32,123,111,98,106,101,99,116,125,32,42,47,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,32,124,124,32,69,77,80,84,89,95,79,66,74,59,32,47,47,32,99,111,110,116,101,120,116,32,115,104,111,117,108,100,32,110,111,116,32,98,101,32,109,117,116,97,98,108,101,92,114,92,110,32,32,32,32,125,59,92,114,92,110,32,32,32,32,67,111,109,112,111,110,101,110,116,46,112,114,111,116,111,116,121,112,101,46,102,111,114,99,101,85,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,102,111,114,99,101,85,112,100,97,116,101,32,40,99,97,108,108,98,97,99,107,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,85,78,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,47,47,32,68,111,32,110,111,116,32,97,108,108,111,119,32,100,111,117,98,108,101,32,114,101,110,100,101,114,32,100,117,114,105,110,103,32,102,111,114,99,101,32,117,112,100,97,116,101,92,114,92,110,32,32,32,32,32,32,32,32,113,117,101,117,101,83,116,97,116,101,67,104,97,110,103,101,115,40,116,104,105,115,44,32,123,125,44,32,99,97,108,108,98,97,99,107,44,32,116,114,117,101,41,59,92,114,92,110,32,32,32,32,125,59,92,114,92,110,32,32,32,32,67,111,109,112,111,110,101,110,116,46,112,114,111,116,111,116,121,112,101,46,115,101,116,83,116,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,115,101,116,83,116,97,116,101,32,40,110,101,119,83,116,97,116,101,44,32,99,97,108,108,98,97,99,107,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,85,78,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,36,66,83,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,113,117,101,117,101,83,116,97,116,101,67,104,97,110,103,101,115,40,116,104,105,115,44,32,110,101,119,83,116,97,116,101,44,32,99,97,108,108,98,97,99,107,44,32,102,97,108,115,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,59,92,114,92,110,32,32,32,32,47,47,32,116,115,108,105,110,116,58,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,58,110,111,45,101,109,112,116,121,92,114,92,110,32,32,32,32,67,111,109,112,111,110,101,110,116,46,112,114,111,116,111,116,121,112,101,46,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,32,40,110,101,120,116,80,114,111,112,115,44,32,110,101,120,116,83,116,97,116,101,44,32,110,101,120,116,67,111,110,116,101,120,116,41,32,123,32,125,59,92,110,92,110,92,110,92,110,32,32,32,32,118,97,114,32,74,83,88,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,79,98,106,101,99,116,46,102,114,101,101,122,101,40,123,92,110,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,118,97,114,32,69,78,84,69,82,32,61,32,49,50,59,92,110,32,32,32,32,118,97,114,32,76,69,70,84,95,65,82,82,79,87,32,61,32,51,55,59,92,110,32,32,32,32,118,97,114,32,85,80,95,65,82,82,79,87,32,61,32,51,56,59,92,110,32,32,32,32,118,97,114,32,82,73,71,72,84,95,65,82,82,79,87,32,61,32,51,57,59,92,110,32,32,32,32,118,97,114,32,68,79,87,78,95,65,82,82,79,87,32,61,32,52,48,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,72,101,108,112,101,114,32,109,101,116,104,111,100,32,116,111,32,99,114,101,97,116,101,32,97,110,32,111,98,106,101,99,116,32,102,111,114,32,97,32,110,101,119,32,110,111,100,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,108,97,110,107,78,111,100,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,39,78,101,119,32,78,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,116,114,101,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,100,105,116,105,110,103,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,99,117,115,101,100,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,115,116,97,110,99,101,44,32,67,111,110,115,116,114,117,99,116,111,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,67,111,110,115,116,114,117,99,116,111,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,118,97,114,32,99,114,101,97,116,101,67,108,97,115,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,32,112,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,112,114,111,112,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,101,115,99,114,105,112,116,111,114,32,61,32,112,114,111,112,115,91,105,93,59,92,110,32,32,32,32,32,32,32,32,32,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,61,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,124,124,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,100,101,115,99,114,105,112,116,111,114,46,99,111,110,102,105,103,117,114,97,98,108,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,92,34,118,97,108,117,101,92,34,32,105,110,32,100,101,115,99,114,105,112,116,111,114,41,32,100,101,115,99,114,105,112,116,111,114,46,119,114,105,116,97,98,108,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,100,101,115,99,114,105,112,116,111,114,46,107,101,121,44,32,100,101,115,99,114,105,112,116,111,114,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,67,111,110,115,116,114,117,99,116,111,114,44,32,112,114,111,116,111,80,114,111,112,115,44,32,115,116,97,116,105,99,80,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,116,111,80,114,111,112,115,41,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,44,32,112,114,111,116,111,80,114,111,112,115,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,116,97,116,105,99,80,114,111,112,115,41,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,115,116,97,116,105,99,80,114,111,112,115,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,67,111,110,115,116,114,117,99,116,111,114,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,40,41,59,92,110,92,110,32,32,32,32,118,97,114,32,95,101,120,116,101,110,100,115,32,61,32,79,98,106,101,99,116,46,97,115,115,105,103,110,32,124,124,32,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,59,92,110,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,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,115,111,117,114,99,101,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,91,107,101,121,93,32,61,32,115,111,117,114,99,101,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,118,97,114,32,105,110,104,101,114,105,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,115,117,98,67,108,97,115,115,44,32,115,117,112,101,114,67,108,97,115,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,115,117,112,101,114,67,108,97,115,115,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,115,117,112,101,114,67,108,97,115,115,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,32,43,32,116,121,112,101,111,102,32,115,117,112,101,114,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,115,117,98,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,115,117,112,101,114,67,108,97,115,115,32,38,38,32,115,117,112,101,114,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,44,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,115,117,98,67,108,97,115,115,44,92,110,32,32,32,32,32,32,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,117,112,101,114,67,108,97,115,115,41,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,32,63,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,115,117,98,67,108,97,115,115,44,32,115,117,112,101,114,67,108,97,115,115,41,32,58,32,115,117,98,67,108,97,115,115,46,95,95,112,114,111,116,111,95,95,32,61,32,115,117,112,101,114,67,108,97,115,115,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,118,97,114,32,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,32,61,32,102,117,110,99,116,105,111,110,32,40,115,101,108,102,44,32,99,97,108,108,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,115,101,108,102,41,32,123,92,110,32,32,32,32,32,32,32,32,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,92,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,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,108,108,32,38,38,32,40,116,121,112,101,111,102,32,99,97,108,108,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,32,124,124,32,116,121,112,101,111,102,32,99,97,108,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,63,32,99,97,108,108,32,58,32,115,101,108,102,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,118,97,114,32,67,104,101,99,107,98,111,120,32,61,32,102,117,110,99,116,105,111,110,32,40,95,67,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,104,101,114,105,116,115,40,67,104,101,99,107,98,111,120,44,32,95,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,67,104,101,99,107,98,111,120,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,67,104,101,99,107,98,111,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,40,116,104,105,115,44,32,40,67,104,101,99,107,98,111,120,46,95,95,112,114,111,116,111,95,95,32,124,124,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,67,104,101,99,107,98,111,120,41,41,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,67,108,97,115,115,40,67,104,101,99,107,98,111,120,44,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,108,105,99,107,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,101,102,105,110,101,32,111,117,114,32,100,101,102,97,117,108,116,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,109,105,116,32,97,110,32,101,118,101,110,116,32,119,105,116,104,32,111,117,114,32,102,111,114,119,97,114,100,101,100,32,77,111,117,115,101,69,118,101,110,116,44,32,110,111,100,101,44,32,97,110,100,32,100,101,102,97,117,108,116,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,110,111,100,101,46,99,108,105,99,107,39,44,32,101,118,101,110,116,44,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,32,104,97,110,100,108,101,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,110,108,101,115,115,32,100,101,102,97,117,108,116,32,105,115,32,112,114,101,118,101,110,116,101,100,44,32,97,117,116,111,32,99,97,108,108,32,111,117,114,32,100,101,102,97,117,108,116,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,101,118,101,110,116,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,86,78,111,100,101,40,54,52,44,32,39,105,110,112,117,116,39,44,32,110,117,108,108,44,32,110,117,108,108,44,32,49,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,99,104,101,99,107,101,100,39,58,32,116,104,105,115,46,112,114,111,112,115,46,99,104,101,99,107,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,58,32,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,67,108,105,99,107,39,58,32,116,104,105,115,46,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,116,121,112,101,39,58,32,39,99,104,101,99,107,98,111,120,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,93,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,67,104,101,99,107,98,111,120,59,92,110,32,32,32,32,125,40,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,85,116,105,108,105,116,121,32,109,101,116,104,111,100,32,102,111,114,32,112,97,114,115,105,110,103,32,97,110,100,32,109,101,114,103,105,110,103,32,99,117,115,116,111,109,32,99,108,97,115,115,32,110,97,109,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,110,111,100,101,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,116,121,112,101,32,39,108,105,39,32,111,114,32,39,97,39,32,97,116,116,114,105,98,117,116,101,32,111,98,106,101,99,116,32,116,121,112,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,65,114,114,97,121,125,32,80,114,111,99,101,115,115,101,100,32,99,108,97,115,115,32,110,97,109,101,115,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,99,108,97,115,115,108,105,115,116,32,61,32,40,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,39,108,105,39,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,65,116,116,114,115,32,61,32,110,111,100,101,46,105,116,114,101,101,91,116,121,112,101,93,46,97,116,116,114,105,98,117,116,101,115,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,108,97,115,115,78,97,109,101,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,65,112,112,101,110,100,32,97,110,121,32,99,117,115,116,111,109,32,99,108,97,115,115,32,110,97,109,101,115,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,117,115,116,111,109,67,108,97,115,115,101,115,32,61,32,110,111,100,101,65,116,116,114,115,46,99,108,97,115,115,32,124,124,32,110,111,100,101,65,116,116,114,115,46,99,108,97,115,115,78,97,109,101,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,83,117,112,112,111,114,116,32,99,97,108,108,98,97,99,107,115,92,110,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,70,117,110,99,116,105,111,110,40,99,117,115,116,111,109,67,108,97,115,115,101,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,117,115,116,111,109,67,108,97,115,115,101,115,32,61,32,99,117,115,116,111,109,67,108,97,115,115,101,115,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,99,117,115,116,111,109,32,99,108,97,115,115,101,115,32,105,110,116,111,32,97,110,32,97,114,114,97,121,32,97,110,100,32,99,111,110,99,97,116,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,95,46,105,115,69,109,112,116,121,40,99,117,115,116,111,109,67,108,97,115,115,101,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,83,116,114,105,110,103,40,99,117,115,116,111,109,67,108,97,115,115,101,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,117,112,112,111,114,116,32,112,101,114,105,111,100,115,32,102,111,114,32,98,97,99,107,119,97,114,100,115,32,99,111,109,112,97,116,32,119,105,116,104,32,104,121,112,101,114,115,99,114,105,112,116,45,102,111,114,109,97,116,116,101,100,32,99,108,97,115,115,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,78,97,109,101,115,32,61,32,99,108,97,115,115,78,97,109,101,115,46,99,111,110,99,97,116,40,99,117,115,116,111,109,67,108,97,115,115,101,115,46,115,112,108,105,116,40,47,91,92,92,115,92,92,46,93,43,47,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,95,46,105,115,65,114,114,97,121,40,99,117,115,116,111,109,67,108,97,115,115,101,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,78,97,109,101,115,32,61,32,99,108,97,115,115,78,97,109,101,115,46,99,111,110,99,97,116,40,99,117,115,116,111,109,67,108,97,115,115,101,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,97,115,115,78,97,109,101,115,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,118,97,114,32,69,100,105,116,84,111,111,108,98,97,114,32,61,32,102,117,110,99,116,105,111,110,32,40,95,67,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,104,101,114,105,116,115,40,69,100,105,116,84,111,111,108,98,97,114,44,32,95,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,69,100,105,116,84,111,111,108,98,97,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,69,100,105,116,84,111,111,108,98,97,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,40,116,104,105,115,44,32,40,69,100,105,116,84,111,111,108,98,97,114,46,95,95,112,114,111,116,111,95,95,32,124,124,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,69,100,105,116,84,111,111,108,98,97,114,41,41,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,67,108,97,115,115,40,69,100,105,116,84,111,111,108,98,97,114,44,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,97,100,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,97,100,100,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,98,108,97,110,107,78,111,100,101,40,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,101,120,112,97,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,100,105,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,100,105,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,109,111,118,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,114,101,109,111,118,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,98,117,116,116,111,110,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,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,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,117,116,116,111,110,115,46,112,117,115,104,40,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,97,39,44,32,39,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,101,110,99,105,108,39,44,32,110,117,108,108,44,32,49,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,99,108,105,99,107,39,58,32,116,104,105,115,46,101,100,105,116,46,98,105,110,100,40,116,104,105,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,116,105,116,108,101,39,58,32,39,69,100,105,116,32,116,104,105,115,32,110,111,100,101,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,117,116,116,111,110,115,46,112,117,115,104,40,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,97,39,44,32,39,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,108,117,115,39,44,32,110,117,108,108,44,32,49,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,99,108,105,99,107,39,58,32,116,104,105,115,46,97,100,100,46,98,105,110,100,40,116,104,105,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,116,105,116,108,101,39,58,32,39,65,100,100,32,97,32,99,104,105,108,100,32,110,111,100,101,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,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,114,101,109,111,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,117,116,116,111,110,115,46,112,117,115,104,40,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,97,39,44,32,39,98,116,110,32,105,99,111,110,32,105,99,111,110,45,109,105,110,117,115,39,44,32,110,117,108,108,44,32,49,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,99,108,105,99,107,39,58,32,116,104,105,115,46,114,101,109,111,118,101,46,98,105,110,100,40,116,104,105,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,116,105,116,108,101,39,58,32,39,82,101,109,111,118,101,32,116,104,105,115,32,110,111,100,101,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,115,112,97,110,39,44,32,39,98,116,110,45,103,114,111,117,112,39,44,32,98,117,116,116,111,110,115,44,32,48,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,93,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,69,100,105,116,84,111,111,108,98,97,114,59,92,110,32,32,32,32,125,40,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,118,97,114,32,69,109,112,116,121,76,105,115,116,32,61,32,102,117,110,99,116,105,111,110,32,40,95,67,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,104,101,114,105,116,115,40,69,109,112,116,121,76,105,115,116,44,32,95,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,69,109,112,116,121,76,105,115,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,69,109,112,116,121,76,105,115,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,40,116,104,105,115,44,32,40,69,109,112,116,121,76,105,115,116,46,95,95,112,114,111,116,111,95,95,32,124,124,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,69,109,112,116,121,76,105,115,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,67,108,97,115,115,40,69,109,112,116,121,76,105,115,116,44,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,111,108,39,44,32,110,117,108,108,44,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,108,105,39,44,32,39,108,101,97,102,39,44,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,115,112,97,110,39,44,32,39,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,39,44,32,116,104,105,115,46,112,114,111,112,115,46,116,101,120,116,44,32,48,41,44,32,50,41,44,32,50,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,93,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,69,109,112,116,121,76,105,115,116,59,92,110,32,32,32,32,125,40,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,109,112,97,114,101,115,32,97,108,108,32,107,101,121,115,32,111,110,32,116,104,101,32,103,105,118,101,110,32,115,116,97,116,101,46,32,82,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,97,110,121,32,100,105,102,102,101,114,101,110,99,101,32,101,120,105,115,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,112,114,101,118,105,111,117,115,83,116,97,116,101,32,80,114,101,118,105,111,117,115,32,115,116,97,116,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,99,117,114,114,101,110,116,83,116,97,116,101,32,32,67,117,114,114,101,110,116,32,115,116,97,116,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,68,105,102,102,101,114,101,110,99,101,32,119,97,115,32,102,111,117,110,100,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,116,97,116,101,67,111,109,112,97,114,97,116,111,114,40,112,114,101,118,105,111,117,115,83,116,97,116,101,44,32,99,117,114,114,101,110,116,83,116,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,65,108,119,97,121,115,32,116,114,101,97,116,32,100,105,114,116,121,32,102,108,97,103,32,97,115,32,97,32,115,116,97,116,101,32,100,105,102,102,101,114,101,110,99,101,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,115,68,105,114,116,121,32,61,32,99,117,114,114,101,110,116,83,116,97,116,101,46,100,105,114,116,121,32,124,124,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,68,105,114,116,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,99,117,114,114,101,110,116,83,116,97,116,101,41,44,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,32,33,61,61,32,39,100,105,114,116,121,39,32,38,38,32,99,117,114,114,101,110,116,83,116,97,116,101,91,107,101,121,93,32,33,61,61,32,112,114,101,118,105,111,117,115,83,116,97,116,101,91,107,101,121,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,115,68,105,114,116,121,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,68,105,114,116,121,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,69,100,105,116,70,111,114,109,32,61,32,102,117,110,99,116,105,111,110,32,40,95,67,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,104,101,114,105,116,115,40,69,100,105,116,70,111,114,109,44,32,95,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,69,100,105,116,70,111,114,109,40,112,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,69,100,105,116,70,111,114,109,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,40,116,104,105,115,44,32,40,69,100,105,116,70,111,114,109,46,95,95,112,114,111,116,111,95,95,32,124,124,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,69,100,105,116,70,111,114,109,41,41,46,99,97,108,108,40,116,104,105,115,44,32,112,114,111,112,115,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,115,116,97,116,101,32,61,32,95,116,104,105,115,46,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,40,112,114,111,112,115,46,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,67,108,97,115,115,40,69,100,105,116,70,111,114,109,44,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,110,111,100,101,46,116,101,120,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,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,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,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,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,100,97,116,97,46,110,111,100,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,40,110,101,120,116,80,114,111,112,115,44,32,110,101,120,116,83,116,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,97,116,101,67,111,109,112,97,114,97,116,111,114,40,116,104,105,115,46,115,116,97,116,101,44,32,110,101,120,116,83,116,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,108,105,99,107,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,101,102,105,110,101,32,111,117,114,32,100,101,102,97,117,108,116,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,109,105,116,32,97,110,32,101,118,101,110,116,32,119,105,116,104,32,111,117,114,32,102,111,114,119,97,114,100,101,100,32,77,111,117,115,101,69,118,101,110,116,44,32,110,111,100,101,44,32,97,110,100,32,100,101,102,97,117,108,116,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,110,111,100,101,46,99,108,105,99,107,39,44,32,101,118,101,110,116,44,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,32,104,97,110,100,108,101,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,110,108,101,115,115,32,100,101,102,97,117,108,116,32,105,115,32,112,114,101,118,101,110,116,101,100,44,32,97,117,116,111,32,99,97,108,108,32,111,117,114,32,100,101,102,97,117,108,116,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,101,118,101,110,116,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,107,101,121,112,114,101,115,115,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,107,101,121,112,114,101,115,115,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,119,104,105,99,104,32,61,61,61,32,69,78,84,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,97,118,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,110,112,117,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,110,112,117,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,116,97,116,101,40,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,101,118,101,110,116,46,116,97,114,103,101,116,46,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,97,110,99,101,108,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,97,110,99,101,108,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,97,118,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,97,118,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,97,99,104,101,32,99,117,114,114,101,110,116,32,116,101,120,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,114,105,103,105,110,97,108,84,101,120,116,32,61,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,101,120,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,84,101,120,116,32,61,32,116,104,105,115,46,114,101,102,46,118,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,112,100,97,116,101,32,116,104,101,32,116,101,120,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,101,116,40,39,116,101,120,116,39,44,32,110,101,119,84,101,120,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,105,115,97,98,108,101,32,101,100,105,116,105,110,103,32,97,110,100,32,117,112,100,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,39,101,100,105,116,105,110,103,39,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,114,105,103,105,110,97,108,84,101,120,116,32,33,61,61,32,110,101,119,84,101,120,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,110,111,100,101,46,101,100,105,116,101,100,39,44,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,32,111,114,105,103,105,110,97,108,84,101,120,116,44,32,110,101,119,84,101,120,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,102,111,114,109,39,44,32,110,117,108,108,44,32,91,99,114,101,97,116,101,86,78,111,100,101,40,54,52,44,32,39,105,110,112,117,116,39,44,32,110,117,108,108,44,32,110,117,108,108,44,32,49,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,67,108,105,99,107,39,58,32,102,117,110,99,116,105,111,110,32,111,110,67,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,73,110,112,117,116,39,58,32,116,104,105,115,46,105,110,112,117,116,46,98,105,110,100,40,116,104,105,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,75,101,121,80,114,101,115,115,39,58,32,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,118,97,108,117,101,39,58,32,116,104,105,115,46,115,116,97,116,101,46,116,101,120,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,32,110,117,108,108,44,32,102,117,110,99,116,105,111,110,32,40,101,108,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,51,46,114,101,102,32,61,32,101,108,101,109,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,115,112,97,110,39,44,32,39,98,116,110,45,103,114,111,117,112,39,44,32,91,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,98,117,116,116,111,110,39,44,32,39,98,116,110,32,105,99,111,110,32,105,99,111,110,45,99,104,101,99,107,39,44,32,110,117,108,108,44,32,49,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,67,108,105,99,107,39,58,32,116,104,105,115,46,115,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,116,105,116,108,101,39,58,32,39,83,97,118,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,116,121,112,101,39,58,32,39,98,117,116,116,111,110,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,98,117,116,116,111,110,39,44,32,39,98,116,110,32,105,99,111,110,32,105,99,111,110,45,99,114,111,115,115,39,44,32,110,117,108,108,44,32,49,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,67,108,105,99,107,39,58,32,116,104,105,115,46,99,97,110,99,101,108,46,98,105,110,100,40,116,104,105,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,116,105,116,108,101,39,58,32,39,67,97,110,99,101,108,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,116,121,112,101,39,58,32,39,98,117,116,116,111,110,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,93,44,32,52,41,93,44,32,52,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,115,117,98,109,105,116,39,58,32,102,117,110,99,116,105,111,110,32,111,110,115,117,98,109,105,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,93,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,69,100,105,116,70,111,114,109,59,92,110,32,32,32,32,125,40,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,118,97,114,32,78,111,100,101,65,110,99,104,111,114,32,61,32,102,117,110,99,116,105,111,110,32,40,95,67,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,104,101,114,105,116,115,40,78,111,100,101,65,110,99,104,111,114,44,32,95,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,78,111,100,101,65,110,99,104,111,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,78,111,100,101,65,110,99,104,111,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,40,116,104,105,115,44,32,40,78,111,100,101,65,110,99,104,111,114,46,95,95,112,114,111,116,111,95,95,32,124,124,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,78,111,100,101,65,110,99,104,111,114,41,41,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,67,108,97,115,115,40,78,111,100,101,65,110,99,104,111,114,44,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,98,108,117,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,98,108,117,114,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,108,105,99,107,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,112,114,111,112,115,32,61,32,116,104,105,115,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,95,112,114,111,112,115,46,110,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,32,61,32,95,112,114,111,112,115,46,100,111,109,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,101,102,105,110,101,32,111,117,114,32,100,101,102,97,117,108,116,32,104,97,110,100,108,101,114,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,50,46,112,114,111,112,115,46,101,100,105,116,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,109,101,116,97,75,101,121,32,124,124,32,101,118,101,110,116,46,99,116,114,108,75,101,121,32,124,124,32,101,118,101,110,116,46,115,104,105,102,116,75,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,115,104,105,102,116,75,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,99,108,101,97,114,83,101,108,101,99,116,105,111,110,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,101,108,101,99,116,101,100,32,61,32,100,111,109,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,101,100,41,32,123,92,110,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,100,111,109,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,100,111,109,46,95,116,114,101,101,44,32,100,111,109,46,95,116,114,101,101,46,98,111,117,110,100,105,110,103,78,111,100,101,115,40,115,101,108,101,99,116,101,100,44,32,110,111,100,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,115,101,108,101,99,116,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,100,111,109,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,41,32,123,92,110,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,110,111,100,101,46,100,101,115,101,108,101,99,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,101,108,101,99,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,109,105,116,32,97,110,32,101,118,101,110,116,32,119,105,116,104,32,111,117,114,32,102,111,114,119,97,114,100,101,100,32,77,111,117,115,101,69,118,101,110,116,44,32,110,111,100,101,44,32,97,110,100,32,100,101,102,97,117,108,116,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,99,108,105,99,107,39,44,32,101,118,101,110,116,44,32,110,111,100,101,44,32,104,97,110,100,108,101,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,110,108,101,115,115,32,100,101,102,97,117,108,116,32,105,115,32,112,114,101,118,101,110,116,101,100,44,32,97,117,116,111,32,99,97,108,108,32,111,117,114,32,100,101,102,97,117,108,116,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,101,118,101,110,116,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,110,116,101,120,116,77,101,110,117,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,110,116,101,120,116,77,101,110,117,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,112,114,111,112,115,50,32,61,32,116,104,105,115,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,95,112,114,111,112,115,50,46,110,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,32,61,32,95,112,114,111,112,115,50,46,100,111,109,59,92,110,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,99,111,110,116,101,120,116,109,101,110,117,39,44,32,101,118,101,110,116,44,32,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,100,98,108,99,108,105,99,107,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,100,98,108,99,108,105,99,107,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,112,114,111,112,115,51,32,61,32,116,104,105,115,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,95,112,114,111,112,115,51,46,110,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,32,61,32,95,112,114,111,112,115,51,46,100,111,109,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,101,102,105,110,101,32,111,117,114,32,100,101,102,97,117,108,116,32,104,97,110,100,108,101,114,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,108,101,97,114,32,116,101,120,116,32,115,101,108,101,99,116,105,111,110,32,119,104,105,99,104,32,111,99,99,117,114,115,32,111,110,32,100,111,117,98,108,101,32,99,108,105,99,107,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,99,108,101,97,114,83,101,108,101,99,116,105,111,110,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,116,111,103,103,108,101,67,111,108,108,97,112,115,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,109,105,116,32,97,110,32,101,118,101,110,116,32,119,105,116,104,32,111,117,114,32,102,111,114,119,97,114,100,101,100,32,77,111,117,115,101,69,118,101,110,116,44,32,110,111,100,101,44,32,97,110,100,32,100,101,102,97,117,108,116,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,100,98,108,99,108,105,99,107,39,44,32,101,118,101,110,116,44,32,110,111,100,101,44,32,104,97,110,100,108,101,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,110,108,101,115,115,32,100,101,102,97,117,108,116,32,105,115,32,112,114,101,118,101,110,116,101,100,44,32,97,117,116,111,32,99,97,108,108,32,111,117,114,32,100,101,102,97,117,108,116,32,104,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,101,118,101,110,116,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,102,111,99,117,115,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,102,111,99,117,115,40,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,109,111,117,115,101,100,111,119,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,109,111,117,115,101,100,111,119,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,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,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,116,116,114,105,98,117,116,101,115,32,61,32,95,46,99,108,111,110,101,40,110,111,100,101,46,105,116,114,101,101,46,97,46,97,116,116,114,105,98,117,116,101,115,41,32,124,124,32,123,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,46,116,97,98,105,110,100,101,120,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,46,117,110,115,101,108,101,99,116,97,98,108,101,32,61,32,39,111,110,39,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,66,117,105,108,100,32,97,110,100,32,115,101,116,32,99,108,97,115,115,110,97,109,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,108,97,115,115,78,97,109,101,115,32,61,32,99,108,97,115,115,108,105,115,116,40,110,111,100,101,44,32,39,97,39,41,46,99,111,110,99,97,116,40,91,39,116,105,116,108,101,39,44,32,39,105,99,111,110,39,93,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,111,108,100,101,114,32,61,32,116,104,105,115,46,112,114,111,112,115,46,101,120,112,97,110,100,101,100,32,63,32,39,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,39,32,58,32,39,105,99,111,110,45,102,111,108,100,101,114,39,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,78,97,109,101,115,46,112,117,115,104,40,110,111,100,101,46,105,116,114,101,101,46,105,99,111,110,32,124,124,32,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,32,63,32,102,111,108,100,101,114,32,58,32,39,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,39,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,46,99,108,97,115,115,32,61,32,97,116,116,114,105,98,117,116,101,115,46,99,108,97,115,115,78,97,109,101,32,61,32,99,108,97,115,115,78,97,109,101,115,46,106,111,105,110,40,39,32,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,116,101,110,116,32,61,32,110,111,100,101,46,116,101,120,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,101,100,105,116,105,110,103,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,32,61,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,86,78,111,100,101,40,50,44,32,69,100,105,116,70,111,114,109,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,100,111,109,39,58,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,110,111,100,101,39,58,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,114,109,97,108,105,122,101,80,114,111,112,115,40,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,97,39,44,32,110,117,108,108,44,32,99,111,110,116,101,110,116,44,32,48,44,32,95,101,120,116,101,110,100,115,40,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,100,97,116,97,45,117,105,100,39,58,32,110,111,100,101,46,105,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,66,108,117,114,39,58,32,116,104,105,115,46,98,108,117,114,46,98,105,110,100,40,116,104,105,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,67,108,105,99,107,39,58,32,116,104,105,115,46,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,67,111,110,116,101,120,116,77,101,110,117,39,58,32,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,68,98,108,67,108,105,99,107,39,58,32,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,70,111,99,117,115,39,58,32,116,104,105,115,46,102,111,99,117,115,46,98,105,110,100,40,116,104,105,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,77,111,117,115,101,68,111,119,110,39,58,32,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,32,97,116,116,114,105,98,117,116,101,115,41,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,93,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,78,111,100,101,65,110,99,104,111,114,59,92,110,32,32,32,32,125,40,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,118,97,114,32,84,111,103,103,108,101,65,110,99,104,111,114,32,61,32,102,117,110,99,116,105,111,110,32,40,95,67,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,104,101,114,105,116,115,40,84,111,103,103,108,101,65,110,99,104,111,114,44,32,95,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,84,111,103,103,108,101,65,110,99,104,111,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,84,111,103,103,108,101,65,110,99,104,111,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,40,116,104,105,115,44,32,40,84,111,103,103,108,101,65,110,99,104,111,114,46,95,95,112,114,111,116,111,95,95,32,124,124,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,84,111,103,103,108,101,65,110,99,104,111,114,41,41,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,67,108,97,115,115,40,84,111,103,103,108,101,65,110,99,104,111,114,44,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,108,97,115,115,78,97,109,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,108,97,115,115,78,97,109,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,116,111,103,103,108,101,32,105,99,111,110,32,39,32,43,32,40,116,104,105,115,46,112,114,111,112,115,46,99,111,108,108,97,112,115,101,100,32,63,32,39,105,99,111,110,45,101,120,112,97,110,100,39,32,58,32,39,105,99,111,110,45,99,111,108,108,97,112,115,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,97,39,44,32,116,104,105,115,46,99,108,97,115,115,78,97,109,101,40,41,44,32,110,117,108,108,44,32,49,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,67,108,105,99,107,39,58,32,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,93,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,84,111,103,103,108,101,65,110,99,104,111,114,59,92,110,32,32,32,32,125,40,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,118,97,114,32,76,105,115,116,73,116,101,109,32,61,32,102,117,110,99,116,105,111,110,32,40,95,67,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,104,101,114,105,116,115,40,76,105,115,116,73,116,101,109,44,32,95,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,76,105,115,116,73,116,101,109,40,112,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,76,105,115,116,73,116,101,109,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,40,116,104,105,115,44,32,40,76,105,115,116,73,116,101,109,46,95,95,112,114,111,116,111,95,95,32,124,124,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,76,105,115,116,73,116,101,109,41,41,46,99,97,108,108,40,116,104,105,115,44,32,112,114,111,112,115,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,115,116,97,116,101,32,61,32,95,116,104,105,115,46,115,116,97,116,101,70,114,111,109,78,111,100,101,40,112,114,111,112,115,46,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,67,108,97,115,115,40,76,105,115,116,73,116,101,109,44,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,116,97,116,101,70,114,111,109,78,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,116,97,116,101,70,114,111,109,78,111,100,101,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,105,114,116,121,58,32,110,111,100,101,46,105,116,114,101,101,46,100,105,114,116,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,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,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,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,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,100,97,116,97,46,110,111,100,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,40,110,101,120,116,80,114,111,112,115,44,32,110,101,120,116,83,116,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,83,116,97,116,101,46,100,105,114,116,121,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,103,101,116,65,116,116,114,105,98,117,116,101,115,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,65,116,116,114,105,98,117,116,101,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,116,116,114,105,98,117,116,101,115,32,61,32,95,46,99,108,111,110,101,40,110,111,100,101,46,105,116,114,101,101,46,108,105,46,97,116,116,114,105,98,117,116,101,115,41,32,124,124,32,123,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,46,99,108,97,115,115,32,61,32,97,116,116,114,105,98,117,116,101,115,46,99,108,97,115,115,78,97,109,101,32,61,32,116,104,105,115,46,103,101,116,67,108,97,115,115,78,97,109,101,115,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,111,114,99,101,32,105,110,116,101,114,110,97,108,45,117,115,101,32,97,116,116,114,105,98,117,116,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,91,39,100,97,116,97,45,117,105,100,39,93,32,61,32,110,111,100,101,46,105,100,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,108,108,111,119,32,100,114,97,103,32,97,110,100,32,100,114,111,112,63,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,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,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,46,100,114,97,103,103,97,98,108,101,32,61,32,110,111,100,101,46,115,116,97,116,101,40,39,100,114,97,103,103,97,98,108,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,46,111,110,68,114,97,103,69,110,100,32,61,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,46,111,110,68,114,97,103,69,110,116,101,114,32,61,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,46,111,110,68,114,97,103,76,101,97,118,101,32,61,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,46,111,110,68,114,97,103,83,116,97,114,116,32,61,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,114,101,32,119,101,32,97,32,118,97,108,105,100,32,100,114,111,112,32,116,97,114,103,101,116,63,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,115,116,97,116,101,40,39,100,114,111,112,45,116,97,114,103,101,116,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,46,111,110,68,114,97,103,79,118,101,114,32,61,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,46,111,110,68,114,111,112,32,61,32,116,104,105,115,46,111,110,68,114,111,112,46,98,105,110,100,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,116,105,110,103,32,116,111,32,110,117,108,108,32,102,111,114,99,101,115,32,114,101,109,111,118,97,108,32,111,102,32,112,114,105,111,114,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,46,111,110,68,114,97,103,79,118,101,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,105,98,117,116,101,115,46,111,110,68,114,111,112,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,116,116,114,105,98,117,116,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,103,101,116,67,108,97,115,115,78,97,109,101,115,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,67,108,97,115,115,78,97,109,101,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,97,116,101,32,61,32,110,111,100,101,46,105,116,114,101,101,46,115,116,97,116,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,115,116,97,116,101,32,99,108,97,115,115,110,97,109,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,108,97,115,115,78,97,109,101,115,32,61,32,99,108,97,115,115,108,105,115,116,40,110,111,100,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,106,115,112,101,114,102,46,99,111,109,47,111,98,106,101,99,116,45,107,101,121,115,45,118,115,45,101,97,99,104,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,115,116,97,116,101,41,44,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,116,97,116,101,91,107,101,121,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,78,97,109,101,115,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,118,101,114,115,101,32,97,110,100,32,97,100,100,105,116,105,111,110,97,108,32,99,108,97,115,115,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,110,111,100,101,46,104,105,100,100,101,110,40,41,32,38,38,32,110,111,100,101,46,114,101,109,111,118,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,78,97,109,101,115,46,112,117,115,104,40,39,104,105,100,100,101,110,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,101,120,112,97,110,100,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,78,97,109,101,115,46,112,117,115,104,40,39,101,120,112,97,110,100,101,100,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,78,97,109,101,115,46,112,117,115,104,40,110,111,100,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,32,63,32,39,102,111,108,100,101,114,39,32,58,32,39,108,101,97,102,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,97,115,115,78,97,109,101,115,46,106,111,105,110,40,39,32,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,40,101,118,101,110,116,44,32,101,108,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,108,105,101,110,116,89,32,61,32,101,118,101,110,116,46,99,108,105,101,110,116,89,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,82,101,99,116,32,61,32,101,108,101,109,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,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,121,84,104,114,101,115,104,111,108,100,70,111,114,65,98,111,118,101,32,61,32,116,97,114,103,101,116,82,101,99,116,46,116,111,112,32,43,32,116,97,114,103,101,116,82,101,99,116,46,104,101,105,103,104,116,32,47,32,51,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,121,84,104,114,101,115,104,111,108,100,70,111,114,66,101,108,111,119,32,61,32,116,97,114,103,101,116,82,101,99,116,46,98,111,116,116,111,109,32,45,32,116,97,114,103,101,116,82,101,99,116,46,104,101,105,103,104,116,32,47,32,51,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,105,114,32,61,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,108,105,101,110,116,89,32,60,61,32,121,84,104,114,101,115,104,111,108,100,70,111,114,65,98,111,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,105,114,32,61,32,45,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,99,108,105,101,110,116,89,32,62,61,32,121,84,104,114,101,115,104,111,108,100,70,111,114,66,101,108,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,105,114,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,105,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,111,110,68,114,97,103,83,116,97,114,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,111,110,68,114,97,103,83,116,97,114,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,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,32,61,32,39,109,111,118,101,39,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,100,97,116,97,84,114,97,110,115,102,101,114,46,100,114,111,112,69,102,102,101,99,116,32,61,32,39,109,111,118,101,39,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,117,101,32,116,111,32,92,34,112,114,111,116,101,99,116,101,100,92,34,32,109,111,100,101,32,119,101,32,99,97,110,39,116,32,97,99,99,101,115,115,32,97,110,121,32,68,97,116,97,84,114,97,110,115,102,101,114,32,100,97,116,97,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,100,117,114,105,110,103,32,116,104,101,32,100,114,97,103,111,118,101,114,32,101,118,101,110,116,44,32,121,101,116,32,119,101,32,115,116,105,108,108,32,110,101,101,100,32,116,111,32,118,97,108,105,100,97,116,101,32,116,104,105,115,32,110,111,100,101,32,119,105,116,104,32,116,104,101,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,61,32,110,111,100,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,100,97,116,97,84,114,97,110,115,102,101,114,46,115,101,116,68,97,116,97,40,39,116,114,101,101,73,100,39,44,32,110,111,100,101,46,116,114,101,101,40,41,46,105,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,100,97,116,97,84,114,97,110,115,102,101,114,46,115,101,116,68,97,116,97,40,39,110,111,100,101,73,100,39,44,32,110,111,100,101,46,105,100,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,105,115,97,98,108,101,32,115,101,108,102,32,97,110,100,32,99,104,105,108,100,114,101,110,32,97,115,32,100,114,111,112,32,116,97,114,103,101,116,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,39,100,114,111,112,45,116,97,114,103,101,116,39,44,32,102,97,108,115,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,32,123,92,110,32,32,32,32,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,115,116,97,116,101,68,101,101,112,40,39,100,114,111,112,45,116,97,114,103,101,116,39,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,119,101,32,115,104,111,117,108,100,32,118,97,108,105,100,97,116,101,32,97,108,108,32,110,111,100,101,115,32,97,115,32,112,111,116,101,110,116,105,97,108,32,100,114,111,112,32,116,97,114,103,101,116,115,32,111,110,32,100,114,97,103,32,115,116,97,114,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,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,32,61,61,61,32,39,100,114,97,103,115,116,97,114,116,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,105,100,97,116,111,114,32,61,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,105,100,97,116,101,67,97,108,108,97,98,108,101,32,61,32,95,46,105,115,70,117,110,99,116,105,111,110,40,118,97,108,105,100,97,116,111,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,86,97,108,105,100,97,116,101,32,119,105,116,104,32,97,32,99,117,115,116,111,109,32,114,101,99,117,114,115,111,114,32,98,101,99,97,117,115,101,32,97,32,114,101,116,117,114,110,32,111,102,32,92,34,102,97,108,115,101,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,115,104,111,117,108,100,32,109,101,97,110,32,92,34,100,111,32,110,111,116,32,100,101,115,99,101,110,100,92,34,32,114,97,116,104,101,114,32,116,104,97,110,32,92,34,115,116,111,112,32,105,116,101,114,97,116,105,110,103,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,99,117,114,115,111,114,32,61,32,102,117,110,99,116,105,111,110,32,114,101,99,117,114,115,111,114,40,111,98,106,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,73,110,115,112,105,114,101,84,114,101,101,46,105,115,84,114,101,101,78,111,100,101,115,40,111,98,106,41,41,32,123,92,110,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,95,46,101,97,99,104,40,111,98,106,44,32,102,117,110,99,116,105,111,110,32,40,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,99,117,114,115,111,114,40,110,44,32,105,116,101,114,97,116,101,101,41,59,92,110,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,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,73,110,115,112,105,114,101,84,114,101,101,46,105,115,84,114,101,101,78,111,100,101,40,111,98,106,41,41,32,123,92,110,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,105,102,32,40,105,116,101,114,97,116,101,101,40,111,98,106,41,32,33,61,61,32,102,97,108,115,101,32,38,38,32,111,98,106,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,99,117,114,115,111,114,40,111,98,106,46,99,104,105,108,100,114,101,110,44,32,105,116,101,114,97,116,101,101,41,59,92,110,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,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,99,117,114,115,111,114,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,32,102,117,110,99,116,105,111,110,32,40,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,105,100,32,61,32,110,46,105,100,32,33,61,61,32,110,111,100,101,46,105,100,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,110,115,117,114,101,32,116,97,114,103,101,116,32,110,111,100,101,32,105,115,110,39,116,32,97,32,100,101,115,99,101,110,100,97,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,105,100,41,32,123,92,110,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,118,97,108,105,100,32,61,32,33,110,46,104,97,115,65,110,99,101,115,116,111,114,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,115,116,105,108,108,32,118,97,108,105,100,32,97,110,100,32,117,115,101,114,32,104,97,115,32,97,100,100,105,116,105,111,110,97,108,32,118,97,108,105,100,97,116,105,111,110,46,46,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,105,100,32,38,38,32,118,97,108,105,100,97,116,101,67,97,108,108,97,98,108,101,41,32,123,92,110,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,118,97,108,105,100,32,61,32,118,97,108,105,100,97,116,111,114,40,110,111,100,101,44,32,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,115,116,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,46,115,116,97,116,101,40,39,100,114,111,112,45,116,97,114,103,101,116,39,44,32,118,97,108,105,100,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,105,100,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,110,111,100,101,46,100,114,97,103,115,116,97,114,116,39,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,111,110,68,114,97,103,69,110,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,111,110,68,114,97,103,69,110,100,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,110,111,100,101,46,100,114,97,103,101,110,100,39,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,111,110,68,114,97,103,69,110,116,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,111,110,68,114,97,103,69,110,116,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,100,101,115,32,97,108,114,101,97,100,121,32,119,105,116,104,105,110,32,112,97,114,101,110,116,115,32,100,111,110,39,116,32,116,114,105,103,103,101,114,32,101,110,116,101,114,47,108,101,97,118,101,32,101,118,101,110,116,115,32,111,110,32,116,104,101,105,114,32,97,110,99,101,115,116,111,114,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,100,114,97,103,32,116,97,114,103,101,116,32,115,116,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,39,100,114,97,103,45,116,97,114,103,101,116,105,110,103,39,44,32,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,110,111,100,101,46,100,114,97,103,101,110,116,101,114,39,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,111,110,68,114,97,103,76,101,97,118,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,111,110,68,114,97,103,76,101,97,118,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,110,111,100,101,46,100,114,97,103,108,101,97,118,101,39,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,111,110,68,114,97,103,79,118,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,111,110,68,114,97,103,79,118,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,114,97,103,78,111,100,101,32,61,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,118,101,110,116,46,116,97,114,103,101,116,32,100,111,101,115,110,39,116,32,97,108,119,97,121,115,32,109,97,116,99,104,32,116,104,101,32,101,108,101,109,101,110,116,32,119,101,32,110,101,101,100,32,116,111,32,99,97,108,99,117,108,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,105,114,32,61,32,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,118,101,110,116,44,32,110,111,100,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,39,97,39,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,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,32,61,61,61,32,39,100,114,97,103,111,118,101,114,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,86,97,108,105,100,97,116,101,32,100,114,111,112,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,105,100,97,116,111,114,32,61,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,105,100,97,116,101,67,97,108,108,97,98,108,101,32,61,32,95,46,105,115,70,117,110,99,116,105,111,110,40,118,97,108,105,100,97,116,111,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,105,100,32,61,32,100,114,97,103,78,111,100,101,46,105,100,32,33,61,61,32,110,111,100,101,46,105,100,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,105,100,32,61,32,33,110,111,100,101,46,104,97,115,65,110,99,101,115,116,111,114,40,100,114,97,103,78,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,105,100,32,38,38,32,118,97,108,105,100,97,116,101,67,97,108,108,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,105,100,32,61,32,118,97,108,105,100,97,116,111,114,40,100,114,97,103,78,111,100,101,44,32,110,111,100,101,44,32,100,105,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,115,116,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,39,100,114,111,112,45,116,97,114,103,101,116,39,44,32,118,97,108,105,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,118,97,108,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,100,114,97,103,32,116,97,114,103,101,116,32,115,116,97,116,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,39,100,114,97,103,45,116,97,114,103,101,116,105,110,103,39,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,39,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,39,44,32,100,105,114,32,61,61,61,32,45,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,39,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,39,44,32,100,105,114,32,61,61,61,32,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,39,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,39,44,32,100,105,114,32,61,61,61,32,48,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,110,111,100,101,46,100,114,97,103,111,118,101,114,39,44,32,101,118,101,110,116,44,32,100,105,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,111,110,68,114,111,112,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,111,110,68,114,111,112,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,108,119,97,121,115,32,117,110,104,105,103,104,108,105,103,104,116,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,71,101,116,32,116,104,101,32,100,97,116,97,32,102,114,111,109,32,111,117,114,32,116,114,97,110,115,102,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,114,101,101,73,100,32,61,32,101,118,101,110,116,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,39,116,114,101,101,73,100,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,73,100,32,61,32,101,118,101,110,116,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,39,110,111,100,101,73,100,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,110,100,32,116,104,101,32,100,114,111,112,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,78,111,100,101,32,61,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,108,101,97,114,32,99,97,99,104,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,101,116,101,114,109,105,110,101,32,116,104,101,32,105,110,115,101,114,116,32,100,105,114,101,99,116,105,111,110,32,40,99,97,108,99,32,98,101,102,111,114,101,32,114,101,109,111,118,105,110,103,32,115,111,117,114,99,101,32,110,111,100,101,44,32,119,104,105,99,104,32,109,111,100,105,102,105,101,115,32,116,104,101,32,68,79,77,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,105,114,32,61,32,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,118,101,110,116,44,32,101,118,101,110,116,46,116,97,114,103,101,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,111,117,114,99,101,84,114,101,101,32,61,32,118,111,105,100,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,114,101,101,73,100,32,61,61,61,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,111,117,114,99,101,84,114,101,101,32,61,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,114,101,101,73,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,111,117,114,99,101,84,114,101,101,32,61,32,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,92,34,39,32,43,32,116,114,101,101,73,100,32,43,32,39,92,34,93,39,41,46,105,110,115,112,105,114,101,84,114,101,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,79,110,108,121,32,115,111,117,114,99,101,47,104,97,110,100,108,101,32,110,111,100,101,32,105,102,32,105,116,39,115,32,97,32,110,111,100,101,32,116,104,97,116,32,119,97,115,32,100,114,111,112,112,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,78,111,100,101,32,61,32,118,111,105,100,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,73,110,100,101,120,32,61,32,118,111,105,100,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,111,117,114,99,101,84,114,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,115,111,117,114,99,101,84,114,101,101,46,110,111,100,101,40,110,111,100,101,73,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,39,100,114,111,112,45,116,97,114,103,101,116,39,44,32,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,120,112,111,114,116,101,100,32,61,32,110,111,100,101,46,114,101,109,111,118,101,40,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,71,101,116,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,116,97,114,103,101,116,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,73,110,100,101,120,32,61,32,116,97,114,103,101,116,78,111,100,101,46,99,111,110,116,101,120,116,40,41,46,105,110,100,101,120,79,102,40,116,97,114,103,101,116,78,111,100,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,105,114,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,97,115,32,97,32,99,104,105,108,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,78,111,100,101,32,61,32,116,97,114,103,101,116,78,111,100,101,46,97,100,100,67,104,105,108,100,40,101,120,112,111,114,116,101,100,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,97,99,104,101,32,116,104,101,32,110,101,119,32,105,110,100,101,120,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,73,110,100,101,120,32,61,32,116,97,114,103,101,116,78,111,100,101,46,99,104,105,108,100,114,101,110,46,105,110,100,101,120,79,102,40,110,101,119,78,111,100,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,117,116,111,45,101,120,112,97,110,100,92,110,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,97,114,103,101,116,78,111,100,101,46,101,120,112,97,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,101,116,101,114,109,105,110,101,32,116,104,101,32,110,101,119,32,105,110,100,101,120,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,73,110,100,101,120,32,61,32,100,105,114,32,61,61,61,32,49,32,63,32,43,43,116,97,114,103,101,116,73,110,100,101,120,32,58,32,116,97,114,103,101,116,73,110,100,101,120,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,115,101,114,116,32,97,110,100,32,99,97,99,104,101,32,116,104,101,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,78,111,100,101,32,61,32,116,97,114,103,101,116,78,111,100,101,46,99,111,110,116,101,120,116,40,41,46,105,110,115,101,114,116,65,116,40,110,101,119,73,110,100,101,120,44,32,101,120,112,111,114,116,101,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,110,111,100,101,46,100,114,111,112,39,44,32,101,118,101,110,116,44,32,110,101,119,78,111,100,101,44,32,116,97,114,103,101,116,78,111,100,101,44,32,110,101,119,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,110,111,100,101,32,124,124,32,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,39,100,114,97,103,45,116,97,114,103,101,116,105,110,103,39,44,32,39,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,39,44,32,39,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,39,44,32,39,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,39,93,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,67,104,101,99,107,98,111,120,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,67,104,101,99,107,98,111,120,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,86,78,111,100,101,40,50,44,32,67,104,101,99,107,98,111,120,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,99,104,101,99,107,101,100,39,58,32,110,111,100,101,46,99,104,101,99,107,101,100,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,100,111,109,39,58,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,58,32,110,111,100,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,110,111,100,101,39,58,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,67,104,105,108,100,114,101,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,67,104,105,108,100,114,101,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,112,114,111,112,115,32,61,32,116,104,105,115,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,95,112,114,111,112,115,46,110,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,32,61,32,95,112,114,111,112,115,46,100,111,109,59,92,110,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,115,32,61,32,110,111,100,101,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,111,97,100,105,110,103,32,61,32,100,111,109,46,108,111,97,100,105,110,103,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,103,105,110,97,116,105,111,110,32,61,32,110,111,100,101,115,46,112,97,103,105,110,97,116,105,111,110,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,86,78,111,100,101,40,50,44,32,76,105,115,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,99,111,110,116,101,120,116,39,58,32,110,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,100,111,109,39,58,32,100,111,109,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,108,105,109,105,116,39,58,32,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,108,111,97,100,105,110,103,39,58,32,108,111,97,100,105,110,103,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,110,111,100,101,115,39,58,32,110,111,100,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,116,111,116,97,108,39,58,32,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,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,32,38,38,32,110,111,100,101,46,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,110,111,100,101,46,104,97,115,76,111,97,100,101,100,67,104,105,108,100,114,101,110,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,86,78,111,100,101,40,50,44,32,69,109,112,116,121,76,105,115,116,44,32,123,92,110,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,39,116,101,120,116,39,58,32,39,76,111,97,100,105,110,103,46,46,46,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,86,78,111,100,101,40,50,44,32,69,109,112,116,121,76,105,115,116,44,32,123,92,110,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,39,116,101,120,116,39,58,32,39,78,111,32,82,101,115,117,108,116,115,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,69,100,105,116,84,111,111,108,98,97,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,69,100,105,116,84,111,111,108,98,97,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,64,116,111,100,111,32,102,105,120,32,116,104,105,115,32,98,111,111,108,101,97,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,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,32,38,38,32,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,86,78,111,100,101,40,50,44,32,69,100,105,116,84,111,111,108,98,97,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,100,111,109,39,58,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,110,111,100,101,39,58,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,84,111,103,103,108,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,84,111,103,103,108,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,32,61,32,33,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,121,110,97,109,105,99,32,63,32,110,111,100,101,46,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,40,41,32,58,32,66,111,111,108,101,97,110,40,110,111,100,101,46,99,104,105,108,100,114,101,110,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,86,78,111,100,101,40,50,44,32,84,111,103,103,108,101,65,110,99,104,111,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,99,111,108,108,97,112,115,101,100,39,58,32,110,111,100,101,46,99,111,108,108,97,112,115,101,100,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,110,111,100,101,39,58,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,105,32,61,32,110,111,114,109,97,108,105,122,101,80,114,111,112,115,40,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,108,105,39,44,32,110,117,108,108,44,32,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,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,100,105,118,39,44,32,39,116,105,116,108,101,45,119,114,97,112,39,44,32,91,116,104,105,115,46,114,101,110,100,101,114,84,111,103,103,108,101,40,41,44,32,116,104,105,115,46,114,101,110,100,101,114,67,104,101,99,107,98,111,120,40,41,44,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,86,78,111,100,101,40,50,44,32,78,111,100,101,65,110,99,104,111,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,100,111,109,39,58,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,101,100,105,116,105,110,103,39,58,32,110,111,100,101,46,101,100,105,116,105,110,103,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,101,120,112,97,110,100,101,100,39,58,32,110,111,100,101,46,101,120,112,97,110,100,101,100,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,39,58,32,110,111,100,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,110,111,100,101,39,58,32,110,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,116,101,120,116,39,58,32,110,111,100,101,46,116,101,120,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,93,44,32,48,41,44,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,100,105,118,39,44,32,39,119,104,111,108,101,114,111,119,39,41,44,32,116,104,105,115,46,114,101,110,100,101,114,67,104,105,108,100,114,101,110,40,41,93,44,32,48,44,32,95,101,120,116,101,110,100,115,40,123,125,44,32,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,115,40,41,41,44,32,110,117,108,108,44,32,102,117,110,99,116,105,111,110,32,40,101,108,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,50,46,110,111,100,101,32,61,32,95,116,104,105,115,50,46,112,114,111,112,115,46,110,111,100,101,46,105,116,114,101,101,46,114,101,102,32,61,32,101,108,101,109,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,108,101,97,114,32,100,105,114,116,121,32,98,111,111,108,32,111,110,108,121,32,97,102,116,101,114,32,101,118,101,114,121,116,104,105,110,103,32,104,97,115,32,98,101,101,110,32,103,101,110,101,114,97,116,101,100,32,40,97,110,100,32,115,116,97,116,101,115,32,115,101,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,39,114,101,110,100,101,114,101,100,39,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,105,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,93,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,76,105,115,116,73,116,101,109,59,92,110,32,32,32,32,125,40,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,118,97,114,32,76,105,115,116,32,61,32,102,117,110,99,116,105,111,110,32,40,95,67,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,104,101,114,105,116,115,40,76,105,115,116,44,32,95,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,76,105,115,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,76,105,115,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,40,116,104,105,115,44,32,40,76,105,115,116,46,95,95,112,114,111,116,111,95,95,32,124,124,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,76,105,115,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,67,108,97,115,115,40,76,105,115,116,44,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,40,110,101,120,116,80,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,46,102,105,110,100,40,110,101,120,116,80,114,111,112,115,46,110,111,100,101,115,44,32,39,105,116,114,101,101,46,100,105,114,116,121,39,41,32,124,124,32,115,116,97,116,101,67,111,109,112,97,114,97,116,111,114,40,116,104,105,115,46,112,114,111,112,115,44,32,110,101,120,116,80,114,111,112,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,115,68,101,102,101,114,114,101,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,115,68,101,102,101,114,114,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,124,124,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,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,108,111,97,100,77,111,114,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,108,111,97,100,77,111,114,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,112,114,111,112,115,46,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,76,111,97,100,77,111,114,101,78,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,76,111,97,100,77,111,114,101,78,111,100,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,108,105,39,44,32,39,108,101,97,102,32,100,101,116,97,99,104,101,100,39,44,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,97,39,44,32,39,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,39,44,32,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,40,39,76,111,97,100,32,77,111,114,101,39,41,44,32,50,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,67,108,105,99,107,39,58,32,116,104,105,115,46,108,111,97,100,77,111,114,101,46,98,105,110,100,40,116,104,105,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,32,50,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,76,111,97,100,105,110,103,84,101,120,116,78,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,76,111,97,100,105,110,103,84,101,120,116,78,111,100,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,108,105,39,44,32,39,108,101,97,102,39,44,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,115,112,97,110,39,44,32,39,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,109,111,114,101,39,44,32,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,40,39,76,111,97,100,105,110,103,46,46,46,39,41,44,32,50,41,44,32,50,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,110,100,101,114,78,111,100,101,115,32,61,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,103,105,110,97,116,105,111,110,32,61,32,114,101,110,100,101,114,78,111,100,101,115,46,112,97,103,105,110,97,116,105,111,110,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,114,101,110,100,101,114,105,110,103,32,100,101,102,101,114,114,101,100,44,32,99,104,117,110,107,32,116,104,101,32,110,111,100,101,115,32,99,108,105,101,110,116,45,115,105,100,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,108,116,101,114,32,110,111,110,45,104,105,100,100,101,110,47,114,101,109,111,118,101,100,32,110,111,100,101,115,32,97,110,100,32,108,105,109,105,116,32,98,121,32,116,104,105,115,32,99,111,110,116,101,120,116,39,115,32,112,97,103,105,110,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,117,110,116,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,110,100,101,114,78,111,100,101,115,32,61,32,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,32,40,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,101,115,32,61,32,33,40,110,46,104,105,100,100,101,110,40,41,32,124,124,32,110,46,114,101,109,111,118,101,100,40,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,97,116,99,104,101,115,41,32,123,92,110,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,99,111,117,110,116,43,43,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,117,110,116,32,60,61,32,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,32,38,38,32,109,97,116,99,104,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,110,100,101,114,32,110,111,100,101,115,32,97,115,32,108,105,115,116,32,105,116,101,109,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,109,115,32,61,32,95,46,109,97,112,40,114,101,110,100,101,114,78,111,100,101,115,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,86,78,111,100,101,40,50,44,32,76,105,115,116,73,116,101,109,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,100,111,109,39,58,32,95,116,104,105,115,50,46,112,114,111,112,115,46,100,111,109,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,110,111,100,101,39,58,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,32,110,111,100,101,46,105,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,68,101,102,101,114,114,101,100,40,41,32,38,38,32,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,32,60,32,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,112,114,111,112,115,46,108,111,97,100,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,116,101,109,115,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,116,101,109,115,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,111,108,39,44,32,110,117,108,108,44,32,91,105,116,101,109,115,44,32,116,104,105,115,46,112,114,111,112,115,46,99,104,105,108,100,114,101,110,93,44,32,48,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,93,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,76,105,115,116,59,92,110,32,32,32,32,125,40,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,118,97,114,32,84,114,101,101,32,61,32,102,117,110,99,116,105,111,110,32,40,95,67,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,104,101,114,105,116,115,40,84,114,101,101,44,32,95,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,84,114,101,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,84,114,101,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,40,116,104,105,115,44,32,40,84,114,101,101,46,95,95,112,114,111,116,111,95,95,32,124,124,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,84,114,101,101,41,41,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,67,108,97,115,115,40,84,114,101,101,44,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,97,100,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,97,100,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,98,108,97,110,107,78,111,100,101,40,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,65,100,100,76,105,110,107,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,65,100,100,76,105,110,107,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,108,105,39,44,32,110,117,108,108,44,32,99,114,101,97,116,101,86,78,111,100,101,40,49,44,32,39,97,39,44,32,39,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,108,117,115,39,44,32,110,117,108,108,44,32,49,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,111,110,67,108,105,99,107,39,58,32,116,104,105,115,46,97,100,100,46,98,105,110,100,40,116,104,105,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,116,105,116,108,101,39,58,32,39,65,100,100,32,97,32,110,101,119,32,114,111,111,116,32,110,111,100,101,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,32,50,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,112,114,111,112,115,32,61,32,116,104,105,115,46,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,32,61,32,95,112,114,111,112,115,46,100,111,109,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,115,32,61,32,95,112,114,111,112,115,46,110,111,100,101,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,111,97,100,105,110,103,32,61,32,100,111,109,46,108,111,97,100,105,110,103,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,103,105,110,97,116,105,111,110,32,61,32,110,111,100,101,115,46,112,97,103,105,110,97,116,105,111,110,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,86,78,111,100,101,40,50,44,32,76,105,115,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,100,111,109,39,58,32,100,111,109,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,108,105,109,105,116,39,58,32,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,108,111,97,100,105,110,103,39,58,32,108,111,97,100,105,110,103,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,110,111,100,101,115,39,58,32,110,111,100,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,116,111,116,97,108,39,58,32,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,116,104,105,115,46,114,101,110,100,101,114,65,100,100,76,105,110,107,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,93,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,84,114,101,101,59,92,110,32,32,32,32,125,40,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,68,101,102,97,117,108,116,32,73,110,115,112,105,114,101,84,114,101,101,32,114,101,110,100,101,114,105,110,103,32,108,111,103,105,99,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,73,110,115,112,105,114,101,68,79,77,125,32,68,101,102,97,117,108,116,32,114,101,110,100,101,114,101,114,46,92,110,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,118,97,114,32,73,110,115,112,105,114,101,68,79,77,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,73,110,115,112,105,114,101,68,79,77,40,116,114,101,101,44,32,111,112,116,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,73,110,115,112,105,114,101,68,79,77,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,116,114,101,101,32,105,110,115,116,97,110,99,101,111,102,32,73,110,115,112,105,114,101,84,114,101,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,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,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,105,116,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,32,61,32,116,114,101,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,98,97,116,99,104,105,110,103,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,100,114,111,112,84,97,114,103,101,116,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,111,112,116,115,46,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,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,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,76,101,116,32,73,110,115,112,105,114,101,84,114,101,101,32,107,110,111,119,32,119,101,39,114,101,32,105,110,32,99,111,110,116,114,111,108,32,111,102,32,97,32,110,111,100,101,39,115,32,96,114,101,110,100,101,114,101,100,96,32,115,116,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,117,115,101,115,78,97,116,105,118,101,68,79,77,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,110,100,68,101,102,97,117,108,116,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,110,97,98,108,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,105,100,97,116,101,79,110,58,32,39,100,114,97,103,115,116,97,114,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,105,100,97,116,101,58,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,115,115,105,103,110,32,100,101,102,97,117,108,116,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,99,111,110,102,105,103,32,61,32,95,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,32,111,112,116,115,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,117,116,111,76,111,97,100,77,111,114,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,114,97,103,65,110,100,68,114,111,112,58,32,100,110,100,68,101,102,97,117,108,116,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,72,101,105,103,104,116,58,32,50,53,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,104,111,119,67,104,101,99,107,98,111,120,101,115,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,98,105,110,100,101,120,58,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,115,46,100,114,97,103,65,110,100,68,114,111,112,32,61,61,61,32,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,32,61,32,100,110,100,68,101,102,97,117,108,116,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,117,115,101,114,32,100,105,100,110,39,116,32,115,112,101,99,105,102,121,32,115,104,111,119,67,104,101,99,107,98,111,120,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,98,117,116,32,105,115,32,117,115,105,110,103,32,99,104,101,99,107,98,111,120,32,115,101,108,101,99,116,105,111,110,32,109,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,101,110,97,98,108,101,32,105,116,32,97,117,116,111,109,97,116,105,99,97,108,108,121,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,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,32,61,61,61,32,39,99,104,101,99,107,98,111,120,39,32,38,38,32,33,95,46,105,115,66,111,111,108,101,97,110,40,95,46,103,101,116,40,111,112,116,115,44,32,39,115,104,111,119,67,104,101,99,107,98,111,120,101,115,39,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,97,99,104,101,32,98,101,99,97,117,115,101,32,119,101,32,117,115,101,32,105,110,32,108,111,111,112,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,68,121,110,97,109,105,99,32,61,32,95,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,110,110,101,99,116,32,116,111,32,111,117,114,32,116,97,114,103,101,116,32,68,79,77,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,105,116,105,97,108,82,101,110,100,101,114,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,112,112,108,121,32,99,104,97,110,103,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,111,110,40,39,99,104,97,110,103,101,115,46,97,112,112,108,105,101,100,39,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,114,101,110,100,101,114,78,111,100,101,115,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,105,116,105,97,108,82,101,110,100,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,105,116,105,97,108,82,101,110,100,101,114,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,109,109,101,100,105,97,116,101,108,121,32,114,101,110,100,101,114,44,32,106,117,115,116,32,105,110,32,99,97,115,101,32,97,110,121,32,97,108,114,101,97,100,121,32,101,120,105,115,116,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,110,100,101,114,78,111,100,101,115,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,65,116,116,97,99,104,101,115,32,116,111,32,116,104,101,32,68,79,77,32,101,108,101,109,101,110,116,32,102,111,114,32,114,101,110,100,101,114,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,116,97,114,103,101,116,32,69,108,101,109,101,110,116,44,32,115,101,108,101,99,116,111,114,44,32,111,114,32,106,81,117,101,114,121,45,108,105,107,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,67,108,97,115,115,40,73,110,115,112,105,114,101,68,79,77,44,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,97,116,116,97,99,104,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,97,116,116,97,99,104,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,116,97,114,103,101,116,32,61,32,116,104,105,115,46,103,101,116,69,108,101,109,101,110,116,40,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,32,61,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,36,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,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,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,100,97,116,97,45,117,105,100,39,44,32,116,104,105,115,46,95,116,114,101,101,46,105,100,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,99,108,97,115,115,110,97,109,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,108,97,115,115,78,97,109,101,115,32,61,32,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,39,32,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,78,97,109,101,115,46,112,117,115,104,40,39,105,110,115,112,105,114,101,45,116,114,101,101,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,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,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,78,97,109,101,115,46,112,117,115,104,40,39,101,100,105,116,97,98,108,101,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,95,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,32,95,46,105,100,101,110,116,105,116,121,41,44,32,102,117,110,99,116,105,111,110,32,40,118,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,78,97,109,101,115,46,112,117,115,104,40,39,101,100,105,116,97,98,108,101,45,39,32,43,32,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,78,97,109,101,32,61,32,99,108,97,115,115,78,97,109,101,115,46,106,111,105,110,40,39,32,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,116,97,98,105,110,100,101,120,39,44,32,116,104,105,115,46,99,111,110,102,105,103,46,116,97,98,105,110,100,101,120,32,124,124,32,48,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,107,101,121,98,111,97,114,100,32,105,110,116,101,114,97,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,107,101,121,100,111,119,110,39,44,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,114,97,103,32,97,110,100,32,100,114,111,112,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,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,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,100,114,97,103,101,110,116,101,114,39,44,32,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,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,100,114,97,103,108,101,97,118,101,39,44,32,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,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,100,114,97,103,111,118,101,114,39,44,32,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,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,100,114,111,112,39,44,32,116,104,105,115,46,111,110,68,114,111,112,46,98,105,110,100,40,116,104,105,115,41,44,32,102,97,108,115,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,100,114,97,103,45,97,110,100,45,100,114,111,112,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,121,110,99,32,98,114,111,119,115,101,114,32,102,111,99,117,115,32,116,111,32,102,111,99,117,115,32,115,116,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,111,110,40,39,110,111,100,101,46,102,111,99,117,115,101,100,39,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,108,101,109,32,61,32,110,111,100,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,39,46,116,105,116,108,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,108,101,109,32,33,61,61,32,100,111,99,117,109,101,110,116,46,97,99,116,105,118,101,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,101,109,46,102,111,99,117,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,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,32,124,124,32,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,111,114,99,101,32,118,97,108,105,100,32,112,97,103,105,110,97,116,105,111,110,32,108,105,109,105,116,32,98,97,115,101,100,32,111,110,32,118,105,101,119,112,111,114,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,105,109,105,116,32,61,32,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,61,32,108,105,109,105,116,32,62,32,48,32,63,32,108,105,109,105,116,32,58,32,95,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,32,47,32,116,104,105,115,46,99,111,110,102,105,103,46,110,111,100,101,72,101,105,103,104,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,76,105,115,116,101,110,32,102,111,114,32,115,99,114,111,108,108,115,32,102,111,114,32,97,117,116,111,109,97,116,105,99,32,108,111,97,100,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,99,111,110,102,105,103,46,97,117,116,111,76,111,97,100,77,111,114,101,41,32,123,92,110,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,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,39,115,99,114,111,108,108,39,44,32,95,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,32,50,48,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,116,97,114,103,101,116,46,105,110,115,112,105,114,101,84,114,101,101,32,61,32,116,104,105,115,46,95,116,114,101,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,67,108,101,97,114,32,112,97,103,101,32,116,101,120,116,32,115,101,108,101,99,116,105,111,110,44,32,112,114,105,109,97,114,105,108,121,32,97,102,116,101,114,32,97,32,99,108,105,99,107,32,101,118,101,110,116,32,119,104,105,99,104,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,110,97,116,105,118,101,108,121,32,115,101,108,101,99,116,115,32,97,32,114,97,110,103,101,32,111,102,32,116,101,120,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,108,101,97,114,83,101,108,101,99,116,105,111,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,83,101,108,101,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,32,38,38,32,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,46,101,109,112,116,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,119,105,110,100,111,119,46,103,101,116,83,101,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,97,110,32,72,84,77,76,69,108,101,109,101,110,116,32,116,104,114,111,117,103,104,32,118,97,114,105,111,117,115,32,109,101,97,110,115,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,65,110,32,101,108,101,109,101,110,116,44,32,106,113,117,101,114,121,32,111,98,106,101,99,116,44,32,111,114,32,97,32,115,101,108,101,99,116,111,114,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,109,105,120,101,100,125,32,116,97,114,103,101,116,32,69,108,101,109,101,110,116,44,32,106,81,117,101,114,121,32,115,101,108,101,99,116,111,114,44,32,115,101,108,101,99,116,111,114,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,77,97,116,99,104,105,110,103,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,103,101,116,69,108,101,109,101,110,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,69,108,101,109,101,110,116,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,36,101,108,101,109,101,110,116,32,61,32,118,111,105,100,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,97,114,103,101,116,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,36,101,108,101,109,101,110,116,32,61,32,116,97,114,103,101,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,95,46,105,115,79,98,106,101,99,116,40,116,97,114,103,101,116,41,32,38,38,32,95,46,105,115,79,98,106,101,99,116,40,116,97,114,103,101,116,91,48,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,36,101,108,101,109,101,110,116,32,61,32,116,97,114,103,101,116,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,95,46,105,115,83,116,114,105,110,103,40,116,97,114,103,101,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,32,61,32,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,97,116,99,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,36,101,108,101,109,101,110,116,32,61,32,109,97,116,99,104,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,101,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,72,101,108,112,101,114,32,109,101,116,104,111,100,32,116,111,32,102,105,110,100,32,97,32,115,99,114,111,108,108,97,98,108,101,32,97,110,99,101,115,116,111,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,36,101,108,101,109,101,110,116,32,83,116,97,114,116,105,110,103,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,83,99,114,111,108,108,97,98,108,101,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,40,36,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,36,101,108,101,109,101,110,116,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,121,108,101,32,61,32,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,36,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,116,121,108,101,46,111,118,101,114,102,108,111,119,32,33,61,61,32,39,97,117,116,111,39,32,38,38,32,36,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,36,101,108,101,109,101,110,116,32,61,32,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,36,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,36,101,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,97,32,116,114,101,101,32,105,110,115,116,97,110,99,101,32,98,97,115,101,100,32,111,110,32,97,110,32,73,68,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,105,100,32,84,114,101,101,32,73,68,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,73,110,115,112,105,114,101,84,114,101,101,125,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,107,101,121,98,111,97,114,100,76,105,115,116,101,110,101,114,39,44,92,110,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,76,105,115,116,101,110,32,116,111,32,107,101,121,98,111,97,114,100,32,101,118,101,110,116,32,102,111,114,32,110,97,118,105,103,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,69,118,101,110,116,125,32,101,118,101,110,116,32,75,101,121,98,111,97,114,100,32,101,118,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,107,101,121,98,111,97,114,100,76,105,115,116,101,110,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,103,110,111,114,101,32,107,101,121,115,32,119,101,32,119,111,110,39,116,32,99,97,114,101,32,102,111,114,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,111,114,32,101,120,97,109,112,108,101,44,32,116,104,105,115,32,97,118,111,105,100,115,32,116,114,97,109,112,108,105,110,103,32,99,109,100,43,114,101,108,111,97,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,91,68,79,87,78,95,65,82,82,79,87,44,32,69,78,84,69,82,44,32,76,69,70,84,95,65,82,82,79,87,44,32,82,73,71,72,84,95,65,82,82,79,87,44,32,85,80,95,65,82,82,79,87,93,46,105,110,100,101,120,79,102,40,101,118,101,110,116,46,119,104,105,99,104,41,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,78,97,118,105,103,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,111,99,117,115,101,100,78,111,100,101,115,32,61,32,116,104,105,115,46,95,116,114,101,101,46,102,111,99,117,115,101,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,102,111,99,117,115,101,100,78,111,100,101,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,101,118,101,110,116,46,119,104,105,99,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,68,79,87,78,95,65,82,82,79,87,58,92,110,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,116,104,105,115,46,109,111,118,101,70,111,99,117,115,68,111,119,110,70,114,111,109,40,102,111,99,117,115,101,100,78,111,100,101,115,91,48,93,41,59,92,110,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,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,69,78,84,69,82,58,92,110,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,102,111,99,117,115,101,100,78,111,100,101,115,91,48,93,46,116,111,103,103,108,101,83,101,108,101,99,116,40,41,59,92,110,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,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,76,69,70,84,95,65,82,82,79,87,58,92,110,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,102,111,99,117,115,101,100,78,111,100,101,115,91,48,93,46,99,111,108,108,97,112,115,101,40,41,59,92,110,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,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,82,73,71,72,84,95,65,82,82,79,87,58,92,110,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,102,111,99,117,115,101,100,78,111,100,101,115,91,48,93,46,101,120,112,97,110,100,40,41,59,92,110,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,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,85,80,95,65,82,82,79,87,58,92,110,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,116,104,105,115,46,109,111,118,101,70,111,99,117,115,85,112,70,114,111,109,40,102,111,99,117,115,101,100,78,111,100,101,115,91,48,93,41,59,92,110,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,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,77,111,118,101,32,115,101,108,101,99,116,32,100,111,119,110,32,116,104,101,32,118,105,115,105,98,108,101,32,116,114,101,101,32,102,114,111,109,32,97,32,115,116,97,114,116,105,110,103,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,115,116,97,114,116,105,110,103,78,111,100,101,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,109,111,118,101,70,111,99,117,115,68,111,119,110,70,114,111,109,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,109,111,118,101,70,111,99,117,115,68,111,119,110,70,114,111,109,40,115,116,97,114,116,105,110,103,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,32,61,32,115,116,97,114,116,105,110,103,78,111,100,101,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,46,102,111,99,117,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,77,111,118,101,32,115,101,108,101,99,116,32,117,112,32,116,104,101,32,118,105,115,105,98,108,101,32,116,114,101,101,32,102,114,111,109,32,97,32,115,116,97,114,116,105,110,103,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,115,116,97,114,116,105,110,103,78,111,100,101,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,109,111,118,101,70,111,99,117,115,85,112,70,114,111,109,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,109,111,118,101,70,111,99,117,115,85,112,70,114,111,109,40,115,116,97,114,116,105,110,103,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,101,118,32,61,32,115,116,97,114,116,105,110,103,78,111,100,101,46,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,78,111,100,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,101,118,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,118,46,102,111,99,117,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,72,101,108,112,101,114,32,109,101,116,104,111,100,32,102,111,114,32,111,98,116,97,105,110,105,110,103,32,116,104,101,32,100,97,116,97,45,117,105,100,32,102,114,111,109,32,97,32,68,79,77,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,32,72,84,77,76,32,69,108,101,109,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,111,98,106,101,99,116,125,32,78,111,100,101,32,111,98,106,101,99,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,110,111,100,101,70,114,111,109,84,105,116,108,101,68,79,77,69,108,101,109,101,110,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,110,111,100,101,70,114,111,109,84,105,116,108,101,68,79,77,69,108,101,109,101,110,116,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,117,105,100,32,61,32,101,108,101,109,101,110,116,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,39,100,97,116,97,45,117,105,100,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,40,117,105,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,68,114,97,103,32,101,110,116,101,114,32,108,105,115,116,101,110,101,114,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,68,114,97,103,69,118,101,110,116,125,32,101,118,101,110,116,32,68,114,97,103,32,101,110,116,101,114,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,111,110,68,114,97,103,69,110,116,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,111,110,68,114,97,103,69,110,116,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,116,97,114,103,101,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,39,100,114,97,103,45,116,97,114,103,101,116,105,110,103,39,44,32,39,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,68,114,97,103,32,108,101,97,118,101,32,108,105,115,116,101,110,101,114,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,68,114,97,103,69,118,101,110,116,125,32,101,118,101,110,116,32,68,114,97,103,32,108,101,97,118,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,111,110,68,114,97,103,76,101,97,118,101,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,111,110,68,114,97,103,76,101,97,118,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,101,118,101,110,116,46,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,68,114,97,103,32,111,118,101,114,32,108,105,115,116,101,110,101,114,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,68,114,97,103,69,118,101,110,116,125,32,101,118,101,110,116,32,68,114,97,103,32,111,118,101,114,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,111,110,68,114,97,103,79,118,101,114,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,111,110,68,114,97,103,79,118,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,68,114,111,112,32,108,105,115,116,101,110,101,114,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,68,114,97,103,69,118,101,110,116,125,32,101,118,101,110,116,32,68,114,111,112,112,101,100,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,111,110,68,114,111,112,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,111,110,68,114,111,112,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,101,118,101,110,116,46,116,97,114,103,101,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,114,101,101,73,100,32,61,32,101,118,101,110,116,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,39,116,114,101,101,73,100,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,73,100,32,61,32,101,118,101,110,116,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,39,110,111,100,101,73,100,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,110,100,32,116,104,101,32,116,114,101,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,114,101,101,32,61,32,73,110,115,112,105,114,101,68,79,77,46,103,101,116,84,114,101,101,66,121,73,100,40,116,114,101,101,73,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,116,114,101,101,46,110,111,100,101,40,110,111,100,101,73,100,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,39,100,114,111,112,45,116,97,114,103,101,116,39,44,32,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,116,104,101,32,110,111,100,101,32,102,114,111,109,32,105,116,115,32,112,114,101,118,105,111,117,115,32,99,111,110,116,101,120,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,120,112,111,114,116,101,100,32,61,32,110,111,100,101,46,114,101,109,111,118,101,40,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,116,104,101,32,110,111,100,101,32,116,111,32,116,104,105,115,32,116,114,101,101,47,108,101,118,101,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,78,111,100,101,32,61,32,116,104,105,115,46,95,116,114,101,101,46,97,100,100,78,111,100,101,40,101,120,112,111,114,116,101,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,73,110,100,101,120,32,61,32,116,104,105,115,46,95,116,114,101,101,46,105,110,100,101,120,79,102,40,110,101,119,78,111,100,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,100,114,111,112,39,44,32,101,118,101,110,116,44,32,110,101,119,78,111,100,101,44,32,110,117,108,108,44,32,110,101,119,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,84,114,105,103,103,101,114,115,32,114,101,110,100,101,114,105,110,103,32,102,111,114,32,116,104,101,32,103,105,118,101,110,32,110,111,100,101,32,97,114,114,97,121,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,97,114,114,97,121,125,32,110,111,100,101,115,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,78,111,100,101,115,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,78,111,100,101,115,40,110,111,100,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,110,100,101,114,40,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,86,78,111,100,101,40,50,44,32,84,114,101,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,100,111,109,39,58,32,116,104,105,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,110,111,100,101,115,39,58,32,110,111,100,101,115,32,124,124,32,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,32,116,104,105,115,46,36,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,99,114,111,108,108,76,105,115,116,101,110,101,114,39,44,92,110,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,76,105,115,116,101,110,115,32,102,111,114,32,115,99,114,111,108,108,32,101,118,101,110,116,115,44,32,116,111,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,116,114,105,103,103,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,76,111,97,100,32,77,111,114,101,32,108,105,110,107,115,32,119,104,101,110,32,116,104,101,121,39,114,101,32,115,99,114,111,108,108,101,100,32,105,110,116,111,32,118,105,101,119,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,69,118,101,110,116,125,32,101,118,101,110,116,32,83,99,114,111,108,108,32,101,118,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,99,114,111,108,108,76,105,115,116,101,110,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,114,101,110,100,101,114,105,110,103,32,38,38,32,33,116,104,105,115,46,108,111,97,100,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,71,101,116,32,116,104,101,32,98,111,117,110,100,105,110,103,32,114,101,99,116,32,111,102,32,116,104,101,32,115,99,114,111,108,108,32,108,97,121,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,99,116,32,61,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,110,100,32,97,108,108,32,108,111,97,100,45,109,111,114,101,32,108,105,110,107,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,105,110,107,115,32,61,32,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,46,108,111,97,100,45,109,111,114,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,108,105,110,107,115,44,32,102,117,110,99,116,105,111,110,32,40,108,105,110,107,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,76,111,111,107,32,102,111,114,32,108,111,97,100,45,109,111,114,101,32,108,105,110,107,115,32,119,104,105,99,104,32,111,118,101,114,108,97,112,32,111,117,114,32,92,34,118,105,101,119,112,111,114,116,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,32,61,32,108,105,110,107,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,118,101,114,108,97,112,32,61,32,33,40,114,101,99,116,46,114,105,103,104,116,32,60,32,114,46,108,101,102,116,32,124,124,32,114,101,99,116,46,108,101,102,116,32,62,32,114,46,114,105,103,104,116,32,124,124,32,114,101,99,116,46,98,111,116,116,111,109,32,60,32,114,46,116,111,112,32,124,124,32,114,101,99,116,46,116,111,112,32,62,32,114,46,98,111,116,116,111,109,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,118,101,114,108,97,112,41,32,123,92,110,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,47,47,32,65,117,116,111,45,116,114,105,103,103,101,114,32,76,111,97,100,32,77,111,114,101,32,108,105,110,107,115,92,110,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,118,97,114,32,99,111,110,116,101,120,116,32,61,32,118,111,105,100,32,48,59,92,110,92,110,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,118,97,114,32,36,112,97,114,101,110,116,32,61,32,108,105,110,107,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,92,110,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,105,102,32,40,36,112,97,114,101,110,116,46,116,97,103,78,97,109,101,32,61,61,61,32,39,76,73,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,32,61,32,95,116,104,105,115,50,46,95,116,114,101,101,46,110,111,100,101,40,36,112,97,114,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,39,100,97,116,97,45,117,105,100,39,41,41,59,92,110,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,125,92,110,92,110,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,95,116,104,105,115,50,46,95,116,114,101,101,46,108,111,97,100,77,111,114,101,40,99,111,110,116,101,120,116,44,32,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,83,99,114,111,108,108,32,116,104,101,32,102,105,114,115,116,32,115,101,108,101,99,116,101,100,32,110,111,100,101,32,105,110,116,111,32,118,105,101,119,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,99,114,111,108,108,83,101,108,101,99,116,101,100,73,110,116,111,86,105,101,119,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,99,114,111,108,108,83,101,108,101,99,116,101,100,73,110,116,111,86,105,101,119,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,36,115,101,108,101,99,116,101,100,32,61,32,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,39,46,115,101,108,101,99,116,101,100,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,36,115,101,108,101,99,116,101,100,32,38,38,32,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,61,32,36,115,101,108,101,99,116,101,100,46,111,102,102,115,101,116,84,111,112,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,82,101,109,111,118,101,32,104,105,103,104,108,105,103,104,116,32,99,108,97,115,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,79,77,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,32,84,97,114,103,101,116,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,39,100,114,97,103,45,116,97,114,103,101,116,105,110,103,39,44,32,39,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,93,44,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,39,103,101,116,84,114,101,101,66,121,73,100,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,84,114,101,101,66,121,73,100,40,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,32,61,32,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,92,34,39,32,43,32,105,100,32,43,32,39,92,34,93,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,108,101,109,101,110,116,46,105,110,115,112,105,114,101,84,114,101,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,93,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,73,110,115,112,105,114,101,68,79,77,59,92,110,32,32,32,32,125,40,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,73,110,115,112,105,114,101,68,79,77,59,92,110,92,110,125,41,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,42,32,73,110,115,112,105,114,101,32,84,114,101,101,92,110,32,42,32,64,118,101,114,115,105,111,110,32,52,46,51,46,49,92,110,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,92,110,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,92,110,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,92,110,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,92,110,32,42,47,92,110,40,102,117,110,99,116,105,111,110,32,40,103,108,111,98,97,108,44,32,102,97,99,116,111,114,121,41,32,123,92,110,92,116,32,116,114,117,101,32,63,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,97,99,116,111,114,121,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,108,111,100,97,115,104,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,108,111,100,97,115,104,46,106,115,92,34,41,41,32,58,92,110,92,116,48,59,92,110,125,40,116,104,105,115,44,32,40,102,117,110,99,116,105,111,110,32,40,95,41,32,123,32,39,117,115,101,32,115,116,114,105,99,116,39,59,92,110,92,110,118,97,114,32,99,111,109,109,111,110,106,115,71,108,111,98,97,108,32,61,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,63,32,119,105,110,100,111,119,32,58,32,116,121,112,101,111,102,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,63,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,32,58,32,116,121,112,101,111,102,32,115,101,108,102,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,63,32,115,101,108,102,32,58,32,123,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,109,109,111,110,106,115,82,101,113,117,105,114,101,32,40,41,32,123,92,110,92,116,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,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,39,41,59,92,110,125,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,111,109,109,111,110,106,115,77,111,100,117,108,101,40,102,110,44,32,109,111,100,117,108,101,41,32,123,92,110,92,116,114,101,116,117,114,110,32,109,111,100,117,108,101,32,61,32,123,32,101,120,112,111,114,116,115,58,32,123,125,32,125,44,32,102,110,40,109,111,100,117,108,101,44,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,41,44,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,59,92,110,125,92,110,92,110,118,97,114,32,114,110,103,66,114,111,119,115,101,114,32,61,32,99,114,101,97,116,101,67,111,109,109,111,110,106,115,77,111,100,117,108,101,40,102,117,110,99,116,105,111,110,32,40,109,111,100,117,108,101,41,32,123,92,110,47,47,32,85,110,105,113,117,101,32,73,68,32,99,114,101,97,116,105,111,110,32,114,101,113,117,105,114,101,115,32,97,32,104,105,103,104,32,113,117,97,108,105,116,121,32,114,97,110,100,111,109,32,35,32,103,101,110,101,114,97,116,111,114,46,32,32,73,110,32,116,104,101,92,110,47,47,32,98,114,111,119,115,101,114,32,116,104,105,115,32,105,115,32,97,32,108,105,116,116,108,101,32,99,111,109,112,108,105,99,97,116,101,100,32,100,117,101,32,116,111,32,117,110,107,110,111,119,110,32,113,117,97,108,105,116,121,32,111,102,32,77,97,116,104,46,114,97,110,100,111,109,40,41,92,110,47,47,32,97,110,100,32,105,110,99,111,110,115,105,115,116,101,110,116,32,115,117,112,112,111,114,116,32,102,111,114,32,116,104,101,32,96,99,114,121,112,116,111,96,32,65,80,73,46,32,32,87,101,32,100,111,32,116,104,101,32,98,101,115,116,32,119,101,32,99,97,110,32,118,105,97,92,110,47,47,32,102,101,97,116,117,114,101,45,100,101,116,101,99,116,105,111,110,92,110,92,110,47,47,32,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,32,110,101,101,100,115,32,116,111,32,98,101,32,105,110,118,111,107,101,100,32,105,110,32,97,32,99,111,110,116,101,120,116,32,119,104,101,114,101,32,92,34,116,104,105,115,92,34,32,105,115,32,97,32,67,114,121,112,116,111,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,92,110,118,97,114,32,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,32,61,32,40,116,121,112,101,111,102,40,99,114,121,112,116,111,41,32,33,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,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,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,116,121,112,101,111,102,40,109,115,67,114,121,112,116,111,41,32,33,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,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,41,59,92,110,105,102,32,40,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,41,32,123,92,110,32,32,47,47,32,87,72,65,84,87,71,32,99,114,121,112,116,111,32,82,78,71,32,45,32,104,116,116,112,58,47,47,119,105,107,105,46,119,104,97,116,119,103,46,111,114,103,47,119,105,107,105,47,67,114,121,112,116,111,92,110,32,32,118,97,114,32,114,110,100,115,56,32,61,32,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,49,54,41,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,110,111,45,117,110,100,101,102,92,110,92,110,32,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,119,104,97,116,119,103,82,78,71,40,41,32,123,92,110,32,32,32,32,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,40,114,110,100,115,56,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,110,100,115,56,59,92,110,32,32,125,59,92,110,125,32,101,108,115,101,32,123,92,110,32,32,47,47,32,77,97,116,104,46,114,97,110,100,111,109,40,41,45,98,97,115,101,100,32,40,82,78,71,41,92,110,32,32,47,47,92,110,32,32,47,47,32,73,102,32,97,108,108,32,101,108,115,101,32,102,97,105,108,115,44,32,117,115,101,32,77,97,116,104,46,114,97,110,100,111,109,40,41,46,32,32,73,116,39,115,32,102,97,115,116,44,32,98,117,116,32,105,115,32,111,102,32,117,110,115,112,101,99,105,102,105,101,100,92,110,32,32,47,47,32,113,117,97,108,105,116,121,46,92,110,32,32,118,97,114,32,114,110,100,115,32,61,32,110,101,119,32,65,114,114,97,121,40,49,54,41,59,92,110,92,110,32,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,117,110,99,116,105,111,110,32,109,97,116,104,82,78,71,40,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,114,59,32,105,32,60,32,49,54,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,105,32,38,32,48,120,48,51,41,32,61,61,61,32,48,41,32,114,32,61,32,77,97,116,104,46,114,97,110,100,111,109,40,41,32,42,32,48,120,49,48,48,48,48,48,48,48,48,59,92,110,32,32,32,32,32,32,114,110,100,115,91,105,93,32,61,32,114,32,62,62,62,32,40,40,105,32,38,32,48,120,48,51,41,32,60,60,32,51,41,32,38,32,48,120,102,102,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,110,100,115,59,92,110,32,32,125,59,92,110,125,92,110,125,41,59,92,110,92,110,47,42,42,92,110,32,42,32,67,111,110,118,101,114,116,32,97,114,114,97,121,32,111,102,32,49,54,32,98,121,116,101,32,118,97,108,117,101,115,32,116,111,32,85,85,73,68,32,115,116,114,105,110,103,32,102,111,114,109,97,116,32,111,102,32,116,104,101,32,102,111,114,109,58,92,110,32,42,32,88,88,88,88,88,88,88,88,45,88,88,88,88,45,88,88,88,88,45,88,88,88,88,45,88,88,88,88,88,88,88,88,88,88,88,88,92,110,32,42,47,92,110,118,97,114,32,98,121,116,101,84,111,72,101,120,32,61,32,91,93,59,92,110,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,50,53,54,59,32,43,43,105,41,32,123,92,110,32,32,98,121,116,101,84,111,72,101,120,91,105,93,32,61,32,40,105,32,43,32,48,120,49,48,48,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,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,121,116,101,115,84,111,85,117,105,100,40,98,117,102,44,32,111,102,102,115,101,116,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,111,102,102,115,101,116,32,124,124,32,48,59,92,110,32,32,118,97,114,32,98,116,104,32,61,32,98,121,116,101,84,111,72,101,120,59,92,110,32,32,114,101,116,117,114,110,32,98,116,104,91,98,117,102,91,105,43,43,93,93,32,43,32,98,116,104,91,98,117,102,91,105,43,43,93,93,32,43,92,110,32,32,32,32,32,32,32,32,32,32,98,116,104,91,98,117,102,91,105,43,43,93,93,32,43,32,98,116,104,91,98,117,102,91,105,43,43,93,93,32,43,32,39,45,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,98,116,104,91,98,117,102,91,105,43,43,93,93,32,43,32,98,116,104,91,98,117,102,91,105,43,43,93,93,32,43,32,39,45,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,98,116,104,91,98,117,102,91,105,43,43,93,93,32,43,32,98,116,104,91,98,117,102,91,105,43,43,93,93,32,43,32,39,45,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,98,116,104,91,98,117,102,91,105,43,43,93,93,32,43,32,98,116,104,91,98,117,102,91,105,43,43,93,93,32,43,32,39,45,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,98,116,104,91,98,117,102,91,105,43,43,93,93,32,43,32,98,116,104,91,98,117,102,91,105,43,43,93,93,32,43,92,110,32,32,32,32,32,32,32,32,32,32,98,116,104,91,98,117,102,91,105,43,43,93,93,32,43,32,98,116,104,91,98,117,102,91,105,43,43,93,93,32,43,92,110,32,32,32,32,32,32,32,32,32,32,98,116,104,91,98,117,102,91,105,43,43,93,93,32,43,32,98,116,104,91,98,117,102,91,105,43,43,93,93,59,92,110,125,92,110,92,110,118,97,114,32,98,121,116,101,115,84,111,85,117,105,100,95,49,32,61,32,98,121,116,101,115,84,111,85,117,105,100,59,92,110,92,110,102,117,110,99,116,105,111,110,32,118,52,40,111,112,116,105,111,110,115,44,32,98,117,102,44,32,111,102,102,115,101,116,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,98,117,102,32,38,38,32,111,102,102,115,101,116,32,124,124,32,48,59,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,40,111,112,116,105,111,110,115,41,32,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,98,117,102,32,61,32,111,112,116,105,111,110,115,32,61,61,61,32,39,98,105,110,97,114,121,39,32,63,32,110,101,119,32,65,114,114,97,121,40,49,54,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,111,112,116,105,111,110,115,32,61,32,110,117,108,108,59,92,110,32,32,125,92,110,32,32,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,92,110,32,32,118,97,114,32,114,110,100,115,32,61,32,111,112,116,105,111,110,115,46,114,97,110,100,111,109,32,124,124,32,40,111,112,116,105,111,110,115,46,114,110,103,32,124,124,32,114,110,103,66,114,111,119,115,101,114,41,40,41,59,92,110,92,110,32,32,47,47,32,80,101,114,32,52,46,52,44,32,115,101,116,32,98,105,116,115,32,102,111,114,32,118,101,114,115,105,111,110,32,97,110,100,32,96,99,108,111,99,107,95,115,101,113,95,104,105,95,97,110,100,95,114,101,115,101,114,118,101,100,96,92,110,32,32,114,110,100,115,91,54,93,32,61,32,40,114,110,100,115,91,54,93,32,38,32,48,120,48,102,41,32,124,32,48,120,52,48,59,92,110,32,32,114,110,100,115,91,56,93,32,61,32,40,114,110,100,115,91,56,93,32,38,32,48,120,51,102,41,32,124,32,48,120,56,48,59,92,110,92,110,32,32,47,47,32,67,111,112,121,32,98,121,116,101,115,32,116,111,32,98,117,102,102,101,114,44,32,105,102,32,112,114,111,118,105,100,101,100,92,110,32,32,105,102,32,40,98,117,102,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,105,32,61,32,48,59,32,105,105,32,60,32,49,54,59,32,43,43,105,105,41,32,123,92,110,32,32,32,32,32,32,98,117,102,91,105,32,43,32,105,105,93,32,61,32,114,110,100,115,91,105,105,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,98,117,102,32,124,124,32,98,121,116,101,115,84,111,85,117,105,100,95,49,40,114,110,100,115,41,59,92,110,125,92,110,92,110,118,97,114,32,118,52,95,49,32,61,32,118,52,59,92,110,92,110,47,42,42,92,110,32,42,32,82,101,115,101,116,32,97,32,110,111,100,101,39,115,32,115,116,97,116,101,32,116,111,32,116,104,101,32,116,114,101,101,32,100,101,102,97,117,108,116,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,110,111,100,101,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,114,101,115,101,116,83,116,97,116,101,40,110,111,100,101,41,32,123,92,110,32,32,32,32,95,46,101,97,99,104,40,110,111,100,101,46,95,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,44,32,112,114,111,112,41,32,123,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,112,114,111,112,44,32,118,97,108,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,83,116,111,114,101,115,32,114,101,112,101,116,105,116,105,118,101,32,115,116,97,116,101,32,99,104,97,110,103,101,32,108,111,103,105,99,32,102,111,114,32,109,111,115,116,32,115,116,97,116,101,32,109,101,116,104,111,100,115,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,112,114,111,112,32,83,116,97,116,101,32,112,114,111,112,101,114,116,121,32,110,97,109,101,46,92,110,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,118,97,108,117,101,32,78,101,119,32,115,116,97,116,101,32,118,97,108,117,101,46,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,118,101,114,98,32,86,101,114,98,32,117,115,101,100,32,102,111,114,32,101,118,101,110,116,115,46,92,110,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,110,111,100,101,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,100,101,101,112,32,79,112,116,105,111,110,97,108,32,110,97,109,101,32,111,102,32,115,116,97,116,101,32,109,101,116,104,111,100,32,116,111,32,99,97,108,108,32,114,101,99,117,114,115,105,118,101,108,121,46,92,110,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,112,114,111,112,44,32,118,97,108,117,101,44,32,118,101,114,98,44,32,110,111,100,101,44,32,100,101,101,112,41,32,123,92,110,32,32,32,32,105,102,32,40,110,111,100,101,46,115,116,97,116,101,40,112,114,111,112,41,32,33,61,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,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,32,38,38,32,118,101,114,98,32,61,61,61,32,39,114,101,115,116,111,114,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,101,116,83,116,97,116,101,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,112,114,111,112,44,32,118,97,108,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,39,32,43,32,118,101,114,98,44,32,110,111,100,101,44,32,102,97,108,115,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,101,101,112,32,38,38,32,110,111,100,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,32,123,92,110,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,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,32,40,99,104,105,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,112,114,111,112,44,32,118,97,108,117,101,44,32,118,101,114,98,44,32,99,104,105,108,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,59,92,110,32,32,32,32,32,32,32,32,110,111,100,101,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,125,92,110,92,110,118,97,114,32,101,115,54,80,114,111,109,105,115,101,32,61,32,99,114,101,97,116,101,67,111,109,109,111,110,106,115,77,111,100,117,108,101,40,102,117,110,99,116,105,111,110,32,40,109,111,100,117,108,101,44,32,101,120,112,111,114,116,115,41,32,123,92,110,47,42,33,92,110,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,92,110,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,92,110,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,92,110,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,92,110,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,92,110,32,42,47,92,110,92,110,40,102,117,110,99,116,105,111,110,32,40,103,108,111,98,97,108,44,32,102,97,99,116,111,114,121,41,32,123,92,110,92,116,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,97,99,116,111,114,121,40,41,59,92,110,125,40,99,111,109,109,111,110,106,115,71,108,111,98,97,108,44,32,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,39,117,115,101,32,115,116,114,105,99,116,39,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,98,106,101,99,116,79,114,70,117,110,99,116,105,111,110,40,120,41,32,123,92,110,32,32,118,97,114,32,116,121,112,101,32,61,32,116,121,112,101,111,102,32,120,59,92,110,32,32,114,101,116,117,114,110,32,120,32,33,61,61,32,110,117,108,108,32,38,38,32,40,116,121,112,101,32,61,61,61,32,39,111,98,106,101,99,116,39,32,124,124,32,116,121,112,101,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,70,117,110,99,116,105,111,110,36,36,49,40,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,120,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,59,92,110,125,92,110,92,110,92,110,92,110,118,97,114,32,95,105,115,65,114,114,97,121,32,61,32,118,111,105,100,32,48,59,92,110,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,41,32,123,92,110,32,32,95,105,115,65,114,114,97,121,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,59,92,110,125,32,101,108,115,101,32,123,92,110,32,32,95,105,115,65,114,114,97,121,32,61,32,102,117,110,99,116,105,111,110,32,40,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,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,120,41,32,61,61,61,32,39,91,111,98,106,101,99,116,32,65,114,114,97,121,93,39,59,92,110,32,32,125,59,92,110,125,92,110,92,110,118,97,114,32,105,115,65,114,114,97,121,36,36,49,32,61,32,95,105,115,65,114,114,97,121,59,92,110,92,110,118,97,114,32,108,101,110,32,61,32,48,59,92,110,118,97,114,32,118,101,114,116,120,78,101,120,116,32,61,32,118,111,105,100,32,48,59,92,110,118,97,114,32,99,117,115,116,111,109,83,99,104,101,100,117,108,101,114,70,110,32,61,32,118,111,105,100,32,48,59,92,110,92,110,118,97,114,32,97,115,97,112,32,61,32,102,117,110,99,116,105,111,110,32,97,115,97,112,40,99,97,108,108,98,97,99,107,44,32,97,114,103,41,32,123,92,110,32,32,113,117,101,117,101,91,108,101,110,93,32,61,32,99,97,108,108,98,97,99,107,59,92,110,32,32,113,117,101,117,101,91,108,101,110,32,43,32,49,93,32,61,32,97,114,103,59,92,110,32,32,108,101,110,32,43,61,32,50,59,92,110,32,32,105,102,32,40,108,101,110,32,61,61,61,32,50,41,32,123,92,110,32,32,32,32,47,47,32,73,102,32,108,101,110,32,105,115,32,50,44,32,116,104,97,116,32,109,101,97,110,115,32,116,104,97,116,32,119,101,32,110,101,101,100,32,116,111,32,115,99,104,101,100,117,108,101,32,97,110,32,97,115,121,110,99,32,102,108,117,115,104,46,92,110,32,32,32,32,47,47,32,73,102,32,97,100,100,105,116,105,111,110,97,108,32,99,97,108,108,98,97,99,107,115,32,97,114,101,32,113,117,101,117,101,100,32,98,101,102,111,114,101,32,116,104,101,32,113,117,101,117,101,32,105,115,32,102,108,117,115,104,101,100,44,32,116,104,101,121,92,110,32,32,32,32,47,47,32,119,105,108,108,32,98,101,32,112,114,111,99,101,115,115,101,100,32,98,121,32,116,104,105,115,32,102,108,117,115,104,32,116,104,97,116,32,119,101,32,97,114,101,32,115,99,104,101,100,117,108,105,110,103,46,92,110,32,32,32,32,105,102,32,40,99,117,115,116,111,109,83,99,104,101,100,117,108,101,114,70,110,41,32,123,92,110,32,32,32,32,32,32,99,117,115,116,111,109,83,99,104,101,100,117,108,101,114,70,110,40,102,108,117,115,104,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,115,99,104,101,100,117,108,101,70,108,117,115,104,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,83,99,104,101,100,117,108,101,114,40,115,99,104,101,100,117,108,101,70,110,41,32,123,92,110,32,32,99,117,115,116,111,109,83,99,104,101,100,117,108,101,114,70,110,32,61,32,115,99,104,101,100,117,108,101,70,110,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,65,115,97,112,40,97,115,97,112,70,110,41,32,123,92,110,32,32,97,115,97,112,32,61,32,97,115,97,112,70,110,59,92,110,125,92,110,92,110,118,97,114,32,98,114,111,119,115,101,114,87,105,110,100,111,119,32,61,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,63,32,119,105,110,100,111,119,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,118,97,114,32,98,114,111,119,115,101,114,71,108,111,98,97,108,32,61,32,98,114,111,119,115,101,114,87,105,110,100,111,119,32,124,124,32,123,125,59,92,110,118,97,114,32,66,114,111,119,115,101,114,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,61,32,98,114,111,119,115,101,114,71,108,111,98,97,108,46,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,124,124,32,98,114,111,119,115,101,114,71,108,111,98,97,108,46,87,101,98,75,105,116,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,59,92,110,118,97,114,32,105,115,78,111,100,101,32,61,32,116,121,112,101,111,102,32,115,101,108,102,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,116,121,112,101,111,102,32,112,114,111,99,101,115,115,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,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,32,61,61,61,32,39,91,111,98,106,101,99,116,32,112,114,111,99,101,115,115,93,39,59,92,110,92,110,47,47,32,116,101,115,116,32,102,111,114,32,119,101,98,32,119,111,114,107,101,114,32,98,117,116,32,110,111,116,32,105,110,32,73,69,49,48,92,110,118,97,114,32,105,115,87,111,114,107,101,114,32,61,32,116,121,112,101,111,102,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,116,121,112,101,111,102,32,105,109,112,111,114,116,83,99,114,105,112,116,115,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,116,121,112,101,111,102,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,59,92,110,92,110,47,47,32,110,111,100,101,92,110,102,117,110,99,116,105,111,110,32,117,115,101,78,101,120,116,84,105,99,107,40,41,32,123,92,110,32,32,47,47,32,110,111,100,101,32,118,101,114,115,105,111,110,32,48,46,49,48,46,120,32,100,105,115,112,108,97,121,115,32,97,32,100,101,112,114,101,99,97,116,105,111,110,32,119,97,114,110,105,110,103,32,119,104,101,110,32,110,101,120,116,84,105,99,107,32,105,115,32,117,115,101,100,32,114,101,99,117,114,115,105,118,101,108,121,92,110,32,32,47,47,32,115,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,99,117,106,111,106,115,47,119,104,101,110,47,105,115,115,117,101,115,47,52,49,48,32,102,111,114,32,100,101,116,97,105,108,115,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,99,101,115,115,46,110,101,120,116,84,105,99,107,40,102,108,117,115,104,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,47,32,118,101,114,116,120,92,110,102,117,110,99,116,105,111,110,32,117,115,101,86,101,114,116,120,84,105,109,101,114,40,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,118,101,114,116,120,78,101,120,116,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,101,114,116,120,78,101,120,116,40,102,108,117,115,104,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,117,115,101,83,101,116,84,105,109,101,111,117,116,40,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,117,115,101,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,40,41,32,123,92,110,32,32,118,97,114,32,105,116,101,114,97,116,105,111,110,115,32,61,32,48,59,92,110,32,32,118,97,114,32,111,98,115,101,114,118,101,114,32,61,32,110,101,119,32,66,114,111,119,115,101,114,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,40,102,108,117,115,104,41,59,92,110,32,32,118,97,114,32,110,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,39,39,41,59,92,110,32,32,111,98,115,101,114,118,101,114,46,111,98,115,101,114,118,101,40,110,111,100,101,44,32,123,32,99,104,97,114,97,99,116,101,114,68,97,116,97,58,32,116,114,117,101,32,125,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,110,111,100,101,46,100,97,116,97,32,61,32,105,116,101,114,97,116,105,111,110,115,32,61,32,43,43,105,116,101,114,97,116,105,111,110,115,32,37,32,50,59,92,110,32,32,125,59,92,110,125,92,110,92,110,47,47,32,119,101,98,32,119,111,114,107,101,114,92,110,102,117,110,99,116,105,111,110,32,117,115,101,77,101,115,115,97,103,101,67,104,97,110,110,101,108,40,41,32,123,92,110,32,32,118,97,114,32,99,104,97,110,110,101,108,32,61,32,110,101,119,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,40,41,59,92,110,32,32,99,104,97,110,110,101,108,46,112,111,114,116,49,46,111,110,109,101,115,115,97,103,101,32,61,32,102,108,117,115,104,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,104,97,110,110,101,108,46,112,111,114,116,50,46,112,111,115,116,77,101,115,115,97,103,101,40,48,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,117,115,101,83,101,116,84,105,109,101,111,117,116,40,41,32,123,92,110,32,32,47,47,32,83,116,111,114,101,32,115,101,116,84,105,109,101,111,117,116,32,114,101,102,101,114,101,110,99,101,32,115,111,32,101,115,54,45,112,114,111,109,105,115,101,32,119,105,108,108,32,98,101,32,117,110,97,102,102,101,99,116,101,100,32,98,121,92,110,32,32,47,47,32,111,116,104,101,114,32,99,111,100,101,32,109,111,100,105,102,121,105,110,103,32,115,101,116,84,105,109,101,111,117,116,32,40,108,105,107,101,32,115,105,110,111,110,46,117,115,101,70,97,107,101,84,105,109,101,114,115,40,41,41,92,110,32,32,118,97,114,32,103,108,111,98,97,108,83,101,116,84,105,109,101,111,117,116,32,61,32,115,101,116,84,105,109,101,111,117,116,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,103,108,111,98,97,108,83,101,116,84,105,109,101,111,117,116,40,102,108,117,115,104,44,32,49,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,118,97,114,32,113,117,101,117,101,32,61,32,110,101,119,32,65,114,114,97,121,40,49,48,48,48,41,59,92,110,102,117,110,99,116,105,111,110,32,102,108,117,115,104,40,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,59,32,105,32,43,61,32,50,41,32,123,92,110,32,32,32,32,118,97,114,32,99,97,108,108,98,97,99,107,32,61,32,113,117,101,117,101,91,105,93,59,92,110,32,32,32,32,118,97,114,32,97,114,103,32,61,32,113,117,101,117,101,91,105,32,43,32,49,93,59,92,110,92,110,32,32,32,32,99,97,108,108,98,97,99,107,40,97,114,103,41,59,92,110,92,110,32,32,32,32,113,117,101,117,101,91,105,93,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,113,117,101,117,101,91,105,32,43,32,49,93,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,125,92,110,92,110,32,32,108,101,110,32,61,32,48,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,101,109,112,116,86,101,114,116,120,40,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,118,97,114,32,114,32,61,32,99,111,109,109,111,110,106,115,82,101,113,117,105,114,101,59,92,110,32,32,32,32,118,97,114,32,118,101,114,116,120,32,61,32,114,40,39,118,101,114,116,120,39,41,59,92,110,32,32,32,32,118,101,114,116,120,78,101,120,116,32,61,32,118,101,114,116,120,46,114,117,110,79,110,76,111,111,112,32,124,124,32,118,101,114,116,120,46,114,117,110,79,110,67,111,110,116,101,120,116,59,92,110,32,32,32,32,114,101,116,117,114,110,32,117,115,101,86,101,114,116,120,84,105,109,101,114,40,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,117,115,101,83,101,116,84,105,109,101,111,117,116,40,41,59,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,115,99,104,101,100,117,108,101,70,108,117,115,104,32,61,32,118,111,105,100,32,48,59,92,110,47,47,32,68,101,99,105,100,101,32,119,104,97,116,32,97,115,121,110,99,32,109,101,116,104,111,100,32,116,111,32,117,115,101,32,116,111,32,116,114,105,103,103,101,114,105,110,103,32,112,114,111,99,101,115,115,105,110,103,32,111,102,32,113,117,101,117,101,100,32,99,97,108,108,98,97,99,107,115,58,92,110,105,102,32,40,105,115,78,111,100,101,41,32,123,92,110,32,32,115,99,104,101,100,117,108,101,70,108,117,115,104,32,61,32,117,115,101,78,101,120,116,84,105,99,107,40,41,59,92,110,125,32,101,108,115,101,32,105,102,32,40,66,114,111,119,115,101,114,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,41,32,123,92,110,32,32,115,99,104,101,100,117,108,101,70,108,117,115,104,32,61,32,117,115,101,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,40,41,59,92,110,125,32,101,108,115,101,32,105,102,32,40,105,115,87,111,114,107,101,114,41,32,123,92,110,32,32,115,99,104,101,100,117,108,101,70,108,117,115,104,32,61,32,117,115,101,77,101,115,115,97,103,101,67,104,97,110,110,101,108,40,41,59,92,110,125,32,101,108,115,101,32,105,102,32,40,98,114,111,119,115,101,114,87,105,110,100,111,119,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,116,121,112,101,111,102,32,99,111,109,109,111,110,106,115,82,101,113,117,105,114,101,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,115,99,104,101,100,117,108,101,70,108,117,115,104,32,61,32,97,116,116,101,109,112,116,86,101,114,116,120,40,41,59,92,110,125,32,101,108,115,101,32,123,92,110,32,32,115,99,104,101,100,117,108,101,70,108,117,115,104,32,61,32,117,115,101,83,101,116,84,105,109,101,111,117,116,40,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,104,101,110,40,111,110,70,117,108,102,105,108,108,109,101,110,116,44,32,111,110,82,101,106,101,99,116,105,111,110,41,32,123,92,110,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,116,104,105,115,59,92,110,92,110,32,32,118,97,114,32,99,104,105,108,100,32,61,32,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,110,111,111,112,36,36,49,41,59,92,110,92,110,32,32,105,102,32,40,99,104,105,108,100,91,80,82,79,77,73,83,69,95,73,68,93,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,109,97,107,101,80,114,111,109,105,115,101,40,99,104,105,108,100,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,95,115,116,97,116,101,32,61,32,112,97,114,101,110,116,46,95,115,116,97,116,101,59,92,110,92,110,92,110,32,32,105,102,32,40,95,115,116,97,116,101,41,32,123,92,110,32,32,32,32,118,97,114,32,99,97,108,108,98,97,99,107,32,61,32,97,114,103,117,109,101,110,116,115,91,95,115,116,97,116,101,32,45,32,49,93,59,92,110,32,32,32,32,97,115,97,112,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,118,111,107,101,67,97,108,108,98,97,99,107,40,95,115,116,97,116,101,44,32,99,104,105,108,100,44,32,99,97,108,108,98,97,99,107,44,32,112,97,114,101,110,116,46,95,114,101,115,117,108,116,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,115,117,98,115,99,114,105,98,101,40,112,97,114,101,110,116,44,32,99,104,105,108,100,44,32,111,110,70,117,108,102,105,108,108,109,101,110,116,44,32,111,110,82,101,106,101,99,116,105,111,110,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,99,104,105,108,100,59,92,110,125,92,110,92,110,47,42,42,92,110,32,32,96,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,96,32,114,101,116,117,114,110,115,32,97,32,112,114,111,109,105,115,101,32,116,104,97,116,32,119,105,108,108,32,98,101,99,111,109,101,32,114,101,115,111,108,118,101,100,32,119,105,116,104,32,116,104,101,92,110,32,32,112,97,115,115,101,100,32,96,118,97,108,117,101,96,46,32,73,116,32,105,115,32,115,104,111,114,116,104,97,110,100,32,102,111,114,32,116,104,101,32,102,111,108,108,111,119,105,110,103,58,92,110,92,110,32,32,96,96,96,106,97,118,97,115,99,114,105,112,116,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,32,61,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,123,92,110,32,32,32,32,114,101,115,111,108,118,101,40,49,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,112,114,111,109,105,115,101,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,123,92,110,32,32,32,32,47,47,32,118,97,108,117,101,32,61,61,61,32,49,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,92,110,32,32,73,110,115,116,101,97,100,32,111,102,32,119,114,105,116,105,110,103,32,116,104,101,32,97,98,111,118,101,44,32,121,111,117,114,32,99,111,100,101,32,110,111,119,32,115,105,109,112,108,121,32,98,101,99,111,109,101,115,32,116,104,101,32,102,111,108,108,111,119,105,110,103,58,92,110,92,110,32,32,96,96,96,106,97,118,97,115,99,114,105,112,116,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,32,61,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,49,41,59,92,110,92,110,32,32,112,114,111,109,105,115,101,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,123,92,110,32,32,32,32,47,47,32,118,97,108,117,101,32,61,61,61,32,49,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,92,110,32,32,64,109,101,116,104,111,100,32,114,101,115,111,108,118,101,92,110,32,32,64,115,116,97,116,105,99,92,110,32,32,64,112,97,114,97,109,32,123,65,110,121,125,32,118,97,108,117,101,32,118,97,108,117,101,32,116,104,97,116,32,116,104,101,32,114,101,116,117,114,110,101,100,32,112,114,111,109,105,115,101,32,119,105,108,108,32,98,101,32,114,101,115,111,108,118,101,100,32,119,105,116,104,92,110,32,32,85,115,101,102,117,108,32,102,111,114,32,116,111,111,108,105,110,103,46,92,110,32,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,97,32,112,114,111,109,105,115,101,32,116,104,97,116,32,119,105,108,108,32,98,101,99,111,109,101,32,102,117,108,102,105,108,108,101,100,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,92,110,32,32,96,118,97,108,117,101,96,92,110,42,47,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,36,49,40,111,98,106,101,99,116,41,32,123,92,110,32,32,47,42,106,115,104,105,110,116,32,118,97,108,105,100,116,104,105,115,58,116,114,117,101,32,42,47,92,110,32,32,118,97,114,32,67,111,110,115,116,114,117,99,116,111,114,32,61,32,116,104,105,115,59,92,110,92,110,32,32,105,102,32,40,111,98,106,101,99,116,32,38,38,32,116,121,112,101,111,102,32,111,98,106,101,99,116,32,61,61,61,32,39,111,98,106,101,99,116,39,32,38,38,32,111,98,106,101,99,116,46,99,111,110,115,116,114,117,99,116,111,114,32,61,61,61,32,67,111,110,115,116,114,117,99,116,111,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,112,114,111,109,105,115,101,32,61,32,110,101,119,32,67,111,110,115,116,114,117,99,116,111,114,40,110,111,111,112,36,36,49,41,59,92,110,32,32,114,101,115,111,108,118,101,40,112,114,111,109,105,115,101,44,32,111,98,106,101,99,116,41,59,92,110,32,32,114,101,116,117,114,110,32,112,114,111,109,105,115,101,59,92,110,125,92,110,92,110,118,97,114,32,80,82,79,77,73,83,69,95,73,68,32,61,32,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,59,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,111,112,36,36,49,40,41,32,123,125,92,110,92,110,118,97,114,32,80,69,78,68,73,78,71,32,61,32,118,111,105,100,32,48,59,92,110,118,97,114,32,70,85,76,70,73,76,76,69,68,32,61,32,49,59,92,110,118,97,114,32,82,69,74,69,67,84,69,68,32,61,32,50,59,92,110,92,110,118,97,114,32,71,69,84,95,84,72,69,78,95,69,82,82,79,82,32,61,32,110,101,119,32,69,114,114,111,114,79,98,106,101,99,116,40,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,108,102,70,117,108,102,105,108,108,109,101,110,116,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,97,110,110,111,116,82,101,116,117,114,110,79,119,110,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,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,39,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,84,104,101,110,40,112,114,111,109,105,115,101,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,109,105,115,101,46,116,104,101,110,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,114,114,111,114,41,32,123,92,110,32,32,32,32,71,69,84,95,84,72,69,78,95,69,82,82,79,82,46,101,114,114,111,114,32,61,32,101,114,114,111,114,59,92,110,32,32,32,32,114,101,116,117,114,110,32,71,69,84,95,84,72,69,78,95,69,82,82,79,82,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,121,84,104,101,110,40,116,104,101,110,36,36,49,44,32,118,97,108,117,101,44,32,102,117,108,102,105,108,108,109,101,110,116,72,97,110,100,108,101,114,44,32,114,101,106,101,99,116,105,111,110,72,97,110,100,108,101,114,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,116,104,101,110,36,36,49,46,99,97,108,108,40,118,97,108,117,101,44,32,102,117,108,102,105,108,108,109,101,110,116,72,97,110,100,108,101,114,44,32,114,101,106,101,99,116,105,111,110,72,97,110,100,108,101,114,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,70,111,114,101,105,103,110,84,104,101,110,97,98,108,101,40,112,114,111,109,105,115,101,44,32,116,104,101,110,97,98,108,101,44,32,116,104,101,110,36,36,49,41,32,123,92,110,32,32,97,115,97,112,40,102,117,110,99,116,105,111,110,32,40,112,114,111,109,105,115,101,41,32,123,92,110,32,32,32,32,118,97,114,32,115,101,97,108,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,118,97,114,32,101,114,114,111,114,32,61,32,116,114,121,84,104,101,110,40,116,104,101,110,36,36,49,44,32,116,104,101,110,97,98,108,101,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,101,97,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,101,97,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,101,110,97,98,108,101,32,33,61,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,111,108,118,101,40,112,114,111,109,105,115,101,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,102,117,108,102,105,108,108,40,112,114,111,109,105,115,101,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,101,97,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,101,97,108,101,100,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,114,101,106,101,99,116,40,112,114,111,109,105,115,101,44,32,114,101,97,115,111,110,41,59,92,110,32,32,32,32,125,44,32,39,83,101,116,116,108,101,58,32,39,32,43,32,40,112,114,111,109,105,115,101,46,95,108,97,98,101,108,32,124,124,32,39,32,117,110,107,110,111,119,110,32,112,114,111,109,105,115,101,39,41,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,115,101,97,108,101,100,32,38,38,32,101,114,114,111,114,41,32,123,92,110,32,32,32,32,32,32,115,101,97,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,114,101,106,101,99,116,40,112,114,111,109,105,115,101,44,32,101,114,114,111,114,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,112,114,111,109,105,115,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,79,119,110,84,104,101,110,97,98,108,101,40,112,114,111,109,105,115,101,44,32,116,104,101,110,97,98,108,101,41,32,123,92,110,32,32,105,102,32,40,116,104,101,110,97,98,108,101,46,95,115,116,97,116,101,32,61,61,61,32,70,85,76,70,73,76,76,69,68,41,32,123,92,110,32,32,32,32,102,117,108,102,105,108,108,40,112,114,111,109,105,115,101,44,32,116,104,101,110,97,98,108,101,46,95,114,101,115,117,108,116,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,101,110,97,98,108,101,46,95,115,116,97,116,101,32,61,61,61,32,82,69,74,69,67,84,69,68,41,32,123,92,110,32,32,32,32,114,101,106,101,99,116,40,112,114,111,109,105,115,101,44,32,116,104,101,110,97,98,108,101,46,95,114,101,115,117,108,116,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,115,117,98,115,99,114,105,98,101,40,116,104,101,110,97,98,108,101,44,32,117,110,100,101,102,105,110,101,100,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,111,108,118,101,40,112,114,111,109,105,115,101,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,106,101,99,116,40,112,114,111,109,105,115,101,44,32,114,101,97,115,111,110,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,77,97,121,98,101,84,104,101,110,97,98,108,101,40,112,114,111,109,105,115,101,44,32,109,97,121,98,101,84,104,101,110,97,98,108,101,44,32,116,104,101,110,36,36,49,41,32,123,92,110,32,32,105,102,32,40,109,97,121,98,101,84,104,101,110,97,98,108,101,46,99,111,110,115,116,114,117,99,116,111,114,32,61,61,61,32,112,114,111,109,105,115,101,46,99,111,110,115,116,114,117,99,116,111,114,32,38,38,32,116,104,101,110,36,36,49,32,61,61,61,32,116,104,101,110,32,38,38,32,109,97,121,98,101,84,104,101,110,97,98,108,101,46,99,111,110,115,116,114,117,99,116,111,114,46,114,101,115,111,108,118,101,32,61,61,61,32,114,101,115,111,108,118,101,36,49,41,32,123,92,110,32,32,32,32,104,97,110,100,108,101,79,119,110,84,104,101,110,97,98,108,101,40,112,114,111,109,105,115,101,44,32,109,97,121,98,101,84,104,101,110,97,98,108,101,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,105,102,32,40,116,104,101,110,36,36,49,32,61,61,61,32,71,69,84,95,84,72,69,78,95,69,82,82,79,82,41,32,123,92,110,32,32,32,32,32,32,114,101,106,101,99,116,40,112,114,111,109,105,115,101,44,32,71,69,84,95,84,72,69,78,95,69,82,82,79,82,46,101,114,114,111,114,41,59,92,110,32,32,32,32,32,32,71,69,84,95,84,72,69,78,95,69,82,82,79,82,46,101,114,114,111,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,101,110,36,36,49,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,102,117,108,102,105,108,108,40,112,114,111,109,105,115,101,44,32,109,97,121,98,101,84,104,101,110,97,98,108,101,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,36,36,49,40,116,104,101,110,36,36,49,41,41,32,123,92,110,32,32,32,32,32,32,104,97,110,100,108,101,70,111,114,101,105,103,110,84,104,101,110,97,98,108,101,40,112,114,111,109,105,115,101,44,32,109,97,121,98,101,84,104,101,110,97,98,108,101,44,32,116,104,101,110,36,36,49,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,102,117,108,102,105,108,108,40,112,114,111,109,105,115,101,44,32,109,97,121,98,101,84,104,101,110,97,98,108,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,40,112,114,111,109,105,115,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,112,114,111,109,105,115,101,32,61,61,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,106,101,99,116,40,112,114,111,109,105,115,101,44,32,115,101,108,102,70,117,108,102,105,108,108,109,101,110,116,40,41,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,111,98,106,101,99,116,79,114,70,117,110,99,116,105,111,110,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,104,97,110,100,108,101,77,97,121,98,101,84,104,101,110,97,98,108,101,40,112,114,111,109,105,115,101,44,32,118,97,108,117,101,44,32,103,101,116,84,104,101,110,40,118,97,108,117,101,41,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,102,117,108,102,105,108,108,40,112,114,111,109,105,115,101,44,32,118,97,108,117,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,117,98,108,105,115,104,82,101,106,101,99,116,105,111,110,40,112,114,111,109,105,115,101,41,32,123,92,110,32,32,105,102,32,40,112,114,111,109,105,115,101,46,95,111,110,101,114,114,111,114,41,32,123,92,110,32,32,32,32,112,114,111,109,105,115,101,46,95,111,110,101,114,114,111,114,40,112,114,111,109,105,115,101,46,95,114,101,115,117,108,116,41,59,92,110,32,32,125,92,110,92,110,32,32,112,117,98,108,105,115,104,40,112,114,111,109,105,115,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,117,108,102,105,108,108,40,112,114,111,109,105,115,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,112,114,111,109,105,115,101,46,95,115,116,97,116,101,32,33,61,61,32,80,69,78,68,73,78,71,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,125,92,110,92,110,32,32,112,114,111,109,105,115,101,46,95,114,101,115,117,108,116,32,61,32,118,97,108,117,101,59,92,110,32,32,112,114,111,109,105,115,101,46,95,115,116,97,116,101,32,61,32,70,85,76,70,73,76,76,69,68,59,92,110,92,110,32,32,105,102,32,40,112,114,111,109,105,115,101,46,95,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,32,33,61,61,32,48,41,32,123,92,110,32,32,32,32,97,115,97,112,40,112,117,98,108,105,115,104,44,32,112,114,111,109,105,115,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,106,101,99,116,40,112,114,111,109,105,115,101,44,32,114,101,97,115,111,110,41,32,123,92,110,32,32,105,102,32,40,112,114,111,109,105,115,101,46,95,115,116,97,116,101,32,33,61,61,32,80,69,78,68,73,78,71,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,125,92,110,32,32,112,114,111,109,105,115,101,46,95,115,116,97,116,101,32,61,32,82,69,74,69,67,84,69,68,59,92,110,32,32,112,114,111,109,105,115,101,46,95,114,101,115,117,108,116,32,61,32,114,101,97,115,111,110,59,92,110,92,110,32,32,97,115,97,112,40,112,117,98,108,105,115,104,82,101,106,101,99,116,105,111,110,44,32,112,114,111,109,105,115,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,117,98,115,99,114,105,98,101,40,112,97,114,101,110,116,44,32,99,104,105,108,100,44,32,111,110,70,117,108,102,105,108,108,109,101,110,116,44,32,111,110,82,101,106,101,99,116,105,111,110,41,32,123,92,110,32,32,118,97,114,32,95,115,117,98,115,99,114,105,98,101,114,115,32,61,32,112,97,114,101,110,116,46,95,115,117,98,115,99,114,105,98,101,114,115,59,92,110,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,95,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,59,92,110,92,110,92,110,32,32,112,97,114,101,110,116,46,95,111,110,101,114,114,111,114,32,61,32,110,117,108,108,59,92,110,92,110,32,32,95,115,117,98,115,99,114,105,98,101,114,115,91,108,101,110,103,116,104,93,32,61,32,99,104,105,108,100,59,92,110,32,32,95,115,117,98,115,99,114,105,98,101,114,115,91,108,101,110,103,116,104,32,43,32,70,85,76,70,73,76,76,69,68,93,32,61,32,111,110,70,117,108,102,105,108,108,109,101,110,116,59,92,110,32,32,95,115,117,98,115,99,114,105,98,101,114,115,91,108,101,110,103,116,104,32,43,32,82,69,74,69,67,84,69,68,93,32,61,32,111,110,82,101,106,101,99,116,105,111,110,59,92,110,92,110,32,32,105,102,32,40,108,101,110,103,116,104,32,61,61,61,32,48,32,38,38,32,112,97,114,101,110,116,46,95,115,116,97,116,101,41,32,123,92,110,32,32,32,32,97,115,97,112,40,112,117,98,108,105,115,104,44,32,112,97,114,101,110,116,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,117,98,108,105,115,104,40,112,114,111,109,105,115,101,41,32,123,92,110,32,32,118,97,114,32,115,117,98,115,99,114,105,98,101,114,115,32,61,32,112,114,111,109,105,115,101,46,95,115,117,98,115,99,114,105,98,101,114,115,59,92,110,32,32,118,97,114,32,115,101,116,116,108,101,100,32,61,32,112,114,111,109,105,115,101,46,95,115,116,97,116,101,59,92,110,92,110,32,32,105,102,32,40,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,104,105,108,100,32,61,32,118,111,105,100,32,48,44,92,110,32,32,32,32,32,32,99,97,108,108,98,97,99,107,32,61,32,118,111,105,100,32,48,44,92,110,32,32,32,32,32,32,100,101,116,97,105,108,32,61,32,112,114,111,109,105,115,101,46,95,114,101,115,117,108,116,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,59,32,105,32,43,61,32,51,41,32,123,92,110,32,32,32,32,99,104,105,108,100,32,61,32,115,117,98,115,99,114,105,98,101,114,115,91,105,93,59,92,110,32,32,32,32,99,97,108,108,98,97,99,107,32,61,32,115,117,98,115,99,114,105,98,101,114,115,91,105,32,43,32,115,101,116,116,108,101,100,93,59,92,110,92,110,32,32,32,32,105,102,32,40,99,104,105,108,100,41,32,123,92,110,32,32,32,32,32,32,105,110,118,111,107,101,67,97,108,108,98,97,99,107,40,115,101,116,116,108,101,100,44,32,99,104,105,108,100,44,32,99,97,108,108,98,97,99,107,44,32,100,101,116,97,105,108,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,99,97,108,108,98,97,99,107,40,100,101,116,97,105,108,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,112,114,111,109,105,115,101,46,95,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,32,61,32,48,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,69,114,114,111,114,79,98,106,101,99,116,40,41,32,123,92,110,32,32,116,104,105,115,46,101,114,114,111,114,32,61,32,110,117,108,108,59,92,110,125,92,110,92,110,118,97,114,32,84,82,89,95,67,65,84,67,72,95,69,82,82,79,82,32,61,32,110,101,119,32,69,114,114,111,114,79,98,106,101,99,116,40,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,121,67,97,116,99,104,40,99,97,108,108,98,97,99,107,44,32,100,101,116,97,105,108,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,97,108,108,98,97,99,107,40,100,101,116,97,105,108,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,84,82,89,95,67,65,84,67,72,95,69,82,82,79,82,46,101,114,114,111,114,32,61,32,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,84,82,89,95,67,65,84,67,72,95,69,82,82,79,82,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,67,97,108,108,98,97,99,107,40,115,101,116,116,108,101,100,44,32,112,114,111,109,105,115,101,44,32,99,97,108,108,98,97,99,107,44,32,100,101,116,97,105,108,41,32,123,92,110,32,32,118,97,114,32,104,97,115,67,97,108,108,98,97,99,107,32,61,32,105,115,70,117,110,99,116,105,111,110,36,36,49,40,99,97,108,108,98,97,99,107,41,44,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,118,111,105,100,32,48,44,92,110,32,32,32,32,32,32,101,114,114,111,114,32,61,32,118,111,105,100,32,48,44,92,110,32,32,32,32,32,32,115,117,99,99,101,101,100,101,100,32,61,32,118,111,105,100,32,48,44,92,110,32,32,32,32,32,32,102,97,105,108,101,100,32,61,32,118,111,105,100,32,48,59,92,110,92,110,32,32,105,102,32,40,104,97,115,67,97,108,108,98,97,99,107,41,32,123,92,110,32,32,32,32,118,97,108,117,101,32,61,32,116,114,121,67,97,116,99,104,40,99,97,108,108,98,97,99,107,44,32,100,101,116,97,105,108,41,59,92,110,92,110,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,84,82,89,95,67,65,84,67,72,95,69,82,82,79,82,41,32,123,92,110,32,32,32,32,32,32,102,97,105,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,101,114,114,111,114,32,61,32,118,97,108,117,101,46,101,114,114,111,114,59,92,110,32,32,32,32,32,32,118,97,108,117,101,46,101,114,114,111,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,115,117,99,99,101,101,100,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,112,114,111,109,105,115,101,32,61,61,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,106,101,99,116,40,112,114,111,109,105,115,101,44,32,99,97,110,110,111,116,82,101,116,117,114,110,79,119,110,40,41,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,118,97,108,117,101,32,61,32,100,101,116,97,105,108,59,92,110,32,32,32,32,115,117,99,99,101,101,100,101,100,32,61,32,116,114,117,101,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,112,114,111,109,105,115,101,46,95,115,116,97,116,101,32,33,61,61,32,80,69,78,68,73,78,71,41,32,123,92,110,32,32,32,32,47,47,32,110,111,111,112,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,104,97,115,67,97,108,108,98,97,99,107,32,38,38,32,115,117,99,99,101,101,100,101,100,41,32,123,92,110,32,32,32,32,114,101,115,111,108,118,101,40,112,114,111,109,105,115,101,44,32,118,97,108,117,101,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,102,97,105,108,101,100,41,32,123,92,110,32,32,32,32,114,101,106,101,99,116,40,112,114,111,109,105,115,101,44,32,101,114,114,111,114,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,115,101,116,116,108,101,100,32,61,61,61,32,70,85,76,70,73,76,76,69,68,41,32,123,92,110,32,32,32,32,102,117,108,102,105,108,108,40,112,114,111,109,105,115,101,44,32,118,97,108,117,101,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,115,101,116,116,108,101,100,32,61,61,61,32,82,69,74,69,67,84,69,68,41,32,123,92,110,32,32,32,32,114,101,106,101,99,116,40,112,114,111,109,105,115,101,44,32,118,97,108,117,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,105,97,108,105,122,101,80,114,111,109,105,115,101,40,112,114,111,109,105,115,101,44,32,114,101,115,111,108,118,101,114,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,114,101,115,111,108,118,101,114,40,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,80,114,111,109,105,115,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,115,111,108,118,101,40,112,114,111,109,105,115,101,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,32,114,101,106,101,99,116,80,114,111,109,105,115,101,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,32,32,114,101,106,101,99,116,40,112,114,111,109,105,115,101,44,32,114,101,97,115,111,110,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,114,101,106,101,99,116,40,112,114,111,109,105,115,101,44,32,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,105,100,32,61,32,48,59,92,110,102,117,110,99,116,105,111,110,32,110,101,120,116,73,100,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,100,43,43,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,97,107,101,80,114,111,109,105,115,101,40,112,114,111,109,105,115,101,41,32,123,92,110,32,32,112,114,111,109,105,115,101,91,80,82,79,77,73,83,69,95,73,68,93,32,61,32,105,100,43,43,59,92,110,32,32,112,114,111,109,105,115,101,46,95,115,116,97,116,101,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,112,114,111,109,105,115,101,46,95,114,101,115,117,108,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,112,114,111,109,105,115,101,46,95,115,117,98,115,99,114,105,98,101,114,115,32,61,32,91,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,118,97,108,105,100,97,116,105,111,110,69,114,114,111,114,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,69,114,114,111,114,40,39,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,39,41,59,92,110,125,92,110,92,110,118,97,114,32,69,110,117,109,101,114,97,116,111,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,69,110,117,109,101,114,97,116,111,114,40,67,111,110,115,116,114,117,99,116,111,114,44,32,105,110,112,117,116,41,32,123,92,110,32,32,32,32,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,32,61,32,67,111,110,115,116,114,117,99,116,111,114,59,92,110,32,32,32,32,116,104,105,115,46,112,114,111,109,105,115,101,32,61,32,110,101,119,32,67,111,110,115,116,114,117,99,116,111,114,40,110,111,111,112,36,36,49,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,112,114,111,109,105,115,101,91,80,82,79,77,73,83,69,95,73,68,93,41,32,123,92,110,32,32,32,32,32,32,109,97,107,101,80,114,111,109,105,115,101,40,116,104,105,115,46,112,114,111,109,105,115,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,36,36,49,40,105,110,112,117,116,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,101,110,103,116,104,32,61,32,105,110,112,117,116,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,32,61,32,105,110,112,117,116,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,95,114,101,115,117,108,116,32,61,32,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,108,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,102,117,108,102,105,108,108,40,116,104,105,115,46,112,114,111,109,105,115,101,44,32,116,104,105,115,46,95,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,101,110,103,116,104,32,61,32,116,104,105,115,46,108,101,110,103,116,104,32,124,124,32,48,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,101,110,117,109,101,114,97,116,101,40,105,110,112,117,116,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,117,108,102,105,108,108,40,116,104,105,115,46,112,114,111,109,105,115,101,44,32,116,104,105,115,46,95,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,106,101,99,116,40,116,104,105,115,46,112,114,111,109,105,115,101,44,32,118,97,108,105,100,97,116,105,111,110,69,114,114,111,114,40,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,69,110,117,109,101,114,97,116,111,114,46,112,114,111,116,111,116,121,112,101,46,95,101,110,117,109,101,114,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,95,101,110,117,109,101,114,97,116,101,40,105,110,112,117,116,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,116,104,105,115,46,95,115,116,97,116,101,32,61,61,61,32,80,69,78,68,73,78,71,32,38,38,32,105,32,60,32,105,110,112,117,116,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,101,97,99,104,69,110,116,114,121,40,105,110,112,117,116,91,105,93,44,32,105,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,69,110,117,109,101,114,97,116,111,114,46,112,114,111,116,111,116,121,112,101,46,95,101,97,99,104,69,110,116,114,121,32,61,32,102,117,110,99,116,105,111,110,32,95,101,97,99,104,69,110,116,114,121,40,101,110,116,114,121,44,32,105,41,32,123,92,110,32,32,32,32,118,97,114,32,99,32,61,32,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,59,92,110,32,32,32,32,118,97,114,32,114,101,115,111,108,118,101,36,36,49,32,61,32,99,46,114,101,115,111,108,118,101,59,92,110,92,110,92,110,32,32,32,32,105,102,32,40,114,101,115,111,108,118,101,36,36,49,32,61,61,61,32,114,101,115,111,108,118,101,36,49,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,116,104,101,110,32,61,32,103,101,116,84,104,101,110,40,101,110,116,114,121,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,95,116,104,101,110,32,61,61,61,32,116,104,101,110,32,38,38,32,101,110,116,114,121,46,95,115,116,97,116,101,32,33,61,61,32,80,69,78,68,73,78,71,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,115,101,116,116,108,101,100,65,116,40,101,110,116,114,121,46,95,115,116,97,116,101,44,32,105,44,32,101,110,116,114,121,46,95,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,111,102,32,95,116,104,101,110,32,33,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,45,45,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,115,117,108,116,91,105,93,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,99,32,61,61,61,32,80,114,111,109,105,115,101,36,49,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,109,105,115,101,32,61,32,110,101,119,32,99,40,110,111,111,112,36,36,49,41,59,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,77,97,121,98,101,84,104,101,110,97,98,108,101,40,112,114,111,109,105,115,101,44,32,101,110,116,114,121,44,32,95,116,104,101,110,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,112,114,111,109,105,115,101,44,32,105,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,110,101,119,32,99,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,36,36,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,111,108,118,101,36,36,49,40,101,110,116,114,121,41,59,92,110,32,32,32,32,32,32,32,32,125,41,44,32,105,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,114,101,115,111,108,118,101,36,36,49,40,101,110,116,114,121,41,44,32,105,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,69,110,117,109,101,114,97,116,111,114,46,112,114,111,116,111,116,121,112,101,46,95,115,101,116,116,108,101,100,65,116,32,61,32,102,117,110,99,116,105,111,110,32,95,115,101,116,116,108,101,100,65,116,40,115,116,97,116,101,44,32,105,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,109,105,115,101,32,61,32,116,104,105,115,46,112,114,111,109,105,115,101,59,92,110,92,110,92,110,32,32,32,32,105,102,32,40,112,114,111,109,105,115,101,46,95,115,116,97,116,101,32,61,61,61,32,80,69,78,68,73,78,71,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,45,45,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,116,101,32,61,61,61,32,82,69,74,69,67,84,69,68,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,106,101,99,116,40,112,114,111,109,105,115,101,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,101,115,117,108,116,91,105,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,102,117,108,102,105,108,108,40,112,114,111,109,105,115,101,44,32,116,104,105,115,46,95,114,101,115,117,108,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,69,110,117,109,101,114,97,116,111,114,46,112,114,111,116,111,116,121,112,101,46,95,119,105,108,108,83,101,116,116,108,101,65,116,32,61,32,102,117,110,99,116,105,111,110,32,95,119,105,108,108,83,101,116,116,108,101,65,116,40,112,114,111,109,105,115,101,44,32,105,41,32,123,92,110,32,32,32,32,118,97,114,32,101,110,117,109,101,114,97,116,111,114,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,115,117,98,115,99,114,105,98,101,40,112,114,111,109,105,115,101,44,32,117,110,100,101,102,105,110,101,100,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,101,110,117,109,101,114,97,116,111,114,46,95,115,101,116,116,108,101,100,65,116,40,70,85,76,70,73,76,76,69,68,44,32,105,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,101,110,117,109,101,114,97,116,111,114,46,95,115,101,116,116,108,101,100,65,116,40,82,69,74,69,67,84,69,68,44,32,105,44,32,114,101,97,115,111,110,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,69,110,117,109,101,114,97,116,111,114,59,92,110,125,40,41,59,92,110,92,110,47,42,42,92,110,32,32,96,80,114,111,109,105,115,101,46,97,108,108,96,32,97,99,99,101,112,116,115,32,97,110,32,97,114,114,97,121,32,111,102,32,112,114,111,109,105,115,101,115,44,32,97,110,100,32,114,101,116,117,114,110,115,32,97,32,110,101,119,32,112,114,111,109,105,115,101,32,119,104,105,99,104,92,110,32,32,105,115,32,102,117,108,102,105,108,108,101,100,32,119,105,116,104,32,97,110,32,97,114,114,97,121,32,111,102,32,102,117,108,102,105,108,108,109,101,110,116,32,118,97,108,117,101,115,32,102,111,114,32,116,104,101,32,112,97,115,115,101,100,32,112,114,111,109,105,115,101,115,44,32,111,114,92,110,32,32,114,101,106,101,99,116,101,100,32,119,105,116,104,32,116,104,101,32,114,101,97,115,111,110,32,111,102,32,116,104,101,32,102,105,114,115,116,32,112,97,115,115,101,100,32,112,114,111,109,105,115,101,32,116,111,32,98,101,32,114,101,106,101,99,116,101,100,46,32,73,116,32,99,97,115,116,115,32,97,108,108,92,110,32,32,101,108,101,109,101,110,116,115,32,111,102,32,116,104,101,32,112,97,115,115,101,100,32,105,116,101,114,97,98,108,101,32,116,111,32,112,114,111,109,105,115,101,115,32,97,115,32,105,116,32,114,117,110,115,32,116,104,105,115,32,97,108,103,111,114,105,116,104,109,46,92,110,92,110,32,32,69,120,97,109,112,108,101,58,92,110,92,110,32,32,96,96,96,106,97,118,97,115,99,114,105,112,116,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,49,32,61,32,114,101,115,111,108,118,101,40,49,41,59,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,50,32,61,32,114,101,115,111,108,118,101,40,50,41,59,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,51,32,61,32,114,101,115,111,108,118,101,40,51,41,59,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,115,32,61,32,91,32,112,114,111,109,105,115,101,49,44,32,112,114,111,109,105,115,101,50,44,32,112,114,111,109,105,115,101,51,32,93,59,92,110,92,110,32,32,80,114,111,109,105,115,101,46,97,108,108,40,112,114,111,109,105,115,101,115,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,41,123,92,110,32,32,32,32,47,47,32,84,104,101,32,97,114,114,97,121,32,104,101,114,101,32,119,111,117,108,100,32,98,101,32,91,32,49,44,32,50,44,32,51,32,93,59,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,92,110,32,32,73,102,32,97,110,121,32,111,102,32,116,104,101,32,96,112,114,111,109,105,115,101,115,96,32,103,105,118,101,110,32,116,111,32,96,97,108,108,96,32,97,114,101,32,114,101,106,101,99,116,101,100,44,32,116,104,101,32,102,105,114,115,116,32,112,114,111,109,105,115,101,92,110,32,32,116,104,97,116,32,105,115,32,114,101,106,101,99,116,101,100,32,119,105,108,108,32,98,101,32,103,105,118,101,110,32,97,115,32,97,110,32,97,114,103,117,109,101,110,116,32,116,111,32,116,104,101,32,114,101,116,117,114,110,101,100,32,112,114,111,109,105,115,101,115,39,115,92,110,32,32,114,101,106,101,99,116,105,111,110,32,104,97,110,100,108,101,114,46,32,70,111,114,32,101,120,97,109,112,108,101,58,92,110,92,110,32,32,69,120,97,109,112,108,101,58,92,110,92,110,32,32,96,96,96,106,97,118,97,115,99,114,105,112,116,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,49,32,61,32,114,101,115,111,108,118,101,40,49,41,59,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,50,32,61,32,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,92,34,50,92,34,41,41,59,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,51,32,61,32,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,92,34,51,92,34,41,41,59,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,115,32,61,32,91,32,112,114,111,109,105,115,101,49,44,32,112,114,111,109,105,115,101,50,44,32,112,114,111,109,105,115,101,51,32,93,59,92,110,92,110,32,32,80,114,111,109,105,115,101,46,97,108,108,40,112,114,111,109,105,115,101,115,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,41,123,92,110,32,32,32,32,47,47,32,67,111,100,101,32,104,101,114,101,32,110,101,118,101,114,32,114,117,110,115,32,98,101,99,97,117,115,101,32,116,104,101,114,101,32,97,114,101,32,114,101,106,101,99,116,101,100,32,112,114,111,109,105,115,101,115,33,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,101,114,114,111,114,41,32,123,92,110,32,32,32,32,47,47,32,101,114,114,111,114,46,109,101,115,115,97,103,101,32,61,61,61,32,92,34,50,92,34,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,92,110,32,32,64,109,101,116,104,111,100,32,97,108,108,92,110,32,32,64,115,116,97,116,105,99,92,110,32,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,101,110,116,114,105,101,115,32,97,114,114,97,121,32,111,102,32,112,114,111,109,105,115,101,115,92,110,32,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,108,97,98,101,108,32,111,112,116,105,111,110,97,108,32,115,116,114,105,110,103,32,102,111,114,32,108,97,98,101,108,105,110,103,32,116,104,101,32,112,114,111,109,105,115,101,46,92,110,32,32,85,115,101,102,117,108,32,102,111,114,32,116,111,111,108,105,110,103,46,92,110,32,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,112,114,111,109,105,115,101,32,116,104,97,116,32,105,115,32,102,117,108,102,105,108,108,101,100,32,119,104,101,110,32,97,108,108,32,96,112,114,111,109,105,115,101,115,96,32,104,97,118,101,32,98,101,101,110,92,110,32,32,102,117,108,102,105,108,108,101,100,44,32,111,114,32,114,101,106,101,99,116,101,100,32,105,102,32,97,110,121,32,111,102,32,116,104,101,109,32,98,101,99,111,109,101,32,114,101,106,101,99,116,101,100,46,92,110,32,32,64,115,116,97,116,105,99,92,110,42,47,92,110,102,117,110,99,116,105,111,110,32,97,108,108,40,101,110,116,114,105,101,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,69,110,117,109,101,114,97,116,111,114,40,116,104,105,115,44,32,101,110,116,114,105,101,115,41,46,112,114,111,109,105,115,101,59,92,110,125,92,110,92,110,47,42,42,92,110,32,32,96,80,114,111,109,105,115,101,46,114,97,99,101,96,32,114,101,116,117,114,110,115,32,97,32,110,101,119,32,112,114,111,109,105,115,101,32,119,104,105,99,104,32,105,115,32,115,101,116,116,108,101,100,32,105,110,32,116,104,101,32,115,97,109,101,32,119,97,121,32,97,115,32,116,104,101,92,110,32,32,102,105,114,115,116,32,112,97,115,115,101,100,32,112,114,111,109,105,115,101,32,116,111,32,115,101,116,116,108,101,46,92,110,92,110,32,32,69,120,97,109,112,108,101,58,92,110,92,110,32,32,96,96,96,106,97,118,97,115,99,114,105,112,116,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,49,32,61,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,123,92,110,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,92,110,32,32,32,32,32,32,114,101,115,111,108,118,101,40,39,112,114,111,109,105,115,101,32,49,39,41,59,92,110,32,32,32,32,125,44,32,50,48,48,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,50,32,61,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,123,92,110,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,92,110,32,32,32,32,32,32,114,101,115,111,108,118,101,40,39,112,114,111,109,105,115,101,32,50,39,41,59,92,110,32,32,32,32,125,44,32,49,48,48,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,80,114,111,109,105,115,101,46,114,97,99,101,40,91,112,114,111,109,105,115,101,49,44,32,112,114,111,109,105,115,101,50,93,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,41,123,92,110,32,32,32,32,47,47,32,114,101,115,117,108,116,32,61,61,61,32,39,112,114,111,109,105,115,101,32,50,39,32,98,101,99,97,117,115,101,32,105,116,32,119,97,115,32,114,101,115,111,108,118,101,100,32,98,101,102,111,114,101,32,112,114,111,109,105,115,101,49,92,110,32,32,32,32,47,47,32,119,97,115,32,114,101,115,111,108,118,101,100,46,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,92,110,32,32,96,80,114,111,109,105,115,101,46,114,97,99,101,96,32,105,115,32,100,101,116,101,114,109,105,110,105,115,116,105,99,32,105,110,32,116,104,97,116,32,111,110,108,121,32,116,104,101,32,115,116,97,116,101,32,111,102,32,116,104,101,32,102,105,114,115,116,92,110,32,32,115,101,116,116,108,101,100,32,112,114,111,109,105,115,101,32,109,97,116,116,101,114,115,46,32,70,111,114,32,101,120,97,109,112,108,101,44,32,101,118,101,110,32,105,102,32,111,116,104,101,114,32,112,114,111,109,105,115,101,115,32,103,105,118,101,110,32,116,111,32,116,104,101,92,110,32,32,96,112,114,111,109,105,115,101,115,96,32,97,114,114,97,121,32,97,114,103,117,109,101,110,116,32,97,114,101,32,114,101,115,111,108,118,101,100,44,32,98,117,116,32,116,104,101,32,102,105,114,115,116,32,115,101,116,116,108,101,100,32,112,114,111,109,105,115,101,32,104,97,115,92,110,32,32,98,101,99,111,109,101,32,114,101,106,101,99,116,101,100,32,98,101,102,111,114,101,32,116,104,101,32,111,116,104,101,114,32,112,114,111,109,105,115,101,115,32,98,101,99,97,109,101,32,102,117,108,102,105,108,108,101,100,44,32,116,104,101,32,114,101,116,117,114,110,101,100,92,110,32,32,112,114,111,109,105,115,101,32,119,105,108,108,32,98,101,99,111,109,101,32,114,101,106,101,99,116,101,100,58,92,110,92,110,32,32,96,96,96,106,97,118,97,115,99,114,105,112,116,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,49,32,61,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,123,92,110,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,92,110,32,32,32,32,32,32,114,101,115,111,108,118,101,40,39,112,114,111,109,105,115,101,32,49,39,41,59,92,110,32,32,32,32,125,44,32,50,48,48,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,50,32,61,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,123,92,110,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,92,110,32,32,32,32,32,32,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,39,112,114,111,109,105,115,101,32,50,39,41,41,59,92,110,32,32,32,32,125,44,32,49,48,48,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,80,114,111,109,105,115,101,46,114,97,99,101,40,91,112,114,111,109,105,115,101,49,44,32,112,114,111,109,105,115,101,50,93,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,41,123,92,110,32,32,32,32,47,47,32,67,111,100,101,32,104,101,114,101,32,110,101,118,101,114,32,114,117,110,115,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,114,101,97,115,111,110,41,123,92,110,32,32,32,32,47,47,32,114,101,97,115,111,110,46,109,101,115,115,97,103,101,32,61,61,61,32,39,112,114,111,109,105,115,101,32,50,39,32,98,101,99,97,117,115,101,32,112,114,111,109,105,115,101,32,50,32,98,101,99,97,109,101,32,114,101,106,101,99,116,101,100,32,98,101,102,111,114,101,92,110,32,32,32,32,47,47,32,112,114,111,109,105,115,101,32,49,32,98,101,99,97,109,101,32,102,117,108,102,105,108,108,101,100,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,92,110,32,32,65,110,32,101,120,97,109,112,108,101,32,114,101,97,108,45,119,111,114,108,100,32,117,115,101,32,99,97,115,101,32,105,115,32,105,109,112,108,101,109,101,110,116,105,110,103,32,116,105,109,101,111,117,116,115,58,92,110,92,110,32,32,96,96,96,106,97,118,97,115,99,114,105,112,116,92,110,32,32,80,114,111,109,105,115,101,46,114,97,99,101,40,91,97,106,97,120,40,39,102,111,111,46,106,115,111,110,39,41,44,32,116,105,109,101,111,117,116,40,53,48,48,48,41,93,41,92,110,32,32,96,96,96,92,110,92,110,32,32,64,109,101,116,104,111,100,32,114,97,99,101,92,110,32,32,64,115,116,97,116,105,99,92,110,32,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,112,114,111,109,105,115,101,115,32,97,114,114,97,121,32,111,102,32,112,114,111,109,105,115,101,115,32,116,111,32,111,98,115,101,114,118,101,92,110,32,32,85,115,101,102,117,108,32,102,111,114,32,116,111,111,108,105,110,103,46,92,110,32,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,97,32,112,114,111,109,105,115,101,32,119,104,105,99,104,32,115,101,116,116,108,101,115,32,105,110,32,116,104,101,32,115,97,109,101,32,119,97,121,32,97,115,32,116,104,101,32,102,105,114,115,116,32,112,97,115,115,101,100,92,110,32,32,112,114,111,109,105,115,101,32,116,111,32,115,101,116,116,108,101,46,92,110,42,47,92,110,102,117,110,99,116,105,111,110,32,114,97,99,101,40,101,110,116,114,105,101,115,41,32,123,92,110,32,32,47,42,106,115,104,105,110,116,32,118,97,108,105,100,116,104,105,115,58,116,114,117,101,32,42,47,92,110,32,32,118,97,114,32,67,111,110,115,116,114,117,99,116,111,114,32,61,32,116,104,105,115,59,92,110,92,110,32,32,105,102,32,40,33,105,115,65,114,114,97,121,36,36,49,40,101,110,116,114,105,101,115,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,67,111,110,115,116,114,117,99,116,111,114,40,102,117,110,99,116,105,111,110,32,40,95,36,36,49,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,106,101,99,116,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,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,39,41,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,67,111,110,115,116,114,117,99,116,111,114,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,101,110,116,114,105,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,67,111,110,115,116,114,117,99,116,111,114,46,114,101,115,111,108,118,101,40,101,110,116,114,105,101,115,91,105,93,41,46,116,104,101,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,32,96,80,114,111,109,105,115,101,46,114,101,106,101,99,116,96,32,114,101,116,117,114,110,115,32,97,32,112,114,111,109,105,115,101,32,114,101,106,101,99,116,101,100,32,119,105,116,104,32,116,104,101,32,112,97,115,115,101,100,32,96,114,101,97,115,111,110,96,46,92,110,32,32,73,116,32,105,115,32,115,104,111,114,116,104,97,110,100,32,102,111,114,32,116,104,101,32,102,111,108,108,111,119,105,110,103,58,92,110,92,110,32,32,96,96,96,106,97,118,97,115,99,114,105,112,116,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,32,61,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,123,92,110,32,32,32,32,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,39,87,72,79,79,80,83,39,41,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,112,114,111,109,105,115,101,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,123,92,110,32,32,32,32,47,47,32,67,111,100,101,32,104,101,114,101,32,100,111,101,115,110,39,116,32,114,117,110,32,98,101,99,97,117,115,101,32,116,104,101,32,112,114,111,109,105,115,101,32,105,115,32,114,101,106,101,99,116,101,100,33,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,114,101,97,115,111,110,41,123,92,110,32,32,32,32,47,47,32,114,101,97,115,111,110,46,109,101,115,115,97,103,101,32,61,61,61,32,39,87,72,79,79,80,83,39,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,92,110,32,32,73,110,115,116,101,97,100,32,111,102,32,119,114,105,116,105,110,103,32,116,104,101,32,97,98,111,118,101,44,32,121,111,117,114,32,99,111,100,101,32,110,111,119,32,115,105,109,112,108,121,32,98,101,99,111,109,101,115,32,116,104,101,32,102,111,108,108,111,119,105,110,103,58,92,110,92,110,32,32,96,96,96,106,97,118,97,115,99,114,105,112,116,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,32,61,32,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,39,87,72,79,79,80,83,39,41,41,59,92,110,92,110,32,32,112,114,111,109,105,115,101,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,123,92,110,32,32,32,32,47,47,32,67,111,100,101,32,104,101,114,101,32,100,111,101,115,110,39,116,32,114,117,110,32,98,101,99,97,117,115,101,32,116,104,101,32,112,114,111,109,105,115,101,32,105,115,32,114,101,106,101,99,116,101,100,33,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,114,101,97,115,111,110,41,123,92,110,32,32,32,32,47,47,32,114,101,97,115,111,110,46,109,101,115,115,97,103,101,32,61,61,61,32,39,87,72,79,79,80,83,39,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,92,110,32,32,64,109,101,116,104,111,100,32,114,101,106,101,99,116,92,110,32,32,64,115,116,97,116,105,99,92,110,32,32,64,112,97,114,97,109,32,123,65,110,121,125,32,114,101,97,115,111,110,32,118,97,108,117,101,32,116,104,97,116,32,116,104,101,32,114,101,116,117,114,110,101,100,32,112,114,111,109,105,115,101,32,119,105,108,108,32,98,101,32,114,101,106,101,99,116,101,100,32,119,105,116,104,46,92,110,32,32,85,115,101,102,117,108,32,102,111,114,32,116,111,111,108,105,110,103,46,92,110,32,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,97,32,112,114,111,109,105,115,101,32,114,101,106,101,99,116,101,100,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,96,114,101,97,115,111,110,96,46,92,110,42,47,92,110,102,117,110,99,116,105,111,110,32,114,101,106,101,99,116,36,49,40,114,101,97,115,111,110,41,32,123,92,110,32,32,47,42,106,115,104,105,110,116,32,118,97,108,105,100,116,104,105,115,58,116,114,117,101,32,42,47,92,110,32,32,118,97,114,32,67,111,110,115,116,114,117,99,116,111,114,32,61,32,116,104,105,115,59,92,110,32,32,118,97,114,32,112,114,111,109,105,115,101,32,61,32,110,101,119,32,67,111,110,115,116,114,117,99,116,111,114,40,110,111,111,112,36,36,49,41,59,92,110,32,32,114,101,106,101,99,116,40,112,114,111,109,105,115,101,44,32,114,101,97,115,111,110,41,59,92,110,32,32,114,101,116,117,114,110,32,112,114,111,109,105,115,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,101,101,100,115,82,101,115,111,108,118,101,114,40,41,32,123,92,110,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,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,39,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,101,101,100,115,78,101,119,40,41,32,123,92,110,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,32,80,114,111,109,105,115,101,32,111,98,106,101,99,116,115,32,114,101,112,114,101,115,101,110,116,32,116,104,101,32,101,118,101,110,116,117,97,108,32,114,101,115,117,108,116,32,111,102,32,97,110,32,97,115,121,110,99,104,114,111,110,111,117,115,32,111,112,101,114,97,116,105,111,110,46,32,84,104,101,92,110,32,32,112,114,105,109,97,114,121,32,119,97,121,32,111,102,32,105,110,116,101,114,97,99,116,105,110,103,32,119,105,116,104,32,97,32,112,114,111,109,105,115,101,32,105,115,32,116,104,114,111,117,103,104,32,105,116,115,32,96,116,104,101,110,96,32,109,101,116,104,111,100,44,32,119,104,105,99,104,92,110,32,32,114,101,103,105,115,116,101,114,115,32,99,97,108,108,98,97,99,107,115,32,116,111,32,114,101,99,101,105,118,101,32,101,105,116,104,101,114,32,97,32,112,114,111,109,105,115,101,39,115,32,101,118,101,110,116,117,97,108,32,118,97,108,117,101,32,111,114,32,116,104,101,32,114,101,97,115,111,110,92,110,32,32,119,104,121,32,116,104,101,32,112,114,111,109,105,115,101,32,99,97,110,110,111,116,32,98,101,32,102,117,108,102,105,108,108,101,100,46,92,110,92,110,32,32,84,101,114,109,105,110,111,108,111,103,121,92,110,32,32,45,45,45,45,45,45,45,45,45,45,45,92,110,92,110,32,32,45,32,96,112,114,111,109,105,115,101,96,32,105,115,32,97,110,32,111,98,106,101,99,116,32,111,114,32,102,117,110,99,116,105,111,110,32,119,105,116,104,32,97,32,96,116,104,101,110,96,32,109,101,116,104,111,100,32,119,104,111,115,101,32,98,101,104,97,118,105,111,114,32,99,111,110,102,111,114,109,115,32,116,111,32,116,104,105,115,32,115,112,101,99,105,102,105,99,97,116,105,111,110,46,92,110,32,32,45,32,96,116,104,101,110,97,98,108,101,96,32,105,115,32,97,110,32,111,98,106,101,99,116,32,111,114,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,100,101,102,105,110,101,115,32,97,32,96,116,104,101,110,96,32,109,101,116,104,111,100,46,92,110,32,32,45,32,96,118,97,108,117,101,96,32,105,115,32,97,110,121,32,108,101,103,97,108,32,74,97,118,97,83,99,114,105,112,116,32,118,97,108,117,101,32,40,105,110,99,108,117,100,105,110,103,32,117,110,100,101,102,105,110,101,100,44,32,97,32,116,104,101,110,97,98,108,101,44,32,111,114,32,97,32,112,114,111,109,105,115,101,41,46,92,110,32,32,45,32,96,101,120,99,101,112,116,105,111,110,96,32,105,115,32,97,32,118,97,108,117,101,32,116,104,97,116,32,105,115,32,116,104,114,111,119,110,32,117,115,105,110,103,32,116,104,101,32,116,104,114,111,119,32,115,116,97,116,101,109,101,110,116,46,92,110,32,32,45,32,96,114,101,97,115,111,110,96,32,105,115,32,97,32,118,97,108,117,101,32,116,104,97,116,32,105,110,100,105,99,97,116,101,115,32,119,104,121,32,97,32,112,114,111,109,105,115,101,32,119,97,115,32,114,101,106,101,99,116,101,100,46,92,110,32,32,45,32,96,115,101,116,116,108,101,100,96,32,116,104,101,32,102,105,110,97,108,32,114,101,115,116,105,110,103,32,115,116,97,116,101,32,111,102,32,97,32,112,114,111,109,105,115,101,44,32,102,117,108,102,105,108,108,101,100,32,111,114,32,114,101,106,101,99,116,101,100,46,92,110,92,110,32,32,65,32,112,114,111,109,105,115,101,32,99,97,110,32,98,101,32,105,110,32,111,110,101,32,111,102,32,116,104,114,101,101,32,115,116,97,116,101,115,58,32,112,101,110,100,105,110,103,44,32,102,117,108,102,105,108,108,101,100,44,32,111,114,32,114,101,106,101,99,116,101,100,46,92,110,92,110,32,32,80,114,111,109,105,115,101,115,32,116,104,97,116,32,97,114,101,32,102,117,108,102,105,108,108,101,100,32,104,97,118,101,32,97,32,102,117,108,102,105,108,108,109,101,110,116,32,118,97,108,117,101,32,97,110,100,32,97,114,101,32,105,110,32,116,104,101,32,102,117,108,102,105,108,108,101,100,92,110,32,32,115,116,97,116,101,46,32,32,80,114,111,109,105,115,101,115,32,116,104,97,116,32,97,114,101,32,114,101,106,101,99,116,101,100,32,104,97,118,101,32,97,32,114,101,106,101,99,116,105,111,110,32,114,101,97,115,111,110,32,97,110,100,32,97,114,101,32,105,110,32,116,104,101,92,110,32,32,114,101,106,101,99,116,101,100,32,115,116,97,116,101,46,32,32,65,32,102,117,108,102,105,108,108,109,101,110,116,32,118,97,108,117,101,32,105,115,32,110,101,118,101,114,32,97,32,116,104,101,110,97,98,108,101,46,92,110,92,110,32,32,80,114,111,109,105,115,101,115,32,99,97,110,32,97,108,115,111,32,98,101,32,115,97,105,100,32,116,111,32,42,114,101,115,111,108,118,101,42,32,97,32,118,97,108,117,101,46,32,32,73,102,32,116,104,105,115,32,118,97,108,117,101,32,105,115,32,97,108,115,111,32,97,92,110,32,32,112,114,111,109,105,115,101,44,32,116,104,101,110,32,116,104,101,32,111,114,105,103,105,110,97,108,32,112,114,111,109,105,115,101,39,115,32,115,101,116,116,108,101,100,32,115,116,97,116,101,32,119,105,108,108,32,109,97,116,99,104,32,116,104,101,32,118,97,108,117,101,39,115,92,110,32,32,115,101,116,116,108,101,100,32,115,116,97,116,101,46,32,32,83,111,32,97,32,112,114,111,109,105,115,101,32,116,104,97,116,32,42,114,101,115,111,108,118,101,115,42,32,97,32,112,114,111,109,105,115,101,32,116,104,97,116,32,114,101,106,101,99,116,115,32,119,105,108,108,92,110,32,32,105,116,115,101,108,102,32,114,101,106,101,99,116,44,32,97,110,100,32,97,32,112,114,111,109,105,115,101,32,116,104,97,116,32,42,114,101,115,111,108,118,101,115,42,32,97,32,112,114,111,109,105,115,101,32,116,104,97,116,32,102,117,108,102,105,108,108,115,32,119,105,108,108,92,110,32,32,105,116,115,101,108,102,32,102,117,108,102,105,108,108,46,92,110,92,110,92,110,32,32,66,97,115,105,99,32,85,115,97,103,101,58,92,110,32,32,45,45,45,45,45,45,45,45,45,45,45,45,92,110,92,110,32,32,96,96,96,106,115,92,110,32,32,108,101,116,32,112,114,111,109,105,115,101,32,61,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,47,47,32,111,110,32,115,117,99,99,101,115,115,92,110,32,32,32,32,114,101,115,111,108,118,101,40,118,97,108,117,101,41,59,92,110,92,110,32,32,32,32,47,47,32,111,110,32,102,97,105,108,117,114,101,92,110,32,32,32,32,114,101,106,101,99,116,40,114,101,97,115,111,110,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,112,114,111,109,105,115,101,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,47,47,32,111,110,32,102,117,108,102,105,108,108,109,101,110,116,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,47,47,32,111,110,32,114,101,106,101,99,116,105,111,110,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,92,110,32,32,65,100,118,97,110,99,101,100,32,85,115,97,103,101,58,92,110,32,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,92,110,92,110,32,32,80,114,111,109,105,115,101,115,32,115,104,105,110,101,32,119,104,101,110,32,97,98,115,116,114,97,99,116,105,110,103,32,97,119,97,121,32,97,115,121,110,99,104,114,111,110,111,117,115,32,105,110,116,101,114,97,99,116,105,111,110,115,32,115,117,99,104,32,97,115,92,110,32,32,96,88,77,76,72,116,116,112,82,101,113,117,101,115,116,96,115,46,92,110,92,110,32,32,96,96,96,106,115,92,110,32,32,102,117,110,99,116,105,111,110,32,103,101,116,74,83,79,78,40,117,114,108,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,123,92,110,32,32,32,32,32,32,108,101,116,32,120,104,114,32,61,32,110,101,119,32,88,77,76,72,116,116,112,82,101,113,117,101,115,116,40,41,59,92,110,92,110,32,32,32,32,32,32,120,104,114,46,111,112,101,110,40,39,71,69,84,39,44,32,117,114,108,41,59,92,110,32,32,32,32,32,32,120,104,114,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,32,61,32,104,97,110,100,108,101,114,59,92,110,32,32,32,32,32,32,120,104,114,46,114,101,115,112,111,110,115,101,84,121,112,101,32,61,32,39,106,115,111,110,39,59,92,110,32,32,32,32,32,32,120,104,114,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,39,65,99,99,101,112,116,39,44,32,39,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,39,41,59,92,110,32,32,32,32,32,32,120,104,114,46,115,101,110,100,40,41,59,92,110,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,114,101,97,100,121,83,116,97,116,101,32,61,61,61,32,116,104,105,115,46,68,79,78,69,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,115,116,97,116,117,115,32,61,61,61,32,50,48,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,118,101,40,116,104,105,115,46,114,101,115,112,111,110,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,39,103,101,116,74,83,79,78,58,32,96,39,32,43,32,117,114,108,32,43,32,39,96,32,102,97,105,108,101,100,32,119,105,116,104,32,115,116,97,116,117,115,58,32,91,39,32,43,32,116,104,105,115,46,115,116,97,116,117,115,32,43,32,39,93,39,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,103,101,116,74,83,79,78,40,39,47,112,111,115,116,115,46,106,115,111,110,39,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,106,115,111,110,41,32,123,92,110,32,32,32,32,47,47,32,111,110,32,102,117,108,102,105,108,108,109,101,110,116,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,47,47,32,111,110,32,114,101,106,101,99,116,105,111,110,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,92,110,32,32,85,110,108,105,107,101,32,99,97,108,108,98,97,99,107,115,44,32,112,114,111,109,105,115,101,115,32,97,114,101,32,103,114,101,97,116,32,99,111,109,112,111,115,97,98,108,101,32,112,114,105,109,105,116,105,118,101,115,46,92,110,92,110,32,32,96,96,96,106,115,92,110,32,32,80,114,111,109,105,115,101,46,97,108,108,40,91,92,110,32,32,32,32,103,101,116,74,83,79,78,40,39,47,112,111,115,116,115,39,41,44,92,110,32,32,32,32,103,101,116,74,83,79,78,40,39,47,99,111,109,109,101,110,116,115,39,41,92,110,32,32,93,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,115,41,123,92,110,32,32,32,32,118,97,108,117,101,115,91,48,93,32,47,47,32,61,62,32,112,111,115,116,115,74,83,79,78,92,110,32,32,32,32,118,97,108,117,101,115,91,49,93,32,47,47,32,61,62,32,99,111,109,109,101,110,116,115,74,83,79,78,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,115,59,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,92,110,32,32,64,99,108,97,115,115,32,80,114,111,109,105,115,101,92,110,32,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,114,101,115,111,108,118,101,114,92,110,32,32,85,115,101,102,117,108,32,102,111,114,32,116,111,111,108,105,110,103,46,92,110,32,32,64,99,111,110,115,116,114,117,99,116,111,114,92,110,42,47,92,110,92,110,118,97,114,32,80,114,111,109,105,115,101,36,49,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,80,114,111,109,105,115,101,40,114,101,115,111,108,118,101,114,41,32,123,92,110,32,32,32,32,116,104,105,115,91,80,82,79,77,73,83,69,95,73,68,93,32,61,32,110,101,120,116,73,100,40,41,59,92,110,32,32,32,32,116,104,105,115,46,95,114,101,115,117,108,116,32,61,32,116,104,105,115,46,95,115,116,97,116,101,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,116,104,105,115,46,95,115,117,98,115,99,114,105,98,101,114,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,105,102,32,40,110,111,111,112,36,36,49,32,33,61,61,32,114,101,115,111,108,118,101,114,41,32,123,92,110,32,32,32,32,32,32,116,121,112,101,111,102,32,114,101,115,111,108,118,101,114,32,33,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,110,101,101,100,115,82,101,115,111,108,118,101,114,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,80,114,111,109,105,115,101,32,63,32,105,110,105,116,105,97,108,105,122,101,80,114,111,109,105,115,101,40,116,104,105,115,44,32,114,101,115,111,108,118,101,114,41,32,58,32,110,101,101,100,115,78,101,119,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,84,104,101,32,112,114,105,109,97,114,121,32,119,97,121,32,111,102,32,105,110,116,101,114,97,99,116,105,110,103,32,119,105,116,104,32,97,32,112,114,111,109,105,115,101,32,105,115,32,116,104,114,111,117,103,104,32,105,116,115,32,96,116,104,101,110,96,32,109,101,116,104,111,100,44,92,110,32,32,119,104,105,99,104,32,114,101,103,105,115,116,101,114,115,32,99,97,108,108,98,97,99,107,115,32,116,111,32,114,101,99,101,105,118,101,32,101,105,116,104,101,114,32,97,32,112,114,111,109,105,115,101,39,115,32,101,118,101,110,116,117,97,108,32,118,97,108,117,101,32,111,114,32,116,104,101,92,110,32,32,114,101,97,115,111,110,32,119,104,121,32,116,104,101,32,112,114,111,109,105,115,101,32,99,97,110,110,111,116,32,98,101,32,102,117,108,102,105,108,108,101,100,46,92,110,32,32,32,96,96,96,106,115,92,110,32,32,102,105,110,100,85,115,101,114,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,117,115,101,114,41,123,92,110,32,32,32,32,47,47,32,117,115,101,114,32,105,115,32,97,118,97,105,108,97,98,108,101,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,114,101,97,115,111,110,41,123,92,110,32,32,32,32,47,47,32,117,115,101,114,32,105,115,32,117,110,97,118,97,105,108,97,98,108,101,44,32,97,110,100,32,121,111,117,32,97,114,101,32,103,105,118,101,110,32,116,104,101,32,114,101,97,115,111,110,32,119,104,121,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,32,32,32,67,104,97,105,110,105,110,103,92,110,32,32,45,45,45,45,45,45,45,45,92,110,32,32,32,84,104,101,32,114,101,116,117,114,110,32,118,97,108,117,101,32,111,102,32,96,116,104,101,110,96,32,105,115,32,105,116,115,101,108,102,32,97,32,112,114,111,109,105,115,101,46,32,32,84,104,105,115,32,115,101,99,111,110,100,44,32,39,100,111,119,110,115,116,114,101,97,109,39,92,110,32,32,112,114,111,109,105,115,101,32,105,115,32,114,101,115,111,108,118,101,100,32,119,105,116,104,32,116,104,101,32,114,101,116,117,114,110,32,118,97,108,117,101,32,111,102,32,116,104,101,32,102,105,114,115,116,32,112,114,111,109,105,115,101,39,115,32,102,117,108,102,105,108,108,109,101,110,116,92,110,32,32,111,114,32,114,101,106,101,99,116,105,111,110,32,104,97,110,100,108,101,114,44,32,111,114,32,114,101,106,101,99,116,101,100,32,105,102,32,116,104,101,32,104,97,110,100,108,101,114,32,116,104,114,111,119,115,32,97,110,32,101,120,99,101,112,116,105,111,110,46,92,110,32,32,32,96,96,96,106,115,92,110,32,32,102,105,110,100,85,115,101,114,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,117,115,101,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,117,115,101,114,46,110,97,109,101,59,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,39,100,101,102,97,117,108,116,32,110,97,109,101,39,59,92,110,32,32,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,117,115,101,114,78,97,109,101,41,32,123,92,110,32,32,32,32,47,47,32,73,102,32,96,102,105,110,100,85,115,101,114,96,32,102,117,108,102,105,108,108,101,100,44,32,96,117,115,101,114,78,97,109,101,96,32,119,105,108,108,32,98,101,32,116,104,101,32,117,115,101,114,39,115,32,110,97,109,101,44,32,111,116,104,101,114,119,105,115,101,32,105,116,92,110,32,32,32,32,47,47,32,119,105,108,108,32,98,101,32,96,39,100,101,102,97,117,108,116,32,110,97,109,101,39,96,92,110,32,32,125,41,59,92,110,32,32,32,102,105,110,100,85,115,101,114,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,117,115,101,114,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,70,111,117,110,100,32,117,115,101,114,44,32,98,117,116,32,115,116,105,108,108,32,117,110,104,97,112,112,121,39,41,59,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,96,102,105,110,100,85,115,101,114,96,32,114,101,106,101,99,116,101,100,32,97,110,100,32,119,101,39,114,101,32,117,110,104,97,112,112,121,39,41,59,92,110,32,32,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,47,47,32,110,101,118,101,114,32,114,101,97,99,104,101,100,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,47,47,32,105,102,32,96,102,105,110,100,85,115,101,114,96,32,102,117,108,102,105,108,108,101,100,44,32,96,114,101,97,115,111,110,96,32,119,105,108,108,32,98,101,32,39,70,111,117,110,100,32,117,115,101,114,44,32,98,117,116,32,115,116,105,108,108,32,117,110,104,97,112,112,121,39,46,92,110,32,32,32,32,47,47,32,73,102,32,96,102,105,110,100,85,115,101,114,96,32,114,101,106,101,99,116,101,100,44,32,96,114,101,97,115,111,110,96,32,119,105,108,108,32,98,101,32,39,96,102,105,110,100,85,115,101,114,96,32,114,101,106,101,99,116,101,100,32,97,110,100,32,119,101,39,114,101,32,117,110,104,97,112,112,121,39,46,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,32,32,73,102,32,116,104,101,32,100,111,119,110,115,116,114,101,97,109,32,112,114,111,109,105,115,101,32,100,111,101,115,32,110,111,116,32,115,112,101,99,105,102,121,32,97,32,114,101,106,101,99,116,105,111,110,32,104,97,110,100,108,101,114,44,32,114,101,106,101,99,116,105,111,110,32,114,101,97,115,111,110,115,32,119,105,108,108,32,98,101,32,112,114,111,112,97,103,97,116,101,100,32,102,117,114,116,104,101,114,32,100,111,119,110,115,116,114,101,97,109,46,92,110,32,32,32,96,96,96,106,115,92,110,32,32,102,105,110,100,85,115,101,114,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,117,115,101,114,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,80,101,100,97,103,111,103,105,99,97,108,69,120,99,101,112,116,105,111,110,40,39,85,112,115,116,114,101,97,109,32,101,114,114,111,114,39,41,59,92,110,32,32,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,47,47,32,110,101,118,101,114,32,114,101,97,99,104,101,100,92,110,32,32,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,47,47,32,110,101,118,101,114,32,114,101,97,99,104,101,100,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,47,47,32,84,104,101,32,96,80,101,100,103,97,103,111,99,105,97,108,69,120,99,101,112,116,105,111,110,96,32,105,115,32,112,114,111,112,97,103,97,116,101,100,32,97,108,108,32,116,104,101,32,119,97,121,32,100,111,119,110,32,116,111,32,104,101,114,101,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,32,32,32,65,115,115,105,109,105,108,97,116,105,111,110,92,110,32,32,45,45,45,45,45,45,45,45,45,45,45,45,92,110,32,32,32,83,111,109,101,116,105,109,101,115,32,116,104,101,32,118,97,108,117,101,32,121,111,117,32,119,97,110,116,32,116,111,32,112,114,111,112,97,103,97,116,101,32,116,111,32,97,32,100,111,119,110,115,116,114,101,97,109,32,112,114,111,109,105,115,101,32,99,97,110,32,111,110,108,121,32,98,101,92,110,32,32,114,101,116,114,105,101,118,101,100,32,97,115,121,110,99,104,114,111,110,111,117,115,108,121,46,32,84,104,105,115,32,99,97,110,32,98,101,32,97,99,104,105,101,118,101,100,32,98,121,32,114,101,116,117,114,110,105,110,103,32,97,32,112,114,111,109,105,115,101,32,105,110,32,116,104,101,92,110,32,32,102,117,108,102,105,108,108,109,101,110,116,32,111,114,32,114,101,106,101,99,116,105,111,110,32,104,97,110,100,108,101,114,46,32,84,104,101,32,100,111,119,110,115,116,114,101,97,109,32,112,114,111,109,105,115,101,32,119,105,108,108,32,116,104,101,110,32,98,101,32,112,101,110,100,105,110,103,92,110,32,32,117,110,116,105,108,32,116,104,101,32,114,101,116,117,114,110,101,100,32,112,114,111,109,105,115,101,32,105,115,32,115,101,116,116,108,101,100,46,32,84,104,105,115,32,105,115,32,99,97,108,108,101,100,32,42,97,115,115,105,109,105,108,97,116,105,111,110,42,46,92,110,32,32,32,96,96,96,106,115,92,110,32,32,102,105,110,100,85,115,101,114,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,117,115,101,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,105,110,100,67,111,109,109,101,110,116,115,66,121,65,117,116,104,111,114,40,117,115,101,114,41,59,92,110,32,32,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,99,111,109,109,101,110,116,115,41,32,123,92,110,32,32,32,32,47,47,32,84,104,101,32,117,115,101,114,39,115,32,99,111,109,109,101,110,116,115,32,97,114,101,32,110,111,119,32,97,118,97,105,108,97,98,108,101,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,32,32,32,73,102,32,116,104,101,32,97,115,115,105,109,108,105,97,116,101,100,32,112,114,111,109,105,115,101,32,114,101,106,101,99,116,115,44,32,116,104,101,110,32,116,104,101,32,100,111,119,110,115,116,114,101,97,109,32,112,114,111,109,105,115,101,32,119,105,108,108,32,97,108,115,111,32,114,101,106,101,99,116,46,92,110,32,32,32,96,96,96,106,115,92,110,32,32,102,105,110,100,85,115,101,114,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,117,115,101,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,105,110,100,67,111,109,109,101,110,116,115,66,121,65,117,116,104,111,114,40,117,115,101,114,41,59,92,110,32,32,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,99,111,109,109,101,110,116,115,41,32,123,92,110,32,32,32,32,47,47,32,73,102,32,96,102,105,110,100,67,111,109,109,101,110,116,115,66,121,65,117,116,104,111,114,96,32,102,117,108,102,105,108,108,115,44,32,119,101,39,108,108,32,104,97,118,101,32,116,104,101,32,118,97,108,117,101,32,104,101,114,101,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,47,47,32,73,102,32,96,102,105,110,100,67,111,109,109,101,110,116,115,66,121,65,117,116,104,111,114,96,32,114,101,106,101,99,116,115,44,32,119,101,39,108,108,32,104,97,118,101,32,116,104,101,32,114,101,97,115,111,110,32,104,101,114,101,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,32,32,32,83,105,109,112,108,101,32,69,120,97,109,112,108,101,92,110,32,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,92,110,32,32,32,83,121,110,99,104,114,111,110,111,117,115,32,69,120,97,109,112,108,101,92,110,32,32,32,96,96,96,106,97,118,97,115,99,114,105,112,116,92,110,32,32,108,101,116,32,114,101,115,117,108,116,59,92,110,32,32,32,116,114,121,32,123,92,110,32,32,32,32,114,101,115,117,108,116,32,61,32,102,105,110,100,82,101,115,117,108,116,40,41,59,92,110,32,32,32,32,47,47,32,115,117,99,99,101,115,115,92,110,32,32,125,32,99,97,116,99,104,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,47,47,32,102,97,105,108,117,114,101,92,110,32,32,125,92,110,32,32,96,96,96,92,110,32,32,32,69,114,114,98,97,99,107,32,69,120,97,109,112,108,101,92,110,32,32,32,96,96,96,106,115,92,110,32,32,102,105,110,100,82,101,115,117,108,116,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,101,114,114,41,123,92,110,32,32,32,32,105,102,32,40,101,114,114,41,32,123,92,110,32,32,32,32,32,32,47,47,32,102,97,105,108,117,114,101,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,115,117,99,99,101,115,115,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,32,32,32,80,114,111,109,105,115,101,32,69,120,97,109,112,108,101,59,92,110,32,32,32,96,96,96,106,97,118,97,115,99,114,105,112,116,92,110,32,32,102,105,110,100,82,101,115,117,108,116,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,41,123,92,110,32,32,32,32,47,47,32,115,117,99,99,101,115,115,92,110,32,32,125,44,32,102,117,110,99,116,105,111,110,40,114,101,97,115,111,110,41,123,92,110,32,32,32,32,47,47,32,102,97,105,108,117,114,101,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,32,32,32,65,100,118,97,110,99,101,100,32,69,120,97,109,112,108,101,92,110,32,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,92,110,32,32,32,83,121,110,99,104,114,111,110,111,117,115,32,69,120,97,109,112,108,101,92,110,32,32,32,96,96,96,106,97,118,97,115,99,114,105,112,116,92,110,32,32,108,101,116,32,97,117,116,104,111,114,44,32,98,111,111,107,115,59,92,110,32,32,32,116,114,121,32,123,92,110,32,32,32,32,97,117,116,104,111,114,32,61,32,102,105,110,100,65,117,116,104,111,114,40,41,59,92,110,32,32,32,32,98,111,111,107,115,32,32,61,32,102,105,110,100,66,111,111,107,115,66,121,65,117,116,104,111,114,40,97,117,116,104,111,114,41,59,92,110,32,32,32,32,47,47,32,115,117,99,99,101,115,115,92,110,32,32,125,32,99,97,116,99,104,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,47,47,32,102,97,105,108,117,114,101,92,110,32,32,125,92,110,32,32,96,96,96,92,110,32,32,32,69,114,114,98,97,99,107,32,69,120,97,109,112,108,101,92,110,32,32,32,96,96,96,106,115,92,110,32,32,32,102,117,110,99,116,105,111,110,32,102,111,117,110,100,66,111,111,107,115,40,98,111,111,107,115,41,32,123,92,110,32,32,32,125,92,110,32,32,32,102,117,110,99,116,105,111,110,32,102,97,105,108,117,114,101,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,125,92,110,32,32,32,102,105,110,100,65,117,116,104,111,114,40,102,117,110,99,116,105,111,110,40,97,117,116,104,111,114,44,32,101,114,114,41,123,92,110,32,32,32,32,105,102,32,40,101,114,114,41,32,123,92,110,32,32,32,32,32,32,102,97,105,108,117,114,101,40,101,114,114,41,59,92,110,32,32,32,32,32,32,47,47,32,102,97,105,108,117,114,101,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,102,105,110,100,66,111,111,111,107,115,66,121,65,117,116,104,111,114,40,97,117,116,104,111,114,44,32,102,117,110,99,116,105,111,110,40,98,111,111,107,115,44,32,101,114,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,114,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,97,105,108,117,114,101,40,101,114,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,117,110,100,66,111,111,107,115,40,98,111,111,107,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,97,105,108,117,114,101,40,114,101,97,115,111,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,40,101,114,114,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,102,97,105,108,117,114,101,40,101,114,114,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,115,117,99,99,101,115,115,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,32,32,32,80,114,111,109,105,115,101,32,69,120,97,109,112,108,101,59,92,110,32,32,32,96,96,96,106,97,118,97,115,99,114,105,112,116,92,110,32,32,102,105,110,100,65,117,116,104,111,114,40,41,46,92,110,32,32,32,32,116,104,101,110,40,102,105,110,100,66,111,111,107,115,66,121,65,117,116,104,111,114,41,46,92,110,32,32,32,32,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,111,111,107,115,41,123,92,110,32,32,32,32,32,32,47,47,32,102,111,117,110,100,32,98,111,111,107,115,92,110,32,32,125,41,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,40,114,101,97,115,111,110,41,123,92,110,32,32,32,32,47,47,32,115,111,109,101,116,104,105,110,103,32,119,101,110,116,32,119,114,111,110,103,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,32,32,32,64,109,101,116,104,111,100,32,116,104,101,110,92,110,32,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,111,110,70,117,108,102,105,108,108,101,100,92,110,32,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,111,110,82,101,106,101,99,116,101,100,92,110,32,32,85,115,101,102,117,108,32,102,111,114,32,116,111,111,108,105,110,103,46,92,110,32,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,92,110,32,32,42,47,92,110,92,110,32,32,47,42,42,92,110,32,32,96,99,97,116,99,104,96,32,105,115,32,115,105,109,112,108,121,32,115,117,103,97,114,32,102,111,114,32,96,116,104,101,110,40,117,110,100,101,102,105,110,101,100,44,32,111,110,82,101,106,101,99,116,105,111,110,41,96,32,119,104,105,99,104,32,109,97,107,101,115,32,105,116,32,116,104,101,32,115,97,109,101,92,110,32,32,97,115,32,116,104,101,32,99,97,116,99,104,32,98,108,111,99,107,32,111,102,32,97,32,116,114,121,47,99,97,116,99,104,32,115,116,97,116,101,109,101,110,116,46,92,110,32,32,96,96,96,106,115,92,110,32,32,102,117,110,99,116,105,111,110,32,102,105,110,100,65,117,116,104,111,114,40,41,123,92,110,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,99,111,117,108,100,110,39,116,32,102,105,110,100,32,116,104,97,116,32,97,117,116,104,111,114,39,41,59,92,110,32,32,125,92,110,32,32,47,47,32,115,121,110,99,104,114,111,110,111,117,115,92,110,32,32,116,114,121,32,123,92,110,32,32,102,105,110,100,65,117,116,104,111,114,40,41,59,92,110,32,32,125,32,99,97,116,99,104,40,114,101,97,115,111,110,41,32,123,92,110,32,32,47,47,32,115,111,109,101,116,104,105,110,103,32,119,101,110,116,32,119,114,111,110,103,92,110,32,32,125,92,110,32,32,47,47,32,97,115,121,110,99,32,119,105,116,104,32,112,114,111,109,105,115,101,115,92,110,32,32,102,105,110,100,65,117,116,104,111,114,40,41,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,40,114,101,97,115,111,110,41,123,92,110,32,32,47,47,32,115,111,109,101,116,104,105,110,103,32,119,101,110,116,32,119,114,111,110,103,92,110,32,32,125,41,59,92,110,32,32,96,96,96,92,110,32,32,64,109,101,116,104,111,100,32,99,97,116,99,104,92,110,32,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,111,110,82,101,106,101,99,116,105,111,110,92,110,32,32,85,115,101,102,117,108,32,102,111,114,32,116,111,111,108,105,110,103,46,92,110,32,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,92,110,32,32,42,47,92,110,92,110,92,110,32,32,80,114,111,109,105,115,101,46,112,114,111,116,111,116,121,112,101,46,99,97,116,99,104,32,61,32,102,117,110,99,116,105,111,110,32,95,99,97,116,99,104,40,111,110,82,101,106,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,104,101,110,40,110,117,108,108,44,32,111,110,82,101,106,101,99,116,105,111,110,41,59,92,110,32,32,125,59,92,110,92,110,32,32,47,42,42,92,110,32,32,32,32,96,102,105,110,97,108,108,121,96,32,119,105,108,108,32,98,101,32,105,110,118,111,107,101,100,32,114,101,103,97,114,100,108,101,115,115,32,111,102,32,116,104,101,32,112,114,111,109,105,115,101,39,115,32,102,97,116,101,32,106,117,115,116,32,97,115,32,110,97,116,105,118,101,92,110,32,32,32,32,116,114,121,47,99,97,116,99,104,47,102,105,110,97,108,108,121,32,98,101,104,97,118,101,115,92,110,32,32,92,110,32,32,32,32,83,121,110,99,104,114,111,110,111,117,115,32,101,120,97,109,112,108,101,58,92,110,32,32,92,110,32,32,32,32,96,96,96,106,115,92,110,32,32,32,32,102,105,110,100,65,117,116,104,111,114,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,77,97,116,104,46,114,97,110,100,111,109,40,41,32,62,32,48,46,53,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,65,117,116,104,111,114,40,41,59,92,110,32,32,32,32,125,92,110,32,32,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,110,100,65,117,116,104,111,114,40,41,59,32,47,47,32,115,117,99,99,101,101,100,32,111,114,32,102,97,105,108,92,110,32,32,32,32,125,32,99,97,116,99,104,40,101,114,114,111,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,110,100,79,116,104,101,114,65,117,116,104,101,114,40,41,59,92,110,32,32,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,32,32,47,47,32,97,108,119,97,121,115,32,114,117,110,115,92,110,32,32,32,32,32,32,47,47,32,100,111,101,115,110,39,116,32,97,102,102,101,99,116,32,116,104,101,32,114,101,116,117,114,110,32,118,97,108,117,101,92,110,32,32,32,32,125,92,110,32,32,32,32,96,96,96,92,110,32,32,92,110,32,32,32,32,65,115,121,110,99,104,114,111,110,111,117,115,32,101,120,97,109,112,108,101,58,92,110,32,32,92,110,32,32,32,32,96,96,96,106,115,92,110,32,32,32,32,102,105,110,100,65,117,116,104,111,114,40,41,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,40,114,101,97,115,111,110,41,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,110,100,79,116,104,101,114,65,117,116,104,101,114,40,41,59,92,110,32,32,32,32,125,41,46,102,105,110,97,108,108,121,40,102,117,110,99,116,105,111,110,40,41,123,92,110,32,32,32,32,32,32,47,47,32,97,117,116,104,111,114,32,119,97,115,32,101,105,116,104,101,114,32,102,111,117,110,100,44,32,111,114,32,110,111,116,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,96,96,96,92,110,32,32,92,110,32,32,32,32,64,109,101,116,104,111,100,32,102,105,110,97,108,108,121,92,110,32,32,32,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,99,97,108,108,98,97,99,107,92,110,32,32,32,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,92,110,32,32,42,47,92,110,92,110,92,110,32,32,80,114,111,109,105,115,101,46,112,114,111,116,111,116,121,112,101,46,102,105,110,97,108,108,121,32,61,32,102,117,110,99,116,105,111,110,32,95,102,105,110,97,108,108,121,40,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,109,105,115,101,32,61,32,116,104,105,115,59,92,110,32,32,32,32,118,97,114,32,99,111,110,115,116,114,117,99,116,111,114,32,61,32,112,114,111,109,105,115,101,46,99,111,110,115,116,114,117,99,116,111,114,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,109,105,115,101,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,110,115,116,114,117,99,116,111,114,46,114,101,115,111,108,118,101,40,99,97,108,108,98,97,99,107,40,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,110,115,116,114,117,99,116,111,114,46,114,101,115,111,108,118,101,40,99,97,108,108,98,97,99,107,40,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,114,101,97,115,111,110,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,59,92,110,125,40,41,59,92,110,92,110,80,114,111,109,105,115,101,36,49,46,112,114,111,116,111,116,121,112,101,46,116,104,101,110,32,61,32,116,104,101,110,59,92,110,80,114,111,109,105,115,101,36,49,46,97,108,108,32,61,32,97,108,108,59,92,110,80,114,111,109,105,115,101,36,49,46,114,97,99,101,32,61,32,114,97,99,101,59,92,110,80,114,111,109,105,115,101,36,49,46,114,101,115,111,108,118,101,32,61,32,114,101,115,111,108,118,101,36,49,59,92,110,80,114,111,109,105,115,101,36,49,46,114,101,106,101,99,116,32,61,32,114,101,106,101,99,116,36,49,59,92,110,80,114,111,109,105,115,101,36,49,46,95,115,101,116,83,99,104,101,100,117,108,101,114,32,61,32,115,101,116,83,99,104,101,100,117,108,101,114,59,92,110,80,114,111,109,105,115,101,36,49,46,95,115,101,116,65,115,97,112,32,61,32,115,101,116,65,115,97,112,59,92,110,80,114,111,109,105,115,101,36,49,46,95,97,115,97,112,32,61,32,97,115,97,112,59,92,110,92,110,47,42,103,108,111,98,97,108,32,115,101,108,102,42,47,92,110,102,117,110,99,116,105,111,110,32,112,111,108,121,102,105,108,108,40,41,32,123,92,110,32,32,32,32,118,97,114,32,108,111,99,97,108,32,61,32,118,111,105,100,32,48,59,92,110,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,99,111,109,109,111,110,106,115,71,108,111,98,97,108,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,108,111,99,97,108,32,61,32,99,111,109,109,111,110,106,115,71,108,111,98,97,108,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,111,102,32,115,101,108,102,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,108,111,99,97,108,32,61,32,115,101,108,102,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,32,61,32,70,117,110,99,116,105,111,110,40,39,114,101,116,117,114,110,32,116,104,105,115,39,41,40,41,59,92,110,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,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,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,80,32,61,32,108,111,99,97,108,46,80,114,111,109,105,115,101,59,92,110,92,110,32,32,32,32,105,102,32,40,80,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,109,105,115,101,84,111,83,116,114,105,110,103,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,84,111,83,116,114,105,110,103,32,61,32,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,80,46,114,101,115,111,108,118,101,40,41,41,59,92,110,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,115,105,108,101,110,116,108,121,32,105,103,110,111,114,101,100,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,109,105,115,101,84,111,83,116,114,105,110,103,32,61,61,61,32,39,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,39,32,38,38,32,33,80,46,99,97,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,108,111,99,97,108,46,80,114,111,109,105,115,101,32,61,32,80,114,111,109,105,115,101,36,49,59,92,110,125,92,110,92,110,47,47,32,83,116,114,97,110,103,101,32,99,111,109,112,97,116,46,46,92,110,80,114,111,109,105,115,101,36,49,46,112,111,108,121,102,105,108,108,32,61,32,112,111,108,121,102,105,108,108,59,92,110,80,114,111,109,105,115,101,36,49,46,80,114,111,109,105,115,101,32,61,32,80,114,111,109,105,115,101,36,49,59,92,110,92,110,114,101,116,117,114,110,32,80,114,111,109,105,115,101,36,49,59,92,110,92,110,125,41,41,41,59,92,110,92,110,92,110,92,110,92,110,125,41,59,92,110,92,110,118,97,114,32,101,115,54,80,114,111,109,105,115,101,95,49,32,61,32,101,115,54,80,114,111,109,105,115,101,46,80,114,111,109,105,115,101,59,92,110,92,110,118,97,114,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,115,116,97,110,99,101,44,32,67,111,110,115,116,114,117,99,116,111,114,41,32,123,92,110,32,32,105,102,32,40,33,40,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,67,111,110,115,116,114,117,99,116,111,114,41,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,99,114,101,97,116,101,67,108,97,115,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,32,112,114,111,112,115,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,112,114,111,112,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,101,115,99,114,105,112,116,111,114,32,61,32,112,114,111,112,115,91,105,93,59,92,110,32,32,32,32,32,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,61,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,124,124,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,100,101,115,99,114,105,112,116,111,114,46,99,111,110,102,105,103,117,114,97,98,108,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,105,102,32,40,92,34,118,97,108,117,101,92,34,32,105,110,32,100,101,115,99,114,105,112,116,111,114,41,32,100,101,115,99,114,105,112,116,111,114,46,119,114,105,116,97,98,108,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,100,101,115,99,114,105,112,116,111,114,46,107,101,121,44,32,100,101,115,99,114,105,112,116,111,114,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,67,111,110,115,116,114,117,99,116,111,114,44,32,112,114,111,116,111,80,114,111,112,115,44,32,115,116,97,116,105,99,80,114,111,112,115,41,32,123,92,110,32,32,32,32,105,102,32,40,112,114,111,116,111,80,114,111,112,115,41,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,44,32,112,114,111,116,111,80,114,111,112,115,41,59,92,110,32,32,32,32,105,102,32,40,115,116,97,116,105,99,80,114,111,112,115,41,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,115,116,97,116,105,99,80,114,111,112,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,67,111,110,115,116,114,117,99,116,111,114,59,92,110,32,32,125,59,92,110,125,40,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,105,110,104,101,114,105,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,115,117,98,67,108,97,115,115,44,32,115,117,112,101,114,67,108,97,115,115,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,115,117,112,101,114,67,108,97,115,115,32,33,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,115,117,112,101,114,67,108,97,115,115,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,32,43,32,116,121,112,101,111,102,32,115,117,112,101,114,67,108,97,115,115,41,59,92,110,32,32,125,92,110,92,110,32,32,115,117,98,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,115,117,112,101,114,67,108,97,115,115,32,38,38,32,115,117,112,101,114,67,108,97,115,115,46,112,114,111,116,111,116,121,112,101,44,32,123,92,110,32,32,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,115,117,98,67,108,97,115,115,44,92,110,32,32,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,105,102,32,40,115,117,112,101,114,67,108,97,115,115,41,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,32,63,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,115,117,98,67,108,97,115,115,44,32,115,117,112,101,114,67,108,97,115,115,41,32,58,32,115,117,98,67,108,97,115,115,46,95,95,112,114,111,116,111,95,95,32,61,32,115,117,112,101,114,67,108,97,115,115,59,92,110,125,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,32,61,32,102,117,110,99,116,105,111,110,32,40,115,101,108,102,44,32,99,97,108,108,41,32,123,92,110,32,32,105,102,32,40,33,115,101,108,102,41,32,123,92,110,32,32,32,32,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,92,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,92,34,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,99,97,108,108,32,38,38,32,40,116,121,112,101,111,102,32,99,97,108,108,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,32,124,124,32,116,121,112,101,111,102,32,99,97,108,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,63,32,99,97,108,108,32,58,32,115,101,108,102,59,92,110,125,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,116,111,65,114,114,97,121,32,61,32,102,117,110,99,116,105,111,110,32,40,97,114,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,41,32,63,32,97,114,114,32,58,32,65,114,114,97,121,46,102,114,111,109,40,97,114,114,41,59,92,110,125,59,92,110,92,110,47,47,32,76,105,98,115,92,110,92,110,102,117,110,99,116,105,111,110,32,95,101,120,116,101,110,100,97,98,108,101,66,117,105,108,116,105,110,40,99,108,115,41,32,123,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,69,120,116,101,110,100,97,98,108,101,66,117,105,108,116,105,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,99,108,115,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,69,120,116,101,110,100,97,98,108,101,66,117,105,108,116,105,110,46,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,99,108,115,46,112,114,111,116,111,116,121,112,101,44,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,99,108,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,41,32,123,92,110,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,69,120,116,101,110,100,97,98,108,101,66,117,105,108,116,105,110,44,32,99,108,115,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,69,120,116,101,110,100,97,98,108,101,66,117,105,108,116,105,110,46,95,95,112,114,111,116,111,95,95,32,61,32,99,108,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,69,120,116,101,110,100,97,98,108,101,66,117,105,108,116,105,110,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,66,97,115,101,32,102,117,110,99,116,105,111,110,32,116,111,32,102,105,108,116,101,114,32,110,111,100,101,115,32,98,121,32,115,116,97,116,101,32,118,97,108,117,101,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,97,116,101,32,83,116,97,116,101,32,112,114,111,112,101,114,116,121,92,110,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,117,114,110,32,97,32,110,111,110,45,102,108,97,116,32,104,105,101,114,97,114,99,104,121,92,110,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,109,97,116,99,104,105,110,103,32,110,111,100,101,115,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,40,115,116,97,116,101,44,32,102,117,108,108,41,32,123,92,110,32,32,32,32,105,102,32,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,120,116,114,97,99,116,40,115,116,97,116,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,67,97,99,104,101,32,97,32,115,116,97,116,101,32,112,114,101,100,105,99,97,116,101,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,118,97,114,32,102,110,32,61,32,103,101,116,80,114,101,100,105,99,97,116,101,70,117,110,99,116,105,111,110,40,115,116,97,116,101,41,59,92,110,92,110,32,32,32,32,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,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,78,101,118,101,114,32,105,110,99,108,117,100,101,32,114,101,109,111,118,101,100,32,110,111,100,101,115,32,117,110,108,101,115,115,32,115,112,101,99,105,102,105,99,97,108,108,121,32,114,101,113,117,101,115,116,101,100,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,116,97,116,101,32,33,61,61,32,39,114,101,109,111,118,101,100,39,32,38,38,32,110,111,100,101,46,114,101,109,111,118,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,40,110,111,100,101,41,59,92,110,32,32,32,32,125,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,66,97,115,101,32,102,117,110,99,116,105,111,110,32,116,111,32,105,110,118,111,107,101,32,103,105,118,101,110,32,109,101,116,104,111,100,40,115,41,32,111,110,32,116,114,101,101,32,110,111,100,101,115,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,110,111,100,101,115,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,97,114,114,97,121,125,32,109,101,116,104,111,100,115,32,77,101,116,104,111,100,32,110,97,109,101,115,46,92,110,32,42,32,64,112,97,114,97,109,32,123,97,114,114,97,121,124,65,114,103,117,109,101,110,116,115,125,32,97,114,103,115,32,65,114,114,97,121,32,111,102,32,97,114,103,117,109,101,110,116,115,32,116,111,32,112,114,111,120,121,46,92,110,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,100,101,101,112,32,73,110,118,111,107,101,32,100,101,101,112,108,121,46,92,110,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,98,97,115,101,73,110,118,111,107,101,40,110,111,100,101,115,44,32,109,101,116,104,111,100,115,44,32,97,114,103,115,44,32,100,101,101,112,41,32,123,92,110,32,32,32,32,109,101,116,104,111,100,115,32,61,32,95,46,99,97,115,116,65,114,114,97,121,40,109,101,116,104,111,100,115,41,59,92,110,92,110,32,32,32,32,110,111,100,101,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,92,110,92,110,32,32,32,32,110,111,100,101,115,91,100,101,101,112,32,63,32,39,114,101,99,117,114,115,101,68,111,119,110,39,32,58,32,39,101,97,99,104,39,93,40,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,109,101,116,104,111,100,115,44,32,102,117,110,99,116,105,111,110,32,40,109,101,116,104,111,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,70,117,110,99,116,105,111,110,40,110,111,100,101,91,109,101,116,104,111,100,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,91,109,101,116,104,111,100,93,46,97,112,112,108,121,40,110,111,100,101,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,110,111,100,101,115,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,115,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,67,114,101,97,116,101,115,32,97,32,112,114,101,100,105,99,97,116,101,32,102,117,110,99,116,105,111,110,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,80,114,111,112,101,114,116,121,32,110,97,109,101,32,111,114,32,99,117,115,116,111,109,32,102,117,110,99,116,105,111,110,46,92,110,32,42,32,64,114,101,116,117,114,110,32,123,102,117,110,99,116,105,111,110,125,32,80,114,101,100,105,99,97,116,101,32,102,117,110,99,116,105,111,110,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,80,114,101,100,105,99,97,116,101,70,117,110,99,116,105,111,110,40,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,118,97,114,32,102,110,32,61,32,112,114,101,100,105,99,97,116,101,59,92,110,32,32,32,32,105,102,32,40,95,46,105,115,83,116,114,105,110,103,40,112,114,101,100,105,99,97,116,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,102,110,32,61,32,102,117,110,99,116,105,111,110,32,102,110,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,46,105,115,70,117,110,99,116,105,111,110,40,110,111,100,101,91,112,114,101,100,105,99,97,116,101,93,41,32,63,32,110,111,100,101,91,112,114,101,100,105,99,97,116,101,93,40,41,32,58,32,110,111,100,101,91,112,114,101,100,105,99,97,116,101,93,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,102,110,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,65,110,32,65,114,114,97,121,45,108,105,107,101,32,99,111,108,108,101,99,116,105,111,110,32,111,102,32,84,114,101,101,78,111,100,101,115,46,92,110,32,42,92,110,32,42,32,78,111,116,101,58,32,68,117,101,32,116,111,32,105,115,115,117,101,32,105,110,32,109,97,110,121,32,106,97,118,97,115,99,114,105,112,116,32,101,110,118,105,114,111,110,109,101,110,116,115,44,92,110,32,42,32,110,97,116,105,118,101,32,111,98,106,101,99,116,115,32,97,114,101,32,112,114,111,98,108,101,109,97,116,105,99,32,116,111,32,101,120,116,101,110,100,32,99,111,114,114,101,99,116,108,121,92,110,32,42,32,115,111,32,119,101,32,109,105,109,105,99,32,105,116,44,32,110,111,116,32,97,99,116,117,97,108,108,121,32,101,120,116,101,110,100,32,105,116,46,92,110,32,42,92,110,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,42,32,64,112,97,114,97,109,32,123,97,114,114,97,121,125,32,97,114,114,97,121,32,65,114,114,97,121,32,111,102,32,84,114,101,101,78,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,67,111,108,108,101,99,116,105,111,110,32,111,102,32,84,114,101,101,78,111,100,101,92,110,32,42,47,92,110,118,97,114,32,84,114,101,101,78,111,100,101,115,32,61,32,102,117,110,99,116,105,111,110,32,40,95,101,120,116,101,110,100,97,98,108,101,66,117,105,108,116,105,110,50,41,32,123,92,110,32,32,32,32,105,110,104,101,114,105,116,115,40,84,114,101,101,78,111,100,101,115,44,32,95,101,120,116,101,110,100,97,98,108,101,66,117,105,108,116,105,110,50,41,59,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,84,114,101,101,78,111,100,101,115,40,116,114,101,101,44,32,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,84,114,101,101,78,111,100,101,115,41,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,40,116,104,105,115,44,32,40,84,114,101,101,78,111,100,101,115,46,95,95,112,114,111,116,111,95,95,32,124,124,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,84,114,101,101,78,111,100,101,115,41,41,46,99,97,108,108,40,116,104,105,115,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,70,117,110,99,116,105,111,110,40,95,46,103,101,116,40,116,114,101,101,44,32,39,105,115,84,114,101,101,39,41,41,32,38,38,32,33,116,114,101,101,46,105,115,84,114,101,101,40,116,114,101,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,73,110,118,97,108,105,100,32,116,114,101,101,32,105,110,115,116,97,110,99,101,46,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,116,114,101,101,32,61,32,116,114,101,101,59,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,108,101,110,103,116,104,32,61,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,105,116,32,112,97,103,105,110,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,105,109,105,116,58,32,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,111,116,97,108,58,32,48,92,110,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,65,114,114,97,121,40,97,114,114,97,121,41,32,124,124,32,97,114,114,97,121,32,105,110,115,116,97,110,99,101,111,102,32,84,114,101,101,78,111,100,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,97,114,114,97,121,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,32,105,110,115,116,97,110,99,101,111,102,32,84,114,101,101,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,112,117,115,104,40,110,111,100,101,46,99,108,111,110,101,40,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,97,100,100,78,111,100,101,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,100,100,115,32,97,32,110,101,119,32,110,111,100,101,46,32,73,102,32,97,32,115,111,114,116,92,110,32,32,32,32,32,42,32,109,101,116,104,111,100,32,105,115,32,99,111,110,102,105,103,117,114,101,100,44,32,116,104,101,32,110,111,100,101,32,119,105,108,108,32,98,101,32,97,100,100,101,100,92,110,32,32,32,32,32,42,32,105,110,32,116,104,101,32,97,112,112,114,111,112,114,105,97,116,101,32,111,114,100,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,111,98,106,101,99,116,32,78,111,100,101,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,47,92,110,92,110,92,110,32,32,32,32,99,114,101,97,116,101,67,108,97,115,115,40,84,114,101,101,78,111,100,101,115,44,32,91,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,97,100,100,78,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,97,100,100,78,111,100,101,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,66,97,115,101,32,105,110,115,101,114,116,105,111,110,32,105,110,100,101,120,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,116,104,105,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,114,101,101,32,105,115,32,115,111,114,116,101,100,44,32,105,110,115,101,114,116,32,105,110,32,99,111,114,114,101,99,116,32,112,111,115,105,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,95,46,115,111,114,116,101,100,73,110,100,101,120,66,121,40,116,104,105,115,44,32,111,98,106,101,99,116,44,32,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,115,101,114,116,65,116,40,105,110,100,101,120,44,32,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,97,118,97,105,108,97,98,108,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,97,118,97,105,108,97,98,108,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,97,118,97,105,108,97,98,108,101,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,39,97,118,97,105,108,97,98,108,101,39,44,32,102,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,66,108,117,114,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,98,108,117,114,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,39,98,108,117,114,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,66,108,117,114,32,40,100,101,101,112,108,121,41,32,97,108,108,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,98,108,117,114,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,39,98,108,117,114,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,99,104,101,99,107,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,104,101,99,107,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,104,101,99,107,101,100,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,39,99,104,101,99,107,101,100,39,44,32,102,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,108,101,97,110,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,108,101,97,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,39,99,108,101,97,110,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,108,111,110,101,115,32,40,100,101,101,112,108,121,41,32,116,104,101,32,97,114,114,97,121,32,111,102,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,78,111,116,101,58,32,67,108,111,110,105,110,103,32,119,105,108,108,32,42,110,111,116,42,32,99,108,111,110,101,32,116,104,101,32,99,111,110,116,101,120,116,32,112,111,105,110,116,101,114,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,99,108,111,110,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,108,111,110,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,104,105,115,46,95,116,114,101,101,44,32,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,111,108,108,97,112,115,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,108,108,97,112,115,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,108,108,97,112,115,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,39,99,111,108,108,97,112,115,101,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,99,111,108,108,97,112,115,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,108,108,97,112,115,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,108,108,97,112,115,101,100,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,39,99,111,108,108,97,112,115,101,100,39,44,32,102,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,111,108,108,97,112,115,101,32,40,100,101,101,112,108,121,41,32,97,108,108,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,108,108,97,112,115,101,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,108,108,97,112,115,101,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,39,99,111,108,108,97,112,115,101,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,111,110,99,97,116,32,109,117,108,116,105,112,108,101,32,84,114,101,101,78,111,100,101,115,32,97,114,114,97,121,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,115,125,32,110,111,100,101,115,32,65,114,114,97,121,32,111,102,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,82,101,115,117,108,116,105,110,103,32,110,111,100,101,32,97,114,114,97,121,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,110,99,97,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,110,99,97,116,40,110,111,100,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,78,111,100,101,115,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,104,105,115,46,95,116,114,101,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,78,111,100,101,115,46,95,99,111,110,116,101,120,116,32,61,32,116,104,105,115,46,95,99,111,110,116,101,120,116,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,117,115,104,101,114,32,61,32,102,117,110,99,116,105,111,110,32,112,117,115,104,101,114,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,32,105,110,115,116,97,110,99,101,111,102,32,84,114,101,101,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,78,111,100,101,115,46,112,117,115,104,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,116,104,105,115,44,32,112,117,115,104,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,110,111,100,101,115,44,32,112,117,115,104,101,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,112,121,32,112,97,103,105,110,97,116,105,111,110,32,108,105,109,105,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,78,111,100,101,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,32,61,32,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,78,111,100,101,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,116,104,101,32,99,111,110,116,101,120,116,32,111,102,32,116,104,105,115,32,99,111,108,108,101,99,116,105,111,110,46,32,73,102,32,97,32,99,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,42,32,111,102,32,99,104,105,108,100,114,101,110,44,32,99,111,110,116,101,120,116,32,105,115,32,116,104,101,32,112,97,114,101,110,116,32,110,111,100,101,46,32,79,116,104,101,114,119,105,115,101,92,110,32,32,32,32,32,32,32,32,32,42,32,116,104,101,32,99,111,110,116,101,120,116,32,105,115,32,116,104,101,32,116,114,101,101,32,105,116,115,101,108,102,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,124,111,98,106,101,99,116,125,32,78,111,100,101,32,111,98,106,101,99,116,32,111,114,32,116,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,110,116,101,120,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,110,116,101,120,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,124,124,32,116,104,105,115,46,95,116,114,101,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,111,112,121,32,110,111,100,101,115,32,116,111,32,97,110,111,116,104,101,114,32,116,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,104,105,101,114,97,114,99,104,121,32,73,110,99,108,117,100,101,32,110,101,99,101,115,115,97,114,121,32,97,110,99,101,115,116,111,114,115,32,116,111,32,109,97,116,99,104,32,104,105,101,114,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,111,98,106,101,99,116,125,32,77,101,116,104,111,100,115,32,116,111,32,112,101,114,102,111,114,109,32,97,99,116,105,111,110,32,111,110,32,99,111,112,105,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,112,121,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,112,121,40,104,105,101,114,97,114,99,104,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,83,101,116,115,32,97,32,100,101,115,116,105,110,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,112,121,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,100,101,115,116,32,68,101,115,116,105,110,97,116,105,111,110,32,73,110,115,112,105,114,101,32,84,114,101,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,97,114,114,97,121,125,32,65,114,114,97,121,32,111,102,32,110,101,119,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,58,32,102,117,110,99,116,105,111,110,32,116,111,40,100,101,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,95,46,105,115,70,117,110,99,116,105,111,110,40,100,101,115,116,46,97,100,100,78,111,100,101,115,41,41,32,123,92,110,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,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,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,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,78,111,100,101,115,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,95,116,104,105,115,50,46,95,116,114,101,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,95,116,104,105,115,50,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,78,111,100,101,115,46,112,117,115,104,40,110,111,100,101,46,99,111,112,121,40,104,105,101,114,97,114,99,104,121,41,46,116,111,40,100,101,115,116,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,78,111,100,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,116,117,114,110,32,100,101,101,112,101,115,116,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,100,101,101,112,101,115,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,100,101,101,112,101,115,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,101,115,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,104,105,115,46,95,116,114,101,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,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,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,110,111,100,101,46,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,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,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,116,99,104,101,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,68,101,115,101,108,101,99,116,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,100,101,115,101,108,101,99,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,100,101,115,101,108,101,99,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,39,100,101,115,101,108,101,99,116,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,68,101,115,101,108,101,99,116,32,40,100,101,101,112,108,121,41,32,97,108,108,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,100,101,115,101,108,101,99,116,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,100,101,115,101,108,101,99,116,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,39,100,101,115,101,108,101,99,116,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,116,101,114,97,116,101,32,101,97,99,104,32,84,114,101,101,78,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,73,116,101,114,97,116,101,101,32,105,110,118,111,107,101,32,102,111,114,32,101,97,99,104,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,97,99,104,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,97,99,104,36,36,49,40,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,116,104,105,115,44,32,105,116,101,114,97,116,101,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,101,100,105,116,97,98,108,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,100,105,116,97,98,108,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,100,105,116,97,98,108,101,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,39,101,100,105,116,97,98,108,101,39,44,32,102,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,110,111,100,101,115,32,105,110,32,101,100,105,116,105,110,103,32,109,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,100,105,116,105,110,103,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,100,105,116,105,110,103,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,39,101,100,105,116,105,110,103,39,44,32,102,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,69,120,112,97,110,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,120,112,97,110,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,120,112,97,110,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,39,101,120,112,97,110,100,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,101,120,112,97,110,100,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,120,112,97,110,100,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,120,112,97,110,100,101,100,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,39,101,120,112,97,110,100,101,100,39,44,32,102,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,69,120,112,97,110,100,32,40,100,101,101,112,108,121,41,32,97,108,108,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,80,114,111,109,105,115,101,32,114,101,115,111,108,118,101,100,32,119,104,101,110,32,97,108,108,32,99,104,105,108,100,114,101,110,32,104,97,118,101,32,108,111,97,100,101,100,32,97,110,100,32,101,120,112,97,110,100,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,120,112,97,110,100,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,120,112,97,110,100,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,101,115,54,80,114,111,109,105,115,101,95,49,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,119,97,105,116,67,111,117,110,116,32,61,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,111,110,101,32,61,32,102,117,110,99,116,105,111,110,32,100,111,110,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,45,45,119,97,105,116,67,111,117,110,116,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,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,118,101,40,95,116,104,105,115,51,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,97,105,116,67,111,117,110,116,43,43,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,103,110,111,114,101,32,110,111,100,101,115,32,119,105,116,104,111,117,116,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,101,120,112,97,110,100,40,41,46,99,97,116,99,104,40,100,111,110,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,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,47,47,32,77,97,110,117,97,108,108,121,32,116,114,105,103,103,101,114,32,101,120,112,97,110,115,105,111,110,32,111,110,32,110,101,119,108,121,32,108,111,97,100,101,100,32,99,104,105,108,100,114,101,110,92,110,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,110,111,100,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,100,111,110,101,41,46,116,104,101,110,40,100,111,110,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,110,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,69,120,112,97,110,100,32,112,97,114,101,110,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,120,112,97,110,100,80,97,114,101,110,116,115,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,120,112,97,110,100,80,97,114,101,110,116,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,39,101,120,112,97,110,100,80,97,114,101,110,116,115,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,108,111,110,101,32,97,32,104,105,101,114,97,114,99,104,121,32,111,102,32,97,108,108,32,110,111,100,101,115,32,109,97,116,99,104,105,110,103,32,97,32,112,114,101,100,105,99,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,66,101,99,97,117,115,101,32,105,116,32,102,105,108,116,101,114,115,32,100,101,101,112,108,121,44,32,119,101,32,109,117,115,116,32,99,108,111,110,101,32,97,108,108,32,110,111,100,101,115,32,115,111,32,116,104,97,116,32,119,101,92,110,32,32,32,32,32,32,32,32,32,42,32,100,111,110,39,116,32,97,102,102,101,99,116,32,116,104,101,32,97,99,116,117,97,108,32,110,111,100,101,32,97,114,114,97,121,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,83,116,97,116,101,32,102,108,97,103,32,111,114,32,99,117,115,116,111,109,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,120,116,114,97,99,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,120,116,114,97,99,116,40,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,108,97,116,32,61,32,116,104,105,115,46,102,108,97,116,116,101,110,40,112,114,101,100,105,99,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,101,115,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,104,105,115,46,95,116,114,101,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,102,108,97,116,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,101,115,46,97,100,100,78,111,100,101,40,110,111,100,101,46,99,111,112,121,72,105,101,114,97,114,99,104,121,40,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,116,99,104,101,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,70,105,108,116,101,114,32,97,108,108,32,110,111,100,101,115,32,109,97,116,99,104,105,110,103,32,116,104,101,32,103,105,118,101,110,32,112,114,101,100,105,99,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,83,116,97,116,101,32,102,108,97,103,32,111,114,32,99,117,115,116,111,109,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,102,105,108,116,101,114,66,121,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,66,121,40,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,110,32,61,32,103,101,116,80,114,101,100,105,99,97,116,101,70,117,110,99,116,105,111,110,40,112,114,101,100,105,99,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,101,115,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,104,105,115,46,95,116,114,101,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,116,104,105,115,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,102,110,40,110,111,100,101,41,41,32,123,92,110,32,32,32,32,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,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,116,99,104,101,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,70,108,97,116,116,101,110,32,97,110,100,32,103,101,116,32,111,110,108,121,32,110,111,100,101,40,115,41,32,109,97,116,99,104,105,110,103,32,116,104,101,32,101,120,112,101,99,116,101,100,32,115,116,97,116,101,32,111,114,32,112,114,101,100,105,99,97,116,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,83,116,97,116,101,32,112,114,111,112,101,114,116,121,32,111,114,32,99,117,115,116,111,109,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,70,108,97,116,32,97,114,114,97,121,32,111,102,32,109,97,116,99,104,105,110,103,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,102,108,97,116,116,101,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,102,108,97,116,116,101,110,40,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,108,97,116,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,104,105,115,46,95,116,114,101,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,110,32,61,32,103,101,116,80,114,101,100,105,99,97,116,101,70,117,110,99,116,105,111,110,40,112,114,101,100,105,99,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,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,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,102,110,40,110,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,108,97,116,46,112,117,115,104,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,108,97,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,102,111,99,117,115,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,102,111,99,117,115,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,101,100,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,39,102,111,99,117,115,101,100,39,44,32,102,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,116,101,114,97,116,101,32,101,97,99,104,32,84,114,101,101,78,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,73,116,101,114,97,116,101,101,32,105,110,118,111,107,101,32,102,111,114,32,101,97,99,104,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,102,111,114,69,97,99,104,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,40,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,105,116,101,114,97,116,101,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,97,32,115,112,101,99,105,102,105,99,32,110,111,100,101,32,98,121,32,105,116,115,32,105,110,100,101,120,44,32,111,114,32,117,110,100,101,102,105,110,101,100,32,105,102,32,105,116,32,100,111,101,115,110,39,116,32,101,120,105,115,116,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,105,110,116,125,32,105,110,100,101,120,32,78,117,109,101,114,105,99,32,105,110,100,101,120,32,111,102,32,114,101,113,117,101,115,116,101,100,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,32,85,110,100,101,102,105,110,101,100,32,105,102,32,105,110,118,97,108,105,100,32,105,110,100,101,120,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,103,101,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,36,36,49,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,104,105,100,100,101,110,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,105,100,100,101,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,100,101,110,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,39,104,105,100,100,101,110,39,44,32,102,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,72,105,100,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,39,104,105,100,101,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,72,105,100,101,32,40,100,101,101,112,108,121,41,32,97,108,108,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,105,100,101,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,39,104,105,100,101,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,105,110,100,101,116,101,114,109,105,110,97,116,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,110,100,101,116,101,114,109,105,110,97,116,101,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,44,32,102,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,110,115,101,114,116,32,97,32,110,101,119,32,110,111,100,101,32,97,116,32,97,32,103,105,118,101,110,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,105,110,116,101,103,101,114,125,32,105,110,100,101,120,32,73,110,100,101,120,32,97,116,32,119,104,105,99,104,32,116,111,32,105,110,115,101,114,116,32,116,104,101,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,111,98,106,101,99,116,32,82,97,119,32,110,111,100,101,32,111,98,106,101,99,116,32,111,114,32,84,114,101,101,78,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,110,115,101,114,116,65,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,110,115,101,114,116,65,116,40,105,110,100,101,120,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,110,111,100,101,32,104,97,115,32,97,32,112,114,101,45,101,120,105,115,116,105,110,103,32,73,68,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,98,106,101,99,116,46,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,115,32,105,116,32,97,108,114,101,97,100,121,32,105,110,32,116,104,101,32,116,114,101,101,63,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,120,105,115,116,105,110,103,78,111,100,101,32,61,32,116,104,105,115,46,110,111,100,101,40,111,98,106,101,99,116,46,105,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,120,105,115,116,105,110,103,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,120,105,115,116,105,110,103,78,111,100,101,46,114,101,115,116,111,114,101,40,41,46,115,104,111,119,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,101,114,103,101,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,65,114,114,97,121,76,105,107,101,40,111,98,106,101,99,116,46,99,104,105,108,100,114,101,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,117,112,32,101,120,105,115,116,105,110,103,32,110,111,100,101,39,115,32,99,104,105,108,100,114,101,110,32,112,114,111,112,101,114,116,121,32,105,102,32,110,101,101,100,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,95,46,105,115,65,114,114,97,121,76,105,107,101,40,101,120,105,115,116,105,110,103,78,111,100,101,46,99,104,105,108,100,114,101,110,41,41,32,123,92,110,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,101,120,105,115,116,105,110,103,78,111,100,101,46,99,104,105,108,100,114,101,110,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,104,105,115,46,95,116,114,101,101,41,59,92,110,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,101,120,105,115,116,105,110,103,78,111,100,101,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,32,61,32,101,120,105,115,116,105,110,103,78,111,100,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,112,121,32,101,97,99,104,32,99,104,105,108,100,32,40,117,115,105,110,103,32,97,100,100,78,111,100,101,44,32,119,104,105,99,104,32,117,115,101,115,32,105,110,115,101,114,116,65,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,111,98,106,101,99,116,46,99,104,105,108,100,114,101,110,44,32,102,117,110,99,116,105,111,110,32,40,99,104,105,108,100,41,32,123,92,110,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,101,120,105,115,116,105,110,103,78,111,100,101,46,99,104,105,108,100,114,101,110,46,97,100,100,78,111,100,101,40,99,104,105,108,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,101,114,103,101,32,116,114,117,116,104,121,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,111,98,106,101,99,116,46,99,104,105,108,100,114,101,110,32,38,38,32,95,46,105,115,66,111,111,108,101,97,110,40,101,120,105,115,116,105,110,103,78,111,100,101,46,99,104,105,108,100,114,101,110,41,41,32,123,92,110,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,101,120,105,115,116,105,110,103,78,111,100,101,46,99,104,105,108,100,114,101,110,32,61,32,111,98,106,101,99,116,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,120,105,115,116,105,110,103,78,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,100,101,32,109,101,114,103,101,100,44,32,114,101,116,117,114,110,32,105,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,120,105,115,116,105,110,103,78,111,100,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,100,101,32,105,115,32,110,101,119,44,32,105,110,115,101,114,116,32,97,116,32,103,105,118,101,110,32,108,111,99,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,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,111,98,106,101,99,116,41,32,63,32,111,98,106,101,99,116,32,58,32,111,98,106,101,99,116,84,111,78,111,100,101,40,116,104,105,115,46,95,116,114,101,101,44,32,111,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,71,114,97,98,32,114,101,109,97,105,110,105,110,103,32,110,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,112,108,105,99,101,40,105,110,100,101,120,44,32,48,44,32,110,111,100,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,102,114,101,115,104,32,112,97,114,101,110,116,32,115,116,97,116,101,32,97,110,100,32,109,97,114,107,32,100,105,114,116,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,105,116,114,101,101,46,112,97,114,101,110,116,32,61,32,116,104,105,115,46,95,99,111,110,116,101,120,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,118,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,97,100,100,101,100,39,44,32,110,111,100,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,108,119,97,121,115,32,109,97,114,107,32,116,104,105,115,32,110,111,100,101,32,97,115,32,100,105,114,116,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,112,117,115,104,105,110,103,32,116,104,105,115,32,110,111,100,101,32,97,110,121,119,104,101,114,101,32,98,117,116,32,116,104,101,32,101,110,100,44,32,111,116,104,101,114,32,110,111,100,101,115,32,109,97,121,32,99,104,97,110,103,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,101,110,103,116,104,32,45,32,49,32,33,61,61,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,105,110,118,111,107,101,40,39,109,97,114,107,68,105,114,116,121,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,110,118,111,107,101,32,109,101,116,104,111,100,40,115,41,32,111,110,32,101,97,99,104,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,97,114,114,97,121,125,32,109,101,116,104,111,100,115,32,77,101,116,104,111,100,32,110,97,109,101,40,115,41,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,97,114,114,97,121,124,65,114,103,117,109,101,110,116,115,125,32,97,114,103,115,32,65,114,114,97,121,32,111,102,32,97,114,103,117,109,101,110,116,115,32,116,111,32,112,114,111,120,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,110,118,111,107,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,36,36,49,40,109,101,116,104,111,100,115,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,73,110,118,111,107,101,40,116,104,105,115,44,32,109,101,116,104,111,100,115,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,110,118,111,107,101,32,109,101,116,104,111,100,40,115,41,32,100,101,101,112,108,121,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,97,114,114,97,121,125,32,109,101,116,104,111,100,115,32,77,101,116,104,111,100,32,110,97,109,101,40,115,41,46,92,110,32,32,32,32,32,32,32,32,32,42,32,32,64,112,97,114,97,109,32,123,97,114,114,97,121,124,65,114,103,117,109,101,110,116,115,125,32,97,114,103,115,32,65,114,114,97,121,32,111,102,32,97,114,103,117,109,101,110,116,115,32,116,111,32,112,114,111,120,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,110,118,111,107,101,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,68,101,101,112,40,109,101,116,104,111,100,115,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,73,110,118,111,107,101,40,116,104,105,115,44,32,109,101,116,104,111,100,115,44,32,97,114,103,115,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,110,111,100,101,115,32,99,117,114,114,101,110,116,108,121,32,108,111,97,100,105,110,103,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,108,111,97,100,105,110,103,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,108,111,97,100,105,110,103,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,39,108,111,97,100,105,110,103,39,44,32,102,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,76,111,97,100,115,32,97,100,100,105,116,105,111,110,97,108,32,110,111,100,101,115,32,102,111,114,32,116,104,105,115,32,99,111,110,116,101,120,116,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,69,118,101,110,116,125,32,101,118,101,110,116,32,67,108,105,99,107,32,111,114,32,115,99,114,111,108,108,32,101,118,101,110,116,32,105,102,32,68,79,77,32,105,110,116,101,114,97,99,116,105,111,110,32,116,114,105,103,103,101,114,101,100,32,116,104,105,115,32,99,97,108,108,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,82,101,115,111,108,118,101,115,32,119,105,116,104,32,114,101,113,117,101,115,116,32,114,101,115,117,108,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,108,111,97,100,77,111,114,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,108,111,97,100,77,111,114,101,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,78,101,118,101,114,32,114,101,102,105,114,101,32,105,102,32,110,111,100,101,32,105,115,32,108,111,97,100,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,108,111,97,100,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,115,54,80,114,111,109,105,115,101,95,49,46,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,39,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,39,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,109,105,115,101,32,61,32,118,111,105,100,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,110,111,32,114,101,99,111,114,100,115,32,114,101,109,97,105,110,44,32,105,109,109,101,100,105,97,116,101,108,121,32,114,101,115,111,108,118,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,32,61,61,61,32,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,115,54,80,114,111,109,105,115,101,95,49,46,114,101,115,111,108,118,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,108,111,97,100,105,110,103,32,102,108,97,103,44,32,112,114,101,118,101,110,116,115,32,114,101,112,101,97,116,32,114,101,113,117,101,115,116,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,108,111,97,100,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,114,107,32,116,104,105,115,32,99,111,110,116,101,120,116,32,97,115,32,100,105,114,116,121,32,115,105,110,99,101,32,119,101,39,108,108,32,117,112,100,97,116,101,32,116,101,120,116,47,116,114,101,101,32,110,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,105,110,118,111,107,101,40,116,104,105,115,46,95,99,111,110,116,101,120,116,44,32,39,109,97,114,107,68,105,114,116,121,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,99,114,101,109,101,110,116,32,116,104,101,32,112,97,103,105,110,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,32,43,61,32,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,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,109,105,116,32,97,110,32,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,112,97,103,105,110,97,116,101,100,39,44,32,116,104,105,115,46,95,99,111,110,116,101,120,116,32,124,124,32,116,104,105,115,46,95,116,114,101,101,44,32,116,104,105,115,46,112,97,103,105,110,97,116,105,111,110,44,32,101,118,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,32,61,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,32,61,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,108,111,97,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,32,61,32,101,115,54,80,114,111,109,105,115,101,95,49,46,114,101,115,111,108,118,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,108,101,97,114,32,116,104,101,32,108,111,97,100,105,110,103,32,102,108,97,103,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,95,108,111,97,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,95,108,111,97,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,114,111,109,105,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,110,111,100,101,115,32,109,97,116,99,104,101,100,32,105,110,32,116,104,101,32,108,97,115,116,32,115,101,97,114,99,104,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,109,97,116,99,104,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,109,97,116,99,104,101,100,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,39,109,97,116,99,104,101,100,39,44,32,102,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,77,111,118,101,32,110,111,100,101,32,97,116,32,97,32,103,105,118,101,110,32,105,110,100,101,120,32,116,111,32,97,32,110,101,119,32,105,110,100,101,120,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,105,110,116,125,32,105,110,100,101,120,32,67,117,114,114,101,110,116,32,105,110,100,101,120,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,105,110,116,125,32,110,101,119,73,110,100,101,120,32,78,101,119,32,105,110,100,101,120,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,115,125,32,116,97,114,103,101,116,32,84,97,114,103,101,116,32,84,114,101,101,78,111,100,101,115,32,97,114,114,97,121,46,32,68,101,102,97,117,108,116,115,32,116,111,32,116,104,105,115,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,109,111,118,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,109,111,118,101,40,105,110,100,101,120,44,32,110,101,119,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,108,100,78,111,100,101,32,61,32,116,104,105,115,91,105,110,100,101,120,93,46,114,101,109,111,118,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,116,97,114,103,101,116,46,105,110,115,101,114,116,65,116,40,110,101,119,73,110,100,101,120,44,32,111,108,100,78,111,100,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,109,111,118,101,100,39,44,32,110,111,100,101,44,32,116,104,105,115,44,32,105,110,100,101,120,44,32,116,97,114,103,101,116,44,32,110,101,119,73,110,100,101,120,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,97,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,110,117,109,98,101,114,125,32,105,100,32,73,68,32,111,102,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,110,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,110,111,100,101,40,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,32,61,32,118,111,105,100,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,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,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,105,100,32,61,61,61,32,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,32,61,32,110,111,100,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,116,99,104,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,97,108,108,32,110,111,100,101,115,32,105,110,32,97,32,116,114,101,101,44,32,111,114,32,110,111,100,101,115,32,102,111,114,32,97,110,32,97,114,114,97,121,32,111,102,32,73,68,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,97,114,114,97,121,125,32,114,101,102,115,32,65,114,114,97,121,32,111,102,32,73,68,32,114,101,102,101,114,101,110,99,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,108,101,116,32,97,108,108,32,61,32,116,114,101,101,46,110,111,100,101,115,40,41,92,110,32,32,32,32,32,32,32,32,32,42,32,108,101,116,32,115,111,109,101,32,61,32,116,114,101,101,46,110,111,100,101,115,40,91,49,44,32,50,44,32,51,93,41,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,110,111,100,101,115,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,110,111,100,101,115,40,114,101,102,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,115,32,61,32,118,111,105,100,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,65,114,114,97,121,40,114,101,102,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,115,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,104,105,115,46,95,116,114,101,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,114,101,102,115,46,105,110,100,101,120,79,102,40,110,111,100,101,46,105,100,41,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,115,46,112,117,115,104,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,46,105,115,65,114,114,97,121,40,114,101,102,115,41,32,63,32,114,101,115,117,108,116,115,32,58,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,116,104,101,32,112,97,103,105,110,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,111,98,106,101,99,116,125,32,80,97,103,105,110,97,116,105,111,110,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,112,97,103,105,110,97,116,105,111,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,112,97,103,105,110,97,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,116,101,114,97,116,101,32,100,111,119,110,32,97,108,108,32,110,111,100,101,115,32,97,110,100,32,97,110,121,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,116,117,114,110,32,102,97,108,115,101,32,116,111,32,115,116,111,112,32,101,120,101,99,117,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,73,116,101,114,97,116,101,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,82,101,115,117,108,116,105,110,103,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,99,117,114,115,101,68,111,119,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,99,117,114,115,101,68,111,119,110,36,36,49,40,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,99,117,114,115,101,68,111,119,110,40,116,104,105,115,44,32,105,116,101,114,97,116,101,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,109,111,118,101,32,97,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,110,111,100,101,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,82,101,115,117,108,116,105,110,103,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,109,111,118,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,36,36,49,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,114,101,109,111,118,101,40,116,104,105,115,44,32,123,32,105,100,58,32,110,111,100,101,46,105,100,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,105,110,118,111,107,101,40,116,104,105,115,46,95,99,111,110,116,101,120,116,44,32,39,109,97,114,107,68,105,114,116,121,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,115,111,102,116,45,114,101,109,111,118,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,109,111,118,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,100,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,39,114,101,109,111,118,101,100,39,44,32,102,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,115,116,111,114,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,115,116,111,114,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,115,116,111,114,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,39,114,101,115,116,111,114,101,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,115,116,111,114,101,32,40,100,101,101,112,108,121,41,32,97,108,108,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,115,116,111,114,101,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,115,116,111,114,101,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,39,114,101,115,116,111,114,101,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,101,108,101,99,116,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,101,108,101,99,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,39,115,101,108,101,99,116,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,115,101,108,101,99,116,97,98,108,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,101,108,101,99,116,97,98,108,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,97,98,108,101,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,39,115,101,108,101,99,116,97,98,108,101,39,44,32,102,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,101,108,101,99,116,32,40,100,101,101,112,108,121,41,32,97,108,108,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,101,108,101,99,116,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,39,115,101,108,101,99,116,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,115,101,108,101,99,116,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,101,108,101,99,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,101,100,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,39,115,101,108,101,99,116,101,100,39,44,32,102,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,104,111,119,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,104,111,119,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,104,111,119,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,39,115,104,111,119,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,104,111,119,32,40,100,101,101,112,108,121,41,32,97,108,108,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,104,111,119,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,104,111,119,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,39,115,104,111,119,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,111,102,116,45,114,101,109,111,118,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,111,102,116,82,101,109,111,118,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,111,102,116,82,101,109,111,118,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,39,115,111,102,116,82,101,109,111,118,101,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,111,114,116,115,32,97,108,108,32,84,114,101,101,78,111,100,101,32,111,98,106,101,99,116,115,32,105,110,32,116,104,105,115,32,99,111,108,108,101,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,102,32,110,111,32,99,117,115,116,111,109,32,115,111,114,116,101,114,32,103,105,118,101,110,44,32,116,104,101,32,99,111,110,102,105,103,117,114,101,100,32,92,34,115,111,114,116,92,34,32,118,97,108,117,101,32,119,105,108,108,32,98,101,32,117,115,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,125,32,115,111,114,116,101,114,32,83,111,114,116,32,102,117,110,99,116,105,111,110,32,111,114,32,112,114,111,112,101,114,116,121,32,110,97,109,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,101,106,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,111,114,116,66,121,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,111,114,116,66,121,36,36,49,40,115,111,114,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,53,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,111,114,116,101,114,32,61,32,115,111,114,116,101,114,32,124,124,32,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,79,110,108,121,32,97,112,112,108,121,32,115,111,114,116,32,105,102,32,111,110,101,32,112,114,111,118,105,100,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,111,114,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,111,114,116,101,100,32,61,32,95,46,115,111,114,116,66,121,40,116,104,105,115,44,32,115,111,114,116,101,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,101,110,103,116,104,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,115,111,114,116,101,100,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,53,46,112,117,115,104,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,101,116,32,110,111,100,101,115,39,32,115,116,97,116,101,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,110,97,109,101,32,80,114,111,112,101,114,116,121,32,110,97,109,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,110,101,119,86,97,108,32,78,101,119,32,118,97,108,117,101,44,32,105,102,32,115,101,116,116,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,116,97,116,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,116,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,39,115,116,97,116,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,101,116,32,40,100,101,101,112,108,121,41,32,110,111,100,101,115,39,32,115,116,97,116,101,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,110,97,109,101,32,80,114,111,112,101,114,116,121,32,110,97,109,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,110,101,119,86,97,108,32,78,101,119,32,118,97,108,117,101,44,32,105,102,32,115,101,116,116,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,116,97,116,101,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,116,97,116,101,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,39,115,116,97,116,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,119,97,112,115,32,116,119,111,32,110,111,100,101,32,112,111,115,105,116,105,111,110,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,110,111,100,101,49,32,78,111,100,101,32,49,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,110,111,100,101,50,32,78,111,100,101,32,50,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,119,97,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,119,97,112,40,110,111,100,101,49,44,32,110,111,100,101,50,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,49,67,111,110,116,101,120,116,32,61,32,110,111,100,101,49,46,99,111,110,116,101,120,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,50,67,111,110,116,101,120,116,32,61,32,110,111,100,101,50,46,99,111,110,116,101,120,116,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,97,99,104,101,46,32,78,111,116,101,58,32,110,50,73,110,100,101,120,32,105,115,32,111,110,108,121,32,117,115,97,98,108,101,32,111,110,99,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,49,73,110,100,101,120,32,61,32,110,49,67,111,110,116,101,120,116,46,105,110,100,101,120,79,102,40,110,111,100,101,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,50,73,110,100,101,120,32,61,32,110,50,67,111,110,116,101,120,116,46,105,110,100,101,120,79,102,40,110,111,100,101,50,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,99,111,110,116,101,120,116,115,32,109,97,116,99,104,44,32,119,101,32,99,97,110,32,115,105,109,112,108,121,32,114,101,45,97,115,115,105,103,110,32,116,104,101,109,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,49,67,111,110,116,101,120,116,32,61,61,61,32,110,50,67,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,91,110,49,73,110,100,101,120,93,32,61,32,110,111,100,101,50,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,91,110,50,73,110,100,101,120,93,32,61,32,110,111,100,101,49,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,109,105,116,32,109,111,118,101,32,101,118,101,110,116,115,32,102,111,114,32,101,97,99,104,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,109,111,118,101,100,39,44,32,110,111,100,101,49,44,32,110,49,67,111,110,116,101,120,116,44,32,110,49,73,110,100,101,120,44,32,110,50,67,111,110,116,101,120,116,44,32,110,50,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,109,111,118,101,100,39,44,32,110,111,100,101,50,44,32,110,50,67,111,110,116,101,120,116,44,32,110,50,73,110,100,101,120,44,32,110,49,67,111,110,116,101,120,116,44,32,110,49,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,119,101,32,104,97,118,101,32,116,111,32,109,111,118,101,32,98,101,116,119,101,101,110,32,99,111,110,116,101,120,116,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,111,118,101,32,110,111,100,101,32,49,32,116,111,32,110,111,100,101,32,50,39,115,32,105,110,100,101,120,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,49,67,111,110,116,101,120,116,46,109,111,118,101,40,110,49,73,110,100,101,120,44,32,110,50,67,111,110,116,101,120,116,46,105,110,100,101,120,79,102,40,110,111,100,101,50,41,44,32,110,50,67,111,110,116,101,120,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,111,118,101,32,110,111,100,101,32,50,32,116,111,32,110,111,100,101,32,49,115,32,111,114,105,103,105,110,97,108,32,105,110,100,101,120,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,50,67,111,110,116,101,120,116,46,109,111,118,101,40,110,50,67,111,110,116,101,120,116,46,105,110,100,101,120,79,102,40,110,111,100,101,50,41,44,32,110,49,73,110,100,101,120,44,32,110,49,67,111,110,116,101,120,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,115,119,97,112,112,101,100,39,44,32,110,111,100,101,49,44,32,110,49,67,111,110,116,101,120,116,44,32,110,49,73,110,100,101,120,44,32,110,111,100,101,50,44,32,110,50,67,111,110,116,101,120,116,44,32,110,50,73,110,100,101,120,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,116,104,101,32,116,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,91,116,121,112,101,93,125,32,91,100,101,115,99,114,105,112,116,105,111,110,93,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,114,101,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,116,114,101,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,97,32,110,97,116,105,118,101,32,110,111,100,101,32,65,114,114,97,121,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,97,114,114,97,121,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,111,65,114,114,97,121,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,116,111,65,114,114,97,121,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,114,114,97,121,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,116,104,105,115,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,114,114,97,121,46,112,117,115,104,40,110,111,100,101,46,116,111,79,98,106,101,99,116,40,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,118,105,115,105,98,108,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,118,105,115,105,98,108,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,118,105,115,105,98,108,101,40,102,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,80,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,39,118,105,115,105,98,108,101,39,44,32,102,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,93,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,84,114,101,101,78,111,100,101,115,59,92,110,125,40,95,101,120,116,101,110,100,97,98,108,101,66,117,105,108,116,105,110,40,65,114,114,97,121,41,41,59,92,110,92,110,47,42,42,92,110,32,42,32,66,97,115,101,32,114,101,99,117,114,115,105,111,110,32,102,117,110,99,116,105,111,110,32,102,111,114,32,97,32,99,111,108,108,101,99,116,105,111,110,32,111,114,32,110,111,100,101,46,92,110,32,42,92,110,32,42,32,82,101,116,117,114,110,115,32,102,97,108,115,101,32,105,102,32,101,120,101,99,117,116,105,111,110,32,115,104,111,117,108,100,32,99,101,97,115,101,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,124,84,114,101,101,78,111,100,101,115,125,32,111,98,106,32,78,111,100,101,32,111,114,32,99,111,108,108,101,99,116,105,111,110,46,92,110,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,73,116,101,114,97,116,101,101,32,102,117,110,99,116,105,111,110,92,110,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,67,101,97,115,101,32,105,116,101,114,97,116,105,111,110,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,114,101,99,117,114,115,101,68,111,119,110,40,111,98,106,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,32,61,32,118,111,105,100,32,48,59,92,110,92,110,32,32,32,32,105,102,32,40,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,84,114,101,101,78,111,100,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,111,98,106,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,32,61,32,114,101,99,117,114,115,101,68,111,119,110,40,110,111,100,101,44,32,105,116,101,114,97,116,101,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,84,114,101,101,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,32,61,32,105,116,101,114,97,116,101,101,40,111,98,106,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,99,117,114,115,101,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,101,115,32,33,61,61,32,102,97,108,115,101,32,38,38,32,111,98,106,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,32,61,32,114,101,99,117,114,115,101,68,111,119,110,40,111,98,106,46,99,104,105,108,100,114,101,110,44,32,105,116,101,114,97,116,101,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,101,115,111,108,118,101,32,112,114,111,109,105,115,101,45,108,105,107,101,32,111,98,106,101,99,116,115,32,99,111,110,115,105,115,116,101,110,116,108,121,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,112,114,111,109,105,115,101,32,80,114,111,109,105,115,101,45,108,105,107,101,32,111,98,106,101,99,116,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,80,114,111,109,105,115,101,125,32,80,114,111,109,105,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,115,116,97,110,100,97,114,100,105,122,101,80,114,111,109,105,115,101,40,112,114,111,109,105,115,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,101,115,54,80,114,111,109,105,115,101,95,49,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,95,46,105,115,79,98,106,101,99,116,40,112,114,111,109,105,115,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,39,73,110,118,97,108,105,100,32,80,114,111,109,105,115,101,39,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,70,117,110,99,116,105,111,110,40,112,114,111,109,105,115,101,46,116,104,101,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,46,116,104,101,110,40,114,101,115,111,108,118,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,106,81,117,101,114,121,32,112,114,111,109,105,115,101,115,32,117,115,101,32,92,34,101,114,114,111,114,92,34,92,110,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,70,117,110,99,116,105,111,110,40,112,114,111,109,105,115,101,46,101,114,114,111,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,46,101,114,114,111,114,40,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,95,46,105,115,70,117,110,99,116,105,111,110,40,112,114,111,109,105,115,101,46,99,97,116,99,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,46,99,97,116,99,104,40,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,125,92,110,92,110,47,47,32,76,105,98,115,92,110,92,110,47,42,42,92,110,32,42,32,72,101,108,112,101,114,32,109,101,116,104,111,100,32,116,111,32,99,108,111,110,101,32,97,110,32,73,84,114,101,101,32,99,111,110,102,105,103,32,111,98,106,101,99,116,46,92,110,32,42,92,110,32,42,32,82,101,106,101,99,116,115,32,110,111,110,45,99,108,111,110,97,98,108,101,32,112,114,111,112,101,114,116,105,101,115,32,108,105,107,101,32,114,101,102,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,105,116,114,101,101,32,73,84,114,101,101,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,111,98,106,101,99,116,92,110,32,42,32,64,112,97,114,97,109,32,123,97,114,114,97,121,125,32,101,120,99,108,117,100,101,75,101,121,115,32,75,101,121,115,32,116,111,32,101,120,99,108,117,100,101,44,32,105,102,32,97,110,121,92,110,32,42,32,64,114,101,116,117,114,110,32,123,111,98,106,101,99,116,125,32,67,108,111,110,101,100,32,73,84,114,101,101,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,99,108,111,110,101,73,116,114,101,101,40,105,116,114,101,101,44,32,101,120,99,108,117,100,101,75,101,121,115,41,32,123,92,110,32,32,32,32,118,97,114,32,99,108,111,110,101,32,61,32,123,125,59,92,110,32,32,32,32,101,120,99,108,117,100,101,75,101,121,115,32,61,32,95,46,99,97,115,116,65,114,114,97,121,40,101,120,99,108,117,100,101,75,101,121,115,41,59,92,110,32,32,32,32,101,120,99,108,117,100,101,75,101,121,115,46,112,117,115,104,40,39,114,101,102,39,41,59,92,110,92,110,32,32,32,32,95,46,101,97,99,104,40,105,116,114,101,101,44,32,102,117,110,99,116,105,111,110,32,40,118,44,32,107,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,95,46,105,110,99,108,117,100,101,115,40,101,120,99,108,117,100,101,75,101,121,115,44,32,107,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,111,110,101,91,107,93,32,61,32,95,46,99,108,111,110,101,68,101,101,112,40,118,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,99,108,111,110,101,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,101,112,114,101,115,101,110,116,115,32,97,32,115,105,110,103,101,32,110,111,100,101,32,111,98,106,101,99,116,32,119,105,116,104,105,110,32,116,104,101,32,116,114,101,101,46,92,110,32,42,92,110,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,115,111,117,114,99,101,32,84,114,101,101,78,111,100,101,32,116,111,32,99,111,112,121,46,92,110,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,84,114,101,101,32,110,111,100,101,32,111,98,106,101,99,116,46,92,110,32,42,47,92,110,118,97,114,32,84,114,101,101,78,111,100,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,84,114,101,101,78,111,100,101,40,116,114,101,101,44,32,115,111,117,114,99,101,44,32,101,120,99,108,117,100,101,75,101,121,115,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,84,114,101,101,78,111,100,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,32,61,32,116,114,101,101,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,111,117,114,99,101,32,105,110,115,116,97,110,99,101,111,102,32,84,114,101,101,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,120,99,108,117,100,101,75,101,121,115,32,61,32,95,46,99,97,115,116,65,114,114,97,121,40,101,120,99,108,117,100,101,75,101,121,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,120,99,108,117,100,101,75,101,121,115,46,112,117,115,104,40,39,95,116,114,101,101,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,116,101,114,97,116,101,32,109,97,110,117,97,108,108,121,32,102,111,114,32,98,101,116,116,101,114,32,112,101,114,102,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,115,111,117,114,99,101,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,107,105,112,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,95,46,105,110,99,108,117,100,101,115,40,101,120,99,108,117,100,101,75,101,121,115,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,79,98,106,101,99,116,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,105,110,115,116,97,110,99,101,111,102,32,84,114,101,101,78,111,100,101,115,41,32,123,92,110,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,95,116,104,105,115,91,107,101,121,93,32,61,32,118,97,108,117,101,46,99,108,111,110,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,32,61,61,61,32,39,105,116,114,101,101,39,41,32,123,92,110,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,95,116,104,105,115,91,107,101,121,93,32,61,32,99,108,111,110,101,73,116,114,101,101,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,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,95,116,104,105,115,91,107,101,121,93,32,61,32,95,46,99,108,111,110,101,68,101,101,112,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,112,121,32,112,114,105,109,105,116,105,118,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,91,107,101,121,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,100,100,32,97,32,99,104,105,108,100,32,116,111,32,116,104,105,115,32,110,111,100,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,99,104,105,108,100,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,47,92,110,92,110,92,110,32,32,32,32,99,114,101,97,116,101,67,108,97,115,115,40,84,114,101,101,78,111,100,101,44,32,91,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,97,100,100,67,104,105,108,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,97,100,100,67,104,105,108,100,40,99,104,105,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,65,114,114,97,121,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,32,124,124,32,33,95,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,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,99,104,105,108,100,114,101,110,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,104,105,115,46,95,116,114,101,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,104,105,108,100,114,101,110,46,97,100,100,78,111,100,101,40,99,104,105,108,100,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,65,100,100,32,109,117,108,116,105,112,108,101,32,99,104,105,108,100,114,101,110,32,116,111,32,116,104,105,115,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,99,104,105,108,100,114,101,110,32,65,114,114,97,121,32,111,102,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,97,100,100,67,104,105,108,100,114,101,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,97,100,100,67,104,105,108,100,114,101,110,40,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,115,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,104,105,115,46,95,116,114,101,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,99,104,105,108,100,114,101,110,44,32,102,117,110,99,116,105,111,110,32,40,99,104,105,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,115,46,112,117,115,104,40,95,116,104,105,115,50,46,97,100,100,67,104,105,108,100,40,99,104,105,108,100,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,69,110,115,117,114,101,32,116,104,105,115,32,110,111,100,101,32,97,108,108,111,119,115,32,100,121,110,97,109,105,99,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,116,114,101,101,47,110,111,100,101,32,97,108,108,111,119,115,32,100,121,110,97,109,105,99,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,32,38,38,32,40,95,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,32,124,124,32,116,104,105,115,46,99,104,105,108,100,114,101,110,32,61,61,61,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,104,101,99,107,32,105,102,32,110,111,100,101,32,97,118,97,105,108,97,98,108,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,97,118,97,105,108,97,98,108,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,97,118,97,105,108,97,98,108,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,97,118,97,105,108,97,98,108,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,104,105,100,100,101,110,40,41,32,38,38,32,33,116,104,105,115,46,114,101,109,111,118,101,100,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,66,108,117,114,32,102,111,99,117,115,32,102,114,111,109,32,116,104,105,115,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,98,108,117,114,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,116,101,40,39,101,100,105,116,105,110,103,39,44,32,102,97,108,115,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,102,111,99,117,115,101,100,39,44,32,102,97,108,115,101,44,32,39,98,108,117,114,114,101,100,39,44,32,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,104,101,99,107,39,44,92,110,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,77,97,114,107,32,110,111,100,101,32,97,115,32,99,104,101,99,107,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,115,104,97,108,108,111,119,32,83,107,105,112,32,97,117,116,111,45,99,104,101,99,107,105,110,103,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,104,101,99,107,40,115,104,97,108,108,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,105,108,108,32,119,101,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,97,112,112,108,121,32,115,116,97,116,101,32,99,104,97,110,103,101,115,32,116,111,32,111,117,114,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,101,101,112,32,61,32,33,115,104,97,108,108,111,119,32,38,38,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,99,104,101,99,107,101,100,39,44,32,116,114,117,101,44,32,39,99,104,101,99,107,101,100,39,44,32,116,104,105,115,44,32,100,101,101,112,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,115,101,116,32,105,110,100,101,116,101,114,109,105,110,97,116,101,32,115,116,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,116,101,40,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,44,32,102,97,108,115,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,102,114,101,115,104,32,112,97,114,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,104,101,99,107,101,100,39,44,92,110,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,104,101,116,104,101,114,32,116,104,105,115,32,110,111,100,101,32,105,115,32,99,104,101,99,107,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,110,111,100,101,32,99,104,101,99,107,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,104,101,99,107,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,39,99,104,101,99,107,101,100,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,72,105,100,101,32,112,97,114,101,110,116,115,32,119,105,116,104,111,117,116,32,97,110,121,32,118,105,115,105,98,108,101,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,108,101,97,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,104,97,115,80,97,114,101,110,116,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,110,111,100,101,46,103,101,116,80,97,114,101,110,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,112,97,114,101,110,116,46,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,46,104,105,100,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,108,111,110,101,32,116,104,105,115,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,97,114,114,97,121,125,32,101,120,99,108,117,100,101,75,101,121,115,32,75,101,121,115,32,116,111,32,101,120,99,108,117,100,101,32,102,114,111,109,32,116,104,101,32,99,108,111,110,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,101,119,32,110,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,108,111,110,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,40,101,120,99,108,117,100,101,75,101,121,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,84,114,101,101,78,111,100,101,40,116,104,105,115,46,95,116,114,101,101,44,32,116,104,105,115,44,32,101,120,99,108,117,100,101,75,101,121,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,111,108,108,97,112,115,101,32,116,104,105,115,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,108,108,97,112,115,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,108,108,97,112,115,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,99,111,108,108,97,112,115,101,100,39,44,32,116,114,117,101,44,32,39,99,111,108,108,97,112,115,101,100,39,44,32,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,104,101,116,104,101,114,32,116,104,105,115,32,110,111,100,101,32,105,115,32,99,111,108,108,97,112,115,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,110,111,100,101,32,99,111,108,108,97,112,115,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,108,108,97,112,115,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,108,108,97,112,115,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,39,99,111,108,108,97,112,115,101,100,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,116,104,101,32,99,111,110,116,97,105,110,105,110,103,32,99,111,110,116,101,120,116,46,32,73,102,32,110,111,32,112,97,114,101,110,116,32,112,114,101,115,101,110,116,44,32,116,104,101,32,114,111,111,116,32,99,111,110,116,101,120,116,32,105,115,32,114,101,116,117,114,110,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,78,111,100,101,32,97,114,114,97,121,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,110,116,101,120,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,110,116,101,120,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,32,63,32,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,32,58,32,116,104,105,115,46,95,116,114,101,101,46,109,111,100,101,108,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,111,112,121,32,110,111,100,101,32,116,111,32,97,110,111,116,104,101,114,32,116,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,104,105,101,114,97,114,99,104,121,32,73,110,99,108,117,100,101,32,110,101,99,101,115,115,97,114,121,32,97,110,99,101,115,116,111,114,115,32,116,111,32,109,97,116,99,104,32,104,105,101,114,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,111,98,106,101,99,116,125,32,80,114,111,112,101,114,116,121,32,92,34,116,111,92,34,32,102,111,114,32,100,101,102,105,110,105,110,103,32,100,101,115,116,105,110,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,112,121,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,112,121,40,104,105,101,114,97,114,99,104,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,101,114,97,114,99,104,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,110,111,100,101,46,99,111,112,121,72,105,101,114,97,114,99,104,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,83,101,116,115,32,97,32,100,101,115,116,105,110,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,112,121,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,100,101,115,116,32,68,101,115,116,105,110,97,116,105,111,110,32,73,110,115,112,105,114,101,32,84,114,101,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,111,98,106,101,99,116,125,32,78,101,119,32,110,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,58,32,102,117,110,99,116,105,111,110,32,116,111,40,100,101,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,95,46,105,115,70,117,110,99,116,105,111,110,40,100,101,115,116,46,97,100,100,78,111,100,101,41,41,32,123,92,110,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,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,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,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,46,97,100,100,78,111,100,101,40,110,111,100,101,46,116,111,79,98,106,101,99,116,40,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,111,112,121,32,97,108,108,32,112,97,114,101,110,116,115,32,111,102,32,97,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,101,120,99,108,117,100,101,78,111,100,101,32,69,120,99,108,117,100,101,32,103,105,118,101,110,32,110,111,100,101,32,102,114,111,109,32,104,105,101,114,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,82,111,111,116,32,110,111,100,101,32,111,98,106,101,99,116,32,119,105,116,104,32,104,105,101,114,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,112,121,72,105,101,114,97,114,99,104,121,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,112,121,72,105,101,114,97,114,99,104,121,40,101,120,99,108,117,100,101,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,114,101,110,116,115,32,61,32,116,104,105,115,46,103,101,116,80,97,114,101,110,116,115,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,111,108,100,32,104,105,101,114,97,114,99,104,121,32,100,97,116,97,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,112,97,114,101,110,116,115,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,115,46,112,117,115,104,40,110,111,100,101,46,116,111,79,98,106,101,99,116,40,101,120,99,108,117,100,101,78,111,100,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,115,32,61,32,110,111,100,101,115,46,114,101,118,101,114,115,101,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,101,120,99,108,117,100,101,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,108,111,110,101,32,61,32,116,104,105,115,46,116,111,79,98,106,101,99,116,40,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,108,116,101,114,32,111,117,116,32,104,105,100,100,101,110,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,111,110,101,46,99,104,105,108,100,114,101,110,32,61,32,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,32,40,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,110,46,115,116,97,116,101,40,39,104,105,100,100,101,110,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,46,116,111,65,114,114,97,121,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,111,110,101,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,32,61,32,99,108,111,110,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,115,46,112,117,115,104,40,99,108,111,110,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,105,101,114,97,114,99,104,121,32,61,32,110,111,100,101,115,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,111,105,110,116,101,114,32,61,32,104,105,101,114,97,114,99,104,121,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,110,111,100,101,115,44,32,102,117,110,99,116,105,111,110,32,40,112,97,114,101,110,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,32,43,32,49,32,60,32,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,46,112,117,115,104,40,110,111,100,101,115,91,107,101,121,32,43,32,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,111,105,110,116,101,114,46,99,104,105,108,100,114,101,110,32,61,32,99,104,105,108,100,114,101,110,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,111,105,110,116,101,114,32,61,32,112,111,105,110,116,101,114,46,99,104,105,108,100,114,101,110,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,84,111,78,111,100,101,40,116,104,105,115,46,95,116,114,101,101,44,32,104,105,101,114,97,114,99,104,121,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,100,101,115,101,108,101,99,116,39,44,92,110,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,68,101,115,101,108,101,99,116,32,116,104,105,115,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,102,32,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,32,105,115,32,116,114,117,101,32,97,110,100,32,116,104,105,115,32,105,115,32,116,104,101,32,108,97,115,116,32,115,101,108,101,99,116,101,100,92,110,32,32,32,32,32,32,32,32,32,42,32,110,111,100,101,44,32,116,104,101,32,110,111,100,101,32,119,105,108,108,32,114,101,109,97,105,110,32,105,110,32,97,32,115,101,108,101,99,116,101,100,32,115,116,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,115,104,97,108,108,111,119,32,83,107,105,112,32,97,117,116,111,45,100,101,115,101,108,101,99,116,105,110,103,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,100,101,115,101,108,101,99,116,40,115,104,97,108,108,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,32,38,38,32,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,32,124,124,32,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,32,62,32,49,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,105,108,108,32,119,101,32,97,112,112,108,121,32,116,104,105,115,32,115,116,97,116,101,32,99,104,97,110,103,101,32,116,111,32,111,117,114,32,99,104,105,108,100,114,101,110,63,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,101,101,112,32,61,32,33,115,104,97,108,108,111,119,32,38,38,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,115,101,108,101,99,116,101,100,39,44,32,102,97,108,115,101,44,32,39,100,101,115,101,108,101,99,116,101,100,39,44,32,116,104,105,115,44,32,100,101,101,112,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,101,97,116,104,101,114,32,110,111,100,101,32,101,100,105,116,97,98,108,101,46,32,82,101,113,117,105,114,101,100,32,101,100,105,116,105,110,103,46,101,100,105,116,32,116,111,32,98,101,32,101,110,97,98,108,101,32,118,105,97,32,99,111,110,102,105,103,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,110,111,100,101,32,101,100,105,116,97,98,108,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,100,105,116,97,98,108,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,100,105,116,97,98,108,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,32,38,38,32,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,32,38,38,32,116,104,105,115,46,115,116,97,116,101,40,39,101,100,105,116,97,98,108,101,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,101,97,116,104,101,114,32,110,111,100,101,32,105,115,32,99,117,114,114,101,110,116,108,121,32,105,110,32,101,100,105,116,32,109,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,110,111,100,101,32,105,110,32,101,100,105,116,32,109,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,100,105,116,105,110,103,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,100,105,116,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,39,101,100,105,116,105,110,103,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,69,120,112,97,110,100,32,116,104,105,115,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,80,114,111,109,105,115,101,32,114,101,115,111,108,118,101,100,32,111,110,32,115,117,99,99,101,115,115,102,117,108,32,108,111,97,100,32,97,110,100,32,101,120,112,97,110,100,32,111,102,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,120,112,97,110,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,120,112,97,110,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,101,115,54,80,114,111,109,105,115,101,95,49,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,108,108,111,119,32,61,32,110,111,100,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,32,124,124,32,110,111,100,101,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,32,38,38,32,110,111,100,101,46,99,104,105,108,100,114,101,110,32,61,61,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,108,108,111,119,32,38,38,32,40,110,111,100,101,46,99,111,108,108,97,112,115,101,100,40,41,32,124,124,32,110,111,100,101,46,104,105,100,100,101,110,40,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,39,99,111,108,108,97,112,115,101,100,39,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,39,104,105,100,100,101,110,39,44,32,102,97,108,115,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,101,120,112,97,110,100,101,100,39,44,32,110,111,100,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,32,38,38,32,110,111,100,101,46,99,104,105,108,100,114,101,110,32,61,61,61,32,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,46,116,104,101,110,40,114,101,115,111,108,118,101,41,46,99,97,116,99,104,40,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,59,92,110,32,32,32,32,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,118,101,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,115,111,108,118,101,32,105,109,109,101,100,105,97,116,101,108,121,92,110,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,118,101,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,101,97,116,104,101,114,32,110,111,100,101,32,101,120,112,97,110,100,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,101,120,112,97,110,100,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,120,112,97,110,100,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,120,112,97,110,100,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,69,120,112,97,110,100,32,112,97,114,101,110,116,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,120,112,97,110,100,80,97,114,101,110,116,115,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,120,112,97,110,100,80,97,114,101,110,116,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,101,120,112,97,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,70,111,99,117,115,32,97,32,110,111,100,101,32,119,105,116,104,111,117,116,32,99,104,97,110,103,105,110,103,32,105,116,115,32,115,101,108,101,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,102,111,99,117,115,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,102,111,99,117,115,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,66,97,116,99,104,32,115,101,108,101,99,116,105,111,110,32,99,104,97,110,103,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,98,108,117,114,68,101,101,112,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,116,101,40,39,102,111,99,117,115,101,100,39,44,32,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,109,105,116,32,116,104,105,115,32,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,102,111,99,117,115,101,100,39,44,32,116,104,105,115,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,114,107,32,104,105,101,114,97,114,99,104,121,32,100,105,114,116,121,32,97,110,100,32,97,112,112,108,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,101,97,116,104,101,114,32,116,104,105,115,32,110,111,100,101,32,105,115,32,102,111,99,117,115,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,110,111,100,101,32,102,111,99,117,115,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,102,111,99,117,115,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,39,102,111,99,117,115,101,100,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,99,104,105,108,100,114,101,110,32,102,111,114,32,116,104,105,115,32,110,111,100,101,46,32,73,102,32,110,111,32,99,104,105,108,100,114,101,110,32,101,120,105,115,116,44,32,97,110,32,101,109,112,116,121,32,84,114,101,101,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,99,111,108,108,101,99,116,105,111,110,32,105,115,32,114,101,116,117,114,110,101,100,32,102,111,114,32,115,97,102,101,32,99,104,97,105,110,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,103,101,116,67,104,105,108,100,114,101,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,67,104,105,108,100,114,101,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,32,63,32,116,104,105,115,46,99,104,105,108,100,114,101,110,32,58,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,104,105,115,46,95,116,114,101,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,116,104,101,32,105,109,109,101,100,105,97,116,101,32,112,97,114,101,110,116,44,32,105,102,32,97,110,121,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,103,101,116,80,97,114,101,110,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,80,97,114,101,110,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,116,114,101,101,46,112,97,114,101,110,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,112,97,114,101,110,116,32,110,111,100,101,115,46,32,69,120,99,108,117,100,101,115,32,97,110,121,32,115,105,98,108,105,110,103,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,78,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,103,101,116,80,97,114,101,110,116,115,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,80,97,114,101,110,116,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,114,101,110,116,115,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,104,105,115,46,95,116,114,101,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,115,46,112,117,115,104,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,114,101,110,116,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,97,32,116,101,120,116,117,97,108,32,104,105,101,114,97,114,99,104,121,32,102,111,114,32,97,32,103,105,118,101,110,32,110,111,100,101,46,32,65,110,32,97,114,114,97,121,92,110,32,32,32,32,32,32,32,32,32,42,32,111,102,32,116,101,120,116,32,102,114,111,109,32,116,104,105,115,32,110,111,100,101,39,115,32,114,111,111,116,32,97,110,99,101,115,116,111,114,32,116,111,32,116,104,101,32,103,105,118,101,110,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,97,114,114,97,121,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,116,101,120,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,103,101,116,84,101,120,116,117,97,108,72,105,101,114,97,114,99,104,121,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,84,101,120,116,117,97,108,72,105,101,114,97,114,99,104,121,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,116,104,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,117,110,115,104,105,102,116,40,110,111,100,101,46,116,101,120,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,116,104,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,101,97,116,104,101,114,32,116,104,101,32,103,105,118,101,110,32,110,111,100,101,32,105,115,32,97,110,32,97,110,99,101,115,116,111,114,32,111,102,32,116,104,105,115,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,110,111,100,101,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,110,111,100,101,32,105,115,32,97,110,32,97,110,99,101,115,116,111,114,32,111,114,32,116,104,101,32,103,105,118,101,110,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,97,115,65,110,99,101,115,116,111,114,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,97,115,65,110,99,101,115,116,111,114,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,115,65,110,99,101,115,116,111,114,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,32,40,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,40,104,97,115,65,110,99,101,115,116,111,114,32,61,32,110,46,105,100,32,61,61,61,32,110,111,100,101,46,105,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,115,65,110,99,101,115,116,111,114,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,101,97,116,104,101,114,32,110,111,100,101,32,104,97,115,32,97,110,121,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,104,97,115,32,108,111,97,100,101,100,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,97,115,67,104,105,108,100,114,101,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,97,115,67,104,105,108,100,114,101,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,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,32,38,38,32,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,62,32,48,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,101,97,116,104,101,114,32,99,104,105,108,100,114,101,110,32,104,97,118,101,32,98,101,101,110,32,108,111,97,100,101,100,46,32,87,105,108,108,32,97,108,119,97,121,115,32,98,101,32,116,114,117,101,32,102,111,114,32,110,111,110,45,100,121,110,97,109,105,99,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,119,101,39,118,101,32,97,116,116,101,109,112,116,101,100,32,116,111,32,108,111,97,100,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,97,115,76,111,97,100,101,100,67,104,105,108,100,114,101,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,97,115,76,111,97,100,101,100,67,104,105,108,100,114,101,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,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,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,101,97,116,104,101,114,32,110,111,100,101,32,104,97,115,32,97,110,121,32,99,104,105,108,100,114,101,110,44,32,111,114,32,97,108,108,111,119,115,32,100,121,110,97,109,105,99,32,108,111,97,100,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,110,111,100,101,32,104,97,115,44,32,111,114,32,119,105,108,108,32,104,97,118,101,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,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,32,63,32,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,32,58,32,116,104,105,115,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,101,97,116,104,101,114,32,110,111,100,101,32,104,97,115,32,97,32,112,97,114,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,104,97,115,32,97,32,112,97,114,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,97,115,80,97,114,101,110,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,97,115,80,97,114,101,110,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,101,97,116,104,101,114,32,110,111,100,101,32,104,97,115,32,97,110,121,32,118,105,115,105,98,108,101,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,99,104,105,108,100,114,101,110,32,97,114,101,32,118,105,115,105,98,108,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,32,61,32,116,104,105,115,46,99,104,105,108,100,114,101,110,46,102,105,108,116,101,114,66,121,40,39,97,118,97,105,108,97,98,108,101,39,41,46,108,101,110,103,116,104,32,62,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,72,105,100,101,32,116,104,105,115,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,104,105,100,100,101,110,39,44,32,116,114,117,101,44,32,39,104,105,100,100,101,110,39,44,32,116,104,105,115,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,112,100,97,116,101,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,32,123,92,110,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,104,105,100,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,101,97,116,104,101,114,32,116,104,105,115,32,110,111,100,101,32,105,115,32,104,105,100,100,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,110,111,100,101,32,104,105,100,100,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,105,100,100,101,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,100,101,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,39,104,105,100,100,101,110,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,97,32,92,34,112,97,116,104,92,34,32,111,102,32,105,110,100,105,99,101,115,44,32,118,97,108,117,101,115,32,119,104,105,99,104,32,109,97,112,32,116,104,105,115,32,110,111,100,101,39,115,32,108,111,99,97,116,105,111,110,32,119,105,116,104,105,110,32,97,108,108,32,112,97,114,101,110,116,32,99,111,110,116,101,120,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,115,116,114,105,110,103,125,32,73,110,100,101,120,32,112,97,116,104,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,110,100,101,120,80,97,116,104,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,110,100,101,120,80,97,116,104,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,105,99,101,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,105,99,101,115,46,112,117,115,104,40,95,46,105,110,100,101,120,79,102,40,110,111,100,101,46,99,111,110,116,101,120,116,40,41,44,32,110,111,100,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,100,105,99,101,115,46,114,101,118,101,114,115,101,40,41,46,106,111,105,110,40,39,46,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,101,97,116,104,101,114,32,116,104,105,115,32,110,111,100,101,32,105,115,32,105,110,100,101,116,101,114,109,105,110,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,110,111,100,101,32,105,110,100,101,116,101,114,109,105,110,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,70,105,110,100,32,116,104,101,32,108,97,115,116,32,43,32,100,101,101,112,101,115,116,32,118,105,115,105,98,108,101,32,99,104,105,108,100,32,111,102,32,116,104,101,32,112,114,101,118,105,111,117,115,32,115,105,98,108,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,111,117,110,100,32,61,32,118,111,105,100,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,32,38,38,32,33,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,117,110,100,32,61,32,95,46,102,105,110,100,76,97,115,116,40,116,104,105,115,46,99,104,105,108,100,114,101,110,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,46,118,105,115,105,98,108,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,32,61,32,102,111,117,110,100,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,114,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,117,110,100,32,61,32,114,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,111,117,110,100,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,110,105,116,105,97,116,101,32,97,32,100,121,110,97,109,105,99,32,108,111,97,100,32,111,102,32,99,104,105,108,100,114,101,110,32,102,111,114,32,97,32,103,105,118,101,110,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,84,104,105,115,32,114,101,113,117,105,114,101,115,32,96,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,96,32,116,111,32,98,101,32,97,32,102,117,110,99,116,105,111,110,32,119,104,105,99,104,32,97,99,99,101,112,116,115,92,110,32,32,32,32,32,32,32,32,32,42,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,32,110,111,100,101,44,32,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,85,115,101,32,116,104,101,32,96,110,111,100,101,96,32,116,111,32,102,105,108,116,101,114,32,114,101,115,117,108,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,79,110,32,108,111,97,100,32,115,117,99,99,101,115,115,44,32,112,97,115,115,32,116,104,101,32,114,101,115,117,108,116,32,97,114,114,97,121,32,116,111,32,96,114,101,115,111,108,118,101,96,46,92,110,32,32,32,32,32,32,32,32,32,42,32,79,110,32,101,114,114,111,114,44,32,112,97,115,115,32,116,104,101,32,69,114,114,111,114,32,116,111,32,96,114,101,106,101,99,116,96,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,80,114,111,109,105,115,101,32,114,101,115,111,108,118,105,110,103,32,99,104,105,108,100,114,101,110,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,108,111,97,100,67,104,105,108,100,114,101,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,108,111,97,100,67,104,105,108,100,114,101,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,101,115,54,80,114,111,109,105,115,101,95,49,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,95,116,104,105,115,51,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,39,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,39,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,115,116,97,116,101,40,39,108,111,97,100,105,110,103,39,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,109,97,114,107,68,105,114,116,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,109,112,108,101,116,101,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,108,101,116,101,40,110,111,100,101,115,44,32,116,111,116,97,108,78,111,100,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,32,108,105,116,116,108,101,32,116,121,112,101,45,115,97,102,101,116,121,32,102,111,114,32,115,105,108,108,121,32,115,105,116,117,97,116,105,111,110,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,95,46,105,115,65,114,114,97,121,76,105,107,101,40,110,111,100,101,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,106,101,99,116,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,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,39,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,115,116,97,116,101,40,39,108,111,97,100,105,110,103,39,44,32,102,97,108,115,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,111,100,101,108,32,61,32,99,111,108,108,101,99,116,105,111,110,84,111,77,111,100,101,108,40,95,116,104,105,115,51,46,95,116,114,101,101,44,32,110,111,100,101,115,44,32,95,116,104,105,115,51,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,65,114,114,97,121,76,105,107,101,40,95,116,104,105,115,51,46,99,104,105,108,100,114,101,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,99,104,105,108,100,114,101,110,32,61,32,95,116,104,105,115,51,46,99,104,105,108,100,114,101,110,46,99,111,110,99,97,116,40,109,111,100,101,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,99,104,105,108,100,114,101,110,32,61,32,109,111,100,101,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,112,97,114,115,101,73,110,116,40,116,111,116,97,108,78,111,100,101,115,41,32,62,32,110,111,100,101,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,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,32,61,32,95,46,112,97,114,115,101,73,110,116,40,116,111,116,97,108,78,111,100,101,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,117,115,105,110,103,32,99,104,101,99,107,98,111,120,32,109,111,100,101,44,32,115,104,97,114,101,32,115,101,108,101,99,116,105,111,110,32,119,105,116,104,32,110,101,119,108,121,32,108,111,97,100,101,100,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,51,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,32,61,61,61,32,39,99,104,101,99,107,98,111,120,39,32,38,38,32,95,116,104,105,115,51,46,115,101,108,101,99,116,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,99,104,105,108,100,114,101,110,46,115,101,108,101,99,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,109,97,114,107,68,105,114,116,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,92,110,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,118,101,40,95,116,104,105,115,51,46,99,104,105,108,100,114,101,110,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,95,116,114,101,101,46,101,109,105,116,40,39,99,104,105,108,100,114,101,110,46,108,111,97,100,101,100,39,44,32,95,116,104,105,115,51,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,114,114,111,114,32,61,32,102,117,110,99,116,105,111,110,32,101,114,114,111,114,40,101,114,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,115,116,97,116,101,40,39,108,111,97,100,105,110,103,39,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,99,104,105,108,100,114,101,110,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,95,116,104,105,115,51,46,95,116,114,101,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,32,61,32,95,116,104,105,115,51,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,109,97,114,107,68,105,114,116,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,106,101,99,116,40,101,114,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,95,116,114,101,101,46,101,109,105,116,40,39,116,114,101,101,46,108,111,97,100,101,114,114,111,114,39,44,32,101,114,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,103,105,110,97,116,105,111,110,32,61,32,95,116,104,105,115,51,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,95,116,104,105,115,51,46,99,104,105,108,100,114,101,110,41,32,63,32,95,116,104,105,115,51,46,99,104,105,108,100,114,101,110,46,112,97,103,105,110,97,116,105,111,110,40,41,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,111,97,100,101,114,32,61,32,95,116,104,105,115,51,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,40,95,116,104,105,115,51,44,32,99,111,109,112,108,101,116,101,44,32,101,114,114,111,114,44,32,112,97,103,105,110,97,116,105,111,110,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,97,116,97,32,108,111,97,100,101,114,32,105,115,32,108,105,107,101,108,121,32,97,32,112,114,111,109,105,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,79,98,106,101,99,116,40,108,111,97,100,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,110,100,97,114,100,105,122,101,80,114,111,109,105,115,101,40,108,111,97,100,101,114,41,46,116,104,101,110,40,99,111,109,112,108,101,116,101,41,46,99,97,116,99,104,40,101,114,114,111,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,101,97,116,104,101,114,32,116,104,105,115,32,110,111,100,101,32,105,115,32,108,111,97,100,105,110,103,32,99,104,105,108,100,32,100,97,116,97,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,110,111,100,101,39,115,32,99,104,105,108,100,114,101,110,32,97,114,101,32,108,111,97,100,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,108,111,97,100,105,110,103,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,108,111,97,100,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,39,108,111,97,100,105,110,103,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,76,111,97,100,32,97,100,100,105,116,105,111,110,97,108,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,69,118,101,110,116,125,32,101,118,101,110,116,32,67,108,105,99,107,32,111,114,32,115,99,114,111,108,108,32,101,118,101,110,116,32,105,102,32,68,79,77,32,105,110,116,101,114,97,99,116,105,111,110,32,116,114,105,103,103,101,114,101,100,32,116,104,105,115,32,99,97,108,108,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,82,101,115,111,108,118,101,115,32,119,105,116,104,32,114,101,113,117,101,115,116,32,114,101,115,117,108,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,108,111,97,100,77,111,114,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,108,111,97,100,77,111,114,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,99,104,105,108,100,114,101,110,32,124,124,32,116,104,105,115,46,99,104,105,108,100,114,101,110,32,61,61,61,32,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,115,54,80,114,111,109,105,115,101,95,49,46,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,39,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,39,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,111,97,100,77,111,114,101,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,77,97,114,107,32,110,111,100,101,32,97,115,32,100,105,114,116,121,46,32,70,111,114,32,115,111,109,101,32,115,121,115,116,101,109,115,32,116,104,105,115,32,97,115,115,105,115,116,115,32,119,105,116,104,32,114,101,110,100,101,114,105,110,103,32,116,114,97,99,107,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,109,97,114,107,68,105,114,116,121,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,109,97,114,107,68,105,114,116,121,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,116,114,101,101,46,100,105,114,116,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,105,116,114,101,101,46,100,105,114,116,121,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,104,101,116,104,101,114,32,116,104,105,115,32,110,111,100,101,32,119,97,115,32,109,97,116,99,104,101,100,32,100,117,114,105,110,103,32,116,104,101,32,108,97,115,116,32,115,101,97,114,99,104,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,110,111,100,101,32,109,97,116,99,104,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,109,97,116,99,104,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,109,97,116,99,104,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,39,109,97,116,99,104,101,100,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,70,105,110,100,32,116,104,101,32,110,101,120,116,32,118,105,115,105,98,108,101,32,115,105,98,108,105,110,103,32,111,102,32,111,117,114,32,97,110,99,101,115,116,111,114,46,32,67,111,110,116,105,110,117,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,115,101,101,107,105,110,103,32,117,112,32,116,104,101,32,116,114,101,101,32,117,110,116,105,108,32,97,32,118,97,108,105,100,32,110,111,100,101,32,105,115,32,102,111,117,110,100,32,111,114,32,119,101,92,110,32,32,32,32,32,32,32,32,32,42,32,114,101,97,99,104,32,116,104,101,32,114,111,111,116,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,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,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,32,61,32,118,111,105,100,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,32,61,32,112,97,114,101,110,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,110,101,120,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,32,61,32,112,97,114,101,110,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,70,105,110,100,32,110,101,120,116,32,118,105,115,105,98,108,101,32,99,104,105,108,100,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,44,32,105,102,32,97,110,121,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,110,101,120,116,86,105,115,105,98,108,101,67,104,105,108,100,78,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,110,101,120,116,86,105,115,105,98,108,101,67,104,105,108,100,78,111,100,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,32,61,32,118,111,105,100,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,32,61,32,95,46,102,105,110,100,40,116,104,105,115,46,99,104,105,108,100,114,101,110,44,32,102,117,110,99,116,105,111,110,32,40,99,104,105,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,104,105,108,100,46,118,105,115,105,98,108,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,116,104,101,32,110,101,120,116,32,118,105,115,105,98,108,101,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,32,105,102,32,97,110,121,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,32,61,32,118,111,105,100,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,49,46,32,65,110,121,32,118,105,115,105,98,108,101,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,32,61,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,50,46,32,65,110,121,32,83,105,98,108,105,110,103,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,110,101,120,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,32,61,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,51,46,32,70,105,110,100,32,115,105,98,108,105,110,103,32,111,102,32,97,110,99,101,115,116,111,114,40,115,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,110,101,120,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,32,61,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,70,105,110,100,32,116,104,101,32,110,101,120,116,32,118,105,115,105,98,108,101,32,115,105,98,108,105,110,103,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,44,32,105,102,32,97,110,121,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,116,101,120,116,32,61,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,32,63,32,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,32,58,32,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,32,61,32,95,46,102,105,110,100,73,110,100,101,120,40,99,111,110,116,101,120,116,44,32,123,32,105,100,58,32,116,104,105,115,46,105,100,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,46,102,105,110,100,40,95,46,115,108,105,99,101,40,99,111,110,116,101,120,116,44,32,105,32,43,32,49,41,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,46,118,105,115,105,98,108,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,112,97,103,105,110,97,116,105,111,110,32,111,98,106,101,99,116,32,102,111,114,32,116,104,105,115,32,116,114,101,101,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,111,98,106,101,99,116,125,32,80,97,103,105,110,97,116,105,111,110,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,112,97,103,105,110,97,116,105,111,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,112,97,103,105,110,97,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,46,103,101,116,40,116,104,105,115,44,32,39,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,70,105,110,100,32,116,104,101,32,112,114,101,118,105,111,117,115,32,118,105,115,105,98,108,101,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,44,32,105,102,32,97,110,121,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,78,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,78,111,100,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,101,118,32,61,32,118,111,105,100,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,49,46,32,65,110,121,32,83,105,98,108,105,110,103,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,118,32,61,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,50,46,32,73,102,32,116,104,97,116,32,115,105,98,108,105,110,103,32,104,97,115,32,99,104,105,108,100,114,101,110,32,116,104,111,117,103,104,44,32,103,111,32,116,104,101,114,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,101,118,32,38,38,32,112,114,101,118,46,104,97,115,67,104,105,108,100,114,101,110,40,41,32,38,38,32,33,112,114,101,118,46,99,111,108,108,97,112,115,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,118,32,61,32,112,114,101,118,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,51,46,32,80,97,114,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,112,114,101,118,32,38,38,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,118,32,61,32,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,114,101,118,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,70,105,110,100,32,116,104,101,32,112,114,101,118,105,111,117,115,32,118,105,115,105,98,108,101,32,115,105,98,108,105,110,103,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,44,32,105,102,32,97,110,121,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,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,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,116,101,120,116,32,61,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,32,63,32,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,32,58,32,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,32,61,32,95,46,102,105,110,100,73,110,100,101,120,40,99,111,110,116,101,120,116,44,32,123,32,105,100,58,32,116,104,105,115,46,105,100,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,46,102,105,110,100,76,97,115,116,40,95,46,115,108,105,99,101,40,99,111,110,116,101,120,116,44,32,48,44,32,105,41,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,46,118,105,115,105,98,108,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,116,101,114,97,116,101,32,100,111,119,110,32,110,111,100,101,32,97,110,100,32,97,110,121,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,73,116,101,114,97,116,101,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,99,117,114,115,101,68,111,119,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,99,117,114,115,101,68,111,119,110,36,36,49,40,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,99,117,114,115,101,68,111,119,110,40,116,104,105,115,44,32,105,116,101,114,97,116,101,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,116,101,114,97,116,101,32,117,112,32,97,32,110,111,100,101,32,97,110,100,32,105,116,115,32,112,97,114,101,110,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,73,116,101,114,97,116,101,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,99,117,114,115,101,85,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,99,117,114,115,101,85,112,40,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,105,116,101,114,97,116,101,101,40,116,104,105,115,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,114,101,115,117,108,116,32,33,61,61,32,102,97,108,115,101,32,38,38,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,105,116,101,114,97,116,101,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,85,112,100,97,116,101,32,116,104,101,32,105,110,100,101,116,101,114,109,105,110,97,116,101,32,115,116,97,116,101,32,111,102,32,116,104,105,115,32,110,111,100,101,32,98,121,32,115,99,97,110,110,105,110,103,32,115,116,97,116,101,115,32,111,102,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,84,114,117,101,32,105,102,32,115,111,109,101,44,32,98,117,116,32,110,111,116,32,97,108,108,32,99,104,105,108,100,114,101,110,32,97,114,101,32,99,104,101,99,107,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,32,70,97,108,115,101,32,105,102,32,110,111,32,99,104,105,108,100,114,101,110,32,97,114,101,32,99,104,101,99,107,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,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,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,108,100,86,97,108,117,101,32,61,32,116,104,105,115,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,116,101,40,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,44,32,102,97,108,115,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,67,111,117,110,116,32,61,32,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,116,101,114,109,105,110,97,116,101,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,101,99,107,101,100,32,61,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,40,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,46,99,104,101,99,107,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,101,99,107,101,100,43,43,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,116,101,114,109,105,110,97,116,101,43,43,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,115,101,108,101,99,116,101,100,32,105,102,32,97,108,108,32,99,104,105,108,100,114,101,110,32,97,114,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,104,101,99,107,101,100,32,61,61,61,32,99,104,105,108,100,114,101,110,67,111,117,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,99,104,101,99,107,101,100,39,44,32,116,114,117,101,44,32,39,99,104,101,99,107,101,100,39,44,32,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,99,104,101,99,107,101,100,39,44,32,102,97,108,115,101,44,32,39,117,110,99,104,101,99,107,101,100,39,44,32,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,105,110,100,101,116,101,114,109,105,110,97,116,101,32,105,102,32,97,110,121,32,99,104,105,108,100,114,101,110,32,97,114,101,44,32,111,114,32,115,111,109,101,32,99,104,105,108,100,114,101,110,32,97,114,101,32,115,101,108,101,99,116,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,99,104,101,99,107,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,116,101,40,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,44,32,105,110,100,101,116,101,114,109,105,110,97,116,101,32,62,32,48,32,124,124,32,99,104,105,108,100,114,101,110,67,111,117,110,116,32,62,32,48,32,38,38,32,99,104,101,99,107,101,100,32,62,32,48,32,38,38,32,99,104,101,99,107,101,100,32,60,32,99,104,105,108,100,114,101,110,67,111,117,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,108,100,86,97,108,117,101,32,33,61,61,32,116,104,105,115,46,115,116,97,116,101,40,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,109,111,118,101,32,97,108,108,32,99,117,114,114,101,110,116,32,99,104,105,108,100,114,101,110,32,97,110,100,32,114,101,45,101,120,101,99,117,116,101,32,97,32,108,111,97,100,67,104,105,108,100,114,101,110,32,99,97,108,108,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,80,114,111,109,105,115,101,32,114,101,115,111,108,118,101,100,32,111,110,32,108,111,97,100,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,108,111,97,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,108,111,97,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,101,115,54,80,114,111,109,105,115,101,95,49,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,95,116,104,105,115,52,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,39,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,39,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,115,101,116,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,99,104,105,108,100,114,101,110,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,108,108,97,112,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,99,111,108,108,97,112,115,101,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,76,111,97,100,32,97,110,100,32,116,104,101,32,112,114,111,120,121,32,116,104,101,32,112,114,111,109,105,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,46,116,104,101,110,40,114,101,115,111,108,118,101,41,46,99,97,116,99,104,40,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,109,111,118,101,32,97,32,110,111,100,101,32,102,114,111,109,32,116,104,101,32,116,114,101,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,105,110,99,108,117,100,101,83,116,97,116,101,32,73,110,99,108,117,100,101,32,105,116,114,101,101,46,115,116,97,116,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,111,98,106,101,99,116,125,32,82,101,109,111,118,101,100,32,116,114,101,101,32,110,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,109,111,118,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,99,108,117,100,101,83,116,97,116,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,97,99,104,101,32,112,97,114,101,110,116,32,98,101,102,111,114,101,32,119,101,32,114,101,109,111,118,101,32,116,104,101,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,115,101,108,102,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,102,114,101,115,104,32,112,97,114,101,110,116,32,115,116,97,116,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,46,109,97,114,107,68,105,114,116,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,103,105,110,97,116,105,111,110,32,61,32,112,97,114,101,110,116,32,63,32,112,97,114,101,110,116,46,112,97,103,105,110,97,116,105,111,110,40,41,32,58,32,116,104,105,115,46,95,116,114,101,101,46,112,97,103,105,110,97,116,105,111,110,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,45,45,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,120,112,111,114,116,47,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,120,112,111,114,116,101,100,32,61,32,116,104,105,115,46,116,111,79,98,106,101,99,116,40,102,97,108,115,101,44,32,105,110,99,108,117,100,101,83,116,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,114,101,109,111,118,101,100,39,44,32,101,120,112,111,114,116,101,100,44,32,112,97,114,101,110,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,120,112,111,114,116,101,100,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,104,101,116,104,101,114,32,116,104,105,115,32,110,111,100,101,32,105,115,32,115,111,102,116,45,114,101,109,111,118,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,110,111,100,101,32,115,111,102,116,45,114,101,109,111,118,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,109,111,118,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,39,114,101,109,111,118,101,100,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,104,101,116,104,101,114,32,116,104,105,115,32,110,111,100,101,32,104,97,115,32,98,101,101,110,32,114,101,110,100,101,114,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,87,105,108,108,32,98,101,32,102,97,108,115,101,32,105,102,32,100,101,102,101,114,114,101,100,32,114,101,110,100,101,114,105,110,103,32,105,115,32,101,110,97,98,108,101,32,97,110,100,32,116,104,101,32,110,111,100,101,32,104,97,115,92,110,32,32,32,32,32,32,32,32,32,42,32,110,111,116,32,121,101,116,32,98,101,101,110,32,108,111,97,100,101,100,44,32,111,114,32,105,102,32,97,32,99,117,115,116,111,109,32,68,79,77,32,114,101,110,100,101,114,101,114,32,105,115,32,117,115,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,110,111,100,101,32,114,101,110,100,101,114,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,110,100,101,114,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,39,114,101,110,100,101,114,101,100,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,115,116,111,114,101,32,115,116,97,116,101,32,105,102,32,115,111,102,116,45,114,101,109,111,118,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,115,116,111,114,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,115,116,111,114,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,114,101,109,111,118,101,100,39,44,32,102,97,108,115,101,44,32,39,114,101,115,116,111,114,101,100,39,44,32,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,101,108,101,99,116,32,116,104,105,115,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,115,104,97,108,108,111,119,32,83,107,105,112,32,97,117,116,111,45,115,101,108,101,99,116,105,110,103,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,101,108,101,99,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,40,115,104,97,108,108,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,32,38,38,32,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,66,97,116,99,104,32,115,101,108,101,99,116,105,111,110,32,99,104,97,110,103,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,108,100,86,97,108,32,61,32,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,61,32,111,108,100,86,97,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,105,108,108,32,119,101,32,97,112,112,108,121,32,116,104,105,115,32,115,116,97,116,101,32,99,104,97,110,103,101,32,116,111,32,111,117,114,32,99,104,105,108,100,114,101,110,63,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,101,101,112,32,61,32,33,115,104,97,108,108,111,119,32,38,38,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,115,101,108,101,99,116,101,100,39,44,32,116,114,117,101,44,32,39,115,101,108,101,99,116,101,100,39,44,32,116,104,105,115,44,32,100,101,101,112,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,97,99,104,101,32,97,115,32,116,104,101,32,108,97,115,116,32,115,101,108,101,99,116,101,100,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,114,107,32,104,105,101,114,97,114,99,104,121,32,100,105,114,116,121,32,97,110,100,32,97,112,112,108,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,101,97,116,104,101,114,32,110,111,100,101,32,115,101,108,101,99,116,97,98,108,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,110,111,100,101,32,115,101,108,101,99,116,97,98,108,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,101,108,101,99,116,97,98,108,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,97,98,108,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,108,108,111,119,32,61,32,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,97,108,108,111,119,32,61,61,61,32,39,98,111,111,108,101,97,110,39,32,63,32,97,108,108,111,119,32,58,32,116,104,105,115,46,115,116,97,116,101,40,39,115,101,108,101,99,116,97,98,108,101,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,104,101,116,104,101,114,32,116,104,105,115,32,110,111,100,101,32,105,115,32,115,101,108,101,99,116,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,110,111,100,101,32,115,101,108,101,99,116,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,101,108,101,99,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,39,115,101,108,101,99,116,101,100,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,101,116,32,97,32,114,111,111,116,32,112,114,111,112,101,114,116,121,32,111,110,32,116,104,105,115,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,110,117,109,98,101,114,125,32,112,114,111,112,101,114,116,121,32,80,114,111,112,101,114,116,121,32,110,97,109,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,78,101,119,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,101,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,116,36,36,49,40,112,114,111,112,101,114,116,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,91,112,114,111,112,101,114,116,121,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,104,111,119,32,116,104,105,115,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,104,111,119,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,104,111,119,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,104,105,100,100,101,110,39,44,32,102,97,108,115,101,44,32,39,115,104,111,119,110,39,44,32,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,111,114,32,115,101,116,32,97,32,115,116,97,116,101,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,84,104,105,115,32,105,115,32,97,32,98,97,115,101,32,109,101,116,104,111,100,32,97,110,100,32,119,105,108,108,32,110,111,116,32,105,110,118,111,107,101,32,114,101,108,97,116,101,100,32,99,104,97,110,103,101,115,44,32,102,111,114,32,101,120,97,109,112,108,101,92,110,32,32,32,32,32,32,32,32,32,42,32,115,101,116,116,105,110,103,32,115,101,108,101,99,116,101,100,61,102,97,108,115,101,32,119,105,108,108,32,110,111,116,32,116,114,105,103,103,101,114,32,97,110,121,32,100,101,115,101,108,101,99,116,105,111,110,32,108,111,103,105,99,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,110,97,109,101,32,80,114,111,112,101,114,116,121,32,110,97,109,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,110,101,119,86,97,108,32,78,101,119,32,118,97,108,117,101,44,32,105,102,32,115,101,116,116,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,67,117,114,114,101,110,116,32,118,97,108,117,101,32,111,110,32,114,101,97,100,44,32,111,108,100,32,118,97,108,117,101,32,111,110,32,115,101,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,116,97,116,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,116,97,116,101,40,110,97,109,101,44,32,110,101,119,86,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,86,97,108,32,61,32,116,104,105,115,46,105,116,114,101,101,46,115,116,97,116,101,91,110,97,109,101,93,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,110,101,119,86,97,108,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,99,117,114,114,101,110,116,86,97,108,32,33,61,61,32,110,101,119,86,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,112,100,97,116,101,32,118,97,108,117,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,105,116,114,101,101,46,115,116,97,116,101,91,110,97,109,101,93,32,61,32,110,101,119,86,97,108,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,97,109,101,32,33,61,61,32,39,114,101,110,100,101,114,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,109,105,116,32,97,110,32,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,115,116,97,116,101,46,99,104,97,110,103,101,100,39,44,32,116,104,105,115,44,32,110,97,109,101,44,32,99,117,114,114,101,110,116,86,97,108,44,32,110,101,119,86,97,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,117,114,114,101,110,116,86,97,108,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,111,114,32,115,101,116,32,109,117,108,116,105,112,108,101,32,115,116,97,116,101,32,118,97,108,117,101,115,32,116,111,32,97,32,115,105,110,103,108,101,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,110,97,109,101,115,32,80,114,111,112,101,114,116,121,32,110,97,109,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,110,101,119,86,97,108,32,78,101,119,32,118,97,108,117,101,44,32,105,102,32,115,101,116,116,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,65,114,114,97,121,125,32,65,114,114,97,121,32,111,102,32,115,116,97,116,101,32,98,111,111,108,101,97,110,115,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,116,97,116,101,115,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,116,97,116,101,115,40,110,97,109,101,115,44,32,110,101,119,86,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,53,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,115,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,110,97,109,101,115,44,32,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,115,46,112,117,115,104,40,95,116,104,105,115,53,46,115,116,97,116,101,40,110,97,109,101,44,32,110,101,119,86,97,108,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,119,97,112,32,112,111,115,105,116,105,111,110,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,110,111,100,101,32,78,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,119,97,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,119,97,112,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,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,32,110,111,100,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,77,97,114,107,32,116,104,105,115,32,110,111,100,101,32,97,115,32,92,34,114,101,109,111,118,101,100,92,34,32,119,105,116,104,111,117,116,32,97,99,116,117,97,108,108,121,32,114,101,109,111,118,105,110,103,32,105,116,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,69,120,112,97,110,100,47,115,104,111,119,32,109,101,116,104,111,100,115,32,119,105,108,108,32,110,101,118,101,114,32,114,101,118,101,97,108,32,116,104,105,115,32,110,111,100,101,32,117,110,116,105,108,32,114,101,115,116,111,114,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,111,102,116,82,101,109,111,118,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,111,102,116,82,101,109,111,118,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,114,101,109,111,118,101,100,39,44,32,116,114,117,101,44,32,39,115,111,102,116,114,101,109,111,118,101,100,39,44,32,116,104,105,115,44,32,39,115,111,102,116,82,101,109,111,118,101,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,84,111,103,103,108,101,32,99,104,101,99,107,101,100,32,115,116,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,111,103,103,108,101,67,104,101,99,107,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,67,104,101,99,107,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,104,101,99,107,101,100,40,41,32,63,32,116,104,105,115,46,117,110,99,104,101,99,107,40,41,32,58,32,116,104,105,115,46,99,104,101,99,107,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,84,111,103,103,108,101,32,99,111,108,108,97,112,115,101,100,32,115,116,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,111,103,103,108,101,67,111,108,108,97,112,115,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,67,111,108,108,97,112,115,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,32,63,32,116,104,105,115,46,101,120,112,97,110,100,40,41,32,58,32,116,104,105,115,46,99,111,108,108,97,112,115,101,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,84,111,103,103,108,101,32,101,100,105,116,105,110,103,32,115,116,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,111,103,103,108,101,69,100,105,116,105,110,103,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,69,100,105,116,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,116,101,40,39,101,100,105,116,105,110,103,39,44,32,33,116,104,105,115,46,115,116,97,116,101,40,39,101,100,105,116,105,110,103,39,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,84,111,103,103,108,101,32,115,101,108,101,99,116,101,100,32,115,116,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,111,103,103,108,101,83,101,108,101,99,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,83,101,108,101,99,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,32,63,32,116,104,105,115,46,100,101,115,101,108,101,99,116,40,41,32,58,32,116,104,105,115,46,115,101,108,101,99,116,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,69,120,112,111,114,116,32,116,104,105,115,32,110,111,100,101,32,97,115,32,97,32,110,97,116,105,118,101,32,79,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,101,120,99,108,117,100,101,67,104,105,108,100,114,101,110,32,69,120,99,108,117,100,101,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,105,110,99,108,117,100,101,83,116,97,116,101,32,73,110,99,108,117,100,101,32,105,116,114,101,101,46,115,116,97,116,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,111,98,106,101,99,116,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,111,79,98,106,101,99,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,116,111,79,98,106,101,99,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,54,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,120,99,108,117,100,101,67,104,105,108,100,114,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,97,114,103,117,109,101,110,116,115,91,48,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,48,93,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,99,108,117,100,101,83,116,97,116,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,120,112,111,114,116,101,100,32,61,32,123,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,115,32,61,32,95,46,112,117,108,108,40,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,41,44,32,39,95,116,114,101,101,39,44,32,39,99,104,105,108,100,114,101,110,39,44,32,39,105,116,114,101,101,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,112,32,107,101,121,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,107,101,121,115,44,32,102,117,110,99,116,105,111,110,32,40,107,101,121,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,120,112,111,114,116,101,100,91,107,101,121,78,97,109,101,93,32,61,32,95,116,104,105,115,54,91,107,101,121,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,112,121,32,111,118,101,114,32,119,104,105,116,101,108,105,115,116,101,100,32,105,116,114,101,101,32,100,97,116,97,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,120,99,108,117,100,101,115,32,105,110,116,101,114,110,97,108,45,117,115,101,32,106,117,110,107,32,108,105,107,101,32,112,97,114,101,110,116,44,32,100,105,114,116,121,44,32,114,101,102,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,116,114,101,101,32,61,32,101,120,112,111,114,116,101,100,46,105,116,114,101,101,32,61,32,123,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,116,114,101,101,46,97,32,61,32,116,104,105,115,46,105,116,114,101,101,46,97,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,116,114,101,101,46,105,99,111,110,32,61,32,116,104,105,115,46,105,116,114,101,101,46,105,99,111,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,116,114,101,101,46,108,105,32,61,32,116,104,105,115,46,105,116,114,101,101,46,108,105,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,99,108,117,100,101,83,116,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,116,114,101,101,46,115,116,97,116,101,32,61,32,116,104,105,115,46,105,116,114,101,101,46,115,116,97,116,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,105,110,99,108,117,100,105,110,103,32,99,104,105,108,100,114,101,110,44,32,101,120,112,111,114,116,32,116,104,101,109,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,101,120,99,108,117,100,101,67,104,105,108,100,114,101,110,32,38,38,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,32,38,38,32,95,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,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,120,112,111,114,116,101,100,46,99,104,105,108,100,114,101,110,32,61,32,116,104,105,115,46,99,104,105,108,100,114,101,110,46,116,111,65,114,114,97,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,120,112,111,114,116,101,100,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,116,104,101,32,116,101,120,116,32,99,111,110,116,101,110,116,32,111,102,32,116,104,105,115,32,116,114,101,101,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,115,116,114,105,110,103,125,32,84,101,120,116,32,99,111,110,116,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,111,83,116,114,105,110,103,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,116,111,83,116,114,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,101,120,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,116,104,101,32,116,114,101,101,32,116,104,105,115,32,110,111,100,101,32,117,108,116,105,109,97,116,101,108,121,32,98,101,108,111,110,103,115,32,116,111,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,73,110,115,112,105,114,101,84,114,101,101,125,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,114,101,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,116,114,101,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,85,110,99,104,101,99,107,32,116,104,105,115,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,115,104,97,108,108,111,119,32,83,107,105,112,32,97,117,116,111,45,117,110,99,104,101,99,107,105,110,103,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,117,110,99,104,101,99,107,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,117,110,99,104,101,99,107,40,115,104,97,108,108,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,105,108,108,32,119,101,32,97,112,112,108,121,32,116,104,105,115,32,115,116,97,116,101,32,99,104,97,110,103,101,32,116,111,32,111,117,114,32,99,104,105,108,100,114,101,110,63,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,101,101,112,32,61,32,33,115,104,97,108,108,111,119,32,38,38,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,99,104,101,99,107,101,100,39,44,32,102,97,108,115,101,44,32,39,117,110,99,104,101,99,107,101,100,39,44,32,116,104,105,115,44,32,100,101,101,112,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,115,101,116,32,105,110,100,101,116,101,114,109,105,110,97,116,101,32,115,116,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,116,101,40,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,44,32,102,97,108,115,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,102,114,101,115,104,32,111,117,114,32,112,97,114,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,118,105,115,105,98,108,101,39,44,92,110,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,119,104,101,116,104,101,114,32,110,111,100,101,32,105,115,32,118,105,115,105,98,108,101,32,116,111,32,97,32,117,115,101,114,46,32,82,101,116,117,114,110,115,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,42,32,105,102,32,105,116,39,115,32,104,105,100,100,101,110,44,32,111,114,32,105,102,32,97,110,121,32,97,110,99,101,115,116,111,114,32,105,115,32,104,105,100,100,101,110,32,111,114,32,99,111,108,108,97,112,115,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,78,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,87,104,101,116,104,101,114,32,118,105,115,105,98,108,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,118,105,115,105,98,108,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,86,105,115,105,98,108,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,105,100,100,101,110,40,41,32,124,124,32,116,104,105,115,46,114,101,109,111,118,101,100,40,41,32,124,124,32,116,104,105,115,46,95,116,114,101,101,46,117,115,101,115,78,97,116,105,118,101,68,79,77,32,38,38,32,33,116,104,105,115,46,114,101,110,100,101,114,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,115,86,105,115,105,98,108,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,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,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,115,86,105,115,105,98,108,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,115,86,105,115,105,98,108,101,32,61,32,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,115,86,105,115,105,98,108,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,86,105,115,105,98,108,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,93,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,84,114,101,101,78,111,100,101,59,92,110,125,40,41,59,92,110,92,110,47,42,42,92,110,32,42,32,80,97,114,115,101,32,97,32,114,97,119,32,111,98,106,101,99,116,32,105,110,116,111,32,97,32,84,114,101,101,78,111,100,101,32,117,115,101,100,32,119,105,116,104,105,110,32,97,32,116,114,101,101,46,92,110,32,42,92,110,32,42,32,78,111,116,101,58,32,85,115,101,115,32,110,97,116,105,118,101,32,106,115,32,111,118,101,114,32,108,111,100,97,115,104,32,119,104,101,114,101,32,112,101,114,102,111,114,109,97,110,99,101,92,110,32,42,32,98,101,110,101,102,105,116,115,32,109,111,115,116,44,32,115,105,110,99,101,32,116,104,105,115,32,104,97,110,100,108,101,115,32,101,118,101,114,121,32,110,111,100,101,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,116,114,101,101,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,111,98,106,101,99,116,32,83,111,117,114,99,101,32,111,98,106,101,99,116,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,112,97,114,101,110,116,32,80,111,105,110,116,101,114,32,116,111,32,112,97,114,101,110,116,32,111,98,106,101,99,116,46,92,110,32,42,32,64,114,101,116,117,114,110,32,123,111,98,106,101,99,116,125,32,70,105,110,97,108,32,111,98,106,101,99,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,111,98,106,101,99,116,84,111,78,111,100,101,40,116,114,101,101,44,32,111,98,106,101,99,116,44,32,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,47,47,32,67,114,101,97,116,101,32,111,114,32,116,121,112,101,45,101,110,115,117,114,101,32,73,68,92,110,32,32,32,32,111,98,106,101,99,116,46,105,100,32,61,32,111,98,106,101,99,116,46,105,100,32,124,124,32,118,52,95,49,40,41,59,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,111,98,106,101,99,116,46,105,100,32,33,61,61,32,39,115,116,114,105,110,103,39,32,38,38,32,116,121,112,101,111,102,32,111,98,106,101,99,116,46,105,100,32,33,61,61,32,39,110,117,109,98,101,114,39,41,32,123,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,46,105,100,32,61,32,111,98,106,101,99,116,46,105,100,46,116,111,83,116,114,105,110,103,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,72,105,103,104,45,112,101,114,102,111,114,109,97,110,99,101,32,100,101,102,97,117,108,116,32,97,115,115,105,103,110,109,101,110,116,115,92,110,32,32,32,32,118,97,114,32,105,116,114,101,101,32,61,32,111,98,106,101,99,116,46,105,116,114,101,101,32,61,32,111,98,106,101,99,116,46,105,116,114,101,101,32,124,124,32,123,125,59,92,110,32,32,32,32,105,116,114,101,101,46,105,99,111,110,32,61,32,105,116,114,101,101,46,105,99,111,110,32,124,124,32,102,97,108,115,101,59,92,110,32,32,32,32,105,116,114,101,101,46,100,105,114,116,121,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,118,97,114,32,108,105,32,61,32,105,116,114,101,101,46,108,105,32,61,32,105,116,114,101,101,46,108,105,32,124,124,32,123,125,59,92,110,32,32,32,32,108,105,46,97,116,116,114,105,98,117,116,101,115,32,61,32,108,105,46,97,116,116,114,105,98,117,116,101,115,32,124,124,32,123,125,59,92,110,92,110,32,32,32,32,118,97,114,32,97,32,61,32,105,116,114,101,101,46,97,32,61,32,105,116,114,101,101,46,97,32,124,124,32,123,125,59,92,110,32,32,32,32,97,46,97,116,116,114,105,98,117,116,101,115,32,61,32,97,46,97,116,116,114,105,98,117,116,101,115,32,124,124,32,123,125,59,92,110,92,110,32,32,32,32,118,97,114,32,115,116,97,116,101,32,61,32,105,116,114,101,101,46,115,116,97,116,101,32,61,32,105,116,114,101,101,46,115,116,97,116,101,32,124,124,32,123,125,59,92,110,92,110,32,32,32,32,47,47,32,69,110,97,98,108,101,100,32,98,121,32,100,101,102,97,117,108,116,92,110,32,32,32,32,115,116,97,116,101,46,99,111,108,108,97,112,115,101,100,32,61,32,116,121,112,101,111,102,32,115,116,97,116,101,46,99,111,108,108,97,112,115,101,100,32,61,61,61,32,39,98,111,111,108,101,97,110,39,32,63,32,115,116,97,116,101,46,99,111,108,108,97,112,115,101,100,32,58,32,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,99,111,108,108,97,112,115,101,100,59,92,110,32,32,32,32,115,116,97,116,101,46,115,101,108,101,99,116,97,98,108,101,32,61,32,116,121,112,101,111,102,32,115,116,97,116,101,46,115,101,108,101,99,116,97,98,108,101,32,61,61,61,32,39,98,111,111,108,101,97,110,39,32,63,32,115,116,97,116,101,46,115,101,108,101,99,116,97,98,108,101,32,58,32,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,115,101,108,101,99,116,97,98,108,101,59,92,110,32,32,32,32,115,116,97,116,101,46,100,114,97,103,103,97,98,108,101,32,61,32,116,121,112,101,111,102,32,115,116,97,116,101,46,100,114,97,103,103,97,98,108,101,32,61,61,61,32,39,98,111,111,108,101,97,110,39,32,63,32,115,116,97,116,101,46,100,114,97,103,103,97,98,108,101,32,58,32,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,100,114,97,103,103,97,98,108,101,59,92,110,32,32,32,32,115,116,97,116,101,91,39,100,114,111,112,45,116,97,114,103,101,116,39,93,32,61,32,116,121,112,101,111,102,32,115,116,97,116,101,91,39,100,114,111,112,45,116,97,114,103,101,116,39,93,32,61,61,61,32,39,98,111,111,108,101,97,110,39,32,63,32,115,116,97,116,101,91,39,100,114,111,112,45,116,97,114,103,101,116,39,93,32,58,32,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,91,39,100,114,111,112,45,116,97,114,103,101,116,39,93,59,92,110,92,110,32,32,32,32,47,47,32,68,105,115,97,98,108,101,100,32,98,121,32,100,101,102,97,117,108,116,92,110,32,32,32,32,115,116,97,116,101,46,99,104,101,99,107,101,100,32,61,32,116,121,112,101,111,102,32,115,116,97,116,101,46,99,104,101,99,107,101,100,32,61,61,61,32,39,98,111,111,108,101,97,110,39,32,63,32,115,116,97,116,101,46,99,104,101,99,107,101,100,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,115,116,97,116,101,46,101,100,105,116,97,98,108,101,32,61,32,116,121,112,101,111,102,32,115,116,97,116,101,46,101,100,105,116,97,98,108,101,32,61,61,61,32,39,98,111,111,108,101,97,110,39,32,63,32,115,116,97,116,101,46,101,100,105,116,97,98,108,101,32,58,32,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,101,100,105,116,97,98,108,101,59,92,110,32,32,32,32,115,116,97,116,101,46,101,100,105,116,105,110,103,32,61,32,116,121,112,101,111,102,32,115,116,97,116,101,46,101,100,105,116,105,110,103,32,61,61,61,32,39,98,111,111,108,101,97,110,39,32,63,32,115,116,97,116,101,46,101,100,105,116,105,110,103,32,58,32,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,101,100,105,116,105,110,103,59,92,110,32,32,32,32,115,116,97,116,101,46,102,111,99,117,115,101,100,32,61,32,115,116,97,116,101,46,102,111,99,117,115,101,100,32,124,124,32,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,102,111,99,117,115,101,100,59,92,110,32,32,32,32,115,116,97,116,101,46,104,105,100,100,101,110,32,61,32,115,116,97,116,101,46,104,105,100,100,101,110,32,124,124,32,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,104,105,100,100,101,110,59,92,110,32,32,32,32,115,116,97,116,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,32,61,32,115,116,97,116,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,32,124,124,32,116,114,101,101,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,59,92,110,32,32,32,32,115,116,97,116,101,46,108,111,97,100,105,110,103,32,61,32,115,116,97,116,101,46,108,111,97,100,105,110,103,32,124,124,32,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,108,111,97,100,105,110,103,59,92,110,32,32,32,32,115,116,97,116,101,46,114,101,109,111,118,101,100,32,61,32,115,116,97,116,101,46,114,101,109,111,118,101,100,32,124,124,32,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,114,101,109,111,118,101,100,59,92,110,32,32,32,32,115,116,97,116,101,46,114,101,110,100,101,114,101,100,32,61,32,115,116,97,116,101,46,114,101,110,100,101,114,101,100,32,124,124,32,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,114,101,110,100,101,114,101,100,59,92,110,32,32,32,32,115,116,97,116,101,46,115,101,108,101,99,116,101,100,32,61,32,115,116,97,116,101,46,115,101,108,101,99,116,101,100,32,124,124,32,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,115,101,108,101,99,116,101,100,59,92,110,92,110,32,32,32,32,47,47,32,83,97,118,101,32,112,97,114,101,110,116,44,32,105,102,32,97,110,121,46,92,110,32,32,32,32,111,98,106,101,99,116,46,105,116,114,101,101,46,112,97,114,101,110,116,32,61,32,112,97,114,101,110,116,59,92,110,92,110,32,32,32,32,47,47,32,87,114,97,112,92,110,32,32,32,32,111,98,106,101,99,116,32,61,32,95,46,97,115,115,105,103,110,40,110,101,119,32,84,114,101,101,78,111,100,101,40,116,114,101,101,41,44,32,111,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,105,102,32,40,95,46,105,115,65,114,114,97,121,76,105,107,101,40,111,98,106,101,99,116,46,99,104,105,108,100,114,101,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,46,99,104,105,108,100,114,101,110,32,61,32,99,111,108,108,101,99,116,105,111,110,84,111,77,111,100,101,108,40,116,114,101,101,44,32,111,98,106,101,99,116,46,99,104,105,108,100,114,101,110,44,32,111,98,106,101,99,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,70,105,114,101,32,101,118,101,110,116,115,32,102,111,114,32,112,114,101,45,115,101,116,32,115,116,97,116,101,115,44,32,105,102,32,101,110,97,98,108,101,100,92,110,32,32,32,32,105,102,32,40,116,114,101,101,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,41,32,123,92,110,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,116,114,101,101,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,44,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,116,97,116,101,91,101,118,101,110,116,78,97,109,101,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,39,32,43,32,101,118,101,110,116,78,97,109,101,44,32,111,98,106,101,99,116,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,80,97,114,115,101,115,32,97,32,114,97,119,32,99,111,108,108,101,99,116,105,111,110,32,111,102,32,111,98,106,101,99,116,115,32,105,110,116,111,32,97,32,109,111,100,101,108,32,117,115,101,100,92,110,32,42,32,119,105,116,104,105,110,32,97,32,116,114,101,101,46,32,65,100,100,115,32,115,116,97,116,101,32,97,110,100,32,111,116,104,101,114,32,105,110,116,101,114,110,97,108,32,112,114,111,112,101,114,116,105,101,115,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,116,114,101,101,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,42,32,64,112,97,114,97,109,32,123,97,114,114,97,121,125,32,97,114,114,97,121,32,65,114,114,97,121,32,111,102,32,110,111,100,101,115,92,110,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,112,97,114,101,110,116,32,80,111,105,110,116,101,114,32,116,111,32,112,97,114,101,110,116,32,111,98,106,101,99,116,92,110,32,42,32,64,114,101,116,117,114,110,32,123,97,114,114,97,121,124,111,98,106,101,99,116,125,32,79,98,106,101,99,116,32,109,111,100,101,108,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,99,111,108,108,101,99,116,105,111,110,84,111,77,111,100,101,108,40,116,114,101,101,44,32,97,114,114,97,121,44,32,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,99,111,108,108,101,99,116,105,111,110,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,114,101,101,41,59,92,110,92,110,32,32,32,32,47,47,32,83,111,114,116,92,110,32,32,32,32,105,102,32,40,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,41,32,123,92,110,32,32,32,32,32,32,32,32,97,114,114,97,121,32,61,32,95,46,115,111,114,116,66,121,40,97,114,114,97,121,44,32,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,95,46,101,97,99,104,40,97,114,114,97,121,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,108,108,101,99,116,105,111,110,46,112,117,115,104,40,111,98,106,101,99,116,84,111,78,111,100,101,40,116,114,101,101,44,32,110,111,100,101,44,32,112,97,114,101,110,116,41,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,99,111,108,108,101,99,116,105,111,110,46,95,99,111,110,116,101,120,116,32,61,32,112,97,114,101,110,116,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,108,108,101,99,116,105,111,110,59,92,110,125,92,110,92,110,118,97,114,32,101,118,101,110,116,101,109,105,116,116,101,114,50,32,61,32,99,114,101,97,116,101,67,111,109,109,111,110,106,115,77,111,100,117,108,101,40,102,117,110,99,116,105,111,110,32,40,109,111,100,117,108,101,44,32,101,120,112,111,114,116,115,41,32,123,92,110,47,42,33,92,114,92,110,32,42,32,69,118,101,110,116,69,109,105,116,116,101,114,50,92,114,92,110,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,105,106,49,110,120,47,69,118,101,110,116,69,109,105,116,116,101,114,50,92,114,92,110,32,42,92,114,92,110,32,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,51,32,104,105,106,49,110,120,92,114,92,110,32,42,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,46,92,114,92,110,32,42,47,92,114,92,110,33,102,117,110,99,116,105,111,110,40,117,110,100,101,102,105,110,101,100,41,32,123,92,114,92,110,92,114,92,110,32,32,118,97,114,32,105,115,65,114,114,97,121,36,36,49,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,32,63,32,65,114,114,97,121,46,105,115,65,114,114,97,121,32,58,32,102,117,110,99,116,105,111,110,32,95,105,115,65,114,114,97,121,40,111,98,106,41,32,123,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,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,111,98,106,41,32,61,61,61,32,92,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,92,34,59,92,114,92,110,32,32,125,59,92,114,92,110,32,32,118,97,114,32,100,101,102,97,117,108,116,77,97,120,76,105,115,116,101,110,101,114,115,32,61,32,49,48,59,92,114,92,110,92,114,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,40,41,32,123,92,114,92,110,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,115,32,61,32,123,125,59,92,114,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,99,111,110,102,41,32,123,92,114,92,110,32,32,32,32,32,32,99,111,110,102,105,103,117,114,101,46,99,97,108,108,40,116,104,105,115,44,32,116,104,105,115,46,95,99,111,110,102,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,125,92,114,92,110,92,114,92,110,32,32,102,117,110,99,116,105,111,110,32,99,111,110,102,105,103,117,114,101,40,99,111,110,102,41,32,123,92,114,92,110,32,32,32,32,105,102,32,40,99,111,110,102,41,32,123,92,114,92,110,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,102,32,61,32,99,111,110,102,59,92,114,92,110,92,114,92,110,32,32,32,32,32,32,99,111,110,102,46,100,101,108,105,109,105,116,101,114,32,38,38,32,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,32,61,32,99,111,110,102,46,100,101,108,105,109,105,116,101,114,41,59,92,114,92,110,32,32,32,32,32,32,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,32,61,32,99,111,110,102,46,109,97,120,76,105,115,116,101,110,101,114,115,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,99,111,110,102,46,109,97,120,76,105,115,116,101,110,101,114,115,32,58,32,100,101,102,97,117,108,116,77,97,120,76,105,115,116,101,110,101,114,115,59,92,114,92,110,92,114,92,110,32,32,32,32,32,32,99,111,110,102,46,119,105,108,100,99,97,114,100,32,38,38,32,40,116,104,105,115,46,119,105,108,100,99,97,114,100,32,61,32,99,111,110,102,46,119,105,108,100,99,97,114,100,41,59,92,114,92,110,32,32,32,32,32,32,99,111,110,102,46,110,101,119,76,105,115,116,101,110,101,114,32,38,38,32,40,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,32,61,32,99,111,110,102,46,110,101,119,76,105,115,116,101,110,101,114,41,59,92,114,92,110,32,32,32,32,32,32,99,111,110,102,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,32,38,38,32,40,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,32,61,32,99,111,110,102,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,59,92,114,92,110,32,32,32,32,32,32,99,111,110,102,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,32,38,38,32,40,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,32,61,32,99,111,110,102,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,41,59,92,114,92,110,92,114,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,32,61,32,123,125,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,32,61,32,100,101,102,97,117,108,116,77,97,120,76,105,115,116,101,110,101,114,115,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,125,92,114,92,110,92,114,92,110,32,32,102,117,110,99,116,105,111,110,32,108,111,103,80,111,115,115,105,98,108,101,77,101,109,111,114,121,76,101,97,107,40,99,111,117,110,116,44,32,101,118,101,110,116,78,97,109,101,41,32,123,92,114,92,110,32,32,32,32,118,97,114,32,101,114,114,111,114,77,115,103,32,61,32,39,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,39,32,43,92,114,92,110,32,32,32,32,32,32,32,32,39,108,101,97,107,32,100,101,116,101,99,116,101,100,46,32,39,32,43,32,99,111,117,110,116,32,43,32,39,32,108,105,115,116,101,110,101,114,115,32,97,100,100,101,100,46,32,39,32,43,92,114,92,110,32,32,32,32,32,32,32,32,39,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,39,59,92,114,92,110,92,114,92,110,32,32,32,32,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,41,123,92,114,92,110,32,32,32,32,32,32,101,114,114,111,114,77,115,103,32,43,61,32,39,32,69,118,101,110,116,32,110,97,109,101,58,32,39,32,43,32,101,118,101,110,116,78,97,109,101,32,43,32,39,46,39,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,105,102,40,116,121,112,101,111,102,32,112,114,111,99,101,115,115,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,112,114,111,99,101,115,115,46,101,109,105,116,87,97,114,110,105,110,103,41,123,92,114,92,110,32,32,32,32,32,32,118,97,114,32,101,32,61,32,110,101,119,32,69,114,114,111,114,40,101,114,114,111,114,77,115,103,41,59,92,114,92,110,32,32,32,32,32,32,101,46,110,97,109,101,32,61,32,39,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,39,59,92,114,92,110,32,32,32,32,32,32,101,46,101,109,105,116,116,101,114,32,61,32,116,104,105,115,59,92,114,92,110,32,32,32,32,32,32,101,46,99,111,117,110,116,32,61,32,99,111,117,110,116,59,92,114,92,110,32,32,32,32,32,32,112,114,111,99,101,115,115,46,101,109,105,116,87,97,114,110,105,110,103,40,101,41,59,92,114,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,101,114,114,111,114,77,115,103,41,59,92,114,92,110,92,114,92,110,32,32,32,32,32,32,105,102,32,40,99,111,110,115,111,108,101,46,116,114,97,99,101,41,123,92,114,92,110,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,116,114,97,99,101,40,41,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,125,92,114,92,110,92,114,92,110,32,32,102,117,110,99,116,105,111,110,32,69,118,101,110,116,69,109,105,116,116,101,114,40,99,111,110,102,41,32,123,92,114,92,110,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,115,32,61,32,123,125,59,92,114,92,110,32,32,32,32,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,32,61,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,99,111,110,102,105,103,117,114,101,46,99,97,108,108,40,116,104,105,115,44,32,99,111,110,102,41,59,92,114,92,110,32,32,125,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,69,118,101,110,116,69,109,105,116,116,101,114,50,32,61,32,69,118,101,110,116,69,109,105,116,116,101,114,59,32,47,47,32,98,97,99,107,119,97,114,100,115,32,99,111,109,112,97,116,105,98,105,108,105,116,121,32,102,111,114,32,101,120,112,111,114,116,105,110,103,32,69,118,101,110,116,69,109,105,116,116,101,114,32,112,114,111,112,101,114,116,121,92,114,92,110,92,114,92,110,32,32,47,47,92,114,92,110,32,32,47,47,32,65,116,116,101,110,116,105,111,110,44,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,32,116,121,112,101,32,110,111,119,32,105,115,32,97,114,114,97,121,44,32,97,108,119,97,121,115,32,33,92,114,92,110,32,32,47,47,32,73,116,32,104,97,115,32,122,101,114,111,32,101,108,101,109,101,110,116,115,32,105,102,32,110,111,32,97,110,121,32,109,97,116,99,104,101,115,32,102,111,117,110,100,32,97,110,100,32,111,110,101,32,111,114,32,109,111,114,101,92,114,92,110,32,32,47,47,32,101,108,101,109,101,110,116,115,32,40,108,101,97,102,115,41,32,105,102,32,116,104,101,114,101,32,97,114,101,32,109,97,116,99,104,101,115,92,114,92,110,32,32,47,47,92,114,92,110,32,32,102,117,110,99,116,105,111,110,32,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,40,104,97,110,100,108,101,114,115,44,32,116,121,112,101,44,32,116,114,101,101,44,32,105,41,32,123,92,114,92,110,32,32,32,32,105,102,32,40,33,116,114,101,101,41,32,123,92,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,118,97,114,32,108,105,115,116,101,110,101,114,115,61,91,93,44,32,108,101,97,102,44,32,108,101,110,44,32,98,114,97,110,99,104,44,32,120,84,114,101,101,44,32,120,120,84,114,101,101,44,32,105,115,111,108,97,116,101,100,66,114,97,110,99,104,44,32,101,110,100,82,101,97,99,104,101,100,44,92,114,92,110,32,32,32,32,32,32,32,32,116,121,112,101,76,101,110,103,116,104,32,61,32,116,121,112,101,46,108,101,110,103,116,104,44,32,99,117,114,114,101,110,116,84,121,112,101,32,61,32,116,121,112,101,91,105,93,44,32,110,101,120,116,84,121,112,101,32,61,32,116,121,112,101,91,105,43,49,93,59,92,114,92,110,32,32,32,32,105,102,32,40,105,32,61,61,61,32,116,121,112,101,76,101,110,103,116,104,32,38,38,32,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,41,32,123,92,114,92,110,32,32,32,32,32,32,47,47,92,114,92,110,32,32,32,32,32,32,47,47,32,73,102,32,97,116,32,116,104,101,32,101,110,100,32,111,102,32,116,104,101,32,101,118,101,110,116,40,115,41,32,108,105,115,116,32,97,110,100,32,116,104,101,32,116,114,101,101,32,104,97,115,32,108,105,115,116,101,110,101,114,115,92,114,92,110,32,32,32,32,32,32,47,47,32,105,110,118,111,107,101,32,116,104,111,115,101,32,108,105,115,116,101,110,101,114,115,46,92,114,92,110,32,32,32,32,32,32,47,47,92,114,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,115,32,38,38,32,104,97,110,100,108,101,114,115,46,112,117,115,104,40,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,41,59,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,114,101,101,93,59,92,114,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,108,101,97,102,32,61,32,48,44,32,108,101,110,32,61,32,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,59,32,108,101,97,102,32,60,32,108,101,110,59,32,108,101,97,102,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,115,32,38,38,32,104,97,110,100,108,101,114,115,46,112,117,115,104,40,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,91,108,101,97,102,93,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,114,101,101,93,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,40,99,117,114,114,101,110,116,84,121,112,101,32,61,61,61,32,39,42,39,32,124,124,32,99,117,114,114,101,110,116,84,121,112,101,32,61,61,61,32,39,42,42,39,41,32,124,124,32,116,114,101,101,91,99,117,114,114,101,110,116,84,121,112,101,93,41,32,123,92,114,92,110,32,32,32,32,32,32,47,47,92,114,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,101,118,101,110,116,32,101,109,105,116,116,101,100,32,105,115,32,39,42,39,32,97,116,32,116,104,105,115,32,112,97,114,116,92,114,92,110,32,32,32,32,32,32,47,47,32,111,114,32,116,104,101,114,101,32,105,115,32,97,32,99,111,110,99,114,101,116,101,32,109,97,116,99,104,32,97,116,32,116,104,105,115,32,112,97,116,99,104,92,114,92,110,32,32,32,32,32,32,47,47,92,114,92,110,32,32,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,84,121,112,101,32,61,61,61,32,39,42,39,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,98,114,97,110,99,104,32,105,110,32,116,114,101,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,114,97,110,99,104,32,33,61,61,32,39,95,108,105,115,116,101,110,101,114,115,39,32,38,38,32,116,114,101,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,98,114,97,110,99,104,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,32,61,32,108,105,115,116,101,110,101,114,115,46,99,111,110,99,97,116,40,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,40,104,97,110,100,108,101,114,115,44,32,116,121,112,101,44,32,116,114,101,101,91,98,114,97,110,99,104,93,44,32,105,43,49,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,105,115,116,101,110,101,114,115,59,92,114,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,40,99,117,114,114,101,110,116,84,121,112,101,32,61,61,61,32,39,42,42,39,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,101,110,100,82,101,97,99,104,101,100,32,61,32,40,105,43,49,32,61,61,61,32,116,121,112,101,76,101,110,103,116,104,32,124,124,32,40,105,43,50,32,61,61,61,32,116,121,112,101,76,101,110,103,116,104,32,38,38,32,110,101,120,116,84,121,112,101,32,61,61,61,32,39,42,39,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,40,101,110,100,82,101,97,99,104,101,100,32,38,38,32,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,110,101,120,116,32,101,108,101,109,101,110,116,32,104,97,115,32,97,32,95,108,105,115,116,101,110,101,114,115,44,32,97,100,100,32,105,116,32,116,111,32,116,104,101,32,104,97,110,100,108,101,114,115,46,92,114,92,110,32,32,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,32,61,32,108,105,115,116,101,110,101,114,115,46,99,111,110,99,97,116,40,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,40,104,97,110,100,108,101,114,115,44,32,116,121,112,101,44,32,116,114,101,101,44,32,116,121,112,101,76,101,110,103,116,104,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,98,114,97,110,99,104,32,105,110,32,116,114,101,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,114,97,110,99,104,32,33,61,61,32,39,95,108,105,115,116,101,110,101,114,115,39,32,38,38,32,116,114,101,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,98,114,97,110,99,104,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,40,98,114,97,110,99,104,32,61,61,61,32,39,42,39,32,124,124,32,98,114,97,110,99,104,32,61,61,61,32,39,42,42,39,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,40,116,114,101,101,91,98,114,97,110,99,104,93,46,95,108,105,115,116,101,110,101,114,115,32,38,38,32,33,101,110,100,82,101,97,99,104,101,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,32,61,32,108,105,115,116,101,110,101,114,115,46,99,111,110,99,97,116,40,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,40,104,97,110,100,108,101,114,115,44,32,116,121,112,101,44,32,116,114,101,101,91,98,114,97,110,99,104,93,44,32,116,121,112,101,76,101,110,103,116,104,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,32,61,32,108,105,115,116,101,110,101,114,115,46,99,111,110,99,97,116,40,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,40,104,97,110,100,108,101,114,115,44,32,116,121,112,101,44,32,116,114,101,101,91,98,114,97,110,99,104,93,44,32,105,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,40,98,114,97,110,99,104,32,61,61,61,32,110,101,120,116,84,121,112,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,32,61,32,108,105,115,116,101,110,101,114,115,46,99,111,110,99,97,116,40,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,40,104,97,110,100,108,101,114,115,44,32,116,121,112,101,44,32,116,114,101,101,91,98,114,97,110,99,104,93,44,32,105,43,50,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,32,109,97,116,99,104,32,111,110,32,116,104,105,115,32,111,110,101,44,32,115,104,105,102,116,32,105,110,116,111,32,116,104,101,32,116,114,101,101,32,98,117,116,32,110,111,116,32,105,110,32,116,104,101,32,116,121,112,101,32,97,114,114,97,121,46,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,32,61,32,108,105,115,116,101,110,101,114,115,46,99,111,110,99,97,116,40,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,40,104,97,110,100,108,101,114,115,44,32,116,121,112,101,44,32,116,114,101,101,91,98,114,97,110,99,104,93,44,32,105,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,105,115,116,101,110,101,114,115,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,32,61,32,108,105,115,116,101,110,101,114,115,46,99,111,110,99,97,116,40,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,40,104,97,110,100,108,101,114,115,44,32,116,121,112,101,44,32,116,114,101,101,91,99,117,114,114,101,110,116,84,121,112,101,93,44,32,105,43,49,41,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,120,84,114,101,101,32,61,32,116,114,101,101,91,39,42,39,93,59,92,114,92,110,32,32,32,32,105,102,32,40,120,84,114,101,101,41,32,123,92,114,92,110,32,32,32,32,32,32,47,47,92,114,92,110,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,108,105,115,116,101,110,101,114,32,116,114,101,101,32,119,105,108,108,32,97,108,108,111,119,32,97,110,121,32,109,97,116,99,104,32,102,111,114,32,116,104,105,115,32,112,97,114,116,44,92,114,92,110,32,32,32,32,32,32,47,47,32,116,104,101,110,32,114,101,99,117,114,115,105,118,101,108,121,32,101,120,112,108,111,114,101,32,97,108,108,32,98,114,97,110,99,104,101,115,32,111,102,32,116,104,101,32,116,114,101,101,92,114,92,110,32,32,32,32,32,32,47,47,92,114,92,110,32,32,32,32,32,32,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,40,104,97,110,100,108,101,114,115,44,32,116,121,112,101,44,32,120,84,114,101,101,44,32,105,43,49,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,120,120,84,114,101,101,32,61,32,116,114,101,101,91,39,42,42,39,93,59,92,114,92,110,32,32,32,32,105,102,40,120,120,84,114,101,101,41,32,123,92,114,92,110,32,32,32,32,32,32,105,102,40,105,32,60,32,116,121,112,101,76,101,110,103,116,104,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,40,120,120,84,114,101,101,46,95,108,105,115,116,101,110,101,114,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,119,101,32,104,97,118,101,32,97,32,108,105,115,116,101,110,101,114,32,111,110,32,97,32,39,42,42,39,44,32,105,116,32,119,105,108,108,32,99,97,116,99,104,32,97,108,108,44,32,115,111,32,97,100,100,32,105,116,115,32,104,97,110,100,108,101,114,46,92,114,92,110,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,40,104,97,110,100,108,101,114,115,44,32,116,121,112,101,44,32,120,120,84,114,101,101,44,32,116,121,112,101,76,101,110,103,116,104,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,32,32,32,32,47,47,32,66,117,105,108,100,32,97,114,114,97,121,115,32,111,102,32,109,97,116,99,104,105,110,103,32,110,101,120,116,32,98,114,97,110,99,104,101,115,32,97,110,100,32,111,116,104,101,114,115,46,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,40,98,114,97,110,99,104,32,105,110,32,120,120,84,114,101,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,105,102,40,98,114,97,110,99,104,32,33,61,61,32,39,95,108,105,115,116,101,110,101,114,115,39,32,38,38,32,120,120,84,114,101,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,98,114,97,110,99,104,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,40,98,114,97,110,99,104,32,61,61,61,32,110,101,120,116,84,121,112,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,107,110,111,119,32,116,104,101,32,110,101,120,116,32,101,108,101,109,101,110,116,32,119,105,108,108,32,109,97,116,99,104,44,32,115,111,32,106,117,109,112,32,116,119,105,99,101,46,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,40,104,97,110,100,108,101,114,115,44,32,116,121,112,101,44,32,120,120,84,114,101,101,91,98,114,97,110,99,104,93,44,32,105,43,50,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,40,98,114,97,110,99,104,32,61,61,61,32,99,117,114,114,101,110,116,84,121,112,101,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,117,114,114,101,110,116,32,110,111,100,101,32,109,97,116,99,104,101,115,44,32,109,111,118,101,32,105,110,116,111,32,116,104,101,32,116,114,101,101,46,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,40,104,97,110,100,108,101,114,115,44,32,116,121,112,101,44,32,120,120,84,114,101,101,91,98,114,97,110,99,104,93,44,32,105,43,49,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,115,111,108,97,116,101,100,66,114,97,110,99,104,32,61,32,123,125,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,115,111,108,97,116,101,100,66,114,97,110,99,104,91,98,114,97,110,99,104,93,32,61,32,120,120,84,114,101,101,91,98,114,97,110,99,104,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,40,104,97,110,100,108,101,114,115,44,32,116,121,112,101,44,32,123,32,39,42,42,39,58,32,105,115,111,108,97,116,101,100,66,114,97,110,99,104,32,125,44,32,105,43,49,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,40,120,120,84,114,101,101,46,95,108,105,115,116,101,110,101,114,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,104,97,118,101,32,114,101,97,99,104,101,100,32,116,104,101,32,101,110,100,32,97,110,100,32,115,116,105,108,108,32,111,110,32,97,32,39,42,42,39,92,114,92,110,32,32,32,32,32,32,32,32,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,40,104,97,110,100,108,101,114,115,44,32,116,121,112,101,44,32,120,120,84,114,101,101,44,32,116,121,112,101,76,101,110,103,116,104,41,59,92,114,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,40,120,120,84,114,101,101,91,39,42,39,93,32,38,38,32,120,120,84,114,101,101,91,39,42,39,93,46,95,108,105,115,116,101,110,101,114,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,40,104,97,110,100,108,101,114,115,44,32,116,121,112,101,44,32,120,120,84,114,101,101,91,39,42,39,93,44,32,116,121,112,101,76,101,110,103,116,104,41,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,108,105,115,116,101,110,101,114,115,59,92,114,92,110,32,32,125,92,114,92,110,92,114,92,110,32,32,102,117,110,99,116,105,111,110,32,103,114,111,119,76,105,115,116,101,110,101,114,84,114,101,101,40,116,121,112,101,44,32,108,105,115,116,101,110,101,114,41,32,123,92,114,92,110,92,114,92,110,32,32,32,32,116,121,112,101,32,61,32,116,121,112,101,111,102,32,116,121,112,101,32,61,61,61,32,39,115,116,114,105,110,103,39,32,63,32,116,121,112,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,32,58,32,116,121,112,101,46,115,108,105,99,101,40,41,59,92,114,92,110,92,114,92,110,32,32,32,32,47,47,92,114,92,110,32,32,32,32,47,47,32,76,111,111,107,115,32,102,111,114,32,116,119,111,32,99,111,110,115,101,99,117,116,105,118,101,32,39,42,42,39,44,32,105,102,32,115,111,44,32,100,111,110,39,116,32,97,100,100,32,116,104,101,32,101,118,101,110,116,32,97,116,32,97,108,108,46,92,114,92,110,32,32,32,32,47,47,92,114,92,110,32,32,32,32,102,111,114,40,118,97,114,32,105,32,61,32,48,44,32,108,101,110,32,61,32,116,121,112,101,46,108,101,110,103,116,104,59,32,105,43,49,32,60,32,108,101,110,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,105,102,40,116,121,112,101,91,105,93,32,61,61,61,32,39,42,42,39,32,38,38,32,116,121,112,101,91,105,43,49,93,32,61,61,61,32,39,42,42,39,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,118,97,114,32,116,114,101,101,32,61,32,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,59,92,114,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,116,121,112,101,46,115,104,105,102,116,40,41,59,92,114,92,110,92,114,92,110,32,32,32,32,119,104,105,108,101,32,40,110,97,109,101,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,114,92,110,92,114,92,110,32,32,32,32,32,32,105,102,32,40,33,116,114,101,101,91,110,97,109,101,93,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,116,114,101,101,91,110,97,109,101,93,32,61,32,123,125,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,32,32,116,114,101,101,32,61,32,116,114,101,101,91,110,97,109,101,93,59,92,114,92,110,92,114,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,114,92,110,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,32,61,32,108,105,115,116,101,110,101,114,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,32,61,32,91,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,108,105,115,116,101,110,101,114,41,59,92,114,92,110,92,114,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,33,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,46,119,97,114,110,101,100,32,38,38,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,32,62,32,48,32,38,38,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,32,62,32,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,92,114,92,110,32,32,32,32,32,32,32,32,32,32,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,46,119,97,114,110,101,100,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,111,103,80,111,115,115,105,98,108,101,77,101,109,111,114,121,76,101,97,107,46,99,97,108,108,40,116,104,105,115,44,32,116,114,101,101,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,44,32,110,97,109,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,110,97,109,101,32,61,32,116,121,112,101,46,115,104,105,102,116,40,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,114,92,110,32,32,125,92,114,92,110,92,114,92,110,32,32,47,47,32,66,121,32,100,101,102,97,117,108,116,32,69,118,101,110,116,69,109,105,116,116,101,114,115,32,119,105,108,108,32,112,114,105,110,116,32,97,32,119,97,114,110,105,110,103,32,105,102,32,109,111,114,101,32,116,104,97,110,92,114,92,110,32,32,47,47,32,49,48,32,108,105,115,116,101,110,101,114,115,32,97,114,101,32,97,100,100,101,100,32,116,111,32,105,116,46,32,84,104,105,115,32,105,115,32,97,32,117,115,101,102,117,108,32,100,101,102,97,117,108,116,32,119,104,105,99,104,92,114,92,110,32,32,47,47,32,104,101,108,112,115,32,102,105,110,100,105,110,103,32,109,101,109,111,114,121,32,108,101,97,107,115,46,92,114,92,110,32,32,47,47,92,114,92,110,32,32,47,47,32,79,98,118,105,111,117,115,108,121,32,110,111,116,32,97,108,108,32,69,109,105,116,116,101,114,115,32,115,104,111,117,108,100,32,98,101,32,108,105,109,105,116,101,100,32,116,111,32,49,48,46,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,97,108,108,111,119,115,92,114,92,110,32,32,47,47,32,116,104,97,116,32,116,111,32,98,101,32,105,110,99,114,101,97,115,101,100,46,32,83,101,116,32,116,111,32,122,101,114,111,32,102,111,114,32,117,110,108,105,109,105,116,101,100,46,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,100,101,108,105,109,105,116,101,114,32,61,32,39,46,39,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,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,32,61,32,102,117,110,99,116,105,111,110,40,110,41,32,123,92,114,92,110,32,32,32,32,105,102,32,40,110,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,114,92,110,32,32,32,32,32,32,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,32,61,32,110,59,92,114,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,99,111,110,102,41,32,116,104,105,115,46,95,99,111,110,102,32,61,32,123,125,59,92,114,92,110,32,32,32,32,32,32,116,104,105,115,46,95,99,111,110,102,46,109,97,120,76,105,115,116,101,110,101,114,115,32,61,32,110,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,101,118,101,110,116,32,61,32,39,39,59,92,114,92,110,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,111,110,99,101,32,61,32,102,117,110,99,116,105,111,110,40,101,118,101,110,116,44,32,102,110,41,32,123,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,99,101,40,101,118,101,110,116,44,32,102,110,44,32,102,97,108,115,101,41,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,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,32,61,32,102,117,110,99,116,105,111,110,40,101,118,101,110,116,44,32,102,110,41,32,123,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,99,101,40,101,118,101,110,116,44,32,102,110,44,32,116,114,117,101,41,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,95,111,110,99,101,32,61,32,102,117,110,99,116,105,111,110,40,101,118,101,110,116,44,32,102,110,44,32,112,114,101,112,101,110,100,41,32,123,92,114,92,110,32,32,32,32,116,104,105,115,46,95,109,97,110,121,40,101,118,101,110,116,44,32,49,44,32,102,110,44,32,112,114,101,112,101,110,100,41,59,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,109,97,110,121,32,61,32,102,117,110,99,116,105,111,110,40,101,118,101,110,116,44,32,116,116,108,44,32,102,110,41,32,123,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,118,101,110,116,44,32,116,116,108,44,32,102,110,44,32,102,97,108,115,101,41,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,77,97,110,121,32,61,32,102,117,110,99,116,105,111,110,40,101,118,101,110,116,44,32,116,116,108,44,32,102,110,41,32,123,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,118,101,110,116,44,32,116,116,108,44,32,102,110,44,32,116,114,117,101,41,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,95,109,97,110,121,32,61,32,102,117,110,99,116,105,111,110,40,101,118,101,110,116,44,32,116,116,108,44,32,102,110,44,32,112,114,101,112,101,110,100,41,32,123,92,114,92,110,32,32,32,32,118,97,114,32,115,101,108,102,32,61,32,116,104,105,115,59,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,102,110,32,33,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,114,92,110,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,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,39,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,115,116,101,110,101,114,40,41,32,123,92,114,92,110,32,32,32,32,32,32,105,102,32,40,45,45,116,116,108,32,61,61,61,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,115,101,108,102,46,111,102,102,40,101,118,101,110,116,44,32,108,105,115,116,101,110,101,114,41,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,108,105,115,116,101,110,101,114,46,95,111,114,105,103,105,110,32,61,32,102,110,59,92,114,92,110,92,114,92,110,32,32,32,32,116,104,105,115,46,95,111,110,40,101,118,101,110,116,44,32,108,105,115,116,101,110,101,114,44,32,112,114,101,112,101,110,100,41,59,92,114,92,110,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,115,101,108,102,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,101,109,105,116,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,114,92,110,92,114,92,110,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,115,32,124,124,32,105,110,105,116,46,99,97,108,108,40,116,104,105,115,41,59,92,114,92,110,92,114,92,110,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,97,114,103,117,109,101,110,116,115,91,48,93,59,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,110,101,119,76,105,115,116,101,110,101,114,39,32,38,38,32,33,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,41,32,123,92,114,92,110,32,32,32,32,32,32,105,102,32,40,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,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,118,97,114,32,97,108,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,114,92,110,32,32,32,32,118,97,114,32,97,114,103,115,44,108,44,105,44,106,59,92,114,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,59,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,97,108,108,32,38,38,32,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,41,32,123,92,114,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,32,61,32,116,104,105,115,46,95,97,108,108,46,115,108,105,99,101,40,41,59,92,114,92,110,32,32,32,32,32,32,105,102,32,40,97,108,32,62,32,51,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,97,114,103,115,32,61,32,110,101,119,32,65,114,114,97,121,40,97,108,41,59,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,106,32,61,32,48,59,32,106,32,60,32,97,108,59,32,106,43,43,41,32,97,114,103,115,91,106,93,32,61,32,97,114,103,117,109,101,110,116,115,91,106,93,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,44,32,108,32,61,32,104,97,110,100,108,101,114,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,118,101,110,116,32,61,32,116,121,112,101,59,92,114,92,110,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,97,108,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,49,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,91,105,93,46,99,97,108,108,40,116,104,105,115,44,32,116,121,112,101,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,50,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,91,105,93,46,99,97,108,108,40,116,104,105,115,44,32,116,121,112,101,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,51,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,91,105,93,46,99,97,108,108,40,116,104,105,115,44,32,116,121,112,101,44,32,97,114,103,117,109,101,110,116,115,91,49,93,44,32,97,114,103,117,109,101,110,116,115,91,50,93,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,32,123,92,114,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,32,61,32,91,93,59,92,114,92,110,32,32,32,32,32,32,118,97,114,32,110,115,32,61,32,116,121,112,101,111,102,32,116,121,112,101,32,61,61,61,32,39,115,116,114,105,110,103,39,32,63,32,116,121,112,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,32,58,32,116,121,112,101,46,115,108,105,99,101,40,41,59,92,114,92,110,32,32,32,32,32,32,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,46,99,97,108,108,40,116,104,105,115,44,32,104,97,110,100,108,101,114,44,32,110,115,44,32,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,32,48,41,59,92,114,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,32,61,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,59,92,114,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,104,97,110,100,108,101,114,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,118,101,110,116,32,61,32,116,121,112,101,59,92,114,92,110,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,97,108,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,49,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,46,99,97,108,108,40,116,104,105,115,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,50,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,46,99,97,108,108,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,51,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,46,99,97,108,108,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,91,49,93,44,32,97,114,103,117,109,101,110,116,115,91,50,93,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,97,114,103,115,32,61,32,110,101,119,32,65,114,114,97,121,40,97,108,32,45,32,49,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,106,32,61,32,49,59,32,106,32,60,32,97,108,59,32,106,43,43,41,32,97,114,103,115,91,106,32,45,32,49,93,32,61,32,97,114,103,117,109,101,110,116,115,91,106,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,97,110,100,108,101,114,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,47,47,32,110,101,101,100,32,116,111,32,109,97,107,101,32,99,111,112,121,32,111,102,32,104,97,110,100,108,101,114,115,32,98,101,99,97,117,115,101,32,108,105,115,116,32,99,97,110,32,99,104,97,110,103,101,32,105,110,32,116,104,101,32,109,105,100,100,108,101,92,114,92,110,32,32,32,32,32,32,32,32,47,47,32,111,102,32,101,109,105,116,32,99,97,108,108,92,114,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,32,61,32,104,97,110,100,108,101,114,46,115,108,105,99,101,40,41,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,104,97,110,100,108,101,114,32,38,38,32,104,97,110,100,108,101,114,46,108,101,110,103,116,104,41,32,123,92,114,92,110,32,32,32,32,32,32,105,102,32,40,97,108,32,62,32,51,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,97,114,103,115,32,61,32,110,101,119,32,65,114,114,97,121,40,97,108,32,45,32,49,41,59,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,106,32,61,32,49,59,32,106,32,60,32,97,108,59,32,106,43,43,41,32,97,114,103,115,91,106,32,45,32,49,93,32,61,32,97,114,103,117,109,101,110,116,115,91,106,93,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,44,32,108,32,61,32,104,97,110,100,108,101,114,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,118,101,110,116,32,61,32,116,121,112,101,59,92,114,92,110,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,97,108,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,49,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,91,105,93,46,99,97,108,108,40,116,104,105,115,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,50,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,91,105,93,46,99,97,108,108,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,51,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,91,105,93,46,99,97,108,108,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,91,49,93,44,32,97,114,103,117,109,101,110,116,115,91,50,93,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,114,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,116,104,105,115,46,95,97,108,108,32,38,38,32,116,121,112,101,32,61,61,61,32,39,101,114,114,111,114,39,41,32,123,92,114,92,110,32,32,32,32,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,91,49,93,32,105,110,115,116,97,110,99,101,111,102,32,69,114,114,111,114,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,97,114,103,117,109,101,110,116,115,91,49,93,59,32,47,47,32,85,110,104,97,110,100,108,101,100,32,39,101,114,114,111,114,39,32,101,118,101,110,116,92,114,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,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,92,34,41,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,33,33,116,104,105,115,46,95,97,108,108,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,101,109,105,116,65,115,121,110,99,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,114,92,110,92,114,92,110,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,115,32,124,124,32,105,110,105,116,46,99,97,108,108,40,116,104,105,115,41,59,92,114,92,110,92,114,92,110,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,97,114,103,117,109,101,110,116,115,91,48,93,59,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,110,101,119,76,105,115,116,101,110,101,114,39,32,38,38,32,33,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,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,32,123,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,91,102,97,108,115,101,93,41,59,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,118,97,114,32,112,114,111,109,105,115,101,115,61,32,91,93,59,92,114,92,110,92,114,92,110,32,32,32,32,118,97,114,32,97,108,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,114,92,110,32,32,32,32,118,97,114,32,97,114,103,115,44,108,44,105,44,106,59,92,114,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,59,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,97,108,108,41,32,123,92,114,92,110,32,32,32,32,32,32,105,102,32,40,97,108,32,62,32,51,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,97,114,103,115,32,61,32,110,101,119,32,65,114,114,97,121,40,97,108,41,59,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,106,32,61,32,49,59,32,106,32,60,32,97,108,59,32,106,43,43,41,32,97,114,103,115,91,106,93,32,61,32,97,114,103,117,109,101,110,116,115,91,106,93,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,44,32,108,32,61,32,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,118,101,110,116,32,61,32,116,121,112,101,59,92,114,92,110,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,97,108,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,49,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,115,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,99,97,108,108,40,116,104,105,115,44,32,116,121,112,101,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,50,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,115,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,99,97,108,108,40,116,104,105,115,44,32,116,121,112,101,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,51,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,115,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,99,97,108,108,40,116,104,105,115,44,32,116,121,112,101,44,32,97,114,103,117,109,101,110,116,115,91,49,93,44,32,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,115,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,32,123,92,114,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,32,61,32,91,93,59,92,114,92,110,32,32,32,32,32,32,118,97,114,32,110,115,32,61,32,116,121,112,101,111,102,32,116,121,112,101,32,61,61,61,32,39,115,116,114,105,110,103,39,32,63,32,116,121,112,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,32,58,32,116,121,112,101,46,115,108,105,99,101,40,41,59,92,114,92,110,32,32,32,32,32,32,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,46,99,97,108,108,40,116,104,105,115,44,32,104,97,110,100,108,101,114,44,32,110,115,44,32,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,32,48,41,59,92,114,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,32,61,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,104,97,110,100,108,101,114,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,114,92,110,32,32,32,32,32,32,116,104,105,115,46,101,118,101,110,116,32,61,32,116,121,112,101,59,92,114,92,110,32,32,32,32,32,32,115,119,105,116,99,104,32,40,97,108,41,32,123,92,114,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,92,114,92,110,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,115,46,112,117,115,104,40,104,97,110,100,108,101,114,46,99,97,108,108,40,116,104,105,115,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,92,114,92,110,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,115,46,112,117,115,104,40,104,97,110,100,108,101,114,46,99,97,108,108,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,99,97,115,101,32,51,58,92,114,92,110,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,115,46,112,117,115,104,40,104,97,110,100,108,101,114,46,99,97,108,108,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,91,49,93,44,32,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,114,92,110,32,32,32,32,32,32,32,32,97,114,103,115,32,61,32,110,101,119,32,65,114,114,97,121,40,97,108,32,45,32,49,41,59,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,106,32,61,32,49,59,32,106,32,60,32,97,108,59,32,106,43,43,41,32,97,114,103,115,91,106,32,45,32,49,93,32,61,32,97,114,103,117,109,101,110,116,115,91,106,93,59,92,114,92,110,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,115,46,112,117,115,104,40,104,97,110,100,108,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,41,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,97,110,100,108,101,114,32,38,38,32,104,97,110,100,108,101,114,46,108,101,110,103,116,104,41,32,123,92,114,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,32,61,32,104,97,110,100,108,101,114,46,115,108,105,99,101,40,41,59,92,114,92,110,32,32,32,32,32,32,105,102,32,40,97,108,32,62,32,51,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,97,114,103,115,32,61,32,110,101,119,32,65,114,114,97,121,40,97,108,32,45,32,49,41,59,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,106,32,61,32,49,59,32,106,32,60,32,97,108,59,32,106,43,43,41,32,97,114,103,115,91,106,32,45,32,49,93,32,61,32,97,114,103,117,109,101,110,116,115,91,106,93,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,44,32,108,32,61,32,104,97,110,100,108,101,114,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,118,101,110,116,32,61,32,116,121,112,101,59,92,114,92,110,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,97,108,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,49,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,115,46,112,117,115,104,40,104,97,110,100,108,101,114,91,105,93,46,99,97,108,108,40,116,104,105,115,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,50,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,115,46,112,117,115,104,40,104,97,110,100,108,101,114,91,105,93,46,99,97,108,108,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,51,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,115,46,112,117,115,104,40,104,97,110,100,108,101,114,91,105,93,46,99,97,108,108,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,91,49,93,44,32,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,114,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,115,46,112,117,115,104,40,104,97,110,100,108,101,114,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,116,104,105,115,46,95,97,108,108,32,38,38,32,116,121,112,101,32,61,61,61,32,39,101,114,114,111,114,39,41,32,123,92,114,92,110,32,32,32,32,32,32,105,102,32,40,97,114,103,117,109,101,110,116,115,91,49,93,32,105,110,115,116,97,110,99,101,111,102,32,69,114,114,111,114,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,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,59,32,47,47,32,85,110,104,97,110,100,108,101,100,32,39,101,114,114,111,114,39,32,101,118,101,110,116,92,114,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,92,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,92,34,41,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,112,114,111,109,105,115,101,115,41,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,111,110,32,61,32,102,117,110,99,116,105,111,110,40,116,121,112,101,44,32,108,105,115,116,101,110,101,114,41,32,123,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,40,116,121,112,101,44,32,108,105,115,116,101,110,101,114,44,32,102,97,108,115,101,41,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,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,32,61,32,102,117,110,99,116,105,111,110,40,116,121,112,101,44,32,108,105,115,116,101,110,101,114,41,32,123,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,40,116,121,112,101,44,32,108,105,115,116,101,110,101,114,44,32,116,114,117,101,41,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,111,110,65,110,121,32,61,32,102,117,110,99,116,105,111,110,40,102,110,41,32,123,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,102,110,44,32,102,97,108,115,101,41,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,65,110,121,32,61,32,102,117,110,99,116,105,111,110,40,102,110,41,32,123,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,102,110,44,32,116,114,117,101,41,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,97,100,100,76,105,115,116,101,110,101,114,32,61,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,111,110,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,95,111,110,65,110,121,32,61,32,102,117,110,99,116,105,111,110,40,102,110,44,32,112,114,101,112,101,110,100,41,123,92,114,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,102,110,32,33,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,114,92,110,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,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,39,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,97,108,108,41,32,123,92,114,92,110,32,32,32,32,32,32,116,104,105,115,46,95,97,108,108,32,61,32,91,93,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,47,47,32,65,100,100,32,116,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,116,104,101,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,32,99,111,108,108,101,99,116,105,111,110,46,92,114,92,110,32,32,32,32,105,102,40,112,114,101,112,101,110,100,41,123,92,114,92,110,32,32,32,32,32,32,116,104,105,115,46,95,97,108,108,46,117,110,115,104,105,102,116,40,102,110,41,59,92,114,92,110,32,32,32,32,125,101,108,115,101,123,92,114,92,110,32,32,32,32,32,32,116,104,105,115,46,95,97,108,108,46,112,117,115,104,40,102,110,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,95,111,110,32,61,32,102,117,110,99,116,105,111,110,40,116,121,112,101,44,32,108,105,115,116,101,110,101,114,44,32,112,114,101,112,101,110,100,41,32,123,92,114,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,116,121,112,101,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,114,92,110,32,32,32,32,32,32,116,104,105,115,46,95,111,110,65,110,121,40,116,121,112,101,44,32,108,105,115,116,101,110,101,114,41,59,92,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,108,105,115,116,101,110,101,114,32,33,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,114,92,110,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,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,39,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,115,32,124,124,32,105,110,105,116,46,99,97,108,108,40,116,104,105,115,41,59,92,114,92,110,92,114,92,110,32,32,32,32,47,47,32,84,111,32,97,118,111,105,100,32,114,101,99,117,114,115,105,111,110,32,105,110,32,116,104,101,32,99,97,115,101,32,116,104,97,116,32,116,121,112,101,32,61,61,32,92,34,110,101,119,76,105,115,116,101,110,101,114,115,92,34,33,32,66,101,102,111,114,101,92,114,92,110,32,32,32,32,47,47,32,97,100,100,105,110,103,32,105,116,32,116,111,32,116,104,101,32,108,105,115,116,101,110,101,114,115,44,32,102,105,114,115,116,32,101,109,105,116,32,92,34,110,101,119,76,105,115,116,101,110,101,114,115,92,34,46,92,114,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,41,92,114,92,110,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,40,39,110,101,119,76,105,115,116,101,110,101,114,39,44,32,116,121,112,101,44,32,108,105,115,116,101,110,101,114,41,59,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,32,123,92,114,92,110,32,32,32,32,32,32,103,114,111,119,76,105,115,116,101,110,101,114,84,114,101,101,46,99,97,108,108,40,116,104,105,115,44,32,116,121,112,101,44,32,108,105,115,116,101,110,101,114,41,59,92,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,41,32,123,92,114,92,110,32,32,32,32,32,32,47,47,32,79,112,116,105,109,105,122,101,32,116,104,101,32,99,97,115,101,32,111,102,32,111,110,101,32,108,105,115,116,101,110,101,114,46,32,68,111,110,39,116,32,110,101,101,100,32,116,104,101,32,101,120,116,114,97,32,97,114,114,97,121,32,111,98,106,101,99,116,46,92,114,92,110,32,32,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,32,61,32,108,105,115,116,101,110,101,114,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,47,47,32,67,104,97,110,103,101,32,116,111,32,97,114,114,97,121,46,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,32,61,32,91,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,93,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,32,32,47,47,32,73,102,32,119,101,39,118,101,32,97,108,114,101,97,100,121,32,103,111,116,32,97,110,32,97,114,114,97,121,44,32,106,117,115,116,32,97,100,100,92,114,92,110,32,32,32,32,32,32,105,102,40,112,114,101,112,101,110,100,41,123,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,46,117,110,115,104,105,102,116,40,108,105,115,116,101,110,101,114,41,59,92,114,92,110,32,32,32,32,32,32,125,101,108,115,101,123,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,46,112,117,115,104,40,108,105,115,116,101,110,101,114,41,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,32,32,47,47,32,67,104,101,99,107,32,102,111,114,32,108,105,115,116,101,110,101,114,32,108,101,97,107,92,114,92,110,32,32,32,32,32,32,105,102,32,40,92,114,92,110,32,32,32,32,32,32,32,32,33,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,46,119,97,114,110,101,100,32,38,38,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,32,62,32,48,32,38,38,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,46,108,101,110,103,116,104,32,62,32,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,92,114,92,110,32,32,32,32,32,32,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,46,119,97,114,110,101,100,32,61,32,116,114,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,108,111,103,80,111,115,115,105,98,108,101,77,101,109,111,114,121,76,101,97,107,46,99,97,108,108,40,116,104,105,115,44,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,46,108,101,110,103,116,104,44,32,116,121,112,101,41,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,111,102,102,32,61,32,102,117,110,99,116,105,111,110,40,116,121,112,101,44,32,108,105,115,116,101,110,101,114,41,32,123,92,114,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,108,105,115,116,101,110,101,114,32,33,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,114,92,110,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,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,39,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,115,44,108,101,97,102,115,61,91,93,59,92,114,92,110,92,114,92,110,32,32,32,32,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,32,123,92,114,92,110,32,32,32,32,32,32,118,97,114,32,110,115,32,61,32,116,121,112,101,111,102,32,116,121,112,101,32,61,61,61,32,39,115,116,114,105,110,103,39,32,63,32,116,121,112,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,32,58,32,116,121,112,101,46,115,108,105,99,101,40,41,59,92,114,92,110,32,32,32,32,32,32,108,101,97,102,115,32,61,32,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,46,99,97,108,108,40,116,104,105,115,44,32,110,117,108,108,44,32,110,115,44,32,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,32,48,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,47,47,32,100,111,101,115,32,110,111,116,32,117,115,101,32,108,105,115,116,101,110,101,114,115,40,41,44,32,115,111,32,110,111,32,115,105,100,101,32,101,102,102,101,99,116,32,111,102,32,99,114,101,97,116,105,110,103,32,95,101,118,101,110,116,115,91,116,121,112,101,93,92,114,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,41,32,114,101,116,117,114,110,32,116,104,105,115,59,92,114,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,115,32,61,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,59,92,114,92,110,32,32,32,32,32,32,108,101,97,102,115,46,112,117,115,104,40,123,95,108,105,115,116,101,110,101,114,115,58,104,97,110,100,108,101,114,115,125,41,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,76,101,97,102,61,48,59,32,105,76,101,97,102,60,108,101,97,102,115,46,108,101,110,103,116,104,59,32,105,76,101,97,102,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,118,97,114,32,108,101,97,102,32,61,32,108,101,97,102,115,91,105,76,101,97,102,93,59,92,114,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,115,32,61,32,108,101,97,102,46,95,108,105,115,116,101,110,101,114,115,59,92,114,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,36,36,49,40,104,97,110,100,108,101,114,115,41,41,32,123,92,114,92,110,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,111,115,105,116,105,111,110,32,61,32,45,49,59,92,114,92,110,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,101,110,103,116,104,32,61,32,104,97,110,100,108,101,114,115,46,108,101,110,103,116,104,59,32,105,32,60,32,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,110,100,108,101,114,115,91,105,93,32,61,61,61,32,108,105,115,116,101,110,101,114,32,124,124,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,104,97,110,100,108,101,114,115,91,105,93,46,108,105,115,116,101,110,101,114,32,38,38,32,104,97,110,100,108,101,114,115,91,105,93,46,108,105,115,116,101,110,101,114,32,61,61,61,32,108,105,115,116,101,110,101,114,41,32,124,124,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,104,97,110,100,108,101,114,115,91,105,93,46,95,111,114,105,103,105,110,32,38,38,32,104,97,110,100,108,101,114,115,91,105,93,46,95,111,114,105,103,105,110,32,61,61,61,32,108,105,115,116,101,110,101,114,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,32,61,32,105,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,111,115,105,116,105,111,110,32,60,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,32,32,32,32,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,108,101,97,102,46,95,108,105,115,116,101,110,101,114,115,46,115,112,108,105,99,101,40,112,111,115,105,116,105,111,110,44,32,49,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,46,115,112,108,105,99,101,40,112,111,115,105,116,105,111,110,44,32,49,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,104,97,110,100,108,101,114,115,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,108,101,97,102,46,95,108,105,115,116,101,110,101,114,115,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,92,114,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,40,92,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,92,34,44,32,116,121,112,101,44,32,108,105,115,116,101,110,101,114,41,59,92,114,92,110,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,104,97,110,100,108,101,114,115,32,61,61,61,32,108,105,115,116,101,110,101,114,32,124,124,92,114,92,110,32,32,32,32,32,32,32,32,40,104,97,110,100,108,101,114,115,46,108,105,115,116,101,110,101,114,32,38,38,32,104,97,110,100,108,101,114,115,46,108,105,115,116,101,110,101,114,32,61,61,61,32,108,105,115,116,101,110,101,114,41,32,124,124,92,114,92,110,32,32,32,32,32,32,32,32,40,104,97,110,100,108,101,114,115,46,95,111,114,105,103,105,110,32,38,38,32,104,97,110,100,108,101,114,115,46,95,111,114,105,103,105,110,32,61,61,61,32,108,105,115,116,101,110,101,114,41,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,108,101,97,102,46,95,108,105,115,116,101,110,101,114,115,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,92,114,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,40,92,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,92,34,44,32,116,121,112,101,44,32,108,105,115,116,101,110,101,114,41,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,99,117,114,115,105,118,101,108,121,71,97,114,98,97,103,101,67,111,108,108,101,99,116,40,114,111,111,116,41,32,123,92,114,92,110,32,32,32,32,32,32,105,102,32,40,114,111,111,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,114,111,111,116,41,59,92,114,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,105,110,32,107,101,121,115,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,107,101,121,115,91,105,93,59,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,98,106,32,61,32,114,111,111,116,91,107,101,121,93,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,70,117,110,99,116,105,111,110,41,32,124,124,32,40,116,121,112,101,111,102,32,111,98,106,32,33,61,61,32,92,34,111,98,106,101,99,116,92,34,41,32,124,124,32,40,111,98,106,32,61,61,61,32,110,117,108,108,41,41,92,114,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,41,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,114,101,99,117,114,115,105,118,101,108,121,71,97,114,98,97,103,101,67,111,108,108,101,99,116,40,114,111,111,116,91,107,101,121,93,41,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,32,32,105,102,32,40,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,41,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,114,111,111,116,91,107,101,121,93,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,114,101,99,117,114,115,105,118,101,108,121,71,97,114,98,97,103,101,67,111,108,108,101,99,116,40,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,41,59,92,114,92,110,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,111,102,102,65,110,121,32,61,32,102,117,110,99,116,105,111,110,40,102,110,41,32,123,92,114,92,110,32,32,32,32,118,97,114,32,105,32,61,32,48,44,32,108,32,61,32,48,44,32,102,110,115,59,92,114,92,110,32,32,32,32,105,102,32,40,102,110,32,38,38,32,116,104,105,115,46,95,97,108,108,32,38,38,32,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,114,92,110,32,32,32,32,32,32,102,110,115,32,61,32,116,104,105,115,46,95,97,108,108,59,92,114,92,110,32,32,32,32,32,32,102,111,114,40,105,32,61,32,48,44,32,108,32,61,32,102,110,115,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,105,102,40,102,110,32,61,61,61,32,102,110,115,91,105,93,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,32,32,102,110,115,46,115,112,108,105,99,101,40,105,44,32,49,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,92,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,40,92,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,65,110,121,92,34,44,32,102,110,41,59,92,114,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,114,92,110,32,32,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,102,110,115,32,61,32,116,104,105,115,46,95,97,108,108,59,92,114,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,102,111,114,40,105,32,61,32,48,44,32,108,32,61,32,102,110,115,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,92,114,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,40,92,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,65,110,121,92,34,44,32,102,110,115,91,105,93,41,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,32,32,116,104,105,115,46,95,97,108,108,32,61,32,91,93,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,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,32,61,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,111,102,102,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,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,32,61,32,102,117,110,99,116,105,111,110,40,116,121,112,101,41,32,123,92,114,92,110,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,114,92,110,32,32,32,32,32,32,33,116,104,105,115,46,95,101,118,101,110,116,115,32,124,124,32,105,110,105,116,46,99,97,108,108,40,116,104,105,115,41,59,92,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,32,123,92,114,92,110,32,32,32,32,32,32,118,97,114,32,110,115,32,61,32,116,121,112,101,111,102,32,116,121,112,101,32,61,61,61,32,39,115,116,114,105,110,103,39,32,63,32,116,121,112,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,32,58,32,116,121,112,101,46,115,108,105,99,101,40,41,59,92,114,92,110,32,32,32,32,32,32,118,97,114,32,108,101,97,102,115,32,61,32,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,46,99,97,108,108,40,116,104,105,115,44,32,110,117,108,108,44,32,110,115,44,32,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,32,48,41,59,92,114,92,110,92,114,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,76,101,97,102,61,48,59,32,105,76,101,97,102,60,108,101,97,102,115,46,108,101,110,103,116,104,59,32,105,76,101,97,102,43,43,41,32,123,92,114,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,101,97,102,32,61,32,108,101,97,102,115,91,105,76,101,97,102,93,59,92,114,92,110,32,32,32,32,32,32,32,32,108,101,97,102,46,95,108,105,115,116,101,110,101,114,115,32,61,32,110,117,108,108,59,92,114,92,110,32,32,32,32,32,32,125,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,95,101,118,101,110,116,115,41,32,123,92,114,92,110,32,32,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,32,61,32,110,117,108,108,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,115,32,61,32,102,117,110,99,116,105,111,110,40,116,121,112,101,41,32,123,92,114,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,32,123,92,114,92,110,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,115,32,61,32,91,93,59,92,114,92,110,32,32,32,32,32,32,118,97,114,32,110,115,32,61,32,116,121,112,101,111,102,32,116,121,112,101,32,61,61,61,32,39,115,116,114,105,110,103,39,32,63,32,116,121,112,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,32,58,32,116,121,112,101,46,115,108,105,99,101,40,41,59,92,114,92,110,32,32,32,32,32,32,115,101,97,114,99,104,76,105,115,116,101,110,101,114,84,114,101,101,46,99,97,108,108,40,116,104,105,115,44,32,104,97,110,100,108,101,114,115,44,32,110,115,44,32,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,32,48,41,59,92,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,110,100,108,101,114,115,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,115,32,124,124,32,105,110,105,116,46,99,97,108,108,40,116,104,105,115,41,59,92,114,92,110,92,114,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,41,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,32,61,32,91,93,59,92,114,92,110,32,32,32,32,105,102,32,40,33,105,115,65,114,114,97,121,36,36,49,40,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,41,41,32,123,92,114,92,110,32,32,32,32,32,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,32,61,32,91,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,93,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,91,116,121,112,101,93,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,101,118,101,110,116,78,97,109,101,115,32,61,32,102,117,110,99,116,105,111,110,40,41,123,92,114,92,110,32,32,32,32,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,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,67,111,117,110,116,32,61,32,102,117,110,99,116,105,111,110,40,116,121,112,101,41,32,123,92,114,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,108,105,115,116,101,110,101,114,115,40,116,121,112,101,41,46,108,101,110,103,116,104,59,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,69,118,101,110,116,69,109,105,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,115,65,110,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,114,92,110,92,114,92,110,32,32,32,32,105,102,40,116,104,105,115,46,95,97,108,108,41,32,123,92,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,97,108,108,59,92,114,92,110,32,32,32,32,125,92,114,92,110,32,32,32,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,114,92,110,32,32,32,32,125,92,114,92,110,92,114,92,110,32,32,125,59,92,114,92,110,92,114,92,110,32,32,105,102,32,40,102,97,108,115,101,41,32,123,125,32,101,108,115,101,32,123,92,114,92,110,32,32,32,32,47,47,32,67,111,109,109,111,110,74,83,92,114,92,110,32,32,32,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,69,118,101,110,116,69,109,105,116,116,101,114,59,92,114,92,110,32,32,125,92,114,92,110,125,40,41,59,92,110,125,41,59,92,110,92,110,118,97,114,32,101,118,101,110,116,101,109,105,116,116,101,114,50,95,49,32,61,32,101,118,101,110,116,101,109,105,116,116,101,114,50,46,69,118,101,110,116,69,109,105,116,116,101,114,50,59,92,110,92,110,47,47,32,76,105,98,115,92,110,92,110,47,42,42,92,110,32,42,32,77,97,112,115,32,97,32,109,101,116,104,111,100,32,116,111,32,116,104,101,32,114,111,111,116,32,84,114,101,101,78,111,100,101,115,32,99,111,108,108,101,99,116,105,111,110,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,73,110,115,112,105,114,101,84,114,101,101,125,32,116,114,101,101,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,109,101,116,104,111,100,32,77,101,116,104,111,100,32,110,97,109,101,46,92,110,32,42,32,64,112,97,114,97,109,32,123,97,114,103,117,109,101,110,116,115,125,32,97,114,103,115,32,80,114,111,120,105,101,100,32,97,114,103,117,109,101,110,116,115,46,92,110,32,42,32,64,114,101,116,117,114,110,32,123,109,105,120,101,100,125,32,80,114,111,120,105,101,100,32,114,101,116,117,114,110,32,118,97,108,117,101,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,95,109,97,112,40,116,114,101,101,44,32,109,101,116,104,111,100,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,101,101,46,109,111,100,101,108,91,109,101,116,104,111,100,93,46,97,112,112,108,121,40,116,114,101,101,46,109,111,100,101,108,44,32,97,114,103,115,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,101,112,114,101,115,101,110,116,115,32,97,32,115,105,110,103,101,32,116,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,42,92,110,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,42,32,64,114,101,116,117,114,110,32,123,73,110,115,112,105,114,101,84,114,101,101,125,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,42,47,92,110,92,110,118,97,114,32,73,110,115,112,105,114,101,84,114,101,101,32,61,32,102,117,110,99,116,105,111,110,32,40,95,69,118,101,110,116,69,109,105,116,116,101,114,41,32,123,92,110,32,32,32,32,105,110,104,101,114,105,116,115,40,73,110,115,112,105,114,101,84,114,101,101,44,32,95,69,118,101,110,116,69,109,105,116,116,101,114,41,59,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,73,110,115,112,105,114,101,84,114,101,101,40,111,112,116,115,41,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,73,110,115,112,105,114,101,84,114,101,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,112,111,115,115,105,98,108,101,67,111,110,115,116,114,117,99,116,111,114,82,101,116,117,114,110,40,116,104,105,115,44,32,40,73,110,115,112,105,114,101,84,114,101,101,46,95,95,112,114,111,116,111,95,95,32,124,124,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,73,110,115,112,105,114,101,84,114,101,101,41,41,46,99,97,108,108,40,116,104,105,115,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,114,101,101,32,61,32,95,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,105,116,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,59,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,95,109,117,116,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,98,97,116,99,104,105,110,103,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,105,100,32,61,32,118,52,95,49,40,41,59,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,105,110,105,116,105,97,108,105,122,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,105,115,68,121,110,97,109,105,99,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,111,112,116,115,32,61,32,111,112,116,115,59,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,65,115,115,105,103,110,32,100,101,102,97,117,108,116,115,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,99,111,110,102,105,103,32,61,32,95,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,32,111,112,116,115,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,58,32,91,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,104,101,99,107,98,111,120,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,77,101,110,117,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,97,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,100,105,116,97,98,108,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,100,105,116,105,110,103,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,100,105,116,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,101,116,83,116,97,116,101,79,110,82,101,115,116,111,114,101,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,103,105,110,97,116,105,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,109,105,116,58,32,45,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,110,100,101,114,101,114,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,101,114,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,80,114,111,99,101,115,115,111,114,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,108,108,111,119,58,32,95,46,110,111,111,112,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,117,116,111,68,101,115,101,108,101,99,116,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,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,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,58,32,39,100,101,102,97,117,108,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,117,108,116,105,112,108,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,113,117,105,114,101,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,104,111,119,67,104,101,99,107,98,111,120,101,115,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,111,114,116,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,99,104,101,99,107,98,111,120,32,109,111,100,101,44,32,119,101,32,109,117,115,116,32,102,111,114,99,101,32,97,117,116,111,45,115,101,108,101,99,116,105,110,103,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,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,32,61,61,61,32,39,99,104,101,99,107,98,111,120,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,32,99,104,101,99,107,98,111,120,32,109,111,100,101,44,32,99,104,101,99,107,101,100,61,115,101,108,101,99,116,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,111,110,40,39,110,111,100,101,46,99,104,101,99,107,101,100,39,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,110,111,100,101,46,115,101,108,101,99,116,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,101,108,101,99,116,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,111,110,40,39,110,111,100,101,46,115,101,108,101,99,116,101,100,39,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,110,111,100,101,46,99,104,101,99,107,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,99,104,101,99,107,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,111,110,40,39,110,111,100,101,46,117,110,99,104,101,99,107,101,100,39,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,115,101,108,101,99,116,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,100,101,115,101,108,101,99,116,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,111,110,40,39,110,111,100,101,46,100,101,115,101,108,101,99,116,101,100,39,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,99,104,101,99,107,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,117,110,99,104,101,99,107,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,97,117,116,111,45,115,101,108,101,99,116,105,110,103,32,99,104,105,108,100,114,101,110,44,32,119,101,32,109,117,115,116,32,102,111,114,99,101,32,109,117,108,116,105,115,101,108,101,99,116,92,110,32,32,32,32,32,32,32,32,105,102,32,40,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,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,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,68,101,115,101,108,101,99,116,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,84,114,101,97,116,32,101,100,105,116,97,98,108,101,32,97,115,32,102,117,108,108,32,101,100,105,116,32,109,111,100,101,92,110,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,115,46,101,100,105,116,97,98,108,101,32,38,38,32,33,111,112,116,115,46,101,100,105,116,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,83,117,112,112,111,114,116,32,115,105,109,112,108,101,32,99,111,110,102,105,103,32,102,111,114,32,115,101,97,114,99,104,92,110,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,70,117,110,99,116,105,111,110,40,111,112,116,115,46,115,101,97,114,99,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,99,111,110,102,105,103,46,115,101,97,114,99,104,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,101,114,58,32,111,112,116,115,46,115,101,97,114,99,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,80,114,111,99,101,115,115,111,114,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,105,116,32,116,104,101,32,100,101,102,97,117,108,116,32,115,116,97,116,101,32,102,111,114,32,110,111,100,101,115,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,108,97,112,115,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,100,105,116,97,98,108,101,58,32,95,46,103,101,116,40,116,114,101,101,44,32,39,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,39,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,100,105,116,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,114,97,103,103,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,100,114,111,112,45,116,97,114,103,101,116,39,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,99,117,115,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,105,100,100,101,110,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,116,101,114,109,105,110,97,116,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,111,97,100,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,110,100,101,114,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,67,97,99,104,101,32,115,111,109,101,32,99,111,110,102,105,103,115,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,32,61,32,95,46,105,115,65,114,114,97,121,40,116,114,101,101,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,41,32,38,38,32,116,114,101,101,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,32,62,32,48,59,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,105,115,68,121,110,97,109,105,99,32,61,32,95,46,105,115,70,117,110,99,116,105,111,110,40,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,79,118,101,114,114,105,100,101,32,101,109,105,116,116,101,114,32,115,111,32,119,101,32,99,97,110,32,98,101,116,116,101,114,32,99,111,110,116,114,111,108,32,102,108,111,119,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,109,105,116,32,61,32,116,114,101,101,46,101,109,105,116,59,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,101,109,105,116,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,114,101,101,46,105,115,69,118,101,110,116,77,117,116,101,100,40,101,118,101,110,116,78,97,109,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,117,99,107,45,116,121,112,101,32,102,111,114,32,97,32,68,79,77,32,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,70,117,110,99,116,105,111,110,40,95,46,103,101,116,40,97,114,103,117,109,101,110,116,115,44,32,39,91,49,93,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,39,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,32,61,32,97,114,103,117,109,101,110,116,115,91,49,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,109,105,116,46,97,112,112,108,121,40,116,114,101,101,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,105,116,32,116,104,101,32,109,111,100,101,108,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,109,111,100,101,108,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,114,101,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,76,111,97,100,32,105,110,105,116,105,97,108,32,117,115,101,114,32,100,97,116,97,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,108,111,97,100,40,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,105,110,105,116,105,97,108,105,122,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,100,100,115,32,97,32,110,101,119,32,110,111,100,101,46,32,73,102,32,97,32,115,111,114,116,92,110,32,32,32,32,32,42,32,109,101,116,104,111,100,32,105,115,32,99,111,110,102,105,103,117,114,101,100,44,32,116,104,101,32,110,111,100,101,32,119,105,108,108,32,98,101,32,97,100,100,101,100,92,110,32,32,32,32,32,42,32,105,110,32,116,104,101,32,97,112,112,114,111,112,114,105,97,116,101,32,111,114,100,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,110,111,100,101,32,78,111,100,101,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,47,92,110,92,110,92,110,32,32,32,32,99,114,101,97,116,101,67,108,97,115,115,40,73,110,115,112,105,114,101,84,114,101,101,44,32,91,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,97,100,100,78,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,97,100,100,78,111,100,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,97,100,100,78,111,100,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,65,100,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,97,114,114,97,121,125,32,110,111,100,101,115,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,100,100,101,100,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,97,100,100,78,111,100,101,115,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,97,100,100,78,111,100,101,115,40,110,111,100,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,98,97,116,99,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,78,111,100,101,115,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,46,101,97,99,104,40,110,111,100,101,115,44,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,78,111,100,101,115,46,112,117,115,104,40,95,116,104,105,115,50,46,97,100,100,78,111,100,101,40,110,111,100,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,101,110,100,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,78,111,100,101,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,108,101,97,115,101,32,112,101,110,100,105,110,103,32,100,97,116,97,32,99,104,97,110,103,101,115,32,116,111,32,97,110,121,32,108,105,115,116,101,110,101,114,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,87,105,108,108,32,115,107,105,112,32,114,101,110,100,101,114,105,110,103,32,97,115,32,108,111,110,103,32,97,115,32,97,110,121,32,99,97,108,108,115,92,110,32,32,32,32,32,32,32,32,32,42,32,116,111,32,96,98,97,116,99,104,96,32,104,97,118,101,32,121,101,116,32,116,111,32,98,101,32,114,101,115,111,108,118,101,100,44,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,97,112,112,108,121,67,104,97,110,103,101,115,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,97,112,112,108,121,67,104,97,110,103,101,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,78,101,118,101,114,32,114,101,114,101,110,100,101,114,32,119,104,101,110,32,117,110,116,105,108,32,98,97,116,99,104,32,99,111,109,112,108,101,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,98,97,116,99,104,105,110,103,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,101,109,105,116,40,39,99,104,97,110,103,101,115,46,97,112,112,108,105,101,100,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,97,118,97,105,108,97,98,108,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,97,118,97,105,108,97,98,108,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,97,118,97,105,108,97,98,108,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,97,118,97,105,108,97,98,108,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,66,97,116,99,104,32,109,117,108,116,105,112,108,101,32,99,104,97,110,103,101,115,32,102,111,114,32,108,105,115,116,101,110,101,114,115,32,40,105,46,101,46,32,68,79,77,41,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,98,97,116,99,104,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,98,97,116,99,104,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,98,97,116,99,104,105,110,103,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,98,97,116,99,104,105,110,103,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,98,97,116,99,104,105,110,103,43,43,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,66,108,117,114,32,99,104,105,108,100,114,101,110,32,105,110,32,116,104,105,115,32,99,111,108,108,101,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,98,108,117,114,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,98,108,117,114,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,66,108,117,114,32,40,100,101,101,112,108,121,41,32,97,108,108,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,98,108,117,114,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,98,108,117,114,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,98,108,117,114,68,101,101,112,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,111,109,112,97,114,101,115,32,97,110,121,32,110,117,109,98,101,114,32,111,102,32,84,114,101,101,78,111,100,101,32,111,98,106,101,99,116,115,32,97,110,100,32,114,101,116,117,114,110,115,92,110,32,32,32,32,32,32,32,32,32,42,32,116,104,101,32,109,105,110,105,109,117,109,32,97,110,100,32,109,97,120,105,109,117,109,32,40,115,116,97,114,116,105,110,103,47,101,110,100,105,110,103,41,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,97,114,114,97,121,125,32,65,114,114,97,121,32,119,105,116,104,32,116,119,111,32,84,114,101,101,78,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,98,111,117,110,100,105,110,103,78,111,100,101,115,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,98,111,117,110,100,105,110,103,78,111,100,101,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,116,104,77,97,112,32,61,32,95,46,116,114,97,110,115,102,111,114,109,40,97,114,103,117,109,101,110,116,115,44,32,102,117,110,99,116,105,111,110,32,40,109,97,112,36,36,49,44,32,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,112,36,36,49,91,110,111,100,101,46,105,110,100,101,120,80,97,116,104,40,41,46,114,101,112,108,97,99,101,40,47,92,92,46,47,103,44,32,39,39,41,93,32,61,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,32,123,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,36,115,111,114,116,66,121,32,61,32,95,46,115,111,114,116,66,121,40,79,98,106,101,99,116,46,107,101,121,115,40,112,97,116,104,77,97,112,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,36,115,111,114,116,66,121,50,32,61,32,116,111,65,114,114,97,121,40,95,36,115,111,114,116,66,121,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,101,97,100,32,61,32,95,36,115,111,114,116,66,121,50,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,105,108,32,61,32,95,36,115,111,114,116,66,121,50,46,115,108,105,99,101,40,49,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,95,46,103,101,116,40,112,97,116,104,77,97,112,44,32,104,101,97,100,41,44,32,95,46,103,101,116,40,112,97,116,104,77,97,112,44,32,116,97,105,108,41,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,104,101,99,107,32,105,102,32,116,104,101,32,116,114,101,101,32,119,105,108,108,32,97,117,116,111,45,100,101,115,101,108,101,99,116,32,99,117,114,114,101,110,116,108,121,32,115,101,108,101,99,116,101,100,32,110,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,42,32,119,104,101,110,32,97,32,110,101,119,32,115,101,108,101,99,116,105,111,110,32,105,115,32,109,97,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,73,102,32,116,114,101,101,32,119,105,108,108,32,97,117,116,111,45,100,101,115,101,108,101,99,116,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,97,110,65,117,116,111,68,101,115,101,108,101,99,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,97,110,65,117,116,111,68,101,115,101,108,101,99,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,32,38,38,32,33,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,99,104,101,99,107,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,104,101,99,107,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,104,101,99,107,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,99,104,101,99,107,101,100,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,108,101,97,110,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,108,101,97,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,99,108,101,97,110,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,108,101,97,114,32,110,111,100,101,115,32,109,97,116,99,104,101,100,32,98,121,32,112,114,101,118,105,111,117,115,32,115,101,97,114,99,104,44,32,114,101,115,116,111,114,101,32,97,108,108,32,110,111,100,101,115,32,97,110,100,32,99,111,108,108,97,112,115,101,32,112,97,114,101,110,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,125,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,108,101,97,114,83,101,97,114,99,104,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,83,101,97,114,99,104,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,109,97,116,99,104,101,100,40,41,46,115,116,97,116,101,40,39,109,97,116,99,104,101,100,39,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,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,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,108,111,110,101,115,32,40,100,101,101,112,108,121,41,32,116,104,101,32,97,114,114,97,121,32,111,102,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,78,111,116,101,58,32,67,108,111,110,105,110,103,32,119,105,108,108,32,42,110,111,116,42,32,99,108,111,110,101,32,116,104,101,32,99,111,110,116,101,120,116,32,112,111,105,110,116,101,114,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,99,108,111,110,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,108,111,110,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,99,108,111,110,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,111,108,108,97,112,115,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,108,108,97,112,115,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,108,108,97,112,115,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,99,111,108,108,97,112,115,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,99,111,108,108,97,112,115,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,108,108,97,112,115,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,108,108,97,112,115,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,99,111,108,108,97,112,115,101,100,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,111,108,108,97,112,115,101,32,40,100,101,101,112,108,121,41,32,97,108,108,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,108,108,97,112,115,101,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,108,108,97,112,115,101,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,99,111,108,108,97,112,115,101,68,101,101,112,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,111,110,99,97,116,32,109,117,108,116,105,112,108,101,32,84,114,101,101,78,111,100,101,115,32,97,114,114,97,121,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,115,125,32,110,111,100,101,115,32,65,114,114,97,121,32,111,102,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,82,101,115,117,108,116,105,110,103,32,110,111,100,101,32,97,114,114,97,121,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,110,99,97,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,110,99,97,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,99,111,110,99,97,116,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,111,112,121,32,110,111,100,101,115,32,116,111,32,97,110,111,116,104,101,114,32,116,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,104,105,101,114,97,114,99,104,121,32,73,110,99,108,117,100,101,32,110,101,99,101,115,115,97,114,121,32,97,110,99,101,115,116,111,114,115,32,116,111,32,109,97,116,99,104,32,104,105,101,114,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,111,98,106,101,99,116,125,32,77,101,116,104,111,100,115,32,116,111,32,112,101,114,102,111,114,109,32,97,99,116,105,111,110,32,111,110,32,99,111,112,105,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,111,112,121,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,111,112,121,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,99,111,112,121,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,84,114,101,101,78,111,100,101,32,119,105,116,104,111,117,116,32,97,100,100,105,110,103,32,105,116,46,32,73,102,32,116,104,101,32,111,98,106,32,105,115,32,97,108,114,101,97,100,121,32,97,32,84,114,101,101,78,111,100,101,32,105,116,39,115,32,114,101,116,117,114,110,101,100,32,119,105,116,104,111,117,116,32,109,111,100,105,102,105,99,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,111,98,106,32,83,111,117,114,99,101,32,110,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,99,114,101,97,116,101,78,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,78,111,100,101,40,111,98,106,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,73,110,115,112,105,114,101,84,114,101,101,46,105,115,84,114,101,101,78,111,100,101,40,111,98,106,41,32,63,32,111,98,106,32,58,32,111,98,106,101,99,116,84,111,78,111,100,101,40,116,104,105,115,44,32,111,98,106,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,116,117,114,110,32,100,101,101,112,101,115,116,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,100,101,101,112,101,115,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,100,101,101,112,101,115,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,100,101,101,112,101,115,116,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,68,101,115,101,108,101,99,116,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,100,101,115,101,108,101,99,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,100,101,115,101,108,101,99,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,100,101,115,101,108,101,99,116,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,68,101,115,101,108,101,99,116,32,40,100,101,101,112,108,121,41,32,97,108,108,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,100,101,115,101,108,101,99,116,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,100,101,115,101,108,101,99,116,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,100,101,115,101,108,101,99,116,68,101,101,112,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,68,105,115,97,98,108,101,32,97,117,116,111,45,100,101,115,101,108,101,99,116,105,111,110,32,111,102,32,99,117,114,114,101,110,116,108,121,32,115,101,108,101,99,116,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,125,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,100,105,115,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,100,105,115,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,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,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,116,101,114,97,116,101,32,101,97,99,104,32,84,114,101,101,78,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,73,116,101,114,97,116,101,101,32,105,110,118,111,107,101,32,102,111,114,32,101,97,99,104,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,97,99,104,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,97,99,104,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,101,97,99,104,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,104,101,99,107,32,105,102,32,101,118,101,114,121,32,110,111,100,101,32,112,97,115,115,101,115,32,116,104,101,32,103,105,118,101,110,32,116,101,115,116,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,116,101,115,116,101,114,32,84,101,115,116,32,101,97,99,104,32,110,111,100,101,32,105,110,32,116,104,105,115,32,99,111,108,108,101,99,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,101,118,101,114,121,32,110,111,100,101,32,112,97,115,115,101,115,32,116,104,101,32,116,101,115,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,118,101,114,121,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,118,101,114,121,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,101,118,101,114,121,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,101,100,105,116,97,98,108,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,100,105,116,97,98,108,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,100,105,116,97,98,108,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,101,100,105,116,97,98,108,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,110,111,100,101,115,32,105,110,32,101,100,105,116,105,110,103,32,109,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,100,105,116,105,110,103,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,100,105,116,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,101,100,105,116,105,110,103,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,69,110,97,98,108,101,32,97,117,116,111,45,100,101,115,101,108,101,99,116,105,111,110,32,111,102,32,99,117,114,114,101,110,116,108,121,32,115,101,108,101,99,116,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,125,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,110,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,110,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,108,101,97,115,101,32,116,104,101,32,99,117,114,114,101,110,116,32,98,97,116,99,104,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,118,111,105,100,125,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,110,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,110,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,98,97,116,99,104,105,110,103,45,45,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,98,97,116,99,104,105,110,103,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,69,120,112,97,110,100,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,120,112,97,110,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,120,112,97,110,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,101,120,112,97,110,100,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,69,120,112,97,110,100,32,40,100,101,101,112,108,121,41,32,97,108,108,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,80,114,111,109,105,115,101,32,114,101,115,111,108,118,101,100,32,119,104,101,110,32,97,108,108,32,99,104,105,108,100,114,101,110,32,104,97,118,101,32,108,111,97,100,101,100,32,97,110,100,32,101,120,112,97,110,100,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,120,112,97,110,100,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,120,112,97,110,100,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,101,120,112,97,110,100,68,101,101,112,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,101,120,112,97,110,100,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,120,112,97,110,100,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,120,112,97,110,100,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,101,120,112,97,110,100,101,100,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,108,111,110,101,32,97,32,104,105,101,114,97,114,99,104,121,32,111,102,32,97,108,108,32,110,111,100,101,115,32,109,97,116,99,104,105,110,103,32,97,32,112,114,101,100,105,99,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,66,101,99,97,117,115,101,32,105,116,32,102,105,108,116,101,114,115,32,100,101,101,112,108,121,44,32,119,101,32,109,117,115,116,32,99,108,111,110,101,32,97,108,108,32,110,111,100,101,115,32,115,111,32,116,104,97,116,32,119,101,92,110,32,32,32,32,32,32,32,32,32,42,32,100,111,110,39,116,32,97,102,102,101,99,116,32,116,104,101,32,97,99,116,117,97,108,32,110,111,100,101,32,97,114,114,97,121,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,83,116,97,116,101,32,102,108,97,103,32,111,114,32,99,117,115,116,111,109,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,101,120,116,114,97,99,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,120,116,114,97,99,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,101,120,116,114,97,99,116,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,70,105,108,116,101,114,32,97,108,108,32,110,111,100,101,115,32,109,97,116,99,104,105,110,103,32,116,104,101,32,103,105,118,101,110,32,112,114,101,100,105,99,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,84,101,115,116,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,102,105,108,116,101,114,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,102,105,108,116,101,114,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,70,105,108,116,101,114,32,97,108,108,32,110,111,100,101,115,32,109,97,116,99,104,105,110,103,32,116,104,101,32,103,105,118,101,110,32,112,114,101,100,105,99,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,83,116,97,116,101,32,102,108,97,103,32,111,114,32,99,117,115,116,111,109,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,102,105,108,116,101,114,66,121,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,66,121,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,102,105,108,116,101,114,66,121,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,70,108,97,116,116,101,110,32,97,110,100,32,103,101,116,32,111,110,108,121,32,110,111,100,101,40,115,41,32,109,97,116,99,104,105,110,103,32,116,104,101,32,101,120,112,101,99,116,101,100,32,115,116,97,116,101,32,111,114,32,112,114,101,100,105,99,97,116,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,83,116,97,116,101,32,112,114,111,112,101,114,116,121,32,111,114,32,99,117,115,116,111,109,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,70,108,97,116,32,97,114,114,97,121,32,111,102,32,109,97,116,99,104,105,110,103,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,102,108,97,116,116,101,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,102,108,97,116,116,101,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,102,108,97,116,116,101,110,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,102,111,99,117,115,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,102,111,99,117,115,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,102,111,99,117,115,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,102,111,99,117,115,101,100,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,116,101,114,97,116,101,32,101,97,99,104,32,84,114,101,101,78,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,73,116,101,114,97,116,101,101,32,105,110,118,111,107,101,32,102,111,114,32,101,97,99,104,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,102,111,114,69,97,99,104,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,101,97,99,104,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,97,32,115,112,101,99,105,102,105,99,32,110,111,100,101,32,98,121,32,105,116,115,32,105,110,100,101,120,44,32,111,114,32,117,110,100,101,102,105,110,101,100,32,105,102,32,105,116,32,100,111,101,115,110,39,116,32,101,120,105,115,116,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,105,110,116,125,32,105,110,100,101,120,32,78,117,109,101,114,105,99,32,105,110,100,101,120,32,111,102,32,114,101,113,117,101,115,116,101,100,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,32,85,110,100,101,102,105,110,101,100,32,105,102,32,105,110,118,97,108,105,100,32,105,110,100,101,120,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,103,101,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,103,101,116,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,103,101,116,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,104,105,100,100,101,110,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,105,100,100,101,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,100,101,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,104,105,100,100,101,110,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,72,105,100,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,105,100,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,104,105,100,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,72,105,100,101,32,40,100,101,101,112,108,121,41,32,97,108,108,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,104,105,100,101,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,104,105,100,101,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,104,105,100,101,68,101,101,112,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,105,110,100,101,116,101,114,109,105,110,97,116,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,103,105,118,101,110,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,110,111,100,101,32,82,111,111,116,32,116,114,101,101,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,105,110,116,125,32,73,110,100,101,120,32,111,102,32,116,104,101,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,110,100,101,120,79,102,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,110,100,101,120,79,102,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,105,110,100,101,120,79,102,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,110,115,101,114,116,32,97,32,110,101,119,32,110,111,100,101,32,97,116,32,116,104,101,32,103,105,118,101,110,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,105,110,116,101,103,101,114,125,32,105,110,100,101,120,32,73,110,100,101,120,32,97,116,32,119,104,105,99,104,32,116,111,32,105,110,115,101,114,116,32,116,104,101,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,111,98,106,101,99,116,32,82,97,119,32,110,111,100,101,32,111,98,106,101,99,116,32,111,114,32,84,114,101,101,78,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,110,115,101,114,116,65,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,110,115,101,114,116,65,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,105,110,115,101,114,116,65,116,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,110,118,111,107,101,32,109,101,116,104,111,100,40,115,41,32,111,110,32,101,97,99,104,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,97,114,114,97,121,125,32,109,101,116,104,111,100,115,32,77,101,116,104,111,100,32,110,97,109,101,40,115,41,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,110,118,111,107,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,105,110,118,111,107,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,110,118,111,107,101,32,109,101,116,104,111,100,40,115,41,32,100,101,101,112,108,121,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,97,114,114,97,121,125,32,109,101,116,104,111,100,115,32,77,101,116,104,111,100,32,110,97,109,101,40,115,41,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,110,118,111,107,101,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,105,110,118,111,107,101,68,101,101,112,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,104,101,99,107,32,105,102,32,97,110,32,101,118,101,110,116,32,105,115,32,99,117,114,114,101,110,116,108,121,32,109,117,116,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,101,118,101,110,116,78,97,109,101,32,69,118,101,110,116,32,110,97,109,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,73,102,32,101,118,101,110,116,32,105,115,32,109,117,116,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,115,69,118,101,110,116,77,117,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,115,69,118,101,110,116,77,117,116,101,100,40,101,118,101,110,116,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,66,111,111,108,101,97,110,40,116,104,105,115,46,109,117,116,101,100,40,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,109,117,116,101,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,46,105,110,99,108,117,100,101,115,40,116,104,105,115,46,109,117,116,101,100,40,41,44,32,101,118,101,110,116,78,97,109,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,104,101,99,107,32,105,102,32,97,110,32,111,98,106,101,99,116,32,105,115,32,97,32,84,114,101,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,111,98,106,101,99,116,32,79,98,106,101,99,116,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,73,102,32,111,98,106,101,99,116,32,105,115,32,97,32,84,114,101,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,115,84,114,101,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,115,84,114,101,101,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,105,110,115,116,97,110,99,101,111,102,32,73,110,115,112,105,114,101,84,114,101,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,104,101,99,107,32,105,102,32,97,110,32,111,98,106,101,99,116,32,105,115,32,97,32,84,114,101,101,78,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,111,98,106,32,79,98,106,101,99,116,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,73,102,32,111,98,106,101,99,116,32,105,115,32,97,32,84,114,101,101,78,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,106,111,105,110,39,44,92,110,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,74,111,105,110,32,110,111,100,101,115,32,105,110,116,111,32,97,32,114,101,115,117,108,116,105,110,103,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,101,112,97,114,97,116,111,114,32,83,101,112,97,114,97,116,111,114,44,32,100,101,102,97,117,108,116,115,32,116,111,32,97,32,99,111,109,109,97,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,115,116,114,105,110,103,125,32,83,116,114,105,110,103,115,32,102,114,111,109,32,114,111,111,116,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,106,111,105,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,106,111,105,110,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,116,104,101,32,109,111,115,116,32,114,101,99,101,110,116,108,121,32,115,101,108,101,99,116,101,100,32,110,111,100,101,44,32,105,102,32,97,110,121,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,76,97,115,116,32,115,101,108,101,99,116,101,100,32,110,111,100,101,44,32,111,114,32,117,110,100,101,102,105,110,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,76,111,97,100,32,100,97,116,97,46,32,65,99,99,101,112,116,115,32,97,110,32,97,114,114,97,121,44,32,102,117,110,99,116,105,111,110,44,32,111,114,32,112,114,111,109,105,115,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,97,114,114,97,121,124,102,117,110,99,116,105,111,110,124,80,114,111,109,105,115,101,125,32,108,111,97,100,101,114,32,65,114,114,97,121,32,111,102,32,110,111,100,101,115,44,32,102,117,110,99,116,105,111,110,44,32,111,114,32,112,114,111,109,105,115,101,32,114,101,115,111,108,118,105,110,103,32,97,110,32,97,114,114,97,121,32,111,102,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,80,114,111,109,105,115,101,32,114,101,115,111,108,118,101,100,32,117,112,111,110,32,115,117,99,99,101,115,115,102,117,108,32,108,111,97,100,44,32,114,101,106,101,99,116,101,100,32,111,110,32,101,114,114,111,114,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,116,114,101,101,46,108,111,97,100,40,36,46,103,101,116,74,83,79,78,40,39,110,111,100,101,115,46,106,115,111,110,39,41,41,59,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,108,111,97,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,108,111,97,100,40,108,111,97,100,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,109,105,115,101,32,61,32,110,101,119,32,101,115,54,80,114,111,109,105,115,101,95,49,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,109,112,108,101,116,101,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,112,108,101,116,101,40,110,111,100,101,115,44,32,116,111,116,97,108,78,111,100,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,32,108,105,116,116,108,101,32,116,121,112,101,45,115,97,102,101,116,121,32,102,111,114,32,115,105,108,108,121,32,115,105,116,117,97,116,105,111,110,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,95,46,105,115,65,114,114,97,121,76,105,107,101,40,110,111,100,101,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,106,101,99,116,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,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,39,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,101,108,97,121,32,101,118,101,110,116,32,102,111,114,32,115,121,110,99,104,114,111,110,111,117,115,32,108,111,97,100,101,114,46,32,79,116,104,101,114,119,105,115,101,32,105,116,32,102,105,114,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,98,101,102,111,114,101,32,116,104,101,32,117,115,101,114,32,104,97,115,32,97,32,99,104,97,110,99,101,32,116,111,32,108,105,115,116,101,110,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,95,116,104,105,115,51,46,105,110,105,116,105,97,108,105,122,101,100,32,38,38,32,95,46,105,115,65,114,114,97,121,76,105,107,101,40,110,111,100,101,115,41,41,32,123,92,110,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,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,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,95,116,104,105,115,51,46,101,109,105,116,40,39,100,97,116,97,46,108,111,97,100,101,100,39,44,32,110,111,100,101,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,101,109,105,116,40,39,100,97,116,97,46,108,111,97,100,101,100,39,44,32,110,111,100,101,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,80,97,114,115,101,32,110,101,119,108,121,45,108,111,97,100,101,100,32,110,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,77,111,100,101,108,32,61,32,99,111,108,108,101,99,116,105,111,110,84,111,77,111,100,101,108,40,95,116,104,105,115,51,44,32,110,111,100,101,115,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,110,99,97,116,32,111,110,108,121,32,105,102,32,108,111,97,100,105,110,103,32,105,115,32,100,101,102,101,114,114,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,51,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,109,111,100,101,108,32,61,32,95,116,104,105,115,51,46,109,111,100,101,108,46,99,111,110,99,97,116,40,110,101,119,77,111,100,101,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,109,111,100,101,108,32,61,32,110,101,119,77,111,100,101,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,112,97,103,105,110,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,109,111,100,101,108,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,32,61,32,110,111,100,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,112,97,114,115,101,73,110,116,40,116,111,116,97,108,78,111,100,101,115,41,32,62,32,110,111,100,101,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,109,111,100,101,108,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,32,61,32,95,46,112,97,114,115,101,73,110,116,40,116,111,116,97,108,78,111,100,101,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,112,97,103,105,110,97,116,105,111,110,32,116,111,116,97,108,115,32,105,102,32,114,101,115,111,108,118,101,114,32,102,97,105,108,101,100,32,116,111,32,112,114,111,118,105,100,101,32,116,104,101,109,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,111,116,97,108,78,111,100,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,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,32,40,110,111,100,101,41,32,123,92,110,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,105,102,32,40,110,111,100,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,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,32,61,32,110,111,100,101,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,92,110,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,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,51,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,32,38,38,32,33,95,116,104,105,115,51,46,115,101,108,101,99,116,101,100,40,41,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,105,116,32,61,32,102,117,110,99,116,105,111,110,32,105,110,105,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,101,109,105,116,40,39,109,111,100,101,108,46,108,111,97,100,101,100,39,44,32,95,116,104,105,115,51,46,109,111,100,101,108,41,59,92,110,92,110,32,32,32,32,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,118,101,40,95,116,104,105,115,51,46,109,111,100,101,108,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,101,108,97,121,32,101,118,101,110,116,32,102,111,114,32,115,121,110,99,104,114,111,110,111,117,115,32,108,111,97,100,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,95,116,104,105,115,51,46,105,110,105,116,105,97,108,105,122,101,100,32,38,38,32,95,46,105,115,65,114,114,97,121,40,110,111,100,101,115,41,41,32,123,92,110,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,101,116,84,105,109,101,111,117,116,40,105,110,105,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,105,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,97,116,97,32,103,105,118,101,110,32,97,108,114,101,97,100,121,32,97,115,32,97,110,32,97,114,114,97,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,65,114,114,97,121,76,105,107,101,40,108,111,97,100,101,114,41,41,32,123,92,110,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,101,40,108,111,97,100,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,97,116,97,32,108,111,97,100,101,114,32,114,101,113,117,105,114,101,115,32,97,32,99,97,108,108,101,114,47,99,97,108,108,98,97,99,107,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,95,46,105,115,70,117,110,99,116,105,111,110,40,108,111,97,100,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,112,32,61,32,108,111,97,100,101,114,40,110,117,108,108,44,32,99,111,109,112,108,101,116,101,44,32,114,101,106,101,99,116,44,32,95,116,104,105,115,51,46,112,97,103,105,110,97,116,105,111,110,40,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,76,111,97,100,101,114,32,114,101,116,117,114,110,101,100,32,105,116,115,32,111,119,110,32,111,98,106,101,99,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,114,101,115,112,41,32,123,92,110,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,108,111,97,100,101,114,32,61,32,114,101,115,112,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,97,116,97,32,108,111,97,100,101,114,32,105,115,32,108,105,107,101,108,121,32,97,32,112,114,111,109,105,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,79,98,106,101,99,116,40,108,111,97,100,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,110,100,97,114,100,105,122,101,80,114,111,109,105,115,101,40,108,111,97,100,101,114,41,46,116,104,101,110,40,99,111,109,112,108,101,116,101,41,46,99,97,116,99,104,40,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,114,114,111,114,40,110,101,119,32,69,114,114,111,114,40,39,73,110,118,97,108,105,100,32,100,97,116,97,32,108,111,97,100,101,114,46,39,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,112,121,32,116,111,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,32,40,101,114,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,101,109,105,116,40,39,100,97,116,97,46,108,111,97,100,101,114,114,111,114,39,44,32,101,114,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,97,99,104,101,32,116,111,32,97,108,108,111,119,32,97,99,99,101,115,115,32,97,102,116,101,114,32,116,114,101,101,32,105,110,115,116,97,110,116,105,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,108,111,97,100,101,114,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,58,32,112,114,111,109,105,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,114,111,109,105,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,110,111,100,101,115,32,99,117,114,114,101,110,116,108,121,32,108,111,97,100,105,110,103,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,108,111,97,100,105,110,103,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,108,111,97,100,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,108,111,97,100,105,110,103,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,76,111,97,100,32,97,100,100,105,116,105,111,110,97,108,32,110,111,100,101,115,32,102,111,114,32,116,104,101,32,114,111,111,116,32,99,111,110,116,101,120,116,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,69,118,101,110,116,125,32,101,118,101,110,116,32,67,108,105,99,107,32,111,114,32,115,99,114,111,108,108,32,101,118,101,110,116,32,105,102,32,68,79,77,32,105,110,116,101,114,97,99,116,105,111,110,32,116,114,105,103,103,101,114,101,100,32,116,104,105,115,32,99,97,108,108,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,82,101,115,111,108,118,101,115,32,119,105,116,104,32,114,101,113,117,101,115,116,32,114,101,115,117,108,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,108,111,97,100,77,111,114,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,108,111,97,100,77,111,114,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,108,111,97,100,77,111,114,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,114,101,97,116,101,32,97,32,110,101,119,32,99,111,108,108,101,99,116,105,111,110,32,97,102,116,101,114,32,112,97,115,115,105,110,103,32,101,118,101,114,121,32,110,111,100,101,32,116,104,114,111,117,103,104,32,105,116,101,114,97,116,101,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,78,111,100,101,32,105,116,101,114,97,116,101,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,78,101,119,32,97,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,109,97,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,109,97,112,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,109,97,112,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,110,111,100,101,115,32,109,97,116,99,104,101,100,32,105,110,32,116,104,101,32,108,97,115,116,32,115,101,97,114,99,104,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,109,97,116,99,104,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,109,97,116,99,104,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,109,97,116,99,104,101,100,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,77,111,118,101,32,110,111,100,101,32,97,116,32,97,32,103,105,118,101,110,32,105,110,100,101,120,32,116,111,32,97,32,110,101,119,32,105,110,100,101,120,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,105,110,116,125,32,105,110,100,101,120,32,67,117,114,114,101,110,116,32,105,110,100,101,120,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,105,110,116,125,32,110,101,119,73,110,100,101,120,32,78,101,119,32,105,110,100,101,120,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,115,125,32,116,97,114,103,101,116,32,84,97,114,103,101,116,32,84,114,101,101,78,111,100,101,115,32,97,114,114,97,121,46,32,68,101,102,97,117,108,116,115,32,116,111,32,116,104,105,115,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,109,111,118,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,109,111,118,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,109,111,118,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,92,110,32,32,32,32,32,32,32,32,32,42,32,80,97,117,115,101,32,101,118,101,110,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,97,114,114,97,121,125,32,101,118,101,110,116,115,32,69,118,101,110,116,32,110,97,109,101,115,32,116,111,32,109,117,116,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,125,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,109,117,116,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,109,117,116,101,40,101,118,101,110,116,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,83,116,114,105,110,103,40,101,118,101,110,116,115,41,32,124,124,32,95,46,105,115,65,114,114,97,121,40,101,118,101,110,116,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,109,117,116,101,100,32,61,32,95,46,99,97,115,116,65,114,114,97,121,40,101,118,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,109,117,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,99,117,114,114,101,110,116,32,109,117,116,101,32,115,101,116,116,105,110,103,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,124,97,114,114,97,121,125,32,77,117,116,101,100,32,101,118,101,110,116,115,46,32,73,102,32,97,108,108,44,32,116,114,117,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,109,117,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,109,117,116,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,109,117,116,101,100,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,97,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,110,117,109,98,101,114,125,32,105,100,32,73,68,32,111,102,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,110,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,110,111,100,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,110,111,100,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,97,108,108,32,110,111,100,101,115,32,105,110,32,97,32,116,114,101,101,44,32,111,114,32,110,111,100,101,115,32,102,111,114,32,97,110,32,97,114,114,97,121,32,111,102,32,73,68,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,97,114,114,97,121,125,32,114,101,102,115,32,65,114,114,97,121,32,111,102,32,73,68,32,114,101,102,101,114,101,110,99,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,108,101,116,32,97,108,108,32,61,32,116,114,101,101,46,110,111,100,101,115,40,41,92,110,32,32,32,32,32,32,32,32,32,42,32,108,101,116,32,115,111,109,101,32,61,32,116,114,101,101,46,110,111,100,101,115,40,91,49,44,32,50,44,32,51,93,41,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,110,111,100,101,115,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,110,111,100,101,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,110,111,100,101,115,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,116,104,101,32,114,111,111,116,32,84,114,101,101,78,111,100,101,115,32,112,97,103,105,110,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,111,98,106,101,99,116,125,32,80,97,103,105,110,97,116,105,111,110,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,112,97,103,105,110,97,116,105,111,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,112,97,103,105,110,97,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,112,97,103,105,110,97,116,105,111,110,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,80,111,112,32,110,111,100,101,32,105,110,32,116,104,101,32,102,105,110,97,108,32,105,110,100,101,120,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,112,111,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,112,111,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,112,111,112,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,65,100,100,32,97,32,84,114,101,101,78,111,100,101,32,116,111,32,116,104,101,32,101,110,100,32,111,102,32,116,104,101,32,114,111,111,116,32,99,111,108,108,101,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,110,111,100,101,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,105,110,116,125,32,84,104,101,32,110,101,119,32,108,101,110,103,116,104,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,112,117,115,104,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,112,117,115,104,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,112,117,115,104,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,116,101,114,97,116,101,32,100,111,119,110,32,97,108,108,32,110,111,100,101,115,32,97,110,100,32,97,110,121,32,99,104,105,108,100,114,101,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,116,117,114,110,32,102,97,108,115,101,32,116,111,32,115,116,111,112,32,101,120,101,99,117,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,73,116,101,114,97,116,101,101,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,82,101,115,117,108,116,105,110,103,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,99,117,114,115,101,68,111,119,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,99,117,114,115,101,68,111,119,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,114,101,99,117,114,115,101,68,111,119,110,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,100,117,99,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,73,116,101,114,97,116,101,101,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,97,110,121,125,32,82,101,115,117,108,116,105,110,103,32,100,97,116,97,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,100,117,99,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,100,117,99,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,114,101,100,117,99,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,105,103,104,116,45,114,101,100,117,99,101,32,114,111,111,116,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,73,116,101,114,97,116,101,101,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,97,110,121,125,32,82,101,115,117,108,116,105,110,103,32,100,97,116,97,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,100,117,99,101,82,105,103,104,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,100,117,99,101,82,105,103,104,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,114,101,100,117,99,101,82,105,103,104,116,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,108,111,97,100,47,114,101,45,101,120,101,99,117,116,101,32,116,104,101,32,111,114,105,103,105,110,97,108,32,100,97,116,97,32,108,111,97,100,101,114,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,80,114,111,109,105,115,101,125,32,76,111,97,100,32,109,101,116,104,111,100,32,112,114,111,109,105,115,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,108,111,97,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,108,111,97,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,109,111,118,101,65,108,108,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,108,111,97,100,40,116,104,105,115,46,111,112,116,115,46,100,97,116,97,32,124,124,32,116,104,105,115,46,99,111,110,102,105,103,46,100,97,116,97,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,109,111,118,101,32,97,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,110,111,100,101,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,109,111,118,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,114,101,109,111,118,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,109,111,118,101,32,97,108,108,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,125,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,109,111,118,101,65,108,108,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,65,108,108,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,109,111,100,101,108,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,115,111,102,116,45,114,101,109,111,118,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,109,111,118,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,114,101,109,111,118,101,100,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,115,116,111,114,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,115,116,111,114,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,115,116,111,114,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,114,101,115,116,111,114,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,115,116,111,114,101,32,40,100,101,101,112,108,121,41,32,97,108,108,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,115,116,111,114,101,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,115,116,111,114,101,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,114,101,115,116,111,114,101,68,101,101,112,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,118,101,114,115,101,32,110,111,100,101,32,111,114,100,101,114,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,82,101,118,101,114,115,101,100,32,97,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,114,101,118,101,114,115,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,114,101,118,101,114,115,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,114,101,118,101,114,115,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,101,97,114,99,104,32,110,111,100,101,115,44,32,115,104,111,119,105,110,103,32,111,110,108,121,32,116,104,111,115,101,32,116,104,97,116,32,109,97,116,99,104,32,97,110,100,32,116,104,101,32,110,101,99,101,115,115,97,114,121,32,104,105,101,114,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,113,117,101,114,121,32,83,101,97,114,99,104,32,115,116,114,105,110,103,44,32,82,101,103,69,120,112,44,32,111,114,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,109,97,116,99,104,105,110,103,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,101,97,114,99,104,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,97,114,99,104,40,113,117,101,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,99,111,110,102,105,103,36,115,101,97,114,99,104,32,61,32,116,104,105,115,46,99,111,110,102,105,103,46,115,101,97,114,99,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,101,114,32,61,32,95,99,111,110,102,105,103,36,115,101,97,114,99,104,46,109,97,116,99,104,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,80,114,111,99,101,115,115,111,114,32,61,32,95,99,111,110,102,105,103,36,115,101,97,114,99,104,46,109,97,116,99,104,80,114,111,99,101,115,115,111,114,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,111,110,39,116,32,115,101,97,114,99,104,32,105,102,32,113,117,101,114,121,32,101,109,112,116,121,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,113,117,101,114,121,32,124,124,32,95,46,105,115,83,116,114,105,110,103,40,113,117,101,114,121,41,32,38,38,32,95,46,105,115,69,109,112,116,121,40,113,117,101,114,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,115,54,80,114,111,109,105,115,101,95,49,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,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,98,97,116,99,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,115,101,116,32,115,116,97,116,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,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,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,39,104,105,100,100,101,110,39,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,39,109,97,116,99,104,101,100,39,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,101,110,100,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,81,117,101,114,121,32,110,111,100,101,115,32,102,111,114,32,97,110,121,32,109,97,116,99,104,105,110,103,32,116,104,101,32,113,117,101,114,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,101,114,32,61,32,95,46,105,115,70,117,110,99,116,105,111,110,40,109,97,116,99,104,101,114,41,32,63,32,109,97,116,99,104,101,114,32,58,32,102,117,110,99,116,105,111,110,32,40,113,117,101,114,121,44,32,114,101,115,111,108,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,101,115,32,61,32,110,101,119,32,84,114,101,101,78,111,100,101,115,40,95,116,104,105,115,52,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,110,118,101,114,121,32,116,104,101,32,113,117,101,114,121,32,105,110,116,111,32,97,32,117,115,97,98,108,101,32,112,114,101,100,105,99,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,83,116,114,105,110,103,40,113,117,101,114,121,41,41,32,123,92,110,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,32,61,32,110,101,119,32,82,101,103,69,120,112,40,113,117,101,114,121,44,32,39,105,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,101,100,105,99,97,116,101,32,61,32,118,111,105,100,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,82,101,103,69,120,112,40,113,117,101,114,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,100,105,99,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,112,114,101,100,105,99,97,116,101,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,113,117,101,114,121,46,116,101,115,116,40,110,111,100,101,46,116,101,120,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,100,105,99,97,116,101,32,61,32,113,117,101,114,121,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,99,117,114,115,101,32,100,111,119,110,32,97,110,100,32,102,105,110,100,32,97,108,108,32,109,97,116,99,104,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,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,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,110,111,100,101,46,114,101,109,111,118,101,100,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,101,100,105,99,97,116,101,40,110,111,100,101,41,41,32,123,92,110,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,47,47,32,82,101,116,117,114,110,32,97,115,32,97,32,109,97,116,99,104,92,110,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,109,97,116,99,104,101,115,46,112,117,115,104,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,118,101,40,109,97,116,99,104,101,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,80,114,111,99,101,115,115,32,97,108,108,32,109,97,116,99,104,105,110,103,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,80,114,111,99,101,115,115,111,114,32,61,32,95,46,105,115,70,117,110,99,116,105,111,110,40,109,97,116,99,104,80,114,111,99,101,115,115,111,114,41,32,63,32,109,97,116,99,104,80,114,111,99,101,115,115,111,114,32,58,32,102,117,110,99,116,105,111,110,32,40,109,97,116,99,104,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,101,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,104,111,119,40,41,46,115,116,97,116,101,40,39,109,97,116,99,104,101,100,39,44,32,116,114,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,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,115,104,111,119,68,101,101,112,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,114,97,112,32,116,104,101,32,115,101,97,114,99,104,32,109,97,116,99,104,101,114,32,119,105,116,104,32,97,32,112,114,111,109,105,115,101,32,115,105,110,99,101,32,105,116,32,99,111,117,108,100,32,114,101,113,117,105,114,101,32,97,115,121,110,99,32,114,101,113,117,101,115,116,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,101,115,54,80,114,111,109,105,115,101,95,49,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,120,101,99,117,116,101,32,116,104,101,32,109,97,116,99,104,101,114,32,97,110,100,32,112,105,112,101,32,114,101,115,117,108,116,115,32,116,111,32,116,104,101,32,112,114,111,99,101,115,115,111,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,101,114,40,113,117,101,114,121,44,32,102,117,110,99,116,105,111,110,32,40,109,97,116,99,104,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,116,111,32,97,32,84,114,101,101,78,111,100,101,115,32,97,114,114,97,121,32,105,102,32,119,101,39,114,101,32,114,101,99,101,105,118,105,110,103,32,101,120,116,101,114,110,97,108,32,110,111,100,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,73,110,115,112,105,114,101,84,114,101,101,46,105,115,84,114,101,101,78,111,100,101,115,40,109,97,116,99,104,101,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,101,115,32,61,32,95,116,104,105,115,52,46,110,111,100,101,115,40,95,46,109,97,112,40,109,97,116,99,104,101,115,44,32,39,105,100,39,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,98,97,116,99,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,80,114,111,99,101,115,115,111,114,40,109,97,116,99,104,101,115,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,101,110,100,40,41,59,92,110,92,110,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,118,101,40,109,97,116,99,104,101,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,32,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,101,108,101,99,116,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,101,108,101,99,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,101,108,101,99,116,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,115,101,108,101,99,116,97,98,108,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,101,108,101,99,116,97,98,108,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,97,98,108,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,101,108,101,99,116,97,98,108,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,101,108,101,99,116,32,97,108,108,32,110,111,100,101,115,32,98,101,116,119,101,101,110,32,97,32,115,116,97,114,116,32,97,110,100,32,101,110,100,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,83,116,97,114,116,105,110,103,32,110,111,100,101,32,109,117,115,116,32,104,97,118,101,32,97,32,104,105,103,104,101,114,32,105,110,100,101,120,32,112,97,116,104,32,115,111,32,119,101,32,99,97,110,32,119,111,114,107,32,100,111,119,110,32,116,111,32,101,110,100,78,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,115,116,97,114,116,78,111,100,101,32,83,116,97,114,116,105,110,103,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,101,110,100,78,111,100,101,32,69,110,100,105,110,103,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,125,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,101,108,101,99,116,66,101,116,119,101,101,110,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,66,101,116,119,101,101,110,40,115,116,97,114,116,78,111,100,101,44,32,101,110,100,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,98,97,116,99,104,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,115,116,97,114,116,78,111,100,101,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,110,111,100,101,46,105,100,32,33,61,61,32,101,110,100,78,111,100,101,46,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,101,108,101,99,116,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,110,111,100,101,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,101,110,100,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,101,108,101,99,116,68,101,101,112,39,44,92,110,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,101,108,101,99,116,32,40,100,101,101,112,108,121,41,32,97,108,108,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,101,108,101,99,116,68,101,101,112,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,115,101,108,101,99,116,101,100,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,101,108,101,99,116,101,100,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,101,108,101,99,116,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,101,108,101,99,116,101,100,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,101,108,101,99,116,32,116,104,101,32,102,105,114,115,116,32,97,118,97,105,108,97,98,108,101,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,83,101,108,101,99,116,101,100,32,110,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,101,108,101,99,116,70,105,114,115,116,65,118,97,105,108,97,98,108,101,78,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,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,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,116,104,105,115,46,109,111,100,101,108,46,102,105,108,116,101,114,66,121,40,39,97,118,97,105,108,97,98,108,101,39,41,46,103,101,116,40,48,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,101,108,101,99,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,104,105,102,116,39,44,92,110,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,104,105,102,116,32,110,111,100,101,32,105,110,32,116,104,101,32,102,105,114,115,116,32,105,110,100,101,120,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,125,32,78,111,100,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,104,105,102,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,104,105,102,116,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,104,111,119,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,104,111,119,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,104,111,119,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,104,111,119,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,104,111,119,32,40,100,101,101,112,108,121,41,32,97,108,108,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,104,111,119,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,104,111,119,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,104,111,119,68,101,101,112,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,97,32,115,104,97,108,108,111,119,32,99,111,112,121,32,111,102,32,97,32,112,111,114,116,105,111,110,32,111,102,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,105,110,116,125,32,98,101,103,105,110,32,83,116,97,114,116,105,110,103,32,105,110,100,101,120,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,105,110,116,125,32,101,110,100,32,69,110,100,32,105,110,100,101,120,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,65,114,114,97,121,125,32,65,114,114,97,121,32,111,102,32,115,101,108,101,99,116,101,100,32,115,117,98,115,101,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,108,105,99,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,108,105,99,101,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,108,105,99,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,111,102,116,45,114,101,109,111,118,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,111,102,116,82,101,109,111,118,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,111,102,116,82,101,109,111,118,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,111,102,116,82,101,109,111,118,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,104,101,99,107,32,105,102,32,97,116,32,108,101,97,115,116,32,111,110,101,32,110,111,100,101,32,112,97,115,115,101,115,32,116,104,101,32,103,105,118,101,110,32,116,101,115,116,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,116,101,115,116,101,114,32,84,101,115,116,32,101,97,99,104,32,110,111,100,101,32,105,110,32,116,104,105,115,32,99,111,108,108,101,99,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,84,114,117,101,32,105,102,32,97,116,32,108,101,97,115,116,32,111,110,101,32,110,111,100,101,32,112,97,115,115,101,115,32,116,104,101,32,116,101,115,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,111,109,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,111,109,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,111,109,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,111,114,116,32,110,111,100,101,115,32,117,115,105,110,103,32,97,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,102,117,110,99,116,105,111,110,125,32,99,111,109,112,97,114,101,70,110,32,67,111,109,112,97,114,105,115,111,110,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,82,111,111,116,32,97,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,111,114,116,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,111,114,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,111,114,116,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,111,114,116,32,110,111,100,101,115,32,117,115,105,110,103,32,97,32,102,117,110,99,116,105,111,110,32,111,114,32,107,101,121,32,110,97,109,101,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,73,102,32,110,111,32,99,117,115,116,111,109,32,115,111,114,116,101,114,32,103,105,118,101,110,44,32,116,104,101,32,99,111,110,102,105,103,117,114,101,100,32,92,34,115,111,114,116,92,34,32,118,97,108,117,101,32,119,105,108,108,32,98,101,32,117,115,101,100,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,125,32,115,111,114,116,101,114,32,83,111,114,116,32,102,117,110,99,116,105,111,110,32,111,114,32,112,114,111,112,101,114,116,121,32,110,97,109,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,101,106,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,111,114,116,66,121,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,111,114,116,66,121,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,111,114,116,66,121,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,109,111,118,101,32,97,110,100,47,111,114,32,97,100,100,32,110,101,119,32,84,114,101,101,78,111,100,101,115,32,105,110,116,111,32,116,104,101,32,114,111,111,116,32,99,111,108,108,101,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,105,110,116,125,32,115,116,97,114,116,32,83,116,97,114,116,105,110,103,32,105,110,100,101,120,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,105,110,116,125,32,100,101,108,101,116,101,67,111,117,110,116,32,67,111,117,110,116,32,111,102,32,110,111,100,101,115,32,116,111,32,100,101,108,101,116,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,110,111,100,101,32,78,111,100,101,40,115,41,32,116,111,32,105,110,115,101,114,116,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,65,114,114,97,121,125,32,65,114,114,97,121,32,111,102,32,115,101,108,101,99,116,101,100,32,115,117,98,115,101,116,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,112,108,105,99,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,112,108,105,99,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,108,105,99,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,101,116,32,110,111,100,101,115,39,32,115,116,97,116,101,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,110,97,109,101,32,80,114,111,112,101,114,116,121,32,110,97,109,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,110,101,119,86,97,108,32,78,101,119,32,118,97,108,117,101,44,32,105,102,32,115,101,116,116,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,116,97,116,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,116,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,116,97,116,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,101,116,32,40,100,101,101,112,108,121,41,32,110,111,100,101,115,39,32,115,116,97,116,101,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,110,97,109,101,32,80,114,111,112,101,114,116,121,32,110,97,109,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,110,101,119,86,97,108,32,78,101,119,32,118,97,108,117,101,44,32,105,102,32,115,101,116,116,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,116,97,116,101,68,101,101,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,116,97,116,101,68,101,101,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,116,97,116,101,68,101,101,112,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,83,119,97,112,32,116,119,111,32,110,111,100,101,32,112,111,115,105,116,105,111,110,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,110,111,100,101,49,32,78,111,100,101,32,49,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,84,114,101,101,78,111,100,101,125,32,110,111,100,101,50,32,78,111,100,101,32,50,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,115,119,97,112,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,115,119,97,112,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,115,119,97,112,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,97,32,110,97,116,105,118,101,32,110,111,100,101,32,65,114,114,97,121,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,97,114,114,97,121,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,111,65,114,114,97,121,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,116,111,65,114,114,97,121,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,116,111,65,114,114,97,121,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,71,101,116,32,97,32,115,116,114,105,110,103,32,114,101,112,114,101,115,101,110,116,97,116,105,111,110,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,115,116,114,105,110,103,125,32,83,116,114,105,110,103,115,32,102,114,111,109,32,114,111,111,116,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,116,111,83,116,114,105,110,103,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,116,111,83,116,114,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,116,111,83,116,114,105,110,103,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,82,101,115,117,109,101,32,101,118,101,110,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,97,114,114,97,121,125,32,101,118,101,110,116,115,32,69,118,101,110,116,115,32,116,111,32,117,110,109,117,116,101,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,125,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,117,110,109,117,116,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,117,110,109,117,116,101,40,101,118,101,110,116,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,105,102,102,32,97,114,114,97,121,32,97,110,100,32,115,101,116,32,116,111,32,102,97,108,115,101,32,105,102,32,119,101,39,114,101,32,110,111,119,32,101,109,112,116,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,46,105,115,83,116,114,105,110,103,40,101,118,101,110,116,115,41,32,124,124,32,95,46,105,115,65,114,114,97,121,40,101,118,101,110,116,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,109,117,116,101,100,32,61,32,95,46,100,105,102,102,101,114,101,110,99,101,40,116,104,105,115,46,95,109,117,116,101,100,44,32,95,46,99,97,115,116,65,114,114,97,121,40,101,118,101,110,116,115,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,109,117,116,101,100,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,109,117,116,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,109,117,116,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,117,110,115,104,105,102,116,39,44,92,110,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,65,100,100,32,97,32,84,114,101,101,78,111,100,101,32,105,110,32,116,104,101,32,102,105,114,115,116,32,105,110,100,101,120,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,110,117,109,98,101,114,125,32,84,104,101,32,110,101,119,32,108,101,110,103,116,104,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,117,110,115,104,105,102,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,117,110,115,104,105,102,116,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,81,117,101,114,121,32,102,111,114,32,97,108,108,32,118,105,115,105,98,108,101,32,110,111,100,101,115,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,102,117,108,108,32,82,101,116,97,105,110,32,102,117,108,108,32,104,105,101,97,114,99,104,121,46,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,84,114,101,101,78,111,100,101,115,125,32,65,114,114,97,121,32,111,102,32,110,111,100,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,118,105,115,105,98,108,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,118,105,115,105,98,108,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,109,97,112,40,116,104,105,115,44,32,39,118,105,115,105,98,108,101,39,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,93,44,32,91,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,115,84,114,101,101,78,111,100,101,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,115,84,114,101,101,78,111,100,101,40,111,98,106,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,84,114,101,101,78,111,100,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,67,104,101,99,107,32,105,102,32,97,110,32,111,98,106,101,99,116,32,105,115,32,97,32,84,114,101,101,78,111,100,101,115,32,97,114,114,97,121,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,84,114,101,101,92,110,32,32,32,32,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,111,98,106,101,99,116,125,32,111,98,106,32,79,98,106,101,99,116,92,110,32,32,32,32,32,32,32,32,32,42,32,64,114,101,116,117,114,110,32,123,98,111,111,108,101,97,110,125,32,73,102,32,111,98,106,101,99,116,32,105,115,32,97,32,84,114,101,101,78,111,100,101,115,32,97,114,114,97,121,46,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,105,115,84,114,101,101,78,111,100,101,115,39,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,105,115,84,114,101,101,78,111,100,101,115,40,111,98,106,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,84,114,101,101,78,111,100,101,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,93,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,73,110,115,112,105,114,101,84,114,101,101,59,92,110,125,40,101,118,101,110,116,101,109,105,116,116,101,114,50,95,49,41,59,92,110,92,110,114,101,116,117,114,110,32,73,110,115,112,105,114,101,84,114,101,101,59,92,110,92,110,125,41,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,83,121,109,98,111,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,83,121,109,98,111,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,114,111,111,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,114,111,111,116,46,106,115,92,34,41,59,92,110,92,110,47,42,42,32,66,117,105,108,116,45,105,110,32,118,97,108,117,101,32,114,101,102,101,114,101,110,99,101,115,46,32,42,47,92,110,118,97,114,32,83,121,109,98,111,108,32,61,32,114,111,111,116,46,83,121,109,98,111,108,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,83,121,109,98,111,108,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,83,121,109,98,111,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,98,97,115,101,71,101,116,84,97,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,98,97,115,101,71,101,116,84,97,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,83,121,109,98,111,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,83,121,109,98,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,83,121,109,98,111,108,46,106,115,92,34,41,44,92,110,32,32,32,32,103,101,116,82,97,119,84,97,103,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,103,101,116,82,97,119,84,97,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,103,101,116,82,97,119,84,97,103,46,106,115,92,34,41,44,92,110,32,32,32,32,111,98,106,101,99,116,84,111,83,116,114,105,110,103,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,111,98,106,101,99,116,84,111,83,116,114,105,110,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,111,98,106,101,99,116,84,111,83,116,114,105,110,103,46,106,115,92,34,41,59,92,110,92,110,47,42,42,32,96,79,98,106,101,99,116,35,116,111,83,116,114,105,110,103,96,32,114,101,115,117,108,116,32,114,101,102,101,114,101,110,99,101,115,46,32,42,47,92,110,118,97,114,32,110,117,108,108,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,78,117,108,108,93,39,44,92,110,32,32,32,32,117,110,100,101,102,105,110,101,100,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,85,110,100,101,102,105,110,101,100,93,39,59,92,110,92,110,47,42,42,32,66,117,105,108,116,45,105,110,32,118,97,108,117,101,32,114,101,102,101,114,101,110,99,101,115,46,32,42,47,92,110,118,97,114,32,115,121,109,84,111,83,116,114,105,110,103,84,97,103,32,61,32,83,121,109,98,111,108,32,63,32,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,47,42,42,92,110,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,103,101,116,84,97,103,96,32,119,105,116,104,111,117,116,32,102,97,108,108,98,97,99,107,115,32,102,111,114,32,98,117,103,103,121,32,101,110,118,105,114,111,110,109,101,110,116,115,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,113,117,101,114,121,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,96,116,111,83,116,114,105,110,103,84,97,103,96,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,118,97,108,117,101,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,117,110,100,101,102,105,110,101,100,84,97,103,32,58,32,110,117,108,108,84,97,103,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,40,115,121,109,84,111,83,116,114,105,110,103,84,97,103,32,38,38,32,115,121,109,84,111,83,116,114,105,110,103,84,97,103,32,105,110,32,79,98,106,101,99,116,40,118,97,108,117,101,41,41,92,110,32,32,32,32,63,32,103,101,116,82,97,119,84,97,103,40,118,97,108,117,101,41,92,110,32,32,32,32,58,32,111,98,106,101,99,116,84,111,83,116,114,105,110,103,40,118,97,108,117,101,41,59,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,98,97,115,101,71,101,116,84,97,103,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,98,97,115,101,71,101,116,84,97,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,98,97,115,101,84,114,105,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,98,97,115,101,84,114,105,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,116,114,105,109,109,101,100,69,110,100,73,110,100,101,120,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,116,114,105,109,109,101,100,69,110,100,73,110,100,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,116,114,105,109,109,101,100,69,110,100,73,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,108,101,97,100,105,110,103,32,119,104,105,116,101,115,112,97,99,101,46,32,42,47,92,110,118,97,114,32,114,101,84,114,105,109,83,116,97,114,116,32,61,32,47,94,92,92,115,43,47,59,92,110,92,110,47,42,42,92,110,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,116,114,105,109,96,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,114,105,110,103,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,116,114,105,109,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,116,114,105,109,109,101,100,32,115,116,114,105,110,103,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,98,97,115,101,84,114,105,109,40,115,116,114,105,110,103,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,92,110,32,32,32,32,63,32,115,116,114,105,110,103,46,115,108,105,99,101,40,48,44,32,116,114,105,109,109,101,100,69,110,100,73,110,100,101,120,40,115,116,114,105,110,103,41,32,43,32,49,41,46,114,101,112,108,97,99,101,40,114,101,84,114,105,109,83,116,97,114,116,44,32,39,39,41,92,110,32,32,32,32,58,32,115,116,114,105,110,103,59,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,98,97,115,101,84,114,105,109,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,98,97,115,101,84,114,105,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,102,114,101,101,71,108,111,98,97,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,102,114,101,101,71,108,111,98,97,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,42,42,32,68,101,116,101,99,116,32,102,114,101,101,32,118,97,114,105,97,98,108,101,32,96,103,108,111,98,97,108,96,32,102,114,111,109,32,78,111,100,101,46,106,115,46,32,42,47,92,110,118,97,114,32,102,114,101,101,71,108,111,98,97,108,32,61,32,116,121,112,101,111,102,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,32,61,61,32,39,111,98,106,101,99,116,39,32,38,38,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,32,38,38,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,46,79,98,106,101,99,116,32,61,61,61,32,79,98,106,101,99,116,32,38,38,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,102,114,101,101,71,108,111,98,97,108,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,102,114,101,101,71,108,111,98,97,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,103,101,116,82,97,119,84,97,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,103,101,116,82,97,119,84,97,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,83,121,109,98,111,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,83,121,109,98,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,83,121,109,98,111,108,46,106,115,92,34,41,59,92,110,92,110,47,42,42,32,85,115,101,100,32,102,111,114,32,98,117,105,108,116,45,105,110,32,109,101,116,104,111,100,32,114,101,102,101,114,101,110,99,101,115,46,32,42,47,92,110,118,97,114,32,111,98,106,101,99,116,80,114,111,116,111,32,61,32,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,47,42,42,32,85,115,101,100,32,116,111,32,99,104,101,99,107,32,111,98,106,101,99,116,115,32,102,111,114,32,111,119,110,32,112,114,111,112,101,114,116,105,101,115,46,32,42,47,92,110,118,97,114,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,32,61,32,111,98,106,101,99,116,80,114,111,116,111,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,59,92,110,92,110,47,42,42,92,110,32,42,32,85,115,101,100,32,116,111,32,114,101,115,111,108,118,101,32,116,104,101,92,110,32,42,32,91,96,116,111,83,116,114,105,110,103,84,97,103,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,111,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,115,116,114,105,110,103,41,92,110,32,42,32,111,102,32,118,97,108,117,101,115,46,92,110,32,42,47,92,110,118,97,114,32,110,97,116,105,118,101,79,98,106,101,99,116,84,111,83,116,114,105,110,103,32,61,32,111,98,106,101,99,116,80,114,111,116,111,46,116,111,83,116,114,105,110,103,59,92,110,92,110,47,42,42,32,66,117,105,108,116,45,105,110,32,118,97,108,117,101,32,114,101,102,101,114,101,110,99,101,115,46,32,42,47,92,110,118,97,114,32,115,121,109,84,111,83,116,114,105,110,103,84,97,103,32,61,32,83,121,109,98,111,108,32,63,32,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,47,42,42,92,110,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,98,97,115,101,71,101,116,84,97,103,96,32,119,104,105,99,104,32,105,103,110,111,114,101,115,32,96,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,96,32,118,97,108,117,101,115,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,113,117,101,114,121,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,97,119,32,96,116,111,83,116,114,105,110,103,84,97,103,96,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,82,97,119,84,97,103,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,105,115,79,119,110,32,61,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,118,97,108,117,101,44,32,115,121,109,84,111,83,116,114,105,110,103,84,97,103,41,44,92,110,32,32,32,32,32,32,116,97,103,32,61,32,118,97,108,117,101,91,115,121,109,84,111,83,116,114,105,110,103,84,97,103,93,59,92,110,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,118,97,108,117,101,91,115,121,109,84,111,83,116,114,105,110,103,84,97,103,93,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,118,97,114,32,117,110,109,97,115,107,101,100,32,61,32,116,114,117,101,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,125,92,110,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,110,97,116,105,118,101,79,98,106,101,99,116,84,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,117,101,41,59,92,110,32,32,105,102,32,40,117,110,109,97,115,107,101,100,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,79,119,110,41,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,91,115,121,109,84,111,83,116,114,105,110,103,84,97,103,93,32,61,32,116,97,103,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,100,101,108,101,116,101,32,118,97,108,117,101,91,115,121,109,84,111,83,116,114,105,110,103,84,97,103,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,103,101,116,82,97,119,84,97,103,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,103,101,116,82,97,119,84,97,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,111,98,106,101,99,116,84,111,83,116,114,105,110,103,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,111,98,106,101,99,116,84,111,83,116,114,105,110,103,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,47,42,42,32,85,115,101,100,32,102,111,114,32,98,117,105,108,116,45,105,110,32,109,101,116,104,111,100,32,114,101,102,101,114,101,110,99,101,115,46,32,42,47,92,110,118,97,114,32,111,98,106,101,99,116,80,114,111,116,111,32,61,32,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,47,42,42,92,110,32,42,32,85,115,101,100,32,116,111,32,114,101,115,111,108,118,101,32,116,104,101,92,110,32,42,32,91,96,116,111,83,116,114,105,110,103,84,97,103,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,111,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,115,116,114,105,110,103,41,92,110,32,42,32,111,102,32,118,97,108,117,101,115,46,92,110,32,42,47,92,110,118,97,114,32,110,97,116,105,118,101,79,98,106,101,99,116,84,111,83,116,114,105,110,103,32,61,32,111,98,106,101,99,116,80,114,111,116,111,46,116,111,83,116,114,105,110,103,59,92,110,92,110,47,42,42,92,110,32,42,32,67,111,110,118,101,114,116,115,32,96,118,97,108,117,101,96,32,116,111,32,97,32,115,116,114,105,110,103,32,117,115,105,110,103,32,96,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,96,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,115,116,114,105,110,103,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,111,98,106,101,99,116,84,111,83,116,114,105,110,103,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,97,116,105,118,101,79,98,106,101,99,116,84,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,117,101,41,59,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,111,98,106,101,99,116,84,111,83,116,114,105,110,103,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,111,98,106,101,99,116,84,111,83,116,114,105,110,103,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,114,111,111,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,114,111,111,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,102,114,101,101,71,108,111,98,97,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,102,114,101,101,71,108,111,98,97,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,102,114,101,101,71,108,111,98,97,108,46,106,115,92,34,41,59,92,110,92,110,47,42,42,32,68,101,116,101,99,116,32,102,114,101,101,32,118,97,114,105,97,98,108,101,32,96,115,101,108,102,96,46,32,42,47,92,110,118,97,114,32,102,114,101,101,83,101,108,102,32,61,32,116,121,112,101,111,102,32,115,101,108,102,32,61,61,32,39,111,98,106,101,99,116,39,32,38,38,32,115,101,108,102,32,38,38,32,115,101,108,102,46,79,98,106,101,99,116,32,61,61,61,32,79,98,106,101,99,116,32,38,38,32,115,101,108,102,59,92,110,92,110,47,42,42,32,85,115,101,100,32,97,115,32,97,32,114,101,102,101,114,101,110,99,101,32,116,111,32,116,104,101,32,103,108,111,98,97,108,32,111,98,106,101,99,116,46,32,42,47,92,110,118,97,114,32,114,111,111,116,32,61,32,102,114,101,101,71,108,111,98,97,108,32,124,124,32,102,114,101,101,83,101,108,102,32,124,124,32,70,117,110,99,116,105,111,110,40,39,114,101,116,117,114,110,32,116,104,105,115,39,41,40,41,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,114,111,111,116,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,114,111,111,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,116,114,105,109,109,101,100,69,110,100,73,110,100,101,120,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,116,114,105,109,109,101,100,69,110,100,73,110,100,101,120,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,97,32,115,105,110,103,108,101,32,119,104,105,116,101,115,112,97,99,101,32,99,104,97,114,97,99,116,101,114,46,32,42,47,92,110,118,97,114,32,114,101,87,104,105,116,101,115,112,97,99,101,32,61,32,47,92,92,115,47,59,92,110,92,110,47,42,42,92,110,32,42,32,85,115,101,100,32,98,121,32,96,95,46,116,114,105,109,96,32,97,110,100,32,96,95,46,116,114,105,109,69,110,100,96,32,116,111,32,103,101,116,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,108,97,115,116,32,110,111,110,45,119,104,105,116,101,115,112,97,99,101,92,110,32,42,32,99,104,97,114,97,99,116,101,114,32,111,102,32,96,115,116,114,105,110,103,96,46,92,110,32,42,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,114,105,110,103,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,108,97,115,116,32,110,111,110,45,119,104,105,116,101,115,112,97,99,101,32,99,104,97,114,97,99,116,101,114,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,116,114,105,109,109,101,100,69,110,100,73,110,100,101,120,40,115,116,114,105,110,103,41,32,123,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,115,116,114,105,110,103,46,108,101,110,103,116,104,59,92,110,92,110,32,32,119,104,105,108,101,32,40,105,110,100,101,120,45,45,32,38,38,32,114,101,87,104,105,116,101,115,112,97,99,101,46,116,101,115,116,40,115,116,114,105,110,103,46,99,104,97,114,65,116,40,105,110,100,101,120,41,41,41,32,123,125,92,110,32,32,114,101,116,117,114,110,32,105,110,100,101,120,59,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,116,114,105,109,109,101,100,69,110,100,73,110,100,101,120,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,116,114,105,109,109,101,100,69,110,100,73,110,100,101,120,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,100,101,98,111,117,110,99,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,100,101,98,111,117,110,99,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,115,79,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,105,115,79,98,106,101,99,116,46,106,115,92,34,41,44,92,110,32,32,32,32,110,111,119,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,110,111,119,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,110,111,119,46,106,115,92,34,41,44,92,110,32,32,32,32,116,111,78,117,109,98,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,116,111,78,117,109,98,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,116,111,78,117,109,98,101,114,46,106,115,92,34,41,59,92,110,92,110,47,42,42,32,69,114,114,111,114,32,109,101,115,115,97,103,101,32,99,111,110,115,116,97,110,116,115,46,32,42,47,92,110,118,97,114,32,70,85,78,67,95,69,82,82,79,82,95,84,69,88,84,32,61,32,39,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,39,59,92,110,92,110,47,42,32,66,117,105,108,116,45,105,110,32,109,101,116,104,111,100,32,114,101,102,101,114,101,110,99,101,115,32,102,111,114,32,116,104,111,115,101,32,119,105,116,104,32,116,104,101,32,115,97,109,101,32,110,97,109,101,32,97,115,32,111,116,104,101,114,32,96,108,111,100,97,115,104,96,32,109,101,116,104,111,100,115,46,32,42,47,92,110,118,97,114,32,110,97,116,105,118,101,77,97,120,32,61,32,77,97,116,104,46,109,97,120,44,92,110,32,32,32,32,110,97,116,105,118,101,77,105,110,32,61,32,77,97,116,104,46,109,105,110,59,92,110,92,110,47,42,42,92,110,32,42,32,67,114,101,97,116,101,115,32,97,32,100,101,98,111,117,110,99,101,100,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,100,101,108,97,121,115,32,105,110,118,111,107,105,110,103,32,96,102,117,110,99,96,32,117,110,116,105,108,32,97,102,116,101,114,32,96,119,97,105,116,96,92,110,32,42,32,109,105,108,108,105,115,101,99,111,110,100,115,32,104,97,118,101,32,101,108,97,112,115,101,100,32,115,105,110,99,101,32,116,104,101,32,108,97,115,116,32,116,105,109,101,32,116,104,101,32,100,101,98,111,117,110,99,101,100,32,102,117,110,99,116,105,111,110,32,119,97,115,92,110,32,42,32,105,110,118,111,107,101,100,46,32,84,104,101,32,100,101,98,111,117,110,99,101,100,32,102,117,110,99,116,105,111,110,32,99,111,109,101,115,32,119,105,116,104,32,97,32,96,99,97,110,99,101,108,96,32,109,101,116,104,111,100,32,116,111,32,99,97,110,99,101,108,92,110,32,42,32,100,101,108,97,121,101,100,32,96,102,117,110,99,96,32,105,110,118,111,99,97,116,105,111,110,115,32,97,110,100,32,97,32,96,102,108,117,115,104,96,32,109,101,116,104,111,100,32,116,111,32,105,109,109,101,100,105,97,116,101,108,121,32,105,110,118,111,107,101,32,116,104,101,109,46,92,110,32,42,32,80,114,111,118,105,100,101,32,96,111,112,116,105,111,110,115,96,32,116,111,32,105,110,100,105,99,97,116,101,32,119,104,101,116,104,101,114,32,96,102,117,110,99,96,32,115,104,111,117,108,100,32,98,101,32,105,110,118,111,107,101,100,32,111,110,32,116,104,101,92,110,32,42,32,108,101,97,100,105,110,103,32,97,110,100,47,111,114,32,116,114,97,105,108,105,110,103,32,101,100,103,101,32,111,102,32,116,104,101,32,96,119,97,105,116,96,32,116,105,109,101,111,117,116,46,32,84,104,101,32,96,102,117,110,99,96,32,105,115,32,105,110,118,111,107,101,100,92,110,32,42,32,119,105,116,104,32,116,104,101,32,108,97,115,116,32,97,114,103,117,109,101,110,116,115,32,112,114,111,118,105,100,101,100,32,116,111,32,116,104,101,32,100,101,98,111,117,110,99,101,100,32,102,117,110,99,116,105,111,110,46,32,83,117,98,115,101,113,117,101,110,116,92,110,32,42,32,99,97,108,108,115,32,116,111,32,116,104,101,32,100,101,98,111,117,110,99,101,100,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,32,116,104,101,32,114,101,115,117,108,116,32,111,102,32,116,104,101,32,108,97,115,116,32,96,102,117,110,99,96,92,110,32,42,32,105,110,118,111,99,97,116,105,111,110,46,92,110,32,42,92,110,32,42,32,42,42,78,111,116,101,58,42,42,32,73,102,32,96,108,101,97,100,105,110,103,96,32,97,110,100,32,96,116,114,97,105,108,105,110,103,96,32,111,112,116,105,111,110,115,32,97,114,101,32,96,116,114,117,101,96,44,32,96,102,117,110,99,96,32,105,115,92,110,32,42,32,105,110,118,111,107,101,100,32,111,110,32,116,104,101,32,116,114,97,105,108,105,110,103,32,101,100,103,101,32,111,102,32,116,104,101,32,116,105,109,101,111,117,116,32,111,110,108,121,32,105,102,32,116,104,101,32,100,101,98,111,117,110,99,101,100,32,102,117,110,99,116,105,111,110,92,110,32,42,32,105,115,32,105,110,118,111,107,101,100,32,109,111,114,101,32,116,104,97,110,32,111,110,99,101,32,100,117,114,105,110,103,32,116,104,101,32,96,119,97,105,116,96,32,116,105,109,101,111,117,116,46,92,110,32,42,92,110,32,42,32,73,102,32,96,119,97,105,116,96,32,105,115,32,96,48,96,32,97,110,100,32,96,108,101,97,100,105,110,103,96,32,105,115,32,96,102,97,108,115,101,96,44,32,96,102,117,110,99,96,32,105,110,118,111,99,97,116,105,111,110,32,105,115,32,100,101,102,101,114,114,101,100,92,110,32,42,32,117,110,116,105,108,32,116,111,32,116,104,101,32,110,101,120,116,32,116,105,99,107,44,32,115,105,109,105,108,97,114,32,116,111,32,96,115,101,116,84,105,109,101,111,117,116,96,32,119,105,116,104,32,97,32,116,105,109,101,111,117,116,32,111,102,32,96,48,96,46,92,110,32,42,92,110,32,42,32,83,101,101,32,91,68,97,118,105,100,32,67,111,114,98,97,99,104,111,39,115,32,97,114,116,105,99,108,101,93,40,104,116,116,112,115,58,47,47,99,115,115,45,116,114,105,99,107,115,46,99,111,109,47,100,101,98,111,117,110,99,105,110,103,45,116,104,114,111,116,116,108,105,110,103,45,101,120,112,108,97,105,110,101,100,45,101,120,97,109,112,108,101,115,47,41,92,110,32,42,32,102,111,114,32,100,101,116,97,105,108,115,32,111,118,101,114,32,116,104,101,32,100,105,102,102,101,114,101,110,99,101,115,32,98,101,116,119,101,101,110,32,96,95,46,100,101,98,111,117,110,99,101,96,32,97,110,100,32,96,95,46,116,104,114,111,116,116,108,101,96,46,92,110,32,42,92,110,32,42,32,64,115,116,97,116,105,99,92,110,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,100,101,98,111,117,110,99,101,46,92,110,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,119,97,105,116,61,48,93,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,111,32,100,101,108,97,121,46,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,112,116,105,111,110,115,61,123,125,93,32,84,104,101,32,111,112,116,105,111,110,115,32,111,98,106,101,99,116,46,92,110,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,108,101,97,100,105,110,103,61,102,97,108,115,101,93,92,110,32,42,32,32,83,112,101,99,105,102,121,32,105,110,118,111,107,105,110,103,32,111,110,32,116,104,101,32,108,101,97,100,105,110,103,32,101,100,103,101,32,111,102,32,116,104,101,32,116,105,109,101,111,117,116,46,92,110,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,111,112,116,105,111,110,115,46,109,97,120,87,97,105,116,93,92,110,32,42,32,32,84,104,101,32,109,97,120,105,109,117,109,32,116,105,109,101,32,96,102,117,110,99,96,32,105,115,32,97,108,108,111,119,101,100,32,116,111,32,98,101,32,100,101,108,97,121,101,100,32,98,101,102,111,114,101,32,105,116,39,115,32,105,110,118,111,107,101,100,46,92,110,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,116,114,97,105,108,105,110,103,61,116,114,117,101,93,92,110,32,42,32,32,83,112,101,99,105,102,121,32,105,110,118,111,107,105,110,103,32,111,110,32,116,104,101,32,116,114,97,105,108,105,110,103,32,101,100,103,101,32,111,102,32,116,104,101,32,116,105,109,101,111,117,116,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,100,101,98,111,117,110,99,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,92,110,32,42,32,47,47,32,65,118,111,105,100,32,99,111,115,116,108,121,32,99,97,108,99,117,108,97,116,105,111,110,115,32,119,104,105,108,101,32,116,104,101,32,119,105,110,100,111,119,32,115,105,122,101,32,105,115,32,105,110,32,102,108,117,120,46,92,110,32,42,32,106,81,117,101,114,121,40,119,105,110,100,111,119,41,46,111,110,40,39,114,101,115,105,122,101,39,44,32,95,46,100,101,98,111,117,110,99,101,40,99,97,108,99,117,108,97,116,101,76,97,121,111,117,116,44,32,49,53,48,41,41,59,92,110,32,42,92,110,32,42,32,47,47,32,73,110,118,111,107,101,32,96,115,101,110,100,77,97,105,108,96,32,119,104,101,110,32,99,108,105,99,107,101,100,44,32,100,101,98,111,117,110,99,105,110,103,32,115,117,98,115,101,113,117,101,110,116,32,99,97,108,108,115,46,92,110,32,42,32,106,81,117,101,114,121,40,101,108,101,109,101,110,116,41,46,111,110,40,39,99,108,105,99,107,39,44,32,95,46,100,101,98,111,117,110,99,101,40,115,101,110,100,77,97,105,108,44,32,51,48,48,44,32,123,92,110,32,42,32,32,32,39,108,101,97,100,105,110,103,39,58,32,116,114,117,101,44,92,110,32,42,32,32,32,39,116,114,97,105,108,105,110,103,39,58,32,102,97,108,115,101,92,110,32,42,32,125,41,41,59,92,110,32,42,92,110,32,42,32,47,47,32,69,110,115,117,114,101,32,96,98,97,116,99,104,76,111,103,96,32,105,115,32,105,110,118,111,107,101,100,32,111,110,99,101,32,97,102,116,101,114,32,49,32,115,101,99,111,110,100,32,111,102,32,100,101,98,111,117,110,99,101,100,32,99,97,108,108,115,46,92,110,32,42,32,118,97,114,32,100,101,98,111,117,110,99,101,100,32,61,32,95,46,100,101,98,111,117,110,99,101,40,98,97,116,99,104,76,111,103,44,32,50,53,48,44,32,123,32,39,109,97,120,87,97,105,116,39,58,32,49,48,48,48,32,125,41,59,92,110,32,42,32,118,97,114,32,115,111,117,114,99,101,32,61,32,110,101,119,32,69,118,101,110,116,83,111,117,114,99,101,40,39,47,115,116,114,101,97,109,39,41,59,92,110,32,42,32,106,81,117,101,114,121,40,115,111,117,114,99,101,41,46,111,110,40,39,109,101,115,115,97,103,101,39,44,32,100,101,98,111,117,110,99,101,100,41,59,92,110,32,42,92,110,32,42,32,47,47,32,67,97,110,99,101,108,32,116,104,101,32,116,114,97,105,108,105,110,103,32,100,101,98,111,117,110,99,101,100,32,105,110,118,111,99,97,116,105,111,110,46,92,110,32,42,32,106,81,117,101,114,121,40,119,105,110,100,111,119,41,46,111,110,40,39,112,111,112,115,116,97,116,101,39,44,32,100,101,98,111,117,110,99,101,100,46,99,97,110,99,101,108,41,59,92,110,32,42,47,92,110,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,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,108,97,115,116,65,114,103,115,44,92,110,32,32,32,32,32,32,108,97,115,116,84,104,105,115,44,92,110,32,32,32,32,32,32,109,97,120,87,97,105,116,44,92,110,32,32,32,32,32,32,114,101,115,117,108,116,44,92,110,32,32,32,32,32,32,116,105,109,101,114,73,100,44,92,110,32,32,32,32,32,32,108,97,115,116,67,97,108,108,84,105,109,101,44,92,110,32,32,32,32,32,32,108,97,115,116,73,110,118,111,107,101,84,105,109,101,32,61,32,48,44,92,110,32,32,32,32,32,32,108,101,97,100,105,110,103,32,61,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,109,97,120,105,110,103,32,61,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,116,114,97,105,108,105,110,103,32,61,32,116,114,117,101,59,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,102,117,110,99,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,70,85,78,67,95,69,82,82,79,82,95,84,69,88,84,41,59,92,110,32,32,125,92,110,32,32,119,97,105,116,32,61,32,116,111,78,117,109,98,101,114,40,119,97,105,116,41,32,124,124,32,48,59,92,110,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,111,112,116,105,111,110,115,41,41,32,123,92,110,32,32,32,32,108,101,97,100,105,110,103,32,61,32,33,33,111,112,116,105,111,110,115,46,108,101,97,100,105,110,103,59,92,110,32,32,32,32,109,97,120,105,110,103,32,61,32,39,109,97,120,87,97,105,116,39,32,105,110,32,111,112,116,105,111,110,115,59,92,110,32,32,32,32,109,97,120,87,97,105,116,32,61,32,109,97,120,105,110,103,32,63,32,110,97,116,105,118,101,77,97,120,40,116,111,78,117,109,98,101,114,40,111,112,116,105,111,110,115,46,109,97,120,87,97,105,116,41,32,124,124,32,48,44,32,119,97,105,116,41,32,58,32,109,97,120,87,97,105,116,59,92,110,32,32,32,32,116,114,97,105,108,105,110,103,32,61,32,39,116,114,97,105,108,105,110,103,39,32,105,110,32,111,112,116,105,111,110,115,32,63,32,33,33,111,112,116,105,111,110,115,46,116,114,97,105,108,105,110,103,32,58,32,116,114,97,105,108,105,110,103,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,70,117,110,99,40,116,105,109,101,41,32,123,92,110,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,108,97,115,116,65,114,103,115,44,92,110,32,32,32,32,32,32,32,32,116,104,105,115,65,114,103,32,61,32,108,97,115,116,84,104,105,115,59,92,110,92,110,32,32,32,32,108,97,115,116,65,114,103,115,32,61,32,108,97,115,116,84,104,105,115,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,108,97,115,116,73,110,118,111,107,101,84,105,109,101,32,61,32,116,105,109,101,59,92,110,32,32,32,32,114,101,115,117,108,116,32,61,32,102,117,110,99,46,97,112,112,108,121,40,116,104,105,115,65,114,103,44,32,97,114,103,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,108,101,97,100,105,110,103,69,100,103,101,40,116,105,109,101,41,32,123,92,110,32,32,32,32,47,47,32,82,101,115,101,116,32,97,110,121,32,96,109,97,120,87,97,105,116,96,32,116,105,109,101,114,46,92,110,32,32,32,32,108,97,115,116,73,110,118,111,107,101,84,105,109,101,32,61,32,116,105,109,101,59,92,110,32,32,32,32,47,47,32,83,116,97,114,116,32,116,104,101,32,116,105,109,101,114,32,102,111,114,32,116,104,101,32,116,114,97,105,108,105,110,103,32,101,100,103,101,46,92,110,32,32,32,32,116,105,109,101,114,73,100,32,61,32,115,101,116,84,105,109,101,111,117,116,40,116,105,109,101,114,69,120,112,105,114,101,100,44,32,119,97,105,116,41,59,92,110,32,32,32,32,47,47,32,73,110,118,111,107,101,32,116,104,101,32,108,101,97,100,105,110,103,32,101,100,103,101,46,92,110,32,32,32,32,114,101,116,117,114,110,32,108,101,97,100,105,110,103,32,63,32,105,110,118,111,107,101,70,117,110,99,40,116,105,109,101,41,32,58,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,109,97,105,110,105,110,103,87,97,105,116,40,116,105,109,101,41,32,123,92,110,32,32,32,32,118,97,114,32,116,105,109,101,83,105,110,99,101,76,97,115,116,67,97,108,108,32,61,32,116,105,109,101,32,45,32,108,97,115,116,67,97,108,108,84,105,109,101,44,92,110,32,32,32,32,32,32,32,32,116,105,109,101,83,105,110,99,101,76,97,115,116,73,110,118,111,107,101,32,61,32,116,105,109,101,32,45,32,108,97,115,116,73,110,118,111,107,101,84,105,109,101,44,92,110,32,32,32,32,32,32,32,32,116,105,109,101,87,97,105,116,105,110,103,32,61,32,119,97,105,116,32,45,32,116,105,109,101,83,105,110,99,101,76,97,115,116,67,97,108,108,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,109,97,120,105,110,103,92,110,32,32,32,32,32,32,63,32,110,97,116,105,118,101,77,105,110,40,116,105,109,101,87,97,105,116,105,110,103,44,32,109,97,120,87,97,105,116,32,45,32,116,105,109,101,83,105,110,99,101,76,97,115,116,73,110,118,111,107,101,41,92,110,32,32,32,32,32,32,58,32,116,105,109,101,87,97,105,116,105,110,103,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,73,110,118,111,107,101,40,116,105,109,101,41,32,123,92,110,32,32,32,32,118,97,114,32,116,105,109,101,83,105,110,99,101,76,97,115,116,67,97,108,108,32,61,32,116,105,109,101,32,45,32,108,97,115,116,67,97,108,108,84,105,109,101,44,92,110,32,32,32,32,32,32,32,32,116,105,109,101,83,105,110,99,101,76,97,115,116,73,110,118,111,107,101,32,61,32,116,105,109,101,32,45,32,108,97,115,116,73,110,118,111,107,101,84,105,109,101,59,92,110,92,110,32,32,32,32,47,47,32,69,105,116,104,101,114,32,116,104,105,115,32,105,115,32,116,104,101,32,102,105,114,115,116,32,99,97,108,108,44,32,97,99,116,105,118,105,116,121,32,104,97,115,32,115,116,111,112,112,101,100,32,97,110,100,32,119,101,39,114,101,32,97,116,32,116,104,101,92,110,32,32,32,32,47,47,32,116,114,97,105,108,105,110,103,32,101,100,103,101,44,32,116,104,101,32,115,121,115,116,101,109,32,116,105,109,101,32,104,97,115,32,103,111,110,101,32,98,97,99,107,119,97,114,100,115,32,97,110,100,32,119,101,39,114,101,32,116,114,101,97,116,105,110,103,92,110,32,32,32,32,47,47,32,105,116,32,97,115,32,116,104,101,32,116,114,97,105,108,105,110,103,32,101,100,103,101,44,32,111,114,32,119,101,39,118,101,32,104,105,116,32,116,104,101,32,96,109,97,120,87,97,105,116,96,32,108,105,109,105,116,46,92,110,32,32,32,32,114,101,116,117,114,110,32,40,108,97,115,116,67,97,108,108,84,105,109,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,32,40,116,105,109,101,83,105,110,99,101,76,97,115,116,67,97,108,108,32,62,61,32,119,97,105,116,41,32,124,124,92,110,32,32,32,32,32,32,40,116,105,109,101,83,105,110,99,101,76,97,115,116,67,97,108,108,32,60,32,48,41,32,124,124,32,40,109,97,120,105,110,103,32,38,38,32,116,105,109,101,83,105,110,99,101,76,97,115,116,73,110,118,111,107,101,32,62,61,32,109,97,120,87,97,105,116,41,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,105,109,101,114,69,120,112,105,114,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,116,105,109,101,32,61,32,110,111,119,40,41,59,92,110,32,32,32,32,105,102,32,40,115,104,111,117,108,100,73,110,118,111,107,101,40,116,105,109,101,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,105,108,105,110,103,69,100,103,101,40,116,105,109,101,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,82,101,115,116,97,114,116,32,116,104,101,32,116,105,109,101,114,46,92,110,32,32,32,32,116,105,109,101,114,73,100,32,61,32,115,101,116,84,105,109,101,111,117,116,40,116,105,109,101,114,69,120,112,105,114,101,100,44,32,114,101,109,97,105,110,105,110,103,87,97,105,116,40,116,105,109,101,41,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,116,114,97,105,108,105,110,103,69,100,103,101,40,116,105,109,101,41,32,123,92,110,32,32,32,32,116,105,109,101,114,73,100,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,47,47,32,79,110,108,121,32,105,110,118,111,107,101,32,105,102,32,119,101,32,104,97,118,101,32,96,108,97,115,116,65,114,103,115,96,32,119,104,105,99,104,32,109,101,97,110,115,32,96,102,117,110,99,96,32,104,97,115,32,98,101,101,110,92,110,32,32,32,32,47,47,32,100,101,98,111,117,110,99,101,100,32,97,116,32,108,101,97,115,116,32,111,110,99,101,46,92,110,32,32,32,32,105,102,32,40,116,114,97,105,108,105,110,103,32,38,38,32,108,97,115,116,65,114,103,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,118,111,107,101,70,117,110,99,40,116,105,109,101,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,108,97,115,116,65,114,103,115,32,61,32,108,97,115,116,84,104,105,115,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,97,110,99,101,108,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,105,109,101,114,73,100,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,105,109,101,114,73,100,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,108,97,115,116,73,110,118,111,107,101,84,105,109,101,32,61,32,48,59,92,110,32,32,32,32,108,97,115,116,65,114,103,115,32,61,32,108,97,115,116,67,97,108,108,84,105,109,101,32,61,32,108,97,115,116,84,104,105,115,32,61,32,116,105,109,101,114,73,100,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,108,117,115,104,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,105,109,101,114,73,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,114,101,115,117,108,116,32,58,32,116,114,97,105,108,105,110,103,69,100,103,101,40,110,111,119,40,41,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,100,101,98,111,117,110,99,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,116,105,109,101,32,61,32,110,111,119,40,41,44,92,110,32,32,32,32,32,32,32,32,105,115,73,110,118,111,107,105,110,103,32,61,32,115,104,111,117,108,100,73,110,118,111,107,101,40,116,105,109,101,41,59,92,110,92,110,32,32,32,32,108,97,115,116,65,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,59,92,110,32,32,32,32,108,97,115,116,84,104,105,115,32,61,32,116,104,105,115,59,92,110,32,32,32,32,108,97,115,116,67,97,108,108,84,105,109,101,32,61,32,116,105,109,101,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,73,110,118,111,107,105,110,103,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,105,109,101,114,73,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,101,97,100,105,110,103,69,100,103,101,40,108,97,115,116,67,97,108,108,84,105,109,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,109,97,120,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,105,110,118,111,99,97,116,105,111,110,115,32,105,110,32,97,32,116,105,103,104,116,32,108,111,111,112,46,92,110,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,114,73,100,41,59,92,110,32,32,32,32,32,32,32,32,116,105,109,101,114,73,100,32,61,32,115,101,116,84,105,109,101,111,117,116,40,116,105,109,101,114,69,120,112,105,114,101,100,44,32,119,97,105,116,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,118,111,107,101,70,117,110,99,40,108,97,115,116,67,97,108,108,84,105,109,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,116,105,109,101,114,73,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,116,105,109,101,114,73,100,32,61,32,115,101,116,84,105,109,101,111,117,116,40,116,105,109,101,114,69,120,112,105,114,101,100,44,32,119,97,105,116,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,32,32,100,101,98,111,117,110,99,101,100,46,99,97,110,99,101,108,32,61,32,99,97,110,99,101,108,59,92,110,32,32,100,101,98,111,117,110,99,101,100,46,102,108,117,115,104,32,61,32,102,108,117,115,104,59,92,110,32,32,114,101,116,117,114,110,32,100,101,98,111,117,110,99,101,100,59,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,100,101,98,111,117,110,99,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,100,101,98,111,117,110,99,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,105,115,79,98,106,101,99,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,105,115,79,98,106,101,99,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,47,42,42,92,110,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,116,104,101,92,110,32,42,32,91,108,97,110,103,117,97,103,101,32,116,121,112,101,93,40,104,116,116,112,58,47,47,119,119,119,46,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,101,99,109,97,115,99,114,105,112,116,45,108,97,110,103,117,97,103,101,45,116,121,112,101,115,41,92,110,32,42,32,111,102,32,96,79,98,106,101,99,116,96,46,32,40,101,46,103,46,32,97,114,114,97,121,115,44,32,102,117,110,99,116,105,111,110,115,44,32,111,98,106,101,99,116,115,44,32,114,101,103,101,120,101,115,44,32,96,110,101,119,32,78,117,109,98,101,114,40,48,41,96,44,32,97,110,100,32,96,110,101,119,32,83,116,114,105,110,103,40,39,39,41,96,41,92,110,32,42,92,110,32,42,32,64,115,116,97,116,105,99,92,110,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,110,32,111,98,106,101,99,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,92,110,32,42,32,95,46,105,115,79,98,106,101,99,116,40,123,125,41,59,92,110,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,42,92,110,32,42,32,95,46,105,115,79,98,106,101,99,116,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,42,92,110,32,42,32,95,46,105,115,79,98,106,101,99,116,40,95,46,110,111,111,112,41,59,92,110,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,42,92,110,32,42,32,95,46,105,115,79,98,106,101,99,116,40,110,117,108,108,41,59,92,110,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,79,98,106,101,99,116,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,116,121,112,101,32,61,32,116,121,112,101,111,102,32,118,97,108,117,101,59,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,33,61,32,110,117,108,108,32,38,38,32,40,116,121,112,101,32,61,61,32,39,111,98,106,101,99,116,39,32,124,124,32,116,121,112,101,32,61,61,32,39,102,117,110,99,116,105,111,110,39,41,59,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,105,115,79,98,106,101,99,116,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,105,115,79,98,106,101,99,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,105,115,79,98,106,101,99,116,76,105,107,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,105,115,79,98,106,101,99,116,76,105,107,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,47,42,42,92,110,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,111,98,106,101,99,116,45,108,105,107,101,46,32,65,32,118,97,108,117,101,32,105,115,32,111,98,106,101,99,116,45,108,105,107,101,32,105,102,32,105,116,39,115,32,110,111,116,32,96,110,117,108,108,96,92,110,32,42,32,97,110,100,32,104,97,115,32,97,32,96,116,121,112,101,111,102,96,32,114,101,115,117,108,116,32,111,102,32,92,34,111,98,106,101,99,116,92,34,46,92,110,32,42,92,110,32,42,32,64,115,116,97,116,105,99,92,110,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,111,98,106,101,99,116,45,108,105,107,101,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,92,110,32,42,32,95,46,105,115,79,98,106,101,99,116,76,105,107,101,40,123,125,41,59,92,110,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,42,92,110,32,42,32,95,46,105,115,79,98,106,101,99,116,76,105,107,101,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,42,92,110,32,42,32,95,46,105,115,79,98,106,101,99,116,76,105,107,101,40,95,46,110,111,111,112,41,59,92,110,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,42,92,110,32,42,32,95,46,105,115,79,98,106,101,99,116,76,105,107,101,40,110,117,108,108,41,59,92,110,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,33,61,32,110,117,108,108,32,38,38,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,111,98,106,101,99,116,39,59,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,105,115,79,98,106,101,99,116,76,105,107,101,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,105,115,79,98,106,101,99,116,76,105,107,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,105,115,83,121,109,98,111,108,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,105,115,83,121,109,98,111,108,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,98,97,115,101,71,101,116,84,97,103,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,98,97,115,101,71,101,116,84,97,103,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,98,97,115,101,71,101,116,84,97,103,46,106,115,92,34,41,44,92,110,32,32,32,32,105,115,79,98,106,101,99,116,76,105,107,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,115,79,98,106,101,99,116,76,105,107,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,105,115,79,98,106,101,99,116,76,105,107,101,46,106,115,92,34,41,59,92,110,92,110,47,42,42,32,96,79,98,106,101,99,116,35,116,111,83,116,114,105,110,103,96,32,114,101,115,117,108,116,32,114,101,102,101,114,101,110,99,101,115,46,32,42,47,92,110,118,97,114,32,115,121,109,98,111,108,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,39,59,92,110,92,110,47,42,42,92,110,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,97,32,96,83,121,109,98,111,108,96,32,112,114,105,109,105,116,105,118,101,32,111,114,32,111,98,106,101,99,116,46,92,110,32,42,92,110,32,42,32,64,115,116,97,116,105,99,92,110,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,115,121,109,98,111,108,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,92,110,32,42,32,95,46,105,115,83,121,109,98,111,108,40,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,41,59,92,110,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,42,92,110,32,42,32,95,46,105,115,83,121,109,98,111,108,40,39,97,98,99,39,41,59,92,110,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,83,121,109,98,111,108,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,115,121,109,98,111,108,39,32,124,124,92,110,32,32,32,32,40,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,32,61,61,32,115,121,109,98,111,108,84,97,103,41,59,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,105,115,83,121,109,98,111,108,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,105,115,83,121,109,98,111,108,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,108,111,100,97,115,104,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,108,111,100,97,115,104,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,42,32,109,111,100,117,108,101,32,100,101,99,111,114,97,116,111,114,32,42,47,32,109,111,100,117,108,101,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,109,100,40,109,111,100,117,108,101,41,59,92,110,118,97,114,32,95,95,87,69,66,80,65,67,75,95,65,77,68,95,68,69,70,73,78,69,95,82,69,83,85,76,84,95,95,59,47,42,42,92,110,32,42,32,64,108,105,99,101,110,115,101,92,110,32,42,32,76,111,100,97,115,104,32,60,104,116,116,112,115,58,47,47,108,111,100,97,115,104,46,99,111,109,47,62,92,110,32,42,32,67,111,112,121,114,105,103,104,116,32,79,112,101,110,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,60,104,116,116,112,115,58,47,47,111,112,101,110,106,115,102,46,111,114,103,47,62,92,110,32,42,32,82,101,108,101,97,115,101,100,32,117,110,100,101,114,32,77,73,84,32,108,105,99,101,110,115,101,32,60,104,116,116,112,115,58,47,47,108,111,100,97,115,104,46,99,111,109,47,108,105,99,101,110,115,101,62,92,110,32,42,32,66,97,115,101,100,32,111,110,32,85,110,100,101,114,115,99,111,114,101,46,106,115,32,49,46,56,46,51,32,60,104,116,116,112,58,47,47,117,110,100,101,114,115,99,111,114,101,106,115,46,111,114,103,47,76,73,67,69,78,83,69,62,92,110,32,42,32,67,111,112,121,114,105,103,104,116,32,74,101,114,101,109,121,32,65,115,104,107,101,110,97,115,44,32,68,111,99,117,109,101,110,116,67,108,111,117,100,32,97,110,100,32,73,110,118,101,115,116,105,103,97,116,105,118,101,32,82,101,112,111,114,116,101,114,115,32,38,32,69,100,105,116,111,114,115,92,110,32,42,47,92,110,59,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,97,115,32,97,32,115,97,102,101,32,114,101,102,101,114,101,110,99,101,32,102,111,114,32,96,117,110,100,101,102,105,110,101,100,96,32,105,110,32,112,114,101,45,69,83,53,32,101,110,118,105,114,111,110,109,101,110,116,115,46,32,42,47,92,110,32,32,118,97,114,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,97,115,32,116,104,101,32,115,101,109,97,110,116,105,99,32,118,101,114,115,105,111,110,32,110,117,109,98,101,114,46,32,42,47,92,110,32,32,118,97,114,32,86,69,82,83,73,79,78,32,61,32,39,52,46,49,55,46,50,49,39,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,97,115,32,116,104,101,32,115,105,122,101,32,116,111,32,101,110,97,98,108,101,32,108,97,114,103,101,32,97,114,114,97,121,32,111,112,116,105,109,105,122,97,116,105,111,110,115,46,32,42,47,92,110,32,32,118,97,114,32,76,65,82,71,69,95,65,82,82,65,89,95,83,73,90,69,32,61,32,50,48,48,59,92,110,92,110,32,32,47,42,42,32,69,114,114,111,114,32,109,101,115,115,97,103,101,32,99,111,110,115,116,97,110,116,115,46,32,42,47,92,110,32,32,118,97,114,32,67,79,82,69,95,69,82,82,79,82,95,84,69,88,84,32,61,32,39,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,39,44,92,110,32,32,32,32,32,32,70,85,78,67,95,69,82,82,79,82,95,84,69,88,84,32,61,32,39,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,39,44,92,110,32,32,32,32,32,32,73,78,86,65,76,73,68,95,84,69,77,80,76,95,86,65,82,95,69,82,82,79,82,95,84,69,88,84,32,61,32,39,73,110,118,97,108,105,100,32,96,118,97,114,105,97,98,108,101,96,32,111,112,116,105,111,110,32,112,97,115,115,101,100,32,105,110,116,111,32,96,95,46,116,101,109,112,108,97,116,101,96,39,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,115,116,97,110,100,45,105,110,32,102,111,114,32,96,117,110,100,101,102,105,110,101,100,96,32,104,97,115,104,32,118,97,108,117,101,115,46,32,42,47,92,110,32,32,118,97,114,32,72,65,83,72,95,85,78,68,69,70,73,78,69,68,32,61,32,39,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,39,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,97,115,32,116,104,101,32,109,97,120,105,109,117,109,32,109,101,109,111,105,122,101,32,99,97,99,104,101,32,115,105,122,101,46,32,42,47,92,110,32,32,118,97,114,32,77,65,88,95,77,69,77,79,73,90,69,95,83,73,90,69,32,61,32,53,48,48,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,97,115,32,116,104,101,32,105,110,116,101,114,110,97,108,32,97,114,103,117,109,101,110,116,32,112,108,97,99,101,104,111,108,100,101,114,46,32,42,47,92,110,32,32,118,97,114,32,80,76,65,67,69,72,79,76,68,69,82,32,61,32,39,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,39,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,99,111,109,112,111,115,101,32,98,105,116,109,97,115,107,115,32,102,111,114,32,99,108,111,110,105,110,103,46,32,42,47,92,110,32,32,118,97,114,32,67,76,79,78,69,95,68,69,69,80,95,70,76,65,71,32,61,32,49,44,92,110,32,32,32,32,32,32,67,76,79,78,69,95,70,76,65,84,95,70,76,65,71,32,61,32,50,44,92,110,32,32,32,32,32,32,67,76,79,78,69,95,83,89,77,66,79,76,83,95,70,76,65,71,32,61,32,52,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,99,111,109,112,111,115,101,32,98,105,116,109,97,115,107,115,32,102,111,114,32,118,97,108,117,101,32,99,111,109,112,97,114,105,115,111,110,115,46,32,42,47,92,110,32,32,118,97,114,32,67,79,77,80,65,82,69,95,80,65,82,84,73,65,76,95,70,76,65,71,32,61,32,49,44,92,110,32,32,32,32,32,32,67,79,77,80,65,82,69,95,85,78,79,82,68,69,82,69,68,95,70,76,65,71,32,61,32,50,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,99,111,109,112,111,115,101,32,98,105,116,109,97,115,107,115,32,102,111,114,32,102,117,110,99,116,105,111,110,32,109,101,116,97,100,97,116,97,46,32,42,47,92,110,32,32,118,97,114,32,87,82,65,80,95,66,73,78,68,95,70,76,65,71,32,61,32,49,44,92,110,32,32,32,32,32,32,87,82,65,80,95,66,73,78,68,95,75,69,89,95,70,76,65,71,32,61,32,50,44,92,110,32,32,32,32,32,32,87,82,65,80,95,67,85,82,82,89,95,66,79,85,78,68,95,70,76,65,71,32,61,32,52,44,92,110,32,32,32,32,32,32,87,82,65,80,95,67,85,82,82,89,95,70,76,65,71,32,61,32,56,44,92,110,32,32,32,32,32,32,87,82,65,80,95,67,85,82,82,89,95,82,73,71,72,84,95,70,76,65,71,32,61,32,49,54,44,92,110,32,32,32,32,32,32,87,82,65,80,95,80,65,82,84,73,65,76,95,70,76,65,71,32,61,32,51,50,44,92,110,32,32,32,32,32,32,87,82,65,80,95,80,65,82,84,73,65,76,95,82,73,71,72,84,95,70,76,65,71,32,61,32,54,52,44,92,110,32,32,32,32,32,32,87,82,65,80,95,65,82,89,95,70,76,65,71,32,61,32,49,50,56,44,92,110,32,32,32,32,32,32,87,82,65,80,95,82,69,65,82,71,95,70,76,65,71,32,61,32,50,53,54,44,92,110,32,32,32,32,32,32,87,82,65,80,95,70,76,73,80,95,70,76,65,71,32,61,32,53,49,50,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,97,115,32,100,101,102,97,117,108,116,32,111,112,116,105,111,110,115,32,102,111,114,32,96,95,46,116,114,117,110,99,97,116,101,96,46,32,42,47,92,110,32,32,118,97,114,32,68,69,70,65,85,76,84,95,84,82,85,78,67,95,76,69,78,71,84,72,32,61,32,51,48,44,92,110,32,32,32,32,32,32,68,69,70,65,85,76,84,95,84,82,85,78,67,95,79,77,73,83,83,73,79,78,32,61,32,39,46,46,46,39,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,104,111,116,32,102,117,110,99,116,105,111,110,115,32,98,121,32,110,117,109,98,101,114,32,111,102,32,99,97,108,108,115,32,119,105,116,104,105,110,32,97,32,115,112,97,110,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,46,32,42,47,92,110,32,32,118,97,114,32,72,79,84,95,67,79,85,78,84,32,61,32,56,48,48,44,92,110,32,32,32,32,32,32,72,79,84,95,83,80,65,78,32,61,32,49,54,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,105,110,100,105,99,97,116,101,32,116,104,101,32,116,121,112,101,32,111,102,32,108,97,122,121,32,105,116,101,114,97,116,101,101,115,46,32,42,47,92,110,32,32,118,97,114,32,76,65,90,89,95,70,73,76,84,69,82,95,70,76,65,71,32,61,32,49,44,92,110,32,32,32,32,32,32,76,65,90,89,95,77,65,80,95,70,76,65,71,32,61,32,50,44,92,110,32,32,32,32,32,32,76,65,90,89,95,87,72,73,76,69,95,70,76,65,71,32,61,32,51,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,97,115,32,114,101,102,101,114,101,110,99,101,115,32,102,111,114,32,118,97,114,105,111,117,115,32,96,78,117,109,98,101,114,96,32,99,111,110,115,116,97,110,116,115,46,32,42,47,92,110,32,32,118,97,114,32,73,78,70,73,78,73,84,89,32,61,32,49,32,47,32,48,44,92,110,32,32,32,32,32,32,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,32,61,32,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,44,92,110,32,32,32,32,32,32,77,65,88,95,73,78,84,69,71,69,82,32,61,32,49,46,55,57,55,54,57,51,49,51,52,56,54,50,51,49,53,55,101,43,51,48,56,44,92,110,32,32,32,32,32,32,78,65,78,32,61,32,48,32,47,32,48,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,97,115,32,114,101,102,101,114,101,110,99,101,115,32,102,111,114,32,116,104,101,32,109,97,120,105,109,117,109,32,108,101,110,103,116,104,32,97,110,100,32,105,110,100,101,120,32,111,102,32,97,110,32,97,114,114,97,121,46,32,42,47,92,110,32,32,118,97,114,32,77,65,88,95,65,82,82,65,89,95,76,69,78,71,84,72,32,61,32,52,50,57,52,57,54,55,50,57,53,44,92,110,32,32,32,32,32,32,77,65,88,95,65,82,82,65,89,95,73,78,68,69,88,32,61,32,77,65,88,95,65,82,82,65,89,95,76,69,78,71,84,72,32,45,32,49,44,92,110,32,32,32,32,32,32,72,65,76,70,95,77,65,88,95,65,82,82,65,89,95,76,69,78,71,84,72,32,61,32,77,65,88,95,65,82,82,65,89,95,76,69,78,71,84,72,32,62,62,62,32,49,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,97,115,115,111,99,105,97,116,101,32,119,114,97,112,32,109,101,116,104,111,100,115,32,119,105,116,104,32,116,104,101,105,114,32,98,105,116,32,102,108,97,103,115,46,32,42,47,92,110,32,32,118,97,114,32,119,114,97,112,70,108,97,103,115,32,61,32,91,92,110,32,32,32,32,91,39,97,114,121,39,44,32,87,82,65,80,95,65,82,89,95,70,76,65,71,93,44,92,110,32,32,32,32,91,39,98,105,110,100,39,44,32,87,82,65,80,95,66,73,78,68,95,70,76,65,71,93,44,92,110,32,32,32,32,91,39,98,105,110,100,75,101,121,39,44,32,87,82,65,80,95,66,73,78,68,95,75,69,89,95,70,76,65,71,93,44,92,110,32,32,32,32,91,39,99,117,114,114,121,39,44,32,87,82,65,80,95,67,85,82,82,89,95,70,76,65,71,93,44,92,110,32,32,32,32,91,39,99,117,114,114,121,82,105,103,104,116,39,44,32,87,82,65,80,95,67,85,82,82,89,95,82,73,71,72,84,95,70,76,65,71,93,44,92,110,32,32,32,32,91,39,102,108,105,112,39,44,32,87,82,65,80,95,70,76,73,80,95,70,76,65,71,93,44,92,110,32,32,32,32,91,39,112,97,114,116,105,97,108,39,44,32,87,82,65,80,95,80,65,82,84,73,65,76,95,70,76,65,71,93,44,92,110,32,32,32,32,91,39,112,97,114,116,105,97,108,82,105,103,104,116,39,44,32,87,82,65,80,95,80,65,82,84,73,65,76,95,82,73,71,72,84,95,70,76,65,71,93,44,92,110,32,32,32,32,91,39,114,101,97,114,103,39,44,32,87,82,65,80,95,82,69,65,82,71,95,70,76,65,71,93,92,110,32,32,93,59,92,110,92,110,32,32,47,42,42,32,96,79,98,106,101,99,116,35,116,111,83,116,114,105,110,103,96,32,114,101,115,117,108,116,32,114,101,102,101,114,101,110,99,101,115,46,32,42,47,92,110,32,32,118,97,114,32,97,114,103,115,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,39,44,92,110,32,32,32,32,32,32,97,114,114,97,121,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,65,114,114,97,121,93,39,44,92,110,32,32,32,32,32,32,97,115,121,110,99,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,65,115,121,110,99,70,117,110,99,116,105,111,110,93,39,44,92,110,32,32,32,32,32,32,98,111,111,108,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,39,44,92,110,32,32,32,32,32,32,100,97,116,101,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,68,97,116,101,93,39,44,92,110,32,32,32,32,32,32,100,111,109,69,120,99,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,68,79,77,69,120,99,101,112,116,105,111,110,93,39,44,92,110,32,32,32,32,32,32,101,114,114,111,114,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,69,114,114,111,114,93,39,44,92,110,32,32,32,32,32,32,102,117,110,99,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,39,44,92,110,32,32,32,32,32,32,103,101,110,84,97,103,32,61,32,39,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,39,44,92,110,32,32,32,32,32,32,109,97,112,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,77,97,112,93,39,44,92,110,32,32,32,32,32,32,110,117,109,98,101,114,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,39,44,92,110,32,32,32,32,32,32,110,117,108,108,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,78,117,108,108,93,39,44,92,110,32,32,32,32,32,32,111,98,106,101,99,116,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,39,44,92,110,32,32,32,32,32,32,112,114,111,109,105,115,101,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,39,44,92,110,32,32,32,32,32,32,112,114,111,120,121,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,80,114,111,120,121,93,39,44,92,110,32,32,32,32,32,32,114,101,103,101,120,112,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,39,44,92,110,32,32,32,32,32,32,115,101,116,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,83,101,116,93,39,44,92,110,32,32,32,32,32,32,115,116,114,105,110,103,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,39,44,92,110,32,32,32,32,32,32,115,121,109,98,111,108,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,39,44,92,110,32,32,32,32,32,32,117,110,100,101,102,105,110,101,100,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,85,110,100,101,102,105,110,101,100,93,39,44,92,110,32,32,32,32,32,32,119,101,97,107,77,97,112,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,39,44,92,110,32,32,32,32,32,32,119,101,97,107,83,101,116,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,87,101,97,107,83,101,116,93,39,59,92,110,92,110,32,32,118,97,114,32,97,114,114,97,121,66,117,102,102,101,114,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,39,44,92,110,32,32,32,32,32,32,100,97,116,97,86,105,101,119,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,39,44,92,110,32,32,32,32,32,32,102,108,111,97,116,51,50,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,39,44,92,110,32,32,32,32,32,32,102,108,111,97,116,54,52,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,39,44,92,110,32,32,32,32,32,32,105,110,116,56,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,39,44,92,110,32,32,32,32,32,32,105,110,116,49,54,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,39,44,92,110,32,32,32,32,32,32,105,110,116,51,50,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,39,44,92,110,32,32,32,32,32,32,117,105,110,116,56,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,39,44,92,110,32,32,32,32,32,32,117,105,110,116,56,67,108,97,109,112,101,100,84,97,103,32,61,32,39,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,39,44,92,110,32,32,32,32,32,32,117,105,110,116,49,54,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,39,44,92,110,32,32,32,32,32,32,117,105,110,116,51,50,84,97,103,32,61,32,39,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,39,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,101,109,112,116,121,32,115,116,114,105,110,103,32,108,105,116,101,114,97,108,115,32,105,110,32,99,111,109,112,105,108,101,100,32,116,101,109,112,108,97,116,101,32,115,111,117,114,99,101,46,32,42,47,92,110,32,32,118,97,114,32,114,101,69,109,112,116,121,83,116,114,105,110,103,76,101,97,100,105,110,103,32,61,32,47,92,92,98,95,95,112,32,92,92,43,61,32,39,39,59,47,103,44,92,110,32,32,32,32,32,32,114,101,69,109,112,116,121,83,116,114,105,110,103,77,105,100,100,108,101,32,61,32,47,92,92,98,40,95,95,112,32,92,92,43,61,41,32,39,39,32,92,92,43,47,103,44,92,110,32,32,32,32,32,32,114,101,69,109,112,116,121,83,116,114,105,110,103,84,114,97,105,108,105,110,103,32,61,32,47,40,95,95,101,92,92,40,46,42,63,92,92,41,124,92,92,98,95,95,116,92,92,41,41,32,92,92,43,92,92,110,39,39,59,47,103,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,72,84,77,76,32,101,110,116,105,116,105,101,115,32,97,110,100,32,72,84,77,76,32,99,104,97,114,97,99,116,101,114,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,69,115,99,97,112,101,100,72,116,109,108,32,61,32,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,92,110,32,32,32,32,32,32,114,101,85,110,101,115,99,97,112,101,100,72,116,109,108,32,61,32,47,91,38,60,62,92,34,39,93,47,103,44,92,110,32,32,32,32,32,32,114,101,72,97,115,69,115,99,97,112,101,100,72,116,109,108,32,61,32,82,101,103,69,120,112,40,114,101,69,115,99,97,112,101,100,72,116,109,108,46,115,111,117,114,99,101,41,44,92,110,32,32,32,32,32,32,114,101,72,97,115,85,110,101,115,99,97,112,101,100,72,116,109,108,32,61,32,82,101,103,69,120,112,40,114,101,85,110,101,115,99,97,112,101,100,72,116,109,108,46,115,111,117,114,99,101,41,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,116,101,109,112,108,97,116,101,32,100,101,108,105,109,105,116,101,114,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,69,115,99,97,112,101,32,61,32,47,60,37,45,40,91,92,92,115,92,92,83,93,43,63,41,37,62,47,103,44,92,110,32,32,32,32,32,32,114,101,69,118,97,108,117,97,116,101,32,61,32,47,60,37,40,91,92,92,115,92,92,83,93,43,63,41,37,62,47,103,44,92,110,32,32,32,32,32,32,114,101,73,110,116,101,114,112,111,108,97,116,101,32,61,32,47,60,37,61,40,91,92,92,115,92,92,83,93,43,63,41,37,62,47,103,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,119,105,116,104,105,110,32,112,114,111,112,101,114,116,121,32,112,97,116,104,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,73,115,68,101,101,112,80,114,111,112,32,61,32,47,92,92,46,124,92,92,91,40,63,58,91,94,91,92,92,93,93,42,124,40,91,92,34,39,93,41,40,63,58,40,63,33,92,92,49,41,91,94,92,92,92,92,93,124,92,92,92,92,46,41,42,63,92,92,49,41,92,92,93,47,44,92,110,32,32,32,32,32,32,114,101,73,115,80,108,97,105,110,80,114,111,112,32,61,32,47,94,92,92,119,42,36,47,44,92,110,32,32,32,32,32,32,114,101,80,114,111,112,78,97,109,101,32,61,32,47,91,94,46,91,92,92,93,93,43,124,92,92,91,40,63,58,40,45,63,92,92,100,43,40,63,58,92,92,46,92,92,100,43,41,63,41,124,40,91,92,34,39,93,41,40,40,63,58,40,63,33,92,92,50,41,91,94,92,92,92,92,93,124,92,92,92,92,46,41,42,63,41,92,92,50,41,92,92,93,124,40,63,61,40,63,58,92,92,46,124,92,92,91,92,92,93,41,40,63,58,92,92,46,124,92,92,91,92,92,93,124,36,41,41,47,103,59,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,96,82,101,103,69,120,112,96,92,110,32,32,32,42,32,91,115,121,110,116,97,120,32,99,104,97,114,97,99,116,101,114,115,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,112,97,116,116,101,114,110,115,41,46,92,110,32,32,32,42,47,92,110,32,32,118,97,114,32,114,101,82,101,103,69,120,112,67,104,97,114,32,61,32,47,91,92,92,92,92,94,36,46,42,43,63,40,41,91,92,92,93,123,125,124,93,47,103,44,92,110,32,32,32,32,32,32,114,101,72,97,115,82,101,103,69,120,112,67,104,97,114,32,61,32,82,101,103,69,120,112,40,114,101,82,101,103,69,120,112,67,104,97,114,46,115,111,117,114,99,101,41,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,108,101,97,100,105,110,103,32,119,104,105,116,101,115,112,97,99,101,46,32,42,47,92,110,32,32,118,97,114,32,114,101,84,114,105,109,83,116,97,114,116,32,61,32,47,94,92,92,115,43,47,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,97,32,115,105,110,103,108,101,32,119,104,105,116,101,115,112,97,99,101,32,99,104,97,114,97,99,116,101,114,46,32,42,47,92,110,32,32,118,97,114,32,114,101,87,104,105,116,101,115,112,97,99,101,32,61,32,47,92,92,115,47,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,119,114,97,112,32,100,101,116,97,105,108,32,99,111,109,109,101,110,116,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,87,114,97,112,67,111,109,109,101,110,116,32,61,32,47,92,92,123,40,63,58,92,92,110,92,92,47,92,92,42,32,92,92,91,119,114,97,112,112,101,100,32,119,105,116,104,32,46,43,92,92,93,32,92,92,42,92,92,47,41,63,92,92,110,63,47,44,92,110,32,32,32,32,32,32,114,101,87,114,97,112,68,101,116,97,105,108,115,32,61,32,47,92,92,123,92,92,110,92,92,47,92,92,42,32,92,92,91,119,114,97,112,112,101,100,32,119,105,116,104,32,40,46,43,41,92,92,93,32,92,92,42,47,44,92,110,32,32,32,32,32,32,114,101,83,112,108,105,116,68,101,116,97,105,108,115,32,61,32,47,44,63,32,38,32,47,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,119,111,114,100,115,32,99,111,109,112,111,115,101,100,32,111,102,32,97,108,112,104,97,110,117,109,101,114,105,99,32,99,104,97,114,97,99,116,101,114,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,65,115,99,105,105,87,111,114,100,32,61,32,47,91,94,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,55,102,93,43,47,103,59,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,85,115,101,100,32,116,111,32,118,97,108,105,100,97,116,101,32,116,104,101,32,96,118,97,108,105,100,97,116,101,96,32,111,112,116,105,111,110,32,105,110,32,96,95,46,116,101,109,112,108,97,116,101,96,32,118,97,114,105,97,98,108,101,46,92,110,32,32,32,42,92,110,32,32,32,42,32,70,111,114,98,105,100,115,32,99,104,97,114,97,99,116,101,114,115,32,119,104,105,99,104,32,99,111,117,108,100,32,112,111,116,101,110,116,105,97,108,108,121,32,99,104,97,110,103,101,32,116,104,101,32,109,101,97,110,105,110,103,32,111,102,32,116,104,101,32,102,117,110,99,116,105,111,110,32,97,114,103,117,109,101,110,116,32,100,101,102,105,110,105,116,105,111,110,58,92,110,32,32,32,42,32,45,32,92,34,40,41,44,92,34,32,40,109,111,100,105,102,105,99,97,116,105,111,110,32,111,102,32,102,117,110,99,116,105,111,110,32,112,97,114,97,109,101,116,101,114,115,41,92,110,32,32,32,42,32,45,32,92,34,61,92,34,32,40,100,101,102,97,117,108,116,32,118,97,108,117,101,41,92,110,32,32,32,42,32,45,32,92,34,91,93,123,125,92,34,32,40,100,101,115,116,114,117,99,116,117,114,105,110,103,32,111,102,32,102,117,110,99,116,105,111,110,32,112,97,114,97,109,101,116,101,114,115,41,92,110,32,32,32,42,32,45,32,92,34,47,92,34,32,40,98,101,103,105,110,110,105,110,103,32,111,102,32,97,32,99,111,109,109,101,110,116,41,92,110,32,32,32,42,32,45,32,119,104,105,116,101,115,112,97,99,101,92,110,32,32,32,42,47,92,110,32,32,118,97,114,32,114,101,70,111,114,98,105,100,100,101,110,73,100,101,110,116,105,102,105,101,114,67,104,97,114,115,32,61,32,47,91,40,41,61,44,123,125,92,92,91,92,92,93,92,92,47,92,92,115,93,47,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,98,97,99,107,115,108,97,115,104,101,115,32,105,110,32,112,114,111,112,101,114,116,121,32,112,97,116,104,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,69,115,99,97,112,101,67,104,97,114,32,61,32,47,92,92,92,92,40,92,92,92,92,41,63,47,103,59,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,92,110,32,32,32,42,32,91,69,83,32,116,101,109,112,108,97,116,101,32,100,101,108,105,109,105,116,101,114,115,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,116,101,109,112,108,97,116,101,45,108,105,116,101,114,97,108,45,108,101,120,105,99,97,108,45,99,111,109,112,111,110,101,110,116,115,41,46,92,110,32,32,32,42,47,92,110,32,32,118,97,114,32,114,101,69,115,84,101,109,112,108,97,116,101,32,61,32,47,92,92,36,92,92,123,40,91,94,92,92,92,92,125,93,42,40,63,58,92,92,92,92,46,91,94,92,92,92,92,125,93,42,41,42,41,92,92,125,47,103,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,96,82,101,103,69,120,112,96,32,102,108,97,103,115,32,102,114,111,109,32,116,104,101,105,114,32,99,111,101,114,99,101,100,32,115,116,114,105,110,103,32,118,97,108,117,101,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,70,108,97,103,115,32,61,32,47,92,92,119,42,36,47,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,98,97,100,32,115,105,103,110,101,100,32,104,101,120,97,100,101,99,105,109,97,108,32,115,116,114,105,110,103,32,118,97,108,117,101,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,73,115,66,97,100,72,101,120,32,61,32,47,94,91,45,43,93,48,120,91,48,45,57,97,45,102,93,43,36,47,105,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,98,105,110,97,114,121,32,115,116,114,105,110,103,32,118,97,108,117,101,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,73,115,66,105,110,97,114,121,32,61,32,47,94,48,98,91,48,49,93,43,36,47,105,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,104,111,115,116,32,99,111,110,115,116,114,117,99,116,111,114,115,32,40,83,97,102,97,114,105,41,46,32,42,47,92,110,32,32,118,97,114,32,114,101,73,115,72,111,115,116,67,116,111,114,32,61,32,47,94,92,92,91,111,98,106,101,99,116,32,46,43,63,67,111,110,115,116,114,117,99,116,111,114,92,92,93,36,47,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,111,99,116,97,108,32,115,116,114,105,110,103,32,118,97,108,117,101,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,73,115,79,99,116,97,108,32,61,32,47,94,48,111,91,48,45,55,93,43,36,47,105,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,117,110,115,105,103,110,101,100,32,105,110,116,101,103,101,114,32,118,97,108,117,101,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,73,115,85,105,110,116,32,61,32,47,94,40,63,58,48,124,91,49,45,57,93,92,92,100,42,41,36,47,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,76,97,116,105,110,32,85,110,105,99,111,100,101,32,108,101,116,116,101,114,115,32,40,101,120,99,108,117,100,105,110,103,32,109,97,116,104,101,109,97,116,105,99,97,108,32,111,112,101,114,97,116,111,114,115,41,46,32,42,47,92,110,32,32,118,97,114,32,114,101,76,97,116,105,110,32,61,32,47,91,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,92,92,117,48,49,48,48,45,92,92,117,48,49,55,102,93,47,103,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,101,110,115,117,114,101,32,99,97,112,116,117,114,105,110,103,32,111,114,100,101,114,32,111,102,32,116,101,109,112,108,97,116,101,32,100,101,108,105,109,105,116,101,114,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,78,111,77,97,116,99,104,32,61,32,47,40,36,94,41,47,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,117,110,101,115,99,97,112,101,100,32,99,104,97,114,97,99,116,101,114,115,32,105,110,32,99,111,109,112,105,108,101,100,32,115,116,114,105,110,103,32,108,105,116,101,114,97,108,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,85,110,101,115,99,97,112,101,100,83,116,114,105,110,103,32,61,32,47,91,39,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,92,92,93,47,103,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,99,111,109,112,111,115,101,32,117,110,105,99,111,100,101,32,99,104,97,114,97,99,116,101,114,32,99,108,97,115,115,101,115,46,32,42,47,92,110,32,32,118,97,114,32,114,115,65,115,116,114,97,108,82,97,110,103,101,32,61,32,39,92,92,92,92,117,100,56,48,48,45,92,92,92,92,117,100,102,102,102,39,44,92,110,32,32,32,32,32,32,114,115,67,111,109,98,111,77,97,114,107,115,82,97,110,103,101,32,61,32,39,92,92,92,92,117,48,51,48,48,45,92,92,92,92,117,48,51,54,102,39,44,92,110,32,32,32,32,32,32,114,101,67,111,109,98,111,72,97,108,102,77,97,114,107,115,82,97,110,103,101,32,61,32,39,92,92,92,92,117,102,101,50,48,45,92,92,92,92,117,102,101,50,102,39,44,92,110,32,32,32,32,32,32,114,115,67,111,109,98,111,83,121,109,98,111,108,115,82,97,110,103,101,32,61,32,39,92,92,92,92,117,50,48,100,48,45,92,92,92,92,117,50,48,102,102,39,44,92,110,32,32,32,32,32,32,114,115,67,111,109,98,111,82,97,110,103,101,32,61,32,114,115,67,111,109,98,111,77,97,114,107,115,82,97,110,103,101,32,43,32,114,101,67,111,109,98,111,72,97,108,102,77,97,114,107,115,82,97,110,103,101,32,43,32,114,115,67,111,109,98,111,83,121,109,98,111,108,115,82,97,110,103,101,44,92,110,32,32,32,32,32,32,114,115,68,105,110,103,98,97,116,82,97,110,103,101,32,61,32,39,92,92,92,92,117,50,55,48,48,45,92,92,92,92,117,50,55,98,102,39,44,92,110,32,32,32,32,32,32,114,115,76,111,119,101,114,82,97,110,103,101,32,61,32,39,97,45,122,92,92,92,92,120,100,102,45,92,92,92,92,120,102,54,92,92,92,92,120,102,56,45,92,92,92,92,120,102,102,39,44,92,110,32,32,32,32,32,32,114,115,77,97,116,104,79,112,82,97,110,103,101,32,61,32,39,92,92,92,92,120,97,99,92,92,92,92,120,98,49,92,92,92,92,120,100,55,92,92,92,92,120,102,55,39,44,92,110,32,32,32,32,32,32,114,115,78,111,110,67,104,97,114,82,97,110,103,101,32,61,32,39,92,92,92,92,120,48,48,45,92,92,92,92,120,50,102,92,92,92,92,120,51,97,45,92,92,92,92,120,52,48,92,92,92,92,120,53,98,45,92,92,92,92,120,54,48,92,92,92,92,120,55,98,45,92,92,92,92,120,98,102,39,44,92,110,32,32,32,32,32,32,114,115,80,117,110,99,116,117,97,116,105,111,110,82,97,110,103,101,32,61,32,39,92,92,92,92,117,50,48,48,48,45,92,92,92,92,117,50,48,54,102,39,44,92,110,32,32,32,32,32,32,114,115,83,112,97,99,101,82,97,110,103,101,32,61,32,39,32,92,92,92,92,116,92,92,92,92,120,48,98,92,92,92,92,102,92,92,92,92,120,97,48,92,92,92,92,117,102,101,102,102,92,92,92,92,110,92,92,92,92,114,92,92,92,92,117,50,48,50,56,92,92,92,92,117,50,48,50,57,92,92,92,92,117,49,54,56,48,92,92,92,92,117,49,56,48,101,92,92,92,92,117,50,48,48,48,92,92,92,92,117,50,48,48,49,92,92,92,92,117,50,48,48,50,92,92,92,92,117,50,48,48,51,92,92,92,92,117,50,48,48,52,92,92,92,92,117,50,48,48,53,92,92,92,92,117,50,48,48,54,92,92,92,92,117,50,48,48,55,92,92,92,92,117,50,48,48,56,92,92,92,92,117,50,48,48,57,92,92,92,92,117,50,48,48,97,92,92,92,92,117,50,48,50,102,92,92,92,92,117,50,48,53,102,92,92,92,92,117,51,48,48,48,39,44,92,110,32,32,32,32,32,32,114,115,85,112,112,101,114,82,97,110,103,101,32,61,32,39,65,45,90,92,92,92,92,120,99,48,45,92,92,92,92,120,100,54,92,92,92,92,120,100,56,45,92,92,92,92,120,100,101,39,44,92,110,32,32,32,32,32,32,114,115,86,97,114,82,97,110,103,101,32,61,32,39,92,92,92,92,117,102,101,48,101,92,92,92,92,117,102,101,48,102,39,44,92,110,32,32,32,32,32,32,114,115,66,114,101,97,107,82,97,110,103,101,32,61,32,114,115,77,97,116,104,79,112,82,97,110,103,101,32,43,32,114,115,78,111,110,67,104,97,114,82,97,110,103,101,32,43,32,114,115,80,117,110,99,116,117,97,116,105,111,110,82,97,110,103,101,32,43,32,114,115,83,112,97,99,101,82,97,110,103,101,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,99,111,109,112,111,115,101,32,117,110,105,99,111,100,101,32,99,97,112,116,117,114,101,32,103,114,111,117,112,115,46,32,42,47,92,110,32,32,118,97,114,32,114,115,65,112,111,115,32,61,32,92,34,91,39,92,92,117,50,48,49,57,93,92,34,44,92,110,32,32,32,32,32,32,114,115,65,115,116,114,97,108,32,61,32,39,91,39,32,43,32,114,115,65,115,116,114,97,108,82,97,110,103,101,32,43,32,39,93,39,44,92,110,32,32,32,32,32,32,114,115,66,114,101,97,107,32,61,32,39,91,39,32,43,32,114,115,66,114,101,97,107,82,97,110,103,101,32,43,32,39,93,39,44,92,110,32,32,32,32,32,32,114,115,67,111,109,98,111,32,61,32,39,91,39,32,43,32,114,115,67,111,109,98,111,82,97,110,103,101,32,43,32,39,93,39,44,92,110,32,32,32,32,32,32,114,115,68,105,103,105,116,115,32,61,32,39,92,92,92,92,100,43,39,44,92,110,32,32,32,32,32,32,114,115,68,105,110,103,98,97,116,32,61,32,39,91,39,32,43,32,114,115,68,105,110,103,98,97,116,82,97,110,103,101,32,43,32,39,93,39,44,92,110,32,32,32,32,32,32,114,115,76,111,119,101,114,32,61,32,39,91,39,32,43,32,114,115,76,111,119,101,114,82,97,110,103,101,32,43,32,39,93,39,44,92,110,32,32,32,32,32,32,114,115,77,105,115,99,32,61,32,39,91,94,39,32,43,32,114,115,65,115,116,114,97,108,82,97,110,103,101,32,43,32,114,115,66,114,101,97,107,82,97,110,103,101,32,43,32,114,115,68,105,103,105,116,115,32,43,32,114,115,68,105,110,103,98,97,116,82,97,110,103,101,32,43,32,114,115,76,111,119,101,114,82,97,110,103,101,32,43,32,114,115,85,112,112,101,114,82,97,110,103,101,32,43,32,39,93,39,44,92,110,32,32,32,32,32,32,114,115,70,105,116,122,32,61,32,39,92,92,92,92,117,100,56,51,99,91,92,92,92,92,117,100,102,102,98,45,92,92,92,92,117,100,102,102,102,93,39,44,92,110,32,32,32,32,32,32,114,115,77,111,100,105,102,105,101,114,32,61,32,39,40,63,58,39,32,43,32,114,115,67,111,109,98,111,32,43,32,39,124,39,32,43,32,114,115,70,105,116,122,32,43,32,39,41,39,44,92,110,32,32,32,32,32,32,114,115,78,111,110,65,115,116,114,97,108,32,61,32,39,91,94,39,32,43,32,114,115,65,115,116,114,97,108,82,97,110,103,101,32,43,32,39,93,39,44,92,110,32,32,32,32,32,32,114,115,82,101,103,105,111,110,97,108,32,61,32,39,40,63,58,92,92,92,92,117,100,56,51,99,91,92,92,92,92,117,100,100,101,54,45,92,92,92,92,117,100,100,102,102,93,41,123,50,125,39,44,92,110,32,32,32,32,32,32,114,115,83,117,114,114,80,97,105,114,32,61,32,39,91,92,92,92,92,117,100,56,48,48,45,92,92,92,92,117,100,98,102,102,93,91,92,92,92,92,117,100,99,48,48,45,92,92,92,92,117,100,102,102,102,93,39,44,92,110,32,32,32,32,32,32,114,115,85,112,112,101,114,32,61,32,39,91,39,32,43,32,114,115,85,112,112,101,114,82,97,110,103,101,32,43,32,39,93,39,44,92,110,32,32,32,32,32,32,114,115,90,87,74,32,61,32,39,92,92,92,92,117,50,48,48,100,39,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,99,111,109,112,111,115,101,32,117,110,105,99,111,100,101,32,114,101,103,101,120,101,115,46,32,42,47,92,110,32,32,118,97,114,32,114,115,77,105,115,99,76,111,119,101,114,32,61,32,39,40,63,58,39,32,43,32,114,115,76,111,119,101,114,32,43,32,39,124,39,32,43,32,114,115,77,105,115,99,32,43,32,39,41,39,44,92,110,32,32,32,32,32,32,114,115,77,105,115,99,85,112,112,101,114,32,61,32,39,40,63,58,39,32,43,32,114,115,85,112,112,101,114,32,43,32,39,124,39,32,43,32,114,115,77,105,115,99,32,43,32,39,41,39,44,92,110,32,32,32,32,32,32,114,115,79,112,116,67,111,110,116,114,76,111,119,101,114,32,61,32,39,40,63,58,39,32,43,32,114,115,65,112,111,115,32,43,32,39,40,63,58,100,124,108,108,124,109,124,114,101,124,115,124,116,124,118,101,41,41,63,39,44,92,110,32,32,32,32,32,32,114,115,79,112,116,67,111,110,116,114,85,112,112,101,114,32,61,32,39,40,63,58,39,32,43,32,114,115,65,112,111,115,32,43,32,39,40,63,58,68,124,76,76,124,77,124,82,69,124,83,124,84,124,86,69,41,41,63,39,44,92,110,32,32,32,32,32,32,114,101,79,112,116,77,111,100,32,61,32,114,115,77,111,100,105,102,105,101,114,32,43,32,39,63,39,44,92,110,32,32,32,32,32,32,114,115,79,112,116,86,97,114,32,61,32,39,91,39,32,43,32,114,115,86,97,114,82,97,110,103,101,32,43,32,39,93,63,39,44,92,110,32,32,32,32,32,32,114,115,79,112,116,74,111,105,110,32,61,32,39,40,63,58,39,32,43,32,114,115,90,87,74,32,43,32,39,40,63,58,39,32,43,32,91,114,115,78,111,110,65,115,116,114,97,108,44,32,114,115,82,101,103,105,111,110,97,108,44,32,114,115,83,117,114,114,80,97,105,114,93,46,106,111,105,110,40,39,124,39,41,32,43,32,39,41,39,32,43,32,114,115,79,112,116,86,97,114,32,43,32,114,101,79,112,116,77,111,100,32,43,32,39,41,42,39,44,92,110,32,32,32,32,32,32,114,115,79,114,100,76,111,119,101,114,32,61,32,39,92,92,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,92,92,100,116,104,41,40,63,61,92,92,92,92,98,124,91,65,45,90,95,93,41,39,44,92,110,32,32,32,32,32,32,114,115,79,114,100,85,112,112,101,114,32,61,32,39,92,92,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,92,92,100,84,72,41,40,63,61,92,92,92,92,98,124,91,97,45,122,95,93,41,39,44,92,110,32,32,32,32,32,32,114,115,83,101,113,32,61,32,114,115,79,112,116,86,97,114,32,43,32,114,101,79,112,116,77,111,100,32,43,32,114,115,79,112,116,74,111,105,110,44,92,110,32,32,32,32,32,32,114,115,69,109,111,106,105,32,61,32,39,40,63,58,39,32,43,32,91,114,115,68,105,110,103,98,97,116,44,32,114,115,82,101,103,105,111,110,97,108,44,32,114,115,83,117,114,114,80,97,105,114,93,46,106,111,105,110,40,39,124,39,41,32,43,32,39,41,39,32,43,32,114,115,83,101,113,44,92,110,32,32,32,32,32,32,114,115,83,121,109,98,111,108,32,61,32,39,40,63,58,39,32,43,32,91,114,115,78,111,110,65,115,116,114,97,108,32,43,32,114,115,67,111,109,98,111,32,43,32,39,63,39,44,32,114,115,67,111,109,98,111,44,32,114,115,82,101,103,105,111,110,97,108,44,32,114,115,83,117,114,114,80,97,105,114,44,32,114,115,65,115,116,114,97,108,93,46,106,111,105,110,40,39,124,39,41,32,43,32,39,41,39,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,97,112,111,115,116,114,111,112,104,101,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,65,112,111,115,32,61,32,82,101,103,69,120,112,40,114,115,65,112,111,115,44,32,39,103,39,41,59,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,91,99,111,109,98,105,110,105,110,103,32,100,105,97,99,114,105,116,105,99,97,108,32,109,97,114,107,115,93,40,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,67,111,109,98,105,110,105,110,103,95,68,105,97,99,114,105,116,105,99,97,108,95,77,97,114,107,115,41,32,97,110,100,92,110,32,32,32,42,32,91,99,111,109,98,105,110,105,110,103,32,100,105,97,99,114,105,116,105,99,97,108,32,109,97,114,107,115,32,102,111,114,32,115,121,109,98,111,108,115,93,40,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,67,111,109,98,105,110,105,110,103,95,68,105,97,99,114,105,116,105,99,97,108,95,77,97,114,107,115,95,102,111,114,95,83,121,109,98,111,108,115,41,46,92,110,32,32,32,42,47,92,110,32,32,118,97,114,32,114,101,67,111,109,98,111,77,97,114,107,32,61,32,82,101,103,69,120,112,40,114,115,67,111,109,98,111,44,32,39,103,39,41,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,91,115,116,114,105,110,103,32,115,121,109,98,111,108,115,93,40,104,116,116,112,115,58,47,47,109,97,116,104,105,97,115,98,121,110,101,110,115,46,98,101,47,110,111,116,101,115,47,106,97,118,97,115,99,114,105,112,116,45,117,110,105,99,111,100,101,41,46,32,42,47,92,110,32,32,118,97,114,32,114,101,85,110,105,99,111,100,101,32,61,32,82,101,103,69,120,112,40,114,115,70,105,116,122,32,43,32,39,40,63,61,39,32,43,32,114,115,70,105,116,122,32,43,32,39,41,124,39,32,43,32,114,115,83,121,109,98,111,108,32,43,32,114,115,83,101,113,44,32,39,103,39,41,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,116,99,104,32,99,111,109,112,108,101,120,32,111,114,32,99,111,109,112,111,117,110,100,32,119,111,114,100,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,85,110,105,99,111,100,101,87,111,114,100,32,61,32,82,101,103,69,120,112,40,91,92,110,32,32,32,32,114,115,85,112,112,101,114,32,43,32,39,63,39,32,43,32,114,115,76,111,119,101,114,32,43,32,39,43,39,32,43,32,114,115,79,112,116,67,111,110,116,114,76,111,119,101,114,32,43,32,39,40,63,61,39,32,43,32,91,114,115,66,114,101,97,107,44,32,114,115,85,112,112,101,114,44,32,39,36,39,93,46,106,111,105,110,40,39,124,39,41,32,43,32,39,41,39,44,92,110,32,32,32,32,114,115,77,105,115,99,85,112,112,101,114,32,43,32,39,43,39,32,43,32,114,115,79,112,116,67,111,110,116,114,85,112,112,101,114,32,43,32,39,40,63,61,39,32,43,32,91,114,115,66,114,101,97,107,44,32,114,115,85,112,112,101,114,32,43,32,114,115,77,105,115,99,76,111,119,101,114,44,32,39,36,39,93,46,106,111,105,110,40,39,124,39,41,32,43,32,39,41,39,44,92,110,32,32,32,32,114,115,85,112,112,101,114,32,43,32,39,63,39,32,43,32,114,115,77,105,115,99,76,111,119,101,114,32,43,32,39,43,39,32,43,32,114,115,79,112,116,67,111,110,116,114,76,111,119,101,114,44,92,110,32,32,32,32,114,115,85,112,112,101,114,32,43,32,39,43,39,32,43,32,114,115,79,112,116,67,111,110,116,114,85,112,112,101,114,44,92,110,32,32,32,32,114,115,79,114,100,85,112,112,101,114,44,92,110,32,32,32,32,114,115,79,114,100,76,111,119,101,114,44,92,110,32,32,32,32,114,115,68,105,103,105,116,115,44,92,110,32,32,32,32,114,115,69,109,111,106,105,92,110,32,32,93,46,106,111,105,110,40,39,124,39,41,44,32,39,103,39,41,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,115,116,114,105,110,103,115,32,119,105,116,104,32,91,122,101,114,111,45,119,105,100,116,104,32,106,111,105,110,101,114,115,32,111,114,32,99,111,100,101,32,112,111,105,110,116,115,32,102,114,111,109,32,116,104,101,32,97,115,116,114,97,108,32,112,108,97,110,101,115,93,40,104,116,116,112,58,47,47,101,101,118,46,101,101,47,98,108,111,103,47,50,48,49,53,47,48,57,47,49,50,47,100,97,114,107,45,99,111,114,110,101,114,115,45,111,102,45,117,110,105,99,111,100,101,47,41,46,32,42,47,92,110,32,32,118,97,114,32,114,101,72,97,115,85,110,105,99,111,100,101,32,61,32,82,101,103,69,120,112,40,39,91,39,32,43,32,114,115,90,87,74,32,43,32,114,115,65,115,116,114,97,108,82,97,110,103,101,32,32,43,32,114,115,67,111,109,98,111,82,97,110,103,101,32,43,32,114,115,86,97,114,82,97,110,103,101,32,43,32,39,93,39,41,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,115,116,114,105,110,103,115,32,116,104,97,116,32,110,101,101,100,32,97,32,109,111,114,101,32,114,111,98,117,115,116,32,114,101,103,101,120,112,32,116,111,32,109,97,116,99,104,32,119,111,114,100,115,46,32,42,47,92,110,32,32,118,97,114,32,114,101,72,97,115,85,110,105,99,111,100,101,87,111,114,100,32,61,32,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,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,97,115,115,105,103,110,32,100,101,102,97,117,108,116,32,96,99,111,110,116,101,120,116,96,32,111,98,106,101,99,116,32,112,114,111,112,101,114,116,105,101,115,46,32,42,47,92,110,32,32,118,97,114,32,99,111,110,116,101,120,116,80,114,111,112,115,32,61,32,91,92,110,32,32,32,32,39,65,114,114,97,121,39,44,32,39,66,117,102,102,101,114,39,44,32,39,68,97,116,97,86,105,101,119,39,44,32,39,68,97,116,101,39,44,32,39,69,114,114,111,114,39,44,32,39,70,108,111,97,116,51,50,65,114,114,97,121,39,44,32,39,70,108,111,97,116,54,52,65,114,114,97,121,39,44,92,110,32,32,32,32,39,70,117,110,99,116,105,111,110,39,44,32,39,73,110,116,56,65,114,114,97,121,39,44,32,39,73,110,116,49,54,65,114,114,97,121,39,44,32,39,73,110,116,51,50,65,114,114,97,121,39,44,32,39,77,97,112,39,44,32,39,77,97,116,104,39,44,32,39,79,98,106,101,99,116,39,44,92,110,32,32,32,32,39,80,114,111,109,105,115,101,39,44,32,39,82,101,103,69,120,112,39,44,32,39,83,101,116,39,44,32,39,83,116,114,105,110,103,39,44,32,39,83,121,109,98,111,108,39,44,32,39,84,121,112,101,69,114,114,111,114,39,44,32,39,85,105,110,116,56,65,114,114,97,121,39,44,92,110,32,32,32,32,39,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,39,44,32,39,85,105,110,116,49,54,65,114,114,97,121,39,44,32,39,85,105,110,116,51,50,65,114,114,97,121,39,44,32,39,87,101,97,107,77,97,112,39,44,92,110,32,32,32,32,39,95,39,44,32,39,99,108,101,97,114,84,105,109,101,111,117,116,39,44,32,39,105,115,70,105,110,105,116,101,39,44,32,39,112,97,114,115,101,73,110,116,39,44,32,39,115,101,116,84,105,109,101,111,117,116,39,92,110,32,32,93,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,107,101,32,116,101,109,112,108,97,116,101,32,115,111,117,114,99,101,85,82,76,115,32,101,97,115,105,101,114,32,116,111,32,105,100,101,110,116,105,102,121,46,32,42,47,92,110,32,32,118,97,114,32,116,101,109,112,108,97,116,101,67,111,117,110,116,101,114,32,61,32,45,49,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,105,100,101,110,116,105,102,121,32,96,116,111,83,116,114,105,110,103,84,97,103,96,32,118,97,108,117,101,115,32,111,102,32,116,121,112,101,100,32,97,114,114,97,121,115,46,32,42,47,92,110,32,32,118,97,114,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,32,61,32,123,125,59,92,110,32,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,102,108,111,97,116,51,50,84,97,103,93,32,61,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,102,108,111,97,116,54,52,84,97,103,93,32,61,92,110,32,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,105,110,116,56,84,97,103,93,32,61,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,105,110,116,49,54,84,97,103,93,32,61,92,110,32,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,105,110,116,51,50,84,97,103,93,32,61,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,117,105,110,116,56,84,97,103,93,32,61,92,110,32,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,117,105,110,116,56,67,108,97,109,112,101,100,84,97,103,93,32,61,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,117,105,110,116,49,54,84,97,103,93,32,61,92,110,32,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,117,105,110,116,51,50,84,97,103,93,32,61,32,116,114,117,101,59,92,110,32,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,97,114,103,115,84,97,103,93,32,61,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,97,114,114,97,121,84,97,103,93,32,61,92,110,32,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,97,114,114,97,121,66,117,102,102,101,114,84,97,103,93,32,61,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,98,111,111,108,84,97,103,93,32,61,92,110,32,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,100,97,116,97,86,105,101,119,84,97,103,93,32,61,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,100,97,116,101,84,97,103,93,32,61,92,110,32,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,101,114,114,111,114,84,97,103,93,32,61,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,102,117,110,99,84,97,103,93,32,61,92,110,32,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,109,97,112,84,97,103,93,32,61,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,110,117,109,98,101,114,84,97,103,93,32,61,92,110,32,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,111,98,106,101,99,116,84,97,103,93,32,61,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,114,101,103,101,120,112,84,97,103,93,32,61,92,110,32,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,115,101,116,84,97,103,93,32,61,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,115,116,114,105,110,103,84,97,103,93,32,61,92,110,32,32,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,119,101,97,107,77,97,112,84,97,103,93,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,105,100,101,110,116,105,102,121,32,96,116,111,83,116,114,105,110,103,84,97,103,96,32,118,97,108,117,101,115,32,115,117,112,112,111,114,116,101,100,32,98,121,32,96,95,46,99,108,111,110,101,96,46,32,42,47,92,110,32,32,118,97,114,32,99,108,111,110,101,97,98,108,101,84,97,103,115,32,61,32,123,125,59,92,110,32,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,97,114,103,115,84,97,103,93,32,61,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,97,114,114,97,121,84,97,103,93,32,61,92,110,32,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,97,114,114,97,121,66,117,102,102,101,114,84,97,103,93,32,61,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,100,97,116,97,86,105,101,119,84,97,103,93,32,61,92,110,32,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,98,111,111,108,84,97,103,93,32,61,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,100,97,116,101,84,97,103,93,32,61,92,110,32,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,102,108,111,97,116,51,50,84,97,103,93,32,61,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,102,108,111,97,116,54,52,84,97,103,93,32,61,92,110,32,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,105,110,116,56,84,97,103,93,32,61,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,105,110,116,49,54,84,97,103,93,32,61,92,110,32,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,105,110,116,51,50,84,97,103,93,32,61,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,109,97,112,84,97,103,93,32,61,92,110,32,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,110,117,109,98,101,114,84,97,103,93,32,61,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,111,98,106,101,99,116,84,97,103,93,32,61,92,110,32,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,114,101,103,101,120,112,84,97,103,93,32,61,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,115,101,116,84,97,103,93,32,61,92,110,32,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,115,116,114,105,110,103,84,97,103,93,32,61,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,115,121,109,98,111,108,84,97,103,93,32,61,92,110,32,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,117,105,110,116,56,84,97,103,93,32,61,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,117,105,110,116,56,67,108,97,109,112,101,100,84,97,103,93,32,61,92,110,32,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,117,105,110,116,49,54,84,97,103,93,32,61,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,117,105,110,116,51,50,84,97,103,93,32,61,32,116,114,117,101,59,92,110,32,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,101,114,114,111,114,84,97,103,93,32,61,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,102,117,110,99,84,97,103,93,32,61,92,110,32,32,99,108,111,110,101,97,98,108,101,84,97,103,115,91,119,101,97,107,77,97,112,84,97,103,93,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,112,32,76,97,116,105,110,32,85,110,105,99,111,100,101,32,108,101,116,116,101,114,115,32,116,111,32,98,97,115,105,99,32,76,97,116,105,110,32,108,101,116,116,101,114,115,46,32,42,47,92,110,32,32,118,97,114,32,100,101,98,117,114,114,101,100,76,101,116,116,101,114,115,32,61,32,123,92,110,32,32,32,32,47,47,32,76,97,116,105,110,45,49,32,83,117,112,112,108,101,109,101,110,116,32,98,108,111,99,107,46,92,110,32,32,32,32,39,92,92,120,99,48,39,58,32,39,65,39,44,32,32,39,92,92,120,99,49,39,58,32,39,65,39,44,32,39,92,92,120,99,50,39,58,32,39,65,39,44,32,39,92,92,120,99,51,39,58,32,39,65,39,44,32,39,92,92,120,99,52,39,58,32,39,65,39,44,32,39,92,92,120,99,53,39,58,32,39,65,39,44,92,110,32,32,32,32,39,92,92,120,101,48,39,58,32,39,97,39,44,32,32,39,92,92,120,101,49,39,58,32,39,97,39,44,32,39,92,92,120,101,50,39,58,32,39,97,39,44,32,39,92,92,120,101,51,39,58,32,39,97,39,44,32,39,92,92,120,101,52,39,58,32,39,97,39,44,32,39,92,92,120,101,53,39,58,32,39,97,39,44,92,110,32,32,32,32,39,92,92,120,99,55,39,58,32,39,67,39,44,32,32,39,92,92,120,101,55,39,58,32,39,99,39,44,92,110,32,32,32,32,39,92,92,120,100,48,39,58,32,39,68,39,44,32,32,39,92,92,120,102,48,39,58,32,39,100,39,44,92,110,32,32,32,32,39,92,92,120,99,56,39,58,32,39,69,39,44,32,32,39,92,92,120,99,57,39,58,32,39,69,39,44,32,39,92,92,120,99,97,39,58,32,39,69,39,44,32,39,92,92,120,99,98,39,58,32,39,69,39,44,92,110,32,32,32,32,39,92,92,120,101,56,39,58,32,39,101,39,44,32,32,39,92,92,120,101,57,39,58,32,39,101,39,44,32,39,92,92,120,101,97,39,58,32,39,101,39,44,32,39,92,92,120,101,98,39,58,32,39,101,39,44,92,110,32,32,32,32,39,92,92,120,99,99,39,58,32,39,73,39,44,32,32,39,92,92,120,99,100,39,58,32,39,73,39,44,32,39,92,92,120,99,101,39,58,32,39,73,39,44,32,39,92,92,120,99,102,39,58,32,39,73,39,44,92,110,32,32,32,32,39,92,92,120,101,99,39,58,32,39,105,39,44,32,32,39,92,92,120,101,100,39,58,32,39,105,39,44,32,39,92,92,120,101,101,39,58,32,39,105,39,44,32,39,92,92,120,101,102,39,58,32,39,105,39,44,92,110,32,32,32,32,39,92,92,120,100,49,39,58,32,39,78,39,44,32,32,39,92,92,120,102,49,39,58,32,39,110,39,44,92,110,32,32,32,32,39,92,92,120,100,50,39,58,32,39,79,39,44,32,32,39,92,92,120,100,51,39,58,32,39,79,39,44,32,39,92,92,120,100,52,39,58,32,39,79,39,44,32,39,92,92,120,100,53,39,58,32,39,79,39,44,32,39,92,92,120,100,54,39,58,32,39,79,39,44,32,39,92,92,120,100,56,39,58,32,39,79,39,44,92,110,32,32,32,32,39,92,92,120,102,50,39,58,32,39,111,39,44,32,32,39,92,92,120,102,51,39,58,32,39,111,39,44,32,39,92,92,120,102,52,39,58,32,39,111,39,44,32,39,92,92,120,102,53,39,58,32,39,111,39,44,32,39,92,92,120,102,54,39,58,32,39,111,39,44,32,39,92,92,120,102,56,39,58,32,39,111,39,44,92,110,32,32,32,32,39,92,92,120,100,57,39,58,32,39,85,39,44,32,32,39,92,92,120,100,97,39,58,32,39,85,39,44,32,39,92,92,120,100,98,39,58,32,39,85,39,44,32,39,92,92,120,100,99,39,58,32,39,85,39,44,92,110,32,32,32,32,39,92,92,120,102,57,39,58,32,39,117,39,44,32,32,39,92,92,120,102,97,39,58,32,39,117,39,44,32,39,92,92,120,102,98,39,58,32,39,117,39,44,32,39,92,92,120,102,99,39,58,32,39,117,39,44,92,110,32,32,32,32,39,92,92,120,100,100,39,58,32,39,89,39,44,32,32,39,92,92,120,102,100,39,58,32,39,121,39,44,32,39,92,92,120,102,102,39,58,32,39,121,39,44,92,110,32,32,32,32,39,92,92,120,99,54,39,58,32,39,65,101,39,44,32,39,92,92,120,101,54,39,58,32,39,97,101,39,44,92,110,32,32,32,32,39,92,92,120,100,101,39,58,32,39,84,104,39,44,32,39,92,92,120,102,101,39,58,32,39,116,104,39,44,92,110,32,32,32,32,39,92,92,120,100,102,39,58,32,39,115,115,39,44,92,110,32,32,32,32,47,47,32,76,97,116,105,110,32,69,120,116,101,110,100,101,100,45,65,32,98,108,111,99,107,46,92,110,32,32,32,32,39,92,92,117,48,49,48,48,39,58,32,39,65,39,44,32,32,39,92,92,117,48,49,48,50,39,58,32,39,65,39,44,32,39,92,92,117,48,49,48,52,39,58,32,39,65,39,44,92,110,32,32,32,32,39,92,92,117,48,49,48,49,39,58,32,39,97,39,44,32,32,39,92,92,117,48,49,48,51,39,58,32,39,97,39,44,32,39,92,92,117,48,49,48,53,39,58,32,39,97,39,44,92,110,32,32,32,32,39,92,92,117,48,49,48,54,39,58,32,39,67,39,44,32,32,39,92,92,117,48,49,48,56,39,58,32,39,67,39,44,32,39,92,92,117,48,49,48,97,39,58,32,39,67,39,44,32,39,92,92,117,48,49,48,99,39,58,32,39,67,39,44,92,110,32,32,32,32,39,92,92,117,48,49,48,55,39,58,32,39,99,39,44,32,32,39,92,92,117,48,49,48,57,39,58,32,39,99,39,44,32,39,92,92,117,48,49,48,98,39,58,32,39,99,39,44,32,39,92,92,117,48,49,48,100,39,58,32,39,99,39,44,92,110,32,32,32,32,39,92,92,117,48,49,48,101,39,58,32,39,68,39,44,32,32,39,92,92,117,48,49,49,48,39,58,32,39,68,39,44,32,39,92,92,117,48,49,48,102,39,58,32,39,100,39,44,32,39,92,92,117,48,49,49,49,39,58,32,39,100,39,44,92,110,32,32,32,32,39,92,92,117,48,49,49,50,39,58,32,39,69,39,44,32,32,39,92,92,117,48,49,49,52,39,58,32,39,69,39,44,32,39,92,92,117,48,49,49,54,39,58,32,39,69,39,44,32,39,92,92,117,48,49,49,56,39,58,32,39,69,39,44,32,39,92,92,117,48,49,49,97,39,58,32,39,69,39,44,92,110,32,32,32,32,39,92,92,117,48,49,49,51,39,58,32,39,101,39,44,32,32,39,92,92,117,48,49,49,53,39,58,32,39,101,39,44,32,39,92,92,117,48,49,49,55,39,58,32,39,101,39,44,32,39,92,92,117,48,49,49,57,39,58,32,39,101,39,44,32,39,92,92,117,48,49,49,98,39,58,32,39,101,39,44,92,110,32,32,32,32,39,92,92,117,48,49,49,99,39,58,32,39,71,39,44,32,32,39,92,92,117,48,49,49,101,39,58,32,39,71,39,44,32,39,92,92,117,48,49,50,48,39,58,32,39,71,39,44,32,39,92,92,117,48,49,50,50,39,58,32,39,71,39,44,92,110,32,32,32,32,39,92,92,117,48,49,49,100,39,58,32,39,103,39,44,32,32,39,92,92,117,48,49,49,102,39,58,32,39,103,39,44,32,39,92,92,117,48,49,50,49,39,58,32,39,103,39,44,32,39,92,92,117,48,49,50,51,39,58,32,39,103,39,44,92,110,32,32,32,32,39,92,92,117,48,49,50,52,39,58,32,39,72,39,44,32,32,39,92,92,117,48,49,50,54,39,58,32,39,72,39,44,32,39,92,92,117,48,49,50,53,39,58,32,39,104,39,44,32,39,92,92,117,48,49,50,55,39,58,32,39,104,39,44,92,110,32,32,32,32,39,92,92,117,48,49,50,56,39,58,32,39,73,39,44,32,32,39,92,92,117,48,49,50,97,39,58,32,39,73,39,44,32,39,92,92,117,48,49,50,99,39,58,32,39,73,39,44,32,39,92,92,117,48,49,50,101,39,58,32,39,73,39,44,32,39,92,92,117,48,49,51,48,39,58,32,39,73,39,44,92,110,32,32,32,32,39,92,92,117,48,49,50,57,39,58,32,39,105,39,44,32,32,39,92,92,117,48,49,50,98,39,58,32,39,105,39,44,32,39,92,92,117,48,49,50,100,39,58,32,39,105,39,44,32,39,92,92,117,48,49,50,102,39,58,32,39,105,39,44,32,39,92,92,117,48,49,51,49,39,58,32,39,105,39,44,92,110,32,32,32,32,39,92,92,117,48,49,51,52,39,58,32,39,74,39,44,32,32,39,92,92,117,48,49,51,53,39,58,32,39,106,39,44,92,110,32,32,32,32,39,92,92,117,48,49,51,54,39,58,32,39,75,39,44,32,32,39,92,92,117,48,49,51,55,39,58,32,39,107,39,44,32,39,92,92,117,48,49,51,56,39,58,32,39,107,39,44,92,110,32,32,32,32,39,92,92,117,48,49,51,57,39,58,32,39,76,39,44,32,32,39,92,92,117,48,49,51,98,39,58,32,39,76,39,44,32,39,92,92,117,48,49,51,100,39,58,32,39,76,39,44,32,39,92,92,117,48,49,51,102,39,58,32,39,76,39,44,32,39,92,92,117,48,49,52,49,39,58,32,39,76,39,44,92,110,32,32,32,32,39,92,92,117,48,49,51,97,39,58,32,39,108,39,44,32,32,39,92,92,117,48,49,51,99,39,58,32,39,108,39,44,32,39,92,92,117,48,49,51,101,39,58,32,39,108,39,44,32,39,92,92,117,48,49,52,48,39,58,32,39,108,39,44,32,39,92,92,117,48,49,52,50,39,58,32,39,108,39,44,92,110,32,32,32,32,39,92,92,117,48,49,52,51,39,58,32,39,78,39,44,32,32,39,92,92,117,48,49,52,53,39,58,32,39,78,39,44,32,39,92,92,117,48,49,52,55,39,58,32,39,78,39,44,32,39,92,92,117,48,49,52,97,39,58,32,39,78,39,44,92,110,32,32,32,32,39,92,92,117,48,49,52,52,39,58,32,39,110,39,44,32,32,39,92,92,117,48,49,52,54,39,58,32,39,110,39,44,32,39,92,92,117,48,49,52,56,39,58,32,39,110,39,44,32,39,92,92,117,48,49,52,98,39,58,32,39,110,39,44,92,110,32,32,32,32,39,92,92,117,48,49,52,99,39,58,32,39,79,39,44,32,32,39,92,92,117,48,49,52,101,39,58,32,39,79,39,44,32,39,92,92,117,48,49,53,48,39,58,32,39,79,39,44,92,110,32,32,32,32,39,92,92,117,48,49,52,100,39,58,32,39,111,39,44,32,32,39,92,92,117,48,49,52,102,39,58,32,39,111,39,44,32,39,92,92,117,48,49,53,49,39,58,32,39,111,39,44,92,110,32,32,32,32,39,92,92,117,48,49,53,52,39,58,32,39,82,39,44,32,32,39,92,92,117,48,49,53,54,39,58,32,39,82,39,44,32,39,92,92,117,48,49,53,56,39,58,32,39,82,39,44,92,110,32,32,32,32,39,92,92,117,48,49,53,53,39,58,32,39,114,39,44,32,32,39,92,92,117,48,49,53,55,39,58,32,39,114,39,44,32,39,92,92,117,48,49,53,57,39,58,32,39,114,39,44,92,110,32,32,32,32,39,92,92,117,48,49,53,97,39,58,32,39,83,39,44,32,32,39,92,92,117,48,49,53,99,39,58,32,39,83,39,44,32,39,92,92,117,48,49,53,101,39,58,32,39,83,39,44,32,39,92,92,117,48,49,54,48,39,58,32,39,83,39,44,92,110,32,32,32,32,39,92,92,117,48,49,53,98,39,58,32,39,115,39,44,32,32,39,92,92,117,48,49,53,100,39,58,32,39,115,39,44,32,39,92,92,117,48,49,53,102,39,58,32,39,115,39,44,32,39,92,92,117,48,49,54,49,39,58,32,39,115,39,44,92,110,32,32,32,32,39,92,92,117,48,49,54,50,39,58,32,39,84,39,44,32,32,39,92,92,117,48,49,54,52,39,58,32,39,84,39,44,32,39,92,92,117,48,49,54,54,39,58,32,39,84,39,44,92,110,32,32,32,32,39,92,92,117,48,49,54,51,39,58,32,39,116,39,44,32,32,39,92,92,117,48,49,54,53,39,58,32,39,116,39,44,32,39,92,92,117,48,49,54,55,39,58,32,39,116,39,44,92,110,32,32,32,32,39,92,92,117,48,49,54,56,39,58,32,39,85,39,44,32,32,39,92,92,117,48,49,54,97,39,58,32,39,85,39,44,32,39,92,92,117,48,49,54,99,39,58,32,39,85,39,44,32,39,92,92,117,48,49,54,101,39,58,32,39,85,39,44,32,39,92,92,117,48,49,55,48,39,58,32,39,85,39,44,32,39,92,92,117,48,49,55,50,39,58,32,39,85,39,44,92,110,32,32,32,32,39,92,92,117,48,49,54,57,39,58,32,39,117,39,44,32,32,39,92,92,117,48,49,54,98,39,58,32,39,117,39,44,32,39,92,92,117,48,49,54,100,39,58,32,39,117,39,44,32,39,92,92,117,48,49,54,102,39,58,32,39,117,39,44,32,39,92,92,117,48,49,55,49,39,58,32,39,117,39,44,32,39,92,92,117,48,49,55,51,39,58,32,39,117,39,44,92,110,32,32,32,32,39,92,92,117,48,49,55,52,39,58,32,39,87,39,44,32,32,39,92,92,117,48,49,55,53,39,58,32,39,119,39,44,92,110,32,32,32,32,39,92,92,117,48,49,55,54,39,58,32,39,89,39,44,32,32,39,92,92,117,48,49,55,55,39,58,32,39,121,39,44,32,39,92,92,117,48,49,55,56,39,58,32,39,89,39,44,92,110,32,32,32,32,39,92,92,117,48,49,55,57,39,58,32,39,90,39,44,32,32,39,92,92,117,48,49,55,98,39,58,32,39,90,39,44,32,39,92,92,117,48,49,55,100,39,58,32,39,90,39,44,92,110,32,32,32,32,39,92,92,117,48,49,55,97,39,58,32,39,122,39,44,32,32,39,92,92,117,48,49,55,99,39,58,32,39,122,39,44,32,39,92,92,117,48,49,55,101,39,58,32,39,122,39,44,92,110,32,32,32,32,39,92,92,117,48,49,51,50,39,58,32,39,73,74,39,44,32,39,92,92,117,48,49,51,51,39,58,32,39,105,106,39,44,92,110,32,32,32,32,39,92,92,117,48,49,53,50,39,58,32,39,79,101,39,44,32,39,92,92,117,48,49,53,51,39,58,32,39,111,101,39,44,92,110,32,32,32,32,39,92,92,117,48,49,52,57,39,58,32,92,34,39,110,92,34,44,32,39,92,92,117,48,49,55,102,39,58,32,39,115,39,92,110,32,32,125,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,112,32,99,104,97,114,97,99,116,101,114,115,32,116,111,32,72,84,77,76,32,101,110,116,105,116,105,101,115,46,32,42,47,92,110,32,32,118,97,114,32,104,116,109,108,69,115,99,97,112,101,115,32,61,32,123,92,110,32,32,32,32,39,38,39,58,32,39,38,97,109,112,59,39,44,92,110,32,32,32,32,39,60,39,58,32,39,38,108,116,59,39,44,92,110,32,32,32,32,39,62,39,58,32,39,38,103,116,59,39,44,92,110,32,32,32,32,39,92,34,39,58,32,39,38,113,117,111,116,59,39,44,92,110,32,32,32,32,92,34,39,92,34,58,32,39,38,35,51,57,59,39,92,110,32,32,125,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,109,97,112,32,72,84,77,76,32,101,110,116,105,116,105,101,115,32,116,111,32,99,104,97,114,97,99,116,101,114,115,46,32,42,47,92,110,32,32,118,97,114,32,104,116,109,108,85,110,101,115,99,97,112,101,115,32,61,32,123,92,110,32,32,32,32,39,38,97,109,112,59,39,58,32,39,38,39,44,92,110,32,32,32,32,39,38,108,116,59,39,58,32,39,60,39,44,92,110,32,32,32,32,39,38,103,116,59,39,58,32,39,62,39,44,92,110,32,32,32,32,39,38,113,117,111,116,59,39,58,32,39,92,34,39,44,92,110,32,32,32,32,39,38,35,51,57,59,39,58,32,92,34,39,92,34,92,110,32,32,125,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,101,115,99,97,112,101,32,99,104,97,114,97,99,116,101,114,115,32,102,111,114,32,105,110,99,108,117,115,105,111,110,32,105,110,32,99,111,109,112,105,108,101,100,32,115,116,114,105,110,103,32,108,105,116,101,114,97,108,115,46,32,42,47,92,110,32,32,118,97,114,32,115,116,114,105,110,103,69,115,99,97,112,101,115,32,61,32,123,92,110,32,32,32,32,39,92,92,92,92,39,58,32,39,92,92,92,92,39,44,92,110,32,32,32,32,92,34,39,92,34,58,32,92,34,39,92,34,44,92,110,32,32,32,32,39,92,92,110,39,58,32,39,110,39,44,92,110,32,32,32,32,39,92,92,114,39,58,32,39,114,39,44,92,110,32,32,32,32,39,92,92,117,50,48,50,56,39,58,32,39,117,50,48,50,56,39,44,92,110,32,32,32,32,39,92,92,117,50,48,50,57,39,58,32,39,117,50,48,50,57,39,92,110,32,32,125,59,92,110,92,110,32,32,47,42,42,32,66,117,105,108,116,45,105,110,32,109,101,116,104,111,100,32,114,101,102,101,114,101,110,99,101,115,32,119,105,116,104,111,117,116,32,97,32,100,101,112,101,110,100,101,110,99,121,32,111,110,32,96,114,111,111,116,96,46,32,42,47,92,110,32,32,118,97,114,32,102,114,101,101,80,97,114,115,101,70,108,111,97,116,32,61,32,112,97,114,115,101,70,108,111,97,116,44,92,110,32,32,32,32,32,32,102,114,101,101,80,97,114,115,101,73,110,116,32,61,32,112,97,114,115,101,73,110,116,59,92,110,92,110,32,32,47,42,42,32,68,101,116,101,99,116,32,102,114,101,101,32,118,97,114,105,97,98,108,101,32,96,103,108,111,98,97,108,96,32,102,114,111,109,32,78,111,100,101,46,106,115,46,32,42,47,92,110,32,32,118,97,114,32,102,114,101,101,71,108,111,98,97,108,32,61,32,116,121,112,101,111,102,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,32,61,61,32,39,111,98,106,101,99,116,39,32,38,38,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,32,38,38,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,46,79,98,106,101,99,116,32,61,61,61,32,79,98,106,101,99,116,32,38,38,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,59,92,110,92,110,32,32,47,42,42,32,68,101,116,101,99,116,32,102,114,101,101,32,118,97,114,105,97,98,108,101,32,96,115,101,108,102,96,46,32,42,47,92,110,32,32,118,97,114,32,102,114,101,101,83,101,108,102,32,61,32,116,121,112,101,111,102,32,115,101,108,102,32,61,61,32,39,111,98,106,101,99,116,39,32,38,38,32,115,101,108,102,32,38,38,32,115,101,108,102,46,79,98,106,101,99,116,32,61,61,61,32,79,98,106,101,99,116,32,38,38,32,115,101,108,102,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,97,115,32,97,32,114,101,102,101,114,101,110,99,101,32,116,111,32,116,104,101,32,103,108,111,98,97,108,32,111,98,106,101,99,116,46,32,42,47,92,110,32,32,118,97,114,32,114,111,111,116,32,61,32,102,114,101,101,71,108,111,98,97,108,32,124,124,32,102,114,101,101,83,101,108,102,32,124,124,32,70,117,110,99,116,105,111,110,40,39,114,101,116,117,114,110,32,116,104,105,115,39,41,40,41,59,92,110,92,110,32,32,47,42,42,32,68,101,116,101,99,116,32,102,114,101,101,32,118,97,114,105,97,98,108,101,32,96,101,120,112,111,114,116,115,96,46,32,42,47,92,110,32,32,118,97,114,32,102,114,101,101,69,120,112,111,114,116,115,32,61,32,32,116,114,117,101,32,38,38,32,101,120,112,111,114,116,115,32,38,38,32,33,101,120,112,111,114,116,115,46,110,111,100,101,84,121,112,101,32,38,38,32,101,120,112,111,114,116,115,59,92,110,92,110,32,32,47,42,42,32,68,101,116,101,99,116,32,102,114,101,101,32,118,97,114,105,97,98,108,101,32,96,109,111,100,117,108,101,96,46,32,42,47,92,110,32,32,118,97,114,32,102,114,101,101,77,111,100,117,108,101,32,61,32,102,114,101,101,69,120,112,111,114,116,115,32,38,38,32,92,34,111,98,106,101,99,116,92,34,32,61,61,32,39,111,98,106,101,99,116,39,32,38,38,32,109,111,100,117,108,101,32,38,38,32,33,109,111,100,117,108,101,46,110,111,100,101,84,121,112,101,32,38,38,32,109,111,100,117,108,101,59,92,110,92,110,32,32,47,42,42,32,68,101,116,101,99,116,32,116,104,101,32,112,111,112,117,108,97,114,32,67,111,109,109,111,110,74,83,32,101,120,116,101,110,115,105,111,110,32,96,109,111,100,117,108,101,46,101,120,112,111,114,116,115,96,46,32,42,47,92,110,32,32,118,97,114,32,109,111,100,117,108,101,69,120,112,111,114,116,115,32,61,32,102,114,101,101,77,111,100,117,108,101,32,38,38,32,102,114,101,101,77,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,61,61,32,102,114,101,101,69,120,112,111,114,116,115,59,92,110,92,110,32,32,47,42,42,32,68,101,116,101,99,116,32,102,114,101,101,32,118,97,114,105,97,98,108,101,32,96,112,114,111,99,101,115,115,96,32,102,114,111,109,32,78,111,100,101,46,106,115,46,32,42,47,92,110,32,32,118,97,114,32,102,114,101,101,80,114,111,99,101,115,115,32,61,32,109,111,100,117,108,101,69,120,112,111,114,116,115,32,38,38,32,102,114,101,101,71,108,111,98,97,108,46,112,114,111,99,101,115,115,59,92,110,92,110,32,32,47,42,42,32,85,115,101,100,32,116,111,32,97,99,99,101,115,115,32,102,97,115,116,101,114,32,78,111,100,101,46,106,115,32,104,101,108,112,101,114,115,46,32,42,47,92,110,32,32,118,97,114,32,110,111,100,101,85,116,105,108,32,61,32,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,47,47,32,85,115,101,32,96,117,116,105,108,46,116,121,112,101,115,96,32,102,111,114,32,78,111,100,101,46,106,115,32,49,48,43,46,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,115,32,61,32,102,114,101,101,77,111,100,117,108,101,32,38,38,32,102,114,101,101,77,111,100,117,108,101,46,114,101,113,117,105,114,101,32,38,38,32,102,114,101,101,77,111,100,117,108,101,46,114,101,113,117,105,114,101,40,39,117,116,105,108,39,41,46,116,121,112,101,115,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,115,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,76,101,103,97,99,121,32,96,112,114,111,99,101,115,115,46,98,105,110,100,105,110,103,40,39,117,116,105,108,39,41,96,32,102,111,114,32,78,111,100,101,46,106,115,32,60,32,49,48,46,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,114,101,101,80,114,111,99,101,115,115,32,38,38,32,102,114,101,101,80,114,111,99,101,115,115,46,98,105,110,100,105,110,103,32,38,38,32,102,114,101,101,80,114,111,99,101,115,115,46,98,105,110,100,105,110,103,40,39,117,116,105,108,39,41,59,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,125,92,110,32,32,125,40,41,41,59,92,110,92,110,32,32,47,42,32,78,111,100,101,46,106,115,32,104,101,108,112,101,114,32,114,101,102,101,114,101,110,99,101,115,46,32,42,47,92,110,32,32,118,97,114,32,110,111,100,101,73,115,65,114,114,97,121,66,117,102,102,101,114,32,61,32,110,111,100,101,85,116,105,108,32,38,38,32,110,111,100,101,85,116,105,108,46,105,115,65,114,114,97,121,66,117,102,102,101,114,44,92,110,32,32,32,32,32,32,110,111,100,101,73,115,68,97,116,101,32,61,32,110,111,100,101,85,116,105,108,32,38,38,32,110,111,100,101,85,116,105,108,46,105,115,68,97,116,101,44,92,110,32,32,32,32,32,32,110,111,100,101,73,115,77,97,112,32,61,32,110,111,100,101,85,116,105,108,32,38,38,32,110,111,100,101,85,116,105,108,46,105,115,77,97,112,44,92,110,32,32,32,32,32,32,110,111,100,101,73,115,82,101,103,69,120,112,32,61,32,110,111,100,101,85,116,105,108,32,38,38,32,110,111,100,101,85,116,105,108,46,105,115,82,101,103,69,120,112,44,92,110,32,32,32,32,32,32,110,111,100,101,73,115,83,101,116,32,61,32,110,111,100,101,85,116,105,108,32,38,38,32,110,111,100,101,85,116,105,108,46,105,115,83,101,116,44,92,110,32,32,32,32,32,32,110,111,100,101,73,115,84,121,112,101,100,65,114,114,97,121,32,61,32,110,111,100,101,85,116,105,108,32,38,38,32,110,111,100,101,85,116,105,108,46,105,115,84,121,112,101,100,65,114,114,97,121,59,92,110,92,110,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,32,102,97,115,116,101,114,32,97,108,116,101,114,110,97,116,105,118,101,32,116,111,32,96,70,117,110,99,116,105,111,110,35,97,112,112,108,121,96,44,32,116,104,105,115,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,115,32,96,102,117,110,99,96,92,110,32,32,32,42,32,119,105,116,104,32,116,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,111,102,32,96,116,104,105,115,65,114,103,96,32,97,110,100,32,116,104,101,32,97,114,103,117,109,101,110,116,115,32,111,102,32,96,97,114,103,115,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,105,110,118,111,107,101,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,116,104,105,115,65,114,103,32,84,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,103,115,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,105,110,118,111,107,101,32,96,102,117,110,99,96,32,119,105,116,104,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,115,117,108,116,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,97,112,112,108,121,40,102,117,110,99,44,32,116,104,105,115,65,114,103,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,115,119,105,116,99,104,32,40,97,114,103,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,48,58,32,114,101,116,117,114,110,32,102,117,110,99,46,99,97,108,108,40,116,104,105,115,65,114,103,41,59,92,110,32,32,32,32,32,32,99,97,115,101,32,49,58,32,114,101,116,117,114,110,32,102,117,110,99,46,99,97,108,108,40,116,104,105,115,65,114,103,44,32,97,114,103,115,91,48,93,41,59,92,110,32,32,32,32,32,32,99,97,115,101,32,50,58,32,114,101,116,117,114,110,32,102,117,110,99,46,99,97,108,108,40,116,104,105,115,65,114,103,44,32,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,41,59,92,110,32,32,32,32,32,32,99,97,115,101,32,51,58,32,114,101,116,117,114,110,32,102,117,110,99,46,99,97,108,108,40,116,104,105,115,65,114,103,44,32,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,44,32,97,114,103,115,91,50,93,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,46,97,112,112,108,121,40,116,104,105,115,65,114,103,44,32,97,114,103,115,41,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,98,97,115,101,65,103,103,114,101,103,97,116,111,114,96,32,102,111,114,32,97,114,114,97,121,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,97,114,114,97,121,93,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,115,101,116,116,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,115,101,116,32,96,97,99,99,117,109,117,108,97,116,111,114,96,32,118,97,108,117,101,115,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,105,116,101,114,97,116,101,101,32,116,111,32,116,114,97,110,115,102,111,114,109,32,107,101,121,115,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,97,99,99,117,109,117,108,97,116,111,114,32,84,104,101,32,105,110,105,116,105,97,108,32,97,103,103,114,101,103,97,116,101,100,32,111,98,106,101,99,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,96,97,99,99,117,109,117,108,97,116,111,114,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,65,103,103,114,101,103,97,116,111,114,40,97,114,114,97,121,44,32,115,101,116,116,101,114,44,32,105,116,101,114,97,116,101,101,44,32,97,99,99,117,109,117,108,97,116,111,114,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,97,114,114,97,121,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,115,101,116,116,101,114,40,97,99,99,117,109,117,108,97,116,111,114,44,32,118,97,108,117,101,44,32,105,116,101,114,97,116,101,101,40,118,97,108,117,101,41,44,32,97,114,114,97,121,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,97,99,99,117,109,117,108,97,116,111,114,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,102,111,114,69,97,99,104,96,32,102,111,114,32,97,114,114,97,121,115,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,92,110,32,32,32,42,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,97,114,114,97,121,93,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,69,97,99,104,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,114,97,116,101,101,40,97,114,114,97,121,91,105,110,100,101,120,93,44,32,105,110,100,101,120,44,32,97,114,114,97,121,41,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,102,111,114,69,97,99,104,82,105,103,104,116,96,32,102,111,114,32,97,114,114,97,121,115,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,92,110,32,32,32,42,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,97,114,114,97,121,93,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,69,97,99,104,82,105,103,104,116,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,114,97,116,101,101,40,97,114,114,97,121,91,108,101,110,103,116,104,93,44,32,108,101,110,103,116,104,44,32,97,114,114,97,121,41,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,101,118,101,114,121,96,32,102,111,114,32,97,114,114,97,121,115,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,92,110,32,32,32,42,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,97,114,114,97,121,93,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,97,108,108,32,101,108,101,109,101,110,116,115,32,112,97,115,115,32,116,104,101,32,112,114,101,100,105,99,97,116,101,32,99,104,101,99,107,44,92,110,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,69,118,101,114,121,40,97,114,114,97,121,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,112,114,101,100,105,99,97,116,101,40,97,114,114,97,121,91,105,110,100,101,120,93,44,32,105,110,100,101,120,44,32,97,114,114,97,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,102,105,108,116,101,114,96,32,102,111,114,32,97,114,114,97,121,115,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,92,110,32,32,32,42,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,97,114,114,97,121,93,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,105,108,116,101,114,101,100,32,97,114,114,97,121,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,70,105,108,116,101,114,40,97,114,114,97,121,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,114,101,115,73,110,100,101,120,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,97,114,114,97,121,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,105,102,32,40,112,114,101,100,105,99,97,116,101,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,97,114,114,97,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,114,101,115,73,110,100,101,120,43,43,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,105,110,99,108,117,100,101,115,96,32,102,111,114,32,97,114,114,97,121,115,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,92,110,32,32,32,42,32,115,112,101,99,105,102,121,105,110,103,32,97,110,32,105,110,100,101,120,32,116,111,32,115,101,97,114,99,104,32,102,114,111,109,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,97,114,114,97,121,93,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,116,97,114,103,101,116,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,116,97,114,103,101,116,96,32,105,115,32,102,111,117,110,100,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,73,110,99,108,117,100,101,115,40,97,114,114,97,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,114,101,116,117,114,110,32,33,33,108,101,110,103,116,104,32,38,38,32,98,97,115,101,73,110,100,101,120,79,102,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,48,41,32,62,32,45,49,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,105,115,32,108,105,107,101,32,96,97,114,114,97,121,73,110,99,108,117,100,101,115,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,97,32,99,111,109,112,97,114,97,116,111,114,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,97,114,114,97,121,93,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,116,97,114,103,101,116,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,99,111,109,112,97,114,97,116,111,114,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,116,97,114,103,101,116,96,32,105,115,32,102,111,117,110,100,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,73,110,99,108,117,100,101,115,87,105,116,104,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,99,111,109,112,97,114,97,116,111,114,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,99,111,109,112,97,114,97,116,111,114,40,118,97,108,117,101,44,32,97,114,114,97,121,91,105,110,100,101,120,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,109,97,112,96,32,102,111,114,32,97,114,114,97,121,115,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,92,110,32,32,32,42,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,97,114,114,97,121,93,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,109,97,112,112,101,100,32,97,114,114,97,121,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,77,97,112,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,65,114,114,97,121,40,108,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,115,117,108,116,91,105,110,100,101,120,93,32,61,32,105,116,101,114,97,116,101,101,40,97,114,114,97,121,91,105,110,100,101,120,93,44,32,105,110,100,101,120,44,32,97,114,114,97,121,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,112,112,101,110,100,115,32,116,104,101,32,101,108,101,109,101,110,116,115,32,111,102,32,96,118,97,108,117,101,115,96,32,116,111,32,96,97,114,114,97,121,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,118,97,108,117,101,115,32,84,104,101,32,118,97,108,117,101,115,32,116,111,32,97,112,112,101,110,100,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,80,117,115,104,40,97,114,114,97,121,44,32,118,97,108,117,101,115,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,111,102,102,115,101,116,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,97,114,114,97,121,91,111,102,102,115,101,116,32,43,32,105,110,100,101,120,93,32,61,32,118,97,108,117,101,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,114,101,100,117,99,101,96,32,102,111,114,32,97,114,114,97,121,115,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,92,110,32,32,32,42,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,97,114,114,97,121,93,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,91,97,99,99,117,109,117,108,97,116,111,114,93,32,84,104,101,32,105,110,105,116,105,97,108,32,118,97,108,117,101,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,105,110,105,116,65,99,99,117,109,93,32,83,112,101,99,105,102,121,32,117,115,105,110,103,32,116,104,101,32,102,105,114,115,116,32,101,108,101,109,101,110,116,32,111,102,32,96,97,114,114,97,121,96,32,97,115,92,110,32,32,32,42,32,32,116,104,101,32,105,110,105,116,105,97,108,32,118,97,108,117,101,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,99,99,117,109,117,108,97,116,101,100,32,118,97,108,117,101,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,82,101,100,117,99,101,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,44,32,97,99,99,117,109,117,108,97,116,111,114,44,32,105,110,105,116,65,99,99,117,109,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,105,102,32,40,105,110,105,116,65,99,99,117,109,32,38,38,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,97,99,99,117,109,117,108,97,116,111,114,32,61,32,97,114,114,97,121,91,43,43,105,110,100,101,120,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,97,99,99,117,109,117,108,97,116,111,114,32,61,32,105,116,101,114,97,116,101,101,40,97,99,99,117,109,117,108,97,116,111,114,44,32,97,114,114,97,121,91,105,110,100,101,120,93,44,32,105,110,100,101,120,44,32,97,114,114,97,121,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,97,99,99,117,109,117,108,97,116,111,114,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,114,101,100,117,99,101,82,105,103,104,116,96,32,102,111,114,32,97,114,114,97,121,115,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,92,110,32,32,32,42,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,97,114,114,97,121,93,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,91,97,99,99,117,109,117,108,97,116,111,114,93,32,84,104,101,32,105,110,105,116,105,97,108,32,118,97,108,117,101,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,105,110,105,116,65,99,99,117,109,93,32,83,112,101,99,105,102,121,32,117,115,105,110,103,32,116,104,101,32,108,97,115,116,32,101,108,101,109,101,110,116,32,111,102,32,96,97,114,114,97,121,96,32,97,115,92,110,32,32,32,42,32,32,116,104,101,32,105,110,105,116,105,97,108,32,118,97,108,117,101,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,99,99,117,109,117,108,97,116,101,100,32,118,97,108,117,101,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,82,101,100,117,99,101,82,105,103,104,116,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,44,32,97,99,99,117,109,117,108,97,116,111,114,44,32,105,110,105,116,65,99,99,117,109,41,32,123,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,105,102,32,40,105,110,105,116,65,99,99,117,109,32,38,38,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,97,99,99,117,109,117,108,97,116,111,114,32,61,32,97,114,114,97,121,91,45,45,108,101,110,103,116,104,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,97,99,99,117,109,117,108,97,116,111,114,32,61,32,105,116,101,114,97,116,101,101,40,97,99,99,117,109,117,108,97,116,111,114,44,32,97,114,114,97,121,91,108,101,110,103,116,104,93,44,32,108,101,110,103,116,104,44,32,97,114,114,97,121,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,97,99,99,117,109,117,108,97,116,111,114,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,115,111,109,101,96,32,102,111,114,32,97,114,114,97,121,115,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,92,110,32,32,32,42,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,97,114,114,97,121,93,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,97,110,121,32,101,108,101,109,101,110,116,32,112,97,115,115,101,115,32,116,104,101,32,112,114,101,100,105,99,97,116,101,32,99,104,101,99,107,44,92,110,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,83,111,109,101,40,97,114,114,97,121,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,112,114,101,100,105,99,97,116,101,40,97,114,114,97,121,91,105,110,100,101,120,93,44,32,105,110,100,101,120,44,32,97,114,114,97,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,71,101,116,115,32,116,104,101,32,115,105,122,101,32,111,102,32,97,110,32,65,83,67,73,73,32,96,115,116,114,105,110,103,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,114,105,110,103,32,84,104,101,32,115,116,114,105,110,103,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,116,114,105,110,103,32,115,105,122,101,46,92,110,32,32,32,42,47,92,110,32,32,118,97,114,32,97,115,99,105,105,83,105,122,101,32,61,32,98,97,115,101,80,114,111,112,101,114,116,121,40,39,108,101,110,103,116,104,39,41,59,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,111,110,118,101,114,116,115,32,97,110,32,65,83,67,73,73,32,96,115,116,114,105,110,103,96,32,116,111,32,97,110,32,97,114,114,97,121,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,114,105,110,103,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,97,114,114,97,121,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,97,115,99,105,105,84,111,65,114,114,97,121,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,115,112,108,105,116,40,39,39,41,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,83,112,108,105,116,115,32,97,110,32,65,83,67,73,73,32,96,115,116,114,105,110,103,96,32,105,110,116,111,32,97,110,32,97,114,114,97,121,32,111,102,32,105,116,115,32,119,111,114,100,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,119,111,114,100,115,32,111,102,32,96,115,116,114,105,110,103,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,97,115,99,105,105,87,111,114,100,115,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,109,97,116,99,104,40,114,101,65,115,99,105,105,87,111,114,100,41,32,124,124,32,91,93,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,102,105,110,100,75,101,121,96,32,97,110,100,32,96,95,46,102,105,110,100,76,97,115,116,75,101,121,96,44,92,110,32,32,32,42,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,44,32,119,104,105,99,104,32,105,116,101,114,97,116,101,115,32,111,118,101,114,32,96,99,111,108,108,101,99,116,105,111,110,96,92,110,32,32,32,42,32,117,115,105,110,103,32,96,101,97,99,104,70,117,110,99,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,101,97,99,104,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,32,96,99,111,108,108,101,99,116,105,111,110,96,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,102,111,117,110,100,32,101,108,101,109,101,110,116,32,111,114,32,105,116,115,32,107,101,121,44,32,101,108,115,101,32,96,117,110,100,101,102,105,110,101,100,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,70,105,110,100,75,101,121,40,99,111,108,108,101,99,116,105,111,110,44,32,112,114,101,100,105,99,97,116,101,44,32,101,97,99,104,70,117,110,99,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,59,92,110,32,32,32,32,101,97,99,104,70,117,110,99,40,99,111,108,108,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,107,101,121,44,32,99,111,108,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,112,114,101,100,105,99,97,116,101,40,118,97,108,117,101,44,32,107,101,121,44,32,99,111,108,108,101,99,116,105,111,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,107,101,121,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,102,105,110,100,73,110,100,101,120,96,32,97,110,100,32,96,95,46,102,105,110,100,76,97,115,116,73,110,100,101,120,96,32,119,105,116,104,111,117,116,92,110,32,32,32,42,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,102,114,111,109,73,110,100,101,120,32,84,104,101,32,105,110,100,101,120,32,116,111,32,115,101,97,114,99,104,32,102,114,111,109,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,102,114,111,109,82,105,103,104,116,93,32,83,112,101,99,105,102,121,32,105,116,101,114,97,116,105,110,103,32,102,114,111,109,32,114,105,103,104,116,32,116,111,32,108,101,102,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,109,97,116,99,104,101,100,32,118,97,108,117,101,44,32,101,108,115,101,32,96,45,49,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,70,105,110,100,73,110,100,101,120,40,97,114,114,97,121,44,32,112,114,101,100,105,99,97,116,101,44,32,102,114,111,109,73,110,100,101,120,44,32,102,114,111,109,82,105,103,104,116,41,32,123,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,102,114,111,109,73,110,100,101,120,32,43,32,40,102,114,111,109,82,105,103,104,116,32,63,32,49,32,58,32,45,49,41,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,40,102,114,111,109,82,105,103,104,116,32,63,32,105,110,100,101,120,45,45,32,58,32,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,112,114,101,100,105,99,97,116,101,40,97,114,114,97,121,91,105,110,100,101,120,93,44,32,105,110,100,101,120,44,32,97,114,114,97,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,110,100,101,120,79,102,96,32,119,105,116,104,111,117,116,32,96,102,114,111,109,73,110,100,101,120,96,32,98,111,117,110,100,115,32,99,104,101,99,107,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,102,114,111,109,73,110,100,101,120,32,84,104,101,32,105,110,100,101,120,32,116,111,32,115,101,97,114,99,104,32,102,114,111,109,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,109,97,116,99,104,101,100,32,118,97,108,117,101,44,32,101,108,115,101,32,96,45,49,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,110,100,101,120,79,102,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,102,114,111,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,118,97,108,117,101,92,110,32,32,32,32,32,32,63,32,115,116,114,105,99,116,73,110,100,101,120,79,102,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,102,114,111,109,73,110,100,101,120,41,92,110,32,32,32,32,32,32,58,32,98,97,115,101,70,105,110,100,73,110,100,101,120,40,97,114,114,97,121,44,32,98,97,115,101,73,115,78,97,78,44,32,102,114,111,109,73,110,100,101,120,41,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,105,115,32,108,105,107,101,32,96,98,97,115,101,73,110,100,101,120,79,102,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,97,32,99,111,109,112,97,114,97,116,111,114,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,102,114,111,109,73,110,100,101,120,32,84,104,101,32,105,110,100,101,120,32,116,111,32,115,101,97,114,99,104,32,102,114,111,109,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,99,111,109,112,97,114,97,116,111,114,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,109,97,116,99,104,101,100,32,118,97,108,117,101,44,32,101,108,115,101,32,96,45,49,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,110,100,101,120,79,102,87,105,116,104,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,102,114,111,109,73,110,100,101,120,44,32,99,111,109,112,97,114,97,116,111,114,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,102,114,111,109,73,110,100,101,120,32,45,32,49,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,99,111,109,112,97,114,97,116,111,114,40,97,114,114,97,121,91,105,110,100,101,120,93,44,32,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,115,78,97,78,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,110,117,109,98,101,114,32,111,98,106,101,99,116,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,96,78,97,78,96,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,115,78,97,78,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,33,61,61,32,118,97,108,117,101,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,109,101,97,110,96,32,97,110,100,32,96,95,46,109,101,97,110,66,121,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,92,110,32,32,32,42,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,109,101,97,110,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,77,101,97,110,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,114,101,116,117,114,110,32,108,101,110,103,116,104,32,63,32,40,98,97,115,101,83,117,109,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,41,32,47,32,108,101,110,103,116,104,41,32,58,32,78,65,78,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,112,114,111,112,101,114,116,121,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,100,101,101,112,32,112,97,116,104,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,103,101,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,99,99,101,115,115,111,114,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,80,114,111,112,101,114,116,121,40,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,111,98,106,101,99,116,91,107,101,121,93,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,112,114,111,112,101,114,116,121,79,102,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,100,101,101,112,32,112,97,116,104,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,99,99,101,115,115,111,114,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,80,114,111,112,101,114,116,121,79,102,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,111,98,106,101,99,116,91,107,101,121,93,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,114,101,100,117,99,101,96,32,97,110,100,32,96,95,46,114,101,100,117,99,101,82,105,103,104,116,96,44,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,92,110,32,32,32,42,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,44,32,119,104,105,99,104,32,105,116,101,114,97,116,101,115,32,111,118,101,114,32,96,99,111,108,108,101,99,116,105,111,110,96,32,117,115,105,110,103,32,96,101,97,99,104,70,117,110,99,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,97,99,99,117,109,117,108,97,116,111,114,32,84,104,101,32,105,110,105,116,105,97,108,32,118,97,108,117,101,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,105,110,105,116,65,99,99,117,109,32,83,112,101,99,105,102,121,32,117,115,105,110,103,32,116,104,101,32,102,105,114,115,116,32,111,114,32,108,97,115,116,32,101,108,101,109,101,110,116,32,111,102,92,110,32,32,32,42,32,32,96,99,111,108,108,101,99,116,105,111,110,96,32,97,115,32,116,104,101,32,105,110,105,116,105,97,108,32,118,97,108,117,101,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,101,97,99,104,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,32,96,99,111,108,108,101,99,116,105,111,110,96,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,99,99,117,109,117,108,97,116,101,100,32,118,97,108,117,101,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,82,101,100,117,99,101,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,44,32,97,99,99,117,109,117,108,97,116,111,114,44,32,105,110,105,116,65,99,99,117,109,44,32,101,97,99,104,70,117,110,99,41,32,123,92,110,32,32,32,32,101,97,99,104,70,117,110,99,40,99,111,108,108,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,99,111,108,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,97,99,99,117,109,117,108,97,116,111,114,32,61,32,105,110,105,116,65,99,99,117,109,92,110,32,32,32,32,32,32,32,32,63,32,40,105,110,105,116,65,99,99,117,109,32,61,32,102,97,108,115,101,44,32,118,97,108,117,101,41,92,110,32,32,32,32,32,32,32,32,58,32,105,116,101,114,97,116,101,101,40,97,99,99,117,109,117,108,97,116,111,114,44,32,118,97,108,117,101,44,32,105,110,100,101,120,44,32,99,111,108,108,101,99,116,105,111,110,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,97,99,99,117,109,117,108,97,116,111,114,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,115,111,114,116,66,121,96,32,119,104,105,99,104,32,117,115,101,115,32,96,99,111,109,112,97,114,101,114,96,32,116,111,32,100,101,102,105,110,101,32,116,104,101,92,110,32,32,32,42,32,115,111,114,116,32,111,114,100,101,114,32,111,102,32,96,97,114,114,97,121,96,32,97,110,100,32,114,101,112,108,97,99,101,115,32,99,114,105,116,101,114,105,97,32,111,98,106,101,99,116,115,32,119,105,116,104,32,116,104,101,105,114,32,99,111,114,114,101,115,112,111,110,100,105,110,103,92,110,32,32,32,42,32,118,97,108,117,101,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,115,111,114,116,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,99,111,109,112,97,114,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,100,101,102,105,110,101,32,115,111,114,116,32,111,114,100,101,114,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,83,111,114,116,66,121,40,97,114,114,97,121,44,32,99,111,109,112,97,114,101,114,41,32,123,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,97,114,114,97,121,46,115,111,114,116,40,99,111,109,112,97,114,101,114,41,59,92,110,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,97,114,114,97,121,91,108,101,110,103,116,104,93,32,61,32,97,114,114,97,121,91,108,101,110,103,116,104,93,46,118,97,108,117,101,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,115,117,109,96,32,97,110,100,32,96,95,46,115,117,109,66,121,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,92,110,32,32,32,42,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,117,109,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,83,117,109,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,44,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,32,61,32,105,116,101,114,97,116,101,101,40,97,114,114,97,121,91,105,110,100,101,120,93,41,59,92,110,32,32,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,114,101,115,117,108,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,99,117,114,114,101,110,116,32,58,32,40,114,101,115,117,108,116,32,43,32,99,117,114,114,101,110,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,116,105,109,101,115,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,92,110,32,32,32,42,32,111,114,32,109,97,120,32,97,114,114,97,121,32,108,101,110,103,116,104,32,99,104,101,99,107,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,110,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,116,105,109,101,115,32,116,111,32,105,110,118,111,107,101,32,96,105,116,101,114,97,116,101,101,96,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,114,101,115,117,108,116,115,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,84,105,109,101,115,40,110,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,65,114,114,97,121,40,110,41,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,114,101,115,117,108,116,91,105,110,100,101,120,93,32,61,32,105,116,101,114,97,116,101,101,40,105,110,100,101,120,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,116,111,80,97,105,114,115,96,32,97,110,100,32,96,95,46,116,111,80,97,105,114,115,73,110,96,32,119,104,105,99,104,32,99,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,92,110,32,32,32,42,32,111,102,32,107,101,121,45,118,97,108,117,101,32,112,97,105,114,115,32,102,111,114,32,96,111,98,106,101,99,116,96,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,116,111,32,116,104,101,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,111,102,32,96,112,114,111,112,115,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,112,114,111,112,115,32,84,104,101,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,116,111,32,103,101,116,32,118,97,108,117,101,115,32,102,111,114,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,107,101,121,45,118,97,108,117,101,32,112,97,105,114,115,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,84,111,80,97,105,114,115,40,111,98,106,101,99,116,44,32,112,114,111,112,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,77,97,112,40,112,114,111,112,115,44,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,107,101,121,44,32,111,98,106,101,99,116,91,107,101,121,93,93,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,116,114,105,109,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,114,105,110,103,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,116,114,105,109,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,116,114,105,109,109,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,84,114,105,109,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,92,110,32,32,32,32,32,32,63,32,115,116,114,105,110,103,46,115,108,105,99,101,40,48,44,32,116,114,105,109,109,101,100,69,110,100,73,110,100,101,120,40,115,116,114,105,110,103,41,32,43,32,49,41,46,114,101,112,108,97,99,101,40,114,101,84,114,105,109,83,116,97,114,116,44,32,39,39,41,92,110,32,32,32,32,32,32,58,32,115,116,114,105,110,103,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,117,110,97,114,121,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,115,116,111,114,105,110,103,32,109,101,116,97,100,97,116,97,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,97,112,32,97,114,103,117,109,101,110,116,115,32,102,111,114,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,99,97,112,112,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,85,110,97,114,121,40,102,117,110,99,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,118,97,108,117,101,115,96,32,97,110,100,32,96,95,46,118,97,108,117,101,115,73,110,96,32,119,104,105,99,104,32,99,114,101,97,116,101,115,32,97,110,92,110,32,32,32,42,32,97,114,114,97,121,32,111,102,32,96,111,98,106,101,99,116,96,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,116,111,32,116,104,101,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,92,110,32,32,32,42,32,111,102,32,96,112,114,111,112,115,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,112,114,111,112,115,32,84,104,101,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,116,111,32,103,101,116,32,118,97,108,117,101,115,32,102,111,114,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,86,97,108,117,101,115,40,111,98,106,101,99,116,44,32,112,114,111,112,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,77,97,112,40,112,114,111,112,115,44,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,91,107,101,121,93,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,97,32,96,99,97,99,104,101,96,32,118,97,108,117,101,32,102,111,114,32,96,107,101,121,96,32,101,120,105,115,116,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,99,97,99,104,101,32,84,104,101,32,99,97,99,104,101,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,101,110,116,114,121,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,97,110,32,101,110,116,114,121,32,102,111,114,32,96,107,101,121,96,32,101,120,105,115,116,115,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,99,97,99,104,101,72,97,115,40,99,97,99,104,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,97,99,104,101,46,104,97,115,40,107,101,121,41,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,85,115,101,100,32,98,121,32,96,95,46,116,114,105,109,96,32,97,110,100,32,96,95,46,116,114,105,109,83,116,97,114,116,96,32,116,111,32,103,101,116,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,102,105,114,115,116,32,115,116,114,105,110,103,32,115,121,109,98,111,108,92,110,32,32,32,42,32,116,104,97,116,32,105,115,32,110,111,116,32,102,111,117,110,100,32,105,110,32,116,104,101,32,99,104,97,114,97,99,116,101,114,32,115,121,109,98,111,108,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,115,116,114,83,121,109,98,111,108,115,32,84,104,101,32,115,116,114,105,110,103,32,115,121,109,98,111,108,115,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,99,104,114,83,121,109,98,111,108,115,32,84,104,101,32,99,104,97,114,97,99,116,101,114,32,115,121,109,98,111,108,115,32,116,111,32,102,105,110,100,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,102,105,114,115,116,32,117,110,109,97,116,99,104,101,100,32,115,116,114,105,110,103,32,115,121,109,98,111,108,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,99,104,97,114,115,83,116,97,114,116,73,110,100,101,120,40,115,116,114,83,121,109,98,111,108,115,44,32,99,104,114,83,121,109,98,111,108,115,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,115,116,114,83,121,109,98,111,108,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,32,38,38,32,98,97,115,101,73,110,100,101,120,79,102,40,99,104,114,83,121,109,98,111,108,115,44,32,115,116,114,83,121,109,98,111,108,115,91,105,110,100,101,120,93,44,32,48,41,32,62,32,45,49,41,32,123,125,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,85,115,101,100,32,98,121,32,96,95,46,116,114,105,109,96,32,97,110,100,32,96,95,46,116,114,105,109,69,110,100,96,32,116,111,32,103,101,116,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,108,97,115,116,32,115,116,114,105,110,103,32,115,121,109,98,111,108,92,110,32,32,32,42,32,116,104,97,116,32,105,115,32,110,111,116,32,102,111,117,110,100,32,105,110,32,116,104,101,32,99,104,97,114,97,99,116,101,114,32,115,121,109,98,111,108,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,115,116,114,83,121,109,98,111,108,115,32,84,104,101,32,115,116,114,105,110,103,32,115,121,109,98,111,108,115,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,99,104,114,83,121,109,98,111,108,115,32,84,104,101,32,99,104,97,114,97,99,116,101,114,32,115,121,109,98,111,108,115,32,116,111,32,102,105,110,100,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,108,97,115,116,32,117,110,109,97,116,99,104,101,100,32,115,116,114,105,110,103,32,115,121,109,98,111,108,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,99,104,97,114,115,69,110,100,73,110,100,101,120,40,115,116,114,83,121,109,98,111,108,115,44,32,99,104,114,83,121,109,98,111,108,115,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,115,116,114,83,121,109,98,111,108,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,105,110,100,101,120,45,45,32,38,38,32,98,97,115,101,73,110,100,101,120,79,102,40,99,104,114,83,121,109,98,111,108,115,44,32,115,116,114,83,121,109,98,111,108,115,91,105,110,100,101,120,93,44,32,48,41,32,62,32,45,49,41,32,123,125,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,71,101,116,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,96,112,108,97,99,101,104,111,108,100,101,114,96,32,111,99,99,117,114,114,101,110,99,101,115,32,105,110,32,96,97,114,114,97,121,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,112,108,97,99,101,104,111,108,100,101,114,32,84,104,101,32,112,108,97,99,101,104,111,108,100,101,114,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,112,108,97,99,101,104,111,108,100,101,114,32,99,111,117,110,116,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,99,111,117,110,116,72,111,108,100,101,114,115,40,97,114,114,97,121,44,32,112,108,97,99,101,104,111,108,100,101,114,41,32,123,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,48,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,97,114,114,97,121,91,108,101,110,103,116,104,93,32,61,61,61,32,112,108,97,99,101,104,111,108,100,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,43,43,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,85,115,101,100,32,98,121,32,96,95,46,100,101,98,117,114,114,96,32,116,111,32,99,111,110,118,101,114,116,32,76,97,116,105,110,45,49,32,83,117,112,112,108,101,109,101,110,116,32,97,110,100,32,76,97,116,105,110,32,69,120,116,101,110,100,101,100,45,65,92,110,32,32,32,42,32,108,101,116,116,101,114,115,32,116,111,32,98,97,115,105,99,32,76,97,116,105,110,32,108,101,116,116,101,114,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,108,101,116,116,101,114,32,84,104,101,32,109,97,116,99,104,101,100,32,108,101,116,116,101,114,32,116,111,32,100,101,98,117,114,114,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,100,101,98,117,114,114,101,100,32,108,101,116,116,101,114,46,92,110,32,32,32,42,47,92,110,32,32,118,97,114,32,100,101,98,117,114,114,76,101,116,116,101,114,32,61,32,98,97,115,101,80,114,111,112,101,114,116,121,79,102,40,100,101,98,117,114,114,101,100,76,101,116,116,101,114,115,41,59,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,85,115,101,100,32,98,121,32,96,95,46,101,115,99,97,112,101,96,32,116,111,32,99,111,110,118,101,114,116,32,99,104,97,114,97,99,116,101,114,115,32,116,111,32,72,84,77,76,32,101,110,116,105,116,105,101,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,99,104,114,32,84,104,101,32,109,97,116,99,104,101,100,32,99,104,97,114,97,99,116,101,114,32,116,111,32,101,115,99,97,112,101,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,101,115,99,97,112,101,100,32,99,104,97,114,97,99,116,101,114,46,92,110,32,32,32,42,47,92,110,32,32,118,97,114,32,101,115,99,97,112,101,72,116,109,108,67,104,97,114,32,61,32,98,97,115,101,80,114,111,112,101,114,116,121,79,102,40,104,116,109,108,69,115,99,97,112,101,115,41,59,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,85,115,101,100,32,98,121,32,96,95,46,116,101,109,112,108,97,116,101,96,32,116,111,32,101,115,99,97,112,101,32,99,104,97,114,97,99,116,101,114,115,32,102,111,114,32,105,110,99,108,117,115,105,111,110,32,105,110,32,99,111,109,112,105,108,101,100,32,115,116,114,105,110,103,32,108,105,116,101,114,97,108,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,99,104,114,32,84,104,101,32,109,97,116,99,104,101,100,32,99,104,97,114,97,99,116,101,114,32,116,111,32,101,115,99,97,112,101,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,101,115,99,97,112,101,100,32,99,104,97,114,97,99,116,101,114,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,101,115,99,97,112,101,83,116,114,105,110,103,67,104,97,114,40,99,104,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,39,92,92,92,92,39,32,43,32,115,116,114,105,110,103,69,115,99,97,112,101,115,91,99,104,114,93,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,71,101,116,115,32,116,104,101,32,118,97,108,117,101,32,97,116,32,96,107,101,121,96,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,98,106,101,99,116,93,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,103,101,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,103,101,116,86,97,108,117,101,40,111,98,106,101,99,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,111,98,106,101,99,116,91,107,101,121,93,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,115,116,114,105,110,103,96,32,99,111,110,116,97,105,110,115,32,85,110,105,99,111,100,101,32,115,121,109,98,111,108,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,114,105,110,103,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,97,32,115,121,109,98,111,108,32,105,115,32,102,111,117,110,100,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,104,97,115,85,110,105,99,111,100,101,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,72,97,115,85,110,105,99,111,100,101,46,116,101,115,116,40,115,116,114,105,110,103,41,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,115,116,114,105,110,103,96,32,99,111,110,116,97,105,110,115,32,97,32,119,111,114,100,32,99,111,109,112,111,115,101,100,32,111,102,32,85,110,105,99,111,100,101,32,115,121,109,98,111,108,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,114,105,110,103,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,97,32,119,111,114,100,32,105,115,32,102,111,117,110,100,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,104,97,115,85,110,105,99,111,100,101,87,111,114,100,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,72,97,115,85,110,105,99,111,100,101,87,111,114,100,46,116,101,115,116,40,115,116,114,105,110,103,41,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,105,116,101,114,97,116,111,114,96,32,116,111,32,97,110,32,97,114,114,97,121,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,105,116,101,114,97,116,111,114,32,84,104,101,32,105,116,101,114,97,116,111,114,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,97,114,114,97,121,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,105,116,101,114,97,116,111,114,84,111,65,114,114,97,121,40,105,116,101,114,97,116,111,114,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,33,40,100,97,116,97,32,61,32,105,116,101,114,97,116,111,114,46,110,101,120,116,40,41,41,46,100,111,110,101,41,32,123,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,100,97,116,97,46,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,109,97,112,96,32,116,111,32,105,116,115,32,107,101,121,45,118,97,108,117,101,32,112,97,105,114,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,109,97,112,32,84,104,101,32,109,97,112,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,107,101,121,45,118,97,108,117,101,32,112,97,105,114,115,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,109,97,112,84,111,65,114,114,97,121,40,109,97,112,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,65,114,114,97,121,40,109,97,112,46,115,105,122,101,41,59,92,110,92,110,32,32,32,32,109,97,112,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,114,101,115,117,108,116,91,43,43,105,110,100,101,120,93,32,61,32,91,107,101,121,44,32,118,97,108,117,101,93,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,117,110,97,114,121,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,32,96,102,117,110,99,96,32,119,105,116,104,32,105,116,115,32,97,114,103,117,109,101,110,116,32,116,114,97,110,115,102,111,114,109,101,100,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,119,114,97,112,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,116,114,97,110,115,102,111,114,109,32,84,104,101,32,97,114,103,117,109,101,110,116,32,116,114,97,110,115,102,111,114,109,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,111,118,101,114,65,114,103,40,102,117,110,99,44,32,116,114,97,110,115,102,111,114,109,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,97,114,103,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,116,114,97,110,115,102,111,114,109,40,97,114,103,41,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,82,101,112,108,97,99,101,115,32,97,108,108,32,96,112,108,97,99,101,104,111,108,100,101,114,96,32,101,108,101,109,101,110,116,115,32,105,110,32,96,97,114,114,97,121,96,32,119,105,116,104,32,97,110,32,105,110,116,101,114,110,97,108,32,112,108,97,99,101,104,111,108,100,101,114,92,110,32,32,32,42,32,97,110,100,32,114,101,116,117,114,110,115,32,97,110,32,97,114,114,97,121,32,111,102,32,116,104,101,105,114,32,105,110,100,101,120,101,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,112,108,97,99,101,104,111,108,100,101,114,32,84,104,101,32,112,108,97,99,101,104,111,108,100,101,114,32,116,111,32,114,101,112,108,97,99,101,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,112,108,97,99,101,104,111,108,100,101,114,32,105,110,100,101,120,101,115,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,112,108,97,99,101,72,111,108,100,101,114,115,40,97,114,114,97,121,44,32,112,108,97,99,101,104,111,108,100,101,114,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,114,101,115,73,110,100,101,120,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,97,114,114,97,121,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,112,108,97,99,101,104,111,108,100,101,114,32,124,124,32,118,97,108,117,101,32,61,61,61,32,80,76,65,67,69,72,79,76,68,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,97,114,114,97,121,91,105,110,100,101,120,93,32,61,32,80,76,65,67,69,72,79,76,68,69,82,59,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,114,101,115,73,110,100,101,120,43,43,93,32,61,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,115,101,116,96,32,116,111,32,97,110,32,97,114,114,97,121,32,111,102,32,105,116,115,32,118,97,108,117,101,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,101,116,32,84,104,101,32,115,101,116,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,115,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,115,101,116,84,111,65,114,114,97,121,40,115,101,116,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,65,114,114,97,121,40,115,101,116,46,115,105,122,101,41,59,92,110,92,110,32,32,32,32,115,101,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,115,117,108,116,91,43,43,105,110,100,101,120,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,115,101,116,96,32,116,111,32,105,116,115,32,118,97,108,117,101,45,118,97,108,117,101,32,112,97,105,114,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,101,116,32,84,104,101,32,115,101,116,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,45,118,97,108,117,101,32,112,97,105,114,115,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,115,101,116,84,111,80,97,105,114,115,40,115,101,116,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,65,114,114,97,121,40,115,101,116,46,115,105,122,101,41,59,92,110,92,110,32,32,32,32,115,101,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,115,117,108,116,91,43,43,105,110,100,101,120,93,32,61,32,91,118,97,108,117,101,44,32,118,97,108,117,101,93,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,105,110,100,101,120,79,102,96,32,119,104,105,99,104,32,112,101,114,102,111,114,109,115,32,115,116,114,105,99,116,32,101,113,117,97,108,105,116,121,92,110,32,32,32,42,32,99,111,109,112,97,114,105,115,111,110,115,32,111,102,32,118,97,108,117,101,115,44,32,105,46,101,46,32,96,61,61,61,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,102,114,111,109,73,110,100,101,120,32,84,104,101,32,105,110,100,101,120,32,116,111,32,115,101,97,114,99,104,32,102,114,111,109,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,109,97,116,99,104,101,100,32,118,97,108,117,101,44,32,101,108,115,101,32,96,45,49,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,115,116,114,105,99,116,73,110,100,101,120,79,102,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,102,114,111,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,102,114,111,109,73,110,100,101,120,32,45,32,49,44,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,97,114,114,97,121,91,105,110,100,101,120,93,32,61,61,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,108,97,115,116,73,110,100,101,120,79,102,96,32,119,104,105,99,104,32,112,101,114,102,111,114,109,115,32,115,116,114,105,99,116,32,101,113,117,97,108,105,116,121,92,110,32,32,32,42,32,99,111,109,112,97,114,105,115,111,110,115,32,111,102,32,118,97,108,117,101,115,44,32,105,46,101,46,32,96,61,61,61,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,102,114,111,109,73,110,100,101,120,32,84,104,101,32,105,110,100,101,120,32,116,111,32,115,101,97,114,99,104,32,102,114,111,109,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,109,97,116,99,104,101,100,32,118,97,108,117,101,44,32,101,108,115,101,32,96,45,49,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,115,116,114,105,99,116,76,97,115,116,73,110,100,101,120,79,102,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,102,114,111,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,102,114,111,109,73,110,100,101,120,32,43,32,49,59,92,110,32,32,32,32,119,104,105,108,101,32,40,105,110,100,101,120,45,45,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,97,114,114,97,121,91,105,110,100,101,120,93,32,61,61,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,71,101,116,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,115,121,109,98,111,108,115,32,105,110,32,96,115,116,114,105,110,103,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,114,105,110,103,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,116,114,105,110,103,32,115,105,122,101,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,115,116,114,105,110,103,83,105,122,101,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,97,115,85,110,105,99,111,100,101,40,115,116,114,105,110,103,41,92,110,32,32,32,32,32,32,63,32,117,110,105,99,111,100,101,83,105,122,101,40,115,116,114,105,110,103,41,92,110,32,32,32,32,32,32,58,32,97,115,99,105,105,83,105,122,101,40,115,116,114,105,110,103,41,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,115,116,114,105,110,103,96,32,116,111,32,97,110,32,97,114,114,97,121,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,114,105,110,103,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,97,114,114,97,121,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,115,116,114,105,110,103,84,111,65,114,114,97,121,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,97,115,85,110,105,99,111,100,101,40,115,116,114,105,110,103,41,92,110,32,32,32,32,32,32,63,32,117,110,105,99,111,100,101,84,111,65,114,114,97,121,40,115,116,114,105,110,103,41,92,110,32,32,32,32,32,32,58,32,97,115,99,105,105,84,111,65,114,114,97,121,40,115,116,114,105,110,103,41,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,85,115,101,100,32,98,121,32,96,95,46,116,114,105,109,96,32,97,110,100,32,96,95,46,116,114,105,109,69,110,100,96,32,116,111,32,103,101,116,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,108,97,115,116,32,110,111,110,45,119,104,105,116,101,115,112,97,99,101,92,110,32,32,32,42,32,99,104,97,114,97,99,116,101,114,32,111,102,32,96,115,116,114,105,110,103,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,114,105,110,103,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,108,97,115,116,32,110,111,110,45,119,104,105,116,101,115,112,97,99,101,32,99,104,97,114,97,99,116,101,114,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,116,114,105,109,109,101,100,69,110,100,73,110,100,101,120,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,115,116,114,105,110,103,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,105,110,100,101,120,45,45,32,38,38,32,114,101,87,104,105,116,101,115,112,97,99,101,46,116,101,115,116,40,115,116,114,105,110,103,46,99,104,97,114,65,116,40,105,110,100,101,120,41,41,41,32,123,125,92,110,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,85,115,101,100,32,98,121,32,96,95,46,117,110,101,115,99,97,112,101,96,32,116,111,32,99,111,110,118,101,114,116,32,72,84,77,76,32,101,110,116,105,116,105,101,115,32,116,111,32,99,104,97,114,97,99,116,101,114,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,99,104,114,32,84,104,101,32,109,97,116,99,104,101,100,32,99,104,97,114,97,99,116,101,114,32,116,111,32,117,110,101,115,99,97,112,101,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,117,110,101,115,99,97,112,101,100,32,99,104,97,114,97,99,116,101,114,46,92,110,32,32,32,42,47,92,110,32,32,118,97,114,32,117,110,101,115,99,97,112,101,72,116,109,108,67,104,97,114,32,61,32,98,97,115,101,80,114,111,112,101,114,116,121,79,102,40,104,116,109,108,85,110,101,115,99,97,112,101,115,41,59,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,71,101,116,115,32,116,104,101,32,115,105,122,101,32,111,102,32,97,32,85,110,105,99,111,100,101,32,96,115,116,114,105,110,103,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,114,105,110,103,32,84,104,101,32,115,116,114,105,110,103,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,116,114,105,110,103,32,115,105,122,101,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,117,110,105,99,111,100,101,83,105,122,101,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,114,101,85,110,105,99,111,100,101,46,108,97,115,116,73,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,119,104,105,108,101,32,40,114,101,85,110,105,99,111,100,101,46,116,101,115,116,40,115,116,114,105,110,103,41,41,32,123,92,110,32,32,32,32,32,32,43,43,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,111,110,118,101,114,116,115,32,97,32,85,110,105,99,111,100,101,32,96,115,116,114,105,110,103,96,32,116,111,32,97,110,32,97,114,114,97,121,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,114,105,110,103,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,97,114,114,97,121,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,117,110,105,99,111,100,101,84,111,65,114,114,97,121,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,109,97,116,99,104,40,114,101,85,110,105,99,111,100,101,41,32,124,124,32,91,93,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,83,112,108,105,116,115,32,97,32,85,110,105,99,111,100,101,32,96,115,116,114,105,110,103,96,32,105,110,116,111,32,97,110,32,97,114,114,97,121,32,111,102,32,105,116,115,32,119,111,114,100,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,119,111,114,100,115,32,111,102,32,96,115,116,114,105,110,103,96,46,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,117,110,105,99,111,100,101,87,111,114,100,115,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,109,97,116,99,104,40,114,101,85,110,105,99,111,100,101,87,111,114,100,41,32,124,124,32,91,93,59,92,110,32,32,125,92,110,92,110,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,114,101,97,116,101,32,97,32,110,101,119,32,112,114,105,115,116,105,110,101,32,96,108,111,100,97,115,104,96,32,102,117,110,99,116,105,111,110,32,117,115,105,110,103,32,116,104,101,32,96,99,111,110,116,101,120,116,96,32,111,98,106,101,99,116,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,42,32,64,115,105,110,99,101,32,49,46,49,46,48,92,110,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,99,111,110,116,101,120,116,61,114,111,111,116,93,32,84,104,101,32,99,111,110,116,101,120,116,32,111,98,106,101,99,116,46,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,97,32,110,101,119,32,96,108,111,100,97,115,104,96,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,42,92,110,32,32,32,42,32,95,46,109,105,120,105,110,40,123,32,39,102,111,111,39,58,32,95,46,99,111,110,115,116,97,110,116,40,39,102,111,111,39,41,32,125,41,59,92,110,32,32,32,42,92,110,32,32,32,42,32,118,97,114,32,108,111,100,97,115,104,32,61,32,95,46,114,117,110,73,110,67,111,110,116,101,120,116,40,41,59,92,110,32,32,32,42,32,108,111,100,97,115,104,46,109,105,120,105,110,40,123,32,39,98,97,114,39,58,32,108,111,100,97,115,104,46,99,111,110,115,116,97,110,116,40,39,98,97,114,39,41,32,125,41,59,92,110,32,32,32,42,92,110,32,32,32,42,32,95,46,105,115,70,117,110,99,116,105,111,110,40,95,46,102,111,111,41,59,92,110,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,42,32,95,46,105,115,70,117,110,99,116,105,111,110,40,95,46,98,97,114,41,59,92,110,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,42,92,110,32,32,32,42,32,108,111,100,97,115,104,46,105,115,70,117,110,99,116,105,111,110,40,108,111,100,97,115,104,46,102,111,111,41,59,92,110,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,42,32,108,111,100,97,115,104,46,105,115,70,117,110,99,116,105,111,110,40,108,111,100,97,115,104,46,98,97,114,41,59,92,110,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,42,92,110,32,32,32,42,32,47,47,32,67,114,101,97,116,101,32,97,32,115,117,112,101,100,45,117,112,32,96,100,101,102,101,114,96,32,105,110,32,78,111,100,101,46,106,115,46,92,110,32,32,32,42,32,118,97,114,32,100,101,102,101,114,32,61,32,95,46,114,117,110,73,110,67,111,110,116,101,120,116,40,123,32,39,115,101,116,84,105,109,101,111,117,116,39,58,32,115,101,116,73,109,109,101,100,105,97,116,101,32,125,41,46,100,101,102,101,114,59,92,110,32,32,32,42,47,92,110,32,32,118,97,114,32,114,117,110,73,110,67,111,110,116,101,120,116,32,61,32,40,102,117,110,99,116,105,111,110,32,114,117,110,73,110,67,111,110,116,101,120,116,40,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,32,61,61,32,110,117,108,108,32,63,32,114,111,111,116,32,58,32,95,46,100,101,102,97,117,108,116,115,40,114,111,111,116,46,79,98,106,101,99,116,40,41,44,32,99,111,110,116,101,120,116,44,32,95,46,112,105,99,107,40,114,111,111,116,44,32,99,111,110,116,101,120,116,80,114,111,112,115,41,41,59,92,110,92,110,32,32,32,32,47,42,42,32,66,117,105,108,116,45,105,110,32,99,111,110,115,116,114,117,99,116,111,114,32,114,101,102,101,114,101,110,99,101,115,46,32,42,47,92,110,32,32,32,32,118,97,114,32,65,114,114,97,121,32,61,32,99,111,110,116,101,120,116,46,65,114,114,97,121,44,92,110,32,32,32,32,32,32,32,32,68,97,116,101,32,61,32,99,111,110,116,101,120,116,46,68,97,116,101,44,92,110,32,32,32,32,32,32,32,32,69,114,114,111,114,32,61,32,99,111,110,116,101,120,116,46,69,114,114,111,114,44,92,110,32,32,32,32,32,32,32,32,70,117,110,99,116,105,111,110,32,61,32,99,111,110,116,101,120,116,46,70,117,110,99,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,77,97,116,104,32,61,32,99,111,110,116,101,120,116,46,77,97,116,104,44,92,110,32,32,32,32,32,32,32,32,79,98,106,101,99,116,32,61,32,99,111,110,116,101,120,116,46,79,98,106,101,99,116,44,92,110,32,32,32,32,32,32,32,32,82,101,103,69,120,112,32,61,32,99,111,110,116,101,120,116,46,82,101,103,69,120,112,44,92,110,32,32,32,32,32,32,32,32,83,116,114,105,110,103,32,61,32,99,111,110,116,101,120,116,46,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,32,32,84,121,112,101,69,114,114,111,114,32,61,32,99,111,110,116,101,120,116,46,84,121,112,101,69,114,114,111,114,59,92,110,92,110,32,32,32,32,47,42,42,32,85,115,101,100,32,102,111,114,32,98,117,105,108,116,45,105,110,32,109,101,116,104,111,100,32,114,101,102,101,114,101,110,99,101,115,46,32,42,47,92,110,32,32,32,32,118,97,114,32,97,114,114,97,121,80,114,111,116,111,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,44,92,110,32,32,32,32,32,32,32,32,102,117,110,99,80,114,111,116,111,32,61,32,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,44,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,80,114,111,116,111,32,61,32,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,59,92,110,92,110,32,32,32,32,47,42,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,111,118,101,114,114,101,97,99,104,105,110,103,32,99,111,114,101,45,106,115,32,115,104,105,109,115,46,32,42,47,92,110,32,32,32,32,118,97,114,32,99,111,114,101,74,115,68,97,116,97,32,61,32,99,111,110,116,101,120,116,91,39,95,95,99,111,114,101,45,106,115,95,115,104,97,114,101,100,95,95,39,93,59,92,110,92,110,32,32,32,32,47,42,42,32,85,115,101,100,32,116,111,32,114,101,115,111,108,118,101,32,116,104,101,32,100,101,99,111,109,112,105,108,101,100,32,115,111,117,114,99,101,32,111,102,32,102,117,110,99,116,105,111,110,115,46,32,42,47,92,110,32,32,32,32,118,97,114,32,102,117,110,99,84,111,83,116,114,105,110,103,32,61,32,102,117,110,99,80,114,111,116,111,46,116,111,83,116,114,105,110,103,59,92,110,92,110,32,32,32,32,47,42,42,32,85,115,101,100,32,116,111,32,99,104,101,99,107,32,111,98,106,101,99,116,115,32,102,111,114,32,111,119,110,32,112,114,111,112,101,114,116,105,101,115,46,32,42,47,92,110,32,32,32,32,118,97,114,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,32,61,32,111,98,106,101,99,116,80,114,111,116,111,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,59,92,110,92,110,32,32,32,32,47,42,42,32,85,115,101,100,32,116,111,32,103,101,110,101,114,97,116,101,32,117,110,105,113,117,101,32,73,68,115,46,32,42,47,92,110,32,32,32,32,118,97,114,32,105,100,67,111,117,110,116,101,114,32,61,32,48,59,92,110,92,110,32,32,32,32,47,42,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,109,101,116,104,111,100,115,32,109,97,115,113,117,101,114,97,100,105,110,103,32,97,115,32,110,97,116,105,118,101,46,32,42,47,92,110,32,32,32,32,118,97,114,32,109,97,115,107,83,114,99,75,101,121,32,61,32,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,117,105,100,32,61,32,47,91,94,46,93,43,36,47,46,101,120,101,99,40,99,111,114,101,74,115,68,97,116,97,32,38,38,32,99,111,114,101,74,115,68,97,116,97,46,107,101,121,115,32,38,38,32,99,111,114,101,74,115,68,97,116,97,46,107,101,121,115,46,73,69,95,80,82,79,84,79,32,124,124,32,39,39,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,117,105,100,32,63,32,40,39,83,121,109,98,111,108,40,115,114,99,41,95,49,46,39,32,43,32,117,105,100,41,32,58,32,39,39,59,92,110,32,32,32,32,125,40,41,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,85,115,101,100,32,116,111,32,114,101,115,111,108,118,101,32,116,104,101,92,110,32,32,32,32,32,42,32,91,96,116,111,83,116,114,105,110,103,84,97,103,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,111,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,115,116,114,105,110,103,41,92,110,32,32,32,32,32,42,32,111,102,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,110,97,116,105,118,101,79,98,106,101,99,116,84,111,83,116,114,105,110,103,32,61,32,111,98,106,101,99,116,80,114,111,116,111,46,116,111,83,116,114,105,110,103,59,92,110,92,110,32,32,32,32,47,42,42,32,85,115,101,100,32,116,111,32,105,110,102,101,114,32,116,104,101,32,96,79,98,106,101,99,116,96,32,99,111,110,115,116,114,117,99,116,111,114,46,32,42,47,92,110,32,32,32,32,118,97,114,32,111,98,106,101,99,116,67,116,111,114,83,116,114,105,110,103,32,61,32,102,117,110,99,84,111,83,116,114,105,110,103,46,99,97,108,108,40,79,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,47,42,42,32,85,115,101,100,32,116,111,32,114,101,115,116,111,114,101,32,116,104,101,32,111,114,105,103,105,110,97,108,32,96,95,96,32,114,101,102,101,114,101,110,99,101,32,105,110,32,96,95,46,110,111,67,111,110,102,108,105,99,116,96,46,32,42,47,92,110,32,32,32,32,118,97,114,32,111,108,100,68,97,115,104,32,61,32,114,111,111,116,46,95,59,92,110,92,110,32,32,32,32,47,42,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,105,102,32,97,32,109,101,116,104,111,100,32,105,115,32,110,97,116,105,118,101,46,32,42,47,92,110,32,32,32,32,118,97,114,32,114,101,73,115,78,97,116,105,118,101,32,61,32,82,101,103,69,120,112,40,39,94,39,32,43,92,110,32,32,32,32,32,32,102,117,110,99,84,111,83,116,114,105,110,103,46,99,97,108,108,40,104,97,115,79,119,110,80,114,111,112,101,114,116,121,41,46,114,101,112,108,97,99,101,40,114,101,82,101,103,69,120,112,67,104,97,114,44,32,39,92,92,92,92,36,38,39,41,92,110,32,32,32,32,32,32,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,92,92,92,40,41,124,32,102,111,114,32,46,43,63,40,63,61,92,92,92,92,92,92,93,41,47,103,44,32,39,36,49,46,42,63,39,41,32,43,32,39,36,39,92,110,32,32,32,32,41,59,92,110,92,110,32,32,32,32,47,42,42,32,66,117,105,108,116,45,105,110,32,118,97,108,117,101,32,114,101,102,101,114,101,110,99,101,115,46,32,42,47,92,110,32,32,32,32,118,97,114,32,66,117,102,102,101,114,32,61,32,109,111,100,117,108,101,69,120,112,111,114,116,115,32,63,32,99,111,110,116,101,120,116,46,66,117,102,102,101,114,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,83,121,109,98,111,108,32,61,32,99,111,110,116,101,120,116,46,83,121,109,98,111,108,44,92,110,32,32,32,32,32,32,32,32,85,105,110,116,56,65,114,114,97,121,32,61,32,99,111,110,116,101,120,116,46,85,105,110,116,56,65,114,114,97,121,44,92,110,32,32,32,32,32,32,32,32,97,108,108,111,99,85,110,115,97,102,101,32,61,32,66,117,102,102,101,114,32,63,32,66,117,102,102,101,114,46,97,108,108,111,99,85,110,115,97,102,101,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,103,101,116,80,114,111,116,111,116,121,112,101,32,61,32,111,118,101,114,65,114,103,40,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,44,32,79,98,106,101,99,116,41,44,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,67,114,101,97,116,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,44,92,110,32,32,32,32,32,32,32,32,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,32,61,32,111,98,106,101,99,116,80,114,111,116,111,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,44,92,110,32,32,32,32,32,32,32,32,115,112,108,105,99,101,32,61,32,97,114,114,97,121,80,114,111,116,111,46,115,112,108,105,99,101,44,92,110,32,32,32,32,32,32,32,32,115,112,114,101,97,100,97,98,108,101,83,121,109,98,111,108,32,61,32,83,121,109,98,111,108,32,63,32,83,121,109,98,111,108,46,105,115,67,111,110,99,97,116,83,112,114,101,97,100,97,98,108,101,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,115,121,109,73,116,101,114,97,116,111,114,32,61,32,83,121,109,98,111,108,32,63,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,115,121,109,84,111,83,116,114,105,110,103,84,97,103,32,61,32,83,121,109,98,111,108,32,63,32,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,118,97,114,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,32,61,32,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,103,101,116,78,97,116,105,118,101,40,79,98,106,101,99,116,44,32,39,100,101,102,105,110,101,80,114,111,112,101,114,116,121,39,41,59,92,110,32,32,32,32,32,32,32,32,102,117,110,99,40,123,125,44,32,39,39,44,32,123,125,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,125,92,110,32,32,32,32,125,40,41,41,59,92,110,92,110,32,32,32,32,47,42,42,32,77,111,99,107,101,100,32,98,117,105,108,116,45,105,110,115,46,32,42,47,92,110,32,32,32,32,118,97,114,32,99,116,120,67,108,101,97,114,84,105,109,101,111,117,116,32,61,32,99,111,110,116,101,120,116,46,99,108,101,97,114,84,105,109,101,111,117,116,32,33,61,61,32,114,111,111,116,46,99,108,101,97,114,84,105,109,101,111,117,116,32,38,38,32,99,111,110,116,101,120,116,46,99,108,101,97,114,84,105,109,101,111,117,116,44,92,110,32,32,32,32,32,32,32,32,99,116,120,78,111,119,32,61,32,68,97,116,101,32,38,38,32,68,97,116,101,46,110,111,119,32,33,61,61,32,114,111,111,116,46,68,97,116,101,46,110,111,119,32,38,38,32,68,97,116,101,46,110,111,119,44,92,110,32,32,32,32,32,32,32,32,99,116,120,83,101,116,84,105,109,101,111,117,116,32,61,32,99,111,110,116,101,120,116,46,115,101,116,84,105,109,101,111,117,116,32,33,61,61,32,114,111,111,116,46,115,101,116,84,105,109,101,111,117,116,32,38,38,32,99,111,110,116,101,120,116,46,115,101,116,84,105,109,101,111,117,116,59,92,110,92,110,32,32,32,32,47,42,32,66,117,105,108,116,45,105,110,32,109,101,116,104,111,100,32,114,101,102,101,114,101,110,99,101,115,32,102,111,114,32,116,104,111,115,101,32,119,105,116,104,32,116,104,101,32,115,97,109,101,32,110,97,109,101,32,97,115,32,111,116,104,101,114,32,96,108,111,100,97,115,104,96,32,109,101,116,104,111,100,115,46,32,42,47,92,110,32,32,32,32,118,97,114,32,110,97,116,105,118,101,67,101,105,108,32,61,32,77,97,116,104,46,99,101,105,108,44,92,110,32,32,32,32,32,32,32,32,110,97,116,105,118,101,70,108,111,111,114,32,61,32,77,97,116,104,46,102,108,111,111,114,44,92,110,32,32,32,32,32,32,32,32,110,97,116,105,118,101,71,101,116,83,121,109,98,111,108,115,32,61,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,44,92,110,32,32,32,32,32,32,32,32,110,97,116,105,118,101,73,115,66,117,102,102,101,114,32,61,32,66,117,102,102,101,114,32,63,32,66,117,102,102,101,114,46,105,115,66,117,102,102,101,114,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,110,97,116,105,118,101,73,115,70,105,110,105,116,101,32,61,32,99,111,110,116,101,120,116,46,105,115,70,105,110,105,116,101,44,92,110,32,32,32,32,32,32,32,32,110,97,116,105,118,101,74,111,105,110,32,61,32,97,114,114,97,121,80,114,111,116,111,46,106,111,105,110,44,92,110,32,32,32,32,32,32,32,32,110,97,116,105,118,101,75,101,121,115,32,61,32,111,118,101,114,65,114,103,40,79,98,106,101,99,116,46,107,101,121,115,44,32,79,98,106,101,99,116,41,44,92,110,32,32,32,32,32,32,32,32,110,97,116,105,118,101,77,97,120,32,61,32,77,97,116,104,46,109,97,120,44,92,110,32,32,32,32,32,32,32,32,110,97,116,105,118,101,77,105,110,32,61,32,77,97,116,104,46,109,105,110,44,92,110,32,32,32,32,32,32,32,32,110,97,116,105,118,101,78,111,119,32,61,32,68,97,116,101,46,110,111,119,44,92,110,32,32,32,32,32,32,32,32,110,97,116,105,118,101,80,97,114,115,101,73,110,116,32,61,32,99,111,110,116,101,120,116,46,112,97,114,115,101,73,110,116,44,92,110,32,32,32,32,32,32,32,32,110,97,116,105,118,101,82,97,110,100,111,109,32,61,32,77,97,116,104,46,114,97,110,100,111,109,44,92,110,32,32,32,32,32,32,32,32,110,97,116,105,118,101,82,101,118,101,114,115,101,32,61,32,97,114,114,97,121,80,114,111,116,111,46,114,101,118,101,114,115,101,59,92,110,92,110,32,32,32,32,47,42,32,66,117,105,108,116,45,105,110,32,109,101,116,104,111,100,32,114,101,102,101,114,101,110,99,101,115,32,116,104,97,116,32,97,114,101,32,118,101,114,105,102,105,101,100,32,116,111,32,98,101,32,110,97,116,105,118,101,46,32,42,47,92,110,32,32,32,32,118,97,114,32,68,97,116,97,86,105,101,119,32,61,32,103,101,116,78,97,116,105,118,101,40,99,111,110,116,101,120,116,44,32,39,68,97,116,97,86,105,101,119,39,41,44,92,110,32,32,32,32,32,32,32,32,77,97,112,32,61,32,103,101,116,78,97,116,105,118,101,40,99,111,110,116,101,120,116,44,32,39,77,97,112,39,41,44,92,110,32,32,32,32,32,32,32,32,80,114,111,109,105,115,101,32,61,32,103,101,116,78,97,116,105,118,101,40,99,111,110,116,101,120,116,44,32,39,80,114,111,109,105,115,101,39,41,44,92,110,32,32,32,32,32,32,32,32,83,101,116,32,61,32,103,101,116,78,97,116,105,118,101,40,99,111,110,116,101,120,116,44,32,39,83,101,116,39,41,44,92,110,32,32,32,32,32,32,32,32,87,101,97,107,77,97,112,32,61,32,103,101,116,78,97,116,105,118,101,40,99,111,110,116,101,120,116,44,32,39,87,101,97,107,77,97,112,39,41,44,92,110,32,32,32,32,32,32,32,32,110,97,116,105,118,101,67,114,101,97,116,101,32,61,32,103,101,116,78,97,116,105,118,101,40,79,98,106,101,99,116,44,32,39,99,114,101,97,116,101,39,41,59,92,110,92,110,32,32,32,32,47,42,42,32,85,115,101,100,32,116,111,32,115,116,111,114,101,32,102,117,110,99,116,105,111,110,32,109,101,116,97,100,97,116,97,46,32,42,47,92,110,32,32,32,32,118,97,114,32,109,101,116,97,77,97,112,32,61,32,87,101,97,107,77,97,112,32,38,38,32,110,101,119,32,87,101,97,107,77,97,112,59,92,110,92,110,32,32,32,32,47,42,42,32,85,115,101,100,32,116,111,32,108,111,111,107,117,112,32,117,110,109,105,110,105,102,105,101,100,32,102,117,110,99,116,105,111,110,32,110,97,109,101,115,46,32,42,47,92,110,32,32,32,32,118,97,114,32,114,101,97,108,78,97,109,101,115,32,61,32,123,125,59,92,110,92,110,32,32,32,32,47,42,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,109,97,112,115,44,32,115,101,116,115,44,32,97,110,100,32,119,101,97,107,109,97,112,115,46,32,42,47,92,110,32,32,32,32,118,97,114,32,100,97,116,97,86,105,101,119,67,116,111,114,83,116,114,105,110,103,32,61,32,116,111,83,111,117,114,99,101,40,68,97,116,97,86,105,101,119,41,44,92,110,32,32,32,32,32,32,32,32,109,97,112,67,116,111,114,83,116,114,105,110,103,32,61,32,116,111,83,111,117,114,99,101,40,77,97,112,41,44,92,110,32,32,32,32,32,32,32,32,112,114,111,109,105,115,101,67,116,111,114,83,116,114,105,110,103,32,61,32,116,111,83,111,117,114,99,101,40,80,114,111,109,105,115,101,41,44,92,110,32,32,32,32,32,32,32,32,115,101,116,67,116,111,114,83,116,114,105,110,103,32,61,32,116,111,83,111,117,114,99,101,40,83,101,116,41,44,92,110,32,32,32,32,32,32,32,32,119,101,97,107,77,97,112,67,116,111,114,83,116,114,105,110,103,32,61,32,116,111,83,111,117,114,99,101,40,87,101,97,107,77,97,112,41,59,92,110,92,110,32,32,32,32,47,42,42,32,85,115,101,100,32,116,111,32,99,111,110,118,101,114,116,32,115,121,109,98,111,108,115,32,116,111,32,112,114,105,109,105,116,105,118,101,115,32,97,110,100,32,115,116,114,105,110,103,115,46,32,42,47,92,110,32,32,32,32,118,97,114,32,115,121,109,98,111,108,80,114,111,116,111,32,61,32,83,121,109,98,111,108,32,63,32,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,115,121,109,98,111,108,86,97,108,117,101,79,102,32,61,32,115,121,109,98,111,108,80,114,111,116,111,32,63,32,115,121,109,98,111,108,80,114,111,116,111,46,118,97,108,117,101,79,102,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,115,121,109,98,111,108,84,111,83,116,114,105,110,103,32,61,32,115,121,109,98,111,108,80,114,111,116,111,32,63,32,115,121,109,98,111,108,80,114,111,116,111,46,116,111,83,116,114,105,110,103,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,96,108,111,100,97,115,104,96,32,111,98,106,101,99,116,32,119,104,105,99,104,32,119,114,97,112,115,32,96,118,97,108,117,101,96,32,116,111,32,101,110,97,98,108,101,32,105,109,112,108,105,99,105,116,32,109,101,116,104,111,100,92,110,32,32,32,32,32,42,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,115,46,32,77,101,116,104,111,100,115,32,116,104,97,116,32,111,112,101,114,97,116,101,32,111,110,32,97,110,100,32,114,101,116,117,114,110,32,97,114,114,97,121,115,44,32,99,111,108,108,101,99,116,105,111,110,115,44,92,110,32,32,32,32,32,42,32,97,110,100,32,102,117,110,99,116,105,111,110,115,32,99,97,110,32,98,101,32,99,104,97,105,110,101,100,32,116,111,103,101,116,104,101,114,46,32,77,101,116,104,111,100,115,32,116,104,97,116,32,114,101,116,114,105,101,118,101,32,97,32,115,105,110,103,108,101,32,118,97,108,117,101,92,110,32,32,32,32,32,42,32,111,114,32,109,97,121,32,114,101,116,117,114,110,32,97,32,112,114,105,109,105,116,105,118,101,32,118,97,108,117,101,32,119,105,108,108,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,101,110,100,32,116,104,101,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,92,110,32,32,32,32,32,42,32,97,110,100,32,114,101,116,117,114,110,32,116,104,101,32,117,110,119,114,97,112,112,101,100,32,118,97,108,117,101,46,32,79,116,104,101,114,119,105,115,101,44,32,116,104,101,32,118,97,108,117,101,32,109,117,115,116,32,98,101,32,117,110,119,114,97,112,112,101,100,92,110,32,32,32,32,32,42,32,119,105,116,104,32,96,95,35,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,69,120,112,108,105,99,105,116,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,115,44,32,119,104,105,99,104,32,109,117,115,116,32,98,101,32,117,110,119,114,97,112,112,101,100,32,119,105,116,104,32,96,95,35,118,97,108,117,101,96,44,32,109,97,121,32,98,101,92,110,32,32,32,32,32,42,32,101,110,97,98,108,101,100,32,117,115,105,110,103,32,96,95,46,99,104,97,105,110,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,101,120,101,99,117,116,105,111,110,32,111,102,32,99,104,97,105,110,101,100,32,109,101,116,104,111,100,115,32,105,115,32,108,97,122,121,44,32,116,104,97,116,32,105,115,44,32,105,116,39,115,32,100,101,102,101,114,114,101,100,32,117,110,116,105,108,92,110,32,32,32,32,32,42,32,96,95,35,118,97,108,117,101,96,32,105,115,32,105,109,112,108,105,99,105,116,108,121,32,111,114,32,101,120,112,108,105,99,105,116,108,121,32,99,97,108,108,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,76,97,122,121,32,101,118,97,108,117,97,116,105,111,110,32,97,108,108,111,119,115,32,115,101,118,101,114,97,108,32,109,101,116,104,111,100,115,32,116,111,32,115,117,112,112,111,114,116,32,115,104,111,114,116,99,117,116,32,102,117,115,105,111,110,46,92,110,32,32,32,32,32,42,32,83,104,111,114,116,99,117,116,32,102,117,115,105,111,110,32,105,115,32,97,110,32,111,112,116,105,109,105,122,97,116,105,111,110,32,116,111,32,109,101,114,103,101,32,105,116,101,114,97,116,101,101,32,99,97,108,108,115,59,32,116,104,105,115,32,97,118,111,105,100,115,92,110,32,32,32,32,32,42,32,116,104,101,32,99,114,101,97,116,105,111,110,32,111,102,32,105,110,116,101,114,109,101,100,105,97,116,101,32,97,114,114,97,121,115,32,97,110,100,32,99,97,110,32,103,114,101,97,116,108,121,32,114,101,100,117,99,101,32,116,104,101,32,110,117,109,98,101,114,32,111,102,92,110,32,32,32,32,32,42,32,105,116,101,114,97,116,101,101,32,101,120,101,99,117,116,105,111,110,115,46,32,83,101,99,116,105,111,110,115,32,111,102,32,97,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,32,113,117,97,108,105,102,121,32,102,111,114,32,115,104,111,114,116,99,117,116,92,110,32,32,32,32,32,42,32,102,117,115,105,111,110,32,105,102,32,116,104,101,32,115,101,99,116,105,111,110,32,105,115,32,97,112,112,108,105,101,100,32,116,111,32,97,110,32,97,114,114,97,121,32,97,110,100,32,105,116,101,114,97,116,101,101,115,32,97,99,99,101,112,116,32,111,110,108,121,92,110,32,32,32,32,32,42,32,111,110,101,32,97,114,103,117,109,101,110,116,46,32,84,104,101,32,104,101,117,114,105,115,116,105,99,32,102,111,114,32,119,104,101,116,104,101,114,32,97,32,115,101,99,116,105,111,110,32,113,117,97,108,105,102,105,101,115,32,102,111,114,32,115,104,111,114,116,99,117,116,92,110,32,32,32,32,32,42,32,102,117,115,105,111,110,32,105,115,32,115,117,98,106,101,99,116,32,116,111,32,99,104,97,110,103,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,67,104,97,105,110,105,110,103,32,105,115,32,115,117,112,112,111,114,116,101,100,32,105,110,32,99,117,115,116,111,109,32,98,117,105,108,100,115,32,97,115,32,108,111,110,103,32,97,115,32,116,104,101,32,96,95,35,118,97,108,117,101,96,32,109,101,116,104,111,100,32,105,115,92,110,32,32,32,32,32,42,32,100,105,114,101,99,116,108,121,32,111,114,32,105,110,100,105,114,101,99,116,108,121,32,105,110,99,108,117,100,101,100,32,105,110,32,116,104,101,32,98,117,105,108,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,73,110,32,97,100,100,105,116,105,111,110,32,116,111,32,108,111,100,97,115,104,32,109,101,116,104,111,100,115,44,32,119,114,97,112,112,101,114,115,32,104,97,118,101,32,96,65,114,114,97,121,96,32,97,110,100,32,96,83,116,114,105,110,103,96,32,109,101,116,104,111,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,119,114,97,112,112,101,114,32,96,65,114,114,97,121,96,32,109,101,116,104,111,100,115,32,97,114,101,58,92,110,32,32,32,32,32,42,32,96,99,111,110,99,97,116,96,44,32,96,106,111,105,110,96,44,32,96,112,111,112,96,44,32,96,112,117,115,104,96,44,32,96,115,104,105,102,116,96,44,32,96,115,111,114,116,96,44,32,96,115,112,108,105,99,101,96,44,32,97,110,100,32,96,117,110,115,104,105,102,116,96,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,119,114,97,112,112,101,114,32,96,83,116,114,105,110,103,96,32,109,101,116,104,111,100,115,32,97,114,101,58,92,110,32,32,32,32,32,42,32,96,114,101,112,108,97,99,101,96,32,97,110,100,32,96,115,112,108,105,116,96,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,119,114,97,112,112,101,114,32,109,101,116,104,111,100,115,32,116,104,97,116,32,115,117,112,112,111,114,116,32,115,104,111,114,116,99,117,116,32,102,117,115,105,111,110,32,97,114,101,58,92,110,32,32,32,32,32,42,32,96,97,116,96,44,32,96,99,111,109,112,97,99,116,96,44,32,96,100,114,111,112,96,44,32,96,100,114,111,112,82,105,103,104,116,96,44,32,96,100,114,111,112,87,104,105,108,101,96,44,32,96,102,105,108,116,101,114,96,44,32,96,102,105,110,100,96,44,92,110,32,32,32,32,32,42,32,96,102,105,110,100,76,97,115,116,96,44,32,96,104,101,97,100,96,44,32,96,105,110,105,116,105,97,108,96,44,32,96,108,97,115,116,96,44,32,96,109,97,112,96,44,32,96,114,101,106,101,99,116,96,44,32,96,114,101,118,101,114,115,101,96,44,32,96,115,108,105,99,101,96,44,92,110,32,32,32,32,32,42,32,96,116,97,105,108,96,44,32,96,116,97,107,101,96,44,32,96,116,97,107,101,82,105,103,104,116,96,44,32,96,116,97,107,101,82,105,103,104,116,87,104,105,108,101,96,44,32,96,116,97,107,101,87,104,105,108,101,96,44,32,97,110,100,32,96,116,111,65,114,114,97,121,96,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,99,104,97,105,110,97,98,108,101,32,119,114,97,112,112,101,114,32,109,101,116,104,111,100,115,32,97,114,101,58,92,110,32,32,32,32,32,42,32,96,97,102,116,101,114,96,44,32,96,97,114,121,96,44,32,96,97,115,115,105,103,110,96,44,32,96,97,115,115,105,103,110,73,110,96,44,32,96,97,115,115,105,103,110,73,110,87,105,116,104,96,44,32,96,97,115,115,105,103,110,87,105,116,104,96,44,32,96,97,116,96,44,92,110,32,32,32,32,32,42,32,96,98,101,102,111,114,101,96,44,32,96,98,105,110,100,96,44,32,96,98,105,110,100,65,108,108,96,44,32,96,98,105,110,100,75,101,121,96,44,32,96,99,97,115,116,65,114,114,97,121,96,44,32,96,99,104,97,105,110,96,44,32,96,99,104,117,110,107,96,44,92,110,32,32,32,32,32,42,32,96,99,111,109,109,105,116,96,44,32,96,99,111,109,112,97,99,116,96,44,32,96,99,111,110,99,97,116,96,44,32,96,99,111,110,102,111,114,109,115,96,44,32,96,99,111,110,115,116,97,110,116,96,44,32,96,99,111,117,110,116,66,121,96,44,32,96,99,114,101,97,116,101,96,44,92,110,32,32,32,32,32,42,32,96,99,117,114,114,121,96,44,32,96,100,101,98,111,117,110,99,101,96,44,32,96,100,101,102,97,117,108,116,115,96,44,32,96,100,101,102,97,117,108,116,115,68,101,101,112,96,44,32,96,100,101,102,101,114,96,44,32,96,100,101,108,97,121,96,44,92,110,32,32,32,32,32,42,32,96,100,105,102,102,101,114,101,110,99,101,96,44,32,96,100,105,102,102,101,114,101,110,99,101,66,121,96,44,32,96,100,105,102,102,101,114,101,110,99,101,87,105,116,104,96,44,32,96,100,114,111,112,96,44,32,96,100,114,111,112,82,105,103,104,116,96,44,92,110,32,32,32,32,32,42,32,96,100,114,111,112,82,105,103,104,116,87,104,105,108,101,96,44,32,96,100,114,111,112,87,104,105,108,101,96,44,32,96,101,120,116,101,110,100,96,44,32,96,101,120,116,101,110,100,87,105,116,104,96,44,32,96,102,105,108,108,96,44,32,96,102,105,108,116,101,114,96,44,92,110,32,32,32,32,32,42,32,96,102,108,97,116,77,97,112,96,44,32,96,102,108,97,116,77,97,112,68,101,101,112,96,44,32,96,102,108,97,116,77,97,112,68,101,112,116,104,96,44,32,96,102,108,97,116,116,101,110,96,44,32,96,102,108,97,116,116,101,110,68,101,101,112,96,44,92,110,32,32,32,32,32,42,32,96,102,108,97,116,116,101,110,68,101,112,116,104,96,44,32,96,102,108,105,112,96,44,32,96,102,108,111,119,96,44,32,96,102,108,111,119,82,105,103,104,116,96,44,32,96,102,114,111,109,80,97,105,114,115,96,44,32,96,102,117,110,99,116,105,111,110,115,96,44,92,110,32,32,32,32,32,42,32,96,102,117,110,99,116,105,111,110,115,73,110,96,44,32,96,103,114,111,117,112,66,121,96,44,32,96,105,110,105,116,105,97,108,96,44,32,96,105,110,116,101,114,115,101,99,116,105,111,110,96,44,32,96,105,110,116,101,114,115,101,99,116,105,111,110,66,121,96,44,92,110,32,32,32,32,32,42,32,96,105,110,116,101,114,115,101,99,116,105,111,110,87,105,116,104,96,44,32,96,105,110,118,101,114,116,96,44,32,96,105,110,118,101,114,116,66,121,96,44,32,96,105,110,118,111,107,101,77,97,112,96,44,32,96,105,116,101,114,97,116,101,101,96,44,32,96,107,101,121,66,121,96,44,92,110,32,32,32,32,32,42,32,96,107,101,121,115,96,44,32,96,107,101,121,115,73,110,96,44,32,96,109,97,112,96,44,32,96,109,97,112,75,101,121,115,96,44,32,96,109,97,112,86,97,108,117,101,115,96,44,32,96,109,97,116,99,104,101,115,96,44,32,96,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,44,92,110,32,32,32,32,32,42,32,96,109,101,109,111,105,122,101,96,44,32,96,109,101,114,103,101,96,44,32,96,109,101,114,103,101,87,105,116,104,96,44,32,96,109,101,116,104,111,100,96,44,32,96,109,101,116,104,111,100,79,102,96,44,32,96,109,105,120,105,110,96,44,32,96,110,101,103,97,116,101,96,44,92,110,32,32,32,32,32,42,32,96,110,116,104,65,114,103,96,44,32,96,111,109,105,116,96,44,32,96,111,109,105,116,66,121,96,44,32,96,111,110,99,101,96,44,32,96,111,114,100,101,114,66,121,96,44,32,96,111,118,101,114,96,44,32,96,111,118,101,114,65,114,103,115,96,44,92,110,32,32,32,32,32,42,32,96,111,118,101,114,69,118,101,114,121,96,44,32,96,111,118,101,114,83,111,109,101,96,44,32,96,112,97,114,116,105,97,108,96,44,32,96,112,97,114,116,105,97,108,82,105,103,104,116,96,44,32,96,112,97,114,116,105,116,105,111,110,96,44,32,96,112,105,99,107,96,44,92,110,32,32,32,32,32,42,32,96,112,105,99,107,66,121,96,44,32,96,112,108,97,110,116,96,44,32,96,112,114,111,112,101,114,116,121,96,44,32,96,112,114,111,112,101,114,116,121,79,102,96,44,32,96,112,117,108,108,96,44,32,96,112,117,108,108,65,108,108,96,44,32,96,112,117,108,108,65,108,108,66,121,96,44,92,110,32,32,32,32,32,42,32,96,112,117,108,108,65,108,108,87,105,116,104,96,44,32,96,112,117,108,108,65,116,96,44,32,96,112,117,115,104,96,44,32,96,114,97,110,103,101,96,44,32,96,114,97,110,103,101,82,105,103,104,116,96,44,32,96,114,101,97,114,103,96,44,32,96,114,101,106,101,99,116,96,44,92,110,32,32,32,32,32,42,32,96,114,101,109,111,118,101,96,44,32,96,114,101,115,116,96,44,32,96,114,101,118,101,114,115,101,96,44,32,96,115,97,109,112,108,101,83,105,122,101,96,44,32,96,115,101,116,96,44,32,96,115,101,116,87,105,116,104,96,44,32,96,115,104,117,102,102,108,101,96,44,92,110,32,32,32,32,32,42,32,96,115,108,105,99,101,96,44,32,96,115,111,114,116,96,44,32,96,115,111,114,116,66,121,96,44,32,96,115,112,108,105,99,101,96,44,32,96,115,112,114,101,97,100,96,44,32,96,116,97,105,108,96,44,32,96,116,97,107,101,96,44,32,96,116,97,107,101,82,105,103,104,116,96,44,92,110,32,32,32,32,32,42,32,96,116,97,107,101,82,105,103,104,116,87,104,105,108,101,96,44,32,96,116,97,107,101,87,104,105,108,101,96,44,32,96,116,97,112,96,44,32,96,116,104,114,111,116,116,108,101,96,44,32,96,116,104,114,117,96,44,32,96,116,111,65,114,114,97,121,96,44,92,110,32,32,32,32,32,42,32,96,116,111,80,97,105,114,115,96,44,32,96,116,111,80,97,105,114,115,73,110,96,44,32,96,116,111,80,97,116,104,96,44,32,96,116,111,80,108,97,105,110,79,98,106,101,99,116,96,44,32,96,116,114,97,110,115,102,111,114,109,96,44,32,96,117,110,97,114,121,96,44,92,110,32,32,32,32,32,42,32,96,117,110,105,111,110,96,44,32,96,117,110,105,111,110,66,121,96,44,32,96,117,110,105,111,110,87,105,116,104,96,44,32,96,117,110,105,113,96,44,32,96,117,110,105,113,66,121,96,44,32,96,117,110,105,113,87,105,116,104,96,44,32,96,117,110,115,101,116,96,44,92,110,32,32,32,32,32,42,32,96,117,110,115,104,105,102,116,96,44,32,96,117,110,122,105,112,96,44,32,96,117,110,122,105,112,87,105,116,104,96,44,32,96,117,112,100,97,116,101,96,44,32,96,117,112,100,97,116,101,87,105,116,104,96,44,32,96,118,97,108,117,101,115,96,44,92,110,32,32,32,32,32,42,32,96,118,97,108,117,101,115,73,110,96,44,32,96,119,105,116,104,111,117,116,96,44,32,96,119,114,97,112,96,44,32,96,120,111,114,96,44,32,96,120,111,114,66,121,96,44,32,96,120,111,114,87,105,116,104,96,44,32,96,122,105,112,96,44,92,110,32,32,32,32,32,42,32,96,122,105,112,79,98,106,101,99,116,96,44,32,96,122,105,112,79,98,106,101,99,116,68,101,101,112,96,44,32,97,110,100,32,96,122,105,112,87,105,116,104,96,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,119,114,97,112,112,101,114,32,109,101,116,104,111,100,115,32,116,104,97,116,32,97,114,101,32,42,42,110,111,116,42,42,32,99,104,97,105,110,97,98,108,101,32,98,121,32,100,101,102,97,117,108,116,32,97,114,101,58,92,110,32,32,32,32,32,42,32,96,97,100,100,96,44,32,96,97,116,116,101,109,112,116,96,44,32,96,99,97,109,101,108,67,97,115,101,96,44,32,96,99,97,112,105,116,97,108,105,122,101,96,44,32,96,99,101,105,108,96,44,32,96,99,108,97,109,112,96,44,32,96,99,108,111,110,101,96,44,92,110,32,32,32,32,32,42,32,96,99,108,111,110,101,68,101,101,112,96,44,32,96,99,108,111,110,101,68,101,101,112,87,105,116,104,96,44,32,96,99,108,111,110,101,87,105,116,104,96,44,32,96,99,111,110,102,111,114,109,115,84,111,96,44,32,96,100,101,98,117,114,114,96,44,92,110,32,32,32,32,32,42,32,96,100,101,102,97,117,108,116,84,111,96,44,32,96,100,105,118,105,100,101,96,44,32,96,101,97,99,104,96,44,32,96,101,97,99,104,82,105,103,104,116,96,44,32,96,101,110,100,115,87,105,116,104,96,44,32,96,101,113,96,44,32,96,101,115,99,97,112,101,96,44,92,110,32,32,32,32,32,42,32,96,101,115,99,97,112,101,82,101,103,69,120,112,96,44,32,96,101,118,101,114,121,96,44,32,96,102,105,110,100,96,44,32,96,102,105,110,100,73,110,100,101,120,96,44,32,96,102,105,110,100,75,101,121,96,44,32,96,102,105,110,100,76,97,115,116,96,44,92,110,32,32,32,32,32,42,32,96,102,105,110,100,76,97,115,116,73,110,100,101,120,96,44,32,96,102,105,110,100,76,97,115,116,75,101,121,96,44,32,96,102,105,114,115,116,96,44,32,96,102,108,111,111,114,96,44,32,96,102,111,114,69,97,99,104,96,44,32,96,102,111,114,69,97,99,104,82,105,103,104,116,96,44,92,110,32,32,32,32,32,42,32,96,102,111,114,73,110,96,44,32,96,102,111,114,73,110,82,105,103,104,116,96,44,32,96,102,111,114,79,119,110,96,44,32,96,102,111,114,79,119,110,82,105,103,104,116,96,44,32,96,103,101,116,96,44,32,96,103,116,96,44,32,96,103,116,101,96,44,32,96,104,97,115,96,44,92,110,32,32,32,32,32,42,32,96,104,97,115,73,110,96,44,32,96,104,101,97,100,96,44,32,96,105,100,101,110,116,105,116,121,96,44,32,96,105,110,99,108,117,100,101,115,96,44,32,96,105,110,100,101,120,79,102,96,44,32,96,105,110,82,97,110,103,101,96,44,32,96,105,110,118,111,107,101,96,44,92,110,32,32,32,32,32,42,32,96,105,115,65,114,103,117,109,101,110,116,115,96,44,32,96,105,115,65,114,114,97,121,96,44,32,96,105,115,65,114,114,97,121,66,117,102,102,101,114,96,44,32,96,105,115,65,114,114,97,121,76,105,107,101,96,44,32,96,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,96,44,92,110,32,32,32,32,32,42,32,96,105,115,66,111,111,108,101,97,110,96,44,32,96,105,115,66,117,102,102,101,114,96,44,32,96,105,115,68,97,116,101,96,44,32,96,105,115,69,108,101,109,101,110,116,96,44,32,96,105,115,69,109,112,116,121,96,44,32,96,105,115,69,113,117,97,108,96,44,92,110,32,32,32,32,32,42,32,96,105,115,69,113,117,97,108,87,105,116,104,96,44,32,96,105,115,69,114,114,111,114,96,44,32,96,105,115,70,105,110,105,116,101,96,44,32,96,105,115,70,117,110,99,116,105,111,110,96,44,32,96,105,115,73,110,116,101,103,101,114,96,44,32,96,105,115,76,101,110,103,116,104,96,44,92,110,32,32,32,32,32,42,32,96,105,115,77,97,112,96,44,32,96,105,115,77,97,116,99,104,96,44,32,96,105,115,77,97,116,99,104,87,105,116,104,96,44,32,96,105,115,78,97,78,96,44,32,96,105,115,78,97,116,105,118,101,96,44,32,96,105,115,78,105,108,96,44,32,96,105,115,78,117,108,108,96,44,92,110,32,32,32,32,32,42,32,96,105,115,78,117,109,98,101,114,96,44,32,96,105,115,79,98,106,101,99,116,96,44,32,96,105,115,79,98,106,101,99,116,76,105,107,101,96,44,32,96,105,115,80,108,97,105,110,79,98,106,101,99,116,96,44,32,96,105,115,82,101,103,69,120,112,96,44,92,110,32,32,32,32,32,42,32,96,105,115,83,97,102,101,73,110,116,101,103,101,114,96,44,32,96,105,115,83,101,116,96,44,32,96,105,115,83,116,114,105,110,103,96,44,32,96,105,115,85,110,100,101,102,105,110,101,100,96,44,32,96,105,115,84,121,112,101,100,65,114,114,97,121,96,44,92,110,32,32,32,32,32,42,32,96,105,115,87,101,97,107,77,97,112,96,44,32,96,105,115,87,101,97,107,83,101,116,96,44,32,96,106,111,105,110,96,44,32,96,107,101,98,97,98,67,97,115,101,96,44,32,96,108,97,115,116,96,44,32,96,108,97,115,116,73,110,100,101,120,79,102,96,44,92,110,32,32,32,32,32,42,32,96,108,111,119,101,114,67,97,115,101,96,44,32,96,108,111,119,101,114,70,105,114,115,116,96,44,32,96,108,116,96,44,32,96,108,116,101,96,44,32,96,109,97,120,96,44,32,96,109,97,120,66,121,96,44,32,96,109,101,97,110,96,44,32,96,109,101,97,110,66,121,96,44,92,110,32,32,32,32,32,42,32,96,109,105,110,96,44,32,96,109,105,110,66,121,96,44,32,96,109,117,108,116,105,112,108,121,96,44,32,96,110,111,67,111,110,102,108,105,99,116,96,44,32,96,110,111,111,112,96,44,32,96,110,111,119,96,44,32,96,110,116,104,96,44,32,96,112,97,100,96,44,92,110,32,32,32,32,32,42,32,96,112,97,100,69,110,100,96,44,32,96,112,97,100,83,116,97,114,116,96,44,32,96,112,97,114,115,101,73,110,116,96,44,32,96,112,111,112,96,44,32,96,114,97,110,100,111,109,96,44,32,96,114,101,100,117,99,101,96,44,32,96,114,101,100,117,99,101,82,105,103,104,116,96,44,92,110,32,32,32,32,32,42,32,96,114,101,112,101,97,116,96,44,32,96,114,101,115,117,108,116,96,44,32,96,114,111,117,110,100,96,44,32,96,114,117,110,73,110,67,111,110,116,101,120,116,96,44,32,96,115,97,109,112,108,101,96,44,32,96,115,104,105,102,116,96,44,32,96,115,105,122,101,96,44,92,110,32,32,32,32,32,42,32,96,115,110,97,107,101,67,97,115,101,96,44,32,96,115,111,109,101,96,44,32,96,115,111,114,116,101,100,73,110,100,101,120,96,44,32,96,115,111,114,116,101,100,73,110,100,101,120,66,121,96,44,32,96,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,96,44,92,110,32,32,32,32,32,42,32,96,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,66,121,96,44,32,96,115,116,97,114,116,67,97,115,101,96,44,32,96,115,116,97,114,116,115,87,105,116,104,96,44,32,96,115,116,117,98,65,114,114,97,121,96,44,32,96,115,116,117,98,70,97,108,115,101,96,44,92,110,32,32,32,32,32,42,32,96,115,116,117,98,79,98,106,101,99,116,96,44,32,96,115,116,117,98,83,116,114,105,110,103,96,44,32,96,115,116,117,98,84,114,117,101,96,44,32,96,115,117,98,116,114,97,99,116,96,44,32,96,115,117,109,96,44,32,96,115,117,109,66,121,96,44,92,110,32,32,32,32,32,42,32,96,116,101,109,112,108,97,116,101,96,44,32,96,116,105,109,101,115,96,44,32,96,116,111,70,105,110,105,116,101,96,44,32,96,116,111,73,110,116,101,103,101,114,96,44,32,96,116,111,74,83,79,78,96,44,32,96,116,111,76,101,110,103,116,104,96,44,92,110,32,32,32,32,32,42,32,96,116,111,76,111,119,101,114,96,44,32,96,116,111,78,117,109,98,101,114,96,44,32,96,116,111,83,97,102,101,73,110,116,101,103,101,114,96,44,32,96,116,111,83,116,114,105,110,103,96,44,32,96,116,111,85,112,112,101,114,96,44,32,96,116,114,105,109,96,44,92,110,32,32,32,32,32,42,32,96,116,114,105,109,69,110,100,96,44,32,96,116,114,105,109,83,116,97,114,116,96,44,32,96,116,114,117,110,99,97,116,101,96,44,32,96,117,110,101,115,99,97,112,101,96,44,32,96,117,110,105,113,117,101,73,100,96,44,32,96,117,112,112,101,114,67,97,115,101,96,44,92,110,32,32,32,32,32,42,32,96,117,112,112,101,114,70,105,114,115,116,96,44,32,96,118,97,108,117,101,96,44,32,97,110,100,32,96,119,111,114,100,115,96,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,95,92,110,32,32,32,32,32,42,32,64,99,111,110,115,116,114,117,99,116,111,114,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,101,113,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,119,114,97,112,32,105,110,32,97,32,96,108,111,100,97,115,104,96,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,96,108,111,100,97,115,104,96,32,119,114,97,112,112,101,114,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,115,113,117,97,114,101,40,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,110,32,42,32,110,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,119,114,97,112,112,101,100,32,61,32,95,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,82,101,116,117,114,110,115,32,97,110,32,117,110,119,114,97,112,112,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,119,114,97,112,112,101,100,46,114,101,100,117,99,101,40,95,46,97,100,100,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,54,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,82,101,116,117,114,110,115,32,97,32,119,114,97,112,112,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,118,97,114,32,115,113,117,97,114,101,115,32,61,32,119,114,97,112,112,101,100,46,109,97,112,40,115,113,117,97,114,101,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,40,115,113,117,97,114,101,115,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,40,115,113,117,97,114,101,115,46,118,97,108,117,101,40,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,111,100,97,115,104,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,33,105,115,65,114,114,97,121,40,118,97,108,117,101,41,32,38,38,32,33,40,118,97,108,117,101,32,105,110,115,116,97,110,99,101,111,102,32,76,97,122,121,87,114,97,112,112,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,105,110,115,116,97,110,99,101,111,102,32,76,111,100,97,115,104,87,114,97,112,112,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,118,97,108,117,101,44,32,39,95,95,119,114,97,112,112,101,100,95,95,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,119,114,97,112,112,101,114,67,108,111,110,101,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,76,111,100,97,115,104,87,114,97,112,112,101,114,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,99,114,101,97,116,101,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,97,115,115,105,103,110,105,110,103,92,110,32,32,32,32,32,42,32,112,114,111,112,101,114,116,105,101,115,32,116,111,32,116,104,101,32,99,114,101,97,116,101,100,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,112,114,111,116,111,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,110,104,101,114,105,116,32,102,114,111,109,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,98,97,115,101,67,114,101,97,116,101,32,61,32,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,111,98,106,101,99,116,40,41,32,123,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,112,114,111,116,111,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,112,114,111,116,111,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,111,98,106,101,99,116,67,114,101,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,67,114,101,97,116,101,40,112,114,111,116,111,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,32,61,32,112,114,111,116,111,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,110,101,119,32,111,98,106,101,99,116,59,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,40,41,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,102,117,110,99,116,105,111,110,32,119,104,111,115,101,32,112,114,111,116,111,116,121,112,101,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,32,119,114,97,112,112,101,114,115,32,105,110,104,101,114,105,116,32,102,114,111,109,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,76,111,100,97,115,104,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,78,111,32,111,112,101,114,97,116,105,111,110,32,112,101,114,102,111,114,109,101,100,46,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,99,111,110,115,116,114,117,99,116,111,114,32,102,111,114,32,99,114,101,97,116,105,110,103,32,96,108,111,100,97,115,104,96,32,119,114,97,112,112,101,114,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,119,114,97,112,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,99,104,97,105,110,65,108,108,93,32,69,110,97,98,108,101,32,101,120,112,108,105,99,105,116,32,109,101,116,104,111,100,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,76,111,100,97,115,104,87,114,97,112,112,101,114,40,118,97,108,117,101,44,32,99,104,97,105,110,65,108,108,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,32,61,32,91,93,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,99,104,97,105,110,95,95,32,61,32,33,33,99,104,97,105,110,65,108,108,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,105,110,100,101,120,95,95,32,61,32,48,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,66,121,32,100,101,102,97,117,108,116,44,32,116,104,101,32,116,101,109,112,108,97,116,101,32,100,101,108,105,109,105,116,101,114,115,32,117,115,101,100,32,98,121,32,108,111,100,97,115,104,32,97,114,101,32,108,105,107,101,32,116,104,111,115,101,32,105,110,92,110,32,32,32,32,32,42,32,101,109,98,101,100,100,101,100,32,82,117,98,121,32,40,69,82,66,41,32,97,115,32,119,101,108,108,32,97,115,32,69,83,50,48,49,53,32,116,101,109,112,108,97,116,101,32,115,116,114,105,110,103,115,46,32,67,104,97,110,103,101,32,116,104,101,92,110,32,32,32,32,32,42,32,102,111,108,108,111,119,105,110,103,32,116,101,109,112,108,97,116,101,32,115,101,116,116,105,110,103,115,32,116,111,32,117,115,101,32,97,108,116,101,114,110,97,116,105,118,101,32,100,101,108,105,109,105,116,101,114,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,116,121,112,101,32,123,79,98,106,101,99,116,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,108,111,100,97,115,104,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,32,61,32,123,92,110,92,110,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,96,100,97,116,97,96,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,32,116,111,32,98,101,32,72,84,77,76,45,101,115,99,97,112,101,100,46,92,110,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,92,110,32,32,32,32,32,32,32,42,32,64,116,121,112,101,32,123,82,101,103,69,120,112,125,92,110,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,39,101,115,99,97,112,101,39,58,32,114,101,69,115,99,97,112,101,44,92,110,92,110,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,99,111,100,101,32,116,111,32,98,101,32,101,118,97,108,117,97,116,101,100,46,92,110,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,92,110,32,32,32,32,32,32,32,42,32,64,116,121,112,101,32,123,82,101,103,69,120,112,125,92,110,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,39,101,118,97,108,117,97,116,101,39,58,32,114,101,69,118,97,108,117,97,116,101,44,92,110,92,110,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,96,100,97,116,97,96,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,32,116,111,32,105,110,106,101,99,116,46,92,110,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,92,110,32,32,32,32,32,32,32,42,32,64,116,121,112,101,32,123,82,101,103,69,120,112,125,92,110,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,39,105,110,116,101,114,112,111,108,97,116,101,39,58,32,114,101,73,110,116,101,114,112,111,108,97,116,101,44,92,110,92,110,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,42,32,85,115,101,100,32,116,111,32,114,101,102,101,114,101,110,99,101,32,116,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,105,110,32,116,104,101,32,116,101,109,112,108,97,116,101,32,116,101,120,116,46,92,110,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,92,110,32,32,32,32,32,32,32,42,32,64,116,121,112,101,32,123,115,116,114,105,110,103,125,92,110,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,39,118,97,114,105,97,98,108,101,39,58,32,39,39,44,92,110,92,110,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,42,32,85,115,101,100,32,116,111,32,105,109,112,111,114,116,32,118,97,114,105,97,98,108,101,115,32,105,110,116,111,32,116,104,101,32,99,111,109,112,105,108,101,100,32,116,101,109,112,108,97,116,101,46,92,110,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,92,110,32,32,32,32,32,32,32,42,32,64,116,121,112,101,32,123,79,98,106,101,99,116,125,92,110,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,39,105,109,112,111,114,116,115,39,58,32,123,92,110,92,110,32,32,32,32,32,32,32,32,47,42,42,92,110,32,32,32,32,32,32,32,32,32,42,32,65,32,114,101,102,101,114,101,110,99,101,32,116,111,32,116,104,101,32,96,108,111,100,97,115,104,96,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,42,92,110,32,32,32,32,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,46,105,109,112,111,114,116,115,92,110,32,32,32,32,32,32,32,32,32,42,32,64,116,121,112,101,32,123,70,117,110,99,116,105,111,110,125,92,110,32,32,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,32,32,39,95,39,58,32,108,111,100,97,115,104,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,47,32,69,110,115,117,114,101,32,119,114,97,112,112,101,114,115,32,97,114,101,32,105,110,115,116,97,110,99,101,115,32,111,102,32,96,98,97,115,101,76,111,100,97,115,104,96,46,92,110,32,32,32,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,32,61,32,98,97,115,101,76,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,108,111,100,97,115,104,59,92,110,92,110,32,32,32,32,76,111,100,97,115,104,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,32,61,32,98,97,115,101,67,114,101,97,116,101,40,98,97,115,101,76,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,41,59,92,110,32,32,32,32,76,111,100,97,115,104,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,76,111,100,97,115,104,87,114,97,112,112,101,114,59,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,108,97,122,121,32,119,114,97,112,112,101,114,32,111,98,106,101,99,116,32,119,104,105,99,104,32,119,114,97,112,115,32,96,118,97,108,117,101,96,32,116,111,32,101,110,97,98,108,101,32,108,97,122,121,32,101,118,97,108,117,97,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,99,111,110,115,116,114,117,99,116,111,114,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,119,114,97,112,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,76,97,122,121,87,114,97,112,112,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,32,61,32,91,93,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,100,105,114,95,95,32,61,32,49,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,32,61,32,91,93,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,32,61,32,77,65,88,95,65,82,82,65,89,95,76,69,78,71,84,72,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,118,105,101,119,115,95,95,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,99,108,111,110,101,32,111,102,32,116,104,101,32,108,97,122,121,32,119,114,97,112,112,101,114,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,99,108,111,110,101,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,76,97,122,121,87,114,97,112,112,101,114,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,108,111,110,101,100,32,96,76,97,122,121,87,114,97,112,112,101,114,96,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,97,122,121,67,108,111,110,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,110,101,119,32,76,97,122,121,87,114,97,112,112,101,114,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,41,59,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,97,99,116,105,111,110,115,95,95,32,61,32,99,111,112,121,65,114,114,97,121,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,59,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,100,105,114,95,95,32,61,32,116,104,105,115,46,95,95,100,105,114,95,95,59,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,102,105,108,116,101,114,101,100,95,95,32,61,32,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,59,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,105,116,101,114,97,116,101,101,115,95,95,32,61,32,99,111,112,121,65,114,114,97,121,40,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,41,59,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,116,97,107,101,67,111,117,110,116,95,95,32,61,32,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,59,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,118,105,101,119,115,95,95,32,61,32,99,111,112,121,65,114,114,97,121,40,116,104,105,115,46,95,95,118,105,101,119,115,95,95,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,118,101,114,115,101,115,32,116,104,101,32,100,105,114,101,99,116,105,111,110,32,111,102,32,108,97,122,121,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,114,101,118,101,114,115,101,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,76,97,122,121,87,114,97,112,112,101,114,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,114,101,118,101,114,115,101,100,32,96,76,97,122,121,87,114,97,112,112,101,114,96,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,97,122,121,82,101,118,101,114,115,101,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,110,101,119,32,76,97,122,121,87,114,97,112,112,101,114,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,100,105,114,95,95,32,61,32,45,49,59,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,102,105,108,116,101,114,101,100,95,95,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,116,104,105,115,46,99,108,111,110,101,40,41,59,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,100,105,114,95,95,32,42,61,32,45,49,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,69,120,116,114,97,99,116,115,32,116,104,101,32,117,110,119,114,97,112,112,101,100,32,118,97,108,117,101,32,102,114,111,109,32,105,116,115,32,108,97,122,121,32,119,114,97,112,112,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,118,97,108,117,101,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,76,97,122,121,87,114,97,112,112,101,114,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,117,110,119,114,97,112,112,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,97,122,121,86,97,108,117,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,114,114,97,121,32,61,32,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,92,110,32,32,32,32,32,32,32,32,32,32,100,105,114,32,61,32,116,104,105,115,46,95,95,100,105,114,95,95,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,65,114,114,32,61,32,105,115,65,114,114,97,121,40,97,114,114,97,121,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,82,105,103,104,116,32,61,32,100,105,114,32,60,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,97,114,114,76,101,110,103,116,104,32,61,32,105,115,65,114,114,32,63,32,97,114,114,97,121,46,108,101,110,103,116,104,32,58,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,118,105,101,119,32,61,32,103,101,116,86,105,101,119,40,48,44,32,97,114,114,76,101,110,103,116,104,44,32,116,104,105,115,46,95,95,118,105,101,119,115,95,95,41,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,118,105,101,119,46,115,116,97,114,116,44,92,110,32,32,32,32,32,32,32,32,32,32,101,110,100,32,61,32,118,105,101,119,46,101,110,100,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,101,110,100,32,45,32,115,116,97,114,116,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,105,115,82,105,103,104,116,32,63,32,101,110,100,32,58,32,40,115,116,97,114,116,32,45,32,49,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,114,97,116,101,101,115,32,61,32,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,44,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,114,76,101,110,103,116,104,32,61,32,105,116,101,114,97,116,101,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,73,110,100,101,120,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,107,101,67,111,117,110,116,32,61,32,110,97,116,105,118,101,77,105,110,40,108,101,110,103,116,104,44,32,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,65,114,114,32,124,124,32,40,33,105,115,82,105,103,104,116,32,38,38,32,97,114,114,76,101,110,103,116,104,32,61,61,32,108,101,110,103,116,104,32,38,38,32,116,97,107,101,67,111,117,110,116,32,61,61,32,108,101,110,103,116,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,87,114,97,112,112,101,114,86,97,108,117,101,40,97,114,114,97,121,44,32,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,111,117,116,101,114,58,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,45,45,32,38,38,32,114,101,115,73,110,100,101,120,32,60,32,116,97,107,101,67,111,117,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,43,61,32,100,105,114,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,114,73,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,97,114,114,97,121,91,105,110,100,101,120,93,59,92,110,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,116,101,114,73,110,100,101,120,32,60,32,105,116,101,114,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,105,116,101,114,97,116,101,101,115,91,105,116,101,114,73,110,100,101,120,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,116,101,114,97,116,101,101,32,61,32,100,97,116,97,46,105,116,101,114,97,116,101,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,32,61,32,100,97,116,97,46,116,121,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,32,61,32,105,116,101,114,97,116,101,101,40,118,97,108,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,32,76,65,90,89,95,77,65,80,95,70,76,65,71,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,99,111,109,112,117,116,101,100,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,99,111,109,112,117,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,32,76,65,90,89,95,70,73,76,84,69,82,95,70,76,65,71,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,32,111,117,116,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,32,111,117,116,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,114,101,115,73,110,100,101,120,43,43,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,69,110,115,117,114,101,32,96,76,97,122,121,87,114,97,112,112,101,114,96,32,105,115,32,97,110,32,105,110,115,116,97,110,99,101,32,111,102,32,96,98,97,115,101,76,111,100,97,115,104,96,46,92,110,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,32,61,32,98,97,115,101,67,114,101,97,116,101,40,98,97,115,101,76,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,41,59,92,110,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,76,97,122,121,87,114,97,112,112,101,114,59,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,104,97,115,104,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,99,111,110,115,116,114,117,99,116,111,114,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,101,110,116,114,105,101,115,93,32,84,104,101,32,107,101,121,45,118,97,108,117,101,32,112,97,105,114,115,32,116,111,32,99,97,99,104,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,72,97,115,104,40,101,110,116,114,105,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,101,110,116,114,105,101,115,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,101,110,116,114,105,101,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,40,41,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,101,110,116,114,105,101,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,40,101,110,116,114,121,91,48,93,44,32,101,110,116,114,121,91,49,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,109,111,118,101,115,32,97,108,108,32,107,101,121,45,118,97,108,117,101,32,101,110,116,114,105,101,115,32,102,114,111,109,32,116,104,101,32,104,97,115,104,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,99,108,101,97,114,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,72,97,115,104,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,97,115,104,67,108,101,97,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,100,97,116,97,95,95,32,61,32,110,97,116,105,118,101,67,114,101,97,116,101,32,63,32,110,97,116,105,118,101,67,114,101,97,116,101,40,110,117,108,108,41,32,58,32,123,125,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,105,122,101,32,61,32,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,109,111,118,101,115,32,96,107,101,121,96,32,97,110,100,32,105,116,115,32,118,97,108,117,101,32,102,114,111,109,32,116,104,101,32,104,97,115,104,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,100,101,108,101,116,101,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,72,97,115,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,104,97,115,104,32,84,104,101,32,104,97,115,104,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,118,97,108,117,101,32,116,111,32,114,101,109,111,118,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,101,110,116,114,121,32,119,97,115,32,114,101,109,111,118,101,100,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,97,115,104,68,101,108,101,116,101,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,116,104,105,115,46,104,97,115,40,107,101,121,41,32,38,38,32,100,101,108,101,116,101,32,116,104,105,115,46,95,95,100,97,116,97,95,95,91,107,101,121,93,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,105,122,101,32,45,61,32,114,101,115,117,108,116,32,63,32,49,32,58,32,48,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,104,97,115,104,32,118,97,108,117,101,32,102,111,114,32,96,107,101,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,103,101,116,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,72,97,115,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,118,97,108,117,101,32,116,111,32,103,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,101,110,116,114,121,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,97,115,104,71,101,116,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,104,105,115,46,95,95,100,97,116,97,95,95,59,92,110,32,32,32,32,32,32,105,102,32,40,110,97,116,105,118,101,67,114,101,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,100,97,116,97,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,61,61,61,32,72,65,83,72,95,85,78,68,69,70,73,78,69,68,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,100,97,116,97,44,32,107,101,121,41,32,63,32,100,97,116,97,91,107,101,121,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,97,32,104,97,115,104,32,118,97,108,117,101,32,102,111,114,32,96,107,101,121,96,32,101,120,105,115,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,104,97,115,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,72,97,115,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,101,110,116,114,121,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,97,110,32,101,110,116,114,121,32,102,111,114,32,96,107,101,121,96,32,101,120,105,115,116,115,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,97,115,104,72,97,115,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,104,105,115,46,95,95,100,97,116,97,95,95,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,97,116,105,118,101,67,114,101,97,116,101,32,63,32,40,100,97,116,97,91,107,101,121,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,58,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,100,97,116,97,44,32,107,101,121,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,83,101,116,115,32,116,104,101,32,104,97,115,104,32,96,107,101,121,96,32,116,111,32,96,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,115,101,116,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,72,97,115,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,118,97,108,117,101,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,104,97,115,104,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,97,115,104,83,101,116,40,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,104,105,115,46,95,95,100,97,116,97,95,95,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,105,122,101,32,43,61,32,116,104,105,115,46,104,97,115,40,107,101,121,41,32,63,32,48,32,58,32,49,59,92,110,32,32,32,32,32,32,100,97,116,97,91,107,101,121,93,32,61,32,40,110,97,116,105,118,101,67,114,101,97,116,101,32,38,38,32,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,63,32,72,65,83,72,95,85,78,68,69,70,73,78,69,68,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,109,101,116,104,111,100,115,32,116,111,32,96,72,97,115,104,96,46,92,110,32,32,32,32,72,97,115,104,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,32,61,32,104,97,115,104,67,108,101,97,114,59,92,110,32,32,32,32,72,97,115,104,46,112,114,111,116,111,116,121,112,101,91,39,100,101,108,101,116,101,39,93,32,61,32,104,97,115,104,68,101,108,101,116,101,59,92,110,32,32,32,32,72,97,115,104,46,112,114,111,116,111,116,121,112,101,46,103,101,116,32,61,32,104,97,115,104,71,101,116,59,92,110,32,32,32,32,72,97,115,104,46,112,114,111,116,111,116,121,112,101,46,104,97,115,32,61,32,104,97,115,104,72,97,115,59,92,110,32,32,32,32,72,97,115,104,46,112,114,111,116,111,116,121,112,101,46,115,101,116,32,61,32,104,97,115,104,83,101,116,59,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,108,105,115,116,32,99,97,99,104,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,99,111,110,115,116,114,117,99,116,111,114,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,101,110,116,114,105,101,115,93,32,84,104,101,32,107,101,121,45,118,97,108,117,101,32,112,97,105,114,115,32,116,111,32,99,97,99,104,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,76,105,115,116,67,97,99,104,101,40,101,110,116,114,105,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,101,110,116,114,105,101,115,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,101,110,116,114,105,101,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,40,41,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,101,110,116,114,105,101,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,40,101,110,116,114,121,91,48,93,44,32,101,110,116,114,121,91,49,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,109,111,118,101,115,32,97,108,108,32,107,101,121,45,118,97,108,117,101,32,101,110,116,114,105,101,115,32,102,114,111,109,32,116,104,101,32,108,105,115,116,32,99,97,99,104,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,99,108,101,97,114,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,76,105,115,116,67,97,99,104,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,115,116,67,97,99,104,101,67,108,101,97,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,100,97,116,97,95,95,32,61,32,91,93,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,105,122,101,32,61,32,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,109,111,118,101,115,32,96,107,101,121,96,32,97,110,100,32,105,116,115,32,118,97,108,117,101,32,102,114,111,109,32,116,104,101,32,108,105,115,116,32,99,97,99,104,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,100,101,108,101,116,101,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,76,105,115,116,67,97,99,104,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,118,97,108,117,101,32,116,111,32,114,101,109,111,118,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,101,110,116,114,121,32,119,97,115,32,114,101,109,111,118,101,100,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,115,116,67,97,99,104,101,68,101,108,101,116,101,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,104,105,115,46,95,95,100,97,116,97,95,95,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,97,115,115,111,99,73,110,100,101,120,79,102,40,100,97,116,97,44,32,107,101,121,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,108,97,115,116,73,110,100,101,120,32,61,32,100,97,116,97,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,61,61,32,108,97,115,116,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,100,97,116,97,46,112,111,112,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,115,112,108,105,99,101,46,99,97,108,108,40,100,97,116,97,44,32,105,110,100,101,120,44,32,49,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,45,45,116,104,105,115,46,115,105,122,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,108,105,115,116,32,99,97,99,104,101,32,118,97,108,117,101,32,102,111,114,32,96,107,101,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,103,101,116,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,76,105,115,116,67,97,99,104,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,118,97,108,117,101,32,116,111,32,103,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,101,110,116,114,121,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,115,116,67,97,99,104,101,71,101,116,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,104,105,115,46,95,95,100,97,116,97,95,95,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,97,115,115,111,99,73,110,100,101,120,79,102,40,100,97,116,97,44,32,107,101,121,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,32,60,32,48,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,100,97,116,97,91,105,110,100,101,120,93,91,49,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,97,32,108,105,115,116,32,99,97,99,104,101,32,118,97,108,117,101,32,102,111,114,32,96,107,101,121,96,32,101,120,105,115,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,104,97,115,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,76,105,115,116,67,97,99,104,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,101,110,116,114,121,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,97,110,32,101,110,116,114,121,32,102,111,114,32,96,107,101,121,96,32,101,120,105,115,116,115,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,115,116,67,97,99,104,101,72,97,115,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,115,115,111,99,73,110,100,101,120,79,102,40,116,104,105,115,46,95,95,100,97,116,97,95,95,44,32,107,101,121,41,32,62,32,45,49,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,83,101,116,115,32,116,104,101,32,108,105,115,116,32,99,97,99,104,101,32,96,107,101,121,96,32,116,111,32,96,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,115,101,116,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,76,105,115,116,67,97,99,104,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,118,97,108,117,101,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,108,105,115,116,32,99,97,99,104,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,115,116,67,97,99,104,101,83,101,116,40,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,104,105,115,46,95,95,100,97,116,97,95,95,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,97,115,115,111,99,73,110,100,101,120,79,102,40,100,97,116,97,44,32,107,101,121,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,43,43,116,104,105,115,46,115,105,122,101,59,92,110,32,32,32,32,32,32,32,32,100,97,116,97,46,112,117,115,104,40,91,107,101,121,44,32,118,97,108,117,101,93,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,100,97,116,97,91,105,110,100,101,120,93,91,49,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,109,101,116,104,111,100,115,32,116,111,32,96,76,105,115,116,67,97,99,104,101,96,46,92,110,32,32,32,32,76,105,115,116,67,97,99,104,101,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,32,61,32,108,105,115,116,67,97,99,104,101,67,108,101,97,114,59,92,110,32,32,32,32,76,105,115,116,67,97,99,104,101,46,112,114,111,116,111,116,121,112,101,91,39,100,101,108,101,116,101,39,93,32,61,32,108,105,115,116,67,97,99,104,101,68,101,108,101,116,101,59,92,110,32,32,32,32,76,105,115,116,67,97,99,104,101,46,112,114,111,116,111,116,121,112,101,46,103,101,116,32,61,32,108,105,115,116,67,97,99,104,101,71,101,116,59,92,110,32,32,32,32,76,105,115,116,67,97,99,104,101,46,112,114,111,116,111,116,121,112,101,46,104,97,115,32,61,32,108,105,115,116,67,97,99,104,101,72,97,115,59,92,110,32,32,32,32,76,105,115,116,67,97,99,104,101,46,112,114,111,116,111,116,121,112,101,46,115,101,116,32,61,32,108,105,115,116,67,97,99,104,101,83,101,116,59,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,109,97,112,32,99,97,99,104,101,32,111,98,106,101,99,116,32,116,111,32,115,116,111,114,101,32,107,101,121,45,118,97,108,117,101,32,112,97,105,114,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,99,111,110,115,116,114,117,99,116,111,114,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,101,110,116,114,105,101,115,93,32,84,104,101,32,107,101,121,45,118,97,108,117,101,32,112,97,105,114,115,32,116,111,32,99,97,99,104,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,77,97,112,67,97,99,104,101,40,101,110,116,114,105,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,101,110,116,114,105,101,115,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,101,110,116,114,105,101,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,40,41,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,101,110,116,114,105,101,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,40,101,110,116,114,121,91,48,93,44,32,101,110,116,114,121,91,49,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,109,111,118,101,115,32,97,108,108,32,107,101,121,45,118,97,108,117,101,32,101,110,116,114,105,101,115,32,102,114,111,109,32,116,104,101,32,109,97,112,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,99,108,101,97,114,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,77,97,112,67,97,99,104,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,112,67,97,99,104,101,67,108,101,97,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,105,122,101,32,61,32,48,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,100,97,116,97,95,95,32,61,32,123,92,110,32,32,32,32,32,32,32,32,39,104,97,115,104,39,58,32,110,101,119,32,72,97,115,104,44,92,110,32,32,32,32,32,32,32,32,39,109,97,112,39,58,32,110,101,119,32,40,77,97,112,32,124,124,32,76,105,115,116,67,97,99,104,101,41,44,92,110,32,32,32,32,32,32,32,32,39,115,116,114,105,110,103,39,58,32,110,101,119,32,72,97,115,104,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,109,111,118,101,115,32,96,107,101,121,96,32,97,110,100,32,105,116,115,32,118,97,108,117,101,32,102,114,111,109,32,116,104,101,32,109,97,112,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,100,101,108,101,116,101,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,77,97,112,67,97,99,104,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,118,97,108,117,101,32,116,111,32,114,101,109,111,118,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,101,110,116,114,121,32,119,97,115,32,114,101,109,111,118,101,100,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,112,67,97,99,104,101,68,101,108,101,116,101,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,103,101,116,77,97,112,68,97,116,97,40,116,104,105,115,44,32,107,101,121,41,91,39,100,101,108,101,116,101,39,93,40,107,101,121,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,105,122,101,32,45,61,32,114,101,115,117,108,116,32,63,32,49,32,58,32,48,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,109,97,112,32,118,97,108,117,101,32,102,111,114,32,96,107,101,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,103,101,116,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,77,97,112,67,97,99,104,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,118,97,108,117,101,32,116,111,32,103,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,101,110,116,114,121,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,112,67,97,99,104,101,71,101,116,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,77,97,112,68,97,116,97,40,116,104,105,115,44,32,107,101,121,41,46,103,101,116,40,107,101,121,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,97,32,109,97,112,32,118,97,108,117,101,32,102,111,114,32,96,107,101,121,96,32,101,120,105,115,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,104,97,115,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,77,97,112,67,97,99,104,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,101,110,116,114,121,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,97,110,32,101,110,116,114,121,32,102,111,114,32,96,107,101,121,96,32,101,120,105,115,116,115,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,112,67,97,99,104,101,72,97,115,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,77,97,112,68,97,116,97,40,116,104,105,115,44,32,107,101,121,41,46,104,97,115,40,107,101,121,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,83,101,116,115,32,116,104,101,32,109,97,112,32,96,107,101,121,96,32,116,111,32,96,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,115,101,116,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,77,97,112,67,97,99,104,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,118,97,108,117,101,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,109,97,112,32,99,97,99,104,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,112,67,97,99,104,101,83,101,116,40,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,103,101,116,77,97,112,68,97,116,97,40,116,104,105,115,44,32,107,101,121,41,44,92,110,32,32,32,32,32,32,32,32,32,32,115,105,122,101,32,61,32,100,97,116,97,46,115,105,122,101,59,92,110,92,110,32,32,32,32,32,32,100,97,116,97,46,115,101,116,40,107,101,121,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,105,122,101,32,43,61,32,100,97,116,97,46,115,105,122,101,32,61,61,32,115,105,122,101,32,63,32,48,32,58,32,49,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,109,101,116,104,111,100,115,32,116,111,32,96,77,97,112,67,97,99,104,101,96,46,92,110,32,32,32,32,77,97,112,67,97,99,104,101,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,32,61,32,109,97,112,67,97,99,104,101,67,108,101,97,114,59,92,110,32,32,32,32,77,97,112,67,97,99,104,101,46,112,114,111,116,111,116,121,112,101,91,39,100,101,108,101,116,101,39,93,32,61,32,109,97,112,67,97,99,104,101,68,101,108,101,116,101,59,92,110,32,32,32,32,77,97,112,67,97,99,104,101,46,112,114,111,116,111,116,121,112,101,46,103,101,116,32,61,32,109,97,112,67,97,99,104,101,71,101,116,59,92,110,32,32,32,32,77,97,112,67,97,99,104,101,46,112,114,111,116,111,116,121,112,101,46,104,97,115,32,61,32,109,97,112,67,97,99,104,101,72,97,115,59,92,110,32,32,32,32,77,97,112,67,97,99,104,101,46,112,114,111,116,111,116,121,112,101,46,115,101,116,32,61,32,109,97,112,67,97,99,104,101,83,101,116,59,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,99,97,99,104,101,32,111,98,106,101,99,116,32,116,111,32,115,116,111,114,101,32,117,110,105,113,117,101,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,99,111,110,115,116,114,117,99,116,111,114,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,118,97,108,117,101,115,93,32,84,104,101,32,118,97,108,117,101,115,32,116,111,32,99,97,99,104,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,83,101,116,67,97,99,104,101,40,118,97,108,117,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,118,97,108,117,101,115,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,118,97,108,117,101,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,100,97,116,97,95,95,32,61,32,110,101,119,32,77,97,112,67,97,99,104,101,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,100,100,40,118,97,108,117,101,115,91,105,110,100,101,120,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,100,100,115,32,96,118,97,108,117,101,96,32,116,111,32,116,104,101,32,97,114,114,97,121,32,99,97,99,104,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,97,100,100,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,83,101,116,67,97,99,104,101,92,110,32,32,32,32,32,42,32,64,97,108,105,97,115,32,112,117,115,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,97,99,104,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,97,99,104,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,101,116,67,97,99,104,101,65,100,100,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,115,101,116,40,118,97,108,117,101,44,32,72,65,83,72,95,85,78,68,69,70,73,78,69,68,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,105,110,32,116,104,101,32,97,114,114,97,121,32,99,97,99,104,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,104,97,115,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,83,101,116,67,97,99,104,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,102,111,117,110,100,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,101,116,67,97,99,104,101,72,97,115,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,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,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,109,101,116,104,111,100,115,32,116,111,32,96,83,101,116,67,97,99,104,101,96,46,92,110,32,32,32,32,83,101,116,67,97,99,104,101,46,112,114,111,116,111,116,121,112,101,46,97,100,100,32,61,32,83,101,116,67,97,99,104,101,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,32,61,32,115,101,116,67,97,99,104,101,65,100,100,59,92,110,32,32,32,32,83,101,116,67,97,99,104,101,46,112,114,111,116,111,116,121,112,101,46,104,97,115,32,61,32,115,101,116,67,97,99,104,101,72,97,115,59,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,115,116,97,99,107,32,99,97,99,104,101,32,111,98,106,101,99,116,32,116,111,32,115,116,111,114,101,32,107,101,121,45,118,97,108,117,101,32,112,97,105,114,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,99,111,110,115,116,114,117,99,116,111,114,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,101,110,116,114,105,101,115,93,32,84,104,101,32,107,101,121,45,118,97,108,117,101,32,112,97,105,114,115,32,116,111,32,99,97,99,104,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,83,116,97,99,107,40,101,110,116,114,105,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,104,105,115,46,95,95,100,97,116,97,95,95,32,61,32,110,101,119,32,76,105,115,116,67,97,99,104,101,40,101,110,116,114,105,101,115,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,105,122,101,32,61,32,100,97,116,97,46,115,105,122,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,109,111,118,101,115,32,97,108,108,32,107,101,121,45,118,97,108,117,101,32,101,110,116,114,105,101,115,32,102,114,111,109,32,116,104,101,32,115,116,97,99,107,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,99,108,101,97,114,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,83,116,97,99,107,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,116,97,99,107,67,108,101,97,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,95,100,97,116,97,95,95,32,61,32,110,101,119,32,76,105,115,116,67,97,99,104,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,105,122,101,32,61,32,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,109,111,118,101,115,32,96,107,101,121,96,32,97,110,100,32,105,116,115,32,118,97,108,117,101,32,102,114,111,109,32,116,104,101,32,115,116,97,99,107,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,100,101,108,101,116,101,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,83,116,97,99,107,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,118,97,108,117,101,32,116,111,32,114,101,109,111,118,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,101,110,116,114,121,32,119,97,115,32,114,101,109,111,118,101,100,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,116,97,99,107,68,101,108,101,116,101,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,104,105,115,46,95,95,100,97,116,97,95,95,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,100,97,116,97,91,39,100,101,108,101,116,101,39,93,40,107,101,121,41,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,115,105,122,101,32,61,32,100,97,116,97,46,115,105,122,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,115,116,97,99,107,32,118,97,108,117,101,32,102,111,114,32,96,107,101,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,103,101,116,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,83,116,97,99,107,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,118,97,108,117,101,32,116,111,32,103,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,101,110,116,114,121,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,116,97,99,107,71,101,116,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,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,107,101,121,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,97,32,115,116,97,99,107,32,118,97,108,117,101,32,102,111,114,32,96,107,101,121,96,32,101,120,105,115,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,104,97,115,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,83,116,97,99,107,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,101,110,116,114,121,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,97,110,32,101,110,116,114,121,32,102,111,114,32,96,107,101,121,96,32,101,120,105,115,116,115,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,116,97,99,107,72,97,115,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,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,107,101,121,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,83,101,116,115,32,116,104,101,32,115,116,97,99,107,32,96,107,101,121,96,32,116,111,32,96,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,115,101,116,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,83,116,97,99,107,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,118,97,108,117,101,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,116,97,99,107,32,99,97,99,104,101,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,116,97,99,107,83,101,116,40,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,104,105,115,46,95,95,100,97,116,97,95,95,59,92,110,32,32,32,32,32,32,105,102,32,40,100,97,116,97,32,105,110,115,116,97,110,99,101,111,102,32,76,105,115,116,67,97,99,104,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,97,105,114,115,32,61,32,100,97,116,97,46,95,95,100,97,116,97,95,95,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,77,97,112,32,124,124,32,40,112,97,105,114,115,46,108,101,110,103,116,104,32,60,32,76,65,82,71,69,95,65,82,82,65,89,95,83,73,90,69,32,45,32,49,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,97,105,114,115,46,112,117,115,104,40,91,107,101,121,44,32,118,97,108,117,101,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,105,122,101,32,61,32,43,43,100,97,116,97,46,115,105,122,101,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,116,104,105,115,46,95,95,100,97,116,97,95,95,32,61,32,110,101,119,32,77,97,112,67,97,99,104,101,40,112,97,105,114,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,100,97,116,97,46,115,101,116,40,107,101,121,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,105,122,101,32,61,32,100,97,116,97,46,115,105,122,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,109,101,116,104,111,100,115,32,116,111,32,96,83,116,97,99,107,96,46,92,110,32,32,32,32,83,116,97,99,107,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,32,61,32,115,116,97,99,107,67,108,101,97,114,59,92,110,32,32,32,32,83,116,97,99,107,46,112,114,111,116,111,116,121,112,101,91,39,100,101,108,101,116,101,39,93,32,61,32,115,116,97,99,107,68,101,108,101,116,101,59,92,110,32,32,32,32,83,116,97,99,107,46,112,114,111,116,111,116,121,112,101,46,103,101,116,32,61,32,115,116,97,99,107,71,101,116,59,92,110,32,32,32,32,83,116,97,99,107,46,112,114,111,116,111,116,121,112,101,46,104,97,115,32,61,32,115,116,97,99,107,72,97,115,59,92,110,32,32,32,32,83,116,97,99,107,46,112,114,111,116,111,116,121,112,101,46,115,101,116,32,61,32,115,116,97,99,107,83,101,116,59,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,116,104,101,32,101,110,117,109,101,114,97,98,108,101,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,111,102,32,116,104,101,32,97,114,114,97,121,45,108,105,107,101,32,96,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,105,110,104,101,114,105,116,101,100,32,83,112,101,99,105,102,121,32,114,101,116,117,114,110,105,110,103,32,105,110,104,101,114,105,116,101,100,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,76,105,107,101,75,101,121,115,40,118,97,108,117,101,44,32,105,110,104,101,114,105,116,101,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,65,114,114,32,61,32,105,115,65,114,114,97,121,40,118,97,108,117,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,65,114,103,32,61,32,33,105,115,65,114,114,32,38,38,32,105,115,65,114,103,117,109,101,110,116,115,40,118,97,108,117,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,66,117,102,102,32,61,32,33,105,115,65,114,114,32,38,38,32,33,105,115,65,114,103,32,38,38,32,105,115,66,117,102,102,101,114,40,118,97,108,117,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,84,121,112,101,32,61,32,33,105,115,65,114,114,32,38,38,32,33,105,115,65,114,103,32,38,38,32,33,105,115,66,117,102,102,32,38,38,32,105,115,84,121,112,101,100,65,114,114,97,121,40,118,97,108,117,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,115,107,105,112,73,110,100,101,120,101,115,32,61,32,105,115,65,114,114,32,124,124,32,105,115,65,114,103,32,124,124,32,105,115,66,117,102,102,32,124,124,32,105,115,84,121,112,101,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,115,107,105,112,73,110,100,101,120,101,115,32,63,32,98,97,115,101,84,105,109,101,115,40,118,97,108,117,101,46,108,101,110,103,116,104,44,32,83,116,114,105,110,103,41,32,58,32,91,93,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,114,101,115,117,108,116,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,105,110,104,101,114,105,116,101,100,32,124,124,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,118,97,108,117,101,44,32,107,101,121,41,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,33,40,115,107,105,112,73,110,100,101,120,101,115,32,38,38,32,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,97,102,97,114,105,32,57,32,104,97,115,32,101,110,117,109,101,114,97,98,108,101,32,96,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,96,32,105,110,32,115,116,114,105,99,116,32,109,111,100,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,32,61,61,32,39,108,101,110,103,116,104,39,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,100,101,46,106,115,32,48,46,49,48,32,104,97,115,32,101,110,117,109,101,114,97,98,108,101,32,110,111,110,45,105,110,100,101,120,32,112,114,111,112,101,114,116,105,101,115,32,111,110,32,98,117,102,102,101,114,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,105,115,66,117,102,102,32,38,38,32,40,107,101,121,32,61,61,32,39,111,102,102,115,101,116,39,32,124,124,32,107,101,121,32,61,61,32,39,112,97,114,101,110,116,39,41,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,80,104,97,110,116,111,109,74,83,32,50,32,104,97,115,32,101,110,117,109,101,114,97,98,108,101,32,110,111,110,45,105,110,100,101,120,32,112,114,111,112,101,114,116,105,101,115,32,111,110,32,116,121,112,101,100,32,97,114,114,97,121,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,105,115,84,121,112,101,32,38,38,32,40,107,101,121,32,61,61,32,39,98,117,102,102,101,114,39,32,124,124,32,107,101,121,32,61,61,32,39,98,121,116,101,76,101,110,103,116,104,39,32,124,124,32,107,101,121,32,61,61,32,39,98,121,116,101,79,102,102,115,101,116,39,41,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,107,105,112,32,105,110,100,101,120,32,112,114,111,112,101,114,116,105,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,115,73,110,100,101,120,40,107,101,121,44,32,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,115,97,109,112,108,101,96,32,102,111,114,32,97,114,114,97,121,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,115,97,109,112,108,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,97,110,100,111,109,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,83,97,109,112,108,101,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,101,110,103,116,104,32,63,32,97,114,114,97,121,91,98,97,115,101,82,97,110,100,111,109,40,48,44,32,108,101,110,103,116,104,32,45,32,49,41,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,115,97,109,112,108,101,83,105,122,101,96,32,102,111,114,32,97,114,114,97,121,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,115,97,109,112,108,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,110,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,116,111,32,115,97,109,112,108,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,97,110,100,111,109,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,83,97,109,112,108,101,83,105,122,101,40,97,114,114,97,121,44,32,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,104,117,102,102,108,101,83,101,108,102,40,99,111,112,121,65,114,114,97,121,40,97,114,114,97,121,41,44,32,98,97,115,101,67,108,97,109,112,40,110,44,32,48,44,32,97,114,114,97,121,46,108,101,110,103,116,104,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,115,104,117,102,102,108,101,96,32,102,111,114,32,97,114,114,97,121,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,115,104,117,102,102,108,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,115,104,117,102,102,108,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,114,114,97,121,83,104,117,102,102,108,101,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,104,117,102,102,108,101,83,101,108,102,40,99,111,112,121,65,114,114,97,121,40,97,114,114,97,121,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,105,115,32,108,105,107,101,32,96,97,115,115,105,103,110,86,97,108,117,101,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,100,111,101,115,110,39,116,32,97,115,115,105,103,110,92,110,32,32,32,32,32,42,32,96,117,110,100,101,102,105,110,101,100,96,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,97,115,115,105,103,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,97,115,115,105,103,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,115,115,105,103,110,77,101,114,103,101,86,97,108,117,101,40,111,98,106,101,99,116,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,118,97,108,117,101,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,33,101,113,40,111,98,106,101,99,116,91,107,101,121,93,44,32,118,97,108,117,101,41,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,40,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,33,40,107,101,121,32,105,110,32,111,98,106,101,99,116,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,98,97,115,101,65,115,115,105,103,110,86,97,108,117,101,40,111,98,106,101,99,116,44,32,107,101,121,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,115,115,105,103,110,115,32,96,118,97,108,117,101,96,32,116,111,32,96,107,101,121,96,32,111,102,32,96,111,98,106,101,99,116,96,32,105,102,32,116,104,101,32,101,120,105,115,116,105,110,103,32,118,97,108,117,101,32,105,115,32,110,111,116,32,101,113,117,105,118,97,108,101,110,116,92,110,32,32,32,32,32,42,32,117,115,105,110,103,32,91,96,83,97,109,101,86,97,108,117,101,90,101,114,111,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,115,97,109,101,118,97,108,117,101,122,101,114,111,41,92,110,32,32,32,32,32,42,32,102,111,114,32,101,113,117,97,108,105,116,121,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,97,115,115,105,103,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,97,115,115,105,103,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,115,115,105,103,110,86,97,108,117,101,40,111,98,106,101,99,116,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,98,106,86,97,108,117,101,32,61,32,111,98,106,101,99,116,91,107,101,121,93,59,92,110,32,32,32,32,32,32,105,102,32,40,33,40,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,111,98,106,101,99,116,44,32,107,101,121,41,32,38,38,32,101,113,40,111,98,106,86,97,108,117,101,44,32,118,97,108,117,101,41,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,40,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,33,40,107,101,121,32,105,110,32,111,98,106,101,99,116,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,98,97,115,101,65,115,115,105,103,110,86,97,108,117,101,40,111,98,106,101,99,116,44,32,107,101,121,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,105,110,100,101,120,32,97,116,32,119,104,105,99,104,32,116,104,101,32,96,107,101,121,96,32,105,115,32,102,111,117,110,100,32,105,110,32,96,97,114,114,97,121,96,32,111,102,32,107,101,121,45,118,97,108,117,101,32,112,97,105,114,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,107,101,121,32,84,104,101,32,107,101,121,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,109,97,116,99,104,101,100,32,118,97,108,117,101,44,32,101,108,115,101,32,96,45,49,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,115,115,111,99,73,110,100,101,120,79,102,40,97,114,114,97,121,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,113,40,97,114,114,97,121,91,108,101,110,103,116,104,93,91,48,93,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,103,103,114,101,103,97,116,101,115,32,101,108,101,109,101,110,116,115,32,111,102,32,96,99,111,108,108,101,99,116,105,111,110,96,32,111,110,32,96,97,99,99,117,109,117,108,97,116,111,114,96,32,119,105,116,104,32,107,101,121,115,32,116,114,97,110,115,102,111,114,109,101,100,92,110,32,32,32,32,32,42,32,98,121,32,96,105,116,101,114,97,116,101,101,96,32,97,110,100,32,118,97,108,117,101,115,32,115,101,116,32,98,121,32,96,115,101,116,116,101,114,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,115,101,116,116,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,115,101,116,32,96,97,99,99,117,109,117,108,97,116,111,114,96,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,105,116,101,114,97,116,101,101,32,116,111,32,116,114,97,110,115,102,111,114,109,32,107,101,121,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,97,99,99,117,109,117,108,97,116,111,114,32,84,104,101,32,105,110,105,116,105,97,108,32,97,103,103,114,101,103,97,116,101,100,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,96,97,99,99,117,109,117,108,97,116,111,114,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,65,103,103,114,101,103,97,116,111,114,40,99,111,108,108,101,99,116,105,111,110,44,32,115,101,116,116,101,114,44,32,105,116,101,114,97,116,101,101,44,32,97,99,99,117,109,117,108,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,69,97,99,104,40,99,111,108,108,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,107,101,121,44,32,99,111,108,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,115,101,116,116,101,114,40,97,99,99,117,109,117,108,97,116,111,114,44,32,118,97,108,117,101,44,32,105,116,101,114,97,116,101,101,40,118,97,108,117,101,41,44,32,99,111,108,108,101,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,99,99,117,109,117,108,97,116,111,114,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,97,115,115,105,103,110,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,109,117,108,116,105,112,108,101,32,115,111,117,114,99,101,115,92,110,32,32,32,32,32,42,32,111,114,32,96,99,117,115,116,111,109,105,122,101,114,96,32,102,117,110,99,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,65,115,115,105,103,110,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,38,38,32,99,111,112,121,79,98,106,101,99,116,40,115,111,117,114,99,101,44,32,107,101,121,115,40,115,111,117,114,99,101,41,44,32,111,98,106,101,99,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,97,115,115,105,103,110,73,110,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,109,117,108,116,105,112,108,101,32,115,111,117,114,99,101,115,92,110,32,32,32,32,32,42,32,111,114,32,96,99,117,115,116,111,109,105,122,101,114,96,32,102,117,110,99,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,65,115,115,105,103,110,73,110,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,38,38,32,99,111,112,121,79,98,106,101,99,116,40,115,111,117,114,99,101,44,32,107,101,121,115,73,110,40,115,111,117,114,99,101,41,44,32,111,98,106,101,99,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,97,115,115,105,103,110,86,97,108,117,101,96,32,97,110,100,32,96,97,115,115,105,103,110,77,101,114,103,101,86,97,108,117,101,96,32,119,105,116,104,111,117,116,92,110,32,32,32,32,32,42,32,118,97,108,117,101,32,99,104,101,99,107,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,97,115,115,105,103,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,97,115,115,105,103,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,65,115,115,105,103,110,86,97,108,117,101,40,111,98,106,101,99,116,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,32,61,61,32,39,95,95,112,114,111,116,111,95,95,39,32,38,38,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,101,99,116,44,32,107,101,121,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,99,111,110,102,105,103,117,114,97,98,108,101,39,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,39,101,110,117,109,101,114,97,98,108,101,39,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,39,118,97,108,117,101,39,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,39,119,114,105,116,97,98,108,101,39,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,91,107,101,121,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,97,116,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,110,100,105,118,105,100,117,97,108,32,112,97,116,104,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,91,93,125,32,112,97,116,104,115,32,84,104,101,32,112,114,111,112,101,114,116,121,32,112,97,116,104,115,32,116,111,32,112,105,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,112,105,99,107,101,100,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,65,116,40,111,98,106,101,99,116,44,32,112,97,116,104,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,112,97,116,104,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,65,114,114,97,121,40,108,101,110,103,116,104,41,44,92,110,32,32,32,32,32,32,32,32,32,32,115,107,105,112,32,61,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,105,110,100,101,120,93,32,61,32,115,107,105,112,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,103,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,115,91,105,110,100,101,120,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,99,108,97,109,112,96,32,119,104,105,99,104,32,100,111,101,115,110,39,116,32,99,111,101,114,99,101,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,110,117,109,98,101,114,32,84,104,101,32,110,117,109,98,101,114,32,116,111,32,99,108,97,109,112,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,108,111,119,101,114,93,32,84,104,101,32,108,111,119,101,114,32,98,111,117,110,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,117,112,112,101,114,32,84,104,101,32,117,112,112,101,114,32,98,111,117,110,100,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,108,97,109,112,101,100,32,110,117,109,98,101,114,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,67,108,97,109,112,40,110,117,109,98,101,114,44,32,108,111,119,101,114,44,32,117,112,112,101,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,117,109,98,101,114,32,61,61,61,32,110,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,117,112,112,101,114,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,110,117,109,98,101,114,32,61,32,110,117,109,98,101,114,32,60,61,32,117,112,112,101,114,32,63,32,110,117,109,98,101,114,32,58,32,117,112,112,101,114,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,111,119,101,114,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,110,117,109,98,101,114,32,61,32,110,117,109,98,101,114,32,62,61,32,108,111,119,101,114,32,63,32,110,117,109,98,101,114,32,58,32,108,111,119,101,114,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,109,98,101,114,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,99,108,111,110,101,96,32,97,110,100,32,96,95,46,99,108,111,110,101,68,101,101,112,96,32,119,104,105,99,104,32,116,114,97,99,107,115,92,110,32,32,32,32,32,42,32,116,114,97,118,101,114,115,101,100,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,98,105,116,109,97,115,107,32,84,104,101,32,98,105,116,109,97,115,107,32,102,108,97,103,115,46,92,110,32,32,32,32,32,42,32,32,49,32,45,32,68,101,101,112,32,99,108,111,110,101,92,110,32,32,32,32,32,42,32,32,50,32,45,32,70,108,97,116,116,101,110,32,105,110,104,101,114,105,116,101,100,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,32,42,32,32,52,32,45,32,67,108,111,110,101,32,115,121,109,98,111,108,115,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,99,108,111,110,105,110,103,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,107,101,121,93,32,84,104,101,32,107,101,121,32,111,102,32,96,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,98,106,101,99,116,93,32,84,104,101,32,112,97,114,101,110,116,32,111,98,106,101,99,116,32,111,102,32,96,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,115,116,97,99,107,93,32,84,114,97,99,107,115,32,116,114,97,118,101,114,115,101,100,32,111,98,106,101,99,116,115,32,97,110,100,32,116,104,101,105,114,32,99,108,111,110,101,32,99,111,117,110,116,101,114,112,97,114,116,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,108,111,110,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,67,108,111,110,101,40,118,97,108,117,101,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,107,101,121,44,32,111,98,106,101,99,116,44,32,115,116,97,99,107,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,68,101,101,112,32,61,32,98,105,116,109,97,115,107,32,38,32,67,76,79,78,69,95,68,69,69,80,95,70,76,65,71,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,70,108,97,116,32,61,32,98,105,116,109,97,115,107,32,38,32,67,76,79,78,69,95,70,76,65,84,95,70,76,65,71,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,70,117,108,108,32,61,32,98,105,116,109,97,115,107,32,38,32,67,76,79,78,69,95,83,89,77,66,79,76,83,95,70,76,65,71,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,111,98,106,101,99,116,32,63,32,99,117,115,116,111,109,105,122,101,114,40,118,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,44,32,115,116,97,99,107,41,32,58,32,99,117,115,116,111,109,105,122,101,114,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,117,108,116,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,105,115,65,114,114,32,61,32,105,115,65,114,114,97,121,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,105,110,105,116,67,108,111,110,101,65,114,114,97,121,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,68,101,101,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,112,121,65,114,114,97,121,40,118,97,108,117,101,44,32,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,97,103,32,61,32,103,101,116,84,97,103,40,118,97,108,117,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,70,117,110,99,32,61,32,116,97,103,32,61,61,32,102,117,110,99,84,97,103,32,124,124,32,116,97,103,32,61,61,32,103,101,110,84,97,103,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,66,117,102,102,101,114,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,111,110,101,66,117,102,102,101,114,40,118,97,108,117,101,44,32,105,115,68,101,101,112,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,97,103,32,61,61,32,111,98,106,101,99,116,84,97,103,32,124,124,32,116,97,103,32,61,61,32,97,114,103,115,84,97,103,32,124,124,32,40,105,115,70,117,110,99,32,38,38,32,33,111,98,106,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,40,105,115,70,108,97,116,32,124,124,32,105,115,70,117,110,99,41,32,63,32,123,125,32,58,32,105,110,105,116,67,108,111,110,101,79,98,106,101,99,116,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,68,101,101,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,70,108,97,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,99,111,112,121,83,121,109,98,111,108,115,73,110,40,118,97,108,117,101,44,32,98,97,115,101,65,115,115,105,103,110,73,110,40,114,101,115,117,108,116,44,32,118,97,108,117,101,41,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,99,111,112,121,83,121,109,98,111,108,115,40,118,97,108,117,101,44,32,98,97,115,101,65,115,115,105,103,110,40,114,101,115,117,108,116,44,32,118,97,108,117,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,99,108,111,110,101,97,98,108,101,84,97,103,115,91,116,97,103,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,63,32,118,97,108,117,101,32,58,32,123,125,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,105,110,105,116,67,108,111,110,101,66,121,84,97,103,40,118,97,108,117,101,44,32,116,97,103,44,32,105,115,68,101,101,112,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,67,104,101,99,107,32,102,111,114,32,99,105,114,99,117,108,97,114,32,114,101,102,101,114,101,110,99,101,115,32,97,110,100,32,114,101,116,117,114,110,32,105,116,115,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,99,108,111,110,101,46,92,110,32,32,32,32,32,32,115,116,97,99,107,32,124,124,32,40,115,116,97,99,107,32,61,32,110,101,119,32,83,116,97,99,107,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,99,107,101,100,32,61,32,115,116,97,99,107,46,103,101,116,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,99,107,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,97,99,107,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,116,97,99,107,46,115,101,116,40,118,97,108,117,101,44,32,114,101,115,117,108,116,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,83,101,116,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,115,117,98,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,97,100,100,40,98,97,115,101,67,108,111,110,101,40,115,117,98,86,97,108,117,101,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,115,117,98,86,97,108,117,101,44,32,118,97,108,117,101,44,32,115,116,97,99,107,41,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,77,97,112,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,115,117,98,86,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,115,101,116,40,107,101,121,44,32,98,97,115,101,67,108,111,110,101,40,115,117,98,86,97,108,117,101,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,107,101,121,44,32,118,97,108,117,101,44,32,115,116,97,99,107,41,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,115,70,117,110,99,32,61,32,105,115,70,117,108,108,92,110,32,32,32,32,32,32,32,32,63,32,40,105,115,70,108,97,116,32,63,32,103,101,116,65,108,108,75,101,121,115,73,110,32,58,32,103,101,116,65,108,108,75,101,121,115,41,92,110,32,32,32,32,32,32,32,32,58,32,40,105,115,70,108,97,116,32,63,32,107,101,121,115,73,110,32,58,32,107,101,121,115,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,105,115,65,114,114,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,107,101,121,115,70,117,110,99,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,97,114,114,97,121,69,97,99,104,40,112,114,111,112,115,32,124,124,32,118,97,108,117,101,44,32,102,117,110,99,116,105,111,110,40,115,117,98,86,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,32,61,32,115,117,98,86,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,115,117,98,86,97,108,117,101,32,61,32,118,97,108,117,101,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,99,117,114,115,105,118,101,108,121,32,112,111,112,117,108,97,116,101,32,99,108,111,110,101,32,40,115,117,115,99,101,112,116,105,98,108,101,32,116,111,32,99,97,108,108,32,115,116,97,99,107,32,108,105,109,105,116,115,41,46,92,110,32,32,32,32,32,32,32,32,97,115,115,105,103,110,86,97,108,117,101,40,114,101,115,117,108,116,44,32,107,101,121,44,32,98,97,115,101,67,108,111,110,101,40,115,117,98,86,97,108,117,101,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,107,101,121,44,32,118,97,108,117,101,44,32,115,116,97,99,107,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,99,111,110,102,111,114,109,115,96,32,119,104,105,99,104,32,100,111,101,115,110,39,116,32,99,108,111,110,101,32,96,115,111,117,114,99,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,112,114,111,112,101,114,116,121,32,112,114,101,100,105,99,97,116,101,115,32,116,111,32,99,111,110,102,111,114,109,32,116,111,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,115,112,101,99,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,67,111,110,102,111,114,109,115,40,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,107,101,121,115,40,115,111,117,114,99,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,67,111,110,102,111,114,109,115,84,111,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,112,114,111,112,115,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,99,111,110,102,111,114,109,115,84,111,96,32,119,104,105,99,104,32,97,99,99,101,112,116,115,32,96,112,114,111,112,115,96,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,112,114,111,112,101,114,116,121,32,112,114,101,100,105,99,97,116,101,115,32,116,111,32,99,111,110,102,111,114,109,32,116,111,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,111,98,106,101,99,116,96,32,99,111,110,102,111,114,109,115,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,67,111,110,102,111,114,109,115,84,111,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,112,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,112,114,111,112,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,111,98,106,101,99,116,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,111,98,106,101,99,116,32,61,32,79,98,106,101,99,116,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,112,114,111,112,115,91,108,101,110,103,116,104,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,100,105,99,97,116,101,32,61,32,115,111,117,114,99,101,91,107,101,121,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,111,98,106,101,99,116,91,107,101,121,93,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,33,40,107,101,121,32,105,110,32,111,98,106,101,99,116,41,41,32,124,124,32,33,112,114,101,100,105,99,97,116,101,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,100,101,108,97,121,96,32,97,110,100,32,96,95,46,100,101,102,101,114,96,32,119,104,105,99,104,32,97,99,99,101,112,116,115,32,96,97,114,103,115,96,92,110,32,32,32,32,32,42,32,116,111,32,112,114,111,118,105,100,101,32,116,111,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,100,101,108,97,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,119,97,105,116,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,111,32,100,101,108,97,121,32,105,110,118,111,99,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,103,115,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,112,114,111,118,105,100,101,32,116,111,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,124,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,116,105,109,101,114,32,105,100,32,111,114,32,116,105,109,101,111,117,116,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,68,101,108,97,121,40,102,117,110,99,44,32,119,97,105,116,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,102,117,110,99,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,70,85,78,67,95,69,82,82,79,82,95,84,69,88,84,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,32,123,32,102,117,110,99,46,97,112,112,108,121,40,117,110,100,101,102,105,110,101,100,44,32,97,114,103,115,41,59,32,125,44,32,119,97,105,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,100,105,102,102,101,114,101,110,99,101,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,92,110,32,32,32,32,32,42,32,102,111,114,32,101,120,99,108,117,100,105,110,103,32,109,117,108,116,105,112,108,101,32,97,114,114,97,121,115,32,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,118,97,108,117,101,115,32,84,104,101,32,118,97,108,117,101,115,32,116,111,32,101,120,99,108,117,100,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,111,109,112,97,114,97,116,111,114,93,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,102,105,108,116,101,114,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,68,105,102,102,101,114,101,110,99,101,40,97,114,114,97,121,44,32,118,97,108,117,101,115,44,32,105,116,101,114,97,116,101,101,44,32,99,111,109,112,97,114,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,99,108,117,100,101,115,32,61,32,97,114,114,97,121,73,110,99,108,117,100,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,67,111,109,109,111,110,32,61,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,91,93,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,115,76,101,110,103,116,104,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,115,32,61,32,97,114,114,97,121,77,97,112,40,118,97,108,117,101,115,44,32,98,97,115,101,85,110,97,114,121,40,105,116,101,114,97,116,101,101,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,99,111,109,112,97,114,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,99,108,117,100,101,115,32,61,32,97,114,114,97,121,73,110,99,108,117,100,101,115,87,105,116,104,59,92,110,32,32,32,32,32,32,32,32,105,115,67,111,109,109,111,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,118,97,108,117,101,115,46,108,101,110,103,116,104,32,62,61,32,76,65,82,71,69,95,65,82,82,65,89,95,83,73,90,69,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,99,108,117,100,101,115,32,61,32,99,97,99,104,101,72,97,115,59,92,110,32,32,32,32,32,32,32,32,105,115,67,111,109,109,111,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,115,32,61,32,110,101,119,32,83,101,116,67,97,99,104,101,40,118,97,108,117,101,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,111,117,116,101,114,58,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,97,114,114,97,121,91,105,110,100,101,120,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,32,61,32,105,116,101,114,97,116,101,101,32,61,61,32,110,117,108,108,32,63,32,118,97,108,117,101,32,58,32,105,116,101,114,97,116,101,101,40,118,97,108,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,40,99,111,109,112,97,114,97,116,111,114,32,124,124,32,118,97,108,117,101,32,33,61,61,32,48,41,32,63,32,118,97,108,117,101,32,58,32,48,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,67,111,109,109,111,110,32,38,38,32,99,111,109,112,117,116,101,100,32,61,61,61,32,99,111,109,112,117,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,115,73,110,100,101,120,32,61,32,118,97,108,117,101,115,76,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,118,97,108,117,101,115,73,110,100,101,120,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,115,91,118,97,108,117,101,115,73,110,100,101,120,93,32,61,61,61,32,99,111,109,112,117,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,32,111,117,116,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,33,105,110,99,108,117,100,101,115,40,118,97,108,117,101,115,44,32,99,111,109,112,117,116,101,100,44,32,99,111,109,112,97,114,97,116,111,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,102,111,114,69,97,99,104,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,99,111,108,108,101,99,116,105,111,110,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,98,97,115,101,69,97,99,104,32,61,32,99,114,101,97,116,101,66,97,115,101,69,97,99,104,40,98,97,115,101,70,111,114,79,119,110,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,102,111,114,69,97,99,104,82,105,103,104,116,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,99,111,108,108,101,99,116,105,111,110,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,98,97,115,101,69,97,99,104,82,105,103,104,116,32,61,32,99,114,101,97,116,101,66,97,115,101,69,97,99,104,40,98,97,115,101,70,111,114,79,119,110,82,105,103,104,116,44,32,116,114,117,101,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,101,118,101,114,121,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,97,108,108,32,101,108,101,109,101,110,116,115,32,112,97,115,115,32,116,104,101,32,112,114,101,100,105,99,97,116,101,32,99,104,101,99,107,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,69,118,101,114,121,40,99,111,108,108,101,99,116,105,111,110,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,98,97,115,101,69,97,99,104,40,99,111,108,108,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,99,111,108,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,33,33,112,114,101,100,105,99,97,116,101,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,99,111,108,108,101,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,120,96,32,97,110,100,32,96,95,46,109,105,110,96,32,119,104,105,99,104,32,97,99,99,101,112,116,115,32,97,92,110,32,32,32,32,32,42,32,96,99,111,109,112,97,114,97,116,111,114,96,32,116,111,32,100,101,116,101,114,109,105,110,101,32,116,104,101,32,101,120,116,114,101,109,117,109,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,99,111,109,112,97,114,97,116,111,114,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,117,115,101,100,32,116,111,32,99,111,109,112,97,114,101,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,101,120,116,114,101,109,117,109,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,69,120,116,114,101,109,117,109,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,44,32,99,111,109,112,97,114,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,97,114,114,97,121,91,105,110,100,101,120,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,32,61,32,105,116,101,114,97,116,101,101,40,118,97,108,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,32,33,61,32,110,117,108,108,32,38,38,32,40,99,111,109,112,117,116,101,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,99,117,114,114,101,110,116,32,61,61,61,32,99,117,114,114,101,110,116,32,38,38,32,33,105,115,83,121,109,98,111,108,40,99,117,114,114,101,110,116,41,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,99,111,109,112,97,114,97,116,111,114,40,99,117,114,114,101,110,116,44,32,99,111,109,112,117,116,101,100,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,109,112,117,116,101,100,32,61,32,99,117,114,114,101,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,102,105,108,108,96,32,119,105,116,104,111,117,116,32,97,110,32,105,116,101,114,97,116,101,101,32,99,97,108,108,32,103,117,97,114,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,102,105,108,108,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,102,105,108,108,32,96,97,114,114,97,121,96,32,119,105,116,104,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,115,116,97,114,116,61,48,93,32,84,104,101,32,115,116,97,114,116,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,110,100,61,97,114,114,97,121,46,108,101,110,103,116,104,93,32,84,104,101,32,101,110,100,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,70,105,108,108,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,115,116,97,114,116,32,61,32,116,111,73,110,116,101,103,101,114,40,115,116,97,114,116,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,114,116,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,45,115,116,97,114,116,32,62,32,108,101,110,103,116,104,32,63,32,48,32,58,32,40,108,101,110,103,116,104,32,43,32,115,116,97,114,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,101,110,100,32,61,32,40,101,110,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,32,101,110,100,32,62,32,108,101,110,103,116,104,41,32,63,32,108,101,110,103,116,104,32,58,32,116,111,73,110,116,101,103,101,114,40,101,110,100,41,59,92,110,32,32,32,32,32,32,105,102,32,40,101,110,100,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,101,110,100,32,43,61,32,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,101,110,100,32,61,32,115,116,97,114,116,32,62,32,101,110,100,32,63,32,48,32,58,32,116,111,76,101,110,103,116,104,40,101,110,100,41,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,115,116,97,114,116,32,60,32,101,110,100,41,32,123,92,110,32,32,32,32,32,32,32,32,97,114,114,97,121,91,115,116,97,114,116,43,43,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,102,105,108,116,101,114,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,105,108,116,101,114,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,70,105,108,116,101,114,40,99,111,108,108,101,99,116,105,111,110,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,98,97,115,101,69,97,99,104,40,99,111,108,108,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,99,111,108,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,114,101,100,105,99,97,116,101,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,99,111,108,108,101,99,116,105,111,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,102,108,97,116,116,101,110,96,32,119,105,116,104,32,115,117,112,112,111,114,116,32,102,111,114,32,114,101,115,116,114,105,99,116,105,110,103,32,102,108,97,116,116,101,110,105,110,103,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,102,108,97,116,116,101,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,100,101,112,116,104,32,84,104,101,32,109,97,120,105,109,117,109,32,114,101,99,117,114,115,105,111,110,32,100,101,112,116,104,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,112,114,101,100,105,99,97,116,101,61,105,115,70,108,97,116,116,101,110,97,98,108,101,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,105,115,83,116,114,105,99,116,93,32,82,101,115,116,114,105,99,116,32,116,111,32,118,97,108,117,101,115,32,116,104,97,116,32,112,97,115,115,32,96,112,114,101,100,105,99,97,116,101,96,32,99,104,101,99,107,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,114,101,115,117,108,116,61,91,93,93,32,84,104,101,32,105,110,105,116,105,97,108,32,114,101,115,117,108,116,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,108,97,116,116,101,110,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,70,108,97,116,116,101,110,40,97,114,114,97,121,44,32,100,101,112,116,104,44,32,112,114,101,100,105,99,97,116,101,44,32,105,115,83,116,114,105,99,116,44,32,114,101,115,117,108,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,112,114,101,100,105,99,97,116,101,32,124,124,32,40,112,114,101,100,105,99,97,116,101,32,61,32,105,115,70,108,97,116,116,101,110,97,98,108,101,41,59,92,110,32,32,32,32,32,32,114,101,115,117,108,116,32,124,124,32,40,114,101,115,117,108,116,32,61,32,91,93,41,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,97,114,114,97,121,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,101,112,116,104,32,62,32,48,32,38,38,32,112,114,101,100,105,99,97,116,101,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,101,112,116,104,32,62,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,99,117,114,115,105,118,101,108,121,32,102,108,97,116,116,101,110,32,97,114,114,97,121,115,32,40,115,117,115,99,101,112,116,105,98,108,101,32,116,111,32,99,97,108,108,32,115,116,97,99,107,32,108,105,109,105,116,115,41,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,70,108,97,116,116,101,110,40,118,97,108,117,101,44,32,100,101,112,116,104,32,45,32,49,44,32,112,114,101,100,105,99,97,116,101,44,32,105,115,83,116,114,105,99,116,44,32,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,114,114,97,121,80,117,115,104,40,114,101,115,117,108,116,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,105,115,83,116,114,105,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,114,101,115,117,108,116,46,108,101,110,103,116,104,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,98,97,115,101,70,111,114,79,119,110,96,32,119,104,105,99,104,32,105,116,101,114,97,116,101,115,32,111,118,101,114,32,96,111,98,106,101,99,116,96,92,110,32,32,32,32,32,42,32,112,114,111,112,101,114,116,105,101,115,32,114,101,116,117,114,110,101,100,32,98,121,32,96,107,101,121,115,70,117,110,99,96,32,97,110,100,32,105,110,118,111,107,101,115,32,96,105,116,101,114,97,116,101,101,96,32,102,111,114,32,101,97,99,104,32,112,114,111,112,101,114,116,121,46,92,110,32,32,32,32,32,42,32,73,116,101,114,97,116,101,101,32,102,117,110,99,116,105,111,110,115,32,109,97,121,32,101,120,105,116,32,105,116,101,114,97,116,105,111,110,32,101,97,114,108,121,32,98,121,32,101,120,112,108,105,99,105,116,108,121,32,114,101,116,117,114,110,105,110,103,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,107,101,121,115,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,103,101,116,32,116,104,101,32,107,101,121,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,98,97,115,101,70,111,114,32,61,32,99,114,101,97,116,101,66,97,115,101,70,111,114,40,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,105,115,32,108,105,107,101,32,96,98,97,115,101,70,111,114,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,105,116,101,114,97,116,101,115,32,111,118,101,114,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,32,42,32,105,110,32,116,104,101,32,111,112,112,111,115,105,116,101,32,111,114,100,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,107,101,121,115,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,103,101,116,32,116,104,101,32,107,101,121,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,98,97,115,101,70,111,114,82,105,103,104,116,32,61,32,99,114,101,97,116,101,66,97,115,101,70,111,114,40,116,114,117,101,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,102,111,114,79,119,110,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,70,111,114,79,119,110,40,111,98,106,101,99,116,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,38,38,32,98,97,115,101,70,111,114,40,111,98,106,101,99,116,44,32,105,116,101,114,97,116,101,101,44,32,107,101,121,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,102,111,114,79,119,110,82,105,103,104,116,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,70,111,114,79,119,110,82,105,103,104,116,40,111,98,106,101,99,116,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,38,38,32,98,97,115,101,70,111,114,82,105,103,104,116,40,111,98,106,101,99,116,44,32,105,116,101,114,97,116,101,101,44,32,107,101,121,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,102,117,110,99,116,105,111,110,115,96,32,119,104,105,99,104,32,99,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,92,110,32,32,32,32,32,42,32,96,111,98,106,101,99,116,96,32,102,117,110,99,116,105,111,110,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,102,105,108,116,101,114,101,100,32,102,114,111,109,32,96,112,114,111,112,115,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,112,114,111,112,115,32,84,104,101,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,116,111,32,102,105,108,116,101,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,102,117,110,99,116,105,111,110,32,110,97,109,101,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,70,117,110,99,116,105,111,110,115,40,111,98,106,101,99,116,44,32,112,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,70,105,108,116,101,114,40,112,114,111,112,115,44,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,70,117,110,99,116,105,111,110,40,111,98,106,101,99,116,91,107,101,121,93,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,103,101,116,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,100,101,102,97,117,108,116,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,103,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,115,111,108,118,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,71,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,112,97,116,104,32,61,32,99,97,115,116,80,97,116,104,40,112,97,116,104,44,32,111,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,112,97,116,104,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,111,98,106,101,99,116,32,33,61,32,110,117,108,108,32,38,38,32,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,32,61,32,111,98,106,101,99,116,91,116,111,75,101,121,40,112,97,116,104,91,105,110,100,101,120,43,43,93,41,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,105,110,100,101,120,32,38,38,32,105,110,100,101,120,32,61,61,32,108,101,110,103,116,104,41,32,63,32,111,98,106,101,99,116,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,103,101,116,65,108,108,75,101,121,115,96,32,97,110,100,32,96,103,101,116,65,108,108,75,101,121,115,73,110,96,32,119,104,105,99,104,32,117,115,101,115,92,110,32,32,32,32,32,42,32,96,107,101,121,115,70,117,110,99,96,32,97,110,100,32,96,115,121,109,98,111,108,115,70,117,110,99,96,32,116,111,32,103,101,116,32,116,104,101,32,101,110,117,109,101,114,97,98,108,101,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,97,110,100,92,110,32,32,32,32,32,42,32,115,121,109,98,111,108,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,107,101,121,115,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,103,101,116,32,116,104,101,32,107,101,121,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,115,121,109,98,111,108,115,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,103,101,116,32,116,104,101,32,115,121,109,98,111,108,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,97,110,100,32,115,121,109,98,111,108,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,71,101,116,65,108,108,75,101,121,115,40,111,98,106,101,99,116,44,32,107,101,121,115,70,117,110,99,44,32,115,121,109,98,111,108,115,70,117,110,99,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,107,101,121,115,70,117,110,99,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,65,114,114,97,121,40,111,98,106,101,99,116,41,32,63,32,114,101,115,117,108,116,32,58,32,97,114,114,97,121,80,117,115,104,40,114,101,115,117,108,116,44,32,115,121,109,98,111,108,115,70,117,110,99,40,111,98,106,101,99,116,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,103,101,116,84,97,103,96,32,119,105,116,104,111,117,116,32,102,97,108,108,98,97,99,107,115,32,102,111,114,32,98,117,103,103,121,32,101,110,118,105,114,111,110,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,96,116,111,83,116,114,105,110,103,84,97,103,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,117,110,100,101,102,105,110,101,100,84,97,103,32,58,32,110,117,108,108,84,97,103,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,115,121,109,84,111,83,116,114,105,110,103,84,97,103,32,38,38,32,115,121,109,84,111,83,116,114,105,110,103,84,97,103,32,105,110,32,79,98,106,101,99,116,40,118,97,108,117,101,41,41,92,110,32,32,32,32,32,32,32,32,63,32,103,101,116,82,97,119,84,97,103,40,118,97,108,117,101,41,92,110,32,32,32,32,32,32,32,32,58,32,111,98,106,101,99,116,84,111,83,116,114,105,110,103,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,103,116,96,32,119,104,105,99,104,32,100,111,101,115,110,39,116,32,99,111,101,114,99,101,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,103,114,101,97,116,101,114,32,116,104,97,110,32,96,111,116,104,101,114,96,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,71,116,40,118,97,108,117,101,44,32,111,116,104,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,62,32,111,116,104,101,114,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,104,97,115,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,100,101,101,112,32,112,97,116,104,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,98,106,101,99,116,93,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,107,101,121,96,32,101,120,105,115,116,115,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,72,97,115,40,111,98,106,101,99,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,33,61,32,110,117,108,108,32,38,38,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,111,98,106,101,99,116,44,32,107,101,121,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,104,97,115,73,110,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,100,101,101,112,32,112,97,116,104,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,98,106,101,99,116,93,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,107,101,121,96,32,101,120,105,115,116,115,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,72,97,115,73,110,40,111,98,106,101,99,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,33,61,32,110,117,108,108,32,38,38,32,107,101,121,32,105,110,32,79,98,106,101,99,116,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,110,82,97,110,103,101,96,32,119,104,105,99,104,32,100,111,101,115,110,39,116,32,99,111,101,114,99,101,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,110,117,109,98,101,114,32,84,104,101,32,110,117,109,98,101,114,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,115,116,97,114,116,32,84,104,101,32,115,116,97,114,116,32,111,102,32,116,104,101,32,114,97,110,103,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,101,110,100,32,84,104,101,32,101,110,100,32,111,102,32,116,104,101,32,114,97,110,103,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,110,117,109,98,101,114,96,32,105,115,32,105,110,32,116,104,101,32,114,97,110,103,101,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,110,82,97,110,103,101,40,110,117,109,98,101,114,44,32,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,109,98,101,114,32,62,61,32,110,97,116,105,118,101,77,105,110,40,115,116,97,114,116,44,32,101,110,100,41,32,38,38,32,110,117,109,98,101,114,32,60,32,110,97,116,105,118,101,77,97,120,40,115,116,97,114,116,44,32,101,110,100,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,105,110,116,101,114,115,101,99,116,105,111,110,96,44,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,92,110,32,32,32,32,32,42,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,44,32,116,104,97,116,32,97,99,99,101,112,116,115,32,97,110,32,97,114,114,97,121,32,111,102,32,97,114,114,97,121,115,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,115,32,84,104,101,32,97,114,114,97,121,115,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,111,109,112,97,114,97,116,111,114,93,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,115,104,97,114,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,110,116,101,114,115,101,99,116,105,111,110,40,97,114,114,97,121,115,44,32,105,116,101,114,97,116,101,101,44,32,99,111,109,112,97,114,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,99,108,117,100,101,115,32,61,32,99,111,109,112,97,114,97,116,111,114,32,63,32,97,114,114,97,121,73,110,99,108,117,100,101,115,87,105,116,104,32,58,32,97,114,114,97,121,73,110,99,108,117,100,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,115,91,48,93,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,111,116,104,76,101,110,103,116,104,32,61,32,97,114,114,97,121,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,111,116,104,73,110,100,101,120,32,61,32,111,116,104,76,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,99,97,99,104,101,115,32,61,32,65,114,114,97,121,40,111,116,104,76,101,110,103,116,104,41,44,92,110,32,32,32,32,32,32,32,32,32,32,109,97,120,76,101,110,103,116,104,32,61,32,73,110,102,105,110,105,116,121,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,111,116,104,73,110,100,101,120,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,114,97,121,32,61,32,97,114,114,97,121,115,91,111,116,104,73,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,111,116,104,73,110,100,101,120,32,38,38,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,114,97,121,32,61,32,97,114,114,97,121,77,97,112,40,97,114,114,97,121,44,32,98,97,115,101,85,110,97,114,121,40,105,116,101,114,97,116,101,101,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,109,97,120,76,101,110,103,116,104,32,61,32,110,97,116,105,118,101,77,105,110,40,97,114,114,97,121,46,108,101,110,103,116,104,44,32,109,97,120,76,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,32,32,99,97,99,104,101,115,91,111,116,104,73,110,100,101,120,93,32,61,32,33,99,111,109,112,97,114,97,116,111,114,32,38,38,32,40,105,116,101,114,97,116,101,101,32,124,124,32,40,108,101,110,103,116,104,32,62,61,32,49,50,48,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,32,62,61,32,49,50,48,41,41,92,110,32,32,32,32,32,32,32,32,32,32,63,32,110,101,119,32,83,101,116,67,97,99,104,101,40,111,116,104,73,110,100,101,120,32,38,38,32,97,114,114,97,121,41,92,110,32,32,32,32,32,32,32,32,32,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,97,114,114,97,121,32,61,32,97,114,114,97,121,115,91,48,93,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,115,101,101,110,32,61,32,99,97,99,104,101,115,91,48,93,59,92,110,92,110,32,32,32,32,32,32,111,117,116,101,114,58,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,32,38,38,32,114,101,115,117,108,116,46,108,101,110,103,116,104,32,60,32,109,97,120,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,97,114,114,97,121,91,105,110,100,101,120,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,32,61,32,105,116,101,114,97,116,101,101,32,63,32,105,116,101,114,97,116,101,101,40,118,97,108,117,101,41,32,58,32,118,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,40,99,111,109,112,97,114,97,116,111,114,32,124,124,32,118,97,108,117,101,32,33,61,61,32,48,41,32,63,32,118,97,108,117,101,32,58,32,48,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,115,101,101,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,99,97,99,104,101,72,97,115,40,115,101,101,110,44,32,99,111,109,112,117,116,101,100,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,105,110,99,108,117,100,101,115,40,114,101,115,117,108,116,44,32,99,111,109,112,117,116,101,100,44,32,99,111,109,112,97,114,97,116,111,114,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,111,116,104,73,110,100,101,120,32,61,32,111,116,104,76,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,45,45,111,116,104,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,97,99,104,101,32,61,32,99,97,99,104,101,115,91,111,116,104,73,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,99,97,99,104,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,99,97,99,104,101,72,97,115,40,99,97,99,104,101,44,32,99,111,109,112,117,116,101,100,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,105,110,99,108,117,100,101,115,40,97,114,114,97,121,115,91,111,116,104,73,110,100,101,120,93,44,32,99,111,109,112,117,116,101,100,44,32,99,111,109,112,97,114,97,116,111,114,41,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,32,111,117,116,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,101,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,101,110,46,112,117,115,104,40,99,111,109,112,117,116,101,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,110,118,101,114,116,96,32,97,110,100,32,96,95,46,105,110,118,101,114,116,66,121,96,32,119,104,105,99,104,32,105,110,118,101,114,116,115,92,110,32,32,32,32,32,42,32,96,111,98,106,101,99,116,96,32,119,105,116,104,32,118,97,108,117,101,115,32,116,114,97,110,115,102,111,114,109,101,100,32,98,121,32,96,105,116,101,114,97,116,101,101,96,32,97,110,100,32,115,101,116,32,98,121,32,96,115,101,116,116,101,114,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,115,101,116,116,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,115,101,116,32,96,97,99,99,117,109,117,108,97,116,111,114,96,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,105,116,101,114,97,116,101,101,32,116,111,32,116,114,97,110,115,102,111,114,109,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,97,99,99,117,109,117,108,97,116,111,114,32,84,104,101,32,105,110,105,116,105,97,108,32,105,110,118,101,114,116,101,100,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,96,97,99,99,117,109,117,108,97,116,111,114,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,110,118,101,114,116,101,114,40,111,98,106,101,99,116,44,32,115,101,116,116,101,114,44,32,105,116,101,114,97,116,101,101,44,32,97,99,99,117,109,117,108,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,70,111,114,79,119,110,40,111,98,106,101,99,116,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,115,101,116,116,101,114,40,97,99,99,117,109,117,108,97,116,111,114,44,32,105,116,101,114,97,116,101,101,40,118,97,108,117,101,41,44,32,107,101,121,44,32,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,99,99,117,109,117,108,97,116,111,114,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,110,118,111,107,101,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,110,100,105,118,105,100,117,97,108,92,110,32,32,32,32,32,42,32,109,101,116,104,111,100,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,109,101,116,104,111,100,32,116,111,32,105,110,118,111,107,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,103,115,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,105,110,118,111,107,101,32,116,104,101,32,109,101,116,104,111,100,32,119,105,116,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,115,117,108,116,32,111,102,32,116,104,101,32,105,110,118,111,107,101,100,32,109,101,116,104,111,100,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,110,118,111,107,101,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,112,97,116,104,32,61,32,99,97,115,116,80,97,116,104,40,112,97,116,104,44,32,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,111,98,106,101,99,116,32,61,32,112,97,114,101,110,116,40,111,98,106,101,99,116,44,32,112,97,116,104,41,59,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,111,98,106,101,99,116,32,58,32,111,98,106,101,99,116,91,116,111,75,101,121,40,108,97,115,116,40,112,97,116,104,41,41,93,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,32,61,61,32,110,117,108,108,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,97,112,112,108,121,40,102,117,110,99,44,32,111,98,106,101,99,116,44,32,97,114,103,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,115,65,114,103,117,109,101,110,116,115,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,110,32,96,97,114,103,117,109,101,110,116,115,96,32,111,98,106,101,99,116,44,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,115,65,114,103,117,109,101,110,116,115,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,32,61,61,32,97,114,103,115,84,97,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,115,65,114,114,97,121,66,117,102,102,101,114,96,32,119,105,116,104,111,117,116,32,78,111,100,101,46,106,115,32,111,112,116,105,109,105,122,97,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,110,32,97,114,114,97,121,32,98,117,102,102,101,114,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,115,65,114,114,97,121,66,117,102,102,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,32,61,61,32,97,114,114,97,121,66,117,102,102,101,114,84,97,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,115,68,97,116,101,96,32,119,105,116,104,111,117,116,32,78,111,100,101,46,106,115,32,111,112,116,105,109,105,122,97,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,100,97,116,101,32,111,98,106,101,99,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,115,68,97,116,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,32,61,61,32,100,97,116,101,84,97,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,115,69,113,117,97,108,96,32,119,104,105,99,104,32,115,117,112,112,111,114,116,115,32,112,97,114,116,105,97,108,32,99,111,109,112,97,114,105,115,111,110,115,92,110,32,32,32,32,32,42,32,97,110,100,32,116,114,97,99,107,115,32,116,114,97,118,101,114,115,101,100,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,98,105,116,109,97,115,107,32,84,104,101,32,98,105,116,109,97,115,107,32,102,108,97,103,115,46,92,110,32,32,32,32,32,42,32,32,49,32,45,32,85,110,111,114,100,101,114,101,100,32,99,111,109,112,97,114,105,115,111,110,92,110,32,32,32,32,32,42,32,32,50,32,45,32,80,97,114,116,105,97,108,32,99,111,109,112,97,114,105,115,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,115,116,97,99,107,93,32,84,114,97,99,107,115,32,116,114,97,118,101,114,115,101,100,32,96,118,97,108,117,101,96,32,97,110,100,32,96,111,116,104,101,114,96,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,118,97,108,117,101,115,32,97,114,101,32,101,113,117,105,118,97,108,101,110,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,115,69,113,117,97,108,40,118,97,108,117,101,44,32,111,116,104,101,114,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,115,116,97,99,107,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,111,116,104,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,32,110,117,108,108,32,124,124,32,111,116,104,101,114,32,61,61,32,110,117,108,108,32,124,124,32,40,33,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,33,105,115,79,98,106,101,99,116,76,105,107,101,40,111,116,104,101,114,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,33,61,61,32,118,97,108,117,101,32,38,38,32,111,116,104,101,114,32,33,61,61,32,111,116,104,101,114,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,73,115,69,113,117,97,108,68,101,101,112,40,118,97,108,117,101,44,32,111,116,104,101,114,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,98,97,115,101,73,115,69,113,117,97,108,44,32,115,116,97,99,107,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,98,97,115,101,73,115,69,113,117,97,108,96,32,102,111,114,32,97,114,114,97,121,115,32,97,110,100,32,111,98,106,101,99,116,115,32,119,104,105,99,104,32,112,101,114,102,111,114,109,115,92,110,32,32,32,32,32,42,32,100,101,101,112,32,99,111,109,112,97,114,105,115,111,110,115,32,97,110,100,32,116,114,97,99,107,115,32,116,114,97,118,101,114,115,101,100,32,111,98,106,101,99,116,115,32,101,110,97,98,108,105,110,103,32,111,98,106,101,99,116,115,32,119,105,116,104,32,99,105,114,99,117,108,97,114,92,110,32,32,32,32,32,42,32,114,101,102,101,114,101,110,99,101,115,32,116,111,32,98,101,32,99,111,109,112,97,114,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,111,98,106,101,99,116,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,98,105,116,109,97,115,107,32,84,104,101,32,98,105,116,109,97,115,107,32,102,108,97,103,115,46,32,83,101,101,32,96,98,97,115,101,73,115,69,113,117,97,108,96,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,99,117,115,116,111,109,105,122,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,101,113,117,97,108,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,100,101,116,101,114,109,105,110,101,32,101,113,117,105,118,97,108,101,110,116,115,32,111,102,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,115,116,97,99,107,93,32,84,114,97,99,107,115,32,116,114,97,118,101,114,115,101,100,32,96,111,98,106,101,99,116,96,32,97,110,100,32,96,111,116,104,101,114,96,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,111,98,106,101,99,116,115,32,97,114,101,32,101,113,117,105,118,97,108,101,110,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,115,69,113,117,97,108,68,101,101,112,40,111,98,106,101,99,116,44,32,111,116,104,101,114,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,101,113,117,97,108,70,117,110,99,44,32,115,116,97,99,107,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,98,106,73,115,65,114,114,32,61,32,105,115,65,114,114,97,121,40,111,98,106,101,99,116,41,44,92,110,32,32,32,32,32,32,32,32,32,32,111,116,104,73,115,65,114,114,32,61,32,105,115,65,114,114,97,121,40,111,116,104,101,114,41,44,92,110,32,32,32,32,32,32,32,32,32,32,111,98,106,84,97,103,32,61,32,111,98,106,73,115,65,114,114,32,63,32,97,114,114,97,121,84,97,103,32,58,32,103,101,116,84,97,103,40,111,98,106,101,99,116,41,44,92,110,32,32,32,32,32,32,32,32,32,32,111,116,104,84,97,103,32,61,32,111,116,104,73,115,65,114,114,32,63,32,97,114,114,97,121,84,97,103,32,58,32,103,101,116,84,97,103,40,111,116,104,101,114,41,59,92,110,92,110,32,32,32,32,32,32,111,98,106,84,97,103,32,61,32,111,98,106,84,97,103,32,61,61,32,97,114,103,115,84,97,103,32,63,32,111,98,106,101,99,116,84,97,103,32,58,32,111,98,106,84,97,103,59,92,110,32,32,32,32,32,32,111,116,104,84,97,103,32,61,32,111,116,104,84,97,103,32,61,61,32,97,114,103,115,84,97,103,32,63,32,111,98,106,101,99,116,84,97,103,32,58,32,111,116,104,84,97,103,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,111,98,106,73,115,79,98,106,32,61,32,111,98,106,84,97,103,32,61,61,32,111,98,106,101,99,116,84,97,103,44,92,110,32,32,32,32,32,32,32,32,32,32,111,116,104,73,115,79,98,106,32,61,32,111,116,104,84,97,103,32,61,61,32,111,98,106,101,99,116,84,97,103,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,83,97,109,101,84,97,103,32,61,32,111,98,106,84,97,103,32,61,61,32,111,116,104,84,97,103,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,83,97,109,101,84,97,103,32,38,38,32,105,115,66,117,102,102,101,114,40,111,98,106,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,66,117,102,102,101,114,40,111,116,104,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,111,98,106,73,115,65,114,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,111,98,106,73,115,79,98,106,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,83,97,109,101,84,97,103,32,38,38,32,33,111,98,106,73,115,79,98,106,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,99,107,32,124,124,32,40,115,116,97,99,107,32,61,32,110,101,119,32,83,116,97,99,107,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,111,98,106,73,115,65,114,114,32,124,124,32,105,115,84,121,112,101,100,65,114,114,97,121,40,111,98,106,101,99,116,41,41,92,110,32,32,32,32,32,32,32,32,32,32,63,32,101,113,117,97,108,65,114,114,97,121,115,40,111,98,106,101,99,116,44,32,111,116,104,101,114,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,101,113,117,97,108,70,117,110,99,44,32,115,116,97,99,107,41,92,110,32,32,32,32,32,32,32,32,32,32,58,32,101,113,117,97,108,66,121,84,97,103,40,111,98,106,101,99,116,44,32,111,116,104,101,114,44,32,111,98,106,84,97,103,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,101,113,117,97,108,70,117,110,99,44,32,115,116,97,99,107,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,33,40,98,105,116,109,97,115,107,32,38,32,67,79,77,80,65,82,69,95,80,65,82,84,73,65,76,95,70,76,65,71,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,98,106,73,115,87,114,97,112,112,101,100,32,61,32,111,98,106,73,115,79,98,106,32,38,38,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,111,98,106,101,99,116,44,32,39,95,95,119,114,97,112,112,101,100,95,95,39,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,73,115,87,114,97,112,112,101,100,32,61,32,111,116,104,73,115,79,98,106,32,38,38,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,111,116,104,101,114,44,32,39,95,95,119,114,97,112,112,101,100,95,95,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,111,98,106,73,115,87,114,97,112,112,101,100,32,124,124,32,111,116,104,73,115,87,114,97,112,112,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,98,106,85,110,119,114,97,112,112,101,100,32,61,32,111,98,106,73,115,87,114,97,112,112,101,100,32,63,32,111,98,106,101,99,116,46,118,97,108,117,101,40,41,32,58,32,111,98,106,101,99,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,85,110,119,114,97,112,112,101,100,32,61,32,111,116,104,73,115,87,114,97,112,112,101,100,32,63,32,111,116,104,101,114,46,118,97,108,117,101,40,41,32,58,32,111,116,104,101,114,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,99,107,32,124,124,32,40,115,116,97,99,107,32,61,32,110,101,119,32,83,116,97,99,107,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,113,117,97,108,70,117,110,99,40,111,98,106,85,110,119,114,97,112,112,101,100,44,32,111,116,104,85,110,119,114,97,112,112,101,100,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,115,116,97,99,107,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,83,97,109,101,84,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,116,97,99,107,32,124,124,32,40,115,116,97,99,107,32,61,32,110,101,119,32,83,116,97,99,107,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,101,113,117,97,108,79,98,106,101,99,116,115,40,111,98,106,101,99,116,44,32,111,116,104,101,114,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,101,113,117,97,108,70,117,110,99,44,32,115,116,97,99,107,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,115,77,97,112,96,32,119,105,116,104,111,117,116,32,78,111,100,101,46,106,115,32,111,112,116,105,109,105,122,97,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,109,97,112,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,115,77,97,112,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,103,101,116,84,97,103,40,118,97,108,117,101,41,32,61,61,32,109,97,112,84,97,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,115,77,97,116,99,104,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,32,116,111,32,109,97,116,99,104,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,109,97,116,99,104,68,97,116,97,32,84,104,101,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,44,32,118,97,108,117,101,115,44,32,97,110,100,32,99,111,109,112,97,114,101,32,102,108,97,103,115,32,116,111,32,109,97,116,99,104,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,111,98,106,101,99,116,96,32,105,115,32,97,32,109,97,116,99,104,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,115,77,97,116,99,104,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,109,97,116,99,104,68,97,116,97,44,32,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,109,97,116,99,104,68,97,116,97,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,105,110,100,101,120,44,92,110,32,32,32,32,32,32,32,32,32,32,110,111,67,117,115,116,111,109,105,122,101,114,32,61,32,33,99,117,115,116,111,109,105,122,101,114,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,111,98,106,101,99,116,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,111,98,106,101,99,116,32,61,32,79,98,106,101,99,116,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,105,110,100,101,120,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,109,97,116,99,104,68,97,116,97,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,110,111,67,117,115,116,111,109,105,122,101,114,32,38,38,32,100,97,116,97,91,50,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,100,97,116,97,91,49,93,32,33,61,61,32,111,98,106,101,99,116,91,100,97,116,97,91,48,93,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,33,40,100,97,116,97,91,48,93,32,105,110,32,111,98,106,101,99,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,109,97,116,99,104,68,97,116,97,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,100,97,116,97,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,98,106,86,97,108,117,101,32,61,32,111,98,106,101,99,116,91,107,101,121,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,114,99,86,97,108,117,101,32,61,32,100,97,116,97,91,49,93,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,111,67,117,115,116,111,109,105,122,101,114,32,38,38,32,100,97,116,97,91,50,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,98,106,86,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,33,40,107,101,121,32,105,110,32,111,98,106,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,97,99,107,32,61,32,110,101,119,32,83,116,97,99,107,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,99,117,115,116,111,109,105,122,101,114,40,111,98,106,86,97,108,117,101,44,32,115,114,99,86,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,115,116,97,99,107,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,114,101,115,117,108,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,98,97,115,101,73,115,69,113,117,97,108,40,115,114,99,86,97,108,117,101,44,32,111,98,106,86,97,108,117,101,44,32,67,79,77,80,65,82,69,95,80,65,82,84,73,65,76,95,70,76,65,71,32,124,32,67,79,77,80,65,82,69,95,85,78,79,82,68,69,82,69,68,95,70,76,65,71,44,32,99,117,115,116,111,109,105,122,101,114,44,32,115,116,97,99,107,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,114,101,115,117,108,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,115,78,97,116,105,118,101,96,32,119,105,116,104,111,117,116,32,98,97,100,32,115,104,105,109,32,99,104,101,99,107,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,110,97,116,105,118,101,32,102,117,110,99,116,105,111,110,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,115,78,97,116,105,118,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,118,97,108,117,101,41,32,124,124,32,105,115,77,97,115,107,101,100,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,112,97,116,116,101,114,110,32,61,32,105,115,70,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,63,32,114,101,73,115,78,97,116,105,118,101,32,58,32,114,101,73,115,72,111,115,116,67,116,111,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,116,116,101,114,110,46,116,101,115,116,40,116,111,83,111,117,114,99,101,40,118,97,108,117,101,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,115,82,101,103,69,120,112,96,32,119,105,116,104,111,117,116,32,78,111,100,101,46,106,115,32,111,112,116,105,109,105,122,97,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,114,101,103,101,120,112,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,115,82,101,103,69,120,112,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,32,61,61,32,114,101,103,101,120,112,84,97,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,115,83,101,116,96,32,119,105,116,104,111,117,116,32,78,111,100,101,46,106,115,32,111,112,116,105,109,105,122,97,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,115,101,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,115,83,101,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,103,101,116,84,97,103,40,118,97,108,117,101,41,32,61,61,32,115,101,116,84,97,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,115,84,121,112,101,100,65,114,114,97,121,96,32,119,105,116,104,111,117,116,32,78,111,100,101,46,106,115,32,111,112,116,105,109,105,122,97,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,116,121,112,101,100,32,97,114,114,97,121,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,115,84,121,112,101,100,65,114,114,97,121,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,92,110,32,32,32,32,32,32,32,32,105,115,76,101,110,103,116,104,40,118,97,108,117,101,46,108,101,110,103,116,104,41,32,38,38,32,33,33,116,121,112,101,100,65,114,114,97,121,84,97,103,115,91,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,105,116,101,114,97,116,101,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,91,118,97,108,117,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,110,118,101,114,116,32,116,111,32,97,110,32,105,116,101,114,97,116,101,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,116,101,114,97,116,101,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,73,116,101,114,97,116,101,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,68,111,110,39,116,32,115,116,111,114,101,32,116,104,101,32,96,116,121,112,101,111,102,96,32,114,101,115,117,108,116,32,105,110,32,97,32,118,97,114,105,97,98,108,101,32,116,111,32,97,118,111,105,100,32,97,32,74,73,84,32,98,117,103,32,105,110,32,83,97,102,97,114,105,32,57,46,92,110,32,32,32,32,32,32,47,47,32,83,101,101,32,104,116,116,112,115,58,47,47,98,117,103,115,46,119,101,98,107,105,116,46,111,114,103,47,115,104,111,119,95,98,117,103,46,99,103,105,63,105,100,61,49,53,54,48,51,52,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,100,101,110,116,105,116,121,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,65,114,114,97,121,40,118,97,108,117,101,41,92,110,32,32,32,32,32,32,32,32,32,32,63,32,98,97,115,101,77,97,116,99,104,101,115,80,114,111,112,101,114,116,121,40,118,97,108,117,101,91,48,93,44,32,118,97,108,117,101,91,49,93,41,92,110,32,32,32,32,32,32,32,32,32,32,58,32,98,97,115,101,77,97,116,99,104,101,115,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,101,114,116,121,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,107,101,121,115,96,32,119,104,105,99,104,32,100,111,101,115,110,39,116,32,116,114,101,97,116,32,115,112,97,114,115,101,32,97,114,114,97,121,115,32,97,115,32,100,101,110,115,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,75,101,121,115,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,80,114,111,116,111,116,121,112,101,40,111,98,106,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,97,116,105,118,101,75,101,121,115,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,79,98,106,101,99,116,40,111,98,106,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,111,98,106,101,99,116,44,32,107,101,121,41,32,38,38,32,107,101,121,32,33,61,32,39,99,111,110,115,116,114,117,99,116,111,114,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,107,101,121,115,73,110,96,32,119,104,105,99,104,32,100,111,101,115,110,39,116,32,116,114,101,97,116,32,115,112,97,114,115,101,32,97,114,114,97,121,115,32,97,115,32,100,101,110,115,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,75,101,121,115,73,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,111,98,106,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,97,116,105,118,101,75,101,121,115,73,110,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,105,115,80,114,111,116,111,32,61,32,105,115,80,114,111,116,111,116,121,112,101,40,111,98,106,101,99,116,41,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,107,101,121,32,61,61,32,39,99,111,110,115,116,114,117,99,116,111,114,39,32,38,38,32,40,105,115,80,114,111,116,111,32,124,124,32,33,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,111,98,106,101,99,116,44,32,107,101,121,41,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,108,116,96,32,119,104,105,99,104,32,100,111,101,115,110,39,116,32,99,111,101,114,99,101,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,108,101,115,115,32,116,104,97,110,32,96,111,116,104,101,114,96,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,76,116,40,118,97,108,117,101,44,32,111,116,104,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,60,32,111,116,104,101,114,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,109,97,112,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,109,97,112,112,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,77,97,112,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,105,115,65,114,114,97,121,76,105,107,101,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,65,114,114,97,121,40,99,111,108,108,101,99,116,105,111,110,46,108,101,110,103,116,104,41,32,58,32,91,93,59,92,110,92,110,32,32,32,32,32,32,98,97,115,101,69,97,99,104,40,99,111,108,108,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,107,101,121,44,32,99,111,108,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,43,43,105,110,100,101,120,93,32,61,32,105,116,101,114,97,116,101,101,40,118,97,108,117,101,44,32,107,101,121,44,32,99,111,108,108,101,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,109,97,116,99,104,101,115,96,32,119,104,105,99,104,32,100,111,101,115,110,39,116,32,99,108,111,110,101,32,96,115,111,117,114,99,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,32,116,111,32,109,97,116,99,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,115,112,101,99,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,77,97,116,99,104,101,115,40,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,68,97,116,97,32,61,32,103,101,116,77,97,116,99,104,68,97,116,97,40,115,111,117,114,99,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,109,97,116,99,104,68,97,116,97,46,108,101,110,103,116,104,32,61,61,32,49,32,38,38,32,109,97,116,99,104,68,97,116,97,91,48,93,91,50,93,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,116,99,104,101,115,83,116,114,105,99,116,67,111,109,112,97,114,97,98,108,101,40,109,97,116,99,104,68,97,116,97,91,48,93,91,48,93,44,32,109,97,116,99,104,68,97,116,97,91,48,93,91,49,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,61,32,115,111,117,114,99,101,32,124,124,32,98,97,115,101,73,115,77,97,116,99,104,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,109,97,116,99,104,68,97,116,97,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,119,104,105,99,104,32,100,111,101,115,110,39,116,32,99,108,111,110,101,32,96,115,114,99,86,97,108,117,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,103,101,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,115,114,99,86,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,109,97,116,99,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,115,112,101,99,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,77,97,116,99,104,101,115,80,114,111,112,101,114,116,121,40,112,97,116,104,44,32,115,114,99,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,75,101,121,40,112,97,116,104,41,32,38,38,32,105,115,83,116,114,105,99,116,67,111,109,112,97,114,97,98,108,101,40,115,114,99,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,116,99,104,101,115,83,116,114,105,99,116,67,111,109,112,97,114,97,98,108,101,40,116,111,75,101,121,40,112,97,116,104,41,44,32,115,114,99,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,98,106,86,97,108,117,101,32,61,32,103,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,111,98,106,86,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,111,98,106,86,97,108,117,101,32,61,61,61,32,115,114,99,86,97,108,117,101,41,92,110,32,32,32,32,32,32,32,32,32,32,63,32,104,97,115,73,110,40,111,98,106,101,99,116,44,32,112,97,116,104,41,92,110,32,32,32,32,32,32,32,32,32,32,58,32,98,97,115,101,73,115,69,113,117,97,108,40,115,114,99,86,97,108,117,101,44,32,111,98,106,86,97,108,117,101,44,32,67,79,77,80,65,82,69,95,80,65,82,84,73,65,76,95,70,76,65,71,32,124,32,67,79,77,80,65,82,69,95,85,78,79,82,68,69,82,69,68,95,70,76,65,71,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,109,101,114,103,101,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,109,117,108,116,105,112,108,101,32,115,111,117,114,99,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,115,114,99,73,110,100,101,120,32,84,104,101,32,105,110,100,101,120,32,111,102,32,96,115,111,117,114,99,101,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,109,101,114,103,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,115,116,97,99,107,93,32,84,114,97,99,107,115,32,116,114,97,118,101,114,115,101,100,32,115,111,117,114,99,101,32,118,97,108,117,101,115,32,97,110,100,32,116,104,101,105,114,32,109,101,114,103,101,100,92,110,32,32,32,32,32,42,32,32,99,111,117,110,116,101,114,112,97,114,116,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,77,101,114,103,101,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,115,114,99,73,110,100,101,120,44,32,99,117,115,116,111,109,105,122,101,114,44,32,115,116,97,99,107,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,111,98,106,101,99,116,32,61,61,61,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,98,97,115,101,70,111,114,40,115,111,117,114,99,101,44,32,102,117,110,99,116,105,111,110,40,115,114,99,86,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,99,107,32,124,124,32,40,115,116,97,99,107,32,61,32,110,101,119,32,83,116,97,99,107,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,115,114,99,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,98,97,115,101,77,101,114,103,101,68,101,101,112,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,107,101,121,44,32,115,114,99,73,110,100,101,120,44,32,98,97,115,101,77,101,114,103,101,44,32,99,117,115,116,111,109,105,122,101,114,44,32,115,116,97,99,107,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,86,97,108,117,101,32,61,32,99,117,115,116,111,109,105,122,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,99,117,115,116,111,109,105,122,101,114,40,115,97,102,101,71,101,116,40,111,98,106,101,99,116,44,32,107,101,121,41,44,32,115,114,99,86,97,108,117,101,44,32,40,107,101,121,32,43,32,39,39,41,44,32,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,115,116,97,99,107,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,115,114,99,86,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,97,115,115,105,103,110,77,101,114,103,101,86,97,108,117,101,40,111,98,106,101,99,116,44,32,107,101,121,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,107,101,121,115,73,110,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,98,97,115,101,77,101,114,103,101,96,32,102,111,114,32,97,114,114,97,121,115,32,97,110,100,32,111,98,106,101,99,116,115,32,119,104,105,99,104,32,112,101,114,102,111,114,109,115,92,110,32,32,32,32,32,42,32,100,101,101,112,32,109,101,114,103,101,115,32,97,110,100,32,116,114,97,99,107,115,32,116,114,97,118,101,114,115,101,100,32,111,98,106,101,99,116,115,32,101,110,97,98,108,105,110,103,32,111,98,106,101,99,116,115,32,119,105,116,104,32,99,105,114,99,117,108,97,114,92,110,32,32,32,32,32,42,32,114,101,102,101,114,101,110,99,101,115,32,116,111,32,98,101,32,109,101,114,103,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,118,97,108,117,101,32,116,111,32,109,101,114,103,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,115,114,99,73,110,100,101,120,32,84,104,101,32,105,110,100,101,120,32,111,102,32,96,115,111,117,114,99,101,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,109,101,114,103,101,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,109,101,114,103,101,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,97,115,115,105,103,110,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,115,116,97,99,107,93,32,84,114,97,99,107,115,32,116,114,97,118,101,114,115,101,100,32,115,111,117,114,99,101,32,118,97,108,117,101,115,32,97,110,100,32,116,104,101,105,114,32,109,101,114,103,101,100,92,110,32,32,32,32,32,42,32,32,99,111,117,110,116,101,114,112,97,114,116,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,77,101,114,103,101,68,101,101,112,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,107,101,121,44,32,115,114,99,73,110,100,101,120,44,32,109,101,114,103,101,70,117,110,99,44,32,99,117,115,116,111,109,105,122,101,114,44,32,115,116,97,99,107,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,98,106,86,97,108,117,101,32,61,32,115,97,102,101,71,101,116,40,111,98,106,101,99,116,44,32,107,101,121,41,44,92,110,32,32,32,32,32,32,32,32,32,32,115,114,99,86,97,108,117,101,32,61,32,115,97,102,101,71,101,116,40,115,111,117,114,99,101,44,32,107,101,121,41,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,99,107,101,100,32,61,32,115,116,97,99,107,46,103,101,116,40,115,114,99,86,97,108,117,101,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,99,107,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,97,115,115,105,103,110,77,101,114,103,101,86,97,108,117,101,40,111,98,106,101,99,116,44,32,107,101,121,44,32,115,116,97,99,107,101,100,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,110,101,119,86,97,108,117,101,32,61,32,99,117,115,116,111,109,105,122,101,114,92,110,32,32,32,32,32,32,32,32,63,32,99,117,115,116,111,109,105,122,101,114,40,111,98,106,86,97,108,117,101,44,32,115,114,99,86,97,108,117,101,44,32,40,107,101,121,32,43,32,39,39,41,44,32,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,115,116,97,99,107,41,92,110,32,32,32,32,32,32,32,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,115,67,111,109,109,111,110,32,61,32,110,101,119,86,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,67,111,109,109,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,115,65,114,114,32,61,32,105,115,65,114,114,97,121,40,115,114,99,86,97,108,117,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,66,117,102,102,32,61,32,33,105,115,65,114,114,32,38,38,32,105,115,66,117,102,102,101,114,40,115,114,99,86,97,108,117,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,84,121,112,101,100,32,61,32,33,105,115,65,114,114,32,38,38,32,33,105,115,66,117,102,102,32,38,38,32,105,115,84,121,112,101,100,65,114,114,97,121,40,115,114,99,86,97,108,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,115,114,99,86,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,32,124,124,32,105,115,66,117,102,102,32,124,124,32,105,115,84,121,112,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,40,111,98,106,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,111,98,106,86,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,111,98,106,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,99,111,112,121,65,114,114,97,121,40,111,98,106,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,115,66,117,102,102,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,67,111,109,109,111,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,99,108,111,110,101,66,117,102,102,101,114,40,115,114,99,86,97,108,117,101,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,115,84,121,112,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,67,111,109,109,111,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,99,108,111,110,101,84,121,112,101,100,65,114,114,97,121,40,115,114,99,86,97,108,117,101,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,115,80,108,97,105,110,79,98,106,101,99,116,40,115,114,99,86,97,108,117,101,41,32,124,124,32,105,115,65,114,103,117,109,101,110,116,115,40,115,114,99,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,111,98,106,86,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,65,114,103,117,109,101,110,116,115,40,111,98,106,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,116,111,80,108,97,105,110,79,98,106,101,99,116,40,111,98,106,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,111,98,106,86,97,108,117,101,41,32,124,124,32,105,115,70,117,110,99,116,105,111,110,40,111,98,106,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,105,110,105,116,67,108,111,110,101,79,98,106,101,99,116,40,115,114,99,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,115,67,111,109,109,111,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,67,111,109,109,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,99,117,114,115,105,118,101,108,121,32,109,101,114,103,101,32,111,98,106,101,99,116,115,32,97,110,100,32,97,114,114,97,121,115,32,40,115,117,115,99,101,112,116,105,98,108,101,32,116,111,32,99,97,108,108,32,115,116,97,99,107,32,108,105,109,105,116,115,41,46,92,110,32,32,32,32,32,32,32,32,115,116,97,99,107,46,115,101,116,40,115,114,99,86,97,108,117,101,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,109,101,114,103,101,70,117,110,99,40,110,101,119,86,97,108,117,101,44,32,115,114,99,86,97,108,117,101,44,32,115,114,99,73,110,100,101,120,44,32,99,117,115,116,111,109,105,122,101,114,44,32,115,116,97,99,107,41,59,92,110,32,32,32,32,32,32,32,32,115,116,97,99,107,91,39,100,101,108,101,116,101,39,93,40,115,114,99,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,97,115,115,105,103,110,77,101,114,103,101,86,97,108,117,101,40,111,98,106,101,99,116,44,32,107,101,121,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,110,116,104,96,32,119,104,105,99,104,32,100,111,101,115,110,39,116,32,99,111,101,114,99,101,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,110,32,84,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,101,108,101,109,101,110,116,32,116,111,32,114,101,116,117,114,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,116,104,32,101,108,101,109,101,110,116,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,78,116,104,40,97,114,114,97,121,44,32,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,110,32,43,61,32,110,32,60,32,48,32,63,32,108,101,110,103,116,104,32,58,32,48,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,73,110,100,101,120,40,110,44,32,108,101,110,103,116,104,41,32,63,32,97,114,114,97,121,91,110,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,111,114,100,101,114,66,121,96,32,119,105,116,104,111,117,116,32,112,97,114,97,109,32,103,117,97,114,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,91,93,124,79,98,106,101,99,116,91,93,124,115,116,114,105,110,103,91,93,125,32,105,116,101,114,97,116,101,101,115,32,84,104,101,32,105,116,101,114,97,116,101,101,115,32,116,111,32,115,111,114,116,32,98,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,91,93,125,32,111,114,100,101,114,115,32,84,104,101,32,115,111,114,116,32,111,114,100,101,114,115,32,111,102,32,96,105,116,101,114,97,116,101,101,115,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,115,111,114,116,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,79,114,100,101,114,66,121,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,115,44,32,111,114,100,101,114,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,114,97,116,101,101,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,114,97,116,101,101,115,32,61,32,97,114,114,97,121,77,97,112,40,105,116,101,114,97,116,101,101,115,44,32,102,117,110,99,116,105,111,110,40,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,40,105,116,101,114,97,116,101,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,71,101,116,40,118,97,108,117,101,44,32,105,116,101,114,97,116,101,101,46,108,101,110,103,116,104,32,61,61,61,32,49,32,63,32,105,116,101,114,97,116,101,101,91,48,93,32,58,32,105,116,101,114,97,116,101,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,114,97,116,101,101,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,114,97,116,101,101,115,32,61,32,91,105,100,101,110,116,105,116,121,93,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,59,92,110,32,32,32,32,32,32,105,116,101,114,97,116,101,101,115,32,61,32,97,114,114,97,121,77,97,112,40,105,116,101,114,97,116,101,101,115,44,32,98,97,115,101,85,110,97,114,121,40,103,101,116,73,116,101,114,97,116,101,101,40,41,41,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,98,97,115,101,77,97,112,40,99,111,108,108,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,107,101,121,44,32,99,111,108,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,114,105,116,101,114,105,97,32,61,32,97,114,114,97,121,77,97,112,40,105,116,101,114,97,116,101,101,115,44,32,102,117,110,99,116,105,111,110,40,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,114,97,116,101,101,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,32,39,99,114,105,116,101,114,105,97,39,58,32,99,114,105,116,101,114,105,97,44,32,39,105,110,100,101,120,39,58,32,43,43,105,110,100,101,120,44,32,39,118,97,108,117,101,39,58,32,118,97,108,117,101,32,125,59,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,111,114,116,66,121,40,114,101,115,117,108,116,44,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,111,116,104,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,97,114,101,77,117,108,116,105,112,108,101,40,111,98,106,101,99,116,44,32,111,116,104,101,114,44,32,111,114,100,101,114,115,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,112,105,99,107,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,110,100,105,118,105,100,117,97,108,92,110,32,32,32,32,32,42,32,112,114,111,112,101,114,116,121,32,105,100,101,110,116,105,102,105,101,114,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,91,93,125,32,112,97,116,104,115,32,84,104,101,32,112,114,111,112,101,114,116,121,32,112,97,116,104,115,32,116,111,32,112,105,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,80,105,99,107,40,111,98,106,101,99,116,44,32,112,97,116,104,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,80,105,99,107,66,121,40,111,98,106,101,99,116,44,32,112,97,116,104,115,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,115,73,110,40,111,98,106,101,99,116,44,32,112,97,116,104,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,32,96,95,46,112,105,99,107,66,121,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,91,93,125,32,112,97,116,104,115,32,84,104,101,32,112,114,111,112,101,114,116,121,32,112,97,116,104,115,32,116,111,32,112,105,99,107,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,112,114,111,112,101,114,116,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,80,105,99,107,66,121,40,111,98,106,101,99,116,44,32,112,97,116,104,115,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,112,97,116,104,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,123,125,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,97,116,104,32,61,32,112,97,116,104,115,91,105,110,100,101,120,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,98,97,115,101,71,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,114,101,100,105,99,97,116,101,40,118,97,108,117,101,44,32,112,97,116,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,98,97,115,101,83,101,116,40,114,101,115,117,108,116,44,32,99,97,115,116,80,97,116,104,40,112,97,116,104,44,32,111,98,106,101,99,116,41,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,98,97,115,101,80,114,111,112,101,114,116,121,96,32,119,104,105,99,104,32,115,117,112,112,111,114,116,115,32,100,101,101,112,32,112,97,116,104,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,103,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,99,99,101,115,115,111,114,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,80,114,111,112,101,114,116,121,68,101,101,112,40,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,71,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,112,117,108,108,65,108,108,66,121,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,92,110,32,32,32,32,32,42,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,118,97,108,117,101,115,32,84,104,101,32,118,97,108,117,101,115,32,116,111,32,114,101,109,111,118,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,111,109,112,97,114,97,116,111,114,93,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,80,117,108,108,65,108,108,40,97,114,114,97,121,44,32,118,97,108,117,101,115,44,32,105,116,101,114,97,116,101,101,44,32,99,111,109,112,97,114,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,79,102,32,61,32,99,111,109,112,97,114,97,116,111,114,32,63,32,98,97,115,101,73,110,100,101,120,79,102,87,105,116,104,32,58,32,98,97,115,101,73,110,100,101,120,79,102,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,115,101,101,110,32,61,32,97,114,114,97,121,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,97,114,114,97,121,32,61,61,61,32,118,97,108,117,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,115,32,61,32,99,111,112,121,65,114,114,97,121,40,118,97,108,117,101,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,115,101,101,110,32,61,32,97,114,114,97,121,77,97,112,40,97,114,114,97,121,44,32,98,97,115,101,85,110,97,114,121,40,105,116,101,114,97,116,101,101,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,114,111,109,73,110,100,101,120,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,118,97,108,117,101,115,91,105,110,100,101,120,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,32,61,32,105,116,101,114,97,116,101,101,32,63,32,105,116,101,114,97,116,101,101,40,118,97,108,117,101,41,32,58,32,118,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,40,102,114,111,109,73,110,100,101,120,32,61,32,105,110,100,101,120,79,102,40,115,101,101,110,44,32,99,111,109,112,117,116,101,100,44,32,102,114,111,109,73,110,100,101,120,44,32,99,111,109,112,97,114,97,116,111,114,41,41,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,101,101,110,32,33,61,61,32,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,112,108,105,99,101,46,99,97,108,108,40,115,101,101,110,44,32,102,114,111,109,73,110,100,101,120,44,32,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,115,112,108,105,99,101,46,99,97,108,108,40,97,114,114,97,121,44,32,102,114,111,109,73,110,100,101,120,44,32,49,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,112,117,108,108,65,116,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,110,100,105,118,105,100,117,97,108,92,110,32,32,32,32,32,42,32,105,110,100,101,120,101,115,32,111,114,32,99,97,112,116,117,114,105,110,103,32,116,104,101,32,114,101,109,111,118,101,100,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,91,93,125,32,105,110,100,101,120,101,115,32,84,104,101,32,105,110,100,101,120,101,115,32,111,102,32,101,108,101,109,101,110,116,115,32,116,111,32,114,101,109,111,118,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,80,117,108,108,65,116,40,97,114,114,97,121,44,32,105,110,100,101,120,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,63,32,105,110,100,101,120,101,115,46,108,101,110,103,116,104,32,58,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,115,116,73,110,100,101,120,32,61,32,108,101,110,103,116,104,32,45,32,49,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,105,110,100,101,120,101,115,91,108,101,110,103,116,104,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,101,110,103,116,104,32,61,61,32,108,97,115,116,73,110,100,101,120,32,124,124,32,105,110,100,101,120,32,33,61,61,32,112,114,101,118,105,111,117,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,101,118,105,111,117,115,32,61,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,73,110,100,101,120,40,105,110,100,101,120,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,112,108,105,99,101,46,99,97,108,108,40,97,114,114,97,121,44,32,105,110,100,101,120,44,32,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,85,110,115,101,116,40,97,114,114,97,121,44,32,105,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,114,97,110,100,111,109,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,114,101,116,117,114,110,105,110,103,92,110,32,32,32,32,32,42,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,110,117,109,98,101,114,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,108,111,119,101,114,32,84,104,101,32,108,111,119,101,114,32,98,111,117,110,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,117,112,112,101,114,32,84,104,101,32,117,112,112,101,114,32,98,111,117,110,100,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,97,110,100,111,109,32,110,117,109,98,101,114,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,82,97,110,100,111,109,40,108,111,119,101,114,44,32,117,112,112,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,119,101,114,32,43,32,110,97,116,105,118,101,70,108,111,111,114,40,110,97,116,105,118,101,82,97,110,100,111,109,40,41,32,42,32,40,117,112,112,101,114,32,45,32,108,111,119,101,114,32,43,32,49,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,114,97,110,103,101,96,32,97,110,100,32,96,95,46,114,97,110,103,101,82,105,103,104,116,96,32,119,104,105,99,104,32,100,111,101,115,110,39,116,92,110,32,32,32,32,32,42,32,99,111,101,114,99,101,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,115,116,97,114,116,32,84,104,101,32,115,116,97,114,116,32,111,102,32,116,104,101,32,114,97,110,103,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,101,110,100,32,84,104,101,32,101,110,100,32,111,102,32,116,104,101,32,114,97,110,103,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,115,116,101,112,32,84,104,101,32,118,97,108,117,101,32,116,111,32,105,110,99,114,101,109,101,110,116,32,111,114,32,100,101,99,114,101,109,101,110,116,32,98,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,102,114,111,109,82,105,103,104,116,93,32,83,112,101,99,105,102,121,32,105,116,101,114,97,116,105,110,103,32,102,114,111,109,32,114,105,103,104,116,32,116,111,32,108,101,102,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,97,110,103,101,32,111,102,32,110,117,109,98,101,114,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,82,97,110,103,101,40,115,116,97,114,116,44,32,101,110,100,44,32,115,116,101,112,44,32,102,114,111,109,82,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,110,97,116,105,118,101,77,97,120,40,110,97,116,105,118,101,67,101,105,108,40,40,101,110,100,32,45,32,115,116,97,114,116,41,32,47,32,40,115,116,101,112,32,124,124,32,49,41,41,44,32,48,41,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,65,114,114,97,121,40,108,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,102,114,111,109,82,105,103,104,116,32,63,32,108,101,110,103,116,104,32,58,32,43,43,105,110,100,101,120,93,32,61,32,115,116,97,114,116,59,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,32,43,61,32,115,116,101,112,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,114,101,112,101,97,116,96,32,119,104,105,99,104,32,100,111,101,115,110,39,116,32,99,111,101,114,99,101,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,114,105,110,103,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,114,101,112,101,97,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,110,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,116,105,109,101,115,32,116,111,32,114,101,112,101,97,116,32,116,104,101,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,112,101,97,116,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,82,101,112,101,97,116,40,115,116,114,105,110,103,44,32,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,39,39,59,92,110,32,32,32,32,32,32,105,102,32,40,33,115,116,114,105,110,103,32,124,124,32,110,32,60,32,49,32,124,124,32,110,32,62,32,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,76,101,118,101,114,97,103,101,32,116,104,101,32,101,120,112,111,110,101,110,116,105,97,116,105,111,110,32,98,121,32,115,113,117,97,114,105,110,103,32,97,108,103,111,114,105,116,104,109,32,102,111,114,32,97,32,102,97,115,116,101,114,32,114,101,112,101,97,116,46,92,110,32,32,32,32,32,32,47,47,32,83,101,101,32,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,69,120,112,111,110,101,110,116,105,97,116,105,111,110,95,98,121,95,115,113,117,97,114,105,110,103,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,32,100,111,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,32,37,32,50,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,115,116,114,105,110,103,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,110,32,61,32,110,97,116,105,118,101,70,108,111,111,114,40,110,32,47,32,50,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,114,105,110,103,32,43,61,32,115,116,114,105,110,103,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,119,104,105,108,101,32,40,110,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,114,101,115,116,96,32,119,104,105,99,104,32,100,111,101,115,110,39,116,32,118,97,108,105,100,97,116,101,32,111,114,32,99,111,101,114,99,101,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,97,112,112,108,121,32,97,32,114,101,115,116,32,112,97,114,97,109,101,116,101,114,32,116,111,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,115,116,97,114,116,61,102,117,110,99,46,108,101,110,103,116,104,45,49,93,32,84,104,101,32,115,116,97,114,116,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,114,101,115,116,32,112,97,114,97,109,101,116,101,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,82,101,115,116,40,102,117,110,99,44,32,115,116,97,114,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,101,116,84,111,83,116,114,105,110,103,40,111,118,101,114,82,101,115,116,40,102,117,110,99,44,32,115,116,97,114,116,44,32,105,100,101,110,116,105,116,121,41,44,32,102,117,110,99,32,43,32,39,39,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,115,97,109,112,108,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,115,97,109,112,108,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,97,110,100,111,109,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,83,97,109,112,108,101,40,99,111,108,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,83,97,109,112,108,101,40,118,97,108,117,101,115,40,99,111,108,108,101,99,116,105,111,110,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,115,97,109,112,108,101,83,105,122,101,96,32,119,105,116,104,111,117,116,32,112,97,114,97,109,32,103,117,97,114,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,115,97,109,112,108,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,110,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,116,111,32,115,97,109,112,108,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,97,110,100,111,109,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,83,97,109,112,108,101,83,105,122,101,40,99,111,108,108,101,99,116,105,111,110,44,32,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,114,114,97,121,32,61,32,118,97,108,117,101,115,40,99,111,108,108,101,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,104,117,102,102,108,101,83,101,108,102,40,97,114,114,97,121,44,32,98,97,115,101,67,108,97,109,112,40,110,44,32,48,44,32,97,114,114,97,121,46,108,101,110,103,116,104,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,115,101,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,112,97,116,104,32,99,114,101,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,83,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,118,97,108,117,101,44,32,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,111,98,106,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,112,97,116,104,32,61,32,99,97,115,116,80,97,116,104,40,112,97,116,104,44,32,111,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,112,97,116,104,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,115,116,73,110,100,101,120,32,61,32,108,101,110,103,116,104,32,45,32,49,44,92,110,32,32,32,32,32,32,32,32,32,32,110,101,115,116,101,100,32,61,32,111,98,106,101,99,116,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,110,101,115,116,101,100,32,33,61,32,110,117,108,108,32,38,38,32,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,116,111,75,101,121,40,112,97,116,104,91,105,110,100,101,120,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,118,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,32,61,61,61,32,39,95,95,112,114,111,116,111,95,95,39,32,124,124,32,107,101,121,32,61,61,61,32,39,99,111,110,115,116,114,117,99,116,111,114,39,32,124,124,32,107,101,121,32,61,61,61,32,39,112,114,111,116,111,116,121,112,101,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,33,61,32,108,97,115,116,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,98,106,86,97,108,117,101,32,61,32,110,101,115,116,101,100,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,99,117,115,116,111,109,105,122,101,114,32,63,32,99,117,115,116,111,109,105,122,101,114,40,111,98,106,86,97,108,117,101,44,32,107,101,121,44,32,110,101,115,116,101,100,41,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,105,115,79,98,106,101,99,116,40,111,98,106,86,97,108,117,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,111,98,106,86,97,108,117,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,40,105,115,73,110,100,101,120,40,112,97,116,104,91,105,110,100,101,120,32,43,32,49,93,41,32,63,32,91,93,32,58,32,123,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,97,115,115,105,103,110,86,97,108,117,101,40,110,101,115,116,101,100,44,32,107,101,121,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,110,101,115,116,101,100,32,61,32,110,101,115,116,101,100,91,107,101,121,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,115,101,116,68,97,116,97,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,104,111,116,32,108,111,111,112,32,115,104,111,114,116,105,110,103,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,97,115,115,111,99,105,97,116,101,32,109,101,116,97,100,97,116,97,32,119,105,116,104,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,100,97,116,97,32,84,104,101,32,109,101,116,97,100,97,116,97,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,98,97,115,101,83,101,116,68,97,116,97,32,61,32,33,109,101,116,97,77,97,112,32,63,32,105,100,101,110,116,105,116,121,32,58,32,102,117,110,99,116,105,111,110,40,102,117,110,99,44,32,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,109,101,116,97,77,97,112,46,115,101,116,40,102,117,110,99,44,32,100,97,116,97,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,115,101,116,84,111,83,116,114,105,110,103,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,104,111,116,32,108,111,111,112,32,115,104,111,114,116,105,110,103,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,115,116,114,105,110,103,32,84,104,101,32,96,116,111,83,116,114,105,110,103,96,32,114,101,115,117,108,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,98,97,115,101,83,101,116,84,111,83,116,114,105,110,103,32,61,32,33,100,101,102,105,110,101,80,114,111,112,101,114,116,121,32,63,32,105,100,101,110,116,105,116,121,32,58,32,102,117,110,99,116,105,111,110,40,102,117,110,99,44,32,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,102,117,110,99,44,32,39,116,111,83,116,114,105,110,103,39,44,32,123,92,110,32,32,32,32,32,32,32,32,39,99,111,110,102,105,103,117,114,97,98,108,101,39,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,39,101,110,117,109,101,114,97,98,108,101,39,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,39,118,97,108,117,101,39,58,32,99,111,110,115,116,97,110,116,40,115,116,114,105,110,103,41,44,92,110,32,32,32,32,32,32,32,32,39,119,114,105,116,97,98,108,101,39,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,115,104,117,102,102,108,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,115,104,117,102,102,108,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,115,104,117,102,102,108,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,83,104,117,102,102,108,101,40,99,111,108,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,104,117,102,102,108,101,83,101,108,102,40,118,97,108,117,101,115,40,99,111,108,108,101,99,116,105,111,110,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,115,108,105,99,101,96,32,119,105,116,104,111,117,116,32,97,110,32,105,116,101,114,97,116,101,101,32,99,97,108,108,32,103,117,97,114,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,115,108,105,99,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,115,116,97,114,116,61,48,93,32,84,104,101,32,115,116,97,114,116,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,110,100,61,97,114,114,97,121,46,108,101,110,103,116,104,93,32,84,104,101,32,101,110,100,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,83,108,105,99,101,40,97,114,114,97,121,44,32,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,114,116,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,45,115,116,97,114,116,32,62,32,108,101,110,103,116,104,32,63,32,48,32,58,32,40,108,101,110,103,116,104,32,43,32,115,116,97,114,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,101,110,100,32,61,32,101,110,100,32,62,32,108,101,110,103,116,104,32,63,32,108,101,110,103,116,104,32,58,32,101,110,100,59,92,110,32,32,32,32,32,32,105,102,32,40,101,110,100,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,101,110,100,32,43,61,32,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,115,116,97,114,116,32,62,32,101,110,100,32,63,32,48,32,58,32,40,40,101,110,100,32,45,32,115,116,97,114,116,41,32,62,62,62,32,48,41,59,92,110,32,32,32,32,32,32,115,116,97,114,116,32,62,62,62,61,32,48,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,65,114,114,97,121,40,108,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,105,110,100,101,120,93,32,61,32,97,114,114,97,121,91,105,110,100,101,120,32,43,32,115,116,97,114,116,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,115,111,109,101,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,97,110,121,32,101,108,101,109,101,110,116,32,112,97,115,115,101,115,32,116,104,101,32,112,114,101,100,105,99,97,116,101,32,99,104,101,99,107,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,83,111,109,101,40,99,111,108,108,101,99,116,105,111,110,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,59,92,110,92,110,32,32,32,32,32,32,98,97,115,101,69,97,99,104,40,99,111,108,108,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,99,111,108,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,112,114,101,100,105,99,97,116,101,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,99,111,108,108,101,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,115,111,114,116,101,100,73,110,100,101,120,96,32,97,110,100,32,96,95,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,96,32,119,104,105,99,104,92,110,32,32,32,32,32,42,32,112,101,114,102,111,114,109,115,32,97,32,98,105,110,97,114,121,32,115,101,97,114,99,104,32,111,102,32,96,97,114,114,97,121,96,32,116,111,32,100,101,116,101,114,109,105,110,101,32,116,104,101,32,105,110,100,101,120,32,97,116,32,119,104,105,99,104,32,96,118,97,108,117,101,96,92,110,32,32,32,32,32,42,32,115,104,111,117,108,100,32,98,101,32,105,110,115,101,114,116,101,100,32,105,110,116,111,32,96,97,114,114,97,121,96,32,105,110,32,111,114,100,101,114,32,116,111,32,109,97,105,110,116,97,105,110,32,105,116,115,32,115,111,114,116,32,111,114,100,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,115,111,114,116,101,100,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,101,118,97,108,117,97,116,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,114,101,116,72,105,103,104,101,115,116,93,32,83,112,101,99,105,102,121,32,114,101,116,117,114,110,105,110,103,32,116,104,101,32,104,105,103,104,101,115,116,32,113,117,97,108,105,102,105,101,100,32,105,110,100,101,120,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,97,116,32,119,104,105,99,104,32,96,118,97,108,117,101,96,32,115,104,111,117,108,100,32,98,101,32,105,110,115,101,114,116,101,100,92,110,32,32,32,32,32,42,32,32,105,110,116,111,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,83,111,114,116,101,100,73,110,100,101,120,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,114,101,116,72,105,103,104,101,115,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,111,119,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,104,105,103,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,108,111,119,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,110,117,109,98,101,114,39,32,38,38,32,118,97,108,117,101,32,61,61,61,32,118,97,108,117,101,32,38,38,32,104,105,103,104,32,60,61,32,72,65,76,70,95,77,65,88,95,65,82,82,65,89,95,76,69,78,71,84,72,41,32,123,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,108,111,119,32,60,32,104,105,103,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,105,100,32,61,32,40,108,111,119,32,43,32,104,105,103,104,41,32,62,62,62,32,49,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,32,61,32,97,114,114,97,121,91,109,105,100,93,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,111,109,112,117,116,101,100,32,33,61,61,32,110,117,108,108,32,38,38,32,33,105,115,83,121,109,98,111,108,40,99,111,109,112,117,116,101,100,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,114,101,116,72,105,103,104,101,115,116,32,63,32,40,99,111,109,112,117,116,101,100,32,60,61,32,118,97,108,117,101,41,32,58,32,40,99,111,109,112,117,116,101,100,32,60,32,118,97,108,117,101,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,111,119,32,61,32,109,105,100,32,43,32,49,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,105,103,104,32,61,32,109,105,100,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,103,104,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,111,114,116,101,100,73,110,100,101,120,66,121,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,105,100,101,110,116,105,116,121,44,32,114,101,116,72,105,103,104,101,115,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,115,111,114,116,101,100,73,110,100,101,120,66,121,96,32,97,110,100,32,96,95,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,66,121,96,92,110,32,32,32,32,32,42,32,119,104,105,99,104,32,105,110,118,111,107,101,115,32,96,105,116,101,114,97,116,101,101,96,32,102,111,114,32,96,118,97,108,117,101,96,32,97,110,100,32,101,97,99,104,32,101,108,101,109,101,110,116,32,111,102,32,96,97,114,114,97,121,96,32,116,111,32,99,111,109,112,117,116,101,92,110,32,32,32,32,32,42,32,116,104,101,105,114,32,115,111,114,116,32,114,97,110,107,105,110,103,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,59,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,115,111,114,116,101,100,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,101,118,97,108,117,97,116,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,116,101,114,97,116,101,101,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,114,101,116,72,105,103,104,101,115,116,93,32,83,112,101,99,105,102,121,32,114,101,116,117,114,110,105,110,103,32,116,104,101,32,104,105,103,104,101,115,116,32,113,117,97,108,105,102,105,101,100,32,105,110,100,101,120,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,97,116,32,119,104,105,99,104,32,96,118,97,108,117,101,96,32,115,104,111,117,108,100,32,98,101,32,105,110,115,101,114,116,101,100,92,110,32,32,32,32,32,42,32,32,105,110,116,111,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,83,111,114,116,101,100,73,110,100,101,120,66,121,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,105,116,101,114,97,116,101,101,44,32,114,101,116,72,105,103,104,101,115,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,111,119,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,104,105,103,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,104,105,103,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,48,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,105,116,101,114,97,116,101,101,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,73,115,78,97,78,32,61,32,118,97,108,117,101,32,33,61,61,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,73,115,78,117,108,108,32,61,32,118,97,108,117,101,32,61,61,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,73,115,83,121,109,98,111,108,32,61,32,105,115,83,121,109,98,111,108,40,118,97,108,117,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,73,115,85,110,100,101,102,105,110,101,100,32,61,32,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,108,111,119,32,60,32,104,105,103,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,105,100,32,61,32,110,97,116,105,118,101,70,108,111,111,114,40,40,108,111,119,32,43,32,104,105,103,104,41,32,47,32,50,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,32,61,32,105,116,101,114,97,116,101,101,40,97,114,114,97,121,91,109,105,100,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,73,115,68,101,102,105,110,101,100,32,61,32,99,111,109,112,117,116,101,100,32,33,61,61,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,73,115,78,117,108,108,32,61,32,99,111,109,112,117,116,101,100,32,61,61,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,73,115,82,101,102,108,101,120,105,118,101,32,61,32,99,111,109,112,117,116,101,100,32,61,61,61,32,99,111,109,112,117,116,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,73,115,83,121,109,98,111,108,32,61,32,105,115,83,121,109,98,111,108,40,99,111,109,112,117,116,101,100,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,73,115,78,97,78,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,101,116,76,111,119,32,61,32,114,101,116,72,105,103,104,101,115,116,32,124,124,32,111,116,104,73,115,82,101,102,108,101,120,105,118,101,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,118,97,108,73,115,85,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,101,116,76,111,119,32,61,32,111,116,104,73,115,82,101,102,108,101,120,105,118,101,32,38,38,32,40,114,101,116,72,105,103,104,101,115,116,32,124,124,32,111,116,104,73,115,68,101,102,105,110,101,100,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,118,97,108,73,115,78,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,101,116,76,111,119,32,61,32,111,116,104,73,115,82,101,102,108,101,120,105,118,101,32,38,38,32,111,116,104,73,115,68,101,102,105,110,101,100,32,38,38,32,40,114,101,116,72,105,103,104,101,115,116,32,124,124,32,33,111,116,104,73,115,78,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,118,97,108,73,115,83,121,109,98,111,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,101,116,76,111,119,32,61,32,111,116,104,73,115,82,101,102,108,101,120,105,118,101,32,38,38,32,111,116,104,73,115,68,101,102,105,110,101,100,32,38,38,32,33,111,116,104,73,115,78,117,108,108,32,38,38,32,40,114,101,116,72,105,103,104,101,115,116,32,124,124,32,33,111,116,104,73,115,83,121,109,98,111,108,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,111,116,104,73,115,78,117,108,108,32,124,124,32,111,116,104,73,115,83,121,109,98,111,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,101,116,76,111,119,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,101,116,76,111,119,32,61,32,114,101,116,72,105,103,104,101,115,116,32,63,32,40,99,111,109,112,117,116,101,100,32,60,61,32,118,97,108,117,101,41,32,58,32,40,99,111,109,112,117,116,101,100,32,60,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,101,116,76,111,119,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,108,111,119,32,61,32,109,105,100,32,43,32,49,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,105,103,104,32,61,32,109,105,100,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,97,116,105,118,101,77,105,110,40,104,105,103,104,44,32,77,65,88,95,65,82,82,65,89,95,73,78,68,69,88,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,115,111,114,116,101,100,85,110,105,113,96,32,97,110,100,32,96,95,46,115,111,114,116,101,100,85,110,105,113,66,121,96,32,119,105,116,104,111,117,116,92,110,32,32,32,32,32,42,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,100,117,112,108,105,99,97,116,101,32,102,114,101,101,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,83,111,114,116,101,100,85,110,105,113,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,73,110,100,101,120,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,97,114,114,97,121,91,105,110,100,101,120,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,32,61,32,105,116,101,114,97,116,101,101,32,63,32,105,116,101,114,97,116,101,101,40,118,97,108,117,101,41,32,58,32,118,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,110,100,101,120,32,124,124,32,33,101,113,40,99,111,109,112,117,116,101,100,44,32,115,101,101,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,101,101,110,32,61,32,99,111,109,112,117,116,101,100,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,114,101,115,73,110,100,101,120,43,43,93,32,61,32,118,97,108,117,101,32,61,61,61,32,48,32,63,32,48,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,116,111,78,117,109,98,101,114,96,32,119,104,105,99,104,32,100,111,101,115,110,39,116,32,101,110,115,117,114,101,32,99,111,114,114,101,99,116,92,110,32,32,32,32,32,42,32,99,111,110,118,101,114,115,105,111,110,115,32,111,102,32,98,105,110,97,114,121,44,32,104,101,120,97,100,101,99,105,109,97,108,44,32,111,114,32,111,99,116,97,108,32,115,116,114,105,110,103,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,112,114,111,99,101,115,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,117,109,98,101,114,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,84,111,78,117,109,98,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,110,117,109,98,101,114,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,83,121,109,98,111,108,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,78,65,78,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,43,118,97,108,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,116,111,83,116,114,105,110,103,96,32,119,104,105,99,104,32,100,111,101,115,110,39,116,32,99,111,110,118,101,114,116,32,110,117,108,108,105,115,104,92,110,32,32,32,32,32,42,32,118,97,108,117,101,115,32,116,111,32,101,109,112,116,121,32,115,116,114,105,110,103,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,112,114,111,99,101,115,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,84,111,83,116,114,105,110,103,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,69,120,105,116,32,101,97,114,108,121,32,102,111,114,32,115,116,114,105,110,103,115,32,116,111,32,97,118,111,105,100,32,97,32,112,101,114,102,111,114,109,97,110,99,101,32,104,105,116,32,105,110,32,115,111,109,101,32,101,110,118,105,114,111,110,109,101,110,116,115,46,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,99,117,114,115,105,118,101,108,121,32,99,111,110,118,101,114,116,32,118,97,108,117,101,115,32,40,115,117,115,99,101,112,116,105,98,108,101,32,116,111,32,99,97,108,108,32,115,116,97,99,107,32,108,105,109,105,116,115,41,46,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,77,97,112,40,118,97,108,117,101,44,32,98,97,115,101,84,111,83,116,114,105,110,103,41,32,43,32,39,39,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,83,121,109,98,111,108,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,121,109,98,111,108,84,111,83,116,114,105,110,103,32,63,32,115,121,109,98,111,108,84,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,117,101,41,32,58,32,39,39,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,40,118,97,108,117,101,32,43,32,39,39,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,114,101,115,117,108,116,32,61,61,32,39,48,39,32,38,38,32,40,49,32,47,32,118,97,108,117,101,41,32,61,61,32,45,73,78,70,73,78,73,84,89,41,32,63,32,39,45,48,39,32,58,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,117,110,105,113,66,121,96,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,111,109,112,97,114,97,116,111,114,93,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,100,117,112,108,105,99,97,116,101,32,102,114,101,101,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,85,110,105,113,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,44,32,99,111,109,112,97,114,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,99,108,117,100,101,115,32,61,32,97,114,114,97,121,73,110,99,108,117,100,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,67,111,109,109,111,110,32,61,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,91,93,44,92,110,32,32,32,32,32,32,32,32,32,32,115,101,101,110,32,61,32,114,101,115,117,108,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,99,111,109,112,97,114,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,105,115,67,111,109,109,111,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,105,110,99,108,117,100,101,115,32,61,32,97,114,114,97,121,73,110,99,108,117,100,101,115,87,105,116,104,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,108,101,110,103,116,104,32,62,61,32,76,65,82,71,69,95,65,82,82,65,89,95,83,73,90,69,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,101,116,32,61,32,105,116,101,114,97,116,101,101,32,63,32,110,117,108,108,32,58,32,99,114,101,97,116,101,83,101,116,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,101,116,84,111,65,114,114,97,121,40,115,101,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,115,67,111,109,109,111,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,105,110,99,108,117,100,101,115,32,61,32,99,97,99,104,101,72,97,115,59,92,110,32,32,32,32,32,32,32,32,115,101,101,110,32,61,32,110,101,119,32,83,101,116,67,97,99,104,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,115,101,101,110,32,61,32,105,116,101,114,97,116,101,101,32,63,32,91,93,32,58,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,111,117,116,101,114,58,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,97,114,114,97,121,91,105,110,100,101,120,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,32,61,32,105,116,101,114,97,116,101,101,32,63,32,105,116,101,114,97,116,101,101,40,118,97,108,117,101,41,32,58,32,118,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,40,99,111,109,112,97,114,97,116,111,114,32,124,124,32,118,97,108,117,101,32,33,61,61,32,48,41,32,63,32,118,97,108,117,101,32,58,32,48,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,67,111,109,109,111,110,32,38,38,32,99,111,109,112,117,116,101,100,32,61,61,61,32,99,111,109,112,117,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,101,101,110,73,110,100,101,120,32,61,32,115,101,101,110,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,115,101,101,110,73,110,100,101,120,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,101,101,110,91,115,101,101,110,73,110,100,101,120,93,32,61,61,61,32,99,111,109,112,117,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,32,111,117,116,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,101,110,46,112,117,115,104,40,99,111,109,112,117,116,101,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,33,105,110,99,108,117,100,101,115,40,115,101,101,110,44,32,99,111,109,112,117,116,101,100,44,32,99,111,109,112,97,114,97,116,111,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,101,101,110,32,33,61,61,32,114,101,115,117,108,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,101,110,46,112,117,115,104,40,99,111,109,112,117,116,101,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,117,110,115,101,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,114,111,112,101,114,116,121,32,112,97,116,104,32,116,111,32,117,110,115,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,105,115,32,100,101,108,101,116,101,100,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,85,110,115,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,112,97,116,104,32,61,32,99,97,115,116,80,97,116,104,40,112,97,116,104,44,32,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,111,98,106,101,99,116,32,61,32,112,97,114,101,110,116,40,111,98,106,101,99,116,44,32,112,97,116,104,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,124,124,32,100,101,108,101,116,101,32,111,98,106,101,99,116,91,116,111,75,101,121,40,108,97,115,116,40,112,97,116,104,41,41,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,117,112,100,97,116,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,117,112,100,97,116,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,117,112,100,97,116,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,112,114,111,100,117,99,101,32,116,104,101,32,117,112,100,97,116,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,112,97,116,104,32,99,114,101,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,85,112,100,97,116,101,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,117,112,100,97,116,101,114,44,32,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,117,112,100,97,116,101,114,40,98,97,115,101,71,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,41,41,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,100,114,111,112,87,104,105,108,101,96,32,97,110,100,32,96,95,46,116,97,107,101,87,104,105,108,101,96,92,110,32,32,32,32,32,42,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,105,115,68,114,111,112,93,32,83,112,101,99,105,102,121,32,100,114,111,112,112,105,110,103,32,101,108,101,109,101,110,116,115,32,105,110,115,116,101,97,100,32,111,102,32,116,97,107,105,110,103,32,116,104,101,109,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,102,114,111,109,82,105,103,104,116,93,32,83,112,101,99,105,102,121,32,105,116,101,114,97,116,105,110,103,32,102,114,111,109,32,114,105,103,104,116,32,116,111,32,108,101,102,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,87,104,105,108,101,40,97,114,114,97,121,44,32,112,114,101,100,105,99,97,116,101,44,32,105,115,68,114,111,112,44,32,102,114,111,109,82,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,102,114,111,109,82,105,103,104,116,32,63,32,108,101,110,103,116,104,32,58,32,45,49,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,40,102,114,111,109,82,105,103,104,116,32,63,32,105,110,100,101,120,45,45,32,58,32,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,38,38,92,110,32,32,32,32,32,32,32,32,112,114,101,100,105,99,97,116,101,40,97,114,114,97,121,91,105,110,100,101,120,93,44,32,105,110,100,101,120,44,32,97,114,114,97,121,41,41,32,123,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,68,114,111,112,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,83,108,105,99,101,40,97,114,114,97,121,44,32,40,102,114,111,109,82,105,103,104,116,32,63,32,48,32,58,32,105,110,100,101,120,41,44,32,40,102,114,111,109,82,105,103,104,116,32,63,32,105,110,100,101,120,32,43,32,49,32,58,32,108,101,110,103,116,104,41,41,92,110,32,32,32,32,32,32,32,32,58,32,98,97,115,101,83,108,105,99,101,40,97,114,114,97,121,44,32,40,102,114,111,109,82,105,103,104,116,32,63,32,105,110,100,101,120,32,43,32,49,32,58,32,48,41,44,32,40,102,114,111,109,82,105,103,104,116,32,63,32,108,101,110,103,116,104,32,58,32,105,110,100,101,120,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,119,114,97,112,112,101,114,86,97,108,117,101,96,32,119,104,105,99,104,32,114,101,116,117,114,110,115,32,116,104,101,32,114,101,115,117,108,116,32,111,102,92,110,32,32,32,32,32,42,32,112,101,114,102,111,114,109,105,110,103,32,97,32,115,101,113,117,101,110,99,101,32,111,102,32,97,99,116,105,111,110,115,32,111,110,32,116,104,101,32,117,110,119,114,97,112,112,101,100,32,96,118,97,108,117,101,96,44,32,119,104,101,114,101,32,101,97,99,104,92,110,32,32,32,32,32,42,32,115,117,99,99,101,115,115,105,118,101,32,97,99,116,105,111,110,32,105,115,32,115,117,112,112,108,105,101,100,32,116,104,101,32,114,101,116,117,114,110,32,118,97,108,117,101,32,111,102,32,116,104,101,32,112,114,101,118,105,111,117,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,117,110,119,114,97,112,112,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,99,116,105,111,110,115,32,65,99,116,105,111,110,115,32,116,111,32,112,101,114,102,111,114,109,32,116,111,32,114,101,115,111,108,118,101,32,116,104,101,32,117,110,119,114,97,112,112,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,115,111,108,118,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,87,114,97,112,112,101,114,86,97,108,117,101,40,118,97,108,117,101,44,32,97,99,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,117,108,116,32,105,110,115,116,97,110,99,101,111,102,32,76,97,122,121,87,114,97,112,112,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,114,101,115,117,108,116,46,118,97,108,117,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,82,101,100,117,99,101,40,97,99,116,105,111,110,115,44,32,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,97,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,99,116,105,111,110,46,102,117,110,99,46,97,112,112,108,121,40,97,99,116,105,111,110,46,116,104,105,115,65,114,103,44,32,97,114,114,97,121,80,117,115,104,40,91,114,101,115,117,108,116,93,44,32,97,99,116,105,111,110,46,97,114,103,115,41,41,59,92,110,32,32,32,32,32,32,125,44,32,114,101,115,117,108,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,120,111,114,96,44,32,119,105,116,104,111,117,116,32,115,117,112,112,111,114,116,32,102,111,114,92,110,32,32,32,32,32,42,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,44,32,116,104,97,116,32,97,99,99,101,112,116,115,32,97,110,32,97,114,114,97,121,32,111,102,32,97,114,114,97,121,115,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,115,32,84,104,101,32,97,114,114,97,121,115,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,111,109,112,97,114,97,116,111,114,93,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,88,111,114,40,97,114,114,97,121,115,44,32,105,116,101,114,97,116,101,101,44,32,99,111,109,112,97,114,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,108,101,110,103,116,104,32,60,32,50,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,101,110,103,116,104,32,63,32,98,97,115,101,85,110,105,113,40,97,114,114,97,121,115,91,48,93,41,32,58,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,65,114,114,97,121,40,108,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,114,97,121,32,61,32,97,114,114,97,121,115,91,105,110,100,101,120,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,73,110,100,101,120,32,61,32,45,49,59,92,110,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,111,116,104,73,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,116,104,73,110,100,101,120,32,33,61,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,105,110,100,101,120,93,32,61,32,98,97,115,101,68,105,102,102,101,114,101,110,99,101,40,114,101,115,117,108,116,91,105,110,100,101,120,93,32,124,124,32,97,114,114,97,121,44,32,97,114,114,97,121,115,91,111,116,104,73,110,100,101,120,93,44,32,105,116,101,114,97,116,101,101,44,32,99,111,109,112,97,114,97,116,111,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,85,110,105,113,40,98,97,115,101,70,108,97,116,116,101,110,40,114,101,115,117,108,116,44,32,49,41,44,32,105,116,101,114,97,116,101,101,44,32,99,111,109,112,97,114,97,116,111,114,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,98,97,115,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,96,95,46,122,105,112,79,98,106,101,99,116,96,32,119,104,105,99,104,32,97,115,115,105,103,110,115,32,118,97,108,117,101,115,32,117,115,105,110,103,32,96,97,115,115,105,103,110,70,117,110,99,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,112,114,111,112,115,32,84,104,101,32,112,114,111,112,101,114,116,121,32,105,100,101,110,116,105,102,105,101,114,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,118,97,108,117,101,115,32,84,104,101,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,97,115,115,105,103,110,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,97,115,115,105,103,110,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,90,105,112,79,98,106,101,99,116,40,112,114,111,112,115,44,32,118,97,108,117,101,115,44,32,97,115,115,105,103,110,70,117,110,99,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,112,114,111,112,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,115,76,101,110,103,116,104,32,61,32,118,97,108,117,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,123,125,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,105,110,100,101,120,32,60,32,118,97,108,115,76,101,110,103,116,104,32,63,32,118,97,108,117,101,115,91,105,110,100,101,120,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,97,115,115,105,103,110,70,117,110,99,40,114,101,115,117,108,116,44,32,112,114,111,112,115,91,105,110,100,101,120,93,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,97,115,116,115,32,96,118,97,108,117,101,96,32,116,111,32,97,110,32,101,109,112,116,121,32,97,114,114,97,121,32,105,102,32,105,116,39,115,32,110,111,116,32,97,110,32,97,114,114,97,121,32,108,105,107,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,97,115,116,32,97,114,114,97,121,45,108,105,107,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,97,115,116,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,118,97,108,117,101,41,32,63,32,118,97,108,117,101,32,58,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,97,115,116,115,32,96,118,97,108,117,101,96,32,116,111,32,96,105,100,101,110,116,105,116,121,96,32,105,102,32,105,116,39,115,32,110,111,116,32,97,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,99,97,115,116,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,97,115,116,70,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,118,97,108,117,101,32,58,32,105,100,101,110,116,105,116,121,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,97,115,116,115,32,96,118,97,108,117,101,96,32,116,111,32,97,32,112,97,116,104,32,97,114,114,97,121,32,105,102,32,105,116,39,115,32,110,111,116,32,111,110,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,98,106,101,99,116,93,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,32,107,101,121,115,32,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,97,115,116,32,112,114,111,112,101,114,116,121,32,112,97,116,104,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,97,115,116,80,97,116,104,40,118,97,108,117,101,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,75,101,121,40,118,97,108,117,101,44,32,111,98,106,101,99,116,41,32,63,32,91,118,97,108,117,101,93,32,58,32,115,116,114,105,110,103,84,111,80,97,116,104,40,116,111,83,116,114,105,110,103,40,118,97,108,117,101,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,96,98,97,115,101,82,101,115,116,96,32,97,108,105,97,115,32,119,104,105,99,104,32,99,97,110,32,98,101,32,114,101,112,108,97,99,101,100,32,119,105,116,104,32,96,105,100,101,110,116,105,116,121,96,32,98,121,32,109,111,100,117,108,101,92,110,32,32,32,32,32,42,32,114,101,112,108,97,99,101,109,101,110,116,32,112,108,117,103,105,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,116,121,112,101,32,123,70,117,110,99,116,105,111,110,125,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,97,112,112,108,121,32,97,32,114,101,115,116,32,112,97,114,97,109,101,116,101,114,32,116,111,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,99,97,115,116,82,101,115,116,32,61,32,98,97,115,101,82,101,115,116,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,97,115,116,115,32,96,97,114,114,97,121,96,32,116,111,32,97,32,115,108,105,99,101,32,105,102,32,105,116,39,115,32,110,101,101,100,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,115,116,97,114,116,32,84,104,101,32,115,116,97,114,116,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,110,100,61,97,114,114,97,121,46,108,101,110,103,116,104,93,32,84,104,101,32,101,110,100,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,97,115,116,32,115,108,105,99,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,97,115,116,83,108,105,99,101,40,97,114,114,97,121,44,32,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,101,110,100,32,61,32,101,110,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,108,101,110,103,116,104,32,58,32,101,110,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,33,115,116,97,114,116,32,38,38,32,101,110,100,32,62,61,32,108,101,110,103,116,104,41,32,63,32,97,114,114,97,121,32,58,32,98,97,115,101,83,108,105,99,101,40,97,114,114,97,121,44,32,115,116,97,114,116,44,32,101,110,100,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,105,109,112,108,101,32,119,114,97,112,112,101,114,32,97,114,111,117,110,100,32,116,104,101,32,103,108,111,98,97,108,32,91,96,99,108,101,97,114,84,105,109,101,111,117,116,96,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,99,108,101,97,114,84,105,109,101,111,117,116,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,124,79,98,106,101,99,116,125,32,105,100,32,84,104,101,32,116,105,109,101,114,32,105,100,32,111,114,32,116,105,109,101,111,117,116,32,111,98,106,101,99,116,32,111,102,32,116,104,101,32,116,105,109,101,114,32,116,111,32,99,108,101,97,114,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,99,108,101,97,114,84,105,109,101,111,117,116,32,61,32,99,116,120,67,108,101,97,114,84,105,109,101,111,117,116,32,124,124,32,102,117,110,99,116,105,111,110,40,105,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,111,111,116,46,99,108,101,97,114,84,105,109,101,111,117,116,40,105,100,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,99,108,111,110,101,32,111,102,32,32,96,98,117,102,102,101,114,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,66,117,102,102,101,114,125,32,98,117,102,102,101,114,32,84,104,101,32,98,117,102,102,101,114,32,116,111,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,105,115,68,101,101,112,93,32,83,112,101,99,105,102,121,32,97,32,100,101,101,112,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,66,117,102,102,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,108,111,110,101,100,32,98,117,102,102,101,114,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,66,117,102,102,101,114,40,98,117,102,102,101,114,44,32,105,115,68,101,101,112,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,101,112,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,117,102,102,101,114,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,98,117,102,102,101,114,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,97,108,108,111,99,85,110,115,97,102,101,32,63,32,97,108,108,111,99,85,110,115,97,102,101,40,108,101,110,103,116,104,41,32,58,32,110,101,119,32,98,117,102,102,101,114,46,99,111,110,115,116,114,117,99,116,111,114,40,108,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,32,32,98,117,102,102,101,114,46,99,111,112,121,40,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,99,108,111,110,101,32,111,102,32,96,97,114,114,97,121,66,117,102,102,101,114,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,66,117,102,102,101,114,125,32,97,114,114,97,121,66,117,102,102,101,114,32,84,104,101,32,97,114,114,97,121,32,98,117,102,102,101,114,32,116,111,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,66,117,102,102,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,108,111,110,101,100,32,97,114,114,97,121,32,98,117,102,102,101,114,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,65,114,114,97,121,66,117,102,102,101,114,40,97,114,114,97,121,66,117,102,102,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,110,101,119,32,97,114,114,97,121,66,117,102,102,101,114,46,99,111,110,115,116,114,117,99,116,111,114,40,97,114,114,97,121,66,117,102,102,101,114,46,98,121,116,101,76,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,114,101,115,117,108,116,41,46,115,101,116,40,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,97,114,114,97,121,66,117,102,102,101,114,41,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,99,108,111,110,101,32,111,102,32,96,100,97,116,97,86,105,101,119,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,100,97,116,97,86,105,101,119,32,84,104,101,32,100,97,116,97,32,118,105,101,119,32,116,111,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,105,115,68,101,101,112,93,32,83,112,101,99,105,102,121,32,97,32,100,101,101,112,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,108,111,110,101,100,32,100,97,116,97,32,118,105,101,119,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,68,97,116,97,86,105,101,119,40,100,97,116,97,86,105,101,119,44,32,105,115,68,101,101,112,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,117,102,102,101,114,32,61,32,105,115,68,101,101,112,32,63,32,99,108,111,110,101,65,114,114,97,121,66,117,102,102,101,114,40,100,97,116,97,86,105,101,119,46,98,117,102,102,101,114,41,32,58,32,100,97,116,97,86,105,101,119,46,98,117,102,102,101,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,100,97,116,97,86,105,101,119,46,99,111,110,115,116,114,117,99,116,111,114,40,98,117,102,102,101,114,44,32,100,97,116,97,86,105,101,119,46,98,121,116,101,79,102,102,115,101,116,44,32,100,97,116,97,86,105,101,119,46,98,121,116,101,76,101,110,103,116,104,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,99,108,111,110,101,32,111,102,32,96,114,101,103,101,120,112,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,114,101,103,101,120,112,32,84,104,101,32,114,101,103,101,120,112,32,116,111,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,108,111,110,101,100,32,114,101,103,101,120,112,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,82,101,103,69,120,112,40,114,101,103,101,120,112,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,110,101,119,32,114,101,103,101,120,112,46,99,111,110,115,116,114,117,99,116,111,114,40,114,101,103,101,120,112,46,115,111,117,114,99,101,44,32,114,101,70,108,97,103,115,46,101,120,101,99,40,114,101,103,101,120,112,41,41,59,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,108,97,115,116,73,110,100,101,120,32,61,32,114,101,103,101,120,112,46,108,97,115,116,73,110,100,101,120,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,99,108,111,110,101,32,111,102,32,116,104,101,32,96,115,121,109,98,111,108,96,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,121,109,98,111,108,32,84,104,101,32,115,121,109,98,111,108,32,111,98,106,101,99,116,32,116,111,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,108,111,110,101,100,32,115,121,109,98,111,108,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,83,121,109,98,111,108,40,115,121,109,98,111,108,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,121,109,98,111,108,86,97,108,117,101,79,102,32,63,32,79,98,106,101,99,116,40,115,121,109,98,111,108,86,97,108,117,101,79,102,46,99,97,108,108,40,115,121,109,98,111,108,41,41,32,58,32,123,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,99,108,111,110,101,32,111,102,32,96,116,121,112,101,100,65,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,116,121,112,101,100,65,114,114,97,121,32,84,104,101,32,116,121,112,101,100,32,97,114,114,97,121,32,116,111,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,105,115,68,101,101,112,93,32,83,112,101,99,105,102,121,32,97,32,100,101,101,112,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,108,111,110,101,100,32,116,121,112,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,84,121,112,101,100,65,114,114,97,121,40,116,121,112,101,100,65,114,114,97,121,44,32,105,115,68,101,101,112,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,117,102,102,101,114,32,61,32,105,115,68,101,101,112,32,63,32,99,108,111,110,101,65,114,114,97,121,66,117,102,102,101,114,40,116,121,112,101,100,65,114,114,97,121,46,98,117,102,102,101,114,41,32,58,32,116,121,112,101,100,65,114,114,97,121,46,98,117,102,102,101,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,116,121,112,101,100,65,114,114,97,121,46,99,111,110,115,116,114,117,99,116,111,114,40,98,117,102,102,101,114,44,32,116,121,112,101,100,65,114,114,97,121,46,98,121,116,101,79,102,102,115,101,116,44,32,116,121,112,101,100,65,114,114,97,121,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,109,112,97,114,101,115,32,118,97,108,117,101,115,32,116,111,32,115,111,114,116,32,116,104,101,109,32,105,110,32,97,115,99,101,110,100,105,110,103,32,111,114,100,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,111,114,116,32,111,114,100,101,114,32,105,110,100,105,99,97,116,111,114,32,102,111,114,32,96,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,109,112,97,114,101,65,115,99,101,110,100,105,110,103,40,118,97,108,117,101,44,32,111,116,104,101,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,33,61,61,32,111,116,104,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,73,115,68,101,102,105,110,101,100,32,61,32,118,97,108,117,101,32,33,61,61,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,73,115,78,117,108,108,32,61,32,118,97,108,117,101,32,61,61,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,73,115,82,101,102,108,101,120,105,118,101,32,61,32,118,97,108,117,101,32,61,61,61,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,73,115,83,121,109,98,111,108,32,61,32,105,115,83,121,109,98,111,108,40,118,97,108,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,116,104,73,115,68,101,102,105,110,101,100,32,61,32,111,116,104,101,114,32,33,61,61,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,73,115,78,117,108,108,32,61,32,111,116,104,101,114,32,61,61,61,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,73,115,82,101,102,108,101,120,105,118,101,32,61,32,111,116,104,101,114,32,61,61,61,32,111,116,104,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,73,115,83,121,109,98,111,108,32,61,32,105,115,83,121,109,98,111,108,40,111,116,104,101,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,33,111,116,104,73,115,78,117,108,108,32,38,38,32,33,111,116,104,73,115,83,121,109,98,111,108,32,38,38,32,33,118,97,108,73,115,83,121,109,98,111,108,32,38,38,32,118,97,108,117,101,32,62,32,111,116,104,101,114,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,118,97,108,73,115,83,121,109,98,111,108,32,38,38,32,111,116,104,73,115,68,101,102,105,110,101,100,32,38,38,32,111,116,104,73,115,82,101,102,108,101,120,105,118,101,32,38,38,32,33,111,116,104,73,115,78,117,108,108,32,38,38,32,33,111,116,104,73,115,83,121,109,98,111,108,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,118,97,108,73,115,78,117,108,108,32,38,38,32,111,116,104,73,115,68,101,102,105,110,101,100,32,38,38,32,111,116,104,73,115,82,101,102,108,101,120,105,118,101,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,33,118,97,108,73,115,68,101,102,105,110,101,100,32,38,38,32,111,116,104,73,115,82,101,102,108,101,120,105,118,101,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,33,118,97,108,73,115,82,101,102,108,101,120,105,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,33,118,97,108,73,115,78,117,108,108,32,38,38,32,33,118,97,108,73,115,83,121,109,98,111,108,32,38,38,32,33,111,116,104,73,115,83,121,109,98,111,108,32,38,38,32,118,97,108,117,101,32,60,32,111,116,104,101,114,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,111,116,104,73,115,83,121,109,98,111,108,32,38,38,32,118,97,108,73,115,68,101,102,105,110,101,100,32,38,38,32,118,97,108,73,115,82,101,102,108,101,120,105,118,101,32,38,38,32,33,118,97,108,73,115,78,117,108,108,32,38,38,32,33,118,97,108,73,115,83,121,109,98,111,108,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,111,116,104,73,115,78,117,108,108,32,38,38,32,118,97,108,73,115,68,101,102,105,110,101,100,32,38,38,32,118,97,108,73,115,82,101,102,108,101,120,105,118,101,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,33,111,116,104,73,115,68,101,102,105,110,101,100,32,38,38,32,118,97,108,73,115,82,101,102,108,101,120,105,118,101,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,33,111,116,104,73,115,82,101,102,108,101,120,105,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,85,115,101,100,32,98,121,32,96,95,46,111,114,100,101,114,66,121,96,32,116,111,32,99,111,109,112,97,114,101,32,109,117,108,116,105,112,108,101,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,97,32,118,97,108,117,101,32,116,111,32,97,110,111,116,104,101,114,92,110,32,32,32,32,32,42,32,97,110,100,32,115,116,97,98,108,101,32,115,111,114,116,32,116,104,101,109,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,73,102,32,96,111,114,100,101,114,115,96,32,105,115,32,117,110,115,112,101,99,105,102,105,101,100,44,32,97,108,108,32,118,97,108,117,101,115,32,97,114,101,32,115,111,114,116,101,100,32,105,110,32,97,115,99,101,110,100,105,110,103,32,111,114,100,101,114,46,32,79,116,104,101,114,119,105,115,101,44,92,110,32,32,32,32,32,42,32,115,112,101,99,105,102,121,32,97,110,32,111,114,100,101,114,32,111,102,32,92,34,100,101,115,99,92,34,32,102,111,114,32,100,101,115,99,101,110,100,105,110,103,32,111,114,32,92,34,97,115,99,92,34,32,102,111,114,32,97,115,99,101,110,100,105,110,103,32,115,111,114,116,32,111,114,100,101,114,92,110,32,32,32,32,32,42,32,111,102,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,111,98,106,101,99,116,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,91,93,124,115,116,114,105,110,103,91,93,125,32,111,114,100,101,114,115,32,84,104,101,32,111,114,100,101,114,32,116,111,32,115,111,114,116,32,98,121,32,102,111,114,32,101,97,99,104,32,112,114,111,112,101,114,116,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,111,114,116,32,111,114,100,101,114,32,105,110,100,105,99,97,116,111,114,32,102,111,114,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,109,112,97,114,101,77,117,108,116,105,112,108,101,40,111,98,106,101,99,116,44,32,111,116,104,101,114,44,32,111,114,100,101,114,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,111,98,106,67,114,105,116,101,114,105,97,32,61,32,111,98,106,101,99,116,46,99,114,105,116,101,114,105,97,44,92,110,32,32,32,32,32,32,32,32,32,32,111,116,104,67,114,105,116,101,114,105,97,32,61,32,111,116,104,101,114,46,99,114,105,116,101,114,105,97,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,111,98,106,67,114,105,116,101,114,105,97,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,111,114,100,101,114,115,76,101,110,103,116,104,32,61,32,111,114,100,101,114,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,99,111,109,112,97,114,101,65,115,99,101,110,100,105,110,103,40,111,98,106,67,114,105,116,101,114,105,97,91,105,110,100,101,120,93,44,32,111,116,104,67,114,105,116,101,114,105,97,91,105,110,100,101,120,93,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,101,115,117,108,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,62,61,32,111,114,100,101,114,115,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,114,100,101,114,32,61,32,111,114,100,101,114,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,42,32,40,111,114,100,101,114,32,61,61,32,39,100,101,115,99,39,32,63,32,45,49,32,58,32,49,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,70,105,120,101,115,32,97,110,32,96,65,114,114,97,121,35,115,111,114,116,96,32,98,117,103,32,105,110,32,116,104,101,32,74,83,32,101,110,103,105,110,101,32,101,109,98,101,100,100,101,100,32,105,110,32,65,100,111,98,101,32,97,112,112,108,105,99,97,116,105,111,110,115,92,110,32,32,32,32,32,32,47,47,32,116,104,97,116,32,99,97,117,115,101,115,32,105,116,44,32,117,110,100,101,114,32,99,101,114,116,97,105,110,32,99,105,114,99,117,109,115,116,97,110,99,101,115,44,32,116,111,32,112,114,111,118,105,100,101,32,116,104,101,32,115,97,109,101,32,118,97,108,117,101,32,102,111,114,92,110,32,32,32,32,32,32,47,47,32,96,111,98,106,101,99,116,96,32,97,110,100,32,96,111,116,104,101,114,96,46,32,83,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,106,97,115,104,107,101,110,97,115,47,117,110,100,101,114,115,99,111,114,101,47,112,117,108,108,47,49,50,52,55,92,110,32,32,32,32,32,32,47,47,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,32,47,47,92,110,32,32,32,32,32,32,47,47,32,84,104,105,115,32,97,108,115,111,32,101,110,115,117,114,101,115,32,97,32,115,116,97,98,108,101,32,115,111,114,116,32,105,110,32,86,56,32,97,110,100,32,111,116,104,101,114,32,101,110,103,105,110,101,115,46,92,110,32,32,32,32,32,32,47,47,32,83,101,101,32,104,116,116,112,115,58,47,47,98,117,103,115,46,99,104,114,111,109,105,117,109,46,111,114,103,47,112,47,118,56,47,105,115,115,117,101,115,47,100,101,116,97,105,108,63,105,100,61,57,48,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,46,105,110,100,101,120,32,45,32,111,116,104,101,114,46,105,110,100,101,120,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,116,104,97,116,32,105,115,32,116,104,101,32,99,111,109,112,111,115,105,116,105,111,110,32,111,102,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,32,97,114,103,117,109,101,110,116,115,44,92,110,32,32,32,32,32,42,32,112,108,97,99,101,104,111,108,100,101,114,115,44,32,97,110,100,32,112,114,111,118,105,100,101,100,32,97,114,103,117,109,101,110,116,115,32,105,110,116,111,32,97,32,115,105,110,103,108,101,32,97,114,114,97,121,32,111,102,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,103,115,32,84,104,101,32,112,114,111,118,105,100,101,100,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,112,97,114,116,105,97,108,115,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,112,114,101,112,101,110,100,32,116,111,32,116,104,111,115,101,32,112,114,111,118,105,100,101,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,104,111,108,100,101,114,115,32,84,104,101,32,96,112,97,114,116,105,97,108,115,96,32,112,108,97,99,101,104,111,108,100,101,114,32,105,110,100,101,120,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,115,32,123,98,111,111,108,101,97,110,125,32,91,105,115,67,117,114,114,105,101,100,93,32,83,112,101,99,105,102,121,32,99,111,109,112,111,115,105,110,103,32,102,111,114,32,97,32,99,117,114,114,105,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,99,111,109,112,111,115,101,100,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,109,112,111,115,101,65,114,103,115,40,97,114,103,115,44,32,112,97,114,116,105,97,108,115,44,32,104,111,108,100,101,114,115,44,32,105,115,67,117,114,114,105,101,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,114,103,115,73,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,97,114,103,115,76,101,110,103,116,104,32,61,32,97,114,103,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,104,111,108,100,101,114,115,76,101,110,103,116,104,32,61,32,104,111,108,100,101,114,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,102,116,73,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,102,116,76,101,110,103,116,104,32,61,32,112,97,114,116,105,97,108,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,97,110,103,101,76,101,110,103,116,104,32,61,32,110,97,116,105,118,101,77,97,120,40,97,114,103,115,76,101,110,103,116,104,32,45,32,104,111,108,100,101,114,115,76,101,110,103,116,104,44,32,48,41,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,65,114,114,97,121,40,108,101,102,116,76,101,110,103,116,104,32,43,32,114,97,110,103,101,76,101,110,103,116,104,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,85,110,99,117,114,114,105,101,100,32,61,32,33,105,115,67,117,114,114,105,101,100,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,108,101,102,116,73,110,100,101,120,32,60,32,108,101,102,116,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,108,101,102,116,73,110,100,101,120,93,32,61,32,112,97,114,116,105,97,108,115,91,108,101,102,116,73,110,100,101,120,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,97,114,103,115,73,110,100,101,120,32,60,32,104,111,108,100,101,114,115,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,85,110,99,117,114,114,105,101,100,32,124,124,32,97,114,103,115,73,110,100,101,120,32,60,32,97,114,103,115,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,104,111,108,100,101,114,115,91,97,114,103,115,73,110,100,101,120,93,93,32,61,32,97,114,103,115,91,97,114,103,115,73,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,114,97,110,103,101,76,101,110,103,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,108,101,102,116,73,110,100,101,120,43,43,93,32,61,32,97,114,103,115,91,97,114,103,115,73,110,100,101,120,43,43,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,105,115,32,108,105,107,101,32,96,99,111,109,112,111,115,101,65,114,103,115,96,32,101,120,99,101,112,116,32,116,104,97,116,32,116,104,101,32,97,114,103,117,109,101,110,116,115,32,99,111,109,112,111,115,105,116,105,111,110,92,110,32,32,32,32,32,42,32,105,115,32,116,97,105,108,111,114,101,100,32,102,111,114,32,96,95,46,112,97,114,116,105,97,108,82,105,103,104,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,103,115,32,84,104,101,32,112,114,111,118,105,100,101,100,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,112,97,114,116,105,97,108,115,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,97,112,112,101,110,100,32,116,111,32,116,104,111,115,101,32,112,114,111,118,105,100,101,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,104,111,108,100,101,114,115,32,84,104,101,32,96,112,97,114,116,105,97,108,115,96,32,112,108,97,99,101,104,111,108,100,101,114,32,105,110,100,101,120,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,115,32,123,98,111,111,108,101,97,110,125,32,91,105,115,67,117,114,114,105,101,100,93,32,83,112,101,99,105,102,121,32,99,111,109,112,111,115,105,110,103,32,102,111,114,32,97,32,99,117,114,114,105,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,99,111,109,112,111,115,101,100,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,109,112,111,115,101,65,114,103,115,82,105,103,104,116,40,97,114,103,115,44,32,112,97,114,116,105,97,108,115,44,32,104,111,108,100,101,114,115,44,32,105,115,67,117,114,114,105,101,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,114,103,115,73,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,97,114,103,115,76,101,110,103,116,104,32,61,32,97,114,103,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,104,111,108,100,101,114,115,73,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,104,111,108,100,101,114,115,76,101,110,103,116,104,32,61,32,104,111,108,100,101,114,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,105,103,104,116,73,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,114,105,103,104,116,76,101,110,103,116,104,32,61,32,112,97,114,116,105,97,108,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,97,110,103,101,76,101,110,103,116,104,32,61,32,110,97,116,105,118,101,77,97,120,40,97,114,103,115,76,101,110,103,116,104,32,45,32,104,111,108,100,101,114,115,76,101,110,103,116,104,44,32,48,41,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,65,114,114,97,121,40,114,97,110,103,101,76,101,110,103,116,104,32,43,32,114,105,103,104,116,76,101,110,103,116,104,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,85,110,99,117,114,114,105,101,100,32,61,32,33,105,115,67,117,114,114,105,101,100,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,97,114,103,115,73,110,100,101,120,32,60,32,114,97,110,103,101,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,97,114,103,115,73,110,100,101,120,93,32,61,32,97,114,103,115,91,97,114,103,115,73,110,100,101,120,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,111,102,102,115,101,116,32,61,32,97,114,103,115,73,110,100,101,120,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,114,105,103,104,116,73,110,100,101,120,32,60,32,114,105,103,104,116,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,111,102,102,115,101,116,32,43,32,114,105,103,104,116,73,110,100,101,120,93,32,61,32,112,97,114,116,105,97,108,115,91,114,105,103,104,116,73,110,100,101,120,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,104,111,108,100,101,114,115,73,110,100,101,120,32,60,32,104,111,108,100,101,114,115,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,85,110,99,117,114,114,105,101,100,32,124,124,32,97,114,103,115,73,110,100,101,120,32,60,32,97,114,103,115,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,111,102,102,115,101,116,32,43,32,104,111,108,100,101,114,115,91,104,111,108,100,101,114,115,73,110,100,101,120,93,93,32,61,32,97,114,103,115,91,97,114,103,115,73,110,100,101,120,43,43,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,112,105,101,115,32,116,104,101,32,118,97,108,117,101,115,32,111,102,32,96,115,111,117,114,99,101,96,32,116,111,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,115,111,117,114,99,101,32,84,104,101,32,97,114,114,97,121,32,116,111,32,99,111,112,121,32,118,97,108,117,101,115,32,102,114,111,109,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,97,114,114,97,121,61,91,93,93,32,84,104,101,32,97,114,114,97,121,32,116,111,32,99,111,112,121,32,118,97,108,117,101,115,32,116,111,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,112,121,65,114,114,97,121,40,115,111,117,114,99,101,44,32,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,115,111,117,114,99,101,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,97,114,114,97,121,32,124,124,32,40,97,114,114,97,121,32,61,32,65,114,114,97,121,40,108,101,110,103,116,104,41,41,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,97,114,114,97,121,91,105,110,100,101,120,93,32,61,32,115,111,117,114,99,101,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,112,105,101,115,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,96,115,111,117,114,99,101,96,32,116,111,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,99,111,112,121,32,112,114,111,112,101,114,116,105,101,115,32,102,114,111,109,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,112,114,111,112,115,32,84,104,101,32,112,114,111,112,101,114,116,121,32,105,100,101,110,116,105,102,105,101,114,115,32,116,111,32,99,111,112,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,98,106,101,99,116,61,123,125,93,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,99,111,112,121,32,112,114,111,112,101,114,116,105,101,115,32,116,111,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,99,111,112,105,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,112,121,79,98,106,101,99,116,40,115,111,117,114,99,101,44,32,112,114,111,112,115,44,32,111,98,106,101,99,116,44,32,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,78,101,119,32,61,32,33,111,98,106,101,99,116,59,92,110,32,32,32,32,32,32,111,98,106,101,99,116,32,124,124,32,40,111,98,106,101,99,116,32,61,32,123,125,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,112,114,111,112,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,112,114,111,112,115,91,105,110,100,101,120,93,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,86,97,108,117,101,32,61,32,99,117,115,116,111,109,105,122,101,114,92,110,32,32,32,32,32,32,32,32,32,32,63,32,99,117,115,116,111,109,105,122,101,114,40,111,98,106,101,99,116,91,107,101,121,93,44,32,115,111,117,114,99,101,91,107,101,121,93,44,32,107,101,121,44,32,111,98,106,101,99,116,44,32,115,111,117,114,99,101,41,92,110,32,32,32,32,32,32,32,32,32,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,110,101,119,86,97,108,117,101,32,61,32,115,111,117,114,99,101,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,101,119,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,98,97,115,101,65,115,115,105,103,110,86,97,108,117,101,40,111,98,106,101,99,116,44,32,107,101,121,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,115,115,105,103,110,86,97,108,117,101,40,111,98,106,101,99,116,44,32,107,101,121,44,32,110,101,119,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,112,105,101,115,32,111,119,110,32,115,121,109,98,111,108,115,32,111,102,32,96,115,111,117,114,99,101,96,32,116,111,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,99,111,112,121,32,115,121,109,98,111,108,115,32,102,114,111,109,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,98,106,101,99,116,61,123,125,93,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,99,111,112,121,32,115,121,109,98,111,108,115,32,116,111,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,112,121,83,121,109,98,111,108,115,40,115,111,117,114,99,101,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,112,121,79,98,106,101,99,116,40,115,111,117,114,99,101,44,32,103,101,116,83,121,109,98,111,108,115,40,115,111,117,114,99,101,41,44,32,111,98,106,101,99,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,112,105,101,115,32,111,119,110,32,97,110,100,32,105,110,104,101,114,105,116,101,100,32,115,121,109,98,111,108,115,32,111,102,32,96,115,111,117,114,99,101,96,32,116,111,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,99,111,112,121,32,115,121,109,98,111,108,115,32,102,114,111,109,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,98,106,101,99,116,61,123,125,93,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,99,111,112,121,32,115,121,109,98,111,108,115,32,116,111,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,112,121,83,121,109,98,111,108,115,73,110,40,115,111,117,114,99,101,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,112,121,79,98,106,101,99,116,40,115,111,117,114,99,101,44,32,103,101,116,83,121,109,98,111,108,115,73,110,40,115,111,117,114,99,101,41,44,32,111,98,106,101,99,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,108,105,107,101,32,96,95,46,103,114,111,117,112,66,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,115,101,116,116,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,115,101,116,32,97,99,99,117,109,117,108,97,116,111,114,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,110,105,116,105,97,108,105,122,101,114,93,32,84,104,101,32,97,99,99,117,109,117,108,97,116,111,114,32,111,98,106,101,99,116,32,105,110,105,116,105,97,108,105,122,101,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,103,103,114,101,103,97,116,111,114,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,65,103,103,114,101,103,97,116,111,114,40,115,101,116,116,101,114,44,32,105,110,105,116,105,97,108,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,105,115,65,114,114,97,121,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,97,114,114,97,121,65,103,103,114,101,103,97,116,111,114,32,58,32,98,97,115,101,65,103,103,114,101,103,97,116,111,114,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,99,99,117,109,117,108,97,116,111,114,32,61,32,105,110,105,116,105,97,108,105,122,101,114,32,63,32,105,110,105,116,105,97,108,105,122,101,114,40,41,32,58,32,123,125,59,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,99,111,108,108,101,99,116,105,111,110,44,32,115,101,116,116,101,114,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,50,41,44,32,97,99,99,117,109,117,108,97,116,111,114,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,108,105,107,101,32,96,95,46,97,115,115,105,103,110,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,97,115,115,105,103,110,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,97,115,115,105,103,110,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,115,115,105,103,110,101,114,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,65,115,115,105,103,110,101,114,40,97,115,115,105,103,110,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,115,111,117,114,99,101,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,117,115,116,111,109,105,122,101,114,32,61,32,108,101,110,103,116,104,32,62,32,49,32,63,32,115,111,117,114,99,101,115,91,108,101,110,103,116,104,32,45,32,49,93,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,103,117,97,114,100,32,61,32,108,101,110,103,116,104,32,62,32,50,32,63,32,115,111,117,114,99,101,115,91,50,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,32,32,32,32,99,117,115,116,111,109,105,122,101,114,32,61,32,40,97,115,115,105,103,110,101,114,46,108,101,110,103,116,104,32,62,32,51,32,38,38,32,116,121,112,101,111,102,32,99,117,115,116,111,109,105,122,101,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,41,92,110,32,32,32,32,32,32,32,32,32,32,63,32,40,108,101,110,103,116,104,45,45,44,32,99,117,115,116,111,109,105,122,101,114,41,92,110,32,32,32,32,32,32,32,32,32,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,103,117,97,114,100,32,38,38,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,115,111,117,114,99,101,115,91,48,93,44,32,115,111,117,114,99,101,115,91,49,93,44,32,103,117,97,114,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,117,115,116,111,109,105,122,101,114,32,61,32,108,101,110,103,116,104,32,60,32,51,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,99,117,115,116,111,109,105,122,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,32,61,32,79,98,106,101,99,116,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,111,117,114,99,101,32,61,32,115,111,117,114,99,101,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,115,115,105,103,110,101,114,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,105,110,100,101,120,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,96,98,97,115,101,69,97,99,104,96,32,111,114,32,96,98,97,115,101,69,97,99,104,82,105,103,104,116,96,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,101,97,99,104,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,32,97,32,99,111,108,108,101,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,102,114,111,109,82,105,103,104,116,93,32,83,112,101,99,105,102,121,32,105,116,101,114,97,116,105,110,103,32,102,114,111,109,32,114,105,103,104,116,32,116,111,32,108,101,102,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,98,97,115,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,66,97,115,101,69,97,99,104,40,101,97,99,104,70,117,110,99,44,32,102,114,111,109,82,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,111,108,108,101,99,116,105,111,110,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,108,108,101,99,116,105,111,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,65,114,114,97,121,76,105,107,101,40,99,111,108,108,101,99,116,105,111,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,97,99,104,70,117,110,99,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,99,111,108,108,101,99,116,105,111,110,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,102,114,111,109,82,105,103,104,116,32,63,32,108,101,110,103,116,104,32,58,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,116,101,114,97,98,108,101,32,61,32,79,98,106,101,99,116,40,99,111,108,108,101,99,116,105,111,110,41,59,92,110,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,40,102,114,111,109,82,105,103,104,116,32,63,32,105,110,100,101,120,45,45,32,58,32,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,116,101,114,97,116,101,101,40,105,116,101,114,97,98,108,101,91,105,110,100,101,120,93,44,32,105,110,100,101,120,44,32,105,116,101,114,97,98,108,101,41,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,108,108,101,99,116,105,111,110,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,98,97,115,101,32,102,117,110,99,116,105,111,110,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,102,111,114,73,110,96,32,97,110,100,32,96,95,46,102,111,114,79,119,110,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,102,114,111,109,82,105,103,104,116,93,32,83,112,101,99,105,102,121,32,105,116,101,114,97,116,105,110,103,32,102,114,111,109,32,114,105,103,104,116,32,116,111,32,108,101,102,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,98,97,115,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,66,97,115,101,70,111,114,40,102,114,111,109,82,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,105,116,101,114,97,116,101,101,44,32,107,101,121,115,70,117,110,99,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,116,101,114,97,98,108,101,32,61,32,79,98,106,101,99,116,40,111,98,106,101,99,116,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,32,61,32,107,101,121,115,70,117,110,99,40,111,98,106,101,99,116,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,112,114,111,112,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,112,114,111,112,115,91,102,114,111,109,82,105,103,104,116,32,63,32,108,101,110,103,116,104,32,58,32,43,43,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,116,101,114,97,116,101,101,40,105,116,101,114,97,98,108,101,91,107,101,121,93,44,32,107,101,121,44,32,105,116,101,114,97,98,108,101,41,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,119,114,97,112,115,32,96,102,117,110,99,96,32,116,111,32,105,110,118,111,107,101,32,105,116,32,119,105,116,104,32,116,104,101,32,111,112,116,105,111,110,97,108,32,96,116,104,105,115,96,92,110,32,32,32,32,32,42,32,98,105,110,100,105,110,103,32,111,102,32,96,116,104,105,115,65,114,103,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,119,114,97,112,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,98,105,116,109,97,115,107,32,84,104,101,32,98,105,116,109,97,115,107,32,102,108,97,103,115,46,32,83,101,101,32,96,99,114,101,97,116,101,87,114,97,112,96,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,91,116,104,105,115,65,114,103,93,32,84,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,119,114,97,112,112,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,66,105,110,100,40,102,117,110,99,44,32,98,105,116,109,97,115,107,44,32,116,104,105,115,65,114,103,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,66,105,110,100,32,61,32,98,105,116,109,97,115,107,32,38,32,87,82,65,80,95,66,73,78,68,95,70,76,65,71,44,92,110,32,32,32,32,32,32,32,32,32,32,67,116,111,114,32,61,32,99,114,101,97,116,101,67,116,111,114,40,102,117,110,99,41,59,92,110,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,110,32,61,32,40,116,104,105,115,32,38,38,32,116,104,105,115,32,33,61,61,32,114,111,111,116,32,38,38,32,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,119,114,97,112,112,101,114,41,32,63,32,67,116,111,114,32,58,32,102,117,110,99,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,46,97,112,112,108,121,40,105,115,66,105,110,100,32,63,32,116,104,105,115,65,114,103,32,58,32,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,119,114,97,112,112,101,114,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,108,105,107,101,32,96,95,46,108,111,119,101,114,70,105,114,115,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,109,101,116,104,111,100,78,97,109,101,32,84,104,101,32,110,97,109,101,32,111,102,32,116,104,101,32,96,83,116,114,105,110,103,96,32,99,97,115,101,32,109,101,116,104,111,100,32,116,111,32,117,115,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,99,97,115,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,97,115,101,70,105,114,115,116,40,109,101,116,104,111,100,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,116,114,83,121,109,98,111,108,115,32,61,32,104,97,115,85,110,105,99,111,100,101,40,115,116,114,105,110,103,41,92,110,32,32,32,32,32,32,32,32,32,32,63,32,115,116,114,105,110,103,84,111,65,114,114,97,121,40,115,116,114,105,110,103,41,92,110,32,32,32,32,32,32,32,32,32,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,104,114,32,61,32,115,116,114,83,121,109,98,111,108,115,92,110,32,32,32,32,32,32,32,32,32,32,63,32,115,116,114,83,121,109,98,111,108,115,91,48,93,92,110,32,32,32,32,32,32,32,32,32,32,58,32,115,116,114,105,110,103,46,99,104,97,114,65,116,40,48,41,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,114,97,105,108,105,110,103,32,61,32,115,116,114,83,121,109,98,111,108,115,92,110,32,32,32,32,32,32,32,32,32,32,63,32,99,97,115,116,83,108,105,99,101,40,115,116,114,83,121,109,98,111,108,115,44,32,49,41,46,106,111,105,110,40,39,39,41,92,110,32,32,32,32,32,32,32,32,32,32,58,32,115,116,114,105,110,103,46,115,108,105,99,101,40,49,41,59,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,104,114,91,109,101,116,104,111,100,78,97,109,101,93,40,41,32,43,32,116,114,97,105,108,105,110,103,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,108,105,107,101,32,96,95,46,99,97,109,101,108,67,97,115,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,99,97,108,108,98,97,99,107,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,111,109,98,105,110,101,32,101,97,99,104,32,119,111,114,100,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,99,111,109,112,111,117,110,100,101,114,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,111,109,112,111,117,110,100,101,114,40,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,82,101,100,117,99,101,40,119,111,114,100,115,40,100,101,98,117,114,114,40,115,116,114,105,110,103,41,46,114,101,112,108,97,99,101,40,114,101,65,112,111,115,44,32,39,39,41,41,44,32,99,97,108,108,98,97,99,107,44,32,39,39,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,112,114,111,100,117,99,101,115,32,97,110,32,105,110,115,116,97,110,99,101,32,111,102,32,96,67,116,111,114,96,32,114,101,103,97,114,100,108,101,115,115,32,111,102,92,110,32,32,32,32,32,42,32,119,104,101,116,104,101,114,32,105,116,32,119,97,115,32,105,110,118,111,107,101,100,32,97,115,32,112,97,114,116,32,111,102,32,97,32,96,110,101,119,96,32,101,120,112,114,101,115,115,105,111,110,32,111,114,32,98,121,32,96,99,97,108,108,96,32,111,114,32,96,97,112,112,108,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,67,116,111,114,32,84,104,101,32,99,111,110,115,116,114,117,99,116,111,114,32,116,111,32,119,114,97,112,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,119,114,97,112,112,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,116,111,114,40,67,116,111,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,85,115,101,32,97,32,96,115,119,105,116,99,104,96,32,115,116,97,116,101,109,101,110,116,32,116,111,32,119,111,114,107,32,119,105,116,104,32,99,108,97,115,115,32,99,111,110,115,116,114,117,99,116,111,114,115,46,32,83,101,101,92,110,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,101,99,109,97,115,99,114,105,112,116,45,102,117,110,99,116,105,111,110,45,111,98,106,101,99,116,115,45,99,97,108,108,45,116,104,105,115,97,114,103,117,109,101,110,116,45,97,114,103,117,109,101,110,116,115,108,105,115,116,92,110,32,32,32,32,32,32,32,32,47,47,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,59,92,110,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,97,114,103,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,48,58,32,114,101,116,117,114,110,32,110,101,119,32,67,116,111,114,59,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,49,58,32,114,101,116,117,114,110,32,110,101,119,32,67,116,111,114,40,97,114,103,115,91,48,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,50,58,32,114,101,116,117,114,110,32,110,101,119,32,67,116,111,114,40,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,51,58,32,114,101,116,117,114,110,32,110,101,119,32,67,116,111,114,40,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,44,32,97,114,103,115,91,50,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,52,58,32,114,101,116,117,114,110,32,110,101,119,32,67,116,111,114,40,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,44,32,97,114,103,115,91,50,93,44,32,97,114,103,115,91,51,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,53,58,32,114,101,116,117,114,110,32,110,101,119,32,67,116,111,114,40,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,44,32,97,114,103,115,91,50,93,44,32,97,114,103,115,91,51,93,44,32,97,114,103,115,91,52,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,54,58,32,114,101,116,117,114,110,32,110,101,119,32,67,116,111,114,40,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,44,32,97,114,103,115,91,50,93,44,32,97,114,103,115,91,51,93,44,32,97,114,103,115,91,52,93,44,32,97,114,103,115,91,53,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,55,58,32,114,101,116,117,114,110,32,110,101,119,32,67,116,111,114,40,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,44,32,97,114,103,115,91,50,93,44,32,97,114,103,115,91,51,93,44,32,97,114,103,115,91,52,93,44,32,97,114,103,115,91,53,93,44,32,97,114,103,115,91,54,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,104,105,115,66,105,110,100,105,110,103,32,61,32,98,97,115,101,67,114,101,97,116,101,40,67,116,111,114,46,112,114,111,116,111,116,121,112,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,67,116,111,114,46,97,112,112,108,121,40,116,104,105,115,66,105,110,100,105,110,103,44,32,97,114,103,115,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,77,105,109,105,99,32,116,104,101,32,99,111,110,115,116,114,117,99,116,111,114,39,115,32,96,114,101,116,117,114,110,96,32,98,101,104,97,118,105,111,114,46,92,110,32,32,32,32,32,32,32,32,47,47,32,83,101,101,32,104,116,116,112,115,58,47,47,101,115,53,46,103,105,116,104,117,98,46,105,111,47,35,120,49,51,46,50,46,50,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,40,114,101,115,117,108,116,41,32,63,32,114,101,115,117,108,116,32,58,32,116,104,105,115,66,105,110,100,105,110,103,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,119,114,97,112,115,32,96,102,117,110,99,96,32,116,111,32,101,110,97,98,108,101,32,99,117,114,114,121,105,110,103,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,119,114,97,112,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,98,105,116,109,97,115,107,32,84,104,101,32,98,105,116,109,97,115,107,32,102,108,97,103,115,46,32,83,101,101,32,96,99,114,101,97,116,101,87,114,97,112,96,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,97,114,105,116,121,32,84,104,101,32,97,114,105,116,121,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,119,114,97,112,112,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,117,114,114,121,40,102,117,110,99,44,32,98,105,116,109,97,115,107,44,32,97,114,105,116,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,67,116,111,114,32,61,32,99,114,101,97,116,101,67,116,111,114,40,102,117,110,99,41,59,92,110,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,114,103,115,32,61,32,65,114,114,97,121,40,108,101,110,103,116,104,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,32,61,32,103,101,116,72,111,108,100,101,114,40,119,114,97,112,112,101,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,105,110,100,101,120,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,103,115,91,105,110,100,101,120,93,32,61,32,97,114,103,117,109,101,110,116,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,104,111,108,100,101,114,115,32,61,32,40,108,101,110,103,116,104,32,60,32,51,32,38,38,32,97,114,103,115,91,48,93,32,33,61,61,32,112,108,97,99,101,104,111,108,100,101,114,32,38,38,32,97,114,103,115,91,108,101,110,103,116,104,32,45,32,49,93,32,33,61,61,32,112,108,97,99,101,104,111,108,100,101,114,41,92,110,32,32,32,32,32,32,32,32,32,32,63,32,91,93,92,110,32,32,32,32,32,32,32,32,32,32,58,32,114,101,112,108,97,99,101,72,111,108,100,101,114,115,40,97,114,103,115,44,32,112,108,97,99,101,104,111,108,100,101,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,45,61,32,104,111,108,100,101,114,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,101,110,103,116,104,32,60,32,97,114,105,116,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,82,101,99,117,114,114,121,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,44,32,98,105,116,109,97,115,107,44,32,99,114,101,97,116,101,72,121,98,114,105,100,44,32,119,114,97,112,112,101,114,46,112,108,97,99,101,104,111,108,100,101,114,44,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,114,103,115,44,32,104,111,108,100,101,114,115,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,97,114,105,116,121,32,45,32,108,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,110,32,61,32,40,116,104,105,115,32,38,38,32,116,104,105,115,32,33,61,61,32,114,111,111,116,32,38,38,32,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,119,114,97,112,112,101,114,41,32,63,32,67,116,111,114,32,58,32,102,117,110,99,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,112,112,108,121,40,102,110,44,32,116,104,105,115,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,119,114,97,112,112,101,114,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,96,95,46,102,105,110,100,96,32,111,114,32,96,95,46,102,105,110,100,76,97,115,116,96,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,105,110,100,73,110,100,101,120,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,102,105,110,100,32,116,104,101,32,99,111,108,108,101,99,116,105,111,110,32,105,110,100,101,120,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,105,110,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,70,105,110,100,40,102,105,110,100,73,110,100,101,120,70,117,110,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,99,111,108,108,101,99,116,105,111,110,44,32,112,114,101,100,105,99,97,116,101,44,32,102,114,111,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,114,97,98,108,101,32,61,32,79,98,106,101,99,116,40,99,111,108,108,101,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,65,114,114,97,121,76,105,107,101,40,99,111,108,108,101,99,116,105,111,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,116,101,114,97,116,101,101,32,61,32,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,44,32,51,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,108,108,101,99,116,105,111,110,32,61,32,107,101,121,115,40,99,111,108,108,101,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,112,114,101,100,105,99,97,116,101,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,105,116,101,114,97,116,101,101,40,105,116,101,114,97,98,108,101,91,107,101,121,93,44,32,107,101,121,44,32,105,116,101,114,97,98,108,101,41,59,32,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,102,105,110,100,73,110,100,101,120,70,117,110,99,40,99,111,108,108,101,99,116,105,111,110,44,32,112,114,101,100,105,99,97,116,101,44,32,102,114,111,109,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,32,62,32,45,49,32,63,32,105,116,101,114,97,98,108,101,91,105,116,101,114,97,116,101,101,32,63,32,99,111,108,108,101,99,116,105,111,110,91,105,110,100,101,120,93,32,58,32,105,110,100,101,120,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,96,95,46,102,108,111,119,96,32,111,114,32,96,95,46,102,108,111,119,82,105,103,104,116,96,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,102,114,111,109,82,105,103,104,116,93,32,83,112,101,99,105,102,121,32,105,116,101,114,97,116,105,110,103,32,102,114,111,109,32,114,105,103,104,116,32,116,111,32,108,101,102,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,108,111,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,70,108,111,119,40,102,114,111,109,82,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,108,97,116,82,101,115,116,40,102,117,110,99,116,105,111,110,40,102,117,110,99,115,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,102,117,110,99,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,114,101,113,32,61,32,76,111,100,97,115,104,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,46,116,104,114,117,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,114,111,109,82,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,117,110,99,115,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,105,110,100,101,120,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,102,117,110,99,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,102,117,110,99,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,70,85,78,67,95,69,82,82,79,82,95,84,69,88,84,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,101,114,101,113,32,38,38,32,33,119,114,97,112,112,101,114,32,38,38,32,103,101,116,70,117,110,99,78,97,109,101,40,102,117,110,99,41,32,61,61,32,39,119,114,97,112,112,101,114,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,119,114,97,112,112,101,114,32,61,32,110,101,119,32,76,111,100,97,115,104,87,114,97,112,112,101,114,40,91,93,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,119,114,97,112,112,101,114,32,63,32,105,110,100,101,120,32,58,32,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,117,110,99,32,61,32,102,117,110,99,115,91,105,110,100,101,120,93,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,117,110,99,78,97,109,101,32,61,32,103,101,116,70,117,110,99,78,97,109,101,40,102,117,110,99,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,97,32,61,32,102,117,110,99,78,97,109,101,32,61,61,32,39,119,114,97,112,112,101,114,39,32,63,32,103,101,116,68,97,116,97,40,102,117,110,99,41,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,97,116,97,32,38,38,32,105,115,76,97,122,105,97,98,108,101,40,100,97,116,97,91,48,93,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,97,91,49,93,32,61,61,32,40,87,82,65,80,95,65,82,89,95,70,76,65,71,32,124,32,87,82,65,80,95,67,85,82,82,89,95,70,76,65,71,32,124,32,87,82,65,80,95,80,65,82,84,73,65,76,95,70,76,65,71,32,124,32,87,82,65,80,95,82,69,65,82,71,95,70,76,65,71,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,33,100,97,116,97,91,52,93,46,108,101,110,103,116,104,32,38,38,32,100,97,116,97,91,57,93,32,61,61,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,114,97,112,112,101,114,32,61,32,119,114,97,112,112,101,114,91,103,101,116,70,117,110,99,78,97,109,101,40,100,97,116,97,91,48,93,41,93,46,97,112,112,108,121,40,119,114,97,112,112,101,114,44,32,100,97,116,97,91,51,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,114,97,112,112,101,114,32,61,32,40,102,117,110,99,46,108,101,110,103,116,104,32,61,61,32,49,32,38,38,32,105,115,76,97,122,105,97,98,108,101,40,102,117,110,99,41,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,119,114,97,112,112,101,114,91,102,117,110,99,78,97,109,101,93,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,119,114,97,112,112,101,114,46,116,104,114,117,40,102,117,110,99,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,97,114,103,115,91,48,93,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,119,114,97,112,112,101,114,32,38,38,32,97,114,103,115,46,108,101,110,103,116,104,32,61,61,32,49,32,38,38,32,105,115,65,114,114,97,121,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,119,114,97,112,112,101,114,46,112,108,97,110,116,40,118,97,108,117,101,41,46,118,97,108,117,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,108,101,110,103,116,104,32,63,32,102,117,110,99,115,91,105,110,100,101,120,93,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,32,58,32,118,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,102,117,110,99,115,91,105,110,100,101,120,93,46,99,97,108,108,40,116,104,105,115,44,32,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,119,114,97,112,115,32,96,102,117,110,99,96,32,116,111,32,105,110,118,111,107,101,32,105,116,32,119,105,116,104,32,111,112,116,105,111,110,97,108,32,96,116,104,105,115,96,92,110,32,32,32,32,32,42,32,98,105,110,100,105,110,103,32,111,102,32,96,116,104,105,115,65,114,103,96,44,32,112,97,114,116,105,97,108,32,97,112,112,108,105,99,97,116,105,111,110,44,32,97,110,100,32,99,117,114,114,121,105,110,103,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,124,115,116,114,105,110,103,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,111,114,32,109,101,116,104,111,100,32,110,97,109,101,32,116,111,32,119,114,97,112,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,98,105,116,109,97,115,107,32,84,104,101,32,98,105,116,109,97,115,107,32,102,108,97,103,115,46,32,83,101,101,32,96,99,114,101,97,116,101,87,114,97,112,96,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,91,116,104,105,115,65,114,103,93,32,84,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,112,97,114,116,105,97,108,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,112,114,101,112,101,110,100,32,116,111,32,116,104,111,115,101,32,112,114,111,118,105,100,101,100,32,116,111,92,110,32,32,32,32,32,42,32,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,104,111,108,100,101,114,115,93,32,84,104,101,32,96,112,97,114,116,105,97,108,115,96,32,112,108,97,99,101,104,111,108,100,101,114,32,105,110,100,101,120,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,112,97,114,116,105,97,108,115,82,105,103,104,116,93,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,97,112,112,101,110,100,32,116,111,32,116,104,111,115,101,32,112,114,111,118,105,100,101,100,92,110,32,32,32,32,32,42,32,32,116,111,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,104,111,108,100,101,114,115,82,105,103,104,116,93,32,84,104,101,32,96,112,97,114,116,105,97,108,115,82,105,103,104,116,96,32,112,108,97,99,101,104,111,108,100,101,114,32,105,110,100,101,120,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,97,114,103,80,111,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,32,112,111,115,105,116,105,111,110,115,32,111,102,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,97,114,121,93,32,84,104,101,32,97,114,105,116,121,32,99,97,112,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,97,114,105,116,121,93,32,84,104,101,32,97,114,105,116,121,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,119,114,97,112,112,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,72,121,98,114,105,100,40,102,117,110,99,44,32,98,105,116,109,97,115,107,44,32,116,104,105,115,65,114,103,44,32,112,97,114,116,105,97,108,115,44,32,104,111,108,100,101,114,115,44,32,112,97,114,116,105,97,108,115,82,105,103,104,116,44,32,104,111,108,100,101,114,115,82,105,103,104,116,44,32,97,114,103,80,111,115,44,32,97,114,121,44,32,97,114,105,116,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,65,114,121,32,61,32,98,105,116,109,97,115,107,32,38,32,87,82,65,80,95,65,82,89,95,70,76,65,71,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,66,105,110,100,32,61,32,98,105,116,109,97,115,107,32,38,32,87,82,65,80,95,66,73,78,68,95,70,76,65,71,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,66,105,110,100,75,101,121,32,61,32,98,105,116,109,97,115,107,32,38,32,87,82,65,80,95,66,73,78,68,95,75,69,89,95,70,76,65,71,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,67,117,114,114,105,101,100,32,61,32,98,105,116,109,97,115,107,32,38,32,40,87,82,65,80,95,67,85,82,82,89,95,70,76,65,71,32,124,32,87,82,65,80,95,67,85,82,82,89,95,82,73,71,72,84,95,70,76,65,71,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,70,108,105,112,32,61,32,98,105,116,109,97,115,107,32,38,32,87,82,65,80,95,70,76,73,80,95,70,76,65,71,44,92,110,32,32,32,32,32,32,32,32,32,32,67,116,111,114,32,61,32,105,115,66,105,110,100,75,101,121,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,99,114,101,97,116,101,67,116,111,114,40,102,117,110,99,41,59,92,110,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,114,103,115,32,61,32,65,114,114,97,121,40,108,101,110,103,116,104,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,105,110,100,101,120,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,103,115,91,105,110,100,101,120,93,32,61,32,97,114,103,117,109,101,110,116,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,67,117,114,114,105,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,108,97,99,101,104,111,108,100,101,114,32,61,32,103,101,116,72,111,108,100,101,114,40,119,114,97,112,112,101,114,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,111,108,100,101,114,115,67,111,117,110,116,32,61,32,99,111,117,110,116,72,111,108,100,101,114,115,40,97,114,103,115,44,32,112,108,97,99,101,104,111,108,100,101,114,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,97,114,116,105,97,108,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,103,115,32,61,32,99,111,109,112,111,115,101,65,114,103,115,40,97,114,103,115,44,32,112,97,114,116,105,97,108,115,44,32,104,111,108,100,101,114,115,44,32,105,115,67,117,114,114,105,101,100,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,97,114,116,105,97,108,115,82,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,103,115,32,61,32,99,111,109,112,111,115,101,65,114,103,115,82,105,103,104,116,40,97,114,103,115,44,32,112,97,114,116,105,97,108,115,82,105,103,104,116,44,32,104,111,108,100,101,114,115,82,105,103,104,116,44,32,105,115,67,117,114,114,105,101,100,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,45,61,32,104,111,108,100,101,114,115,67,111,117,110,116,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,67,117,114,114,105,101,100,32,38,38,32,108,101,110,103,116,104,32,60,32,97,114,105,116,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,72,111,108,100,101,114,115,32,61,32,114,101,112,108,97,99,101,72,111,108,100,101,114,115,40,97,114,103,115,44,32,112,108,97,99,101,104,111,108,100,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,82,101,99,117,114,114,121,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,44,32,98,105,116,109,97,115,107,44,32,99,114,101,97,116,101,72,121,98,114,105,100,44,32,119,114,97,112,112,101,114,46,112,108,97,99,101,104,111,108,100,101,114,44,32,116,104,105,115,65,114,103,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,114,103,115,44,32,110,101,119,72,111,108,100,101,114,115,44,32,97,114,103,80,111,115,44,32,97,114,121,44,32,97,114,105,116,121,32,45,32,108,101,110,103,116,104,92,110,32,32,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,104,105,115,66,105,110,100,105,110,103,32,61,32,105,115,66,105,110,100,32,63,32,116,104,105,115,65,114,103,32,58,32,116,104,105,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,110,32,61,32,105,115,66,105,110,100,75,101,121,32,63,32,116,104,105,115,66,105,110,100,105,110,103,91,102,117,110,99,93,32,58,32,102,117,110,99,59,92,110,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,103,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,97,114,103,80,111,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,103,115,32,61,32,114,101,111,114,100,101,114,40,97,114,103,115,44,32,97,114,103,80,111,115,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,70,108,105,112,32,38,38,32,108,101,110,103,116,104,32,62,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,103,115,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,65,114,121,32,38,38,32,97,114,121,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,103,115,46,108,101,110,103,116,104,32,61,32,97,114,121,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,32,38,38,32,116,104,105,115,32,33,61,61,32,114,111,111,116,32,38,38,32,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,119,114,97,112,112,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,110,32,61,32,67,116,111,114,32,124,124,32,99,114,101,97,116,101,67,116,111,114,40,102,110,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,46,97,112,112,108,121,40,116,104,105,115,66,105,110,100,105,110,103,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,119,114,97,112,112,101,114,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,108,105,107,101,32,96,95,46,105,110,118,101,114,116,66,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,115,101,116,116,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,115,101,116,32,97,99,99,117,109,117,108,97,116,111,114,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,116,111,73,116,101,114,97,116,101,101,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,114,101,115,111,108,118,101,32,105,116,101,114,97,116,101,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,105,110,118,101,114,116,101,114,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,73,110,118,101,114,116,101,114,40,115,101,116,116,101,114,44,32,116,111,73,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,73,110,118,101,114,116,101,114,40,111,98,106,101,99,116,44,32,115,101,116,116,101,114,44,32,116,111,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,41,44,32,123,125,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,112,101,114,102,111,114,109,115,32,97,32,109,97,116,104,101,109,97,116,105,99,97,108,32,111,112,101,114,97,116,105,111,110,32,111,110,32,116,119,111,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,111,112,101,114,97,116,111,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,112,101,114,102,111,114,109,32,116,104,101,32,111,112,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,100,101,102,97,117,108,116,86,97,108,117,101,93,32,84,104,101,32,118,97,108,117,101,32,117,115,101,100,32,102,111,114,32,96,117,110,100,101,102,105,110,101,100,96,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,109,97,116,104,101,109,97,116,105,99,97,108,32,111,112,101,114,97,116,105,111,110,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,77,97,116,104,79,112,101,114,97,116,105,111,110,40,111,112,101,114,97,116,111,114,44,32,100,101,102,97,117,108,116,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,111,116,104,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,111,116,104,101,114,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,102,97,117,108,116,86,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,111,116,104,101,114,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,114,101,115,117,108,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,116,104,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,115,116,114,105,110,103,39,32,124,124,32,116,121,112,101,111,102,32,111,116,104,101,114,32,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,98,97,115,101,84,111,83,116,114,105,110,103,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,101,114,32,61,32,98,97,115,101,84,111,83,116,114,105,110,103,40,111,116,104,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,98,97,115,101,84,111,78,117,109,98,101,114,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,101,114,32,61,32,98,97,115,101,84,111,78,117,109,98,101,114,40,111,116,104,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,111,112,101,114,97,116,111,114,40,118,97,108,117,101,44,32,111,116,104,101,114,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,108,105,107,101,32,96,95,46,111,118,101,114,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,97,114,114,97,121,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,32,105,116,101,114,97,116,101,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,111,118,101,114,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,79,118,101,114,40,97,114,114,97,121,70,117,110,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,108,97,116,82,101,115,116,40,102,117,110,99,116,105,111,110,40,105,116,101,114,97,116,101,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,114,97,116,101,101,115,32,61,32,97,114,114,97,121,77,97,112,40,105,116,101,114,97,116,101,101,115,44,32,98,97,115,101,85,110,97,114,121,40,103,101,116,73,116,101,114,97,116,101,101,40,41,41,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,104,105,115,65,114,103,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,70,117,110,99,40,105,116,101,114,97,116,101,101,115,44,32,102,117,110,99,116,105,111,110,40,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,112,112,108,121,40,105,116,101,114,97,116,101,101,44,32,116,104,105,115,65,114,103,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,116,104,101,32,112,97,100,100,105,110,103,32,102,111,114,32,96,115,116,114,105,110,103,96,32,98,97,115,101,100,32,111,110,32,96,108,101,110,103,116,104,96,46,32,84,104,101,32,96,99,104,97,114,115,96,32,115,116,114,105,110,103,92,110,32,32,32,32,32,42,32,105,115,32,116,114,117,110,99,97,116,101,100,32,105,102,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,99,104,97,114,97,99,116,101,114,115,32,101,120,99,101,101,100,115,32,96,108,101,110,103,116,104,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,108,101,110,103,116,104,32,84,104,101,32,112,97,100,100,105,110,103,32,108,101,110,103,116,104,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,99,104,97,114,115,61,39,32,39,93,32,84,104,101,32,115,116,114,105,110,103,32,117,115,101,100,32,97,115,32,112,97,100,100,105,110,103,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,112,97,100,100,105,110,103,32,102,111,114,32,96,115,116,114,105,110,103,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,80,97,100,100,105,110,103,40,108,101,110,103,116,104,44,32,99,104,97,114,115,41,32,123,92,110,32,32,32,32,32,32,99,104,97,114,115,32,61,32,99,104,97,114,115,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,39,32,39,32,58,32,98,97,115,101,84,111,83,116,114,105,110,103,40,99,104,97,114,115,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,104,97,114,115,76,101,110,103,116,104,32,61,32,99,104,97,114,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,99,104,97,114,115,76,101,110,103,116,104,32,60,32,50,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,104,97,114,115,76,101,110,103,116,104,32,63,32,98,97,115,101,82,101,112,101,97,116,40,99,104,97,114,115,44,32,108,101,110,103,116,104,41,32,58,32,99,104,97,114,115,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,98,97,115,101,82,101,112,101,97,116,40,99,104,97,114,115,44,32,110,97,116,105,118,101,67,101,105,108,40,108,101,110,103,116,104,32,47,32,115,116,114,105,110,103,83,105,122,101,40,99,104,97,114,115,41,41,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,115,85,110,105,99,111,100,101,40,99,104,97,114,115,41,92,110,32,32,32,32,32,32,32,32,63,32,99,97,115,116,83,108,105,99,101,40,115,116,114,105,110,103,84,111,65,114,114,97,121,40,114,101,115,117,108,116,41,44,32,48,44,32,108,101,110,103,116,104,41,46,106,111,105,110,40,39,39,41,92,110,32,32,32,32,32,32,32,32,58,32,114,101,115,117,108,116,46,115,108,105,99,101,40,48,44,32,108,101,110,103,116,104,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,119,114,97,112,115,32,96,102,117,110,99,96,32,116,111,32,105,110,118,111,107,101,32,105,116,32,119,105,116,104,32,116,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,92,110,32,32,32,32,32,42,32,111,102,32,96,116,104,105,115,65,114,103,96,32,97,110,100,32,96,112,97,114,116,105,97,108,115,96,32,112,114,101,112,101,110,100,101,100,32,116,111,32,116,104,101,32,97,114,103,117,109,101,110,116,115,32,105,116,32,114,101,99,101,105,118,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,119,114,97,112,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,98,105,116,109,97,115,107,32,84,104,101,32,98,105,116,109,97,115,107,32,102,108,97,103,115,46,32,83,101,101,32,96,99,114,101,97,116,101,87,114,97,112,96,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,116,104,105,115,65,114,103,32,84,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,112,97,114,116,105,97,108,115,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,112,114,101,112,101,110,100,32,116,111,32,116,104,111,115,101,32,112,114,111,118,105,100,101,100,32,116,111,92,110,32,32,32,32,32,42,32,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,119,114,97,112,112,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,80,97,114,116,105,97,108,40,102,117,110,99,44,32,98,105,116,109,97,115,107,44,32,116,104,105,115,65,114,103,44,32,112,97,114,116,105,97,108,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,66,105,110,100,32,61,32,98,105,116,109,97,115,107,32,38,32,87,82,65,80,95,66,73,78,68,95,70,76,65,71,44,92,110,32,32,32,32,32,32,32,32,32,32,67,116,111,114,32,61,32,99,114,101,97,116,101,67,116,111,114,40,102,117,110,99,41,59,92,110,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,103,115,73,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,114,103,115,76,101,110,103,116,104,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,101,102,116,73,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,101,102,116,76,101,110,103,116,104,32,61,32,112,97,114,116,105,97,108,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,114,103,115,32,61,32,65,114,114,97,121,40,108,101,102,116,76,101,110,103,116,104,32,43,32,97,114,103,115,76,101,110,103,116,104,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,110,32,61,32,40,116,104,105,115,32,38,38,32,116,104,105,115,32,33,61,61,32,114,111,111,116,32,38,38,32,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,119,114,97,112,112,101,114,41,32,63,32,67,116,111,114,32,58,32,102,117,110,99,59,92,110,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,108,101,102,116,73,110,100,101,120,32,60,32,108,101,102,116,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,103,115,91,108,101,102,116,73,110,100,101,120,93,32,61,32,112,97,114,116,105,97,108,115,91,108,101,102,116,73,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,97,114,103,115,76,101,110,103,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,103,115,91,108,101,102,116,73,110,100,101,120,43,43,93,32,61,32,97,114,103,117,109,101,110,116,115,91,43,43,97,114,103,115,73,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,112,112,108,121,40,102,110,44,32,105,115,66,105,110,100,32,63,32,116,104,105,115,65,114,103,32,58,32,116,104,105,115,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,119,114,97,112,112,101,114,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,96,95,46,114,97,110,103,101,96,32,111,114,32,96,95,46,114,97,110,103,101,82,105,103,104,116,96,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,102,114,111,109,82,105,103,104,116,93,32,83,112,101,99,105,102,121,32,105,116,101,114,97,116,105,110,103,32,102,114,111,109,32,114,105,103,104,116,32,116,111,32,108,101,102,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,114,97,110,103,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,82,97,110,103,101,40,102,114,111,109,82,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,44,32,115,116,101,112,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,116,101,112,32,38,38,32,116,121,112,101,111,102,32,115,116,101,112,32,33,61,32,39,110,117,109,98,101,114,39,32,38,38,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,115,116,97,114,116,44,32,101,110,100,44,32,115,116,101,112,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,110,100,32,61,32,115,116,101,112,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,69,110,115,117,114,101,32,116,104,101,32,115,105,103,110,32,111,102,32,96,45,48,96,32,105,115,32,112,114,101,115,101,114,118,101,100,46,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,116,111,70,105,110,105,116,101,40,115,116,97,114,116,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,110,100,32,61,32,115,116,97,114,116,59,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,110,100,32,61,32,116,111,70,105,110,105,116,101,40,101,110,100,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,115,116,101,112,32,61,32,115,116,101,112,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,40,115,116,97,114,116,32,60,32,101,110,100,32,63,32,49,32,58,32,45,49,41,32,58,32,116,111,70,105,110,105,116,101,40,115,116,101,112,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,82,97,110,103,101,40,115,116,97,114,116,44,32,101,110,100,44,32,115,116,101,112,44,32,102,114,111,109,82,105,103,104,116,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,112,101,114,102,111,114,109,115,32,97,32,114,101,108,97,116,105,111,110,97,108,32,111,112,101,114,97,116,105,111,110,32,111,110,32,116,119,111,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,111,112,101,114,97,116,111,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,112,101,114,102,111,114,109,32,116,104,101,32,111,112,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,114,101,108,97,116,105,111,110,97,108,32,111,112,101,114,97,116,105,111,110,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,82,101,108,97,116,105,111,110,97,108,79,112,101,114,97,116,105,111,110,40,111,112,101,114,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,111,116,104,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,115,116,114,105,110,103,39,32,38,38,32,116,121,112,101,111,102,32,111,116,104,101,114,32,61,61,32,39,115,116,114,105,110,103,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,116,111,78,117,109,98,101,114,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,111,116,104,101,114,32,61,32,116,111,78,117,109,98,101,114,40,111,116,104,101,114,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,112,101,114,97,116,111,114,40,118,97,108,117,101,44,32,111,116,104,101,114,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,119,114,97,112,115,32,96,102,117,110,99,96,32,116,111,32,99,111,110,116,105,110,117,101,32,99,117,114,114,121,105,110,103,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,119,114,97,112,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,98,105,116,109,97,115,107,32,84,104,101,32,98,105,116,109,97,115,107,32,102,108,97,103,115,46,32,83,101,101,32,96,99,114,101,97,116,101,87,114,97,112,96,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,119,114,97,112,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,114,101,97,116,101,32,116,104,101,32,96,102,117,110,99,96,32,119,114,97,112,112,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,112,108,97,99,101,104,111,108,100,101,114,32,84,104,101,32,112,108,97,99,101,104,111,108,100,101,114,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,91,116,104,105,115,65,114,103,93,32,84,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,112,97,114,116,105,97,108,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,112,114,101,112,101,110,100,32,116,111,32,116,104,111,115,101,32,112,114,111,118,105,100,101,100,32,116,111,92,110,32,32,32,32,32,42,32,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,104,111,108,100,101,114,115,93,32,84,104,101,32,96,112,97,114,116,105,97,108,115,96,32,112,108,97,99,101,104,111,108,100,101,114,32,105,110,100,101,120,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,97,114,103,80,111,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,32,112,111,115,105,116,105,111,110,115,32,111,102,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,97,114,121,93,32,84,104,101,32,97,114,105,116,121,32,99,97,112,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,97,114,105,116,121,93,32,84,104,101,32,97,114,105,116,121,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,119,114,97,112,112,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,82,101,99,117,114,114,121,40,102,117,110,99,44,32,98,105,116,109,97,115,107,44,32,119,114,97,112,70,117,110,99,44,32,112,108,97,99,101,104,111,108,100,101,114,44,32,116,104,105,115,65,114,103,44,32,112,97,114,116,105,97,108,115,44,32,104,111,108,100,101,114,115,44,32,97,114,103,80,111,115,44,32,97,114,121,44,32,97,114,105,116,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,67,117,114,114,121,32,61,32,98,105,116,109,97,115,107,32,38,32,87,82,65,80,95,67,85,82,82,89,95,70,76,65,71,44,92,110,32,32,32,32,32,32,32,32,32,32,110,101,119,72,111,108,100,101,114,115,32,61,32,105,115,67,117,114,114,121,32,63,32,104,111,108,100,101,114,115,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,110,101,119,72,111,108,100,101,114,115,82,105,103,104,116,32,61,32,105,115,67,117,114,114,121,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,104,111,108,100,101,114,115,44,92,110,32,32,32,32,32,32,32,32,32,32,110,101,119,80,97,114,116,105,97,108,115,32,61,32,105,115,67,117,114,114,121,32,63,32,112,97,114,116,105,97,108,115,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,110,101,119,80,97,114,116,105,97,108,115,82,105,103,104,116,32,61,32,105,115,67,117,114,114,121,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,112,97,114,116,105,97,108,115,59,92,110,92,110,32,32,32,32,32,32,98,105,116,109,97,115,107,32,124,61,32,40,105,115,67,117,114,114,121,32,63,32,87,82,65,80,95,80,65,82,84,73,65,76,95,70,76,65,71,32,58,32,87,82,65,80,95,80,65,82,84,73,65,76,95,82,73,71,72,84,95,70,76,65,71,41,59,92,110,32,32,32,32,32,32,98,105,116,109,97,115,107,32,38,61,32,126,40,105,115,67,117,114,114,121,32,63,32,87,82,65,80,95,80,65,82,84,73,65,76,95,82,73,71,72,84,95,70,76,65,71,32,58,32,87,82,65,80,95,80,65,82,84,73,65,76,95,70,76,65,71,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,40,98,105,116,109,97,115,107,32,38,32,87,82,65,80,95,67,85,82,82,89,95,66,79,85,78,68,95,70,76,65,71,41,41,32,123,92,110,32,32,32,32,32,32,32,32,98,105,116,109,97,115,107,32,38,61,32,126,40,87,82,65,80,95,66,73,78,68,95,70,76,65,71,32,124,32,87,82,65,80,95,66,73,78,68,95,75,69,89,95,70,76,65,71,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,110,101,119,68,97,116,97,32,61,32,91,92,110,32,32,32,32,32,32,32,32,102,117,110,99,44,32,98,105,116,109,97,115,107,44,32,116,104,105,115,65,114,103,44,32,110,101,119,80,97,114,116,105,97,108,115,44,32,110,101,119,72,111,108,100,101,114,115,44,32,110,101,119,80,97,114,116,105,97,108,115,82,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,110,101,119,72,111,108,100,101,114,115,82,105,103,104,116,44,32,97,114,103,80,111,115,44,32,97,114,121,44,32,97,114,105,116,121,92,110,32,32,32,32,32,32,93,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,119,114,97,112,70,117,110,99,46,97,112,112,108,121,40,117,110,100,101,102,105,110,101,100,44,32,110,101,119,68,97,116,97,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,76,97,122,105,97,98,108,101,40,102,117,110,99,41,41,32,123,92,110,32,32,32,32,32,32,32,32,115,101,116,68,97,116,97,40,114,101,115,117,108,116,44,32,110,101,119,68,97,116,97,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,112,108,97,99,101,104,111,108,100,101,114,32,61,32,112,108,97,99,101,104,111,108,100,101,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,101,116,87,114,97,112,84,111,83,116,114,105,110,103,40,114,101,115,117,108,116,44,32,102,117,110,99,44,32,98,105,116,109,97,115,107,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,108,105,107,101,32,96,95,46,114,111,117,110,100,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,109,101,116,104,111,100,78,97,109,101,32,84,104,101,32,110,97,109,101,32,111,102,32,116,104,101,32,96,77,97,116,104,96,32,109,101,116,104,111,100,32,116,111,32,117,115,101,32,119,104,101,110,32,114,111,117,110,100,105,110,103,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,114,111,117,110,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,82,111,117,110,100,40,109,101,116,104,111,100,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,77,97,116,104,91,109,101,116,104,111,100,78,97,109,101,93,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,117,109,98,101,114,44,32,112,114,101,99,105,115,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,110,117,109,98,101,114,32,61,32,116,111,78,117,109,98,101,114,40,110,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,112,114,101,99,105,115,105,111,110,32,61,32,112,114,101,99,105,115,105,111,110,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,110,97,116,105,118,101,77,105,110,40,116,111,73,110,116,101,103,101,114,40,112,114,101,99,105,115,105,111,110,41,44,32,50,57,50,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,114,101,99,105,115,105,111,110,32,38,38,32,110,97,116,105,118,101,73,115,70,105,110,105,116,101,40,110,117,109,98,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,83,104,105,102,116,32,119,105,116,104,32,101,120,112,111,110,101,110,116,105,97,108,32,110,111,116,97,116,105,111,110,32,116,111,32,97,118,111,105,100,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,105,115,115,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,101,32,91,77,68,78,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,114,111,117,110,100,35,69,120,97,109,112,108,101,115,41,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,105,114,32,61,32,40,116,111,83,116,114,105,110,103,40,110,117,109,98,101,114,41,32,43,32,39,101,39,41,46,115,112,108,105,116,40,39,101,39,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,102,117,110,99,40,112,97,105,114,91,48,93,32,43,32,39,101,39,32,43,32,40,43,112,97,105,114,91,49,93,32,43,32,112,114,101,99,105,115,105,111,110,41,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,112,97,105,114,32,61,32,40,116,111,83,116,114,105,110,103,40,118,97,108,117,101,41,32,43,32,39,101,39,41,46,115,112,108,105,116,40,39,101,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,43,40,112,97,105,114,91,48,93,32,43,32,39,101,39,32,43,32,40,43,112,97,105,114,91,49,93,32,45,32,112,114,101,99,105,115,105,111,110,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,110,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,115,101,116,32,111,98,106,101,99,116,32,111,102,32,96,118,97,108,117,101,115,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,118,97,108,117,101,115,32,84,104,101,32,118,97,108,117,101,115,32,116,111,32,97,100,100,32,116,111,32,116,104,101,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,115,101,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,99,114,101,97,116,101,83,101,116,32,61,32,33,40,83,101,116,32,38,38,32,40,49,32,47,32,115,101,116,84,111,65,114,114,97,121,40,110,101,119,32,83,101,116,40,91,44,45,48,93,41,41,91,49,93,41,32,61,61,32,73,78,70,73,78,73,84,89,41,32,63,32,110,111,111,112,32,58,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,83,101,116,40,118,97,108,117,101,115,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,96,95,46,116,111,80,97,105,114,115,96,32,111,114,32,96,95,46,116,111,80,97,105,114,115,73,110,96,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,107,101,121,115,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,103,101,116,32,116,104,101,32,107,101,121,115,32,111,102,32,97,32,103,105,118,101,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,112,97,105,114,115,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,84,111,80,97,105,114,115,40,107,101,121,115,70,117,110,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,97,103,32,61,32,103,101,116,84,97,103,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,97,103,32,61,61,32,109,97,112,84,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,112,84,111,65,114,114,97,121,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,97,103,32,61,61,32,115,101,116,84,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,101,116,84,111,80,97,105,114,115,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,84,111,80,97,105,114,115,40,111,98,106,101,99,116,44,32,107,101,121,115,70,117,110,99,40,111,98,106,101,99,116,41,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,101,105,116,104,101,114,32,99,117,114,114,105,101,115,32,111,114,32,105,110,118,111,107,101,115,32,96,102,117,110,99,96,32,119,105,116,104,32,111,112,116,105,111,110,97,108,92,110,32,32,32,32,32,42,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,97,110,100,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,124,115,116,114,105,110,103,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,111,114,32,109,101,116,104,111,100,32,110,97,109,101,32,116,111,32,119,114,97,112,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,98,105,116,109,97,115,107,32,84,104,101,32,98,105,116,109,97,115,107,32,102,108,97,103,115,46,92,110,32,32,32,32,32,42,32,32,32,32,49,32,45,32,96,95,46,98,105,110,100,96,92,110,32,32,32,32,32,42,32,32,32,32,50,32,45,32,96,95,46,98,105,110,100,75,101,121,96,92,110,32,32,32,32,32,42,32,32,32,32,52,32,45,32,96,95,46,99,117,114,114,121,96,32,111,114,32,96,95,46,99,117,114,114,121,82,105,103,104,116,96,32,111,102,32,97,32,98,111,117,110,100,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,32,32,32,56,32,45,32,96,95,46,99,117,114,114,121,96,92,110,32,32,32,32,32,42,32,32,32,49,54,32,45,32,96,95,46,99,117,114,114,121,82,105,103,104,116,96,92,110,32,32,32,32,32,42,32,32,32,51,50,32,45,32,96,95,46,112,97,114,116,105,97,108,96,92,110,32,32,32,32,32,42,32,32,32,54,52,32,45,32,96,95,46,112,97,114,116,105,97,108,82,105,103,104,116,96,92,110,32,32,32,32,32,42,32,32,49,50,56,32,45,32,96,95,46,114,101,97,114,103,96,92,110,32,32,32,32,32,42,32,32,50,53,54,32,45,32,96,95,46,97,114,121,96,92,110,32,32,32,32,32,42,32,32,53,49,50,32,45,32,96,95,46,102,108,105,112,96,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,91,116,104,105,115,65,114,103,93,32,84,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,112,97,114,116,105,97,108,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,98,101,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,104,111,108,100,101,114,115,93,32,84,104,101,32,96,112,97,114,116,105,97,108,115,96,32,112,108,97,99,101,104,111,108,100,101,114,32,105,110,100,101,120,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,97,114,103,80,111,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,32,112,111,115,105,116,105,111,110,115,32,111,102,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,97,114,121,93,32,84,104,101,32,97,114,105,116,121,32,99,97,112,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,97,114,105,116,121,93,32,84,104,101,32,97,114,105,116,121,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,119,114,97,112,112,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,87,114,97,112,40,102,117,110,99,44,32,98,105,116,109,97,115,107,44,32,116,104,105,115,65,114,103,44,32,112,97,114,116,105,97,108,115,44,32,104,111,108,100,101,114,115,44,32,97,114,103,80,111,115,44,32,97,114,121,44,32,97,114,105,116,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,66,105,110,100,75,101,121,32,61,32,98,105,116,109,97,115,107,32,38,32,87,82,65,80,95,66,73,78,68,95,75,69,89,95,70,76,65,71,59,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,66,105,110,100,75,101,121,32,38,38,32,116,121,112,101,111,102,32,102,117,110,99,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,70,85,78,67,95,69,82,82,79,82,95,84,69,88,84,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,112,97,114,116,105,97,108,115,32,63,32,112,97,114,116,105,97,108,115,46,108,101,110,103,116,104,32,58,32,48,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,98,105,116,109,97,115,107,32,38,61,32,126,40,87,82,65,80,95,80,65,82,84,73,65,76,95,70,76,65,71,32,124,32,87,82,65,80,95,80,65,82,84,73,65,76,95,82,73,71,72,84,95,70,76,65,71,41,59,92,110,32,32,32,32,32,32,32,32,112,97,114,116,105,97,108,115,32,61,32,104,111,108,100,101,114,115,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,97,114,121,32,61,32,97,114,121,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,121,32,58,32,110,97,116,105,118,101,77,97,120,40,116,111,73,110,116,101,103,101,114,40,97,114,121,41,44,32,48,41,59,92,110,32,32,32,32,32,32,97,114,105,116,121,32,61,32,97,114,105,116,121,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,105,116,121,32,58,32,116,111,73,110,116,101,103,101,114,40,97,114,105,116,121,41,59,92,110,32,32,32,32,32,32,108,101,110,103,116,104,32,45,61,32,104,111,108,100,101,114,115,32,63,32,104,111,108,100,101,114,115,46,108,101,110,103,116,104,32,58,32,48,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,98,105,116,109,97,115,107,32,38,32,87,82,65,80,95,80,65,82,84,73,65,76,95,82,73,71,72,84,95,70,76,65,71,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,97,114,116,105,97,108,115,82,105,103,104,116,32,61,32,112,97,114,116,105,97,108,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,111,108,100,101,114,115,82,105,103,104,116,32,61,32,104,111,108,100,101,114,115,59,92,110,92,110,32,32,32,32,32,32,32,32,112,97,114,116,105,97,108,115,32,61,32,104,111,108,100,101,114,115,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,105,115,66,105,110,100,75,101,121,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,103,101,116,68,97,116,97,40,102,117,110,99,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,110,101,119,68,97,116,97,32,61,32,91,92,110,32,32,32,32,32,32,32,32,102,117,110,99,44,32,98,105,116,109,97,115,107,44,32,116,104,105,115,65,114,103,44,32,112,97,114,116,105,97,108,115,44,32,104,111,108,100,101,114,115,44,32,112,97,114,116,105,97,108,115,82,105,103,104,116,44,32,104,111,108,100,101,114,115,82,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,97,114,103,80,111,115,44,32,97,114,121,44,32,97,114,105,116,121,92,110,32,32,32,32,32,32,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,109,101,114,103,101,68,97,116,97,40,110,101,119,68,97,116,97,44,32,100,97,116,97,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,102,117,110,99,32,61,32,110,101,119,68,97,116,97,91,48,93,59,92,110,32,32,32,32,32,32,98,105,116,109,97,115,107,32,61,32,110,101,119,68,97,116,97,91,49,93,59,92,110,32,32,32,32,32,32,116,104,105,115,65,114,103,32,61,32,110,101,119,68,97,116,97,91,50,93,59,92,110,32,32,32,32,32,32,112,97,114,116,105,97,108,115,32,61,32,110,101,119,68,97,116,97,91,51,93,59,92,110,32,32,32,32,32,32,104,111,108,100,101,114,115,32,61,32,110,101,119,68,97,116,97,91,52,93,59,92,110,32,32,32,32,32,32,97,114,105,116,121,32,61,32,110,101,119,68,97,116,97,91,57,93,32,61,32,110,101,119,68,97,116,97,91,57,93,32,61,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,32,32,63,32,40,105,115,66,105,110,100,75,101,121,32,63,32,48,32,58,32,102,117,110,99,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,58,32,110,97,116,105,118,101,77,97,120,40,110,101,119,68,97,116,97,91,57,93,32,45,32,108,101,110,103,116,104,44,32,48,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,97,114,105,116,121,32,38,38,32,98,105,116,109,97,115,107,32,38,32,40,87,82,65,80,95,67,85,82,82,89,95,70,76,65,71,32,124,32,87,82,65,80,95,67,85,82,82,89,95,82,73,71,72,84,95,70,76,65,71,41,41,32,123,92,110,32,32,32,32,32,32,32,32,98,105,116,109,97,115,107,32,38,61,32,126,40,87,82,65,80,95,67,85,82,82,89,95,70,76,65,71,32,124,32,87,82,65,80,95,67,85,82,82,89,95,82,73,71,72,84,95,70,76,65,71,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,33,98,105,116,109,97,115,107,32,124,124,32,98,105,116,109,97,115,107,32,61,61,32,87,82,65,80,95,66,73,78,68,95,70,76,65,71,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,99,114,101,97,116,101,66,105,110,100,40,102,117,110,99,44,32,98,105,116,109,97,115,107,44,32,116,104,105,115,65,114,103,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,98,105,116,109,97,115,107,32,61,61,32,87,82,65,80,95,67,85,82,82,89,95,70,76,65,71,32,124,124,32,98,105,116,109,97,115,107,32,61,61,32,87,82,65,80,95,67,85,82,82,89,95,82,73,71,72,84,95,70,76,65,71,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,99,114,101,97,116,101,67,117,114,114,121,40,102,117,110,99,44,32,98,105,116,109,97,115,107,44,32,97,114,105,116,121,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,98,105,116,109,97,115,107,32,61,61,32,87,82,65,80,95,80,65,82,84,73,65,76,95,70,76,65,71,32,124,124,32,98,105,116,109,97,115,107,32,61,61,32,40,87,82,65,80,95,66,73,78,68,95,70,76,65,71,32,124,32,87,82,65,80,95,80,65,82,84,73,65,76,95,70,76,65,71,41,41,32,38,38,32,33,104,111,108,100,101,114,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,99,114,101,97,116,101,80,97,114,116,105,97,108,40,102,117,110,99,44,32,98,105,116,109,97,115,107,44,32,116,104,105,115,65,114,103,44,32,112,97,114,116,105,97,108,115,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,99,114,101,97,116,101,72,121,98,114,105,100,46,97,112,112,108,121,40,117,110,100,101,102,105,110,101,100,44,32,110,101,119,68,97,116,97,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,115,101,116,116,101,114,32,61,32,100,97,116,97,32,63,32,98,97,115,101,83,101,116,68,97,116,97,32,58,32,115,101,116,68,97,116,97,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,101,116,87,114,97,112,84,111,83,116,114,105,110,103,40,115,101,116,116,101,114,40,114,101,115,117,108,116,44,32,110,101,119,68,97,116,97,41,44,32,102,117,110,99,44,32,98,105,116,109,97,115,107,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,85,115,101,100,32,98,121,32,96,95,46,100,101,102,97,117,108,116,115,96,32,116,111,32,99,117,115,116,111,109,105,122,101,32,105,116,115,32,96,95,46,97,115,115,105,103,110,73,110,96,32,117,115,101,32,116,111,32,97,115,115,105,103,110,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,32,42,32,111,102,32,115,111,117,114,99,101,32,111,98,106,101,99,116,115,32,116,111,32,116,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,32,102,111,114,32,97,108,108,32,100,101,115,116,105,110,97,116,105,111,110,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,32,42,32,116,104,97,116,32,114,101,115,111,108,118,101,32,116,111,32,96,117,110,100,101,102,105,110,101,100,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,111,98,106,86,97,108,117,101,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,115,114,99,86,97,108,117,101,32,84,104,101,32,115,111,117,114,99,101,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,97,115,115,105,103,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,112,97,114,101,110,116,32,111,98,106,101,99,116,32,111,102,32,96,111,98,106,86,97,108,117,101,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,116,111,32,97,115,115,105,103,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,68,101,102,97,117,108,116,115,65,115,115,105,103,110,73,110,40,111,98,106,86,97,108,117,101,44,32,115,114,99,86,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,111,98,106,86,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,40,101,113,40,111,98,106,86,97,108,117,101,44,32,111,98,106,101,99,116,80,114,111,116,111,91,107,101,121,93,41,32,38,38,32,33,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,111,98,106,101,99,116,44,32,107,101,121,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,114,99,86,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,86,97,108,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,85,115,101,100,32,98,121,32,96,95,46,100,101,102,97,117,108,116,115,68,101,101,112,96,32,116,111,32,99,117,115,116,111,109,105,122,101,32,105,116,115,32,96,95,46,109,101,114,103,101,96,32,117,115,101,32,116,111,32,109,101,114,103,101,32,115,111,117,114,99,101,92,110,32,32,32,32,32,42,32,111,98,106,101,99,116,115,32,105,110,116,111,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,115,32,116,104,97,116,32,97,114,101,32,112,97,115,115,101,100,32,116,104,114,117,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,111,98,106,86,97,108,117,101,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,115,114,99,86,97,108,117,101,32,84,104,101,32,115,111,117,114,99,101,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,109,101,114,103,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,112,97,114,101,110,116,32,111,98,106,101,99,116,32,111,102,32,96,111,98,106,86,97,108,117,101,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,112,97,114,101,110,116,32,111,98,106,101,99,116,32,111,102,32,96,115,114,99,86,97,108,117,101,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,115,116,97,99,107,93,32,84,114,97,99,107,115,32,116,114,97,118,101,114,115,101,100,32,115,111,117,114,99,101,32,118,97,108,117,101,115,32,97,110,100,32,116,104,101,105,114,32,109,101,114,103,101,100,92,110,32,32,32,32,32,42,32,32,99,111,117,110,116,101,114,112,97,114,116,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,116,111,32,97,115,115,105,103,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,68,101,102,97,117,108,116,115,77,101,114,103,101,40,111,98,106,86,97,108,117,101,44,32,115,114,99,86,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,115,116,97,99,107,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,111,98,106,86,97,108,117,101,41,32,38,38,32,105,115,79,98,106,101,99,116,40,115,114,99,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,99,117,114,115,105,118,101,108,121,32,109,101,114,103,101,32,111,98,106,101,99,116,115,32,97,110,100,32,97,114,114,97,121,115,32,40,115,117,115,99,101,112,116,105,98,108,101,32,116,111,32,99,97,108,108,32,115,116,97,99,107,32,108,105,109,105,116,115,41,46,92,110,32,32,32,32,32,32,32,32,115,116,97,99,107,46,115,101,116,40,115,114,99,86,97,108,117,101,44,32,111,98,106,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,98,97,115,101,77,101,114,103,101,40,111,98,106,86,97,108,117,101,44,32,115,114,99,86,97,108,117,101,44,32,117,110,100,101,102,105,110,101,100,44,32,99,117,115,116,111,109,68,101,102,97,117,108,116,115,77,101,114,103,101,44,32,115,116,97,99,107,41,59,92,110,32,32,32,32,32,32,32,32,115,116,97,99,107,91,39,100,101,108,101,116,101,39,93,40,115,114,99,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,86,97,108,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,85,115,101,100,32,98,121,32,96,95,46,111,109,105,116,96,32,116,111,32,99,117,115,116,111,109,105,122,101,32,105,116,115,32,96,95,46,99,108,111,110,101,68,101,101,112,96,32,117,115,101,32,116,111,32,111,110,108,121,32,99,108,111,110,101,32,112,108,97,105,110,92,110,32,32,32,32,32,42,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,117,110,99,108,111,110,101,100,32,118,97,108,117,101,32,111,114,32,96,117,110,100,101,102,105,110,101,100,96,32,116,111,32,100,101,102,101,114,32,99,108,111,110,105,110,103,32,116,111,32,96,95,46,99,108,111,110,101,68,101,101,112,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,79,109,105,116,67,108,111,110,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,117,101,41,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,98,97,115,101,73,115,69,113,117,97,108,68,101,101,112,96,32,102,111,114,32,97,114,114,97,121,115,32,119,105,116,104,32,115,117,112,112,111,114,116,32,102,111,114,92,110,32,32,32,32,32,42,32,112,97,114,116,105,97,108,32,100,101,101,112,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,97,114,114,97,121,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,98,105,116,109,97,115,107,32,84,104,101,32,98,105,116,109,97,115,107,32,102,108,97,103,115,46,32,83,101,101,32,96,98,97,115,101,73,115,69,113,117,97,108,96,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,99,117,115,116,111,109,105,122,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,101,113,117,97,108,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,100,101,116,101,114,109,105,110,101,32,101,113,117,105,118,97,108,101,110,116,115,32,111,102,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,116,97,99,107,32,84,114,97,99,107,115,32,116,114,97,118,101,114,115,101,100,32,96,97,114,114,97,121,96,32,97,110,100,32,96,111,116,104,101,114,96,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,97,114,114,97,121,115,32,97,114,101,32,101,113,117,105,118,97,108,101,110,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,101,113,117,97,108,65,114,114,97,121,115,40,97,114,114,97,121,44,32,111,116,104,101,114,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,101,113,117,97,108,70,117,110,99,44,32,115,116,97,99,107,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,80,97,114,116,105,97,108,32,61,32,98,105,116,109,97,115,107,32,38,32,67,79,77,80,65,82,69,95,80,65,82,84,73,65,76,95,70,76,65,71,44,92,110,32,32,32,32,32,32,32,32,32,32,97,114,114,76,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,111,116,104,76,101,110,103,116,104,32,61,32,111,116,104,101,114,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,97,114,114,76,101,110,103,116,104,32,33,61,32,111,116,104,76,101,110,103,116,104,32,38,38,32,33,40,105,115,80,97,114,116,105,97,108,32,38,38,32,111,116,104,76,101,110,103,116,104,32,62,32,97,114,114,76,101,110,103,116,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,67,104,101,99,107,32,116,104,97,116,32,99,121,99,108,105,99,32,118,97,108,117,101,115,32,97,114,101,32,101,113,117,97,108,46,92,110,32,32,32,32,32,32,118,97,114,32,97,114,114,83,116,97,99,107,101,100,32,61,32,115,116,97,99,107,46,103,101,116,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,32,118,97,114,32,111,116,104,83,116,97,99,107,101,100,32,61,32,115,116,97,99,107,46,103,101,116,40,111,116,104,101,114,41,59,92,110,32,32,32,32,32,32,105,102,32,40,97,114,114,83,116,97,99,107,101,100,32,38,38,32,111,116,104,83,116,97,99,107,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,83,116,97,99,107,101,100,32,61,61,32,111,116,104,101,114,32,38,38,32,111,116,104,83,116,97,99,107,101,100,32,61,61,32,97,114,114,97,121,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,115,101,101,110,32,61,32,40,98,105,116,109,97,115,107,32,38,32,67,79,77,80,65,82,69,95,85,78,79,82,68,69,82,69,68,95,70,76,65,71,41,32,63,32,110,101,119,32,83,101,116,67,97,99,104,101,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,32,32,115,116,97,99,107,46,115,101,116,40,97,114,114,97,121,44,32,111,116,104,101,114,41,59,92,110,32,32,32,32,32,32,115,116,97,99,107,46,115,101,116,40,111,116,104,101,114,44,32,97,114,114,97,121,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,73,103,110,111,114,101,32,110,111,110,45,105,110,100,101,120,32,112,114,111,112,101,114,116,105,101,115,46,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,97,114,114,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,114,86,97,108,117,101,32,61,32,97,114,114,97,121,91,105,110,100,101,120,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,86,97,108,117,101,32,61,32,111,116,104,101,114,91,105,110,100,101,120,93,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,109,112,97,114,101,100,32,61,32,105,115,80,97,114,116,105,97,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,99,117,115,116,111,109,105,122,101,114,40,111,116,104,86,97,108,117,101,44,32,97,114,114,86,97,108,117,101,44,32,105,110,100,101,120,44,32,111,116,104,101,114,44,32,97,114,114,97,121,44,32,115,116,97,99,107,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,99,117,115,116,111,109,105,122,101,114,40,97,114,114,86,97,108,117,101,44,32,111,116,104,86,97,108,117,101,44,32,105,110,100,101,120,44,32,97,114,114,97,121,44,32,111,116,104,101,114,44,32,115,116,97,99,107,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,111,109,112,97,114,101,100,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,111,109,112,97,114,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,99,117,114,115,105,118,101,108,121,32,99,111,109,112,97,114,101,32,97,114,114,97,121,115,32,40,115,117,115,99,101,112,116,105,98,108,101,32,116,111,32,99,97,108,108,32,115,116,97,99,107,32,108,105,109,105,116,115,41,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,101,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,97,114,114,97,121,83,111,109,101,40,111,116,104,101,114,44,32,102,117,110,99,116,105,111,110,40,111,116,104,86,97,108,117,101,44,32,111,116,104,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,99,97,99,104,101,72,97,115,40,115,101,101,110,44,32,111,116,104,73,110,100,101,120,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,97,114,114,86,97,108,117,101,32,61,61,61,32,111,116,104,86,97,108,117,101,32,124,124,32,101,113,117,97,108,70,117,110,99,40,97,114,114,86,97,108,117,101,44,32,111,116,104,86,97,108,117,101,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,115,116,97,99,107,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,101,101,110,46,112,117,115,104,40,111,116,104,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,114,114,86,97,108,117,101,32,61,61,61,32,111,116,104,86,97,108,117,101,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,113,117,97,108,70,117,110,99,40,97,114,114,86,97,108,117,101,44,32,111,116,104,86,97,108,117,101,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,115,116,97,99,107,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,116,97,99,107,91,39,100,101,108,101,116,101,39,93,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,32,115,116,97,99,107,91,39,100,101,108,101,116,101,39,93,40,111,116,104,101,114,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,98,97,115,101,73,115,69,113,117,97,108,68,101,101,112,96,32,102,111,114,32,99,111,109,112,97,114,105,110,103,32,111,98,106,101,99,116,115,32,111,102,92,110,32,32,32,32,32,42,32,116,104,101,32,115,97,109,101,32,96,116,111,83,116,114,105,110,103,84,97,103,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,111,110,108,121,32,115,117,112,112,111,114,116,115,32,99,111,109,112,97,114,105,110,103,32,118,97,108,117,101,115,32,119,105,116,104,32,116,97,103,115,32,111,102,92,110,32,32,32,32,32,42,32,96,66,111,111,108,101,97,110,96,44,32,96,68,97,116,101,96,44,32,96,69,114,114,111,114,96,44,32,96,78,117,109,98,101,114,96,44,32,96,82,101,103,69,120,112,96,44,32,111,114,32,96,83,116,114,105,110,103,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,111,98,106,101,99,116,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,116,97,103,32,84,104,101,32,96,116,111,83,116,114,105,110,103,84,97,103,96,32,111,102,32,116,104,101,32,111,98,106,101,99,116,115,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,98,105,116,109,97,115,107,32,84,104,101,32,98,105,116,109,97,115,107,32,102,108,97,103,115,46,32,83,101,101,32,96,98,97,115,101,73,115,69,113,117,97,108,96,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,99,117,115,116,111,109,105,122,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,101,113,117,97,108,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,100,101,116,101,114,109,105,110,101,32,101,113,117,105,118,97,108,101,110,116,115,32,111,102,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,116,97,99,107,32,84,114,97,99,107,115,32,116,114,97,118,101,114,115,101,100,32,96,111,98,106,101,99,116,96,32,97,110,100,32,96,111,116,104,101,114,96,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,111,98,106,101,99,116,115,32,97,114,101,32,101,113,117,105,118,97,108,101,110,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,101,113,117,97,108,66,121,84,97,103,40,111,98,106,101,99,116,44,32,111,116,104,101,114,44,32,116,97,103,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,101,113,117,97,108,70,117,110,99,44,32,115,116,97,99,107,41,32,123,92,110,32,32,32,32,32,32,115,119,105,116,99,104,32,40,116,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,100,97,116,97,86,105,101,119,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,111,98,106,101,99,116,46,98,121,116,101,76,101,110,103,116,104,32,33,61,32,111,116,104,101,114,46,98,121,116,101,76,101,110,103,116,104,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,111,98,106,101,99,116,46,98,121,116,101,79,102,102,115,101,116,32,33,61,32,111,116,104,101,114,46,98,121,116,101,79,102,102,115,101,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,111,98,106,101,99,116,32,61,32,111,98,106,101,99,116,46,98,117,102,102,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,111,116,104,101,114,32,61,32,111,116,104,101,114,46,98,117,102,102,101,114,59,92,110,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,97,114,114,97,121,66,117,102,102,101,114,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,111,98,106,101,99,116,46,98,121,116,101,76,101,110,103,116,104,32,33,61,32,111,116,104,101,114,46,98,121,116,101,76,101,110,103,116,104,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,33,101,113,117,97,108,70,117,110,99,40,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,111,98,106,101,99,116,41,44,32,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,111,116,104,101,114,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,98,111,111,108,84,97,103,58,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,100,97,116,101,84,97,103,58,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,110,117,109,98,101,114,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,101,114,99,101,32,98,111,111,108,101,97,110,115,32,116,111,32,96,49,96,32,111,114,32,96,48,96,32,97,110,100,32,100,97,116,101,115,32,116,111,32,109,105,108,108,105,115,101,99,111,110,100,115,46,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,118,97,108,105,100,32,100,97,116,101,115,32,97,114,101,32,99,111,101,114,99,101,100,32,116,111,32,96,78,97,78,96,46,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,113,40,43,111,98,106,101,99,116,44,32,43,111,116,104,101,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,101,114,114,111,114,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,46,110,97,109,101,32,61,61,32,111,116,104,101,114,46,110,97,109,101,32,38,38,32,111,98,106,101,99,116,46,109,101,115,115,97,103,101,32,61,61,32,111,116,104,101,114,46,109,101,115,115,97,103,101,59,92,110,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,114,101,103,101,120,112,84,97,103,58,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,115,116,114,105,110,103,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,101,114,99,101,32,114,101,103,101,120,101,115,32,116,111,32,115,116,114,105,110,103,115,32,97,110,100,32,116,114,101,97,116,32,115,116,114,105,110,103,115,44,32,112,114,105,109,105,116,105,118,101,115,32,97,110,100,32,111,98,106,101,99,116,115,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,97,115,32,101,113,117,97,108,46,32,83,101,101,32,104,116,116,112,58,47,47,119,119,119,46,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,114,101,103,101,120,112,46,112,114,111,116,111,116,121,112,101,46,116,111,115,116,114,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,40,111,116,104,101,114,32,43,32,39,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,109,97,112,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,118,101,114,116,32,61,32,109,97,112,84,111,65,114,114,97,121,59,92,110,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,115,101,116,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,80,97,114,116,105,97,108,32,61,32,98,105,116,109,97,115,107,32,38,32,67,79,77,80,65,82,69,95,80,65,82,84,73,65,76,95,70,76,65,71,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,118,101,114,116,32,124,124,32,40,99,111,110,118,101,114,116,32,61,32,115,101,116,84,111,65,114,114,97,121,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,98,106,101,99,116,46,115,105,122,101,32,33,61,32,111,116,104,101,114,46,115,105,122,101,32,38,38,32,33,105,115,80,97,114,116,105,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,65,115,115,117,109,101,32,99,121,99,108,105,99,32,118,97,108,117,101,115,32,97,114,101,32,101,113,117,97,108,46,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,97,99,107,101,100,32,61,32,115,116,97,99,107,46,103,101,116,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,116,97,99,107,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,97,99,107,101,100,32,61,61,32,111,116,104,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,98,105,116,109,97,115,107,32,124,61,32,67,79,77,80,65,82,69,95,85,78,79,82,68,69,82,69,68,95,70,76,65,71,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,99,117,114,115,105,118,101,108,121,32,99,111,109,112,97,114,101,32,111,98,106,101,99,116,115,32,40,115,117,115,99,101,112,116,105,98,108,101,32,116,111,32,99,97,108,108,32,115,116,97,99,107,32,108,105,109,105,116,115,41,46,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,99,107,46,115,101,116,40,111,98,106,101,99,116,44,32,111,116,104,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,101,113,117,97,108,65,114,114,97,121,115,40,99,111,110,118,101,114,116,40,111,98,106,101,99,116,41,44,32,99,111,110,118,101,114,116,40,111,116,104,101,114,41,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,101,113,117,97,108,70,117,110,99,44,32,115,116,97,99,107,41,59,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,99,107,91,39,100,101,108,101,116,101,39,93,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,115,121,109,98,111,108,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,121,109,98,111,108,86,97,108,117,101,79,102,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,121,109,98,111,108,86,97,108,117,101,79,102,46,99,97,108,108,40,111,98,106,101,99,116,41,32,61,61,32,115,121,109,98,111,108,86,97,108,117,101,79,102,46,99,97,108,108,40,111,116,104,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,98,97,115,101,73,115,69,113,117,97,108,68,101,101,112,96,32,102,111,114,32,111,98,106,101,99,116,115,32,119,105,116,104,32,115,117,112,112,111,114,116,32,102,111,114,92,110,32,32,32,32,32,42,32,112,97,114,116,105,97,108,32,100,101,101,112,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,111,98,106,101,99,116,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,98,105,116,109,97,115,107,32,84,104,101,32,98,105,116,109,97,115,107,32,102,108,97,103,115,46,32,83,101,101,32,96,98,97,115,101,73,115,69,113,117,97,108,96,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,99,117,115,116,111,109,105,122,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,101,113,117,97,108,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,100,101,116,101,114,109,105,110,101,32,101,113,117,105,118,97,108,101,110,116,115,32,111,102,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,116,97,99,107,32,84,114,97,99,107,115,32,116,114,97,118,101,114,115,101,100,32,96,111,98,106,101,99,116,96,32,97,110,100,32,96,111,116,104,101,114,96,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,111,98,106,101,99,116,115,32,97,114,101,32,101,113,117,105,118,97,108,101,110,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,101,113,117,97,108,79,98,106,101,99,116,115,40,111,98,106,101,99,116,44,32,111,116,104,101,114,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,101,113,117,97,108,70,117,110,99,44,32,115,116,97,99,107,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,80,97,114,116,105,97,108,32,61,32,98,105,116,109,97,115,107,32,38,32,67,79,77,80,65,82,69,95,80,65,82,84,73,65,76,95,70,76,65,71,44,92,110,32,32,32,32,32,32,32,32,32,32,111,98,106,80,114,111,112,115,32,61,32,103,101,116,65,108,108,75,101,121,115,40,111,98,106,101,99,116,41,44,92,110,32,32,32,32,32,32,32,32,32,32,111,98,106,76,101,110,103,116,104,32,61,32,111,98,106,80,114,111,112,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,111,116,104,80,114,111,112,115,32,61,32,103,101,116,65,108,108,75,101,121,115,40,111,116,104,101,114,41,44,92,110,32,32,32,32,32,32,32,32,32,32,111,116,104,76,101,110,103,116,104,32,61,32,111,116,104,80,114,111,112,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,111,98,106,76,101,110,103,116,104,32,33,61,32,111,116,104,76,101,110,103,116,104,32,38,38,32,33,105,115,80,97,114,116,105,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,111,98,106,76,101,110,103,116,104,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,105,110,100,101,120,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,111,98,106,80,114,111,112,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,105,115,80,97,114,116,105,97,108,32,63,32,107,101,121,32,105,110,32,111,116,104,101,114,32,58,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,111,116,104,101,114,44,32,107,101,121,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,67,104,101,99,107,32,116,104,97,116,32,99,121,99,108,105,99,32,118,97,108,117,101,115,32,97,114,101,32,101,113,117,97,108,46,92,110,32,32,32,32,32,32,118,97,114,32,111,98,106,83,116,97,99,107,101,100,32,61,32,115,116,97,99,107,46,103,101,116,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,118,97,114,32,111,116,104,83,116,97,99,107,101,100,32,61,32,115,116,97,99,107,46,103,101,116,40,111,116,104,101,114,41,59,92,110,32,32,32,32,32,32,105,102,32,40,111,98,106,83,116,97,99,107,101,100,32,38,38,32,111,116,104,83,116,97,99,107,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,83,116,97,99,107,101,100,32,61,61,32,111,116,104,101,114,32,38,38,32,111,116,104,83,116,97,99,107,101,100,32,61,61,32,111,98,106,101,99,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,115,116,97,99,107,46,115,101,116,40,111,98,106,101,99,116,44,32,111,116,104,101,114,41,59,92,110,32,32,32,32,32,32,115,116,97,99,107,46,115,101,116,40,111,116,104,101,114,44,32,111,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,107,105,112,67,116,111,114,32,61,32,105,115,80,97,114,116,105,97,108,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,111,98,106,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,32,61,32,111,98,106,80,114,111,112,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,98,106,86,97,108,117,101,32,61,32,111,98,106,101,99,116,91,107,101,121,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,86,97,108,117,101,32,61,32,111,116,104,101,114,91,107,101,121,93,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,109,112,97,114,101,100,32,61,32,105,115,80,97,114,116,105,97,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,99,117,115,116,111,109,105,122,101,114,40,111,116,104,86,97,108,117,101,44,32,111,98,106,86,97,108,117,101,44,32,107,101,121,44,32,111,116,104,101,114,44,32,111,98,106,101,99,116,44,32,115,116,97,99,107,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,99,117,115,116,111,109,105,122,101,114,40,111,98,106,86,97,108,117,101,44,32,111,116,104,86,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,44,32,111,116,104,101,114,44,32,115,116,97,99,107,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,99,117,114,115,105,118,101,108,121,32,99,111,109,112,97,114,101,32,111,98,106,101,99,116,115,32,40,115,117,115,99,101,112,116,105,98,108,101,32,116,111,32,99,97,108,108,32,115,116,97,99,107,32,108,105,109,105,116,115,41,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,99,111,109,112,97,114,101,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,111,98,106,86,97,108,117,101,32,61,61,61,32,111,116,104,86,97,108,117,101,32,124,124,32,101,113,117,97,108,70,117,110,99,40,111,98,106,86,97,108,117,101,44,32,111,116,104,86,97,108,117,101,44,32,98,105,116,109,97,115,107,44,32,99,117,115,116,111,109,105,122,101,114,44,32,115,116,97,99,107,41,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,99,111,109,112,97,114,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,115,107,105,112,67,116,111,114,32,124,124,32,40,115,107,105,112,67,116,111,114,32,61,32,107,101,121,32,61,61,32,39,99,111,110,115,116,114,117,99,116,111,114,39,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,117,108,116,32,38,38,32,33,115,107,105,112,67,116,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,98,106,67,116,111,114,32,61,32,111,98,106,101,99,116,46,99,111,110,115,116,114,117,99,116,111,114,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,67,116,111,114,32,61,32,111,116,104,101,114,46,99,111,110,115,116,114,117,99,116,111,114,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,78,111,110,32,96,79,98,106,101,99,116,96,32,111,98,106,101,99,116,32,105,110,115,116,97,110,99,101,115,32,119,105,116,104,32,100,105,102,102,101,114,101,110,116,32,99,111,110,115,116,114,117,99,116,111,114,115,32,97,114,101,32,110,111,116,32,101,113,117,97,108,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,111,98,106,67,116,111,114,32,33,61,32,111,116,104,67,116,111,114,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,39,99,111,110,115,116,114,117,99,116,111,114,39,32,105,110,32,111,98,106,101,99,116,32,38,38,32,39,99,111,110,115,116,114,117,99,116,111,114,39,32,105,110,32,111,116,104,101,114,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,33,40,116,121,112,101,111,102,32,111,98,106,67,116,111,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,111,98,106,67,116,111,114,32,105,110,115,116,97,110,99,101,111,102,32,111,98,106,67,116,111,114,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,111,116,104,67,116,111,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,111,116,104,67,116,111,114,32,105,110,115,116,97,110,99,101,111,102,32,111,116,104,67,116,111,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,116,97,99,107,91,39,100,101,108,101,116,101,39,93,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,115,116,97,99,107,91,39,100,101,108,101,116,101,39,93,40,111,116,104,101,114,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,98,97,115,101,82,101,115,116,96,32,119,104,105,99,104,32,102,108,97,116,116,101,110,115,32,116,104,101,32,114,101,115,116,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,97,112,112,108,121,32,97,32,114,101,115,116,32,112,97,114,97,109,101,116,101,114,32,116,111,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,108,97,116,82,101,115,116,40,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,101,116,84,111,83,116,114,105,110,103,40,111,118,101,114,82,101,115,116,40,102,117,110,99,44,32,117,110,100,101,102,105,110,101,100,44,32,102,108,97,116,116,101,110,41,44,32,102,117,110,99,32,43,32,39,39,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,111,119,110,32,101,110,117,109,101,114,97,98,108,101,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,97,110,100,32,115,121,109,98,111,108,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,97,110,100,32,115,121,109,98,111,108,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,65,108,108,75,101,121,115,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,71,101,116,65,108,108,75,101,121,115,40,111,98,106,101,99,116,44,32,107,101,121,115,44,32,103,101,116,83,121,109,98,111,108,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,111,119,110,32,97,110,100,32,105,110,104,101,114,105,116,101,100,32,101,110,117,109,101,114,97,98,108,101,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,97,110,100,92,110,32,32,32,32,32,42,32,115,121,109,98,111,108,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,97,110,100,32,115,121,109,98,111,108,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,65,108,108,75,101,121,115,73,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,71,101,116,65,108,108,75,101,121,115,40,111,98,106,101,99,116,44,32,107,101,121,115,73,110,44,32,103,101,116,83,121,109,98,111,108,115,73,110,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,109,101,116,97,100,97,116,97,32,102,111,114,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,109,101,116,97,100,97,116,97,32,102,111,114,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,103,101,116,68,97,116,97,32,61,32,33,109,101,116,97,77,97,112,32,63,32,110,111,111,112,32,58,32,102,117,110,99,116,105,111,110,40,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,101,116,97,77,97,112,46,103,101,116,40,102,117,110,99,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,110,97,109,101,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,102,117,110,99,116,105,111,110,32,110,97,109,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,70,117,110,99,78,97,109,101,40,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,40,102,117,110,99,46,110,97,109,101,32,43,32,39,39,41,44,92,110,32,32,32,32,32,32,32,32,32,32,97,114,114,97,121,32,61,32,114,101,97,108,78,97,109,101,115,91,114,101,115,117,108,116,93,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,114,101,97,108,78,97,109,101,115,44,32,114,101,115,117,108,116,41,32,63,32,97,114,114,97,121,46,108,101,110,103,116,104,32,58,32,48,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,97,114,114,97,121,91,108,101,110,103,116,104,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,101,114,70,117,110,99,32,61,32,100,97,116,97,46,102,117,110,99,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,111,116,104,101,114,70,117,110,99,32,61,61,32,110,117,108,108,32,124,124,32,111,116,104,101,114,70,117,110,99,32,61,61,32,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,46,110,97,109,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,97,114,103,117,109,101,110,116,32,112,108,97,99,101,104,111,108,100,101,114,32,118,97,108,117,101,32,102,111,114,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,112,108,97,99,101,104,111,108,100,101,114,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,72,111,108,100,101,114,40,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,98,106,101,99,116,32,61,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,108,111,100,97,115,104,44,32,39,112,108,97,99,101,104,111,108,100,101,114,39,41,32,63,32,108,111,100,97,115,104,32,58,32,102,117,110,99,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,46,112,108,97,99,101,104,111,108,100,101,114,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,97,112,112,114,111,112,114,105,97,116,101,32,92,34,105,116,101,114,97,116,101,101,92,34,32,102,117,110,99,116,105,111,110,46,32,73,102,32,96,95,46,105,116,101,114,97,116,101,101,96,32,105,115,32,99,117,115,116,111,109,105,122,101,100,44,92,110,32,32,32,32,32,42,32,116,104,105,115,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,115,32,116,104,101,32,99,117,115,116,111,109,32,109,101,116,104,111,100,44,32,111,116,104,101,114,119,105,115,101,32,105,116,32,114,101,116,117,114,110,115,32,96,98,97,115,101,73,116,101,114,97,116,101,101,96,46,92,110,32,32,32,32,32,42,32,73,102,32,97,114,103,117,109,101,110,116,115,32,97,114,101,32,112,114,111,118,105,100,101,100,44,32,116,104,101,32,99,104,111,115,101,110,32,102,117,110,99,116,105,111,110,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,101,109,32,97,110,100,92,110,32,32,32,32,32,42,32,105,116,115,32,114,101,115,117,108,116,32,105,115,32,114,101,116,117,114,110,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,91,118,97,108,117,101,93,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,110,118,101,114,116,32,116,111,32,97,110,32,105,116,101,114,97,116,101,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,97,114,105,116,121,93,32,84,104,101,32,97,114,105,116,121,32,111,102,32,116,104,101,32,99,114,101,97,116,101,100,32,105,116,101,114,97,116,101,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,104,111,115,101,110,32,102,117,110,99,116,105,111,110,32,111,114,32,105,116,115,32,114,101,115,117,108,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,73,116,101,114,97,116,101,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,108,111,100,97,115,104,46,105,116,101,114,97,116,101,101,32,124,124,32,105,116,101,114,97,116,101,101,59,92,110,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,114,101,115,117,108,116,32,61,61,61,32,105,116,101,114,97,116,101,101,32,63,32,98,97,115,101,73,116,101,114,97,116,101,101,32,58,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,114,101,115,117,108,116,40,97,114,103,117,109,101,110,116,115,91,48,93,44,32,97,114,103,117,109,101,110,116,115,91,49,93,41,32,58,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,100,97,116,97,32,102,111,114,32,96,109,97,112,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,109,97,112,32,84,104,101,32,109,97,112,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,114,101,102,101,114,101,110,99,101,32,107,101,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,109,97,112,32,100,97,116,97,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,77,97,112,68,97,116,97,40,109,97,112,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,109,97,112,46,95,95,100,97,116,97,95,95,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,75,101,121,97,98,108,101,40,107,101,121,41,92,110,32,32,32,32,32,32,32,32,63,32,100,97,116,97,91,116,121,112,101,111,102,32,107,101,121,32,61,61,32,39,115,116,114,105,110,103,39,32,63,32,39,115,116,114,105,110,103,39,32,58,32,39,104,97,115,104,39,93,92,110,32,32,32,32,32,32,32,32,58,32,100,97,116,97,46,109,97,112,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,44,32,118,97,108,117,101,115,44,32,97,110,100,32,99,111,109,112,97,114,101,32,102,108,97,103,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,109,97,116,99,104,32,100,97,116,97,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,77,97,116,99,104,68,97,116,97,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,107,101,121,115,40,111,98,106,101,99,116,41,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,114,101,115,117,108,116,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,114,101,115,117,108,116,91,108,101,110,103,116,104,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,111,98,106,101,99,116,91,107,101,121,93,59,92,110,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,108,101,110,103,116,104,93,32,61,32,91,107,101,121,44,32,118,97,108,117,101,44,32,105,115,83,116,114,105,99,116,67,111,109,112,97,114,97,98,108,101,40,118,97,108,117,101,41,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,110,97,116,105,118,101,32,102,117,110,99,116,105,111,110,32,97,116,32,96,107,101,121,96,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,109,101,116,104,111,100,32,116,111,32,103,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,102,117,110,99,116,105,111,110,32,105,102,32,105,116,39,115,32,110,97,116,105,118,101,44,32,101,108,115,101,32,96,117,110,100,101,102,105,110,101,100,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,78,97,116,105,118,101,40,111,98,106,101,99,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,103,101,116,86,97,108,117,101,40,111,98,106,101,99,116,44,32,107,101,121,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,73,115,78,97,116,105,118,101,40,118,97,108,117,101,41,32,63,32,118,97,108,117,101,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,98,97,115,101,71,101,116,84,97,103,96,32,119,104,105,99,104,32,105,103,110,111,114,101,115,32,96,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,96,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,97,119,32,96,116,111,83,116,114,105,110,103,84,97,103,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,82,97,119,84,97,103,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,79,119,110,32,61,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,118,97,108,117,101,44,32,115,121,109,84,111,83,116,114,105,110,103,84,97,103,41,44,92,110,32,32,32,32,32,32,32,32,32,32,116,97,103,32,61,32,118,97,108,117,101,91,115,121,109,84,111,83,116,114,105,110,103,84,97,103,93,59,92,110,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,91,115,121,109,84,111,83,116,114,105,110,103,84,97,103,93,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,117,110,109,97,115,107,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,110,97,116,105,118,101,79,98,106,101,99,116,84,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,117,110,109,97,115,107,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,79,119,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,91,115,121,109,84,111,83,116,114,105,110,103,84,97,103,93,32,61,32,116,97,103,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,118,97,108,117,101,91,115,121,109,84,111,83,116,114,105,110,103,84,97,103,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,116,104,101,32,111,119,110,32,101,110,117,109,101,114,97,98,108,101,32,115,121,109,98,111,108,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,115,121,109,98,111,108,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,103,101,116,83,121,109,98,111,108,115,32,61,32,33,110,97,116,105,118,101,71,101,116,83,121,109,98,111,108,115,32,63,32,115,116,117,98,65,114,114,97,121,32,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,111,98,106,101,99,116,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,111,98,106,101,99,116,32,61,32,79,98,106,101,99,116,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,70,105,108,116,101,114,40,110,97,116,105,118,101,71,101,116,83,121,109,98,111,108,115,40,111,98,106,101,99,116,41,44,32,102,117,110,99,116,105,111,110,40,115,121,109,98,111,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,46,99,97,108,108,40,111,98,106,101,99,116,44,32,115,121,109,98,111,108,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,116,104,101,32,111,119,110,32,97,110,100,32,105,110,104,101,114,105,116,101,100,32,101,110,117,109,101,114,97,98,108,101,32,115,121,109,98,111,108,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,115,121,109,98,111,108,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,103,101,116,83,121,109,98,111,108,115,73,110,32,61,32,33,110,97,116,105,118,101,71,101,116,83,121,109,98,111,108,115,32,63,32,115,116,117,98,65,114,114,97,121,32,58,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,97,114,114,97,121,80,117,115,104,40,114,101,115,117,108,116,44,32,103,101,116,83,121,109,98,111,108,115,40,111,98,106,101,99,116,41,41,59,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,32,61,32,103,101,116,80,114,111,116,111,116,121,112,101,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,96,116,111,83,116,114,105,110,103,84,97,103,96,32,111,102,32,96,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,96,116,111,83,116,114,105,110,103,84,97,103,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,103,101,116,84,97,103,32,61,32,98,97,115,101,71,101,116,84,97,103,59,92,110,92,110,32,32,32,32,47,47,32,70,97,108,108,98,97,99,107,32,102,111,114,32,100,97,116,97,32,118,105,101,119,115,44,32,109,97,112,115,44,32,115,101,116,115,44,32,97,110,100,32,119,101,97,107,32,109,97,112,115,32,105,110,32,73,69,32,49,49,32,97,110,100,32,112,114,111,109,105,115,101,115,32,105,110,32,78,111,100,101,46,106,115,32,60,32,54,46,92,110,32,32,32,32,105,102,32,40,40,68,97,116,97,86,105,101,119,32,38,38,32,103,101,116,84,97,103,40,110,101,119,32,68,97,116,97,86,105,101,119,40,110,101,119,32,65,114,114,97,121,66,117,102,102,101,114,40,49,41,41,41,32,33,61,32,100,97,116,97,86,105,101,119,84,97,103,41,32,124,124,92,110,32,32,32,32,32,32,32,32,40,77,97,112,32,38,38,32,103,101,116,84,97,103,40,110,101,119,32,77,97,112,41,32,33,61,32,109,97,112,84,97,103,41,32,124,124,92,110,32,32,32,32,32,32,32,32,40,80,114,111,109,105,115,101,32,38,38,32,103,101,116,84,97,103,40,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,41,32,33,61,32,112,114,111,109,105,115,101,84,97,103,41,32,124,124,92,110,32,32,32,32,32,32,32,32,40,83,101,116,32,38,38,32,103,101,116,84,97,103,40,110,101,119,32,83,101,116,41,32,33,61,32,115,101,116,84,97,103,41,32,124,124,92,110,32,32,32,32,32,32,32,32,40,87,101,97,107,77,97,112,32,38,38,32,103,101,116,84,97,103,40,110,101,119,32,87,101,97,107,77,97,112,41,32,33,61,32,119,101,97,107,77,97,112,84,97,103,41,41,32,123,92,110,32,32,32,32,32,32,103,101,116,84,97,103,32,61,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,67,116,111,114,32,61,32,114,101,115,117,108,116,32,61,61,32,111,98,106,101,99,116,84,97,103,32,63,32,118,97,108,117,101,46,99,111,110,115,116,114,117,99,116,111,114,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,116,111,114,83,116,114,105,110,103,32,61,32,67,116,111,114,32,63,32,116,111,83,111,117,114,99,101,40,67,116,111,114,41,32,58,32,39,39,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,116,111,114,83,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,99,116,111,114,83,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,100,97,116,97,86,105,101,119,67,116,111,114,83,116,114,105,110,103,58,32,114,101,116,117,114,110,32,100,97,116,97,86,105,101,119,84,97,103,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,109,97,112,67,116,111,114,83,116,114,105,110,103,58,32,114,101,116,117,114,110,32,109,97,112,84,97,103,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,112,114,111,109,105,115,101,67,116,111,114,83,116,114,105,110,103,58,32,114,101,116,117,114,110,32,112,114,111,109,105,115,101,84,97,103,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,115,101,116,67,116,111,114,83,116,114,105,110,103,58,32,114,101,116,117,114,110,32,115,101,116,84,97,103,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,119,101,97,107,77,97,112,67,116,111,114,83,116,114,105,110,103,58,32,114,101,116,117,114,110,32,119,101,97,107,77,97,112,84,97,103,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,118,105,101,119,44,32,97,112,112,108,121,105,110,103,32,97,110,121,32,96,116,114,97,110,115,102,111,114,109,115,96,32,116,111,32,116,104,101,32,96,115,116,97,114,116,96,32,97,110,100,32,96,101,110,100,96,32,112,111,115,105,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,115,116,97,114,116,32,84,104,101,32,115,116,97,114,116,32,111,102,32,116,104,101,32,118,105,101,119,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,101,110,100,32,84,104,101,32,101,110,100,32,111,102,32,116,104,101,32,118,105,101,119,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,116,114,97,110,115,102,111,114,109,115,32,84,104,101,32,116,114,97,110,115,102,111,114,109,97,116,105,111,110,115,32,116,111,32,97,112,112,108,121,32,116,111,32,116,104,101,32,118,105,101,119,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,97,110,32,111,98,106,101,99,116,32,99,111,110,116,97,105,110,105,110,103,32,116,104,101,32,96,115,116,97,114,116,96,32,97,110,100,32,96,101,110,100,96,92,110,32,32,32,32,32,42,32,32,112,111,115,105,116,105,111,110,115,32,111,102,32,116,104,101,32,118,105,101,119,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,86,105,101,119,40,115,116,97,114,116,44,32,101,110,100,44,32,116,114,97,110,115,102,111,114,109,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,116,114,97,110,115,102,111,114,109,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,116,114,97,110,115,102,111,114,109,115,91,105,110,100,101,120,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,32,61,32,100,97,116,97,46,115,105,122,101,59,92,110,92,110,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,100,97,116,97,46,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,100,114,111,112,39,58,32,32,32,32,32,32,115,116,97,114,116,32,43,61,32,115,105,122,101,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,100,114,111,112,82,105,103,104,116,39,58,32,101,110,100,32,45,61,32,115,105,122,101,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,116,97,107,101,39,58,32,32,32,32,32,32,101,110,100,32,61,32,110,97,116,105,118,101,77,105,110,40,101,110,100,44,32,115,116,97,114,116,32,43,32,115,105,122,101,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,39,116,97,107,101,82,105,103,104,116,39,58,32,115,116,97,114,116,32,61,32,110,97,116,105,118,101,77,97,120,40,115,116,97,114,116,44,32,101,110,100,32,45,32,115,105,122,101,41,59,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,32,39,115,116,97,114,116,39,58,32,115,116,97,114,116,44,32,39,101,110,100,39,58,32,101,110,100,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,69,120,116,114,97,99,116,115,32,119,114,97,112,112,101,114,32,100,101,116,97,105,108,115,32,102,114,111,109,32,116,104,101,32,96,115,111,117,114,99,101,96,32,98,111,100,121,32,99,111,109,109,101,110,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,111,117,114,99,101,32,84,104,101,32,115,111,117,114,99,101,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,119,114,97,112,112,101,114,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,87,114,97,112,68,101,116,97,105,108,115,40,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,32,61,32,115,111,117,114,99,101,46,109,97,116,99,104,40,114,101,87,114,97,112,68,101,116,97,105,108,115,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,116,99,104,32,63,32,109,97,116,99,104,91,49,93,46,115,112,108,105,116,40,114,101,83,112,108,105,116,68,101,116,97,105,108,115,41,32,58,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,112,97,116,104,96,32,101,120,105,115,116,115,32,111,110,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,104,97,115,70,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,104,101,99,107,32,112,114,111,112,101,114,116,105,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,112,97,116,104,96,32,101,120,105,115,116,115,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,97,115,80,97,116,104,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,104,97,115,70,117,110,99,41,32,123,92,110,32,32,32,32,32,32,112,97,116,104,32,61,32,99,97,115,116,80,97,116,104,40,112,97,116,104,44,32,111,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,112,97,116,104,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,116,111,75,101,121,40,112,97,116,104,91,105,110,100,101,120,93,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,114,101,115,117,108,116,32,61,32,111,98,106,101,99,116,32,33,61,32,110,117,108,108,32,38,38,32,104,97,115,70,117,110,99,40,111,98,106,101,99,116,44,32,107,101,121,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,32,61,32,111,98,106,101,99,116,91,107,101,121,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,117,108,116,32,124,124,32,43,43,105,110,100,101,120,32,33,61,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,111,98,106,101,99,116,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,108,101,110,103,116,104,32,38,38,32,105,115,76,101,110,103,116,104,40,108,101,110,103,116,104,41,32,38,38,32,105,115,73,110,100,101,120,40,107,101,121,44,32,108,101,110,103,116,104,41,32,38,38,92,110,32,32,32,32,32,32,32,32,40,105,115,65,114,114,97,121,40,111,98,106,101,99,116,41,32,124,124,32,105,115,65,114,103,117,109,101,110,116,115,40,111,98,106,101,99,116,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,73,110,105,116,105,97,108,105,122,101,115,32,97,110,32,97,114,114,97,121,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,105,116,105,97,108,105,122,101,100,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,67,108,111,110,101,65,114,114,97,121,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,110,101,119,32,97,114,114,97,121,46,99,111,110,115,116,114,117,99,116,111,114,40,108,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,65,100,100,32,112,114,111,112,101,114,116,105,101,115,32,97,115,115,105,103,110,101,100,32,98,121,32,96,82,101,103,69,120,112,35,101,120,101,99,96,46,92,110,32,32,32,32,32,32,105,102,32,40,108,101,110,103,116,104,32,38,38,32,116,121,112,101,111,102,32,97,114,114,97,121,91,48,93,32,61,61,32,39,115,116,114,105,110,103,39,32,38,38,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,97,114,114,97,121,44,32,39,105,110,100,101,120,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,105,110,100,101,120,32,61,32,97,114,114,97,121,46,105,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,105,110,112,117,116,32,61,32,97,114,114,97,121,46,105,110,112,117,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,73,110,105,116,105,97,108,105,122,101,115,32,97,110,32,111,98,106,101,99,116,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,105,116,105,97,108,105,122,101,100,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,67,108,111,110,101,79,98,106,101,99,116,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,116,121,112,101,111,102,32,111,98,106,101,99,116,46,99,111,110,115,116,114,117,99,116,111,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,33,105,115,80,114,111,116,111,116,121,112,101,40,111,98,106,101,99,116,41,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,67,114,101,97,116,101,40,103,101,116,80,114,111,116,111,116,121,112,101,40,111,98,106,101,99,116,41,41,92,110,32,32,32,32,32,32,32,32,58,32,123,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,73,110,105,116,105,97,108,105,122,101,115,32,97,110,32,111,98,106,101,99,116,32,99,108,111,110,101,32,98,97,115,101,100,32,111,110,32,105,116,115,32,96,116,111,83,116,114,105,110,103,84,97,103,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,111,110,108,121,32,115,117,112,112,111,114,116,115,32,99,108,111,110,105,110,103,32,118,97,108,117,101,115,32,119,105,116,104,32,116,97,103,115,32,111,102,92,110,32,32,32,32,32,42,32,96,66,111,111,108,101,97,110,96,44,32,96,68,97,116,101,96,44,32,96,69,114,114,111,114,96,44,32,96,77,97,112,96,44,32,96,78,117,109,98,101,114,96,44,32,96,82,101,103,69,120,112,96,44,32,96,83,101,116,96,44,32,111,114,32,96,83,116,114,105,110,103,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,116,97,103,32,84,104,101,32,96,116,111,83,116,114,105,110,103,84,97,103,96,32,111,102,32,116,104,101,32,111,98,106,101,99,116,32,116,111,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,105,115,68,101,101,112,93,32,83,112,101,99,105,102,121,32,97,32,100,101,101,112,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,105,116,105,97,108,105,122,101,100,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,67,108,111,110,101,66,121,84,97,103,40,111,98,106,101,99,116,44,32,116,97,103,44,32,105,115,68,101,101,112,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,67,116,111,114,32,61,32,111,98,106,101,99,116,46,99,111,110,115,116,114,117,99,116,111,114,59,92,110,32,32,32,32,32,32,115,119,105,116,99,104,32,40,116,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,97,114,114,97,121,66,117,102,102,101,114,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,111,110,101,65,114,114,97,121,66,117,102,102,101,114,40,111,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,98,111,111,108,84,97,103,58,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,100,97,116,101,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,67,116,111,114,40,43,111,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,100,97,116,97,86,105,101,119,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,111,110,101,68,97,116,97,86,105,101,119,40,111,98,106,101,99,116,44,32,105,115,68,101,101,112,41,59,92,110,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,102,108,111,97,116,51,50,84,97,103,58,32,99,97,115,101,32,102,108,111,97,116,54,52,84,97,103,58,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,105,110,116,56,84,97,103,58,32,99,97,115,101,32,105,110,116,49,54,84,97,103,58,32,99,97,115,101,32,105,110,116,51,50,84,97,103,58,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,117,105,110,116,56,84,97,103,58,32,99,97,115,101,32,117,105,110,116,56,67,108,97,109,112,101,100,84,97,103,58,32,99,97,115,101,32,117,105,110,116,49,54,84,97,103,58,32,99,97,115,101,32,117,105,110,116,51,50,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,111,110,101,84,121,112,101,100,65,114,114,97,121,40,111,98,106,101,99,116,44,32,105,115,68,101,101,112,41,59,92,110,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,109,97,112,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,67,116,111,114,59,92,110,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,110,117,109,98,101,114,84,97,103,58,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,115,116,114,105,110,103,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,67,116,111,114,40,111,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,114,101,103,101,120,112,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,111,110,101,82,101,103,69,120,112,40,111,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,115,101,116,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,67,116,111,114,59,92,110,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,115,121,109,98,111,108,84,97,103,58,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,108,111,110,101,83,121,109,98,111,108,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,73,110,115,101,114,116,115,32,119,114,97,112,112,101,114,32,96,100,101,116,97,105,108,115,96,32,105,110,32,97,32,99,111,109,109,101,110,116,32,97,116,32,116,104,101,32,116,111,112,32,111,102,32,116,104,101,32,96,115,111,117,114,99,101,96,32,98,111,100,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,111,117,114,99,101,32,84,104,101,32,115,111,117,114,99,101,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,100,101,116,97,105,108,115,32,84,104,101,32,100,101,116,97,105,108,115,32,116,111,32,105,110,115,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,109,111,100,105,102,105,101,100,32,115,111,117,114,99,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,115,101,114,116,87,114,97,112,68,101,116,97,105,108,115,40,115,111,117,114,99,101,44,32,100,101,116,97,105,108,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,100,101,116,97,105,108,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,111,117,114,99,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,108,97,115,116,73,110,100,101,120,32,61,32,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,32,32,100,101,116,97,105,108,115,91,108,97,115,116,73,110,100,101,120,93,32,61,32,40,108,101,110,103,116,104,32,62,32,49,32,63,32,39,38,32,39,32,58,32,39,39,41,32,43,32,100,101,116,97,105,108,115,91,108,97,115,116,73,110,100,101,120,93,59,92,110,32,32,32,32,32,32,100,101,116,97,105,108,115,32,61,32,100,101,116,97,105,108,115,46,106,111,105,110,40,108,101,110,103,116,104,32,62,32,50,32,63,32,39,44,32,39,32,58,32,39,32,39,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,111,117,114,99,101,46,114,101,112,108,97,99,101,40,114,101,87,114,97,112,67,111,109,109,101,110,116,44,32,39,123,92,92,110,47,42,32,91,119,114,97,112,112,101,100,32,119,105,116,104,32,39,32,43,32,100,101,116,97,105,108,115,32,43,32,39,93,32,42,47,92,92,110,39,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,102,108,97,116,116,101,110,97,98,108,101,32,96,97,114,103,117,109,101,110,116,115,96,32,111,98,106,101,99,116,32,111,114,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,102,108,97,116,116,101,110,97,98,108,101,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,70,108,97,116,116,101,110,97,98,108,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,65,114,114,97,121,40,118,97,108,117,101,41,32,124,124,32,105,115,65,114,103,117,109,101,110,116,115,40,118,97,108,117,101,41,32,124,124,92,110,32,32,32,32,32,32,32,32,33,33,40,115,112,114,101,97,100,97,98,108,101,83,121,109,98,111,108,32,38,38,32,118,97,108,117,101,32,38,38,32,118,97,108,117,101,91,115,112,114,101,97,100,97,98,108,101,83,121,109,98,111,108,93,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,118,97,108,105,100,32,97,114,114,97,121,45,108,105,107,101,32,105,110,100,101,120,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,108,101,110,103,116,104,61,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,93,32,84,104,101,32,117,112,112,101,114,32,98,111,117,110,100,115,32,111,102,32,97,32,118,97,108,105,100,32,105,110,100,101,120,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,118,97,108,105,100,32,105,110,100,101,120,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,73,110,100,101,120,40,118,97,108,117,101,44,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,116,121,112,101,111,102,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,108,101,110,103,116,104,32,61,61,32,110,117,108,108,32,63,32,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,32,58,32,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,108,101,110,103,116,104,32,38,38,92,110,32,32,32,32,32,32,32,32,40,116,121,112,101,32,61,61,32,39,110,117,109,98,101,114,39,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,40,116,121,112,101,32,33,61,32,39,115,121,109,98,111,108,39,32,38,38,32,114,101,73,115,85,105,110,116,46,116,101,115,116,40,118,97,108,117,101,41,41,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,118,97,108,117,101,32,62,32,45,49,32,38,38,32,118,97,108,117,101,32,37,32,49,32,61,61,32,48,32,38,38,32,118,97,108,117,101,32,60,32,108,101,110,103,116,104,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,116,104,101,32,103,105,118,101,110,32,97,114,103,117,109,101,110,116,115,32,97,114,101,32,102,114,111,109,32,97,110,32,105,116,101,114,97,116,101,101,32,99,97,108,108,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,112,111,116,101,110,116,105,97,108,32,105,116,101,114,97,116,101,101,32,118,97,108,117,101,32,97,114,103,117,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,105,110,100,101,120,32,84,104,101,32,112,111,116,101,110,116,105,97,108,32,105,116,101,114,97,116,101,101,32,105,110,100,101,120,32,111,114,32,107,101,121,32,97,114,103,117,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,111,98,106,101,99,116,32,84,104,101,32,112,111,116,101,110,116,105,97,108,32,105,116,101,114,97,116,101,101,32,111,98,106,101,99,116,32,97,114,103,117,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,97,114,103,117,109,101,110,116,115,32,97,114,101,32,102,114,111,109,32,97,110,32,105,116,101,114,97,116,101,101,32,99,97,108,108,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,111,98,106,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,116,121,112,101,111,102,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,32,39,110,117,109,98,101,114,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,105,115,65,114,114,97,121,76,105,107,101,40,111,98,106,101,99,116,41,32,38,38,32,105,115,73,110,100,101,120,40,105,110,100,101,120,44,32,111,98,106,101,99,116,46,108,101,110,103,116,104,41,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,40,116,121,112,101,32,61,61,32,39,115,116,114,105,110,103,39,32,38,38,32,105,110,100,101,120,32,105,110,32,111,98,106,101,99,116,41,92,110,32,32,32,32,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,113,40,111,98,106,101,99,116,91,105,110,100,101,120,93,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,112,114,111,112,101,114,116,121,32,110,97,109,101,32,97,110,100,32,110,111,116,32,97,32,112,114,111,112,101,114,116,121,32,112,97,116,104,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,98,106,101,99,116,93,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,32,107,101,121,115,32,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,112,114,111,112,101,114,116,121,32,110,97,109,101,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,75,101,121,40,118,97,108,117,101,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,116,121,112,101,111,102,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,32,39,110,117,109,98,101,114,39,32,124,124,32,116,121,112,101,32,61,61,32,39,115,121,109,98,111,108,39,32,124,124,32,116,121,112,101,32,61,61,32,39,98,111,111,108,101,97,110,39,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,61,32,110,117,108,108,32,124,124,32,105,115,83,121,109,98,111,108,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,73,115,80,108,97,105,110,80,114,111,112,46,116,101,115,116,40,118,97,108,117,101,41,32,124,124,32,33,114,101,73,115,68,101,101,112,80,114,111,112,46,116,101,115,116,40,118,97,108,117,101,41,32,124,124,92,110,32,32,32,32,32,32,32,32,40,111,98,106,101,99,116,32,33,61,32,110,117,108,108,32,38,38,32,118,97,108,117,101,32,105,110,32,79,98,106,101,99,116,40,111,98,106,101,99,116,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,115,117,105,116,97,98,108,101,32,102,111,114,32,117,115,101,32,97,115,32,117,110,105,113,117,101,32,111,98,106,101,99,116,32,107,101,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,115,117,105,116,97,98,108,101,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,75,101,121,97,98,108,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,116,121,112,101,111,102,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,116,121,112,101,32,61,61,32,39,115,116,114,105,110,103,39,32,124,124,32,116,121,112,101,32,61,61,32,39,110,117,109,98,101,114,39,32,124,124,32,116,121,112,101,32,61,61,32,39,115,121,109,98,111,108,39,32,124,124,32,116,121,112,101,32,61,61,32,39,98,111,111,108,101,97,110,39,41,92,110,32,32,32,32,32,32,32,32,63,32,40,118,97,108,117,101,32,33,61,61,32,39,95,95,112,114,111,116,111,95,95,39,41,92,110,32,32,32,32,32,32,32,32,58,32,40,118,97,108,117,101,32,61,61,61,32,110,117,108,108,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,102,117,110,99,96,32,104,97,115,32,97,32,108,97,122,121,32,99,111,117,110,116,101,114,112,97,114,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,102,117,110,99,96,32,104,97,115,32,97,32,108,97,122,121,32,99,111,117,110,116,101,114,112,97,114,116,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,76,97,122,105,97,98,108,101,40,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,78,97,109,101,32,61,32,103,101,116,70,117,110,99,78,97,109,101,40,102,117,110,99,41,44,92,110,32,32,32,32,32,32,32,32,32,32,111,116,104,101,114,32,61,32,108,111,100,97,115,104,91,102,117,110,99,78,97,109,101,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,111,116,104,101,114,32,33,61,32,39,102,117,110,99,116,105,111,110,39,32,124,124,32,33,40,102,117,110,99,78,97,109,101,32,105,110,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,102,117,110,99,32,61,61,61,32,111,116,104,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,103,101,116,68,97,116,97,40,111,116,104,101,114,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,100,97,116,97,32,38,38,32,102,117,110,99,32,61,61,61,32,100,97,116,97,91,48,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,102,117,110,99,96,32,104,97,115,32,105,116,115,32,115,111,117,114,99,101,32,109,97,115,107,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,102,117,110,99,96,32,105,115,32,109,97,115,107,101,100,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,77,97,115,107,101,100,40,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,109,97,115,107,83,114,99,75,101,121,32,38,38,32,40,109,97,115,107,83,114,99,75,101,121,32,105,110,32,102,117,110,99,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,102,117,110,99,96,32,105,115,32,99,97,112,97,98,108,101,32,111,102,32,98,101,105,110,103,32,109,97,115,107,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,102,117,110,99,96,32,105,115,32,109,97,115,107,97,98,108,101,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,115,77,97,115,107,97,98,108,101,32,61,32,99,111,114,101,74,115,68,97,116,97,32,63,32,105,115,70,117,110,99,116,105,111,110,32,58,32,115,116,117,98,70,97,108,115,101,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,108,105,107,101,108,121,32,97,32,112,114,111,116,111,116,121,112,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,112,114,111,116,111,116,121,112,101,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,80,114,111,116,111,116,121,112,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,67,116,111,114,32,61,32,118,97,108,117,101,32,38,38,32,118,97,108,117,101,46,99,111,110,115,116,114,117,99,116,111,114,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,116,111,32,61,32,40,116,121,112,101,111,102,32,67,116,111,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,67,116,111,114,46,112,114,111,116,111,116,121,112,101,41,32,124,124,32,111,98,106,101,99,116,80,114,111,116,111,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,112,114,111,116,111,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,115,117,105,116,97,98,108,101,32,102,111,114,32,115,116,114,105,99,116,32,101,113,117,97,108,105,116,121,32,99,111,109,112,97,114,105,115,111,110,115,44,32,105,46,101,46,32,96,61,61,61,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,102,32,115,117,105,116,97,98,108,101,32,102,111,114,32,115,116,114,105,99,116,92,110,32,32,32,32,32,42,32,32,101,113,117,97,108,105,116,121,32,99,111,109,112,97,114,105,115,111,110,115,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,83,116,114,105,99,116,67,111,109,112,97,114,97,98,108,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,118,97,108,117,101,32,38,38,32,33,105,115,79,98,106,101,99,116,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,102,111,114,32,115,111,117,114,99,101,32,118,97,108,117,101,115,32,115,117,105,116,97,98,108,101,92,110,32,32,32,32,32,42,32,102,111,114,32,115,116,114,105,99,116,32,101,113,117,97,108,105,116,121,32,99,111,109,112,97,114,105,115,111,110,115,44,32,105,46,101,46,32,96,61,61,61,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,103,101,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,115,114,99,86,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,109,97,116,99,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,115,112,101,99,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,116,99,104,101,115,83,116,114,105,99,116,67,111,109,112,97,114,97,98,108,101,40,107,101,121,44,32,115,114,99,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,111,98,106,101,99,116,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,91,107,101,121,93,32,61,61,61,32,115,114,99,86,97,108,117,101,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,40,115,114,99,86,97,108,117,101,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,32,40,107,101,121,32,105,110,32,79,98,106,101,99,116,40,111,98,106,101,99,116,41,41,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,109,101,109,111,105,122,101,96,32,119,104,105,99,104,32,99,108,101,97,114,115,32,116,104,101,32,109,101,109,111,105,122,101,100,32,102,117,110,99,116,105,111,110,39,115,92,110,32,32,32,32,32,42,32,99,97,99,104,101,32,119,104,101,110,32,105,116,32,101,120,99,101,101,100,115,32,96,77,65,88,95,77,69,77,79,73,90,69,95,83,73,90,69,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,104,97,118,101,32,105,116,115,32,111,117,116,112,117,116,32,109,101,109,111,105,122,101,100,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,109,101,109,111,105,122,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,101,109,111,105,122,101,67,97,112,112,101,100,40,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,109,101,109,111,105,122,101,40,102,117,110,99,44,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,97,99,104,101,46,115,105,122,101,32,61,61,61,32,77,65,88,95,77,69,77,79,73,90,69,95,83,73,90,69,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,97,99,104,101,46,99,108,101,97,114,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,107,101,121,59,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,97,99,104,101,32,61,32,114,101,115,117,108,116,46,99,97,99,104,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,77,101,114,103,101,115,32,116,104,101,32,102,117,110,99,116,105,111,110,32,109,101,116,97,100,97,116,97,32,111,102,32,96,115,111,117,114,99,101,96,32,105,110,116,111,32,96,100,97,116,97,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,77,101,114,103,105,110,103,32,109,101,116,97,100,97,116,97,32,114,101,100,117,99,101,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,119,114,97,112,112,101,114,115,32,117,115,101,100,32,116,111,32,105,110,118,111,107,101,32,97,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,84,104,105,115,32,105,115,32,112,111,115,115,105,98,108,101,32,98,101,99,97,117,115,101,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,98,105,110,100,96,44,32,96,95,46,99,117,114,114,121,96,44,32,97,110,100,32,96,95,46,112,97,114,116,105,97,108,96,92,110,32,32,32,32,32,42,32,109,97,121,32,98,101,32,97,112,112,108,105,101,100,32,114,101,103,97,114,100,108,101,115,115,32,111,102,32,101,120,101,99,117,116,105,111,110,32,111,114,100,101,114,46,32,77,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,97,114,121,96,32,97,110,100,92,110,32,32,32,32,32,42,32,96,95,46,114,101,97,114,103,96,32,109,111,100,105,102,121,32,102,117,110,99,116,105,111,110,32,97,114,103,117,109,101,110,116,115,44,32,109,97,107,105,110,103,32,116,104,101,32,111,114,100,101,114,32,105,110,32,119,104,105,99,104,32,116,104,101,121,32,97,114,101,92,110,32,32,32,32,32,42,32,101,120,101,99,117,116,101,100,32,105,109,112,111,114,116,97,110,116,44,32,112,114,101,118,101,110,116,105,110,103,32,116,104,101,32,109,101,114,103,105,110,103,32,111,102,32,109,101,116,97,100,97,116,97,46,32,72,111,119,101,118,101,114,44,32,119,101,32,109,97,107,101,92,110,32,32,32,32,32,42,32,97,110,32,101,120,99,101,112,116,105,111,110,32,102,111,114,32,97,32,115,97,102,101,32,99,111,109,98,105,110,101,100,32,99,97,115,101,32,119,104,101,114,101,32,99,117,114,114,105,101,100,32,102,117,110,99,116,105,111,110,115,32,104,97,118,101,32,96,95,46,97,114,121,96,92,110,32,32,32,32,32,42,32,97,110,100,32,111,114,32,96,95,46,114,101,97,114,103,96,32,97,112,112,108,105,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,100,97,116,97,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,109,101,116,97,100,97,116,97,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,115,111,117,114,99,101,32,84,104,101,32,115,111,117,114,99,101,32,109,101,116,97,100,97,116,97,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,100,97,116,97,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,101,114,103,101,68,97,116,97,40,100,97,116,97,44,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,105,116,109,97,115,107,32,61,32,100,97,116,97,91,49,93,44,92,110,32,32,32,32,32,32,32,32,32,32,115,114,99,66,105,116,109,97,115,107,32,61,32,115,111,117,114,99,101,91,49,93,44,92,110,32,32,32,32,32,32,32,32,32,32,110,101,119,66,105,116,109,97,115,107,32,61,32,98,105,116,109,97,115,107,32,124,32,115,114,99,66,105,116,109,97,115,107,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,67,111,109,109,111,110,32,61,32,110,101,119,66,105,116,109,97,115,107,32,60,32,40,87,82,65,80,95,66,73,78,68,95,70,76,65,71,32,124,32,87,82,65,80,95,66,73,78,68,95,75,69,89,95,70,76,65,71,32,124,32,87,82,65,80,95,65,82,89,95,70,76,65,71,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,115,67,111,109,98,111,32,61,92,110,32,32,32,32,32,32,32,32,40,40,115,114,99,66,105,116,109,97,115,107,32,61,61,32,87,82,65,80,95,65,82,89,95,70,76,65,71,41,32,38,38,32,40,98,105,116,109,97,115,107,32,61,61,32,87,82,65,80,95,67,85,82,82,89,95,70,76,65,71,41,41,32,124,124,92,110,32,32,32,32,32,32,32,32,40,40,115,114,99,66,105,116,109,97,115,107,32,61,61,32,87,82,65,80,95,65,82,89,95,70,76,65,71,41,32,38,38,32,40,98,105,116,109,97,115,107,32,61,61,32,87,82,65,80,95,82,69,65,82,71,95,70,76,65,71,41,32,38,38,32,40,100,97,116,97,91,55,93,46,108,101,110,103,116,104,32,60,61,32,115,111,117,114,99,101,91,56,93,41,41,32,124,124,92,110,32,32,32,32,32,32,32,32,40,40,115,114,99,66,105,116,109,97,115,107,32,61,61,32,40,87,82,65,80,95,65,82,89,95,70,76,65,71,32,124,32,87,82,65,80,95,82,69,65,82,71,95,70,76,65,71,41,41,32,38,38,32,40,115,111,117,114,99,101,91,55,93,46,108,101,110,103,116,104,32,60,61,32,115,111,117,114,99,101,91,56,93,41,32,38,38,32,40,98,105,116,109,97,115,107,32,61,61,32,87,82,65,80,95,67,85,82,82,89,95,70,76,65,71,41,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,69,120,105,116,32,101,97,114,108,121,32,105,102,32,109,101,116,97,100,97,116,97,32,99,97,110,39,116,32,98,101,32,109,101,114,103,101,100,46,92,110,32,32,32,32,32,32,105,102,32,40,33,40,105,115,67,111,109,109,111,110,32,124,124,32,105,115,67,111,109,98,111,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,85,115,101,32,115,111,117,114,99,101,32,96,116,104,105,115,65,114,103,96,32,105,102,32,97,118,97,105,108,97,98,108,101,46,92,110,32,32,32,32,32,32,105,102,32,40,115,114,99,66,105,116,109,97,115,107,32,38,32,87,82,65,80,95,66,73,78,68,95,70,76,65,71,41,32,123,92,110,32,32,32,32,32,32,32,32,100,97,116,97,91,50,93,32,61,32,115,111,117,114,99,101,91,50,93,59,92,110,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,119,104,101,110,32,99,117,114,114,121,105,110,103,32,97,32,98,111,117,110,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,110,101,119,66,105,116,109,97,115,107,32,124,61,32,98,105,116,109,97,115,107,32,38,32,87,82,65,80,95,66,73,78,68,95,70,76,65,71,32,63,32,48,32,58,32,87,82,65,80,95,67,85,82,82,89,95,66,79,85,78,68,95,70,76,65,71,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,67,111,109,112,111,115,101,32,112,97,114,116,105,97,108,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,115,111,117,114,99,101,91,51,93,59,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,97,114,116,105,97,108,115,32,61,32,100,97,116,97,91,51,93,59,92,110,32,32,32,32,32,32,32,32,100,97,116,97,91,51,93,32,61,32,112,97,114,116,105,97,108,115,32,63,32,99,111,109,112,111,115,101,65,114,103,115,40,112,97,114,116,105,97,108,115,44,32,118,97,108,117,101,44,32,115,111,117,114,99,101,91,52,93,41,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,100,97,116,97,91,52,93,32,61,32,112,97,114,116,105,97,108,115,32,63,32,114,101,112,108,97,99,101,72,111,108,100,101,114,115,40,100,97,116,97,91,51,93,44,32,80,76,65,67,69,72,79,76,68,69,82,41,32,58,32,115,111,117,114,99,101,91,52,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,67,111,109,112,111,115,101,32,112,97,114,116,105,97,108,32,114,105,103,104,116,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,115,111,117,114,99,101,91,53,93,59,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,112,97,114,116,105,97,108,115,32,61,32,100,97,116,97,91,53,93,59,92,110,32,32,32,32,32,32,32,32,100,97,116,97,91,53,93,32,61,32,112,97,114,116,105,97,108,115,32,63,32,99,111,109,112,111,115,101,65,114,103,115,82,105,103,104,116,40,112,97,114,116,105,97,108,115,44,32,118,97,108,117,101,44,32,115,111,117,114,99,101,91,54,93,41,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,100,97,116,97,91,54,93,32,61,32,112,97,114,116,105,97,108,115,32,63,32,114,101,112,108,97,99,101,72,111,108,100,101,114,115,40,100,97,116,97,91,53,93,44,32,80,76,65,67,69,72,79,76,68,69,82,41,32,58,32,115,111,117,114,99,101,91,54,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,85,115,101,32,115,111,117,114,99,101,32,96,97,114,103,80,111,115,96,32,105,102,32,97,118,97,105,108,97,98,108,101,46,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,115,111,117,114,99,101,91,55,93,59,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,100,97,116,97,91,55,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,85,115,101,32,115,111,117,114,99,101,32,96,97,114,121,96,32,105,102,32,105,116,39,115,32,115,109,97,108,108,101,114,46,92,110,32,32,32,32,32,32,105,102,32,40,115,114,99,66,105,116,109,97,115,107,32,38,32,87,82,65,80,95,65,82,89,95,70,76,65,71,41,32,123,92,110,32,32,32,32,32,32,32,32,100,97,116,97,91,56,93,32,61,32,100,97,116,97,91,56,93,32,61,61,32,110,117,108,108,32,63,32,115,111,117,114,99,101,91,56,93,32,58,32,110,97,116,105,118,101,77,105,110,40,100,97,116,97,91,56,93,44,32,115,111,117,114,99,101,91,56,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,85,115,101,32,115,111,117,114,99,101,32,96,97,114,105,116,121,96,32,105,102,32,111,110,101,32,105,115,32,110,111,116,32,112,114,111,118,105,100,101,100,46,92,110,32,32,32,32,32,32,105,102,32,40,100,97,116,97,91,57,93,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,100,97,116,97,91,57,93,32,61,32,115,111,117,114,99,101,91,57,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,85,115,101,32,115,111,117,114,99,101,32,96,102,117,110,99,96,32,97,110,100,32,109,101,114,103,101,32,98,105,116,109,97,115,107,115,46,92,110,32,32,32,32,32,32,100,97,116,97,91,48,93,32,61,32,115,111,117,114,99,101,91,48,93,59,92,110,32,32,32,32,32,32,100,97,116,97,91,49,93,32,61,32,110,101,119,66,105,116,109,97,115,107,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,105,115,32,108,105,107,101,92,110,32,32,32,32,32,42,32,91,96,79,98,106,101,99,116,46,107,101,121,115,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,111,98,106,101,99,116,46,107,101,121,115,41,92,110,32,32,32,32,32,42,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,105,110,99,108,117,100,101,115,32,105,110,104,101,114,105,116,101,100,32,101,110,117,109,101,114,97,98,108,101,32,112,114,111,112,101,114,116,105,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,110,97,116,105,118,101,75,101,121,115,73,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,105,102,32,40,111,98,106,101,99,116,32,33,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,79,98,106,101,99,116,40,111,98,106,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,118,97,108,117,101,96,32,116,111,32,97,32,115,116,114,105,110,103,32,117,115,105,110,103,32,96,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,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,111,98,106,101,99,116,84,111,83,116,114,105,110,103,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,97,116,105,118,101,79,98,106,101,99,116,84,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,98,97,115,101,82,101,115,116,96,32,119,104,105,99,104,32,116,114,97,110,115,102,111,114,109,115,32,116,104,101,32,114,101,115,116,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,97,112,112,108,121,32,97,32,114,101,115,116,32,112,97,114,97,109,101,116,101,114,32,116,111,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,115,116,97,114,116,61,102,117,110,99,46,108,101,110,103,116,104,45,49,93,32,84,104,101,32,115,116,97,114,116,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,114,101,115,116,32,112,97,114,97,109,101,116,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,116,114,97,110,115,102,111,114,109,32,84,104,101,32,114,101,115,116,32,97,114,114,97,121,32,116,114,97,110,115,102,111,114,109,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,111,118,101,114,82,101,115,116,40,102,117,110,99,44,32,115,116,97,114,116,44,32,116,114,97,110,115,102,111,114,109,41,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,32,61,32,110,97,116,105,118,101,77,97,120,40,115,116,97,114,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,40,102,117,110,99,46,108,101,110,103,116,104,32,45,32,49,41,32,58,32,115,116,97,114,116,44,32,48,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,110,97,116,105,118,101,77,97,120,40,97,114,103,115,46,108,101,110,103,116,104,32,45,32,115,116,97,114,116,44,32,48,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,114,114,97,121,32,61,32,65,114,114,97,121,40,108,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,114,97,121,91,105,110,100,101,120,93,32,61,32,97,114,103,115,91,115,116,97,114,116,32,43,32,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,45,49,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,116,104,101,114,65,114,103,115,32,61,32,65,114,114,97,121,40,115,116,97,114,116,32,43,32,49,41,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,115,116,97,114,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,111,116,104,101,114,65,114,103,115,91,105,110,100,101,120,93,32,61,32,97,114,103,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,111,116,104,101,114,65,114,103,115,91,115,116,97,114,116,93,32,61,32,116,114,97,110,115,102,111,114,109,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,112,112,108,121,40,102,117,110,99,44,32,116,104,105,115,44,32,111,116,104,101,114,65,114,103,115,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,112,97,114,101,110,116,32,118,97,108,117,101,32,97,116,32,96,112,97,116,104,96,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,116,111,32,103,101,116,32,116,104,101,32,112,97,114,101,110,116,32,118,97,108,117,101,32,111,102,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,112,97,114,101,110,116,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,114,101,110,116,40,111,98,106,101,99,116,44,32,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,116,104,46,108,101,110,103,116,104,32,60,32,50,32,63,32,111,98,106,101,99,116,32,58,32,98,97,115,101,71,101,116,40,111,98,106,101,99,116,44,32,98,97,115,101,83,108,105,99,101,40,112,97,116,104,44,32,48,44,32,45,49,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,111,114,100,101,114,32,96,97,114,114,97,121,96,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,105,110,100,101,120,101,115,32,119,104,101,114,101,32,116,104,101,32,101,108,101,109,101,110,116,32,97,116,92,110,32,32,32,32,32,42,32,116,104,101,32,102,105,114,115,116,32,105,110,100,101,120,32,105,115,32,97,115,115,105,103,110,101,100,32,97,115,32,116,104,101,32,102,105,114,115,116,32,101,108,101,109,101,110,116,44,32,116,104,101,32,101,108,101,109,101,110,116,32,97,116,92,110,32,32,32,32,32,42,32,116,104,101,32,115,101,99,111,110,100,32,105,110,100,101,120,32,105,115,32,97,115,115,105,103,110,101,100,32,97,115,32,116,104,101,32,115,101,99,111,110,100,32,101,108,101,109,101,110,116,44,32,97,110,100,32,115,111,32,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,114,101,111,114,100,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,105,110,100,101,120,101,115,32,84,104,101,32,97,114,114,97,110,103,101,100,32,97,114,114,97,121,32,105,110,100,101,120,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,111,114,100,101,114,40,97,114,114,97,121,44,32,105,110,100,101,120,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,114,114,76,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,110,97,116,105,118,101,77,105,110,40,105,110,100,101,120,101,115,46,108,101,110,103,116,104,44,32,97,114,114,76,101,110,103,116,104,41,44,92,110,32,32,32,32,32,32,32,32,32,32,111,108,100,65,114,114,97,121,32,61,32,99,111,112,121,65,114,114,97,121,40,97,114,114,97,121,41,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,105,110,100,101,120,101,115,91,108,101,110,103,116,104,93,59,92,110,32,32,32,32,32,32,32,32,97,114,114,97,121,91,108,101,110,103,116,104,93,32,61,32,105,115,73,110,100,101,120,40,105,110,100,101,120,44,32,97,114,114,76,101,110,103,116,104,41,32,63,32,111,108,100,65,114,114,97,121,91,105,110,100,101,120,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,118,97,108,117,101,32,97,116,32,96,107,101,121,96,44,32,117,110,108,101,115,115,32,96,107,101,121,96,32,105,115,32,92,34,95,95,112,114,111,116,111,95,95,92,34,32,111,114,32,92,34,99,111,110,115,116,114,117,99,116,111,114,92,34,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,103,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,97,102,101,71,101,116,40,111,98,106,101,99,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,32,61,61,61,32,39,99,111,110,115,116,114,117,99,116,111,114,39,32,38,38,32,116,121,112,101,111,102,32,111,98,106,101,99,116,91,107,101,121,93,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,32,61,61,32,39,95,95,112,114,111,116,111,95,95,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,91,107,101,121,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,83,101,116,115,32,109,101,116,97,100,97,116,97,32,102,111,114,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,73,102,32,116,104,105,115,32,102,117,110,99,116,105,111,110,32,98,101,99,111,109,101,115,32,104,111,116,44,32,105,46,101,46,32,105,115,32,105,110,118,111,107,101,100,32,97,32,108,111,116,32,105,110,32,97,32,115,104,111,114,116,92,110,32,32,32,32,32,42,32,112,101,114,105,111,100,32,111,102,32,116,105,109,101,44,32,105,116,32,119,105,108,108,32,116,114,105,112,32,105,116,115,32,98,114,101,97,107,101,114,32,97,110,100,32,116,114,97,110,115,105,116,105,111,110,32,116,111,32,97,110,32,105,100,101,110,116,105,116,121,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,116,111,32,97,118,111,105,100,32,103,97,114,98,97,103,101,32,99,111,108,108,101,99,116,105,111,110,32,112,97,117,115,101,115,32,105,110,32,86,56,46,32,83,101,101,92,110,32,32,32,32,32,42,32,91,86,56,32,105,115,115,117,101,32,50,48,55,48,93,40,104,116,116,112,115,58,47,47,98,117,103,115,46,99,104,114,111,109,105,117,109,46,111,114,103,47,112,47,118,56,47,105,115,115,117,101,115,47,100,101,116,97,105,108,63,105,100,61,50,48,55,48,41,92,110,32,32,32,32,32,42,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,97,115,115,111,99,105,97,116,101,32,109,101,116,97,100,97,116,97,32,119,105,116,104,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,100,97,116,97,32,84,104,101,32,109,101,116,97,100,97,116,97,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,115,101,116,68,97,116,97,32,61,32,115,104,111,114,116,79,117,116,40,98,97,115,101,83,101,116,68,97,116,97,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,105,109,112,108,101,32,119,114,97,112,112,101,114,32,97,114,111,117,110,100,32,116,104,101,32,103,108,111,98,97,108,32,91,96,115,101,116,84,105,109,101,111,117,116,96,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,115,101,116,84,105,109,101,111,117,116,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,100,101,108,97,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,119,97,105,116,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,111,32,100,101,108,97,121,32,105,110,118,111,99,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,124,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,116,105,109,101,114,32,105,100,32,111,114,32,116,105,109,101,111,117,116,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,115,101,116,84,105,109,101,111,117,116,32,61,32,99,116,120,83,101,116,84,105,109,101,111,117,116,32,124,124,32,102,117,110,99,116,105,111,110,40,102,117,110,99,44,32,119,97,105,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,111,111,116,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,44,32,119,97,105,116,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,83,101,116,115,32,116,104,101,32,96,116,111,83,116,114,105,110,103,96,32,109,101,116,104,111,100,32,111,102,32,96,102,117,110,99,96,32,116,111,32,114,101,116,117,114,110,32,96,115,116,114,105,110,103,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,115,116,114,105,110,103,32,84,104,101,32,96,116,111,83,116,114,105,110,103,96,32,114,101,115,117,108,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,115,101,116,84,111,83,116,114,105,110,103,32,61,32,115,104,111,114,116,79,117,116,40,98,97,115,101,83,101,116,84,111,83,116,114,105,110,103,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,83,101,116,115,32,116,104,101,32,96,116,111,83,116,114,105,110,103,96,32,109,101,116,104,111,100,32,111,102,32,96,119,114,97,112,112,101,114,96,32,116,111,32,109,105,109,105,99,32,116,104,101,32,115,111,117,114,99,101,32,111,102,32,96,114,101,102,101,114,101,110,99,101,96,92,110,32,32,32,32,32,42,32,119,105,116,104,32,119,114,97,112,112,101,114,32,100,101,116,97,105,108,115,32,105,110,32,97,32,99,111,109,109,101,110,116,32,97,116,32,116,104,101,32,116,111,112,32,111,102,32,116,104,101,32,115,111,117,114,99,101,32,98,111,100,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,119,114,97,112,112,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,114,101,102,101,114,101,110,99,101,32,84,104,101,32,114,101,102,101,114,101,110,99,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,98,105,116,109,97,115,107,32,84,104,101,32,98,105,116,109,97,115,107,32,102,108,97,103,115,46,32,83,101,101,32,96,99,114,101,97,116,101,87,114,97,112,96,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,96,119,114,97,112,112,101,114,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,101,116,87,114,97,112,84,111,83,116,114,105,110,103,40,119,114,97,112,112,101,114,44,32,114,101,102,101,114,101,110,99,101,44,32,98,105,116,109,97,115,107,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,111,117,114,99,101,32,61,32,40,114,101,102,101,114,101,110,99,101,32,43,32,39,39,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,101,116,84,111,83,116,114,105,110,103,40,119,114,97,112,112,101,114,44,32,105,110,115,101,114,116,87,114,97,112,68,101,116,97,105,108,115,40,115,111,117,114,99,101,44,32,117,112,100,97,116,101,87,114,97,112,68,101,116,97,105,108,115,40,103,101,116,87,114,97,112,68,101,116,97,105,108,115,40,115,111,117,114,99,101,41,44,32,98,105,116,109,97,115,107,41,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,39,108,108,32,115,104,111,114,116,32,111,117,116,32,97,110,100,32,105,110,118,111,107,101,32,96,105,100,101,110,116,105,116,121,96,32,105,110,115,116,101,97,100,92,110,32,32,32,32,32,42,32,111,102,32,96,102,117,110,99,96,32,119,104,101,110,32,105,116,39,115,32,99,97,108,108,101,100,32,96,72,79,84,95,67,79,85,78,84,96,32,111,114,32,109,111,114,101,32,116,105,109,101,115,32,105,110,32,96,72,79,84,95,83,80,65,78,96,92,110,32,32,32,32,32,42,32,109,105,108,108,105,115,101,99,111,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,114,101,115,116,114,105,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,115,104,111,114,116,97,98,108,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,104,111,114,116,79,117,116,40,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,111,117,110,116,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,115,116,67,97,108,108,101,100,32,61,32,48,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,116,97,109,112,32,61,32,110,97,116,105,118,101,78,111,119,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,97,105,110,105,110,103,32,61,32,72,79,84,95,83,80,65,78,32,45,32,40,115,116,97,109,112,32,45,32,108,97,115,116,67,97,108,108,101,100,41,59,92,110,92,110,32,32,32,32,32,32,32,32,108,97,115,116,67,97,108,108,101,100,32,61,32,115,116,97,109,112,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,101,109,97,105,110,105,110,103,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,43,43,99,111,117,110,116,32,62,61,32,72,79,84,95,67,79,85,78,84,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,117,110,116,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,46,97,112,112,108,121,40,117,110,100,101,102,105,110,101,100,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,32,115,112,101,99,105,97,108,105,122,101,100,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,115,104,117,102,102,108,101,96,32,119,104,105,99,104,32,109,117,116,97,116,101,115,32,97,110,100,32,115,101,116,115,32,116,104,101,32,115,105,122,101,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,115,104,117,102,102,108,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,115,105,122,101,61,97,114,114,97,121,46,108,101,110,103,116,104,93,32,84,104,101,32,115,105,122,101,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,104,117,102,102,108,101,83,101,108,102,40,97,114,114,97,121,44,32,115,105,122,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,115,116,73,110,100,101,120,32,61,32,108,101,110,103,116,104,32,45,32,49,59,92,110,92,110,32,32,32,32,32,32,115,105,122,101,32,61,32,115,105,122,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,108,101,110,103,116,104,32,58,32,115,105,122,101,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,115,105,122,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,97,110,100,32,61,32,98,97,115,101,82,97,110,100,111,109,40,105,110,100,101,120,44,32,108,97,115,116,73,110,100,101,120,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,97,114,114,97,121,91,114,97,110,100,93,59,92,110,92,110,32,32,32,32,32,32,32,32,97,114,114,97,121,91,114,97,110,100,93,32,61,32,97,114,114,97,121,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,97,114,114,97,121,91,105,110,100,101,120,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,97,114,114,97,121,46,108,101,110,103,116,104,32,61,32,115,105,122,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,115,116,114,105,110,103,96,32,116,111,32,97,32,112,114,111,112,101,114,116,121,32,112,97,116,104,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,114,105,110,103,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,112,114,111,112,101,114,116,121,32,112,97,116,104,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,115,116,114,105,110,103,84,111,80,97,116,104,32,61,32,109,101,109,111,105,122,101,67,97,112,112,101,100,40,102,117,110,99,116,105,111,110,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,105,102,32,40,115,116,114,105,110,103,46,99,104,97,114,67,111,100,101,65,116,40,48,41,32,61,61,61,32,52,54,32,47,42,32,46,32,42,47,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,39,39,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,116,114,105,110,103,46,114,101,112,108,97,99,101,40,114,101,80,114,111,112,78,97,109,101,44,32,102,117,110,99,116,105,111,110,40,109,97,116,99,104,44,32,110,117,109,98,101,114,44,32,113,117,111,116,101,44,32,115,117,98,83,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,113,117,111,116,101,32,63,32,115,117,98,83,116,114,105,110,103,46,114,101,112,108,97,99,101,40,114,101,69,115,99,97,112,101,67,104,97,114,44,32,39,36,49,39,41,32,58,32,40,110,117,109,98,101,114,32,124,124,32,109,97,116,99,104,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,118,97,108,117,101,96,32,116,111,32,97,32,115,116,114,105,110,103,32,107,101,121,32,105,102,32,105,116,39,115,32,110,111,116,32,97,32,115,116,114,105,110,103,32,111,114,32,115,121,109,98,111,108,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,124,115,121,109,98,111,108,125,32,82,101,116,117,114,110,115,32,116,104,101,32,107,101,121,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,75,101,121,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,115,116,114,105,110,103,39,32,124,124,32,105,115,83,121,109,98,111,108,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,40,118,97,108,117,101,32,43,32,39,39,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,114,101,115,117,108,116,32,61,61,32,39,48,39,32,38,38,32,40,49,32,47,32,118,97,108,117,101,41,32,61,61,32,45,73,78,70,73,78,73,84,89,41,32,63,32,39,45,48,39,32,58,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,102,117,110,99,96,32,116,111,32,105,116,115,32,115,111,117,114,99,101,32,99,111,100,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,111,117,114,99,101,32,99,111,100,101,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,83,111,117,114,99,101,40,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,102,117,110,99,32,33,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,84,111,83,116,114,105,110,103,46,99,97,108,108,40,102,117,110,99,41,59,92,110,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,125,92,110,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,102,117,110,99,32,43,32,39,39,41,59,92,110,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,39,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,85,112,100,97,116,101,115,32,119,114,97,112,112,101,114,32,96,100,101,116,97,105,108,115,96,32,98,97,115,101,100,32,111,110,32,96,98,105,116,109,97,115,107,96,32,102,108,97,103,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,100,101,116,97,105,108,115,32,84,104,101,32,100,101,116,97,105,108,115,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,98,105,116,109,97,115,107,32,84,104,101,32,98,105,116,109,97,115,107,32,102,108,97,103,115,46,32,83,101,101,32,96,99,114,101,97,116,101,87,114,97,112,96,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,100,101,116,97,105,108,115,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,87,114,97,112,68,101,116,97,105,108,115,40,100,101,116,97,105,108,115,44,32,98,105,116,109,97,115,107,41,32,123,92,110,32,32,32,32,32,32,97,114,114,97,121,69,97,99,104,40,119,114,97,112,70,108,97,103,115,44,32,102,117,110,99,116,105,111,110,40,112,97,105,114,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,39,95,46,39,32,43,32,112,97,105,114,91,48,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,98,105,116,109,97,115,107,32,38,32,112,97,105,114,91,49,93,41,32,38,38,32,33,97,114,114,97,121,73,110,99,108,117,100,101,115,40,100,101,116,97,105,108,115,44,32,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,101,116,97,105,108,115,46,112,117,115,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,116,97,105,108,115,46,115,111,114,116,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,99,108,111,110,101,32,111,102,32,96,119,114,97,112,112,101,114,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,119,114,97,112,112,101,114,32,84,104,101,32,119,114,97,112,112,101,114,32,116,111,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,108,111,110,101,100,32,119,114,97,112,112,101,114,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,114,67,108,111,110,101,40,119,114,97,112,112,101,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,119,114,97,112,112,101,114,32,105,110,115,116,97,110,99,101,111,102,32,76,97,122,121,87,114,97,112,112,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,119,114,97,112,112,101,114,46,99,108,111,110,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,110,101,119,32,76,111,100,97,115,104,87,114,97,112,112,101,114,40,119,114,97,112,112,101,114,46,95,95,119,114,97,112,112,101,100,95,95,44,32,119,114,97,112,112,101,114,46,95,95,99,104,97,105,110,95,95,41,59,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,97,99,116,105,111,110,115,95,95,32,61,32,99,111,112,121,65,114,114,97,121,40,119,114,97,112,112,101,114,46,95,95,97,99,116,105,111,110,115,95,95,41,59,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,105,110,100,101,120,95,95,32,32,61,32,119,114,97,112,112,101,114,46,95,95,105,110,100,101,120,95,95,59,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,118,97,108,117,101,115,95,95,32,61,32,119,114,97,112,112,101,114,46,95,95,118,97,108,117,101,115,95,95,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,101,108,101,109,101,110,116,115,32,115,112,108,105,116,32,105,110,116,111,32,103,114,111,117,112,115,32,116,104,101,32,108,101,110,103,116,104,32,111,102,32,96,115,105,122,101,96,46,92,110,32,32,32,32,32,42,32,73,102,32,96,97,114,114,97,121,96,32,99,97,110,39,116,32,98,101,32,115,112,108,105,116,32,101,118,101,110,108,121,44,32,116,104,101,32,102,105,110,97,108,32,99,104,117,110,107,32,119,105,108,108,32,98,101,32,116,104,101,32,114,101,109,97,105,110,105,110,103,92,110,32,32,32,32,32,42,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,112,114,111,99,101,115,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,115,105,122,101,61,49,93,32,84,104,101,32,108,101,110,103,116,104,32,111,102,32,101,97,99,104,32,99,104,117,110,107,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,99,104,117,110,107,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,104,117,110,107,40,91,39,97,39,44,32,39,98,39,44,32,39,99,39,44,32,39,100,39,93,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,91,39,97,39,44,32,39,98,39,93,44,32,91,39,99,39,44,32,39,100,39,93,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,104,117,110,107,40,91,39,97,39,44,32,39,98,39,44,32,39,99,39,44,32,39,100,39,93,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,91,39,97,39,44,32,39,98,39,44,32,39,99,39,93,44,32,91,39,100,39,93,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,104,117,110,107,40,97,114,114,97,121,44,32,115,105,122,101,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,103,117,97,114,100,32,63,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,97,114,114,97,121,44,32,115,105,122,101,44,32,103,117,97,114,100,41,32,58,32,115,105,122,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,115,105,122,101,32,61,32,49,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,115,105,122,101,32,61,32,110,97,116,105,118,101,77,97,120,40,116,111,73,110,116,101,103,101,114,40,115,105,122,101,41,44,32,48,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,32,124,124,32,115,105,122,101,32,60,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,73,110,100,101,120,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,65,114,114,97,121,40,110,97,116,105,118,101,67,101,105,108,40,108,101,110,103,116,104,32,47,32,115,105,122,101,41,41,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,114,101,115,73,110,100,101,120,43,43,93,32,61,32,98,97,115,101,83,108,105,99,101,40,97,114,114,97,121,44,32,105,110,100,101,120,44,32,40,105,110,100,101,120,32,43,61,32,115,105,122,101,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,119,105,116,104,32,97,108,108,32,102,97,108,115,101,121,32,118,97,108,117,101,115,32,114,101,109,111,118,101,100,46,32,84,104,101,32,118,97,108,117,101,115,32,96,102,97,108,115,101,96,44,32,96,110,117,108,108,96,44,92,110,32,32,32,32,32,42,32,96,48,96,44,32,96,92,34,92,34,96,44,32,96,117,110,100,101,102,105,110,101,100,96,44,32,97,110,100,32,96,78,97,78,96,32,97,114,101,32,102,97,108,115,101,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,99,111,109,112,97,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,102,105,108,116,101,114,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,111,109,112,97,99,116,40,91,48,44,32,49,44,32,102,97,108,115,101,44,32,50,44,32,39,39,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,109,112,97,99,116,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,73,110,100,101,120,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,97,114,114,97,121,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,114,101,115,73,110,100,101,120,43,43,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,110,101,119,32,97,114,114,97,121,32,99,111,110,99,97,116,101,110,97,116,105,110,103,32,96,97,114,114,97,121,96,32,119,105,116,104,32,97,110,121,32,97,100,100,105,116,105,111,110,97,108,32,97,114,114,97,121,115,92,110,32,32,32,32,32,42,32,97,110,100,47,111,114,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,99,111,110,99,97,116,101,110,97,116,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,42,125,32,91,118,97,108,117,101,115,93,32,84,104,101,32,118,97,108,117,101,115,32,116,111,32,99,111,110,99,97,116,101,110,97,116,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,99,111,110,99,97,116,101,110,97,116,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,49,93,59,92,110,32,32,32,32,32,42,32,118,97,114,32,111,116,104,101,114,32,61,32,95,46,99,111,110,99,97,116,40,97,114,114,97,121,44,32,50,44,32,91,51,93,44,32,91,91,52,93,93,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,111,116,104,101,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,44,32,91,52,93,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,110,99,97,116,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,65,114,114,97,121,40,108,101,110,103,116,104,32,45,32,49,41,44,92,110,32,32,32,32,32,32,32,32,32,32,97,114,114,97,121,32,61,32,97,114,103,117,109,101,110,116,115,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,105,110,100,101,120,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,97,114,103,115,91,105,110,100,101,120,32,45,32,49,93,32,61,32,97,114,103,117,109,101,110,116,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,80,117,115,104,40,105,115,65,114,114,97,121,40,97,114,114,97,121,41,32,63,32,99,111,112,121,65,114,114,97,121,40,97,114,114,97,121,41,32,58,32,91,97,114,114,97,121,93,44,32,98,97,115,101,70,108,97,116,116,101,110,40,97,114,103,115,44,32,49,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,96,97,114,114,97,121,96,32,118,97,108,117,101,115,32,110,111,116,32,105,110,99,108,117,100,101,100,32,105,110,32,116,104,101,32,111,116,104,101,114,32,103,105,118,101,110,32,97,114,114,97,121,115,92,110,32,32,32,32,32,42,32,117,115,105,110,103,32,91,96,83,97,109,101,86,97,108,117,101,90,101,114,111,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,115,97,109,101,118,97,108,117,101,122,101,114,111,41,92,110,32,32,32,32,32,42,32,102,111,114,32,101,113,117,97,108,105,116,121,32,99,111,109,112,97,114,105,115,111,110,115,46,32,84,104,101,32,111,114,100,101,114,32,97,110,100,32,114,101,102,101,114,101,110,99,101,115,32,111,102,32,114,101,115,117,108,116,32,118,97,108,117,101,115,32,97,114,101,92,110,32,32,32,32,32,42,32,100,101,116,101,114,109,105,110,101,100,32,98,121,32,116,104,101,32,102,105,114,115,116,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,85,110,108,105,107,101,32,96,95,46,112,117,108,108,65,108,108,96,44,32,116,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,97,32,110,101,119,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,65,114,114,97,121,125,32,91,118,97,108,117,101,115,93,32,84,104,101,32,118,97,108,117,101,115,32,116,111,32,101,120,99,108,117,100,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,102,105,108,116,101,114,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,119,105,116,104,111,117,116,44,32,95,46,120,111,114,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,105,102,102,101,114,101,110,99,101,40,91,50,44,32,49,93,44,32,91,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,100,105,102,102,101,114,101,110,99,101,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,44,32,118,97,108,117,101,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,97,114,114,97,121,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,68,105,102,102,101,114,101,110,99,101,40,97,114,114,97,121,44,32,98,97,115,101,70,108,97,116,116,101,110,40,118,97,108,117,101,115,44,32,49,44,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,44,32,116,114,117,101,41,41,92,110,32,32,32,32,32,32,32,32,58,32,91,93,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,100,105,102,102,101,114,101,110,99,101,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,105,116,101,114,97,116,101,101,96,32,119,104,105,99,104,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,102,111,114,32,101,97,99,104,32,101,108,101,109,101,110,116,32,111,102,32,96,97,114,114,97,121,96,32,97,110,100,32,96,118,97,108,117,101,115,96,32,116,111,32,103,101,110,101,114,97,116,101,32,116,104,101,32,99,114,105,116,101,114,105,111,110,92,110,32,32,32,32,32,42,32,98,121,32,119,104,105,99,104,32,116,104,101,121,39,114,101,32,99,111,109,112,97,114,101,100,46,32,84,104,101,32,111,114,100,101,114,32,97,110,100,32,114,101,102,101,114,101,110,99,101,115,32,111,102,32,114,101,115,117,108,116,32,118,97,108,117,101,115,32,97,114,101,92,110,32,32,32,32,32,42,32,100,101,116,101,114,109,105,110,101,100,32,98,121,32,116,104,101,32,102,105,114,115,116,32,97,114,114,97,121,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,92,110,32,32,32,32,32,42,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,85,110,108,105,107,101,32,96,95,46,112,117,108,108,65,108,108,66,121,96,44,32,116,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,97,32,110,101,119,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,65,114,114,97,121,125,32,91,118,97,108,117,101,115,93,32,84,104,101,32,118,97,108,117,101,115,32,116,111,32,101,120,99,108,117,100,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,102,105,108,116,101,114,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,105,102,102,101,114,101,110,99,101,66,121,40,91,50,46,49,44,32,49,46,50,93,44,32,91,50,46,51,44,32,51,46,52,93,44,32,77,97,116,104,46,102,108,111,111,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,46,50,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,100,105,102,102,101,114,101,110,99,101,66,121,40,91,123,32,39,120,39,58,32,50,32,125,44,32,123,32,39,120,39,58,32,49,32,125,93,44,32,91,123,32,39,120,39,58,32,49,32,125,93,44,32,39,120,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,120,39,58,32,50,32,125,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,100,105,102,102,101,114,101,110,99,101,66,121,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,44,32,118,97,108,117,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,114,97,116,101,101,32,61,32,108,97,115,116,40,118,97,108,117,101,115,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,105,116,101,114,97,116,101,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,114,97,116,101,101,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,97,114,114,97,121,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,68,105,102,102,101,114,101,110,99,101,40,97,114,114,97,121,44,32,98,97,115,101,70,108,97,116,116,101,110,40,118,97,108,117,101,115,44,32,49,44,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,44,32,116,114,117,101,41,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,50,41,41,92,110,32,32,32,32,32,32,32,32,58,32,91,93,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,100,105,102,102,101,114,101,110,99,101,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,99,111,109,112,97,114,97,116,111,114,96,92,110,32,32,32,32,32,42,32,119,104,105,99,104,32,105,115,32,105,110,118,111,107,101,100,32,116,111,32,99,111,109,112,97,114,101,32,101,108,101,109,101,110,116,115,32,111,102,32,96,97,114,114,97,121,96,32,116,111,32,96,118,97,108,117,101,115,96,46,32,84,104,101,32,111,114,100,101,114,32,97,110,100,92,110,32,32,32,32,32,42,32,114,101,102,101,114,101,110,99,101,115,32,111,102,32,114,101,115,117,108,116,32,118,97,108,117,101,115,32,97,114,101,32,100,101,116,101,114,109,105,110,101,100,32,98,121,32,116,104,101,32,102,105,114,115,116,32,97,114,114,97,121,46,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,119,111,32,97,114,103,117,109,101,110,116,115,58,32,40,97,114,114,86,97,108,44,32,111,116,104,86,97,108,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,85,110,108,105,107,101,32,96,95,46,112,117,108,108,65,108,108,87,105,116,104,96,44,32,116,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,97,32,110,101,119,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,65,114,114,97,121,125,32,91,118,97,108,117,101,115,93,32,84,104,101,32,118,97,108,117,101,115,32,116,111,32,101,120,99,108,117,100,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,111,109,112,97,114,97,116,111,114,93,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,102,105,108,116,101,114,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,50,32,125,44,32,123,32,39,120,39,58,32,50,44,32,39,121,39,58,32,49,32,125,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,105,102,102,101,114,101,110,99,101,87,105,116,104,40,111,98,106,101,99,116,115,44,32,91,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,50,32,125,93,44,32,95,46,105,115,69,113,117,97,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,120,39,58,32,50,44,32,39,121,39,58,32,49,32,125,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,100,105,102,102,101,114,101,110,99,101,87,105,116,104,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,44,32,118,97,108,117,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,111,109,112,97,114,97,116,111,114,32,61,32,108,97,115,116,40,118,97,108,117,101,115,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,99,111,109,112,97,114,97,116,111,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,109,112,97,114,97,116,111,114,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,97,114,114,97,121,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,68,105,102,102,101,114,101,110,99,101,40,97,114,114,97,121,44,32,98,97,115,101,70,108,97,116,116,101,110,40,118,97,108,117,101,115,44,32,49,44,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,44,32,116,114,117,101,41,44,32,117,110,100,101,102,105,110,101,100,44,32,99,111,109,112,97,114,97,116,111,114,41,92,110,32,32,32,32,32,32,32,32,58,32,91,93,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,32,119,105,116,104,32,96,110,96,32,101,108,101,109,101,110,116,115,32,100,114,111,112,112,101,100,32,102,114,111,109,32,116,104,101,32,98,101,103,105,110,110,105,110,103,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,53,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,110,61,49,93,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,116,111,32,100,114,111,112,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,40,91,49,44,32,50,44,32,51,93,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,40,91,49,44,32,50,44,32,51,93,44,32,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,40,91,49,44,32,50,44,32,51,93,44,32,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,100,114,111,112,40,97,114,114,97,121,44,32,110,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,110,32,61,32,40,103,117,97,114,100,32,124,124,32,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,63,32,49,32,58,32,116,111,73,110,116,101,103,101,114,40,110,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,108,105,99,101,40,97,114,114,97,121,44,32,110,32,60,32,48,32,63,32,48,32,58,32,110,44,32,108,101,110,103,116,104,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,32,119,105,116,104,32,96,110,96,32,101,108,101,109,101,110,116,115,32,100,114,111,112,112,101,100,32,102,114,111,109,32,116,104,101,32,101,110,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,110,61,49,93,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,116,111,32,100,114,111,112,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,82,105,103,104,116,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,82,105,103,104,116,40,91,49,44,32,50,44,32,51,93,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,82,105,103,104,116,40,91,49,44,32,50,44,32,51,93,44,32,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,82,105,103,104,116,40,91,49,44,32,50,44,32,51,93,44,32,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,100,114,111,112,82,105,103,104,116,40,97,114,114,97,121,44,32,110,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,110,32,61,32,40,103,117,97,114,100,32,124,124,32,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,63,32,49,32,58,32,116,111,73,110,116,101,103,101,114,40,110,41,59,92,110,32,32,32,32,32,32,110,32,61,32,108,101,110,103,116,104,32,45,32,110,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,108,105,99,101,40,97,114,114,97,121,44,32,48,44,32,110,32,60,32,48,32,63,32,48,32,58,32,110,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,32,101,120,99,108,117,100,105,110,103,32,101,108,101,109,101,110,116,115,32,100,114,111,112,112,101,100,32,102,114,111,109,32,116,104,101,32,101,110,100,46,92,110,32,32,32,32,32,42,32,69,108,101,109,101,110,116,115,32,97,114,101,32,100,114,111,112,112,101,100,32,117,110,116,105,108,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,32,102,97,108,115,101,121,46,32,84,104,101,32,112,114,101,100,105,99,97,116,101,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,97,114,114,97,121,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,112,101,98,98,108,101,115,39,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,82,105,103,104,116,87,104,105,108,101,40,117,115,101,114,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,33,111,46,97,99,116,105,118,101,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,98,97,114,110,101,121,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,82,105,103,104,116,87,104,105,108,101,40,117,115,101,114,115,44,32,123,32,39,117,115,101,114,39,58,32,39,112,101,98,98,108,101,115,39,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,98,97,114,110,101,121,39,44,32,39,102,114,101,100,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,82,105,103,104,116,87,104,105,108,101,40,117,115,101,114,115,44,32,91,39,97,99,116,105,118,101,39,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,98,97,114,110,101,121,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,82,105,103,104,116,87,104,105,108,101,40,117,115,101,114,115,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,98,97,114,110,101,121,39,44,32,39,102,114,101,100,39,44,32,39,112,101,98,98,108,101,115,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,100,114,111,112,82,105,103,104,116,87,104,105,108,101,40,97,114,114,97,121,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,87,104,105,108,101,40,97,114,114,97,121,44,32,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,44,32,51,41,44,32,116,114,117,101,44,32,116,114,117,101,41,92,110,32,32,32,32,32,32,32,32,58,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,32,101,120,99,108,117,100,105,110,103,32,101,108,101,109,101,110,116,115,32,100,114,111,112,112,101,100,32,102,114,111,109,32,116,104,101,32,98,101,103,105,110,110,105,110,103,46,92,110,32,32,32,32,32,42,32,69,108,101,109,101,110,116,115,32,97,114,101,32,100,114,111,112,112,101,100,32,117,110,116,105,108,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,32,102,97,108,115,101,121,46,32,84,104,101,32,112,114,101,100,105,99,97,116,101,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,97,114,114,97,121,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,112,101,98,98,108,101,115,39,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,87,104,105,108,101,40,117,115,101,114,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,33,111,46,97,99,116,105,118,101,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,112,101,98,98,108,101,115,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,87,104,105,108,101,40,117,115,101,114,115,44,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,102,114,101,100,39,44,32,39,112,101,98,98,108,101,115,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,87,104,105,108,101,40,117,115,101,114,115,44,32,91,39,97,99,116,105,118,101,39,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,112,101,98,98,108,101,115,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,100,114,111,112,87,104,105,108,101,40,117,115,101,114,115,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,98,97,114,110,101,121,39,44,32,39,102,114,101,100,39,44,32,39,112,101,98,98,108,101,115,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,100,114,111,112,87,104,105,108,101,40,97,114,114,97,121,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,87,104,105,108,101,40,97,114,114,97,121,44,32,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,44,32,51,41,44,32,116,114,117,101,41,92,110,32,32,32,32,32,32,32,32,58,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,70,105,108,108,115,32,101,108,101,109,101,110,116,115,32,111,102,32,96,97,114,114,97,121,96,32,119,105,116,104,32,96,118,97,108,117,101,96,32,102,114,111,109,32,96,115,116,97,114,116,96,32,117,112,32,116,111,44,32,98,117,116,32,110,111,116,92,110,32,32,32,32,32,42,32,105,110,99,108,117,100,105,110,103,44,32,96,101,110,100,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,50,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,102,105,108,108,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,102,105,108,108,32,96,97,114,114,97,121,96,32,119,105,116,104,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,115,116,97,114,116,61,48,93,32,84,104,101,32,115,116,97,114,116,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,110,100,61,97,114,114,97,121,46,108,101,110,103,116,104,93,32,84,104,101,32,101,110,100,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,49,44,32,50,44,32,51,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,105,108,108,40,97,114,114,97,121,44,32,39,97,39,41,59,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,97,39,44,32,39,97,39,44,32,39,97,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,105,108,108,40,65,114,114,97,121,40,51,41,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,50,44,32,50,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,105,108,108,40,91,52,44,32,54,44,32,56,44,32,49,48,93,44,32,39,42,39,44,32,49,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,52,44,32,39,42,39,44,32,39,42,39,44,32,49,48,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,105,108,108,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,114,116,32,38,38,32,116,121,112,101,111,102,32,115,116,97,114,116,32,33,61,32,39,110,117,109,98,101,114,39,32,38,38,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,115,116,97,114,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,101,110,100,32,61,32,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,70,105,108,108,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,115,116,97,114,116,44,32,101,110,100,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,102,105,110,100,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,114,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,102,105,114,115,116,92,110,32,32,32,32,32,42,32,101,108,101,109,101,110,116,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,32,116,114,117,116,104,121,32,102,111,114,32,105,110,115,116,101,97,100,32,111,102,32,116,104,101,32,101,108,101,109,101,110,116,32,105,116,115,101,108,102,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,49,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,102,114,111,109,73,110,100,101,120,61,48,93,32,84,104,101,32,105,110,100,101,120,32,116,111,32,115,101,97,114,99,104,32,102,114,111,109,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,102,111,117,110,100,32,101,108,101,109,101,110,116,44,32,101,108,115,101,32,96,45,49,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,112,101,98,98,108,101,115,39,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,73,110,100,101,120,40,117,115,101,114,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,117,115,101,114,32,61,61,32,39,98,97,114,110,101,121,39,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,48,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,73,110,100,101,120,40,117,115,101,114,115,44,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,49,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,73,110,100,101,120,40,117,115,101,114,115,44,32,91,39,97,99,116,105,118,101,39,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,48,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,73,110,100,101,120,40,117,115,101,114,115,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,50,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,105,110,100,73,110,100,101,120,40,97,114,114,97,121,44,32,112,114,101,100,105,99,97,116,101,44,32,102,114,111,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,102,114,111,109,73,110,100,101,120,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,116,111,73,110,116,101,103,101,114,40,102,114,111,109,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,110,97,116,105,118,101,77,97,120,40,108,101,110,103,116,104,32,43,32,105,110,100,101,120,44,32,48,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,70,105,110,100,73,110,100,101,120,40,97,114,114,97,121,44,32,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,44,32,51,41,44,32,105,110,100,101,120,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,102,105,110,100,73,110,100,101,120,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,105,116,101,114,97,116,101,115,32,111,118,101,114,32,101,108,101,109,101,110,116,115,92,110,32,32,32,32,32,42,32,111,102,32,96,99,111,108,108,101,99,116,105,111,110,96,32,102,114,111,109,32,114,105,103,104,116,32,116,111,32,108,101,102,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,102,114,111,109,73,110,100,101,120,61,97,114,114,97,121,46,108,101,110,103,116,104,45,49,93,32,84,104,101,32,105,110,100,101,120,32,116,111,32,115,101,97,114,99,104,32,102,114,111,109,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,102,111,117,110,100,32,101,108,101,109,101,110,116,44,32,101,108,115,101,32,96,45,49,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,112,101,98,98,108,101,115,39,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,76,97,115,116,73,110,100,101,120,40,117,115,101,114,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,117,115,101,114,32,61,61,32,39,112,101,98,98,108,101,115,39,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,50,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,76,97,115,116,73,110,100,101,120,40,117,115,101,114,115,44,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,48,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,76,97,115,116,73,110,100,101,120,40,117,115,101,114,115,44,32,91,39,97,99,116,105,118,101,39,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,50,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,76,97,115,116,73,110,100,101,120,40,117,115,101,114,115,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,48,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,105,110,100,76,97,115,116,73,110,100,101,120,40,97,114,114,97,121,44,32,112,114,101,100,105,99,97,116,101,44,32,102,114,111,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,32,32,105,102,32,40,102,114,111,109,73,110,100,101,120,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,116,111,73,110,116,101,103,101,114,40,102,114,111,109,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,102,114,111,109,73,110,100,101,120,32,60,32,48,92,110,32,32,32,32,32,32,32,32,32,32,63,32,110,97,116,105,118,101,77,97,120,40,108,101,110,103,116,104,32,43,32,105,110,100,101,120,44,32,48,41,92,110,32,32,32,32,32,32,32,32,32,32,58,32,110,97,116,105,118,101,77,105,110,40,105,110,100,101,120,44,32,108,101,110,103,116,104,32,45,32,49,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,70,105,110,100,73,110,100,101,120,40,97,114,114,97,121,44,32,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,44,32,51,41,44,32,105,110,100,101,120,44,32,116,114,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,70,108,97,116,116,101,110,115,32,96,97,114,114,97,121,96,32,97,32,115,105,110,103,108,101,32,108,101,118,101,108,32,100,101,101,112,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,102,108,97,116,116,101,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,108,97,116,116,101,110,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,108,97,116,116,101,110,40,91,49,44,32,91,50,44,32,91,51,44,32,91,52,93,93,44,32,53,93,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,91,51,44,32,91,52,93,93,44,32,53,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,108,97,116,116,101,110,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,101,110,103,116,104,32,63,32,98,97,115,101,70,108,97,116,116,101,110,40,97,114,114,97,121,44,32,49,41,32,58,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,99,117,114,115,105,118,101,108,121,32,102,108,97,116,116,101,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,102,108,97,116,116,101,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,108,97,116,116,101,110,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,108,97,116,116,101,110,68,101,101,112,40,91,49,44,32,91,50,44,32,91,51,44,32,91,52,93,93,44,32,53,93,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,44,32,52,44,32,53,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,108,97,116,116,101,110,68,101,101,112,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,101,110,103,116,104,32,63,32,98,97,115,101,70,108,97,116,116,101,110,40,97,114,114,97,121,44,32,73,78,70,73,78,73,84,89,41,32,58,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,99,117,114,115,105,118,101,108,121,32,102,108,97,116,116,101,110,32,96,97,114,114,97,121,96,32,117,112,32,116,111,32,96,100,101,112,116,104,96,32,116,105,109,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,52,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,102,108,97,116,116,101,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,100,101,112,116,104,61,49,93,32,84,104,101,32,109,97,120,105,109,117,109,32,114,101,99,117,114,115,105,111,110,32,100,101,112,116,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,108,97,116,116,101,110,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,49,44,32,91,50,44,32,91,51,44,32,91,52,93,93,44,32,53,93,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,108,97,116,116,101,110,68,101,112,116,104,40,97,114,114,97,121,44,32,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,91,51,44,32,91,52,93,93,44,32,53,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,108,97,116,116,101,110,68,101,112,116,104,40,97,114,114,97,121,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,44,32,91,52,93,44,32,53,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,108,97,116,116,101,110,68,101,112,116,104,40,97,114,114,97,121,44,32,100,101,112,116,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,100,101,112,116,104,32,61,32,100,101,112,116,104,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,49,32,58,32,116,111,73,110,116,101,103,101,114,40,100,101,112,116,104,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,70,108,97,116,116,101,110,40,97,114,114,97,121,44,32,100,101,112,116,104,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,105,110,118,101,114,115,101,32,111,102,32,96,95,46,116,111,80,97,105,114,115,96,59,32,116,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,97,110,32,111,98,106,101,99,116,32,99,111,109,112,111,115,101,100,92,110,32,32,32,32,32,42,32,102,114,111,109,32,107,101,121,45,118,97,108,117,101,32,96,112,97,105,114,115,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,112,97,105,114,115,32,84,104,101,32,107,101,121,45,118,97,108,117,101,32,112,97,105,114,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,114,111,109,80,97,105,114,115,40,91,91,39,97,39,44,32,49,93,44,32,91,39,98,39,44,32,50,93,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,114,111,109,80,97,105,114,115,40,112,97,105,114,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,112,97,105,114,115,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,112,97,105,114,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,123,125,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,97,105,114,32,61,32,112,97,105,114,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,112,97,105,114,91,48,93,93,32,61,32,112,97,105,114,91,49,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,102,105,114,115,116,32,101,108,101,109,101,110,116,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,97,108,105,97,115,32,102,105,114,115,116,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,102,105,114,115,116,32,101,108,101,109,101,110,116,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,104,101,97,100,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,49,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,104,101,97,100,40,91,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,101,97,100,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,32,63,32,97,114,114,97,121,91,48,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,105,110,100,101,120,32,97,116,32,119,104,105,99,104,32,116,104,101,32,102,105,114,115,116,32,111,99,99,117,114,114,101,110,99,101,32,111,102,32,96,118,97,108,117,101,96,32,105,115,32,102,111,117,110,100,32,105,110,32,96,97,114,114,97,121,96,92,110,32,32,32,32,32,42,32,117,115,105,110,103,32,91,96,83,97,109,101,86,97,108,117,101,90,101,114,111,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,115,97,109,101,118,97,108,117,101,122,101,114,111,41,92,110,32,32,32,32,32,42,32,102,111,114,32,101,113,117,97,108,105,116,121,32,99,111,109,112,97,114,105,115,111,110,115,46,32,73,102,32,96,102,114,111,109,73,110,100,101,120,96,32,105,115,32,110,101,103,97,116,105,118,101,44,32,105,116,39,115,32,117,115,101,100,32,97,115,32,116,104,101,92,110,32,32,32,32,32,42,32,111,102,102,115,101,116,32,102,114,111,109,32,116,104,101,32,101,110,100,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,102,114,111,109,73,110,100,101,120,61,48,93,32,84,104,101,32,105,110,100,101,120,32,116,111,32,115,101,97,114,99,104,32,102,114,111,109,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,109,97,116,99,104,101,100,32,118,97,108,117,101,44,32,101,108,115,101,32,96,45,49,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,100,101,120,79,102,40,91,49,44,32,50,44,32,49,44,32,50,93,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,49,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,83,101,97,114,99,104,32,102,114,111,109,32,116,104,101,32,96,102,114,111,109,73,110,100,101,120,96,46,92,110,32,32,32,32,32,42,32,95,46,105,110,100,101,120,79,102,40,91,49,44,32,50,44,32,49,44,32,50,93,44,32,50,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,100,101,120,79,102,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,102,114,111,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,102,114,111,109,73,110,100,101,120,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,116,111,73,110,116,101,103,101,114,40,102,114,111,109,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,110,97,116,105,118,101,77,97,120,40,108,101,110,103,116,104,32,43,32,105,110,100,101,120,44,32,48,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,73,110,100,101,120,79,102,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,105,110,100,101,120,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,97,108,108,32,98,117,116,32,116,104,101,32,108,97,115,116,32,101,108,101,109,101,110,116,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,105,116,105,97,108,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,105,97,108,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,101,110,103,116,104,32,63,32,98,97,115,101,83,108,105,99,101,40,97,114,114,97,121,44,32,48,44,32,45,49,41,32,58,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,117,110,105,113,117,101,32,118,97,108,117,101,115,32,116,104,97,116,32,97,114,101,32,105,110,99,108,117,100,101,100,32,105,110,32,97,108,108,32,103,105,118,101,110,32,97,114,114,97,121,115,92,110,32,32,32,32,32,42,32,117,115,105,110,103,32,91,96,83,97,109,101,86,97,108,117,101,90,101,114,111,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,115,97,109,101,118,97,108,117,101,122,101,114,111,41,92,110,32,32,32,32,32,42,32,102,111,114,32,101,113,117,97,108,105,116,121,32,99,111,109,112,97,114,105,115,111,110,115,46,32,84,104,101,32,111,114,100,101,114,32,97,110,100,32,114,101,102,101,114,101,110,99,101,115,32,111,102,32,114,101,115,117,108,116,32,118,97,108,117,101,115,32,97,114,101,92,110,32,32,32,32,32,42,32,100,101,116,101,114,109,105,110,101,100,32,98,121,32,116,104,101,32,102,105,114,115,116,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,65,114,114,97,121,125,32,91,97,114,114,97,121,115,93,32,84,104,101,32,97,114,114,97,121,115,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,105,110,116,101,114,115,101,99,116,105,110,103,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,116,101,114,115,101,99,116,105,111,110,40,91,50,44,32,49,93,44,32,91,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,110,116,101,114,115,101,99,116,105,111,110,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,97,112,112,101,100,32,61,32,97,114,114,97,121,77,97,112,40,97,114,114,97,121,115,44,32,99,97,115,116,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,109,97,112,112,101,100,46,108,101,110,103,116,104,32,38,38,32,109,97,112,112,101,100,91,48,93,32,61,61,61,32,97,114,114,97,121,115,91,48,93,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,73,110,116,101,114,115,101,99,116,105,111,110,40,109,97,112,112,101,100,41,92,110,32,32,32,32,32,32,32,32,58,32,91,93,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,105,110,116,101,114,115,101,99,116,105,111,110,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,105,116,101,114,97,116,101,101,96,92,110,32,32,32,32,32,42,32,119,104,105,99,104,32,105,115,32,105,110,118,111,107,101,100,32,102,111,114,32,101,97,99,104,32,101,108,101,109,101,110,116,32,111,102,32,101,97,99,104,32,96,97,114,114,97,121,115,96,32,116,111,32,103,101,110,101,114,97,116,101,32,116,104,101,32,99,114,105,116,101,114,105,111,110,92,110,32,32,32,32,32,42,32,98,121,32,119,104,105,99,104,32,116,104,101,121,39,114,101,32,99,111,109,112,97,114,101,100,46,32,84,104,101,32,111,114,100,101,114,32,97,110,100,32,114,101,102,101,114,101,110,99,101,115,32,111,102,32,114,101,115,117,108,116,32,118,97,108,117,101,115,32,97,114,101,92,110,32,32,32,32,32,42,32,100,101,116,101,114,109,105,110,101,100,32,98,121,32,116,104,101,32,102,105,114,115,116,32,97,114,114,97,121,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,92,110,32,32,32,32,32,42,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,65,114,114,97,121,125,32,91,97,114,114,97,121,115,93,32,84,104,101,32,97,114,114,97,121,115,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,105,110,116,101,114,115,101,99,116,105,110,103,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,116,101,114,115,101,99,116,105,111,110,66,121,40,91,50,46,49,44,32,49,46,50,93,44,32,91,50,46,51,44,32,51,46,52,93,44,32,77,97,116,104,46,102,108,111,111,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,46,49,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,105,110,116,101,114,115,101,99,116,105,111,110,66,121,40,91,123,32,39,120,39,58,32,49,32,125,93,44,32,91,123,32,39,120,39,58,32,50,32,125,44,32,123,32,39,120,39,58,32,49,32,125,93,44,32,39,120,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,120,39,58,32,49,32,125,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,110,116,101,114,115,101,99,116,105,111,110,66,121,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,114,97,116,101,101,32,61,32,108,97,115,116,40,97,114,114,97,121,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,109,97,112,112,101,100,32,61,32,97,114,114,97,121,77,97,112,40,97,114,114,97,121,115,44,32,99,97,115,116,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,114,97,116,101,101,32,61,61,61,32,108,97,115,116,40,109,97,112,112,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,114,97,116,101,101,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,109,97,112,112,101,100,46,112,111,112,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,109,97,112,112,101,100,46,108,101,110,103,116,104,32,38,38,32,109,97,112,112,101,100,91,48,93,32,61,61,61,32,97,114,114,97,121,115,91,48,93,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,73,110,116,101,114,115,101,99,116,105,111,110,40,109,97,112,112,101,100,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,50,41,41,92,110,32,32,32,32,32,32,32,32,58,32,91,93,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,105,110,116,101,114,115,101,99,116,105,111,110,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,99,111,109,112,97,114,97,116,111,114,96,92,110,32,32,32,32,32,42,32,119,104,105,99,104,32,105,115,32,105,110,118,111,107,101,100,32,116,111,32,99,111,109,112,97,114,101,32,101,108,101,109,101,110,116,115,32,111,102,32,96,97,114,114,97,121,115,96,46,32,84,104,101,32,111,114,100,101,114,32,97,110,100,32,114,101,102,101,114,101,110,99,101,115,92,110,32,32,32,32,32,42,32,111,102,32,114,101,115,117,108,116,32,118,97,108,117,101,115,32,97,114,101,32,100,101,116,101,114,109,105,110,101,100,32,98,121,32,116,104,101,32,102,105,114,115,116,32,97,114,114,97,121,46,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,119,111,32,97,114,103,117,109,101,110,116,115,58,32,40,97,114,114,86,97,108,44,32,111,116,104,86,97,108,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,65,114,114,97,121,125,32,91,97,114,114,97,121,115,93,32,84,104,101,32,97,114,114,97,121,115,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,111,109,112,97,114,97,116,111,114,93,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,105,110,116,101,114,115,101,99,116,105,110,103,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,50,32,125,44,32,123,32,39,120,39,58,32,50,44,32,39,121,39,58,32,49,32,125,93,59,92,110,32,32,32,32,32,42,32,118,97,114,32,111,116,104,101,114,115,32,61,32,91,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,49,32,125,44,32,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,50,32,125,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,116,101,114,115,101,99,116,105,111,110,87,105,116,104,40,111,98,106,101,99,116,115,44,32,111,116,104,101,114,115,44,32,95,46,105,115,69,113,117,97,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,50,32,125,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,110,116,101,114,115,101,99,116,105,111,110,87,105,116,104,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,111,109,112,97,114,97,116,111,114,32,61,32,108,97,115,116,40,97,114,114,97,121,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,109,97,112,112,101,100,32,61,32,97,114,114,97,121,77,97,112,40,97,114,114,97,121,115,44,32,99,97,115,116,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,99,111,109,112,97,114,97,116,111,114,32,61,32,116,121,112,101,111,102,32,99,111,109,112,97,114,97,116,111,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,99,111,109,112,97,114,97,116,111,114,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,105,102,32,40,99,111,109,112,97,114,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,109,97,112,112,101,100,46,112,111,112,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,109,97,112,112,101,100,46,108,101,110,103,116,104,32,38,38,32,109,97,112,112,101,100,91,48,93,32,61,61,61,32,97,114,114,97,121,115,91,48,93,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,73,110,116,101,114,115,101,99,116,105,111,110,40,109,97,112,112,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,99,111,109,112,97,114,97,116,111,114,41,92,110,32,32,32,32,32,32,32,32,58,32,91,93,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,97,108,108,32,101,108,101,109,101,110,116,115,32,105,110,32,96,97,114,114,97,121,96,32,105,110,116,111,32,97,32,115,116,114,105,110,103,32,115,101,112,97,114,97,116,101,100,32,98,121,32,96,115,101,112,97,114,97,116,111,114,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,101,112,97,114,97,116,111,114,61,39,44,39,93,32,84,104,101,32,101,108,101,109,101,110,116,32,115,101,112,97,114,97,116,111,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,106,111,105,110,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,106,111,105,110,40,91,39,97,39,44,32,39,98,39,44,32,39,99,39,93,44,32,39,126,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,97,126,98,126,99,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,106,111,105,110,40,97,114,114,97,121,44,32,115,101,112,97,114,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,39,39,32,58,32,110,97,116,105,118,101,74,111,105,110,46,99,97,108,108,40,97,114,114,97,121,44,32,115,101,112,97,114,97,116,111,114,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,108,97,115,116,32,101,108,101,109,101,110,116,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,108,97,115,116,32,101,108,101,109,101,110,116,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,108,97,115,116,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,97,115,116,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,101,110,103,116,104,32,63,32,97,114,114,97,121,91,108,101,110,103,116,104,32,45,32,49,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,105,110,100,101,120,79,102,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,105,116,101,114,97,116,101,115,32,111,118,101,114,32,101,108,101,109,101,110,116,115,32,111,102,92,110,32,32,32,32,32,42,32,96,97,114,114,97,121,96,32,102,114,111,109,32,114,105,103,104,116,32,116,111,32,108,101,102,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,102,114,111,109,73,110,100,101,120,61,97,114,114,97,121,46,108,101,110,103,116,104,45,49,93,32,84,104,101,32,105,110,100,101,120,32,116,111,32,115,101,97,114,99,104,32,102,114,111,109,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,109,97,116,99,104,101,100,32,118,97,108,117,101,44,32,101,108,115,101,32,96,45,49,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,108,97,115,116,73,110,100,101,120,79,102,40,91,49,44,32,50,44,32,49,44,32,50,93,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,83,101,97,114,99,104,32,102,114,111,109,32,116,104,101,32,96,102,114,111,109,73,110,100,101,120,96,46,92,110,32,32,32,32,32,42,32,95,46,108,97,115,116,73,110,100,101,120,79,102,40,91,49,44,32,50,44,32,49,44,32,50,93,44,32,50,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,49,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,97,115,116,73,110,100,101,120,79,102,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,102,114,111,109,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,102,114,111,109,73,110,100,101,120,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,116,111,73,110,116,101,103,101,114,40,102,114,111,109,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,105,110,100,101,120,32,60,32,48,32,63,32,110,97,116,105,118,101,77,97,120,40,108,101,110,103,116,104,32,43,32,105,110,100,101,120,44,32,48,41,32,58,32,110,97,116,105,118,101,77,105,110,40,105,110,100,101,120,44,32,108,101,110,103,116,104,32,45,32,49,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,63,32,115,116,114,105,99,116,76,97,115,116,73,110,100,101,120,79,102,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,105,110,100,101,120,41,92,110,32,32,32,32,32,32,32,32,58,32,98,97,115,101,70,105,110,100,73,110,100,101,120,40,97,114,114,97,121,44,32,98,97,115,101,73,115,78,97,78,44,32,105,110,100,101,120,44,32,116,114,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,101,108,101,109,101,110,116,32,97,116,32,105,110,100,101,120,32,96,110,96,32,111,102,32,96,97,114,114,97,121,96,46,32,73,102,32,96,110,96,32,105,115,32,110,101,103,97,116,105,118,101,44,32,116,104,101,32,110,116,104,92,110,32,32,32,32,32,42,32,101,108,101,109,101,110,116,32,102,114,111,109,32,116,104,101,32,101,110,100,32,105,115,32,114,101,116,117,114,110,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,49,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,110,61,48,93,32,84,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,101,108,101,109,101,110,116,32,116,111,32,114,101,116,117,114,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,116,104,32,101,108,101,109,101,110,116,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,39,97,39,44,32,39,98,39,44,32,39,99,39,44,32,39,100,39,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,110,116,104,40,97,114,114,97,121,44,32,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,98,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,110,116,104,40,97,114,114,97,121,44,32,45,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,99,39,59,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,110,116,104,40,97,114,114,97,121,44,32,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,32,63,32,98,97,115,101,78,116,104,40,97,114,114,97,121,44,32,116,111,73,110,116,101,103,101,114,40,110,41,41,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,109,111,118,101,115,32,97,108,108,32,103,105,118,101,110,32,118,97,108,117,101,115,32,102,114,111,109,32,96,97,114,114,97,121,96,32,117,115,105,110,103,92,110,32,32,32,32,32,42,32,91,96,83,97,109,101,86,97,108,117,101,90,101,114,111,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,115,97,109,101,118,97,108,117,101,122,101,114,111,41,92,110,32,32,32,32,32,42,32,102,111,114,32,101,113,117,97,108,105,116,121,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,85,110,108,105,107,101,32,96,95,46,119,105,116,104,111,117,116,96,44,32,116,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,97,114,114,97,121,96,46,32,85,115,101,32,96,95,46,114,101,109,111,118,101,96,92,110,32,32,32,32,32,42,32,116,111,32,114,101,109,111,118,101,32,101,108,101,109,101,110,116,115,32,102,114,111,109,32,97,110,32,97,114,114,97,121,32,98,121,32,112,114,101,100,105,99,97,116,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,42,125,32,91,118,97,108,117,101,115,93,32,84,104,101,32,118,97,108,117,101,115,32,116,111,32,114,101,109,111,118,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,39,97,39,44,32,39,98,39,44,32,39,99,39,44,32,39,97,39,44,32,39,98,39,44,32,39,99,39,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,117,108,108,40,97,114,114,97,121,44,32,39,97,39,44,32,39,99,39,41,59,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,98,39,44,32,39,98,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,112,117,108,108,32,61,32,98,97,115,101,82,101,115,116,40,112,117,108,108,65,108,108,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,112,117,108,108,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,97,110,32,97,114,114,97,121,32,111,102,32,118,97,108,117,101,115,32,116,111,32,114,101,109,111,118,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,85,110,108,105,107,101,32,96,95,46,100,105,102,102,101,114,101,110,99,101,96,44,32,116,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,118,97,108,117,101,115,32,84,104,101,32,118,97,108,117,101,115,32,116,111,32,114,101,109,111,118,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,39,97,39,44,32,39,98,39,44,32,39,99,39,44,32,39,97,39,44,32,39,98,39,44,32,39,99,39,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,117,108,108,65,108,108,40,97,114,114,97,121,44,32,91,39,97,39,44,32,39,99,39,93,41,59,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,98,39,44,32,39,98,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,117,108,108,65,108,108,40,97,114,114,97,121,44,32,118,97,108,117,101,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,32,38,38,32,118,97,108,117,101,115,32,38,38,32,118,97,108,117,101,115,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,80,117,108,108,65,108,108,40,97,114,114,97,121,44,32,118,97,108,117,101,115,41,92,110,32,32,32,32,32,32,32,32,58,32,97,114,114,97,121,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,112,117,108,108,65,108,108,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,105,116,101,114,97,116,101,101,96,32,119,104,105,99,104,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,102,111,114,32,101,97,99,104,32,101,108,101,109,101,110,116,32,111,102,32,96,97,114,114,97,121,96,32,97,110,100,32,96,118,97,108,117,101,115,96,32,116,111,32,103,101,110,101,114,97,116,101,32,116,104,101,32,99,114,105,116,101,114,105,111,110,92,110,32,32,32,32,32,42,32,98,121,32,119,104,105,99,104,32,116,104,101,121,39,114,101,32,99,111,109,112,97,114,101,100,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,85,110,108,105,107,101,32,96,95,46,100,105,102,102,101,114,101,110,99,101,66,121,96,44,32,116,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,118,97,108,117,101,115,32,84,104,101,32,118,97,108,117,101,115,32,116,111,32,114,101,109,111,118,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,123,32,39,120,39,58,32,49,32,125,44,32,123,32,39,120,39,58,32,50,32,125,44,32,123,32,39,120,39,58,32,51,32,125,44,32,123,32,39,120,39,58,32,49,32,125,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,117,108,108,65,108,108,66,121,40,97,114,114,97,121,44,32,91,123,32,39,120,39,58,32,49,32,125,44,32,123,32,39,120,39,58,32,51,32,125,93,44,32,39,120,39,41,59,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,120,39,58,32,50,32,125,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,117,108,108,65,108,108,66,121,40,97,114,114,97,121,44,32,118,97,108,117,101,115,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,32,38,38,32,118,97,108,117,101,115,32,38,38,32,118,97,108,117,101,115,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,80,117,108,108,65,108,108,40,97,114,114,97,121,44,32,118,97,108,117,101,115,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,50,41,41,92,110,32,32,32,32,32,32,32,32,58,32,97,114,114,97,121,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,112,117,108,108,65,108,108,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,99,111,109,112,97,114,97,116,111,114,96,32,119,104,105,99,104,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,116,111,32,99,111,109,112,97,114,101,32,101,108,101,109,101,110,116,115,32,111,102,32,96,97,114,114,97,121,96,32,116,111,32,96,118,97,108,117,101,115,96,46,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,119,111,32,97,114,103,117,109,101,110,116,115,58,32,40,97,114,114,86,97,108,44,32,111,116,104,86,97,108,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,85,110,108,105,107,101,32,96,95,46,100,105,102,102,101,114,101,110,99,101,87,105,116,104,96,44,32,116,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,54,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,118,97,108,117,101,115,32,84,104,101,32,118,97,108,117,101,115,32,116,111,32,114,101,109,111,118,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,111,109,112,97,114,97,116,111,114,93,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,50,32,125,44,32,123,32,39,120,39,58,32,51,44,32,39,121,39,58,32,52,32,125,44,32,123,32,39,120,39,58,32,53,44,32,39,121,39,58,32,54,32,125,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,117,108,108,65,108,108,87,105,116,104,40,97,114,114,97,121,44,32,91,123,32,39,120,39,58,32,51,44,32,39,121,39,58,32,52,32,125,93,44,32,95,46,105,115,69,113,117,97,108,41,59,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,50,32,125,44,32,123,32,39,120,39,58,32,53,44,32,39,121,39,58,32,54,32,125,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,117,108,108,65,108,108,87,105,116,104,40,97,114,114,97,121,44,32,118,97,108,117,101,115,44,32,99,111,109,112,97,114,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,32,38,38,32,118,97,108,117,101,115,32,38,38,32,118,97,108,117,101,115,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,80,117,108,108,65,108,108,40,97,114,114,97,121,44,32,118,97,108,117,101,115,44,32,117,110,100,101,102,105,110,101,100,44,32,99,111,109,112,97,114,97,116,111,114,41,92,110,32,32,32,32,32,32,32,32,58,32,97,114,114,97,121,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,109,111,118,101,115,32,101,108,101,109,101,110,116,115,32,102,114,111,109,32,96,97,114,114,97,121,96,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,116,111,32,96,105,110,100,101,120,101,115,96,32,97,110,100,32,114,101,116,117,114,110,115,32,97,110,92,110,32,32,32,32,32,42,32,97,114,114,97,121,32,111,102,32,114,101,109,111,118,101,100,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,85,110,108,105,107,101,32,96,95,46,97,116,96,44,32,116,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,40,110,117,109,98,101,114,124,110,117,109,98,101,114,91,93,41,125,32,91,105,110,100,101,120,101,115,93,32,84,104,101,32,105,110,100,101,120,101,115,32,111,102,32,101,108,101,109,101,110,116,115,32,116,111,32,114,101,109,111,118,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,114,101,109,111,118,101,100,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,39,97,39,44,32,39,98,39,44,32,39,99,39,44,32,39,100,39,93,59,92,110,32,32,32,32,32,42,32,118,97,114,32,112,117,108,108,101,100,32,61,32,95,46,112,117,108,108,65,116,40,97,114,114,97,121,44,32,91,49,44,32,51,93,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,97,39,44,32,39,99,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,112,117,108,108,101,100,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,98,39,44,32,39,100,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,112,117,108,108,65,116,32,61,32,102,108,97,116,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,44,32,105,110,100,101,120,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,98,97,115,101,65,116,40,97,114,114,97,121,44,32,105,110,100,101,120,101,115,41,59,92,110,92,110,32,32,32,32,32,32,98,97,115,101,80,117,108,108,65,116,40,97,114,114,97,121,44,32,97,114,114,97,121,77,97,112,40,105,110,100,101,120,101,115,44,32,102,117,110,99,116,105,111,110,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,73,110,100,101,120,40,105,110,100,101,120,44,32,108,101,110,103,116,104,41,32,63,32,43,105,110,100,101,120,32,58,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,125,41,46,115,111,114,116,40,99,111,109,112,97,114,101,65,115,99,101,110,100,105,110,103,41,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,109,111,118,101,115,32,97,108,108,32,101,108,101,109,101,110,116,115,32,102,114,111,109,32,96,97,114,114,97,121,96,32,116,104,97,116,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,32,116,114,117,116,104,121,32,102,111,114,92,110,32,32,32,32,32,42,32,97,110,100,32,114,101,116,117,114,110,115,32,97,110,32,97,114,114,97,121,32,111,102,32,116,104,101,32,114,101,109,111,118,101,100,32,101,108,101,109,101,110,116,115,46,32,84,104,101,32,112,114,101,100,105,99,97,116,101,32,105,115,32,105,110,118,111,107,101,100,92,110,32,32,32,32,32,42,32,119,105,116,104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,97,114,114,97,121,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,85,110,108,105,107,101,32,96,95,46,102,105,108,116,101,114,96,44,32,116,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,97,114,114,97,121,96,46,32,85,115,101,32,96,95,46,112,117,108,108,96,92,110,32,32,32,32,32,42,32,116,111,32,112,117,108,108,32,101,108,101,109,101,110,116,115,32,102,114,111,109,32,97,110,32,97,114,114,97,121,32,98,121,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,114,101,109,111,118,101,100,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,49,44,32,50,44,32,51,44,32,52,93,59,92,110,32,32,32,32,32,42,32,118,97,114,32,101,118,101,110,115,32,61,32,95,46,114,101,109,111,118,101,40,97,114,114,97,121,44,32,102,117,110,99,116,105,111,110,40,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,110,32,37,32,50,32,61,61,32,48,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,101,118,101,110,115,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,52,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,40,97,114,114,97,121,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,105,102,32,40,33,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,101,115,32,61,32,91,93,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,112,114,101,100,105,99,97,116,101,32,61,32,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,44,32,51,41,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,97,114,114,97,121,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,114,101,100,105,99,97,116,101,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,97,114,114,97,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,101,115,46,112,117,115,104,40,105,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,98,97,115,101,80,117,108,108,65,116,40,97,114,114,97,121,44,32,105,110,100,101,120,101,115,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,118,101,114,115,101,115,32,96,97,114,114,97,121,96,32,115,111,32,116,104,97,116,32,116,104,101,32,102,105,114,115,116,32,101,108,101,109,101,110,116,32,98,101,99,111,109,101,115,32,116,104,101,32,108,97,115,116,44,32,116,104,101,32,115,101,99,111,110,100,92,110,32,32,32,32,32,42,32,101,108,101,109,101,110,116,32,98,101,99,111,109,101,115,32,116,104,101,32,115,101,99,111,110,100,32,116,111,32,108,97,115,116,44,32,97,110,100,32,115,111,32,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,97,114,114,97,121,96,32,97,110,100,32,105,115,32,98,97,115,101,100,32,111,110,92,110,32,32,32,32,32,42,32,91,96,65,114,114,97,121,35,114,101,118,101,114,115,101,96,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,65,114,114,97,121,47,114,101,118,101,114,115,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,49,44,32,50,44,32,51,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,101,118,101,114,115,101,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,51,44,32,50,44,32,49,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,51,44,32,50,44,32,49,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,118,101,114,115,101,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,97,114,114,97,121,32,58,32,110,97,116,105,118,101,82,101,118,101,114,115,101,46,99,97,108,108,40,97,114,114,97,121,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,32,102,114,111,109,32,96,115,116,97,114,116,96,32,117,112,32,116,111,44,32,98,117,116,32,110,111,116,32,105,110,99,108,117,100,105,110,103,44,32,96,101,110,100,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,117,115,101,100,32,105,110,115,116,101,97,100,32,111,102,92,110,32,32,32,32,32,42,32,91,96,65,114,114,97,121,35,115,108,105,99,101,96,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,65,114,114,97,121,47,115,108,105,99,101,41,32,116,111,32,101,110,115,117,114,101,32,100,101,110,115,101,32,97,114,114,97,121,115,32,97,114,101,92,110,32,32,32,32,32,42,32,114,101,116,117,114,110,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,115,108,105,99,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,115,116,97,114,116,61,48,93,32,84,104,101,32,115,116,97,114,116,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,101,110,100,61,97,114,114,97,121,46,108,101,110,103,116,104,93,32,84,104,101,32,101,110,100,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,108,105,99,101,40,97,114,114,97,121,44,32,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,101,110,100,32,38,38,32,116,121,112,101,111,102,32,101,110,100,32,33,61,32,39,110,117,109,98,101,114,39,32,38,38,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,97,114,114,97,121,44,32,115,116,97,114,116,44,32,101,110,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,101,110,100,32,61,32,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,115,116,97,114,116,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,116,111,73,110,116,101,103,101,114,40,115,116,97,114,116,41,59,92,110,32,32,32,32,32,32,32,32,101,110,100,32,61,32,101,110,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,108,101,110,103,116,104,32,58,32,116,111,73,110,116,101,103,101,114,40,101,110,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,108,105,99,101,40,97,114,114,97,121,44,32,115,116,97,114,116,44,32,101,110,100,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,85,115,101,115,32,97,32,98,105,110,97,114,121,32,115,101,97,114,99,104,32,116,111,32,100,101,116,101,114,109,105,110,101,32,116,104,101,32,108,111,119,101,115,116,32,105,110,100,101,120,32,97,116,32,119,104,105,99,104,32,96,118,97,108,117,101,96,92,110,32,32,32,32,32,42,32,115,104,111,117,108,100,32,98,101,32,105,110,115,101,114,116,101,100,32,105,110,116,111,32,96,97,114,114,97,121,96,32,105,110,32,111,114,100,101,114,32,116,111,32,109,97,105,110,116,97,105,110,32,105,116,115,32,115,111,114,116,32,111,114,100,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,115,111,114,116,101,100,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,101,118,97,108,117,97,116,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,97,116,32,119,104,105,99,104,32,96,118,97,108,117,101,96,32,115,104,111,117,108,100,32,98,101,32,105,110,115,101,114,116,101,100,92,110,32,32,32,32,32,42,32,32,105,110,116,111,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,111,114,116,101,100,73,110,100,101,120,40,91,51,48,44,32,53,48,93,44,32,52,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,49,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,111,114,116,101,100,73,110,100,101,120,40,97,114,114,97,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,111,114,116,101,100,73,110,100,101,120,40,97,114,114,97,121,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,115,111,114,116,101,100,73,110,100,101,120,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,105,116,101,114,97,116,101,101,96,92,110,32,32,32,32,32,42,32,119,104,105,99,104,32,105,115,32,105,110,118,111,107,101,100,32,102,111,114,32,96,118,97,108,117,101,96,32,97,110,100,32,101,97,99,104,32,101,108,101,109,101,110,116,32,111,102,32,96,97,114,114,97,121,96,32,116,111,32,99,111,109,112,117,116,101,32,116,104,101,105,114,92,110,32,32,32,32,32,42,32,115,111,114,116,32,114,97,110,107,105,110,103,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,115,111,114,116,101,100,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,101,118,97,108,117,97,116,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,97,116,32,119,104,105,99,104,32,96,118,97,108,117,101,96,32,115,104,111,117,108,100,32,98,101,32,105,110,115,101,114,116,101,100,92,110,32,32,32,32,32,42,32,32,105,110,116,111,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,123,32,39,120,39,58,32,52,32,125,44,32,123,32,39,120,39,58,32,53,32,125,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,111,114,116,101,100,73,110,100,101,120,66,121,40,111,98,106,101,99,116,115,44,32,123,32,39,120,39,58,32,52,32,125,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,120,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,48,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,115,111,114,116,101,100,73,110,100,101,120,66,121,40,111,98,106,101,99,116,115,44,32,123,32,39,120,39,58,32,52,32,125,44,32,39,120,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,48,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,111,114,116,101,100,73,110,100,101,120,66,121,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,111,114,116,101,100,73,110,100,101,120,66,121,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,50,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,105,110,100,101,120,79,102,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,112,101,114,102,111,114,109,115,32,97,32,98,105,110,97,114,121,92,110,32,32,32,32,32,42,32,115,101,97,114,99,104,32,111,110,32,97,32,115,111,114,116,101,100,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,109,97,116,99,104,101,100,32,118,97,108,117,101,44,32,101,108,115,101,32,96,45,49,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,111,114,116,101,100,73,110,100,101,120,79,102,40,91,52,44,32,53,44,32,53,44,32,53,44,32,54,93,44,32,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,49,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,111,114,116,101,100,73,110,100,101,120,79,102,40,97,114,114,97,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,98,97,115,101,83,111,114,116,101,100,73,110,100,101,120,40,97,114,114,97,121,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,60,32,108,101,110,103,116,104,32,38,38,32,101,113,40,97,114,114,97,121,91,105,110,100,101,120,93,44,32,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,115,111,114,116,101,100,73,110,100,101,120,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,114,101,116,117,114,110,115,32,116,104,101,32,104,105,103,104,101,115,116,92,110,32,32,32,32,32,42,32,105,110,100,101,120,32,97,116,32,119,104,105,99,104,32,96,118,97,108,117,101,96,32,115,104,111,117,108,100,32,98,101,32,105,110,115,101,114,116,101,100,32,105,110,116,111,32,96,97,114,114,97,121,96,32,105,110,32,111,114,100,101,114,32,116,111,92,110,32,32,32,32,32,42,32,109,97,105,110,116,97,105,110,32,105,116,115,32,115,111,114,116,32,111,114,100,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,115,111,114,116,101,100,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,101,118,97,108,117,97,116,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,97,116,32,119,104,105,99,104,32,96,118,97,108,117,101,96,32,115,104,111,117,108,100,32,98,101,32,105,110,115,101,114,116,101,100,92,110,32,32,32,32,32,42,32,32,105,110,116,111,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,40,91,52,44,32,53,44,32,53,44,32,53,44,32,54,93,44,32,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,52,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,40,97,114,114,97,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,111,114,116,101,100,73,110,100,101,120,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,116,114,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,105,116,101,114,97,116,101,101,96,92,110,32,32,32,32,32,42,32,119,104,105,99,104,32,105,115,32,105,110,118,111,107,101,100,32,102,111,114,32,96,118,97,108,117,101,96,32,97,110,100,32,101,97,99,104,32,101,108,101,109,101,110,116,32,111,102,32,96,97,114,114,97,121,96,32,116,111,32,99,111,109,112,117,116,101,32,116,104,101,105,114,92,110,32,32,32,32,32,42,32,115,111,114,116,32,114,97,110,107,105,110,103,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,115,111,114,116,101,100,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,101,118,97,108,117,97,116,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,97,116,32,119,104,105,99,104,32,96,118,97,108,117,101,96,32,115,104,111,117,108,100,32,98,101,32,105,110,115,101,114,116,101,100,92,110,32,32,32,32,32,42,32,32,105,110,116,111,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,123,32,39,120,39,58,32,52,32,125,44,32,123,32,39,120,39,58,32,53,32,125,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,66,121,40,111,98,106,101,99,116,115,44,32,123,32,39,120,39,58,32,52,32,125,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,120,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,49,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,66,121,40,111,98,106,101,99,116,115,44,32,123,32,39,120,39,58,32,52,32,125,44,32,39,120,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,49,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,66,121,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,111,114,116,101,100,73,110,100,101,120,66,121,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,50,41,44,32,116,114,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,108,97,115,116,73,110,100,101,120,79,102,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,112,101,114,102,111,114,109,115,32,97,32,98,105,110,97,114,121,92,110,32,32,32,32,32,42,32,115,101,97,114,99,104,32,111,110,32,97,32,115,111,114,116,101,100,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,109,97,116,99,104,101,100,32,118,97,108,117,101,44,32,101,108,115,101,32,96,45,49,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,79,102,40,91,52,44,32,53,44,32,53,44,32,53,44,32,54,93,44,32,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,79,102,40,97,114,114,97,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,98,97,115,101,83,111,114,116,101,100,73,110,100,101,120,40,97,114,114,97,121,44,32,118,97,108,117,101,44,32,116,114,117,101,41,32,45,32,49,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,113,40,97,114,114,97,121,91,105,110,100,101,120,93,44,32,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,117,110,105,113,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,39,115,32,100,101,115,105,103,110,101,100,32,97,110,100,32,111,112,116,105,109,105,122,101,100,92,110,32,32,32,32,32,42,32,102,111,114,32,115,111,114,116,101,100,32,97,114,114,97,121,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,100,117,112,108,105,99,97,116,101,32,102,114,101,101,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,111,114,116,101,100,85,110,105,113,40,91,49,44,32,49,44,32,50,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,111,114,116,101,100,85,110,105,113,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,83,111,114,116,101,100,85,110,105,113,40,97,114,114,97,121,41,92,110,32,32,32,32,32,32,32,32,58,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,117,110,105,113,66,121,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,39,115,32,100,101,115,105,103,110,101,100,32,97,110,100,32,111,112,116,105,109,105,122,101,100,92,110,32,32,32,32,32,42,32,102,111,114,32,115,111,114,116,101,100,32,97,114,114,97,121,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,100,117,112,108,105,99,97,116,101,32,102,114,101,101,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,111,114,116,101,100,85,110,105,113,66,121,40,91,49,46,49,44,32,49,46,50,44,32,50,46,51,44,32,50,46,52,93,44,32,77,97,116,104,46,102,108,111,111,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,46,49,44,32,50,46,51,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,111,114,116,101,100,85,110,105,113,66,121,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,83,111,114,116,101,100,85,110,105,113,40,97,114,114,97,121,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,50,41,41,92,110,32,32,32,32,32,32,32,32,58,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,97,108,108,32,98,117,116,32,116,104,101,32,102,105,114,115,116,32,101,108,101,109,101,110,116,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,97,105,108,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,51,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,97,105,108,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,108,101,110,103,116,104,32,63,32,98,97,115,101,83,108,105,99,101,40,97,114,114,97,121,44,32,49,44,32,108,101,110,103,116,104,41,32,58,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,32,119,105,116,104,32,96,110,96,32,101,108,101,109,101,110,116,115,32,116,97,107,101,110,32,102,114,111,109,32,116,104,101,32,98,101,103,105,110,110,105,110,103,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,110,61,49,93,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,116,111,32,116,97,107,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,40,91,49,44,32,50,44,32,51,93,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,40,91,49,44,32,50,44,32,51,93,44,32,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,40,91,49,44,32,50,44,32,51,93,44,32,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,97,107,101,40,97,114,114,97,121,44,32,110,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,110,32,61,32,40,103,117,97,114,100,32,124,124,32,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,63,32,49,32,58,32,116,111,73,110,116,101,103,101,114,40,110,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,108,105,99,101,40,97,114,114,97,121,44,32,48,44,32,110,32,60,32,48,32,63,32,48,32,58,32,110,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,32,119,105,116,104,32,96,110,96,32,101,108,101,109,101,110,116,115,32,116,97,107,101,110,32,102,114,111,109,32,116,104,101,32,101,110,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,110,61,49,93,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,116,111,32,116,97,107,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,82,105,103,104,116,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,82,105,103,104,116,40,91,49,44,32,50,44,32,51,93,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,82,105,103,104,116,40,91,49,44,32,50,44,32,51,93,44,32,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,82,105,103,104,116,40,91,49,44,32,50,44,32,51,93,44,32,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,97,107,101,82,105,103,104,116,40,97,114,114,97,121,44,32,110,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,97,114,114,97,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,110,32,61,32,40,103,117,97,114,100,32,124,124,32,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,63,32,49,32,58,32,116,111,73,110,116,101,103,101,114,40,110,41,59,92,110,32,32,32,32,32,32,110,32,61,32,108,101,110,103,116,104,32,45,32,110,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,83,108,105,99,101,40,97,114,114,97,121,44,32,110,32,60,32,48,32,63,32,48,32,58,32,110,44,32,108,101,110,103,116,104,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,32,119,105,116,104,32,101,108,101,109,101,110,116,115,32,116,97,107,101,110,32,102,114,111,109,32,116,104,101,32,101,110,100,46,32,69,108,101,109,101,110,116,115,32,97,114,101,92,110,32,32,32,32,32,42,32,116,97,107,101,110,32,117,110,116,105,108,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,32,102,97,108,115,101,121,46,32,84,104,101,32,112,114,101,100,105,99,97,116,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,92,110,32,32,32,32,32,42,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,97,114,114,97,121,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,112,101,98,98,108,101,115,39,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,40,117,115,101,114,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,33,111,46,97,99,116,105,118,101,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,102,114,101,100,39,44,32,39,112,101,98,98,108,101,115,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,40,117,115,101,114,115,44,32,123,32,39,117,115,101,114,39,58,32,39,112,101,98,98,108,101,115,39,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,112,101,98,98,108,101,115,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,40,117,115,101,114,115,44,32,91,39,97,99,116,105,118,101,39,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,102,114,101,100,39,44,32,39,112,101,98,98,108,101,115,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,40,117,115,101,114,115,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,97,107,101,82,105,103,104,116,87,104,105,108,101,40,97,114,114,97,121,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,87,104,105,108,101,40,97,114,114,97,121,44,32,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,44,32,51,41,44,32,102,97,108,115,101,44,32,116,114,117,101,41,92,110,32,32,32,32,32,32,32,32,58,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,32,119,105,116,104,32,101,108,101,109,101,110,116,115,32,116,97,107,101,110,32,102,114,111,109,32,116,104,101,32,98,101,103,105,110,110,105,110,103,46,32,69,108,101,109,101,110,116,115,92,110,32,32,32,32,32,42,32,97,114,101,32,116,97,107,101,110,32,117,110,116,105,108,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,32,102,97,108,115,101,121,46,32,84,104,101,32,112,114,101,100,105,99,97,116,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,92,110,32,32,32,32,32,42,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,97,114,114,97,121,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,108,105,99,101,32,111,102,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,112,101,98,98,108,101,115,39,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,87,104,105,108,101,40,117,115,101,114,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,33,111,46,97,99,116,105,118,101,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,98,97,114,110,101,121,39,44,32,39,102,114,101,100,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,87,104,105,108,101,40,117,115,101,114,115,44,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,98,97,114,110,101,121,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,87,104,105,108,101,40,117,115,101,114,115,44,32,91,39,97,99,116,105,118,101,39,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,98,97,114,110,101,121,39,44,32,39,102,114,101,100,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,116,97,107,101,87,104,105,108,101,40,117,115,101,114,115,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,97,107,101,87,104,105,108,101,40,97,114,114,97,121,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,87,104,105,108,101,40,97,114,114,97,121,44,32,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,44,32,51,41,41,92,110,32,32,32,32,32,32,32,32,58,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,117,110,105,113,117,101,32,118,97,108,117,101,115,44,32,105,110,32,111,114,100,101,114,44,32,102,114,111,109,32,97,108,108,32,103,105,118,101,110,32,97,114,114,97,121,115,32,117,115,105,110,103,92,110,32,32,32,32,32,42,32,91,96,83,97,109,101,86,97,108,117,101,90,101,114,111,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,115,97,109,101,118,97,108,117,101,122,101,114,111,41,92,110,32,32,32,32,32,42,32,102,111,114,32,101,113,117,97,108,105,116,121,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,65,114,114,97,121,125,32,91,97,114,114,97,121,115,93,32,84,104,101,32,97,114,114,97,121,115,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,99,111,109,98,105,110,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,110,105,111,110,40,91,50,93,44,32,91,49,44,32,50,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,49,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,117,110,105,111,110,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,85,110,105,113,40,98,97,115,101,70,108,97,116,116,101,110,40,97,114,114,97,121,115,44,32,49,44,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,44,32,116,114,117,101,41,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,117,110,105,111,110,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,105,116,101,114,97,116,101,101,96,32,119,104,105,99,104,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,102,111,114,32,101,97,99,104,32,101,108,101,109,101,110,116,32,111,102,32,101,97,99,104,32,96,97,114,114,97,121,115,96,32,116,111,32,103,101,110,101,114,97,116,101,32,116,104,101,32,99,114,105,116,101,114,105,111,110,32,98,121,92,110,32,32,32,32,32,42,32,119,104,105,99,104,32,117,110,105,113,117,101,110,101,115,115,32,105,115,32,99,111,109,112,117,116,101,100,46,32,82,101,115,117,108,116,32,118,97,108,117,101,115,32,97,114,101,32,99,104,111,115,101,110,32,102,114,111,109,32,116,104,101,32,102,105,114,115,116,92,110,32,32,32,32,32,42,32,97,114,114,97,121,32,105,110,32,119,104,105,99,104,32,116,104,101,32,118,97,108,117,101,32,111,99,99,117,114,115,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,92,110,32,32,32,32,32,42,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,65,114,114,97,121,125,32,91,97,114,114,97,121,115,93,32,84,104,101,32,97,114,114,97,121,115,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,99,111,109,98,105,110,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,110,105,111,110,66,121,40,91,50,46,49,93,44,32,91,49,46,50,44,32,50,46,51,93,44,32,77,97,116,104,46,102,108,111,111,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,46,49,44,32,49,46,50,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,117,110,105,111,110,66,121,40,91,123,32,39,120,39,58,32,49,32,125,93,44,32,91,123,32,39,120,39,58,32,50,32,125,44,32,123,32,39,120,39,58,32,49,32,125,93,44,32,39,120,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,120,39,58,32,49,32,125,44,32,123,32,39,120,39,58,32,50,32,125,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,117,110,105,111,110,66,121,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,114,97,116,101,101,32,61,32,108,97,115,116,40,97,114,114,97,121,115,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,105,116,101,114,97,116,101,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,114,97,116,101,101,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,85,110,105,113,40,98,97,115,101,70,108,97,116,116,101,110,40,97,114,114,97,121,115,44,32,49,44,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,44,32,116,114,117,101,41,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,50,41,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,117,110,105,111,110,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,99,111,109,112,97,114,97,116,111,114,96,32,119,104,105,99,104,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,116,111,32,99,111,109,112,97,114,101,32,101,108,101,109,101,110,116,115,32,111,102,32,96,97,114,114,97,121,115,96,46,32,82,101,115,117,108,116,32,118,97,108,117,101,115,32,97,114,101,32,99,104,111,115,101,110,32,102,114,111,109,92,110,32,32,32,32,32,42,32,116,104,101,32,102,105,114,115,116,32,97,114,114,97,121,32,105,110,32,119,104,105,99,104,32,116,104,101,32,118,97,108,117,101,32,111,99,99,117,114,115,46,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,115,32,105,110,118,111,107,101,100,92,110,32,32,32,32,32,42,32,119,105,116,104,32,116,119,111,32,97,114,103,117,109,101,110,116,115,58,32,40,97,114,114,86,97,108,44,32,111,116,104,86,97,108,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,65,114,114,97,121,125,32,91,97,114,114,97,121,115,93,32,84,104,101,32,97,114,114,97,121,115,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,111,109,112,97,114,97,116,111,114,93,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,99,111,109,98,105,110,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,50,32,125,44,32,123,32,39,120,39,58,32,50,44,32,39,121,39,58,32,49,32,125,93,59,92,110,32,32,32,32,32,42,32,118,97,114,32,111,116,104,101,114,115,32,61,32,91,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,49,32,125,44,32,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,50,32,125,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,110,105,111,110,87,105,116,104,40,111,98,106,101,99,116,115,44,32,111,116,104,101,114,115,44,32,95,46,105,115,69,113,117,97,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,50,32,125,44,32,123,32,39,120,39,58,32,50,44,32,39,121,39,58,32,49,32,125,44,32,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,49,32,125,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,117,110,105,111,110,87,105,116,104,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,111,109,112,97,114,97,116,111,114,32,61,32,108,97,115,116,40,97,114,114,97,121,115,41,59,92,110,32,32,32,32,32,32,99,111,109,112,97,114,97,116,111,114,32,61,32,116,121,112,101,111,102,32,99,111,109,112,97,114,97,116,111,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,99,111,109,112,97,114,97,116,111,114,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,85,110,105,113,40,98,97,115,101,70,108,97,116,116,101,110,40,97,114,114,97,121,115,44,32,49,44,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,44,32,116,114,117,101,41,44,32,117,110,100,101,102,105,110,101,100,44,32,99,111,109,112,97,114,97,116,111,114,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,100,117,112,108,105,99,97,116,101,45,102,114,101,101,32,118,101,114,115,105,111,110,32,111,102,32,97,110,32,97,114,114,97,121,44,32,117,115,105,110,103,92,110,32,32,32,32,32,42,32,91,96,83,97,109,101,86,97,108,117,101,90,101,114,111,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,115,97,109,101,118,97,108,117,101,122,101,114,111,41,92,110,32,32,32,32,32,42,32,102,111,114,32,101,113,117,97,108,105,116,121,32,99,111,109,112,97,114,105,115,111,110,115,44,32,105,110,32,119,104,105,99,104,32,111,110,108,121,32,116,104,101,32,102,105,114,115,116,32,111,99,99,117,114,114,101,110,99,101,32,111,102,32,101,97,99,104,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,42,32,105,115,32,107,101,112,116,46,32,84,104,101,32,111,114,100,101,114,32,111,102,32,114,101,115,117,108,116,32,118,97,108,117,101,115,32,105,115,32,100,101,116,101,114,109,105,110,101,100,32,98,121,32,116,104,101,32,111,114,100,101,114,32,116,104,101,121,32,111,99,99,117,114,92,110,32,32,32,32,32,42,32,105,110,32,116,104,101,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,100,117,112,108,105,99,97,116,101,32,102,114,101,101,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,110,105,113,40,91,50,44,32,49,44,32,50,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,49,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,110,105,113,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,32,63,32,98,97,115,101,85,110,105,113,40,97,114,114,97,121,41,32,58,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,117,110,105,113,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,105,116,101,114,97,116,101,101,96,32,119,104,105,99,104,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,102,111,114,32,101,97,99,104,32,101,108,101,109,101,110,116,32,105,110,32,96,97,114,114,97,121,96,32,116,111,32,103,101,110,101,114,97,116,101,32,116,104,101,32,99,114,105,116,101,114,105,111,110,32,98,121,32,119,104,105,99,104,92,110,32,32,32,32,32,42,32,117,110,105,113,117,101,110,101,115,115,32,105,115,32,99,111,109,112,117,116,101,100,46,32,84,104,101,32,111,114,100,101,114,32,111,102,32,114,101,115,117,108,116,32,118,97,108,117,101,115,32,105,115,32,100,101,116,101,114,109,105,110,101,100,32,98,121,32,116,104,101,92,110,32,32,32,32,32,42,32,111,114,100,101,114,32,116,104,101,121,32,111,99,99,117,114,32,105,110,32,116,104,101,32,97,114,114,97,121,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,92,110,32,32,32,32,32,42,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,100,117,112,108,105,99,97,116,101,32,102,114,101,101,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,110,105,113,66,121,40,91,50,46,49,44,32,49,46,50,44,32,50,46,51,93,44,32,77,97,116,104,46,102,108,111,111,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,46,49,44,32,49,46,50,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,117,110,105,113,66,121,40,91,123,32,39,120,39,58,32,49,32,125,44,32,123,32,39,120,39,58,32,50,32,125,44,32,123,32,39,120,39,58,32,49,32,125,93,44,32,39,120,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,120,39,58,32,49,32,125,44,32,123,32,39,120,39,58,32,50,32,125,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,110,105,113,66,121,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,32,63,32,98,97,115,101,85,110,105,113,40,97,114,114,97,121,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,50,41,41,32,58,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,117,110,105,113,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,99,111,109,112,97,114,97,116,111,114,96,32,119,104,105,99,104,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,116,111,32,99,111,109,112,97,114,101,32,101,108,101,109,101,110,116,115,32,111,102,32,96,97,114,114,97,121,96,46,32,84,104,101,32,111,114,100,101,114,32,111,102,32,114,101,115,117,108,116,32,118,97,108,117,101,115,32,105,115,92,110,32,32,32,32,32,42,32,100,101,116,101,114,109,105,110,101,100,32,98,121,32,116,104,101,32,111,114,100,101,114,32,116,104,101,121,32,111,99,99,117,114,32,105,110,32,116,104,101,32,97,114,114,97,121,46,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,115,32,105,110,118,111,107,101,100,92,110,32,32,32,32,32,42,32,119,105,116,104,32,116,119,111,32,97,114,103,117,109,101,110,116,115,58,32,40,97,114,114,86,97,108,44,32,111,116,104,86,97,108,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,111,109,112,97,114,97,116,111,114,93,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,100,117,112,108,105,99,97,116,101,32,102,114,101,101,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,50,32,125,44,32,123,32,39,120,39,58,32,50,44,32,39,121,39,58,32,49,32,125,44,32,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,50,32,125,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,110,105,113,87,105,116,104,40,111,98,106,101,99,116,115,44,32,95,46,105,115,69,113,117,97,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,50,32,125,44,32,123,32,39,120,39,58,32,50,44,32,39,121,39,58,32,49,32,125,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,110,105,113,87,105,116,104,40,97,114,114,97,121,44,32,99,111,109,112,97,114,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,99,111,109,112,97,114,97,116,111,114,32,61,32,116,121,112,101,111,102,32,99,111,109,112,97,114,97,116,111,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,99,111,109,112,97,114,97,116,111,114,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,32,63,32,98,97,115,101,85,110,105,113,40,97,114,114,97,121,44,32,117,110,100,101,102,105,110,101,100,44,32,99,111,109,112,97,114,97,116,111,114,41,32,58,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,122,105,112,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,97,110,32,97,114,114,97,121,32,111,102,32,103,114,111,117,112,101,100,92,110,32,32,32,32,32,42,32,101,108,101,109,101,110,116,115,32,97,110,100,32,99,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,114,101,103,114,111,117,112,105,110,103,32,116,104,101,32,101,108,101,109,101,110,116,115,32,116,111,32,116,104,101,105,114,32,112,114,101,45,122,105,112,92,110,32,32,32,32,32,42,32,99,111,110,102,105,103,117,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,49,46,50,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,111,102,32,103,114,111,117,112,101,100,32,101,108,101,109,101,110,116,115,32,116,111,32,112,114,111,99,101,115,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,114,101,103,114,111,117,112,101,100,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,122,105,112,112,101,100,32,61,32,95,46,122,105,112,40,91,39,97,39,44,32,39,98,39,93,44,32,91,49,44,32,50,93,44,32,91,116,114,117,101,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,91,39,97,39,44,32,49,44,32,116,114,117,101,93,44,32,91,39,98,39,44,32,50,44,32,102,97,108,115,101,93,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,110,122,105,112,40,122,105,112,112,101,100,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,91,39,97,39,44,32,39,98,39,93,44,32,91,49,44,32,50,93,44,32,91,116,114,117,101,44,32,102,97,108,115,101,93,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,110,122,105,112,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,48,59,92,110,32,32,32,32,32,32,97,114,114,97,121,32,61,32,97,114,114,97,121,70,105,108,116,101,114,40,97,114,114,97,121,44,32,102,117,110,99,116,105,111,110,40,103,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,103,114,111,117,112,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,110,97,116,105,118,101,77,97,120,40,103,114,111,117,112,46,108,101,110,103,116,104,44,32,108,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,84,105,109,101,115,40,108,101,110,103,116,104,44,32,102,117,110,99,116,105,111,110,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,77,97,112,40,97,114,114,97,121,44,32,98,97,115,101,80,114,111,112,101,114,116,121,40,105,110,100,101,120,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,117,110,122,105,112,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,105,116,101,114,97,116,101,101,96,32,116,111,32,115,112,101,99,105,102,121,92,110,32,32,32,32,32,42,32,104,111,119,32,114,101,103,114,111,117,112,101,100,32,118,97,108,117,101,115,32,115,104,111,117,108,100,32,98,101,32,99,111,109,98,105,110,101,100,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,101,92,110,32,32,32,32,32,42,32,101,108,101,109,101,110,116,115,32,111,102,32,101,97,99,104,32,103,114,111,117,112,58,32,40,46,46,46,103,114,111,117,112,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,56,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,111,102,32,103,114,111,117,112,101,100,32,101,108,101,109,101,110,116,115,32,116,111,32,112,114,111,99,101,115,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,111,109,98,105,110,101,92,110,32,32,32,32,32,42,32,32,114,101,103,114,111,117,112,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,114,101,103,114,111,117,112,101,100,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,122,105,112,112,101,100,32,61,32,95,46,122,105,112,40,91,49,44,32,50,93,44,32,91,49,48,44,32,50,48,93,44,32,91,49,48,48,44,32,50,48,48,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,91,49,44,32,49,48,44,32,49,48,48,93,44,32,91,50,44,32,50,48,44,32,50,48,48,93,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,110,122,105,112,87,105,116,104,40,122,105,112,112,101,100,44,32,95,46,97,100,100,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,51,44,32,51,48,44,32,51,48,48,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,110,122,105,112,87,105,116,104,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,117,110,122,105,112,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,114,97,116,101,101,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,77,97,112,40,114,101,115,117,108,116,44,32,102,117,110,99,116,105,111,110,40,103,114,111,117,112,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,112,112,108,121,40,105,116,101,114,97,116,101,101,44,32,117,110,100,101,102,105,110,101,100,44,32,103,114,111,117,112,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,101,120,99,108,117,100,105,110,103,32,97,108,108,32,103,105,118,101,110,32,118,97,108,117,101,115,32,117,115,105,110,103,92,110,32,32,32,32,32,42,32,91,96,83,97,109,101,86,97,108,117,101,90,101,114,111,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,115,97,109,101,118,97,108,117,101,122,101,114,111,41,92,110,32,32,32,32,32,42,32,102,111,114,32,101,113,117,97,108,105,116,121,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,85,110,108,105,107,101,32,96,95,46,112,117,108,108,96,44,32,116,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,97,32,110,101,119,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,42,125,32,91,118,97,108,117,101,115,93,32,84,104,101,32,118,97,108,117,101,115,32,116,111,32,101,120,99,108,117,100,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,102,105,108,116,101,114,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,100,105,102,102,101,114,101,110,99,101,44,32,95,46,120,111,114,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,119,105,116,104,111,117,116,40,91,50,44,32,49,44,32,50,44,32,51,93,44,32,49,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,51,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,119,105,116,104,111,117,116,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,44,32,118,97,108,117,101,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,97,114,114,97,121,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,68,105,102,102,101,114,101,110,99,101,40,97,114,114,97,121,44,32,118,97,108,117,101,115,41,92,110,32,32,32,32,32,32,32,32,58,32,91,93,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,117,110,105,113,117,101,32,118,97,108,117,101,115,32,116,104,97,116,32,105,115,32,116,104,101,92,110,32,32,32,32,32,42,32,91,115,121,109,109,101,116,114,105,99,32,100,105,102,102,101,114,101,110,99,101,93,40,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,83,121,109,109,101,116,114,105,99,95,100,105,102,102,101,114,101,110,99,101,41,92,110,32,32,32,32,32,42,32,111,102,32,116,104,101,32,103,105,118,101,110,32,97,114,114,97,121,115,46,32,84,104,101,32,111,114,100,101,114,32,111,102,32,114,101,115,117,108,116,32,118,97,108,117,101,115,32,105,115,32,100,101,116,101,114,109,105,110,101,100,32,98,121,32,116,104,101,32,111,114,100,101,114,92,110,32,32,32,32,32,42,32,116,104,101,121,32,111,99,99,117,114,32,105,110,32,116,104,101,32,97,114,114,97,121,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,52,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,65,114,114,97,121,125,32,91,97,114,114,97,121,115,93,32,84,104,101,32,97,114,114,97,121,115,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,102,105,108,116,101,114,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,100,105,102,102,101,114,101,110,99,101,44,32,95,46,119,105,116,104,111,117,116,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,120,111,114,40,91,50,44,32,49,93,44,32,91,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,51,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,120,111,114,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,88,111,114,40,97,114,114,97,121,70,105,108,116,101,114,40,97,114,114,97,121,115,44,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,41,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,120,111,114,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,105,116,101,114,97,116,101,101,96,32,119,104,105,99,104,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,102,111,114,32,101,97,99,104,32,101,108,101,109,101,110,116,32,111,102,32,101,97,99,104,32,96,97,114,114,97,121,115,96,32,116,111,32,103,101,110,101,114,97,116,101,32,116,104,101,32,99,114,105,116,101,114,105,111,110,32,98,121,92,110,32,32,32,32,32,42,32,119,104,105,99,104,32,98,121,32,119,104,105,99,104,32,116,104,101,121,39,114,101,32,99,111,109,112,97,114,101,100,46,32,84,104,101,32,111,114,100,101,114,32,111,102,32,114,101,115,117,108,116,32,118,97,108,117,101,115,32,105,115,32,100,101,116,101,114,109,105,110,101,100,92,110,32,32,32,32,32,42,32,98,121,32,116,104,101,32,111,114,100,101,114,32,116,104,101,121,32,111,99,99,117,114,32,105,110,32,116,104,101,32,97,114,114,97,121,115,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,92,110,32,32,32,32,32,42,32,97,114,103,117,109,101,110,116,58,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,65,114,114,97,121,125,32,91,97,114,114,97,121,115,93,32,84,104,101,32,97,114,114,97,121,115,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,102,105,108,116,101,114,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,120,111,114,66,121,40,91,50,46,49,44,32,49,46,50,93,44,32,91,50,46,51,44,32,51,46,52,93,44,32,77,97,116,104,46,102,108,111,111,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,46,50,44,32,51,46,52,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,120,111,114,66,121,40,91,123,32,39,120,39,58,32,49,32,125,93,44,32,91,123,32,39,120,39,58,32,50,32,125,44,32,123,32,39,120,39,58,32,49,32,125,93,44,32,39,120,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,120,39,58,32,50,32,125,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,120,111,114,66,121,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,114,97,116,101,101,32,61,32,108,97,115,116,40,97,114,114,97,121,115,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,105,116,101,114,97,116,101,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,114,97,116,101,101,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,88,111,114,40,97,114,114,97,121,70,105,108,116,101,114,40,97,114,114,97,121,115,44,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,41,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,50,41,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,120,111,114,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,99,111,109,112,97,114,97,116,111,114,96,32,119,104,105,99,104,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,116,111,32,99,111,109,112,97,114,101,32,101,108,101,109,101,110,116,115,32,111,102,32,96,97,114,114,97,121,115,96,46,32,84,104,101,32,111,114,100,101,114,32,111,102,32,114,101,115,117,108,116,32,118,97,108,117,101,115,32,105,115,92,110,32,32,32,32,32,42,32,100,101,116,101,114,109,105,110,101,100,32,98,121,32,116,104,101,32,111,114,100,101,114,32,116,104,101,121,32,111,99,99,117,114,32,105,110,32,116,104,101,32,97,114,114,97,121,115,46,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,115,32,105,110,118,111,107,101,100,92,110,32,32,32,32,32,42,32,119,105,116,104,32,116,119,111,32,97,114,103,117,109,101,110,116,115,58,32,40,97,114,114,86,97,108,44,32,111,116,104,86,97,108,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,65,114,114,97,121,125,32,91,97,114,114,97,121,115,93,32,84,104,101,32,97,114,114,97,121,115,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,111,109,112,97,114,97,116,111,114,93,32,84,104,101,32,99,111,109,112,97,114,97,116,111,114,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,102,105,108,116,101,114,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,50,32,125,44,32,123,32,39,120,39,58,32,50,44,32,39,121,39,58,32,49,32,125,93,59,92,110,32,32,32,32,32,42,32,118,97,114,32,111,116,104,101,114,115,32,61,32,91,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,49,32,125,44,32,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,50,32,125,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,120,111,114,87,105,116,104,40,111,98,106,101,99,116,115,44,32,111,116,104,101,114,115,44,32,95,46,105,115,69,113,117,97,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,120,39,58,32,50,44,32,39,121,39,58,32,49,32,125,44,32,123,32,39,120,39,58,32,49,44,32,39,121,39,58,32,49,32,125,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,120,111,114,87,105,116,104,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,111,109,112,97,114,97,116,111,114,32,61,32,108,97,115,116,40,97,114,114,97,121,115,41,59,92,110,32,32,32,32,32,32,99,111,109,112,97,114,97,116,111,114,32,61,32,116,121,112,101,111,102,32,99,111,109,112,97,114,97,116,111,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,99,111,109,112,97,114,97,116,111,114,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,88,111,114,40,97,114,114,97,121,70,105,108,116,101,114,40,97,114,114,97,121,115,44,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,41,44,32,117,110,100,101,102,105,110,101,100,44,32,99,111,109,112,97,114,97,116,111,114,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,103,114,111,117,112,101,100,32,101,108,101,109,101,110,116,115,44,32,116,104,101,32,102,105,114,115,116,32,111,102,32,119,104,105,99,104,32,99,111,110,116,97,105,110,115,32,116,104,101,92,110,32,32,32,32,32,42,32,102,105,114,115,116,32,101,108,101,109,101,110,116,115,32,111,102,32,116,104,101,32,103,105,118,101,110,32,97,114,114,97,121,115,44,32,116,104,101,32,115,101,99,111,110,100,32,111,102,32,119,104,105,99,104,32,99,111,110,116,97,105,110,115,32,116,104,101,92,110,32,32,32,32,32,42,32,115,101,99,111,110,100,32,101,108,101,109,101,110,116,115,32,111,102,32,116,104,101,32,103,105,118,101,110,32,97,114,114,97,121,115,44,32,97,110,100,32,115,111,32,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,65,114,114,97,121,125,32,91,97,114,114,97,121,115,93,32,84,104,101,32,97,114,114,97,121,115,32,116,111,32,112,114,111,99,101,115,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,103,114,111,117,112,101,100,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,122,105,112,40,91,39,97,39,44,32,39,98,39,93,44,32,91,49,44,32,50,93,44,32,91,116,114,117,101,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,91,39,97,39,44,32,49,44,32,116,114,117,101,93,44,32,91,39,98,39,44,32,50,44,32,102,97,108,115,101,93,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,122,105,112,32,61,32,98,97,115,101,82,101,115,116,40,117,110,122,105,112,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,102,114,111,109,80,97,105,114,115,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,116,119,111,32,97,114,114,97,121,115,44,92,110,32,32,32,32,32,42,32,111,110,101,32,111,102,32,112,114,111,112,101,114,116,121,32,105,100,101,110,116,105,102,105,101,114,115,32,97,110,100,32,111,110,101,32,111,102,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,52,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,112,114,111,112,115,61,91,93,93,32,84,104,101,32,112,114,111,112,101,114,116,121,32,105,100,101,110,116,105,102,105,101,114,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,118,97,108,117,101,115,61,91,93,93,32,84,104,101,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,122,105,112,79,98,106,101,99,116,40,91,39,97,39,44,32,39,98,39,93,44,32,91,49,44,32,50,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,122,105,112,79,98,106,101,99,116,40,112,114,111,112,115,44,32,118,97,108,117,101,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,90,105,112,79,98,106,101,99,116,40,112,114,111,112,115,32,124,124,32,91,93,44,32,118,97,108,117,101,115,32,124,124,32,91,93,44,32,97,115,115,105,103,110,86,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,122,105,112,79,98,106,101,99,116,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,115,117,112,112,111,114,116,115,32,112,114,111,112,101,114,116,121,32,112,97,116,104,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,112,114,111,112,115,61,91,93,93,32,84,104,101,32,112,114,111,112,101,114,116,121,32,105,100,101,110,116,105,102,105,101,114,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,91,118,97,108,117,101,115,61,91,93,93,32,84,104,101,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,122,105,112,79,98,106,101,99,116,68,101,101,112,40,91,39,97,46,98,91,48,93,46,99,39,44,32,39,97,46,98,91,49,93,46,100,39,93,44,32,91,49,44,32,50,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,123,32,39,98,39,58,32,91,123,32,39,99,39,58,32,49,32,125,44,32,123,32,39,100,39,58,32,50,32,125,93,32,125,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,122,105,112,79,98,106,101,99,116,68,101,101,112,40,112,114,111,112,115,44,32,118,97,108,117,101,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,90,105,112,79,98,106,101,99,116,40,112,114,111,112,115,32,124,124,32,91,93,44,32,118,97,108,117,101,115,32,124,124,32,91,93,44,32,98,97,115,101,83,101,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,122,105,112,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,105,116,101,114,97,116,101,101,96,32,116,111,32,115,112,101,99,105,102,121,92,110,32,32,32,32,32,42,32,104,111,119,32,103,114,111,117,112,101,100,32,118,97,108,117,101,115,32,115,104,111,117,108,100,32,98,101,32,99,111,109,98,105,110,101,100,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,101,92,110,32,32,32,32,32,42,32,101,108,101,109,101,110,116,115,32,111,102,32,101,97,99,104,32,103,114,111,117,112,58,32,40,46,46,46,103,114,111,117,112,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,56,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,65,114,114,97,121,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,65,114,114,97,121,125,32,91,97,114,114,97,121,115,93,32,84,104,101,32,97,114,114,97,121,115,32,116,111,32,112,114,111,99,101,115,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,111,109,98,105,110,101,92,110,32,32,32,32,32,42,32,32,103,114,111,117,112,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,114,114,97,121,32,111,102,32,103,114,111,117,112,101,100,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,122,105,112,87,105,116,104,40,91,49,44,32,50,93,44,32,91,49,48,44,32,50,48,93,44,32,91,49,48,48,44,32,50,48,48,93,44,32,102,117,110,99,116,105,111,110,40,97,44,32,98,44,32,99,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,97,32,43,32,98,32,43,32,99,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,49,49,44,32,50,50,50,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,122,105,112,87,105,116,104,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,97,114,114,97,121,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,114,97,116,101,101,32,61,32,108,101,110,103,116,104,32,62,32,49,32,63,32,97,114,114,97,121,115,91,108,101,110,103,116,104,32,45,32,49,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,32,32,105,116,101,114,97,116,101,101,32,61,32,116,121,112,101,111,102,32,105,116,101,114,97,116,101,101,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,40,97,114,114,97,121,115,46,112,111,112,40,41,44,32,105,116,101,114,97,116,101,101,41,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,117,110,122,105,112,87,105,116,104,40,97,114,114,97,121,115,44,32,105,116,101,114,97,116,101,101,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,96,108,111,100,97,115,104,96,32,119,114,97,112,112,101,114,32,105,110,115,116,97,110,99,101,32,116,104,97,116,32,119,114,97,112,115,32,96,118,97,108,117,101,96,32,119,105,116,104,32,101,120,112,108,105,99,105,116,32,109,101,116,104,111,100,92,110,32,32,32,32,32,42,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,115,32,101,110,97,98,108,101,100,46,32,84,104,101,32,114,101,115,117,108,116,32,111,102,32,115,117,99,104,32,115,101,113,117,101,110,99,101,115,32,109,117,115,116,32,98,101,32,117,110,119,114,97,112,112,101,100,92,110,32,32,32,32,32,42,32,119,105,116,104,32,96,95,35,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,49,46,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,101,113,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,119,114,97,112,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,96,108,111,100,97,115,104,96,32,119,114,97,112,112,101,114,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,32,39,97,103,101,39,58,32,51,54,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,32,39,97,103,101,39,58,32,52,48,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,112,101,98,98,108,101,115,39,44,32,39,97,103,101,39,58,32,49,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,121,111,117,110,103,101,115,116,32,61,32,95,92,110,32,32,32,32,32,42,32,32,32,46,99,104,97,105,110,40,117,115,101,114,115,41,92,110,32,32,32,32,32,42,32,32,32,46,115,111,114,116,66,121,40,39,97,103,101,39,41,92,110,32,32,32,32,32,42,32,32,32,46,109,97,112,40,102,117,110,99,116,105,111,110,40,111,41,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,114,101,116,117,114,110,32,111,46,117,115,101,114,32,43,32,39,32,105,115,32,39,32,43,32,111,46,97,103,101,59,92,110,32,32,32,32,32,42,32,32,32,125,41,92,110,32,32,32,32,32,42,32,32,32,46,104,101,97,100,40,41,92,110,32,32,32,32,32,42,32,32,32,46,118,97,108,117,101,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,112,101,98,98,108,101,115,32,105,115,32,49,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,104,97,105,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,108,111,100,97,115,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,99,104,97,105,110,95,95,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,110,118,111,107,101,115,32,96,105,110,116,101,114,99,101,112,116,111,114,96,32,97,110,100,32,114,101,116,117,114,110,115,32,96,118,97,108,117,101,96,46,32,84,104,101,32,105,110,116,101,114,99,101,112,116,111,114,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,59,32,40,118,97,108,117,101,41,46,32,84,104,101,32,112,117,114,112,111,115,101,32,111,102,32,116,104,105,115,32,109,101,116,104,111,100,32,105,115,32,116,111,92,110,32,32,32,32,32,42,32,92,34,116,97,112,32,105,110,116,111,92,34,32,97,32,109,101,116,104,111,100,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,32,105,110,32,111,114,100,101,114,32,116,111,32,109,111,100,105,102,121,32,105,110,116,101,114,109,101,100,105,97,116,101,32,114,101,115,117,108,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,101,113,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,112,114,111,118,105,100,101,32,116,111,32,96,105,110,116,101,114,99,101,112,116,111,114,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,110,116,101,114,99,101,112,116,111,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,105,110,118,111,107,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,96,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,40,91,49,44,32,50,44,32,51,93,41,92,110,32,32,32,32,32,42,32,32,46,116,97,112,40,102,117,110,99,116,105,111,110,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,42,32,32,32,32,47,47,32,77,117,116,97,116,101,32,105,110,112,117,116,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,32,32,32,97,114,114,97,121,46,112,111,112,40,41,59,92,110,32,32,32,32,32,42,32,32,125,41,92,110,32,32,32,32,32,42,32,32,46,114,101,118,101,114,115,101,40,41,92,110,32,32,32,32,32,42,32,32,46,118,97,108,117,101,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,49,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,97,112,40,118,97,108,117,101,44,32,105,110,116,101,114,99,101,112,116,111,114,41,32,123,92,110,32,32,32,32,32,32,105,110,116,101,114,99,101,112,116,111,114,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,116,97,112,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,114,101,116,117,114,110,115,32,116,104,101,32,114,101,115,117,108,116,32,111,102,32,96,105,110,116,101,114,99,101,112,116,111,114,96,46,92,110,32,32,32,32,32,42,32,84,104,101,32,112,117,114,112,111,115,101,32,111,102,32,116,104,105,115,32,109,101,116,104,111,100,32,105,115,32,116,111,32,92,34,112,97,115,115,32,116,104,114,117,92,34,32,118,97,108,117,101,115,32,114,101,112,108,97,99,105,110,103,32,105,110,116,101,114,109,101,100,105,97,116,101,92,110,32,32,32,32,32,42,32,114,101,115,117,108,116,115,32,105,110,32,97,32,109,101,116,104,111,100,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,101,113,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,112,114,111,118,105,100,101,32,116,111,32,96,105,110,116,101,114,99,101,112,116,111,114,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,105,110,116,101,114,99,101,112,116,111,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,105,110,118,111,107,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,115,117,108,116,32,111,102,32,96,105,110,116,101,114,99,101,112,116,111,114,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,40,39,32,32,97,98,99,32,32,39,41,92,110,32,32,32,32,32,42,32,32,46,99,104,97,105,110,40,41,92,110,32,32,32,32,32,42,32,32,46,116,114,105,109,40,41,92,110,32,32,32,32,32,42,32,32,46,116,104,114,117,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,32,114,101,116,117,114,110,32,91,118,97,108,117,101,93,59,92,110,32,32,32,32,32,42,32,32,125,41,92,110,32,32,32,32,32,42,32,32,46,118,97,108,117,101,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,97,98,99,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,104,114,117,40,118,97,108,117,101,44,32,105,110,116,101,114,99,101,112,116,111,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,116,101,114,99,101,112,116,111,114,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,116,104,101,32,119,114,97,112,112,101,114,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,97,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,97,116,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,49,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,101,113,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,40,115,116,114,105,110,103,124,115,116,114,105,110,103,91,93,41,125,32,91,112,97,116,104,115,93,32,84,104,101,32,112,114,111,112,101,114,116,121,32,112,97,116,104,115,32,116,111,32,112,105,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,96,108,111,100,97,115,104,96,32,119,114,97,112,112,101,114,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,91,123,32,39,98,39,58,32,123,32,39,99,39,58,32,51,32,125,32,125,44,32,52,93,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,40,111,98,106,101,99,116,41,46,97,116,40,91,39,97,91,48,93,46,98,46,99,39,44,32,39,97,91,49,93,39,93,41,46,118,97,108,117,101,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,51,44,32,52,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,119,114,97,112,112,101,114,65,116,32,61,32,102,108,97,116,82,101,115,116,40,102,117,110,99,116,105,111,110,40,112,97,116,104,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,112,97,116,104,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,108,101,110,103,116,104,32,63,32,112,97,116,104,115,91,48,93,32,58,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,116,101,114,99,101,112,116,111,114,32,61,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,32,123,32,114,101,116,117,114,110,32,98,97,115,101,65,116,40,111,98,106,101,99,116,44,32,112,97,116,104,115,41,59,32,125,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,108,101,110,103,116,104,32,62,32,49,32,124,124,32,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,33,40,118,97,108,117,101,32,105,110,115,116,97,110,99,101,111,102,32,76,97,122,121,87,114,97,112,112,101,114,41,32,124,124,32,33,105,115,73,110,100,101,120,40,115,116,97,114,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,104,114,117,40,105,110,116,101,114,99,101,112,116,111,114,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,118,97,108,117,101,46,115,108,105,99,101,40,115,116,97,114,116,44,32,43,115,116,97,114,116,32,43,32,40,108,101,110,103,116,104,32,63,32,49,32,58,32,48,41,41,59,92,110,32,32,32,32,32,32,118,97,108,117,101,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,39,102,117,110,99,39,58,32,116,104,114,117,44,92,110,32,32,32,32,32,32,32,32,39,97,114,103,115,39,58,32,91,105,110,116,101,114,99,101,112,116,111,114,93,44,92,110,32,32,32,32,32,32,32,32,39,116,104,105,115,65,114,103,39,58,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,76,111,100,97,115,104,87,114,97,112,112,101,114,40,118,97,108,117,101,44,32,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,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,101,110,103,116,104,32,38,38,32,33,97,114,114,97,121,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,114,97,121,46,112,117,115,104,40,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,96,108,111,100,97,115,104,96,32,119,114,97,112,112,101,114,32,105,110,115,116,97,110,99,101,32,119,105,116,104,32,101,120,112,108,105,99,105,116,32,109,101,116,104,111,100,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,115,32,101,110,97,98,108,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,99,104,97,105,110,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,101,113,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,96,108,111,100,97,115,104,96,32,119,114,97,112,112,101,114,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,103,101,39,58,32,51,54,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,39,97,103,101,39,58,32,52,48,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,65,32,115,101,113,117,101,110,99,101,32,119,105,116,104,111,117,116,32,101,120,112,108,105,99,105,116,32,99,104,97,105,110,105,110,103,46,92,110,32,32,32,32,32,42,32,95,40,117,115,101,114,115,41,46,104,101,97,100,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,103,101,39,58,32,51,54,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,65,32,115,101,113,117,101,110,99,101,32,119,105,116,104,32,101,120,112,108,105,99,105,116,32,99,104,97,105,110,105,110,103,46,92,110,32,32,32,32,32,42,32,95,40,117,115,101,114,115,41,92,110,32,32,32,32,32,42,32,32,32,46,99,104,97,105,110,40,41,92,110,32,32,32,32,32,42,32,32,32,46,104,101,97,100,40,41,92,110,32,32,32,32,32,42,32,32,32,46,112,105,99,107,40,39,117,115,101,114,39,41,92,110,32,32,32,32,32,42,32,32,32,46,118,97,108,117,101,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,114,67,104,97,105,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,104,97,105,110,40,116,104,105,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,69,120,101,99,117,116,101,115,32,116,104,101,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,32,97,110,100,32,114,101,116,117,114,110,115,32,116,104,101,32,119,114,97,112,112,101,100,32,114,101,115,117,108,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,99,111,109,109,105,116,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,50,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,101,113,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,96,108,111,100,97,115,104,96,32,119,114,97,112,112,101,114,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,49,44,32,50,93,59,92,110,32,32,32,32,32,42,32,118,97,114,32,119,114,97,112,112,101,100,32,61,32,95,40,97,114,114,97,121,41,46,112,117,115,104,40,51,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,119,114,97,112,112,101,100,32,61,32,119,114,97,112,112,101,100,46,99,111,109,109,105,116,40,41,59,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,119,114,97,112,112,101,100,46,108,97,115,116,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,114,67,111,109,109,105,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,76,111,100,97,115,104,87,114,97,112,112,101,114,40,116,104,105,115,46,118,97,108,117,101,40,41,44,32,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,110,101,120,116,32,118,97,108,117,101,32,111,110,32,97,32,119,114,97,112,112,101,100,32,111,98,106,101,99,116,32,102,111,108,108,111,119,105,110,103,32,116,104,101,92,110,32,32,32,32,32,42,32,91,105,116,101,114,97,116,111,114,32,112,114,111,116,111,99,111,108,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,105,116,101,114,97,116,105,111,110,95,112,114,111,116,111,99,111,108,115,35,105,116,101,114,97,116,111,114,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,110,101,120,116,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,101,113,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,120,116,32,105,116,101,114,97,116,111,114,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,119,114,97,112,112,101,100,32,61,32,95,40,91,49,44,32,50,93,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,119,114,97,112,112,101,100,46,110,101,120,116,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,100,111,110,101,39,58,32,102,97,108,115,101,44,32,39,118,97,108,117,101,39,58,32,49,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,119,114,97,112,112,101,100,46,110,101,120,116,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,100,111,110,101,39,58,32,102,97,108,115,101,44,32,39,118,97,108,117,101,39,58,32,50,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,119,114,97,112,112,101,100,46,110,101,120,116,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,100,111,110,101,39,58,32,116,114,117,101,44,32,39,118,97,108,117,101,39,58,32,117,110,100,101,102,105,110,101,100,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,114,78,101,120,116,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,32,61,32,116,111,65,114,114,97,121,40,116,104,105,115,46,118,97,108,117,101,40,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,100,111,110,101,32,61,32,116,104,105,115,46,95,95,105,110,100,101,120,95,95,32,62,61,32,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,100,111,110,101,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,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,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,32,39,100,111,110,101,39,58,32,100,111,110,101,44,32,39,118,97,108,117,101,39,58,32,118,97,108,117,101,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,69,110,97,98,108,101,115,32,116,104,101,32,119,114,97,112,112,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,101,113,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,119,114,97,112,112,101,114,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,119,114,97,112,112,101,100,32,61,32,95,40,91,49,44,32,50,93,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,119,114,97,112,112,101,100,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,61,61,61,32,119,114,97,112,112,101,100,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,65,114,114,97,121,46,102,114,111,109,40,119,114,97,112,112,101,100,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,114,84,111,73,116,101,114,97,116,111,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,99,108,111,110,101,32,111,102,32,116,104,101,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,32,112,108,97,110,116,105,110,103,32,96,118,97,108,117,101,96,32,97,115,32,116,104,101,32,119,114,97,112,112,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,112,108,97,110,116,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,50,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,101,113,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,112,108,97,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,96,108,111,100,97,115,104,96,32,119,114,97,112,112,101,114,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,115,113,117,97,114,101,40,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,110,32,42,32,110,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,119,114,97,112,112,101,100,32,61,32,95,40,91,49,44,32,50,93,41,46,109,97,112,40,115,113,117,97,114,101,41,59,92,110,32,32,32,32,32,42,32,118,97,114,32,111,116,104,101,114,32,61,32,119,114,97,112,112,101,100,46,112,108,97,110,116,40,91,51,44,32,52,93,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,111,116,104,101,114,46,118,97,108,117,101,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,57,44,32,49,54,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,119,114,97,112,112,101,100,46,118,97,108,117,101,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,52,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,114,80,108,97,110,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,44,92,110,32,32,32,32,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,112,97,114,101,110,116,32,105,110,115,116,97,110,99,101,111,102,32,98,97,115,101,76,111,100,97,115,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,108,111,110,101,32,61,32,119,114,97,112,112,101,114,67,108,111,110,101,40,112,97,114,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,99,108,111,110,101,46,95,95,105,110,100,101,120,95,95,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,99,108,111,110,101,46,95,95,118,97,108,117,101,115,95,95,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,101,115,117,108,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,101,118,105,111,117,115,46,95,95,119,114,97,112,112,101,100,95,95,32,61,32,99,108,111,110,101,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,99,108,111,110,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,101,118,105,111,117,115,32,61,32,99,108,111,110,101,59,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,112,97,114,101,110,116,46,95,95,119,114,97,112,112,101,100,95,95,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,112,114,101,118,105,111,117,115,46,95,95,119,114,97,112,112,101,100,95,95,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,116,104,101,32,119,114,97,112,112,101,114,32,118,101,114,115,105,111,110,32,111,102,32,96,95,46,114,101,118,101,114,115,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,116,104,101,32,119,114,97,112,112,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,114,101,118,101,114,115,101,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,101,113,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,96,108,111,100,97,115,104,96,32,119,114,97,112,112,101,114,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,49,44,32,50,44,32,51,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,40,97,114,114,97,121,41,46,114,101,118,101,114,115,101,40,41,46,118,97,108,117,101,40,41,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,51,44,32,50,44,32,49,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,97,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,51,44,32,50,44,32,49,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,114,82,101,118,101,114,115,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,59,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,105,110,115,116,97,110,99,101,111,102,32,76,97,122,121,87,114,97,112,112,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,119,114,97,112,112,101,100,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,114,97,112,112,101,100,32,61,32,110,101,119,32,76,97,122,121,87,114,97,112,112,101,114,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,119,114,97,112,112,101,100,32,61,32,119,114,97,112,112,101,100,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,32,32,32,32,32,32,119,114,97,112,112,101,100,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,39,102,117,110,99,39,58,32,116,104,114,117,44,92,110,32,32,32,32,32,32,32,32,32,32,39,97,114,103,115,39,58,32,91,114,101,118,101,114,115,101,93,44,92,110,32,32,32,32,32,32,32,32,32,32,39,116,104,105,115,65,114,103,39,58,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,76,111,100,97,115,104,87,114,97,112,112,101,114,40,119,114,97,112,112,101,100,44,32,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,104,114,117,40,114,101,118,101,114,115,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,69,120,101,99,117,116,101,115,32,116,104,101,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,32,116,111,32,114,101,115,111,108,118,101,32,116,104,101,32,117,110,119,114,97,112,112,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,110,97,109,101,32,118,97,108,117,101,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,97,108,105,97,115,32,116,111,74,83,79,78,44,32,118,97,108,117,101,79,102,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,101,113,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,115,111,108,118,101,100,32,117,110,119,114,97,112,112,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,40,91,49,44,32,50,44,32,51,93,41,46,118,97,108,117,101,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,114,86,97,108,117,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,87,114,97,112,112,101,114,86,97,108,117,101,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,44,32,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,111,98,106,101,99,116,32,99,111,109,112,111,115,101,100,32,111,102,32,107,101,121,115,32,103,101,110,101,114,97,116,101,100,32,102,114,111,109,32,116,104,101,32,114,101,115,117,108,116,115,32,111,102,32,114,117,110,110,105,110,103,92,110,32,32,32,32,32,42,32,101,97,99,104,32,101,108,101,109,101,110,116,32,111,102,32,96,99,111,108,108,101,99,116,105,111,110,96,32,116,104,114,117,32,96,105,116,101,114,97,116,101,101,96,46,32,84,104,101,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,118,97,108,117,101,32,111,102,92,110,32,32,32,32,32,42,32,101,97,99,104,32,107,101,121,32,105,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,116,105,109,101,115,32,116,104,101,32,107,101,121,32,119,97,115,32,114,101,116,117,114,110,101,100,32,98,121,32,96,105,116,101,114,97,116,101,101,96,46,32,84,104,101,92,110,32,32,32,32,32,42,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,53,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,116,111,32,116,114,97,110,115,102,111,114,109,32,107,101,121,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,109,112,111,115,101,100,32,97,103,103,114,101,103,97,116,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,111,117,110,116,66,121,40,91,54,46,49,44,32,52,46,50,44,32,54,46,51,93,44,32,77,97,116,104,46,102,108,111,111,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,52,39,58,32,49,44,32,39,54,39,58,32,50,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,99,111,117,110,116,66,121,40,91,39,111,110,101,39,44,32,39,116,119,111,39,44,32,39,116,104,114,101,101,39,93,44,32,39,108,101,110,103,116,104,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,51,39,58,32,50,44,32,39,53,39,58,32,49,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,99,111,117,110,116,66,121,32,61,32,99,114,101,97,116,101,65,103,103,114,101,103,97,116,111,114,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,114,101,115,117,108,116,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,43,43,114,101,115,117,108,116,91,107,101,121,93,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,98,97,115,101,65,115,115,105,103,110,86,97,108,117,101,40,114,101,115,117,108,116,44,32,107,101,121,44,32,49,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,32,116,114,117,116,104,121,32,102,111,114,32,42,42,97,108,108,42,42,32,101,108,101,109,101,110,116,115,32,111,102,32,96,99,111,108,108,101,99,116,105,111,110,96,46,92,110,32,32,32,32,32,42,32,73,116,101,114,97,116,105,111,110,32,105,115,32,115,116,111,112,112,101,100,32,111,110,99,101,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,32,102,97,108,115,101,121,46,32,84,104,101,32,112,114,101,100,105,99,97,116,101,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,105,110,100,101,120,124,107,101,121,44,32,99,111,108,108,101,99,116,105,111,110,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,96,116,114,117,101,96,32,102,111,114,92,110,32,32,32,32,32,42,32,91,101,109,112,116,121,32,99,111,108,108,101,99,116,105,111,110,115,93,40,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,69,109,112,116,121,95,115,101,116,41,32,98,101,99,97,117,115,101,92,110,32,32,32,32,32,42,32,91,101,118,101,114,121,116,104,105,110,103,32,105,115,32,116,114,117,101,93,40,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,86,97,99,117,111,117,115,95,116,114,117,116,104,41,32,111,102,92,110,32,32,32,32,32,42,32,101,108,101,109,101,110,116,115,32,111,102,32,101,109,112,116,121,32,99,111,108,108,101,99,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,97,108,108,32,101,108,101,109,101,110,116,115,32,112,97,115,115,32,116,104,101,32,112,114,101,100,105,99,97,116,101,32,99,104,101,99,107,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,101,118,101,114,121,40,91,116,114,117,101,44,32,49,44,32,110,117,108,108,44,32,39,121,101,115,39,93,44,32,66,111,111,108,101,97,110,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,103,101,39,58,32,51,54,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,39,97,103,101,39,58,32,52,48,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,101,118,101,114,121,40,117,115,101,114,115,44,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,101,118,101,114,121,40,117,115,101,114,115,44,32,91,39,97,99,116,105,118,101,39,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,101,118,101,114,121,40,117,115,101,114,115,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,101,118,101,114,121,40,99,111,108,108,101,99,116,105,111,110,44,32,112,114,101,100,105,99,97,116,101,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,105,115,65,114,114,97,121,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,97,114,114,97,121,69,118,101,114,121,32,58,32,98,97,115,101,69,118,101,114,121,59,92,110,32,32,32,32,32,32,105,102,32,40,103,117,97,114,100,32,38,38,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,99,111,108,108,101,99,116,105,111,110,44,32,112,114,101,100,105,99,97,116,101,44,32,103,117,97,114,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,112,114,101,100,105,99,97,116,101,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,99,111,108,108,101,99,116,105,111,110,44,32,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,44,32,51,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,73,116,101,114,97,116,101,115,32,111,118,101,114,32,101,108,101,109,101,110,116,115,32,111,102,32,96,99,111,108,108,101,99,116,105,111,110,96,44,32,114,101,116,117,114,110,105,110,103,32,97,110,32,97,114,114,97,121,32,111,102,32,97,108,108,32,101,108,101,109,101,110,116,115,92,110,32,32,32,32,32,42,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,32,116,114,117,116,104,121,32,102,111,114,46,32,84,104,101,32,112,114,101,100,105,99,97,116,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,114,101,101,92,110,32,32,32,32,32,42,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,105,110,100,101,120,124,107,101,121,44,32,99,111,108,108,101,99,116,105,111,110,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,85,110,108,105,107,101,32,96,95,46,114,101,109,111,118,101,96,44,32,116,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,97,32,110,101,119,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,105,108,116,101,114,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,114,101,106,101,99,116,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,103,101,39,58,32,51,54,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,39,97,103,101,39,58,32,52,48,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,105,108,116,101,114,40,117,115,101,114,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,33,111,46,97,99,116,105,118,101,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,102,114,101,100,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,108,116,101,114,40,117,115,101,114,115,44,32,123,32,39,97,103,101,39,58,32,51,54,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,98,97,114,110,101,121,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,108,116,101,114,40,117,115,101,114,115,44,32,91,39,97,99,116,105,118,101,39,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,102,114,101,100,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,108,116,101,114,40,117,115,101,114,115,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,98,97,114,110,101,121,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,67,111,109,98,105,110,105,110,103,32,115,101,118,101,114,97,108,32,112,114,101,100,105,99,97,116,101,115,32,117,115,105,110,103,32,96,95,46,111,118,101,114,69,118,101,114,121,96,32,111,114,32,96,95,46,111,118,101,114,83,111,109,101,96,46,92,110,32,32,32,32,32,42,32,95,46,102,105,108,116,101,114,40,117,115,101,114,115,44,32,95,46,111,118,101,114,83,111,109,101,40,91,123,32,39,97,103,101,39,58,32,51,54,32,125,44,32,91,39,97,103,101,39,44,32,52,48,93,93,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,102,114,101,100,39,44,32,39,98,97,114,110,101,121,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,105,108,116,101,114,40,99,111,108,108,101,99,116,105,111,110,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,105,115,65,114,114,97,121,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,97,114,114,97,121,70,105,108,116,101,114,32,58,32,98,97,115,101,70,105,108,116,101,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,99,111,108,108,101,99,116,105,111,110,44,32,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,44,32,51,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,73,116,101,114,97,116,101,115,32,111,118,101,114,32,101,108,101,109,101,110,116,115,32,111,102,32,96,99,111,108,108,101,99,116,105,111,110,96,44,32,114,101,116,117,114,110,105,110,103,32,116,104,101,32,102,105,114,115,116,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,42,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,32,116,114,117,116,104,121,32,102,111,114,46,32,84,104,101,32,112,114,101,100,105,99,97,116,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,114,101,101,92,110,32,32,32,32,32,42,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,105,110,100,101,120,124,107,101,121,44,32,99,111,108,108,101,99,116,105,111,110,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,102,114,111,109,73,110,100,101,120,61,48,93,32,84,104,101,32,105,110,100,101,120,32,116,111,32,115,101,97,114,99,104,32,102,114,111,109,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,109,97,116,99,104,101,100,32,101,108,101,109,101,110,116,44,32,101,108,115,101,32,96,117,110,100,101,102,105,110,101,100,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,32,39,97,103,101,39,58,32,51,54,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,32,39,97,103,101,39,58,32,52,48,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,112,101,98,98,108,101,115,39,44,32,39,97,103,101,39,58,32,49,44,32,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,40,117,115,101,114,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,97,103,101,32,60,32,52,48,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,32,102,111,114,32,39,98,97,114,110,101,121,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,40,117,115,101,114,115,44,32,123,32,39,97,103,101,39,58,32,49,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,32,102,111,114,32,39,112,101,98,98,108,101,115,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,40,117,115,101,114,115,44,32,91,39,97,99,116,105,118,101,39,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,32,102,111,114,32,39,102,114,101,100,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,40,117,115,101,114,115,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,32,102,111,114,32,39,98,97,114,110,101,121,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,102,105,110,100,32,61,32,99,114,101,97,116,101,70,105,110,100,40,102,105,110,100,73,110,100,101,120,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,102,105,110,100,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,105,116,101,114,97,116,101,115,32,111,118,101,114,32,101,108,101,109,101,110,116,115,32,111,102,92,110,32,32,32,32,32,42,32,96,99,111,108,108,101,99,116,105,111,110,96,32,102,114,111,109,32,114,105,103,104,116,32,116,111,32,108,101,102,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,102,114,111,109,73,110,100,101,120,61,99,111,108,108,101,99,116,105,111,110,46,108,101,110,103,116,104,45,49,93,32,84,104,101,32,105,110,100,101,120,32,116,111,32,115,101,97,114,99,104,32,102,114,111,109,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,109,97,116,99,104,101,100,32,101,108,101,109,101,110,116,44,32,101,108,115,101,32,96,117,110,100,101,102,105,110,101,100,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,76,97,115,116,40,91,49,44,32,50,44,32,51,44,32,52,93,44,32,102,117,110,99,116,105,111,110,40,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,110,32,37,32,50,32,61,61,32,49,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,102,105,110,100,76,97,115,116,32,61,32,99,114,101,97,116,101,70,105,110,100,40,102,105,110,100,76,97,115,116,73,110,100,101,120,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,108,97,116,116,101,110,101,100,32,97,114,114,97,121,32,111,102,32,118,97,108,117,101,115,32,98,121,32,114,117,110,110,105,110,103,32,101,97,99,104,32,101,108,101,109,101,110,116,32,105,110,32,96,99,111,108,108,101,99,116,105,111,110,96,92,110,32,32,32,32,32,42,32,116,104,114,117,32,96,105,116,101,114,97,116,101,101,96,32,97,110,100,32,102,108,97,116,116,101,110,105,110,103,32,116,104,101,32,109,97,112,112,101,100,32,114,101,115,117,108,116,115,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,92,110,32,32,32,32,32,42,32,119,105,116,104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,105,110,100,101,120,124,107,101,121,44,32,99,111,108,108,101,99,116,105,111,110,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,108,97,116,116,101,110,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,100,117,112,108,105,99,97,116,101,40,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,91,110,44,32,110,93,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,108,97,116,77,97,112,40,91,49,44,32,50,93,44,32,100,117,112,108,105,99,97,116,101,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,49,44,32,50,44,32,50,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,108,97,116,77,97,112,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,70,108,97,116,116,101,110,40,109,97,112,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,41,44,32,49,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,102,108,97,116,77,97,112,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,114,101,99,117,114,115,105,118,101,108,121,32,102,108,97,116,116,101,110,115,32,116,104,101,92,110,32,32,32,32,32,42,32,109,97,112,112,101,100,32,114,101,115,117,108,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,55,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,108,97,116,116,101,110,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,100,117,112,108,105,99,97,116,101,40,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,91,91,91,110,44,32,110,93,93,93,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,108,97,116,77,97,112,68,101,101,112,40,91,49,44,32,50,93,44,32,100,117,112,108,105,99,97,116,101,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,49,44,32,50,44,32,50,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,108,97,116,77,97,112,68,101,101,112,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,70,108,97,116,116,101,110,40,109,97,112,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,41,44,32,73,78,70,73,78,73,84,89,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,102,108,97,116,77,97,112,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,114,101,99,117,114,115,105,118,101,108,121,32,102,108,97,116,116,101,110,115,32,116,104,101,92,110,32,32,32,32,32,42,32,109,97,112,112,101,100,32,114,101,115,117,108,116,115,32,117,112,32,116,111,32,96,100,101,112,116,104,96,32,116,105,109,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,55,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,100,101,112,116,104,61,49,93,32,84,104,101,32,109,97,120,105,109,117,109,32,114,101,99,117,114,115,105,111,110,32,100,101,112,116,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,108,97,116,116,101,110,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,100,117,112,108,105,99,97,116,101,40,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,91,91,91,110,44,32,110,93,93,93,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,108,97,116,77,97,112,68,101,112,116,104,40,91,49,44,32,50,93,44,32,100,117,112,108,105,99,97,116,101,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,91,49,44,32,49,93,44,32,91,50,44,32,50,93,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,108,97,116,77,97,112,68,101,112,116,104,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,44,32,100,101,112,116,104,41,32,123,92,110,32,32,32,32,32,32,100,101,112,116,104,32,61,32,100,101,112,116,104,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,49,32,58,32,116,111,73,110,116,101,103,101,114,40,100,101,112,116,104,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,70,108,97,116,116,101,110,40,109,97,112,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,41,44,32,100,101,112,116,104,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,73,116,101,114,97,116,101,115,32,111,118,101,114,32,101,108,101,109,101,110,116,115,32,111,102,32,96,99,111,108,108,101,99,116,105,111,110,96,32,97,110,100,32,105,110,118,111,107,101,115,32,96,105,116,101,114,97,116,101,101,96,32,102,111,114,32,101,97,99,104,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,105,110,100,101,120,124,107,101,121,44,32,99,111,108,108,101,99,116,105,111,110,41,46,92,110,32,32,32,32,32,42,32,73,116,101,114,97,116,101,101,32,102,117,110,99,116,105,111,110,115,32,109,97,121,32,101,120,105,116,32,105,116,101,114,97,116,105,111,110,32,101,97,114,108,121,32,98,121,32,101,120,112,108,105,99,105,116,108,121,32,114,101,116,117,114,110,105,110,103,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,65,115,32,119,105,116,104,32,111,116,104,101,114,32,92,34,67,111,108,108,101,99,116,105,111,110,115,92,34,32,109,101,116,104,111,100,115,44,32,111,98,106,101,99,116,115,32,119,105,116,104,32,97,32,92,34,108,101,110,103,116,104,92,34,92,110,32,32,32,32,32,42,32,112,114,111,112,101,114,116,121,32,97,114,101,32,105,116,101,114,97,116,101,100,32,108,105,107,101,32,97,114,114,97,121,115,46,32,84,111,32,97,118,111,105,100,32,116,104,105,115,32,98,101,104,97,118,105,111,114,32,117,115,101,32,96,95,46,102,111,114,73,110,96,92,110,32,32,32,32,32,42,32,111,114,32,96,95,46,102,111,114,79,119,110,96,32,102,111,114,32,111,98,106,101,99,116,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,97,108,105,97,115,32,101,97,99,104,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,99,111,108,108,101,99,116,105,111,110,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,102,111,114,69,97,99,104,82,105,103,104,116,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,111,114,69,97,99,104,40,91,49,44,32,50,93,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,76,111,103,115,32,96,49,96,32,116,104,101,110,32,96,50,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,111,114,69,97,99,104,40,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,42,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,107,101,121,41,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,76,111,103,115,32,39,97,39,32,116,104,101,110,32,39,98,39,32,40,105,116,101,114,97,116,105,111,110,32,111,114,100,101,114,32,105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101,100,41,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,105,115,65,114,114,97,121,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,97,114,114,97,121,69,97,99,104,32,58,32,98,97,115,101,69,97,99,104,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,99,111,108,108,101,99,116,105,111,110,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,51,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,102,111,114,69,97,99,104,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,105,116,101,114,97,116,101,115,32,111,118,101,114,32,101,108,101,109,101,110,116,115,32,111,102,92,110,32,32,32,32,32,42,32,96,99,111,108,108,101,99,116,105,111,110,96,32,102,114,111,109,32,114,105,103,104,116,32,116,111,32,108,101,102,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,48,46,48,92,110,32,32,32,32,32,42,32,64,97,108,105,97,115,32,101,97,99,104,82,105,103,104,116,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,99,111,108,108,101,99,116,105,111,110,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,102,111,114,69,97,99,104,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,111,114,69,97,99,104,82,105,103,104,116,40,91,49,44,32,50,93,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,76,111,103,115,32,96,50,96,32,116,104,101,110,32,96,49,96,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,82,105,103,104,116,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,105,115,65,114,114,97,121,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,97,114,114,97,121,69,97,99,104,82,105,103,104,116,32,58,32,98,97,115,101,69,97,99,104,82,105,103,104,116,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,99,111,108,108,101,99,116,105,111,110,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,51,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,111,98,106,101,99,116,32,99,111,109,112,111,115,101,100,32,111,102,32,107,101,121,115,32,103,101,110,101,114,97,116,101,100,32,102,114,111,109,32,116,104,101,32,114,101,115,117,108,116,115,32,111,102,32,114,117,110,110,105,110,103,92,110,32,32,32,32,32,42,32,101,97,99,104,32,101,108,101,109,101,110,116,32,111,102,32,96,99,111,108,108,101,99,116,105,111,110,96,32,116,104,114,117,32,96,105,116,101,114,97,116,101,101,96,46,32,84,104,101,32,111,114,100,101,114,32,111,102,32,103,114,111,117,112,101,100,32,118,97,108,117,101,115,92,110,32,32,32,32,32,42,32,105,115,32,100,101,116,101,114,109,105,110,101,100,32,98,121,32,116,104,101,32,111,114,100,101,114,32,116,104,101,121,32,111,99,99,117,114,32,105,110,32,96,99,111,108,108,101,99,116,105,111,110,96,46,32,84,104,101,32,99,111,114,114,101,115,112,111,110,100,105,110,103,92,110,32,32,32,32,32,42,32,118,97,108,117,101,32,111,102,32,101,97,99,104,32,107,101,121,32,105,115,32,97,110,32,97,114,114,97,121,32,111,102,32,101,108,101,109,101,110,116,115,32,114,101,115,112,111,110,115,105,98,108,101,32,102,111,114,32,103,101,110,101,114,97,116,105,110,103,32,116,104,101,92,110,32,32,32,32,32,42,32,107,101,121,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,116,111,32,116,114,97,110,115,102,111,114,109,32,107,101,121,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,109,112,111,115,101,100,32,97,103,103,114,101,103,97,116,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,103,114,111,117,112,66,121,40,91,54,46,49,44,32,52,46,50,44,32,54,46,51,93,44,32,77,97,116,104,46,102,108,111,111,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,52,39,58,32,91,52,46,50,93,44,32,39,54,39,58,32,91,54,46,49,44,32,54,46,51,93,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,103,114,111,117,112,66,121,40,91,39,111,110,101,39,44,32,39,116,119,111,39,44,32,39,116,104,114,101,101,39,93,44,32,39,108,101,110,103,116,104,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,51,39,58,32,91,39,111,110,101,39,44,32,39,116,119,111,39,93,44,32,39,53,39,58,32,91,39,116,104,114,101,101,39,93,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,66,121,32,61,32,99,114,101,97,116,101,65,103,103,114,101,103,97,116,111,114,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,114,101,115,117,108,116,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,107,101,121,93,46,112,117,115,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,98,97,115,101,65,115,115,105,103,110,86,97,108,117,101,40,114,101,115,117,108,116,44,32,107,101,121,44,32,91,118,97,108,117,101,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,105,110,32,96,99,111,108,108,101,99,116,105,111,110,96,46,32,73,102,32,96,99,111,108,108,101,99,116,105,111,110,96,32,105,115,32,97,32,115,116,114,105,110,103,44,32,105,116,39,115,92,110,32,32,32,32,32,42,32,99,104,101,99,107,101,100,32,102,111,114,32,97,32,115,117,98,115,116,114,105,110,103,32,111,102,32,96,118,97,108,117,101,96,44,32,111,116,104,101,114,119,105,115,101,92,110,32,32,32,32,32,42,32,91,96,83,97,109,101,86,97,108,117,101,90,101,114,111,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,115,97,109,101,118,97,108,117,101,122,101,114,111,41,92,110,32,32,32,32,32,42,32,105,115,32,117,115,101,100,32,102,111,114,32,101,113,117,97,108,105,116,121,32,99,111,109,112,97,114,105,115,111,110,115,46,32,73,102,32,96,102,114,111,109,73,110,100,101,120,96,32,105,115,32,110,101,103,97,116,105,118,101,44,32,105,116,39,115,32,117,115,101,100,32,97,115,92,110,32,32,32,32,32,42,32,116,104,101,32,111,102,102,115,101,116,32,102,114,111,109,32,116,104,101,32,101,110,100,32,111,102,32,96,99,111,108,108,101,99,116,105,111,110,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,124,115,116,114,105,110,103,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,102,114,111,109,73,110,100,101,120,61,48,93,32,84,104,101,32,105,110,100,101,120,32,116,111,32,115,101,97,114,99,104,32,102,114,111,109,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,114,101,100,117,99,101,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,102,111,117,110,100,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,99,108,117,100,101,115,40,91,49,44,32,50,44,32,51,93,44,32,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,99,108,117,100,101,115,40,91,49,44,32,50,44,32,51,93,44,32,49,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,99,108,117,100,101,115,40,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,44,32,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,99,108,117,100,101,115,40,39,97,98,99,100,39,44,32,39,98,99,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,99,108,117,100,101,115,40,99,111,108,108,101,99,116,105,111,110,44,32,118,97,108,117,101,44,32,102,114,111,109,73,110,100,101,120,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,99,111,108,108,101,99,116,105,111,110,32,61,32,105,115,65,114,114,97,121,76,105,107,101,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,99,111,108,108,101,99,116,105,111,110,32,58,32,118,97,108,117,101,115,40,99,111,108,108,101,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,102,114,111,109,73,110,100,101,120,32,61,32,40,102,114,111,109,73,110,100,101,120,32,38,38,32,33,103,117,97,114,100,41,32,63,32,116,111,73,110,116,101,103,101,114,40,102,114,111,109,73,110,100,101,120,41,32,58,32,48,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,99,111,108,108,101,99,116,105,111,110,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,102,114,111,109,73,110,100,101,120,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,102,114,111,109,73,110,100,101,120,32,61,32,110,97,116,105,118,101,77,97,120,40,108,101,110,103,116,104,32,43,32,102,114,111,109,73,110,100,101,120,44,32,48,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,83,116,114,105,110,103,40,99,111,108,108,101,99,116,105,111,110,41,92,110,32,32,32,32,32,32,32,32,63,32,40,102,114,111,109,73,110,100,101,120,32,60,61,32,108,101,110,103,116,104,32,38,38,32,99,111,108,108,101,99,116,105,111,110,46,105,110,100,101,120,79,102,40,118,97,108,117,101,44,32,102,114,111,109,73,110,100,101,120,41,32,62,32,45,49,41,92,110,32,32,32,32,32,32,32,32,58,32,40,33,33,108,101,110,103,116,104,32,38,38,32,98,97,115,101,73,110,100,101,120,79,102,40,99,111,108,108,101,99,116,105,111,110,44,32,118,97,108,117,101,44,32,102,114,111,109,73,110,100,101,120,41,32,62,32,45,49,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,73,110,118,111,107,101,115,32,116,104,101,32,109,101,116,104,111,100,32,97,116,32,96,112,97,116,104,96,32,111,102,32,101,97,99,104,32,101,108,101,109,101,110,116,32,105,110,32,96,99,111,108,108,101,99,116,105,111,110,96,44,32,114,101,116,117,114,110,105,110,103,92,110,32,32,32,32,32,42,32,97,110,32,97,114,114,97,121,32,111,102,32,116,104,101,32,114,101,115,117,108,116,115,32,111,102,32,101,97,99,104,32,105,110,118,111,107,101,100,32,109,101,116,104,111,100,46,32,65,110,121,32,97,100,100,105,116,105,111,110,97,108,32,97,114,103,117,109,101,110,116,115,92,110,32,32,32,32,32,42,32,97,114,101,32,112,114,111,118,105,100,101,100,32,116,111,32,101,97,99,104,32,105,110,118,111,107,101,100,32,109,101,116,104,111,100,46,32,73,102,32,96,112,97,116,104,96,32,105,115,32,97,32,102,117,110,99,116,105,111,110,44,32,105,116,39,115,32,105,110,118,111,107,101,100,92,110,32,32,32,32,32,42,32,102,111,114,44,32,97,110,100,32,96,116,104,105,115,96,32,98,111,117,110,100,32,116,111,44,32,101,97,99,104,32,101,108,101,109,101,110,116,32,105,110,32,96,99,111,108,108,101,99,116,105,111,110,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,70,117,110,99,116,105,111,110,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,109,101,116,104,111,100,32,116,111,32,105,110,118,111,107,101,32,111,114,92,110,32,32,32,32,32,42,32,32,116,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,42,125,32,91,97,114,103,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,105,110,118,111,107,101,32,101,97,99,104,32,109,101,116,104,111,100,32,119,105,116,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,114,101,115,117,108,116,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,118,111,107,101,77,97,112,40,91,91,53,44,32,49,44,32,55,93,44,32,91,51,44,32,50,44,32,49,93,93,44,32,39,115,111,114,116,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,91,49,44,32,53,44,32,55,93,44,32,91,49,44,32,50,44,32,51,93,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,118,111,107,101,77,97,112,40,91,49,50,51,44,32,52,53,54,93,44,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,115,112,108,105,116,44,32,39,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,91,39,49,39,44,32,39,50,39,44,32,39,51,39,93,44,32,91,39,52,39,44,32,39,53,39,44,32,39,54,39,93,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,110,118,111,107,101,77,97,112,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,99,111,108,108,101,99,116,105,111,110,44,32,112,97,116,104,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,70,117,110,99,32,61,32,116,121,112,101,111,102,32,112,97,116,104,32,61,61,32,39,102,117,110,99,116,105,111,110,39,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,105,115,65,114,114,97,121,76,105,107,101,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,65,114,114,97,121,40,99,111,108,108,101,99,116,105,111,110,46,108,101,110,103,116,104,41,32,58,32,91,93,59,92,110,92,110,32,32,32,32,32,32,98,97,115,101,69,97,99,104,40,99,111,108,108,101,99,116,105,111,110,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,43,43,105,110,100,101,120,93,32,61,32,105,115,70,117,110,99,32,63,32,97,112,112,108,121,40,112,97,116,104,44,32,118,97,108,117,101,44,32,97,114,103,115,41,32,58,32,98,97,115,101,73,110,118,111,107,101,40,118,97,108,117,101,44,32,112,97,116,104,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,111,98,106,101,99,116,32,99,111,109,112,111,115,101,100,32,111,102,32,107,101,121,115,32,103,101,110,101,114,97,116,101,100,32,102,114,111,109,32,116,104,101,32,114,101,115,117,108,116,115,32,111,102,32,114,117,110,110,105,110,103,92,110,32,32,32,32,32,42,32,101,97,99,104,32,101,108,101,109,101,110,116,32,111,102,32,96,99,111,108,108,101,99,116,105,111,110,96,32,116,104,114,117,32,96,105,116,101,114,97,116,101,101,96,46,32,84,104,101,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,118,97,108,117,101,32,111,102,92,110,32,32,32,32,32,42,32,101,97,99,104,32,107,101,121,32,105,115,32,116,104,101,32,108,97,115,116,32,101,108,101,109,101,110,116,32,114,101,115,112,111,110,115,105,98,108,101,32,102,111,114,32,103,101,110,101,114,97,116,105,110,103,32,116,104,101,32,107,101,121,46,32,84,104,101,92,110,32,32,32,32,32,42,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,116,111,32,116,114,97,110,115,102,111,114,109,32,107,101,121,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,109,112,111,115,101,100,32,97,103,103,114,101,103,97,116,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,100,105,114,39,58,32,39,108,101,102,116,39,44,32,39,99,111,100,101,39,58,32,57,55,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,100,105,114,39,58,32,39,114,105,103,104,116,39,44,32,39,99,111,100,101,39,58,32,49,48,48,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,107,101,121,66,121,40,97,114,114,97,121,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,111,46,99,111,100,101,41,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,123,32,39,100,105,114,39,58,32,39,108,101,102,116,39,44,32,39,99,111,100,101,39,58,32,57,55,32,125,44,32,39,100,39,58,32,123,32,39,100,105,114,39,58,32,39,114,105,103,104,116,39,44,32,39,99,111,100,101,39,58,32,49,48,48,32,125,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,107,101,121,66,121,40,97,114,114,97,121,44,32,39,100,105,114,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,108,101,102,116,39,58,32,123,32,39,100,105,114,39,58,32,39,108,101,102,116,39,44,32,39,99,111,100,101,39,58,32,57,55,32,125,44,32,39,114,105,103,104,116,39,58,32,123,32,39,100,105,114,39,58,32,39,114,105,103,104,116,39,44,32,39,99,111,100,101,39,58,32,49,48,48,32,125,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,107,101,121,66,121,32,61,32,99,114,101,97,116,101,65,103,103,114,101,103,97,116,111,114,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,65,115,115,105,103,110,86,97,108,117,101,40,114,101,115,117,108,116,44,32,107,101,121,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,118,97,108,117,101,115,32,98,121,32,114,117,110,110,105,110,103,32,101,97,99,104,32,101,108,101,109,101,110,116,32,105,110,32,96,99,111,108,108,101,99,116,105,111,110,96,32,116,104,114,117,92,110,32,32,32,32,32,42,32,96,105,116,101,114,97,116,101,101,96,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,92,110,32,32,32,32,32,42,32,40,118,97,108,117,101,44,32,105,110,100,101,120,124,107,101,121,44,32,99,111,108,108,101,99,116,105,111,110,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,77,97,110,121,32,108,111,100,97,115,104,32,109,101,116,104,111,100,115,32,97,114,101,32,103,117,97,114,100,101,100,32,116,111,32,119,111,114,107,32,97,115,32,105,116,101,114,97,116,101,101,115,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,92,110,32,32,32,32,32,42,32,96,95,46,101,118,101,114,121,96,44,32,96,95,46,102,105,108,116,101,114,96,44,32,96,95,46,109,97,112,96,44,32,96,95,46,109,97,112,86,97,108,117,101,115,96,44,32,96,95,46,114,101,106,101,99,116,96,44,32,97,110,100,32,96,95,46,115,111,109,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,103,117,97,114,100,101,100,32,109,101,116,104,111,100,115,32,97,114,101,58,92,110,32,32,32,32,32,42,32,96,97,114,121,96,44,32,96,99,104,117,110,107,96,44,32,96,99,117,114,114,121,96,44,32,96,99,117,114,114,121,82,105,103,104,116,96,44,32,96,100,114,111,112,96,44,32,96,100,114,111,112,82,105,103,104,116,96,44,32,96,101,118,101,114,121,96,44,92,110,32,32,32,32,32,42,32,96,102,105,108,108,96,44,32,96,105,110,118,101,114,116,96,44,32,96,112,97,114,115,101,73,110,116,96,44,32,96,114,97,110,100,111,109,96,44,32,96,114,97,110,103,101,96,44,32,96,114,97,110,103,101,82,105,103,104,116,96,44,32,96,114,101,112,101,97,116,96,44,92,110,32,32,32,32,32,42,32,96,115,97,109,112,108,101,83,105,122,101,96,44,32,96,115,108,105,99,101,96,44,32,96,115,111,109,101,96,44,32,96,115,111,114,116,66,121,96,44,32,96,115,112,108,105,116,96,44,32,96,116,97,107,101,96,44,32,96,116,97,107,101,82,105,103,104,116,96,44,92,110,32,32,32,32,32,42,32,96,116,101,109,112,108,97,116,101,96,44,32,96,116,114,105,109,96,44,32,96,116,114,105,109,69,110,100,96,44,32,96,116,114,105,109,83,116,97,114,116,96,44,32,97,110,100,32,96,119,111,114,100,115,96,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,109,97,112,112,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,115,113,117,97,114,101,40,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,110,32,42,32,110,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,91,52,44,32,56,93,44,32,115,113,117,97,114,101,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,54,44,32,54,52,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,123,32,39,97,39,58,32,52,44,32,39,98,39,58,32,56,32,125,44,32,115,113,117,97,114,101,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,54,44,32,54,52,93,32,40,105,116,101,114,97,116,105,111,110,32,111,114,100,101,114,32,105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101,100,41,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,117,115,101,114,115,44,32,39,117,115,101,114,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,98,97,114,110,101,121,39,44,32,39,102,114,101,100,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,112,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,105,115,65,114,114,97,121,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,97,114,114,97,121,77,97,112,32,58,32,98,97,115,101,77,97,112,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,99,111,108,108,101,99,116,105,111,110,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,51,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,115,111,114,116,66,121,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,108,108,111,119,115,32,115,112,101,99,105,102,121,105,110,103,32,116,104,101,32,115,111,114,116,92,110,32,32,32,32,32,42,32,111,114,100,101,114,115,32,111,102,32,116,104,101,32,105,116,101,114,97,116,101,101,115,32,116,111,32,115,111,114,116,32,98,121,46,32,73,102,32,96,111,114,100,101,114,115,96,32,105,115,32,117,110,115,112,101,99,105,102,105,101,100,44,32,97,108,108,32,118,97,108,117,101,115,92,110,32,32,32,32,32,42,32,97,114,101,32,115,111,114,116,101,100,32,105,110,32,97,115,99,101,110,100,105,110,103,32,111,114,100,101,114,46,32,79,116,104,101,114,119,105,115,101,44,32,115,112,101,99,105,102,121,32,97,110,32,111,114,100,101,114,32,111,102,32,92,34,100,101,115,99,92,34,32,102,111,114,92,110,32,32,32,32,32,42,32,100,101,115,99,101,110,100,105,110,103,32,111,114,32,92,34,97,115,99,92,34,32,102,111,114,32,97,115,99,101,110,100,105,110,103,32,115,111,114,116,32,111,114,100,101,114,32,111,102,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,91,93,124,70,117,110,99,116,105,111,110,91,93,124,79,98,106,101,99,116,91,93,124,115,116,114,105,110,103,91,93,125,32,91,105,116,101,114,97,116,101,101,115,61,91,95,46,105,100,101,110,116,105,116,121,93,93,92,110,32,32,32,32,32,42,32,32,84,104,101,32,105,116,101,114,97,116,101,101,115,32,116,111,32,115,111,114,116,32,98,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,91,93,125,32,91,111,114,100,101,114,115,93,32,84,104,101,32,115,111,114,116,32,111,114,100,101,114,115,32,111,102,32,96,105,116,101,114,97,116,101,101,115,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,114,101,100,117,99,101,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,115,111,114,116,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,39,97,103,101,39,58,32,52,56,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,103,101,39,58,32,51,52,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,39,97,103,101,39,58,32,52,48,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,103,101,39,58,32,51,54,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,83,111,114,116,32,98,121,32,96,117,115,101,114,96,32,105,110,32,97,115,99,101,110,100,105,110,103,32,111,114,100,101,114,32,97,110,100,32,98,121,32,96,97,103,101,96,32,105,110,32,100,101,115,99,101,110,100,105,110,103,32,111,114,100,101,114,46,92,110,32,32,32,32,32,42,32,95,46,111,114,100,101,114,66,121,40,117,115,101,114,115,44,32,91,39,117,115,101,114,39,44,32,39,97,103,101,39,93,44,32,91,39,97,115,99,39,44,32,39,100,101,115,99,39,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,91,39,98,97,114,110,101,121,39,44,32,51,54,93,44,32,91,39,98,97,114,110,101,121,39,44,32,51,52,93,44,32,91,39,102,114,101,100,39,44,32,52,56,93,44,32,91,39,102,114,101,100,39,44,32,52,48,93,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,111,114,100,101,114,66,121,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,115,44,32,111,114,100,101,114,115,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,99,111,108,108,101,99,116,105,111,110,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,65,114,114,97,121,40,105,116,101,114,97,116,101,101,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,114,97,116,101,101,115,32,61,32,105,116,101,114,97,116,101,101,115,32,61,61,32,110,117,108,108,32,63,32,91,93,32,58,32,91,105,116,101,114,97,116,101,101,115,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,111,114,100,101,114,115,32,61,32,103,117,97,114,100,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,111,114,100,101,114,115,59,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,65,114,114,97,121,40,111,114,100,101,114,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,115,32,61,32,111,114,100,101,114,115,32,61,61,32,110,117,108,108,32,63,32,91,93,32,58,32,91,111,114,100,101,114,115,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,79,114,100,101,114,66,121,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,115,44,32,111,114,100,101,114,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,101,108,101,109,101,110,116,115,32,115,112,108,105,116,32,105,110,116,111,32,116,119,111,32,103,114,111,117,112,115,44,32,116,104,101,32,102,105,114,115,116,32,111,102,32,119,104,105,99,104,92,110,32,32,32,32,32,42,32,99,111,110,116,97,105,110,115,32,101,108,101,109,101,110,116,115,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,32,116,114,117,116,104,121,32,102,111,114,44,32,116,104,101,32,115,101,99,111,110,100,32,111,102,32,119,104,105,99,104,92,110,32,32,32,32,32,42,32,99,111,110,116,97,105,110,115,32,101,108,101,109,101,110,116,115,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,32,102,97,108,115,101,121,32,102,111,114,46,32,84,104,101,32,112,114,101,100,105,99,97,116,101,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,103,114,111,117,112,101,100,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,32,39,97,103,101,39,58,32,51,54,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,32,39,97,103,101,39,58,32,52,48,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,112,101,98,98,108,101,115,39,44,32,39,97,103,101,39,58,32,49,44,32,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,97,114,116,105,116,105,111,110,40,117,115,101,114,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,97,99,116,105,118,101,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,91,39,102,114,101,100,39,93,44,32,91,39,98,97,114,110,101,121,39,44,32,39,112,101,98,98,108,101,115,39,93,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,112,97,114,116,105,116,105,111,110,40,117,115,101,114,115,44,32,123,32,39,97,103,101,39,58,32,49,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,91,39,112,101,98,98,108,101,115,39,93,44,32,91,39,98,97,114,110,101,121,39,44,32,39,102,114,101,100,39,93,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,112,97,114,116,105,116,105,111,110,40,117,115,101,114,115,44,32,91,39,97,99,116,105,118,101,39,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,91,39,98,97,114,110,101,121,39,44,32,39,112,101,98,98,108,101,115,39,93,44,32,91,39,102,114,101,100,39,93,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,112,97,114,116,105,116,105,111,110,40,117,115,101,114,115,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,91,39,102,114,101,100,39,93,44,32,91,39,98,97,114,110,101,121,39,44,32,39,112,101,98,98,108,101,115,39,93,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,112,97,114,116,105,116,105,111,110,32,61,32,99,114,101,97,116,101,65,103,103,114,101,103,97,116,111,114,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,114,101,115,117,108,116,91,107,101,121,32,63,32,48,32,58,32,49,93,46,112,117,115,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,91,91,93,44,32,91,93,93,59,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,100,117,99,101,115,32,96,99,111,108,108,101,99,116,105,111,110,96,32,116,111,32,97,32,118,97,108,117,101,32,119,104,105,99,104,32,105,115,32,116,104,101,32,97,99,99,117,109,117,108,97,116,101,100,32,114,101,115,117,108,116,32,111,102,32,114,117,110,110,105,110,103,92,110,32,32,32,32,32,42,32,101,97,99,104,32,101,108,101,109,101,110,116,32,105,110,32,96,99,111,108,108,101,99,116,105,111,110,96,32,116,104,114,117,32,96,105,116,101,114,97,116,101,101,96,44,32,119,104,101,114,101,32,101,97,99,104,32,115,117,99,99,101,115,115,105,118,101,92,110,32,32,32,32,32,42,32,105,110,118,111,99,97,116,105,111,110,32,105,115,32,115,117,112,112,108,105,101,100,32,116,104,101,32,114,101,116,117,114,110,32,118,97,108,117,101,32,111,102,32,116,104,101,32,112,114,101,118,105,111,117,115,46,32,73,102,32,96,97,99,99,117,109,117,108,97,116,111,114,96,92,110,32,32,32,32,32,42,32,105,115,32,110,111,116,32,103,105,118,101,110,44,32,116,104,101,32,102,105,114,115,116,32,101,108,101,109,101,110,116,32,111,102,32,96,99,111,108,108,101,99,116,105,111,110,96,32,105,115,32,117,115,101,100,32,97,115,32,116,104,101,32,105,110,105,116,105,97,108,92,110,32,32,32,32,32,42,32,118,97,108,117,101,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,102,111,117,114,32,97,114,103,117,109,101,110,116,115,58,92,110,32,32,32,32,32,42,32,40,97,99,99,117,109,117,108,97,116,111,114,44,32,118,97,108,117,101,44,32,105,110,100,101,120,124,107,101,121,44,32,99,111,108,108,101,99,116,105,111,110,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,77,97,110,121,32,108,111,100,97,115,104,32,109,101,116,104,111,100,115,32,97,114,101,32,103,117,97,114,100,101,100,32,116,111,32,119,111,114,107,32,97,115,32,105,116,101,114,97,116,101,101,115,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,92,110,32,32,32,32,32,42,32,96,95,46,114,101,100,117,99,101,96,44,32,96,95,46,114,101,100,117,99,101,82,105,103,104,116,96,44,32,97,110,100,32,96,95,46,116,114,97,110,115,102,111,114,109,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,103,117,97,114,100,101,100,32,109,101,116,104,111,100,115,32,97,114,101,58,92,110,32,32,32,32,32,42,32,96,97,115,115,105,103,110,96,44,32,96,100,101,102,97,117,108,116,115,96,44,32,96,100,101,102,97,117,108,116,115,68,101,101,112,96,44,32,96,105,110,99,108,117,100,101,115,96,44,32,96,109,101,114,103,101,96,44,32,96,111,114,100,101,114,66,121,96,44,92,110,32,32,32,32,32,42,32,97,110,100,32,96,115,111,114,116,66,121,96,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,91,97,99,99,117,109,117,108,97,116,111,114,93,32,84,104,101,32,105,110,105,116,105,97,108,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,99,99,117,109,117,108,97,116,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,114,101,100,117,99,101,82,105,103,104,116,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,101,100,117,99,101,40,91,49,44,32,50,93,44,32,102,117,110,99,116,105,111,110,40,115,117,109,44,32,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,115,117,109,32,43,32,110,59,92,110,32,32,32,32,32,42,32,125,44,32,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,101,100,117,99,101,40,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,44,32,39,99,39,58,32,49,32,125,44,32,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,42,32,32,32,40,114,101,115,117,108,116,91,118,97,108,117,101,93,32,124,124,32,40,114,101,115,117,108,116,91,118,97,108,117,101,93,32,61,32,91,93,41,41,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,42,32,125,44,32,123,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,49,39,58,32,91,39,97,39,44,32,39,99,39,93,44,32,39,50,39,58,32,91,39,98,39,93,32,125,32,40,105,116,101,114,97,116,105,111,110,32,111,114,100,101,114,32,105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101,100,41,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,100,117,99,101,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,44,32,97,99,99,117,109,117,108,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,105,115,65,114,114,97,121,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,97,114,114,97,121,82,101,100,117,99,101,32,58,32,98,97,115,101,82,101,100,117,99,101,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,105,116,65,99,99,117,109,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,51,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,99,111,108,108,101,99,116,105,111,110,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,52,41,44,32,97,99,99,117,109,117,108,97,116,111,114,44,32,105,110,105,116,65,99,99,117,109,44,32,98,97,115,101,69,97,99,104,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,114,101,100,117,99,101,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,105,116,101,114,97,116,101,115,32,111,118,101,114,32,101,108,101,109,101,110,116,115,32,111,102,92,110,32,32,32,32,32,42,32,96,99,111,108,108,101,99,116,105,111,110,96,32,102,114,111,109,32,114,105,103,104,116,32,116,111,32,108,101,102,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,91,97,99,99,117,109,117,108,97,116,111,114,93,32,84,104,101,32,105,110,105,116,105,97,108,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,99,99,117,109,117,108,97,116,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,114,101,100,117,99,101,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,91,48,44,32,49,93,44,32,91,50,44,32,51,93,44,32,91,52,44,32,53,93,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,101,100,117,99,101,82,105,103,104,116,40,97,114,114,97,121,44,32,102,117,110,99,116,105,111,110,40,102,108,97,116,116,101,110,101,100,44,32,111,116,104,101,114,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,102,108,97,116,116,101,110,101,100,46,99,111,110,99,97,116,40,111,116,104,101,114,41,59,92,110,32,32,32,32,32,42,32,125,44,32,91,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,52,44,32,53,44,32,50,44,32,51,44,32,48,44,32,49,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,100,117,99,101,82,105,103,104,116,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,44,32,97,99,99,117,109,117,108,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,105,115,65,114,114,97,121,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,97,114,114,97,121,82,101,100,117,99,101,82,105,103,104,116,32,58,32,98,97,115,101,82,101,100,117,99,101,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,105,116,65,99,99,117,109,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,60,32,51,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,99,111,108,108,101,99,116,105,111,110,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,52,41,44,32,97,99,99,117,109,117,108,97,116,111,114,44,32,105,110,105,116,65,99,99,117,109,44,32,98,97,115,101,69,97,99,104,82,105,103,104,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,111,112,112,111,115,105,116,101,32,111,102,32,96,95,46,102,105,108,116,101,114,96,59,32,116,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,116,104,101,32,101,108,101,109,101,110,116,115,32,111,102,32,96,99,111,108,108,101,99,116,105,111,110,96,92,110,32,32,32,32,32,42,32,116,104,97,116,32,96,112,114,101,100,105,99,97,116,101,96,32,100,111,101,115,32,42,42,110,111,116,42,42,32,114,101,116,117,114,110,32,116,114,117,116,104,121,32,102,111,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,105,108,116,101,114,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,102,105,108,116,101,114,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,103,101,39,58,32,51,54,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,39,97,103,101,39,58,32,52,48,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,101,106,101,99,116,40,117,115,101,114,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,33,111,46,97,99,116,105,118,101,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,102,114,101,100,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,114,101,106,101,99,116,40,117,115,101,114,115,44,32,123,32,39,97,103,101,39,58,32,52,48,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,98,97,114,110,101,121,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,114,101,106,101,99,116,40,117,115,101,114,115,44,32,91,39,97,99,116,105,118,101,39,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,102,114,101,100,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,114,101,106,101,99,116,40,117,115,101,114,115,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,39,98,97,114,110,101,121,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,106,101,99,116,40,99,111,108,108,101,99,116,105,111,110,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,105,115,65,114,114,97,121,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,97,114,114,97,121,70,105,108,116,101,114,32,58,32,98,97,115,101,70,105,108,116,101,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,99,111,108,108,101,99,116,105,111,110,44,32,110,101,103,97,116,101,40,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,44,32,51,41,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,97,32,114,97,110,100,111,109,32,101,108,101,109,101,110,116,32,102,114,111,109,32,96,99,111,108,108,101,99,116,105,111,110,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,115,97,109,112,108,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,97,110,100,111,109,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,97,109,112,108,101,40,91,49,44,32,50,44,32,51,44,32,52,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,50,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,97,109,112,108,101,40,99,111,108,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,105,115,65,114,114,97,121,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,97,114,114,97,121,83,97,109,112,108,101,32,58,32,98,97,115,101,83,97,109,112,108,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,99,111,108,108,101,99,116,105,111,110,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,96,110,96,32,114,97,110,100,111,109,32,101,108,101,109,101,110,116,115,32,97,116,32,117,110,105,113,117,101,32,107,101,121,115,32,102,114,111,109,32,96,99,111,108,108,101,99,116,105,111,110,96,32,117,112,32,116,111,32,116,104,101,92,110,32,32,32,32,32,42,32,115,105,122,101,32,111,102,32,96,99,111,108,108,101,99,116,105,111,110,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,115,97,109,112,108,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,110,61,49,93,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,101,108,101,109,101,110,116,115,32,116,111,32,115,97,109,112,108,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,97,110,100,111,109,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,97,109,112,108,101,83,105,122,101,40,91,49,44,32,50,44,32,51,93,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,51,44,32,49,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,97,109,112,108,101,83,105,122,101,40,91,49,44,32,50,44,32,51,93,44,32,52,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,51,44,32,49,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,97,109,112,108,101,83,105,122,101,40,99,111,108,108,101,99,116,105,111,110,44,32,110,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,103,117,97,114,100,32,63,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,99,111,108,108,101,99,116,105,111,110,44,32,110,44,32,103,117,97,114,100,41,32,58,32,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,110,32,61,32,49,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,110,32,61,32,116,111,73,110,116,101,103,101,114,40,110,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,105,115,65,114,114,97,121,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,97,114,114,97,121,83,97,109,112,108,101,83,105,122,101,32,58,32,98,97,115,101,83,97,109,112,108,101,83,105,122,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,99,111,108,108,101,99,116,105,111,110,44,32,110,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,115,104,117,102,102,108,101,100,32,118,97,108,117,101,115,44,32,117,115,105,110,103,32,97,32,118,101,114,115,105,111,110,32,111,102,32,116,104,101,92,110,32,32,32,32,32,42,32,91,70,105,115,104,101,114,45,89,97,116,101,115,32,115,104,117,102,102,108,101,93,40,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,70,105,115,104,101,114,45,89,97,116,101,115,95,115,104,117,102,102,108,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,115,104,117,102,102,108,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,115,104,117,102,102,108,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,104,117,102,102,108,101,40,91,49,44,32,50,44,32,51,44,32,52,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,52,44,32,49,44,32,51,44,32,50,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,104,117,102,102,108,101,40,99,111,108,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,105,115,65,114,114,97,121,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,97,114,114,97,121,83,104,117,102,102,108,101,32,58,32,98,97,115,101,83,104,117,102,102,108,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,99,111,108,108,101,99,116,105,111,110,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,115,105,122,101,32,111,102,32,96,99,111,108,108,101,99,116,105,111,110,96,32,98,121,32,114,101,116,117,114,110,105,110,103,32,105,116,115,32,108,101,110,103,116,104,32,102,111,114,32,97,114,114,97,121,45,108,105,107,101,92,110,32,32,32,32,32,42,32,118,97,108,117,101,115,32,111,114,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,111,119,110,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,32,112,114,111,112,101,114,116,105,101,115,32,102,111,114,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,124,115,116,114,105,110,103,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,108,108,101,99,116,105,111,110,32,115,105,122,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,105,122,101,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,105,122,101,40,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,50,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,105,122,101,40,39,112,101,98,98,108,101,115,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,55,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,105,122,101,40,99,111,108,108,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,99,111,108,108,101,99,116,105,111,110,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,48,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,76,105,107,101,40,99,111,108,108,101,99,116,105,111,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,83,116,114,105,110,103,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,115,116,114,105,110,103,83,105,122,101,40,99,111,108,108,101,99,116,105,111,110,41,32,58,32,99,111,108,108,101,99,116,105,111,110,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,116,97,103,32,61,32,103,101,116,84,97,103,40,99,111,108,108,101,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,97,103,32,61,61,32,109,97,112,84,97,103,32,124,124,32,116,97,103,32,61,61,32,115,101,116,84,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,108,108,101,99,116,105,111,110,46,115,105,122,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,75,101,121,115,40,99,111,108,108,101,99,116,105,111,110,41,46,108,101,110,103,116,104,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,32,116,114,117,116,104,121,32,102,111,114,32,42,42,97,110,121,42,42,32,101,108,101,109,101,110,116,32,111,102,32,96,99,111,108,108,101,99,116,105,111,110,96,46,92,110,32,32,32,32,32,42,32,73,116,101,114,97,116,105,111,110,32,105,115,32,115,116,111,112,112,101,100,32,111,110,99,101,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,32,116,114,117,116,104,121,46,32,84,104,101,32,112,114,101,100,105,99,97,116,101,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,105,110,100,101,120,124,107,101,121,44,32,99,111,108,108,101,99,116,105,111,110,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,97,110,121,32,101,108,101,109,101,110,116,32,112,97,115,115,101,115,32,116,104,101,32,112,114,101,100,105,99,97,116,101,32,99,104,101,99,107,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,111,109,101,40,91,110,117,108,108,44,32,48,44,32,39,121,101,115,39,44,32,102,97,108,115,101,93,44,32,66,111,111,108,101,97,110,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,115,111,109,101,40,117,115,101,114,115,44,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,115,111,109,101,40,117,115,101,114,115,44,32,91,39,97,99,116,105,118,101,39,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,115,111,109,101,40,117,115,101,114,115,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,111,109,101,40,99,111,108,108,101,99,116,105,111,110,44,32,112,114,101,100,105,99,97,116,101,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,105,115,65,114,114,97,121,40,99,111,108,108,101,99,116,105,111,110,41,32,63,32,97,114,114,97,121,83,111,109,101,32,58,32,98,97,115,101,83,111,109,101,59,92,110,32,32,32,32,32,32,105,102,32,40,103,117,97,114,100,32,38,38,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,99,111,108,108,101,99,116,105,111,110,44,32,112,114,101,100,105,99,97,116,101,44,32,103,117,97,114,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,112,114,101,100,105,99,97,116,101,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,99,111,108,108,101,99,116,105,111,110,44,32,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,44,32,51,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,101,108,101,109,101,110,116,115,44,32,115,111,114,116,101,100,32,105,110,32,97,115,99,101,110,100,105,110,103,32,111,114,100,101,114,32,98,121,32,116,104,101,32,114,101,115,117,108,116,115,32,111,102,92,110,32,32,32,32,32,42,32,114,117,110,110,105,110,103,32,101,97,99,104,32,101,108,101,109,101,110,116,32,105,110,32,97,32,99,111,108,108,101,99,116,105,111,110,32,116,104,114,117,32,101,97,99,104,32,105,116,101,114,97,116,101,101,46,32,84,104,105,115,32,109,101,116,104,111,100,92,110,32,32,32,32,32,42,32,112,101,114,102,111,114,109,115,32,97,32,115,116,97,98,108,101,32,115,111,114,116,44,32,116,104,97,116,32,105,115,44,32,105,116,32,112,114,101,115,101,114,118,101,115,32,116,104,101,32,111,114,105,103,105,110,97,108,32,115,111,114,116,32,111,114,100,101,114,32,111,102,92,110,32,32,32,32,32,42,32,101,113,117,97,108,32,101,108,101,109,101,110,116,115,46,32,84,104,101,32,105,116,101,114,97,116,101,101,115,32,97,114,101,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,67,111,108,108,101,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,99,111,108,108,101,99,116,105,111,110,32,84,104,101,32,99,111,108,108,101,99,116,105,111,110,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,40,70,117,110,99,116,105,111,110,124,70,117,110,99,116,105,111,110,91,93,41,125,32,91,105,116,101,114,97,116,101,101,115,61,91,95,46,105,100,101,110,116,105,116,121,93,93,92,110,32,32,32,32,32,42,32,32,84,104,101,32,105,116,101,114,97,116,101,101,115,32,116,111,32,115,111,114,116,32,98,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,115,111,114,116,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,39,97,103,101,39,58,32,52,56,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,103,101,39,58,32,51,54,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,39,97,103,101,39,58,32,51,48,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,103,101,39,58,32,51,52,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,111,114,116,66,121,40,117,115,101,114,115,44,32,91,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,117,115,101,114,59,32,125,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,91,39,98,97,114,110,101,121,39,44,32,51,54,93,44,32,91,39,98,97,114,110,101,121,39,44,32,51,52,93,44,32,91,39,102,114,101,100,39,44,32,52,56,93,44,32,91,39,102,114,101,100,39,44,32,51,48,93,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,111,114,116,66,121,40,117,115,101,114,115,44,32,91,39,117,115,101,114,39,44,32,39,97,103,101,39,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,111,98,106,101,99,116,115,32,102,111,114,32,91,91,39,98,97,114,110,101,121,39,44,32,51,52,93,44,32,91,39,98,97,114,110,101,121,39,44,32,51,54,93,44,32,91,39,102,114,101,100,39,44,32,51,48,93,44,32,91,39,102,114,101,100,39,44,32,52,56,93,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,115,111,114,116,66,121,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,99,111,108,108,101,99,116,105,111,110,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,105,116,101,114,97,116,101,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,108,101,110,103,116,104,32,62,32,49,32,38,38,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,99,111,108,108,101,99,116,105,111,110,44,32,105,116,101,114,97,116,101,101,115,91,48,93,44,32,105,116,101,114,97,116,101,101,115,91,49,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,114,97,116,101,101,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,108,101,110,103,116,104,32,62,32,50,32,38,38,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,105,116,101,114,97,116,101,101,115,91,48,93,44,32,105,116,101,114,97,116,101,101,115,91,49,93,44,32,105,116,101,114,97,116,101,101,115,91,50,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,114,97,116,101,101,115,32,61,32,91,105,116,101,114,97,116,101,101,115,91,48,93,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,79,114,100,101,114,66,121,40,99,111,108,108,101,99,116,105,111,110,44,32,98,97,115,101,70,108,97,116,116,101,110,40,105,116,101,114,97,116,101,101,115,44,32,49,41,44,32,91,93,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,116,105,109,101,115,116,97,109,112,32,111,102,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,104,97,116,32,104,97,118,101,32,101,108,97,112,115,101,100,32,115,105,110,99,101,92,110,32,32,32,32,32,42,32,116,104,101,32,85,110,105,120,32,101,112,111,99,104,32,40,49,32,74,97,110,117,97,114,121,32,49,57,55,48,32,48,48,58,48,48,58,48,48,32,85,84,67,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,52,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,68,97,116,101,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,116,105,109,101,115,116,97,109,112,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,101,102,101,114,40,102,117,110,99,116,105,111,110,40,115,116,97,109,112,41,32,123,92,110,32,32,32,32,32,42,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,95,46,110,111,119,40,41,32,45,32,115,116,97,109,112,41,59,92,110,32,32,32,32,32,42,32,125,44,32,95,46,110,111,119,40,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,76,111,103,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,105,116,32,116,111,111,107,32,102,111,114,32,116,104,101,32,100,101,102,101,114,114,101,100,32,105,110,118,111,99,97,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,110,111,119,32,61,32,99,116,120,78,111,119,32,124,124,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,111,111,116,46,68,97,116,101,46,110,111,119,40,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,111,112,112,111,115,105,116,101,32,111,102,32,96,95,46,98,101,102,111,114,101,96,59,32,116,104,105,115,32,109,101,116,104,111,100,32,99,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,92,110,32,32,32,32,32,42,32,96,102,117,110,99,96,32,111,110,99,101,32,105,116,39,115,32,99,97,108,108,101,100,32,96,110,96,32,111,114,32,109,111,114,101,32,116,105,109,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,110,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,99,97,108,108,115,32,98,101,102,111,114,101,32,96,102,117,110,99,96,32,105,115,32,105,110,118,111,107,101,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,114,101,115,116,114,105,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,114,101,115,116,114,105,99,116,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,115,97,118,101,115,32,61,32,91,39,112,114,111,102,105,108,101,39,44,32,39,115,101,116,116,105,110,103,115,39,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,100,111,110,101,32,61,32,95,46,97,102,116,101,114,40,115,97,118,101,115,46,108,101,110,103,116,104,44,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,39,100,111,110,101,32,115,97,118,105,110,103,33,39,41,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,111,114,69,97,99,104,40,115,97,118,101,115,44,32,102,117,110,99,116,105,111,110,40,116,121,112,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,97,115,121,110,99,83,97,118,101,40,123,32,39,116,121,112,101,39,58,32,116,121,112,101,44,32,39,99,111,109,112,108,101,116,101,39,58,32,100,111,110,101,32,125,41,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,76,111,103,115,32,39,100,111,110,101,32,115,97,118,105,110,103,33,39,32,97,102,116,101,114,32,116,104,101,32,116,119,111,32,97,115,121,110,99,32,115,97,118,101,115,32,104,97,118,101,32,99,111,109,112,108,101,116,101,100,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,102,116,101,114,40,110,44,32,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,102,117,110,99,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,70,85,78,67,95,69,82,82,79,82,95,84,69,88,84,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,110,32,61,32,116,111,73,110,116,101,103,101,114,40,110,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,45,45,110,32,60,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,32,96,102,117,110,99,96,44,32,119,105,116,104,32,117,112,32,116,111,32,96,110,96,32,97,114,103,117,109,101,110,116,115,44,92,110,32,32,32,32,32,42,32,105,103,110,111,114,105,110,103,32,97,110,121,32,97,100,100,105,116,105,111,110,97,108,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,97,112,32,97,114,103,117,109,101,110,116,115,32,102,111,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,110,61,102,117,110,99,46,108,101,110,103,116,104,93,32,84,104,101,32,97,114,105,116,121,32,99,97,112,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,99,97,112,112,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,91,39,54,39,44,32,39,56,39,44,32,39,49,48,39,93,44,32,95,46,97,114,121,40,112,97,114,115,101,73,110,116,44,32,49,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,54,44,32,56,44,32,49,48,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,114,121,40,102,117,110,99,44,32,110,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,110,32,61,32,103,117,97,114,100,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,110,59,92,110,32,32,32,32,32,32,110,32,61,32,40,102,117,110,99,32,38,38,32,110,32,61,61,32,110,117,108,108,41,32,63,32,102,117,110,99,46,108,101,110,103,116,104,32,58,32,110,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,87,114,97,112,40,102,117,110,99,44,32,87,82,65,80,95,65,82,89,95,70,76,65,71,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,110,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,32,96,102,117,110,99,96,44,32,119,105,116,104,32,116,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,97,110,100,32,97,114,103,117,109,101,110,116,115,92,110,32,32,32,32,32,42,32,111,102,32,116,104,101,32,99,114,101,97,116,101,100,32,102,117,110,99,116,105,111,110,44,32,119,104,105,108,101,32,105,116,39,115,32,99,97,108,108,101,100,32,108,101,115,115,32,116,104,97,110,32,96,110,96,32,116,105,109,101,115,46,32,83,117,98,115,101,113,117,101,110,116,92,110,32,32,32,32,32,42,32,99,97,108,108,115,32,116,111,32,116,104,101,32,99,114,101,97,116,101,100,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,32,116,104,101,32,114,101,115,117,108,116,32,111,102,32,116,104,101,32,108,97,115,116,32,96,102,117,110,99,96,32,105,110,118,111,99,97,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,110,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,99,97,108,108,115,32,97,116,32,119,104,105,99,104,32,96,102,117,110,99,96,32,105,115,32,110,111,32,108,111,110,103,101,114,32,105,110,118,111,107,101,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,114,101,115,116,114,105,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,114,101,115,116,114,105,99,116,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,106,81,117,101,114,121,40,101,108,101,109,101,110,116,41,46,111,110,40,39,99,108,105,99,107,39,44,32,95,46,98,101,102,111,114,101,40,53,44,32,97,100,100,67,111,110,116,97,99,116,84,111,76,105,115,116,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,65,108,108,111,119,115,32,97,100,100,105,110,103,32,117,112,32,116,111,32,52,32,99,111,110,116,97,99,116,115,32,116,111,32,116,104,101,32,108,105,115,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,40,110,44,32,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,102,117,110,99,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,70,85,78,67,95,69,82,82,79,82,95,84,69,88,84,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,110,32,61,32,116,111,73,110,116,101,103,101,114,40,110,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,45,45,110,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,102,117,110,99,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,32,60,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,117,110,99,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,32,96,102,117,110,99,96,32,119,105,116,104,32,116,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,111,102,32,96,116,104,105,115,65,114,103,96,92,110,32,32,32,32,32,42,32,97,110,100,32,96,112,97,114,116,105,97,108,115,96,32,112,114,101,112,101,110,100,101,100,32,116,111,32,116,104,101,32,97,114,103,117,109,101,110,116,115,32,105,116,32,114,101,99,101,105,118,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,96,95,46,98,105,110,100,46,112,108,97,99,101,104,111,108,100,101,114,96,32,118,97,108,117,101,44,32,119,104,105,99,104,32,100,101,102,97,117,108,116,115,32,116,111,32,96,95,96,32,105,110,32,109,111,110,111,108,105,116,104,105,99,32,98,117,105,108,100,115,44,92,110,32,32,32,32,32,42,32,109,97,121,32,98,101,32,117,115,101,100,32,97,115,32,97,32,112,108,97,99,101,104,111,108,100,101,114,32,102,111,114,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,85,110,108,105,107,101,32,110,97,116,105,118,101,32,96,70,117,110,99,116,105,111,110,35,98,105,110,100,96,44,32,116,104,105,115,32,109,101,116,104,111,100,32,100,111,101,115,110,39,116,32,115,101,116,32,116,104,101,32,92,34,108,101,110,103,116,104,92,34,92,110,32,32,32,32,32,42,32,112,114,111,112,101,114,116,121,32,111,102,32,98,111,117,110,100,32,102,117,110,99,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,98,105,110,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,116,104,105,115,65,114,103,32,84,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,42,125,32,91,112,97,114,116,105,97,108,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,98,101,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,98,111,117,110,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,103,114,101,101,116,40,103,114,101,101,116,105,110,103,44,32,112,117,110,99,116,117,97,116,105,111,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,103,114,101,101,116,105,110,103,32,43,32,39,32,39,32,43,32,116,104,105,115,46,117,115,101,114,32,43,32,112,117,110,99,116,117,97,116,105,111,110,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,98,111,117,110,100,32,61,32,95,46,98,105,110,100,40,103,114,101,101,116,44,32,111,98,106,101,99,116,44,32,39,104,105,39,41,59,92,110,32,32,32,32,32,42,32,98,111,117,110,100,40,39,33,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,105,32,102,114,101,100,33,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,66,111,117,110,100,32,119,105,116,104,32,112,108,97,99,101,104,111,108,100,101,114,115,46,92,110,32,32,32,32,32,42,32,118,97,114,32,98,111,117,110,100,32,61,32,95,46,98,105,110,100,40,103,114,101,101,116,44,32,111,98,106,101,99,116,44,32,95,44,32,39,33,39,41,59,92,110,32,32,32,32,32,42,32,98,111,117,110,100,40,39,104,105,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,105,32,102,114,101,100,33,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,98,105,110,100,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,102,117,110,99,44,32,116,104,105,115,65,114,103,44,32,112,97,114,116,105,97,108,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,105,116,109,97,115,107,32,61,32,87,82,65,80,95,66,73,78,68,95,70,76,65,71,59,92,110,32,32,32,32,32,32,105,102,32,40,112,97,114,116,105,97,108,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,104,111,108,100,101,114,115,32,61,32,114,101,112,108,97,99,101,72,111,108,100,101,114,115,40,112,97,114,116,105,97,108,115,44,32,103,101,116,72,111,108,100,101,114,40,98,105,110,100,41,41,59,92,110,32,32,32,32,32,32,32,32,98,105,116,109,97,115,107,32,124,61,32,87,82,65,80,95,80,65,82,84,73,65,76,95,70,76,65,71,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,87,114,97,112,40,102,117,110,99,44,32,98,105,116,109,97,115,107,44,32,116,104,105,115,65,114,103,44,32,112,97,114,116,105,97,108,115,44,32,104,111,108,100,101,114,115,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,32,116,104,101,32,109,101,116,104,111,100,32,97,116,32,96,111,98,106,101,99,116,91,107,101,121,93,96,32,119,105,116,104,32,96,112,97,114,116,105,97,108,115,96,92,110,32,32,32,32,32,42,32,112,114,101,112,101,110,100,101,100,32,116,111,32,116,104,101,32,97,114,103,117,109,101,110,116,115,32,105,116,32,114,101,99,101,105,118,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,100,105,102,102,101,114,115,32,102,114,111,109,32,96,95,46,98,105,110,100,96,32,98,121,32,97,108,108,111,119,105,110,103,32,98,111,117,110,100,32,102,117,110,99,116,105,111,110,115,32,116,111,32,114,101,102,101,114,101,110,99,101,92,110,32,32,32,32,32,42,32,109,101,116,104,111,100,115,32,116,104,97,116,32,109,97,121,32,98,101,32,114,101,100,101,102,105,110,101,100,32,111,114,32,100,111,110,39,116,32,121,101,116,32,101,120,105,115,116,46,32,83,101,101,92,110,32,32,32,32,32,42,32,91,80,101,116,101,114,32,77,105,99,104,97,117,120,39,115,32,97,114,116,105,99,108,101,93,40,104,116,116,112,58,47,47,112,101,116,101,114,46,109,105,99,104,97,117,120,46,99,97,47,97,114,116,105,99,108,101,115,47,108,97,122,121,45,102,117,110,99,116,105,111,110,45,100,101,102,105,110,105,116,105,111,110,45,112,97,116,116,101,114,110,41,92,110,32,32,32,32,32,42,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,96,95,46,98,105,110,100,75,101,121,46,112,108,97,99,101,104,111,108,100,101,114,96,32,118,97,108,117,101,44,32,119,104,105,99,104,32,100,101,102,97,117,108,116,115,32,116,111,32,96,95,96,32,105,110,32,109,111,110,111,108,105,116,104,105,99,92,110,32,32,32,32,32,42,32,98,117,105,108,100,115,44,32,109,97,121,32,98,101,32,117,115,101,100,32,97,115,32,97,32,112,108,97,99,101,104,111,108,100,101,114,32,102,111,114,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,110,118,111,107,101,32,116,104,101,32,109,101,116,104,111,100,32,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,107,101,121,32,84,104,101,32,107,101,121,32,111,102,32,116,104,101,32,109,101,116,104,111,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,42,125,32,91,112,97,114,116,105,97,108,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,98,101,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,98,111,117,110,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,92,110,32,32,32,32,32,42,32,32,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,92,110,32,32,32,32,32,42,32,32,32,39,103,114,101,101,116,39,58,32,102,117,110,99,116,105,111,110,40,103,114,101,101,116,105,110,103,44,32,112,117,110,99,116,117,97,116,105,111,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,114,101,116,117,114,110,32,103,114,101,101,116,105,110,103,32,43,32,39,32,39,32,43,32,116,104,105,115,46,117,115,101,114,32,43,32,112,117,110,99,116,117,97,116,105,111,110,59,92,110,32,32,32,32,32,42,32,32,32,125,92,110,32,32,32,32,32,42,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,98,111,117,110,100,32,61,32,95,46,98,105,110,100,75,101,121,40,111,98,106,101,99,116,44,32,39,103,114,101,101,116,39,44,32,39,104,105,39,41,59,92,110,32,32,32,32,32,42,32,98,111,117,110,100,40,39,33,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,105,32,102,114,101,100,33,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,111,98,106,101,99,116,46,103,114,101,101,116,32,61,32,102,117,110,99,116,105,111,110,40,103,114,101,101,116,105,110,103,44,32,112,117,110,99,116,117,97,116,105,111,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,103,114,101,101,116,105,110,103,32,43,32,39,121,97,32,39,32,43,32,116,104,105,115,46,117,115,101,114,32,43,32,112,117,110,99,116,117,97,116,105,111,110,59,92,110,32,32,32,32,32,42,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,98,111,117,110,100,40,39,33,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,105,121,97,32,102,114,101,100,33,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,66,111,117,110,100,32,119,105,116,104,32,112,108,97,99,101,104,111,108,100,101,114,115,46,92,110,32,32,32,32,32,42,32,118,97,114,32,98,111,117,110,100,32,61,32,95,46,98,105,110,100,75,101,121,40,111,98,106,101,99,116,44,32,39,103,114,101,101,116,39,44,32,95,44,32,39,33,39,41,59,92,110,32,32,32,32,32,42,32,98,111,117,110,100,40,39,104,105,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,105,121,97,32,102,114,101,100,33,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,98,105,110,100,75,101,121,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,107,101,121,44,32,112,97,114,116,105,97,108,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,105,116,109,97,115,107,32,61,32,87,82,65,80,95,66,73,78,68,95,70,76,65,71,32,124,32,87,82,65,80,95,66,73,78,68,95,75,69,89,95,70,76,65,71,59,92,110,32,32,32,32,32,32,105,102,32,40,112,97,114,116,105,97,108,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,104,111,108,100,101,114,115,32,61,32,114,101,112,108,97,99,101,72,111,108,100,101,114,115,40,112,97,114,116,105,97,108,115,44,32,103,101,116,72,111,108,100,101,114,40,98,105,110,100,75,101,121,41,41,59,92,110,32,32,32,32,32,32,32,32,98,105,116,109,97,115,107,32,124,61,32,87,82,65,80,95,80,65,82,84,73,65,76,95,70,76,65,71,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,87,114,97,112,40,107,101,121,44,32,98,105,116,109,97,115,107,44,32,111,98,106,101,99,116,44,32,112,97,114,116,105,97,108,115,44,32,104,111,108,100,101,114,115,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,97,99,99,101,112,116,115,32,97,114,103,117,109,101,110,116,115,32,111,102,32,96,102,117,110,99,96,32,97,110,100,32,101,105,116,104,101,114,32,105,110,118,111,107,101,115,92,110,32,32,32,32,32,42,32,96,102,117,110,99,96,32,114,101,116,117,114,110,105,110,103,32,105,116,115,32,114,101,115,117,108,116,44,32,105,102,32,97,116,32,108,101,97,115,116,32,96,97,114,105,116,121,96,32,110,117,109,98,101,114,32,111,102,32,97,114,103,117,109,101,110,116,115,32,104,97,118,101,92,110,32,32,32,32,32,42,32,98,101,101,110,32,112,114,111,118,105,100,101,100,44,32,111,114,32,114,101,116,117,114,110,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,97,99,99,101,112,116,115,32,116,104,101,32,114,101,109,97,105,110,105,110,103,32,96,102,117,110,99,96,92,110,32,32,32,32,32,42,32,97,114,103,117,109,101,110,116,115,44,32,97,110,100,32,115,111,32,111,110,46,32,84,104,101,32,97,114,105,116,121,32,111,102,32,96,102,117,110,99,96,32,109,97,121,32,98,101,32,115,112,101,99,105,102,105,101,100,32,105,102,32,96,102,117,110,99,46,108,101,110,103,116,104,96,92,110,32,32,32,32,32,42,32,105,115,32,110,111,116,32,115,117,102,102,105,99,105,101,110,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,96,95,46,99,117,114,114,121,46,112,108,97,99,101,104,111,108,100,101,114,96,32,118,97,108,117,101,44,32,119,104,105,99,104,32,100,101,102,97,117,108,116,115,32,116,111,32,96,95,96,32,105,110,32,109,111,110,111,108,105,116,104,105,99,32,98,117,105,108,100,115,44,92,110,32,32,32,32,32,42,32,109,97,121,32,98,101,32,117,115,101,100,32,97,115,32,97,32,112,108,97,99,101,104,111,108,100,101,114,32,102,111,114,32,112,114,111,118,105,100,101,100,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,100,111,101,115,110,39,116,32,115,101,116,32,116,104,101,32,92,34,108,101,110,103,116,104,92,34,32,112,114,111,112,101,114,116,121,32,111,102,32,99,117,114,114,105,101,100,32,102,117,110,99,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,114,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,97,114,105,116,121,61,102,117,110,99,46,108,101,110,103,116,104,93,32,84,104,101,32,97,114,105,116,121,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,99,117,114,114,105,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,98,99,32,61,32,102,117,110,99,116,105,111,110,40,97,44,32,98,44,32,99,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,91,97,44,32,98,44,32,99,93,59,92,110,32,32,32,32,32,42,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,99,117,114,114,105,101,100,32,61,32,95,46,99,117,114,114,121,40,97,98,99,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,117,114,114,105,101,100,40,49,41,40,50,41,40,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,117,114,114,105,101,100,40,49,44,32,50,41,40,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,117,114,114,105,101,100,40,49,44,32,50,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,67,117,114,114,105,101,100,32,119,105,116,104,32,112,108,97,99,101,104,111,108,100,101,114,115,46,92,110,32,32,32,32,32,42,32,99,117,114,114,105,101,100,40,49,41,40,95,44,32,51,41,40,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,117,114,114,121,40,102,117,110,99,44,32,97,114,105,116,121,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,97,114,105,116,121,32,61,32,103,117,97,114,100,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,97,114,105,116,121,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,99,114,101,97,116,101,87,114,97,112,40,102,117,110,99,44,32,87,82,65,80,95,67,85,82,82,89,95,70,76,65,71,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,97,114,105,116,121,41,59,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,112,108,97,99,101,104,111,108,100,101,114,32,61,32,99,117,114,114,121,46,112,108,97,99,101,104,111,108,100,101,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,99,117,114,114,121,96,32,101,120,99,101,112,116,32,116,104,97,116,32,97,114,103,117,109,101,110,116,115,32,97,114,101,32,97,112,112,108,105,101,100,32,116,111,32,96,102,117,110,99,96,92,110,32,32,32,32,32,42,32,105,110,32,116,104,101,32,109,97,110,110,101,114,32,111,102,32,96,95,46,112,97,114,116,105,97,108,82,105,103,104,116,96,32,105,110,115,116,101,97,100,32,111,102,32,96,95,46,112,97,114,116,105,97,108,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,96,95,46,99,117,114,114,121,82,105,103,104,116,46,112,108,97,99,101,104,111,108,100,101,114,96,32,118,97,108,117,101,44,32,119,104,105,99,104,32,100,101,102,97,117,108,116,115,32,116,111,32,96,95,96,32,105,110,32,109,111,110,111,108,105,116,104,105,99,92,110,32,32,32,32,32,42,32,98,117,105,108,100,115,44,32,109,97,121,32,98,101,32,117,115,101,100,32,97,115,32,97,32,112,108,97,99,101,104,111,108,100,101,114,32,102,111,114,32,112,114,111,118,105,100,101,100,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,100,111,101,115,110,39,116,32,115,101,116,32,116,104,101,32,92,34,108,101,110,103,116,104,92,34,32,112,114,111,112,101,114,116,121,32,111,102,32,99,117,114,114,105,101,100,32,102,117,110,99,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,114,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,97,114,105,116,121,61,102,117,110,99,46,108,101,110,103,116,104,93,32,84,104,101,32,97,114,105,116,121,32,111,102,32,96,102,117,110,99,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,99,117,114,114,105,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,98,99,32,61,32,102,117,110,99,116,105,111,110,40,97,44,32,98,44,32,99,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,91,97,44,32,98,44,32,99,93,59,92,110,32,32,32,32,32,42,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,99,117,114,114,105,101,100,32,61,32,95,46,99,117,114,114,121,82,105,103,104,116,40,97,98,99,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,117,114,114,105,101,100,40,51,41,40,50,41,40,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,117,114,114,105,101,100,40,50,44,32,51,41,40,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,117,114,114,105,101,100,40,49,44,32,50,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,67,117,114,114,105,101,100,32,119,105,116,104,32,112,108,97,99,101,104,111,108,100,101,114,115,46,92,110,32,32,32,32,32,42,32,99,117,114,114,105,101,100,40,51,41,40,49,44,32,95,41,40,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,117,114,114,121,82,105,103,104,116,40,102,117,110,99,44,32,97,114,105,116,121,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,97,114,105,116,121,32,61,32,103,117,97,114,100,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,97,114,105,116,121,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,99,114,101,97,116,101,87,114,97,112,40,102,117,110,99,44,32,87,82,65,80,95,67,85,82,82,89,95,82,73,71,72,84,95,70,76,65,71,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,97,114,105,116,121,41,59,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,112,108,97,99,101,104,111,108,100,101,114,32,61,32,99,117,114,114,121,82,105,103,104,116,46,112,108,97,99,101,104,111,108,100,101,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,100,101,98,111,117,110,99,101,100,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,100,101,108,97,121,115,32,105,110,118,111,107,105,110,103,32,96,102,117,110,99,96,32,117,110,116,105,108,32,97,102,116,101,114,32,96,119,97,105,116,96,92,110,32,32,32,32,32,42,32,109,105,108,108,105,115,101,99,111,110,100,115,32,104,97,118,101,32,101,108,97,112,115,101,100,32,115,105,110,99,101,32,116,104,101,32,108,97,115,116,32,116,105,109,101,32,116,104,101,32,100,101,98,111,117,110,99,101,100,32,102,117,110,99,116,105,111,110,32,119,97,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,46,32,84,104,101,32,100,101,98,111,117,110,99,101,100,32,102,117,110,99,116,105,111,110,32,99,111,109,101,115,32,119,105,116,104,32,97,32,96,99,97,110,99,101,108,96,32,109,101,116,104,111,100,32,116,111,32,99,97,110,99,101,108,92,110,32,32,32,32,32,42,32,100,101,108,97,121,101,100,32,96,102,117,110,99,96,32,105,110,118,111,99,97,116,105,111,110,115,32,97,110,100,32,97,32,96,102,108,117,115,104,96,32,109,101,116,104,111,100,32,116,111,32,105,109,109,101,100,105,97,116,101,108,121,32,105,110,118,111,107,101,32,116,104,101,109,46,92,110,32,32,32,32,32,42,32,80,114,111,118,105,100,101,32,96,111,112,116,105,111,110,115,96,32,116,111,32,105,110,100,105,99,97,116,101,32,119,104,101,116,104,101,114,32,96,102,117,110,99,96,32,115,104,111,117,108,100,32,98,101,32,105,110,118,111,107,101,100,32,111,110,32,116,104,101,92,110,32,32,32,32,32,42,32,108,101,97,100,105,110,103,32,97,110,100,47,111,114,32,116,114,97,105,108,105,110,103,32,101,100,103,101,32,111,102,32,116,104,101,32,96,119,97,105,116,96,32,116,105,109,101,111,117,116,46,32,84,104,101,32,96,102,117,110,99,96,32,105,115,32,105,110,118,111,107,101,100,92,110,32,32,32,32,32,42,32,119,105,116,104,32,116,104,101,32,108,97,115,116,32,97,114,103,117,109,101,110,116,115,32,112,114,111,118,105,100,101,100,32,116,111,32,116,104,101,32,100,101,98,111,117,110,99,101,100,32,102,117,110,99,116,105,111,110,46,32,83,117,98,115,101,113,117,101,110,116,92,110,32,32,32,32,32,42,32,99,97,108,108,115,32,116,111,32,116,104,101,32,100,101,98,111,117,110,99,101,100,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,32,116,104,101,32,114,101,115,117,108,116,32,111,102,32,116,104,101,32,108,97,115,116,32,96,102,117,110,99,96,92,110,32,32,32,32,32,42,32,105,110,118,111,99,97,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,73,102,32,96,108,101,97,100,105,110,103,96,32,97,110,100,32,96,116,114,97,105,108,105,110,103,96,32,111,112,116,105,111,110,115,32,97,114,101,32,96,116,114,117,101,96,44,32,96,102,117,110,99,96,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,111,110,32,116,104,101,32,116,114,97,105,108,105,110,103,32,101,100,103,101,32,111,102,32,116,104,101,32,116,105,109,101,111,117,116,32,111,110,108,121,32,105,102,32,116,104,101,32,100,101,98,111,117,110,99,101,100,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,109,111,114,101,32,116,104,97,110,32,111,110,99,101,32,100,117,114,105,110,103,32,116,104,101,32,96,119,97,105,116,96,32,116,105,109,101,111,117,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,73,102,32,96,119,97,105,116,96,32,105,115,32,96,48,96,32,97,110,100,32,96,108,101,97,100,105,110,103,96,32,105,115,32,96,102,97,108,115,101,96,44,32,96,102,117,110,99,96,32,105,110,118,111,99,97,116,105,111,110,32,105,115,32,100,101,102,101,114,114,101,100,92,110,32,32,32,32,32,42,32,117,110,116,105,108,32,116,111,32,116,104,101,32,110,101,120,116,32,116,105,99,107,44,32,115,105,109,105,108,97,114,32,116,111,32,96,115,101,116,84,105,109,101,111,117,116,96,32,119,105,116,104,32,97,32,116,105,109,101,111,117,116,32,111,102,32,96,48,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,83,101,101,32,91,68,97,118,105,100,32,67,111,114,98,97,99,104,111,39,115,32,97,114,116,105,99,108,101,93,40,104,116,116,112,115,58,47,47,99,115,115,45,116,114,105,99,107,115,46,99,111,109,47,100,101,98,111,117,110,99,105,110,103,45,116,104,114,111,116,116,108,105,110,103,45,101,120,112,108,97,105,110,101,100,45,101,120,97,109,112,108,101,115,47,41,92,110,32,32,32,32,32,42,32,102,111,114,32,100,101,116,97,105,108,115,32,111,118,101,114,32,116,104,101,32,100,105,102,102,101,114,101,110,99,101,115,32,98,101,116,119,101,101,110,32,96,95,46,100,101,98,111,117,110,99,101,96,32,97,110,100,32,96,95,46,116,104,114,111,116,116,108,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,100,101,98,111,117,110,99,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,119,97,105,116,61,48,93,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,111,32,100,101,108,97,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,112,116,105,111,110,115,61,123,125,93,32,84,104,101,32,111,112,116,105,111,110,115,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,108,101,97,100,105,110,103,61,102,97,108,115,101,93,92,110,32,32,32,32,32,42,32,32,83,112,101,99,105,102,121,32,105,110,118,111,107,105,110,103,32,111,110,32,116,104,101,32,108,101,97,100,105,110,103,32,101,100,103,101,32,111,102,32,116,104,101,32,116,105,109,101,111,117,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,111,112,116,105,111,110,115,46,109,97,120,87,97,105,116,93,92,110,32,32,32,32,32,42,32,32,84,104,101,32,109,97,120,105,109,117,109,32,116,105,109,101,32,96,102,117,110,99,96,32,105,115,32,97,108,108,111,119,101,100,32,116,111,32,98,101,32,100,101,108,97,121,101,100,32,98,101,102,111,114,101,32,105,116,39,115,32,105,110,118,111,107,101,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,116,114,97,105,108,105,110,103,61,116,114,117,101,93,92,110,32,32,32,32,32,42,32,32,83,112,101,99,105,102,121,32,105,110,118,111,107,105,110,103,32,111,110,32,116,104,101,32,116,114,97,105,108,105,110,103,32,101,100,103,101,32,111,102,32,116,104,101,32,116,105,109,101,111,117,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,100,101,98,111,117,110,99,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,65,118,111,105,100,32,99,111,115,116,108,121,32,99,97,108,99,117,108,97,116,105,111,110,115,32,119,104,105,108,101,32,116,104,101,32,119,105,110,100,111,119,32,115,105,122,101,32,105,115,32,105,110,32,102,108,117,120,46,92,110,32,32,32,32,32,42,32,106,81,117,101,114,121,40,119,105,110,100,111,119,41,46,111,110,40,39,114,101,115,105,122,101,39,44,32,95,46,100,101,98,111,117,110,99,101,40,99,97,108,99,117,108,97,116,101,76,97,121,111,117,116,44,32,49,53,48,41,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,73,110,118,111,107,101,32,96,115,101,110,100,77,97,105,108,96,32,119,104,101,110,32,99,108,105,99,107,101,100,44,32,100,101,98,111,117,110,99,105,110,103,32,115,117,98,115,101,113,117,101,110,116,32,99,97,108,108,115,46,92,110,32,32,32,32,32,42,32,106,81,117,101,114,121,40,101,108,101,109,101,110,116,41,46,111,110,40,39,99,108,105,99,107,39,44,32,95,46,100,101,98,111,117,110,99,101,40,115,101,110,100,77,97,105,108,44,32,51,48,48,44,32,123,92,110,32,32,32,32,32,42,32,32,32,39,108,101,97,100,105,110,103,39,58,32,116,114,117,101,44,92,110,32,32,32,32,32,42,32,32,32,39,116,114,97,105,108,105,110,103,39,58,32,102,97,108,115,101,92,110,32,32,32,32,32,42,32,125,41,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,69,110,115,117,114,101,32,96,98,97,116,99,104,76,111,103,96,32,105,115,32,105,110,118,111,107,101,100,32,111,110,99,101,32,97,102,116,101,114,32,49,32,115,101,99,111,110,100,32,111,102,32,100,101,98,111,117,110,99,101,100,32,99,97,108,108,115,46,92,110,32,32,32,32,32,42,32,118,97,114,32,100,101,98,111,117,110,99,101,100,32,61,32,95,46,100,101,98,111,117,110,99,101,40,98,97,116,99,104,76,111,103,44,32,50,53,48,44,32,123,32,39,109,97,120,87,97,105,116,39,58,32,49,48,48,48,32,125,41,59,92,110,32,32,32,32,32,42,32,118,97,114,32,115,111,117,114,99,101,32,61,32,110,101,119,32,69,118,101,110,116,83,111,117,114,99,101,40,39,47,115,116,114,101,97,109,39,41,59,92,110,32,32,32,32,32,42,32,106,81,117,101,114,121,40,115,111,117,114,99,101,41,46,111,110,40,39,109,101,115,115,97,103,101,39,44,32,100,101,98,111,117,110,99,101,100,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,67,97,110,99,101,108,32,116,104,101,32,116,114,97,105,108,105,110,103,32,100,101,98,111,117,110,99,101,100,32,105,110,118,111,99,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,106,81,117,101,114,121,40,119,105,110,100,111,119,41,46,111,110,40,39,112,111,112,115,116,97,116,101,39,44,32,100,101,98,111,117,110,99,101,100,46,99,97,110,99,101,108,41,59,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,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,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,97,115,116,65,114,103,115,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,115,116,84,104,105,115,44,92,110,32,32,32,32,32,32,32,32,32,32,109,97,120,87,97,105,116,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,44,92,110,32,32,32,32,32,32,32,32,32,32,116,105,109,101,114,73,100,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,115,116,67,97,108,108,84,105,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,108,97,115,116,73,110,118,111,107,101,84,105,109,101,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,97,100,105,110,103,32,61,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,109,97,120,105,110,103,32,61,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,114,97,105,108,105,110,103,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,102,117,110,99,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,70,85,78,67,95,69,82,82,79,82,95,84,69,88,84,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,119,97,105,116,32,61,32,116,111,78,117,109,98,101,114,40,119,97,105,116,41,32,124,124,32,48,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,111,112,116,105,111,110,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,108,101,97,100,105,110,103,32,61,32,33,33,111,112,116,105,111,110,115,46,108,101,97,100,105,110,103,59,92,110,32,32,32,32,32,32,32,32,109,97,120,105,110,103,32,61,32,39,109,97,120,87,97,105,116,39,32,105,110,32,111,112,116,105,111,110,115,59,92,110,32,32,32,32,32,32,32,32,109,97,120,87,97,105,116,32,61,32,109,97,120,105,110,103,32,63,32,110,97,116,105,118,101,77,97,120,40,116,111,78,117,109,98,101,114,40,111,112,116,105,111,110,115,46,109,97,120,87,97,105,116,41,32,124,124,32,48,44,32,119,97,105,116,41,32,58,32,109,97,120,87,97,105,116,59,92,110,32,32,32,32,32,32,32,32,116,114,97,105,108,105,110,103,32,61,32,39,116,114,97,105,108,105,110,103,39,32,105,110,32,111,112,116,105,111,110,115,32,63,32,33,33,111,112,116,105,111,110,115,46,116,114,97,105,108,105,110,103,32,58,32,116,114,97,105,108,105,110,103,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,70,117,110,99,40,116,105,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,108,97,115,116,65,114,103,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,65,114,103,32,61,32,108,97,115,116,84,104,105,115,59,92,110,92,110,32,32,32,32,32,32,32,32,108,97,115,116,65,114,103,115,32,61,32,108,97,115,116,84,104,105,115,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,108,97,115,116,73,110,118,111,107,101,84,105,109,101,32,61,32,116,105,109,101,59,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,102,117,110,99,46,97,112,112,108,121,40,116,104,105,115,65,114,103,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,108,101,97,100,105,110,103,69,100,103,101,40,116,105,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,115,101,116,32,97,110,121,32,96,109,97,120,87,97,105,116,96,32,116,105,109,101,114,46,92,110,32,32,32,32,32,32,32,32,108,97,115,116,73,110,118,111,107,101,84,105,109,101,32,61,32,116,105,109,101,59,92,110,32,32,32,32,32,32,32,32,47,47,32,83,116,97,114,116,32,116,104,101,32,116,105,109,101,114,32,102,111,114,32,116,104,101,32,116,114,97,105,108,105,110,103,32,101,100,103,101,46,92,110,32,32,32,32,32,32,32,32,116,105,109,101,114,73,100,32,61,32,115,101,116,84,105,109,101,111,117,116,40,116,105,109,101,114,69,120,112,105,114,101,100,44,32,119,97,105,116,41,59,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,118,111,107,101,32,116,104,101,32,108,101,97,100,105,110,103,32,101,100,103,101,46,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,101,97,100,105,110,103,32,63,32,105,110,118,111,107,101,70,117,110,99,40,116,105,109,101,41,32,58,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,109,97,105,110,105,110,103,87,97,105,116,40,116,105,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,105,109,101,83,105,110,99,101,76,97,115,116,67,97,108,108,32,61,32,116,105,109,101,32,45,32,108,97,115,116,67,97,108,108,84,105,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,105,109,101,83,105,110,99,101,76,97,115,116,73,110,118,111,107,101,32,61,32,116,105,109,101,32,45,32,108,97,115,116,73,110,118,111,107,101,84,105,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,105,109,101,87,97,105,116,105,110,103,32,61,32,119,97,105,116,32,45,32,116,105,109,101,83,105,110,99,101,76,97,115,116,67,97,108,108,59,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,120,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,63,32,110,97,116,105,118,101,77,105,110,40,116,105,109,101,87,97,105,116,105,110,103,44,32,109,97,120,87,97,105,116,32,45,32,116,105,109,101,83,105,110,99,101,76,97,115,116,73,110,118,111,107,101,41,92,110,32,32,32,32,32,32,32,32,32,32,58,32,116,105,109,101,87,97,105,116,105,110,103,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,73,110,118,111,107,101,40,116,105,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,105,109,101,83,105,110,99,101,76,97,115,116,67,97,108,108,32,61,32,116,105,109,101,32,45,32,108,97,115,116,67,97,108,108,84,105,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,105,109,101,83,105,110,99,101,76,97,115,116,73,110,118,111,107,101,32,61,32,116,105,109,101,32,45,32,108,97,115,116,73,110,118,111,107,101,84,105,109,101,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,69,105,116,104,101,114,32,116,104,105,115,32,105,115,32,116,104,101,32,102,105,114,115,116,32,99,97,108,108,44,32,97,99,116,105,118,105,116,121,32,104,97,115,32,115,116,111,112,112,101,100,32,97,110,100,32,119,101,39,114,101,32,97,116,32,116,104,101,92,110,32,32,32,32,32,32,32,32,47,47,32,116,114,97,105,108,105,110,103,32,101,100,103,101,44,32,116,104,101,32,115,121,115,116,101,109,32,116,105,109,101,32,104,97,115,32,103,111,110,101,32,98,97,99,107,119,97,114,100,115,32,97,110,100,32,119,101,39,114,101,32,116,114,101,97,116,105,110,103,92,110,32,32,32,32,32,32,32,32,47,47,32,105,116,32,97,115,32,116,104,101,32,116,114,97,105,108,105,110,103,32,101,100,103,101,44,32,111,114,32,119,101,39,118,101,32,104,105,116,32,116,104,101,32,96,109,97,120,87,97,105,116,96,32,108,105,109,105,116,46,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,108,97,115,116,67,97,108,108,84,105,109,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,32,40,116,105,109,101,83,105,110,99,101,76,97,115,116,67,97,108,108,32,62,61,32,119,97,105,116,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,40,116,105,109,101,83,105,110,99,101,76,97,115,116,67,97,108,108,32,60,32,48,41,32,124,124,32,40,109,97,120,105,110,103,32,38,38,32,116,105,109,101,83,105,110,99,101,76,97,115,116,73,110,118,111,107,101,32,62,61,32,109,97,120,87,97,105,116,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,116,105,109,101,114,69,120,112,105,114,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,105,109,101,32,61,32,110,111,119,40,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,104,111,117,108,100,73,110,118,111,107,101,40,116,105,109,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,105,108,105,110,103,69,100,103,101,40,116,105,109,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,115,116,97,114,116,32,116,104,101,32,116,105,109,101,114,46,92,110,32,32,32,32,32,32,32,32,116,105,109,101,114,73,100,32,61,32,115,101,116,84,105,109,101,111,117,116,40,116,105,109,101,114,69,120,112,105,114,101,100,44,32,114,101,109,97,105,110,105,110,103,87,97,105,116,40,116,105,109,101,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,116,114,97,105,108,105,110,103,69,100,103,101,40,116,105,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,105,109,101,114,73,100,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,79,110,108,121,32,105,110,118,111,107,101,32,105,102,32,119,101,32,104,97,118,101,32,96,108,97,115,116,65,114,103,115,96,32,119,104,105,99,104,32,109,101,97,110,115,32,96,102,117,110,99,96,32,104,97,115,32,98,101,101,110,92,110,32,32,32,32,32,32,32,32,47,47,32,100,101,98,111,117,110,99,101,100,32,97,116,32,108,101,97,115,116,32,111,110,99,101,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,114,97,105,108,105,110,103,32,38,38,32,108,97,115,116,65,114,103,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,118,111,107,101,70,117,110,99,40,116,105,109,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,108,97,115,116,65,114,103,115,32,61,32,108,97,115,116,84,104,105,115,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,97,110,99,101,108,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,105,109,101,114,73,100,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,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,114,73,100,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,108,97,115,116,73,110,118,111,107,101,84,105,109,101,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,108,97,115,116,65,114,103,115,32,61,32,108,97,115,116,67,97,108,108,84,105,109,101,32,61,32,108,97,115,116,84,104,105,115,32,61,32,116,105,109,101,114,73,100,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,102,108,117,115,104,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,105,109,101,114,73,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,114,101,115,117,108,116,32,58,32,116,114,97,105,108,105,110,103,69,100,103,101,40,110,111,119,40,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,100,101,98,111,117,110,99,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,105,109,101,32,61,32,110,111,119,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,73,110,118,111,107,105,110,103,32,61,32,115,104,111,117,108,100,73,110,118,111,107,101,40,116,105,109,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,108,97,115,116,65,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,59,92,110,32,32,32,32,32,32,32,32,108,97,115,116,84,104,105,115,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,108,97,115,116,67,97,108,108,84,105,109,101,32,61,32,116,105,109,101,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,73,110,118,111,107,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,105,109,101,114,73,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,101,97,100,105,110,103,69,100,103,101,40,108,97,115,116,67,97,108,108,84,105,109,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,97,120,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,105,110,118,111,99,97,116,105,111,110,115,32,105,110,32,97,32,116,105,103,104,116,32,108,111,111,112,46,92,110,32,32,32,32,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,114,73,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,105,109,101,114,73,100,32,61,32,115,101,116,84,105,109,101,111,117,116,40,116,105,109,101,114,69,120,112,105,114,101,100,44,32,119,97,105,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,118,111,107,101,70,117,110,99,40,108,97,115,116,67,97,108,108,84,105,109,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,105,109,101,114,73,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,105,109,101,114,73,100,32,61,32,115,101,116,84,105,109,101,111,117,116,40,116,105,109,101,114,69,120,112,105,114,101,100,44,32,119,97,105,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,100,101,98,111,117,110,99,101,100,46,99,97,110,99,101,108,32,61,32,99,97,110,99,101,108,59,92,110,32,32,32,32,32,32,100,101,98,111,117,110,99,101,100,46,102,108,117,115,104,32,61,32,102,108,117,115,104,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,98,111,117,110,99,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,68,101,102,101,114,115,32,105,110,118,111,107,105,110,103,32,116,104,101,32,96,102,117,110,99,96,32,117,110,116,105,108,32,116,104,101,32,99,117,114,114,101,110,116,32,99,97,108,108,32,115,116,97,99,107,32,104,97,115,32,99,108,101,97,114,101,100,46,32,65,110,121,92,110,32,32,32,32,32,42,32,97,100,100,105,116,105,111,110,97,108,32,97,114,103,117,109,101,110,116,115,32,97,114,101,32,112,114,111,118,105,100,101,100,32,116,111,32,96,102,117,110,99,96,32,119,104,101,110,32,105,116,39,115,32,105,110,118,111,107,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,100,101,102,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,42,125,32,91,97,114,103,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,105,110,118,111,107,101,32,96,102,117,110,99,96,32,119,105,116,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,116,105,109,101,114,32,105,100,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,101,102,101,114,40,102,117,110,99,116,105,111,110,40,116,101,120,116,41,32,123,92,110,32,32,32,32,32,42,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,116,101,120,116,41,59,92,110,32,32,32,32,32,42,32,125,44,32,39,100,101,102,101,114,114,101,100,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,76,111,103,115,32,39,100,101,102,101,114,114,101,100,39,32,97,102,116,101,114,32,111,110,101,32,109,105,108,108,105,115,101,99,111,110,100,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,100,101,102,101,114,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,102,117,110,99,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,68,101,108,97,121,40,102,117,110,99,44,32,49,44,32,97,114,103,115,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,73,110,118,111,107,101,115,32,96,102,117,110,99,96,32,97,102,116,101,114,32,96,119,97,105,116,96,32,109,105,108,108,105,115,101,99,111,110,100,115,46,32,65,110,121,32,97,100,100,105,116,105,111,110,97,108,32,97,114,103,117,109,101,110,116,115,32,97,114,101,92,110,32,32,32,32,32,42,32,112,114,111,118,105,100,101,100,32,116,111,32,96,102,117,110,99,96,32,119,104,101,110,32,105,116,39,115,32,105,110,118,111,107,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,100,101,108,97,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,119,97,105,116,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,111,32,100,101,108,97,121,32,105,110,118,111,99,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,42,125,32,91,97,114,103,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,105,110,118,111,107,101,32,96,102,117,110,99,96,32,119,105,116,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,116,105,109,101,114,32,105,100,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,101,108,97,121,40,102,117,110,99,116,105,111,110,40,116,101,120,116,41,32,123,92,110,32,32,32,32,32,42,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,116,101,120,116,41,59,92,110,32,32,32,32,32,42,32,125,44,32,49,48,48,48,44,32,39,108,97,116,101,114,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,76,111,103,115,32,39,108,97,116,101,114,39,32,97,102,116,101,114,32,111,110,101,32,115,101,99,111,110,100,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,100,101,108,97,121,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,102,117,110,99,44,32,119,97,105,116,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,68,101,108,97,121,40,102,117,110,99,44,32,116,111,78,117,109,98,101,114,40,119,97,105,116,41,32,124,124,32,48,44,32,97,114,103,115,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,32,96,102,117,110,99,96,32,119,105,116,104,32,97,114,103,117,109,101,110,116,115,32,114,101,118,101,114,115,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,102,108,105,112,32,97,114,103,117,109,101,110,116,115,32,102,111,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,108,105,112,112,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,102,108,105,112,112,101,100,32,61,32,95,46,102,108,105,112,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,95,46,116,111,65,114,114,97,121,40,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,108,105,112,112,101,100,40,39,97,39,44,32,39,98,39,44,32,39,99,39,44,32,39,100,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,100,39,44,32,39,99,39,44,32,39,98,39,44,32,39,97,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,108,105,112,40,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,87,114,97,112,40,102,117,110,99,44,32,87,82,65,80,95,70,76,73,80,95,70,76,65,71,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,109,101,109,111,105,122,101,115,32,116,104,101,32,114,101,115,117,108,116,32,111,102,32,96,102,117,110,99,96,46,32,73,102,32,96,114,101,115,111,108,118,101,114,96,32,105,115,92,110,32,32,32,32,32,42,32,112,114,111,118,105,100,101,100,44,32,105,116,32,100,101,116,101,114,109,105,110,101,115,32,116,104,101,32,99,97,99,104,101,32,107,101,121,32,102,111,114,32,115,116,111,114,105,110,103,32,116,104,101,32,114,101,115,117,108,116,32,98,97,115,101,100,32,111,110,32,116,104,101,92,110,32,32,32,32,32,42,32,97,114,103,117,109,101,110,116,115,32,112,114,111,118,105,100,101,100,32,116,111,32,116,104,101,32,109,101,109,111,105,122,101,100,32,102,117,110,99,116,105,111,110,46,32,66,121,32,100,101,102,97,117,108,116,44,32,116,104,101,32,102,105,114,115,116,32,97,114,103,117,109,101,110,116,92,110,32,32,32,32,32,42,32,112,114,111,118,105,100,101,100,32,116,111,32,116,104,101,32,109,101,109,111,105,122,101,100,32,102,117,110,99,116,105,111,110,32,105,115,32,117,115,101,100,32,97,115,32,116,104,101,32,109,97,112,32,99,97,99,104,101,32,107,101,121,46,32,84,104,101,32,96,102,117,110,99,96,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,111,102,32,116,104,101,32,109,101,109,111,105,122,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,101,32,99,97,99,104,101,32,105,115,32,101,120,112,111,115,101,100,32,97,115,32,116,104,101,32,96,99,97,99,104,101,96,32,112,114,111,112,101,114,116,121,32,111,110,32,116,104,101,32,109,101,109,111,105,122,101,100,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,46,32,73,116,115,32,99,114,101,97,116,105,111,110,32,109,97,121,32,98,101,32,99,117,115,116,111,109,105,122,101,100,32,98,121,32,114,101,112,108,97,99,105,110,103,32,116,104,101,32,96,95,46,109,101,109,111,105,122,101,46,67,97,99,104,101,96,92,110,32,32,32,32,32,42,32,99,111,110,115,116,114,117,99,116,111,114,32,119,105,116,104,32,111,110,101,32,119,104,111,115,101,32,105,110,115,116,97,110,99,101,115,32,105,109,112,108,101,109,101,110,116,32,116,104,101,92,110,32,32,32,32,32,42,32,91,96,77,97,112,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,112,114,111,112,101,114,116,105,101,115,45,111,102,45,116,104,101,45,109,97,112,45,112,114,111,116,111,116,121,112,101,45,111,98,106,101,99,116,41,92,110,32,32,32,32,32,42,32,109,101,116,104,111,100,32,105,110,116,101,114,102,97,99,101,32,111,102,32,96,99,108,101,97,114,96,44,32,96,100,101,108,101,116,101,96,44,32,96,103,101,116,96,44,32,96,104,97,115,96,44,32,97,110,100,32,96,115,101,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,104,97,118,101,32,105,116,115,32,111,117,116,112,117,116,32,109,101,109,111,105,122,101,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,114,101,115,111,108,118,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,114,101,115,111,108,118,101,32,116,104,101,32,99,97,99,104,101,32,107,101,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,109,101,109,111,105,122,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,59,92,110,32,32,32,32,32,42,32,118,97,114,32,111,116,104,101,114,32,61,32,123,32,39,99,39,58,32,51,44,32,39,100,39,58,32,52,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,118,97,108,117,101,115,32,61,32,95,46,109,101,109,111,105,122,101,40,95,46,118,97,108,117,101,115,41,59,92,110,32,32,32,32,32,42,32,118,97,108,117,101,115,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,108,117,101,115,40,111,116,104,101,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,51,44,32,52,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,111,98,106,101,99,116,46,97,32,61,32,50,59,92,110,32,32,32,32,32,42,32,118,97,108,117,101,115,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,77,111,100,105,102,121,32,116,104,101,32,114,101,115,117,108,116,32,99,97,99,104,101,46,92,110,32,32,32,32,32,42,32,118,97,108,117,101,115,46,99,97,99,104,101,46,115,101,116,40,111,98,106,101,99,116,44,32,91,39,97,39,44,32,39,98,39,93,41,59,92,110,32,32,32,32,32,42,32,118,97,108,117,101,115,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,97,39,44,32,39,98,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,82,101,112,108,97,99,101,32,96,95,46,109,101,109,111,105,122,101,46,67,97,99,104,101,96,46,92,110,32,32,32,32,32,42,32,95,46,109,101,109,111,105,122,101,46,67,97,99,104,101,32,61,32,87,101,97,107,77,97,112,59,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,101,109,111,105,122,101,40,102,117,110,99,44,32,114,101,115,111,108,118,101,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,102,117,110,99,32,33,61,32,39,102,117,110,99,116,105,111,110,39,32,124,124,32,40,114,101,115,111,108,118,101,114,32,33,61,32,110,117,108,108,32,38,38,32,116,121,112,101,111,102,32,114,101,115,111,108,118,101,114,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,70,85,78,67,95,69,82,82,79,82,95,84,69,88,84,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,109,101,109,111,105,122,101,100,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,32,61,32,114,101,115,111,108,118,101,114,32,63,32,114,101,115,111,108,118,101,114,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,32,58,32,97,114,103,115,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,99,104,101,32,61,32,109,101,109,111,105,122,101,100,46,99,97,99,104,101,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,97,99,104,101,46,104,97,115,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,99,104,101,46,103,101,116,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,102,117,110,99,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,32,32,109,101,109,111,105,122,101,100,46,99,97,99,104,101,32,61,32,99,97,99,104,101,46,115,101,116,40,107,101,121,44,32,114,101,115,117,108,116,41,32,124,124,32,99,97,99,104,101,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,109,101,109,111,105,122,101,100,46,99,97,99,104,101,32,61,32,110,101,119,32,40,109,101,109,111,105,122,101,46,67,97,99,104,101,32,124,124,32,77,97,112,67,97,99,104,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,101,109,111,105,122,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,69,120,112,111,115,101,32,96,77,97,112,67,97,99,104,101,96,46,92,110,32,32,32,32,109,101,109,111,105,122,101,46,67,97,99,104,101,32,61,32,77,97,112,67,97,99,104,101,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,110,101,103,97,116,101,115,32,116,104,101,32,114,101,115,117,108,116,32,111,102,32,116,104,101,32,112,114,101,100,105,99,97,116,101,32,96,102,117,110,99,96,46,32,84,104,101,92,110,32,32,32,32,32,42,32,96,102,117,110,99,96,32,112,114,101,100,105,99,97,116,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,97,110,100,32,97,114,103,117,109,101,110,116,115,32,111,102,32,116,104,101,92,110,32,32,32,32,32,42,32,99,114,101,97,116,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,112,114,101,100,105,99,97,116,101,32,84,104,101,32,112,114,101,100,105,99,97,116,101,32,116,111,32,110,101,103,97,116,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,110,101,103,97,116,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,105,115,69,118,101,110,40,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,110,32,37,32,50,32,61,61,32,48,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,105,108,116,101,114,40,91,49,44,32,50,44,32,51,44,32,52,44,32,53,44,32,54,93,44,32,95,46,110,101,103,97,116,101,40,105,115,69,118,101,110,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,51,44,32,53,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,110,101,103,97,116,101,40,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,112,114,101,100,105,99,97,116,101,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,70,85,78,67,95,69,82,82,79,82,95,84,69,88,84,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,59,92,110,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,97,114,103,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,48,58,32,114,101,116,117,114,110,32,33,112,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,49,58,32,114,101,116,117,114,110,32,33,112,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,97,114,103,115,91,48,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,50,58,32,114,101,116,117,114,110,32,33,112,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,51,58,32,114,101,116,117,114,110,32,33,112,114,101,100,105,99,97,116,101,46,99,97,108,108,40,116,104,105,115,44,32,97,114,103,115,91,48,93,44,32,97,114,103,115,91,49,93,44,32,97,114,103,115,91,50,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,112,114,101,100,105,99,97,116,101,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,115,32,114,101,115,116,114,105,99,116,101,100,32,116,111,32,105,110,118,111,107,105,110,103,32,96,102,117,110,99,96,32,111,110,99,101,46,32,82,101,112,101,97,116,32,99,97,108,108,115,92,110,32,32,32,32,32,42,32,116,111,32,116,104,101,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32,102,105,114,115,116,32,105,110,118,111,99,97,116,105,111,110,46,32,84,104,101,32,96,102,117,110,99,96,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,97,110,100,32,97,114,103,117,109,101,110,116,115,32,111,102,32,116,104,101,32,99,114,101,97,116,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,114,101,115,116,114,105,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,114,101,115,116,114,105,99,116,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,105,110,105,116,105,97,108,105,122,101,32,61,32,95,46,111,110,99,101,40,99,114,101,97,116,101,65,112,112,108,105,99,97,116,105,111,110,41,59,92,110,32,32,32,32,32,42,32,105,110,105,116,105,97,108,105,122,101,40,41,59,92,110,32,32,32,32,32,42,32,105,110,105,116,105,97,108,105,122,101,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,96,99,114,101,97,116,101,65,112,112,108,105,99,97,116,105,111,110,96,32,105,115,32,105,110,118,111,107,101,100,32,111,110,99,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,111,110,99,101,40,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,101,102,111,114,101,40,50,44,32,102,117,110,99,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,32,96,102,117,110,99,96,32,119,105,116,104,32,105,116,115,32,97,114,103,117,109,101,110,116,115,32,116,114,97,110,115,102,111,114,109,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,119,114,97,112,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,40,70,117,110,99,116,105,111,110,124,70,117,110,99,116,105,111,110,91,93,41,125,32,91,116,114,97,110,115,102,111,114,109,115,61,91,95,46,105,100,101,110,116,105,116,121,93,93,92,110,32,32,32,32,32,42,32,32,84,104,101,32,97,114,103,117,109,101,110,116,32,116,114,97,110,115,102,111,114,109,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,100,111,117,98,108,101,100,40,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,110,32,42,32,50,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,115,113,117,97,114,101,40,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,110,32,42,32,110,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,102,117,110,99,32,61,32,95,46,111,118,101,114,65,114,103,115,40,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,91,120,44,32,121,93,59,92,110,32,32,32,32,32,42,32,125,44,32,91,115,113,117,97,114,101,44,32,100,111,117,98,108,101,100,93,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,40,57,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,56,49,44,32,54,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,40,49,48,44,32,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,48,48,44,32,49,48,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,111,118,101,114,65,114,103,115,32,61,32,99,97,115,116,82,101,115,116,40,102,117,110,99,116,105,111,110,40,102,117,110,99,44,32,116,114,97,110,115,102,111,114,109,115,41,32,123,92,110,32,32,32,32,32,32,116,114,97,110,115,102,111,114,109,115,32,61,32,40,116,114,97,110,115,102,111,114,109,115,46,108,101,110,103,116,104,32,61,61,32,49,32,38,38,32,105,115,65,114,114,97,121,40,116,114,97,110,115,102,111,114,109,115,91,48,93,41,41,92,110,32,32,32,32,32,32,32,32,63,32,97,114,114,97,121,77,97,112,40,116,114,97,110,115,102,111,114,109,115,91,48,93,44,32,98,97,115,101,85,110,97,114,121,40,103,101,116,73,116,101,114,97,116,101,101,40,41,41,41,92,110,32,32,32,32,32,32,32,32,58,32,97,114,114,97,121,77,97,112,40,98,97,115,101,70,108,97,116,116,101,110,40,116,114,97,110,115,102,111,114,109,115,44,32,49,41,44,32,98,97,115,101,85,110,97,114,121,40,103,101,116,73,116,101,114,97,116,101,101,40,41,41,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,115,76,101,110,103,116,104,32,61,32,116,114,97,110,115,102,111,114,109,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,110,97,116,105,118,101,77,105,110,40,97,114,103,115,46,108,101,110,103,116,104,44,32,102,117,110,99,115,76,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,103,115,91,105,110,100,101,120,93,32,61,32,116,114,97,110,115,102,111,114,109,115,91,105,110,100,101,120,93,46,99,97,108,108,40,116,104,105,115,44,32,97,114,103,115,91,105,110,100,101,120,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,112,112,108,121,40,102,117,110,99,44,32,116,104,105,115,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,32,96,102,117,110,99,96,32,119,105,116,104,32,96,112,97,114,116,105,97,108,115,96,32,112,114,101,112,101,110,100,101,100,32,116,111,32,116,104,101,92,110,32,32,32,32,32,42,32,97,114,103,117,109,101,110,116,115,32,105,116,32,114,101,99,101,105,118,101,115,46,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,98,105,110,100,96,32,101,120,99,101,112,116,32,105,116,32,100,111,101,115,32,42,42,110,111,116,42,42,92,110,32,32,32,32,32,42,32,97,108,116,101,114,32,116,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,96,95,46,112,97,114,116,105,97,108,46,112,108,97,99,101,104,111,108,100,101,114,96,32,118,97,108,117,101,44,32,119,104,105,99,104,32,100,101,102,97,117,108,116,115,32,116,111,32,96,95,96,32,105,110,32,109,111,110,111,108,105,116,104,105,99,92,110,32,32,32,32,32,42,32,98,117,105,108,100,115,44,32,109,97,121,32,98,101,32,117,115,101,100,32,97,115,32,97,32,112,108,97,99,101,104,111,108,100,101,114,32,102,111,114,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,100,111,101,115,110,39,116,32,115,101,116,32,116,104,101,32,92,34,108,101,110,103,116,104,92,34,32,112,114,111,112,101,114,116,121,32,111,102,32,112,97,114,116,105,97,108,108,121,92,110,32,32,32,32,32,42,32,97,112,112,108,105,101,100,32,102,117,110,99,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,50,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,121,32,97,114,103,117,109,101,110,116,115,32,116,111,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,42,125,32,91,112,97,114,116,105,97,108,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,98,101,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,103,114,101,101,116,40,103,114,101,101,116,105,110,103,44,32,110,97,109,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,103,114,101,101,116,105,110,103,32,43,32,39,32,39,32,43,32,110,97,109,101,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,115,97,121,72,101,108,108,111,84,111,32,61,32,95,46,112,97,114,116,105,97,108,40,103,114,101,101,116,44,32,39,104,101,108,108,111,39,41,59,92,110,32,32,32,32,32,42,32,115,97,121,72,101,108,108,111,84,111,40,39,102,114,101,100,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,101,108,108,111,32,102,114,101,100,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,80,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,32,119,105,116,104,32,112,108,97,99,101,104,111,108,100,101,114,115,46,92,110,32,32,32,32,32,42,32,118,97,114,32,103,114,101,101,116,70,114,101,100,32,61,32,95,46,112,97,114,116,105,97,108,40,103,114,101,101,116,44,32,95,44,32,39,102,114,101,100,39,41,59,92,110,32,32,32,32,32,42,32,103,114,101,101,116,70,114,101,100,40,39,104,105,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,105,32,102,114,101,100,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,112,97,114,116,105,97,108,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,102,117,110,99,44,32,112,97,114,116,105,97,108,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,111,108,100,101,114,115,32,61,32,114,101,112,108,97,99,101,72,111,108,100,101,114,115,40,112,97,114,116,105,97,108,115,44,32,103,101,116,72,111,108,100,101,114,40,112,97,114,116,105,97,108,41,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,87,114,97,112,40,102,117,110,99,44,32,87,82,65,80,95,80,65,82,84,73,65,76,95,70,76,65,71,44,32,117,110,100,101,102,105,110,101,100,44,32,112,97,114,116,105,97,108,115,44,32,104,111,108,100,101,114,115,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,112,97,114,116,105,97,108,96,32,101,120,99,101,112,116,32,116,104,97,116,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,32,97,114,103,117,109,101,110,116,115,92,110,32,32,32,32,32,42,32,97,114,101,32,97,112,112,101,110,100,101,100,32,116,111,32,116,104,101,32,97,114,103,117,109,101,110,116,115,32,105,116,32,114,101,99,101,105,118,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,96,95,46,112,97,114,116,105,97,108,82,105,103,104,116,46,112,108,97,99,101,104,111,108,100,101,114,96,32,118,97,108,117,101,44,32,119,104,105,99,104,32,100,101,102,97,117,108,116,115,32,116,111,32,96,95,96,32,105,110,32,109,111,110,111,108,105,116,104,105,99,92,110,32,32,32,32,32,42,32,98,117,105,108,100,115,44,32,109,97,121,32,98,101,32,117,115,101,100,32,97,115,32,97,32,112,108,97,99,101,104,111,108,100,101,114,32,102,111,114,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,100,111,101,115,110,39,116,32,115,101,116,32,116,104,101,32,92,34,108,101,110,103,116,104,92,34,32,112,114,111,112,101,114,116,121,32,111,102,32,112,97,114,116,105,97,108,108,121,92,110,32,32,32,32,32,42,32,97,112,112,108,105,101,100,32,102,117,110,99,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,49,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,121,32,97,114,103,117,109,101,110,116,115,32,116,111,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,42,125,32,91,112,97,114,116,105,97,108,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,98,101,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,103,114,101,101,116,40,103,114,101,101,116,105,110,103,44,32,110,97,109,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,103,114,101,101,116,105,110,103,32,43,32,39,32,39,32,43,32,110,97,109,101,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,103,114,101,101,116,70,114,101,100,32,61,32,95,46,112,97,114,116,105,97,108,82,105,103,104,116,40,103,114,101,101,116,44,32,39,102,114,101,100,39,41,59,92,110,32,32,32,32,32,42,32,103,114,101,101,116,70,114,101,100,40,39,104,105,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,105,32,102,114,101,100,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,80,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,32,119,105,116,104,32,112,108,97,99,101,104,111,108,100,101,114,115,46,92,110,32,32,32,32,32,42,32,118,97,114,32,115,97,121,72,101,108,108,111,84,111,32,61,32,95,46,112,97,114,116,105,97,108,82,105,103,104,116,40,103,114,101,101,116,44,32,39,104,101,108,108,111,39,44,32,95,41,59,92,110,32,32,32,32,32,42,32,115,97,121,72,101,108,108,111,84,111,40,39,102,114,101,100,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,101,108,108,111,32,102,114,101,100,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,112,97,114,116,105,97,108,82,105,103,104,116,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,102,117,110,99,44,32,112,97,114,116,105,97,108,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,111,108,100,101,114,115,32,61,32,114,101,112,108,97,99,101,72,111,108,100,101,114,115,40,112,97,114,116,105,97,108,115,44,32,103,101,116,72,111,108,100,101,114,40,112,97,114,116,105,97,108,82,105,103,104,116,41,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,87,114,97,112,40,102,117,110,99,44,32,87,82,65,80,95,80,65,82,84,73,65,76,95,82,73,71,72,84,95,70,76,65,71,44,32,117,110,100,101,102,105,110,101,100,44,32,112,97,114,116,105,97,108,115,44,32,104,111,108,100,101,114,115,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,32,96,102,117,110,99,96,32,119,105,116,104,32,97,114,103,117,109,101,110,116,115,32,97,114,114,97,110,103,101,100,32,97,99,99,111,114,100,105,110,103,92,110,32,32,32,32,32,42,32,116,111,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,96,105,110,100,101,120,101,115,96,32,119,104,101,114,101,32,116,104,101,32,97,114,103,117,109,101,110,116,32,118,97,108,117,101,32,97,116,32,116,104,101,32,102,105,114,115,116,32,105,110,100,101,120,32,105,115,92,110,32,32,32,32,32,42,32,112,114,111,118,105,100,101,100,32,97,115,32,116,104,101,32,102,105,114,115,116,32,97,114,103,117,109,101,110,116,44,32,116,104,101,32,97,114,103,117,109,101,110,116,32,118,97,108,117,101,32,97,116,32,116,104,101,32,115,101,99,111,110,100,32,105,110,100,101,120,32,105,115,92,110,32,32,32,32,32,42,32,112,114,111,118,105,100,101,100,32,97,115,32,116,104,101,32,115,101,99,111,110,100,32,97,114,103,117,109,101,110,116,44,32,97,110,100,32,115,111,32,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,114,101,97,114,114,97,110,103,101,32,97,114,103,117,109,101,110,116,115,32,102,111,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,40,110,117,109,98,101,114,124,110,117,109,98,101,114,91,93,41,125,32,105,110,100,101,120,101,115,32,84,104,101,32,97,114,114,97,110,103,101,100,32,97,114,103,117,109,101,110,116,32,105,110,100,101,120,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,114,101,97,114,103,101,100,32,61,32,95,46,114,101,97,114,103,40,102,117,110,99,116,105,111,110,40,97,44,32,98,44,32,99,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,91,97,44,32,98,44,32,99,93,59,92,110,32,32,32,32,32,42,32,125,44,32,91,50,44,32,48,44,32,49,93,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,114,101,97,114,103,101,100,40,39,98,39,44,32,39,99,39,44,32,39,97,39,41,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,97,39,44,32,39,98,39,44,32,39,99,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,114,101,97,114,103,32,61,32,102,108,97,116,82,101,115,116,40,102,117,110,99,116,105,111,110,40,102,117,110,99,44,32,105,110,100,101,120,101,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,87,114,97,112,40,102,117,110,99,44,32,87,82,65,80,95,82,69,65,82,71,95,70,76,65,71,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,105,110,100,101,120,101,115,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,32,96,102,117,110,99,96,32,119,105,116,104,32,116,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,111,102,32,116,104,101,92,110,32,32,32,32,32,42,32,99,114,101,97,116,101,100,32,102,117,110,99,116,105,111,110,32,97,110,100,32,97,114,103,117,109,101,110,116,115,32,102,114,111,109,32,96,115,116,97,114,116,96,32,97,110,100,32,98,101,121,111,110,100,32,112,114,111,118,105,100,101,100,32,97,115,92,110,32,32,32,32,32,42,32,97,110,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,98,97,115,101,100,32,111,110,32,116,104,101,92,110,32,32,32,32,32,42,32,91,114,101,115,116,32,112,97,114,97,109,101,116,101,114,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,114,101,115,116,95,112,97,114,97,109,101,116,101,114,115,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,97,112,112,108,121,32,97,32,114,101,115,116,32,112,97,114,97,109,101,116,101,114,32,116,111,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,115,116,97,114,116,61,102,117,110,99,46,108,101,110,103,116,104,45,49,93,32,84,104,101,32,115,116,97,114,116,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,114,101,115,116,32,112,97,114,97,109,101,116,101,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,115,97,121,32,61,32,95,46,114,101,115,116,40,102,117,110,99,116,105,111,110,40,119,104,97,116,44,32,110,97,109,101,115,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,119,104,97,116,32,43,32,39,32,39,32,43,32,95,46,105,110,105,116,105,97,108,40,110,97,109,101,115,41,46,106,111,105,110,40,39,44,32,39,41,32,43,92,110,32,32,32,32,32,42,32,32,32,32,32,40,95,46,115,105,122,101,40,110,97,109,101,115,41,32,62,32,49,32,63,32,39,44,32,38,32,39,32,58,32,39,39,41,32,43,32,95,46,108,97,115,116,40,110,97,109,101,115,41,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,115,97,121,40,39,104,101,108,108,111,39,44,32,39,102,114,101,100,39,44,32,39,98,97,114,110,101,121,39,44,32,39,112,101,98,98,108,101,115,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,101,108,108,111,32,102,114,101,100,44,32,98,97,114,110,101,121,44,32,38,32,112,101,98,98,108,101,115,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,115,116,40,102,117,110,99,44,32,115,116,97,114,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,102,117,110,99,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,70,85,78,67,95,69,82,82,79,82,95,84,69,88,84,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,116,97,114,116,32,61,32,115,116,97,114,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,115,116,97,114,116,32,58,32,116,111,73,110,116,101,103,101,114,40,115,116,97,114,116,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,82,101,115,116,40,102,117,110,99,44,32,115,116,97,114,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,32,96,102,117,110,99,96,32,119,105,116,104,32,116,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,111,102,32,116,104,101,92,110,32,32,32,32,32,42,32,99,114,101,97,116,101,32,102,117,110,99,116,105,111,110,32,97,110,100,32,97,110,32,97,114,114,97,121,32,111,102,32,97,114,103,117,109,101,110,116,115,32,109,117,99,104,32,108,105,107,101,92,110,32,32,32,32,32,42,32,91,96,70,117,110,99,116,105,111,110,35,97,112,112,108,121,96,93,40,104,116,116,112,58,47,47,119,119,119,46,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,102,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,97,112,112,108,121,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,98,97,115,101,100,32,111,110,32,116,104,101,92,110,32,32,32,32,32,42,32,91,115,112,114,101,97,100,32,111,112,101,114,97,116,111,114,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,115,112,114,101,97,100,95,111,112,101,114,97,116,111,114,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,50,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,115,112,114,101,97,100,32,97,114,103,117,109,101,110,116,115,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,115,116,97,114,116,61,48,93,32,84,104,101,32,115,116,97,114,116,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,115,112,114,101,97,100,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,115,97,121,32,61,32,95,46,115,112,114,101,97,100,40,102,117,110,99,116,105,111,110,40,119,104,111,44,32,119,104,97,116,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,119,104,111,32,43,32,39,32,115,97,121,115,32,39,32,43,32,119,104,97,116,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,115,97,121,40,91,39,102,114,101,100,39,44,32,39,104,101,108,108,111,39,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,114,101,100,32,115,97,121,115,32,104,101,108,108,111,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,110,117,109,98,101,114,115,32,61,32,80,114,111,109,105,115,101,46,97,108,108,40,91,92,110,32,32,32,32,32,42,32,32,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,52,48,41,44,92,110,32,32,32,32,32,42,32,32,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,51,54,41,92,110,32,32,32,32,32,42,32,93,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,110,117,109,98,101,114,115,46,116,104,101,110,40,95,46,115,112,114,101,97,100,40,102,117,110,99,116,105,111,110,40,120,44,32,121,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,120,32,43,32,121,59,92,110,32,32,32,32,32,42,32,125,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,97,32,80,114,111,109,105,115,101,32,111,102,32,55,54,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,112,114,101,97,100,40,102,117,110,99,44,32,115,116,97,114,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,102,117,110,99,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,70,85,78,67,95,69,82,82,79,82,95,84,69,88,84,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,116,97,114,116,32,61,32,115,116,97,114,116,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,110,97,116,105,118,101,77,97,120,40,116,111,73,110,116,101,103,101,114,40,115,116,97,114,116,41,44,32,48,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,114,97,121,32,61,32,97,114,103,115,91,115,116,97,114,116,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,116,104,101,114,65,114,103,115,32,61,32,99,97,115,116,83,108,105,99,101,40,97,114,103,115,44,32,48,44,32,115,116,97,114,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,114,114,97,121,80,117,115,104,40,111,116,104,101,114,65,114,103,115,44,32,97,114,114,97,121,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,112,112,108,121,40,102,117,110,99,44,32,116,104,105,115,44,32,111,116,104,101,114,65,114,103,115,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,116,104,114,111,116,116,108,101,100,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,111,110,108,121,32,105,110,118,111,107,101,115,32,96,102,117,110,99,96,32,97,116,32,109,111,115,116,32,111,110,99,101,32,112,101,114,92,110,32,32,32,32,32,42,32,101,118,101,114,121,32,96,119,97,105,116,96,32,109,105,108,108,105,115,101,99,111,110,100,115,46,32,84,104,101,32,116,104,114,111,116,116,108,101,100,32,102,117,110,99,116,105,111,110,32,99,111,109,101,115,32,119,105,116,104,32,97,32,96,99,97,110,99,101,108,96,92,110,32,32,32,32,32,42,32,109,101,116,104,111,100,32,116,111,32,99,97,110,99,101,108,32,100,101,108,97,121,101,100,32,96,102,117,110,99,96,32,105,110,118,111,99,97,116,105,111,110,115,32,97,110,100,32,97,32,96,102,108,117,115,104,96,32,109,101,116,104,111,100,32,116,111,92,110,32,32,32,32,32,42,32,105,109,109,101,100,105,97,116,101,108,121,32,105,110,118,111,107,101,32,116,104,101,109,46,32,80,114,111,118,105,100,101,32,96,111,112,116,105,111,110,115,96,32,116,111,32,105,110,100,105,99,97,116,101,32,119,104,101,116,104,101,114,32,96,102,117,110,99,96,92,110,32,32,32,32,32,42,32,115,104,111,117,108,100,32,98,101,32,105,110,118,111,107,101,100,32,111,110,32,116,104,101,32,108,101,97,100,105,110,103,32,97,110,100,47,111,114,32,116,114,97,105,108,105,110,103,32,101,100,103,101,32,111,102,32,116,104,101,32,96,119,97,105,116,96,92,110,32,32,32,32,32,42,32,116,105,109,101,111,117,116,46,32,84,104,101,32,96,102,117,110,99,96,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,101,32,108,97,115,116,32,97,114,103,117,109,101,110,116,115,32,112,114,111,118,105,100,101,100,32,116,111,32,116,104,101,92,110,32,32,32,32,32,42,32,116,104,114,111,116,116,108,101,100,32,102,117,110,99,116,105,111,110,46,32,83,117,98,115,101,113,117,101,110,116,32,99,97,108,108,115,32,116,111,32,116,104,101,32,116,104,114,111,116,116,108,101,100,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,32,116,104,101,92,110,32,32,32,32,32,42,32,114,101,115,117,108,116,32,111,102,32,116,104,101,32,108,97,115,116,32,96,102,117,110,99,96,32,105,110,118,111,99,97,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,73,102,32,96,108,101,97,100,105,110,103,96,32,97,110,100,32,96,116,114,97,105,108,105,110,103,96,32,111,112,116,105,111,110,115,32,97,114,101,32,96,116,114,117,101,96,44,32,96,102,117,110,99,96,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,111,110,32,116,104,101,32,116,114,97,105,108,105,110,103,32,101,100,103,101,32,111,102,32,116,104,101,32,116,105,109,101,111,117,116,32,111,110,108,121,32,105,102,32,116,104,101,32,116,104,114,111,116,116,108,101,100,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,109,111,114,101,32,116,104,97,110,32,111,110,99,101,32,100,117,114,105,110,103,32,116,104,101,32,96,119,97,105,116,96,32,116,105,109,101,111,117,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,73,102,32,96,119,97,105,116,96,32,105,115,32,96,48,96,32,97,110,100,32,96,108,101,97,100,105,110,103,96,32,105,115,32,96,102,97,108,115,101,96,44,32,96,102,117,110,99,96,32,105,110,118,111,99,97,116,105,111,110,32,105,115,32,100,101,102,101,114,114,101,100,92,110,32,32,32,32,32,42,32,117,110,116,105,108,32,116,111,32,116,104,101,32,110,101,120,116,32,116,105,99,107,44,32,115,105,109,105,108,97,114,32,116,111,32,96,115,101,116,84,105,109,101,111,117,116,96,32,119,105,116,104,32,97,32,116,105,109,101,111,117,116,32,111,102,32,96,48,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,83,101,101,32,91,68,97,118,105,100,32,67,111,114,98,97,99,104,111,39,115,32,97,114,116,105,99,108,101,93,40,104,116,116,112,115,58,47,47,99,115,115,45,116,114,105,99,107,115,46,99,111,109,47,100,101,98,111,117,110,99,105,110,103,45,116,104,114,111,116,116,108,105,110,103,45,101,120,112,108,97,105,110,101,100,45,101,120,97,109,112,108,101,115,47,41,92,110,32,32,32,32,32,42,32,102,111,114,32,100,101,116,97,105,108,115,32,111,118,101,114,32,116,104,101,32,100,105,102,102,101,114,101,110,99,101,115,32,98,101,116,119,101,101,110,32,96,95,46,116,104,114,111,116,116,108,101,96,32,97,110,100,32,96,95,46,100,101,98,111,117,110,99,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,116,104,114,111,116,116,108,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,119,97,105,116,61,48,93,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,111,32,116,104,114,111,116,116,108,101,32,105,110,118,111,99,97,116,105,111,110,115,32,116,111,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,112,116,105,111,110,115,61,123,125,93,32,84,104,101,32,111,112,116,105,111,110,115,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,108,101,97,100,105,110,103,61,116,114,117,101,93,92,110,32,32,32,32,32,42,32,32,83,112,101,99,105,102,121,32,105,110,118,111,107,105,110,103,32,111,110,32,116,104,101,32,108,101,97,100,105,110,103,32,101,100,103,101,32,111,102,32,116,104,101,32,116,105,109,101,111,117,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,116,114,97,105,108,105,110,103,61,116,114,117,101,93,92,110,32,32,32,32,32,42,32,32,83,112,101,99,105,102,121,32,105,110,118,111,107,105,110,103,32,111,110,32,116,104,101,32,116,114,97,105,108,105,110,103,32,101,100,103,101,32,111,102,32,116,104,101,32,116,105,109,101,111,117,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,116,104,114,111,116,116,108,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,65,118,111,105,100,32,101,120,99,101,115,115,105,118,101,108,121,32,117,112,100,97,116,105,110,103,32,116,104,101,32,112,111,115,105,116,105,111,110,32,119,104,105,108,101,32,115,99,114,111,108,108,105,110,103,46,92,110,32,32,32,32,32,42,32,106,81,117,101,114,121,40,119,105,110,100,111,119,41,46,111,110,40,39,115,99,114,111,108,108,39,44,32,95,46,116,104,114,111,116,116,108,101,40,117,112,100,97,116,101,80,111,115,105,116,105,111,110,44,32,49,48,48,41,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,73,110,118,111,107,101,32,96,114,101,110,101,119,84,111,107,101,110,96,32,119,104,101,110,32,116,104,101,32,99,108,105,99,107,32,101,118,101,110,116,32,105,115,32,102,105,114,101,100,44,32,98,117,116,32,110,111,116,32,109,111,114,101,32,116,104,97,110,32,111,110,99,101,32,101,118,101,114,121,32,53,32,109,105,110,117,116,101,115,46,92,110,32,32,32,32,32,42,32,118,97,114,32,116,104,114,111,116,116,108,101,100,32,61,32,95,46,116,104,114,111,116,116,108,101,40,114,101,110,101,119,84,111,107,101,110,44,32,51,48,48,48,48,48,44,32,123,32,39,116,114,97,105,108,105,110,103,39,58,32,102,97,108,115,101,32,125,41,59,92,110,32,32,32,32,32,42,32,106,81,117,101,114,121,40,101,108,101,109,101,110,116,41,46,111,110,40,39,99,108,105,99,107,39,44,32,116,104,114,111,116,116,108,101,100,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,67,97,110,99,101,108,32,116,104,101,32,116,114,97,105,108,105,110,103,32,116,104,114,111,116,116,108,101,100,32,105,110,118,111,99,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,106,81,117,101,114,121,40,119,105,110,100,111,119,41,46,111,110,40,39,112,111,112,115,116,97,116,101,39,44,32,116,104,114,111,116,116,108,101,100,46,99,97,110,99,101,108,41,59,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,104,114,111,116,116,108,101,40,102,117,110,99,44,32,119,97,105,116,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,97,100,105,110,103,32,61,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,114,97,105,108,105,110,103,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,102,117,110,99,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,70,85,78,67,95,69,82,82,79,82,95,84,69,88,84,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,111,112,116,105,111,110,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,108,101,97,100,105,110,103,32,61,32,39,108,101,97,100,105,110,103,39,32,105,110,32,111,112,116,105,111,110,115,32,63,32,33,33,111,112,116,105,111,110,115,46,108,101,97,100,105,110,103,32,58,32,108,101,97,100,105,110,103,59,92,110,32,32,32,32,32,32,32,32,116,114,97,105,108,105,110,103,32,61,32,39,116,114,97,105,108,105,110,103,39,32,105,110,32,111,112,116,105,111,110,115,32,63,32,33,33,111,112,116,105,111,110,115,46,116,114,97,105,108,105,110,103,32,58,32,116,114,97,105,108,105,110,103,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,98,111,117,110,99,101,40,102,117,110,99,44,32,119,97,105,116,44,32,123,92,110,32,32,32,32,32,32,32,32,39,108,101,97,100,105,110,103,39,58,32,108,101,97,100,105,110,103,44,92,110,32,32,32,32,32,32,32,32,39,109,97,120,87,97,105,116,39,58,32,119,97,105,116,44,92,110,32,32,32,32,32,32,32,32,39,116,114,97,105,108,105,110,103,39,58,32,116,114,97,105,108,105,110,103,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,97,99,99,101,112,116,115,32,117,112,32,116,111,32,111,110,101,32,97,114,103,117,109,101,110,116,44,32,105,103,110,111,114,105,110,103,32,97,110,121,92,110,32,32,32,32,32,42,32,97,100,100,105,116,105,111,110,97,108,32,97,114,103,117,109,101,110,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,97,112,32,97,114,103,117,109,101,110,116,115,32,102,111,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,99,97,112,112,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,91,39,54,39,44,32,39,56,39,44,32,39,49,48,39,93,44,32,95,46,117,110,97,114,121,40,112,97,114,115,101,73,110,116,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,54,44,32,56,44,32,49,48,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,110,97,114,121,40,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,121,40,102,117,110,99,44,32,49,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,112,114,111,118,105,100,101,115,32,96,118,97,108,117,101,96,32,116,111,32,96,119,114,97,112,112,101,114,96,32,97,115,32,105,116,115,32,102,105,114,115,116,92,110,32,32,32,32,32,42,32,97,114,103,117,109,101,110,116,46,32,65,110,121,32,97,100,100,105,116,105,111,110,97,108,32,97,114,103,117,109,101,110,116,115,32,112,114,111,118,105,100,101,100,32,116,111,32,116,104,101,32,102,117,110,99,116,105,111,110,32,97,114,101,32,97,112,112,101,110,100,101,100,92,110,32,32,32,32,32,42,32,116,111,32,116,104,111,115,101,32,112,114,111,118,105,100,101,100,32,116,111,32,116,104,101,32,96,119,114,97,112,112,101,114,96,46,32,84,104,101,32,119,114,97,112,112,101,114,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,101,32,96,116,104,105,115,96,92,110,32,32,32,32,32,42,32,98,105,110,100,105,110,103,32,111,102,32,116,104,101,32,99,114,101,97,116,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,70,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,119,114,97,112,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,119,114,97,112,112,101,114,61,105,100,101,110,116,105,116,121,93,32,84,104,101,32,119,114,97,112,112,101,114,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,112,32,61,32,95,46,119,114,97,112,40,95,46,101,115,99,97,112,101,44,32,102,117,110,99,116,105,111,110,40,102,117,110,99,44,32,116,101,120,116,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,39,60,112,62,39,32,43,32,102,117,110,99,40,116,101,120,116,41,32,43,32,39,60,47,112,62,39,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,112,40,39,102,114,101,100,44,32,98,97,114,110,101,121,44,32,38,32,112,101,98,98,108,101,115,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,60,112,62,102,114,101,100,44,32,98,97,114,110,101,121,44,32,38,97,109,112,59,32,112,101,98,98,108,101,115,60,47,112,62,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,119,114,97,112,40,118,97,108,117,101,44,32,119,114,97,112,112,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,114,116,105,97,108,40,99,97,115,116,70,117,110,99,116,105,111,110,40,119,114,97,112,112,101,114,41,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,97,115,116,115,32,96,118,97,108,117,101,96,32,97,115,32,97,110,32,97,114,114,97,121,32,105,102,32,105,116,39,115,32,110,111,116,32,111,110,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,52,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,97,115,116,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,97,115,116,65,114,114,97,121,40,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,97,115,116,65,114,114,97,121,40,123,32,39,97,39,58,32,49,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,97,39,58,32,49,32,125,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,97,115,116,65,114,114,97,121,40,39,97,98,99,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,97,98,99,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,97,115,116,65,114,114,97,121,40,110,117,108,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,110,117,108,108,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,97,115,116,65,114,114,97,121,40,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,117,110,100,101,102,105,110,101,100,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,97,115,116,65,114,114,97,121,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,49,44,32,50,44,32,51,93,59,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,95,46,99,97,115,116,65,114,114,97,121,40,97,114,114,97,121,41,32,61,61,61,32,97,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,97,115,116,65,114,114,97,121,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,97,114,103,117,109,101,110,116,115,91,48,93,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,65,114,114,97,121,40,118,97,108,117,101,41,32,63,32,118,97,108,117,101,32,58,32,91,118,97,108,117,101,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,115,104,97,108,108,111,119,32,99,108,111,110,101,32,111,102,32,96,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,111,111,115,101,108,121,32,98,97,115,101,100,32,111,110,32,116,104,101,92,110,32,32,32,32,32,42,32,91,115,116,114,117,99,116,117,114,101,100,32,99,108,111,110,101,32,97,108,103,111,114,105,116,104,109,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,83,116,114,117,99,116,117,114,101,100,95,99,108,111,110,101,95,97,108,103,111,114,105,116,104,109,41,92,110,32,32,32,32,32,42,32,97,110,100,32,115,117,112,112,111,114,116,115,32,99,108,111,110,105,110,103,32,97,114,114,97,121,115,44,32,97,114,114,97,121,32,98,117,102,102,101,114,115,44,32,98,111,111,108,101,97,110,115,44,32,100,97,116,101,32,111,98,106,101,99,116,115,44,32,109,97,112,115,44,92,110,32,32,32,32,32,42,32,110,117,109,98,101,114,115,44,32,96,79,98,106,101,99,116,96,32,111,98,106,101,99,116,115,44,32,114,101,103,101,120,101,115,44,32,115,101,116,115,44,32,115,116,114,105,110,103,115,44,32,115,121,109,98,111,108,115,44,32,97,110,100,32,116,121,112,101,100,92,110,32,32,32,32,32,42,32,97,114,114,97,121,115,46,32,84,104,101,32,111,119,110,32,101,110,117,109,101,114,97,98,108,101,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,96,97,114,103,117,109,101,110,116,115,96,32,111,98,106,101,99,116,115,32,97,114,101,32,99,108,111,110,101,100,92,110,32,32,32,32,32,42,32,97,115,32,112,108,97,105,110,32,111,98,106,101,99,116,115,46,32,65,110,32,101,109,112,116,121,32,111,98,106,101,99,116,32,105,115,32,114,101,116,117,114,110,101,100,32,102,111,114,32,117,110,99,108,111,110,101,97,98,108,101,32,118,97,108,117,101,115,32,115,117,99,104,92,110,32,32,32,32,32,42,32,97,115,32,101,114,114,111,114,32,111,98,106,101,99,116,115,44,32,102,117,110,99,116,105,111,110,115,44,32,68,79,77,32,110,111,100,101,115,44,32,97,110,100,32,87,101,97,107,77,97,112,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,108,111,110,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,99,108,111,110,101,68,101,101,112,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,123,32,39,97,39,58,32,49,32,125,44,32,123,32,39,98,39,58,32,50,32,125,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,115,104,97,108,108,111,119,32,61,32,95,46,99,108,111,110,101,40,111,98,106,101,99,116,115,41,59,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,115,104,97,108,108,111,119,91,48,93,32,61,61,61,32,111,98,106,101,99,116,115,91,48,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,67,108,111,110,101,40,118,97,108,117,101,44,32,67,76,79,78,69,95,83,89,77,66,79,76,83,95,70,76,65,71,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,99,108,111,110,101,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,99,117,115,116,111,109,105,122,101,114,96,32,119,104,105,99,104,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,116,111,32,112,114,111,100,117,99,101,32,116,104,101,32,99,108,111,110,101,100,32,118,97,108,117,101,46,32,73,102,32,96,99,117,115,116,111,109,105,122,101,114,96,32,114,101,116,117,114,110,115,32,96,117,110,100,101,102,105,110,101,100,96,44,92,110,32,32,32,32,32,42,32,99,108,111,110,105,110,103,32,105,115,32,104,97,110,100,108,101,100,32,98,121,32,116,104,101,32,109,101,116,104,111,100,32,105,110,115,116,101,97,100,46,32,84,104,101,32,96,99,117,115,116,111,109,105,122,101,114,96,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,92,110,32,32,32,32,32,42,32,117,112,32,116,111,32,102,111,117,114,32,97,114,103,117,109,101,110,116,115,59,32,40,118,97,108,117,101,32,91,44,32,105,110,100,101,120,124,107,101,121,44,32,111,98,106,101,99,116,44,32,115,116,97,99,107,93,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,99,108,111,110,105,110,103,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,108,111,110,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,99,108,111,110,101,68,101,101,112,87,105,116,104,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,105,122,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,105,102,32,40,95,46,105,115,69,108,101,109,101,110,116,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,46,99,108,111,110,101,78,111,100,101,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,42,32,32,32,125,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,101,108,32,61,32,95,46,99,108,111,110,101,87,105,116,104,40,100,111,99,117,109,101,110,116,46,98,111,100,121,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,101,108,32,61,61,61,32,100,111,99,117,109,101,110,116,46,98,111,100,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,101,108,46,110,111,100,101,78,97,109,101,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,66,79,68,89,39,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,101,108,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,48,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,87,105,116,104,40,118,97,108,117,101,44,32,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,99,117,115,116,111,109,105,122,101,114,32,61,32,116,121,112,101,111,102,32,99,117,115,116,111,109,105,122,101,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,99,117,115,116,111,109,105,122,101,114,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,67,108,111,110,101,40,118,97,108,117,101,44,32,67,76,79,78,69,95,83,89,77,66,79,76,83,95,70,76,65,71,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,99,108,111,110,101,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,114,101,99,117,114,115,105,118,101,108,121,32,99,108,111,110,101,115,32,96,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,49,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,114,101,99,117,114,115,105,118,101,108,121,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,100,101,101,112,32,99,108,111,110,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,99,108,111,110,101,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,123,32,39,97,39,58,32,49,32,125,44,32,123,32,39,98,39,58,32,50,32,125,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,100,101,101,112,32,61,32,95,46,99,108,111,110,101,68,101,101,112,40,111,98,106,101,99,116,115,41,59,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,100,101,101,112,91,48,93,32,61,61,61,32,111,98,106,101,99,116,115,91,48,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,68,101,101,112,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,67,108,111,110,101,40,118,97,108,117,101,44,32,67,76,79,78,69,95,68,69,69,80,95,70,76,65,71,32,124,32,67,76,79,78,69,95,83,89,77,66,79,76,83,95,70,76,65,71,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,99,108,111,110,101,87,105,116,104,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,114,101,99,117,114,115,105,118,101,108,121,32,99,108,111,110,101,115,32,96,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,114,101,99,117,114,115,105,118,101,108,121,32,99,108,111,110,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,99,108,111,110,105,110,103,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,100,101,101,112,32,99,108,111,110,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,99,108,111,110,101,87,105,116,104,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,105,122,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,105,102,32,40,95,46,105,115,69,108,101,109,101,110,116,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,46,99,108,111,110,101,78,111,100,101,40,116,114,117,101,41,59,92,110,32,32,32,32,32,42,32,32,32,125,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,101,108,32,61,32,95,46,99,108,111,110,101,68,101,101,112,87,105,116,104,40,100,111,99,117,109,101,110,116,46,98,111,100,121,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,101,108,32,61,61,61,32,100,111,99,117,109,101,110,116,46,98,111,100,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,101,108,46,110,111,100,101,78,97,109,101,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,66,79,68,89,39,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,101,108,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,50,48,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,110,101,68,101,101,112,87,105,116,104,40,118,97,108,117,101,44,32,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,99,117,115,116,111,109,105,122,101,114,32,61,32,116,121,112,101,111,102,32,99,117,115,116,111,109,105,122,101,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,99,117,115,116,111,109,105,122,101,114,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,67,108,111,110,101,40,118,97,108,117,101,44,32,67,76,79,78,69,95,68,69,69,80,95,70,76,65,71,32,124,32,67,76,79,78,69,95,83,89,77,66,79,76,83,95,70,76,65,71,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,111,98,106,101,99,116,96,32,99,111,110,102,111,114,109,115,32,116,111,32,96,115,111,117,114,99,101,96,32,98,121,32,105,110,118,111,107,105,110,103,32,116,104,101,32,112,114,101,100,105,99,97,116,101,92,110,32,32,32,32,32,42,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,96,115,111,117,114,99,101,96,32,119,105,116,104,32,116,104,101,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,101,113,117,105,118,97,108,101,110,116,32,116,111,32,96,95,46,99,111,110,102,111,114,109,115,96,32,119,104,101,110,32,96,115,111,117,114,99,101,96,32,105,115,92,110,32,32,32,32,32,42,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,49,52,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,112,114,111,112,101,114,116,121,32,112,114,101,100,105,99,97,116,101,115,32,116,111,32,99,111,110,102,111,114,109,32,116,111,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,111,98,106,101,99,116,96,32,99,111,110,102,111,114,109,115,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,111,110,102,111,114,109,115,84,111,40,111,98,106,101,99,116,44,32,123,32,39,98,39,58,32,102,117,110,99,116,105,111,110,40,110,41,32,123,32,114,101,116,117,114,110,32,110,32,62,32,49,59,32,125,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,111,110,102,111,114,109,115,84,111,40,111,98,106,101,99,116,44,32,123,32,39,98,39,58,32,102,117,110,99,116,105,111,110,40,110,41,32,123,32,114,101,116,117,114,110,32,110,32,62,32,50,59,32,125,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,110,102,111,114,109,115,84,111,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,111,117,114,99,101,32,61,61,32,110,117,108,108,32,124,124,32,98,97,115,101,67,111,110,102,111,114,109,115,84,111,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,107,101,121,115,40,115,111,117,114,99,101,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,80,101,114,102,111,114,109,115,32,97,92,110,32,32,32,32,32,42,32,91,96,83,97,109,101,86,97,108,117,101,90,101,114,111,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,115,97,109,101,118,97,108,117,101,122,101,114,111,41,92,110,32,32,32,32,32,42,32,99,111,109,112,97,114,105,115,111,110,32,98,101,116,119,101,101,110,32,116,119,111,32,118,97,108,117,101,115,32,116,111,32,100,101,116,101,114,109,105,110,101,32,105,102,32,116,104,101,121,32,97,114,101,32,101,113,117,105,118,97,108,101,110,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,118,97,108,117,101,115,32,97,114,101,32,101,113,117,105,118,97,108,101,110,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,49,32,125,59,92,110,32,32,32,32,32,42,32,118,97,114,32,111,116,104,101,114,32,61,32,123,32,39,97,39,58,32,49,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,101,113,40,111,98,106,101,99,116,44,32,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,101,113,40,111,98,106,101,99,116,44,32,111,116,104,101,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,101,113,40,39,97,39,44,32,39,97,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,101,113,40,39,97,39,44,32,79,98,106,101,99,116,40,39,97,39,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,101,113,40,78,97,78,44,32,78,97,78,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,101,113,40,118,97,108,117,101,44,32,111,116,104,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,111,116,104,101,114,32,124,124,32,40,118,97,108,117,101,32,33,61,61,32,118,97,108,117,101,32,38,38,32,111,116,104,101,114,32,33,61,61,32,111,116,104,101,114,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,103,114,101,97,116,101,114,32,116,104,97,110,32,96,111,116,104,101,114,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,57,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,103,114,101,97,116,101,114,32,116,104,97,110,32,96,111,116,104,101,114,96,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,108,116,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,103,116,40,51,44,32,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,103,116,40,51,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,103,116,40,49,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,103,116,32,61,32,99,114,101,97,116,101,82,101,108,97,116,105,111,110,97,108,79,112,101,114,97,116,105,111,110,40,98,97,115,101,71,116,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,103,114,101,97,116,101,114,32,116,104,97,110,32,111,114,32,101,113,117,97,108,32,116,111,32,96,111,116,104,101,114,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,57,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,103,114,101,97,116,101,114,32,116,104,97,110,32,111,114,32,101,113,117,97,108,32,116,111,92,110,32,32,32,32,32,42,32,32,96,111,116,104,101,114,96,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,108,116,101,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,103,116,101,40,51,44,32,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,103,116,101,40,51,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,103,116,101,40,49,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,103,116,101,32,61,32,99,114,101,97,116,101,82,101,108,97,116,105,111,110,97,108,79,112,101,114,97,116,105,111,110,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,111,116,104,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,62,61,32,111,116,104,101,114,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,108,105,107,101,108,121,32,97,110,32,96,97,114,103,117,109,101,110,116,115,96,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,110,32,96,97,114,103,117,109,101,110,116,115,96,32,111,98,106,101,99,116,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,103,117,109,101,110,116,115,40,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,59,32,125,40,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,103,117,109,101,110,116,115,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,115,65,114,103,117,109,101,110,116,115,32,61,32,98,97,115,101,73,115,65,114,103,117,109,101,110,116,115,40,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,59,32,125,40,41,41,32,63,32,98,97,115,101,73,115,65,114,103,117,109,101,110,116,115,32,58,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,118,97,108,117,101,44,32,39,99,97,108,108,101,101,39,41,32,38,38,92,110,32,32,32,32,32,32,32,32,33,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,46,99,97,108,108,40,118,97,108,117,101,44,32,39,99,97,108,108,101,101,39,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,97,110,32,96,65,114,114,97,121,96,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,110,32,97,114,114,97,121,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,40,100,111,99,117,109,101,110,116,46,98,111,100,121,46,99,104,105,108,100,114,101,110,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,40,39,97,98,99,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,40,95,46,110,111,111,112,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,115,65,114,114,97,121,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,97,110,32,96,65,114,114,97,121,66,117,102,102,101,114,96,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,110,32,97,114,114,97,121,32,98,117,102,102,101,114,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,66,117,102,102,101,114,40,110,101,119,32,65,114,114,97,121,66,117,102,102,101,114,40,50,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,66,117,102,102,101,114,40,110,101,119,32,65,114,114,97,121,40,50,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,115,65,114,114,97,121,66,117,102,102,101,114,32,61,32,110,111,100,101,73,115,65,114,114,97,121,66,117,102,102,101,114,32,63,32,98,97,115,101,85,110,97,114,121,40,110,111,100,101,73,115,65,114,114,97,121,66,117,102,102,101,114,41,32,58,32,98,97,115,101,73,115,65,114,114,97,121,66,117,102,102,101,114,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,114,114,97,121,45,108,105,107,101,46,32,65,32,118,97,108,117,101,32,105,115,32,99,111,110,115,105,100,101,114,101,100,32,97,114,114,97,121,45,108,105,107,101,32,105,102,32,105,116,39,115,92,110,32,32,32,32,32,42,32,110,111,116,32,97,32,102,117,110,99,116,105,111,110,32,97,110,100,32,104,97,115,32,97,32,96,118,97,108,117,101,46,108,101,110,103,116,104,96,32,116,104,97,116,39,115,32,97,110,32,105,110,116,101,103,101,114,32,103,114,101,97,116,101,114,32,116,104,97,110,32,111,114,92,110,32,32,32,32,32,42,32,101,113,117,97,108,32,116,111,32,96,48,96,32,97,110,100,32,108,101,115,115,32,116,104,97,110,32,111,114,32,101,113,117,97,108,32,116,111,32,96,78,117,109,98,101,114,46,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,114,114,97,121,45,108,105,107,101,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,76,105,107,101,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,76,105,107,101,40,100,111,99,117,109,101,110,116,46,98,111,100,121,46,99,104,105,108,100,114,101,110,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,76,105,107,101,40,39,97,98,99,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,76,105,107,101,40,95,46,110,111,111,112,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,65,114,114,97,121,76,105,107,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,33,61,32,110,117,108,108,32,38,38,32,105,115,76,101,110,103,116,104,40,118,97,108,117,101,46,108,101,110,103,116,104,41,32,38,38,32,33,105,115,70,117,110,99,116,105,111,110,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,105,115,65,114,114,97,121,76,105,107,101,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,108,115,111,32,99,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,92,110,32,32,32,32,32,42,32,105,115,32,97,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,110,32,97,114,114,97,121,45,108,105,107,101,32,111,98,106,101,99,116,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,100,111,99,117,109,101,110,116,46,98,111,100,121,46,99,104,105,108,100,114,101,110,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,39,97,98,99,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,95,46,110,111,111,112,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,105,115,65,114,114,97,121,76,105,107,101,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,97,32,98,111,111,108,101,97,110,32,112,114,105,109,105,116,105,118,101,32,111,114,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,98,111,111,108,101,97,110,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,66,111,111,108,101,97,110,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,66,111,111,108,101,97,110,40,110,117,108,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,66,111,111,108,101,97,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,116,114,117,101,32,124,124,32,118,97,108,117,101,32,61,61,61,32,102,97,108,115,101,32,124,124,92,110,32,32,32,32,32,32,32,32,40,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,32,61,61,32,98,111,111,108,84,97,103,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,98,117,102,102,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,98,117,102,102,101,114,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,66,117,102,102,101,114,40,110,101,119,32,66,117,102,102,101,114,40,50,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,66,117,102,102,101,114,40,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,50,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,115,66,117,102,102,101,114,32,61,32,110,97,116,105,118,101,73,115,66,117,102,102,101,114,32,124,124,32,115,116,117,98,70,97,108,115,101,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,97,32,96,68,97,116,101,96,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,100,97,116,101,32,111,98,106,101,99,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,68,97,116,101,40,110,101,119,32,68,97,116,101,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,68,97,116,101,40,39,77,111,110,32,65,112,114,105,108,32,50,51,32,50,48,49,50,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,115,68,97,116,101,32,61,32,110,111,100,101,73,115,68,97,116,101,32,63,32,98,97,115,101,85,110,97,114,121,40,110,111,100,101,73,115,68,97,116,101,41,32,58,32,98,97,115,101,73,115,68,97,116,101,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,108,105,107,101,108,121,32,97,32,68,79,77,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,68,79,77,32,101,108,101,109,101,110,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,69,108,101,109,101,110,116,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,69,108,101,109,101,110,116,40,39,60,98,111,100,121,62,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,69,108,101,109,101,110,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,118,97,108,117,101,46,110,111,100,101,84,121,112,101,32,61,61,61,32,49,32,38,38,32,33,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,110,32,101,109,112,116,121,32,111,98,106,101,99,116,44,32,99,111,108,108,101,99,116,105,111,110,44,32,109,97,112,44,32,111,114,32,115,101,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,79,98,106,101,99,116,115,32,97,114,101,32,99,111,110,115,105,100,101,114,101,100,32,101,109,112,116,121,32,105,102,32,116,104,101,121,32,104,97,118,101,32,110,111,32,111,119,110,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,92,110,32,32,32,32,32,42,32,112,114,111,112,101,114,116,105,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,65,114,114,97,121,45,108,105,107,101,32,118,97,108,117,101,115,32,115,117,99,104,32,97,115,32,96,97,114,103,117,109,101,110,116,115,96,32,111,98,106,101,99,116,115,44,32,97,114,114,97,121,115,44,32,98,117,102,102,101,114,115,44,32,115,116,114,105,110,103,115,44,32,111,114,92,110,32,32,32,32,32,42,32,106,81,117,101,114,121,45,108,105,107,101,32,99,111,108,108,101,99,116,105,111,110,115,32,97,114,101,32,99,111,110,115,105,100,101,114,101,100,32,101,109,112,116,121,32,105,102,32,116,104,101,121,32,104,97,118,101,32,97,32,96,108,101,110,103,116,104,96,32,111,102,32,96,48,96,46,92,110,32,32,32,32,32,42,32,83,105,109,105,108,97,114,108,121,44,32,109,97,112,115,32,97,110,100,32,115,101,116,115,32,97,114,101,32,99,111,110,115,105,100,101,114,101,100,32,101,109,112,116,121,32,105,102,32,116,104,101,121,32,104,97,118,101,32,97,32,96,115,105,122,101,96,32,111,102,32,96,48,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,101,109,112,116,121,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,69,109,112,116,121,40,110,117,108,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,69,109,112,116,121,40,116,114,117,101,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,69,109,112,116,121,40,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,69,109,112,116,121,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,69,109,112,116,121,40,123,32,39,97,39,58,32,49,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,69,109,112,116,121,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,76,105,107,101,40,118,97,108,117,101,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,40,105,115,65,114,114,97,121,40,118,97,108,117,101,41,32,124,124,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,115,116,114,105,110,103,39,32,124,124,32,116,121,112,101,111,102,32,118,97,108,117,101,46,115,112,108,105,99,101,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,66,117,102,102,101,114,40,118,97,108,117,101,41,32,124,124,32,105,115,84,121,112,101,100,65,114,114,97,121,40,118,97,108,117,101,41,32,124,124,32,105,115,65,114,103,117,109,101,110,116,115,40,118,97,108,117,101,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,118,97,108,117,101,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,116,97,103,32,61,32,103,101,116,84,97,103,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,97,103,32,61,61,32,109,97,112,84,97,103,32,124,124,32,116,97,103,32,61,61,32,115,101,116,84,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,118,97,108,117,101,46,115,105,122,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,80,114,111,116,111,116,121,112,101,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,98,97,115,101,75,101,121,115,40,118,97,108,117,101,41,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,118,97,108,117,101,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,80,101,114,102,111,114,109,115,32,97,32,100,101,101,112,32,99,111,109,112,97,114,105,115,111,110,32,98,101,116,119,101,101,110,32,116,119,111,32,118,97,108,117,101,115,32,116,111,32,100,101,116,101,114,109,105,110,101,32,105,102,32,116,104,101,121,32,97,114,101,92,110,32,32,32,32,32,42,32,101,113,117,105,118,97,108,101,110,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,115,117,112,112,111,114,116,115,32,99,111,109,112,97,114,105,110,103,32,97,114,114,97,121,115,44,32,97,114,114,97,121,32,98,117,102,102,101,114,115,44,32,98,111,111,108,101,97,110,115,44,92,110,32,32,32,32,32,42,32,100,97,116,101,32,111,98,106,101,99,116,115,44,32,101,114,114,111,114,32,111,98,106,101,99,116,115,44,32,109,97,112,115,44,32,110,117,109,98,101,114,115,44,32,96,79,98,106,101,99,116,96,32,111,98,106,101,99,116,115,44,32,114,101,103,101,120,101,115,44,92,110,32,32,32,32,32,42,32,115,101,116,115,44,32,115,116,114,105,110,103,115,44,32,115,121,109,98,111,108,115,44,32,97,110,100,32,116,121,112,101,100,32,97,114,114,97,121,115,46,32,96,79,98,106,101,99,116,96,32,111,98,106,101,99,116,115,32,97,114,101,32,99,111,109,112,97,114,101,100,92,110,32,32,32,32,32,42,32,98,121,32,116,104,101,105,114,32,111,119,110,44,32,110,111,116,32,105,110,104,101,114,105,116,101,100,44,32,101,110,117,109,101,114,97,98,108,101,32,112,114,111,112,101,114,116,105,101,115,46,32,70,117,110,99,116,105,111,110,115,32,97,110,100,32,68,79,77,92,110,32,32,32,32,32,42,32,110,111,100,101,115,32,97,114,101,32,99,111,109,112,97,114,101,100,32,98,121,32,115,116,114,105,99,116,32,101,113,117,97,108,105,116,121,44,32,105,46,101,46,32,96,61,61,61,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,118,97,108,117,101,115,32,97,114,101,32,101,113,117,105,118,97,108,101,110,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,49,32,125,59,92,110,32,32,32,32,32,42,32,118,97,114,32,111,116,104,101,114,32,61,32,123,32,39,97,39,58,32,49,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,69,113,117,97,108,40,111,98,106,101,99,116,44,32,111,116,104,101,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,111,98,106,101,99,116,32,61,61,61,32,111,116,104,101,114,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,69,113,117,97,108,40,118,97,108,117,101,44,32,111,116,104,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,73,115,69,113,117,97,108,40,118,97,108,117,101,44,32,111,116,104,101,114,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,105,115,69,113,117,97,108,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,99,117,115,116,111,109,105,122,101,114,96,32,119,104,105,99,104,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,116,111,32,99,111,109,112,97,114,101,32,118,97,108,117,101,115,46,32,73,102,32,96,99,117,115,116,111,109,105,122,101,114,96,32,114,101,116,117,114,110,115,32,96,117,110,100,101,102,105,110,101,100,96,44,32,99,111,109,112,97,114,105,115,111,110,115,92,110,32,32,32,32,32,42,32,97,114,101,32,104,97,110,100,108,101,100,32,98,121,32,116,104,101,32,109,101,116,104,111,100,32,105,110,115,116,101,97,100,46,32,84,104,101,32,96,99,117,115,116,111,109,105,122,101,114,96,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,117,112,32,116,111,92,110,32,32,32,32,32,42,32,115,105,120,32,97,114,103,117,109,101,110,116,115,58,32,40,111,98,106,86,97,108,117,101,44,32,111,116,104,86,97,108,117,101,32,91,44,32,105,110,100,101,120,124,107,101,121,44,32,111,98,106,101,99,116,44,32,111,116,104,101,114,44,32,115,116,97,99,107,93,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,118,97,108,117,101,115,32,97,114,101,32,101,113,117,105,118,97,108,101,110,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,105,115,71,114,101,101,116,105,110,103,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,47,94,104,40,63,58,105,124,101,108,108,111,41,36,47,46,116,101,115,116,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,105,122,101,114,40,111,98,106,86,97,108,117,101,44,32,111,116,104,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,105,102,32,40,105,115,71,114,101,101,116,105,110,103,40,111,98,106,86,97,108,117,101,41,32,38,38,32,105,115,71,114,101,101,116,105,110,103,40,111,116,104,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,42,32,32,32,125,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,39,104,101,108,108,111,39,44,32,39,103,111,111,100,98,121,101,39,93,59,92,110,32,32,32,32,32,42,32,118,97,114,32,111,116,104,101,114,32,61,32,91,39,104,105,39,44,32,39,103,111,111,100,98,121,101,39,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,69,113,117,97,108,87,105,116,104,40,97,114,114,97,121,44,32,111,116,104,101,114,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,69,113,117,97,108,87,105,116,104,40,118,97,108,117,101,44,32,111,116,104,101,114,44,32,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,99,117,115,116,111,109,105,122,101,114,32,61,32,116,121,112,101,111,102,32,99,117,115,116,111,109,105,122,101,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,99,117,115,116,111,109,105,122,101,114,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,99,117,115,116,111,109,105,122,101,114,32,63,32,99,117,115,116,111,109,105,122,101,114,40,118,97,108,117,101,44,32,111,116,104,101,114,41,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,98,97,115,101,73,115,69,113,117,97,108,40,118,97,108,117,101,44,32,111,116,104,101,114,44,32,117,110,100,101,102,105,110,101,100,44,32,99,117,115,116,111,109,105,122,101,114,41,32,58,32,33,33,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,110,32,96,69,114,114,111,114,96,44,32,96,69,118,97,108,69,114,114,111,114,96,44,32,96,82,97,110,103,101,69,114,114,111,114,96,44,32,96,82,101,102,101,114,101,110,99,101,69,114,114,111,114,96,44,92,110,32,32,32,32,32,42,32,96,83,121,110,116,97,120,69,114,114,111,114,96,44,32,96,84,121,112,101,69,114,114,111,114,96,44,32,111,114,32,96,85,82,73,69,114,114,111,114,96,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,110,32,101,114,114,111,114,32,111,98,106,101,99,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,69,114,114,111,114,40,110,101,119,32,69,114,114,111,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,69,114,114,111,114,40,69,114,114,111,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,69,114,114,111,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,116,97,103,32,61,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,97,103,32,61,61,32,101,114,114,111,114,84,97,103,32,124,124,32,116,97,103,32,61,61,32,100,111,109,69,120,99,84,97,103,32,124,124,92,110,32,32,32,32,32,32,32,32,40,116,121,112,101,111,102,32,118,97,108,117,101,46,109,101,115,115,97,103,101,32,61,61,32,39,115,116,114,105,110,103,39,32,38,38,32,116,121,112,101,111,102,32,118,97,108,117,101,46,110,97,109,101,32,61,61,32,39,115,116,114,105,110,103,39,32,38,38,32,33,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,117,101,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,102,105,110,105,116,101,32,112,114,105,109,105,116,105,118,101,32,110,117,109,98,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,98,97,115,101,100,32,111,110,92,110,32,32,32,32,32,42,32,91,96,78,117,109,98,101,114,46,105,115,70,105,110,105,116,101,96,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,78,117,109,98,101,114,47,105,115,70,105,110,105,116,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,102,105,110,105,116,101,32,110,117,109,98,101,114,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,70,105,110,105,116,101,40,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,70,105,110,105,116,101,40,78,117,109,98,101,114,46,77,73,78,95,86,65,76,85,69,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,70,105,110,105,116,101,40,73,110,102,105,110,105,116,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,70,105,110,105,116,101,40,39,51,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,70,105,110,105,116,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,110,117,109,98,101,114,39,32,38,38,32,110,97,116,105,118,101,73,115,70,105,110,105,116,101,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,97,32,96,70,117,110,99,116,105,111,110,96,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,102,117,110,99,116,105,111,110,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,70,117,110,99,116,105,111,110,40,95,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,70,117,110,99,116,105,111,110,40,47,97,98,99,47,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,70,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,84,104,101,32,117,115,101,32,111,102,32,96,79,98,106,101,99,116,35,116,111,83,116,114,105,110,103,96,32,97,118,111,105,100,115,32,105,115,115,117,101,115,32,119,105,116,104,32,116,104,101,32,96,116,121,112,101,111,102,96,32,111,112,101,114,97,116,111,114,92,110,32,32,32,32,32,32,47,47,32,105,110,32,83,97,102,97,114,105,32,57,32,119,104,105,99,104,32,114,101,116,117,114,110,115,32,39,111,98,106,101,99,116,39,32,102,111,114,32,116,121,112,101,100,32,97,114,114,97,121,115,32,97,110,100,32,111,116,104,101,114,32,99,111,110,115,116,114,117,99,116,111,114,115,46,92,110,32,32,32,32,32,32,118,97,114,32,116,97,103,32,61,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,97,103,32,61,61,32,102,117,110,99,84,97,103,32,124,124,32,116,97,103,32,61,61,32,103,101,110,84,97,103,32,124,124,32,116,97,103,32,61,61,32,97,115,121,110,99,84,97,103,32,124,124,32,116,97,103,32,61,61,32,112,114,111,120,121,84,97,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,110,32,105,110,116,101,103,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,98,97,115,101,100,32,111,110,92,110,32,32,32,32,32,42,32,91,96,78,117,109,98,101,114,46,105,115,73,110,116,101,103,101,114,96,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,78,117,109,98,101,114,47,105,115,73,110,116,101,103,101,114,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,110,32,105,110,116,101,103,101,114,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,73,110,116,101,103,101,114,40,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,73,110,116,101,103,101,114,40,78,117,109,98,101,114,46,77,73,78,95,86,65,76,85,69,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,73,110,116,101,103,101,114,40,73,110,102,105,110,105,116,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,73,110,116,101,103,101,114,40,39,51,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,73,110,116,101,103,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,110,117,109,98,101,114,39,32,38,38,32,118,97,108,117,101,32,61,61,32,116,111,73,110,116,101,103,101,114,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,118,97,108,105,100,32,97,114,114,97,121,45,108,105,107,101,32,108,101,110,103,116,104,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,111,111,115,101,108,121,32,98,97,115,101,100,32,111,110,92,110,32,32,32,32,32,42,32,91,96,84,111,76,101,110,103,116,104,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,116,111,108,101,110,103,116,104,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,118,97,108,105,100,32,108,101,110,103,116,104,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,76,101,110,103,116,104,40,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,76,101,110,103,116,104,40,78,117,109,98,101,114,46,77,73,78,95,86,65,76,85,69,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,76,101,110,103,116,104,40,73,110,102,105,110,105,116,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,76,101,110,103,116,104,40,39,51,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,76,101,110,103,116,104,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,110,117,109,98,101,114,39,32,38,38,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,62,32,45,49,32,38,38,32,118,97,108,117,101,32,37,32,49,32,61,61,32,48,32,38,38,32,118,97,108,117,101,32,60,61,32,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,116,104,101,92,110,32,32,32,32,32,42,32,91,108,97,110,103,117,97,103,101,32,116,121,112,101,93,40,104,116,116,112,58,47,47,119,119,119,46,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,101,99,109,97,115,99,114,105,112,116,45,108,97,110,103,117,97,103,101,45,116,121,112,101,115,41,92,110,32,32,32,32,32,42,32,111,102,32,96,79,98,106,101,99,116,96,46,32,40,101,46,103,46,32,97,114,114,97,121,115,44,32,102,117,110,99,116,105,111,110,115,44,32,111,98,106,101,99,116,115,44,32,114,101,103,101,120,101,115,44,32,96,110,101,119,32,78,117,109,98,101,114,40,48,41,96,44,32,97,110,100,32,96,110,101,119,32,83,116,114,105,110,103,40,39,39,41,96,41,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,110,32,111,98,106,101,99,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,79,98,106,101,99,116,40,123,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,79,98,106,101,99,116,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,79,98,106,101,99,116,40,95,46,110,111,111,112,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,79,98,106,101,99,116,40,110,117,108,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,79,98,106,101,99,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,116,121,112,101,111,102,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,33,61,32,110,117,108,108,32,38,38,32,40,116,121,112,101,32,61,61,32,39,111,98,106,101,99,116,39,32,124,124,32,116,121,112,101,32,61,61,32,39,102,117,110,99,116,105,111,110,39,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,111,98,106,101,99,116,45,108,105,107,101,46,32,65,32,118,97,108,117,101,32,105,115,32,111,98,106,101,99,116,45,108,105,107,101,32,105,102,32,105,116,39,115,32,110,111,116,32,96,110,117,108,108,96,92,110,32,32,32,32,32,42,32,97,110,100,32,104,97,115,32,97,32,96,116,121,112,101,111,102,96,32,114,101,115,117,108,116,32,111,102,32,92,34,111,98,106,101,99,116,92,34,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,111,98,106,101,99,116,45,108,105,107,101,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,79,98,106,101,99,116,76,105,107,101,40,123,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,79,98,106,101,99,116,76,105,107,101,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,79,98,106,101,99,116,76,105,107,101,40,95,46,110,111,111,112,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,79,98,106,101,99,116,76,105,107,101,40,110,117,108,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,33,61,32,110,117,108,108,32,38,38,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,111,98,106,101,99,116,39,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,97,32,96,77,97,112,96,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,109,97,112,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,77,97,112,40,110,101,119,32,77,97,112,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,77,97,112,40,110,101,119,32,87,101,97,107,77,97,112,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,115,77,97,112,32,61,32,110,111,100,101,73,115,77,97,112,32,63,32,98,97,115,101,85,110,97,114,121,40,110,111,100,101,73,115,77,97,112,41,32,58,32,98,97,115,101,73,115,77,97,112,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,80,101,114,102,111,114,109,115,32,97,32,112,97,114,116,105,97,108,32,100,101,101,112,32,99,111,109,112,97,114,105,115,111,110,32,98,101,116,119,101,101,110,32,96,111,98,106,101,99,116,96,32,97,110,100,32,96,115,111,117,114,99,101,96,32,116,111,92,110,32,32,32,32,32,42,32,100,101,116,101,114,109,105,110,101,32,105,102,32,96,111,98,106,101,99,116,96,32,99,111,110,116,97,105,110,115,32,101,113,117,105,118,97,108,101,110,116,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,101,113,117,105,118,97,108,101,110,116,32,116,111,32,96,95,46,109,97,116,99,104,101,115,96,32,119,104,101,110,32,96,115,111,117,114,99,101,96,32,105,115,92,110,32,32,32,32,32,42,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,80,97,114,116,105,97,108,32,99,111,109,112,97,114,105,115,111,110,115,32,119,105,108,108,32,109,97,116,99,104,32,101,109,112,116,121,32,97,114,114,97,121,32,97,110,100,32,101,109,112,116,121,32,111,98,106,101,99,116,32,96,115,111,117,114,99,101,96,92,110,32,32,32,32,32,42,32,118,97,108,117,101,115,32,97,103,97,105,110,115,116,32,97,110,121,32,97,114,114,97,121,32,111,114,32,111,98,106,101,99,116,32,118,97,108,117,101,44,32,114,101,115,112,101,99,116,105,118,101,108,121,46,32,83,101,101,32,96,95,46,105,115,69,113,117,97,108,96,92,110,32,32,32,32,32,42,32,102,111,114,32,97,32,108,105,115,116,32,111,102,32,115,117,112,112,111,114,116,101,100,32,118,97,108,117,101,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,32,116,111,32,109,97,116,99,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,111,98,106,101,99,116,96,32,105,115,32,97,32,109,97,116,99,104,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,77,97,116,99,104,40,111,98,106,101,99,116,44,32,123,32,39,98,39,58,32,50,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,77,97,116,99,104,40,111,98,106,101,99,116,44,32,123,32,39,98,39,58,32,49,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,77,97,116,99,104,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,61,32,115,111,117,114,99,101,32,124,124,32,98,97,115,101,73,115,77,97,116,99,104,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,103,101,116,77,97,116,99,104,68,97,116,97,40,115,111,117,114,99,101,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,105,115,77,97,116,99,104,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,99,117,115,116,111,109,105,122,101,114,96,32,119,104,105,99,104,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,116,111,32,99,111,109,112,97,114,101,32,118,97,108,117,101,115,46,32,73,102,32,96,99,117,115,116,111,109,105,122,101,114,96,32,114,101,116,117,114,110,115,32,96,117,110,100,101,102,105,110,101,100,96,44,32,99,111,109,112,97,114,105,115,111,110,115,92,110,32,32,32,32,32,42,32,97,114,101,32,104,97,110,100,108,101,100,32,98,121,32,116,104,101,32,109,101,116,104,111,100,32,105,110,115,116,101,97,100,46,32,84,104,101,32,96,99,117,115,116,111,109,105,122,101,114,96,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,102,105,118,101,92,110,32,32,32,32,32,42,32,97,114,103,117,109,101,110,116,115,58,32,40,111,98,106,86,97,108,117,101,44,32,115,114,99,86,97,108,117,101,44,32,105,110,100,101,120,124,107,101,121,44,32,111,98,106,101,99,116,44,32,115,111,117,114,99,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,32,116,111,32,109,97,116,99,104,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,111,98,106,101,99,116,96,32,105,115,32,97,32,109,97,116,99,104,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,105,115,71,114,101,101,116,105,110,103,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,47,94,104,40,63,58,105,124,101,108,108,111,41,36,47,46,116,101,115,116,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,105,122,101,114,40,111,98,106,86,97,108,117,101,44,32,115,114,99,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,105,102,32,40,105,115,71,114,101,101,116,105,110,103,40,111,98,106,86,97,108,117,101,41,32,38,38,32,105,115,71,114,101,101,116,105,110,103,40,115,114,99,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,42,32,32,32,125,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,103,114,101,101,116,105,110,103,39,58,32,39,104,101,108,108,111,39,32,125,59,92,110,32,32,32,32,32,42,32,118,97,114,32,115,111,117,114,99,101,32,61,32,123,32,39,103,114,101,101,116,105,110,103,39,58,32,39,104,105,39,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,77,97,116,99,104,87,105,116,104,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,77,97,116,99,104,87,105,116,104,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,99,117,115,116,111,109,105,122,101,114,32,61,32,116,121,112,101,111,102,32,99,117,115,116,111,109,105,122,101,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,99,117,115,116,111,109,105,122,101,114,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,73,115,77,97,116,99,104,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,103,101,116,77,97,116,99,104,68,97,116,97,40,115,111,117,114,99,101,41,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,96,78,97,78,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,98,97,115,101,100,32,111,110,92,110,32,32,32,32,32,42,32,91,96,78,117,109,98,101,114,46,105,115,78,97,78,96,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,78,117,109,98,101,114,47,105,115,78,97,78,41,32,97,110,100,32,105,115,32,110,111,116,32,116,104,101,32,115,97,109,101,32,97,115,92,110,32,32,32,32,32,42,32,103,108,111,98,97,108,32,91,96,105,115,78,97,78,96,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,105,115,78,97,78,41,32,119,104,105,99,104,32,114,101,116,117,114,110,115,32,96,116,114,117,101,96,32,102,111,114,92,110,32,32,32,32,32,42,32,96,117,110,100,101,102,105,110,101,100,96,32,97,110,100,32,111,116,104,101,114,32,110,111,110,45,110,117,109,98,101,114,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,96,78,97,78,96,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,78,97,78,40,78,97,78,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,78,97,78,40,110,101,119,32,78,117,109,98,101,114,40,78,97,78,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,105,115,78,97,78,40,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,78,97,78,40,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,78,97,78,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,65,110,32,96,78,97,78,96,32,112,114,105,109,105,116,105,118,101,32,105,115,32,116,104,101,32,111,110,108,121,32,118,97,108,117,101,32,116,104,97,116,32,105,115,32,110,111,116,32,101,113,117,97,108,32,116,111,32,105,116,115,101,108,102,46,92,110,32,32,32,32,32,32,47,47,32,80,101,114,102,111,114,109,32,116,104,101,32,96,116,111,83,116,114,105,110,103,84,97,103,96,32,99,104,101,99,107,32,102,105,114,115,116,32,116,111,32,97,118,111,105,100,32,101,114,114,111,114,115,32,119,105,116,104,32,115,111,109,101,92,110,32,32,32,32,32,32,47,47,32,65,99,116,105,118,101,88,32,111,98,106,101,99,116,115,32,105,110,32,73,69,46,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,78,117,109,98,101,114,40,118,97,108,117,101,41,32,38,38,32,118,97,108,117,101,32,33,61,32,43,118,97,108,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,112,114,105,115,116,105,110,101,32,110,97,116,105,118,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,99,97,110,39,116,32,114,101,108,105,97,98,108,121,32,100,101,116,101,99,116,32,110,97,116,105,118,101,32,102,117,110,99,116,105,111,110,115,32,105,110,32,116,104,101,32,112,114,101,115,101,110,99,101,92,110,32,32,32,32,32,42,32,111,102,32,116,104,101,32,99,111,114,101,45,106,115,32,112,97,99,107,97,103,101,32,98,101,99,97,117,115,101,32,99,111,114,101,45,106,115,32,99,105,114,99,117,109,118,101,110,116,115,32,116,104,105,115,32,107,105,110,100,32,111,102,32,100,101,116,101,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,68,101,115,112,105,116,101,32,109,117,108,116,105,112,108,101,32,114,101,113,117,101,115,116,115,44,32,116,104,101,32,99,111,114,101,45,106,115,32,109,97,105,110,116,97,105,110,101,114,32,104,97,115,32,109,97,100,101,32,105,116,32,99,108,101,97,114,58,32,97,110,121,92,110,32,32,32,32,32,42,32,97,116,116,101,109,112,116,32,116,111,32,102,105,120,32,116,104,101,32,100,101,116,101,99,116,105,111,110,32,119,105,108,108,32,98,101,32,111,98,115,116,114,117,99,116,101,100,46,32,65,115,32,97,32,114,101,115,117,108,116,44,32,119,101,39,114,101,32,108,101,102,116,92,110,32,32,32,32,32,42,32,119,105,116,104,32,108,105,116,116,108,101,32,99,104,111,105,99,101,32,98,117,116,32,116,111,32,116,104,114,111,119,32,97,110,32,101,114,114,111,114,46,32,85,110,102,111,114,116,117,110,97,116,101,108,121,44,32,116,104,105,115,32,97,108,115,111,32,97,102,102,101,99,116,115,92,110,32,32,32,32,32,42,32,112,97,99,107,97,103,101,115,44,32,108,105,107,101,32,91,98,97,98,101,108,45,112,111,108,121,102,105,108,108,93,40,104,116,116,112,115,58,47,47,119,119,119,46,110,112,109,106,115,46,99,111,109,47,112,97,99,107,97,103,101,47,98,97,98,101,108,45,112,111,108,121,102,105,108,108,41,44,92,110,32,32,32,32,32,42,32,119,104,105,99,104,32,114,101,108,121,32,111,110,32,99,111,114,101,45,106,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,110,97,116,105,118,101,32,102,117,110,99,116,105,111,110,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,78,97,116,105,118,101,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,78,97,116,105,118,101,40,95,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,78,97,116,105,118,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,77,97,115,107,97,98,108,101,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,67,79,82,69,95,69,82,82,79,82,95,84,69,88,84,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,73,115,78,97,116,105,118,101,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,96,110,117,108,108,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,96,110,117,108,108,96,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,78,117,108,108,40,110,117,108,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,78,117,108,108,40,118,111,105,100,32,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,78,117,108,108,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,96,110,117,108,108,96,32,111,114,32,96,117,110,100,101,102,105,110,101,100,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,110,117,108,108,105,115,104,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,78,105,108,40,110,117,108,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,78,105,108,40,118,111,105,100,32,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,78,105,108,40,78,97,78,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,78,105,108,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,97,32,96,78,117,109,98,101,114,96,32,112,114,105,109,105,116,105,118,101,32,111,114,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,111,32,101,120,99,108,117,100,101,32,96,73,110,102,105,110,105,116,121,96,44,32,96,45,73,110,102,105,110,105,116,121,96,44,32,97,110,100,32,96,78,97,78,96,44,32,119,104,105,99,104,32,97,114,101,92,110,32,32,32,32,32,42,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,110,117,109,98,101,114,115,44,32,117,115,101,32,116,104,101,32,96,95,46,105,115,70,105,110,105,116,101,96,32,109,101,116,104,111,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,110,117,109,98,101,114,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,78,117,109,98,101,114,40,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,78,117,109,98,101,114,40,78,117,109,98,101,114,46,77,73,78,95,86,65,76,85,69,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,78,117,109,98,101,114,40,73,110,102,105,110,105,116,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,78,117,109,98,101,114,40,39,51,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,78,117,109,98,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,110,117,109,98,101,114,39,32,124,124,92,110,32,32,32,32,32,32,32,32,40,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,32,61,61,32,110,117,109,98,101,114,84,97,103,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,112,108,97,105,110,32,111,98,106,101,99,116,44,32,116,104,97,116,32,105,115,44,32,97,110,32,111,98,106,101,99,116,32,99,114,101,97,116,101,100,32,98,121,32,116,104,101,92,110,32,32,32,32,32,42,32,96,79,98,106,101,99,116,96,32,99,111,110,115,116,114,117,99,116,111,114,32,111,114,32,111,110,101,32,119,105,116,104,32,97,32,96,91,91,80,114,111,116,111,116,121,112,101,93,93,96,32,111,102,32,96,110,117,108,108,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,56,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,112,108,97,105,110,32,111,98,106,101,99,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,97,32,61,32,49,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,110,101,119,32,70,111,111,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,123,32,39,120,39,58,32,48,44,32,39,121,39,58,32,48,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,124,124,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,32,33,61,32,111,98,106,101,99,116,84,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,112,114,111,116,111,32,61,32,103,101,116,80,114,111,116,111,116,121,112,101,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,112,114,111,116,111,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,67,116,111,114,32,61,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,112,114,111,116,111,44,32,39,99,111,110,115,116,114,117,99,116,111,114,39,41,32,38,38,32,112,114,111,116,111,46,99,111,110,115,116,114,117,99,116,111,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,67,116,111,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,67,116,111,114,32,105,110,115,116,97,110,99,101,111,102,32,67,116,111,114,32,38,38,92,110,32,32,32,32,32,32,32,32,102,117,110,99,84,111,83,116,114,105,110,103,46,99,97,108,108,40,67,116,111,114,41,32,61,61,32,111,98,106,101,99,116,67,116,111,114,83,116,114,105,110,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,97,32,96,82,101,103,69,120,112,96,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,114,101,103,101,120,112,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,82,101,103,69,120,112,40,47,97,98,99,47,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,82,101,103,69,120,112,40,39,47,97,98,99,47,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,115,82,101,103,69,120,112,32,61,32,110,111,100,101,73,115,82,101,103,69,120,112,32,63,32,98,97,115,101,85,110,97,114,121,40,110,111,100,101,73,115,82,101,103,69,120,112,41,32,58,32,98,97,115,101,73,115,82,101,103,69,120,112,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,115,97,102,101,32,105,110,116,101,103,101,114,46,32,65,110,32,105,110,116,101,103,101,114,32,105,115,32,115,97,102,101,32,105,102,32,105,116,39,115,32,97,110,32,73,69,69,69,45,55,53,52,92,110,32,32,32,32,32,42,32,100,111,117,98,108,101,32,112,114,101,99,105,115,105,111,110,32,110,117,109,98,101,114,32,119,104,105,99,104,32,105,115,110,39,116,32,116,104,101,32,114,101,115,117,108,116,32,111,102,32,97,32,114,111,117,110,100,101,100,32,117,110,115,97,102,101,32,105,110,116,101,103,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,98,97,115,101,100,32,111,110,92,110,32,32,32,32,32,42,32,91,96,78,117,109,98,101,114,46,105,115,83,97,102,101,73,110,116,101,103,101,114,96,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,78,117,109,98,101,114,47,105,115,83,97,102,101,73,110,116,101,103,101,114,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,115,97,102,101,32,105,110,116,101,103,101,114,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,83,97,102,101,73,110,116,101,103,101,114,40,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,83,97,102,101,73,110,116,101,103,101,114,40,78,117,109,98,101,114,46,77,73,78,95,86,65,76,85,69,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,83,97,102,101,73,110,116,101,103,101,114,40,73,110,102,105,110,105,116,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,83,97,102,101,73,110,116,101,103,101,114,40,39,51,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,83,97,102,101,73,110,116,101,103,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,73,110,116,101,103,101,114,40,118,97,108,117,101,41,32,38,38,32,118,97,108,117,101,32,62,61,32,45,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,32,38,38,32,118,97,108,117,101,32,60,61,32,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,97,32,96,83,101,116,96,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,115,101,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,83,101,116,40,110,101,119,32,83,101,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,83,101,116,40,110,101,119,32,87,101,97,107,83,101,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,115,83,101,116,32,61,32,110,111,100,101,73,115,83,101,116,32,63,32,98,97,115,101,85,110,97,114,121,40,110,111,100,101,73,115,83,101,116,41,32,58,32,98,97,115,101,73,115,83,101,116,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,97,32,96,83,116,114,105,110,103,96,32,112,114,105,109,105,116,105,118,101,32,111,114,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,115,116,114,105,110,103,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,83,116,114,105,110,103,40,39,97,98,99,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,83,116,114,105,110,103,40,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,83,116,114,105,110,103,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,115,116,114,105,110,103,39,32,124,124,92,110,32,32,32,32,32,32,32,32,40,33,105,115,65,114,114,97,121,40,118,97,108,117,101,41,32,38,38,32,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,32,61,61,32,115,116,114,105,110,103,84,97,103,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,97,32,96,83,121,109,98,111,108,96,32,112,114,105,109,105,116,105,118,101,32,111,114,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,115,121,109,98,111,108,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,83,121,109,98,111,108,40,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,83,121,109,98,111,108,40,39,97,98,99,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,83,121,109,98,111,108,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,115,121,109,98,111,108,39,32,124,124,92,110,32,32,32,32,32,32,32,32,40,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,32,61,61,32,115,121,109,98,111,108,84,97,103,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,97,32,116,121,112,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,116,121,112,101,100,32,97,114,114,97,121,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,84,121,112,101,100,65,114,114,97,121,40,110,101,119,32,85,105,110,116,56,65,114,114,97,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,84,121,112,101,100,65,114,114,97,121,40,91,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,115,84,121,112,101,100,65,114,114,97,121,32,61,32,110,111,100,101,73,115,84,121,112,101,100,65,114,114,97,121,32,63,32,98,97,115,101,85,110,97,114,121,40,110,111,100,101,73,115,84,121,112,101,100,65,114,114,97,121,41,32,58,32,98,97,115,101,73,115,84,121,112,101,100,65,114,114,97,121,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,96,117,110,100,101,102,105,110,101,100,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,96,117,110,100,101,102,105,110,101,100,96,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,85,110,100,101,102,105,110,101,100,40,118,111,105,100,32,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,85,110,100,101,102,105,110,101,100,40,110,117,108,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,85,110,100,101,102,105,110,101,100,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,97,32,96,87,101,97,107,77,97,112,96,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,119,101,97,107,32,109,97,112,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,87,101,97,107,77,97,112,40,110,101,119,32,87,101,97,107,77,97,112,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,87,101,97,107,77,97,112,40,110,101,119,32,77,97,112,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,87,101,97,107,77,97,112,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,103,101,116,84,97,103,40,118,97,108,117,101,41,32,61,61,32,119,101,97,107,77,97,112,84,97,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,99,108,97,115,115,105,102,105,101,100,32,97,115,32,97,32,96,87,101,97,107,83,101,116,96,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,97,32,119,101,97,107,32,115,101,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,87,101,97,107,83,101,116,40,110,101,119,32,87,101,97,107,83,101,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,115,87,101,97,107,83,101,116,40,110,101,119,32,83,101,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,87,101,97,107,83,101,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,76,105,107,101,40,118,97,108,117,101,41,32,38,38,32,98,97,115,101,71,101,116,84,97,103,40,118,97,108,117,101,41,32,61,61,32,119,101,97,107,83,101,116,84,97,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,108,101,115,115,32,116,104,97,110,32,96,111,116,104,101,114,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,57,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,108,101,115,115,32,116,104,97,110,32,96,111,116,104,101,114,96,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,103,116,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,108,116,40,49,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,108,116,40,51,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,108,116,40,51,44,32,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,108,116,32,61,32,99,114,101,97,116,101,82,101,108,97,116,105,111,110,97,108,79,112,101,114,97,116,105,111,110,40,98,97,115,101,76,116,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,108,101,115,115,32,116,104,97,110,32,111,114,32,101,113,117,97,108,32,116,111,32,96,111,116,104,101,114,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,57,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,111,116,104,101,114,32,84,104,101,32,111,116,104,101,114,32,118,97,108,117,101,32,116,111,32,99,111,109,112,97,114,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,108,101,115,115,32,116,104,97,110,32,111,114,32,101,113,117,97,108,32,116,111,92,110,32,32,32,32,32,42,32,32,96,111,116,104,101,114,96,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,103,116,101,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,108,116,101,40,49,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,108,116,101,40,51,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,108,116,101,40,51,44,32,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,108,116,101,32,61,32,99,114,101,97,116,101,82,101,108,97,116,105,111,110,97,108,79,112,101,114,97,116,105,111,110,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,111,116,104,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,60,61,32,111,116,104,101,114,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,118,97,108,117,101,96,32,116,111,32,97,110,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,65,114,114,97,121,40,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,65,114,114,97,121,40,39,97,98,99,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,97,39,44,32,39,98,39,44,32,39,99,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,65,114,114,97,121,40,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,65,114,114,97,121,40,110,117,108,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,65,114,114,97,121,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,76,105,107,101,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,83,116,114,105,110,103,40,118,97,108,117,101,41,32,63,32,115,116,114,105,110,103,84,111,65,114,114,97,121,40,118,97,108,117,101,41,32,58,32,99,111,112,121,65,114,114,97,121,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,115,121,109,73,116,101,114,97,116,111,114,32,38,38,32,118,97,108,117,101,91,115,121,109,73,116,101,114,97,116,111,114,93,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,114,97,116,111,114,84,111,65,114,114,97,121,40,118,97,108,117,101,91,115,121,109,73,116,101,114,97,116,111,114,93,40,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,116,97,103,32,61,32,103,101,116,84,97,103,40,118,97,108,117,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,102,117,110,99,32,61,32,116,97,103,32,61,61,32,109,97,112,84,97,103,32,63,32,109,97,112,84,111,65,114,114,97,121,32,58,32,40,116,97,103,32,61,61,32,115,101,116,84,97,103,32,63,32,115,101,116,84,111,65,114,114,97,121,32,58,32,118,97,108,117,101,115,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,118,97,108,117,101,96,32,116,111,32,97,32,102,105,110,105,116,101,32,110,117,109,98,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,49,50,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,110,117,109,98,101,114,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,70,105,110,105,116,101,40,51,46,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,46,50,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,70,105,110,105,116,101,40,78,117,109,98,101,114,46,77,73,78,95,86,65,76,85,69,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,53,101,45,51,50,52,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,70,105,110,105,116,101,40,73,110,102,105,110,105,116,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,49,46,55,57,55,54,57,51,49,51,52,56,54,50,51,49,53,55,101,43,51,48,56,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,70,105,110,105,116,101,40,39,51,46,50,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,46,50,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,70,105,110,105,116,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,48,32,63,32,118,97,108,117,101,32,58,32,48,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,116,111,78,117,109,98,101,114,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,73,78,70,73,78,73,84,89,32,124,124,32,118,97,108,117,101,32,61,61,61,32,45,73,78,70,73,78,73,84,89,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,105,103,110,32,61,32,40,118,97,108,117,101,32,60,32,48,32,63,32,45,49,32,58,32,49,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,105,103,110,32,42,32,77,65,88,95,73,78,84,69,71,69,82,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,118,97,108,117,101,32,63,32,118,97,108,117,101,32,58,32,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,118,97,108,117,101,96,32,116,111,32,97,110,32,105,110,116,101,103,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,111,111,115,101,108,121,32,98,97,115,101,100,32,111,110,92,110,32,32,32,32,32,42,32,91,96,84,111,73,110,116,101,103,101,114,96,93,40,104,116,116,112,58,47,47,119,119,119,46,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,116,111,105,110,116,101,103,101,114,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,105,110,116,101,103,101,114,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,73,110,116,101,103,101,114,40,51,46,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,73,110,116,101,103,101,114,40,78,117,109,98,101,114,46,77,73,78,95,86,65,76,85,69,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,48,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,73,110,116,101,103,101,114,40,73,110,102,105,110,105,116,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,49,46,55,57,55,54,57,51,49,51,52,56,54,50,51,49,53,55,101,43,51,48,56,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,73,110,116,101,103,101,114,40,39,51,46,50,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,73,110,116,101,103,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,116,111,70,105,110,105,116,101,40,118,97,108,117,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,109,97,105,110,100,101,114,32,61,32,114,101,115,117,108,116,32,37,32,49,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,61,61,61,32,114,101,115,117,108,116,32,63,32,40,114,101,109,97,105,110,100,101,114,32,63,32,114,101,115,117,108,116,32,45,32,114,101,109,97,105,110,100,101,114,32,58,32,114,101,115,117,108,116,41,32,58,32,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,118,97,108,117,101,96,32,116,111,32,97,110,32,105,110,116,101,103,101,114,32,115,117,105,116,97,98,108,101,32,102,111,114,32,117,115,101,32,97,115,32,116,104,101,32,108,101,110,103,116,104,32,111,102,32,97,110,92,110,32,32,32,32,32,42,32,97,114,114,97,121,45,108,105,107,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,98,97,115,101,100,32,111,110,92,110,32,32,32,32,32,42,32,91,96,84,111,76,101,110,103,116,104,96,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,116,111,108,101,110,103,116,104,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,105,110,116,101,103,101,114,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,76,101,110,103,116,104,40,51,46,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,76,101,110,103,116,104,40,78,117,109,98,101,114,46,77,73,78,95,86,65,76,85,69,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,48,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,76,101,110,103,116,104,40,73,110,102,105,110,105,116,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,52,50,57,52,57,54,55,50,57,53,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,76,101,110,103,116,104,40,39,51,46,50,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,76,101,110,103,116,104,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,63,32,98,97,115,101,67,108,97,109,112,40,116,111,73,110,116,101,103,101,114,40,118,97,108,117,101,41,44,32,48,44,32,77,65,88,95,65,82,82,65,89,95,76,69,78,71,84,72,41,32,58,32,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,118,97,108,117,101,96,32,116,111,32,97,32,110,117,109,98,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,112,114,111,99,101,115,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,117,109,98,101,114,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,78,117,109,98,101,114,40,51,46,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,46,50,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,78,117,109,98,101,114,40,78,117,109,98,101,114,46,77,73,78,95,86,65,76,85,69,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,53,101,45,51,50,52,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,78,117,109,98,101,114,40,73,110,102,105,110,105,116,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,73,110,102,105,110,105,116,121,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,78,117,109,98,101,114,40,39,51,46,50,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,46,50,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,78,117,109,98,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,110,117,109,98,101,114,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,83,121,109,98,111,108,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,78,65,78,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,116,104,101,114,32,61,32,116,121,112,101,111,102,32,118,97,108,117,101,46,118,97,108,117,101,79,102,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,118,97,108,117,101,46,118,97,108,117,101,79,102,40,41,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,105,115,79,98,106,101,99,116,40,111,116,104,101,114,41,32,63,32,40,111,116,104,101,114,32,43,32,39,39,41,32,58,32,111,116,104,101,114,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,33,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,48,32,63,32,118,97,108,117,101,32,58,32,43,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,98,97,115,101,84,114,105,109,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,115,66,105,110,97,114,121,32,61,32,114,101,73,115,66,105,110,97,114,121,46,116,101,115,116,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,105,115,66,105,110,97,114,121,32,124,124,32,114,101,73,115,79,99,116,97,108,46,116,101,115,116,40,118,97,108,117,101,41,41,92,110,32,32,32,32,32,32,32,32,63,32,102,114,101,101,80,97,114,115,101,73,110,116,40,118,97,108,117,101,46,115,108,105,99,101,40,50,41,44,32,105,115,66,105,110,97,114,121,32,63,32,50,32,58,32,56,41,92,110,32,32,32,32,32,32,32,32,58,32,40,114,101,73,115,66,97,100,72,101,120,46,116,101,115,116,40,118,97,108,117,101,41,32,63,32,78,65,78,32,58,32,43,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,118,97,108,117,101,96,32,116,111,32,97,32,112,108,97,105,110,32,111,98,106,101,99,116,32,102,108,97,116,116,101,110,105,110,103,32,105,110,104,101,114,105,116,101,100,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,92,110,32,32,32,32,32,42,32,107,101,121,101,100,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,96,118,97,108,117,101,96,32,116,111,32,111,119,110,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,116,104,101,32,112,108,97,105,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,112,108,97,105,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,98,32,61,32,50,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,111,46,112,114,111,116,111,116,121,112,101,46,99,32,61,32,51,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,97,115,115,105,103,110,40,123,32,39,97,39,58,32,49,32,125,44,32,110,101,119,32,70,111,111,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,97,115,115,105,103,110,40,123,32,39,97,39,58,32,49,32,125,44,32,95,46,116,111,80,108,97,105,110,79,98,106,101,99,116,40,110,101,119,32,70,111,111,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,44,32,39,99,39,58,32,51,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,112,121,79,98,106,101,99,116,40,118,97,108,117,101,44,32,107,101,121,115,73,110,40,118,97,108,117,101,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,118,97,108,117,101,96,32,116,111,32,97,32,115,97,102,101,32,105,110,116,101,103,101,114,46,32,65,32,115,97,102,101,32,105,110,116,101,103,101,114,32,99,97,110,32,98,101,32,99,111,109,112,97,114,101,100,32,97,110,100,92,110,32,32,32,32,32,42,32,114,101,112,114,101,115,101,110,116,101,100,32,99,111,114,114,101,99,116,108,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,105,110,116,101,103,101,114,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,83,97,102,101,73,110,116,101,103,101,114,40,51,46,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,83,97,102,101,73,110,116,101,103,101,114,40,78,117,109,98,101,114,46,77,73,78,95,86,65,76,85,69,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,48,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,83,97,102,101,73,110,116,101,103,101,114,40,73,110,102,105,110,105,116,121,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,83,97,102,101,73,110,116,101,103,101,114,40,39,51,46,50,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,83,97,102,101,73,110,116,101,103,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,67,108,97,109,112,40,116,111,73,110,116,101,103,101,114,40,118,97,108,117,101,41,44,32,45,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,44,32,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,41,92,110,32,32,32,32,32,32,32,32,58,32,40,118,97,108,117,101,32,61,61,61,32,48,32,63,32,118,97,108,117,101,32,58,32,48,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,118,97,108,117,101,96,32,116,111,32,97,32,115,116,114,105,110,103,46,32,65,110,32,101,109,112,116,121,32,115,116,114,105,110,103,32,105,115,32,114,101,116,117,114,110,101,100,32,102,111,114,32,96,110,117,108,108,96,92,110,32,32,32,32,32,42,32,97,110,100,32,96,117,110,100,101,102,105,110,101,100,96,32,118,97,108,117,101,115,46,32,84,104,101,32,115,105,103,110,32,111,102,32,96,45,48,96,32,105,115,32,112,114,101,115,101,114,118,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,83,116,114,105,110,103,40,110,117,108,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,83,116,114,105,110,103,40,45,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,45,48,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,83,116,114,105,110,103,40,91,49,44,32,50,44,32,51,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,49,44,50,44,51,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,83,116,114,105,110,103,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,32,110,117,108,108,32,63,32,39,39,32,58,32,98,97,115,101,84,111,83,116,114,105,110,103,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,115,115,105,103,110,115,32,111,119,110,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,115,111,117,114,99,101,32,111,98,106,101,99,116,115,32,116,111,32,116,104,101,92,110,32,32,32,32,32,42,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,32,83,111,117,114,99,101,32,111,98,106,101,99,116,115,32,97,114,101,32,97,112,112,108,105,101,100,32,102,114,111,109,32,108,101,102,116,32,116,111,32,114,105,103,104,116,46,92,110,32,32,32,32,32,42,32,83,117,98,115,101,113,117,101,110,116,32,115,111,117,114,99,101,115,32,111,118,101,114,119,114,105,116,101,32,112,114,111,112,101,114,116,121,32,97,115,115,105,103,110,109,101,110,116,115,32,111,102,32,112,114,101,118,105,111,117,115,32,115,111,117,114,99,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,111,98,106,101,99,116,96,32,97,110,100,32,105,115,32,108,111,111,115,101,108,121,32,98,97,115,101,100,32,111,110,92,110,32,32,32,32,32,42,32,91,96,79,98,106,101,99,116,46,97,115,115,105,103,110,96,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,79,98,106,101,99,116,47,97,115,115,105,103,110,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,79,98,106,101,99,116,125,32,91,115,111,117,114,99,101,115,93,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,97,115,115,105,103,110,73,110,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,97,32,61,32,49,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,66,97,114,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,99,32,61,32,51,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,111,46,112,114,111,116,111,116,121,112,101,46,98,32,61,32,50,59,92,110,32,32,32,32,32,42,32,66,97,114,46,112,114,111,116,111,116,121,112,101,46,100,32,61,32,52,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,97,115,115,105,103,110,40,123,32,39,97,39,58,32,48,32,125,44,32,110,101,119,32,70,111,111,44,32,110,101,119,32,66,97,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,49,44,32,39,99,39,58,32,51,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,97,115,115,105,103,110,32,61,32,99,114,101,97,116,101,65,115,115,105,103,110,101,114,40,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,80,114,111,116,111,116,121,112,101,40,115,111,117,114,99,101,41,32,124,124,32,105,115,65,114,114,97,121,76,105,107,101,40,115,111,117,114,99,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,112,121,79,98,106,101,99,116,40,115,111,117,114,99,101,44,32,107,101,121,115,40,115,111,117,114,99,101,41,44,32,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,115,111,117,114,99,101,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,115,115,105,103,110,86,97,108,117,101,40,111,98,106,101,99,116,44,32,107,101,121,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,97,115,115,105,103,110,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,105,116,101,114,97,116,101,115,32,111,118,101,114,32,111,119,110,32,97,110,100,92,110,32,32,32,32,32,42,32,105,110,104,101,114,105,116,101,100,32,115,111,117,114,99,101,32,112,114,111,112,101,114,116,105,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,97,108,105,97,115,32,101,120,116,101,110,100,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,79,98,106,101,99,116,125,32,91,115,111,117,114,99,101,115,93,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,97,115,115,105,103,110,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,97,32,61,32,49,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,66,97,114,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,99,32,61,32,51,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,111,46,112,114,111,116,111,116,121,112,101,46,98,32,61,32,50,59,92,110,32,32,32,32,32,42,32,66,97,114,46,112,114,111,116,111,116,121,112,101,46,100,32,61,32,52,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,97,115,115,105,103,110,73,110,40,123,32,39,97,39,58,32,48,32,125,44,32,110,101,119,32,70,111,111,44,32,110,101,119,32,66,97,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,44,32,39,99,39,58,32,51,44,32,39,100,39,58,32,52,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,97,115,115,105,103,110,73,110,32,61,32,99,114,101,97,116,101,65,115,115,105,103,110,101,114,40,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,99,111,112,121,79,98,106,101,99,116,40,115,111,117,114,99,101,44,32,107,101,121,115,73,110,40,115,111,117,114,99,101,41,44,32,111,98,106,101,99,116,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,97,115,115,105,103,110,73,110,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,99,117,115,116,111,109,105,122,101,114,96,92,110,32,32,32,32,32,42,32,119,104,105,99,104,32,105,115,32,105,110,118,111,107,101,100,32,116,111,32,112,114,111,100,117,99,101,32,116,104,101,32,97,115,115,105,103,110,101,100,32,118,97,108,117,101,115,46,32,73,102,32,96,99,117,115,116,111,109,105,122,101,114,96,32,114,101,116,117,114,110,115,92,110,32,32,32,32,32,42,32,96,117,110,100,101,102,105,110,101,100,96,44,32,97,115,115,105,103,110,109,101,110,116,32,105,115,32,104,97,110,100,108,101,100,32,98,121,32,116,104,101,32,109,101,116,104,111,100,32,105,110,115,116,101,97,100,46,32,84,104,101,32,96,99,117,115,116,111,109,105,122,101,114,96,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,102,105,118,101,32,97,114,103,117,109,101,110,116,115,58,32,40,111,98,106,86,97,108,117,101,44,32,115,114,99,86,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,44,32,115,111,117,114,99,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,97,108,105,97,115,32,101,120,116,101,110,100,87,105,116,104,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,79,98,106,101,99,116,125,32,115,111,117,114,99,101,115,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,97,115,115,105,103,110,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,97,115,115,105,103,110,87,105,116,104,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,105,122,101,114,40,111,98,106,86,97,108,117,101,44,32,115,114,99,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,95,46,105,115,85,110,100,101,102,105,110,101,100,40,111,98,106,86,97,108,117,101,41,32,63,32,115,114,99,86,97,108,117,101,32,58,32,111,98,106,86,97,108,117,101,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,100,101,102,97,117,108,116,115,32,61,32,95,46,112,97,114,116,105,97,108,82,105,103,104,116,40,95,46,97,115,115,105,103,110,73,110,87,105,116,104,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,100,101,102,97,117,108,116,115,40,123,32,39,97,39,58,32,49,32,125,44,32,123,32,39,98,39,58,32,50,32,125,44,32,123,32,39,97,39,58,32,51,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,97,115,115,105,103,110,73,110,87,105,116,104,32,61,32,99,114,101,97,116,101,65,115,115,105,103,110,101,114,40,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,115,114,99,73,110,100,101,120,44,32,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,99,111,112,121,79,98,106,101,99,116,40,115,111,117,114,99,101,44,32,107,101,121,115,73,110,40,115,111,117,114,99,101,41,44,32,111,98,106,101,99,116,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,97,115,115,105,103,110,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,99,117,115,116,111,109,105,122,101,114,96,92,110,32,32,32,32,32,42,32,119,104,105,99,104,32,105,115,32,105,110,118,111,107,101,100,32,116,111,32,112,114,111,100,117,99,101,32,116,104,101,32,97,115,115,105,103,110,101,100,32,118,97,108,117,101,115,46,32,73,102,32,96,99,117,115,116,111,109,105,122,101,114,96,32,114,101,116,117,114,110,115,92,110,32,32,32,32,32,42,32,96,117,110,100,101,102,105,110,101,100,96,44,32,97,115,115,105,103,110,109,101,110,116,32,105,115,32,104,97,110,100,108,101,100,32,98,121,32,116,104,101,32,109,101,116,104,111,100,32,105,110,115,116,101,97,100,46,32,84,104,101,32,96,99,117,115,116,111,109,105,122,101,114,96,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,102,105,118,101,32,97,114,103,117,109,101,110,116,115,58,32,40,111,98,106,86,97,108,117,101,44,32,115,114,99,86,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,44,32,115,111,117,114,99,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,79,98,106,101,99,116,125,32,115,111,117,114,99,101,115,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,97,115,115,105,103,110,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,97,115,115,105,103,110,73,110,87,105,116,104,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,105,122,101,114,40,111,98,106,86,97,108,117,101,44,32,115,114,99,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,95,46,105,115,85,110,100,101,102,105,110,101,100,40,111,98,106,86,97,108,117,101,41,32,63,32,115,114,99,86,97,108,117,101,32,58,32,111,98,106,86,97,108,117,101,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,100,101,102,97,117,108,116,115,32,61,32,95,46,112,97,114,116,105,97,108,82,105,103,104,116,40,95,46,97,115,115,105,103,110,87,105,116,104,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,100,101,102,97,117,108,116,115,40,123,32,39,97,39,58,32,49,32,125,44,32,123,32,39,98,39,58,32,50,32,125,44,32,123,32,39,97,39,58,32,51,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,97,115,115,105,103,110,87,105,116,104,32,61,32,99,114,101,97,116,101,65,115,115,105,103,110,101,114,40,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,115,114,99,73,110,100,101,120,44,32,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,99,111,112,121,79,98,106,101,99,116,40,115,111,117,114,99,101,44,32,107,101,121,115,40,115,111,117,114,99,101,41,44,32,111,98,106,101,99,116,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,118,97,108,117,101,115,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,116,111,32,96,112,97,116,104,115,96,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,49,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,40,115,116,114,105,110,103,124,115,116,114,105,110,103,91,93,41,125,32,91,112,97,116,104,115,93,32,84,104,101,32,112,114,111,112,101,114,116,121,32,112,97,116,104,115,32,116,111,32,112,105,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,112,105,99,107,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,91,123,32,39,98,39,58,32,123,32,39,99,39,58,32,51,32,125,32,125,44,32,52,93,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,97,116,40,111,98,106,101,99,116,44,32,91,39,97,91,48,93,46,98,46,99,39,44,32,39,97,91,49,93,39,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,51,44,32,52,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,97,116,32,61,32,102,108,97,116,82,101,115,116,40,98,97,115,101,65,116,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,111,98,106,101,99,116,32,116,104,97,116,32,105,110,104,101,114,105,116,115,32,102,114,111,109,32,116,104,101,32,96,112,114,111,116,111,116,121,112,101,96,32,111,98,106,101,99,116,46,32,73,102,32,97,92,110,32,32,32,32,32,42,32,96,112,114,111,112,101,114,116,105,101,115,96,32,111,98,106,101,99,116,32,105,115,32,103,105,118,101,110,44,32,105,116,115,32,111,119,110,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,32,42,32,97,114,101,32,97,115,115,105,103,110,101,100,32,116,111,32,116,104,101,32,99,114,101,97,116,101,100,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,112,114,111,116,111,116,121,112,101,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,110,104,101,114,105,116,32,102,114,111,109,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,112,114,111,112,101,114,116,105,101,115,93,32,84,104,101,32,112,114,111,112,101,114,116,105,101,115,32,116,111,32,97,115,115,105,103,110,32,116,111,32,116,104,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,83,104,97,112,101,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,120,32,61,32,48,59,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,121,32,61,32,48,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,67,105,114,99,108,101,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,83,104,97,112,101,46,99,97,108,108,40,116,104,105,115,41,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,67,105,114,99,108,101,46,112,114,111,116,111,116,121,112,101,32,61,32,95,46,99,114,101,97,116,101,40,83,104,97,112,101,46,112,114,111,116,111,116,121,112,101,44,32,123,92,110,32,32,32,32,32,42,32,32,32,39,99,111,110,115,116,114,117,99,116,111,114,39,58,32,67,105,114,99,108,101,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,99,105,114,99,108,101,32,61,32,110,101,119,32,67,105,114,99,108,101,59,92,110,32,32,32,32,32,42,32,99,105,114,99,108,101,32,105,110,115,116,97,110,99,101,111,102,32,67,105,114,99,108,101,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,105,114,99,108,101,32,105,110,115,116,97,110,99,101,111,102,32,83,104,97,112,101,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,40,112,114,111,116,111,116,121,112,101,44,32,112,114,111,112,101,114,116,105,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,98,97,115,101,67,114,101,97,116,101,40,112,114,111,116,111,116,121,112,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,101,114,116,105,101,115,32,61,61,32,110,117,108,108,32,63,32,114,101,115,117,108,116,32,58,32,98,97,115,101,65,115,115,105,103,110,40,114,101,115,117,108,116,44,32,112,114,111,112,101,114,116,105,101,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,115,115,105,103,110,115,32,111,119,110,32,97,110,100,32,105,110,104,101,114,105,116,101,100,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,115,111,117,114,99,101,92,110,32,32,32,32,32,42,32,111,98,106,101,99,116,115,32,116,111,32,116,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,32,102,111,114,32,97,108,108,32,100,101,115,116,105,110,97,116,105,111,110,32,112,114,111,112,101,114,116,105,101,115,32,116,104,97,116,92,110,32,32,32,32,32,42,32,114,101,115,111,108,118,101,32,116,111,32,96,117,110,100,101,102,105,110,101,100,96,46,32,83,111,117,114,99,101,32,111,98,106,101,99,116,115,32,97,114,101,32,97,112,112,108,105,101,100,32,102,114,111,109,32,108,101,102,116,32,116,111,32,114,105,103,104,116,46,92,110,32,32,32,32,32,42,32,79,110,99,101,32,97,32,112,114,111,112,101,114,116,121,32,105,115,32,115,101,116,44,32,97,100,100,105,116,105,111,110,97,108,32,118,97,108,117,101,115,32,111,102,32,116,104,101,32,115,97,109,101,32,112,114,111,112,101,114,116,121,32,97,114,101,32,105,103,110,111,114,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,79,98,106,101,99,116,125,32,91,115,111,117,114,99,101,115,93,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,100,101,102,97,117,108,116,115,68,101,101,112,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,101,102,97,117,108,116,115,40,123,32,39,97,39,58,32,49,32,125,44,32,123,32,39,98,39,58,32,50,32,125,44,32,123,32,39,97,39,58,32,51,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,115,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,115,41,32,123,92,110,32,32,32,32,32,32,111,98,106,101,99,116,32,61,32,79,98,106,101,99,116,40,111,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,59,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,115,111,117,114,99,101,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,118,97,114,32,103,117,97,114,100,32,61,32,108,101,110,103,116,104,32,62,32,50,32,63,32,115,111,117,114,99,101,115,91,50,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,103,117,97,114,100,32,38,38,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,115,111,117,114,99,101,115,91,48,93,44,32,115,111,117,114,99,101,115,91,49,93,44,32,103,117,97,114,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,49,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,111,117,114,99,101,32,61,32,115,111,117,114,99,101,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,107,101,121,115,73,110,40,115,111,117,114,99,101,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,73,110,100,101,120,32,61,32,45,49,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,76,101,110,103,116,104,32,61,32,112,114,111,112,115,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,112,114,111,112,115,73,110,100,101,120,32,60,32,112,114,111,112,115,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,112,114,111,112,115,91,112,114,111,112,115,73,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,111,98,106,101,99,116,91,107,101,121,93,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,101,113,40,118,97,108,117,101,44,32,111,98,106,101,99,116,80,114,111,116,111,91,107,101,121,93,41,32,38,38,32,33,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,111,98,106,101,99,116,44,32,107,101,121,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,98,106,101,99,116,91,107,101,121,93,32,61,32,115,111,117,114,99,101,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,100,101,102,97,117,108,116,115,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,114,101,99,117,114,115,105,118,101,108,121,32,97,115,115,105,103,110,115,92,110,32,32,32,32,32,42,32,100,101,102,97,117,108,116,32,112,114,111,112,101,114,116,105,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,49,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,79,98,106,101,99,116,125,32,91,115,111,117,114,99,101,115,93,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,100,101,102,97,117,108,116,115,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,32,39,97,39,58,32,123,32,39,98,39,58,32,50,32,125,32,125,44,32,123,32,39,97,39,58,32,123,32,39,98,39,58,32,49,44,32,39,99,39,58,32,51,32,125,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,123,32,39,98,39,58,32,50,44,32,39,99,39,58,32,51,32,125,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,115,68,101,101,112,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,97,114,103,115,46,112,117,115,104,40,117,110,100,101,102,105,110,101,100,44,32,99,117,115,116,111,109,68,101,102,97,117,108,116,115,77,101,114,103,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,112,112,108,121,40,109,101,114,103,101,87,105,116,104,44,32,117,110,100,101,102,105,110,101,100,44,32,97,114,103,115,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,102,105,110,100,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,114,101,116,117,114,110,115,32,116,104,101,32,107,101,121,32,111,102,32,116,104,101,32,102,105,114,115,116,92,110,32,32,32,32,32,42,32,101,108,101,109,101,110,116,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,32,116,114,117,116,104,121,32,102,111,114,32,105,110,115,116,101,97,100,32,111,102,32,116,104,101,32,101,108,101,109,101,110,116,32,105,116,115,101,108,102,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,49,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,124,117,110,100,101,102,105,110,101,100,125,32,82,101,116,117,114,110,115,32,116,104,101,32,107,101,121,32,111,102,32,116,104,101,32,109,97,116,99,104,101,100,32,101,108,101,109,101,110,116,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,117,110,100,101,102,105,110,101,100,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,123,92,110,32,32,32,32,32,42,32,32,32,39,98,97,114,110,101,121,39,58,32,32,123,32,39,97,103,101,39,58,32,51,54,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,39,102,114,101,100,39,58,32,32,32,32,123,32,39,97,103,101,39,58,32,52,48,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,39,112,101,98,98,108,101,115,39,58,32,123,32,39,97,103,101,39,58,32,49,44,32,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,92,110,32,32,32,32,32,42,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,75,101,121,40,117,115,101,114,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,97,103,101,32,60,32,52,48,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,98,97,114,110,101,121,39,32,40,105,116,101,114,97,116,105,111,110,32,111,114,100,101,114,32,105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101,100,41,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,75,101,121,40,117,115,101,114,115,44,32,123,32,39,97,103,101,39,58,32,49,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,112,101,98,98,108,101,115,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,75,101,121,40,117,115,101,114,115,44,32,91,39,97,99,116,105,118,101,39,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,114,101,100,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,75,101,121,40,117,115,101,114,115,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,98,97,114,110,101,121,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,105,110,100,75,101,121,40,111,98,106,101,99,116,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,70,105,110,100,75,101,121,40,111,98,106,101,99,116,44,32,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,44,32,51,41,44,32,98,97,115,101,70,111,114,79,119,110,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,102,105,110,100,75,101,121,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,105,116,101,114,97,116,101,115,32,111,118,101,114,32,101,108,101,109,101,110,116,115,32,111,102,92,110,32,32,32,32,32,42,32,97,32,99,111,108,108,101,99,116,105,111,110,32,105,110,32,116,104,101,32,111,112,112,111,115,105,116,101,32,111,114,100,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,124,117,110,100,101,102,105,110,101,100,125,32,82,101,116,117,114,110,115,32,116,104,101,32,107,101,121,32,111,102,32,116,104,101,32,109,97,116,99,104,101,100,32,101,108,101,109,101,110,116,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,117,110,100,101,102,105,110,101,100,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,123,92,110,32,32,32,32,32,42,32,32,32,39,98,97,114,110,101,121,39,58,32,32,123,32,39,97,103,101,39,58,32,51,54,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,39,102,114,101,100,39,58,32,32,32,32,123,32,39,97,103,101,39,58,32,52,48,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,39,112,101,98,98,108,101,115,39,58,32,123,32,39,97,103,101,39,58,32,49,44,32,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,92,110,32,32,32,32,32,42,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,76,97,115,116,75,101,121,40,117,115,101,114,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,97,103,101,32,60,32,52,48,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,114,101,116,117,114,110,115,32,39,112,101,98,98,108,101,115,39,32,97,115,115,117,109,105,110,103,32,96,95,46,102,105,110,100,75,101,121,96,32,114,101,116,117,114,110,115,32,39,98,97,114,110,101,121,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,76,97,115,116,75,101,121,40,117,115,101,114,115,44,32,123,32,39,97,103,101,39,58,32,51,54,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,98,97,114,110,101,121,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,76,97,115,116,75,101,121,40,117,115,101,114,115,44,32,91,39,97,99,116,105,118,101,39,44,32,102,97,108,115,101,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,114,101,100,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,76,97,115,116,75,101,121,40,117,115,101,114,115,44,32,39,97,99,116,105,118,101,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,112,101,98,98,108,101,115,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,105,110,100,76,97,115,116,75,101,121,40,111,98,106,101,99,116,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,70,105,110,100,75,101,121,40,111,98,106,101,99,116,44,32,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,44,32,51,41,44,32,98,97,115,101,70,111,114,79,119,110,82,105,103,104,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,73,116,101,114,97,116,101,115,32,111,118,101,114,32,111,119,110,32,97,110,100,32,105,110,104,101,114,105,116,101,100,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,97,110,92,110,32,32,32,32,32,42,32,111,98,106,101,99,116,32,97,110,100,32,105,110,118,111,107,101,115,32,96,105,116,101,114,97,116,101,101,96,32,102,111,114,32,101,97,99,104,32,112,114,111,112,101,114,116,121,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,92,110,32,32,32,32,32,42,32,119,105,116,104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,41,46,32,73,116,101,114,97,116,101,101,32,102,117,110,99,116,105,111,110,115,32,109,97,121,32,101,120,105,116,92,110,32,32,32,32,32,42,32,105,116,101,114,97,116,105,111,110,32,101,97,114,108,121,32,98,121,32,101,120,112,108,105,99,105,116,108,121,32,114,101,116,117,114,110,105,110,103,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,102,111,114,73,110,82,105,103,104,116,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,97,32,61,32,49,59,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,98,32,61,32,50,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,111,46,112,114,111,116,111,116,121,112,101,46,99,32,61,32,51,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,111,114,73,110,40,110,101,119,32,70,111,111,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,42,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,107,101,121,41,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,76,111,103,115,32,39,97,39,44,32,39,98,39,44,32,116,104,101,110,32,39,99,39,32,40,105,116,101,114,97,116,105,111,110,32,111,114,100,101,114,32,105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101,100,41,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,111,114,73,110,40,111,98,106,101,99,116,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,63,32,111,98,106,101,99,116,92,110,32,32,32,32,32,32,32,32,58,32,98,97,115,101,70,111,114,40,111,98,106,101,99,116,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,51,41,44,32,107,101,121,115,73,110,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,102,111,114,73,110,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,105,116,101,114,97,116,101,115,32,111,118,101,114,32,112,114,111,112,101,114,116,105,101,115,32,111,102,92,110,32,32,32,32,32,42,32,96,111,98,106,101,99,116,96,32,105,110,32,116,104,101,32,111,112,112,111,115,105,116,101,32,111,114,100,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,102,111,114,73,110,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,97,32,61,32,49,59,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,98,32,61,32,50,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,111,46,112,114,111,116,111,116,121,112,101,46,99,32,61,32,51,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,111,114,73,110,82,105,103,104,116,40,110,101,119,32,70,111,111,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,42,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,107,101,121,41,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,76,111,103,115,32,39,99,39,44,32,39,98,39,44,32,116,104,101,110,32,39,97,39,32,97,115,115,117,109,105,110,103,32,96,95,46,102,111,114,73,110,96,32,108,111,103,115,32,39,97,39,44,32,39,98,39,44,32,116,104,101,110,32,39,99,39,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,111,114,73,110,82,105,103,104,116,40,111,98,106,101,99,116,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,63,32,111,98,106,101,99,116,92,110,32,32,32,32,32,32,32,32,58,32,98,97,115,101,70,111,114,82,105,103,104,116,40,111,98,106,101,99,116,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,51,41,44,32,107,101,121,115,73,110,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,73,116,101,114,97,116,101,115,32,111,118,101,114,32,111,119,110,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,97,110,32,111,98,106,101,99,116,32,97,110,100,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,115,32,96,105,116,101,114,97,116,101,101,96,32,102,111,114,32,101,97,99,104,32,112,114,111,112,101,114,116,121,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,114,101,101,92,110,32,32,32,32,32,42,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,41,46,32,73,116,101,114,97,116,101,101,32,102,117,110,99,116,105,111,110,115,32,109,97,121,32,101,120,105,116,32,105,116,101,114,97,116,105,111,110,92,110,32,32,32,32,32,42,32,101,97,114,108,121,32,98,121,32,101,120,112,108,105,99,105,116,108,121,32,114,101,116,117,114,110,105,110,103,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,102,111,114,79,119,110,82,105,103,104,116,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,97,32,61,32,49,59,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,98,32,61,32,50,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,111,46,112,114,111,116,111,116,121,112,101,46,99,32,61,32,51,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,111,114,79,119,110,40,110,101,119,32,70,111,111,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,42,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,107,101,121,41,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,76,111,103,115,32,39,97,39,32,116,104,101,110,32,39,98,39,32,40,105,116,101,114,97,116,105,111,110,32,111,114,100,101,114,32,105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101,100,41,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,111,114,79,119,110,40,111,98,106,101,99,116,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,38,38,32,98,97,115,101,70,111,114,79,119,110,40,111,98,106,101,99,116,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,51,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,102,111,114,79,119,110,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,105,116,101,114,97,116,101,115,32,111,118,101,114,32,112,114,111,112,101,114,116,105,101,115,32,111,102,92,110,32,32,32,32,32,42,32,96,111,98,106,101,99,116,96,32,105,110,32,116,104,101,32,111,112,112,111,115,105,116,101,32,111,114,100,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,102,111,114,79,119,110,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,97,32,61,32,49,59,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,98,32,61,32,50,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,111,46,112,114,111,116,111,116,121,112,101,46,99,32,61,32,51,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,111,114,79,119,110,82,105,103,104,116,40,110,101,119,32,70,111,111,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,42,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,107,101,121,41,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,76,111,103,115,32,39,98,39,32,116,104,101,110,32,39,97,39,32,97,115,115,117,109,105,110,103,32,96,95,46,102,111,114,79,119,110,96,32,108,111,103,115,32,39,97,39,32,116,104,101,110,32,39,98,39,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,111,114,79,119,110,82,105,103,104,116,40,111,98,106,101,99,116,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,38,38,32,98,97,115,101,70,111,114,79,119,110,82,105,103,104,116,40,111,98,106,101,99,116,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,51,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,102,117,110,99,116,105,111,110,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,102,114,111,109,32,111,119,110,32,101,110,117,109,101,114,97,98,108,101,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,32,42,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,102,117,110,99,116,105,111,110,32,110,97,109,101,115,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,102,117,110,99,116,105,111,110,115,73,110,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,97,32,61,32,95,46,99,111,110,115,116,97,110,116,40,39,97,39,41,59,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,98,32,61,32,95,46,99,111,110,115,116,97,110,116,40,39,98,39,41,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,111,46,112,114,111,116,111,116,121,112,101,46,99,32,61,32,95,46,99,111,110,115,116,97,110,116,40,39,99,39,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,117,110,99,116,105,111,110,115,40,110,101,119,32,70,111,111,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,97,39,44,32,39,98,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,117,110,99,116,105,111,110,115,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,91,93,32,58,32,98,97,115,101,70,117,110,99,116,105,111,110,115,40,111,98,106,101,99,116,44,32,107,101,121,115,40,111,98,106,101,99,116,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,102,117,110,99,116,105,111,110,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,102,114,111,109,32,111,119,110,32,97,110,100,32,105,110,104,101,114,105,116,101,100,92,110,32,32,32,32,32,42,32,101,110,117,109,101,114,97,98,108,101,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,102,117,110,99,116,105,111,110,32,110,97,109,101,115,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,102,117,110,99,116,105,111,110,115,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,97,32,61,32,95,46,99,111,110,115,116,97,110,116,40,39,97,39,41,59,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,98,32,61,32,95,46,99,111,110,115,116,97,110,116,40,39,98,39,41,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,111,46,112,114,111,116,111,116,121,112,101,46,99,32,61,32,95,46,99,111,110,115,116,97,110,116,40,39,99,39,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,117,110,99,116,105,111,110,115,73,110,40,110,101,119,32,70,111,111,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,97,39,44,32,39,98,39,44,32,39,99,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,117,110,99,116,105,111,110,115,73,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,91,93,32,58,32,98,97,115,101,70,117,110,99,116,105,111,110,115,40,111,98,106,101,99,116,44,32,107,101,121,115,73,110,40,111,98,106,101,99,116,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,116,115,32,116,104,101,32,118,97,108,117,101,32,97,116,32,96,112,97,116,104,96,32,111,102,32,96,111,98,106,101,99,116,96,46,32,73,102,32,116,104,101,32,114,101,115,111,108,118,101,100,32,118,97,108,117,101,32,105,115,92,110,32,32,32,32,32,42,32,96,117,110,100,101,102,105,110,101,100,96,44,32,116,104,101,32,96,100,101,102,97,117,108,116,86,97,108,117,101,96,32,105,115,32,114,101,116,117,114,110,101,100,32,105,110,32,105,116,115,32,112,108,97,99,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,55,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,103,101,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,91,100,101,102,97,117,108,116,86,97,108,117,101,93,32,84,104,101,32,118,97,108,117,101,32,114,101,116,117,114,110,101,100,32,102,111,114,32,96,117,110,100,101,102,105,110,101,100,96,32,114,101,115,111,108,118,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,115,111,108,118,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,91,123,32,39,98,39,58,32,123,32,39,99,39,58,32,51,32,125,32,125,93,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,103,101,116,40,111,98,106,101,99,116,44,32,39,97,91,48,93,46,98,46,99,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,103,101,116,40,111,98,106,101,99,116,44,32,91,39,97,39,44,32,39,48,39,44,32,39,98,39,44,32,39,99,39,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,103,101,116,40,111,98,106,101,99,116,44,32,39,97,46,98,46,99,39,44,32,39,100,101,102,97,117,108,116,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,100,101,102,97,117,108,116,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,100,101,102,97,117,108,116,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,98,97,115,101,71,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,100,101,102,97,117,108,116,86,97,108,117,101,32,58,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,112,97,116,104,96,32,105,115,32,97,32,100,105,114,101,99,116,32,112,114,111,112,101,114,116,121,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,112,97,116,104,96,32,101,120,105,115,116,115,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,123,32,39,98,39,58,32,50,32,125,32,125,59,92,110,32,32,32,32,32,42,32,118,97,114,32,111,116,104,101,114,32,61,32,95,46,99,114,101,97,116,101,40,123,32,39,97,39,58,32,95,46,99,114,101,97,116,101,40,123,32,39,98,39,58,32,50,32,125,41,32,125,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,104,97,115,40,111,98,106,101,99,116,44,32,39,97,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,104,97,115,40,111,98,106,101,99,116,44,32,39,97,46,98,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,104,97,115,40,111,98,106,101,99,116,44,32,91,39,97,39,44,32,39,98,39,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,104,97,115,40,111,116,104,101,114,44,32,39,97,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,97,115,40,111,98,106,101,99,116,44,32,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,33,61,32,110,117,108,108,32,38,38,32,104,97,115,80,97,116,104,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,98,97,115,101,72,97,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,112,97,116,104,96,32,105,115,32,97,32,100,105,114,101,99,116,32,111,114,32,105,110,104,101,114,105,116,101,100,32,112,114,111,112,101,114,116,121,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,112,97,116,104,96,32,101,120,105,115,116,115,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,95,46,99,114,101,97,116,101,40,123,32,39,97,39,58,32,95,46,99,114,101,97,116,101,40,123,32,39,98,39,58,32,50,32,125,41,32,125,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,104,97,115,73,110,40,111,98,106,101,99,116,44,32,39,97,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,104,97,115,73,110,40,111,98,106,101,99,116,44,32,39,97,46,98,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,104,97,115,73,110,40,111,98,106,101,99,116,44,32,91,39,97,39,44,32,39,98,39,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,104,97,115,73,110,40,111,98,106,101,99,116,44,32,39,98,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,97,115,73,110,40,111,98,106,101,99,116,44,32,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,33,61,32,110,117,108,108,32,38,38,32,104,97,115,80,97,116,104,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,98,97,115,101,72,97,115,73,110,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,111,98,106,101,99,116,32,99,111,109,112,111,115,101,100,32,111,102,32,116,104,101,32,105,110,118,101,114,116,101,100,32,107,101,121,115,32,97,110,100,32,118,97,108,117,101,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,73,102,32,96,111,98,106,101,99,116,96,32,99,111,110,116,97,105,110,115,32,100,117,112,108,105,99,97,116,101,32,118,97,108,117,101,115,44,32,115,117,98,115,101,113,117,101,110,116,32,118,97,108,117,101,115,32,111,118,101,114,119,114,105,116,101,92,110,32,32,32,32,32,42,32,112,114,111,112,101,114,116,121,32,97,115,115,105,103,110,109,101,110,116,115,32,111,102,32,112,114,101,118,105,111,117,115,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,55,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,105,110,118,101,114,116,101,100,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,44,32,39,99,39,58,32,49,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,118,101,114,116,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,49,39,58,32,39,99,39,44,32,39,50,39,58,32,39,98,39,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,110,118,101,114,116,32,61,32,99,114,101,97,116,101,73,110,118,101,114,116,101,114,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,33,61,32,110,117,108,108,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,118,97,108,117,101,46,116,111,83,116,114,105,110,103,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,110,97,116,105,118,101,79,98,106,101,99,116,84,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,115,117,108,116,91,118,97,108,117,101,93,32,61,32,107,101,121,59,92,110,32,32,32,32,125,44,32,99,111,110,115,116,97,110,116,40,105,100,101,110,116,105,116,121,41,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,105,110,118,101,114,116,96,32,101,120,99,101,112,116,32,116,104,97,116,32,116,104,101,32,105,110,118,101,114,116,101,100,32,111,98,106,101,99,116,32,105,115,32,103,101,110,101,114,97,116,101,100,92,110,32,32,32,32,32,42,32,102,114,111,109,32,116,104,101,32,114,101,115,117,108,116,115,32,111,102,32,114,117,110,110,105,110,103,32,101,97,99,104,32,101,108,101,109,101,110,116,32,111,102,32,96,111,98,106,101,99,116,96,32,116,104,114,117,32,96,105,116,101,114,97,116,101,101,96,46,32,84,104,101,92,110,32,32,32,32,32,42,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,105,110,118,101,114,116,101,100,32,118,97,108,117,101,32,111,102,32,101,97,99,104,32,105,110,118,101,114,116,101,100,32,107,101,121,32,105,115,32,97,110,32,97,114,114,97,121,32,111,102,32,107,101,121,115,92,110,32,32,32,32,32,42,32,114,101,115,112,111,110,115,105,98,108,101,32,102,111,114,32,103,101,110,101,114,97,116,105,110,103,32,116,104,101,32,105,110,118,101,114,116,101,100,32,118,97,108,117,101,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,92,110,32,32,32,32,32,42,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,105,110,118,101,114,116,101,100,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,44,32,39,99,39,58,32,49,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,118,101,114,116,66,121,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,49,39,58,32,91,39,97,39,44,32,39,99,39,93,44,32,39,50,39,58,32,91,39,98,39,93,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,118,101,114,116,66,121,40,111,98,106,101,99,116,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,39,103,114,111,117,112,39,32,43,32,118,97,108,117,101,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,103,114,111,117,112,49,39,58,32,91,39,97,39,44,32,39,99,39,93,44,32,39,103,114,111,117,112,50,39,58,32,91,39,98,39,93,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,110,118,101,114,116,66,121,32,61,32,99,114,101,97,116,101,73,110,118,101,114,116,101,114,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,33,61,32,110,117,108,108,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,118,97,108,117,101,46,116,111,83,116,114,105,110,103,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,110,97,116,105,118,101,79,98,106,101,99,116,84,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,114,101,115,117,108,116,44,32,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,118,97,108,117,101,93,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,118,97,108,117,101,93,32,61,32,91,107,101,121,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,103,101,116,73,116,101,114,97,116,101,101,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,73,110,118,111,107,101,115,32,116,104,101,32,109,101,116,104,111,100,32,97,116,32,96,112,97,116,104,96,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,109,101,116,104,111,100,32,116,111,32,105,110,118,111,107,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,42,125,32,91,97,114,103,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,105,110,118,111,107,101,32,116,104,101,32,109,101,116,104,111,100,32,119,105,116,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,115,117,108,116,32,111,102,32,116,104,101,32,105,110,118,111,107,101,100,32,109,101,116,104,111,100,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,91,123,32,39,98,39,58,32,123,32,39,99,39,58,32,91,49,44,32,50,44,32,51,44,32,52,93,32,125,32,125,93,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,118,111,107,101,40,111,98,106,101,99,116,44,32,39,97,91,48,93,46,98,46,99,46,115,108,105,99,101,39,44,32,49,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,51,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,105,110,118,111,107,101,32,61,32,98,97,115,101,82,101,115,116,40,98,97,115,101,73,110,118,111,107,101,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,116,104,101,32,111,119,110,32,101,110,117,109,101,114,97,98,108,101,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,78,111,110,45,111,98,106,101,99,116,32,118,97,108,117,101,115,32,97,114,101,32,99,111,101,114,99,101,100,32,116,111,32,111,98,106,101,99,116,115,46,32,83,101,101,32,116,104,101,92,110,32,32,32,32,32,42,32,91,69,83,32,115,112,101,99,93,40,104,116,116,112,58,47,47,101,99,109,97,45,105,110,116,101,114,110,97,116,105,111,110,97,108,46,111,114,103,47,101,99,109,97,45,50,54,50,47,55,46,48,47,35,115,101,99,45,111,98,106,101,99,116,46,107,101,121,115,41,92,110,32,32,32,32,32,42,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,97,32,61,32,49,59,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,98,32,61,32,50,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,111,46,112,114,111,116,111,116,121,112,101,46,99,32,61,32,51,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,107,101,121,115,40,110,101,119,32,70,111,111,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,97,39,44,32,39,98,39,93,32,40,105,116,101,114,97,116,105,111,110,32,111,114,100,101,114,32,105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101,100,41,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,107,101,121,115,40,39,104,105,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,48,39,44,32,39,49,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,107,101,121,115,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,65,114,114,97,121,76,105,107,101,40,111,98,106,101,99,116,41,32,63,32,97,114,114,97,121,76,105,107,101,75,101,121,115,40,111,98,106,101,99,116,41,32,58,32,98,97,115,101,75,101,121,115,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,116,104,101,32,111,119,110,32,97,110,100,32,105,110,104,101,114,105,116,101,100,32,101,110,117,109,101,114,97,98,108,101,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,78,111,110,45,111,98,106,101,99,116,32,118,97,108,117,101,115,32,97,114,101,32,99,111,101,114,99,101,100,32,116,111,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,112,114,111,112,101,114,116,121,32,110,97,109,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,97,32,61,32,49,59,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,98,32,61,32,50,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,111,46,112,114,111,116,111,116,121,112,101,46,99,32,61,32,51,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,107,101,121,115,73,110,40,110,101,119,32,70,111,111,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,97,39,44,32,39,98,39,44,32,39,99,39,93,32,40,105,116,101,114,97,116,105,111,110,32,111,114,100,101,114,32,105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101,100,41,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,107,101,121,115,73,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,65,114,114,97,121,76,105,107,101,40,111,98,106,101,99,116,41,32,63,32,97,114,114,97,121,76,105,107,101,75,101,121,115,40,111,98,106,101,99,116,44,32,116,114,117,101,41,32,58,32,98,97,115,101,75,101,121,115,73,110,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,111,112,112,111,115,105,116,101,32,111,102,32,96,95,46,109,97,112,86,97,108,117,101,115,96,59,32,116,104,105,115,32,109,101,116,104,111,100,32,99,114,101,97,116,101,115,32,97,110,32,111,98,106,101,99,116,32,119,105,116,104,32,116,104,101,92,110,32,32,32,32,32,42,32,115,97,109,101,32,118,97,108,117,101,115,32,97,115,32,96,111,98,106,101,99,116,96,32,97,110,100,32,107,101,121,115,32,103,101,110,101,114,97,116,101,100,32,98,121,32,114,117,110,110,105,110,103,32,101,97,99,104,32,111,119,110,32,101,110,117,109,101,114,97,98,108,101,92,110,32,32,32,32,32,42,32,115,116,114,105,110,103,32,107,101,121,101,100,32,112,114,111,112,101,114,116,121,32,111,102,32,96,111,98,106,101,99,116,96,32,116,104,114,117,32,96,105,116,101,114,97,116,101,101,96,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,92,110,32,32,32,32,32,42,32,119,105,116,104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,56,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,109,97,112,112,101,100,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,109,97,112,86,97,108,117,101,115,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,75,101,121,115,40,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,107,101,121,32,43,32,118,97,108,117,101,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,49,39,58,32,49,44,32,39,98,50,39,58,32,50,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,112,75,101,121,115,40,111,98,106,101,99,116,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,123,125,59,92,110,32,32,32,32,32,32,105,116,101,114,97,116,101,101,32,61,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,51,41,59,92,110,92,110,32,32,32,32,32,32,98,97,115,101,70,111,114,79,119,110,40,111,98,106,101,99,116,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,98,97,115,101,65,115,115,105,103,110,86,97,108,117,101,40,114,101,115,117,108,116,44,32,105,116,101,114,97,116,101,101,40,118,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,41,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,111,98,106,101,99,116,32,119,105,116,104,32,116,104,101,32,115,97,109,101,32,107,101,121,115,32,97,115,32,96,111,98,106,101,99,116,96,32,97,110,100,32,118,97,108,117,101,115,32,103,101,110,101,114,97,116,101,100,92,110,32,32,32,32,32,42,32,98,121,32,114,117,110,110,105,110,103,32,101,97,99,104,32,111,119,110,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,32,112,114,111,112,101,114,116,121,32,111,102,32,96,111,98,106,101,99,116,96,32,116,104,114,117,92,110,32,32,32,32,32,42,32,96,105,116,101,114,97,116,101,101,96,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,92,110,32,32,32,32,32,42,32,40,118,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,52,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,109,97,112,112,101,100,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,109,97,112,75,101,121,115,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,123,92,110,32,32,32,32,32,42,32,32,32,39,102,114,101,100,39,58,32,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,32,39,97,103,101,39,58,32,52,48,32,125,44,92,110,32,32,32,32,32,42,32,32,32,39,112,101,98,98,108,101,115,39,58,32,123,32,39,117,115,101,114,39,58,32,39,112,101,98,98,108,101,115,39,44,32,39,97,103,101,39,58,32,49,32,125,92,110,32,32,32,32,32,42,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,86,97,108,117,101,115,40,117,115,101,114,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,97,103,101,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,102,114,101,100,39,58,32,52,48,44,32,39,112,101,98,98,108,101,115,39,58,32,49,32,125,32,40,105,116,101,114,97,116,105,111,110,32,111,114,100,101,114,32,105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101,100,41,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,109,97,112,86,97,108,117,101,115,40,117,115,101,114,115,44,32,39,97,103,101,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,102,114,101,100,39,58,32,52,48,44,32,39,112,101,98,98,108,101,115,39,58,32,49,32,125,32,40,105,116,101,114,97,116,105,111,110,32,111,114,100,101,114,32,105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101,100,41,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,112,86,97,108,117,101,115,40,111,98,106,101,99,116,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,123,125,59,92,110,32,32,32,32,32,32,105,116,101,114,97,116,101,101,32,61,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,51,41,59,92,110,92,110,32,32,32,32,32,32,98,97,115,101,70,111,114,79,119,110,40,111,98,106,101,99,116,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,98,97,115,101,65,115,115,105,103,110,86,97,108,117,101,40,114,101,115,117,108,116,44,32,107,101,121,44,32,105,116,101,114,97,116,101,101,40,118,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,97,115,115,105,103,110,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,114,101,99,117,114,115,105,118,101,108,121,32,109,101,114,103,101,115,32,111,119,110,32,97,110,100,92,110,32,32,32,32,32,42,32,105,110,104,101,114,105,116,101,100,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,115,111,117,114,99,101,32,111,98,106,101,99,116,115,32,105,110,116,111,32,116,104,101,92,110,32,32,32,32,32,42,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,32,83,111,117,114,99,101,32,112,114,111,112,101,114,116,105,101,115,32,116,104,97,116,32,114,101,115,111,108,118,101,32,116,111,32,96,117,110,100,101,102,105,110,101,100,96,32,97,114,101,92,110,32,32,32,32,32,42,32,115,107,105,112,112,101,100,32,105,102,32,97,32,100,101,115,116,105,110,97,116,105,111,110,32,118,97,108,117,101,32,101,120,105,115,116,115,46,32,65,114,114,97,121,32,97,110,100,32,112,108,97,105,110,32,111,98,106,101,99,116,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,32,42,32,97,114,101,32,109,101,114,103,101,100,32,114,101,99,117,114,115,105,118,101,108,121,46,32,79,116,104,101,114,32,111,98,106,101,99,116,115,32,97,110,100,32,118,97,108,117,101,32,116,121,112,101,115,32,97,114,101,32,111,118,101,114,114,105,100,100,101,110,32,98,121,92,110,32,32,32,32,32,42,32,97,115,115,105,103,110,109,101,110,116,46,32,83,111,117,114,99,101,32,111,98,106,101,99,116,115,32,97,114,101,32,97,112,112,108,105,101,100,32,102,114,111,109,32,108,101,102,116,32,116,111,32,114,105,103,104,116,46,32,83,117,98,115,101,113,117,101,110,116,92,110,32,32,32,32,32,42,32,115,111,117,114,99,101,115,32,111,118,101,114,119,114,105,116,101,32,112,114,111,112,101,114,116,121,32,97,115,115,105,103,110,109,101,110,116,115,32,111,102,32,112,114,101,118,105,111,117,115,32,115,111,117,114,99,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,53,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,79,98,106,101,99,116,125,32,91,115,111,117,114,99,101,115,93,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,92,110,32,32,32,32,32,42,32,32,32,39,97,39,58,32,91,123,32,39,98,39,58,32,50,32,125,44,32,123,32,39,100,39,58,32,52,32,125,93,92,110,32,32,32,32,32,42,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,116,104,101,114,32,61,32,123,92,110,32,32,32,32,32,42,32,32,32,39,97,39,58,32,91,123,32,39,99,39,58,32,51,32,125,44,32,123,32,39,101,39,58,32,53,32,125,93,92,110,32,32,32,32,32,42,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,101,114,103,101,40,111,98,106,101,99,116,44,32,111,116,104,101,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,91,123,32,39,98,39,58,32,50,44,32,39,99,39,58,32,51,32,125,44,32,123,32,39,100,39,58,32,52,44,32,39,101,39,58,32,53,32,125,93,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,109,101,114,103,101,32,61,32,99,114,101,97,116,101,65,115,115,105,103,110,101,114,40,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,115,114,99,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,77,101,114,103,101,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,115,114,99,73,110,100,101,120,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,109,101,114,103,101,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,99,117,115,116,111,109,105,122,101,114,96,32,119,104,105,99,104,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,116,111,32,112,114,111,100,117,99,101,32,116,104,101,32,109,101,114,103,101,100,32,118,97,108,117,101,115,32,111,102,32,116,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,97,110,100,32,115,111,117,114,99,101,92,110,32,32,32,32,32,42,32,112,114,111,112,101,114,116,105,101,115,46,32,73,102,32,96,99,117,115,116,111,109,105,122,101,114,96,32,114,101,116,117,114,110,115,32,96,117,110,100,101,102,105,110,101,100,96,44,32,109,101,114,103,105,110,103,32,105,115,32,104,97,110,100,108,101,100,32,98,121,32,116,104,101,92,110,32,32,32,32,32,42,32,109,101,116,104,111,100,32,105,110,115,116,101,97,100,46,32,84,104,101,32,96,99,117,115,116,111,109,105,122,101,114,96,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,115,105,120,32,97,114,103,117,109,101,110,116,115,58,92,110,32,32,32,32,32,42,32,40,111,98,106,86,97,108,117,101,44,32,115,114,99,86,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,115,116,97,99,107,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,79,98,106,101,99,116,125,32,115,111,117,114,99,101,115,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,99,117,115,116,111,109,105,122,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,97,115,115,105,103,110,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,99,117,115,116,111,109,105,122,101,114,40,111,98,106,86,97,108,117,101,44,32,115,114,99,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,42,32,32,32,105,102,32,40,95,46,105,115,65,114,114,97,121,40,111,98,106,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,86,97,108,117,101,46,99,111,110,99,97,116,40,115,114,99,86,97,108,117,101,41,59,92,110,32,32,32,32,32,42,32,32,32,125,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,91,49,93,44,32,39,98,39,58,32,91,50,93,32,125,59,92,110,32,32,32,32,32,42,32,118,97,114,32,111,116,104,101,114,32,61,32,123,32,39,97,39,58,32,91,51,93,44,32,39,98,39,58,32,91,52,93,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,101,114,103,101,87,105,116,104,40,111,98,106,101,99,116,44,32,111,116,104,101,114,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,91,49,44,32,51,93,44,32,39,98,39,58,32,91,50,44,32,52,93,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,109,101,114,103,101,87,105,116,104,32,61,32,99,114,101,97,116,101,65,115,115,105,103,110,101,114,40,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,115,114,99,73,110,100,101,120,44,32,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,77,101,114,103,101,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,115,114,99,73,110,100,101,120,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,111,112,112,111,115,105,116,101,32,111,102,32,96,95,46,112,105,99,107,96,59,32,116,104,105,115,32,109,101,116,104,111,100,32,99,114,101,97,116,101,115,32,97,110,32,111,98,106,101,99,116,32,99,111,109,112,111,115,101,100,32,111,102,32,116,104,101,92,110,32,32,32,32,32,42,32,111,119,110,32,97,110,100,32,105,110,104,101,114,105,116,101,100,32,101,110,117,109,101,114,97,98,108,101,32,112,114,111,112,101,114,116,121,32,112,97,116,104,115,32,111,102,32,96,111,98,106,101,99,116,96,32,116,104,97,116,32,97,114,101,32,110,111,116,32,111,109,105,116,116,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,99,111,110,115,105,100,101,114,97,98,108,121,32,115,108,111,119,101,114,32,116,104,97,110,32,96,95,46,112,105,99,107,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,40,115,116,114,105,110,103,124,115,116,114,105,110,103,91,93,41,125,32,91,112,97,116,104,115,93,32,84,104,101,32,112,114,111,112,101,114,116,121,32,112,97,116,104,115,32,116,111,32,111,109,105,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,39,50,39,44,32,39,99,39,58,32,51,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,111,109,105,116,40,111,98,106,101,99,116,44,32,91,39,97,39,44,32,39,99,39,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,98,39,58,32,39,50,39,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,111,109,105,116,32,61,32,102,108,97,116,82,101,115,116,40,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,112,97,116,104,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,123,125,59,92,110,32,32,32,32,32,32,105,102,32,40,111,98,106,101,99,116,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,105,115,68,101,101,112,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,112,97,116,104,115,32,61,32,97,114,114,97,121,77,97,112,40,112,97,116,104,115,44,32,102,117,110,99,116,105,111,110,40,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,112,97,116,104,32,61,32,99,97,115,116,80,97,116,104,40,112,97,116,104,44,32,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,105,115,68,101,101,112,32,124,124,32,40,105,115,68,101,101,112,32,61,32,112,97,116,104,46,108,101,110,103,116,104,32,62,32,49,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,116,104,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,99,111,112,121,79,98,106,101,99,116,40,111,98,106,101,99,116,44,32,103,101,116,65,108,108,75,101,121,115,73,110,40,111,98,106,101,99,116,41,44,32,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,101,112,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,98,97,115,101,67,108,111,110,101,40,114,101,115,117,108,116,44,32,67,76,79,78,69,95,68,69,69,80,95,70,76,65,71,32,124,32,67,76,79,78,69,95,70,76,65,84,95,70,76,65,71,32,124,32,67,76,79,78,69,95,83,89,77,66,79,76,83,95,70,76,65,71,44,32,99,117,115,116,111,109,79,109,105,116,67,108,111,110,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,112,97,116,104,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,108,101,110,103,116,104,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,98,97,115,101,85,110,115,101,116,40,114,101,115,117,108,116,44,32,112,97,116,104,115,91,108,101,110,103,116,104,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,111,112,112,111,115,105,116,101,32,111,102,32,96,95,46,112,105,99,107,66,121,96,59,32,116,104,105,115,32,109,101,116,104,111,100,32,99,114,101,97,116,101,115,32,97,110,32,111,98,106,101,99,116,32,99,111,109,112,111,115,101,100,32,111,102,92,110,32,32,32,32,32,42,32,116,104,101,32,111,119,110,32,97,110,100,32,105,110,104,101,114,105,116,101,100,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,96,111,98,106,101,99,116,96,32,116,104,97,116,92,110,32,32,32,32,32,42,32,96,112,114,101,100,105,99,97,116,101,96,32,100,111,101,115,110,39,116,32,114,101,116,117,114,110,32,116,114,117,116,104,121,32,102,111,114,46,32,84,104,101,32,112,114,101,100,105,99,97,116,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,119,111,92,110,32,32,32,32,32,42,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,107,101,121,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,112,114,111,112,101,114,116,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,39,50,39,44,32,39,99,39,58,32,51,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,111,109,105,116,66,121,40,111,98,106,101,99,116,44,32,95,46,105,115,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,98,39,58,32,39,50,39,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,111,109,105,116,66,121,40,111,98,106,101,99,116,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,105,99,107,66,121,40,111,98,106,101,99,116,44,32,110,101,103,97,116,101,40,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,41,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,111,98,106,101,99,116,32,99,111,109,112,111,115,101,100,32,111,102,32,116,104,101,32,112,105,99,107,101,100,32,96,111,98,106,101,99,116,96,32,112,114,111,112,101,114,116,105,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,40,115,116,114,105,110,103,124,115,116,114,105,110,103,91,93,41,125,32,91,112,97,116,104,115,93,32,84,104,101,32,112,114,111,112,101,114,116,121,32,112,97,116,104,115,32,116,111,32,112,105,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,39,50,39,44,32,39,99,39,58,32,51,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,105,99,107,40,111,98,106,101,99,116,44,32,91,39,97,39,44,32,39,99,39,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,49,44,32,39,99,39,58,32,51,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,112,105,99,107,32,61,32,102,108,97,116,82,101,115,116,40,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,112,97,116,104,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,123,125,32,58,32,98,97,115,101,80,105,99,107,40,111,98,106,101,99,116,44,32,112,97,116,104,115,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,111,98,106,101,99,116,32,99,111,109,112,111,115,101,100,32,111,102,32,116,104,101,32,96,111,98,106,101,99,116,96,32,112,114,111,112,101,114,116,105,101,115,32,96,112,114,101,100,105,99,97,116,101,96,32,114,101,116,117,114,110,115,92,110,32,32,32,32,32,42,32,116,114,117,116,104,121,32,102,111,114,46,32,84,104,101,32,112,114,101,100,105,99,97,116,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,119,111,32,97,114,103,117,109,101,110,116,115,58,32,40,118,97,108,117,101,44,32,107,101,121,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,115,111,117,114,99,101,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,112,114,101,100,105,99,97,116,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,112,114,111,112,101,114,116,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,39,50,39,44,32,39,99,39,58,32,51,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,105,99,107,66,121,40,111,98,106,101,99,116,44,32,95,46,105,115,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,49,44,32,39,99,39,58,32,51,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,105,99,107,66,121,40,111,98,106,101,99,116,44,32,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,111,98,106,101,99,116,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,97,114,114,97,121,77,97,112,40,103,101,116,65,108,108,75,101,121,115,73,110,40,111,98,106,101,99,116,41,44,32,102,117,110,99,116,105,111,110,40,112,114,111,112,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,112,114,111,112,93,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,112,114,101,100,105,99,97,116,101,32,61,32,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,80,105,99,107,66,121,40,111,98,106,101,99,116,44,32,112,114,111,112,115,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,114,101,100,105,99,97,116,101,40,118,97,108,117,101,44,32,112,97,116,104,91,48,93,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,103,101,116,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,102,32,116,104,101,32,114,101,115,111,108,118,101,100,32,118,97,108,117,101,32,105,115,32,97,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,105,116,39,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,111,102,32,105,116,115,32,112,97,114,101,110,116,32,111,98,106,101,99,116,32,97,110,100,92,110,32,32,32,32,32,42,32,105,116,115,32,114,101,115,117,108,116,32,105,115,32,114,101,116,117,114,110,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,114,101,115,111,108,118,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,91,100,101,102,97,117,108,116,86,97,108,117,101,93,32,84,104,101,32,118,97,108,117,101,32,114,101,116,117,114,110,101,100,32,102,111,114,32,96,117,110,100,101,102,105,110,101,100,96,32,114,101,115,111,108,118,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,115,111,108,118,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,91,123,32,39,98,39,58,32,123,32,39,99,49,39,58,32,51,44,32,39,99,50,39,58,32,95,46,99,111,110,115,116,97,110,116,40,52,41,32,125,32,125,93,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,101,115,117,108,116,40,111,98,106,101,99,116,44,32,39,97,91,48,93,46,98,46,99,49,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,51,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,101,115,117,108,116,40,111,98,106,101,99,116,44,32,39,97,91,48,93,46,98,46,99,50,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,52,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,101,115,117,108,116,40,111,98,106,101,99,116,44,32,39,97,91,48,93,46,98,46,99,51,39,44,32,39,100,101,102,97,117,108,116,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,100,101,102,97,117,108,116,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,101,115,117,108,116,40,111,98,106,101,99,116,44,32,39,97,91,48,93,46,98,46,99,51,39,44,32,95,46,99,111,110,115,116,97,110,116,40,39,100,101,102,97,117,108,116,39,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,100,101,102,97,117,108,116,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,115,117,108,116,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,100,101,102,97,117,108,116,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,112,97,116,104,32,61,32,99,97,115,116,80,97,116,104,40,112,97,116,104,44,32,111,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,112,97,116,104,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,47,47,32,69,110,115,117,114,101,32,116,104,101,32,108,111,111,112,32,105,115,32,101,110,116,101,114,101,100,32,119,104,101,110,32,112,97,116,104,32,105,115,32,101,109,112,116,121,46,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,111,98,106,101,99,116,91,116,111,75,101,121,40,112,97,116,104,91,105,110,100,101,120,93,41,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,100,101,102,97,117,108,116,86,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,32,61,32,105,115,70,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,63,32,118,97,108,117,101,46,99,97,108,108,40,111,98,106,101,99,116,41,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,83,101,116,115,32,116,104,101,32,118,97,108,117,101,32,97,116,32,96,112,97,116,104,96,32,111,102,32,96,111,98,106,101,99,116,96,46,32,73,102,32,97,32,112,111,114,116,105,111,110,32,111,102,32,96,112,97,116,104,96,32,100,111,101,115,110,39,116,32,101,120,105,115,116,44,92,110,32,32,32,32,32,42,32,105,116,39,115,32,99,114,101,97,116,101,100,46,32,65,114,114,97,121,115,32,97,114,101,32,99,114,101,97,116,101,100,32,102,111,114,32,109,105,115,115,105,110,103,32,105,110,100,101,120,32,112,114,111,112,101,114,116,105,101,115,32,119,104,105,108,101,32,111,98,106,101,99,116,115,92,110,32,32,32,32,32,42,32,97,114,101,32,99,114,101,97,116,101,100,32,102,111,114,32,97,108,108,32,111,116,104,101,114,32,109,105,115,115,105,110,103,32,112,114,111,112,101,114,116,105,101,115,46,32,85,115,101,32,96,95,46,115,101,116,87,105,116,104,96,32,116,111,32,99,117,115,116,111,109,105,122,101,92,110,32,32,32,32,32,42,32,96,112,97,116,104,96,32,99,114,101,97,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,55,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,91,123,32,39,98,39,58,32,123,32,39,99,39,58,32,51,32,125,32,125,93,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,101,116,40,111,98,106,101,99,116,44,32,39,97,91,48,93,46,98,46,99,39,44,32,52,41,59,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,111,98,106,101,99,116,46,97,91,48,93,46,98,46,99,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,52,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,101,116,40,111,98,106,101,99,116,44,32,91,39,120,39,44,32,39,48,39,44,32,39,121,39,44,32,39,122,39,93,44,32,53,41,59,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,111,98,106,101,99,116,46,120,91,48,93,46,121,46,122,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,53,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,111,98,106,101,99,116,32,58,32,98,97,115,101,83,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,115,101,116,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,99,117,115,116,111,109,105,122,101,114,96,32,119,104,105,99,104,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,116,111,32,112,114,111,100,117,99,101,32,116,104,101,32,111,98,106,101,99,116,115,32,111,102,32,96,112,97,116,104,96,46,32,32,73,102,32,96,99,117,115,116,111,109,105,122,101,114,96,32,114,101,116,117,114,110,115,32,96,117,110,100,101,102,105,110,101,100,96,92,110,32,32,32,32,32,42,32,112,97,116,104,32,99,114,101,97,116,105,111,110,32,105,115,32,104,97,110,100,108,101,100,32,98,121,32,116,104,101,32,109,101,116,104,111,100,32,105,110,115,116,101,97,100,46,32,84,104,101,32,96,99,117,115,116,111,109,105,122,101,114,96,32,105,115,32,105,110,118,111,107,101,100,92,110,32,32,32,32,32,42,32,119,105,116,104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,32,40,110,115,86,97,108,117,101,44,32,107,101,121,44,32,110,115,79,98,106,101,99,116,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,97,115,115,105,103,110,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,101,116,87,105,116,104,40,111,98,106,101,99,116,44,32,39,91,48,93,91,49,93,39,44,32,39,97,39,44,32,79,98,106,101,99,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,48,39,58,32,123,32,39,49,39,58,32,39,97,39,32,125,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,101,116,87,105,116,104,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,118,97,108,117,101,44,32,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,99,117,115,116,111,109,105,122,101,114,32,61,32,116,121,112,101,111,102,32,99,117,115,116,111,109,105,122,101,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,99,117,115,116,111,109,105,122,101,114,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,111,98,106,101,99,116,32,58,32,98,97,115,101,83,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,118,97,108,117,101,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,111,119,110,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,45,118,97,108,117,101,32,112,97,105,114,115,32,102,111,114,32,96,111,98,106,101,99,116,96,92,110,32,32,32,32,32,42,32,119,104,105,99,104,32,99,97,110,32,98,101,32,99,111,110,115,117,109,101,100,32,98,121,32,96,95,46,102,114,111,109,80,97,105,114,115,96,46,32,73,102,32,96,111,98,106,101,99,116,96,32,105,115,32,97,32,109,97,112,32,111,114,32,115,101,116,44,32,105,116,115,92,110,32,32,32,32,32,42,32,101,110,116,114,105,101,115,32,97,114,101,32,114,101,116,117,114,110,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,97,108,105,97,115,32,101,110,116,114,105,101,115,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,107,101,121,45,118,97,108,117,101,32,112,97,105,114,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,97,32,61,32,49,59,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,98,32,61,32,50,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,111,46,112,114,111,116,111,116,121,112,101,46,99,32,61,32,51,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,80,97,105,114,115,40,110,101,119,32,70,111,111,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,91,39,97,39,44,32,49,93,44,32,91,39,98,39,44,32,50,93,93,32,40,105,116,101,114,97,116,105,111,110,32,111,114,100,101,114,32,105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101,100,41,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,116,111,80,97,105,114,115,32,61,32,99,114,101,97,116,101,84,111,80,97,105,114,115,40,107,101,121,115,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,111,119,110,32,97,110,100,32,105,110,104,101,114,105,116,101,100,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,45,118,97,108,117,101,32,112,97,105,114,115,92,110,32,32,32,32,32,42,32,102,111,114,32,96,111,98,106,101,99,116,96,32,119,104,105,99,104,32,99,97,110,32,98,101,32,99,111,110,115,117,109,101,100,32,98,121,32,96,95,46,102,114,111,109,80,97,105,114,115,96,46,32,73,102,32,96,111,98,106,101,99,116,96,32,105,115,32,97,32,109,97,112,92,110,32,32,32,32,32,42,32,111,114,32,115,101,116,44,32,105,116,115,32,101,110,116,114,105,101,115,32,97,114,101,32,114,101,116,117,114,110,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,97,108,105,97,115,32,101,110,116,114,105,101,115,73,110,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,107,101,121,45,118,97,108,117,101,32,112,97,105,114,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,97,32,61,32,49,59,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,98,32,61,32,50,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,111,46,112,114,111,116,111,116,121,112,101,46,99,32,61,32,51,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,80,97,105,114,115,73,110,40,110,101,119,32,70,111,111,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,91,39,97,39,44,32,49,93,44,32,91,39,98,39,44,32,50,93,44,32,91,39,99,39,44,32,51,93,93,32,40,105,116,101,114,97,116,105,111,110,32,111,114,100,101,114,32,105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101,100,41,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,116,111,80,97,105,114,115,73,110,32,61,32,99,114,101,97,116,101,84,111,80,97,105,114,115,40,107,101,121,115,73,110,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,110,32,97,108,116,101,114,110,97,116,105,118,101,32,116,111,32,96,95,46,114,101,100,117,99,101,96,59,32,116,104,105,115,32,109,101,116,104,111,100,32,116,114,97,110,115,102,111,114,109,115,32,96,111,98,106,101,99,116,96,32,116,111,32,97,32,110,101,119,92,110,32,32,32,32,32,42,32,96,97,99,99,117,109,117,108,97,116,111,114,96,32,111,98,106,101,99,116,32,119,104,105,99,104,32,105,115,32,116,104,101,32,114,101,115,117,108,116,32,111,102,32,114,117,110,110,105,110,103,32,101,97,99,104,32,111,102,32,105,116,115,32,111,119,110,92,110,32,32,32,32,32,42,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,32,112,114,111,112,101,114,116,105,101,115,32,116,104,114,117,32,96,105,116,101,114,97,116,101,101,96,44,32,119,105,116,104,32,101,97,99,104,32,105,110,118,111,99,97,116,105,111,110,92,110,32,32,32,32,32,42,32,112,111,116,101,110,116,105,97,108,108,121,32,109,117,116,97,116,105,110,103,32,116,104,101,32,96,97,99,99,117,109,117,108,97,116,111,114,96,32,111,98,106,101,99,116,46,32,73,102,32,96,97,99,99,117,109,117,108,97,116,111,114,96,32,105,115,32,110,111,116,92,110,32,32,32,32,32,42,32,112,114,111,118,105,100,101,100,44,32,97,32,110,101,119,32,111,98,106,101,99,116,32,119,105,116,104,32,116,104,101,32,115,97,109,101,32,96,91,91,80,114,111,116,111,116,121,112,101,93,93,96,32,119,105,108,108,32,98,101,32,117,115,101,100,46,32,84,104,101,92,110,32,32,32,32,32,42,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,102,111,117,114,32,97,114,103,117,109,101,110,116,115,58,32,40,97,99,99,117,109,117,108,97,116,111,114,44,32,118,97,108,117,101,44,32,107,101,121,44,32,111,98,106,101,99,116,41,46,92,110,32,32,32,32,32,42,32,73,116,101,114,97,116,101,101,32,102,117,110,99,116,105,111,110,115,32,109,97,121,32,101,120,105,116,32,105,116,101,114,97,116,105,111,110,32,101,97,114,108,121,32,98,121,32,101,120,112,108,105,99,105,116,108,121,32,114,101,116,117,114,110,105,110,103,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,49,46,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,91,97,99,99,117,109,117,108,97,116,111,114,93,32,84,104,101,32,99,117,115,116,111,109,32,97,99,99,117,109,117,108,97,116,111,114,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,99,99,117,109,117,108,97,116,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,114,97,110,115,102,111,114,109,40,91,50,44,32,51,44,32,52,93,44,32,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,110,32,42,61,32,110,41,59,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,110,32,37,32,50,32,61,61,32,48,59,92,110,32,32,32,32,32,42,32,125,44,32,91,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,52,44,32,57,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,114,97,110,115,102,111,114,109,40,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,44,32,39,99,39,58,32,49,32,125,44,32,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,118,97,108,117,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,42,32,32,32,40,114,101,115,117,108,116,91,118,97,108,117,101,93,32,124,124,32,40,114,101,115,117,108,116,91,118,97,108,117,101,93,32,61,32,91,93,41,41,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,32,42,32,125,44,32,123,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,49,39,58,32,91,39,97,39,44,32,39,99,39,93,44,32,39,50,39,58,32,91,39,98,39,93,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,40,111,98,106,101,99,116,44,32,105,116,101,114,97,116,101,101,44,32,97,99,99,117,109,117,108,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,65,114,114,32,61,32,105,115,65,114,114,97,121,40,111,98,106,101,99,116,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,65,114,114,76,105,107,101,32,61,32,105,115,65,114,114,32,124,124,32,105,115,66,117,102,102,101,114,40,111,98,106,101,99,116,41,32,124,124,32,105,115,84,121,112,101,100,65,114,114,97,121,40,111,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,105,116,101,114,97,116,101,101,32,61,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,52,41,59,92,110,32,32,32,32,32,32,105,102,32,40,97,99,99,117,109,117,108,97,116,111,114,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,67,116,111,114,32,61,32,111,98,106,101,99,116,32,38,38,32,111,98,106,101,99,116,46,99,111,110,115,116,114,117,99,116,111,114,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,76,105,107,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,99,99,117,109,117,108,97,116,111,114,32,61,32,105,115,65,114,114,32,63,32,110,101,119,32,67,116,111,114,32,58,32,91,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,115,79,98,106,101,99,116,40,111,98,106,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,99,99,117,109,117,108,97,116,111,114,32,61,32,105,115,70,117,110,99,116,105,111,110,40,67,116,111,114,41,32,63,32,98,97,115,101,67,114,101,97,116,101,40,103,101,116,80,114,111,116,111,116,121,112,101,40,111,98,106,101,99,116,41,41,32,58,32,123,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,99,99,117,109,117,108,97,116,111,114,32,61,32,123,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,40,105,115,65,114,114,76,105,107,101,32,63,32,97,114,114,97,121,69,97,99,104,32,58,32,98,97,115,101,70,111,114,79,119,110,41,40,111,98,106,101,99,116,44,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,44,32,105,110,100,101,120,44,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,114,97,116,101,101,40,97,99,99,117,109,117,108,97,116,111,114,44,32,118,97,108,117,101,44,32,105,110,100,101,120,44,32,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,99,99,117,109,117,108,97,116,111,114,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,109,111,118,101,115,32,116,104,101,32,112,114,111,112,101,114,116,121,32,97,116,32,96,112,97,116,104,96,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,117,110,115,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,105,115,32,100,101,108,101,116,101,100,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,91,123,32,39,98,39,58,32,123,32,39,99,39,58,32,55,32,125,32,125,93,32,125,59,92,110,32,32,32,32,32,42,32,95,46,117,110,115,101,116,40,111,98,106,101,99,116,44,32,39,97,91,48,93,46,98,46,99,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,91,123,32,39,98,39,58,32,123,125,32,125,93,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,110,115,101,116,40,111,98,106,101,99,116,44,32,91,39,97,39,44,32,39,48,39,44,32,39,98,39,44,32,39,99,39,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,91,123,32,39,98,39,58,32,123,125,32,125,93,32,125,59,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,110,115,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,116,114,117,101,32,58,32,98,97,115,101,85,110,115,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,115,101,116,96,32,101,120,99,101,112,116,32,116,104,97,116,32,97,99,99,101,112,116,115,32,96,117,112,100,97,116,101,114,96,32,116,111,32,112,114,111,100,117,99,101,32,116,104,101,92,110,32,32,32,32,32,42,32,118,97,108,117,101,32,116,111,32,115,101,116,46,32,85,115,101,32,96,95,46,117,112,100,97,116,101,87,105,116,104,96,32,116,111,32,99,117,115,116,111,109,105,122,101,32,96,112,97,116,104,96,32,99,114,101,97,116,105,111,110,46,32,84,104,101,32,96,117,112,100,97,116,101,114,96,92,110,32,32,32,32,32,42,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,54,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,117,112,100,97,116,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,112,114,111,100,117,99,101,32,116,104,101,32,117,112,100,97,116,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,91,123,32,39,98,39,58,32,123,32,39,99,39,58,32,51,32,125,32,125,93,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,112,100,97,116,101,40,111,98,106,101,99,116,44,32,39,97,91,48,93,46,98,46,99,39,44,32,102,117,110,99,116,105,111,110,40,110,41,32,123,32,114,101,116,117,114,110,32,110,32,42,32,110,59,32,125,41,59,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,111,98,106,101,99,116,46,97,91,48,93,46,98,46,99,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,57,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,112,100,97,116,101,40,111,98,106,101,99,116,44,32,39,120,91,48,93,46,121,46,122,39,44,32,102,117,110,99,116,105,111,110,40,110,41,32,123,32,114,101,116,117,114,110,32,110,32,63,32,110,32,43,32,49,32,58,32,48,59,32,125,41,59,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,111,98,106,101,99,116,46,120,91,48,93,46,121,46,122,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,48,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,117,112,100,97,116,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,111,98,106,101,99,116,32,58,32,98,97,115,101,85,112,100,97,116,101,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,99,97,115,116,70,117,110,99,116,105,111,110,40,117,112,100,97,116,101,114,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,117,112,100,97,116,101,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,99,117,115,116,111,109,105,122,101,114,96,32,119,104,105,99,104,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,116,111,32,112,114,111,100,117,99,101,32,116,104,101,32,111,98,106,101,99,116,115,32,111,102,32,96,112,97,116,104,96,46,32,32,73,102,32,96,99,117,115,116,111,109,105,122,101,114,96,32,114,101,116,117,114,110,115,32,96,117,110,100,101,102,105,110,101,100,96,92,110,32,32,32,32,32,42,32,112,97,116,104,32,99,114,101,97,116,105,111,110,32,105,115,32,104,97,110,100,108,101,100,32,98,121,32,116,104,101,32,109,101,116,104,111,100,32,105,110,115,116,101,97,100,46,32,84,104,101,32,96,99,117,115,116,111,109,105,122,101,114,96,32,105,115,32,105,110,118,111,107,101,100,92,110,32,32,32,32,32,42,32,119,105,116,104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,32,40,110,115,86,97,108,117,101,44,32,107,101,121,44,32,110,115,79,98,106,101,99,116,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,109,117,116,97,116,101,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,54,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,115,101,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,117,112,100,97,116,101,114,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,112,114,111,100,117,99,101,32,116,104,101,32,117,112,100,97,116,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,99,117,115,116,111,109,105,122,101,114,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,99,117,115,116,111,109,105,122,101,32,97,115,115,105,103,110,101,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,112,100,97,116,101,87,105,116,104,40,111,98,106,101,99,116,44,32,39,91,48,93,91,49,93,39,44,32,95,46,99,111,110,115,116,97,110,116,40,39,97,39,41,44,32,79,98,106,101,99,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,48,39,58,32,123,32,39,49,39,58,32,39,97,39,32,125,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,87,105,116,104,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,117,112,100,97,116,101,114,44,32,99,117,115,116,111,109,105,122,101,114,41,32,123,92,110,32,32,32,32,32,32,99,117,115,116,111,109,105,122,101,114,32,61,32,116,121,112,101,111,102,32,99,117,115,116,111,109,105,122,101,114,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,99,117,115,116,111,109,105,122,101,114,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,111,98,106,101,99,116,32,58,32,98,97,115,101,85,112,100,97,116,101,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,99,97,115,116,70,117,110,99,116,105,111,110,40,117,112,100,97,116,101,114,41,44,32,99,117,115,116,111,109,105,122,101,114,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,116,104,101,32,111,119,110,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,78,111,110,45,111,98,106,101,99,116,32,118,97,108,117,101,115,32,97,114,101,32,99,111,101,114,99,101,100,32,116,111,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,97,32,61,32,49,59,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,98,32,61,32,50,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,111,46,112,114,111,116,111,116,121,112,101,46,99,32,61,32,51,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,118,97,108,117,101,115,40,110,101,119,32,70,111,111,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,93,32,40,105,116,101,114,97,116,105,111,110,32,111,114,100,101,114,32,105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101,100,41,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,118,97,108,117,101,115,40,39,104,105,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,104,39,44,32,39,105,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,115,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,91,93,32,58,32,98,97,115,101,86,97,108,117,101,115,40,111,98,106,101,99,116,44,32,107,101,121,115,40,111,98,106,101,99,116,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,116,104,101,32,111,119,110,32,97,110,100,32,105,110,104,101,114,105,116,101,100,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,32,112,114,111,112,101,114,116,121,92,110,32,32,32,32,32,42,32,118,97,108,117,101,115,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,78,111,110,45,111,98,106,101,99,116,32,118,97,108,117,101,115,32,97,114,101,32,99,111,101,114,99,101,100,32,116,111,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,79,98,106,101,99,116,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,70,111,111,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,97,32,61,32,49,59,92,110,32,32,32,32,32,42,32,32,32,116,104,105,115,46,98,32,61,32,50,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,111,46,112,114,111,116,111,116,121,112,101,46,99,32,61,32,51,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,118,97,108,117,101,115,73,110,40,110,101,119,32,70,111,111,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,93,32,40,105,116,101,114,97,116,105,111,110,32,111,114,100,101,114,32,105,115,32,110,111,116,32,103,117,97,114,97,110,116,101,101,100,41,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,115,73,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,91,93,32,58,32,98,97,115,101,86,97,108,117,101,115,40,111,98,106,101,99,116,44,32,107,101,121,115,73,110,40,111,98,106,101,99,116,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,108,97,109,112,115,32,96,110,117,109,98,101,114,96,32,119,105,116,104,105,110,32,116,104,101,32,105,110,99,108,117,115,105,118,101,32,96,108,111,119,101,114,96,32,97,110,100,32,96,117,112,112,101,114,96,32,98,111,117,110,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,78,117,109,98,101,114,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,110,117,109,98,101,114,32,84,104,101,32,110,117,109,98,101,114,32,116,111,32,99,108,97,109,112,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,108,111,119,101,114,93,32,84,104,101,32,108,111,119,101,114,32,98,111,117,110,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,117,112,112,101,114,32,84,104,101,32,117,112,112,101,114,32,98,111,117,110,100,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,108,97,109,112,101,100,32,110,117,109,98,101,114,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,108,97,109,112,40,45,49,48,44,32,45,53,44,32,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,45,53,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,108,97,109,112,40,49,48,44,32,45,53,44,32,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,53,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,97,109,112,40,110,117,109,98,101,114,44,32,108,111,119,101,114,44,32,117,112,112,101,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,117,112,112,101,114,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,117,112,112,101,114,32,61,32,108,111,119,101,114,59,92,110,32,32,32,32,32,32,32,32,108,111,119,101,114,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,117,112,112,101,114,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,117,112,112,101,114,32,61,32,116,111,78,117,109,98,101,114,40,117,112,112,101,114,41,59,92,110,32,32,32,32,32,32,32,32,117,112,112,101,114,32,61,32,117,112,112,101,114,32,61,61,61,32,117,112,112,101,114,32,63,32,117,112,112,101,114,32,58,32,48,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,108,111,119,101,114,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,108,111,119,101,114,32,61,32,116,111,78,117,109,98,101,114,40,108,111,119,101,114,41,59,92,110,32,32,32,32,32,32,32,32,108,111,119,101,114,32,61,32,108,111,119,101,114,32,61,61,61,32,108,111,119,101,114,32,63,32,108,111,119,101,114,32,58,32,48,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,67,108,97,109,112,40,116,111,78,117,109,98,101,114,40,110,117,109,98,101,114,41,44,32,108,111,119,101,114,44,32,117,112,112,101,114,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,110,96,32,105,115,32,98,101,116,119,101,101,110,32,96,115,116,97,114,116,96,32,97,110,100,32,117,112,32,116,111,44,32,98,117,116,32,110,111,116,32,105,110,99,108,117,100,105,110,103,44,32,96,101,110,100,96,46,32,73,102,92,110,32,32,32,32,32,42,32,96,101,110,100,96,32,105,115,32,110,111,116,32,115,112,101,99,105,102,105,101,100,44,32,105,116,39,115,32,115,101,116,32,116,111,32,96,115,116,97,114,116,96,32,119,105,116,104,32,96,115,116,97,114,116,96,32,116,104,101,110,32,115,101,116,32,116,111,32,96,48,96,46,92,110,32,32,32,32,32,42,32,73,102,32,96,115,116,97,114,116,96,32,105,115,32,103,114,101,97,116,101,114,32,116,104,97,110,32,96,101,110,100,96,32,116,104,101,32,112,97,114,97,109,115,32,97,114,101,32,115,119,97,112,112,101,100,32,116,111,32,115,117,112,112,111,114,116,92,110,32,32,32,32,32,42,32,110,101,103,97,116,105,118,101,32,114,97,110,103,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,78,117,109,98,101,114,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,110,117,109,98,101,114,32,84,104,101,32,110,117,109,98,101,114,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,115,116,97,114,116,61,48,93,32,84,104,101,32,115,116,97,114,116,32,111,102,32,116,104,101,32,114,97,110,103,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,101,110,100,32,84,104,101,32,101,110,100,32,111,102,32,116,104,101,32,114,97,110,103,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,110,117,109,98,101,114,96,32,105,115,32,105,110,32,116,104,101,32,114,97,110,103,101,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,114,97,110,103,101,44,32,95,46,114,97,110,103,101,82,105,103,104,116,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,82,97,110,103,101,40,51,44,32,50,44,32,52,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,82,97,110,103,101,40,52,44,32,56,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,82,97,110,103,101,40,52,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,82,97,110,103,101,40,50,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,82,97,110,103,101,40,49,46,50,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,82,97,110,103,101,40,53,46,50,44,32,52,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,105,110,82,97,110,103,101,40,45,51,44,32,45,50,44,32,45,54,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,82,97,110,103,101,40,110,117,109,98,101,114,44,32,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,32,61,32,116,111,70,105,110,105,116,101,40,115,116,97,114,116,41,59,92,110,32,32,32,32,32,32,105,102,32,40,101,110,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,101,110,100,32,61,32,115,116,97,114,116,59,92,110,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,48,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,101,110,100,32,61,32,116,111,70,105,110,105,116,101,40,101,110,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,110,117,109,98,101,114,32,61,32,116,111,78,117,109,98,101,114,40,110,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,73,110,82,97,110,103,101,40,110,117,109,98,101,114,44,32,115,116,97,114,116,44,32,101,110,100,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,80,114,111,100,117,99,101,115,32,97,32,114,97,110,100,111,109,32,110,117,109,98,101,114,32,98,101,116,119,101,101,110,32,116,104,101,32,105,110,99,108,117,115,105,118,101,32,96,108,111,119,101,114,96,32,97,110,100,32,96,117,112,112,101,114,96,32,98,111,117,110,100,115,46,92,110,32,32,32,32,32,42,32,73,102,32,111,110,108,121,32,111,110,101,32,97,114,103,117,109,101,110,116,32,105,115,32,112,114,111,118,105,100,101,100,32,97,32,110,117,109,98,101,114,32,98,101,116,119,101,101,110,32,96,48,96,32,97,110,100,32,116,104,101,32,103,105,118,101,110,32,110,117,109,98,101,114,92,110,32,32,32,32,32,42,32,105,115,32,114,101,116,117,114,110,101,100,46,32,73,102,32,96,102,108,111,97,116,105,110,103,96,32,105,115,32,96,116,114,117,101,96,44,32,111,114,32,101,105,116,104,101,114,32,96,108,111,119,101,114,96,32,111,114,32,96,117,112,112,101,114,96,32,97,114,101,92,110,32,32,32,32,32,42,32,102,108,111,97,116,115,44,32,97,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,110,117,109,98,101,114,32,105,115,32,114,101,116,117,114,110,101,100,32,105,110,115,116,101,97,100,32,111,102,32,97,110,32,105,110,116,101,103,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,74,97,118,97,83,99,114,105,112,116,32,102,111,108,108,111,119,115,32,116,104,101,32,73,69,69,69,45,55,53,52,32,115,116,97,110,100,97,114,100,32,102,111,114,32,114,101,115,111,108,118,105,110,103,92,110,32,32,32,32,32,42,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,118,97,108,117,101,115,32,119,104,105,99,104,32,99,97,110,32,112,114,111,100,117,99,101,32,117,110,101,120,112,101,99,116,101,100,32,114,101,115,117,108,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,55,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,78,117,109,98,101,114,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,108,111,119,101,114,61,48,93,32,84,104,101,32,108,111,119,101,114,32,98,111,117,110,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,117,112,112,101,114,61,49,93,32,84,104,101,32,117,112,112,101,114,32,98,111,117,110,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,102,108,111,97,116,105,110,103,93,32,83,112,101,99,105,102,121,32,114,101,116,117,114,110,105,110,103,32,97,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,110,117,109,98,101,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,97,110,100,111,109,32,110,117,109,98,101,114,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,100,111,109,40,48,44,32,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,97,110,32,105,110,116,101,103,101,114,32,98,101,116,119,101,101,110,32,48,32,97,110,100,32,53,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,100,111,109,40,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,97,108,115,111,32,97,110,32,105,110,116,101,103,101,114,32,98,101,116,119,101,101,110,32,48,32,97,110,100,32,53,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,100,111,109,40,53,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,97,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,110,117,109,98,101,114,32,98,101,116,119,101,101,110,32,48,32,97,110,100,32,53,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,100,111,109,40,49,46,50,44,32,53,46,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,97,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,110,117,109,98,101,114,32,98,101,116,119,101,101,110,32,49,46,50,32,97,110,100,32,53,46,50,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,97,110,100,111,109,40,108,111,119,101,114,44,32,117,112,112,101,114,44,32,102,108,111,97,116,105,110,103,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,102,108,111,97,116,105,110,103,32,38,38,32,116,121,112,101,111,102,32,102,108,111,97,116,105,110,103,32,33,61,32,39,98,111,111,108,101,97,110,39,32,38,38,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,108,111,119,101,114,44,32,117,112,112,101,114,44,32,102,108,111,97,116,105,110,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,117,112,112,101,114,32,61,32,102,108,111,97,116,105,110,103,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,102,108,111,97,116,105,110,103,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,117,112,112,101,114,32,61,61,32,39,98,111,111,108,101,97,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,108,111,97,116,105,110,103,32,61,32,117,112,112,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,117,112,112,101,114,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,116,121,112,101,111,102,32,108,111,119,101,114,32,61,61,32,39,98,111,111,108,101,97,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,108,111,97,116,105,110,103,32,61,32,108,111,119,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,108,111,119,101,114,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,108,111,119,101,114,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,117,112,112,101,114,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,108,111,119,101,114,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,117,112,112,101,114,32,61,32,49,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,108,111,119,101,114,32,61,32,116,111,70,105,110,105,116,101,40,108,111,119,101,114,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,117,112,112,101,114,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,117,112,112,101,114,32,61,32,108,111,119,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,108,111,119,101,114,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,117,112,112,101,114,32,61,32,116,111,70,105,110,105,116,101,40,117,112,112,101,114,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,108,111,119,101,114,32,62,32,117,112,112,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,101,109,112,32,61,32,108,111,119,101,114,59,92,110,32,32,32,32,32,32,32,32,108,111,119,101,114,32,61,32,117,112,112,101,114,59,92,110,32,32,32,32,32,32,32,32,117,112,112,101,114,32,61,32,116,101,109,112,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,102,108,111,97,116,105,110,103,32,124,124,32,108,111,119,101,114,32,37,32,49,32,124,124,32,117,112,112,101,114,32,37,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,97,110,100,32,61,32,110,97,116,105,118,101,82,97,110,100,111,109,40,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,97,116,105,118,101,77,105,110,40,108,111,119,101,114,32,43,32,40,114,97,110,100,32,42,32,40,117,112,112,101,114,32,45,32,108,111,119,101,114,32,43,32,102,114,101,101,80,97,114,115,101,70,108,111,97,116,40,39,49,101,45,39,32,43,32,40,40,114,97,110,100,32,43,32,39,39,41,46,108,101,110,103,116,104,32,45,32,49,41,41,41,41,44,32,117,112,112,101,114,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,82,97,110,100,111,109,40,108,111,119,101,114,44,32,117,112,112,101,114,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,115,116,114,105,110,103,96,32,116,111,32,91,99,97,109,101,108,32,99,97,115,101,93,40,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,67,97,109,101,108,67,97,115,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,97,109,101,108,32,99,97,115,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,97,109,101,108,67,97,115,101,40,39,70,111,111,32,66,97,114,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,111,111,66,97,114,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,97,109,101,108,67,97,115,101,40,39,45,45,102,111,111,45,98,97,114,45,45,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,111,111,66,97,114,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,97,109,101,108,67,97,115,101,40,39,95,95,70,79,79,95,66,65,82,95,95,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,111,111,66,97,114,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,99,97,109,101,108,67,97,115,101,32,61,32,99,114,101,97,116,101,67,111,109,112,111,117,110,100,101,114,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,119,111,114,100,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,119,111,114,100,32,61,32,119,111,114,100,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,43,32,40,105,110,100,101,120,32,63,32,99,97,112,105,116,97,108,105,122,101,40,119,111,114,100,41,32,58,32,119,111,114,100,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,116,104,101,32,102,105,114,115,116,32,99,104,97,114,97,99,116,101,114,32,111,102,32,96,115,116,114,105,110,103,96,32,116,111,32,117,112,112,101,114,32,99,97,115,101,32,97,110,100,32,116,104,101,32,114,101,109,97,105,110,105,110,103,92,110,32,32,32,32,32,42,32,116,111,32,108,111,119,101,114,32,99,97,115,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,97,112,105,116,97,108,105,122,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,97,112,105,116,97,108,105,122,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,97,112,105,116,97,108,105,122,101,40,39,70,82,69,68,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,70,114,101,100,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,97,112,105,116,97,108,105,122,101,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,117,112,112,101,114,70,105,114,115,116,40,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,68,101,98,117,114,114,115,32,96,115,116,114,105,110,103,96,32,98,121,32,99,111,110,118,101,114,116,105,110,103,92,110,32,32,32,32,32,42,32,91,76,97,116,105,110,45,49,32,83,117,112,112,108,101,109,101,110,116,93,40,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,76,97,116,105,110,45,49,95,83,117,112,112,108,101,109,101,110,116,95,40,85,110,105,99,111,100,101,95,98,108,111,99,107,41,35,67,104,97,114,97,99,116,101,114,95,116,97,98,108,101,41,92,110,32,32,32,32,32,42,32,97,110,100,32,91,76,97,116,105,110,32,69,120,116,101,110,100,101,100,45,65,93,40,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,76,97,116,105,110,95,69,120,116,101,110,100,101,100,45,65,41,92,110,32,32,32,32,32,42,32,108,101,116,116,101,114,115,32,116,111,32,98,97,115,105,99,32,76,97,116,105,110,32,108,101,116,116,101,114,115,32,97,110,100,32,114,101,109,111,118,105,110,103,92,110,32,32,32,32,32,42,32,91,99,111,109,98,105,110,105,110,103,32,100,105,97,99,114,105,116,105,99,97,108,32,109,97,114,107,115,93,40,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,67,111,109,98,105,110,105,110,103,95,68,105,97,99,114,105,116,105,99,97,108,95,77,97,114,107,115,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,100,101,98,117,114,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,100,101,98,117,114,114,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,101,98,117,114,114,40,39,100,195,169,106,195,160,32,118,117,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,100,101,106,97,32,118,117,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,100,101,98,117,114,114,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,32,38,38,32,115,116,114,105,110,103,46,114,101,112,108,97,99,101,40,114,101,76,97,116,105,110,44,32,100,101,98,117,114,114,76,101,116,116,101,114,41,46,114,101,112,108,97,99,101,40,114,101,67,111,109,98,111,77,97,114,107,44,32,39,39,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,115,116,114,105,110,103,96,32,101,110,100,115,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,116,97,114,103,101,116,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,116,97,114,103,101,116,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,112,111,115,105,116,105,111,110,61,115,116,114,105,110,103,46,108,101,110,103,116,104,93,32,84,104,101,32,112,111,115,105,116,105,111,110,32,116,111,32,115,101,97,114,99,104,32,117,112,32,116,111,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,115,116,114,105,110,103,96,32,101,110,100,115,32,119,105,116,104,32,96,116,97,114,103,101,116,96,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,101,110,100,115,87,105,116,104,40,39,97,98,99,39,44,32,39,99,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,101,110,100,115,87,105,116,104,40,39,97,98,99,39,44,32,39,98,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,101,110,100,115,87,105,116,104,40,39,97,98,99,39,44,32,39,98,39,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,101,110,100,115,87,105,116,104,40,115,116,114,105,110,103,44,32,116,97,114,103,101,116,44,32,112,111,115,105,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,116,97,114,103,101,116,32,61,32,98,97,115,101,84,111,83,116,114,105,110,103,40,116,97,114,103,101,116,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,115,116,114,105,110,103,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,112,111,115,105,116,105,111,110,32,61,32,112,111,115,105,116,105,111,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,32,32,63,32,108,101,110,103,116,104,92,110,32,32,32,32,32,32,32,32,58,32,98,97,115,101,67,108,97,109,112,40,116,111,73,110,116,101,103,101,114,40,112,111,115,105,116,105,111,110,41,44,32,48,44,32,108,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,101,110,100,32,61,32,112,111,115,105,116,105,111,110,59,92,110,32,32,32,32,32,32,112,111,115,105,116,105,111,110,32,45,61,32,116,97,114,103,101,116,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,111,115,105,116,105,111,110,32,62,61,32,48,32,38,38,32,115,116,114,105,110,103,46,115,108,105,99,101,40,112,111,115,105,116,105,111,110,44,32,101,110,100,41,32,61,61,32,116,97,114,103,101,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,116,104,101,32,99,104,97,114,97,99,116,101,114,115,32,92,34,38,92,34,44,32,92,34,60,92,34,44,32,92,34,62,92,34,44,32,39,92,34,39,44,32,97,110,100,32,92,34,39,92,34,32,105,110,32,96,115,116,114,105,110,103,96,32,116,111,32,116,104,101,105,114,92,110,32,32,32,32,32,42,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,72,84,77,76,32,101,110,116,105,116,105,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,78,111,32,111,116,104,101,114,32,99,104,97,114,97,99,116,101,114,115,32,97,114,101,32,101,115,99,97,112,101,100,46,32,84,111,32,101,115,99,97,112,101,32,97,100,100,105,116,105,111,110,97,108,92,110,32,32,32,32,32,42,32,99,104,97,114,97,99,116,101,114,115,32,117,115,101,32,97,32,116,104,105,114,100,45,112,97,114,116,121,32,108,105,98,114,97,114,121,32,108,105,107,101,32,91,95,104,101,95,93,40,104,116,116,112,115,58,47,47,109,116,104,115,46,98,101,47,104,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,111,117,103,104,32,116,104,101,32,92,34,62,92,34,32,99,104,97,114,97,99,116,101,114,32,105,115,32,101,115,99,97,112,101,100,32,102,111,114,32,115,121,109,109,101,116,114,121,44,32,99,104,97,114,97,99,116,101,114,115,32,108,105,107,101,92,110,32,32,32,32,32,42,32,92,34,62,92,34,32,97,110,100,32,92,34,47,92,34,32,100,111,110,39,116,32,110,101,101,100,32,101,115,99,97,112,105,110,103,32,105,110,32,72,84,77,76,32,97,110,100,32,104,97,118,101,32,110,111,32,115,112,101,99,105,97,108,32,109,101,97,110,105,110,103,92,110,32,32,32,32,32,42,32,117,110,108,101,115,115,32,116,104,101,121,39,114,101,32,112,97,114,116,32,111,102,32,97,32,116,97,103,32,111,114,32,117,110,113,117,111,116,101,100,32,97,116,116,114,105,98,117,116,101,32,118,97,108,117,101,46,32,83,101,101,92,110,32,32,32,32,32,42,32,91,77,97,116,104,105,97,115,32,66,121,110,101,110,115,39,115,32,97,114,116,105,99,108,101,93,40,104,116,116,112,115,58,47,47,109,97,116,104,105,97,115,98,121,110,101,110,115,46,98,101,47,110,111,116,101,115,47,97,109,98,105,103,117,111,117,115,45,97,109,112,101,114,115,97,110,100,115,41,92,110,32,32,32,32,32,42,32,40,117,110,100,101,114,32,92,34,115,101,109,105,45,114,101,108,97,116,101,100,32,102,117,110,32,102,97,99,116,92,34,41,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,87,104,101,110,32,119,111,114,107,105,110,103,32,119,105,116,104,32,72,84,77,76,32,121,111,117,32,115,104,111,117,108,100,32,97,108,119,97,121,115,92,110,32,32,32,32,32,42,32,91,113,117,111,116,101,32,97,116,116,114,105,98,117,116,101,32,118,97,108,117,101,115,93,40,104,116,116,112,58,47,47,119,111,110,107,111,46,99,111,109,47,112,111,115,116,47,104,116,109,108,45,101,115,99,97,112,105,110,103,41,32,116,111,32,114,101,100,117,99,101,92,110,32,32,32,32,32,42,32,88,83,83,32,118,101,99,116,111,114,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,101,115,99,97,112,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,101,115,99,97,112,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,101,115,99,97,112,101,40,39,102,114,101,100,44,32,98,97,114,110,101,121,44,32,38,32,112,101,98,98,108,101,115,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,114,101,100,44,32,98,97,114,110,101,121,44,32,38,97,109,112,59,32,112,101,98,98,108,101,115,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,101,115,99,97,112,101,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,115,116,114,105,110,103,32,38,38,32,114,101,72,97,115,85,110,101,115,99,97,112,101,100,72,116,109,108,46,116,101,115,116,40,115,116,114,105,110,103,41,41,92,110,32,32,32,32,32,32,32,32,63,32,115,116,114,105,110,103,46,114,101,112,108,97,99,101,40,114,101,85,110,101,115,99,97,112,101,100,72,116,109,108,44,32,101,115,99,97,112,101,72,116,109,108,67,104,97,114,41,92,110,32,32,32,32,32,32,32,32,58,32,115,116,114,105,110,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,69,115,99,97,112,101,115,32,116,104,101,32,96,82,101,103,69,120,112,96,32,115,112,101,99,105,97,108,32,99,104,97,114,97,99,116,101,114,115,32,92,34,94,92,34,44,32,92,34,36,92,34,44,32,92,34,92,92,92,34,44,32,92,34,46,92,34,44,32,92,34,42,92,34,44,32,92,34,43,92,34,44,92,110,32,32,32,32,32,42,32,92,34,63,92,34,44,32,92,34,40,92,34,44,32,92,34,41,92,34,44,32,92,34,91,92,34,44,32,92,34,93,92,34,44,32,92,34,123,92,34,44,32,92,34,125,92,34,44,32,97,110,100,32,92,34,124,92,34,32,105,110,32,96,115,116,114,105,110,103,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,101,115,99,97,112,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,101,115,99,97,112,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,101,115,99,97,112,101,82,101,103,69,120,112,40,39,91,108,111,100,97,115,104,93,40,104,116,116,112,115,58,47,47,108,111,100,97,115,104,46,99,111,109,47,41,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,92,92,91,108,111,100,97,115,104,92,92,93,92,92,40,104,116,116,112,115,58,47,47,108,111,100,97,115,104,92,92,46,99,111,109,47,92,92,41,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,101,115,99,97,112,101,82,101,103,69,120,112,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,115,116,114,105,110,103,32,38,38,32,114,101,72,97,115,82,101,103,69,120,112,67,104,97,114,46,116,101,115,116,40,115,116,114,105,110,103,41,41,92,110,32,32,32,32,32,32,32,32,63,32,115,116,114,105,110,103,46,114,101,112,108,97,99,101,40,114,101,82,101,103,69,120,112,67,104,97,114,44,32,39,92,92,92,92,36,38,39,41,92,110,32,32,32,32,32,32,32,32,58,32,115,116,114,105,110,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,115,116,114,105,110,103,96,32,116,111,92,110,32,32,32,32,32,42,32,91,107,101,98,97,98,32,99,97,115,101,93,40,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,76,101,116,116,101,114,95,99,97,115,101,35,83,112,101,99,105,97,108,95,99,97,115,101,95,115,116,121,108,101,115,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,107,101,98,97,98,32,99,97,115,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,107,101,98,97,98,67,97,115,101,40,39,70,111,111,32,66,97,114,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,111,111,45,98,97,114,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,107,101,98,97,98,67,97,115,101,40,39,102,111,111,66,97,114,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,111,111,45,98,97,114,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,107,101,98,97,98,67,97,115,101,40,39,95,95,70,79,79,95,66,65,82,95,95,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,111,111,45,98,97,114,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,107,101,98,97,98,67,97,115,101,32,61,32,99,114,101,97,116,101,67,111,109,112,111,117,110,100,101,114,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,119,111,114,100,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,43,32,40,105,110,100,101,120,32,63,32,39,45,39,32,58,32,39,39,41,32,43,32,119,111,114,100,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,115,116,114,105,110,103,96,44,32,97,115,32,115,112,97,99,101,32,115,101,112,97,114,97,116,101,100,32,119,111,114,100,115,44,32,116,111,32,108,111,119,101,114,32,99,97,115,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,108,111,119,101,114,32,99,97,115,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,108,111,119,101,114,67,97,115,101,40,39,45,45,70,111,111,45,66,97,114,45,45,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,111,111,32,98,97,114,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,108,111,119,101,114,67,97,115,101,40,39,102,111,111,66,97,114,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,111,111,32,98,97,114,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,108,111,119,101,114,67,97,115,101,40,39,95,95,70,79,79,95,66,65,82,95,95,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,111,111,32,98,97,114,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,108,111,119,101,114,67,97,115,101,32,61,32,99,114,101,97,116,101,67,111,109,112,111,117,110,100,101,114,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,119,111,114,100,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,43,32,40,105,110,100,101,120,32,63,32,39,32,39,32,58,32,39,39,41,32,43,32,119,111,114,100,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,116,104,101,32,102,105,114,115,116,32,99,104,97,114,97,99,116,101,114,32,111,102,32,96,115,116,114,105,110,103,96,32,116,111,32,108,111,119,101,114,32,99,97,115,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,108,111,119,101,114,70,105,114,115,116,40,39,70,114,101,100,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,114,101,100,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,108,111,119,101,114,70,105,114,115,116,40,39,70,82,69,68,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,82,69,68,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,108,111,119,101,114,70,105,114,115,116,32,61,32,99,114,101,97,116,101,67,97,115,101,70,105,114,115,116,40,39,116,111,76,111,119,101,114,67,97,115,101,39,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,80,97,100,115,32,96,115,116,114,105,110,103,96,32,111,110,32,116,104,101,32,108,101,102,116,32,97,110,100,32,114,105,103,104,116,32,115,105,100,101,115,32,105,102,32,105,116,39,115,32,115,104,111,114,116,101,114,32,116,104,97,110,32,96,108,101,110,103,116,104,96,46,92,110,32,32,32,32,32,42,32,80,97,100,100,105,110,103,32,99,104,97,114,97,99,116,101,114,115,32,97,114,101,32,116,114,117,110,99,97,116,101,100,32,105,102,32,116,104,101,121,32,99,97,110,39,116,32,98,101,32,101,118,101,110,108,121,32,100,105,118,105,100,101,100,32,98,121,32,96,108,101,110,103,116,104,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,112,97,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,108,101,110,103,116,104,61,48,93,32,84,104,101,32,112,97,100,100,105,110,103,32,108,101,110,103,116,104,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,99,104,97,114,115,61,39,32,39,93,32,84,104,101,32,115,116,114,105,110,103,32,117,115,101,100,32,97,115,32,112,97,100,100,105,110,103,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,112,97,100,100,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,97,100,40,39,97,98,99,39,44,32,56,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,32,32,97,98,99,32,32,32,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,97,100,40,39,97,98,99,39,44,32,56,44,32,39,95,45,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,95,45,97,98,99,95,45,95,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,97,100,40,39,97,98,99,39,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,97,98,99,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,100,40,115,116,114,105,110,103,44,32,108,101,110,103,116,104,44,32,99,104,97,114,115,41,32,123,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,116,111,73,110,116,101,103,101,114,40,108,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,116,114,76,101,110,103,116,104,32,61,32,108,101,110,103,116,104,32,63,32,115,116,114,105,110,103,83,105,122,101,40,115,116,114,105,110,103,41,32,58,32,48,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,110,103,116,104,32,124,124,32,115,116,114,76,101,110,103,116,104,32,62,61,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,109,105,100,32,61,32,40,108,101,110,103,116,104,32,45,32,115,116,114,76,101,110,103,116,104,41,32,47,32,50,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,80,97,100,100,105,110,103,40,110,97,116,105,118,101,70,108,111,111,114,40,109,105,100,41,44,32,99,104,97,114,115,41,32,43,92,110,32,32,32,32,32,32,32,32,115,116,114,105,110,103,32,43,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,80,97,100,100,105,110,103,40,110,97,116,105,118,101,67,101,105,108,40,109,105,100,41,44,32,99,104,97,114,115,41,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,80,97,100,115,32,96,115,116,114,105,110,103,96,32,111,110,32,116,104,101,32,114,105,103,104,116,32,115,105,100,101,32,105,102,32,105,116,39,115,32,115,104,111,114,116,101,114,32,116,104,97,110,32,96,108,101,110,103,116,104,96,46,32,80,97,100,100,105,110,103,92,110,32,32,32,32,32,42,32,99,104,97,114,97,99,116,101,114,115,32,97,114,101,32,116,114,117,110,99,97,116,101,100,32,105,102,32,116,104,101,121,32,101,120,99,101,101,100,32,96,108,101,110,103,116,104,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,112,97,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,108,101,110,103,116,104,61,48,93,32,84,104,101,32,112,97,100,100,105,110,103,32,108,101,110,103,116,104,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,99,104,97,114,115,61,39,32,39,93,32,84,104,101,32,115,116,114,105,110,103,32,117,115,101,100,32,97,115,32,112,97,100,100,105,110,103,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,112,97,100,100,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,97,100,69,110,100,40,39,97,98,99,39,44,32,54,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,97,98,99,32,32,32,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,97,100,69,110,100,40,39,97,98,99,39,44,32,54,44,32,39,95,45,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,97,98,99,95,45,95,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,97,100,69,110,100,40,39,97,98,99,39,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,97,98,99,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,100,69,110,100,40,115,116,114,105,110,103,44,32,108,101,110,103,116,104,44,32,99,104,97,114,115,41,32,123,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,116,111,73,110,116,101,103,101,114,40,108,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,116,114,76,101,110,103,116,104,32,61,32,108,101,110,103,116,104,32,63,32,115,116,114,105,110,103,83,105,122,101,40,115,116,114,105,110,103,41,32,58,32,48,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,108,101,110,103,116,104,32,38,38,32,115,116,114,76,101,110,103,116,104,32,60,32,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,40,115,116,114,105,110,103,32,43,32,99,114,101,97,116,101,80,97,100,100,105,110,103,40,108,101,110,103,116,104,32,45,32,115,116,114,76,101,110,103,116,104,44,32,99,104,97,114,115,41,41,92,110,32,32,32,32,32,32,32,32,58,32,115,116,114,105,110,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,80,97,100,115,32,96,115,116,114,105,110,103,96,32,111,110,32,116,104,101,32,108,101,102,116,32,115,105,100,101,32,105,102,32,105,116,39,115,32,115,104,111,114,116,101,114,32,116,104,97,110,32,96,108,101,110,103,116,104,96,46,32,80,97,100,100,105,110,103,92,110,32,32,32,32,32,42,32,99,104,97,114,97,99,116,101,114,115,32,97,114,101,32,116,114,117,110,99,97,116,101,100,32,105,102,32,116,104,101,121,32,101,120,99,101,101,100,32,96,108,101,110,103,116,104,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,112,97,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,108,101,110,103,116,104,61,48,93,32,84,104,101,32,112,97,100,100,105,110,103,32,108,101,110,103,116,104,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,99,104,97,114,115,61,39,32,39,93,32,84,104,101,32,115,116,114,105,110,103,32,117,115,101,100,32,97,115,32,112,97,100,100,105,110,103,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,112,97,100,100,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,97,100,83,116,97,114,116,40,39,97,98,99,39,44,32,54,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,32,32,32,97,98,99,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,97,100,83,116,97,114,116,40,39,97,98,99,39,44,32,54,44,32,39,95,45,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,95,45,95,97,98,99,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,97,100,83,116,97,114,116,40,39,97,98,99,39,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,97,98,99,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,100,83,116,97,114,116,40,115,116,114,105,110,103,44,32,108,101,110,103,116,104,44,32,99,104,97,114,115,41,32,123,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,116,111,73,110,116,101,103,101,114,40,108,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,116,114,76,101,110,103,116,104,32,61,32,108,101,110,103,116,104,32,63,32,115,116,114,105,110,103,83,105,122,101,40,115,116,114,105,110,103,41,32,58,32,48,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,108,101,110,103,116,104,32,38,38,32,115,116,114,76,101,110,103,116,104,32,60,32,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,40,99,114,101,97,116,101,80,97,100,100,105,110,103,40,108,101,110,103,116,104,32,45,32,115,116,114,76,101,110,103,116,104,44,32,99,104,97,114,115,41,32,43,32,115,116,114,105,110,103,41,92,110,32,32,32,32,32,32,32,32,58,32,115,116,114,105,110,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,115,116,114,105,110,103,96,32,116,111,32,97,110,32,105,110,116,101,103,101,114,32,111,102,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,114,97,100,105,120,46,32,73,102,32,96,114,97,100,105,120,96,32,105,115,92,110,32,32,32,32,32,42,32,96,117,110,100,101,102,105,110,101,100,96,32,111,114,32,96,48,96,44,32,97,32,96,114,97,100,105,120,96,32,111,102,32,96,49,48,96,32,105,115,32,117,115,101,100,32,117,110,108,101,115,115,32,96,118,97,108,117,101,96,32,105,115,32,97,92,110,32,32,32,32,32,42,32,104,101,120,97,100,101,99,105,109,97,108,44,32,105,110,32,119,104,105,99,104,32,99,97,115,101,32,97,32,96,114,97,100,105,120,96,32,111,102,32,96,49,54,96,32,105,115,32,117,115,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,97,108,105,103,110,115,32,119,105,116,104,32,116,104,101,92,110,32,32,32,32,32,42,32,91,69,83,53,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,93,40,104,116,116,112,115,58,47,47,101,115,53,46,103,105,116,104,117,98,46,105,111,47,35,120,49,53,46,49,46,50,46,50,41,32,111,102,32,96,112,97,114,115,101,73,110,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,49,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,115,116,114,105,110,103,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,114,97,100,105,120,61,49,48,93,32,84,104,101,32,114,97,100,105,120,32,116,111,32,105,110,116,101,114,112,114,101,116,32,96,118,97,108,117,101,96,32,98,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,105,110,116,101,103,101,114,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,112,97,114,115,101,73,110,116,40,39,48,56,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,56,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,91,39,54,39,44,32,39,48,56,39,44,32,39,49,48,39,93,44,32,95,46,112,97,114,115,101,73,110,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,54,44,32,56,44,32,49,48,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,73,110,116,40,115,116,114,105,110,103,44,32,114,97,100,105,120,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,103,117,97,114,100,32,124,124,32,114,97,100,105,120,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,97,100,105,120,32,61,32,48,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,114,97,100,105,120,41,32,123,92,110,32,32,32,32,32,32,32,32,114,97,100,105,120,32,61,32,43,114,97,100,105,120,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,97,116,105,118,101,80,97,114,115,101,73,110,116,40,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,46,114,101,112,108,97,99,101,40,114,101,84,114,105,109,83,116,97,114,116,44,32,39,39,41,44,32,114,97,100,105,120,32,124,124,32,48,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,112,101,97,116,115,32,116,104,101,32,103,105,118,101,110,32,115,116,114,105,110,103,32,96,110,96,32,116,105,109,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,114,101,112,101,97,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,110,61,49,93,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,116,105,109,101,115,32,116,111,32,114,101,112,101,97,116,32,116,104,101,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,112,101,97,116,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,101,112,101,97,116,40,39,42,39,44,32,51,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,42,42,42,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,101,112,101,97,116,40,39,97,98,99,39,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,97,98,99,97,98,99,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,101,112,101,97,116,40,39,97,98,99,39,44,32,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,112,101,97,116,40,115,116,114,105,110,103,44,32,110,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,103,117,97,114,100,32,63,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,115,116,114,105,110,103,44,32,110,44,32,103,117,97,114,100,41,32,58,32,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,110,32,61,32,49,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,110,32,61,32,116,111,73,110,116,101,103,101,114,40,110,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,82,101,112,101,97,116,40,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,44,32,110,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,112,108,97,99,101,115,32,109,97,116,99,104,101,115,32,102,111,114,32,96,112,97,116,116,101,114,110,96,32,105,110,32,96,115,116,114,105,110,103,96,32,119,105,116,104,32,96,114,101,112,108,97,99,101,109,101,110,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,98,97,115,101,100,32,111,110,92,110,32,32,32,32,32,42,32,91,96,83,116,114,105,110,103,35,114,101,112,108,97,99,101,96,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,83,116,114,105,110,103,47,114,101,112,108,97,99,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,109,111,100,105,102,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,82,101,103,69,120,112,124,115,116,114,105,110,103,125,32,112,97,116,116,101,114,110,32,84,104,101,32,112,97,116,116,101,114,110,32,116,111,32,114,101,112,108,97,99,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,124,115,116,114,105,110,103,125,32,114,101,112,108,97,99,101,109,101,110,116,32,84,104,101,32,109,97,116,99,104,32,114,101,112,108,97,99,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,109,111,100,105,102,105,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,101,112,108,97,99,101,40,39,72,105,32,70,114,101,100,39,44,32,39,70,114,101,100,39,44,32,39,66,97,114,110,101,121,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,72,105,32,66,97,114,110,101,121,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,112,108,97,99,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,97,114,103,115,91,48,93,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,103,115,46,108,101,110,103,116,104,32,60,32,51,32,63,32,115,116,114,105,110,103,32,58,32,115,116,114,105,110,103,46,114,101,112,108,97,99,101,40,97,114,103,115,91,49,93,44,32,97,114,103,115,91,50,93,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,115,116,114,105,110,103,96,32,116,111,92,110,32,32,32,32,32,42,32,91,115,110,97,107,101,32,99,97,115,101,93,40,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,83,110,97,107,101,95,99,97,115,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,110,97,107,101,32,99,97,115,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,110,97,107,101,67,97,115,101,40,39,70,111,111,32,66,97,114,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,111,111,95,98,97,114,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,110,97,107,101,67,97,115,101,40,39,102,111,111,66,97,114,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,111,111,95,98,97,114,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,110,97,107,101,67,97,115,101,40,39,45,45,70,79,79,45,66,65,82,45,45,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,111,111,95,98,97,114,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,115,110,97,107,101,67,97,115,101,32,61,32,99,114,101,97,116,101,67,111,109,112,111,117,110,100,101,114,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,119,111,114,100,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,43,32,40,105,110,100,101,120,32,63,32,39,95,39,32,58,32,39,39,41,32,43,32,119,111,114,100,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,83,112,108,105,116,115,32,96,115,116,114,105,110,103,96,32,98,121,32,96,115,101,112,97,114,97,116,111,114,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,98,97,115,101,100,32,111,110,92,110,32,32,32,32,32,42,32,91,96,83,116,114,105,110,103,35,115,112,108,105,116,96,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,83,116,114,105,110,103,47,115,112,108,105,116,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,115,112,108,105,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,82,101,103,69,120,112,124,115,116,114,105,110,103,125,32,115,101,112,97,114,97,116,111,114,32,84,104,101,32,115,101,112,97,114,97,116,111,114,32,112,97,116,116,101,114,110,32,116,111,32,115,112,108,105,116,32,98,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,108,105,109,105,116,93,32,84,104,101,32,108,101,110,103,116,104,32,116,111,32,116,114,117,110,99,97,116,101,32,114,101,115,117,108,116,115,32,116,111,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,116,114,105,110,103,32,115,101,103,109,101,110,116,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,112,108,105,116,40,39,97,45,98,45,99,39,44,32,39,45,39,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,97,39,44,32,39,98,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,112,108,105,116,40,115,116,114,105,110,103,44,32,115,101,112,97,114,97,116,111,114,44,32,108,105,109,105,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,108,105,109,105,116,32,38,38,32,116,121,112,101,111,102,32,108,105,109,105,116,32,33,61,32,39,110,117,109,98,101,114,39,32,38,38,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,115,116,114,105,110,103,44,32,115,101,112,97,114,97,116,111,114,44,32,108,105,109,105,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,115,101,112,97,114,97,116,111,114,32,61,32,108,105,109,105,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,108,105,109,105,116,32,61,32,108,105,109,105,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,77,65,88,95,65,82,82,65,89,95,76,69,78,71,84,72,32,58,32,108,105,109,105,116,32,62,62,62,32,48,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,105,109,105,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,116,114,105,110,103,32,38,38,32,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,115,101,112,97,114,97,116,111,114,32,61,61,32,39,115,116,114,105,110,103,39,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,115,101,112,97,114,97,116,111,114,32,33,61,32,110,117,108,108,32,38,38,32,33,105,115,82,101,103,69,120,112,40,115,101,112,97,114,97,116,111,114,41,41,92,110,32,32,32,32,32,32,32,32,32,32,41,41,32,123,92,110,32,32,32,32,32,32,32,32,115,101,112,97,114,97,116,111,114,32,61,32,98,97,115,101,84,111,83,116,114,105,110,103,40,115,101,112,97,114,97,116,111,114,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,115,101,112,97,114,97,116,111,114,32,38,38,32,104,97,115,85,110,105,99,111,100,101,40,115,116,114,105,110,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,115,116,83,108,105,99,101,40,115,116,114,105,110,103,84,111,65,114,114,97,121,40,115,116,114,105,110,103,41,44,32,48,44,32,108,105,109,105,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,115,112,108,105,116,40,115,101,112,97,114,97,116,111,114,44,32,108,105,109,105,116,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,115,116,114,105,110,103,96,32,116,111,92,110,32,32,32,32,32,42,32,91,115,116,97,114,116,32,99,97,115,101,93,40,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,76,101,116,116,101,114,95,99,97,115,101,35,83,116,121,108,105,115,116,105,99,95,111,114,95,115,112,101,99,105,97,108,105,115,101,100,95,117,115,97,103,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,49,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,116,97,114,116,32,99,97,115,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,116,97,114,116,67,97,115,101,40,39,45,45,102,111,111,45,98,97,114,45,45,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,70,111,111,32,66,97,114,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,116,97,114,116,67,97,115,101,40,39,102,111,111,66,97,114,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,70,111,111,32,66,97,114,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,116,97,114,116,67,97,115,101,40,39,95,95,70,79,79,95,66,65,82,95,95,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,70,79,79,32,66,65,82,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,67,97,115,101,32,61,32,99,114,101,97,116,101,67,111,109,112,111,117,110,100,101,114,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,119,111,114,100,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,43,32,40,105,110,100,101,120,32,63,32,39,32,39,32,58,32,39,39,41,32,43,32,117,112,112,101,114,70,105,114,115,116,40,119,111,114,100,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,105,102,32,96,115,116,114,105,110,103,96,32,115,116,97,114,116,115,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,116,97,114,103,101,116,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,116,97,114,103,101,116,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,115,101,97,114,99,104,32,102,111,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,112,111,115,105,116,105,111,110,61,48,93,32,84,104,101,32,112,111,115,105,116,105,111,110,32,116,111,32,115,101,97,114,99,104,32,102,114,111,109,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,32,105,102,32,96,115,116,114,105,110,103,96,32,115,116,97,114,116,115,32,119,105,116,104,32,96,116,97,114,103,101,116,96,44,92,110,32,32,32,32,32,42,32,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,116,97,114,116,115,87,105,116,104,40,39,97,98,99,39,44,32,39,97,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,116,97,114,116,115,87,105,116,104,40,39,97,98,99,39,44,32,39,98,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,116,97,114,116,115,87,105,116,104,40,39,97,98,99,39,44,32,39,98,39,44,32,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,116,97,114,116,115,87,105,116,104,40,115,116,114,105,110,103,44,32,116,97,114,103,101,116,44,32,112,111,115,105,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,112,111,115,105,116,105,111,110,32,61,32,112,111,115,105,116,105,111,110,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,63,32,48,92,110,32,32,32,32,32,32,32,32,58,32,98,97,115,101,67,108,97,109,112,40,116,111,73,110,116,101,103,101,114,40,112,111,115,105,116,105,111,110,41,44,32,48,44,32,115,116,114,105,110,103,46,108,101,110,103,116,104,41,59,92,110,92,110,32,32,32,32,32,32,116,97,114,103,101,116,32,61,32,98,97,115,101,84,111,83,116,114,105,110,103,40,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,115,108,105,99,101,40,112,111,115,105,116,105,111,110,44,32,112,111,115,105,116,105,111,110,32,43,32,116,97,114,103,101,116,46,108,101,110,103,116,104,41,32,61,61,32,116,97,114,103,101,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,99,111,109,112,105,108,101,100,32,116,101,109,112,108,97,116,101,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,99,97,110,32,105,110,116,101,114,112,111,108,97,116,101,32,100,97,116,97,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,32,42,32,105,110,32,92,34,105,110,116,101,114,112,111,108,97,116,101,92,34,32,100,101,108,105,109,105,116,101,114,115,44,32,72,84,77,76,45,101,115,99,97,112,101,32,105,110,116,101,114,112,111,108,97,116,101,100,32,100,97,116,97,32,112,114,111,112,101,114,116,105,101,115,32,105,110,92,110,32,32,32,32,32,42,32,92,34,101,115,99,97,112,101,92,34,32,100,101,108,105,109,105,116,101,114,115,44,32,97,110,100,32,101,120,101,99,117,116,101,32,74,97,118,97,83,99,114,105,112,116,32,105,110,32,92,34,101,118,97,108,117,97,116,101,92,34,32,100,101,108,105,109,105,116,101,114,115,46,32,68,97,116,97,92,110,32,32,32,32,32,42,32,112,114,111,112,101,114,116,105,101,115,32,109,97,121,32,98,101,32,97,99,99,101,115,115,101,100,32,97,115,32,102,114,101,101,32,118,97,114,105,97,98,108,101,115,32,105,110,32,116,104,101,32,116,101,109,112,108,97,116,101,46,32,73,102,32,97,32,115,101,116,116,105,110,103,92,110,32,32,32,32,32,42,32,111,98,106,101,99,116,32,105,115,32,103,105,118,101,110,44,32,105,116,32,116,97,107,101,115,32,112,114,101,99,101,100,101,110,99,101,32,111,118,101,114,32,96,95,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,96,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,73,110,32,116,104,101,32,100,101,118,101,108,111,112,109,101,110,116,32,98,117,105,108,100,32,96,95,46,116,101,109,112,108,97,116,101,96,32,117,116,105,108,105,122,101,115,92,110,32,32,32,32,32,42,32,91,115,111,117,114,99,101,85,82,76,115,93,40,104,116,116,112,58,47,47,119,119,119,46,104,116,109,108,53,114,111,99,107,115,46,99,111,109,47,101,110,47,116,117,116,111,114,105,97,108,115,47,100,101,118,101,108,111,112,101,114,116,111,111,108,115,47,115,111,117,114,99,101,109,97,112,115,47,35,116,111,99,45,115,111,117,114,99,101,117,114,108,41,92,110,32,32,32,32,32,42,32,102,111,114,32,101,97,115,105,101,114,32,100,101,98,117,103,103,105,110,103,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,32,111,110,32,112,114,101,99,111,109,112,105,108,105,110,103,32,116,101,109,112,108,97,116,101,115,32,115,101,101,92,110,32,32,32,32,32,42,32,91,108,111,100,97,115,104,39,115,32,99,117,115,116,111,109,32,98,117,105,108,100,115,32,100,111,99,117,109,101,110,116,97,116,105,111,110,93,40,104,116,116,112,115,58,47,47,108,111,100,97,115,104,46,99,111,109,47,99,117,115,116,111,109,45,98,117,105,108,100,115,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,32,111,110,32,67,104,114,111,109,101,32,101,120,116,101,110,115,105,111,110,32,115,97,110,100,98,111,120,101,115,32,115,101,101,92,110,32,32,32,32,32,42,32,91,67,104,114,111,109,101,39,115,32,101,120,116,101,110,115,105,111,110,115,32,100,111,99,117,109,101,110,116,97,116,105,111,110,93,40,104,116,116,112,115,58,47,47,100,101,118,101,108,111,112,101,114,46,99,104,114,111,109,101,46,99,111,109,47,101,120,116,101,110,115,105,111,110,115,47,115,97,110,100,98,111,120,105,110,103,69,118,97,108,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,116,101,109,112,108,97,116,101,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,112,116,105,111,110,115,61,123,125,93,32,84,104,101,32,111,112,116,105,111,110,115,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,82,101,103,69,120,112,125,32,91,111,112,116,105,111,110,115,46,101,115,99,97,112,101,61,95,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,46,101,115,99,97,112,101,93,92,110,32,32,32,32,32,42,32,32,84,104,101,32,72,84,77,76,32,92,34,101,115,99,97,112,101,92,34,32,100,101,108,105,109,105,116,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,82,101,103,69,120,112,125,32,91,111,112,116,105,111,110,115,46,101,118,97,108,117,97,116,101,61,95,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,46,101,118,97,108,117,97,116,101,93,92,110,32,32,32,32,32,42,32,32,84,104,101,32,92,34,101,118,97,108,117,97,116,101,92,34,32,100,101,108,105,109,105,116,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,112,116,105,111,110,115,46,105,109,112,111,114,116,115,61,95,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,46,105,109,112,111,114,116,115,93,92,110,32,32,32,32,32,42,32,32,65,110,32,111,98,106,101,99,116,32,116,111,32,105,109,112,111,114,116,32,105,110,116,111,32,116,104,101,32,116,101,109,112,108,97,116,101,32,97,115,32,102,114,101,101,32,118,97,114,105,97,98,108,101,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,82,101,103,69,120,112,125,32,91,111,112,116,105,111,110,115,46,105,110,116,101,114,112,111,108,97,116,101,61,95,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,46,105,110,116,101,114,112,111,108,97,116,101,93,92,110,32,32,32,32,32,42,32,32,84,104,101,32,92,34,105,110,116,101,114,112,111,108,97,116,101,92,34,32,100,101,108,105,109,105,116,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,111,112,116,105,111,110,115,46,115,111,117,114,99,101,85,82,76,61,39,108,111,100,97,115,104,46,116,101,109,112,108,97,116,101,83,111,117,114,99,101,115,91,110,93,39,93,92,110,32,32,32,32,32,42,32,32,84,104,101,32,115,111,117,114,99,101,85,82,76,32,111,102,32,116,104,101,32,99,111,109,112,105,108,101,100,32,116,101,109,112,108,97,116,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,111,112,116,105,111,110,115,46,118,97,114,105,97,98,108,101,61,39,111,98,106,39,93,92,110,32,32,32,32,32,42,32,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,118,97,114,105,97,98,108,101,32,110,97,109,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,109,112,105,108,101,100,32,116,101,109,112,108,97,116,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,85,115,101,32,116,104,101,32,92,34,105,110,116,101,114,112,111,108,97,116,101,92,34,32,100,101,108,105,109,105,116,101,114,32,116,111,32,99,114,101,97,116,101,32,97,32,99,111,109,112,105,108,101,100,32,116,101,109,112,108,97,116,101,46,92,110,32,32,32,32,32,42,32,118,97,114,32,99,111,109,112,105,108,101,100,32,61,32,95,46,116,101,109,112,108,97,116,101,40,39,104,101,108,108,111,32,60,37,61,32,117,115,101,114,32,37,62,33,39,41,59,92,110,32,32,32,32,32,42,32,99,111,109,112,105,108,101,100,40,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,101,108,108,111,32,102,114,101,100,33,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,85,115,101,32,116,104,101,32,72,84,77,76,32,92,34,101,115,99,97,112,101,92,34,32,100,101,108,105,109,105,116,101,114,32,116,111,32,101,115,99,97,112,101,32,100,97,116,97,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,42,32,118,97,114,32,99,111,109,112,105,108,101,100,32,61,32,95,46,116,101,109,112,108,97,116,101,40,39,60,98,62,60,37,45,32,118,97,108,117,101,32,37,62,60,47,98,62,39,41,59,92,110,32,32,32,32,32,42,32,99,111,109,112,105,108,101,100,40,123,32,39,118,97,108,117,101,39,58,32,39,60,115,99,114,105,112,116,62,39,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,60,98,62,38,108,116,59,115,99,114,105,112,116,38,103,116,59,60,47,98,62,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,85,115,101,32,116,104,101,32,92,34,101,118,97,108,117,97,116,101,92,34,32,100,101,108,105,109,105,116,101,114,32,116,111,32,101,120,101,99,117,116,101,32,74,97,118,97,83,99,114,105,112,116,32,97,110,100,32,103,101,110,101,114,97,116,101,32,72,84,77,76,46,92,110,32,32,32,32,32,42,32,118,97,114,32,99,111,109,112,105,108,101,100,32,61,32,95,46,116,101,109,112,108,97,116,101,40,39,60,37,32,95,46,102,111,114,69,97,99,104,40,117,115,101,114,115,44,32,102,117,110,99,116,105,111,110,40,117,115,101,114,41,32,123,32,37,62,60,108,105,62,60,37,45,32,117,115,101,114,32,37,62,60,47,108,105,62,60,37,32,125,41,59,32,37,62,39,41,59,92,110,32,32,32,32,32,42,32,99,111,109,112,105,108,101,100,40,123,32,39,117,115,101,114,115,39,58,32,91,39,102,114,101,100,39,44,32,39,98,97,114,110,101,121,39,93,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,60,108,105,62,102,114,101,100,60,47,108,105,62,60,108,105,62,98,97,114,110,101,121,60,47,108,105,62,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,85,115,101,32,116,104,101,32,105,110,116,101,114,110,97,108,32,96,112,114,105,110,116,96,32,102,117,110,99,116,105,111,110,32,105,110,32,92,34,101,118,97,108,117,97,116,101,92,34,32,100,101,108,105,109,105,116,101,114,115,46,92,110,32,32,32,32,32,42,32,118,97,114,32,99,111,109,112,105,108,101,100,32,61,32,95,46,116,101,109,112,108,97,116,101,40,39,60,37,32,112,114,105,110,116,40,92,34,104,101,108,108,111,32,92,34,32,43,32,117,115,101,114,41,59,32,37,62,33,39,41,59,92,110,32,32,32,32,32,42,32,99,111,109,112,105,108,101,100,40,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,101,108,108,111,32,98,97,114,110,101,121,33,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,85,115,101,32,116,104,101,32,69,83,32,116,101,109,112,108,97,116,101,32,108,105,116,101,114,97,108,32,100,101,108,105,109,105,116,101,114,32,97,115,32,97,110,32,92,34,105,110,116,101,114,112,111,108,97,116,101,92,34,32,100,101,108,105,109,105,116,101,114,46,92,110,32,32,32,32,32,42,32,47,47,32,68,105,115,97,98,108,101,32,115,117,112,112,111,114,116,32,98,121,32,114,101,112,108,97,99,105,110,103,32,116,104,101,32,92,34,105,110,116,101,114,112,111,108,97,116,101,92,34,32,100,101,108,105,109,105,116,101,114,46,92,110,32,32,32,32,32,42,32,118,97,114,32,99,111,109,112,105,108,101,100,32,61,32,95,46,116,101,109,112,108,97,116,101,40,39,104,101,108,108,111,32,36,123,32,117,115,101,114,32,125,33,39,41,59,92,110,32,32,32,32,32,42,32,99,111,109,112,105,108,101,100,40,123,32,39,117,115,101,114,39,58,32,39,112,101,98,98,108,101,115,39,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,101,108,108,111,32,112,101,98,98,108,101,115,33,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,85,115,101,32,98,97,99,107,115,108,97,115,104,101,115,32,116,111,32,116,114,101,97,116,32,100,101,108,105,109,105,116,101,114,115,32,97,115,32,112,108,97,105,110,32,116,101,120,116,46,92,110,32,32,32,32,32,42,32,118,97,114,32,99,111,109,112,105,108,101,100,32,61,32,95,46,116,101,109,112,108,97,116,101,40,39,60,37,61,32,92,34,92,92,92,92,60,37,45,32,118,97,108,117,101,32,37,92,92,92,92,62,92,34,32,37,62,39,41,59,92,110,32,32,32,32,32,42,32,99,111,109,112,105,108,101,100,40,123,32,39,118,97,108,117,101,39,58,32,39,105,103,110,111,114,101,100,39,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,60,37,45,32,118,97,108,117,101,32,37,62,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,85,115,101,32,116,104,101,32,96,105,109,112,111,114,116,115,96,32,111,112,116,105,111,110,32,116,111,32,105,109,112,111,114,116,32,96,106,81,117,101,114,121,96,32,97,115,32,96,106,113,96,46,92,110,32,32,32,32,32,42,32,118,97,114,32,116,101,120,116,32,61,32,39,60,37,32,106,113,46,101,97,99,104,40,117,115,101,114,115,44,32,102,117,110,99,116,105,111,110,40,117,115,101,114,41,32,123,32,37,62,60,108,105,62,60,37,45,32,117,115,101,114,32,37,62,60,47,108,105,62,60,37,32,125,41,59,32,37,62,39,59,92,110,32,32,32,32,32,42,32,118,97,114,32,99,111,109,112,105,108,101,100,32,61,32,95,46,116,101,109,112,108,97,116,101,40,116,101,120,116,44,32,123,32,39,105,109,112,111,114,116,115,39,58,32,123,32,39,106,113,39,58,32,106,81,117,101,114,121,32,125,32,125,41,59,92,110,32,32,32,32,32,42,32,99,111,109,112,105,108,101,100,40,123,32,39,117,115,101,114,115,39,58,32,91,39,102,114,101,100,39,44,32,39,98,97,114,110,101,121,39,93,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,60,108,105,62,102,114,101,100,60,47,108,105,62,60,108,105,62,98,97,114,110,101,121,60,47,108,105,62,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,85,115,101,32,116,104,101,32,96,115,111,117,114,99,101,85,82,76,96,32,111,112,116,105,111,110,32,116,111,32,115,112,101,99,105,102,121,32,97,32,99,117,115,116,111,109,32,115,111,117,114,99,101,85,82,76,32,102,111,114,32,116,104,101,32,116,101,109,112,108,97,116,101,46,92,110,32,32,32,32,32,42,32,118,97,114,32,99,111,109,112,105,108,101,100,32,61,32,95,46,116,101,109,112,108,97,116,101,40,39,104,101,108,108,111,32,60,37,61,32,117,115,101,114,32,37,62,33,39,44,32,123,32,39,115,111,117,114,99,101,85,82,76,39,58,32,39,47,98,97,115,105,99,47,103,114,101,101,116,105,110,103,46,106,115,116,39,32,125,41,59,92,110,32,32,32,32,32,42,32,99,111,109,112,105,108,101,100,40,100,97,116,97,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,70,105,110,100,32,116,104,101,32,115,111,117,114,99,101,32,111,102,32,92,34,103,114,101,101,116,105,110,103,46,106,115,116,92,34,32,117,110,100,101,114,32,116,104,101,32,83,111,117,114,99,101,115,32,116,97,98,32,111,114,32,82,101,115,111,117,114,99,101,115,32,112,97,110,101,108,32,111,102,32,116,104,101,32,119,101,98,32,105,110,115,112,101,99,116,111,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,85,115,101,32,116,104,101,32,96,118,97,114,105,97,98,108,101,96,32,111,112,116,105,111,110,32,116,111,32,101,110,115,117,114,101,32,97,32,119,105,116,104,45,115,116,97,116,101,109,101,110,116,32,105,115,110,39,116,32,117,115,101,100,32,105,110,32,116,104,101,32,99,111,109,112,105,108,101,100,32,116,101,109,112,108,97,116,101,46,92,110,32,32,32,32,32,42,32,118,97,114,32,99,111,109,112,105,108,101,100,32,61,32,95,46,116,101,109,112,108,97,116,101,40,39,104,105,32,60,37,61,32,100,97,116,97,46,117,115,101,114,32,37,62,33,39,44,32,123,32,39,118,97,114,105,97,98,108,101,39,58,32,39,100,97,116,97,39,32,125,41,59,92,110,32,32,32,32,32,42,32,99,111,109,112,105,108,101,100,46,115,111,117,114,99,101,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,117,110,99,116,105,111,110,40,100,97,116,97,41,32,123,92,110,32,32,32,32,32,42,32,47,47,32,32,32,118,97,114,32,95,95,116,44,32,95,95,112,32,61,32,39,39,59,92,110,32,32,32,32,32,42,32,47,47,32,32,32,95,95,112,32,43,61,32,39,104,105,32,39,32,43,32,40,40,95,95,116,32,61,32,40,32,100,97,116,97,46,117,115,101,114,32,41,41,32,61,61,32,110,117,108,108,32,63,32,39,39,32,58,32,95,95,116,41,32,43,32,39,33,39,59,92,110,32,32,32,32,32,42,32,47,47,32,32,32,114,101,116,117,114,110,32,95,95,112,59,92,110,32,32,32,32,32,42,32,47,47,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,85,115,101,32,99,117,115,116,111,109,32,116,101,109,112,108,97,116,101,32,100,101,108,105,109,105,116,101,114,115,46,92,110,32,32,32,32,32,42,32,95,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,46,105,110,116,101,114,112,111,108,97,116,101,32,61,32,47,123,123,40,91,92,92,115,92,92,83,93,43,63,41,125,125,47,103,59,92,110,32,32,32,32,32,42,32,118,97,114,32,99,111,109,112,105,108,101,100,32,61,32,95,46,116,101,109,112,108,97,116,101,40,39,104,101,108,108,111,32,123,123,32,117,115,101,114,32,125,125,33,39,41,59,92,110,32,32,32,32,32,42,32,99,111,109,112,105,108,101,100,40,123,32,39,117,115,101,114,39,58,32,39,109,117,115,116,97,99,104,101,39,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,101,108,108,111,32,109,117,115,116,97,99,104,101,33,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,85,115,101,32,116,104,101,32,96,115,111,117,114,99,101,96,32,112,114,111,112,101,114,116,121,32,116,111,32,105,110,108,105,110,101,32,99,111,109,112,105,108,101,100,32,116,101,109,112,108,97,116,101,115,32,102,111,114,32,109,101,97,110,105,110,103,102,117,108,92,110,32,32,32,32,32,42,32,47,47,32,108,105,110,101,32,110,117,109,98,101,114,115,32,105,110,32,101,114,114,111,114,32,109,101,115,115,97,103,101,115,32,97,110,100,32,115,116,97,99,107,32,116,114,97,99,101,115,46,92,110,32,32,32,32,32,42,32,102,115,46,119,114,105,116,101,70,105,108,101,83,121,110,99,40,112,97,116,104,46,106,111,105,110,40,112,114,111,99,101,115,115,46,99,119,100,40,41,44,32,39,106,115,116,46,106,115,39,41,44,32,39,92,92,92,110,32,32,32,32,32,42,32,32,32,118,97,114,32,74,83,84,32,61,32,123,92,92,92,110,32,32,32,32,32,42,32,32,32,32,32,92,34,109,97,105,110,92,34,58,32,39,32,43,32,95,46,116,101,109,112,108,97,116,101,40,109,97,105,110,84,101,120,116,41,46,115,111,117,114,99,101,32,43,32,39,92,92,92,110,32,32,32,32,32,42,32,32,32,125,59,92,92,92,110,32,32,32,32,32,42,32,39,41,59,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,109,112,108,97,116,101,40,115,116,114,105,110,103,44,32,111,112,116,105,111,110,115,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,47,47,32,66,97,115,101,100,32,111,110,32,74,111,104,110,32,82,101,115,105,103,39,115,32,96,116,109,112,108,96,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,92,110,32,32,32,32,32,32,47,47,32,40,104,116,116,112,58,47,47,101,106,111,104,110,46,111,114,103,47,98,108,111,103,47,106,97,118,97,115,99,114,105,112,116,45,109,105,99,114,111,45,116,101,109,112,108,97,116,105,110,103,47,41,92,110,32,32,32,32,32,32,47,47,32,97,110,100,32,76,97,117,114,97,32,68,111,107,116,111,114,111,118,97,39,115,32,100,111,84,46,106,115,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,111,108,97,100,111,47,100,111,84,41,46,92,110,32,32,32,32,32,32,118,97,114,32,115,101,116,116,105,110,103,115,32,61,32,108,111,100,97,115,104,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,103,117,97,114,100,32,38,38,32,105,115,73,116,101,114,97,116,101,101,67,97,108,108,40,115,116,114,105,110,103,44,32,111,112,116,105,111,110,115,44,32,103,117,97,114,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,97,115,115,105,103,110,73,110,87,105,116,104,40,123,125,44,32,111,112,116,105,111,110,115,44,32,115,101,116,116,105,110,103,115,44,32,99,117,115,116,111,109,68,101,102,97,117,108,116,115,65,115,115,105,103,110,73,110,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,109,112,111,114,116,115,32,61,32,97,115,115,105,103,110,73,110,87,105,116,104,40,123,125,44,32,111,112,116,105,111,110,115,46,105,109,112,111,114,116,115,44,32,115,101,116,116,105,110,103,115,46,105,109,112,111,114,116,115,44,32,99,117,115,116,111,109,68,101,102,97,117,108,116,115,65,115,115,105,103,110,73,110,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,109,112,111,114,116,115,75,101,121,115,32,61,32,107,101,121,115,40,105,109,112,111,114,116,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,109,112,111,114,116,115,86,97,108,117,101,115,32,61,32,98,97,115,101,86,97,108,117,101,115,40,105,109,112,111,114,116,115,44,32,105,109,112,111,114,116,115,75,101,121,115,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,105,115,69,115,99,97,112,105,110,103,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,69,118,97,108,117,97,116,105,110,103,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,32,61,32,111,112,116,105,111,110,115,46,105,110,116,101,114,112,111,108,97,116,101,32,124,124,32,114,101,78,111,77,97,116,99,104,44,92,110,32,32,32,32,32,32,32,32,32,32,115,111,117,114,99,101,32,61,32,92,34,95,95,112,32,43,61,32,39,92,34,59,92,110,92,110,32,32,32,32,32,32,47,47,32,67,111,109,112,105,108,101,32,116,104,101,32,114,101,103,101,120,112,32,116,111,32,109,97,116,99,104,32,101,97,99,104,32,100,101,108,105,109,105,116,101,114,46,92,110,32,32,32,32,32,32,118,97,114,32,114,101,68,101,108,105,109,105,116,101,114,115,32,61,32,82,101,103,69,120,112,40,92,110,32,32,32,32,32,32,32,32,40,111,112,116,105,111,110,115,46,101,115,99,97,112,101,32,124,124,32,114,101,78,111,77,97,116,99,104,41,46,115,111,117,114,99,101,32,43,32,39,124,39,32,43,92,110,32,32,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,46,115,111,117,114,99,101,32,43,32,39,124,39,32,43,92,110,32,32,32,32,32,32,32,32,40,105,110,116,101,114,112,111,108,97,116,101,32,61,61,61,32,114,101,73,110,116,101,114,112,111,108,97,116,101,32,63,32,114,101,69,115,84,101,109,112,108,97,116,101,32,58,32,114,101,78,111,77,97,116,99,104,41,46,115,111,117,114,99,101,32,43,32,39,124,39,32,43,92,110,32,32,32,32,32,32,32,32,40,111,112,116,105,111,110,115,46,101,118,97,108,117,97,116,101,32,124,124,32,114,101,78,111,77,97,116,99,104,41,46,115,111,117,114,99,101,32,43,32,39,124,36,39,92,110,32,32,32,32,32,32,44,32,39,103,39,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,85,115,101,32,97,32,115,111,117,114,99,101,85,82,76,32,102,111,114,32,101,97,115,105,101,114,32,100,101,98,117,103,103,105,110,103,46,92,110,32,32,32,32,32,32,47,47,32,84,104,101,32,115,111,117,114,99,101,85,82,76,32,103,101,116,115,32,105,110,106,101,99,116,101,100,32,105,110,116,111,32,116,104,101,32,115,111,117,114,99,101,32,116,104,97,116,39,115,32,101,118,97,108,45,101,100,44,32,115,111,32,98,101,32,99,97,114,101,102,117,108,92,110,32,32,32,32,32,32,47,47,32,116,111,32,110,111,114,109,97,108,105,122,101,32,97,108,108,32,107,105,110,100,115,32,111,102,32,119,104,105,116,101,115,112,97,99,101,44,32,115,111,32,101,46,103,46,32,110,101,119,108,105,110,101,115,32,40,97,110,100,32,117,110,105,99,111,100,101,32,118,101,114,115,105,111,110,115,32,111,102,32,105,116,41,32,99,97,110,39,116,32,115,110,101,97,107,32,105,110,92,110,32,32,32,32,32,32,47,47,32,97,110,100,32,101,115,99,97,112,101,32,116,104,101,32,99,111,109,109,101,110,116,44,32,116,104,117,115,32,105,110,106,101,99,116,105,110,103,32,99,111,100,101,32,116,104,97,116,32,103,101,116,115,32,101,118,97,108,101,100,46,92,110,32,32,32,32,32,32,118,97,114,32,115,111,117,114,99,101,85,82,76,32,61,32,39,47,47,35,32,115,111,117,114,99,101,85,82,76,61,39,32,43,92,110,32,32,32,32,32,32,32,32,40,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,111,112,116,105,111,110,115,44,32,39,115,111,117,114,99,101,85,82,76,39,41,92,110,32,32,32,32,32,32,32,32,32,32,63,32,40,111,112,116,105,111,110,115,46,115,111,117,114,99,101,85,82,76,32,43,32,39,39,41,46,114,101,112,108,97,99,101,40,47,92,92,115,47,103,44,32,39,32,39,41,92,110,32,32,32,32,32,32,32,32,32,32,58,32,40,39,108,111,100,97,115,104,46,116,101,109,112,108,97,116,101,83,111,117,114,99,101,115,91,39,32,43,32,40,43,43,116,101,109,112,108,97,116,101,67,111,117,110,116,101,114,41,32,43,32,39,93,39,41,92,110,32,32,32,32,32,32,32,32,41,32,43,32,39,92,92,110,39,59,92,110,92,110,32,32,32,32,32,32,115,116,114,105,110,103,46,114,101,112,108,97,99,101,40,114,101,68,101,108,105,109,105,116,101,114,115,44,32,102,117,110,99,116,105,111,110,40,109,97,116,99,104,44,32,101,115,99,97,112,101,86,97,108,117,101,44,32,105,110,116,101,114,112,111,108,97,116,101,86,97,108,117,101,44,32,101,115,84,101,109,112,108,97,116,101,86,97,108,117,101,44,32,101,118,97,108,117,97,116,101,86,97,108,117,101,44,32,111,102,102,115,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,86,97,108,117,101,32,124,124,32,40,105,110,116,101,114,112,111,108,97,116,101,86,97,108,117,101,32,61,32,101,115,84,101,109,112,108,97,116,101,86,97,108,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,69,115,99,97,112,101,32,99,104,97,114,97,99,116,101,114,115,32,116,104,97,116,32,99,97,110,39,116,32,98,101,32,105,110,99,108,117,100,101,100,32,105,110,32,115,116,114,105,110,103,32,108,105,116,101,114,97,108,115,46,92,110,32,32,32,32,32,32,32,32,115,111,117,114,99,101,32,43,61,32,115,116,114,105,110,103,46,115,108,105,99,101,40,105,110,100,101,120,44,32,111,102,102,115,101,116,41,46,114,101,112,108,97,99,101,40,114,101,85,110,101,115,99,97,112,101,100,83,116,114,105,110,103,44,32,101,115,99,97,112,101,83,116,114,105,110,103,67,104,97,114,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,112,108,97,99,101,32,100,101,108,105,109,105,116,101,114,115,32,119,105,116,104,32,115,110,105,112,112,101,116,115,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,115,99,97,112,101,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,115,69,115,99,97,112,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,115,111,117,114,99,101,32,43,61,32,92,34,39,32,43,92,92,110,95,95,101,40,92,34,32,43,32,101,115,99,97,112,101,86,97,108,117,101,32,43,32,92,34,41,32,43,92,92,110,39,92,34,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,118,97,108,117,97,116,101,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,115,69,118,97,108,117,97,116,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,115,111,117,114,99,101,32,43,61,32,92,34,39,59,92,92,110,92,34,32,43,32,101,118,97,108,117,97,116,101,86,97,108,117,101,32,43,32,92,34,59,92,92,110,95,95,112,32,43,61,32,39,92,34,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,116,101,114,112,111,108,97,116,101,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,111,117,114,99,101,32,43,61,32,92,34,39,32,43,92,92,110,40,40,95,95,116,32,61,32,40,92,34,32,43,32,105,110,116,101,114,112,111,108,97,116,101,86,97,108,117,101,32,43,32,92,34,41,41,32,61,61,32,110,117,108,108,32,63,32,39,39,32,58,32,95,95,116,41,32,43,92,92,110,39,92,34,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,32,61,32,111,102,102,115,101,116,32,43,32,109,97,116,99,104,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,74,83,32,101,110,103,105,110,101,32,101,109,98,101,100,100,101,100,32,105,110,32,65,100,111,98,101,32,112,114,111,100,117,99,116,115,32,110,101,101,100,115,32,96,109,97,116,99,104,96,32,114,101,116,117,114,110,101,100,32,105,110,92,110,32,32,32,32,32,32,32,32,47,47,32,111,114,100,101,114,32,116,111,32,112,114,111,100,117,99,101,32,116,104,101,32,99,111,114,114,101,99,116,32,96,111,102,102,115,101,116,96,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,116,99,104,59,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,115,111,117,114,99,101,32,43,61,32,92,34,39,59,92,92,110,92,34,59,92,110,92,110,32,32,32,32,32,32,47,47,32,73,102,32,96,118,97,114,105,97,98,108,101,96,32,105,115,32,110,111,116,32,115,112,101,99,105,102,105,101,100,32,119,114,97,112,32,97,32,119,105,116,104,45,115,116,97,116,101,109,101,110,116,32,97,114,111,117,110,100,32,116,104,101,32,103,101,110,101,114,97,116,101,100,92,110,32,32,32,32,32,32,47,47,32,99,111,100,101,32,116,111,32,97,100,100,32,116,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,116,111,32,116,104,101,32,116,111,112,32,111,102,32,116,104,101,32,115,99,111,112,101,32,99,104,97,105,110,46,92,110,32,32,32,32,32,32,118,97,114,32,118,97,114,105,97,98,108,101,32,61,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,111,112,116,105,111,110,115,44,32,39,118,97,114,105,97,98,108,101,39,41,32,38,38,32,111,112,116,105,111,110,115,46,118,97,114,105,97,98,108,101,59,92,110,32,32,32,32,32,32,105,102,32,40,33,118,97,114,105,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,115,111,117,114,99,101,32,61,32,39,119,105,116,104,32,40,111,98,106,41,32,123,92,92,110,39,32,43,32,115,111,117,114,99,101,32,43,32,39,92,92,110,125,92,92,110,39,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,84,104,114,111,119,32,97,110,32,101,114,114,111,114,32,105,102,32,97,32,102,111,114,98,105,100,100,101,110,32,99,104,97,114,97,99,116,101,114,32,119,97,115,32,102,111,117,110,100,32,105,110,32,96,118,97,114,105,97,98,108,101,96,44,32,116,111,32,112,114,101,118,101,110,116,92,110,32,32,32,32,32,32,47,47,32,112,111,116,101,110,116,105,97,108,32,99,111,109,109,97,110,100,32,105,110,106,101,99,116,105,111,110,32,97,116,116,97,99,107,115,46,92,110,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,114,101,70,111,114,98,105,100,100,101,110,73,100,101,110,116,105,102,105,101,114,67,104,97,114,115,46,116,101,115,116,40,118,97,114,105,97,98,108,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,73,78,86,65,76,73,68,95,84,69,77,80,76,95,86,65,82,95,69,82,82,79,82,95,84,69,88,84,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,67,108,101,97,110,117,112,32,99,111,100,101,32,98,121,32,115,116,114,105,112,112,105,110,103,32,101,109,112,116,121,32,115,116,114,105,110,103,115,46,92,110,32,32,32,32,32,32,115,111,117,114,99,101,32,61,32,40,105,115,69,118,97,108,117,97,116,105,110,103,32,63,32,115,111,117,114,99,101,46,114,101,112,108,97,99,101,40,114,101,69,109,112,116,121,83,116,114,105,110,103,76,101,97,100,105,110,103,44,32,39,39,41,32,58,32,115,111,117,114,99,101,41,92,110,32,32,32,32,32,32,32,32,46,114,101,112,108,97,99,101,40,114,101,69,109,112,116,121,83,116,114,105,110,103,77,105,100,100,108,101,44,32,39,36,49,39,41,92,110,32,32,32,32,32,32,32,32,46,114,101,112,108,97,99,101,40,114,101,69,109,112,116,121,83,116,114,105,110,103,84,114,97,105,108,105,110,103,44,32,39,36,49,59,39,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,70,114,97,109,101,32,99,111,100,101,32,97,115,32,116,104,101,32,102,117,110,99,116,105,111,110,32,98,111,100,121,46,92,110,32,32,32,32,32,32,115,111,117,114,99,101,32,61,32,39,102,117,110,99,116,105,111,110,40,39,32,43,32,40,118,97,114,105,97,98,108,101,32,124,124,32,39,111,98,106,39,41,32,43,32,39,41,32,123,92,92,110,39,32,43,92,110,32,32,32,32,32,32,32,32,40,118,97,114,105,97,98,108,101,92,110,32,32,32,32,32,32,32,32,32,32,63,32,39,39,92,110,32,32,32,32,32,32,32,32,32,32,58,32,39,111,98,106,32,124,124,32,40,111,98,106,32,61,32,123,125,41,59,92,92,110,39,92,110,32,32,32,32,32,32,32,32,41,32,43,92,110,32,32,32,32,32,32,32,32,92,34,118,97,114,32,95,95,116,44,32,95,95,112,32,61,32,39,39,92,34,32,43,92,110,32,32,32,32,32,32,32,32,40,105,115,69,115,99,97,112,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,32,63,32,39,44,32,95,95,101,32,61,32,95,46,101,115,99,97,112,101,39,92,110,32,32,32,32,32,32,32,32,32,32,32,58,32,39,39,92,110,32,32,32,32,32,32,32,32,41,32,43,92,110,32,32,32,32,32,32,32,32,40,105,115,69,118,97,108,117,97,116,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,63,32,39,44,32,95,95,106,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,106,111,105,110,59,92,92,110,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,102,117,110,99,116,105,111,110,32,112,114,105,110,116,40,41,32,123,32,95,95,112,32,43,61,32,95,95,106,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,32,39,39,41,32,125,92,92,110,92,34,92,110,32,32,32,32,32,32,32,32,32,32,58,32,39,59,92,92,110,39,92,110,32,32,32,32,32,32,32,32,41,32,43,92,110,32,32,32,32,32,32,32,32,115,111,117,114,99,101,32,43,92,110,32,32,32,32,32,32,32,32,39,114,101,116,117,114,110,32,95,95,112,92,92,110,125,39,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,97,116,116,101,109,112,116,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,70,117,110,99,116,105,111,110,40,105,109,112,111,114,116,115,75,101,121,115,44,32,115,111,117,114,99,101,85,82,76,32,43,32,39,114,101,116,117,114,110,32,39,32,43,32,115,111,117,114,99,101,41,92,110,32,32,32,32,32,32,32,32,32,32,46,97,112,112,108,121,40,117,110,100,101,102,105,110,101,100,44,32,105,109,112,111,114,116,115,86,97,108,117,101,115,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,80,114,111,118,105,100,101,32,116,104,101,32,99,111,109,112,105,108,101,100,32,102,117,110,99,116,105,111,110,39,115,32,115,111,117,114,99,101,32,98,121,32,105,116,115,32,96,116,111,83,116,114,105,110,103,96,32,109,101,116,104,111,100,32,111,114,92,110,32,32,32,32,32,32,47,47,32,116,104,101,32,96,115,111,117,114,99,101,96,32,112,114,111,112,101,114,116,121,32,97,115,32,97,32,99,111,110,118,101,110,105,101,110,99,101,32,102,111,114,32,105,110,108,105,110,105,110,103,32,99,111,109,112,105,108,101,100,32,116,101,109,112,108,97,116,101,115,46,92,110,32,32,32,32,32,32,114,101,115,117,108,116,46,115,111,117,114,99,101,32,61,32,115,111,117,114,99,101,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,69,114,114,111,114,40,114,101,115,117,108,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,115,116,114,105,110,103,96,44,32,97,115,32,97,32,119,104,111,108,101,44,32,116,111,32,108,111,119,101,114,32,99,97,115,101,32,106,117,115,116,32,108,105,107,101,92,110,32,32,32,32,32,42,32,91,83,116,114,105,110,103,35,116,111,76,111,119,101,114,67,97,115,101,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,116,111,76,111,119,101,114,67,97,115,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,108,111,119,101,114,32,99,97,115,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,76,111,119,101,114,40,39,45,45,70,111,111,45,66,97,114,45,45,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,45,45,102,111,111,45,98,97,114,45,45,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,76,111,119,101,114,40,39,102,111,111,66,97,114,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,111,111,98,97,114,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,76,111,119,101,114,40,39,95,95,70,79,79,95,66,65,82,95,95,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,95,95,102,111,111,95,98,97,114,95,95,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,76,111,119,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,40,118,97,108,117,101,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,115,116,114,105,110,103,96,44,32,97,115,32,97,32,119,104,111,108,101,44,32,116,111,32,117,112,112,101,114,32,99,97,115,101,32,106,117,115,116,32,108,105,107,101,92,110,32,32,32,32,32,42,32,91,83,116,114,105,110,103,35,116,111,85,112,112,101,114,67,97,115,101,93,40,104,116,116,112,115,58,47,47,109,100,110,46,105,111,47,116,111,85,112,112,101,114,67,97,115,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,117,112,112,101,114,32,99,97,115,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,85,112,112,101,114,40,39,45,45,102,111,111,45,98,97,114,45,45,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,45,45,70,79,79,45,66,65,82,45,45,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,85,112,112,101,114,40,39,102,111,111,66,97,114,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,70,79,79,66,65,82,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,85,112,112,101,114,40,39,95,95,102,111,111,95,98,97,114,95,95,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,95,95,70,79,79,95,66,65,82,95,95,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,85,112,112,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,40,118,97,108,117,101,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,109,111,118,101,115,32,108,101,97,100,105,110,103,32,97,110,100,32,116,114,97,105,108,105,110,103,32,119,104,105,116,101,115,112,97,99,101,32,111,114,32,115,112,101,99,105,102,105,101,100,32,99,104,97,114,97,99,116,101,114,115,32,102,114,111,109,32,96,115,116,114,105,110,103,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,116,114,105,109,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,99,104,97,114,115,61,119,104,105,116,101,115,112,97,99,101,93,32,84,104,101,32,99,104,97,114,97,99,116,101,114,115,32,116,111,32,116,114,105,109,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,116,114,105,109,109,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,114,105,109,40,39,32,32,97,98,99,32,32,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,97,98,99,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,114,105,109,40,39,45,95,45,97,98,99,45,95,45,39,44,32,39,95,45,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,97,98,99,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,91,39,32,32,102,111,111,32,32,39,44,32,39,32,32,98,97,114,32,32,39,93,44,32,95,46,116,114,105,109,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,102,111,111,39,44,32,39,98,97,114,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,114,105,109,40,115,116,114,105,110,103,44,32,99,104,97,114,115,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,116,114,105,110,103,32,38,38,32,40,103,117,97,114,100,32,124,124,32,99,104,97,114,115,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,84,114,105,109,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,33,115,116,114,105,110,103,32,124,124,32,33,40,99,104,97,114,115,32,61,32,98,97,115,101,84,111,83,116,114,105,110,103,40,99,104,97,114,115,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,115,116,114,83,121,109,98,111,108,115,32,61,32,115,116,114,105,110,103,84,111,65,114,114,97,121,40,115,116,114,105,110,103,41,44,92,110,32,32,32,32,32,32,32,32,32,32,99,104,114,83,121,109,98,111,108,115,32,61,32,115,116,114,105,110,103,84,111,65,114,114,97,121,40,99,104,97,114,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,99,104,97,114,115,83,116,97,114,116,73,110,100,101,120,40,115,116,114,83,121,109,98,111,108,115,44,32,99,104,114,83,121,109,98,111,108,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,101,110,100,32,61,32,99,104,97,114,115,69,110,100,73,110,100,101,120,40,115,116,114,83,121,109,98,111,108,115,44,32,99,104,114,83,121,109,98,111,108,115,41,32,43,32,49,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,115,116,83,108,105,99,101,40,115,116,114,83,121,109,98,111,108,115,44,32,115,116,97,114,116,44,32,101,110,100,41,46,106,111,105,110,40,39,39,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,109,111,118,101,115,32,116,114,97,105,108,105,110,103,32,119,104,105,116,101,115,112,97,99,101,32,111,114,32,115,112,101,99,105,102,105,101,100,32,99,104,97,114,97,99,116,101,114,115,32,102,114,111,109,32,96,115,116,114,105,110,103,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,116,114,105,109,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,99,104,97,114,115,61,119,104,105,116,101,115,112,97,99,101,93,32,84,104,101,32,99,104,97,114,97,99,116,101,114,115,32,116,111,32,116,114,105,109,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,116,114,105,109,109,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,114,105,109,69,110,100,40,39,32,32,97,98,99,32,32,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,32,32,97,98,99,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,114,105,109,69,110,100,40,39,45,95,45,97,98,99,45,95,45,39,44,32,39,95,45,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,45,95,45,97,98,99,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,114,105,109,69,110,100,40,115,116,114,105,110,103,44,32,99,104,97,114,115,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,116,114,105,110,103,32,38,38,32,40,103,117,97,114,100,32,124,124,32,99,104,97,114,115,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,115,108,105,99,101,40,48,44,32,116,114,105,109,109,101,100,69,110,100,73,110,100,101,120,40,115,116,114,105,110,103,41,32,43,32,49,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,33,115,116,114,105,110,103,32,124,124,32,33,40,99,104,97,114,115,32,61,32,98,97,115,101,84,111,83,116,114,105,110,103,40,99,104,97,114,115,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,115,116,114,83,121,109,98,111,108,115,32,61,32,115,116,114,105,110,103,84,111,65,114,114,97,121,40,115,116,114,105,110,103,41,44,92,110,32,32,32,32,32,32,32,32,32,32,101,110,100,32,61,32,99,104,97,114,115,69,110,100,73,110,100,101,120,40,115,116,114,83,121,109,98,111,108,115,44,32,115,116,114,105,110,103,84,111,65,114,114,97,121,40,99,104,97,114,115,41,41,32,43,32,49,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,115,116,83,108,105,99,101,40,115,116,114,83,121,109,98,111,108,115,44,32,48,44,32,101,110,100,41,46,106,111,105,110,40,39,39,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,109,111,118,101,115,32,108,101,97,100,105,110,103,32,119,104,105,116,101,115,112,97,99,101,32,111,114,32,115,112,101,99,105,102,105,101,100,32,99,104,97,114,97,99,116,101,114,115,32,102,114,111,109,32,96,115,116,114,105,110,103,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,116,114,105,109,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,99,104,97,114,115,61,119,104,105,116,101,115,112,97,99,101,93,32,84,104,101,32,99,104,97,114,97,99,116,101,114,115,32,116,111,32,116,114,105,109,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,116,114,105,109,109,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,114,105,109,83,116,97,114,116,40,39,32,32,97,98,99,32,32,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,97,98,99,32,32,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,114,105,109,83,116,97,114,116,40,39,45,95,45,97,98,99,45,95,45,39,44,32,39,95,45,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,97,98,99,45,95,45,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,114,105,109,83,116,97,114,116,40,115,116,114,105,110,103,44,32,99,104,97,114,115,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,116,114,105,110,103,32,38,38,32,40,103,117,97,114,100,32,124,124,32,99,104,97,114,115,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,114,101,112,108,97,99,101,40,114,101,84,114,105,109,83,116,97,114,116,44,32,39,39,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,33,115,116,114,105,110,103,32,124,124,32,33,40,99,104,97,114,115,32,61,32,98,97,115,101,84,111,83,116,114,105,110,103,40,99,104,97,114,115,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,115,116,114,83,121,109,98,111,108,115,32,61,32,115,116,114,105,110,103,84,111,65,114,114,97,121,40,115,116,114,105,110,103,41,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,32,61,32,99,104,97,114,115,83,116,97,114,116,73,110,100,101,120,40,115,116,114,83,121,109,98,111,108,115,44,32,115,116,114,105,110,103,84,111,65,114,114,97,121,40,99,104,97,114,115,41,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,115,116,83,108,105,99,101,40,115,116,114,83,121,109,98,111,108,115,44,32,115,116,97,114,116,41,46,106,111,105,110,40,39,39,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,114,117,110,99,97,116,101,115,32,96,115,116,114,105,110,103,96,32,105,102,32,105,116,39,115,32,108,111,110,103,101,114,32,116,104,97,110,32,116,104,101,32,103,105,118,101,110,32,109,97,120,105,109,117,109,32,115,116,114,105,110,103,32,108,101,110,103,116,104,46,92,110,32,32,32,32,32,42,32,84,104,101,32,108,97,115,116,32,99,104,97,114,97,99,116,101,114,115,32,111,102,32,116,104,101,32,116,114,117,110,99,97,116,101,100,32,115,116,114,105,110,103,32,97,114,101,32,114,101,112,108,97,99,101,100,32,119,105,116,104,32,116,104,101,32,111,109,105,115,115,105,111,110,92,110,32,32,32,32,32,42,32,115,116,114,105,110,103,32,119,104,105,99,104,32,100,101,102,97,117,108,116,115,32,116,111,32,92,34,46,46,46,92,34,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,116,114,117,110,99,97,116,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,112,116,105,111,110,115,61,123,125,93,32,84,104,101,32,111,112,116,105,111,110,115,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,111,112,116,105,111,110,115,46,108,101,110,103,116,104,61,51,48,93,32,84,104,101,32,109,97,120,105,109,117,109,32,115,116,114,105,110,103,32,108,101,110,103,116,104,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,111,112,116,105,111,110,115,46,111,109,105,115,115,105,111,110,61,39,46,46,46,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,105,110,100,105,99,97,116,101,32,116,101,120,116,32,105,115,32,111,109,105,116,116,101,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,82,101,103,69,120,112,124,115,116,114,105,110,103,125,32,91,111,112,116,105,111,110,115,46,115,101,112,97,114,97,116,111,114,93,32,84,104,101,32,115,101,112,97,114,97,116,111,114,32,112,97,116,116,101,114,110,32,116,111,32,116,114,117,110,99,97,116,101,32,116,111,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,116,114,117,110,99,97,116,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,114,117,110,99,97,116,101,40,39,104,105,45,100,105,100,100,108,121,45,104,111,32,116,104,101,114,101,44,32,110,101,105,103,104,98,111,114,105,110,111,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,105,45,100,105,100,100,108,121,45,104,111,32,116,104,101,114,101,44,32,110,101,105,103,104,98,111,46,46,46,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,114,117,110,99,97,116,101,40,39,104,105,45,100,105,100,100,108,121,45,104,111,32,116,104,101,114,101,44,32,110,101,105,103,104,98,111,114,105,110,111,39,44,32,123,92,110,32,32,32,32,32,42,32,32,32,39,108,101,110,103,116,104,39,58,32,50,52,44,92,110,32,32,32,32,32,42,32,32,32,39,115,101,112,97,114,97,116,111,114,39,58,32,39,32,39,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,105,45,100,105,100,100,108,121,45,104,111,32,116,104,101,114,101,44,46,46,46,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,114,117,110,99,97,116,101,40,39,104,105,45,100,105,100,100,108,121,45,104,111,32,116,104,101,114,101,44,32,110,101,105,103,104,98,111,114,105,110,111,39,44,32,123,92,110,32,32,32,32,32,42,32,32,32,39,108,101,110,103,116,104,39,58,32,50,52,44,92,110,32,32,32,32,32,42,32,32,32,39,115,101,112,97,114,97,116,111,114,39,58,32,47,44,63,32,43,47,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,105,45,100,105,100,100,108,121,45,104,111,32,116,104,101,114,101,46,46,46,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,114,117,110,99,97,116,101,40,39,104,105,45,100,105,100,100,108,121,45,104,111,32,116,104,101,114,101,44,32,110,101,105,103,104,98,111,114,105,110,111,39,44,32,123,92,110,32,32,32,32,32,42,32,32,32,39,111,109,105,115,115,105,111,110,39,58,32,39,32,91,46,46,46,93,39,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,104,105,45,100,105,100,100,108,121,45,104,111,32,116,104,101,114,101,44,32,110,101,105,103,32,91,46,46,46,93,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,114,117,110,99,97,116,101,40,115,116,114,105,110,103,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,68,69,70,65,85,76,84,95,84,82,85,78,67,95,76,69,78,71,84,72,44,92,110,32,32,32,32,32,32,32,32,32,32,111,109,105,115,115,105,111,110,32,61,32,68,69,70,65,85,76,84,95,84,82,85,78,67,95,79,77,73,83,83,73,79,78,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,111,112,116,105,111,110,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,101,112,97,114,97,116,111,114,32,61,32,39,115,101,112,97,114,97,116,111,114,39,32,105,110,32,111,112,116,105,111,110,115,32,63,32,111,112,116,105,111,110,115,46,115,101,112,97,114,97,116,111,114,32,58,32,115,101,112,97,114,97,116,111,114,59,92,110,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,39,108,101,110,103,116,104,39,32,105,110,32,111,112,116,105,111,110,115,32,63,32,116,111,73,110,116,101,103,101,114,40,111,112,116,105,111,110,115,46,108,101,110,103,116,104,41,32,58,32,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,111,109,105,115,115,105,111,110,32,61,32,39,111,109,105,115,115,105,111,110,39,32,105,110,32,111,112,116,105,111,110,115,32,63,32,98,97,115,101,84,111,83,116,114,105,110,103,40,111,112,116,105,111,110,115,46,111,109,105,115,115,105,111,110,41,32,58,32,111,109,105,115,115,105,111,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,116,114,76,101,110,103,116,104,32,61,32,115,116,114,105,110,103,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,85,110,105,99,111,100,101,40,115,116,114,105,110,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,116,114,83,121,109,98,111,108,115,32,61,32,115,116,114,105,110,103,84,111,65,114,114,97,121,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,32,32,115,116,114,76,101,110,103,116,104,32,61,32,115,116,114,83,121,109,98,111,108,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,108,101,110,103,116,104,32,62,61,32,115,116,114,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,101,110,100,32,61,32,108,101,110,103,116,104,32,45,32,115,116,114,105,110,103,83,105,122,101,40,111,109,105,115,115,105,111,110,41,59,92,110,32,32,32,32,32,32,105,102,32,40,101,110,100,32,60,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,109,105,115,115,105,111,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,115,116,114,83,121,109,98,111,108,115,92,110,32,32,32,32,32,32,32,32,63,32,99,97,115,116,83,108,105,99,101,40,115,116,114,83,121,109,98,111,108,115,44,32,48,44,32,101,110,100,41,46,106,111,105,110,40,39,39,41,92,110,32,32,32,32,32,32,32,32,58,32,115,116,114,105,110,103,46,115,108,105,99,101,40,48,44,32,101,110,100,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,101,112,97,114,97,116,111,114,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,43,32,111,109,105,115,115,105,111,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,115,116,114,83,121,109,98,111,108,115,41,32,123,92,110,32,32,32,32,32,32,32,32,101,110,100,32,43,61,32,40,114,101,115,117,108,116,46,108,101,110,103,116,104,32,45,32,101,110,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,82,101,103,69,120,112,40,115,101,112,97,114,97,116,111,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,116,114,105,110,103,46,115,108,105,99,101,40,101,110,100,41,46,115,101,97,114,99,104,40,115,101,112,97,114,97,116,111,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,117,98,115,116,114,105,110,103,32,61,32,114,101,115,117,108,116,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,115,101,112,97,114,97,116,111,114,46,103,108,111,98,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,112,97,114,97,116,111,114,32,61,32,82,101,103,69,120,112,40,115,101,112,97,114,97,116,111,114,46,115,111,117,114,99,101,44,32,116,111,83,116,114,105,110,103,40,114,101,70,108,97,103,115,46,101,120,101,99,40,115,101,112,97,114,97,116,111,114,41,41,32,43,32,39,103,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,115,101,112,97,114,97,116,111,114,46,108,97,115,116,73,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,40,109,97,116,99,104,32,61,32,115,101,112,97,114,97,116,111,114,46,101,120,101,99,40,115,117,98,115,116,114,105,110,103,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,69,110,100,32,61,32,109,97,116,99,104,46,105,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,114,101,115,117,108,116,46,115,108,105,99,101,40,48,44,32,110,101,119,69,110,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,101,110,100,32,58,32,110,101,119,69,110,100,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,116,114,105,110,103,46,105,110,100,101,120,79,102,40,98,97,115,101,84,111,83,116,114,105,110,103,40,115,101,112,97,114,97,116,111,114,41,44,32,101,110,100,41,32,33,61,32,101,110,100,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,114,101,115,117,108,116,46,108,97,115,116,73,110,100,101,120,79,102,40,115,101,112,97,114,97,116,111,114,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,114,101,115,117,108,116,46,115,108,105,99,101,40,48,44,32,105,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,43,32,111,109,105,115,115,105,111,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,105,110,118,101,114,115,101,32,111,102,32,96,95,46,101,115,99,97,112,101,96,59,32,116,104,105,115,32,109,101,116,104,111,100,32,99,111,110,118,101,114,116,115,32,116,104,101,32,72,84,77,76,32,101,110,116,105,116,105,101,115,92,110,32,32,32,32,32,42,32,96,38,97,109,112,59,96,44,32,96,38,108,116,59,96,44,32,96,38,103,116,59,96,44,32,96,38,113,117,111,116,59,96,44,32,97,110,100,32,96,38,35,51,57,59,96,32,105,110,32,96,115,116,114,105,110,103,96,32,116,111,92,110,32,32,32,32,32,42,32,116,104,101,105,114,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,99,104,97,114,97,99,116,101,114,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,78,111,32,111,116,104,101,114,32,72,84,77,76,32,101,110,116,105,116,105,101,115,32,97,114,101,32,117,110,101,115,99,97,112,101,100,46,32,84,111,32,117,110,101,115,99,97,112,101,32,97,100,100,105,116,105,111,110,97,108,92,110,32,32,32,32,32,42,32,72,84,77,76,32,101,110,116,105,116,105,101,115,32,117,115,101,32,97,32,116,104,105,114,100,45,112,97,114,116,121,32,108,105,98,114,97,114,121,32,108,105,107,101,32,91,95,104,101,95,93,40,104,116,116,112,115,58,47,47,109,116,104,115,46,98,101,47,104,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,54,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,117,110,101,115,99,97,112,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,117,110,101,115,99,97,112,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,110,101,115,99,97,112,101,40,39,102,114,101,100,44,32,98,97,114,110,101,121,44,32,38,97,109,112,59,32,112,101,98,98,108,101,115,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,102,114,101,100,44,32,98,97,114,110,101,121,44,32,38,32,112,101,98,98,108,101,115,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,110,101,115,99,97,112,101,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,115,116,114,105,110,103,32,38,38,32,114,101,72,97,115,69,115,99,97,112,101,100,72,116,109,108,46,116,101,115,116,40,115,116,114,105,110,103,41,41,92,110,32,32,32,32,32,32,32,32,63,32,115,116,114,105,110,103,46,114,101,112,108,97,99,101,40,114,101,69,115,99,97,112,101,100,72,116,109,108,44,32,117,110,101,115,99,97,112,101,72,116,109,108,67,104,97,114,41,92,110,32,32,32,32,32,32,32,32,58,32,115,116,114,105,110,103,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,115,116,114,105,110,103,96,44,32,97,115,32,115,112,97,99,101,32,115,101,112,97,114,97,116,101,100,32,119,111,114,100,115,44,32,116,111,32,117,112,112,101,114,32,99,97,115,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,117,112,112,101,114,32,99,97,115,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,112,112,101,114,67,97,115,101,40,39,45,45,102,111,111,45,98,97,114,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,70,79,79,32,66,65,82,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,112,112,101,114,67,97,115,101,40,39,102,111,111,66,97,114,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,70,79,79,32,66,65,82,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,112,112,101,114,67,97,115,101,40,39,95,95,102,111,111,95,98,97,114,95,95,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,70,79,79,32,66,65,82,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,117,112,112,101,114,67,97,115,101,32,61,32,99,114,101,97,116,101,67,111,109,112,111,117,110,100,101,114,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,119,111,114,100,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,43,32,40,105,110,100,101,120,32,63,32,39,32,39,32,58,32,39,39,41,32,43,32,119,111,114,100,46,116,111,85,112,112,101,114,67,97,115,101,40,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,116,104,101,32,102,105,114,115,116,32,99,104,97,114,97,99,116,101,114,32,111,102,32,96,115,116,114,105,110,103,96,32,116,111,32,117,112,112,101,114,32,99,97,115,101,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,118,101,114,116,101,100,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,112,112,101,114,70,105,114,115,116,40,39,102,114,101,100,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,70,114,101,100,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,112,112,101,114,70,105,114,115,116,40,39,70,82,69,68,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,70,82,69,68,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,117,112,112,101,114,70,105,114,115,116,32,61,32,99,114,101,97,116,101,67,97,115,101,70,105,114,115,116,40,39,116,111,85,112,112,101,114,67,97,115,101,39,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,83,112,108,105,116,115,32,96,115,116,114,105,110,103,96,32,105,110,116,111,32,97,110,32,97,114,114,97,121,32,111,102,32,105,116,115,32,119,111,114,100,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,83,116,114,105,110,103,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,115,116,114,105,110,103,61,39,39,93,32,84,104,101,32,115,116,114,105,110,103,32,116,111,32,105,110,115,112,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,82,101,103,69,120,112,124,115,116,114,105,110,103,125,32,91,112,97,116,116,101,114,110,93,32,84,104,101,32,112,97,116,116,101,114,110,32,116,111,32,109,97,116,99,104,32,119,111,114,100,115,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,45,32,123,79,98,106,101,99,116,125,32,91,103,117,97,114,100,93,32,69,110,97,98,108,101,115,32,117,115,101,32,97,115,32,97,110,32,105,116,101,114,97,116,101,101,32,102,111,114,32,109,101,116,104,111,100,115,32,108,105,107,101,32,96,95,46,109,97,112,96,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,119,111,114,100,115,32,111,102,32,96,115,116,114,105,110,103,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,119,111,114,100,115,40,39,102,114,101,100,44,32,98,97,114,110,101,121,44,32,38,32,112,101,98,98,108,101,115,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,102,114,101,100,39,44,32,39,98,97,114,110,101,121,39,44,32,39,112,101,98,98,108,101,115,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,119,111,114,100,115,40,39,102,114,101,100,44,32,98,97,114,110,101,121,44,32,38,32,112,101,98,98,108,101,115,39,44,32,47,91,94,44,32,93,43,47,103,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,102,114,101,100,39,44,32,39,98,97,114,110,101,121,39,44,32,39,38,39,44,32,39,112,101,98,98,108,101,115,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,119,111,114,100,115,40,115,116,114,105,110,103,44,32,112,97,116,116,101,114,110,44,32,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,115,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,112,97,116,116,101,114,110,32,61,32,103,117,97,114,100,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,112,97,116,116,101,114,110,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,112,97,116,116,101,114,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,115,85,110,105,99,111,100,101,87,111,114,100,40,115,116,114,105,110,103,41,32,63,32,117,110,105,99,111,100,101,87,111,114,100,115,40,115,116,114,105,110,103,41,32,58,32,97,115,99,105,105,87,111,114,100,115,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,109,97,116,99,104,40,112,97,116,116,101,114,110,41,32,124,124,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,116,116,101,109,112,116,115,32,116,111,32,105,110,118,111,107,101,32,96,102,117,110,99,96,44,32,114,101,116,117,114,110,105,110,103,32,101,105,116,104,101,114,32,116,104,101,32,114,101,115,117,108,116,32,111,114,32,116,104,101,32,99,97,117,103,104,116,32,101,114,114,111,114,92,110,32,32,32,32,32,42,32,111,98,106,101,99,116,46,32,65,110,121,32,97,100,100,105,116,105,111,110,97,108,32,97,114,103,117,109,101,110,116,115,32,97,114,101,32,112,114,111,118,105,100,101,100,32,116,111,32,96,102,117,110,99,96,32,119,104,101,110,32,105,116,39,115,32,105,110,118,111,107,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,117,110,99,32,84,104,101,32,102,117,110,99,116,105,111,110,32,116,111,32,97,116,116,101,109,112,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,42,125,32,91,97,114,103,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,105,110,118,111,107,101,32,96,102,117,110,99,96,32,119,105,116,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,96,102,117,110,99,96,32,114,101,115,117,108,116,32,111,114,32,101,114,114,111,114,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,65,118,111,105,100,32,116,104,114,111,119,105,110,103,32,101,114,114,111,114,115,32,102,111,114,32,105,110,118,97,108,105,100,32,115,101,108,101,99,116,111,114,115,46,92,110,32,32,32,32,32,42,32,118,97,114,32,101,108,101,109,101,110,116,115,32,61,32,95,46,97,116,116,101,109,112,116,40,102,117,110,99,116,105,111,110,40,115,101,108,101,99,116,111,114,41,32,123,92,110,32,32,32,32,32,42,32,32,32,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,65,108,108,40,115,101,108,101,99,116,111,114,41,59,92,110,32,32,32,32,32,42,32,125,44,32,39,62,95,62,39,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,105,102,32,40,95,46,105,115,69,114,114,111,114,40,101,108,101,109,101,110,116,115,41,41,32,123,92,110,32,32,32,32,32,42,32,32,32,101,108,101,109,101,110,116,115,32,61,32,91,93,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,97,116,116,101,109,112,116,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,102,117,110,99,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,112,112,108,121,40,102,117,110,99,44,32,117,110,100,101,102,105,110,101,100,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,69,114,114,111,114,40,101,41,32,63,32,101,32,58,32,110,101,119,32,69,114,114,111,114,40,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,66,105,110,100,115,32,109,101,116,104,111,100,115,32,111,102,32,97,110,32,111,98,106,101,99,116,32,116,111,32,116,104,101,32,111,98,106,101,99,116,32,105,116,115,101,108,102,44,32,111,118,101,114,119,114,105,116,105,110,103,32,116,104,101,32,101,120,105,115,116,105,110,103,92,110,32,32,32,32,32,42,32,109,101,116,104,111,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,105,115,32,109,101,116,104,111,100,32,100,111,101,115,110,39,116,32,115,101,116,32,116,104,101,32,92,34,108,101,110,103,116,104,92,34,32,112,114,111,112,101,114,116,121,32,111,102,32,98,111,117,110,100,32,102,117,110,99,116,105,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,98,105,110,100,32,97,110,100,32,97,115,115,105,103,110,32,116,104,101,32,98,111,117,110,100,32,109,101,116,104,111,100,115,32,116,111,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,40,115,116,114,105,110,103,124,115,116,114,105,110,103,91,93,41,125,32,109,101,116,104,111,100,78,97,109,101,115,32,84,104,101,32,111,98,106,101,99,116,32,109,101,116,104,111,100,32,110,97,109,101,115,32,116,111,32,98,105,110,100,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,118,105,101,119,32,61,32,123,92,110,32,32,32,32,32,42,32,32,32,39,108,97,98,101,108,39,58,32,39,100,111,99,115,39,44,92,110,32,32,32,32,32,42,32,32,32,39,99,108,105,99,107,39,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,39,99,108,105,99,107,101,100,32,39,32,43,32,116,104,105,115,46,108,97,98,101,108,41,59,92,110,32,32,32,32,32,42,32,32,32,125,92,110,32,32,32,32,32,42,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,98,105,110,100,65,108,108,40,118,105,101,119,44,32,91,39,99,108,105,99,107,39,93,41,59,92,110,32,32,32,32,32,42,32,106,81,117,101,114,121,40,101,108,101,109,101,110,116,41,46,111,110,40,39,99,108,105,99,107,39,44,32,118,105,101,119,46,99,108,105,99,107,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,76,111,103,115,32,39,99,108,105,99,107,101,100,32,100,111,99,115,39,32,119,104,101,110,32,99,108,105,99,107,101,100,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,98,105,110,100,65,108,108,32,61,32,102,108,97,116,82,101,115,116,40,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,109,101,116,104,111,100,78,97,109,101,115,41,32,123,92,110,32,32,32,32,32,32,97,114,114,97,121,69,97,99,104,40,109,101,116,104,111,100,78,97,109,101,115,44,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,32,61,32,116,111,75,101,121,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,98,97,115,101,65,115,115,105,103,110,86,97,108,117,101,40,111,98,106,101,99,116,44,32,107,101,121,44,32,98,105,110,100,40,111,98,106,101,99,116,91,107,101,121,93,44,32,111,98,106,101,99,116,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,116,101,114,97,116,101,115,32,111,118,101,114,32,96,112,97,105,114,115,96,32,97,110,100,32,105,110,118,111,107,101,115,32,116,104,101,32,99,111,114,114,101,115,112,111,110,100,105,110,103,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,111,102,32,116,104,101,32,102,105,114,115,116,32,112,114,101,100,105,99,97,116,101,32,116,111,32,114,101,116,117,114,110,32,116,114,117,116,104,121,46,32,84,104,101,32,112,114,101,100,105,99,97,116,101,45,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,42,32,112,97,105,114,115,32,97,114,101,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,97,110,100,32,97,114,103,117,109,101,110,116,115,32,111,102,32,116,104,101,32,99,114,101,97,116,101,100,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,112,97,105,114,115,32,84,104,101,32,112,114,101,100,105,99,97,116,101,45,102,117,110,99,116,105,111,110,32,112,97,105,114,115,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,99,111,109,112,111,115,105,116,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,102,117,110,99,32,61,32,95,46,99,111,110,100,40,91,92,110,32,32,32,32,32,42,32,32,32,91,95,46,109,97,116,99,104,101,115,40,123,32,39,97,39,58,32,49,32,125,41,44,32,32,32,32,32,32,32,32,32,32,32,95,46,99,111,110,115,116,97,110,116,40,39,109,97,116,99,104,101,115,32,65,39,41,93,44,92,110,32,32,32,32,32,42,32,32,32,91,95,46,99,111,110,102,111,114,109,115,40,123,32,39,98,39,58,32,95,46,105,115,78,117,109,98,101,114,32,125,41,44,32,95,46,99,111,110,115,116,97,110,116,40,39,109,97,116,99,104,101,115,32,66,39,41,93,44,92,110,32,32,32,32,32,42,32,32,32,91,95,46,115,116,117,98,84,114,117,101,44,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,46,99,111,110,115,116,97,110,116,40,39,110,111,32,109,97,116,99,104,39,41,93,92,110,32,32,32,32,32,42,32,93,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,40,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,109,97,116,99,104,101,115,32,65,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,40,123,32,39,97,39,58,32,48,44,32,39,98,39,58,32,49,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,109,97,116,99,104,101,115,32,66,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,40,123,32,39,97,39,58,32,39,49,39,44,32,39,98,39,58,32,39,50,39,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,110,111,32,109,97,116,99,104,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,110,100,40,112,97,105,114,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,112,97,105,114,115,32,61,61,32,110,117,108,108,32,63,32,48,32,58,32,112,97,105,114,115,46,108,101,110,103,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,116,111,73,116,101,114,97,116,101,101,32,61,32,103,101,116,73,116,101,114,97,116,101,101,40,41,59,92,110,92,110,32,32,32,32,32,32,112,97,105,114,115,32,61,32,33,108,101,110,103,116,104,32,63,32,91,93,32,58,32,97,114,114,97,121,77,97,112,40,112,97,105,114,115,44,32,102,117,110,99,116,105,111,110,40,112,97,105,114,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,112,97,105,114,91,49,93,32,33,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,70,85,78,67,95,69,82,82,79,82,95,84,69,88,84,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,116,111,73,116,101,114,97,116,101,101,40,112,97,105,114,91,48,93,41,44,32,112,97,105,114,91,49,93,93,59,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,105,114,32,61,32,112,97,105,114,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,112,112,108,121,40,112,97,105,114,91,48,93,44,32,116,104,105,115,44,32,97,114,103,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,112,112,108,121,40,112,97,105,114,91,49,93,44,32,116,104,105,115,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,32,116,104,101,32,112,114,101,100,105,99,97,116,101,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,96,115,111,117,114,99,101,96,32,119,105,116,104,92,110,32,32,32,32,32,42,32,116,104,101,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,32,111,102,32,97,32,103,105,118,101,110,32,111,98,106,101,99,116,44,32,114,101,116,117,114,110,105,110,103,32,96,116,114,117,101,96,32,105,102,92,110,32,32,32,32,32,42,32,97,108,108,32,112,114,101,100,105,99,97,116,101,115,32,114,101,116,117,114,110,32,116,114,117,116,104,121,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,101,32,99,114,101,97,116,101,100,32,102,117,110,99,116,105,111,110,32,105,115,32,101,113,117,105,118,97,108,101,110,116,32,116,111,32,96,95,46,99,111,110,102,111,114,109,115,84,111,96,32,119,105,116,104,92,110,32,32,32,32,32,42,32,96,115,111,117,114,99,101,96,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,112,114,111,112,101,114,116,121,32,112,114,101,100,105,99,97,116,101,115,32,116,111,32,99,111,110,102,111,114,109,32,116,111,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,115,112,101,99,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,97,39,58,32,50,44,32,39,98,39,58,32,49,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,105,108,116,101,114,40,111,98,106,101,99,116,115,44,32,95,46,99,111,110,102,111,114,109,115,40,123,32,39,98,39,58,32,102,117,110,99,116,105,111,110,40,110,41,32,123,32,114,101,116,117,114,110,32,110,32,62,32,49,59,32,125,32,125,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,32,125,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,110,102,111,114,109,115,40,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,67,111,110,102,111,114,109,115,40,98,97,115,101,67,108,111,110,101,40,115,111,117,114,99,101,44,32,67,76,79,78,69,95,68,69,69,80,95,70,76,65,71,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,114,101,116,117,114,110,115,32,96,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,52,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,114,101,116,117,114,110,32,102,114,111,109,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,99,111,110,115,116,97,110,116,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,95,46,116,105,109,101,115,40,50,44,32,95,46,99,111,110,115,116,97,110,116,40,123,32,39,97,39,58,32,49,32,125,41,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,111,98,106,101,99,116,115,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,97,39,58,32,49,32,125,44,32,123,32,39,97,39,58,32,49,32,125,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,111,98,106,101,99,116,115,91,48,93,32,61,61,61,32,111,98,106,101,99,116,115,91,49,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,110,115,116,97,110,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,104,101,99,107,115,32,96,118,97,108,117,101,96,32,116,111,32,100,101,116,101,114,109,105,110,101,32,119,104,101,116,104,101,114,32,97,32,100,101,102,97,117,108,116,32,118,97,108,117,101,32,115,104,111,117,108,100,32,98,101,32,114,101,116,117,114,110,101,100,32,105,110,92,110,32,32,32,32,32,42,32,105,116,115,32,112,108,97,99,101,46,32,84,104,101,32,96,100,101,102,97,117,108,116,86,97,108,117,101,96,32,105,115,32,114,101,116,117,114,110,101,100,32,105,102,32,96,118,97,108,117,101,96,32,105,115,32,96,78,97,78,96,44,32,96,110,117,108,108,96,44,92,110,32,32,32,32,32,42,32,111,114,32,96,117,110,100,101,102,105,110,101,100,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,49,52,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,100,101,102,97,117,108,116,86,97,108,117,101,32,84,104,101,32,100,101,102,97,117,108,116,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,115,111,108,118,101,100,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,101,102,97,117,108,116,84,111,40,49,44,32,49,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,49,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,101,102,97,117,108,116,84,111,40,117,110,100,101,102,105,110,101,100,44,32,49,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,49,48,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,100,101,102,97,117,108,116,84,111,40,118,97,108,117,101,44,32,100,101,102,97,117,108,116,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,118,97,108,117,101,32,61,61,32,110,117,108,108,32,124,124,32,118,97,108,117,101,32,33,61,61,32,118,97,108,117,101,41,32,63,32,100,101,102,97,117,108,116,86,97,108,117,101,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,114,101,116,117,114,110,115,32,116,104,101,32,114,101,115,117,108,116,32,111,102,32,105,110,118,111,107,105,110,103,32,116,104,101,32,103,105,118,101,110,32,102,117,110,99,116,105,111,110,115,92,110,32,32,32,32,32,42,32,119,105,116,104,32,116,104,101,32,96,116,104,105,115,96,32,98,105,110,100,105,110,103,32,111,102,32,116,104,101,32,99,114,101,97,116,101,100,32,102,117,110,99,116,105,111,110,44,32,119,104,101,114,101,32,101,97,99,104,32,115,117,99,99,101,115,115,105,118,101,92,110,32,32,32,32,32,42,32,105,110,118,111,99,97,116,105,111,110,32,105,115,32,115,117,112,112,108,105,101,100,32,116,104,101,32,114,101,116,117,114,110,32,118,97,108,117,101,32,111,102,32,116,104,101,32,112,114,101,118,105,111,117,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,40,70,117,110,99,116,105,111,110,124,70,117,110,99,116,105,111,110,91,93,41,125,32,91,102,117,110,99,115,93,32,84,104,101,32,102,117,110,99,116,105,111,110,115,32,116,111,32,105,110,118,111,107,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,99,111,109,112,111,115,105,116,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,102,108,111,119,82,105,103,104,116,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,115,113,117,97,114,101,40,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,110,32,42,32,110,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,100,100,83,113,117,97,114,101,32,61,32,95,46,102,108,111,119,40,91,95,46,97,100,100,44,32,115,113,117,97,114,101,93,41,59,92,110,32,32,32,32,32,42,32,97,100,100,83,113,117,97,114,101,40,49,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,57,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,102,108,111,119,32,61,32,99,114,101,97,116,101,70,108,111,119,40,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,102,108,111,119,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,99,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,115,32,116,104,101,32,103,105,118,101,110,32,102,117,110,99,116,105,111,110,115,32,102,114,111,109,32,114,105,103,104,116,32,116,111,32,108,101,102,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,40,70,117,110,99,116,105,111,110,124,70,117,110,99,116,105,111,110,91,93,41,125,32,91,102,117,110,99,115,93,32,84,104,101,32,102,117,110,99,116,105,111,110,115,32,116,111,32,105,110,118,111,107,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,99,111,109,112,111,115,105,116,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,102,108,111,119,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,115,113,117,97,114,101,40,110,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,110,32,42,32,110,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,100,100,83,113,117,97,114,101,32,61,32,95,46,102,108,111,119,82,105,103,104,116,40,91,115,113,117,97,114,101,44,32,95,46,97,100,100,93,41,59,92,110,32,32,32,32,32,42,32,97,100,100,83,113,117,97,114,101,40,49,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,57,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,102,108,111,119,82,105,103,104,116,32,61,32,99,114,101,97,116,101,70,108,111,119,40,116,114,117,101,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,116,104,101,32,102,105,114,115,116,32,97,114,103,117,109,101,110,116,32,105,116,32,114,101,99,101,105,118,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,65,110,121,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,96,118,97,108,117,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,49,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,95,46,105,100,101,110,116,105,116,121,40,111,98,106,101,99,116,41,32,61,61,61,32,111,98,106,101,99,116,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,100,101,110,116,105,116,121,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,32,96,102,117,110,99,96,32,119,105,116,104,32,116,104,101,32,97,114,103,117,109,101,110,116,115,32,111,102,32,116,104,101,32,99,114,101,97,116,101,100,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,46,32,73,102,32,96,102,117,110,99,96,32,105,115,32,97,32,112,114,111,112,101,114,116,121,32,110,97,109,101,44,32,116,104,101,32,99,114,101,97,116,101,100,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,115,32,116,104,101,92,110,32,32,32,32,32,42,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,32,102,111,114,32,97,32,103,105,118,101,110,32,101,108,101,109,101,110,116,46,32,73,102,32,96,102,117,110,99,96,32,105,115,32,97,110,32,97,114,114,97,121,32,111,114,32,111,98,106,101,99,116,44,32,116,104,101,92,110,32,32,32,32,32,42,32,99,114,101,97,116,101,100,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,115,32,96,116,114,117,101,96,32,102,111,114,32,101,108,101,109,101,110,116,115,32,116,104,97,116,32,99,111,110,116,97,105,110,32,116,104,101,32,101,113,117,105,118,97,108,101,110,116,92,110,32,32,32,32,32,42,32,115,111,117,114,99,101,32,112,114,111,112,101,114,116,105,101,115,44,32,111,116,104,101,114,119,105,115,101,32,105,116,32,114,101,116,117,114,110,115,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,91,102,117,110,99,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,110,118,101,114,116,32,116,111,32,97,32,99,97,108,108,98,97,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,99,97,108,108,98,97,99,107,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,117,115,101,114,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,103,101,39,58,32,51,54,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,32,32,39,97,103,101,39,58,32,52,48,44,32,39,97,99,116,105,118,101,39,58,32,102,97,108,115,101,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,108,116,101,114,40,117,115,101,114,115,44,32,95,46,105,116,101,114,97,116,101,101,40,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,117,115,101,114,39,58,32,39,98,97,114,110,101,121,39,44,32,39,97,103,101,39,58,32,51,54,44,32,39,97,99,116,105,118,101,39,58,32,116,114,117,101,32,125,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,102,105,108,116,101,114,40,117,115,101,114,115,44,32,95,46,105,116,101,114,97,116,101,101,40,91,39,117,115,101,114,39,44,32,39,102,114,101,100,39,93,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,117,115,101,114,39,58,32,39,102,114,101,100,39,44,32,39,97,103,101,39,58,32,52,48,32,125,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,117,115,101,114,115,44,32,95,46,105,116,101,114,97,116,101,101,40,39,117,115,101,114,39,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,98,97,114,110,101,121,39,44,32,39,102,114,101,100,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,67,114,101,97,116,101,32,99,117,115,116,111,109,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,115,46,92,110,32,32,32,32,32,42,32,95,46,105,116,101,114,97,116,101,101,32,61,32,95,46,119,114,97,112,40,95,46,105,116,101,114,97,116,101,101,44,32,102,117,110,99,116,105,111,110,40,105,116,101,114,97,116,101,101,44,32,102,117,110,99,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,33,95,46,105,115,82,101,103,69,120,112,40,102,117,110,99,41,32,63,32,105,116,101,114,97,116,101,101,40,102,117,110,99,41,32,58,32,102,117,110,99,116,105,111,110,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,46,116,101,115,116,40,115,116,114,105,110,103,41,59,92,110,32,32,32,32,32,42,32,32,32,125,59,92,110,32,32,32,32,32,42,32,125,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,105,108,116,101,114,40,91,39,97,98,99,39,44,32,39,100,101,102,39,93,44,32,47,101,102,47,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,100,101,102,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,116,101,114,97,116,101,101,40,102,117,110,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,73,116,101,114,97,116,101,101,40,116,121,112,101,111,102,32,102,117,110,99,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,102,117,110,99,32,58,32,98,97,115,101,67,108,111,110,101,40,102,117,110,99,44,32,67,76,79,78,69,95,68,69,69,80,95,70,76,65,71,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,112,101,114,102,111,114,109,115,32,97,32,112,97,114,116,105,97,108,32,100,101,101,112,32,99,111,109,112,97,114,105,115,111,110,32,98,101,116,119,101,101,110,32,97,32,103,105,118,101,110,92,110,32,32,32,32,32,42,32,111,98,106,101,99,116,32,97,110,100,32,96,115,111,117,114,99,101,96,44,32,114,101,116,117,114,110,105,110,103,32,96,116,114,117,101,96,32,105,102,32,116,104,101,32,103,105,118,101,110,32,111,98,106,101,99,116,32,104,97,115,32,101,113,117,105,118,97,108,101,110,116,92,110,32,32,32,32,32,42,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,84,104,101,32,99,114,101,97,116,101,100,32,102,117,110,99,116,105,111,110,32,105,115,32,101,113,117,105,118,97,108,101,110,116,32,116,111,32,96,95,46,105,115,77,97,116,99,104,96,32,119,105,116,104,32,96,115,111,117,114,99,101,96,92,110,32,32,32,32,32,42,32,112,97,114,116,105,97,108,108,121,32,97,112,112,108,105,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,80,97,114,116,105,97,108,32,99,111,109,112,97,114,105,115,111,110,115,32,119,105,108,108,32,109,97,116,99,104,32,101,109,112,116,121,32,97,114,114,97,121,32,97,110,100,32,101,109,112,116,121,32,111,98,106,101,99,116,32,96,115,111,117,114,99,101,96,92,110,32,32,32,32,32,42,32,118,97,108,117,101,115,32,97,103,97,105,110,115,116,32,97,110,121,32,97,114,114,97,121,32,111,114,32,111,98,106,101,99,116,32,118,97,108,117,101,44,32,114,101,115,112,101,99,116,105,118,101,108,121,46,32,83,101,101,32,96,95,46,105,115,69,113,117,97,108,96,92,110,32,32,32,32,32,42,32,102,111,114,32,97,32,108,105,115,116,32,111,102,32,115,117,112,112,111,114,116,101,100,32,118,97,108,117,101,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,77,117,108,116,105,112,108,101,32,118,97,108,117,101,115,32,99,97,110,32,98,101,32,99,104,101,99,107,101,100,32,98,121,32,99,111,109,98,105,110,105,110,103,32,115,101,118,101,114,97,108,32,109,97,116,99,104,101,114,115,92,110,32,32,32,32,32,42,32,117,115,105,110,103,32,96,95,46,111,118,101,114,83,111,109,101,96,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,32,116,111,32,109,97,116,99,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,115,112,101,99,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,44,32,39,99,39,58,32,51,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,97,39,58,32,52,44,32,39,98,39,58,32,53,44,32,39,99,39,58,32,54,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,105,108,116,101,114,40,111,98,106,101,99,116,115,44,32,95,46,109,97,116,99,104,101,115,40,123,32,39,97,39,58,32,52,44,32,39,99,39,58,32,54,32,125,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,97,39,58,32,52,44,32,39,98,39,58,32,53,44,32,39,99,39,58,32,54,32,125,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,67,104,101,99,107,105,110,103,32,102,111,114,32,115,101,118,101,114,97,108,32,112,111,115,115,105,98,108,101,32,118,97,108,117,101,115,92,110,32,32,32,32,32,42,32,95,46,102,105,108,116,101,114,40,111,98,106,101,99,116,115,44,32,95,46,111,118,101,114,83,111,109,101,40,91,95,46,109,97,116,99,104,101,115,40,123,32,39,97,39,58,32,49,32,125,41,44,32,95,46,109,97,116,99,104,101,115,40,123,32,39,97,39,58,32,52,32,125,41,93,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,44,32,39,99,39,58,32,51,32,125,44,32,123,32,39,97,39,58,32,52,44,32,39,98,39,58,32,53,44,32,39,99,39,58,32,54,32,125,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,116,99,104,101,115,40,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,77,97,116,99,104,101,115,40,98,97,115,101,67,108,111,110,101,40,115,111,117,114,99,101,44,32,67,76,79,78,69,95,68,69,69,80,95,70,76,65,71,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,112,101,114,102,111,114,109,115,32,97,32,112,97,114,116,105,97,108,32,100,101,101,112,32,99,111,109,112,97,114,105,115,111,110,32,98,101,116,119,101,101,110,32,116,104,101,92,110,32,32,32,32,32,42,32,118,97,108,117,101,32,97,116,32,96,112,97,116,104,96,32,111,102,32,97,32,103,105,118,101,110,32,111,98,106,101,99,116,32,116,111,32,96,115,114,99,86,97,108,117,101,96,44,32,114,101,116,117,114,110,105,110,103,32,96,116,114,117,101,96,32,105,102,32,116,104,101,92,110,32,32,32,32,32,42,32,111,98,106,101,99,116,32,118,97,108,117,101,32,105,115,32,101,113,117,105,118,97,108,101,110,116,44,32,101,108,115,101,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,80,97,114,116,105,97,108,32,99,111,109,112,97,114,105,115,111,110,115,32,119,105,108,108,32,109,97,116,99,104,32,101,109,112,116,121,32,97,114,114,97,121,32,97,110,100,32,101,109,112,116,121,32,111,98,106,101,99,116,92,110,32,32,32,32,32,42,32,96,115,114,99,86,97,108,117,101,96,32,118,97,108,117,101,115,32,97,103,97,105,110,115,116,32,97,110,121,32,97,114,114,97,121,32,111,114,32,111,98,106,101,99,116,32,118,97,108,117,101,44,32,114,101,115,112,101,99,116,105,118,101,108,121,46,32,83,101,101,92,110,32,32,32,32,32,42,32,96,95,46,105,115,69,113,117,97,108,96,32,102,111,114,32,97,32,108,105,115,116,32,111,102,32,115,117,112,112,111,114,116,101,100,32,118,97,108,117,101,32,99,111,109,112,97,114,105,115,111,110,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,77,117,108,116,105,112,108,101,32,118,97,108,117,101,115,32,99,97,110,32,98,101,32,99,104,101,99,107,101,100,32,98,121,32,99,111,109,98,105,110,105,110,103,32,115,101,118,101,114,97,108,32,109,97,116,99,104,101,114,115,92,110,32,32,32,32,32,42,32,117,115,105,110,103,32,96,95,46,111,118,101,114,83,111,109,101,96,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,50,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,103,101,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,115,114,99,86,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,109,97,116,99,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,115,112,101,99,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,44,32,39,99,39,58,32,51,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,97,39,58,32,52,44,32,39,98,39,58,32,53,44,32,39,99,39,58,32,54,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,105,110,100,40,111,98,106,101,99,116,115,44,32,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,40,39,97,39,44,32,52,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,97,39,58,32,52,44,32,39,98,39,58,32,53,44,32,39,99,39,58,32,54,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,67,104,101,99,107,105,110,103,32,102,111,114,32,115,101,118,101,114,97,108,32,112,111,115,115,105,98,108,101,32,118,97,108,117,101,115,92,110,32,32,32,32,32,42,32,95,46,102,105,108,116,101,114,40,111,98,106,101,99,116,115,44,32,95,46,111,118,101,114,83,111,109,101,40,91,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,40,39,97,39,44,32,49,41,44,32,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,40,39,97,39,44,32,52,41,93,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,32,39,97,39,58,32,49,44,32,39,98,39,58,32,50,44,32,39,99,39,58,32,51,32,125,44,32,123,32,39,97,39,58,32,52,44,32,39,98,39,58,32,53,44,32,39,99,39,58,32,54,32,125,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,40,112,97,116,104,44,32,115,114,99,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,77,97,116,99,104,101,115,80,114,111,112,101,114,116,121,40,112,97,116,104,44,32,98,97,115,101,67,108,111,110,101,40,115,114,99,86,97,108,117,101,44,32,67,76,79,78,69,95,68,69,69,80,95,70,76,65,71,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,32,116,104,101,32,109,101,116,104,111,100,32,97,116,32,96,112,97,116,104,96,32,111,102,32,97,32,103,105,118,101,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,65,110,121,32,97,100,100,105,116,105,111,110,97,108,32,97,114,103,117,109,101,110,116,115,32,97,114,101,32,112,114,111,118,105,100,101,100,32,116,111,32,116,104,101,32,105,110,118,111,107,101,100,32,109,101,116,104,111,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,55,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,109,101,116,104,111,100,32,116,111,32,105,110,118,111,107,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,42,125,32,91,97,114,103,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,105,110,118,111,107,101,32,116,104,101,32,109,101,116,104,111,100,32,119,105,116,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,105,110,118,111,107,101,114,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,97,39,58,32,123,32,39,98,39,58,32,95,46,99,111,110,115,116,97,110,116,40,50,41,32,125,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,97,39,58,32,123,32,39,98,39,58,32,95,46,99,111,110,115,116,97,110,116,40,49,41,32,125,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,111,98,106,101,99,116,115,44,32,95,46,109,101,116,104,111,100,40,39,97,46,98,39,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,49,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,111,98,106,101,99,116,115,44,32,95,46,109,101,116,104,111,100,40,91,39,97,39,44,32,39,98,39,93,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,49,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,109,101,116,104,111,100,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,112,97,116,104,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,73,110,118,111,107,101,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,111,112,112,111,115,105,116,101,32,111,102,32,96,95,46,109,101,116,104,111,100,96,59,32,116,104,105,115,32,109,101,116,104,111,100,32,99,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,92,110,32,32,32,32,32,42,32,116,104,101,32,109,101,116,104,111,100,32,97,116,32,97,32,103,105,118,101,110,32,112,97,116,104,32,111,102,32,96,111,98,106,101,99,116,96,46,32,65,110,121,32,97,100,100,105,116,105,111,110,97,108,32,97,114,103,117,109,101,110,116,115,32,97,114,101,92,110,32,32,32,32,32,42,32,112,114,111,118,105,100,101,100,32,116,111,32,116,104,101,32,105,110,118,111,107,101,100,32,109,101,116,104,111,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,55,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,42,125,32,91,97,114,103,115,93,32,84,104,101,32,97,114,103,117,109,101,110,116,115,32,116,111,32,105,110,118,111,107,101,32,116,104,101,32,109,101,116,104,111,100,32,119,105,116,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,105,110,118,111,107,101,114,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,95,46,116,105,109,101,115,40,51,44,32,95,46,99,111,110,115,116,97,110,116,41,44,92,110,32,32,32,32,32,42,32,32,32,32,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,97,114,114,97,121,44,32,39,98,39,58,32,97,114,114,97,121,44,32,39,99,39,58,32,97,114,114,97,121,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,91,39,97,91,50,93,39,44,32,39,99,91,48,93,39,93,44,32,95,46,109,101,116,104,111,100,79,102,40,111,98,106,101,99,116,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,48,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,91,91,39,97,39,44,32,39,50,39,93,44,32,91,39,99,39,44,32,39,48,39,93,93,44,32,95,46,109,101,116,104,111,100,79,102,40,111,98,106,101,99,116,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,48,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,109,101,116,104,111,100,79,102,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,111,98,106,101,99,116,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,73,110,118,111,107,101,40,111,98,106,101,99,116,44,32,112,97,116,104,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,100,100,115,32,97,108,108,32,111,119,110,32,101,110,117,109,101,114,97,98,108,101,32,115,116,114,105,110,103,32,107,101,121,101,100,32,102,117,110,99,116,105,111,110,32,112,114,111,112,101,114,116,105,101,115,32,111,102,32,97,32,115,111,117,114,99,101,92,110,32,32,32,32,32,42,32,111,98,106,101,99,116,32,116,111,32,116,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,32,73,102,32,96,111,98,106,101,99,116,96,32,105,115,32,97,32,102,117,110,99,116,105,111,110,44,32,116,104,101,110,32,109,101,116,104,111,100,115,92,110,32,32,32,32,32,42,32,97,114,101,32,97,100,100,101,100,32,116,111,32,105,116,115,32,112,114,111,116,111,116,121,112,101,32,97,115,32,119,101,108,108,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,85,115,101,32,96,95,46,114,117,110,73,110,67,111,110,116,101,120,116,96,32,116,111,32,99,114,101,97,116,101,32,97,32,112,114,105,115,116,105,110,101,32,96,108,111,100,97,115,104,96,32,102,117,110,99,116,105,111,110,32,116,111,92,110,32,32,32,32,32,42,32,97,118,111,105,100,32,99,111,110,102,108,105,99,116,115,32,99,97,117,115,101,100,32,98,121,32,109,111,100,105,102,121,105,110,103,32,116,104,101,32,111,114,105,103,105,110,97,108,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,124,79,98,106,101,99,116,125,32,91,111,98,106,101,99,116,61,108,111,100,97,115,104,93,32,84,104,101,32,100,101,115,116,105,110,97,116,105,111,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,111,117,114,99,101,32,84,104,101,32,111,98,106,101,99,116,32,111,102,32,102,117,110,99,116,105,111,110,115,32,116,111,32,97,100,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,91,111,112,116,105,111,110,115,61,123,125,93,32,84,104,101,32,111,112,116,105,111,110,115,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,98,111,111,108,101,97,110,125,32,91,111,112,116,105,111,110,115,46,99,104,97,105,110,61,116,114,117,101,93,32,83,112,101,99,105,102,121,32,119,104,101,116,104,101,114,32,109,105,120,105,110,115,32,97,114,101,32,99,104,97,105,110,97,98,108,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,124,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,116,105,111,110,32,118,111,119,101,108,115,40,115,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,42,32,32,32,114,101,116,117,114,110,32,95,46,102,105,108,116,101,114,40,115,116,114,105,110,103,44,32,102,117,110,99,116,105,111,110,40,118,41,32,123,92,110,32,32,32,32,32,42,32,32,32,32,32,114,101,116,117,114,110,32,47,91,97,101,105,111,117,93,47,105,46,116,101,115,116,40,118,41,59,92,110,32,32,32,32,32,42,32,32,32,125,41,59,92,110,32,32,32,32,32,42,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,105,120,105,110,40,123,32,39,118,111,119,101,108,115,39,58,32,118,111,119,101,108,115,32,125,41,59,92,110,32,32,32,32,32,42,32,95,46,118,111,119,101,108,115,40,39,102,114,101,100,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,101,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,40,39,102,114,101,100,39,41,46,118,111,119,101,108,115,40,41,46,118,97,108,117,101,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,101,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,105,120,105,110,40,123,32,39,118,111,119,101,108,115,39,58,32,118,111,119,101,108,115,32,125,44,32,123,32,39,99,104,97,105,110,39,58,32,102,97,108,115,101,32,125,41,59,92,110,32,32,32,32,32,42,32,95,40,39,102,114,101,100,39,41,46,118,111,119,101,108,115,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,101,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,105,120,105,110,40,111,98,106,101,99,116,44,32,115,111,117,114,99,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,107,101,121,115,40,115,111,117,114,99,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,109,101,116,104,111,100,78,97,109,101,115,32,61,32,98,97,115,101,70,117,110,99,116,105,111,110,115,40,115,111,117,114,99,101,44,32,112,114,111,112,115,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,61,32,110,117,108,108,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,33,40,105,115,79,98,106,101,99,116,40,115,111,117,114,99,101,41,32,38,38,32,40,109,101,116,104,111,100,78,97,109,101,115,46,108,101,110,103,116,104,32,124,124,32,33,112,114,111,112,115,46,108,101,110,103,116,104,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,115,111,117,114,99,101,59,92,110,32,32,32,32,32,32,32,32,115,111,117,114,99,101,32,61,32,111,98,106,101,99,116,59,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,109,101,116,104,111,100,78,97,109,101,115,32,61,32,98,97,115,101,70,117,110,99,116,105,111,110,115,40,115,111,117,114,99,101,44,32,107,101,121,115,40,115,111,117,114,99,101,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,99,104,97,105,110,32,61,32,33,40,105,115,79,98,106,101,99,116,40,111,112,116,105,111,110,115,41,32,38,38,32,39,99,104,97,105,110,39,32,105,110,32,111,112,116,105,111,110,115,41,32,124,124,32,33,33,111,112,116,105,111,110,115,46,99,104,97,105,110,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,70,117,110,99,32,61,32,105,115,70,117,110,99,116,105,111,110,40,111,98,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,97,114,114,97,121,69,97,99,104,40,109,101,116,104,111,100,78,97,109,101,115,44,32,102,117,110,99,116,105,111,110,40,109,101,116,104,111,100,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,115,111,117,114,99,101,91,109,101,116,104,111,100,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,91,109,101,116,104,111,100,78,97,109,101,93,32,61,32,102,117,110,99,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,70,117,110,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,111,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,91,109,101,116,104,111,100,78,97,109,101,93,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,97,105,110,65,108,108,32,61,32,116,104,105,115,46,95,95,99,104,97,105,110,95,95,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,104,97,105,110,32,124,124,32,99,104,97,105,110,65,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,111,98,106,101,99,116,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,99,116,105,111,110,115,32,61,32,114,101,115,117,108,116,46,95,95,97,99,116,105,111,110,115,95,95,32,61,32,99,111,112,121,65,114,114,97,121,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,99,116,105,111,110,115,46,112,117,115,104,40,123,32,39,102,117,110,99,39,58,32,102,117,110,99,44,32,39,97,114,103,115,39,58,32,97,114,103,117,109,101,110,116,115,44,32,39,116,104,105,115,65,114,103,39,58,32,111,98,106,101,99,116,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,99,104,97,105,110,95,95,32,61,32,99,104,97,105,110,65,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,46,97,112,112,108,121,40,111,98,106,101,99,116,44,32,97,114,114,97,121,80,117,115,104,40,91,116,104,105,115,46,118,97,108,117,101,40,41,93,44,32,97,114,103,117,109,101,110,116,115,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,82,101,118,101,114,116,115,32,116,104,101,32,96,95,96,32,118,97,114,105,97,98,108,101,32,116,111,32,105,116,115,32,112,114,101,118,105,111,117,115,32,118,97,108,117,101,32,97,110,100,32,114,101,116,117,114,110,115,32,97,32,114,101,102,101,114,101,110,99,101,32,116,111,92,110,32,32,32,32,32,42,32,116,104,101,32,96,108,111,100,97,115,104,96,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,96,108,111,100,97,115,104,96,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,108,111,100,97,115,104,32,61,32,95,46,110,111,67,111,110,102,108,105,99,116,40,41,59,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,110,111,67,111,110,102,108,105,99,116,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,114,111,111,116,46,95,32,61,61,61,32,116,104,105,115,41,32,123,92,110,32,32,32,32,32,32,32,32,114,111,111,116,46,95,32,61,32,111,108,100,68,97,115,104,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,96,117,110,100,101,102,105,110,101,100,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,105,109,101,115,40,50,44,32,95,46,110,111,111,112,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,110,111,111,112,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,78,111,32,111,112,101,114,97,116,105,111,110,32,112,101,114,102,111,114,109,101,100,46,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,103,101,116,115,32,116,104,101,32,97,114,103,117,109,101,110,116,32,97,116,32,105,110,100,101,120,32,96,110,96,46,32,73,102,32,96,110,96,32,105,115,32,110,101,103,97,116,105,118,101,44,92,110,32,32,32,32,32,42,32,116,104,101,32,110,116,104,32,97,114,103,117,109,101,110,116,32,102,114,111,109,32,116,104,101,32,101,110,100,32,105,115,32,114,101,116,117,114,110,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,110,61,48,93,32,84,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,97,114,103,117,109,101,110,116,32,116,111,32,114,101,116,117,114,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,112,97,115,115,45,116,104,114,117,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,102,117,110,99,32,61,32,95,46,110,116,104,65,114,103,40,49,41,59,92,110,32,32,32,32,32,42,32,102,117,110,99,40,39,97,39,44,32,39,98,39,44,32,39,99,39,44,32,39,100,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,98,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,102,117,110,99,32,61,32,95,46,110,116,104,65,114,103,40,45,50,41,59,92,110,32,32,32,32,32,42,32,102,117,110,99,40,39,97,39,44,32,39,98,39,44,32,39,99,39,44,32,39,100,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,99,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,110,116,104,65,114,103,40,110,41,32,123,92,110,32,32,32,32,32,32,110,32,61,32,116,111,73,110,116,101,103,101,114,40,110,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,78,116,104,40,97,114,103,115,44,32,110,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,105,110,118,111,107,101,115,32,96,105,116,101,114,97,116,101,101,115,96,32,119,105,116,104,32,116,104,101,32,97,114,103,117,109,101,110,116,115,32,105,116,32,114,101,99,101,105,118,101,115,92,110,32,32,32,32,32,42,32,97,110,100,32,114,101,116,117,114,110,115,32,116,104,101,105,114,32,114,101,115,117,108,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,40,70,117,110,99,116,105,111,110,124,70,117,110,99,116,105,111,110,91,93,41,125,32,91,105,116,101,114,97,116,101,101,115,61,91,95,46,105,100,101,110,116,105,116,121,93,93,92,110,32,32,32,32,32,42,32,32,84,104,101,32,105,116,101,114,97,116,101,101,115,32,116,111,32,105,110,118,111,107,101,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,102,117,110,99,32,61,32,95,46,111,118,101,114,40,91,77,97,116,104,46,109,97,120,44,32,77,97,116,104,46,109,105,110,93,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,40,49,44,32,50,44,32,51,44,32,52,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,52,44,32,49,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,111,118,101,114,32,61,32,99,114,101,97,116,101,79,118,101,114,40,97,114,114,97,121,77,97,112,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,99,104,101,99,107,115,32,105,102,32,42,42,97,108,108,42,42,32,111,102,32,116,104,101,32,96,112,114,101,100,105,99,97,116,101,115,96,32,114,101,116,117,114,110,92,110,32,32,32,32,32,42,32,116,114,117,116,104,121,32,119,104,101,110,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,101,32,97,114,103,117,109,101,110,116,115,32,105,116,32,114,101,99,101,105,118,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,108,108,111,119,105,110,103,32,115,104,111,114,116,104,97,110,100,115,32,97,114,101,32,112,111,115,115,105,98,108,101,32,102,111,114,32,112,114,111,118,105,100,105,110,103,32,112,114,101,100,105,99,97,116,101,115,46,92,110,32,32,32,32,32,42,32,80,97,115,115,32,97,110,32,96,79,98,106,101,99,116,96,32,97,110,100,32,105,116,32,119,105,108,108,32,98,101,32,117,115,101,100,32,97,115,32,97,110,32,112,97,114,97,109,101,116,101,114,32,102,111,114,32,96,95,46,109,97,116,99,104,101,115,96,32,116,111,32,99,114,101,97,116,101,32,116,104,101,32,112,114,101,100,105,99,97,116,101,46,92,110,32,32,32,32,32,42,32,80,97,115,115,32,97,110,32,96,65,114,114,97,121,96,32,111,102,32,112,97,114,97,109,101,116,101,114,115,32,102,111,114,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,97,110,100,32,116,104,101,32,112,114,101,100,105,99,97,116,101,32,119,105,108,108,32,98,101,32,99,114,101,97,116,101,100,32,117,115,105,110,103,32,116,104,101,109,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,40,70,117,110,99,116,105,111,110,124,70,117,110,99,116,105,111,110,91,93,41,125,32,91,112,114,101,100,105,99,97,116,101,115,61,91,95,46,105,100,101,110,116,105,116,121,93,93,92,110,32,32,32,32,32,42,32,32,84,104,101,32,112,114,101,100,105,99,97,116,101,115,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,102,117,110,99,32,61,32,95,46,111,118,101,114,69,118,101,114,121,40,91,66,111,111,108,101,97,110,44,32,105,115,70,105,110,105,116,101,93,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,40,39,49,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,40,110,117,108,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,40,78,97,78,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,111,118,101,114,69,118,101,114,121,32,61,32,99,114,101,97,116,101,79,118,101,114,40,97,114,114,97,121,69,118,101,114,121,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,99,104,101,99,107,115,32,105,102,32,42,42,97,110,121,42,42,32,111,102,32,116,104,101,32,96,112,114,101,100,105,99,97,116,101,115,96,32,114,101,116,117,114,110,92,110,32,32,32,32,32,42,32,116,114,117,116,104,121,32,119,104,101,110,32,105,110,118,111,107,101,100,32,119,105,116,104,32,116,104,101,32,97,114,103,117,109,101,110,116,115,32,105,116,32,114,101,99,101,105,118,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,70,111,108,108,111,119,105,110,103,32,115,104,111,114,116,104,97,110,100,115,32,97,114,101,32,112,111,115,115,105,98,108,101,32,102,111,114,32,112,114,111,118,105,100,105,110,103,32,112,114,101,100,105,99,97,116,101,115,46,92,110,32,32,32,32,32,42,32,80,97,115,115,32,97,110,32,96,79,98,106,101,99,116,96,32,97,110,100,32,105,116,32,119,105,108,108,32,98,101,32,117,115,101,100,32,97,115,32,97,110,32,112,97,114,97,109,101,116,101,114,32,102,111,114,32,96,95,46,109,97,116,99,104,101,115,96,32,116,111,32,99,114,101,97,116,101,32,116,104,101,32,112,114,101,100,105,99,97,116,101,46,92,110,32,32,32,32,32,42,32,80,97,115,115,32,97,110,32,96,65,114,114,97,121,96,32,111,102,32,112,97,114,97,109,101,116,101,114,115,32,102,111,114,32,96,95,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,96,32,97,110,100,32,116,104,101,32,112,114,101,100,105,99,97,116,101,32,119,105,108,108,32,98,101,32,99,114,101,97,116,101,100,32,117,115,105,110,103,32,116,104,101,109,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,46,46,46,40,70,117,110,99,116,105,111,110,124,70,117,110,99,116,105,111,110,91,93,41,125,32,91,112,114,101,100,105,99,97,116,101,115,61,91,95,46,105,100,101,110,116,105,116,121,93,93,92,110,32,32,32,32,32,42,32,32,84,104,101,32,112,114,101,100,105,99,97,116,101,115,32,116,111,32,99,104,101,99,107,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,102,117,110,99,32,61,32,95,46,111,118,101,114,83,111,109,101,40,91,66,111,111,108,101,97,110,44,32,105,115,70,105,110,105,116,101,93,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,40,39,49,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,40,110,117,108,108,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,116,114,117,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,102,117,110,99,40,78,97,78,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,109,97,116,99,104,101,115,70,117,110,99,32,61,32,95,46,111,118,101,114,83,111,109,101,40,91,123,32,39,97,39,58,32,49,32,125,44,32,123,32,39,97,39,58,32,50,32,125,93,41,92,110,32,32,32,32,32,42,32,118,97,114,32,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,70,117,110,99,32,61,32,95,46,111,118,101,114,83,111,109,101,40,91,91,39,97,39,44,32,49,93,44,32,91,39,97,39,44,32,50,93,93,41,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,111,118,101,114,83,111,109,101,32,61,32,99,114,101,97,116,101,79,118,101,114,40,97,114,114,97,121,83,111,109,101,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,114,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,97,116,32,96,112,97,116,104,96,32,111,102,32,97,32,103,105,118,101,110,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,50,46,52,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,115,116,114,105,110,103,125,32,112,97,116,104,32,84,104,101,32,112,97,116,104,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,116,111,32,103,101,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,99,99,101,115,115,111,114,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,92,110,32,32,32,32,32,42,32,32,32,123,32,39,97,39,58,32,123,32,39,98,39,58,32,50,32,125,32,125,44,92,110,32,32,32,32,32,42,32,32,32,123,32,39,97,39,58,32,123,32,39,98,39,58,32,49,32,125,32,125,92,110,32,32,32,32,32,42,32,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,111,98,106,101,99,116,115,44,32,95,46,112,114,111,112,101,114,116,121,40,39,97,46,98,39,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,49,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,95,46,115,111,114,116,66,121,40,111,98,106,101,99,116,115,44,32,95,46,112,114,111,112,101,114,116,121,40,91,39,97,39,44,32,39,98,39,93,41,41,44,32,39,97,46,98,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,114,111,112,101,114,116,121,40,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,75,101,121,40,112,97,116,104,41,32,63,32,98,97,115,101,80,114,111,112,101,114,116,121,40,116,111,75,101,121,40,112,97,116,104,41,41,32,58,32,98,97,115,101,80,114,111,112,101,114,116,121,68,101,101,112,40,112,97,116,104,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,111,112,112,111,115,105,116,101,32,111,102,32,96,95,46,112,114,111,112,101,114,116,121,96,59,32,116,104,105,115,32,109,101,116,104,111,100,32,99,114,101,97,116,101,115,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,114,101,116,117,114,110,115,92,110,32,32,32,32,32,42,32,116,104,101,32,118,97,108,117,101,32,97,116,32,97,32,103,105,118,101,110,32,112,97,116,104,32,111,102,32,96,111,98,106,101,99,116,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,84,104,101,32,111,98,106,101,99,116,32,116,111,32,113,117,101,114,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,97,99,99,101,115,115,111,114,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,32,61,32,91,48,44,32,49,44,32,50,93,44,92,110,32,32,32,32,32,42,32,32,32,32,32,111,98,106,101,99,116,32,61,32,123,32,39,97,39,58,32,97,114,114,97,121,44,32,39,98,39,58,32,97,114,114,97,121,44,32,39,99,39,58,32,97,114,114,97,121,32,125,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,91,39,97,91,50,93,39,44,32,39,99,91,48,93,39,93,44,32,95,46,112,114,111,112,101,114,116,121,79,102,40,111,98,106,101,99,116,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,48,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,112,40,91,91,39,97,39,44,32,39,50,39,93,44,32,91,39,99,39,44,32,39,48,39,93,93,44,32,95,46,112,114,111,112,101,114,116,121,79,102,40,111,98,106,101,99,116,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,50,44,32,48,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,114,111,112,101,114,116,121,79,102,40,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,101,99,116,32,61,61,32,110,117,108,108,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,98,97,115,101,71,101,116,40,111,98,106,101,99,116,44,32,112,97,116,104,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,114,101,97,116,101,115,32,97,110,32,97,114,114,97,121,32,111,102,32,110,117,109,98,101,114,115,32,40,112,111,115,105,116,105,118,101,32,97,110,100,47,111,114,32,110,101,103,97,116,105,118,101,41,32,112,114,111,103,114,101,115,115,105,110,103,32,102,114,111,109,92,110,32,32,32,32,32,42,32,96,115,116,97,114,116,96,32,117,112,32,116,111,44,32,98,117,116,32,110,111,116,32,105,110,99,108,117,100,105,110,103,44,32,96,101,110,100,96,46,32,65,32,115,116,101,112,32,111,102,32,96,45,49,96,32,105,115,32,117,115,101,100,32,105,102,32,97,32,110,101,103,97,116,105,118,101,92,110,32,32,32,32,32,42,32,96,115,116,97,114,116,96,32,105,115,32,115,112,101,99,105,102,105,101,100,32,119,105,116,104,111,117,116,32,97,110,32,96,101,110,100,96,32,111,114,32,96,115,116,101,112,96,46,32,73,102,32,96,101,110,100,96,32,105,115,32,110,111,116,32,115,112,101,99,105,102,105,101,100,44,92,110,32,32,32,32,32,42,32,105,116,39,115,32,115,101,116,32,116,111,32,96,115,116,97,114,116,96,32,119,105,116,104,32,96,115,116,97,114,116,96,32,116,104,101,110,32,115,101,116,32,116,111,32,96,48,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,78,111,116,101,58,42,42,32,74,97,118,97,83,99,114,105,112,116,32,102,111,108,108,111,119,115,32,116,104,101,32,73,69,69,69,45,55,53,52,32,115,116,97,110,100,97,114,100,32,102,111,114,32,114,101,115,111,108,118,105,110,103,92,110,32,32,32,32,32,42,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,118,97,108,117,101,115,32,119,104,105,99,104,32,99,97,110,32,112,114,111,100,117,99,101,32,117,110,101,120,112,101,99,116,101,100,32,114,101,115,117,108,116,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,115,116,97,114,116,61,48,93,32,84,104,101,32,115,116,97,114,116,32,111,102,32,116,104,101,32,114,97,110,103,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,101,110,100,32,84,104,101,32,101,110,100,32,111,102,32,116,104,101,32,114,97,110,103,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,115,116,101,112,61,49,93,32,84,104,101,32,118,97,108,117,101,32,116,111,32,105,110,99,114,101,109,101,110,116,32,111,114,32,100,101,99,114,101,109,101,110,116,32,98,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,97,110,103,101,32,111,102,32,110,117,109,98,101,114,115,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,105,110,82,97,110,103,101,44,32,95,46,114,97,110,103,101,82,105,103,104,116,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,103,101,40,52,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,48,44,32,49,44,32,50,44,32,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,103,101,40,45,52,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,48,44,32,45,49,44,32,45,50,44,32,45,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,103,101,40,49,44,32,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,50,44,32,51,44,32,52,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,103,101,40,48,44,32,50,48,44,32,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,48,44,32,53,44,32,49,48,44,32,49,53,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,103,101,40,48,44,32,45,52,44,32,45,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,48,44,32,45,49,44,32,45,50,44,32,45,51,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,103,101,40,49,44,32,52,44,32,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,49,44,32,49,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,103,101,40,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,114,97,110,103,101,32,61,32,99,114,101,97,116,101,82,97,110,103,101,40,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,114,97,110,103,101,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,112,111,112,117,108,97,116,101,115,32,118,97,108,117,101,115,32,105,110,92,110,32,32,32,32,32,42,32,100,101,115,99,101,110,100,105,110,103,32,111,114,100,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,115,116,97,114,116,61,48,93,32,84,104,101,32,115,116,97,114,116,32,111,102,32,116,104,101,32,114,97,110,103,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,101,110,100,32,84,104,101,32,101,110,100,32,111,102,32,116,104,101,32,114,97,110,103,101,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,115,116,101,112,61,49,93,32,84,104,101,32,118,97,108,117,101,32,116,111,32,105,110,99,114,101,109,101,110,116,32,111,114,32,100,101,99,114,101,109,101,110,116,32,98,121,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,97,110,103,101,32,111,102,32,110,117,109,98,101,114,115,46,92,110,32,32,32,32,32,42,32,64,115,101,101,32,95,46,105,110,82,97,110,103,101,44,32,95,46,114,97,110,103,101,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,103,101,82,105,103,104,116,40,52,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,51,44,32,50,44,32,49,44,32,48,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,103,101,82,105,103,104,116,40,45,52,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,45,51,44,32,45,50,44,32,45,49,44,32,48,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,103,101,82,105,103,104,116,40,49,44,32,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,52,44,32,51,44,32,50,44,32,49,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,103,101,82,105,103,104,116,40,48,44,32,50,48,44,32,53,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,53,44,32,49,48,44,32,53,44,32,48,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,103,101,82,105,103,104,116,40,48,44,32,45,52,44,32,45,49,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,45,51,44,32,45,50,44,32,45,49,44,32,48,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,103,101,82,105,103,104,116,40,49,44,32,52,44,32,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,49,44,32,49,44,32,49,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,97,110,103,101,82,105,103,104,116,40,48,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,114,97,110,103,101,82,105,103,104,116,32,61,32,99,114,101,97,116,101,82,97,110,103,101,40,116,114,117,101,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,97,32,110,101,119,32,101,109,112,116,121,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,49,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,101,109,112,116,121,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,97,114,114,97,121,115,32,61,32,95,46,116,105,109,101,115,40,50,44,32,95,46,115,116,117,98,65,114,114,97,121,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,97,114,114,97,121,115,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,91,93,44,32,91,93,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,97,114,114,97,121,115,91,48,93,32,61,61,61,32,97,114,114,97,121,115,91,49,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,116,117,98,65,114,114,97,121,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,49,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,102,97,108,115,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,105,109,101,115,40,50,44,32,95,46,115,116,117,98,70,97,108,115,101,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,102,97,108,115,101,44,32,102,97,108,115,101,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,116,117,98,70,97,108,115,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,97,32,110,101,119,32,101,109,112,116,121,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,49,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,101,109,112,116,121,32,111,98,106,101,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,95,46,116,105,109,101,115,40,50,44,32,95,46,115,116,117,98,79,98,106,101,99,116,41,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,111,98,106,101,99,116,115,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,123,125,44,32,123,125,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,99,111,110,115,111,108,101,46,108,111,103,40,111,98,106,101,99,116,115,91,48,93,32,61,61,61,32,111,98,106,101,99,116,115,91,49,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,102,97,108,115,101,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,116,117,98,79,98,106,101,99,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,97,110,32,101,109,112,116,121,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,49,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,101,109,112,116,121,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,105,109,101,115,40,50,44,32,95,46,115,116,117,98,83,116,114,105,110,103,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,39,44,32,39,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,116,117,98,83,116,114,105,110,103,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,39,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,114,101,116,117,114,110,115,32,96,116,114,117,101,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,49,51,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,98,111,111,108,101,97,110,125,32,82,101,116,117,114,110,115,32,96,116,114,117,101,96,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,105,109,101,115,40,50,44,32,95,46,115,116,117,98,84,114,117,101,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,116,114,117,101,44,32,116,114,117,101,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,116,117,98,84,114,117,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,73,110,118,111,107,101,115,32,116,104,101,32,105,116,101,114,97,116,101,101,32,96,110,96,32,116,105,109,101,115,44,32,114,101,116,117,114,110,105,110,103,32,97,110,32,97,114,114,97,121,32,111,102,32,116,104,101,32,114,101,115,117,108,116,115,32,111,102,92,110,32,32,32,32,32,42,32,101,97,99,104,32,105,110,118,111,99,97,116,105,111,110,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,59,32,40,105,110,100,101,120,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,110,32,84,104,101,32,110,117,109,98,101,114,32,111,102,32,116,105,109,101,115,32,116,111,32,105,110,118,111,107,101,32,96,105,116,101,114,97,116,101,101,96,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,100,32,112,101,114,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,97,114,114,97,121,32,111,102,32,114,101,115,117,108,116,115,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,105,109,101,115,40,51,44,32,83,116,114,105,110,103,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,48,39,44,32,39,49,39,44,32,39,50,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,32,95,46,116,105,109,101,115,40,52,44,32,95,46,99,111,110,115,116,97,110,116,40,48,41,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,48,44,32,48,44,32,48,44,32,48,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,105,109,101,115,40,110,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,110,32,61,32,116,111,73,110,116,101,103,101,114,40,110,41,59,92,110,32,32,32,32,32,32,105,102,32,40,110,32,60,32,49,32,124,124,32,110,32,62,32,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,77,65,88,95,65,82,82,65,89,95,76,69,78,71,84,72,44,92,110,32,32,32,32,32,32,32,32,32,32,108,101,110,103,116,104,32,61,32,110,97,116,105,118,101,77,105,110,40,110,44,32,77,65,88,95,65,82,82,65,89,95,76,69,78,71,84,72,41,59,92,110,92,110,32,32,32,32,32,32,105,116,101,114,97,116,101,101,32,61,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,41,59,92,110,32,32,32,32,32,32,110,32,45,61,32,77,65,88,95,65,82,82,65,89,95,76,69,78,71,84,72,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,98,97,115,101,84,105,109,101,115,40,108,101,110,103,116,104,44,32,105,116,101,114,97,116,101,101,41,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,110,100,101,120,32,60,32,110,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,114,97,116,101,101,40,105,110,100,101,120,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,110,118,101,114,116,115,32,96,118,97,108,117,101,96,32,116,111,32,97,32,112,114,111,112,101,114,116,121,32,112,97,116,104,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,99,111,110,118,101,114,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,112,114,111,112,101,114,116,121,32,112,97,116,104,32,97,114,114,97,121,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,80,97,116,104,40,39,97,46,98,46,99,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,97,39,44,32,39,98,39,44,32,39,99,39,93,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,116,111,80,97,116,104,40,39,97,91,48,93,46,98,46,99,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,91,39,97,39,44,32,39,48,39,44,32,39,98,39,44,32,39,99,39,93,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,80,97,116,104,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,77,97,112,40,118,97,108,117,101,44,32,116,111,75,101,121,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,83,121,109,98,111,108,40,118,97,108,117,101,41,32,63,32,91,118,97,108,117,101,93,32,58,32,99,111,112,121,65,114,114,97,121,40,115,116,114,105,110,103,84,111,80,97,116,104,40,116,111,83,116,114,105,110,103,40,118,97,108,117,101,41,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,71,101,110,101,114,97,116,101,115,32,97,32,117,110,105,113,117,101,32,73,68,46,32,73,102,32,96,112,114,101,102,105,120,96,32,105,115,32,103,105,118,101,110,44,32,116,104,101,32,73,68,32,105,115,32,97,112,112,101,110,100,101,100,32,116,111,32,105,116,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,85,116,105,108,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,115,116,114,105,110,103,125,32,91,112,114,101,102,105,120,61,39,39,93,32,84,104,101,32,118,97,108,117,101,32,116,111,32,112,114,101,102,105,120,32,116,104,101,32,73,68,32,119,105,116,104,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,115,116,114,105,110,103,125,32,82,101,116,117,114,110,115,32,116,104,101,32,117,110,105,113,117,101,32,73,68,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,110,105,113,117,101,73,100,40,39,99,111,110,116,97,99,116,95,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,99,111,110,116,97,99,116,95,49,48,52,39,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,117,110,105,113,117,101,73,100,40,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,39,49,48,53,39,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,110,105,113,117,101,73,100,40,112,114,101,102,105,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,100,32,61,32,43,43,105,100,67,111,117,110,116,101,114,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,40,112,114,101,102,105,120,41,32,43,32,105,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,65,100,100,115,32,116,119,111,32,110,117,109,98,101,114,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,52,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,77,97,116,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,97,117,103,101,110,100,32,84,104,101,32,102,105,114,115,116,32,110,117,109,98,101,114,32,105,110,32,97,110,32,97,100,100,105,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,97,100,100,101,110,100,32,84,104,101,32,115,101,99,111,110,100,32,110,117,109,98,101,114,32,105,110,32,97,110,32,97,100,100,105,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,116,111,116,97,108,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,97,100,100,40,54,44,32,52,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,49,48,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,97,100,100,32,61,32,99,114,101,97,116,101,77,97,116,104,79,112,101,114,97,116,105,111,110,40,102,117,110,99,116,105,111,110,40,97,117,103,101,110,100,44,32,97,100,100,101,110,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,117,103,101,110,100,32,43,32,97,100,100,101,110,100,59,92,110,32,32,32,32,125,44,32,48,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,109,112,117,116,101,115,32,96,110,117,109,98,101,114,96,32,114,111,117,110,100,101,100,32,117,112,32,116,111,32,96,112,114,101,99,105,115,105,111,110,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,49,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,77,97,116,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,110,117,109,98,101,114,32,84,104,101,32,110,117,109,98,101,114,32,116,111,32,114,111,117,110,100,32,117,112,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,112,114,101,99,105,115,105,111,110,61,48,93,32,84,104,101,32,112,114,101,99,105,115,105,111,110,32,116,111,32,114,111,117,110,100,32,117,112,32,116,111,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,111,117,110,100,101,100,32,117,112,32,110,117,109,98,101,114,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,101,105,108,40,52,46,48,48,54,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,53,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,101,105,108,40,54,46,48,48,52,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,54,46,48,49,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,99,101,105,108,40,54,48,52,48,44,32,45,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,54,49,48,48,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,99,101,105,108,32,61,32,99,114,101,97,116,101,82,111,117,110,100,40,39,99,101,105,108,39,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,68,105,118,105,100,101,32,116,119,111,32,110,117,109,98,101,114,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,55,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,77,97,116,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,100,105,118,105,100,101,110,100,32,84,104,101,32,102,105,114,115,116,32,110,117,109,98,101,114,32,105,110,32,97,32,100,105,118,105,115,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,100,105,118,105,115,111,114,32,84,104,101,32,115,101,99,111,110,100,32,110,117,109,98,101,114,32,105,110,32,97,32,100,105,118,105,115,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,113,117,111,116,105,101,110,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,100,105,118,105,100,101,40,54,44,32,52,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,49,46,53,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,100,105,118,105,100,101,32,61,32,99,114,101,97,116,101,77,97,116,104,79,112,101,114,97,116,105,111,110,40,102,117,110,99,116,105,111,110,40,100,105,118,105,100,101,110,100,44,32,100,105,118,105,115,111,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,105,118,105,100,101,110,100,32,47,32,100,105,118,105,115,111,114,59,92,110,32,32,32,32,125,44,32,49,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,109,112,117,116,101,115,32,96,110,117,109,98,101,114,96,32,114,111,117,110,100,101,100,32,100,111,119,110,32,116,111,32,96,112,114,101,99,105,115,105,111,110,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,49,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,77,97,116,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,110,117,109,98,101,114,32,84,104,101,32,110,117,109,98,101,114,32,116,111,32,114,111,117,110,100,32,100,111,119,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,112,114,101,99,105,115,105,111,110,61,48,93,32,84,104,101,32,112,114,101,99,105,115,105,111,110,32,116,111,32,114,111,117,110,100,32,100,111,119,110,32,116,111,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,111,117,110,100,101,100,32,100,111,119,110,32,110,117,109,98,101,114,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,108,111,111,114,40,52,46,48,48,54,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,52,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,108,111,111,114,40,48,46,48,52,54,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,48,46,48,52,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,102,108,111,111,114,40,52,48,54,48,44,32,45,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,52,48,48,48,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,102,108,111,111,114,32,61,32,99,114,101,97,116,101,82,111,117,110,100,40,39,102,108,111,111,114,39,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,109,112,117,116,101,115,32,116,104,101,32,109,97,120,105,109,117,109,32,118,97,108,117,101,32,111,102,32,96,97,114,114,97,121,96,46,32,73,102,32,96,97,114,114,97,121,96,32,105,115,32,101,109,112,116,121,32,111,114,32,102,97,108,115,101,121,44,92,110,32,32,32,32,32,42,32,96,117,110,100,101,102,105,110,101,100,96,32,105,115,32,114,101,116,117,114,110,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,77,97,116,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,109,97,120,105,109,117,109,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,120,40,91,52,44,32,50,44,32,56,44,32,54,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,56,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,120,40,91,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,120,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,69,120,116,114,101,109,117,109,40,97,114,114,97,121,44,32,105,100,101,110,116,105,116,121,44,32,98,97,115,101,71,116,41,92,110,32,32,32,32,32,32,32,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,109,97,120,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,105,116,101,114,97,116,101,101,96,32,119,104,105,99,104,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,102,111,114,32,101,97,99,104,32,101,108,101,109,101,110,116,32,105,110,32,96,97,114,114,97,121,96,32,116,111,32,103,101,110,101,114,97,116,101,32,116,104,101,32,99,114,105,116,101,114,105,111,110,32,98,121,32,119,104,105,99,104,92,110,32,32,32,32,32,42,32,116,104,101,32,118,97,108,117,101,32,105,115,32,114,97,110,107,101,100,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,77,97,116,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,109,97,120,105,109,117,109,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,123,32,39,110,39,58,32,49,32,125,44,32,123,32,39,110,39,58,32,50,32,125,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,97,120,66,121,40,111,98,106,101,99,116,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,110,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,110,39,58,32,50,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,109,97,120,66,121,40,111,98,106,101,99,116,115,44,32,39,110,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,110,39,58,32,50,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,120,66,121,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,69,120,116,114,101,109,117,109,40,97,114,114,97,121,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,50,41,44,32,98,97,115,101,71,116,41,92,110,32,32,32,32,32,32,32,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,109,112,117,116,101,115,32,116,104,101,32,109,101,97,110,32,111,102,32,116,104,101,32,118,97,108,117,101,115,32,105,110,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,77,97,116,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,109,101,97,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,101,97,110,40,91,52,44,32,50,44,32,56,44,32,54,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,53,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,101,97,110,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,77,101,97,110,40,97,114,114,97,121,44,32,105,100,101,110,116,105,116,121,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,109,101,97,110,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,105,116,101,114,97,116,101,101,96,32,119,104,105,99,104,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,102,111,114,32,101,97,99,104,32,101,108,101,109,101,110,116,32,105,110,32,96,97,114,114,97,121,96,32,116,111,32,103,101,110,101,114,97,116,101,32,116,104,101,32,118,97,108,117,101,32,116,111,32,98,101,32,97,118,101,114,97,103,101,100,46,92,110,32,32,32,32,32,42,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,55,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,77,97,116,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,109,101,97,110,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,123,32,39,110,39,58,32,52,32,125,44,32,123,32,39,110,39,58,32,50,32,125,44,32,123,32,39,110,39,58,32,56,32,125,44,32,123,32,39,110,39,58,32,54,32,125,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,101,97,110,66,121,40,111,98,106,101,99,116,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,110,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,53,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,109,101,97,110,66,121,40,111,98,106,101,99,116,115,44,32,39,110,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,53,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,101,97,110,66,121,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,77,101,97,110,40,97,114,114,97,121,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,50,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,109,112,117,116,101,115,32,116,104,101,32,109,105,110,105,109,117,109,32,118,97,108,117,101,32,111,102,32,96,97,114,114,97,121,96,46,32,73,102,32,96,97,114,114,97,121,96,32,105,115,32,101,109,112,116,121,32,111,114,32,102,97,108,115,101,121,44,92,110,32,32,32,32,32,42,32,96,117,110,100,101,102,105,110,101,100,96,32,105,115,32,114,101,116,117,114,110,101,100,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,48,46,49,46,48,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,77,97,116,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,109,105,110,105,109,117,109,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,105,110,40,91,52,44,32,50,44,32,56,44,32,54,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,50,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,105,110,40,91,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,105,110,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,69,120,116,114,101,109,117,109,40,97,114,114,97,121,44,32,105,100,101,110,116,105,116,121,44,32,98,97,115,101,76,116,41,92,110,32,32,32,32,32,32,32,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,109,105,110,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,105,116,101,114,97,116,101,101,96,32,119,104,105,99,104,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,102,111,114,32,101,97,99,104,32,101,108,101,109,101,110,116,32,105,110,32,96,97,114,114,97,121,96,32,116,111,32,103,101,110,101,114,97,116,101,32,116,104,101,32,99,114,105,116,101,114,105,111,110,32,98,121,32,119,104,105,99,104,92,110,32,32,32,32,32,42,32,116,104,101,32,118,97,108,117,101,32,105,115,32,114,97,110,107,101,100,46,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,77,97,116,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,42,125,32,82,101,116,117,114,110,115,32,116,104,101,32,109,105,110,105,109,117,109,32,118,97,108,117,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,123,32,39,110,39,58,32,49,32,125,44,32,123,32,39,110,39,58,32,50,32,125,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,105,110,66,121,40,111,98,106,101,99,116,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,110,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,110,39,58,32,49,32,125,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,109,105,110,66,121,40,111,98,106,101,99,116,115,44,32,39,110,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,123,32,39,110,39,58,32,49,32,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,109,105,110,66,121,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,69,120,116,114,101,109,117,109,40,97,114,114,97,121,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,50,41,44,32,98,97,115,101,76,116,41,92,110,32,32,32,32,32,32,32,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,77,117,108,116,105,112,108,121,32,116,119,111,32,110,117,109,98,101,114,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,55,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,77,97,116,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,109,117,108,116,105,112,108,105,101,114,32,84,104,101,32,102,105,114,115,116,32,110,117,109,98,101,114,32,105,110,32,97,32,109,117,108,116,105,112,108,105,99,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,109,117,108,116,105,112,108,105,99,97,110,100,32,84,104,101,32,115,101,99,111,110,100,32,110,117,109,98,101,114,32,105,110,32,97,32,109,117,108,116,105,112,108,105,99,97,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,112,114,111,100,117,99,116,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,109,117,108,116,105,112,108,121,40,54,44,32,52,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,50,52,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,109,117,108,116,105,112,108,121,32,61,32,99,114,101,97,116,101,77,97,116,104,79,112,101,114,97,116,105,111,110,40,102,117,110,99,116,105,111,110,40,109,117,108,116,105,112,108,105,101,114,44,32,109,117,108,116,105,112,108,105,99,97,110,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,117,108,116,105,112,108,105,101,114,32,42,32,109,117,108,116,105,112,108,105,99,97,110,100,59,92,110,32,32,32,32,125,44,32,49,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,109,112,117,116,101,115,32,96,110,117,109,98,101,114,96,32,114,111,117,110,100,101,100,32,116,111,32,96,112,114,101,99,105,115,105,111,110,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,49,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,77,97,116,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,110,117,109,98,101,114,32,84,104,101,32,110,117,109,98,101,114,32,116,111,32,114,111,117,110,100,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,91,112,114,101,99,105,115,105,111,110,61,48,93,32,84,104,101,32,112,114,101,99,105,115,105,111,110,32,116,111,32,114,111,117,110,100,32,116,111,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,114,111,117,110,100,101,100,32,110,117,109,98,101,114,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,111,117,110,100,40,52,46,48,48,54,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,52,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,111,117,110,100,40,52,46,48,48,54,44,32,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,52,46,48,49,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,114,111,117,110,100,40,52,48,54,48,44,32,45,50,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,52,49,48,48,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,114,111,117,110,100,32,61,32,99,114,101,97,116,101,82,111,117,110,100,40,39,114,111,117,110,100,39,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,83,117,98,116,114,97,99,116,32,116,119,111,32,110,117,109,98,101,114,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,77,97,116,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,109,105,110,117,101,110,100,32,84,104,101,32,102,105,114,115,116,32,110,117,109,98,101,114,32,105,110,32,97,32,115,117,98,116,114,97,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,115,117,98,116,114,97,104,101,110,100,32,84,104,101,32,115,101,99,111,110,100,32,110,117,109,98,101,114,32,105,110,32,97,32,115,117,98,116,114,97,99,116,105,111,110,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,100,105,102,102,101,114,101,110,99,101,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,117,98,116,114,97,99,116,40,54,44,32,52,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,50,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,118,97,114,32,115,117,98,116,114,97,99,116,32,61,32,99,114,101,97,116,101,77,97,116,104,79,112,101,114,97,116,105,111,110,40,102,117,110,99,116,105,111,110,40,109,105,110,117,101,110,100,44,32,115,117,98,116,114,97,104,101,110,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,105,110,117,101,110,100,32,45,32,115,117,98,116,114,97,104,101,110,100,59,92,110,32,32,32,32,125,44,32,48,41,59,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,109,112,117,116,101,115,32,116,104,101,32,115,117,109,32,111,102,32,116,104,101,32,118,97,108,117,101,115,32,105,110,32,96,97,114,114,97,121,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,51,46,52,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,77,97,116,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,117,109,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,117,109,40,91,52,44,32,50,44,32,56,44,32,54,93,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,50,48,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,117,109,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,83,117,109,40,97,114,114,97,121,44,32,105,100,101,110,116,105,116,121,41,92,110,32,32,32,32,32,32,32,32,58,32,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,108,105,107,101,32,96,95,46,115,117,109,96,32,101,120,99,101,112,116,32,116,104,97,116,32,105,116,32,97,99,99,101,112,116,115,32,96,105,116,101,114,97,116,101,101,96,32,119,104,105,99,104,32,105,115,92,110,32,32,32,32,32,42,32,105,110,118,111,107,101,100,32,102,111,114,32,101,97,99,104,32,101,108,101,109,101,110,116,32,105,110,32,96,97,114,114,97,121,96,32,116,111,32,103,101,110,101,114,97,116,101,32,116,104,101,32,118,97,108,117,101,32,116,111,32,98,101,32,115,117,109,109,101,100,46,92,110,32,32,32,32,32,42,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,115,32,105,110,118,111,107,101,100,32,119,105,116,104,32,111,110,101,32,97,114,103,117,109,101,110,116,58,32,40,118,97,108,117,101,41,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,32,32,32,32,42,32,64,99,97,116,101,103,111,114,121,32,77,97,116,104,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,97,114,114,97,121,32,84,104,101,32,97,114,114,97,121,32,116,111,32,105,116,101,114,97,116,101,32,111,118,101,114,46,92,110,32,32,32,32,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,91,105,116,101,114,97,116,101,101,61,95,46,105,100,101,110,116,105,116,121,93,32,84,104,101,32,105,116,101,114,97,116,101,101,32,105,110,118,111,107,101,100,32,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,115,117,109,46,92,110,32,32,32,32,32,42,32,64,101,120,97,109,112,108,101,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,118,97,114,32,111,98,106,101,99,116,115,32,61,32,91,123,32,39,110,39,58,32,52,32,125,44,32,123,32,39,110,39,58,32,50,32,125,44,32,123,32,39,110,39,58,32,56,32,125,44,32,123,32,39,110,39,58,32,54,32,125,93,59,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,95,46,115,117,109,66,121,40,111,98,106,101,99,116,115,44,32,102,117,110,99,116,105,111,110,40,111,41,32,123,32,114,101,116,117,114,110,32,111,46,110,59,32,125,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,50,48,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,47,47,32,84,104,101,32,96,95,46,112,114,111,112,101,114,116,121,96,32,105,116,101,114,97,116,101,101,32,115,104,111,114,116,104,97,110,100,46,92,110,32,32,32,32,32,42,32,95,46,115,117,109,66,121,40,111,98,106,101,99,116,115,44,32,39,110,39,41,59,92,110,32,32,32,32,32,42,32,47,47,32,61,62,32,50,48,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,117,109,66,121,40,97,114,114,97,121,44,32,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,97,114,114,97,121,32,38,38,32,97,114,114,97,121,46,108,101,110,103,116,104,41,92,110,32,32,32,32,32,32,32,32,63,32,98,97,115,101,83,117,109,40,97,114,114,97,121,44,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,50,41,41,92,110,32,32,32,32,32,32,32,32,58,32,48,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,109,101,116,104,111,100,115,32,116,104,97,116,32,114,101,116,117,114,110,32,119,114,97,112,112,101,100,32,118,97,108,117,101,115,32,105,110,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,115,46,92,110,32,32,32,32,108,111,100,97,115,104,46,97,102,116,101,114,32,61,32,97,102,116,101,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,97,114,121,32,61,32,97,114,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,97,115,115,105,103,110,32,61,32,97,115,115,105,103,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,97,115,115,105,103,110,73,110,32,61,32,97,115,115,105,103,110,73,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,97,115,115,105,103,110,73,110,87,105,116,104,32,61,32,97,115,115,105,103,110,73,110,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,97,115,115,105,103,110,87,105,116,104,32,61,32,97,115,115,105,103,110,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,97,116,32,61,32,97,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,98,101,102,111,114,101,32,61,32,98,101,102,111,114,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,98,105,110,100,32,61,32,98,105,110,100,59,92,110,32,32,32,32,108,111,100,97,115,104,46,98,105,110,100,65,108,108,32,61,32,98,105,110,100,65,108,108,59,92,110,32,32,32,32,108,111,100,97,115,104,46,98,105,110,100,75,101,121,32,61,32,98,105,110,100,75,101,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,97,115,116,65,114,114,97,121,32,61,32,99,97,115,116,65,114,114,97,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,104,97,105,110,32,61,32,99,104,97,105,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,104,117,110,107,32,61,32,99,104,117,110,107,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,111,109,112,97,99,116,32,61,32,99,111,109,112,97,99,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,111,110,99,97,116,32,61,32,99,111,110,99,97,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,111,110,100,32,61,32,99,111,110,100,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,111,110,102,111,114,109,115,32,61,32,99,111,110,102,111,114,109,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,111,110,115,116,97,110,116,32,61,32,99,111,110,115,116,97,110,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,111,117,110,116,66,121,32,61,32,99,111,117,110,116,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,114,101,97,116,101,32,61,32,99,114,101,97,116,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,117,114,114,121,32,61,32,99,117,114,114,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,117,114,114,121,82,105,103,104,116,32,61,32,99,117,114,114,121,82,105,103,104,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,100,101,98,111,117,110,99,101,32,61,32,100,101,98,111,117,110,99,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,100,101,102,97,117,108,116,115,32,61,32,100,101,102,97,117,108,116,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,100,101,102,97,117,108,116,115,68,101,101,112,32,61,32,100,101,102,97,117,108,116,115,68,101,101,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,100,101,102,101,114,32,61,32,100,101,102,101,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,100,101,108,97,121,32,61,32,100,101,108,97,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,100,105,102,102,101,114,101,110,99,101,32,61,32,100,105,102,102,101,114,101,110,99,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,100,105,102,102,101,114,101,110,99,101,66,121,32,61,32,100,105,102,102,101,114,101,110,99,101,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,100,105,102,102,101,114,101,110,99,101,87,105,116,104,32,61,32,100,105,102,102,101,114,101,110,99,101,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,100,114,111,112,32,61,32,100,114,111,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,100,114,111,112,82,105,103,104,116,32,61,32,100,114,111,112,82,105,103,104,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,100,114,111,112,82,105,103,104,116,87,104,105,108,101,32,61,32,100,114,111,112,82,105,103,104,116,87,104,105,108,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,100,114,111,112,87,104,105,108,101,32,61,32,100,114,111,112,87,104,105,108,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,105,108,108,32,61,32,102,105,108,108,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,105,108,116,101,114,32,61,32,102,105,108,116,101,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,108,97,116,77,97,112,32,61,32,102,108,97,116,77,97,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,108,97,116,77,97,112,68,101,101,112,32,61,32,102,108,97,116,77,97,112,68,101,101,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,108,97,116,77,97,112,68,101,112,116,104,32,61,32,102,108,97,116,77,97,112,68,101,112,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,108,97,116,116,101,110,32,61,32,102,108,97,116,116,101,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,108,97,116,116,101,110,68,101,101,112,32,61,32,102,108,97,116,116,101,110,68,101,101,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,108,97,116,116,101,110,68,101,112,116,104,32,61,32,102,108,97,116,116,101,110,68,101,112,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,108,105,112,32,61,32,102,108,105,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,108,111,119,32,61,32,102,108,111,119,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,108,111,119,82,105,103,104,116,32,61,32,102,108,111,119,82,105,103,104,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,114,111,109,80,97,105,114,115,32,61,32,102,114,111,109,80,97,105,114,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,117,110,99,116,105,111,110,115,32,61,32,102,117,110,99,116,105,111,110,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,117,110,99,116,105,111,110,115,73,110,32,61,32,102,117,110,99,116,105,111,110,115,73,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,103,114,111,117,112,66,121,32,61,32,103,114,111,117,112,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,110,105,116,105,97,108,32,61,32,105,110,105,116,105,97,108,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,110,116,101,114,115,101,99,116,105,111,110,32,61,32,105,110,116,101,114,115,101,99,116,105,111,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,110,116,101,114,115,101,99,116,105,111,110,66,121,32,61,32,105,110,116,101,114,115,101,99,116,105,111,110,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,110,116,101,114,115,101,99,116,105,111,110,87,105,116,104,32,61,32,105,110,116,101,114,115,101,99,116,105,111,110,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,110,118,101,114,116,32,61,32,105,110,118,101,114,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,110,118,101,114,116,66,121,32,61,32,105,110,118,101,114,116,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,110,118,111,107,101,77,97,112,32,61,32,105,110,118,111,107,101,77,97,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,116,101,114,97,116,101,101,32,61,32,105,116,101,114,97,116,101,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,107,101,121,66,121,32,61,32,107,101,121,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,107,101,121,115,32,61,32,107,101,121,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,107,101,121,115,73,110,32,61,32,107,101,121,115,73,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,97,112,32,61,32,109,97,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,97,112,75,101,121,115,32,61,32,109,97,112,75,101,121,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,97,112,86,97,108,117,101,115,32,61,32,109,97,112,86,97,108,117,101,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,97,116,99,104,101,115,32,61,32,109,97,116,99,104,101,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,32,61,32,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,101,109,111,105,122,101,32,61,32,109,101,109,111,105,122,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,101,114,103,101,32,61,32,109,101,114,103,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,101,114,103,101,87,105,116,104,32,61,32,109,101,114,103,101,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,101,116,104,111,100,32,61,32,109,101,116,104,111,100,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,101,116,104,111,100,79,102,32,61,32,109,101,116,104,111,100,79,102,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,105,120,105,110,32,61,32,109,105,120,105,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,110,101,103,97,116,101,32,61,32,110,101,103,97,116,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,110,116,104,65,114,103,32,61,32,110,116,104,65,114,103,59,92,110,32,32,32,32,108,111,100,97,115,104,46,111,109,105,116,32,61,32,111,109,105,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,111,109,105,116,66,121,32,61,32,111,109,105,116,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,111,110,99,101,32,61,32,111,110,99,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,111,114,100,101,114,66,121,32,61,32,111,114,100,101,114,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,111,118,101,114,32,61,32,111,118,101,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,111,118,101,114,65,114,103,115,32,61,32,111,118,101,114,65,114,103,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,111,118,101,114,69,118,101,114,121,32,61,32,111,118,101,114,69,118,101,114,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,111,118,101,114,83,111,109,101,32,61,32,111,118,101,114,83,111,109,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,97,114,116,105,97,108,32,61,32,112,97,114,116,105,97,108,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,97,114,116,105,97,108,82,105,103,104,116,32,61,32,112,97,114,116,105,97,108,82,105,103,104,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,97,114,116,105,116,105,111,110,32,61,32,112,97,114,116,105,116,105,111,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,105,99,107,32,61,32,112,105,99,107,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,105,99,107,66,121,32,61,32,112,105,99,107,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,114,111,112,101,114,116,121,32,61,32,112,114,111,112,101,114,116,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,114,111,112,101,114,116,121,79,102,32,61,32,112,114,111,112,101,114,116,121,79,102,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,117,108,108,32,61,32,112,117,108,108,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,117,108,108,65,108,108,32,61,32,112,117,108,108,65,108,108,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,117,108,108,65,108,108,66,121,32,61,32,112,117,108,108,65,108,108,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,117,108,108,65,108,108,87,105,116,104,32,61,32,112,117,108,108,65,108,108,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,117,108,108,65,116,32,61,32,112,117,108,108,65,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,114,97,110,103,101,32,61,32,114,97,110,103,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,114,97,110,103,101,82,105,103,104,116,32,61,32,114,97,110,103,101,82,105,103,104,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,114,101,97,114,103,32,61,32,114,101,97,114,103,59,92,110,32,32,32,32,108,111,100,97,115,104,46,114,101,106,101,99,116,32,61,32,114,101,106,101,99,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,114,101,109,111,118,101,32,61,32,114,101,109,111,118,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,114,101,115,116,32,61,32,114,101,115,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,114,101,118,101,114,115,101,32,61,32,114,101,118,101,114,115,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,97,109,112,108,101,83,105,122,101,32,61,32,115,97,109,112,108,101,83,105,122,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,101,116,32,61,32,115,101,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,101,116,87,105,116,104,32,61,32,115,101,116,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,104,117,102,102,108,101,32,61,32,115,104,117,102,102,108,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,108,105,99,101,32,61,32,115,108,105,99,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,111,114,116,66,121,32,61,32,115,111,114,116,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,111,114,116,101,100,85,110,105,113,32,61,32,115,111,114,116,101,100,85,110,105,113,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,111,114,116,101,100,85,110,105,113,66,121,32,61,32,115,111,114,116,101,100,85,110,105,113,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,112,108,105,116,32,61,32,115,112,108,105,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,112,114,101,97,100,32,61,32,115,112,114,101,97,100,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,97,105,108,32,61,32,116,97,105,108,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,97,107,101,32,61,32,116,97,107,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,97,107,101,82,105,103,104,116,32,61,32,116,97,107,101,82,105,103,104,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,32,61,32,116,97,107,101,82,105,103,104,116,87,104,105,108,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,97,107,101,87,104,105,108,101,32,61,32,116,97,107,101,87,104,105,108,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,97,112,32,61,32,116,97,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,104,114,111,116,116,108,101,32,61,32,116,104,114,111,116,116,108,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,104,114,117,32,61,32,116,104,114,117,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,111,65,114,114,97,121,32,61,32,116,111,65,114,114,97,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,111,80,97,105,114,115,32,61,32,116,111,80,97,105,114,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,111,80,97,105,114,115,73,110,32,61,32,116,111,80,97,105,114,115,73,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,111,80,97,116,104,32,61,32,116,111,80,97,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,111,80,108,97,105,110,79,98,106,101,99,116,32,61,32,116,111,80,108,97,105,110,79,98,106,101,99,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,114,97,110,115,102,111,114,109,32,61,32,116,114,97,110,115,102,111,114,109,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,110,97,114,121,32,61,32,117,110,97,114,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,110,105,111,110,32,61,32,117,110,105,111,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,110,105,111,110,66,121,32,61,32,117,110,105,111,110,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,110,105,111,110,87,105,116,104,32,61,32,117,110,105,111,110,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,110,105,113,32,61,32,117,110,105,113,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,110,105,113,66,121,32,61,32,117,110,105,113,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,110,105,113,87,105,116,104,32,61,32,117,110,105,113,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,110,115,101,116,32,61,32,117,110,115,101,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,110,122,105,112,32,61,32,117,110,122,105,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,110,122,105,112,87,105,116,104,32,61,32,117,110,122,105,112,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,112,100,97,116,101,32,61,32,117,112,100,97,116,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,112,100,97,116,101,87,105,116,104,32,61,32,117,112,100,97,116,101,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,118,97,108,117,101,115,32,61,32,118,97,108,117,101,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,118,97,108,117,101,115,73,110,32,61,32,118,97,108,117,101,115,73,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,119,105,116,104,111,117,116,32,61,32,119,105,116,104,111,117,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,119,111,114,100,115,32,61,32,119,111,114,100,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,119,114,97,112,32,61,32,119,114,97,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,120,111,114,32,61,32,120,111,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,120,111,114,66,121,32,61,32,120,111,114,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,120,111,114,87,105,116,104,32,61,32,120,111,114,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,122,105,112,32,61,32,122,105,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,122,105,112,79,98,106,101,99,116,32,61,32,122,105,112,79,98,106,101,99,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,122,105,112,79,98,106,101,99,116,68,101,101,112,32,61,32,122,105,112,79,98,106,101,99,116,68,101,101,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,122,105,112,87,105,116,104,32,61,32,122,105,112,87,105,116,104,59,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,97,108,105,97,115,101,115,46,92,110,32,32,32,32,108,111,100,97,115,104,46,101,110,116,114,105,101,115,32,61,32,116,111,80,97,105,114,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,101,110,116,114,105,101,115,73,110,32,61,32,116,111,80,97,105,114,115,73,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,101,120,116,101,110,100,32,61,32,97,115,115,105,103,110,73,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,101,120,116,101,110,100,87,105,116,104,32,61,32,97,115,115,105,103,110,73,110,87,105,116,104,59,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,109,101,116,104,111,100,115,32,116,111,32,96,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,96,46,92,110,32,32,32,32,109,105,120,105,110,40,108,111,100,97,115,104,44,32,108,111,100,97,115,104,41,59,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,109,101,116,104,111,100,115,32,116,104,97,116,32,114,101,116,117,114,110,32,117,110,119,114,97,112,112,101,100,32,118,97,108,117,101,115,32,105,110,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,115,46,92,110,32,32,32,32,108,111,100,97,115,104,46,97,100,100,32,61,32,97,100,100,59,92,110,32,32,32,32,108,111,100,97,115,104,46,97,116,116,101,109,112,116,32,61,32,97,116,116,101,109,112,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,97,109,101,108,67,97,115,101,32,61,32,99,97,109,101,108,67,97,115,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,97,112,105,116,97,108,105,122,101,32,61,32,99,97,112,105,116,97,108,105,122,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,101,105,108,32,61,32,99,101,105,108,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,108,97,109,112,32,61,32,99,108,97,109,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,108,111,110,101,32,61,32,99,108,111,110,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,108,111,110,101,68,101,101,112,32,61,32,99,108,111,110,101,68,101,101,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,108,111,110,101,68,101,101,112,87,105,116,104,32,61,32,99,108,111,110,101,68,101,101,112,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,108,111,110,101,87,105,116,104,32,61,32,99,108,111,110,101,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,99,111,110,102,111,114,109,115,84,111,32,61,32,99,111,110,102,111,114,109,115,84,111,59,92,110,32,32,32,32,108,111,100,97,115,104,46,100,101,98,117,114,114,32,61,32,100,101,98,117,114,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,100,101,102,97,117,108,116,84,111,32,61,32,100,101,102,97,117,108,116,84,111,59,92,110,32,32,32,32,108,111,100,97,115,104,46,100,105,118,105,100,101,32,61,32,100,105,118,105,100,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,101,110,100,115,87,105,116,104,32,61,32,101,110,100,115,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,101,113,32,61,32,101,113,59,92,110,32,32,32,32,108,111,100,97,115,104,46,101,115,99,97,112,101,32,61,32,101,115,99,97,112,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,101,115,99,97,112,101,82,101,103,69,120,112,32,61,32,101,115,99,97,112,101,82,101,103,69,120,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,101,118,101,114,121,32,61,32,101,118,101,114,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,105,110,100,32,61,32,102,105,110,100,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,105,110,100,73,110,100,101,120,32,61,32,102,105,110,100,73,110,100,101,120,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,105,110,100,75,101,121,32,61,32,102,105,110,100,75,101,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,105,110,100,76,97,115,116,32,61,32,102,105,110,100,76,97,115,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,105,110,100,76,97,115,116,73,110,100,101,120,32,61,32,102,105,110,100,76,97,115,116,73,110,100,101,120,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,105,110,100,76,97,115,116,75,101,121,32,61,32,102,105,110,100,76,97,115,116,75,101,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,108,111,111,114,32,61,32,102,108,111,111,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,111,114,69,97,99,104,32,61,32,102,111,114,69,97,99,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,111,114,69,97,99,104,82,105,103,104,116,32,61,32,102,111,114,69,97,99,104,82,105,103,104,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,111,114,73,110,32,61,32,102,111,114,73,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,111,114,73,110,82,105,103,104,116,32,61,32,102,111,114,73,110,82,105,103,104,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,111,114,79,119,110,32,61,32,102,111,114,79,119,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,111,114,79,119,110,82,105,103,104,116,32,61,32,102,111,114,79,119,110,82,105,103,104,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,103,101,116,32,61,32,103,101,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,103,116,32,61,32,103,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,103,116,101,32,61,32,103,116,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,104,97,115,32,61,32,104,97,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,104,97,115,73,110,32,61,32,104,97,115,73,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,104,101,97,100,32,61,32,104,101,97,100,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,100,101,110,116,105,116,121,32,61,32,105,100,101,110,116,105,116,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,110,99,108,117,100,101,115,32,61,32,105,110,99,108,117,100,101,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,110,100,101,120,79,102,32,61,32,105,110,100,101,120,79,102,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,110,82,97,110,103,101,32,61,32,105,110,82,97,110,103,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,110,118,111,107,101,32,61,32,105,110,118,111,107,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,65,114,103,117,109,101,110,116,115,32,61,32,105,115,65,114,103,117,109,101,110,116,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,65,114,114,97,121,32,61,32,105,115,65,114,114,97,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,65,114,114,97,121,66,117,102,102,101,114,32,61,32,105,115,65,114,114,97,121,66,117,102,102,101,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,65,114,114,97,121,76,105,107,101,32,61,32,105,115,65,114,114,97,121,76,105,107,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,32,61,32,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,66,111,111,108,101,97,110,32,61,32,105,115,66,111,111,108,101,97,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,66,117,102,102,101,114,32,61,32,105,115,66,117,102,102,101,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,68,97,116,101,32,61,32,105,115,68,97,116,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,69,108,101,109,101,110,116,32,61,32,105,115,69,108,101,109,101,110,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,69,109,112,116,121,32,61,32,105,115,69,109,112,116,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,69,113,117,97,108,32,61,32,105,115,69,113,117,97,108,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,69,113,117,97,108,87,105,116,104,32,61,32,105,115,69,113,117,97,108,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,69,114,114,111,114,32,61,32,105,115,69,114,114,111,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,70,105,110,105,116,101,32,61,32,105,115,70,105,110,105,116,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,70,117,110,99,116,105,111,110,32,61,32,105,115,70,117,110,99,116,105,111,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,73,110,116,101,103,101,114,32,61,32,105,115,73,110,116,101,103,101,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,76,101,110,103,116,104,32,61,32,105,115,76,101,110,103,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,77,97,112,32,61,32,105,115,77,97,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,77,97,116,99,104,32,61,32,105,115,77,97,116,99,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,77,97,116,99,104,87,105,116,104,32,61,32,105,115,77,97,116,99,104,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,78,97,78,32,61,32,105,115,78,97,78,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,78,97,116,105,118,101,32,61,32,105,115,78,97,116,105,118,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,78,105,108,32,61,32,105,115,78,105,108,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,78,117,108,108,32,61,32,105,115,78,117,108,108,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,78,117,109,98,101,114,32,61,32,105,115,78,117,109,98,101,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,79,98,106,101,99,116,32,61,32,105,115,79,98,106,101,99,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,79,98,106,101,99,116,76,105,107,101,32,61,32,105,115,79,98,106,101,99,116,76,105,107,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,80,108,97,105,110,79,98,106,101,99,116,32,61,32,105,115,80,108,97,105,110,79,98,106,101,99,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,82,101,103,69,120,112,32,61,32,105,115,82,101,103,69,120,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,83,97,102,101,73,110,116,101,103,101,114,32,61,32,105,115,83,97,102,101,73,110,116,101,103,101,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,83,101,116,32,61,32,105,115,83,101,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,83,116,114,105,110,103,32,61,32,105,115,83,116,114,105,110,103,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,83,121,109,98,111,108,32,61,32,105,115,83,121,109,98,111,108,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,84,121,112,101,100,65,114,114,97,121,32,61,32,105,115,84,121,112,101,100,65,114,114,97,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,85,110,100,101,102,105,110,101,100,32,61,32,105,115,85,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,87,101,97,107,77,97,112,32,61,32,105,115,87,101,97,107,77,97,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,105,115,87,101,97,107,83,101,116,32,61,32,105,115,87,101,97,107,83,101,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,106,111,105,110,32,61,32,106,111,105,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,107,101,98,97,98,67,97,115,101,32,61,32,107,101,98,97,98,67,97,115,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,108,97,115,116,32,61,32,108,97,115,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,108,97,115,116,73,110,100,101,120,79,102,32,61,32,108,97,115,116,73,110,100,101,120,79,102,59,92,110,32,32,32,32,108,111,100,97,115,104,46,108,111,119,101,114,67,97,115,101,32,61,32,108,111,119,101,114,67,97,115,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,108,111,119,101,114,70,105,114,115,116,32,61,32,108,111,119,101,114,70,105,114,115,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,108,116,32,61,32,108,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,108,116,101,32,61,32,108,116,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,97,120,32,61,32,109,97,120,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,97,120,66,121,32,61,32,109,97,120,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,101,97,110,32,61,32,109,101,97,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,101,97,110,66,121,32,61,32,109,101,97,110,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,105,110,32,61,32,109,105,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,105,110,66,121,32,61,32,109,105,110,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,116,117,98,65,114,114,97,121,32,61,32,115,116,117,98,65,114,114,97,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,116,117,98,70,97,108,115,101,32,61,32,115,116,117,98,70,97,108,115,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,116,117,98,79,98,106,101,99,116,32,61,32,115,116,117,98,79,98,106,101,99,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,116,117,98,83,116,114,105,110,103,32,61,32,115,116,117,98,83,116,114,105,110,103,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,116,117,98,84,114,117,101,32,61,32,115,116,117,98,84,114,117,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,109,117,108,116,105,112,108,121,32,61,32,109,117,108,116,105,112,108,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,110,116,104,32,61,32,110,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,110,111,67,111,110,102,108,105,99,116,32,61,32,110,111,67,111,110,102,108,105,99,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,110,111,111,112,32,61,32,110,111,111,112,59,92,110,32,32,32,32,108,111,100,97,115,104,46,110,111,119,32,61,32,110,111,119,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,97,100,32,61,32,112,97,100,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,97,100,69,110,100,32,61,32,112,97,100,69,110,100,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,97,100,83,116,97,114,116,32,61,32,112,97,100,83,116,97,114,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,97,114,115,101,73,110,116,32,61,32,112,97,114,115,101,73,110,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,114,97,110,100,111,109,32,61,32,114,97,110,100,111,109,59,92,110,32,32,32,32,108,111,100,97,115,104,46,114,101,100,117,99,101,32,61,32,114,101,100,117,99,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,114,101,100,117,99,101,82,105,103,104,116,32,61,32,114,101,100,117,99,101,82,105,103,104,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,114,101,112,101,97,116,32,61,32,114,101,112,101,97,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,114,101,112,108,97,99,101,32,61,32,114,101,112,108,97,99,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,114,101,115,117,108,116,32,61,32,114,101,115,117,108,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,114,111,117,110,100,32,61,32,114,111,117,110,100,59,92,110,32,32,32,32,108,111,100,97,115,104,46,114,117,110,73,110,67,111,110,116,101,120,116,32,61,32,114,117,110,73,110,67,111,110,116,101,120,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,97,109,112,108,101,32,61,32,115,97,109,112,108,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,105,122,101,32,61,32,115,105,122,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,110,97,107,101,67,97,115,101,32,61,32,115,110,97,107,101,67,97,115,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,111,109,101,32,61,32,115,111,109,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,111,114,116,101,100,73,110,100,101,120,32,61,32,115,111,114,116,101,100,73,110,100,101,120,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,111,114,116,101,100,73,110,100,101,120,66,121,32,61,32,115,111,114,116,101,100,73,110,100,101,120,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,111,114,116,101,100,73,110,100,101,120,79,102,32,61,32,115,111,114,116,101,100,73,110,100,101,120,79,102,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,32,61,32,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,66,121,32,61,32,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,79,102,32,61,32,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,79,102,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,116,97,114,116,67,97,115,101,32,61,32,115,116,97,114,116,67,97,115,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,116,97,114,116,115,87,105,116,104,32,61,32,115,116,97,114,116,115,87,105,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,117,98,116,114,97,99,116,32,61,32,115,117,98,116,114,97,99,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,117,109,32,61,32,115,117,109,59,92,110,32,32,32,32,108,111,100,97,115,104,46,115,117,109,66,121,32,61,32,115,117,109,66,121,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,101,109,112,108,97,116,101,32,61,32,116,101,109,112,108,97,116,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,105,109,101,115,32,61,32,116,105,109,101,115,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,111,70,105,110,105,116,101,32,61,32,116,111,70,105,110,105,116,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,111,73,110,116,101,103,101,114,32,61,32,116,111,73,110,116,101,103,101,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,111,76,101,110,103,116,104,32,61,32,116,111,76,101,110,103,116,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,111,76,111,119,101,114,32,61,32,116,111,76,111,119,101,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,111,78,117,109,98,101,114,32,61,32,116,111,78,117,109,98,101,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,111,83,97,102,101,73,110,116,101,103,101,114,32,61,32,116,111,83,97,102,101,73,110,116,101,103,101,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,111,83,116,114,105,110,103,32,61,32,116,111,83,116,114,105,110,103,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,111,85,112,112,101,114,32,61,32,116,111,85,112,112,101,114,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,114,105,109,32,61,32,116,114,105,109,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,114,105,109,69,110,100,32,61,32,116,114,105,109,69,110,100,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,114,105,109,83,116,97,114,116,32,61,32,116,114,105,109,83,116,97,114,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,116,114,117,110,99,97,116,101,32,61,32,116,114,117,110,99,97,116,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,110,101,115,99,97,112,101,32,61,32,117,110,101,115,99,97,112,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,110,105,113,117,101,73,100,32,61,32,117,110,105,113,117,101,73,100,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,112,112,101,114,67,97,115,101,32,61,32,117,112,112,101,114,67,97,115,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,117,112,112,101,114,70,105,114,115,116,32,61,32,117,112,112,101,114,70,105,114,115,116,59,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,97,108,105,97,115,101,115,46,92,110,32,32,32,32,108,111,100,97,115,104,46,101,97,99,104,32,61,32,102,111,114,69,97,99,104,59,92,110,32,32,32,32,108,111,100,97,115,104,46,101,97,99,104,82,105,103,104,116,32,61,32,102,111,114,69,97,99,104,82,105,103,104,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,102,105,114,115,116,32,61,32,104,101,97,100,59,92,110,92,110,32,32,32,32,109,105,120,105,110,40,108,111,100,97,115,104,44,32,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,111,117,114,99,101,32,61,32,123,125,59,92,110,32,32,32,32,32,32,98,97,115,101,70,111,114,79,119,110,40,108,111,100,97,115,104,44,32,102,117,110,99,116,105,111,110,40,102,117,110,99,44,32,109,101,116,104,111,100,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,44,32,109,101,116,104,111,100,78,97,109,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,111,117,114,99,101,91,109,101,116,104,111,100,78,97,109,101,93,32,61,32,102,117,110,99,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,111,117,114,99,101,59,92,110,32,32,32,32,125,40,41,41,44,32,123,32,39,99,104,97,105,110,39,58,32,102,97,108,115,101,32,125,41,59,92,110,92,110,32,32,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,84,104,101,32,115,101,109,97,110,116,105,99,32,118,101,114,115,105,111,110,32,110,117,109,98,101,114,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,32,32,32,32,42,32,64,116,121,112,101,32,123,115,116,114,105,110,103,125,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,108,111,100,97,115,104,46,86,69,82,83,73,79,78,32,61,32,86,69,82,83,73,79,78,59,92,110,92,110,32,32,32,32,47,47,32,65,115,115,105,103,110,32,100,101,102,97,117,108,116,32,112,108,97,99,101,104,111,108,100,101,114,115,46,92,110,32,32,32,32,97,114,114,97,121,69,97,99,104,40,91,39,98,105,110,100,39,44,32,39,98,105,110,100,75,101,121,39,44,32,39,99,117,114,114,121,39,44,32,39,99,117,114,114,121,82,105,103,104,116,39,44,32,39,112,97,114,116,105,97,108,39,44,32,39,112,97,114,116,105,97,108,82,105,103,104,116,39,93,44,32,102,117,110,99,116,105,111,110,40,109,101,116,104,111,100,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,108,111,100,97,115,104,91,109,101,116,104,111,100,78,97,109,101,93,46,112,108,97,99,101,104,111,108,100,101,114,32,61,32,108,111,100,97,115,104,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,96,76,97,122,121,87,114,97,112,112,101,114,96,32,109,101,116,104,111,100,115,32,102,111,114,32,96,95,46,100,114,111,112,96,32,97,110,100,32,96,95,46,116,97,107,101,96,32,118,97,114,105,97,110,116,115,46,92,110,32,32,32,32,97,114,114,97,121,69,97,99,104,40,91,39,100,114,111,112,39,44,32,39,116,97,107,101,39,93,44,32,102,117,110,99,116,105,111,110,40,109,101,116,104,111,100,78,97,109,101,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,91,109,101,116,104,111,100,78,97,109,101,93,32,61,32,102,117,110,99,116,105,111,110,40,110,41,32,123,92,110,32,32,32,32,32,32,32,32,110,32,61,32,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,49,32,58,32,110,97,116,105,118,101,77,97,120,40,116,111,73,110,116,101,103,101,114,40,110,41,44,32,48,41,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,40,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,32,38,38,32,33,105,110,100,101,120,41,92,110,32,32,32,32,32,32,32,32,32,32,63,32,110,101,119,32,76,97,122,121,87,114,97,112,112,101,114,40,116,104,105,115,41,92,110,32,32,32,32,32,32,32,32,32,32,58,32,116,104,105,115,46,99,108,111,110,101,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,101,115,117,108,116,46,95,95,102,105,108,116,101,114,101,100,95,95,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,116,97,107,101,67,111,117,110,116,95,95,32,61,32,110,97,116,105,118,101,77,105,110,40,110,44,32,114,101,115,117,108,116,46,95,95,116,97,107,101,67,111,117,110,116,95,95,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,118,105,101,119,115,95,95,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,115,105,122,101,39,58,32,110,97,116,105,118,101,77,105,110,40,110,44,32,77,65,88,95,65,82,82,65,89,95,76,69,78,71,84,72,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,116,121,112,101,39,58,32,109,101,116,104,111,100,78,97,109,101,32,43,32,40,114,101,115,117,108,116,46,95,95,100,105,114,95,95,32,60,32,48,32,63,32,39,82,105,103,104,116,39,32,58,32,39,39,41,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,91,109,101,116,104,111,100,78,97,109,101,32,43,32,39,82,105,103,104,116,39,93,32,61,32,102,117,110,99,116,105,111,110,40,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,91,109,101,116,104,111,100,78,97,109,101,93,40,110,41,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,96,76,97,122,121,87,114,97,112,112,101,114,96,32,109,101,116,104,111,100,115,32,116,104,97,116,32,97,99,99,101,112,116,32,97,110,32,96,105,116,101,114,97,116,101,101,96,32,118,97,108,117,101,46,92,110,32,32,32,32,97,114,114,97,121,69,97,99,104,40,91,39,102,105,108,116,101,114,39,44,32,39,109,97,112,39,44,32,39,116,97,107,101,87,104,105,108,101,39,93,44,32,102,117,110,99,116,105,111,110,40,109,101,116,104,111,100,78,97,109,101,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,105,110,100,101,120,32,43,32,49,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,70,105,108,116,101,114,32,61,32,116,121,112,101,32,61,61,32,76,65,90,89,95,70,73,76,84,69,82,95,70,76,65,71,32,124,124,32,116,121,112,101,32,61,61,32,76,65,90,89,95,87,72,73,76,69,95,70,76,65,71,59,92,110,92,110,32,32,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,91,109,101,116,104,111,100,78,97,109,101,93,32,61,32,102,117,110,99,116,105,111,110,40,105,116,101,114,97,116,101,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,116,104,105,115,46,99,108,111,110,101,40,41,59,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,105,116,101,114,97,116,101,101,115,95,95,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,39,105,116,101,114,97,116,101,101,39,58,32,103,101,116,73,116,101,114,97,116,101,101,40,105,116,101,114,97,116,101,101,44,32,51,41,44,92,110,32,32,32,32,32,32,32,32,32,32,39,116,121,112,101,39,58,32,116,121,112,101,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,102,105,108,116,101,114,101,100,95,95,32,61,32,114,101,115,117,108,116,46,95,95,102,105,108,116,101,114,101,100,95,95,32,124,124,32,105,115,70,105,108,116,101,114,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,96,76,97,122,121,87,114,97,112,112,101,114,96,32,109,101,116,104,111,100,115,32,102,111,114,32,96,95,46,104,101,97,100,96,32,97,110,100,32,96,95,46,108,97,115,116,96,46,92,110,32,32,32,32,97,114,114,97,121,69,97,99,104,40,91,39,104,101,97,100,39,44,32,39,108,97,115,116,39,93,44,32,102,117,110,99,116,105,111,110,40,109,101,116,104,111,100,78,97,109,101,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,97,107,101,78,97,109,101,32,61,32,39,116,97,107,101,39,32,43,32,40,105,110,100,101,120,32,63,32,39,82,105,103,104,116,39,32,58,32,39,39,41,59,92,110,92,110,32,32,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,91,109,101,116,104,111,100,78,97,109,101,93,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,116,97,107,101,78,97,109,101,93,40,49,41,46,118,97,108,117,101,40,41,91,48,93,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,96,76,97,122,121,87,114,97,112,112,101,114,96,32,109,101,116,104,111,100,115,32,102,111,114,32,96,95,46,105,110,105,116,105,97,108,96,32,97,110,100,32,96,95,46,116,97,105,108,96,46,92,110,32,32,32,32,97,114,114,97,121,69,97,99,104,40,91,39,105,110,105,116,105,97,108,39,44,32,39,116,97,105,108,39,93,44,32,102,117,110,99,116,105,111,110,40,109,101,116,104,111,100,78,97,109,101,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,114,111,112,78,97,109,101,32,61,32,39,100,114,111,112,39,32,43,32,40,105,110,100,101,120,32,63,32,39,39,32,58,32,39,82,105,103,104,116,39,41,59,92,110,92,110,32,32,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,91,109,101,116,104,111,100,78,97,109,101,93,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,32,63,32,110,101,119,32,76,97,122,121,87,114,97,112,112,101,114,40,116,104,105,115,41,32,58,32,116,104,105,115,91,100,114,111,112,78,97,109,101,93,40,49,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,46,99,111,109,112,97,99,116,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,105,100,101,110,116,105,116,121,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,32,61,32,102,117,110,99,116,105,111,110,40,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,112,114,101,100,105,99,97,116,101,41,46,104,101,97,100,40,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,76,97,115,116,32,61,32,102,117,110,99,116,105,111,110,40,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,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,112,114,101,100,105,99,97,116,101,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,46,105,110,118,111,107,101,77,97,112,32,61,32,98,97,115,101,82,101,115,116,40,102,117,110,99,116,105,111,110,40,112,97,116,104,44,32,97,114,103,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,112,97,116,104,32,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,76,97,122,121,87,114,97,112,112,101,114,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,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,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,73,110,118,111,107,101,40,118,97,108,117,101,44,32,112,97,116,104,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,46,114,101,106,101,99,116,32,61,32,102,117,110,99,116,105,111,110,40,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,110,101,103,97,116,101,40,103,101,116,73,116,101,114,97,116,101,101,40,112,114,101,100,105,99,97,116,101,41,41,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,32,61,32,102,117,110,99,116,105,111,110,40,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,32,61,32,116,111,73,110,116,101,103,101,114,40,115,116,97,114,116,41,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,117,108,116,46,95,95,102,105,108,116,101,114,101,100,95,95,32,38,38,32,40,115,116,97,114,116,32,62,32,48,32,124,124,32,101,110,100,32,60,32,48,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,76,97,122,121,87,114,97,112,112,101,114,40,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,114,116,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,114,101,115,117,108,116,46,116,97,107,101,82,105,103,104,116,40,45,115,116,97,114,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,116,97,114,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,114,101,115,117,108,116,46,100,114,111,112,40,115,116,97,114,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,101,110,100,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,101,110,100,32,61,32,116,111,73,110,116,101,103,101,114,40,101,110,100,41,59,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,101,110,100,32,60,32,48,32,63,32,114,101,115,117,108,116,46,100,114,111,112,82,105,103,104,116,40,45,101,110,100,41,32,58,32,114,101,115,117,108,116,46,116,97,107,101,40,101,110,100,32,45,32,115,116,97,114,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,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,32,61,32,102,117,110,99,116,105,111,110,40,112,114,101,100,105,99,97,116,101,41,32,123,92,110,32,32,32,32,32,32,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,112,114,101,100,105,99,97,116,101,41,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,46,116,111,65,114,114,97,121,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,97,107,101,40,77,65,88,95,65,82,82,65,89,95,76,69,78,71,84,72,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,96,76,97,122,121,87,114,97,112,112,101,114,96,32,109,101,116,104,111,100,115,32,116,111,32,96,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,96,46,92,110,32,32,32,32,98,97,115,101,70,111,114,79,119,110,40,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,44,32,102,117,110,99,116,105,111,110,40,102,117,110,99,44,32,109,101,116,104,111,100,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,104,101,99,107,73,116,101,114,97,116,101,101,32,61,32,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,109,101,116,104,111,100,78,97,109,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,115,84,97,107,101,114,32,61,32,47,94,40,63,58,104,101,97,100,124,108,97,115,116,41,36,47,46,116,101,115,116,40,109,101,116,104,111,100,78,97,109,101,41,44,92,110,32,32,32,32,32,32,32,32,32,32,108,111,100,97,115,104,70,117,110,99,32,61,32,108,111,100,97,115,104,91,105,115,84,97,107,101,114,32,63,32,40,39,116,97,107,101,39,32,43,32,40,109,101,116,104,111,100,78,97,109,101,32,61,61,32,39,108,97,115,116,39,32,63,32,39,82,105,103,104,116,39,32,58,32,39,39,41,41,32,58,32,109,101,116,104,111,100,78,97,109,101,93,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,85,110,119,114,97,112,112,101,100,32,61,32,105,115,84,97,107,101,114,32,124,124,32,47,94,102,105,110,100,47,46,116,101,115,116,40,109,101,116,104,111,100,78,97,109,101,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,108,111,100,97,115,104,70,117,110,99,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,91,109,101,116,104,111,100,78,97,109,101,93,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,114,103,115,32,61,32,105,115,84,97,107,101,114,32,63,32,91,49,93,32,58,32,97,114,103,117,109,101,110,116,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,76,97,122,121,32,61,32,118,97,108,117,101,32,105,110,115,116,97,110,99,101,111,102,32,76,97,122,121,87,114,97,112,112,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,116,101,114,97,116,101,101,32,61,32,97,114,103,115,91,48,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,115,101,76,97,122,121,32,61,32,105,115,76,97,122,121,32,124,124,32,105,115,65,114,114,97,121,40,118,97,108,117,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,116,101,114,99,101,112,116,111,114,32,61,32,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,108,111,100,97,115,104,70,117,110,99,46,97,112,112,108,121,40,108,111,100,97,115,104,44,32,97,114,114,97,121,80,117,115,104,40,91,118,97,108,117,101,93,44,32,97,114,103,115,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,105,115,84,97,107,101,114,32,38,38,32,99,104,97,105,110,65,108,108,41,32,63,32,114,101,115,117,108,116,91,48,93,32,58,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,117,115,101,76,97,122,121,32,38,38,32,99,104,101,99,107,73,116,101,114,97,116,101,101,32,38,38,32,116,121,112,101,111,102,32,105,116,101,114,97,116,101,101,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,105,116,101,114,97,116,101,101,46,108,101,110,103,116,104,32,33,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,65,118,111,105,100,32,108,97,122,121,32,117,115,101,32,105,102,32,116,104,101,32,105,116,101,114,97,116,101,101,32,104,97,115,32,97,32,92,34,108,101,110,103,116,104,92,34,32,118,97,108,117,101,32,111,116,104,101,114,32,116,104,97,110,32,96,49,96,46,92,110,32,32,32,32,32,32,32,32,32,32,105,115,76,97,122,121,32,61,32,117,115,101,76,97,122,121,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,104,97,105,110,65,108,108,32,61,32,116,104,105,115,46,95,95,99,104,97,105,110,95,95,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,72,121,98,114,105,100,32,61,32,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,115,85,110,119,114,97,112,112,101,100,32,61,32,114,101,116,85,110,119,114,97,112,112,101,100,32,38,38,32,33,99,104,97,105,110,65,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,110,108,121,76,97,122,121,32,61,32,105,115,76,97,122,121,32,38,38,32,33,105,115,72,121,98,114,105,100,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,114,101,116,85,110,119,114,97,112,112,101,100,32,38,38,32,117,115,101,76,97,122,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,111,110,108,121,76,97,122,121,32,63,32,118,97,108,117,101,32,58,32,110,101,119,32,76,97,122,121,87,114,97,112,112,101,114,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,102,117,110,99,46,97,112,112,108,121,40,118,97,108,117,101,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,32,39,102,117,110,99,39,58,32,116,104,114,117,44,32,39,97,114,103,115,39,58,32,91,105,110,116,101,114,99,101,112,116,111,114,93,44,32,39,116,104,105,115,65,114,103,39,58,32,117,110,100,101,102,105,110,101,100,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,76,111,100,97,115,104,87,114,97,112,112,101,114,40,114,101,115,117,108,116,44,32,99,104,97,105,110,65,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,85,110,119,114,97,112,112,101,100,32,38,38,32,111,110,108,121,76,97,122,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,116,104,105,115,46,116,104,114,117,40,105,110,116,101,114,99,101,112,116,111,114,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,85,110,119,114,97,112,112,101,100,32,63,32,40,105,115,84,97,107,101,114,32,63,32,114,101,115,117,108,116,46,118,97,108,117,101,40,41,91,48,93,32,58,32,114,101,115,117,108,116,46,118,97,108,117,101,40,41,41,32,58,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,96,65,114,114,97,121,96,32,109,101,116,104,111,100,115,32,116,111,32,96,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,96,46,92,110,32,32,32,32,97,114,114,97,121,69,97,99,104,40,91,39,112,111,112,39,44,32,39,112,117,115,104,39,44,32,39,115,104,105,102,116,39,44,32,39,115,111,114,116,39,44,32,39,115,112,108,105,99,101,39,44,32,39,117,110,115,104,105,102,116,39,93,44,32,102,117,110,99,116,105,111,110,40,109,101,116,104,111,100,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,117,110,99,32,61,32,97,114,114,97,121,80,114,111,116,111,91,109,101,116,104,111,100,78,97,109,101,93,44,92,110,32,32,32,32,32,32,32,32,32,32,99,104,97,105,110,78,97,109,101,32,61,32,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,109,101,116,104,111,100,78,97,109,101,41,32,63,32,39,116,97,112,39,32,58,32,39,116,104,114,117,39,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,85,110,119,114,97,112,112,101,100,32,61,32,47,94,40,63,58,112,111,112,124,115,104,105,102,116,41,36,47,46,116,101,115,116,40,109,101,116,104,111,100,78,97,109,101,41,59,92,110,92,110,32,32,32,32,32,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,91,109,101,116,104,111,100,78,97,109,101,93,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,101,116,85,110,119,114,97,112,112,101,100,32,38,38,32,33,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,116,104,105,115,46,118,97,108,117,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,46,97,112,112,108,121,40,105,115,65,114,114,97,121,40,118,97,108,117,101,41,32,63,32,118,97,108,117,101,32,58,32,91,93,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,99,104,97,105,110,78,97,109,101,93,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,46,97,112,112,108,121,40,105,115,65,114,114,97,121,40,118,97,108,117,101,41,32,63,32,118,97,108,117,101,32,58,32,91,93,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,47,32,77,97,112,32,109,105,110,105,102,105,101,100,32,109,101,116,104,111,100,32,110,97,109,101,115,32,116,111,32,116,104,101,105,114,32,114,101,97,108,32,110,97,109,101,115,46,92,110,32,32,32,32,98,97,115,101,70,111,114,79,119,110,40,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,44,32,102,117,110,99,116,105,111,110,40,102,117,110,99,44,32,109,101,116,104,111,100,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,111,100,97,115,104,70,117,110,99,32,61,32,108,111,100,97,115,104,91,109,101,116,104,111,100,78,97,109,101,93,59,92,110,32,32,32,32,32,32,105,102,32,40,108,111,100,97,115,104,70,117,110,99,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,108,111,100,97,115,104,70,117,110,99,46,110,97,109,101,32,43,32,39,39,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,114,101,97,108,78,97,109,101,115,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,97,108,78,97,109,101,115,91,107,101,121,93,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,97,108,78,97,109,101,115,91,107,101,121,93,46,112,117,115,104,40,123,32,39,110,97,109,101,39,58,32,109,101,116,104,111,100,78,97,109,101,44,32,39,102,117,110,99,39,58,32,108,111,100,97,115,104,70,117,110,99,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,114,101,97,108,78,97,109,101,115,91,99,114,101,97,116,101,72,121,98,114,105,100,40,117,110,100,101,102,105,110,101,100,44,32,87,82,65,80,95,66,73,78,68,95,75,69,89,95,70,76,65,71,41,46,110,97,109,101,93,32,61,32,91,123,92,110,32,32,32,32,32,32,39,110,97,109,101,39,58,32,39,119,114,97,112,112,101,114,39,44,92,110,32,32,32,32,32,32,39,102,117,110,99,39,58,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,125,93,59,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,109,101,116,104,111,100,115,32,116,111,32,96,76,97,122,121,87,114,97,112,112,101,114,96,46,92,110,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,46,99,108,111,110,101,32,61,32,108,97,122,121,67,108,111,110,101,59,92,110,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,46,114,101,118,101,114,115,101,32,61,32,108,97,122,121,82,101,118,101,114,115,101,59,92,110,32,32,32,32,76,97,122,121,87,114,97,112,112,101,114,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,32,61,32,108,97,122,121,86,97,108,117,101,59,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,99,104,97,105,110,32,115,101,113,117,101,110,99,101,32,109,101,116,104,111,100,115,32,116,111,32,116,104,101,32,96,108,111,100,97,115,104,96,32,119,114,97,112,112,101,114,46,92,110,32,32,32,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,46,97,116,32,61,32,119,114,97,112,112,101,114,65,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,46,99,104,97,105,110,32,61,32,119,114,97,112,112,101,114,67,104,97,105,110,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,46,99,111,109,109,105,116,32,61,32,119,114,97,112,112,101,114,67,111,109,109,105,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,46,110,101,120,116,32,61,32,119,114,97,112,112,101,114,78,101,120,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,46,112,108,97,110,116,32,61,32,119,114,97,112,112,101,114,80,108,97,110,116,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,46,114,101,118,101,114,115,101,32,61,32,119,114,97,112,112,101,114,82,101,118,101,114,115,101,59,92,110,32,32,32,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,46,116,111,74,83,79,78,32,61,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,79,102,32,61,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,32,61,32,119,114,97,112,112,101,114,86,97,108,117,101,59,92,110,92,110,32,32,32,32,47,47,32,65,100,100,32,108,97,122,121,32,97,108,105,97,115,101,115,46,92,110,32,32,32,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,46,102,105,114,115,116,32,61,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,46,104,101,97,100,59,92,110,92,110,32,32,32,32,105,102,32,40,115,121,109,73,116,101,114,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,108,111,100,97,115,104,46,112,114,111,116,111,116,121,112,101,91,115,121,109,73,116,101,114,97,116,111,114,93,32,61,32,119,114,97,112,112,101,114,84,111,73,116,101,114,97,116,111,114,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,108,111,100,97,115,104,59,92,110,32,32,125,41,59,92,110,92,110,32,32,47,42,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,42,47,92,110,92,110,32,32,47,47,32,69,120,112,111,114,116,32,108,111,100,97,115,104,46,92,110,32,32,118,97,114,32,95,32,61,32,114,117,110,73,110,67,111,110,116,101,120,116,40,41,59,92,110,92,110,32,32,47,47,32,83,111,109,101,32,65,77,68,32,98,117,105,108,100,32,111,112,116,105,109,105,122,101,114,115,44,32,108,105,107,101,32,114,46,106,115,44,32,99,104,101,99,107,32,102,111,114,32,99,111,110,100,105,116,105,111,110,32,112,97,116,116,101,114,110,115,32,108,105,107,101,58,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,47,47,32,69,120,112,111,115,101,32,76,111,100,97,115,104,32,111,110,32,116,104,101,32,103,108,111,98,97,108,32,111,98,106,101,99,116,32,116,111,32,112,114,101,118,101,110,116,32,101,114,114,111,114,115,32,119,104,101,110,32,76,111,100,97,115,104,32,105,115,92,110,32,32,32,32,47,47,32,108,111,97,100,101,100,32,98,121,32,97,32,115,99,114,105,112,116,32,116,97,103,32,105,110,32,116,104,101,32,112,114,101,115,101,110,99,101,32,111,102,32,97,110,32,65,77,68,32,108,111,97,100,101,114,46,92,110,32,32,32,32,47,47,32,83,101,101,32,104,116,116,112,58,47,47,114,101,113,117,105,114,101,106,115,46,111,114,103,47,100,111,99,115,47,101,114,114,111,114,115,46,104,116,109,108,35,109,105,115,109,97,116,99,104,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,32,32,47,47,32,85,115,101,32,96,95,46,110,111,67,111,110,102,108,105,99,116,96,32,116,111,32,114,101,109,111,118,101,32,76,111,100,97,115,104,32,102,114,111,109,32,116,104,101,32,103,108,111,98,97,108,32,111,98,106,101,99,116,46,92,110,32,32,32,32,114,111,111,116,46,95,32,61,32,95,59,92,110,92,110,32,32,32,32,47,47,32,68,101,102,105,110,101,32,97,115,32,97,110,32,97,110,111,110,121,109,111,117,115,32,109,111,100,117,108,101,32,115,111,44,32,116,104,114,111,117,103,104,32,112,97,116,104,32,109,97,112,112,105,110,103,44,32,105,116,32,99,97,110,32,98,101,92,110,32,32,32,32,47,47,32,114,101,102,101,114,101,110,99,101,100,32,97,115,32,116,104,101,32,92,34,117,110,100,101,114,115,99,111,114,101,92,34,32,109,111,100,117,108,101,46,92,110,32,32,32,32,33,40,95,95,87,69,66,80,65,67,75,95,65,77,68,95,68,69,70,73,78,69,95,82,69,83,85,76,84,95,95,32,61,32,40,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,59,92,110,32,32,32,32,125,41,46,99,97,108,108,40,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,44,32,101,120,112,111,114,116,115,44,32,109,111,100,117,108,101,41,44,92,110,92,116,92,116,95,95,87,69,66,80,65,67,75,95,65,77,68,95,68,69,70,73,78,69,95,82,69,83,85,76,84,95,95,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,40,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,95,95,87,69,66,80,65,67,75,95,65,77,68,95,68,69,70,73,78,69,95,82,69,83,85,76,84,95,95,41,41,59,92,110,32,32,125,92,110,32,32,47,47,32,67,104,101,99,107,32,102,111,114,32,96,101,120,112,111,114,116,115,96,32,97,102,116,101,114,32,96,100,101,102,105,110,101,96,32,105,110,32,99,97,115,101,32,97,32,98,117,105,108,100,32,111,112,116,105,109,105,122,101,114,32,97,100,100,115,32,105,116,46,92,110,32,32,101,108,115,101,32,123,125,92,110,125,46,99,97,108,108,40,116,104,105,115,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,108,111,100,97,115,104,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,110,111,119,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,110,111,119,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,114,111,111,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,114,111,111,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,114,111,111,116,46,106,115,92,34,41,59,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,115,32,116,104,101,32,116,105,109,101,115,116,97,109,112,32,111,102,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,116,104,97,116,32,104,97,118,101,32,101,108,97,112,115,101,100,32,115,105,110,99,101,92,110,32,42,32,116,104,101,32,85,110,105,120,32,101,112,111,99,104,32,40,49,32,74,97,110,117,97,114,121,32,49,57,55,48,32,48,48,58,48,48,58,48,48,32,85,84,67,41,46,92,110,32,42,92,110,32,42,32,64,115,116,97,116,105,99,92,110,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,42,32,64,115,105,110,99,101,32,50,46,52,46,48,92,110,32,42,32,64,99,97,116,101,103,111,114,121,32,68,97,116,101,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,116,105,109,101,115,116,97,109,112,46,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,92,110,32,42,32,95,46,100,101,102,101,114,40,102,117,110,99,116,105,111,110,40,115,116,97,109,112,41,32,123,92,110,32,42,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,95,46,110,111,119,40,41,32,45,32,115,116,97,109,112,41,59,92,110,32,42,32,125,44,32,95,46,110,111,119,40,41,41,59,92,110,32,42,32,47,47,32,61,62,32,76,111,103,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,109,105,108,108,105,115,101,99,111,110,100,115,32,105,116,32,116,111,111,107,32,102,111,114,32,116,104,101,32,100,101,102,101,114,114,101,100,32,105,110,118,111,99,97,116,105,111,110,46,92,110,32,42,47,92,110,118,97,114,32,110,111,119,32,61,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,114,111,111,116,46,68,97,116,101,46,110,111,119,40,41,59,92,110,125,59,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,110,111,119,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,110,111,119,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,116,111,78,117,109,98,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,116,111,78,117,109,98,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,118,97,114,32,98,97,115,101,84,114,105,109,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,95,98,97,115,101,84,114,105,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,95,98,97,115,101,84,114,105,109,46,106,115,92,34,41,44,92,110,32,32,32,32,105,115,79,98,106,101,99,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,115,79,98,106,101,99,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,105,115,79,98,106,101,99,116,46,106,115,92,34,41,44,92,110,32,32,32,32,105,115,83,121,109,98,111,108,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,105,115,83,121,109,98,111,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,105,115,83,121,109,98,111,108,46,106,115,92,34,41,59,92,110,92,110,47,42,42,32,85,115,101,100,32,97,115,32,114,101,102,101,114,101,110,99,101,115,32,102,111,114,32,118,97,114,105,111,117,115,32,96,78,117,109,98,101,114,96,32,99,111,110,115,116,97,110,116,115,46,32,42,47,92,110,118,97,114,32,78,65,78,32,61,32,48,32,47,32,48,59,92,110,92,110,47,42,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,98,97,100,32,115,105,103,110,101,100,32,104,101,120,97,100,101,99,105,109,97,108,32,115,116,114,105,110,103,32,118,97,108,117,101,115,46,32,42,47,92,110,118,97,114,32,114,101,73,115,66,97,100,72,101,120,32,61,32,47,94,91,45,43,93,48,120,91,48,45,57,97,45,102,93,43,36,47,105,59,92,110,92,110,47,42,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,98,105,110,97,114,121,32,115,116,114,105,110,103,32,118,97,108,117,101,115,46,32,42,47,92,110,118,97,114,32,114,101,73,115,66,105,110,97,114,121,32,61,32,47,94,48,98,91,48,49,93,43,36,47,105,59,92,110,92,110,47,42,42,32,85,115,101,100,32,116,111,32,100,101,116,101,99,116,32,111,99,116,97,108,32,115,116,114,105,110,103,32,118,97,108,117,101,115,46,32,42,47,92,110,118,97,114,32,114,101,73,115,79,99,116,97,108,32,61,32,47,94,48,111,91,48,45,55,93,43,36,47,105,59,92,110,92,110,47,42,42,32,66,117,105,108,116,45,105,110,32,109,101,116,104,111,100,32,114,101,102,101,114,101,110,99,101,115,32,119,105,116,104,111,117,116,32,97,32,100,101,112,101,110,100,101,110,99,121,32,111,110,32,96,114,111,111,116,96,46,32,42,47,92,110,118,97,114,32,102,114,101,101,80,97,114,115,101,73,110,116,32,61,32,112,97,114,115,101,73,110,116,59,92,110,92,110,47,42,42,92,110,32,42,32,67,111,110,118,101,114,116,115,32,96,118,97,108,117,101,96,32,116,111,32,97,32,110,117,109,98,101,114,46,92,110,32,42,92,110,32,42,32,64,115,116,97,116,105,99,92,110,32,42,32,64,109,101,109,98,101,114,79,102,32,95,92,110,32,42,32,64,115,105,110,99,101,32,52,46,48,46,48,92,110,32,42,32,64,99,97,116,101,103,111,114,121,32,76,97,110,103,92,110,32,42,32,64,112,97,114,97,109,32,123,42,125,32,118,97,108,117,101,32,84,104,101,32,118,97,108,117,101,32,116,111,32,112,114,111,99,101,115,115,46,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,82,101,116,117,114,110,115,32,116,104,101,32,110,117,109,98,101,114,46,92,110,32,42,32,64,101,120,97,109,112,108,101,92,110,32,42,92,110,32,42,32,95,46,116,111,78,117,109,98,101,114,40,51,46,50,41,59,92,110,32,42,32,47,47,32,61,62,32,51,46,50,92,110,32,42,92,110,32,42,32,95,46,116,111,78,117,109,98,101,114,40,78,117,109,98,101,114,46,77,73,78,95,86,65,76,85,69,41,59,92,110,32,42,32,47,47,32,61,62,32,53,101,45,51,50,52,92,110,32,42,92,110,32,42,32,95,46,116,111,78,117,109,98,101,114,40,73,110,102,105,110,105,116,121,41,59,92,110,32,42,32,47,47,32,61,62,32,73,110,102,105,110,105,116,121,92,110,32,42,92,110,32,42,32,95,46,116,111,78,117,109,98,101,114,40,39,51,46,50,39,41,59,92,110,32,42,32,47,47,32,61,62,32,51,46,50,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,116,111,78,117,109,98,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,32,39,110,117,109,98,101,114,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,125,92,110,32,32,105,102,32,40,105,115,83,121,109,98,111,108,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,78,65,78,59,92,110,32,32,125,92,110,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,118,97,114,32,111,116,104,101,114,32,61,32,116,121,112,101,111,102,32,118,97,108,117,101,46,118,97,108,117,101,79,102,32,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,118,97,108,117,101,46,118,97,108,117,101,79,102,40,41,32,58,32,118,97,108,117,101,59,92,110,32,32,32,32,118,97,108,117,101,32,61,32,105,115,79,98,106,101,99,116,40,111,116,104,101,114,41,32,63,32,40,111,116,104,101,114,32,43,32,39,39,41,32,58,32,111,116,104,101,114,59,92,110,32,32,125,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,33,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,48,32,63,32,118,97,108,117,101,32,58,32,43,118,97,108,117,101,59,92,110,32,32,125,92,110,32,32,118,97,108,117,101,32,61,32,98,97,115,101,84,114,105,109,40,118,97,108,117,101,41,59,92,110,32,32,118,97,114,32,105,115,66,105,110,97,114,121,32,61,32,114,101,73,115,66,105,110,97,114,121,46,116,101,115,116,40,118,97,108,117,101,41,59,92,110,32,32,114,101,116,117,114,110,32,40,105,115,66,105,110,97,114,121,32,124,124,32,114,101,73,115,79,99,116,97,108,46,116,101,115,116,40,118,97,108,117,101,41,41,92,110,32,32,32,32,63,32,102,114,101,101,80,97,114,115,101,73,110,116,40,118,97,108,117,101,46,115,108,105,99,101,40,50,41,44,32,105,115,66,105,110,97,114,121,32,63,32,50,32,58,32,56,41,92,110,32,32,32,32,58,32,40,114,101,73,115,66,97,100,72,101,120,46,116,101,115,116,40,118,97,108,117,101,41,32,63,32,78,65,78,32,58,32,43,118,97,108,117,101,41,59,92,110,125,92,110,92,110,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,116,111,78,117,109,98,101,114,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,116,111,78,117,109,98,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,109,117,116,97,116,105,111,110,111,98,115,101,114,118,101,114,45,115,104,105,109,47,100,105,115,116,47,109,117,116,97,116,105,111,110,111,98,115,101,114,118,101,114,46,109,105,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,109,117,116,97,116,105,111,110,111,98,115,101,114,118,101,114,45,115,104,105,109,47,100,105,115,116,47,109,117,116,97,116,105,111,110,111,98,115,101,114,118,101,114,46,109,105,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,41,32,123,10,10,101,118,97,108,40,34,47,47,32,109,117,116,97,116,105,111,110,111,98,115,101,114,118,101,114,45,115,104,105,109,32,118,48,46,51,46,51,32,40,103,105,116,104,117,98,46,99,111,109,47,109,101,103,97,119,97,99,47,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,46,106,115,41,92,110,47,47,32,65,117,116,104,111,114,115,58,32,71,114,97,101,109,101,32,89,101,97,116,101,115,32,40,103,105,116,104,117,98,46,99,111,109,47,109,101,103,97,119,97,99,41,32,92,110,47,42,92,110,32,83,104,105,109,32,102,111,114,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,105,110,116,101,114,102,97,99,101,92,110,32,65,117,116,104,111,114,58,32,71,114,97,101,109,101,32,89,101,97,116,101,115,32,40,103,105,116,104,117,98,46,99,111,109,47,109,101,103,97,119,97,99,41,92,110,32,82,101,112,111,115,105,116,111,114,121,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,109,101,103,97,119,97,99,47,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,46,106,115,92,110,32,76,105,99,101,110,115,101,58,32,87,84,70,80,76,32,86,50,44,32,50,48,48,52,32,40,119,116,102,112,108,46,110,101,116,41,46,92,110,32,84,104,111,117,103,104,32,99,114,101,100,105,116,32,97,110,100,32,115,116,97,114,105,110,103,32,116,104,101,32,114,101,112,111,32,119,105,108,108,32,109,97,107,101,32,109,101,32,102,101,101,108,32,112,114,101,116,116,121,44,32,121,111,117,32,99,97,110,32,109,111,100,105,102,121,32,97,110,100,32,114,101,100,105,115,116,114,105,98,117,116,101,32,97,115,32,121,111,117,32,112,108,101,97,115,101,46,92,110,32,65,116,116,101,109,112,116,115,32,116,111,32,102,111,108,108,111,119,32,115,112,101,99,32,40,104,116,116,112,115,58,47,47,119,119,119,46,119,51,46,111,114,103,47,84,82,47,100,111,109,47,35,109,117,116,97,116,105,111,110,45,111,98,115,101,114,118,101,114,115,41,32,97,115,32,99,108,111,115,101,108,121,32,97,115,32,112,111,115,115,105,98,108,101,32,102,111,114,32,110,97,116,105,118,101,32,106,97,118,97,115,99,114,105,112,116,92,110,32,83,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,87,101,98,75,105,116,47,119,101,98,107,105,116,47,98,108,111,98,47,109,97,115,116,101,114,47,83,111,117,114,99,101,47,87,101,98,67,111,114,101,47,100,111,109,47,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,46,99,112,112,32,102,111,114,32,99,117,114,114,101,110,116,32,119,101,98,107,105,116,32,115,111,117,114,99,101,32,99,43,43,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,92,110,42,47,92,110,119,105,110,100,111,119,46,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,124,124,40,119,105,110,100,111,119,46,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,61,102,117,110,99,116,105,111,110,40,121,41,123,102,117,110,99,116,105,111,110,32,122,40,97,41,123,116,104,105,115,46,105,61,91,93,59,116,104,105,115,46,109,61,97,125,102,117,110,99,116,105,111,110,32,75,40,97,41,123,40,102,117,110,99,116,105,111,110,32,99,40,41,123,118,97,114,32,100,61,97,46,116,97,107,101,82,101,99,111,114,100,115,40,41,59,100,46,108,101,110,103,116,104,38,38,97,46,109,40,100,44,97,41,59,97,46,104,61,115,101,116,84,105,109,101,111,117,116,40,99,44,122,46,95,112,101,114,105,111,100,41,125,41,40,41,125,102,117,110,99,116,105,111,110,32,114,40,97,41,123,118,97,114,32,98,61,123,116,121,112,101,58,110,117,108,108,44,116,97,114,103,101,116,58,110,117,108,108,44,97,100,100,101,100,78,111,100,101,115,58,91,93,44,114,101,109,111,118,101,100,78,111,100,101,115,58,91,93,44,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,58,110,117,108,108,44,110,101,120,116,83,105,98,108,105,110,103,58,110,117,108,108,44,97,116,116,114,105,98,117,116,101,78,97,109,101,58,110,117,108,108,44,97,116,116,114,105,98,117,116,101,78,97,109,101,115,112,97,99,101,58,110,117,108,108,44,111,108,100,86,97,108,117,101,58,110,117,108,108,125,44,99,59,102,111,114,40,99,32,105,110,32,97,41,98,91,99,93,33,61,61,121,38,38,97,91,99,93,33,61,61,121,38,38,40,98,91,99,93,61,97,91,99,93,41,59,114,101,116,117,114,110,32,98,125,102,117,110,99,116,105,111,110,32,76,40,97,44,98,41,123,118,97,114,32,99,61,69,40,97,44,98,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,100,41,123,118,97,114,32,102,61,100,46,108,101,110,103,116,104,59,98,46,97,38,38,51,61,61,61,97,46,110,111,100,101,84,121,112,101,38,38,92,110,97,46,110,111,100,101,86,97,108,117,101,33,61,61,99,46,97,38,38,100,46,112,117,115,104,40,110,101,119,32,114,40,123,116,121,112,101,58,92,34,99,104,97,114,97,99,116,101,114,68,97,116,97,92,34,44,116,97,114,103,101,116,58,97,44,111,108,100,86,97,108,117,101,58,99,46,97,125,41,41,59,98,46,98,38,38,99,46,98,38,38,67,40,100,44,97,44,99,46,98,44,98,46,102,41,59,105,102,40,98,46,99,124,124,98,46,103,41,118,97,114,32,109,61,77,40,100,44,97,44,99,44,98,41,59,105,102,40,109,124,124,100,46,108,101,110,103,116,104,33,61,61,102,41,99,61,69,40,97,44,98,41,125,125,102,117,110,99,116,105,111,110,32,78,40,97,44,98,41,123,114,101,116,117,114,110,32,98,46,118,97,108,117,101,125,102,117,110,99,116,105,111,110,32,79,40,97,44,98,41,123,114,101,116,117,114,110,92,34,115,116,121,108,101,92,34,33,61,61,98,46,110,97,109,101,63,98,46,118,97,108,117,101,58,97,46,115,116,121,108,101,46,99,115,115,84,101,120,116,125,102,117,110,99,116,105,111,110,32,67,40,97,44,98,44,99,44,100,41,123,102,111,114,40,118,97,114,32,102,61,123,125,44,109,61,98,46,97,116,116,114,105,98,117,116,101,115,44,107,44,103,44,112,61,109,46,108,101,110,103,116,104,59,112,45,45,59,41,107,61,109,91,112,93,44,103,61,107,46,110,97,109,101,44,100,38,38,100,91,103,93,61,61,61,121,124,124,40,70,40,98,44,107,41,33,61,61,99,91,103,93,38,38,97,46,112,117,115,104,40,114,40,123,116,121,112,101,58,92,34,97,116,116,114,105,98,117,116,101,115,92,34,44,116,97,114,103,101,116,58,98,44,97,116,116,114,105,98,117,116,101,78,97,109,101,58,103,44,111,108,100,86,97,108,117,101,58,99,91,103,93,44,97,116,116,114,105,98,117,116,101,78,97,109,101,115,112,97,99,101,58,107,46,110,97,109,101,115,112,97,99,101,85,82,73,125,41,41,44,102,91,103,93,61,33,48,41,59,102,111,114,40,103,32,105,110,32,99,41,102,91,103,93,124,124,97,46,112,117,115,104,40,114,40,123,116,97,114,103,101,116,58,98,44,92,110,116,121,112,101,58,92,34,97,116,116,114,105,98,117,116,101,115,92,34,44,97,116,116,114,105,98,117,116,101,78,97,109,101,58,103,44,111,108,100,86,97,108,117,101,58,99,91,103,93,125,41,41,125,102,117,110,99,116,105,111,110,32,77,40,97,44,98,44,99,44,100,41,123,102,117,110,99,116,105,111,110,32,102,40,103,44,112,44,116,44,113,44,120,41,123,118,97,114,32,65,61,103,46,108,101,110,103,116,104,45,49,59,120,61,45,126,40,40,65,45,120,41,47,50,41,59,102,111,114,40,118,97,114,32,104,44,108,44,101,59,101,61,103,46,112,111,112,40,41,59,41,104,61,116,91,101,46,106,93,44,108,61,113,91,101,46,108,93,44,100,46,99,38,38,120,38,38,77,97,116,104,46,97,98,115,40,101,46,106,45,101,46,108,41,62,61,65,38,38,40,97,46,112,117,115,104,40,114,40,123,116,121,112,101,58,92,34,99,104,105,108,100,76,105,115,116,92,34,44,116,97,114,103,101,116,58,112,44,97,100,100,101,100,78,111,100,101,115,58,91,104,93,44,114,101,109,111,118,101,100,78,111,100,101,115,58,91,104,93,44,110,101,120,116,83,105,98,108,105,110,103,58,104,46,110,101,120,116,83,105,98,108,105,110,103,44,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,58,104,46,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,125,41,41,44,120,45,45,41,44,100,46,98,38,38,108,46,98,38,38,67,40,97,44,104,44,108,46,98,44,100,46,102,41,44,100,46,97,38,38,51,61,61,61,104,46,110,111,100,101,84,121,112,101,38,38,104,46,110,111,100,101,86,97,108,117,101,33,61,61,108,46,97,38,38,97,46,112,117,115,104,40,114,40,123,116,121,112,101,58,92,34,99,104,97,114,97,99,116,101,114,68,97,116,97,92,34,44,116,97,114,103,101,116,58,104,44,111,108,100,86,97,108,117,101,58,108,46,97,125,41,41,44,100,46,103,38,38,109,40,104,44,108,41,125,102,117,110,99,116,105,111,110,32,109,40,103,44,112,41,123,102,111,114,40,118,97,114,32,116,61,103,46,99,104,105,108,100,78,111,100,101,115,44,92,110,113,61,112,46,99,44,120,61,116,46,108,101,110,103,116,104,44,65,61,113,63,113,46,108,101,110,103,116,104,58,48,44,104,44,108,44,101,44,110,44,118,44,66,61,48,44,119,61,48,44,117,61,48,59,119,60,120,124,124,117,60,65,59,41,110,61,116,91,119,93,44,118,61,40,101,61,113,91,117,93,41,38,38,101,46,110,111,100,101,44,110,61,61,61,118,63,40,100,46,98,38,38,101,46,98,38,38,67,40,97,44,110,44,101,46,98,44,100,46,102,41,44,100,46,97,38,38,101,46,97,33,61,61,121,38,38,110,46,110,111,100,101,86,97,108,117,101,33,61,61,101,46,97,38,38,97,46,112,117,115,104,40,114,40,123,116,121,112,101,58,92,34,99,104,97,114,97,99,116,101,114,68,97,116,97,92,34,44,116,97,114,103,101,116,58,110,44,111,108,100,86,97,108,117,101,58,101,46,97,125,41,41,44,108,38,38,102,40,108,44,103,44,116,44,113,44,66,41,44,100,46,103,38,38,40,110,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,124,124,101,46,99,38,38,101,46,99,46,108,101,110,103,116,104,41,38,38,109,40,110,44,101,41,44,119,43,43,44,117,43,43,41,58,40,107,61,33,48,44,104,124,124,40,104,61,123,125,44,108,61,91,93,41,44,110,38,38,40,104,91,101,61,71,40,110,41,93,124,124,40,104,91,101,93,61,33,48,44,45,49,61,61,61,40,101,61,72,40,113,44,110,44,117,44,92,34,110,111,100,101,92,34,41,41,63,100,46,99,38,38,40,97,46,112,117,115,104,40,114,40,123,116,121,112,101,58,92,34,99,104,105,108,100,76,105,115,116,92,34,44,116,97,114,103,101,116,58,103,44,97,100,100,101,100,78,111,100,101,115,58,91,110,93,44,110,101,120,116,83,105,98,108,105,110,103,58,110,46,110,101,120,116,83,105,98,108,105,110,103,44,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,58,110,46,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,125,41,41,44,66,43,43,41,58,108,46,112,117,115,104,40,123,106,58,119,44,108,58,101,125,41,41,44,92,110,119,43,43,41,44,118,38,38,118,33,61,61,116,91,119,93,38,38,40,104,91,101,61,71,40,118,41,93,124,124,40,104,91,101,93,61,33,48,44,45,49,61,61,61,40,101,61,72,40,116,44,118,44,119,41,41,63,100,46,99,38,38,40,97,46,112,117,115,104,40,114,40,123,116,121,112,101,58,92,34,99,104,105,108,100,76,105,115,116,92,34,44,116,97,114,103,101,116,58,112,46,110,111,100,101,44,114,101,109,111,118,101,100,78,111,100,101,115,58,91,118,93,44,110,101,120,116,83,105,98,108,105,110,103,58,113,91,117,43,49,93,44,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,58,113,91,117,45,49,93,125,41,41,44,66,45,45,41,58,108,46,112,117,115,104,40,123,106,58,101,44,108,58,117,125,41,41,44,117,43,43,41,41,59,108,38,38,102,40,108,44,103,44,116,44,113,44,66,41,125,118,97,114,32,107,59,109,40,98,44,99,41,59,114,101,116,117,114,110,32,107,125,102,117,110,99,116,105,111,110,32,69,40,97,44,98,41,123,118,97,114,32,99,61,33,48,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,109,40,102,41,123,118,97,114,32,107,61,123,110,111,100,101,58,102,125,59,33,98,46,97,124,124,51,33,61,61,102,46,110,111,100,101,84,121,112,101,38,38,56,33,61,61,102,46,110,111,100,101,84,121,112,101,63,40,98,46,98,38,38,99,38,38,49,61,61,61,102,46,110,111,100,101,84,121,112,101,38,38,40,107,46,98,61,73,40,102,46,97,116,116,114,105,98,117,116,101,115,44,102,117,110,99,116,105,111,110,40,103,44,112,41,123,105,102,40,33,98,46,102,124,124,98,46,102,91,112,46,110,97,109,101,93,41,103,91,112,46,110,97,109,101,93,61,70,40,102,44,112,41,59,114,101,116,117,114,110,32,103,125,44,123,125,41,41,44,99,38,38,40,98,46,99,124,124,98,46,97,124,124,98,46,98,38,38,98,46,103,41,38,38,40,107,46,99,61,80,40,102,46,99,104,105,108,100,78,111,100,101,115,44,109,41,41,44,99,61,98,46,103,41,58,107,46,97,61,92,110,102,46,110,111,100,101,86,97,108,117,101,59,114,101,116,117,114,110,32,107,125,40,97,41,125,102,117,110,99,116,105,111,110,32,71,40,97,41,123,116,114,121,123,114,101,116,117,114,110,32,97,46,105,100,124,124,40,97,46,109,111,95,105,100,61,97,46,109,111,95,105,100,124,124,74,43,43,41,125,99,97,116,99,104,40,98,41,123,116,114,121,123,114,101,116,117,114,110,32,97,46,110,111,100,101,86,97,108,117,101,125,99,97,116,99,104,40,99,41,123,114,101,116,117,114,110,32,74,43,43,125,125,125,102,117,110,99,116,105,111,110,32,80,40,97,44,98,41,123,102,111,114,40,118,97,114,32,99,61,91,93,44,100,61,48,59,100,60,97,46,108,101,110,103,116,104,59,100,43,43,41,99,91,100,93,61,98,40,97,91,100,93,44,100,44,97,41,59,114,101,116,117,114,110,32,99,125,102,117,110,99,116,105,111,110,32,73,40,97,44,98,44,99,41,123,102,111,114,40,118,97,114,32,100,61,48,59,100,60,97,46,108,101,110,103,116,104,59,100,43,43,41,99,61,98,40,99,44,97,91,100,93,44,100,44,97,41,59,114,101,116,117,114,110,32,99,125,102,117,110,99,116,105,111,110,32,72,40,97,44,98,44,99,44,100,41,123,102,111,114,40,59,99,60,97,46,108,101,110,103,116,104,59,99,43,43,41,105,102,40,40,100,63,97,91,99,93,91,100,93,58,97,91,99,93,41,61,61,61,98,41,114,101,116,117,114,110,32,99,59,114,101,116,117,114,110,45,49,125,122,46,95,112,101,114,105,111,100,61,51,48,59,122,46,112,114,111,116,111,116,121,112,101,61,123,111,98,115,101,114,118,101,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,102,111,114,40,118,97,114,32,99,61,123,98,58,33,33,40,98,46,97,116,116,114,105,98,117,116,101,115,124,124,98,46,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,124,124,98,46,97,116,116,114,105,98,117,116,101,79,108,100,86,97,108,117,101,41,44,99,58,33,33,98,46,99,104,105,108,100,76,105,115,116,44,103,58,33,33,98,46,115,117,98,116,114,101,101,44,92,110,97,58,33,40,33,98,46,99,104,97,114,97,99,116,101,114,68,97,116,97,38,38,33,98,46,99,104,97,114,97,99,116,101,114,68,97,116,97,79,108,100,86,97,108,117,101,41,125,44,100,61,116,104,105,115,46,105,44,102,61,48,59,102,60,100,46,108,101,110,103,116,104,59,102,43,43,41,100,91,102,93,46,115,61,61,61,97,38,38,100,46,115,112,108,105,99,101,40,102,44,49,41,59,98,46,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,38,38,40,99,46,102,61,73,40,98,46,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,44,102,117,110,99,116,105,111,110,40,109,44,107,41,123,109,91,107,93,61,33,48,59,114,101,116,117,114,110,32,109,125,44,123,125,41,41,59,100,46,112,117,115,104,40,123,115,58,97,44,111,58,76,40,97,44,99,41,125,41,59,116,104,105,115,46,104,124,124,75,40,116,104,105,115,41,125,44,116,97,107,101,82,101,99,111,114,100,115,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,97,61,91,93,44,98,61,116,104,105,115,46,105,44,99,61,48,59,99,60,98,46,108,101,110,103,116,104,59,99,43,43,41,98,91,99,93,46,111,40,97,41,59,114,101,116,117,114,110,32,97,125,44,100,105,115,99,111,110,110,101,99,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,61,91,93,59,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,104,41,59,116,104,105,115,46,104,61,110,117,108,108,125,125,59,118,97,114,32,68,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,92,34,105,92,34,41,59,68,46,115,116,121,108,101,46,116,111,112,61,48,59,118,97,114,32,70,61,40,68,61,92,34,110,117,108,108,92,34,33,61,68,46,97,116,116,114,105,98,117,116,101,115,46,115,116,121,108,101,46,118,97,108,117,101,41,63,78,58,79,44,74,61,49,59,114,101,116,117,114,110,32,122,125,40,118,111,105,100,32,48,41,41,59,92,110,47,47,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,109,117,116,97,116,105,111,110,111,98,115,101,114,118,101,114,46,109,97,112,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,109,117,116,97,116,105,111,110,111,98,115,101,114,118,101,114,45,115,104,105,109,47,100,105,115,116,47,109,117,116,97,116,105,111,110,111,98,115,101,114,118,101,114,46,109,105,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,101,120,112,111,114,116,115,41,32,123,10,10,101,118,97,108,40,34,40,102,117,110,99,116,105,111,110,32,40,103,108,111,98,97,108,44,32,102,97,99,116,111,114,121,41,32,123,92,110,32,32,32,32,32,116,114,117,101,32,63,32,102,97,99,116,111,114,121,40,101,120,112,111,114,116,115,41,32,58,92,110,32,32,32,32,48,59,92,110,125,40,116,104,105,115,44,32,40,102,117,110,99,116,105,111,110,32,40,101,120,112,111,114,116,115,41,32,123,32,39,117,115,101,32,115,116,114,105,99,116,39,59,92,110,92,110,32,32,32,32,101,120,112,111,114,116,115,46,80,105,112,115,77,111,100,101,32,61,32,118,111,105,100,32,48,59,92,110,32,32,32,32,40,102,117,110,99,116,105,111,110,32,40,80,105,112,115,77,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,80,105,112,115,77,111,100,101,91,92,34,82,97,110,103,101,92,34,93,32,61,32,92,34,114,97,110,103,101,92,34,59,92,110,32,32,32,32,32,32,32,32,80,105,112,115,77,111,100,101,91,92,34,83,116,101,112,115,92,34,93,32,61,32,92,34,115,116,101,112,115,92,34,59,92,110,32,32,32,32,32,32,32,32,80,105,112,115,77,111,100,101,91,92,34,80,111,115,105,116,105,111,110,115,92,34,93,32,61,32,92,34,112,111,115,105,116,105,111,110,115,92,34,59,92,110,32,32,32,32,32,32,32,32,80,105,112,115,77,111,100,101,91,92,34,67,111,117,110,116,92,34,93,32,61,32,92,34,99,111,117,110,116,92,34,59,92,110,32,32,32,32,32,32,32,32,80,105,112,115,77,111,100,101,91,92,34,86,97,108,117,101,115,92,34,93,32,61,32,92,34,118,97,108,117,101,115,92,34,59,92,110,32,32,32,32,125,41,40,101,120,112,111,114,116,115,46,80,105,112,115,77,111,100,101,32,124,124,32,40,101,120,112,111,114,116,115,46,80,105,112,115,77,111,100,101,32,61,32,123,125,41,41,59,92,110,32,32,32,32,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,32,61,32,118,111,105,100,32,48,59,92,110,32,32,32,32,40,102,117,110,99,116,105,111,110,32,40,80,105,112,115,84,121,112,101,41,32,123,92,110,32,32,32,32,32,32,32,32,80,105,112,115,84,121,112,101,91,80,105,112,115,84,121,112,101,91,92,34,78,111,110,101,92,34,93,32,61,32,45,49,93,32,61,32,92,34,78,111,110,101,92,34,59,92,110,32,32,32,32,32,32,32,32,80,105,112,115,84,121,112,101,91,80,105,112,115,84,121,112,101,91,92,34,78,111,86,97,108,117,101,92,34,93,32,61,32,48,93,32,61,32,92,34,78,111,86,97,108,117,101,92,34,59,92,110,32,32,32,32,32,32,32,32,80,105,112,115,84,121,112,101,91,80,105,112,115,84,121,112,101,91,92,34,76,97,114,103,101,86,97,108,117,101,92,34,93,32,61,32,49,93,32,61,32,92,34,76,97,114,103,101,86,97,108,117,101,92,34,59,92,110,32,32,32,32,32,32,32,32,80,105,112,115,84,121,112,101,91,80,105,112,115,84,121,112,101,91,92,34,83,109,97,108,108,86,97,108,117,101,92,34,93,32,61,32,50,93,32,61,32,92,34,83,109,97,108,108,86,97,108,117,101,92,34,59,92,110,32,32,32,32,125,41,40,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,32,124,124,32,40,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,32,61,32,123,125,41,41,59,92,110,32,32,32,32,47,47,114,101,103,105,111,110,32,72,101,108,112,101,114,32,77,101,116,104,111,100,115,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,86,97,108,105,100,70,111,114,109,97,116,116,101,114,40,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,86,97,108,105,100,80,97,114,116,105,97,108,70,111,114,109,97,116,116,101,114,40,101,110,116,114,121,41,32,38,38,32,116,121,112,101,111,102,32,101,110,116,114,121,46,102,114,111,109,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,86,97,108,105,100,80,97,114,116,105,97,108,70,111,114,109,97,116,116,101,114,40,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,112,97,114,116,105,97,108,32,102,111,114,109,97,116,116,101,114,115,32,111,110,108,121,32,110,101,101,100,32,97,32,116,111,32,102,117,110,99,116,105,111,110,32,97,110,100,32,110,111,116,32,97,32,102,114,111,109,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,101,110,116,114,121,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,32,38,38,32,116,121,112,101,111,102,32,101,110,116,114,121,46,116,111,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,69,108,101,109,101,110,116,40,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,101,108,46,112,97,114,101,110,116,69,108,101,109,101,110,116,46,114,101,109,111,118,101,67,104,105,108,100,40,101,108,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,83,101,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,33,61,61,32,110,117,108,108,32,38,38,32,118,97,108,117,101,32,33,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,66,105,110,100,97,98,108,101,32,118,101,114,115,105,111,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,82,101,109,111,118,101,115,32,100,117,112,108,105,99,97,116,101,115,32,102,114,111,109,32,97,110,32,97,114,114,97,121,46,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,117,110,105,113,117,101,40,97,114,114,97,121,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,116,104,105,115,91,97,93,32,63,32,40,116,104,105,115,91,97,93,32,61,32,116,114,117,101,41,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,44,32,123,125,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,82,111,117,110,100,32,97,32,118,97,108,117,101,32,116,111,32,116,104,101,32,99,108,111,115,101,115,116,32,39,116,111,39,46,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,108,111,115,101,115,116,40,118,97,108,117,101,44,32,116,111,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,118,97,108,117,101,32,47,32,116,111,41,32,42,32,116,111,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,67,117,114,114,101,110,116,32,112,111,115,105,116,105,111,110,32,111,102,32,97,110,32,101,108,101,109,101,110,116,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,100,111,99,117,109,101,110,116,46,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,111,102,102,115,101,116,40,101,108,101,109,44,32,111,114,105,101,110,116,97,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,99,116,32,61,32,101,108,101,109,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,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,111,99,32,61,32,101,108,101,109,46,111,119,110,101,114,68,111,99,117,109,101,110,116,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,111,99,69,108,101,109,32,61,32,100,111,99,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,97,103,101,79,102,102,115,101,116,32,61,32,103,101,116,80,97,103,101,79,102,102,115,101,116,40,100,111,99,41,59,92,110,32,32,32,32,32,32,32,32,47,47,32,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,32,99,111,110,116,97,105,110,115,32,108,101,102,116,32,115,99,114,111,108,108,32,105,110,32,67,104,114,111,109,101,32,111,110,32,65,110,100,114,111,105,100,46,92,110,32,32,32,32,32,32,32,32,47,47,32,73,32,104,97,118,101,110,39,116,32,102,111,117,110,100,32,97,32,102,101,97,116,117,114,101,32,100,101,116,101,99,116,105,111,110,32,116,104,97,116,32,112,114,111,118,101,115,32,116,104,105,115,46,32,87,111,114,115,116,32,99,97,115,101,92,110,32,32,32,32,32,32,32,32,47,47,32,115,99,101,110,97,114,105,111,32,111,110,32,109,105,115,45,109,97,116,99,104,58,32,116,104,101,32,39,116,97,112,39,32,102,101,97,116,117,114,101,32,111,110,32,104,111,114,105,122,111,110,116,97,108,32,115,108,105,100,101,114,115,32,98,114,101,97,107,115,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,47,119,101,98,107,105,116,46,42,67,104,114,111,109,101,46,42,77,111,98,105,108,101,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,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,103,101,79,102,102,115,101,116,46,120,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,114,105,101,110,116,97,116,105,111,110,32,63,32,114,101,99,116,46,116,111,112,32,43,32,112,97,103,101,79,102,102,115,101,116,46,121,32,45,32,100,111,99,69,108,101,109,46,99,108,105,101,110,116,84,111,112,32,58,32,114,101,99,116,46,108,101,102,116,32,43,32,112,97,103,101,79,102,102,115,101,116,46,120,32,45,32,100,111,99,69,108,101,109,46,99,108,105,101,110,116,76,101,102,116,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,67,104,101,99,107,115,32,119,104,101,116,104,101,114,32,97,32,118,97,108,117,101,32,105,115,32,110,117,109,101,114,105,99,97,108,46,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,78,117,109,101,114,105,99,40,97,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,97,32,61,61,61,32,92,34,110,117,109,98,101,114,92,34,32,38,38,32,33,105,115,78,97,78,40,97,41,32,38,38,32,105,115,70,105,110,105,116,101,40,97,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,83,101,116,115,32,97,32,99,108,97,115,115,32,97,110,100,32,114,101,109,111,118,101,115,32,105,116,32,97,102,116,101,114,32,91,100,117,114,97,116,105,111,110,93,32,109,115,46,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,100,100,67,108,97,115,115,70,111,114,40,101,108,101,109,101,110,116,44,32,99,108,97,115,115,78,97,109,101,44,32,100,117,114,97,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,117,114,97,116,105,111,110,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,101,108,101,109,101,110,116,44,32,99,108,97,115,115,78,97,109,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,67,108,97,115,115,40,101,108,101,109,101,110,116,44,32,99,108,97,115,115,78,97,109,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,32,100,117,114,97,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,76,105,109,105,116,115,32,97,32,118,97,108,117,101,32,116,111,32,48,32,45,32,49,48,48,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,108,105,109,105,116,40,97,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,77,97,116,104,46,109,105,110,40,97,44,32,49,48,48,41,44,32,48,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,87,114,97,112,115,32,97,32,118,97,114,105,97,98,108,101,32,97,115,32,97,110,32,97,114,114,97,121,44,32,105,102,32,105,116,32,105,115,110,39,116,32,111,110,101,32,121,101,116,46,92,110,32,32,32,32,47,47,32,78,111,116,101,32,116,104,97,116,32,97,110,32,105,110,112,117,116,32,97,114,114,97,121,32,105,115,32,114,101,116,117,114,110,101,100,32,98,121,32,114,101,102,101,114,101,110,99,101,33,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,115,65,114,114,97,121,40,97,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,41,32,63,32,97,32,58,32,91,97,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,67,111,117,110,116,115,32,100,101,99,105,109,97,108,115,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,99,111,117,110,116,68,101,99,105,109,97,108,115,40,110,117,109,83,116,114,41,32,123,92,110,32,32,32,32,32,32,32,32,110,117,109,83,116,114,32,61,32,83,116,114,105,110,103,40,110,117,109,83,116,114,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,105,101,99,101,115,32,61,32,110,117,109,83,116,114,46,115,112,108,105,116,40,92,34,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,105,101,99,101,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,112,105,101,99,101,115,91,49,93,46,108,101,110,103,116,104,32,58,32,48,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,104,116,116,112,58,47,47,121,111,117,109,105,103,104,116,110,111,116,110,101,101,100,106,113,117,101,114,121,46,99,111,109,47,35,97,100,100,95,99,108,97,115,115,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,97,100,100,67,108,97,115,115,40,101,108,44,32,99,108,97,115,115,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,108,46,99,108,97,115,115,76,105,115,116,32,38,38,32,33,47,92,92,115,47,46,116,101,115,116,40,99,108,97,115,115,78,97,109,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,99,108,97,115,115,78,97,109,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,46,99,108,97,115,115,78,97,109,101,32,43,61,32,92,34,32,92,34,32,43,32,99,108,97,115,115,78,97,109,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,104,116,116,112,58,47,47,121,111,117,109,105,103,104,116,110,111,116,110,101,101,100,106,113,117,101,114,121,46,99,111,109,47,35,114,101,109,111,118,101,95,99,108,97,115,115,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,67,108,97,115,115,40,101,108,44,32,99,108,97,115,115,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,108,46,99,108,97,115,115,76,105,115,116,32,38,38,32,33,47,92,92,115,47,46,116,101,115,116,40,99,108,97,115,115,78,97,109,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,99,108,97,115,115,78,97,109,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,46,99,108,97,115,115,78,97,109,101,32,61,32,101,108,46,99,108,97,115,115,78,97,109,101,46,114,101,112,108,97,99,101,40,110,101,119,32,82,101,103,69,120,112,40,92,34,40,94,124,92,92,92,92,98,41,92,34,32,43,32,99,108,97,115,115,78,97,109,101,46,115,112,108,105,116,40,92,34,32,92,34,41,46,106,111,105,110,40,92,34,124,92,34,41,32,43,32,92,34,40,92,92,92,92,98,124,36,41,92,34,44,32,92,34,103,105,92,34,41,44,32,92,34,32,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,112,108,97,105,110,106,115,46,99,111,109,47,106,97,118,97,115,99,114,105,112,116,47,97,116,116,114,105,98,117,116,101,115,47,97,100,100,105,110,103,45,114,101,109,111,118,105,110,103,45,97,110,100,45,116,101,115,116,105,110,103,45,102,111,114,45,99,108,97,115,115,101,115,45,57,47,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,104,97,115,67,108,97,115,115,40,101,108,44,32,99,108,97,115,115,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,108,46,99,108,97,115,115,76,105,115,116,32,63,32,101,108,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,99,108,97,115,115,78,97,109,101,41,32,58,32,110,101,119,32,82,101,103,69,120,112,40,92,34,92,92,92,92,98,92,34,32,43,32,99,108,97,115,115,78,97,109,101,32,43,32,92,34,92,92,92,92,98,92,34,41,46,116,101,115,116,40,101,108,46,99,108,97,115,115,78,97,109,101,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,100,101,118,101,108,111,112,101,114,46,109,111,122,105,108,108,97,46,111,114,103,47,101,110,45,85,83,47,100,111,99,115,47,87,101,98,47,65,80,73,47,87,105,110,100,111,119,47,115,99,114,111,108,108,89,35,78,111,116,101,115,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,80,97,103,101,79,102,102,115,101,116,40,100,111,99,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,117,112,112,111,114,116,80,97,103,101,79,102,102,115,101,116,32,61,32,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,32,33,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,115,67,83,83,49,67,111,109,112,97,116,32,61,32,40,100,111,99,46,99,111,109,112,97,116,77,111,100,101,32,124,124,32,92,34,92,34,41,32,61,61,61,32,92,34,67,83,83,49,67,111,109,112,97,116,92,34,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,120,32,61,32,115,117,112,112,111,114,116,80,97,103,101,79,102,102,115,101,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,105,115,67,83,83,49,67,111,109,112,97,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,100,111,99,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,100,111,99,46,98,111,100,121,46,115,99,114,111,108,108,76,101,102,116,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,121,32,61,32,115,117,112,112,111,114,116,80,97,103,101,79,102,102,115,101,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,119,105,110,100,111,119,46,112,97,103,101,89,79,102,102,115,101,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,105,115,67,83,83,49,67,111,109,112,97,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,100,111,99,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,100,111,99,46,98,111,100,121,46,115,99,114,111,108,108,84,111,112,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,120,58,32,120,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,121,58,32,121,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,119,101,32,112,114,111,118,105,100,101,32,97,32,102,117,110,99,116,105,111,110,32,116,111,32,99,111,109,112,117,116,101,32,99,111,110,115,116,97,110,116,115,32,105,110,115,116,101,97,100,92,110,32,32,32,32,47,47,32,111,102,32,97,99,99,101,115,115,105,110,103,32,119,105,110,100,111,119,46,42,32,97,115,32,115,111,111,110,32,97,115,32,116,104,101,32,109,111,100,117,108,101,32,110,101,101,100,115,32,105,116,92,110,32,32,32,32,47,47,32,115,111,32,116,104,97,116,32,119,101,32,100,111,32,110,111,116,32,99,111,109,112,117,116,101,32,97,110,121,116,104,105,110,103,32,105,102,32,110,111,116,32,110,101,101,100,101,100,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,65,99,116,105,111,110,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,101,116,101,114,109,105,110,101,32,116,104,101,32,101,118,101,110,116,115,32,116,111,32,98,105,110,100,46,32,73,69,49,49,32,105,109,112,108,101,109,101,110,116,115,32,112,111,105,110,116,101,114,69,118,101,110,116,115,32,119,105,116,104,111,117,116,92,110,32,32,32,32,32,32,32,32,47,47,32,97,32,112,114,101,102,105,120,44,32,119,104,105,99,104,32,98,114,101,97,107,115,32,99,111,109,112,97,116,105,98,105,108,105,116,121,32,119,105,116,104,32,116,104,101,32,73,69,49,48,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,119,105,110,100,111,119,46,110,97,118,105,103,97,116,111,114,46,112,111,105,110,116,101,114,69,110,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,58,32,92,34,112,111,105,110,116,101,114,100,111,119,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,118,101,58,32,92,34,112,111,105,110,116,101,114,109,111,118,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,58,32,92,34,112,111,105,110,116,101,114,117,112,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,119,105,110,100,111,119,46,110,97,118,105,103,97,116,111,114,46,109,115,80,111,105,110,116,101,114,69,110,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,58,32,92,34,77,83,80,111,105,110,116,101,114,68,111,119,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,118,101,58,32,92,34,77,83,80,111,105,110,116,101,114,77,111,118,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,58,32,92,34,77,83,80,111,105,110,116,101,114,85,112,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,58,32,92,34,109,111,117,115,101,100,111,119,110,32,116,111,117,99,104,115,116,97,114,116,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,118,101,58,32,92,34,109,111,117,115,101,109,111,118,101,32,116,111,117,99,104,109,111,118,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,58,32,92,34,109,111,117,115,101,117,112,32,116,111,117,99,104,101,110,100,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,87,73,67,71,47,69,118,101,110,116,76,105,115,116,101,110,101,114,79,112,116,105,111,110,115,47,98,108,111,98,47,103,104,45,112,97,103,101,115,47,101,120,112,108,97,105,110,101,114,46,109,100,92,110,32,32,32,32,47,47,32,73,115,115,117,101,32,35,55,56,53,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,83,117,112,112,111,114,116,115,80,97,115,115,105,118,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,117,112,112,111,114,116,115,80,97,115,115,105,118,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,47,42,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,32,42,47,92,110,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,112,116,115,32,61,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,92,34,112,97,115,115,105,118,101,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,117,112,112,111,114,116,115,80,97,115,115,105,118,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,64,116,115,45,105,103,110,111,114,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,116,101,115,116,92,34,44,32,110,117,108,108,44,32,111,112,116,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,97,116,99,104,32,40,101,41,32,123,32,125,92,110,32,32,32,32,32,32,32,32,47,42,32,101,115,108,105,110,116,45,101,110,97,98,108,101,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,117,112,112,111,114,116,115,80,97,115,115,105,118,101,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,83,117,112,112,111,114,116,115,84,111,117,99,104,65,99,116,105,111,110,78,111,110,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,119,105,110,100,111,119,46,67,83,83,32,38,38,32,67,83,83,46,115,117,112,112,111,114,116,115,32,38,38,32,67,83,83,46,115,117,112,112,111,114,116,115,40,92,34,116,111,117,99,104,45,97,99,116,105,111,110,92,34,44,32,92,34,110,111,110,101,92,34,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,101,110,100,114,101,103,105,111,110,92,110,32,32,32,32,47,47,114,101,103,105,111,110,32,82,97,110,103,101,32,67,97,108,99,117,108,97,116,105,111,110,92,110,32,32,32,32,47,47,32,68,101,116,101,114,109,105,110,101,32,116,104,101,32,115,105,122,101,32,111,102,32,97,32,115,117,98,45,114,97,110,103,101,32,105,110,32,114,101,108,97,116,105,111,110,32,116,111,32,97,32,102,117,108,108,32,114,97,110,103,101,46,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,117,98,82,97,110,103,101,82,97,116,105,111,40,112,97,44,32,112,98,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,49,48,48,32,47,32,40,112,98,32,45,32,112,97,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,40,112,101,114,99,101,110,116,97,103,101,41,32,72,111,119,32,109,97,110,121,32,112,101,114,99,101,110,116,32,105,115,32,116,104,105,115,32,118,97,108,117,101,32,111,102,32,116,104,105,115,32,114,97,110,103,101,63,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,114,111,109,80,101,114,99,101,110,116,97,103,101,40,114,97,110,103,101,44,32,118,97,108,117,101,44,32,115,116,97,114,116,82,97,110,103,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,118,97,108,117,101,32,42,32,49,48,48,41,32,47,32,40,114,97,110,103,101,91,115,116,97,114,116,82,97,110,103,101,32,43,32,49,93,32,45,32,114,97,110,103,101,91,115,116,97,114,116,82,97,110,103,101,93,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,40,112,101,114,99,101,110,116,97,103,101,41,32,87,104,101,114,101,32,105,115,32,116,104,105,115,32,118,97,108,117,101,32,111,110,32,116,104,105,115,32,114,97,110,103,101,63,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,80,101,114,99,101,110,116,97,103,101,40,114,97,110,103,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,114,111,109,80,101,114,99,101,110,116,97,103,101,40,114,97,110,103,101,44,32,114,97,110,103,101,91,48,93,32,60,32,48,32,63,32,118,97,108,117,101,32,43,32,77,97,116,104,46,97,98,115,40,114,97,110,103,101,91,48,93,41,32,58,32,118,97,108,117,101,32,45,32,114,97,110,103,101,91,48,93,44,32,48,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,40,118,97,108,117,101,41,32,72,111,119,32,109,117,99,104,32,105,115,32,116,104,105,115,32,112,101,114,99,101,110,116,97,103,101,32,111,110,32,116,104,105,115,32,114,97,110,103,101,63,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,80,101,114,99,101,110,116,97,103,101,40,114,97,110,103,101,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,118,97,108,117,101,32,42,32,40,114,97,110,103,101,91,49,93,32,45,32,114,97,110,103,101,91,48,93,41,41,32,47,32,49,48,48,32,43,32,114,97,110,103,101,91,48,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,74,40,118,97,108,117,101,44,32,97,114,114,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,106,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,118,97,108,117,101,32,62,61,32,97,114,114,91,106,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,106,32,43,61,32,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,106,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,40,112,101,114,99,101,110,116,97,103,101,41,32,73,110,112,117,116,32,97,32,118,97,108,117,101,44,32,102,105,110,100,32,119,104,101,114,101,44,32,111,110,32,97,32,115,99,97,108,101,32,111,102,32,48,45,49,48,48,44,32,105,116,32,97,112,112,108,105,101,115,46,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,83,116,101,112,112,105,110,103,40,120,86,97,108,44,32,120,80,99,116,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,62,61,32,120,86,97,108,46,115,108,105,99,101,40,45,49,41,91,48,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,49,48,48,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,106,32,61,32,103,101,116,74,40,118,97,108,117,101,44,32,120,86,97,108,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,32,61,32,120,86,97,108,91,106,32,45,32,49,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,98,32,61,32,120,86,97,108,91,106,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,97,32,61,32,120,80,99,116,91,106,32,45,32,49,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,98,32,61,32,120,80,99,116,91,106,93,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,32,43,32,116,111,80,101,114,99,101,110,116,97,103,101,40,91,118,97,44,32,118,98,93,44,32,118,97,108,117,101,41,32,47,32,115,117,98,82,97,110,103,101,82,97,116,105,111,40,112,97,44,32,112,98,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,40,118,97,108,117,101,41,32,73,110,112,117,116,32,97,32,112,101,114,99,101,110,116,97,103,101,44,32,102,105,110,100,32,119,104,101,114,101,32,105,116,32,105,115,32,111,110,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,114,97,110,103,101,46,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,102,114,111,109,83,116,101,112,112,105,110,103,40,120,86,97,108,44,32,120,80,99,116,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,101,114,101,32,105,115,32,110,111,32,114,97,110,103,101,32,103,114,111,117,112,32,116,104,97,116,32,102,105,116,115,32,49,48,48,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,62,61,32,49,48,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,120,86,97,108,46,115,108,105,99,101,40,45,49,41,91,48,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,106,32,61,32,103,101,116,74,40,118,97,108,117,101,44,32,120,80,99,116,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,32,61,32,120,86,97,108,91,106,32,45,32,49,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,98,32,61,32,120,86,97,108,91,106,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,97,32,61,32,120,80,99,116,91,106,32,45,32,49,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,98,32,61,32,120,80,99,116,91,106,93,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,80,101,114,99,101,110,116,97,103,101,40,91,118,97,44,32,118,98,93,44,32,40,118,97,108,117,101,32,45,32,112,97,41,32,42,32,115,117,98,82,97,110,103,101,82,97,116,105,111,40,112,97,44,32,112,98,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,40,112,101,114,99,101,110,116,97,103,101,41,32,71,101,116,32,116,104,101,32,115,116,101,112,32,116,104,97,116,32,97,112,112,108,105,101,115,32,97,116,32,97,32,99,101,114,116,97,105,110,32,118,97,108,117,101,46,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,83,116,101,112,40,120,80,99,116,44,32,120,83,116,101,112,115,44,32,115,110,97,112,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,49,48,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,106,32,61,32,103,101,116,74,40,118,97,108,117,101,44,32,120,80,99,116,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,32,61,32,120,80,99,116,91,106,32,45,32,49,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,98,32,61,32,120,80,99,116,91,106,93,59,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,39,115,110,97,112,39,32,105,115,32,115,101,116,44,32,115,116,101,112,115,32,97,114,101,32,117,115,101,100,32,97,115,32,102,105,120,101,100,32,112,111,105,110,116,115,32,111,110,32,116,104,101,32,115,108,105,100,101,114,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,110,97,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,110,100,32,116,104,101,32,99,108,111,115,101,115,116,32,112,111,115,105,116,105,111,110,44,32,97,32,111,114,32,98,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,45,32,97,32,62,32,40,98,32,45,32,97,41,32,47,32,50,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,120,83,116,101,112,115,91,106,32,45,32,49,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,120,80,99,116,91,106,32,45,32,49,93,32,43,32,99,108,111,115,101,115,116,40,118,97,108,117,101,32,45,32,120,80,99,116,91,106,32,45,32,49,93,44,32,120,83,116,101,112,115,91,106,32,45,32,49,93,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,101,110,100,114,101,103,105,111,110,92,110,32,32,32,32,47,47,114,101,103,105,111,110,32,83,112,101,99,116,114,117,109,92,110,32,32,32,32,118,97,114,32,83,112,101,99,116,114,117,109,32,61,32,47,42,42,32,64,99,108,97,115,115,32,42,47,32,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,83,112,101,99,116,114,117,109,40,101,110,116,114,121,44,32,115,110,97,112,44,32,115,105,110,103,108,101,83,116,101,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,80,99,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,86,97,108,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,83,116,101,112,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,78,117,109,83,116,101,112,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,72,105,103,104,101,115,116,67,111,109,112,108,101,116,101,83,116,101,112,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,83,116,101,112,115,32,61,32,91,115,105,110,103,108,101,83,116,101,112,32,124,124,32,102,97,108,115,101,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,78,117,109,83,116,101,112,115,32,61,32,91,102,97,108,115,101,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,110,97,112,32,61,32,115,110,97,112,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,114,100,101,114,101,100,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,112,32,116,104,101,32,111,98,106,101,99,116,32,107,101,121,115,32,116,111,32,97,110,32,97,114,114,97,121,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,101,110,116,114,121,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,114,100,101,114,101,100,46,112,117,115,104,40,91,97,115,65,114,114,97,121,40,101,110,116,114,121,91,105,110,100,101,120,93,41,44,32,105,110,100,101,120,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,111,114,116,32,97,108,108,32,101,110,116,114,105,101,115,32,98,121,32,118,97,108,117,101,32,40,110,117,109,101,114,105,99,32,115,111,114,116,41,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,114,100,101,114,101,100,46,115,111,114,116,40,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,91,48,93,91,48,93,32,45,32,98,91,48,93,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,97,108,108,32,101,110,116,114,105,101,115,32,116,111,32,115,117,98,114,97,110,103,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,110,100,101,120,32,61,32,48,59,32,105,110,100,101,120,32,60,32,111,114,100,101,114,101,100,46,108,101,110,103,116,104,59,32,105,110,100,101,120,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,104,97,110,100,108,101,69,110,116,114,121,80,111,105,110,116,40,111,114,100,101,114,101,100,91,105,110,100,101,120,93,91,49,93,44,32,111,114,100,101,114,101,100,91,105,110,100,101,120,93,91,48,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,116,111,114,101,32,116,104,101,32,97,99,116,117,97,108,32,115,116,101,112,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,120,83,116,101,112,115,32,105,115,32,115,111,114,116,101,100,32,105,110,32,116,104,101,32,115,97,109,101,32,111,114,100,101,114,32,97,115,32,120,80,99,116,32,97,110,100,32,120,86,97,108,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,78,117,109,83,116,101,112,115,32,61,32,116,104,105,115,46,120,83,116,101,112,115,46,115,108,105,99,101,40,48,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,97,108,108,32,110,117,109,101,114,105,99,32,115,116,101,112,115,32,116,111,32,116,104,101,32,112,101,114,99,101,110,116,97,103,101,32,111,102,32,116,104,101,32,115,117,98,114,97,110,103,101,32,116,104,101,121,32,114,101,112,114,101,115,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,110,100,101,120,32,61,32,48,59,32,105,110,100,101,120,32,60,32,116,104,105,115,46,120,78,117,109,83,116,101,112,115,46,108,101,110,103,116,104,59,32,105,110,100,101,120,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,104,97,110,100,108,101,83,116,101,112,80,111,105,110,116,40,105,110,100,101,120,44,32,116,104,105,115,46,120,78,117,109,83,116,101,112,115,91,105,110,100,101,120,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,83,112,101,99,116,114,117,109,46,112,114,111,116,111,116,121,112,101,46,103,101,116,68,105,115,116,97,110,99,101,32,61,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,105,115,116,97,110,99,101,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,110,100,101,120,32,61,32,48,59,32,105,110,100,101,120,32,60,32,116,104,105,115,46,120,78,117,109,83,116,101,112,115,46,108,101,110,103,116,104,32,45,32,49,59,32,105,110,100,101,120,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,108,97,115,116,32,92,34,114,97,110,103,101,92,34,32,99,97,110,39,116,32,99,111,110,116,97,105,110,32,115,116,101,112,32,115,105,122,101,32,97,115,32,105,116,32,105,115,32,112,117,114,101,108,121,32,97,110,32,101,110,100,112,111,105,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,101,112,32,61,32,116,104,105,115,46,120,78,117,109,83,116,101,112,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,116,101,112,32,38,38,32,40,118,97,108,117,101,32,47,32,115,116,101,112,41,32,37,32,49,32,33,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,108,105,109,105,116,39,44,32,39,109,97,114,103,105,110,39,32,97,110,100,32,39,112,97,100,100,105,110,103,39,32,111,102,32,92,34,32,43,92,110,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,104,105,115,46,120,80,99,116,91,105,110,100,101,120,93,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,37,32,114,97,110,103,101,32,109,117,115,116,32,98,101,32,100,105,118,105,115,105,98,108,101,32,98,121,32,115,116,101,112,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,97,108,99,117,108,97,116,101,32,112,101,114,99,101,110,116,117,97,108,32,100,105,115,116,97,110,99,101,32,105,110,32,99,117,114,114,101,110,116,32,114,97,110,103,101,32,111,102,32,108,105,109,105,116,44,32,109,97,114,103,105,110,32,111,114,32,112,97,100,100,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,105,115,116,97,110,99,101,115,91,105,110,100,101,120,93,32,61,32,102,114,111,109,80,101,114,99,101,110,116,97,103,101,40,116,104,105,115,46,120,86,97,108,44,32,118,97,108,117,101,44,32,105,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,105,115,116,97,110,99,101,115,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,47,47,32,67,97,108,99,117,108,97,116,101,32,116,104,101,32,112,101,114,99,101,110,116,117,97,108,32,100,105,115,116,97,110,99,101,32,111,118,101,114,32,116,104,101,32,119,104,111,108,101,32,115,99,97,108,101,32,111,102,32,114,97,110,103,101,115,46,92,110,32,32,32,32,32,32,32,32,47,47,32,100,105,114,101,99,116,105,111,110,58,32,48,32,61,32,98,97,99,107,119,97,114,100,115,32,47,32,49,32,61,32,102,111,114,119,97,114,100,115,92,110,32,32,32,32,32,32,32,32,83,112,101,99,116,114,117,109,46,112,114,111,116,111,116,121,112,101,46,103,101,116,65,98,115,111,108,117,116,101,68,105,115,116,97,110,99,101,32,61,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,44,32,100,105,115,116,97,110,99,101,115,44,32,100,105,114,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,120,80,99,116,95,105,110,100,101,120,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,97,108,99,117,108,97,116,101,32,114,97,110,103,101,32,119,104,101,114,101,32,116,111,32,115,116,97,114,116,32,99,97,108,99,117,108,97,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,60,32,116,104,105,115,46,120,80,99,116,91,116,104,105,115,46,120,80,99,116,46,108,101,110,103,116,104,32,45,32,49,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,118,97,108,117,101,32,62,32,116,104,105,115,46,120,80,99,116,91,120,80,99,116,95,105,110,100,101,120,32,43,32,49,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,120,80,99,116,95,105,110,100,101,120,43,43,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,116,104,105,115,46,120,80,99,116,91,116,104,105,115,46,120,80,99,116,46,108,101,110,103,116,104,32,45,32,49,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,120,80,99,116,95,105,110,100,101,120,32,61,32,116,104,105,115,46,120,80,99,116,46,108,101,110,103,116,104,32,45,32,50,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,108,111,111,107,105,110,103,32,98,97,99,107,119,97,114,100,115,32,97,110,100,32,116,104,101,32,118,97,108,117,101,32,105,115,32,101,120,97,99,116,108,121,32,97,116,32,97,32,114,97,110,103,101,32,115,101,112,97,114,97,116,111,114,32,116,104,101,110,32,108,111,111,107,32,111,110,101,32,114,97,110,103,101,32,102,117,114,116,104,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,100,105,114,101,99,116,105,111,110,32,38,38,32,118,97,108,117,101,32,61,61,61,32,116,104,105,115,46,120,80,99,116,91,120,80,99,116,95,105,110,100,101,120,32,43,32,49,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,120,80,99,116,95,105,110,100,101,120,43,43,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,105,115,116,97,110,99,101,115,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,105,115,116,97,110,99,101,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,97,114,116,95,102,97,99,116,111,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,116,95,102,97,99,116,111,114,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,116,95,114,101,108,95,100,105,115,116,97,110,99,101,32,61,32,100,105,115,116,97,110,99,101,115,91,120,80,99,116,95,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,97,110,103,101,95,112,99,116,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,108,95,114,97,110,103,101,95,100,105,115,116,97,110,99,101,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,98,115,95,100,105,115,116,97,110,99,101,95,99,111,117,110,116,101,114,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,97,110,103,101,95,99,111,117,110,116,101,114,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,97,108,99,117,108,97,116,101,32,119,104,97,116,32,112,97,114,116,32,111,102,32,116,104,101,32,115,116,97,114,116,32,114,97,110,103,101,32,116,104,101,32,118,97,108,117,101,32,105,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,105,114,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,95,102,97,99,116,111,114,32,61,32,40,118,97,108,117,101,32,45,32,116,104,105,115,46,120,80,99,116,91,120,80,99,116,95,105,110,100,101,120,93,41,32,47,32,40,116,104,105,115,46,120,80,99,116,91,120,80,99,116,95,105,110,100,101,120,32,43,32,49,93,32,45,32,116,104,105,115,46,120,80,99,116,91,120,80,99,116,95,105,110,100,101,120,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,95,102,97,99,116,111,114,32,61,32,40,116,104,105,115,46,120,80,99,116,91,120,80,99,116,95,105,110,100,101,120,32,43,32,49,93,32,45,32,118,97,108,117,101,41,32,47,32,40,116,104,105,115,46,120,80,99,116,91,120,80,99,116,95,105,110,100,101,120,32,43,32,49,93,32,45,32,116,104,105,115,46,120,80,99,116,91,120,80,99,116,95,105,110,100,101,120,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,111,32,117,110,116,105,108,32,116,104,101,32,99,111,109,112,108,101,116,101,32,100,105,115,116,97,110,99,101,32,97,99,114,111,115,115,32,114,97,110,103,101,115,32,105,115,32,99,97,108,99,117,108,97,116,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,114,101,115,116,95,114,101,108,95,100,105,115,116,97,110,99,101,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,97,108,99,117,108,97,116,101,32,116,104,101,32,112,101,114,99,101,110,116,97,103,101,32,111,102,32,116,111,116,97,108,32,114,97,110,103,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,97,110,103,101,95,112,99,116,32,61,32,116,104,105,115,46,120,80,99,116,91,120,80,99,116,95,105,110,100,101,120,32,43,32,49,32,43,32,114,97,110,103,101,95,99,111,117,110,116,101,114,93,32,45,32,116,104,105,115,46,120,80,99,116,91,120,80,99,116,95,105,110,100,101,120,32,43,32,114,97,110,103,101,95,99,111,117,110,116,101,114,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,101,116,101,99,116,32,105,102,32,116,104,101,32,109,97,114,103,105,110,44,32,112,97,100,100,105,110,103,32,111,114,32,108,105,109,105,116,32,105,115,32,108,97,114,103,101,114,32,116,104,101,110,32,116,104,101,32,99,117,114,114,101,110,116,32,114,97,110,103,101,32,97,110,100,32,99,97,108,99,117,108,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,105,115,116,97,110,99,101,115,91,120,80,99,116,95,105,110,100,101,120,32,43,32,114,97,110,103,101,95,99,111,117,110,116,101,114,93,32,42,32,114,101,115,116,95,102,97,99,116,111,114,32,43,32,49,48,48,32,45,32,115,116,97,114,116,95,102,97,99,116,111,114,32,42,32,49,48,48,32,62,32,49,48,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,108,97,114,103,101,114,32,116,104,101,110,32,116,97,107,101,32,116,104,101,32,112,101,114,99,101,110,116,117,97,108,32,100,105,115,116,97,110,99,101,32,111,102,32,116,104,101,32,119,104,111,108,101,32,114,97,110,103,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,108,95,114,97,110,103,101,95,100,105,115,116,97,110,99,101,32,61,32,114,97,110,103,101,95,112,99,116,32,42,32,115,116,97,114,116,95,102,97,99,116,111,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,115,116,32,102,97,99,116,111,114,32,111,102,32,114,101,108,97,116,105,118,101,32,112,101,114,99,101,110,116,117,97,108,32,100,105,115,116,97,110,99,101,32,115,116,105,108,108,32,116,111,32,98,101,32,99,97,108,99,117,108,97,116,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,116,95,102,97,99,116,111,114,32,61,32,40,114,101,115,116,95,114,101,108,95,100,105,115,116,97,110,99,101,32,45,32,49,48,48,32,42,32,115,116,97,114,116,95,102,97,99,116,111,114,41,32,47,32,100,105,115,116,97,110,99,101,115,91,120,80,99,116,95,105,110,100,101,120,32,43,32,114,97,110,103,101,95,99,111,117,110,116,101,114,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,115,116,97,114,116,32,102,97,99,116,111,114,32,116,111,32,49,32,97,115,32,102,111,114,32,110,101,120,116,32,114,97,110,103,101,32,105,116,32,100,111,101,115,32,110,111,116,32,97,112,112,108,121,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,95,102,97,99,116,111,114,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,115,109,97,108,108,101,114,32,111,114,32,101,113,117,97,108,32,116,104,101,110,32,116,97,107,101,32,116,104,101,32,112,101,114,99,101,110,116,117,97,108,32,100,105,115,116,97,110,99,101,32,111,102,32,116,104,101,32,99,97,108,99,117,108,97,116,101,32,112,101,114,99,101,110,116,117,97,108,32,112,97,114,116,32,111,102,32,116,104,97,116,32,114,97,110,103,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,108,95,114,97,110,103,101,95,100,105,115,116,97,110,99,101,32,61,32,40,40,100,105,115,116,97,110,99,101,115,91,120,80,99,116,95,105,110,100,101,120,32,43,32,114,97,110,103,101,95,99,111,117,110,116,101,114,93,32,42,32,114,97,110,103,101,95,112,99,116,41,32,47,32,49,48,48,41,32,42,32,114,101,115,116,95,102,97,99,116,111,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,32,114,101,115,116,32,108,101,102,116,32,97,115,32,116,104,101,32,114,101,115,116,32,102,105,116,115,32,105,110,32,99,117,114,114,101,110,116,32,114,97,110,103,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,116,95,102,97,99,116,111,114,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,105,114,101,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,98,115,95,100,105,115,116,97,110,99,101,95,99,111,117,110,116,101,114,32,61,32,97,98,115,95,100,105,115,116,97,110,99,101,95,99,111,117,110,116,101,114,32,45,32,114,101,108,95,114,97,110,103,101,95,100,105,115,116,97,110,99,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,76,105,109,105,116,32,114,97,110,103,101,32,116,111,32,102,105,114,115,116,32,114,97,110,103,101,32,119,104,101,110,32,100,105,115,116,97,110,99,101,32,98,101,99,111,109,101,115,32,111,117,116,115,105,100,101,32,111,102,32,109,105,110,105,109,117,109,32,114,97,110,103,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,120,80,99,116,46,108,101,110,103,116,104,32,43,32,114,97,110,103,101,95,99,111,117,110,116,101,114,32,62,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,97,110,103,101,95,99,111,117,110,116,101,114,45,45,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,98,115,95,100,105,115,116,97,110,99,101,95,99,111,117,110,116,101,114,32,61,32,97,98,115,95,100,105,115,116,97,110,99,101,95,99,111,117,110,116,101,114,32,43,32,114,101,108,95,114,97,110,103,101,95,100,105,115,116,97,110,99,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,76,105,109,105,116,32,114,97,110,103,101,32,116,111,32,108,97,115,116,32,114,97,110,103,101,32,119,104,101,110,32,100,105,115,116,97,110,99,101,32,98,101,99,111,109,101,115,32,111,117,116,115,105,100,101,32,111,102,32,109,97,120,105,109,117,109,32,114,97,110,103,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,120,80,99,116,46,108,101,110,103,116,104,32,45,32,114,97,110,103,101,95,99,111,117,110,116,101,114,32,62,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,97,110,103,101,95,99,111,117,110,116,101,114,43,43,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,115,116,32,111,102,32,114,101,108,97,116,105,118,101,32,112,101,114,99,101,110,116,117,97,108,32,100,105,115,116,97,110,99,101,32,115,116,105,108,108,32,116,111,32,98,101,32,99,97,108,99,117,108,97,116,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,116,95,114,101,108,95,100,105,115,116,97,110,99,101,32,61,32,100,105,115,116,97,110,99,101,115,91,120,80,99,116,95,105,110,100,101,120,32,43,32,114,97,110,103,101,95,99,111,117,110,116,101,114,93,32,42,32,114,101,115,116,95,102,97,99,116,111,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,43,32,97,98,115,95,100,105,115,116,97,110,99,101,95,99,111,117,110,116,101,114,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,83,112,101,99,116,114,117,109,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,101,112,112,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,116,111,83,116,101,112,112,105,110,103,40,116,104,105,115,46,120,86,97,108,44,32,116,104,105,115,46,120,80,99,116,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,83,112,101,99,116,114,117,109,46,112,114,111,116,111,116,121,112,101,46,102,114,111,109,83,116,101,112,112,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,114,111,109,83,116,101,112,112,105,110,103,40,116,104,105,115,46,120,86,97,108,44,32,116,104,105,115,46,120,80,99,116,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,83,112,101,99,116,114,117,109,46,112,114,111,116,111,116,121,112,101,46,103,101,116,83,116,101,112,32,61,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,103,101,116,83,116,101,112,40,116,104,105,115,46,120,80,99,116,44,32,116,104,105,115,46,120,83,116,101,112,115,44,32,116,104,105,115,46,115,110,97,112,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,83,112,101,99,116,114,117,109,46,112,114,111,116,111,116,121,112,101,46,103,101,116,68,101,102,97,117,108,116,83,116,101,112,32,61,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,44,32,105,115,68,111,119,110,44,32,115,105,122,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,106,32,61,32,103,101,116,74,40,118,97,108,117,101,44,32,116,104,105,115,46,120,80,99,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,104,101,110,32,97,116,32,116,104,101,32,116,111,112,32,111,114,32,115,116,101,112,112,105,110,103,32,100,111,119,110,44,32,108,111,111,107,32,97,116,32,116,104,101,32,112,114,101,118,105,111,117,115,32,115,117,98,45,114,97,110,103,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,49,48,48,32,124,124,32,40,105,115,68,111,119,110,32,38,38,32,118,97,108,117,101,32,61,61,61,32,116,104,105,115,46,120,80,99,116,91,106,32,45,32,49,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,106,32,61,32,77,97,116,104,46,109,97,120,40,106,32,45,32,49,44,32,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,116,104,105,115,46,120,86,97,108,91,106,93,32,45,32,116,104,105,115,46,120,86,97,108,91,106,32,45,32,49,93,41,32,47,32,115,105,122,101,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,83,112,101,99,116,114,117,109,46,112,114,111,116,111,116,121,112,101,46,103,101,116,78,101,97,114,98,121,83,116,101,112,115,32,61,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,106,32,61,32,103,101,116,74,40,118,97,108,117,101,44,32,116,104,105,115,46,120,80,99,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,66,101,102,111,114,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,86,97,108,117,101,58,32,116,104,105,115,46,120,86,97,108,91,106,32,45,32,50,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,58,32,116,104,105,115,46,120,78,117,109,83,116,101,112,115,91,106,32,45,32,50,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,105,103,104,101,115,116,83,116,101,112,58,32,116,104,105,115,46,120,72,105,103,104,101,115,116,67,111,109,112,108,101,116,101,83,116,101,112,91,106,32,45,32,50,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,83,116,101,112,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,86,97,108,117,101,58,32,116,104,105,115,46,120,86,97,108,91,106,32,45,32,49,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,58,32,116,104,105,115,46,120,78,117,109,83,116,101,112,115,91,106,32,45,32,49,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,105,103,104,101,115,116,83,116,101,112,58,32,116,104,105,115,46,120,72,105,103,104,101,115,116,67,111,109,112,108,101,116,101,83,116,101,112,91,106,32,45,32,49,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,65,102,116,101,114,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,86,97,108,117,101,58,32,116,104,105,115,46,120,86,97,108,91,106,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,58,32,116,104,105,115,46,120,78,117,109,83,116,101,112,115,91,106,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,105,103,104,101,115,116,83,116,101,112,58,32,116,104,105,115,46,120,72,105,103,104,101,115,116,67,111,109,112,108,101,116,101,83,116,101,112,91,106,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,83,112,101,99,116,114,117,109,46,112,114,111,116,111,116,121,112,101,46,99,111,117,110,116,83,116,101,112,68,101,99,105,109,97,108,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,101,112,68,101,99,105,109,97,108,115,32,61,32,116,104,105,115,46,120,78,117,109,83,116,101,112,115,46,109,97,112,40,99,111,117,110,116,68,101,99,105,109,97,108,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,110,117,108,108,44,32,115,116,101,112,68,101,99,105,109,97,108,115,41,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,47,47,32,79,117,116,115,105,100,101,32,116,101,115,116,105,110,103,92,110,32,32,32,32,32,32,32,32,83,112,101,99,116,114,117,109,46,112,114,111,116,111,116,121,112,101,46,99,111,110,118,101,114,116,32,61,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,103,101,116,83,116,101,112,40,116,104,105,115,46,116,111,83,116,101,112,112,105,110,103,40,118,97,108,117,101,41,41,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,83,112,101,99,116,114,117,109,46,112,114,111,116,111,116,121,112,101,46,104,97,110,100,108,101,69,110,116,114,121,80,111,105,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,101,114,99,101,110,116,97,103,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,118,101,114,116,32,109,105,110,47,109,97,120,32,115,121,110,116,97,120,32,116,111,32,48,32,97,110,100,32,49,48,48,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,61,61,61,32,92,34,109,105,110,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,101,114,99,101,110,116,97,103,101,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,110,100,101,120,32,61,61,61,32,92,34,109,97,120,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,101,114,99,101,110,116,97,103,101,32,61,32,49,48,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,101,114,99,101,110,116,97,103,101,32,61,32,112,97,114,115,101,70,108,111,97,116,40,105,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,104,101,99,107,32,102,111,114,32,99,111,114,114,101,99,116,32,105,110,112,117,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,109,101,114,105,99,40,112,101,114,99,101,110,116,97,103,101,41,32,124,124,32,33,105,115,78,117,109,101,114,105,99,40,118,97,108,117,101,91,48,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,114,97,110,103,101,39,32,118,97,108,117,101,32,105,115,110,39,116,32,110,117,109,101,114,105,99,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,116,111,114,101,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,80,99,116,46,112,117,115,104,40,112,101,114,99,101,110,116,97,103,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,86,97,108,46,112,117,115,104,40,118,97,108,117,101,91,48,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,49,32,61,32,78,117,109,98,101,114,40,118,97,108,117,101,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,78,97,78,32,119,105,108,108,32,101,118,97,108,117,97,116,101,32,116,111,32,102,97,108,115,101,32,116,111,111,44,32,98,117,116,32,116,111,32,107,101,101,112,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,108,111,103,103,105,110,103,32,99,108,101,97,114,44,32,115,101,116,32,115,116,101,112,32,101,120,112,108,105,99,105,116,108,121,46,32,77,97,107,101,32,115,117,114,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,110,111,116,32,116,111,32,111,118,101,114,114,105,100,101,32,116,104,101,32,39,115,116,101,112,39,32,115,101,116,116,105,110,103,32,119,105,116,104,32,102,97,108,115,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,112,101,114,99,101,110,116,97,103,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,97,78,40,118,97,108,117,101,49,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,83,116,101,112,115,91,48,93,32,61,32,118,97,108,117,101,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,83,116,101,112,115,46,112,117,115,104,40,105,115,78,97,78,40,118,97,108,117,101,49,41,32,63,32,102,97,108,115,101,32,58,32,118,97,108,117,101,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,72,105,103,104,101,115,116,67,111,109,112,108,101,116,101,83,116,101,112,46,112,117,115,104,40,48,41,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,83,112,101,99,116,114,117,109,46,112,114,111,116,111,116,121,112,101,46,104,97,110,100,108,101,83,116,101,112,80,111,105,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,44,32,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,103,110,111,114,101,32,39,102,97,108,115,101,39,32,115,116,101,112,112,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,116,101,112,32,111,118,101,114,32,122,101,114,111,45,108,101,110,103,116,104,32,114,97,110,103,101,115,32,40,35,57,52,56,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,120,86,97,108,91,105,93,32,61,61,61,32,116,104,105,115,46,120,86,97,108,91,105,32,43,32,49,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,83,116,101,112,115,91,105,93,32,61,32,116,104,105,115,46,120,72,105,103,104,101,115,116,67,111,109,112,108,101,116,101,83,116,101,112,91,105,93,32,61,32,116,104,105,115,46,120,86,97,108,91,105,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,97,99,116,111,114,32,116,111,32,114,97,110,103,101,32,114,97,116,105,111,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,83,116,101,112,115,91,105,93,32,61,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,114,111,109,80,101,114,99,101,110,116,97,103,101,40,91,116,104,105,115,46,120,86,97,108,91,105,93,44,32,116,104,105,115,46,120,86,97,108,91,105,32,43,32,49,93,93,44,32,110,44,32,48,41,32,47,32,115,117,98,82,97,110,103,101,82,97,116,105,111,40,116,104,105,115,46,120,80,99,116,91,105,93,44,32,116,104,105,115,46,120,80,99,116,91,105,32,43,32,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,111,116,97,108,83,116,101,112,115,32,61,32,40,116,104,105,115,46,120,86,97,108,91,105,32,43,32,49,93,32,45,32,116,104,105,115,46,120,86,97,108,91,105,93,41,32,47,32,116,104,105,115,46,120,78,117,109,83,116,101,112,115,91,105,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,105,103,104,101,115,116,83,116,101,112,32,61,32,77,97,116,104,46,99,101,105,108,40,78,117,109,98,101,114,40,116,111,116,97,108,83,116,101,112,115,46,116,111,70,105,120,101,100,40,51,41,41,32,45,32,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,101,112,32,61,32,116,104,105,115,46,120,86,97,108,91,105,93,32,43,32,116,104,105,115,46,120,78,117,109,83,116,101,112,115,91,105,93,32,42,32,104,105,103,104,101,115,116,83,116,101,112,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,120,72,105,103,104,101,115,116,67,111,109,112,108,101,116,101,83,116,101,112,91,105,93,32,61,32,115,116,101,112,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,83,112,101,99,116,114,117,109,59,92,110,32,32,32,32,125,40,41,41,59,92,110,32,32,32,32,47,47,101,110,100,114,101,103,105,111,110,92,110,32,32,32,32,47,47,114,101,103,105,111,110,32,79,112,116,105,111,110,115,92,110,32,32,32,32,47,42,92,116,69,118,101,114,121,32,105,110,112,117,116,32,111,112,116,105,111,110,32,105,115,32,116,101,115,116,101,100,32,97,110,100,32,112,97,114,115,101,100,46,32,84,104,105,115,32,119,105,108,108,32,112,114,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,101,110,100,108,101,115,115,32,118,97,108,105,100,97,116,105,111,110,32,105,110,32,105,110,116,101,114,110,97,108,32,109,101,116,104,111,100,115,46,32,84,104,101,115,101,32,116,101,115,116,115,32,97,114,101,92,110,32,32,32,32,32,32,32,32,115,116,114,117,99,116,117,114,101,100,32,119,105,116,104,32,97,110,32,105,116,101,109,32,102,111,114,32,101,118,101,114,121,32,111,112,116,105,111,110,32,97,118,97,105,108,97,98,108,101,46,32,65,110,92,110,32,32,32,32,32,32,32,32,111,112,116,105,111,110,32,99,97,110,32,98,101,32,109,97,114,107,101,100,32,97,115,32,114,101,113,117,105,114,101,100,32,98,121,32,115,101,116,116,105,110,103,32,116,104,101,32,39,114,39,32,102,108,97,103,46,92,110,32,32,32,32,32,32,32,32,84,104,101,32,116,101,115,116,105,110,103,32,102,117,110,99,116,105,111,110,32,105,115,32,112,114,111,118,105,100,101,100,32,119,105,116,104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,45,32,84,104,101,32,112,114,111,118,105,100,101,100,32,118,97,108,117,101,32,102,111,114,32,116,104,101,32,111,112,116,105,111,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,45,32,65,32,114,101,102,101,114,101,110,99,101,32,116,111,32,116,104,101,32,111,112,116,105,111,110,115,32,111,98,106,101,99,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,45,32,84,104,101,32,110,97,109,101,32,102,111,114,32,116,104,101,32,111,112,116,105,111,110,59,92,110,92,110,32,32,32,32,32,32,32,32,84,104,101,32,116,101,115,116,105,110,103,32,102,117,110,99,116,105,111,110,32,114,101,116,117,114,110,115,32,102,97,108,115,101,32,119,104,101,110,32,97,110,32,101,114,114,111,114,32,105,115,32,100,101,116,101,99,116,101,100,44,92,110,32,32,32,32,32,32,32,32,111,114,32,116,114,117,101,32,119,104,101,110,32,101,118,101,114,121,116,104,105,110,103,32,105,115,32,79,75,46,32,73,116,32,99,97,110,32,97,108,115,111,32,109,111,100,105,102,121,32,116,104,101,32,111,112,116,105,111,110,92,110,32,32,32,32,32,32,32,32,111,98,106,101,99,116,44,32,116,111,32,109,97,107,101,32,115,117,114,101,32,97,108,108,32,118,97,108,117,101,115,32,99,97,110,32,98,101,32,99,111,114,114,101,99,116,108,121,32,108,111,111,112,101,100,32,101,108,115,101,119,104,101,114,101,46,32,42,47,92,110,32,32,32,32,47,47,114,101,103,105,111,110,32,68,101,102,97,117,108,116,115,92,110,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,70,111,114,109,97,116,116,101,114,32,61,32,123,92,110,32,32,32,32,32,32,32,32,116,111,58,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,92,34,92,34,32,58,32,118,97,108,117,101,46,116,111,70,105,120,101,100,40,50,41,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,102,114,111,109,58,32,78,117,109,98,101,114,92,110,32,32,32,32,125,59,92,110,32,32,32,32,118,97,114,32,99,115,115,67,108,97,115,115,101,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,92,34,116,97,114,103,101,116,92,34,44,92,110,32,32,32,32,32,32,32,32,98,97,115,101,58,32,92,34,98,97,115,101,92,34,44,92,110,32,32,32,32,32,32,32,32,111,114,105,103,105,110,58,32,92,34,111,114,105,103,105,110,92,34,44,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,58,32,92,34,104,97,110,100,108,101,92,34,44,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,76,111,119,101,114,58,32,92,34,104,97,110,100,108,101,45,108,111,119,101,114,92,34,44,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,85,112,112,101,114,58,32,92,34,104,97,110,100,108,101,45,117,112,112,101,114,92,34,44,92,110,32,32,32,32,32,32,32,32,116,111,117,99,104,65,114,101,97,58,32,92,34,116,111,117,99,104,45,97,114,101,97,92,34,44,92,110,32,32,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,58,32,92,34,104,111,114,105,122,111,110,116,97,108,92,34,44,92,110,32,32,32,32,32,32,32,32,118,101,114,116,105,99,97,108,58,32,92,34,118,101,114,116,105,99,97,108,92,34,44,92,110,32,32,32,32,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,92,34,98,97,99,107,103,114,111,117,110,100,92,34,44,92,110,32,32,32,32,32,32,32,32,99,111,110,110,101,99,116,58,32,92,34,99,111,110,110,101,99,116,92,34,44,92,110,32,32,32,32,32,32,32,32,99,111,110,110,101,99,116,115,58,32,92,34,99,111,110,110,101,99,116,115,92,34,44,92,110,32,32,32,32,32,32,32,32,108,116,114,58,32,92,34,108,116,114,92,34,44,92,110,32,32,32,32,32,32,32,32,114,116,108,58,32,92,34,114,116,108,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,68,105,114,101,99,116,105,111,110,76,116,114,58,32,92,34,116,120,116,45,100,105,114,45,108,116,114,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,68,105,114,101,99,116,105,111,110,82,116,108,58,32,92,34,116,120,116,45,100,105,114,45,114,116,108,92,34,44,92,110,32,32,32,32,32,32,32,32,100,114,97,103,103,97,98,108,101,58,32,92,34,100,114,97,103,103,97,98,108,101,92,34,44,92,110,32,32,32,32,32,32,32,32,100,114,97,103,58,32,92,34,115,116,97,116,101,45,100,114,97,103,92,34,44,92,110,32,32,32,32,32,32,32,32,116,97,112,58,32,92,34,115,116,97,116,101,45,116,97,112,92,34,44,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,58,32,92,34,97,99,116,105,118,101,92,34,44,92,110,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,58,32,92,34,116,111,111,108,116,105,112,92,34,44,92,110,32,32,32,32,32,32,32,32,112,105,112,115,58,32,92,34,112,105,112,115,92,34,44,92,110,32,32,32,32,32,32,32,32,112,105,112,115,72,111,114,105,122,111,110,116,97,108,58,32,92,34,112,105,112,115,45,104,111,114,105,122,111,110,116,97,108,92,34,44,92,110,32,32,32,32,32,32,32,32,112,105,112,115,86,101,114,116,105,99,97,108,58,32,92,34,112,105,112,115,45,118,101,114,116,105,99,97,108,92,34,44,92,110,32,32,32,32,32,32,32,32,109,97,114,107,101,114,58,32,92,34,109,97,114,107,101,114,92,34,44,92,110,32,32,32,32,32,32,32,32,109,97,114,107,101,114,72,111,114,105,122,111,110,116,97,108,58,32,92,34,109,97,114,107,101,114,45,104,111,114,105,122,111,110,116,97,108,92,34,44,92,110,32,32,32,32,32,32,32,32,109,97,114,107,101,114,86,101,114,116,105,99,97,108,58,32,92,34,109,97,114,107,101,114,45,118,101,114,116,105,99,97,108,92,34,44,92,110,32,32,32,32,32,32,32,32,109,97,114,107,101,114,78,111,114,109,97,108,58,32,92,34,109,97,114,107,101,114,45,110,111,114,109,97,108,92,34,44,92,110,32,32,32,32,32,32,32,32,109,97,114,107,101,114,76,97,114,103,101,58,32,92,34,109,97,114,107,101,114,45,108,97,114,103,101,92,34,44,92,110,32,32,32,32,32,32,32,32,109,97,114,107,101,114,83,117,98,58,32,92,34,109,97,114,107,101,114,45,115,117,98,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,118,97,108,117,101,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,72,111,114,105,122,111,110,116,97,108,58,32,92,34,118,97,108,117,101,45,104,111,114,105,122,111,110,116,97,108,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,86,101,114,116,105,99,97,108,58,32,92,34,118,97,108,117,101,45,118,101,114,116,105,99,97,108,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,78,111,114,109,97,108,58,32,92,34,118,97,108,117,101,45,110,111,114,109,97,108,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,76,97,114,103,101,58,32,92,34,118,97,108,117,101,45,108,97,114,103,101,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,83,117,98,58,32,92,34,118,97,108,117,101,45,115,117,98,92,34,92,110,32,32,32,32,125,59,92,110,32,32,32,32,47,47,32,78,97,109,101,115,112,97,99,101,115,32,111,102,32,105,110,116,101,114,110,97,108,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,118,97,114,32,73,78,84,69,82,78,65,76,95,69,86,69,78,84,95,78,83,32,61,32,123,92,110,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,115,58,32,92,34,46,95,95,116,111,111,108,116,105,112,115,92,34,44,92,110,32,32,32,32,32,32,32,32,97,114,105,97,58,32,92,34,46,95,95,97,114,105,97,92,34,92,110,32,32,32,32,125,59,92,110,32,32,32,32,47,47,101,110,100,114,101,103,105,111,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,83,116,101,112,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,109,101,114,105,99,40,101,110,116,114,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,115,116,101,112,39,32,105,115,32,110,111,116,32,110,117,109,101,114,105,99,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,115,116,101,112,32,111,112,116,105,111,110,32,99,97,110,32,115,116,105,108,108,32,98,101,32,117,115,101,100,32,116,111,32,115,101,116,32,115,116,101,112,112,105,110,103,92,110,32,32,32,32,32,32,32,32,47,47,32,102,111,114,32,108,105,110,101,97,114,32,115,108,105,100,101,114,115,46,32,79,118,101,114,119,114,105,116,116,101,110,32,105,102,32,115,101,116,32,105,110,32,39,114,97,110,103,101,39,46,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,115,105,110,103,108,101,83,116,101,112,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,75,101,121,98,111,97,114,100,80,97,103,101,77,117,108,116,105,112,108,105,101,114,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,109,101,114,105,99,40,101,110,116,114,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,107,101,121,98,111,97,114,100,80,97,103,101,77,117,108,116,105,112,108,105,101,114,39,32,105,115,32,110,111,116,32,110,117,109,101,114,105,99,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,107,101,121,98,111,97,114,100,80,97,103,101,77,117,108,116,105,112,108,105,101,114,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,75,101,121,98,111,97,114,100,68,101,102,97,117,108,116,83,116,101,112,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,109,101,114,105,99,40,101,110,116,114,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,107,101,121,98,111,97,114,100,68,101,102,97,117,108,116,83,116,101,112,39,32,105,115,32,110,111,116,32,110,117,109,101,114,105,99,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,107,101,121,98,111,97,114,100,68,101,102,97,117,108,116,83,116,101,112,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,82,97,110,103,101,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,70,105,108,116,101,114,32,105,110,99,111,114,114,101,99,116,32,105,110,112,117,116,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,101,110,116,114,121,32,33,61,61,32,92,34,111,98,106,101,99,116,92,34,32,124,124,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,110,116,114,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,114,97,110,103,101,39,32,105,115,32,110,111,116,32,97,110,32,111,98,106,101,99,116,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,67,97,116,99,104,32,109,105,115,115,105,110,103,32,115,116,97,114,116,32,111,114,32,101,110,100,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,46,109,105,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,32,101,110,116,114,121,46,109,97,120,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,77,105,115,115,105,110,103,32,39,109,105,110,39,32,111,114,32,39,109,97,120,39,32,105,110,32,39,114,97,110,103,101,39,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,67,97,116,99,104,32,101,113,117,97,108,32,115,116,97,114,116,32,111,114,32,101,110,100,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,46,109,105,110,32,61,61,61,32,101,110,116,114,121,46,109,97,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,114,97,110,103,101,39,32,39,109,105,110,39,32,97,110,100,32,39,109,97,120,39,32,99,97,110,110,111,116,32,98,101,32,101,113,117,97,108,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,115,112,101,99,116,114,117,109,32,61,32,110,101,119,32,83,112,101,99,116,114,117,109,40,101,110,116,114,121,44,32,112,97,114,115,101,100,46,115,110,97,112,32,124,124,32,102,97,108,115,101,44,32,112,97,114,115,101,100,46,115,105,110,103,108,101,83,116,101,112,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,83,116,97,114,116,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,101,110,116,114,121,32,61,32,97,115,65,114,114,97,121,40,101,110,116,114,121,41,59,92,110,32,32,32,32,32,32,32,32,47,47,32,86,97,108,105,100,97,116,101,32,105,110,112,117,116,46,32,86,97,108,117,101,115,32,97,114,101,110,39,116,32,116,101,115,116,101,100,44,32,97,115,32,116,104,101,32,112,117,98,108,105,99,32,46,118,97,108,32,109,101,116,104,111,100,92,110,32,32,32,32,32,32,32,32,47,47,32,119,105,108,108,32,97,108,119,97,121,115,32,112,114,111,118,105,100,101,32,97,32,118,97,108,105,100,32,108,111,99,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,110,116,114,121,41,32,124,124,32,33,101,110,116,114,121,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,115,116,97,114,116,39,32,111,112,116,105,111,110,32,105,115,32,105,110,99,111,114,114,101,99,116,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,83,116,111,114,101,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,104,97,110,100,108,101,115,46,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,104,97,110,100,108,101,115,32,61,32,101,110,116,114,121,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,32,32,47,47,32,87,104,101,110,32,116,104,101,32,115,108,105,100,101,114,32,105,115,32,105,110,105,116,105,97,108,105,122,101,100,44,32,116,104,101,32,46,118,97,108,32,109,101,116,104,111,100,32,119,105,108,108,92,110,32,32,32,32,32,32,32,32,47,47,32,98,101,32,99,97,108,108,101,100,32,119,105,116,104,32,116,104,101,32,115,116,97,114,116,32,111,112,116,105,111,110,115,46,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,115,116,97,114,116,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,83,110,97,112,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,101,110,116,114,121,32,33,61,61,32,92,34,98,111,111,108,101,97,110,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,115,110,97,112,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,97,32,98,111,111,108,101,97,110,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,69,110,102,111,114,99,101,32,49,48,48,37,32,115,116,101,112,112,105,110,103,32,119,105,116,104,105,110,32,115,117,98,114,97,110,103,101,115,46,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,115,110,97,112,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,65,110,105,109,97,116,101,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,101,110,116,114,121,32,33,61,61,32,92,34,98,111,111,108,101,97,110,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,97,110,105,109,97,116,101,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,97,32,98,111,111,108,101,97,110,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,69,110,102,111,114,99,101,32,49,48,48,37,32,115,116,101,112,112,105,110,103,32,119,105,116,104,105,110,32,115,117,98,114,97,110,103,101,115,46,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,97,110,105,109,97,116,101,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,65,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,101,110,116,114,121,32,33,61,61,32,92,34,110,117,109,98,101,114,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,97,32,110,117,109,98,101,114,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,67,111,110,110,101,99,116,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,110,101,99,116,32,61,32,91,102,97,108,115,101,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,59,92,110,32,32,32,32,32,32,32,32,47,47,32,77,97,112,32,108,101,103,97,99,121,32,111,112,116,105,111,110,115,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,32,61,61,61,32,92,34,108,111,119,101,114,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,110,116,114,121,32,61,32,91,116,114,117,101,44,32,102,97,108,115,101,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,101,110,116,114,121,32,61,61,61,32,92,34,117,112,112,101,114,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,110,116,114,121,32,61,32,91,102,97,108,115,101,44,32,116,114,117,101,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,98,111,111,108,101,97,110,32,111,112,116,105,111,110,115,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,32,61,61,61,32,116,114,117,101,32,124,124,32,101,110,116,114,121,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,49,59,32,105,32,60,32,112,97,114,115,101,100,46,104,97,110,100,108,101,115,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,110,101,99,116,46,112,117,115,104,40,101,110,116,114,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,110,101,99,116,46,112,117,115,104,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,106,101,99,116,32,105,110,118,97,108,105,100,32,105,110,112,117,116,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,110,116,114,121,41,32,124,124,32,33,101,110,116,114,121,46,108,101,110,103,116,104,32,124,124,32,101,110,116,114,121,46,108,101,110,103,116,104,32,33,61,61,32,112,97,114,115,101,100,46,104,97,110,100,108,101,115,32,43,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,99,111,110,110,101,99,116,39,32,111,112,116,105,111,110,32,100,111,101,115,110,39,116,32,109,97,116,99,104,32,104,97,110,100,108,101,32,99,111,117,110,116,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,110,101,99,116,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,99,111,110,110,101,99,116,32,61,32,99,111,110,110,101,99,116,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,79,114,105,101,110,116,97,116,105,111,110,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,111,114,105,101,110,116,97,116,105,111,110,32,116,111,32,97,110,32,97,32,110,117,109,101,114,105,99,97,108,32,118,97,108,117,101,32,102,111,114,32,101,97,115,121,92,110,32,32,32,32,32,32,32,32,47,47,32,97,114,114,97,121,32,115,101,108,101,99,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,104,111,114,105,122,111,110,116,97,108,92,34,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,111,114,116,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,118,101,114,116,105,99,97,108,92,34,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,111,114,116,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,111,114,105,101,110,116,97,116,105,111,110,39,32,111,112,116,105,111,110,32,105,115,32,105,110,118,97,108,105,100,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,77,97,114,103,105,110,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,109,101,114,105,99,40,101,110,116,114,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,109,97,114,103,105,110,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,110,117,109,101,114,105,99,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,73,115,115,117,101,32,35,53,56,50,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,109,97,114,103,105,110,32,61,32,112,97,114,115,101,100,46,115,112,101,99,116,114,117,109,46,103,101,116,68,105,115,116,97,110,99,101,40,101,110,116,114,121,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,76,105,109,105,116,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,109,101,114,105,99,40,101,110,116,114,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,108,105,109,105,116,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,110,117,109,101,114,105,99,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,108,105,109,105,116,32,61,32,112,97,114,115,101,100,46,115,112,101,99,116,114,117,109,46,103,101,116,68,105,115,116,97,110,99,101,40,101,110,116,114,121,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,112,97,114,115,101,100,46,108,105,109,105,116,32,124,124,32,112,97,114,115,101,100,46,104,97,110,100,108,101,115,32,60,32,50,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,108,105,109,105,116,39,32,111,112,116,105,111,110,32,105,115,32,111,110,108,121,32,115,117,112,112,111,114,116,101,100,32,111,110,32,108,105,110,101,97,114,32,115,108,105,100,101,114,115,32,119,105,116,104,32,50,32,111,114,32,109,111,114,101,32,104,97,110,100,108,101,115,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,80,97,100,100,105,110,103,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,117,109,101,114,105,99,40,101,110,116,114,121,41,32,38,38,32,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,110,116,114,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,112,97,100,100,105,110,103,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,110,117,109,101,114,105,99,32,111,114,32,97,114,114,97,121,32,111,102,32,101,120,97,99,116,108,121,32,50,32,110,117,109,98,101,114,115,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,110,116,114,121,41,32,38,38,32,33,40,101,110,116,114,121,46,108,101,110,103,116,104,32,61,61,61,32,50,32,124,124,32,105,115,78,117,109,101,114,105,99,40,101,110,116,114,121,91,48,93,41,32,124,124,32,105,115,78,117,109,101,114,105,99,40,101,110,116,114,121,91,49,93,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,112,97,100,100,105,110,103,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,110,117,109,101,114,105,99,32,111,114,32,97,114,114,97,121,32,111,102,32,101,120,97,99,116,108,121,32,50,32,110,117,109,98,101,114,115,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,110,116,114,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,110,116,114,121,32,61,32,91,101,110,116,114,121,44,32,101,110,116,114,121,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,39,103,101,116,68,105,115,116,97,110,99,101,39,32,114,101,116,117,114,110,115,32,102,97,108,115,101,32,102,111,114,32,105,110,118,97,108,105,100,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,112,97,100,100,105,110,103,32,61,32,91,112,97,114,115,101,100,46,115,112,101,99,116,114,117,109,46,103,101,116,68,105,115,116,97,110,99,101,40,101,110,116,114,121,91,48,93,41,44,32,112,97,114,115,101,100,46,115,112,101,99,116,114,117,109,46,103,101,116,68,105,115,116,97,110,99,101,40,101,110,116,114,121,91,49,93,41,93,59,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,105,110,100,101,120,32,61,32,48,59,32,105,110,100,101,120,32,60,32,112,97,114,115,101,100,46,115,112,101,99,116,114,117,109,46,120,78,117,109,83,116,101,112,115,46,108,101,110,103,116,104,32,45,32,49,59,32,105,110,100,101,120,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,108,97,115,116,32,92,34,114,97,110,103,101,92,34,32,99,97,110,39,116,32,99,111,110,116,97,105,110,32,115,116,101,112,32,115,105,122,101,32,97,115,32,105,116,32,105,115,32,112,117,114,101,108,121,32,97,110,32,101,110,100,112,111,105,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,97,114,115,101,100,46,112,97,100,100,105,110,103,91,48,93,91,105,110,100,101,120,93,32,60,32,48,32,124,124,32,112,97,114,115,101,100,46,112,97,100,100,105,110,103,91,49,93,91,105,110,100,101,120,93,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,112,97,100,100,105,110,103,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,97,32,112,111,115,105,116,105,118,101,32,110,117,109,98,101,114,40,115,41,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,111,116,97,108,80,97,100,100,105,110,103,32,61,32,101,110,116,114,121,91,48,93,32,43,32,101,110,116,114,121,91,49,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,105,114,115,116,86,97,108,117,101,32,61,32,112,97,114,115,101,100,46,115,112,101,99,116,114,117,109,46,120,86,97,108,91,48,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,86,97,108,117,101,32,61,32,112,97,114,115,101,100,46,115,112,101,99,116,114,117,109,46,120,86,97,108,91,112,97,114,115,101,100,46,115,112,101,99,116,114,117,109,46,120,86,97,108,46,108,101,110,103,116,104,32,45,32,49,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,111,116,97,108,80,97,100,100,105,110,103,32,47,32,40,108,97,115,116,86,97,108,117,101,32,45,32,102,105,114,115,116,86,97,108,117,101,41,32,62,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,112,97,100,100,105,110,103,39,32,111,112,116,105,111,110,32,109,117,115,116,32,110,111,116,32,101,120,99,101,101,100,32,49,48,48,37,32,111,102,32,116,104,101,32,114,97,110,103,101,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,68,105,114,101,99,116,105,111,110,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,100,105,114,101,99,116,105,111,110,32,97,115,32,97,32,110,117,109,101,114,105,99,97,108,32,118,97,108,117,101,32,102,111,114,32,101,97,115,121,32,112,97,114,115,105,110,103,46,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,118,101,114,116,32,99,111,110,110,101,99,116,105,111,110,32,102,111,114,32,82,84,76,32,115,108,105,100,101,114,115,44,32,115,111,32,116,104,97,116,32,116,104,101,32,112,114,111,112,101,114,92,110,32,32,32,32,32,32,32,32,47,47,32,104,97,110,100,108,101,115,32,103,101,116,32,116,104,101,32,99,111,110,110,101,99,116,47,98,97,99,107,103,114,111,117,110,100,32,99,108,97,115,115,101,115,46,92,110,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,108,116,114,92,34,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,100,105,114,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,114,116,108,92,34,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,100,105,114,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,100,105,114,101,99,116,105,111,110,39,32,111,112,116,105,111,110,32,119,97,115,32,110,111,116,32,114,101,99,111,103,110,105,122,101,100,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,66,101,104,97,118,105,111,117,114,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,77,97,107,101,32,115,117,114,101,32,116,104,101,32,105,110,112,117,116,32,105,115,32,97,32,115,116,114,105,110,103,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,101,110,116,114,121,32,33,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,98,101,104,97,118,105,111,117,114,39,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,99,111,110,116,97,105,110,105,110,103,32,111,112,116,105,111,110,115,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,67,104,101,99,107,32,105,102,32,116,104,101,32,115,116,114,105,110,103,32,99,111,110,116,97,105,110,115,32,97,110,121,32,107,101,121,119,111,114,100,115,46,92,110,32,32,32,32,32,32,32,32,47,47,32,78,111,110,101,32,97,114,101,32,114,101,113,117,105,114,101,100,46,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,97,112,32,61,32,101,110,116,114,121,46,105,110,100,101,120,79,102,40,92,34,116,97,112,92,34,41,32,62,61,32,48,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,114,97,103,32,61,32,101,110,116,114,121,46,105,110,100,101,120,79,102,40,92,34,100,114,97,103,92,34,41,32,62,61,32,48,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,105,120,101,100,32,61,32,101,110,116,114,121,46,105,110,100,101,120,79,102,40,92,34,102,105,120,101,100,92,34,41,32,62,61,32,48,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,110,97,112,32,61,32,101,110,116,114,121,46,105,110,100,101,120,79,102,40,92,34,115,110,97,112,92,34,41,32,62,61,32,48,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,104,111,118,101,114,32,61,32,101,110,116,114,121,46,105,110,100,101,120,79,102,40,92,34,104,111,118,101,114,92,34,41,32,62,61,32,48,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,117,110,99,111,110,115,116,114,97,105,110,101,100,32,61,32,101,110,116,114,121,46,105,110,100,101,120,79,102,40,92,34,117,110,99,111,110,115,116,114,97,105,110,101,100,92,34,41,32,62,61,32,48,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,105,120,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,97,114,115,101,100,46,104,97,110,100,108,101,115,32,33,61,61,32,50,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,102,105,120,101,100,39,32,98,101,104,97,118,105,111,117,114,32,109,117,115,116,32,98,101,32,117,115,101,100,32,119,105,116,104,32,50,32,104,97,110,100,108,101,115,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,115,101,32,109,97,114,103,105,110,32,116,111,32,101,110,102,111,114,99,101,32,102,105,120,101,100,32,115,116,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,101,115,116,77,97,114,103,105,110,40,112,97,114,115,101,100,44,32,112,97,114,115,101,100,46,115,116,97,114,116,91,49,93,32,45,32,112,97,114,115,101,100,46,115,116,97,114,116,91,48,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,117,110,99,111,110,115,116,114,97,105,110,101,100,32,38,38,32,40,112,97,114,115,101,100,46,109,97,114,103,105,110,32,124,124,32,112,97,114,115,101,100,46,108,105,109,105,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,117,110,99,111,110,115,116,114,97,105,110,101,100,39,32,98,101,104,97,118,105,111,117,114,32,99,97,110,110,111,116,32,98,101,32,117,115,101,100,32,119,105,116,104,32,109,97,114,103,105,110,32,111,114,32,108,105,109,105,116,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,101,118,101,110,116,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,112,58,32,116,97,112,32,124,124,32,115,110,97,112,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,114,97,103,58,32,100,114,97,103,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,105,120,101,100,58,32,102,105,120,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,110,97,112,58,32,115,110,97,112,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,111,118,101,114,58,32,104,111,118,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,110,99,111,110,115,116,114,97,105,110,101,100,58,32,117,110,99,111,110,115,116,114,97,105,110,101,100,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,84,111,111,108,116,105,112,115,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,32,61,61,61,32,116,114,117,101,32,124,124,32,105,115,86,97,108,105,100,80,97,114,116,105,97,108,70,111,114,109,97,116,116,101,114,40,101,110,116,114,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,116,111,111,108,116,105,112,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,112,97,114,115,101,100,46,104,97,110,100,108,101,115,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,116,111,111,108,116,105,112,115,46,112,117,115,104,40,101,110,116,114,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,110,116,114,121,32,61,32,97,115,65,114,114,97,121,40,101,110,116,114,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,46,108,101,110,103,116,104,32,33,61,61,32,112,97,114,115,101,100,46,104,97,110,100,108,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,109,117,115,116,32,112,97,115,115,32,97,32,102,111,114,109,97,116,116,101,114,32,102,111,114,32,97,108,108,32,104,97,110,100,108,101,115,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,110,116,114,121,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,102,111,114,109,97,116,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,102,111,114,109,97,116,116,101,114,32,33,61,61,32,92,34,98,111,111,108,101,97,110,92,34,32,38,38,32,33,105,115,86,97,108,105,100,80,97,114,116,105,97,108,70,111,114,109,97,116,116,101,114,40,102,111,114,109,97,116,116,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,116,111,111,108,116,105,112,115,39,32,109,117,115,116,32,98,101,32,112,97,115,115,101,100,32,97,32,102,111,114,109,97,116,116,101,114,32,111,114,32,39,102,97,108,115,101,39,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,116,111,111,108,116,105,112,115,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,65,114,105,97,70,111,114,109,97,116,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,80,97,114,116,105,97,108,70,111,114,109,97,116,116,101,114,40,101,110,116,114,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,97,114,105,97,70,111,114,109,97,116,39,32,114,101,113,117,105,114,101,115,32,39,116,111,39,32,109,101,116,104,111,100,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,97,114,105,97,70,111,114,109,97,116,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,70,111,114,109,97,116,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,86,97,108,105,100,70,111,114,109,97,116,116,101,114,40,101,110,116,114,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,102,111,114,109,97,116,39,32,114,101,113,117,105,114,101,115,32,39,116,111,39,32,97,110,100,32,39,102,114,111,109,39,32,109,101,116,104,111,100,115,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,102,111,114,109,97,116,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,75,101,121,98,111,97,114,100,83,117,112,112,111,114,116,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,101,110,116,114,121,32,33,61,61,32,92,34,98,111,111,108,101,97,110,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,107,101,121,98,111,97,114,100,83,117,112,112,111,114,116,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,97,32,98,111,111,108,101,97,110,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,107,101,121,98,111,97,114,100,83,117,112,112,111,114,116,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,68,111,99,117,109,101,110,116,69,108,101,109,101,110,116,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,97,110,32,97,100,118,97,110,99,101,100,32,111,112,116,105,111,110,46,32,80,97,115,115,101,100,32,118,97,108,117,101,115,32,97,114,101,32,117,115,101,100,32,119,105,116,104,111,117,116,32,118,97,108,105,100,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,67,115,115,80,114,101,102,105,120,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,101,110,116,114,121,32,33,61,61,32,92,34,115,116,114,105,110,103,92,34,32,38,38,32,101,110,116,114,121,32,33,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,99,115,115,80,114,101,102,105,120,39,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,111,114,32,96,102,97,108,115,101,96,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,99,115,115,80,114,101,102,105,120,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,67,115,115,67,108,97,115,115,101,115,40,112,97,114,115,101,100,44,32,101,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,101,110,116,114,121,32,33,61,61,32,92,34,111,98,106,101,99,116,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,99,115,115,67,108,97,115,115,101,115,39,32,109,117,115,116,32,98,101,32,97,110,32,111,98,106,101,99,116,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,112,97,114,115,101,100,46,99,115,115,80,114,101,102,105,120,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,99,115,115,67,108,97,115,115,101,115,32,61,32,123,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,101,110,116,114,121,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,99,115,115,67,108,97,115,115,101,115,91,107,101,121,93,32,61,32,112,97,114,115,101,100,46,99,115,115,80,114,101,102,105,120,32,43,32,101,110,116,114,121,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,99,115,115,67,108,97,115,115,101,115,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,84,101,115,116,32,97,108,108,32,100,101,118,101,108,111,112,101,114,32,115,101,116,116,105,110,103,115,32,97,110,100,32,112,97,114,115,101,32,116,111,32,97,115,115,117,109,112,116,105,111,110,45,115,97,102,101,32,118,97,108,117,101,115,46,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,116,101,115,116,79,112,116,105,111,110,115,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,111,32,112,114,111,118,101,32,97,32,102,105,120,32,102,111,114,32,35,53,51,55,44,32,102,114,101,101,122,101,32,111,112,116,105,111,110,115,32,104,101,114,101,46,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,111,98,106,101,99,116,32,105,115,32,109,111,100,105,102,105,101,100,44,32,97,110,32,101,114,114,111,114,32,119,105,108,108,32,98,101,32,116,104,114,111,119,110,46,92,110,32,32,32,32,32,32,32,32,47,47,32,79,98,106,101,99,116,46,102,114,101,101,122,101,40,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,97,114,115,101,100,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,97,114,103,105,110,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,105,109,105,116,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,100,100,105,110,103,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,110,105,109,97,116,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,58,32,51,48,48,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,114,105,97,70,111,114,109,97,116,58,32,100,101,102,97,117,108,116,70,111,114,109,97,116,116,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,58,32,100,101,102,97,117,108,116,70,111,114,109,97,116,116,101,114,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,47,47,32,84,101,115,116,115,32,97,114,101,32,101,120,101,99,117,116,101,100,32,105,110,32,116,104,101,32,111,114,100,101,114,32,116,104,101,121,32,97,114,101,32,112,114,101,115,101,110,116,101,100,32,104,101,114,101,46,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,101,115,116,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,58,32,123,32,114,58,32,102,97,108,115,101,44,32,116,58,32,116,101,115,116,83,116,101,112,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,98,111,97,114,100,80,97,103,101,77,117,108,116,105,112,108,105,101,114,58,32,123,32,114,58,32,102,97,108,115,101,44,32,116,58,32,116,101,115,116,75,101,121,98,111,97,114,100,80,97,103,101,77,117,108,116,105,112,108,105,101,114,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,98,111,97,114,100,68,101,102,97,117,108,116,83,116,101,112,58,32,123,32,114,58,32,102,97,108,115,101,44,32,116,58,32,116,101,115,116,75,101,121,98,111,97,114,100,68,101,102,97,117,108,116,83,116,101,112,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,58,32,123,32,114,58,32,116,114,117,101,44,32,116,58,32,116,101,115,116,83,116,97,114,116,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,110,101,99,116,58,32,123,32,114,58,32,116,114,117,101,44,32,116,58,32,116,101,115,116,67,111,110,110,101,99,116,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,105,114,101,99,116,105,111,110,58,32,123,32,114,58,32,116,114,117,101,44,32,116,58,32,116,101,115,116,68,105,114,101,99,116,105,111,110,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,110,97,112,58,32,123,32,114,58,32,102,97,108,115,101,44,32,116,58,32,116,101,115,116,83,110,97,112,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,110,105,109,97,116,101,58,32,123,32,114,58,32,102,97,108,115,101,44,32,116,58,32,116,101,115,116,65,110,105,109,97,116,101,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,58,32,123,32,114,58,32,102,97,108,115,101,44,32,116,58,32,116,101,115,116,65,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,97,110,103,101,58,32,123,32,114,58,32,116,114,117,101,44,32,116,58,32,116,101,115,116,82,97,110,103,101,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,114,105,101,110,116,97,116,105,111,110,58,32,123,32,114,58,32,102,97,108,115,101,44,32,116,58,32,116,101,115,116,79,114,105,101,110,116,97,116,105,111,110,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,97,114,103,105,110,58,32,123,32,114,58,32,102,97,108,115,101,44,32,116,58,32,116,101,115,116,77,97,114,103,105,110,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,105,109,105,116,58,32,123,32,114,58,32,102,97,108,115,101,44,32,116,58,32,116,101,115,116,76,105,109,105,116,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,100,100,105,110,103,58,32,123,32,114,58,32,102,97,108,115,101,44,32,116,58,32,116,101,115,116,80,97,100,100,105,110,103,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,101,104,97,118,105,111,117,114,58,32,123,32,114,58,32,116,114,117,101,44,32,116,58,32,116,101,115,116,66,101,104,97,118,105,111,117,114,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,114,105,97,70,111,114,109,97,116,58,32,123,32,114,58,32,102,97,108,115,101,44,32,116,58,32,116,101,115,116,65,114,105,97,70,111,114,109,97,116,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,58,32,123,32,114,58,32,102,97,108,115,101,44,32,116,58,32,116,101,115,116,70,111,114,109,97,116,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,115,58,32,123,32,114,58,32,102,97,108,115,101,44,32,116,58,32,116,101,115,116,84,111,111,108,116,105,112,115,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,98,111,97,114,100,83,117,112,112,111,114,116,58,32,123,32,114,58,32,116,114,117,101,44,32,116,58,32,116,101,115,116,75,101,121,98,111,97,114,100,83,117,112,112,111,114,116,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,32,123,32,114,58,32,102,97,108,115,101,44,32,116,58,32,116,101,115,116,68,111,99,117,109,101,110,116,69,108,101,109,101,110,116,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,115,115,80,114,101,102,105,120,58,32,123,32,114,58,32,116,114,117,101,44,32,116,58,32,116,101,115,116,67,115,115,80,114,101,102,105,120,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,115,115,67,108,97,115,115,101,115,58,32,123,32,114,58,32,116,114,117,101,44,32,116,58,32,116,101,115,116,67,115,115,67,108,97,115,115,101,115,32,125,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,110,101,99,116,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,105,114,101,99,116,105,111,110,58,32,92,34,108,116,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,101,104,97,118,105,111,117,114,58,32,92,34,116,97,112,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,114,105,101,110,116,97,116,105,111,110,58,32,92,34,104,111,114,105,122,111,110,116,97,108,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,98,111,97,114,100,83,117,112,112,111,114,116,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,115,115,80,114,101,102,105,120,58,32,92,34,110,111,85,105,45,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,115,115,67,108,97,115,115,101,115,58,32,99,115,115,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,98,111,97,114,100,80,97,103,101,77,117,108,116,105,112,108,105,101,114,58,32,53,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,98,111,97,114,100,68,101,102,97,117,108,116,83,116,101,112,58,32,49,48,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,47,47,32,65,114,105,97,70,111,114,109,97,116,32,100,101,102,97,117,108,116,115,32,116,111,32,114,101,103,117,108,97,114,32,102,111,114,109,97,116,44,32,105,102,32,97,110,121,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,102,111,114,109,97,116,32,38,38,32,33,111,112,116,105,111,110,115,46,97,114,105,97,70,111,114,109,97,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,97,114,105,97,70,111,114,109,97,116,32,61,32,111,112,116,105,111,110,115,46,102,111,114,109,97,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,82,117,110,32,97,108,108,32,111,112,116,105,111,110,115,32,116,104,114,111,117,103,104,32,97,32,116,101,115,116,105,110,103,32,109,101,99,104,97,110,105,115,109,32,116,111,32,101,110,115,117,114,101,32,99,111,114,114,101,99,116,92,110,32,32,32,32,32,32,32,32,47,47,32,105,110,112,117,116,46,32,73,116,32,115,104,111,117,108,100,32,98,101,32,110,111,116,101,100,32,116,104,97,116,32,111,112,116,105,111,110,115,32,109,105,103,104,116,32,103,101,116,32,109,111,100,105,102,105,101,100,32,116,111,92,110,32,32,32,32,32,32,32,32,47,47,32,98,101,32,104,97,110,100,108,101,100,32,112,114,111,112,101,114,108,121,46,32,69,46,103,46,32,119,114,97,112,112,105,110,103,32,105,110,116,101,103,101,114,115,32,105,110,32,97,114,114,97,121,115,46,92,110,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,116,101,115,116,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,111,112,116,105,111,110,32,105,115,110,39,116,32,115,101,116,44,32,98,117,116,32,105,116,32,105,115,32,114,101,113,117,105,114,101,100,44,32,116,104,114,111,119,32,97,110,32,101,114,114,111,114,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,83,101,116,40,111,112,116,105,111,110,115,91,110,97,109,101,93,41,32,38,38,32,100,101,102,97,117,108,116,115,91,110,97,109,101,93,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,101,115,116,115,91,110,97,109,101,93,46,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,92,34,32,43,32,110,97,109,101,32,43,32,92,34,39,32,105,115,32,114,101,113,117,105,114,101,100,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,101,115,116,115,91,110,97,109,101,93,46,116,40,112,97,114,115,101,100,44,32,33,105,115,83,101,116,40,111,112,116,105,111,110,115,91,110,97,109,101,93,41,32,63,32,100,101,102,97,117,108,116,115,91,110,97,109,101,93,32,58,32,111,112,116,105,111,110,115,91,110,97,109,101,93,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,47,47,32,70,111,114,119,97,114,100,32,112,105,112,115,32,111,112,116,105,111,110,115,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,112,105,112,115,32,61,32,111,112,116,105,111,110,115,46,112,105,112,115,59,92,110,32,32,32,32,32,32,32,32,47,47,32,65,108,108,32,114,101,99,101,110,116,32,98,114,111,119,115,101,114,115,32,97,99,99,101,112,116,32,117,110,112,114,101,102,105,120,101,100,32,116,114,97,110,115,102,111,114,109,46,92,110,32,32,32,32,32,32,32,32,47,47,32,87,101,32,110,101,101,100,32,45,109,115,45,32,102,111,114,32,73,69,57,32,97,110,100,32,45,119,101,98,107,105,116,45,32,102,111,114,32,111,108,100,101,114,32,65,110,100,114,111,105,100,59,92,110,32,32,32,32,32,32,32,32,47,47,32,65,115,115,117,109,101,32,117,115,101,32,111,102,32,45,119,101,98,107,105,116,45,32,105,102,32,117,110,112,114,101,102,105,120,101,100,32,97,110,100,32,45,109,115,45,32,97,114,101,32,110,111,116,32,115,117,112,112,111,114,116,101,100,46,92,110,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,99,97,110,105,117,115,101,46,99,111,109,47,35,102,101,97,116,61,116,114,97,110,115,102,111,114,109,115,50,100,92,110,32,32,32,32,32,32,32,32,118,97,114,32,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,92,34,100,105,118,92,34,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,115,80,114,101,102,105,120,32,61,32,100,46,115,116,121,108,101,46,109,115,84,114,97,110,115,102,111,114,109,32,33,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,111,80,114,101,102,105,120,32,61,32,100,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,32,33,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,116,114,97,110,115,102,111,114,109,82,117,108,101,32,61,32,110,111,80,114,101,102,105,120,32,63,32,92,34,116,114,97,110,115,102,111,114,109,92,34,32,58,32,109,115,80,114,101,102,105,120,32,63,32,92,34,109,115,84,114,97,110,115,102,111,114,109,92,34,32,58,32,92,34,119,101,98,107,105,116,84,114,97,110,115,102,111,114,109,92,34,59,92,110,32,32,32,32,32,32,32,32,47,47,32,80,105,112,115,32,100,111,110,39,116,32,109,111,118,101,44,32,115,111,32,119,101,32,99,97,110,32,112,108,97,99,101,32,116,104,101,109,32,117,115,105,110,103,32,108,101,102,116,47,116,111,112,46,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,116,121,108,101,115,32,61,32,91,91,92,34,108,101,102,116,92,34,44,32,92,34,116,111,112,92,34,93,44,32,91,92,34,114,105,103,104,116,92,34,44,32,92,34,98,111,116,116,111,109,92,34,93,93,59,92,110,32,32,32,32,32,32,32,32,112,97,114,115,101,100,46,115,116,121,108,101,32,61,32,115,116,121,108,101,115,91,112,97,114,115,101,100,46,100,105,114,93,91,112,97,114,115,101,100,46,111,114,116,93,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,114,115,101,100,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,101,110,100,114,101,103,105,111,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,115,99,111,112,101,40,116,97,114,103,101,116,44,32,111,112,116,105,111,110,115,44,32,111,114,105,103,105,110,97,108,79,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,99,116,105,111,110,115,32,61,32,103,101,116,65,99,116,105,111,110,115,40,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,117,112,112,111,114,116,115,84,111,117,99,104,65,99,116,105,111,110,78,111,110,101,32,61,32,103,101,116,83,117,112,112,111,114,116,115,84,111,117,99,104,65,99,116,105,111,110,78,111,110,101,40,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,117,112,112,111,114,116,115,80,97,115,115,105,118,101,32,61,32,115,117,112,112,111,114,116,115,84,111,117,99,104,65,99,116,105,111,110,78,111,110,101,32,38,38,32,103,101,116,83,117,112,112,111,114,116,115,80,97,115,115,105,118,101,40,41,59,92,110,32,32,32,32,32,32,32,32,47,47,32,65,108,108,32,118,97,114,105,97,98,108,101,115,32,108,111,99,97,108,32,116,111,32,39,115,99,111,112,101,39,32,97,114,101,32,112,114,101,102,105,120,101,100,32,119,105,116,104,32,39,115,99,111,112,101,95,39,92,110,32,32,32,32,32,32,32,32,47,47,32,83,108,105,100,101,114,32,68,79,77,32,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,84,97,114,103,101,116,32,61,32,116,97,114,103,101,116,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,66,97,115,101,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,72,97,110,100,108,101,115,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,67,111,110,110,101,99,116,115,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,80,105,112,115,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,84,111,111,108,116,105,112,115,59,92,110,32,32,32,32,32,32,32,32,47,47,32,83,108,105,100,101,114,32,115,116,97,116,101,32,118,97,108,117,101,115,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,32,61,32,111,112,116,105,111,110,115,46,115,112,101,99,116,114,117,109,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,86,97,108,117,101,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,72,97,110,100,108,101,78,117,109,98,101,114,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,65,99,116,105,118,101,72,97,110,100,108,101,115,67,111,117,110,116,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,69,118,101,110,116,115,32,61,32,123,125,59,92,110,32,32,32,32,32,32,32,32,47,47,32,68,111,99,117,109,101,110,116,32,78,111,100,101,115,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,68,111,99,117,109,101,110,116,32,61,32,116,97,114,103,101,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,68,111,99,117,109,101,110,116,69,108,101,109,101,110,116,32,61,32,111,112,116,105,111,110,115,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,32,124,124,32,115,99,111,112,101,95,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,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,66,111,100,121,32,61,32,115,99,111,112,101,95,68,111,99,117,109,101,110,116,46,98,111,100,121,59,92,110,32,32,32,32,32,32,32,32,47,47,32,70,111,114,32,104,111,114,105,122,111,110,116,97,108,32,115,108,105,100,101,114,115,32,105,110,32,115,116,97,110,100,97,114,100,32,108,116,114,32,100,111,99,117,109,101,110,116,115,44,92,110,32,32,32,32,32,32,32,32,47,47,32,109,97,107,101,32,46,110,111,85,105,45,111,114,105,103,105,110,32,111,118,101,114,102,108,111,119,32,116,111,32,116,104,101,32,108,101,102,116,32,115,111,32,116,104,101,32,100,111,99,117,109,101,110,116,32,100,111,101,115,110,39,116,32,115,99,114,111,108,108,46,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,68,105,114,79,102,102,115,101,116,32,61,32,115,99,111,112,101,95,68,111,99,117,109,101,110,116,46,100,105,114,32,61,61,61,32,92,34,114,116,108,92,34,32,124,124,32,111,112,116,105,111,110,115,46,111,114,116,32,61,61,61,32,49,32,63,32,48,32,58,32,49,48,48,59,92,110,32,32,32,32,32,32,32,32,47,47,32,67,114,101,97,116,101,115,32,97,32,110,111,100,101,44,32,97,100,100,115,32,105,116,32,116,111,32,116,97,114,103,101,116,44,32,114,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,110,111,100,101,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,97,100,100,78,111,100,101,84,111,40,97,100,100,84,97,114,103,101,116,44,32,99,108,97,115,115,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,105,118,32,61,32,115,99,111,112,101,95,68,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,92,34,100,105,118,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,108,97,115,115,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,100,105,118,44,32,99,108,97,115,115,78,97,109,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,84,97,114,103,101,116,46,97,112,112,101,110,100,67,104,105,108,100,40,100,105,118,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,105,118,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,65,112,112,101,110,100,32,97,32,111,114,105,103,105,110,32,116,111,32,116,104,101,32,98,97,115,101,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,97,100,100,79,114,105,103,105,110,40,98,97,115,101,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,114,105,103,105,110,32,61,32,97,100,100,78,111,100,101,84,111,40,98,97,115,101,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,111,114,105,103,105,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,32,61,32,97,100,100,78,111,100,101,84,111,40,111,114,105,103,105,110,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,104,97,110,100,108,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,78,111,100,101,84,111,40,104,97,110,100,108,101,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,116,111,117,99,104,65,114,101,97,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,100,97,116,97,45,104,97,110,100,108,101,92,34,44,32,83,116,114,105,110,103,40,104,97,110,100,108,101,78,117,109,98,101,114,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,107,101,121,98,111,97,114,100,83,117,112,112,111,114,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,100,101,118,101,108,111,112,101,114,46,109,111,122,105,108,108,97,46,111,114,103,47,101,110,45,85,83,47,100,111,99,115,47,87,101,98,47,72,84,77,76,47,71,108,111,98,97,108,95,97,116,116,114,105,98,117,116,101,115,47,116,97,98,105,110,100,101,120,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,48,32,61,32,102,111,99,117,115,97,98,108,101,32,97,110,100,32,114,101,97,99,104,97,98,108,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,116,97,98,105,110,100,101,120,92,34,44,32,92,34,48,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,107,101,121,100,111,119,110,92,34,44,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,118,101,110,116,75,101,121,100,111,119,110,40,101,118,101,110,116,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,114,111,108,101,92,34,44,32,92,34,115,108,105,100,101,114,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,97,114,105,97,45,111,114,105,101,110,116,97,116,105,111,110,92,34,44,32,111,112,116,105,111,110,115,46,111,114,116,32,63,32,92,34,118,101,114,116,105,99,97,108,92,34,32,58,32,92,34,104,111,114,105,122,111,110,116,97,108,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,110,100,108,101,78,117,109,98,101,114,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,104,97,110,100,108,101,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,104,97,110,100,108,101,76,111,119,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,104,97,110,100,108,101,78,117,109,98,101,114,32,61,61,61,32,111,112,116,105,111,110,115,46,104,97,110,100,108,101,115,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,104,97,110,100,108,101,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,104,97,110,100,108,101,85,112,112,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,114,105,103,105,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,115,101,114,116,32,110,111,100,101,115,32,102,111,114,32,99,111,110,110,101,99,116,32,101,108,101,109,101,110,116,115,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,97,100,100,67,111,110,110,101,99,116,40,98,97,115,101,44,32,97,100,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,97,100,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,100,100,78,111,100,101,84,111,40,98,97,115,101,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,99,111,110,110,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,104,97,110,100,108,101,115,32,116,111,32,116,104,101,32,115,108,105,100,101,114,32,98,97,115,101,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,97,100,100,69,108,101,109,101,110,116,115,40,99,111,110,110,101,99,116,79,112,116,105,111,110,115,44,32,98,97,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,110,101,99,116,66,97,115,101,32,61,32,97,100,100,78,111,100,101,84,111,40,98,97,115,101,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,99,111,110,110,101,99,116,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,72,97,110,100,108,101,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,67,111,110,110,101,99,116,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,67,111,110,110,101,99,116,115,46,112,117,115,104,40,97,100,100,67,111,110,110,101,99,116,40,99,111,110,110,101,99,116,66,97,115,101,44,32,99,111,110,110,101,99,116,79,112,116,105,111,110,115,91,48,93,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,91,58,58,58,58,79,61,61,61,61,79,61,61,61,61,79,61,61,61,61,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,99,111,110,110,101,99,116,79,112,116,105,111,110,115,32,61,32,91,48,44,32,49,44,32,49,44,32,49,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,111,112,116,105,111,110,115,46,104,97,110,100,108,101,115,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,75,101,101,112,32,97,32,108,105,115,116,32,111,102,32,97,108,108,32,97,100,100,101,100,32,104,97,110,100,108,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,72,97,110,100,108,101,115,46,112,117,115,104,40,97,100,100,79,114,105,103,105,110,40,98,97,115,101,44,32,105,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,72,97,110,100,108,101,78,117,109,98,101,114,115,91,105,93,32,61,32,105,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,67,111,110,110,101,99,116,115,46,112,117,115,104,40,97,100,100,67,111,110,110,101,99,116,40,99,111,110,110,101,99,116,66,97,115,101,44,32,99,111,110,110,101,99,116,79,112,116,105,111,110,115,91,105,32,43,32,49,93,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,105,116,105,97,108,105,122,101,32,97,32,115,105,110,103,108,101,32,115,108,105,100,101,114,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,97,100,100,83,108,105,100,101,114,40,97,100,100,84,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,112,112,108,121,32,99,108,97,115,115,101,115,32,97,110,100,32,100,97,116,97,32,116,111,32,116,104,101,32,116,97,114,103,101,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,97,100,100,84,97,114,103,101,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,100,105,114,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,97,100,100,84,97,114,103,101,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,108,116,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,97,100,100,84,97,114,103,101,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,114,116,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,111,114,116,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,97,100,100,84,97,114,103,101,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,104,111,114,105,122,111,110,116,97,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,97,100,100,84,97,114,103,101,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,118,101,114,116,105,99,97,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,101,120,116,68,105,114,101,99,116,105,111,110,32,61,32,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,97,100,100,84,97,114,103,101,116,41,46,100,105,114,101,99,116,105,111,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,101,120,116,68,105,114,101,99,116,105,111,110,32,61,61,61,32,92,34,114,116,108,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,97,100,100,84,97,114,103,101,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,116,101,120,116,68,105,114,101,99,116,105,111,110,82,116,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,97,100,100,84,97,114,103,101,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,116,101,120,116,68,105,114,101,99,116,105,111,110,76,116,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,100,100,78,111,100,101,84,111,40,97,100,100,84,97,114,103,101,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,98,97,115,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,97,100,100,84,111,111,108,116,105,112,40,104,97,110,100,108,101,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,111,112,116,105,111,110,115,46,116,111,111,108,116,105,112,115,32,124,124,32,33,111,112,116,105,111,110,115,46,116,111,111,108,116,105,112,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,100,100,78,111,100,101,84,111,40,104,97,110,100,108,101,46,102,105,114,115,116,67,104,105,108,100,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,116,111,111,108,116,105,112,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,83,108,105,100,101,114,68,105,115,97,98,108,101,100,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,111,112,101,95,84,97,114,103,101,116,46,104,97,115,65,116,116,114,105,98,117,116,101,40,92,34,100,105,115,97,98,108,101,100,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,68,105,115,97,98,108,101,32,116,104,101,32,115,108,105,100,101,114,32,100,114,97,103,103,105,110,103,32,105,102,32,97,110,121,32,104,97,110,100,108,101,32,105,115,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,72,97,110,100,108,101,68,105,115,97,98,108,101,100,40,104,97,110,100,108,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,79,114,105,103,105,110,32,61,32,115,99,111,112,101,95,72,97,110,100,108,101,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,110,100,108,101,79,114,105,103,105,110,46,104,97,115,65,116,116,114,105,98,117,116,101,40,92,34,100,105,115,97,98,108,101,100,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,84,111,111,108,116,105,112,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,99,111,112,101,95,84,111,111,108,116,105,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,69,118,101,110,116,40,92,34,117,112,100,97,116,101,92,34,32,43,32,73,78,84,69,82,78,65,76,95,69,86,69,78,84,95,78,83,46,116,111,111,108,116,105,112,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,84,111,111,108,116,105,112,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,111,111,108,116,105,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,111,111,108,116,105,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,69,108,101,109,101,110,116,40,116,111,111,108,116,105,112,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,84,111,111,108,116,105,112,115,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,116,111,111,108,116,105,112,115,32,111,112,116,105,111,110,32,105,115,32,97,32,115,104,111,114,116,104,97,110,100,32,102,111,114,32,117,115,105,110,103,32,116,104,101,32,39,117,112,100,97,116,101,39,32,101,118,101,110,116,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,116,111,111,108,116,105,112,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,84,111,111,108,116,105,112,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,111,111,108,116,105,112,115,32,97,114,101,32,97,100,100,101,100,32,119,105,116,104,32,111,112,116,105,111,110,115,46,116,111,111,108,116,105,112,115,32,105,110,32,111,114,105,103,105,110,97,108,32,111,114,100,101,114,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,84,111,111,108,116,105,112,115,32,61,32,115,99,111,112,101,95,72,97,110,100,108,101,115,46,109,97,112,40,97,100,100,84,111,111,108,116,105,112,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,105,110,100,69,118,101,110,116,40,92,34,117,112,100,97,116,101,92,34,32,43,32,73,78,84,69,82,78,65,76,95,69,86,69,78,84,95,78,83,46,116,111,111,108,116,105,112,115,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,115,44,32,104,97,110,100,108,101,78,117,109,98,101,114,44,32,117,110,101,110,99,111,100,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,115,99,111,112,101,95,84,111,111,108,116,105,112,115,32,124,124,32,33,111,112,116,105,111,110,115,46,116,111,111,108,116,105,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,99,111,112,101,95,84,111,111,108,116,105,112,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,100,86,97,108,117,101,32,61,32,118,97,108,117,101,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,116,111,111,108,116,105,112,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,32,33,61,61,32,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,116,101,100,86,97,108,117,101,32,61,32,111,112,116,105,111,110,115,46,116,111,111,108,116,105,112,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,46,116,111,40,117,110,101,110,99,111,100,101,100,91,104,97,110,100,108,101,78,117,109,98,101,114,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,84,111,111,108,116,105,112,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,46,105,110,110,101,114,72,84,77,76,32,61,32,102,111,114,109,97,116,116,101,100,86,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,97,114,105,97,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,69,118,101,110,116,40,92,34,117,112,100,97,116,101,92,34,32,43,32,73,78,84,69,82,78,65,76,95,69,86,69,78,84,95,78,83,46,97,114,105,97,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,105,110,100,69,118,101,110,116,40,92,34,117,112,100,97,116,101,92,34,32,43,32,73,78,84,69,82,78,65,76,95,69,86,69,78,84,95,78,83,46,97,114,105,97,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,115,44,32,104,97,110,100,108,101,78,117,109,98,101,114,44,32,117,110,101,110,99,111,100,101,100,44,32,116,97,112,44,32,112,111,115,105,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,112,100,97,116,101,32,65,114,105,97,32,86,97,108,117,101,115,32,102,111,114,32,97,108,108,32,104,97,110,100,108,101,115,44,32,97,115,32,97,32,99,104,97,110,103,101,32,105,110,32,111,110,101,32,99,104,97,110,103,101,115,32,109,105,110,32,97,110,100,32,109,97,120,32,118,97,108,117,101,115,32,102,111,114,32,116,104,101,32,110,101,120,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,72,97,110,100,108,101,78,117,109,98,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,32,61,32,115,99,111,112,101,95,72,97,110,100,108,101,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,105,110,32,61,32,99,104,101,99,107,72,97,110,100,108,101,80,111,115,105,116,105,111,110,40,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,44,32,105,110,100,101,120,44,32,48,44,32,116,114,117,101,44,32,116,114,117,101,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,97,120,32,61,32,99,104,101,99,107,72,97,110,100,108,101,80,111,115,105,116,105,111,110,40,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,44,32,105,110,100,101,120,44,32,49,48,48,44,32,116,114,117,101,44,32,116,114,117,101,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,119,32,61,32,112,111,115,105,116,105,111,110,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,111,114,109,97,116,116,101,100,32,118,97,108,117,101,32,102,111,114,32,100,105,115,112,108,97,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,101,120,116,32,61,32,83,116,114,105,110,103,40,111,112,116,105,111,110,115,46,97,114,105,97,70,111,114,109,97,116,46,116,111,40,117,110,101,110,99,111,100,101,100,91,105,110,100,101,120,93,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,112,32,116,111,32,115,108,105,100,101,114,32,114,97,110,103,101,32,118,97,108,117,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,105,110,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,102,114,111,109,83,116,101,112,112,105,110,103,40,109,105,110,41,46,116,111,70,105,120,101,100,40,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,120,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,102,114,111,109,83,116,101,112,112,105,110,103,40,109,97,120,41,46,116,111,70,105,120,101,100,40,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,119,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,102,114,111,109,83,116,101,112,112,105,110,103,40,110,111,119,41,46,116,111,70,105,120,101,100,40,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,46,99,104,105,108,100,114,101,110,91,48,93,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,97,114,105,97,45,118,97,108,117,101,109,105,110,92,34,44,32,109,105,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,46,99,104,105,108,100,114,101,110,91,48,93,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,97,114,105,97,45,118,97,108,117,101,109,97,120,92,34,44,32,109,97,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,46,99,104,105,108,100,114,101,110,91,48,93,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,97,114,105,97,45,118,97,108,117,101,110,111,119,92,34,44,32,110,111,119,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,46,99,104,105,108,100,114,101,110,91,48,93,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,97,114,105,97,45,118,97,108,117,101,116,101,120,116,92,34,44,32,116,101,120,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,71,114,111,117,112,40,112,105,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,115,101,32,116,104,101,32,114,97,110,103,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,105,112,115,46,109,111,100,101,32,61,61,61,32,101,120,112,111,114,116,115,46,80,105,112,115,77,111,100,101,46,82,97,110,103,101,32,124,124,32,112,105,112,115,46,109,111,100,101,32,61,61,61,32,101,120,112,111,114,116,115,46,80,105,112,115,77,111,100,101,46,83,116,101,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,120,86,97,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,105,112,115,46,109,111,100,101,32,61,61,61,32,101,120,112,111,114,116,115,46,80,105,112,115,77,111,100,101,46,67,111,117,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,105,112,115,46,118,97,108,117,101,115,32,60,32,50,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,39,118,97,108,117,101,115,39,32,40,62,61,32,50,41,32,114,101,113,117,105,114,101,100,32,102,111,114,32,109,111,100,101,32,39,99,111,117,110,116,39,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,105,118,105,100,101,32,48,32,45,32,49,48,48,32,105,110,32,39,99,111,117,110,116,39,32,112,97,114,116,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,116,101,114,118,97,108,32,61,32,112,105,112,115,46,118,97,108,117,101,115,32,45,32,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,112,114,101,97,100,32,61,32,49,48,48,32,47,32,105,110,116,101,114,118,97,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,76,105,115,116,32,116,104,101,115,101,32,112,97,114,116,115,32,97,110,100,32,104,97,118,101,32,116,104,101,109,32,104,97,110,100,108,101,100,32,97,115,32,39,112,111,115,105,116,105,111,110,115,39,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,105,110,116,101,114,118,97,108,45,45,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,115,91,105,110,116,101,114,118,97,108,93,32,61,32,105,110,116,101,114,118,97,108,32,42,32,115,112,114,101,97,100,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,115,46,112,117,115,104,40,49,48,48,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,112,84,111,82,97,110,103,101,40,118,97,108,117,101,115,44,32,112,105,112,115,46,115,116,101,112,112,101,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,105,112,115,46,109,111,100,101,32,61,61,61,32,101,120,112,111,114,116,115,46,80,105,112,115,77,111,100,101,46,80,111,115,105,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,112,32,97,108,108,32,112,101,114,99,101,110,116,97,103,101,115,32,116,111,32,111,110,45,114,97,110,103,101,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,112,84,111,82,97,110,103,101,40,112,105,112,115,46,118,97,108,117,101,115,44,32,112,105,112,115,46,115,116,101,112,112,101,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,105,112,115,46,109,111,100,101,32,61,61,61,32,101,120,112,111,114,116,115,46,80,105,112,115,77,111,100,101,46,86,97,108,117,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,118,97,108,117,101,32,109,117,115,116,32,98,101,32,115,116,101,112,112,101,100,44,32,105,116,32,110,101,101,100,115,32,116,111,32,98,101,32,99,111,110,118,101,114,116,101,100,32,116,111,32,97,32,112,101,114,99,101,110,116,97,103,101,32,102,105,114,115,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,105,112,115,46,115,116,101,112,112,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,105,112,115,46,118,97,108,117,101,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,116,111,32,112,101,114,99,101,110,116,97,103,101,44,32,97,112,112,108,121,32,115,116,101,112,44,32,114,101,116,117,114,110,32,116,111,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,102,114,111,109,83,116,101,112,112,105,110,103,40,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,103,101,116,83,116,101,112,40,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,116,111,83,116,101,112,112,105,110,103,40,118,97,108,117,101,41,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,119,101,32,99,97,110,32,115,105,109,112,108,121,32,117,115,101,32,116,104,101,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,105,112,115,46,118,97,108,117,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,32,47,47,32,112,105,112,115,46,109,111,100,101,32,61,32,110,101,118,101,114,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,109,97,112,84,111,82,97,110,103,101,40,118,97,108,117,101,115,44,32,115,116,101,112,112,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,102,114,111,109,83,116,101,112,112,105,110,103,40,115,116,101,112,112,101,100,32,63,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,103,101,116,83,116,101,112,40,118,97,108,117,101,41,32,58,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,110,101,114,97,116,101,83,112,114,101,97,100,40,112,105,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,115,97,102,101,73,110,99,114,101,109,101,110,116,40,118,97,108,117,101,44,32,105,110,99,114,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,118,111,105,100,32,102,108,111,97,116,105,110,103,32,112,111,105,110,116,32,118,97,114,105,97,110,99,101,32,98,121,32,100,114,111,112,112,105,110,103,32,116,104,101,32,115,109,97,108,108,101,115,116,32,100,101,99,105,109,97,108,32,112,108,97,99,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,78,117,109,98,101,114,40,40,118,97,108,117,101,32,43,32,105,110,99,114,101,109,101,110,116,41,46,116,111,70,105,120,101,100,40,55,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,103,101,116,71,114,111,117,112,40,112,105,112,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,101,115,32,61,32,123,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,105,114,115,116,73,110,82,97,110,103,101,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,120,86,97,108,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,73,110,82,97,110,103,101,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,120,86,97,108,91,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,120,86,97,108,46,108,101,110,103,116,104,32,45,32,49,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,103,110,111,114,101,70,105,114,115,116,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,103,110,111,114,101,76,97,115,116,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,101,118,80,99,116,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,114,101,97,116,101,32,97,32,99,111,112,121,32,111,102,32,116,104,101,32,103,114,111,117,112,44,32,115,111,114,116,32,105,116,32,97,110,100,32,102,105,108,116,101,114,32,97,119,97,121,32,97,108,108,32,100,117,112,108,105,99,97,116,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,103,114,111,117,112,32,61,32,117,110,105,113,117,101,40,103,114,111,117,112,46,115,108,105,99,101,40,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,32,45,32,98,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,107,101,32,115,117,114,101,32,116,104,101,32,114,97,110,103,101,32,115,116,97,114,116,115,32,119,105,116,104,32,116,104,101,32,102,105,114,115,116,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,103,114,111,117,112,91,48,93,32,33,61,61,32,102,105,114,115,116,73,110,82,97,110,103,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,114,111,117,112,46,117,110,115,104,105,102,116,40,102,105,114,115,116,73,110,82,97,110,103,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,103,110,111,114,101,70,105,114,115,116,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,76,105,107,101,119,105,115,101,32,102,111,114,32,116,104,101,32,108,97,115,116,32,111,110,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,103,114,111,117,112,91,103,114,111,117,112,46,108,101,110,103,116,104,32,45,32,49,93,32,33,61,61,32,108,97,115,116,73,110,82,97,110,103,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,114,111,117,112,46,112,117,115,104,40,108,97,115,116,73,110,82,97,110,103,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,103,110,111,114,101,76,97,115,116,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,103,114,111,117,112,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,117,114,114,101,110,116,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,71,101,116,32,116,104,101,32,99,117,114,114,101,110,116,32,115,116,101,112,32,97,110,100,32,116,104,101,32,108,111,119,101,114,32,43,32,117,112,112,101,114,32,112,111,115,105,116,105,111,110,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,101,112,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,113,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,111,119,32,61,32,99,117,114,114,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,105,103,104,32,61,32,103,114,111,117,112,91,105,110,100,101,120,32,43,32,49,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,80,99,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,99,116,68,105,102,102,101,114,101,110,99,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,99,116,80,111,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,121,112,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,101,112,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,97,108,83,116,101,112,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,101,112,83,105,122,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,83,116,101,112,115,32,61,32,112,105,112,115,46,109,111,100,101,32,61,61,61,32,101,120,112,111,114,116,115,46,80,105,112,115,77,111,100,101,46,83,116,101,112,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,104,101,110,32,117,115,105,110,103,32,39,115,116,101,112,115,39,32,109,111,100,101,44,32,117,115,101,32,116,104,101,32,112,114,111,118,105,100,101,100,32,115,116,101,112,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,119,101,39,108,108,32,115,116,101,112,32,111,110,32,116,111,32,116,104,101,32,110,101,120,116,32,115,117,98,114,97,110,103,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,83,116,101,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,120,78,117,109,83,116,101,112,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,116,111,32,97,32,39,102,117,108,108,39,32,115,116,101,112,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,115,116,101,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,32,61,32,104,105,103,104,32,45,32,108,111,119,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,104,105,103,104,32,105,115,32,117,110,100,101,102,105,110,101,100,32,119,101,32,97,114,101,32,97,116,32,116,104,101,32,108,97,115,116,32,115,117,98,114,97,110,103,101,46,32,77,97,107,101,32,115,117,114,101,32,105,116,32,105,116,101,114,97,116,101,115,32,111,110,99,101,32,40,35,49,48,56,56,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,103,104,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,105,103,104,32,61,32,108,111,119,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,107,101,32,115,117,114,101,32,115,116,101,112,32,105,115,110,39,116,32,48,44,32,119,104,105,99,104,32,119,111,117,108,100,32,99,97,117,115,101,32,97,110,32,105,110,102,105,110,105,116,101,32,108,111,111,112,32,40,35,54,53,52,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,32,61,32,77,97,116,104,46,109,97,120,40,115,116,101,112,44,32,48,46,48,48,48,48,48,48,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,110,100,32,97,108,108,32,115,116,101,112,115,32,105,110,32,116,104,101,32,115,117,98,114,97,110,103,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,108,111,119,59,32,105,32,60,61,32,104,105,103,104,59,32,105,32,61,32,115,97,102,101,73,110,99,114,101,109,101,110,116,40,105,44,32,115,116,101,112,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,71,101,116,32,116,104,101,32,112,101,114,99,101,110,116,97,103,101,32,118,97,108,117,101,32,102,111,114,32,116,104,101,32,99,117,114,114,101,110,116,32,115,116,101,112,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,99,97,108,99,117,108,97,116,101,32,116,104,101,32,115,105,122,101,32,102,111,114,32,116,104,101,32,115,117,98,114,97,110,103,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,119,80,99,116,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,116,111,83,116,101,112,112,105,110,103,40,105,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,99,116,68,105,102,102,101,114,101,110,99,101,32,61,32,110,101,119,80,99,116,32,45,32,112,114,101,118,80,99,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,115,32,61,32,112,99,116,68,105,102,102,101,114,101,110,99,101,32,47,32,40,112,105,112,115,46,100,101,110,115,105,116,121,32,124,124,32,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,97,108,83,116,101,112,115,32,61,32,77,97,116,104,46,114,111,117,110,100,40,115,116,101,112,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,105,115,32,114,97,116,105,111,32,114,101,112,114,101,115,101,110,116,115,32,116,104,101,32,97,109,111,117,110,116,32,111,102,32,112,101,114,99,101,110,116,97,103,101,45,115,112,97,99,101,32,97,32,112,111,105,110,116,32,105,110,100,105,99,97,116,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,111,114,32,97,32,100,101,110,115,105,116,121,32,49,32,116,104,101,32,112,111,105,110,116,115,47,112,101,114,99,101,110,116,97,103,101,32,61,32,49,46,32,70,111,114,32,100,101,110,115,105,116,121,32,50,44,32,116,104,97,116,32,112,101,114,99,101,110,116,97,103,101,32,110,101,101,100,115,32,116,111,32,98,101,32,114,101,45,100,105,118,105,100,101,100,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,111,117,110,100,32,116,104,101,32,112,101,114,99,101,110,116,97,103,101,32,111,102,102,115,101,116,32,116,111,32,97,110,32,101,118,101,110,32,110,117,109,98,101,114,44,32,116,104,101,110,32,100,105,118,105,100,101,32,98,121,32,116,119,111,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,116,111,32,115,112,114,101,97,100,32,116,104,101,32,111,102,102,115,101,116,32,111,110,32,98,111,116,104,32,115,105,100,101,115,32,111,102,32,116,104,101,32,114,97,110,103,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,83,105,122,101,32,61,32,112,99,116,68,105,102,102,101,114,101,110,99,101,32,47,32,114,101,97,108,83,116,101,112,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,105,118,105,100,101,32,97,108,108,32,112,111,105,110,116,115,32,101,118,101,110,108,121,44,32,97,100,100,105,110,103,32,116,104,101,32,99,111,114,114,101,99,116,32,110,117,109,98,101,114,32,116,111,32,116,104,105,115,32,115,117,98,114,97,110,103,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,117,110,32,117,112,32,116,111,32,60,61,32,115,111,32,116,104,97,116,32,49,48,48,37,32,103,101,116,115,32,97,32,112,111,105,110,116,44,32,101,118,101,110,116,32,105,102,32,105,103,110,111,114,101,76,97,115,116,32,105,115,32,115,101,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,113,32,61,32,49,59,32,113,32,60,61,32,114,101,97,108,83,116,101,112,115,59,32,113,32,43,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,114,97,116,105,111,32,98,101,116,119,101,101,110,32,116,104,101,32,114,111,117,110,100,101,100,32,118,97,108,117,101,32,97,110,100,32,116,104,101,32,97,99,116,117,97,108,32,115,105,122,101,32,109,105,103,104,116,32,98,101,32,126,49,37,32,111,102,102,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,114,114,101,99,116,32,116,104,101,32,112,101,114,99,101,110,116,97,103,101,32,111,102,102,115,101,116,32,98,121,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,112,111,105,110,116,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,112,101,114,32,115,117,98,114,97,110,103,101,46,32,100,101,110,115,105,116,121,32,61,32,49,32,119,105,108,108,32,114,101,115,117,108,116,32,105,110,32,49,48,48,32,112,111,105,110,116,115,32,111,110,32,116,104,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,102,117,108,108,32,114,97,110,103,101,44,32,50,32,102,111,114,32,53,48,44,32,52,32,102,111,114,32,50,53,44,32,101,116,99,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,99,116,80,111,115,32,61,32,112,114,101,118,80,99,116,32,43,32,113,32,42,32,115,116,101,112,83,105,122,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,101,115,91,112,99,116,80,111,115,46,116,111,70,105,120,101,100,40,53,41,93,32,61,32,91,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,102,114,111,109,83,116,101,112,112,105,110,103,40,112,99,116,80,111,115,41,44,32,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,101,116,101,114,109,105,110,101,32,116,104,101,32,112,111,105,110,116,32,116,121,112,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,32,61,32,103,114,111,117,112,46,105,110,100,101,120,79,102,40,105,41,32,62,32,45,49,32,63,32,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,46,76,97,114,103,101,86,97,108,117,101,32,58,32,105,115,83,116,101,112,115,32,63,32,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,46,83,109,97,108,108,86,97,108,117,101,32,58,32,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,46,78,111,86,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,110,102,111,114,99,101,32,116,104,101,32,39,105,103,110,111,114,101,70,105,114,115,116,39,32,111,112,116,105,111,110,32,98,121,32,111,118,101,114,119,114,105,116,105,110,103,32,116,104,101,32,116,121,112,101,32,102,111,114,32,48,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,110,100,101,120,32,38,38,32,105,103,110,111,114,101,70,105,114,115,116,32,38,38,32,105,32,33,61,61,32,104,105,103,104,41,32,123,92,110,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,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,105,32,61,61,61,32,104,105,103,104,32,38,38,32,105,103,110,111,114,101,76,97,115,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,114,107,32,116,104,101,32,39,116,121,112,101,39,32,111,102,32,116,104,105,115,32,112,111,105,110,116,46,32,48,32,61,32,112,108,97,105,110,44,32,49,32,61,32,114,101,97,108,32,118,97,108,117,101,44,32,50,32,61,32,115,116,101,112,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,101,115,91,110,101,119,80,99,116,46,116,111,70,105,120,101,100,40,53,41,93,32,61,32,91,105,44,32,116,121,112,101,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,112,100,97,116,101,32,116,104,101,32,112,101,114,99,101,110,116,97,103,101,32,99,111,117,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,118,80,99,116,32,61,32,110,101,119,80,99,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,100,101,120,101,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,97,100,100,77,97,114,107,105,110,103,40,115,112,114,101,97,100,44,32,102,105,108,116,101,114,70,117,110,99,44,32,102,111,114,109,97,116,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,97,44,32,95,98,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,32,61,32,115,99,111,112,101,95,68,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,92,34,100,105,118,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,83,105,122,101,67,108,97,115,115,101,115,32,61,32,40,95,97,32,61,32,123,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,97,91,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,46,78,111,110,101,93,32,61,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,97,91,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,46,78,111,86,97,108,117,101,93,32,61,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,118,97,108,117,101,78,111,114,109,97,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,97,91,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,46,76,97,114,103,101,86,97,108,117,101,93,32,61,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,118,97,108,117,101,76,97,114,103,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,97,91,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,46,83,109,97,108,108,86,97,108,117,101,93,32,61,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,118,97,108,117,101,83,117,98,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,97,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,97,114,107,101,114,83,105,122,101,67,108,97,115,115,101,115,32,61,32,40,95,98,32,61,32,123,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,98,91,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,46,78,111,110,101,93,32,61,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,98,91,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,46,78,111,86,97,108,117,101,93,32,61,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,109,97,114,107,101,114,78,111,114,109,97,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,98,91,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,46,76,97,114,103,101,86,97,108,117,101,93,32,61,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,109,97,114,107,101,114,76,97,114,103,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,98,91,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,46,83,109,97,108,108,86,97,108,117,101,93,32,61,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,109,97,114,107,101,114,83,117,98,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,98,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,79,114,105,101,110,116,97,116,105,111,110,67,108,97,115,115,101,115,32,61,32,91,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,118,97,108,117,101,72,111,114,105,122,111,110,116,97,108,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,118,97,108,117,101,86,101,114,116,105,99,97,108,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,97,114,107,101,114,79,114,105,101,110,116,97,116,105,111,110,67,108,97,115,115,101,115,32,61,32,91,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,109,97,114,107,101,114,72,111,114,105,122,111,110,116,97,108,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,109,97,114,107,101,114,86,101,114,116,105,99,97,108,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,101,108,101,109,101,110,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,112,105,112,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,101,108,101,109,101,110,116,44,32,111,112,116,105,111,110,115,46,111,114,116,32,61,61,61,32,48,32,63,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,112,105,112,115,72,111,114,105,122,111,110,116,97,108,32,58,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,112,105,112,115,86,101,114,116,105,99,97,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,67,108,97,115,115,101,115,40,116,121,112,101,44,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,32,61,32,115,111,117,114,99,101,32,61,61,61,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,114,105,101,110,116,97,116,105,111,110,67,108,97,115,115,101,115,32,61,32,97,32,63,32,118,97,108,117,101,79,114,105,101,110,116,97,116,105,111,110,67,108,97,115,115,101,115,32,58,32,109,97,114,107,101,114,79,114,105,101,110,116,97,116,105,111,110,67,108,97,115,115,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,105,122,101,67,108,97,115,115,101,115,32,61,32,97,32,63,32,118,97,108,117,101,83,105,122,101,67,108,97,115,115,101,115,32,58,32,109,97,114,107,101,114,83,105,122,101,67,108,97,115,115,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,111,117,114,99,101,32,43,32,92,34,32,92,34,32,43,32,111,114,105,101,110,116,97,116,105,111,110,67,108,97,115,115,101,115,91,111,112,116,105,111,110,115,46,111,114,116,93,32,43,32,92,34,32,92,34,32,43,32,115,105,122,101,67,108,97,115,115,101,115,91,116,121,112,101,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,97,100,100,83,112,114,101,97,100,40,111,102,102,115,101,116,44,32,118,97,108,117,101,44,32,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,112,112,108,121,32,116,104,101,32,102,105,108,116,101,114,32,102,117,110,99,116,105,111,110,44,32,105,102,32,105,116,32,105,115,32,115,101,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,32,61,32,102,105,108,116,101,114,70,117,110,99,32,63,32,102,105,108,116,101,114,70,117,110,99,40,118,97,108,117,101,44,32,116,121,112,101,41,32,58,32,116,121,112,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,46,78,111,110,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,97,32,109,97,114,107,101,114,32,102,111,114,32,101,118,101,114,121,32,112,111,105,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,111,100,101,32,61,32,97,100,100,78,111,100,101,84,111,40,101,108,101,109,101,110,116,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,99,108,97,115,115,78,97,109,101,32,61,32,103,101,116,67,108,97,115,115,101,115,40,116,121,112,101,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,109,97,114,107,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,121,108,101,91,111,112,116,105,111,110,115,46,115,116,121,108,101,93,32,61,32,111,102,102,115,101,116,32,43,32,92,34,37,92,34,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,86,97,108,117,101,115,32,97,114,101,32,111,110,108,121,32,97,112,112,101,110,100,101,100,32,102,111,114,32,112,111,105,110,116,115,32,109,97,114,107,101,100,32,39,49,39,32,111,114,32,39,50,39,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,62,32,101,120,112,111,114,116,115,46,80,105,112,115,84,121,112,101,46,78,111,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,32,61,32,97,100,100,78,111,100,101,84,111,40,101,108,101,109,101,110,116,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,99,108,97,115,115,78,97,109,101,32,61,32,103,101,116,67,108,97,115,115,101,115,40,116,121,112,101,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,100,97,116,97,45,118,97,108,117,101,92,34,44,32,83,116,114,105,110,103,40,118,97,108,117,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,115,116,121,108,101,91,111,112,116,105,111,110,115,46,115,116,121,108,101,93,32,61,32,111,102,102,115,101,116,32,43,32,92,34,37,92,34,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,105,110,110,101,114,72,84,77,76,32,61,32,83,116,114,105,110,103,40,102,111,114,109,97,116,116,101,114,46,116,111,40,118,97,108,117,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,112,112,101,110,100,32,97,108,108,32,112,111,105,110,116,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,115,112,114,101,97,100,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,111,102,102,115,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,83,112,114,101,97,100,40,111,102,102,115,101,116,44,32,115,112,114,101,97,100,91,111,102,102,115,101,116,93,91,48,93,44,32,115,112,114,101,97,100,91,111,102,102,115,101,116,93,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,80,105,112,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,99,111,112,101,95,80,105,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,69,108,101,109,101,110,116,40,115,99,111,112,101,95,80,105,112,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,80,105,112,115,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,112,105,112,115,40,112,105,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,120,32,35,54,54,57,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,80,105,112,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,112,114,101,97,100,32,61,32,103,101,110,101,114,97,116,101,83,112,114,101,97,100,40,112,105,112,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,105,108,116,101,114,32,61,32,112,105,112,115,46,102,105,108,116,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,32,61,32,112,105,112,115,46,102,111,114,109,97,116,32,124,124,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,58,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,77,97,116,104,46,114,111,117,110,100,40,118,97,108,117,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,80,105,112,115,32,61,32,115,99,111,112,101,95,84,97,114,103,101,116,46,97,112,112,101,110,100,67,104,105,108,100,40,97,100,100,77,97,114,107,105,110,103,40,115,112,114,101,97,100,44,32,102,105,108,116,101,114,44,32,102,111,114,109,97,116,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,111,112,101,95,80,105,112,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,83,104,111,114,116,104,97,110,100,32,102,111,114,32,98,97,115,101,32,100,105,109,101,110,115,105,111,110,115,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,98,97,115,101,83,105,122,101,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,99,116,32,61,32,115,99,111,112,101,95,66,97,115,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,108,116,32,61,32,40,92,34,111,102,102,115,101,116,92,34,32,43,32,91,92,34,87,105,100,116,104,92,34,44,32,92,34,72,101,105,103,104,116,92,34,93,91,111,112,116,105,111,110,115,46,111,114,116,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,112,116,105,111,110,115,46,111,114,116,32,61,61,61,32,48,32,63,32,114,101,99,116,46,119,105,100,116,104,32,124,124,32,115,99,111,112,101,95,66,97,115,101,91,97,108,116,93,32,58,32,114,101,99,116,46,104,101,105,103,104,116,32,124,124,32,115,99,111,112,101,95,66,97,115,101,91,97,108,116,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,114,32,102,111,114,32,97,116,116,97,99,104,105,110,103,32,101,118,101,110,116,115,32,116,114,111,117,103,104,32,97,32,112,114,111,120,121,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,97,116,116,97,99,104,69,118,101,110,116,40,101,118,101,110,116,115,44,32,101,108,101,109,101,110,116,44,32,99,97,108,108,98,97,99,107,44,32,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,99,97,110,32,98,101,32,117,115,101,100,32,116,111,32,39,102,105,108,116,101,114,39,32,101,118,101,110,116,115,32,116,111,32,116,104,101,32,115,108,105,100,101,114,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,101,108,101,109,101,110,116,32,105,115,32,97,32,110,111,100,101,44,32,110,111,116,32,97,32,110,111,100,101,76,105,115,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,101,116,104,111,100,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,32,61,32,102,105,120,69,118,101,110,116,40,101,118,101,110,116,44,32,100,97,116,97,46,112,97,103,101,79,102,102,115,101,116,44,32,100,97,116,97,46,116,97,114,103,101,116,32,124,124,32,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,102,105,120,69,118,101,110,116,32,114,101,116,117,114,110,115,32,102,97,108,115,101,32,105,102,32,116,104,105,115,32,101,118,101,110,116,32,104,97,115,32,97,32,100,105,102,102,101,114,101,110,116,32,116,97,114,103,101,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,119,104,101,110,32,104,97,110,100,108,105,110,103,32,40,109,117,108,116,105,45,41,32,116,111,117,99,104,32,101,118,101,110,116,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,100,111,78,111,116,82,101,106,101,99,116,32,105,115,32,112,97,115,115,101,100,32,98,121,32,97,108,108,32,101,110,100,32,101,118,101,110,116,115,32,116,111,32,109,97,107,101,32,115,117,114,101,32,114,101,108,101,97,115,101,100,32,116,111,117,99,104,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,97,114,101,32,110,111,116,32,114,101,106,101,99,116,101,100,44,32,108,101,97,118,105,110,103,32,116,104,101,32,115,108,105,100,101,114,32,92,34,115,116,117,99,107,92,34,32,116,111,32,116,104,101,32,99,117,114,115,111,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,83,108,105,100,101,114,68,105,115,97,98,108,101,100,40,41,32,38,38,32,33,100,97,116,97,46,100,111,78,111,116,82,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,116,111,112,32,105,102,32,97,110,32,97,99,116,105,118,101,32,39,116,97,112,39,32,116,114,97,110,115,105,116,105,111,110,32,105,115,32,116,97,107,105,110,103,32,112,108,97,99,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,67,108,97,115,115,40,115,99,111,112,101,95,84,97,114,103,101,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,116,97,112,41,32,38,38,32,33,100,97,116,97,46,100,111,78,111,116,82,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,103,110,111,114,101,32,114,105,103,104,116,32,111,114,32,109,105,100,100,108,101,32,99,108,105,99,107,115,32,111,110,32,115,116,97,114,116,32,35,52,53,52,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,115,32,61,61,61,32,97,99,116,105,111,110,115,46,115,116,97,114,116,32,38,38,32,101,46,98,117,116,116,111,110,115,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,101,46,98,117,116,116,111,110,115,32,62,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,103,110,111,114,101,32,114,105,103,104,116,32,111,114,32,109,105,100,100,108,101,32,99,108,105,99,107,115,32,111,110,32,115,116,97,114,116,32,35,52,53,52,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,97,116,97,46,104,111,118,101,114,32,38,38,32,101,46,98,117,116,116,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,39,115,117,112,112,111,114,116,115,80,97,115,115,105,118,101,39,32,105,115,32,111,110,108,121,32,116,114,117,101,32,105,102,32,97,32,98,114,111,119,115,101,114,32,97,108,115,111,32,115,117,112,112,111,114,116,115,32,116,111,117,99,104,45,97,99,116,105,111,110,58,32,110,111,110,101,32,105,110,32,67,83,83,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,105,79,83,32,115,97,102,97,114,105,32,100,111,101,115,32,110,111,116,44,32,115,111,32,105,116,32,100,111,101,115,110,39,116,32,103,101,116,32,116,111,32,98,101,110,101,102,105,116,32,102,114,111,109,32,112,97,115,115,105,118,101,32,115,99,114,111,108,108,105,110,103,46,32,105,79,83,32,100,111,101,115,32,115,117,112,112,111,114,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,116,111,117,99,104,45,97,99,116,105,111,110,58,32,109,97,110,105,112,117,108,97,116,105,111,110,44,32,98,117,116,32,116,104,97,116,32,97,108,108,111,119,115,32,112,97,110,110,105,110,103,44,32,119,104,105,99,104,32,98,114,101,97,107,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,115,108,105,100,101,114,115,32,97,102,116,101,114,32,122,111,111,109,105,110,103,47,111,110,32,110,111,110,45,114,101,115,112,111,110,115,105,118,101,32,112,97,103,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,98,117,103,115,46,119,101,98,107,105,116,46,111,114,103,47,115,104,111,119,95,98,117,103,46,99,103,105,63,105,100,61,49,51,51,49,49,50,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,115,117,112,112,111,114,116,115,80,97,115,115,105,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,46,99,97,108,99,80,111,105,110,116,32,61,32,101,46,112,111,105,110,116,115,91,111,112,116,105,111,110,115,46,111,114,116,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,97,108,108,32,116,104,101,32,101,118,101,110,116,32,104,97,110,100,108,101,114,32,119,105,116,104,32,116,104,101,32,101,118,101,110,116,32,91,32,97,110,100,32,97,100,100,105,116,105,111,110,97,108,32,100,97,116,97,32,93,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,98,97,99,107,40,101,44,32,100,97,116,97,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,101,116,104,111,100,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,66,105,110,100,32,97,32,99,108,111,115,117,114,101,32,111,110,32,116,104,101,32,116,97,114,103,101,116,32,102,111,114,32,101,118,101,114,121,32,101,118,101,110,116,32,116,121,112,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,115,46,115,112,108,105,116,40,92,34,32,92,34,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,101,109,101,110,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,118,101,110,116,78,97,109,101,44,32,109,101,116,104,111,100,44,32,115,117,112,112,111,114,116,115,80,97,115,115,105,118,101,32,63,32,123,32,112,97,115,115,105,118,101,58,32,116,114,117,101,32,125,32,58,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,101,116,104,111,100,115,46,112,117,115,104,40,91,101,118,101,110,116,78,97,109,101,44,32,109,101,116,104,111,100,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,101,116,104,111,100,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,80,114,111,118,105,100,101,32,97,32,99,108,101,97,110,32,101,118,101,110,116,32,119,105,116,104,32,115,116,97,110,100,97,114,100,105,122,101,100,32,111,102,102,115,101,116,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,102,105,120,69,118,101,110,116,40,101,44,32,112,97,103,101,79,102,102,115,101,116,44,32,101,118,101,110,116,84,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,108,116,101,114,32,116,104,101,32,101,118,101,110,116,32,116,111,32,114,101,103,105,115,116,101,114,32,116,104,101,32,116,121,112,101,44,32,119,104,105,99,104,32,99,97,110,32,98,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,116,111,117,99,104,44,32,109,111,117,115,101,32,111,114,32,112,111,105,110,116,101,114,46,32,79,102,102,115,101,116,32,99,104,97,110,103,101,115,32,110,101,101,100,32,116,111,32,98,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,109,97,100,101,32,111,110,32,97,110,32,101,118,101,110,116,32,115,112,101,99,105,102,105,99,32,98,97,115,105,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,111,117,99,104,32,61,32,101,46,116,121,112,101,46,105,110,100,101,120,79,102,40,92,34,116,111,117,99,104,92,34,41,32,61,61,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,111,117,115,101,32,61,32,101,46,116,121,112,101,46,105,110,100,101,120,79,102,40,92,34,109,111,117,115,101,92,34,41,32,61,61,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,111,105,110,116,101,114,32,61,32,101,46,116,121,112,101,46,105,110,100,101,120,79,102,40,92,34,112,111,105,110,116,101,114,92,34,41,32,61,61,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,120,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,121,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,69,49,48,32,105,109,112,108,101,109,101,110,116,101,100,32,112,111,105,110,116,101,114,32,101,118,101,110,116,115,32,119,105,116,104,32,97,32,112,114,101,102,105,120,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,46,116,121,112,101,46,105,110,100,101,120,79,102,40,92,34,77,83,80,111,105,110,116,101,114,92,34,41,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,111,105,110,116,101,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,114,114,111,110,101,111,117,115,32,101,118,101,110,116,115,32,115,101,101,109,32,116,111,32,98,101,32,112,97,115,115,101,100,32,105,110,32,111,99,99,97,115,105,111,110,97,108,108,121,32,111,110,32,105,79,83,47,105,80,97,100,79,83,32,97,102,116,101,114,32,117,115,101,114,32,102,105,110,105,115,104,101,115,32,105,110,116,101,114,97,99,116,105,110,103,32,119,105,116,104,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,116,104,101,32,115,108,105,100,101,114,46,32,84,104,101,121,32,97,112,112,101,97,114,32,116,111,32,98,101,32,111,102,32,116,121,112,101,32,77,111,117,115,101,69,118,101,110,116,44,32,121,101,116,32,116,104,101,121,32,100,111,110,39,116,32,104,97,118,101,32,117,115,117,97,108,32,112,114,111,112,101,114,116,105,101,115,32,115,101,116,46,32,73,103,110,111,114,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,101,118,101,110,116,115,32,116,104,97,116,32,104,97,118,101,32,110,111,32,116,111,117,99,104,101,115,32,111,114,32,98,117,116,116,111,110,115,32,97,115,115,111,99,105,97,116,101,100,32,119,105,116,104,32,116,104,101,109,46,32,40,35,49,48,53,55,44,32,35,49,48,55,57,44,32,35,49,48,57,53,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,46,116,121,112,101,32,61,61,61,32,92,34,109,111,117,115,101,100,111,119,110,92,34,32,38,38,32,33,101,46,98,117,116,116,111,110,115,32,38,38,32,33,101,46,116,111,117,99,104,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,111,110,108,121,32,116,104,105,110,103,32,111,110,101,32,104,97,110,100,108,101,32,115,104,111,117,108,100,32,98,101,32,99,111,110,99,101,114,110,101,100,32,97,98,111,117,116,32,105,115,32,116,104,101,32,116,111,117,99,104,101,115,32,116,104,97,116,32,111,114,105,103,105,110,97,116,101,100,32,111,110,32,116,111,112,32,111,102,32,105,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,111,117,99,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,97,32,116,111,117,99,104,32,111,114,105,103,105,110,97,116,101,100,32,111,110,32,116,104,101,32,116,97,114,103,101,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,84,111,117,99,104,79,110,84,97,114,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,99,104,101,99,107,84,111,117,99,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,99,104,101,99,107,84,111,117,99,104,46,116,97,114,103,101,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,116,97,114,103,101,116,32,61,61,61,32,101,118,101,110,116,84,97,114,103,101,116,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,84,97,114,103,101,116,46,99,111,110,116,97,105,110,115,40,116,97,114,103,101,116,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,101,46,99,111,109,112,111,115,101,100,32,38,38,32,101,46,99,111,109,112,111,115,101,100,80,97,116,104,40,41,46,115,104,105,102,116,40,41,32,61,61,61,32,101,118,101,110,116,84,97,114,103,101,116,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,32,116,104,101,32,99,97,115,101,32,111,102,32,116,111,117,99,104,115,116,97,114,116,32,101,118,101,110,116,115,44,32,119,101,32,110,101,101,100,32,116,111,32,109,97,107,101,32,115,117,114,101,32,116,104,101,114,101,32,105,115,32,115,116,105,108,108,32,110,111,32,109,111,114,101,32,116,104,97,110,32,111,110,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,116,111,117,99,104,32,111,110,32,116,104,101,32,116,97,114,103,101,116,32,115,111,32,119,101,32,108,111,111,107,32,97,109,111,110,103,115,116,32,97,108,108,32,116,111,117,99,104,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,46,116,121,112,101,32,61,61,61,32,92,34,116,111,117,99,104,115,116,97,114,116,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,84,111,117,99,104,101,115,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,108,116,101,114,46,99,97,108,108,40,101,46,116,111,117,99,104,101,115,44,32,105,115,84,111,117,99,104,79,110,84,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,111,32,110,111,116,32,115,117,112,112,111,114,116,32,109,111,114,101,32,116,104,97,110,32,111,110,101,32,116,111,117,99,104,32,112,101,114,32,104,97,110,100,108,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,97,114,103,101,116,84,111,117,99,104,101,115,46,108,101,110,103,116,104,32,62,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,120,32,61,32,116,97,114,103,101,116,84,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,121,32,61,32,116,97,114,103,101,116,84,111,117,99,104,101,115,91,48,93,46,112,97,103,101,89,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,32,116,104,101,32,111,116,104,101,114,32,99,97,115,101,115,44,32,102,105,110,100,32,111,110,32,99,104,97,110,103,101,100,84,111,117,99,104,101,115,32,105,115,32,101,110,111,117,103,104,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,84,111,117,99,104,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,46,99,97,108,108,40,101,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,32,105,115,84,111,117,99,104,79,110,84,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,97,110,99,101,108,32,105,102,32,116,104,101,32,116,97,114,103,101,116,32,116,111,117,99,104,32,104,97,115,32,110,111,116,32,109,111,118,101,100,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,97,114,103,101,116,84,111,117,99,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,120,32,61,32,116,97,114,103,101,116,84,111,117,99,104,46,112,97,103,101,88,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,121,32,61,32,116,97,114,103,101,116,84,111,117,99,104,46,112,97,103,101,89,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,103,101,79,102,102,115,101,116,32,61,32,112,97,103,101,79,102,102,115,101,116,32,124,124,32,103,101,116,80,97,103,101,79,102,102,115,101,116,40,115,99,111,112,101,95,68,111,99,117,109,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,109,111,117,115,101,32,124,124,32,112,111,105,110,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,120,32,61,32,101,46,99,108,105,101,110,116,88,32,43,32,112,97,103,101,79,102,102,115,101,116,46,120,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,121,32,61,32,101,46,99,108,105,101,110,116,89,32,43,32,112,97,103,101,79,102,102,115,101,116,46,121,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,112,97,103,101,79,102,102,115,101,116,32,61,32,112,97,103,101,79,102,102,115,101,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,112,111,105,110,116,115,32,61,32,91,120,44,32,121,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,99,117,114,115,111,114,32,61,32,109,111,117,115,101,32,124,124,32,112,111,105,110,116,101,114,59,32,47,47,32,70,105,120,32,35,52,51,53,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,84,114,97,110,115,108,97,116,101,32,97,32,99,111,111,114,100,105,110,97,116,101,32,105,110,32,116,104,101,32,100,111,99,117,109,101,110,116,32,116,111,32,97,32,112,101,114,99,101,110,116,97,103,101,32,111,110,32,116,104,101,32,115,108,105,100,101,114,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,97,108,99,80,111,105,110,116,84,111,80,101,114,99,101,110,116,97,103,101,40,99,97,108,99,80,111,105,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,111,99,97,116,105,111,110,32,61,32,99,97,108,99,80,111,105,110,116,32,45,32,111,102,102,115,101,116,40,115,99,111,112,101,95,66,97,115,101,44,32,111,112,116,105,111,110,115,46,111,114,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,111,115,97,108,32,61,32,40,108,111,99,97,116,105,111,110,32,42,32,49,48,48,41,32,47,32,98,97,115,101,83,105,122,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,108,97,109,112,32,112,114,111,112,111,115,97,108,32,98,101,116,119,101,101,110,32,48,37,32,97,110,100,32,49,48,48,37,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,79,117,116,45,111,102,45,98,111,117,110,100,32,99,111,111,114,100,105,110,97,116,101,115,32,109,97,121,32,111,99,99,117,114,32,119,104,101,110,32,46,110,111,85,105,45,98,97,115,101,32,112,115,101,117,100,111,45,101,108,101,109,101,110,116,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,97,114,101,32,117,115,101,100,32,40,101,46,103,46,32,99,111,110,116,97,105,110,101,100,32,104,97,110,100,108,101,115,32,102,101,97,116,117,114,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,111,115,97,108,32,61,32,108,105,109,105,116,40,112,114,111,112,111,115,97,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,112,116,105,111,110,115,46,100,105,114,32,63,32,49,48,48,32,45,32,112,114,111,112,111,115,97,108,32,58,32,112,114,111,112,111,115,97,108,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,70,105,110,100,32,104,97,110,100,108,101,32,99,108,111,115,101,115,116,32,116,111,32,97,32,99,101,114,116,97,105,110,32,112,101,114,99,101,110,116,97,103,101,32,111,110,32,116,104,101,32,115,108,105,100,101,114,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,67,108,111,115,101,115,116,72,97,110,100,108,101,40,99,108,105,99,107,101,100,80,111,115,105,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,109,97,108,108,101,115,116,68,105,102,102,101,114,101,110,99,101,32,61,32,49,48,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,78,117,109,98,101,114,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,72,97,110,100,108,101,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,105,115,97,98,108,101,100,32,104,97,110,100,108,101,115,32,97,114,101,32,105,103,110,111,114,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,72,97,110,100,108,101,68,105,115,97,98,108,101,100,40,105,110,100,101,120,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,80,111,115,105,116,105,111,110,32,61,32,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,105,102,102,101,114,101,110,99,101,87,105,116,104,84,104,105,115,72,97,110,100,108,101,32,61,32,77,97,116,104,46,97,98,115,40,104,97,110,100,108,101,80,111,115,105,116,105,111,110,32,45,32,99,108,105,99,107,101,100,80,111,115,105,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,105,116,105,97,108,32,115,116,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,108,105,99,107,65,116,69,100,103,101,32,61,32,100,105,102,102,101,114,101,110,99,101,87,105,116,104,84,104,105,115,72,97,110,100,108,101,32,61,61,61,32,49,48,48,32,38,38,32,115,109,97,108,108,101,115,116,68,105,102,102,101,114,101,110,99,101,32,61,61,61,32,49,48,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,105,102,102,101,114,101,110,99,101,32,119,105,116,104,32,116,104,105,115,32,104,97,110,100,108,101,32,105,115,32,115,109,97,108,108,101,114,32,116,104,97,110,32,116,104,101,32,112,114,101,118,105,111,117,115,108,121,32,99,104,101,99,107,101,100,32,104,97,110,100,108,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,67,108,111,115,101,114,32,61,32,100,105,102,102,101,114,101,110,99,101,87,105,116,104,84,104,105,115,72,97,110,100,108,101,32,60,32,115,109,97,108,108,101,115,116,68,105,102,102,101,114,101,110,99,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,67,108,111,115,101,114,65,102,116,101,114,32,61,32,100,105,102,102,101,114,101,110,99,101,87,105,116,104,84,104,105,115,72,97,110,100,108,101,32,60,61,32,115,109,97,108,108,101,115,116,68,105,102,102,101,114,101,110,99,101,32,38,38,32,99,108,105,99,107,101,100,80,111,115,105,116,105,111,110,32,62,32,104,97,110,100,108,101,80,111,115,105,116,105,111,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,67,108,111,115,101,114,32,124,124,32,105,115,67,108,111,115,101,114,65,102,116,101,114,32,124,124,32,99,108,105,99,107,65,116,69,100,103,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,78,117,109,98,101,114,32,61,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,109,97,108,108,101,115,116,68,105,102,102,101,114,101,110,99,101,32,61,32,100,105,102,102,101,114,101,110,99,101,87,105,116,104,84,104,105,115,72,97,110,100,108,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,110,100,108,101,78,117,109,98,101,114,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,70,105,114,101,32,39,101,110,100,39,32,119,104,101,110,32,97,32,109,111,117,115,101,32,111,114,32,112,101,110,32,108,101,97,118,101,115,32,116,104,101,32,100,111,99,117,109,101,110,116,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,100,111,99,117,109,101,110,116,76,101,97,118,101,40,101,118,101,110,116,44,32,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,116,121,112,101,32,61,61,61,32,92,34,109,111,117,115,101,111,117,116,92,34,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,116,97,114,103,101,116,46,110,111,100,101,78,97,109,101,32,61,61,61,32,92,34,72,84,77,76,92,34,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,114,101,108,97,116,101,100,84,97,114,103,101,116,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,69,110,100,40,101,118,101,110,116,44,32,100,97,116,97,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,109,111,118,101,109,101,110,116,32,111,110,32,100,111,99,117,109,101,110,116,32,102,111,114,32,104,97,110,100,108,101,32,97,110,100,32,114,97,110,103,101,32,100,114,97,103,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,101,118,101,110,116,77,111,118,101,40,101,118,101,110,116,44,32,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,120,32,35,52,57,56,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,104,101,99,107,32,118,97,108,117,101,32,111,102,32,46,98,117,116,116,111,110,115,32,105,110,32,39,115,116,97,114,116,39,32,116,111,32,119,111,114,107,32,97,114,111,117,110,100,32,97,32,98,117,103,32,105,110,32,73,69,49,48,32,109,111,98,105,108,101,32,40,100,97,116,97,46,98,117,116,116,111,110,115,80,114,111,112,101,114,116,121,41,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,99,111,110,110,101,99,116,46,109,105,99,114,111,115,111,102,116,46,99,111,109,47,73,69,47,102,101,101,100,98,97,99,107,47,100,101,116,97,105,108,115,47,57,50,55,48,48,53,47,109,111,98,105,108,101,45,105,101,49,48,45,119,105,110,100,111,119,115,45,112,104,111,110,101,45,98,117,116,116,111,110,115,45,112,114,111,112,101,114,116,121,45,111,102,45,112,111,105,110,116,101,114,109,111,118,101,45,101,118,101,110,116,45,97,108,119,97,121,115,45,122,101,114,111,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,69,57,32,104,97,115,32,46,98,117,116,116,111,110,115,32,97,110,100,32,46,119,104,105,99,104,32,122,101,114,111,32,111,110,32,109,111,117,115,101,109,111,118,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,114,101,102,111,120,32,98,114,101,97,107,115,32,116,104,101,32,115,112,101,99,32,77,68,78,32,100,101,102,105,110,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,97,118,105,103,97,116,111,114,46,97,112,112,86,101,114,115,105,111,110,46,105,110,100,101,120,79,102,40,92,34,77,83,73,69,32,57,92,34,41,32,61,61,61,32,45,49,32,38,38,32,101,118,101,110,116,46,98,117,116,116,111,110,115,32,61,61,61,32,48,32,38,38,32,100,97,116,97,46,98,117,116,116,111,110,115,80,114,111,112,101,114,116,121,32,33,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,118,101,110,116,69,110,100,40,101,118,101,110,116,44,32,100,97,116,97,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,104,101,99,107,32,105,102,32,119,101,32,97,114,101,32,109,111,118,105,110,103,32,117,112,32,111,114,32,100,111,119,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,111,118,101,109,101,110,116,32,61,32,40,111,112,116,105,111,110,115,46,100,105,114,32,63,32,45,49,32,58,32,49,41,32,42,32,40,101,118,101,110,116,46,99,97,108,99,80,111,105,110,116,32,45,32,100,97,116,97,46,115,116,97,114,116,67,97,108,99,80,111,105,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,116,104,101,32,109,111,118,101,109,101,110,116,32,105,110,116,111,32,97,32,112,101,114,99,101,110,116,97,103,101,32,111,102,32,116,104,101,32,115,108,105,100,101,114,32,119,105,100,116,104,47,104,101,105,103,104,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,111,115,97,108,32,61,32,40,109,111,118,101,109,101,110,116,32,42,32,49,48,48,41,32,47,32,100,97,116,97,46,98,97,115,101,83,105,122,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,118,101,72,97,110,100,108,101,115,40,109,111,118,101,109,101,110,116,32,62,32,48,44,32,112,114,111,112,111,115,97,108,44,32,100,97,116,97,46,108,111,99,97,116,105,111,110,115,44,32,100,97,116,97,46,104,97,110,100,108,101,78,117,109,98,101,114,115,44,32,100,97,116,97,46,99,111,110,110,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,85,110,98,105,110,100,32,109,111,118,101,32,101,118,101,110,116,115,32,111,110,32,100,111,99,117,109,101,110,116,44,32,99,97,108,108,32,99,97,108,108,98,97,99,107,115,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,101,118,101,110,116,69,110,100,40,101,118,101,110,116,44,32,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,104,97,110,100,108,101,32,105,115,32,110,111,32,108,111,110,103,101,114,32,97,99,116,105,118,101,44,32,115,111,32,114,101,109,111,118,101,32,116,104,101,32,99,108,97,115,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,97,116,97,46,104,97,110,100,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,67,108,97,115,115,40,100,97,116,97,46,104,97,110,100,108,101,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,97,99,116,105,118,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,65,99,116,105,118,101,72,97,110,100,108,101,115,67,111,117,110,116,32,45,61,32,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,110,98,105,110,100,32,116,104,101,32,109,111,118,101,32,97,110,100,32,101,110,100,32,101,118,101,110,116,115,44,32,119,104,105,99,104,32,97,114,101,32,97,100,100,101,100,32,111,110,32,39,115,116,97,114,116,39,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,97,46,108,105,115,116,101,110,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,68,111,99,117,109,101,110,116,69,108,101,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,99,91,48,93,44,32,99,91,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,99,111,112,101,95,65,99,116,105,118,101,72,97,110,100,108,101,115,67,111,117,110,116,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,100,114,97,103,103,105,110,103,32,99,108,97,115,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,67,108,97,115,115,40,115,99,111,112,101,95,84,97,114,103,101,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,100,114,97,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,90,105,110,100,101,120,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,99,117,114,115,111,114,32,115,116,121,108,101,115,32,97,110,100,32,116,101,120,116,45,115,101,108,101,99,116,105,111,110,32,101,118,101,110,116,115,32,98,111,117,110,100,32,116,111,32,116,104,101,32,98,111,100,121,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,99,117,114,115,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,66,111,100,121,46,115,116,121,108,101,46,99,117,114,115,111,114,32,61,32,92,34,92,34,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,66,111,100,121,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,115,101,108,101,99,116,115,116,97,114,116,92,34,44,32,112,114,101,118,101,110,116,68,101,102,97,117,108,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,97,46,104,97,110,100,108,101,78,117,109,98,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,99,104,97,110,103,101,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,115,101,116,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,101,110,100,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,66,105,110,100,32,109,111,118,101,32,101,118,101,110,116,115,32,111,110,32,100,111,99,117,109,101,110,116,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,101,118,101,110,116,83,116,97,114,116,40,101,118,101,110,116,44,32,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,103,110,111,114,101,32,101,118,101,110,116,32,105,102,32,97,110,121,32,104,97,110,100,108,101,32,105,115,32,100,105,115,97,98,108,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,97,116,97,46,104,97,110,100,108,101,78,117,109,98,101,114,115,46,115,111,109,101,40,105,115,72,97,110,100,108,101,68,105,115,97,98,108,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,97,116,97,46,104,97,110,100,108,101,78,117,109,98,101,114,115,46,108,101,110,103,116,104,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,79,114,105,103,105,110,32,61,32,115,99,111,112,101,95,72,97,110,100,108,101,115,91,100,97,116,97,46,104,97,110,100,108,101,78,117,109,98,101,114,115,91,48,93,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,32,61,32,104,97,110,100,108,101,79,114,105,103,105,110,46,99,104,105,108,100,114,101,110,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,65,99,116,105,118,101,72,97,110,100,108,101,115,67,111,117,110,116,32,43,61,32,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,114,107,32,116,104,101,32,104,97,110,100,108,101,32,97,115,32,39,97,99,116,105,118,101,39,32,115,111,32,105,116,32,99,97,110,32,98,101,32,115,116,121,108,101,100,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,104,97,110,100,108,101,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,97,99,116,105,118,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,32,100,114,97,103,32,115,104,111,117,108,100,32,110,101,118,101,114,32,112,114,111,112,97,103,97,116,101,32,117,112,32,116,111,32,116,104,101,32,39,116,97,112,39,32,101,118,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,99,111,114,100,32,116,104,101,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,105,115,116,101,110,101,114,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,116,116,97,99,104,32,116,104,101,32,109,111,118,101,32,97,110,100,32,101,110,100,32,101,118,101,110,116,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,111,118,101,69,118,101,110,116,32,61,32,97,116,116,97,99,104,69,118,101,110,116,40,97,99,116,105,111,110,115,46,109,111,118,101,44,32,115,99,111,112,101,95,68,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,32,101,118,101,110,116,77,111,118,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,101,118,101,110,116,32,116,97,114,103,101,116,32,104,97,115,32,99,104,97,110,103,101,100,32,115,111,32,119,101,32,110,101,101,100,32,116,111,32,112,114,111,112,97,103,97,116,101,32,116,104,101,32,111,114,105,103,105,110,97,108,32,111,110,101,32,115,111,32,116,104,97,116,32,119,101,32,107,101,101,112,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,114,101,108,121,105,110,103,32,111,110,32,105,116,32,116,111,32,101,120,116,114,97,99,116,32,116,97,114,103,101,116,32,116,111,117,99,104,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,101,118,101,110,116,46,116,97,114,103,101,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,58,32,104,97,110,100,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,110,101,99,116,58,32,100,97,116,97,46,99,111,110,110,101,99,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,58,32,108,105,115,116,101,110,101,114,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,67,97,108,99,80,111,105,110,116,58,32,101,118,101,110,116,46,99,97,108,99,80,111,105,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,83,105,122,101,58,32,98,97,115,101,83,105,122,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,103,101,79,102,102,115,101,116,58,32,101,118,101,110,116,46,112,97,103,101,79,102,102,115,101,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,78,117,109,98,101,114,115,58,32,100,97,116,97,46,104,97,110,100,108,101,78,117,109,98,101,114,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,117,116,116,111,110,115,80,114,111,112,101,114,116,121,58,32,101,118,101,110,116,46,98,117,116,116,111,110,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,116,105,111,110,115,58,32,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,46,115,108,105,99,101,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,110,100,69,118,101,110,116,32,61,32,97,116,116,97,99,104,69,118,101,110,116,40,97,99,116,105,111,110,115,46,101,110,100,44,32,115,99,111,112,101,95,68,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,32,101,118,101,110,116,69,110,100,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,101,118,101,110,116,46,116,97,114,103,101,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,58,32,104,97,110,100,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,58,32,108,105,115,116,101,110,101,114,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,78,111,116,82,101,106,101,99,116,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,78,117,109,98,101,114,115,58,32,100,97,116,97,46,104,97,110,100,108,101,78,117,109,98,101,114,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,117,116,69,118,101,110,116,32,61,32,97,116,116,97,99,104,69,118,101,110,116,40,92,34,109,111,117,115,101,111,117,116,92,34,44,32,115,99,111,112,101,95,68,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,32,100,111,99,117,109,101,110,116,76,101,97,118,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,101,118,101,110,116,46,116,97,114,103,101,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,58,32,104,97,110,100,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,58,32,108,105,115,116,101,110,101,114,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,78,111,116,82,101,106,101,99,116,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,78,117,109,98,101,114,115,58,32,100,97,116,97,46,104,97,110,100,108,101,78,117,109,98,101,114,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,119,97,110,116,32,116,111,32,109,97,107,101,32,115,117,114,101,32,119,101,32,112,117,115,104,101,100,32,116,104,101,32,108,105,115,116,101,110,101,114,115,32,105,110,32,116,104,101,32,108,105,115,116,101,110,101,114,32,108,105,115,116,32,114,97,116,104,101,114,32,116,104,97,110,32,99,114,101,97,116,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,97,32,110,101,119,32,111,110,101,32,97,115,32,105,116,32,104,97,115,32,97,108,114,101,97,100,121,32,98,101,101,110,32,112,97,115,115,101,100,32,116,111,32,116,104,101,32,101,118,101,110,116,32,104,97,110,100,108,101,114,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,105,115,116,101,110,101,114,115,46,112,117,115,104,46,97,112,112,108,121,40,108,105,115,116,101,110,101,114,115,44,32,109,111,118,101,69,118,101,110,116,46,99,111,110,99,97,116,40,101,110,100,69,118,101,110,116,44,32,111,117,116,69,118,101,110,116,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,101,120,116,32,115,101,108,101,99,116,105,111,110,32,105,115,110,39,116,32,97,110,32,105,115,115,117,101,32,111,110,32,116,111,117,99,104,32,100,101,118,105,99,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,115,111,32,97,100,100,105,110,103,32,99,117,114,115,111,114,32,115,116,121,108,101,115,32,99,97,110,32,98,101,32,115,107,105,112,112,101,100,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,46,99,117,114,115,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,80,114,101,118,101,110,116,32,116,104,101,32,39,73,39,32,99,117,114,115,111,114,32,97,110,100,32,101,120,116,101,110,100,32,116,104,101,32,114,97,110,103,101,45,100,114,97,103,32,99,117,114,115,111,114,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,66,111,100,121,46,115,116,121,108,101,46,99,117,114,115,111,114,32,61,32,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,118,101,110,116,46,116,97,114,103,101,116,41,46,99,117,114,115,111,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,114,107,32,116,104,101,32,116,97,114,103,101,116,32,119,105,116,104,32,97,32,100,114,97,103,103,105,110,103,32,115,116,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,99,111,112,101,95,72,97,110,100,108,101,115,46,108,101,110,103,116,104,32,62,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,115,99,111,112,101,95,84,97,114,103,101,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,100,114,97,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,80,114,101,118,101,110,116,32,116,101,120,116,32,115,101,108,101,99,116,105,111,110,32,119,104,101,110,32,100,114,97,103,103,105,110,103,32,116,104,101,32,104,97,110,100,108,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,32,110,111,85,105,83,108,105,100,101,114,32,60,61,32,57,46,50,46,48,44,32,116,104,105,115,32,119,97,115,32,104,97,110,100,108,101,100,32,98,121,32,99,97,108,108,105,110,103,32,112,114,101,118,101,110,116,68,101,102,97,117,108,116,32,111,110,32,109,111,117,115,101,47,116,111,117,99,104,32,115,116,97,114,116,47,109,111,118,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,119,104,105,99,104,32,105,115,32,115,99,114,111,108,108,32,98,108,111,99,107,105,110,103,46,32,84,104,101,32,115,101,108,101,99,116,115,116,97,114,116,32,101,118,101,110,116,32,105,115,32,115,117,112,112,111,114,116,101,100,32,98,121,32,70,105,114,101,70,111,120,32,115,116,97,114,116,105,110,103,32,102,114,111,109,32,118,101,114,115,105,111,110,32,53,50,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,109,101,97,110,105,110,103,32,116,104,101,32,111,110,108,121,32,104,111,108,100,111,117,116,32,105,115,32,105,79,83,32,83,97,102,97,114,105,46,32,84,104,105,115,32,100,111,101,115,110,39,116,32,109,97,116,116,101,114,58,32,116,101,120,116,32,115,101,108,101,99,116,105,111,110,32,105,115,110,39,116,32,116,114,105,103,103,101,114,101,100,32,116,104,101,114,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,39,99,117,114,115,111,114,39,32,102,108,97,103,32,105,115,32,102,97,108,115,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,101,58,32,104,116,116,112,58,47,47,99,97,110,105,117,115,101,46,99,111,109,47,35,115,101,97,114,99,104,61,115,101,108,101,99,116,115,116,97,114,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,66,111,100,121,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,115,101,108,101,99,116,115,116,97,114,116,92,34,44,32,112,114,101,118,101,110,116,68,101,102,97,117,108,116,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,97,46,104,97,110,100,108,101,78,117,109,98,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,115,116,97,114,116,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,77,111,118,101,32,99,108,111,115,101,115,116,32,104,97,110,100,108,101,32,116,111,32,116,97,112,112,101,100,32,108,111,99,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,101,118,101,110,116,84,97,112,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,116,97,112,32,101,118,101,110,116,32,115,104,111,117,108,100,110,39,116,32,112,114,111,112,97,103,97,116,101,32,117,112,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,111,115,97,108,32,61,32,99,97,108,99,80,111,105,110,116,84,111,80,101,114,99,101,110,116,97,103,101,40,101,118,101,110,116,46,99,97,108,99,80,111,105,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,78,117,109,98,101,114,32,61,32,103,101,116,67,108,111,115,101,115,116,72,97,110,100,108,101,40,112,114,111,112,111,115,97,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,97,99,107,108,101,32,116,104,101,32,99,97,115,101,32,116,104,97,116,32,97,108,108,32,104,97,110,100,108,101,115,32,97,114,101,32,39,100,105,115,97,98,108,101,100,39,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,110,100,108,101,78,117,109,98,101,114,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,108,97,103,32,116,104,101,32,115,108,105,100,101,114,32,97,115,32,105,116,32,105,115,32,110,111,119,32,105,110,32,97,32,116,114,97,110,115,105,116,105,111,110,97,108,32,115,116,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,114,97,110,115,105,116,105,111,110,32,116,97,107,101,115,32,97,32,99,111,110,102,105,103,117,114,97,98,108,101,32,97,109,111,117,110,116,32,111,102,32,109,115,32,40,100,101,102,97,117,108,116,32,51,48,48,41,46,32,82,101,45,101,110,97,98,108,101,32,116,104,101,32,115,108,105,100,101,114,32,97,102,116,101,114,32,116,104,97,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,111,112,116,105,111,110,115,46,101,118,101,110,116,115,46,115,110,97,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,70,111,114,40,115,99,111,112,101,95,84,97,114,103,101,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,116,97,112,44,32,111,112,116,105,111,110,115,46,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,72,97,110,100,108,101,40,104,97,110,100,108,101,78,117,109,98,101,114,44,32,112,114,111,112,111,115,97,108,44,32,116,114,117,101,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,90,105,110,100,101,120,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,115,108,105,100,101,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,117,112,100,97,116,101,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,99,104,97,110,103,101,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,115,101,116,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,101,118,101,110,116,115,46,115,110,97,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,83,116,97,114,116,40,101,118,101,110,116,44,32,123,32,104,97,110,100,108,101,78,117,109,98,101,114,115,58,32,91,104,97,110,100,108,101,78,117,109,98,101,114,93,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,70,105,114,101,115,32,97,32,39,104,111,118,101,114,39,32,101,118,101,110,116,32,102,111,114,32,97,32,104,111,118,101,114,101,100,32,109,111,117,115,101,47,112,101,110,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,101,118,101,110,116,72,111,118,101,114,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,111,115,97,108,32,61,32,99,97,108,99,80,111,105,110,116,84,111,80,101,114,99,101,110,116,97,103,101,40,101,118,101,110,116,46,99,97,108,99,80,111,105,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,111,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,103,101,116,83,116,101,112,40,112,114,111,112,111,115,97,108,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,102,114,111,109,83,116,101,112,112,105,110,103,40,116,111,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,115,99,111,112,101,95,69,118,101,110,116,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,92,34,104,111,118,101,114,92,34,32,61,61,61,32,116,97,114,103,101,116,69,118,101,110,116,46,115,112,108,105,116,40,92,34,46,92,34,41,91,48,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,69,118,101,110,116,115,91,116,97,114,103,101,116,69,118,101,110,116,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,98,97,99,107,46,99,97,108,108,40,115,99,111,112,101,95,83,101,108,102,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,115,32,107,101,121,100,111,119,110,32,111,110,32,102,111,99,117,115,101,100,32,104,97,110,100,108,101,115,92,110,32,32,32,32,32,32,32,32,47,47,32,68,111,110,39,116,32,109,111,118,101,32,116,104,101,32,100,111,99,117,109,101,110,116,32,119,104,101,110,32,112,114,101,115,115,105,110,103,32,97,114,114,111,119,32,107,101,121,115,32,111,110,32,102,111,99,117,115,101,100,32,104,97,110,100,108,101,115,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,101,118,101,110,116,75,101,121,100,111,119,110,40,101,118,101,110,116,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,83,108,105,100,101,114,68,105,115,97,98,108,101,100,40,41,32,124,124,32,105,115,72,97,110,100,108,101,68,105,115,97,98,108,101,100,40,104,97,110,100,108,101,78,117,109,98,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,111,114,105,122,111,110,116,97,108,75,101,121,115,32,61,32,91,92,34,76,101,102,116,92,34,44,32,92,34,82,105,103,104,116,92,34,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,101,114,116,105,99,97,108,75,101,121,115,32,61,32,91,92,34,68,111,119,110,92,34,44,32,92,34,85,112,92,34,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,97,114,103,101,83,116,101,112,75,101,121,115,32,61,32,91,92,34,80,97,103,101,68,111,119,110,92,34,44,32,92,34,80,97,103,101,85,112,92,34,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,100,103,101,75,101,121,115,32,61,32,91,92,34,72,111,109,101,92,34,44,32,92,34,69,110,100,92,34,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,100,105,114,32,38,38,32,33,111,112,116,105,111,110,115,46,111,114,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,79,110,32,97,110,32,114,105,103,104,116,45,116,111,45,108,101,102,116,32,115,108,105,100,101,114,44,32,116,104,101,32,108,101,102,116,32,97,110,100,32,114,105,103,104,116,32,107,101,121,115,32,97,99,116,32,105,110,118,101,114,116,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,111,114,105,122,111,110,116,97,108,75,101,121,115,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,111,112,116,105,111,110,115,46,111,114,116,32,38,38,32,33,111,112,116,105,111,110,115,46,100,105,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,79,110,32,97,32,116,111,112,45,116,111,45,98,111,116,116,111,109,32,115,108,105,100,101,114,44,32,116,104,101,32,117,112,32,97,110,100,32,100,111,119,110,32,107,101,121,115,32,97,99,116,32,105,110,118,101,114,116,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,101,114,116,105,99,97,108,75,101,121,115,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,97,114,103,101,83,116,101,112,75,101,121,115,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,116,114,105,112,32,92,34,65,114,114,111,119,92,34,32,102,111,114,32,73,69,32,99,111,109,112,97,116,105,98,105,108,105,116,121,46,32,104,116,116,112,115,58,47,47,100,101,118,101,108,111,112,101,114,46,109,111,122,105,108,108,97,46,111,114,103,47,101,110,45,85,83,47,100,111,99,115,47,87,101,98,47,65,80,73,47,75,101,121,98,111,97,114,100,69,118,101,110,116,47,107,101,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,101,118,101,110,116,46,107,101,121,46,114,101,112,108,97,99,101,40,92,34,65,114,114,111,119,92,34,44,32,92,34,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,76,97,114,103,101,68,111,119,110,32,61,32,107,101,121,32,61,61,61,32,108,97,114,103,101,83,116,101,112,75,101,121,115,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,76,97,114,103,101,85,112,32,61,32,107,101,121,32,61,61,61,32,108,97,114,103,101,83,116,101,112,75,101,121,115,91,49,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,68,111,119,110,32,61,32,107,101,121,32,61,61,61,32,118,101,114,116,105,99,97,108,75,101,121,115,91,48,93,32,124,124,32,107,101,121,32,61,61,61,32,104,111,114,105,122,111,110,116,97,108,75,101,121,115,91,48,93,32,124,124,32,105,115,76,97,114,103,101,68,111,119,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,85,112,32,61,32,107,101,121,32,61,61,61,32,118,101,114,116,105,99,97,108,75,101,121,115,91,49,93,32,124,124,32,107,101,121,32,61,61,61,32,104,111,114,105,122,111,110,116,97,108,75,101,121,115,91,49,93,32,124,124,32,105,115,76,97,114,103,101,85,112,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,77,105,110,32,61,32,107,101,121,32,61,61,61,32,101,100,103,101,75,101,121,115,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,77,97,120,32,61,32,107,101,121,32,61,61,61,32,101,100,103,101,75,101,121,115,91,49,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,68,111,119,110,32,38,38,32,33,105,115,85,112,32,38,38,32,33,105,115,77,105,110,32,38,38,32,33,105,115,77,97,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,111,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,85,112,32,124,124,32,105,115,68,111,119,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,117,108,116,105,112,108,105,101,114,32,61,32,111,112,116,105,111,110,115,46,107,101,121,98,111,97,114,100,80,97,103,101,77,117,108,116,105,112,108,105,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,105,114,101,99,116,105,111,110,32,61,32,105,115,68,111,119,110,32,63,32,48,32,58,32,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,101,112,115,32,61,32,103,101,116,78,101,120,116,83,116,101,112,115,70,111,114,72,97,110,100,108,101,40,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,101,112,32,61,32,115,116,101,112,115,91,100,105,114,101,99,116,105,111,110,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,116,32,116,104,101,32,101,100,103,101,32,111,102,32,97,32,115,108,105,100,101,114,44,32,100,111,32,110,111,116,104,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,116,101,112,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,32,115,116,101,112,32,115,101,116,44,32,117,115,101,32,116,104,101,32,100,101,102,97,117,108,116,32,111,102,32,49,48,37,32,111,102,32,116,104,101,32,115,117,98,45,114,97,110,103,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,116,101,112,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,103,101,116,68,101,102,97,117,108,116,83,116,101,112,40,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,44,32,105,115,68,111,119,110,44,32,111,112,116,105,111,110,115,46,107,101,121,98,111,97,114,100,68,101,102,97,117,108,116,83,116,101,112,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,76,97,114,103,101,85,112,32,124,124,32,105,115,76,97,114,103,101,68,111,119,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,32,42,61,32,109,117,108,116,105,112,108,105,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,116,101,112,32,111,118,101,114,32,122,101,114,111,45,108,101,110,103,116,104,32,114,97,110,103,101,115,32,40,35,57,52,56,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,32,61,32,77,97,116,104,46,109,97,120,40,115,116,101,112,44,32,48,46,48,48,48,48,48,48,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,68,101,99,114,101,109,101,110,116,32,102,111,114,32,100,111,119,110,32,115,116,101,112,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,32,61,32,40,105,115,68,111,119,110,32,63,32,45,49,32,58,32,49,41,32,42,32,115,116,101,112,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,115,99,111,112,101,95,86,97,108,117,101,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,32,43,32,115,116,101,112,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,105,115,77,97,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,110,100,32,107,101,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,111,112,116,105,111,110,115,46,115,112,101,99,116,114,117,109,46,120,86,97,108,91,111,112,116,105,111,110,115,46,115,112,101,99,116,114,117,109,46,120,86,97,108,46,108,101,110,103,116,104,32,45,32,49,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,72,111,109,101,32,107,101,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,111,112,116,105,111,110,115,46,115,112,101,99,116,114,117,109,46,120,86,97,108,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,72,97,110,100,108,101,40,104,97,110,100,108,101,78,117,109,98,101,114,44,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,116,111,83,116,101,112,112,105,110,103,40,116,111,41,44,32,116,114,117,101,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,115,108,105,100,101,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,117,112,100,97,116,101,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,99,104,97,110,103,101,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,115,101,116,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,65,116,116,97,99,104,32,101,118,101,110,116,115,32,116,111,32,115,101,118,101,114,97,108,32,115,108,105,100,101,114,32,112,97,114,116,115,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,98,105,110,100,83,108,105,100,101,114,69,118,101,110,116,115,40,98,101,104,97,118,105,111,117,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,116,116,97,99,104,32,116,104,101,32,115,116,97,110,100,97,114,100,32,100,114,97,103,32,101,118,101,110,116,32,116,111,32,116,104,101,32,104,97,110,100,108,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,98,101,104,97,118,105,111,117,114,46,102,105,120,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,72,97,110,100,108,101,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,115,101,32,101,118,101,110,116,115,32,97,114,101,32,111,110,108,121,32,98,111,117,110,100,32,116,111,32,116,104,101,32,118,105,115,117,97,108,32,104,97,110,100,108,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,101,108,101,109,101,110,116,44,32,110,111,116,32,116,104,101,32,39,114,101,97,108,39,32,111,114,105,103,105,110,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,97,99,104,69,118,101,110,116,40,97,99,116,105,111,110,115,46,115,116,97,114,116,44,32,104,97,110,100,108,101,46,99,104,105,108,100,114,101,110,91,48,93,44,32,101,118,101,110,116,83,116,97,114,116,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,78,117,109,98,101,114,115,58,32,91,105,110,100,101,120,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,116,116,97,99,104,32,116,104,101,32,116,97,112,32,101,118,101,110,116,32,116,111,32,116,104,101,32,115,108,105,100,101,114,32,98,97,115,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,101,104,97,118,105,111,117,114,46,116,97,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,97,99,104,69,118,101,110,116,40,97,99,116,105,111,110,115,46,115,116,97,114,116,44,32,115,99,111,112,101,95,66,97,115,101,44,32,101,118,101,110,116,84,97,112,44,32,123,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,114,101,32,104,111,118,101,114,32,101,118,101,110,116,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,101,104,97,118,105,111,117,114,46,104,111,118,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,97,99,104,69,118,101,110,116,40,97,99,116,105,111,110,115,46,109,111,118,101,44,32,115,99,111,112,101,95,66,97,115,101,44,32,101,118,101,110,116,72,111,118,101,114,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,111,118,101,114,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,107,101,32,116,104,101,32,114,97,110,103,101,32,100,114,97,103,103,97,98,108,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,101,104,97,118,105,111,117,114,46,100,114,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,67,111,110,110,101,99,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,111,110,110,101,99,116,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,111,110,110,101,99,116,32,61,61,61,32,102,97,108,115,101,32,124,124,32,105,110,100,101,120,32,61,61,61,32,48,32,124,124,32,105,110,100,101,120,32,61,61,61,32,115,99,111,112,101,95,67,111,110,110,101,99,116,115,46,108,101,110,103,116,104,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,66,101,102,111,114,101,32,61,32,115,99,111,112,101,95,72,97,110,100,108,101,115,91,105,110,100,101,120,32,45,32,49,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,65,102,116,101,114,32,61,32,115,99,111,112,101,95,72,97,110,100,108,101,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,72,111,108,100,101,114,115,32,61,32,91,99,111,110,110,101,99,116,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,99,111,110,110,101,99,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,100,114,97,103,103,97,98,108,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,104,101,110,32,116,104,101,32,114,97,110,103,101,32,105,115,32,102,105,120,101,100,44,32,116,104,101,32,101,110,116,105,114,101,32,114,97,110,103,101,32,99,97,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,98,101,32,100,114,97,103,103,101,100,32,98,121,32,116,104,101,32,104,97,110,100,108,101,115,46,32,84,104,101,32,104,97,110,100,108,101,32,105,110,32,116,104,101,32,102,105,114,115,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,111,114,105,103,105,110,32,119,105,108,108,32,112,114,111,112,97,103,97,116,101,32,116,104,101,32,115,116,97,114,116,32,101,118,101,110,116,32,117,112,119,97,114,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,98,117,116,32,105,116,32,110,101,101,100,115,32,116,111,32,98,101,32,98,111,117,110,100,32,109,97,110,117,97,108,108,121,32,111,110,32,116,104,101,32,111,116,104,101,114,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,101,104,97,118,105,111,117,114,46,102,105,120,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,72,111,108,100,101,114,115,46,112,117,115,104,40,104,97,110,100,108,101,66,101,102,111,114,101,46,99,104,105,108,100,114,101,110,91,48,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,72,111,108,100,101,114,115,46,112,117,115,104,40,104,97,110,100,108,101,65,102,116,101,114,46,99,104,105,108,100,114,101,110,91,48,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,118,101,110,116,72,111,108,100,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,72,111,108,100,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,97,99,104,69,118,101,110,116,40,97,99,116,105,111,110,115,46,115,116,97,114,116,44,32,101,118,101,110,116,72,111,108,100,101,114,44,32,101,118,101,110,116,83,116,97,114,116,44,32,123,92,110,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,104,97,110,100,108,101,115,58,32,91,104,97,110,100,108,101,66,101,102,111,114,101,44,32,104,97,110,100,108,101,65,102,116,101,114,93,44,92,110,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,104,97,110,100,108,101,78,117,109,98,101,114,115,58,32,91,105,110,100,101,120,32,45,32,49,44,32,105,110,100,101,120,93,44,92,110,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,99,111,110,110,101,99,116,58,32,99,111,110,110,101,99,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,65,116,116,97,99,104,32,97,110,32,101,118,101,110,116,32,116,111,32,116,104,105,115,32,115,108,105,100,101,114,44,32,112,111,115,115,105,98,108,121,32,105,110,99,108,117,100,105,110,103,32,97,32,110,97,109,101,115,112,97,99,101,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,98,105,110,100,69,118,101,110,116,40,110,97,109,101,115,112,97,99,101,100,69,118,101,110,116,44,32,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,69,118,101,110,116,115,91,110,97,109,101,115,112,97,99,101,100,69,118,101,110,116,93,32,61,32,115,99,111,112,101,95,69,118,101,110,116,115,91,110,97,109,101,115,112,97,99,101,100,69,118,101,110,116,93,32,124,124,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,69,118,101,110,116,115,91,110,97,109,101,115,112,97,99,101,100,69,118,101,110,116,93,46,112,117,115,104,40,99,97,108,108,98,97,99,107,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,101,118,101,110,116,32,98,111,117,110,100,32,105,115,32,39,117,112,100,97,116,101,44,39,32,102,105,114,101,32,105,116,32,105,109,109,101,100,105,97,116,101,108,121,32,102,111,114,32,97,108,108,32,104,97,110,100,108,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,97,109,101,115,112,97,99,101,100,69,118,101,110,116,46,115,112,108,105,116,40,92,34,46,92,34,41,91,48,93,32,61,61,61,32,92,34,117,112,100,97,116,101,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,72,97,110,100,108,101,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,97,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,117,112,100,97,116,101,92,34,44,32,105,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,105,115,73,110,116,101,114,110,97,108,78,97,109,101,115,112,97,99,101,40,110,97,109,101,115,112,97,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,97,109,101,115,112,97,99,101,32,61,61,61,32,73,78,84,69,82,78,65,76,95,69,86,69,78,84,95,78,83,46,97,114,105,97,32,124,124,32,110,97,109,101,115,112,97,99,101,32,61,61,61,32,73,78,84,69,82,78,65,76,95,69,86,69,78,84,95,78,83,46,116,111,111,108,116,105,112,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,85,110,100,111,32,97,116,116,97,99,104,109,101,110,116,32,111,102,32,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,69,118,101,110,116,40,110,97,109,101,115,112,97,99,101,100,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,32,61,32,110,97,109,101,115,112,97,99,101,100,69,118,101,110,116,32,38,38,32,110,97,109,101,115,112,97,99,101,100,69,118,101,110,116,46,115,112,108,105,116,40,92,34,46,92,34,41,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,97,109,101,115,112,97,99,101,32,61,32,101,118,101,110,116,32,63,32,110,97,109,101,115,112,97,99,101,100,69,118,101,110,116,46,115,117,98,115,116,114,105,110,103,40,101,118,101,110,116,46,108,101,110,103,116,104,41,32,58,32,110,97,109,101,115,112,97,99,101,100,69,118,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,115,99,111,112,101,95,69,118,101,110,116,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,98,105,110,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,69,118,101,110,116,32,61,32,98,105,110,100,46,115,112,108,105,116,40,92,34,46,92,34,41,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,78,97,109,101,115,112,97,99,101,32,61,32,98,105,110,100,46,115,117,98,115,116,114,105,110,103,40,116,69,118,101,110,116,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,33,101,118,101,110,116,32,124,124,32,101,118,101,110,116,32,61,61,61,32,116,69,118,101,110,116,41,32,38,38,32,40,33,110,97,109,101,115,112,97,99,101,32,124,124,32,110,97,109,101,115,112,97,99,101,32,61,61,61,32,116,78,97,109,101,115,112,97,99,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,111,110,108,121,32,100,101,108,101,116,101,32,112,114,111,116,101,99,116,101,100,32,105,110,116,101,114,110,97,108,32,101,118,101,110,116,32,105,102,32,105,110,116,101,110,116,105,111,110,97,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,73,110,116,101,114,110,97,108,78,97,109,101,115,112,97,99,101,40,116,78,97,109,101,115,112,97,99,101,41,32,124,124,32,110,97,109,101,115,112,97,99,101,32,61,61,61,32,116,78,97,109,101,115,112,97,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,115,99,111,112,101,95,69,118,101,110,116,115,91,98,105,110,100,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,69,120,116,101,114,110,97,108,32,101,118,101,110,116,32,104,97,110,100,108,105,110,103,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,102,105,114,101,69,118,101,110,116,40,101,118,101,110,116,78,97,109,101,44,32,104,97,110,100,108,101,78,117,109,98,101,114,44,32,116,97,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,115,99,111,112,101,95,69,118,101,110,116,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,118,101,110,116,84,121,112,101,32,61,32,116,97,114,103,101,116,69,118,101,110,116,46,115,112,108,105,116,40,92,34,46,92,34,41,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,78,97,109,101,32,61,61,61,32,101,118,101,110,116,84,121,112,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,69,118,101,110,116,115,91,116,97,114,103,101,116,69,118,101,110,116,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,97,108,108,98,97,99,107,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,98,97,99,107,46,99,97,108,108,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,115,101,32,116,104,101,32,115,108,105,100,101,114,32,112,117,98,108,105,99,32,65,80,73,32,97,115,32,116,104,101,32,115,99,111,112,101,32,40,39,116,104,105,115,39,41,92,110,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,99,111,112,101,95,83,101,108,102,44,32,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,32,118,97,108,117,101,115,32,97,115,32,97,114,114,97,121,44,32,115,111,32,97,114,103,95,49,91,97,114,103,95,50,93,32,105,115,32,97,108,119,97,121,115,32,118,97,108,105,100,46,92,110,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,99,111,112,101,95,86,97,108,117,101,115,46,109,97,112,40,111,112,116,105,111,110,115,46,102,111,114,109,97,116,46,116,111,41,44,32,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,105,110,100,101,120,44,32,48,32,111,114,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,78,117,109,98,101,114,44,32,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,110,45,102,111,114,109,97,116,116,101,100,32,115,108,105,100,101,114,32,118,97,108,117,101,115,92,110,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,99,111,112,101,95,86,97,108,117,101,115,46,115,108,105,99,101,40,41,44,32,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,118,101,110,116,32,105,115,32,102,105,114,101,100,32,98,121,32,116,97,112,44,32,116,114,117,101,32,111,114,32,102,97,108,115,101,92,110,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,97,112,32,124,124,32,102,97,108,115,101,44,32,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,76,101,102,116,32,111,102,102,115,101,116,32,111,102,32,116,104,101,32,104,97,110,100,108,101,44,32,105,110,32,114,101,108,97,116,105,111,110,32,116,111,32,116,104,101,32,115,108,105,100,101,114,92,110,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,99,111,112,101,95,76,111,99,97,116,105,111,110,115,46,115,108,105,99,101,40,41,44,32,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,97,100,100,32,116,104,101,32,115,108,105,100,101,114,32,112,117,98,108,105,99,32,65,80,73,32,116,111,32,97,110,32,97,99,99,101,115,115,105,98,108,101,32,112,97,114,97,109,101,116,101,114,32,119,104,101,110,32,116,104,105,115,32,105,115,32,117,110,97,118,97,105,108,97,98,108,101,92,110,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,99,111,112,101,95,83,101,108,102,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,83,112,108,105,116,32,111,117,116,32,116,104,101,32,104,97,110,100,108,101,32,112,111,115,105,116,105,111,110,105,110,103,32,108,111,103,105,99,32,115,111,32,116,104,101,32,77,111,118,101,32,101,118,101,110,116,32,99,97,110,32,117,115,101,32,105,116,44,32,116,111,111,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,104,101,99,107,72,97,110,100,108,101,80,111,115,105,116,105,111,110,40,114,101,102,101,114,101,110,99,101,44,32,104,97,110,100,108,101,78,117,109,98,101,114,44,32,116,111,44,32,108,111,111,107,66,97,99,107,119,97,114,100,44,32,108,111,111,107,70,111,114,119,97,114,100,44,32,103,101,116,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,105,115,116,97,110,99,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,111,114,32,115,108,105,100,101,114,115,32,119,105,116,104,32,109,117,108,116,105,112,108,101,32,104,97,110,100,108,101,115,44,32,108,105,109,105,116,32,109,111,118,101,109,101,110,116,32,116,111,32,116,104,101,32,111,116,104,101,114,32,104,97,110,100,108,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,112,112,108,121,32,116,104,101,32,109,97,114,103,105,110,32,111,112,116,105,111,110,32,98,121,32,97,100,100,105,110,103,32,105,116,32,116,111,32,116,104,101,32,104,97,110,100,108,101,32,112,111,115,105,116,105,111,110,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,99,111,112,101,95,72,97,110,100,108,101,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,33,111,112,116,105,111,110,115,46,101,118,101,110,116,115,46,117,110,99,111,110,115,116,114,97,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,111,111,107,66,97,99,107,119,97,114,100,32,38,38,32,104,97,110,100,108,101,78,117,109,98,101,114,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,105,115,116,97,110,99,101,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,103,101,116,65,98,115,111,108,117,116,101,68,105,115,116,97,110,99,101,40,114,101,102,101,114,101,110,99,101,91,104,97,110,100,108,101,78,117,109,98,101,114,32,45,32,49,93,44,32,111,112,116,105,111,110,115,46,109,97,114,103,105,110,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,77,97,116,104,46,109,97,120,40,116,111,44,32,100,105,115,116,97,110,99,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,111,111,107,70,111,114,119,97,114,100,32,38,38,32,104,97,110,100,108,101,78,117,109,98,101,114,32,60,32,115,99,111,112,101,95,72,97,110,100,108,101,115,46,108,101,110,103,116,104,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,105,115,116,97,110,99,101,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,103,101,116,65,98,115,111,108,117,116,101,68,105,115,116,97,110,99,101,40,114,101,102,101,114,101,110,99,101,91,104,97,110,100,108,101,78,117,109,98,101,114,32,43,32,49,93,44,32,111,112,116,105,111,110,115,46,109,97,114,103,105,110,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,77,97,116,104,46,109,105,110,40,116,111,44,32,100,105,115,116,97,110,99,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,108,105,109,105,116,32,111,112,116,105,111,110,32,104,97,115,32,116,104,101,32,111,112,112,111,115,105,116,101,32,101,102,102,101,99,116,44,32,108,105,109,105,116,105,110,103,32,104,97,110,100,108,101,115,32,116,111,32,97,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,109,97,120,105,109,117,109,32,100,105,115,116,97,110,99,101,32,102,114,111,109,32,97,110,111,116,104,101,114,46,32,76,105,109,105,116,32,109,117,115,116,32,98,101,32,62,32,48,44,32,97,115,32,111,116,104,101,114,119,105,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,104,97,110,100,108,101,115,32,119,111,117,108,100,32,98,101,32,117,110,109,111,118,97,98,108,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,99,111,112,101,95,72,97,110,100,108,101,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,111,112,116,105,111,110,115,46,108,105,109,105,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,111,111,107,66,97,99,107,119,97,114,100,32,38,38,32,104,97,110,100,108,101,78,117,109,98,101,114,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,105,115,116,97,110,99,101,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,103,101,116,65,98,115,111,108,117,116,101,68,105,115,116,97,110,99,101,40,114,101,102,101,114,101,110,99,101,91,104,97,110,100,108,101,78,117,109,98,101,114,32,45,32,49,93,44,32,111,112,116,105,111,110,115,46,108,105,109,105,116,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,77,97,116,104,46,109,105,110,40,116,111,44,32,100,105,115,116,97,110,99,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,111,111,107,70,111,114,119,97,114,100,32,38,38,32,104,97,110,100,108,101,78,117,109,98,101,114,32,60,32,115,99,111,112,101,95,72,97,110,100,108,101,115,46,108,101,110,103,116,104,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,105,115,116,97,110,99,101,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,103,101,116,65,98,115,111,108,117,116,101,68,105,115,116,97,110,99,101,40,114,101,102,101,114,101,110,99,101,91,104,97,110,100,108,101,78,117,109,98,101,114,32,43,32,49,93,44,32,111,112,116,105,111,110,115,46,108,105,109,105,116,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,77,97,116,104,46,109,97,120,40,116,111,44,32,100,105,115,116,97,110,99,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,112,97,100,100,105,110,103,32,111,112,116,105,111,110,32,107,101,101,112,115,32,116,104,101,32,104,97,110,100,108,101,115,32,97,32,99,101,114,116,97,105,110,32,100,105,115,116,97,110,99,101,32,102,114,111,109,32,116,104,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,101,100,103,101,115,32,111,102,32,116,104,101,32,115,108,105,100,101,114,46,32,80,97,100,100,105,110,103,32,109,117,115,116,32,98,101,32,62,32,48,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,112,97,100,100,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,110,100,108,101,78,117,109,98,101,114,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,105,115,116,97,110,99,101,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,103,101,116,65,98,115,111,108,117,116,101,68,105,115,116,97,110,99,101,40,48,44,32,111,112,116,105,111,110,115,46,112,97,100,100,105,110,103,91,48,93,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,77,97,116,104,46,109,97,120,40,116,111,44,32,100,105,115,116,97,110,99,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,110,100,108,101,78,117,109,98,101,114,32,61,61,61,32,115,99,111,112,101,95,72,97,110,100,108,101,115,46,108,101,110,103,116,104,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,105,115,116,97,110,99,101,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,103,101,116,65,98,115,111,108,117,116,101,68,105,115,116,97,110,99,101,40,49,48,48,44,32,111,112,116,105,111,110,115,46,112,97,100,100,105,110,103,91,49,93,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,77,97,116,104,46,109,105,110,40,116,111,44,32,100,105,115,116,97,110,99,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,103,101,116,83,116,101,112,40,116,111,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,76,105,109,105,116,32,112,101,114,99,101,110,116,97,103,101,32,116,111,32,116,104,101,32,48,32,45,32,49,48,48,32,114,97,110,103,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,108,105,109,105,116,40,116,111,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,116,117,114,110,32,102,97,108,115,101,32,105,102,32,104,97,110,100,108,101,32,99,97,110,39,116,32,109,111,118,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,111,32,61,61,61,32,114,101,102,101,114,101,110,99,101,91,104,97,110,100,108,101,78,117,109,98,101,114,93,32,38,38,32,33,103,101,116,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,111,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,85,115,101,115,32,115,108,105,100,101,114,32,111,114,105,101,110,116,97,116,105,111,110,32,116,111,32,99,114,101,97,116,101,32,67,83,83,32,114,117,108,101,115,46,32,97,32,61,32,98,97,115,101,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,82,117,108,101,79,114,100,101,114,40,118,44,32,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,32,61,32,111,112,116,105,111,110,115,46,111,114,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,40,111,32,63,32,97,32,58,32,118,41,32,43,32,92,34,44,32,92,34,32,43,32,40,111,32,63,32,118,32,58,32,97,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,77,111,118,101,115,32,104,97,110,100,108,101,40,115,41,32,98,121,32,97,32,112,101,114,99,101,110,116,97,103,101,92,110,32,32,32,32,32,32,32,32,47,47,32,40,98,111,111,108,44,32,37,32,116,111,32,109,111,118,101,44,32,91,37,32,119,104,101,114,101,32,104,97,110,100,108,101,32,115,116,97,114,116,101,100,44,32,46,46,46,93,44,32,91,105,110,100,101,120,32,105,110,32,115,99,111,112,101,95,72,97,110,100,108,101,115,44,32,46,46,46,93,41,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,109,111,118,101,72,97,110,100,108,101,115,40,117,112,119,97,114,100,44,32,112,114,111,112,111,115,97,108,44,32,108,111,99,97,116,105,111,110,115,44,32,104,97,110,100,108,101,78,117,109,98,101,114,115,44,32,99,111,110,110,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,112,111,115,97,108,115,32,61,32,108,111,99,97,116,105,111,110,115,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,116,111,114,101,32,102,105,114,115,116,32,104,97,110,100,108,101,32,110,111,119,44,32,115,111,32,119,101,32,115,116,105,108,108,32,104,97,118,101,32,105,116,32,105,110,32,99,97,115,101,32,104,97,110,100,108,101,78,117,109,98,101,114,115,32,105,115,32,114,101,118,101,114,115,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,105,114,115,116,72,97,110,100,108,101,32,61,32,104,97,110,100,108,101,78,117,109,98,101,114,115,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,98,32,61,32,91,33,117,112,119,97,114,100,44,32,117,112,119,97,114,100,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,32,61,32,91,117,112,119,97,114,100,44,32,33,117,112,119,97,114,100,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,112,121,32,104,97,110,100,108,101,78,117,109,98,101,114,115,32,115,111,32,119,101,32,100,111,110,39,116,32,99,104,97,110,103,101,32,116,104,101,32,100,97,116,97,115,101,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,78,117,109,98,101,114,115,32,61,32,104,97,110,100,108,101,78,117,109,98,101,114,115,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,104,101,99,107,32,116,111,32,115,101,101,32,119,104,105,99,104,32,104,97,110,100,108,101,32,105,115,32,39,108,101,97,100,105,110,103,39,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,104,97,116,32,111,110,101,32,99,97,110,39,116,32,109,111,118,101,32,116,104,101,32,115,101,99,111,110,100,32,99,97,110,39,116,32,101,105,116,104,101,114,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,117,112,119,97,114,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,78,117,109,98,101,114,115,46,114,101,118,101,114,115,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,116,101,112,32,49,58,32,103,101,116,32,116,104,101,32,109,97,120,105,109,117,109,32,112,101,114,99,101,110,116,97,103,101,32,116,104,97,116,32,97,110,121,32,111,102,32,116,104,101,32,104,97,110,100,108,101,115,32,99,97,110,32,109,111,118,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,110,100,108,101,78,117,109,98,101,114,115,46,108,101,110,103,116,104,32,62,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,78,117,109,98,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,78,117,109,98,101,114,44,32,111,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,111,32,61,32,99,104,101,99,107,72,97,110,100,108,101,80,111,115,105,116,105,111,110,40,112,114,111,112,111,115,97,108,115,44,32,104,97,110,100,108,101,78,117,109,98,101,114,44,32,112,114,111,112,111,115,97,108,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,32,43,32,112,114,111,112,111,115,97,108,44,32,98,91,111,93,44,32,102,91,111,93,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,116,111,112,32,105,102,32,111,110,101,32,111,102,32,116,104,101,32,104,97,110,100,108,101,115,32,99,97,110,39,116,32,109,111,118,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,111,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,111,115,97,108,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,111,115,97,108,32,61,32,116,111,32,45,32,112,114,111,112,111,115,97,108,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,111,115,97,108,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,32,61,32,116,111,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,117,115,105,110,103,32,111,110,101,32,104,97,110,100,108,101,44,32,99,104,101,99,107,32,98,97,99,107,119,97,114,100,32,65,78,68,32,102,111,114,119,97,114,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,32,61,32,102,32,61,32,91,116,114,117,101,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,97,116,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,116,101,112,32,50,58,32,84,114,121,32,116,111,32,115,101,116,32,116,104,101,32,104,97,110,100,108,101,115,32,119,105,116,104,32,116,104,101,32,102,111,117,110,100,32,112,101,114,99,101,110,116,97,103,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,78,117,109,98,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,78,117,109,98,101,114,44,32,111,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,101,32,61,32,115,101,116,72,97,110,100,108,101,40,104,97,110,100,108,101,78,117,109,98,101,114,44,32,108,111,99,97,116,105,111,110,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,32,43,32,112,114,111,112,111,115,97,108,44,32,98,91,111,93,44,32,102,91,111,93,41,32,124,124,32,115,116,97,116,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,116,101,112,32,51,58,32,73,102,32,97,32,104,97,110,100,108,101,32,109,111,118,101,100,44,32,102,105,114,101,32,101,118,101,110,116,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,116,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,78,117,109,98,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,117,112,100,97,116,101,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,115,108,105,100,101,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,97,114,103,101,116,32,105,115,32,97,32,99,111,110,110,101,99,116,44,32,116,104,101,110,32,102,105,114,101,32,100,114,97,103,32,101,118,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,111,110,110,101,99,116,32,33,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,100,114,97,103,92,34,44,32,102,105,114,115,116,72,97,110,100,108,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,84,97,107,101,115,32,97,32,98,97,115,101,32,118,97,108,117,101,32,97,110,100,32,97,110,32,111,102,102,115,101,116,46,32,84,104,105,115,32,111,102,102,115,101,116,32,105,115,32,117,115,101,100,32,102,111,114,32,116,104,101,32,99,111,110,110,101,99,116,32,98,97,114,32,115,105,122,101,46,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,32,116,104,101,32,105,110,105,116,105,97,108,32,100,101,115,105,103,110,32,102,111,114,32,116,104,105,115,32,102,101,97,116,117,114,101,44,32,116,104,101,32,111,114,105,103,105,110,32,101,108,101,109,101,110,116,32,119,97,115,32,49,37,32,119,105,100,101,46,92,110,32,32,32,32,32,32,32,32,47,47,32,85,110,102,111,114,116,117,110,97,116,101,108,121,44,32,97,32,114,111,117,110,100,105,110,103,32,98,117,103,32,105,110,32,67,104,114,111,109,101,32,109,97,107,101,115,32,105,116,32,105,109,112,111,115,115,105,98,108,101,32,116,111,32,105,109,112,108,101,109,101,110,116,32,116,104,105,115,32,102,101,97,116,117,114,101,92,110,32,32,32,32,32,32,32,32,47,47,32,105,110,32,116,104,105,115,32,109,97,110,110,101,114,58,32,104,116,116,112,115,58,47,47,98,117,103,115,46,99,104,114,111,109,105,117,109,46,111,114,103,47,112,47,99,104,114,111,109,105,117,109,47,105,115,115,117,101,115,47,100,101,116,97,105,108,63,105,100,61,55,57,56,50,50,51,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,68,105,114,101,99,116,105,111,110,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,112,116,105,111,110,115,46,100,105,114,32,63,32,49,48,48,32,45,32,97,32,45,32,98,32,58,32,97,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,85,112,100,97,116,101,115,32,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,32,97,110,100,32,115,99,111,112,101,95,86,97,108,117,101,115,44,32,117,112,100,97,116,101,115,32,118,105,115,117,97,108,32,115,116,97,116,101,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,72,97,110,100,108,101,80,111,115,105,116,105,111,110,40,104,97,110,100,108,101,78,117,109,98,101,114,44,32,116,111,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,112,100,97,116,101,32,108,111,99,97,116,105,111,110,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,32,61,32,116,111,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,116,104,101,32,118,97,108,117,101,32,116,111,32,116,104,101,32,115,108,105,100,101,114,32,115,116,101,112,112,105,110,103,47,114,97,110,103,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,86,97,108,117,101,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,102,114,111,109,83,116,101,112,112,105,110,103,40,116,111,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,114,97,110,115,108,97,116,105,111,110,32,61,32,49,48,32,42,32,40,116,114,97,110,115,102,111,114,109,68,105,114,101,99,116,105,111,110,40,116,111,44,32,48,41,32,45,32,115,99,111,112,101,95,68,105,114,79,102,102,115,101,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,114,97,110,115,108,97,116,101,82,117,108,101,32,61,32,92,34,116,114,97,110,115,108,97,116,101,40,92,34,32,43,32,105,110,82,117,108,101,79,114,100,101,114,40,116,114,97,110,115,108,97,116,105,111,110,32,43,32,92,34,37,92,34,44,32,92,34,48,92,34,41,32,43,32,92,34,41,92,34,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,72,97,110,100,108,101,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,46,115,116,121,108,101,91,111,112,116,105,111,110,115,46,116,114,97,110,115,102,111,114,109,82,117,108,101,93,32,61,32,116,114,97,110,115,108,97,116,101,82,117,108,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,112,100,97,116,101,67,111,110,110,101,99,116,40,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,112,100,97,116,101,67,111,110,110,101,99,116,40,104,97,110,100,108,101,78,117,109,98,101,114,32,43,32,49,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,115,32,98,101,102,111,114,101,32,116,104,101,32,115,108,105,100,101,114,32,109,105,100,100,108,101,32,97,114,101,32,115,116,97,99,107,101,100,32,108,97,116,101,114,32,61,32,104,105,103,104,101,114,44,92,110,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,115,32,97,102,116,101,114,32,116,104,101,32,109,105,100,100,108,101,32,108,97,116,101,114,32,105,115,32,108,111,119,101,114,92,110,32,32,32,32,32,32,32,32,47,47,32,91,91,55,93,32,91,56,93,32,46,46,46,46,46,46,46,46,46,46,32,124,32,46,46,46,46,46,46,46,46,46,46,32,91,53,93,32,91,52,93,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,115,101,116,90,105,110,100,101,120,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,72,97,110,100,108,101,78,117,109,98,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,105,114,32,61,32,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,32,62,32,53,48,32,63,32,45,49,32,58,32,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,122,73,110,100,101,120,32,61,32,51,32,43,32,40,115,99,111,112,101,95,72,97,110,100,108,101,115,46,108,101,110,103,116,104,32,43,32,100,105,114,32,42,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,72,97,110,100,108,101,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,46,115,116,121,108,101,46,122,73,110,100,101,120,32,61,32,83,116,114,105,110,103,40,122,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,84,101,115,116,32,115,117,103,103,101,115,116,101,100,32,118,97,108,117,101,115,32,97,110,100,32,97,112,112,108,121,32,109,97,114,103,105,110,44,32,115,116,101,112,46,92,110,32,32,32,32,32,32,32,32,47,47,32,105,102,32,101,120,97,99,116,73,110,112,117,116,32,105,115,32,116,114,117,101,44,32,100,111,110,39,116,32,114,117,110,32,99,104,101,99,107,72,97,110,100,108,101,80,111,115,105,116,105,111,110,44,32,116,104,101,110,32,116,104,101,32,104,97,110,100,108,101,32,99,97,110,32,98,101,32,112,108,97,99,101,100,32,105,110,32,98,101,116,119,101,101,110,32,115,116,101,112,115,32,40,35,52,51,54,41,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,115,101,116,72,97,110,100,108,101,40,104,97,110,100,108,101,78,117,109,98,101,114,44,32,116,111,44,32,108,111,111,107,66,97,99,107,119,97,114,100,44,32,108,111,111,107,70,111,114,119,97,114,100,44,32,101,120,97,99,116,73,110,112,117,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,101,120,97,99,116,73,110,112,117,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,99,104,101,99,107,72,97,110,100,108,101,80,111,115,105,116,105,111,110,40,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,44,32,104,97,110,100,108,101,78,117,109,98,101,114,44,32,116,111,44,32,108,111,111,107,66,97,99,107,119,97,114,100,44,32,108,111,111,107,70,111,114,119,97,114,100,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,111,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,112,100,97,116,101,72,97,110,100,108,101,80,111,115,105,116,105,111,110,40,104,97,110,100,108,101,78,117,109,98,101,114,44,32,116,111,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,85,112,100,97,116,101,115,32,115,116,121,108,101,32,97,116,116,114,105,98,117,116,101,32,102,111,114,32,99,111,110,110,101,99,116,32,110,111,100,101,115,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,67,111,110,110,101,99,116,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,107,105,112,32,99,111,110,110,101,99,116,115,32,115,101,116,32,116,111,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,115,99,111,112,101,95,67,111,110,110,101,99,116,115,91,105,110,100,101,120,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,32,61,32,49,48,48,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,33,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,32,61,32,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,91,105,110,100,101,120,32,45,32,49,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,33,61,61,32,115,99,111,112,101,95,67,111,110,110,101,99,116,115,46,108,101,110,103,116,104,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,32,61,32,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,117,115,101,32,116,119,111,32,114,117,108,101,115,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,39,116,114,97,110,115,108,97,116,101,39,32,116,111,32,99,104,97,110,103,101,32,116,104,101,32,108,101,102,116,47,116,111,112,32,111,102,102,115,101,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,39,115,99,97,108,101,39,32,116,111,32,99,104,97,110,103,101,32,116,104,101,32,119,105,100,116,104,32,111,102,32,116,104,101,32,101,108,101,109,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,115,32,116,104,101,32,101,108,101,109,101,110,116,32,104,97,115,32,97,32,119,105,100,116,104,32,111,102,32,49,48,48,37,44,32,97,32,116,114,97,110,115,108,97,116,105,111,110,32,111,102,32,49,48,48,37,32,105,115,32,101,113,117,97,108,32,116,111,32,49,48,48,37,32,111,102,32,116,104,101,32,112,97,114,101,110,116,32,40,46,110,111,85,105,45,98,97,115,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,110,110,101,99,116,87,105,100,116,104,32,61,32,104,32,45,32,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,114,97,110,115,108,97,116,101,82,117,108,101,32,61,32,92,34,116,114,97,110,115,108,97,116,101,40,92,34,32,43,32,105,110,82,117,108,101,79,114,100,101,114,40,116,114,97,110,115,102,111,114,109,68,105,114,101,99,116,105,111,110,40,108,44,32,99,111,110,110,101,99,116,87,105,100,116,104,41,32,43,32,92,34,37,92,34,44,32,92,34,48,92,34,41,32,43,32,92,34,41,92,34,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,99,97,108,101,82,117,108,101,32,61,32,92,34,115,99,97,108,101,40,92,34,32,43,32,105,110,82,117,108,101,79,114,100,101,114,40,99,111,110,110,101,99,116,87,105,100,116,104,32,47,32,49,48,48,44,32,92,34,49,92,34,41,32,43,32,92,34,41,92,34,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,67,111,110,110,101,99,116,115,91,105,110,100,101,120,93,46,115,116,121,108,101,91,111,112,116,105,111,110,115,46,116,114,97,110,115,102,111,114,109,82,117,108,101,93,32,61,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,97,110,115,108,97,116,101,82,117,108,101,32,43,32,92,34,32,92,34,32,43,32,115,99,97,108,101,82,117,108,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,80,97,114,115,101,115,32,118,97,108,117,101,32,112,97,115,115,101,100,32,116,111,32,46,115,101,116,32,109,101,116,104,111,100,46,32,82,101,116,117,114,110,115,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,105,102,32,110,111,116,32,112,97,114,115,101,45,97,98,108,101,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,84,111,86,97,108,117,101,40,116,111,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,116,105,110,103,32,119,105,116,104,32,110,117,108,108,32,105,110,100,105,99,97,116,101,115,32,97,110,32,39,105,103,110,111,114,101,39,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,112,117,116,116,105,110,103,32,39,102,97,108,115,101,39,32,105,115,32,105,110,118,97,108,105,100,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,111,32,61,61,61,32,110,117,108,108,32,124,124,32,116,111,32,61,61,61,32,102,97,108,115,101,32,124,124,32,116,111,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,97,32,102,111,114,109,97,116,116,101,100,32,110,117,109,98,101,114,32,119,97,115,32,112,97,115,115,101,100,44,32,97,116,116,101,109,112,116,32,116,111,32,100,101,99,111,100,101,32,105,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,116,111,32,61,61,61,32,92,34,110,117,109,98,101,114,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,83,116,114,105,110,103,40,116,111,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,111,112,116,105,111,110,115,46,102,111,114,109,97,116,46,102,114,111,109,40,116,111,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,111,32,33,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,116,111,83,116,101,112,112,105,110,103,40,116,111,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,112,97,114,115,105,110,103,32,116,104,101,32,110,117,109,98,101,114,32,102,97,105,108,101,100,44,32,117,115,101,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,111,32,61,61,61,32,102,97,108,115,101,32,124,124,32,105,115,78,97,78,40,116,111,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,111,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,116,104,101,32,115,108,105,100,101,114,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,83,101,116,40,105,110,112,117,116,44,32,102,105,114,101,83,101,116,69,118,101,110,116,44,32,101,120,97,99,116,73,110,112,117,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,97,115,65,114,114,97,121,40,105,110,112,117,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,115,73,110,105,116,32,61,32,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,91,48,93,32,61,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,118,101,110,116,32,102,105,114,101,115,32,98,121,32,100,101,102,97,117,108,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,83,101,116,69,118,101,110,116,32,61,32,102,105,114,101,83,101,116,69,118,101,110,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,116,114,117,101,32,58,32,102,105,114,101,83,101,116,69,118,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,110,105,109,97,116,105,111,110,32,105,115,32,111,112,116,105,111,110,97,108,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,77,97,107,101,32,115,117,114,101,32,116,104,101,32,105,110,105,116,105,97,108,32,118,97,108,117,101,115,32,119,101,114,101,32,115,101,116,32,98,101,102,111,114,101,32,117,115,105,110,103,32,97,110,105,109,97,116,101,100,32,112,108,97,99,101,109,101,110,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,97,110,105,109,97,116,101,32,38,38,32,33,105,115,73,110,105,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,67,108,97,115,115,70,111,114,40,115,99,111,112,101,95,84,97,114,103,101,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,46,116,97,112,44,32,111,112,116,105,111,110,115,46,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,114,115,116,32,112,97,115,115,44,32,119,105,116,104,111,117,116,32,108,111,111,107,65,104,101,97,100,32,98,117,116,32,119,105,116,104,32,108,111,111,107,66,97,99,107,119,97,114,100,46,32,86,97,108,117,101,115,32,97,114,101,32,115,101,116,32,102,114,111,109,32,108,101,102,116,32,116,111,32,114,105,103,104,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,72,97,110,100,108,101,78,117,109,98,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,72,97,110,100,108,101,40,104,97,110,100,108,101,78,117,109,98,101,114,44,32,114,101,115,111,108,118,101,84,111,86,97,108,117,101,40,118,97,108,117,101,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,44,32,116,114,117,101,44,32,102,97,108,115,101,44,32,101,120,97,99,116,73,110,112,117,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,32,61,32,115,99,111,112,101,95,72,97,110,100,108,101,78,117,109,98,101,114,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,63,32,48,32,58,32,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,99,111,110,100,97,114,121,32,112,97,115,115,101,115,46,32,78,111,119,32,116,104,97,116,32,97,108,108,32,98,97,115,101,32,118,97,108,117,101,115,32,97,114,101,32,115,101,116,44,32,97,112,112,108,121,32,99,111,110,115,116,114,97,105,110,116,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,116,101,114,97,116,101,32,97,108,108,32,104,97,110,100,108,101,115,32,116,111,32,101,110,115,117,114,101,32,99,111,110,115,116,114,97,105,110,116,115,32,97,114,101,32,97,112,112,108,105,101,100,32,102,111,114,32,116,104,101,32,101,110,116,105,114,101,32,115,108,105,100,101,114,32,40,73,115,115,117,101,32,35,49,48,48,57,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,59,32,105,32,60,32,115,99,111,112,101,95,72,97,110,100,108,101,78,117,109,98,101,114,115,46,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,72,97,110,100,108,101,78,117,109,98,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,72,97,110,100,108,101,40,104,97,110,100,108,101,78,117,109,98,101,114,44,32,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,44,32,116,114,117,101,44,32,116,114,117,101,44,32,101,120,97,99,116,73,110,112,117,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,90,105,110,100,101,120,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,72,97,110,100,108,101,78,117,109,98,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,117,112,100,97,116,101,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,114,101,32,116,104,101,32,101,118,101,110,116,32,111,110,108,121,32,102,111,114,32,104,97,110,100,108,101,115,32,116,104,97,116,32,114,101,99,101,105,118,101,100,32,97,32,110,101,119,32,118,97,108,117,101,44,32,97,115,32,112,101,114,32,35,53,55,57,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,32,33,61,61,32,110,117,108,108,32,38,38,32,102,105,114,101,83,101,116,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,115,101,116,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,115,101,116,32,115,108,105,100,101,114,32,116,111,32,105,110,105,116,105,97,108,32,118,97,108,117,101,115,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,82,101,115,101,116,40,102,105,114,101,83,101,116,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,83,101,116,40,111,112,116,105,111,110,115,46,115,116,97,114,116,44,32,102,105,114,101,83,101,116,69,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,83,101,116,32,118,97,108,117,101,32,102,111,114,32,97,32,115,105,110,103,108,101,32,104,97,110,100,108,101,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,83,101,116,72,97,110,100,108,101,40,104,97,110,100,108,101,78,117,109,98,101,114,44,32,118,97,108,117,101,44,32,102,105,114,101,83,101,116,69,118,101,110,116,44,32,101,120,97,99,116,73,110,112,117,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,110,115,117,114,101,32,110,117,109,101,114,105,99,32,105,110,112,117,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,78,117,109,98,101,114,32,61,32,78,117,109,98,101,114,40,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,104,97,110,100,108,101,78,117,109,98,101,114,32,62,61,32,48,32,38,38,32,104,97,110,100,108,101,78,117,109,98,101,114,32,60,32,115,99,111,112,101,95,72,97,110,100,108,101,78,117,109,98,101,114,115,46,108,101,110,103,116,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,105,110,118,97,108,105,100,32,104,97,110,100,108,101,32,110,117,109,98,101,114,44,32,103,111,116,58,32,92,34,32,43,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,76,111,111,107,32,98,111,116,104,32,98,97,99,107,119,97,114,100,32,97,110,100,32,102,111,114,119,97,114,100,44,32,115,105,110,99,101,32,119,101,32,100,111,110,39,116,32,119,97,110,116,32,116,104,105,115,32,104,97,110,100,108,101,32,116,111,32,92,34,112,117,115,104,92,34,32,111,116,104,101,114,32,104,97,110,100,108,101,115,32,40,35,57,54,48,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,84,104,101,32,101,120,97,99,116,73,110,112,117,116,32,97,114,103,117,109,101,110,116,32,99,97,110,32,98,101,32,117,115,101,100,32,116,111,32,105,103,110,111,114,101,32,115,108,105,100,101,114,32,115,116,101,112,112,105,110,103,32,40,35,52,51,54,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,72,97,110,100,108,101,40,104,97,110,100,108,101,78,117,109,98,101,114,44,32,114,101,115,111,108,118,101,84,111,86,97,108,117,101,40,118,97,108,117,101,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,44,32,116,114,117,101,44,32,116,114,117,101,44,32,101,120,97,99,116,73,110,112,117,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,117,112,100,97,116,101,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,102,105,114,101,83,101,116,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,114,101,69,118,101,110,116,40,92,34,115,101,116,92,34,44,32,104,97,110,100,108,101,78,117,109,98,101,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,71,101,116,32,116,104,101,32,115,108,105,100,101,114,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,71,101,116,40,117,110,101,110,99,111,100,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,117,110,101,110,99,111,100,101,100,32,61,61,61,32,118,111,105,100,32,48,41,32,123,32,117,110,101,110,99,111,100,101,100,32,61,32,102,97,108,115,101,59,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,117,110,101,110,99,111,100,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,114,101,116,117,114,110,32,97,32,99,111,112,121,32,111,102,32,116,104,101,32,114,97,119,32,118,97,108,117,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,111,112,101,95,86,97,108,117,101,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,63,32,115,99,111,112,101,95,86,97,108,117,101,115,91,48,93,32,58,32,115,99,111,112,101,95,86,97,108,117,101,115,46,115,108,105,99,101,40,48,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,115,99,111,112,101,95,86,97,108,117,101,115,46,109,97,112,40,111,112,116,105,111,110,115,46,102,111,114,109,97,116,46,116,111,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,111,110,108,121,32,111,110,101,32,104,97,110,100,108,101,32,105,115,32,117,115,101,100,44,32,114,101,116,117,114,110,32,97,32,115,105,110,103,108,101,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,115,46,108,101,110,103,116,104,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,115,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,115,32,99,108,97,115,115,101,115,32,102,114,111,109,32,116,104,101,32,114,111,111,116,32,97,110,100,32,101,109,112,116,105,101,115,32,105,116,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,114,101,109,111,118,101,32,112,114,111,116,101,99,116,101,100,32,105,110,116,101,114,110,97,108,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,69,118,101,110,116,40,73,78,84,69,82,78,65,76,95,69,86,69,78,84,95,78,83,46,97,114,105,97,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,69,118,101,110,116,40,73,78,84,69,82,78,65,76,95,69,86,69,78,84,95,78,83,46,116,111,111,108,116,105,112,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,67,108,97,115,115,40,115,99,111,112,101,95,84,97,114,103,101,116,44,32,111,112,116,105,111,110,115,46,99,115,115,67,108,97,115,115,101,115,91,107,101,121,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,115,99,111,112,101,95,84,97,114,103,101,116,46,102,105,114,115,116,67,104,105,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,84,97,114,103,101,116,46,114,101,109,111,118,101,67,104,105,108,100,40,115,99,111,112,101,95,84,97,114,103,101,116,46,102,105,114,115,116,67,104,105,108,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,115,99,111,112,101,95,84,97,114,103,101,116,46,110,111,85,105,83,108,105,100,101,114,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,78,101,120,116,83,116,101,112,115,70,111,114,72,97,110,100,108,101,40,104,97,110,100,108,101,78,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,111,99,97,116,105,111,110,32,61,32,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,97,114,98,121,83,116,101,112,115,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,103,101,116,78,101,97,114,98,121,83,116,101,112,115,40,108,111,99,97,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,115,99,111,112,101,95,86,97,108,117,101,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,99,114,101,109,101,110,116,32,61,32,110,101,97,114,98,121,83,116,101,112,115,46,116,104,105,115,83,116,101,112,46,115,116,101,112,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,101,99,114,101,109,101,110,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,115,110,97,112,112,101,100,44,32,100,105,114,101,99,116,108,121,32,117,115,101,32,100,101,102,105,110,101,100,32,115,116,101,112,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,115,110,97,112,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,32,45,32,110,101,97,114,98,121,83,116,101,112,115,46,115,116,101,112,66,101,102,111,114,101,46,115,116,97,114,116,86,97,108,117,101,32,124,124,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,97,114,98,121,83,116,101,112,115,46,115,116,101,112,65,102,116,101,114,46,115,116,97,114,116,86,97,108,117,101,32,45,32,118,97,108,117,101,32,124,124,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,110,101,120,116,32,118,97,108,117,101,32,105,110,32,116,104,105,115,32,115,116,101,112,32,109,111,118,101,115,32,105,110,116,111,32,116,104,101,32,110,101,120,116,32,115,116,101,112,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,116,104,101,32,105,110,99,114,101,109,101,110,116,32,105,115,32,116,104,101,32,115,116,97,114,116,32,111,102,32,116,104,101,32,110,101,120,116,32,115,116,101,112,32,45,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,99,114,101,109,101,110,116,32,33,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,43,32,105,110,99,114,101,109,101,110,116,32,62,32,110,101,97,114,98,121,83,116,101,112,115,46,115,116,101,112,65,102,116,101,114,46,115,116,97,114,116,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,99,114,101,109,101,110,116,32,61,32,110,101,97,114,98,121,83,116,101,112,115,46,115,116,101,112,65,102,116,101,114,46,115,116,97,114,116,86,97,108,117,101,32,45,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,118,97,108,117,101,32,105,115,32,98,101,121,111,110,100,32,116,104,101,32,115,116,97,114,116,105,110,103,32,112,111,105,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,62,32,110,101,97,114,98,121,83,116,101,112,115,46,116,104,105,115,83,116,101,112,46,115,116,97,114,116,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,99,114,101,109,101,110,116,32,61,32,110,101,97,114,98,121,83,116,101,112,115,46,116,104,105,115,83,116,101,112,46,115,116,101,112,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,110,101,97,114,98,121,83,116,101,112,115,46,115,116,101,112,66,101,102,111,114,101,46,115,116,101,112,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,99,114,101,109,101,110,116,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,97,32,104,97,110,100,108,101,32,105,115,32,97,116,32,116,104,101,32,115,116,97,114,116,32,111,102,32,97,32,115,116,101,112,44,32,105,116,32,97,108,119,97,121,115,32,115,116,101,112,115,32,98,97,99,107,32,105,110,116,111,32,116,104,101,32,112,114,101,118,105,111,117,115,32,115,116,101,112,32,102,105,114,115,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,99,114,101,109,101,110,116,32,61,32,118,97,108,117,101,32,45,32,110,101,97,114,98,121,83,116,101,112,115,46,115,116,101,112,66,101,102,111,114,101,46,104,105,103,104,101,115,116,83,116,101,112,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,119,44,32,105,102,32,97,116,32,116,104,101,32,115,108,105,100,101,114,32,101,100,103,101,115,44,32,116,104,101,114,101,32,105,115,32,110,111,32,105,110,47,100,101,99,114,101,109,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,111,99,97,116,105,111,110,32,61,61,61,32,49,48,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,99,114,101,109,101,110,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,108,111,99,97,116,105,111,110,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,99,114,101,109,101,110,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,115,32,112,101,114,32,35,51,57,49,44,32,116,104,101,32,99,111,109,112,97,114,105,115,111,110,32,102,111,114,32,116,104,101,32,100,101,99,114,101,109,101,110,116,32,115,116,101,112,32,99,97,110,32,104,97,118,101,32,115,111,109,101,32,114,111,117,110,100,105,110,103,32,105,115,115,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,116,101,112,68,101,99,105,109,97,108,115,32,61,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,46,99,111,117,110,116,83,116,101,112,68,101,99,105,109,97,108,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,111,117,110,100,32,112,101,114,32,35,51,57,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,99,114,101,109,101,110,116,32,33,61,61,32,110,117,108,108,32,38,38,32,105,110,99,114,101,109,101,110,116,32,33,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,99,114,101,109,101,110,116,32,61,32,78,117,109,98,101,114,40,105,110,99,114,101,109,101,110,116,46,116,111,70,105,120,101,100,40,115,116,101,112,68,101,99,105,109,97,108,115,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,101,99,114,101,109,101,110,116,32,33,61,61,32,110,117,108,108,32,38,38,32,100,101,99,114,101,109,101,110,116,32,33,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,99,114,101,109,101,110,116,32,61,32,78,117,109,98,101,114,40,100,101,99,114,101,109,101,110,116,46,116,111,70,105,120,101,100,40,115,116,101,112,68,101,99,105,109,97,108,115,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,100,101,99,114,101,109,101,110,116,44,32,105,110,99,114,101,109,101,110,116,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,71,101,116,32,116,104,101,32,99,117,114,114,101,110,116,32,115,116,101,112,32,115,105,122,101,32,102,111,114,32,116,104,101,32,115,108,105,100,101,114,46,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,103,101,116,78,101,120,116,83,116,101,112,115,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,111,112,101,95,72,97,110,100,108,101,78,117,109,98,101,114,115,46,109,97,112,40,103,101,116,78,101,120,116,83,116,101,112,115,70,111,114,72,97,110,100,108,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,85,112,100,97,116,97,98,108,101,58,32,109,97,114,103,105,110,44,32,108,105,109,105,116,44,32,112,97,100,100,105,110,103,44,32,115,116,101,112,44,32,114,97,110,103,101,44,32,97,110,105,109,97,116,101,44,32,115,110,97,112,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,79,112,116,105,111,110,115,40,111,112,116,105,111,110,115,84,111,85,112,100,97,116,101,44,32,102,105,114,101,83,101,116,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,112,101,99,116,114,117,109,32,105,115,32,99,114,101,97,116,101,100,32,117,115,105,110,103,32,116,104,101,32,114,97,110,103,101,44,32,115,110,97,112,44,32,100,105,114,101,99,116,105,111,110,32,97,110,100,32,115,116,101,112,32,111,112,116,105,111,110,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,39,115,110,97,112,39,32,97,110,100,32,39,115,116,101,112,39,32,99,97,110,32,98,101,32,117,112,100,97,116,101,100,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,39,115,110,97,112,39,32,97,110,100,32,39,115,116,101,112,39,32,97,114,101,32,110,111,116,32,112,97,115,115,101,100,44,32,116,104,101,121,32,115,104,111,117,108,100,32,114,101,109,97,105,110,32,117,110,99,104,97,110,103,101,100,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,118,32,61,32,118,97,108,117,101,71,101,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,117,112,100,97,116,101,65,98,108,101,32,61,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,109,97,114,103,105,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,108,105,109,105,116,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,112,97,100,100,105,110,103,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,114,97,110,103,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,97,110,105,109,97,116,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,110,97,112,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,116,101,112,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,102,111,114,109,97,116,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,112,105,112,115,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,116,111,111,108,116,105,112,115,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,79,110,108,121,32,99,104,97,110,103,101,32,111,112,116,105,111,110,115,32,116,104,97,116,32,119,101,39,114,101,32,97,99,116,117,97,108,108,121,32,112,97,115,115,101,100,32,116,111,32,117,112,100,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,112,100,97,116,101,65,98,108,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,104,101,99,107,32,102,111,114,32,117,110,100,101,102,105,110,101,100,46,32,110,117,108,108,32,114,101,109,111,118,101,115,32,116,104,101,32,118,97,108,117,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,84,111,85,112,100,97,116,101,91,110,97,109,101,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,114,105,103,105,110,97,108,79,112,116,105,111,110,115,91,110,97,109,101,93,32,61,32,111,112,116,105,111,110,115,84,111,85,112,100,97,116,101,91,110,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,79,112,116,105,111,110,115,32,61,32,116,101,115,116,79,112,116,105,111,110,115,40,111,114,105,103,105,110,97,108,79,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,76,111,97,100,32,110,101,119,32,111,112,116,105,111,110,115,32,105,110,116,111,32,116,104,101,32,115,108,105,100,101,114,32,115,116,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,112,100,97,116,101,65,98,108,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,84,111,85,112,100,97,116,101,91,110,97,109,101,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,91,110,97,109,101,93,32,61,32,110,101,119,79,112,116,105,111,110,115,91,110,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,83,112,101,99,116,114,117,109,32,61,32,110,101,119,79,112,116,105,111,110,115,46,115,112,101,99,116,114,117,109,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,76,105,109,105,116,44,32,109,97,114,103,105,110,32,97,110,100,32,112,97,100,100,105,110,103,32,100,101,112,101,110,100,32,111,110,32,116,104,101,32,115,112,101,99,116,114,117,109,32,98,117,116,32,97,114,101,32,115,116,111,114,101,100,32,111,117,116,115,105,100,101,32,111,102,32,105,116,46,32,40,35,54,55,55,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,109,97,114,103,105,110,32,61,32,110,101,119,79,112,116,105,111,110,115,46,109,97,114,103,105,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,108,105,109,105,116,32,61,32,110,101,119,79,112,116,105,111,110,115,46,108,105,109,105,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,112,97,100,100,105,110,103,32,61,32,110,101,119,79,112,116,105,111,110,115,46,112,97,100,100,105,110,103,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,112,100,97,116,101,32,112,105,112,115,44,32,114,101,109,111,118,101,115,32,101,120,105,115,116,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,112,105,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,105,112,115,40,111,112,116,105,111,110,115,46,112,105,112,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,80,105,112,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,112,100,97,116,101,32,116,111,111,108,116,105,112,115,44,32,114,101,109,111,118,101,115,32,101,120,105,115,116,105,110,103,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,116,111,111,108,116,105,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,84,111,111,108,116,105,112,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,110,118,97,108,105,100,97,116,101,32,116,104,101,32,99,117,114,114,101,110,116,32,112,111,115,105,116,105,111,110,105,110,103,32,115,111,32,118,97,108,117,101,83,101,116,32,102,111,114,99,101,115,32,97,110,32,117,112,100,97,116,101,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,83,101,116,40,105,115,83,101,116,40,111,112,116,105,111,110,115,84,111,85,112,100,97,116,101,46,115,116,97,114,116,41,32,63,32,111,112,116,105,111,110,115,84,111,85,112,100,97,116,101,46,115,116,97,114,116,32,58,32,118,44,32,102,105,114,101,83,101,116,69,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,105,116,105,97,108,105,122,97,116,105,111,110,32,115,116,101,112,115,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,115,101,116,117,112,83,108,105,100,101,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,67,114,101,97,116,101,32,116,104,101,32,98,97,115,101,32,101,108,101,109,101,110,116,44,32,105,110,105,116,105,97,108,105,122,101,32,72,84,77,76,32,97,110,100,32,115,101,116,32,99,108,97,115,115,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,104,97,110,100,108,101,115,32,97,110,100,32,99,111,110,110,101,99,116,32,101,108,101,109,101,110,116,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,95,66,97,115,101,32,61,32,97,100,100,83,108,105,100,101,114,40,115,99,111,112,101,95,84,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,69,108,101,109,101,110,116,115,40,111,112,116,105,111,110,115,46,99,111,110,110,101,99,116,44,32,115,99,111,112,101,95,66,97,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,65,116,116,97,99,104,32,117,115,101,114,32,101,118,101,110,116,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,105,110,100,83,108,105,100,101,114,69,118,101,110,116,115,40,111,112,116,105,111,110,115,46,101,118,101,110,116,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,115,101,32,116,104,101,32,112,117,98,108,105,99,32,118,97,108,117,101,32,109,101,116,104,111,100,32,116,111,32,115,101,116,32,116,104,101,32,115,116,97,114,116,32,118,97,108,117,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,83,101,116,40,111,112,116,105,111,110,115,46,115,116,97,114,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,112,105,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,105,112,115,40,111,112,116,105,111,110,115,46,112,105,112,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,116,111,111,108,116,105,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,114,105,97,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,115,101,116,117,112,83,108,105,100,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,99,111,112,101,95,83,101,108,102,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,101,115,116,114,111,121,58,32,100,101,115,116,114,111,121,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,101,112,115,58,32,103,101,116,78,101,120,116,83,116,101,112,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,98,105,110,100,69,118,101,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,102,102,58,32,114,101,109,111,118,101,69,118,101,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,103,101,116,58,32,118,97,108,117,101,71,101,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,58,32,118,97,108,117,101,83,101,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,72,97,110,100,108,101,58,32,118,97,108,117,101,83,101,116,72,97,110,100,108,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,101,116,58,32,118,97,108,117,101,82,101,115,101,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,69,120,112,111,115,101,100,32,102,111,114,32,117,110,105,116,32,116,101,115,116,105,110,103,44,32,100,111,110,39,116,32,117,115,101,32,116,104,105,115,32,105,110,32,121,111,117,114,32,97,112,112,108,105,99,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,95,109,111,118,101,72,97,110,100,108,101,115,58,32,102,117,110,99,116,105,111,110,32,40,117,112,119,97,114,100,44,32,112,114,111,112,111,115,97,108,44,32,104,97,110,100,108,101,78,117,109,98,101,114,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,118,101,72,97,110,100,108,101,115,40,117,112,119,97,114,100,44,32,112,114,111,112,111,115,97,108,44,32,115,99,111,112,101,95,76,111,99,97,116,105,111,110,115,44,32,104,97,110,100,108,101,78,117,109,98,101,114,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,58,32,111,114,105,103,105,110,97,108,79,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,112,100,97,116,101,79,112,116,105,111,110,115,58,32,117,112,100,97,116,101,79,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,115,99,111,112,101,95,84,97,114,103,101,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,80,105,112,115,58,32,114,101,109,111,118,101,80,105,112,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,84,111,111,108,116,105,112,115,58,32,114,101,109,111,118,101,84,111,111,108,116,105,112,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,103,101,116,84,111,111,108,116,105,112,115,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,111,112,101,95,84,111,111,108,116,105,112,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,103,101,116,79,114,105,103,105,110,115,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,111,112,101,95,72,97,110,100,108,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,105,112,115,58,32,112,105,112,115,32,47,47,32,73,115,115,117,101,32,35,53,57,52,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,111,112,101,95,83,101,108,102,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,82,117,110,32,116,104,101,32,115,116,97,110,100,97,114,100,32,105,110,105,116,105,97,108,105,122,101,114,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,105,97,108,105,122,101,40,116,97,114,103,101,116,44,32,111,114,105,103,105,110,97,108,79,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,97,114,103,101,116,32,124,124,32,33,116,97,114,103,101,116,46,110,111,100,101,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,99,114,101,97,116,101,32,114,101,113,117,105,114,101,115,32,97,32,115,105,110,103,108,101,32,101,108,101,109,101,110,116,44,32,103,111,116,58,32,92,34,32,43,32,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,84,104,114,111,119,32,97,110,32,101,114,114,111,114,32,105,102,32,116,104,101,32,115,108,105,100,101,114,32,119,97,115,32,97,108,114,101,97,100,121,32,105,110,105,116,105,97,108,105,122,101,100,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,97,114,103,101,116,46,110,111,85,105,83,108,105,100,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,110,111,85,105,83,108,105,100,101,114,58,32,83,108,105,100,101,114,32,119,97,115,32,97,108,114,101,97,100,121,32,105,110,105,116,105,97,108,105,122,101,100,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,84,101,115,116,32,116,104,101,32,111,112,116,105,111,110,115,32,97,110,100,32,99,114,101,97,116,101,32,116,104,101,32,115,108,105,100,101,114,32,101,110,118,105,114,111,110,109,101,110,116,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,116,101,115,116,79,112,116,105,111,110,115,40,111,114,105,103,105,110,97,108,79,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,112,105,32,61,32,115,99,111,112,101,40,116,97,114,103,101,116,44,32,111,112,116,105,111,110,115,44,32,111,114,105,103,105,110,97,108,79,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,46,110,111,85,105,83,108,105,100,101,114,32,61,32,97,112,105,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,112,105,59,92,110,32,32,32,32,125,92,110,32,32,32,32,118,97,114,32,110,111,117,105,115,108,105,100,101,114,32,61,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,69,120,112,111,115,101,100,32,102,111,114,32,117,110,105,116,32,116,101,115,116,105,110,103,44,32,100,111,110,39,116,32,117,115,101,32,116,104,105,115,32,105,110,32,121,111,117,114,32,97,112,112,108,105,99,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,95,95,115,112,101,99,116,114,117,109,58,32,83,112,101,99,116,114,117,109,44,92,110,32,32,32,32,32,32,32,32,47,47,32,65,32,114,101,102,101,114,101,110,99,101,32,116,111,32,116,104,101,32,100,101,102,97,117,108,116,32,99,108,97,115,115,101,115,44,32,97,108,108,111,119,115,32,103,108,111,98,97,108,32,99,104,97,110,103,101,115,46,92,110,32,32,32,32,32,32,32,32,47,47,32,85,115,101,32,116,104,101,32,99,115,115,67,108,97,115,115,101,115,32,111,112,116,105,111,110,32,102,111,114,32,99,104,97,110,103,101,115,32,116,111,32,111,110,101,32,115,108,105,100,101,114,46,92,110,32,32,32,32,32,32,32,32,99,115,115,67,108,97,115,115,101,115,58,32,99,115,115,67,108,97,115,115,101,115,44,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,58,32,105,110,105,116,105,97,108,105,122,101,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,101,120,112,111,114,116,115,46,99,114,101,97,116,101,32,61,32,105,110,105,116,105,97,108,105,122,101,59,92,110,32,32,32,32,101,120,112,111,114,116,115,46,99,115,115,67,108,97,115,115,101,115,32,61,32,99,115,115,67,108,97,115,115,101,115,59,92,110,32,32,32,32,101,120,112,111,114,116,115,46,100,101,102,97,117,108,116,32,61,32,110,111,117,105,115,108,105,100,101,114,59,92,110,92,110,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,120,112,111,114,116,115,44,32,39,95,95,101,115,77,111,100,117,108,101,39,44,32,123,32,118,97,108,117,101,58,32,116,114,117,101,32,125,41,59,92,110,92,110,125,41,41,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,112,112,101,114,46,106,115,47,100,105,115,116,47,101,115,109,47,112,111,112,112,101,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,112,112,101,114,46,106,115,47,100,105,115,116,47,101,115,109,47,112,111,112,112,101,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,42,33,92,110,32,42,32,64,102,105,108,101,79,118,101,114,118,105,101,119,32,75,105,99,107,97,115,115,32,108,105,98,114,97,114,121,32,116,111,32,99,114,101,97,116,101,32,97,110,100,32,112,108,97,99,101,32,112,111,112,112,101,114,115,32,110,101,97,114,32,116,104,101,105,114,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,115,46,92,110,32,42,32,64,118,101,114,115,105,111,110,32,49,46,49,54,46,49,92,110,32,42,32,64,108,105,99,101,110,115,101,92,110,32,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,54,32,70,101,100,101,114,105,99,111,32,90,105,118,111,108,111,32,97,110,100,32,99,111,110,116,114,105,98,117,116,111,114,115,92,110,32,42,92,110,32,42,32,80,101,114,109,105,115,115,105,111,110,32,105,115,32,104,101,114,101,98,121,32,103,114,97,110,116,101,100,44,32,102,114,101,101,32,111,102,32,99,104,97,114,103,101,44,32,116,111,32,97,110,121,32,112,101,114,115,111,110,32,111,98,116,97,105,110,105,110,103,32,97,32,99,111,112,121,92,110,32,42,32,111,102,32,116,104,105,115,32,115,111,102,116,119,97,114,101,32,97,110,100,32,97,115,115,111,99,105,97,116,101,100,32,100,111,99,117,109,101,110,116,97,116,105,111,110,32,102,105,108,101,115,32,40,116,104,101,32,92,34,83,111,102,116,119,97,114,101,92,34,41,44,32,116,111,32,100,101,97,108,92,110,32,42,32,105,110,32,116,104,101,32,83,111,102,116,119,97,114,101,32,119,105,116,104,111,117,116,32,114,101,115,116,114,105,99,116,105,111,110,44,32,105,110,99,108,117,100,105,110,103,32,119,105,116,104,111,117,116,32,108,105,109,105,116,97,116,105,111,110,32,116,104,101,32,114,105,103,104,116,115,92,110,32,42,32,116,111,32,117,115,101,44,32,99,111,112,121,44,32,109,111,100,105,102,121,44,32,109,101,114,103,101,44,32,112,117,98,108,105,115,104,44,32,100,105,115,116,114,105,98,117,116,101,44,32,115,117,98,108,105,99,101,110,115,101,44,32,97,110,100,47,111,114,32,115,101,108,108,92,110,32,42,32,99,111,112,105,101,115,32,111,102,32,116,104,101,32,83,111,102,116,119,97,114,101,44,32,97,110,100,32,116,111,32,112,101,114,109,105,116,32,112,101,114,115,111,110,115,32,116,111,32,119,104,111,109,32,116,104,101,32,83,111,102,116,119,97,114,101,32,105,115,92,110,32,42,32,102,117,114,110,105,115,104,101,100,32,116,111,32,100,111,32,115,111,44,32,115,117,98,106,101,99,116,32,116,111,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,99,111,110,100,105,116,105,111,110,115,58,92,110,32,42,92,110,32,42,32,84,104,101,32,97,98,111,118,101,32,99,111,112,121,114,105,103,104,116,32,110,111,116,105,99,101,32,97,110,100,32,116,104,105,115,32,112,101,114,109,105,115,115,105,111,110,32,110,111,116,105,99,101,32,115,104,97,108,108,32,98,101,32,105,110,99,108,117,100,101,100,32,105,110,32,97,108,108,92,110,32,42,32,99,111,112,105,101,115,32,111,114,32,115,117,98,115,116,97,110,116,105,97,108,32,112,111,114,116,105,111,110,115,32,111,102,32,116,104,101,32,83,111,102,116,119,97,114,101,46,92,110,32,42,92,110,32,42,32,84,72,69,32,83,79,70,84,87,65,82,69,32,73,83,32,80,82,79,86,73,68,69,68,32,92,34,65,83,32,73,83,92,34,44,32,87,73,84,72,79,85,84,32,87,65,82,82,65,78,84,89,32,79,70,32,65,78,89,32,75,73,78,68,44,32,69,88,80,82,69,83,83,32,79,82,92,110,32,42,32,73,77,80,76,73,69,68,44,32,73,78,67,76,85,68,73,78,71,32,66,85,84,32,78,79,84,32,76,73,77,73,84,69,68,32,84,79,32,84,72,69,32,87,65,82,82,65,78,84,73,69,83,32,79,70,32,77,69,82,67,72,65,78,84,65,66,73,76,73,84,89,44,92,110,32,42,32,70,73,84,78,69,83,83,32,70,79,82,32,65,32,80,65,82,84,73,67,85,76,65,82,32,80,85,82,80,79,83,69,32,65,78,68,32,78,79,78,73,78,70,82,73,78,71,69,77,69,78,84,46,32,73,78,32,78,79,32,69,86,69,78,84,32,83,72,65,76,76,32,84,72,69,92,110,32,42,32,65,85,84,72,79,82,83,32,79,82,32,67,79,80,89,82,73,71,72,84,32,72,79,76,68,69,82,83,32,66,69,32,76,73,65,66,76,69,32,70,79,82,32,65,78,89,32,67,76,65,73,77,44,32,68,65,77,65,71,69,83,32,79,82,32,79,84,72,69,82,92,110,32,42,32,76,73,65,66,73,76,73,84,89,44,32,87,72,69,84,72,69,82,32,73,78,32,65,78,32,65,67,84,73,79,78,32,79,70,32,67,79,78,84,82,65,67,84,44,32,84,79,82,84,32,79,82,32,79,84,72,69,82,87,73,83,69,44,32,65,82,73,83,73,78,71,32,70,82,79,77,44,92,110,32,42,32,79,85,84,32,79,70,32,79,82,32,73,78,32,67,79,78,78,69,67,84,73,79,78,32,87,73,84,72,32,84,72,69,32,83,79,70,84,87,65,82,69,32,79,82,32,84,72,69,32,85,83,69,32,79,82,32,79,84,72,69,82,32,68,69,65,76,73,78,71,83,32,73,78,32,84,72,69,92,110,32,42,32,83,79,70,84,87,65,82,69,46,92,110,32,42,47,92,110,118,97,114,32,105,115,66,114,111,119,115,101,114,32,61,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,116,121,112,101,111,102,32,110,97,118,105,103,97,116,111,114,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,59,92,110,92,110,118,97,114,32,116,105,109,101,111,117,116,68,117,114,97,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,108,111,110,103,101,114,84,105,109,101,111,117,116,66,114,111,119,115,101,114,115,32,61,32,91,39,69,100,103,101,39,44,32,39,84,114,105,100,101,110,116,39,44,32,39,70,105,114,101,102,111,120,39,93,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,111,110,103,101,114,84,105,109,101,111,117,116,66,114,111,119,115,101,114,115,46,108,101,110,103,116,104,59,32,105,32,43,61,32,49,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,66,114,111,119,115,101,114,32,38,38,32,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,108,111,110,103,101,114,84,105,109,101,111,117,116,66,114,111,119,115,101,114,115,91,105,93,41,32,62,61,32,48,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,49,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,48,59,92,110,125,40,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,109,105,99,114,111,116,97,115,107,68,101,98,111,117,110,99,101,40,102,110,41,32,123,92,110,32,32,118,97,114,32,99,97,108,108,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,99,97,108,108,101,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,32,32,32,32,99,97,108,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,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,32,40,41,32,123,92,110,32,32,32,32,32,32,99,97,108,108,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,102,110,40,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,97,115,107,68,101,98,111,117,110,99,101,40,102,110,41,32,123,92,110,32,32,118,97,114,32,115,99,104,101,100,117,108,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,115,99,104,101,100,117,108,101,100,41,32,123,92,110,32,32,32,32,32,32,115,99,104,101,100,117,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,115,99,104,101,100,117,108,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,102,110,40,41,59,92,110,32,32,32,32,32,32,125,44,32,116,105,109,101,111,117,116,68,117,114,97,116,105,111,110,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,118,97,114,32,115,117,112,112,111,114,116,115,77,105,99,114,111,84,97,115,107,115,32,61,32,105,115,66,114,111,119,115,101,114,32,38,38,32,119,105,110,100,111,119,46,80,114,111,109,105,115,101,59,92,110,92,110,47,42,42,92,110,42,32,67,114,101,97,116,101,32,97,32,100,101,98,111,117,110,99,101,100,32,118,101,114,115,105,111,110,32,111,102,32,97,32,109,101,116,104,111,100,44,32,116,104,97,116,39,115,32,97,115,121,110,99,104,114,111,110,111,117,115,108,121,32,100,101,102,101,114,114,101,100,92,110,42,32,98,117,116,32,99,97,108,108,101,100,32,105,110,32,116,104,101,32,109,105,110,105,109,117,109,32,116,105,109,101,32,112,111,115,115,105,98,108,101,46,92,110,42,92,110,42,32,64,109,101,116,104,111,100,92,110,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,42,32,64,97,114,103,117,109,101,110,116,32,123,70,117,110,99,116,105,111,110,125,32,102,110,92,110,42,32,64,114,101,116,117,114,110,115,32,123,70,117,110,99,116,105,111,110,125,92,110,42,47,92,110,118,97,114,32,100,101,98,111,117,110,99,101,32,61,32,115,117,112,112,111,114,116,115,77,105,99,114,111,84,97,115,107,115,32,63,32,109,105,99,114,111,116,97,115,107,68,101,98,111,117,110,99,101,32,58,32,116,97,115,107,68,101,98,111,117,110,99,101,59,92,110,92,110,47,42,42,92,110,32,42,32,67,104,101,99,107,32,105,102,32,116,104,101,32,103,105,118,101,110,32,118,97,114,105,97,98,108,101,32,105,115,32,97,32,102,117,110,99,116,105,111,110,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,65,110,121,125,32,102,117,110,99,116,105,111,110,84,111,67,104,101,99,107,32,45,32,118,97,114,105,97,98,108,101,32,116,111,32,99,104,101,99,107,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,66,111,111,108,101,97,110,125,32,97,110,115,119,101,114,32,116,111,58,32,105,115,32,97,32,102,117,110,99,116,105,111,110,63,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,70,117,110,99,116,105,111,110,40,102,117,110,99,116,105,111,110,84,111,67,104,101,99,107,41,32,123,92,110,32,32,118,97,114,32,103,101,116,84,121,112,101,32,61,32,123,125,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,84,111,67,104,101,99,107,32,38,38,32,103,101,116,84,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,102,117,110,99,116,105,111,110,84,111,67,104,101,99,107,41,32,61,61,61,32,39,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,39,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,32,67,83,83,32,99,111,109,112,117,116,101,100,32,112,114,111,112,101,114,116,121,32,111,102,32,116,104,101,32,103,105,118,101,110,32,101,108,101,109,101,110,116,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,69,101,109,101,110,116,125,32,101,108,101,109,101,110,116,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,83,116,114,105,110,103,125,32,112,114,111,112,101,114,116,121,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,83,116,121,108,101,67,111,109,112,117,116,101,100,80,114,111,112,101,114,116,121,40,101,108,101,109,101,110,116,44,32,112,114,111,112,101,114,116,121,41,32,123,92,110,32,32,105,102,32,40,101,108,101,109,101,110,116,46,110,111,100,101,84,121,112,101,32,33,61,61,32,49,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,125,92,110,32,32,47,47,32,78,79,84,69,58,32,49,32,68,79,77,32,97,99,99,101,115,115,32,104,101,114,101,92,110,32,32,118,97,114,32,119,105,110,100,111,119,32,61,32,101,108,101,109,101,110,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,59,92,110,32,32,118,97,114,32,99,115,115,32,61,32,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,108,101,109,101,110,116,44,32,110,117,108,108,41,59,92,110,32,32,114,101,116,117,114,110,32,112,114,111,112,101,114,116,121,32,63,32,99,115,115,91,112,114,111,112,101,114,116,121,93,32,58,32,99,115,115,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,101,116,117,114,110,115,32,116,104,101,32,112,97,114,101,110,116,78,111,100,101,32,111,114,32,116,104,101,32,104,111,115,116,32,111,102,32,116,104,101,32,101,108,101,109,101,110,116,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,69,108,101,109,101,110,116,125,32,112,97,114,101,110,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,80,97,114,101,110,116,78,111,100,101,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,105,102,32,40,101,108,101,109,101,110,116,46,110,111,100,101,78,97,109,101,32,61,61,61,32,39,72,84,77,76,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,108,101,109,101,110,116,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,32,124,124,32,101,108,101,109,101,110,116,46,104,111,115,116,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,101,116,117,114,110,115,32,116,104,101,32,115,99,114,111,108,108,105,110,103,32,112,97,114,101,110,116,32,111,102,32,116,104,101,32,103,105,118,101,110,32,101,108,101,109,101,110,116,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,69,108,101,109,101,110,116,125,32,115,99,114,111,108,108,32,112,97,114,101,110,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,83,99,114,111,108,108,80,97,114,101,110,116,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,47,47,32,82,101,116,117,114,110,32,98,111,100,121,44,32,96,103,101,116,83,99,114,111,108,108,96,32,119,105,108,108,32,116,97,107,101,32,99,97,114,101,32,116,111,32,103,101,116,32,116,104,101,32,99,111,114,114,101,99,116,32,96,115,99,114,111,108,108,84,111,112,96,32,102,114,111,109,32,105,116,92,110,32,32,105,102,32,40,33,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,98,111,100,121,59,92,110,32,32,125,92,110,92,110,32,32,115,119,105,116,99,104,32,40,101,108,101,109,101,110,116,46,110,111,100,101,78,97,109,101,41,32,123,92,110,32,32,32,32,99,97,115,101,32,39,72,84,77,76,39,58,92,110,32,32,32,32,99,97,115,101,32,39,66,79,68,89,39,58,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,101,108,101,109,101,110,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,98,111,100,121,59,92,110,32,32,32,32,99,97,115,101,32,39,35,100,111,99,117,109,101,110,116,39,58,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,101,108,101,109,101,110,116,46,98,111,100,121,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,70,105,114,101,102,111,120,32,119,97,110,116,32,117,115,32,116,111,32,99,104,101,99,107,32,96,45,120,96,32,97,110,100,32,96,45,121,96,32,118,97,114,105,97,116,105,111,110,115,32,97,115,32,119,101,108,108,92,110,92,110,32,32,118,97,114,32,95,103,101,116,83,116,121,108,101,67,111,109,112,117,116,101,100,80,114,111,112,32,61,32,103,101,116,83,116,121,108,101,67,111,109,112,117,116,101,100,80,114,111,112,101,114,116,121,40,101,108,101,109,101,110,116,41,44,92,110,32,32,32,32,32,32,111,118,101,114,102,108,111,119,32,61,32,95,103,101,116,83,116,121,108,101,67,111,109,112,117,116,101,100,80,114,111,112,46,111,118,101,114,102,108,111,119,44,92,110,32,32,32,32,32,32,111,118,101,114,102,108,111,119,88,32,61,32,95,103,101,116,83,116,121,108,101,67,111,109,112,117,116,101,100,80,114,111,112,46,111,118,101,114,102,108,111,119,88,44,92,110,32,32,32,32,32,32,111,118,101,114,102,108,111,119,89,32,61,32,95,103,101,116,83,116,121,108,101,67,111,109,112,117,116,101,100,80,114,111,112,46,111,118,101,114,102,108,111,119,89,59,92,110,92,110,32,32,105,102,32,40,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,111,118,101,114,102,108,111,119,32,43,32,111,118,101,114,102,108,111,119,89,32,43,32,111,118,101,114,102,108,111,119,88,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,108,101,109,101,110,116,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,103,101,116,83,99,114,111,108,108,80,97,114,101,110,116,40,103,101,116,80,97,114,101,110,116,78,111,100,101,40,101,108,101,109,101,110,116,41,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,101,116,117,114,110,115,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,110,111,100,101,32,111,102,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,111,98,106,101,99,116,44,32,111,114,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,111,98,106,101,99,116,32,105,116,115,101,108,102,46,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,112,97,114,97,109,32,123,69,108,101,109,101,110,116,124,79,98,106,101,99,116,125,32,114,101,102,101,114,101,110,99,101,32,45,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,32,40,116,104,101,32,112,111,112,112,101,114,32,119,105,108,108,32,98,101,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,105,115,41,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,69,108,101,109,101,110,116,125,32,112,97,114,101,110,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,82,101,102,101,114,101,110,99,101,78,111,100,101,40,114,101,102,101,114,101,110,99,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,114,101,102,101,114,101,110,99,101,32,38,38,32,114,101,102,101,114,101,110,99,101,46,114,101,102,101,114,101,110,99,101,78,111,100,101,32,63,32,114,101,102,101,114,101,110,99,101,46,114,101,102,101,114,101,110,99,101,78,111,100,101,32,58,32,114,101,102,101,114,101,110,99,101,59,92,110,125,92,110,92,110,118,97,114,32,105,115,73,69,49,49,32,61,32,105,115,66,114,111,119,115,101,114,32,38,38,32,33,33,40,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,32,38,38,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,77,111,100,101,41,59,92,110,118,97,114,32,105,115,73,69,49,48,32,61,32,105,115,66,114,111,119,115,101,114,32,38,38,32,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,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,115,32,105,102,32,116,104,101,32,98,114,111,119,115,101,114,32,105,115,32,73,110,116,101,114,110,101,116,32,69,120,112,108,111,114,101,114,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,112,97,114,97,109,32,123,78,117,109,98,101,114,125,32,118,101,114,115,105,111,110,32,116,111,32,99,104,101,99,107,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,66,111,111,108,101,97,110,125,32,105,115,73,69,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,73,69,40,118,101,114,115,105,111,110,41,32,123,92,110,32,32,105,102,32,40,118,101,114,115,105,111,110,32,61,61,61,32,49,49,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,73,69,49,49,59,92,110,32,32,125,92,110,32,32,105,102,32,40,118,101,114,115,105,111,110,32,61,61,61,32,49,48,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,73,69,49,48,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,105,115,73,69,49,49,32,124,124,32,105,115,73,69,49,48,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,101,116,117,114,110,115,32,116,104,101,32,111,102,102,115,101,116,32,112,97,114,101,110,116,32,111,102,32,116,104,101,32,103,105,118,101,110,32,101,108,101,109,101,110,116,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,69,108,101,109,101,110,116,125,32,111,102,102,115,101,116,32,112,97,114,101,110,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,79,102,102,115,101,116,80,97,114,101,110,116,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,105,102,32,40,33,101,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,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,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,110,111,79,102,102,115,101,116,80,97,114,101,110,116,32,61,32,105,115,73,69,40,49,48,41,32,63,32,100,111,99,117,109,101,110,116,46,98,111,100,121,32,58,32,110,117,108,108,59,92,110,92,110,32,32,47,47,32,78,79,84,69,58,32,49,32,68,79,77,32,97,99,99,101,115,115,32,104,101,114,101,92,110,32,32,118,97,114,32,111,102,102,115,101,116,80,97,114,101,110,116,32,61,32,101,108,101,109,101,110,116,46,111,102,102,115,101,116,80,97,114,101,110,116,32,124,124,32,110,117,108,108,59,92,110,32,32,47,47,32,83,107,105,112,32,104,105,100,100,101,110,32,101,108,101,109,101,110,116,115,32,119,104,105,99,104,32,100,111,110,39,116,32,104,97,118,101,32,97,110,32,111,102,102,115,101,116,80,97,114,101,110,116,92,110,32,32,119,104,105,108,101,32,40,111,102,102,115,101,116,80,97,114,101,110,116,32,61,61,61,32,110,111,79,102,102,115,101,116,80,97,114,101,110,116,32,38,38,32,101,108,101,109,101,110,116,46,110,101,120,116,69,108,101,109,101,110,116,83,105,98,108,105,110,103,41,32,123,92,110,32,32,32,32,111,102,102,115,101,116,80,97,114,101,110,116,32,61,32,40,101,108,101,109,101,110,116,32,61,32,101,108,101,109,101,110,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,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,110,111,100,101,78,97,109,101,32,61,32,111,102,102,115,101,116,80,97,114,101,110,116,32,38,38,32,111,102,102,115,101,116,80,97,114,101,110,116,46,110,111,100,101,78,97,109,101,59,92,110,92,110,32,32,105,102,32,40,33,110,111,100,101,78,97,109,101,32,124,124,32,110,111,100,101,78,97,109,101,32,61,61,61,32,39,66,79,68,89,39,32,124,124,32,110,111,100,101,78,97,109,101,32,61,61,61,32,39,72,84,77,76,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,108,101,109,101,110,116,32,63,32,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,32,58,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,92,110,32,32,125,92,110,92,110,32,32,47,47,32,46,111,102,102,115,101,116,80,97,114,101,110,116,32,119,105,108,108,32,114,101,116,117,114,110,32,116,104,101,32,99,108,111,115,101,115,116,32,84,72,44,32,84,68,32,111,114,32,84,65,66,76,69,32,105,110,32,99,97,115,101,92,110,32,32,47,47,32,110,111,32,111,102,102,115,101,116,80,97,114,101,110,116,32,105,115,32,112,114,101,115,101,110,116,44,32,73,32,104,97,116,101,32,116,104,105,115,32,106,111,98,46,46,46,92,110,32,32,105,102,32,40,91,39,84,72,39,44,32,39,84,68,39,44,32,39,84,65,66,76,69,39,93,46,105,110,100,101,120,79,102,40,111,102,102,115,101,116,80,97,114,101,110,116,46,110,111,100,101,78,97,109,101,41,32,33,61,61,32,45,49,32,38,38,32,103,101,116,83,116,121,108,101,67,111,109,112,117,116,101,100,80,114,111,112,101,114,116,121,40,111,102,102,115,101,116,80,97,114,101,110,116,44,32,39,112,111,115,105,116,105,111,110,39,41,32,61,61,61,32,39,115,116,97,116,105,99,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,103,101,116,79,102,102,115,101,116,80,97,114,101,110,116,40,111,102,102,115,101,116,80,97,114,101,110,116,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,111,102,102,115,101,116,80,97,114,101,110,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,79,102,102,115,101,116,67,111,110,116,97,105,110,101,114,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,78,97,109,101,32,61,32,101,108,101,109,101,110,116,46,110,111,100,101,78,97,109,101,59,92,110,92,110,32,32,105,102,32,40,110,111,100,101,78,97,109,101,32,61,61,61,32,39,66,79,68,89,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,78,97,109,101,32,61,61,61,32,39,72,84,77,76,39,32,124,124,32,103,101,116,79,102,102,115,101,116,80,97,114,101,110,116,40,101,108,101,109,101,110,116,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,41,32,61,61,61,32,101,108,101,109,101,110,116,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,70,105,110,100,115,32,116,104,101,32,114,111,111,116,32,110,111,100,101,32,40,100,111,99,117,109,101,110,116,44,32,115,104,97,100,111,119,68,79,77,32,114,111,111,116,41,32,111,102,32,116,104,101,32,103,105,118,101,110,32,101,108,101,109,101,110,116,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,69,108,101,109,101,110,116,125,32,110,111,100,101,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,69,108,101,109,101,110,116,125,32,114,111,111,116,32,110,111,100,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,82,111,111,116,40,110,111,100,101,41,32,123,92,110,32,32,105,102,32,40,110,111,100,101,46,112,97,114,101,110,116,78,111,100,101,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,103,101,116,82,111,111,116,40,110,111,100,101,46,112,97,114,101,110,116,78,111,100,101,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,70,105,110,100,115,32,116,104,101,32,111,102,102,115,101,116,32,112,97,114,101,110,116,32,99,111,109,109,111,110,32,116,111,32,116,104,101,32,116,119,111,32,112,114,111,118,105,100,101,100,32,110,111,100,101,115,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,49,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,50,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,69,108,101,109,101,110,116,125,32,99,111,109,109,111,110,32,111,102,102,115,101,116,32,112,97,114,101,110,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,102,105,110,100,67,111,109,109,111,110,79,102,102,115,101,116,80,97,114,101,110,116,40,101,108,101,109,101,110,116,49,44,32,101,108,101,109,101,110,116,50,41,32,123,92,110,32,32,47,47,32,84,104,105,115,32,99,104,101,99,107,32,105,115,32,110,101,101,100,101,100,32,116,111,32,97,118,111,105,100,32,101,114,114,111,114,115,32,105,110,32,99,97,115,101,32,111,110,101,32,111,102,32,116,104,101,32,101,108,101,109,101,110,116,115,32,105,115,110,39,116,32,100,101,102,105,110,101,100,32,102,111,114,32,97,110,121,32,114,101,97,115,111,110,92,110,32,32,105,102,32,40,33,101,108,101,109,101,110,116,49,32,124,124,32,33,101,108,101,109,101,110,116,49,46,110,111,100,101,84,121,112,101,32,124,124,32,33,101,108,101,109,101,110,116,50,32,124,124,32,33,101,108,101,109,101,110,116,50,46,110,111,100,101,84,121,112,101,41,32,123,92,110,32,32,32,32,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,92,110,32,32,125,92,110,92,110,32,32,47,47,32,72,101,114,101,32,119,101,32,109,97,107,101,32,115,117,114,101,32,116,111,32,103,105,118,101,32,97,115,32,92,34,115,116,97,114,116,92,34,32,116,104,101,32,101,108,101,109,101,110,116,32,116,104,97,116,32,99,111,109,101,115,32,102,105,114,115,116,32,105,110,32,116,104,101,32,68,79,77,92,110,32,32,118,97,114,32,111,114,100,101,114,32,61,32,101,108,101,109,101,110,116,49,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,108,101,109,101,110,116,50,41,32,38,32,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,59,92,110,32,32,118,97,114,32,115,116,97,114,116,32,61,32,111,114,100,101,114,32,63,32,101,108,101,109,101,110,116,49,32,58,32,101,108,101,109,101,110,116,50,59,92,110,32,32,118,97,114,32,101,110,100,32,61,32,111,114,100,101,114,32,63,32,101,108,101,109,101,110,116,50,32,58,32,101,108,101,109,101,110,116,49,59,92,110,92,110,32,32,47,47,32,71,101,116,32,99,111,109,109,111,110,32,97,110,99,101,115,116,111,114,32,99,111,110,116,97,105,110,101,114,92,110,32,32,118,97,114,32,114,97,110,103,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,82,97,110,103,101,40,41,59,92,110,32,32,114,97,110,103,101,46,115,101,116,83,116,97,114,116,40,115,116,97,114,116,44,32,48,41,59,92,110,32,32,114,97,110,103,101,46,115,101,116,69,110,100,40,101,110,100,44,32,48,41,59,92,110,32,32,118,97,114,32,99,111,109,109,111,110,65,110,99,101,115,116,111,114,67,111,110,116,97,105,110,101,114,32,61,32,114,97,110,103,101,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,92,110,92,110,32,32,47,47,32,66,111,116,104,32,110,111,100,101,115,32,97,114,101,32,105,110,115,105,100,101,32,35,100,111,99,117,109,101,110,116,92,110,92,110,32,32,105,102,32,40,101,108,101,109,101,110,116,49,32,33,61,61,32,99,111,109,109,111,110,65,110,99,101,115,116,111,114,67,111,110,116,97,105,110,101,114,32,38,38,32,101,108,101,109,101,110,116,50,32,33,61,61,32,99,111,109,109,111,110,65,110,99,101,115,116,111,114,67,111,110,116,97,105,110,101,114,32,124,124,32,115,116,97,114,116,46,99,111,110,116,97,105,110,115,40,101,110,100,41,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,79,102,102,115,101,116,67,111,110,116,97,105,110,101,114,40,99,111,109,109,111,110,65,110,99,101,115,116,111,114,67,111,110,116,97,105,110,101,114,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,109,111,110,65,110,99,101,115,116,111,114,67,111,110,116,97,105,110,101,114,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,103,101,116,79,102,102,115,101,116,80,97,114,101,110,116,40,99,111,109,109,111,110,65,110,99,101,115,116,111,114,67,111,110,116,97,105,110,101,114,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,111,110,101,32,111,102,32,116,104,101,32,110,111,100,101,115,32,105,115,32,105,110,115,105,100,101,32,115,104,97,100,111,119,68,79,77,44,32,102,105,110,100,32,119,104,105,99,104,32,111,110,101,92,110,32,32,118,97,114,32,101,108,101,109,101,110,116,49,114,111,111,116,32,61,32,103,101,116,82,111,111,116,40,101,108,101,109,101,110,116,49,41,59,92,110,32,32,105,102,32,40,101,108,101,109,101,110,116,49,114,111,111,116,46,104,111,115,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,105,110,100,67,111,109,109,111,110,79,102,102,115,101,116,80,97,114,101,110,116,40,101,108,101,109,101,110,116,49,114,111,111,116,46,104,111,115,116,44,32,101,108,101,109,101,110,116,50,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,105,110,100,67,111,109,109,111,110,79,102,102,115,101,116,80,97,114,101,110,116,40,101,108,101,109,101,110,116,49,44,32,103,101,116,82,111,111,116,40,101,108,101,109,101,110,116,50,41,46,104,111,115,116,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,115,32,116,104,101,32,115,99,114,111,108,108,32,118,97,108,117,101,32,111,102,32,116,104,101,32,103,105,118,101,110,32,101,108,101,109,101,110,116,32,105,110,32,116,104,101,32,103,105,118,101,110,32,115,105,100,101,32,40,116,111,112,32,97,110,100,32,108,101,102,116,41,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,83,116,114,105,110,103,125,32,115,105,100,101,32,96,116,111,112,96,32,111,114,32,96,108,101,102,116,96,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,110,117,109,98,101,114,125,32,97,109,111,117,110,116,32,111,102,32,115,99,114,111,108,108,101,100,32,112,105,120,101,108,115,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,83,99,114,111,108,108,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,115,105,100,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,39,116,111,112,39,59,92,110,92,110,32,32,118,97,114,32,117,112,112,101,114,83,105,100,101,32,61,32,115,105,100,101,32,61,61,61,32,39,116,111,112,39,32,63,32,39,115,99,114,111,108,108,84,111,112,39,32,58,32,39,115,99,114,111,108,108,76,101,102,116,39,59,92,110,32,32,118,97,114,32,110,111,100,101,78,97,109,101,32,61,32,101,108,101,109,101,110,116,46,110,111,100,101,78,97,109,101,59,92,110,92,110,32,32,105,102,32,40,110,111,100,101,78,97,109,101,32,61,61,61,32,39,66,79,68,89,39,32,124,124,32,110,111,100,101,78,97,109,101,32,61,61,61,32,39,72,84,77,76,39,41,32,123,92,110,32,32,32,32,118,97,114,32,104,116,109,108,32,61,32,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,59,92,110,32,32,32,32,118,97,114,32,115,99,114,111,108,108,105,110,103,69,108,101,109,101,110,116,32,61,32,101,108,101,109,101,110,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,32,124,124,32,104,116,109,108,59,92,110,32,32,32,32,114,101,116,117,114,110,32,115,99,114,111,108,108,105,110,103,69,108,101,109,101,110,116,91,117,112,112,101,114,83,105,100,101,93,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,101,108,101,109,101,110,116,91,117,112,112,101,114,83,105,100,101,93,59,92,110,125,92,110,92,110,47,42,92,110,32,42,32,83,117,109,32,111,114,32,115,117,98,116,114,97,99,116,32,116,104,101,32,101,108,101,109,101,110,116,32,115,99,114,111,108,108,32,118,97,108,117,101,115,32,40,108,101,102,116,32,97,110,100,32,116,111,112,41,32,102,114,111,109,32,97,32,103,105,118,101,110,32,114,101,99,116,32,111,98,106,101,99,116,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,114,101,99,116,32,45,32,82,101,99,116,32,111,98,106,101,99,116,32,121,111,117,32,119,97,110,116,32,116,111,32,99,104,97,110,103,101,92,110,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,32,45,32,84,104,101,32,101,108,101,109,101,110,116,32,102,114,111,109,32,116,104,101,32,102,117,110,99,116,105,111,110,32,114,101,97,100,115,32,116,104,101,32,115,99,114,111,108,108,32,118,97,108,117,101,115,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,115,117,98,116,114,97,99,116,32,45,32,115,101,116,32,116,111,32,116,114,117,101,32,105,102,32,121,111,117,32,119,97,110,116,32,116,111,32,115,117,98,116,114,97,99,116,32,116,104,101,32,115,99,114,111,108,108,32,118,97,108,117,101,115,92,110,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,32,114,101,99,116,32,45,32,84,104,101,32,109,111,100,105,102,105,101,114,32,114,101,99,116,32,111,98,106,101,99,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,110,99,108,117,100,101,83,99,114,111,108,108,40,114,101,99,116,44,32,101,108,101,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,115,117,98,116,114,97,99,116,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,102,97,108,115,101,59,92,110,92,110,32,32,118,97,114,32,115,99,114,111,108,108,84,111,112,32,61,32,103,101,116,83,99,114,111,108,108,40,101,108,101,109,101,110,116,44,32,39,116,111,112,39,41,59,92,110,32,32,118,97,114,32,115,99,114,111,108,108,76,101,102,116,32,61,32,103,101,116,83,99,114,111,108,108,40,101,108,101,109,101,110,116,44,32,39,108,101,102,116,39,41,59,92,110,32,32,118,97,114,32,109,111,100,105,102,105,101,114,32,61,32,115,117,98,116,114,97,99,116,32,63,32,45,49,32,58,32,49,59,92,110,32,32,114,101,99,116,46,116,111,112,32,43,61,32,115,99,114,111,108,108,84,111,112,32,42,32,109,111,100,105,102,105,101,114,59,92,110,32,32,114,101,99,116,46,98,111,116,116,111,109,32,43,61,32,115,99,114,111,108,108,84,111,112,32,42,32,109,111,100,105,102,105,101,114,59,92,110,32,32,114,101,99,116,46,108,101,102,116,32,43,61,32,115,99,114,111,108,108,76,101,102,116,32,42,32,109,111,100,105,102,105,101,114,59,92,110,32,32,114,101,99,116,46,114,105,103,104,116,32,43,61,32,115,99,114,111,108,108,76,101,102,116,32,42,32,109,111,100,105,102,105,101,114,59,92,110,32,32,114,101,116,117,114,110,32,114,101,99,116,59,92,110,125,92,110,92,110,47,42,92,110,32,42,32,72,101,108,112,101,114,32,116,111,32,100,101,116,101,99,116,32,98,111,114,100,101,114,115,32,111,102,32,97,32,103,105,118,101,110,32,101,108,101,109,101,110,116,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,112,97,114,97,109,32,123,67,83,83,83,116,121,108,101,68,101,99,108,97,114,97,116,105,111,110,125,32,115,116,121,108,101,115,92,110,32,42,32,82,101,115,117,108,116,32,111,102,32,96,103,101,116,83,116,121,108,101,67,111,109,112,117,116,101,100,80,114,111,112,101,114,116,121,96,32,111,110,32,116,104,101,32,103,105,118,101,110,32,101,108,101,109,101,110,116,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,97,120,105,115,32,45,32,96,120,96,32,111,114,32,96,121,96,92,110,32,42,32,64,114,101,116,117,114,110,32,123,110,117,109,98,101,114,125,32,98,111,114,100,101,114,115,32,45,32,84,104,101,32,98,111,114,100,101,114,115,32,115,105,122,101,32,111,102,32,116,104,101,32,103,105,118,101,110,32,97,120,105,115,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,66,111,114,100,101,114,115,83,105,122,101,40,115,116,121,108,101,115,44,32,97,120,105,115,41,32,123,92,110,32,32,118,97,114,32,115,105,100,101,65,32,61,32,97,120,105,115,32,61,61,61,32,39,120,39,32,63,32,39,76,101,102,116,39,32,58,32,39,84,111,112,39,59,92,110,32,32,118,97,114,32,115,105,100,101,66,32,61,32,115,105,100,101,65,32,61,61,61,32,39,76,101,102,116,39,32,63,32,39,82,105,103,104,116,39,32,58,32,39,66,111,116,116,111,109,39,59,92,110,92,110,32,32,114,101,116,117,114,110,32,112,97,114,115,101,70,108,111,97,116,40,115,116,121,108,101,115,91,39,98,111,114,100,101,114,39,32,43,32,115,105,100,101,65,32,43,32,39,87,105,100,116,104,39,93,41,32,43,32,112,97,114,115,101,70,108,111,97,116,40,115,116,121,108,101,115,91,39,98,111,114,100,101,114,39,32,43,32,115,105,100,101,66,32,43,32,39,87,105,100,116,104,39,93,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,83,105,122,101,40,97,120,105,115,44,32,98,111,100,121,44,32,104,116,109,108,44,32,99,111,109,112,117,116,101,100,83,116,121,108,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,98,111,100,121,91,39,111,102,102,115,101,116,39,32,43,32,97,120,105,115,93,44,32,98,111,100,121,91,39,115,99,114,111,108,108,39,32,43,32,97,120,105,115,93,44,32,104,116,109,108,91,39,99,108,105,101,110,116,39,32,43,32,97,120,105,115,93,44,32,104,116,109,108,91,39,111,102,102,115,101,116,39,32,43,32,97,120,105,115,93,44,32,104,116,109,108,91,39,115,99,114,111,108,108,39,32,43,32,97,120,105,115,93,44,32,105,115,73,69,40,49,48,41,32,63,32,112,97,114,115,101,73,110,116,40,104,116,109,108,91,39,111,102,102,115,101,116,39,32,43,32,97,120,105,115,93,41,32,43,32,112,97,114,115,101,73,110,116,40,99,111,109,112,117,116,101,100,83,116,121,108,101,91,39,109,97,114,103,105,110,39,32,43,32,40,97,120,105,115,32,61,61,61,32,39,72,101,105,103,104,116,39,32,63,32,39,84,111,112,39,32,58,32,39,76,101,102,116,39,41,93,41,32,43,32,112,97,114,115,101,73,110,116,40,99,111,109,112,117,116,101,100,83,116,121,108,101,91,39,109,97,114,103,105,110,39,32,43,32,40,97,120,105,115,32,61,61,61,32,39,72,101,105,103,104,116,39,32,63,32,39,66,111,116,116,111,109,39,32,58,32,39,82,105,103,104,116,39,41,93,41,32,58,32,48,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,87,105,110,100,111,119,83,105,122,101,115,40,100,111,99,117,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,98,111,100,121,32,61,32,100,111,99,117,109,101,110,116,46,98,111,100,121,59,92,110,32,32,118,97,114,32,104,116,109,108,32,61,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,92,110,32,32,118,97,114,32,99,111,109,112,117,116,101,100,83,116,121,108,101,32,61,32,105,115,73,69,40,49,48,41,32,38,38,32,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,104,116,109,108,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,104,101,105,103,104,116,58,32,103,101,116,83,105,122,101,40,39,72,101,105,103,104,116,39,44,32,98,111,100,121,44,32,104,116,109,108,44,32,99,111,109,112,117,116,101,100,83,116,121,108,101,41,44,92,110,32,32,32,32,119,105,100,116,104,58,32,103,101,116,83,105,122,101,40,39,87,105,100,116,104,39,44,32,98,111,100,121,44,32,104,116,109,108,44,32,99,111,109,112,117,116,101,100,83,116,121,108,101,41,92,110,32,32,125,59,92,110,125,92,110,92,110,118,97,114,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,115,116,97,110,99,101,44,32,67,111,110,115,116,114,117,99,116,111,114,41,32,123,92,110,32,32,105,102,32,40,33,40,105,110,115,116,97,110,99,101,32,105,110,115,116,97,110,99,101,111,102,32,67,111,110,115,116,114,117,99,116,111,114,41,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,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,92,34,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,99,114,101,97,116,101,67,108,97,115,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,97,114,103,101,116,44,32,112,114,111,112,115,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,112,114,111,112,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,101,115,99,114,105,112,116,111,114,32,61,32,112,114,111,112,115,91,105,93,59,92,110,32,32,32,32,32,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,61,32,100,101,115,99,114,105,112,116,111,114,46,101,110,117,109,101,114,97,98,108,101,32,124,124,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,100,101,115,99,114,105,112,116,111,114,46,99,111,110,102,105,103,117,114,97,98,108,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,105,102,32,40,92,34,118,97,108,117,101,92,34,32,105,110,32,100,101,115,99,114,105,112,116,111,114,41,32,100,101,115,99,114,105,112,116,111,114,46,119,114,105,116,97,98,108,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,100,101,115,99,114,105,112,116,111,114,46,107,101,121,44,32,100,101,115,99,114,105,112,116,111,114,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,67,111,110,115,116,114,117,99,116,111,114,44,32,112,114,111,116,111,80,114,111,112,115,44,32,115,116,97,116,105,99,80,114,111,112,115,41,32,123,92,110,32,32,32,32,105,102,32,40,112,114,111,116,111,80,114,111,112,115,41,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,44,32,112,114,111,116,111,80,114,111,112,115,41,59,92,110,32,32,32,32,105,102,32,40,115,116,97,116,105,99,80,114,111,112,115,41,32,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,67,111,110,115,116,114,117,99,116,111,114,44,32,115,116,97,116,105,99,80,114,111,112,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,67,111,110,115,116,114,117,99,116,111,114,59,92,110,32,32,125,59,92,110,125,40,41,59,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,32,61,32,102,117,110,99,116,105,111,110,32,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,92,110,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,92,110,32,32,32,32,125,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,111,98,106,59,92,110,125,59,92,110,92,110,118,97,114,32,95,101,120,116,101,110,100,115,32,61,32,79,98,106,101,99,116,46,97,115,115,105,103,110,32,124,124,32,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,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,115,111,117,114,99,101,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,91,107,101,121,93,32,61,32,115,111,117,114,99,101,91,107,101,121,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,97,114,103,101,116,59,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,71,105,118,101,110,32,101,108,101,109,101,110,116,32,111,102,102,115,101,116,115,44,32,103,101,110,101,114,97,116,101,32,97,110,32,111,117,116,112,117,116,32,115,105,109,105,108,97,114,32,116,111,32,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,111,102,102,115,101,116,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,67,108,105,101,110,116,82,101,99,116,32,108,105,107,101,32,111,117,116,112,117,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,67,108,105,101,110,116,82,101,99,116,40,111,102,102,115,101,116,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,101,120,116,101,110,100,115,40,123,125,44,32,111,102,102,115,101,116,115,44,32,123,92,110,32,32,32,32,114,105,103,104,116,58,32,111,102,102,115,101,116,115,46,108,101,102,116,32,43,32,111,102,102,115,101,116,115,46,119,105,100,116,104,44,92,110,32,32,32,32,98,111,116,116,111,109,58,32,111,102,102,115,101,116,115,46,116,111,112,32,43,32,111,102,102,115,101,116,115,46,104,101,105,103,104,116,92,110,32,32,125,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,32,98,111,117,110,100,105,110,103,32,99,108,105,101,110,116,32,114,101,99,116,32,111,102,32,103,105,118,101,110,32,101,108,101,109,101,110,116,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,92,110,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,32,99,108,105,101,110,116,32,114,101,99,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,114,101,99,116,32,61,32,123,125,59,92,110,92,110,32,32,47,47,32,73,69,49,48,32,49,48,32,70,73,88,58,32,80,108,101,97,115,101,44,32,100,111,110,39,116,32,97,115,107,44,32,116,104,101,32,101,108,101,109,101,110,116,32,105,115,110,39,116,92,110,32,32,47,47,32,99,111,110,115,105,100,101,114,101,100,32,105,110,32,68,79,77,32,105,110,32,115,111,109,101,32,99,105,114,99,117,109,115,116,97,110,99,101,115,46,46,46,92,110,32,32,47,47,32,84,104,105,115,32,105,115,110,39,116,32,114,101,112,114,111,100,117,99,105,98,108,101,32,105,110,32,73,69,49,48,32,99,111,109,112,97,116,105,98,105,108,105,116,121,32,109,111,100,101,32,111,102,32,73,69,49,49,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,105,102,32,40,105,115,73,69,40,49,48,41,41,32,123,92,110,32,32,32,32,32,32,114,101,99,116,32,61,32,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,59,92,110,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,84,111,112,32,61,32,103,101,116,83,99,114,111,108,108,40,101,108,101,109,101,110,116,44,32,39,116,111,112,39,41,59,92,110,32,32,32,32,32,32,118,97,114,32,115,99,114,111,108,108,76,101,102,116,32,61,32,103,101,116,83,99,114,111,108,108,40,101,108,101,109,101,110,116,44,32,39,108,101,102,116,39,41,59,92,110,32,32,32,32,32,32,114,101,99,116,46,116,111,112,32,43,61,32,115,99,114,111,108,108,84,111,112,59,92,110,32,32,32,32,32,32,114,101,99,116,46,108,101,102,116,32,43,61,32,115,99,114,111,108,108,76,101,102,116,59,92,110,32,32,32,32,32,32,114,101,99,116,46,98,111,116,116,111,109,32,43,61,32,115,99,114,111,108,108,84,111,112,59,92,110,32,32,32,32,32,32,114,101,99,116,46,114,105,103,104,116,32,43,61,32,115,99,114,111,108,108,76,101,102,116,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,99,116,32,61,32,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,59,92,110,32,32,32,32,125,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,125,92,110,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,123,92,110,32,32,32,32,108,101,102,116,58,32,114,101,99,116,46,108,101,102,116,44,92,110,32,32,32,32,116,111,112,58,32,114,101,99,116,46,116,111,112,44,92,110,32,32,32,32,119,105,100,116,104,58,32,114,101,99,116,46,114,105,103,104,116,32,45,32,114,101,99,116,46,108,101,102,116,44,92,110,32,32,32,32,104,101,105,103,104,116,58,32,114,101,99,116,46,98,111,116,116,111,109,32,45,32,114,101,99,116,46,116,111,112,92,110,32,32,125,59,92,110,92,110,32,32,47,47,32,115,117,98,116,114,97,99,116,32,115,99,114,111,108,108,98,97,114,32,115,105,122,101,32,102,114,111,109,32,115,105,122,101,115,92,110,32,32,118,97,114,32,115,105,122,101,115,32,61,32,101,108,101,109,101,110,116,46,110,111,100,101,78,97,109,101,32,61,61,61,32,39,72,84,77,76,39,32,63,32,103,101,116,87,105,110,100,111,119,83,105,122,101,115,40,101,108,101,109,101,110,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,32,58,32,123,125,59,92,110,32,32,118,97,114,32,119,105,100,116,104,32,61,32,115,105,122,101,115,46,119,105,100,116,104,32,124,124,32,101,108,101,109,101,110,116,46,99,108,105,101,110,116,87,105,100,116,104,32,124,124,32,114,101,115,117,108,116,46,119,105,100,116,104,59,92,110,32,32,118,97,114,32,104,101,105,103,104,116,32,61,32,115,105,122,101,115,46,104,101,105,103,104,116,32,124,124,32,101,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,32,124,124,32,114,101,115,117,108,116,46,104,101,105,103,104,116,59,92,110,92,110,32,32,118,97,114,32,104,111,114,105,122,83,99,114,111,108,108,98,97,114,32,61,32,101,108,101,109,101,110,116,46,111,102,102,115,101,116,87,105,100,116,104,32,45,32,119,105,100,116,104,59,92,110,32,32,118,97,114,32,118,101,114,116,83,99,114,111,108,108,98,97,114,32,61,32,101,108,101,109,101,110,116,46,111,102,102,115,101,116,72,101,105,103,104,116,32,45,32,104,101,105,103,104,116,59,92,110,92,110,32,32,47,47,32,105,102,32,97,110,32,104,121,112,111,116,104,101,116,105,99,97,108,32,115,99,114,111,108,108,98,97,114,32,105,115,32,100,101,116,101,99,116,101,100,44,32,119,101,32,109,117,115,116,32,98,101,32,115,117,114,101,32,105,116,39,115,32,110,111,116,32,97,32,96,98,111,114,100,101,114,96,92,110,32,32,47,47,32,119,101,32,109,97,107,101,32,116,104,105,115,32,99,104,101,99,107,32,99,111,110,100,105,116,105,111,110,97,108,32,102,111,114,32,112,101,114,102,111,114,109,97,110,99,101,32,114,101,97,115,111,110,115,92,110,32,32,105,102,32,40,104,111,114,105,122,83,99,114,111,108,108,98,97,114,32,124,124,32,118,101,114,116,83,99,114,111,108,108,98,97,114,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,121,108,101,115,32,61,32,103,101,116,83,116,121,108,101,67,111,109,112,117,116,101,100,80,114,111,112,101,114,116,121,40,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,104,111,114,105,122,83,99,114,111,108,108,98,97,114,32,45,61,32,103,101,116,66,111,114,100,101,114,115,83,105,122,101,40,115,116,121,108,101,115,44,32,39,120,39,41,59,92,110,32,32,32,32,118,101,114,116,83,99,114,111,108,108,98,97,114,32,45,61,32,103,101,116,66,111,114,100,101,114,115,83,105,122,101,40,115,116,121,108,101,115,44,32,39,121,39,41,59,92,110,92,110,32,32,32,32,114,101,115,117,108,116,46,119,105,100,116,104,32,45,61,32,104,111,114,105,122,83,99,114,111,108,108,98,97,114,59,92,110,32,32,32,32,114,101,115,117,108,116,46,104,101,105,103,104,116,32,45,61,32,118,101,114,116,83,99,114,111,108,108,98,97,114,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,103,101,116,67,108,105,101,110,116,82,101,99,116,40,114,101,115,117,108,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,79,102,102,115,101,116,82,101,99,116,82,101,108,97,116,105,118,101,84,111,65,114,98,105,116,114,97,114,121,78,111,100,101,40,99,104,105,108,100,114,101,110,44,32,112,97,114,101,110,116,41,32,123,92,110,32,32,118,97,114,32,102,105,120,101,100,80,111,115,105,116,105,111,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,102,97,108,115,101,59,92,110,92,110,32,32,118,97,114,32,105,115,73,69,49,48,32,61,32,105,115,73,69,40,49,48,41,59,92,110,32,32,118,97,114,32,105,115,72,84,77,76,32,61,32,112,97,114,101,110,116,46,110,111,100,101,78,97,109,101,32,61,61,61,32,39,72,84,77,76,39,59,92,110,32,32,118,97,114,32,99,104,105,108,100,114,101,110,82,101,99,116,32,61,32,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,99,104,105,108,100,114,101,110,41,59,92,110,32,32,118,97,114,32,112,97,114,101,110,116,82,101,99,116,32,61,32,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,112,97,114,101,110,116,41,59,92,110,32,32,118,97,114,32,115,99,114,111,108,108,80,97,114,101,110,116,32,61,32,103,101,116,83,99,114,111,108,108,80,97,114,101,110,116,40,99,104,105,108,100,114,101,110,41,59,92,110,92,110,32,32,118,97,114,32,115,116,121,108,101,115,32,61,32,103,101,116,83,116,121,108,101,67,111,109,112,117,116,101,100,80,114,111,112,101,114,116,121,40,112,97,114,101,110,116,41,59,92,110,32,32,118,97,114,32,98,111,114,100,101,114,84,111,112,87,105,100,116,104,32,61,32,112,97,114,115,101,70,108,111,97,116,40,115,116,121,108,101,115,46,98,111,114,100,101,114,84,111,112,87,105,100,116,104,41,59,92,110,32,32,118,97,114,32,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,32,61,32,112,97,114,115,101,70,108,111,97,116,40,115,116,121,108,101,115,46,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,41,59,92,110,92,110,32,32,47,47,32,73,110,32,99,97,115,101,115,32,119,104,101,114,101,32,116,104,101,32,112,97,114,101,110,116,32,105,115,32,102,105,120,101,100,44,32,119,101,32,109,117,115,116,32,105,103,110,111,114,101,32,110,101,103,97,116,105,118,101,32,115,99,114,111,108,108,32,105,110,32,111,102,102,115,101,116,32,99,97,108,99,92,110,32,32,105,102,32,40,102,105,120,101,100,80,111,115,105,116,105,111,110,32,38,38,32,105,115,72,84,77,76,41,32,123,92,110,32,32,32,32,112,97,114,101,110,116,82,101,99,116,46,116,111,112,32,61,32,77,97,116,104,46,109,97,120,40,112,97,114,101,110,116,82,101,99,116,46,116,111,112,44,32,48,41,59,92,110,32,32,32,32,112,97,114,101,110,116,82,101,99,116,46,108,101,102,116,32,61,32,77,97,116,104,46,109,97,120,40,112,97,114,101,110,116,82,101,99,116,46,108,101,102,116,44,32,48,41,59,92,110,32,32,125,92,110,32,32,118,97,114,32,111,102,102,115,101,116,115,32,61,32,103,101,116,67,108,105,101,110,116,82,101,99,116,40,123,92,110,32,32,32,32,116,111,112,58,32,99,104,105,108,100,114,101,110,82,101,99,116,46,116,111,112,32,45,32,112,97,114,101,110,116,82,101,99,116,46,116,111,112,32,45,32,98,111,114,100,101,114,84,111,112,87,105,100,116,104,44,92,110,32,32,32,32,108,101,102,116,58,32,99,104,105,108,100,114,101,110,82,101,99,116,46,108,101,102,116,32,45,32,112,97,114,101,110,116,82,101,99,116,46,108,101,102,116,32,45,32,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,44,92,110,32,32,32,32,119,105,100,116,104,58,32,99,104,105,108,100,114,101,110,82,101,99,116,46,119,105,100,116,104,44,92,110,32,32,32,32,104,101,105,103,104,116,58,32,99,104,105,108,100,114,101,110,82,101,99,116,46,104,101,105,103,104,116,92,110,32,32,125,41,59,92,110,32,32,111,102,102,115,101,116,115,46,109,97,114,103,105,110,84,111,112,32,61,32,48,59,92,110,32,32,111,102,102,115,101,116,115,46,109,97,114,103,105,110,76,101,102,116,32,61,32,48,59,92,110,92,110,32,32,47,47,32,83,117,98,116,114,97,99,116,32,109,97,114,103,105,110,115,32,111,102,32,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,32,105,110,32,99,97,115,101,32,105,116,39,115,32,98,101,105,110,103,32,117,115,101,100,32,97,115,32,112,97,114,101,110,116,92,110,32,32,47,47,32,119,101,32,100,111,32,116,104,105,115,32,111,110,108,121,32,111,110,32,72,84,77,76,32,98,101,99,97,117,115,101,32,105,116,39,115,32,116,104,101,32,111,110,108,121,32,101,108,101,109,101,110,116,32,116,104,97,116,32,98,101,104,97,118,101,115,92,110,32,32,47,47,32,100,105,102,102,101,114,101,110,116,108,121,32,119,104,101,110,32,109,97,114,103,105,110,115,32,97,114,101,32,97,112,112,108,105,101,100,32,116,111,32,105,116,46,32,84,104,101,32,109,97,114,103,105,110,115,32,97,114,101,32,105,110,99,108,117,100,101,100,32,105,110,92,110,32,32,47,47,32,116,104,101,32,98,111,120,32,111,102,32,116,104,101,32,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,32,105,110,32,116,104,101,32,111,116,104,101,114,32,99,97,115,101,115,32,110,111,116,46,92,110,32,32,105,102,32,40,33,105,115,73,69,49,48,32,38,38,32,105,115,72,84,77,76,41,32,123,92,110,32,32,32,32,118,97,114,32,109,97,114,103,105,110,84,111,112,32,61,32,112,97,114,115,101,70,108,111,97,116,40,115,116,121,108,101,115,46,109,97,114,103,105,110,84,111,112,41,59,92,110,32,32,32,32,118,97,114,32,109,97,114,103,105,110,76,101,102,116,32,61,32,112,97,114,115,101,70,108,111,97,116,40,115,116,121,108,101,115,46,109,97,114,103,105,110,76,101,102,116,41,59,92,110,92,110,32,32,32,32,111,102,102,115,101,116,115,46,116,111,112,32,45,61,32,98,111,114,100,101,114,84,111,112,87,105,100,116,104,32,45,32,109,97,114,103,105,110,84,111,112,59,92,110,32,32,32,32,111,102,102,115,101,116,115,46,98,111,116,116,111,109,32,45,61,32,98,111,114,100,101,114,84,111,112,87,105,100,116,104,32,45,32,109,97,114,103,105,110,84,111,112,59,92,110,32,32,32,32,111,102,102,115,101,116,115,46,108,101,102,116,32,45,61,32,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,32,45,32,109,97,114,103,105,110,76,101,102,116,59,92,110,32,32,32,32,111,102,102,115,101,116,115,46,114,105,103,104,116,32,45,61,32,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,32,45,32,109,97,114,103,105,110,76,101,102,116,59,92,110,92,110,32,32,32,32,47,47,32,65,116,116,97,99,104,32,109,97,114,103,105,110,84,111,112,32,97,110,100,32,109,97,114,103,105,110,76,101,102,116,32,98,101,99,97,117,115,101,32,105,110,32,115,111,109,101,32,99,105,114,99,117,109,115,116,97,110,99,101,115,32,119,101,32,109,97,121,32,110,101,101,100,32,116,104,101,109,92,110,32,32,32,32,111,102,102,115,101,116,115,46,109,97,114,103,105,110,84,111,112,32,61,32,109,97,114,103,105,110,84,111,112,59,92,110,32,32,32,32,111,102,102,115,101,116,115,46,109,97,114,103,105,110,76,101,102,116,32,61,32,109,97,114,103,105,110,76,101,102,116,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,105,115,73,69,49,48,32,38,38,32,33,102,105,120,101,100,80,111,115,105,116,105,111,110,32,63,32,112,97,114,101,110,116,46,99,111,110,116,97,105,110,115,40,115,99,114,111,108,108,80,97,114,101,110,116,41,32,58,32,112,97,114,101,110,116,32,61,61,61,32,115,99,114,111,108,108,80,97,114,101,110,116,32,38,38,32,115,99,114,111,108,108,80,97,114,101,110,116,46,110,111,100,101,78,97,109,101,32,33,61,61,32,39,66,79,68,89,39,41,32,123,92,110,32,32,32,32,111,102,102,115,101,116,115,32,61,32,105,110,99,108,117,100,101,83,99,114,111,108,108,40,111,102,102,115,101,116,115,44,32,112,97,114,101,110,116,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,111,102,102,115,101,116,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,86,105,101,119,112,111,114,116,79,102,102,115,101,116,82,101,99,116,82,101,108,97,116,105,118,101,84,111,65,114,116,98,105,116,114,97,114,121,78,111,100,101,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,101,120,99,108,117,100,101,83,99,114,111,108,108,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,102,97,108,115,101,59,92,110,92,110,32,32,118,97,114,32,104,116,109,108,32,61,32,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,59,92,110,32,32,118,97,114,32,114,101,108,97,116,105,118,101,79,102,102,115,101,116,32,61,32,103,101,116,79,102,102,115,101,116,82,101,99,116,82,101,108,97,116,105,118,101,84,111,65,114,98,105,116,114,97,114,121,78,111,100,101,40,101,108,101,109,101,110,116,44,32,104,116,109,108,41,59,92,110,32,32,118,97,114,32,119,105,100,116,104,32,61,32,77,97,116,104,46,109,97,120,40,104,116,109,108,46,99,108,105,101,110,116,87,105,100,116,104,44,32,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,32,124,124,32,48,41,59,92,110,32,32,118,97,114,32,104,101,105,103,104,116,32,61,32,77,97,116,104,46,109,97,120,40,104,116,109,108,46,99,108,105,101,110,116,72,101,105,103,104,116,44,32,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,32,124,124,32,48,41,59,92,110,92,110,32,32,118,97,114,32,115,99,114,111,108,108,84,111,112,32,61,32,33,101,120,99,108,117,100,101,83,99,114,111,108,108,32,63,32,103,101,116,83,99,114,111,108,108,40,104,116,109,108,41,32,58,32,48,59,92,110,32,32,118,97,114,32,115,99,114,111,108,108,76,101,102,116,32,61,32,33,101,120,99,108,117,100,101,83,99,114,111,108,108,32,63,32,103,101,116,83,99,114,111,108,108,40,104,116,109,108,44,32,39,108,101,102,116,39,41,32,58,32,48,59,92,110,92,110,32,32,118,97,114,32,111,102,102,115,101,116,32,61,32,123,92,110,32,32,32,32,116,111,112,58,32,115,99,114,111,108,108,84,111,112,32,45,32,114,101,108,97,116,105,118,101,79,102,102,115,101,116,46,116,111,112,32,43,32,114,101,108,97,116,105,118,101,79,102,102,115,101,116,46,109,97,114,103,105,110,84,111,112,44,92,110,32,32,32,32,108,101,102,116,58,32,115,99,114,111,108,108,76,101,102,116,32,45,32,114,101,108,97,116,105,118,101,79,102,102,115,101,116,46,108,101,102,116,32,43,32,114,101,108,97,116,105,118,101,79,102,102,115,101,116,46,109,97,114,103,105,110,76,101,102,116,44,92,110,32,32,32,32,119,105,100,116,104,58,32,119,105,100,116,104,44,92,110,32,32,32,32,104,101,105,103,104,116,58,32,104,101,105,103,104,116,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,103,101,116,67,108,105,101,110,116,82,101,99,116,40,111,102,102,115,101,116,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,67,104,101,99,107,32,105,102,32,116,104,101,32,103,105,118,101,110,32,101,108,101,109,101,110,116,32,105,115,32,102,105,120,101,100,32,111,114,32,105,115,32,105,110,115,105,100,101,32,97,32,102,105,120,101,100,32,112,97,114,101,110,116,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,69,108,101,109,101,110,116,125,32,99,117,115,116,111,109,67,111,110,116,97,105,110,101,114,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,66,111,111,108,101,97,110,125,32,97,110,115,119,101,114,32,116,111,32,92,34,105,115,70,105,120,101,100,63,92,34,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,70,105,120,101,100,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,78,97,109,101,32,61,32,101,108,101,109,101,110,116,46,110,111,100,101,78,97,109,101,59,92,110,32,32,105,102,32,40,110,111,100,101,78,97,109,101,32,61,61,61,32,39,66,79,68,89,39,32,124,124,32,110,111,100,101,78,97,109,101,32,61,61,61,32,39,72,84,77,76,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,32,32,105,102,32,40,103,101,116,83,116,121,108,101,67,111,109,112,117,116,101,100,80,114,111,112,101,114,116,121,40,101,108,101,109,101,110,116,44,32,39,112,111,115,105,116,105,111,110,39,41,32,61,61,61,32,39,102,105,120,101,100,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,125,92,110,32,32,118,97,114,32,112,97,114,101,110,116,78,111,100,101,32,61,32,103,101,116,80,97,114,101,110,116,78,111,100,101,40,101,108,101,109,101,110,116,41,59,92,110,32,32,105,102,32,40,33,112,97,114,101,110,116,78,111,100,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,105,115,70,105,120,101,100,40,112,97,114,101,110,116,78,111,100,101,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,70,105,110,100,115,32,116,104,101,32,102,105,114,115,116,32,112,97,114,101,110,116,32,111,102,32,97,110,32,101,108,101,109,101,110,116,32,116,104,97,116,32,104,97,115,32,97,32,116,114,97,110,115,102,111,114,109,101,100,32,112,114,111,112,101,114,116,121,32,100,101,102,105,110,101,100,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,69,108,101,109,101,110,116,125,32,102,105,114,115,116,32,116,114,97,110,115,102,111,114,109,101,100,32,112,97,114,101,110,116,32,111,114,32,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,70,105,120,101,100,80,111,115,105,116,105,111,110,79,102,102,115,101,116,80,97,114,101,110,116,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,47,47,32,84,104,105,115,32,99,104,101,99,107,32,105,115,32,110,101,101,100,101,100,32,116,111,32,97,118,111,105,100,32,101,114,114,111,114,115,32,105,110,32,99,97,115,101,32,111,110,101,32,111,102,32,116,104,101,32,101,108,101,109,101,110,116,115,32,105,115,110,39,116,32,100,101,102,105,110,101,100,32,102,111,114,32,97,110,121,32,114,101,97,115,111,110,92,110,32,32,105,102,32,40,33,101,108,101,109,101,110,116,32,124,124,32,33,101,108,101,109,101,110,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,32,124,124,32,105,115,73,69,40,41,41,32,123,92,110,32,32,32,32,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,92,110,32,32,125,92,110,32,32,118,97,114,32,101,108,32,61,32,101,108,101,109,101,110,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,92,110,32,32,119,104,105,108,101,32,40,101,108,32,38,38,32,103,101,116,83,116,121,108,101,67,111,109,112,117,116,101,100,80,114,111,112,101,114,116,121,40,101,108,44,32,39,116,114,97,110,115,102,111,114,109,39,41,32,61,61,61,32,39,110,111,110,101,39,41,32,123,92,110,32,32,32,32,101,108,32,61,32,101,108,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,101,108,32,124,124,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,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,67,111,109,112,117,116,101,100,32,116,104,101,32,98,111,117,110,100,97,114,105,101,115,32,108,105,109,105,116,115,32,97,110,100,32,114,101,116,117,114,110,32,116,104,101,109,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,112,111,112,112,101,114,92,110,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,114,101,102,101,114,101,110,99,101,92,110,32,42,32,64,112,97,114,97,109,32,123,110,117,109,98,101,114,125,32,112,97,100,100,105,110,103,92,110,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,32,45,32,69,108,101,109,101,110,116,32,117,115,101,100,32,116,111,32,100,101,102,105,110,101,32,116,104,101,32,98,111,117,110,100,97,114,105,101,115,92,110,32,42,32,64,112,97,114,97,109,32,123,66,111,111,108,101,97,110,125,32,102,105,120,101,100,80,111,115,105,116,105,111,110,32,45,32,73,115,32,105,110,32,102,105,120,101,100,32,112,111,115,105,116,105,111,110,32,109,111,100,101,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,67,111,111,114,100,105,110,97,116,101,115,32,111,102,32,116,104,101,32,98,111,117,110,100,97,114,105,101,115,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,66,111,117,110,100,97,114,105,101,115,40,112,111,112,112,101,114,44,32,114,101,102,101,114,101,110,99,101,44,32,112,97,100,100,105,110,103,44,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,102,105,120,101,100,80,111,115,105,116,105,111,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,52,32,38,38,32,97,114,103,117,109,101,110,116,115,91,52,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,52,93,32,58,32,102,97,108,115,101,59,92,110,92,110,32,32,47,47,32,78,79,84,69,58,32,49,32,68,79,77,32,97,99,99,101,115,115,32,104,101,114,101,92,110,92,110,32,32,118,97,114,32,98,111,117,110,100,97,114,105,101,115,32,61,32,123,32,116,111,112,58,32,48,44,32,108,101,102,116,58,32,48,32,125,59,92,110,32,32,118,97,114,32,111,102,102,115,101,116,80,97,114,101,110,116,32,61,32,102,105,120,101,100,80,111,115,105,116,105,111,110,32,63,32,103,101,116,70,105,120,101,100,80,111,115,105,116,105,111,110,79,102,102,115,101,116,80,97,114,101,110,116,40,112,111,112,112,101,114,41,32,58,32,102,105,110,100,67,111,109,109,111,110,79,102,102,115,101,116,80,97,114,101,110,116,40,112,111,112,112,101,114,44,32,103,101,116,82,101,102,101,114,101,110,99,101,78,111,100,101,40,114,101,102,101,114,101,110,99,101,41,41,59,92,110,92,110,32,32,47,47,32,72,97,110,100,108,101,32,118,105,101,119,112,111,114,116,32,99,97,115,101,92,110,32,32,105,102,32,40,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,32,61,61,61,32,39,118,105,101,119,112,111,114,116,39,41,32,123,92,110,32,32,32,32,98,111,117,110,100,97,114,105,101,115,32,61,32,103,101,116,86,105,101,119,112,111,114,116,79,102,102,115,101,116,82,101,99,116,82,101,108,97,116,105,118,101,84,111,65,114,116,98,105,116,114,97,114,121,78,111,100,101,40,111,102,102,115,101,116,80,97,114,101,110,116,44,32,102,105,120,101,100,80,111,115,105,116,105,111,110,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,47,32,72,97,110,100,108,101,32,111,116,104,101,114,32,99,97,115,101,115,32,98,97,115,101,100,32,111,110,32,68,79,77,32,101,108,101,109,101,110,116,32,117,115,101,100,32,97,115,32,98,111,117,110,100,97,114,105,101,115,92,110,32,32,32,32,118,97,114,32,98,111,117,110,100,97,114,105,101,115,78,111,100,101,32,61,32,118,111,105,100,32,48,59,92,110,32,32,32,32,105,102,32,40,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,32,61,61,61,32,39,115,99,114,111,108,108,80,97,114,101,110,116,39,41,32,123,92,110,32,32,32,32,32,32,98,111,117,110,100,97,114,105,101,115,78,111,100,101,32,61,32,103,101,116,83,99,114,111,108,108,80,97,114,101,110,116,40,103,101,116,80,97,114,101,110,116,78,111,100,101,40,114,101,102,101,114,101,110,99,101,41,41,59,92,110,32,32,32,32,32,32,105,102,32,40,98,111,117,110,100,97,114,105,101,115,78,111,100,101,46,110,111,100,101,78,97,109,101,32,61,61,61,32,39,66,79,68,89,39,41,32,123,92,110,32,32,32,32,32,32,32,32,98,111,117,110,100,97,114,105,101,115,78,111,100,101,32,61,32,112,111,112,112,101,114,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,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,32,61,61,61,32,39,119,105,110,100,111,119,39,41,32,123,92,110,32,32,32,32,32,32,98,111,117,110,100,97,114,105,101,115,78,111,100,101,32,61,32,112,111,112,112,101,114,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,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,98,111,117,110,100,97,114,105,101,115,78,111,100,101,32,61,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,111,102,102,115,101,116,115,32,61,32,103,101,116,79,102,102,115,101,116,82,101,99,116,82,101,108,97,116,105,118,101,84,111,65,114,98,105,116,114,97,114,121,78,111,100,101,40,98,111,117,110,100,97,114,105,101,115,78,111,100,101,44,32,111,102,102,115,101,116,80,97,114,101,110,116,44,32,102,105,120,101,100,80,111,115,105,116,105,111,110,41,59,92,110,92,110,32,32,32,32,47,47,32,73,110,32,99,97,115,101,32,111,102,32,72,84,77,76,44,32,119,101,32,110,101,101,100,32,97,32,100,105,102,102,101,114,101,110,116,32,99,111,109,112,117,116,97,116,105,111,110,92,110,32,32,32,32,105,102,32,40,98,111,117,110,100,97,114,105,101,115,78,111,100,101,46,110,111,100,101,78,97,109,101,32,61,61,61,32,39,72,84,77,76,39,32,38,38,32,33,105,115,70,105,120,101,100,40,111,102,102,115,101,116,80,97,114,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,95,103,101,116,87,105,110,100,111,119,83,105,122,101,115,32,61,32,103,101,116,87,105,110,100,111,119,83,105,122,101,115,40,112,111,112,112,101,114,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,44,92,110,32,32,32,32,32,32,32,32,32,32,104,101,105,103,104,116,32,61,32,95,103,101,116,87,105,110,100,111,119,83,105,122,101,115,46,104,101,105,103,104,116,44,92,110,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,32,61,32,95,103,101,116,87,105,110,100,111,119,83,105,122,101,115,46,119,105,100,116,104,59,92,110,92,110,32,32,32,32,32,32,98,111,117,110,100,97,114,105,101,115,46,116,111,112,32,43,61,32,111,102,102,115,101,116,115,46,116,111,112,32,45,32,111,102,102,115,101,116,115,46,109,97,114,103,105,110,84,111,112,59,92,110,32,32,32,32,32,32,98,111,117,110,100,97,114,105,101,115,46,98,111,116,116,111,109,32,61,32,104,101,105,103,104,116,32,43,32,111,102,102,115,101,116,115,46,116,111,112,59,92,110,32,32,32,32,32,32,98,111,117,110,100,97,114,105,101,115,46,108,101,102,116,32,43,61,32,111,102,102,115,101,116,115,46,108,101,102,116,32,45,32,111,102,102,115,101,116,115,46,109,97,114,103,105,110,76,101,102,116,59,92,110,32,32,32,32,32,32,98,111,117,110,100,97,114,105,101,115,46,114,105,103,104,116,32,61,32,119,105,100,116,104,32,43,32,111,102,102,115,101,116,115,46,108,101,102,116,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,102,111,114,32,97,108,108,32,116,104,101,32,111,116,104,101,114,32,68,79,77,32,101,108,101,109,101,110,116,115,44,32,116,104,105,115,32,111,110,101,32,105,115,32,103,111,111,100,92,110,32,32,32,32,32,32,98,111,117,110,100,97,114,105,101,115,32,61,32,111,102,102,115,101,116,115,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,65,100,100,32,112,97,100,100,105,110,103,115,92,110,32,32,112,97,100,100,105,110,103,32,61,32,112,97,100,100,105,110,103,32,124,124,32,48,59,92,110,32,32,118,97,114,32,105,115,80,97,100,100,105,110,103,78,117,109,98,101,114,32,61,32,116,121,112,101,111,102,32,112,97,100,100,105,110,103,32,61,61,61,32,39,110,117,109,98,101,114,39,59,92,110,32,32,98,111,117,110,100,97,114,105,101,115,46,108,101,102,116,32,43,61,32,105,115,80,97,100,100,105,110,103,78,117,109,98,101,114,32,63,32,112,97,100,100,105,110,103,32,58,32,112,97,100,100,105,110,103,46,108,101,102,116,32,124,124,32,48,59,92,110,32,32,98,111,117,110,100,97,114,105,101,115,46,116,111,112,32,43,61,32,105,115,80,97,100,100,105,110,103,78,117,109,98,101,114,32,63,32,112,97,100,100,105,110,103,32,58,32,112,97,100,100,105,110,103,46,116,111,112,32,124,124,32,48,59,92,110,32,32,98,111,117,110,100,97,114,105,101,115,46,114,105,103,104,116,32,45,61,32,105,115,80,97,100,100,105,110,103,78,117,109,98,101,114,32,63,32,112,97,100,100,105,110,103,32,58,32,112,97,100,100,105,110,103,46,114,105,103,104,116,32,124,124,32,48,59,92,110,32,32,98,111,117,110,100,97,114,105,101,115,46,98,111,116,116,111,109,32,45,61,32,105,115,80,97,100,100,105,110,103,78,117,109,98,101,114,32,63,32,112,97,100,100,105,110,103,32,58,32,112,97,100,100,105,110,103,46,98,111,116,116,111,109,32,124,124,32,48,59,92,110,92,110,32,32,114,101,116,117,114,110,32,98,111,117,110,100,97,114,105,101,115,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,65,114,101,97,40,95,114,101,102,41,32,123,92,110,32,32,118,97,114,32,119,105,100,116,104,32,61,32,95,114,101,102,46,119,105,100,116,104,44,92,110,32,32,32,32,32,32,104,101,105,103,104,116,32,61,32,95,114,101,102,46,104,101,105,103,104,116,59,92,110,92,110,32,32,114,101,116,117,114,110,32,119,105,100,116,104,32,42,32,104,101,105,103,104,116,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,85,116,105,108,105,116,121,32,117,115,101,100,32,116,111,32,116,114,97,110,115,102,111,114,109,32,116,104,101,32,96,97,117,116,111,96,32,112,108,97,99,101,109,101,110,116,32,116,111,32,116,104,101,32,112,108,97,99,101,109,101,110,116,32,119,105,116,104,32,109,111,114,101,92,110,32,42,32,97,118,97,105,108,97,98,108,101,32,115,112,97,99,101,46,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,100,97,116,97,32,45,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,103,101,110,101,114,97,116,101,100,32,98,121,32,117,112,100,97,116,101,32,109,101,116,104,111,100,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,77,111,100,105,102,105,101,114,115,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,97,110,100,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,44,32,112,114,111,112,101,114,108,121,32,109,111,100,105,102,105,101,100,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,65,117,116,111,80,108,97,99,101,109,101,110,116,40,112,108,97,99,101,109,101,110,116,44,32,114,101,102,82,101,99,116,44,32,112,111,112,112,101,114,44,32,114,101,102,101,114,101,110,99,101,44,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,112,97,100,100,105,110,103,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,53,32,38,38,32,97,114,103,117,109,101,110,116,115,91,53,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,53,93,32,58,32,48,59,92,110,92,110,32,32,105,102,32,40,112,108,97,99,101,109,101,110,116,46,105,110,100,101,120,79,102,40,39,97,117,116,111,39,41,32,61,61,61,32,45,49,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,108,97,99,101,109,101,110,116,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,98,111,117,110,100,97,114,105,101,115,32,61,32,103,101,116,66,111,117,110,100,97,114,105,101,115,40,112,111,112,112,101,114,44,32,114,101,102,101,114,101,110,99,101,44,32,112,97,100,100,105,110,103,44,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,41,59,92,110,92,110,32,32,118,97,114,32,114,101,99,116,115,32,61,32,123,92,110,32,32,32,32,116,111,112,58,32,123,92,110,32,32,32,32,32,32,119,105,100,116,104,58,32,98,111,117,110,100,97,114,105,101,115,46,119,105,100,116,104,44,92,110,32,32,32,32,32,32,104,101,105,103,104,116,58,32,114,101,102,82,101,99,116,46,116,111,112,32,45,32,98,111,117,110,100,97,114,105,101,115,46,116,111,112,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,105,103,104,116,58,32,123,92,110,32,32,32,32,32,32,119,105,100,116,104,58,32,98,111,117,110,100,97,114,105,101,115,46,114,105,103,104,116,32,45,32,114,101,102,82,101,99,116,46,114,105,103,104,116,44,92,110,32,32,32,32,32,32,104,101,105,103,104,116,58,32,98,111,117,110,100,97,114,105,101,115,46,104,101,105,103,104,116,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,111,116,116,111,109,58,32,123,92,110,32,32,32,32,32,32,119,105,100,116,104,58,32,98,111,117,110,100,97,114,105,101,115,46,119,105,100,116,104,44,92,110,32,32,32,32,32,32,104,101,105,103,104,116,58,32,98,111,117,110,100,97,114,105,101,115,46,98,111,116,116,111,109,32,45,32,114,101,102,82,101,99,116,46,98,111,116,116,111,109,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,101,102,116,58,32,123,92,110,32,32,32,32,32,32,119,105,100,116,104,58,32,114,101,102,82,101,99,116,46,108,101,102,116,32,45,32,98,111,117,110,100,97,114,105,101,115,46,108,101,102,116,44,92,110,32,32,32,32,32,32,104,101,105,103,104,116,58,32,98,111,117,110,100,97,114,105,101,115,46,104,101,105,103,104,116,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,115,111,114,116,101,100,65,114,101,97,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,114,101,99,116,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,95,101,120,116,101,110,100,115,40,123,92,110,32,32,32,32,32,32,107,101,121,58,32,107,101,121,92,110,32,32,32,32,125,44,32,114,101,99,116,115,91,107,101,121,93,44,32,123,92,110,32,32,32,32,32,32,97,114,101,97,58,32,103,101,116,65,114,101,97,40,114,101,99,116,115,91,107,101,121,93,41,92,110,32,32,32,32,125,41,59,92,110,32,32,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,98,46,97,114,101,97,32,45,32,97,46,97,114,101,97,59,92,110,32,32,125,41,59,92,110,92,110,32,32,118,97,114,32,102,105,108,116,101,114,101,100,65,114,101,97,115,32,61,32,115,111,114,116,101,100,65,114,101,97,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,95,114,101,102,50,41,32,123,92,110,32,32,32,32,118,97,114,32,119,105,100,116,104,32,61,32,95,114,101,102,50,46,119,105,100,116,104,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,32,61,32,95,114,101,102,50,46,104,101,105,103,104,116,59,92,110,32,32,32,32,114,101,116,117,114,110,32,119,105,100,116,104,32,62,61,32,112,111,112,112,101,114,46,99,108,105,101,110,116,87,105,100,116,104,32,38,38,32,104,101,105,103,104,116,32,62,61,32,112,111,112,112,101,114,46,99,108,105,101,110,116,72,101,105,103,104,116,59,92,110,32,32,125,41,59,92,110,92,110,32,32,118,97,114,32,99,111,109,112,117,116,101,100,80,108,97,99,101,109,101,110,116,32,61,32,102,105,108,116,101,114,101,100,65,114,101,97,115,46,108,101,110,103,116,104,32,62,32,48,32,63,32,102,105,108,116,101,114,101,100,65,114,101,97,115,91,48,93,46,107,101,121,32,58,32,115,111,114,116,101,100,65,114,101,97,115,91,48,93,46,107,101,121,59,92,110,92,110,32,32,118,97,114,32,118,97,114,105,97,116,105,111,110,32,61,32,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,39,45,39,41,91,49,93,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,111,109,112,117,116,101,100,80,108,97,99,101,109,101,110,116,32,43,32,40,118,97,114,105,97,116,105,111,110,32,63,32,39,45,39,32,43,32,118,97,114,105,97,116,105,111,110,32,58,32,39,39,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,32,111,102,102,115,101,116,115,32,116,111,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,116,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,69,108,101,109,101,110,116,125,32,112,111,112,112,101,114,32,45,32,116,104,101,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,92,110,32,42,32,64,112,97,114,97,109,32,123,69,108,101,109,101,110,116,125,32,114,101,102,101,114,101,110,99,101,32,45,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,32,40,116,104,101,32,112,111,112,112,101,114,32,119,105,108,108,32,98,101,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,105,115,41,92,110,32,42,32,64,112,97,114,97,109,32,123,69,108,101,109,101,110,116,125,32,102,105,120,101,100,80,111,115,105,116,105,111,110,32,45,32,105,115,32,105,110,32,102,105,120,101,100,32,112,111,115,105,116,105,111,110,32,109,111,100,101,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,65,110,32,111,98,106,101,99,116,32,99,111,110,116,97,105,110,105,110,103,32,116,104,101,32,111,102,102,115,101,116,115,32,119,104,105,99,104,32,119,105,108,108,32,98,101,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,112,111,112,112,101,114,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,82,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,40,115,116,97,116,101,44,32,112,111,112,112,101,114,44,32,114,101,102,101,114,101,110,99,101,41,32,123,92,110,32,32,118,97,114,32,102,105,120,101,100,80,111,115,105,116,105,111,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,51,32,38,38,32,97,114,103,117,109,101,110,116,115,91,51,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,51,93,32,58,32,110,117,108,108,59,92,110,92,110,32,32,118,97,114,32,99,111,109,109,111,110,79,102,102,115,101,116,80,97,114,101,110,116,32,61,32,102,105,120,101,100,80,111,115,105,116,105,111,110,32,63,32,103,101,116,70,105,120,101,100,80,111,115,105,116,105,111,110,79,102,102,115,101,116,80,97,114,101,110,116,40,112,111,112,112,101,114,41,32,58,32,102,105,110,100,67,111,109,109,111,110,79,102,102,115,101,116,80,97,114,101,110,116,40,112,111,112,112,101,114,44,32,103,101,116,82,101,102,101,114,101,110,99,101,78,111,100,101,40,114,101,102,101,114,101,110,99,101,41,41,59,92,110,32,32,114,101,116,117,114,110,32,103,101,116,79,102,102,115,101,116,82,101,99,116,82,101,108,97,116,105,118,101,84,111,65,114,98,105,116,114,97,114,121,78,111,100,101,40,114,101,102,101,114,101,110,99,101,44,32,99,111,109,109,111,110,79,102,102,115,101,116,80,97,114,101,110,116,44,32,102,105,120,101,100,80,111,115,105,116,105,111,110,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,32,116,104,101,32,111,117,116,101,114,32,115,105,122,101,115,32,111,102,32,116,104,101,32,103,105,118,101,110,32,101,108,101,109,101,110,116,32,40,111,102,102,115,101,116,32,115,105,122,101,32,43,32,109,97,114,103,105,110,115,41,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,111,98,106,101,99,116,32,99,111,110,116,97,105,110,105,110,103,32,119,105,100,116,104,32,97,110,100,32,104,101,105,103,104,116,32,112,114,111,112,101,114,116,105,101,115,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,79,117,116,101,114,83,105,122,101,115,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,119,105,110,100,111,119,32,61,32,101,108,101,109,101,110,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,59,92,110,32,32,118,97,114,32,115,116,121,108,101,115,32,61,32,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,108,101,109,101,110,116,41,59,92,110,32,32,118,97,114,32,120,32,61,32,112,97,114,115,101,70,108,111,97,116,40,115,116,121,108,101,115,46,109,97,114,103,105,110,84,111,112,32,124,124,32,48,41,32,43,32,112,97,114,115,101,70,108,111,97,116,40,115,116,121,108,101,115,46,109,97,114,103,105,110,66,111,116,116,111,109,32,124,124,32,48,41,59,92,110,32,32,118,97,114,32,121,32,61,32,112,97,114,115,101,70,108,111,97,116,40,115,116,121,108,101,115,46,109,97,114,103,105,110,76,101,102,116,32,124,124,32,48,41,32,43,32,112,97,114,115,101,70,108,111,97,116,40,115,116,121,108,101,115,46,109,97,114,103,105,110,82,105,103,104,116,32,124,124,32,48,41,59,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,123,92,110,32,32,32,32,119,105,100,116,104,58,32,101,108,101,109,101,110,116,46,111,102,102,115,101,116,87,105,100,116,104,32,43,32,121,44,92,110,32,32,32,32,104,101,105,103,104,116,58,32,101,108,101,109,101,110,116,46,111,102,102,115,101,116,72,101,105,103,104,116,32,43,32,120,92,110,32,32,125,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,32,116,104,101,32,111,112,112,111,115,105,116,101,32,112,108,97,99,101,109,101,110,116,32,111,102,32,116,104,101,32,103,105,118,101,110,32,111,110,101,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,83,116,114,105,110,103,125,32,112,108,97,99,101,109,101,110,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,83,116,114,105,110,103,125,32,102,108,105,112,112,101,100,32,112,108,97,99,101,109,101,110,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,79,112,112,111,115,105,116,101,80,108,97,99,101,109,101,110,116,40,112,108,97,99,101,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,104,97,115,104,32,61,32,123,32,108,101,102,116,58,32,39,114,105,103,104,116,39,44,32,114,105,103,104,116,58,32,39,108,101,102,116,39,44,32,98,111,116,116,111,109,58,32,39,116,111,112,39,44,32,116,111,112,58,32,39,98,111,116,116,111,109,39,32,125,59,92,110,32,32,114,101,116,117,114,110,32,112,108,97,99,101,109,101,110,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,32,102,117,110,99,116,105,111,110,32,40,109,97,116,99,104,101,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,97,115,104,91,109,97,116,99,104,101,100,93,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,32,111,102,102,115,101,116,115,32,116,111,32,116,104,101,32,112,111,112,112,101,114,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,112,111,115,105,116,105,111,110,32,45,32,67,83,83,32,112,111,115,105,116,105,111,110,32,116,104,101,32,80,111,112,112,101,114,32,119,105,108,108,32,103,101,116,32,97,112,112,108,105,101,100,92,110,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,112,111,112,112,101,114,32,45,32,116,104,101,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,114,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,32,45,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,111,102,102,115,101,116,115,32,40,116,104,101,32,112,111,112,112,101,114,32,119,105,108,108,32,98,101,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,105,115,41,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,112,108,97,99,101,109,101,110,116,32,45,32,111,110,101,32,111,102,32,116,104,101,32,118,97,108,105,100,32,112,108,97,99,101,109,101,110,116,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,112,111,112,112,101,114,79,102,102,115,101,116,115,32,45,32,65,110,32,111,98,106,101,99,116,32,99,111,110,116,97,105,110,105,110,103,32,116,104,101,32,111,102,102,115,101,116,115,32,119,104,105,99,104,32,119,105,108,108,32,98,101,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,112,111,112,112,101,114,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,80,111,112,112,101,114,79,102,102,115,101,116,115,40,112,111,112,112,101,114,44,32,114,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,44,32,112,108,97,99,101,109,101,110,116,41,32,123,92,110,32,32,112,108,97,99,101,109,101,110,116,32,61,32,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,39,45,39,41,91,48,93,59,92,110,92,110,32,32,47,47,32,71,101,116,32,112,111,112,112,101,114,32,110,111,100,101,32,115,105,122,101,115,92,110,32,32,118,97,114,32,112,111,112,112,101,114,82,101,99,116,32,61,32,103,101,116,79,117,116,101,114,83,105,122,101,115,40,112,111,112,112,101,114,41,59,92,110,92,110,32,32,47,47,32,65,100,100,32,112,111,115,105,116,105,111,110,44,32,119,105,100,116,104,32,97,110,100,32,104,101,105,103,104,116,32,116,111,32,111,117,114,32,111,102,102,115,101,116,115,32,111,98,106,101,99,116,92,110,32,32,118,97,114,32,112,111,112,112,101,114,79,102,102,115,101,116,115,32,61,32,123,92,110,32,32,32,32,119,105,100,116,104,58,32,112,111,112,112,101,114,82,101,99,116,46,119,105,100,116,104,44,92,110,32,32,32,32,104,101,105,103,104,116,58,32,112,111,112,112,101,114,82,101,99,116,46,104,101,105,103,104,116,92,110,32,32,125,59,92,110,92,110,32,32,47,47,32,100,101,112,101,110,100,105,110,103,32,98,121,32,116,104,101,32,112,111,112,112,101,114,32,112,108,97,99,101,109,101,110,116,32,119,101,32,104,97,118,101,32,116,111,32,99,111,109,112,117,116,101,32,105,116,115,32,111,102,102,115,101,116,115,32,115,108,105,103,104,116,108,121,32,100,105,102,102,101,114,101,110,116,108,121,92,110,32,32,118,97,114,32,105,115,72,111,114,105,122,32,61,32,91,39,114,105,103,104,116,39,44,32,39,108,101,102,116,39,93,46,105,110,100,101,120,79,102,40,112,108,97,99,101,109,101,110,116,41,32,33,61,61,32,45,49,59,92,110,32,32,118,97,114,32,109,97,105,110,83,105,100,101,32,61,32,105,115,72,111,114,105,122,32,63,32,39,116,111,112,39,32,58,32,39,108,101,102,116,39,59,92,110,32,32,118,97,114,32,115,101,99,111,110,100,97,114,121,83,105,100,101,32,61,32,105,115,72,111,114,105,122,32,63,32,39,108,101,102,116,39,32,58,32,39,116,111,112,39,59,92,110,32,32,118,97,114,32,109,101,97,115,117,114,101,109,101,110,116,32,61,32,105,115,72,111,114,105,122,32,63,32,39,104,101,105,103,104,116,39,32,58,32,39,119,105,100,116,104,39,59,92,110,32,32,118,97,114,32,115,101,99,111,110,100,97,114,121,77,101,97,115,117,114,101,109,101,110,116,32,61,32,33,105,115,72,111,114,105,122,32,63,32,39,104,101,105,103,104,116,39,32,58,32,39,119,105,100,116,104,39,59,92,110,92,110,32,32,112,111,112,112,101,114,79,102,102,115,101,116,115,91,109,97,105,110,83,105,100,101,93,32,61,32,114,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,91,109,97,105,110,83,105,100,101,93,32,43,32,114,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,91,109,101,97,115,117,114,101,109,101,110,116,93,32,47,32,50,32,45,32,112,111,112,112,101,114,82,101,99,116,91,109,101,97,115,117,114,101,109,101,110,116,93,32,47,32,50,59,92,110,32,32,105,102,32,40,112,108,97,99,101,109,101,110,116,32,61,61,61,32,115,101,99,111,110,100,97,114,121,83,105,100,101,41,32,123,92,110,32,32,32,32,112,111,112,112,101,114,79,102,102,115,101,116,115,91,115,101,99,111,110,100,97,114,121,83,105,100,101,93,32,61,32,114,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,91,115,101,99,111,110,100,97,114,121,83,105,100,101,93,32,45,32,112,111,112,112,101,114,82,101,99,116,91,115,101,99,111,110,100,97,114,121,77,101,97,115,117,114,101,109,101,110,116,93,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,112,111,112,112,101,114,79,102,102,115,101,116,115,91,115,101,99,111,110,100,97,114,121,83,105,100,101,93,32,61,32,114,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,91,103,101,116,79,112,112,111,115,105,116,101,80,108,97,99,101,109,101,110,116,40,115,101,99,111,110,100,97,114,121,83,105,100,101,41,93,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,112,111,112,112,101,114,79,102,102,115,101,116,115,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,77,105,109,105,99,115,32,116,104,101,32,96,102,105,110,100,96,32,109,101,116,104,111,100,32,111,102,32,65,114,114,97,121,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,65,114,114,97,121,125,32,97,114,114,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,112,114,111,112,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,118,97,108,117,101,92,110,32,42,32,64,114,101,116,117,114,110,115,32,105,110,100,101,120,32,111,114,32,45,49,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,102,105,110,100,40,97,114,114,44,32,99,104,101,99,107,41,32,123,92,110,32,32,47,47,32,117,115,101,32,110,97,116,105,118,101,32,102,105,110,100,32,105,102,32,115,117,112,112,111,114,116,101,100,92,110,32,32,105,102,32,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,114,46,102,105,110,100,40,99,104,101,99,107,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,117,115,101,32,96,102,105,108,116,101,114,96,32,116,111,32,111,98,116,97,105,110,32,116,104,101,32,115,97,109,101,32,98,101,104,97,118,105,111,114,32,111,102,32,96,102,105,110,100,96,92,110,32,32,114,101,116,117,114,110,32,97,114,114,46,102,105,108,116,101,114,40,99,104,101,99,107,41,91,48,93,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,101,116,117,114,110,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,109,97,116,99,104,105,110,103,32,111,98,106,101,99,116,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,65,114,114,97,121,125,32,97,114,114,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,112,114,111,112,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,118,97,108,117,101,92,110,32,42,32,64,114,101,116,117,114,110,115,32,105,110,100,101,120,32,111,114,32,45,49,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,102,105,110,100,73,110,100,101,120,40,97,114,114,44,32,112,114,111,112,44,32,118,97,108,117,101,41,32,123,92,110,32,32,47,47,32,117,115,101,32,110,97,116,105,118,101,32,102,105,110,100,73,110,100,101,120,32,105,102,32,115,117,112,112,111,114,116,101,100,92,110,32,32,105,102,32,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,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,114,46,102,105,110,100,73,110,100,101,120,40,102,117,110,99,116,105,111,110,32,40,99,117,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,117,114,91,112,114,111,112,93,32,61,61,61,32,118,97,108,117,101,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,117,115,101,32,96,102,105,110,100,96,32,43,32,96,105,110,100,101,120,79,102,96,32,105,102,32,96,102,105,110,100,73,110,100,101,120,96,32,105,115,110,39,116,32,115,117,112,112,111,114,116,101,100,92,110,32,32,118,97,114,32,109,97,116,99,104,32,61,32,102,105,110,100,40,97,114,114,44,32,102,117,110,99,116,105,111,110,32,40,111,98,106,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,111,98,106,91,112,114,111,112,93,32,61,61,61,32,118,97,108,117,101,59,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,97,114,114,46,105,110,100,101,120,79,102,40,109,97,116,99,104,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,76,111,111,112,32,116,114,111,117,103,104,32,116,104,101,32,108,105,115,116,32,111,102,32,109,111,100,105,102,105,101,114,115,32,97,110,100,32,114,117,110,32,116,104,101,109,32,105,110,32,111,114,100,101,114,44,92,110,32,42,32,101,97,99,104,32,111,102,32,116,104,101,109,32,119,105,108,108,32,116,104,101,110,32,101,100,105,116,32,116,104,101,32,100,97,116,97,32,111,98,106,101,99,116,46,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,112,97,114,97,109,32,123,100,97,116,97,79,98,106,101,99,116,125,32,100,97,116,97,92,110,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,109,111,100,105,102,105,101,114,115,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,101,110,100,115,32,45,32,79,112,116,105,111,110,97,108,32,109,111,100,105,102,105,101,114,32,110,97,109,101,32,117,115,101,100,32,97,115,32,115,116,111,112,112,101,114,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,100,97,116,97,79,98,106,101,99,116,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,114,117,110,77,111,100,105,102,105,101,114,115,40,109,111,100,105,102,105,101,114,115,44,32,100,97,116,97,44,32,101,110,100,115,41,32,123,92,110,32,32,118,97,114,32,109,111,100,105,102,105,101,114,115,84,111,82,117,110,32,61,32,101,110,100,115,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,109,111,100,105,102,105,101,114,115,32,58,32,109,111,100,105,102,105,101,114,115,46,115,108,105,99,101,40,48,44,32,102,105,110,100,73,110,100,101,120,40,109,111,100,105,102,105,101,114,115,44,32,39,110,97,109,101,39,44,32,101,110,100,115,41,41,59,92,110,92,110,32,32,109,111,100,105,102,105,101,114,115,84,111,82,117,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,109,111,100,105,102,105,101,114,41,32,123,92,110,32,32,32,32,105,102,32,40,109,111,100,105,102,105,101,114,91,39,102,117,110,99,116,105,111,110,39,93,41,32,123,92,110,32,32,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,100,111,116,45,110,111,116,97,116,105,111,110,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,39,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,39,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,118,97,114,32,102,110,32,61,32,109,111,100,105,102,105,101,114,91,39,102,117,110,99,116,105,111,110,39,93,32,124,124,32,109,111,100,105,102,105,101,114,46,102,110,59,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,108,105,110,101,32,100,111,116,45,110,111,116,97,116,105,111,110,92,110,32,32,32,32,105,102,32,40,109,111,100,105,102,105,101,114,46,101,110,97,98,108,101,100,32,38,38,32,105,115,70,117,110,99,116,105,111,110,40,102,110,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,65,100,100,32,112,114,111,112,101,114,116,105,101,115,32,116,111,32,111,102,102,115,101,116,115,32,116,111,32,109,97,107,101,32,116,104,101,109,32,97,32,99,111,109,112,108,101,116,101,32,99,108,105,101,110,116,82,101,99,116,32,111,98,106,101,99,116,92,110,32,32,32,32,32,32,47,47,32,119,101,32,100,111,32,116,104,105,115,32,98,101,102,111,114,101,32,101,97,99,104,32,109,111,100,105,102,105,101,114,32,116,111,32,109,97,107,101,32,115,117,114,101,32,116,104,101,32,112,114,101,118,105,111,117,115,32,111,110,101,32,100,111,101,115,110,39,116,92,110,32,32,32,32,32,32,47,47,32,109,101,115,115,32,119,105,116,104,32,116,104,101,115,101,32,118,97,108,117,101,115,92,110,32,32,32,32,32,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,32,61,32,103,101,116,67,108,105,101,110,116,82,101,99,116,40,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,41,59,92,110,32,32,32,32,32,32,100,97,116,97,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,32,61,32,103,101,116,67,108,105,101,110,116,82,101,99,116,40,100,97,116,97,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,41,59,92,110,92,110,32,32,32,32,32,32,100,97,116,97,32,61,32,102,110,40,100,97,116,97,44,32,109,111,100,105,102,105,101,114,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,85,112,100,97,116,101,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,112,111,112,112,101,114,44,32,99,111,109,112,117,116,105,110,103,32,116,104,101,32,110,101,119,32,111,102,102,115,101,116,115,32,97,110,100,32,97,112,112,108,121,105,110,103,92,110,32,42,32,116,104,101,32,110,101,119,32,115,116,121,108,101,46,60,98,114,32,47,62,92,110,32,42,32,80,114,101,102,101,114,32,96,115,99,104,101,100,117,108,101,85,112,100,97,116,101,96,32,111,118,101,114,32,96,117,112,100,97,116,101,96,32,98,101,99,97,117,115,101,32,111,102,32,112,101,114,102,111,114,109,97,110,99,101,32,114,101,97,115,111,110,115,46,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,40,41,32,123,92,110,32,32,47,47,32,105,102,32,112,111,112,112,101,114,32,105,115,32,100,101,115,116,114,111,121,101,100,44,32,100,111,110,39,116,32,112,101,114,102,111,114,109,32,97,110,121,32,102,117,114,116,104,101,114,32,117,112,100,97,116,101,92,110,32,32,105,102,32,40,116,104,105,115,46,115,116,97,116,101,46,105,115,68,101,115,116,114,111,121,101,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,100,97,116,97,32,61,32,123,92,110,32,32,32,32,105,110,115,116,97,110,99,101,58,32,116,104,105,115,44,92,110,32,32,32,32,115,116,121,108,101,115,58,32,123,125,44,92,110,32,32,32,32,97,114,114,111,119,83,116,121,108,101,115,58,32,123,125,44,92,110,32,32,32,32,97,116,116,114,105,98,117,116,101,115,58,32,123,125,44,92,110,32,32,32,32,102,108,105,112,112,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,111,102,102,115,101,116,115,58,32,123,125,92,110,32,32,125,59,92,110,92,110,32,32,47,47,32,99,111,109,112,117,116,101,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,32,111,102,102,115,101,116,115,92,110,32,32,100,97,116,97,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,32,61,32,103,101,116,82,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,40,116,104,105,115,46,115,116,97,116,101,44,32,116,104,105,115,46,112,111,112,112,101,114,44,32,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,32,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,59,92,110,92,110,32,32,47,47,32,99,111,109,112,117,116,101,32,97,117,116,111,32,112,108,97,99,101,109,101,110,116,44,32,115,116,111,114,101,32,112,108,97,99,101,109,101,110,116,32,105,110,115,105,100,101,32,116,104,101,32,100,97,116,97,32,111,98,106,101,99,116,44,92,110,32,32,47,47,32,109,111,100,105,102,105,101,114,115,32,119,105,108,108,32,98,101,32,97,98,108,101,32,116,111,32,101,100,105,116,32,96,112,108,97,99,101,109,101,110,116,96,32,105,102,32,110,101,101,100,101,100,92,110,32,32,47,47,32,97,110,100,32,114,101,102,101,114,32,116,111,32,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,32,116,111,32,107,110,111,119,32,116,104,101,32,111,114,105,103,105,110,97,108,32,118,97,108,117,101,92,110,32,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,32,61,32,99,111,109,112,117,116,101,65,117,116,111,80,108,97,99,101,109,101,110,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,32,100,97,116,97,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,32,116,104,105,115,46,112,111,112,112,101,114,44,32,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,32,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,32,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,59,92,110,92,110,32,32,47,47,32,115,116,111,114,101,32,116,104,101,32,99,111,109,112,117,116,101,100,32,112,108,97,99,101,109,101,110,116,32,105,110,115,105,100,101,32,96,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,96,92,110,32,32,100,97,116,97,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,32,61,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,59,92,110,92,110,32,32,100,97,116,97,46,112,111,115,105,116,105,111,110,70,105,120,101,100,32,61,32,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,59,92,110,92,110,32,32,47,47,32,99,111,109,112,117,116,101,32,116,104,101,32,112,111,112,112,101,114,32,111,102,102,115,101,116,115,92,110,32,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,32,61,32,103,101,116,80,111,112,112,101,114,79,102,102,115,101,116,115,40,116,104,105,115,46,112,111,112,112,101,114,44,32,100,97,116,97,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,41,59,92,110,92,110,32,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,46,112,111,115,105,116,105,111,110,32,61,32,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,32,63,32,39,102,105,120,101,100,39,32,58,32,39,97,98,115,111,108,117,116,101,39,59,92,110,92,110,32,32,47,47,32,114,117,110,32,116,104,101,32,109,111,100,105,102,105,101,114,115,92,110,32,32,100,97,116,97,32,61,32,114,117,110,77,111,100,105,102,105,101,114,115,40,116,104,105,115,46,109,111,100,105,102,105,101,114,115,44,32,100,97,116,97,41,59,92,110,92,110,32,32,47,47,32,116,104,101,32,102,105,114,115,116,32,96,117,112,100,97,116,101,96,32,119,105,108,108,32,99,97,108,108,32,96,111,110,67,114,101,97,116,101,96,32,99,97,108,108,98,97,99,107,92,110,32,32,47,47,32,116,104,101,32,111,116,104,101,114,32,111,110,101,115,32,119,105,108,108,32,99,97,108,108,32,96,111,110,85,112,100,97,116,101,96,32,99,97,108,108,98,97,99,107,92,110,32,32,105,102,32,40,33,116,104,105,115,46,115,116,97,116,101,46,105,115,67,114,101,97,116,101,100,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,116,97,116,101,46,105,115,67,114,101,97,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,114,101,97,116,101,40,100,97,116,97,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,40,100,97,116,97,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,72,101,108,112,101,114,32,117,115,101,100,32,116,111,32,107,110,111,119,32,105,102,32,116,104,101,32,103,105,118,101,110,32,109,111,100,105,102,105,101,114,32,105,115,32,101,110,97,98,108,101,100,46,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,66,111,111,108,101,97,110,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,77,111,100,105,102,105,101,114,69,110,97,98,108,101,100,40,109,111,100,105,102,105,101,114,115,44,32,109,111,100,105,102,105,101,114,78,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,109,111,100,105,102,105,101,114,115,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,95,114,101,102,46,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,101,110,97,98,108,101,100,32,61,32,95,114,101,102,46,101,110,97,98,108,101,100,59,92,110,32,32,32,32,114,101,116,117,114,110,32,101,110,97,98,108,101,100,32,38,38,32,110,97,109,101,32,61,61,61,32,109,111,100,105,102,105,101,114,78,97,109,101,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,32,116,104,101,32,112,114,101,102,105,120,101,100,32,115,117,112,112,111,114,116,101,100,32,112,114,111,112,101,114,116,121,32,110,97,109,101,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,83,116,114,105,110,103,125,32,112,114,111,112,101,114,116,121,32,40,99,97,109,101,108,67,97,115,101,41,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,83,116,114,105,110,103,125,32,112,114,101,102,105,120,101,100,32,112,114,111,112,101,114,116,121,32,40,99,97,109,101,108,67,97,115,101,32,111,114,32,80,97,115,99,97,108,67,97,115,101,44,32,100,101,112,101,110,100,105,110,103,32,111,110,32,116,104,101,32,118,101,110,100,111,114,32,112,114,101,102,105,120,41,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,83,117,112,112,111,114,116,101,100,80,114,111,112,101,114,116,121,78,97,109,101,40,112,114,111,112,101,114,116,121,41,32,123,92,110,32,32,118,97,114,32,112,114,101,102,105,120,101,115,32,61,32,91,102,97,108,115,101,44,32,39,109,115,39,44,32,39,87,101,98,107,105,116,39,44,32,39,77,111,122,39,44,32,39,79,39,93,59,92,110,32,32,118,97,114,32,117,112,112,101,114,80,114,111,112,32,61,32,112,114,111,112,101,114,116,121,46,99,104,97,114,65,116,40,48,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,32,43,32,112,114,111,112,101,114,116,121,46,115,108,105,99,101,40,49,41,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,112,114,101,102,105,120,101,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,101,102,105,120,32,61,32,112,114,101,102,105,120,101,115,91,105,93,59,92,110,32,32,32,32,118,97,114,32,116,111,67,104,101,99,107,32,61,32,112,114,101,102,105,120,32,63,32,39,39,32,43,32,112,114,101,102,105,120,32,43,32,117,112,112,101,114,80,114,111,112,32,58,32,112,114,111,112,101,114,116,121,59,92,110,32,32,32,32,105,102,32,40,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,116,111,67,104,101,99,107,93,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,111,67,104,101,99,107,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,115,116,114,111,121,115,32,116,104,101,32,112,111,112,112,101,114,46,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,40,41,32,123,92,110,32,32,116,104,105,115,46,115,116,97,116,101,46,105,115,68,101,115,116,114,111,121,101,100,32,61,32,116,114,117,101,59,92,110,92,110,32,32,47,47,32,116,111,117,99,104,32,68,79,77,32,111,110,108,121,32,105,102,32,96,97,112,112,108,121,83,116,121,108,101,96,32,109,111,100,105,102,105,101,114,32,105,115,32,101,110,97,98,108,101,100,92,110,32,32,105,102,32,40,105,115,77,111,100,105,102,105,101,114,69,110,97,98,108,101,100,40,116,104,105,115,46,109,111,100,105,102,105,101,114,115,44,32,39,97,112,112,108,121,83,116,121,108,101,39,41,41,32,123,92,110,32,32,32,32,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,39,120,45,112,108,97,99,101,109,101,110,116,39,41,59,92,110,32,32,32,32,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,32,61,32,39,39,59,92,110,32,32,32,32,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,116,111,112,32,61,32,39,39,59,92,110,32,32,32,32,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,108,101,102,116,32,61,32,39,39,59,92,110,32,32,32,32,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,114,105,103,104,116,32,61,32,39,39,59,92,110,32,32,32,32,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,98,111,116,116,111,109,32,61,32,39,39,59,92,110,32,32,32,32,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,32,61,32,39,39,59,92,110,32,32,32,32,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,91,103,101,116,83,117,112,112,111,114,116,101,100,80,114,111,112,101,114,116,121,78,97,109,101,40,39,116,114,97,110,115,102,111,114,109,39,41,93,32,61,32,39,39,59,92,110,32,32,125,92,110,92,110,32,32,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,59,92,110,92,110,32,32,47,47,32,114,101,109,111,118,101,32,116,104,101,32,112,111,112,112,101,114,32,105,102,32,117,115,101,114,32,101,120,112,108,105,99,105,116,108,121,32,97,115,107,101,100,32,102,111,114,32,116,104,101,32,100,101,108,101,116,105,111,110,32,111,110,32,100,101,115,116,114,111,121,92,110,32,32,47,47,32,100,111,32,110,111,116,32,117,115,101,32,96,114,101,109,111,118,101,96,32,98,101,99,97,117,115,101,32,73,69,49,49,32,100,111,101,115,110,39,116,32,115,117,112,112,111,114,116,32,105,116,92,110,32,32,105,102,32,40,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,41,32,123,92,110,32,32,32,32,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,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,32,116,104,101,32,119,105,110,100,111,119,32,97,115,115,111,99,105,97,116,101,100,32,119,105,116,104,32,116,104,101,32,101,108,101,109,101,110,116,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,87,105,110,100,111,119,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,87,105,110,100,111,119,40,101,108,101,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,111,119,110,101,114,68,111,99,117,109,101,110,116,32,61,32,101,108,101,109,101,110,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,59,92,110,32,32,114,101,116,117,114,110,32,111,119,110,101,114,68,111,99,117,109,101,110,116,32,63,32,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,32,58,32,119,105,110,100,111,119,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,116,116,97,99,104,84,111,83,99,114,111,108,108,80,97,114,101,110,116,115,40,115,99,114,111,108,108,80,97,114,101,110,116,44,32,101,118,101,110,116,44,32,99,97,108,108,98,97,99,107,44,32,115,99,114,111,108,108,80,97,114,101,110,116,115,41,32,123,92,110,32,32,118,97,114,32,105,115,66,111,100,121,32,61,32,115,99,114,111,108,108,80,97,114,101,110,116,46,110,111,100,101,78,97,109,101,32,61,61,61,32,39,66,79,68,89,39,59,92,110,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,105,115,66,111,100,121,32,63,32,115,99,114,111,108,108,80,97,114,101,110,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,32,58,32,115,99,114,111,108,108,80,97,114,101,110,116,59,92,110,32,32,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,118,101,110,116,44,32,99,97,108,108,98,97,99,107,44,32,123,32,112,97,115,115,105,118,101,58,32,116,114,117,101,32,125,41,59,92,110,92,110,32,32,105,102,32,40,33,105,115,66,111,100,121,41,32,123,92,110,32,32,32,32,97,116,116,97,99,104,84,111,83,99,114,111,108,108,80,97,114,101,110,116,115,40,103,101,116,83,99,114,111,108,108,80,97,114,101,110,116,40,116,97,114,103,101,116,46,112,97,114,101,110,116,78,111,100,101,41,44,32,101,118,101,110,116,44,32,99,97,108,108,98,97,99,107,44,32,115,99,114,111,108,108,80,97,114,101,110,116,115,41,59,92,110,32,32,125,92,110,32,32,115,99,114,111,108,108,80,97,114,101,110,116,115,46,112,117,115,104,40,116,97,114,103,101,116,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,83,101,116,117,112,32,110,101,101,100,101,100,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,32,117,115,101,100,32,116,111,32,117,112,100,97,116,101,32,116,104,101,32,112,111,112,112,101,114,32,112,111,115,105,116,105,111,110,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,115,101,116,117,112,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,114,101,102,101,114,101,110,99,101,44,32,111,112,116,105,111,110,115,44,32,115,116,97,116,101,44,32,117,112,100,97,116,101,66,111,117,110,100,41,32,123,92,110,32,32,47,47,32,82,101,115,105,122,101,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,32,111,110,32,119,105,110,100,111,119,92,110,32,32,115,116,97,116,101,46,117,112,100,97,116,101,66,111,117,110,100,32,61,32,117,112,100,97,116,101,66,111,117,110,100,59,92,110,32,32,103,101,116,87,105,110,100,111,119,40,114,101,102,101,114,101,110,99,101,41,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,114,101,115,105,122,101,39,44,32,115,116,97,116,101,46,117,112,100,97,116,101,66,111,117,110,100,44,32,123,32,112,97,115,115,105,118,101,58,32,116,114,117,101,32,125,41,59,92,110,92,110,32,32,47,47,32,83,99,114,111,108,108,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,32,111,110,32,115,99,114,111,108,108,32,112,97,114,101,110,116,115,92,110,32,32,118,97,114,32,115,99,114,111,108,108,69,108,101,109,101,110,116,32,61,32,103,101,116,83,99,114,111,108,108,80,97,114,101,110,116,40,114,101,102,101,114,101,110,99,101,41,59,92,110,32,32,97,116,116,97,99,104,84,111,83,99,114,111,108,108,80,97,114,101,110,116,115,40,115,99,114,111,108,108,69,108,101,109,101,110,116,44,32,39,115,99,114,111,108,108,39,44,32,115,116,97,116,101,46,117,112,100,97,116,101,66,111,117,110,100,44,32,115,116,97,116,101,46,115,99,114,111,108,108,80,97,114,101,110,116,115,41,59,92,110,32,32,115,116,97,116,101,46,115,99,114,111,108,108,69,108,101,109,101,110,116,32,61,32,115,99,114,111,108,108,69,108,101,109,101,110,116,59,92,110,32,32,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,32,61,32,116,114,117,101,59,92,110,92,110,32,32,114,101,116,117,114,110,32,115,116,97,116,101,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,73,116,32,119,105,108,108,32,97,100,100,32,114,101,115,105,122,101,47,115,99,114,111,108,108,32,101,118,101,110,116,115,32,97,110,100,32,115,116,97,114,116,32,114,101,99,97,108,99,117,108,97,116,105,110,103,92,110,32,42,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,32,119,104,101,110,32,116,104,101,121,32,97,114,101,32,116,114,105,103,103,101,114,101,100,46,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,101,110,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,32,123,92,110,32,32,105,102,32,40,33,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,41,32,123,92,110,32,32,32,32,116,104,105,115,46,115,116,97,116,101,32,61,32,115,101,116,117,112,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,32,116,104,105,115,46,111,112,116,105,111,110,115,44,32,116,104,105,115,46,115,116,97,116,101,44,32,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,101,109,111,118,101,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,32,117,115,101,100,32,116,111,32,117,112,100,97,116,101,32,116,104,101,32,112,111,112,112,101,114,32,112,111,115,105,116,105,111,110,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,114,101,102,101,114,101,110,99,101,44,32,115,116,97,116,101,41,32,123,92,110,32,32,47,47,32,82,101,109,111,118,101,32,114,101,115,105,122,101,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,32,111,110,32,119,105,110,100,111,119,92,110,32,32,103,101,116,87,105,110,100,111,119,40,114,101,102,101,114,101,110,99,101,41,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,114,101,115,105,122,101,39,44,32,115,116,97,116,101,46,117,112,100,97,116,101,66,111,117,110,100,41,59,92,110,92,110,32,32,47,47,32,82,101,109,111,118,101,32,115,99,114,111,108,108,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,32,111,110,32,115,99,114,111,108,108,32,112,97,114,101,110,116,115,92,110,32,32,115,116,97,116,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,32,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,116,97,114,103,101,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,115,99,114,111,108,108,39,44,32,115,116,97,116,101,46,117,112,100,97,116,101,66,111,117,110,100,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,47,47,32,82,101,115,101,116,32,115,116,97,116,101,92,110,32,32,115,116,97,116,101,46,117,112,100,97,116,101,66,111,117,110,100,32,61,32,110,117,108,108,59,92,110,32,32,115,116,97,116,101,46,115,99,114,111,108,108,80,97,114,101,110,116,115,32,61,32,91,93,59,92,110,32,32,115,116,97,116,101,46,115,99,114,111,108,108,69,108,101,109,101,110,116,32,61,32,110,117,108,108,59,92,110,32,32,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,114,101,116,117,114,110,32,115,116,97,116,101,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,73,116,32,119,105,108,108,32,114,101,109,111,118,101,32,114,101,115,105,122,101,47,115,99,114,111,108,108,32,101,118,101,110,116,115,32,97,110,100,32,119,111,110,39,116,32,114,101,99,97,108,99,117,108,97,116,101,32,112,111,112,112,101,114,32,112,111,115,105,116,105,111,110,92,110,32,42,32,119,104,101,110,32,116,104,101,121,32,97,114,101,32,116,114,105,103,103,101,114,101,100,46,32,73,116,32,97,108,115,111,32,119,111,110,39,116,32,116,114,105,103,103,101,114,32,96,111,110,85,112,100,97,116,101,96,32,99,97,108,108,98,97,99,107,32,97,110,121,109,111,114,101,44,92,110,32,42,32,117,110,108,101,115,115,32,121,111,117,32,99,97,108,108,32,96,117,112,100,97,116,101,96,32,109,101,116,104,111,100,32,109,97,110,117,97,108,108,121,46,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,100,105,115,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,32,123,92,110,32,32,105,102,32,40,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,41,32,123,92,110,32,32,32,32,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,59,92,110,32,32,32,32,116,104,105,115,46,115,116,97,116,101,32,61,32,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,32,116,104,105,115,46,115,116,97,116,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,84,101,108,108,115,32,105,102,32,97,32,103,105,118,101,110,32,105,110,112,117,116,32,105,115,32,97,32,110,117,109,98,101,114,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,112,97,114,97,109,32,123,42,125,32,105,110,112,117,116,32,116,111,32,99,104,101,99,107,92,110,32,42,32,64,114,101,116,117,114,110,32,123,66,111,111,108,101,97,110,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,78,117,109,101,114,105,99,40,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,32,33,61,61,32,39,39,32,38,38,32,33,105,115,78,97,78,40,112,97,114,115,101,70,108,111,97,116,40,110,41,41,32,38,38,32,105,115,70,105,110,105,116,101,40,110,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,83,101,116,32,116,104,101,32,115,116,121,108,101,32,116,111,32,116,104,101,32,103,105,118,101,110,32,112,111,112,112,101,114,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,32,45,32,69,108,101,109,101,110,116,32,116,111,32,97,112,112,108,121,32,116,104,101,32,115,116,121,108,101,32,116,111,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,115,116,121,108,101,115,92,110,32,42,32,79,98,106,101,99,116,32,119,105,116,104,32,97,32,108,105,115,116,32,111,102,32,112,114,111,112,101,114,116,105,101,115,32,97,110,100,32,118,97,108,117,101,115,32,119,104,105,99,104,32,119,105,108,108,32,98,101,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,101,108,101,109,101,110,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,115,101,116,83,116,121,108,101,115,40,101,108,101,109,101,110,116,44,32,115,116,121,108,101,115,41,32,123,92,110,32,32,79,98,106,101,99,116,46,107,101,121,115,40,115,116,121,108,101,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,41,32,123,92,110,32,32,32,32,118,97,114,32,117,110,105,116,32,61,32,39,39,59,92,110,32,32,32,32,47,47,32,97,100,100,32,117,110,105,116,32,105,102,32,116,104,101,32,118,97,108,117,101,32,105,115,32,110,117,109,101,114,105,99,32,97,110,100,32,105,115,32,111,110,101,32,111,102,32,116,104,101,32,102,111,108,108,111,119,105,110,103,92,110,32,32,32,32,105,102,32,40,91,39,119,105,100,116,104,39,44,32,39,104,101,105,103,104,116,39,44,32,39,116,111,112,39,44,32,39,114,105,103,104,116,39,44,32,39,98,111,116,116,111,109,39,44,32,39,108,101,102,116,39,93,46,105,110,100,101,120,79,102,40,112,114,111,112,41,32,33,61,61,32,45,49,32,38,38,32,105,115,78,117,109,101,114,105,99,40,115,116,121,108,101,115,91,112,114,111,112,93,41,41,32,123,92,110,32,32,32,32,32,32,117,110,105,116,32,61,32,39,112,120,39,59,92,110,32,32,32,32,125,92,110,32,32,32,32,101,108,101,109,101,110,116,46,115,116,121,108,101,91,112,114,111,112,93,32,61,32,115,116,121,108,101,115,91,112,114,111,112,93,32,43,32,117,110,105,116,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,83,101,116,32,116,104,101,32,97,116,116,114,105,98,117,116,101,115,32,116,111,32,116,104,101,32,103,105,118,101,110,32,112,111,112,112,101,114,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,32,45,32,69,108,101,109,101,110,116,32,116,111,32,97,112,112,108,121,32,116,104,101,32,97,116,116,114,105,98,117,116,101,115,32,116,111,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,115,116,121,108,101,115,92,110,32,42,32,79,98,106,101,99,116,32,119,105,116,104,32,97,32,108,105,115,116,32,111,102,32,112,114,111,112,101,114,116,105,101,115,32,97,110,100,32,118,97,108,117,101,115,32,119,104,105,99,104,32,119,105,108,108,32,98,101,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,101,108,101,109,101,110,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,115,101,116,65,116,116,114,105,98,117,116,101,115,40,101,108,101,109,101,110,116,44,32,97,116,116,114,105,98,117,116,101,115,41,32,123,92,110,32,32,79,98,106,101,99,116,46,107,101,121,115,40,97,116,116,114,105,98,117,116,101,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,97,116,116,114,105,98,117,116,101,115,91,112,114,111,112,93,59,92,110,32,32,32,32,105,102,32,40,118,97,108,117,101,32,33,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,112,114,111,112,44,32,97,116,116,114,105,98,117,116,101,115,91,112,114,111,112,93,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,112,114,111,112,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,64,102,117,110,99,116,105,111,110,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,77,111,100,105,102,105,101,114,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,100,97,116,97,32,45,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,103,101,110,101,114,97,116,101,100,32,98,121,32,96,117,112,100,97,116,101,96,32,109,101,116,104,111,100,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,100,97,116,97,46,115,116,121,108,101,115,32,45,32,76,105,115,116,32,111,102,32,115,116,121,108,101,32,112,114,111,112,101,114,116,105,101,115,32,45,32,118,97,108,117,101,115,32,116,111,32,97,112,112,108,121,32,116,111,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,100,97,116,97,46,97,116,116,114,105,98,117,116,101,115,32,45,32,76,105,115,116,32,111,102,32,97,116,116,114,105,98,117,116,101,32,112,114,111,112,101,114,116,105,101,115,32,45,32,118,97,108,117,101,115,32,116,111,32,97,112,112,108,121,32,116,111,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,77,111,100,105,102,105,101,114,115,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,97,110,100,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,84,104,101,32,115,97,109,101,32,100,97,116,97,32,111,98,106,101,99,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,97,112,112,108,121,83,116,121,108,101,40,100,97,116,97,41,32,123,92,110,32,32,47,47,32,97,110,121,32,112,114,111,112,101,114,116,121,32,112,114,101,115,101,110,116,32,105,110,32,96,100,97,116,97,46,115,116,121,108,101,115,96,32,119,105,108,108,32,98,101,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,112,111,112,112,101,114,44,92,110,32,32,47,47,32,105,110,32,116,104,105,115,32,119,97,121,32,119,101,32,99,97,110,32,109,97,107,101,32,116,104,101,32,51,114,100,32,112,97,114,116,121,32,109,111,100,105,102,105,101,114,115,32,97,100,100,32,99,117,115,116,111,109,32,115,116,121,108,101,115,32,116,111,32,105,116,92,110,32,32,47,47,32,66,101,32,97,119,97,114,101,44,32,109,111,100,105,102,105,101,114,115,32,99,111,117,108,100,32,111,118,101,114,114,105,100,101,32,116,104,101,32,112,114,111,112,101,114,116,105,101,115,32,100,101,102,105,110,101,100,32,105,110,32,116,104,101,32,112,114,101,118,105,111,117,115,92,110,32,32,47,47,32,108,105,110,101,115,32,111,102,32,116,104,105,115,32,109,111,100,105,102,105,101,114,33,92,110,32,32,115,101,116,83,116,121,108,101,115,40,100,97,116,97,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,32,100,97,116,97,46,115,116,121,108,101,115,41,59,92,110,92,110,32,32,47,47,32,97,110,121,32,112,114,111,112,101,114,116,121,32,112,114,101,115,101,110,116,32,105,110,32,96,100,97,116,97,46,97,116,116,114,105,98,117,116,101,115,96,32,119,105,108,108,32,98,101,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,112,111,112,112,101,114,44,92,110,32,32,47,47,32,116,104,101,121,32,119,105,108,108,32,98,101,32,115,101,116,32,97,115,32,72,84,77,76,32,97,116,116,114,105,98,117,116,101,115,32,111,102,32,116,104,101,32,101,108,101,109,101,110,116,92,110,32,32,115,101,116,65,116,116,114,105,98,117,116,101,115,40,100,97,116,97,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,32,100,97,116,97,46,97,116,116,114,105,98,117,116,101,115,41,59,92,110,92,110,32,32,47,47,32,105,102,32,97,114,114,111,119,69,108,101,109,101,110,116,32,105,115,32,100,101,102,105,110,101,100,32,97,110,100,32,97,114,114,111,119,83,116,121,108,101,115,32,104,97,115,32,115,111,109,101,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,105,102,32,40,100,97,116,97,46,97,114,114,111,119,69,108,101,109,101,110,116,32,38,38,32,79,98,106,101,99,116,46,107,101,121,115,40,100,97,116,97,46,97,114,114,111,119,83,116,121,108,101,115,41,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,115,101,116,83,116,121,108,101,115,40,100,97,116,97,46,97,114,114,111,119,69,108,101,109,101,110,116,44,32,100,97,116,97,46,97,114,114,111,119,83,116,121,108,101,115,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,83,101,116,32,116,104,101,32,120,45,112,108,97,99,101,109,101,110,116,32,97,116,116,114,105,98,117,116,101,32,98,101,102,111,114,101,32,101,118,101,114,121,116,104,105,110,103,32,101,108,115,101,32,98,101,99,97,117,115,101,32,105,116,32,99,111,117,108,100,32,98,101,32,117,115,101,100,92,110,32,42,32,116,111,32,97,100,100,32,109,97,114,103,105,110,115,32,116,111,32,116,104,101,32,112,111,112,112,101,114,32,109,97,114,103,105,110,115,32,110,101,101,100,115,32,116,111,32,98,101,32,99,97,108,99,117,108,97,116,101,100,32,116,111,32,103,101,116,32,116,104,101,92,110,32,42,32,99,111,114,114,101,99,116,32,112,111,112,112,101,114,32,111,102,102,115,101,116,115,46,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,109,111,100,105,102,105,101,114,115,92,110,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,114,101,102,101,114,101,110,99,101,32,45,32,84,104,101,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,32,117,115,101,100,32,116,111,32,112,111,115,105,116,105,111,110,32,116,104,101,32,112,111,112,112,101,114,92,110,32,42,32,64,112,97,114,97,109,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,112,111,112,112,101,114,32,45,32,84,104,101,32,72,84,77,76,32,101,108,101,109,101,110,116,32,117,115,101,100,32,97,115,32,112,111,112,112,101,114,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,80,111,112,112,101,114,46,106,115,32,111,112,116,105,111,110,115,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,97,112,112,108,121,83,116,121,108,101,79,110,76,111,97,100,40,114,101,102,101,114,101,110,99,101,44,32,112,111,112,112,101,114,44,32,111,112,116,105,111,110,115,44,32,109,111,100,105,102,105,101,114,79,112,116,105,111,110,115,44,32,115,116,97,116,101,41,32,123,92,110,32,32,47,47,32,99,111,109,112,117,116,101,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,32,111,102,102,115,101,116,115,92,110,32,32,118,97,114,32,114,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,32,61,32,103,101,116,82,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,40,115,116,97,116,101,44,32,112,111,112,112,101,114,44,32,114,101,102,101,114,101,110,99,101,44,32,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,59,92,110,92,110,32,32,47,47,32,99,111,109,112,117,116,101,32,97,117,116,111,32,112,108,97,99,101,109,101,110,116,44,32,115,116,111,114,101,32,112,108,97,99,101,109,101,110,116,32,105,110,115,105,100,101,32,116,104,101,32,100,97,116,97,32,111,98,106,101,99,116,44,92,110,32,32,47,47,32,109,111,100,105,102,105,101,114,115,32,119,105,108,108,32,98,101,32,97,98,108,101,32,116,111,32,101,100,105,116,32,96,112,108,97,99,101,109,101,110,116,96,32,105,102,32,110,101,101,100,101,100,92,110,32,32,47,47,32,97,110,100,32,114,101,102,101,114,32,116,111,32,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,32,116,111,32,107,110,111,119,32,116,104,101,32,111,114,105,103,105,110,97,108,32,118,97,108,117,101,92,110,32,32,118,97,114,32,112,108,97,99,101,109,101,110,116,32,61,32,99,111,109,112,117,116,101,65,117,116,111,80,108,97,99,101,109,101,110,116,40,111,112,116,105,111,110,115,46,112,108,97,99,101,109,101,110,116,44,32,114,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,44,32,112,111,112,112,101,114,44,32,114,101,102,101,114,101,110,99,101,44,32,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,32,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,59,92,110,92,110,32,32,112,111,112,112,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,120,45,112,108,97,99,101,109,101,110,116,39,44,32,112,108,97,99,101,109,101,110,116,41,59,92,110,92,110,32,32,47,47,32,65,112,112,108,121,32,96,112,111,115,105,116,105,111,110,96,32,116,111,32,112,111,112,112,101,114,32,98,101,102,111,114,101,32,97,110,121,116,104,105,110,103,32,101,108,115,101,32,98,101,99,97,117,115,101,92,110,32,32,47,47,32,119,105,116,104,111,117,116,32,116,104,101,32,112,111,115,105,116,105,111,110,32,97,112,112,108,105,101,100,32,119,101,32,99,97,110,39,116,32,103,117,97,114,97,110,116,101,101,32,99,111,114,114,101,99,116,32,99,111,109,112,117,116,97,116,105,111,110,115,92,110,32,32,115,101,116,83,116,121,108,101,115,40,112,111,112,112,101,114,44,32,123,32,112,111,115,105,116,105,111,110,58,32,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,32,63,32,39,102,105,120,101,100,39,32,58,32,39,97,98,115,111,108,117,116,101,39,32,125,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,111,112,116,105,111,110,115,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,64,102,117,110,99,116,105,111,110,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,100,97,116,97,32,45,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,103,101,110,101,114,97,116,101,100,32,98,121,32,96,117,112,100,97,116,101,96,32,109,101,116,104,111,100,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,66,111,111,108,101,97,110,125,32,115,104,111,117,108,100,82,111,117,110,100,32,45,32,73,102,32,116,104,101,32,111,102,102,115,101,116,115,32,115,104,111,117,108,100,32,98,101,32,114,111,117,110,100,101,100,32,97,116,32,97,108,108,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,84,104,101,32,112,111,112,112,101,114,39,115,32,112,111,115,105,116,105,111,110,32,111,102,102,115,101,116,115,32,114,111,117,110,100,101,100,92,110,32,42,92,110,32,42,32,84,104,101,32,116,97,108,101,32,111,102,32,112,105,120,101,108,45,112,101,114,102,101,99,116,32,112,111,115,105,116,105,111,110,105,110,103,46,32,73,116,39,115,32,115,116,105,108,108,32,110,111,116,32,49,48,48,37,32,112,101,114,102,101,99,116,44,32,98,117,116,32,97,115,92,110,32,42,32,103,111,111,100,32,97,115,32,105,116,32,99,97,110,32,98,101,32,119,105,116,104,105,110,32,114,101,97,115,111,110,46,92,110,32,42,32,68,105,115,99,117,115,115,105,111,110,32,104,101,114,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,70,101,122,86,114,97,115,116,97,47,112,111,112,112,101,114,46,106,115,47,112,117,108,108,47,55,49,53,92,110,32,42,92,110,32,42,32,76,111,119,32,68,80,73,32,115,99,114,101,101,110,115,32,99,97,117,115,101,32,97,32,112,111,112,112,101,114,32,116,111,32,98,101,32,98,108,117,114,114,121,32,105,102,32,110,111,116,32,117,115,105,110,103,32,102,117,108,108,32,112,105,120,101,108,115,32,40,83,97,102,97,114,105,92,110,32,42,32,97,115,32,119,101,108,108,32,111,110,32,72,105,103,104,32,68,80,73,32,115,99,114,101,101,110,115,41,46,92,110,32,42,92,110,32,42,32,70,105,114,101,102,111,120,32,112,114,101,102,101,114,115,32,110,111,32,114,111,117,110,100,105,110,103,32,102,111,114,32,112,111,115,105,116,105,111,110,105,110,103,32,97,110,100,32,100,111,101,115,32,110,111,116,32,104,97,118,101,32,98,108,117,114,114,105,110,101,115,115,32,111,110,92,110,32,42,32,104,105,103,104,32,68,80,73,32,115,99,114,101,101,110,115,46,92,110,32,42,92,110,32,42,32,79,110,108,121,32,104,111,114,105,122,111,110,116,97,108,32,112,108,97,99,101,109,101,110,116,32,97,110,100,32,108,101,102,116,47,114,105,103,104,116,32,118,97,108,117,101,115,32,110,101,101,100,32,116,111,32,98,101,32,99,111,110,115,105,100,101,114,101,100,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,82,111,117,110,100,101,100,79,102,102,115,101,116,115,40,100,97,116,97,44,32,115,104,111,117,108,100,82,111,117,110,100,41,32,123,92,110,32,32,118,97,114,32,95,100,97,116,97,36,111,102,102,115,101,116,115,32,61,32,100,97,116,97,46,111,102,102,115,101,116,115,44,92,110,32,32,32,32,32,32,112,111,112,112,101,114,32,61,32,95,100,97,116,97,36,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,92,110,32,32,32,32,32,32,114,101,102,101,114,101,110,99,101,32,61,32,95,100,97,116,97,36,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,59,92,110,32,32,118,97,114,32,114,111,117,110,100,32,61,32,77,97,116,104,46,114,111,117,110,100,44,92,110,32,32,32,32,32,32,102,108,111,111,114,32,61,32,77,97,116,104,46,102,108,111,111,114,59,92,110,92,110,32,32,118,97,114,32,110,111,82,111,117,110,100,32,61,32,102,117,110,99,116,105,111,110,32,110,111,82,111,117,110,100,40,118,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,59,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,114,101,102,101,114,101,110,99,101,87,105,100,116,104,32,61,32,114,111,117,110,100,40,114,101,102,101,114,101,110,99,101,46,119,105,100,116,104,41,59,92,110,32,32,118,97,114,32,112,111,112,112,101,114,87,105,100,116,104,32,61,32,114,111,117,110,100,40,112,111,112,112,101,114,46,119,105,100,116,104,41,59,92,110,92,110,32,32,118,97,114,32,105,115,86,101,114,116,105,99,97,108,32,61,32,91,39,108,101,102,116,39,44,32,39,114,105,103,104,116,39,93,46,105,110,100,101,120,79,102,40,100,97,116,97,46,112,108,97,99,101,109,101,110,116,41,32,33,61,61,32,45,49,59,92,110,32,32,118,97,114,32,105,115,86,97,114,105,97,116,105,111,110,32,61,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,46,105,110,100,101,120,79,102,40,39,45,39,41,32,33,61,61,32,45,49,59,92,110,32,32,118,97,114,32,115,97,109,101,87,105,100,116,104,80,97,114,105,116,121,32,61,32,114,101,102,101,114,101,110,99,101,87,105,100,116,104,32,37,32,50,32,61,61,61,32,112,111,112,112,101,114,87,105,100,116,104,32,37,32,50,59,92,110,32,32,118,97,114,32,98,111,116,104,79,100,100,87,105,100,116,104,32,61,32,114,101,102,101,114,101,110,99,101,87,105,100,116,104,32,37,32,50,32,61,61,61,32,49,32,38,38,32,112,111,112,112,101,114,87,105,100,116,104,32,37,32,50,32,61,61,61,32,49,59,92,110,92,110,32,32,118,97,114,32,104,111,114,105,122,111,110,116,97,108,84,111,73,110,116,101,103,101,114,32,61,32,33,115,104,111,117,108,100,82,111,117,110,100,32,63,32,110,111,82,111,117,110,100,32,58,32,105,115,86,101,114,116,105,99,97,108,32,124,124,32,105,115,86,97,114,105,97,116,105,111,110,32,124,124,32,115,97,109,101,87,105,100,116,104,80,97,114,105,116,121,32,63,32,114,111,117,110,100,32,58,32,102,108,111,111,114,59,92,110,32,32,118,97,114,32,118,101,114,116,105,99,97,108,84,111,73,110,116,101,103,101,114,32,61,32,33,115,104,111,117,108,100,82,111,117,110,100,32,63,32,110,111,82,111,117,110,100,32,58,32,114,111,117,110,100,59,92,110,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,108,101,102,116,58,32,104,111,114,105,122,111,110,116,97,108,84,111,73,110,116,101,103,101,114,40,98,111,116,104,79,100,100,87,105,100,116,104,32,38,38,32,33,105,115,86,97,114,105,97,116,105,111,110,32,38,38,32,115,104,111,117,108,100,82,111,117,110,100,32,63,32,112,111,112,112,101,114,46,108,101,102,116,32,45,32,49,32,58,32,112,111,112,112,101,114,46,108,101,102,116,41,44,92,110,32,32,32,32,116,111,112,58,32,118,101,114,116,105,99,97,108,84,111,73,110,116,101,103,101,114,40,112,111,112,112,101,114,46,116,111,112,41,44,92,110,32,32,32,32,98,111,116,116,111,109,58,32,118,101,114,116,105,99,97,108,84,111,73,110,116,101,103,101,114,40,112,111,112,112,101,114,46,98,111,116,116,111,109,41,44,92,110,32,32,32,32,114,105,103,104,116,58,32,104,111,114,105,122,111,110,116,97,108,84,111,73,110,116,101,103,101,114,40,112,111,112,112,101,114,46,114,105,103,104,116,41,92,110,32,32,125,59,92,110,125,92,110,92,110,118,97,114,32,105,115,70,105,114,101,102,111,120,32,61,32,105,115,66,114,111,119,115,101,114,32,38,38,32,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,92,110,92,110,47,42,42,92,110,32,42,32,64,102,117,110,99,116,105,111,110,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,77,111,100,105,102,105,101,114,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,100,97,116,97,32,45,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,103,101,110,101,114,97,116,101,100,32,98,121,32,96,117,112,100,97,116,101,96,32,109,101,116,104,111,100,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,77,111,100,105,102,105,101,114,115,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,97,110,100,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,44,32,112,114,111,112,101,114,108,121,32,109,111,100,105,102,105,101,100,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,83,116,121,108,101,40,100,97,116,97,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,120,32,61,32,111,112,116,105,111,110,115,46,120,44,92,110,32,32,32,32,32,32,121,32,61,32,111,112,116,105,111,110,115,46,121,59,92,110,32,32,118,97,114,32,112,111,112,112,101,114,32,61,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,59,92,110,92,110,32,32,47,47,32,82,101,109,111,118,101,32,116,104,105,115,32,108,101,103,97,99,121,32,115,117,112,112,111,114,116,32,105,110,32,80,111,112,112,101,114,46,106,115,32,118,50,92,110,92,110,32,32,118,97,114,32,108,101,103,97,99,121,71,112,117,65,99,99,101,108,101,114,97,116,105,111,110,79,112,116,105,111,110,32,61,32,102,105,110,100,40,100,97,116,97,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,32,102,117,110,99,116,105,111,110,32,40,109,111,100,105,102,105,101,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,109,111,100,105,102,105,101,114,46,110,97,109,101,32,61,61,61,32,39,97,112,112,108,121,83,116,121,108,101,39,59,92,110,32,32,125,41,46,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,59,92,110,32,32,105,102,32,40,108,101,103,97,99,121,71,112,117,65,99,99,101,108,101,114,97,116,105,111,110,79,112,116,105,111,110,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,39,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,39,41,59,92,110,32,32,125,92,110,32,32,118,97,114,32,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,32,61,32,108,101,103,97,99,121,71,112,117,65,99,99,101,108,101,114,97,116,105,111,110,79,112,116,105,111,110,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,108,101,103,97,99,121,71,112,117,65,99,99,101,108,101,114,97,116,105,111,110,79,112,116,105,111,110,32,58,32,111,112,116,105,111,110,115,46,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,59,92,110,92,110,32,32,118,97,114,32,111,102,102,115,101,116,80,97,114,101,110,116,32,61,32,103,101,116,79,102,102,115,101,116,80,97,114,101,110,116,40,100,97,116,97,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,59,92,110,32,32,118,97,114,32,111,102,102,115,101,116,80,97,114,101,110,116,82,101,99,116,32,61,32,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,111,102,102,115,101,116,80,97,114,101,110,116,41,59,92,110,92,110,32,32,47,47,32,83,116,121,108,101,115,92,110,32,32,118,97,114,32,115,116,121,108,101,115,32,61,32,123,92,110,32,32,32,32,112,111,115,105,116,105,111,110,58,32,112,111,112,112,101,114,46,112,111,115,105,116,105,111,110,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,111,102,102,115,101,116,115,32,61,32,103,101,116,82,111,117,110,100,101,100,79,102,102,115,101,116,115,40,100,97,116,97,44,32,119,105,110,100,111,119,46,100,101,118,105,99,101,80,105,120,101,108,82,97,116,105,111,32,60,32,50,32,124,124,32,33,105,115,70,105,114,101,102,111,120,41,59,92,110,92,110,32,32,118,97,114,32,115,105,100,101,65,32,61,32,120,32,61,61,61,32,39,98,111,116,116,111,109,39,32,63,32,39,116,111,112,39,32,58,32,39,98,111,116,116,111,109,39,59,92,110,32,32,118,97,114,32,115,105,100,101,66,32,61,32,121,32,61,61,61,32,39,114,105,103,104,116,39,32,63,32,39,108,101,102,116,39,32,58,32,39,114,105,103,104,116,39,59,92,110,92,110,32,32,47,47,32,105,102,32,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,32,105,115,32,115,101,116,32,116,111,32,96,116,114,117,101,96,32,97,110,100,32,116,114,97,110,115,102,111,114,109,32,105,115,32,115,117,112,112,111,114,116,101,100,44,92,110,32,32,47,47,32,32,119,101,32,117,115,101,32,96,116,114,97,110,115,108,97,116,101,51,100,96,32,116,111,32,97,112,112,108,121,32,116,104,101,32,112,111,115,105,116,105,111,110,32,116,111,32,116,104,101,32,112,111,112,112,101,114,32,119,101,92,110,32,32,47,47,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,117,115,101,32,116,104,101,32,115,117,112,112,111,114,116,101,100,32,112,114,101,102,105,120,101,100,32,118,101,114,115,105,111,110,32,105,102,32,110,101,101,100,101,100,92,110,32,32,118,97,114,32,112,114,101,102,105,120,101,100,80,114,111,112,101,114,116,121,32,61,32,103,101,116,83,117,112,112,111,114,116,101,100,80,114,111,112,101,114,116,121,78,97,109,101,40,39,116,114,97,110,115,102,111,114,109,39,41,59,92,110,92,110,32,32,47,47,32,110,111,119,44,32,108,101,116,39,115,32,109,97,107,101,32,97,32,115,116,101,112,32,98,97,99,107,32,97,110,100,32,108,111,111,107,32,97,116,32,116,104,105,115,32,99,111,100,101,32,99,108,111,115,101,108,121,32,40,119,116,102,63,41,92,110,32,32,47,47,32,73,102,32,116,104,101,32,99,111,110,116,101,110,116,32,111,102,32,116,104,101,32,112,111,112,112,101,114,32,103,114,111,119,115,32,111,110,99,101,32,105,116,39,115,32,98,101,101,110,32,112,111,115,105,116,105,111,110,101,100,44,32,105,116,92,110,32,32,47,47,32,109,97,121,32,104,97,112,112,101,110,32,116,104,97,116,32,116,104,101,32,112,111,112,112,101,114,32,103,101,116,115,32,109,105,115,112,108,97,99,101,100,32,98,101,99,97,117,115,101,32,111,102,32,116,104,101,32,110,101,119,32,99,111,110,116,101,110,116,92,110,32,32,47,47,32,111,118,101,114,102,108,111,119,105,110,103,32,105,116,115,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,92,110,32,32,47,47,32,84,111,32,97,118,111,105,100,32,116,104,105,115,32,112,114,111,98,108,101,109,44,32,119,101,32,112,114,111,118,105,100,101,32,116,119,111,32,111,112,116,105,111,110,115,32,40,120,32,97,110,100,32,121,41,44,32,119,104,105,99,104,32,97,108,108,111,119,92,110,32,32,47,47,32,116,104,101,32,99,111,110,115,117,109,101,114,32,116,111,32,100,101,102,105,110,101,32,116,104,101,32,111,102,102,115,101,116,32,111,114,105,103,105,110,46,92,110,32,32,47,47,32,73,102,32,119,101,32,112,111,115,105,116,105,111,110,32,97,32,112,111,112,112,101,114,32,111,110,32,116,111,112,32,111,102,32,97,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,44,32,119,101,32,99,97,110,32,115,101,116,92,110,32,32,47,47,32,96,120,96,32,116,111,32,96,116,111,112,96,32,116,111,32,109,97,107,101,32,116,104,101,32,112,111,112,112,101,114,32,103,114,111,119,32,116,111,119,97,114,100,115,32,105,116,115,32,116,111,112,32,105,110,115,116,101,97,100,32,111,102,92,110,32,32,47,47,32,105,116,115,32,98,111,116,116,111,109,46,92,110,32,32,118,97,114,32,108,101,102,116,32,61,32,118,111,105,100,32,48,44,92,110,32,32,32,32,32,32,116,111,112,32,61,32,118,111,105,100,32,48,59,92,110,32,32,105,102,32,40,115,105,100,101,65,32,61,61,61,32,39,98,111,116,116,111,109,39,41,32,123,92,110,32,32,32,32,47,47,32,119,104,101,110,32,111,102,102,115,101,116,80,97,114,101,110,116,32,105,115,32,60,104,116,109,108,62,32,116,104,101,32,112,111,115,105,116,105,111,110,105,110,103,32,105,115,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,98,111,116,116,111,109,32,111,102,32,116,104,101,32,115,99,114,101,101,110,32,40,101,120,99,108,117,100,105,110,103,32,116,104,101,32,115,99,114,111,108,108,98,97,114,41,92,110,32,32,32,32,47,47,32,97,110,100,32,110,111,116,32,116,104,101,32,98,111,116,116,111,109,32,111,102,32,116,104,101,32,104,116,109,108,32,101,108,101,109,101,110,116,92,110,32,32,32,32,105,102,32,40,111,102,102,115,101,116,80,97,114,101,110,116,46,110,111,100,101,78,97,109,101,32,61,61,61,32,39,72,84,77,76,39,41,32,123,92,110,32,32,32,32,32,32,116,111,112,32,61,32,45,111,102,102,115,101,116,80,97,114,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,32,43,32,111,102,102,115,101,116,115,46,98,111,116,116,111,109,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,111,112,32,61,32,45,111,102,102,115,101,116,80,97,114,101,110,116,82,101,99,116,46,104,101,105,103,104,116,32,43,32,111,102,102,115,101,116,115,46,98,111,116,116,111,109,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,116,111,112,32,61,32,111,102,102,115,101,116,115,46,116,111,112,59,92,110,32,32,125,92,110,32,32,105,102,32,40,115,105,100,101,66,32,61,61,61,32,39,114,105,103,104,116,39,41,32,123,92,110,32,32,32,32,105,102,32,40,111,102,102,115,101,116,80,97,114,101,110,116,46,110,111,100,101,78,97,109,101,32,61,61,61,32,39,72,84,77,76,39,41,32,123,92,110,32,32,32,32,32,32,108,101,102,116,32,61,32,45,111,102,102,115,101,116,80,97,114,101,110,116,46,99,108,105,101,110,116,87,105,100,116,104,32,43,32,111,102,102,115,101,116,115,46,114,105,103,104,116,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,108,101,102,116,32,61,32,45,111,102,102,115,101,116,80,97,114,101,110,116,82,101,99,116,46,119,105,100,116,104,32,43,32,111,102,102,115,101,116,115,46,114,105,103,104,116,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,108,101,102,116,32,61,32,111,102,102,115,101,116,115,46,108,101,102,116,59,92,110,32,32,125,92,110,32,32,105,102,32,40,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,32,38,38,32,112,114,101,102,105,120,101,100,80,114,111,112,101,114,116,121,41,32,123,92,110,32,32,32,32,115,116,121,108,101,115,91,112,114,101,102,105,120,101,100,80,114,111,112,101,114,116,121,93,32,61,32,39,116,114,97,110,115,108,97,116,101,51,100,40,39,32,43,32,108,101,102,116,32,43,32,39,112,120,44,32,39,32,43,32,116,111,112,32,43,32,39,112,120,44,32,48,41,39,59,92,110,32,32,32,32,115,116,121,108,101,115,91,115,105,100,101,65,93,32,61,32,48,59,92,110,32,32,32,32,115,116,121,108,101,115,91,115,105,100,101,66,93,32,61,32,48,59,92,110,32,32,32,32,115,116,121,108,101,115,46,119,105,108,108,67,104,97,110,103,101,32,61,32,39,116,114,97,110,115,102,111,114,109,39,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,47,32,111,116,104,119,101,114,105,115,101,44,32,119,101,32,117,115,101,32,116,104,101,32,115,116,97,110,100,97,114,100,32,96,116,111,112,96,44,32,96,108,101,102,116,96,44,32,96,98,111,116,116,111,109,96,32,97,110,100,32,96,114,105,103,104,116,96,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,118,97,114,32,105,110,118,101,114,116,84,111,112,32,61,32,115,105,100,101,65,32,61,61,61,32,39,98,111,116,116,111,109,39,32,63,32,45,49,32,58,32,49,59,92,110,32,32,32,32,118,97,114,32,105,110,118,101,114,116,76,101,102,116,32,61,32,115,105,100,101,66,32,61,61,61,32,39,114,105,103,104,116,39,32,63,32,45,49,32,58,32,49,59,92,110,32,32,32,32,115,116,121,108,101,115,91,115,105,100,101,65,93,32,61,32,116,111,112,32,42,32,105,110,118,101,114,116,84,111,112,59,92,110,32,32,32,32,115,116,121,108,101,115,91,115,105,100,101,66,93,32,61,32,108,101,102,116,32,42,32,105,110,118,101,114,116,76,101,102,116,59,92,110,32,32,32,32,115,116,121,108,101,115,46,119,105,108,108,67,104,97,110,103,101,32,61,32,115,105,100,101,65,32,43,32,39,44,32,39,32,43,32,115,105,100,101,66,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,65,116,116,114,105,98,117,116,101,115,92,110,32,32,118,97,114,32,97,116,116,114,105,98,117,116,101,115,32,61,32,123,92,110,32,32,32,32,39,120,45,112,108,97,99,101,109,101,110,116,39,58,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,92,110,32,32,125,59,92,110,92,110,32,32,47,47,32,85,112,100,97,116,101,32,96,100,97,116,97,96,32,97,116,116,114,105,98,117,116,101,115,44,32,115,116,121,108,101,115,32,97,110,100,32,97,114,114,111,119,83,116,121,108,101,115,92,110,32,32,100,97,116,97,46,97,116,116,114,105,98,117,116,101,115,32,61,32,95,101,120,116,101,110,100,115,40,123,125,44,32,97,116,116,114,105,98,117,116,101,115,44,32,100,97,116,97,46,97,116,116,114,105,98,117,116,101,115,41,59,92,110,32,32,100,97,116,97,46,115,116,121,108,101,115,32,61,32,95,101,120,116,101,110,100,115,40,123,125,44,32,115,116,121,108,101,115,44,32,100,97,116,97,46,115,116,121,108,101,115,41,59,92,110,32,32,100,97,116,97,46,97,114,114,111,119,83,116,121,108,101,115,32,61,32,95,101,120,116,101,110,100,115,40,123,125,44,32,100,97,116,97,46,111,102,102,115,101,116,115,46,97,114,114,111,119,44,32,100,97,116,97,46,97,114,114,111,119,83,116,121,108,101,115,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,72,101,108,112,101,114,32,117,115,101,100,32,116,111,32,107,110,111,119,32,105,102,32,116,104,101,32,103,105,118,101,110,32,109,111,100,105,102,105,101,114,32,100,101,112,101,110,100,115,32,102,114,111,109,32,97,110,111,116,104,101,114,32,111,110,101,46,60,98,114,32,47,62,92,110,32,42,32,73,116,32,99,104,101,99,107,115,32,105,102,32,116,104,101,32,110,101,101,100,101,100,32,109,111,100,105,102,105,101,114,32,105,115,32,108,105,115,116,101,100,32,97,110,100,32,101,110,97,98,108,101,100,46,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,109,111,100,105,102,105,101,114,115,32,45,32,108,105,115,116,32,111,102,32,109,111,100,105,102,105,101,114,115,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,114,101,113,117,101,115,116,105,110,103,78,97,109,101,32,45,32,110,97,109,101,32,111,102,32,114,101,113,117,101,115,116,105,110,103,32,109,111,100,105,102,105,101,114,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,114,101,113,117,101,115,116,101,100,78,97,109,101,32,45,32,110,97,109,101,32,111,102,32,114,101,113,117,101,115,116,101,100,32,109,111,100,105,102,105,101,114,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,66,111,111,108,101,97,110,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,77,111,100,105,102,105,101,114,82,101,113,117,105,114,101,100,40,109,111,100,105,102,105,101,114,115,44,32,114,101,113,117,101,115,116,105,110,103,78,97,109,101,44,32,114,101,113,117,101,115,116,101,100,78,97,109,101,41,32,123,92,110,32,32,118,97,114,32,114,101,113,117,101,115,116,105,110,103,32,61,32,102,105,110,100,40,109,111,100,105,102,105,101,114,115,44,32,102,117,110,99,116,105,111,110,32,40,95,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,95,114,101,102,46,110,97,109,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,97,109,101,32,61,61,61,32,114,101,113,117,101,115,116,105,110,103,78,97,109,101,59,92,110,32,32,125,41,59,92,110,92,110,32,32,118,97,114,32,105,115,82,101,113,117,105,114,101,100,32,61,32,33,33,114,101,113,117,101,115,116,105,110,103,32,38,38,32,109,111,100,105,102,105,101,114,115,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,109,111,100,105,102,105,101,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,109,111,100,105,102,105,101,114,46,110,97,109,101,32,61,61,61,32,114,101,113,117,101,115,116,101,100,78,97,109,101,32,38,38,32,109,111,100,105,102,105,101,114,46,101,110,97,98,108,101,100,32,38,38,32,109,111,100,105,102,105,101,114,46,111,114,100,101,114,32,60,32,114,101,113,117,101,115,116,105,110,103,46,111,114,100,101,114,59,92,110,32,32,125,41,59,92,110,92,110,32,32,105,102,32,40,33,105,115,82,101,113,117,105,114,101,100,41,32,123,92,110,32,32,32,32,118,97,114,32,95,114,101,113,117,101,115,116,105,110,103,32,61,32,39,96,39,32,43,32,114,101,113,117,101,115,116,105,110,103,78,97,109,101,32,43,32,39,96,39,59,92,110,32,32,32,32,118,97,114,32,114,101,113,117,101,115,116,101,100,32,61,32,39,96,39,32,43,32,114,101,113,117,101,115,116,101,100,78,97,109,101,32,43,32,39,96,39,59,92,110,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,114,101,113,117,101,115,116,101,100,32,43,32,39,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,39,32,43,32,95,114,101,113,117,101,115,116,105,110,103,32,43,32,39,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,39,32,43,32,95,114,101,113,117,101,115,116,105,110,103,32,43,32,39,33,39,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,105,115,82,101,113,117,105,114,101,100,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,64,102,117,110,99,116,105,111,110,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,77,111,100,105,102,105,101,114,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,100,97,116,97,32,45,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,103,101,110,101,114,97,116,101,100,32,98,121,32,117,112,100,97,116,101,32,109,101,116,104,111,100,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,77,111,100,105,102,105,101,114,115,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,97,110,100,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,44,32,112,114,111,112,101,114,108,121,32,109,111,100,105,102,105,101,100,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,97,114,114,111,119,40,100,97,116,97,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,95,100,97,116,97,36,111,102,102,115,101,116,115,36,97,114,114,111,119,59,92,110,92,110,32,32,47,47,32,97,114,114,111,119,32,100,101,112,101,110,100,115,32,111,110,32,107,101,101,112,84,111,103,101,116,104,101,114,32,105,110,32,111,114,100,101,114,32,116,111,32,119,111,114,107,92,110,32,32,105,102,32,40,33,105,115,77,111,100,105,102,105,101,114,82,101,113,117,105,114,101,100,40,100,97,116,97,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,32,39,97,114,114,111,119,39,44,32,39,107,101,101,112,84,111,103,101,116,104,101,114,39,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,97,114,114,111,119,69,108,101,109,101,110,116,32,61,32,111,112,116,105,111,110,115,46,101,108,101,109,101,110,116,59,92,110,92,110,32,32,47,47,32,105,102,32,97,114,114,111,119,69,108,101,109,101,110,116,32,105,115,32,97,32,115,116,114,105,110,103,44,32,115,117,112,112,111,115,101,32,105,116,39,115,32,97,32,67,83,83,32,115,101,108,101,99,116,111,114,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,97,114,114,111,119,69,108,101,109,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,97,114,114,111,119,69,108,101,109,101,110,116,32,61,32,100,97,116,97,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,97,114,114,111,119,69,108,101,109,101,110,116,41,59,92,110,92,110,32,32,32,32,47,47,32,105,102,32,97,114,114,111,119,69,108,101,109,101,110,116,32,105,115,32,110,111,116,32,102,111,117,110,100,44,32,100,111,110,39,116,32,114,117,110,32,116,104,101,32,109,111,100,105,102,105,101,114,92,110,32,32,32,32,105,102,32,40,33,97,114,114,111,119,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,47,32,105,102,32,116,104,101,32,97,114,114,111,119,69,108,101,109,101,110,116,32,105,115,110,39,116,32,97,32,113,117,101,114,121,32,115,101,108,101,99,116,111,114,32,119,101,32,109,117,115,116,32,99,104,101,99,107,32,116,104,97,116,32,116,104,101,92,110,32,32,32,32,47,47,32,112,114,111,118,105,100,101,100,32,68,79,77,32,110,111,100,101,32,105,115,32,99,104,105,108,100,32,111,102,32,105,116,115,32,112,111,112,112,101,114,32,110,111,100,101,92,110,32,32,32,32,105,102,32,40,33,100,97,116,97,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,97,114,114,111,119,69,108,101,109,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,39,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,39,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,112,108,97,99,101,109,101,110,116,32,61,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,39,45,39,41,91,48,93,59,92,110,32,32,118,97,114,32,95,100,97,116,97,36,111,102,102,115,101,116,115,32,61,32,100,97,116,97,46,111,102,102,115,101,116,115,44,92,110,32,32,32,32,32,32,112,111,112,112,101,114,32,61,32,95,100,97,116,97,36,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,92,110,32,32,32,32,32,32,114,101,102,101,114,101,110,99,101,32,61,32,95,100,97,116,97,36,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,59,92,110,92,110,32,32,118,97,114,32,105,115,86,101,114,116,105,99,97,108,32,61,32,91,39,108,101,102,116,39,44,32,39,114,105,103,104,116,39,93,46,105,110,100,101,120,79,102,40,112,108,97,99,101,109,101,110,116,41,32,33,61,61,32,45,49,59,92,110,92,110,32,32,118,97,114,32,108,101,110,32,61,32,105,115,86,101,114,116,105,99,97,108,32,63,32,39,104,101,105,103,104,116,39,32,58,32,39,119,105,100,116,104,39,59,92,110,32,32,118,97,114,32,115,105,100,101,67,97,112,105,116,97,108,105,122,101,100,32,61,32,105,115,86,101,114,116,105,99,97,108,32,63,32,39,84,111,112,39,32,58,32,39,76,101,102,116,39,59,92,110,32,32,118,97,114,32,115,105,100,101,32,61,32,115,105,100,101,67,97,112,105,116,97,108,105,122,101,100,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,118,97,114,32,97,108,116,83,105,100,101,32,61,32,105,115,86,101,114,116,105,99,97,108,32,63,32,39,108,101,102,116,39,32,58,32,39,116,111,112,39,59,92,110,32,32,118,97,114,32,111,112,83,105,100,101,32,61,32,105,115,86,101,114,116,105,99,97,108,32,63,32,39,98,111,116,116,111,109,39,32,58,32,39,114,105,103,104,116,39,59,92,110,32,32,118,97,114,32,97,114,114,111,119,69,108,101,109,101,110,116,83,105,122,101,32,61,32,103,101,116,79,117,116,101,114,83,105,122,101,115,40,97,114,114,111,119,69,108,101,109,101,110,116,41,91,108,101,110,93,59,92,110,92,110,32,32,47,47,92,110,32,32,47,47,32,101,120,116,101,110,100,115,32,107,101,101,112,84,111,103,101,116,104,101,114,32,98,101,104,97,118,105,111,114,32,109,97,107,105,110,103,32,115,117,114,101,32,116,104,101,32,112,111,112,112,101,114,32,97,110,100,32,105,116,115,92,110,32,32,47,47,32,114,101,102,101,114,101,110,99,101,32,104,97,118,101,32,101,110,111,117,103,104,32,112,105,120,101,108,115,32,105,110,32,99,111,110,106,117,110,99,116,105,111,110,92,110,32,32,47,47,92,110,92,110,32,32,47,47,32,116,111,112,47,108,101,102,116,32,115,105,100,101,92,110,32,32,105,102,32,40,114,101,102,101,114,101,110,99,101,91,111,112,83,105,100,101,93,32,45,32,97,114,114,111,119,69,108,101,109,101,110,116,83,105,122,101,32,60,32,112,111,112,112,101,114,91,115,105,100,101,93,41,32,123,92,110,32,32,32,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,115,105,100,101,93,32,45,61,32,112,111,112,112,101,114,91,115,105,100,101,93,32,45,32,40,114,101,102,101,114,101,110,99,101,91,111,112,83,105,100,101,93,32,45,32,97,114,114,111,119,69,108,101,109,101,110,116,83,105,122,101,41,59,92,110,32,32,125,92,110,32,32,47,47,32,98,111,116,116,111,109,47,114,105,103,104,116,32,115,105,100,101,92,110,32,32,105,102,32,40,114,101,102,101,114,101,110,99,101,91,115,105,100,101,93,32,43,32,97,114,114,111,119,69,108,101,109,101,110,116,83,105,122,101,32,62,32,112,111,112,112,101,114,91,111,112,83,105,100,101,93,41,32,123,92,110,32,32,32,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,115,105,100,101,93,32,43,61,32,114,101,102,101,114,101,110,99,101,91,115,105,100,101,93,32,43,32,97,114,114,111,119,69,108,101,109,101,110,116,83,105,122,101,32,45,32,112,111,112,112,101,114,91,111,112,83,105,100,101,93,59,92,110,32,32,125,92,110,32,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,32,61,32,103,101,116,67,108,105,101,110,116,82,101,99,116,40,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,41,59,92,110,92,110,32,32,47,47,32,99,111,109,112,117,116,101,32,99,101,110,116,101,114,32,111,102,32,116,104,101,32,112,111,112,112,101,114,92,110,32,32,118,97,114,32,99,101,110,116,101,114,32,61,32,114,101,102,101,114,101,110,99,101,91,115,105,100,101,93,32,43,32,114,101,102,101,114,101,110,99,101,91,108,101,110,93,32,47,32,50,32,45,32,97,114,114,111,119,69,108,101,109,101,110,116,83,105,122,101,32,47,32,50,59,92,110,92,110,32,32,47,47,32,67,111,109,112,117,116,101,32,116,104,101,32,115,105,100,101,86,97,108,117,101,32,117,115,105,110,103,32,116,104,101,32,117,112,100,97,116,101,100,32,112,111,112,112,101,114,32,111,102,102,115,101,116,115,92,110,32,32,47,47,32,116,97,107,101,32,112,111,112,112,101,114,32,109,97,114,103,105,110,32,105,110,32,97,99,99,111,117,110,116,32,98,101,99,97,117,115,101,32,119,101,32,100,111,110,39,116,32,104,97,118,101,32,116,104,105,115,32,105,110,102,111,32,97,118,97,105,108,97,98,108,101,92,110,32,32,118,97,114,32,99,115,115,32,61,32,103,101,116,83,116,121,108,101,67,111,109,112,117,116,101,100,80,114,111,112,101,114,116,121,40,100,97,116,97,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,59,92,110,32,32,118,97,114,32,112,111,112,112,101,114,77,97,114,103,105,110,83,105,100,101,32,61,32,112,97,114,115,101,70,108,111,97,116,40,99,115,115,91,39,109,97,114,103,105,110,39,32,43,32,115,105,100,101,67,97,112,105,116,97,108,105,122,101,100,93,41,59,92,110,32,32,118,97,114,32,112,111,112,112,101,114,66,111,114,100,101,114,83,105,100,101,32,61,32,112,97,114,115,101,70,108,111,97,116,40,99,115,115,91,39,98,111,114,100,101,114,39,32,43,32,115,105,100,101,67,97,112,105,116,97,108,105,122,101,100,32,43,32,39,87,105,100,116,104,39,93,41,59,92,110,32,32,118,97,114,32,115,105,100,101,86,97,108,117,101,32,61,32,99,101,110,116,101,114,32,45,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,115,105,100,101,93,32,45,32,112,111,112,112,101,114,77,97,114,103,105,110,83,105,100,101,32,45,32,112,111,112,112,101,114,66,111,114,100,101,114,83,105,100,101,59,92,110,92,110,32,32,47,47,32,112,114,101,118,101,110,116,32,97,114,114,111,119,69,108,101,109,101,110,116,32,102,114,111,109,32,98,101,105,110,103,32,112,108,97,99,101,100,32,110,111,116,32,99,111,110,116,105,103,117,111,117,115,108,121,32,116,111,32,105,116,115,32,112,111,112,112,101,114,92,110,32,32,115,105,100,101,86,97,108,117,101,32,61,32,77,97,116,104,46,109,97,120,40,77,97,116,104,46,109,105,110,40,112,111,112,112,101,114,91,108,101,110,93,32,45,32,97,114,114,111,119,69,108,101,109,101,110,116,83,105,122,101,44,32,115,105,100,101,86,97,108,117,101,41,44,32,48,41,59,92,110,92,110,32,32,100,97,116,97,46,97,114,114,111,119,69,108,101,109,101,110,116,32,61,32,97,114,114,111,119,69,108,101,109,101,110,116,59,92,110,32,32,100,97,116,97,46,111,102,102,115,101,116,115,46,97,114,114,111,119,32,61,32,40,95,100,97,116,97,36,111,102,102,115,101,116,115,36,97,114,114,111,119,32,61,32,123,125,44,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,100,97,116,97,36,111,102,102,115,101,116,115,36,97,114,114,111,119,44,32,115,105,100,101,44,32,77,97,116,104,46,114,111,117,110,100,40,115,105,100,101,86,97,108,117,101,41,41,44,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,100,97,116,97,36,111,102,102,115,101,116,115,36,97,114,114,111,119,44,32,97,108,116,83,105,100,101,44,32,39,39,41,44,32,95,100,97,116,97,36,111,102,102,115,101,116,115,36,97,114,114,111,119,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,32,116,104,101,32,111,112,112,111,115,105,116,101,32,112,108,97,99,101,109,101,110,116,32,118,97,114,105,97,116,105,111,110,32,111,102,32,116,104,101,32,103,105,118,101,110,32,111,110,101,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,83,116,114,105,110,103,125,32,112,108,97,99,101,109,101,110,116,32,118,97,114,105,97,116,105,111,110,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,83,116,114,105,110,103,125,32,102,108,105,112,112,101,100,32,112,108,97,99,101,109,101,110,116,32,118,97,114,105,97,116,105,111,110,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,79,112,112,111,115,105,116,101,86,97,114,105,97,116,105,111,110,40,118,97,114,105,97,116,105,111,110,41,32,123,92,110,32,32,105,102,32,40,118,97,114,105,97,116,105,111,110,32,61,61,61,32,39,101,110,100,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,39,115,116,97,114,116,39,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,118,97,114,105,97,116,105,111,110,32,61,61,61,32,39,115,116,97,114,116,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,39,101,110,100,39,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,118,97,114,105,97,116,105,111,110,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,76,105,115,116,32,111,102,32,97,99,99,101,112,116,101,100,32,112,108,97,99,101,109,101,110,116,115,32,116,111,32,117,115,101,32,97,115,32,118,97,108,117,101,115,32,111,102,32,116,104,101,32,96,112,108,97,99,101,109,101,110,116,96,32,111,112,116,105,111,110,46,60,98,114,32,47,62,92,110,32,42,32,86,97,108,105,100,32,112,108,97,99,101,109,101,110,116,115,32,97,114,101,58,92,110,32,42,32,45,32,96,97,117,116,111,96,92,110,32,42,32,45,32,96,116,111,112,96,92,110,32,42,32,45,32,96,114,105,103,104,116,96,92,110,32,42,32,45,32,96,98,111,116,116,111,109,96,92,110,32,42,32,45,32,96,108,101,102,116,96,92,110,32,42,92,110,32,42,32,69,97,99,104,32,112,108,97,99,101,109,101,110,116,32,99,97,110,32,104,97,118,101,32,97,32,118,97,114,105,97,116,105,111,110,32,102,114,111,109,32,116,104,105,115,32,108,105,115,116,58,92,110,32,42,32,45,32,96,45,115,116,97,114,116,96,92,110,32,42,32,45,32,96,45,101,110,100,96,92,110,32,42,92,110,32,42,32,86,97,114,105,97,116,105,111,110,115,32,97,114,101,32,105,110,116,101,114,112,114,101,116,101,100,32,101,97,115,105,108,121,32,105,102,32,121,111,117,32,116,104,105,110,107,32,111,102,32,116,104,101,109,32,97,115,32,116,104,101,32,108,101,102,116,32,116,111,32,114,105,103,104,116,92,110,32,42,32,119,114,105,116,116,101,110,32,108,97,110,103,117,97,103,101,115,46,32,72,111,114,105,122,111,110,116,97,108,108,121,32,40,96,116,111,112,96,32,97,110,100,32,96,98,111,116,116,111,109,96,41,44,32,96,115,116,97,114,116,96,32,105,115,32,108,101,102,116,32,97,110,100,32,96,101,110,100,96,92,110,32,42,32,105,115,32,114,105,103,104,116,46,60,98,114,32,47,62,92,110,32,42,32,86,101,114,116,105,99,97,108,108,121,32,40,96,108,101,102,116,96,32,97,110,100,32,96,114,105,103,104,116,96,41,44,32,96,115,116,97,114,116,96,32,105,115,32,116,111,112,32,97,110,100,32,96,101,110,100,96,32,105,115,32,98,111,116,116,111,109,46,92,110,32,42,92,110,32,42,32,83,111,109,101,32,118,97,108,105,100,32,101,120,97,109,112,108,101,115,32,97,114,101,58,92,110,32,42,32,45,32,96,116,111,112,45,101,110,100,96,32,40,111,110,32,116,111,112,32,111,102,32,114,101,102,101,114,101,110,99,101,44,32,114,105,103,104,116,32,97,108,105,103,110,101,100,41,92,110,32,42,32,45,32,96,114,105,103,104,116,45,115,116,97,114,116,96,32,40,111,110,32,114,105,103,104,116,32,111,102,32,114,101,102,101,114,101,110,99,101,44,32,116,111,112,32,97,108,105,103,110,101,100,41,92,110,32,42,32,45,32,96,98,111,116,116,111,109,96,32,40,111,110,32,98,111,116,116,111,109,44,32,99,101,110,116,101,114,101,100,41,92,110,32,42,32,45,32,96,97,117,116,111,45,101,110,100,96,32,40,111,110,32,116,104,101,32,115,105,100,101,32,119,105,116,104,32,109,111,114,101,32,115,112,97,99,101,32,97,118,97,105,108,97,98,108,101,44,32,97,108,105,103,110,109,101,110,116,32,100,101,112,101,110,100,115,32,98,121,32,112,108,97,99,101,109,101,110,116,41,92,110,32,42,92,110,32,42,32,64,115,116,97,116,105,99,92,110,32,42,32,64,116,121,112,101,32,123,65,114,114,97,121,125,92,110,32,42,32,64,101,110,117,109,32,123,83,116,114,105,110,103,125,92,110,32,42,32,64,114,101,97,100,111,110,108,121,92,110,32,42,32,64,109,101,116,104,111,100,32,112,108,97,99,101,109,101,110,116,115,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,92,110,32,42,47,92,110,118,97,114,32,112,108,97,99,101,109,101,110,116,115,32,61,32,91,39,97,117,116,111,45,115,116,97,114,116,39,44,32,39,97,117,116,111,39,44,32,39,97,117,116,111,45,101,110,100,39,44,32,39,116,111,112,45,115,116,97,114,116,39,44,32,39,116,111,112,39,44,32,39,116,111,112,45,101,110,100,39,44,32,39,114,105,103,104,116,45,115,116,97,114,116,39,44,32,39,114,105,103,104,116,39,44,32,39,114,105,103,104,116,45,101,110,100,39,44,32,39,98,111,116,116,111,109,45,101,110,100,39,44,32,39,98,111,116,116,111,109,39,44,32,39,98,111,116,116,111,109,45,115,116,97,114,116,39,44,32,39,108,101,102,116,45,101,110,100,39,44,32,39,108,101,102,116,39,44,32,39,108,101,102,116,45,115,116,97,114,116,39,93,59,92,110,92,110,47,47,32,71,101,116,32,114,105,100,32,111,102,32,96,97,117,116,111,96,32,96,97,117,116,111,45,115,116,97,114,116,96,32,97,110,100,32,96,97,117,116,111,45,101,110,100,96,92,110,118,97,114,32,118,97,108,105,100,80,108,97,99,101,109,101,110,116,115,32,61,32,112,108,97,99,101,109,101,110,116,115,46,115,108,105,99,101,40,51,41,59,92,110,92,110,47,42,42,92,110,32,42,32,71,105,118,101,110,32,97,110,32,105,110,105,116,105,97,108,32,112,108,97,99,101,109,101,110,116,44,32,114,101,116,117,114,110,115,32,97,108,108,32,116,104,101,32,115,117,98,115,101,113,117,101,110,116,32,112,108,97,99,101,109,101,110,116,115,92,110,32,42,32,99,108,111,99,107,119,105,115,101,32,40,111,114,32,99,111,117,110,116,101,114,45,99,108,111,99,107,119,105,115,101,41,46,92,110,32,42,92,110,32,42,32,64,109,101,116,104,111,100,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,46,85,116,105,108,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,83,116,114,105,110,103,125,32,112,108,97,99,101,109,101,110,116,32,45,32,65,32,118,97,108,105,100,32,112,108,97,99,101,109,101,110,116,32,40,105,116,32,97,99,99,101,112,116,115,32,118,97,114,105,97,116,105,111,110,115,41,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,66,111,111,108,101,97,110,125,32,99,111,117,110,116,101,114,32,45,32,83,101,116,32,116,111,32,116,114,117,101,32,116,111,32,119,97,108,107,32,116,104,101,32,112,108,97,99,101,109,101,110,116,115,32,99,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,112,108,97,99,101,109,101,110,116,115,32,105,110,99,108,117,100,105,110,103,32,116,104,101,105,114,32,118,97,114,105,97,116,105,111,110,115,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,99,108,111,99,107,119,105,115,101,40,112,108,97,99,101,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,99,111,117,110,116,101,114,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,102,97,108,115,101,59,92,110,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,118,97,108,105,100,80,108,97,99,101,109,101,110,116,115,46,105,110,100,101,120,79,102,40,112,108,97,99,101,109,101,110,116,41,59,92,110,32,32,118,97,114,32,97,114,114,32,61,32,118,97,108,105,100,80,108,97,99,101,109,101,110,116,115,46,115,108,105,99,101,40,105,110,100,101,120,32,43,32,49,41,46,99,111,110,99,97,116,40,118,97,108,105,100,80,108,97,99,101,109,101,110,116,115,46,115,108,105,99,101,40,48,44,32,105,110,100,101,120,41,41,59,92,110,32,32,114,101,116,117,114,110,32,99,111,117,110,116,101,114,32,63,32,97,114,114,46,114,101,118,101,114,115,101,40,41,32,58,32,97,114,114,59,92,110,125,92,110,92,110,118,97,114,32,66,69,72,65,86,73,79,82,83,32,61,32,123,92,110,32,32,70,76,73,80,58,32,39,102,108,105,112,39,44,92,110,32,32,67,76,79,67,75,87,73,83,69,58,32,39,99,108,111,99,107,119,105,115,101,39,44,92,110,32,32,67,79,85,78,84,69,82,67,76,79,67,75,87,73,83,69,58,32,39,99,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,39,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,64,102,117,110,99,116,105,111,110,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,77,111,100,105,102,105,101,114,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,100,97,116,97,32,45,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,103,101,110,101,114,97,116,101,100,32,98,121,32,117,112,100,97,116,101,32,109,101,116,104,111,100,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,77,111,100,105,102,105,101,114,115,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,97,110,100,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,44,32,112,114,111,112,101,114,108,121,32,109,111,100,105,102,105,101,100,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,102,108,105,112,40,100,97,116,97,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,47,47,32,105,102,32,96,105,110,110,101,114,96,32,109,111,100,105,102,105,101,114,32,105,115,32,101,110,97,98,108,101,100,44,32,119,101,32,99,97,110,39,116,32,117,115,101,32,116,104,101,32,96,102,108,105,112,96,32,109,111,100,105,102,105,101,114,92,110,32,32,105,102,32,40,105,115,77,111,100,105,102,105,101,114,69,110,97,98,108,101,100,40,100,97,116,97,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,32,39,105,110,110,101,114,39,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,100,97,116,97,46,102,108,105,112,112,101,100,32,38,38,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,32,61,61,61,32,100,97,116,97,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,41,32,123,92,110,32,32,32,32,47,47,32,115,101,101,109,115,32,108,105,107,101,32,102,108,105,112,32,105,115,32,116,114,121,105,110,103,32,116,111,32,108,111,111,112,44,32,112,114,111,98,97,98,108,121,32,116,104,101,114,101,39,115,32,110,111,116,32,101,110,111,117,103,104,32,115,112,97,99,101,32,111,110,32,97,110,121,32,111,102,32,116,104,101,32,102,108,105,112,112,97,98,108,101,32,115,105,100,101,115,92,110,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,98,111,117,110,100,97,114,105,101,115,32,61,32,103,101,116,66,111,117,110,100,97,114,105,101,115,40,100,97,116,97,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,32,100,97,116,97,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,44,32,111,112,116,105,111,110,115,46,112,97,100,100,105,110,103,44,32,111,112,116,105,111,110,115,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,32,100,97,116,97,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,59,92,110,92,110,32,32,118,97,114,32,112,108,97,99,101,109,101,110,116,32,61,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,39,45,39,41,91,48,93,59,92,110,32,32,118,97,114,32,112,108,97,99,101,109,101,110,116,79,112,112,111,115,105,116,101,32,61,32,103,101,116,79,112,112,111,115,105,116,101,80,108,97,99,101,109,101,110,116,40,112,108,97,99,101,109,101,110,116,41,59,92,110,32,32,118,97,114,32,118,97,114,105,97,116,105,111,110,32,61,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,39,45,39,41,91,49,93,32,124,124,32,39,39,59,92,110,92,110,32,32,118,97,114,32,102,108,105,112,79,114,100,101,114,32,61,32,91,93,59,92,110,92,110,32,32,115,119,105,116,99,104,32,40,111,112,116,105,111,110,115,46,98,101,104,97,118,105,111,114,41,32,123,92,110,32,32,32,32,99,97,115,101,32,66,69,72,65,86,73,79,82,83,46,70,76,73,80,58,92,110,32,32,32,32,32,32,102,108,105,112,79,114,100,101,114,32,61,32,91,112,108,97,99,101,109,101,110,116,44,32,112,108,97,99,101,109,101,110,116,79,112,112,111,115,105,116,101,93,59,92,110,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,99,97,115,101,32,66,69,72,65,86,73,79,82,83,46,67,76,79,67,75,87,73,83,69,58,92,110,32,32,32,32,32,32,102,108,105,112,79,114,100,101,114,32,61,32,99,108,111,99,107,119,105,115,101,40,112,108,97,99,101,109,101,110,116,41,59,92,110,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,99,97,115,101,32,66,69,72,65,86,73,79,82,83,46,67,79,85,78,84,69,82,67,76,79,67,75,87,73,83,69,58,92,110,32,32,32,32,32,32,102,108,105,112,79,114,100,101,114,32,61,32,99,108,111,99,107,119,105,115,101,40,112,108,97,99,101,109,101,110,116,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,102,108,105,112,79,114,100,101,114,32,61,32,111,112,116,105,111,110,115,46,98,101,104,97,118,105,111,114,59,92,110,32,32,125,92,110,92,110,32,32,102,108,105,112,79,114,100,101,114,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,115,116,101,112,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,105,102,32,40,112,108,97,99,101,109,101,110,116,32,33,61,61,32,115,116,101,112,32,124,124,32,102,108,105,112,79,114,100,101,114,46,108,101,110,103,116,104,32,61,61,61,32,105,110,100,101,120,32,43,32,49,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,112,108,97,99,101,109,101,110,116,32,61,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,39,45,39,41,91,48,93,59,92,110,32,32,32,32,112,108,97,99,101,109,101,110,116,79,112,112,111,115,105,116,101,32,61,32,103,101,116,79,112,112,111,115,105,116,101,80,108,97,99,101,109,101,110,116,40,112,108,97,99,101,109,101,110,116,41,59,92,110,92,110,32,32,32,32,118,97,114,32,112,111,112,112,101,114,79,102,102,115,101,116,115,32,61,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,59,92,110,32,32,32,32,118,97,114,32,114,101,102,79,102,102,115,101,116,115,32,61,32,100,97,116,97,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,59,92,110,92,110,32,32,32,32,47,47,32,117,115,105,110,103,32,102,108,111,111,114,32,98,101,99,97,117,115,101,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,111,102,102,115,101,116,115,32,109,97,121,32,99,111,110,116,97,105,110,32,100,101,99,105,109,97,108,115,32,119,101,32,97,114,101,32,110,111,116,32,103,111,105,110,103,32,116,111,32,99,111,110,115,105,100,101,114,32,104,101,114,101,92,110,32,32,32,32,118,97,114,32,102,108,111,111,114,32,61,32,77,97,116,104,46,102,108,111,111,114,59,92,110,32,32,32,32,118,97,114,32,111,118,101,114,108,97,112,115,82,101,102,32,61,32,112,108,97,99,101,109,101,110,116,32,61,61,61,32,39,108,101,102,116,39,32,38,38,32,102,108,111,111,114,40,112,111,112,112,101,114,79,102,102,115,101,116,115,46,114,105,103,104,116,41,32,62,32,102,108,111,111,114,40,114,101,102,79,102,102,115,101,116,115,46,108,101,102,116,41,32,124,124,32,112,108,97,99,101,109,101,110,116,32,61,61,61,32,39,114,105,103,104,116,39,32,38,38,32,102,108,111,111,114,40,112,111,112,112,101,114,79,102,102,115,101,116,115,46,108,101,102,116,41,32,60,32,102,108,111,111,114,40,114,101,102,79,102,102,115,101,116,115,46,114,105,103,104,116,41,32,124,124,32,112,108,97,99,101,109,101,110,116,32,61,61,61,32,39,116,111,112,39,32,38,38,32,102,108,111,111,114,40,112,111,112,112,101,114,79,102,102,115,101,116,115,46,98,111,116,116,111,109,41,32,62,32,102,108,111,111,114,40,114,101,102,79,102,102,115,101,116,115,46,116,111,112,41,32,124,124,32,112,108,97,99,101,109,101,110,116,32,61,61,61,32,39,98,111,116,116,111,109,39,32,38,38,32,102,108,111,111,114,40,112,111,112,112,101,114,79,102,102,115,101,116,115,46,116,111,112,41,32,60,32,102,108,111,111,114,40,114,101,102,79,102,102,115,101,116,115,46,98,111,116,116,111,109,41,59,92,110,92,110,32,32,32,32,118,97,114,32,111,118,101,114,102,108,111,119,115,76,101,102,116,32,61,32,102,108,111,111,114,40,112,111,112,112,101,114,79,102,102,115,101,116,115,46,108,101,102,116,41,32,60,32,102,108,111,111,114,40,98,111,117,110,100,97,114,105,101,115,46,108,101,102,116,41,59,92,110,32,32,32,32,118,97,114,32,111,118,101,114,102,108,111,119,115,82,105,103,104,116,32,61,32,102,108,111,111,114,40,112,111,112,112,101,114,79,102,102,115,101,116,115,46,114,105,103,104,116,41,32,62,32,102,108,111,111,114,40,98,111,117,110,100,97,114,105,101,115,46,114,105,103,104,116,41,59,92,110,32,32,32,32,118,97,114,32,111,118,101,114,102,108,111,119,115,84,111,112,32,61,32,102,108,111,111,114,40,112,111,112,112,101,114,79,102,102,115,101,116,115,46,116,111,112,41,32,60,32,102,108,111,111,114,40,98,111,117,110,100,97,114,105,101,115,46,116,111,112,41,59,92,110,32,32,32,32,118,97,114,32,111,118,101,114,102,108,111,119,115,66,111,116,116,111,109,32,61,32,102,108,111,111,114,40,112,111,112,112,101,114,79,102,102,115,101,116,115,46,98,111,116,116,111,109,41,32,62,32,102,108,111,111,114,40,98,111,117,110,100,97,114,105,101,115,46,98,111,116,116,111,109,41,59,92,110,92,110,32,32,32,32,118,97,114,32,111,118,101,114,102,108,111,119,115,66,111,117,110,100,97,114,105,101,115,32,61,32,112,108,97,99,101,109,101,110,116,32,61,61,61,32,39,108,101,102,116,39,32,38,38,32,111,118,101,114,102,108,111,119,115,76,101,102,116,32,124,124,32,112,108,97,99,101,109,101,110,116,32,61,61,61,32,39,114,105,103,104,116,39,32,38,38,32,111,118,101,114,102,108,111,119,115,82,105,103,104,116,32,124,124,32,112,108,97,99,101,109,101,110,116,32,61,61,61,32,39,116,111,112,39,32,38,38,32,111,118,101,114,102,108,111,119,115,84,111,112,32,124,124,32,112,108,97,99,101,109,101,110,116,32,61,61,61,32,39,98,111,116,116,111,109,39,32,38,38,32,111,118,101,114,102,108,111,119,115,66,111,116,116,111,109,59,92,110,92,110,32,32,32,32,47,47,32,102,108,105,112,32,116,104,101,32,118,97,114,105,97,116,105,111,110,32,105,102,32,114,101,113,117,105,114,101,100,92,110,32,32,32,32,118,97,114,32,105,115,86,101,114,116,105,99,97,108,32,61,32,91,39,116,111,112,39,44,32,39,98,111,116,116,111,109,39,93,46,105,110,100,101,120,79,102,40,112,108,97,99,101,109,101,110,116,41,32,33,61,61,32,45,49,59,92,110,92,110,32,32,32,32,47,47,32,102,108,105,112,115,32,118,97,114,105,97,116,105,111,110,32,105,102,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,32,111,118,101,114,102,108,111,119,115,32,98,111,117,110,100,97,114,105,101,115,92,110,32,32,32,32,118,97,114,32,102,108,105,112,112,101,100,86,97,114,105,97,116,105,111,110,66,121,82,101,102,32,61,32,33,33,111,112,116,105,111,110,115,46,102,108,105,112,86,97,114,105,97,116,105,111,110,115,32,38,38,32,40,105,115,86,101,114,116,105,99,97,108,32,38,38,32,118,97,114,105,97,116,105,111,110,32,61,61,61,32,39,115,116,97,114,116,39,32,38,38,32,111,118,101,114,102,108,111,119,115,76,101,102,116,32,124,124,32,105,115,86,101,114,116,105,99,97,108,32,38,38,32,118,97,114,105,97,116,105,111,110,32,61,61,61,32,39,101,110,100,39,32,38,38,32,111,118,101,114,102,108,111,119,115,82,105,103,104,116,32,124,124,32,33,105,115,86,101,114,116,105,99,97,108,32,38,38,32,118,97,114,105,97,116,105,111,110,32,61,61,61,32,39,115,116,97,114,116,39,32,38,38,32,111,118,101,114,102,108,111,119,115,84,111,112,32,124,124,32,33,105,115,86,101,114,116,105,99,97,108,32,38,38,32,118,97,114,105,97,116,105,111,110,32,61,61,61,32,39,101,110,100,39,32,38,38,32,111,118,101,114,102,108,111,119,115,66,111,116,116,111,109,41,59,92,110,92,110,32,32,32,32,47,47,32,102,108,105,112,115,32,118,97,114,105,97,116,105,111,110,32,105,102,32,112,111,112,112,101,114,32,99,111,110,116,101,110,116,32,111,118,101,114,102,108,111,119,115,32,98,111,117,110,100,97,114,105,101,115,92,110,32,32,32,32,118,97,114,32,102,108,105,112,112,101,100,86,97,114,105,97,116,105,111,110,66,121,67,111,110,116,101,110,116,32,61,32,33,33,111,112,116,105,111,110,115,46,102,108,105,112,86,97,114,105,97,116,105,111,110,115,66,121,67,111,110,116,101,110,116,32,38,38,32,40,105,115,86,101,114,116,105,99,97,108,32,38,38,32,118,97,114,105,97,116,105,111,110,32,61,61,61,32,39,115,116,97,114,116,39,32,38,38,32,111,118,101,114,102,108,111,119,115,82,105,103,104,116,32,124,124,32,105,115,86,101,114,116,105,99,97,108,32,38,38,32,118,97,114,105,97,116,105,111,110,32,61,61,61,32,39,101,110,100,39,32,38,38,32,111,118,101,114,102,108,111,119,115,76,101,102,116,32,124,124,32,33,105,115,86,101,114,116,105,99,97,108,32,38,38,32,118,97,114,105,97,116,105,111,110,32,61,61,61,32,39,115,116,97,114,116,39,32,38,38,32,111,118,101,114,102,108,111,119,115,66,111,116,116,111,109,32,124,124,32,33,105,115,86,101,114,116,105,99,97,108,32,38,38,32,118,97,114,105,97,116,105,111,110,32,61,61,61,32,39,101,110,100,39,32,38,38,32,111,118,101,114,102,108,111,119,115,84,111,112,41,59,92,110,92,110,32,32,32,32,118,97,114,32,102,108,105,112,112,101,100,86,97,114,105,97,116,105,111,110,32,61,32,102,108,105,112,112,101,100,86,97,114,105,97,116,105,111,110,66,121,82,101,102,32,124,124,32,102,108,105,112,112,101,100,86,97,114,105,97,116,105,111,110,66,121,67,111,110,116,101,110,116,59,92,110,92,110,32,32,32,32,105,102,32,40,111,118,101,114,108,97,112,115,82,101,102,32,124,124,32,111,118,101,114,102,108,111,119,115,66,111,117,110,100,97,114,105,101,115,32,124,124,32,102,108,105,112,112,101,100,86,97,114,105,97,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,116,104,105,115,32,98,111,111,108,101,97,110,32,116,111,32,100,101,116,101,99,116,32,97,110,121,32,102,108,105,112,32,108,111,111,112,92,110,32,32,32,32,32,32,100,97,116,97,46,102,108,105,112,112,101,100,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,111,118,101,114,108,97,112,115,82,101,102,32,124,124,32,111,118,101,114,102,108,111,119,115,66,111,117,110,100,97,114,105,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,112,108,97,99,101,109,101,110,116,32,61,32,102,108,105,112,79,114,100,101,114,91,105,110,100,101,120,32,43,32,49,93,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,102,108,105,112,112,101,100,86,97,114,105,97,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,105,97,116,105,111,110,32,61,32,103,101,116,79,112,112,111,115,105,116,101,86,97,114,105,97,116,105,111,110,40,118,97,114,105,97,116,105,111,110,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,32,61,32,112,108,97,99,101,109,101,110,116,32,43,32,40,118,97,114,105,97,116,105,111,110,32,63,32,39,45,39,32,43,32,118,97,114,105,97,116,105,111,110,32,58,32,39,39,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,116,104,105,115,32,111,98,106,101,99,116,32,99,111,110,116,97,105,110,115,32,96,112,111,115,105,116,105,111,110,96,44,32,119,101,32,119,97,110,116,32,116,111,32,112,114,101,115,101,114,118,101,32,105,116,32,97,108,111,110,103,32,119,105,116,104,92,110,32,32,32,32,32,32,47,47,32,97,110,121,32,97,100,100,105,116,105,111,110,97,108,32,112,114,111,112,101,114,116,121,32,119,101,32,109,97,121,32,97,100,100,32,105,110,32,116,104,101,32,102,117,116,117,114,101,92,110,32,32,32,32,32,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,32,61,32,95,101,120,116,101,110,100,115,40,123,125,44,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,32,103,101,116,80,111,112,112,101,114,79,102,102,115,101,116,115,40,100,97,116,97,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,32,100,97,116,97,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,41,41,59,92,110,92,110,32,32,32,32,32,32,100,97,116,97,32,61,32,114,117,110,77,111,100,105,102,105,101,114,115,40,100,97,116,97,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,32,100,97,116,97,44,32,39,102,108,105,112,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,64,102,117,110,99,116,105,111,110,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,77,111,100,105,102,105,101,114,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,100,97,116,97,32,45,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,103,101,110,101,114,97,116,101,100,32,98,121,32,117,112,100,97,116,101,32,109,101,116,104,111,100,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,77,111,100,105,102,105,101,114,115,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,97,110,100,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,44,32,112,114,111,112,101,114,108,121,32,109,111,100,105,102,105,101,100,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,107,101,101,112,84,111,103,101,116,104,101,114,40,100,97,116,97,41,32,123,92,110,32,32,118,97,114,32,95,100,97,116,97,36,111,102,102,115,101,116,115,32,61,32,100,97,116,97,46,111,102,102,115,101,116,115,44,92,110,32,32,32,32,32,32,112,111,112,112,101,114,32,61,32,95,100,97,116,97,36,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,92,110,32,32,32,32,32,32,114,101,102,101,114,101,110,99,101,32,61,32,95,100,97,116,97,36,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,59,92,110,92,110,32,32,118,97,114,32,112,108,97,99,101,109,101,110,116,32,61,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,39,45,39,41,91,48,93,59,92,110,32,32,118,97,114,32,102,108,111,111,114,32,61,32,77,97,116,104,46,102,108,111,111,114,59,92,110,32,32,118,97,114,32,105,115,86,101,114,116,105,99,97,108,32,61,32,91,39,116,111,112,39,44,32,39,98,111,116,116,111,109,39,93,46,105,110,100,101,120,79,102,40,112,108,97,99,101,109,101,110,116,41,32,33,61,61,32,45,49,59,92,110,32,32,118,97,114,32,115,105,100,101,32,61,32,105,115,86,101,114,116,105,99,97,108,32,63,32,39,114,105,103,104,116,39,32,58,32,39,98,111,116,116,111,109,39,59,92,110,32,32,118,97,114,32,111,112,83,105,100,101,32,61,32,105,115,86,101,114,116,105,99,97,108,32,63,32,39,108,101,102,116,39,32,58,32,39,116,111,112,39,59,92,110,32,32,118,97,114,32,109,101,97,115,117,114,101,109,101,110,116,32,61,32,105,115,86,101,114,116,105,99,97,108,32,63,32,39,119,105,100,116,104,39,32,58,32,39,104,101,105,103,104,116,39,59,92,110,92,110,32,32,105,102,32,40,112,111,112,112,101,114,91,115,105,100,101,93,32,60,32,102,108,111,111,114,40,114,101,102,101,114,101,110,99,101,91,111,112,83,105,100,101,93,41,41,32,123,92,110,32,32,32,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,111,112,83,105,100,101,93,32,61,32,102,108,111,111,114,40,114,101,102,101,114,101,110,99,101,91,111,112,83,105,100,101,93,41,32,45,32,112,111,112,112,101,114,91,109,101,97,115,117,114,101,109,101,110,116,93,59,92,110,32,32,125,92,110,32,32,105,102,32,40,112,111,112,112,101,114,91,111,112,83,105,100,101,93,32,62,32,102,108,111,111,114,40,114,101,102,101,114,101,110,99,101,91,115,105,100,101,93,41,41,32,123,92,110,32,32,32,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,111,112,83,105,100,101,93,32,61,32,102,108,111,111,114,40,114,101,102,101,114,101,110,99,101,91,115,105,100,101,93,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,67,111,110,118,101,114,116,115,32,97,32,115,116,114,105,110,103,32,99,111,110,116,97,105,110,105,110,103,32,118,97,108,117,101,32,43,32,117,110,105,116,32,105,110,116,111,32,97,32,112,120,32,118,97,108,117,101,32,110,117,109,98,101,114,92,110,32,42,32,64,102,117,110,99,116,105,111,110,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,123,109,111,100,105,102,105,101,114,115,126,111,102,102,115,101,116,125,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,83,116,114,105,110,103,125,32,115,116,114,32,45,32,86,97,108,117,101,32,43,32,117,110,105,116,32,115,116,114,105,110,103,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,83,116,114,105,110,103,125,32,109,101,97,115,117,114,101,109,101,110,116,32,45,32,96,104,101,105,103,104,116,96,32,111,114,32,96,119,105,100,116,104,96,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,112,111,112,112,101,114,79,102,102,115,101,116,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,114,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,78,117,109,98,101,114,124,83,116,114,105,110,103,125,92,110,32,42,32,86,97,108,117,101,32,105,110,32,112,105,120,101,108,115,44,32,111,114,32,111,114,105,103,105,110,97,108,32,115,116,114,105,110,103,32,105,102,32,110,111,32,118,97,108,117,101,115,32,119,101,114,101,32,101,120,116,114,97,99,116,101,100,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,116,111,86,97,108,117,101,40,115,116,114,44,32,109,101,97,115,117,114,101,109,101,110,116,44,32,112,111,112,112,101,114,79,102,102,115,101,116,115,44,32,114,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,41,32,123,92,110,32,32,47,47,32,115,101,112,97,114,97,116,101,32,118,97,108,117,101,32,102,114,111,109,32,117,110,105,116,92,110,32,32,118,97,114,32,115,112,108,105,116,32,61,32,115,116,114,46,109,97,116,99,104,40,47,40,40,63,58,92,92,45,124,92,92,43,41,63,92,92,100,42,92,92,46,63,92,92,100,42,41,40,46,42,41,47,41,59,92,110,32,32,118,97,114,32,118,97,108,117,101,32,61,32,43,115,112,108,105,116,91,49,93,59,92,110,32,32,118,97,114,32,117,110,105,116,32,61,32,115,112,108,105,116,91,50,93,59,92,110,92,110,32,32,47,47,32,73,102,32,105,116,39,115,32,110,111,116,32,97,32,110,117,109,98,101,114,32,105,116,39,115,32,97,110,32,111,112,101,114,97,116,111,114,44,32,73,32,103,117,101,115,115,92,110,32,32,105,102,32,40,33,118,97,108,117,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,117,110,105,116,46,105,110,100,101,120,79,102,40,39,37,39,41,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,118,97,114,32,101,108,101,109,101,110,116,32,61,32,118,111,105,100,32,48,59,92,110,32,32,32,32,115,119,105,116,99,104,32,40,117,110,105,116,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,39,37,112,39,58,92,110,32,32,32,32,32,32,32,32,101,108,101,109,101,110,116,32,61,32,112,111,112,112,101,114,79,102,102,115,101,116,115,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,39,37,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,37,114,39,58,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,32,32,101,108,101,109,101,110,116,32,61,32,114,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,114,101,99,116,32,61,32,103,101,116,67,108,105,101,110,116,82,101,99,116,40,101,108,101,109,101,110,116,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,99,116,91,109,101,97,115,117,114,101,109,101,110,116,93,32,47,32,49,48,48,32,42,32,118,97,108,117,101,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,117,110,105,116,32,61,61,61,32,39,118,104,39,32,124,124,32,117,110,105,116,32,61,61,61,32,39,118,119,39,41,32,123,92,110,32,32,32,32,47,47,32,105,102,32,105,115,32,97,32,118,104,32,111,114,32,118,119,44,32,119,101,32,99,97,108,99,117,108,97,116,101,32,116,104,101,32,115,105,122,101,32,98,97,115,101,100,32,111,110,32,116,104,101,32,118,105,101,119,112,111,114,116,92,110,32,32,32,32,118,97,114,32,115,105,122,101,32,61,32,118,111,105,100,32,48,59,92,110,32,32,32,32,105,102,32,40,117,110,105,116,32,61,61,61,32,39,118,104,39,41,32,123,92,110,32,32,32,32,32,32,115,105,122,101,32,61,32,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,32,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,32,124,124,32,48,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,115,105,122,101,32,61,32,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,32,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,32,124,124,32,48,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,115,105,122,101,32,47,32,49,48,48,32,42,32,118,97,108,117,101,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,47,32,105,102,32,105,115,32,97,110,32,101,120,112,108,105,99,105,116,32,112,105,120,101,108,32,117,110,105,116,44,32,119,101,32,103,101,116,32,114,105,100,32,111,102,32,116,104,101,32,117,110,105,116,32,97,110,100,32,107,101,101,112,32,116,104,101,32,118,97,108,117,101,92,110,32,32,32,32,47,47,32,105,102,32,105,115,32,97,110,32,105,109,112,108,105,99,105,116,32,117,110,105,116,44,32,105,116,39,115,32,112,120,44,32,97,110,100,32,119,101,32,114,101,116,117,114,110,32,106,117,115,116,32,116,104,101,32,118,97,108,117,101,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,80,97,114,115,101,32,97,110,32,96,111,102,102,115,101,116,96,32,115,116,114,105,110,103,32,116,111,32,101,120,116,114,97,112,111,108,97,116,101,32,96,120,96,32,97,110,100,32,96,121,96,32,110,117,109,101,114,105,99,32,111,102,102,115,101,116,115,46,92,110,32,42,32,64,102,117,110,99,116,105,111,110,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,123,109,111,100,105,102,105,101,114,115,126,111,102,102,115,101,116,125,92,110,32,42,32,64,112,114,105,118,97,116,101,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,83,116,114,105,110,103,125,32,111,102,102,115,101,116,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,112,111,112,112,101,114,79,102,102,115,101,116,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,114,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,83,116,114,105,110,103,125,32,98,97,115,101,80,108,97,99,101,109,101,110,116,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,65,114,114,97,121,125,32,97,32,116,119,111,32,99,101,108,108,115,32,97,114,114,97,121,32,119,105,116,104,32,120,32,97,110,100,32,121,32,111,102,102,115,101,116,115,32,105,110,32,110,117,109,98,101,114,115,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,79,102,102,115,101,116,40,111,102,102,115,101,116,44,32,112,111,112,112,101,114,79,102,102,115,101,116,115,44,32,114,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,44,32,98,97,115,101,80,108,97,99,101,109,101,110,116,41,32,123,92,110,32,32,118,97,114,32,111,102,102,115,101,116,115,32,61,32,91,48,44,32,48,93,59,92,110,92,110,32,32,47,47,32,85,115,101,32,104,101,105,103,104,116,32,105,102,32,112,108,97,99,101,109,101,110,116,32,105,115,32,108,101,102,116,32,111,114,32,114,105,103,104,116,32,97,110,100,32,105,110,100,101,120,32,105,115,32,48,32,111,116,104,101,114,119,105,115,101,32,117,115,101,32,119,105,100,116,104,92,110,32,32,47,47,32,105,110,32,116,104,105,115,32,119,97,121,32,116,104,101,32,102,105,114,115,116,32,111,102,102,115,101,116,32,119,105,108,108,32,117,115,101,32,97,110,32,97,120,105,115,32,97,110,100,32,116,104,101,32,115,101,99,111,110,100,32,111,110,101,92,110,32,32,47,47,32,119,105,108,108,32,117,115,101,32,116,104,101,32,111,116,104,101,114,32,111,110,101,92,110,32,32,118,97,114,32,117,115,101,72,101,105,103,104,116,32,61,32,91,39,114,105,103,104,116,39,44,32,39,108,101,102,116,39,93,46,105,110,100,101,120,79,102,40,98,97,115,101,80,108,97,99,101,109,101,110,116,41,32,33,61,61,32,45,49,59,92,110,92,110,32,32,47,47,32,83,112,108,105,116,32,116,104,101,32,111,102,102,115,101,116,32,115,116,114,105,110,103,32,116,111,32,111,98,116,97,105,110,32,97,32,108,105,115,116,32,111,102,32,118,97,108,117,101,115,32,97,110,100,32,111,112,101,114,97,110,100,115,92,110,32,32,47,47,32,84,104,101,32,114,101,103,101,120,32,97,100,100,114,101,115,115,101,115,32,118,97,108,117,101,115,32,119,105,116,104,32,116,104,101,32,112,108,117,115,32,111,114,32,109,105,110,117,115,32,115,105,103,110,32,105,110,32,102,114,111,110,116,32,40,43,49,48,44,32,45,50,48,44,32,101,116,99,41,92,110,32,32,118,97,114,32,102,114,97,103,109,101,110,116,115,32,61,32,111,102,102,115,101,116,46,115,112,108,105,116,40,47,40,92,92,43,124,92,92,45,41,47,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,102,114,97,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,114,97,103,46,116,114,105,109,40,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,47,47,32,68,101,116,101,99,116,32,105,102,32,116,104,101,32,111,102,102,115,101,116,32,115,116,114,105,110,103,32,99,111,110,116,97,105,110,115,32,97,32,112,97,105,114,32,111,102,32,118,97,108,117,101,115,32,111,114,32,97,32,115,105,110,103,108,101,32,111,110,101,92,110,32,32,47,47,32,116,104,101,121,32,99,111,117,108,100,32,98,101,32,115,101,112,97,114,97,116,101,100,32,98,121,32,99,111,109,109,97,32,111,114,32,115,112,97,99,101,92,110,32,32,118,97,114,32,100,105,118,105,100,101,114,32,61,32,102,114,97,103,109,101,110,116,115,46,105,110,100,101,120,79,102,40,102,105,110,100,40,102,114,97,103,109,101,110,116,115,44,32,102,117,110,99,116,105,111,110,32,40,102,114,97,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,114,97,103,46,115,101,97,114,99,104,40,47,44,124,92,92,115,47,41,32,33,61,61,32,45,49,59,92,110,32,32,125,41,41,59,92,110,92,110,32,32,105,102,32,40,102,114,97,103,109,101,110,116,115,91,100,105,118,105,100,101,114,93,32,38,38,32,102,114,97,103,109,101,110,116,115,91,100,105,118,105,100,101,114,93,46,105,110,100,101,120,79,102,40,39,44,39,41,32,61,61,61,32,45,49,41,32,123,92,110,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,39,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,39,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,73,102,32,100,105,118,105,100,101,114,32,105,115,32,102,111,117,110,100,44,32,119,101,32,100,105,118,105,100,101,32,116,104,101,32,108,105,115,116,32,111,102,32,118,97,108,117,101,115,32,97,110,100,32,111,112,101,114,97,110,100,115,32,116,111,32,100,105,118,105,100,101,92,110,32,32,47,47,32,116,104,101,109,32,98,121,32,111,102,115,101,116,32,88,32,97,110,100,32,89,46,92,110,32,32,118,97,114,32,115,112,108,105,116,82,101,103,101,120,32,61,32,47,92,92,115,42,44,92,92,115,42,124,92,92,115,43,47,59,92,110,32,32,118,97,114,32,111,112,115,32,61,32,100,105,118,105,100,101,114,32,33,61,61,32,45,49,32,63,32,91,102,114,97,103,109,101,110,116,115,46,115,108,105,99,101,40,48,44,32,100,105,118,105,100,101,114,41,46,99,111,110,99,97,116,40,91,102,114,97,103,109,101,110,116,115,91,100,105,118,105,100,101,114,93,46,115,112,108,105,116,40,115,112,108,105,116,82,101,103,101,120,41,91,48,93,93,41,44,32,91,102,114,97,103,109,101,110,116,115,91,100,105,118,105,100,101,114,93,46,115,112,108,105,116,40,115,112,108,105,116,82,101,103,101,120,41,91,49,93,93,46,99,111,110,99,97,116,40,102,114,97,103,109,101,110,116,115,46,115,108,105,99,101,40,100,105,118,105,100,101,114,32,43,32,49,41,41,93,32,58,32,91,102,114,97,103,109,101,110,116,115,93,59,92,110,92,110,32,32,47,47,32,67,111,110,118,101,114,116,32,116,104,101,32,118,97,108,117,101,115,32,119,105,116,104,32,117,110,105,116,115,32,116,111,32,97,98,115,111,108,117,116,101,32,112,105,120,101,108,115,32,116,111,32,97,108,108,111,119,32,111,117,114,32,99,111,109,112,117,116,97,116,105,111,110,115,92,110,32,32,111,112,115,32,61,32,111,112,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,111,112,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,47,47,32,77,111,115,116,32,111,102,32,116,104,101,32,117,110,105,116,115,32,114,101,108,121,32,111,110,32,116,104,101,32,111,114,105,101,110,116,97,116,105,111,110,32,111,102,32,116,104,101,32,112,111,112,112,101,114,92,110,32,32,32,32,118,97,114,32,109,101,97,115,117,114,101,109,101,110,116,32,61,32,40,105,110,100,101,120,32,61,61,61,32,49,32,63,32,33,117,115,101,72,101,105,103,104,116,32,58,32,117,115,101,72,101,105,103,104,116,41,32,63,32,39,104,101,105,103,104,116,39,32,58,32,39,119,105,100,116,104,39,59,92,110,32,32,32,32,118,97,114,32,109,101,114,103,101,87,105,116,104,80,114,101,118,105,111,117,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,111,112,92,110,32,32,32,32,47,47,32,84,104,105,115,32,97,103,103,114,101,103,97,116,101,115,32,97,110,121,32,96,43,96,32,111,114,32,96,45,96,32,115,105,103,110,32,116,104,97,116,32,97,114,101,110,39,116,32,99,111,110,115,105,100,101,114,101,100,32,111,112,101,114,97,116,111,114,115,92,110,32,32,32,32,47,47,32,101,46,103,46,58,32,49,48,32,43,32,43,53,32,61,62,32,91,49,48,44,32,43,44,32,43,53,93,92,110,32,32,32,32,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,97,91,97,46,108,101,110,103,116,104,32,45,32,49,93,32,61,61,61,32,39,39,32,38,38,32,91,39,43,39,44,32,39,45,39,93,46,105,110,100,101,120,79,102,40,98,41,32,33,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,97,91,97,46,108,101,110,103,116,104,32,45,32,49,93,32,61,32,98,59,92,110,32,32,32,32,32,32,32,32,109,101,114,103,101,87,105,116,104,80,114,101,118,105,111,117,115,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,109,101,114,103,101,87,105,116,104,80,114,101,118,105,111,117,115,41,32,123,92,110,32,32,32,32,32,32,32,32,97,91,97,46,108,101,110,103,116,104,32,45,32,49,93,32,43,61,32,98,59,92,110,32,32,32,32,32,32,32,32,109,101,114,103,101,87,105,116,104,80,114,101,118,105,111,117,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,46,99,111,110,99,97,116,40,98,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,91,93,41,92,110,32,32,32,32,47,47,32,72,101,114,101,32,119,101,32,99,111,110,118,101,114,116,32,116,104,101,32,115,116,114,105,110,103,32,118,97,108,117,101,115,32,105,110,116,111,32,110,117,109,98,101,114,32,118,97,108,117,101,115,32,40,105,110,32,112,120,41,92,110,32,32,32,32,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,115,116,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,111,86,97,108,117,101,40,115,116,114,44,32,109,101,97,115,117,114,101,109,101,110,116,44,32,112,111,112,112,101,114,79,102,102,115,101,116,115,44,32,114,101,102,101,114,101,110,99,101,79,102,102,115,101,116,115,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,47,47,32,76,111,111,112,32,116,114,111,117,103,104,32,116,104,101,32,111,102,102,115,101,116,115,32,97,114,114,97,121,115,32,97,110,100,32,101,120,101,99,117,116,101,32,116,104,101,32,111,112,101,114,97,116,105,111,110,115,92,110,32,32,111,112,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,111,112,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,111,112,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,102,114,97,103,44,32,105,110,100,101,120,50,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,78,117,109,101,114,105,99,40,102,114,97,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,111,102,102,115,101,116,115,91,105,110,100,101,120,93,32,43,61,32,102,114,97,103,32,42,32,40,111,112,91,105,110,100,101,120,50,32,45,32,49,93,32,61,61,61,32,39,45,39,32,63,32,45,49,32,58,32,49,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,111,102,102,115,101,116,115,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,64,102,117,110,99,116,105,111,110,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,77,111,100,105,102,105,101,114,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,100,97,116,97,32,45,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,103,101,110,101,114,97,116,101,100,32,98,121,32,117,112,100,97,116,101,32,109,101,116,104,111,100,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,77,111,100,105,102,105,101,114,115,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,97,110,100,32,111,112,116,105,111,110,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,78,117,109,98,101,114,124,83,116,114,105,110,103,125,32,111,112,116,105,111,110,115,46,111,102,102,115,101,116,61,48,92,110,32,42,32,84,104,101,32,111,102,102,115,101,116,32,118,97,108,117,101,32,97,115,32,100,101,115,99,114,105,98,101,100,32,105,110,32,116,104,101,32,109,111,100,105,102,105,101,114,32,100,101,115,99,114,105,112,116,105,111,110,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,44,32,112,114,111,112,101,114,108,121,32,109,111,100,105,102,105,101,100,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,111,102,102,115,101,116,40,100,97,116,97,44,32,95,114,101,102,41,32,123,92,110,32,32,118,97,114,32,111,102,102,115,101,116,32,61,32,95,114,101,102,46,111,102,102,115,101,116,59,92,110,32,32,118,97,114,32,112,108,97,99,101,109,101,110,116,32,61,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,44,92,110,32,32,32,32,32,32,95,100,97,116,97,36,111,102,102,115,101,116,115,32,61,32,100,97,116,97,46,111,102,102,115,101,116,115,44,92,110,32,32,32,32,32,32,112,111,112,112,101,114,32,61,32,95,100,97,116,97,36,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,92,110,32,32,32,32,32,32,114,101,102,101,114,101,110,99,101,32,61,32,95,100,97,116,97,36,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,59,92,110,92,110,32,32,118,97,114,32,98,97,115,101,80,108,97,99,101,109,101,110,116,32,61,32,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,39,45,39,41,91,48,93,59,92,110,92,110,32,32,118,97,114,32,111,102,102,115,101,116,115,32,61,32,118,111,105,100,32,48,59,92,110,32,32,105,102,32,40,105,115,78,117,109,101,114,105,99,40,43,111,102,102,115,101,116,41,41,32,123,92,110,32,32,32,32,111,102,102,115,101,116,115,32,61,32,91,43,111,102,102,115,101,116,44,32,48,93,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,111,102,102,115,101,116,115,32,61,32,112,97,114,115,101,79,102,102,115,101,116,40,111,102,102,115,101,116,44,32,112,111,112,112,101,114,44,32,114,101,102,101,114,101,110,99,101,44,32,98,97,115,101,80,108,97,99,101,109,101,110,116,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,98,97,115,101,80,108,97,99,101,109,101,110,116,32,61,61,61,32,39,108,101,102,116,39,41,32,123,92,110,32,32,32,32,112,111,112,112,101,114,46,116,111,112,32,43,61,32,111,102,102,115,101,116,115,91,48,93,59,92,110,32,32,32,32,112,111,112,112,101,114,46,108,101,102,116,32,45,61,32,111,102,102,115,101,116,115,91,49,93,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,98,97,115,101,80,108,97,99,101,109,101,110,116,32,61,61,61,32,39,114,105,103,104,116,39,41,32,123,92,110,32,32,32,32,112,111,112,112,101,114,46,116,111,112,32,43,61,32,111,102,102,115,101,116,115,91,48,93,59,92,110,32,32,32,32,112,111,112,112,101,114,46,108,101,102,116,32,43,61,32,111,102,102,115,101,116,115,91,49,93,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,98,97,115,101,80,108,97,99,101,109,101,110,116,32,61,61,61,32,39,116,111,112,39,41,32,123,92,110,32,32,32,32,112,111,112,112,101,114,46,108,101,102,116,32,43,61,32,111,102,102,115,101,116,115,91,48,93,59,92,110,32,32,32,32,112,111,112,112,101,114,46,116,111,112,32,45,61,32,111,102,102,115,101,116,115,91,49,93,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,98,97,115,101,80,108,97,99,101,109,101,110,116,32,61,61,61,32,39,98,111,116,116,111,109,39,41,32,123,92,110,32,32,32,32,112,111,112,112,101,114,46,108,101,102,116,32,43,61,32,111,102,102,115,101,116,115,91,48,93,59,92,110,32,32,32,32,112,111,112,112,101,114,46,116,111,112,32,43,61,32,111,102,102,115,101,116,115,91,49,93,59,92,110,32,32,125,92,110,92,110,32,32,100,97,116,97,46,112,111,112,112,101,114,32,61,32,112,111,112,112,101,114,59,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,64,102,117,110,99,116,105,111,110,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,77,111,100,105,102,105,101,114,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,100,97,116,97,32,45,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,103,101,110,101,114,97,116,101,100,32,98,121,32,96,117,112,100,97,116,101,96,32,109,101,116,104,111,100,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,77,111,100,105,102,105,101,114,115,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,97,110,100,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,44,32,112,114,111,112,101,114,108,121,32,109,111,100,105,102,105,101,100,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,40,100,97,116,97,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,32,61,32,111,112,116,105,111,110,115,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,32,124,124,32,103,101,116,79,102,102,115,101,116,80,97,114,101,110,116,40,100,97,116,97,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,59,92,110,92,110,32,32,47,47,32,73,102,32,111,102,102,115,101,116,80,97,114,101,110,116,32,105,115,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,44,32,119,101,32,114,101,97,108,108,121,32,119,97,110,116,32,116,111,92,110,32,32,47,47,32,103,111,32,111,110,101,32,115,116,101,112,32,117,112,32,97,110,100,32,117,115,101,32,116,104,101,32,110,101,120,116,32,111,102,102,115,101,116,80,97,114,101,110,116,32,97,115,32,114,101,102,101,114,101,110,99,101,32,116,111,92,110,32,32,47,47,32,97,118,111,105,100,32,116,111,32,109,97,107,101,32,116,104,105,115,32,109,111,100,105,102,105,101,114,32,99,111,109,112,108,101,116,101,108,121,32,117,115,101,108,101,115,115,32,97,110,100,32,108,111,111,107,32,108,105,107,101,32,98,114,111,107,101,110,92,110,32,32,105,102,32,40,100,97,116,97,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,32,61,61,61,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,32,61,32,103,101,116,79,102,102,115,101,116,80,97,114,101,110,116,40,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,78,79,84,69,58,32,68,79,77,32,97,99,99,101,115,115,32,104,101,114,101,92,110,32,32,47,47,32,114,101,115,101,116,115,32,116,104,101,32,112,111,112,112,101,114,39,115,32,112,111,115,105,116,105,111,110,32,115,111,32,116,104,97,116,32,116,104,101,32,100,111,99,117,109,101,110,116,32,115,105,122,101,32,99,97,110,32,98,101,32,99,97,108,99,117,108,97,116,101,100,32,101,120,99,108,117,100,105,110,103,92,110,32,32,47,47,32,116,104,101,32,115,105,122,101,32,111,102,32,116,104,101,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,32,105,116,115,101,108,102,92,110,32,32,118,97,114,32,116,114,97,110,115,102,111,114,109,80,114,111,112,32,61,32,103,101,116,83,117,112,112,111,114,116,101,100,80,114,111,112,101,114,116,121,78,97,109,101,40,39,116,114,97,110,115,102,111,114,109,39,41,59,92,110,32,32,118,97,114,32,112,111,112,112,101,114,83,116,121,108,101,115,32,61,32,100,97,116,97,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,115,116,121,108,101,59,32,47,47,32,97,115,115,105,103,110,109,101,110,116,32,116,111,32,104,101,108,112,32,109,105,110,105,102,105,99,97,116,105,111,110,92,110,32,32,118,97,114,32,116,111,112,32,61,32,112,111,112,112,101,114,83,116,121,108,101,115,46,116,111,112,44,92,110,32,32,32,32,32,32,108,101,102,116,32,61,32,112,111,112,112,101,114,83,116,121,108,101,115,46,108,101,102,116,44,92,110,32,32,32,32,32,32,116,114,97,110,115,102,111,114,109,32,61,32,112,111,112,112,101,114,83,116,121,108,101,115,91,116,114,97,110,115,102,111,114,109,80,114,111,112,93,59,92,110,92,110,32,32,112,111,112,112,101,114,83,116,121,108,101,115,46,116,111,112,32,61,32,39,39,59,92,110,32,32,112,111,112,112,101,114,83,116,121,108,101,115,46,108,101,102,116,32,61,32,39,39,59,92,110,32,32,112,111,112,112,101,114,83,116,121,108,101,115,91,116,114,97,110,115,102,111,114,109,80,114,111,112,93,32,61,32,39,39,59,92,110,92,110,32,32,118,97,114,32,98,111,117,110,100,97,114,105,101,115,32,61,32,103,101,116,66,111,117,110,100,97,114,105,101,115,40,100,97,116,97,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,32,100,97,116,97,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,44,32,111,112,116,105,111,110,115,46,112,97,100,100,105,110,103,44,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,32,100,97,116,97,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,59,92,110,92,110,32,32,47,47,32,78,79,84,69,58,32,68,79,77,32,97,99,99,101,115,115,32,104,101,114,101,92,110,32,32,47,47,32,114,101,115,116,111,114,101,115,32,116,104,101,32,111,114,105,103,105,110,97,108,32,115,116,121,108,101,32,112,114,111,112,101,114,116,105,101,115,32,97,102,116,101,114,32,116,104,101,32,111,102,102,115,101,116,115,32,104,97,118,101,32,98,101,101,110,32,99,111,109,112,117,116,101,100,92,110,32,32,112,111,112,112,101,114,83,116,121,108,101,115,46,116,111,112,32,61,32,116,111,112,59,92,110,32,32,112,111,112,112,101,114,83,116,121,108,101,115,46,108,101,102,116,32,61,32,108,101,102,116,59,92,110,32,32,112,111,112,112,101,114,83,116,121,108,101,115,91,116,114,97,110,115,102,111,114,109,80,114,111,112,93,32,61,32,116,114,97,110,115,102,111,114,109,59,92,110,92,110,32,32,111,112,116,105,111,110,115,46,98,111,117,110,100,97,114,105,101,115,32,61,32,98,111,117,110,100,97,114,105,101,115,59,92,110,92,110,32,32,118,97,114,32,111,114,100,101,114,32,61,32,111,112,116,105,111,110,115,46,112,114,105,111,114,105,116,121,59,92,110,32,32,118,97,114,32,112,111,112,112,101,114,32,61,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,59,92,110,92,110,32,32,118,97,114,32,99,104,101,99,107,32,61,32,123,92,110,32,32,32,32,112,114,105,109,97,114,121,58,32,102,117,110,99,116,105,111,110,32,112,114,105,109,97,114,121,40,112,108,97,99,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,112,111,112,112,101,114,91,112,108,97,99,101,109,101,110,116,93,59,92,110,32,32,32,32,32,32,105,102,32,40,112,111,112,112,101,114,91,112,108,97,99,101,109,101,110,116,93,32,60,32,98,111,117,110,100,97,114,105,101,115,91,112,108,97,99,101,109,101,110,116,93,32,38,38,32,33,111,112,116,105,111,110,115,46,101,115,99,97,112,101,87,105,116,104,82,101,102,101,114,101,110,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,77,97,116,104,46,109,97,120,40,112,111,112,112,101,114,91,112,108,97,99,101,109,101,110,116,93,44,32,98,111,117,110,100,97,114,105,101,115,91,112,108,97,99,101,109,101,110,116,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,112,108,97,99,101,109,101,110,116,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,99,111,110,100,97,114,121,58,32,102,117,110,99,116,105,111,110,32,115,101,99,111,110,100,97,114,121,40,112,108,97,99,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,97,105,110,83,105,100,101,32,61,32,112,108,97,99,101,109,101,110,116,32,61,61,61,32,39,114,105,103,104,116,39,32,63,32,39,108,101,102,116,39,32,58,32,39,116,111,112,39,59,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,112,111,112,112,101,114,91,109,97,105,110,83,105,100,101,93,59,92,110,32,32,32,32,32,32,105,102,32,40,112,111,112,112,101,114,91,112,108,97,99,101,109,101,110,116,93,32,62,32,98,111,117,110,100,97,114,105,101,115,91,112,108,97,99,101,109,101,110,116,93,32,38,38,32,33,111,112,116,105,111,110,115,46,101,115,99,97,112,101,87,105,116,104,82,101,102,101,114,101,110,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,77,97,116,104,46,109,105,110,40,112,111,112,112,101,114,91,109,97,105,110,83,105,100,101,93,44,32,98,111,117,110,100,97,114,105,101,115,91,112,108,97,99,101,109,101,110,116,93,32,45,32,40,112,108,97,99,101,109,101,110,116,32,61,61,61,32,39,114,105,103,104,116,39,32,63,32,112,111,112,112,101,114,46,119,105,100,116,104,32,58,32,112,111,112,112,101,114,46,104,101,105,103,104,116,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,109,97,105,110,83,105,100,101,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,111,114,100,101,114,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,108,97,99,101,109,101,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,115,105,100,101,32,61,32,91,39,108,101,102,116,39,44,32,39,116,111,112,39,93,46,105,110,100,101,120,79,102,40,112,108,97,99,101,109,101,110,116,41,32,33,61,61,32,45,49,32,63,32,39,112,114,105,109,97,114,121,39,32,58,32,39,115,101,99,111,110,100,97,114,121,39,59,92,110,32,32,32,32,112,111,112,112,101,114,32,61,32,95,101,120,116,101,110,100,115,40,123,125,44,32,112,111,112,112,101,114,44,32,99,104,101,99,107,91,115,105,100,101,93,40,112,108,97,99,101,109,101,110,116,41,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,32,61,32,112,111,112,112,101,114,59,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,64,102,117,110,99,116,105,111,110,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,77,111,100,105,102,105,101,114,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,100,97,116,97,32,45,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,103,101,110,101,114,97,116,101,100,32,98,121,32,96,117,112,100,97,116,101,96,32,109,101,116,104,111,100,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,77,111,100,105,102,105,101,114,115,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,97,110,100,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,44,32,112,114,111,112,101,114,108,121,32,109,111,100,105,102,105,101,100,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,115,104,105,102,116,40,100,97,116,97,41,32,123,92,110,32,32,118,97,114,32,112,108,97,99,101,109,101,110,116,32,61,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,59,92,110,32,32,118,97,114,32,98,97,115,101,80,108,97,99,101,109,101,110,116,32,61,32,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,39,45,39,41,91,48,93,59,92,110,32,32,118,97,114,32,115,104,105,102,116,118,97,114,105,97,116,105,111,110,32,61,32,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,39,45,39,41,91,49,93,59,92,110,92,110,32,32,47,47,32,105,102,32,115,104,105,102,116,32,115,104,105,102,116,118,97,114,105,97,116,105,111,110,32,105,115,32,115,112,101,99,105,102,105,101,100,44,32,114,117,110,32,116,104,101,32,109,111,100,105,102,105,101,114,92,110,32,32,105,102,32,40,115,104,105,102,116,118,97,114,105,97,116,105,111,110,41,32,123,92,110,32,32,32,32,118,97,114,32,95,100,97,116,97,36,111,102,102,115,101,116,115,32,61,32,100,97,116,97,46,111,102,102,115,101,116,115,44,92,110,32,32,32,32,32,32,32,32,114,101,102,101,114,101,110,99,101,32,61,32,95,100,97,116,97,36,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,92,110,32,32,32,32,32,32,32,32,112,111,112,112,101,114,32,61,32,95,100,97,116,97,36,111,102,102,115,101,116,115,46,112,111,112,112,101,114,59,92,110,92,110,32,32,32,32,118,97,114,32,105,115,86,101,114,116,105,99,97,108,32,61,32,91,39,98,111,116,116,111,109,39,44,32,39,116,111,112,39,93,46,105,110,100,101,120,79,102,40,98,97,115,101,80,108,97,99,101,109,101,110,116,41,32,33,61,61,32,45,49,59,92,110,32,32,32,32,118,97,114,32,115,105,100,101,32,61,32,105,115,86,101,114,116,105,99,97,108,32,63,32,39,108,101,102,116,39,32,58,32,39,116,111,112,39,59,92,110,32,32,32,32,118,97,114,32,109,101,97,115,117,114,101,109,101,110,116,32,61,32,105,115,86,101,114,116,105,99,97,108,32,63,32,39,119,105,100,116,104,39,32,58,32,39,104,101,105,103,104,116,39,59,92,110,92,110,32,32,32,32,118,97,114,32,115,104,105,102,116,79,102,102,115,101,116,115,32,61,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,58,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,115,105,100,101,44,32,114,101,102,101,114,101,110,99,101,91,115,105,100,101,93,41,44,92,110,32,32,32,32,32,32,101,110,100,58,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,115,105,100,101,44,32,114,101,102,101,114,101,110,99,101,91,115,105,100,101,93,32,43,32,114,101,102,101,114,101,110,99,101,91,109,101,97,115,117,114,101,109,101,110,116,93,32,45,32,112,111,112,112,101,114,91,109,101,97,115,117,114,101,109,101,110,116,93,41,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,32,61,32,95,101,120,116,101,110,100,115,40,123,125,44,32,112,111,112,112,101,114,44,32,115,104,105,102,116,79,102,102,115,101,116,115,91,115,104,105,102,116,118,97,114,105,97,116,105,111,110,93,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,64,102,117,110,99,116,105,111,110,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,77,111,100,105,102,105,101,114,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,100,97,116,97,32,45,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,103,101,110,101,114,97,116,101,100,32,98,121,32,117,112,100,97,116,101,32,109,101,116,104,111,100,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,77,111,100,105,102,105,101,114,115,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,97,110,100,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,44,32,112,114,111,112,101,114,108,121,32,109,111,100,105,102,105,101,100,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,104,105,100,101,40,100,97,116,97,41,32,123,92,110,32,32,105,102,32,40,33,105,115,77,111,100,105,102,105,101,114,82,101,113,117,105,114,101,100,40,100,97,116,97,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,32,39,104,105,100,101,39,44,32,39,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,39,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,114,101,102,82,101,99,116,32,61,32,100,97,116,97,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,59,92,110,32,32,118,97,114,32,98,111,117,110,100,32,61,32,102,105,110,100,40,100,97,116,97,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,32,102,117,110,99,116,105,111,110,32,40,109,111,100,105,102,105,101,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,109,111,100,105,102,105,101,114,46,110,97,109,101,32,61,61,61,32,39,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,39,59,92,110,32,32,125,41,46,98,111,117,110,100,97,114,105,101,115,59,92,110,92,110,32,32,105,102,32,40,114,101,102,82,101,99,116,46,98,111,116,116,111,109,32,60,32,98,111,117,110,100,46,116,111,112,32,124,124,32,114,101,102,82,101,99,116,46,108,101,102,116,32,62,32,98,111,117,110,100,46,114,105,103,104,116,32,124,124,32,114,101,102,82,101,99,116,46,116,111,112,32,62,32,98,111,117,110,100,46,98,111,116,116,111,109,32,124,124,32,114,101,102,82,101,99,116,46,114,105,103,104,116,32,60,32,98,111,117,110,100,46,108,101,102,116,41,32,123,92,110,32,32,32,32,47,47,32,65,118,111,105,100,32,117,110,110,101,99,101,115,115,97,114,121,32,68,79,77,32,97,99,99,101,115,115,32,105,102,32,118,105,115,105,98,105,108,105,116,121,32,104,97,115,110,39,116,32,99,104,97,110,103,101,100,92,110,32,32,32,32,105,102,32,40,100,97,116,97,46,104,105,100,101,32,61,61,61,32,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,100,97,116,97,46,104,105,100,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,100,97,116,97,46,97,116,116,114,105,98,117,116,101,115,91,39,120,45,111,117,116,45,111,102,45,98,111,117,110,100,97,114,105,101,115,39,93,32,61,32,39,39,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,47,32,65,118,111,105,100,32,117,110,110,101,99,101,115,115,97,114,121,32,68,79,77,32,97,99,99,101,115,115,32,105,102,32,118,105,115,105,98,105,108,105,116,121,32,104,97,115,110,39,116,32,99,104,97,110,103,101,100,92,110,32,32,32,32,105,102,32,40,100,97,116,97,46,104,105,100,101,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,100,97,116,97,46,104,105,100,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,100,97,116,97,46,97,116,116,114,105,98,117,116,101,115,91,39,120,45,111,117,116,45,111,102,45,98,111,117,110,100,97,114,105,101,115,39,93,32,61,32,102,97,108,115,101,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,64,102,117,110,99,116,105,111,110,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,77,111,100,105,102,105,101,114,115,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,100,97,116,97,32,45,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,103,101,110,101,114,97,116,101,100,32,98,121,32,96,117,112,100,97,116,101,96,32,109,101,116,104,111,100,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,77,111,100,105,102,105,101,114,115,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,97,110,100,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,79,98,106,101,99,116,125,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,44,32,112,114,111,112,101,114,108,121,32,109,111,100,105,102,105,101,100,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,110,110,101,114,40,100,97,116,97,41,32,123,92,110,32,32,118,97,114,32,112,108,97,99,101,109,101,110,116,32,61,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,59,92,110,32,32,118,97,114,32,98,97,115,101,80,108,97,99,101,109,101,110,116,32,61,32,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,39,45,39,41,91,48,93,59,92,110,32,32,118,97,114,32,95,100,97,116,97,36,111,102,102,115,101,116,115,32,61,32,100,97,116,97,46,111,102,102,115,101,116,115,44,92,110,32,32,32,32,32,32,112,111,112,112,101,114,32,61,32,95,100,97,116,97,36,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,92,110,32,32,32,32,32,32,114,101,102,101,114,101,110,99,101,32,61,32,95,100,97,116,97,36,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,59,92,110,92,110,32,32,118,97,114,32,105,115,72,111,114,105,122,32,61,32,91,39,108,101,102,116,39,44,32,39,114,105,103,104,116,39,93,46,105,110,100,101,120,79,102,40,98,97,115,101,80,108,97,99,101,109,101,110,116,41,32,33,61,61,32,45,49,59,92,110,92,110,32,32,118,97,114,32,115,117,98,116,114,97,99,116,76,101,110,103,116,104,32,61,32,91,39,116,111,112,39,44,32,39,108,101,102,116,39,93,46,105,110,100,101,120,79,102,40,98,97,115,101,80,108,97,99,101,109,101,110,116,41,32,61,61,61,32,45,49,59,92,110,92,110,32,32,112,111,112,112,101,114,91,105,115,72,111,114,105,122,32,63,32,39,108,101,102,116,39,32,58,32,39,116,111,112,39,93,32,61,32,114,101,102,101,114,101,110,99,101,91,98,97,115,101,80,108,97,99,101,109,101,110,116,93,32,45,32,40,115,117,98,116,114,97,99,116,76,101,110,103,116,104,32,63,32,112,111,112,112,101,114,91,105,115,72,111,114,105,122,32,63,32,39,119,105,100,116,104,39,32,58,32,39,104,101,105,103,104,116,39,93,32,58,32,48,41,59,92,110,92,110,32,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,32,61,32,103,101,116,79,112,112,111,115,105,116,101,80,108,97,99,101,109,101,110,116,40,112,108,97,99,101,109,101,110,116,41,59,92,110,32,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,32,61,32,103,101,116,67,108,105,101,110,116,82,101,99,116,40,112,111,112,112,101,114,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,77,111,100,105,102,105,101,114,32,102,117,110,99,116,105,111,110,44,32,101,97,99,104,32,109,111,100,105,102,105,101,114,32,99,97,110,32,104,97,118,101,32,97,32,102,117,110,99,116,105,111,110,32,111,102,32,116,104,105,115,32,116,121,112,101,32,97,115,115,105,103,110,101,100,92,110,32,42,32,116,111,32,105,116,115,32,96,102,110,96,32,112,114,111,112,101,114,116,121,46,60,98,114,32,47,62,92,110,32,42,32,84,104,101,115,101,32,102,117,110,99,116,105,111,110,115,32,119,105,108,108,32,98,101,32,99,97,108,108,101,100,32,111,110,32,101,97,99,104,32,117,112,100,97,116,101,44,32,116,104,105,115,32,109,101,97,110,115,32,116,104,97,116,32,121,111,117,32,109,117,115,116,92,110,32,42,32,109,97,107,101,32,115,117,114,101,32,116,104,101,121,32,97,114,101,32,112,101,114,102,111,114,109,97,110,116,32,101,110,111,117,103,104,32,116,111,32,97,118,111,105,100,32,112,101,114,102,111,114,109,97,110,99,101,32,98,111,116,116,108,101,110,101,99,107,115,46,92,110,32,42,92,110,32,42,32,64,102,117,110,99,116,105,111,110,32,77,111,100,105,102,105,101,114,70,110,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,100,97,116,97,79,98,106,101,99,116,125,32,100,97,116,97,32,45,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,32,103,101,110,101,114,97,116,101,100,32,98,121,32,96,117,112,100,97,116,101,96,32,109,101,116,104,111,100,92,110,32,42,32,64,97,114,103,117,109,101,110,116,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,77,111,100,105,102,105,101,114,115,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,97,110,100,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,115,32,123,100,97,116,97,79,98,106,101,99,116,125,32,84,104,101,32,100,97,116,97,32,111,98,106,101,99,116,44,32,112,114,111,112,101,114,108,121,32,109,111,100,105,102,105,101,100,92,110,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,77,111,100,105,102,105,101,114,115,32,97,114,101,32,112,108,117,103,105,110,115,32,117,115,101,100,32,116,111,32,97,108,116,101,114,32,116,104,101,32,98,101,104,97,118,105,111,114,32,111,102,32,121,111,117,114,32,112,111,112,112,101,114,115,46,60,98,114,32,47,62,92,110,32,42,32,80,111,112,112,101,114,46,106,115,32,117,115,101,115,32,97,32,115,101,116,32,111,102,32,57,32,109,111,100,105,102,105,101,114,115,32,116,111,32,112,114,111,118,105,100,101,32,97,108,108,32,116,104,101,32,98,97,115,105,99,32,102,117,110,99,116,105,111,110,97,108,105,116,105,101,115,92,110,32,42,32,110,101,101,100,101,100,32,98,121,32,116,104,101,32,108,105,98,114,97,114,121,46,92,110,32,42,92,110,32,42,32,85,115,117,97,108,108,121,32,121,111,117,32,100,111,110,39,116,32,119,97,110,116,32,116,111,32,111,118,101,114,114,105,100,101,32,116,104,101,32,96,111,114,100,101,114,96,44,32,96,102,110,96,32,97,110,100,32,96,111,110,76,111,97,100,96,32,112,114,111,112,115,46,92,110,32,42,32,65,108,108,32,116,104,101,32,111,116,104,101,114,32,112,114,111,112,101,114,116,105,101,115,32,97,114,101,32,99,111,110,102,105,103,117,114,97,116,105,111,110,115,32,116,104,97,116,32,99,111,117,108,100,32,98,101,32,116,119,101,97,107,101,100,46,92,110,32,42,32,64,110,97,109,101,115,112,97,99,101,32,109,111,100,105,102,105,101,114,115,92,110,32,42,47,92,110,118,97,114,32,109,111,100,105,102,105,101,114,115,32,61,32,123,92,110,32,32,47,42,42,92,110,32,32,32,42,32,77,111,100,105,102,105,101,114,32,117,115,101,100,32,116,111,32,115,104,105,102,116,32,116,104,101,32,112,111,112,112,101,114,32,111,110,32,116,104,101,32,115,116,97,114,116,32,111,114,32,101,110,100,32,111,102,32,105,116,115,32,114,101,102,101,114,101,110,99,101,92,110,32,32,32,42,32,101,108,101,109,101,110,116,46,60,98,114,32,47,62,92,110,32,32,32,42,32,73,116,32,119,105,108,108,32,114,101,97,100,32,116,104,101,32,118,97,114,105,97,116,105,111,110,32,111,102,32,116,104,101,32,96,112,108,97,99,101,109,101,110,116,96,32,112,114,111,112,101,114,116,121,46,60,98,114,32,47,62,92,110,32,32,32,42,32,73,116,32,99,97,110,32,98,101,32,111,110,101,32,101,105,116,104,101,114,32,96,45,101,110,100,96,32,111,114,32,96,45,115,116,97,114,116,96,46,92,110,32,32,32,42,32,64,109,101,109,98,101,114,111,102,32,109,111,100,105,102,105,101,114,115,92,110,32,32,32,42,32,64,105,110,110,101,114,92,110,32,32,32,42,47,92,110,32,32,115,104,105,102,116,58,32,123,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,110,117,109,98,101,114,125,32,111,114,100,101,114,61,49,48,48,32,45,32,73,110,100,101,120,32,117,115,101,100,32,116,111,32,100,101,102,105,110,101,32,116,104,101,32,111,114,100,101,114,32,111,102,32,101,120,101,99,117,116,105,111,110,32,42,47,92,110,32,32,32,32,111,114,100,101,114,58,32,49,48,48,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,101,110,97,98,108,101,100,61,116,114,117,101,32,45,32,87,104,101,116,104,101,114,32,116,104,101,32,109,111,100,105,102,105,101,114,32,105,115,32,101,110,97,98,108,101,100,32,111,114,32,110,111,116,32,42,47,92,110,32,32,32,32,101,110,97,98,108,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,77,111,100,105,102,105,101,114,70,110,125,32,42,47,92,110,32,32,32,32,102,110,58,32,115,104,105,102,116,92,110,32,32,125,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,101,32,96,111,102,102,115,101,116,96,32,109,111,100,105,102,105,101,114,32,99,97,110,32,115,104,105,102,116,32,121,111,117,114,32,112,111,112,112,101,114,32,111,110,32,98,111,116,104,32,105,116,115,32,97,120,105,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,73,116,32,97,99,99,101,112,116,115,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,117,110,105,116,115,58,92,110,32,32,32,42,32,45,32,96,112,120,96,32,111,114,32,117,110,105,116,45,108,101,115,115,44,32,105,110,116,101,114,112,114,101,116,101,100,32,97,115,32,112,105,120,101,108,115,92,110,32,32,32,42,32,45,32,96,37,96,32,111,114,32,96,37,114,96,44,32,112,101,114,99,101,110,116,97,103,101,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,108,101,110,103,116,104,32,111,102,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,92,110,32,32,32,42,32,45,32,96,37,112,96,44,32,112,101,114,99,101,110,116,97,103,101,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,108,101,110,103,116,104,32,111,102,32,116,104,101,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,92,110,32,32,32,42,32,45,32,96,118,119,96,44,32,67,83,83,32,118,105,101,119,112,111,114,116,32,119,105,100,116,104,32,117,110,105,116,92,110,32,32,32,42,32,45,32,96,118,104,96,44,32,67,83,83,32,118,105,101,119,112,111,114,116,32,104,101,105,103,104,116,32,117,110,105,116,92,110,32,32,32,42,92,110,32,32,32,42,32,70,111,114,32,108,101,110,103,116,104,32,105,115,32,105,110,116,101,110,100,101,100,32,116,104,101,32,109,97,105,110,32,97,120,105,115,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,112,108,97,99,101,109,101,110,116,32,111,102,32,116,104,101,32,112,111,112,112,101,114,46,60,98,114,32,47,62,92,110,32,32,32,42,32,84,104,105,115,32,109,101,97,110,115,32,116,104,97,116,32,105,102,32,116,104,101,32,112,108,97,99,101,109,101,110,116,32,105,115,32,96,116,111,112,96,32,111,114,32,96,98,111,116,116,111,109,96,44,32,116,104,101,32,108,101,110,103,116,104,32,119,105,108,108,32,98,101,32,116,104,101,92,110,32,32,32,42,32,96,119,105,100,116,104,96,46,32,73,110,32,99,97,115,101,32,111,102,32,96,108,101,102,116,96,32,111,114,32,96,114,105,103,104,116,96,44,32,105,116,32,119,105,108,108,32,98,101,32,116,104,101,32,96,104,101,105,103,104,116,96,46,92,110,32,32,32,42,92,110,32,32,32,42,32,89,111,117,32,99,97,110,32,112,114,111,118,105,100,101,32,97,32,115,105,110,103,108,101,32,118,97,108,117,101,32,40,97,115,32,96,78,117,109,98,101,114,96,32,111,114,32,96,83,116,114,105,110,103,96,41,44,32,111,114,32,97,32,112,97,105,114,32,111,102,32,118,97,108,117,101,115,92,110,32,32,32,42,32,97,115,32,96,83,116,114,105,110,103,96,32,100,105,118,105,100,101,100,32,98,121,32,97,32,99,111,109,109,97,32,111,114,32,111,110,101,32,40,111,114,32,109,111,114,101,41,32,119,104,105,116,101,32,115,112,97,99,101,115,46,60,98,114,32,47,62,92,110,32,32,32,42,32,84,104,101,32,108,97,116,116,101,114,32,105,115,32,97,32,100,101,112,114,101,99,97,116,101,100,32,109,101,116,104,111,100,32,98,101,99,97,117,115,101,32,105,116,32,108,101,97,100,115,32,116,111,32,99,111,110,102,117,115,105,111,110,32,97,110,100,32,119,105,108,108,32,98,101,92,110,32,32,32,42,32,114,101,109,111,118,101,100,32,105,110,32,118,50,46,60,98,114,32,47,62,92,110,32,32,32,42,32,65,100,100,105,116,105,111,110,97,108,108,121,44,32,105,116,32,97,99,99,101,112,116,115,32,97,100,100,105,116,105,111,110,115,32,97,110,100,32,115,117,98,116,114,97,99,116,105,111,110,115,32,98,101,116,119,101,101,110,32,100,105,102,102,101,114,101,110,116,32,117,110,105,116,115,46,92,110,32,32,32,42,32,78,111,116,101,32,116,104,97,116,32,109,117,108,116,105,112,108,105,99,97,116,105,111,110,115,32,97,110,100,32,100,105,118,105,115,105,111,110,115,32,97,114,101,110,39,116,32,115,117,112,112,111,114,116,101,100,46,92,110,32,32,32,42,92,110,32,32,32,42,32,86,97,108,105,100,32,101,120,97,109,112,108,101,115,32,97,114,101,58,92,110,32,32,32,42,32,96,96,96,92,110,32,32,32,42,32,49,48,92,110,32,32,32,42,32,39,49,48,37,39,92,110,32,32,32,42,32,39,49,48,44,32,49,48,39,92,110,32,32,32,42,32,39,49,48,37,44,32,49,48,39,92,110,32,32,32,42,32,39,49,48,32,43,32,49,48,37,39,92,110,32,32,32,42,32,39,49,48,32,45,32,53,118,104,32,43,32,51,37,39,92,110,32,32,32,42,32,39,45,49,48,112,120,32,43,32,53,118,104,44,32,53,112,120,32,45,32,54,37,39,92,110,32,32,32,42,32,96,96,96,92,110,32,32,32,42,32,62,32,42,42,78,66,42,42,58,32,73,102,32,121,111,117,32,100,101,115,105,114,101,32,116,111,32,97,112,112,108,121,32,111,102,102,115,101,116,115,32,116,111,32,121,111,117,114,32,112,111,112,112,101,114,115,32,105,110,32,97,32,119,97,121,32,116,104,97,116,32,109,97,121,32,109,97,107,101,32,116,104,101,109,32,111,118,101,114,108,97,112,92,110,32,32,32,42,32,62,32,119,105,116,104,32,116,104,101,105,114,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,44,32,117,110,102,111,114,116,117,110,97,116,101,108,121,44,32,121,111,117,32,119,105,108,108,32,104,97,118,101,32,116,111,32,100,105,115,97,98,108,101,32,116,104,101,32,96,102,108,105,112,96,32,109,111,100,105,102,105,101,114,46,92,110,32,32,32,42,32,62,32,89,111,117,32,99,97,110,32,114,101,97,100,32,109,111,114,101,32,111,110,32,116,104,105,115,32,97,116,32,116,104,105,115,32,91,105,115,115,117,101,93,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,70,101,122,86,114,97,115,116,97,47,112,111,112,112,101,114,46,106,115,47,105,115,115,117,101,115,47,51,55,51,41,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,109,101,109,98,101,114,111,102,32,109,111,100,105,102,105,101,114,115,92,110,32,32,32,42,32,64,105,110,110,101,114,92,110,32,32,32,42,47,92,110,32,32,111,102,102,115,101,116,58,32,123,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,110,117,109,98,101,114,125,32,111,114,100,101,114,61,50,48,48,32,45,32,73,110,100,101,120,32,117,115,101,100,32,116,111,32,100,101,102,105,110,101,32,116,104,101,32,111,114,100,101,114,32,111,102,32,101,120,101,99,117,116,105,111,110,32,42,47,92,110,32,32,32,32,111,114,100,101,114,58,32,50,48,48,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,101,110,97,98,108,101,100,61,116,114,117,101,32,45,32,87,104,101,116,104,101,114,32,116,104,101,32,109,111,100,105,102,105,101,114,32,105,115,32,101,110,97,98,108,101,100,32,111,114,32,110,111,116,32,42,47,92,110,32,32,32,32,101,110,97,98,108,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,77,111,100,105,102,105,101,114,70,110,125,32,42,47,92,110,32,32,32,32,102,110,58,32,111,102,102,115,101,116,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,78,117,109,98,101,114,124,83,116,114,105,110,103,125,32,111,102,102,115,101,116,61,48,92,110,32,32,32,32,32,42,32,84,104,101,32,111,102,102,115,101,116,32,118,97,108,117,101,32,97,115,32,100,101,115,99,114,105,98,101,100,32,105,110,32,116,104,101,32,109,111,100,105,102,105,101,114,32,100,101,115,99,114,105,112,116,105,111,110,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,111,102,102,115,101,116,58,32,48,92,110,32,32,125,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,77,111,100,105,102,105,101,114,32,117,115,101,100,32,116,111,32,112,114,101,118,101,110,116,32,116,104,101,32,112,111,112,112,101,114,32,102,114,111,109,32,98,101,105,110,103,32,112,111,115,105,116,105,111,110,101,100,32,111,117,116,115,105,100,101,32,116,104,101,32,98,111,117,110,100,97,114,121,46,92,110,32,32,32,42,92,110,32,32,32,42,32,65,32,115,99,101,110,97,114,105,111,32,101,120,105,115,116,115,32,119,104,101,114,101,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,105,116,115,101,108,102,32,105,115,32,110,111,116,32,119,105,116,104,105,110,32,116,104,101,32,98,111,117,110,100,97,114,105,101,115,46,60,98,114,32,47,62,92,110,32,32,32,42,32,87,101,32,99,97,110,32,115,97,121,32,105,116,32,104,97,115,32,92,34,101,115,99,97,112,101,100,32,116,104,101,32,98,111,117,110,100,97,114,105,101,115,92,34,32,226,128,148,32,111,114,32,106,117,115,116,32,92,34,101,115,99,97,112,101,100,92,34,46,60,98,114,32,47,62,92,110,32,32,32,42,32,73,110,32,116,104,105,115,32,99,97,115,101,32,119,101,32,110,101,101,100,32,116,111,32,100,101,99,105,100,101,32,119,104,101,116,104,101,114,32,116,104,101,32,112,111,112,112,101,114,32,115,104,111,117,108,100,32,101,105,116,104,101,114,58,92,110,32,32,32,42,92,110,32,32,32,42,32,45,32,100,101,116,97,99,104,32,102,114,111,109,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,97,110,100,32,114,101,109,97,105,110,32,92,34,116,114,97,112,112,101,100,92,34,32,105,110,32,116,104,101,32,98,111,117,110,100,97,114,105,101,115,44,32,111,114,92,110,32,32,32,42,32,45,32,105,102,32,105,116,32,115,104,111,117,108,100,32,105,103,110,111,114,101,32,116,104,101,32,98,111,117,110,100,97,114,121,32,97,110,100,32,92,34,101,115,99,97,112,101,32,119,105,116,104,32,105,116,115,32,114,101,102,101,114,101,110,99,101,92,34,92,110,32,32,32,42,92,110,32,32,32,42,32,87,104,101,110,32,96,101,115,99,97,112,101,87,105,116,104,82,101,102,101,114,101,110,99,101,96,32,105,115,32,115,101,116,32,116,111,96,116,114,117,101,96,32,97,110,100,32,114,101,102,101,114,101,110,99,101,32,105,115,32,99,111,109,112,108,101,116,101,108,121,92,110,32,32,32,42,32,111,117,116,115,105,100,101,32,105,116,115,32,98,111,117,110,100,97,114,105,101,115,44,32,116,104,101,32,112,111,112,112,101,114,32,119,105,108,108,32,111,118,101,114,102,108,111,119,32,40,111,114,32,99,111,109,112,108,101,116,101,108,121,32,108,101,97,118,101,41,92,110,32,32,32,42,32,116,104,101,32,98,111,117,110,100,97,114,105,101,115,32,105,110,32,111,114,100,101,114,32,116,111,32,114,101,109,97,105,110,32,97,116,116,97,99,104,101,100,32,116,111,32,116,104,101,32,101,100,103,101,32,111,102,32,116,104,101,32,114,101,102,101,114,101,110,99,101,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,109,101,109,98,101,114,111,102,32,109,111,100,105,102,105,101,114,115,92,110,32,32,32,42,32,64,105,110,110,101,114,92,110,32,32,32,42,47,92,110,32,32,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,32,123,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,110,117,109,98,101,114,125,32,111,114,100,101,114,61,51,48,48,32,45,32,73,110,100,101,120,32,117,115,101,100,32,116,111,32,100,101,102,105,110,101,32,116,104,101,32,111,114,100,101,114,32,111,102,32,101,120,101,99,117,116,105,111,110,32,42,47,92,110,32,32,32,32,111,114,100,101,114,58,32,51,48,48,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,101,110,97,98,108,101,100,61,116,114,117,101,32,45,32,87,104,101,116,104,101,114,32,116,104,101,32,109,111,100,105,102,105,101,114,32,105,115,32,101,110,97,98,108,101,100,32,111,114,32,110,111,116,32,42,47,92,110,32,32,32,32,101,110,97,98,108,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,77,111,100,105,102,105,101,114,70,110,125,32,42,47,92,110,32,32,32,32,102,110,58,32,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,44,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,114,111,112,32,123,65,114,114,97,121,125,32,91,112,114,105,111,114,105,116,121,61,91,39,108,101,102,116,39,44,39,114,105,103,104,116,39,44,39,116,111,112,39,44,39,98,111,116,116,111,109,39,93,93,92,110,32,32,32,32,32,42,32,80,111,112,112,101,114,32,119,105,108,108,32,116,114,121,32,116,111,32,112,114,101,118,101,110,116,32,111,118,101,114,102,108,111,119,32,102,111,108,108,111,119,105,110,103,32,116,104,101,115,101,32,112,114,105,111,114,105,116,105,101,115,32,98,121,32,100,101,102,97,117,108,116,44,92,110,32,32,32,32,32,42,32,116,104,101,110,44,32,105,116,32,99,111,117,108,100,32,111,118,101,114,102,108,111,119,32,111,110,32,116,104,101,32,108,101,102,116,32,97,110,100,32,111,110,32,116,111,112,32,111,102,32,116,104,101,32,96,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,96,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,112,114,105,111,114,105,116,121,58,32,91,39,108,101,102,116,39,44,32,39,114,105,103,104,116,39,44,32,39,116,111,112,39,44,32,39,98,111,116,116,111,109,39,93,44,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,114,111,112,32,123,110,117,109,98,101,114,125,32,112,97,100,100,105,110,103,61,53,92,110,32,32,32,32,32,42,32,65,109,111,117,110,116,32,111,102,32,112,105,120,101,108,32,117,115,101,100,32,116,111,32,100,101,102,105,110,101,32,97,32,109,105,110,105,109,117,109,32,100,105,115,116,97,110,99,101,32,98,101,116,119,101,101,110,32,116,104,101,32,98,111,117,110,100,97,114,105,101,115,92,110,32,32,32,32,32,42,32,97,110,100,32,116,104,101,32,112,111,112,112,101,114,46,32,84,104,105,115,32,109,97,107,101,115,32,115,117,114,101,32,116,104,101,32,112,111,112,112,101,114,32,97,108,119,97,121,115,32,104,97,115,32,97,32,108,105,116,116,108,101,32,112,97,100,100,105,110,103,92,110,32,32,32,32,32,42,32,98,101,116,119,101,101,110,32,116,104,101,32,101,100,103,101,115,32,111,102,32,105,116,115,32,99,111,110,116,97,105,110,101,114,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,112,97,100,100,105,110,103,58,32,53,44,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,114,111,112,32,123,83,116,114,105,110,103,124,72,84,77,76,69,108,101,109,101,110,116,125,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,61,39,115,99,114,111,108,108,80,97,114,101,110,116,39,92,110,32,32,32,32,32,42,32,66,111,117,110,100,97,114,105,101,115,32,117,115,101,100,32,98,121,32,116,104,101,32,109,111,100,105,102,105,101,114,46,32,67,97,110,32,98,101,32,96,115,99,114,111,108,108,80,97,114,101,110,116,96,44,32,96,119,105,110,100,111,119,96,44,92,110,32,32,32,32,32,42,32,96,118,105,101,119,112,111,114,116,96,32,111,114,32,97,110,121,32,68,79,77,32,101,108,101,109,101,110,116,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,32,39,115,99,114,111,108,108,80,97,114,101,110,116,39,92,110,32,32,125,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,77,111,100,105,102,105,101,114,32,117,115,101,100,32,116,111,32,109,97,107,101,32,115,117,114,101,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,97,110,100,32,105,116,115,32,112,111,112,112,101,114,32,115,116,97,121,32,110,101,97,114,32,101,97,99,104,32,111,116,104,101,114,92,110,32,32,32,42,32,119,105,116,104,111,117,116,32,108,101,97,118,105,110,103,32,97,110,121,32,103,97,112,32,98,101,116,119,101,101,110,32,116,104,101,32,116,119,111,46,32,69,115,112,101,99,105,97,108,108,121,32,117,115,101,102,117,108,32,119,104,101,110,32,116,104,101,32,97,114,114,111,119,32,105,115,92,110,32,32,32,42,32,101,110,97,98,108,101,100,32,97,110,100,32,121,111,117,32,119,97,110,116,32,116,111,32,101,110,115,117,114,101,32,116,104,97,116,32,105,116,32,112,111,105,110,116,115,32,116,111,32,105,116,115,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,46,92,110,32,32,32,42,32,73,116,32,99,97,114,101,115,32,111,110,108,121,32,97,98,111,117,116,32,116,104,101,32,102,105,114,115,116,32,97,120,105,115,46,32,89,111,117,32,99,97,110,32,115,116,105,108,108,32,104,97,118,101,32,112,111,112,112,101,114,115,32,119,105,116,104,32,109,97,114,103,105,110,92,110,32,32,32,42,32,98,101,116,119,101,101,110,32,116,104,101,32,112,111,112,112,101,114,32,97,110,100,32,105,116,115,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,46,92,110,32,32,32,42,32,64,109,101,109,98,101,114,111,102,32,109,111,100,105,102,105,101,114,115,92,110,32,32,32,42,32,64,105,110,110,101,114,92,110,32,32,32,42,47,92,110,32,32,107,101,101,112,84,111,103,101,116,104,101,114,58,32,123,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,110,117,109,98,101,114,125,32,111,114,100,101,114,61,52,48,48,32,45,32,73,110,100,101,120,32,117,115,101,100,32,116,111,32,100,101,102,105,110,101,32,116,104,101,32,111,114,100,101,114,32,111,102,32,101,120,101,99,117,116,105,111,110,32,42,47,92,110,32,32,32,32,111,114,100,101,114,58,32,52,48,48,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,101,110,97,98,108,101,100,61,116,114,117,101,32,45,32,87,104,101,116,104,101,114,32,116,104,101,32,109,111,100,105,102,105,101,114,32,105,115,32,101,110,97,98,108,101,100,32,111,114,32,110,111,116,32,42,47,92,110,32,32,32,32,101,110,97,98,108,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,77,111,100,105,102,105,101,114,70,110,125,32,42,47,92,110,32,32,32,32,102,110,58,32,107,101,101,112,84,111,103,101,116,104,101,114,92,110,32,32,125,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,84,104,105,115,32,109,111,100,105,102,105,101,114,32,105,115,32,117,115,101,100,32,116,111,32,109,111,118,101,32,116,104,101,32,96,97,114,114,111,119,69,108,101,109,101,110,116,96,32,111,102,32,116,104,101,32,112,111,112,112,101,114,32,116,111,32,109,97,107,101,92,110,32,32,32,42,32,115,117,114,101,32,105,116,32,105,115,32,112,111,115,105,116,105,111,110,101,100,32,98,101,116,119,101,101,110,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,32,97,110,100,32,105,116,115,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,42,32,73,116,32,119,105,108,108,32,114,101,97,100,32,116,104,101,32,111,117,116,101,114,32,115,105,122,101,32,111,102,32,116,104,101,32,96,97,114,114,111,119,69,108,101,109,101,110,116,96,32,110,111,100,101,32,116,111,32,100,101,116,101,99,116,32,104,111,119,32,109,97,110,121,92,110,32,32,32,42,32,112,105,120,101,108,115,32,111,102,32,99,111,110,106,117,110,99,116,105,111,110,32,97,114,101,32,110,101,101,100,101,100,46,92,110,32,32,32,42,92,110,32,32,32,42,32,73,116,32,104,97,115,32,110,111,32,101,102,102,101,99,116,32,105,102,32,110,111,32,96,97,114,114,111,119,69,108,101,109,101,110,116,96,32,105,115,32,112,114,111,118,105,100,101,100,46,92,110,32,32,32,42,32,64,109,101,109,98,101,114,111,102,32,109,111,100,105,102,105,101,114,115,92,110,32,32,32,42,32,64,105,110,110,101,114,92,110,32,32,32,42,47,92,110,32,32,97,114,114,111,119,58,32,123,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,110,117,109,98,101,114,125,32,111,114,100,101,114,61,53,48,48,32,45,32,73,110,100,101,120,32,117,115,101,100,32,116,111,32,100,101,102,105,110,101,32,116,104,101,32,111,114,100,101,114,32,111,102,32,101,120,101,99,117,116,105,111,110,32,42,47,92,110,32,32,32,32,111,114,100,101,114,58,32,53,48,48,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,101,110,97,98,108,101,100,61,116,114,117,101,32,45,32,87,104,101,116,104,101,114,32,116,104,101,32,109,111,100,105,102,105,101,114,32,105,115,32,101,110,97,98,108,101,100,32,111,114,32,110,111,116,32,42,47,92,110,32,32,32,32,101,110,97,98,108,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,77,111,100,105,102,105,101,114,70,110,125,32,42,47,92,110,32,32,32,32,102,110,58,32,97,114,114,111,119,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,83,116,114,105,110,103,124,72,84,77,76,69,108,101,109,101,110,116,125,32,101,108,101,109,101,110,116,61,39,91,120,45,97,114,114,111,119,93,39,32,45,32,83,101,108,101,99,116,111,114,32,111,114,32,110,111,100,101,32,117,115,101,100,32,97,115,32,97,114,114,111,119,32,42,47,92,110,32,32,32,32,101,108,101,109,101,110,116,58,32,39,91,120,45,97,114,114,111,119,93,39,92,110,32,32,125,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,77,111,100,105,102,105,101,114,32,117,115,101,100,32,116,111,32,102,108,105,112,32,116,104,101,32,112,111,112,112,101,114,39,115,32,112,108,97,99,101,109,101,110,116,32,119,104,101,110,32,105,116,32,115,116,97,114,116,115,32,116,111,32,111,118,101,114,108,97,112,32,105,116,115,92,110,32,32,32,42,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,46,92,110,32,32,32,42,92,110,32,32,32,42,32,82,101,113,117,105,114,101,115,32,116,104,101,32,96,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,96,32,109,111,100,105,102,105,101,114,32,98,101,102,111,114,101,32,105,116,32,105,110,32,111,114,100,101,114,32,116,111,32,119,111,114,107,46,92,110,32,32,32,42,92,110,32,32,32,42,32,42,42,78,79,84,69,58,42,42,32,116,104,105,115,32,109,111,100,105,102,105,101,114,32,119,105,108,108,32,105,110,116,101,114,114,117,112,116,32,116,104,101,32,99,117,114,114,101,110,116,32,117,112,100,97,116,101,32,99,121,99,108,101,32,97,110,100,32,119,105,108,108,92,110,32,32,32,42,32,114,101,115,116,97,114,116,32,105,116,32,105,102,32,105,116,32,100,101,116,101,99,116,115,32,116,104,101,32,110,101,101,100,32,116,111,32,102,108,105,112,32,116,104,101,32,112,108,97,99,101,109,101,110,116,46,92,110,32,32,32,42,32,64,109,101,109,98,101,114,111,102,32,109,111,100,105,102,105,101,114,115,92,110,32,32,32,42,32,64,105,110,110,101,114,92,110,32,32,32,42,47,92,110,32,32,102,108,105,112,58,32,123,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,110,117,109,98,101,114,125,32,111,114,100,101,114,61,54,48,48,32,45,32,73,110,100,101,120,32,117,115,101,100,32,116,111,32,100,101,102,105,110,101,32,116,104,101,32,111,114,100,101,114,32,111,102,32,101,120,101,99,117,116,105,111,110,32,42,47,92,110,32,32,32,32,111,114,100,101,114,58,32,54,48,48,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,101,110,97,98,108,101,100,61,116,114,117,101,32,45,32,87,104,101,116,104,101,114,32,116,104,101,32,109,111,100,105,102,105,101,114,32,105,115,32,101,110,97,98,108,101,100,32,111,114,32,110,111,116,32,42,47,92,110,32,32,32,32,101,110,97,98,108,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,77,111,100,105,102,105,101,114,70,110,125,32,42,47,92,110,32,32,32,32,102,110,58,32,102,108,105,112,44,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,114,111,112,32,123,83,116,114,105,110,103,124,65,114,114,97,121,125,32,98,101,104,97,118,105,111,114,61,39,102,108,105,112,39,92,110,32,32,32,32,32,42,32,84,104,101,32,98,101,104,97,118,105,111,114,32,117,115,101,100,32,116,111,32,99,104,97,110,103,101,32,116,104,101,32,112,111,112,112,101,114,39,115,32,112,108,97,99,101,109,101,110,116,46,32,73,116,32,99,97,110,32,98,101,32,111,110,101,32,111,102,92,110,32,32,32,32,32,42,32,96,102,108,105,112,96,44,32,96,99,108,111,99,107,119,105,115,101,96,44,32,96,99,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,96,32,111,114,32,97,110,32,97,114,114,97,121,32,119,105,116,104,32,97,32,108,105,115,116,32,111,102,32,118,97,108,105,100,92,110,32,32,32,32,32,42,32,112,108,97,99,101,109,101,110,116,115,32,40,119,105,116,104,32,111,112,116,105,111,110,97,108,32,118,97,114,105,97,116,105,111,110,115,41,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,98,101,104,97,118,105,111,114,58,32,39,102,108,105,112,39,44,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,114,111,112,32,123,110,117,109,98,101,114,125,32,112,97,100,100,105,110,103,61,53,92,110,32,32,32,32,32,42,32,84,104,101,32,112,111,112,112,101,114,32,119,105,108,108,32,102,108,105,112,32,105,102,32,105,116,32,104,105,116,115,32,116,104,101,32,101,100,103,101,115,32,111,102,32,116,104,101,32,96,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,96,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,112,97,100,100,105,110,103,58,32,53,44,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,114,111,112,32,123,83,116,114,105,110,103,124,72,84,77,76,69,108,101,109,101,110,116,125,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,61,39,118,105,101,119,112,111,114,116,39,92,110,32,32,32,32,32,42,32,84,104,101,32,101,108,101,109,101,110,116,32,119,104,105,99,104,32,119,105,108,108,32,100,101,102,105,110,101,32,116,104,101,32,98,111,117,110,100,97,114,105,101,115,32,111,102,32,116,104,101,32,112,111,112,112,101,114,32,112,111,115,105,116,105,111,110,46,92,110,32,32,32,32,32,42,32,84,104,101,32,112,111,112,112,101,114,32,119,105,108,108,32,110,101,118,101,114,32,98,101,32,112,108,97,99,101,100,32,111,117,116,115,105,100,101,32,111,102,32,116,104,101,32,100,101,102,105,110,101,100,32,98,111,117,110,100,97,114,105,101,115,92,110,32,32,32,32,32,42,32,40,101,120,99,101,112,116,32,105,102,32,96,107,101,101,112,84,111,103,101,116,104,101,114,96,32,105,115,32,101,110,97,98,108,101,100,41,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,32,39,118,105,101,119,112,111,114,116,39,44,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,102,108,105,112,86,97,114,105,97,116,105,111,110,115,61,102,97,108,115,101,92,110,32,32,32,32,32,42,32,84,104,101,32,112,111,112,112,101,114,32,119,105,108,108,32,115,119,105,116,99,104,32,112,108,97,99,101,109,101,110,116,32,118,97,114,105,97,116,105,111,110,32,98,101,116,119,101,101,110,32,96,45,115,116,97,114,116,96,32,97,110,100,32,96,45,101,110,100,96,32,119,104,101,110,92,110,32,32,32,32,32,42,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,32,111,118,101,114,108,97,112,115,32,105,116,115,32,98,111,117,110,100,97,114,105,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,111,114,105,103,105,110,97,108,32,112,108,97,99,101,109,101,110,116,32,115,104,111,117,108,100,32,104,97,118,101,32,97,32,115,101,116,32,118,97,114,105,97,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,108,105,112,86,97,114,105,97,116,105,111,110,115,58,32,102,97,108,115,101,44,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,102,108,105,112,86,97,114,105,97,116,105,111,110,115,66,121,67,111,110,116,101,110,116,61,102,97,108,115,101,92,110,32,32,32,32,32,42,32,84,104,101,32,112,111,112,112,101,114,32,119,105,108,108,32,115,119,105,116,99,104,32,112,108,97,99,101,109,101,110,116,32,118,97,114,105,97,116,105,111,110,32,98,101,116,119,101,101,110,32,96,45,115,116,97,114,116,96,32,97,110,100,32,96,45,101,110,100,96,32,119,104,101,110,92,110,32,32,32,32,32,42,32,116,104,101,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,32,111,118,101,114,108,97,112,115,32,105,116,115,32,114,101,102,101,114,101,110,99,101,32,98,111,117,110,100,97,114,105,101,115,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,84,104,101,32,111,114,105,103,105,110,97,108,32,112,108,97,99,101,109,101,110,116,32,115,104,111,117,108,100,32,104,97,118,101,32,97,32,115,101,116,32,118,97,114,105,97,116,105,111,110,46,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,102,108,105,112,86,97,114,105,97,116,105,111,110,115,66,121,67,111,110,116,101,110,116,58,32,102,97,108,115,101,92,110,32,32,125,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,77,111,100,105,102,105,101,114,32,117,115,101,100,32,116,111,32,109,97,107,101,32,116,104,101,32,112,111,112,112,101,114,32,102,108,111,119,32,116,111,119,97,114,100,32,116,104,101,32,105,110,110,101,114,32,111,102,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,46,92,110,32,32,32,42,32,66,121,32,100,101,102,97,117,108,116,44,32,119,104,101,110,32,116,104,105,115,32,109,111,100,105,102,105,101,114,32,105,115,32,100,105,115,97,98,108,101,100,44,32,116,104,101,32,112,111,112,112,101,114,32,119,105,108,108,32,98,101,32,112,108,97,99,101,100,32,111,117,116,115,105,100,101,92,110,32,32,32,42,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,46,92,110,32,32,32,42,32,64,109,101,109,98,101,114,111,102,32,109,111,100,105,102,105,101,114,115,92,110,32,32,32,42,32,64,105,110,110,101,114,92,110,32,32,32,42,47,92,110,32,32,105,110,110,101,114,58,32,123,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,110,117,109,98,101,114,125,32,111,114,100,101,114,61,55,48,48,32,45,32,73,110,100,101,120,32,117,115,101,100,32,116,111,32,100,101,102,105,110,101,32,116,104,101,32,111,114,100,101,114,32,111,102,32,101,120,101,99,117,116,105,111,110,32,42,47,92,110,32,32,32,32,111,114,100,101,114,58,32,55,48,48,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,101,110,97,98,108,101,100,61,102,97,108,115,101,32,45,32,87,104,101,116,104,101,114,32,116,104,101,32,109,111,100,105,102,105,101,114,32,105,115,32,101,110,97,98,108,101,100,32,111,114,32,110,111,116,32,42,47,92,110,32,32,32,32,101,110,97,98,108,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,77,111,100,105,102,105,101,114,70,110,125,32,42,47,92,110,32,32,32,32,102,110,58,32,105,110,110,101,114,92,110,32,32,125,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,77,111,100,105,102,105,101,114,32,117,115,101,100,32,116,111,32,104,105,100,101,32,116,104,101,32,112,111,112,112,101,114,32,119,104,101,110,32,105,116,115,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,32,105,115,32,111,117,116,115,105,100,101,32,111,102,32,116,104,101,92,110,32,32,32,42,32,112,111,112,112,101,114,32,98,111,117,110,100,97,114,105,101,115,46,32,73,116,32,119,105,108,108,32,115,101,116,32,97,32,96,120,45,111,117,116,45,111,102,45,98,111,117,110,100,97,114,105,101,115,96,32,97,116,116,114,105,98,117,116,101,32,119,104,105,99,104,32,99,97,110,92,110,32,32,32,42,32,98,101,32,117,115,101,100,32,116,111,32,104,105,100,101,32,119,105,116,104,32,97,32,67,83,83,32,115,101,108,101,99,116,111,114,32,116,104,101,32,112,111,112,112,101,114,32,119,104,101,110,32,105,116,115,32,114,101,102,101,114,101,110,99,101,32,105,115,92,110,32,32,32,42,32,111,117,116,32,111,102,32,98,111,117,110,100,97,114,105,101,115,46,92,110,32,32,32,42,92,110,32,32,32,42,32,82,101,113,117,105,114,101,115,32,116,104,101,32,96,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,96,32,109,111,100,105,102,105,101,114,32,98,101,102,111,114,101,32,105,116,32,105,110,32,111,114,100,101,114,32,116,111,32,119,111,114,107,46,92,110,32,32,32,42,32,64,109,101,109,98,101,114,111,102,32,109,111,100,105,102,105,101,114,115,92,110,32,32,32,42,32,64,105,110,110,101,114,92,110,32,32,32,42,47,92,110,32,32,104,105,100,101,58,32,123,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,110,117,109,98,101,114,125,32,111,114,100,101,114,61,56,48,48,32,45,32,73,110,100,101,120,32,117,115,101,100,32,116,111,32,100,101,102,105,110,101,32,116,104,101,32,111,114,100,101,114,32,111,102,32,101,120,101,99,117,116,105,111,110,32,42,47,92,110,32,32,32,32,111,114,100,101,114,58,32,56,48,48,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,101,110,97,98,108,101,100,61,116,114,117,101,32,45,32,87,104,101,116,104,101,114,32,116,104,101,32,109,111,100,105,102,105,101,114,32,105,115,32,101,110,97,98,108,101,100,32,111,114,32,110,111,116,32,42,47,92,110,32,32,32,32,101,110,97,98,108,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,77,111,100,105,102,105,101,114,70,110,125,32,42,47,92,110,32,32,32,32,102,110,58,32,104,105,100,101,92,110,32,32,125,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,111,109,112,117,116,101,115,32,116,104,101,32,115,116,121,108,101,32,116,104,97,116,32,119,105,108,108,32,98,101,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,32,116,111,32,103,101,116,115,92,110,32,32,32,42,32,112,114,111,112,101,114,108,121,32,112,111,115,105,116,105,111,110,101,100,46,92,110,32,32,32,42,92,110,32,32,32,42,32,78,111,116,101,32,116,104,97,116,32,116,104,105,115,32,109,111,100,105,102,105,101,114,32,119,105,108,108,32,110,111,116,32,116,111,117,99,104,32,116,104,101,32,68,79,77,44,32,105,116,32,106,117,115,116,32,112,114,101,112,97,114,101,115,32,116,104,101,32,115,116,121,108,101,115,92,110,32,32,32,42,32,115,111,32,116,104,97,116,32,96,97,112,112,108,121,83,116,121,108,101,96,32,109,111,100,105,102,105,101,114,32,99,97,110,32,97,112,112,108,121,32,105,116,46,32,84,104,105,115,32,115,101,112,97,114,97,116,105,111,110,32,105,115,32,117,115,101,102,117,108,92,110,32,32,32,42,32,105,110,32,99,97,115,101,32,121,111,117,32,110,101,101,100,32,116,111,32,114,101,112,108,97,99,101,32,96,97,112,112,108,121,83,116,121,108,101,96,32,119,105,116,104,32,97,32,99,117,115,116,111,109,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,92,110,32,32,32,42,92,110,32,32,32,42,32,84,104,105,115,32,109,111,100,105,102,105,101,114,32,104,97,115,32,96,56,53,48,96,32,97,115,32,96,111,114,100,101,114,96,32,118,97,108,117,101,32,116,111,32,109,97,105,110,116,97,105,110,32,98,97,99,107,119,97,114,100,32,99,111,109,112,97,116,105,98,105,108,105,116,121,92,110,32,32,32,42,32,119,105,116,104,32,112,114,101,118,105,111,117,115,32,118,101,114,115,105,111,110,115,32,111,102,32,80,111,112,112,101,114,46,106,115,46,32,69,120,112,101,99,116,32,116,104,101,32,109,111,100,105,102,105,101,114,115,32,111,114,100,101,114,105,110,103,32,109,101,116,104,111,100,92,110,32,32,32,42,32,116,111,32,99,104,97,110,103,101,32,105,110,32,102,117,116,117,114,101,32,109,97,106,111,114,32,118,101,114,115,105,111,110,115,32,111,102,32,116,104,101,32,108,105,98,114,97,114,121,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,109,101,109,98,101,114,111,102,32,109,111,100,105,102,105,101,114,115,92,110,32,32,32,42,32,64,105,110,110,101,114,92,110,32,32,32,42,47,92,110,32,32,99,111,109,112,117,116,101,83,116,121,108,101,58,32,123,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,110,117,109,98,101,114,125,32,111,114,100,101,114,61,56,53,48,32,45,32,73,110,100,101,120,32,117,115,101,100,32,116,111,32,100,101,102,105,110,101,32,116,104,101,32,111,114,100,101,114,32,111,102,32,101,120,101,99,117,116,105,111,110,32,42,47,92,110,32,32,32,32,111,114,100,101,114,58,32,56,53,48,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,101,110,97,98,108,101,100,61,116,114,117,101,32,45,32,87,104,101,116,104,101,114,32,116,104,101,32,109,111,100,105,102,105,101,114,32,105,115,32,101,110,97,98,108,101,100,32,111,114,32,110,111,116,32,42,47,92,110,32,32,32,32,101,110,97,98,108,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,77,111,100,105,102,105,101,114,70,110,125,32,42,47,92,110,32,32,32,32,102,110,58,32,99,111,109,112,117,116,101,83,116,121,108,101,44,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,61,116,114,117,101,92,110,32,32,32,32,32,42,32,73,102,32,116,114,117,101,44,32,105,116,32,117,115,101,115,32,116,104,101,32,67,83,83,32,51,68,32,116,114,97,110,115,102,111,114,109,97,116,105,111,110,32,116,111,32,112,111,115,105,116,105,111,110,32,116,104,101,32,112,111,112,112,101,114,46,92,110,32,32,32,32,32,42,32,79,116,104,101,114,119,105,115,101,44,32,105,116,32,119,105,108,108,32,117,115,101,32,116,104,101,32,96,116,111,112,96,32,97,110,100,32,96,108,101,102,116,96,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,58,32,116,114,117,101,44,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,114,111,112,32,123,115,116,114,105,110,103,125,32,91,120,61,39,98,111,116,116,111,109,39,93,92,110,32,32,32,32,32,42,32,87,104,101,114,101,32,116,111,32,97,110,99,104,111,114,32,116,104,101,32,88,32,97,120,105,115,32,40,96,98,111,116,116,111,109,96,32,111,114,32,96,116,111,112,96,41,46,32,65,75,65,32,88,32,111,102,102,115,101,116,32,111,114,105,103,105,110,46,92,110,32,32,32,32,32,42,32,67,104,97,110,103,101,32,116,104,105,115,32,105,102,32,121,111,117,114,32,112,111,112,112,101,114,32,115,104,111,117,108,100,32,103,114,111,119,32,105,110,32,97,32,100,105,114,101,99,116,105,111,110,32,100,105,102,102,101,114,101,110,116,32,102,114,111,109,32,96,98,111,116,116,111,109,96,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,120,58,32,39,98,111,116,116,111,109,39,44,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,112,114,111,112,32,123,115,116,114,105,110,103,125,32,91,120,61,39,108,101,102,116,39,93,92,110,32,32,32,32,32,42,32,87,104,101,114,101,32,116,111,32,97,110,99,104,111,114,32,116,104,101,32,89,32,97,120,105,115,32,40,96,108,101,102,116,96,32,111,114,32,96,114,105,103,104,116,96,41,46,32,65,75,65,32,89,32,111,102,102,115,101,116,32,111,114,105,103,105,110,46,92,110,32,32,32,32,32,42,32,67,104,97,110,103,101,32,116,104,105,115,32,105,102,32,121,111,117,114,32,112,111,112,112,101,114,32,115,104,111,117,108,100,32,103,114,111,119,32,105,110,32,97,32,100,105,114,101,99,116,105,111,110,32,100,105,102,102,101,114,101,110,116,32,102,114,111,109,32,96,114,105,103,104,116,96,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,121,58,32,39,114,105,103,104,116,39,92,110,32,32,125,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,65,112,112,108,105,101,115,32,116,104,101,32,99,111,109,112,117,116,101,100,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,46,92,110,32,32,32,42,92,110,32,32,32,42,32,65,108,108,32,116,104,101,32,68,79,77,32,109,97,110,105,112,117,108,97,116,105,111,110,115,32,97,114,101,32,108,105,109,105,116,101,100,32,116,111,32,116,104,105,115,32,109,111,100,105,102,105,101,114,46,32,84,104,105,115,32,105,115,32,117,115,101,102,117,108,32,105,110,32,99,97,115,101,92,110,32,32,32,42,32,121,111,117,32,119,97,110,116,32,116,111,32,105,110,116,101,103,114,97,116,101,32,80,111,112,112,101,114,46,106,115,32,105,110,115,105,100,101,32,97,32,102,114,97,109,101,119,111,114,107,32,111,114,32,118,105,101,119,32,108,105,98,114,97,114,121,32,97,110,100,32,121,111,117,92,110,32,32,32,42,32,119,97,110,116,32,116,111,32,100,101,108,101,103,97,116,101,32,97,108,108,32,116,104,101,32,68,79,77,32,109,97,110,105,112,117,108,97,116,105,111,110,115,32,116,111,32,105,116,46,92,110,32,32,32,42,92,110,32,32,32,42,32,78,111,116,101,32,116,104,97,116,32,105,102,32,121,111,117,32,100,105,115,97,98,108,101,32,116,104,105,115,32,109,111,100,105,102,105,101,114,44,32,121,111,117,32,109,117,115,116,32,109,97,107,101,32,115,117,114,101,32,116,104,101,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,92,110,32,32,32,42,32,104,97,115,32,105,116,115,32,112,111,115,105,116,105,111,110,32,115,101,116,32,116,111,32,96,97,98,115,111,108,117,116,101,96,32,98,101,102,111,114,101,32,80,111,112,112,101,114,46,106,115,32,99,97,110,32,100,111,32,105,116,115,32,119,111,114,107,33,92,110,32,32,32,42,92,110,32,32,32,42,32,74,117,115,116,32,100,105,115,97,98,108,101,32,116,104,105,115,32,109,111,100,105,102,105,101,114,32,97,110,100,32,100,101,102,105,110,101,32,121,111,117,114,32,111,119,110,32,116,111,32,97,99,104,105,101,118,101,32,116,104,101,32,100,101,115,105,114,101,100,32,101,102,102,101,99,116,46,92,110,32,32,32,42,92,110,32,32,32,42,32,64,109,101,109,98,101,114,111,102,32,109,111,100,105,102,105,101,114,115,92,110,32,32,32,42,32,64,105,110,110,101,114,92,110,32,32,32,42,47,92,110,32,32,97,112,112,108,121,83,116,121,108,101,58,32,123,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,110,117,109,98,101,114,125,32,111,114,100,101,114,61,57,48,48,32,45,32,73,110,100,101,120,32,117,115,101,100,32,116,111,32,100,101,102,105,110,101,32,116,104,101,32,111,114,100,101,114,32,111,102,32,101,120,101,99,117,116,105,111,110,32,42,47,92,110,32,32,32,32,111,114,100,101,114,58,32,57,48,48,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,101,110,97,98,108,101,100,61,116,114,117,101,32,45,32,87,104,101,116,104,101,114,32,116,104,101,32,109,111,100,105,102,105,101,114,32,105,115,32,101,110,97,98,108,101,100,32,111,114,32,110,111,116,32,42,47,92,110,32,32,32,32,101,110,97,98,108,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,77,111,100,105,102,105,101,114,70,110,125,32,42,47,92,110,32,32,32,32,102,110,58,32,97,112,112,108,121,83,116,121,108,101,44,92,110,32,32,32,32,47,42,42,32,64,112,114,111,112,32,123,70,117,110,99,116,105,111,110,125,32,42,47,92,110,32,32,32,32,111,110,76,111,97,100,58,32,97,112,112,108,121,83,116,121,108,101,79,110,76,111,97,100,44,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,64,100,101,112,114,101,99,97,116,101,100,32,115,105,110,99,101,32,118,101,114,115,105,111,110,32,49,46,49,48,46,48,44,32,116,104,101,32,112,114,111,112,101,114,116,121,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,92,110,32,32,32,32,32,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,61,116,114,117,101,92,110,32,32,32,32,32,42,32,73,102,32,116,114,117,101,44,32,105,116,32,117,115,101,115,32,116,104,101,32,67,83,83,32,51,68,32,116,114,97,110,115,102,111,114,109,97,116,105,111,110,32,116,111,32,112,111,115,105,116,105,111,110,32,116,104,101,32,112,111,112,112,101,114,46,92,110,32,32,32,32,32,42,32,79,116,104,101,114,119,105,115,101,44,32,105,116,32,119,105,108,108,32,117,115,101,32,116,104,101,32,96,116,111,112,96,32,97,110,100,32,96,108,101,102,116,96,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,32,42,47,92,110,32,32,32,32,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,58,32,117,110,100,101,102,105,110,101,100,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,84,104,101,32,96,100,97,116,97,79,98,106,101,99,116,96,32,105,115,32,97,110,32,111,98,106,101,99,116,32,99,111,110,116,97,105,110,105,110,103,32,97,108,108,32,116,104,101,32,105,110,102,111,114,109,97,116,105,111,110,32,117,115,101,100,32,98,121,32,80,111,112,112,101,114,46,106,115,46,92,110,32,42,32,84,104,105,115,32,111,98,106,101,99,116,32,105,115,32,112,97,115,115,101,100,32,116,111,32,109,111,100,105,102,105,101,114,115,32,97,110,100,32,116,111,32,116,104,101,32,96,111,110,67,114,101,97,116,101,96,32,97,110,100,32,96,111,110,85,112,100,97,116,101,96,32,99,97,108,108,98,97,99,107,115,46,92,110,32,42,32,64,110,97,109,101,32,100,97,116,97,79,98,106,101,99,116,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,79,98,106,101,99,116,125,32,100,97,116,97,46,105,110,115,116,97,110,99,101,32,84,104,101,32,80,111,112,112,101,114,46,106,115,32,105,110,115,116,97,110,99,101,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,83,116,114,105,110,103,125,32,100,97,116,97,46,112,108,97,99,101,109,101,110,116,32,80,108,97,99,101,109,101,110,116,32,97,112,112,108,105,101,100,32,116,111,32,112,111,112,112,101,114,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,83,116,114,105,110,103,125,32,100,97,116,97,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,32,80,108,97,99,101,109,101,110,116,32,111,114,105,103,105,110,97,108,108,121,32,100,101,102,105,110,101,100,32,111,110,32,105,110,105,116,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,66,111,111,108,101,97,110,125,32,100,97,116,97,46,102,108,105,112,112,101,100,32,84,114,117,101,32,105,102,32,112,111,112,112,101,114,32,104,97,115,32,98,101,101,110,32,102,108,105,112,112,101,100,32,98,121,32,102,108,105,112,32,109,111,100,105,102,105,101,114,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,66,111,111,108,101,97,110,125,32,100,97,116,97,46,104,105,100,101,32,84,114,117,101,32,105,102,32,116,104,101,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,32,105,115,32,111,117,116,32,111,102,32,98,111,117,110,100,97,114,105,101,115,44,32,117,115,101,102,117,108,32,116,111,32,107,110,111,119,32,119,104,101,110,32,116,111,32,104,105,100,101,32,116,104,101,32,112,111,112,112,101,114,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,72,84,77,76,69,108,101,109,101,110,116,125,32,100,97,116,97,46,97,114,114,111,119,69,108,101,109,101,110,116,32,78,111,100,101,32,117,115,101,100,32,97,115,32,97,114,114,111,119,32,98,121,32,97,114,114,111,119,32,109,111,100,105,102,105,101,114,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,79,98,106,101,99,116,125,32,100,97,116,97,46,115,116,121,108,101,115,32,65,110,121,32,67,83,83,32,112,114,111,112,101,114,116,121,32,100,101,102,105,110,101,100,32,104,101,114,101,32,119,105,108,108,32,98,101,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,112,111,112,112,101,114,46,32,73,116,32,101,120,112,101,99,116,115,32,116,104,101,32,74,97,118,97,83,99,114,105,112,116,32,110,111,109,101,110,99,108,97,116,117,114,101,32,40,101,103,46,32,96,109,97,114,103,105,110,66,111,116,116,111,109,96,41,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,79,98,106,101,99,116,125,32,100,97,116,97,46,97,114,114,111,119,83,116,121,108,101,115,32,65,110,121,32,67,83,83,32,112,114,111,112,101,114,116,121,32,100,101,102,105,110,101,100,32,104,101,114,101,32,119,105,108,108,32,98,101,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,112,111,112,112,101,114,32,97,114,114,111,119,46,32,73,116,32,101,120,112,101,99,116,115,32,116,104,101,32,74,97,118,97,83,99,114,105,112,116,32,110,111,109,101,110,99,108,97,116,117,114,101,32,40,101,103,46,32,96,109,97,114,103,105,110,66,111,116,116,111,109,96,41,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,79,98,106,101,99,116,125,32,100,97,116,97,46,98,111,117,110,100,97,114,105,101,115,32,79,102,102,115,101,116,115,32,111,102,32,116,104,101,32,112,111,112,112,101,114,32,98,111,117,110,100,97,114,105,101,115,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,79,98,106,101,99,116,125,32,100,97,116,97,46,111,102,102,115,101,116,115,32,84,104,101,32,109,101,97,115,117,114,101,109,101,110,116,115,32,111,102,32,112,111,112,112,101,114,44,32,114,101,102,101,114,101,110,99,101,32,97,110,100,32,97,114,114,111,119,32,101,108,101,109,101,110,116,115,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,79,98,106,101,99,116,125,32,100,97,116,97,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,32,96,116,111,112,96,44,32,96,108,101,102,116,96,44,32,96,119,105,100,116,104,96,44,32,96,104,101,105,103,104,116,96,32,118,97,108,117,101,115,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,79,98,106,101,99,116,125,32,100,97,116,97,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,32,96,116,111,112,96,44,32,96,108,101,102,116,96,44,32,96,119,105,100,116,104,96,44,32,96,104,101,105,103,104,116,96,32,118,97,108,117,101,115,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,79,98,106,101,99,116,125,32,100,97,116,97,46,111,102,102,115,101,116,115,46,97,114,114,111,119,93,32,96,116,111,112,96,32,97,110,100,32,96,108,101,102,116,96,32,111,102,102,115,101,116,115,44,32,111,110,108,121,32,111,110,101,32,111,102,32,116,104,101,109,32,119,105,108,108,32,98,101,32,100,105,102,102,101,114,101,110,116,32,102,114,111,109,32,48,92,110,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,68,101,102,97,117,108,116,32,111,112,116,105,111,110,115,32,112,114,111,118,105,100,101,100,32,116,111,32,80,111,112,112,101,114,46,106,115,32,99,111,110,115,116,114,117,99,116,111,114,46,60,98,114,32,47,62,92,110,32,42,32,84,104,101,115,101,32,99,97,110,32,98,101,32,111,118,101,114,114,105,100,100,101,110,32,117,115,105,110,103,32,116,104,101,32,96,111,112,116,105,111,110,115,96,32,97,114,103,117,109,101,110,116,32,111,102,32,80,111,112,112,101,114,46,106,115,46,60,98,114,32,47,62,92,110,32,42,32,84,111,32,111,118,101,114,114,105,100,101,32,97,110,32,111,112,116,105,111,110,44,32,115,105,109,112,108,121,32,112,97,115,115,32,97,110,32,111,98,106,101,99,116,32,119,105,116,104,32,116,104,101,32,115,97,109,101,92,110,32,42,32,115,116,114,117,99,116,117,114,101,32,111,102,32,116,104,101,32,96,111,112,116,105,111,110,115,96,32,111,98,106,101,99,116,44,32,97,115,32,116,104,101,32,51,114,100,32,97,114,103,117,109,101,110,116,46,32,70,111,114,32,101,120,97,109,112,108,101,58,92,110,32,42,32,96,96,96,92,110,32,42,32,110,101,119,32,80,111,112,112,101,114,40,114,101,102,44,32,112,111,112,44,32,123,92,110,32,42,32,32,32,109,111,100,105,102,105,101,114,115,58,32,123,92,110,32,42,32,32,32,32,32,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,32,123,32,101,110,97,98,108,101,100,58,32,102,97,108,115,101,32,125,92,110,32,42,32,32,32,125,92,110,32,42,32,125,41,92,110,32,42,32,96,96,96,92,110,32,42,32,64,116,121,112,101,32,123,79,98,106,101,99,116,125,92,110,32,42,32,64,115,116,97,116,105,99,92,110,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,92,110,32,42,47,92,110,118,97,114,32,68,101,102,97,117,108,116,115,32,61,32,123,92,110,32,32,47,42,42,92,110,32,32,32,42,32,80,111,112,112,101,114,39,115,32,112,108,97,99,101,109,101,110,116,46,92,110,32,32,32,42,32,64,112,114,111,112,32,123,80,111,112,112,101,114,46,112,108,97,99,101,109,101,110,116,115,125,32,112,108,97,99,101,109,101,110,116,61,39,98,111,116,116,111,109,39,92,110,32,32,32,42,47,92,110,32,32,112,108,97,99,101,109,101,110,116,58,32,39,98,111,116,116,111,109,39,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,83,101,116,32,116,104,105,115,32,116,111,32,116,114,117,101,32,105,102,32,121,111,117,32,119,97,110,116,32,112,111,112,112,101,114,32,116,111,32,112,111,115,105,116,105,111,110,32,105,116,32,115,101,108,102,32,105,110,32,39,102,105,120,101,100,39,32,109,111,100,101,92,110,32,32,32,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,112,111,115,105,116,105,111,110,70,105,120,101,100,61,102,97,108,115,101,92,110,32,32,32,42,47,92,110,32,32,112,111,115,105,116,105,111,110,70,105,120,101,100,58,32,102,97,108,115,101,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,87,104,101,116,104,101,114,32,101,118,101,110,116,115,32,40,114,101,115,105,122,101,44,32,115,99,114,111,108,108,41,32,97,114,101,32,105,110,105,116,105,97,108,108,121,32,101,110,97,98,108,101,100,46,92,110,32,32,32,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,101,118,101,110,116,115,69,110,97,98,108,101,100,61,116,114,117,101,92,110,32,32,32,42,47,92,110,32,32,101,118,101,110,116,115,69,110,97,98,108,101,100,58,32,116,114,117,101,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,83,101,116,32,116,111,32,116,114,117,101,32,105,102,32,121,111,117,32,119,97,110,116,32,116,111,32,97,117,116,111,109,97,116,105,99,97,108,108,121,32,114,101,109,111,118,101,32,116,104,101,32,112,111,112,112,101,114,32,119,104,101,110,92,110,32,32,32,42,32,121,111,117,32,99,97,108,108,32,116,104,101,32,96,100,101,115,116,114,111,121,96,32,109,101,116,104,111,100,46,92,110,32,32,32,42,32,64,112,114,111,112,32,123,66,111,111,108,101,97,110,125,32,114,101,109,111,118,101,79,110,68,101,115,116,114,111,121,61,102,97,108,115,101,92,110,32,32,32,42,47,92,110,32,32,114,101,109,111,118,101,79,110,68,101,115,116,114,111,121,58,32,102,97,108,115,101,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,97,108,108,98,97,99,107,32,99,97,108,108,101,100,32,119,104,101,110,32,116,104,101,32,112,111,112,112,101,114,32,105,115,32,99,114,101,97,116,101,100,46,60,98,114,32,47,62,92,110,32,32,32,42,32,66,121,32,100,101,102,97,117,108,116,44,32,105,116,32,105,115,32,115,101,116,32,116,111,32,110,111,45,111,112,46,60,98,114,32,47,62,92,110,32,32,32,42,32,65,99,99,101,115,115,32,80,111,112,112,101,114,46,106,115,32,105,110,115,116,97,110,99,101,32,119,105,116,104,32,96,100,97,116,97,46,105,110,115,116,97,110,99,101,96,46,92,110,32,32,32,42,32,64,112,114,111,112,32,123,111,110,67,114,101,97,116,101,125,92,110,32,32,32,42,47,92,110,32,32,111,110,67,114,101,97,116,101,58,32,102,117,110,99,116,105,111,110,32,111,110,67,114,101,97,116,101,40,41,32,123,125,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,97,108,108,98,97,99,107,32,99,97,108,108,101,100,32,119,104,101,110,32,116,104,101,32,112,111,112,112,101,114,32,105,115,32,117,112,100,97,116,101,100,46,32,84,104,105,115,32,99,97,108,108,98,97,99,107,32,105,115,32,110,111,116,32,99,97,108,108,101,100,92,110,32,32,32,42,32,111,110,32,116,104,101,32,105,110,105,116,105,97,108,105,122,97,116,105,111,110,47,99,114,101,97,116,105,111,110,32,111,102,32,116,104,101,32,112,111,112,112,101,114,44,32,98,117,116,32,111,110,108,121,32,111,110,32,115,117,98,115,101,113,117,101,110,116,92,110,32,32,32,42,32,117,112,100,97,116,101,115,46,60,98,114,32,47,62,92,110,32,32,32,42,32,66,121,32,100,101,102,97,117,108,116,44,32,105,116,32,105,115,32,115,101,116,32,116,111,32,110,111,45,111,112,46,60,98,114,32,47,62,92,110,32,32,32,42,32,65,99,99,101,115,115,32,80,111,112,112,101,114,46,106,115,32,105,110,115,116,97,110,99,101,32,119,105,116,104,32,96,100,97,116,97,46,105,110,115,116,97,110,99,101,96,46,92,110,32,32,32,42,32,64,112,114,111,112,32,123,111,110,85,112,100,97,116,101,125,92,110,32,32,32,42,47,92,110,32,32,111,110,85,112,100,97,116,101,58,32,102,117,110,99,116,105,111,110,32,111,110,85,112,100,97,116,101,40,41,32,123,125,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,76,105,115,116,32,111,102,32,109,111,100,105,102,105,101,114,115,32,117,115,101,100,32,116,111,32,109,111,100,105,102,121,32,116,104,101,32,111,102,102,115,101,116,115,32,98,101,102,111,114,101,32,116,104,101,121,32,97,114,101,32,97,112,112,108,105,101,100,32,116,111,32,116,104,101,32,112,111,112,112,101,114,46,92,110,32,32,32,42,32,84,104,101,121,32,112,114,111,118,105,100,101,32,109,111,115,116,32,111,102,32,116,104,101,32,102,117,110,99,116,105,111,110,97,108,105,116,105,101,115,32,111,102,32,80,111,112,112,101,114,46,106,115,46,92,110,32,32,32,42,32,64,112,114,111,112,32,123,109,111,100,105,102,105,101,114,115,125,92,110,32,32,32,42,47,92,110,32,32,109,111,100,105,102,105,101,114,115,58,32,109,111,100,105,102,105,101,114,115,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,64,99,97,108,108,98,97,99,107,32,111,110,67,114,101,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,100,97,116,97,79,98,106,101,99,116,125,32,100,97,116,97,92,110,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,64,99,97,108,108,98,97,99,107,32,111,110,85,112,100,97,116,101,92,110,32,42,32,64,112,97,114,97,109,32,123,100,97,116,97,79,98,106,101,99,116,125,32,100,97,116,97,92,110,32,42,47,92,110,92,110,47,47,32,85,116,105,108,115,92,110,47,47,32,77,101,116,104,111,100,115,92,110,118,97,114,32,80,111,112,112,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,114,101,97,116,101,115,32,97,32,110,101,119,32,80,111,112,112,101,114,46,106,115,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,42,32,64,99,108,97,115,115,32,80,111,112,112,101,114,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,69,108,101,109,101,110,116,124,114,101,102,101,114,101,110,99,101,79,98,106,101,99,116,125,32,114,101,102,101,114,101,110,99,101,32,45,32,84,104,101,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,32,117,115,101,100,32,116,111,32,112,111,115,105,116,105,111,110,32,116,104,101,32,112,111,112,112,101,114,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,69,108,101,109,101,110,116,125,32,112,111,112,112,101,114,32,45,32,84,104,101,32,72,84,77,76,32,47,32,88,77,76,32,101,108,101,109,101,110,116,32,117,115,101,100,32,97,115,32,116,104,101,32,112,111,112,112,101,114,92,110,32,32,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,32,45,32,89,111,117,114,32,99,117,115,116,111,109,32,111,112,116,105,111,110,115,32,116,111,32,111,118,101,114,114,105,100,101,32,116,104,101,32,111,110,101,115,32,100,101,102,105,110,101,100,32,105,110,32,91,68,101,102,97,117,108,116,115,93,40,35,100,101,102,97,117,108,116,115,41,92,110,32,32,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,32,105,110,115,116,97,110,99,101,32,45,32,84,104,101,32,103,101,110,101,114,97,116,101,100,32,80,111,112,112,101,114,46,106,115,32,105,110,115,116,97,110,99,101,92,110,32,32,32,42,47,92,110,32,32,102,117,110,99,116,105,111,110,32,80,111,112,112,101,114,40,114,101,102,101,114,101,110,99,101,44,32,112,111,112,112,101,114,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,50,32,38,38,32,97,114,103,117,109,101,110,116,115,91,50,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,50,93,32,58,32,123,125,59,92,110,32,32,32,32,99,108,97,115,115,67,97,108,108,67,104,101,99,107,40,116,104,105,115,44,32,80,111,112,112,101,114,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,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,95,116,104,105,115,46,117,112,100,97,116,101,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,47,32,109,97,107,101,32,117,112,100,97,116,101,40,41,32,100,101,98,111,117,110,99,101,100,44,32,115,111,32,116,104,97,116,32,105,116,32,111,110,108,121,32,114,117,110,115,32,97,116,32,109,111,115,116,32,111,110,99,101,45,112,101,114,45,116,105,99,107,92,110,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,32,61,32,100,101,98,111,117,110,99,101,40,116,104,105,115,46,117,112,100,97,116,101,46,98,105,110,100,40,116,104,105,115,41,41,59,92,110,92,110,32,32,32,32,47,47,32,119,105,116,104,32,123,125,32,119,101,32,99,114,101,97,116,101,32,97,32,110,101,119,32,111,98,106,101,99,116,32,119,105,116,104,32,116,104,101,32,111,112,116,105,111,110,115,32,105,110,115,105,100,101,32,105,116,92,110,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,95,101,120,116,101,110,100,115,40,123,125,44,32,80,111,112,112,101,114,46,68,101,102,97,117,108,116,115,44,32,111,112,116,105,111,110,115,41,59,92,110,92,110,32,32,32,32,47,47,32,105,110,105,116,32,115,116,97,116,101,92,110,32,32,32,32,116,104,105,115,46,115,116,97,116,101,32,61,32,123,92,110,32,32,32,32,32,32,105,115,68,101,115,116,114,111,121,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,105,115,67,114,101,97,116,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,115,99,114,111,108,108,80,97,114,101,110,116,115,58,32,91,93,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,47,32,103,101,116,32,114,101,102,101,114,101,110,99,101,32,97,110,100,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,115,32,40,97,108,108,111,119,32,106,81,117,101,114,121,32,119,114,97,112,112,101,114,115,41,92,110,32,32,32,32,116,104,105,115,46,114,101,102,101,114,101,110,99,101,32,61,32,114,101,102,101,114,101,110,99,101,32,38,38,32,114,101,102,101,114,101,110,99,101,46,106,113,117,101,114,121,32,63,32,114,101,102,101,114,101,110,99,101,91,48,93,32,58,32,114,101,102,101,114,101,110,99,101,59,92,110,32,32,32,32,116,104,105,115,46,112,111,112,112,101,114,32,61,32,112,111,112,112,101,114,32,38,38,32,112,111,112,112,101,114,46,106,113,117,101,114,121,32,63,32,112,111,112,112,101,114,91,48,93,32,58,32,112,111,112,112,101,114,59,92,110,92,110,32,32,32,32,47,47,32,68,101,101,112,32,109,101,114,103,101,32,109,111,100,105,102,105,101,114,115,32,111,112,116,105,111,110,115,92,110,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,32,61,32,123,125,59,92,110,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,95,101,120,116,101,110,100,115,40,123,125,44,32,80,111,112,112,101,114,46,68,101,102,97,117,108,116,115,46,109,111,100,105,102,105,101,114,115,44,32,111,112,116,105,111,110,115,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,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,95,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,91,110,97,109,101,93,32,61,32,95,101,120,116,101,110,100,115,40,123,125,44,32,80,111,112,112,101,114,46,68,101,102,97,117,108,116,115,46,109,111,100,105,102,105,101,114,115,91,110,97,109,101,93,32,124,124,32,123,125,44,32,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,32,63,32,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,91,110,97,109,101,93,32,58,32,123,125,41,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,47,32,82,101,102,97,99,116,111,114,105,110,103,32,109,111,100,105,102,105,101,114,115,39,32,108,105,115,116,32,40,79,98,106,101,99,116,32,61,62,32,65,114,114,97,121,41,92,110,32,32,32,32,116,104,105,115,46,109,111,100,105,102,105,101,114,115,32,61,32,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,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,101,120,116,101,110,100,115,40,123,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,110,97,109,101,92,110,32,32,32,32,32,32,125,44,32,95,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,91,110,97,109,101,93,41,59,92,110,32,32,32,32,125,41,92,110,32,32,32,32,47,47,32,115,111,114,116,32,116,104,101,32,109,111,100,105,102,105,101,114,115,32,98,121,32,111,114,100,101,114,92,110,32,32,32,32,46,115,111,114,116,40,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,46,111,114,100,101,114,32,45,32,98,46,111,114,100,101,114,59,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,47,32,109,111,100,105,102,105,101,114,115,32,104,97,118,101,32,116,104,101,32,97,98,105,108,105,116,121,32,116,111,32,101,120,101,99,117,116,101,32,97,114,98,105,116,114,97,114,121,32,99,111,100,101,32,119,104,101,110,32,80,111,112,112,101,114,46,106,115,32,103,101,116,32,105,110,105,116,101,100,92,110,32,32,32,32,47,47,32,115,117,99,104,32,99,111,100,101,32,105,115,32,101,120,101,99,117,116,101,100,32,105,110,32,116,104,101,32,115,97,109,101,32,111,114,100,101,114,32,111,102,32,105,116,115,32,109,111,100,105,102,105,101,114,92,110,32,32,32,32,47,47,32,116,104,101,121,32,99,111,117,108,100,32,97,100,100,32,110,101,119,32,112,114,111,112,101,114,116,105,101,115,32,116,111,32,116,104,101,105,114,32,111,112,116,105,111,110,115,32,99,111,110,102,105,103,117,114,97,116,105,111,110,92,110,32,32,32,32,47,47,32,66,69,32,65,87,65,82,69,58,32,100,111,110,39,116,32,97,100,100,32,111,112,116,105,111,110,115,32,116,111,32,96,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,46,110,97,109,101,96,32,98,117,116,32,116,111,32,96,109,111,100,105,102,105,101,114,79,112,116,105,111,110,115,96,33,92,110,32,32,32,32,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,32,40,109,111,100,105,102,105,101,114,79,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,109,111,100,105,102,105,101,114,79,112,116,105,111,110,115,46,101,110,97,98,108,101,100,32,38,38,32,105,115,70,117,110,99,116,105,111,110,40,109,111,100,105,102,105,101,114,79,112,116,105,111,110,115,46,111,110,76,111,97,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,109,111,100,105,102,105,101,114,79,112,116,105,111,110,115,46,111,110,76,111,97,100,40,95,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,32,95,116,104,105,115,46,112,111,112,112,101,114,44,32,95,116,104,105,115,46,111,112,116,105,111,110,115,44,32,109,111,100,105,102,105,101,114,79,112,116,105,111,110,115,44,32,95,116,104,105,115,46,115,116,97,116,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,47,47,32,102,105,114,101,32,116,104,101,32,102,105,114,115,116,32,117,112,100,97,116,101,32,116,111,32,112,111,115,105,116,105,111,110,32,116,104,101,32,112,111,112,112,101,114,32,105,110,32,116,104,101,32,114,105,103,104,116,32,112,108,97,99,101,92,110,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,40,41,59,92,110,92,110,32,32,32,32,118,97,114,32,101,118,101,110,116,115,69,110,97,98,108,101,100,32,61,32,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,92,110,32,32,32,32,105,102,32,40,101,118,101,110,116,115,69,110,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,47,47,32,115,101,116,117,112,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,44,32,116,104,101,121,32,119,105,108,108,32,116,97,107,101,32,99,97,114,101,32,111,102,32,117,112,100,97,116,101,32,116,104,101,32,112,111,115,105,116,105,111,110,32,105,110,32,115,112,101,99,105,102,105,99,32,115,105,116,117,97,116,105,111,110,115,92,110,32,32,32,32,32,32,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,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,32,61,32,101,118,101,110,116,115,69,110,97,98,108,101,100,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,87,101,32,99,97,110,39,116,32,117,115,101,32,99,108,97,115,115,32,112,114,111,112,101,114,116,105,101,115,32,98,101,99,97,117,115,101,32,116,104,101,121,32,100,111,110,39,116,32,103,101,116,32,108,105,115,116,101,100,32,105,110,32,116,104,101,92,110,32,32,47,47,32,99,108,97,115,115,32,112,114,111,116,111,116,121,112,101,32,97,110,100,32,98,114,101,97,107,32,115,116,117,102,102,32,108,105,107,101,32,83,105,110,111,110,32,115,116,117,98,115,92,110,92,110,92,110,32,32,99,114,101,97,116,101,67,108,97,115,115,40,80,111,112,112,101,114,44,32,91,123,92,110,32,32,32,32,107,101,121,58,32,39,117,112,100,97,116,101,39,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,117,112,100,97,116,101,46,99,97,108,108,40,116,104,105,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,39,100,101,115,116,114,111,121,39,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,114,111,121,46,99,97,108,108,40,116,104,105,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,39,101,110,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,39,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,101,110,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,101,110,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,46,99,97,108,108,40,116,104,105,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,92,110,32,32,32,32,107,101,121,58,32,39,100,105,115,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,39,44,92,110,32,32,32,32,118,97,108,117,101,58,32,102,117,110,99,116,105,111,110,32,100,105,115,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,36,36,49,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,105,115,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,46,99,97,108,108,40,116,104,105,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,83,99,104,101,100,117,108,101,115,32,97,110,32,117,112,100,97,116,101,46,32,73,116,32,119,105,108,108,32,114,117,110,32,111,110,32,116,104,101,32,110,101,120,116,32,85,73,32,117,112,100,97,116,101,32,97,118,97,105,108,97,98,108,101,46,92,110,32,32,32,32,32,42,32,64,109,101,116,104,111,100,32,115,99,104,101,100,117,108,101,85,112,100,97,116,101,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,92,110,32,32,32,32,32,42,47,92,110,92,110,92,110,32,32,32,32,47,42,42,92,110,32,32,32,32,32,42,32,67,111,108,108,101,99,116,105,111,110,32,111,102,32,117,116,105,108,105,116,105,101,115,32,117,115,101,102,117,108,32,119,104,101,110,32,119,114,105,116,105,110,103,32,99,117,115,116,111,109,32,109,111,100,105,102,105,101,114,115,46,92,110,32,32,32,32,32,42,32,83,116,97,114,116,105,110,103,32,102,114,111,109,32,118,101,114,115,105,111,110,32,49,46,55,44,32,116,104,105,115,32,109,101,116,104,111,100,32,105,115,32,97,118,97,105,108,97,98,108,101,32,111,110,108,121,32,105,102,32,121,111,117,92,110,32,32,32,32,32,42,32,105,110,99,108,117,100,101,32,96,112,111,112,112,101,114,45,117,116,105,108,115,46,106,115,96,32,98,101,102,111,114,101,32,96,112,111,112,112,101,114,46,106,115,96,46,92,110,32,32,32,32,32,42,92,110,32,32,32,32,32,42,32,42,42,68,69,80,82,69,67,65,84,73,79,78,42,42,58,32,84,104,105,115,32,119,97,121,32,116,111,32,97,99,99,101,115,115,32,80,111,112,112,101,114,85,116,105,108,115,32,105,115,32,100,101,112,114,101,99,97,116,101,100,92,110,32,32,32,32,32,42,32,97,110,100,32,119,105,108,108,32,98,101,32,114,101,109,111,118,101,100,32,105,110,32,118,50,33,32,85,115,101,32,116,104,101,32,80,111,112,112,101,114,85,116,105,108,115,32,109,111,100,117,108,101,32,100,105,114,101,99,116,108,121,32,105,110,115,116,101,97,100,46,92,110,32,32,32,32,32,42,32,68,117,101,32,116,111,32,116,104,101,32,104,105,103,104,32,105,110,115,116,97,98,105,108,105,116,121,32,111,102,32,116,104,101,32,109,101,116,104,111,100,115,32,99,111,110,116,97,105,110,101,100,32,105,110,32,85,116,105,108,115,44,32,119,101,32,99,97,110,39,116,92,110,32,32,32,32,32,42,32,103,117,97,114,97,110,116,101,101,32,116,104,101,109,32,116,111,32,102,111,108,108,111,119,32,115,101,109,118,101,114,46,32,85,115,101,32,116,104,101,109,32,97,116,32,121,111,117,114,32,111,119,110,32,114,105,115,107,33,92,110,32,32,32,32,32,42,32,64,115,116,97,116,105,99,92,110,32,32,32,32,32,42,32,64,112,114,105,118,97,116,101,92,110,32,32,32,32,32,42,32,64,116,121,112,101,32,123,79,98,106,101,99,116,125,92,110,32,32,32,32,32,42,32,64,100,101,112,114,101,99,97,116,101,100,32,115,105,110,99,101,32,118,101,114,115,105,111,110,32,49,46,56,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,32,85,116,105,108,115,92,110,32,32,32,32,32,42,32,64,109,101,109,98,101,114,111,102,32,80,111,112,112,101,114,92,110,32,32,32,32,32,42,47,92,110,92,110,32,32,125,93,41,59,92,110,32,32,114,101,116,117,114,110,32,80,111,112,112,101,114,59,92,110,125,40,41,59,92,110,92,110,47,42,42,92,110,32,42,32,84,104,101,32,96,114,101,102,101,114,101,110,99,101,79,98,106,101,99,116,96,32,105,115,32,97,110,32,111,98,106,101,99,116,32,116,104,97,116,32,112,114,111,118,105,100,101,115,32,97,110,32,105,110,116,101,114,102,97,99,101,32,99,111,109,112,97,116,105,98,108,101,32,119,105,116,104,32,80,111,112,112,101,114,46,106,115,92,110,32,42,32,97,110,100,32,108,101,116,115,32,121,111,117,32,117,115,101,32,105,116,32,97,115,32,114,101,112,108,97,99,101,109,101,110,116,32,111,102,32,97,32,114,101,97,108,32,68,79,77,32,110,111,100,101,46,60,98,114,32,47,62,92,110,32,42,32,89,111,117,32,99,97,110,32,117,115,101,32,116,104,105,115,32,109,101,116,104,111,100,32,116,111,32,112,111,115,105,116,105,111,110,32,97,32,112,111,112,112,101,114,32,114,101,108,97,116,105,118,101,108,121,32,116,111,32,97,32,115,101,116,32,111,102,32,99,111,111,114,100,105,110,97,116,101,115,92,110,32,42,32,105,110,32,99,97,115,101,32,121,111,117,32,100,111,110,39,116,32,104,97,118,101,32,97,32,68,79,77,32,110,111,100,101,32,116,111,32,117,115,101,32,97,115,32,114,101,102,101,114,101,110,99,101,46,92,110,32,42,92,110,32,42,32,96,96,96,92,110,32,42,32,110,101,119,32,80,111,112,112,101,114,40,114,101,102,101,114,101,110,99,101,79,98,106,101,99,116,44,32,112,111,112,112,101,114,78,111,100,101,41,59,92,110,32,42,32,96,96,96,92,110,32,42,92,110,32,42,32,78,66,58,32,84,104,105,115,32,102,101,97,116,117,114,101,32,105,115,110,39,116,32,115,117,112,112,111,114,116,101,100,32,105,110,32,73,110,116,101,114,110,101,116,32,69,120,112,108,111,114,101,114,32,49,48,46,92,110,32,42,32,64,110,97,109,101,32,114,101,102,101,114,101,110,99,101,79,98,106,101,99,116,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,70,117,110,99,116,105,111,110,125,32,100,97,116,97,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,92,110,32,42,32,65,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,114,101,116,117,114,110,115,32,97,32,115,101,116,32,111,102,32,99,111,111,114,100,105,110,97,116,101,115,32,99,111,109,112,97,116,105,98,108,101,32,119,105,116,104,32,116,104,101,32,110,97,116,105,118,101,32,96,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,96,32,109,101,116,104,111,100,46,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,110,117,109,98,101,114,125,32,100,97,116,97,46,99,108,105,101,110,116,87,105,100,116,104,92,110,32,42,32,65,110,32,69,83,54,32,103,101,116,116,101,114,32,116,104,97,116,32,119,105,108,108,32,114,101,116,117,114,110,32,116,104,101,32,119,105,100,116,104,32,111,102,32,116,104,101,32,118,105,114,116,117,97,108,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,46,92,110,32,42,32,64,112,114,111,112,101,114,116,121,32,123,110,117,109,98,101,114,125,32,100,97,116,97,46,99,108,105,101,110,116,72,101,105,103,104,116,92,110,32,42,32,65,110,32,69,83,54,32,103,101,116,116,101,114,32,116,104,97,116,32,119,105,108,108,32,114,101,116,117,114,110,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,118,105,114,116,117,97,108,32,114,101,102,101,114,101,110,99,101,32,101,108,101,109,101,110,116,46,92,110,32,42,47,92,110,92,110,92,110,80,111,112,112,101,114,46,85,116,105,108,115,32,61,32,40,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,63,32,119,105,110,100,111,119,32,58,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,41,46,80,111,112,112,101,114,85,116,105,108,115,59,92,110,80,111,112,112,101,114,46,112,108,97,99,101,109,101,110,116,115,32,61,32,112,108,97,99,101,109,101,110,116,115,59,92,110,80,111,112,112,101,114,46,68,101,102,97,117,108,116,115,32,61,32,68,101,102,97,117,108,116,115,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,80,111,112,112,101,114,41,59,92,110,47,47,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,112,111,112,112,101,114,46,106,115,46,109,97,112,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,112,112,101,114,46,106,115,47,100,105,115,116,47,101,115,109,47,112,111,112,112,101,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,114,116,97,108,45,118,117,101,47,100,105,115,116,47,112,111,114,116,97,108,45,118,117,101,46,99,111,109,109,111,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,114,116,97,108,45,118,117,101,47,100,105,115,116,47,112,111,114,116,97,108,45,118,117,101,46,99,111,109,109,111,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,92,110,32,47,42,33,32,92,110,32,32,42,32,112,111,114,116,97,108,45,118,117,101,32,194,169,32,84,104,111,114,115,116,101,110,32,76,195,188,110,98,111,114,103,44,32,50,48,49,57,32,92,110,32,32,42,32,92,110,32,32,42,32,86,101,114,115,105,111,110,58,32,50,46,49,46,55,92,110,32,32,42,32,92,110,32,32,42,32,76,73,67,69,78,67,69,58,32,77,73,84,32,92,110,32,32,42,32,92,110,32,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,108,105,110,117,115,98,111,114,103,47,112,111,114,116,97,108,45,118,117,101,92,110,32,32,42,32,92,110,32,42,47,92,110,92,110,92,110,92,110,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,120,112,111,114,116,115,44,32,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,32,40,123,32,118,97,108,117,101,58,32,116,114,117,101,32,125,41,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,110,116,101,114,111,112,68,101,102,97,117,108,116,32,40,101,120,41,32,123,32,114,101,116,117,114,110,32,40,101,120,32,38,38,32,40,116,121,112,101,111,102,32,101,120,32,61,61,61,32,39,111,98,106,101,99,116,39,41,32,38,38,32,39,100,101,102,97,117,108,116,39,32,105,110,32,101,120,41,32,63,32,101,120,91,39,100,101,102,97,117,108,116,39,93,32,58,32,101,120,59,32,125,92,110,92,110,118,97,114,32,86,117,101,32,61,32,95,105,110,116,101,114,111,112,68,101,102,97,117,108,116,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,95,116,121,112,101,111,102,40,111,98,106,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,61,61,61,32,92,34,115,121,109,98,111,108,92,34,41,32,123,92,110,32,32,32,32,95,116,121,112,101,111,102,32,61,32,102,117,110,99,116,105,111,110,32,40,111,98,106,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,111,98,106,59,92,110,32,32,32,32,125,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,95,116,121,112,101,111,102,32,61,32,102,117,110,99,116,105,111,110,32,40,111,98,106,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,32,38,38,32,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,111,98,106,46,99,111,110,115,116,114,117,99,116,111,114,32,61,61,61,32,83,121,109,98,111,108,32,38,38,32,111,98,106,32,33,61,61,32,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,32,63,32,92,34,115,121,109,98,111,108,92,34,32,58,32,116,121,112,101,111,102,32,111,98,106,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,95,116,121,112,101,111,102,40,111,98,106,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,97,114,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,124,124,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,123,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,41,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,97,114,114,50,32,61,32,110,101,119,32,65,114,114,97,121,40,97,114,114,46,108,101,110,103,116,104,41,59,32,105,32,60,32,97,114,114,46,108,101,110,103,116,104,59,32,105,43,43,41,32,97,114,114,50,91,105,93,32,61,32,97,114,114,91,105,93,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,114,50,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,105,116,101,114,41,32,123,92,110,32,32,105,102,32,40,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,105,116,101,114,41,32,124,124,32,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,105,116,101,114,41,32,61,61,61,32,92,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,92,34,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,105,116,101,114,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,32,123,92,110,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,92,34,41,59,92,110,125,92,110,92,110,118,97,114,32,105,110,66,114,111,119,115,101,114,32,61,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,59,92,110,102,117,110,99,116,105,111,110,32,102,114,101,101,122,101,40,105,116,101,109,41,32,123,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,105,116,101,109,41,32,124,124,32,95,116,121,112,101,111,102,40,105,116,101,109,41,32,61,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,102,114,101,101,122,101,40,105,116,101,109,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,105,116,101,109,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,99,111,109,98,105,110,101,80,97,115,115,101,110,103,101,114,115,40,116,114,97,110,115,112,111,114,116,115,41,32,123,92,110,32,32,118,97,114,32,115,108,111,116,80,114,111,112,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,32,32,114,101,116,117,114,110,32,116,114,97,110,115,112,111,114,116,115,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,112,97,115,115,101,110,103,101,114,115,44,32,116,114,97,110,115,112,111,114,116,41,32,123,92,110,32,32,32,32,118,97,114,32,116,101,109,112,32,61,32,116,114,97,110,115,112,111,114,116,46,112,97,115,115,101,110,103,101,114,115,91,48,93,59,92,110,32,32,32,32,118,97,114,32,110,101,119,80,97,115,115,101,110,103,101,114,115,32,61,32,116,121,112,101,111,102,32,116,101,109,112,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,116,101,109,112,40,115,108,111,116,80,114,111,112,115,41,32,58,32,116,114,97,110,115,112,111,114,116,46,112,97,115,115,101,110,103,101,114,115,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,97,115,115,101,110,103,101,114,115,46,99,111,110,99,97,116,40,110,101,119,80,97,115,115,101,110,103,101,114,115,41,59,92,110,32,32,125,44,32,91,93,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,115,116,97,98,108,101,83,111,114,116,40,97,114,114,97,121,44,32,99,111,109,112,97,114,101,70,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,114,114,97,121,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,118,44,32,105,100,120,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,105,100,120,44,32,118,93,59,92,110,32,32,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,97,114,101,70,110,40,97,91,49,93,44,32,98,91,49,93,41,32,124,124,32,97,91,48,93,32,45,32,98,91,48,93,59,92,110,32,32,125,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,99,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,91,49,93,59,92,110,32,32,125,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,112,105,99,107,40,111,98,106,44,32,107,101,121,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,107,101,121,115,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,97,99,99,44,32,107,101,121,41,32,123,92,110,32,32,32,32,105,102,32,40,111,98,106,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,97,99,99,91,107,101,121,93,32,61,32,111,98,106,91,107,101,121,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,97,99,99,59,92,110,32,32,125,44,32,123,125,41,59,92,110,125,92,110,92,110,118,97,114,32,116,114,97,110,115,112,111,114,116,115,32,61,32,123,125,59,92,110,118,97,114,32,116,97,114,103,101,116,115,32,61,32,123,125,59,92,110,118,97,114,32,115,111,117,114,99,101,115,32,61,32,123,125,59,92,110,118,97,114,32,87,111,114,109,104,111,108,101,32,61,32,86,117,101,46,101,120,116,101,110,100,40,123,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,116,114,97,110,115,112,111,114,116,115,58,32,116,114,97,110,115,112,111,114,116,115,44,92,110,32,32,32,32,32,32,116,97,114,103,101,116,115,58,32,116,97,114,103,101,116,115,44,92,110,32,32,32,32,32,32,115,111,117,114,99,101,115,58,32,115,111,117,114,99,101,115,44,92,110,32,32,32,32,32,32,116,114,97,99,107,73,110,115,116,97,110,99,101,115,58,32,105,110,66,114,111,119,115,101,114,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,111,112,101,110,58,32,102,117,110,99,116,105,111,110,32,111,112,101,110,40,116,114,97,110,115,112,111,114,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,110,66,114,111,119,115,101,114,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,118,97,114,32,116,111,32,61,32,116,114,97,110,115,112,111,114,116,46,116,111,44,92,110,32,32,32,32,32,32,32,32,32,32,102,114,111,109,32,61,32,116,114,97,110,115,112,111,114,116,46,102,114,111,109,44,92,110,32,32,32,32,32,32,32,32,32,32,112,97,115,115,101,110,103,101,114,115,32,61,32,116,114,97,110,115,112,111,114,116,46,112,97,115,115,101,110,103,101,114,115,44,92,110,32,32,32,32,32,32,32,32,32,32,95,116,114,97,110,115,112,111,114,116,36,111,114,100,101,114,32,61,32,116,114,97,110,115,112,111,114,116,46,111,114,100,101,114,44,92,110,32,32,32,32,32,32,32,32,32,32,111,114,100,101,114,32,61,32,95,116,114,97,110,115,112,111,114,116,36,111,114,100,101,114,32,61,61,61,32,118,111,105,100,32,48,32,63,32,73,110,102,105,110,105,116,121,32,58,32,95,116,114,97,110,115,112,111,114,116,36,111,114,100,101,114,59,92,110,32,32,32,32,32,32,105,102,32,40,33,116,111,32,124,124,32,33,102,114,111,109,32,124,124,32,33,112,97,115,115,101,110,103,101,114,115,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,118,97,114,32,110,101,119,84,114,97,110,115,112,111,114,116,32,61,32,123,92,110,32,32,32,32,32,32,32,32,116,111,58,32,116,111,44,92,110,32,32,32,32,32,32,32,32,102,114,111,109,58,32,102,114,111,109,44,92,110,32,32,32,32,32,32,32,32,112,97,115,115,101,110,103,101,114,115,58,32,102,114,101,101,122,101,40,112,97,115,115,101,110,103,101,114,115,41,44,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,111,114,100,101,114,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,115,46,105,110,100,101,120,79,102,40,116,111,41,32,61,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,86,117,101,46,115,101,116,40,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,44,32,116,111,44,32,91,93,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,73,110,100,101,120,32,61,32,116,104,105,115,46,36,95,103,101,116,84,114,97,110,115,112,111,114,116,73,110,100,101,120,40,110,101,119,84,114,97,110,115,112,111,114,116,41,59,32,47,47,32,67,111,112,121,105,110,103,32,116,104,101,32,97,114,114,97,121,32,104,101,114,101,32,115,111,32,116,104,97,116,32,116,104,101,32,80,111,114,116,97,108,84,97,114,103,101,116,32,99,104,97,110,103,101,32,101,118,101,110,116,32,119,105,108,108,32,97,99,116,117,97,108,108,121,32,99,111,110,116,97,105,110,32,116,119,111,32,100,105,115,116,105,110,99,116,32,97,114,114,97,121,115,92,110,92,110,32,32,32,32,32,32,118,97,114,32,110,101,119,84,114,97,110,115,112,111,114,116,115,32,61,32,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,116,111,93,46,115,108,105,99,101,40,48,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,73,110,100,101,120,32,61,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,110,101,119,84,114,97,110,115,112,111,114,116,115,46,112,117,115,104,40,110,101,119,84,114,97,110,115,112,111,114,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,110,101,119,84,114,97,110,115,112,111,114,116,115,91,99,117,114,114,101,110,116,73,110,100,101,120,93,32,61,32,110,101,119,84,114,97,110,115,112,111,114,116,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,116,111,93,32,61,32,115,116,97,98,108,101,83,111,114,116,40,110,101,119,84,114,97,110,115,112,111,114,116,115,44,32,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,46,111,114,100,101,114,32,45,32,98,46,111,114,100,101,114,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,108,111,115,101,58,32,102,117,110,99,116,105,111,110,32,99,108,111,115,101,40,116,114,97,110,115,112,111,114,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,111,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,118,97,114,32,116,111,32,61,32,116,114,97,110,115,112,111,114,116,46,116,111,44,92,110,32,32,32,32,32,32,32,32,32,32,102,114,111,109,32,61,32,116,114,97,110,115,112,111,114,116,46,102,114,111,109,59,92,110,32,32,32,32,32,32,105,102,32,40,33,116,111,32,124,124,32,33,102,114,111,109,32,38,38,32,102,111,114,99,101,32,61,61,61,32,102,97,108,115,101,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,116,111,93,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,102,111,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,116,111,93,32,61,32,91,93,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,116,104,105,115,46,36,95,103,101,116,84,114,97,110,115,112,111,114,116,73,110,100,101,120,40,116,114,97,110,115,112,111,114,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,100,101,120,32,62,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,67,111,112,121,105,110,103,32,116,104,101,32,97,114,114,97,121,32,104,101,114,101,32,115,111,32,116,104,97,116,32,116,104,101,32,80,111,114,116,97,108,84,97,114,103,101,116,32,99,104,97,110,103,101,32,101,118,101,110,116,32,119,105,108,108,32,97,99,116,117,97,108,108,121,32,99,111,110,116,97,105,110,32,116,119,111,32,100,105,115,116,105,110,99,116,32,97,114,114,97,121,115,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,101,119,84,114,97,110,115,112,111,114,116,115,32,61,32,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,116,111,93,46,115,108,105,99,101,40,48,41,59,92,110,32,32,32,32,32,32,32,32,32,32,110,101,119,84,114,97,110,115,112,111,114,116,115,46,115,112,108,105,99,101,40,105,110,100,101,120,44,32,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,116,111,93,32,61,32,110,101,119,84,114,97,110,115,112,111,114,116,115,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,103,105,115,116,101,114,84,97,114,103,101,116,58,32,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,84,97,114,103,101,116,40,116,97,114,103,101,116,44,32,118,109,44,32,102,111,114,99,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,110,66,114,111,119,115,101,114,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,116,114,97,99,107,73,110,115,116,97,110,99,101,115,32,38,38,32,33,102,111,114,99,101,32,38,38,32,116,104,105,115,46,116,97,114,103,101,116,115,91,116,97,114,103,101,116,93,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,34,91,112,111,114,116,97,108,45,118,117,101,93,58,32,84,97,114,103,101,116,32,92,34,46,99,111,110,99,97,116,40,116,97,114,103,101,116,44,32,92,34,32,97,108,114,101,97,100,121,32,101,120,105,115,116,115,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,101,116,40,116,104,105,115,46,116,97,114,103,101,116,115,44,32,116,97,114,103,101,116,44,32,79,98,106,101,99,116,46,102,114,101,101,122,101,40,91,118,109,93,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,110,114,101,103,105,115,116,101,114,84,97,114,103,101,116,58,32,102,117,110,99,116,105,111,110,32,117,110,114,101,103,105,115,116,101,114,84,97,114,103,101,116,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,100,101,108,101,116,101,40,116,104,105,115,46,116,97,114,103,101,116,115,44,32,116,97,114,103,101,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,103,105,115,116,101,114,83,111,117,114,99,101,58,32,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,83,111,117,114,99,101,40,115,111,117,114,99,101,44,32,118,109,44,32,102,111,114,99,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,105,110,66,114,111,119,115,101,114,41,32,114,101,116,117,114,110,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,116,114,97,99,107,73,110,115,116,97,110,99,101,115,32,38,38,32,33,102,111,114,99,101,32,38,38,32,116,104,105,115,46,115,111,117,114,99,101,115,91,115,111,117,114,99,101,93,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,34,91,112,111,114,116,97,108,45,118,117,101,93,58,32,115,111,117,114,99,101,32,92,34,46,99,111,110,99,97,116,40,115,111,117,114,99,101,44,32,92,34,32,97,108,114,101,97,100,121,32,101,120,105,115,116,115,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,101,116,40,116,104,105,115,46,115,111,117,114,99,101,115,44,32,115,111,117,114,99,101,44,32,79,98,106,101,99,116,46,102,114,101,101,122,101,40,91,118,109,93,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,110,114,101,103,105,115,116,101,114,83,111,117,114,99,101,58,32,102,117,110,99,116,105,111,110,32,117,110,114,101,103,105,115,116,101,114,83,111,117,114,99,101,40,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,100,101,108,101,116,101,40,116,104,105,115,46,115,111,117,114,99,101,115,44,32,115,111,117,114,99,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,115,84,97,114,103,101,116,58,32,102,117,110,99,116,105,111,110,32,104,97,115,84,97,114,103,101,116,40,116,111,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,40,116,104,105,115,46,116,97,114,103,101,116,115,91,116,111,93,32,38,38,32,116,104,105,115,46,116,97,114,103,101,116,115,91,116,111,93,91,48,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,115,83,111,117,114,99,101,58,32,102,117,110,99,116,105,111,110,32,104,97,115,83,111,117,114,99,101,40,116,111,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,40,116,104,105,115,46,115,111,117,114,99,101,115,91,116,111,93,32,38,38,32,116,104,105,115,46,115,111,117,114,99,101,115,91,116,111,93,91,48,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,115,67,111,110,116,101,110,116,70,111,114,58,32,102,117,110,99,116,105,111,110,32,104,97,115,67,111,110,116,101,110,116,70,111,114,40,116,111,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,116,111,93,32,38,38,32,33,33,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,116,111,93,46,108,101,110,103,116,104,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,73,110,116,101,114,110,97,108,92,110,32,32,32,32,36,95,103,101,116,84,114,97,110,115,112,111,114,116,73,110,100,101,120,58,32,102,117,110,99,116,105,111,110,32,36,95,103,101,116,84,114,97,110,115,112,111,114,116,73,110,100,101,120,40,95,114,101,102,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,111,32,61,32,95,114,101,102,46,116,111,44,92,110,32,32,32,32,32,32,32,32,32,32,102,114,111,109,32,61,32,95,114,101,102,46,102,114,111,109,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,105,110,32,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,116,111,93,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,116,111,93,91,105,93,46,102,114,111,109,32,61,61,61,32,102,114,111,109,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,43,105,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,118,97,114,32,119,111,114,109,104,111,108,101,32,61,32,110,101,119,32,87,111,114,109,104,111,108,101,40,116,114,97,110,115,112,111,114,116,115,41,59,92,110,92,110,118,97,114,32,95,105,100,32,61,32,49,59,92,110,118,97,114,32,80,111,114,116,97,108,32,61,32,86,117,101,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,39,112,111,114,116,97,108,39,44,92,110,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,100,105,115,97,98,108,101,100,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,66,111,111,108,101,97,110,92,110,32,32,32,32,125,44,92,110,32,32,32,32,110,97,109,101,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,95,105,100,43,43,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,114,100,101,114,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,78,117,109,98,101,114,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,48,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,108,105,109,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,66,111,111,108,101,97,110,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,108,111,116,80,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,79,98,106,101,99,116,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,97,103,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,39,68,73,86,39,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,111,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,77,97,116,104,46,114,111,117,110,100,40,77,97,116,104,46,114,97,110,100,111,109,40,41,32,42,32,49,48,48,48,48,48,48,48,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,119,111,114,109,104,111,108,101,46,114,101,103,105,115,116,101,114,83,111,117,114,99,101,40,95,116,104,105,115,46,110,97,109,101,44,32,95,116,104,105,115,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,110,100,85,112,100,97,116,101,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,117,112,100,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,40,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,110,100,85,112,100,97,116,101,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,119,111,114,109,104,111,108,101,46,117,110,114,101,103,105,115,116,101,114,83,111,117,114,99,101,40,116,104,105,115,46,110,97,109,101,41,59,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,114,40,41,59,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,116,111,58,32,102,117,110,99,116,105,111,110,32,116,111,40,110,101,119,86,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,111,108,100,86,97,108,117,101,32,38,38,32,111,108,100,86,97,108,117,101,32,33,61,61,32,110,101,119,86,97,108,117,101,32,38,38,32,116,104,105,115,46,99,108,101,97,114,40,111,108,100,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,110,100,85,112,100,97,116,101,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,99,108,101,97,114,58,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,108,111,115,101,114,32,61,32,123,92,110,32,32,32,32,32,32,32,32,102,114,111,109,58,32,116,104,105,115,46,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,116,111,58,32,116,97,114,103,101,116,32,124,124,32,116,104,105,115,46,116,111,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,119,111,114,109,104,111,108,101,46,99,108,111,115,101,40,99,108,111,115,101,114,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,110,111,114,109,97,108,105,122,101,83,108,111,116,115,58,32,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,83,108,111,116,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,32,63,32,91,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,93,32,58,32,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,110,111,114,109,97,108,105,122,101,79,119,110,67,104,105,108,100,114,101,110,58,32,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,79,119,110,67,104,105,108,100,114,101,110,40,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,99,104,105,108,100,114,101,110,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,99,104,105,108,100,114,101,110,40,116,104,105,115,46,115,108,111,116,80,114,111,112,115,41,32,58,32,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,110,100,85,112,100,97,116,101,58,32,102,117,110,99,116,105,111,110,32,115,101,110,100,85,112,100,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,108,111,116,67,111,110,116,101,110,116,32,61,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,115,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,108,111,116,67,111,110,116,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,114,97,110,115,112,111,114,116,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,114,111,109,58,32,116,104,105,115,46,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,111,58,32,116,104,105,115,46,116,111,44,92,110,32,32,32,32,32,32,32,32,32,32,112,97,115,115,101,110,103,101,114,115,58,32,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,115,108,111,116,67,111,110,116,101,110,116,41,44,92,110,32,32,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,116,104,105,115,46,111,114,100,101,114,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,119,111,114,109,104,111,108,101,46,111,112,101,110,40,116,114,97,110,115,112,111,114,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,108,101,97,114,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,32,124,124,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,32,124,124,32,91,93,59,92,110,32,32,32,32,118,97,114,32,84,97,103,32,61,32,116,104,105,115,46,116,97,103,59,92,110,92,110,32,32,32,32,105,102,32,40,99,104,105,108,100,114,101,110,32,38,38,32,116,104,105,115,46,100,105,115,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,60,61,32,49,32,38,38,32,116,104,105,115,46,115,108,105,109,32,63,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,79,119,110,67,104,105,108,100,114,101,110,40,99,104,105,108,100,114,101,110,41,91,48,93,32,58,32,104,40,84,97,103,44,32,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,79,119,110,67,104,105,108,100,114,101,110,40,99,104,105,108,100,114,101,110,41,93,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,108,105,109,32,63,32,104,40,41,32,58,32,104,40,84,97,103,44,32,123,92,110,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,39,118,45,112,111,114,116,97,108,39,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,39,110,111,110,101,39,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,39,118,45,112,111,114,116,97,108,45,112,108,97,99,101,104,111,108,100,101,114,39,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,118,97,114,32,80,111,114,116,97,108,84,97,114,103,101,116,32,61,32,86,117,101,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,39,112,111,114,116,97,108,84,97,114,103,101,116,39,44,92,110,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,109,117,108,116,105,112,108,101,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,66,111,111,108,101,97,110,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,97,108,115,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,110,97,109,101,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,114,101,113,117,105,114,101,100,58,32,116,114,117,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,108,105,109,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,66,111,111,108,101,97,110,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,97,108,115,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,108,111,116,80,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,79,98,106,101,99,116,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,97,103,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,39,100,105,118,39,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,114,97,110,115,105,116,105,111,110,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,91,83,116,114,105,110,103,44,32,79,98,106,101,99,116,44,32,70,117,110,99,116,105,111,110,93,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,116,114,97,110,115,112,111,114,116,115,58,32,119,111,114,109,104,111,108,101,46,116,114,97,110,115,112,111,114,116,115,44,92,110,32,32,32,32,32,32,102,105,114,115,116,82,101,110,100,101,114,58,32,116,114,117,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,119,111,114,109,104,111,108,101,46,114,101,103,105,115,116,101,114,84,97,114,103,101,116,40,95,116,104,105,115,46,110,97,109,101,44,32,95,116,104,105,115,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,111,119,110,84,114,97,110,115,112,111,114,116,115,58,32,102,117,110,99,116,105,111,110,32,111,119,110,84,114,97,110,115,112,111,114,116,115,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,39,99,104,97,110,103,101,39,44,32,116,104,105,115,46,99,104,105,108,100,114,101,110,40,41,46,108,101,110,103,116,104,32,62,32,48,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,110,97,109,101,58,32,102,117,110,99,116,105,111,110,32,110,97,109,101,40,110,101,119,86,97,108,44,32,111,108,100,86,97,108,41,32,123,92,110,32,32,32,32,32,32,47,42,42,92,114,92,110,32,32,32,32,32,32,32,42,32,84,79,68,79,92,114,92,110,32,32,32,32,32,32,32,42,32,84,104,105,115,32,115,104,111,117,108,100,32,119,97,114,110,32,97,115,32,119,101,108,108,32,46,46,46,92,114,92,110,32,32,32,32,32,32,32,42,47,92,110,32,32,32,32,32,32,119,111,114,109,104,111,108,101,46,117,110,114,101,103,105,115,116,101,114,84,97,114,103,101,116,40,111,108,100,86,97,108,41,59,92,110,32,32,32,32,32,32,119,111,114,109,104,111,108,101,46,114,101,103,105,115,116,101,114,84,97,114,103,101,116,40,110,101,119,86,97,108,44,32,116,104,105,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,111,110,108,121,32,119,104,101,110,32,119,101,32,104,97,118,101,32,97,32,116,114,97,110,115,105,116,105,111,110,44,32,98,101,99,97,117,115,101,32,105,116,32,99,97,117,115,101,115,32,97,32,114,101,45,114,101,110,100,101,114,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,102,105,114,115,116,82,101,110,100,101,114,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,119,111,114,109,104,111,108,101,46,117,110,114,101,103,105,115,116,101,114,84,97,114,103,101,116,40,116,104,105,115,46,110,97,109,101,41,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,111,119,110,84,114,97,110,115,112,111,114,116,115,58,32,102,117,110,99,116,105,111,110,32,111,119,110,84,114,97,110,115,112,111,114,116,115,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,114,97,110,115,112,111,114,116,115,32,61,32,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,116,104,105,115,46,110,97,109,101,93,32,124,124,32,91,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,109,117,108,116,105,112,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,110,115,112,111,114,116,115,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,97,110,115,112,111,114,116,115,46,108,101,110,103,116,104,32,61,61,61,32,48,32,63,32,91,93,32,58,32,91,116,114,97,110,115,112,111,114,116,115,91,116,114,97,110,115,112,111,114,116,115,46,108,101,110,103,116,104,32,45,32,49,93,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,97,115,115,101,110,103,101,114,115,58,32,102,117,110,99,116,105,111,110,32,112,97,115,115,101,110,103,101,114,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,98,105,110,101,80,97,115,115,101,110,103,101,114,115,40,116,104,105,115,46,111,119,110,84,114,97,110,115,112,111,114,116,115,44,32,116,104,105,115,46,115,108,111,116,80,114,111,112,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,47,47,32,99,97,110,39,116,32,98,101,32,97,32,99,111,109,112,117,116,101,100,32,112,114,111,112,32,98,101,99,97,117,115,101,32,105,116,32,104,97,115,32,116,111,32,92,34,114,101,97,99,116,92,34,32,116,111,32,36,115,108,111,116,32,99,104,97,110,103,101,115,46,92,110,32,32,32,32,99,104,105,108,100,114,101,110,58,32,102,117,110,99,116,105,111,110,32,99,104,105,108,100,114,101,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,112,97,115,115,101,110,103,101,114,115,46,108,101,110,103,116,104,32,33,61,61,32,48,32,63,32,116,104,105,115,46,112,97,115,115,101,110,103,101,114,115,32,58,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,32,63,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,40,116,104,105,115,46,115,108,111,116,80,114,111,112,115,41,32,58,32,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,32,124,124,32,91,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,99,97,110,39,116,32,98,101,32,97,32,99,111,109,112,117,116,101,100,32,112,114,111,112,32,98,101,99,97,117,115,101,32,105,116,32,104,97,115,32,116,111,32,92,34,114,101,97,99,116,92,34,32,116,111,32,116,104,105,115,46,99,104,105,108,100,114,101,110,40,41,46,92,110,32,32,32,32,110,111,87,114,97,112,112,101,114,58,32,102,117,110,99,116,105,111,110,32,110,111,87,114,97,112,112,101,114,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,110,111,87,114,97,112,112,101,114,32,61,32,116,104,105,115,46,115,108,105,109,32,38,38,32,33,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,110,111,87,114,97,112,112,101,114,32,38,38,32,116,104,105,115,46,99,104,105,108,100,114,101,110,40,41,46,108,101,110,103,116,104,32,62,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,39,91,112,111,114,116,97,108,45,118,117,101,93,58,32,80,111,114,116,97,108,84,97,114,103,101,116,32,119,105,116,104,32,96,115,108,105,109,96,32,111,112,116,105,111,110,32,114,101,99,101,105,118,101,100,32,109,111,114,101,32,116,104,97,110,32,111,110,101,32,99,104,105,108,100,32,101,108,101,109,101,110,116,46,39,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,87,114,97,112,112,101,114,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,110,111,87,114,97,112,112,101,114,32,61,32,116,104,105,115,46,110,111,87,114,97,112,112,101,114,40,41,59,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,116,104,105,115,46,99,104,105,108,100,114,101,110,40,41,59,92,110,32,32,32,32,118,97,114,32,84,97,103,32,61,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,32,124,124,32,116,104,105,115,46,116,97,103,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,111,87,114,97,112,112,101,114,32,63,32,99,104,105,108,100,114,101,110,91,48,93,32,58,32,116,104,105,115,46,115,108,105,109,32,38,38,32,33,84,97,103,32,63,32,104,40,41,32,58,32,104,40,84,97,103,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,105,102,32,119,101,32,104,97,118,101,32,97,32,116,114,97,110,115,105,116,105,111,110,32,99,111,109,112,111,110,101,110,116,44,32,112,97,115,115,32,116,104,101,32,116,97,103,32,105,102,32,105,116,32,101,120,105,115,116,115,92,110,32,32,32,32,32,32,32,32,116,97,103,58,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,32,38,38,32,116,104,105,115,46,116,97,103,32,63,32,116,104,105,115,46,116,97,103,32,58,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,92,110,32,32,32,32,32,32,32,32,39,118,117,101,45,112,111,114,116,97,108,45,116,97,114,103,101,116,39,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,118,97,114,32,95,105,100,36,49,32,61,32,48,59,92,110,118,97,114,32,112,111,114,116,97,108,80,114,111,112,115,32,61,32,91,39,100,105,115,97,98,108,101,100,39,44,32,39,110,97,109,101,39,44,32,39,111,114,100,101,114,39,44,32,39,115,108,105,109,39,44,32,39,115,108,111,116,80,114,111,112,115,39,44,32,39,116,97,103,39,44,32,39,116,111,39,93,59,92,110,118,97,114,32,116,97,114,103,101,116,80,114,111,112,115,32,61,32,91,39,109,117,108,116,105,112,108,101,39,44,32,39,116,114,97,110,115,105,116,105,111,110,39,93,59,92,110,118,97,114,32,77,111,117,110,116,105,110,103,80,111,114,116,97,108,32,61,32,86,117,101,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,39,77,111,117,110,116,105,110,103,80,111,114,116,97,108,39,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,97,112,112,101,110,100,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,91,66,111,111,108,101,97,110,44,32,83,116,114,105,110,103,93,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,97,105,108,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,66,111,111,108,101,97,110,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,117,110,116,84,111,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,114,101,113,117,105,114,101,100,58,32,116,114,117,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,80,111,114,116,97,108,92,110,32,32,32,32,100,105,115,97,98,108,101,100,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,66,111,111,108,101,97,110,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,110,97,109,101,32,102,111,114,32,116,104,101,32,112,111,114,116,97,108,92,110,32,32,32,32,110,97,109,101,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,109,111,117,110,116,101,100,95,39,32,43,32,83,116,114,105,110,103,40,95,105,100,36,49,43,43,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,114,100,101,114,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,78,117,109,98,101,114,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,48,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,108,105,109,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,66,111,111,108,101,97,110,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,108,111,116,80,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,79,98,106,101,99,116,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,97,103,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,39,68,73,86,39,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,110,97,109,101,32,102,111,114,32,116,104,101,32,116,97,114,103,101,116,92,110,32,32,32,32,116,111,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,77,97,116,104,46,114,111,117,110,100,40,77,97,116,104,46,114,97,110,100,111,109,40,41,32,42,32,49,48,48,48,48,48,48,48,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,47,32,84,97,114,103,101,116,92,110,32,32,32,32,109,117,108,116,105,112,108,101,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,66,111,111,108,101,97,110,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,97,108,115,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,97,114,103,101,116,83,108,105,109,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,66,111,111,108,101,97,110,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,97,114,103,101,116,83,108,111,116,80,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,79,98,106,101,99,116,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,117,110,99,116,105,111,110,32,95,100,101,102,97,117,108,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,97,114,103,101,116,84,97,103,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,39,100,105,118,39,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,114,97,110,115,105,116,105,111,110,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,91,83,116,114,105,110,103,44,32,79,98,106,101,99,116,44,32,70,117,110,99,116,105,111,110,93,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,118,97,114,32,101,108,32,61,32,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,109,111,117,110,116,84,111,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,101,108,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,92,34,91,112,111,114,116,97,108,45,118,117,101,93,58,32,77,111,117,110,116,32,80,111,105,110,116,32,39,92,34,46,99,111,110,99,97,116,40,116,104,105,115,46,109,111,117,110,116,84,111,44,32,92,34,39,32,110,111,116,32,102,111,117,110,100,32,105,110,32,100,111,99,117,109,101,110,116,92,34,41,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,116,104,105,115,46,36,112,114,111,112,115,59,32,47,47,32,84,97,114,103,101,116,32,97,108,114,101,97,100,121,32,101,120,105,115,116,115,92,110,92,110,32,32,32,32,105,102,32,40,119,111,114,109,104,111,108,101,46,116,97,114,103,101,116,115,91,112,114,111,112,115,46,110,97,109,101,93,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,46,98,97,105,108,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,34,91,112,111,114,116,97,108,45,118,117,101,93,58,32,84,97,114,103,101,116,32,92,34,46,99,111,110,99,97,116,40,112,114,111,112,115,46,110,97,109,101,44,32,92,34,32,105,115,32,97,108,114,101,97,100,121,32,109,111,117,110,116,101,100,46,92,92,110,32,32,32,32,32,32,32,32,65,98,111,114,116,105,110,103,32,98,101,99,97,117,115,101,32,39,98,97,105,108,58,32,116,114,117,101,39,32,105,115,32,115,101,116,92,34,41,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,112,111,114,116,97,108,84,97,114,103,101,116,32,61,32,119,111,114,109,104,111,108,101,46,116,97,114,103,101,116,115,91,112,114,111,112,115,46,110,97,109,101,93,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,97,112,112,101,110,100,32,61,32,112,114,111,112,115,46,97,112,112,101,110,100,59,92,110,92,110,32,32,32,32,105,102,32,40,97,112,112,101,110,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,116,121,112,101,111,102,32,97,112,112,101,110,100,32,61,61,61,32,39,115,116,114,105,110,103,39,32,63,32,97,112,112,101,110,100,32,58,32,39,68,73,86,39,59,92,110,32,32,32,32,32,32,118,97,114,32,109,111,117,110,116,69,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,116,121,112,101,41,59,92,110,32,32,32,32,32,32,101,108,46,97,112,112,101,110,100,67,104,105,108,100,40,109,111,117,110,116,69,108,41,59,92,110,32,32,32,32,32,32,101,108,32,61,32,109,111,117,110,116,69,108,59,92,110,32,32,32,32,125,32,47,47,32,103,101,116,32,112,114,111,112,115,32,102,111,114,32,116,97,114,103,101,116,32,102,114,111,109,32,36,112,114,111,112,115,92,110,32,32,32,32,47,47,32,119,101,32,104,97,118,101,32,116,111,32,114,101,110,97,109,101,32,97,32,102,101,119,32,111,102,32,116,104,101,109,92,110,92,110,92,110,32,32,32,32,118,97,114,32,95,112,114,111,112,115,32,61,32,112,105,99,107,40,116,104,105,115,46,36,112,114,111,112,115,44,32,116,97,114,103,101,116,80,114,111,112,115,41,59,92,110,92,110,32,32,32,32,95,112,114,111,112,115,46,115,108,105,109,32,61,32,116,104,105,115,46,116,97,114,103,101,116,83,108,105,109,59,92,110,32,32,32,32,95,112,114,111,112,115,46,116,97,103,32,61,32,116,104,105,115,46,116,97,114,103,101,116,84,97,103,59,92,110,32,32,32,32,95,112,114,111,112,115,46,115,108,111,116,80,114,111,112,115,32,61,32,116,104,105,115,46,116,97,114,103,101,116,83,108,111,116,80,114,111,112,115,59,92,110,32,32,32,32,95,112,114,111,112,115,46,110,97,109,101,32,61,32,116,104,105,115,46,116,111,59,92,110,32,32,32,32,116,104,105,115,46,112,111,114,116,97,108,84,97,114,103,101,116,32,61,32,110,101,119,32,80,111,114,116,97,108,84,97,114,103,101,116,40,123,92,110,32,32,32,32,32,32,101,108,58,32,101,108,44,92,110,32,32,32,32,32,32,112,97,114,101,110,116,58,32,116,104,105,115,46,36,112,97,114,101,110,116,32,124,124,32,116,104,105,115,44,92,110,32,32,32,32,32,32,112,114,111,112,115,68,97,116,97,58,32,95,112,114,111,112,115,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,112,111,114,116,97,108,84,97,114,103,101,116,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,97,112,112,101,110,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,101,108,32,61,32,116,97,114,103,101,116,46,36,101,108,59,92,110,32,32,32,32,32,32,101,108,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,101,108,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,97,114,103,101,116,46,36,100,101,115,116,114,111,121,40,41,59,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,40,104,41,32,123,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,112,111,114,116,97,108,84,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,34,91,112,111,114,116,97,108,45,118,117,101,93,32,84,97,114,103,101,116,32,119,97,115,110,39,116,32,109,111,117,110,116,101,100,92,34,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,32,32,125,32,47,47,32,105,102,32,116,104,101,114,101,39,115,32,110,111,32,92,34,109,97,110,117,97,108,92,34,32,115,99,111,112,101,100,32,115,108,111,116,44,32,115,111,32,119,101,32,99,114,101,97,116,101,32,97,32,60,80,111,114,116,97,108,62,32,111,117,114,115,101,108,118,101,115,92,110,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,109,97,110,117,97,108,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,112,105,99,107,40,116,104,105,115,46,36,112,114,111,112,115,44,32,112,111,114,116,97,108,80,114,111,112,115,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,80,111,114,116,97,108,44,32,123,92,110,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,116,104,105,115,46,36,97,116,116,114,115,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,116,104,105,115,46,36,108,105,115,116,101,110,101,114,115,44,92,110,32,32,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,58,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,92,110,32,32,32,32,32,32,125,44,32,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,41,59,92,110,32,32,32,32,125,32,47,47,32,101,108,115,101,44,32,119,101,32,114,101,110,100,101,114,32,116,104,101,32,115,99,111,112,101,100,32,115,108,111,116,92,110,92,110,92,110,32,32,32,32,118,97,114,32,99,111,110,116,101,110,116,32,61,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,109,97,110,117,97,108,40,123,92,110,32,32,32,32,32,32,116,111,58,32,116,104,105,115,46,116,111,92,110,32,32,32,32,125,41,59,32,47,47,32,105,102,32,117,115,101,114,32,117,115,101,100,32,60,116,101,109,112,108,97,116,101,62,32,102,111,114,32,116,104,101,32,115,99,111,112,101,100,32,115,108,111,116,92,110,32,32,32,32,47,47,32,99,111,110,116,101,110,116,32,119,105,108,108,32,98,101,32,97,110,32,97,114,114,97,121,92,110,92,110,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,111,110,116,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,91,48,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,99,111,110,116,101,110,116,41,32,114,101,116,117,114,110,32,104,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,110,116,101,110,116,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,115,116,97,108,108,40,86,117,101,36,36,49,41,32,123,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,32,32,86,117,101,36,36,49,46,99,111,109,112,111,110,101,110,116,40,111,112,116,105,111,110,115,46,112,111,114,116,97,108,78,97,109,101,32,124,124,32,39,80,111,114,116,97,108,39,44,32,80,111,114,116,97,108,41,59,92,110,32,32,86,117,101,36,36,49,46,99,111,109,112,111,110,101,110,116,40,111,112,116,105,111,110,115,46,112,111,114,116,97,108,84,97,114,103,101,116,78,97,109,101,32,124,124,32,39,80,111,114,116,97,108,84,97,114,103,101,116,39,44,32,80,111,114,116,97,108,84,97,114,103,101,116,41,59,92,110,32,32,86,117,101,36,36,49,46,99,111,109,112,111,110,101,110,116,40,111,112,116,105,111,110,115,46,77,111,117,110,116,105,110,103,80,111,114,116,97,108,78,97,109,101,32,124,124,32,39,77,111,117,110,116,105,110,103,80,111,114,116,97,108,39,44,32,77,111,117,110,116,105,110,103,80,111,114,116,97,108,41,59,92,110,125,92,110,92,110,118,97,114,32,105,110,100,101,120,32,61,32,123,92,110,32,32,105,110,115,116,97,108,108,58,32,105,110,115,116,97,108,108,92,110,125,59,92,110,92,110,101,120,112,111,114,116,115,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,105,110,100,101,120,59,92,110,101,120,112,111,114,116,115,46,80,111,114,116,97,108,32,61,32,80,111,114,116,97,108,59,92,110,101,120,112,111,114,116,115,46,80,111,114,116,97,108,84,97,114,103,101,116,32,61,32,80,111,114,116,97,108,84,97,114,103,101,116,59,92,110,101,120,112,111,114,116,115,46,77,111,117,110,116,105,110,103,80,111,114,116,97,108,32,61,32,77,111,117,110,116,105,110,103,80,111,114,116,97,108,59,92,110,101,120,112,111,114,116,115,46,87,111,114,109,104,111,108,101,32,61,32,119,111,114,109,104,111,108,101,59,92,110,47,47,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,112,111,114,116,97,108,45,118,117,101,46,99,111,109,109,111,110,46,106,115,46,109,97,112,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,114,116,97,108,45,118,117,101,47,100,105,115,116,47,112,111,114,116,97,108,45,118,117,101,46,99,111,109,109,111,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,114,101,103,101,110,101,114,97,116,111,114,45,114,117,110,116,105,109,101,47,114,117,110,116,105,109,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,114,101,103,101,110,101,114,97,116,111,114,45,114,117,110,116,105,109,101,47,114,117,110,116,105,109,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,101,118,97,108,40,34,47,42,42,92,110,32,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,52,45,112,114,101,115,101,110,116,44,32,70,97,99,101,98,111,111,107,44,32,73,110,99,46,92,110,32,42,92,110,32,42,32,84,104,105,115,32,115,111,117,114,99,101,32,99,111,100,101,32,105,115,32,108,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,32,102,111,117,110,100,32,105,110,32,116,104,101,92,110,32,42,32,76,73,67,69,78,83,69,32,102,105,108,101,32,105,110,32,116,104,101,32,114,111,111,116,32,100,105,114,101,99,116,111,114,121,32,111,102,32,116,104,105,115,32,115,111,117,114,99,101,32,116,114,101,101,46,92,110,32,42,47,92,110,92,110,118,97,114,32,114,117,110,116,105,109,101,32,61,32,40,102,117,110,99,116,105,111,110,32,40,101,120,112,111,114,116,115,41,32,123,92,110,32,32,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,92,110,92,110,32,32,118,97,114,32,79,112,32,61,32,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,59,92,110,32,32,118,97,114,32,104,97,115,79,119,110,32,61,32,79,112,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,59,92,110,32,32,118,97,114,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,32,61,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,32,124,124,32,102,117,110,99,116,105,111,110,32,40,111,98,106,44,32,107,101,121,44,32,100,101,115,99,41,32,123,32,111,98,106,91,107,101,121,93,32,61,32,100,101,115,99,46,118,97,108,117,101,59,32,125,59,92,110,32,32,118,97,114,32,117,110,100,101,102,105,110,101,100,59,32,47,47,32,77,111,114,101,32,99,111,109,112,114,101,115,115,105,98,108,101,32,116,104,97,110,32,118,111,105,100,32,48,46,92,110,32,32,118,97,114,32,36,83,121,109,98,111,108,32,61,32,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,63,32,83,121,109,98,111,108,32,58,32,123,125,59,92,110,32,32,118,97,114,32,105,116,101,114,97,116,111,114,83,121,109,98,111,108,32,61,32,36,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,124,124,32,92,34,64,64,105,116,101,114,97,116,111,114,92,34,59,92,110,32,32,118,97,114,32,97,115,121,110,99,73,116,101,114,97,116,111,114,83,121,109,98,111,108,32,61,32,36,83,121,109,98,111,108,46,97,115,121,110,99,73,116,101,114,97,116,111,114,32,124,124,32,92,34,64,64,97,115,121,110,99,73,116,101,114,97,116,111,114,92,34,59,92,110,32,32,118,97,114,32,116,111,83,116,114,105,110,103,84,97,103,83,121,109,98,111,108,32,61,32,36,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,32,124,124,32,92,34,64,64,116,111,83,116,114,105,110,103,84,97,103,92,34,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,111,98,106,91,107,101,121,93,59,92,110,32,32,125,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,47,47,32,73,69,32,56,32,104,97,115,32,97,32,98,114,111,107,101,110,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,32,116,104,97,116,32,111,110,108,121,32,119,111,114,107,115,32,111,110,32,68,79,77,32,111,98,106,101,99,116,115,46,92,110,32,32,32,32,100,101,102,105,110,101,40,123,125,44,32,92,34,92,34,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,114,114,41,32,123,92,110,32,32,32,32,100,101,102,105,110,101,32,61,32,102,117,110,99,116,105,111,110,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,119,114,97,112,40,105,110,110,101,114,70,110,44,32,111,117,116,101,114,70,110,44,32,115,101,108,102,44,32,116,114,121,76,111,99,115,76,105,115,116,41,32,123,92,110,32,32,32,32,47,47,32,73,102,32,111,117,116,101,114,70,110,32,112,114,111,118,105,100,101,100,32,97,110,100,32,111,117,116,101,114,70,110,46,112,114,111,116,111,116,121,112,101,32,105,115,32,97,32,71,101,110,101,114,97,116,111,114,44,32,116,104,101,110,32,111,117,116,101,114,70,110,46,112,114,111,116,111,116,121,112,101,32,105,110,115,116,97,110,99,101,111,102,32,71,101,110,101,114,97,116,111,114,46,92,110,32,32,32,32,118,97,114,32,112,114,111,116,111,71,101,110,101,114,97,116,111,114,32,61,32,111,117,116,101,114,70,110,32,38,38,32,111,117,116,101,114,70,110,46,112,114,111,116,111,116,121,112,101,32,105,110,115,116,97,110,99,101,111,102,32,71,101,110,101,114,97,116,111,114,32,63,32,111,117,116,101,114,70,110,32,58,32,71,101,110,101,114,97,116,111,114,59,92,110,32,32,32,32,118,97,114,32,103,101,110,101,114,97,116,111,114,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,112,114,111,116,111,71,101,110,101,114,97,116,111,114,46,112,114,111,116,111,116,121,112,101,41,59,92,110,32,32,32,32,118,97,114,32,99,111,110,116,101,120,116,32,61,32,110,101,119,32,67,111,110,116,101,120,116,40,116,114,121,76,111,99,115,76,105,115,116,32,124,124,32,91,93,41,59,92,110,92,110,32,32,32,32,47,47,32,84,104,101,32,46,95,105,110,118,111,107,101,32,109,101,116,104,111,100,32,117,110,105,102,105,101,115,32,116,104,101,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,115,32,111,102,32,116,104,101,32,46,110,101,120,116,44,92,110,32,32,32,32,47,47,32,46,116,104,114,111,119,44,32,97,110,100,32,46,114,101,116,117,114,110,32,109,101,116,104,111,100,115,46,92,110,32,32,32,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,103,101,110,101,114,97,116,111,114,44,32,92,34,95,105,110,118,111,107,101,92,34,44,32,123,32,118,97,108,117,101,58,32,109,97,107,101,73,110,118,111,107,101,77,101,116,104,111,100,40,105,110,110,101,114,70,110,44,32,115,101,108,102,44,32,99,111,110,116,101,120,116,41,32,125,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,103,101,110,101,114,97,116,111,114,59,92,110,32,32,125,92,110,32,32,101,120,112,111,114,116,115,46,119,114,97,112,32,61,32,119,114,97,112,59,92,110,92,110,32,32,47,47,32,84,114,121,47,99,97,116,99,104,32,104,101,108,112,101,114,32,116,111,32,109,105,110,105,109,105,122,101,32,100,101,111,112,116,105,109,105,122,97,116,105,111,110,115,46,32,82,101,116,117,114,110,115,32,97,32,99,111,109,112,108,101,116,105,111,110,92,110,32,32,47,47,32,114,101,99,111,114,100,32,108,105,107,101,32,99,111,110,116,101,120,116,46,116,114,121,69,110,116,114,105,101,115,91,105,93,46,99,111,109,112,108,101,116,105,111,110,46,32,84,104,105,115,32,105,110,116,101,114,102,97,99,101,32,99,111,117,108,100,92,110,32,32,47,47,32,104,97,118,101,32,98,101,101,110,32,40,97,110,100,32,119,97,115,32,112,114,101,118,105,111,117,115,108,121,41,32,100,101,115,105,103,110,101,100,32,116,111,32,116,97,107,101,32,97,32,99,108,111,115,117,114,101,32,116,111,32,98,101,92,110,32,32,47,47,32,105,110,118,111,107,101,100,32,119,105,116,104,111,117,116,32,97,114,103,117,109,101,110,116,115,44,32,98,117,116,32,105,110,32,97,108,108,32,116,104,101,32,99,97,115,101,115,32,119,101,32,99,97,114,101,32,97,98,111,117,116,32,119,101,92,110,32,32,47,47,32,97,108,114,101,97,100,121,32,104,97,118,101,32,97,110,32,101,120,105,115,116,105,110,103,32,109,101,116,104,111,100,32,119,101,32,119,97,110,116,32,116,111,32,99,97,108,108,44,32,115,111,32,116,104,101,114,101,39,115,32,110,111,32,110,101,101,100,92,110,32,32,47,47,32,116,111,32,99,114,101,97,116,101,32,97,32,110,101,119,32,102,117,110,99,116,105,111,110,32,111,98,106,101,99,116,46,32,87,101,32,99,97,110,32,101,118,101,110,32,103,101,116,32,97,119,97,121,32,119,105,116,104,32,97,115,115,117,109,105,110,103,92,110,32,32,47,47,32,116,104,101,32,109,101,116,104,111,100,32,116,97,107,101,115,32,101,120,97,99,116,108,121,32,111,110,101,32,97,114,103,117,109,101,110,116,44,32,115,105,110,99,101,32,116,104,97,116,32,104,97,112,112,101,110,115,32,116,111,32,98,101,32,116,114,117,101,92,110,32,32,47,47,32,105,110,32,101,118,101,114,121,32,99,97,115,101,44,32,115,111,32,119,101,32,100,111,110,39,116,32,104,97,118,101,32,116,111,32,116,111,117,99,104,32,116,104,101,32,97,114,103,117,109,101,110,116,115,32,111,98,106,101,99,116,46,32,84,104,101,92,110,32,32,47,47,32,111,110,108,121,32,97,100,100,105,116,105,111,110,97,108,32,97,108,108,111,99,97,116,105,111,110,32,114,101,113,117,105,114,101,100,32,105,115,32,116,104,101,32,99,111,109,112,108,101,116,105,111,110,32,114,101,99,111,114,100,44,32,119,104,105,99,104,92,110,32,32,47,47,32,104,97,115,32,97,32,115,116,97,98,108,101,32,115,104,97,112,101,32,97,110,100,32,115,111,32,104,111,112,101,102,117,108,108,121,32,115,104,111,117,108,100,32,98,101,32,99,104,101,97,112,32,116,111,32,97,108,108,111,99,97,116,101,46,92,110,32,32,102,117,110,99,116,105,111,110,32,116,114,121,67,97,116,99,104,40,102,110,44,32,111,98,106,44,32,97,114,103,41,32,123,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,32,116,121,112,101,58,32,92,34,110,111,114,109,97,108,92,34,44,32,97,114,103,58,32,102,110,46,99,97,108,108,40,111,98,106,44,32,97,114,103,41,32,125,59,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,114,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,32,116,121,112,101,58,32,92,34,116,104,114,111,119,92,34,44,32,97,114,103,58,32,101,114,114,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,71,101,110,83,116,97,116,101,83,117,115,112,101,110,100,101,100,83,116,97,114,116,32,61,32,92,34,115,117,115,112,101,110,100,101,100,83,116,97,114,116,92,34,59,92,110,32,32,118,97,114,32,71,101,110,83,116,97,116,101,83,117,115,112,101,110,100,101,100,89,105,101,108,100,32,61,32,92,34,115,117,115,112,101,110,100,101,100,89,105,101,108,100,92,34,59,92,110,32,32,118,97,114,32,71,101,110,83,116,97,116,101,69,120,101,99,117,116,105,110,103,32,61,32,92,34,101,120,101,99,117,116,105,110,103,92,34,59,92,110,32,32,118,97,114,32,71,101,110,83,116,97,116,101,67,111,109,112,108,101,116,101,100,32,61,32,92,34,99,111,109,112,108,101,116,101,100,92,34,59,92,110,92,110,32,32,47,47,32,82,101,116,117,114,110,105,110,103,32,116,104,105,115,32,111,98,106,101,99,116,32,102,114,111,109,32,116,104,101,32,105,110,110,101,114,70,110,32,104,97,115,32,116,104,101,32,115,97,109,101,32,101,102,102,101,99,116,32,97,115,92,110,32,32,47,47,32,98,114,101,97,107,105,110,103,32,111,117,116,32,111,102,32,116,104,101,32,100,105,115,112,97,116,99,104,32,115,119,105,116,99,104,32,115,116,97,116,101,109,101,110,116,46,92,110,32,32,118,97,114,32,67,111,110,116,105,110,117,101,83,101,110,116,105,110,101,108,32,61,32,123,125,59,92,110,92,110,32,32,47,47,32,68,117,109,109,121,32,99,111,110,115,116,114,117,99,116,111,114,32,102,117,110,99,116,105,111,110,115,32,116,104,97,116,32,119,101,32,117,115,101,32,97,115,32,116,104,101,32,46,99,111,110,115,116,114,117,99,116,111,114,32,97,110,100,92,110,32,32,47,47,32,46,99,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,32,112,114,111,112,101,114,116,105,101,115,32,102,111,114,32,102,117,110,99,116,105,111,110,115,32,116,104,97,116,32,114,101,116,117,114,110,32,71,101,110,101,114,97,116,111,114,92,110,32,32,47,47,32,111,98,106,101,99,116,115,46,32,70,111,114,32,102,117,108,108,32,115,112,101,99,32,99,111,109,112,108,105,97,110,99,101,44,32,121,111,117,32,109,97,121,32,119,105,115,104,32,116,111,32,99,111,110,102,105,103,117,114,101,32,121,111,117,114,92,110,32,32,47,47,32,109,105,110,105,102,105,101,114,32,110,111,116,32,116,111,32,109,97,110,103,108,101,32,116,104,101,32,110,97,109,101,115,32,111,102,32,116,104,101,115,101,32,116,119,111,32,102,117,110,99,116,105,111,110,115,46,92,110,32,32,102,117,110,99,116,105,111,110,32,71,101,110,101,114,97,116,111,114,40,41,32,123,125,92,110,32,32,102,117,110,99,116,105,111,110,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,40,41,32,123,125,92,110,32,32,102,117,110,99,116,105,111,110,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,80,114,111,116,111,116,121,112,101,40,41,32,123,125,92,110,92,110,32,32,47,47,32,84,104,105,115,32,105,115,32,97,32,112,111,108,121,102,105,108,108,32,102,111,114,32,37,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,37,32,102,111,114,32,101,110,118,105,114,111,110,109,101,110,116,115,32,116,104,97,116,92,110,32,32,47,47,32,100,111,110,39,116,32,110,97,116,105,118,101,108,121,32,115,117,112,112,111,114,116,32,105,116,46,92,110,32,32,118,97,114,32,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,32,61,32,123,125,59,92,110,32,32,100,101,102,105,110,101,40,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,44,32,105,116,101,114,97,116,111,114,83,121,109,98,111,108,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,41,59,92,110,92,110,32,32,118,97,114,32,103,101,116,80,114,111,116,111,32,61,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,59,92,110,32,32,118,97,114,32,78,97,116,105,118,101,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,32,61,32,103,101,116,80,114,111,116,111,32,38,38,32,103,101,116,80,114,111,116,111,40,103,101,116,80,114,111,116,111,40,118,97,108,117,101,115,40,91,93,41,41,41,59,92,110,32,32,105,102,32,40,78,97,116,105,118,101,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,32,38,38,92,110,32,32,32,32,32,32,78,97,116,105,118,101,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,32,33,61,61,32,79,112,32,38,38,92,110,32,32,32,32,32,32,104,97,115,79,119,110,46,99,97,108,108,40,78,97,116,105,118,101,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,44,32,105,116,101,114,97,116,111,114,83,121,109,98,111,108,41,41,32,123,92,110,32,32,32,32,47,47,32,84,104,105,115,32,101,110,118,105,114,111,110,109,101,110,116,32,104,97,115,32,97,32,110,97,116,105,118,101,32,37,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,37,59,32,117,115,101,32,105,116,32,105,110,115,116,101,97,100,92,110,32,32,32,32,47,47,32,111,102,32,116,104,101,32,112,111,108,121,102,105,108,108,46,92,110,32,32,32,32,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,32,61,32,78,97,116,105,118,101,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,71,112,32,61,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,80,114,111,116,111,116,121,112,101,46,112,114,111,116,111,116,121,112,101,32,61,92,110,32,32,32,32,71,101,110,101,114,97,116,111,114,46,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,73,116,101,114,97,116,111,114,80,114,111,116,111,116,121,112,101,41,59,92,110,32,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,32,61,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,80,114,111,116,111,116,121,112,101,59,92,110,32,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,71,112,44,32,92,34,99,111,110,115,116,114,117,99,116,111,114,92,34,44,32,123,32,118,97,108,117,101,58,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,80,114,111,116,111,116,121,112,101,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,41,59,92,110,32,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,92,110,32,32,32,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,80,114,111,116,111,116,121,112,101,44,92,110,32,32,32,32,92,34,99,111,110,115,116,114,117,99,116,111,114,92,34,44,92,110,32,32,32,32,123,32,118,97,108,117,101,58,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,44,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,92,110,32,32,41,59,92,110,32,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,46,100,105,115,112,108,97,121,78,97,109,101,32,61,32,100,101,102,105,110,101,40,92,110,32,32,32,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,80,114,111,116,111,116,121,112,101,44,92,110,32,32,32,32,116,111,83,116,114,105,110,103,84,97,103,83,121,109,98,111,108,44,92,110,32,32,32,32,92,34,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,92,34,92,110,32,32,41,59,92,110,92,110,32,32,47,47,32,72,101,108,112,101,114,32,102,111,114,32,100,101,102,105,110,105,110,103,32,116,104,101,32,46,110,101,120,116,44,32,46,116,104,114,111,119,44,32,97,110,100,32,46,114,101,116,117,114,110,32,109,101,116,104,111,100,115,32,111,102,32,116,104,101,92,110,32,32,47,47,32,73,116,101,114,97,116,111,114,32,105,110,116,101,114,102,97,99,101,32,105,110,32,116,101,114,109,115,32,111,102,32,97,32,115,105,110,103,108,101,32,46,95,105,110,118,111,107,101,32,109,101,116,104,111,100,46,92,110,32,32,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,73,116,101,114,97,116,111,114,77,101,116,104,111,100,115,40,112,114,111,116,111,116,121,112,101,41,32,123,92,110,32,32,32,32,91,92,34,110,101,120,116,92,34,44,32,92,34,116,104,114,111,119,92,34,44,32,92,34,114,101,116,117,114,110,92,34,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,109,101,116,104,111,100,41,32,123,92,110,32,32,32,32,32,32,100,101,102,105,110,101,40,112,114,111,116,111,116,121,112,101,44,32,109,101,116,104,111,100,44,32,102,117,110,99,116,105,111,110,40,97,114,103,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,118,111,107,101,40,109,101,116,104,111,100,44,32,97,114,103,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,101,120,112,111,114,116,115,46,105,115,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,40,103,101,110,70,117,110,41,32,123,92,110,32,32,32,32,118,97,114,32,99,116,111,114,32,61,32,116,121,112,101,111,102,32,103,101,110,70,117,110,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,103,101,110,70,117,110,46,99,111,110,115,116,114,117,99,116,111,114,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,116,111,114,92,110,32,32,32,32,32,32,63,32,99,116,111,114,32,61,61,61,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,32,124,124,92,110,32,32,32,32,32,32,32,32,47,47,32,70,111,114,32,116,104,101,32,110,97,116,105,118,101,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,32,99,111,110,115,116,114,117,99,116,111,114,44,32,116,104,101,32,98,101,115,116,32,119,101,32,99,97,110,92,110,32,32,32,32,32,32,32,32,47,47,32,100,111,32,105,115,32,116,111,32,99,104,101,99,107,32,105,116,115,32,46,110,97,109,101,32,112,114,111,112,101,114,116,121,46,92,110,32,32,32,32,32,32,32,32,40,99,116,111,114,46,100,105,115,112,108,97,121,78,97,109,101,32,124,124,32,99,116,111,114,46,110,97,109,101,41,32,61,61,61,32,92,34,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,92,34,92,110,32,32,32,32,32,32,58,32,102,97,108,115,101,59,92,110,32,32,125,59,92,110,92,110,32,32,101,120,112,111,114,116,115,46,109,97,114,107,32,61,32,102,117,110,99,116,105,111,110,40,103,101,110,70,117,110,41,32,123,92,110,32,32,32,32,105,102,32,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,41,32,123,92,110,32,32,32,32,32,32,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,103,101,110,70,117,110,44,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,80,114,111,116,111,116,121,112,101,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,103,101,110,70,117,110,46,95,95,112,114,111,116,111,95,95,32,61,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,80,114,111,116,111,116,121,112,101,59,92,110,32,32,32,32,32,32,100,101,102,105,110,101,40,103,101,110,70,117,110,44,32,116,111,83,116,114,105,110,103,84,97,103,83,121,109,98,111,108,44,32,92,34,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,92,34,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,103,101,110,70,117,110,46,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,71,112,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,103,101,110,70,117,110,59,92,110,32,32,125,59,92,110,92,110,32,32,47,47,32,87,105,116,104,105,110,32,116,104,101,32,98,111,100,121,32,111,102,32,97,110,121,32,97,115,121,110,99,32,102,117,110,99,116,105,111,110,44,32,96,97,119,97,105,116,32,120,96,32,105,115,32,116,114,97,110,115,102,111,114,109,101,100,32,116,111,92,110,32,32,47,47,32,96,121,105,101,108,100,32,114,101,103,101,110,101,114,97,116,111,114,82,117,110,116,105,109,101,46,97,119,114,97,112,40,120,41,96,44,32,115,111,32,116,104,97,116,32,116,104,101,32,114,117,110,116,105,109,101,32,99,97,110,32,116,101,115,116,92,110,32,32,47,47,32,96,104,97,115,79,119,110,46,99,97,108,108,40,118,97,108,117,101,44,32,92,34,95,95,97,119,97,105,116,92,34,41,96,32,116,111,32,100,101,116,101,114,109,105,110,101,32,105,102,32,116,104,101,32,121,105,101,108,100,101,100,32,118,97,108,117,101,32,105,115,92,110,32,32,47,47,32,109,101,97,110,116,32,116,111,32,98,101,32,97,119,97,105,116,101,100,46,92,110,32,32,101,120,112,111,114,116,115,46,97,119,114,97,112,32,61,32,102,117,110,99,116,105,111,110,40,97,114,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,32,95,95,97,119,97,105,116,58,32,97,114,103,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,65,115,121,110,99,73,116,101,114,97,116,111,114,40,103,101,110,101,114,97,116,111,114,44,32,80,114,111,109,105,115,101,73,109,112,108,41,32,123,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,40,109,101,116,104,111,100,44,32,97,114,103,44,32,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,99,111,114,100,32,61,32,116,114,121,67,97,116,99,104,40,103,101,110,101,114,97,116,111,114,91,109,101,116,104,111,100,93,44,32,103,101,110,101,114,97,116,111,114,44,32,97,114,103,41,59,92,110,32,32,32,32,32,32,105,102,32,40,114,101,99,111,114,100,46,116,121,112,101,32,61,61,61,32,92,34,116,104,114,111,119,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,106,101,99,116,40,114,101,99,111,114,100,46,97,114,103,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,114,101,99,111,114,100,46,97,114,103,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,114,101,115,117,108,116,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,97,115,79,119,110,46,99,97,108,108,40,118,97,108,117,101,44,32,92,34,95,95,97,119,97,105,116,92,34,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,73,109,112,108,46,114,101,115,111,108,118,101,40,118,97,108,117,101,46,95,95,97,119,97,105,116,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,118,111,107,101,40,92,34,110,101,120,116,92,34,44,32,118,97,108,117,101,44,32,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,40,101,114,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,118,111,107,101,40,92,34,116,104,114,111,119,92,34,44,32,101,114,114,44,32,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,73,109,112,108,46,114,101,115,111,108,118,101,40,118,97,108,117,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,117,110,119,114,97,112,112,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,87,104,101,110,32,97,32,121,105,101,108,100,101,100,32,80,114,111,109,105,115,101,32,105,115,32,114,101,115,111,108,118,101,100,44,32,105,116,115,32,102,105,110,97,108,32,118,97,108,117,101,32,98,101,99,111,109,101,115,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,116,104,101,32,46,118,97,108,117,101,32,111,102,32,116,104,101,32,80,114,111,109,105,115,101,60,123,118,97,108,117,101,44,100,111,110,101,125,62,32,114,101,115,117,108,116,32,102,111,114,32,116,104,101,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,99,117,114,114,101,110,116,32,105,116,101,114,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,118,97,108,117,101,32,61,32,117,110,119,114,97,112,112,101,100,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,118,101,40,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,40,101,114,114,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,97,32,114,101,106,101,99,116,101,100,32,80,114,111,109,105,115,101,32,119,97,115,32,121,105,101,108,100,101,100,44,32,116,104,114,111,119,32,116,104,101,32,114,101,106,101,99,116,105,111,110,32,98,97,99,107,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,105,110,116,111,32,116,104,101,32,97,115,121,110,99,32,103,101,110,101,114,97,116,111,114,32,102,117,110,99,116,105,111,110,32,115,111,32,105,116,32,99,97,110,32,98,101,32,104,97,110,100,108,101,100,32,116,104,101,114,101,46,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,118,111,107,101,40,92,34,116,104,114,111,119,92,34,44,32,101,114,114,111,114,44,32,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,112,114,101,118,105,111,117,115,80,114,111,109,105,115,101,59,92,110,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,101,110,113,117,101,117,101,40,109,101,116,104,111,100,44,32,97,114,103,41,32,123,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,99,97,108,108,73,110,118,111,107,101,87,105,116,104,77,101,116,104,111,100,65,110,100,65,114,103,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,73,109,112,108,40,102,117,110,99,116,105,111,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,110,118,111,107,101,40,109,101,116,104,111,100,44,32,97,114,103,44,32,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,114,101,118,105,111,117,115,80,114,111,109,105,115,101,32,61,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,101,110,113,117,101,117,101,32,104,97,115,32,98,101,101,110,32,99,97,108,108,101,100,32,98,101,102,111,114,101,44,32,116,104,101,110,32,119,101,32,119,97,110,116,32,116,111,32,119,97,105,116,32,117,110,116,105,108,92,110,32,32,32,32,32,32,32,32,47,47,32,97,108,108,32,112,114,101,118,105,111,117,115,32,80,114,111,109,105,115,101,115,32,104,97,118,101,32,98,101,101,110,32,114,101,115,111,108,118,101,100,32,98,101,102,111,114,101,32,99,97,108,108,105,110,103,32,105,110,118,111,107,101,44,92,110,32,32,32,32,32,32,32,32,47,47,32,115,111,32,116,104,97,116,32,114,101,115,117,108,116,115,32,97,114,101,32,97,108,119,97,121,115,32,100,101,108,105,118,101,114,101,100,32,105,110,32,116,104,101,32,99,111,114,114,101,99,116,32,111,114,100,101,114,46,32,73,102,92,110,32,32,32,32,32,32,32,32,47,47,32,101,110,113,117,101,117,101,32,104,97,115,32,110,111,116,32,98,101,101,110,32,99,97,108,108,101,100,32,98,101,102,111,114,101,44,32,116,104,101,110,32,105,116,32,105,115,32,105,109,112,111,114,116,97,110,116,32,116,111,92,110,32,32,32,32,32,32,32,32,47,47,32,99,97,108,108,32,105,110,118,111,107,101,32,105,109,109,101,100,105,97,116,101,108,121,44,32,119,105,116,104,111,117,116,32,119,97,105,116,105,110,103,32,111,110,32,97,32,99,97,108,108,98,97,99,107,32,116,111,32,102,105,114,101,44,92,110,32,32,32,32,32,32,32,32,47,47,32,115,111,32,116,104,97,116,32,116,104,101,32,97,115,121,110,99,32,103,101,110,101,114,97,116,111,114,32,102,117,110,99,116,105,111,110,32,104,97,115,32,116,104,101,32,111,112,112,111,114,116,117,110,105,116,121,32,116,111,32,100,111,92,110,32,32,32,32,32,32,32,32,47,47,32,97,110,121,32,110,101,99,101,115,115,97,114,121,32,115,101,116,117,112,32,105,110,32,97,32,112,114,101,100,105,99,116,97,98,108,101,32,119,97,121,46,32,84,104,105,115,32,112,114,101,100,105,99,116,97,98,105,108,105,116,121,92,110,32,32,32,32,32,32,32,32,47,47,32,105,115,32,119,104,121,32,116,104,101,32,80,114,111,109,105,115,101,32,99,111,110,115,116,114,117,99,116,111,114,32,115,121,110,99,104,114,111,110,111,117,115,108,121,32,105,110,118,111,107,101,115,32,105,116,115,92,110,32,32,32,32,32,32,32,32,47,47,32,101,120,101,99,117,116,111,114,32,99,97,108,108,98,97,99,107,44,32,97,110,100,32,119,104,121,32,97,115,121,110,99,32,102,117,110,99,116,105,111,110,115,32,115,121,110,99,104,114,111,110,111,117,115,108,121,92,110,32,32,32,32,32,32,32,32,47,47,32,101,120,101,99,117,116,101,32,99,111,100,101,32,98,101,102,111,114,101,32,116,104,101,32,102,105,114,115,116,32,97,119,97,105,116,46,32,83,105,110,99,101,32,119,101,32,105,109,112,108,101,109,101,110,116,32,115,105,109,112,108,101,92,110,32,32,32,32,32,32,32,32,47,47,32,97,115,121,110,99,32,102,117,110,99,116,105,111,110,115,32,105,110,32,116,101,114,109,115,32,111,102,32,97,115,121,110,99,32,103,101,110,101,114,97,116,111,114,115,44,32,105,116,32,105,115,32,101,115,112,101,99,105,97,108,108,121,92,110,32,32,32,32,32,32,32,32,47,47,32,105,109,112,111,114,116,97,110,116,32,116,111,32,103,101,116,32,116,104,105,115,32,114,105,103,104,116,44,32,101,118,101,110,32,116,104,111,117,103,104,32,105,116,32,114,101,113,117,105,114,101,115,32,99,97,114,101,46,92,110,32,32,32,32,32,32,32,32,112,114,101,118,105,111,117,115,80,114,111,109,105,115,101,32,63,32,112,114,101,118,105,111,117,115,80,114,111,109,105,115,101,46,116,104,101,110,40,92,110,32,32,32,32,32,32,32,32,32,32,99,97,108,108,73,110,118,111,107,101,87,105,116,104,77,101,116,104,111,100,65,110,100,65,114,103,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,65,118,111,105,100,32,112,114,111,112,97,103,97,116,105,110,103,32,102,97,105,108,117,114,101,115,32,116,111,32,80,114,111,109,105,115,101,115,32,114,101,116,117,114,110,101,100,32,98,121,32,108,97,116,101,114,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,105,110,118,111,99,97,116,105,111,110,115,32,111,102,32,116,104,101,32,105,116,101,114,97,116,111,114,46,92,110,32,32,32,32,32,32,32,32,32,32,99,97,108,108,73,110,118,111,107,101,87,105,116,104,77,101,116,104,111,100,65,110,100,65,114,103,92,110,32,32,32,32,32,32,32,32,41,32,58,32,99,97,108,108,73,110,118,111,107,101,87,105,116,104,77,101,116,104,111,100,65,110,100,65,114,103,40,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,68,101,102,105,110,101,32,116,104,101,32,117,110,105,102,105,101,100,32,104,101,108,112,101,114,32,109,101,116,104,111,100,32,116,104,97,116,32,105,115,32,117,115,101,100,32,116,111,32,105,109,112,108,101,109,101,110,116,32,46,110,101,120,116,44,92,110,32,32,32,32,47,47,32,46,116,104,114,111,119,44,32,97,110,100,32,46,114,101,116,117,114,110,32,40,115,101,101,32,100,101,102,105,110,101,73,116,101,114,97,116,111,114,77,101,116,104,111,100,115,41,46,92,110,32,32,32,32,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,104,105,115,44,32,92,34,95,105,110,118,111,107,101,92,34,44,32,123,32,118,97,108,117,101,58,32,101,110,113,117,101,117,101,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,100,101,102,105,110,101,73,116,101,114,97,116,111,114,77,101,116,104,111,100,115,40,65,115,121,110,99,73,116,101,114,97,116,111,114,46,112,114,111,116,111,116,121,112,101,41,59,92,110,32,32,100,101,102,105,110,101,40,65,115,121,110,99,73,116,101,114,97,116,111,114,46,112,114,111,116,111,116,121,112,101,44,32,97,115,121,110,99,73,116,101,114,97,116,111,114,83,121,109,98,111,108,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,41,59,92,110,32,32,101,120,112,111,114,116,115,46,65,115,121,110,99,73,116,101,114,97,116,111,114,32,61,32,65,115,121,110,99,73,116,101,114,97,116,111,114,59,92,110,92,110,32,32,47,47,32,78,111,116,101,32,116,104,97,116,32,115,105,109,112,108,101,32,97,115,121,110,99,32,102,117,110,99,116,105,111,110,115,32,97,114,101,32,105,109,112,108,101,109,101,110,116,101,100,32,111,110,32,116,111,112,32,111,102,92,110,32,32,47,47,32,65,115,121,110,99,73,116,101,114,97,116,111,114,32,111,98,106,101,99,116,115,59,32,116,104,101,121,32,106,117,115,116,32,114,101,116,117,114,110,32,97,32,80,114,111,109,105,115,101,32,102,111,114,32,116,104,101,32,118,97,108,117,101,32,111,102,92,110,32,32,47,47,32,116,104,101,32,102,105,110,97,108,32,114,101,115,117,108,116,32,112,114,111,100,117,99,101,100,32,98,121,32,116,104,101,32,105,116,101,114,97,116,111,114,46,92,110,32,32,101,120,112,111,114,116,115,46,97,115,121,110,99,32,61,32,102,117,110,99,116,105,111,110,40,105,110,110,101,114,70,110,44,32,111,117,116,101,114,70,110,44,32,115,101,108,102,44,32,116,114,121,76,111,99,115,76,105,115,116,44,32,80,114,111,109,105,115,101,73,109,112,108,41,32,123,92,110,32,32,32,32,105,102,32,40,80,114,111,109,105,115,101,73,109,112,108,32,61,61,61,32,118,111,105,100,32,48,41,32,80,114,111,109,105,115,101,73,109,112,108,32,61,32,80,114,111,109,105,115,101,59,92,110,92,110,32,32,32,32,118,97,114,32,105,116,101,114,32,61,32,110,101,119,32,65,115,121,110,99,73,116,101,114,97,116,111,114,40,92,110,32,32,32,32,32,32,119,114,97,112,40,105,110,110,101,114,70,110,44,32,111,117,116,101,114,70,110,44,32,115,101,108,102,44,32,116,114,121,76,111,99,115,76,105,115,116,41,44,92,110,32,32,32,32,32,32,80,114,111,109,105,115,101,73,109,112,108,92,110,32,32,32,32,41,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,101,120,112,111,114,116,115,46,105,115,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,40,111,117,116,101,114,70,110,41,92,110,32,32,32,32,32,32,63,32,105,116,101,114,32,47,47,32,73,102,32,111,117,116,101,114,70,110,32,105,115,32,97,32,103,101,110,101,114,97,116,111,114,44,32,114,101,116,117,114,110,32,116,104,101,32,102,117,108,108,32,105,116,101,114,97,116,111,114,46,92,110,32,32,32,32,32,32,58,32,105,116,101,114,46,110,101,120,116,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,46,100,111,110,101,32,63,32,114,101,115,117,108,116,46,118,97,108,117,101,32,58,32,105,116,101,114,46,110,101,120,116,40,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,109,97,107,101,73,110,118,111,107,101,77,101,116,104,111,100,40,105,110,110,101,114,70,110,44,32,115,101,108,102,44,32,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,97,116,101,32,61,32,71,101,110,83,116,97,116,101,83,117,115,112,101,110,100,101,100,83,116,97,114,116,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,40,109,101,116,104,111,100,44,32,97,114,103,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,116,101,32,61,61,61,32,71,101,110,83,116,97,116,101,69,120,101,99,117,116,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,71,101,110,101,114,97,116,111,114,32,105,115,32,97,108,114,101,97,100,121,32,114,117,110,110,105,110,103,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,116,101,32,61,61,61,32,71,101,110,83,116,97,116,101,67,111,109,112,108,101,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,109,101,116,104,111,100,32,61,61,61,32,92,34,116,104,114,111,119,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,97,114,103,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,66,101,32,102,111,114,103,105,118,105,110,103,44,32,112,101,114,32,50,53,46,51,46,51,46,51,46,51,32,111,102,32,116,104,101,32,115,112,101,99,58,92,110,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,112,101,111,112,108,101,46,109,111,122,105,108,108,97,46,111,114,103,47,126,106,111,114,101,110,100,111,114,102,102,47,101,115,54,45,100,114,97,102,116,46,104,116,109,108,35,115,101,99,45,103,101,110,101,114,97,116,111,114,114,101,115,117,109,101,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,111,110,101,82,101,115,117,108,116,40,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,61,32,109,101,116,104,111,100,59,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,103,32,61,32,97,114,103,59,92,110,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,101,108,101,103,97,116,101,32,61,32,99,111,110,116,101,120,116,46,100,101,108,101,103,97,116,101,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,101,108,101,103,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,101,108,101,103,97,116,101,82,101,115,117,108,116,32,61,32,109,97,121,98,101,73,110,118,111,107,101,68,101,108,101,103,97,116,101,40,100,101,108,101,103,97,116,101,44,32,99,111,110,116,101,120,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,101,108,101,103,97,116,101,82,101,115,117,108,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,101,108,101,103,97,116,101,82,101,115,117,108,116,32,61,61,61,32,67,111,110,116,105,110,117,101,83,101,110,116,105,110,101,108,41,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,108,101,103,97,116,101,82,101,115,117,108,116,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,61,61,61,32,92,34,110,101,120,116,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,83,101,116,116,105,110,103,32,99,111,110,116,101,120,116,46,95,115,101,110,116,32,102,111,114,32,108,101,103,97,99,121,32,115,117,112,112,111,114,116,32,111,102,32,66,97,98,101,108,39,115,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,102,117,110,99,116,105,111,110,46,115,101,110,116,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,115,101,110,116,32,61,32,99,111,110,116,101,120,116,46,95,115,101,110,116,32,61,32,99,111,110,116,101,120,116,46,97,114,103,59,92,110,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,61,61,61,32,92,34,116,104,114,111,119,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,116,97,116,101,32,61,61,61,32,71,101,110,83,116,97,116,101,83,117,115,112,101,110,100,101,100,83,116,97,114,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,101,32,61,32,71,101,110,83,116,97,116,101,67,111,109,112,108,101,116,101,100,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,99,111,110,116,101,120,116,46,97,114,103,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,100,105,115,112,97,116,99,104,69,120,99,101,112,116,105,111,110,40,99,111,110,116,101,120,116,46,97,114,103,41,59,92,110,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,61,61,61,32,92,34,114,101,116,117,114,110,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,98,114,117,112,116,40,92,34,114,101,116,117,114,110,92,34,44,32,99,111,110,116,101,120,116,46,97,114,103,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,115,116,97,116,101,32,61,32,71,101,110,83,116,97,116,101,69,120,101,99,117,116,105,110,103,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,99,111,114,100,32,61,32,116,114,121,67,97,116,99,104,40,105,110,110,101,114,70,110,44,32,115,101,108,102,44,32,99,111,110,116,101,120,116,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,101,99,111,114,100,46,116,121,112,101,32,61,61,61,32,92,34,110,111,114,109,97,108,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,97,110,32,101,120,99,101,112,116,105,111,110,32,105,115,32,116,104,114,111,119,110,32,102,114,111,109,32,105,110,110,101,114,70,110,44,32,119,101,32,108,101,97,118,101,32,115,116,97,116,101,32,61,61,61,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,71,101,110,83,116,97,116,101,69,120,101,99,117,116,105,110,103,32,97,110,100,32,108,111,111,112,32,98,97,99,107,32,102,111,114,32,97,110,111,116,104,101,114,32,105,110,118,111,99,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,101,32,61,32,99,111,110,116,101,120,116,46,100,111,110,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,71,101,110,83,116,97,116,101,67,111,109,112,108,101,116,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,71,101,110,83,116,97,116,101,83,117,115,112,101,110,100,101,100,89,105,101,108,100,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,114,101,99,111,114,100,46,97,114,103,32,61,61,61,32,67,111,110,116,105,110,117,101,83,101,110,116,105,110,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,114,101,99,111,114,100,46,97,114,103,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,110,101,58,32,99,111,110,116,101,120,116,46,100,111,110,101,92,110,32,32,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,114,101,99,111,114,100,46,116,121,112,101,32,61,61,61,32,92,34,116,104,114,111,119,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,101,32,61,32,71,101,110,83,116,97,116,101,67,111,109,112,108,101,116,101,100,59,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,68,105,115,112,97,116,99,104,32,116,104,101,32,101,120,99,101,112,116,105,111,110,32,98,121,32,108,111,111,112,105,110,103,32,98,97,99,107,32,97,114,111,117,110,100,32,116,111,32,116,104,101,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,99,111,110,116,101,120,116,46,100,105,115,112,97,116,99,104,69,120,99,101,112,116,105,111,110,40,99,111,110,116,101,120,116,46,97,114,103,41,32,99,97,108,108,32,97,98,111,118,101,46,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,61,32,92,34,116,104,114,111,119,92,34,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,103,32,61,32,114,101,99,111,114,100,46,97,114,103,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,67,97,108,108,32,100,101,108,101,103,97,116,101,46,105,116,101,114,97,116,111,114,91,99,111,110,116,101,120,116,46,109,101,116,104,111,100,93,40,99,111,110,116,101,120,116,46,97,114,103,41,32,97,110,100,32,104,97,110,100,108,101,32,116,104,101,92,110,32,32,47,47,32,114,101,115,117,108,116,44,32,101,105,116,104,101,114,32,98,121,32,114,101,116,117,114,110,105,110,103,32,97,32,123,32,118,97,108,117,101,44,32,100,111,110,101,32,125,32,114,101,115,117,108,116,32,102,114,111,109,32,116,104,101,92,110,32,32,47,47,32,100,101,108,101,103,97,116,101,32,105,116,101,114,97,116,111,114,44,32,111,114,32,98,121,32,109,111,100,105,102,121,105,110,103,32,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,97,110,100,32,99,111,110,116,101,120,116,46,97,114,103,44,92,110,32,32,47,47,32,115,101,116,116,105,110,103,32,99,111,110,116,101,120,116,46,100,101,108,101,103,97,116,101,32,116,111,32,110,117,108,108,44,32,97,110,100,32,114,101,116,117,114,110,105,110,103,32,116,104,101,32,67,111,110,116,105,110,117,101,83,101,110,116,105,110,101,108,46,92,110,32,32,102,117,110,99,116,105,111,110,32,109,97,121,98,101,73,110,118,111,107,101,68,101,108,101,103,97,116,101,40,100,101,108,101,103,97,116,101,44,32,99,111,110,116,101,120,116,41,32,123,92,110,32,32,32,32,118,97,114,32,109,101,116,104,111,100,78,97,109,101,32,61,32,99,111,110,116,101,120,116,46,109,101,116,104,111,100,59,92,110,32,32,32,32,118,97,114,32,109,101,116,104,111,100,32,61,32,100,101,108,101,103,97,116,101,46,105,116,101,114,97,116,111,114,91,109,101,116,104,111,100,78,97,109,101,93,59,92,110,32,32,32,32,105,102,32,40,109,101,116,104,111,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,47,47,32,65,32,46,116,104,114,111,119,32,111,114,32,46,114,101,116,117,114,110,32,119,104,101,110,32,116,104,101,32,100,101,108,101,103,97,116,101,32,105,116,101,114,97,116,111,114,32,104,97,115,32,110,111,32,46,116,104,114,111,119,92,110,32,32,32,32,32,32,47,47,32,109,101,116,104,111,100,44,32,111,114,32,97,32,109,105,115,115,105,110,103,32,46,110,101,120,116,32,109,101,104,116,111,100,44,32,97,108,119,97,121,115,32,116,101,114,109,105,110,97,116,101,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,121,105,101,108,100,42,32,108,111,111,112,46,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,100,101,108,101,103,97,116,101,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,47,47,32,78,111,116,101,58,32,91,92,34,114,101,116,117,114,110,92,34,93,32,109,117,115,116,32,98,101,32,117,115,101,100,32,102,111,114,32,69,83,51,32,112,97,114,115,105,110,103,32,99,111,109,112,97,116,105,98,105,108,105,116,121,46,92,110,32,32,32,32,32,32,105,102,32,40,109,101,116,104,111,100,78,97,109,101,32,61,61,61,32,92,34,116,104,114,111,119,92,34,32,38,38,32,100,101,108,101,103,97,116,101,46,105,116,101,114,97,116,111,114,91,92,34,114,101,116,117,114,110,92,34,93,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,100,101,108,101,103,97,116,101,32,105,116,101,114,97,116,111,114,32,104,97,115,32,97,32,114,101,116,117,114,110,32,109,101,116,104,111,100,44,32,103,105,118,101,32,105,116,32,97,92,110,32,32,32,32,32,32,32,32,47,47,32,99,104,97,110,99,101,32,116,111,32,99,108,101,97,110,32,117,112,46,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,61,32,92,34,114,101,116,117,114,110,92,34,59,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,103,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,109,97,121,98,101,73,110,118,111,107,101,68,101,108,101,103,97,116,101,40,100,101,108,101,103,97,116,101,44,32,99,111,110,116,101,120,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,61,61,61,32,92,34,116,104,114,111,119,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,109,97,121,98,101,73,110,118,111,107,101,68,101,108,101,103,97,116,101,40,99,111,110,116,101,120,116,41,32,99,104,97,110,103,101,100,32,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,102,114,111,109,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,92,34,114,101,116,117,114,110,92,34,32,116,111,32,92,34,116,104,114,111,119,92,34,44,32,108,101,116,32,116,104,97,116,32,111,118,101,114,114,105,100,101,32,116,104,101,32,84,121,112,101,69,114,114,111,114,32,98,101,108,111,119,46,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,67,111,110,116,105,110,117,101,83,101,110,116,105,110,101,108,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,109,101,116,104,111,100,78,97,109,101,32,33,61,61,32,92,34,114,101,116,117,114,110,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,61,32,92,34,116,104,114,111,119,92,34,59,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,103,32,61,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,110,32,32,32,32,32,32,32,32,32,32,92,34,84,104,101,32,105,116,101,114,97,116,111,114,32,100,111,101,115,32,110,111,116,32,112,114,111,118,105,100,101,32,97,32,39,92,34,32,43,32,109,101,116,104,111,100,78,97,109,101,32,43,32,92,34,39,32,109,101,116,104,111,100,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,67,111,110,116,105,110,117,101,83,101,110,116,105,110,101,108,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,114,101,99,111,114,100,32,61,32,116,114,121,67,97,116,99,104,40,109,101,116,104,111,100,44,32,100,101,108,101,103,97,116,101,46,105,116,101,114,97,116,111,114,44,32,99,111,110,116,101,120,116,46,97,114,103,41,59,92,110,92,110,32,32,32,32,105,102,32,40,114,101,99,111,114,100,46,116,121,112,101,32,61,61,61,32,92,34,116,104,114,111,119,92,34,41,32,123,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,61,32,92,34,116,104,114,111,119,92,34,59,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,103,32,61,32,114,101,99,111,114,100,46,97,114,103,59,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,100,101,108,101,103,97,116,101,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,67,111,110,116,105,110,117,101,83,101,110,116,105,110,101,108,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,105,110,102,111,32,61,32,114,101,99,111,114,100,46,97,114,103,59,92,110,92,110,32,32,32,32,105,102,32,40,33,32,105,110,102,111,41,32,123,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,61,32,92,34,116,104,114,111,119,92,34,59,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,103,32,61,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,105,116,101,114,97,116,111,114,32,114,101,115,117,108,116,32,105,115,32,110,111,116,32,97,110,32,111,98,106,101,99,116,92,34,41,59,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,100,101,108,101,103,97,116,101,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,67,111,110,116,105,110,117,101,83,101,110,116,105,110,101,108,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,105,110,102,111,46,100,111,110,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,65,115,115,105,103,110,32,116,104,101,32,114,101,115,117,108,116,32,111,102,32,116,104,101,32,102,105,110,105,115,104,101,100,32,100,101,108,101,103,97,116,101,32,116,111,32,116,104,101,32,116,101,109,112,111,114,97,114,121,92,110,32,32,32,32,32,32,47,47,32,118,97,114,105,97,98,108,101,32,115,112,101,99,105,102,105,101,100,32,98,121,32,100,101,108,101,103,97,116,101,46,114,101,115,117,108,116,78,97,109,101,32,40,115,101,101,32,100,101,108,101,103,97,116,101,89,105,101,108,100,41,46,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,91,100,101,108,101,103,97,116,101,46,114,101,115,117,108,116,78,97,109,101,93,32,61,32,105,110,102,111,46,118,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,47,47,32,82,101,115,117,109,101,32,101,120,101,99,117,116,105,111,110,32,97,116,32,116,104,101,32,100,101,115,105,114,101,100,32,108,111,99,97,116,105,111,110,32,40,115,101,101,32,100,101,108,101,103,97,116,101,89,105,101,108,100,41,46,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,46,110,101,120,116,32,61,32,100,101,108,101,103,97,116,101,46,110,101,120,116,76,111,99,59,92,110,92,110,32,32,32,32,32,32,47,47,32,73,102,32,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,119,97,115,32,92,34,116,104,114,111,119,92,34,32,98,117,116,32,116,104,101,32,100,101,108,101,103,97,116,101,32,104,97,110,100,108,101,100,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,101,120,99,101,112,116,105,111,110,44,32,108,101,116,32,116,104,101,32,111,117,116,101,114,32,103,101,110,101,114,97,116,111,114,32,112,114,111,99,101,101,100,32,110,111,114,109,97,108,108,121,46,32,73,102,92,110,32,32,32,32,32,32,47,47,32,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,119,97,115,32,92,34,110,101,120,116,92,34,44,32,102,111,114,103,101,116,32,99,111,110,116,101,120,116,46,97,114,103,32,115,105,110,99,101,32,105,116,32,104,97,115,32,98,101,101,110,92,110,32,32,32,32,32,32,47,47,32,92,34,99,111,110,115,117,109,101,100,92,34,32,98,121,32,116,104,101,32,100,101,108,101,103,97,116,101,32,105,116,101,114,97,116,111,114,46,32,73,102,32,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,119,97,115,92,110,32,32,32,32,32,32,47,47,32,92,34,114,101,116,117,114,110,92,34,44,32,97,108,108,111,119,32,116,104,101,32,111,114,105,103,105,110,97,108,32,46,114,101,116,117,114,110,32,99,97,108,108,32,116,111,32,99,111,110,116,105,110,117,101,32,105,110,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,111,117,116,101,114,32,103,101,110,101,114,97,116,111,114,46,92,110,32,32,32,32,32,32,105,102,32,40,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,33,61,61,32,92,34,114,101,116,117,114,110,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,61,32,92,34,110,101,120,116,92,34,59,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,103,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,82,101,45,121,105,101,108,100,32,116,104,101,32,114,101,115,117,108,116,32,114,101,116,117,114,110,101,100,32,98,121,32,116,104,101,32,100,101,108,101,103,97,116,101,32,109,101,116,104,111,100,46,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,102,111,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,84,104,101,32,100,101,108,101,103,97,116,101,32,105,116,101,114,97,116,111,114,32,105,115,32,102,105,110,105,115,104,101,100,44,32,115,111,32,102,111,114,103,101,116,32,105,116,32,97,110,100,32,99,111,110,116,105,110,117,101,32,119,105,116,104,92,110,32,32,32,32,47,47,32,116,104,101,32,111,117,116,101,114,32,103,101,110,101,114,97,116,111,114,46,92,110,32,32,32,32,99,111,110,116,101,120,116,46,100,101,108,101,103,97,116,101,32,61,32,110,117,108,108,59,92,110,32,32,32,32,114,101,116,117,114,110,32,67,111,110,116,105,110,117,101,83,101,110,116,105,110,101,108,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,68,101,102,105,110,101,32,71,101,110,101,114,97,116,111,114,46,112,114,111,116,111,116,121,112,101,46,123,110,101,120,116,44,116,104,114,111,119,44,114,101,116,117,114,110,125,32,105,110,32,116,101,114,109,115,32,111,102,32,116,104,101,92,110,32,32,47,47,32,117,110,105,102,105,101,100,32,46,95,105,110,118,111,107,101,32,104,101,108,112,101,114,32,109,101,116,104,111,100,46,92,110,32,32,100,101,102,105,110,101,73,116,101,114,97,116,111,114,77,101,116,104,111,100,115,40,71,112,41,59,92,110,92,110,32,32,100,101,102,105,110,101,40,71,112,44,32,116,111,83,116,114,105,110,103,84,97,103,83,121,109,98,111,108,44,32,92,34,71,101,110,101,114,97,116,111,114,92,34,41,59,92,110,92,110,32,32,47,47,32,65,32,71,101,110,101,114,97,116,111,114,32,115,104,111,117,108,100,32,97,108,119,97,121,115,32,114,101,116,117,114,110,32,105,116,115,101,108,102,32,97,115,32,116,104,101,32,105,116,101,114,97,116,111,114,32,111,98,106,101,99,116,32,119,104,101,110,32,116,104,101,92,110,32,32,47,47,32,64,64,105,116,101,114,97,116,111,114,32,102,117,110,99,116,105,111,110,32,105,115,32,99,97,108,108,101,100,32,111,110,32,105,116,46,32,83,111,109,101,32,98,114,111,119,115,101,114,115,39,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,115,32,111,102,32,116,104,101,92,110,32,32,47,47,32,105,116,101,114,97,116,111,114,32,112,114,111,116,111,116,121,112,101,32,99,104,97,105,110,32,105,110,99,111,114,114,101,99,116,108,121,32,105,109,112,108,101,109,101,110,116,32,116,104,105,115,44,32,99,97,117,115,105,110,103,32,116,104,101,32,71,101,110,101,114,97,116,111,114,92,110,32,32,47,47,32,111,98,106,101,99,116,32,116,111,32,110,111,116,32,98,101,32,114,101,116,117,114,110,101,100,32,102,114,111,109,32,116,104,105,115,32,99,97,108,108,46,32,84,104,105,115,32,101,110,115,117,114,101,115,32,116,104,97,116,32,100,111,101,115,110,39,116,32,104,97,112,112,101,110,46,92,110,32,32,47,47,32,83,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,102,97,99,101,98,111,111,107,47,114,101,103,101,110,101,114,97,116,111,114,47,105,115,115,117,101,115,47,50,55,52,32,102,111,114,32,109,111,114,101,32,100,101,116,97,105,108,115,46,92,110,32,32,100,101,102,105,110,101,40,71,112,44,32,105,116,101,114,97,116,111,114,83,121,109,98,111,108,44,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,125,41,59,92,110,92,110,32,32,100,101,102,105,110,101,40,71,112,44,32,92,34,116,111,83,116,114,105,110,103,92,34,44,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,92,34,91,111,98,106,101,99,116,32,71,101,110,101,114,97,116,111,114,93,92,34,59,92,110,32,32,125,41,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,117,115,104,84,114,121,69,110,116,114,121,40,108,111,99,115,41,32,123,92,110,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,123,32,116,114,121,76,111,99,58,32,108,111,99,115,91,48,93,32,125,59,92,110,92,110,32,32,32,32,105,102,32,40,49,32,105,110,32,108,111,99,115,41,32,123,92,110,32,32,32,32,32,32,101,110,116,114,121,46,99,97,116,99,104,76,111,99,32,61,32,108,111,99,115,91,49,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,50,32,105,110,32,108,111,99,115,41,32,123,92,110,32,32,32,32,32,32,101,110,116,114,121,46,102,105,110,97,108,108,121,76,111,99,32,61,32,108,111,99,115,91,50,93,59,92,110,32,32,32,32,32,32,101,110,116,114,121,46,97,102,116,101,114,76,111,99,32,61,32,108,111,99,115,91,51,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,46,112,117,115,104,40,101,110,116,114,121,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,115,101,116,84,114,121,69,110,116,114,121,40,101,110,116,114,121,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,99,111,114,100,32,61,32,101,110,116,114,121,46,99,111,109,112,108,101,116,105,111,110,32,124,124,32,123,125,59,92,110,32,32,32,32,114,101,99,111,114,100,46,116,121,112,101,32,61,32,92,34,110,111,114,109,97,108,92,34,59,92,110,32,32,32,32,100,101,108,101,116,101,32,114,101,99,111,114,100,46,97,114,103,59,92,110,32,32,32,32,101,110,116,114,121,46,99,111,109,112,108,101,116,105,111,110,32,61,32,114,101,99,111,114,100,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,67,111,110,116,101,120,116,40,116,114,121,76,111,99,115,76,105,115,116,41,32,123,92,110,32,32,32,32,47,47,32,84,104,101,32,114,111,111,116,32,101,110,116,114,121,32,111,98,106,101,99,116,32,40,101,102,102,101,99,116,105,118,101,108,121,32,97,32,116,114,121,32,115,116,97,116,101,109,101,110,116,32,119,105,116,104,111,117,116,32,97,32,99,97,116,99,104,92,110,32,32,32,32,47,47,32,111,114,32,97,32,102,105,110,97,108,108,121,32,98,108,111,99,107,41,32,103,105,118,101,115,32,117,115,32,97,32,112,108,97,99,101,32,116,111,32,115,116,111,114,101,32,118,97,108,117,101,115,32,116,104,114,111,119,110,32,102,114,111,109,92,110,32,32,32,32,47,47,32,108,111,99,97,116,105,111,110,115,32,119,104,101,114,101,32,116,104,101,114,101,32,105,115,32,110,111,32,101,110,99,108,111,115,105,110,103,32,116,114,121,32,115,116,97,116,101,109,101,110,116,46,92,110,32,32,32,32,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,32,61,32,91,123,32,116,114,121,76,111,99,58,32,92,34,114,111,111,116,92,34,32,125,93,59,92,110,32,32,32,32,116,114,121,76,111,99,115,76,105,115,116,46,102,111,114,69,97,99,104,40,112,117,115,104,84,114,121,69,110,116,114,121,44,32,116,104,105,115,41,59,92,110,32,32,32,32,116,104,105,115,46,114,101,115,101,116,40,116,114,117,101,41,59,92,110,32,32,125,92,110,92,110,32,32,101,120,112,111,114,116,115,46,107,101,121,115,32,61,32,102,117,110,99,116,105,111,110,40,118,97,108,41,32,123,92,110,32,32,32,32,118,97,114,32,111,98,106,101,99,116,32,61,32,79,98,106,101,99,116,40,118,97,108,41,59,92,110,32,32,32,32,118,97,114,32,107,101,121,115,32,61,32,91,93,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,107,101,121,115,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,107,101,121,115,46,114,101,118,101,114,115,101,40,41,59,92,110,92,110,32,32,32,32,47,47,32,82,97,116,104,101,114,32,116,104,97,110,32,114,101,116,117,114,110,105,110,103,32,97,110,32,111,98,106,101,99,116,32,119,105,116,104,32,97,32,110,101,120,116,32,109,101,116,104,111,100,44,32,119,101,32,107,101,101,112,92,110,32,32,32,32,47,47,32,116,104,105,110,103,115,32,115,105,109,112,108,101,32,97,110,100,32,114,101,116,117,114,110,32,116,104,101,32,110,101,120,116,32,102,117,110,99,116,105,111,110,32,105,116,115,101,108,102,46,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,110,101,120,116,40,41,32,123,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,107,101,121,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,107,101,121,115,46,112,111,112,40,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,110,101,120,116,46,118,97,108,117,101,32,61,32,107,101,121,59,92,110,32,32,32,32,32,32,32,32,32,32,110,101,120,116,46,100,111,110,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,84,111,32,97,118,111,105,100,32,99,114,101,97,116,105,110,103,32,97,110,32,97,100,100,105,116,105,111,110,97,108,32,111,98,106,101,99,116,44,32,119,101,32,106,117,115,116,32,104,97,110,103,32,116,104,101,32,46,118,97,108,117,101,92,110,32,32,32,32,32,32,47,47,32,97,110,100,32,46,100,111,110,101,32,112,114,111,112,101,114,116,105,101,115,32,111,102,102,32,116,104,101,32,110,101,120,116,32,102,117,110,99,116,105,111,110,32,111,98,106,101,99,116,32,105,116,115,101,108,102,46,32,84,104,105,115,92,110,32,32,32,32,32,32,47,47,32,97,108,115,111,32,101,110,115,117,114,101,115,32,116,104,97,116,32,116,104,101,32,109,105,110,105,102,105,101,114,32,119,105,108,108,32,110,111,116,32,97,110,111,110,121,109,105,122,101,32,116,104,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,110,101,120,116,46,100,111,110,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,59,92,110,32,32,32,32,125,59,92,110,32,32,125,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,118,97,108,117,101,115,40,105,116,101,114,97,98,108,101,41,32,123,92,110,32,32,32,32,105,102,32,40,105,116,101,114,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,114,97,116,111,114,77,101,116,104,111,100,32,61,32,105,116,101,114,97,98,108,101,91,105,116,101,114,97,116,111,114,83,121,109,98,111,108,93,59,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,114,97,116,111,114,77,101,116,104,111,100,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,114,97,116,111,114,77,101,116,104,111,100,46,99,97,108,108,40,105,116,101,114,97,98,108,101,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,105,116,101,114,97,98,108,101,46,110,101,120,116,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,114,97,98,108,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,78,97,78,40,105,116,101,114,97,98,108,101,46,108,101,110,103,116,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,105,32,61,32,45,49,44,32,110,101,120,116,32,61,32,102,117,110,99,116,105,111,110,32,110,101,120,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,43,43,105,32,60,32,105,116,101,114,97,98,108,101,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,79,119,110,46,99,97,108,108,40,105,116,101,114,97,98,108,101,44,32,105,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,46,118,97,108,117,101,32,61,32,105,116,101,114,97,98,108,101,91,105,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,46,100,111,110,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,110,101,120,116,46,118,97,108,117,101,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,32,32,110,101,120,116,46,100,111,110,101,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,46,110,101,120,116,32,61,32,110,101,120,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,82,101,116,117,114,110,32,97,110,32,105,116,101,114,97,116,111,114,32,119,105,116,104,32,110,111,32,118,97,108,117,101,115,46,92,110,32,32,32,32,114,101,116,117,114,110,32,123,32,110,101,120,116,58,32,100,111,110,101,82,101,115,117,108,116,32,125,59,92,110,32,32,125,92,110,32,32,101,120,112,111,114,116,115,46,118,97,108,117,101,115,32,61,32,118,97,108,117,101,115,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,100,111,110,101,82,101,115,117,108,116,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,32,118,97,108,117,101,58,32,117,110,100,101,102,105,110,101,100,44,32,100,111,110,101,58,32,116,114,117,101,32,125,59,92,110,32,32,125,92,110,92,110,32,32,67,111,110,116,101,120,116,46,112,114,111,116,111,116,121,112,101,32,61,32,123,92,110,32,32,32,32,99,111,110,115,116,114,117,99,116,111,114,58,32,67,111,110,116,101,120,116,44,92,110,92,110,32,32,32,32,114,101,115,101,116,58,32,102,117,110,99,116,105,111,110,40,115,107,105,112,84,101,109,112,82,101,115,101,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,112,114,101,118,32,61,32,48,59,92,110,32,32,32,32,32,32,116,104,105,115,46,110,101,120,116,32,61,32,48,59,92,110,32,32,32,32,32,32,47,47,32,82,101,115,101,116,116,105,110,103,32,99,111,110,116,101,120,116,46,95,115,101,110,116,32,102,111,114,32,108,101,103,97,99,121,32,115,117,112,112,111,114,116,32,111,102,32,66,97,98,101,108,39,115,92,110,32,32,32,32,32,32,47,47,32,102,117,110,99,116,105,111,110,46,115,101,110,116,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,110,116,32,61,32,116,104,105,115,46,95,115,101,110,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,116,104,105,115,46,100,111,110,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,100,101,108,101,103,97,116,101,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,109,101,116,104,111,100,32,61,32,92,34,110,101,120,116,92,34,59,92,110,32,32,32,32,32,32,116,104,105,115,46,97,114,103,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,46,102,111,114,69,97,99,104,40,114,101,115,101,116,84,114,121,69,110,116,114,121,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,115,107,105,112,84,101,109,112,82,101,115,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,110,97,109,101,32,105,110,32,116,104,105,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,116,32,115,117,114,101,32,97,98,111,117,116,32,116,104,101,32,111,112,116,105,109,97,108,32,111,114,100,101,114,32,111,102,32,116,104,101,115,101,32,99,111,110,100,105,116,105,111,110,115,58,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,97,109,101,46,99,104,97,114,65,116,40,48,41,32,61,61,61,32,92,34,116,92,34,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,97,115,79,119,110,46,99,97,108,108,40,116,104,105,115,44,32,110,97,109,101,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,33,105,115,78,97,78,40,43,110,97,109,101,46,115,108,105,99,101,40,49,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,91,110,97,109,101,93,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,115,116,111,112,58,32,102,117,110,99,116,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,100,111,110,101,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,111,111,116,69,110,116,114,121,32,61,32,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,91,48,93,59,92,110,32,32,32,32,32,32,118,97,114,32,114,111,111,116,82,101,99,111,114,100,32,61,32,114,111,111,116,69,110,116,114,121,46,99,111,109,112,108,101,116,105,111,110,59,92,110,32,32,32,32,32,32,105,102,32,40,114,111,111,116,82,101,99,111,114,100,46,116,121,112,101,32,61,61,61,32,92,34,116,104,114,111,119,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,114,111,111,116,82,101,99,111,114,100,46,97,114,103,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,114,118,97,108,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,100,105,115,112,97,116,99,104,69,120,99,101,112,116,105,111,110,58,32,102,117,110,99,116,105,111,110,40,101,120,99,101,112,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,111,110,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,101,120,99,101,112,116,105,111,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,99,111,110,116,101,120,116,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,40,108,111,99,44,32,99,97,117,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,99,111,114,100,46,116,121,112,101,32,61,32,92,34,116,104,114,111,119,92,34,59,92,110,32,32,32,32,32,32,32,32,114,101,99,111,114,100,46,97,114,103,32,61,32,101,120,99,101,112,116,105,111,110,59,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,110,101,120,116,32,61,32,108,111,99,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,97,117,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,100,105,115,112,97,116,99,104,101,100,32,101,120,99,101,112,116,105,111,110,32,119,97,115,32,99,97,117,103,104,116,32,98,121,32,97,32,99,97,116,99,104,32,98,108,111,99,107,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,116,104,101,110,32,108,101,116,32,116,104,97,116,32,99,97,116,99,104,32,98,108,111,99,107,32,104,97,110,100,108,101,32,116,104,101,32,101,120,99,101,112,116,105,111,110,32,110,111,114,109,97,108,108,121,46,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,109,101,116,104,111,100,32,61,32,92,34,110,101,120,116,92,34,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,46,97,114,103,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,32,99,97,117,103,104,116,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,46,108,101,110,103,116,104,32,45,32,49,59,32,105,32,62,61,32,48,59,32,45,45,105,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,91,105,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,99,111,114,100,32,61,32,101,110,116,114,121,46,99,111,109,112,108,101,116,105,111,110,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,46,116,114,121,76,111,99,32,61,61,61,32,92,34,114,111,111,116,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,69,120,99,101,112,116,105,111,110,32,116,104,114,111,119,110,32,111,117,116,115,105,100,101,32,111,102,32,97,110,121,32,116,114,121,32,98,108,111,99,107,32,116,104,97,116,32,99,111,117,108,100,32,104,97,110,100,108,101,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,105,116,44,32,115,111,32,115,101,116,32,116,104,101,32,99,111,109,112,108,101,116,105,111,110,32,118,97,108,117,101,32,111,102,32,116,104,101,32,101,110,116,105,114,101,32,102,117,110,99,116,105,111,110,32,116,111,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,116,104,114,111,119,32,116,104,101,32,101,120,99,101,112,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,110,100,108,101,40,92,34,101,110,100,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,46,116,114,121,76,111,99,32,60,61,32,116,104,105,115,46,112,114,101,118,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,115,67,97,116,99,104,32,61,32,104,97,115,79,119,110,46,99,97,108,108,40,101,110,116,114,121,44,32,92,34,99,97,116,99,104,76,111,99,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,115,70,105,110,97,108,108,121,32,61,32,104,97,115,79,119,110,46,99,97,108,108,40,101,110,116,114,121,44,32,92,34,102,105,110,97,108,108,121,76,111,99,92,34,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,67,97,116,99,104,32,38,38,32,104,97,115,70,105,110,97,108,108,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,112,114,101,118,32,60,32,101,110,116,114,121,46,99,97,116,99,104,76,111,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,110,100,108,101,40,101,110,116,114,121,46,99,97,116,99,104,76,111,99,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,112,114,101,118,32,60,32,101,110,116,114,121,46,102,105,110,97,108,108,121,76,111,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,110,100,108,101,40,101,110,116,114,121,46,102,105,110,97,108,108,121,76,111,99,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,97,115,67,97,116,99,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,112,114,101,118,32,60,32,101,110,116,114,121,46,99,97,116,99,104,76,111,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,110,100,108,101,40,101,110,116,114,121,46,99,97,116,99,104,76,111,99,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,97,115,70,105,110,97,108,108,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,112,114,101,118,32,60,32,101,110,116,114,121,46,102,105,110,97,108,108,121,76,111,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,110,100,108,101,40,101,110,116,114,121,46,102,105,110,97,108,108,121,76,111,99,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,116,114,121,32,115,116,97,116,101,109,101,110,116,32,119,105,116,104,111,117,116,32,99,97,116,99,104,32,111,114,32,102,105,110,97,108,108,121,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,97,98,114,117,112,116,58,32,102,117,110,99,116,105,111,110,40,116,121,112,101,44,32,97,114,103,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,46,108,101,110,103,116,104,32,45,32,49,59,32,105,32,62,61,32,48,59,32,45,45,105,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,91,105,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,46,116,114,121,76,111,99,32,60,61,32,116,104,105,115,46,112,114,101,118,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,97,115,79,119,110,46,99,97,108,108,40,101,110,116,114,121,44,32,92,34,102,105,110,97,108,108,121,76,111,99,92,34,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,112,114,101,118,32,60,32,101,110,116,114,121,46,102,105,110,97,108,108,121,76,111,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,105,110,97,108,108,121,69,110,116,114,121,32,61,32,101,110,116,114,121,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,102,105,110,97,108,108,121,69,110,116,114,121,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,40,116,121,112,101,32,61,61,61,32,92,34,98,114,101,97,107,92,34,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,32,61,61,61,32,92,34,99,111,110,116,105,110,117,101,92,34,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,102,105,110,97,108,108,121,69,110,116,114,121,46,116,114,121,76,111,99,32,60,61,32,97,114,103,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,97,114,103,32,60,61,32,102,105,110,97,108,108,121,69,110,116,114,121,46,102,105,110,97,108,108,121,76,111,99,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,103,110,111,114,101,32,116,104,101,32,102,105,110,97,108,108,121,32,101,110,116,114,121,32,105,102,32,99,111,110,116,114,111,108,32,105,115,32,110,111,116,32,106,117,109,112,105,110,103,32,116,111,32,97,92,110,32,32,32,32,32,32,32,32,47,47,32,108,111,99,97,116,105,111,110,32,111,117,116,115,105,100,101,32,116,104,101,32,116,114,121,47,99,97,116,99,104,32,98,108,111,99,107,46,92,110,32,32,32,32,32,32,32,32,102,105,110,97,108,108,121,69,110,116,114,121,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,101,99,111,114,100,32,61,32,102,105,110,97,108,108,121,69,110,116,114,121,32,63,32,102,105,110,97,108,108,121,69,110,116,114,121,46,99,111,109,112,108,101,116,105,111,110,32,58,32,123,125,59,92,110,32,32,32,32,32,32,114,101,99,111,114,100,46,116,121,112,101,32,61,32,116,121,112,101,59,92,110,32,32,32,32,32,32,114,101,99,111,114,100,46,97,114,103,32,61,32,97,114,103,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,102,105,110,97,108,108,121,69,110,116,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,109,101,116,104,111,100,32,61,32,92,34,110,101,120,116,92,34,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,110,101,120,116,32,61,32,102,105,110,97,108,108,121,69,110,116,114,121,46,102,105,110,97,108,108,121,76,111,99,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,67,111,110,116,105,110,117,101,83,101,110,116,105,110,101,108,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,111,109,112,108,101,116,101,40,114,101,99,111,114,100,41,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,99,111,109,112,108,101,116,101,58,32,102,117,110,99,116,105,111,110,40,114,101,99,111,114,100,44,32,97,102,116,101,114,76,111,99,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,114,101,99,111,114,100,46,116,121,112,101,32,61,61,61,32,92,34,116,104,114,111,119,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,114,101,99,111,114,100,46,97,114,103,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,114,101,99,111,114,100,46,116,121,112,101,32,61,61,61,32,92,34,98,114,101,97,107,92,34,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,114,101,99,111,114,100,46,116,121,112,101,32,61,61,61,32,92,34,99,111,110,116,105,110,117,101,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,110,101,120,116,32,61,32,114,101,99,111,114,100,46,97,114,103,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,114,101,99,111,114,100,46,116,121,112,101,32,61,61,61,32,92,34,114,101,116,117,114,110,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,114,118,97,108,32,61,32,116,104,105,115,46,97,114,103,32,61,32,114,101,99,111,114,100,46,97,114,103,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,109,101,116,104,111,100,32,61,32,92,34,114,101,116,117,114,110,92,34,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,110,101,120,116,32,61,32,92,34,101,110,100,92,34,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,114,101,99,111,114,100,46,116,121,112,101,32,61,61,61,32,92,34,110,111,114,109,97,108,92,34,32,38,38,32,97,102,116,101,114,76,111,99,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,110,101,120,116,32,61,32,97,102,116,101,114,76,111,99,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,67,111,110,116,105,110,117,101,83,101,110,116,105,110,101,108,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,102,105,110,105,115,104,58,32,102,117,110,99,116,105,111,110,40,102,105,110,97,108,108,121,76,111,99,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,46,108,101,110,103,116,104,32,45,32,49,59,32,105,32,62,61,32,48,59,32,45,45,105,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,91,105,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,46,102,105,110,97,108,108,121,76,111,99,32,61,61,61,32,102,105,110,97,108,108,121,76,111,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,99,111,109,112,108,101,116,101,40,101,110,116,114,121,46,99,111,109,112,108,101,116,105,111,110,44,32,101,110,116,114,121,46,97,102,116,101,114,76,111,99,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,101,116,84,114,121,69,110,116,114,121,40,101,110,116,114,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,67,111,110,116,105,110,117,101,83,101,110,116,105,110,101,108,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,92,34,99,97,116,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,116,114,121,76,111,99,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,46,108,101,110,103,116,104,32,45,32,49,59,32,105,32,62,61,32,48,59,32,45,45,105,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,110,116,114,121,32,61,32,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,91,105,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,110,116,114,121,46,116,114,121,76,111,99,32,61,61,61,32,116,114,121,76,111,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,99,111,114,100,32,61,32,101,110,116,114,121,46,99,111,109,112,108,101,116,105,111,110,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,114,101,99,111,114,100,46,116,121,112,101,32,61,61,61,32,92,34,116,104,114,111,119,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,104,114,111,119,110,32,61,32,114,101,99,111,114,100,46,97,114,103,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,101,116,84,114,121,69,110,116,114,121,40,101,110,116,114,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,114,111,119,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,84,104,101,32,99,111,110,116,101,120,116,46,99,97,116,99,104,32,109,101,116,104,111,100,32,109,117,115,116,32,111,110,108,121,32,98,101,32,99,97,108,108,101,100,32,119,105,116,104,32,97,32,108,111,99,97,116,105,111,110,92,110,32,32,32,32,32,32,47,47,32,97,114,103,117,109,101,110,116,32,116,104,97,116,32,99,111,114,114,101,115,112,111,110,100,115,32,116,111,32,97,32,107,110,111,119,110,32,99,97,116,99,104,32,98,108,111,99,107,46,92,110,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,105,108,108,101,103,97,108,32,99,97,116,99,104,32,97,116,116,101,109,112,116,92,34,41,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,100,101,108,101,103,97,116,101,89,105,101,108,100,58,32,102,117,110,99,116,105,111,110,40,105,116,101,114,97,98,108,101,44,32,114,101,115,117,108,116,78,97,109,101,44,32,110,101,120,116,76,111,99,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,100,101,108,101,103,97,116,101,32,61,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,114,97,116,111,114,58,32,118,97,108,117,101,115,40,105,116,101,114,97,98,108,101,41,44,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,78,97,109,101,58,32,114,101,115,117,108,116,78,97,109,101,44,92,110,32,32,32,32,32,32,32,32,110,101,120,116,76,111,99,58,32,110,101,120,116,76,111,99,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,109,101,116,104,111,100,32,61,61,61,32,92,34,110,101,120,116,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,68,101,108,105,98,101,114,97,116,101,108,121,32,102,111,114,103,101,116,32,116,104,101,32,108,97,115,116,32,115,101,110,116,32,118,97,108,117,101,32,115,111,32,116,104,97,116,32,119,101,32,100,111,110,39,116,92,110,32,32,32,32,32,32,32,32,47,47,32,97,99,99,105,100,101,110,116,97,108,108,121,32,112,97,115,115,32,105,116,32,111,110,32,116,111,32,116,104,101,32,100,101,108,101,103,97,116,101,46,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,114,103,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,67,111,110,116,105,110,117,101,83,101,110,116,105,110,101,108,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,47,47,32,82,101,103,97,114,100,108,101,115,115,32,111,102,32,119,104,101,116,104,101,114,32,116,104,105,115,32,115,99,114,105,112,116,32,105,115,32,101,120,101,99,117,116,105,110,103,32,97,115,32,97,32,67,111,109,109,111,110,74,83,32,109,111,100,117,108,101,92,110,32,32,47,47,32,111,114,32,110,111,116,44,32,114,101,116,117,114,110,32,116,104,101,32,114,117,110,116,105,109,101,32,111,98,106,101,99,116,32,115,111,32,116,104,97,116,32,119,101,32,99,97,110,32,100,101,99,108,97,114,101,32,116,104,101,32,118,97,114,105,97,98,108,101,92,110,32,32,47,47,32,114,101,103,101,110,101,114,97,116,111,114,82,117,110,116,105,109,101,32,105,110,32,116,104,101,32,111,117,116,101,114,32,115,99,111,112,101,44,32,119,104,105,99,104,32,97,108,108,111,119,115,32,116,104,105,115,32,109,111,100,117,108,101,32,116,111,32,98,101,92,110,32,32,47,47,32,105,110,106,101,99,116,101,100,32,101,97,115,105,108,121,32,98,121,32,96,98,105,110,47,114,101,103,101,110,101,114,97,116,111,114,32,45,45,105,110,99,108,117,100,101,45,114,117,110,116,105,109,101,32,115,99,114,105,112,116,46,106,115,96,46,92,110,32,32,114,101,116,117,114,110,32,101,120,112,111,114,116,115,59,92,110,92,110,125,40,92,110,32,32,47,47,32,73,102,32,116,104,105,115,32,115,99,114,105,112,116,32,105,115,32,101,120,101,99,117,116,105,110,103,32,97,115,32,97,32,67,111,109,109,111,110,74,83,32,109,111,100,117,108,101,44,32,117,115,101,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,92,110,32,32,47,47,32,97,115,32,116,104,101,32,114,101,103,101,110,101,114,97,116,111,114,82,117,110,116,105,109,101,32,110,97,109,101,115,112,97,99,101,46,32,79,116,104,101,114,119,105,115,101,32,99,114,101,97,116,101,32,97,32,110,101,119,32,101,109,112,116,121,92,110,32,32,47,47,32,111,98,106,101,99,116,46,32,69,105,116,104,101,114,32,119,97,121,44,32,116,104,101,32,114,101,115,117,108,116,105,110,103,32,111,98,106,101,99,116,32,119,105,108,108,32,98,101,32,117,115,101,100,32,116,111,32,105,110,105,116,105,97,108,105,122,101,92,110,32,32,47,47,32,116,104,101,32,114,101,103,101,110,101,114,97,116,111,114,82,117,110,116,105,109,101,32,118,97,114,105,97,98,108,101,32,97,116,32,116,104,101,32,116,111,112,32,111,102,32,116,104,105,115,32,102,105,108,101,46,92,110,32,32,32,116,114,117,101,32,63,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,58,32,48,92,110,41,41,59,92,110,92,110,116,114,121,32,123,92,110,32,32,114,101,103,101,110,101,114,97,116,111,114,82,117,110,116,105,109,101,32,61,32,114,117,110,116,105,109,101,59,92,110,125,32,99,97,116,99,104,32,40,97,99,99,105,100,101,110,116,97,108,83,116,114,105,99,116,77,111,100,101,41,32,123,92,110,32,32,47,47,32,84,104,105,115,32,109,111,100,117,108,101,32,115,104,111,117,108,100,32,110,111,116,32,98,101,32,114,117,110,110,105,110,103,32,105,110,32,115,116,114,105,99,116,32,109,111,100,101,44,32,115,111,32,116,104,101,32,97,98,111,118,101,92,110,32,32,47,47,32,97,115,115,105,103,110,109,101,110,116,32,115,104,111,117,108,100,32,97,108,119,97,121,115,32,119,111,114,107,32,117,110,108,101,115,115,32,115,111,109,101,116,104,105,110,103,32,105,115,32,109,105,115,99,111,110,102,105,103,117,114,101,100,46,32,74,117,115,116,92,110,32,32,47,47,32,105,110,32,99,97,115,101,32,114,117,110,116,105,109,101,46,106,115,32,97,99,99,105,100,101,110,116,97,108,108,121,32,114,117,110,115,32,105,110,32,115,116,114,105,99,116,32,109,111,100,101,44,32,105,110,32,109,111,100,101,114,110,32,101,110,103,105,110,101,115,92,110,32,32,47,47,32,119,101,32,99,97,110,32,101,120,112,108,105,99,105,116,108,121,32,97,99,99,101,115,115,32,103,108,111,98,97,108,84,104,105,115,46,32,73,110,32,111,108,100,101,114,32,101,110,103,105,110,101,115,32,119,101,32,99,97,110,32,101,115,99,97,112,101,92,110,32,32,47,47,32,115,116,114,105,99,116,32,109,111,100,101,32,117,115,105,110,103,32,97,32,103,108,111,98,97,108,32,70,117,110,99,116,105,111,110,32,99,97,108,108,46,32,84,104,105,115,32,99,111,117,108,100,32,99,111,110,99,101,105,118,97,98,108,121,32,102,97,105,108,92,110,32,32,47,47,32,105,102,32,97,32,67,111,110,116,101,110,116,32,83,101,99,117,114,105,116,121,32,80,111,108,105,99,121,32,102,111,114,98,105,100,115,32,117,115,105,110,103,32,70,117,110,99,116,105,111,110,44,32,98,117,116,32,105,110,32,116,104,97,116,32,99,97,115,101,92,110,32,32,47,47,32,116,104,101,32,112,114,111,112,101,114,32,115,111,108,117,116,105,111,110,32,105,115,32,116,111,32,102,105,120,32,116,104,101,32,97,99,99,105,100,101,110,116,97,108,32,115,116,114,105,99,116,32,109,111,100,101,32,112,114,111,98,108,101,109,46,32,73,102,92,110,32,32,47,47,32,121,111,117,39,118,101,32,109,105,115,99,111,110,102,105,103,117,114,101,100,32,121,111,117,114,32,98,117,110,100,108,101,114,32,116,111,32,102,111,114,99,101,32,115,116,114,105,99,116,32,109,111,100,101,32,97,110,100,32,97,112,112,108,105,101,100,32,97,92,110,32,32,47,47,32,67,83,80,32,116,111,32,102,111,114,98,105,100,32,70,117,110,99,116,105,111,110,44,32,97,110,100,32,121,111,117,39,114,101,32,110,111,116,32,119,105,108,108,105,110,103,32,116,111,32,102,105,120,32,101,105,116,104,101,114,32,111,102,32,116,104,111,115,101,92,110,32,32,47,47,32,112,114,111,98,108,101,109,115,44,32,112,108,101,97,115,101,32,100,101,116,97,105,108,32,121,111,117,114,32,117,110,105,113,117,101,32,112,114,101,100,105,99,97,109,101,110,116,32,105,110,32,97,32,71,105,116,72,117,98,32,105,115,115,117,101,46,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,103,108,111,98,97,108,84,104,105,115,32,61,61,61,32,92,34,111,98,106,101,99,116,92,34,41,32,123,92,110,32,32,32,32,103,108,111,98,97,108,84,104,105,115,46,114,101,103,101,110,101,114,97,116,111,114,82,117,110,116,105,109,101,32,61,32,114,117,110,116,105,109,101,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,70,117,110,99,116,105,111,110,40,92,34,114,92,34,44,32,92,34,114,101,103,101,110,101,114,97,116,111,114,82,117,110,116,105,109,101,32,61,32,114,92,34,41,40,114,117,110,116,105,109,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,114,101,103,101,110,101,114,97,116,111,114,45,114,117,110,116,105,109,101,47,114,117,110,116,105,109,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,99,108,97,115,115,45,99,111,109,112,111,110,101,110,116,47,100,105,115,116,47,118,117,101,45,99,108,97,115,115,45,99,111,109,112,111,110,101,110,116,46,101,115,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,99,108,97,115,115,45,99,111,109,112,111,110,101,110,116,47,100,105,115,116,47,118,117,101,45,99,108,97,115,115,45,99,111,109,112,111,110,101,110,116,46,101,115,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,101,97,116,101,68,101,99,111,114,97,116,111,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,114,101,97,116,101,68,101,99,111,114,97,116,111,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,105,120,105,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,105,120,105,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,42,92,110,32,32,42,32,118,117,101,45,99,108,97,115,115,45,99,111,109,112,111,110,101,110,116,32,118,55,46,50,46,54,92,110,32,32,42,32,40,99,41,32,50,48,49,53,45,112,114,101,115,101,110,116,32,69,118,97,110,32,89,111,117,92,110,32,32,42,32,64,108,105,99,101,110,115,101,32,77,73,84,92,110,32,32,42,47,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,95,116,121,112,101,111,102,40,111,98,106,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,61,61,61,32,92,34,115,121,109,98,111,108,92,34,41,32,123,92,110,32,32,32,32,95,116,121,112,101,111,102,32,61,32,102,117,110,99,116,105,111,110,32,40,111,98,106,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,111,98,106,59,92,110,32,32,32,32,125,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,95,116,121,112,101,111,102,32,61,32,102,117,110,99,116,105,111,110,32,40,111,98,106,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,32,38,38,32,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,92,34,102,117,110,99,116,105,111,110,92,34,32,38,38,32,111,98,106,46,99,111,110,115,116,114,117,99,116,111,114,32,61,61,61,32,83,121,109,98,111,108,32,38,38,32,111,98,106,32,33,61,61,32,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,32,63,32,92,34,115,121,109,98,111,108,92,34,32,58,32,116,121,112,101,111,102,32,111,98,106,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,95,116,121,112,101,111,102,40,111,98,106,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,107,101,121,32,105,110,32,111,98,106,41,32,123,92,110,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,92,110,32,32,32,32,125,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,111,98,106,91,107,101,121,93,32,61,32,118,97,108,117,101,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,111,98,106,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,97,114,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,124,124,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,97,114,114,41,32,124,124,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,114,114,97,121,87,105,116,104,111,117,116,72,111,108,101,115,40,97,114,114,41,32,123,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,41,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,97,114,114,50,32,61,32,110,101,119,32,65,114,114,97,121,40,97,114,114,46,108,101,110,103,116,104,41,59,32,105,32,60,32,97,114,114,46,108,101,110,103,116,104,59,32,105,43,43,41,32,97,114,114,50,91,105,93,32,61,32,97,114,114,91,105,93,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,114,50,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,105,116,101,114,97,98,108,101,84,111,65,114,114,97,121,40,105,116,101,114,41,32,123,92,110,32,32,105,102,32,40,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,105,116,101,114,41,32,124,124,32,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,105,116,101,114,41,32,61,61,61,32,92,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,92,34,41,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,105,116,101,114,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,110,111,110,73,116,101,114,97,98,108,101,83,112,114,101,97,100,40,41,32,123,92,110,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,92,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,92,34,41,59,92,110,125,92,110,92,110,47,47,32,84,104,101,32,114,97,116,105,111,110,97,108,32,98,101,104,105,110,100,32,116,104,101,32,118,101,114,98,111,115,101,32,82,101,102,108,101,99,116,45,102,101,97,116,117,114,101,32,99,104,101,99,107,32,98,101,108,111,119,32,105,115,32,116,104,101,32,102,97,99,116,32,116,104,97,116,32,116,104,101,114,101,32,97,114,101,32,112,111,108,121,102,105,108,108,115,92,110,47,47,32,119,104,105,99,104,32,97,100,100,32,97,110,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,102,111,114,32,82,101,102,108,101,99,116,46,100,101,102,105,110,101,77,101,116,97,100,97,116,97,32,98,117,116,32,110,111,116,32,102,111,114,32,82,101,102,108,101,99,116,46,103,101,116,79,119,110,77,101,116,97,100,97,116,97,75,101,121,115,46,92,110,47,47,32,87,105,116,104,111,117,116,32,116,104,105,115,32,99,104,101,99,107,32,99,111,110,115,117,109,101,114,115,32,119,105,108,108,32,101,110,99,111,117,110,116,101,114,32,104,97,114,100,32,116,111,32,116,114,97,99,107,32,100,111,119,110,32,114,117,110,116,105,109,101,32,101,114,114,111,114,115,46,92,110,102,117,110,99,116,105,111,110,32,114,101,102,108,101,99,116,105,111,110,73,115,83,117,112,112,111,114,116,101,100,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,82,101,102,108,101,99,116,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,82,101,102,108,101,99,116,46,100,101,102,105,110,101,77,101,116,97,100,97,116,97,32,38,38,32,82,101,102,108,101,99,116,46,103,101,116,79,119,110,77,101,116,97,100,97,116,97,75,101,121,115,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,99,111,112,121,82,101,102,108,101,99,116,105,111,110,77,101,116,97,100,97,116,97,40,116,111,44,32,102,114,111,109,41,32,123,92,110,32,32,102,111,114,119,97,114,100,77,101,116,97,100,97,116,97,40,116,111,44,32,102,114,111,109,41,59,92,110,32,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,102,114,111,109,46,112,114,111,116,111,116,121,112,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,102,111,114,119,97,114,100,77,101,116,97,100,97,116,97,40,116,111,46,112,114,111,116,111,116,121,112,101,44,32,102,114,111,109,46,112,114,111,116,111,116,121,112,101,44,32,107,101,121,41,59,92,110,32,32,125,41,59,92,110,32,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,102,114,111,109,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,102,111,114,119,97,114,100,77,101,116,97,100,97,116,97,40,116,111,44,32,102,114,111,109,44,32,107,101,121,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,119,97,114,100,77,101,116,97,100,97,116,97,40,116,111,44,32,102,114,111,109,44,32,112,114,111,112,101,114,116,121,75,101,121,41,32,123,92,110,32,32,118,97,114,32,109,101,116,97,75,101,121,115,32,61,32,112,114,111,112,101,114,116,121,75,101,121,32,63,32,82,101,102,108,101,99,116,46,103,101,116,79,119,110,77,101,116,97,100,97,116,97,75,101,121,115,40,102,114,111,109,44,32,112,114,111,112,101,114,116,121,75,101,121,41,32,58,32,82,101,102,108,101,99,116,46,103,101,116,79,119,110,77,101,116,97,100,97,116,97,75,101,121,115,40,102,114,111,109,41,59,92,110,32,32,109,101,116,97,75,101,121,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,109,101,116,97,75,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,109,101,116,97,100,97,116,97,32,61,32,112,114,111,112,101,114,116,121,75,101,121,32,63,32,82,101,102,108,101,99,116,46,103,101,116,79,119,110,77,101,116,97,100,97,116,97,40,109,101,116,97,75,101,121,44,32,102,114,111,109,44,32,112,114,111,112,101,114,116,121,75,101,121,41,32,58,32,82,101,102,108,101,99,116,46,103,101,116,79,119,110,77,101,116,97,100,97,116,97,40,109,101,116,97,75,101,121,44,32,102,114,111,109,41,59,92,110,92,110,32,32,32,32,105,102,32,40,112,114,111,112,101,114,116,121,75,101,121,41,32,123,92,110,32,32,32,32,32,32,82,101,102,108,101,99,116,46,100,101,102,105,110,101,77,101,116,97,100,97,116,97,40,109,101,116,97,75,101,121,44,32,109,101,116,97,100,97,116,97,44,32,116,111,44,32,112,114,111,112,101,114,116,121,75,101,121,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,82,101,102,108,101,99,116,46,100,101,102,105,110,101,77,101,116,97,100,97,116,97,40,109,101,116,97,75,101,121,44,32,109,101,116,97,100,97,116,97,44,32,116,111,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,92,110,92,110,118,97,114,32,102,97,107,101,65,114,114,97,121,32,61,32,123,92,110,32,32,95,95,112,114,111,116,111,95,95,58,32,91,93,92,110,125,59,92,110,118,97,114,32,104,97,115,80,114,111,116,111,32,61,32,102,97,107,101,65,114,114,97,121,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,59,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,68,101,99,111,114,97,116,111,114,40,102,97,99,116,111,114,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,44,32,107,101,121,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,118,97,114,32,67,116,111,114,32,61,32,116,121,112,101,111,102,32,116,97,114,103,101,116,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,116,97,114,103,101,116,32,58,32,116,97,114,103,101,116,46,99,111,110,115,116,114,117,99,116,111,114,59,92,110,92,110,32,32,32,32,105,102,32,40,33,67,116,111,114,46,95,95,100,101,99,111,114,97,116,111,114,115,95,95,41,32,123,92,110,32,32,32,32,32,32,67,116,111,114,46,95,95,100,101,99,111,114,97,116,111,114,115,95,95,32,61,32,91,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,105,110,100,101,120,32,33,61,61,32,39,110,117,109,98,101,114,39,41,32,123,92,110,32,32,32,32,32,32,105,110,100,101,120,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,67,116,111,114,46,95,95,100,101,99,111,114,97,116,111,114,115,95,95,46,112,117,115,104,40,102,117,110,99,116,105,111,110,32,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,99,116,111,114,121,40,111,112,116,105,111,110,115,44,32,107,101,121,44,32,105,110,100,101,120,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,109,105,120,105,110,115,40,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,95,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,32,67,116,111,114,115,32,61,32,110,101,119,32,65,114,114,97,121,40,95,108,101,110,41,44,32,95,107,101,121,32,61,32,48,59,32,95,107,101,121,32,60,32,95,108,101,110,59,32,95,107,101,121,43,43,41,32,123,92,110,32,32,32,32,67,116,111,114,115,91,95,107,101,121,93,32,61,32,97,114,103,117,109,101,110,116,115,91,95,107,101,121,93,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,32,32,109,105,120,105,110,115,58,32,67,116,111,114,115,92,110,32,32,125,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,105,115,80,114,105,109,105,116,105,118,101,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,116,121,112,101,32,61,32,95,116,121,112,101,111,102,40,118,97,108,117,101,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,61,61,32,110,117,108,108,32,124,124,32,116,121,112,101,32,33,61,61,32,39,111,98,106,101,99,116,39,32,38,38,32,116,121,112,101,32,33,61,61,32,39,102,117,110,99,116,105,111,110,39,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,119,97,114,110,40,109,101,115,115,97,103,101,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,99,111,110,115,111,108,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,39,91,118,117,101,45,99,108,97,115,115,45,99,111,109,112,111,110,101,110,116,93,32,39,32,43,32,109,101,115,115,97,103,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,108,108,101,99,116,68,97,116,97,70,114,111,109,67,111,110,115,116,114,117,99,116,111,114,40,118,109,44,32,67,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,47,47,32,111,118,101,114,114,105,100,101,32,95,105,110,105,116,32,116,111,32,112,114,101,118,101,110,116,32,116,111,32,105,110,105,116,32,97,115,32,86,117,101,32,105,110,115,116,97,110,99,101,92,110,32,32,118,97,114,32,111,114,105,103,105,110,97,108,73,110,105,116,32,61,32,67,111,109,112,111,110,101,110,116,46,112,114,111,116,111,116,121,112,101,46,95,105,110,105,116,59,92,110,92,110,32,32,67,111,109,112,111,110,101,110,116,46,112,114,111,116,111,116,121,112,101,46,95,105,110,105,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,47,47,32,112,114,111,120,121,32,116,111,32,97,99,116,117,97,108,32,118,109,92,110,32,32,32,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,118,109,41,59,32,47,47,32,50,46,50,46,48,32,99,111,109,112,97,116,32,40,112,114,111,112,115,32,97,114,101,32,110,111,32,108,111,110,103,101,114,32,101,120,112,111,115,101,100,32,97,115,32,115,101,108,102,32,112,114,111,112,101,114,116,105,101,115,41,92,110,92,110,32,32,32,32,105,102,32,40,118,109,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,118,109,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,118,109,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,115,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,107,101,121,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,95,116,104,105,115,44,32,107,101,121,44,32,123,92,110,32,32,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,109,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,115,101,116,58,32,102,117,110,99,116,105,111,110,32,115,101,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,109,91,107,101,121,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,32,47,47,32,115,104,111,117,108,100,32,98,101,32,97,99,113,117,105,114,101,100,32,99,108,97,115,115,32,112,114,111,112,101,114,116,121,32,118,97,108,117,101,115,92,110,92,110,92,110,32,32,118,97,114,32,100,97,116,97,32,61,32,110,101,119,32,67,111,109,112,111,110,101,110,116,40,41,59,32,47,47,32,114,101,115,116,111,114,101,32,111,114,105,103,105,110,97,108,32,95,105,110,105,116,32,116,111,32,97,118,111,105,100,32,109,101,109,111,114,121,32,108,101,97,107,32,40,35,50,48,57,41,92,110,92,110,32,32,67,111,109,112,111,110,101,110,116,46,112,114,111,116,111,116,121,112,101,46,95,105,110,105,116,32,61,32,111,114,105,103,105,110,97,108,73,110,105,116,59,32,47,47,32,99,114,101,97,116,101,32,112,108,97,105,110,32,100,97,116,97,32,111,98,106,101,99,116,92,110,92,110,32,32,118,97,114,32,112,108,97,105,110,68,97,116,97,32,61,32,123,125,59,92,110,32,32,79,98,106,101,99,116,46,107,101,121,115,40,100,97,116,97,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,105,102,32,40,100,97,116,97,91,107,101,121,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,112,108,97,105,110,68,97,116,97,91,107,101,121,93,32,61,32,100,97,116,97,91,107,101,121,93,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,67,111,109,112,111,110,101,110,116,46,112,114,111,116,111,116,121,112,101,32,105,110,115,116,97,110,99,101,111,102,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,32,38,38,32,79,98,106,101,99,116,46,107,101,121,115,40,112,108,97,105,110,68,97,116,97,41,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,39,67,111,109,112,111,110,101,110,116,32,99,108,97,115,115,32,109,117,115,116,32,105,110,104,101,114,105,116,32,86,117,101,32,111,114,32,105,116,115,32,100,101,115,99,101,110,100,97,110,116,32,99,108,97,115,115,32,39,32,43,32,39,119,104,101,110,32,99,108,97,115,115,32,112,114,111,112,101,114,116,121,32,105,115,32,117,115,101,100,46,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,112,108,97,105,110,68,97,116,97,59,92,110,125,92,110,92,110,118,97,114,32,36,105,110,116,101,114,110,97,108,72,111,111,107,115,32,61,32,91,39,100,97,116,97,39,44,32,39,98,101,102,111,114,101,67,114,101,97,116,101,39,44,32,39,99,114,101,97,116,101,100,39,44,32,39,98,101,102,111,114,101,77,111,117,110,116,39,44,32,39,109,111,117,110,116,101,100,39,44,32,39,98,101,102,111,114,101,68,101,115,116,114,111,121,39,44,32,39,100,101,115,116,114,111,121,101,100,39,44,32,39,98,101,102,111,114,101,85,112,100,97,116,101,39,44,32,39,117,112,100,97,116,101,100,39,44,32,39,97,99,116,105,118,97,116,101,100,39,44,32,39,100,101,97,99,116,105,118,97,116,101,100,39,44,32,39,114,101,110,100,101,114,39,44,32,39,101,114,114,111,114,67,97,112,116,117,114,101,100,39,44,32,39,115,101,114,118,101,114,80,114,101,102,101,116,99,104,39,32,47,47,32,50,46,54,92,110,93,59,92,110,102,117,110,99,116,105,111,110,32,99,111,109,112,111,110,101,110,116,70,97,99,116,111,114,121,40,67,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,97,114,103,117,109,101,110,116,115,91,49,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,97,114,103,117,109,101,110,116,115,91,49,93,32,58,32,123,125,59,92,110,32,32,111,112,116,105,111,110,115,46,110,97,109,101,32,61,32,111,112,116,105,111,110,115,46,110,97,109,101,32,124,124,32,67,111,109,112,111,110,101,110,116,46,95,99,111,109,112,111,110,101,110,116,84,97,103,32,124,124,32,67,111,109,112,111,110,101,110,116,46,110,97,109,101,59,32,47,47,32,112,114,111,116,111,116,121,112,101,32,112,114,111,112,115,46,92,110,92,110,32,32,118,97,114,32,112,114,111,116,111,32,61,32,67,111,109,112,111,110,101,110,116,46,112,114,111,116,111,116,121,112,101,59,92,110,32,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,112,114,111,116,111,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,105,102,32,40,107,101,121,32,61,61,61,32,39,99,111,110,115,116,114,117,99,116,111,114,39,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,32,47,47,32,104,111,111,107,115,92,110,92,110,92,110,32,32,32,32,105,102,32,40,36,105,110,116,101,114,110,97,108,72,111,111,107,115,46,105,110,100,101,120,79,102,40,107,101,121,41,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,91,107,101,121,93,32,61,32,112,114,111,116,111,91,107,101,121,93,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,100,101,115,99,114,105,112,116,111,114,32,61,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,112,114,111,116,111,44,32,107,101,121,41,59,92,110,92,110,32,32,32,32,105,102,32,40,100,101,115,99,114,105,112,116,111,114,46,118,97,108,117,101,32,33,61,61,32,118,111,105,100,32,48,41,32,123,92,110,32,32,32,32,32,32,47,47,32,109,101,116,104,111,100,115,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,100,101,115,99,114,105,112,116,111,114,46,118,97,108,117,101,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,40,111,112,116,105,111,110,115,46,109,101,116,104,111,100,115,32,124,124,32,40,111,112,116,105,111,110,115,46,109,101,116,104,111,100,115,32,61,32,123,125,41,41,91,107,101,121,93,32,61,32,100,101,115,99,114,105,112,116,111,114,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,116,121,112,101,115,99,114,105,112,116,32,100,101,99,111,114,97,116,101,100,32,100,97,116,97,92,110,32,32,32,32,32,32,32,32,40,111,112,116,105,111,110,115,46,109,105,120,105,110,115,32,124,124,32,40,111,112,116,105,111,110,115,46,109,105,120,105,110,115,32,61,32,91,93,41,41,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,32,107,101,121,44,32,100,101,115,99,114,105,112,116,111,114,46,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,101,115,99,114,105,112,116,111,114,46,103,101,116,32,124,124,32,100,101,115,99,114,105,112,116,111,114,46,115,101,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,99,111,109,112,117,116,101,100,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,32,32,32,32,40,111,112,116,105,111,110,115,46,99,111,109,112,117,116,101,100,32,124,124,32,40,111,112,116,105,111,110,115,46,99,111,109,112,117,116,101,100,32,61,32,123,125,41,41,91,107,101,121,93,32,61,32,123,92,110,32,32,32,32,32,32,32,32,103,101,116,58,32,100,101,115,99,114,105,112,116,111,114,46,103,101,116,44,92,110,32,32,32,32,32,32,32,32,115,101,116,58,32,100,101,115,99,114,105,112,116,111,114,46,115,101,116,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,40,111,112,116,105,111,110,115,46,109,105,120,105,110,115,32,124,124,32,40,111,112,116,105,111,110,115,46,109,105,120,105,110,115,32,61,32,91,93,41,41,46,112,117,115,104,40,123,92,110,32,32,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,108,108,101,99,116,68,97,116,97,70,114,111,109,67,111,110,115,116,114,117,99,116,111,114,40,116,104,105,115,44,32,67,111,109,112,111,110,101,110,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,32,47,47,32,100,101,99,111,114,97,116,101,32,111,112,116,105,111,110,115,92,110,92,110,32,32,118,97,114,32,100,101,99,111,114,97,116,111,114,115,32,61,32,67,111,109,112,111,110,101,110,116,46,95,95,100,101,99,111,114,97,116,111,114,115,95,95,59,92,110,92,110,32,32,105,102,32,40,100,101,99,111,114,97,116,111,114,115,41,32,123,92,110,32,32,32,32,100,101,99,111,114,97,116,111,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,102,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,40,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,100,101,108,101,116,101,32,67,111,109,112,111,110,101,110,116,46,95,95,100,101,99,111,114,97,116,111,114,115,95,95,59,92,110,32,32,125,32,47,47,32,102,105,110,100,32,115,117,112,101,114,92,110,92,110,92,110,32,32,118,97,114,32,115,117,112,101,114,80,114,111,116,111,32,61,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,67,111,109,112,111,110,101,110,116,46,112,114,111,116,111,116,121,112,101,41,59,92,110,32,32,118,97,114,32,83,117,112,101,114,32,61,32,115,117,112,101,114,80,114,111,116,111,32,105,110,115,116,97,110,99,101,111,102,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,63,32,115,117,112,101,114,80,114,111,116,111,46,99,111,110,115,116,114,117,99,116,111,114,32,58,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,92,110,32,32,118,97,114,32,69,120,116,101,110,100,101,100,32,61,32,83,117,112,101,114,46,101,120,116,101,110,100,40,111,112,116,105,111,110,115,41,59,92,110,32,32,102,111,114,119,97,114,100,83,116,97,116,105,99,77,101,109,98,101,114,115,40,69,120,116,101,110,100,101,100,44,32,67,111,109,112,111,110,101,110,116,44,32,83,117,112,101,114,41,59,92,110,92,110,32,32,105,102,32,40,114,101,102,108,101,99,116,105,111,110,73,115,83,117,112,112,111,114,116,101,100,40,41,41,32,123,92,110,32,32,32,32,99,111,112,121,82,101,102,108,101,99,116,105,111,110,77,101,116,97,100,97,116,97,40,69,120,116,101,110,100,101,100,44,32,67,111,109,112,111,110,101,110,116,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,69,120,116,101,110,100,101,100,59,92,110,125,92,110,118,97,114,32,114,101,115,101,114,118,101,100,80,114,111,112,101,114,116,121,78,97,109,101,115,32,61,32,91,47,47,32,85,110,105,113,117,101,32,105,100,92,110,39,99,105,100,39,44,32,47,47,32,83,117,112,101,114,32,86,117,101,32,99,111,110,115,116,114,117,99,116,111,114,92,110,39,115,117,112,101,114,39,44,32,47,47,32,67,111,109,112,111,110,101,110,116,32,111,112,116,105,111,110,115,32,116,104,97,116,32,119,105,108,108,32,98,101,32,117,115,101,100,32,98,121,32,116,104,101,32,99,111,109,112,111,110,101,110,116,92,110,39,111,112,116,105,111,110,115,39,44,32,39,115,117,112,101,114,79,112,116,105,111,110,115,39,44,32,39,101,120,116,101,110,100,79,112,116,105,111,110,115,39,44,32,39,115,101,97,108,101,100,79,112,116,105,111,110,115,39,44,32,47,47,32,80,114,105,118,97,116,101,32,97,115,115,101,116,115,92,110,39,99,111,109,112,111,110,101,110,116,39,44,32,39,100,105,114,101,99,116,105,118,101,39,44,32,39,102,105,108,116,101,114,39,93,59,92,110,118,97,114,32,115,104,111,117,108,100,73,103,110,111,114,101,32,61,32,123,92,110,32,32,112,114,111,116,111,116,121,112,101,58,32,116,114,117,101,44,92,110,32,32,97,114,103,117,109,101,110,116,115,58,32,116,114,117,101,44,92,110,32,32,99,97,108,108,101,101,58,32,116,114,117,101,44,92,110,32,32,99,97,108,108,101,114,58,32,116,114,117,101,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,119,97,114,100,83,116,97,116,105,99,77,101,109,98,101,114,115,40,69,120,116,101,110,100,101,100,44,32,79,114,105,103,105,110,97,108,44,32,83,117,112,101,114,41,32,123,92,110,32,32,47,47,32,87,101,32,104,97,118,101,32,116,111,32,117,115,101,32,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,32,115,105,110,99,101,32,66,97,98,101,108,32,114,101,103,105,115,116,101,114,115,32,109,101,116,104,111,100,115,32,97,115,32,110,111,110,45,101,110,117,109,101,114,97,98,108,101,92,110,32,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,79,114,105,103,105,110,97,108,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,47,47,32,83,107,105,112,32,116,104,101,32,112,114,111,112,101,114,116,105,101,115,32,116,104,97,116,32,115,104,111,117,108,100,32,110,111,116,32,98,101,32,111,118,101,114,119,114,105,116,116,101,110,92,110,32,32,32,32,105,102,32,40,115,104,111,117,108,100,73,103,110,111,114,101,91,107,101,121,93,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,32,47,47,32,83,111,109,101,32,98,114,111,119,115,101,114,115,32,100,111,101,115,32,110,111,116,32,97,108,108,111,119,32,114,101,99,111,110,102,105,103,117,114,101,32,98,117,105,108,116,45,105,110,32,112,114,111,112,101,114,116,105,101,115,92,110,92,110,92,110,32,32,32,32,118,97,114,32,101,120,116,101,110,100,101,100,68,101,115,99,114,105,112,116,111,114,32,61,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,69,120,116,101,110,100,101,100,44,32,107,101,121,41,59,92,110,92,110,32,32,32,32,105,102,32,40,101,120,116,101,110,100,101,100,68,101,115,99,114,105,112,116,111,114,32,38,38,32,33,101,120,116,101,110,100,101,100,68,101,115,99,114,105,112,116,111,114,46,99,111,110,102,105,103,117,114,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,100,101,115,99,114,105,112,116,111,114,32,61,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,79,114,105,103,105,110,97,108,44,32,107,101,121,41,59,32,47,47,32,73,102,32,116,104,101,32,117,115,101,114,32,97,103,101,110,116,32,100,111,101,115,32,110,111,116,32,115,117,112,112,111,114,116,32,96,95,95,112,114,111,116,111,95,95,96,32,111,114,32,105,116,115,32,102,97,109,105,108,121,32,40,73,69,32,60,61,32,49,48,41,44,92,110,32,32,32,32,47,47,32,116,104,101,32,115,117,98,32,99,108,97,115,115,32,112,114,111,112,101,114,116,105,101,115,32,109,97,121,32,98,101,32,105,110,104,101,114,105,116,101,100,32,112,114,111,112,101,114,116,105,101,115,32,102,114,111,109,32,116,104,101,32,115,117,112,101,114,32,99,108,97,115,115,32,105,110,32,84,121,112,101,83,99,114,105,112,116,46,92,110,32,32,32,32,47,47,32,87,101,32,110,101,101,100,32,116,111,32,101,120,99,108,117,100,101,32,115,117,99,104,32,112,114,111,112,101,114,116,105,101,115,32,116,111,32,112,114,101,118,101,110,116,32,116,111,32,111,118,101,114,119,114,105,116,101,92,110,32,32,32,32,47,47,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,111,112,116,105,111,110,115,32,111,98,106,101,99,116,32,119,104,105,99,104,32,115,116,111,114,101,100,32,111,110,32,116,104,101,32,101,120,116,101,110,100,101,100,32,99,111,110,115,116,114,117,99,116,111,114,32,40,83,101,101,32,35,49,57,50,41,46,92,110,32,32,32,32,47,47,32,73,102,32,116,104,101,32,118,97,108,117,101,32,105,115,32,97,32,114,101,102,101,114,101,110,99,101,100,32,118,97,108,117,101,32,40,111,98,106,101,99,116,32,111,114,32,102,117,110,99,116,105,111,110,41,44,92,110,32,32,32,32,47,47,32,119,101,32,99,97,110,32,99,104,101,99,107,32,101,113,117,97,108,105,116,121,32,111,102,32,116,104,101,109,32,97,110,100,32,101,120,99,108,117,100,101,32,105,116,32,105,102,32,116,104,101,121,32,104,97,118,101,32,116,104,101,32,115,97,109,101,32,114,101,102,101,114,101,110,99,101,46,92,110,32,32,32,32,47,47,32,73,102,32,105,116,32,105,115,32,97,32,112,114,105,109,105,116,105,118,101,32,118,97,108,117,101,44,32,105,116,32,119,105,108,108,32,98,101,32,102,111,114,119,97,114,100,101,100,32,102,111,114,32,115,97,102,101,116,121,46,92,110,92,110,32,32,32,32,105,102,32,40,33,104,97,115,80,114,111,116,111,41,32,123,92,110,32,32,32,32,32,32,47,47,32,79,110,108,121,32,96,99,105,100,96,32,105,115,32,101,120,112,108,105,99,105,116,108,121,32,101,120,108,117,100,101,100,32,102,114,111,109,32,112,114,111,112,101,114,116,121,32,102,111,114,119,97,114,100,105,110,103,92,110,32,32,32,32,32,32,47,47,32,98,101,99,97,117,115,101,32,119,101,32,99,97,110,110,111,116,32,100,101,116,101,99,116,32,119,104,101,116,104,101,114,32,105,116,32,105,115,32,97,32,105,110,104,101,114,105,116,101,100,32,112,114,111,112,101,114,116,121,32,111,114,32,110,111,116,92,110,32,32,32,32,32,32,47,47,32,111,110,32,116,104,101,32,110,111,32,96,95,95,112,114,111,116,111,95,95,96,32,101,110,118,105,114,111,110,109,101,110,116,32,101,118,101,110,32,116,104,111,117,103,104,32,116,104,101,32,112,114,111,112,101,114,116,121,32,105,115,32,114,101,115,101,114,118,101,100,46,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,32,61,61,61,32,39,99,105,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,117,112,101,114,68,101,115,99,114,105,112,116,111,114,32,61,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,83,117,112,101,114,44,32,107,101,121,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,80,114,105,109,105,116,105,118,101,40,100,101,115,99,114,105,112,116,111,114,46,118,97,108,117,101,41,32,38,38,32,115,117,112,101,114,68,101,115,99,114,105,112,116,111,114,32,38,38,32,115,117,112,101,114,68,101,115,99,114,105,112,116,111,114,46,118,97,108,117,101,32,61,61,61,32,100,101,115,99,114,105,112,116,111,114,46,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,47,47,32,87,97,114,110,32,105,102,32,116,104,101,32,117,115,101,114,115,32,109,97,110,117,97,108,108,121,32,100,101,99,108,97,114,101,32,114,101,115,101,114,118,101,100,32,112,114,111,112,101,114,116,105,101,115,92,110,92,110,92,110,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,114,101,115,101,114,118,101,100,80,114,111,112,101,114,116,121,78,97,109,101,115,46,105,110,100,101,120,79,102,40,107,101,121,41,32,62,61,32,48,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,92,34,83,116,97,116,105,99,32,112,114,111,112,101,114,116,121,32,110,97,109,101,32,39,92,34,46,99,111,110,99,97,116,40,107,101,121,44,32,92,34,39,32,100,101,99,108,97,114,101,100,32,111,110,32,99,108,97,115,115,32,39,92,34,41,46,99,111,110,99,97,116,40,79,114,105,103,105,110,97,108,46,110,97,109,101,44,32,92,34,39,32,92,34,41,32,43,32,39,99,111,110,102,108,105,99,116,115,32,119,105,116,104,32,114,101,115,101,114,118,101,100,32,112,114,111,112,101,114,116,121,32,110,97,109,101,32,111,102,32,86,117,101,32,105,110,116,101,114,110,97,108,46,32,39,32,43,32,39,73,116,32,109,97,121,32,99,97,117,115,101,32,117,110,101,120,112,101,99,116,101,100,32,98,101,104,97,118,105,111,114,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,67,111,110,115,105,100,101,114,32,114,101,110,97,109,105,110,103,32,116,104,101,32,112,114,111,112,101,114,116,121,46,39,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,69,120,116,101,110,100,101,100,44,32,107,101,121,44,32,100,101,115,99,114,105,112,116,111,114,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,67,111,109,112,111,110,101,110,116,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,111,112,116,105,111,110,115,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,110,101,110,116,70,97,99,116,111,114,121,40,111,112,116,105,111,110,115,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,67,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,110,101,110,116,70,97,99,116,111,114,121,40,67,111,109,112,111,110,101,110,116,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,67,111,109,112,111,110,101,110,116,46,114,101,103,105,115,116,101,114,72,111,111,107,115,32,61,32,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,72,111,111,107,115,40,107,101,121,115,41,32,123,92,110,32,32,36,105,110,116,101,114,110,97,108,72,111,111,107,115,46,112,117,115,104,46,97,112,112,108,121,40,36,105,110,116,101,114,110,97,108,72,111,111,107,115,44,32,95,116,111,67,111,110,115,117,109,97,98,108,101,65,114,114,97,121,40,107,101,121,115,41,41,59,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,99,108,97,115,115,45,99,111,109,112,111,110,101,110,116,47,100,105,115,116,47,118,117,101,45,99,108,97,115,115,45,99,111,109,112,111,110,101,110,116,46,101,115,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,99,111,108,111,114,47,100,105,115,116,47,118,117,101,45,99,111,108,111,114,46,109,105,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,99,111,108,111,114,47,100,105,115,116,47,118,117,101,45,99,111,108,111,114,46,109,105,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,32,116,114,117,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,116,40,41,58,48,125,40,92,34,117,110,100,101,102,105,110,101,100,92,34,33,61,116,121,112,101,111,102,32,115,101,108,102,63,115,101,108,102,58,116,104,105,115,44,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,101,41,123,102,117,110,99,116,105,111,110,32,116,40,114,41,123,105,102,40,110,91,114,93,41,114,101,116,117,114,110,32,110,91,114,93,46,101,120,112,111,114,116,115,59,118,97,114,32,105,61,110,91,114,93,61,123,105,58,114,44,108,58,33,49,44,101,120,112,111,114,116,115,58,123,125,125,59,114,101,116,117,114,110,32,101,91,114,93,46,99,97,108,108,40,105,46,101,120,112,111,114,116,115,44,105,44,105,46,101,120,112,111,114,116,115,44,116,41,44,105,46,108,61,33,48,44,105,46,101,120,112,111,114,116,115,125,118,97,114,32,110,61,123,125,59,114,101,116,117,114,110,32,116,46,109,61,101,44,116,46,99,61,110,44,116,46,100,61,102,117,110,99,116,105,111,110,40,101,44,110,44,114,41,123,116,46,111,40,101,44,110,41,124,124,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,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,48,44,103,101,116,58,114,125,41,125,44,116,46,110,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,100,101,102,97,117,108,116,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,125,59,114,101,116,117,114,110,32,116,46,100,40,110,44,92,34,97,92,34,44,110,41,44,110,125,44,116,46,111,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,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,101,44,116,41,125,44,116,46,112,61,92,34,92,34,44,116,40,116,46,115,61,54,48,41,125,40,91,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,118,97,114,32,110,61,101,91,49,93,124,124,92,34,92,34,44,105,61,101,91,51,93,59,105,102,40,33,105,41,114,101,116,117,114,110,32,110,59,105,102,40,116,38,38,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,98,116,111,97,41,123,118,97,114,32,111,61,114,40,105,41,59,114,101,116,117,114,110,91,110,93,46,99,111,110,99,97,116,40,105,46,115,111,117,114,99,101,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,92,34,47,42,35,32,115,111,117,114,99,101,85,82,76,61,92,34,43,105,46,115,111,117,114,99,101,82,111,111,116,43,101,43,92,34,32,42,47,92,34,125,41,41,46,99,111,110,99,97,116,40,91,111,93,41,46,106,111,105,110,40,92,34,92,92,110,92,34,41,125,114,101,116,117,114,110,91,110,93,46,106,111,105,110,40,92,34,92,92,110,92,34,41,125,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,92,34,47,42,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,100,97,116,97,58,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,59,99,104,97,114,115,101,116,61,117,116,102,45,56,59,98,97,115,101,54,52,44,92,34,43,98,116,111,97,40,117,110,101,115,99,97,112,101,40,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,101,41,41,41,41,43,92,34,32,42,47,92,34,125,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,46,116,111,83,116,114,105,110,103,61,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,116,41,123,118,97,114,32,114,61,110,40,116,44,101,41,59,114,101,116,117,114,110,32,116,91,50,93,63,92,34,64,109,101,100,105,97,32,92,34,43,116,91,50,93,43,92,34,123,92,34,43,114,43,92,34,125,92,34,58,114,125,41,46,106,111,105,110,40,92,34,92,34,41,125,44,116,46,105,61,102,117,110,99,116,105,111,110,40,101,44,110,41,123,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,101,38,38,40,101,61,91,91,110,117,108,108,44,101,44,92,34,92,34,93,93,41,59,102,111,114,40,118,97,114,32,114,61,123,125,44,105,61,48,59,105,60,116,104,105,115,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,111,61,116,104,105,115,91,105,93,91,48,93,59,92,34,110,117,109,98,101,114,92,34,61,61,116,121,112,101,111,102,32,111,38,38,40,114,91,111,93,61,33,48,41,125,102,111,114,40,105,61,48,59,105,60,101,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,97,61,101,91,105,93,59,92,34,110,117,109,98,101,114,92,34,61,61,116,121,112,101,111,102,32,97,91,48,93,38,38,114,91,97,91,48,93,93,124,124,40,110,38,38,33,97,91,50,93,63,97,91,50,93,61,110,58,110,38,38,40,97,91,50,93,61,92,34,40,92,34,43,97,91,50,93,43,92,34,41,32,97,110,100,32,40,92,34,43,110,43,92,34,41,92,34,41,44,116,46,112,117,115,104,40,97,41,41,125,125,44,116,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,117,110,99,116,105,111,110,32,114,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,59,116,60,101,46,108,101,110,103,116,104,59,116,43,43,41,123,118,97,114,32,110,61,101,91,116,93,44,114,61,117,91,110,46,105,100,93,59,105,102,40,114,41,123,114,46,114,101,102,115,43,43,59,102,111,114,40,118,97,114,32,105,61,48,59,105,60,114,46,112,97,114,116,115,46,108,101,110,103,116,104,59,105,43,43,41,114,46,112,97,114,116,115,91,105,93,40,110,46,112,97,114,116,115,91,105,93,41,59,102,111,114,40,59,105,60,110,46,112,97,114,116,115,46,108,101,110,103,116,104,59,105,43,43,41,114,46,112,97,114,116,115,46,112,117,115,104,40,111,40,110,46,112,97,114,116,115,91,105,93,41,41,59,114,46,112,97,114,116,115,46,108,101,110,103,116,104,62,110,46,112,97,114,116,115,46,108,101,110,103,116,104,38,38,40,114,46,112,97,114,116,115,46,108,101,110,103,116,104,61,110,46,112,97,114,116,115,46,108,101,110,103,116,104,41,125,101,108,115,101,123,102,111,114,40,118,97,114,32,97,61,91,93,44,105,61,48,59,105,60,110,46,112,97,114,116,115,46,108,101,110,103,116,104,59,105,43,43,41,97,46,112,117,115,104,40,111,40,110,46,112,97,114,116,115,91,105,93,41,41,59,117,91,110,46,105,100,93,61,123,105,100,58,110,46,105,100,44,114,101,102,115,58,49,44,112,97,114,116,115,58,97,125,125,125,125,102,117,110,99,116,105,111,110,32,105,40,41,123,118,97,114,32,101,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,92,34,115,116,121,108,101,92,34,41,59,114,101,116,117,114,110,32,101,46,116,121,112,101,61,92,34,116,101,120,116,47,99,115,115,92,34,44,102,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,44,101,125,102,117,110,99,116,105,111,110,32,111,40,101,41,123,118,97,114,32,116,44,110,44,114,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,92,34,115,116,121,108,101,91,92,34,43,98,43,39,126,61,92,34,39,43,101,46,105,100,43,39,92,34,93,39,41,59,105,102,40,114,41,123,105,102,40,112,41,114,101,116,117,114,110,32,118,59,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,125,105,102,40,120,41,123,118,97,114,32,111,61,104,43,43,59,114,61,100,124,124,40,100,61,105,40,41,41,44,116,61,97,46,98,105,110,100,40,110,117,108,108,44,114,44,111,44,33,49,41,44,110,61,97,46,98,105,110,100,40,110,117,108,108,44,114,44,111,44,33,48,41,125,101,108,115,101,32,114,61,105,40,41,44,116,61,115,46,98,105,110,100,40,110,117,108,108,44,114,41,44,110,61,102,117,110,99,116,105,111,110,40,41,123,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,125,59,114,101,116,117,114,110,32,116,40,101,41,44,102,117,110,99,116,105,111,110,40,114,41,123,105,102,40,114,41,123,105,102,40,114,46,99,115,115,61,61,61,101,46,99,115,115,38,38,114,46,109,101,100,105,97,61,61,61,101,46,109,101,100,105,97,38,38,114,46,115,111,117,114,99,101,77,97,112,61,61,61,101,46,115,111,117,114,99,101,77,97,112,41,114,101,116,117,114,110,59,116,40,101,61,114,41,125,101,108,115,101,32,110,40,41,125,125,102,117,110,99,116,105,111,110,32,97,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,61,110,63,92,34,92,34,58,114,46,99,115,115,59,105,102,40,101,46,115,116,121,108,101,83,104,101,101,116,41,101,46,115,116,121,108,101,83,104,101,101,116,46,99,115,115,84,101,120,116,61,109,40,116,44,105,41,59,101,108,115,101,123,118,97,114,32,111,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,105,41,44,97,61,101,46,99,104,105,108,100,78,111,100,101,115,59,97,91,116,93,38,38,101,46,114,101,109,111,118,101,67,104,105,108,100,40,97,91,116,93,41,44,97,46,108,101,110,103,116,104,63,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,111,44,97,91,116,93,41,58,101,46,97,112,112,101,110,100,67,104,105,108,100,40,111,41,125,125,102,117,110,99,116,105,111,110,32,115,40,101,44,116,41,123,118,97,114,32,110,61,116,46,99,115,115,44,114,61,116,46,109,101,100,105,97,44,105,61,116,46,115,111,117,114,99,101,77,97,112,59,105,102,40,114,38,38,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,109,101,100,105,97,92,34,44,114,41,44,103,46,115,115,114,73,100,38,38,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,98,44,116,46,105,100,41,44,105,38,38,40,110,43,61,92,34,92,92,110,47,42,35,32,115,111,117,114,99,101,85,82,76,61,92,34,43,105,46,115,111,117,114,99,101,115,91,48,93,43,92,34,32,42,47,92,34,44,110,43,61,92,34,92,92,110,47,42,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,100,97,116,97,58,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,59,98,97,115,101,54,52,44,92,34,43,98,116,111,97,40,117,110,101,115,99,97,112,101,40,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,105,41,41,41,41,43,92,34,32,42,47,92,34,41,44,101,46,115,116,121,108,101,83,104,101,101,116,41,101,46,115,116,121,108,101,83,104,101,101,116,46,99,115,115,84,101,120,116,61,110,59,101,108,115,101,123,102,111,114,40,59,101,46,102,105,114,115,116,67,104,105,108,100,59,41,101,46,114,101,109,111,118,101,67,104,105,108,100,40,101,46,102,105,114,115,116,67,104,105,108,100,41,59,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,110,41,41,125,125,118,97,114,32,99,61,92,34,117,110,100,101,102,105,110,101,100,92,34,33,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,59,105,102,40,92,34,117,110,100,101,102,105,110,101,100,92,34,33,61,116,121,112,101,111,102,32,68,69,66,85,71,38,38,68,69,66,85,71,38,38,33,99,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,34,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,32,99,97,110,110,111,116,32,98,101,32,117,115,101,100,32,105,110,32,97,32,110,111,110,45,98,114,111,119,115,101,114,32,101,110,118,105,114,111,110,109,101,110,116,46,32,85,115,101,32,123,32,116,97,114,103,101,116,58,32,39,110,111,100,101,39,32,125,32,105,110,32,121,111,117,114,32,87,101,98,112,97,99,107,32,99,111,110,102,105,103,32,116,111,32,105,110,100,105,99,97,116,101,32,97,32,115,101,114,118,101,114,45,114,101,110,100,101,114,105,110,103,32,101,110,118,105,114,111,110,109,101,110,116,46,92,34,41,59,118,97,114,32,108,61,110,40,54,52,41,44,117,61,123,125,44,102,61,99,38,38,40,100,111,99,117,109,101,110,116,46,104,101,97,100,124,124,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,92,34,104,101,97,100,92,34,41,91,48,93,41,44,100,61,110,117,108,108,44,104,61,48,44,112,61,33,49,44,118,61,102,117,110,99,116,105,111,110,40,41,123,125,44,103,61,110,117,108,108,44,98,61,92,34,100,97,116,97,45,118,117,101,45,115,115,114,45,105,100,92,34,44,120,61,92,34,117,110,100,101,102,105,110,101,100,92,34,33,61,116,121,112,101,111,102,32,110,97,118,105,103,97,116,111,114,38,38,47,109,115,105,101,32,91,54,45,57,93,92,92,98,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,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,105,41,123,112,61,110,44,103,61,105,124,124,123,125,59,118,97,114,32,111,61,108,40,101,44,116,41,59,114,101,116,117,114,110,32,114,40,111,41,44,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,91,93,44,105,61,48,59,105,60,111,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,97,61,111,91,105,93,44,115,61,117,91,97,46,105,100,93,59,115,46,114,101,102,115,45,45,44,110,46,112,117,115,104,40,115,41,125,116,63,40,111,61,108,40,101,44,116,41,44,114,40,111,41,41,58,111,61,91,93,59,102,111,114,40,118,97,114,32,105,61,48,59,105,60,110,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,115,61,110,91,105,93,59,105,102,40,48,61,61,61,115,46,114,101,102,115,41,123,102,111,114,40,118,97,114,32,99,61,48,59,99,60,115,46,112,97,114,116,115,46,108,101,110,103,116,104,59,99,43,43,41,115,46,112,97,114,116,115,91,99,93,40,41,59,100,101,108,101,116,101,32,117,91,115,46,105,100,93,125,125,125,125,59,118,97,114,32,109,61,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,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,101,91,116,93,61,110,44,101,46,102,105,108,116,101,114,40,66,111,111,108,101,97,110,41,46,106,111,105,110,40,92,34,92,92,110,92,34,41,125,125,40,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,44,115,61,101,61,101,124,124,123,125,44,99,61,116,121,112,101,111,102,32,101,46,100,101,102,97,117,108,116,59,92,34,111,98,106,101,99,116,92,34,33,61,61,99,38,38,92,34,102,117,110,99,116,105,111,110,92,34,33,61,61,99,124,124,40,97,61,101,44,115,61,101,46,100,101,102,97,117,108,116,41,59,118,97,114,32,108,61,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,115,63,115,46,111,112,116,105,111,110,115,58,115,59,116,38,38,40,108,46,114,101,110,100,101,114,61,116,46,114,101,110,100,101,114,44,108,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,61,116,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,108,46,95,99,111,109,112,105,108,101,100,61,33,48,41,44,110,38,38,40,108,46,102,117,110,99,116,105,111,110,97,108,61,33,48,41,44,105,38,38,40,108,46,95,115,99,111,112,101,73,100,61,105,41,59,118,97,114,32,117,59,105,102,40,111,63,40,117,61,102,117,110,99,116,105,111,110,40,101,41,123,101,61,101,124,124,116,104,105,115,46,36,118,110,111,100,101,38,38,116,104,105,115,46,36,118,110,111,100,101,46,115,115,114,67,111,110,116,101,120,116,124,124,116,104,105,115,46,112,97,114,101,110,116,38,38,116,104,105,115,46,112,97,114,101,110,116,46,36,118,110,111,100,101,38,38,116,104,105,115,46,112,97,114,101,110,116,46,36,118,110,111,100,101,46,115,115,114,67,111,110,116,101,120,116,44,101,124,124,92,34,117,110,100,101,102,105,110,101,100,92,34,61,61,116,121,112,101,111,102,32,95,95,86,85,69,95,83,83,82,95,67,79,78,84,69,88,84,95,95,124,124,40,101,61,95,95,86,85,69,95,83,83,82,95,67,79,78,84,69,88,84,95,95,41,44,114,38,38,114,46,99,97,108,108,40,116,104,105,115,44,101,41,44,101,38,38,101,46,95,114,101,103,105,115,116,101,114,101,100,67,111,109,112,111,110,101,110,116,115,38,38,101,46,95,114,101,103,105,115,116,101,114,101,100,67,111,109,112,111,110,101,110,116,115,46,97,100,100,40,111,41,125,44,108,46,95,115,115,114,82,101,103,105,115,116,101,114,61,117,41,58,114,38,38,40,117,61,114,41,44,117,41,123,118,97,114,32,102,61,108,46,102,117,110,99,116,105,111,110,97,108,44,100,61,102,63,108,46,114,101,110,100,101,114,58,108,46,98,101,102,111,114,101,67,114,101,97,116,101,59,102,63,40,108,46,95,105,110,106,101,99,116,83,116,121,108,101,115,61,117,44,108,46,114,101,110,100,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,117,46,99,97,108,108,40,116,41,44,100,40,101,44,116,41,125,41,58,108,46,98,101,102,111,114,101,67,114,101,97,116,101,61,100,63,91,93,46,99,111,110,99,97,116,40,100,44,117,41,58,91,117,93,125,114,101,116,117,114,110,123,101,115,77,111,100,117,108,101,58,97,44,101,120,112,111,114,116,115,58,115,44,111,112,116,105,111,110,115,58,108,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,118,97,114,32,110,44,114,61,101,38,38,101,46,97,59,33,40,110,61,101,38,38,101,46,104,115,108,63,40,48,44,111,46,100,101,102,97,117,108,116,41,40,101,46,104,115,108,41,58,101,38,38,101,46,104,101,120,38,38,101,46,104,101,120,46,108,101,110,103,116,104,62,48,63,40,48,44,111,46,100,101,102,97,117,108,116,41,40,101,46,104,101,120,41,58,101,38,38,101,46,104,115,118,63,40,48,44,111,46,100,101,102,97,117,108,116,41,40,101,46,104,115,118,41,58,101,38,38,101,46,114,103,98,97,63,40,48,44,111,46,100,101,102,97,117,108,116,41,40,101,46,114,103,98,97,41,58,101,38,38,101,46,114,103,98,63,40,48,44,111,46,100,101,102,97,117,108,116,41,40,101,46,114,103,98,41,58,40,48,44,111,46,100,101,102,97,117,108,116,41,40,101,41,41,124,124,118,111,105,100,32,48,33,61,61,110,46,95,97,38,38,110,117,108,108,33,61,61,110,46,95,97,124,124,110,46,115,101,116,65,108,112,104,97,40,114,124,124,49,41,59,118,97,114,32,105,61,110,46,116,111,72,115,108,40,41,44,97,61,110,46,116,111,72,115,118,40,41,59,114,101,116,117,114,110,32,48,61,61,61,105,46,115,38,38,40,97,46,104,61,105,46,104,61,101,46,104,124,124,101,46,104,115,108,38,38,101,46,104,115,108,46,104,124,124,116,124,124,48,41,44,123,104,115,108,58,105,44,104,101,120,58,110,46,116,111,72,101,120,83,116,114,105,110,103,40,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,44,104,101,120,56,58,110,46,116,111,72,101,120,56,83,116,114,105,110,103,40,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,44,114,103,98,97,58,110,46,116,111,82,103,98,40,41,44,104,115,118,58,97,44,111,108,100,72,117,101,58,101,46,104,124,124,116,124,124,105,46,104,44,115,111,117,114,99,101,58,101,46,115,111,117,114,99,101,44,97,58,101,46,97,124,124,110,46,103,101,116,65,108,112,104,97,40,41,125,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,54,53,41,44,111,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,40,105,41,59,116,46,100,101,102,97,117,108,116,61,123,112,114,111,112,115,58,91,92,34,118,97,108,117,101,92,34,93,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,118,97,108,58,114,40,116,104,105,115,46,118,97,108,117,101,41,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,108,111,114,115,58,123,103,101,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,118,97,108,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,118,97,108,61,101,44,116,104,105,115,46,36,101,109,105,116,40,92,34,105,110,112,117,116,92,34,44,101,41,125,125,125,44,119,97,116,99,104,58,123,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,118,97,108,61,114,40,101,41,125,125,44,109,101,116,104,111,100,115,58,123,99,111,108,111,114,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,111,108,100,72,117,101,61,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,44,116,104,105,115,46,99,111,108,111,114,115,61,114,40,101,44,116,124,124,116,104,105,115,46,111,108,100,72,117,101,41,125,44,105,115,86,97,108,105,100,72,101,120,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,48,44,111,46,100,101,102,97,117,108,116,41,40,101,41,46,105,115,86,97,108,105,100,40,41,125,44,115,105,109,112,108,101,67,104,101,99,107,70,111,114,86,97,108,105,100,67,111,108,111,114,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,91,92,34,114,92,34,44,92,34,103,92,34,44,92,34,98,92,34,44,92,34,97,92,34,44,92,34,104,92,34,44,92,34,115,92,34,44,92,34,108,92,34,44,92,34,118,92,34,93,44,110,61,48,44,114,61,48,44,105,61,48,59,105,60,116,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,111,61,116,91,105,93,59,101,91,111,93,38,38,40,110,43,43,44,105,115,78,97,78,40,101,91,111,93,41,124,124,114,43,43,41,125,105,102,40,110,61,61,61,114,41,114,101,116,117,114,110,32,101,125,44,112,97,108,101,116,116,101,85,112,112,101,114,67,97,115,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,41,125,44,105,115,84,114,97,110,115,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,32,48,61,61,61,40,48,44,111,46,100,101,102,97,117,108,116,41,40,101,41,46,103,101,116,65,108,112,104,97,40,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,101,46,101,120,112,111,114,116,115,61,92,34,117,110,100,101,102,105,110,101,100,92,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,119,105,110,100,111,119,46,77,97,116,104,61,61,77,97,116,104,63,119,105,110,100,111,119,58,92,34,117,110,100,101,102,105,110,101,100,92,34,33,61,116,121,112,101,111,102,32,115,101,108,102,38,38,115,101,108,102,46,77,97,116,104,61,61,77,97,116,104,63,115,101,108,102,58,70,117,110,99,116,105,111,110,40,92,34,114,101,116,117,114,110,32,116,104,105,115,92,34,41,40,41,59,92,34,110,117,109,98,101,114,92,34,61,61,116,121,112,101,111,102,32,95,95,103,38,38,40,95,95,103,61,110,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,99,124,124,110,40,54,54,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,54,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,92,34,100,101,102,97,117,108,116,92,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,101,41,123,110,46,100,40,116,44,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,101,93,125,41,125,40,97,41,59,118,97,114,32,115,61,110,40,54,56,41,44,99,61,33,49,44,108,61,110,40,50,41,44,117,61,114,44,102,61,108,40,111,46,97,44,115,46,97,44,33,49,44,117,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,99,111,109,109,111,110,47,69,100,105,116,97,98,108,101,73,110,112,117,116,46,118,117,101,92,34,44,116,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,123,125,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,59,101,46,101,120,112,111,114,116,115,61,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,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,56,41,44,105,61,110,40,49,56,41,59,101,46,101,120,112,111,114,116,115,61,110,40,57,41,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,114,46,102,40,101,44,116,44,105,40,49,44,110,41,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,101,91,116,93,61,110,44,101,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,54,41,44,105,61,110,40,52,50,41,44,111,61,110,40,50,53,41,44,97,61,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,59,116,46,102,61,110,40,57,41,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,114,40,101,41,44,116,61,111,40,116,44,33,48,41,44,114,40,110,41,44,105,41,116,114,121,123,114,101,116,117,114,110,32,97,40,101,44,116,44,110,41,125,99,97,116,99,104,40,101,41,123,125,105,102,40,92,34,103,101,116,92,34,105,110,32,110,124,124,92,34,115,101,116,92,34,105,110,32,110,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,92,34,65,99,99,101,115,115,111,114,115,32,110,111,116,32,115,117,112,112,111,114,116,101,100,33,92,34,41,59,114,101,116,117,114,110,92,34,118,97,108,117,101,92,34,105,110,32,110,38,38,40,101,91,116,93,61,110,46,118,97,108,117,101,41,44,101,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,101,46,101,120,112,111,114,116,115,61,33,110,40,49,55,41,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,33,61,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,92,34,97,92,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,125,125,41,46,97,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,57,48,41,44,105,61,110,40,50,52,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,114,40,105,40,101,41,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,50,57,41,40,92,34,119,107,115,92,34,41,44,105,61,110,40,49,57,41,44,111,61,110,40,52,41,46,83,121,109,98,111,108,44,97,61,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,111,59,40,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,114,91,101,93,124,124,40,114,91,101,93,61,97,38,38,111,91,101,93,124,124,40,97,63,111,58,105,41,40,92,34,83,121,109,98,111,108,46,92,34,43,101,41,41,125,41,46,115,116,111,114,101,61,114,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,92,34,111,98,106,101,99,116,92,34,61,61,116,121,112,101,111,102,32,101,63,110,117,108,108,33,61,61,101,58,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,101,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,99,124,124,110,40,49,49,49,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,49,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,92,34,100,101,102,97,117,108,116,92,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,101,41,123,110,46,100,40,116,44,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,101,93,125,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,49,51,41,44,99,61,33,49,44,108,61,110,40,50,41,44,117,61,114,44,102,61,108,40,111,46,97,44,115,46,97,44,33,49,44,117,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,99,111,109,109,111,110,47,72,117,101,46,118,117,101,92,34,44,116,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,46,101,120,112,111,114,116,115,61,33,48,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,101,46,101,120,112,111,114,116,115,61,123,118,101,114,115,105,111,110,58,92,34,50,46,54,46,49,49,92,34,125,59,92,34,110,117,109,98,101,114,92,34,61,61,116,121,112,101,111,102,32,95,95,101,38,38,40,95,95,101,61,110,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,50,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,114,40,101,41,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,101,43,92,34,32,105,115,32,110,111,116,32,97,110,32,111,98,106,101,99,116,33,92,34,41,59,114,101,116,117,114,110,32,101,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,116,114,121,123,114,101,116,117,114,110,33,33,101,40,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,33,48,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,123,101,110,117,109,101,114,97,98,108,101,58,33,40,49,38,101,41,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,40,50,38,101,41,44,119,114,105,116,97,98,108,101,58,33,40,52,38,101,41,44,118,97,108,117,101,58,116,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,48,44,114,61,77,97,116,104,46,114,97,110,100,111,109,40,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,92,34,83,121,109,98,111,108,40,92,34,46,99,111,110,99,97,116,40,118,111,105,100,32,48,61,61,61,101,63,92,34,92,34,58,101,44,92,34,41,95,92,34,44,40,43,43,110,43,114,41,46,116,111,83,116,114,105,110,103,40,51,54,41,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,99,124,124,110,40,49,50,51,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,52,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,92,34,100,101,102,97,117,108,116,92,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,101,41,123,110,46,100,40,116,44,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,101,93,125,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,50,55,41,44,99,61,33,49,44,108,61,110,40,50,41,44,117,61,114,44,102,61,108,40,111,46,97,44,115,46,97,44,33,49,44,117,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,99,111,109,109,111,110,47,83,97,116,117,114,97,116,105,111,110,46,118,117,101,92,34,44,116,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,99,124,124,110,40,49,50,56,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,53,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,92,34,100,101,102,97,117,108,116,92,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,101,41,123,110,46,100,40,116,44,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,101,93,125,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,51,51,41,44,99,61,33,49,44,108,61,110,40,50,41,44,117,61,114,44,102,61,108,40,111,46,97,44,115,46,97,44,33,49,44,117,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,99,111,109,109,111,110,47,65,108,112,104,97,46,118,117,101,92,34,44,116,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,99,124,124,110,40,49,51,48,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,54,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,92,34,100,101,102,97,117,108,116,92,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,101,41,123,110,46,100,40,116,44,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,101,93,125,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,51,50,41,44,99,61,33,49,44,108,61,110,40,50,41,44,117,61,114,44,102,61,108,40,111,46,97,44,115,46,97,44,33,49,44,117,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,99,111,109,109,111,110,47,67,104,101,99,107,98,111,97,114,100,46,118,117,101,92,34,44,116,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,77,97,116,104,46,99,101,105,108,44,114,61,77,97,116,104,46,102,108,111,111,114,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,101,61,43,101,41,63,48,58,40,101,62,48,63,114,58,110,41,40,101,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,118,111,105,100,32,48,61,61,101,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,92,34,67,97,110,39,116,32,99,97,108,108,32,109,101,116,104,111,100,32,111,110,32,32,92,34,43,101,41,59,114,101,116,117,114,110,32,101,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,50,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,114,40,101,41,41,114,101,116,117,114,110,32,101,59,118,97,114,32,110,44,105,59,105,102,40,116,38,38,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,40,110,61,101,46,116,111,83,116,114,105,110,103,41,38,38,33,114,40,105,61,110,46,99,97,108,108,40,101,41,41,41,114,101,116,117,114,110,32,105,59,105,102,40,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,40,110,61,101,46,118,97,108,117,101,79,102,41,38,38,33,114,40,105,61,110,46,99,97,108,108,40,101,41,41,41,114,101,116,117,114,110,32,105,59,105,102,40,33,116,38,38,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,40,110,61,101,46,116,111,83,116,114,105,110,103,41,38,38,33,114,40,105,61,110,46,99,97,108,108,40,101,41,41,41,114,101,116,117,114,110,32,105,59,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,92,34,67,97,110,39,116,32,99,111,110,118,101,114,116,32,111,98,106,101,99,116,32,116,111,32,112,114,105,109,105,116,105,118,101,32,118,97,108,117,101,92,34,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,46,101,120,112,111,114,116,115,61,123,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,52,54,41,44,105,61,110,40,51,48,41,59,101,46,101,120,112,111,114,116,115,61,79,98,106,101,99,116,46,107,101,121,115,124,124,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,114,40,101,44,105,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,50,57,41,40,92,34,107,101,121,115,92,34,41,44,105,61,110,40,49,57,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,114,91,101,93,124,124,40,114,91,101,93,61,105,40,101,41,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,53,41,44,105,61,110,40,52,41,44,111,61,105,91,92,34,95,95,99,111,114,101,45,106,115,95,115,104,97,114,101,100,95,95,92,34,93,124,124,40,105,91,92,34,95,95,99,111,114,101,45,106,115,95,115,104,97,114,101,100,95,95,92,34,93,61,123,125,41,59,40,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,111,91,101,93,124,124,40,111,91,101,93,61,118,111,105,100,32,48,33,61,61,116,63,116,58,123,125,41,125,41,40,92,34,118,101,114,115,105,111,110,115,92,34,44,91,93,41,46,112,117,115,104,40,123,118,101,114,115,105,111,110,58,114,46,118,101,114,115,105,111,110,44,109,111,100,101,58,110,40,49,52,41,63,92,34,112,117,114,101,92,34,58,92,34,103,108,111,98,97,108,92,34,44,99,111,112,121,114,105,103,104,116,58,92,34,194,169,32,50,48,49,57,32,68,101,110,105,115,32,80,117,115,104,107,97,114,101,118,32,40,122,108,111,105,114,111,99,107,46,114,117,41,92,34,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,46,101,120,112,111,114,116,115,61,92,34,99,111,110,115,116,114,117,99,116,111,114,44,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,105,115,80,114,111,116,111,116,121,112,101,79,102,44,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,44,116,111,76,111,99,97,108,101,83,116,114,105,110,103,44,116,111,83,116,114,105,110,103,44,118,97,108,117,101,79,102,92,34,46,115,112,108,105,116,40,92,34,44,92,34,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,56,41,46,102,44,105,61,110,40,54,41,44,111,61,110,40,49,49,41,40,92,34,116,111,83,116,114,105,110,103,84,97,103,92,34,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,101,38,38,33,105,40,101,61,110,63,101,58,101,46,112,114,111,116,111,116,121,112,101,44,111,41,38,38,114,40,101,44,111,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,118,97,108,117,101,58,116,125,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,116,46,102,61,110,40,49,49,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,52,41,44,105,61,110,40,49,53,41,44,111,61,110,40,49,52,41,44,97,61,110,40,51,50,41,44,115,61,110,40,56,41,46,102,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,105,46,83,121,109,98,111,108,124,124,40,105,46,83,121,109,98,111,108,61,111,63,123,125,58,114,46,83,121,109,98,111,108,124,124,123,125,41,59,92,34,95,92,34,61,61,101,46,99,104,97,114,65,116,40,48,41,124,124,101,32,105,110,32,116,124,124,115,40,116,44,101,44,123,118,97,108,117,101,58,97,46,102,40,101,41,125,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,46,102,61,123,125,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,41,44,111,61,114,40,105,41,44,97,61,110,40,53,41,44,115,61,114,40,97,41,44,99,61,91,92,34,35,52,68,52,68,52,68,92,34,44,92,34,35,57,57,57,57,57,57,92,34,44,92,34,35,70,70,70,70,70,70,92,34,44,92,34,35,70,52,52,69,51,66,92,34,44,92,34,35,70,69,57,50,48,48,92,34,44,92,34,35,70,67,68,67,48,48,92,34,44,92,34,35,68,66,68,70,48,48,92,34,44,92,34,35,65,52,68,68,48,48,92,34,44,92,34,35,54,56,67,67,67,65,92,34,44,92,34,35,55,51,68,56,70,70,92,34,44,92,34,35,65,69,65,49,70,70,92,34,44,92,34,35,70,68,65,49,70,70,92,34,44,92,34,35,51,51,51,51,51,51,92,34,44,92,34,35,56,48,56,48,56,48,92,34,44,92,34,35,67,67,67,67,67,67,92,34,44,92,34,35,68,51,51,49,49,53,92,34,44,92,34,35,69,50,55,51,48,48,92,34,44,92,34,35,70,67,67,52,48,48,92,34,44,92,34,35,66,48,66,67,48,48,92,34,44,92,34,35,54,56,66,67,48,48,92,34,44,92,34,35,49,54,65,53,65,53,92,34,44,92,34,35,48,48,57,67,69,48,92,34,44,92,34,35,55,66,54,52,70,70,92,34,44,92,34,35,70,65,50,56,70,70,92,34,44,92,34,35,48,48,48,48,48,48,92,34,44,92,34,35,54,54,54,54,54,54,92,34,44,92,34,35,66,51,66,51,66,51,92,34,44,92,34,35,57,70,48,53,48,48,92,34,44,92,34,35,67,52,53,49,48,48,92,34,44,92,34,35,70,66,57,69,48,48,92,34,44,92,34,35,56,48,56,57,48,48,92,34,44,92,34,35,49,57,52,68,51,51,92,34,44,92,34,35,48,67,55,57,55,68,92,34,44,92,34,35,48,48,54,50,66,49,92,34,44,92,34,35,54,53,51,50,57,52,92,34,44,92,34,35,65,66,49,52,57,69,92,34,93,59,116,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,92,34,67,111,109,112,97,99,116,92,34,44,109,105,120,105,110,115,58,91,111,46,100,101,102,97,117,108,116,93,44,112,114,111,112,115,58,123,112,97,108,101,116,116,101,58,123,116,121,112,101,58,65,114,114,97,121,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,125,125,125,44,99,111,109,112,111,110,101,110,116,115,58,123,92,34,101,100,45,105,110,92,34,58,115,46,100,101,102,97,117,108,116,125,44,99,111,109,112,117,116,101,100,58,123,112,105,99,107,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,111,114,115,46,104,101,120,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,125,44,109,101,116,104,111,100,115,58,123,104,97,110,100,108,101,114,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,101,44,115,111,117,114,99,101,58,92,34,104,101,120,92,34,125,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,44,116,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,92,34,101,100,105,116,97,98,108,101,73,110,112,117,116,92,34,44,112,114,111,112,115,58,123,108,97,98,101,108,58,83,116,114,105,110,103,44,108,97,98,101,108,84,101,120,116,58,83,116,114,105,110,103,44,100,101,115,99,58,83,116,114,105,110,103,44,118,97,108,117,101,58,91,83,116,114,105,110,103,44,78,117,109,98,101,114,93,44,109,97,120,58,78,117,109,98,101,114,44,109,105,110,58,78,117,109,98,101,114,44,97,114,114,111,119,79,102,102,115,101,116,58,123,116,121,112,101,58,78,117,109,98,101,114,44,100,101,102,97,117,108,116,58,49,125,125,44,99,111,109,112,117,116,101,100,58,123,118,97,108,58,123,103,101,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,118,97,108,117,101,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,40,118,111,105,100,32,48,33,61,61,116,104,105,115,46,109,97,120,38,38,43,101,62,116,104,105,115,46,109,97,120,41,41,114,101,116,117,114,110,32,101,59,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,118,97,108,117,101,61,116,104,105,115,46,109,97,120,125,125,44,108,97,98,101,108,73,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,92,34,105,110,112,117,116,95,95,108,97,98,101,108,95,95,92,34,43,116,104,105,115,46,108,97,98,101,108,43,92,34,95,95,92,34,43,77,97,116,104,46,114,97,110,100,111,109,40,41,46,116,111,83,116,114,105,110,103,40,41,46,115,108,105,99,101,40,50,44,53,41,125,44,108,97,98,101,108,83,112,97,110,84,101,120,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,108,97,98,101,108,84,101,120,116,124,124,116,104,105,115,46,108,97,98,101,108,125,125,44,109,101,116,104,111,100,115,58,123,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,40,101,46,116,97,114,103,101,116,46,118,97,108,117,101,41,125,44,104,97,110,100,108,101,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,123,125,59,116,91,116,104,105,115,46,108,97,98,101,108,93,61,101,44,118,111,105,100,32,48,61,61,61,116,46,104,101,120,38,38,118,111,105,100,32,48,61,61,61,116,91,92,34,35,92,34,93,63,116,104,105,115,46,36,101,109,105,116,40,92,34,99,104,97,110,103,101,92,34,44,116,41,58,101,46,108,101,110,103,116,104,62,53,38,38,116,104,105,115,46,36,101,109,105,116,40,92,34,99,104,97,110,103,101,92,34,44,116,41,125,44,104,97,110,100,108,101,75,101,121,68,111,119,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,118,97,108,44,110,61,78,117,109,98,101,114,40,116,41,59,105,102,40,110,41,123,118,97,114,32,114,61,116,104,105,115,46,97,114,114,111,119,79,102,102,115,101,116,124,124,49,59,51,56,61,61,61,101,46,107,101,121,67,111,100,101,38,38,40,116,61,110,43,114,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,40,116,41,44,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,44,52,48,61,61,61,101,46,107,101,121,67,111,100,101,38,38,40,116,61,110,45,114,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,40,116,41,44,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,125,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,114,61,110,40,51,41,44,105,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,40,114,41,44,111,61,91,92,34,35,70,70,70,70,70,70,92,34,44,92,34,35,70,50,70,50,70,50,92,34,44,92,34,35,69,54,69,54,69,54,92,34,44,92,34,35,68,57,68,57,68,57,92,34,44,92,34,35,67,67,67,67,67,67,92,34,44,92,34,35,66,70,66,70,66,70,92,34,44,92,34,35,66,51,66,51,66,51,92,34,44,92,34,35,65,54,65,54,65,54,92,34,44,92,34,35,57,57,57,57,57,57,92,34,44,92,34,35,56,67,56,67,56,67,92,34,44,92,34,35,56,48,56,48,56,48,92,34,44,92,34,35,55,51,55,51,55,51,92,34,44,92,34,35,54,54,54,54,54,54,92,34,44,92,34,35,53,57,53,57,53,57,92,34,44,92,34,35,52,68,52,68,52,68,92,34,44,92,34,35,52,48,52,48,52,48,92,34,44,92,34,35,51,51,51,51,51,51,92,34,44,92,34,35,50,54,50,54,50,54,92,34,44,92,34,35,48,68,48,68,48,68,92,34,44,92,34,35,48,48,48,48,48,48,92,34,93,59,116,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,92,34,71,114,97,121,115,99,97,108,101,92,34,44,109,105,120,105,110,115,58,91,105,46,100,101,102,97,117,108,116,93,44,112,114,111,112,115,58,123,112,97,108,101,116,116,101,58,123,116,121,112,101,58,65,114,114,97,121,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,125,125,125,44,99,111,109,112,111,110,101,110,116,115,58,123,125,44,99,111,109,112,117,116,101,100,58,123,112,105,99,107,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,111,114,115,46,104,101,120,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,125,44,109,101,116,104,111,100,115,58,123,104,97,110,100,108,101,114,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,101,44,115,111,117,114,99,101,58,92,34,104,101,120,92,34,125,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,41,44,111,61,114,40,105,41,44,97,61,110,40,51,41,44,115,61,114,40,97,41,59,116,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,92,34,77,97,116,101,114,105,97,108,92,34,44,109,105,120,105,110,115,58,91,115,46,100,101,102,97,117,108,116,93,44,99,111,109,112,111,110,101,110,116,115,58,123,92,34,101,100,45,105,110,92,34,58,111,46,100,101,102,97,117,108,116,125,44,109,101,116,104,111,100,115,58,123,111,110,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,40,101,46,104,101,120,63,116,104,105,115,46,105,115,86,97,108,105,100,72,101,120,40,101,46,104,101,120,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,101,46,104,101,120,44,115,111,117,114,99,101,58,92,34,104,101,120,92,34,125,41,58,40,101,46,114,124,124,101,46,103,124,124,101,46,98,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,114,58,101,46,114,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,114,44,103,58,101,46,103,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,103,44,98,58,101,46,98,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,98,44,97,58,101,46,97,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,97,44,115,111,117,114,99,101,58,92,34,114,103,98,97,92,34,125,41,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,56,49,41,44,111,61,114,40,105,41,44,97,61,110,40,51,41,44,115,61,114,40,97,41,44,99,61,110,40,49,51,41,44,108,61,114,40,99,41,59,116,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,92,34,83,108,105,100,101,114,92,34,44,109,105,120,105,110,115,58,91,115,46,100,101,102,97,117,108,116,93,44,112,114,111,112,115,58,123,115,119,97,116,99,104,101,115,58,123,116,121,112,101,58,65,114,114,97,121,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,123,115,58,46,53,44,108,58,46,56,125,44,123,115,58,46,53,44,108,58,46,54,53,125,44,123,115,58,46,53,44,108,58,46,53,125,44,123,115,58,46,53,44,108,58,46,51,53,125,44,123,115,58,46,53,44,108,58,46,50,125,93,125,125,125,44,99,111,109,112,111,110,101,110,116,115,58,123,104,117,101,58,108,46,100,101,102,97,117,108,116,125,44,99,111,109,112,117,116,101,100,58,123,110,111,114,109,97,108,105,122,101,100,83,119,97,116,99,104,101,115,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,119,97,116,99,104,101,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,92,34,111,98,106,101,99,116,92,34,33,61,61,40,118,111,105,100,32,48,61,61,61,101,63,92,34,117,110,100,101,102,105,110,101,100,92,34,58,40,48,44,111,46,100,101,102,97,117,108,116,41,40,101,41,41,63,123,115,58,46,53,44,108,58,101,125,58,101,125,41,125,125,44,109,101,116,104,111,100,115,58,123,105,115,65,99,116,105,118,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,99,111,108,111,114,115,46,104,115,108,59,114,101,116,117,114,110,32,49,61,61,61,110,46,108,38,38,49,61,61,61,101,46,108,124,124,40,48,61,61,61,110,46,108,38,38,48,61,61,61,101,46,108,124,124,77,97,116,104,46,97,98,115,40,110,46,108,45,101,46,108,41,60,46,48,49,38,38,77,97,116,104,46,97,98,115,40,110,46,115,45,101,46,115,41,60,46,48,49,41,125,44,104,117,101,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,101,41,125,44,104,97,110,100,108,101,83,119,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,44,115,58,116,46,115,44,108,58,116,46,108,44,115,111,117,114,99,101,58,92,34,104,115,108,92,34,125,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,61,110,40,49,52,41,44,105,61,110,40,52,49,41,44,111,61,110,40,52,52,41,44,97,61,110,40,55,41,44,115,61,110,40,50,54,41,44,99,61,110,40,56,56,41,44,108,61,110,40,51,49,41,44,117,61,110,40,57,53,41,44,102,61,110,40,49,49,41,40,92,34,105,116,101,114,97,116,111,114,92,34,41,44,100,61,33,40,91,93,46,107,101,121,115,38,38,92,34,110,101,120,116,92,34,105,110,91,93,46,107,101,121,115,40,41,41,44,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,112,44,118,44,103,44,98,41,123,99,40,110,44,116,44,112,41,59,118,97,114,32,120,44,109,44,95,44,119,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,100,38,38,101,32,105,110,32,70,41,114,101,116,117,114,110,32,70,91,101,93,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,92,34,107,101,121,115,92,34,58,99,97,115,101,92,34,118,97,108,117,101,115,92,34,58,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,101,119,32,110,40,116,104,105,115,44,101,41,125,125,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,101,119,32,110,40,116,104,105,115,44,101,41,125,125,44,121,61,116,43,92,34,32,73,116,101,114,97,116,111,114,92,34,44,67,61,92,34,118,97,108,117,101,115,92,34,61,61,118,44,107,61,33,49,44,70,61,101,46,112,114,111,116,111,116,121,112,101,44,83,61,70,91,102,93,124,124,70,91,92,34,64,64,105,116,101,114,97,116,111,114,92,34,93,124,124,118,38,38,70,91,118,93,44,65,61,83,124,124,119,40,118,41,44,79,61,118,63,67,63,119,40,92,34,101,110,116,114,105,101,115,92,34,41,58,65,58,118,111,105,100,32,48,44,69,61,92,34,65,114,114,97,121,92,34,61,61,116,63,70,46,101,110,116,114,105,101,115,124,124,83,58,83,59,105,102,40,69,38,38,40,95,61,117,40,69,46,99,97,108,108,40,110,101,119,32,101,41,41,41,33,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,38,38,95,46,110,101,120,116,38,38,40,108,40,95,44,121,44,33,48,41,44,114,124,124,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,95,91,102,93,124,124,97,40,95,44,102,44,104,41,41,44,67,38,38,83,38,38,92,34,118,97,108,117,101,115,92,34,33,61,61,83,46,110,97,109,101,38,38,40,107,61,33,48,44,65,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,83,46,99,97,108,108,40,116,104,105,115,41,125,41,44,114,38,38,33,98,124,124,33,100,38,38,33,107,38,38,70,91,102,93,124,124,97,40,70,44,102,44,65,41,44,115,91,116,93,61,65,44,115,91,121,93,61,104,44,118,41,105,102,40,120,61,123,118,97,108,117,101,115,58,67,63,65,58,119,40,92,34,118,97,108,117,101,115,92,34,41,44,107,101,121,115,58,103,63,65,58,119,40,92,34,107,101,121,115,92,34,41,44,101,110,116,114,105,101,115,58,79,125,44,98,41,102,111,114,40,109,32,105,110,32,120,41,109,32,105,110,32,70,124,124,111,40,70,44,109,44,120,91,109,93,41,59,101,108,115,101,32,105,40,105,46,80,43,105,46,70,42,40,100,124,124,107,41,44,116,44,120,41,59,114,101,116,117,114,110,32,120,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,52,41,44,105,61,110,40,49,53,41,44,111,61,110,40,56,54,41,44,97,61,110,40,55,41,44,115,61,110,40,54,41,44,99,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,108,44,117,44,102,44,100,61,101,38,99,46,70,44,104,61,101,38,99,46,71,44,112,61,101,38,99,46,83,44,118,61,101,38,99,46,80,44,103,61,101,38,99,46,66,44,98,61,101,38,99,46,87,44,120,61,104,63,105,58,105,91,116,93,124,124,40,105,91,116,93,61,123,125,41,44,109,61,120,46,112,114,111,116,111,116,121,112,101,44,95,61,104,63,114,58,112,63,114,91,116,93,58,40,114,91,116,93,124,124,123,125,41,46,112,114,111,116,111,116,121,112,101,59,104,38,38,40,110,61,116,41,59,102,111,114,40,108,32,105,110,32,110,41,40,117,61,33,100,38,38,95,38,38,118,111,105,100,32,48,33,61,61,95,91,108,93,41,38,38,115,40,120,44,108,41,124,124,40,102,61,117,63,95,91,108,93,58,110,91,108,93,44,120,91,108,93,61,104,38,38,92,34,102,117,110,99,116,105,111,110,92,34,33,61,116,121,112,101,111,102,32,95,91,108,93,63,110,91,108,93,58,103,38,38,117,63,111,40,102,44,114,41,58,98,38,38,95,91,108,93,61,61,102,63,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,102,117,110,99,116,105,111,110,40,116,44,110,44,114,41,123,105,102,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,101,41,123,115,119,105,116,99,104,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,101,119,32,101,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,101,119,32,101,40,116,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,101,119,32,101,40,116,44,110,41,125,114,101,116,117,114,110,32,110,101,119,32,101,40,116,44,110,44,114,41,125,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,59,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,61,101,46,112,114,111,116,111,116,121,112,101,44,116,125,40,102,41,58,118,38,38,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,102,63,111,40,70,117,110,99,116,105,111,110,46,99,97,108,108,44,102,41,58,102,44,118,38,38,40,40,120,46,118,105,114,116,117,97,108,124,124,40,120,46,118,105,114,116,117,97,108,61,123,125,41,41,91,108,93,61,102,44,101,38,99,46,82,38,38,109,38,38,33,109,91,108,93,38,38,97,40,109,44,108,44,102,41,41,41,125,59,99,46,70,61,49,44,99,46,71,61,50,44,99,46,83,61,52,44,99,46,80,61,56,44,99,46,66,61,49,54,44,99,46,87,61,51,50,44,99,46,85,61,54,52,44,99,46,82,61,49,50,56,44,101,46,101,120,112,111,114,116,115,61,99,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,101,46,101,120,112,111,114,116,115,61,33,110,40,57,41,38,38,33,110,40,49,55,41,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,33,61,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,110,40,52,51,41,40,92,34,100,105,118,92,34,41,44,92,34,97,92,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,125,125,41,46,97,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,50,41,44,105,61,110,40,52,41,46,100,111,99,117,109,101,110,116,44,111,61,114,40,105,41,38,38,114,40,105,46,99,114,101,97,116,101,69,108,101,109,101,110,116,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,111,63,105,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,101,41,58,123,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,101,46,101,120,112,111,114,116,115,61,110,40,55,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,54,41,44,105,61,110,40,56,57,41,44,111,61,110,40,51,48,41,44,97,61,110,40,50,56,41,40,92,34,73,69,95,80,82,79,84,79,92,34,41,44,115,61,102,117,110,99,116,105,111,110,40,41,123,125,44,99,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,61,110,40,52,51,41,40,92,34,105,102,114,97,109,101,92,34,41,44,114,61,111,46,108,101,110,103,116,104,59,102,111,114,40,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,92,34,110,111,110,101,92,34,44,110,40,57,52,41,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,44,116,46,115,114,99,61,92,34,106,97,118,97,115,99,114,105,112,116,58,92,34,44,101,61,116,46,99,111,110,116,101,110,116,87,105,110,100,111,119,46,100,111,99,117,109,101,110,116,44,101,46,111,112,101,110,40,41,44,101,46,119,114,105,116,101,40,92,34,60,115,99,114,105,112,116,62,100,111,99,117,109,101,110,116,46,70,61,79,98,106,101,99,116,60,92,92,47,115,99,114,105,112,116,62,92,34,41,44,101,46,99,108,111,115,101,40,41,44,99,61,101,46,70,59,114,45,45,59,41,100,101,108,101,116,101,32,99,46,112,114,111,116,111,116,121,112,101,91,111,91,114,93,93,59,114,101,116,117,114,110,32,99,40,41,125,59,101,46,101,120,112,111,114,116,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,124,124,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,110,117,108,108,33,61,61,101,63,40,115,46,112,114,111,116,111,116,121,112,101,61,114,40,101,41,44,110,61,110,101,119,32,115,44,115,46,112,114,111,116,111,116,121,112,101,61,110,117,108,108,44,110,91,97,93,61,101,41,58,110,61,99,40,41,44,118,111,105,100,32,48,61,61,61,116,63,110,58,105,40,110,44,116,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,54,41,44,105,61,110,40,49,48,41,44,111,61,110,40,57,49,41,40,33,49,41,44,97,61,110,40,50,56,41,40,92,34,73,69,95,80,82,79,84,79,92,34,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,115,61,105,40,101,41,44,99,61,48,44,108,61,91,93,59,102,111,114,40,110,32,105,110,32,115,41,110,33,61,97,38,38,114,40,115,44,110,41,38,38,108,46,112,117,115,104,40,110,41,59,102,111,114,40,59,116,46,108,101,110,103,116,104,62,99,59,41,114,40,115,44,110,61,116,91,99,43,43,93,41,38,38,40,126,111,40,108,44,110,41,124,124,108,46,112,117,115,104,40,110,41,41,59,114,101,116,117,114,110,32,108,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,123,125,46,116,111,83,116,114,105,110,103,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,99,97,108,108,40,101,41,46,115,108,105,99,101,40,56,44,45,49,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,50,52,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,40,114,40,101,41,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,46,102,61,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,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,52,54,41,44,105,61,110,40,51,48,41,46,99,111,110,99,97,116,40,92,34,108,101,110,103,116,104,92,34,44,92,34,112,114,111,116,111,116,121,112,101,92,34,41,59,116,46,102,61,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,124,124,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,114,40,101,44,105,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,44,116,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,92,34,72,117,101,92,34,44,112,114,111,112,115,58,123,118,97,108,117,101,58,79,98,106,101,99,116,44,100,105,114,101,99,116,105,111,110,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,92,34,104,111,114,105,122,111,110,116,97,108,92,34,125,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,111,108,100,72,117,101,58,48,44,112,117,108,108,68,105,114,101,99,116,105,111,110,58,92,34,92,34,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,108,111,114,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,118,97,108,117,101,46,104,115,108,46,104,59,114,101,116,117,114,110,32,48,33,61,61,101,38,38,101,45,116,104,105,115,46,111,108,100,72,117,101,62,48,38,38,40,116,104,105,115,46,112,117,108,108,68,105,114,101,99,116,105,111,110,61,92,34,114,105,103,104,116,92,34,41,44,48,33,61,61,101,38,38,101,45,116,104,105,115,46,111,108,100,72,117,101,60,48,38,38,40,116,104,105,115,46,112,117,108,108,68,105,114,101,99,116,105,111,110,61,92,34,108,101,102,116,92,34,41,44,116,104,105,115,46,111,108,100,72,117,101,61,101,44,116,104,105,115,46,118,97,108,117,101,125,44,100,105,114,101,99,116,105,111,110,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,92,34,118,99,45,104,117,101,45,45,104,111,114,105,122,111,110,116,97,108,92,34,58,92,34,104,111,114,105,122,111,110,116,97,108,92,34,61,61,61,116,104,105,115,46,100,105,114,101,99,116,105,111,110,44,92,34,118,99,45,104,117,101,45,45,118,101,114,116,105,99,97,108,92,34,58,92,34,118,101,114,116,105,99,97,108,92,34,61,61,61,116,104,105,115,46,100,105,114,101,99,116,105,111,110,125,125,44,112,111,105,110,116,101,114,84,111,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,92,34,118,101,114,116,105,99,97,108,92,34,61,61,61,116,104,105,115,46,100,105,114,101,99,116,105,111,110,63,48,61,61,61,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,38,38,92,34,114,105,103,104,116,92,34,61,61,61,116,104,105,115,46,112,117,108,108,68,105,114,101,99,116,105,111,110,63,48,58,45,49,48,48,42,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,47,51,54,48,43,49,48,48,43,92,34,37,92,34,58,48,125,44,112,111,105,110,116,101,114,76,101,102,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,92,34,118,101,114,116,105,99,97,108,92,34,61,61,61,116,104,105,115,46,100,105,114,101,99,116,105,111,110,63,48,58,48,61,61,61,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,38,38,92,34,114,105,103,104,116,92,34,61,61,61,116,104,105,115,46,112,117,108,108,68,105,114,101,99,116,105,111,110,63,92,34,49,48,48,37,92,34,58,49,48,48,42,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,47,51,54,48,43,92,34,37,92,34,125,125,44,109,101,116,104,111,100,115,58,123,104,97,110,100,108,101,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,33,116,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,110,61,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,97,105,110,101,114,59,105,102,40,110,41,123,118,97,114,32,114,44,105,44,111,61,110,46,99,108,105,101,110,116,87,105,100,116,104,44,97,61,110,46,99,108,105,101,110,116,72,101,105,103,104,116,44,115,61,110,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,43,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,44,99,61,110,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,43,119,105,110,100,111,119,46,112,97,103,101,89,79,102,102,115,101,116,44,108,61,101,46,112,97,103,101,88,124,124,40,101,46,116,111,117,99,104,101,115,63,101,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,58,48,41,44,117,61,101,46,112,97,103,101,89,124,124,40,101,46,116,111,117,99,104,101,115,63,101,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,89,58,48,41,44,102,61,108,45,115,44,100,61,117,45,99,59,92,34,118,101,114,116,105,99,97,108,92,34,61,61,61,116,104,105,115,46,100,105,114,101,99,116,105,111,110,63,40,100,60,48,63,114,61,51,54,48,58,100,62,97,63,114,61,48,58,40,105,61,45,49,48,48,42,100,47,97,43,49,48,48,44,114,61,51,54,48,42,105,47,49,48,48,41,44,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,33,61,61,114,38,38,116,104,105,115,46,36,101,109,105,116,40,92,34,99,104,97,110,103,101,92,34,44,123,104,58,114,44,115,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,115,44,108,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,108,44,97,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,97,44,115,111,117,114,99,101,58,92,34,104,115,108,92,34,125,41,41,58,40,102,60,48,63,114,61,48,58,102,62,111,63,114,61,51,54,48,58,40,105,61,49,48,48,42,102,47,111,44,114,61,51,54,48,42,105,47,49,48,48,41,44,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,33,61,61,114,38,38,116,104,105,115,46,36,101,109,105,116,40,92,34,99,104,97,110,103,101,92,34,44,123,104,58,114,44,115,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,115,44,108,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,108,44,97,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,97,44,115,111,117,114,99,101,58,92,34,104,115,108,92,34,125,41,41,125,125,44,104,97,110,100,108,101,77,111,117,115,101,68,111,119,110,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,40,101,44,33,48,41,44,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,109,111,118,101,92,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,117,112,92,34,44,116,104,105,115,46,104,97,110,100,108,101,77,111,117,115,101,85,112,41,125,44,104,97,110,100,108,101,77,111,117,115,101,85,112,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,117,110,98,105,110,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,44,117,110,98,105,110,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,109,111,118,101,92,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,117,112,92,34,44,116,104,105,115,46,104,97,110,100,108,101,77,111,117,115,101,85,112,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,49,49,56,41,44,111,61,114,40,105,41,44,97,61,110,40,51,41,44,115,61,114,40,97,41,44,99,61,91,92,34,114,101,100,92,34,44,92,34,112,105,110,107,92,34,44,92,34,112,117,114,112,108,101,92,34,44,92,34,100,101,101,112,80,117,114,112,108,101,92,34,44,92,34,105,110,100,105,103,111,92,34,44,92,34,98,108,117,101,92,34,44,92,34,108,105,103,104,116,66,108,117,101,92,34,44,92,34,99,121,97,110,92,34,44,92,34,116,101,97,108,92,34,44,92,34,103,114,101,101,110,92,34,44,92,34,108,105,103,104,116,71,114,101,101,110,92,34,44,92,34,108,105,109,101,92,34,44,92,34,121,101,108,108,111,119,92,34,44,92,34,97,109,98,101,114,92,34,44,92,34,111,114,97,110,103,101,92,34,44,92,34,100,101,101,112,79,114,97,110,103,101,92,34,44,92,34,98,114,111,119,110,92,34,44,92,34,98,108,117,101,71,114,101,121,92,34,44,92,34,98,108,97,99,107,92,34,93,44,108,61,91,92,34,57,48,48,92,34,44,92,34,55,48,48,92,34,44,92,34,53,48,48,92,34,44,92,34,51,48,48,92,34,44,92,34,49,48,48,92,34,93,44,117,61,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,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,110,61,91,93,59,92,34,98,108,97,99,107,92,34,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,124,124,92,34,119,104,105,116,101,92,34,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,110,61,110,46,99,111,110,99,97,116,40,91,92,34,35,48,48,48,48,48,48,92,34,44,92,34,35,70,70,70,70,70,70,92,34,93,41,58,108,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,111,46,100,101,102,97,117,108,116,91,116,93,91,101,93,59,110,46,112,117,115,104,40,114,46,116,111,85,112,112,101,114,67,97,115,101,40,41,41,125,41,44,101,46,112,117,115,104,40,110,41,125,41,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,92,34,83,119,97,116,99,104,101,115,92,34,44,109,105,120,105,110,115,58,91,115,46,100,101,102,97,117,108,116,93,44,112,114,111,112,115,58,123,112,97,108,101,116,116,101,58,123,116,121,112,101,58,65,114,114,97,121,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,117,125,125,125,44,99,111,109,112,117,116,101,100,58,123,112,105,99,107,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,111,114,115,46,104,101,120,125,125,44,109,101,116,104,111,100,115,58,123,101,113,117,97,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,116,104,105,115,46,99,111,108,111,114,115,46,104,101,120,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,104,97,110,100,108,101,114,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,101,44,115,111,117,114,99,101,58,92,34,104,101,120,92,34,125,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,41,44,111,61,114,40,105,41,44,97,61,110,40,53,41,44,115,61,114,40,97,41,44,99,61,110,40,50,48,41,44,108,61,114,40,99,41,44,117,61,110,40,49,51,41,44,102,61,114,40,117,41,44,100,61,110,40,50,49,41,44,104,61,114,40,100,41,59,116,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,92,34,80,104,111,116,111,115,104,111,112,92,34,44,109,105,120,105,110,115,58,91,111,46,100,101,102,97,117,108,116,93,44,112,114,111,112,115,58,123,104,101,97,100,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,92,34,67,111,108,111,114,32,80,105,99,107,101,114,92,34,125,44,100,105,115,97,98,108,101,70,105,101,108,100,115,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,44,104,97,115,82,101,115,101,116,66,117,116,116,111,110,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,44,97,99,99,101,112,116,76,97,98,101,108,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,92,34,79,75,92,34,125,44,99,97,110,99,101,108,76,97,98,101,108,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,92,34,67,97,110,99,101,108,92,34,125,44,114,101,115,101,116,76,97,98,101,108,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,92,34,82,101,115,101,116,92,34,125,44,110,101,119,76,97,98,101,108,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,92,34,110,101,119,92,34,125,44,99,117,114,114,101,110,116,76,97,98,101,108,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,92,34,99,117,114,114,101,110,116,92,34,125,125,44,99,111,109,112,111,110,101,110,116,115,58,123,115,97,116,117,114,97,116,105,111,110,58,108,46,100,101,102,97,117,108,116,44,104,117,101,58,102,46,100,101,102,97,117,108,116,44,97,108,112,104,97,58,104,46,100,101,102,97,117,108,116,44,92,34,101,100,45,105,110,92,34,58,115,46,100,101,102,97,117,108,116,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,99,117,114,114,101,110,116,67,111,108,111,114,58,92,34,35,70,70,70,92,34,125,125,44,99,111,109,112,117,116,101,100,58,123,104,115,118,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,59,114,101,116,117,114,110,123,104,58,101,46,104,46,116,111,70,105,120,101,100,40,41,44,115,58,40,49,48,48,42,101,46,115,41,46,116,111,70,105,120,101,100,40,41,44,118,58,40,49,48,48,42,101,46,118,41,46,116,111,70,105,120,101,100,40,41,125,125,44,104,101,120,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,115,46,104,101,120,59,114,101,116,117,114,110,32,101,38,38,101,46,114,101,112,108,97,99,101,40,92,34,35,92,34,44,92,34,92,34,41,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,117,114,114,101,110,116,67,111,108,111,114,61,116,104,105,115,46,99,111,108,111,114,115,46,104,101,120,125,44,109,101,116,104,111,100,115,58,123,99,104,105,108,100,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,101,41,125,44,105,110,112,117,116,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,40,101,91,92,34,35,92,34,93,63,116,104,105,115,46,105,115,86,97,108,105,100,72,101,120,40,101,91,92,34,35,92,34,93,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,101,91,92,34,35,92,34,93,44,115,111,117,114,99,101,58,92,34,104,101,120,92,34,125,41,58,101,46,114,124,124,101,46,103,124,124,101,46,98,124,124,101,46,97,63,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,114,58,101,46,114,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,114,44,103,58,101,46,103,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,103,44,98,58,101,46,98,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,98,44,97,58,101,46,97,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,97,44,115,111,117,114,99,101,58,92,34,114,103,98,97,92,34,125,41,58,40,101,46,104,124,124,101,46,115,124,124,101,46,118,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,58,101,46,104,124,124,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,104,44,115,58,101,46,115,47,49,48,48,124,124,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,115,44,118,58,101,46,118,47,49,48,48,124,124,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,118,44,115,111,117,114,99,101,58,92,34,104,115,118,92,34,125,41,41,125,44,99,108,105,99,107,67,117,114,114,101,110,116,67,111,108,111,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,116,104,105,115,46,99,117,114,114,101,110,116,67,111,108,111,114,44,115,111,117,114,99,101,58,92,34,104,101,120,92,34,125,41,125,44,104,97,110,100,108,101,65,99,99,101,112,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,101,109,105,116,40,92,34,111,107,92,34,41,125,44,104,97,110,100,108,101,67,97,110,99,101,108,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,101,109,105,116,40,92,34,99,97,110,99,101,108,92,34,41,125,44,104,97,110,100,108,101,82,101,115,101,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,101,109,105,116,40,92,34,114,101,115,101,116,92,34,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,49,50,53,41,44,111,61,114,40,105,41,44,97,61,110,40,49,50,54,41,44,115,61,114,40,97,41,59,116,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,92,34,83,97,116,117,114,97,116,105,111,110,92,34,44,112,114,111,112,115,58,123,118,97,108,117,101,58,79,98,106,101,99,116,125,44,99,111,109,112,117,116,101,100,58,123,99,111,108,111,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,118,97,108,117,101,125,44,98,103,67,111,108,111,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,92,34,104,115,108,40,92,34,43,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,104,43,92,34,44,32,49,48,48,37,44,32,53,48,37,41,92,34,125,44,112,111,105,110,116,101,114,84,111,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,45,49,48,48,42,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,118,43,49,43,49,48,48,43,92,34,37,92,34,125,44,112,111,105,110,116,101,114,76,101,102,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,48,48,42,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,115,43,92,34,37,92,34,125,125,44,109,101,116,104,111,100,115,58,123,116,104,114,111,116,116,108,101,58,40,48,44,115,46,100,101,102,97,117,108,116,41,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,40,116,41,125,44,50,48,44,123,108,101,97,100,105,110,103,58,33,48,44,116,114,97,105,108,105,110,103,58,33,49,125,41,44,104,97,110,100,108,101,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,33,116,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,110,61,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,97,105,110,101,114,59,105,102,40,110,41,123,118,97,114,32,114,61,110,46,99,108,105,101,110,116,87,105,100,116,104,44,105,61,110,46,99,108,105,101,110,116,72,101,105,103,104,116,44,97,61,110,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,43,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,44,115,61,110,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,43,119,105,110,100,111,119,46,112,97,103,101,89,79,102,102,115,101,116,44,99,61,101,46,112,97,103,101,88,124,124,40,101,46,116,111,117,99,104,101,115,63,101,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,58,48,41,44,108,61,101,46,112,97,103,101,89,124,124,40,101,46,116,111,117,99,104,101,115,63,101,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,89,58,48,41,44,117,61,40,48,44,111,46,100,101,102,97,117,108,116,41,40,99,45,97,44,48,44,114,41,44,102,61,40,48,44,111,46,100,101,102,97,117,108,116,41,40,108,45,115,44,48,44,105,41,44,100,61,117,47,114,44,104,61,40,48,44,111,46,100,101,102,97,117,108,116,41,40,45,102,47,105,43,49,44,48,44,49,41,59,116,104,105,115,46,116,104,114,111,116,116,108,101,40,116,104,105,115,46,111,110,67,104,97,110,103,101,44,123,104,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,104,44,115,58,100,44,118,58,104,44,97,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,97,44,115,111,117,114,99,101,58,92,34,104,115,118,97,92,34,125,41,125,125,44,111,110,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,36,101,109,105,116,40,92,34,99,104,97,110,103,101,92,34,44,101,41,125,44,104,97,110,100,108,101,77,111,117,115,101,68,111,119,110,58,102,117,110,99,116,105,111,110,40,101,41,123,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,109,111,118,101,92,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,117,112,92,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,117,112,92,34,44,116,104,105,115,46,104,97,110,100,108,101,77,111,117,115,101,85,112,41,125,44,104,97,110,100,108,101,77,111,117,115,101,85,112,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,117,110,98,105,110,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,44,117,110,98,105,110,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,109,111,118,101,92,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,117,112,92,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,117,112,92,34,44,116,104,105,115,46,104,97,110,100,108,101,77,111,117,115,101,85,112,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,114,61,110,40,50,50,41,44,105,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,40,114,41,59,116,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,92,34,65,108,112,104,97,92,34,44,112,114,111,112,115,58,123,118,97,108,117,101,58,79,98,106,101,99,116,44,111,110,67,104,97,110,103,101,58,70,117,110,99,116,105,111,110,125,44,99,111,109,112,111,110,101,110,116,115,58,123,99,104,101,99,107,98,111,97,114,100,58,105,46,100,101,102,97,117,108,116,125,44,99,111,109,112,117,116,101,100,58,123,99,111,108,111,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,118,97,108,117,101,125,44,103,114,97,100,105,101,110,116,67,111,108,111,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,44,116,61,91,101,46,114,44,101,46,103,44,101,46,98,93,46,106,111,105,110,40,92,34,44,92,34,41,59,114,101,116,117,114,110,92,34,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,114,105,103,104,116,44,32,114,103,98,97,40,92,34,43,116,43,92,34,44,32,48,41,32,48,37,44,32,114,103,98,97,40,92,34,43,116,43,92,34,44,32,49,41,32,49,48,48,37,41,92,34,125,125,44,109,101,116,104,111,100,115,58,123,104,97,110,100,108,101,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,33,116,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,110,61,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,97,105,110,101,114,59,105,102,40,110,41,123,118,97,114,32,114,44,105,61,110,46,99,108,105,101,110,116,87,105,100,116,104,44,111,61,110,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,43,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,44,97,61,101,46,112,97,103,101,88,124,124,40,101,46,116,111,117,99,104,101,115,63,101,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,58,48,41,44,115,61,97,45,111,59,114,61,115,60,48,63,48,58,115,62,105,63,49,58,77,97,116,104,46,114,111,117,110,100,40,49,48,48,42,115,47,105,41,47,49,48,48,44,116,104,105,115,46,99,111,108,111,114,115,46,97,33,61,61,114,38,38,116,104,105,115,46,36,101,109,105,116,40,92,34,99,104,97,110,103,101,92,34,44,123,104,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,44,115,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,115,44,108,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,108,44,97,58,114,44,115,111,117,114,99,101,58,92,34,114,103,98,97,92,34,125,41,125,125,44,104,97,110,100,108,101,77,111,117,115,101,68,111,119,110,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,40,101,44,33,48,41,44,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,109,111,118,101,92,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,117,112,92,34,44,116,104,105,115,46,104,97,110,100,108,101,77,111,117,115,101,85,112,41,125,44,104,97,110,100,108,101,77,111,117,115,101,85,112,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,117,110,98,105,110,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,44,117,110,98,105,110,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,109,111,118,101,92,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,109,111,117,115,101,117,112,92,34,44,116,104,105,115,46,104,97,110,100,108,101,77,111,117,115,101,85,112,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,105,102,40,92,34,117,110,100,101,102,105,110,101,100,92,34,61,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,114,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,92,34,99,97,110,118,97,115,92,34,41,59,114,46,119,105,100,116,104,61,114,46,104,101,105,103,104,116,61,50,42,110,59,118,97,114,32,105,61,114,46,103,101,116,67,111,110,116,101,120,116,40,92,34,50,100,92,34,41,59,114,101,116,117,114,110,32,105,63,40,105,46,102,105,108,108,83,116,121,108,101,61,101,44,105,46,102,105,108,108,82,101,99,116,40,48,44,48,44,114,46,119,105,100,116,104,44,114,46,104,101,105,103,104,116,41,44,105,46,102,105,108,108,83,116,121,108,101,61,116,44,105,46,102,105,108,108,82,101,99,116,40,48,44,48,44,110,44,110,41,44,105,46,116,114,97,110,115,108,97,116,101,40,110,44,110,41,44,105,46,102,105,108,108,82,101,99,116,40,48,44,48,44,110,44,110,41,44,114,46,116,111,68,97,116,97,85,82,76,40,41,41,58,110,117,108,108,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,44,110,41,123,118,97,114,32,105,61,101,43,92,34,44,92,34,43,116,43,92,34,44,92,34,43,110,59,105,102,40,111,91,105,93,41,114,101,116,117,114,110,32,111,91,105,93,59,118,97,114,32,97,61,114,40,101,44,116,44,110,41,59,114,101,116,117,114,110,32,111,91,105,93,61,97,44,97,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,111,61,123,125,59,116,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,92,34,67,104,101,99,107,98,111,97,114,100,92,34,44,112,114,111,112,115,58,123,115,105,122,101,58,123,116,121,112,101,58,91,78,117,109,98,101,114,44,83,116,114,105,110,103,93,44,100,101,102,97,117,108,116,58,56,125,44,119,104,105,116,101,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,92,34,35,102,102,102,92,34,125,44,103,114,101,121,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,92,34,35,101,54,101,54,101,54,92,34,125,125,44,99,111,109,112,117,116,101,100,58,123,98,103,83,116,121,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,92,34,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,92,34,58,92,34,117,114,108,40,92,34,43,105,40,116,104,105,115,46,119,104,105,116,101,44,116,104,105,115,46,103,114,101,121,44,116,104,105,115,46,115,105,122,101,41,43,92,34,41,92,34,125,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,41,44,111,61,114,40,105,41,44,97,61,110,40,53,41,44,115,61,114,40,97,41,44,99,61,110,40,50,48,41,44,108,61,114,40,99,41,44,117,61,110,40,49,51,41,44,102,61,114,40,117,41,44,100,61,110,40,50,49,41,44,104,61,114,40,100,41,44,112,61,110,40,50,50,41,44,118,61,114,40,112,41,44,103,61,91,92,34,35,68,48,48,50,49,66,92,34,44,92,34,35,70,53,65,54,50,51,92,34,44,92,34,35,70,56,69,55,49,67,92,34,44,92,34,35,56,66,53,55,50,65,92,34,44,92,34,35,55,69,68,51,50,49,92,34,44,92,34,35,52,49,55,53,48,53,92,34,44,92,34,35,66,68,49,48,69,48,92,34,44,92,34,35,57,48,49,51,70,69,92,34,44,92,34,35,52,65,57,48,69,50,92,34,44,92,34,35,53,48,69,51,67,50,92,34,44,92,34,35,66,56,69,57,56,54,92,34,44,92,34,35,48,48,48,48,48,48,92,34,44,92,34,35,52,65,52,65,52,65,92,34,44,92,34,35,57,66,57,66,57,66,92,34,44,92,34,35,70,70,70,70,70,70,92,34,44,92,34,114,103,98,97,40,48,44,48,44,48,44,48,41,92,34,93,59,116,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,92,34,83,107,101,116,99,104,92,34,44,109,105,120,105,110,115,58,91,111,46,100,101,102,97,117,108,116,93,44,99,111,109,112,111,110,101,110,116,115,58,123,115,97,116,117,114,97,116,105,111,110,58,108,46,100,101,102,97,117,108,116,44,104,117,101,58,102,46,100,101,102,97,117,108,116,44,97,108,112,104,97,58,104,46,100,101,102,97,117,108,116,44,92,34,101,100,45,105,110,92,34,58,115,46,100,101,102,97,117,108,116,44,99,104,101,99,107,98,111,97,114,100,58,118,46,100,101,102,97,117,108,116,125,44,112,114,111,112,115,58,123,112,114,101,115,101,116,67,111,108,111,114,115,58,123,116,121,112,101,58,65,114,114,97,121,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,103,125,125,44,100,105,115,97,98,108,101,65,108,112,104,97,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,44,100,105,115,97,98,108,101,70,105,101,108,100,115,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,104,101,120,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,32,101,61,116,104,105,115,46,99,111,108,111,114,115,46,97,60,49,63,116,104,105,115,46,99,111,108,111,114,115,46,104,101,120,56,58,116,104,105,115,46,99,111,108,111,114,115,46,104,101,120,44,101,46,114,101,112,108,97,99,101,40,92,34,35,92,34,44,92,34,92,34,41,125,44,97,99,116,105,118,101,67,111,108,111,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,59,114,101,116,117,114,110,92,34,114,103,98,97,40,92,34,43,91,101,46,114,44,101,46,103,44,101,46,98,44,101,46,97,93,46,106,111,105,110,40,92,34,44,92,34,41,43,92,34,41,92,34,125,125,44,109,101,116,104,111,100,115,58,123,104,97,110,100,108,101,80,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,101,44,115,111,117,114,99,101,58,92,34,104,101,120,92,34,125,41,125,44,99,104,105,108,100,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,101,41,125,44,105,110,112,117,116,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,40,101,46,104,101,120,63,116,104,105,115,46,105,115,86,97,108,105,100,72,101,120,40,101,46,104,101,120,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,101,46,104,101,120,44,115,111,117,114,99,101,58,92,34,104,101,120,92,34,125,41,58,40,101,46,114,124,124,101,46,103,124,124,101,46,98,124,124,101,46,97,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,114,58,101,46,114,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,114,44,103,58,101,46,103,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,103,44,98,58,101,46,98,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,98,44,97,58,101,46,97,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,97,44,115,111,117,114,99,101,58,92,34,114,103,98,97,92,34,125,41,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,41,44,111,61,114,40,105,41,44,97,61,110,40,53,41,44,115,61,114,40,97,41,44,99,61,110,40,50,48,41,44,108,61,114,40,99,41,44,117,61,110,40,49,51,41,44,102,61,114,40,117,41,44,100,61,110,40,50,49,41,44,104,61,114,40,100,41,44,112,61,110,40,50,50,41,44,118,61,114,40,112,41,59,116,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,92,34,67,104,114,111,109,101,92,34,44,109,105,120,105,110,115,58,91,111,46,100,101,102,97,117,108,116,93,44,112,114,111,112,115,58,123,100,105,115,97,98,108,101,65,108,112,104,97,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,44,100,105,115,97,98,108,101,70,105,101,108,100,115,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,125,44,99,111,109,112,111,110,101,110,116,115,58,123,115,97,116,117,114,97,116,105,111,110,58,108,46,100,101,102,97,117,108,116,44,104,117,101,58,102,46,100,101,102,97,117,108,116,44,97,108,112,104,97,58,104,46,100,101,102,97,117,108,116,44,92,34,101,100,45,105,110,92,34,58,115,46,100,101,102,97,117,108,116,44,99,104,101,99,107,98,111,97,114,100,58,118,46,100,101,102,97,117,108,116,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,102,105,101,108,100,115,73,110,100,101,120,58,48,44,104,105,103,104,108,105,103,104,116,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,104,115,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,44,116,61,101,46,104,44,110,61,101,46,115,44,114,61,101,46,108,59,114,101,116,117,114,110,123,104,58,116,46,116,111,70,105,120,101,100,40,41,44,115,58,40,49,48,48,42,110,41,46,116,111,70,105,120,101,100,40,41,43,92,34,37,92,34,44,108,58,40,49,48,48,42,114,41,46,116,111,70,105,120,101,100,40,41,43,92,34,37,92,34,125,125,44,97,99,116,105,118,101,67,111,108,111,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,59,114,101,116,117,114,110,92,34,114,103,98,97,40,92,34,43,91,101,46,114,44,101,46,103,44,101,46,98,44,101,46,97,93,46,106,111,105,110,40,92,34,44,92,34,41,43,92,34,41,92,34,125,44,104,97,115,65,108,112,104,97,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,111,114,115,46,97,60,49,125,125,44,109,101,116,104,111,100,115,58,123,99,104,105,108,100,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,101,41,125,44,105,110,112,117,116,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,41,105,102,40,101,46,104,101,120,41,116,104,105,115,46,105,115,86,97,108,105,100,72,101,120,40,101,46,104,101,120,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,101,46,104,101,120,44,115,111,117,114,99,101,58,92,34,104,101,120,92,34,125,41,59,101,108,115,101,32,105,102,40,101,46,114,124,124,101,46,103,124,124,101,46,98,124,124,101,46,97,41,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,114,58,101,46,114,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,114,44,103,58,101,46,103,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,103,44,98,58,101,46,98,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,98,44,97,58,101,46,97,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,97,44,115,111,117,114,99,101,58,92,34,114,103,98,97,92,34,125,41,59,101,108,115,101,32,105,102,40,101,46,104,124,124,101,46,115,124,124,101,46,108,41,123,118,97,114,32,116,61,101,46,115,63,101,46,115,46,114,101,112,108,97,99,101,40,92,34,37,92,34,44,92,34,92,34,41,47,49,48,48,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,115,44,110,61,101,46,108,63,101,46,108,46,114,101,112,108,97,99,101,40,92,34,37,92,34,44,92,34,92,34,41,47,49,48,48,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,108,59,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,58,101,46,104,124,124,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,44,115,58,116,44,108,58,110,44,115,111,117,114,99,101,58,92,34,104,115,108,92,34,125,41,125,125,44,116,111,103,103,108,101,86,105,101,119,115,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,102,105,101,108,100,115,73,110,100,101,120,62,61,50,41,114,101,116,117,114,110,32,118,111,105,100,40,116,104,105,115,46,102,105,101,108,100,115,73,110,100,101,120,61,48,41,59,116,104,105,115,46,102,105,101,108,100,115,73,110,100,101,120,43,43,125,44,115,104,111,119,72,105,103,104,108,105,103,104,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,105,103,104,108,105,103,104,116,61,33,48,125,44,104,105,100,101,72,105,103,104,108,105,103,104,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,105,103,104,108,105,103,104,116,61,33,49,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,41,44,111,61,114,40,105,41,44,97,61,110,40,51,41,44,115,61,114,40,97,41,44,99,61,91,92,34,35,70,70,54,57,48,48,92,34,44,92,34,35,70,67,66,57,48,48,92,34,44,92,34,35,55,66,68,67,66,53,92,34,44,92,34,35,48,48,68,48,56,52,92,34,44,92,34,35,56,69,68,49,70,67,92,34,44,92,34,35,48,54,57,51,69,51,92,34,44,92,34,35,65,66,66,56,67,51,92,34,44,92,34,35,69,66,49,52,52,67,92,34,44,92,34,35,70,55,56,68,65,55,92,34,44,92,34,35,57,57,48,48,69,70,92,34,93,59,116,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,92,34,84,119,105,116,116,101,114,92,34,44,109,105,120,105,110,115,58,91,115,46,100,101,102,97,117,108,116,93,44,99,111,109,112,111,110,101,110,116,115,58,123,101,100,105,116,97,98,108,101,73,110,112,117,116,58,111,46,100,101,102,97,117,108,116,125,44,112,114,111,112,115,58,123,119,105,100,116,104,58,123,116,121,112,101,58,91,83,116,114,105,110,103,44,78,117,109,98,101,114,93,44,100,101,102,97,117,108,116,58,50,55,54,125,44,100,101,102,97,117,108,116,67,111,108,111,114,115,58,123,116,121,112,101,58,65,114,114,97,121,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,125,125,44,116,114,105,97,110,103,108,101,58,123,100,101,102,97,117,108,116,58,92,34,116,111,112,45,108,101,102,116,92,34,44,118,97,108,105,100,97,116,111,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,92,34,104,105,100,101,92,34,44,92,34,116,111,112,45,108,101,102,116,92,34,44,92,34,116,111,112,45,114,105,103,104,116,92,34,93,46,105,110,99,108,117,100,101,115,40,101,41,125,125,125,44,99,111,109,112,117,116,101,100,58,123,104,115,118,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,59,114,101,116,117,114,110,123,104,58,101,46,104,46,116,111,70,105,120,101,100,40,41,44,115,58,40,49,48,48,42,101,46,115,41,46,116,111,70,105,120,101,100,40,41,44,118,58,40,49,48,48,42,101,46,118,41,46,116,111,70,105,120,101,100,40,41,125,125,44,104,101,120,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,115,46,104,101,120,59,114,101,116,117,114,110,32,101,38,38,101,46,114,101,112,108,97,99,101,40,92,34,35,92,34,44,92,34,92,34,41,125,125,44,109,101,116,104,111,100,115,58,123,101,113,117,97,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,116,104,105,115,46,99,111,108,111,114,115,46,104,101,120,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,104,97,110,100,108,101,114,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,101,44,115,111,117,114,99,101,58,92,34,104,101,120,92,34,125,41,125,44,105,110,112,117,116,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,40,101,91,92,34,35,92,34,93,63,116,104,105,115,46,105,115,86,97,108,105,100,72,101,120,40,101,91,92,34,35,92,34,93,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,101,91,92,34,35,92,34,93,44,115,111,117,114,99,101,58,92,34,104,101,120,92,34,125,41,58,101,46,114,124,124,101,46,103,124,124,101,46,98,124,124,101,46,97,63,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,114,58,101,46,114,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,114,44,103,58,101,46,103,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,103,44,98,58,101,46,98,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,98,44,97,58,101,46,97,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,97,44,115,111,117,114,99,101,58,92,34,114,103,98,97,92,34,125,41,58,40,101,46,104,124,124,101,46,115,124,124,101,46,118,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,58,101,46,104,124,124,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,104,44,115,58,101,46,115,47,49,48,48,124,124,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,115,44,118,58,101,46,118,47,49,48,48,124,124,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,118,44,115,111,117,114,99,101,58,92,34,104,115,118,92,34,125,41,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,118,97,114,32,105,61,110,40,54,49,41,44,111,61,114,40,105,41,44,97,61,110,40,55,48,41,44,115,61,114,40,97,41,44,99,61,110,40,55,52,41,44,108,61,114,40,99,41,44,117,61,110,40,55,56,41,44,102,61,114,40,117,41,44,100,61,110,40,49,49,53,41,44,104,61,114,40,100,41,44,112,61,110,40,49,50,48,41,44,118,61,114,40,112,41,44,103,61,110,40,49,51,53,41,44,98,61,114,40,103,41,44,120,61,110,40,49,51,57,41,44,109,61,114,40,120,41,44,95,61,110,40,49,52,51,41,44,119,61,114,40,95,41,44,121,61,110,40,50,49,41,44,67,61,114,40,121,41,44,107,61,110,40,50,50,41,44,70,61,114,40,107,41,44,83,61,110,40,53,41,44,65,61,114,40,83,41,44,79,61,110,40,49,51,41,44,69,61,114,40,79,41,44,77,61,110,40,50,48,41,44,106,61,114,40,77,41,44,76,61,110,40,51,41,44,80,61,114,40,76,41,44,82,61,123,118,101,114,115,105,111,110,58,92,34,50,46,56,46,49,92,34,44,67,111,109,112,97,99,116,58,111,46,100,101,102,97,117,108,116,44,71,114,97,121,115,99,97,108,101,58,115,46,100,101,102,97,117,108,116,44,84,119,105,116,116,101,114,58,119,46,100,101,102,97,117,108,116,44,77,97,116,101,114,105,97,108,58,108,46,100,101,102,97,117,108,116,44,83,108,105,100,101,114,58,102,46,100,101,102,97,117,108,116,44,83,119,97,116,99,104,101,115,58,104,46,100,101,102,97,117,108,116,44,80,104,111,116,111,115,104,111,112,58,118,46,100,101,102,97,117,108,116,44,83,107,101,116,99,104,58,98,46,100,101,102,97,117,108,116,44,67,104,114,111,109,101,58,109,46,100,101,102,97,117,108,116,44,65,108,112,104,97,58,67,46,100,101,102,97,117,108,116,44,67,104,101,99,107,98,111,97,114,100,58,70,46,100,101,102,97,117,108,116,44,69,100,105,116,97,98,108,101,73,110,112,117,116,58,65,46,100,101,102,97,117,108,116,44,72,117,101,58,69,46,100,101,102,97,117,108,116,44,83,97,116,117,114,97,116,105,111,110,58,106,46,100,101,102,97,117,108,116,44,67,111,108,111,114,77,105,120,105,110,58,80,46,100,101,102,97,117,108,116,125,59,101,46,101,120,112,111,114,116,115,61,82,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,99,124,124,110,40,54,50,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,53,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,92,34,100,101,102,97,117,108,116,92,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,101,41,123,110,46,100,40,116,44,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,101,93,125,41,125,40,97,41,59,118,97,114,32,115,61,110,40,54,57,41,44,99,61,33,49,44,108,61,110,40,50,41,44,117,61,114,44,102,61,108,40,111,46,97,44,115,46,97,44,33,49,44,117,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,109,112,97,99,116,46,118,117,101,92,34,44,116,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,54,51,41,59,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,101,46,105,44,114,44,92,34,92,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,101,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,59,110,40,49,41,40,92,34,54,99,101,56,97,53,97,56,92,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,116,61,101,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,116,46,112,117,115,104,40,91,101,46,105,44,92,34,92,92,110,46,118,99,45,99,111,109,112,97,99,116,32,123,92,92,110,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,53,112,120,59,92,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,53,112,120,59,92,92,110,32,32,119,105,100,116,104,58,32,50,52,53,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,92,110,32,32,98,111,120,45,115,105,122,105,110,103,58,32,98,111,114,100,101,114,45,98,111,120,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,50,112,120,32,49,48,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,41,44,32,48,32,50,112,120,32,53,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,54,41,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,102,102,59,92,92,110,125,92,92,110,46,118,99,45,99,111,109,112,97,99,116,45,99,111,108,111,114,115,32,123,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,59,92,92,110,32,32,109,97,114,103,105,110,58,32,48,59,92,92,110,125,92,92,110,46,118,99,45,99,111,109,112,97,99,116,45,99,111,108,111,114,45,105,116,101,109,32,123,92,92,110,32,32,108,105,115,116,45,115,116,121,108,101,58,32,110,111,110,101,59,92,92,110,32,32,119,105,100,116,104,58,32,49,53,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,53,112,120,59,92,92,110,32,32,102,108,111,97,116,58,32,108,101,102,116,59,92,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,53,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,53,112,120,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,125,92,92,110,46,118,99,45,99,111,109,112,97,99,116,45,99,111,108,111,114,45,105,116,101,109,45,45,119,104,105,116,101,32,123,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,35,100,100,100,59,92,92,110,125,92,92,110,46,118,99,45,99,111,109,112,97,99,116,45,99,111,108,111,114,45,105,116,101,109,45,45,119,104,105,116,101,32,46,118,99,45,99,111,109,112,97,99,116,45,100,111,116,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,48,48,48,59,92,92,110,125,92,92,110,46,118,99,45,99,111,109,112,97,99,116,45,100,111,116,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,116,111,112,58,32,53,112,120,59,92,92,110,32,32,114,105,103,104,116,58,32,53,112,120,59,92,92,110,32,32,98,111,116,116,111,109,58,32,53,112,120,59,92,92,110,32,32,108,101,102,116,58,32,53,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,53,48,37,59,92,92,110,32,32,111,112,97,99,105,116,121,58,32,49,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,92,92,110,125,92,92,110,92,34,44,92,34,92,34,93,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,46,101,120,112,111,114,116,115,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,44,114,61,123,125,44,105,61,48,59,105,60,116,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,111,61,116,91,105,93,44,97,61,111,91,48,93,44,115,61,111,91,49,93,44,99,61,111,91,50,93,44,108,61,111,91,51,93,44,117,61,123,105,100,58,101,43,92,34,58,92,34,43,105,44,99,115,115,58,115,44,109,101,100,105,97,58,99,44,115,111,117,114,99,101,77,97,112,58,108,125,59,114,91,97,93,63,114,91,97,93,46,112,97,114,116,115,46,112,117,115,104,40,117,41,58,110,46,112,117,115,104,40,114,91,97,93,61,123,105,100,58,97,44,112,97,114,116,115,58,91,117,93,125,41,125,114,101,116,117,114,110,32,110,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,33,102,117,110,99,116,105,111,110,40,105,41,123,102,117,110,99,116,105,111,110,32,111,40,101,44,116,41,123,105,102,40,101,61,101,124,124,92,34,92,34,44,116,61,116,124,124,123,125,44,101,32,105,110,115,116,97,110,99,101,111,102,32,111,41,114,101,116,117,114,110,32,101,59,105,102,40,33,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,111,41,41,114,101,116,117,114,110,32,110,101,119,32,111,40,101,44,116,41,59,118,97,114,32,110,61,97,40,101,41,59,116,104,105,115,46,95,111,114,105,103,105,110,97,108,73,110,112,117,116,61,101,44,116,104,105,115,46,95,114,61,110,46,114,44,116,104,105,115,46,95,103,61,110,46,103,44,116,104,105,115,46,95,98,61,110,46,98,44,116,104,105,115,46,95,97,61,110,46,97,44,116,104,105,115,46,95,114,111,117,110,100,65,61,71,40,49,48,48,42,116,104,105,115,46,95,97,41,47,49,48,48,44,116,104,105,115,46,95,102,111,114,109,97,116,61,116,46,102,111,114,109,97,116,124,124,110,46,102,111,114,109,97,116,44,116,104,105,115,46,95,103,114,97,100,105,101,110,116,84,121,112,101,61,116,46,103,114,97,100,105,101,110,116,84,121,112,101,44,116,104,105,115,46,95,114,60,49,38,38,40,116,104,105,115,46,95,114,61,71,40,116,104,105,115,46,95,114,41,41,44,116,104,105,115,46,95,103,60,49,38,38,40,116,104,105,115,46,95,103,61,71,40,116,104,105,115,46,95,103,41,41,44,116,104,105,115,46,95,98,60,49,38,38,40,116,104,105,115,46,95,98,61,71,40,116,104,105,115,46,95,98,41,41,44,116,104,105,115,46,95,111,107,61,110,46,111,107,44,116,104,105,115,46,95,116,99,95,105,100,61,85,43,43,125,102,117,110,99,116,105,111,110,32,97,40,101,41,123,118,97,114,32,116,61,123,114,58,48,44,103,58,48,44,98,58,48,125,44,110,61,49,44,114,61,110,117,108,108,44,105,61,110,117,108,108,44,111,61,110,117,108,108,44,97,61,33,49,44,99,61,33,49,59,114,101,116,117,114,110,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,101,38,38,40,101,61,78,40,101,41,41,44,92,34,111,98,106,101,99,116,92,34,61,61,116,121,112,101,111,102,32,101,38,38,40,72,40,101,46,114,41,38,38,72,40,101,46,103,41,38,38,72,40,101,46,98,41,63,40,116,61,115,40,101,46,114,44,101,46,103,44,101,46,98,41,44,97,61,33,48,44,99,61,92,34,37,92,34,61,61,61,83,116,114,105,110,103,40,101,46,114,41,46,115,117,98,115,116,114,40,45,49,41,63,92,34,112,114,103,98,92,34,58,92,34,114,103,98,92,34,41,58,72,40,101,46,104,41,38,38,72,40,101,46,115,41,38,38,72,40,101,46,118,41,63,40,114,61,68,40,101,46,115,41,44,105,61,68,40,101,46,118,41,44,116,61,102,40,101,46,104,44,114,44,105,41,44,97,61,33,48,44,99,61,92,34,104,115,118,92,34,41,58,72,40,101,46,104,41,38,38,72,40,101,46,115,41,38,38,72,40,101,46,108,41,38,38,40,114,61,68,40,101,46,115,41,44,111,61,68,40,101,46,108,41,44,116,61,108,40,101,46,104,44,114,44,111,41,44,97,61,33,48,44,99,61,92,34,104,115,108,92,34,41,44,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,92,34,97,92,34,41,38,38,40,110,61,101,46,97,41,41,44,110,61,79,40,110,41,44,123,111,107,58,97,44,102,111,114,109,97,116,58,101,46,102,111,114,109,97,116,124,124,99,44,114,58,86,40,50,53,53,44,113,40,116,46,114,44,48,41,41,44,103,58,86,40,50,53,53,44,113,40,116,46,103,44,48,41,41,44,98,58,86,40,50,53,53,44,113,40,116,46,98,44,48,41,41,44,97,58,110,125,125,102,117,110,99,116,105,111,110,32,115,40,101,44,116,44,110,41,123,114,101,116,117,114,110,123,114,58,50,53,53,42,69,40,101,44,50,53,53,41,44,103,58,50,53,53,42,69,40,116,44,50,53,53,41,44,98,58,50,53,53,42,69,40,110,44,50,53,53,41,125,125,102,117,110,99,116,105,111,110,32,99,40,101,44,116,44,110,41,123,101,61,69,40,101,44,50,53,53,41,44,116,61,69,40,116,44,50,53,53,41,44,110,61,69,40,110,44,50,53,53,41,59,118,97,114,32,114,44,105,44,111,61,113,40,101,44,116,44,110,41,44,97,61,86,40,101,44,116,44,110,41,44,115,61,40,111,43,97,41,47,50,59,105,102,40,111,61,61,97,41,114,61,105,61,48,59,101,108,115,101,123,118,97,114,32,99,61,111,45,97,59,115,119,105,116,99,104,40,105,61,115,62,46,53,63,99,47,40,50,45,111,45,97,41,58,99,47,40,111,43,97,41,44,111,41,123,99,97,115,101,32,101,58,114,61,40,116,45,110,41,47,99,43,40,116,60,110,63,54,58,48,41,59,98,114,101,97,107,59,99,97,115,101,32,116,58,114,61,40,110,45,101,41,47,99,43,50,59,98,114,101,97,107,59,99,97,115,101,32,110,58,114,61,40,101,45,116,41,47,99,43,52,125,114,47,61,54,125,114,101,116,117,114,110,123,104,58,114,44,115,58,105,44,108,58,115,125,125,102,117,110,99,116,105,111,110,32,108,40,101,44,116,44,110,41,123,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,110,60,48,38,38,40,110,43,61,49,41,44,110,62,49,38,38,40,110,45,61,49,41,44,110,60,49,47,54,63,101,43,54,42,40,116,45,101,41,42,110,58,110,60,46,53,63,116,58,110,60,50,47,51,63,101,43,40,116,45,101,41,42,40,50,47,51,45,110,41,42,54,58,101,125,118,97,114,32,105,44,111,44,97,59,105,102,40,101,61,69,40,101,44,51,54,48,41,44,116,61,69,40,116,44,49,48,48,41,44,110,61,69,40,110,44,49,48,48,41,44,48,61,61,61,116,41,105,61,111,61,97,61,110,59,101,108,115,101,123,118,97,114,32,115,61,110,60,46,53,63,110,42,40,49,43,116,41,58,110,43,116,45,110,42,116,44,99,61,50,42,110,45,115,59,105,61,114,40,99,44,115,44,101,43,49,47,51,41,44,111,61,114,40,99,44,115,44,101,41,44,97,61,114,40,99,44,115,44,101,45,49,47,51,41,125,114,101,116,117,114,110,123,114,58,50,53,53,42,105,44,103,58,50,53,53,42,111,44,98,58,50,53,53,42,97,125,125,102,117,110,99,116,105,111,110,32,117,40,101,44,116,44,110,41,123,101,61,69,40,101,44,50,53,53,41,44,116,61,69,40,116,44,50,53,53,41,44,110,61,69,40,110,44,50,53,53,41,59,118,97,114,32,114,44,105,44,111,61,113,40,101,44,116,44,110,41,44,97,61,86,40,101,44,116,44,110,41,44,115,61,111,44,99,61,111,45,97,59,105,102,40,105,61,48,61,61,61,111,63,48,58,99,47,111,44,111,61,61,97,41,114,61,48,59,101,108,115,101,123,115,119,105,116,99,104,40,111,41,123,99,97,115,101,32,101,58,114,61,40,116,45,110,41,47,99,43,40,116,60,110,63,54,58,48,41,59,98,114,101,97,107,59,99,97,115,101,32,116,58,114,61,40,110,45,101,41,47,99,43,50,59,98,114,101,97,107,59,99,97,115,101,32,110,58,114,61,40,101,45,116,41,47,99,43,52,125,114,47,61,54,125,114,101,116,117,114,110,123,104,58,114,44,115,58,105,44,118,58,115,125,125,102,117,110,99,116,105,111,110,32,102,40,101,44,116,44,110,41,123,101,61,54,42,69,40,101,44,51,54,48,41,44,116,61,69,40,116,44,49,48,48,41,44,110,61,69,40,110,44,49,48,48,41,59,118,97,114,32,114,61,105,46,102,108,111,111,114,40,101,41,44,111,61,101,45,114,44,97,61,110,42,40,49,45,116,41,44,115,61,110,42,40,49,45,111,42,116,41,44,99,61,110,42,40,49,45,40,49,45,111,41,42,116,41,44,108,61,114,37,54,59,114,101,116,117,114,110,123,114,58,50,53,53,42,91,110,44,115,44,97,44,97,44,99,44,110,93,91,108,93,44,103,58,50,53,53,42,91,99,44,110,44,110,44,115,44,97,44,97,93,91,108,93,44,98,58,50,53,53,42,91,97,44,97,44,99,44,110,44,110,44,115,93,91,108,93,125,125,102,117,110,99,116,105,111,110,32,100,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,61,91,82,40,71,40,101,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,44,82,40,71,40,116,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,44,82,40,71,40,110,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,93,59,114,101,116,117,114,110,32,114,38,38,105,91,48,93,46,99,104,97,114,65,116,40,48,41,61,61,105,91,48,93,46,99,104,97,114,65,116,40,49,41,38,38,105,91,49,93,46,99,104,97,114,65,116,40,48,41,61,61,105,91,49,93,46,99,104,97,114,65,116,40,49,41,38,38,105,91,50,93,46,99,104,97,114,65,116,40,48,41,61,61,105,91,50,93,46,99,104,97,114,65,116,40,49,41,63,105,91,48,93,46,99,104,97,114,65,116,40,48,41,43,105,91,49,93,46,99,104,97,114,65,116,40,48,41,43,105,91,50,93,46,99,104,97,114,65,116,40,48,41,58,105,46,106,111,105,110,40,92,34,92,34,41,125,102,117,110,99,116,105,111,110,32,104,40,101,44,116,44,110,44,114,44,105,41,123,118,97,114,32,111,61,91,82,40,71,40,101,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,44,82,40,71,40,116,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,44,82,40,71,40,110,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,44,82,40,66,40,114,41,41,93,59,114,101,116,117,114,110,32,105,38,38,111,91,48,93,46,99,104,97,114,65,116,40,48,41,61,61,111,91,48,93,46,99,104,97,114,65,116,40,49,41,38,38,111,91,49,93,46,99,104,97,114,65,116,40,48,41,61,61,111,91,49,93,46,99,104,97,114,65,116,40,49,41,38,38,111,91,50,93,46,99,104,97,114,65,116,40,48,41,61,61,111,91,50,93,46,99,104,97,114,65,116,40,49,41,38,38,111,91,51,93,46,99,104,97,114,65,116,40,48,41,61,61,111,91,51,93,46,99,104,97,114,65,116,40,49,41,63,111,91,48,93,46,99,104,97,114,65,116,40,48,41,43,111,91,49,93,46,99,104,97,114,65,116,40,48,41,43,111,91,50,93,46,99,104,97,114,65,116,40,48,41,43,111,91,51,93,46,99,104,97,114,65,116,40,48,41,58,111,46,106,111,105,110,40,92,34,92,34,41,125,102,117,110,99,116,105,111,110,32,112,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,91,82,40,66,40,114,41,41,44,82,40,71,40,101,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,44,82,40,71,40,116,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,44,82,40,71,40,110,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,93,46,106,111,105,110,40,92,34,92,34,41,125,102,117,110,99,116,105,111,110,32,118,40,101,44,116,41,123,116,61,48,61,61,61,116,63,48,58,116,124,124,49,48,59,118,97,114,32,110,61,111,40,101,41,46,116,111,72,115,108,40,41,59,114,101,116,117,114,110,32,110,46,115,45,61,116,47,49,48,48,44,110,46,115,61,77,40,110,46,115,41,44,111,40,110,41,125,102,117,110,99,116,105,111,110,32,103,40,101,44,116,41,123,116,61,48,61,61,61,116,63,48,58,116,124,124,49,48,59,118,97,114,32,110,61,111,40,101,41,46,116,111,72,115,108,40,41,59,114,101,116,117,114,110,32,110,46,115,43,61,116,47,49,48,48,44,110,46,115,61,77,40,110,46,115,41,44,111,40,110,41,125,102,117,110,99,116,105,111,110,32,98,40,101,41,123,114,101,116,117,114,110,32,111,40,101,41,46,100,101,115,97,116,117,114,97,116,101,40,49,48,48,41,125,102,117,110,99,116,105,111,110,32,120,40,101,44,116,41,123,116,61,48,61,61,61,116,63,48,58,116,124,124,49,48,59,118,97,114,32,110,61,111,40,101,41,46,116,111,72,115,108,40,41,59,114,101,116,117,114,110,32,110,46,108,43,61,116,47,49,48,48,44,110,46,108,61,77,40,110,46,108,41,44,111,40,110,41,125,102,117,110,99,116,105,111,110,32,109,40,101,44,116,41,123,116,61,48,61,61,61,116,63,48,58,116,124,124,49,48,59,118,97,114,32,110,61,111,40,101,41,46,116,111,82,103,98,40,41,59,114,101,116,117,114,110,32,110,46,114,61,113,40,48,44,86,40,50,53,53,44,110,46,114,45,71,40,45,116,47,49,48,48,42,50,53,53,41,41,41,44,110,46,103,61,113,40,48,44,86,40,50,53,53,44,110,46,103,45,71,40,45,116,47,49,48,48,42,50,53,53,41,41,41,44,110,46,98,61,113,40,48,44,86,40,50,53,53,44,110,46,98,45,71,40,45,116,47,49,48,48,42,50,53,53,41,41,41,44,111,40,110,41,125,102,117,110,99,116,105,111,110,32,95,40,101,44,116,41,123,116,61,48,61,61,61,116,63,48,58,116,124,124,49,48,59,118,97,114,32,110,61,111,40,101,41,46,116,111,72,115,108,40,41,59,114,101,116,117,114,110,32,110,46,108,45,61,116,47,49,48,48,44,110,46,108,61,77,40,110,46,108,41,44,111,40,110,41,125,102,117,110,99,116,105,111,110,32,119,40,101,44,116,41,123,118,97,114,32,110,61,111,40,101,41,46,116,111,72,115,108,40,41,44,114,61,40,110,46,104,43,116,41,37,51,54,48,59,114,101,116,117,114,110,32,110,46,104,61,114,60,48,63,51,54,48,43,114,58,114,44,111,40,110,41,125,102,117,110,99,116,105,111,110,32,121,40,101,41,123,118,97,114,32,116,61,111,40,101,41,46,116,111,72,115,108,40,41,59,114,101,116,117,114,110,32,116,46,104,61,40,116,46,104,43,49,56,48,41,37,51,54,48,44,111,40,116,41,125,102,117,110,99,116,105,111,110,32,67,40,101,41,123,118,97,114,32,116,61,111,40,101,41,46,116,111,72,115,108,40,41,44,110,61,116,46,104,59,114,101,116,117,114,110,91,111,40,101,41,44,111,40,123,104,58,40,110,43,49,50,48,41,37,51,54,48,44,115,58,116,46,115,44,108,58,116,46,108,125,41,44,111,40,123,104,58,40,110,43,50,52,48,41,37,51,54,48,44,115,58,116,46,115,44,108,58,116,46,108,125,41,93,125,102,117,110,99,116,105,111,110,32,107,40,101,41,123,118,97,114,32,116,61,111,40,101,41,46,116,111,72,115,108,40,41,44,110,61,116,46,104,59,114,101,116,117,114,110,91,111,40,101,41,44,111,40,123,104,58,40,110,43,57,48,41,37,51,54,48,44,115,58,116,46,115,44,108,58,116,46,108,125,41,44,111,40,123,104,58,40,110,43,49,56,48,41,37,51,54,48,44,115,58,116,46,115,44,108,58,116,46,108,125,41,44,111,40,123,104,58,40,110,43,50,55,48,41,37,51,54,48,44,115,58,116,46,115,44,108,58,116,46,108,125,41,93,125,102,117,110,99,116,105,111,110,32,70,40,101,41,123,118,97,114,32,116,61,111,40,101,41,46,116,111,72,115,108,40,41,44,110,61,116,46,104,59,114,101,116,117,114,110,91,111,40,101,41,44,111,40,123,104,58,40,110,43,55,50,41,37,51,54,48,44,115,58,116,46,115,44,108,58,116,46,108,125,41,44,111,40,123,104,58,40,110,43,50,49,54,41,37,51,54,48,44,115,58,116,46,115,44,108,58,116,46,108,125,41,93,125,102,117,110,99,116,105,111,110,32,83,40,101,44,116,44,110,41,123,116,61,116,124,124,54,44,110,61,110,124,124,51,48,59,118,97,114,32,114,61,111,40,101,41,46,116,111,72,115,108,40,41,44,105,61,51,54,48,47,110,44,97,61,91,111,40,101,41,93,59,102,111,114,40,114,46,104,61,40,114,46,104,45,40,105,42,116,62,62,49,41,43,55,50,48,41,37,51,54,48,59,45,45,116,59,41,114,46,104,61,40,114,46,104,43,105,41,37,51,54,48,44,97,46,112,117,115,104,40,111,40,114,41,41,59,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,65,40,101,44,116,41,123,116,61,116,124,124,54,59,102,111,114,40,118,97,114,32,110,61,111,40,101,41,46,116,111,72,115,118,40,41,44,114,61,110,46,104,44,105,61,110,46,115,44,97,61,110,46,118,44,115,61,91,93,44,99,61,49,47,116,59,116,45,45,59,41,115,46,112,117,115,104,40,111,40,123,104,58,114,44,115,58,105,44,118,58,97,125,41,41,44,97,61,40,97,43,99,41,37,49,59,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,79,40,101,41,123,114,101,116,117,114,110,32,101,61,112,97,114,115,101,70,108,111,97,116,40,101,41,44,40,105,115,78,97,78,40,101,41,124,124,101,60,48,124,124,101,62,49,41,38,38,40,101,61,49,41,44,101,125,102,117,110,99,116,105,111,110,32,69,40,101,44,116,41,123,76,40,101,41,38,38,40,101,61,92,34,49,48,48,37,92,34,41,59,118,97,114,32,110,61,80,40,101,41,59,114,101,116,117,114,110,32,101,61,86,40,116,44,113,40,48,44,112,97,114,115,101,70,108,111,97,116,40,101,41,41,41,44,110,38,38,40,101,61,112,97,114,115,101,73,110,116,40,101,42,116,44,49,48,41,47,49,48,48,41,44,105,46,97,98,115,40,101,45,116,41,60,49,101,45,54,63,49,58,101,37,116,47,112,97,114,115,101,70,108,111,97,116,40,116,41,125,102,117,110,99,116,105,111,110,32,77,40,101,41,123,114,101,116,117,114,110,32,86,40,49,44,113,40,48,44,101,41,41,125,102,117,110,99,116,105,111,110,32,106,40,101,41,123,114,101,116,117,114,110,32,112,97,114,115,101,73,110,116,40,101,44,49,54,41,125,102,117,110,99,116,105,111,110,32,76,40,101,41,123,114,101,116,117,114,110,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,101,38,38,45,49,33,61,101,46,105,110,100,101,120,79,102,40,92,34,46,92,34,41,38,38,49,61,61,61,112,97,114,115,101,70,108,111,97,116,40,101,41,125,102,117,110,99,116,105,111,110,32,80,40,101,41,123,114,101,116,117,114,110,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,101,38,38,45,49,33,61,101,46,105,110,100,101,120,79,102,40,92,34,37,92,34,41,125,102,117,110,99,116,105,111,110,32,82,40,101,41,123,114,101,116,117,114,110,32,49,61,61,101,46,108,101,110,103,116,104,63,92,34,48,92,34,43,101,58,92,34,92,34,43,101,125,102,117,110,99,116,105,111,110,32,68,40,101,41,123,114,101,116,117,114,110,32,101,60,61,49,38,38,40,101,61,49,48,48,42,101,43,92,34,37,92,34,41,44,101,125,102,117,110,99,116,105,111,110,32,66,40,101,41,123,114,101,116,117,114,110,32,105,46,114,111,117,110,100,40,50,53,53,42,112,97,114,115,101,70,108,111,97,116,40,101,41,41,46,116,111,83,116,114,105,110,103,40,49,54,41,125,102,117,110,99,116,105,111,110,32,84,40,101,41,123,114,101,116,117,114,110,32,106,40,101,41,47,50,53,53,125,102,117,110,99,116,105,111,110,32,72,40,101,41,123,114,101,116,117,114,110,33,33,74,46,67,83,83,95,85,78,73,84,46,101,120,101,99,40,101,41,125,102,117,110,99,116,105,111,110,32,78,40,101,41,123,101,61,101,46,114,101,112,108,97,99,101,40,73,44,92,34,92,34,41,46,114,101,112,108,97,99,101,40,36,44,92,34,92,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,118,97,114,32,116,61,33,49,59,105,102,40,87,91,101,93,41,101,61,87,91,101,93,44,116,61,33,48,59,101,108,115,101,32,105,102,40,92,34,116,114,97,110,115,112,97,114,101,110,116,92,34,61,61,101,41,114,101,116,117,114,110,123,114,58,48,44,103,58,48,44,98,58,48,44,97,58,48,44,102,111,114,109,97,116,58,92,34,110,97,109,101,92,34,125,59,118,97,114,32,110,59,114,101,116,117,114,110,40,110,61,74,46,114,103,98,46,101,120,101,99,40,101,41,41,63,123,114,58,110,91,49,93,44,103,58,110,91,50,93,44,98,58,110,91,51,93,125,58,40,110,61,74,46,114,103,98,97,46,101,120,101,99,40,101,41,41,63,123,114,58,110,91,49,93,44,103,58,110,91,50,93,44,98,58,110,91,51,93,44,97,58,110,91,52,93,125,58,40,110,61,74,46,104,115,108,46,101,120,101,99,40,101,41,41,63,123,104,58,110,91,49,93,44,115,58,110,91,50,93,44,108,58,110,91,51,93,125,58,40,110,61,74,46,104,115,108,97,46,101,120,101,99,40,101,41,41,63,123,104,58,110,91,49,93,44,115,58,110,91,50,93,44,108,58,110,91,51,93,44,97,58,110,91,52,93,125,58,40,110,61,74,46,104,115,118,46,101,120,101,99,40,101,41,41,63,123,104,58,110,91,49,93,44,115,58,110,91,50,93,44,118,58,110,91,51,93,125,58,40,110,61,74,46,104,115,118,97,46,101,120,101,99,40,101,41,41,63,123,104,58,110,91,49,93,44,115,58,110,91,50,93,44,118,58,110,91,51,93,44,97,58,110,91,52,93,125,58,40,110,61,74,46,104,101,120,56,46,101,120,101,99,40,101,41,41,63,123,114,58,106,40,110,91,49,93,41,44,103,58,106,40,110,91,50,93,41,44,98,58,106,40,110,91,51,93,41,44,97,58,84,40,110,91,52,93,41,44,102,111,114,109,97,116,58,116,63,92,34,110,97,109,101,92,34,58,92,34,104,101,120,56,92,34,125,58,40,110,61,74,46,104,101,120,54,46,101,120,101,99,40,101,41,41,63,123,114,58,106,40,110,91,49,93,41,44,103,58,106,40,110,91,50,93,41,44,98,58,106,40,110,91,51,93,41,44,102,111,114,109,97,116,58,116,63,92,34,110,97,109,101,92,34,58,92,34,104,101,120,92,34,125,58,40,110,61,74,46,104,101,120,52,46,101,120,101,99,40,101,41,41,63,123,114,58,106,40,110,91,49,93,43,92,34,92,34,43,110,91,49,93,41,44,103,58,106,40,110,91,50,93,43,92,34,92,34,43,110,91,50,93,41,44,98,58,106,40,110,91,51,93,43,92,34,92,34,43,110,91,51,93,41,44,97,58,84,40,110,91,52,93,43,92,34,92,34,43,110,91,52,93,41,44,102,111,114,109,97,116,58,116,63,92,34,110,97,109,101,92,34,58,92,34,104,101,120,56,92,34,125,58,33,33,40,110,61,74,46,104,101,120,51,46,101,120,101,99,40,101,41,41,38,38,123,114,58,106,40,110,91,49,93,43,92,34,92,34,43,110,91,49,93,41,44,103,58,106,40,110,91,50,93,43,92,34,92,34,43,110,91,50,93,41,44,98,58,106,40,110,91,51,93,43,92,34,92,34,43,110,91,51,93,41,44,102,111,114,109,97,116,58,116,63,92,34,110,97,109,101,92,34,58,92,34,104,101,120,92,34,125,125,102,117,110,99,116,105,111,110,32,122,40,101,41,123,118,97,114,32,116,44,110,59,114,101,116,117,114,110,32,101,61,101,124,124,123,108,101,118,101,108,58,92,34,65,65,92,34,44,115,105,122,101,58,92,34,115,109,97,108,108,92,34,125,44,116,61,40,101,46,108,101,118,101,108,124,124,92,34,65,65,92,34,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,44,110,61,40,101,46,115,105,122,101,124,124,92,34,115,109,97,108,108,92,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,92,34,65,65,92,34,33,61,61,116,38,38,92,34,65,65,65,92,34,33,61,61,116,38,38,40,116,61,92,34,65,65,92,34,41,44,92,34,115,109,97,108,108,92,34,33,61,61,110,38,38,92,34,108,97,114,103,101,92,34,33,61,61,110,38,38,40,110,61,92,34,115,109,97,108,108,92,34,41,44,123,108,101,118,101,108,58,116,44,115,105,122,101,58,110,125,125,118,97,114,32,73,61,47,94,92,92,115,43,47,44,36,61,47,92,92,115,43,36,47,44,85,61,48,44,71,61,105,46,114,111,117,110,100,44,86,61,105,46,109,105,110,44,113,61,105,46,109,97,120,44,88,61,105,46,114,97,110,100,111,109,59,111,46,112,114,111,116,111,116,121,112,101,61,123,105,115,68,97,114,107,58,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,66,114,105,103,104,116,110,101,115,115,40,41,60,49,50,56,125,44,105,115,76,105,103,104,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,105,115,68,97,114,107,40,41,125,44,105,115,86,97,108,105,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,95,111,107,125,44,103,101,116,79,114,105,103,105,110,97,108,73,110,112,117,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,95,111,114,105,103,105,110,97,108,73,110,112,117,116,125,44,103,101,116,70,111,114,109,97,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,95,102,111,114,109,97,116,125,44,103,101,116,65,108,112,104,97,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,97,125,44,103,101,116,66,114,105,103,104,116,110,101,115,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,116,111,82,103,98,40,41,59,114,101,116,117,114,110,40,50,57,57,42,101,46,114,43,53,56,55,42,101,46,103,43,49,49,52,42,101,46,98,41,47,49,101,51,125,44,103,101,116,76,117,109,105,110,97,110,99,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,44,110,44,114,44,111,44,97,44,115,61,116,104,105,115,46,116,111,82,103,98,40,41,59,114,101,116,117,114,110,32,101,61,115,46,114,47,50,53,53,44,116,61,115,46,103,47,50,53,53,44,110,61,115,46,98,47,50,53,53,44,114,61,101,60,61,46,48,51,57,50,56,63,101,47,49,50,46,57,50,58,105,46,112,111,119,40,40,101,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,44,111,61,116,60,61,46,48,51,57,50,56,63,116,47,49,50,46,57,50,58,105,46,112,111,119,40,40,116,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,44,97,61,110,60,61,46,48,51,57,50,56,63,110,47,49,50,46,57,50,58,105,46,112,111,119,40,40,110,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,44,46,50,49,50,54,42,114,43,46,55,49,53,50,42,111,43,46,48,55,50,50,42,97,125,44,115,101,116,65,108,112,104,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,95,97,61,79,40,101,41,44,116,104,105,115,46,95,114,111,117,110,100,65,61,71,40,49,48,48,42,116,104,105,115,46,95,97,41,47,49,48,48,44,116,104,105,115,125,44,116,111,72,115,118,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,117,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,41,59,114,101,116,117,114,110,123,104,58,51,54,48,42,101,46,104,44,115,58,101,46,115,44,118,58,101,46,118,44,97,58,116,104,105,115,46,95,97,125,125,44,116,111,72,115,118,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,117,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,41,44,116,61,71,40,51,54,48,42,101,46,104,41,44,110,61,71,40,49,48,48,42,101,46,115,41,44,114,61,71,40,49,48,48,42,101,46,118,41,59,114,101,116,117,114,110,32,49,61,61,116,104,105,115,46,95,97,63,92,34,104,115,118,40,92,34,43,116,43,92,34,44,32,92,34,43,110,43,92,34,37,44,32,92,34,43,114,43,92,34,37,41,92,34,58,92,34,104,115,118,97,40,92,34,43,116,43,92,34,44,32,92,34,43,110,43,92,34,37,44,32,92,34,43,114,43,92,34,37,44,32,92,34,43,116,104,105,115,46,95,114,111,117,110,100,65,43,92,34,41,92,34,125,44,116,111,72,115,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,99,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,41,59,114,101,116,117,114,110,123,104,58,51,54,48,42,101,46,104,44,115,58,101,46,115,44,108,58,101,46,108,44,97,58,116,104,105,115,46,95,97,125,125,44,116,111,72,115,108,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,99,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,41,44,116,61,71,40,51,54,48,42,101,46,104,41,44,110,61,71,40,49,48,48,42,101,46,115,41,44,114,61,71,40,49,48,48,42,101,46,108,41,59,114,101,116,117,114,110,32,49,61,61,116,104,105,115,46,95,97,63,92,34,104,115,108,40,92,34,43,116,43,92,34,44,32,92,34,43,110,43,92,34,37,44,32,92,34,43,114,43,92,34,37,41,92,34,58,92,34,104,115,108,97,40,92,34,43,116,43,92,34,44,32,92,34,43,110,43,92,34,37,44,32,92,34,43,114,43,92,34,37,44,32,92,34,43,116,104,105,115,46,95,114,111,117,110,100,65,43,92,34,41,92,34,125,44,116,111,72,101,120,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,100,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,44,101,41,125,44,116,111,72,101,120,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,92,34,35,92,34,43,116,104,105,115,46,116,111,72,101,120,40,101,41,125,44,116,111,72,101,120,56,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,104,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,44,116,104,105,115,46,95,97,44,101,41,125,44,116,111,72,101,120,56,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,92,34,35,92,34,43,116,104,105,115,46,116,111,72,101,120,56,40,101,41,125,44,116,111,82,103,98,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,114,58,71,40,116,104,105,115,46,95,114,41,44,103,58,71,40,116,104,105,115,46,95,103,41,44,98,58,71,40,116,104,105,115,46,95,98,41,44,97,58,116,104,105,115,46,95,97,125,125,44,116,111,82,103,98,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,61,61,116,104,105,115,46,95,97,63,92,34,114,103,98,40,92,34,43,71,40,116,104,105,115,46,95,114,41,43,92,34,44,32,92,34,43,71,40,116,104,105,115,46,95,103,41,43,92,34,44,32,92,34,43,71,40,116,104,105,115,46,95,98,41,43,92,34,41,92,34,58,92,34,114,103,98,97,40,92,34,43,71,40,116,104,105,115,46,95,114,41,43,92,34,44,32,92,34,43,71,40,116,104,105,115,46,95,103,41,43,92,34,44,32,92,34,43,71,40,116,104,105,115,46,95,98,41,43,92,34,44,32,92,34,43,116,104,105,115,46,95,114,111,117,110,100,65,43,92,34,41,92,34,125,44,116,111,80,101,114,99,101,110,116,97,103,101,82,103,98,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,114,58,71,40,49,48,48,42,69,40,116,104,105,115,46,95,114,44,50,53,53,41,41,43,92,34,37,92,34,44,103,58,71,40,49,48,48,42,69,40,116,104,105,115,46,95,103,44,50,53,53,41,41,43,92,34,37,92,34,44,98,58,71,40,49,48,48,42,69,40,116,104,105,115,46,95,98,44,50,53,53,41,41,43,92,34,37,92,34,44,97,58,116,104,105,115,46,95,97,125,125,44,116,111,80,101,114,99,101,110,116,97,103,101,82,103,98,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,61,61,116,104,105,115,46,95,97,63,92,34,114,103,98,40,92,34,43,71,40,49,48,48,42,69,40,116,104,105,115,46,95,114,44,50,53,53,41,41,43,92,34,37,44,32,92,34,43,71,40,49,48,48,42,69,40,116,104,105,115,46,95,103,44,50,53,53,41,41,43,92,34,37,44,32,92,34,43,71,40,49,48,48,42,69,40,116,104,105,115,46,95,98,44,50,53,53,41,41,43,92,34,37,41,92,34,58,92,34,114,103,98,97,40,92,34,43,71,40,49,48,48,42,69,40,116,104,105,115,46,95,114,44,50,53,53,41,41,43,92,34,37,44,32,92,34,43,71,40,49,48,48,42,69,40,116,104,105,115,46,95,103,44,50,53,53,41,41,43,92,34,37,44,32,92,34,43,71,40,49,48,48,42,69,40,116,104,105,115,46,95,98,44,50,53,53,41,41,43,92,34,37,44,32,92,34,43,116,104,105,115,46,95,114,111,117,110,100,65,43,92,34,41,92,34,125,44,116,111,78,97,109,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,61,116,104,105,115,46,95,97,63,92,34,116,114,97,110,115,112,97,114,101,110,116,92,34,58,33,40,116,104,105,115,46,95,97,60,49,41,38,38,40,89,91,100,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,44,33,48,41,93,124,124,33,49,41,125,44,116,111,70,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,92,34,35,92,34,43,112,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,44,116,104,105,115,46,95,97,41,44,110,61,116,44,114,61,116,104,105,115,46,95,103,114,97,100,105,101,110,116,84,121,112,101,63,92,34,71,114,97,100,105,101,110,116,84,121,112,101,32,61,32,49,44,32,92,34,58,92,34,92,34,59,105,102,40,101,41,123,118,97,114,32,105,61,111,40,101,41,59,110,61,92,34,35,92,34,43,112,40,105,46,95,114,44,105,46,95,103,44,105,46,95,98,44,105,46,95,97,41,125,114,101,116,117,114,110,92,34,112,114,111,103,105,100,58,68,88,73,109,97,103,101,84,114,97,110,115,102,111,114,109,46,77,105,99,114,111,115,111,102,116,46,103,114,97,100,105,101,110,116,40,92,34,43,114,43,92,34,115,116,97,114,116,67,111,108,111,114,115,116,114,61,92,34,43,116,43,92,34,44,101,110,100,67,111,108,111,114,115,116,114,61,92,34,43,110,43,92,34,41,92,34,125,44,116,111,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,33,33,101,59,101,61,101,124,124,116,104,105,115,46,95,102,111,114,109,97,116,59,118,97,114,32,110,61,33,49,44,114,61,116,104,105,115,46,95,97,60,49,38,38,116,104,105,115,46,95,97,62,61,48,59,114,101,116,117,114,110,32,116,124,124,33,114,124,124,92,34,104,101,120,92,34,33,61,61,101,38,38,92,34,104,101,120,54,92,34,33,61,61,101,38,38,92,34,104,101,120,51,92,34,33,61,61,101,38,38,92,34,104,101,120,52,92,34,33,61,61,101,38,38,92,34,104,101,120,56,92,34,33,61,61,101,38,38,92,34,110,97,109,101,92,34,33,61,61,101,63,40,92,34,114,103,98,92,34,61,61,61,101,38,38,40,110,61,116,104,105,115,46,116,111,82,103,98,83,116,114,105,110,103,40,41,41,44,92,34,112,114,103,98,92,34,61,61,61,101,38,38,40,110,61,116,104,105,115,46,116,111,80,101,114,99,101,110,116,97,103,101,82,103,98,83,116,114,105,110,103,40,41,41,44,92,34,104,101,120,92,34,33,61,61,101,38,38,92,34,104,101,120,54,92,34,33,61,61,101,124,124,40,110,61,116,104,105,115,46,116,111,72,101,120,83,116,114,105,110,103,40,41,41,44,92,34,104,101,120,51,92,34,61,61,61,101,38,38,40,110,61,116,104,105,115,46,116,111,72,101,120,83,116,114,105,110,103,40,33,48,41,41,44,92,34,104,101,120,52,92,34,61,61,61,101,38,38,40,110,61,116,104,105,115,46,116,111,72,101,120,56,83,116,114,105,110,103,40,33,48,41,41,44,92,34,104,101,120,56,92,34,61,61,61,101,38,38,40,110,61,116,104,105,115,46,116,111,72,101,120,56,83,116,114,105,110,103,40,41,41,44,92,34,110,97,109,101,92,34,61,61,61,101,38,38,40,110,61,116,104,105,115,46,116,111,78,97,109,101,40,41,41,44,92,34,104,115,108,92,34,61,61,61,101,38,38,40,110,61,116,104,105,115,46,116,111,72,115,108,83,116,114,105,110,103,40,41,41,44,92,34,104,115,118,92,34,61,61,61,101,38,38,40,110,61,116,104,105,115,46,116,111,72,115,118,83,116,114,105,110,103,40,41,41,44,110,124,124,116,104,105,115,46,116,111,72,101,120,83,116,114,105,110,103,40,41,41,58,92,34,110,97,109,101,92,34,61,61,61,101,38,38,48,61,61,61,116,104,105,115,46,95,97,63,116,104,105,115,46,116,111,78,97,109,101,40,41,58,116,104,105,115,46,116,111,82,103,98,83,116,114,105,110,103,40,41,125,44,99,108,111,110,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,116,104,105,115,46,116,111,83,116,114,105,110,103,40,41,41,125,44,95,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,101,46,97,112,112,108,121,40,110,117,108,108,44,91,116,104,105,115,93,46,99,111,110,99,97,116,40,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,41,41,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,114,61,110,46,95,114,44,116,104,105,115,46,95,103,61,110,46,95,103,44,116,104,105,115,46,95,98,61,110,46,95,98,44,116,104,105,115,46,115,101,116,65,108,112,104,97,40,110,46,95,97,41,44,116,104,105,115,125,44,108,105,103,104,116,101,110,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,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,40,120,44,97,114,103,117,109,101,110,116,115,41,125,44,98,114,105,103,104,116,101,110,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,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,40,109,44,97,114,103,117,109,101,110,116,115,41,125,44,100,97,114,107,101,110,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,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,40,95,44,97,114,103,117,109,101,110,116,115,41,125,44,100,101,115,97,116,117,114,97,116,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,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,40,118,44,97,114,103,117,109,101,110,116,115,41,125,44,115,97,116,117,114,97,116,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,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,40,103,44,97,114,103,117,109,101,110,116,115,41,125,44,103,114,101,121,115,99,97,108,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,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,40,98,44,97,114,103,117,109,101,110,116,115,41,125,44,115,112,105,110,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,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,40,119,44,97,114,103,117,109,101,110,116,115,41,125,44,95,97,112,112,108,121,67,111,109,98,105,110,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,110,117,108,108,44,91,116,104,105,115,93,46,99,111,110,99,97,116,40,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,41,41,41,125,44,97,110,97,108,111,103,111,117,115,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,97,112,112,108,121,67,111,109,98,105,110,97,116,105,111,110,40,83,44,97,114,103,117,109,101,110,116,115,41,125,44,99,111,109,112,108,101,109,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,95,97,112,112,108,121,67,111,109,98,105,110,97,116,105,111,110,40,121,44,97,114,103,117,109,101,110,116,115,41,125,44,109,111,110,111,99,104,114,111,109,97,116,105,99,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,97,112,112,108,121,67,111,109,98,105,110,97,116,105,111,110,40,65,44,97,114,103,117,109,101,110,116,115,41,125,44,115,112,108,105,116,99,111,109,112,108,101,109,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,95,97,112,112,108,121,67,111,109,98,105,110,97,116,105,111,110,40,70,44,97,114,103,117,109,101,110,116,115,41,125,44,116,114,105,97,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,95,97,112,112,108,121,67,111,109,98,105,110,97,116,105,111,110,40,67,44,97,114,103,117,109,101,110,116,115,41,125,44,116,101,116,114,97,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,95,97,112,112,108,121,67,111,109,98,105,110,97,116,105,111,110,40,107,44,97,114,103,117,109,101,110,116,115,41,125,125,44,111,46,102,114,111,109,82,97,116,105,111,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,92,34,111,98,106,101,99,116,92,34,61,61,116,121,112,101,111,102,32,101,41,123,118,97,114,32,110,61,123,125,59,102,111,114,40,118,97,114,32,114,32,105,110,32,101,41,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,114,41,38,38,40,110,91,114,93,61,92,34,97,92,34,61,61,61,114,63,101,91,114,93,58,68,40,101,91,114,93,41,41,59,101,61,110,125,114,101,116,117,114,110,32,111,40,101,44,116,41,125,44,111,46,101,113,117,97,108,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,33,40,33,101,124,124,33,116,41,38,38,111,40,101,41,46,116,111,82,103,98,83,116,114,105,110,103,40,41,61,61,111,40,116,41,46,116,111,82,103,98,83,116,114,105,110,103,40,41,125,44,111,46,114,97,110,100,111,109,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,46,102,114,111,109,82,97,116,105,111,40,123,114,58,88,40,41,44,103,58,88,40,41,44,98,58,88,40,41,125,41,125,44,111,46,109,105,120,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,110,61,48,61,61,61,110,63,48,58,110,124,124,53,48,59,118,97,114,32,114,61,111,40,101,41,46,116,111,82,103,98,40,41,44,105,61,111,40,116,41,46,116,111,82,103,98,40,41,44,97,61,110,47,49,48,48,59,114,101,116,117,114,110,32,111,40,123,114,58,40,105,46,114,45,114,46,114,41,42,97,43,114,46,114,44,103,58,40,105,46,103,45,114,46,103,41,42,97,43,114,46,103,44,98,58,40,105,46,98,45,114,46,98,41,42,97,43,114,46,98,44,97,58,40,105,46,97,45,114,46,97,41,42,97,43,114,46,97,125,41,125,44,111,46,114,101,97,100,97,98,105,108,105,116,121,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,111,40,101,41,44,114,61,111,40,116,41,59,114,101,116,117,114,110,40,105,46,109,97,120,40,110,46,103,101,116,76,117,109,105,110,97,110,99,101,40,41,44,114,46,103,101,116,76,117,109,105,110,97,110,99,101,40,41,41,43,46,48,53,41,47,40,105,46,109,105,110,40,110,46,103,101,116,76,117,109,105,110,97,110,99,101,40,41,44,114,46,103,101,116,76,117,109,105,110,97,110,99,101,40,41,41,43,46,48,53,41,125,44,111,46,105,115,82,101,97,100,97,98,108,101,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,97,61,111,46,114,101,97,100,97,98,105,108,105,116,121,40,101,44,116,41,59,115,119,105,116,99,104,40,105,61,33,49,44,114,61,122,40,110,41,44,114,46,108,101,118,101,108,43,114,46,115,105,122,101,41,123,99,97,115,101,92,34,65,65,115,109,97,108,108,92,34,58,99,97,115,101,92,34,65,65,65,108,97,114,103,101,92,34,58,105,61,97,62,61,52,46,53,59,98,114,101,97,107,59,99,97,115,101,92,34,65,65,108,97,114,103,101,92,34,58,105,61,97,62,61,51,59,98,114,101,97,107,59,99,97,115,101,92,34,65,65,65,115,109,97,108,108,92,34,58,105,61,97,62,61,55,125,114,101,116,117,114,110,32,105,125,44,111,46,109,111,115,116,82,101,97,100,97,98,108,101,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,97,44,115,44,99,61,110,117,108,108,44,108,61,48,59,110,61,110,124,124,123,125,44,105,61,110,46,105,110,99,108,117,100,101,70,97,108,108,98,97,99,107,67,111,108,111,114,115,44,97,61,110,46,108,101,118,101,108,44,115,61,110,46,115,105,122,101,59,102,111,114,40,118,97,114,32,117,61,48,59,117,60,116,46,108,101,110,103,116,104,59,117,43,43,41,40,114,61,111,46,114,101,97,100,97,98,105,108,105,116,121,40,101,44,116,91,117,93,41,41,62,108,38,38,40,108,61,114,44,99,61,111,40,116,91,117,93,41,41,59,114,101,116,117,114,110,32,111,46,105,115,82,101,97,100,97,98,108,101,40,101,44,99,44,123,108,101,118,101,108,58,97,44,115,105,122,101,58,115,125,41,124,124,33,105,63,99,58,40,110,46,105,110,99,108,117,100,101,70,97,108,108,98,97,99,107,67,111,108,111,114,115,61,33,49,44,111,46,109,111,115,116,82,101,97,100,97,98,108,101,40,101,44,91,92,34,35,102,102,102,92,34,44,92,34,35,48,48,48,92,34,93,44,110,41,41,125,59,118,97,114,32,87,61,111,46,110,97,109,101,115,61,123,97,108,105,99,101,98,108,117,101,58,92,34,102,48,102,56,102,102,92,34,44,97,110,116,105,113,117,101,119,104,105,116,101,58,92,34,102,97,101,98,100,55,92,34,44,97,113,117,97,58,92,34,48,102,102,92,34,44,97,113,117,97,109,97,114,105,110,101,58,92,34,55,102,102,102,100,52,92,34,44,97,122,117,114,101,58,92,34,102,48,102,102,102,102,92,34,44,98,101,105,103,101,58,92,34,102,53,102,53,100,99,92,34,44,98,105,115,113,117,101,58,92,34,102,102,101,52,99,52,92,34,44,98,108,97,99,107,58,92,34,48,48,48,92,34,44,98,108,97,110,99,104,101,100,97,108,109,111,110,100,58,92,34,102,102,101,98,99,100,92,34,44,98,108,117,101,58,92,34,48,48,102,92,34,44,98,108,117,101,118,105,111,108,101,116,58,92,34,56,97,50,98,101,50,92,34,44,98,114,111,119,110,58,92,34,97,53,50,97,50,97,92,34,44,98,117,114,108,121,119,111,111,100,58,92,34,100,101,98,56,56,55,92,34,44,98,117,114,110,116,115,105,101,110,110,97,58,92,34,101,97,55,101,53,100,92,34,44,99,97,100,101,116,98,108,117,101,58,92,34,53,102,57,101,97,48,92,34,44,99,104,97,114,116,114,101,117,115,101,58,92,34,55,102,102,102,48,48,92,34,44,99,104,111,99,111,108,97,116,101,58,92,34,100,50,54,57,49,101,92,34,44,99,111,114,97,108,58,92,34,102,102,55,102,53,48,92,34,44,99,111,114,110,102,108,111,119,101,114,98,108,117,101,58,92,34,54,52,57,53,101,100,92,34,44,99,111,114,110,115,105,108,107,58,92,34,102,102,102,56,100,99,92,34,44,99,114,105,109,115,111,110,58,92,34,100,99,49,52,51,99,92,34,44,99,121,97,110,58,92,34,48,102,102,92,34,44,100,97,114,107,98,108,117,101,58,92,34,48,48,48,48,56,98,92,34,44,100,97,114,107,99,121,97,110,58,92,34,48,48,56,98,56,98,92,34,44,100,97,114,107,103,111,108,100,101,110,114,111,100,58,92,34,98,56,56,54,48,98,92,34,44,100,97,114,107,103,114,97,121,58,92,34,97,57,97,57,97,57,92,34,44,100,97,114,107,103,114,101,101,110,58,92,34,48,48,54,52,48,48,92,34,44,100,97,114,107,103,114,101,121,58,92,34,97,57,97,57,97,57,92,34,44,100,97,114,107,107,104,97,107,105,58,92,34,98,100,98,55,54,98,92,34,44,100,97,114,107,109,97,103,101,110,116,97,58,92,34,56,98,48,48,56,98,92,34,44,100,97,114,107,111,108,105,118,101,103,114,101,101,110,58,92,34,53,53,54,98,50,102,92,34,44,100,97,114,107,111,114,97,110,103,101,58,92,34,102,102,56,99,48,48,92,34,44,100,97,114,107,111,114,99,104,105,100,58,92,34,57,57,51,50,99,99,92,34,44,100,97,114,107,114,101,100,58,92,34,56,98,48,48,48,48,92,34,44,100,97,114,107,115,97,108,109,111,110,58,92,34,101,57,57,54,55,97,92,34,44,100,97,114,107,115,101,97,103,114,101,101,110,58,92,34,56,102,98,99,56,102,92,34,44,100,97,114,107,115,108,97,116,101,98,108,117,101,58,92,34,52,56,51,100,56,98,92,34,44,100,97,114,107,115,108,97,116,101,103,114,97,121,58,92,34,50,102,52,102,52,102,92,34,44,100,97,114,107,115,108,97,116,101,103,114,101,121,58,92,34,50,102,52,102,52,102,92,34,44,100,97,114,107,116,117,114,113,117,111,105,115,101,58,92,34,48,48,99,101,100,49,92,34,44,100,97,114,107,118,105,111,108,101,116,58,92,34,57,52,48,48,100,51,92,34,44,100,101,101,112,112,105,110,107,58,92,34,102,102,49,52,57,51,92,34,44,100,101,101,112,115,107,121,98,108,117,101,58,92,34,48,48,98,102,102,102,92,34,44,100,105,109,103,114,97,121,58,92,34,54,57,54,57,54,57,92,34,44,100,105,109,103,114,101,121,58,92,34,54,57,54,57,54,57,92,34,44,100,111,100,103,101,114,98,108,117,101,58,92,34,49,101,57,48,102,102,92,34,44,102,105,114,101,98,114,105,99,107,58,92,34,98,50,50,50,50,50,92,34,44,102,108,111,114,97,108,119,104,105,116,101,58,92,34,102,102,102,97,102,48,92,34,44,102,111,114,101,115,116,103,114,101,101,110,58,92,34,50,50,56,98,50,50,92,34,44,102,117,99,104,115,105,97,58,92,34,102,48,102,92,34,44,103,97,105,110,115,98,111,114,111,58,92,34,100,99,100,99,100,99,92,34,44,103,104,111,115,116,119,104,105,116,101,58,92,34,102,56,102,56,102,102,92,34,44,103,111,108,100,58,92,34,102,102,100,55,48,48,92,34,44,103,111,108,100,101,110,114,111,100,58,92,34,100,97,97,53,50,48,92,34,44,103,114,97,121,58,92,34,56,48,56,48,56,48,92,34,44,103,114,101,101,110,58,92,34,48,48,56,48,48,48,92,34,44,103,114,101,101,110,121,101,108,108,111,119,58,92,34,97,100,102,102,50,102,92,34,44,103,114,101,121,58,92,34,56,48,56,48,56,48,92,34,44,104,111,110,101,121,100,101,119,58,92,34,102,48,102,102,102,48,92,34,44,104,111,116,112,105,110,107,58,92,34,102,102,54,57,98,52,92,34,44,105,110,100,105,97,110,114,101,100,58,92,34,99,100,53,99,53,99,92,34,44,105,110,100,105,103,111,58,92,34,52,98,48,48,56,50,92,34,44,105,118,111,114,121,58,92,34,102,102,102,102,102,48,92,34,44,107,104,97,107,105,58,92,34,102,48,101,54,56,99,92,34,44,108,97,118,101,110,100,101,114,58,92,34,101,54,101,54,102,97,92,34,44,108,97,118,101,110,100,101,114,98,108,117,115,104,58,92,34,102,102,102,48,102,53,92,34,44,108,97,119,110,103,114,101,101,110,58,92,34,55,99,102,99,48,48,92,34,44,108,101,109,111,110,99,104,105,102,102,111,110,58,92,34,102,102,102,97,99,100,92,34,44,108,105,103,104,116,98,108,117,101,58,92,34,97,100,100,56,101,54,92,34,44,108,105,103,104,116,99,111,114,97,108,58,92,34,102,48,56,48,56,48,92,34,44,108,105,103,104,116,99,121,97,110,58,92,34,101,48,102,102,102,102,92,34,44,108,105,103,104,116,103,111,108,100,101,110,114,111,100,121,101,108,108,111,119,58,92,34,102,97,102,97,100,50,92,34,44,108,105,103,104,116,103,114,97,121,58,92,34,100,51,100,51,100,51,92,34,44,108,105,103,104,116,103,114,101,101,110,58,92,34,57,48,101,101,57,48,92,34,44,108,105,103,104,116,103,114,101,121,58,92,34,100,51,100,51,100,51,92,34,44,108,105,103,104,116,112,105,110,107,58,92,34,102,102,98,54,99,49,92,34,44,108,105,103,104,116,115,97,108,109,111,110,58,92,34,102,102,97,48,55,97,92,34,44,108,105,103,104,116,115,101,97,103,114,101,101,110,58,92,34,50,48,98,50,97,97,92,34,44,108,105,103,104,116,115,107,121,98,108,117,101,58,92,34,56,55,99,101,102,97,92,34,44,108,105,103,104,116,115,108,97,116,101,103,114,97,121,58,92,34,55,56,57,92,34,44,108,105,103,104,116,115,108,97,116,101,103,114,101,121,58,92,34,55,56,57,92,34,44,108,105,103,104,116,115,116,101,101,108,98,108,117,101,58,92,34,98,48,99,52,100,101,92,34,44,108,105,103,104,116,121,101,108,108,111,119,58,92,34,102,102,102,102,101,48,92,34,44,108,105,109,101,58,92,34,48,102,48,92,34,44,108,105,109,101,103,114,101,101,110,58,92,34,51,50,99,100,51,50,92,34,44,108,105,110,101,110,58,92,34,102,97,102,48,101,54,92,34,44,109,97,103,101,110,116,97,58,92,34,102,48,102,92,34,44,109,97,114,111,111,110,58,92,34,56,48,48,48,48,48,92,34,44,109,101,100,105,117,109,97,113,117,97,109,97,114,105,110,101,58,92,34,54,54,99,100,97,97,92,34,44,109,101,100,105,117,109,98,108,117,101,58,92,34,48,48,48,48,99,100,92,34,44,109,101,100,105,117,109,111,114,99,104,105,100,58,92,34,98,97,53,53,100,51,92,34,44,109,101,100,105,117,109,112,117,114,112,108,101,58,92,34,57,51,55,48,100,98,92,34,44,109,101,100,105,117,109,115,101,97,103,114,101,101,110,58,92,34,51,99,98,51,55,49,92,34,44,109,101,100,105,117,109,115,108,97,116,101,98,108,117,101,58,92,34,55,98,54,56,101,101,92,34,44,109,101,100,105,117,109,115,112,114,105,110,103,103,114,101,101,110,58,92,34,48,48,102,97,57,97,92,34,44,109,101,100,105,117,109,116,117,114,113,117,111,105,115,101,58,92,34,52,56,100,49,99,99,92,34,44,109,101,100,105,117,109,118,105,111,108,101,116,114,101,100,58,92,34,99,55,49,53,56,53,92,34,44,109,105,100,110,105,103,104,116,98,108,117,101,58,92,34,49,57,49,57,55,48,92,34,44,109,105,110,116,99,114,101,97,109,58,92,34,102,53,102,102,102,97,92,34,44,109,105,115,116,121,114,111,115,101,58,92,34,102,102,101,52,101,49,92,34,44,109,111,99,99,97,115,105,110,58,92,34,102,102,101,52,98,53,92,34,44,110,97,118,97,106,111,119,104,105,116,101,58,92,34,102,102,100,101,97,100,92,34,44,110,97,118,121,58,92,34,48,48,48,48,56,48,92,34,44,111,108,100,108,97,99,101,58,92,34,102,100,102,53,101,54,92,34,44,111,108,105,118,101,58,92,34,56,48,56,48,48,48,92,34,44,111,108,105,118,101,100,114,97,98,58,92,34,54,98,56,101,50,51,92,34,44,111,114,97,110,103,101,58,92,34,102,102,97,53,48,48,92,34,44,111,114,97,110,103,101,114,101,100,58,92,34,102,102,52,53,48,48,92,34,44,111,114,99,104,105,100,58,92,34,100,97,55,48,100,54,92,34,44,112,97,108,101,103,111,108,100,101,110,114,111,100,58,92,34,101,101,101,56,97,97,92,34,44,112,97,108,101,103,114,101,101,110,58,92,34,57,56,102,98,57,56,92,34,44,112,97,108,101,116,117,114,113,117,111,105,115,101,58,92,34,97,102,101,101,101,101,92,34,44,112,97,108,101,118,105,111,108,101,116,114,101,100,58,92,34,100,98,55,48,57,51,92,34,44,112,97,112,97,121,97,119,104,105,112,58,92,34,102,102,101,102,100,53,92,34,44,112,101,97,99,104,112,117,102,102,58,92,34,102,102,100,97,98,57,92,34,44,112,101,114,117,58,92,34,99,100,56,53,51,102,92,34,44,112,105,110,107,58,92,34,102,102,99,48,99,98,92,34,44,112,108,117,109,58,92,34,100,100,97,48,100,100,92,34,44,112,111,119,100,101,114,98,108,117,101,58,92,34,98,48,101,48,101,54,92,34,44,112,117,114,112,108,101,58,92,34,56,48,48,48,56,48,92,34,44,114,101,98,101,99,99,97,112,117,114,112,108,101,58,92,34,54,54,51,51,57,57,92,34,44,114,101,100,58,92,34,102,48,48,92,34,44,114,111,115,121,98,114,111,119,110,58,92,34,98,99,56,102,56,102,92,34,44,114,111,121,97,108,98,108,117,101,58,92,34,52,49,54,57,101,49,92,34,44,115,97,100,100,108,101,98,114,111,119,110,58,92,34,56,98,52,53,49,51,92,34,44,115,97,108,109,111,110,58,92,34,102,97,56,48,55,50,92,34,44,115,97,110,100,121,98,114,111,119,110,58,92,34,102,52,97,52,54,48,92,34,44,115,101,97,103,114,101,101,110,58,92,34,50,101,56,98,53,55,92,34,44,115,101,97,115,104,101,108,108,58,92,34,102,102,102,53,101,101,92,34,44,115,105,101,110,110,97,58,92,34,97,48,53,50,50,100,92,34,44,115,105,108,118,101,114,58,92,34,99,48,99,48,99,48,92,34,44,115,107,121,98,108,117,101,58,92,34,56,55,99,101,101,98,92,34,44,115,108,97,116,101,98,108,117,101,58,92,34,54,97,53,97,99,100,92,34,44,115,108,97,116,101,103,114,97,121,58,92,34,55,48,56,48,57,48,92,34,44,115,108,97,116,101,103,114,101,121,58,92,34,55,48,56,48,57,48,92,34,44,115,110,111,119,58,92,34,102,102,102,97,102,97,92,34,44,115,112,114,105,110,103,103,114,101,101,110,58,92,34,48,48,102,102,55,102,92,34,44,115,116,101,101,108,98,108,117,101,58,92,34,52,54,56,50,98,52,92,34,44,116,97,110,58,92,34,100,50,98,52,56,99,92,34,44,116,101,97,108,58,92,34,48,48,56,48,56,48,92,34,44,116,104,105,115,116,108,101,58,92,34,100,56,98,102,100,56,92,34,44,116,111,109,97,116,111,58,92,34,102,102,54,51,52,55,92,34,44,116,117,114,113,117,111,105,115,101,58,92,34,52,48,101,48,100,48,92,34,44,118,105,111,108,101,116,58,92,34,101,101,56,50,101,101,92,34,44,119,104,101,97,116,58,92,34,102,53,100,101,98,51,92,34,44,119,104,105,116,101,58,92,34,102,102,102,92,34,44,119,104,105,116,101,115,109,111,107,101,58,92,34,102,53,102,53,102,53,92,34,44,121,101,108,108,111,119,58,92,34,102,102,48,92,34,44,121,101,108,108,111,119,103,114,101,101,110,58,92,34,57,97,99,100,51,50,92,34,125,44,89,61,111,46,104,101,120,78,97,109,101,115,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,123,125,59,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,110,41,38,38,40,116,91,101,91,110,93,93,61,110,41,59,114,101,116,117,114,110,32,116,125,40,87,41,44,74,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,92,34,40,63,58,91,45,92,92,92,92,43,93,63,92,92,92,92,100,42,92,92,92,92,46,92,92,92,92,100,43,37,63,41,124,40,63,58,91,45,92,92,92,92,43,93,63,92,92,92,92,100,43,37,63,41,92,34,44,116,61,92,34,91,92,92,92,92,115,124,92,92,92,92,40,93,43,40,92,34,43,101,43,92,34,41,91,44,124,92,92,92,92,115,93,43,40,92,34,43,101,43,92,34,41,91,44,124,92,92,92,92,115,93,43,40,92,34,43,101,43,92,34,41,92,92,92,92,115,42,92,92,92,92,41,63,92,34,44,110,61,92,34,91,92,92,92,92,115,124,92,92,92,92,40,93,43,40,92,34,43,101,43,92,34,41,91,44,124,92,92,92,92,115,93,43,40,92,34,43,101,43,92,34,41,91,44,124,92,92,92,92,115,93,43,40,92,34,43,101,43,92,34,41,91,44,124,92,92,92,92,115,93,43,40,92,34,43,101,43,92,34,41,92,92,92,92,115,42,92,92,92,92,41,63,92,34,59,114,101,116,117,114,110,123,67,83,83,95,85,78,73,84,58,110,101,119,32,82,101,103,69,120,112,40,101,41,44,114,103,98,58,110,101,119,32,82,101,103,69,120,112,40,92,34,114,103,98,92,34,43,116,41,44,114,103,98,97,58,110,101,119,32,82,101,103,69,120,112,40,92,34,114,103,98,97,92,34,43,110,41,44,104,115,108,58,110,101,119,32,82,101,103,69,120,112,40,92,34,104,115,108,92,34,43,116,41,44,104,115,108,97,58,110,101,119,32,82,101,103,69,120,112,40,92,34,104,115,108,97,92,34,43,110,41,44,104,115,118,58,110,101,119,32,82,101,103,69,120,112,40,92,34,104,115,118,92,34,43,116,41,44,104,115,118,97,58,110,101,119,32,82,101,103,69,120,112,40,92,34,104,115,118,97,92,34,43,110,41,44,104,101,120,51,58,47,94,35,63,40,91,48,45,57,97,45,102,65,45,70,93,123,49,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,49,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,49,125,41,36,47,44,104,101,120,54,58,47,94,35,63,40,91,48,45,57,97,45,102,65,45,70,93,123,50,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,50,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,50,125,41,36,47,44,104,101,120,52,58,47,94,35,63,40,91,48,45,57,97,45,102,65,45,70,93,123,49,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,49,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,49,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,49,125,41,36,47,44,104,101,120,56,58,47,94,35,63,40,91,48,45,57,97,45,102,65,45,70,93,123,50,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,50,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,50,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,50,125,41,36,47,125,125,40,41,59,118,111,105,100,32,48,33,61,61,101,38,38,101,46,101,120,112,111,114,116,115,63,101,46,101,120,112,111,114,116,115,61,111,58,118,111,105,100,32,48,33,61,61,40,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,125,46,99,97,108,108,40,116,44,110,44,116,44,101,41,41,38,38,40,101,46,101,120,112,111,114,116,115,61,114,41,125,40,77,97,116,104,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,54,55,41,59,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,101,46,105,44,114,44,92,34,92,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,101,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,59,110,40,49,41,40,92,34,48,102,55,51,101,55,51,99,92,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,116,61,101,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,116,46,112,117,115,104,40,91,101,46,105,44,92,34,92,92,110,46,118,99,45,101,100,105,116,97,98,108,101,45,105,110,112,117,116,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,125,92,92,110,46,118,99,45,105,110,112,117,116,95,95,105,110,112,117,116,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,59,92,92,110,32,32,98,111,114,100,101,114,58,32,48,59,92,92,110,32,32,111,117,116,108,105,110,101,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,32,123,92,92,110,32,32,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,32,99,97,112,105,116,97,108,105,122,101,59,92,92,110,125,92,92,110,92,34,44,92,34,92,34,93,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,101,100,105,116,97,98,108,101,45,105,110,112,117,116,92,34,125,44,91,110,40,92,34,105,110,112,117,116,92,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,92,34,109,111,100,101,108,92,34,44,114,97,119,78,97,109,101,58,92,34,118,45,109,111,100,101,108,92,34,44,118,97,108,117,101,58,101,46,118,97,108,44,101,120,112,114,101,115,115,105,111,110,58,92,34,118,97,108,92,34,125,93,44,114,101,102,58,92,34,105,110,112,117,116,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,105,110,112,117,116,95,95,105,110,112,117,116,92,34,44,97,116,116,114,115,58,123,92,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,92,34,58,101,46,108,97,98,101,108,73,100,125,44,100,111,109,80,114,111,112,115,58,123,118,97,108,117,101,58,101,46,118,97,108,125,44,111,110,58,123,107,101,121,100,111,119,110,58,101,46,104,97,110,100,108,101,75,101,121,68,111,119,110,44,105,110,112,117,116,58,91,102,117,110,99,116,105,111,110,40,116,41,123,116,46,116,97,114,103,101,116,46,99,111,109,112,111,115,105,110,103,124,124,40,101,46,118,97,108,61,116,46,116,97,114,103,101,116,46,118,97,108,117,101,41,125,44,101,46,117,112,100,97,116,101,93,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,115,112,97,110,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,92,34,44,97,116,116,114,115,58,123,102,111,114,58,101,46,108,97,98,101,108,44,105,100,58,101,46,108,97,98,101,108,73,100,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,108,97,98,101,108,83,112,97,110,84,101,120,116,41,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,115,112,97,110,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,105,110,112,117,116,95,95,100,101,115,99,92,34,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,100,101,115,99,41,41,93,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,116,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,111,109,112,97,99,116,92,34,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,97,112,112,108,105,99,97,116,105,111,110,92,34,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,67,111,109,112,97,99,116,32,99,111,108,111,114,32,112,105,99,107,101,114,92,34,125,125,44,91,110,40,92,34,117,108,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,111,109,112,97,99,116,45,99,111,108,111,114,115,92,34,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,108,105,115,116,98,111,120,92,34,125,125,44,101,46,95,108,40,101,46,112,97,108,101,116,116,101,85,112,112,101,114,67,97,115,101,40,101,46,112,97,108,101,116,116,101,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,92,34,108,105,92,34,44,123,107,101,121,58,116,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,111,109,112,97,99,116,45,99,111,108,111,114,45,105,116,101,109,92,34,44,99,108,97,115,115,58,123,92,34,118,99,45,99,111,109,112,97,99,116,45,99,111,108,111,114,45,105,116,101,109,45,45,119,104,105,116,101,92,34,58,92,34,35,70,70,70,70,70,70,92,34,61,61,61,116,125,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,116,125,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,111,112,116,105,111,110,92,34,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,99,111,108,111,114,58,92,34,43,116,44,92,34,97,114,105,97,45,115,101,108,101,99,116,101,100,92,34,58,116,61,61,61,101,46,112,105,99,107,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,46,104,97,110,100,108,101,114,67,108,105,99,107,40,116,41,125,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,92,34,115,104,111,119,92,34,44,114,97,119,78,97,109,101,58,92,34,118,45,115,104,111,119,92,34,44,118,97,108,117,101,58,116,61,61,61,101,46,112,105,99,107,44,101,120,112,114,101,115,115,105,111,110,58,92,34,99,32,61,61,61,32,112,105,99,107,92,34,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,111,109,112,97,99,116,45,100,111,116,92,34,125,41,93,41,125,41,44,48,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,116,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,99,124,124,110,40,55,49,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,55,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,92,34,100,101,102,97,117,108,116,92,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,101,41,123,110,46,100,40,116,44,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,101,93,125,41,125,40,97,41,59,118,97,114,32,115,61,110,40,55,51,41,44,99,61,33,49,44,108,61,110,40,50,41,44,117,61,114,44,102,61,108,40,111,46,97,44,115,46,97,44,33,49,44,117,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,71,114,97,121,115,99,97,108,101,46,118,117,101,92,34,44,116,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,55,50,41,59,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,101,46,105,44,114,44,92,34,92,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,101,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,59,110,40,49,41,40,92,34,50,49,100,100,98,98,55,52,92,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,116,61,101,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,116,46,112,117,115,104,40,91,101,46,105,44,92,34,92,92,110,46,118,99,45,103,114,97,121,115,99,97,108,101,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,50,53,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,50,112,120,32,49,53,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,41,44,32,48,32,50,112,120,32,49,48,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,54,41,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,102,102,59,92,92,110,125,92,92,110,46,118,99,45,103,114,97,121,115,99,97,108,101,45,99,111,108,111,114,115,32,123,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,59,92,92,110,32,32,109,97,114,103,105,110,58,32,48,59,92,92,110,125,92,92,110,46,118,99,45,103,114,97,121,115,99,97,108,101,45,99,111,108,111,114,45,105,116,101,109,32,123,92,92,110,32,32,108,105,115,116,45,115,116,121,108,101,58,32,110,111,110,101,59,92,92,110,32,32,119,105,100,116,104,58,32,50,53,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,53,112,120,59,92,92,110,32,32,102,108,111,97,116,58,32,108,101,102,116,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,125,92,92,110,46,118,99,45,103,114,97,121,115,99,97,108,101,45,99,111,108,111,114,45,105,116,101,109,45,45,119,104,105,116,101,32,46,118,99,45,103,114,97,121,115,99,97,108,101,45,100,111,116,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,48,48,48,59,92,92,110,125,92,92,110,46,118,99,45,103,114,97,121,115,99,97,108,101,45,100,111,116,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,116,111,112,58,32,53,48,37,59,92,92,110,32,32,108,101,102,116,58,32,53,48,37,59,92,92,110,32,32,119,105,100,116,104,58,32,54,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,54,112,120,59,92,92,110,32,32,109,97,114,103,105,110,58,32,45,51,112,120,32,48,32,48,32,45,50,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,53,48,37,59,92,92,110,32,32,111,112,97,99,105,116,121,58,32,49,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,92,92,110,125,92,92,110,92,34,44,92,34,92,34,93,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,103,114,97,121,115,99,97,108,101,92,34,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,97,112,112,108,105,99,97,116,105,111,110,92,34,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,71,114,97,121,115,99,97,108,101,32,99,111,108,111,114,32,112,105,99,107,101,114,92,34,125,125,44,91,110,40,92,34,117,108,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,103,114,97,121,115,99,97,108,101,45,99,111,108,111,114,115,92,34,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,108,105,115,116,98,111,120,92,34,125,125,44,101,46,95,108,40,101,46,112,97,108,101,116,116,101,85,112,112,101,114,67,97,115,101,40,101,46,112,97,108,101,116,116,101,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,92,34,108,105,92,34,44,123,107,101,121,58,116,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,103,114,97,121,115,99,97,108,101,45,99,111,108,111,114,45,105,116,101,109,92,34,44,99,108,97,115,115,58,123,92,34,118,99,45,103,114,97,121,115,99,97,108,101,45,99,111,108,111,114,45,105,116,101,109,45,45,119,104,105,116,101,92,34,58,92,34,35,70,70,70,70,70,70,92,34,61,61,116,125,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,116,125,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,111,112,116,105,111,110,92,34,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,67,111,108,111,114,58,92,34,43,116,44,92,34,97,114,105,97,45,115,101,108,101,99,116,101,100,92,34,58,116,61,61,61,101,46,112,105,99,107,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,46,104,97,110,100,108,101,114,67,108,105,99,107,40,116,41,125,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,92,34,115,104,111,119,92,34,44,114,97,119,78,97,109,101,58,92,34,118,45,115,104,111,119,92,34,44,118,97,108,117,101,58,116,61,61,61,101,46,112,105,99,107,44,101,120,112,114,101,115,115,105,111,110,58,92,34,99,32,61,61,61,32,112,105,99,107,92,34,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,103,114,97,121,115,99,97,108,101,45,100,111,116,92,34,125,41,93,41,125,41,44,48,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,116,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,99,124,124,110,40,55,53,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,56,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,92,34,100,101,102,97,117,108,116,92,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,101,41,123,110,46,100,40,116,44,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,101,93,125,41,125,40,97,41,59,118,97,114,32,115,61,110,40,55,55,41,44,99,61,33,49,44,108,61,110,40,50,41,44,117,61,114,44,102,61,108,40,111,46,97,44,115,46,97,44,33,49,44,117,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,97,116,101,114,105,97,108,46,118,117,101,92,34,44,116,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,55,54,41,59,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,101,46,105,44,114,44,92,34,92,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,101,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,59,110,40,49,41,40,92,34,49,102,102,51,97,102,55,51,92,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,116,61,101,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,116,46,112,117,115,104,40,91,101,46,105,44,39,92,92,110,46,118,99,45,109,97,116,101,114,105,97,108,32,123,92,92,110,32,32,119,105,100,116,104,58,32,57,56,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,57,56,112,120,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,49,54,112,120,59,92,92,110,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,92,34,82,111,98,111,116,111,92,34,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,50,112,120,32,49,48,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,41,44,32,48,32,50,112,120,32,53,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,54,41,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,102,102,59,92,92,110,125,92,92,110,46,118,99,45,109,97,116,101,114,105,97,108,32,46,118,99,45,105,110,112,117,116,95,95,105,110,112,117,116,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,50,112,120,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,53,112,120,59,92,92,110,32,32,99,111,108,111,114,58,32,35,51,51,51,59,92,92,110,32,32,104,101,105,103,104,116,58,32,51,48,112,120,59,92,92,110,125,92,92,110,46,118,99,45,109,97,116,101,114,105,97,108,32,46,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,116,111,112,58,32,48,59,92,92,110,32,32,108,101,102,116,58,32,48,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,49,112,120,59,92,92,110,32,32,99,111,108,111,114,58,32,35,57,57,57,59,92,92,110,32,32,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,32,99,97,112,105,116,97,108,105,122,101,59,92,92,110,125,92,92,110,46,118,99,45,109,97,116,101,114,105,97,108,45,104,101,120,32,123,92,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,58,32,50,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,45,115,116,121,108,101,58,32,115,111,108,105,100,59,92,92,110,125,92,92,110,46,118,99,45,109,97,116,101,114,105,97,108,45,115,112,108,105,116,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,45,49,48,112,120,59,92,92,110,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,49,49,112,120,59,92,92,110,125,92,92,110,46,118,99,45,109,97,116,101,114,105,97,108,45,116,104,105,114,100,32,123,92,92,110,32,32,102,108,101,120,58,32,49,59,92,92,110,32,32,112,97,100,100,105,110,103,45,114,105,103,104,116,58,32,49,48,112,120,59,92,92,110,125,92,92,110,39,44,92,34,92,34,93,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,109,97,116,101,114,105,97,108,92,34,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,97,112,112,108,105,99,97,116,105,111,110,92,34,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,77,97,116,101,114,105,97,108,32,99,111,108,111,114,32,112,105,99,107,101,114,92,34,125,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,109,97,116,101,114,105,97,108,45,104,101,120,92,34,44,115,116,121,108,101,58,123,98,111,114,100,101,114,67,111,108,111,114,58,101,46,99,111,108,111,114,115,46,104,101,120,125,44,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,104,101,120,92,34,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,111,110,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,104,101,120,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,36,115,101,116,40,101,46,99,111,108,111,114,115,44,92,34,104,101,120,92,34,44,116,41,125,44,101,120,112,114,101,115,115,105,111,110,58,92,34,99,111,108,111,114,115,46,104,101,120,92,34,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,109,97,116,101,114,105,97,108,45,115,112,108,105,116,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,109,97,116,101,114,105,97,108,45,116,104,105,114,100,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,114,92,34,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,111,110,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,114,103,98,97,46,114,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,36,115,101,116,40,101,46,99,111,108,111,114,115,46,114,103,98,97,44,92,34,114,92,34,44,116,41,125,44,101,120,112,114,101,115,115,105,111,110,58,92,34,99,111,108,111,114,115,46,114,103,98,97,46,114,92,34,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,109,97,116,101,114,105,97,108,45,116,104,105,114,100,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,103,92,34,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,111,110,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,114,103,98,97,46,103,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,36,115,101,116,40,101,46,99,111,108,111,114,115,46,114,103,98,97,44,92,34,103,92,34,44,116,41,125,44,101,120,112,114,101,115,115,105,111,110,58,92,34,99,111,108,111,114,115,46,114,103,98,97,46,103,92,34,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,109,97,116,101,114,105,97,108,45,116,104,105,114,100,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,98,92,34,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,111,110,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,114,103,98,97,46,98,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,36,115,101,116,40,101,46,99,111,108,111,114,115,46,114,103,98,97,44,92,34,98,92,34,44,116,41,125,44,101,120,112,114,101,115,115,105,111,110,58,92,34,99,111,108,111,114,115,46,114,103,98,97,46,98,92,34,125,125,41,93,44,49,41,93,41,93,44,49,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,116,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,99,124,124,110,40,55,57,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,57,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,92,34,100,101,102,97,117,108,116,92,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,101,41,123,110,46,100,40,116,44,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,101,93,125,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,49,52,41,44,99,61,33,49,44,108,61,110,40,50,41,44,117,61,114,44,102,61,108,40,111,46,97,44,115,46,97,44,33,49,44,117,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,108,105,100,101,114,46,118,117,101,92,34,44,116,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,56,48,41,59,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,101,46,105,44,114,44,92,34,92,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,101,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,59,110,40,49,41,40,92,34,55,57,56,50,97,97,52,51,92,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,116,61,101,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,116,46,112,117,115,104,40,91,101,46,105,44,92,34,92,92,110,46,118,99,45,115,108,105,100,101,114,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,119,105,100,116,104,58,32,52,49,48,112,120,59,92,92,110,125,92,92,110,46,118,99,45,115,108,105,100,101,114,45,104,117,101,45,119,97,114,112,32,123,92,92,110,32,32,104,101,105,103,104,116,58,32,49,50,112,120,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,125,92,92,110,46,118,99,45,115,108,105,100,101,114,45,104,117,101,45,119,97,114,112,32,46,118,99,45,104,117,101,45,112,105,99,107,101,114,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,52,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,52,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,54,112,120,59,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,55,112,120,44,32,45,50,112,120,41,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,50,52,56,44,32,50,52,56,44,32,50,52,56,41,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,49,112,120,32,52,112,120,32,48,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,51,55,41,59,92,92,110,125,92,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,101,115,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,50,48,112,120,59,92,92,110,125,92,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,32,123,92,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,49,112,120,59,92,92,110,32,32,102,108,101,120,58,32,49,59,92,92,110,32,32,119,105,100,116,104,58,32,50,48,37,59,92,92,110,125,92,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,58,102,105,114,115,116,45,99,104,105,108,100,32,123,92,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,49,112,120,59,92,92,110,125,92,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,58,102,105,114,115,116,45,99,104,105,108,100,32,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,32,123,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,32,48,112,120,32,48,112,120,32,50,112,120,59,92,92,110,125,92,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,58,108,97,115,116,45,99,104,105,108,100,32,123,92,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,48,59,92,92,110,125,92,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,58,108,97,115,116,45,99,104,105,108,100,32,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,32,123,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,112,120,32,50,112,120,32,50,112,120,32,48,112,120,59,92,92,110,125,92,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,50,112,120,59,92,92,110,125,92,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,58,110,116,104,45,99,104,105,108,100,40,110,41,32,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,45,45,97,99,116,105,118,101,32,123,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,115,99,97,108,101,89,40,49,46,56,41,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,51,46,54,112,120,47,50,112,120,59,92,92,110,125,92,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,45,45,119,104,105,116,101,32,123,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,35,100,100,100,59,92,92,110,125,92,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,45,45,97,99,116,105,118,101,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,45,45,119,104,105,116,101,32,123,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,48,46,54,112,120,32,35,100,100,100,59,92,92,110,125,92,92,110,92,34,44,92,34,92,34,93,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,116,46,95,95,101,115,77,111,100,117,108,101,61,33,48,59,118,97,114,32,105,61,110,40,56,50,41,44,111,61,114,40,105,41,44,97,61,110,40,49,48,48,41,44,115,61,114,40,97,41,44,99,61,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,115,46,100,101,102,97,117,108,116,38,38,92,34,115,121,109,98,111,108,92,34,61,61,116,121,112,101,111,102,32,111,46,100,101,102,97,117,108,116,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,101,125,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,115,46,100,101,102,97,117,108,116,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,115,46,100,101,102,97,117,108,116,38,38,101,33,61,61,115,46,100,101,102,97,117,108,116,46,112,114,111,116,111,116,121,112,101,63,92,34,115,121,109,98,111,108,92,34,58,116,121,112,101,111,102,32,101,125,59,116,46,100,101,102,97,117,108,116,61,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,115,46,100,101,102,97,117,108,116,38,38,92,34,115,121,109,98,111,108,92,34,61,61,61,99,40,111,46,100,101,102,97,117,108,116,41,63,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,92,34,117,110,100,101,102,105,110,101,100,92,34,58,99,40,101,41,125,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,115,46,100,101,102,97,117,108,116,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,115,46,100,101,102,97,117,108,116,38,38,101,33,61,61,115,46,100,101,102,97,117,108,116,46,112,114,111,116,111,116,121,112,101,63,92,34,115,121,109,98,111,108,92,34,58,118,111,105,100,32,48,61,61,61,101,63,92,34,117,110,100,101,102,105,110,101,100,92,34,58,99,40,101,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,101,46,101,120,112,111,114,116,115,61,123,100,101,102,97,117,108,116,58,110,40,56,51,41,44,95,95,101,115,77,111,100,117,108,101,58,33,48,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,110,40,56,52,41,44,110,40,57,54,41,44,101,46,101,120,112,111,114,116,115,61,110,40,51,50,41,46,102,40,92,34,105,116,101,114,97,116,111,114,92,34,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,61,110,40,56,53,41,40,33,48,41,59,110,40,52,48,41,40,83,116,114,105,110,103,44,92,34,83,116,114,105,110,103,92,34,44,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,95,116,61,83,116,114,105,110,103,40,101,41,44,116,104,105,115,46,95,105,61,48,125,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,61,116,104,105,115,46,95,116,44,110,61,116,104,105,115,46,95,105,59,114,101,116,117,114,110,32,110,62,61,116,46,108,101,110,103,116,104,63,123,118,97,108,117,101,58,118,111,105,100,32,48,44,100,111,110,101,58,33,48,125,58,40,101,61,114,40,116,44,110,41,44,116,104,105,115,46,95,105,43,61,101,46,108,101,110,103,116,104,44,123,118,97,108,117,101,58,101,44,100,111,110,101,58,33,49,125,41,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,50,51,41,44,105,61,110,40,50,52,41,59,101,46,101,120,112,111,114,116,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,44,110,41,123,118,97,114,32,111,44,97,44,115,61,83,116,114,105,110,103,40,105,40,116,41,41,44,99,61,114,40,110,41,44,108,61,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,99,60,48,124,124,99,62,61,108,63,101,63,92,34,92,34,58,118,111,105,100,32,48,58,40,111,61,115,46,99,104,97,114,67,111,100,101,65,116,40,99,41,44,111,60,53,53,50,57,54,124,124,111,62,53,54,51,49,57,124,124,99,43,49,61,61,61,108,124,124,40,97,61,115,46,99,104,97,114,67,111,100,101,65,116,40,99,43,49,41,41,60,53,54,51,50,48,124,124,97,62,53,55,51,52,51,63,101,63,115,46,99,104,97,114,65,116,40,99,41,58,111,58,101,63,115,46,115,108,105,99,101,40,99,44,99,43,50,41,58,97,45,53,54,51,50,48,43,40,111,45,53,53,50,57,54,60,60,49,48,41,43,54,53,53,51,54,41,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,56,55,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,114,40,101,41,44,118,111,105,100,32,48,61,61,61,116,41,114,101,116,117,114,110,32,101,59,115,119,105,116,99,104,40,110,41,123,99,97,115,101,32,49,58,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,46,99,97,108,108,40,116,44,110,41,125,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,101,46,99,97,108,108,40,116,44,110,44,114,41,125,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,44,105,41,123,114,101,116,117,114,110,32,101,46,99,97,108,108,40,116,44,110,44,114,44,105,41,125,125,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,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,92,34,102,117,110,99,116,105,111,110,92,34,33,61,116,121,112,101,111,102,32,101,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,101,43,92,34,32,105,115,32,110,111,116,32,97,32,102,117,110,99,116,105,111,110,33,92,34,41,59,114,101,116,117,114,110,32,101,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,61,110,40,52,53,41,44,105,61,110,40,49,56,41,44,111,61,110,40,51,49,41,44,97,61,123,125,59,110,40,55,41,40,97,44,110,40,49,49,41,40,92,34,105,116,101,114,97,116,111,114,92,34,41,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,41,44,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,101,46,112,114,111,116,111,116,121,112,101,61,114,40,97,44,123,110,101,120,116,58,105,40,49,44,110,41,125,41,44,111,40,101,44,116,43,92,34,32,73,116,101,114,97,116,111,114,92,34,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,56,41,44,105,61,110,40,49,54,41,44,111,61,110,40,50,55,41,59,101,46,101,120,112,111,114,116,115,61,110,40,57,41,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,40,101,41,59,102,111,114,40,118,97,114,32,110,44,97,61,111,40,116,41,44,115,61,97,46,108,101,110,103,116,104,44,99,61,48,59,115,62,99,59,41,114,46,102,40,101,44,110,61,97,91,99,43,43,93,44,116,91,110,93,41,59,114,101,116,117,114,110,32,101,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,52,55,41,59,101,46,101,120,112,111,114,116,115,61,79,98,106,101,99,116,40,92,34,122,92,34,41,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,40,48,41,63,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,92,34,83,116,114,105,110,103,92,34,61,61,114,40,101,41,63,101,46,115,112,108,105,116,40,92,34,92,34,41,58,79,98,106,101,99,116,40,101,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,48,41,44,105,61,110,40,57,50,41,44,111,61,110,40,57,51,41,59,101,46,101,120,112,111,114,116,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,44,110,44,97,41,123,118,97,114,32,115,44,99,61,114,40,116,41,44,108,61,105,40,99,46,108,101,110,103,116,104,41,44,117,61,111,40,97,44,108,41,59,105,102,40,101,38,38,110,33,61,110,41,123,102,111,114,40,59,108,62,117,59,41,105,102,40,40,115,61,99,91,117,43,43,93,41,33,61,115,41,114,101,116,117,114,110,33,48,125,101,108,115,101,32,102,111,114,40,59,108,62,117,59,117,43,43,41,105,102,40,40,101,124,124,117,32,105,110,32,99,41,38,38,99,91,117,93,61,61,61,110,41,114,101,116,117,114,110,32,101,124,124,117,124,124,48,59,114,101,116,117,114,110,33,101,38,38,45,49,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,50,51,41,44,105,61,77,97,116,104,46,109,105,110,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,62,48,63,105,40,114,40,101,41,44,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,41,58,48,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,50,51,41,44,105,61,77,97,116,104,46,109,97,120,44,111,61,77,97,116,104,46,109,105,110,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,114,40,101,41,44,101,60,48,63,105,40,101,43,116,44,48,41,58,111,40,101,44,116,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,52,41,46,100,111,99,117,109,101,110,116,59,101,46,101,120,112,111,114,116,115,61,114,38,38,114,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,54,41,44,105,61,110,40,52,56,41,44,111,61,110,40,50,56,41,40,92,34,73,69,95,80,82,79,84,79,92,34,41,44,97,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,59,101,46,101,120,112,111,114,116,115,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,105,40,101,41,44,114,40,101,44,111,41,63,101,91,111,93,58,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,101,46,99,111,110,115,116,114,117,99,116,111,114,38,38,101,32,105,110,115,116,97,110,99,101,111,102,32,101,46,99,111,110,115,116,114,117,99,116,111,114,63,101,46,99,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,58,101,32,105,110,115,116,97,110,99,101,111,102,32,79,98,106,101,99,116,63,97,58,110,117,108,108,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,110,40,57,55,41,59,102,111,114,40,118,97,114,32,114,61,110,40,52,41,44,105,61,110,40,55,41,44,111,61,110,40,50,54,41,44,97,61,110,40,49,49,41,40,92,34,116,111,83,116,114,105,110,103,84,97,103,92,34,41,44,115,61,92,34,67,83,83,82,117,108,101,76,105,115,116,44,67,83,83,83,116,121,108,101,68,101,99,108,97,114,97,116,105,111,110,44,67,83,83,86,97,108,117,101,76,105,115,116,44,67,108,105,101,110,116,82,101,99,116,76,105,115,116,44,68,79,77,82,101,99,116,76,105,115,116,44,68,79,77,83,116,114,105,110,103,76,105,115,116,44,68,79,77,84,111,107,101,110,76,105,115,116,44,68,97,116,97,84,114,97,110,115,102,101,114,73,116,101,109,76,105,115,116,44,70,105,108,101,76,105,115,116,44,72,84,77,76,65,108,108,67,111,108,108,101,99,116,105,111,110,44,72,84,77,76,67,111,108,108,101,99,116,105,111,110,44,72,84,77,76,70,111,114,109,69,108,101,109,101,110,116,44,72,84,77,76,83,101,108,101,99,116,69,108,101,109,101,110,116,44,77,101,100,105,97,76,105,115,116,44,77,105,109,101,84,121,112,101,65,114,114,97,121,44,78,97,109,101,100,78,111,100,101,77,97,112,44,78,111,100,101,76,105,115,116,44,80,97,105,110,116,82,101,113,117,101,115,116,76,105,115,116,44,80,108,117,103,105,110,44,80,108,117,103,105,110,65,114,114,97,121,44,83,86,71,76,101,110,103,116,104,76,105,115,116,44,83,86,71,78,117,109,98,101,114,76,105,115,116,44,83,86,71,80,97,116,104,83,101,103,76,105,115,116,44,83,86,71,80,111,105,110,116,76,105,115,116,44,83,86,71,83,116,114,105,110,103,76,105,115,116,44,83,86,71,84,114,97,110,115,102,111,114,109,76,105,115,116,44,83,111,117,114,99,101,66,117,102,102,101,114,76,105,115,116,44,83,116,121,108,101,83,104,101,101,116,76,105,115,116,44,84,101,120,116,84,114,97,99,107,67,117,101,76,105,115,116,44,84,101,120,116,84,114,97,99,107,76,105,115,116,44,84,111,117,99,104,76,105,115,116,92,34,46,115,112,108,105,116,40,92,34,44,92,34,41,44,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,44,117,61,114,91,108,93,44,102,61,117,38,38,117,46,112,114,111,116,111,116,121,112,101,59,102,38,38,33,102,91,97,93,38,38,105,40,102,44,97,44,108,41,44,111,91,108,93,61,111,46,65,114,114,97,121,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,61,110,40,57,56,41,44,105,61,110,40,57,57,41,44,111,61,110,40,50,54,41,44,97,61,110,40,49,48,41,59,101,46,101,120,112,111,114,116,115,61,110,40,52,48,41,40,65,114,114,97,121,44,92,34,65,114,114,97,121,92,34,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,95,116,61,97,40,101,41,44,116,104,105,115,46,95,105,61,48,44,116,104,105,115,46,95,107,61,116,125,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,95,116,44,116,61,116,104,105,115,46,95,107,44,110,61,116,104,105,115,46,95,105,43,43,59,114,101,116,117,114,110,33,101,124,124,110,62,61,101,46,108,101,110,103,116,104,63,40,116,104,105,115,46,95,116,61,118,111,105,100,32,48,44,105,40,49,41,41,58,92,34,107,101,121,115,92,34,61,61,116,63,105,40,48,44,110,41,58,92,34,118,97,108,117,101,115,92,34,61,61,116,63,105,40,48,44,101,91,110,93,41,58,105,40,48,44,91,110,44,101,91,110,93,93,41,125,44,92,34,118,97,108,117,101,115,92,34,41,44,111,46,65,114,103,117,109,101,110,116,115,61,111,46,65,114,114,97,121,44,114,40,92,34,107,101,121,115,92,34,41,44,114,40,92,34,118,97,108,117,101,115,92,34,41,44,114,40,92,34,101,110,116,114,105,101,115,92,34,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,123,118,97,108,117,101,58,116,44,100,111,110,101,58,33,33,101,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,101,46,101,120,112,111,114,116,115,61,123,100,101,102,97,117,108,116,58,110,40,49,48,49,41,44,95,95,101,115,77,111,100,117,108,101,58,33,48,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,110,40,49,48,50,41,44,110,40,49,48,56,41,44,110,40,49,48,57,41,44,110,40,49,49,48,41,44,101,46,101,120,112,111,114,116,115,61,110,40,49,53,41,46,83,121,109,98,111,108,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,61,110,40,52,41,44,105,61,110,40,54,41,44,111,61,110,40,57,41,44,97,61,110,40,52,49,41,44,115,61,110,40,52,52,41,44,99,61,110,40,49,48,51,41,46,75,69,89,44,108,61,110,40,49,55,41,44,117,61,110,40,50,57,41,44,102,61,110,40,51,49,41,44,100,61,110,40,49,57,41,44,104,61,110,40,49,49,41,44,112,61,110,40,51,50,41,44,118,61,110,40,51,51,41,44,103,61,110,40,49,48,52,41,44,98,61,110,40,49,48,53,41,44,120,61,110,40,49,54,41,44,109,61,110,40,49,50,41,44,95,61,110,40,52,56,41,44,119,61,110,40,49,48,41,44,121,61,110,40,50,53,41,44,67,61,110,40,49,56,41,44,107,61,110,40,52,53,41,44,70,61,110,40,49,48,54,41,44,83,61,110,40,49,48,55,41,44,65,61,110,40,52,57,41,44,79,61,110,40,56,41,44,69,61,110,40,50,55,41,44,77,61,83,46,102,44,106,61,79,46,102,44,76,61,70,46,102,44,80,61,114,46,83,121,109,98,111,108,44,82,61,114,46,74,83,79,78,44,68,61,82,38,38,82,46,115,116,114,105,110,103,105,102,121,44,66,61,104,40,92,34,95,104,105,100,100,101,110,92,34,41,44,84,61,104,40,92,34,116,111,80,114,105,109,105,116,105,118,101,92,34,41,44,72,61,123,125,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,44,78,61,117,40,92,34,115,121,109,98,111,108,45,114,101,103,105,115,116,114,121,92,34,41,44,122,61,117,40,92,34,115,121,109,98,111,108,115,92,34,41,44,73,61,117,40,92,34,111,112,45,115,121,109,98,111,108,115,92,34,41,44,36,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,44,85,61,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,80,38,38,33,33,65,46,102,44,71,61,114,46,81,79,98,106,101,99,116,44,86,61,33,71,124,124,33,71,46,112,114,111,116,111,116,121,112,101,124,124,33,71,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,67,104,105,108,100,44,113,61,111,38,38,108,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,33,61,107,40,106,40,123,125,44,92,34,97,92,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,40,116,104,105,115,44,92,34,97,92,34,44,123,118,97,108,117,101,58,55,125,41,46,97,125,125,41,41,46,97,125,41,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,77,40,36,44,116,41,59,114,38,38,100,101,108,101,116,101,32,36,91,116,93,44,106,40,101,44,116,44,110,41,44,114,38,38,101,33,61,61,36,38,38,106,40,36,44,116,44,114,41,125,58,106,44,88,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,122,91,101,93,61,107,40,80,46,112,114,111,116,111,116,121,112,101,41,59,114,101,116,117,114,110,32,116,46,95,107,61,101,44,116,125,44,87,61,85,38,38,92,34,115,121,109,98,111,108,92,34,61,61,116,121,112,101,111,102,32,80,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,92,34,115,121,109,98,111,108,92,34,61,61,116,121,112,101,111,102,32,101,125,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,44,89,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,101,61,61,61,36,38,38,89,40,73,44,116,44,110,41,44,120,40,101,41,44,116,61,121,40,116,44,33,48,41,44,120,40,110,41,44,105,40,122,44,116,41,63,40,110,46,101,110,117,109,101,114,97,98,108,101,63,40,105,40,101,44,66,41,38,38,101,91,66,93,91,116,93,38,38,40,101,91,66,93,91,116,93,61,33,49,41,44,110,61,107,40,110,44,123,101,110,117,109,101,114,97,98,108,101,58,67,40,48,44,33,49,41,125,41,41,58,40,105,40,101,44,66,41,124,124,106,40,101,44,66,44,67,40,49,44,123,125,41,41,44,101,91,66,93,91,116,93,61,33,48,41,44,113,40,101,44,116,44,110,41,41,58,106,40,101,44,116,44,110,41,125,44,74,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,120,40,101,41,59,102,111,114,40,118,97,114,32,110,44,114,61,103,40,116,61,119,40,116,41,41,44,105,61,48,44,111,61,114,46,108,101,110,103,116,104,59,111,62,105,59,41,89,40,101,44,110,61,114,91,105,43,43,93,44,116,91,110,93,41,59,114,101,116,117,114,110,32,101,125,44,75,61,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,107,40,101,41,58,74,40,107,40,101,41,44,116,41,125,44,90,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,72,46,99,97,108,108,40,116,104,105,115,44,101,61,121,40,101,44,33,48,41,41,59,114,101,116,117,114,110,33,40,116,104,105,115,61,61,61,36,38,38,105,40,122,44,101,41,38,38,33,105,40,73,44,101,41,41,38,38,40,33,40,116,124,124,33,105,40,116,104,105,115,44,101,41,124,124,33,105,40,122,44,101,41,124,124,105,40,116,104,105,115,44,66,41,38,38,116,104,105,115,91,66,93,91,101,93,41,124,124,116,41,125,44,81,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,101,61,119,40,101,41,44,116,61,121,40,116,44,33,48,41,44,101,33,61,61,36,124,124,33,105,40,122,44,116,41,124,124,105,40,73,44,116,41,41,123,118,97,114,32,110,61,77,40,101,44,116,41,59,114,101,116,117,114,110,33,110,124,124,33,105,40,122,44,116,41,124,124,105,40,101,44,66,41,38,38,101,91,66,93,91,116,93,124,124,40,110,46,101,110,117,109,101,114,97,98,108,101,61,33,48,41,44,110,125,125,44,101,101,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,76,40,119,40,101,41,41,44,114,61,91,93,44,111,61,48,59,110,46,108,101,110,103,116,104,62,111,59,41,105,40,122,44,116,61,110,91,111,43,43,93,41,124,124,116,61,61,66,124,124,116,61,61,99,124,124,114,46,112,117,115,104,40,116,41,59,114,101,116,117,114,110,32,114,125,44,116,101,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,101,61,61,61,36,44,114,61,76,40,110,63,73,58,119,40,101,41,41,44,111,61,91,93,44,97,61,48,59,114,46,108,101,110,103,116,104,62,97,59,41,33,105,40,122,44,116,61,114,91,97,43,43,93,41,124,124,110,38,38,33,105,40,36,44,116,41,124,124,111,46,112,117,115,104,40,122,91,116,93,41,59,114,101,116,117,114,110,32,111,125,59,85,124,124,40,80,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,80,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,92,34,83,121,109,98,111,108,32,105,115,32,110,111,116,32,97,32,99,111,110,115,116,114,117,99,116,111,114,33,92,34,41,59,118,97,114,32,101,61,100,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,63,97,114,103,117,109,101,110,116,115,91,48,93,58,118,111,105,100,32,48,41,44,116,61,102,117,110,99,116,105,111,110,40,110,41,123,116,104,105,115,61,61,61,36,38,38,116,46,99,97,108,108,40,73,44,110,41,44,105,40,116,104,105,115,44,66,41,38,38,105,40,116,104,105,115,91,66,93,44,101,41,38,38,40,116,104,105,115,91,66,93,91,101,93,61,33,49,41,44,113,40,116,104,105,115,44,101,44,67,40,49,44,110,41,41,125,59,114,101,116,117,114,110,32,111,38,38,86,38,38,113,40,36,44,101,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,115,101,116,58,116,125,41,44,88,40,101,41,125,44,115,40,80,46,112,114,111,116,111,116,121,112,101,44,92,34,116,111,83,116,114,105,110,103,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,107,125,41,44,83,46,102,61,81,44,79,46,102,61,89,44,110,40,53,48,41,46,102,61,70,46,102,61,101,101,44,110,40,51,52,41,46,102,61,90,44,65,46,102,61,116,101,44,111,38,38,33,110,40,49,52,41,38,38,115,40,36,44,92,34,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,92,34,44,90,44,33,48,41,44,112,46,102,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,88,40,104,40,101,41,41,125,41,44,97,40,97,46,71,43,97,46,87,43,97,46,70,42,33,85,44,123,83,121,109,98,111,108,58,80,125,41,59,102,111,114,40,118,97,114,32,110,101,61,92,34,104,97,115,73,110,115,116,97,110,99,101,44,105,115,67,111,110,99,97,116,83,112,114,101,97,100,97,98,108,101,44,105,116,101,114,97,116,111,114,44,109,97,116,99,104,44,114,101,112,108,97,99,101,44,115,101,97,114,99,104,44,115,112,101,99,105,101,115,44,115,112,108,105,116,44,116,111,80,114,105,109,105,116,105,118,101,44,116,111,83,116,114,105,110,103,84,97,103,44,117,110,115,99,111,112,97,98,108,101,115,92,34,46,115,112,108,105,116,40,92,34,44,92,34,41,44,114,101,61,48,59,110,101,46,108,101,110,103,116,104,62,114,101,59,41,104,40,110,101,91,114,101,43,43,93,41,59,102,111,114,40,118,97,114,32,105,101,61,69,40,104,46,115,116,111,114,101,41,44,111,101,61,48,59,105,101,46,108,101,110,103,116,104,62,111,101,59,41,118,40,105,101,91,111,101,43,43,93,41,59,97,40,97,46,83,43,97,46,70,42,33,85,44,92,34,83,121,109,98,111,108,92,34,44,123,102,111,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,105,40,78,44,101,43,61,92,34,92,34,41,63,78,91,101,93,58,78,91,101,93,61,80,40,101,41,125,44,107,101,121,70,111,114,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,87,40,101,41,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,101,43,92,34,32,105,115,32,110,111,116,32,97,32,115,121,109,98,111,108,33,92,34,41,59,102,111,114,40,118,97,114,32,116,32,105,110,32,78,41,105,102,40,78,91,116,93,61,61,61,101,41,114,101,116,117,114,110,32,116,125,44,117,115,101,83,101,116,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,86,61,33,48,125,44,117,115,101,83,105,109,112,108,101,58,102,117,110,99,116,105,111,110,40,41,123,86,61,33,49,125,125,41,44,97,40,97,46,83,43,97,46,70,42,33,85,44,92,34,79,98,106,101,99,116,92,34,44,123,99,114,101,97,116,101,58,75,44,100,101,102,105,110,101,80,114,111,112,101,114,116,121,58,89,44,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,58,74,44,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,58,81,44,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,58,101,101,44,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,58,116,101,125,41,59,118,97,114,32,97,101,61,108,40,102,117,110,99,116,105,111,110,40,41,123,65,46,102,40,49,41,125,41,59,97,40,97,46,83,43,97,46,70,42,97,101,44,92,34,79,98,106,101,99,116,92,34,44,123,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,65,46,102,40,95,40,101,41,41,125,125,41,44,82,38,38,97,40,97,46,83,43,97,46,70,42,40,33,85,124,124,108,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,80,40,41,59,114,101,116,117,114,110,92,34,91,110,117,108,108,93,92,34,33,61,68,40,91,101,93,41,124,124,92,34,123,125,92,34,33,61,68,40,123,97,58,101,125,41,124,124,92,34,123,125,92,34,33,61,68,40,79,98,106,101,99,116,40,101,41,41,125,41,41,44,92,34,74,83,79,78,92,34,44,123,115,116,114,105,110,103,105,102,121,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,61,91,101,93,44,105,61,49,59,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,105,59,41,114,46,112,117,115,104,40,97,114,103,117,109,101,110,116,115,91,105,43,43,93,41,59,105,102,40,110,61,116,61,114,91,49,93,44,40,109,40,116,41,124,124,118,111,105,100,32,48,33,61,61,101,41,38,38,33,87,40,101,41,41,114,101,116,117,114,110,32,98,40,116,41,124,124,40,116,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,110,38,38,40,116,61,110,46,99,97,108,108,40,116,104,105,115,44,101,44,116,41,41,44,33,87,40,116,41,41,114,101,116,117,114,110,32,116,125,41,44,114,91,49,93,61,116,44,68,46,97,112,112,108,121,40,82,44,114,41,125,125,41,44,80,46,112,114,111,116,111,116,121,112,101,91,84,93,124,124,110,40,55,41,40,80,46,112,114,111,116,111,116,121,112,101,44,84,44,80,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,79,102,41,44,102,40,80,44,92,34,83,121,109,98,111,108,92,34,41,44,102,40,77,97,116,104,44,92,34,77,97,116,104,92,34,44,33,48,41,44,102,40,114,46,74,83,79,78,44,92,34,74,83,79,78,92,34,44,33,48,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,57,41,40,92,34,109,101,116,97,92,34,41,44,105,61,110,40,49,50,41,44,111,61,110,40,54,41,44,97,61,110,40,56,41,46,102,44,115,61,48,44,99,61,79,98,106,101,99,116,46,105,115,69,120,116,101,110,115,105,98,108,101,124,124,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,108,61,33,110,40,49,55,41,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,40,79,98,106,101,99,116,46,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,40,123,125,41,41,125,41,44,117,61,102,117,110,99,116,105,111,110,40,101,41,123,97,40,101,44,114,44,123,118,97,108,117,101,58,123,105,58,92,34,79,92,34,43,32,43,43,115,44,119,58,123,125,125,125,41,125,44,102,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,105,40,101,41,41,114,101,116,117,114,110,92,34,115,121,109,98,111,108,92,34,61,61,116,121,112,101,111,102,32,101,63,101,58,40,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,101,63,92,34,83,92,34,58,92,34,80,92,34,41,43,101,59,105,102,40,33,111,40,101,44,114,41,41,123,105,102,40,33,99,40,101,41,41,114,101,116,117,114,110,92,34,70,92,34,59,105,102,40,33,116,41,114,101,116,117,114,110,92,34,69,92,34,59,117,40,101,41,125,114,101,116,117,114,110,32,101,91,114,93,46,105,125,44,100,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,111,40,101,44,114,41,41,123,105,102,40,33,99,40,101,41,41,114,101,116,117,114,110,33,48,59,105,102,40,33,116,41,114,101,116,117,114,110,33,49,59,117,40,101,41,125,114,101,116,117,114,110,32,101,91,114,93,46,119,125,44,104,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,108,38,38,112,46,78,69,69,68,38,38,99,40,101,41,38,38,33,111,40,101,44,114,41,38,38,117,40,101,41,44,101,125,44,112,61,101,46,101,120,112,111,114,116,115,61,123,75,69,89,58,114,44,78,69,69,68,58,33,49,44,102,97,115,116,75,101,121,58,102,44,103,101,116,87,101,97,107,58,100,44,111,110,70,114,101,101,122,101,58,104,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,50,55,41,44,105,61,110,40,52,57,41,44,111,61,110,40,51,52,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,114,40,101,41,44,110,61,105,46,102,59,105,102,40,110,41,102,111,114,40,118,97,114,32,97,44,115,61,110,40,101,41,44,99,61,111,46,102,44,108,61,48,59,115,46,108,101,110,103,116,104,62,108,59,41,99,46,99,97,108,108,40,101,44,97,61,115,91,108,43,43,93,41,38,38,116,46,112,117,115,104,40,97,41,59,114,101,116,117,114,110,32,116,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,52,55,41,59,101,46,101,120,112,111,114,116,115,61,65,114,114,97,121,46,105,115,65,114,114,97,121,124,124,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,92,34,65,114,114,97,121,92,34,61,61,114,40,101,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,48,41,44,105,61,110,40,53,48,41,46,102,44,111,61,123,125,46,116,111,83,116,114,105,110,103,44,97,61,92,34,111,98,106,101,99,116,92,34,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,119,105,110,100,111,119,38,38,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,63,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,119,105,110,100,111,119,41,58,91,93,44,115,61,102,117,110,99,116,105,111,110,40,101,41,123,116,114,121,123,114,101,116,117,114,110,32,105,40,101,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,97,46,115,108,105,99,101,40,41,125,125,59,101,46,101,120,112,111,114,116,115,46,102,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,38,38,92,34,91,111,98,106,101,99,116,32,87,105,110,100,111,119,93,92,34,61,61,111,46,99,97,108,108,40,101,41,63,115,40,101,41,58,105,40,114,40,101,41,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,51,52,41,44,105,61,110,40,49,56,41,44,111,61,110,40,49,48,41,44,97,61,110,40,50,53,41,44,115,61,110,40,54,41,44,99,61,110,40,52,50,41,44,108,61,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,59,116,46,102,61,110,40,57,41,63,108,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,101,61,111,40,101,41,44,116,61,97,40,116,44,33,48,41,44,99,41,116,114,121,123,114,101,116,117,114,110,32,108,40,101,44,116,41,125,99,97,116,99,104,40,101,41,123,125,105,102,40,115,40,101,44,116,41,41,114,101,116,117,114,110,32,105,40,33,114,46,102,46,99,97,108,108,40,101,44,116,41,44,101,91,116,93,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,110,40,51,51,41,40,92,34,97,115,121,110,99,73,116,101,114,97,116,111,114,92,34,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,110,40,51,51,41,40,92,34,111,98,115,101,114,118,97,98,108,101,92,34,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,49,50,41,59,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,101,46,105,44,114,44,92,34,92,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,101,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,59,110,40,49,41,40,92,34,55,99,53,102,49,97,49,99,92,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,116,61,101,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,116,46,112,117,115,104,40,91,101,46,105,44,92,34,92,92,110,46,118,99,45,104,117,101,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,116,111,112,58,32,48,112,120,59,92,92,110,32,32,114,105,103,104,116,58,32,48,112,120,59,92,92,110,32,32,98,111,116,116,111,109,58,32,48,112,120,59,92,92,110,32,32,108,101,102,116,58,32,48,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,92,110,125,92,92,110,46,118,99,45,104,117,101,45,45,104,111,114,105,122,111,110,116,97,108,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,114,105,103,104,116,44,32,35,102,48,48,32,48,37,44,32,35,102,102,48,32,49,55,37,44,32,35,48,102,48,32,51,51,37,44,32,35,48,102,102,32,53,48,37,44,32,35,48,48,102,32,54,55,37,44,32,35,102,48,102,32,56,51,37,44,32,35,102,48,48,32,49,48,48,37,41,59,92,92,110,125,92,92,110,46,118,99,45,104,117,101,45,45,118,101,114,116,105,99,97,108,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,116,111,112,44,32,35,102,48,48,32,48,37,44,32,35,102,102,48,32,49,55,37,44,32,35,48,102,48,32,51,51,37,44,32,35,48,102,102,32,53,48,37,44,32,35,48,48,102,32,54,55,37,44,32,35,102,48,102,32,56,51,37,44,32,35,102,48,48,32,49,48,48,37,41,59,92,92,110,125,92,92,110,46,118,99,45,104,117,101,45,99,111,110,116,97,105,110,101,114,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,32,32,109,97,114,103,105,110,58,32,48,32,50,112,120,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,48,48,37,59,92,92,110,125,92,92,110,46,118,99,45,104,117,101,45,112,111,105,110,116,101,114,32,123,92,92,110,32,32,122,45,105,110,100,101,120,58,32,50,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,125,92,92,110,46,118,99,45,104,117,101,45,112,105,99,107,101,114,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,112,120,59,92,92,110,32,32,119,105,100,116,104,58,32,52,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,56,112,120,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,50,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,54,41,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,88,40,45,50,112,120,41,32,59,92,92,110,125,92,92,110,92,34,44,92,34,92,34,93,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,99,108,97,115,115,58,91,92,34,118,99,45,104,117,101,92,34,44,101,46,100,105,114,101,99,116,105,111,110,67,108,97,115,115,93,125,44,91,110,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,99,111,110,116,97,105,110,101,114,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,104,117,101,45,99,111,110,116,97,105,110,101,114,92,34,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,115,108,105,100,101,114,92,34,44,92,34,97,114,105,97,45,118,97,108,117,101,110,111,119,92,34,58,101,46,99,111,108,111,114,115,46,104,115,108,46,104,44,92,34,97,114,105,97,45,118,97,108,117,101,109,105,110,92,34,58,92,34,48,92,34,44,92,34,97,114,105,97,45,118,97,108,117,101,109,97,120,92,34,58,92,34,51,54,48,92,34,125,44,111,110,58,123,109,111,117,115,101,100,111,119,110,58,101,46,104,97,110,100,108,101,77,111,117,115,101,68,111,119,110,44,116,111,117,99,104,109,111,118,101,58,101,46,104,97,110,100,108,101,67,104,97,110,103,101,44,116,111,117,99,104,115,116,97,114,116,58,101,46,104,97,110,100,108,101,67,104,97,110,103,101,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,104,117,101,45,112,111,105,110,116,101,114,92,34,44,115,116,121,108,101,58,123,116,111,112,58,101,46,112,111,105,110,116,101,114,84,111,112,44,108,101,102,116,58,101,46,112,111,105,110,116,101,114,76,101,102,116,125,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,112,114,101,115,101,110,116,97,116,105,111,110,92,34,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,104,117,101,45,112,105,99,107,101,114,92,34,125,41,93,41,93,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,116,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,108,105,100,101,114,92,34,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,97,112,112,108,105,99,97,116,105,111,110,92,34,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,83,108,105,100,101,114,32,99,111,108,111,114,32,112,105,99,107,101,114,92,34,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,108,105,100,101,114,45,104,117,101,45,119,97,114,112,92,34,125,44,91,110,40,92,34,104,117,101,92,34,44,123,111,110,58,123,99,104,97,110,103,101,58,101,46,104,117,101,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,99,111,108,111,114,115,61,116,125,44,101,120,112,114,101,115,115,105,111,110,58,92,34,99,111,108,111,114,115,92,34,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,101,115,92,34,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,103,114,111,117,112,92,34,125,125,44,101,46,95,108,40,101,46,110,111,114,109,97,108,105,122,101,100,83,119,97,116,99,104,101,115,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,107,101,121,58,114,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,92,34,44,97,116,116,114,115,58,123,92,34,100,97,116,97,45,105,110,100,101,120,92,34,58,114,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,99,111,108,111,114,58,92,34,43,101,46,99,111,108,111,114,115,46,104,101,120,44,114,111,108,101,58,92,34,98,117,116,116,111,110,92,34,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,46,104,97,110,100,108,101,83,119,67,108,105,99,107,40,114,44,116,41,125,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,92,34,44,99,108,97,115,115,58,123,92,34,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,45,45,97,99,116,105,118,101,92,34,58,101,46,105,115,65,99,116,105,118,101,40,116,44,114,41,44,92,34,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,45,45,119,104,105,116,101,92,34,58,49,61,61,61,116,46,108,125,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,92,34,104,115,108,40,92,34,43,101,46,99,111,108,111,114,115,46,104,115,108,46,104,43,92,34,44,32,92,34,43,49,48,48,42,116,46,115,43,92,34,37,44,32,92,34,43,49,48,48,42,116,46,108,43,92,34,37,41,92,34,125,125,41,93,41,125,41,44,48,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,116,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,99,124,124,110,40,49,49,54,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,50,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,92,34,100,101,102,97,117,108,116,92,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,101,41,123,110,46,100,40,116,44,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,101,93,125,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,49,57,41,44,99,61,33,49,44,108,61,110,40,50,41,44,117,61,114,44,102,61,108,40,111,46,97,44,115,46,97,44,33,49,44,117,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,119,97,116,99,104,101,115,46,118,117,101,92,34,44,116,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,49,55,41,59,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,101,46,105,44,114,44,92,34,92,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,101,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,59,110,40,49,41,40,92,34,49,48,102,56,51,57,97,50,92,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,116,61,101,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,116,46,112,117,115,104,40,91,101,46,105,44,92,34,92,92,110,46,118,99,45,115,119,97,116,99,104,101,115,32,123,92,92,110,32,32,119,105,100,116,104,58,32,51,50,48,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,52,48,112,120,59,92,92,110,32,32,111,118,101,114,102,108,111,119,45,121,58,32,115,99,114,111,108,108,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,102,102,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,50,112,120,32,49,48,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,41,44,32,48,32,50,112,120,32,53,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,54,41,59,92,92,110,125,92,92,110,46,118,99,45,115,119,97,116,99,104,101,115,45,98,111,120,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,49,54,112,120,32,48,32,54,112,120,32,49,54,112,120,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,125,92,92,110,46,118,99,45,115,119,97,116,99,104,101,115,45,99,111,108,111,114,45,103,114,111,117,112,32,123,92,92,110,32,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,49,48,112,120,59,92,92,110,32,32,119,105,100,116,104,58,32,52,48,112,120,59,92,92,110,32,32,102,108,111,97,116,58,32,108,101,102,116,59,92,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,49,48,112,120,59,92,92,110,125,92,92,110,46,118,99,45,115,119,97,116,99,104,101,115,45,99,111,108,111,114,45,105,116,32,123,92,92,110,32,32,98,111,120,45,115,105,122,105,110,103,58,32,98,111,114,100,101,114,45,98,111,120,59,92,92,110,32,32,119,105,100,116,104,58,32,52,48,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,52,112,120,59,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,56,56,48,101,52,102,59,92,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,49,112,120,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,32,32,45,109,115,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,32,50,112,120,32,48,32,48,59,92,92,110,32,32,45,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,32,50,112,120,32,48,32,48,59,92,92,110,32,32,45,111,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,32,50,112,120,32,48,32,48,59,92,92,110,32,32,45,119,101,98,107,105,116,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,32,50,112,120,32,48,32,48,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,32,50,112,120,32,48,32,48,59,92,92,110,125,92,92,110,46,118,99,45,115,119,97,116,99,104,101,115,45,99,111,108,111,114,45,45,119,104,105,116,101,32,123,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,68,68,68,59,92,92,110,125,92,92,110,46,118,99,45,115,119,97,116,99,104,101,115,45,112,105,99,107,32,123,92,92,110,32,32,102,105,108,108,58,32,114,103,98,40,50,53,53,44,32,50,53,53,44,32,50,53,53,41,59,92,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,56,112,120,59,92,92,110,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,92,92,110,125,92,92,110,46,118,99,45,115,119,97,116,99,104,101,115,45,99,111,108,111,114,45,45,119,104,105,116,101,32,46,118,99,45,115,119,97,116,99,104,101,115,45,112,105,99,107,32,123,92,92,110,32,32,102,105,108,108,58,32,114,103,98,40,53,49,44,32,53,49,44,32,53,49,41,59,92,92,110,125,92,92,110,92,34,44,92,34,92,34,93,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,44,110,46,100,40,116,44,92,34,114,101,100,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,125,41,44,110,46,100,40,116,44,92,34,112,105,110,107,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,125,41,44,110,46,100,40,116,44,92,34,112,117,114,112,108,101,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,125,41,44,110,46,100,40,116,44,92,34,100,101,101,112,80,117,114,112,108,101,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,125,41,44,110,46,100,40,116,44,92,34,105,110,100,105,103,111,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,125,41,44,110,46,100,40,116,44,92,34,98,108,117,101,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,125,41,44,110,46,100,40,116,44,92,34,108,105,103,104,116,66,108,117,101,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,125,41,44,110,46,100,40,116,44,92,34,99,121,97,110,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,117,125,41,44,110,46,100,40,116,44,92,34,116,101,97,108,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,125,41,44,110,46,100,40,116,44,92,34,103,114,101,101,110,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,100,125,41,44,110,46,100,40,116,44,92,34,108,105,103,104,116,71,114,101,101,110,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,125,41,44,110,46,100,40,116,44,92,34,108,105,109,101,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,125,41,44,110,46,100,40,116,44,92,34,121,101,108,108,111,119,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,118,125,41,44,110,46,100,40,116,44,92,34,97,109,98,101,114,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,103,125,41,44,110,46,100,40,116,44,92,34,111,114,97,110,103,101,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,98,125,41,44,110,46,100,40,116,44,92,34,100,101,101,112,79,114,97,110,103,101,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,120,125,41,44,110,46,100,40,116,44,92,34,98,114,111,119,110,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,109,125,41,44,110,46,100,40,116,44,92,34,103,114,101,121,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,95,125,41,44,110,46,100,40,116,44,92,34,98,108,117,101,71,114,101,121,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,119,125,41,44,110,46,100,40,116,44,92,34,100,97,114,107,84,101,120,116,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,125,41,44,110,46,100,40,116,44,92,34,108,105,103,104,116,84,101,120,116,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,67,125,41,44,110,46,100,40,116,44,92,34,100,97,114,107,73,99,111,110,115,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,125,41,44,110,46,100,40,116,44,92,34,108,105,103,104,116,73,99,111,110,115,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,70,125,41,44,110,46,100,40,116,44,92,34,119,104,105,116,101,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,83,125,41,44,110,46,100,40,116,44,92,34,98,108,97,99,107,92,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,65,125,41,59,118,97,114,32,114,61,123,53,48,58,92,34,35,102,102,101,98,101,101,92,34,44,49,48,48,58,92,34,35,102,102,99,100,100,50,92,34,44,50,48,48,58,92,34,35,101,102,57,97,57,97,92,34,44,51,48,48,58,92,34,35,101,53,55,51,55,51,92,34,44,52,48,48,58,92,34,35,101,102,53,51,53,48,92,34,44,53,48,48,58,92,34,35,102,52,52,51,51,54,92,34,44,54,48,48,58,92,34,35,101,53,51,57,51,53,92,34,44,55,48,48,58,92,34,35,100,51,50,102,50,102,92,34,44,56,48,48,58,92,34,35,99,54,50,56,50,56,92,34,44,57,48,48,58,92,34,35,98,55,49,99,49,99,92,34,44,97,49,48,48,58,92,34,35,102,102,56,97,56,48,92,34,44,97,50,48,48,58,92,34,35,102,102,53,50,53,50,92,34,44,97,52,48,48,58,92,34,35,102,102,49,55,52,52,92,34,44,97,55,48,48,58,92,34,35,100,53,48,48,48,48,92,34,125,44,105,61,123,53,48,58,92,34,35,102,99,101,52,101,99,92,34,44,49,48,48,58,92,34,35,102,56,98,98,100,48,92,34,44,50,48,48,58,92,34,35,102,52,56,102,98,49,92,34,44,51,48,48,58,92,34,35,102,48,54,50,57,50,92,34,44,52,48,48,58,92,34,35,101,99,52,48,55,97,92,34,44,53,48,48,58,92,34,35,101,57,49,101,54,51,92,34,44,54,48,48,58,92,34,35,100,56,49,98,54,48,92,34,44,55,48,48,58,92,34,35,99,50,49,56,53,98,92,34,44,56,48,48,58,92,34,35,97,100,49,52,53,55,92,34,44,57,48,48,58,92,34,35,56,56,48,101,52,102,92,34,44,97,49,48,48,58,92,34,35,102,102,56,48,97,98,92,34,44,97,50,48,48,58,92,34,35,102,102,52,48,56,49,92,34,44,97,52,48,48,58,92,34,35,102,53,48,48,53,55,92,34,44,97,55,48,48,58,92,34,35,99,53,49,49,54,50,92,34,125,44,111,61,123,53,48,58,92,34,35,102,51,101,53,102,53,92,34,44,49,48,48,58,92,34,35,101,49,98,101,101,55,92,34,44,50,48,48,58,92,34,35,99,101,57,51,100,56,92,34,44,51,48,48,58,92,34,35,98,97,54,56,99,56,92,34,44,52,48,48,58,92,34,35,97,98,52,55,98,99,92,34,44,53,48,48,58,92,34,35,57,99,50,55,98,48,92,34,44,54,48,48,58,92,34,35,56,101,50,52,97,97,92,34,44,55,48,48,58,92,34,35,55,98,49,102,97,50,92,34,44,56,48,48,58,92,34,35,54,97,49,98,57,97,92,34,44,57,48,48,58,92,34,35,52,97,49,52,56,99,92,34,44,97,49,48,48,58,92,34,35,101,97,56,48,102,99,92,34,44,97,50,48,48,58,92,34,35,101,48,52,48,102,98,92,34,44,97,52,48,48,58,92,34,35,100,53,48,48,102,57,92,34,44,97,55,48,48,58,92,34,35,97,97,48,48,102,102,92,34,125,44,97,61,123,53,48,58,92,34,35,101,100,101,55,102,54,92,34,44,49,48,48,58,92,34,35,100,49,99,52,101,57,92,34,44,50,48,48,58,92,34,35,98,51,57,100,100,98,92,34,44,51,48,48,58,92,34,35,57,53,55,53,99,100,92,34,44,52,48,48,58,92,34,35,55,101,53,55,99,50,92,34,44,53,48,48,58,92,34,35,54,55,51,97,98,55,92,34,44,54,48,48,58,92,34,35,53,101,51,53,98,49,92,34,44,55,48,48,58,92,34,35,53,49,50,100,97,56,92,34,44,56,48,48,58,92,34,35,52,53,50,55,97,48,92,34,44,57,48,48,58,92,34,35,51,49,49,98,57,50,92,34,44,97,49,48,48,58,92,34,35,98,51,56,56,102,102,92,34,44,97,50,48,48,58,92,34,35,55,99,52,100,102,102,92,34,44,97,52,48,48,58,92,34,35,54,53,49,102,102,102,92,34,44,97,55,48,48,58,92,34,35,54,50,48,48,101,97,92,34,125,44,115,61,123,53,48,58,92,34,35,101,56,101,97,102,54,92,34,44,49,48,48,58,92,34,35,99,53,99,97,101,57,92,34,44,50,48,48,58,92,34,35,57,102,97,56,100,97,92,34,44,51,48,48,58,92,34,35,55,57,56,54,99,98,92,34,44,52,48,48,58,92,34,35,53,99,54,98,99,48,92,34,44,53,48,48,58,92,34,35,51,102,53,49,98,53,92,34,44,54,48,48,58,92,34,35,51,57,52,57,97,98,92,34,44,55,48,48,58,92,34,35,51,48,51,102,57,102,92,34,44,56,48,48,58,92,34,35,50,56,51,53,57,51,92,34,44,57,48,48,58,92,34,35,49,97,50,51,55,101,92,34,44,97,49,48,48,58,92,34,35,56,99,57,101,102,102,92,34,44,97,50,48,48,58,92,34,35,53,51,54,100,102,101,92,34,44,97,52,48,48,58,92,34,35,51,100,53,97,102,101,92,34,44,97,55,48,48,58,92,34,35,51,48,52,102,102,101,92,34,125,44,99,61,123,53,48,58,92,34,35,101,51,102,50,102,100,92,34,44,49,48,48,58,92,34,35,98,98,100,101,102,98,92,34,44,50,48,48,58,92,34,35,57,48,99,97,102,57,92,34,44,51,48,48,58,92,34,35,54,52,98,53,102,54,92,34,44,52,48,48,58,92,34,35,52,50,97,53,102,53,92,34,44,53,48,48,58,92,34,35,50,49,57,54,102,51,92,34,44,54,48,48,58,92,34,35,49,101,56,56,101,53,92,34,44,55,48,48,58,92,34,35,49,57,55,54,100,50,92,34,44,56,48,48,58,92,34,35,49,53,54,53,99,48,92,34,44,57,48,48,58,92,34,35,48,100,52,55,97,49,92,34,44,97,49,48,48,58,92,34,35,56,50,98,49,102,102,92,34,44,97,50,48,48,58,92,34,35,52,52,56,97,102,102,92,34,44,97,52,48,48,58,92,34,35,50,57,55,57,102,102,92,34,44,97,55,48,48,58,92,34,35,50,57,54,50,102,102,92,34,125,44,108,61,123,53,48,58,92,34,35,101,49,102,53,102,101,92,34,44,49,48,48,58,92,34,35,98,51,101,53,102,99,92,34,44,50,48,48,58,92,34,35,56,49,100,52,102,97,92,34,44,51,48,48,58,92,34,35,52,102,99,51,102,55,92,34,44,52,48,48,58,92,34,35,50,57,98,54,102,54,92,34,44,53,48,48,58,92,34,35,48,51,97,57,102,52,92,34,44,54,48,48,58,92,34,35,48,51,57,98,101,53,92,34,44,55,48,48,58,92,34,35,48,50,56,56,100,49,92,34,44,56,48,48,58,92,34,35,48,50,55,55,98,100,92,34,44,57,48,48,58,92,34,35,48,49,53,55,57,98,92,34,44,97,49,48,48,58,92,34,35,56,48,100,56,102,102,92,34,44,97,50,48,48,58,92,34,35,52,48,99,52,102,102,92,34,44,97,52,48,48,58,92,34,35,48,48,98,48,102,102,92,34,44,97,55,48,48,58,92,34,35,48,48,57,49,101,97,92,34,125,44,117,61,123,53,48,58,92,34,35,101,48,102,55,102,97,92,34,44,49,48,48,58,92,34,35,98,50,101,98,102,50,92,34,44,50,48,48,58,92,34,35,56,48,100,101,101,97,92,34,44,51,48,48,58,92,34,35,52,100,100,48,101,49,92,34,44,52,48,48,58,92,34,35,50,54,99,54,100,97,92,34,44,53,48,48,58,92,34,35,48,48,98,99,100,52,92,34,44,54,48,48,58,92,34,35,48,48,97,99,99,49,92,34,44,55,48,48,58,92,34,35,48,48,57,55,97,55,92,34,44,56,48,48,58,92,34,35,48,48,56,51,56,102,92,34,44,57,48,48,58,92,34,35,48,48,54,48,54,52,92,34,44,97,49,48,48,58,92,34,35,56,52,102,102,102,102,92,34,44,97,50,48,48,58,92,34,35,49,56,102,102,102,102,92,34,44,97,52,48,48,58,92,34,35,48,48,101,53,102,102,92,34,44,97,55,48,48,58,92,34,35,48,48,98,56,100,52,92,34,125,44,102,61,123,53,48,58,92,34,35,101,48,102,50,102,49,92,34,44,49,48,48,58,92,34,35,98,50,100,102,100,98,92,34,44,50,48,48,58,92,34,35,56,48,99,98,99,52,92,34,44,51,48,48,58,92,34,35,52,100,98,54,97,99,92,34,44,52,48,48,58,92,34,35,50,54,97,54,57,97,92,34,44,53,48,48,58,92,34,35,48,48,57,54,56,56,92,34,44,54,48,48,58,92,34,35,48,48,56,57,55,98,92,34,44,55,48,48,58,92,34,35,48,48,55,57,54,98,92,34,44,56,48,48,58,92,34,35,48,48,54,57,53,99,92,34,44,57,48,48,58,92,34,35,48,48,52,100,52,48,92,34,44,97,49,48,48,58,92,34,35,97,55,102,102,101,98,92,34,44,97,50,48,48,58,92,34,35,54,52,102,102,100,97,92,34,44,97,52,48,48,58,92,34,35,49,100,101,57,98,54,92,34,44,97,55,48,48,58,92,34,35,48,48,98,102,97,53,92,34,125,44,100,61,123,53,48,58,92,34,35,101,56,102,53,101,57,92,34,44,49,48,48,58,92,34,35,99,56,101,54,99,57,92,34,44,50,48,48,58,92,34,35,97,53,100,54,97,55,92,34,44,51,48,48,58,92,34,35,56,49,99,55,56,52,92,34,44,52,48,48,58,92,34,35,54,54,98,98,54,97,92,34,44,53,48,48,58,92,34,35,52,99,97,102,53,48,92,34,44,54,48,48,58,92,34,35,52,51,97,48,52,55,92,34,44,55,48,48,58,92,34,35,51,56,56,101,51,99,92,34,44,56,48,48,58,92,34,35,50,101,55,100,51,50,92,34,44,57,48,48,58,92,34,35,49,98,53,101,50,48,92,34,44,97,49,48,48,58,92,34,35,98,57,102,54,99,97,92,34,44,97,50,48,48,58,92,34,35,54,57,102,48,97,101,92,34,44,97,52,48,48,58,92,34,35,48,48,101,54,55,54,92,34,44,97,55,48,48,58,92,34,35,48,48,99,56,53,51,92,34,125,44,104,61,123,53,48,58,92,34,35,102,49,102,56,101,57,92,34,44,49,48,48,58,92,34,35,100,99,101,100,99,56,92,34,44,50,48,48,58,92,34,35,99,53,101,49,97,53,92,34,44,51,48,48,58,92,34,35,97,101,100,53,56,49,92,34,44,52,48,48,58,92,34,35,57,99,99,99,54,53,92,34,44,53,48,48,58,92,34,35,56,98,99,51,52,97,92,34,44,54,48,48,58,92,34,35,55,99,98,51,52,50,92,34,44,55,48,48,58,92,34,35,54,56,57,102,51,56,92,34,44,56,48,48,58,92,34,35,53,53,56,98,50,102,92,34,44,57,48,48,58,92,34,35,51,51,54,57,49,101,92,34,44,97,49,48,48,58,92,34,35,99,99,102,102,57,48,92,34,44,97,50,48,48,58,92,34,35,98,50,102,102,53,57,92,34,44,97,52,48,48,58,92,34,35,55,54,102,102,48,51,92,34,44,97,55,48,48,58,92,34,35,54,52,100,100,49,55,92,34,125,44,112,61,123,53,48,58,92,34,35,102,57,102,98,101,55,92,34,44,49,48,48,58,92,34,35,102,48,102,52,99,51,92,34,44,50,48,48,58,92,34,35,101,54,101,101,57,99,92,34,44,51,48,48,58,92,34,35,100,99,101,55,55,53,92,34,44,52,48,48,58,92,34,35,100,52,101,49,53,55,92,34,44,53,48,48,58,92,34,35,99,100,100,99,51,57,92,34,44,54,48,48,58,92,34,35,99,48,99,97,51,51,92,34,44,55,48,48,58,92,34,35,97,102,98,52,50,98,92,34,44,56,48,48,58,92,34,35,57,101,57,100,50,52,92,34,44,57,48,48,58,92,34,35,56,50,55,55,49,55,92,34,44,97,49,48,48,58,92,34,35,102,52,102,102,56,49,92,34,44,97,50,48,48,58,92,34,35,101,101,102,102,52,49,92,34,44,97,52,48,48,58,92,34,35,99,54,102,102,48,48,92,34,44,97,55,48,48,58,92,34,35,97,101,101,97,48,48,92,34,125,44,118,61,123,53,48,58,92,34,35,102,102,102,100,101,55,92,34,44,49,48,48,58,92,34,35,102,102,102,57,99,52,92,34,44,50,48,48,58,92,34,35,102,102,102,53,57,100,92,34,44,51,48,48,58,92,34,35,102,102,102,49,55,54,92,34,44,52,48,48,58,92,34,35,102,102,101,101,53,56,92,34,44,53,48,48,58,92,34,35,102,102,101,98,51,98,92,34,44,54,48,48,58,92,34,35,102,100,100,56,51,53,92,34,44,55,48,48,58,92,34,35,102,98,99,48,50,100,92,34,44,56,48,48,58,92,34,35,102,57,97,56,50,53,92,34,44,57,48,48,58,92,34,35,102,53,55,102,49,55,92,34,44,97,49,48,48,58,92,34,35,102,102,102,102,56,100,92,34,44,97,50,48,48,58,92,34,35,102,102,102,102,48,48,92,34,44,97,52,48,48,58,92,34,35,102,102,101,97,48,48,92,34,44,97,55,48,48,58,92,34,35,102,102,100,54,48,48,92,34,125,44,103,61,123,53,48,58,92,34,35,102,102,102,56,101,49,92,34,44,49,48,48,58,92,34,35,102,102,101,99,98,51,92,34,44,50,48,48,58,92,34,35,102,102,101,48,56,50,92,34,44,51,48,48,58,92,34,35,102,102,100,53,52,102,92,34,44,52,48,48,58,92,34,35,102,102,99,97,50,56,92,34,44,53,48,48,58,92,34,35,102,102,99,49,48,55,92,34,44,54,48,48,58,92,34,35,102,102,98,51,48,48,92,34,44,55,48,48,58,92,34,35,102,102,97,48,48,48,92,34,44,56,48,48,58,92,34,35,102,102,56,102,48,48,92,34,44,57,48,48,58,92,34,35,102,102,54,102,48,48,92,34,44,97,49,48,48,58,92,34,35,102,102,101,53,55,102,92,34,44,97,50,48,48,58,92,34,35,102,102,100,55,52,48,92,34,44,97,52,48,48,58,92,34,35,102,102,99,52,48,48,92,34,44,97,55,48,48,58,92,34,35,102,102,97,98,48,48,92,34,125,44,98,61,123,53,48,58,92,34,35,102,102,102,51,101,48,92,34,44,49,48,48,58,92,34,35,102,102,101,48,98,50,92,34,44,50,48,48,58,92,34,35,102,102,99,99,56,48,92,34,44,51,48,48,58,92,34,35,102,102,98,55,52,100,92,34,44,52,48,48,58,92,34,35,102,102,97,55,50,54,92,34,44,53,48,48,58,92,34,35,102,102,57,56,48,48,92,34,44,54,48,48,58,92,34,35,102,98,56,99,48,48,92,34,44,55,48,48,58,92,34,35,102,53,55,99,48,48,92,34,44,56,48,48,58,92,34,35,101,102,54,99,48,48,92,34,44,57,48,48,58,92,34,35,101,54,53,49,48,48,92,34,44,97,49,48,48,58,92,34,35,102,102,100,49,56,48,92,34,44,97,50,48,48,58,92,34,35,102,102,97,98,52,48,92,34,44,97,52,48,48,58,92,34,35,102,102,57,49,48,48,92,34,44,97,55,48,48,58,92,34,35,102,102,54,100,48,48,92,34,125,44,120,61,123,53,48,58,92,34,35,102,98,101,57,101,55,92,34,44,49,48,48,58,92,34,35,102,102,99,99,98,99,92,34,44,50,48,48,58,92,34,35,102,102,97,98,57,49,92,34,44,51,48,48,58,92,34,35,102,102,56,97,54,53,92,34,44,52,48,48,58,92,34,35,102,102,55,48,52,51,92,34,44,53,48,48,58,92,34,35,102,102,53,55,50,50,92,34,44,54,48,48,58,92,34,35,102,52,53,49,49,101,92,34,44,55,48,48,58,92,34,35,101,54,52,97,49,57,92,34,44,56,48,48,58,92,34,35,100,56,52,51,49,53,92,34,44,57,48,48,58,92,34,35,98,102,51,54,48,99,92,34,44,97,49,48,48,58,92,34,35,102,102,57,101,56,48,92,34,44,97,50,48,48,58,92,34,35,102,102,54,101,52,48,92,34,44,97,52,48,48,58,92,34,35,102,102,51,100,48,48,92,34,44,97,55,48,48,58,92,34,35,100,100,50,99,48,48,92,34,125,44,109,61,123,53,48,58,92,34,35,101,102,101,98,101,57,92,34,44,49,48,48,58,92,34,35,100,55,99,99,99,56,92,34,44,50,48,48,58,92,34,35,98,99,97,97,97,52,92,34,44,51,48,48,58,92,34,35,97,49,56,56,55,102,92,34,44,52,48,48,58,92,34,35,56,100,54,101,54,51,92,34,44,53,48,48,58,92,34,35,55,57,53,53,52,56,92,34,44,54,48,48,58,92,34,35,54,100,52,99,52,49,92,34,44,55,48,48,58,92,34,35,53,100,52,48,51,55,92,34,44,56,48,48,58,92,34,35,52,101,51,52,50,101,92,34,44,57,48,48,58,92,34,35,51,101,50,55,50,51,92,34,125,44,95,61,123,53,48,58,92,34,35,102,97,102,97,102,97,92,34,44,49,48,48,58,92,34,35,102,53,102,53,102,53,92,34,44,50,48,48,58,92,34,35,101,101,101,101,101,101,92,34,44,51,48,48,58,92,34,35,101,48,101,48,101,48,92,34,44,52,48,48,58,92,34,35,98,100,98,100,98,100,92,34,44,53,48,48,58,92,34,35,57,101,57,101,57,101,92,34,44,54,48,48,58,92,34,35,55,53,55,53,55,53,92,34,44,55,48,48,58,92,34,35,54,49,54,49,54,49,92,34,44,56,48,48,58,92,34,35,52,50,52,50,52,50,92,34,44,57,48,48,58,92,34,35,50,49,50,49,50,49,92,34,125,44,119,61,123,53,48,58,92,34,35,101,99,101,102,102,49,92,34,44,49,48,48,58,92,34,35,99,102,100,56,100,99,92,34,44,50,48,48,58,92,34,35,98,48,98,101,99,53,92,34,44,51,48,48,58,92,34,35,57,48,97,52,97,101,92,34,44,52,48,48,58,92,34,35,55,56,57,48,57,99,92,34,44,53,48,48,58,92,34,35,54,48,55,100,56,98,92,34,44,54,48,48,58,92,34,35,53,52,54,101,55,97,92,34,44,55,48,48,58,92,34,35,52,53,53,97,54,52,92,34,44,56,48,48,58,92,34,35,51,55,52,55,52,102,92,34,44,57,48,48,58,92,34,35,50,54,51,50,51,56,92,34,125,44,121,61,123,112,114,105,109,97,114,121,58,92,34,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,56,55,41,92,34,44,115,101,99,111,110,100,97,114,121,58,92,34,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,53,52,41,92,34,44,100,105,115,97,98,108,101,100,58,92,34,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,51,56,41,92,34,44,100,105,118,105,100,101,114,115,58,92,34,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,50,41,92,34,125,44,67,61,123,112,114,105,109,97,114,121,58,92,34,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,49,41,92,34,44,115,101,99,111,110,100,97,114,121,58,92,34,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,55,41,92,34,44,100,105,115,97,98,108,101,100,58,92,34,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,41,92,34,44,100,105,118,105,100,101,114,115,58,92,34,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,49,50,41,92,34,125,44,107,61,123,97,99,116,105,118,101,58,92,34,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,53,52,41,92,34,44,105,110,97,99,116,105,118,101,58,92,34,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,51,56,41,92,34,125,44,70,61,123,97,99,116,105,118,101,58,92,34,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,49,41,92,34,44,105,110,97,99,116,105,118,101,58,92,34,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,41,92,34,125,44,83,61,92,34,35,102,102,102,102,102,102,92,34,44,65,61,92,34,35,48,48,48,48,48,48,92,34,59,116,46,100,101,102,97,117,108,116,61,123,114,101,100,58,114,44,112,105,110,107,58,105,44,112,117,114,112,108,101,58,111,44,100,101,101,112,80,117,114,112,108,101,58,97,44,105,110,100,105,103,111,58,115,44,98,108,117,101,58,99,44,108,105,103,104,116,66,108,117,101,58,108,44,99,121,97,110,58,117,44,116,101,97,108,58,102,44,103,114,101,101,110,58,100,44,108,105,103,104,116,71,114,101,101,110,58,104,44,108,105,109,101,58,112,44,121,101,108,108,111,119,58,118,44,97,109,98,101,114,58,103,44,111,114,97,110,103,101,58,98,44,100,101,101,112,79,114,97,110,103,101,58,120,44,98,114,111,119,110,58,109,44,103,114,101,121,58,95,44,98,108,117,101,71,114,101,121,58,119,44,100,97,114,107,84,101,120,116,58,121,44,108,105,103,104,116,84,101,120,116,58,67,44,100,97,114,107,73,99,111,110,115,58,107,44,108,105,103,104,116,73,99,111,110,115,58,70,44,119,104,105,116,101,58,83,44,98,108,97,99,107,58,65,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,119,97,116,99,104,101,115,92,34,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,97,112,112,108,105,99,97,116,105,111,110,92,34,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,83,119,97,116,99,104,101,115,32,99,111,108,111,114,32,112,105,99,107,101,114,92,34,44,92,34,100,97,116,97,45,112,105,99,107,92,34,58,101,46,112,105,99,107,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,119,97,116,99,104,101,115,45,98,111,120,92,34,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,108,105,115,116,98,111,120,92,34,125,125,44,101,46,95,108,40,101,46,112,97,108,101,116,116,101,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,107,101,121,58,114,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,119,97,116,99,104,101,115,45,99,111,108,111,114,45,103,114,111,117,112,92,34,125,44,101,46,95,108,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,107,101,121,58,116,44,99,108,97,115,115,58,91,92,34,118,99,45,115,119,97,116,99,104,101,115,45,99,111,108,111,114,45,105,116,92,34,44,123,92,34,118,99,45,115,119,97,116,99,104,101,115,45,99,111,108,111,114,45,45,119,104,105,116,101,92,34,58,92,34,35,70,70,70,70,70,70,92,34,61,61,61,116,125,93,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,116,125,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,111,112,116,105,111,110,92,34,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,67,111,108,111,114,58,92,34,43,116,44,92,34,97,114,105,97,45,115,101,108,101,99,116,101,100,92,34,58,101,46,101,113,117,97,108,40,116,41,44,92,34,100,97,116,97,45,99,111,108,111,114,92,34,58,116,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,46,104,97,110,100,108,101,114,67,108,105,99,107,40,116,41,125,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,92,34,115,104,111,119,92,34,44,114,97,119,78,97,109,101,58,92,34,118,45,115,104,111,119,92,34,44,118,97,108,117,101,58,101,46,101,113,117,97,108,40,116,41,44,101,120,112,114,101,115,115,105,111,110,58,92,34,101,113,117,97,108,40,99,41,92,34,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,119,97,116,99,104,101,115,45,112,105,99,107,92,34,125,44,91,110,40,92,34,115,118,103,92,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,119,105,100,116,104,58,92,34,50,52,112,120,92,34,44,104,101,105,103,104,116,58,92,34,50,52,112,120,92,34,125,44,97,116,116,114,115,58,123,118,105,101,119,66,111,120,58,92,34,48,32,48,32,50,52,32,50,52,92,34,125,125,44,91,110,40,92,34,112,97,116,104,92,34,44,123,97,116,116,114,115,58,123,100,58,92,34,77,50,49,44,55,76,57,44,49,57,76,51,46,53,44,49,51,46,53,76,52,46,57,49,44,49,50,46,48,57,76,57,44,49,54,46,49,55,76,49,57,46,53,57,44,53,46,53,57,76,50,49,44,55,90,92,34,125,125,41,93,41,93,41,93,41,125,41,44,48,41,125,41,44,48,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,116,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,99,124,124,110,40,49,50,49,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,51,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,92,34,100,101,102,97,117,108,116,92,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,101,41,123,110,46,100,40,116,44,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,101,93,125,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,51,52,41,44,99,61,33,49,44,108,61,110,40,50,41,44,117,61,114,44,102,61,108,40,111,46,97,44,115,46,97,44,33,49,44,117,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,104,111,116,111,115,104,111,112,46,118,117,101,92,34,44,116,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,50,50,41,59,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,101,46,105,44,114,44,92,34,92,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,101,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,59,110,40,49,41,40,92,34,48,56,48,51,54,53,100,52,92,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,116,61,101,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,116,46,112,117,115,104,40,91,101,46,105,44,39,92,92,110,46,118,99,45,112,104,111,116,111,115,104,111,112,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,68,67,68,67,68,67,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,44,32,48,32,56,112,120,32,49,54,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,59,92,92,110,32,32,98,111,120,45,115,105,122,105,110,103,58,32,105,110,105,116,105,97,108,59,92,92,110,32,32,119,105,100,116,104,58,32,53,49,51,112,120,59,92,92,110,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,82,111,98,111,116,111,59,92,92,110,125,92,92,110,46,118,99,45,112,104,111,116,111,115,104,111,112,95,95,100,105,115,97,98,108,101,45,102,105,101,108,100,115,32,123,92,92,110,32,32,119,105,100,116,104,58,32,51,57,48,112,120,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,104,101,97,100,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,32,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,45,49,56,48,100,101,103,44,32,35,70,48,70,48,70,48,32,48,37,44,32,35,68,52,68,52,68,52,32,49,48,48,37,41,59,92,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,49,112,120,32,115,111,108,105,100,32,35,66,49,66,49,66,49,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,49,112,120,32,48,32,48,32,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,50,41,44,32,105,110,115,101,116,32,48,32,45,49,112,120,32,48,32,48,32,114,103,98,97,40,48,44,48,44,48,44,46,48,50,41,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,51,112,120,59,92,92,110,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,50,52,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,32,52,112,120,32,48,32,48,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,92,92,110,32,32,99,111,108,111,114,58,32,35,52,68,52,68,52,68,59,92,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,98,111,100,121,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,49,53,112,120,59,92,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,32,123,92,92,110,32,32,119,105,100,116,104,58,32,50,53,54,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,53,54,112,120,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,98,111,114,100,101,114,58,32,50,112,120,32,115,111,108,105,100,32,35,66,51,66,51,66,51,59,92,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,50,112,120,32,115,111,108,105,100,32,35,70,48,70,48,70,48,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,32,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,99,105,114,99,108,101,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,50,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,50,112,120,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,104,117,101,45,119,114,97,112,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,53,54,112,120,59,92,92,110,32,32,119,105,100,116,104,58,32,49,57,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,49,48,112,120,59,92,92,110,32,32,98,111,114,100,101,114,58,32,50,112,120,32,115,111,108,105,100,32,35,66,51,66,51,66,51,59,92,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,50,112,120,32,115,111,108,105,100,32,35,70,48,70,48,70,48,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,108,101,102,116,44,92,92,110,46,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,114,105,103,104,116,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,119,105,100,116,104,58,32,48,59,92,92,110,32,32,104,101,105,103,104,116,58,32,48,59,92,92,110,32,32,98,111,114,100,101,114,45,115,116,121,108,101,58,32,115,111,108,105,100,59,92,92,110,32,32,98,111,114,100,101,114,45,119,105,100,116,104,58,32,53,112,120,32,48,32,53,112,120,32,56,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,32,35,53,53,53,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,108,101,102,116,58,97,102,116,101,114,44,92,92,110,46,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,114,105,103,104,116,58,97,102,116,101,114,32,123,92,92,110,32,32,99,111,110,116,101,110,116,58,32,92,34,92,34,59,92,92,110,32,32,119,105,100,116,104,58,32,48,59,92,92,110,32,32,104,101,105,103,104,116,58,32,48,59,92,92,110,32,32,98,111,114,100,101,114,45,115,116,121,108,101,58,32,115,111,108,105,100,59,92,92,110,32,32,98,111,114,100,101,114,45,119,105,100,116,104,58,32,52,112,120,32,48,32,52,112,120,32,54,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,32,35,102,102,102,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,116,111,112,58,32,49,112,120,59,92,92,110,32,32,108,101,102,116,58,32,49,112,120,59,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,56,112,120,44,32,45,53,112,120,41,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,108,101,102,116,32,123,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,49,51,112,120,44,32,45,52,112,120,41,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,114,105,103,104,116,32,123,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,50,48,112,120,44,32,45,52,112,120,41,32,114,111,116,97,116,101,40,49,56,48,100,101,103,41,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,99,111,110,116,114,111,108,115,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,56,48,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,49,48,112,120,59,92,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,99,111,110,116,114,111,108,115,95,95,100,105,115,97,98,108,101,45,102,105,101,108,100,115,32,123,92,92,110,32,32,119,105,100,116,104,58,32,97,117,116,111,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,97,99,116,105,111,110,115,32,123,92,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,50,48,112,120,59,92,92,110,32,32,102,108,101,120,58,32,49,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,97,99,45,98,116,110,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,32,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,45,49,56,48,100,101,103,44,32,35,70,70,70,70,70,70,32,48,37,44,32,35,69,54,69,54,69,54,32,49,48,48,37,41,59,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,56,55,56,55,56,55,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,48,112,120,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,49,112,120,32,48,32,48,32,35,69,65,69,65,69,65,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,52,112,120,59,92,92,110,32,32,99,111,108,111,114,58,32,35,48,48,48,59,92,92,110,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,50,48,112,120,59,92,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,49,48,112,120,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,112,114,101,118,105,101,119,115,32,123,92,92,110,32,32,119,105,100,116,104,58,32,54,48,112,120,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,115,119,97,116,99,104,101,115,32,123,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,66,51,66,51,66,51,59,92,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,49,112,120,32,115,111,108,105,100,32,35,70,48,70,48,70,48,59,92,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,50,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,112,120,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,112,114,45,99,111,108,111,114,32,123,92,92,110,32,32,104,101,105,103,104,116,58,32,51,52,112,120,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,49,112,120,32,48,32,48,32,35,48,48,48,44,32,105,110,115,101,116,32,45,49,112,120,32,48,32,48,32,35,48,48,48,44,32,105,110,115,101,116,32,48,32,49,112,120,32,48,32,35,48,48,48,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,108,97,98,101,108,32,123,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,52,112,120,59,92,92,110,32,32,99,111,108,111,114,58,32,35,48,48,48,59,92,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,32,123,92,92,110,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,53,112,120,59,92,92,110,32,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,57,112,120,59,92,92,110,32,32,119,105,100,116,104,58,32,56,48,112,120,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,32,46,118,99,45,105,110,112,117,116,95,95,105,110,112,117,116,32,123,92,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,52,48,37,59,92,92,110,32,32,119,105,100,116,104,58,32,52,48,37,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,56,112,120,59,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,56,56,56,56,56,56,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,49,112,120,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,44,32,48,32,49,112,120,32,48,32,48,32,35,69,67,69,67,69,67,59,92,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,53,112,120,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,92,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,51,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,49,48,112,120,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,32,46,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,44,32,46,118,99,45,112,115,45,102,105,101,108,100,115,32,46,118,99,45,105,110,112,117,116,95,95,100,101,115,99,32,123,92,92,110,32,32,116,111,112,58,32,48,59,92,92,110,32,32,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,32,117,112,112,101,114,99,97,115,101,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,56,112,120,59,92,92,110,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,50,50,112,120,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,32,46,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,32,123,92,92,110,32,32,108,101,102,116,58,32,48,59,92,92,110,32,32,119,105,100,116,104,58,32,51,52,112,120,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,32,46,118,99,45,105,110,112,117,116,95,95,100,101,115,99,32,123,92,92,110,32,32,114,105,103,104,116,58,32,48,59,92,92,110,32,32,119,105,100,116,104,58,32,48,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,95,95,100,105,118,105,100,101,114,32,123,92,92,110,32,32,104,101,105,103,104,116,58,32,53,112,120,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,95,95,104,101,120,32,46,118,99,45,105,110,112,117,116,95,95,105,110,112,117,116,32,123,92,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,50,48,37,59,92,92,110,32,32,119,105,100,116,104,58,32,56,48,37,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,56,112,120,59,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,56,56,56,56,56,56,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,49,112,120,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,44,32,48,32,49,112,120,32,48,32,48,32,35,69,67,69,67,69,67,59,92,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,54,112,120,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,92,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,51,112,120,59,92,92,110,125,92,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,95,95,104,101,120,32,46,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,116,111,112,58,32,48,59,92,92,110,32,32,108,101,102,116,58,32,48,59,92,92,110,32,32,119,105,100,116,104,58,32,49,52,112,120,59,92,92,110,32,32,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,32,117,112,112,101,114,99,97,115,101,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,56,112,120,59,92,92,110,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,50,50,112,120,59,92,92,110,125,92,92,110,39,44,92,34,92,34,93,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,50,52,41,59,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,101,46,105,44,114,44,92,34,92,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,101,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,59,110,40,49,41,40,92,34,98,53,51,56,48,101,53,50,92,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,116,61,101,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,116,46,112,117,115,104,40,91,101,46,105,44,92,34,92,92,110,46,118,99,45,115,97,116,117,114,97,116,105,111,110,44,92,92,110,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,45,119,104,105,116,101,44,92,92,110,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,45,98,108,97,99,107,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,116,111,112,58,32,48,59,92,92,110,32,32,108,101,102,116,58,32,48,59,92,92,110,32,32,114,105,103,104,116,58,32,48,59,92,92,110,32,32,98,111,116,116,111,109,58,32,48,59,92,92,110,125,92,92,110,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,45,119,104,105,116,101,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,114,105,103,104,116,44,32,35,102,102,102,44,32,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,48,41,41,59,92,92,110,125,92,92,110,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,45,98,108,97,99,107,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,116,111,112,44,32,35,48,48,48,44,32,114,103,98,97,40,48,44,48,44,48,44,48,41,41,59,92,92,110,125,92,92,110,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,112,111,105,110,116,101,114,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,125,92,92,110,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,99,105,114,99,108,101,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,104,101,97,100,59,92,92,110,32,32,119,105,100,116,104,58,32,52,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,52,112,120,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,48,32,49,46,53,112,120,32,35,102,102,102,44,32,105,110,115,101,116,32,48,32,48,32,49,112,120,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,51,41,44,32,48,32,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,52,41,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,53,48,37,59,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,50,112,120,44,32,45,50,112,120,41,59,92,92,110,125,92,92,110,92,34,44,92,34,92,34,93,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,117,110,99,116,105,111,110,32,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,60,110,63,101,60,116,63,116,58,101,62,110,63,110,58,101,58,101,60,110,63,110,58,101,62,116,63,116,58,101,125,101,46,101,120,112,111,114,116,115,61,110,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,117,110,99,116,105,111,110,32,110,40,101,44,116,44,110,41,123,102,117,110,99,116,105,111,110,32,114,40,116,41,123,118,97,114,32,110,61,118,44,114,61,103,59,114,101,116,117,114,110,32,118,61,103,61,118,111,105,100,32,48,44,107,61,116,44,120,61,101,46,97,112,112,108,121,40,114,44,110,41,125,102,117,110,99,116,105,111,110,32,111,40,101,41,123,114,101,116,117,114,110,32,107,61,101,44,109,61,115,101,116,84,105,109,101,111,117,116,40,117,44,116,41,44,70,63,114,40,101,41,58,120,125,102,117,110,99,116,105,111,110,32,97,40,101,41,123,118,97,114,32,110,61,101,45,95,44,114,61,101,45,107,44,105,61,116,45,110,59,114,101,116,117,114,110,32,83,63,121,40,105,44,98,45,114,41,58,105,125,102,117,110,99,116,105,111,110,32,108,40,101,41,123,118,97,114,32,110,61,101,45,95,44,114,61,101,45,107,59,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,95,124,124,110,62,61,116,124,124,110,60,48,124,124,83,38,38,114,62,61,98,125,102,117,110,99,116,105,111,110,32,117,40,41,123,118,97,114,32,101,61,67,40,41,59,105,102,40,108,40,101,41,41,114,101,116,117,114,110,32,102,40,101,41,59,109,61,115,101,116,84,105,109,101,111,117,116,40,117,44,97,40,101,41,41,125,102,117,110,99,116,105,111,110,32,102,40,101,41,123,114,101,116,117,114,110,32,109,61,118,111,105,100,32,48,44,65,38,38,118,63,114,40,101,41,58,40,118,61,103,61,118,111,105,100,32,48,44,120,41,125,102,117,110,99,116,105,111,110,32,100,40,41,123,118,111,105,100,32,48,33,61,61,109,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,109,41,44,107,61,48,44,118,61,95,61,103,61,109,61,118,111,105,100,32,48,125,102,117,110,99,116,105,111,110,32,104,40,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,109,63,120,58,102,40,67,40,41,41,125,102,117,110,99,116,105,111,110,32,112,40,41,123,118,97,114,32,101,61,67,40,41,44,110,61,108,40,101,41,59,105,102,40,118,61,97,114,103,117,109,101,110,116,115,44,103,61,116,104,105,115,44,95,61,101,44,110,41,123,105,102,40,118,111,105,100,32,48,61,61,61,109,41,114,101,116,117,114,110,32,111,40,95,41,59,105,102,40,83,41,114,101,116,117,114,110,32,109,61,115,101,116,84,105,109,101,111,117,116,40,117,44,116,41,44,114,40,95,41,125,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,109,38,38,40,109,61,115,101,116,84,105,109,101,111,117,116,40,117,44,116,41,41,44,120,125,118,97,114,32,118,44,103,44,98,44,120,44,109,44,95,44,107,61,48,44,70,61,33,49,44,83,61,33,49,44,65,61,33,48,59,105,102,40,92,34,102,117,110,99,116,105,111,110,92,34,33,61,116,121,112,101,111,102,32,101,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,99,41,59,114,101,116,117,114,110,32,116,61,115,40,116,41,124,124,48,44,105,40,110,41,38,38,40,70,61,33,33,110,46,108,101,97,100,105,110,103,44,83,61,92,34,109,97,120,87,97,105,116,92,34,105,110,32,110,44,98,61,83,63,119,40,115,40,110,46,109,97,120,87,97,105,116,41,124,124,48,44,116,41,58,98,44,65,61,92,34,116,114,97,105,108,105,110,103,92,34,105,110,32,110,63,33,33,110,46,116,114,97,105,108,105,110,103,58,65,41,44,112,46,99,97,110,99,101,108,61,100,44,112,46,102,108,117,115,104,61,104,44,112,125,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,114,41,123,118,97,114,32,111,61,33,48,44,97,61,33,48,59,105,102,40,92,34,102,117,110,99,116,105,111,110,92,34,33,61,116,121,112,101,111,102,32,101,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,99,41,59,114,101,116,117,114,110,32,105,40,114,41,38,38,40,111,61,92,34,108,101,97,100,105,110,103,92,34,105,110,32,114,63,33,33,114,46,108,101,97,100,105,110,103,58,111,44,97,61,92,34,116,114,97,105,108,105,110,103,92,34,105,110,32,114,63,33,33,114,46,116,114,97,105,108,105,110,103,58,97,41,44,110,40,101,44,116,44,123,108,101,97,100,105,110,103,58,111,44,109,97,120,87,97,105,116,58,116,44,116,114,97,105,108,105,110,103,58,97,125,41,125,102,117,110,99,116,105,111,110,32,105,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,33,33,101,38,38,40,92,34,111,98,106,101,99,116,92,34,61,61,116,124,124,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,41,125,102,117,110,99,116,105,111,110,32,111,40,101,41,123,114,101,116,117,114,110,33,33,101,38,38,92,34,111,98,106,101,99,116,92,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,97,40,101,41,123,114,101,116,117,114,110,92,34,115,121,109,98,111,108,92,34,61,61,116,121,112,101,111,102,32,101,124,124,111,40,101,41,38,38,95,46,99,97,108,108,40,101,41,61,61,117,125,102,117,110,99,116,105,111,110,32,115,40,101,41,123,105,102,40,92,34,110,117,109,98,101,114,92,34,61,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,101,59,105,102,40,97,40,101,41,41,114,101,116,117,114,110,32,108,59,105,102,40,105,40,101,41,41,123,118,97,114,32,116,61,92,34,102,117,110,99,116,105,111,110,92,34,61,61,116,121,112,101,111,102,32,101,46,118,97,108,117,101,79,102,63,101,46,118,97,108,117,101,79,102,40,41,58,101,59,101,61,105,40,116,41,63,116,43,92,34,92,34,58,116,125,105,102,40,92,34,115,116,114,105,110,103,92,34,33,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,48,61,61,61,101,63,101,58,43,101,59,101,61,101,46,114,101,112,108,97,99,101,40,102,44,92,34,92,34,41,59,118,97,114,32,110,61,104,46,116,101,115,116,40,101,41,59,114,101,116,117,114,110,32,110,124,124,112,46,116,101,115,116,40,101,41,63,118,40,101,46,115,108,105,99,101,40,50,41,44,110,63,50,58,56,41,58,100,46,116,101,115,116,40,101,41,63,108,58,43,101,125,118,97,114,32,99,61,92,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,92,34,44,108,61,78,97,78,44,117,61,92,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,92,34,44,102,61,47,94,92,92,115,43,124,92,92,115,43,36,47,103,44,100,61,47,94,91,45,43,93,48,120,91,48,45,57,97,45,102,93,43,36,47,105,44,104,61,47,94,48,98,91,48,49,93,43,36,47,105,44,112,61,47,94,48,111,91,48,45,55,93,43,36,47,105,44,118,61,112,97,114,115,101,73,110,116,44,103,61,92,34,111,98,106,101,99,116,92,34,61,61,116,121,112,101,111,102,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,38,38,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,38,38,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,46,79,98,106,101,99,116,61,61,61,79,98,106,101,99,116,38,38,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,44,98,61,92,34,111,98,106,101,99,116,92,34,61,61,116,121,112,101,111,102,32,115,101,108,102,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,120,61,103,124,124,98,124,124,70,117,110,99,116,105,111,110,40,92,34,114,101,116,117,114,110,32,116,104,105,115,92,34,41,40,41,44,109,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,44,95,61,109,46,116,111,83,116,114,105,110,103,44,119,61,77,97,116,104,46,109,97,120,44,121,61,77,97,116,104,46,109,105,110,44,67,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,120,46,68,97,116,101,46,110,111,119,40,41,125,59,101,46,101,120,112,111,114,116,115,61,114,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,99,111,110,116,97,105,110,101,114,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,97,116,117,114,97,116,105,111,110,92,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,101,46,98,103,67,111,108,111,114,125,44,111,110,58,123,109,111,117,115,101,100,111,119,110,58,101,46,104,97,110,100,108,101,77,111,117,115,101,68,111,119,110,44,116,111,117,99,104,109,111,118,101,58,101,46,104,97,110,100,108,101,67,104,97,110,103,101,44,116,111,117,99,104,115,116,97,114,116,58,101,46,104,97,110,100,108,101,67,104,97,110,103,101,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,97,116,117,114,97,116,105,111,110,45,45,119,104,105,116,101,92,34,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,97,116,117,114,97,116,105,111,110,45,45,98,108,97,99,107,92,34,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,97,116,117,114,97,116,105,111,110,45,112,111,105,110,116,101,114,92,34,44,115,116,121,108,101,58,123,116,111,112,58,101,46,112,111,105,110,116,101,114,84,111,112,44,108,101,102,116,58,101,46,112,111,105,110,116,101,114,76,101,102,116,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,97,116,117,114,97,116,105,111,110,45,99,105,114,99,108,101,92,34,125,41,93,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,116,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,50,57,41,59,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,101,46,105,44,114,44,92,34,92,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,101,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,59,110,40,49,41,40,92,34,52,100,99,49,98,48,56,54,92,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,116,61,101,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,116,46,112,117,115,104,40,91,101,46,105,44,92,34,92,92,110,46,118,99,45,97,108,112,104,97,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,116,111,112,58,32,48,112,120,59,92,92,110,32,32,114,105,103,104,116,58,32,48,112,120,59,92,92,110,32,32,98,111,116,116,111,109,58,32,48,112,120,59,92,92,110,32,32,108,101,102,116,58,32,48,112,120,59,92,92,110,125,92,92,110,46,118,99,45,97,108,112,104,97,45,99,104,101,99,107,98,111,97,114,100,45,119,114,97,112,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,116,111,112,58,32,48,112,120,59,92,92,110,32,32,114,105,103,104,116,58,32,48,112,120,59,92,92,110,32,32,98,111,116,116,111,109,58,32,48,112,120,59,92,92,110,32,32,108,101,102,116,58,32,48,112,120,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,125,92,92,110,46,118,99,45,97,108,112,104,97,45,103,114,97,100,105,101,110,116,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,116,111,112,58,32,48,112,120,59,92,92,110,32,32,114,105,103,104,116,58,32,48,112,120,59,92,92,110,32,32,98,111,116,116,111,109,58,32,48,112,120,59,92,92,110,32,32,108,101,102,116,58,32,48,112,120,59,92,92,110,125,92,92,110,46,118,99,45,97,108,112,104,97,45,99,111,110,116,97,105,110,101,114,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,122,45,105,110,100,101,120,58,32,50,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,48,48,37,59,92,92,110,32,32,109,97,114,103,105,110,58,32,48,32,51,112,120,59,92,92,110,125,92,92,110,46,118,99,45,97,108,112,104,97,45,112,111,105,110,116,101,114,32,123,92,92,110,32,32,122,45,105,110,100,101,120,58,32,50,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,125,92,92,110,46,118,99,45,97,108,112,104,97,45,112,105,99,107,101,114,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,32,32,119,105,100,116,104,58,32,52,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,56,112,120,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,50,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,54,41,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,112,120,59,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,88,40,45,50,112,120,41,59,92,92,110,125,92,92,110,92,34,44,92,34,92,34,93,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,51,49,41,59,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,101,46,105,44,114,44,92,34,92,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,101,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,59,110,40,49,41,40,92,34,55,101,49,53,99,48,53,98,92,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,116,61,101,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,116,46,112,117,115,104,40,91,101,46,105,44,92,34,92,92,110,46,118,99,45,99,104,101,99,107,101,114,98,111,97,114,100,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,116,111,112,58,32,48,112,120,59,92,92,110,32,32,114,105,103,104,116,58,32,48,112,120,59,92,92,110,32,32,98,111,116,116,111,109,58,32,48,112,120,59,92,92,110,32,32,108,101,102,116,58,32,48,112,120,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,32,99,111,110,116,97,105,110,59,92,92,110,125,92,92,110,92,34,44,92,34,92,34,93,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,101,46,95,115,101,108,102,46,95,99,124,124,116,41,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,101,99,107,101,114,98,111,97,114,100,92,34,44,115,116,121,108,101,58,101,46,98,103,83,116,121,108,101,125,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,116,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,97,108,112,104,97,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,97,108,112,104,97,45,99,104,101,99,107,98,111,97,114,100,45,119,114,97,112,92,34,125,44,91,110,40,92,34,99,104,101,99,107,98,111,97,114,100,92,34,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,97,108,112,104,97,45,103,114,97,100,105,101,110,116,92,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,101,46,103,114,97,100,105,101,110,116,67,111,108,111,114,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,114,101,102,58,92,34,99,111,110,116,97,105,110,101,114,92,34,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,97,108,112,104,97,45,99,111,110,116,97,105,110,101,114,92,34,44,111,110,58,123,109,111,117,115,101,100,111,119,110,58,101,46,104,97,110,100,108,101,77,111,117,115,101,68,111,119,110,44,116,111,117,99,104,109,111,118,101,58,101,46,104,97,110,100,108,101,67,104,97,110,103,101,44,116,111,117,99,104,115,116,97,114,116,58,101,46,104,97,110,100,108,101,67,104,97,110,103,101,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,97,108,112,104,97,45,112,111,105,110,116,101,114,92,34,44,115,116,121,108,101,58,123,108,101,102,116,58,49,48,48,42,101,46,99,111,108,111,114,115,46,97,43,92,34,37,92,34,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,97,108,112,104,97,45,112,105,99,107,101,114,92,34,125,41,93,41,93,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,116,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,99,108,97,115,115,58,91,92,34,118,99,45,112,104,111,116,111,115,104,111,112,92,34,44,101,46,100,105,115,97,98,108,101,70,105,101,108,100,115,63,92,34,118,99,45,112,104,111,116,111,115,104,111,112,95,95,100,105,115,97,98,108,101,45,102,105,101,108,100,115,92,34,58,92,34,92,34,93,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,97,112,112,108,105,99,97,116,105,111,110,92,34,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,80,104,111,116,111,83,104,111,112,32,99,111,108,111,114,32,112,105,99,107,101,114,92,34,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,104,101,97,100,92,34,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,104,101,97,100,105,110,103,92,34,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,104,101,97,100,41,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,98,111,100,121,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,92,34,125,44,91,110,40,92,34,115,97,116,117,114,97,116,105,111,110,92,34,44,123,111,110,58,123,99,104,97,110,103,101,58,101,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,99,111,108,111,114,115,61,116,125,44,101,120,112,114,101,115,115,105,111,110,58,92,34,99,111,108,111,114,115,92,34,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,104,117,101,45,119,114,97,112,92,34,125,44,91,110,40,92,34,104,117,101,92,34,44,123,97,116,116,114,115,58,123,100,105,114,101,99,116,105,111,110,58,92,34,118,101,114,116,105,99,97,108,92,34,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,99,111,108,111,114,115,61,116,125,44,101,120,112,114,101,115,115,105,111,110,58,92,34,99,111,108,111,114,115,92,34,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,92,34,125,44,91,110,40,92,34,105,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,108,101,102,116,92,34,125,41,44,110,40,92,34,105,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,114,105,103,104,116,92,34,125,41,93,41,93,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,99,108,97,115,115,58,91,92,34,118,99,45,112,115,45,99,111,110,116,114,111,108,115,92,34,44,101,46,100,105,115,97,98,108,101,70,105,101,108,100,115,63,92,34,118,99,45,112,115,45,99,111,110,116,114,111,108,115,95,95,100,105,115,97,98,108,101,45,102,105,101,108,100,115,92,34,58,92,34,92,34,93,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,112,114,101,118,105,101,119,115,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,108,97,98,101,108,92,34,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,110,101,119,76,97,98,101,108,41,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,115,119,97,116,99,104,101,115,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,112,114,45,99,111,108,111,114,92,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,101,46,99,111,108,111,114,115,46,104,101,120,125,44,97,116,116,114,115,58,123,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,78,101,119,32,99,111,108,111,114,32,105,115,32,92,34,43,101,46,99,111,108,111,114,115,46,104,101,120,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,112,114,45,99,111,108,111,114,92,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,101,46,99,117,114,114,101,110,116,67,111,108,111,114,125,44,97,116,116,114,115,58,123,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,67,117,114,114,101,110,116,32,99,111,108,111,114,32,105,115,32,92,34,43,101,46,99,117,114,114,101,110,116,67,111,108,111,114,125,44,111,110,58,123,99,108,105,99,107,58,101,46,99,108,105,99,107,67,117,114,114,101,110,116,67,111,108,111,114,125,125,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,108,97,98,101,108,92,34,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,99,117,114,114,101,110,116,76,97,98,101,108,41,41,93,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,101,46,100,105,115,97,98,108,101,70,105,101,108,100,115,63,101,46,95,101,40,41,58,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,97,99,116,105,111,110,115,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,97,99,45,98,116,110,92,34,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,98,117,116,116,111,110,92,34,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,101,46,97,99,99,101,112,116,76,97,98,101,108,125,44,111,110,58,123,99,108,105,99,107,58,101,46,104,97,110,100,108,101,65,99,99,101,112,116,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,97,99,99,101,112,116,76,97,98,101,108,41,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,97,99,45,98,116,110,92,34,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,98,117,116,116,111,110,92,34,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,101,46,99,97,110,99,101,108,76,97,98,101,108,125,44,111,110,58,123,99,108,105,99,107,58,101,46,104,97,110,100,108,101,67,97,110,99,101,108,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,99,97,110,99,101,108,76,97,98,101,108,41,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,102,105,101,108,100,115,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,104,92,34,44,100,101,115,99,58,92,34,194,176,92,34,44,118,97,108,117,101,58,101,46,104,115,118,46,104,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,115,92,34,44,100,101,115,99,58,92,34,37,92,34,44,118,97,108,117,101,58,101,46,104,115,118,46,115,44,109,97,120,58,49,48,48,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,118,92,34,44,100,101,115,99,58,92,34,37,92,34,44,118,97,108,117,101,58,101,46,104,115,118,46,118,44,109,97,120,58,49,48,48,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,102,105,101,108,100,115,95,95,100,105,118,105,100,101,114,92,34,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,114,92,34,44,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,114,103,98,97,46,114,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,103,92,34,44,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,114,103,98,97,46,103,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,98,92,34,44,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,114,103,98,97,46,98,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,102,105,101,108,100,115,95,95,100,105,118,105,100,101,114,92,34,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,101,100,45,105,110,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,102,105,101,108,100,115,95,95,104,101,120,92,34,44,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,35,92,34,44,118,97,108,117,101,58,101,46,104,101,120,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,101,46,104,97,115,82,101,115,101,116,66,117,116,116,111,110,63,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,112,115,45,97,99,45,98,116,110,92,34,44,97,116,116,114,115,58,123,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,114,101,115,101,116,92,34,125,44,111,110,58,123,99,108,105,99,107,58,101,46,104,97,110,100,108,101,82,101,115,101,116,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,114,101,115,101,116,76,97,98,101,108,41,41,93,41,58,101,46,95,101,40,41,93,41,93,41,93,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,116,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,99,124,124,110,40,49,51,54,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,55,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,92,34,100,101,102,97,117,108,116,92,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,101,41,123,110,46,100,40,116,44,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,101,93,125,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,51,56,41,44,99,61,33,49,44,108,61,110,40,50,41,44,117,61,114,44,102,61,108,40,111,46,97,44,115,46,97,44,33,49,44,117,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,107,101,116,99,104,46,118,117,101,92,34,44,116,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,51,55,41,59,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,101,46,105,44,114,44,92,34,92,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,101,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,59,110,40,49,41,40,92,34,54,49,50,99,54,54,48,52,92,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,116,61,101,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,116,46,112,117,115,104,40,91,101,46,105,44,92,34,92,92,110,46,118,99,45,115,107,101,116,99,104,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,119,105,100,116,104,58,32,50,48,48,112,120,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,49,48,112,120,32,49,48,112,120,32,48,59,92,92,110,32,32,98,111,120,45,115,105,122,105,110,103,58,32,105,110,105,116,105,97,108,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,49,53,41,44,32,48,32,56,112,120,32,49,54,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,49,53,41,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,32,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,55,53,37,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,99,111,110,116,114,111,108,115,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,115,108,105,100,101,114,115,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,52,112,120,32,48,59,92,92,110,32,32,102,108,101,120,58,32,49,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,115,108,105,100,101,114,115,32,46,118,99,45,104,117,101,44,92,92,110,46,118,99,45,115,107,101,116,99,104,45,115,108,105,100,101,114,115,32,46,118,99,45,97,108,112,104,97,45,103,114,97,100,105,101,110,116,32,123,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,104,117,101,45,119,114,97,112,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,48,112,120,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,97,108,112,104,97,45,119,114,97,112,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,48,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,52,112,120,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,99,111,108,111,114,45,119,114,97,112,32,123,92,92,110,32,32,119,105,100,116,104,58,32,50,52,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,52,112,120,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,52,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,52,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,51,112,120,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,97,99,116,105,118,101,45,99,111,108,111,114,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,116,111,112,58,32,48,59,92,92,110,32,32,108,101,102,116,58,32,48,59,92,92,110,32,32,114,105,103,104,116,58,32,48,59,92,92,110,32,32,98,111,116,116,111,109,58,32,48,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,49,53,41,44,32,105,110,115,101,116,32,48,32,48,32,52,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,50,53,41,59,92,92,110,32,32,122,45,105,110,100,101,120,58,32,50,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,99,111,108,111,114,45,119,114,97,112,32,46,118,99,45,99,104,101,99,107,101,114,98,111,97,114,100,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,32,97,117,116,111,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,92,110,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,52,112,120,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,32,46,118,99,45,105,110,112,117,116,95,95,105,110,112,117,116,32,123,92,92,110,32,32,119,105,100,116,104,58,32,57,48,37,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,52,112,120,32,48,32,51,112,120,32,49,48,37,59,92,92,110,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,35,99,99,99,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,48,112,120,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,32,46,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,92,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,49,112,120,59,92,92,110,32,32,99,111,108,111,114,58,32,35,50,50,50,59,92,92,110,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,51,112,120,59,92,92,110,32,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,52,112,120,59,92,92,110,32,32,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,32,99,97,112,105,116,97,108,105,122,101,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,45,45,115,105,110,103,108,101,32,123,92,92,110,32,32,102,108,101,120,58,32,49,59,92,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,54,112,120,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,45,45,100,111,117,98,108,101,32,123,92,92,110,32,32,102,108,101,120,58,32,50,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,112,114,101,115,101,116,115,32,123,92,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,45,49,48,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,45,49,48,112,120,59,92,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,49,48,112,120,59,92,92,110,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,49,48,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,116,111,112,58,32,49,112,120,32,115,111,108,105,100,32,35,101,101,101,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,112,114,101,115,101,116,115,45,99,111,108,111,114,32,123,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,51,112,120,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,45,98,108,111,99,107,59,92,92,110,32,32,109,97,114,103,105,110,58,32,48,32,49,48,112,120,32,49,48,112,120,32,48,59,92,92,110,32,32,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,32,116,111,112,59,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,32,32,119,105,100,116,104,58,32,49,54,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,54,112,120,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,49,53,41,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,45,112,114,101,115,101,116,115,45,99,111,108,111,114,32,46,118,99,45,99,104,101,99,107,101,114,98,111,97,114,100,32,123,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,49,53,41,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,51,112,120,59,92,92,110,125,92,92,110,46,118,99,45,115,107,101,116,99,104,95,95,100,105,115,97,98,108,101,45,97,108,112,104,97,32,46,118,99,45,115,107,101,116,99,104,45,99,111,108,111,114,45,119,114,97,112,32,123,92,92,110,32,32,104,101,105,103,104,116,58,32,49,48,112,120,59,92,92,110,125,92,92,110,92,34,44,92,34,92,34,93,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,99,108,97,115,115,58,91,92,34,118,99,45,115,107,101,116,99,104,92,34,44,101,46,100,105,115,97,98,108,101,65,108,112,104,97,63,92,34,118,99,45,115,107,101,116,99,104,95,95,100,105,115,97,98,108,101,45,97,108,112,104,97,92,34,58,92,34,92,34,93,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,97,112,112,108,105,99,97,116,105,111,110,92,34,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,83,107,101,116,99,104,32,99,111,108,111,114,32,112,105,99,107,101,114,92,34,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,92,34,125,44,91,110,40,92,34,115,97,116,117,114,97,116,105,111,110,92,34,44,123,111,110,58,123,99,104,97,110,103,101,58,101,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,99,111,108,111,114,115,61,116,125,44,101,120,112,114,101,115,115,105,111,110,58,92,34,99,111,108,111,114,115,92,34,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,99,111,110,116,114,111,108,115,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,115,108,105,100,101,114,115,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,104,117,101,45,119,114,97,112,92,34,125,44,91,110,40,92,34,104,117,101,92,34,44,123,111,110,58,123,99,104,97,110,103,101,58,101,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,99,111,108,111,114,115,61,116,125,44,101,120,112,114,101,115,115,105,111,110,58,92,34,99,111,108,111,114,115,92,34,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,101,46,100,105,115,97,98,108,101,65,108,112,104,97,63,101,46,95,101,40,41,58,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,97,108,112,104,97,45,119,114,97,112,92,34,125,44,91,110,40,92,34,97,108,112,104,97,92,34,44,123,111,110,58,123,99,104,97,110,103,101,58,101,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,99,111,108,111,114,115,61,116,125,44,101,120,112,114,101,115,115,105,111,110,58,92,34,99,111,108,111,114,115,92,34,125,125,41,93,44,49,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,99,111,108,111,114,45,119,114,97,112,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,97,99,116,105,118,101,45,99,111,108,111,114,92,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,101,46,97,99,116,105,118,101,67,111,108,111,114,125,44,97,116,116,114,115,58,123,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,67,117,114,114,101,110,116,32,99,111,108,111,114,32,105,115,32,92,34,43,101,46,97,99,116,105,118,101,67,111,108,111,114,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,99,104,101,99,107,98,111,97,114,100,92,34,41,93,44,49,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,101,46,100,105,115,97,98,108,101,70,105,101,108,100,115,63,101,46,95,101,40,41,58,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,45,45,100,111,117,98,108,101,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,104,101,120,92,34,44,118,97,108,117,101,58,101,46,104,101,120,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,45,45,115,105,110,103,108,101,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,114,92,34,44,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,114,103,98,97,46,114,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,45,45,115,105,110,103,108,101,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,103,92,34,44,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,114,103,98,97,46,103,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,45,45,115,105,110,103,108,101,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,98,92,34,44,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,114,103,98,97,46,98,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,101,46,100,105,115,97,98,108,101,65,108,112,104,97,63,101,46,95,101,40,41,58,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,45,45,115,105,110,103,108,101,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,97,92,34,44,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,97,44,92,34,97,114,114,111,119,45,111,102,102,115,101,116,92,34,58,46,48,49,44,109,97,120,58,49,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,112,114,101,115,101,116,115,92,34,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,103,114,111,117,112,92,34,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,65,32,99,111,108,111,114,32,112,114,101,115,101,116,44,32,112,105,99,107,32,111,110,101,32,116,111,32,115,101,116,32,97,115,32,99,117,114,114,101,110,116,32,99,111,108,111,114,92,34,125,125,44,91,101,46,95,108,40,101,46,112,114,101,115,101,116,67,111,108,111,114,115,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,101,46,105,115,84,114,97,110,115,112,97,114,101,110,116,40,116,41,63,110,40,92,34,100,105,118,92,34,44,123,107,101,121,58,116,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,112,114,101,115,101,116,115,45,99,111,108,111,114,92,34,44,97,116,116,114,115,58,123,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,67,111,108,111,114,58,92,34,43,116,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,46,104,97,110,100,108,101,80,114,101,115,101,116,40,116,41,125,125,125,44,91,110,40,92,34,99,104,101,99,107,98,111,97,114,100,92,34,41,93,44,49,41,58,110,40,92,34,100,105,118,92,34,44,123,107,101,121,58,116,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,115,107,101,116,99,104,45,112,114,101,115,101,116,115,45,99,111,108,111,114,92,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,116,125,44,97,116,116,114,115,58,123,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,67,111,108,111,114,58,92,34,43,116,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,46,104,97,110,100,108,101,80,114,101,115,101,116,40,116,41,125,125,125,41,93,125,41,93,44,50,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,116,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,99,124,124,110,40,49,52,48,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,56,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,92,34,100,101,102,97,117,108,116,92,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,101,41,123,110,46,100,40,116,44,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,101,93,125,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,52,50,41,44,99,61,33,49,44,108,61,110,40,50,41,44,117,61,114,44,102,61,108,40,111,46,97,44,115,46,97,44,33,49,44,117,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,104,114,111,109,101,46,118,117,101,92,34,44,116,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,52,49,41,59,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,101,46,105,44,114,44,92,34,92,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,101,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,59,110,40,49,41,40,92,34,49,99,100,49,54,48,52,56,92,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,116,61,101,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,116,46,112,117,115,104,40,91,101,46,105,44,92,34,92,92,110,46,118,99,45,99,104,114,111,109,101,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,51,41,44,32,48,32,52,112,120,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,51,41,59,92,92,110,32,32,98,111,120,45,115,105,122,105,110,103,58,32,105,110,105,116,105,97,108,59,92,92,110,32,32,119,105,100,116,104,58,32,50,50,53,112,120,59,92,92,110,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,77,101,110,108,111,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,102,102,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,99,111,110,116,114,111,108,115,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,99,111,108,111,114,45,119,114,97,112,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,119,105,100,116,104,58,32,51,54,112,120,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,97,99,116,105,118,101,45,99,111,108,111,114,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,119,105,100,116,104,58,32,51,48,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,51,48,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,53,112,120,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,32,32,122,45,105,110,100,101,120,58,32,49,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,99,111,108,111,114,45,119,114,97,112,32,46,118,99,45,99,104,101,99,107,101,114,98,111,97,114,100,32,123,92,92,110,32,32,119,105,100,116,104,58,32,51,48,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,51,48,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,53,112,120,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,32,97,117,116,111,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,115,108,105,100,101,114,115,32,123,92,92,110,32,32,102,108,101,120,58,32,49,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,45,119,114,97,112,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,92,110,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,49,54,112,120,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,45,54,112,120,59,92,92,110,32,32,102,108,101,120,58,32,49,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,32,123,92,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,54,112,120,59,92,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,116,111,103,103,108,101,45,98,116,110,32,123,92,92,110,32,32,119,105,100,116,104,58,32,51,50,112,120,59,92,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,114,105,103,104,116,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,116,111,103,103,108,101,45,105,99,111,110,32,123,92,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,45,52,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,50,112,120,59,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,122,45,105,110,100,101,120,58,32,50,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,116,111,103,103,108,101,45,105,99,111,110,45,104,105,103,104,108,105,103,104,116,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,119,105,100,116,104,58,32,50,52,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,56,112,120,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,101,101,101,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,92,92,110,32,32,116,111,112,58,32,49,48,112,120,59,92,92,110,32,32,108,101,102,116,58,32,49,50,112,120,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,104,117,101,45,119,114,97,112,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,48,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,56,112,120,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,97,108,112,104,97,45,119,114,97,112,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,48,112,120,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,104,117,101,45,119,114,97,112,32,46,118,99,45,104,117,101,32,123,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,97,108,112,104,97,45,119,114,97,112,32,46,118,99,45,97,108,112,104,97,45,103,114,97,100,105,101,110,116,32,123,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,104,117,101,45,119,114,97,112,32,46,118,99,45,104,117,101,45,112,105,99,107,101,114,44,32,46,118,99,45,99,104,114,111,109,101,45,97,108,112,104,97,45,119,114,97,112,32,46,118,99,45,97,108,112,104,97,45,112,105,99,107,101,114,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,50,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,50,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,54,112,120,59,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,54,112,120,44,32,45,50,112,120,41,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,50,52,56,44,32,50,52,56,44,32,50,52,56,41,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,49,112,120,32,52,112,120,32,48,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,51,55,41,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,98,111,100,121,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,49,54,112,120,32,49,54,112,120,32,49,50,112,120,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,102,102,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,32,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,53,53,37,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,32,50,112,120,32,48,32,48,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,32,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,99,105,114,99,108,101,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,50,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,50,112,120,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,32,46,118,99,45,105,110,112,117,116,95,95,105,110,112,117,116,32,123,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,49,112,120,59,92,92,110,32,32,99,111,108,111,114,58,32,35,51,51,51,59,92,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,92,110,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,35,100,97,100,97,100,97,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,49,112,120,59,92,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,32,46,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,32,123,92,92,110,32,32,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,32,117,112,112,101,114,99,97,115,101,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,49,112,120,59,92,92,110,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,49,112,120,59,92,92,110,32,32,99,111,108,111,114,58,32,35,57,54,57,54,57,54,59,92,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,92,110,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,50,112,120,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,95,95,100,105,115,97,98,108,101,45,97,108,112,104,97,32,46,118,99,45,99,104,114,111,109,101,45,97,99,116,105,118,101,45,99,111,108,111,114,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,56,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,56,112,120,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,95,95,100,105,115,97,98,108,101,45,97,108,112,104,97,32,46,118,99,45,99,104,114,111,109,101,45,99,111,108,111,114,45,119,114,97,112,32,123,92,92,110,32,32,119,105,100,116,104,58,32,51,48,112,120,59,92,92,110,125,92,92,110,46,118,99,45,99,104,114,111,109,101,95,95,100,105,115,97,98,108,101,45,97,108,112,104,97,32,46,118,99,45,99,104,114,111,109,101,45,104,117,101,45,119,114,97,112,32,123,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,52,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,52,112,120,59,92,92,110,125,92,92,110,92,34,44,92,34,92,34,93,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,99,108,97,115,115,58,91,92,34,118,99,45,99,104,114,111,109,101,92,34,44,101,46,100,105,115,97,98,108,101,65,108,112,104,97,63,92,34,118,99,45,99,104,114,111,109,101,95,95,100,105,115,97,98,108,101,45,97,108,112,104,97,92,34,58,92,34,92,34,93,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,97,112,112,108,105,99,97,116,105,111,110,92,34,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,67,104,114,111,109,101,32,99,111,108,111,114,32,112,105,99,107,101,114,92,34,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,92,34,125,44,91,110,40,92,34,115,97,116,117,114,97,116,105,111,110,92,34,44,123,111,110,58,123,99,104,97,110,103,101,58,101,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,99,111,108,111,114,115,61,116,125,44,101,120,112,114,101,115,115,105,111,110,58,92,34,99,111,108,111,114,115,92,34,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,98,111,100,121,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,99,111,110,116,114,111,108,115,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,99,111,108,111,114,45,119,114,97,112,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,97,99,116,105,118,101,45,99,111,108,111,114,92,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,101,46,97,99,116,105,118,101,67,111,108,111,114,125,44,97,116,116,114,115,58,123,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,99,117,114,114,101,110,116,32,99,111,108,111,114,32,105,115,32,92,34,43,101,46,99,111,108,111,114,115,46,104,101,120,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,101,46,100,105,115,97,98,108,101,65,108,112,104,97,63,101,46,95,101,40,41,58,110,40,92,34,99,104,101,99,107,98,111,97,114,100,92,34,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,115,108,105,100,101,114,115,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,104,117,101,45,119,114,97,112,92,34,125,44,91,110,40,92,34,104,117,101,92,34,44,123,111,110,58,123,99,104,97,110,103,101,58,101,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,99,111,108,111,114,115,61,116,125,44,101,120,112,114,101,115,115,105,111,110,58,92,34,99,111,108,111,114,115,92,34,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,101,46,100,105,115,97,98,108,101,65,108,112,104,97,63,101,46,95,101,40,41,58,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,97,108,112,104,97,45,119,114,97,112,92,34,125,44,91,110,40,92,34,97,108,112,104,97,92,34,44,123,111,110,58,123,99,104,97,110,103,101,58,101,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,99,111,108,111,114,115,61,116,125,44,101,120,112,114,101,115,115,105,111,110,58,92,34,99,111,108,111,114,115,92,34,125,125,41,93,44,49,41,93,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,101,46,100,105,115,97,98,108,101,70,105,101,108,100,115,63,101,46,95,101,40,41,58,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,45,119,114,97,112,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,92,34,115,104,111,119,92,34,44,114,97,119,78,97,109,101,58,92,34,118,45,115,104,111,119,92,34,44,118,97,108,117,101,58,48,61,61,61,101,46,102,105,101,108,100,115,73,110,100,101,120,44,101,120,112,114,101,115,115,105,111,110,58,92,34,102,105,101,108,100,115,73,110,100,101,120,32,61,61,61,32,48,92,34,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,92,34,125,44,91,101,46,104,97,115,65,108,112,104,97,63,101,46,95,101,40,41,58,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,104,101,120,92,34,44,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,104,101,120,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,101,46,104,97,115,65,108,112,104,97,63,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,104,101,120,92,34,44,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,104,101,120,56,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,58,101,46,95,101,40,41,93,44,49,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,92,34,115,104,111,119,92,34,44,114,97,119,78,97,109,101,58,92,34,118,45,115,104,111,119,92,34,44,118,97,108,117,101,58,49,61,61,61,101,46,102,105,101,108,100,115,73,110,100,101,120,44,101,120,112,114,101,115,115,105,111,110,58,92,34,102,105,101,108,100,115,73,110,100,101,120,32,61,61,61,32,49,92,34,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,114,92,34,44,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,114,103,98,97,46,114,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,103,92,34,44,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,114,103,98,97,46,103,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,98,92,34,44,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,114,103,98,97,46,98,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,101,46,100,105,115,97,98,108,101,65,108,112,104,97,63,101,46,95,101,40,41,58,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,97,92,34,44,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,97,44,92,34,97,114,114,111,119,45,111,102,102,115,101,116,92,34,58,46,48,49,44,109,97,120,58,49,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,92,34,115,104,111,119,92,34,44,114,97,119,78,97,109,101,58,92,34,118,45,115,104,111,119,92,34,44,118,97,108,117,101,58,50,61,61,61,101,46,102,105,101,108,100,115,73,110,100,101,120,44,101,120,112,114,101,115,115,105,111,110,58,92,34,102,105,101,108,100,115,73,110,100,101,120,32,61,61,61,32,50,92,34,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,92,34,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,104,92,34,44,118,97,108,117,101,58,101,46,104,115,108,46,104,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,115,92,34,44,118,97,108,117,101,58,101,46,104,115,108,46,115,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,108,92,34,44,118,97,108,117,101,58,101,46,104,115,108,46,108,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,101,46,95,118,40,92,34,32,92,34,41,44,101,46,100,105,115,97,98,108,101,65,108,112,104,97,63,101,46,95,101,40,41,58,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,92,34,125,44,91,110,40,92,34,101,100,45,105,110,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,97,92,34,44,118,97,108,117,101,58,101,46,99,111,108,111,114,115,46,97,44,92,34,97,114,114,111,119,45,111,102,102,115,101,116,92,34,58,46,48,49,44,109,97,120,58,49,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,116,111,103,103,108,101,45,98,116,110,92,34,44,97,116,116,114,115,58,123,114,111,108,101,58,92,34,98,117,116,116,111,110,92,34,44,92,34,97,114,105,97,45,108,97,98,101,108,92,34,58,92,34,67,104,97,110,103,101,32,97,110,111,116,104,101,114,32,99,111,108,111,114,32,100,101,102,105,110,105,116,105,111,110,92,34,125,44,111,110,58,123,99,108,105,99,107,58,101,46,116,111,103,103,108,101,86,105,101,119,115,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,116,111,103,103,108,101,45,105,99,111,110,92,34,125,44,91,110,40,92,34,115,118,103,92,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,119,105,100,116,104,58,92,34,50,52,112,120,92,34,44,104,101,105,103,104,116,58,92,34,50,52,112,120,92,34,125,44,97,116,116,114,115,58,123,118,105,101,119,66,111,120,58,92,34,48,32,48,32,50,52,32,50,52,92,34,125,44,111,110,58,123,109,111,117,115,101,111,118,101,114,58,101,46,115,104,111,119,72,105,103,104,108,105,103,104,116,44,109,111,117,115,101,101,110,116,101,114,58,101,46,115,104,111,119,72,105,103,104,108,105,103,104,116,44,109,111,117,115,101,111,117,116,58,101,46,104,105,100,101,72,105,103,104,108,105,103,104,116,125,125,44,91,110,40,92,34,112,97,116,104,92,34,44,123,97,116,116,114,115,58,123,102,105,108,108,58,92,34,35,51,51,51,92,34,44,100,58,92,34,77,49,50,44,49,56,46,49,55,76,56,46,56,51,44,49,53,76,55,46,52,50,44,49,54,46,52,49,76,49,50,44,50,49,76,49,54,46,53,57,44,49,54,46,52,49,76,49,53,46,49,55,44,49,53,77,49,50,44,53,46,56,51,76,49,53,46,49,55,44,57,76,49,54,46,53,56,44,55,46,53,57,76,49,50,44,51,76,55,46,52,49,44,55,46,53,57,76,56,46,56,51,44,57,76,49,50,44,53,46,56,51,90,92,34,125,125,41,93,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,92,34,115,104,111,119,92,34,44,114,97,119,78,97,109,101,58,92,34,118,45,115,104,111,119,92,34,44,118,97,108,117,101,58,101,46,104,105,103,104,108,105,103,104,116,44,101,120,112,114,101,115,115,105,111,110,58,92,34,104,105,103,104,108,105,103,104,116,92,34,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,99,104,114,111,109,101,45,116,111,103,103,108,101,45,105,99,111,110,45,104,105,103,104,108,105,103,104,116,92,34,125,41,93,41,93,41,93,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,116,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,99,124,124,110,40,49,52,52,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,92,34,95,95,101,115,77,111,100,117,108,101,92,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,57,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,92,34,100,101,102,97,117,108,116,92,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,101,41,123,110,46,100,40,116,44,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,101,93,125,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,52,54,41,44,99,61,33,49,44,108,61,110,40,50,41,44,117,61,114,44,102,61,108,40,111,46,97,44,115,46,97,44,33,49,44,117,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,119,105,116,116,101,114,46,118,117,101,92,34,44,116,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,40,49,52,53,41,59,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,101,46,105,44,114,44,92,34,92,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,101,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,59,110,40,49,41,40,92,34,54,54,57,97,52,56,97,53,92,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,116,61,101,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,116,46,112,117,115,104,40,91,101,46,105,44,92,34,92,92,110,46,118,99,45,116,119,105,116,116,101,114,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,92,92,110,32,32,98,111,114,100,101,114,58,32,48,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,48,46,50,53,41,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,49,112,120,32,52,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,50,53,41,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,32,123,92,92,110,32,32,119,105,100,116,104,58,32,48,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,48,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,115,116,121,108,101,58,32,115,111,108,105,100,59,92,92,110,32,32,98,111,114,100,101,114,45,119,105,100,116,104,58,32,48,32,57,112,120,32,49,48,112,120,32,57,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,32,35,102,102,102,32,116,114,97,110,115,112,97,114,101,110,116,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,45,115,104,97,100,111,119,32,123,92,92,110,32,32,119,105,100,116,104,58,32,48,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,48,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,115,116,121,108,101,58,32,115,111,108,105,100,59,92,92,110,32,32,98,111,114,100,101,114,45,119,105,100,116,104,58,32,48,32,57,112,120,32,49,48,112,120,32,57,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,49,41,32,116,114,97,110,115,112,97,114,101,110,116,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,45,98,111,100,121,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,49,53,112,120,32,57,112,120,32,57,112,120,32,49,53,112,120,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,32,46,118,99,45,101,100,105,116,97,98,108,101,45,105,110,112,117,116,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,32,46,118,99,45,101,100,105,116,97,98,108,101,45,105,110,112,117,116,32,105,110,112,117,116,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,48,48,112,120,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,52,112,120,59,92,92,110,32,32,99,111,108,111,114,58,32,35,54,54,54,59,92,92,110,32,32,98,111,114,100,101,114,58,32,48,112,120,59,92,92,110,32,32,111,117,116,108,105,110,101,58,32,110,111,110,101,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,56,112,120,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,35,70,48,70,48,70,48,59,92,92,110,32,32,98,111,120,45,115,105,122,105,110,103,58,32,99,111,110,116,101,110,116,45,98,111,120,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,32,52,112,120,32,52,112,120,32,48,59,92,92,110,32,32,102,108,111,97,116,58,32,108,101,102,116,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,49,112,120,59,92,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,56,112,120,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,32,46,118,99,45,101,100,105,116,97,98,108,101,45,105,110,112,117,116,32,115,112,97,110,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,45,104,97,115,104,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,70,48,70,48,70,48,59,92,92,110,32,32,104,101,105,103,104,116,58,32,51,48,112,120,59,92,92,110,32,32,119,105,100,116,104,58,32,51,48,112,120,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,32,48,32,48,32,52,112,120,59,92,92,110,32,32,102,108,111,97,116,58,32,108,101,102,116,59,92,92,110,32,32,99,111,108,111,114,58,32,35,57,56,65,49,65,52,59,92,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,92,110,32,32,97,108,105,103,110,45,105,116,101,109,115,58,32,99,101,110,116,101,114,59,92,92,110,32,32,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,32,99,101,110,116,101,114,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,45,115,119,97,116,99,104,32,123,92,92,110,32,32,119,105,100,116,104,58,32,51,48,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,51,48,112,120,59,92,92,110,32,32,102,108,111,97,116,58,32,108,101,102,116,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,92,92,110,32,32,109,97,114,103,105,110,58,32,48,32,54,112,120,32,54,112,120,32,48,59,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,32,32,111,117,116,108,105,110,101,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,45,99,108,101,97,114,32,123,92,92,110,32,32,99,108,101,97,114,58,32,98,111,116,104,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,45,104,105,100,101,45,116,114,105,97,110,103,108,101,32,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,45,104,105,100,101,45,116,114,105,97,110,103,108,101,32,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,45,115,104,97,100,111,119,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,45,116,111,112,45,108,101,102,116,45,116,114,105,97,110,103,108,101,32,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,123,92,92,110,32,32,116,111,112,58,32,45,49,48,112,120,59,92,92,110,32,32,108,101,102,116,58,32,49,50,112,120,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,45,116,111,112,45,108,101,102,116,45,116,114,105,97,110,103,108,101,32,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,45,115,104,97,100,111,119,123,92,92,110,32,32,116,111,112,58,32,45,49,49,112,120,59,92,92,110,32,32,108,101,102,116,58,32,49,50,112,120,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,45,116,111,112,45,114,105,103,104,116,45,116,114,105,97,110,103,108,101,32,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,123,92,92,110,32,32,116,111,112,58,32,45,49,48,112,120,59,92,92,110,32,32,114,105,103,104,116,58,32,49,50,112,120,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,45,116,111,112,45,114,105,103,104,116,45,116,114,105,97,110,103,108,101,32,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,45,115,104,97,100,111,119,123,92,92,110,32,32,116,111,112,58,32,45,49,49,112,120,59,92,92,110,32,32,114,105,103,104,116,58,32,49,50,112,120,59,92,92,110,125,92,92,110,92,34,44,92,34,92,34,93,41,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,92,34,117,115,101,32,115,116,114,105,99,116,92,34,59,118,97,114,32,114,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,116,119,105,116,116,101,114,92,34,44,99,108,97,115,115,58,123,92,34,118,99,45,116,119,105,116,116,101,114,45,104,105,100,101,45,116,114,105,97,110,103,108,101,32,92,34,58,92,34,104,105,100,101,92,34,61,61,61,101,46,116,114,105,97,110,103,108,101,44,92,34,118,99,45,116,119,105,116,116,101,114,45,116,111,112,45,108,101,102,116,45,116,114,105,97,110,103,108,101,32,92,34,58,92,34,116,111,112,45,108,101,102,116,92,34,61,61,61,101,46,116,114,105,97,110,103,108,101,44,92,34,118,99,45,116,119,105,116,116,101,114,45,116,111,112,45,114,105,103,104,116,45,116,114,105,97,110,103,108,101,32,92,34,58,92,34,116,111,112,45,114,105,103,104,116,92,34,61,61,61,101,46,116,114,105,97,110,103,108,101,125,44,115,116,121,108,101,58,123,119,105,100,116,104,58,92,34,110,117,109,98,101,114,92,34,61,61,116,121,112,101,111,102,32,101,46,119,105,100,116,104,63,101,46,119,105,100,116,104,43,92,34,112,120,92,34,58,101,46,119,105,100,116,104,125,125,44,91,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,45,115,104,97,100,111,119,92,34,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,92,34,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,116,119,105,116,116,101,114,45,98,111,100,121,92,34,125,44,91,101,46,95,108,40,101,46,100,101,102,97,117,108,116,67,111,108,111,114,115,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,110,40,92,34,115,112,97,110,92,34,44,123,107,101,121,58,114,44,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,116,119,105,116,116,101,114,45,115,119,97,116,99,104,92,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,116,44,98,111,120,83,104,97,100,111,119,58,92,34,48,32,48,32,52,112,120,32,92,34,43,40,101,46,101,113,117,97,108,40,116,41,63,116,58,92,34,116,114,97,110,115,112,97,114,101,110,116,92,34,41,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,46,104,97,110,100,108,101,114,67,108,105,99,107,40,116,41,125,125,125,41,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,116,119,105,116,116,101,114,45,104,97,115,104,92,34,125,44,91,101,46,95,118,40,92,34,35,92,34,41,93,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,101,100,105,116,97,98,108,101,45,105,110,112,117,116,92,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,92,34,35,92,34,44,118,97,108,117,101,58,101,46,104,101,120,125,44,111,110,58,123,99,104,97,110,103,101,58,101,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,101,46,95,118,40,92,34,32,92,34,41,44,110,40,92,34,100,105,118,92,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,92,34,118,99,45,116,119,105,116,116,101,114,45,99,108,101,97,114,92,34,125,41,93,44,50,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,116,46,97,61,111,125,93,41,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,99,111,108,111,114,47,100,105,115,116,47,118,117,101,45,99,111,108,111,114,46,109,105,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,101,114,103,101,68,97,116,97,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,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,44,114,61,49,44,115,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,114,60,115,59,114,43,43,41,102,111,114,40,118,97,114,32,97,32,105,110,32,116,61,97,114,103,117,109,101,110,116,115,91,114,93,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,116,44,97,41,38,38,40,101,91,97,93,61,116,91,97,93,41,59,114,101,116,117,114,110,32,101,125,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,44,116,61,123,107,101,98,97,98,58,47,45,40,92,92,119,41,47,103,44,115,116,121,108,101,80,114,111,112,58,47,58,40,46,42,41,47,44,115,116,121,108,101,76,105,115,116,58,47,59,40,63,33,91,94,40,93,42,92,92,41,41,47,103,125,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,114,101,116,117,114,110,32,116,63,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,58,92,34,92,34,125,102,117,110,99,116,105,111,110,32,115,40,101,41,123,102,111,114,40,118,97,114,32,115,44,97,61,123,125,44,99,61,48,44,111,61,101,46,115,112,108,105,116,40,116,46,115,116,121,108,101,76,105,115,116,41,59,99,60,111,46,108,101,110,103,116,104,59,99,43,43,41,123,118,97,114,32,110,61,111,91,99,93,46,115,112,108,105,116,40,116,46,115,116,121,108,101,80,114,111,112,41,44,105,61,110,91,48,93,44,108,61,110,91,49,93,59,40,105,61,105,46,116,114,105,109,40,41,41,38,38,40,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,108,38,38,40,108,61,108,46,116,114,105,109,40,41,41,44,97,91,40,115,61,105,44,115,46,114,101,112,108,97,99,101,40,116,46,107,101,98,97,98,44,114,41,41,93,61,108,41,125,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,97,40,41,123,102,111,114,40,118,97,114,32,116,44,114,44,97,61,123,125,44,99,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,99,45,45,59,41,102,111,114,40,118,97,114,32,111,61,48,44,110,61,79,98,106,101,99,116,46,107,101,121,115,40,97,114,103,117,109,101,110,116,115,91,99,93,41,59,111,60,110,46,108,101,110,103,116,104,59,111,43,43,41,115,119,105,116,99,104,40,116,61,110,91,111,93,41,123,99,97,115,101,92,34,99,108,97,115,115,92,34,58,99,97,115,101,92,34,115,116,121,108,101,92,34,58,99,97,115,101,92,34,100,105,114,101,99,116,105,118,101,115,92,34,58,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,91,116,93,41,124,124,40,97,91,116,93,61,91,93,41,44,92,34,115,116,121,108,101,92,34,61,61,61,116,41,123,118,97,114,32,105,61,118,111,105,100,32,48,59,105,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,103,117,109,101,110,116,115,91,99,93,46,115,116,121,108,101,41,63,97,114,103,117,109,101,110,116,115,91,99,93,46,115,116,121,108,101,58,91,97,114,103,117,109,101,110,116,115,91,99,93,46,115,116,121,108,101,93,59,102,111,114,40,118,97,114,32,108,61,48,59,108,60,105,46,108,101,110,103,116,104,59,108,43,43,41,123,118,97,114,32,121,61,105,91,108,93,59,92,34,115,116,114,105,110,103,92,34,61,61,116,121,112,101,111,102,32,121,38,38,40,105,91,108,93,61,115,40,121,41,41,125,97,114,103,117,109,101,110,116,115,91,99,93,46,115,116,121,108,101,61,105,125,97,91,116,93,61,97,91,116,93,46,99,111,110,99,97,116,40,97,114,103,117,109,101,110,116,115,91,99,93,91,116,93,41,59,98,114,101,97,107,59,99,97,115,101,92,34,115,116,97,116,105,99,67,108,97,115,115,92,34,58,105,102,40,33,97,114,103,117,109,101,110,116,115,91,99,93,91,116,93,41,98,114,101,97,107,59,118,111,105,100,32,48,61,61,61,97,91,116,93,38,38,40,97,91,116,93,61,92,34,92,34,41,44,97,91,116,93,38,38,40,97,91,116,93,43,61,92,34,32,92,34,41,44,97,91,116,93,43,61,97,114,103,117,109,101,110,116,115,91,99,93,91,116,93,46,116,114,105,109,40,41,59,98,114,101,97,107,59,99,97,115,101,92,34,111,110,92,34,58,99,97,115,101,92,34,110,97,116,105,118,101,79,110,92,34,58,97,91,116,93,124,124,40,97,91,116,93,61,123,125,41,59,102,111,114,40,118,97,114,32,112,61,48,44,102,61,79,98,106,101,99,116,46,107,101,121,115,40,97,114,103,117,109,101,110,116,115,91,99,93,91,116,93,124,124,123,125,41,59,112,60,102,46,108,101,110,103,116,104,59,112,43,43,41,114,61,102,91,112,93,44,97,91,116,93,91,114,93,63,97,91,116,93,91,114,93,61,91,93,46,99,111,110,99,97,116,40,97,91,116,93,91,114,93,44,97,114,103,117,109,101,110,116,115,91,99,93,91,116,93,91,114,93,41,58,97,91,116,93,91,114,93,61,97,114,103,117,109,101,110,116,115,91,99,93,91,116,93,91,114,93,59,98,114,101,97,107,59,99,97,115,101,92,34,97,116,116,114,115,92,34,58,99,97,115,101,92,34,112,114,111,112,115,92,34,58,99,97,115,101,92,34,100,111,109,80,114,111,112,115,92,34,58,99,97,115,101,92,34,115,99,111,112,101,100,83,108,111,116,115,92,34,58,99,97,115,101,92,34,115,116,97,116,105,99,83,116,121,108,101,92,34,58,99,97,115,101,92,34,104,111,111,107,92,34,58,99,97,115,101,92,34,116,114,97,110,115,105,116,105,111,110,92,34,58,97,91,116,93,124,124,40,97,91,116,93,61,123,125,41,44,97,91,116,93,61,101,40,123,125,44,97,114,103,117,109,101,110,116,115,91,99,93,91,116,93,44,97,91,116,93,41,59,98,114,101,97,107,59,99,97,115,101,92,34,115,108,111,116,92,34,58,99,97,115,101,92,34,107,101,121,92,34,58,99,97,115,101,92,34,114,101,102,92,34,58,99,97,115,101,92,34,116,97,103,92,34,58,99,97,115,101,92,34,115,104,111,119,92,34,58,99,97,115,101,92,34,107,101,101,112,65,108,105,118,101,92,34,58,100,101,102,97,117,108,116,58,97,91,116,93,124,124,40,97,91,116,93,61,97,114,103,117,109,101,110,116,115,91,99,93,91,116,93,41,125,114,101,116,117,114,110,32,97,125,92,110,47,47,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,108,105,98,46,101,115,109,46,106,115,46,109,97,112,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,102,117,110,99,116,105,111,110,97,108,45,100,97,116,97,45,109,101,114,103,101,47,100,105,115,116,47,108,105,98,46,101,115,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,105,49,56,110,47,100,105,115,116,47,118,117,101,45,105,49,56,110,46,101,115,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,105,49,56,110,47,100,105,115,116,47,118,117,101,45,105,49,56,110,46,101,115,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,33,92,110,32,42,32,118,117,101,45,105,49,56,110,32,118,56,46,50,52,46,52,32,92,110,32,42,32,40,99,41,32,50,48,50,49,32,107,97,122,117,121,97,32,107,97,119,97,103,117,99,104,105,92,110,32,42,32,82,101,108,101,97,115,101,100,32,117,110,100,101,114,32,116,104,101,32,77,73,84,32,76,105,99,101,110,115,101,46,92,110,32,42,47,92,110,47,42,32,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,99,111,110,115,116,97,110,116,115,92,110,32,42,47,92,110,92,110,118,97,114,32,110,117,109,98,101,114,70,111,114,109,97,116,75,101,121,115,32,61,32,91,92,110,32,32,39,99,111,109,112,97,99,116,68,105,115,112,108,97,121,39,44,92,110,32,32,39,99,117,114,114,101,110,99,121,39,44,92,110,32,32,39,99,117,114,114,101,110,99,121,68,105,115,112,108,97,121,39,44,92,110,32,32,39,99,117,114,114,101,110,99,121,83,105,103,110,39,44,92,110,32,32,39,108,111,99,97,108,101,77,97,116,99,104,101,114,39,44,92,110,32,32,39,110,111,116,97,116,105,111,110,39,44,92,110,32,32,39,110,117,109,98,101,114,105,110,103,83,121,115,116,101,109,39,44,92,110,32,32,39,115,105,103,110,68,105,115,112,108,97,121,39,44,92,110,32,32,39,115,116,121,108,101,39,44,92,110,32,32,39,117,110,105,116,39,44,92,110,32,32,39,117,110,105,116,68,105,115,112,108,97,121,39,44,92,110,32,32,39,117,115,101,71,114,111,117,112,105,110,103,39,44,92,110,32,32,39,109,105,110,105,109,117,109,73,110,116,101,103,101,114,68,105,103,105,116,115,39,44,92,110,32,32,39,109,105,110,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,39,44,92,110,32,32,39,109,97,120,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,39,44,92,110,32,32,39,109,105,110,105,109,117,109,83,105,103,110,105,102,105,99,97,110,116,68,105,103,105,116,115,39,44,92,110,32,32,39,109,97,120,105,109,117,109,83,105,103,110,105,102,105,99,97,110,116,68,105,103,105,116,115,39,92,110,93,59,92,110,92,110,47,42,42,92,110,32,42,32,117,116,105,108,105,116,105,101,115,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,119,97,114,110,32,40,109,115,103,44,32,101,114,114,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,99,111,110,115,111,108,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,39,91,118,117,101,45,105,49,56,110,93,32,39,32,43,32,109,115,103,41,59,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,101,114,114,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,101,114,114,46,115,116,97,99,107,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,114,114,111,114,32,40,109,115,103,44,32,101,114,114,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,99,111,110,115,111,108,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,39,91,118,117,101,45,105,49,56,110,93,32,39,32,43,32,109,115,103,41,59,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,101,114,114,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,101,114,114,46,115,116,97,99,107,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,105,115,65,114,114,97,121,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,59,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,79,98,106,101,99,116,32,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,111,98,106,32,33,61,61,32,110,117,108,108,32,38,38,32,116,121,112,101,111,102,32,111,98,106,32,61,61,61,32,39,111,98,106,101,99,116,39,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,66,111,111,108,101,97,110,32,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,98,111,111,108,101,97,110,39,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,83,116,114,105,110,103,32,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,115,116,114,105,110,103,39,92,110,125,92,110,92,110,118,97,114,32,116,111,83,116,114,105,110,103,32,61,32,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,59,92,110,118,97,114,32,79,66,74,69,67,84,95,83,84,82,73,78,71,32,61,32,39,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,39,59,92,110,102,117,110,99,116,105,111,110,32,105,115,80,108,97,105,110,79,98,106,101,99,116,32,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,83,116,114,105,110,103,46,99,97,108,108,40,111,98,106,41,32,61,61,61,32,79,66,74,69,67,84,95,83,84,82,73,78,71,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,78,117,108,108,32,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,32,61,61,61,32,110,117,108,108,32,124,124,32,118,97,108,32,61,61,61,32,117,110,100,101,102,105,110,101,100,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,70,117,110,99,116,105,111,110,32,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,65,114,103,115,32,40,41,32,123,92,110,32,32,118,97,114,32,97,114,103,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,41,32,97,114,103,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,93,59,92,110,92,110,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,110,117,108,108,59,92,110,32,32,118,97,114,32,112,97,114,97,109,115,32,61,32,110,117,108,108,59,92,110,32,32,105,102,32,40,97,114,103,115,46,108,101,110,103,116,104,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,97,114,103,115,91,48,93,41,32,124,124,32,105,115,65,114,114,97,121,40,97,114,103,115,91,48,93,41,41,32,123,92,110,32,32,32,32,32,32,112,97,114,97,109,115,32,61,32,97,114,103,115,91,48,93,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,111,102,32,97,114,103,115,91,48,93,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,101,32,61,32,97,114,103,115,91,48,93,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,97,114,103,115,46,108,101,110,103,116,104,32,61,61,61,32,50,41,32,123,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,97,114,103,115,91,48,93,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,101,32,61,32,97,114,103,115,91,48,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,97,114,103,115,91,49,93,41,32,124,124,32,105,115,65,114,114,97,121,40,97,114,103,115,91,49,93,41,41,32,123,92,110,32,32,32,32,32,32,112,97,114,97,109,115,32,61,32,97,114,103,115,91,49,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,123,32,108,111,99,97,108,101,58,32,108,111,99,97,108,101,44,32,112,97,114,97,109,115,58,32,112,97,114,97,109,115,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,111,111,115,101,67,108,111,110,101,32,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,74,83,79,78,46,112,97,114,115,101,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,111,98,106,41,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,32,40,97,114,114,44,32,105,116,101,109,41,32,123,92,110,32,32,105,102,32,40,97,114,114,46,100,101,108,101,116,101,40,105,116,101,109,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,114,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,99,108,117,100,101,115,32,40,97,114,114,44,32,105,116,101,109,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,33,126,97,114,114,46,105,110,100,101,120,79,102,40,105,116,101,109,41,92,110,125,92,110,92,110,118,97,114,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,32,61,32,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,59,92,110,102,117,110,99,116,105,111,110,32,104,97,115,79,119,110,32,40,111,98,106,44,32,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,111,98,106,44,32,107,101,121,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,101,114,103,101,32,40,116,97,114,103,101,116,41,32,123,92,110,32,32,118,97,114,32,97,114,103,117,109,101,110,116,115,36,49,32,61,32,97,114,103,117,109,101,110,116,115,59,92,110,92,110,32,32,118,97,114,32,111,117,116,112,117,116,32,61,32,79,98,106,101,99,116,40,116,97,114,103,101,116,41,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,115,111,117,114,99,101,32,61,32,97,114,103,117,109,101,110,116,115,36,49,91,105,93,59,92,110,32,32,32,32,105,102,32,40,115,111,117,114,99,101,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,115,111,117,114,99,101,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,40,118,111,105,100,32,48,41,59,92,110,32,32,32,32,32,32,102,111,114,32,40,107,101,121,32,105,110,32,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,79,119,110,40,115,111,117,114,99,101,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,115,111,117,114,99,101,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,112,117,116,91,107,101,121,93,32,61,32,109,101,114,103,101,40,111,117,116,112,117,116,91,107,101,121,93,44,32,115,111,117,114,99,101,91,107,101,121,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,112,117,116,91,107,101,121,93,32,61,32,115,111,117,114,99,101,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,111,117,116,112,117,116,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,111,111,115,101,69,113,117,97,108,32,40,97,44,32,98,41,32,123,92,110,32,32,105,102,32,40,97,32,61,61,61,32,98,41,32,123,32,114,101,116,117,114,110,32,116,114,117,101,32,125,92,110,32,32,118,97,114,32,105,115,79,98,106,101,99,116,65,32,61,32,105,115,79,98,106,101,99,116,40,97,41,59,92,110,32,32,118,97,114,32,105,115,79,98,106,101,99,116,66,32,61,32,105,115,79,98,106,101,99,116,40,98,41,59,92,110,32,32,105,102,32,40,105,115,79,98,106,101,99,116,65,32,38,38,32,105,115,79,98,106,101,99,116,66,41,32,123,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,65,114,114,97,121,65,32,61,32,105,115,65,114,114,97,121,40,97,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,115,65,114,114,97,121,66,32,61,32,105,115,65,114,114,97,121,40,98,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,65,32,38,38,32,105,115,65,114,114,97,121,66,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,46,108,101,110,103,116,104,32,61,61,61,32,98,46,108,101,110,103,116,104,32,38,38,32,97,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,32,40,101,44,32,105,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,111,115,101,69,113,117,97,108,40,101,44,32,98,91,105,93,41,92,110,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,105,115,65,114,114,97,121,65,32,38,38,32,33,105,115,65,114,114,97,121,66,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,115,65,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,97,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,115,66,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,98,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,107,101,121,115,65,46,108,101,110,103,116,104,32,61,61,61,32,107,101,121,115,66,46,108,101,110,103,116,104,32,38,38,32,107,101,121,115,65,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,111,115,101,69,113,117,97,108,40,97,91,107,101,121,93,44,32,98,91,107,101,121,93,41,92,110,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,33,105,115,79,98,106,101,99,116,65,32,38,38,32,33,105,115,79,98,106,101,99,116,66,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,97,41,32,61,61,61,32,83,116,114,105,110,103,40,98,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,83,97,110,105,116,105,122,101,115,32,104,116,109,108,32,115,112,101,99,105,97,108,32,99,104,97,114,97,99,116,101,114,115,32,102,114,111,109,32,105,110,112,117,116,32,115,116,114,105,110,103,115,46,32,70,111,114,32,109,105,116,105,103,97,116,105,110,103,32,114,105,115,107,32,111,102,32,88,83,83,32,97,116,116,97,99,107,115,46,92,110,32,42,32,64,112,97,114,97,109,32,114,97,119,84,101,120,116,32,84,104,101,32,114,97,119,32,105,110,112,117,116,32,102,114,111,109,32,116,104,101,32,117,115,101,114,32,116,104,97,116,32,115,104,111,117,108,100,32,98,101,32,101,115,99,97,112,101,100,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,101,115,99,97,112,101,72,116,109,108,40,114,97,119,84,101,120,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,114,97,119,84,101,120,116,92,110,32,32,32,32,46,114,101,112,108,97,99,101,40,47,60,47,103,44,32,39,38,108,116,59,39,41,92,110,32,32,32,32,46,114,101,112,108,97,99,101,40,47,62,47,103,44,32,39,38,103,116,59,39,41,92,110,32,32,32,32,46,114,101,112,108,97,99,101,40,47,92,34,47,103,44,32,39,38,113,117,111,116,59,39,41,92,110,32,32,32,32,46,114,101,112,108,97,99,101,40,47,39,47,103,44,32,39,38,97,112,111,115,59,39,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,69,115,99,97,112,101,115,32,104,116,109,108,32,116,97,103,115,32,97,110,100,32,115,112,101,99,105,97,108,32,115,121,109,98,111,108,115,32,102,114,111,109,32,97,108,108,32,112,114,111,118,105,100,101,100,32,112,97,114,97,109,115,32,119,104,105,99,104,32,119,101,114,101,32,114,101,116,117,114,110,101,100,32,102,114,111,109,32,112,97,114,115,101,65,114,103,115,40,41,46,112,97,114,97,109,115,46,92,110,32,42,32,84,104,105,115,32,109,101,116,104,111,100,32,112,101,114,102,111,114,109,115,32,97,110,32,105,110,45,112,108,97,99,101,32,111,112,101,114,97,116,105,111,110,32,111,110,32,116,104,101,32,112,97,114,97,109,115,32,111,98,106,101,99,116,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,97,110,121,125,32,112,97,114,97,109,115,32,80,97,114,97,109,101,116,101,114,115,32,97,115,32,112,114,111,118,105,100,101,100,32,102,114,111,109,32,96,112,97,114,115,101,65,114,103,115,40,41,46,112,97,114,97,109,115,96,46,92,110,32,42,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,77,97,121,32,98,101,32,101,105,116,104,101,114,32,97,110,32,97,114,114,97,121,32,111,102,32,115,116,114,105,110,103,115,32,111,114,32,97,32,115,116,114,105,110,103,45,62,97,110,121,32,109,97,112,46,92,110,32,42,92,110,32,42,32,64,114,101,116,117,114,110,115,32,84,104,101,32,109,97,110,105,112,117,108,97,116,101,100,32,96,112,97,114,97,109,115,96,32,111,98,106,101,99,116,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,101,115,99,97,112,101,80,97,114,97,109,115,40,112,97,114,97,109,115,41,32,123,92,110,32,32,105,102,40,112,97,114,97,109,115,32,33,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,112,97,114,97,109,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,105,102,40,116,121,112,101,111,102,40,112,97,114,97,109,115,91,107,101,121,93,41,32,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,32,32,32,32,112,97,114,97,109,115,91,107,101,121,93,32,61,32,101,115,99,97,112,101,72,116,109,108,40,112,97,114,97,109,115,91,107,101,121,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,112,97,114,97,109,115,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,116,101,110,100,32,40,86,117,101,41,32,123,92,110,32,32,105,102,32,40,33,86,117,101,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,40,39,36,105,49,56,110,39,41,41,32,123,92,110,32,32,32,32,47,47,32,36,70,108,111,119,70,105,120,77,101,92,110,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,86,117,101,46,112,114,111,116,111,116,121,112,101,44,32,39,36,105,49,56,110,39,44,32,123,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,49,56,110,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,116,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,62,32,48,32,41,32,118,97,108,117,101,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,43,32,49,32,93,59,92,110,92,110,32,32,32,32,118,97,114,32,105,49,56,110,32,61,32,116,104,105,115,46,36,105,49,56,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,105,49,56,110,46,95,116,46,97,112,112,108,121,40,105,49,56,110,44,32,91,32,107,101,121,44,32,105,49,56,110,46,108,111,99,97,108,101,44,32,105,49,56,110,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,32,116,104,105,115,32,93,46,99,111,110,99,97,116,40,32,118,97,108,117,101,115,32,41,41,92,110,32,32,125,59,92,110,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,116,99,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,44,32,99,104,111,105,99,101,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,45,32,50,59,92,110,32,32,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,62,32,48,32,41,32,118,97,108,117,101,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,43,32,50,32,93,59,92,110,92,110,32,32,32,32,118,97,114,32,105,49,56,110,32,61,32,116,104,105,115,46,36,105,49,56,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,105,49,56,110,46,95,116,99,46,97,112,112,108,121,40,105,49,56,110,44,32,91,32,107,101,121,44,32,105,49,56,110,46,108,111,99,97,108,101,44,32,105,49,56,110,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,32,116,104,105,115,44,32,99,104,111,105,99,101,32,93,46,99,111,110,99,97,116,40,32,118,97,108,117,101,115,32,41,41,92,110,32,32,125,59,92,110,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,116,101,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,44,32,108,111,99,97,108,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,49,56,110,32,61,32,116,104,105,115,46,36,105,49,56,110,59,92,110,32,32,32,32,114,101,116,117,114,110,32,105,49,56,110,46,95,116,101,40,107,101,121,44,32,105,49,56,110,46,108,111,99,97,108,101,44,32,105,49,56,110,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,32,108,111,99,97,108,101,41,92,110,32,32,125,59,92,110,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,100,32,61,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,102,59,92,110,92,110,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,62,32,48,32,41,32,97,114,103,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,43,32,49,32,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,114,101,102,32,61,32,116,104,105,115,46,36,105,49,56,110,41,46,100,46,97,112,112,108,121,40,114,101,102,44,32,91,32,118,97,108,117,101,32,93,46,99,111,110,99,97,116,40,32,97,114,103,115,32,41,41,92,110,32,32,125,59,92,110,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,110,32,61,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,102,59,92,110,92,110,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,62,32,48,32,41,32,97,114,103,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,43,32,49,32,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,114,101,102,32,61,32,116,104,105,115,46,36,105,49,56,110,41,46,110,46,97,112,112,108,121,40,114,101,102,44,32,91,32,118,97,108,117,101,32,93,46,99,111,110,99,97,116,40,32,97,114,103,115,32,41,41,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,109,105,120,105,110,32,61,32,123,92,110,32,32,98,101,102,111,114,101,67,114,101,97,116,101,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,67,114,101,97,116,101,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,116,104,105,115,46,36,111,112,116,105,111,110,115,59,92,110,32,32,32,32,111,112,116,105,111,110,115,46,105,49,56,110,32,61,32,111,112,116,105,111,110,115,46,105,49,56,110,32,124,124,32,40,111,112,116,105,111,110,115,46,95,95,105,49,56,110,32,63,32,123,125,32,58,32,110,117,108,108,41,59,92,110,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,105,49,56,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,105,49,56,110,32,105,110,115,116,97,110,99,101,111,102,32,86,117,101,73,49,56,110,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,105,110,105,116,32,108,111,99,97,108,101,32,109,101,115,115,97,103,101,115,32,118,105,97,32,99,117,115,116,111,109,32,98,108,111,99,107,115,92,110,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,95,95,105,49,56,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,111,99,97,108,101,77,101,115,115,97,103,101,115,32,61,32,111,112,116,105,111,110,115,46,105,49,56,110,32,38,38,32,111,112,116,105,111,110,115,46,105,49,56,110,46,109,101,115,115,97,103,101,115,32,63,32,111,112,116,105,111,110,115,46,105,49,56,110,46,109,101,115,115,97,103,101,115,32,58,32,123,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,95,95,105,49,56,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,101,77,101,115,115,97,103,101,115,32,61,32,109,101,114,103,101,40,108,111,99,97,108,101,77,101,115,115,97,103,101,115,44,32,74,83,79,78,46,112,97,114,115,101,40,114,101,115,111,117,114,99,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,108,111,99,97,108,101,77,101,115,115,97,103,101,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,108,111,99,97,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,105,49,56,110,46,109,101,114,103,101,76,111,99,97,108,101,77,101,115,115,97,103,101,40,108,111,99,97,108,101,44,32,108,111,99,97,108,101,77,101,115,115,97,103,101,115,91,108,111,99,97,108,101,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,114,114,111,114,40,92,34,67,97,110,110,111,116,32,112,97,114,115,101,32,108,111,99,97,108,101,32,109,101,115,115,97,103,101,115,32,118,105,97,32,99,117,115,116,111,109,32,98,108,111,99,107,115,46,92,34,44,32,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,105,49,56,110,32,61,32,111,112,116,105,111,110,115,46,105,49,56,110,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,105,49,56,110,87,97,116,99,104,101,114,32,61,32,116,104,105,115,46,95,105,49,56,110,46,119,97,116,99,104,73,49,56,110,68,97,116,97,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,80,108,97,105,110,79,98,106,101,99,116,40,111,112,116,105,111,110,115,46,105,49,56,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,111,111,116,73,49,56,110,32,61,32,116,104,105,115,46,36,114,111,111,116,32,38,38,32,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,32,38,38,32,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,32,105,110,115,116,97,110,99,101,111,102,32,86,117,101,73,49,56,110,92,110,32,32,32,32,32,32,32,32,32,32,63,32,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,92,110,32,32,32,32,32,32,32,32,32,32,58,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,47,47,32,99,111,109,112,111,110,101,110,116,32,108,111,99,97,108,32,105,49,56,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,111,111,116,73,49,56,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,105,49,56,110,46,114,111,111,116,32,61,32,116,104,105,115,46,36,114,111,111,116,59,92,110,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,105,49,56,110,46,102,111,114,109,97,116,116,101,114,32,61,32,114,111,111,116,73,49,56,110,46,102,111,114,109,97,116,116,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,105,49,56,110,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,32,61,32,114,111,111,116,73,49,56,110,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,59,92,110,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,105,49,56,110,46,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,32,61,32,114,111,111,116,73,49,56,110,46,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,105,49,56,110,46,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,32,61,32,114,111,111,116,73,49,56,110,46,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,105,49,56,110,46,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,32,61,32,114,111,111,116,73,49,56,110,46,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,105,49,56,110,46,112,108,117,114,97,108,105,122,97,116,105,111,110,82,117,108,101,115,32,61,32,114,111,111,116,73,49,56,110,46,112,108,117,114,97,108,105,122,97,116,105,111,110,82,117,108,101,115,59,92,110,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,105,49,56,110,46,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,32,61,32,114,111,111,116,73,49,56,110,46,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,105,110,105,116,32,108,111,99,97,108,101,32,109,101,115,115,97,103,101,115,32,118,105,97,32,99,117,115,116,111,109,32,98,108,111,99,107,115,92,110,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,95,95,105,49,56,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,111,99,97,108,101,77,101,115,115,97,103,101,115,36,49,32,61,32,111,112,116,105,111,110,115,46,105,49,56,110,32,38,38,32,111,112,116,105,111,110,115,46,105,49,56,110,46,109,101,115,115,97,103,101,115,32,63,32,111,112,116,105,111,110,115,46,105,49,56,110,46,109,101,115,115,97,103,101,115,32,58,32,123,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,95,95,105,49,56,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,101,77,101,115,115,97,103,101,115,36,49,32,61,32,109,101,114,103,101,40,108,111,99,97,108,101,77,101,115,115,97,103,101,115,36,49,44,32,74,83,79,78,46,112,97,114,115,101,40,114,101,115,111,117,114,99,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,105,49,56,110,46,109,101,115,115,97,103,101,115,32,61,32,108,111,99,97,108,101,77,101,115,115,97,103,101,115,36,49,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,92,34,67,97,110,110,111,116,32,112,97,114,115,101,32,108,111,99,97,108,101,32,109,101,115,115,97,103,101,115,32,118,105,97,32,99,117,115,116,111,109,32,98,108,111,99,107,115,46,92,34,44,32,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,102,32,61,32,111,112,116,105,111,110,115,46,105,49,56,110,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,104,97,114,101,100,77,101,115,115,97,103,101,115,32,61,32,114,101,102,46,115,104,97,114,101,100,77,101,115,115,97,103,101,115,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,104,97,114,101,100,77,101,115,115,97,103,101,115,32,38,38,32,105,115,80,108,97,105,110,79,98,106,101,99,116,40,115,104,97,114,101,100,77,101,115,115,97,103,101,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,105,49,56,110,46,109,101,115,115,97,103,101,115,32,61,32,109,101,114,103,101,40,111,112,116,105,111,110,115,46,105,49,56,110,46,109,101,115,115,97,103,101,115,44,32,115,104,97,114,101,100,77,101,115,115,97,103,101,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,105,49,56,110,32,61,32,110,101,119,32,86,117,101,73,49,56,110,40,111,112,116,105,111,110,115,46,105,49,56,110,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,105,49,56,110,87,97,116,99,104,101,114,32,61,32,116,104,105,115,46,95,105,49,56,110,46,119,97,116,99,104,73,49,56,110,68,97,116,97,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,105,49,56,110,46,115,121,110,99,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,32,33,33,111,112,116,105,111,110,115,46,105,49,56,110,46,115,121,110,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,108,111,99,97,108,101,87,97,116,99,104,101,114,32,61,32,116,104,105,115,46,36,105,49,56,110,46,119,97,116,99,104,76,111,99,97,108,101,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,111,111,116,73,49,56,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,111,111,116,73,49,56,110,46,111,110,67,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,67,114,101,97,116,101,100,40,116,104,105,115,46,95,105,49,56,110,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,92,34,67,97,110,110,111,116,32,98,101,32,105,110,116,101,114,112,114,101,116,101,100,32,39,105,49,56,110,39,32,111,112,116,105,111,110,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,36,114,111,111,116,32,38,38,32,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,32,38,38,32,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,32,105,110,115,116,97,110,99,101,111,102,32,86,117,101,73,49,56,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,114,111,111,116,32,105,49,56,110,92,110,32,32,32,32,32,32,116,104,105,115,46,95,105,49,56,110,32,61,32,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,111,112,116,105,111,110,115,46,112,97,114,101,110,116,32,38,38,32,111,112,116,105,111,110,115,46,112,97,114,101,110,116,46,36,105,49,56,110,32,38,38,32,111,112,116,105,111,110,115,46,112,97,114,101,110,116,46,36,105,49,56,110,32,105,110,115,116,97,110,99,101,111,102,32,86,117,101,73,49,56,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,112,97,114,101,110,116,32,105,49,56,110,92,110,32,32,32,32,32,32,116,104,105,115,46,95,105,49,56,110,32,61,32,111,112,116,105,111,110,115,46,112,97,114,101,110,116,46,36,105,49,56,110,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,92,110,32,32,98,101,102,111,114,101,77,111,117,110,116,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,77,111,117,110,116,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,116,104,105,115,46,36,111,112,116,105,111,110,115,59,92,110,32,32,32,32,111,112,116,105,111,110,115,46,105,49,56,110,32,61,32,111,112,116,105,111,110,115,46,105,49,56,110,32,124,124,32,40,111,112,116,105,111,110,115,46,95,95,105,49,56,110,32,63,32,123,125,32,58,32,110,117,108,108,41,59,92,110,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,105,49,56,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,105,49,56,110,32,105,110,115,116,97,110,99,101,111,102,32,86,117,101,73,49,56,110,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,105,110,105,116,32,108,111,99,97,108,101,32,109,101,115,115,97,103,101,115,32,118,105,97,32,99,117,115,116,111,109,32,98,108,111,99,107,115,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,105,49,56,110,46,115,117,98,115,99,114,105,98,101,68,97,116,97,67,104,97,110,103,105,110,103,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,115,117,98,115,99,114,105,98,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,80,108,97,105,110,79,98,106,101,99,116,40,111,112,116,105,111,110,115,46,105,49,56,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,105,49,56,110,46,115,117,98,115,99,114,105,98,101,68,97,116,97,67,104,97,110,103,105,110,103,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,115,117,98,115,99,114,105,98,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,92,34,67,97,110,110,111,116,32,98,101,32,105,110,116,101,114,112,114,101,116,101,100,32,39,105,49,56,110,39,32,111,112,116,105,111,110,46,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,36,114,111,111,116,32,38,38,32,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,32,38,38,32,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,32,105,110,115,116,97,110,99,101,111,102,32,86,117,101,73,49,56,110,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,105,49,56,110,46,115,117,98,115,99,114,105,98,101,68,97,116,97,67,104,97,110,103,105,110,103,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,115,117,98,115,99,114,105,98,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,111,112,116,105,111,110,115,46,112,97,114,101,110,116,32,38,38,32,111,112,116,105,111,110,115,46,112,97,114,101,110,116,46,36,105,49,56,110,32,38,38,32,111,112,116,105,111,110,115,46,112,97,114,101,110,116,46,36,105,49,56,110,32,105,110,115,116,97,110,99,101,111,102,32,86,117,101,73,49,56,110,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,105,49,56,110,46,115,117,98,115,99,114,105,98,101,68,97,116,97,67,104,97,110,103,105,110,103,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,95,115,117,98,115,99,114,105,98,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,32,33,61,61,32,116,104,105,115,46,36,114,111,111,116,32,38,38,32,116,104,105,115,46,36,111,112,116,105,111,110,115,46,95,95,73,78,84,76,73,70,89,95,77,69,84,65,95,95,32,38,38,32,116,104,105,115,46,36,101,108,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,100,97,116,97,45,105,110,116,108,105,102,121,39,44,32,116,104,105,115,46,36,111,112,116,105,111,110,115,46,95,95,73,78,84,76,73,70,89,95,77,69,84,65,95,95,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,68,101,115,116,114,111,121,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,105,49,56,110,41,32,123,32,114,101,116,117,114,110,32,125,92,110,92,110,32,32,32,32,118,97,114,32,115,101,108,102,32,61,32,116,104,105,115,59,92,110,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,101,108,102,46,95,115,117,98,115,99,114,105,98,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,115,101,108,102,46,95,105,49,56,110,46,117,110,115,117,98,115,99,114,105,98,101,68,97,116,97,67,104,97,110,103,105,110,103,40,115,101,108,102,41,59,92,110,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,115,101,108,102,46,95,115,117,98,115,99,114,105,98,105,110,103,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,101,108,102,46,95,105,49,56,110,87,97,116,99,104,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,115,101,108,102,46,95,105,49,56,110,87,97,116,99,104,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,115,101,108,102,46,95,105,49,56,110,46,100,101,115,116,114,111,121,86,77,40,41,59,92,110,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,115,101,108,102,46,95,105,49,56,110,87,97,116,99,104,101,114,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,101,108,102,46,95,108,111,99,97,108,101,87,97,116,99,104,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,115,101,108,102,46,95,108,111,99,97,108,101,87,97,116,99,104,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,115,101,108,102,46,95,108,111,99,97,108,101,87,97,116,99,104,101,114,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,105,110,116,101,114,112,111,108,97,116,105,111,110,67,111,109,112,111,110,101,110,116,32,61,32,123,92,110,32,32,110,97,109,101,58,32,39,105,49,56,110,39,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,116,97,103,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,91,83,116,114,105,110,103,44,32,66,111,111,108,101,97,110,44,32,79,98,106,101,99,116,93,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,39,115,112,97,110,39,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,97,116,104,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,114,101,113,117,105,114,101,100,58,32,116,114,117,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,111,99,97,108,101,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,108,97,99,101,115,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,91,65,114,114,97,121,44,32,79,98,106,101,99,116,93,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,32,40,104,44,32,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,114,101,102,46,100,97,116,97,59,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,114,101,102,46,112,97,114,101,110,116,59,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,114,101,102,46,112,114,111,112,115,59,92,110,32,32,32,32,118,97,114,32,115,108,111,116,115,32,61,32,114,101,102,46,115,108,111,116,115,59,92,110,92,110,32,32,32,32,118,97,114,32,36,105,49,56,110,32,61,32,112,97,114,101,110,116,46,36,105,49,56,110,59,92,110,32,32,32,32,105,102,32,40,33,36,105,49,56,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,39,67,97,110,110,111,116,32,102,105,110,100,32,86,117,101,73,49,56,110,32,105,110,115,116,97,110,99,101,33,39,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,112,97,116,104,32,61,32,112,114,111,112,115,46,112,97,116,104,59,92,110,32,32,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,112,114,111,112,115,46,108,111,99,97,108,101,59,92,110,32,32,32,32,118,97,114,32,112,108,97,99,101,115,32,61,32,112,114,111,112,115,46,112,108,97,99,101,115,59,92,110,32,32,32,32,118,97,114,32,112,97,114,97,109,115,32,61,32,115,108,111,116,115,40,41,59,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,36,105,49,56,110,46,105,40,92,110,32,32,32,32,32,32,112,97,116,104,44,92,110,32,32,32,32,32,32,108,111,99,97,108,101,44,92,110,32,32,32,32,32,32,111,110,108,121,72,97,115,68,101,102,97,117,108,116,80,108,97,99,101,40,112,97,114,97,109,115,41,32,124,124,32,112,108,97,99,101,115,92,110,32,32,32,32,32,32,32,32,63,32,117,115,101,76,101,103,97,99,121,80,108,97,99,101,115,40,112,97,114,97,109,115,46,100,101,102,97,117,108,116,44,32,112,108,97,99,101,115,41,92,110,32,32,32,32,32,32,32,32,58,32,112,97,114,97,109,115,92,110,32,32,32,32,41,59,92,110,92,110,32,32,32,32,118,97,114,32,116,97,103,32,61,32,40,33,33,112,114,111,112,115,46,116,97,103,32,38,38,32,112,114,111,112,115,46,116,97,103,32,33,61,61,32,116,114,117,101,41,32,124,124,32,112,114,111,112,115,46,116,97,103,32,61,61,61,32,102,97,108,115,101,32,63,32,112,114,111,112,115,46,116,97,103,32,58,32,39,115,112,97,110,39,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,97,103,32,63,32,104,40,116,97,103,44,32,100,97,116,97,44,32,99,104,105,108,100,114,101,110,41,32,58,32,99,104,105,108,100,114,101,110,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,111,110,108,121,72,97,115,68,101,102,97,117,108,116,80,108,97,99,101,32,40,112,97,114,97,109,115,41,32,123,92,110,32,32,118,97,114,32,112,114,111,112,59,92,110,32,32,102,111,114,32,40,112,114,111,112,32,105,110,32,112,97,114,97,109,115,41,32,123,92,110,32,32,32,32,105,102,32,40,112,114,111,112,32,33,61,61,32,39,100,101,102,97,117,108,116,39,41,32,123,32,114,101,116,117,114,110,32,102,97,108,115,101,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,112,114,111,112,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,117,115,101,76,101,103,97,99,121,80,108,97,99,101,115,32,40,99,104,105,108,100,114,101,110,44,32,112,108,97,99,101,115,41,32,123,92,110,32,32,118,97,114,32,112,97,114,97,109,115,32,61,32,112,108,97,99,101,115,32,63,32,99,114,101,97,116,101,80,97,114,97,109,115,70,114,111,109,80,108,97,99,101,115,40,112,108,97,99,101,115,41,32,58,32,123,125,59,92,110,92,110,32,32,105,102,32,40,33,99,104,105,108,100,114,101,110,41,32,123,32,114,101,116,117,114,110,32,112,97,114,97,109,115,32,125,92,110,92,110,32,32,47,47,32,70,105,108,116,101,114,32,101,109,112,116,121,32,116,101,120,116,32,110,111,100,101,115,92,110,32,32,99,104,105,108,100,114,101,110,32,61,32,99,104,105,108,100,114,101,110,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,99,104,105,108,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,104,105,108,100,46,116,97,103,32,124,124,32,99,104,105,108,100,46,116,101,120,116,46,116,114,105,109,40,41,32,33,61,61,32,39,39,92,110,32,32,125,41,59,92,110,92,110,32,32,118,97,114,32,101,118,101,114,121,80,108,97,99,101,32,61,32,99,104,105,108,100,114,101,110,46,101,118,101,114,121,40,118,110,111,100,101,72,97,115,80,108,97,99,101,65,116,116,114,105,98,117,116,101,41,59,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,101,118,101,114,121,80,108,97,99,101,41,32,123,92,110,32,32,32,32,119,97,114,110,40,39,96,112,108,97,99,101,96,32,97,116,116,114,105,98,117,116,101,32,105,115,32,100,101,112,114,101,99,97,116,101,100,32,105,110,32,110,101,120,116,32,109,97,106,111,114,32,118,101,114,115,105,111,110,46,32,80,108,101,97,115,101,32,115,119,105,116,99,104,32,116,111,32,86,117,101,32,115,108,111,116,115,46,39,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,99,104,105,108,100,114,101,110,46,114,101,100,117,99,101,40,92,110,32,32,32,32,101,118,101,114,121,80,108,97,99,101,32,63,32,97,115,115,105,103,110,67,104,105,108,100,80,108,97,99,101,32,58,32,97,115,115,105,103,110,67,104,105,108,100,73,110,100,101,120,44,92,110,32,32,32,32,112,97,114,97,109,115,92,110,32,32,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,80,97,114,97,109,115,70,114,111,109,80,108,97,99,101,115,32,40,112,108,97,99,101,115,41,32,123,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,119,97,114,110,40,39,96,112,108,97,99,101,115,96,32,112,114,111,112,32,105,115,32,100,101,112,114,101,99,97,116,101,100,32,105,110,32,110,101,120,116,32,109,97,106,111,114,32,118,101,114,115,105,111,110,46,32,80,108,101,97,115,101,32,115,119,105,116,99,104,32,116,111,32,86,117,101,32,115,108,111,116,115,46,39,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,112,108,97,99,101,115,41,92,110,32,32,32,32,63,32,112,108,97,99,101,115,46,114,101,100,117,99,101,40,97,115,115,105,103,110,67,104,105,108,100,73,110,100,101,120,44,32,123,125,41,92,110,32,32,32,32,58,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,32,112,108,97,99,101,115,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,115,115,105,103,110,67,104,105,108,100,80,108,97,99,101,32,40,112,97,114,97,109,115,44,32,99,104,105,108,100,41,32,123,92,110,32,32,105,102,32,40,99,104,105,108,100,46,100,97,116,97,32,38,38,32,99,104,105,108,100,46,100,97,116,97,46,97,116,116,114,115,32,38,38,32,99,104,105,108,100,46,100,97,116,97,46,97,116,116,114,115,46,112,108,97,99,101,41,32,123,92,110,32,32,32,32,112,97,114,97,109,115,91,99,104,105,108,100,46,100,97,116,97,46,97,116,116,114,115,46,112,108,97,99,101,93,32,61,32,99,104,105,108,100,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,112,97,114,97,109,115,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,115,115,105,103,110,67,104,105,108,100,73,110,100,101,120,32,40,112,97,114,97,109,115,44,32,99,104,105,108,100,44,32,105,110,100,101,120,41,32,123,92,110,32,32,112,97,114,97,109,115,91,105,110,100,101,120,93,32,61,32,99,104,105,108,100,59,92,110,32,32,114,101,116,117,114,110,32,112,97,114,97,109,115,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,118,110,111,100,101,72,97,115,80,108,97,99,101,65,116,116,114,105,98,117,116,101,32,40,118,110,111,100,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,118,110,111,100,101,46,100,97,116,97,32,38,38,32,118,110,111,100,101,46,100,97,116,97,46,97,116,116,114,115,32,38,38,32,118,110,111,100,101,46,100,97,116,97,46,97,116,116,114,115,46,112,108,97,99,101,41,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,110,117,109,98,101,114,67,111,109,112,111,110,101,110,116,32,61,32,123,92,110,32,32,110,97,109,101,58,32,39,105,49,56,110,45,110,39,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,116,97,103,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,91,83,116,114,105,110,103,44,32,66,111,111,108,101,97,110,44,32,79,98,106,101,99,116,93,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,39,115,112,97,110,39,92,110,32,32,32,32,125,44,92,110,32,32,32,32,118,97,108,117,101,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,78,117,109,98,101,114,44,92,110,32,32,32,32,32,32,114,101,113,117,105,114,101,100,58,32,116,114,117,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,114,109,97,116,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,91,83,116,114,105,110,103,44,32,79,98,106,101,99,116,93,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,111,99,97,108,101,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,32,40,104,44,32,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,114,101,102,46,112,114,111,112,115,59,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,114,101,102,46,112,97,114,101,110,116,59,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,114,101,102,46,100,97,116,97,59,92,110,92,110,32,32,32,32,118,97,114,32,105,49,56,110,32,61,32,112,97,114,101,110,116,46,36,105,49,56,110,59,92,110,92,110,32,32,32,32,105,102,32,40,33,105,49,56,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,39,67,97,110,110,111,116,32,102,105,110,100,32,86,117,101,73,49,56,110,32,105,110,115,116,97,110,99,101,33,39,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,107,101,121,32,61,32,110,117,108,108,59,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,83,116,114,105,110,103,40,112,114,111,112,115,46,102,111,114,109,97,116,41,41,32,123,92,110,32,32,32,32,32,32,107,101,121,32,61,32,112,114,111,112,115,46,102,111,114,109,97,116,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,79,98,106,101,99,116,40,112,114,111,112,115,46,102,111,114,109,97,116,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,46,102,111,114,109,97,116,46,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,32,61,32,112,114,111,112,115,46,102,111,114,109,97,116,46,107,101,121,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,70,105,108,116,101,114,32,111,117,116,32,110,117,109,98,101,114,32,102,111,114,109,97,116,32,111,112,116,105,111,110,115,32,111,110,108,121,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,112,114,111,112,115,46,102,111,114,109,97,116,41,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,97,99,99,44,32,112,114,111,112,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,98,106,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,99,108,117,100,101,115,40,110,117,109,98,101,114,70,111,114,109,97,116,75,101,121,115,44,32,112,114,111,112,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,32,97,99,99,44,32,40,32,111,98,106,32,61,32,123,125,44,32,111,98,106,91,112,114,111,112,93,32,61,32,112,114,111,112,115,46,102,111,114,109,97,116,91,112,114,111,112,93,44,32,111,98,106,32,41,41,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,99,99,92,110,32,32,32,32,32,32,125,44,32,110,117,108,108,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,112,114,111,112,115,46,108,111,99,97,108,101,32,124,124,32,105,49,56,110,46,108,111,99,97,108,101,59,92,110,32,32,32,32,118,97,114,32,112,97,114,116,115,32,61,32,105,49,56,110,46,95,110,116,112,40,112,114,111,112,115,46,118,97,108,117,101,44,32,108,111,99,97,108,101,44,32,107,101,121,44,32,111,112,116,105,111,110,115,41,59,92,110,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,112,97,114,116,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,112,97,114,116,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,98,106,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,115,108,111,116,32,61,32,100,97,116,97,46,115,99,111,112,101,100,83,108,111,116,115,32,38,38,32,100,97,116,97,46,115,99,111,112,101,100,83,108,111,116,115,91,112,97,114,116,46,116,121,112,101,93,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,108,111,116,32,63,32,115,108,111,116,40,40,32,111,98,106,32,61,32,123,125,44,32,111,98,106,91,112,97,114,116,46,116,121,112,101,93,32,61,32,112,97,114,116,46,118,97,108,117,101,44,32,111,98,106,46,105,110,100,101,120,32,61,32,105,110,100,101,120,44,32,111,98,106,46,112,97,114,116,115,32,61,32,112,97,114,116,115,44,32,111,98,106,32,41,41,32,58,32,112,97,114,116,46,118,97,108,117,101,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,118,97,114,32,116,97,103,32,61,32,40,33,33,112,114,111,112,115,46,116,97,103,32,38,38,32,112,114,111,112,115,46,116,97,103,32,33,61,61,32,116,114,117,101,41,32,124,124,32,112,114,111,112,115,46,116,97,103,32,61,61,61,32,102,97,108,115,101,32,63,32,112,114,111,112,115,46,116,97,103,32,58,32,39,115,112,97,110,39,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,97,103,92,110,32,32,32,32,32,32,63,32,104,40,116,97,103,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,100,97,116,97,46,97,116,116,114,115,44,92,110,32,32,32,32,32,32,32,32,39,99,108,97,115,115,39,58,32,100,97,116,97,91,39,99,108,97,115,115,39,93,44,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,100,97,116,97,46,115,116,97,116,105,99,67,108,97,115,115,92,110,32,32,32,32,32,32,125,44,32,118,97,108,117,101,115,41,92,110,32,32,32,32,32,32,58,32,118,97,108,117,101,115,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,98,105,110,100,32,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,41,32,123,92,110,32,32,105,102,32,40,33,97,115,115,101,114,116,40,101,108,44,32,118,110,111,100,101,41,41,32,123,32,114,101,116,117,114,110,32,125,92,110,92,110,32,32,116,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,32,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,44,32,111,108,100,86,78,111,100,101,41,32,123,92,110,32,32,105,102,32,40,33,97,115,115,101,114,116,40,101,108,44,32,118,110,111,100,101,41,41,32,123,32,114,101,116,117,114,110,32,125,92,110,92,110,32,32,118,97,114,32,105,49,56,110,32,61,32,118,110,111,100,101,46,99,111,110,116,101,120,116,46,36,105,49,56,110,59,92,110,32,32,105,102,32,40,108,111,99,97,108,101,69,113,117,97,108,40,101,108,44,32,118,110,111,100,101,41,32,38,38,92,110,32,32,32,32,40,108,111,111,115,101,69,113,117,97,108,40,98,105,110,100,105,110,103,46,118,97,108,117,101,44,32,98,105,110,100,105,110,103,46,111,108,100,86,97,108,117,101,41,32,38,38,92,110,32,32,32,32,32,108,111,111,115,101,69,113,117,97,108,40,101,108,46,95,108,111,99,97,108,101,77,101,115,115,97,103,101,44,32,105,49,56,110,46,103,101,116,76,111,99,97,108,101,77,101,115,115,97,103,101,40,105,49,56,110,46,108,111,99,97,108,101,41,41,41,41,32,123,32,114,101,116,117,114,110,32,125,92,110,92,110,32,32,116,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,117,110,98,105,110,100,32,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,44,32,111,108,100,86,78,111,100,101,41,32,123,92,110,32,32,118,97,114,32,118,109,32,61,32,118,110,111,100,101,46,99,111,110,116,101,120,116,59,92,110,32,32,105,102,32,40,33,118,109,41,32,123,92,110,32,32,32,32,119,97,114,110,40,39,86,117,101,32,105,110,115,116,97,110,99,101,32,100,111,101,115,32,110,111,116,32,101,120,105,115,116,115,32,105,110,32,86,78,111,100,101,32,99,111,110,116,101,120,116,39,41,59,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,105,49,56,110,32,61,32,118,110,111,100,101,46,99,111,110,116,101,120,116,46,36,105,49,56,110,32,124,124,32,123,125,59,92,110,32,32,105,102,32,40,33,98,105,110,100,105,110,103,46,109,111,100,105,102,105,101,114,115,46,112,114,101,115,101,114,118,101,32,38,38,32,33,105,49,56,110,46,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,41,32,123,92,110,32,32,32,32,101,108,46,116,101,120,116,67,111,110,116,101,110,116,32,61,32,39,39,59,92,110,32,32,125,92,110,32,32,101,108,46,95,118,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,100,101,108,101,116,101,32,101,108,91,39,95,118,116,39,93,59,92,110,32,32,101,108,46,95,108,111,99,97,108,101,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,100,101,108,101,116,101,32,101,108,91,39,95,108,111,99,97,108,101,39,93,59,92,110,32,32,101,108,46,95,108,111,99,97,108,101,77,101,115,115,97,103,101,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,100,101,108,101,116,101,32,101,108,91,39,95,108,111,99,97,108,101,77,101,115,115,97,103,101,39,93,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,115,115,101,114,116,32,40,101,108,44,32,118,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,118,109,32,61,32,118,110,111,100,101,46,99,111,110,116,101,120,116,59,92,110,32,32,105,102,32,40,33,118,109,41,32,123,92,110,32,32,32,32,119,97,114,110,40,39,86,117,101,32,105,110,115,116,97,110,99,101,32,100,111,101,115,32,110,111,116,32,101,120,105,115,116,115,32,105,110,32,86,78,111,100,101,32,99,111,110,116,101,120,116,39,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,118,109,46,36,105,49,56,110,41,32,123,92,110,32,32,32,32,119,97,114,110,40,39,86,117,101,73,49,56,110,32,105,110,115,116,97,110,99,101,32,100,111,101,115,32,110,111,116,32,101,120,105,115,116,115,32,105,110,32,86,117,101,32,105,110,115,116,97,110,99,101,39,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,111,99,97,108,101,69,113,117,97,108,32,40,101,108,44,32,118,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,118,109,32,61,32,118,110,111,100,101,46,99,111,110,116,101,120,116,59,92,110,32,32,114,101,116,117,114,110,32,101,108,46,95,108,111,99,97,108,101,32,61,61,61,32,118,109,46,36,105,49,56,110,46,108,111,99,97,108,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,32,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,114,101,102,36,49,44,32,114,101,102,36,50,59,92,110,92,110,32,32,118,97,114,32,118,97,108,117,101,32,61,32,98,105,110,100,105,110,103,46,118,97,108,117,101,59,92,110,92,110,32,32,118,97,114,32,114,101,102,32,61,32,112,97,114,115,101,86,97,108,117,101,40,118,97,108,117,101,41,59,92,110,32,32,118,97,114,32,112,97,116,104,32,61,32,114,101,102,46,112,97,116,104,59,92,110,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,114,101,102,46,108,111,99,97,108,101,59,92,110,32,32,118,97,114,32,97,114,103,115,32,61,32,114,101,102,46,97,114,103,115,59,92,110,32,32,118,97,114,32,99,104,111,105,99,101,32,61,32,114,101,102,46,99,104,111,105,99,101,59,92,110,32,32,105,102,32,40,33,112,97,116,104,32,38,38,32,33,108,111,99,97,108,101,32,38,38,32,33,97,114,103,115,41,32,123,92,110,32,32,32,32,119,97,114,110,40,39,118,97,108,117,101,32,116,121,112,101,32,110,111,116,32,115,117,112,112,111,114,116,101,100,39,41,59,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,112,97,116,104,41,32,123,92,110,32,32,32,32,119,97,114,110,40,39,96,112,97,116,104,96,32,105,115,32,114,101,113,117,105,114,101,100,32,105,110,32,118,45,116,32,100,105,114,101,99,116,105,118,101,39,41,59,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,118,109,32,61,32,118,110,111,100,101,46,99,111,110,116,101,120,116,59,92,110,32,32,105,102,32,40,99,104,111,105,99,101,32,33,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,101,108,46,95,118,116,32,61,32,101,108,46,116,101,120,116,67,111,110,116,101,110,116,32,61,32,40,114,101,102,36,49,32,61,32,118,109,46,36,105,49,56,110,41,46,116,99,46,97,112,112,108,121,40,114,101,102,36,49,44,32,91,32,112,97,116,104,44,32,99,104,111,105,99,101,32,93,46,99,111,110,99,97,116,40,32,109,97,107,101,80,97,114,97,109,115,40,108,111,99,97,108,101,44,32,97,114,103,115,41,32,41,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,101,108,46,95,118,116,32,61,32,101,108,46,116,101,120,116,67,111,110,116,101,110,116,32,61,32,40,114,101,102,36,50,32,61,32,118,109,46,36,105,49,56,110,41,46,116,46,97,112,112,108,121,40,114,101,102,36,50,44,32,91,32,112,97,116,104,32,93,46,99,111,110,99,97,116,40,32,109,97,107,101,80,97,114,97,109,115,40,108,111,99,97,108,101,44,32,97,114,103,115,41,32,41,41,59,92,110,32,32,125,92,110,32,32,101,108,46,95,108,111,99,97,108,101,32,61,32,118,109,46,36,105,49,56,110,46,108,111,99,97,108,101,59,92,110,32,32,101,108,46,95,108,111,99,97,108,101,77,101,115,115,97,103,101,32,61,32,118,109,46,36,105,49,56,110,46,103,101,116,76,111,99,97,108,101,77,101,115,115,97,103,101,40,118,109,46,36,105,49,56,110,46,108,111,99,97,108,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,86,97,108,117,101,32,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,112,97,116,104,59,92,110,32,32,118,97,114,32,108,111,99,97,108,101,59,92,110,32,32,118,97,114,32,97,114,103,115,59,92,110,32,32,118,97,114,32,99,104,111,105,99,101,59,92,110,92,110,32,32,105,102,32,40,105,115,83,116,114,105,110,103,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,112,97,116,104,32,61,32,118,97,108,117,101,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,112,97,116,104,32,61,32,118,97,108,117,101,46,112,97,116,104,59,92,110,32,32,32,32,108,111,99,97,108,101,32,61,32,118,97,108,117,101,46,108,111,99,97,108,101,59,92,110,32,32,32,32,97,114,103,115,32,61,32,118,97,108,117,101,46,97,114,103,115,59,92,110,32,32,32,32,99,104,111,105,99,101,32,61,32,118,97,108,117,101,46,99,104,111,105,99,101,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,123,32,112,97,116,104,58,32,112,97,116,104,44,32,108,111,99,97,108,101,58,32,108,111,99,97,108,101,44,32,97,114,103,115,58,32,97,114,103,115,44,32,99,104,111,105,99,101,58,32,99,104,111,105,99,101,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,97,107,101,80,97,114,97,109,115,32,40,108,111,99,97,108,101,44,32,97,114,103,115,41,32,123,92,110,32,32,118,97,114,32,112,97,114,97,109,115,32,61,32,91,93,59,92,110,92,110,32,32,108,111,99,97,108,101,32,38,38,32,112,97,114,97,109,115,46,112,117,115,104,40,108,111,99,97,108,101,41,59,92,110,32,32,105,102,32,40,97,114,103,115,32,38,38,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,103,115,41,32,124,124,32,105,115,80,108,97,105,110,79,98,106,101,99,116,40,97,114,103,115,41,41,41,32,123,92,110,32,32,32,32,112,97,114,97,109,115,46,112,117,115,104,40,97,114,103,115,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,112,97,114,97,109,115,92,110,125,92,110,92,110,118,97,114,32,86,117,101,59,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,115,116,97,108,108,32,40,95,86,117,101,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,105,110,115,116,97,108,108,46,105,110,115,116,97,108,108,101,100,32,38,38,32,95,86,117,101,32,61,61,61,32,86,117,101,41,32,123,92,110,32,32,32,32,119,97,114,110,40,39,97,108,114,101,97,100,121,32,105,110,115,116,97,108,108,101,100,46,39,41,59,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,105,110,115,116,97,108,108,46,105,110,115,116,97,108,108,101,100,32,61,32,116,114,117,101,59,92,110,92,110,32,32,86,117,101,32,61,32,95,86,117,101,59,92,110,92,110,32,32,118,97,114,32,118,101,114,115,105,111,110,32,61,32,40,86,117,101,46,118,101,114,115,105,111,110,32,38,38,32,78,117,109,98,101,114,40,86,117,101,46,118,101,114,115,105,111,110,46,115,112,108,105,116,40,39,46,39,41,91,48,93,41,41,32,124,124,32,45,49,59,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,118,101,114,115,105,111,110,32,60,32,50,41,32,123,92,110,32,32,32,32,119,97,114,110,40,40,92,34,118,117,101,45,105,49,56,110,32,40,92,34,32,43,32,40,105,110,115,116,97,108,108,46,118,101,114,115,105,111,110,41,32,43,32,92,34,41,32,110,101,101,100,32,116,111,32,117,115,101,32,86,117,101,32,50,46,48,32,111,114,32,108,97,116,101,114,32,40,86,117,101,58,32,92,34,32,43,32,40,86,117,101,46,118,101,114,115,105,111,110,41,32,43,32,92,34,41,46,92,34,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,101,120,116,101,110,100,40,86,117,101,41,59,92,110,32,32,86,117,101,46,109,105,120,105,110,40,109,105,120,105,110,41,59,92,110,32,32,86,117,101,46,100,105,114,101,99,116,105,118,101,40,39,116,39,44,32,123,32,98,105,110,100,58,32,98,105,110,100,44,32,117,112,100,97,116,101,58,32,117,112,100,97,116,101,44,32,117,110,98,105,110,100,58,32,117,110,98,105,110,100,32,125,41,59,92,110,32,32,86,117,101,46,99,111,109,112,111,110,101,110,116,40,105,110,116,101,114,112,111,108,97,116,105,111,110,67,111,109,112,111,110,101,110,116,46,110,97,109,101,44,32,105,110,116,101,114,112,111,108,97,116,105,111,110,67,111,109,112,111,110,101,110,116,41,59,92,110,32,32,86,117,101,46,99,111,109,112,111,110,101,110,116,40,110,117,109,98,101,114,67,111,109,112,111,110,101,110,116,46,110,97,109,101,44,32,110,117,109,98,101,114,67,111,109,112,111,110,101,110,116,41,59,92,110,92,110,32,32,47,47,32,117,115,101,32,115,105,109,112,108,101,32,109,101,114,103,101,83,116,114,97,116,101,103,105,101,115,32,116,111,32,112,114,101,118,101,110,116,32,105,49,56,110,32,105,110,115,116,97,110,99,101,32,108,111,115,101,32,39,95,95,112,114,111,116,111,95,95,39,92,110,32,32,118,97,114,32,115,116,114,97,116,115,32,61,32,86,117,101,46,99,111,110,102,105,103,46,111,112,116,105,111,110,77,101,114,103,101,83,116,114,97,116,101,103,105,101,115,59,92,110,32,32,115,116,114,97,116,115,46,105,49,56,110,32,61,32,102,117,110,99,116,105,111,110,32,40,112,97,114,101,110,116,86,97,108,44,32,99,104,105,108,100,86,97,108,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,104,105,108,100,86,97,108,32,61,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,63,32,112,97,114,101,110,116,86,97,108,92,110,32,32,32,32,32,32,58,32,99,104,105,108,100,86,97,108,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,66,97,115,101,70,111,114,109,97,116,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,66,97,115,101,70,111,114,109,97,116,116,101,114,32,40,41,32,123,92,110,32,32,116,104,105,115,46,95,99,97,99,104,101,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,125,59,92,110,92,110,66,97,115,101,70,111,114,109,97,116,116,101,114,46,112,114,111,116,111,116,121,112,101,46,105,110,116,101,114,112,111,108,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,105,110,116,101,114,112,111,108,97,116,101,32,40,109,101,115,115,97,103,101,44,32,118,97,108,117,101,115,41,32,123,92,110,32,32,105,102,32,40,33,118,97,108,117,101,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,109,101,115,115,97,103,101,93,92,110,32,32,125,92,110,32,32,118,97,114,32,116,111,107,101,110,115,32,61,32,116,104,105,115,46,95,99,97,99,104,101,115,91,109,101,115,115,97,103,101,93,59,92,110,32,32,105,102,32,40,33,116,111,107,101,110,115,41,32,123,92,110,32,32,32,32,116,111,107,101,110,115,32,61,32,112,97,114,115,101,40,109,101,115,115,97,103,101,41,59,92,110,32,32,32,32,116,104,105,115,46,95,99,97,99,104,101,115,91,109,101,115,115,97,103,101,93,32,61,32,116,111,107,101,110,115,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,99,111,109,112,105,108,101,40,116,111,107,101,110,115,44,32,118,97,108,117,101,115,41,92,110,125,59,92,110,92,110,92,110,92,110,118,97,114,32,82,69,95,84,79,75,69,78,95,76,73,83,84,95,86,65,76,85,69,32,61,32,47,94,40,63,58,92,92,100,41,43,47,59,92,110,118,97,114,32,82,69,95,84,79,75,69,78,95,78,65,77,69,68,95,86,65,76,85,69,32,61,32,47,94,40,63,58,92,92,119,41,43,47,59,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,32,40,102,111,114,109,97,116,41,32,123,92,110,32,32,118,97,114,32,116,111,107,101,110,115,32,61,32,91,93,59,92,110,32,32,118,97,114,32,112,111,115,105,116,105,111,110,32,61,32,48,59,92,110,92,110,32,32,118,97,114,32,116,101,120,116,32,61,32,39,39,59,92,110,32,32,119,104,105,108,101,32,40,112,111,115,105,116,105,111,110,32,60,32,102,111,114,109,97,116,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,118,97,114,32,99,104,97,114,32,61,32,102,111,114,109,97,116,91,112,111,115,105,116,105,111,110,43,43,93,59,92,110,32,32,32,32,105,102,32,40,99,104,97,114,32,61,61,61,32,39,123,39,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,101,120,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,111,107,101,110,115,46,112,117,115,104,40,123,32,116,121,112,101,58,32,39,116,101,120,116,39,44,32,118,97,108,117,101,58,32,116,101,120,116,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,101,120,116,32,61,32,39,39,59,92,110,32,32,32,32,32,32,118,97,114,32,115,117,98,32,61,32,39,39,59,92,110,32,32,32,32,32,32,99,104,97,114,32,61,32,102,111,114,109,97,116,91,112,111,115,105,116,105,111,110,43,43,93,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,99,104,97,114,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,99,104,97,114,32,33,61,61,32,39,125,39,41,32,123,92,110,32,32,32,32,32,32,32,32,115,117,98,32,43,61,32,99,104,97,114,59,92,110,32,32,32,32,32,32,32,32,99,104,97,114,32,61,32,102,111,114,109,97,116,91,112,111,115,105,116,105,111,110,43,43,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,105,115,67,108,111,115,101,100,32,61,32,99,104,97,114,32,61,61,61,32,39,125,39,59,92,110,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,82,69,95,84,79,75,69,78,95,76,73,83,84,95,86,65,76,85,69,46,116,101,115,116,40,115,117,98,41,92,110,32,32,32,32,32,32,32,32,63,32,39,108,105,115,116,39,92,110,32,32,32,32,32,32,32,32,58,32,105,115,67,108,111,115,101,100,32,38,38,32,82,69,95,84,79,75,69,78,95,78,65,77,69,68,95,86,65,76,85,69,46,116,101,115,116,40,115,117,98,41,92,110,32,32,32,32,32,32,32,32,32,32,63,32,39,110,97,109,101,100,39,92,110,32,32,32,32,32,32,32,32,32,32,58,32,39,117,110,107,110,111,119,110,39,59,92,110,32,32,32,32,32,32,116,111,107,101,110,115,46,112,117,115,104,40,123,32,118,97,108,117,101,58,32,115,117,98,44,32,116,121,112,101,58,32,116,121,112,101,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,99,104,97,114,32,61,61,61,32,39,37,39,41,32,123,92,110,32,32,32,32,32,32,47,47,32,119,104,101,110,32,102,111,117,110,100,32,114,97,105,108,115,32,105,49,56,110,32,115,121,110,116,97,120,44,32,115,107,105,112,32,116,101,120,116,32,99,97,112,116,117,114,101,92,110,32,32,32,32,32,32,105,102,32,40,102,111,114,109,97,116,91,40,112,111,115,105,116,105,111,110,41,93,32,33,61,61,32,39,123,39,41,32,123,92,110,32,32,32,32,32,32,32,32,116,101,120,116,32,43,61,32,99,104,97,114,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,101,120,116,32,43,61,32,99,104,97,114,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,116,101,120,116,32,38,38,32,116,111,107,101,110,115,46,112,117,115,104,40,123,32,116,121,112,101,58,32,39,116,101,120,116,39,44,32,118,97,108,117,101,58,32,116,101,120,116,32,125,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,116,111,107,101,110,115,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,109,112,105,108,101,32,40,116,111,107,101,110,115,44,32,118,97,108,117,101,115,41,32,123,92,110,32,32,118,97,114,32,99,111,109,112,105,108,101,100,32,61,32,91,93,59,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,59,92,110,92,110,32,32,118,97,114,32,109,111,100,101,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,117,101,115,41,92,110,32,32,32,32,63,32,39,108,105,115,116,39,92,110,32,32,32,32,58,32,105,115,79,98,106,101,99,116,40,118,97,108,117,101,115,41,92,110,32,32,32,32,32,32,63,32,39,110,97,109,101,100,39,92,110,32,32,32,32,32,32,58,32,39,117,110,107,110,111,119,110,39,59,92,110,32,32,105,102,32,40,109,111,100,101,32,61,61,61,32,39,117,110,107,110,111,119,110,39,41,32,123,32,114,101,116,117,114,110,32,99,111,109,112,105,108,101,100,32,125,92,110,92,110,32,32,119,104,105,108,101,32,40,105,110,100,101,120,32,60,32,116,111,107,101,110,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,118,97,114,32,116,111,107,101,110,32,61,32,116,111,107,101,110,115,91,105,110,100,101,120,93,59,92,110,32,32,32,32,115,119,105,116,99,104,32,40,116,111,107,101,110,46,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,39,116,101,120,116,39,58,92,110,32,32,32,32,32,32,32,32,99,111,109,112,105,108,101,100,46,112,117,115,104,40,116,111,107,101,110,46,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,32,32,99,97,115,101,32,39,108,105,115,116,39,58,92,110,32,32,32,32,32,32,32,32,99,111,109,112,105,108,101,100,46,112,117,115,104,40,118,97,108,117,101,115,91,112,97,114,115,101,73,110,116,40,116,111,107,101,110,46,118,97,108,117,101,44,32,49,48,41,93,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,32,32,99,97,115,101,32,39,110,97,109,101,100,39,58,92,110,32,32,32,32,32,32,32,32,105,102,32,40,109,111,100,101,32,61,61,61,32,39,110,97,109,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,109,112,105,108,101,100,46,112,117,115,104,40,40,118,97,108,117,101,115,41,91,116,111,107,101,110,46,118,97,108,117,101,93,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,40,92,34,84,121,112,101,32,111,102,32,116,111,107,101,110,32,39,92,34,32,43,32,40,116,111,107,101,110,46,116,121,112,101,41,32,43,32,92,34,39,32,97,110,100,32,102,111,114,109,97,116,32,111,102,32,118,97,108,117,101,32,39,92,34,32,43,32,109,111,100,101,32,43,32,92,34,39,32,100,111,110,39,116,32,109,97,116,99,104,33,92,34,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,32,32,99,97,115,101,32,39,117,110,107,110,111,119,110,39,58,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,92,34,68,101,116,101,99,116,32,39,117,110,107,110,111,119,110,39,32,116,121,112,101,32,111,102,32,116,111,107,101,110,33,92,34,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,125,92,110,32,32,32,32,105,110,100,101,120,43,43,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,99,111,109,112,105,108,101,100,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,32,80,97,116,104,32,112,97,114,115,101,114,92,110,32,42,32,32,45,32,73,110,115,112,105,114,101,100,58,92,110,32,42,32,32,32,32,86,117,101,46,106,115,32,80,97,116,104,32,112,97,114,115,101,114,92,110,32,42,47,92,110,92,110,47,47,32,97,99,116,105,111,110,115,92,110,118,97,114,32,65,80,80,69,78,68,32,61,32,48,59,92,110,118,97,114,32,80,85,83,72,32,61,32,49,59,92,110,118,97,114,32,73,78,67,95,83,85,66,95,80,65,84,72,95,68,69,80,84,72,32,61,32,50,59,92,110,118,97,114,32,80,85,83,72,95,83,85,66,95,80,65,84,72,32,61,32,51,59,92,110,92,110,47,47,32,115,116,97,116,101,115,92,110,118,97,114,32,66,69,70,79,82,69,95,80,65,84,72,32,61,32,48,59,92,110,118,97,114,32,73,78,95,80,65,84,72,32,61,32,49,59,92,110,118,97,114,32,66,69,70,79,82,69,95,73,68,69,78,84,32,61,32,50,59,92,110,118,97,114,32,73,78,95,73,68,69,78,84,32,61,32,51,59,92,110,118,97,114,32,73,78,95,83,85,66,95,80,65,84,72,32,61,32,52,59,92,110,118,97,114,32,73,78,95,83,73,78,71,76,69,95,81,85,79,84,69,32,61,32,53,59,92,110,118,97,114,32,73,78,95,68,79,85,66,76,69,95,81,85,79,84,69,32,61,32,54,59,92,110,118,97,114,32,65,70,84,69,82,95,80,65,84,72,32,61,32,55,59,92,110,118,97,114,32,69,82,82,79,82,32,61,32,56,59,92,110,92,110,118,97,114,32,112,97,116,104,83,116,97,116,101,77,97,99,104,105,110,101,32,61,32,91,93,59,92,110,92,110,112,97,116,104,83,116,97,116,101,77,97,99,104,105,110,101,91,66,69,70,79,82,69,95,80,65,84,72,93,32,61,32,123,92,110,32,32,39,119,115,39,58,32,91,66,69,70,79,82,69,95,80,65,84,72,93,44,92,110,32,32,39,105,100,101,110,116,39,58,32,91,73,78,95,73,68,69,78,84,44,32,65,80,80,69,78,68,93,44,92,110,32,32,39,91,39,58,32,91,73,78,95,83,85,66,95,80,65,84,72,93,44,92,110,32,32,39,101,111,102,39,58,32,91,65,70,84,69,82,95,80,65,84,72,93,92,110,125,59,92,110,92,110,112,97,116,104,83,116,97,116,101,77,97,99,104,105,110,101,91,73,78,95,80,65,84,72,93,32,61,32,123,92,110,32,32,39,119,115,39,58,32,91,73,78,95,80,65,84,72,93,44,92,110,32,32,39,46,39,58,32,91,66,69,70,79,82,69,95,73,68,69,78,84,93,44,92,110,32,32,39,91,39,58,32,91,73,78,95,83,85,66,95,80,65,84,72,93,44,92,110,32,32,39,101,111,102,39,58,32,91,65,70,84,69,82,95,80,65,84,72,93,92,110,125,59,92,110,92,110,112,97,116,104,83,116,97,116,101,77,97,99,104,105,110,101,91,66,69,70,79,82,69,95,73,68,69,78,84,93,32,61,32,123,92,110,32,32,39,119,115,39,58,32,91,66,69,70,79,82,69,95,73,68,69,78,84,93,44,92,110,32,32,39,105,100,101,110,116,39,58,32,91,73,78,95,73,68,69,78,84,44,32,65,80,80,69,78,68,93,44,92,110,32,32,39,48,39,58,32,91,73,78,95,73,68,69,78,84,44,32,65,80,80,69,78,68,93,44,92,110,32,32,39,110,117,109,98,101,114,39,58,32,91,73,78,95,73,68,69,78,84,44,32,65,80,80,69,78,68,93,92,110,125,59,92,110,92,110,112,97,116,104,83,116,97,116,101,77,97,99,104,105,110,101,91,73,78,95,73,68,69,78,84,93,32,61,32,123,92,110,32,32,39,105,100,101,110,116,39,58,32,91,73,78,95,73,68,69,78,84,44,32,65,80,80,69,78,68,93,44,92,110,32,32,39,48,39,58,32,91,73,78,95,73,68,69,78,84,44,32,65,80,80,69,78,68,93,44,92,110,32,32,39,110,117,109,98,101,114,39,58,32,91,73,78,95,73,68,69,78,84,44,32,65,80,80,69,78,68,93,44,92,110,32,32,39,119,115,39,58,32,91,73,78,95,80,65,84,72,44,32,80,85,83,72,93,44,92,110,32,32,39,46,39,58,32,91,66,69,70,79,82,69,95,73,68,69,78,84,44,32,80,85,83,72,93,44,92,110,32,32,39,91,39,58,32,91,73,78,95,83,85,66,95,80,65,84,72,44,32,80,85,83,72,93,44,92,110,32,32,39,101,111,102,39,58,32,91,65,70,84,69,82,95,80,65,84,72,44,32,80,85,83,72,93,92,110,125,59,92,110,92,110,112,97,116,104,83,116,97,116,101,77,97,99,104,105,110,101,91,73,78,95,83,85,66,95,80,65,84,72,93,32,61,32,123,92,110,32,32,92,34,39,92,34,58,32,91,73,78,95,83,73,78,71,76,69,95,81,85,79,84,69,44,32,65,80,80,69,78,68,93,44,92,110,32,32,39,92,34,39,58,32,91,73,78,95,68,79,85,66,76,69,95,81,85,79,84,69,44,32,65,80,80,69,78,68,93,44,92,110,32,32,39,91,39,58,32,91,73,78,95,83,85,66,95,80,65,84,72,44,32,73,78,67,95,83,85,66,95,80,65,84,72,95,68,69,80,84,72,93,44,92,110,32,32,39,93,39,58,32,91,73,78,95,80,65,84,72,44,32,80,85,83,72,95,83,85,66,95,80,65,84,72,93,44,92,110,32,32,39,101,111,102,39,58,32,69,82,82,79,82,44,92,110,32,32,39,101,108,115,101,39,58,32,91,73,78,95,83,85,66,95,80,65,84,72,44,32,65,80,80,69,78,68,93,92,110,125,59,92,110,92,110,112,97,116,104,83,116,97,116,101,77,97,99,104,105,110,101,91,73,78,95,83,73,78,71,76,69,95,81,85,79,84,69,93,32,61,32,123,92,110,32,32,92,34,39,92,34,58,32,91,73,78,95,83,85,66,95,80,65,84,72,44,32,65,80,80,69,78,68,93,44,92,110,32,32,39,101,111,102,39,58,32,69,82,82,79,82,44,92,110,32,32,39,101,108,115,101,39,58,32,91,73,78,95,83,73,78,71,76,69,95,81,85,79,84,69,44,32,65,80,80,69,78,68,93,92,110,125,59,92,110,92,110,112,97,116,104,83,116,97,116,101,77,97,99,104,105,110,101,91,73,78,95,68,79,85,66,76,69,95,81,85,79,84,69,93,32,61,32,123,92,110,32,32,39,92,34,39,58,32,91,73,78,95,83,85,66,95,80,65,84,72,44,32,65,80,80,69,78,68,93,44,92,110,32,32,39,101,111,102,39,58,32,69,82,82,79,82,44,92,110,32,32,39,101,108,115,101,39,58,32,91,73,78,95,68,79,85,66,76,69,95,81,85,79,84,69,44,32,65,80,80,69,78,68,93,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,67,104,101,99,107,32,105,102,32,97,110,32,101,120,112,114,101,115,115,105,111,110,32,105,115,32,97,32,108,105,116,101,114,97,108,32,118,97,108,117,101,46,92,110,32,42,47,92,110,92,110,118,97,114,32,108,105,116,101,114,97,108,86,97,108,117,101,82,69,32,61,32,47,94,92,92,115,63,40,63,58,116,114,117,101,124,102,97,108,115,101,124,45,63,91,92,92,100,46,93,43,124,39,91,94,39,93,42,39,124,92,34,91,94,92,34,93,42,92,34,41,92,92,115,63,36,47,59,92,110,102,117,110,99,116,105,111,110,32,105,115,76,105,116,101,114,97,108,32,40,101,120,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,108,105,116,101,114,97,108,86,97,108,117,101,82,69,46,116,101,115,116,40,101,120,112,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,83,116,114,105,112,32,113,117,111,116,101,115,32,102,114,111,109,32,97,32,115,116,114,105,110,103,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,114,105,112,81,117,111,116,101,115,32,40,115,116,114,41,32,123,92,110,32,32,118,97,114,32,97,32,61,32,115,116,114,46,99,104,97,114,67,111,100,101,65,116,40,48,41,59,92,110,32,32,118,97,114,32,98,32,61,32,115,116,114,46,99,104,97,114,67,111,100,101,65,116,40,115,116,114,46,108,101,110,103,116,104,32,45,32,49,41,59,92,110,32,32,114,101,116,117,114,110,32,97,32,61,61,61,32,98,32,38,38,32,40,97,32,61,61,61,32,48,120,50,50,32,124,124,32,97,32,61,61,61,32,48,120,50,55,41,92,110,32,32,32,32,63,32,115,116,114,46,115,108,105,99,101,40,49,44,32,45,49,41,92,110,32,32,32,32,58,32,115,116,114,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,116,101,114,109,105,110,101,32,116,104,101,32,116,121,112,101,32,111,102,32,97,32,99,104,97,114,97,99,116,101,114,32,105,110,32,97,32,107,101,121,112,97,116,104,46,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,80,97,116,104,67,104,97,114,84,121,112,101,32,40,99,104,41,32,123,92,110,32,32,105,102,32,40,99,104,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,32,99,104,32,61,61,61,32,110,117,108,108,41,32,123,32,114,101,116,117,114,110,32,39,101,111,102,39,32,125,92,110,92,110,32,32,118,97,114,32,99,111,100,101,32,61,32,99,104,46,99,104,97,114,67,111,100,101,65,116,40,48,41,59,92,110,92,110,32,32,115,119,105,116,99,104,32,40,99,111,100,101,41,32,123,92,110,32,32,32,32,99,97,115,101,32,48,120,53,66,58,32,47,47,32,91,92,110,32,32,32,32,99,97,115,101,32,48,120,53,68,58,32,47,47,32,93,92,110,32,32,32,32,99,97,115,101,32,48,120,50,69,58,32,47,47,32,46,92,110,32,32,32,32,99,97,115,101,32,48,120,50,50,58,32,47,47,32,92,34,92,110,32,32,32,32,99,97,115,101,32,48,120,50,55,58,32,47,47,32,39,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,104,92,110,92,110,32,32,32,32,99,97,115,101,32,48,120,53,70,58,32,47,47,32,95,92,110,32,32,32,32,99,97,115,101,32,48,120,50,52,58,32,47,47,32,36,92,110,32,32,32,32,99,97,115,101,32,48,120,50,68,58,32,47,47,32,45,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,105,100,101,110,116,39,92,110,92,110,32,32,32,32,99,97,115,101,32,48,120,48,57,58,32,47,47,32,84,97,98,92,110,32,32,32,32,99,97,115,101,32,48,120,48,65,58,32,47,47,32,78,101,119,108,105,110,101,92,110,32,32,32,32,99,97,115,101,32,48,120,48,68,58,32,47,47,32,82,101,116,117,114,110,92,110,32,32,32,32,99,97,115,101,32,48,120,65,48,58,32,32,47,47,32,78,111,45,98,114,101,97,107,32,115,112,97,99,101,92,110,32,32,32,32,99,97,115,101,32,48,120,70,69,70,70,58,32,32,47,47,32,66,121,116,101,32,79,114,100,101,114,32,77,97,114,107,92,110,32,32,32,32,99,97,115,101,32,48,120,50,48,50,56,58,32,32,47,47,32,76,105,110,101,32,83,101,112,97,114,97,116,111,114,92,110,32,32,32,32,99,97,115,101,32,48,120,50,48,50,57,58,32,32,47,47,32,80,97,114,97,103,114,97,112,104,32,83,101,112,97,114,97,116,111,114,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,119,115,39,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,39,105,100,101,110,116,39,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,70,111,114,109,97,116,32,97,32,115,117,98,80,97,116,104,44,32,114,101,116,117,114,110,32,105,116,115,32,112,108,97,105,110,32,102,111,114,109,32,105,102,32,105,116,32,105,115,92,110,32,42,32,97,32,108,105,116,101,114,97,108,32,115,116,114,105,110,103,32,111,114,32,110,117,109,98,101,114,46,32,79,116,104,101,114,119,105,115,101,32,112,114,101,112,101,110,100,32,116,104,101,92,110,32,42,32,100,121,110,97,109,105,99,32,105,110,100,105,99,97,116,111,114,32,40,42,41,46,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,83,117,98,80,97,116,104,32,40,112,97,116,104,41,32,123,92,110,32,32,118,97,114,32,116,114,105,109,109,101,100,32,61,32,112,97,116,104,46,116,114,105,109,40,41,59,92,110,32,32,47,47,32,105,110,118,97,108,105,100,32,108,101,97,100,105,110,103,32,48,92,110,32,32,105,102,32,40,112,97,116,104,46,99,104,97,114,65,116,40,48,41,32,61,61,61,32,39,48,39,32,38,38,32,105,115,78,97,78,40,112,97,116,104,41,41,32,123,32,114,101,116,117,114,110,32,102,97,108,115,101,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,105,115,76,105,116,101,114,97,108,40,116,114,105,109,109,101,100,41,32,63,32,115,116,114,105,112,81,117,111,116,101,115,40,116,114,105,109,109,101,100,41,32,58,32,39,42,39,32,43,32,116,114,105,109,109,101,100,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,80,97,114,115,101,32,97,32,115,116,114,105,110,103,32,112,97,116,104,32,105,110,116,111,32,97,110,32,97,114,114,97,121,32,111,102,32,115,101,103,109,101,110,116,115,92,110,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,36,49,32,40,112,97,116,104,41,32,123,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,91,93,59,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,45,49,59,92,110,32,32,118,97,114,32,109,111,100,101,32,61,32,66,69,70,79,82,69,95,80,65,84,72,59,92,110,32,32,118,97,114,32,115,117,98,80,97,116,104,68,101,112,116,104,32,61,32,48,59,92,110,32,32,118,97,114,32,99,59,92,110,32,32,118,97,114,32,107,101,121,59,92,110,32,32,118,97,114,32,110,101,119,67,104,97,114,59,92,110,32,32,118,97,114,32,116,121,112,101,59,92,110,32,32,118,97,114,32,116,114,97,110,115,105,116,105,111,110,59,92,110,32,32,118,97,114,32,97,99,116,105,111,110,59,92,110,32,32,118,97,114,32,116,121,112,101,77,97,112,59,92,110,32,32,118,97,114,32,97,99,116,105,111,110,115,32,61,32,91,93,59,92,110,92,110,32,32,97,99,116,105,111,110,115,91,80,85,83,72,93,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,107,101,121,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,107,101,121,115,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,32,32,107,101,121,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,97,99,116,105,111,110,115,91,65,80,80,69,78,68,93,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,107,101,121,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,107,101,121,32,61,32,110,101,119,67,104,97,114,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,107,101,121,32,43,61,32,110,101,119,67,104,97,114,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,97,99,116,105,111,110,115,91,73,78,67,95,83,85,66,95,80,65,84,72,95,68,69,80,84,72,93,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,97,99,116,105,111,110,115,91,65,80,80,69,78,68,93,40,41,59,92,110,32,32,32,32,115,117,98,80,97,116,104,68,101,112,116,104,43,43,59,92,110,32,32,125,59,92,110,92,110,32,32,97,99,116,105,111,110,115,91,80,85,83,72,95,83,85,66,95,80,65,84,72,93,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,115,117,98,80,97,116,104,68,101,112,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,115,117,98,80,97,116,104,68,101,112,116,104,45,45,59,92,110,32,32,32,32,32,32,109,111,100,101,32,61,32,73,78,95,83,85,66,95,80,65,84,72,59,92,110,32,32,32,32,32,32,97,99,116,105,111,110,115,91,65,80,80,69,78,68,93,40,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,115,117,98,80,97,116,104,68,101,112,116,104,32,61,32,48,59,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,32,114,101,116,117,114,110,32,102,97,108,115,101,32,125,92,110,32,32,32,32,32,32,107,101,121,32,61,32,102,111,114,109,97,116,83,117,98,80,97,116,104,40,107,101,121,41,59,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,97,99,116,105,111,110,115,91,80,85,83,72,93,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,109,97,121,98,101,85,110,101,115,99,97,112,101,81,117,111,116,101,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,110,101,120,116,67,104,97,114,32,61,32,112,97,116,104,91,105,110,100,101,120,32,43,32,49,93,59,92,110,32,32,32,32,105,102,32,40,40,109,111,100,101,32,61,61,61,32,73,78,95,83,73,78,71,76,69,95,81,85,79,84,69,32,38,38,32,110,101,120,116,67,104,97,114,32,61,61,61,32,92,34,39,92,34,41,32,124,124,92,110,32,32,32,32,32,32,40,109,111,100,101,32,61,61,61,32,73,78,95,68,79,85,66,76,69,95,81,85,79,84,69,32,38,38,32,110,101,120,116,67,104,97,114,32,61,61,61,32,39,92,34,39,41,41,32,123,92,110,32,32,32,32,32,32,105,110,100,101,120,43,43,59,92,110,32,32,32,32,32,32,110,101,119,67,104,97,114,32,61,32,39,92,92,92,92,39,32,43,32,110,101,120,116,67,104,97,114,59,92,110,32,32,32,32,32,32,97,99,116,105,111,110,115,91,65,80,80,69,78,68,93,40,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,119,104,105,108,101,32,40,109,111,100,101,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,105,110,100,101,120,43,43,59,92,110,32,32,32,32,99,32,61,32,112,97,116,104,91,105,110,100,101,120,93,59,92,110,92,110,32,32,32,32,105,102,32,40,99,32,61,61,61,32,39,92,92,92,92,39,32,38,38,32,109,97,121,98,101,85,110,101,115,99,97,112,101,81,117,111,116,101,40,41,41,32,123,92,110,32,32,32,32,32,32,99,111,110,116,105,110,117,101,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,116,121,112,101,32,61,32,103,101,116,80,97,116,104,67,104,97,114,84,121,112,101,40,99,41,59,92,110,32,32,32,32,116,121,112,101,77,97,112,32,61,32,112,97,116,104,83,116,97,116,101,77,97,99,104,105,110,101,91,109,111,100,101,93,59,92,110,32,32,32,32,116,114,97,110,115,105,116,105,111,110,32,61,32,116,121,112,101,77,97,112,91,116,121,112,101,93,32,124,124,32,116,121,112,101,77,97,112,91,39,101,108,115,101,39,93,32,124,124,32,69,82,82,79,82,59,92,110,92,110,32,32,32,32,105,102,32,40,116,114,97,110,115,105,116,105,111,110,32,61,61,61,32,69,82,82,79,82,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,47,47,32,112,97,114,115,101,32,101,114,114,111,114,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,109,111,100,101,32,61,32,116,114,97,110,115,105,116,105,111,110,91,48,93,59,92,110,32,32,32,32,97,99,116,105,111,110,32,61,32,97,99,116,105,111,110,115,91,116,114,97,110,115,105,116,105,111,110,91,49,93,93,59,92,110,32,32,32,32,105,102,32,40,97,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,110,101,119,67,104,97,114,32,61,32,116,114,97,110,115,105,116,105,111,110,91,50,93,59,92,110,32,32,32,32,32,32,110,101,119,67,104,97,114,32,61,32,110,101,119,67,104,97,114,32,61,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,32,32,63,32,99,92,110,32,32,32,32,32,32,32,32,58,32,110,101,119,67,104,97,114,59,92,110,32,32,32,32,32,32,105,102,32,40,97,99,116,105,111,110,40,41,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,109,111,100,101,32,61,61,61,32,65,70,84,69,82,95,80,65,84,72,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,107,101,121,115,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,92,110,92,110,92,110,92,110,118,97,114,32,73,49,56,110,80,97,116,104,32,61,32,102,117,110,99,116,105,111,110,32,73,49,56,110,80,97,116,104,32,40,41,32,123,92,110,32,32,116,104,105,115,46,95,99,97,99,104,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,69,120,116,101,114,110,97,108,32,112,97,114,115,101,32,116,104,97,116,32,99,104,101,99,107,32,102,111,114,32,97,32,99,97,99,104,101,32,104,105,116,32,102,105,114,115,116,92,110,32,42,47,92,110,73,49,56,110,80,97,116,104,46,112,114,111,116,111,116,121,112,101,46,112,97,114,115,101,80,97,116,104,32,61,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,80,97,116,104,32,40,112,97,116,104,41,32,123,92,110,32,32,118,97,114,32,104,105,116,32,61,32,116,104,105,115,46,95,99,97,99,104,101,91,112,97,116,104,93,59,92,110,32,32,105,102,32,40,33,104,105,116,41,32,123,92,110,32,32,32,32,104,105,116,32,61,32,112,97,114,115,101,36,49,40,112,97,116,104,41,59,92,110,32,32,32,32,105,102,32,40,104,105,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,99,97,99,104,101,91,112,97,116,104,93,32,61,32,104,105,116,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,104,105,116,32,124,124,32,91,93,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,32,112,97,116,104,32,118,97,108,117,101,32,102,114,111,109,32,112,97,116,104,32,115,116,114,105,110,103,92,110,32,42,47,92,110,73,49,56,110,80,97,116,104,46,112,114,111,116,111,116,121,112,101,46,103,101,116,80,97,116,104,86,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,80,97,116,104,86,97,108,117,101,32,40,111,98,106,44,32,112,97,116,104,41,32,123,92,110,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,111,98,106,41,41,32,123,32,114,101,116,117,114,110,32,110,117,108,108,32,125,92,110,92,110,32,32,118,97,114,32,112,97,116,104,115,32,61,32,116,104,105,115,46,112,97,114,115,101,80,97,116,104,40,112,97,116,104,41,59,92,110,32,32,105,102,32,40,112,97,116,104,115,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,118,97,114,32,108,101,110,103,116,104,32,61,32,112,97,116,104,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,118,97,114,32,108,97,115,116,32,61,32,111,98,106,59,92,110,32,32,32,32,118,97,114,32,105,32,61,32,48,59,92,110,32,32,32,32,119,104,105,108,101,32,40,105,32,60,32,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,108,97,115,116,91,112,97,116,104,115,91,105,93,93,59,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,32,118,97,108,117,101,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,108,97,115,116,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,105,43,43,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,108,97,115,116,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,92,110,92,110,118,97,114,32,104,116,109,108,84,97,103,77,97,116,99,104,101,114,32,61,32,47,60,92,92,47,63,91,92,92,119,92,92,115,61,92,34,47,46,39,58,59,35,45,92,92,47,93,43,62,47,59,92,110,118,97,114,32,108,105,110,107,75,101,121,77,97,116,99,104,101,114,32,61,32,47,40,63,58,64,40,63,58,92,92,46,91,97,45,122,93,43,41,63,58,40,63,58,91,92,92,119,92,92,45,95,124,46,93,43,124,92,92,40,91,92,92,119,92,92,45,95,124,46,93,43,92,92,41,41,41,47,103,59,92,110,118,97,114,32,108,105,110,107,75,101,121,80,114,101,102,105,120,77,97,116,99,104,101,114,32,61,32,47,94,64,40,63,58,92,92,46,40,91,97,45,122,93,43,41,41,63,58,47,59,92,110,118,97,114,32,98,114,97,99,107,101,116,115,77,97,116,99,104,101,114,32,61,32,47,91,40,41,93,47,103,59,92,110,118,97,114,32,100,101,102,97,117,108,116,77,111,100,105,102,105,101,114,115,32,61,32,123,92,110,32,32,39,117,112,112,101,114,39,58,32,102,117,110,99,116,105,111,110,32,40,115,116,114,41,32,123,32,114,101,116,117,114,110,32,115,116,114,46,116,111,76,111,99,97,108,101,85,112,112,101,114,67,97,115,101,40,41,59,32,125,44,92,110,32,32,39,108,111,119,101,114,39,58,32,102,117,110,99,116,105,111,110,32,40,115,116,114,41,32,123,32,114,101,116,117,114,110,32,115,116,114,46,116,111,76,111,99,97,108,101,76,111,119,101,114,67,97,115,101,40,41,59,32,125,44,92,110,32,32,39,99,97,112,105,116,97,108,105,122,101,39,58,32,102,117,110,99,116,105,111,110,32,40,115,116,114,41,32,123,32,114,101,116,117,114,110,32,40,92,34,92,34,32,43,32,40,115,116,114,46,99,104,97,114,65,116,40,48,41,46,116,111,76,111,99,97,108,101,85,112,112,101,114,67,97,115,101,40,41,41,32,43,32,40,115,116,114,46,115,117,98,115,116,114,40,49,41,41,41,59,32,125,92,110,125,59,92,110,92,110,118,97,114,32,100,101,102,97,117,108,116,70,111,114,109,97,116,116,101,114,32,61,32,110,101,119,32,66,97,115,101,70,111,114,109,97,116,116,101,114,40,41,59,92,110,92,110,118,97,114,32,86,117,101,73,49,56,110,32,61,32,102,117,110,99,116,105,111,110,32,86,117,101,73,49,56,110,32,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,32,32,105,102,32,40,32,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,32,41,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,92,110,32,32,47,47,32,65,117,116,111,32,105,110,115,116,97,108,108,32,105,102,32,105,116,32,105,115,32,110,111,116,32,100,111,110,101,32,121,101,116,32,97,110,100,32,96,119,105,110,100,111,119,96,32,104,97,115,32,96,86,117,101,96,46,92,110,32,32,47,47,32,84,111,32,97,108,108,111,119,32,117,115,101,114,115,32,116,111,32,97,118,111,105,100,32,97,117,116,111,45,105,110,115,116,97,108,108,97,116,105,111,110,32,105,110,32,115,111,109,101,32,99,97,115,101,115,44,92,110,32,32,47,47,32,116,104,105,115,32,99,111,100,101,32,115,104,111,117,108,100,32,98,101,32,112,108,97,99,101,100,32,104,101,114,101,46,32,83,101,101,32,35,50,57,48,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,33,86,117,101,32,38,38,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,119,105,110,100,111,119,46,86,117,101,41,32,123,92,110,32,32,32,32,105,110,115,116,97,108,108,40,119,105,110,100,111,119,46,86,117,101,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,111,112,116,105,111,110,115,46,108,111,99,97,108,101,32,124,124,32,39,101,110,45,85,83,39,59,92,110,32,32,118,97,114,32,102,97,108,108,98,97,99,107,76,111,99,97,108,101,32,61,32,111,112,116,105,111,110,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,32,61,61,61,32,102,97,108,115,101,92,110,32,32,32,32,63,32,102,97,108,115,101,92,110,32,32,32,32,58,32,111,112,116,105,111,110,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,32,124,124,32,39,101,110,45,85,83,39,59,92,110,32,32,118,97,114,32,109,101,115,115,97,103,101,115,32,61,32,111,112,116,105,111,110,115,46,109,101,115,115,97,103,101,115,32,124,124,32,123,125,59,92,110,32,32,118,97,114,32,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,32,61,32,111,112,116,105,111,110,115,46,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,32,124,124,32,123,125,59,92,110,32,32,118,97,114,32,110,117,109,98,101,114,70,111,114,109,97,116,115,32,61,32,111,112,116,105,111,110,115,46,110,117,109,98,101,114,70,111,114,109,97,116,115,32,124,124,32,123,125,59,92,110,92,110,32,32,116,104,105,115,46,95,118,109,32,61,32,110,117,108,108,59,92,110,32,32,116,104,105,115,46,95,102,111,114,109,97,116,116,101,114,32,61,32,111,112,116,105,111,110,115,46,102,111,114,109,97,116,116,101,114,32,124,124,32,100,101,102,97,117,108,116,70,111,114,109,97,116,116,101,114,59,92,110,32,32,116,104,105,115,46,95,109,111,100,105,102,105,101,114,115,32,61,32,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,32,124,124,32,123,125,59,92,110,32,32,116,104,105,115,46,95,109,105,115,115,105,110,103,32,61,32,111,112,116,105,111,110,115,46,109,105,115,115,105,110,103,32,124,124,32,110,117,108,108,59,92,110,32,32,116,104,105,115,46,95,114,111,111,116,32,61,32,111,112,116,105,111,110,115,46,114,111,111,116,32,124,124,32,110,117,108,108,59,92,110,32,32,116,104,105,115,46,95,115,121,110,99,32,61,32,111,112,116,105,111,110,115,46,115,121,110,99,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,116,114,117,101,32,58,32,33,33,111,112,116,105,111,110,115,46,115,121,110,99,59,92,110,32,32,116,104,105,115,46,95,102,97,108,108,98,97,99,107,82,111,111,116,32,61,32,111,112,116,105,111,110,115,46,102,97,108,108,98,97,99,107,82,111,111,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,63,32,116,114,117,101,92,110,32,32,32,32,58,32,33,33,111,112,116,105,111,110,115,46,102,97,108,108,98,97,99,107,82,111,111,116,59,92,110,32,32,116,104,105,115,46,95,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,32,61,32,111,112,116,105,111,110,115,46,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,32,61,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,63,32,102,97,108,115,101,92,110,32,32,32,32,58,32,33,33,111,112,116,105,111,110,115,46,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,59,92,110,32,32,116,104,105,115,46,95,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,32,61,32,111,112,116,105,111,110,115,46,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,63,32,102,97,108,115,101,92,110,32,32,32,32,58,32,111,112,116,105,111,110,115,46,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,59,92,110,32,32,116,104,105,115,46,95,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,32,61,32,111,112,116,105,111,110,115,46,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,32,61,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,63,32,102,97,108,115,101,92,110,32,32,32,32,58,32,33,33,111,112,116,105,111,110,115,46,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,59,92,110,32,32,116,104,105,115,46,95,100,97,116,101,84,105,109,101,70,111,114,109,97,116,116,101,114,115,32,61,32,123,125,59,92,110,32,32,116,104,105,115,46,95,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,115,32,61,32,123,125,59,92,110,32,32,116,104,105,115,46,95,112,97,116,104,32,61,32,110,101,119,32,73,49,56,110,80,97,116,104,40,41,59,92,110,32,32,116,104,105,115,46,95,100,97,116,97,76,105,115,116,101,110,101,114,115,32,61,32,110,101,119,32,83,101,116,40,41,59,92,110,32,32,116,104,105,115,46,95,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,67,114,101,97,116,101,100,76,105,115,116,101,110,101,114,32,61,32,111,112,116,105,111,110,115,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,67,114,101,97,116,101,100,76,105,115,116,101,110,101,114,32,124,124,32,110,117,108,108,59,92,110,32,32,116,104,105,115,46,95,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,32,61,32,111,112,116,105,111,110,115,46,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,32,61,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,63,32,102,97,108,115,101,92,110,32,32,32,32,58,32,33,33,111,112,116,105,111,110,115,46,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,59,92,110,32,32,116,104,105,115,46,112,108,117,114,97,108,105,122,97,116,105,111,110,82,117,108,101,115,32,61,32,111,112,116,105,111,110,115,46,112,108,117,114,97,108,105,122,97,116,105,111,110,82,117,108,101,115,32,124,124,32,123,125,59,92,110,32,32,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,32,61,32,111,112,116,105,111,110,115,46,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,32,124,124,32,39,111,102,102,39,59,92,110,32,32,116,104,105,115,46,95,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,32,61,32,111,112,116,105,111,110,115,46,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,32,124,124,32,110,117,108,108,59,92,110,32,32,116,104,105,115,46,95,101,115,99,97,112,101,80,97,114,97,109,101,116,101,114,72,116,109,108,32,61,32,111,112,116,105,111,110,115,46,101,115,99,97,112,101,80,97,114,97,109,101,116,101,114,72,116,109,108,32,124,124,32,102,97,108,115,101,59,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,64,112,97,114,97,109,32,99,104,111,105,99,101,32,123,110,117,109,98,101,114,125,32,97,32,99,104,111,105,99,101,32,105,110,100,101,120,32,103,105,118,101,110,32,98,121,32,116,104,101,32,105,110,112,117,116,32,116,111,32,36,116,99,58,32,96,36,116,99,40,39,112,97,116,104,46,116,111,46,114,117,108,101,39,44,32,99,104,111,105,99,101,73,110,100,101,120,41,96,92,110,32,32,32,42,32,64,112,97,114,97,109,32,99,104,111,105,99,101,115,76,101,110,103,116,104,32,123,110,117,109,98,101,114,125,32,97,110,32,111,118,101,114,97,108,108,32,97,109,111,117,110,116,32,111,102,32,97,118,97,105,108,97,98,108,101,32,99,104,111,105,99,101,115,92,110,32,32,32,42,32,64,114,101,116,117,114,110,115,32,97,32,102,105,110,97,108,32,99,104,111,105,99,101,32,105,110,100,101,120,92,110,32,32,42,47,92,110,32,32,116,104,105,115,46,103,101,116,67,104,111,105,99,101,73,110,100,101,120,32,61,32,102,117,110,99,116,105,111,110,32,40,99,104,111,105,99,101,44,32,99,104,111,105,99,101,115,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,80,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,36,49,41,59,92,110,32,32,32,32,105,102,32,40,116,104,105,115,80,114,111,116,111,116,121,112,101,32,38,38,32,116,104,105,115,80,114,111,116,111,116,121,112,101,46,103,101,116,67,104,111,105,99,101,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,114,111,116,111,116,121,112,101,71,101,116,67,104,111,105,99,101,73,110,100,101,120,32,61,32,40,116,104,105,115,80,114,111,116,111,116,121,112,101,46,103,101,116,67,104,111,105,99,101,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,112,114,111,116,111,116,121,112,101,71,101,116,67,104,111,105,99,101,73,110,100,101,120,41,46,99,97,108,108,40,116,104,105,115,36,49,44,32,99,104,111,105,99,101,44,32,99,104,111,105,99,101,115,76,101,110,103,116,104,41,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,40,111,108,100,41,32,103,101,116,67,104,111,105,99,101,73,110,100,101,120,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,45,32,101,110,103,108,105,115,104,45,99,111,109,112,97,116,105,98,108,101,92,110,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,73,109,112,108,32,61,32,102,117,110,99,116,105,111,110,32,40,95,99,104,111,105,99,101,44,32,95,99,104,111,105,99,101,115,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,95,99,104,111,105,99,101,32,61,32,77,97,116,104,46,97,98,115,40,95,99,104,111,105,99,101,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,95,99,104,111,105,99,101,115,76,101,110,103,116,104,32,61,61,61,32,50,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,104,111,105,99,101,92,110,32,32,32,32,32,32,32,32,32,32,63,32,95,99,104,111,105,99,101,32,62,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,48,92,110,32,32,32,32,32,32,32,32,32,32,58,32,49,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,104,111,105,99,101,32,63,32,77,97,116,104,46,109,105,110,40,95,99,104,111,105,99,101,44,32,50,41,32,58,32,48,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,36,49,46,108,111,99,97,108,101,32,105,110,32,116,104,105,115,36,49,46,112,108,117,114,97,108,105,122,97,116,105,111,110,82,117,108,101,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,36,49,46,112,108,117,114,97,108,105,122,97,116,105,111,110,82,117,108,101,115,91,116,104,105,115,36,49,46,108,111,99,97,108,101,93,46,97,112,112,108,121,40,116,104,105,115,36,49,44,32,91,99,104,111,105,99,101,44,32,99,104,111,105,99,101,115,76,101,110,103,116,104,93,41,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,102,97,117,108,116,73,109,112,108,40,99,104,111,105,99,101,44,32,99,104,111,105,99,101,115,76,101,110,103,116,104,41,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,92,110,32,32,116,104,105,115,46,95,101,120,105,115,116,32,61,32,102,117,110,99,116,105,111,110,32,40,109,101,115,115,97,103,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,105,102,32,40,33,109,101,115,115,97,103,101,32,124,124,32,33,107,101,121,41,32,123,32,114,101,116,117,114,110,32,102,97,108,115,101,32,125,92,110,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,40,116,104,105,115,36,49,46,95,112,97,116,104,46,103,101,116,80,97,116,104,86,97,108,117,101,40,109,101,115,115,97,103,101,44,32,107,101,121,41,41,41,32,123,32,114,101,116,117,114,110,32,116,114,117,101,32,125,92,110,32,32,32,32,47,47,32,102,97,108,108,98,97,99,107,32,102,111,114,32,102,108,97,116,32,107,101,121,92,110,32,32,32,32,105,102,32,40,109,101,115,115,97,103,101,91,107,101,121,93,41,32,123,32,114,101,116,117,114,110,32,116,114,117,101,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,125,59,92,110,92,110,32,32,105,102,32,40,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,32,61,61,61,32,39,119,97,114,110,39,32,124,124,32,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,32,61,61,61,32,39,101,114,114,111,114,39,41,32,123,92,110,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,109,101,115,115,97,103,101,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,108,111,99,97,108,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,36,49,46,95,99,104,101,99,107,76,111,99,97,108,101,77,101,115,115,97,103,101,40,108,111,99,97,108,101,44,32,116,104,105,115,36,49,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,44,32,109,101,115,115,97,103,101,115,91,108,111,99,97,108,101,93,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,116,104,105,115,46,95,105,110,105,116,86,77,40,123,92,110,32,32,32,32,108,111,99,97,108,101,58,32,108,111,99,97,108,101,44,92,110,32,32,32,32,102,97,108,108,98,97,99,107,76,111,99,97,108,101,58,32,102,97,108,108,98,97,99,107,76,111,99,97,108,101,44,92,110,32,32,32,32,109,101,115,115,97,103,101,115,58,32,109,101,115,115,97,103,101,115,44,92,110,32,32,32,32,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,58,32,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,44,92,110,32,32,32,32,110,117,109,98,101,114,70,111,114,109,97,116,115,58,32,110,117,109,98,101,114,70,111,114,109,97,116,115,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,118,97,114,32,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,32,61,32,123,32,118,109,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,44,109,101,115,115,97,103,101,115,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,44,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,44,110,117,109,98,101,114,70,111,114,109,97,116,115,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,44,97,118,97,105,108,97,98,108,101,76,111,99,97,108,101,115,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,44,108,111,99,97,108,101,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,44,102,97,108,108,98,97,99,107,76,111,99,97,108,101,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,44,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,44,109,105,115,115,105,110,103,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,44,102,111,114,109,97,116,116,101,114,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,44,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,44,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,44,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,44,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,44,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,32,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,99,104,101,99,107,76,111,99,97,108,101,77,101,115,115,97,103,101,32,61,32,102,117,110,99,116,105,111,110,32,95,99,104,101,99,107,76,111,99,97,108,101,77,101,115,115,97,103,101,32,40,108,111,99,97,108,101,44,32,108,101,118,101,108,44,32,109,101,115,115,97,103,101,41,32,123,92,110,32,32,118,97,114,32,112,97,116,104,115,32,61,32,91,93,59,92,110,92,110,32,32,118,97,114,32,102,110,32,61,32,102,117,110,99,116,105,111,110,32,40,108,101,118,101,108,44,32,108,111,99,97,108,101,44,32,109,101,115,115,97,103,101,44,32,112,97,116,104,115,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,80,108,97,105,110,79,98,106,101,99,116,40,109,101,115,115,97,103,101,41,41,32,123,92,110,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,109,101,115,115,97,103,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,32,61,32,109,101,115,115,97,103,101,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,117,115,104,40,39,46,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,102,110,40,108,101,118,101,108,44,32,108,111,99,97,108,101,44,32,118,97,108,44,32,112,97,116,104,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,111,112,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,111,112,40,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,102,110,40,108,101,118,101,108,44,32,108,111,99,97,108,101,44,32,118,97,108,44,32,112,97,116,104,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,111,112,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,65,114,114,97,121,40,109,101,115,115,97,103,101,41,41,32,123,92,110,32,32,32,32,32,32,109,101,115,115,97,103,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,80,108,97,105,110,79,98,106,101,99,116,40,105,116,101,109,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,117,115,104,40,40,92,34,91,92,34,32,43,32,105,110,100,101,120,32,43,32,92,34,93,92,34,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,117,115,104,40,39,46,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,102,110,40,108,101,118,101,108,44,32,108,111,99,97,108,101,44,32,105,116,101,109,44,32,112,97,116,104,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,111,112,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,111,112,40,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,117,115,104,40,40,92,34,91,92,34,32,43,32,105,110,100,101,120,32,43,32,92,34,93,92,34,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,102,110,40,108,101,118,101,108,44,32,108,111,99,97,108,101,44,32,105,116,101,109,44,32,112,97,116,104,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,111,112,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,83,116,114,105,110,103,40,109,101,115,115,97,103,101,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,116,32,61,32,104,116,109,108,84,97,103,77,97,116,99,104,101,114,46,116,101,115,116,40,109,101,115,115,97,103,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,114,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,115,103,32,61,32,92,34,68,101,116,101,99,116,101,100,32,72,84,77,76,32,105,110,32,109,101,115,115,97,103,101,32,39,92,34,32,43,32,109,101,115,115,97,103,101,32,43,32,92,34,39,32,111,102,32,107,101,121,112,97,116,104,32,39,92,34,32,43,32,40,112,97,116,104,115,46,106,111,105,110,40,39,39,41,41,32,43,32,92,34,39,32,97,116,32,39,92,34,32,43,32,108,111,99,97,108,101,32,43,32,92,34,39,46,32,67,111,110,115,105,100,101,114,32,99,111,109,112,111,110,101,110,116,32,105,110,116,101,114,112,111,108,97,116,105,111,110,32,119,105,116,104,32,39,60,105,49,56,110,62,39,32,116,111,32,97,118,111,105,100,32,88,83,83,46,32,83,101,101,32,104,116,116,112,115,58,47,47,98,105,116,46,108,121,47,50,90,113,74,122,107,112,92,34,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,108,101,118,101,108,32,61,61,61,32,39,119,97,114,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,109,115,103,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,108,101,118,101,108,32,61,61,61,32,39,101,114,114,111,114,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,114,114,111,114,40,109,115,103,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,102,110,40,108,101,118,101,108,44,32,108,111,99,97,108,101,44,32,109,101,115,115,97,103,101,44,32,112,97,116,104,115,41,59,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,105,110,105,116,86,77,32,61,32,102,117,110,99,116,105,111,110,32,95,105,110,105,116,86,77,32,40,100,97,116,97,41,32,123,92,110,32,32,118,97,114,32,115,105,108,101,110,116,32,61,32,86,117,101,46,99,111,110,102,105,103,46,115,105,108,101,110,116,59,92,110,32,32,86,117,101,46,99,111,110,102,105,103,46,115,105,108,101,110,116,32,61,32,116,114,117,101,59,92,110,32,32,116,104,105,115,46,95,118,109,32,61,32,110,101,119,32,86,117,101,40,123,32,100,97,116,97,58,32,100,97,116,97,32,125,41,59,92,110,32,32,86,117,101,46,99,111,110,102,105,103,46,115,105,108,101,110,116,32,61,32,115,105,108,101,110,116,59,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,100,101,115,116,114,111,121,86,77,32,61,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,86,77,32,40,41,32,123,92,110,32,32,116,104,105,115,46,95,118,109,46,36,100,101,115,116,114,111,121,40,41,59,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,115,117,98,115,99,114,105,98,101,68,97,116,97,67,104,97,110,103,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,115,117,98,115,99,114,105,98,101,68,97,116,97,67,104,97,110,103,105,110,103,32,40,118,109,41,32,123,92,110,32,32,116,104,105,115,46,95,100,97,116,97,76,105,115,116,101,110,101,114,115,46,97,100,100,40,118,109,41,59,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,117,110,115,117,98,115,99,114,105,98,101,68,97,116,97,67,104,97,110,103,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,117,110,115,117,98,115,99,114,105,98,101,68,97,116,97,67,104,97,110,103,105,110,103,32,40,118,109,41,32,123,92,110,32,32,114,101,109,111,118,101,40,116,104,105,115,46,95,100,97,116,97,76,105,115,116,101,110,101,114,115,44,32,118,109,41,59,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,119,97,116,99,104,73,49,56,110,68,97,116,97,32,61,32,102,117,110,99,116,105,111,110,32,119,97,116,99,104,73,49,56,110,68,97,116,97,32,40,41,32,123,92,110,32,32,118,97,114,32,115,101,108,102,32,61,32,116,104,105,115,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,118,109,46,36,119,97,116,99,104,40,39,36,100,97,116,97,39,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,115,101,108,102,46,95,100,97,116,97,76,105,115,116,101,110,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,86,117,101,46,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,101,32,38,38,32,101,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,32,123,32,100,101,101,112,58,32,116,114,117,101,32,125,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,119,97,116,99,104,76,111,99,97,108,101,32,61,32,102,117,110,99,116,105,111,110,32,119,97,116,99,104,76,111,99,97,108,101,32,40,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,33,116,104,105,115,46,95,115,121,110,99,32,124,124,32,33,116,104,105,115,46,95,114,111,111,116,41,32,123,32,114,101,116,117,114,110,32,110,117,108,108,32,125,92,110,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,116,104,105,115,46,95,118,109,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,111,116,46,36,105,49,56,110,46,118,109,46,36,119,97,116,99,104,40,39,108,111,99,97,108,101,39,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,41,32,123,92,110,32,32,32,32,116,97,114,103,101,116,46,36,115,101,116,40,116,97,114,103,101,116,44,32,39,108,111,99,97,108,101,39,44,32,118,97,108,41,59,92,110,32,32,32,32,116,97,114,103,101,116,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,59,92,110,32,32,125,44,32,123,32,105,109,109,101,100,105,97,116,101,58,32,116,114,117,101,32,125,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,111,110,67,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,67,114,101,97,116,101,100,32,61,32,102,117,110,99,116,105,111,110,32,111,110,67,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,67,114,101,97,116,101,100,32,40,110,101,119,73,49,56,110,41,32,123,92,110,32,32,105,102,32,40,116,104,105,115,46,95,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,67,114,101,97,116,101,100,76,105,115,116,101,110,101,114,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,67,114,101,97,116,101,100,76,105,115,116,101,110,101,114,40,110,101,119,73,49,56,110,44,32,116,104,105,115,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,118,109,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,118,109,32,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,109,101,115,115,97,103,101,115,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,108,111,111,115,101,67,108,111,110,101,40,116,104,105,115,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,41,32,125,59,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,108,111,111,115,101,67,108,111,110,101,40,116,104,105,115,46,95,103,101,116,68,97,116,101,84,105,109,101,70,111,114,109,97,116,115,40,41,41,32,125,59,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,110,117,109,98,101,114,70,111,114,109,97,116,115,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,108,111,111,115,101,67,108,111,110,101,40,116,104,105,115,46,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,115,40,41,41,32,125,59,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,97,118,97,105,108,97,98,108,101,76,111,99,97,108,101,115,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,109,101,115,115,97,103,101,115,41,46,115,111,114,116,40,41,32,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,108,111,99,97,108,101,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,118,109,46,108,111,99,97,108,101,32,125,59,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,108,111,99,97,108,101,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,108,111,99,97,108,101,41,32,123,92,110,32,32,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,44,32,39,108,111,99,97,108,101,39,44,32,108,111,99,97,108,101,41,59,92,110,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,118,109,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,32,125,59,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,108,111,99,97,108,101,41,32,123,92,110,32,32,116,104,105,115,46,95,108,111,99,97,108,101,67,104,97,105,110,67,97,99,104,101,32,61,32,123,125,59,92,110,32,32,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,44,32,39,102,97,108,108,98,97,99,107,76,111,99,97,108,101,39,44,32,108,111,99,97,108,101,41,59,92,110,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,32,125,59,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,102,97,108,108,98,97,99,107,41,32,123,32,116,104,105,115,46,95,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,32,61,32,102,97,108,108,98,97,99,107,59,32,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,109,105,115,115,105,110,103,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,109,105,115,115,105,110,103,32,125,59,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,109,105,115,115,105,110,103,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,114,41,32,123,32,116,104,105,115,46,95,109,105,115,115,105,110,103,32,61,32,104,97,110,100,108,101,114,59,32,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,102,111,114,109,97,116,116,101,114,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,102,111,114,109,97,116,116,101,114,32,125,59,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,102,111,114,109,97,116,116,101,114,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,102,111,114,109,97,116,116,101,114,41,32,123,32,116,104,105,115,46,95,102,111,114,109,97,116,116,101,114,32,61,32,102,111,114,109,97,116,116,101,114,59,32,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,32,125,59,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,115,105,108,101,110,116,41,32,123,32,116,104,105,115,46,95,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,32,61,32,115,105,108,101,110,116,59,32,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,32,125,59,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,115,105,108,101,110,116,41,32,123,32,116,104,105,115,46,95,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,32,61,32,115,105,108,101,110,116,59,32,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,32,125,59,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,112,114,101,115,101,114,118,101,41,32,123,32,116,104,105,115,46,95,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,32,61,32,112,114,101,115,101,114,118,101,59,32,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,32,125,59,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,108,101,118,101,108,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,118,97,114,32,111,114,103,76,101,118,101,108,32,61,32,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,59,92,110,32,32,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,32,61,32,108,101,118,101,108,59,92,110,32,32,105,102,32,40,111,114,103,76,101,118,101,108,32,33,61,61,32,108,101,118,101,108,32,38,38,32,40,108,101,118,101,108,32,61,61,61,32,39,119,97,114,110,39,32,124,124,32,108,101,118,101,108,32,61,61,61,32,39,101,114,114,111,114,39,41,41,32,123,92,110,32,32,32,32,118,97,114,32,109,101,115,115,97,103,101,115,32,61,32,116,104,105,115,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,59,92,110,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,109,101,115,115,97,103,101,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,108,111,99,97,108,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,36,49,46,95,99,104,101,99,107,76,111,99,97,108,101,77,101,115,115,97,103,101,40,108,111,99,97,108,101,44,32,116,104,105,115,36,49,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,44,32,109,101,115,115,97,103,101,115,91,108,111,99,97,108,101,93,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,32,125,59,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,114,41,32,123,32,116,104,105,115,46,95,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,32,61,32,104,97,110,100,108,101,114,59,32,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,103,101,116,77,101,115,115,97,103,101,115,32,61,32,102,117,110,99,116,105,111,110,32,95,103,101,116,77,101,115,115,97,103,101,115,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,118,109,46,109,101,115,115,97,103,101,115,32,125,59,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,103,101,116,68,97,116,101,84,105,109,101,70,111,114,109,97,116,115,32,61,32,102,117,110,99,116,105,111,110,32,95,103,101,116,68,97,116,101,84,105,109,101,70,111,114,109,97,116,115,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,118,109,46,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,32,125,59,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,115,32,61,32,102,117,110,99,116,105,111,110,32,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,115,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,118,109,46,110,117,109,98,101,114,70,111,114,109,97,116,115,32,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,119,97,114,110,68,101,102,97,117,108,116,32,61,32,102,117,110,99,116,105,111,110,32,95,119,97,114,110,68,101,102,97,117,108,116,32,40,108,111,99,97,108,101,44,32,107,101,121,44,32,114,101,115,117,108,116,44,32,118,109,44,32,118,97,108,117,101,115,44,32,105,110,116,101,114,112,111,108,97,116,101,77,111,100,101,41,32,123,92,110,32,32,105,102,32,40,33,105,115,78,117,108,108,40,114,101,115,117,108,116,41,41,32,123,32,114,101,116,117,114,110,32,114,101,115,117,108,116,32,125,92,110,32,32,105,102,32,40,116,104,105,115,46,95,109,105,115,115,105,110,103,41,32,123,92,110,32,32,32,32,118,97,114,32,109,105,115,115,105,110,103,82,101,116,32,61,32,116,104,105,115,46,95,109,105,115,115,105,110,103,46,97,112,112,108,121,40,110,117,108,108,44,32,91,108,111,99,97,108,101,44,32,107,101,121,44,32,118,109,44,32,118,97,108,117,101,115,93,41,59,92,110,32,32,32,32,105,102,32,40,105,115,83,116,114,105,110,103,40,109,105,115,115,105,110,103,82,101,116,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,105,115,115,105,110,103,82,101,116,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,92,34,67,97,110,110,111,116,32,116,114,97,110,115,108,97,116,101,32,116,104,101,32,118,97,108,117,101,32,111,102,32,107,101,121,112,97,116,104,32,39,92,34,32,43,32,107,101,121,32,43,32,92,34,39,46,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,39,85,115,101,32,116,104,101,32,118,97,108,117,101,32,111,102,32,107,101,121,112,97,116,104,32,97,115,32,100,101,102,97,117,108,116,46,39,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,116,104,105,115,46,95,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,115,101,100,65,114,103,115,32,61,32,112,97,114,115,101,65,114,103,115,46,97,112,112,108,121,40,118,111,105,100,32,48,44,32,118,97,108,117,101,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,114,101,110,100,101,114,40,107,101,121,44,32,105,110,116,101,114,112,111,108,97,116,101,77,111,100,101,44,32,112,97,114,115,101,100,65,114,103,115,46,112,97,114,97,109,115,44,32,107,101,121,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,107,101,121,92,110,32,32,125,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,32,61,32,102,117,110,99,116,105,111,110,32,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,32,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,118,97,108,32,38,38,32,33,105,115,78,117,108,108,40,116,104,105,115,46,95,114,111,111,116,41,32,38,38,32,116,104,105,115,46,95,102,97,108,108,98,97,99,107,82,111,111,116,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,32,61,32,102,117,110,99,116,105,111,110,32,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,32,40,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,32,105,110,115,116,97,110,99,101,111,102,32,82,101,103,69,120,112,92,110,32,32,32,32,63,32,116,104,105,115,46,95,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,46,116,101,115,116,40,107,101,121,41,92,110,32,32,32,32,58,32,116,104,105,115,46,95,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,32,61,32,102,117,110,99,116,105,111,110,32,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,32,40,108,111,99,97,108,101,44,32,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,40,107,101,121,41,32,38,38,32,40,116,104,105,115,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,40,41,32,124,124,32,108,111,99,97,108,101,32,33,61,61,32,116,104,105,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,105,115,83,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,32,61,32,102,117,110,99,116,105,111,110,32,95,105,115,83,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,32,40,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,32,105,110,115,116,97,110,99,101,111,102,32,82,101,103,69,120,112,92,110,32,32,32,32,63,32,116,104,105,115,46,95,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,46,116,101,115,116,40,107,101,121,41,92,110,32,32,32,32,58,32,116,104,105,115,46,95,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,105,110,116,101,114,112,111,108,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,95,105,110,116,101,114,112,111,108,97,116,101,32,40,92,110,32,32,108,111,99,97,108,101,44,92,110,32,32,109,101,115,115,97,103,101,44,92,110,32,32,107,101,121,44,92,110,32,32,104,111,115,116,44,92,110,32,32,105,110,116,101,114,112,111,108,97,116,101,77,111,100,101,44,92,110,32,32,118,97,108,117,101,115,44,92,110,32,32,118,105,115,105,116,101,100,76,105,110,107,83,116,97,99,107,92,110,41,32,123,92,110,32,32,105,102,32,40,33,109,101,115,115,97,103,101,41,32,123,32,114,101,116,117,114,110,32,110,117,108,108,32,125,92,110,92,110,32,32,118,97,114,32,112,97,116,104,82,101,116,32,61,32,116,104,105,115,46,95,112,97,116,104,46,103,101,116,80,97,116,104,86,97,108,117,101,40,109,101,115,115,97,103,101,44,32,107,101,121,41,59,92,110,32,32,105,102,32,40,105,115,65,114,114,97,121,40,112,97,116,104,82,101,116,41,32,124,124,32,105,115,80,108,97,105,110,79,98,106,101,99,116,40,112,97,116,104,82,101,116,41,41,32,123,32,114,101,116,117,114,110,32,112,97,116,104,82,101,116,32,125,92,110,92,110,32,32,118,97,114,32,114,101,116,59,92,110,32,32,105,102,32,40,105,115,78,117,108,108,40,112,97,116,104,82,101,116,41,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,32,32,105,102,32,40,105,115,80,108,97,105,110,79,98,106,101,99,116,40,109,101,115,115,97,103,101,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,32,61,32,109,101,115,115,97,103,101,91,107,101,121,93,59,92,110,32,32,32,32,32,32,105,102,32,40,33,40,105,115,83,116,114,105,110,103,40,114,101,116,41,32,124,124,32,105,115,70,117,110,99,116,105,111,110,40,114,101,116,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,40,107,101,121,41,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,40,108,111,99,97,108,101,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,40,92,34,86,97,108,117,101,32,111,102,32,107,101,121,32,39,92,34,32,43,32,107,101,121,32,43,32,92,34,39,32,105,115,32,110,111,116,32,97,32,115,116,114,105,110,103,32,111,114,32,102,117,110,99,116,105,111,110,32,33,92,34,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,32,32,105,102,32,40,105,115,83,116,114,105,110,103,40,112,97,116,104,82,101,116,41,32,124,124,32,105,115,70,117,110,99,116,105,111,110,40,112,97,116,104,82,101,116,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,32,61,32,112,97,116,104,82,101,116,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,40,107,101,121,41,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,40,108,111,99,97,108,101,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,40,92,34,86,97,108,117,101,32,111,102,32,107,101,121,32,39,92,34,32,43,32,107,101,121,32,43,32,92,34,39,32,105,115,32,110,111,116,32,97,32,115,116,114,105,110,103,32,111,114,32,102,117,110,99,116,105,111,110,33,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,67,104,101,99,107,32,102,111,114,32,116,104,101,32,101,120,105,115,116,101,110,99,101,32,111,102,32,108,105,110,107,115,32,119,105,116,104,105,110,32,116,104,101,32,116,114,97,110,115,108,97,116,101,100,32,115,116,114,105,110,103,92,110,32,32,105,102,32,40,105,115,83,116,114,105,110,103,40,114,101,116,41,32,38,38,32,40,114,101,116,46,105,110,100,101,120,79,102,40,39,64,58,39,41,32,62,61,32,48,32,124,124,32,114,101,116,46,105,110,100,101,120,79,102,40,39,64,46,39,41,32,62,61,32,48,41,41,32,123,92,110,32,32,32,32,114,101,116,32,61,32,116,104,105,115,46,95,108,105,110,107,40,108,111,99,97,108,101,44,32,109,101,115,115,97,103,101,44,32,114,101,116,44,32,104,111,115,116,44,32,39,114,97,119,39,44,32,118,97,108,117,101,115,44,32,118,105,115,105,116,101,100,76,105,110,107,83,116,97,99,107,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,114,101,110,100,101,114,40,114,101,116,44,32,105,110,116,101,114,112,111,108,97,116,101,77,111,100,101,44,32,118,97,108,117,101,115,44,32,107,101,121,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,108,105,110,107,32,61,32,102,117,110,99,116,105,111,110,32,95,108,105,110,107,32,40,92,110,32,32,108,111,99,97,108,101,44,92,110,32,32,109,101,115,115,97,103,101,44,92,110,32,32,115,116,114,44,92,110,32,32,104,111,115,116,44,92,110,32,32,105,110,116,101,114,112,111,108,97,116,101,77,111,100,101,44,92,110,32,32,118,97,108,117,101,115,44,92,110,32,32,118,105,115,105,116,101,100,76,105,110,107,83,116,97,99,107,92,110,41,32,123,92,110,32,32,118,97,114,32,114,101,116,32,61,32,115,116,114,59,92,110,92,110,32,32,47,47,32,77,97,116,99,104,32,97,108,108,32,116,104,101,32,108,105,110,107,115,32,119,105,116,104,105,110,32,116,104,101,32,108,111,99,97,108,92,110,32,32,47,47,32,87,101,32,97,114,101,32,103,111,105,110,103,32,116,111,32,114,101,112,108,97,99,101,32,101,97,99,104,32,111,102,92,110,32,32,47,47,32,116,104,101,109,32,119,105,116,104,32,105,116,115,32,116,114,97,110,115,108,97,116,105,111,110,92,110,32,32,118,97,114,32,109,97,116,99,104,101,115,32,61,32,114,101,116,46,109,97,116,99,104,40,108,105,110,107,75,101,121,77,97,116,99,104,101,114,41,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,100,120,32,105,110,32,109,97,116,99,104,101,115,41,32,123,92,110,32,32,32,32,47,47,32,105,101,32,99,111,109,112,97,116,105,98,108,101,58,32,102,105,108,116,101,114,32,99,117,115,116,111,109,32,97,114,114,97,121,92,110,32,32,32,32,47,47,32,112,114,111,116,111,116,121,112,101,32,109,101,116,104,111,100,92,110,32,32,32,32,105,102,32,40,33,109,97,116,99,104,101,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,105,100,120,41,41,32,123,92,110,32,32,32,32,32,32,99,111,110,116,105,110,117,101,92,110,32,32,32,32,125,92,110,32,32,32,32,118,97,114,32,108,105,110,107,32,61,32,109,97,116,99,104,101,115,91,105,100,120,93,59,92,110,32,32,32,32,118,97,114,32,108,105,110,107,75,101,121,80,114,101,102,105,120,77,97,116,99,104,101,115,32,61,32,108,105,110,107,46,109,97,116,99,104,40,108,105,110,107,75,101,121,80,114,101,102,105,120,77,97,116,99,104,101,114,41,59,92,110,32,32,32,32,118,97,114,32,108,105,110,107,80,114,101,102,105,120,32,61,32,108,105,110,107,75,101,121,80,114,101,102,105,120,77,97,116,99,104,101,115,91,48,93,59,92,110,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,114,78,97,109,101,32,61,32,108,105,110,107,75,101,121,80,114,101,102,105,120,77,97,116,99,104,101,115,91,49,93,59,92,110,92,110,32,32,32,32,47,47,32,82,101,109,111,118,101,32,116,104,101,32,108,101,97,100,105,110,103,32,64,58,44,32,64,46,99,97,115,101,58,32,97,110,100,32,116,104,101,32,98,114,97,99,107,101,116,115,92,110,32,32,32,32,118,97,114,32,108,105,110,107,80,108,97,99,101,104,111,108,100,101,114,32,61,32,108,105,110,107,46,114,101,112,108,97,99,101,40,108,105,110,107,80,114,101,102,105,120,44,32,39,39,41,46,114,101,112,108,97,99,101,40,98,114,97,99,107,101,116,115,77,97,116,99,104,101,114,44,32,39,39,41,59,92,110,92,110,32,32,32,32,105,102,32,40,105,110,99,108,117,100,101,115,40,118,105,115,105,116,101,100,76,105,110,107,83,116,97,99,107,44,32,108,105,110,107,80,108,97,99,101,104,111,108,100,101,114,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,40,92,34,67,105,114,99,117,108,97,114,32,114,101,102,101,114,101,110,99,101,32,102,111,117,110,100,46,32,92,92,92,34,92,34,32,43,32,108,105,110,107,32,43,32,92,34,92,92,92,34,32,105,115,32,97,108,114,101,97,100,121,32,118,105,115,105,116,101,100,32,105,110,32,116,104,101,32,99,104,97,105,110,32,111,102,32,92,34,32,43,32,40,118,105,115,105,116,101,100,76,105,110,107,83,116,97,99,107,46,114,101,118,101,114,115,101,40,41,46,106,111,105,110,40,39,32,60,45,32,39,41,41,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,116,92,110,32,32,32,32,125,92,110,32,32,32,32,118,105,115,105,116,101,100,76,105,110,107,83,116,97,99,107,46,112,117,115,104,40,108,105,110,107,80,108,97,99,101,104,111,108,100,101,114,41,59,92,110,92,110,32,32,32,32,47,47,32,84,114,97,110,115,108,97,116,101,32,116,104,101,32,108,105,110,107,92,110,32,32,32,32,118,97,114,32,116,114,97,110,115,108,97,116,101,100,32,61,32,116,104,105,115,46,95,105,110,116,101,114,112,111,108,97,116,101,40,92,110,32,32,32,32,32,32,108,111,99,97,108,101,44,32,109,101,115,115,97,103,101,44,32,108,105,110,107,80,108,97,99,101,104,111,108,100,101,114,44,32,104,111,115,116,44,92,110,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,77,111,100,101,32,61,61,61,32,39,114,97,119,39,32,63,32,39,115,116,114,105,110,103,39,32,58,32,105,110,116,101,114,112,111,108,97,116,101,77,111,100,101,44,92,110,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,77,111,100,101,32,61,61,61,32,39,114,97,119,39,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,118,97,108,117,101,115,44,92,110,32,32,32,32,32,32,118,105,115,105,116,101,100,76,105,110,107,83,116,97,99,107,92,110,32,32,32,32,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,40,116,114,97,110,115,108,97,116,101,100,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,40,108,105,110,107,80,108,97,99,101,104,111,108,100,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,40,92,34,70,97,108,108,32,98,97,99,107,32,116,111,32,116,114,97,110,115,108,97,116,101,32,116,104,101,32,108,105,110,107,32,112,108,97,99,101,104,111,108,100,101,114,32,39,92,34,32,43,32,108,105,110,107,80,108,97,99,101,104,111,108,100,101,114,32,43,32,92,34,39,32,119,105,116,104,32,114,111,111,116,32,108,111,99,97,108,101,46,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,114,111,111,116,41,32,123,32,116,104,114,111,119,32,69,114,114,111,114,40,39,117,110,101,120,112,101,99,116,101,100,32,101,114,114,111,114,39,41,32,125,92,110,32,32,32,32,32,32,118,97,114,32,114,111,111,116,32,61,32,116,104,105,115,46,95,114,111,111,116,46,36,105,49,56,110,59,92,110,32,32,32,32,32,32,116,114,97,110,115,108,97,116,101,100,32,61,32,114,111,111,116,46,95,116,114,97,110,115,108,97,116,101,40,92,110,32,32,32,32,32,32,32,32,114,111,111,116,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,32,114,111,111,116,46,108,111,99,97,108,101,44,32,114,111,111,116,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,44,92,110,32,32,32,32,32,32,32,32,108,105,110,107,80,108,97,99,101,104,111,108,100,101,114,44,32,104,111,115,116,44,32,105,110,116,101,114,112,111,108,97,116,101,77,111,100,101,44,32,118,97,108,117,101,115,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,114,97,110,115,108,97,116,101,100,32,61,32,116,104,105,115,46,95,119,97,114,110,68,101,102,97,117,108,116,40,92,110,32,32,32,32,32,32,108,111,99,97,108,101,44,32,108,105,110,107,80,108,97,99,101,104,111,108,100,101,114,44,32,116,114,97,110,115,108,97,116,101,100,44,32,104,111,115,116,44,92,110,32,32,32,32,32,32,105,115,65,114,114,97,121,40,118,97,108,117,101,115,41,32,63,32,118,97,108,117,101,115,32,58,32,91,118,97,108,117,101,115,93,44,92,110,32,32,32,32,32,32,105,110,116,101,114,112,111,108,97,116,101,77,111,100,101,92,110,32,32,32,32,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,109,111,100,105,102,105,101,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,102,111,114,109,97,116,116,101,114,78,97,109,101,41,41,32,123,92,110,32,32,32,32,32,32,116,114,97,110,115,108,97,116,101,100,32,61,32,116,104,105,115,46,95,109,111,100,105,102,105,101,114,115,91,102,111,114,109,97,116,116,101,114,78,97,109,101,93,40,116,114,97,110,115,108,97,116,101,100,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,101,102,97,117,108,116,77,111,100,105,102,105,101,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,102,111,114,109,97,116,116,101,114,78,97,109,101,41,41,32,123,92,110,32,32,32,32,32,32,116,114,97,110,115,108,97,116,101,100,32,61,32,100,101,102,97,117,108,116,77,111,100,105,102,105,101,114,115,91,102,111,114,109,97,116,116,101,114,78,97,109,101,93,40,116,114,97,110,115,108,97,116,101,100,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,105,115,105,116,101,100,76,105,110,107,83,116,97,99,107,46,112,111,112,40,41,59,92,110,92,110,32,32,32,32,47,47,32,82,101,112,108,97,99,101,32,116,104,101,32,108,105,110,107,32,119,105,116,104,32,116,104,101,32,116,114,97,110,115,108,97,116,101,100,92,110,32,32,32,32,114,101,116,32,61,32,33,116,114,97,110,115,108,97,116,101,100,32,63,32,114,101,116,32,58,32,114,101,116,46,114,101,112,108,97,99,101,40,108,105,110,107,44,32,116,114,97,110,115,108,97,116,101,100,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,114,101,116,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,99,114,101,97,116,101,77,101,115,115,97,103,101,67,111,110,116,101,120,116,32,61,32,102,117,110,99,116,105,111,110,32,95,99,114,101,97,116,101,77,101,115,115,97,103,101,67,111,110,116,101,120,116,32,40,118,97,108,117,101,115,41,32,123,92,110,32,32,118,97,114,32,95,108,105,115,116,32,61,32,105,115,65,114,114,97,121,40,118,97,108,117,101,115,41,32,63,32,118,97,108,117,101,115,32,58,32,91,93,59,92,110,32,32,118,97,114,32,95,110,97,109,101,100,32,61,32,105,115,79,98,106,101,99,116,40,118,97,108,117,101,115,41,32,63,32,118,97,108,117,101,115,32,58,32,123,125,59,92,110,32,32,118,97,114,32,108,105,115,116,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,41,32,123,32,114,101,116,117,114,110,32,95,108,105,115,116,91,105,110,100,101,120,93,59,32,125,59,92,110,32,32,118,97,114,32,110,97,109,101,100,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,97,109,101,100,91,107,101,121,93,59,32,125,59,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,108,105,115,116,58,32,108,105,115,116,44,92,110,32,32,32,32,110,97,109,101,100,58,32,110,97,109,101,100,92,110,32,32,125,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,95,114,101,110,100,101,114,32,40,109,101,115,115,97,103,101,44,32,105,110,116,101,114,112,111,108,97,116,101,77,111,100,101,44,32,118,97,108,117,101,115,44,32,112,97,116,104,41,32,123,92,110,32,32,105,102,32,40,105,115,70,117,110,99,116,105,111,110,40,109,101,115,115,97,103,101,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,109,101,115,115,97,103,101,40,116,104,105,115,46,95,99,114,101,97,116,101,77,101,115,115,97,103,101,67,111,110,116,101,120,116,40,118,97,108,117,101,115,41,41,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,114,101,116,32,61,32,116,104,105,115,46,95,102,111,114,109,97,116,116,101,114,46,105,110,116,101,114,112,111,108,97,116,101,40,109,101,115,115,97,103,101,44,32,118,97,108,117,101,115,44,32,112,97,116,104,41,59,92,110,92,110,32,32,47,47,32,73,102,32,116,104,101,32,99,117,115,116,111,109,32,102,111,114,109,97,116,116,101,114,32,114,101,102,117,115,101,115,32,116,111,32,119,111,114,107,32,45,32,97,112,112,108,121,32,116,104,101,32,100,101,102,97,117,108,116,32,111,110,101,92,110,32,32,105,102,32,40,33,114,101,116,41,32,123,92,110,32,32,32,32,114,101,116,32,61,32,100,101,102,97,117,108,116,70,111,114,109,97,116,116,101,114,46,105,110,116,101,114,112,111,108,97,116,101,40,109,101,115,115,97,103,101,44,32,118,97,108,117,101,115,44,32,112,97,116,104,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,105,102,32,105,110,116,101,114,112,111,108,97,116,101,77,111,100,101,32,105,115,32,42,42,110,111,116,42,42,32,39,115,116,114,105,110,103,39,32,40,39,114,111,119,39,41,44,92,110,32,32,47,47,32,114,101,116,117,114,110,32,116,104,101,32,99,111,109,112,105,108,101,100,32,100,97,116,97,32,40,101,46,103,46,32,91,39,102,111,111,39,44,32,86,78,111,100,101,44,32,39,98,97,114,39,93,41,32,119,105,116,104,32,102,111,114,109,97,116,116,101,114,92,110,32,32,114,101,116,117,114,110,32,105,110,116,101,114,112,111,108,97,116,101,77,111,100,101,32,61,61,61,32,39,115,116,114,105,110,103,39,32,38,38,32,33,105,115,83,116,114,105,110,103,40,114,101,116,41,32,63,32,114,101,116,46,106,111,105,110,40,39,39,41,32,58,32,114,101,116,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,97,112,112,101,110,100,73,116,101,109,84,111,67,104,97,105,110,32,61,32,102,117,110,99,116,105,111,110,32,95,97,112,112,101,110,100,73,116,101,109,84,111,67,104,97,105,110,32,40,99,104,97,105,110,44,32,105,116,101,109,44,32,98,108,111,99,107,115,41,32,123,92,110,32,32,118,97,114,32,102,111,108,108,111,119,32,61,32,102,97,108,115,101,59,92,110,32,32,105,102,32,40,33,105,110,99,108,117,100,101,115,40,99,104,97,105,110,44,32,105,116,101,109,41,41,32,123,92,110,32,32,32,32,102,111,108,108,111,119,32,61,32,116,114,117,101,59,92,110,32,32,32,32,105,102,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,102,111,108,108,111,119,32,61,32,105,116,101,109,91,105,116,101,109,46,108,101,110,103,116,104,32,45,32,49,93,32,33,61,61,32,39,33,39,59,92,110,32,32,32,32,32,32,105,116,101,109,32,61,32,105,116,101,109,46,114,101,112,108,97,99,101,40,47,33,47,103,44,32,39,39,41,59,92,110,32,32,32,32,32,32,99,104,97,105,110,46,112,117,115,104,40,105,116,101,109,41,59,92,110,32,32,32,32,32,32,105,102,32,40,98,108,111,99,107,115,32,38,38,32,98,108,111,99,107,115,91,105,116,101,109,93,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,108,108,111,119,32,61,32,98,108,111,99,107,115,91,105,116,101,109,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,102,111,108,108,111,119,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,97,112,112,101,110,100,76,111,99,97,108,101,84,111,67,104,97,105,110,32,61,32,102,117,110,99,116,105,111,110,32,95,97,112,112,101,110,100,76,111,99,97,108,101,84,111,67,104,97,105,110,32,40,99,104,97,105,110,44,32,108,111,99,97,108,101,44,32,98,108,111,99,107,115,41,32,123,92,110,32,32,118,97,114,32,102,111,108,108,111,119,59,92,110,32,32,118,97,114,32,116,111,107,101,110,115,32,61,32,108,111,99,97,108,101,46,115,112,108,105,116,40,39,45,39,41,59,92,110,32,32,100,111,32,123,92,110,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,116,111,107,101,110,115,46,106,111,105,110,40,39,45,39,41,59,92,110,32,32,32,32,102,111,108,108,111,119,32,61,32,116,104,105,115,46,95,97,112,112,101,110,100,73,116,101,109,84,111,67,104,97,105,110,40,99,104,97,105,110,44,32,105,116,101,109,44,32,98,108,111,99,107,115,41,59,92,110,32,32,32,32,116,111,107,101,110,115,46,115,112,108,105,99,101,40,45,49,44,32,49,41,59,92,110,32,32,125,32,119,104,105,108,101,32,40,116,111,107,101,110,115,46,108,101,110,103,116,104,32,38,38,32,40,102,111,108,108,111,119,32,61,61,61,32,116,114,117,101,41,41,92,110,32,32,114,101,116,117,114,110,32,102,111,108,108,111,119,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,97,112,112,101,110,100,66,108,111,99,107,84,111,67,104,97,105,110,32,61,32,102,117,110,99,116,105,111,110,32,95,97,112,112,101,110,100,66,108,111,99,107,84,111,67,104,97,105,110,32,40,99,104,97,105,110,44,32,98,108,111,99,107,44,32,98,108,111,99,107,115,41,32,123,92,110,32,32,118,97,114,32,102,111,108,108,111,119,32,61,32,116,114,117,101,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,40,105,32,60,32,98,108,111,99,107,46,108,101,110,103,116,104,41,32,38,38,32,40,105,115,66,111,111,108,101,97,110,40,102,111,108,108,111,119,41,41,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,98,108,111,99,107,91,105,93,59,92,110,32,32,32,32,105,102,32,40,105,115,83,116,114,105,110,103,40,108,111,99,97,108,101,41,41,32,123,92,110,32,32,32,32,32,32,102,111,108,108,111,119,32,61,32,116,104,105,115,46,95,97,112,112,101,110,100,76,111,99,97,108,101,84,111,67,104,97,105,110,40,99,104,97,105,110,44,32,108,111,99,97,108,101,44,32,98,108,111,99,107,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,102,111,108,108,111,119,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,103,101,116,76,111,99,97,108,101,67,104,97,105,110,32,61,32,102,117,110,99,116,105,111,110,32,95,103,101,116,76,111,99,97,108,101,67,104,97,105,110,32,40,115,116,97,114,116,44,32,102,97,108,108,98,97,99,107,76,111,99,97,108,101,41,32,123,92,110,32,32,105,102,32,40,115,116,97,114,116,32,61,61,61,32,39,39,41,32,123,32,114,101,116,117,114,110,32,91,93,32,125,92,110,92,110,32,32,105,102,32,40,33,116,104,105,115,46,95,108,111,99,97,108,101,67,104,97,105,110,67,97,99,104,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,108,111,99,97,108,101,67,104,97,105,110,67,97,99,104,101,32,61,32,123,125,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,104,97,105,110,32,61,32,116,104,105,115,46,95,108,111,99,97,108,101,67,104,97,105,110,67,97,99,104,101,91,115,116,97,114,116,93,59,92,110,32,32,105,102,32,40,33,99,104,97,105,110,41,32,123,92,110,32,32,32,32,105,102,32,40,33,102,97,108,108,98,97,99,107,76,111,99,97,108,101,41,32,123,92,110,32,32,32,32,32,32,102,97,108,108,98,97,99,107,76,111,99,97,108,101,32,61,32,116,104,105,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,59,92,110,32,32,32,32,125,92,110,32,32,32,32,99,104,97,105,110,32,61,32,91,93,59,92,110,92,110,32,32,32,32,47,47,32,102,105,114,115,116,32,98,108,111,99,107,32,100,101,102,105,110,101,100,32,98,121,32,115,116,97,114,116,92,110,32,32,32,32,118,97,114,32,98,108,111,99,107,32,61,32,91,115,116,97,114,116,93,59,92,110,92,110,32,32,32,32,47,47,32,119,104,105,108,101,32,97,110,121,32,105,110,116,101,114,118,101,110,105,110,103,32,98,108,111,99,107,32,102,111,117,110,100,92,110,32,32,32,32,119,104,105,108,101,32,40,105,115,65,114,114,97,121,40,98,108,111,99,107,41,41,32,123,92,110,32,32,32,32,32,32,98,108,111,99,107,32,61,32,116,104,105,115,46,95,97,112,112,101,110,100,66,108,111,99,107,84,111,67,104,97,105,110,40,92,110,32,32,32,32,32,32,32,32,99,104,97,105,110,44,92,110,32,32,32,32,32,32,32,32,98,108,111,99,107,44,92,110,32,32,32,32,32,32,32,32,102,97,108,108,98,97,99,107,76,111,99,97,108,101,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,108,97,115,116,32,98,108,111,99,107,32,100,101,102,105,110,101,100,32,98,121,32,100,101,102,97,117,108,116,92,110,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,115,59,92,110,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,40,102,97,108,108,98,97,99,107,76,111,99,97,108,101,41,41,32,123,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,115,32,61,32,102,97,108,108,98,97,99,107,76,111,99,97,108,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,79,98,106,101,99,116,40,102,97,108,108,98,97,99,107,76,111,99,97,108,101,41,41,32,123,92,110,32,32,32,32,32,32,47,42,32,36,70,108,111,119,70,105,120,77,101,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,102,97,108,108,98,97,99,107,76,111,99,97,108,101,91,39,100,101,102,97,117,108,116,39,93,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,115,32,61,32,102,97,108,108,98,97,99,107,76,111,99,97,108,101,91,39,100,101,102,97,117,108,116,39,93,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,115,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,115,32,61,32,102,97,108,108,98,97,99,107,76,111,99,97,108,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,99,111,110,118,101,114,116,32,100,101,102,97,117,108,116,115,32,116,111,32,97,114,114,97,121,92,110,32,32,32,32,105,102,32,40,105,115,83,116,114,105,110,103,40,100,101,102,97,117,108,116,115,41,41,32,123,92,110,32,32,32,32,32,32,98,108,111,99,107,32,61,32,91,100,101,102,97,117,108,116,115,93,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,98,108,111,99,107,32,61,32,100,101,102,97,117,108,116,115,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,98,108,111,99,107,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,97,112,112,101,110,100,66,108,111,99,107,84,111,67,104,97,105,110,40,92,110,32,32,32,32,32,32,32,32,99,104,97,105,110,44,92,110,32,32,32,32,32,32,32,32,98,108,111,99,107,44,92,110,32,32,32,32,32,32,32,32,110,117,108,108,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,104,105,115,46,95,108,111,99,97,108,101,67,104,97,105,110,67,97,99,104,101,91,115,116,97,114,116,93,32,61,32,99,104,97,105,110,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,99,104,97,105,110,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,116,114,97,110,115,108,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,95,116,114,97,110,115,108,97,116,101,32,40,92,110,32,32,109,101,115,115,97,103,101,115,44,92,110,32,32,108,111,99,97,108,101,44,92,110,32,32,102,97,108,108,98,97,99,107,44,92,110,32,32,107,101,121,44,92,110,32,32,104,111,115,116,44,92,110,32,32,105,110,116,101,114,112,111,108,97,116,101,77,111,100,101,44,92,110,32,32,97,114,103,115,92,110,41,32,123,92,110,32,32,118,97,114,32,99,104,97,105,110,32,61,32,116,104,105,115,46,95,103,101,116,76,111,99,97,108,101,67,104,97,105,110,40,108,111,99,97,108,101,44,32,102,97,108,108,98,97,99,107,41,59,92,110,32,32,118,97,114,32,114,101,115,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,99,104,97,105,110,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,101,112,32,61,32,99,104,97,105,110,91,105,93,59,92,110,32,32,32,32,114,101,115,32,61,92,110,32,32,32,32,32,32,116,104,105,115,46,95,105,110,116,101,114,112,111,108,97,116,101,40,115,116,101,112,44,32,109,101,115,115,97,103,101,115,91,115,116,101,112,93,44,32,107,101,121,44,32,104,111,115,116,44,32,105,110,116,101,114,112,111,108,97,116,101,77,111,100,101,44,32,97,114,103,115,44,32,91,107,101,121,93,41,59,92,110,32,32,32,32,105,102,32,40,33,105,115,78,117,108,108,40,114,101,115,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,116,101,112,32,33,61,61,32,108,111,99,97,108,101,32,38,38,32,92,34,100,101,118,101,108,111,112,109,101,110,116,92,34,32,33,61,61,32,39,112,114,111,100,117,99,116,105,111,110,39,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,40,107,101,121,41,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,40,92,34,70,97,108,108,32,98,97,99,107,32,116,111,32,116,114,97,110,115,108,97,116,101,32,116,104,101,32,107,101,121,112,97,116,104,32,39,92,34,32,43,32,107,101,121,32,43,32,92,34,39,32,119,105,116,104,32,39,92,34,32,43,32,115,116,101,112,32,43,32,92,34,39,32,108,111,99,97,108,101,46,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,110,117,108,108,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,116,32,61,32,102,117,110,99,116,105,111,110,32,95,116,32,40,107,101,121,44,32,95,108,111,99,97,108,101,44,32,109,101,115,115,97,103,101,115,44,32,104,111,115,116,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,102,59,92,110,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,45,32,52,59,92,110,32,32,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,62,32,48,32,41,32,118,97,108,117,101,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,43,32,52,32,93,59,92,110,32,32,105,102,32,40,33,107,101,121,41,32,123,32,114,101,116,117,114,110,32,39,39,32,125,92,110,92,110,32,32,118,97,114,32,112,97,114,115,101,100,65,114,103,115,32,61,32,112,97,114,115,101,65,114,103,115,46,97,112,112,108,121,40,118,111,105,100,32,48,44,32,118,97,108,117,101,115,41,59,92,110,32,32,105,102,40,116,104,105,115,46,95,101,115,99,97,112,101,80,97,114,97,109,101,116,101,114,72,116,109,108,41,32,123,92,110,32,32,32,32,112,97,114,115,101,100,65,114,103,115,46,112,97,114,97,109,115,32,61,32,101,115,99,97,112,101,80,97,114,97,109,115,40,112,97,114,115,101,100,65,114,103,115,46,112,97,114,97,109,115,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,112,97,114,115,101,100,65,114,103,115,46,108,111,99,97,108,101,32,124,124,32,95,108,111,99,97,108,101,59,92,110,92,110,32,32,118,97,114,32,114,101,116,32,61,32,116,104,105,115,46,95,116,114,97,110,115,108,97,116,101,40,92,110,32,32,32,32,109,101,115,115,97,103,101,115,44,32,108,111,99,97,108,101,44,32,116,104,105,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,44,32,107,101,121,44,92,110,32,32,32,32,104,111,115,116,44,32,39,115,116,114,105,110,103,39,44,32,112,97,114,115,101,100,65,114,103,115,46,112,97,114,97,109,115,92,110,32,32,41,59,92,110,32,32,105,102,32,40,116,104,105,115,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,40,114,101,116,41,41,32,123,92,110,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,40,107,101,121,41,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,40,92,34,70,97,108,108,32,98,97,99,107,32,116,111,32,116,114,97,110,115,108,97,116,101,32,116,104,101,32,107,101,121,112,97,116,104,32,39,92,34,32,43,32,107,101,121,32,43,32,92,34,39,32,119,105,116,104,32,114,111,111,116,32,108,111,99,97,108,101,46,92,34,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,114,111,111,116,41,32,123,32,116,104,114,111,119,32,69,114,114,111,114,40,39,117,110,101,120,112,101,99,116,101,100,32,101,114,114,111,114,39,41,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,40,114,101,102,32,61,32,116,104,105,115,46,95,114,111,111,116,41,46,36,116,46,97,112,112,108,121,40,114,101,102,44,32,91,32,107,101,121,32,93,46,99,111,110,99,97,116,40,32,118,97,108,117,101,115,32,41,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,32,61,32,116,104,105,115,46,95,119,97,114,110,68,101,102,97,117,108,116,40,108,111,99,97,108,101,44,32,107,101,121,44,32,114,101,116,44,32,104,111,115,116,44,32,118,97,108,117,101,115,44,32,39,115,116,114,105,110,103,39,41,59,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,32,38,38,32,114,101,116,32,33,61,61,32,110,117,108,108,32,38,38,32,114,101,116,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,32,61,32,116,104,105,115,46,95,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,40,114,101,116,44,32,107,101,121,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,116,92,110,32,32,125,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,116,32,61,32,102,117,110,99,116,105,111,110,32,116,32,40,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,102,59,92,110,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,62,32,48,32,41,32,118,97,108,117,101,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,43,32,49,32,93,59,92,110,32,32,114,101,116,117,114,110,32,40,114,101,102,32,61,32,116,104,105,115,41,46,95,116,46,97,112,112,108,121,40,114,101,102,44,32,91,32,107,101,121,44,32,116,104,105,115,46,108,111,99,97,108,101,44,32,116,104,105,115,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,32,110,117,108,108,32,93,46,99,111,110,99,97,116,40,32,118,97,108,117,101,115,32,41,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,105,32,61,32,102,117,110,99,116,105,111,110,32,95,105,32,40,107,101,121,44,32,108,111,99,97,108,101,44,32,109,101,115,115,97,103,101,115,44,32,104,111,115,116,44,32,118,97,108,117,101,115,41,32,123,92,110,32,32,118,97,114,32,114,101,116,32,61,92,110,32,32,32,32,116,104,105,115,46,95,116,114,97,110,115,108,97,116,101,40,109,101,115,115,97,103,101,115,44,32,108,111,99,97,108,101,44,32,116,104,105,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,44,32,107,101,121,44,32,104,111,115,116,44,32,39,114,97,119,39,44,32,118,97,108,117,101,115,41,59,92,110,32,32,105,102,32,40,116,104,105,115,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,40,114,101,116,41,41,32,123,92,110,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,40,92,34,70,97,108,108,32,98,97,99,107,32,116,111,32,105,110,116,101,114,112,111,108,97,116,101,32,116,104,101,32,107,101,121,112,97,116,104,32,39,92,34,32,43,32,107,101,121,32,43,32,92,34,39,32,119,105,116,104,32,114,111,111,116,32,108,111,99,97,108,101,46,92,34,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,114,111,111,116,41,32,123,32,116,104,114,111,119,32,69,114,114,111,114,40,39,117,110,101,120,112,101,99,116,101,100,32,101,114,114,111,114,39,41,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,111,116,46,36,105,49,56,110,46,105,40,107,101,121,44,32,108,111,99,97,108,101,44,32,118,97,108,117,101,115,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,119,97,114,110,68,101,102,97,117,108,116,40,108,111,99,97,108,101,44,32,107,101,121,44,32,114,101,116,44,32,104,111,115,116,44,32,91,118,97,108,117,101,115,93,44,32,39,114,97,119,39,41,92,110,32,32,125,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,105,32,61,32,102,117,110,99,116,105,111,110,32,105,32,40,107,101,121,44,32,108,111,99,97,108,101,44,32,118,97,108,117,101,115,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,33,107,101,121,41,32,123,32,114,101,116,117,114,110,32,39,39,32,125,92,110,92,110,32,32,105,102,32,40,33,105,115,83,116,114,105,110,103,40,108,111,99,97,108,101,41,41,32,123,92,110,32,32,32,32,108,111,99,97,108,101,32,61,32,116,104,105,115,46,108,111,99,97,108,101,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,105,40,107,101,121,44,32,108,111,99,97,108,101,44,32,116,104,105,115,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,32,110,117,108,108,44,32,118,97,108,117,101,115,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,116,99,32,61,32,102,117,110,99,116,105,111,110,32,95,116,99,32,40,92,110,32,32,107,101,121,44,92,110,32,32,95,108,111,99,97,108,101,44,92,110,32,32,109,101,115,115,97,103,101,115,44,92,110,32,32,104,111,115,116,44,92,110,32,32,99,104,111,105,99,101,92,110,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,102,59,92,110,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,45,32,53,59,92,110,32,32,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,62,32,48,32,41,32,118,97,108,117,101,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,43,32,53,32,93,59,92,110,32,32,105,102,32,40,33,107,101,121,41,32,123,32,114,101,116,117,114,110,32,39,39,32,125,92,110,32,32,105,102,32,40,99,104,111,105,99,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,99,104,111,105,99,101,32,61,32,49,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,112,114,101,100,101,102,105,110,101,100,32,61,32,123,32,39,99,111,117,110,116,39,58,32,99,104,111,105,99,101,44,32,39,110,39,58,32,99,104,111,105,99,101,32,125,59,92,110,32,32,118,97,114,32,112,97,114,115,101,100,65,114,103,115,32,61,32,112,97,114,115,101,65,114,103,115,46,97,112,112,108,121,40,118,111,105,100,32,48,44,32,118,97,108,117,101,115,41,59,92,110,32,32,112,97,114,115,101,100,65,114,103,115,46,112,97,114,97,109,115,32,61,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,112,114,101,100,101,102,105,110,101,100,44,32,112,97,114,115,101,100,65,114,103,115,46,112,97,114,97,109,115,41,59,92,110,32,32,118,97,108,117,101,115,32,61,32,112,97,114,115,101,100,65,114,103,115,46,108,111,99,97,108,101,32,61,61,61,32,110,117,108,108,32,63,32,91,112,97,114,115,101,100,65,114,103,115,46,112,97,114,97,109,115,93,32,58,32,91,112,97,114,115,101,100,65,114,103,115,46,108,111,99,97,108,101,44,32,112,97,114,115,101,100,65,114,103,115,46,112,97,114,97,109,115,93,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,102,101,116,99,104,67,104,111,105,99,101,40,40,114,101,102,32,61,32,116,104,105,115,41,46,95,116,46,97,112,112,108,121,40,114,101,102,44,32,91,32,107,101,121,44,32,95,108,111,99,97,108,101,44,32,109,101,115,115,97,103,101,115,44,32,104,111,115,116,32,93,46,99,111,110,99,97,116,40,32,118,97,108,117,101,115,32,41,41,44,32,99,104,111,105,99,101,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,102,101,116,99,104,67,104,111,105,99,101,32,61,32,102,117,110,99,116,105,111,110,32,102,101,116,99,104,67,104,111,105,99,101,32,40,109,101,115,115,97,103,101,44,32,99,104,111,105,99,101,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,33,109,101,115,115,97,103,101,32,124,124,32,33,105,115,83,116,114,105,110,103,40,109,101,115,115,97,103,101,41,41,32,123,32,114,101,116,117,114,110,32,110,117,108,108,32,125,92,110,32,32,118,97,114,32,99,104,111,105,99,101,115,32,61,32,109,101,115,115,97,103,101,46,115,112,108,105,116,40,39,124,39,41,59,92,110,92,110,32,32,99,104,111,105,99,101,32,61,32,116,104,105,115,46,103,101,116,67,104,111,105,99,101,73,110,100,101,120,40,99,104,111,105,99,101,44,32,99,104,111,105,99,101,115,46,108,101,110,103,116,104,41,59,92,110,32,32,105,102,32,40,33,99,104,111,105,99,101,115,91,99,104,111,105,99,101,93,41,32,123,32,114,101,116,117,114,110,32,109,101,115,115,97,103,101,32,125,92,110,32,32,114,101,116,117,114,110,32,99,104,111,105,99,101,115,91,99,104,111,105,99,101,93,46,116,114,105,109,40,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,116,99,32,61,32,102,117,110,99,116,105,111,110,32,116,99,32,40,107,101,121,44,32,99,104,111,105,99,101,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,102,59,92,110,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,45,32,50,59,92,110,32,32,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,62,32,48,32,41,32,118,97,108,117,101,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,43,32,50,32,93,59,92,110,32,32,114,101,116,117,114,110,32,40,114,101,102,32,61,32,116,104,105,115,41,46,95,116,99,46,97,112,112,108,121,40,114,101,102,44,32,91,32,107,101,121,44,32,116,104,105,115,46,108,111,99,97,108,101,44,32,116,104,105,115,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,32,110,117,108,108,44,32,99,104,111,105,99,101,32,93,46,99,111,110,99,97,116,40,32,118,97,108,117,101,115,32,41,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,116,101,32,61,32,102,117,110,99,116,105,111,110,32,95,116,101,32,40,107,101,121,44,32,108,111,99,97,108,101,44,32,109,101,115,115,97,103,101,115,41,32,123,92,110,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,45,32,51,59,92,110,32,32,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,62,32,48,32,41,32,97,114,103,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,43,32,51,32,93,59,92,110,92,110,32,32,118,97,114,32,95,108,111,99,97,108,101,32,61,32,112,97,114,115,101,65,114,103,115,46,97,112,112,108,121,40,118,111,105,100,32,48,44,32,97,114,103,115,41,46,108,111,99,97,108,101,32,124,124,32,108,111,99,97,108,101,59,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,101,120,105,115,116,40,109,101,115,115,97,103,101,115,91,95,108,111,99,97,108,101,93,44,32,107,101,121,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,116,101,32,61,32,102,117,110,99,116,105,111,110,32,116,101,32,40,107,101,121,44,32,108,111,99,97,108,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,116,101,40,107,101,121,44,32,116,104,105,115,46,108,111,99,97,108,101,44,32,116,104,105,115,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,32,108,111,99,97,108,101,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,76,111,99,97,108,101,77,101,115,115,97,103,101,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,76,111,99,97,108,101,77,101,115,115,97,103,101,32,40,108,111,99,97,108,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,108,111,111,115,101,67,108,111,110,101,40,116,104,105,115,46,95,118,109,46,109,101,115,115,97,103,101,115,91,108,111,99,97,108,101,93,32,124,124,32,123,125,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,76,111,99,97,108,101,77,101,115,115,97,103,101,32,61,32,102,117,110,99,116,105,111,110,32,115,101,116,76,111,99,97,108,101,77,101,115,115,97,103,101,32,40,108,111,99,97,108,101,44,32,109,101,115,115,97,103,101,41,32,123,92,110,32,32,105,102,32,40,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,32,61,61,61,32,39,119,97,114,110,39,32,124,124,32,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,32,61,61,61,32,39,101,114,114,111,114,39,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,99,104,101,99,107,76,111,99,97,108,101,77,101,115,115,97,103,101,40,108,111,99,97,108,101,44,32,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,44,32,109,101,115,115,97,103,101,41,59,92,110,32,32,125,92,110,32,32,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,46,109,101,115,115,97,103,101,115,44,32,108,111,99,97,108,101,44,32,109,101,115,115,97,103,101,41,59,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,109,101,114,103,101,76,111,99,97,108,101,77,101,115,115,97,103,101,32,61,32,102,117,110,99,116,105,111,110,32,109,101,114,103,101,76,111,99,97,108,101,77,101,115,115,97,103,101,32,40,108,111,99,97,108,101,44,32,109,101,115,115,97,103,101,41,32,123,92,110,32,32,105,102,32,40,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,32,61,61,61,32,39,119,97,114,110,39,32,124,124,32,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,32,61,61,61,32,39,101,114,114,111,114,39,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,99,104,101,99,107,76,111,99,97,108,101,77,101,115,115,97,103,101,40,108,111,99,97,108,101,44,32,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,44,32,109,101,115,115,97,103,101,41,59,92,110,32,32,125,92,110,32,32,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,46,109,101,115,115,97,103,101,115,44,32,108,111,99,97,108,101,44,32,109,101,114,103,101,40,92,110,32,32,32,32,116,121,112,101,111,102,32,116,104,105,115,46,95,118,109,46,109,101,115,115,97,103,101,115,91,108,111,99,97,108,101,93,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,95,118,109,46,109,101,115,115,97,103,101,115,91,108,111,99,97,108,101,93,41,46,108,101,110,103,116,104,92,110,32,32,32,32,32,32,63,32,116,104,105,115,46,95,118,109,46,109,101,115,115,97,103,101,115,91,108,111,99,97,108,101,93,92,110,32,32,32,32,32,32,58,32,123,125,44,92,110,32,32,32,32,109,101,115,115,97,103,101,92,110,32,32,41,41,59,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,68,97,116,101,84,105,109,101,70,111,114,109,97,116,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,68,97,116,101,84,105,109,101,70,111,114,109,97,116,32,40,108,111,99,97,108,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,108,111,111,115,101,67,108,111,110,101,40,116,104,105,115,46,95,118,109,46,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,91,108,111,99,97,108,101,93,32,124,124,32,123,125,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,68,97,116,101,84,105,109,101,70,111,114,109,97,116,32,61,32,102,117,110,99,116,105,111,110,32,115,101,116,68,97,116,101,84,105,109,101,70,111,114,109,97,116,32,40,108,111,99,97,108,101,44,32,102,111,114,109,97,116,41,32,123,92,110,32,32,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,46,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,44,32,108,111,99,97,108,101,44,32,102,111,114,109,97,116,41,59,92,110,32,32,116,104,105,115,46,95,99,108,101,97,114,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,108,111,99,97,108,101,44,32,102,111,114,109,97,116,41,59,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,109,101,114,103,101,68,97,116,101,84,105,109,101,70,111,114,109,97,116,32,61,32,102,117,110,99,116,105,111,110,32,109,101,114,103,101,68,97,116,101,84,105,109,101,70,111,114,109,97,116,32,40,108,111,99,97,108,101,44,32,102,111,114,109,97,116,41,32,123,92,110,32,32,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,46,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,44,32,108,111,99,97,108,101,44,32,109,101,114,103,101,40,116,104,105,115,46,95,118,109,46,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,91,108,111,99,97,108,101,93,32,124,124,32,123,125,44,32,102,111,114,109,97,116,41,41,59,92,110,32,32,116,104,105,115,46,95,99,108,101,97,114,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,108,111,99,97,108,101,44,32,102,111,114,109,97,116,41,59,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,99,108,101,97,114,68,97,116,101,84,105,109,101,70,111,114,109,97,116,32,61,32,102,117,110,99,116,105,111,110,32,95,99,108,101,97,114,68,97,116,101,84,105,109,101,70,111,114,109,97,116,32,40,108,111,99,97,108,101,44,32,102,111,114,109,97,116,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,102,111,114,109,97,116,41,32,123,92,110,32,32,32,32,118,97,114,32,105,100,32,61,32,108,111,99,97,108,101,32,43,32,92,34,95,95,92,34,32,43,32,107,101,121,59,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,100,97,116,101,84,105,109,101,70,111,114,109,97,116,116,101,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,105,100,41,41,32,123,92,110,32,32,32,32,32,32,99,111,110,116,105,110,117,101,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,100,101,108,101,116,101,32,116,104,105,115,46,95,100,97,116,101,84,105,109,101,70,111,114,109,97,116,116,101,114,115,91,105,100,93,59,92,110,32,32,125,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,108,111,99,97,108,105,122,101,68,97,116,101,84,105,109,101,32,61,32,102,117,110,99,116,105,111,110,32,95,108,111,99,97,108,105,122,101,68,97,116,101,84,105,109,101,32,40,92,110,32,32,118,97,108,117,101,44,92,110,32,32,108,111,99,97,108,101,44,92,110,32,32,102,97,108,108,98,97,99,107,44,92,110,32,32,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,44,92,110,32,32,107,101,121,92,110,41,32,123,92,110,32,32,118,97,114,32,95,108,111,99,97,108,101,32,61,32,108,111,99,97,108,101,59,92,110,32,32,118,97,114,32,102,111,114,109,97,116,115,32,61,32,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,91,95,108,111,99,97,108,101,93,59,92,110,92,110,32,32,118,97,114,32,99,104,97,105,110,32,61,32,116,104,105,115,46,95,103,101,116,76,111,99,97,108,101,67,104,97,105,110,40,108,111,99,97,108,101,44,32,102,97,108,108,98,97,99,107,41,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,99,104,97,105,110,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,32,61,32,95,108,111,99,97,108,101,59,92,110,32,32,32,32,118,97,114,32,115,116,101,112,32,61,32,99,104,97,105,110,91,105,93,59,92,110,32,32,32,32,102,111,114,109,97,116,115,32,61,32,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,91,115,116,101,112,93,59,92,110,32,32,32,32,95,108,111,99,97,108,101,32,61,32,115,116,101,112,59,92,110,32,32,32,32,47,47,32,102,97,108,108,98,97,99,107,32,108,111,99,97,108,101,92,110,32,32,32,32,105,102,32,40,105,115,78,117,108,108,40,102,111,114,109,97,116,115,41,32,124,124,32,105,115,78,117,108,108,40,102,111,114,109,97,116,115,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,116,101,112,32,33,61,61,32,108,111,99,97,108,101,32,38,38,32,92,34,100,101,118,101,108,111,112,109,101,110,116,92,34,32,33,61,61,32,39,112,114,111,100,117,99,116,105,111,110,39,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,40,107,101,121,41,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,40,92,34,70,97,108,108,32,98,97,99,107,32,116,111,32,39,92,34,32,43,32,115,116,101,112,32,43,32,92,34,39,32,100,97,116,101,116,105,109,101,32,102,111,114,109,97,116,115,32,102,114,111,109,32,39,92,34,32,43,32,99,117,114,114,101,110,116,32,43,32,92,34,39,32,100,97,116,101,116,105,109,101,32,102,111,114,109,97,116,115,46,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,105,115,78,117,108,108,40,102,111,114,109,97,116,115,41,32,124,124,32,105,115,78,117,108,108,40,102,111,114,109,97,116,115,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,118,97,114,32,102,111,114,109,97,116,32,61,32,102,111,114,109,97,116,115,91,107,101,121,93,59,92,110,32,32,32,32,118,97,114,32,105,100,32,61,32,95,108,111,99,97,108,101,32,43,32,92,34,95,95,92,34,32,43,32,107,101,121,59,92,110,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,114,32,61,32,116,104,105,115,46,95,100,97,116,101,84,105,109,101,70,111,114,109,97,116,116,101,114,115,91,105,100,93,59,92,110,32,32,32,32,105,102,32,40,33,102,111,114,109,97,116,116,101,114,41,32,123,92,110,32,32,32,32,32,32,102,111,114,109,97,116,116,101,114,32,61,32,116,104,105,115,46,95,100,97,116,101,84,105,109,101,70,111,114,109,97,116,116,101,114,115,91,105,100,93,32,61,32,110,101,119,32,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,95,108,111,99,97,108,101,44,32,102,111,114,109,97,116,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,116,101,114,46,102,111,114,109,97,116,40,118,97,108,117,101,41,92,110,32,32,125,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,100,32,61,32,102,117,110,99,116,105,111,110,32,95,100,32,40,118,97,108,117,101,44,32,108,111,99,97,108,101,44,32,107,101,121,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,86,117,101,73,49,56,110,46,97,118,97,105,108,97,98,105,108,105,116,105,101,115,46,100,97,116,101,84,105,109,101,70,111,114,109,97,116,41,32,123,92,110,32,32,32,32,119,97,114,110,40,39,67,97,110,110,111,116,32,102,111,114,109,97,116,32,97,32,68,97,116,101,32,118,97,108,117,101,32,100,117,101,32,116,111,32,110,111,116,32,115,117,112,112,111,114,116,101,100,32,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,46,39,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,39,39,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,108,111,99,97,108,101,41,46,102,111,114,109,97,116,40,118,97,108,117,101,41,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,114,101,116,32,61,92,110,32,32,32,32,116,104,105,115,46,95,108,111,99,97,108,105,122,101,68,97,116,101,84,105,109,101,40,118,97,108,117,101,44,32,108,111,99,97,108,101,44,32,116,104,105,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,44,32,116,104,105,115,46,95,103,101,116,68,97,116,101,84,105,109,101,70,111,114,109,97,116,115,40,41,44,32,107,101,121,41,59,92,110,32,32,105,102,32,40,116,104,105,115,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,40,114,101,116,41,41,32,123,92,110,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,40,107,101,121,41,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,40,92,34,70,97,108,108,32,98,97,99,107,32,116,111,32,100,97,116,101,116,105,109,101,32,108,111,99,97,108,105,122,97,116,105,111,110,32,111,102,32,114,111,111,116,58,32,107,101,121,32,39,92,34,32,43,32,107,101,121,32,43,32,92,34,39,46,92,34,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,114,111,111,116,41,32,123,32,116,104,114,111,119,32,69,114,114,111,114,40,39,117,110,101,120,112,101,99,116,101,100,32,101,114,114,111,114,39,41,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,111,116,46,36,105,49,56,110,46,100,40,118,97,108,117,101,44,32,107,101,121,44,32,108,111,99,97,108,101,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,116,32,124,124,32,39,39,92,110,32,32,125,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,100,32,61,32,102,117,110,99,116,105,111,110,32,100,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,62,32,48,32,41,32,97,114,103,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,43,32,49,32,93,59,92,110,92,110,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,116,104,105,115,46,108,111,99,97,108,101,59,92,110,32,32,118,97,114,32,107,101,121,32,61,32,110,117,108,108,59,92,110,92,110,32,32,105,102,32,40,97,114,103,115,46,108,101,110,103,116,104,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,83,116,114,105,110,103,40,97,114,103,115,91,48,93,41,41,32,123,92,110,32,32,32,32,32,32,107,101,121,32,61,32,97,114,103,115,91,48,93,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,79,98,106,101,99,116,40,97,114,103,115,91,48,93,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,97,114,103,115,91,48,93,46,108,111,99,97,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,108,111,99,97,108,101,32,61,32,97,114,103,115,91,48,93,46,108,111,99,97,108,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,97,114,103,115,91,48,93,46,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,32,61,32,97,114,103,115,91,48,93,46,107,101,121,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,97,114,103,115,46,108,101,110,103,116,104,32,61,61,61,32,50,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,83,116,114,105,110,103,40,97,114,103,115,91,48,93,41,41,32,123,92,110,32,32,32,32,32,32,107,101,121,32,61,32,97,114,103,115,91,48,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,105,115,83,116,114,105,110,103,40,97,114,103,115,91,49,93,41,41,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,101,32,61,32,97,114,103,115,91,49,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,100,40,118,97,108,117,101,44,32,108,111,99,97,108,101,44,32,107,101,121,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,32,40,108,111,99,97,108,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,108,111,111,115,101,67,108,111,110,101,40,116,104,105,115,46,95,118,109,46,110,117,109,98,101,114,70,111,114,109,97,116,115,91,108,111,99,97,108,101,93,32,124,124,32,123,125,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,78,117,109,98,101,114,70,111,114,109,97,116,32,61,32,102,117,110,99,116,105,111,110,32,115,101,116,78,117,109,98,101,114,70,111,114,109,97,116,32,40,108,111,99,97,108,101,44,32,102,111,114,109,97,116,41,32,123,92,110,32,32,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,46,110,117,109,98,101,114,70,111,114,109,97,116,115,44,32,108,111,99,97,108,101,44,32,102,111,114,109,97,116,41,59,92,110,32,32,116,104,105,115,46,95,99,108,101,97,114,78,117,109,98,101,114,70,111,114,109,97,116,40,108,111,99,97,108,101,44,32,102,111,114,109,97,116,41,59,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,109,101,114,103,101,78,117,109,98,101,114,70,111,114,109,97,116,32,61,32,102,117,110,99,116,105,111,110,32,109,101,114,103,101,78,117,109,98,101,114,70,111,114,109,97,116,32,40,108,111,99,97,108,101,44,32,102,111,114,109,97,116,41,32,123,92,110,32,32,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,46,110,117,109,98,101,114,70,111,114,109,97,116,115,44,32,108,111,99,97,108,101,44,32,109,101,114,103,101,40,116,104,105,115,46,95,118,109,46,110,117,109,98,101,114,70,111,114,109,97,116,115,91,108,111,99,97,108,101,93,32,124,124,32,123,125,44,32,102,111,114,109,97,116,41,41,59,92,110,32,32,116,104,105,115,46,95,99,108,101,97,114,78,117,109,98,101,114,70,111,114,109,97,116,40,108,111,99,97,108,101,44,32,102,111,114,109,97,116,41,59,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,99,108,101,97,114,78,117,109,98,101,114,70,111,114,109,97,116,32,61,32,102,117,110,99,116,105,111,110,32,95,99,108,101,97,114,78,117,109,98,101,114,70,111,114,109,97,116,32,40,108,111,99,97,108,101,44,32,102,111,114,109,97,116,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,102,111,114,109,97,116,41,32,123,92,110,32,32,32,32,118,97,114,32,105,100,32,61,32,108,111,99,97,108,101,32,43,32,92,34,95,95,92,34,32,43,32,107,101,121,59,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,105,100,41,41,32,123,92,110,32,32,32,32,32,32,99,111,110,116,105,110,117,101,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,100,101,108,101,116,101,32,116,104,105,115,46,95,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,115,91,105,100,93,59,92,110,32,32,125,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,116,101,114,32,40,92,110,32,32,118,97,108,117,101,44,92,110,32,32,108,111,99,97,108,101,44,92,110,32,32,102,97,108,108,98,97,99,107,44,92,110,32,32,110,117,109,98,101,114,70,111,114,109,97,116,115,44,92,110,32,32,107,101,121,44,92,110,32,32,111,112,116,105,111,110,115,92,110,41,32,123,92,110,32,32,118,97,114,32,95,108,111,99,97,108,101,32,61,32,108,111,99,97,108,101,59,92,110,32,32,118,97,114,32,102,111,114,109,97,116,115,32,61,32,110,117,109,98,101,114,70,111,114,109,97,116,115,91,95,108,111,99,97,108,101,93,59,92,110,92,110,32,32,118,97,114,32,99,104,97,105,110,32,61,32,116,104,105,115,46,95,103,101,116,76,111,99,97,108,101,67,104,97,105,110,40,108,111,99,97,108,101,44,32,102,97,108,108,98,97,99,107,41,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,99,104,97,105,110,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,32,61,32,95,108,111,99,97,108,101,59,92,110,32,32,32,32,118,97,114,32,115,116,101,112,32,61,32,99,104,97,105,110,91,105,93,59,92,110,32,32,32,32,102,111,114,109,97,116,115,32,61,32,110,117,109,98,101,114,70,111,114,109,97,116,115,91,115,116,101,112,93,59,92,110,32,32,32,32,95,108,111,99,97,108,101,32,61,32,115,116,101,112,59,92,110,32,32,32,32,47,47,32,102,97,108,108,98,97,99,107,32,108,111,99,97,108,101,92,110,32,32,32,32,105,102,32,40,105,115,78,117,108,108,40,102,111,114,109,97,116,115,41,32,124,124,32,105,115,78,117,108,108,40,102,111,114,109,97,116,115,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,116,101,112,32,33,61,61,32,108,111,99,97,108,101,32,38,38,32,92,34,100,101,118,101,108,111,112,109,101,110,116,92,34,32,33,61,61,32,39,112,114,111,100,117,99,116,105,111,110,39,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,40,107,101,121,41,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,40,92,34,70,97,108,108,32,98,97,99,107,32,116,111,32,39,92,34,32,43,32,115,116,101,112,32,43,32,92,34,39,32,110,117,109,98,101,114,32,102,111,114,109,97,116,115,32,102,114,111,109,32,39,92,34,32,43,32,99,117,114,114,101,110,116,32,43,32,92,34,39,32,110,117,109,98,101,114,32,102,111,114,109,97,116,115,46,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,105,115,78,117,108,108,40,102,111,114,109,97,116,115,41,32,124,124,32,105,115,78,117,108,108,40,102,111,114,109,97,116,115,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,118,97,114,32,102,111,114,109,97,116,32,61,32,102,111,114,109,97,116,115,91,107,101,121,93,59,92,110,92,110,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,114,59,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,102,32,111,112,116,105,111,110,115,32,115,112,101,99,105,102,105,101,100,32,45,32,99,114,101,97,116,101,32,111,110,101,32,116,105,109,101,32,110,117,109,98,101,114,32,102,111,114,109,97,116,116,101,114,92,110,32,32,32,32,32,32,102,111,114,109,97,116,116,101,114,32,61,32,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,95,108,111,99,97,108,101,44,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,32,102,111,114,109,97,116,44,32,111,112,116,105,111,110,115,41,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,100,32,61,32,95,108,111,99,97,108,101,32,43,32,92,34,95,95,92,34,32,43,32,107,101,121,59,92,110,32,32,32,32,32,32,102,111,114,109,97,116,116,101,114,32,61,32,116,104,105,115,46,95,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,115,91,105,100,93,59,92,110,32,32,32,32,32,32,105,102,32,40,33,102,111,114,109,97,116,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,109,97,116,116,101,114,32,61,32,116,104,105,115,46,95,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,115,91,105,100,93,32,61,32,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,95,108,111,99,97,108,101,44,32,102,111,114,109,97,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,102,111,114,109,97,116,116,101,114,92,110,32,32,125,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,110,32,61,32,102,117,110,99,116,105,111,110,32,95,110,32,40,118,97,108,117,101,44,32,108,111,99,97,108,101,44,32,107,101,121,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,33,86,117,101,73,49,56,110,46,97,118,97,105,108,97,98,105,108,105,116,105,101,115,46,110,117,109,98,101,114,70,111,114,109,97,116,41,32,123,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,39,67,97,110,110,111,116,32,102,111,114,109,97,116,32,97,32,78,117,109,98,101,114,32,118,97,108,117,101,32,100,117,101,32,116,111,32,110,111,116,32,115,117,112,112,111,114,116,101,100,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,46,39,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,39,39,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,110,102,32,61,32,33,111,112,116,105,111,110,115,32,63,32,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,108,111,99,97,108,101,41,32,58,32,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,108,111,99,97,108,101,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,102,46,102,111,114,109,97,116,40,118,97,108,117,101,41,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,102,111,114,109,97,116,116,101,114,32,61,32,116,104,105,115,46,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,116,101,114,40,118,97,108,117,101,44,32,108,111,99,97,108,101,44,32,116,104,105,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,44,32,116,104,105,115,46,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,115,40,41,44,32,107,101,121,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,118,97,114,32,114,101,116,32,61,32,102,111,114,109,97,116,116,101,114,32,38,38,32,102,111,114,109,97,116,116,101,114,46,102,111,114,109,97,116,40,118,97,108,117,101,41,59,92,110,32,32,105,102,32,40,116,104,105,115,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,40,114,101,116,41,41,32,123,92,110,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,40,107,101,121,41,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,40,92,34,70,97,108,108,32,98,97,99,107,32,116,111,32,110,117,109,98,101,114,32,108,111,99,97,108,105,122,97,116,105,111,110,32,111,102,32,114,111,111,116,58,32,107,101,121,32,39,92,34,32,43,32,107,101,121,32,43,32,92,34,39,46,92,34,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,114,111,111,116,41,32,123,32,116,104,114,111,119,32,69,114,114,111,114,40,39,117,110,101,120,112,101,99,116,101,100,32,101,114,114,111,114,39,41,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,111,116,46,36,105,49,56,110,46,110,40,118,97,108,117,101,44,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,32,123,32,107,101,121,58,32,107,101,121,44,32,108,111,99,97,108,101,58,32,108,111,99,97,108,101,32,125,44,32,111,112,116,105,111,110,115,41,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,116,32,124,124,32,39,39,92,110,32,32,125,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,110,32,61,32,102,117,110,99,116,105,111,110,32,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,62,32,48,32,41,32,97,114,103,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,43,32,49,32,93,59,92,110,92,110,32,32,118,97,114,32,108,111,99,97,108,101,32,61,32,116,104,105,115,46,108,111,99,97,108,101,59,92,110,32,32,118,97,114,32,107,101,121,32,61,32,110,117,108,108,59,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,110,117,108,108,59,92,110,92,110,32,32,105,102,32,40,97,114,103,115,46,108,101,110,103,116,104,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,83,116,114,105,110,103,40,97,114,103,115,91,48,93,41,41,32,123,92,110,32,32,32,32,32,32,107,101,121,32,61,32,97,114,103,115,91,48,93,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,79,98,106,101,99,116,40,97,114,103,115,91,48,93,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,97,114,103,115,91,48,93,46,108,111,99,97,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,108,111,99,97,108,101,32,61,32,97,114,103,115,91,48,93,46,108,111,99,97,108,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,97,114,103,115,91,48,93,46,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,32,61,32,97,114,103,115,91,48,93,46,107,101,121,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,70,105,108,116,101,114,32,111,117,116,32,110,117,109,98,101,114,32,102,111,114,109,97,116,32,111,112,116,105,111,110,115,32,111,110,108,121,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,97,114,103,115,91,48,93,41,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,97,99,99,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,98,106,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,110,99,108,117,100,101,115,40,110,117,109,98,101,114,70,111,114,109,97,116,75,101,121,115,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,32,97,99,99,44,32,40,32,111,98,106,32,61,32,123,125,44,32,111,98,106,91,107,101,121,93,32,61,32,97,114,103,115,91,48,93,91,107,101,121,93,44,32,111,98,106,32,41,41,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,99,99,92,110,32,32,32,32,32,32,125,44,32,110,117,108,108,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,97,114,103,115,46,108,101,110,103,116,104,32,61,61,61,32,50,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,83,116,114,105,110,103,40,97,114,103,115,91,48,93,41,41,32,123,92,110,32,32,32,32,32,32,107,101,121,32,61,32,97,114,103,115,91,48,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,105,115,83,116,114,105,110,103,40,97,114,103,115,91,49,93,41,41,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,101,32,61,32,97,114,103,115,91,49,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,110,40,118,97,108,117,101,44,32,108,111,99,97,108,101,44,32,107,101,121,44,32,111,112,116,105,111,110,115,41,92,110,125,59,92,110,92,110,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,46,95,110,116,112,32,61,32,102,117,110,99,116,105,111,110,32,95,110,116,112,32,40,118,97,108,117,101,44,32,108,111,99,97,108,101,44,32,107,101,121,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,33,86,117,101,73,49,56,110,46,97,118,97,105,108,97,98,105,108,105,116,105,101,115,46,110,117,109,98,101,114,70,111,114,109,97,116,41,32,123,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,39,67,97,110,110,111,116,32,102,111,114,109,97,116,32,116,111,32,112,97,114,116,115,32,97,32,78,117,109,98,101,114,32,118,97,108,117,101,32,100,117,101,32,116,111,32,110,111,116,32,115,117,112,112,111,114,116,101,100,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,46,39,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,91,93,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,110,102,32,61,32,33,111,112,116,105,111,110,115,32,63,32,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,108,111,99,97,108,101,41,32,58,32,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,108,111,99,97,108,101,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,102,46,102,111,114,109,97,116,84,111,80,97,114,116,115,40,118,97,108,117,101,41,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,102,111,114,109,97,116,116,101,114,32,61,32,116,104,105,115,46,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,116,101,114,40,118,97,108,117,101,44,32,108,111,99,97,108,101,44,32,116,104,105,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,44,32,116,104,105,115,46,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,115,40,41,44,32,107,101,121,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,118,97,114,32,114,101,116,32,61,32,102,111,114,109,97,116,116,101,114,32,38,38,32,102,111,114,109,97,116,116,101,114,46,102,111,114,109,97,116,84,111,80,97,114,116,115,40,118,97,108,117,101,41,59,92,110,32,32,105,102,32,40,116,104,105,115,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,40,114,101,116,41,41,32,123,92,110,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,116,104,105,115,46,95,105,115,83,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,40,92,34,70,97,108,108,32,98,97,99,107,32,116,111,32,102,111,114,109,97,116,32,110,117,109,98,101,114,32,116,111,32,112,97,114,116,115,32,111,102,32,114,111,111,116,58,32,107,101,121,32,39,92,34,32,43,32,107,101,121,32,43,32,92,34,39,32,46,92,34,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,95,114,111,111,116,41,32,123,32,116,104,114,111,119,32,69,114,114,111,114,40,39,117,110,101,120,112,101,99,116,101,100,32,101,114,114,111,114,39,41,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,111,116,46,36,105,49,56,110,46,95,110,116,112,40,118,97,108,117,101,44,32,108,111,99,97,108,101,44,32,107,101,121,44,32,111,112,116,105,111,110,115,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,116,32,124,124,32,91,93,92,110,32,32,125,92,110,125,59,92,110,92,110,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,32,86,117,101,73,49,56,110,46,112,114,111,116,111,116,121,112,101,44,32,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,32,41,59,92,110,92,110,118,97,114,32,97,118,97,105,108,97,98,105,108,105,116,105,101,115,59,92,110,47,47,32,36,70,108,111,119,70,105,120,77,101,92,110,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,86,117,101,73,49,56,110,44,32,39,97,118,97,105,108,97,98,105,108,105,116,105,101,115,39,44,32,123,92,110,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,97,118,97,105,108,97,98,105,108,105,116,105,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,116,108,68,101,102,105,110,101,100,32,61,32,116,121,112,101,111,102,32,73,110,116,108,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,59,92,110,32,32,32,32,32,32,97,118,97,105,108,97,98,105,108,105,116,105,101,115,32,61,32,123,92,110,32,32,32,32,32,32,32,32,100,97,116,101,84,105,109,101,70,111,114,109,97,116,58,32,105,110,116,108,68,101,102,105,110,101,100,32,38,38,32,116,121,112,101,111,102,32,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,44,92,110,32,32,32,32,32,32,32,32,110,117,109,98,101,114,70,111,114,109,97,116,58,32,105,110,116,108,68,101,102,105,110,101,100,32,38,38,32,116,121,112,101,111,102,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,97,118,97,105,108,97,98,105,108,105,116,105,101,115,92,110,32,32,125,92,110,125,41,59,92,110,92,110,86,117,101,73,49,56,110,46,105,110,115,116,97,108,108,32,61,32,105,110,115,116,97,108,108,59,92,110,86,117,101,73,49,56,110,46,118,101,114,115,105,111,110,32,61,32,39,56,46,50,52,46,52,39,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,86,117,101,73,49,56,110,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,105,49,56,110,47,100,105,115,116,47,118,117,101,45,105,49,56,110,46,101,115,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,112,114,111,112,101,114,116,121,45,100,101,99,111,114,97,116,111,114,47,108,105,98,47,118,117,101,45,112,114,111,112,101,114,116,121,45,100,101,99,111,114,97,116,111,114,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,112,114,111,112,101,114,116,121,45,100,101,99,111,114,97,116,111,114,47,108,105,98,47,118,117,101,45,112,114,111,112,101,114,116,121,45,100,101,99,111,114,97,116,111,114,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,67,111,109,112,111,110,101,110,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,118,117,101,95,99,108,97,115,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,69,109,105,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,69,109,105,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,110,106,101,99,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,110,106,101,99,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,73,110,106,101,99,116,82,101,97,99,116,105,118,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,73,110,106,101,99,116,82,101,97,99,116,105,118,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,105,120,105,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,118,117,101,95,99,108,97,115,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,105,120,105,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,77,111,100,101,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,77,111,100,101,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,114,111,112,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,114,111,112,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,114,111,112,83,121,110,99,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,114,111,112,83,121,110,99,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,114,111,118,105,100,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,114,111,118,105,100,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,80,114,111,118,105,100,101,82,101,97,99,116,105,118,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,80,114,111,118,105,100,101,82,101,97,99,116,105,118,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,82,101,102,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,82,101,102,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,86,117,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,87,97,116,99,104,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,87,97,116,99,104,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,99,108,97,115,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,45,99,108,97,115,115,45,99,111,109,112,111,110,101,110,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,99,108,97,115,115,45,99,111,109,112,111,110,101,110,116,47,100,105,115,116,47,118,117,101,45,99,108,97,115,115,45,99,111,109,112,111,110,101,110,116,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,42,32,118,117,101,45,112,114,111,112,101,114,116,121,45,100,101,99,111,114,97,116,111,114,32,118,101,114,115,111,110,32,56,46,53,46,49,32,77,73,84,32,76,73,67,69,78,83,69,32,99,111,112,121,114,105,103,104,116,32,50,48,50,48,32,107,97,111,114,117,110,51,52,51,32,42,47,92,110,47,47,47,32,60,114,101,102,101,114,101,110,99,101,32,116,121,112,101,115,61,39,114,101,102,108,101,99,116,45,109,101,116,97,100,97,116,97,39,47,62,92,110,92,110,92,110,92,110,92,110,47,42,42,32,85,115,101,100,32,102,111,114,32,107,101,121,105,110,103,32,114,101,97,99,116,105,118,101,32,112,114,111,118,105,100,101,47,105,110,106,101,99,116,32,112,114,111,112,101,114,116,105,101,115,32,42,47,92,110,118,97,114,32,114,101,97,99,116,105,118,101,73,110,106,101,99,116,75,101,121,32,61,32,39,95,95,114,101,97,99,116,105,118,101,73,110,106,101,99,116,95,95,39,59,92,110,47,42,42,92,110,32,42,32,100,101,99,111,114,97,116,111,114,32,111,102,32,97,110,32,105,110,106,101,99,116,92,110,32,42,32,64,112,97,114,97,109,32,102,114,111,109,32,107,101,121,92,110,32,42,32,64,114,101,116,117,114,110,32,80,114,111,112,101,114,116,121,68,101,99,111,114,97,116,111,114,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,73,110,106,101,99,116,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,118,117,101,95,99,108,97,115,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,68,101,99,111,114,97,116,111,114,41,40,102,117,110,99,116,105,111,110,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,105,110,106,101,99,116,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,105,110,106,101,99,116,32,61,32,123,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,105,110,106,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,105,110,106,101,99,116,91,107,101,121,93,32,61,32,111,112,116,105,111,110,115,32,124,124,32,107,101,121,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,125,92,110,47,42,42,92,110,32,42,32,100,101,99,111,114,97,116,111,114,32,111,102,32,97,32,114,101,97,99,116,105,118,101,32,105,110,106,101,99,116,92,110,32,42,32,64,112,97,114,97,109,32,102,114,111,109,32,107,101,121,92,110,32,42,32,64,114,101,116,117,114,110,32,80,114,111,112,101,114,116,121,68,101,99,111,114,97,116,111,114,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,73,110,106,101,99,116,82,101,97,99,116,105,118,101,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,118,117,101,95,99,108,97,115,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,68,101,99,111,114,97,116,111,114,41,40,102,117,110,99,116,105,111,110,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,105,110,106,101,99,116,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,105,110,106,101,99,116,32,61,32,123,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,105,110,106,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,114,111,109,75,101,121,95,49,32,61,32,33,33,111,112,116,105,111,110,115,32,63,32,111,112,116,105,111,110,115,46,102,114,111,109,32,124,124,32,111,112,116,105,111,110,115,32,58,32,107,101,121,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,86,97,108,95,49,32,61,32,40,33,33,111,112,116,105,111,110,115,32,38,38,32,111,112,116,105,111,110,115,46,100,101,102,97,117,108,116,41,32,124,124,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,99,111,109,112,117,116,101,100,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,99,111,109,112,117,116,101,100,32,61,32,123,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,99,111,109,112,117,116,101,100,91,107,101,121,93,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,98,106,32,61,32,116,104,105,115,91,114,101,97,99,116,105,118,101,73,110,106,101,99,116,75,101,121,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,32,63,32,111,98,106,91,102,114,111,109,75,101,121,95,49,93,32,58,32,100,101,102,97,117,108,116,86,97,108,95,49,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,105,110,106,101,99,116,91,114,101,97,99,116,105,118,101,73,110,106,101,99,116,75,101,121,93,32,61,32,114,101,97,99,116,105,118,101,73,110,106,101,99,116,75,101,121,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,112,114,111,100,117,99,101,80,114,111,118,105,100,101,40,111,114,105,103,105,110,97,108,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,118,105,100,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,118,32,61,32,116,121,112,101,111,102,32,111,114,105,103,105,110,97,108,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,111,114,105,103,105,110,97,108,46,99,97,108,108,40,116,104,105,115,41,32,58,32,111,114,105,103,105,110,97,108,59,92,110,32,32,32,32,32,32,32,32,114,118,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,114,118,32,124,124,32,110,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,47,47,32,115,101,116,32,114,101,97,99,116,105,118,101,32,115,101,114,118,105,99,101,115,32,40,112,114,111,112,97,103,97,116,101,115,32,112,114,101,118,105,111,117,115,32,115,101,114,118,105,99,101,115,32,105,102,32,110,101,99,101,115,115,97,114,121,41,92,110,32,32,32,32,32,32,32,32,114,118,91,114,101,97,99,116,105,118,101,73,110,106,101,99,116,75,101,121,93,32,61,32,116,104,105,115,91,114,101,97,99,116,105,118,101,73,110,106,101,99,116,75,101,121,93,32,124,124,32,123,125,59,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,105,110,32,112,114,111,118,105,100,101,46,109,97,110,97,103,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,118,91,112,114,111,118,105,100,101,46,109,97,110,97,103,101,100,91,105,93,93,32,61,32,116,104,105,115,91,105,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,95,108,111,111,112,95,49,32,61,32,102,117,110,99,116,105,111,110,32,40,105,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,118,91,112,114,111,118,105,100,101,46,109,97,110,97,103,101,100,82,101,97,99,116,105,118,101,91,105,93,93,32,61,32,116,104,105,115,95,49,91,105,93,59,32,47,47,32,68,117,112,108,105,99,97,116,101,115,32,116,104,101,32,98,101,104,97,118,105,111,114,32,111,102,32,96,64,80,114,111,118,105,100,101,96,92,110,32,32,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,114,118,91,114,101,97,99,116,105,118,101,73,110,106,101,99,116,75,101,121,93,44,32,112,114,111,118,105,100,101,46,109,97,110,97,103,101,100,82,101,97,99,116,105,118,101,91,105,93,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,95,116,104,105,115,91,105,93,59,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,116,104,105,115,95,49,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,105,110,32,112,114,111,118,105,100,101,46,109,97,110,97,103,101,100,82,101,97,99,116,105,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,108,111,111,112,95,49,40,105,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,118,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,112,114,111,118,105,100,101,46,109,97,110,97,103,101,100,32,61,32,123,125,59,92,110,32,32,32,32,112,114,111,118,105,100,101,46,109,97,110,97,103,101,100,82,101,97,99,116,105,118,101,32,61,32,123,125,59,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,118,105,100,101,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,110,101,101,100,84,111,80,114,111,100,117,99,101,80,114,111,118,105,100,101,40,111,114,105,103,105,110,97,108,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,116,121,112,101,111,102,32,111,114,105,103,105,110,97,108,32,33,61,61,32,39,102,117,110,99,116,105,111,110,39,32,124,124,92,110,32,32,32,32,32,32,32,32,40,33,111,114,105,103,105,110,97,108,46,109,97,110,97,103,101,100,32,38,38,32,33,111,114,105,103,105,110,97,108,46,109,97,110,97,103,101,100,82,101,97,99,116,105,118,101,41,41,59,92,110,125,92,110,47,42,42,92,110,32,42,32,100,101,99,111,114,97,116,111,114,32,111,102,32,97,32,112,114,111,118,105,100,101,92,110,32,42,32,64,112,97,114,97,109,32,107,101,121,32,107,101,121,92,110,32,42,32,64,114,101,116,117,114,110,32,80,114,111,112,101,114,116,121,68,101,99,111,114,97,116,111,114,32,124,32,118,111,105,100,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,80,114,111,118,105,100,101,40,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,118,117,101,95,99,108,97,115,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,68,101,99,111,114,97,116,111,114,41,40,102,117,110,99,116,105,111,110,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,44,32,107,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,118,105,100,101,32,61,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,112,114,111,118,105,100,101,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,101,101,100,84,111,80,114,111,100,117,99,101,80,114,111,118,105,100,101,40,112,114,111,118,105,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,118,105,100,101,32,61,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,112,114,111,118,105,100,101,32,61,32,112,114,111,100,117,99,101,80,114,111,118,105,100,101,40,112,114,111,118,105,100,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,114,111,118,105,100,101,46,109,97,110,97,103,101,100,91,107,93,32,61,32,107,101,121,32,124,124,32,107,59,92,110,32,32,32,32,125,41,59,92,110,125,92,110,47,42,42,92,110,32,42,32,100,101,99,111,114,97,116,111,114,32,111,102,32,97,32,114,101,97,99,116,105,118,101,32,112,114,111,118,105,100,101,92,110,32,42,32,64,112,97,114,97,109,32,107,101,121,32,107,101,121,92,110,32,42,32,64,114,101,116,117,114,110,32,80,114,111,112,101,114,116,121,68,101,99,111,114,97,116,111,114,32,124,32,118,111,105,100,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,80,114,111,118,105,100,101,82,101,97,99,116,105,118,101,40,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,118,117,101,95,99,108,97,115,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,68,101,99,111,114,97,116,111,114,41,40,102,117,110,99,116,105,111,110,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,44,32,107,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,118,105,100,101,32,61,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,112,114,111,118,105,100,101,59,92,110,32,32,32,32,32,32,32,32,47,47,32,105,110,106,101,99,116,32,112,97,114,101,110,116,32,114,101,97,99,116,105,118,101,32,115,101,114,118,105,99,101,115,32,40,105,102,32,97,110,121,41,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,105,110,106,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,105,110,106,101,99,116,32,61,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,105,110,106,101,99,116,32,124,124,32,123,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,105,110,106,101,99,116,91,114,101,97,99,116,105,118,101,73,110,106,101,99,116,75,101,121,93,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,114,111,109,58,32,114,101,97,99,116,105,118,101,73,110,106,101,99,116,75,101,121,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,123,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,101,101,100,84,111,80,114,111,100,117,99,101,80,114,111,118,105,100,101,40,112,114,111,118,105,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,118,105,100,101,32,61,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,112,114,111,118,105,100,101,32,61,32,112,114,111,100,117,99,101,80,114,111,118,105,100,101,40,112,114,111,118,105,100,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,112,114,111,118,105,100,101,46,109,97,110,97,103,101,100,82,101,97,99,116,105,118,101,91,107,93,32,61,32,107,101,121,32,124,124,32,107,59,92,110,32,32,32,32,125,41,59,92,110,125,92,110,47,42,42,32,64,115,101,101,32,123,64,108,105,110,107,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,45,99,108,97,115,115,45,99,111,109,112,111,110,101,110,116,47,98,108,111,98,47,109,97,115,116,101,114,47,115,114,99,47,114,101,102,108,101,99,116,46,116,115,125,32,42,47,92,110,118,97,114,32,114,101,102,108,101,99,116,77,101,116,97,100,97,116,97,73,115,83,117,112,112,111,114,116,101,100,32,61,32,116,121,112,101,111,102,32,82,101,102,108,101,99,116,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,116,121,112,101,111,102,32,82,101,102,108,101,99,116,46,103,101,116,77,101,116,97,100,97,116,97,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,59,92,110,102,117,110,99,116,105,111,110,32,97,112,112,108,121,77,101,116,97,100,97,116,97,40,111,112,116,105,111,110,115,44,32,116,97,114,103,101,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,105,102,32,40,114,101,102,108,101,99,116,77,101,116,97,100,97,116,97,73,115,83,117,112,112,111,114,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,112,116,105,111,110,115,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,111,112,116,105,111,110,115,32,33,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,111,112,116,105,111,110,115,46,116,121,112,101,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,82,101,102,108,101,99,116,46,103,101,116,77,101,116,97,100,97,116,97,40,39,100,101,115,105,103,110,58,116,121,112,101,39,44,32,116,97,114,103,101,116,44,32,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,33,61,61,32,79,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,116,121,112,101,32,61,32,116,121,112,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,125,92,110,47,42,42,92,110,32,42,32,100,101,99,111,114,97,116,111,114,32,111,102,32,109,111,100,101,108,92,110,32,42,32,64,112,97,114,97,109,32,32,101,118,101,110,116,32,101,118,101,110,116,32,110,97,109,101,92,110,32,42,32,64,112,97,114,97,109,32,111,112,116,105,111,110,115,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,32,80,114,111,112,101,114,116,121,68,101,99,111,114,97,116,111,114,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,77,111,100,101,108,40,101,118,101,110,116,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,32,111,112,116,105,111,110,115,32,61,32,123,125,59,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,97,112,112,108,121,77,101,116,97,100,97,116,97,40,111,112,116,105,111,110,115,44,32,116,97,114,103,101,116,44,32,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,118,117,101,95,99,108,97,115,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,68,101,99,111,114,97,116,111,114,41,40,102,117,110,99,116,105,111,110,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,44,32,107,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,112,114,111,112,115,32,124,124,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,112,114,111,112,115,32,61,32,123,125,41,41,91,107,93,32,61,32,111,112,116,105,111,110,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,109,111,100,101,108,32,61,32,123,32,112,114,111,112,58,32,107,44,32,101,118,101,110,116,58,32,101,118,101,110,116,32,124,124,32,107,32,125,59,92,110,32,32,32,32,32,32,32,32,125,41,40,116,97,114,103,101,116,44,32,107,101,121,41,59,92,110,32,32,32,32,125,59,92,110,125,92,110,47,42,42,92,110,32,42,32,100,101,99,111,114,97,116,111,114,32,111,102,32,97,32,112,114,111,112,92,110,32,42,32,64,112,97,114,97,109,32,32,111,112,116,105,111,110,115,32,116,104,101,32,111,112,116,105,111,110,115,32,102,111,114,32,116,104,101,32,112,114,111,112,92,110,32,42,32,64,114,101,116,117,114,110,32,80,114,111,112,101,114,116,121,68,101,99,111,114,97,116,111,114,32,124,32,118,111,105,100,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,80,114,111,112,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,32,111,112,116,105,111,110,115,32,61,32,123,125,59,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,97,112,112,108,121,77,101,116,97,100,97,116,97,40,111,112,116,105,111,110,115,44,32,116,97,114,103,101,116,44,32,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,118,117,101,95,99,108,97,115,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,68,101,99,111,114,97,116,111,114,41,40,102,117,110,99,116,105,111,110,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,44,32,107,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,112,114,111,112,115,32,124,124,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,112,114,111,112,115,32,61,32,123,125,41,41,91,107,93,32,61,32,111,112,116,105,111,110,115,59,92,110,32,32,32,32,32,32,32,32,125,41,40,116,97,114,103,101,116,44,32,107,101,121,41,59,92,110,32,32,32,32,125,59,92,110,125,92,110,47,42,42,92,110,32,42,32,100,101,99,111,114,97,116,111,114,32,111,102,32,97,32,115,121,110,99,101,100,32,112,114,111,112,92,110,32,42,32,64,112,97,114,97,109,32,112,114,111,112,78,97,109,101,32,116,104,101,32,110,97,109,101,32,116,111,32,105,110,116,101,114,102,97,99,101,32,119,105,116,104,32,102,114,111,109,32,111,117,116,115,105,100,101,44,32,109,117,115,116,32,98,101,32,100,105,102,102,101,114,101,110,116,32,102,114,111,109,32,100,101,99,111,114,97,116,101,100,32,112,114,111,112,101,114,116,121,92,110,32,42,32,64,112,97,114,97,109,32,111,112,116,105,111,110,115,32,116,104,101,32,111,112,116,105,111,110,115,32,102,111,114,32,116,104,101,32,115,121,110,99,101,100,32,112,114,111,112,92,110,32,42,32,64,114,101,116,117,114,110,32,80,114,111,112,101,114,116,121,68,101,99,111,114,97,116,111,114,32,124,32,118,111,105,100,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,80,114,111,112,83,121,110,99,40,112,114,111,112,78,97,109,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,32,111,112,116,105,111,110,115,32,61,32,123,125,59,32,125,92,110,32,32,32,32,47,47,32,64,116,115,45,105,103,110,111,114,101,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,97,112,112,108,121,77,101,116,97,100,97,116,97,40,111,112,116,105,111,110,115,44,32,116,97,114,103,101,116,44,32,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,118,117,101,95,99,108,97,115,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,68,101,99,111,114,97,116,111,114,41,40,102,117,110,99,116,105,111,110,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,44,32,107,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,112,114,111,112,115,32,124,124,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,112,114,111,112,115,32,61,32,123,125,41,41,91,112,114,111,112,78,97,109,101,93,32,61,32,111,112,116,105,111,110,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,99,111,109,112,117,116,101,100,32,124,124,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,99,111,109,112,117,116,101,100,32,61,32,123,125,41,41,91,107,93,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,112,114,111,112,78,97,109,101,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,58,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,64,116,115,45,105,103,110,111,114,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,92,34,117,112,100,97,116,101,58,92,34,32,43,32,112,114,111,112,78,97,109,101,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,41,40,116,97,114,103,101,116,44,32,107,101,121,41,59,92,110,32,32,32,32,125,59,92,110,125,92,110,47,42,42,92,110,32,42,32,100,101,99,111,114,97,116,111,114,32,111,102,32,97,32,119,97,116,99,104,32,102,117,110,99,116,105,111,110,92,110,32,42,32,64,112,97,114,97,109,32,32,112,97,116,104,32,116,104,101,32,112,97,116,104,32,111,114,32,116,104,101,32,101,120,112,114,101,115,115,105,111,110,32,116,111,32,111,98,115,101,114,118,101,92,110,32,42,32,64,112,97,114,97,109,32,32,87,97,116,99,104,79,112,116,105,111,110,92,110,32,42,32,64,114,101,116,117,114,110,32,77,101,116,104,111,100,68,101,99,111,114,97,116,111,114,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,87,97,116,99,104,40,112,97,116,104,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,41,32,123,32,111,112,116,105,111,110,115,32,61,32,123,125,59,32,125,92,110,32,32,32,32,118,97,114,32,95,97,32,61,32,111,112,116,105,111,110,115,46,100,101,101,112,44,32,100,101,101,112,32,61,32,95,97,32,61,61,61,32,118,111,105,100,32,48,32,63,32,102,97,108,115,101,32,58,32,95,97,44,32,95,98,32,61,32,111,112,116,105,111,110,115,46,105,109,109,101,100,105,97,116,101,44,32,105,109,109,101,100,105,97,116,101,32,61,32,95,98,32,61,61,61,32,118,111,105,100,32,48,32,63,32,102,97,108,115,101,32,58,32,95,98,59,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,118,117,101,95,99,108,97,115,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,68,101,99,111,114,97,116,111,114,41,40,102,117,110,99,116,105,111,110,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,44,32,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,119,97,116,99,104,32,33,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,119,97,116,99,104,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,119,97,116,99,104,32,61,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,119,97,116,99,104,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,119,97,116,99,104,91,112,97,116,104,93,32,61,61,61,32,39,111,98,106,101,99,116,39,32,38,38,32,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,119,97,116,99,104,91,112,97,116,104,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,97,116,99,104,91,112,97,116,104,93,32,61,32,91,119,97,116,99,104,91,112,97,116,104,93,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,116,121,112,101,111,102,32,119,97,116,99,104,91,112,97,116,104,93,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,97,116,99,104,91,112,97,116,104,93,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,119,97,116,99,104,91,112,97,116,104,93,46,112,117,115,104,40,123,32,104,97,110,100,108,101,114,58,32,104,97,110,100,108,101,114,44,32,100,101,101,112,58,32,100,101,101,112,44,32,105,109,109,101,100,105,97,116,101,58,32,105,109,109,101,100,105,97,116,101,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,125,92,110,47,47,32,67,111,100,101,32,99,111,112,105,101,100,32,102,114,111,109,32,86,117,101,47,115,114,99,47,115,104,97,114,101,100,47,117,116,105,108,46,106,115,92,110,118,97,114,32,104,121,112,104,101,110,97,116,101,82,69,32,61,32,47,92,92,66,40,91,65,45,90,93,41,47,103,59,92,110,118,97,114,32,104,121,112,104,101,110,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,114,41,32,123,32,114,101,116,117,114,110,32,115,116,114,46,114,101,112,108,97,99,101,40,104,121,112,104,101,110,97,116,101,82,69,44,32,39,45,36,49,39,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,32,125,59,92,110,47,42,42,92,110,32,42,32,100,101,99,111,114,97,116,111,114,32,111,102,32,97,110,32,101,118,101,110,116,45,101,109,105,116,116,101,114,32,102,117,110,99,116,105,111,110,92,110,32,42,32,64,112,97,114,97,109,32,32,101,118,101,110,116,32,84,104,101,32,110,97,109,101,32,111,102,32,116,104,101,32,101,118,101,110,116,92,110,32,42,32,64,114,101,116,117,114,110,32,77,101,116,104,111,100,68,101,99,111,114,97,116,111,114,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,69,109,105,116,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,95,116,97,114,103,101,116,44,32,112,114,111,112,101,114,116,121,75,101,121,44,32,100,101,115,99,114,105,112,116,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,104,121,112,104,101,110,97,116,101,40,112,114,111,112,101,114,116,121,75,101,121,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,114,105,103,105,110,97,108,32,61,32,100,101,115,99,114,105,112,116,111,114,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,100,101,115,99,114,105,112,116,111,114,46,118,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,32,101,109,105,116,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,95,105,32,61,32,48,59,32,95,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,95,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,114,103,115,91,95,105,93,32,61,32,97,114,103,117,109,101,110,116,115,91,95,105,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,109,105,116,32,61,32,102,117,110,99,116,105,111,110,32,40,114,101,116,117,114,110,86,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,101,109,105,116,78,97,109,101,32,61,32,101,118,101,110,116,32,124,124,32,107,101,121,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,114,101,116,117,114,110,86,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,114,103,115,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,101,109,105,116,78,97,109,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,97,114,103,115,46,108,101,110,103,116,104,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,101,109,105,116,78,97,109,101,44,32,97,114,103,115,91,48,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,46,97,112,112,108,121,40,95,116,104,105,115,44,32,91,101,109,105,116,78,97,109,101,93,46,99,111,110,99,97,116,40,97,114,103,115,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,114,103,115,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,101,109,105,116,78,97,109,101,44,32,114,101,116,117,114,110,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,97,114,103,115,46,108,101,110,103,116,104,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,40,101,109,105,116,78,97,109,101,44,32,114,101,116,117,114,110,86,97,108,117,101,44,32,97,114,103,115,91,48,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,36,101,109,105,116,46,97,112,112,108,121,40,95,116,104,105,115,44,32,91,101,109,105,116,78,97,109,101,44,32,114,101,116,117,114,110,86,97,108,117,101,93,46,99,111,110,99,97,116,40,97,114,103,115,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,116,117,114,110,86,97,108,117,101,32,61,32,111,114,105,103,105,110,97,108,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,80,114,111,109,105,115,101,40,114,101,116,117,114,110,86,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,86,97,108,117,101,46,116,104,101,110,40,101,109,105,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,109,105,116,40,114,101,116,117,114,110,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,116,117,114,110,86,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,59,92,110,125,92,110,47,42,42,92,110,32,42,32,100,101,99,111,114,97,116,111,114,32,111,102,32,97,32,114,101,102,32,112,114,111,112,92,110,32,42,32,64,112,97,114,97,109,32,114,101,102,75,101,121,32,116,104,101,32,114,101,102,32,107,101,121,32,100,101,102,105,110,101,100,32,105,110,32,116,101,109,112,108,97,116,101,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,82,101,102,40,114,101,102,75,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,118,117,101,95,99,108,97,115,115,95,99,111,109,112,111,110,101,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,68,101,99,111,114,97,116,111,114,41,40,102,117,110,99,116,105,111,110,32,40,111,112,116,105,111,110,115,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,99,111,109,112,117,116,101,100,32,61,32,111,112,116,105,111,110,115,46,99,111,109,112,117,116,101,100,32,124,124,32,123,125,59,92,110,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,99,111,109,112,117,116,101,100,91,107,101,121,93,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,99,104,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,114,101,102,115,91,114,101,102,75,101,121,32,124,124,32,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,105,115,80,114,111,109,105,115,101,40,111,98,106,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,111,98,106,32,105,110,115,116,97,110,99,101,111,102,32,80,114,111,109,105,115,101,32,124,124,32,40,111,98,106,32,38,38,32,116,121,112,101,111,102,32,111,98,106,46,116,104,101,110,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,59,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,112,114,111,112,101,114,116,121,45,100,101,99,111,114,97,116,111,114,47,108,105,98,47,118,117,101,45,112,114,111,112,101,114,116,121,45,100,101,99,111,114,97,116,111,114,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,114,111,117,116,101,114,47,100,105,115,116,47,118,117,101,45,114,111,117,116,101,114,46,101,115,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,114,111,117,116,101,114,47,100,105,115,116,47,118,117,101,45,114,111,117,116,101,114,46,101,115,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,33,92,110,32,32,42,32,118,117,101,45,114,111,117,116,101,114,32,118,51,46,53,46,49,92,110,32,32,42,32,40,99,41,32,50,48,50,49,32,69,118,97,110,32,89,111,117,92,110,32,32,42,32,64,108,105,99,101,110,115,101,32,77,73,84,92,110,32,32,42,47,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,97,115,115,101,114,116,32,40,99,111,110,100,105,116,105,111,110,44,32,109,101,115,115,97,103,101,41,32,123,92,110,32,32,105,102,32,40,33,99,111,110,100,105,116,105,111,110,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,40,92,34,91,118,117,101,45,114,111,117,116,101,114,93,32,92,34,32,43,32,109,101,115,115,97,103,101,41,41,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,119,97,114,110,32,40,99,111,110,100,105,116,105,111,110,44,32,109,101,115,115,97,103,101,41,32,123,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,99,111,110,100,105,116,105,111,110,41,32,123,92,110,32,32,32,32,116,121,112,101,111,102,32,99,111,110,115,111,108,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,99,111,110,115,111,108,101,46,119,97,114,110,40,40,92,34,91,118,117,101,45,114,111,117,116,101,114,93,32,92,34,32,43,32,109,101,115,115,97,103,101,41,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,116,101,110,100,32,40,97,44,32,98,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,98,41,32,123,92,110,32,32,32,32,97,91,107,101,121,93,32,61,32,98,91,107,101,121,93,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,97,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,101,110,99,111,100,101,82,101,115,101,114,118,101,82,69,32,61,32,47,91,33,39,40,41,42,93,47,103,59,92,110,118,97,114,32,101,110,99,111,100,101,82,101,115,101,114,118,101,82,101,112,108,97,99,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,99,41,32,123,32,114,101,116,117,114,110,32,39,37,39,32,43,32,99,46,99,104,97,114,67,111,100,101,65,116,40,48,41,46,116,111,83,116,114,105,110,103,40,49,54,41,59,32,125,59,92,110,118,97,114,32,99,111,109,109,97,82,69,32,61,32,47,37,50,67,47,103,59,92,110,92,110,47,47,32,102,105,120,101,100,32,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,32,119,104,105,99,104,32,105,115,32,109,111,114,101,32,99,111,110,102,111,114,109,97,110,116,32,116,111,32,82,70,67,51,57,56,54,58,92,110,47,47,32,45,32,101,115,99,97,112,101,115,32,91,33,39,40,41,42,93,92,110,47,47,32,45,32,112,114,101,115,101,114,118,101,32,99,111,109,109,97,115,92,110,118,97,114,32,101,110,99,111,100,101,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,114,41,32,123,32,114,101,116,117,114,110,32,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,115,116,114,41,92,110,32,32,32,32,46,114,101,112,108,97,99,101,40,101,110,99,111,100,101,82,101,115,101,114,118,101,82,69,44,32,101,110,99,111,100,101,82,101,115,101,114,118,101,82,101,112,108,97,99,101,114,41,92,110,32,32,32,32,46,114,101,112,108,97,99,101,40,99,111,109,109,97,82,69,44,32,39,44,39,41,59,32,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,99,111,100,101,32,40,115,116,114,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,115,116,114,41,92,110,32,32,125,32,99,97,116,99,104,32,40,101,114,114,41,32,123,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,102,97,108,115,101,44,32,40,92,34,69,114,114,111,114,32,100,101,99,111,100,105,110,103,32,92,92,92,34,92,34,32,43,32,115,116,114,32,43,32,92,34,92,92,92,34,46,32,76,101,97,118,105,110,103,32,105,116,32,105,110,116,97,99,116,46,92,34,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,115,116,114,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,81,117,101,114,121,32,40,92,110,32,32,113,117,101,114,121,44,92,110,32,32,101,120,116,114,97,81,117,101,114,121,44,92,110,32,32,95,112,97,114,115,101,81,117,101,114,121,92,110,41,32,123,92,110,32,32,105,102,32,40,32,101,120,116,114,97,81,117,101,114,121,32,61,61,61,32,118,111,105,100,32,48,32,41,32,101,120,116,114,97,81,117,101,114,121,32,61,32,123,125,59,92,110,92,110,32,32,118,97,114,32,112,97,114,115,101,32,61,32,95,112,97,114,115,101,81,117,101,114,121,32,124,124,32,112,97,114,115,101,81,117,101,114,121,59,92,110,32,32,118,97,114,32,112,97,114,115,101,100,81,117,101,114,121,59,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,112,97,114,115,101,100,81,117,101,114,121,32,61,32,112,97,114,115,101,40,113,117,101,114,121,32,124,124,32,39,39,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,116,114,117,101,32,38,38,32,119,97,114,110,40,102,97,108,115,101,44,32,101,46,109,101,115,115,97,103,101,41,59,92,110,32,32,32,32,112,97,114,115,101,100,81,117,101,114,121,32,61,32,123,125,59,92,110,32,32,125,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,101,120,116,114,97,81,117,101,114,121,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,101,120,116,114,97,81,117,101,114,121,91,107,101,121,93,59,92,110,32,32,32,32,112,97,114,115,101,100,81,117,101,114,121,91,107,101,121,93,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,117,101,41,92,110,32,32,32,32,32,32,63,32,118,97,108,117,101,46,109,97,112,40,99,97,115,116,81,117,101,114,121,80,97,114,97,109,86,97,108,117,101,41,92,110,32,32,32,32,32,32,58,32,99,97,115,116,81,117,101,114,121,80,97,114,97,109,86,97,108,117,101,40,118,97,108,117,101,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,112,97,114,115,101,100,81,117,101,114,121,92,110,125,92,110,92,110,118,97,114,32,99,97,115,116,81,117,101,114,121,80,97,114,97,109,86,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,32,114,101,116,117,114,110,32,40,118,97,108,117,101,32,61,61,32,110,117,108,108,32,124,124,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,39,111,98,106,101,99,116,39,32,63,32,118,97,108,117,101,32,58,32,83,116,114,105,110,103,40,118,97,108,117,101,41,41,59,32,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,81,117,101,114,121,32,40,113,117,101,114,121,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,123,125,59,92,110,92,110,32,32,113,117,101,114,121,32,61,32,113,117,101,114,121,46,116,114,105,109,40,41,46,114,101,112,108,97,99,101,40,47,94,40,92,92,63,124,35,124,38,41,47,44,32,39,39,41,59,92,110,92,110,32,32,105,102,32,40,33,113,117,101,114,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,92,110,32,32,125,92,110,92,110,32,32,113,117,101,114,121,46,115,112,108,105,116,40,39,38,39,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,97,114,97,109,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,116,115,32,61,32,112,97,114,97,109,46,114,101,112,108,97,99,101,40,47,92,92,43,47,103,44,32,39,32,39,41,46,115,112,108,105,116,40,39,61,39,41,59,92,110,32,32,32,32,118,97,114,32,107,101,121,32,61,32,100,101,99,111,100,101,40,112,97,114,116,115,46,115,104,105,102,116,40,41,41,59,92,110,32,32,32,32,118,97,114,32,118,97,108,32,61,32,112,97,114,116,115,46,108,101,110,103,116,104,32,62,32,48,32,63,32,100,101,99,111,100,101,40,112,97,114,116,115,46,106,111,105,110,40,39,61,39,41,41,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,105,102,32,40,114,101,115,91,107,101,121,93,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,114,101,115,91,107,101,121,93,32,61,32,118,97,108,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,101,115,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,114,101,115,91,107,101,121,93,46,112,117,115,104,40,118,97,108,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,115,91,107,101,121,93,32,61,32,91,114,101,115,91,107,101,121,93,44,32,118,97,108,93,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,114,105,110,103,105,102,121,81,117,101,114,121,32,40,111,98,106,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,111,98,106,92,110,32,32,32,32,63,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,41,92,110,32,32,32,32,32,32,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,118,97,108,32,61,32,111,98,106,91,107,101,121,93,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,39,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,110,99,111,100,101,40,107,101,121,41,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,118,97,108,50,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,50,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,50,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,101,110,99,111,100,101,40,107,101,121,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,101,110,99,111,100,101,40,107,101,121,41,32,43,32,39,61,39,32,43,32,101,110,99,111,100,101,40,118,97,108,50,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,46,106,111,105,110,40,39,38,39,41,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,101,110,99,111,100,101,40,107,101,121,41,32,43,32,39,61,39,32,43,32,101,110,99,111,100,101,40,118,97,108,41,92,110,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,120,41,32,123,32,114,101,116,117,114,110,32,120,46,108,101,110,103,116,104,32,62,32,48,59,32,125,41,92,110,32,32,32,32,32,32,46,106,111,105,110,40,39,38,39,41,92,110,32,32,32,32,58,32,110,117,108,108,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,32,63,32,40,92,34,63,92,34,32,43,32,114,101,115,41,32,58,32,39,39,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,116,114,97,105,108,105,110,103,83,108,97,115,104,82,69,32,61,32,47,92,92,47,63,36,47,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,82,111,117,116,101,32,40,92,110,32,32,114,101,99,111,114,100,44,92,110,32,32,108,111,99,97,116,105,111,110,44,92,110,32,32,114,101,100,105,114,101,99,116,101,100,70,114,111,109,44,92,110,32,32,114,111,117,116,101,114,92,110,41,32,123,92,110,32,32,118,97,114,32,115,116,114,105,110,103,105,102,121,81,117,101,114,121,32,61,32,114,111,117,116,101,114,32,38,38,32,114,111,117,116,101,114,46,111,112,116,105,111,110,115,46,115,116,114,105,110,103,105,102,121,81,117,101,114,121,59,92,110,92,110,32,32,118,97,114,32,113,117,101,114,121,32,61,32,108,111,99,97,116,105,111,110,46,113,117,101,114,121,32,124,124,32,123,125,59,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,113,117,101,114,121,32,61,32,99,108,111,110,101,40,113,117,101,114,121,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,125,92,110,92,110,32,32,118,97,114,32,114,111,117,116,101,32,61,32,123,92,110,32,32,32,32,110,97,109,101,58,32,108,111,99,97,116,105,111,110,46,110,97,109,101,32,124,124,32,40,114,101,99,111,114,100,32,38,38,32,114,101,99,111,114,100,46,110,97,109,101,41,44,92,110,32,32,32,32,109,101,116,97,58,32,40,114,101,99,111,114,100,32,38,38,32,114,101,99,111,114,100,46,109,101,116,97,41,32,124,124,32,123,125,44,92,110,32,32,32,32,112,97,116,104,58,32,108,111,99,97,116,105,111,110,46,112,97,116,104,32,124,124,32,39,47,39,44,92,110,32,32,32,32,104,97,115,104,58,32,108,111,99,97,116,105,111,110,46,104,97,115,104,32,124,124,32,39,39,44,92,110,32,32,32,32,113,117,101,114,121,58,32,113,117,101,114,121,44,92,110,32,32,32,32,112,97,114,97,109,115,58,32,108,111,99,97,116,105,111,110,46,112,97,114,97,109,115,32,124,124,32,123,125,44,92,110,32,32,32,32,102,117,108,108,80,97,116,104,58,32,103,101,116,70,117,108,108,80,97,116,104,40,108,111,99,97,116,105,111,110,44,32,115,116,114,105,110,103,105,102,121,81,117,101,114,121,41,44,92,110,32,32,32,32,109,97,116,99,104,101,100,58,32,114,101,99,111,114,100,32,63,32,102,111,114,109,97,116,77,97,116,99,104,40,114,101,99,111,114,100,41,32,58,32,91,93,92,110,32,32,125,59,92,110,32,32,105,102,32,40,114,101,100,105,114,101,99,116,101,100,70,114,111,109,41,32,123,92,110,32,32,32,32,114,111,117,116,101,46,114,101,100,105,114,101,99,116,101,100,70,114,111,109,32,61,32,103,101,116,70,117,108,108,80,97,116,104,40,114,101,100,105,114,101,99,116,101,100,70,114,111,109,44,32,115,116,114,105,110,103,105,102,121,81,117,101,114,121,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,102,114,101,101,122,101,40,114,111,117,116,101,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,111,110,101,32,40,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,46,109,97,112,40,99,108,111,110,101,41,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,118,97,108,117,101,32,38,38,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,32,61,32,123,125,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,114,101,115,91,107,101,121,93,32,61,32,99,108,111,110,101,40,118,97,108,117,101,91,107,101,121,93,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,92,110,32,32,125,92,110,125,92,110,92,110,47,47,32,116,104,101,32,115,116,97,114,116,105,110,103,32,114,111,117,116,101,32,116,104,97,116,32,114,101,112,114,101,115,101,110,116,115,32,116,104,101,32,105,110,105,116,105,97,108,32,115,116,97,116,101,92,110,118,97,114,32,83,84,65,82,84,32,61,32,99,114,101,97,116,101,82,111,117,116,101,40,110,117,108,108,44,32,123,92,110,32,32,112,97,116,104,58,32,39,47,39,92,110,125,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,102,111,114,109,97,116,77,97,116,99,104,32,40,114,101,99,111,114,100,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,91,93,59,92,110,32,32,119,104,105,108,101,32,40,114,101,99,111,114,100,41,32,123,92,110,32,32,32,32,114,101,115,46,117,110,115,104,105,102,116,40,114,101,99,111,114,100,41,59,92,110,32,32,32,32,114,101,99,111,114,100,32,61,32,114,101,99,111,114,100,46,112,97,114,101,110,116,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,70,117,108,108,80,97,116,104,32,40,92,110,32,32,114,101,102,44,92,110,32,32,95,115,116,114,105,110,103,105,102,121,81,117,101,114,121,92,110,41,32,123,92,110,32,32,118,97,114,32,112,97,116,104,32,61,32,114,101,102,46,112,97,116,104,59,92,110,32,32,118,97,114,32,113,117,101,114,121,32,61,32,114,101,102,46,113,117,101,114,121,59,32,105,102,32,40,32,113,117,101,114,121,32,61,61,61,32,118,111,105,100,32,48,32,41,32,113,117,101,114,121,32,61,32,123,125,59,92,110,32,32,118,97,114,32,104,97,115,104,32,61,32,114,101,102,46,104,97,115,104,59,32,105,102,32,40,32,104,97,115,104,32,61,61,61,32,118,111,105,100,32,48,32,41,32,104,97,115,104,32,61,32,39,39,59,92,110,92,110,32,32,118,97,114,32,115,116,114,105,110,103,105,102,121,32,61,32,95,115,116,114,105,110,103,105,102,121,81,117,101,114,121,32,124,124,32,115,116,114,105,110,103,105,102,121,81,117,101,114,121,59,92,110,32,32,114,101,116,117,114,110,32,40,112,97,116,104,32,124,124,32,39,47,39,41,32,43,32,115,116,114,105,110,103,105,102,121,40,113,117,101,114,121,41,32,43,32,104,97,115,104,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,83,97,109,101,82,111,117,116,101,32,40,97,44,32,98,44,32,111,110,108,121,80,97,116,104,41,32,123,92,110,32,32,105,102,32,40,98,32,61,61,61,32,83,84,65,82,84,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,32,61,61,61,32,98,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,33,98,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,97,46,112,97,116,104,32,38,38,32,98,46,112,97,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,46,112,97,116,104,46,114,101,112,108,97,99,101,40,116,114,97,105,108,105,110,103,83,108,97,115,104,82,69,44,32,39,39,41,32,61,61,61,32,98,46,112,97,116,104,46,114,101,112,108,97,99,101,40,116,114,97,105,108,105,110,103,83,108,97,115,104,82,69,44,32,39,39,41,32,38,38,32,40,111,110,108,121,80,97,116,104,32,124,124,92,110,32,32,32,32,32,32,97,46,104,97,115,104,32,61,61,61,32,98,46,104,97,115,104,32,38,38,92,110,32,32,32,32,32,32,105,115,79,98,106,101,99,116,69,113,117,97,108,40,97,46,113,117,101,114,121,44,32,98,46,113,117,101,114,121,41,41,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,97,46,110,97,109,101,32,38,38,32,98,46,110,97,109,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,92,110,32,32,32,32,32,32,97,46,110,97,109,101,32,61,61,61,32,98,46,110,97,109,101,32,38,38,92,110,32,32,32,32,32,32,40,111,110,108,121,80,97,116,104,32,124,124,32,40,92,110,32,32,32,32,32,32,32,32,97,46,104,97,115,104,32,61,61,61,32,98,46,104,97,115,104,32,38,38,92,110,32,32,32,32,32,32,105,115,79,98,106,101,99,116,69,113,117,97,108,40,97,46,113,117,101,114,121,44,32,98,46,113,117,101,114,121,41,32,38,38,92,110,32,32,32,32,32,32,105,115,79,98,106,101,99,116,69,113,117,97,108,40,97,46,112,97,114,97,109,115,44,32,98,46,112,97,114,97,109,115,41,41,92,110,32,32,32,32,32,32,41,92,110,32,32,32,32,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,79,98,106,101,99,116,69,113,117,97,108,32,40,97,44,32,98,41,32,123,92,110,32,32,105,102,32,40,32,97,32,61,61,61,32,118,111,105,100,32,48,32,41,32,97,32,61,32,123,125,59,92,110,32,32,105,102,32,40,32,98,32,61,61,61,32,118,111,105,100,32,48,32,41,32,98,32,61,32,123,125,59,92,110,92,110,32,32,47,47,32,104,97,110,100,108,101,32,110,117,108,108,32,118,97,108,117,101,32,35,49,53,54,54,92,110,32,32,105,102,32,40,33,97,32,124,124,32,33,98,41,32,123,32,114,101,116,117,114,110,32,97,32,61,61,61,32,98,32,125,92,110,32,32,118,97,114,32,97,75,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,97,41,46,115,111,114,116,40,41,59,92,110,32,32,118,97,114,32,98,75,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,98,41,46,115,111,114,116,40,41,59,92,110,32,32,105,102,32,40,97,75,101,121,115,46,108,101,110,103,116,104,32,33,61,61,32,98,75,101,121,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,97,75,101,121,115,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,32,40,107,101,121,44,32,105,41,32,123,92,110,32,32,32,32,118,97,114,32,97,86,97,108,32,61,32,97,91,107,101,121,93,59,92,110,32,32,32,32,118,97,114,32,98,75,101,121,32,61,32,98,75,101,121,115,91,105,93,59,92,110,32,32,32,32,105,102,32,40,98,75,101,121,32,33,61,61,32,107,101,121,41,32,123,32,114,101,116,117,114,110,32,102,97,108,115,101,32,125,92,110,32,32,32,32,118,97,114,32,98,86,97,108,32,61,32,98,91,107,101,121,93,59,92,110,32,32,32,32,47,47,32,113,117,101,114,121,32,118,97,108,117,101,115,32,99,97,110,32,98,101,32,110,117,108,108,32,97,110,100,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,105,102,32,40,97,86,97,108,32,61,61,32,110,117,108,108,32,124,124,32,98,86,97,108,32,61,61,32,110,117,108,108,41,32,123,32,114,101,116,117,114,110,32,97,86,97,108,32,61,61,61,32,98,86,97,108,32,125,92,110,32,32,32,32,47,47,32,99,104,101,99,107,32,110,101,115,116,101,100,32,101,113,117,97,108,105,116,121,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,97,86,97,108,32,61,61,61,32,39,111,98,106,101,99,116,39,32,38,38,32,116,121,112,101,111,102,32,98,86,97,108,32,61,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,69,113,117,97,108,40,97,86,97,108,44,32,98,86,97,108,41,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,97,86,97,108,41,32,61,61,61,32,83,116,114,105,110,103,40,98,86,97,108,41,92,110,32,32,125,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,73,110,99,108,117,100,101,100,82,111,117,116,101,32,40,99,117,114,114,101,110,116,44,32,116,97,114,103,101,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,92,110,32,32,32,32,99,117,114,114,101,110,116,46,112,97,116,104,46,114,101,112,108,97,99,101,40,116,114,97,105,108,105,110,103,83,108,97,115,104,82,69,44,32,39,47,39,41,46,105,110,100,101,120,79,102,40,92,110,32,32,32,32,32,32,116,97,114,103,101,116,46,112,97,116,104,46,114,101,112,108,97,99,101,40,116,114,97,105,108,105,110,103,83,108,97,115,104,82,69,44,32,39,47,39,41,92,110,32,32,32,32,41,32,61,61,61,32,48,32,38,38,92,110,32,32,32,32,40,33,116,97,114,103,101,116,46,104,97,115,104,32,124,124,32,99,117,114,114,101,110,116,46,104,97,115,104,32,61,61,61,32,116,97,114,103,101,116,46,104,97,115,104,41,32,38,38,92,110,32,32,32,32,113,117,101,114,121,73,110,99,108,117,100,101,115,40,99,117,114,114,101,110,116,46,113,117,101,114,121,44,32,116,97,114,103,101,116,46,113,117,101,114,121,41,92,110,32,32,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,113,117,101,114,121,73,110,99,108,117,100,101,115,32,40,99,117,114,114,101,110,116,44,32,116,97,114,103,101,116,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,107,101,121,32,105,110,32,99,117,114,114,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,82,111,117,116,101,69,110,116,101,114,101,100,32,40,114,111,117,116,101,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,114,111,117,116,101,46,109,97,116,99,104,101,100,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,99,111,114,100,32,61,32,114,111,117,116,101,46,109,97,116,99,104,101,100,91,105,93,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,110,97,109,101,32,105,110,32,114,101,99,111,114,100,46,105,110,115,116,97,110,99,101,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,110,115,116,97,110,99,101,32,61,32,114,101,99,111,114,100,46,105,110,115,116,97,110,99,101,115,91,110,97,109,101,93,59,92,110,32,32,32,32,32,32,118,97,114,32,99,98,115,32,61,32,114,101,99,111,114,100,46,101,110,116,101,114,101,100,67,98,115,91,110,97,109,101,93,59,92,110,32,32,32,32,32,32,105,102,32,40,33,105,110,115,116,97,110,99,101,32,124,124,32,33,99,98,115,41,32,123,32,99,111,110,116,105,110,117,101,32,125,92,110,32,32,32,32,32,32,100,101,108,101,116,101,32,114,101,99,111,114,100,46,101,110,116,101,114,101,100,67,98,115,91,110,97,109,101,93,59,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,36,49,32,61,32,48,59,32,105,36,49,32,60,32,99,98,115,46,108,101,110,103,116,104,59,32,105,36,49,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,110,115,116,97,110,99,101,46,95,105,115,66,101,105,110,103,68,101,115,116,114,111,121,101,100,41,32,123,32,99,98,115,91,105,36,49,93,40,105,110,115,116,97,110,99,101,41,59,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,86,105,101,119,32,61,32,123,92,110,32,32,110,97,109,101,58,32,39,82,111,117,116,101,114,86,105,101,119,39,44,92,110,32,32,102,117,110,99,116,105,111,110,97,108,58,32,116,114,117,101,44,92,110,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,110,97,109,101,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,39,100,101,102,97,117,108,116,39,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,32,40,95,44,32,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,114,101,102,46,112,114,111,112,115,59,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,114,101,102,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,114,101,102,46,112,97,114,101,110,116,59,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,114,101,102,46,100,97,116,97,59,92,110,92,110,32,32,32,32,47,47,32,117,115,101,100,32,98,121,32,100,101,118,116,111,111,108,115,32,116,111,32,100,105,115,112,108,97,121,32,97,32,114,111,117,116,101,114,45,118,105,101,119,32,98,97,100,103,101,92,110,32,32,32,32,100,97,116,97,46,114,111,117,116,101,114,86,105,101,119,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,47,47,32,100,105,114,101,99,116,108,121,32,117,115,101,32,112,97,114,101,110,116,32,99,111,110,116,101,120,116,39,115,32,99,114,101,97,116,101,69,108,101,109,101,110,116,40,41,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,47,47,32,115,111,32,116,104,97,116,32,99,111,109,112,111,110,101,110,116,115,32,114,101,110,100,101,114,101,100,32,98,121,32,114,111,117,116,101,114,45,118,105,101,119,32,99,97,110,32,114,101,115,111,108,118,101,32,110,97,109,101,100,32,115,108,111,116,115,92,110,32,32,32,32,118,97,114,32,104,32,61,32,112,97,114,101,110,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,112,114,111,112,115,46,110,97,109,101,59,92,110,32,32,32,32,118,97,114,32,114,111,117,116,101,32,61,32,112,97,114,101,110,116,46,36,114,111,117,116,101,59,92,110,32,32,32,32,118,97,114,32,99,97,99,104,101,32,61,32,112,97,114,101,110,116,46,95,114,111,117,116,101,114,86,105,101,119,67,97,99,104,101,32,124,124,32,40,112,97,114,101,110,116,46,95,114,111,117,116,101,114,86,105,101,119,67,97,99,104,101,32,61,32,123,125,41,59,92,110,92,110,32,32,32,32,47,47,32,100,101,116,101,114,109,105,110,101,32,99,117,114,114,101,110,116,32,118,105,101,119,32,100,101,112,116,104,44,32,97,108,115,111,32,99,104,101,99,107,32,116,111,32,115,101,101,32,105,102,32,116,104,101,32,116,114,101,101,92,110,32,32,32,32,47,47,32,104,97,115,32,98,101,101,110,32,116,111,103,103,108,101,100,32,105,110,97,99,116,105,118,101,32,98,117,116,32,107,101,112,116,45,97,108,105,118,101,46,92,110,32,32,32,32,118,97,114,32,100,101,112,116,104,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,105,110,97,99,116,105,118,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,119,104,105,108,101,32,40,112,97,114,101,110,116,32,38,38,32,112,97,114,101,110,116,46,95,114,111,117,116,101,114,82,111,111,116,32,33,61,61,32,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,110,111,100,101,68,97,116,97,32,61,32,112,97,114,101,110,116,46,36,118,110,111,100,101,32,63,32,112,97,114,101,110,116,46,36,118,110,111,100,101,46,100,97,116,97,32,58,32,123,125,59,92,110,32,32,32,32,32,32,105,102,32,40,118,110,111,100,101,68,97,116,97,46,114,111,117,116,101,114,86,105,101,119,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,112,116,104,43,43,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,118,110,111,100,101,68,97,116,97,46,107,101,101,112,65,108,105,118,101,32,38,38,32,112,97,114,101,110,116,46,95,100,105,114,101,99,116,73,110,97,99,116,105,118,101,32,38,38,32,112,97,114,101,110,116,46,95,105,110,97,99,116,105,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,97,99,116,105,118,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,112,97,114,101,110,116,46,36,112,97,114,101,110,116,59,92,110,32,32,32,32,125,92,110,32,32,32,32,100,97,116,97,46,114,111,117,116,101,114,86,105,101,119,68,101,112,116,104,32,61,32,100,101,112,116,104,59,92,110,92,110,32,32,32,32,47,47,32,114,101,110,100,101,114,32,112,114,101,118,105,111,117,115,32,118,105,101,119,32,105,102,32,116,104,101,32,116,114,101,101,32,105,115,32,105,110,97,99,116,105,118,101,32,97,110,100,32,107,101,112,116,45,97,108,105,118,101,92,110,32,32,32,32,105,102,32,40,105,110,97,99,116,105,118,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,97,99,104,101,100,68,97,116,97,32,61,32,99,97,99,104,101,91,110,97,109,101,93,59,92,110,32,32,32,32,32,32,118,97,114,32,99,97,99,104,101,100,67,111,109,112,111,110,101,110,116,32,61,32,99,97,99,104,101,100,68,97,116,97,32,38,38,32,99,97,99,104,101,100,68,97,116,97,46,99,111,109,112,111,110,101,110,116,59,92,110,32,32,32,32,32,32,105,102,32,40,99,97,99,104,101,100,67,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,35,50,51,48,49,92,110,32,32,32,32,32,32,32,32,47,47,32,112,97,115,115,32,112,114,111,112,115,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,97,99,104,101,100,68,97,116,97,46,99,111,110,102,105,103,80,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,105,108,108,80,114,111,112,115,105,110,68,97,116,97,40,99,97,99,104,101,100,67,111,109,112,111,110,101,110,116,44,32,100,97,116,97,44,32,99,97,99,104,101,100,68,97,116,97,46,114,111,117,116,101,44,32,99,97,99,104,101,100,68,97,116,97,46,99,111,110,102,105,103,80,114,111,112,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,99,97,99,104,101,100,67,111,109,112,111,110,101,110,116,44,32,100,97,116,97,44,32,99,104,105,108,100,114,101,110,41,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,114,101,110,100,101,114,32,112,114,101,118,105,111,117,115,32,101,109,112,116,121,32,118,105,101,119,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,41,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,109,97,116,99,104,101,100,32,61,32,114,111,117,116,101,46,109,97,116,99,104,101,100,91,100,101,112,116,104,93,59,92,110,32,32,32,32,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,109,97,116,99,104,101,100,32,38,38,32,109,97,116,99,104,101,100,46,99,111,109,112,111,110,101,110,116,115,91,110,97,109,101,93,59,92,110,92,110,32,32,32,32,47,47,32,114,101,110,100,101,114,32,101,109,112,116,121,32,110,111,100,101,32,105,102,32,110,111,32,109,97,116,99,104,101,100,32,114,111,117,116,101,32,111,114,32,110,111,32,99,111,110,102,105,103,32,99,111,109,112,111,110,101,110,116,92,110,32,32,32,32,105,102,32,40,33,109,97,116,99,104,101,100,32,124,124,32,33,99,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,32,32,32,32,99,97,99,104,101,91,110,97,109,101,93,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,40,41,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,99,97,99,104,101,32,99,111,109,112,111,110,101,110,116,92,110,32,32,32,32,99,97,99,104,101,91,110,97,109,101,93,32,61,32,123,32,99,111,109,112,111,110,101,110,116,58,32,99,111,109,112,111,110,101,110,116,32,125,59,92,110,92,110,32,32,32,32,47,47,32,97,116,116,97,99,104,32,105,110,115,116,97,110,99,101,32,114,101,103,105,115,116,114,97,116,105,111,110,32,104,111,111,107,92,110,32,32,32,32,47,47,32,116,104,105,115,32,119,105,108,108,32,98,101,32,99,97,108,108,101,100,32,105,110,32,116,104,101,32,105,110,115,116,97,110,99,101,39,115,32,105,110,106,101,99,116,101,100,32,108,105,102,101,99,121,99,108,101,32,104,111,111,107,115,92,110,32,32,32,32,100,97,116,97,46,114,101,103,105,115,116,101,114,82,111,117,116,101,73,110,115,116,97,110,99,101,32,61,32,102,117,110,99,116,105,111,110,32,40,118,109,44,32,118,97,108,41,32,123,92,110,32,32,32,32,32,32,47,47,32,118,97,108,32,99,111,117,108,100,32,98,101,32,117,110,100,101,102,105,110,101,100,32,102,111,114,32,117,110,114,101,103,105,115,116,114,97,116,105,111,110,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,32,61,32,109,97,116,99,104,101,100,46,105,110,115,116,97,110,99,101,115,91,110,97,109,101,93,59,92,110,32,32,32,32,32,32,105,102,32,40,92,110,32,32,32,32,32,32,32,32,40,118,97,108,32,38,38,32,99,117,114,114,101,110,116,32,33,61,61,32,118,109,41,32,124,124,92,110,32,32,32,32,32,32,32,32,40,33,118,97,108,32,38,38,32,99,117,114,114,101,110,116,32,61,61,61,32,118,109,41,92,110,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,109,97,116,99,104,101,100,46,105,110,115,116,97,110,99,101,115,91,110,97,109,101,93,32,61,32,118,97,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,97,108,115,111,32,114,101,103,105,115,116,101,114,32,105,110,115,116,97,110,99,101,32,105,110,32,112,114,101,112,97,116,99,104,32,104,111,111,107,92,110,32,32,32,32,47,47,32,105,110,32,99,97,115,101,32,116,104,101,32,115,97,109,101,32,99,111,109,112,111,110,101,110,116,32,105,110,115,116,97,110,99,101,32,105,115,32,114,101,117,115,101,100,32,97,99,114,111,115,115,32,100,105,102,102,101,114,101,110,116,32,114,111,117,116,101,115,92,110,32,32,32,32,59,40,100,97,116,97,46,104,111,111,107,32,124,124,32,40,100,97,116,97,46,104,111,111,107,32,61,32,123,125,41,41,46,112,114,101,112,97,116,99,104,32,61,32,102,117,110,99,116,105,111,110,32,40,95,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,109,97,116,99,104,101,100,46,105,110,115,116,97,110,99,101,115,91,110,97,109,101,93,32,61,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,47,47,32,114,101,103,105,115,116,101,114,32,105,110,115,116,97,110,99,101,32,105,110,32,105,110,105,116,32,104,111,111,107,92,110,32,32,32,32,47,47,32,105,110,32,99,97,115,101,32,107,101,112,116,45,97,108,105,118,101,32,99,111,109,112,111,110,101,110,116,32,98,101,32,97,99,116,105,118,101,100,32,119,104,101,110,32,114,111,117,116,101,115,32,99,104,97,110,103,101,100,92,110,32,32,32,32,100,97,116,97,46,104,111,111,107,46,105,110,105,116,32,61,32,102,117,110,99,116,105,111,110,32,40,118,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,110,111,100,101,46,100,97,116,97,46,107,101,101,112,65,108,105,118,101,32,38,38,92,110,32,32,32,32,32,32,32,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,32,38,38,92,110,32,32,32,32,32,32,32,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,32,33,61,61,32,109,97,116,99,104,101,100,46,105,110,115,116,97,110,99,101,115,91,110,97,109,101,93,92,110,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,109,97,116,99,104,101,100,46,105,110,115,116,97,110,99,101,115,91,110,97,109,101,93,32,61,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,105,102,32,116,104,101,32,114,111,117,116,101,32,116,114,97,110,115,105,116,105,111,110,32,104,97,115,32,97,108,114,101,97,100,121,32,98,101,101,110,32,99,111,110,102,105,114,109,101,100,32,116,104,101,110,32,119,101,32,119,101,114,101,110,39,116,92,110,32,32,32,32,32,32,47,47,32,97,98,108,101,32,116,111,32,99,97,108,108,32,116,104,101,32,99,98,115,32,100,117,114,105,110,103,32,99,111,110,102,105,114,109,97,116,105,111,110,32,97,115,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,119,97,115,32,110,111,116,92,110,32,32,32,32,32,32,47,47,32,114,101,103,105,115,116,101,114,101,100,32,121,101,116,44,32,115,111,32,119,101,32,99,97,108,108,32,105,116,32,104,101,114,101,46,92,110,32,32,32,32,32,32,104,97,110,100,108,101,82,111,117,116,101,69,110,116,101,114,101,100,40,114,111,117,116,101,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,118,97,114,32,99,111,110,102,105,103,80,114,111,112,115,32,61,32,109,97,116,99,104,101,100,46,112,114,111,112,115,32,38,38,32,109,97,116,99,104,101,100,46,112,114,111,112,115,91,110,97,109,101,93,59,92,110,32,32,32,32,47,47,32,115,97,118,101,32,114,111,117,116,101,32,97,110,100,32,99,111,110,102,105,103,80,114,111,112,115,32,105,110,32,99,97,99,104,101,92,110,32,32,32,32,105,102,32,40,99,111,110,102,105,103,80,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,101,120,116,101,110,100,40,99,97,99,104,101,91,110,97,109,101,93,44,32,123,92,110,32,32,32,32,32,32,32,32,114,111,117,116,101,58,32,114,111,117,116,101,44,92,110,32,32,32,32,32,32,32,32,99,111,110,102,105,103,80,114,111,112,115,58,32,99,111,110,102,105,103,80,114,111,112,115,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,102,105,108,108,80,114,111,112,115,105,110,68,97,116,97,40,99,111,109,112,111,110,101,110,116,44,32,100,97,116,97,44,32,114,111,117,116,101,44,32,99,111,110,102,105,103,80,114,111,112,115,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,99,111,109,112,111,110,101,110,116,44,32,100,97,116,97,44,32,99,104,105,108,100,114,101,110,41,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,102,105,108,108,80,114,111,112,115,105,110,68,97,116,97,32,40,99,111,109,112,111,110,101,110,116,44,32,100,97,116,97,44,32,114,111,117,116,101,44,32,99,111,110,102,105,103,80,114,111,112,115,41,32,123,92,110,32,32,47,47,32,114,101,115,111,108,118,101,32,112,114,111,112,115,92,110,32,32,118,97,114,32,112,114,111,112,115,84,111,80,97,115,115,32,61,32,100,97,116,97,46,112,114,111,112,115,32,61,32,114,101,115,111,108,118,101,80,114,111,112,115,40,114,111,117,116,101,44,32,99,111,110,102,105,103,80,114,111,112,115,41,59,92,110,32,32,105,102,32,40,112,114,111,112,115,84,111,80,97,115,115,41,32,123,92,110,32,32,32,32,47,47,32,99,108,111,110,101,32,116,111,32,112,114,101,118,101,110,116,32,109,117,116,97,116,105,111,110,92,110,32,32,32,32,112,114,111,112,115,84,111,80,97,115,115,32,61,32,100,97,116,97,46,112,114,111,112,115,32,61,32,101,120,116,101,110,100,40,123,125,44,32,112,114,111,112,115,84,111,80,97,115,115,41,59,92,110,32,32,32,32,47,47,32,112,97,115,115,32,110,111,110,45,100,101,99,108,97,114,101,100,32,112,114,111,112,115,32,97,115,32,97,116,116,114,115,92,110,32,32,32,32,118,97,114,32,97,116,116,114,115,32,61,32,100,97,116,97,46,97,116,116,114,115,32,61,32,100,97,116,97,46,97,116,116,114,115,32,124,124,32,123,125,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,112,114,111,112,115,84,111,80,97,115,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,99,111,109,112,111,110,101,110,116,46,112,114,111,112,115,32,124,124,32,33,40,107,101,121,32,105,110,32,99,111,109,112,111,110,101,110,116,46,112,114,111,112,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,91,107,101,121,93,32,61,32,112,114,111,112,115,84,111,80,97,115,115,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,112,114,111,112,115,84,111,80,97,115,115,91,107,101,121,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,80,114,111,112,115,32,40,114,111,117,116,101,44,32,99,111,110,102,105,103,41,32,123,92,110,32,32,115,119,105,116,99,104,32,40,116,121,112,101,111,102,32,99,111,110,102,105,103,41,32,123,92,110,32,32,32,32,99,97,115,101,32,39,117,110,100,101,102,105,110,101,100,39,58,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,99,97,115,101,32,39,111,98,106,101,99,116,39,58,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,110,102,105,103,92,110,32,32,32,32,99,97,115,101,32,39,102,117,110,99,116,105,111,110,39,58,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,110,102,105,103,40,114,111,117,116,101,41,92,110,32,32,32,32,99,97,115,101,32,39,98,111,111,108,101,97,110,39,58,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,110,102,105,103,32,63,32,114,111,117,116,101,46,112,97,114,97,109,115,32,58,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,112,114,111,112,115,32,105,110,32,92,92,92,34,92,34,32,43,32,40,114,111,117,116,101,46,112,97,116,104,41,32,43,32,92,34,92,92,92,34,32,105,115,32,97,32,92,34,32,43,32,40,116,121,112,101,111,102,32,99,111,110,102,105,103,41,32,43,32,92,34,44,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,92,34,101,120,112,101,99,116,105,110,103,32,97,110,32,111,98,106,101,99,116,44,32,102,117,110,99,116,105,111,110,32,111,114,32,98,111,111,108,101,97,110,46,92,34,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,80,97,116,104,32,40,92,110,32,32,114,101,108,97,116,105,118,101,44,92,110,32,32,98,97,115,101,44,92,110,32,32,97,112,112,101,110,100,92,110,41,32,123,92,110,32,32,118,97,114,32,102,105,114,115,116,67,104,97,114,32,61,32,114,101,108,97,116,105,118,101,46,99,104,97,114,65,116,40,48,41,59,92,110,32,32,105,102,32,40,102,105,114,115,116,67,104,97,114,32,61,61,61,32,39,47,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,108,97,116,105,118,101,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,102,105,114,115,116,67,104,97,114,32,61,61,61,32,39,63,39,32,124,124,32,102,105,114,115,116,67,104,97,114,32,61,61,61,32,39,35,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,98,97,115,101,32,43,32,114,101,108,97,116,105,118,101,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,115,116,97,99,107,32,61,32,98,97,115,101,46,115,112,108,105,116,40,39,47,39,41,59,92,110,92,110,32,32,47,47,32,114,101,109,111,118,101,32,116,114,97,105,108,105,110,103,32,115,101,103,109,101,110,116,32,105,102,58,92,110,32,32,47,47,32,45,32,110,111,116,32,97,112,112,101,110,100,105,110,103,92,110,32,32,47,47,32,45,32,97,112,112,101,110,100,105,110,103,32,116,111,32,116,114,97,105,108,105,110,103,32,115,108,97,115,104,32,40,108,97,115,116,32,115,101,103,109,101,110,116,32,105,115,32,101,109,112,116,121,41,92,110,32,32,105,102,32,40,33,97,112,112,101,110,100,32,124,124,32,33,115,116,97,99,107,91,115,116,97,99,107,46,108,101,110,103,116,104,32,45,32,49,93,41,32,123,92,110,32,32,32,32,115,116,97,99,107,46,112,111,112,40,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,114,101,115,111,108,118,101,32,114,101,108,97,116,105,118,101,32,112,97,116,104,92,110,32,32,118,97,114,32,115,101,103,109,101,110,116,115,32,61,32,114,101,108,97,116,105,118,101,46,114,101,112,108,97,99,101,40,47,94,92,92,47,47,44,32,39,39,41,46,115,112,108,105,116,40,39,47,39,41,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,115,101,103,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,115,101,103,109,101,110,116,32,61,32,115,101,103,109,101,110,116,115,91,105,93,59,92,110,32,32,32,32,105,102,32,40,115,101,103,109,101,110,116,32,61,61,61,32,39,46,46,39,41,32,123,92,110,32,32,32,32,32,32,115,116,97,99,107,46,112,111,112,40,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,101,103,109,101,110,116,32,33,61,61,32,39,46,39,41,32,123,92,110,32,32,32,32,32,32,115,116,97,99,107,46,112,117,115,104,40,115,101,103,109,101,110,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,101,110,115,117,114,101,32,108,101,97,100,105,110,103,32,115,108,97,115,104,92,110,32,32,105,102,32,40,115,116,97,99,107,91,48,93,32,33,61,61,32,39,39,41,32,123,92,110,32,32,32,32,115,116,97,99,107,46,117,110,115,104,105,102,116,40,39,39,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,115,116,97,99,107,46,106,111,105,110,40,39,47,39,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,80,97,116,104,32,40,112,97,116,104,41,32,123,92,110,32,32,118,97,114,32,104,97,115,104,32,61,32,39,39,59,92,110,32,32,118,97,114,32,113,117,101,114,121,32,61,32,39,39,59,92,110,92,110,32,32,118,97,114,32,104,97,115,104,73,110,100,101,120,32,61,32,112,97,116,104,46,105,110,100,101,120,79,102,40,39,35,39,41,59,92,110,32,32,105,102,32,40,104,97,115,104,73,110,100,101,120,32,62,61,32,48,41,32,123,92,110,32,32,32,32,104,97,115,104,32,61,32,112,97,116,104,46,115,108,105,99,101,40,104,97,115,104,73,110,100,101,120,41,59,92,110,32,32,32,32,112,97,116,104,32,61,32,112,97,116,104,46,115,108,105,99,101,40,48,44,32,104,97,115,104,73,110,100,101,120,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,113,117,101,114,121,73,110,100,101,120,32,61,32,112,97,116,104,46,105,110,100,101,120,79,102,40,39,63,39,41,59,92,110,32,32,105,102,32,40,113,117,101,114,121,73,110,100,101,120,32,62,61,32,48,41,32,123,92,110,32,32,32,32,113,117,101,114,121,32,61,32,112,97,116,104,46,115,108,105,99,101,40,113,117,101,114,121,73,110,100,101,120,32,43,32,49,41,59,92,110,32,32,32,32,112,97,116,104,32,61,32,112,97,116,104,46,115,108,105,99,101,40,48,44,32,113,117,101,114,121,73,110,100,101,120,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,112,97,116,104,58,32,112,97,116,104,44,92,110,32,32,32,32,113,117,101,114,121,58,32,113,117,101,114,121,44,92,110,32,32,32,32,104,97,115,104,58,32,104,97,115,104,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,101,97,110,80,97,116,104,32,40,112,97,116,104,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,116,104,46,114,101,112,108,97,99,101,40,47,92,92,47,92,92,47,47,103,44,32,39,47,39,41,92,110,125,92,110,92,110,118,97,114,32,105,115,97,114,114,97,121,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,32,124,124,32,102,117,110,99,116,105,111,110,32,40,97,114,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,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,97,114,114,41,32,61,61,32,39,91,111,98,106,101,99,116,32,65,114,114,97,121,93,39,59,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,69,120,112,111,115,101,32,96,112,97,116,104,84,111,82,101,103,101,120,112,96,46,92,110,32,42,47,92,110,118,97,114,32,112,97,116,104,84,111,82,101,103,101,120,112,95,49,32,61,32,112,97,116,104,84,111,82,101,103,101,120,112,59,92,110,118,97,114,32,112,97,114,115,101,95,49,32,61,32,112,97,114,115,101,59,92,110,118,97,114,32,99,111,109,112,105,108,101,95,49,32,61,32,99,111,109,112,105,108,101,59,92,110,118,97,114,32,116,111,107,101,110,115,84,111,70,117,110,99,116,105,111,110,95,49,32,61,32,116,111,107,101,110,115,84,111,70,117,110,99,116,105,111,110,59,92,110,118,97,114,32,116,111,107,101,110,115,84,111,82,101,103,69,120,112,95,49,32,61,32,116,111,107,101,110,115,84,111,82,101,103,69,120,112,59,92,110,92,110,47,42,42,92,110,32,42,32,84,104,101,32,109,97,105,110,32,112,97,116,104,32,109,97,116,99,104,105,110,103,32,114,101,103,101,120,112,32,117,116,105,108,105,116,121,46,92,110,32,42,92,110,32,42,32,64,116,121,112,101,32,123,82,101,103,69,120,112,125,92,110,32,42,47,92,110,118,97,114,32,80,65,84,72,95,82,69,71,69,88,80,32,61,32,110,101,119,32,82,101,103,69,120,112,40,91,92,110,32,32,47,47,32,77,97,116,99,104,32,101,115,99,97,112,101,100,32,99,104,97,114,97,99,116,101,114,115,32,116,104,97,116,32,119,111,117,108,100,32,111,116,104,101,114,119,105,115,101,32,97,112,112,101,97,114,32,105,110,32,102,117,116,117,114,101,32,109,97,116,99,104,101,115,46,92,110,32,32,47,47,32,84,104,105,115,32,97,108,108,111,119,115,32,116,104,101,32,117,115,101,114,32,116,111,32,101,115,99,97,112,101,32,115,112,101,99,105,97,108,32,99,104,97,114,97,99,116,101,114,115,32,116,104,97,116,32,119,111,110,39,116,32,116,114,97,110,115,102,111,114,109,46,92,110,32,32,39,40,92,92,92,92,92,92,92,92,46,41,39,44,92,110,32,32,47,47,32,77,97,116,99,104,32,69,120,112,114,101,115,115,45,115,116,121,108,101,32,112,97,114,97,109,101,116,101,114,115,32,97,110,100,32,117,110,45,110,97,109,101,100,32,112,97,114,97,109,101,116,101,114,115,32,119,105,116,104,32,97,32,112,114,101,102,105,120,92,110,32,32,47,47,32,97,110,100,32,111,112,116,105,111,110,97,108,32,115,117,102,102,105,120,101,115,46,32,77,97,116,99,104,101,115,32,97,112,112,101,97,114,32,97,115,58,92,110,32,32,47,47,92,110,32,32,47,47,32,92,34,47,58,116,101,115,116,40,92,92,92,92,100,43,41,63,92,34,32,61,62,32,91,92,34,47,92,34,44,32,92,34,116,101,115,116,92,34,44,32,92,34,92,92,100,43,92,34,44,32,117,110,100,101,102,105,110,101,100,44,32,92,34,63,92,34,44,32,117,110,100,101,102,105,110,101,100,93,92,110,32,32,47,47,32,92,34,47,114,111,117,116,101,40,92,92,92,92,100,43,41,92,34,32,32,61,62,32,91,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,92,34,92,92,100,43,92,34,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,93,92,110,32,32,47,47,32,92,34,47,42,92,34,32,32,32,32,32,32,32,32,32,32,32,32,61,62,32,91,92,34,47,92,34,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,92,34,42,92,34,93,92,110,32,32,39,40,91,92,92,92,92,47,46,93,41,63,40,63,58,40,63,58,92,92,92,92,58,40,92,92,92,92,119,43,41,40,63,58,92,92,92,92,40,40,40,63,58,92,92,92,92,92,92,92,92,46,124,91,94,92,92,92,92,92,92,92,92,40,41,93,41,43,41,92,92,92,92,41,41,63,124,92,92,92,92,40,40,40,63,58,92,92,92,92,92,92,92,92,46,124,91,94,92,92,92,92,92,92,92,92,40,41,93,41,43,41,92,92,92,92,41,41,40,91,43,42,63,93,41,63,124,40,92,92,92,92,42,41,41,39,92,110,93,46,106,111,105,110,40,39,124,39,41,44,32,39,103,39,41,59,92,110,92,110,47,42,42,92,110,32,42,32,80,97,114,115,101,32,97,32,115,116,114,105,110,103,32,102,111,114,32,116,104,101,32,114,97,119,32,116,111,107,101,110,115,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,32,123,115,116,114,105,110,103,125,32,32,115,116,114,92,110,32,42,32,64,112,97,114,97,109,32,32,123,79,98,106,101,99,116,61,125,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,32,123,33,65,114,114,97,121,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,32,40,115,116,114,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,116,111,107,101,110,115,32,61,32,91,93,59,92,110,32,32,118,97,114,32,107,101,121,32,61,32,48,59,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,48,59,92,110,32,32,118,97,114,32,112,97,116,104,32,61,32,39,39,59,92,110,32,32,118,97,114,32,100,101,102,97,117,108,116,68,101,108,105,109,105,116,101,114,32,61,32,111,112,116,105,111,110,115,32,38,38,32,111,112,116,105,111,110,115,46,100,101,108,105,109,105,116,101,114,32,124,124,32,39,47,39,59,92,110,32,32,118,97,114,32,114,101,115,59,92,110,92,110,32,32,119,104,105,108,101,32,40,40,114,101,115,32,61,32,80,65,84,72,95,82,69,71,69,88,80,46,101,120,101,99,40,115,116,114,41,41,32,33,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,118,97,114,32,109,32,61,32,114,101,115,91,48,93,59,92,110,32,32,32,32,118,97,114,32,101,115,99,97,112,101,100,32,61,32,114,101,115,91,49,93,59,92,110,32,32,32,32,118,97,114,32,111,102,102,115,101,116,32,61,32,114,101,115,46,105,110,100,101,120,59,92,110,32,32,32,32,112,97,116,104,32,43,61,32,115,116,114,46,115,108,105,99,101,40,105,110,100,101,120,44,32,111,102,102,115,101,116,41,59,92,110,32,32,32,32,105,110,100,101,120,32,61,32,111,102,102,115,101,116,32,43,32,109,46,108,101,110,103,116,104,59,92,110,92,110,32,32,32,32,47,47,32,73,103,110,111,114,101,32,97,108,114,101,97,100,121,32,101,115,99,97,112,101,100,32,115,101,113,117,101,110,99,101,115,46,92,110,32,32,32,32,105,102,32,40,101,115,99,97,112,101,100,41,32,123,92,110,32,32,32,32,32,32,112,97,116,104,32,43,61,32,101,115,99,97,112,101,100,91,49,93,59,92,110,32,32,32,32,32,32,99,111,110,116,105,110,117,101,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,110,101,120,116,32,61,32,115,116,114,91,105,110,100,101,120,93,59,92,110,32,32,32,32,118,97,114,32,112,114,101,102,105,120,32,61,32,114,101,115,91,50,93,59,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,114,101,115,91,51,93,59,92,110,32,32,32,32,118,97,114,32,99,97,112,116,117,114,101,32,61,32,114,101,115,91,52,93,59,92,110,32,32,32,32,118,97,114,32,103,114,111,117,112,32,61,32,114,101,115,91,53,93,59,92,110,32,32,32,32,118,97,114,32,109,111,100,105,102,105,101,114,32,61,32,114,101,115,91,54,93,59,92,110,32,32,32,32,118,97,114,32,97,115,116,101,114,105,115,107,32,61,32,114,101,115,91,55,93,59,92,110,92,110,32,32,32,32,47,47,32,80,117,115,104,32,116,104,101,32,99,117,114,114,101,110,116,32,112,97,116,104,32,111,110,116,111,32,116,104,101,32,116,111,107,101,110,115,46,92,110,32,32,32,32,105,102,32,40,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,116,111,107,101,110,115,46,112,117,115,104,40,112,97,116,104,41,59,92,110,32,32,32,32,32,32,112,97,116,104,32,61,32,39,39,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,112,97,114,116,105,97,108,32,61,32,112,114,101,102,105,120,32,33,61,32,110,117,108,108,32,38,38,32,110,101,120,116,32,33,61,32,110,117,108,108,32,38,38,32,110,101,120,116,32,33,61,61,32,112,114,101,102,105,120,59,92,110,32,32,32,32,118,97,114,32,114,101,112,101,97,116,32,61,32,109,111,100,105,102,105,101,114,32,61,61,61,32,39,43,39,32,124,124,32,109,111,100,105,102,105,101,114,32,61,61,61,32,39,42,39,59,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,97,108,32,61,32,109,111,100,105,102,105,101,114,32,61,61,61,32,39,63,39,32,124,124,32,109,111,100,105,102,105,101,114,32,61,61,61,32,39,42,39,59,92,110,32,32,32,32,118,97,114,32,100,101,108,105,109,105,116,101,114,32,61,32,114,101,115,91,50,93,32,124,124,32,100,101,102,97,117,108,116,68,101,108,105,109,105,116,101,114,59,92,110,32,32,32,32,118,97,114,32,112,97,116,116,101,114,110,32,61,32,99,97,112,116,117,114,101,32,124,124,32,103,114,111,117,112,59,92,110,92,110,32,32,32,32,116,111,107,101,110,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,110,97,109,101,58,32,110,97,109,101,32,124,124,32,107,101,121,43,43,44,92,110,32,32,32,32,32,32,112,114,101,102,105,120,58,32,112,114,101,102,105,120,32,124,124,32,39,39,44,92,110,32,32,32,32,32,32,100,101,108,105,109,105,116,101,114,58,32,100,101,108,105,109,105,116,101,114,44,92,110,32,32,32,32,32,32,111,112,116,105,111,110,97,108,58,32,111,112,116,105,111,110,97,108,44,92,110,32,32,32,32,32,32,114,101,112,101,97,116,58,32,114,101,112,101,97,116,44,92,110,32,32,32,32,32,32,112,97,114,116,105,97,108,58,32,112,97,114,116,105,97,108,44,92,110,32,32,32,32,32,32,97,115,116,101,114,105,115,107,58,32,33,33,97,115,116,101,114,105,115,107,44,92,110,32,32,32,32,32,32,112,97,116,116,101,114,110,58,32,112,97,116,116,101,114,110,32,63,32,101,115,99,97,112,101,71,114,111,117,112,40,112,97,116,116,101,114,110,41,32,58,32,40,97,115,116,101,114,105,115,107,32,63,32,39,46,42,39,32,58,32,39,91,94,39,32,43,32,101,115,99,97,112,101,83,116,114,105,110,103,40,100,101,108,105,109,105,116,101,114,41,32,43,32,39,93,43,63,39,41,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,77,97,116,99,104,32,97,110,121,32,99,104,97,114,97,99,116,101,114,115,32,115,116,105,108,108,32,114,101,109,97,105,110,105,110,103,46,92,110,32,32,105,102,32,40,105,110,100,101,120,32,60,32,115,116,114,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,112,97,116,104,32,43,61,32,115,116,114,46,115,117,98,115,116,114,40,105,110,100,101,120,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,73,102,32,116,104,101,32,112,97,116,104,32,101,120,105,115,116,115,44,32,112,117,115,104,32,105,116,32,111,110,116,111,32,116,104,101,32,101,110,100,46,92,110,32,32,105,102,32,40,112,97,116,104,41,32,123,92,110,32,32,32,32,116,111,107,101,110,115,46,112,117,115,104,40,112,97,116,104,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,111,107,101,110,115,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,67,111,109,112,105,108,101,32,97,32,115,116,114,105,110,103,32,116,111,32,97,32,116,101,109,112,108,97,116,101,32,102,117,110,99,116,105,111,110,32,102,111,114,32,116,104,101,32,112,97,116,104,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,32,123,115,116,114,105,110,103,125,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,114,92,110,32,42,32,64,112,97,114,97,109,32,32,123,79,98,106,101,99,116,61,125,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,32,123,33,102,117,110,99,116,105,111,110,40,79,98,106,101,99,116,61,44,32,79,98,106,101,99,116,61,41,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,99,111,109,112,105,108,101,32,40,115,116,114,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,107,101,110,115,84,111,70,117,110,99,116,105,111,110,40,112,97,114,115,101,40,115,116,114,44,32,111,112,116,105,111,110,115,41,44,32,111,112,116,105,111,110,115,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,80,114,101,116,116,105,101,114,32,101,110,99,111,100,105,110,103,32,111,102,32,85,82,73,32,112,97,116,104,32,115,101,103,109,101,110,116,115,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,32,123,115,116,114,105,110,103,125,92,110,32,42,32,64,114,101,116,117,114,110,32,123,115,116,114,105,110,103,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,80,114,101,116,116,121,32,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,110,99,111,100,101,85,82,73,40,115,116,114,41,46,114,101,112,108,97,99,101,40,47,91,92,92,47,63,35,93,47,103,44,32,102,117,110,99,116,105,111,110,32,40,99,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,39,37,39,32,43,32,99,46,99,104,97,114,67,111,100,101,65,116,40,48,41,46,116,111,83,116,114,105,110,103,40,49,54,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,92,110,32,32,125,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,69,110,99,111,100,101,32,116,104,101,32,97,115,116,101,114,105,115,107,32,112,97,114,97,109,101,116,101,114,46,32,83,105,109,105,108,97,114,32,116,111,32,96,112,114,101,116,116,121,96,44,32,98,117,116,32,97,108,108,111,119,115,32,115,108,97,115,104,101,115,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,32,123,115,116,114,105,110,103,125,92,110,32,42,32,64,114,101,116,117,114,110,32,123,115,116,114,105,110,103,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,101,110,99,111,100,101,65,115,116,101,114,105,115,107,32,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,110,99,111,100,101,85,82,73,40,115,116,114,41,46,114,101,112,108,97,99,101,40,47,91,63,35,93,47,103,44,32,102,117,110,99,116,105,111,110,32,40,99,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,39,37,39,32,43,32,99,46,99,104,97,114,67,111,100,101,65,116,40,48,41,46,116,111,83,116,114,105,110,103,40,49,54,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,92,110,32,32,125,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,69,120,112,111,115,101,32,97,32,109,101,116,104,111,100,32,102,111,114,32,116,114,97,110,115,102,111,114,109,105,110,103,32,116,111,107,101,110,115,32,105,110,116,111,32,116,104,101,32,112,97,116,104,32,102,117,110,99,116,105,111,110,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,116,111,107,101,110,115,84,111,70,117,110,99,116,105,111,110,32,40,116,111,107,101,110,115,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,47,47,32,67,111,109,112,105,108,101,32,97,108,108,32,116,104,101,32,116,111,107,101,110,115,32,105,110,116,111,32,114,101,103,101,120,112,115,46,92,110,32,32,118,97,114,32,109,97,116,99,104,101,115,32,61,32,110,101,119,32,65,114,114,97,121,40,116,111,107,101,110,115,46,108,101,110,103,116,104,41,59,92,110,92,110,32,32,47,47,32,67,111,109,112,105,108,101,32,97,108,108,32,116,104,101,32,112,97,116,116,101,114,110,115,32,98,101,102,111,114,101,32,99,111,109,112,105,108,97,116,105,111,110,46,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,116,111,107,101,110,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,116,111,107,101,110,115,91,105,93,32,61,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,32,32,109,97,116,99,104,101,115,91,105,93,32,61,32,110,101,119,32,82,101,103,69,120,112,40,39,94,40,63,58,39,32,43,32,116,111,107,101,110,115,91,105,93,46,112,97,116,116,101,114,110,32,43,32,39,41,36,39,44,32,102,108,97,103,115,40,111,112,116,105,111,110,115,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,111,98,106,44,32,111,112,116,115,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,116,104,32,61,32,39,39,59,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,111,98,106,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,111,112,116,115,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,101,110,99,111,100,101,32,61,32,111,112,116,105,111,110,115,46,112,114,101,116,116,121,32,63,32,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,80,114,101,116,116,121,32,58,32,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,116,111,107,101,110,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,111,107,101,110,32,61,32,116,111,107,101,110,115,91,105,93,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,116,111,107,101,110,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,32,32,32,32,112,97,116,104,32,43,61,32,116,111,107,101,110,59,92,110,92,110,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,100,97,116,97,91,116,111,107,101,110,46,110,97,109,101,93,59,92,110,32,32,32,32,32,32,118,97,114,32,115,101,103,109,101,110,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,111,107,101,110,46,111,112,116,105,111,110,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,80,114,101,112,101,110,100,32,112,97,114,116,105,97,108,32,115,101,103,109,101,110,116,32,112,114,101,102,105,120,101,115,46,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,111,107,101,110,46,112,97,114,116,105,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,32,43,61,32,116,111,107,101,110,46,112,114,101,102,105,120,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,69,120,112,101,99,116,101,100,32,92,34,39,32,43,32,116,111,107,101,110,46,110,97,109,101,32,43,32,39,92,34,32,116,111,32,98,101,32,100,101,102,105,110,101,100,39,41,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,115,97,114,114,97,121,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,111,107,101,110,46,114,101,112,101,97,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,69,120,112,101,99,116,101,100,32,92,34,39,32,43,32,116,111,107,101,110,46,110,97,109,101,32,43,32,39,92,34,32,116,111,32,110,111,116,32,114,101,112,101,97,116,44,32,98,117,116,32,114,101,99,101,105,118,101,100,32,96,39,32,43,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,118,97,108,117,101,41,32,43,32,39,96,39,41,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,111,107,101,110,46,111,112,116,105,111,110,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,69,120,112,101,99,116,101,100,32,92,34,39,32,43,32,116,111,107,101,110,46,110,97,109,101,32,43,32,39,92,34,32,116,111,32,110,111,116,32,98,101,32,101,109,112,116,121,39,41,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,59,32,106,32,60,32,118,97,108,117,101,46,108,101,110,103,116,104,59,32,106,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,101,103,109,101,110,116,32,61,32,101,110,99,111,100,101,40,118,97,108,117,101,91,106,93,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,109,97,116,99,104,101,115,91,105,93,46,116,101,115,116,40,115,101,103,109,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,69,120,112,101,99,116,101,100,32,97,108,108,32,92,34,39,32,43,32,116,111,107,101,110,46,110,97,109,101,32,43,32,39,92,34,32,116,111,32,109,97,116,99,104,32,92,34,39,32,43,32,116,111,107,101,110,46,112,97,116,116,101,114,110,32,43,32,39,92,34,44,32,98,117,116,32,114,101,99,101,105,118,101,100,32,96,39,32,43,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,115,101,103,109,101,110,116,41,32,43,32,39,96,39,41,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,32,43,61,32,40,106,32,61,61,61,32,48,32,63,32,116,111,107,101,110,46,112,114,101,102,105,120,32,58,32,116,111,107,101,110,46,100,101,108,105,109,105,116,101,114,41,32,43,32,115,101,103,109,101,110,116,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,115,101,103,109,101,110,116,32,61,32,116,111,107,101,110,46,97,115,116,101,114,105,115,107,32,63,32,101,110,99,111,100,101,65,115,116,101,114,105,115,107,40,118,97,108,117,101,41,32,58,32,101,110,99,111,100,101,40,118,97,108,117,101,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,109,97,116,99,104,101,115,91,105,93,46,116,101,115,116,40,115,101,103,109,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,69,120,112,101,99,116,101,100,32,92,34,39,32,43,32,116,111,107,101,110,46,110,97,109,101,32,43,32,39,92,34,32,116,111,32,109,97,116,99,104,32,92,34,39,32,43,32,116,111,107,101,110,46,112,97,116,116,101,114,110,32,43,32,39,92,34,44,32,98,117,116,32,114,101,99,101,105,118,101,100,32,92,34,39,32,43,32,115,101,103,109,101,110,116,32,43,32,39,92,34,39,41,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,112,97,116,104,32,43,61,32,116,111,107,101,110,46,112,114,101,102,105,120,32,43,32,115,101,103,109,101,110,116,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,112,97,116,104,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,69,115,99,97,112,101,32,97,32,114,101,103,117,108,97,114,32,101,120,112,114,101,115,115,105,111,110,32,115,116,114,105,110,103,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,32,123,115,116,114,105,110,103,125,32,115,116,114,92,110,32,42,32,64,114,101,116,117,114,110,32,123,115,116,114,105,110,103,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,101,115,99,97,112,101,83,116,114,105,110,103,32,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,116,114,46,114,101,112,108,97,99,101,40,47,40,91,46,43,42,63,61,94,33,58,36,123,125,40,41,91,92,92,93,124,92,92,47,92,92,92,92,93,41,47,103,44,32,39,92,92,92,92,36,49,39,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,69,115,99,97,112,101,32,116,104,101,32,99,97,112,116,117,114,105,110,103,32,103,114,111,117,112,32,98,121,32,101,115,99,97,112,105,110,103,32,115,112,101,99,105,97,108,32,99,104,97,114,97,99,116,101,114,115,32,97,110,100,32,109,101,97,110,105,110,103,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,32,123,115,116,114,105,110,103,125,32,103,114,111,117,112,92,110,32,42,32,64,114,101,116,117,114,110,32,123,115,116,114,105,110,103,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,101,115,99,97,112,101,71,114,111,117,112,32,40,103,114,111,117,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,114,111,117,112,46,114,101,112,108,97,99,101,40,47,40,91,61,33,58,36,92,92,47,40,41,93,41,47,103,44,32,39,92,92,92,92,36,49,39,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,65,116,116,97,99,104,32,116,104,101,32,107,101,121,115,32,97,115,32,97,32,112,114,111,112,101,114,116,121,32,111,102,32,116,104,101,32,114,101,103,101,120,112,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,32,123,33,82,101,103,69,120,112,125,32,114,101,92,110,32,42,32,64,112,97,114,97,109,32,32,123,65,114,114,97,121,125,32,32,32,107,101,121,115,92,110,32,42,32,64,114,101,116,117,114,110,32,123,33,82,101,103,69,120,112,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,97,116,116,97,99,104,75,101,121,115,32,40,114,101,44,32,107,101,121,115,41,32,123,92,110,32,32,114,101,46,107,101,121,115,32,61,32,107,101,121,115,59,92,110,32,32,114,101,116,117,114,110,32,114,101,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,32,116,104,101,32,102,108,97,103,115,32,102,111,114,32,97,32,114,101,103,101,120,112,32,102,114,111,109,32,116,104,101,32,111,112,116,105,111,110,115,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,32,123,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,32,123,115,116,114,105,110,103,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,102,108,97,103,115,32,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,111,112,116,105,111,110,115,32,38,38,32,111,112,116,105,111,110,115,46,115,101,110,115,105,116,105,118,101,32,63,32,39,39,32,58,32,39,105,39,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,80,117,108,108,32,111,117,116,32,107,101,121,115,32,102,114,111,109,32,97,32,114,101,103,101,120,112,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,32,123,33,82,101,103,69,120,112,125,32,112,97,116,104,92,110,32,42,32,64,112,97,114,97,109,32,32,123,33,65,114,114,97,121,125,32,32,107,101,121,115,92,110,32,42,32,64,114,101,116,117,114,110,32,123,33,82,101,103,69,120,112,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,114,101,103,101,120,112,84,111,82,101,103,101,120,112,32,40,112,97,116,104,44,32,107,101,121,115,41,32,123,92,110,32,32,47,47,32,85,115,101,32,97,32,110,101,103,97,116,105,118,101,32,108,111,111,107,97,104,101,97,100,32,116,111,32,109,97,116,99,104,32,111,110,108,121,32,99,97,112,116,117,114,105,110,103,32,103,114,111,117,112,115,46,92,110,32,32,118,97,114,32,103,114,111,117,112,115,32,61,32,112,97,116,104,46,115,111,117,114,99,101,46,109,97,116,99,104,40,47,92,92,40,40,63,33,92,92,63,41,47,103,41,59,92,110,92,110,32,32,105,102,32,40,103,114,111,117,112,115,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,103,114,111,117,112,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,107,101,121,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,105,44,92,110,32,32,32,32,32,32,32,32,112,114,101,102,105,120,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,100,101,108,105,109,105,116,101,114,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,111,112,116,105,111,110,97,108,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,114,101,112,101,97,116,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,112,97,114,116,105,97,108,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,97,115,116,101,114,105,115,107,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,112,97,116,116,101,114,110,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,97,116,116,97,99,104,75,101,121,115,40,112,97,116,104,44,32,107,101,121,115,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,84,114,97,110,115,102,111,114,109,32,97,110,32,97,114,114,97,121,32,105,110,116,111,32,97,32,114,101,103,101,120,112,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,32,123,33,65,114,114,97,121,125,32,32,112,97,116,104,92,110,32,42,32,64,112,97,114,97,109,32,32,123,65,114,114,97,121,125,32,32,32,107,101,121,115,92,110,32,42,32,64,112,97,114,97,109,32,32,123,33,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,32,123,33,82,101,103,69,120,112,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,97,114,114,97,121,84,111,82,101,103,101,120,112,32,40,112,97,116,104,44,32,107,101,121,115,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,112,97,114,116,115,32,61,32,91,93,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,112,97,116,104,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,112,97,114,116,115,46,112,117,115,104,40,112,97,116,104,84,111,82,101,103,101,120,112,40,112,97,116,104,91,105,93,44,32,107,101,121,115,44,32,111,112,116,105,111,110,115,41,46,115,111,117,114,99,101,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,114,101,103,101,120,112,32,61,32,110,101,119,32,82,101,103,69,120,112,40,39,40,63,58,39,32,43,32,112,97,114,116,115,46,106,111,105,110,40,39,124,39,41,32,43,32,39,41,39,44,32,102,108,97,103,115,40,111,112,116,105,111,110,115,41,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,97,116,116,97,99,104,75,101,121,115,40,114,101,103,101,120,112,44,32,107,101,121,115,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,67,114,101,97,116,101,32,97,32,112,97,116,104,32,114,101,103,101,120,112,32,102,114,111,109,32,115,116,114,105,110,103,32,105,110,112,117,116,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,32,123,115,116,114,105,110,103,125,32,32,112,97,116,104,92,110,32,42,32,64,112,97,114,97,109,32,32,123,33,65,114,114,97,121,125,32,32,107,101,121,115,92,110,32,42,32,64,112,97,114,97,109,32,32,123,33,79,98,106,101,99,116,125,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,32,123,33,82,101,103,69,120,112,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,115,116,114,105,110,103,84,111,82,101,103,101,120,112,32,40,112,97,116,104,44,32,107,101,121,115,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,111,107,101,110,115,84,111,82,101,103,69,120,112,40,112,97,114,115,101,40,112,97,116,104,44,32,111,112,116,105,111,110,115,41,44,32,107,101,121,115,44,32,111,112,116,105,111,110,115,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,69,120,112,111,115,101,32,97,32,102,117,110,99,116,105,111,110,32,102,111,114,32,116,97,107,105,110,103,32,116,111,107,101,110,115,32,97,110,100,32,114,101,116,117,114,110,105,110,103,32,97,32,82,101,103,69,120,112,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,32,123,33,65,114,114,97,121,125,32,32,32,32,32,32,32,32,32,32,116,111,107,101,110,115,92,110,32,42,32,64,112,97,114,97,109,32,32,123,40,65,114,114,97,121,124,79,98,106,101,99,116,41,61,125,32,107,101,121,115,92,110,32,42,32,64,112,97,114,97,109,32,32,123,79,98,106,101,99,116,61,125,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,32,123,33,82,101,103,69,120,112,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,116,111,107,101,110,115,84,111,82,101,103,69,120,112,32,40,116,111,107,101,110,115,44,32,107,101,121,115,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,105,102,32,40,33,105,115,97,114,114,97,121,40,107,101,121,115,41,41,32,123,92,110,32,32,32,32,111,112,116,105,111,110,115,32,61,32,47,42,42,32,64,116,121,112,101,32,123,33,79,98,106,101,99,116,125,32,42,47,32,40,107,101,121,115,32,124,124,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,107,101,121,115,32,61,32,91,93,59,92,110,32,32,125,92,110,92,110,32,32,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,92,110,32,32,118,97,114,32,115,116,114,105,99,116,32,61,32,111,112,116,105,111,110,115,46,115,116,114,105,99,116,59,92,110,32,32,118,97,114,32,101,110,100,32,61,32,111,112,116,105,111,110,115,46,101,110,100,32,33,61,61,32,102,97,108,115,101,59,92,110,32,32,118,97,114,32,114,111,117,116,101,32,61,32,39,39,59,92,110,92,110,32,32,47,47,32,73,116,101,114,97,116,101,32,111,118,101,114,32,116,104,101,32,116,111,107,101,110,115,32,97,110,100,32,99,114,101,97,116,101,32,111,117,114,32,114,101,103,101,120,112,32,115,116,114,105,110,103,46,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,116,111,107,101,110,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,116,111,107,101,110,32,61,32,116,111,107,101,110,115,91,105,93,59,92,110,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,116,111,107,101,110,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,32,32,114,111,117,116,101,32,43,61,32,101,115,99,97,112,101,83,116,114,105,110,103,40,116,111,107,101,110,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,114,101,102,105,120,32,61,32,101,115,99,97,112,101,83,116,114,105,110,103,40,116,111,107,101,110,46,112,114,101,102,105,120,41,59,92,110,32,32,32,32,32,32,118,97,114,32,99,97,112,116,117,114,101,32,61,32,39,40,63,58,39,32,43,32,116,111,107,101,110,46,112,97,116,116,101,114,110,32,43,32,39,41,39,59,92,110,92,110,32,32,32,32,32,32,107,101,121,115,46,112,117,115,104,40,116,111,107,101,110,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,111,107,101,110,46,114,101,112,101,97,116,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,112,116,117,114,101,32,43,61,32,39,40,63,58,39,32,43,32,112,114,101,102,105,120,32,43,32,99,97,112,116,117,114,101,32,43,32,39,41,42,39,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,111,107,101,110,46,111,112,116,105,111,110,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,111,107,101,110,46,112,97,114,116,105,97,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,97,112,116,117,114,101,32,61,32,39,40,63,58,39,32,43,32,112,114,101,102,105,120,32,43,32,39,40,39,32,43,32,99,97,112,116,117,114,101,32,43,32,39,41,41,63,39,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,97,112,116,117,114,101,32,61,32,112,114,101,102,105,120,32,43,32,39,40,39,32,43,32,99,97,112,116,117,114,101,32,43,32,39,41,63,39,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,99,97,112,116,117,114,101,32,61,32,112,114,101,102,105,120,32,43,32,39,40,39,32,43,32,99,97,112,116,117,114,101,32,43,32,39,41,39,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,111,117,116,101,32,43,61,32,99,97,112,116,117,114,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,100,101,108,105,109,105,116,101,114,32,61,32,101,115,99,97,112,101,83,116,114,105,110,103,40,111,112,116,105,111,110,115,46,100,101,108,105,109,105,116,101,114,32,124,124,32,39,47,39,41,59,92,110,32,32,118,97,114,32,101,110,100,115,87,105,116,104,68,101,108,105,109,105,116,101,114,32,61,32,114,111,117,116,101,46,115,108,105,99,101,40,45,100,101,108,105,109,105,116,101,114,46,108,101,110,103,116,104,41,32,61,61,61,32,100,101,108,105,109,105,116,101,114,59,92,110,92,110,32,32,47,47,32,73,110,32,110,111,110,45,115,116,114,105,99,116,32,109,111,100,101,32,119,101,32,97,108,108,111,119,32,97,32,115,108,97,115,104,32,97,116,32,116,104,101,32,101,110,100,32,111,102,32,109,97,116,99,104,46,32,73,102,32,116,104,101,32,112,97,116,104,32,116,111,92,110,32,32,47,47,32,109,97,116,99,104,32,97,108,114,101,97,100,121,32,101,110,100,115,32,119,105,116,104,32,97,32,115,108,97,115,104,44,32,119,101,32,114,101,109,111,118,101,32,105,116,32,102,111,114,32,99,111,110,115,105,115,116,101,110,99,121,46,32,84,104,101,32,115,108,97,115,104,92,110,32,32,47,47,32,105,115,32,118,97,108,105,100,32,97,116,32,116,104,101,32,101,110,100,32,111,102,32,97,32,112,97,116,104,32,109,97,116,99,104,44,32,110,111,116,32,105,110,32,116,104,101,32,109,105,100,100,108,101,46,32,84,104,105,115,32,105,115,32,105,109,112,111,114,116,97,110,116,92,110,32,32,47,47,32,105,110,32,110,111,110,45,101,110,100,105,110,103,32,109,111,100,101,44,32,119,104,101,114,101,32,92,34,47,116,101,115,116,47,92,34,32,115,104,111,117,108,100,110,39,116,32,109,97,116,99,104,32,92,34,47,116,101,115,116,47,47,114,111,117,116,101,92,34,46,92,110,32,32,105,102,32,40,33,115,116,114,105,99,116,41,32,123,92,110,32,32,32,32,114,111,117,116,101,32,61,32,40,101,110,100,115,87,105,116,104,68,101,108,105,109,105,116,101,114,32,63,32,114,111,117,116,101,46,115,108,105,99,101,40,48,44,32,45,100,101,108,105,109,105,116,101,114,46,108,101,110,103,116,104,41,32,58,32,114,111,117,116,101,41,32,43,32,39,40,63,58,39,32,43,32,100,101,108,105,109,105,116,101,114,32,43,32,39,40,63,61,36,41,41,63,39,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,101,110,100,41,32,123,92,110,32,32,32,32,114,111,117,116,101,32,43,61,32,39,36,39,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,47,32,73,110,32,110,111,110,45,101,110,100,105,110,103,32,109,111,100,101,44,32,119,101,32,110,101,101,100,32,116,104,101,32,99,97,112,116,117,114,105,110,103,32,103,114,111,117,112,115,32,116,111,32,109,97,116,99,104,32,97,115,32,109,117,99,104,32,97,115,92,110,32,32,32,32,47,47,32,112,111,115,115,105,98,108,101,32,98,121,32,117,115,105,110,103,32,97,32,112,111,115,105,116,105,118,101,32,108,111,111,107,97,104,101,97,100,32,116,111,32,116,104,101,32,101,110,100,32,111,114,32,110,101,120,116,32,112,97,116,104,32,115,101,103,109,101,110,116,46,92,110,32,32,32,32,114,111,117,116,101,32,43,61,32,115,116,114,105,99,116,32,38,38,32,101,110,100,115,87,105,116,104,68,101,108,105,109,105,116,101,114,32,63,32,39,39,32,58,32,39,40,63,61,39,32,43,32,100,101,108,105,109,105,116,101,114,32,43,32,39,124,36,41,39,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,97,116,116,97,99,104,75,101,121,115,40,110,101,119,32,82,101,103,69,120,112,40,39,94,39,32,43,32,114,111,117,116,101,44,32,102,108,97,103,115,40,111,112,116,105,111,110,115,41,41,44,32,107,101,121,115,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,78,111,114,109,97,108,105,122,101,32,116,104,101,32,103,105,118,101,110,32,112,97,116,104,32,115,116,114,105,110,103,44,32,114,101,116,117,114,110,105,110,103,32,97,32,114,101,103,117,108,97,114,32,101,120,112,114,101,115,115,105,111,110,46,92,110,32,42,92,110,32,42,32,65,110,32,101,109,112,116,121,32,97,114,114,97,121,32,99,97,110,32,98,101,32,112,97,115,115,101,100,32,105,110,32,102,111,114,32,116,104,101,32,107,101,121,115,44,32,119,104,105,99,104,32,119,105,108,108,32,104,111,108,100,32,116,104,101,92,110,32,42,32,112,108,97,99,101,104,111,108,100,101,114,32,107,101,121,32,100,101,115,99,114,105,112,116,105,111,110,115,46,32,70,111,114,32,101,120,97,109,112,108,101,44,32,117,115,105,110,103,32,96,47,117,115,101,114,47,58,105,100,96,44,32,96,107,101,121,115,96,32,119,105,108,108,92,110,32,42,32,99,111,110,116,97,105,110,32,96,91,123,32,110,97,109,101,58,32,39,105,100,39,44,32,100,101,108,105,109,105,116,101,114,58,32,39,47,39,44,32,111,112,116,105,111,110,97,108,58,32,102,97,108,115,101,44,32,114,101,112,101,97,116,58,32,102,97,108,115,101,32,125,93,96,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,32,123,40,115,116,114,105,110,103,124,82,101,103,69,120,112,124,65,114,114,97,121,41,125,32,112,97,116,104,92,110,32,42,32,64,112,97,114,97,109,32,32,123,40,65,114,114,97,121,124,79,98,106,101,99,116,41,61,125,32,32,32,32,32,32,32,107,101,121,115,92,110,32,42,32,64,112,97,114,97,109,32,32,123,79,98,106,101,99,116,61,125,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,92,110,32,42,32,64,114,101,116,117,114,110,32,123,33,82,101,103,69,120,112,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,112,97,116,104,84,111,82,101,103,101,120,112,32,40,112,97,116,104,44,32,107,101,121,115,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,105,102,32,40,33,105,115,97,114,114,97,121,40,107,101,121,115,41,41,32,123,92,110,32,32,32,32,111,112,116,105,111,110,115,32,61,32,47,42,42,32,64,116,121,112,101,32,123,33,79,98,106,101,99,116,125,32,42,47,32,40,107,101,121,115,32,124,124,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,107,101,121,115,32,61,32,91,93,59,92,110,32,32,125,92,110,92,110,32,32,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,92,110,32,32,105,102,32,40,112,97,116,104,32,105,110,115,116,97,110,99,101,111,102,32,82,101,103,69,120,112,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,103,101,120,112,84,111,82,101,103,101,120,112,40,112,97,116,104,44,32,47,42,42,32,64,116,121,112,101,32,123,33,65,114,114,97,121,125,32,42,47,32,40,107,101,121,115,41,41,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,105,115,97,114,114,97,121,40,112,97,116,104,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,114,97,121,84,111,82,101,103,101,120,112,40,47,42,42,32,64,116,121,112,101,32,123,33,65,114,114,97,121,125,32,42,47,32,40,112,97,116,104,41,44,32,47,42,42,32,64,116,121,112,101,32,123,33,65,114,114,97,121,125,32,42,47,32,40,107,101,121,115,41,44,32,111,112,116,105,111,110,115,41,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,84,111,82,101,103,101,120,112,40,47,42,42,32,64,116,121,112,101,32,123,115,116,114,105,110,103,125,32,42,47,32,40,112,97,116,104,41,44,32,47,42,42,32,64,116,121,112,101,32,123,33,65,114,114,97,121,125,32,42,47,32,40,107,101,121,115,41,44,32,111,112,116,105,111,110,115,41,92,110,125,92,110,112,97,116,104,84,111,82,101,103,101,120,112,95,49,46,112,97,114,115,101,32,61,32,112,97,114,115,101,95,49,59,92,110,112,97,116,104,84,111,82,101,103,101,120,112,95,49,46,99,111,109,112,105,108,101,32,61,32,99,111,109,112,105,108,101,95,49,59,92,110,112,97,116,104,84,111,82,101,103,101,120,112,95,49,46,116,111,107,101,110,115,84,111,70,117,110,99,116,105,111,110,32,61,32,116,111,107,101,110,115,84,111,70,117,110,99,116,105,111,110,95,49,59,92,110,112,97,116,104,84,111,82,101,103,101,120,112,95,49,46,116,111,107,101,110,115,84,111,82,101,103,69,120,112,32,61,32,116,111,107,101,110,115,84,111,82,101,103,69,120,112,95,49,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,118,97,114,32,114,101,103,101,120,112,67,111,109,112,105,108,101,67,97,99,104,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,102,105,108,108,80,97,114,97,109,115,32,40,92,110,32,32,112,97,116,104,44,92,110,32,32,112,97,114,97,109,115,44,92,110,32,32,114,111,117,116,101,77,115,103,92,110,41,32,123,92,110,32,32,112,97,114,97,109,115,32,61,32,112,97,114,97,109,115,32,124,124,32,123,125,59,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,118,97,114,32,102,105,108,108,101,114,32,61,92,110,32,32,32,32,32,32,114,101,103,101,120,112,67,111,109,112,105,108,101,67,97,99,104,101,91,112,97,116,104,93,32,124,124,92,110,32,32,32,32,32,32,40,114,101,103,101,120,112,67,111,109,112,105,108,101,67,97,99,104,101,91,112,97,116,104,93,32,61,32,112,97,116,104,84,111,82,101,103,101,120,112,95,49,46,99,111,109,112,105,108,101,40,112,97,116,104,41,41,59,92,110,92,110,32,32,32,32,47,47,32,70,105,120,32,35,50,53,48,53,32,114,101,115,111,108,118,105,110,103,32,97,115,116,101,114,105,115,107,32,114,111,117,116,101,115,32,123,32,110,97,109,101,58,32,39,110,111,116,45,102,111,117,110,100,39,44,32,112,97,114,97,109,115,58,32,123,32,112,97,116,104,77,97,116,99,104,58,32,39,47,110,111,116,45,102,111,117,110,100,39,32,125,125,92,110,32,32,32,32,47,47,32,97,110,100,32,102,105,120,32,35,51,49,48,54,32,115,111,32,116,104,97,116,32,121,111,117,32,99,97,110,32,119,111,114,107,32,119,105,116,104,32,108,111,99,97,116,105,111,110,32,100,101,115,99,114,105,112,116,111,114,32,111,98,106,101,99,116,32,104,97,118,105,110,103,32,112,97,114,97,109,115,46,112,97,116,104,77,97,116,99,104,32,101,113,117,97,108,32,116,111,32,101,109,112,116,121,32,115,116,114,105,110,103,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,112,97,114,97,109,115,46,112,97,116,104,77,97,116,99,104,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,32,112,97,114,97,109,115,91,48,93,32,61,32,112,97,114,97,109,115,46,112,97,116,104,77,97,116,99,104,59,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,102,105,108,108,101,114,40,112,97,114,97,109,115,44,32,123,32,112,114,101,116,116,121,58,32,116,114,117,101,32,125,41,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,70,105,120,32,35,51,48,55,50,32,110,111,32,119,97,114,110,32,105,102,32,96,112,97,116,104,77,97,116,99,104,96,32,105,115,32,115,116,114,105,110,103,92,110,32,32,32,32,32,32,119,97,114,110,40,116,121,112,101,111,102,32,112,97,114,97,109,115,46,112,97,116,104,77,97,116,99,104,32,61,61,61,32,39,115,116,114,105,110,103,39,44,32,40,92,34,109,105,115,115,105,110,103,32,112,97,114,97,109,32,102,111,114,32,92,34,32,43,32,114,111,117,116,101,77,115,103,32,43,32,92,34,58,32,92,34,32,43,32,40,101,46,109,101,115,115,97,103,101,41,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,39,39,92,110,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,47,47,32,100,101,108,101,116,101,32,116,104,101,32,48,32,105,102,32,105,116,32,119,97,115,32,97,100,100,101,100,92,110,32,32,32,32,100,101,108,101,116,101,32,112,97,114,97,109,115,91,48,93,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,76,111,99,97,116,105,111,110,32,40,92,110,32,32,114,97,119,44,92,110,32,32,99,117,114,114,101,110,116,44,92,110,32,32,97,112,112,101,110,100,44,92,110,32,32,114,111,117,116,101,114,92,110,41,32,123,92,110,32,32,118,97,114,32,110,101,120,116,32,61,32,116,121,112,101,111,102,32,114,97,119,32,61,61,61,32,39,115,116,114,105,110,103,39,32,63,32,123,32,112,97,116,104,58,32,114,97,119,32,125,32,58,32,114,97,119,59,92,110,32,32,47,47,32,110,97,109,101,100,32,116,97,114,103,101,116,92,110,32,32,105,102,32,40,110,101,120,116,46,95,110,111,114,109,97,108,105,122,101,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,110,101,120,116,46,110,97,109,101,41,32,123,92,110,32,32,32,32,110,101,120,116,32,61,32,101,120,116,101,110,100,40,123,125,44,32,114,97,119,41,59,92,110,32,32,32,32,118,97,114,32,112,97,114,97,109,115,32,61,32,110,101,120,116,46,112,97,114,97,109,115,59,92,110,32,32,32,32,105,102,32,40,112,97,114,97,109,115,32,38,38,32,116,121,112,101,111,102,32,112,97,114,97,109,115,32,61,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,32,32,110,101,120,116,46,112,97,114,97,109,115,32,61,32,101,120,116,101,110,100,40,123,125,44,32,112,97,114,97,109,115,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,92,110,32,32,125,92,110,92,110,32,32,47,47,32,114,101,108,97,116,105,118,101,32,112,97,114,97,109,115,92,110,32,32,105,102,32,40,33,110,101,120,116,46,112,97,116,104,32,38,38,32,110,101,120,116,46,112,97,114,97,109,115,32,38,38,32,99,117,114,114,101,110,116,41,32,123,92,110,32,32,32,32,110,101,120,116,32,61,32,101,120,116,101,110,100,40,123,125,44,32,110,101,120,116,41,59,92,110,32,32,32,32,110,101,120,116,46,95,110,111,114,109,97,108,105,122,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,118,97,114,32,112,97,114,97,109,115,36,49,32,61,32,101,120,116,101,110,100,40,101,120,116,101,110,100,40,123,125,44,32,99,117,114,114,101,110,116,46,112,97,114,97,109,115,41,44,32,110,101,120,116,46,112,97,114,97,109,115,41,59,92,110,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,46,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,110,101,120,116,46,110,97,109,101,32,61,32,99,117,114,114,101,110,116,46,110,97,109,101,59,92,110,32,32,32,32,32,32,110,101,120,116,46,112,97,114,97,109,115,32,61,32,112,97,114,97,109,115,36,49,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,99,117,114,114,101,110,116,46,109,97,116,99,104,101,100,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,97,119,80,97,116,104,32,61,32,99,117,114,114,101,110,116,46,109,97,116,99,104,101,100,91,99,117,114,114,101,110,116,46,109,97,116,99,104,101,100,46,108,101,110,103,116,104,32,45,32,49,93,46,112,97,116,104,59,92,110,32,32,32,32,32,32,110,101,120,116,46,112,97,116,104,32,61,32,102,105,108,108,80,97,114,97,109,115,40,114,97,119,80,97,116,104,44,32,112,97,114,97,109,115,36,49,44,32,40,92,34,112,97,116,104,32,92,34,32,43,32,40,99,117,114,114,101,110,116,46,112,97,116,104,41,41,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,102,97,108,115,101,44,32,92,34,114,101,108,97,116,105,118,101,32,112,97,114,97,109,115,32,110,97,118,105,103,97,116,105,111,110,32,114,101,113,117,105,114,101,115,32,97,32,99,117,114,114,101,110,116,32,114,111,117,116,101,46,92,34,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,112,97,114,115,101,100,80,97,116,104,32,61,32,112,97,114,115,101,80,97,116,104,40,110,101,120,116,46,112,97,116,104,32,124,124,32,39,39,41,59,92,110,32,32,118,97,114,32,98,97,115,101,80,97,116,104,32,61,32,40,99,117,114,114,101,110,116,32,38,38,32,99,117,114,114,101,110,116,46,112,97,116,104,41,32,124,124,32,39,47,39,59,92,110,32,32,118,97,114,32,112,97,116,104,32,61,32,112,97,114,115,101,100,80,97,116,104,46,112,97,116,104,92,110,32,32,32,32,63,32,114,101,115,111,108,118,101,80,97,116,104,40,112,97,114,115,101,100,80,97,116,104,46,112,97,116,104,44,32,98,97,115,101,80,97,116,104,44,32,97,112,112,101,110,100,32,124,124,32,110,101,120,116,46,97,112,112,101,110,100,41,92,110,32,32,32,32,58,32,98,97,115,101,80,97,116,104,59,92,110,92,110,32,32,118,97,114,32,113,117,101,114,121,32,61,32,114,101,115,111,108,118,101,81,117,101,114,121,40,92,110,32,32,32,32,112,97,114,115,101,100,80,97,116,104,46,113,117,101,114,121,44,92,110,32,32,32,32,110,101,120,116,46,113,117,101,114,121,44,92,110,32,32,32,32,114,111,117,116,101,114,32,38,38,32,114,111,117,116,101,114,46,111,112,116,105,111,110,115,46,112,97,114,115,101,81,117,101,114,121,92,110,32,32,41,59,92,110,92,110,32,32,118,97,114,32,104,97,115,104,32,61,32,110,101,120,116,46,104,97,115,104,32,124,124,32,112,97,114,115,101,100,80,97,116,104,46,104,97,115,104,59,92,110,32,32,105,102,32,40,104,97,115,104,32,38,38,32,104,97,115,104,46,99,104,97,114,65,116,40,48,41,32,33,61,61,32,39,35,39,41,32,123,92,110,32,32,32,32,104,97,115,104,32,61,32,92,34,35,92,34,32,43,32,104,97,115,104,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,95,110,111,114,109,97,108,105,122,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,112,97,116,104,58,32,112,97,116,104,44,92,110,32,32,32,32,113,117,101,114,121,58,32,113,117,101,114,121,44,92,110,32,32,32,32,104,97,115,104,58,32,104,97,115,104,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,47,32,119,111,114,107,32,97,114,111,117,110,100,32,119,101,105,114,100,32,102,108,111,119,32,98,117,103,92,110,118,97,114,32,116,111,84,121,112,101,115,32,61,32,91,83,116,114,105,110,103,44,32,79,98,106,101,99,116,93,59,92,110,118,97,114,32,101,118,101,110,116,84,121,112,101,115,32,61,32,91,83,116,114,105,110,103,44,32,65,114,114,97,121,93,59,92,110,92,110,118,97,114,32,110,111,111,112,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,125,59,92,110,92,110,118,97,114,32,119,97,114,110,101,100,67,117,115,116,111,109,83,108,111,116,59,92,110,118,97,114,32,119,97,114,110,101,100,84,97,103,80,114,111,112,59,92,110,118,97,114,32,119,97,114,110,101,100,69,118,101,110,116,80,114,111,112,59,92,110,92,110,118,97,114,32,76,105,110,107,32,61,32,123,92,110,32,32,110,97,109,101,58,32,39,82,111,117,116,101,114,76,105,110,107,39,44,92,110,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,116,111,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,116,111,84,121,112,101,115,44,92,110,32,32,32,32,32,32,114,101,113,117,105,114,101,100,58,32,116,114,117,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,97,103,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,39,97,39,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,117,115,116,111,109,58,32,66,111,111,108,101,97,110,44,92,110,32,32,32,32,101,120,97,99,116,58,32,66,111,111,108,101,97,110,44,92,110,32,32,32,32,101,120,97,99,116,80,97,116,104,58,32,66,111,111,108,101,97,110,44,92,110,32,32,32,32,97,112,112,101,110,100,58,32,66,111,111,108,101,97,110,44,92,110,32,32,32,32,114,101,112,108,97,99,101,58,32,66,111,111,108,101,97,110,44,92,110,32,32,32,32,97,99,116,105,118,101,67,108,97,115,115,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,101,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,97,114,105,97,67,117,114,114,101,110,116,86,97,108,117,101,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,39,112,97,103,101,39,92,110,32,32,32,32,125,44,92,110,32,32,32,32,101,118,101,110,116,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,101,118,101,110,116,84,121,112,101,115,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,39,99,108,105,99,107,39,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,32,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,114,111,117,116,101,114,32,61,32,116,104,105,115,46,36,114,111,117,116,101,114,59,92,110,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,32,61,32,116,104,105,115,46,36,114,111,117,116,101,59,92,110,32,32,32,32,118,97,114,32,114,101,102,32,61,32,114,111,117,116,101,114,46,114,101,115,111,108,118,101,40,92,110,32,32,32,32,32,32,116,104,105,115,46,116,111,44,92,110,32,32,32,32,32,32,99,117,114,114,101,110,116,44,92,110,32,32,32,32,32,32,116,104,105,115,46,97,112,112,101,110,100,92,110,32,32,32,32,41,59,92,110,32,32,32,32,118,97,114,32,108,111,99,97,116,105,111,110,32,61,32,114,101,102,46,108,111,99,97,116,105,111,110,59,92,110,32,32,32,32,118,97,114,32,114,111,117,116,101,32,61,32,114,101,102,46,114,111,117,116,101,59,92,110,32,32,32,32,118,97,114,32,104,114,101,102,32,61,32,114,101,102,46,104,114,101,102,59,92,110,92,110,32,32,32,32,118,97,114,32,99,108,97,115,115,101,115,32,61,32,123,125,59,92,110,32,32,32,32,118,97,114,32,103,108,111,98,97,108,65,99,116,105,118,101,67,108,97,115,115,32,61,32,114,111,117,116,101,114,46,111,112,116,105,111,110,115,46,108,105,110,107,65,99,116,105,118,101,67,108,97,115,115,59,92,110,32,32,32,32,118,97,114,32,103,108,111,98,97,108,69,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,32,61,32,114,111,117,116,101,114,46,111,112,116,105,111,110,115,46,108,105,110,107,69,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,59,92,110,32,32,32,32,47,47,32,83,117,112,112,111,114,116,32,103,108,111,98,97,108,32,101,109,112,116,121,32,97,99,116,105,118,101,32,99,108,97,115,115,92,110,32,32,32,32,118,97,114,32,97,99,116,105,118,101,67,108,97,115,115,70,97,108,108,98,97,99,107,32,61,92,110,32,32,32,32,32,32,103,108,111,98,97,108,65,99,116,105,118,101,67,108,97,115,115,32,61,61,32,110,117,108,108,32,63,32,39,114,111,117,116,101,114,45,108,105,110,107,45,97,99,116,105,118,101,39,32,58,32,103,108,111,98,97,108,65,99,116,105,118,101,67,108,97,115,115,59,92,110,32,32,32,32,118,97,114,32,101,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,70,97,108,108,98,97,99,107,32,61,92,110,32,32,32,32,32,32,103,108,111,98,97,108,69,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,63,32,39,114,111,117,116,101,114,45,108,105,110,107,45,101,120,97,99,116,45,97,99,116,105,118,101,39,92,110,32,32,32,32,32,32,32,32,58,32,103,108,111,98,97,108,69,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,59,92,110,32,32,32,32,118,97,114,32,97,99,116,105,118,101,67,108,97,115,115,32,61,92,110,32,32,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,67,108,97,115,115,32,61,61,32,110,117,108,108,32,63,32,97,99,116,105,118,101,67,108,97,115,115,70,97,108,108,98,97,99,107,32,58,32,116,104,105,115,46,97,99,116,105,118,101,67,108,97,115,115,59,92,110,32,32,32,32,118,97,114,32,101,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,32,61,92,110,32,32,32,32,32,32,116,104,105,115,46,101,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,63,32,101,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,70,97,108,108,98,97,99,107,92,110,32,32,32,32,32,32,32,32,58,32,116,104,105,115,46,101,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,59,92,110,92,110,32,32,32,32,118,97,114,32,99,111,109,112,97,114,101,84,97,114,103,101,116,32,61,32,114,111,117,116,101,46,114,101,100,105,114,101,99,116,101,100,70,114,111,109,92,110,32,32,32,32,32,32,63,32,99,114,101,97,116,101,82,111,117,116,101,40,110,117,108,108,44,32,110,111,114,109,97,108,105,122,101,76,111,99,97,116,105,111,110,40,114,111,117,116,101,46,114,101,100,105,114,101,99,116,101,100,70,114,111,109,41,44,32,110,117,108,108,44,32,114,111,117,116,101,114,41,92,110,32,32,32,32,32,32,58,32,114,111,117,116,101,59,92,110,92,110,32,32,32,32,99,108,97,115,115,101,115,91,101,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,93,32,61,32,105,115,83,97,109,101,82,111,117,116,101,40,99,117,114,114,101,110,116,44,32,99,111,109,112,97,114,101,84,97,114,103,101,116,44,32,116,104,105,115,46,101,120,97,99,116,80,97,116,104,41,59,92,110,32,32,32,32,99,108,97,115,115,101,115,91,97,99,116,105,118,101,67,108,97,115,115,93,32,61,32,116,104,105,115,46,101,120,97,99,116,32,124,124,32,116,104,105,115,46,101,120,97,99,116,80,97,116,104,92,110,32,32,32,32,32,32,63,32,99,108,97,115,115,101,115,91,101,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,93,92,110,32,32,32,32,32,32,58,32,105,115,73,110,99,108,117,100,101,100,82,111,117,116,101,40,99,117,114,114,101,110,116,44,32,99,111,109,112,97,114,101,84,97,114,103,101,116,41,59,92,110,92,110,32,32,32,32,118,97,114,32,97,114,105,97,67,117,114,114,101,110,116,86,97,108,117,101,32,61,32,99,108,97,115,115,101,115,91,101,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,93,32,63,32,116,104,105,115,46,97,114,105,97,67,117,114,114,101,110,116,86,97,108,117,101,32,58,32,110,117,108,108,59,92,110,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,103,117,97,114,100,69,118,101,110,116,40,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,36,49,46,114,101,112,108,97,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,111,117,116,101,114,46,114,101,112,108,97,99,101,40,108,111,99,97,116,105,111,110,44,32,110,111,111,112,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,111,117,116,101,114,46,112,117,115,104,40,108,111,99,97,116,105,111,110,44,32,110,111,111,112,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,118,97,114,32,111,110,32,61,32,123,32,99,108,105,99,107,58,32,103,117,97,114,100,69,118,101,110,116,32,125,59,92,110,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,104,105,115,46,101,118,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,101,118,101,110,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,111,110,91,101,93,32,61,32,104,97,110,100,108,101,114,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,111,110,91,116,104,105,115,46,101,118,101,110,116,93,32,61,32,104,97,110,100,108,101,114,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,123,32,99,108,97,115,115,58,32,99,108,97,115,115,101,115,32,125,59,92,110,92,110,32,32,32,32,118,97,114,32,115,99,111,112,101,100,83,108,111,116,32,61,92,110,32,32,32,32,32,32,33,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,36,104,97,115,78,111,114,109,97,108,32,38,38,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,32,38,38,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,40,123,92,110,32,32,32,32,32,32,32,32,104,114,101,102,58,32,104,114,101,102,44,92,110,32,32,32,32,32,32,32,32,114,111,117,116,101,58,32,114,111,117,116,101,44,92,110,32,32,32,32,32,32,32,32,110,97,118,105,103,97,116,101,58,32,104,97,110,100,108,101,114,44,92,110,32,32,32,32,32,32,32,32,105,115,65,99,116,105,118,101,58,32,99,108,97,115,115,101,115,91,97,99,116,105,118,101,67,108,97,115,115,93,44,92,110,32,32,32,32,32,32,32,32,105,115,69,120,97,99,116,65,99,116,105,118,101,58,32,99,108,97,115,115,101,115,91,101,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,93,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,115,99,111,112,101,100,83,108,111,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,116,104,105,115,46,99,117,115,116,111,109,41,32,123,92,110,32,32,32,32,32,32,32,32,33,119,97,114,110,101,100,67,117,115,116,111,109,83,108,111,116,32,38,38,32,119,97,114,110,40,102,97,108,115,101,44,32,39,73,110,32,86,117,101,32,82,111,117,116,101,114,32,52,44,32,116,104,101,32,118,45,115,108,111,116,32,65,80,73,32,119,105,108,108,32,98,121,32,100,101,102,97,117,108,116,32,119,114,97,112,32,105,116,115,32,99,111,110,116,101,110,116,32,119,105,116,104,32,97,110,32,60,97,62,32,101,108,101,109,101,110,116,46,32,85,115,101,32,116,104,101,32,99,117,115,116,111,109,32,112,114,111,112,32,116,111,32,114,101,109,111,118,101,32,116,104,105,115,32,119,97,114,110,105,110,103,58,92,92,110,60,114,111,117,116,101,114,45,108,105,110,107,32,118,45,115,108,111,116,61,92,34,123,32,110,97,118,105,103,97,116,101,44,32,104,114,101,102,32,125,92,34,32,99,117,115,116,111,109,62,60,47,114,111,117,116,101,114,45,108,105,110,107,62,92,92,110,39,41,59,92,110,32,32,32,32,32,32,32,32,119,97,114,110,101,100,67,117,115,116,111,109,83,108,111,116,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,115,99,111,112,101,100,83,108,111,116,46,108,101,110,103,116,104,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,111,112,101,100,83,108,111,116,91,48,93,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,99,111,112,101,100,83,108,111,116,46,108,101,110,103,116,104,32,62,32,49,32,124,124,32,33,115,99,111,112,101,100,83,108,111,116,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,92,34,60,114,111,117,116,101,114,45,108,105,110,107,62,32,119,105,116,104,32,116,111,61,92,92,92,34,92,34,32,43,32,40,116,104,105,115,46,116,111,41,32,43,32,92,34,92,92,92,34,32,105,115,32,116,114,121,105,110,103,32,116,111,32,117,115,101,32,97,32,115,99,111,112,101,100,32,115,108,111,116,32,98,117,116,32,105,116,32,100,105,100,110,39,116,32,112,114,111,118,105,100,101,32,101,120,97,99,116,108,121,32,111,110,101,32,99,104,105,108,100,46,32,87,114,97,112,112,105,110,103,32,116,104,101,32,99,111,110,116,101,110,116,32,119,105,116,104,32,97,32,115,112,97,110,32,101,108,101,109,101,110,116,46,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,99,111,112,101,100,83,108,111,116,46,108,101,110,103,116,104,32,61,61,61,32,48,32,63,32,104,40,41,32,58,32,104,40,39,115,112,97,110,39,44,32,123,125,44,32,115,99,111,112,101,100,83,108,111,116,41,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,39,116,97,103,39,32,105,110,32,116,104,105,115,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,68,97,116,97,32,38,38,32,33,119,97,114,110,101,100,84,97,103,80,114,111,112,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,60,114,111,117,116,101,114,45,108,105,110,107,62,39,115,32,116,97,103,32,112,114,111,112,32,105,115,32,100,101,112,114,101,99,97,116,101,100,32,97,110,100,32,104,97,115,32,98,101,101,110,32,114,101,109,111,118,101,100,32,105,110,32,86,117,101,32,82,111,117,116,101,114,32,52,46,32,85,115,101,32,116,104,101,32,118,45,115,108,111,116,32,65,80,73,32,116,111,32,114,101,109,111,118,101,32,116,104,105,115,32,119,97,114,110,105,110,103,58,32,104,116,116,112,115,58,47,47,110,101,120,116,46,114,111,117,116,101,114,46,118,117,101,106,115,46,111,114,103,47,103,117,105,100,101,47,109,105,103,114,97,116,105,111,110,47,35,114,101,109,111,118,97,108,45,111,102,45,101,118,101,110,116,45,97,110,100,45,116,97,103,45,112,114,111,112,115,45,105,110,45,114,111,117,116,101,114,45,108,105,110,107,46,92,34,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,119,97,114,110,101,100,84,97,103,80,114,111,112,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,39,101,118,101,110,116,39,32,105,110,32,116,104,105,115,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,68,97,116,97,32,38,38,32,33,119,97,114,110,101,100,69,118,101,110,116,80,114,111,112,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,60,114,111,117,116,101,114,45,108,105,110,107,62,39,115,32,101,118,101,110,116,32,112,114,111,112,32,105,115,32,100,101,112,114,101,99,97,116,101,100,32,97,110,100,32,104,97,115,32,98,101,101,110,32,114,101,109,111,118,101,100,32,105,110,32,86,117,101,32,82,111,117,116,101,114,32,52,46,32,85,115,101,32,116,104,101,32,118,45,115,108,111,116,32,65,80,73,32,116,111,32,114,101,109,111,118,101,32,116,104,105,115,32,119,97,114,110,105,110,103,58,32,104,116,116,112,115,58,47,47,110,101,120,116,46,114,111,117,116,101,114,46,118,117,101,106,115,46,111,114,103,47,103,117,105,100,101,47,109,105,103,114,97,116,105,111,110,47,35,114,101,109,111,118,97,108,45,111,102,45,101,118,101,110,116,45,97,110,100,45,116,97,103,45,112,114,111,112,115,45,105,110,45,114,111,117,116,101,114,45,108,105,110,107,46,92,34,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,119,97,114,110,101,100,69,118,101,110,116,80,114,111,112,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,116,97,103,32,61,61,61,32,39,97,39,41,32,123,92,110,32,32,32,32,32,32,100,97,116,97,46,111,110,32,61,32,111,110,59,92,110,32,32,32,32,32,32,100,97,116,97,46,97,116,116,114,115,32,61,32,123,32,104,114,101,102,58,32,104,114,101,102,44,32,39,97,114,105,97,45,99,117,114,114,101,110,116,39,58,32,97,114,105,97,67,117,114,114,101,110,116,86,97,108,117,101,32,125,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,102,105,110,100,32,116,104,101,32,102,105,114,115,116,32,60,97,62,32,99,104,105,108,100,32,97,110,100,32,97,112,112,108,121,32,108,105,115,116,101,110,101,114,32,97,110,100,32,104,114,101,102,92,110,32,32,32,32,32,32,118,97,114,32,97,32,61,32,102,105,110,100,65,110,99,104,111,114,40,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,41,59,92,110,32,32,32,32,32,32,105,102,32,40,97,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,105,110,32,99,97,115,101,32,116,104,101,32,60,97,62,32,105,115,32,97,32,115,116,97,116,105,99,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,97,46,105,115,83,116,97,116,105,99,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,68,97,116,97,32,61,32,40,97,46,100,97,116,97,32,61,32,101,120,116,101,110,100,40,123,125,44,32,97,46,100,97,116,97,41,41,59,92,110,32,32,32,32,32,32,32,32,97,68,97,116,97,46,111,110,32,61,32,97,68,97,116,97,46,111,110,32,124,124,32,123,125,59,92,110,32,32,32,32,32,32,32,32,47,47,32,116,114,97,110,115,102,111,114,109,32,101,120,105,115,116,105,110,103,32,101,118,101,110,116,115,32,105,110,32,98,111,116,104,32,111,98,106,101,99,116,115,32,105,110,116,111,32,97,114,114,97,121,115,32,115,111,32,119,101,32,99,97,110,32,112,117,115,104,32,108,97,116,101,114,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,101,118,101,110,116,32,105,110,32,97,68,97,116,97,46,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,36,49,32,61,32,97,68,97,116,97,46,111,110,91,101,118,101,110,116,93,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,32,105,110,32,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,68,97,116,97,46,111,110,91,101,118,101,110,116,93,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,104,97,110,100,108,101,114,36,49,41,32,63,32,104,97,110,100,108,101,114,36,49,32,58,32,91,104,97,110,100,108,101,114,36,49,93,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,47,47,32,97,112,112,101,110,100,32,110,101,119,32,108,105,115,116,101,110,101,114,115,32,102,111,114,32,114,111,117,116,101,114,45,108,105,110,107,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,101,118,101,110,116,36,49,32,105,110,32,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,118,101,110,116,36,49,32,105,110,32,97,68,97,116,97,46,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,111,110,91,101,118,101,110,116,93,32,105,115,32,97,108,119,97,121,115,32,97,32,102,117,110,99,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,68,97,116,97,46,111,110,91,101,118,101,110,116,36,49,93,46,112,117,115,104,40,111,110,91,101,118,101,110,116,36,49,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,68,97,116,97,46,111,110,91,101,118,101,110,116,36,49,93,32,61,32,104,97,110,100,108,101,114,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,97,65,116,116,114,115,32,61,32,40,97,46,100,97,116,97,46,97,116,116,114,115,32,61,32,101,120,116,101,110,100,40,123,125,44,32,97,46,100,97,116,97,46,97,116,116,114,115,41,41,59,92,110,32,32,32,32,32,32,32,32,97,65,116,116,114,115,46,104,114,101,102,32,61,32,104,114,101,102,59,92,110,32,32,32,32,32,32,32,32,97,65,116,116,114,115,91,39,97,114,105,97,45,99,117,114,114,101,110,116,39,93,32,61,32,97,114,105,97,67,117,114,114,101,110,116,86,97,108,117,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,100,111,101,115,110,39,116,32,104,97,118,101,32,60,97,62,32,99,104,105,108,100,44,32,97,112,112,108,121,32,108,105,115,116,101,110,101,114,32,116,111,32,115,101,108,102,92,110,32,32,32,32,32,32,32,32,100,97,116,97,46,111,110,32,61,32,111,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,104,105,115,46,116,97,103,44,32,100,97,116,97,44,32,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,41,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,103,117,97,114,100,69,118,101,110,116,32,40,101,41,32,123,92,110,32,32,47,47,32,100,111,110,39,116,32,114,101,100,105,114,101,99,116,32,119,105,116,104,32,99,111,110,116,114,111,108,32,107,101,121,115,92,110,32,32,105,102,32,40,101,46,109,101,116,97,75,101,121,32,124,124,32,101,46,97,108,116,75,101,121,32,124,124,32,101,46,99,116,114,108,75,101,121,32,124,124,32,101,46,115,104,105,102,116,75,101,121,41,32,123,32,114,101,116,117,114,110,32,125,92,110,32,32,47,47,32,100,111,110,39,116,32,114,101,100,105,114,101,99,116,32,119,104,101,110,32,112,114,101,118,101,110,116,68,101,102,97,117,108,116,32,99,97,108,108,101,100,92,110,32,32,105,102,32,40,101,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,32,123,32,114,101,116,117,114,110,32,125,92,110,32,32,47,47,32,100,111,110,39,116,32,114,101,100,105,114,101,99,116,32,111,110,32,114,105,103,104,116,32,99,108,105,99,107,92,110,32,32,105,102,32,40,101,46,98,117,116,116,111,110,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,101,46,98,117,116,116,111,110,32,33,61,61,32,48,41,32,123,32,114,101,116,117,114,110,32,125,92,110,32,32,47,47,32,100,111,110,39,116,32,114,101,100,105,114,101,99,116,32,105,102,32,96,116,97,114,103,101,116,61,92,34,95,98,108,97,110,107,92,34,96,92,110,32,32,105,102,32,40,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,32,38,38,32,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,46,103,101,116,65,116,116,114,105,98,117,116,101,41,32,123,92,110,32,32,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,39,116,97,114,103,101,116,39,41,59,92,110,32,32,32,32,105,102,32,40,47,92,92,98,95,98,108,97,110,107,92,92,98,47,105,46,116,101,115,116,40,116,97,114,103,101,116,41,41,32,123,32,114,101,116,117,114,110,32,125,92,110,32,32,125,92,110,32,32,47,47,32,116,104,105,115,32,109,97,121,32,98,101,32,97,32,87,101,101,120,32,101,118,101,110,116,32,119,104,105,99,104,32,100,111,101,115,110,39,116,32,104,97,118,101,32,116,104,105,115,32,109,101,116,104,111,100,92,110,32,32,105,102,32,40,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,41,32,123,92,110,32,32,32,32,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,105,110,100,65,110,99,104,111,114,32,40,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,105,102,32,40,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,99,104,105,108,100,32,61,32,99,104,105,108,100,114,101,110,91,105,93,59,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,46,116,97,103,32,61,61,61,32,39,97,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,104,105,108,100,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,46,99,104,105,108,100,114,101,110,32,38,38,32,40,99,104,105,108,100,32,61,32,102,105,110,100,65,110,99,104,111,114,40,99,104,105,108,100,46,99,104,105,108,100,114,101,110,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,104,105,108,100,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,95,86,117,101,59,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,115,116,97,108,108,32,40,86,117,101,41,32,123,92,110,32,32,105,102,32,40,105,110,115,116,97,108,108,46,105,110,115,116,97,108,108,101,100,32,38,38,32,95,86,117,101,32,61,61,61,32,86,117,101,41,32,123,32,114,101,116,117,114,110,32,125,92,110,32,32,105,110,115,116,97,108,108,46,105,110,115,116,97,108,108,101,100,32,61,32,116,114,117,101,59,92,110,92,110,32,32,95,86,117,101,32,61,32,86,117,101,59,92,110,92,110,32,32,118,97,114,32,105,115,68,101,102,32,61,32,102,117,110,99,116,105,111,110,32,40,118,41,32,123,32,114,101,116,117,114,110,32,118,32,33,61,61,32,117,110,100,101,102,105,110,101,100,59,32,125,59,92,110,92,110,32,32,118,97,114,32,114,101,103,105,115,116,101,114,73,110,115,116,97,110,99,101,32,61,32,102,117,110,99,116,105,111,110,32,40,118,109,44,32,99,97,108,108,86,97,108,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,118,109,46,36,111,112,116,105,111,110,115,46,95,112,97,114,101,110,116,86,110,111,100,101,59,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,100,97,116,97,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,114,101,103,105,115,116,101,114,82,111,117,116,101,73,110,115,116,97,110,99,101,41,41,32,123,92,110,32,32,32,32,32,32,105,40,118,109,44,32,99,97,108,108,86,97,108,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,86,117,101,46,109,105,120,105,110,40,123,92,110,32,32,32,32,98,101,102,111,114,101,67,114,101,97,116,101,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,67,114,101,97,116,101,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,116,104,105,115,46,36,111,112,116,105,111,110,115,46,114,111,117,116,101,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,111,117,116,101,114,82,111,111,116,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,111,117,116,101,114,32,61,32,116,104,105,115,46,36,111,112,116,105,111,110,115,46,114,111,117,116,101,114,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,111,117,116,101,114,46,105,110,105,116,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,86,117,101,46,117,116,105,108,46,100,101,102,105,110,101,82,101,97,99,116,105,118,101,40,116,104,105,115,44,32,39,95,114,111,117,116,101,39,44,32,116,104,105,115,46,95,114,111,117,116,101,114,46,104,105,115,116,111,114,121,46,99,117,114,114,101,110,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,114,111,117,116,101,114,82,111,111,116,32,61,32,40,116,104,105,115,46,36,112,97,114,101,110,116,32,38,38,32,116,104,105,115,46,36,112,97,114,101,110,116,46,95,114,111,117,116,101,114,82,111,111,116,41,32,124,124,32,116,104,105,115,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,103,105,115,116,101,114,73,110,115,116,97,110,99,101,40,116,104,105,115,44,32,116,104,105,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,101,115,116,114,111,121,101,100,58,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,101,100,32,40,41,32,123,92,110,32,32,32,32,32,32,114,101,103,105,115,116,101,114,73,110,115,116,97,110,99,101,40,116,104,105,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,92,110,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,86,117,101,46,112,114,111,116,111,116,121,112,101,44,32,39,36,114,111,117,116,101,114,39,44,32,123,92,110,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,117,116,101,114,82,111,111,116,46,95,114,111,117,116,101,114,32,125,92,110,32,32,125,41,59,92,110,92,110,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,86,117,101,46,112,114,111,116,111,116,121,112,101,44,32,39,36,114,111,117,116,101,39,44,32,123,92,110,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,117,116,101,114,82,111,111,116,46,95,114,111,117,116,101,32,125,92,110,32,32,125,41,59,92,110,92,110,32,32,86,117,101,46,99,111,109,112,111,110,101,110,116,40,39,82,111,117,116,101,114,86,105,101,119,39,44,32,86,105,101,119,41,59,92,110,32,32,86,117,101,46,99,111,109,112,111,110,101,110,116,40,39,82,111,117,116,101,114,76,105,110,107,39,44,32,76,105,110,107,41,59,92,110,92,110,32,32,118,97,114,32,115,116,114,97,116,115,32,61,32,86,117,101,46,99,111,110,102,105,103,46,111,112,116,105,111,110,77,101,114,103,101,83,116,114,97,116,101,103,105,101,115,59,92,110,32,32,47,47,32,117,115,101,32,116,104,101,32,115,97,109,101,32,104,111,111,107,32,109,101,114,103,105,110,103,32,115,116,114,97,116,101,103,121,32,102,111,114,32,114,111,117,116,101,32,104,111,111,107,115,92,110,32,32,115,116,114,97,116,115,46,98,101,102,111,114,101,82,111,117,116,101,69,110,116,101,114,32,61,32,115,116,114,97,116,115,46,98,101,102,111,114,101,82,111,117,116,101,76,101,97,118,101,32,61,32,115,116,114,97,116,115,46,98,101,102,111,114,101,82,111,117,116,101,85,112,100,97,116,101,32,61,32,115,116,114,97,116,115,46,99,114,101,97,116,101,100,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,105,110,66,114,111,119,115,101,114,32,61,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,82,111,117,116,101,77,97,112,32,40,92,110,32,32,114,111,117,116,101,115,44,92,110,32,32,111,108,100,80,97,116,104,76,105,115,116,44,92,110,32,32,111,108,100,80,97,116,104,77,97,112,44,92,110,32,32,111,108,100,78,97,109,101,77,97,112,44,92,110,32,32,112,97,114,101,110,116,82,111,117,116,101,92,110,41,32,123,92,110,32,32,47,47,32,116,104,101,32,112,97,116,104,32,108,105,115,116,32,105,115,32,117,115,101,100,32,116,111,32,99,111,110,116,114,111,108,32,112,97,116,104,32,109,97,116,99,104,105,110,103,32,112,114,105,111,114,105,116,121,92,110,32,32,118,97,114,32,112,97,116,104,76,105,115,116,32,61,32,111,108,100,80,97,116,104,76,105,115,116,32,124,124,32,91,93,59,92,110,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,118,97,114,32,112,97,116,104,77,97,112,32,61,32,111,108,100,80,97,116,104,77,97,112,32,124,124,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,118,97,114,32,110,97,109,101,77,97,112,32,61,32,111,108,100,78,97,109,101,77,97,112,32,124,124,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,92,110,32,32,114,111,117,116,101,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,114,111,117,116,101,41,32,123,92,110,32,32,32,32,97,100,100,82,111,117,116,101,82,101,99,111,114,100,40,112,97,116,104,76,105,115,116,44,32,112,97,116,104,77,97,112,44,32,110,97,109,101,77,97,112,44,32,114,111,117,116,101,44,32,112,97,114,101,110,116,82,111,117,116,101,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,47,47,32,101,110,115,117,114,101,32,119,105,108,100,99,97,114,100,32,114,111,117,116,101,115,32,97,114,101,32,97,108,119,97,121,115,32,97,116,32,116,104,101,32,101,110,100,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,32,61,32,112,97,116,104,76,105,115,116,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,105,102,32,40,112,97,116,104,76,105,115,116,91,105,93,32,61,61,61,32,39,42,39,41,32,123,92,110,32,32,32,32,32,32,112,97,116,104,76,105,115,116,46,112,117,115,104,40,112,97,116,104,76,105,115,116,46,115,112,108,105,99,101,40,105,44,32,49,41,91,48,93,41,59,92,110,32,32,32,32,32,32,108,45,45,59,92,110,32,32,32,32,32,32,105,45,45,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,47,47,32,119,97,114,110,32,105,102,32,114,111,117,116,101,115,32,100,111,32,110,111,116,32,105,110,99,108,117,100,101,32,108,101,97,100,105,110,103,32,115,108,97,115,104,101,115,92,110,32,32,32,32,118,97,114,32,102,111,117,110,100,32,61,32,112,97,116,104,76,105,115,116,92,110,32,32,32,32,47,47,32,99,104,101,99,107,32,102,111,114,32,109,105,115,115,105,110,103,32,108,101,97,100,105,110,103,32,115,108,97,115,104,92,110,32,32,32,32,32,32,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,112,97,116,104,41,32,123,32,114,101,116,117,114,110,32,112,97,116,104,32,38,38,32,112,97,116,104,46,99,104,97,114,65,116,40,48,41,32,33,61,61,32,39,42,39,32,38,38,32,112,97,116,104,46,99,104,97,114,65,116,40,48,41,32,33,61,61,32,39,47,39,59,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,102,111,117,110,100,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,97,116,104,78,97,109,101,115,32,61,32,102,111,117,110,100,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,112,97,116,104,41,32,123,32,114,101,116,117,114,110,32,40,92,34,45,32,92,34,32,43,32,112,97,116,104,41,59,32,125,41,46,106,111,105,110,40,39,92,92,110,39,41,59,92,110,32,32,32,32,32,32,119,97,114,110,40,102,97,108,115,101,44,32,40,92,34,78,111,110,45,110,101,115,116,101,100,32,114,111,117,116,101,115,32,109,117,115,116,32,105,110,99,108,117,100,101,32,97,32,108,101,97,100,105,110,103,32,115,108,97,115,104,32,99,104,97,114,97,99,116,101,114,46,32,70,105,120,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,114,111,117,116,101,115,58,32,92,92,110,92,34,32,43,32,112,97,116,104,78,97,109,101,115,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,112,97,116,104,76,105,115,116,58,32,112,97,116,104,76,105,115,116,44,92,110,32,32,32,32,112,97,116,104,77,97,112,58,32,112,97,116,104,77,97,112,44,92,110,32,32,32,32,110,97,109,101,77,97,112,58,32,110,97,109,101,77,97,112,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,100,100,82,111,117,116,101,82,101,99,111,114,100,32,40,92,110,32,32,112,97,116,104,76,105,115,116,44,92,110,32,32,112,97,116,104,77,97,112,44,92,110,32,32,110,97,109,101,77,97,112,44,92,110,32,32,114,111,117,116,101,44,92,110,32,32,112,97,114,101,110,116,44,92,110,32,32,109,97,116,99,104,65,115,92,110,41,32,123,92,110,32,32,118,97,114,32,112,97,116,104,32,61,32,114,111,117,116,101,46,112,97,116,104,59,92,110,32,32,118,97,114,32,110,97,109,101,32,61,32,114,111,117,116,101,46,110,97,109,101,59,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,97,115,115,101,114,116,40,112,97,116,104,32,33,61,32,110,117,108,108,44,32,92,34,92,92,92,34,112,97,116,104,92,92,92,34,32,105,115,32,114,101,113,117,105,114,101,100,32,105,110,32,97,32,114,111,117,116,101,32,99,111,110,102,105,103,117,114,97,116,105,111,110,46,92,34,41,59,92,110,32,32,32,32,97,115,115,101,114,116,40,92,110,32,32,32,32,32,32,116,121,112,101,111,102,32,114,111,117,116,101,46,99,111,109,112,111,110,101,110,116,32,33,61,61,32,39,115,116,114,105,110,103,39,44,92,110,32,32,32,32,32,32,92,34,114,111,117,116,101,32,99,111,110,102,105,103,32,92,92,92,34,99,111,109,112,111,110,101,110,116,92,92,92,34,32,102,111,114,32,112,97,116,104,58,32,92,34,32,43,32,40,83,116,114,105,110,103,40,92,110,32,32,32,32,32,32,32,32,112,97,116,104,32,124,124,32,110,97,109,101,92,110,32,32,32,32,32,32,41,41,32,43,32,92,34,32,99,97,110,110,111,116,32,98,101,32,97,32,92,34,32,43,32,92,34,115,116,114,105,110,103,32,105,100,46,32,85,115,101,32,97,110,32,97,99,116,117,97,108,32,99,111,109,112,111,110,101,110,116,32,105,110,115,116,101,97,100,46,92,34,92,110,32,32,32,32,41,59,92,110,92,110,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,32,110,111,45,99,111,110,116,114,111,108,45,114,101,103,101,120,92,110,32,32,32,32,32,32,33,47,91,94,92,92,117,48,48,48,48,45,92,92,117,48,48,55,70,93,43,47,46,116,101,115,116,40,112,97,116,104,41,44,92,110,32,32,32,32,32,32,92,34,82,111,117,116,101,32,119,105,116,104,32,112,97,116,104,32,92,92,92,34,92,34,32,43,32,112,97,116,104,32,43,32,92,34,92,92,92,34,32,99,111,110,116,97,105,110,115,32,117,110,101,110,99,111,100,101,100,32,99,104,97,114,97,99,116,101,114,115,44,32,109,97,107,101,32,115,117,114,101,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,92,34,121,111,117,114,32,112,97,116,104,32,105,115,32,99,111,114,114,101,99,116,108,121,32,101,110,99,111,100,101,100,32,98,101,102,111,114,101,32,112,97,115,115,105,110,103,32,105,116,32,116,111,32,116,104,101,32,114,111,117,116,101,114,46,32,85,115,101,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,92,34,101,110,99,111,100,101,85,82,73,32,116,111,32,101,110,99,111,100,101,32,115,116,97,116,105,99,32,115,101,103,109,101,110,116,115,32,111,102,32,121,111,117,114,32,112,97,116,104,46,92,34,92,110,32,32,32,32,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,112,97,116,104,84,111,82,101,103,101,120,112,79,112,116,105,111,110,115,32,61,92,110,32,32,32,32,114,111,117,116,101,46,112,97,116,104,84,111,82,101,103,101,120,112,79,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,32,32,118,97,114,32,110,111,114,109,97,108,105,122,101,100,80,97,116,104,32,61,32,110,111,114,109,97,108,105,122,101,80,97,116,104,40,112,97,116,104,44,32,112,97,114,101,110,116,44,32,112,97,116,104,84,111,82,101,103,101,120,112,79,112,116,105,111,110,115,46,115,116,114,105,99,116,41,59,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,114,111,117,116,101,46,99,97,115,101,83,101,110,115,105,116,105,118,101,32,61,61,61,32,39,98,111,111,108,101,97,110,39,41,32,123,92,110,32,32,32,32,112,97,116,104,84,111,82,101,103,101,120,112,79,112,116,105,111,110,115,46,115,101,110,115,105,116,105,118,101,32,61,32,114,111,117,116,101,46,99,97,115,101,83,101,110,115,105,116,105,118,101,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,114,101,99,111,114,100,32,61,32,123,92,110,32,32,32,32,112,97,116,104,58,32,110,111,114,109,97,108,105,122,101,100,80,97,116,104,44,92,110,32,32,32,32,114,101,103,101,120,58,32,99,111,109,112,105,108,101,82,111,117,116,101,82,101,103,101,120,40,110,111,114,109,97,108,105,122,101,100,80,97,116,104,44,32,112,97,116,104,84,111,82,101,103,101,120,112,79,112,116,105,111,110,115,41,44,92,110,32,32,32,32,99,111,109,112,111,110,101,110,116,115,58,32,114,111,117,116,101,46,99,111,109,112,111,110,101,110,116,115,32,124,124,32,123,32,100,101,102,97,117,108,116,58,32,114,111,117,116,101,46,99,111,109,112,111,110,101,110,116,32,125,44,92,110,32,32,32,32,97,108,105,97,115,58,32,114,111,117,116,101,46,97,108,105,97,115,92,110,32,32,32,32,32,32,63,32,116,121,112,101,111,102,32,114,111,117,116,101,46,97,108,105,97,115,32,61,61,61,32,39,115,116,114,105,110,103,39,92,110,32,32,32,32,32,32,32,32,63,32,91,114,111,117,116,101,46,97,108,105,97,115,93,92,110,32,32,32,32,32,32,32,32,58,32,114,111,117,116,101,46,97,108,105,97,115,92,110,32,32,32,32,32,32,58,32,91,93,44,92,110,32,32,32,32,105,110,115,116,97,110,99,101,115,58,32,123,125,44,92,110,32,32,32,32,101,110,116,101,114,101,100,67,98,115,58,32,123,125,44,92,110,32,32,32,32,110,97,109,101,58,32,110,97,109,101,44,92,110,32,32,32,32,112,97,114,101,110,116,58,32,112,97,114,101,110,116,44,92,110,32,32,32,32,109,97,116,99,104,65,115,58,32,109,97,116,99,104,65,115,44,92,110,32,32,32,32,114,101,100,105,114,101,99,116,58,32,114,111,117,116,101,46,114,101,100,105,114,101,99,116,44,92,110,32,32,32,32,98,101,102,111,114,101,69,110,116,101,114,58,32,114,111,117,116,101,46,98,101,102,111,114,101,69,110,116,101,114,44,92,110,32,32,32,32,109,101,116,97,58,32,114,111,117,116,101,46,109,101,116,97,32,124,124,32,123,125,44,92,110,32,32,32,32,112,114,111,112,115,58,92,110,32,32,32,32,32,32,114,111,117,116,101,46,112,114,111,112,115,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,63,32,123,125,92,110,32,32,32,32,32,32,32,32,58,32,114,111,117,116,101,46,99,111,109,112,111,110,101,110,116,115,92,110,32,32,32,32,32,32,32,32,32,32,63,32,114,111,117,116,101,46,112,114,111,112,115,92,110,32,32,32,32,32,32,32,32,32,32,58,32,123,32,100,101,102,97,117,108,116,58,32,114,111,117,116,101,46,112,114,111,112,115,32,125,92,110,32,32,125,59,92,110,92,110,32,32,105,102,32,40,114,111,117,116,101,46,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,47,47,32,87,97,114,110,32,105,102,32,114,111,117,116,101,32,105,115,32,110,97,109,101,100,44,32,100,111,101,115,32,110,111,116,32,114,101,100,105,114,101,99,116,32,97,110,100,32,104,97,115,32,97,32,100,101,102,97,117,108,116,32,99,104,105,108,100,32,114,111,117,116,101,46,92,110,32,32,32,32,47,47,32,73,102,32,117,115,101,114,115,32,110,97,118,105,103,97,116,101,32,116,111,32,116,104,105,115,32,114,111,117,116,101,32,98,121,32,110,97,109,101,44,32,116,104,101,32,100,101,102,97,117,108,116,32,99,104,105,108,100,32,119,105,108,108,92,110,32,32,32,32,47,47,32,110,111,116,32,98,101,32,114,101,110,100,101,114,101,100,32,40,71,72,32,73,115,115,117,101,32,35,54,50,57,41,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,92,110,32,32,32,32,32,32,32,32,114,111,117,116,101,46,110,97,109,101,32,38,38,92,110,32,32,32,32,32,32,32,32,33,114,111,117,116,101,46,114,101,100,105,114,101,99,116,32,38,38,92,110,32,32,32,32,32,32,32,32,114,111,117,116,101,46,99,104,105,108,100,114,101,110,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,99,104,105,108,100,41,32,123,32,114,101,116,117,114,110,32,47,94,92,92,47,63,36,47,46,116,101,115,116,40,99,104,105,108,100,46,112,97,116,104,41,59,32,125,41,92,110,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,78,97,109,101,100,32,82,111,117,116,101,32,39,92,34,32,43,32,40,114,111,117,116,101,46,110,97,109,101,41,32,43,32,92,34,39,32,104,97,115,32,97,32,100,101,102,97,117,108,116,32,99,104,105,108,100,32,114,111,117,116,101,46,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,87,104,101,110,32,110,97,118,105,103,97,116,105,110,103,32,116,111,32,116,104,105,115,32,110,97,109,101,100,32,114,111,117,116,101,32,40,58,116,111,61,92,92,92,34,123,110,97,109,101,58,32,39,92,34,32,43,32,40,114,111,117,116,101,46,110,97,109,101,41,32,43,32,92,34,39,92,92,92,34,41,44,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,116,104,101,32,100,101,102,97,117,108,116,32,99,104,105,108,100,32,114,111,117,116,101,32,119,105,108,108,32,110,111,116,32,98,101,32,114,101,110,100,101,114,101,100,46,32,82,101,109,111,118,101,32,116,104,101,32,110,97,109,101,32,102,114,111,109,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,116,104,105,115,32,114,111,117,116,101,32,97,110,100,32,117,115,101,32,116,104,101,32,110,97,109,101,32,111,102,32,116,104,101,32,100,101,102,97,117,108,116,32,99,104,105,108,100,32,114,111,117,116,101,32,102,111,114,32,110,97,109,101,100,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,108,105,110,107,115,32,105,110,115,116,101,97,100,46,92,34,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,111,117,116,101,46,99,104,105,108,100,114,101,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,104,105,108,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,77,97,116,99,104,65,115,32,61,32,109,97,116,99,104,65,115,92,110,32,32,32,32,32,32,32,32,63,32,99,108,101,97,110,80,97,116,104,40,40,109,97,116,99,104,65,115,32,43,32,92,34,47,92,34,32,43,32,40,99,104,105,108,100,46,112,97,116,104,41,41,41,92,110,32,32,32,32,32,32,32,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,97,100,100,82,111,117,116,101,82,101,99,111,114,100,40,112,97,116,104,76,105,115,116,44,32,112,97,116,104,77,97,112,44,32,110,97,109,101,77,97,112,44,32,99,104,105,108,100,44,32,114,101,99,111,114,100,44,32,99,104,105,108,100,77,97,116,99,104,65,115,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,112,97,116,104,77,97,112,91,114,101,99,111,114,100,46,112,97,116,104,93,41,32,123,92,110,32,32,32,32,112,97,116,104,76,105,115,116,46,112,117,115,104,40,114,101,99,111,114,100,46,112,97,116,104,41,59,92,110,32,32,32,32,112,97,116,104,77,97,112,91,114,101,99,111,114,100,46,112,97,116,104,93,32,61,32,114,101,99,111,114,100,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,114,111,117,116,101,46,97,108,105,97,115,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,118,97,114,32,97,108,105,97,115,101,115,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,111,117,116,101,46,97,108,105,97,115,41,32,63,32,114,111,117,116,101,46,97,108,105,97,115,32,58,32,91,114,111,117,116,101,46,97,108,105,97,115,93,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,97,108,105,97,115,101,115,46,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,108,105,97,115,32,61,32,97,108,105,97,115,101,115,91,105,93,59,92,110,32,32,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,97,108,105,97,115,32,61,61,61,32,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,40,92,34,70,111,117,110,100,32,97,110,32,97,108,105,97,115,32,119,105,116,104,32,116,104,101,32,115,97,109,101,32,118,97,108,117,101,32,97,115,32,116,104,101,32,112,97,116,104,58,32,92,92,92,34,92,34,32,43,32,112,97,116,104,32,43,32,92,34,92,92,92,34,46,32,89,111,117,32,104,97,118,101,32,116,111,32,114,101,109,111,118,101,32,116,104,97,116,32,97,108,105,97,115,46,32,73,116,32,119,105,108,108,32,98,101,32,105,103,110,111,114,101,100,32,105,110,32,100,101,118,101,108,111,112,109,101,110,116,46,92,34,41,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,47,47,32,115,107,105,112,32,105,110,32,100,101,118,32,116,111,32,109,97,107,101,32,105,116,32,119,111,114,107,92,110,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,97,108,105,97,115,82,111,117,116,101,32,61,32,123,92,110,32,32,32,32,32,32,32,32,112,97,116,104,58,32,97,108,105,97,115,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,114,111,117,116,101,46,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,97,100,100,82,111,117,116,101,82,101,99,111,114,100,40,92,110,32,32,32,32,32,32,32,32,112,97,116,104,76,105,115,116,44,92,110,32,32,32,32,32,32,32,32,112,97,116,104,77,97,112,44,92,110,32,32,32,32,32,32,32,32,110,97,109,101,77,97,112,44,92,110,32,32,32,32,32,32,32,32,97,108,105,97,115,82,111,117,116,101,44,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,44,92,110,32,32,32,32,32,32,32,32,114,101,99,111,114,100,46,112,97,116,104,32,124,124,32,39,47,39,32,47,47,32,109,97,116,99,104,65,115,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,110,97,109,101,77,97,112,91,110,97,109,101,93,41,32,123,92,110,32,32,32,32,32,32,110,97,109,101,77,97,112,91,110,97,109,101,93,32,61,32,114,101,99,111,114,100,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,109,97,116,99,104,65,115,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,92,34,68,117,112,108,105,99,97,116,101,32,110,97,109,101,100,32,114,111,117,116,101,115,32,100,101,102,105,110,105,116,105,111,110,58,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,92,34,123,32,110,97,109,101,58,32,92,92,92,34,92,34,32,43,32,110,97,109,101,32,43,32,92,34,92,92,92,34,44,32,112,97,116,104,58,32,92,92,92,34,92,34,32,43,32,40,114,101,99,111,114,100,46,112,97,116,104,41,32,43,32,92,34,92,92,92,34,32,125,92,34,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,109,112,105,108,101,82,111,117,116,101,82,101,103,101,120,32,40,92,110,32,32,112,97,116,104,44,92,110,32,32,112,97,116,104,84,111,82,101,103,101,120,112,79,112,116,105,111,110,115,92,110,41,32,123,92,110,32,32,118,97,114,32,114,101,103,101,120,32,61,32,112,97,116,104,84,111,82,101,103,101,120,112,95,49,40,112,97,116,104,44,32,91,93,44,32,112,97,116,104,84,111,82,101,103,101,120,112,79,112,116,105,111,110,115,41,59,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,32,32,114,101,103,101,120,46,107,101,121,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,33,107,101,121,115,91,107,101,121,46,110,97,109,101,93,44,92,110,32,32,32,32,32,32,32,32,40,92,34,68,117,112,108,105,99,97,116,101,32,112,97,114,97,109,32,107,101,121,115,32,105,110,32,114,111,117,116,101,32,119,105,116,104,32,112,97,116,104,58,32,92,92,92,34,92,34,32,43,32,112,97,116,104,32,43,32,92,34,92,92,92,34,92,34,41,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,107,101,121,115,91,107,101,121,46,110,97,109,101,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,103,101,120,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,80,97,116,104,32,40,92,110,32,32,112,97,116,104,44,92,110,32,32,112,97,114,101,110,116,44,92,110,32,32,115,116,114,105,99,116,92,110,41,32,123,92,110,32,32,105,102,32,40,33,115,116,114,105,99,116,41,32,123,32,112,97,116,104,32,61,32,112,97,116,104,46,114,101,112,108,97,99,101,40,47,92,92,47,36,47,44,32,39,39,41,59,32,125,92,110,32,32,105,102,32,40,112,97,116,104,91,48,93,32,61,61,61,32,39,47,39,41,32,123,32,114,101,116,117,114,110,32,112,97,116,104,32,125,92,110,32,32,105,102,32,40,112,97,114,101,110,116,32,61,61,32,110,117,108,108,41,32,123,32,114,101,116,117,114,110,32,112,97,116,104,32,125,92,110,32,32,114,101,116,117,114,110,32,99,108,101,97,110,80,97,116,104,40,40,40,112,97,114,101,110,116,46,112,97,116,104,41,32,43,32,92,34,47,92,34,32,43,32,112,97,116,104,41,41,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,77,97,116,99,104,101,114,32,40,92,110,32,32,114,111,117,116,101,115,44,92,110,32,32,114,111,117,116,101,114,92,110,41,32,123,92,110,32,32,118,97,114,32,114,101,102,32,61,32,99,114,101,97,116,101,82,111,117,116,101,77,97,112,40,114,111,117,116,101,115,41,59,92,110,32,32,118,97,114,32,112,97,116,104,76,105,115,116,32,61,32,114,101,102,46,112,97,116,104,76,105,115,116,59,92,110,32,32,118,97,114,32,112,97,116,104,77,97,112,32,61,32,114,101,102,46,112,97,116,104,77,97,112,59,92,110,32,32,118,97,114,32,110,97,109,101,77,97,112,32,61,32,114,101,102,46,110,97,109,101,77,97,112,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,97,100,100,82,111,117,116,101,115,32,40,114,111,117,116,101,115,41,32,123,92,110,32,32,32,32,99,114,101,97,116,101,82,111,117,116,101,77,97,112,40,114,111,117,116,101,115,44,32,112,97,116,104,76,105,115,116,44,32,112,97,116,104,77,97,112,44,32,110,97,109,101,77,97,112,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,97,100,100,82,111,117,116,101,32,40,112,97,114,101,110,116,79,114,82,111,117,116,101,44,32,114,111,117,116,101,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,40,116,121,112,101,111,102,32,112,97,114,101,110,116,79,114,82,111,117,116,101,32,33,61,61,32,39,111,98,106,101,99,116,39,41,32,63,32,110,97,109,101,77,97,112,91,112,97,114,101,110,116,79,114,82,111,117,116,101,93,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,32,32,99,114,101,97,116,101,82,111,117,116,101,77,97,112,40,91,114,111,117,116,101,32,124,124,32,112,97,114,101,110,116,79,114,82,111,117,116,101,93,44,32,112,97,116,104,76,105,115,116,44,32,112,97,116,104,77,97,112,44,32,110,97,109,101,77,97,112,44,32,112,97,114,101,110,116,41,59,92,110,92,110,32,32,32,32,47,47,32,97,100,100,32,97,108,105,97,115,101,115,32,111,102,32,112,97,114,101,110,116,92,110,32,32,32,32,105,102,32,40,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,32,32,99,114,101,97,116,101,82,111,117,116,101,77,97,112,40,92,110,32,32,32,32,32,32,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,32,114,111,117,116,101,32,105,115,32,100,101,102,105,110,101,100,32,105,102,32,112,97,114,101,110,116,32,105,115,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,46,97,108,105,97,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,97,108,105,97,115,41,32,123,32,114,101,116,117,114,110,32,40,123,32,112,97,116,104,58,32,97,108,105,97,115,44,32,99,104,105,108,100,114,101,110,58,32,91,114,111,117,116,101,93,32,125,41,59,32,125,41,44,92,110,32,32,32,32,32,32,32,32,112,97,116,104,76,105,115,116,44,92,110,32,32,32,32,32,32,32,32,112,97,116,104,77,97,112,44,92,110,32,32,32,32,32,32,32,32,110,97,109,101,77,97,112,44,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,103,101,116,82,111,117,116,101,115,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,97,116,104,76,105,115,116,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,112,97,116,104,41,32,123,32,114,101,116,117,114,110,32,112,97,116,104,77,97,112,91,112,97,116,104,93,59,32,125,41,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,109,97,116,99,104,32,40,92,110,32,32,32,32,114,97,119,44,92,110,32,32,32,32,99,117,114,114,101,110,116,82,111,117,116,101,44,92,110,32,32,32,32,114,101,100,105,114,101,99,116,101,100,70,114,111,109,92,110,32,32,41,32,123,92,110,32,32,32,32,118,97,114,32,108,111,99,97,116,105,111,110,32,61,32,110,111,114,109,97,108,105,122,101,76,111,99,97,116,105,111,110,40,114,97,119,44,32,99,117,114,114,101,110,116,82,111,117,116,101,44,32,102,97,108,115,101,44,32,114,111,117,116,101,114,41,59,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,108,111,99,97,116,105,111,110,46,110,97,109,101,59,92,110,92,110,32,32,32,32,105,102,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,99,111,114,100,32,61,32,110,97,109,101,77,97,112,91,110,97,109,101,93,59,92,110,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,114,101,99,111,114,100,44,32,40,92,34,82,111,117,116,101,32,119,105,116,104,32,110,97,109,101,32,39,92,34,32,43,32,110,97,109,101,32,43,32,92,34,39,32,100,111,101,115,32,110,111,116,32,101,120,105,115,116,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,33,114,101,99,111,114,100,41,32,123,32,114,101,116,117,114,110,32,95,99,114,101,97,116,101,82,111,117,116,101,40,110,117,108,108,44,32,108,111,99,97,116,105,111,110,41,32,125,92,110,32,32,32,32,32,32,118,97,114,32,112,97,114,97,109,78,97,109,101,115,32,61,32,114,101,99,111,114,100,46,114,101,103,101,120,46,107,101,121,115,92,110,32,32,32,32,32,32,32,32,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,33,107,101,121,46,111,112,116,105,111,110,97,108,59,32,125,41,92,110,32,32,32,32,32,32,32,32,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,107,101,121,46,110,97,109,101,59,32,125,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,108,111,99,97,116,105,111,110,46,112,97,114,97,109,115,32,33,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,32,32,32,32,108,111,99,97,116,105,111,110,46,112,97,114,97,109,115,32,61,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,82,111,117,116,101,32,38,38,32,116,121,112,101,111,102,32,99,117,114,114,101,110,116,82,111,117,116,101,46,112,97,114,97,109,115,32,61,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,99,117,114,114,101,110,116,82,111,117,116,101,46,112,97,114,97,109,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,107,101,121,32,105,110,32,108,111,99,97,116,105,111,110,46,112,97,114,97,109,115,41,32,38,38,32,112,97,114,97,109,78,97,109,101,115,46,105,110,100,101,120,79,102,40,107,101,121,41,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,116,105,111,110,46,112,97,114,97,109,115,91,107,101,121,93,32,61,32,99,117,114,114,101,110,116,82,111,117,116,101,46,112,97,114,97,109,115,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,108,111,99,97,116,105,111,110,46,112,97,116,104,32,61,32,102,105,108,108,80,97,114,97,109,115,40,114,101,99,111,114,100,46,112,97,116,104,44,32,108,111,99,97,116,105,111,110,46,112,97,114,97,109,115,44,32,40,92,34,110,97,109,101,100,32,114,111,117,116,101,32,92,92,92,34,92,34,32,43,32,110,97,109,101,32,43,32,92,34,92,92,92,34,92,34,41,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,114,101,97,116,101,82,111,117,116,101,40,114,101,99,111,114,100,44,32,108,111,99,97,116,105,111,110,44,32,114,101,100,105,114,101,99,116,101,100,70,114,111,109,41,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,108,111,99,97,116,105,111,110,46,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,108,111,99,97,116,105,111,110,46,112,97,114,97,109,115,32,61,32,123,125,59,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,112,97,116,104,76,105,115,116,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,97,116,104,32,61,32,112,97,116,104,76,105,115,116,91,105,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,99,111,114,100,36,49,32,61,32,112,97,116,104,77,97,112,91,112,97,116,104,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,109,97,116,99,104,82,111,117,116,101,40,114,101,99,111,114,100,36,49,46,114,101,103,101,120,44,32,108,111,99,97,116,105,111,110,46,112,97,116,104,44,32,108,111,99,97,116,105,111,110,46,112,97,114,97,109,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,114,101,97,116,101,82,111,117,116,101,40,114,101,99,111,114,100,36,49,44,32,108,111,99,97,116,105,111,110,44,32,114,101,100,105,114,101,99,116,101,100,70,114,111,109,41,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,110,111,32,109,97,116,99,104,92,110,32,32,32,32,114,101,116,117,114,110,32,95,99,114,101,97,116,101,82,111,117,116,101,40,110,117,108,108,44,32,108,111,99,97,116,105,111,110,41,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,100,105,114,101,99,116,32,40,92,110,32,32,32,32,114,101,99,111,114,100,44,92,110,32,32,32,32,108,111,99,97,116,105,111,110,92,110,32,32,41,32,123,92,110,32,32,32,32,118,97,114,32,111,114,105,103,105,110,97,108,82,101,100,105,114,101,99,116,32,61,32,114,101,99,111,114,100,46,114,101,100,105,114,101,99,116,59,92,110,32,32,32,32,118,97,114,32,114,101,100,105,114,101,99,116,32,61,32,116,121,112,101,111,102,32,111,114,105,103,105,110,97,108,82,101,100,105,114,101,99,116,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,32,32,32,32,32,32,63,32,111,114,105,103,105,110,97,108,82,101,100,105,114,101,99,116,40,99,114,101,97,116,101,82,111,117,116,101,40,114,101,99,111,114,100,44,32,108,111,99,97,116,105,111,110,44,32,110,117,108,108,44,32,114,111,117,116,101,114,41,41,92,110,32,32,32,32,32,32,58,32,111,114,105,103,105,110,97,108,82,101,100,105,114,101,99,116,59,92,110,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,114,101,100,105,114,101,99,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,32,32,114,101,100,105,114,101,99,116,32,61,32,123,32,112,97,116,104,58,32,114,101,100,105,114,101,99,116,32,125,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,114,101,100,105,114,101,99,116,32,124,124,32,116,121,112,101,111,102,32,114,101,100,105,114,101,99,116,32,33,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,102,97,108,115,101,44,32,40,92,34,105,110,118,97,108,105,100,32,114,101,100,105,114,101,99,116,32,111,112,116,105,111,110,58,32,92,34,32,43,32,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,114,101,100,105,114,101,99,116,41,41,41,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,114,101,97,116,101,82,111,117,116,101,40,110,117,108,108,44,32,108,111,99,97,116,105,111,110,41,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,114,101,32,61,32,114,101,100,105,114,101,99,116,59,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,114,101,46,110,97,109,101,59,92,110,32,32,32,32,118,97,114,32,112,97,116,104,32,61,32,114,101,46,112,97,116,104,59,92,110,32,32,32,32,118,97,114,32,113,117,101,114,121,32,61,32,108,111,99,97,116,105,111,110,46,113,117,101,114,121,59,92,110,32,32,32,32,118,97,114,32,104,97,115,104,32,61,32,108,111,99,97,116,105,111,110,46,104,97,115,104,59,92,110,32,32,32,32,118,97,114,32,112,97,114,97,109,115,32,61,32,108,111,99,97,116,105,111,110,46,112,97,114,97,109,115,59,92,110,32,32,32,32,113,117,101,114,121,32,61,32,114,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,39,113,117,101,114,121,39,41,32,63,32,114,101,46,113,117,101,114,121,32,58,32,113,117,101,114,121,59,92,110,32,32,32,32,104,97,115,104,32,61,32,114,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,39,104,97,115,104,39,41,32,63,32,114,101,46,104,97,115,104,32,58,32,104,97,115,104,59,92,110,32,32,32,32,112,97,114,97,109,115,32,61,32,114,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,39,112,97,114,97,109,115,39,41,32,63,32,114,101,46,112,97,114,97,109,115,32,58,32,112,97,114,97,109,115,59,92,110,92,110,32,32,32,32,105,102,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,114,101,115,111,108,118,101,100,32,110,97,109,101,100,32,100,105,114,101,99,116,92,110,32,32,32,32,32,32,118,97,114,32,116,97,114,103,101,116,82,101,99,111,114,100,32,61,32,110,97,109,101,77,97,112,91,110,97,109,101,93,59,92,110,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,97,115,115,101,114,116,40,116,97,114,103,101,116,82,101,99,111,114,100,44,32,40,92,34,114,101,100,105,114,101,99,116,32,102,97,105,108,101,100,58,32,110,97,109,101,100,32,114,111,117,116,101,32,92,92,92,34,92,34,32,43,32,110,97,109,101,32,43,32,92,34,92,92,92,34,32,110,111,116,32,102,111,117,110,100,46,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,116,99,104,40,123,92,110,32,32,32,32,32,32,32,32,95,110,111,114,109,97,108,105,122,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,113,117,101,114,121,44,92,110,32,32,32,32,32,32,32,32,104,97,115,104,58,32,104,97,115,104,44,92,110,32,32,32,32,32,32,32,32,112,97,114,97,109,115,58,32,112,97,114,97,109,115,92,110,32,32,32,32,32,32,125,44,32,117,110,100,101,102,105,110,101,100,44,32,108,111,99,97,116,105,111,110,41,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,47,47,32,49,46,32,114,101,115,111,108,118,101,32,114,101,108,97,116,105,118,101,32,114,101,100,105,114,101,99,116,92,110,32,32,32,32,32,32,118,97,114,32,114,97,119,80,97,116,104,32,61,32,114,101,115,111,108,118,101,82,101,99,111,114,100,80,97,116,104,40,112,97,116,104,44,32,114,101,99,111,114,100,41,59,92,110,32,32,32,32,32,32,47,47,32,50,46,32,114,101,115,111,108,118,101,32,112,97,114,97,109,115,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,111,108,118,101,100,80,97,116,104,32,61,32,102,105,108,108,80,97,114,97,109,115,40,114,97,119,80,97,116,104,44,32,112,97,114,97,109,115,44,32,40,92,34,114,101,100,105,114,101,99,116,32,114,111,117,116,101,32,119,105,116,104,32,112,97,116,104,32,92,92,92,34,92,34,32,43,32,114,97,119,80,97,116,104,32,43,32,92,34,92,92,92,34,92,34,41,41,59,92,110,32,32,32,32,32,32,47,47,32,51,46,32,114,101,109,97,116,99,104,32,119,105,116,104,32,101,120,105,115,116,105,110,103,32,113,117,101,114,121,32,97,110,100,32,104,97,115,104,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,116,99,104,40,123,92,110,32,32,32,32,32,32,32,32,95,110,111,114,109,97,108,105,122,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,112,97,116,104,58,32,114,101,115,111,108,118,101,100,80,97,116,104,44,92,110,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,113,117,101,114,121,44,92,110,32,32,32,32,32,32,32,32,104,97,115,104,58,32,104,97,115,104,92,110,32,32,32,32,32,32,125,44,32,117,110,100,101,102,105,110,101,100,44,32,108,111,99,97,116,105,111,110,41,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,102,97,108,115,101,44,32,40,92,34,105,110,118,97,108,105,100,32,114,101,100,105,114,101,99,116,32,111,112,116,105,111,110,58,32,92,34,32,43,32,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,114,101,100,105,114,101,99,116,41,41,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,114,101,97,116,101,82,111,117,116,101,40,110,117,108,108,44,32,108,111,99,97,116,105,111,110,41,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,97,108,105,97,115,32,40,92,110,32,32,32,32,114,101,99,111,114,100,44,92,110,32,32,32,32,108,111,99,97,116,105,111,110,44,92,110,32,32,32,32,109,97,116,99,104,65,115,92,110,32,32,41,32,123,92,110,32,32,32,32,118,97,114,32,97,108,105,97,115,101,100,80,97,116,104,32,61,32,102,105,108,108,80,97,114,97,109,115,40,109,97,116,99,104,65,115,44,32,108,111,99,97,116,105,111,110,46,112,97,114,97,109,115,44,32,40,92,34,97,108,105,97,115,101,100,32,114,111,117,116,101,32,119,105,116,104,32,112,97,116,104,32,92,92,92,34,92,34,32,43,32,109,97,116,99,104,65,115,32,43,32,92,34,92,92,92,34,92,34,41,41,59,92,110,32,32,32,32,118,97,114,32,97,108,105,97,115,101,100,77,97,116,99,104,32,61,32,109,97,116,99,104,40,123,92,110,32,32,32,32,32,32,95,110,111,114,109,97,108,105,122,101,100,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,112,97,116,104,58,32,97,108,105,97,115,101,100,80,97,116,104,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,105,102,32,40,97,108,105,97,115,101,100,77,97,116,99,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,101,100,32,61,32,97,108,105,97,115,101,100,77,97,116,99,104,46,109,97,116,99,104,101,100,59,92,110,32,32,32,32,32,32,118,97,114,32,97,108,105,97,115,101,100,82,101,99,111,114,100,32,61,32,109,97,116,99,104,101,100,91,109,97,116,99,104,101,100,46,108,101,110,103,116,104,32,45,32,49,93,59,92,110,32,32,32,32,32,32,108,111,99,97,116,105,111,110,46,112,97,114,97,109,115,32,61,32,97,108,105,97,115,101,100,77,97,116,99,104,46,112,97,114,97,109,115,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,114,101,97,116,101,82,111,117,116,101,40,97,108,105,97,115,101,100,82,101,99,111,114,100,44,32,108,111,99,97,116,105,111,110,41,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,95,99,114,101,97,116,101,82,111,117,116,101,40,110,117,108,108,44,32,108,111,99,97,116,105,111,110,41,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,95,99,114,101,97,116,101,82,111,117,116,101,32,40,92,110,32,32,32,32,114,101,99,111,114,100,44,92,110,32,32,32,32,108,111,99,97,116,105,111,110,44,92,110,32,32,32,32,114,101,100,105,114,101,99,116,101,100,70,114,111,109,92,110,32,32,41,32,123,92,110,32,32,32,32,105,102,32,40,114,101,99,111,114,100,32,38,38,32,114,101,99,111,114,100,46,114,101,100,105,114,101,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,100,105,114,101,99,116,40,114,101,99,111,114,100,44,32,114,101,100,105,114,101,99,116,101,100,70,114,111,109,32,124,124,32,108,111,99,97,116,105,111,110,41,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,114,101,99,111,114,100,32,38,38,32,114,101,99,111,114,100,46,109,97,116,99,104,65,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,108,105,97,115,40,114,101,99,111,114,100,44,32,108,111,99,97,116,105,111,110,44,32,114,101,99,111,114,100,46,109,97,116,99,104,65,115,41,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,82,111,117,116,101,40,114,101,99,111,114,100,44,32,108,111,99,97,116,105,111,110,44,32,114,101,100,105,114,101,99,116,101,100,70,114,111,109,44,32,114,111,117,116,101,114,41,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,109,97,116,99,104,58,32,109,97,116,99,104,44,92,110,32,32,32,32,97,100,100,82,111,117,116,101,58,32,97,100,100,82,111,117,116,101,44,92,110,32,32,32,32,103,101,116,82,111,117,116,101,115,58,32,103,101,116,82,111,117,116,101,115,44,92,110,32,32,32,32,97,100,100,82,111,117,116,101,115,58,32,97,100,100,82,111,117,116,101,115,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,97,116,99,104,82,111,117,116,101,32,40,92,110,32,32,114,101,103,101,120,44,92,110,32,32,112,97,116,104,44,92,110,32,32,112,97,114,97,109,115,92,110,41,32,123,92,110,32,32,118,97,114,32,109,32,61,32,112,97,116,104,46,109,97,116,99,104,40,114,101,103,101,120,41,59,92,110,92,110,32,32,105,102,32,40,33,109,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,33,112,97,114,97,109,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,32,32,125,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,49,44,32,108,101,110,32,61,32,109,46,108,101,110,103,116,104,59,32,105,32,60,32,108,101,110,59,32,43,43,105,41,32,123,92,110,32,32,32,32,118,97,114,32,107,101,121,32,61,32,114,101,103,101,120,46,107,101,121,115,91,105,32,45,32,49,93,59,92,110,32,32,32,32,105,102,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,47,47,32,70,105,120,32,35,49,57,57,52,58,32,117,115,105,110,103,32,42,32,119,105,116,104,32,112,114,111,112,115,58,32,116,114,117,101,32,103,101,110,101,114,97,116,101,115,32,97,32,112,97,114,97,109,32,110,97,109,101,100,32,48,92,110,32,32,32,32,32,32,112,97,114,97,109,115,91,107,101,121,46,110,97,109,101,32,124,124,32,39,112,97,116,104,77,97,116,99,104,39,93,32,61,32,116,121,112,101,111,102,32,109,91,105,93,32,61,61,61,32,39,115,116,114,105,110,103,39,32,63,32,100,101,99,111,100,101,40,109,91,105,93,41,32,58,32,109,91,105,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,82,101,99,111,114,100,80,97,116,104,32,40,112,97,116,104,44,32,114,101,99,111,114,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,114,101,115,111,108,118,101,80,97,116,104,40,112,97,116,104,44,32,114,101,99,111,114,100,46,112,97,114,101,110,116,32,63,32,114,101,99,111,114,100,46,112,97,114,101,110,116,46,112,97,116,104,32,58,32,39,47,39,44,32,116,114,117,101,41,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,47,32,117,115,101,32,85,115,101,114,32,84,105,109,105,110,103,32,97,112,105,32,40,105,102,32,112,114,101,115,101,110,116,41,32,102,111,114,32,109,111,114,101,32,97,99,99,117,114,97,116,101,32,107,101,121,32,112,114,101,99,105,115,105,111,110,92,110,118,97,114,32,84,105,109,101,32,61,92,110,32,32,105,110,66,114,111,119,115,101,114,32,38,38,32,119,105,110,100,111,119,46,112,101,114,102,111,114,109,97,110,99,101,32,38,38,32,119,105,110,100,111,119,46,112,101,114,102,111,114,109,97,110,99,101,46,110,111,119,92,110,32,32,32,32,63,32,119,105,110,100,111,119,46,112,101,114,102,111,114,109,97,110,99,101,92,110,32,32,32,32,58,32,68,97,116,101,59,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,110,83,116,97,116,101,75,101,121,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,84,105,109,101,46,110,111,119,40,41,46,116,111,70,105,120,101,100,40,51,41,92,110,125,92,110,92,110,118,97,114,32,95,107,101,121,32,61,32,103,101,110,83,116,97,116,101,75,101,121,40,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,83,116,97,116,101,75,101,121,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,107,101,121,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,83,116,97,116,101,75,101,121,32,40,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,95,107,101,121,32,61,32,107,101,121,41,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,112,111,115,105,116,105,111,110,83,116,111,114,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,117,112,83,99,114,111,108,108,32,40,41,32,123,92,110,32,32,47,47,32,80,114,101,118,101,110,116,32,98,114,111,119,115,101,114,32,115,99,114,111,108,108,32,98,101,104,97,118,105,111,114,32,111,110,32,72,105,115,116,111,114,121,32,112,111,112,115,116,97,116,101,92,110,32,32,105,102,32,40,39,115,99,114,111,108,108,82,101,115,116,111,114,97,116,105,111,110,39,32,105,110,32,119,105,110,100,111,119,46,104,105,115,116,111,114,121,41,32,123,92,110,32,32,32,32,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,115,99,114,111,108,108,82,101,115,116,111,114,97,116,105,111,110,32,61,32,39,109,97,110,117,97,108,39,59,92,110,32,32,125,92,110,32,32,47,47,32,70,105,120,32,102,111,114,32,35,49,53,56,53,32,102,111,114,32,70,105,114,101,102,111,120,92,110,32,32,47,47,32,70,105,120,32,102,111,114,32,35,50,49,57,53,32,65,100,100,32,111,112,116,105,111,110,97,108,32,116,104,105,114,100,32,97,116,116,114,105,98,117,116,101,32,116,111,32,119,111,114,107,97,114,111,117,110,100,32,97,32,98,117,103,32,105,110,32,115,97,102,97,114,105,32,104,116,116,112,115,58,47,47,98,117,103,115,46,119,101,98,107,105,116,46,111,114,103,47,115,104,111,119,95,98,117,103,46,99,103,105,63,105,100,61,49,56,50,54,55,56,92,110,32,32,47,47,32,70,105,120,32,102,111,114,32,35,50,55,55,52,32,83,117,112,112,111,114,116,32,102,111,114,32,97,112,112,115,32,108,111,97,100,101,100,32,102,114,111,109,32,87,105,110,100,111,119,115,32,102,105,108,101,32,115,104,97,114,101,115,32,110,111,116,32,109,97,112,112,101,100,32,116,111,32,110,101,116,119,111,114,107,32,100,114,105,118,101,115,58,32,114,101,112,108,97,99,101,100,32,108,111,99,97,116,105,111,110,46,111,114,105,103,105,110,32,119,105,116,104,92,110,32,32,47,47,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,112,114,111,116,111,99,111,108,32,43,32,39,47,47,39,32,43,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,111,115,116,92,110,32,32,47,47,32,108,111,99,97,116,105,111,110,46,104,111,115,116,32,99,111,110,116,97,105,110,115,32,116,104,101,32,112,111,114,116,32,97,110,100,32,108,111,99,97,116,105,111,110,46,104,111,115,116,110,97,109,101,32,100,111,101,115,110,39,116,92,110,32,32,118,97,114,32,112,114,111,116,111,99,111,108,65,110,100,80,97,116,104,32,61,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,112,114,111,116,111,99,111,108,32,43,32,39,47,47,39,32,43,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,111,115,116,59,92,110,32,32,118,97,114,32,97,98,115,111,108,117,116,101,80,97,116,104,32,61,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,114,101,102,46,114,101,112,108,97,99,101,40,112,114,111,116,111,99,111,108,65,110,100,80,97,116,104,44,32,39,39,41,59,92,110,32,32,47,47,32,112,114,101,115,101,114,118,101,32,101,120,105,115,116,105,110,103,32,104,105,115,116,111,114,121,32,115,116,97,116,101,32,97,115,32,105,116,32,99,111,117,108,100,32,98,101,32,111,118,101,114,114,105,100,101,110,32,98,121,32,116,104,101,32,117,115,101,114,92,110,32,32,118,97,114,32,115,116,97,116,101,67,111,112,121,32,61,32,101,120,116,101,110,100,40,123,125,44,32,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,115,116,97,116,101,41,59,92,110,32,32,115,116,97,116,101,67,111,112,121,46,107,101,121,32,61,32,103,101,116,83,116,97,116,101,75,101,121,40,41,59,92,110,32,32,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,114,101,112,108,97,99,101,83,116,97,116,101,40,115,116,97,116,101,67,111,112,121,44,32,39,39,44,32,97,98,115,111,108,117,116,101,80,97,116,104,41,59,92,110,32,32,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,112,111,112,115,116,97,116,101,39,44,32,104,97,110,100,108,101,80,111,112,83,116,97,116,101,41,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,112,111,112,115,116,97,116,101,39,44,32,104,97,110,100,108,101,80,111,112,83,116,97,116,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,83,99,114,111,108,108,32,40,92,110,32,32,114,111,117,116,101,114,44,92,110,32,32,116,111,44,92,110,32,32,102,114,111,109,44,92,110,32,32,105,115,80,111,112,92,110,41,32,123,92,110,32,32,105,102,32,40,33,114,111,117,116,101,114,46,97,112,112,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,98,101,104,97,118,105,111,114,32,61,32,114,111,117,116,101,114,46,111,112,116,105,111,110,115,46,115,99,114,111,108,108,66,101,104,97,118,105,111,114,59,92,110,32,32,105,102,32,40,33,98,101,104,97,118,105,111,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,97,115,115,101,114,116,40,116,121,112,101,111,102,32,98,101,104,97,118,105,111,114,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,44,32,92,34,115,99,114,111,108,108,66,101,104,97,118,105,111,114,32,109,117,115,116,32,98,101,32,97,32,102,117,110,99,116,105,111,110,92,34,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,119,97,105,116,32,117,110,116,105,108,32,114,101,45,114,101,110,100,101,114,32,102,105,110,105,115,104,101,115,32,98,101,102,111,114,101,32,115,99,114,111,108,108,105,110,103,92,110,32,32,114,111,117,116,101,114,46,97,112,112,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,112,111,115,105,116,105,111,110,32,61,32,103,101,116,83,99,114,111,108,108,80,111,115,105,116,105,111,110,40,41,59,92,110,32,32,32,32,118,97,114,32,115,104,111,117,108,100,83,99,114,111,108,108,32,61,32,98,101,104,97,118,105,111,114,46,99,97,108,108,40,92,110,32,32,32,32,32,32,114,111,117,116,101,114,44,92,110,32,32,32,32,32,32,116,111,44,92,110,32,32,32,32,32,32,102,114,111,109,44,92,110,32,32,32,32,32,32,105,115,80,111,112,32,63,32,112,111,115,105,116,105,111,110,32,58,32,110,117,108,108,92,110,32,32,32,32,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,115,104,111,117,108,100,83,99,114,111,108,108,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,115,104,111,117,108,100,83,99,114,111,108,108,46,116,104,101,110,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,115,104,111,117,108,100,83,99,114,111,108,108,92,110,32,32,32,32,32,32,32,32,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,115,104,111,117,108,100,83,99,114,111,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,99,114,111,108,108,84,111,80,111,115,105,116,105,111,110,40,40,115,104,111,117,108,100,83,99,114,111,108,108,41,44,32,112,111,115,105,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,32,40,101,114,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,115,115,101,114,116,40,102,97,108,115,101,44,32,101,114,114,46,116,111,83,116,114,105,110,103,40,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,115,99,114,111,108,108,84,111,80,111,115,105,116,105,111,110,40,115,104,111,117,108,100,83,99,114,111,108,108,44,32,112,111,115,105,116,105,111,110,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,97,118,101,83,99,114,111,108,108,80,111,115,105,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,107,101,121,32,61,32,103,101,116,83,116,97,116,101,75,101,121,40,41,59,92,110,32,32,105,102,32,40,107,101,121,41,32,123,92,110,32,32,32,32,112,111,115,105,116,105,111,110,83,116,111,114,101,91,107,101,121,93,32,61,32,123,92,110,32,32,32,32,32,32,120,58,32,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,44,92,110,32,32,32,32,32,32,121,58,32,119,105,110,100,111,119,46,112,97,103,101,89,79,102,102,115,101,116,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,80,111,112,83,116,97,116,101,32,40,101,41,32,123,92,110,32,32,115,97,118,101,83,99,114,111,108,108,80,111,115,105,116,105,111,110,40,41,59,92,110,32,32,105,102,32,40,101,46,115,116,97,116,101,32,38,38,32,101,46,115,116,97,116,101,46,107,101,121,41,32,123,92,110,32,32,32,32,115,101,116,83,116,97,116,101,75,101,121,40,101,46,115,116,97,116,101,46,107,101,121,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,83,99,114,111,108,108,80,111,115,105,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,107,101,121,32,61,32,103,101,116,83,116,97,116,101,75,101,121,40,41,59,92,110,32,32,105,102,32,40,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,111,115,105,116,105,111,110,83,116,111,114,101,91,107,101,121,93,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,69,108,101,109,101,110,116,80,111,115,105,116,105,111,110,32,40,101,108,44,32,111,102,102,115,101,116,41,32,123,92,110,32,32,118,97,114,32,100,111,99,69,108,32,61,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,92,110,32,32,118,97,114,32,100,111,99,82,101,99,116,32,61,32,100,111,99,69,108,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,92,110,32,32,118,97,114,32,101,108,82,101,99,116,32,61,32,101,108,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,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,120,58,32,101,108,82,101,99,116,46,108,101,102,116,32,45,32,100,111,99,82,101,99,116,46,108,101,102,116,32,45,32,111,102,102,115,101,116,46,120,44,92,110,32,32,32,32,121,58,32,101,108,82,101,99,116,46,116,111,112,32,45,32,100,111,99,82,101,99,116,46,116,111,112,32,45,32,111,102,102,115,101,116,46,121,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,86,97,108,105,100,80,111,115,105,116,105,111,110,32,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,78,117,109,98,101,114,40,111,98,106,46,120,41,32,124,124,32,105,115,78,117,109,98,101,114,40,111,98,106,46,121,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,80,111,115,105,116,105,111,110,32,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,120,58,32,105,115,78,117,109,98,101,114,40,111,98,106,46,120,41,32,63,32,111,98,106,46,120,32,58,32,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,44,92,110,32,32,32,32,121,58,32,105,115,78,117,109,98,101,114,40,111,98,106,46,121,41,32,63,32,111,98,106,46,121,32,58,32,119,105,110,100,111,119,46,112,97,103,101,89,79,102,102,115,101,116,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,79,102,102,115,101,116,32,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,120,58,32,105,115,78,117,109,98,101,114,40,111,98,106,46,120,41,32,63,32,111,98,106,46,120,32,58,32,48,44,92,110,32,32,32,32,121,58,32,105,115,78,117,109,98,101,114,40,111,98,106,46,121,41,32,63,32,111,98,106,46,121,32,58,32,48,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,78,117,109,98,101,114,32,40,118,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,32,61,61,61,32,39,110,117,109,98,101,114,39,92,110,125,92,110,92,110,118,97,114,32,104,97,115,104,83,116,97,114,116,115,87,105,116,104,78,117,109,98,101,114,82,69,32,61,32,47,94,35,92,92,100,47,59,92,110,92,110,102,117,110,99,116,105,111,110,32,115,99,114,111,108,108,84,111,80,111,115,105,116,105,111,110,32,40,115,104,111,117,108,100,83,99,114,111,108,108,44,32,112,111,115,105,116,105,111,110,41,32,123,92,110,32,32,118,97,114,32,105,115,79,98,106,101,99,116,32,61,32,116,121,112,101,111,102,32,115,104,111,117,108,100,83,99,114,111,108,108,32,61,61,61,32,39,111,98,106,101,99,116,39,59,92,110,32,32,105,102,32,40,105,115,79,98,106,101,99,116,32,38,38,32,116,121,112,101,111,102,32,115,104,111,117,108,100,83,99,114,111,108,108,46,115,101,108,101,99,116,111,114,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,47,47,32,103,101,116,69,108,101,109,101,110,116,66,121,73,100,32,119,111,117,108,100,32,115,116,105,108,108,32,102,97,105,108,32,105,102,32,116,104,101,32,115,101,108,101,99,116,111,114,32,99,111,110,116,97,105,110,115,32,97,32,109,111,114,101,32,99,111,109,112,108,105,99,97,116,101,100,32,113,117,101,114,121,32,108,105,107,101,32,35,109,97,105,110,91,100,97,116,97,45,97,116,116,114,93,92,110,32,32,32,32,47,47,32,98,117,116,32,97,116,32,116,104,101,32,115,97,109,101,32,116,105,109,101,44,32,105,116,32,100,111,101,115,110,39,116,32,109,97,107,101,32,109,117,99,104,32,115,101,110,115,101,32,116,111,32,115,101,108,101,99,116,32,97,110,32,101,108,101,109,101,110,116,32,119,105,116,104,32,97,110,32,105,100,32,97,110,100,32,97,110,32,101,120,116,114,97,32,115,101,108,101,99,116,111,114,92,110,32,32,32,32,118,97,114,32,101,108,32,61,32,104,97,115,104,83,116,97,114,116,115,87,105,116,104,78,117,109,98,101,114,82,69,46,116,101,115,116,40,115,104,111,117,108,100,83,99,114,111,108,108,46,115,101,108,101,99,116,111,114,41,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,32,32,32,32,63,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,115,104,111,117,108,100,83,99,114,111,108,108,46,115,101,108,101,99,116,111,114,46,115,108,105,99,101,40,49,41,41,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,32,32,32,32,58,32,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,115,104,111,117,108,100,83,99,114,111,108,108,46,115,101,108,101,99,116,111,114,41,59,92,110,92,110,32,32,32,32,105,102,32,40,101,108,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,102,102,115,101,116,32,61,92,110,32,32,32,32,32,32,32,32,115,104,111,117,108,100,83,99,114,111,108,108,46,111,102,102,115,101,116,32,38,38,32,116,121,112,101,111,102,32,115,104,111,117,108,100,83,99,114,111,108,108,46,111,102,102,115,101,116,32,61,61,61,32,39,111,98,106,101,99,116,39,92,110,32,32,32,32,32,32,32,32,32,32,63,32,115,104,111,117,108,100,83,99,114,111,108,108,46,111,102,102,115,101,116,92,110,32,32,32,32,32,32,32,32,32,32,58,32,123,125,59,92,110,32,32,32,32,32,32,111,102,102,115,101,116,32,61,32,110,111,114,109,97,108,105,122,101,79,102,102,115,101,116,40,111,102,102,115,101,116,41,59,92,110,32,32,32,32,32,32,112,111,115,105,116,105,111,110,32,61,32,103,101,116,69,108,101,109,101,110,116,80,111,115,105,116,105,111,110,40,101,108,44,32,111,102,102,115,101,116,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,86,97,108,105,100,80,111,115,105,116,105,111,110,40,115,104,111,117,108,100,83,99,114,111,108,108,41,41,32,123,92,110,32,32,32,32,32,32,112,111,115,105,116,105,111,110,32,61,32,110,111,114,109,97,108,105,122,101,80,111,115,105,116,105,111,110,40,115,104,111,117,108,100,83,99,114,111,108,108,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,79,98,106,101,99,116,32,38,38,32,105,115,86,97,108,105,100,80,111,115,105,116,105,111,110,40,115,104,111,117,108,100,83,99,114,111,108,108,41,41,32,123,92,110,32,32,32,32,112,111,115,105,116,105,111,110,32,61,32,110,111,114,109,97,108,105,122,101,80,111,115,105,116,105,111,110,40,115,104,111,117,108,100,83,99,114,111,108,108,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,112,111,115,105,116,105,111,110,41,32,123,92,110,32,32,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,32,32,105,102,32,40,39,115,99,114,111,108,108,66,101,104,97,118,105,111,114,39,32,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,46,115,116,121,108,101,41,32,123,92,110,32,32,32,32,32,32,119,105,110,100,111,119,46,115,99,114,111,108,108,84,111,40,123,92,110,32,32,32,32,32,32,32,32,108,101,102,116,58,32,112,111,115,105,116,105,111,110,46,120,44,92,110,32,32,32,32,32,32,32,32,116,111,112,58,32,112,111,115,105,116,105,111,110,46,121,44,92,110,32,32,32,32,32,32,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,32,32,32,32,32,32,98,101,104,97,118,105,111,114,58,32,115,104,111,117,108,100,83,99,114,111,108,108,46,98,101,104,97,118,105,111,114,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,119,105,110,100,111,119,46,115,99,114,111,108,108,84,111,40,112,111,115,105,116,105,111,110,46,120,44,32,112,111,115,105,116,105,111,110,46,121,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,115,117,112,112,111,114,116,115,80,117,115,104,83,116,97,116,101,32,61,92,110,32,32,105,110,66,114,111,119,115,101,114,32,38,38,92,110,32,32,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,117,97,32,61,32,119,105,110,100,111,119,46,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,59,92,110,92,110,32,32,32,32,105,102,32,40,92,110,32,32,32,32,32,32,40,117,97,46,105,110,100,101,120,79,102,40,39,65,110,100,114,111,105,100,32,50,46,39,41,32,33,61,61,32,45,49,32,124,124,32,117,97,46,105,110,100,101,120,79,102,40,39,65,110,100,114,111,105,100,32,52,46,48,39,41,32,33,61,61,32,45,49,41,32,38,38,92,110,32,32,32,32,32,32,117,97,46,105,110,100,101,120,79,102,40,39,77,111,98,105,108,101,32,83,97,102,97,114,105,39,41,32,33,61,61,32,45,49,32,38,38,92,110,32,32,32,32,32,32,117,97,46,105,110,100,101,120,79,102,40,39,67,104,114,111,109,101,39,41,32,61,61,61,32,45,49,32,38,38,92,110,32,32,32,32,32,32,117,97,46,105,110,100,101,120,79,102,40,39,87,105,110,100,111,119,115,32,80,104,111,110,101,39,41,32,61,61,61,32,45,49,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,119,105,110,100,111,119,46,104,105,115,116,111,114,121,32,38,38,32,116,121,112,101,111,102,32,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,112,117,115,104,83,116,97,116,101,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,32,32,125,41,40,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,112,117,115,104,83,116,97,116,101,32,40,117,114,108,44,32,114,101,112,108,97,99,101,41,32,123,92,110,32,32,115,97,118,101,83,99,114,111,108,108,80,111,115,105,116,105,111,110,40,41,59,92,110,32,32,47,47,32,116,114,121,46,46,46,99,97,116,99,104,32,116,104,101,32,112,117,115,104,83,116,97,116,101,32,99,97,108,108,32,116,111,32,103,101,116,32,97,114,111,117,110,100,32,83,97,102,97,114,105,92,110,32,32,47,47,32,68,79,77,32,69,120,99,101,112,116,105,111,110,32,49,56,32,119,104,101,114,101,32,105,116,32,108,105,109,105,116,115,32,116,111,32,49,48,48,32,112,117,115,104,83,116,97,116,101,32,99,97,108,108,115,92,110,32,32,118,97,114,32,104,105,115,116,111,114,121,32,61,32,119,105,110,100,111,119,46,104,105,115,116,111,114,121,59,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,105,102,32,40,114,101,112,108,97,99,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,112,114,101,115,101,114,118,101,32,101,120,105,115,116,105,110,103,32,104,105,115,116,111,114,121,32,115,116,97,116,101,32,97,115,32,105,116,32,99,111,117,108,100,32,98,101,32,111,118,101,114,114,105,100,101,110,32,98,121,32,116,104,101,32,117,115,101,114,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,116,101,67,111,112,121,32,61,32,101,120,116,101,110,100,40,123,125,44,32,104,105,115,116,111,114,121,46,115,116,97,116,101,41,59,92,110,32,32,32,32,32,32,115,116,97,116,101,67,111,112,121,46,107,101,121,32,61,32,103,101,116,83,116,97,116,101,75,101,121,40,41,59,92,110,32,32,32,32,32,32,104,105,115,116,111,114,121,46,114,101,112,108,97,99,101,83,116,97,116,101,40,115,116,97,116,101,67,111,112,121,44,32,39,39,44,32,117,114,108,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,104,105,115,116,111,114,121,46,112,117,115,104,83,116,97,116,101,40,123,32,107,101,121,58,32,115,101,116,83,116,97,116,101,75,101,121,40,103,101,110,83,116,97,116,101,75,101,121,40,41,41,32,125,44,32,39,39,44,32,117,114,108,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,91,114,101,112,108,97,99,101,32,63,32,39,114,101,112,108,97,99,101,39,32,58,32,39,97,115,115,105,103,110,39,93,40,117,114,108,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,112,108,97,99,101,83,116,97,116,101,32,40,117,114,108,41,32,123,92,110,32,32,112,117,115,104,83,116,97,116,101,40,117,114,108,44,32,116,114,117,101,41,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,114,117,110,81,117,101,117,101,32,40,113,117,101,117,101,44,32,102,110,44,32,99,98,41,32,123,92,110,32,32,118,97,114,32,115,116,101,112,32,61,32,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,105,102,32,40,105,110,100,101,120,32,62,61,32,113,117,101,117,101,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,99,98,40,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,105,102,32,40,113,117,101,117,101,91,105,110,100,101,120,93,41,32,123,92,110,32,32,32,32,32,32,32,32,102,110,40,113,117,101,117,101,91,105,110,100,101,120,93,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,101,112,40,105,110,100,101,120,32,43,32,49,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,115,116,101,112,40,105,110,100,101,120,32,43,32,49,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,32,32,115,116,101,112,40,48,41,59,92,110,125,92,110,92,110,47,47,32,87,104,101,110,32,99,104,97,110,103,105,110,103,32,116,104,105,110,103,44,32,97,108,115,111,32,101,100,105,116,32,114,111,117,116,101,114,46,100,46,116,115,92,110,118,97,114,32,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,84,121,112,101,32,61,32,123,92,110,32,32,114,101,100,105,114,101,99,116,101,100,58,32,50,44,92,110,32,32,97,98,111,114,116,101,100,58,32,52,44,92,110,32,32,99,97,110,99,101,108,108,101,100,58,32,56,44,92,110,32,32,100,117,112,108,105,99,97,116,101,100,58,32,49,54,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,78,97,118,105,103,97,116,105,111,110,82,101,100,105,114,101,99,116,101,100,69,114,114,111,114,32,40,102,114,111,109,44,32,116,111,41,32,123,92,110,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,82,111,117,116,101,114,69,114,114,111,114,40,92,110,32,32,32,32,102,114,111,109,44,92,110,32,32,32,32,116,111,44,92,110,32,32,32,32,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,84,121,112,101,46,114,101,100,105,114,101,99,116,101,100,44,92,110,32,32,32,32,40,92,34,82,101,100,105,114,101,99,116,101,100,32,119,104,101,110,32,103,111,105,110,103,32,102,114,111,109,32,92,92,92,34,92,34,32,43,32,40,102,114,111,109,46,102,117,108,108,80,97,116,104,41,32,43,32,92,34,92,92,92,34,32,116,111,32,92,92,92,34,92,34,32,43,32,40,115,116,114,105,110,103,105,102,121,82,111,117,116,101,40,92,110,32,32,32,32,32,32,116,111,92,110,32,32,32,32,41,41,32,43,32,92,34,92,92,92,34,32,118,105,97,32,97,32,110,97,118,105,103,97,116,105,111,110,32,103,117,97,114,100,46,92,34,41,92,110,32,32,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,78,97,118,105,103,97,116,105,111,110,68,117,112,108,105,99,97,116,101,100,69,114,114,111,114,32,40,102,114,111,109,44,32,116,111,41,32,123,92,110,32,32,118,97,114,32,101,114,114,111,114,32,61,32,99,114,101,97,116,101,82,111,117,116,101,114,69,114,114,111,114,40,92,110,32,32,32,32,102,114,111,109,44,92,110,32,32,32,32,116,111,44,92,110,32,32,32,32,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,84,121,112,101,46,100,117,112,108,105,99,97,116,101,100,44,92,110,32,32,32,32,40,92,34,65,118,111,105,100,101,100,32,114,101,100,117,110,100,97,110,116,32,110,97,118,105,103,97,116,105,111,110,32,116,111,32,99,117,114,114,101,110,116,32,108,111,99,97,116,105,111,110,58,32,92,92,92,34,92,34,32,43,32,40,102,114,111,109,46,102,117,108,108,80,97,116,104,41,32,43,32,92,34,92,92,92,34,46,92,34,41,92,110,32,32,41,59,92,110,32,32,47,47,32,98,97,99,107,119,97,114,100,115,32,99,111,109,112,97,116,105,98,108,101,32,119,105,116,104,32,116,104,101,32,102,105,114,115,116,32,105,110,116,114,111,100,117,99,116,105,111,110,32,111,102,32,69,114,114,111,114,115,92,110,32,32,101,114,114,111,114,46,110,97,109,101,32,61,32,39,78,97,118,105,103,97,116,105,111,110,68,117,112,108,105,99,97,116,101,100,39,59,92,110,32,32,114,101,116,117,114,110,32,101,114,114,111,114,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,78,97,118,105,103,97,116,105,111,110,67,97,110,99,101,108,108,101,100,69,114,114,111,114,32,40,102,114,111,109,44,32,116,111,41,32,123,92,110,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,82,111,117,116,101,114,69,114,114,111,114,40,92,110,32,32,32,32,102,114,111,109,44,92,110,32,32,32,32,116,111,44,92,110,32,32,32,32,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,84,121,112,101,46,99,97,110,99,101,108,108,101,100,44,92,110,32,32,32,32,40,92,34,78,97,118,105,103,97,116,105,111,110,32,99,97,110,99,101,108,108,101,100,32,102,114,111,109,32,92,92,92,34,92,34,32,43,32,40,102,114,111,109,46,102,117,108,108,80,97,116,104,41,32,43,32,92,34,92,92,92,34,32,116,111,32,92,92,92,34,92,34,32,43,32,40,116,111,46,102,117,108,108,80,97,116,104,41,32,43,32,92,34,92,92,92,34,32,119,105,116,104,32,97,32,110,101,119,32,110,97,118,105,103,97,116,105,111,110,46,92,34,41,92,110,32,32,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,78,97,118,105,103,97,116,105,111,110,65,98,111,114,116,101,100,69,114,114,111,114,32,40,102,114,111,109,44,32,116,111,41,32,123,92,110,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,82,111,117,116,101,114,69,114,114,111,114,40,92,110,32,32,32,32,102,114,111,109,44,92,110,32,32,32,32,116,111,44,92,110,32,32,32,32,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,84,121,112,101,46,97,98,111,114,116,101,100,44,92,110,32,32,32,32,40,92,34,78,97,118,105,103,97,116,105,111,110,32,97,98,111,114,116,101,100,32,102,114,111,109,32,92,92,92,34,92,34,32,43,32,40,102,114,111,109,46,102,117,108,108,80,97,116,104,41,32,43,32,92,34,92,92,92,34,32,116,111,32,92,92,92,34,92,34,32,43,32,40,116,111,46,102,117,108,108,80,97,116,104,41,32,43,32,92,34,92,92,92,34,32,118,105,97,32,97,32,110,97,118,105,103,97,116,105,111,110,32,103,117,97,114,100,46,92,34,41,92,110,32,32,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,82,111,117,116,101,114,69,114,114,111,114,32,40,102,114,111,109,44,32,116,111,44,32,116,121,112,101,44,32,109,101,115,115,97,103,101,41,32,123,92,110,32,32,118,97,114,32,101,114,114,111,114,32,61,32,110,101,119,32,69,114,114,111,114,40,109,101,115,115,97,103,101,41,59,92,110,32,32,101,114,114,111,114,46,95,105,115,82,111,117,116,101,114,32,61,32,116,114,117,101,59,92,110,32,32,101,114,114,111,114,46,102,114,111,109,32,61,32,102,114,111,109,59,92,110,32,32,101,114,114,111,114,46,116,111,32,61,32,116,111,59,92,110,32,32,101,114,114,111,114,46,116,121,112,101,32,61,32,116,121,112,101,59,92,110,92,110,32,32,114,101,116,117,114,110,32,101,114,114,111,114,92,110,125,92,110,92,110,118,97,114,32,112,114,111,112,101,114,116,105,101,115,84,111,76,111,103,32,61,32,91,39,112,97,114,97,109,115,39,44,32,39,113,117,101,114,121,39,44,32,39,104,97,115,104,39,93,59,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,114,105,110,103,105,102,121,82,111,117,116,101,32,40,116,111,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,116,111,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,32,114,101,116,117,114,110,32,116,111,32,125,92,110,32,32,105,102,32,40,39,112,97,116,104,39,32,105,110,32,116,111,41,32,123,32,114,101,116,117,114,110,32,116,111,46,112,97,116,104,32,125,92,110,32,32,118,97,114,32,108,111,99,97,116,105,111,110,32,61,32,123,125,59,92,110,32,32,112,114,111,112,101,114,116,105,101,115,84,111,76,111,103,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,105,102,32,40,107,101,121,32,105,110,32,116,111,41,32,123,32,108,111,99,97,116,105,111,110,91,107,101,121,93,32,61,32,116,111,91,107,101,121,93,59,32,125,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,108,111,99,97,116,105,111,110,44,32,110,117,108,108,44,32,50,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,69,114,114,111,114,32,40,101,114,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,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,114,114,41,46,105,110,100,101,120,79,102,40,39,69,114,114,111,114,39,41,32,62,32,45,49,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,32,40,101,114,114,44,32,101,114,114,111,114,84,121,112,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,92,110,32,32,32,32,105,115,69,114,114,111,114,40,101,114,114,41,32,38,38,92,110,32,32,32,32,101,114,114,46,95,105,115,82,111,117,116,101,114,32,38,38,92,110,32,32,32,32,40,101,114,114,111,114,84,121,112,101,32,61,61,32,110,117,108,108,32,124,124,32,101,114,114,46,116,121,112,101,32,61,61,61,32,101,114,114,111,114,84,121,112,101,41,92,110,32,32,41,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,65,115,121,110,99,67,111,109,112,111,110,101,110,116,115,32,40,109,97,116,99,104,101,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,116,111,44,32,102,114,111,109,44,32,110,101,120,116,41,32,123,92,110,32,32,32,32,118,97,114,32,104,97,115,65,115,121,110,99,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,118,97,114,32,112,101,110,100,105,110,103,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,101,114,114,111,114,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,102,108,97,116,77,97,112,67,111,109,112,111,110,101,110,116,115,40,109,97,116,99,104,101,100,44,32,102,117,110,99,116,105,111,110,32,40,100,101,102,44,32,95,44,32,109,97,116,99,104,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,47,47,32,105,102,32,105,116,39,115,32,97,32,102,117,110,99,116,105,111,110,32,97,110,100,32,100,111,101,115,110,39,116,32,104,97,118,101,32,99,105,100,32,97,116,116,97,99,104,101,100,44,92,110,32,32,32,32,32,32,47,47,32,97,115,115,117,109,101,32,105,116,39,115,32,97,110,32,97,115,121,110,99,32,99,111,109,112,111,110,101,110,116,32,114,101,115,111,108,118,101,32,102,117,110,99,116,105,111,110,46,92,110,32,32,32,32,32,32,47,47,32,119,101,32,97,114,101,32,110,111,116,32,117,115,105,110,103,32,86,117,101,39,115,32,100,101,102,97,117,108,116,32,97,115,121,110,99,32,114,101,115,111,108,118,105,110,103,32,109,101,99,104,97,110,105,115,109,32,98,101,99,97,117,115,101,92,110,32,32,32,32,32,32,47,47,32,119,101,32,119,97,110,116,32,116,111,32,104,97,108,116,32,116,104,101,32,110,97,118,105,103,97,116,105,111,110,32,117,110,116,105,108,32,116,104,101,32,105,110,99,111,109,105,110,103,32,99,111,109,112,111,110,101,110,116,32,104,97,115,32,98,101,101,110,92,110,32,32,32,32,32,32,47,47,32,114,101,115,111,108,118,101,100,46,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,100,101,102,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,100,101,102,46,99,105,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,104,97,115,65,115,121,110,99,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,112,101,110,100,105,110,103,43,43,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,111,108,118,101,32,61,32,111,110,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,100,68,101,102,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,69,83,77,111,100,117,108,101,40,114,101,115,111,108,118,101,100,68,101,102,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,118,101,100,68,101,102,32,61,32,114,101,115,111,108,118,101,100,68,101,102,46,100,101,102,97,117,108,116,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,115,97,118,101,32,114,101,115,111,108,118,101,100,32,111,110,32,97,115,121,110,99,32,102,97,99,116,111,114,121,32,105,110,32,99,97,115,101,32,105,116,39,115,32,117,115,101,100,32,101,108,115,101,119,104,101,114,101,92,110,32,32,32,32,32,32,32,32,32,32,100,101,102,46,114,101,115,111,108,118,101,100,32,61,32,116,121,112,101,111,102,32,114,101,115,111,108,118,101,100,68,101,102,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,114,101,115,111,108,118,101,100,68,101,102,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,86,117,101,46,101,120,116,101,110,100,40,114,101,115,111,108,118,101,100,68,101,102,41,59,92,110,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,46,99,111,109,112,111,110,101,110,116,115,91,107,101,121,93,32,61,32,114,101,115,111,108,118,101,100,68,101,102,59,92,110,32,32,32,32,32,32,32,32,32,32,112,101,110,100,105,110,103,45,45,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,101,110,100,105,110,103,32,60,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,106,101,99,116,32,61,32,111,110,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,115,103,32,61,32,92,34,70,97,105,108,101,100,32,116,111,32,114,101,115,111,108,118,101,32,97,115,121,110,99,32,99,111,109,112,111,110,101,110,116,32,92,34,32,43,32,107,101,121,32,43,32,92,34,58,32,92,34,32,43,32,114,101,97,115,111,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,116,114,117,101,32,38,38,32,119,97,114,110,40,102,97,108,115,101,44,32,109,115,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,101,114,114,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,114,114,111,114,32,61,32,105,115,69,114,114,111,114,40,114,101,97,115,111,110,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,114,101,97,115,111,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,110,101,119,32,69,114,114,111,114,40,109,115,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,40,101,114,114,111,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,32,32,118,97,114,32,114,101,115,59,92,110,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,32,61,32,100,101,102,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,106,101,99,116,40,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,114,101,115,46,116,104,101,110,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,46,116,104,101,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,110,101,119,32,115,121,110,116,97,120,32,105,110,32,86,117,101,32,50,46,51,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,111,109,112,32,61,32,114,101,115,46,99,111,109,112,111,110,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,111,109,112,32,38,38,32,116,121,112,101,111,102,32,99,111,109,112,46,116,104,101,110,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,46,116,104,101,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,105,102,32,40,33,104,97,115,65,115,121,110,99,41,32,123,32,110,101,120,116,40,41,59,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,108,97,116,77,97,112,67,111,109,112,111,110,101,110,116,115,32,40,92,110,32,32,109,97,116,99,104,101,100,44,92,110,32,32,102,110,92,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,108,97,116,116,101,110,40,109,97,116,99,104,101,100,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,109,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,109,46,99,111,109,112,111,110,101,110,116,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,102,110,40,92,110,32,32,32,32,32,32,109,46,99,111,109,112,111,110,101,110,116,115,91,107,101,121,93,44,92,110,32,32,32,32,32,32,109,46,105,110,115,116,97,110,99,101,115,91,107,101,121,93,44,92,110,32,32,32,32,32,32,109,44,32,107,101,121,92,110,32,32,32,32,41,59,32,125,41,92,110,32,32,125,41,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,102,108,97,116,116,101,110,32,40,97,114,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,99,111,110,99,97,116,46,97,112,112,108,121,40,91,93,44,32,97,114,114,41,92,110,125,92,110,92,110,118,97,114,32,104,97,115,83,121,109,98,111,108,32,61,92,110,32,32,116,121,112,101,111,102,32,83,121,109,98,111,108,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,92,110,32,32,116,121,112,101,111,102,32,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,32,61,61,61,32,39,115,121,109,98,111,108,39,59,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,69,83,77,111,100,117,108,101,32,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,111,98,106,46,95,95,101,115,77,111,100,117,108,101,32,124,124,32,40,104,97,115,83,121,109,98,111,108,32,38,38,32,111,98,106,91,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,93,32,61,61,61,32,39,77,111,100,117,108,101,39,41,92,110,125,92,110,92,110,47,47,32,105,110,32,87,101,98,112,97,99,107,32,50,44,32,114,101,113,117,105,114,101,46,101,110,115,117,114,101,32,110,111,119,32,97,108,115,111,32,114,101,116,117,114,110,115,32,97,32,80,114,111,109,105,115,101,92,110,47,47,32,115,111,32,116,104,101,32,114,101,115,111,108,118,101,47,114,101,106,101,99,116,32,102,117,110,99,116,105,111,110,115,32,109,97,121,32,103,101,116,32,99,97,108,108,101,100,32,97,110,32,101,120,116,114,97,32,116,105,109,101,92,110,47,47,32,105,102,32,116,104,101,32,117,115,101,114,32,117,115,101,115,32,97,110,32,97,114,114,111,119,32,102,117,110,99,116,105,111,110,32,115,104,111,114,116,104,97,110,100,32,116,104,97,116,32,104,97,112,112,101,110,115,32,116,111,92,110,47,47,32,114,101,116,117,114,110,32,116,104,97,116,32,80,114,111,109,105,115,101,46,92,110,102,117,110,99,116,105,111,110,32,111,110,99,101,32,40,102,110,41,32,123,92,110,32,32,118,97,114,32,99,97,108,108,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,41,32,97,114,103,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,93,59,92,110,92,110,32,32,32,32,105,102,32,40,99,97,108,108,101,100,41,32,123,32,114,101,116,117,114,110,32,125,92,110,32,32,32,32,99,97,108,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,102,110,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,72,105,115,116,111,114,121,32,61,32,102,117,110,99,116,105,111,110,32,72,105,115,116,111,114,121,32,40,114,111,117,116,101,114,44,32,98,97,115,101,41,32,123,92,110,32,32,116,104,105,115,46,114,111,117,116,101,114,32,61,32,114,111,117,116,101,114,59,92,110,32,32,116,104,105,115,46,98,97,115,101,32,61,32,110,111,114,109,97,108,105,122,101,66,97,115,101,40,98,97,115,101,41,59,92,110,32,32,47,47,32,115,116,97,114,116,32,119,105,116,104,32,97,32,114,111,117,116,101,32,111,98,106,101,99,116,32,116,104,97,116,32,115,116,97,110,100,115,32,102,111,114,32,92,34,110,111,119,104,101,114,101,92,34,92,110,32,32,116,104,105,115,46,99,117,114,114,101,110,116,32,61,32,83,84,65,82,84,59,92,110,32,32,116,104,105,115,46,112,101,110,100,105,110,103,32,61,32,110,117,108,108,59,92,110,32,32,116,104,105,115,46,114,101,97,100,121,32,61,32,102,97,108,115,101,59,92,110,32,32,116,104,105,115,46,114,101,97,100,121,67,98,115,32,61,32,91,93,59,92,110,32,32,116,104,105,115,46,114,101,97,100,121,69,114,114,111,114,67,98,115,32,61,32,91,93,59,92,110,32,32,116,104,105,115,46,101,114,114,111,114,67,98,115,32,61,32,91,93,59,92,110,32,32,116,104,105,115,46,108,105,115,116,101,110,101,114,115,32,61,32,91,93,59,92,110,125,59,92,110,92,110,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,32,61,32,102,117,110,99,116,105,111,110,32,108,105,115,116,101,110,32,40,99,98,41,32,123,92,110,32,32,116,104,105,115,46,99,98,32,61,32,99,98,59,92,110,125,59,92,110,92,110,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,111,110,82,101,97,100,121,32,61,32,102,117,110,99,116,105,111,110,32,111,110,82,101,97,100,121,32,40,99,98,44,32,101,114,114,111,114,67,98,41,32,123,92,110,32,32,105,102,32,40,116,104,105,115,46,114,101,97,100,121,41,32,123,92,110,32,32,32,32,99,98,40,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,116,104,105,115,46,114,101,97,100,121,67,98,115,46,112,117,115,104,40,99,98,41,59,92,110,32,32,32,32,105,102,32,40,101,114,114,111,114,67,98,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,114,101,97,100,121,69,114,114,111,114,67,98,115,46,112,117,115,104,40,101,114,114,111,114,67,98,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,111,110,69,114,114,111,114,32,61,32,102,117,110,99,116,105,111,110,32,111,110,69,114,114,111,114,32,40,101,114,114,111,114,67,98,41,32,123,92,110,32,32,116,104,105,115,46,101,114,114,111,114,67,98,115,46,112,117,115,104,40,101,114,114,111,114,67,98,41,59,92,110,125,59,92,110,92,110,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,116,114,97,110,115,105,116,105,111,110,84,111,32,61,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,105,116,105,111,110,84,111,32,40,92,110,32,32,108,111,99,97,116,105,111,110,44,92,110,32,32,111,110,67,111,109,112,108,101,116,101,44,92,110,32,32,111,110,65,98,111,114,116,92,110,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,118,97,114,32,114,111,117,116,101,59,92,110,32,32,47,47,32,99,97,116,99,104,32,114,101,100,105,114,101,99,116,32,111,112,116,105,111,110,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,45,114,111,117,116,101,114,47,105,115,115,117,101,115,47,51,50,48,49,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,114,111,117,116,101,32,61,32,116,104,105,115,46,114,111,117,116,101,114,46,109,97,116,99,104,40,108,111,99,97,116,105,111,110,44,32,116,104,105,115,46,99,117,114,114,101,110,116,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,116,104,105,115,46,101,114,114,111,114,67,98,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,98,41,32,123,92,110,32,32,32,32,32,32,99,98,40,101,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,47,47,32,69,120,99,101,112,116,105,111,110,32,115,104,111,117,108,100,32,115,116,105,108,108,32,98,101,32,116,104,114,111,119,110,92,110,32,32,32,32,116,104,114,111,119,32,101,92,110,32,32,125,92,110,32,32,118,97,114,32,112,114,101,118,32,61,32,116,104,105,115,46,99,117,114,114,101,110,116,59,92,110,32,32,116,104,105,115,46,99,111,110,102,105,114,109,84,114,97,110,115,105,116,105,111,110,40,92,110,32,32,32,32,114,111,117,116,101,44,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,36,49,46,117,112,100,97,116,101,82,111,117,116,101,40,114,111,117,116,101,41,59,92,110,32,32,32,32,32,32,111,110,67,111,109,112,108,101,116,101,32,38,38,32,111,110,67,111,109,112,108,101,116,101,40,114,111,117,116,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,36,49,46,101,110,115,117,114,101,85,82,76,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,36,49,46,114,111,117,116,101,114,46,97,102,116,101,114,72,111,111,107,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,111,111,107,41,32,123,92,110,32,32,32,32,32,32,32,32,104,111,111,107,32,38,38,32,104,111,111,107,40,114,111,117,116,101,44,32,112,114,101,118,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,102,105,114,101,32,114,101,97,100,121,32,99,98,115,32,111,110,99,101,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,36,49,46,114,101,97,100,121,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,114,101,97,100,121,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,114,101,97,100,121,67,98,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,98,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,98,40,114,111,117,116,101,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,40,101,114,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,111,110,65,98,111,114,116,41,32,123,92,110,32,32,32,32,32,32,32,32,111,110,65,98,111,114,116,40,101,114,114,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,101,114,114,32,38,38,32,33,116,104,105,115,36,49,46,114,101,97,100,121,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,105,116,105,97,108,32,114,101,100,105,114,101,99,116,105,111,110,32,115,104,111,117,108,100,32,110,111,116,32,109,97,114,107,32,116,104,101,32,104,105,115,116,111,114,121,32,97,115,32,114,101,97,100,121,32,121,101,116,92,110,32,32,32,32,32,32,32,32,47,47,32,98,101,99,97,117,115,101,32,105,116,39,115,32,116,114,105,103,103,101,114,101,100,32,98,121,32,116,104,101,32,114,101,100,105,114,101,99,116,105,111,110,32,105,110,115,116,101,97,100,92,110,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,45,114,111,117,116,101,114,47,105,115,115,117,101,115,47,51,50,50,53,92,110,32,32,32,32,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,45,114,111,117,116,101,114,47,105,115,115,117,101,115,47,51,51,51,49,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,40,101,114,114,44,32,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,84,121,112,101,46,114,101,100,105,114,101,99,116,101,100,41,32,124,124,32,112,114,101,118,32,33,61,61,32,83,84,65,82,84,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,114,101,97,100,121,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,114,101,97,100,121,69,114,114,111,114,67,98,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,98,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,98,40,101,114,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,41,59,92,110,125,59,92,110,92,110,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,99,111,110,102,105,114,109,84,114,97,110,115,105,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,32,99,111,110,102,105,114,109,84,114,97,110,115,105,116,105,111,110,32,40,114,111,117,116,101,44,32,111,110,67,111,109,112,108,101,116,101,44,32,111,110,65,98,111,114,116,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,118,97,114,32,99,117,114,114,101,110,116,32,61,32,116,104,105,115,46,99,117,114,114,101,110,116,59,92,110,32,32,116,104,105,115,46,112,101,110,100,105,110,103,32,61,32,114,111,117,116,101,59,92,110,32,32,118,97,114,32,97,98,111,114,116,32,61,32,102,117,110,99,116,105,111,110,32,40,101,114,114,41,32,123,92,110,32,32,32,32,47,47,32,99,104,97,110,103,101,100,32,97,102,116,101,114,32,97,100,100,105,110,103,32,101,114,114,111,114,115,32,119,105,116,104,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,45,114,111,117,116,101,114,47,112,117,108,108,47,51,48,52,55,32,98,101,102,111,114,101,32,116,104,97,116,32,99,104,97,110,103,101,44,92,110,32,32,32,32,47,47,32,114,101,100,105,114,101,99,116,32,97,110,100,32,97,98,111,114,116,101,100,32,110,97,118,105,103,97,116,105,111,110,32,119,111,117,108,100,32,112,114,111,100,117,99,101,32,97,110,32,101,114,114,32,61,61,32,110,117,108,108,92,110,32,32,32,32,105,102,32,40,33,105,115,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,40,101,114,114,41,32,38,38,32,105,115,69,114,114,111,114,40,101,114,114,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,36,49,46,101,114,114,111,114,67,98,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,101,114,114,111,114,67,98,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,98,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,98,40,101,114,114,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,102,97,108,115,101,44,32,39,117,110,99,97,117,103,104,116,32,101,114,114,111,114,32,100,117,114,105,110,103,32,114,111,117,116,101,32,110,97,118,105,103,97,116,105,111,110,58,39,41,59,92,110,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,101,114,114,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,111,110,65,98,111,114,116,32,38,38,32,111,110,65,98,111,114,116,40,101,114,114,41,59,92,110,32,32,125,59,92,110,32,32,118,97,114,32,108,97,115,116,82,111,117,116,101,73,110,100,101,120,32,61,32,114,111,117,116,101,46,109,97,116,99,104,101,100,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,118,97,114,32,108,97,115,116,67,117,114,114,101,110,116,73,110,100,101,120,32,61,32,99,117,114,114,101,110,116,46,109,97,116,99,104,101,100,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,105,102,32,40,92,110,32,32,32,32,105,115,83,97,109,101,82,111,117,116,101,40,114,111,117,116,101,44,32,99,117,114,114,101,110,116,41,32,38,38,92,110,32,32,32,32,47,47,32,105,110,32,116,104,101,32,99,97,115,101,32,116,104,101,32,114,111,117,116,101,32,109,97,112,32,104,97,115,32,98,101,101,110,32,100,121,110,97,109,105,99,97,108,108,121,32,97,112,112,101,110,100,101,100,32,116,111,92,110,32,32,32,32,108,97,115,116,82,111,117,116,101,73,110,100,101,120,32,61,61,61,32,108,97,115,116,67,117,114,114,101,110,116,73,110,100,101,120,32,38,38,92,110,32,32,32,32,114,111,117,116,101,46,109,97,116,99,104,101,100,91,108,97,115,116,82,111,117,116,101,73,110,100,101,120,93,32,61,61,61,32,99,117,114,114,101,110,116,46,109,97,116,99,104,101,100,91,108,97,115,116,67,117,114,114,101,110,116,73,110,100,101,120,93,92,110,32,32,41,32,123,92,110,32,32,32,32,116,104,105,115,46,101,110,115,117,114,101,85,82,76,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,97,98,111,114,116,40,99,114,101,97,116,101,78,97,118,105,103,97,116,105,111,110,68,117,112,108,105,99,97,116,101,100,69,114,114,111,114,40,99,117,114,114,101,110,116,44,32,114,111,117,116,101,41,41,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,114,101,102,32,61,32,114,101,115,111,108,118,101,81,117,101,117,101,40,92,110,32,32,32,32,116,104,105,115,46,99,117,114,114,101,110,116,46,109,97,116,99,104,101,100,44,92,110,32,32,32,32,114,111,117,116,101,46,109,97,116,99,104,101,100,92,110,32,32,41,59,92,110,32,32,32,32,118,97,114,32,117,112,100,97,116,101,100,32,61,32,114,101,102,46,117,112,100,97,116,101,100,59,92,110,32,32,32,32,118,97,114,32,100,101,97,99,116,105,118,97,116,101,100,32,61,32,114,101,102,46,100,101,97,99,116,105,118,97,116,101,100,59,92,110,32,32,32,32,118,97,114,32,97,99,116,105,118,97,116,101,100,32,61,32,114,101,102,46,97,99,116,105,118,97,116,101,100,59,92,110,92,110,32,32,118,97,114,32,113,117,101,117,101,32,61,32,91,93,46,99,111,110,99,97,116,40,92,110,32,32,32,32,47,47,32,105,110,45,99,111,109,112,111,110,101,110,116,32,108,101,97,118,101,32,103,117,97,114,100,115,92,110,32,32,32,32,101,120,116,114,97,99,116,76,101,97,118,101,71,117,97,114,100,115,40,100,101,97,99,116,105,118,97,116,101,100,41,44,92,110,32,32,32,32,47,47,32,103,108,111,98,97,108,32,98,101,102,111,114,101,32,104,111,111,107,115,92,110,32,32,32,32,116,104,105,115,46,114,111,117,116,101,114,46,98,101,102,111,114,101,72,111,111,107,115,44,92,110,32,32,32,32,47,47,32,105,110,45,99,111,109,112,111,110,101,110,116,32,117,112,100,97,116,101,32,104,111,111,107,115,92,110,32,32,32,32,101,120,116,114,97,99,116,85,112,100,97,116,101,72,111,111,107,115,40,117,112,100,97,116,101,100,41,44,92,110,32,32,32,32,47,47,32,105,110,45,99,111,110,102,105,103,32,101,110,116,101,114,32,103,117,97,114,100,115,92,110,32,32,32,32,97,99,116,105,118,97,116,101,100,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,109,41,32,123,32,114,101,116,117,114,110,32,109,46,98,101,102,111,114,101,69,110,116,101,114,59,32,125,41,44,92,110,32,32,32,32,47,47,32,97,115,121,110,99,32,99,111,109,112,111,110,101,110,116,115,92,110,32,32,32,32,114,101,115,111,108,118,101,65,115,121,110,99,67,111,109,112,111,110,101,110,116,115,40,97,99,116,105,118,97,116,101,100,41,92,110,32,32,41,59,92,110,92,110,32,32,118,97,114,32,105,116,101,114,97,116,111,114,32,61,32,102,117,110,99,116,105,111,110,32,40,104,111,111,107,44,32,110,101,120,116,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,36,49,46,112,101,110,100,105,110,103,32,33,61,61,32,114,111,117,116,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,98,111,114,116,40,99,114,101,97,116,101,78,97,118,105,103,97,116,105,111,110,67,97,110,99,101,108,108,101,100,69,114,114,111,114,40,99,117,114,114,101,110,116,44,32,114,111,117,116,101,41,41,92,110,32,32,32,32,125,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,104,111,111,107,40,114,111,117,116,101,44,32,99,117,114,114,101,110,116,44,32,102,117,110,99,116,105,111,110,32,40,116,111,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,111,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,110,101,120,116,40,102,97,108,115,101,41,32,45,62,32,97,98,111,114,116,32,110,97,118,105,103,97,116,105,111,110,44,32,101,110,115,117,114,101,32,99,117,114,114,101,110,116,32,85,82,76,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,101,110,115,117,114,101,85,82,76,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,97,98,111,114,116,40,99,114,101,97,116,101,78,97,118,105,103,97,116,105,111,110,65,98,111,114,116,101,100,69,114,114,111,114,40,99,117,114,114,101,110,116,44,32,114,111,117,116,101,41,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,69,114,114,111,114,40,116,111,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,101,110,115,117,114,101,85,82,76,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,97,98,111,114,116,40,116,111,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,116,111,32,61,61,61,32,39,115,116,114,105,110,103,39,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,40,116,121,112,101,111,102,32,116,111,32,61,61,61,32,39,111,98,106,101,99,116,39,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,116,121,112,101,111,102,32,116,111,46,112,97,116,104,32,61,61,61,32,39,115,116,114,105,110,103,39,32,124,124,32,116,121,112,101,111,102,32,116,111,46,110,97,109,101,32,61,61,61,32,39,115,116,114,105,110,103,39,41,41,92,110,32,32,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,110,101,120,116,40,39,47,39,41,32,111,114,32,110,101,120,116,40,123,32,112,97,116,104,58,32,39,47,39,32,125,41,32,45,62,32,114,101,100,105,114,101,99,116,92,110,32,32,32,32,32,32,32,32,32,32,97,98,111,114,116,40,99,114,101,97,116,101,78,97,118,105,103,97,116,105,111,110,82,101,100,105,114,101,99,116,101,100,69,114,114,111,114,40,99,117,114,114,101,110,116,44,32,114,111,117,116,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,116,111,32,61,61,61,32,39,111,98,106,101,99,116,39,32,38,38,32,116,111,46,114,101,112,108,97,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,114,101,112,108,97,99,101,40,116,111,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,112,117,115,104,40,116,111,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,99,111,110,102,105,114,109,32,116,114,97,110,115,105,116,105,111,110,32,97,110,100,32,112,97,115,115,32,111,110,32,116,104,101,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,32,32,110,101,120,116,40,116,111,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,97,98,111,114,116,40,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,114,117,110,81,117,101,117,101,40,113,117,101,117,101,44,32,105,116,101,114,97,116,111,114,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,47,47,32,119,97,105,116,32,117,110,116,105,108,32,97,115,121,110,99,32,99,111,109,112,111,110,101,110,116,115,32,97,114,101,32,114,101,115,111,108,118,101,100,32,98,101,102,111,114,101,92,110,32,32,32,32,47,47,32,101,120,116,114,97,99,116,105,110,103,32,105,110,45,99,111,109,112,111,110,101,110,116,32,101,110,116,101,114,32,103,117,97,114,100,115,92,110,32,32,32,32,118,97,114,32,101,110,116,101,114,71,117,97,114,100,115,32,61,32,101,120,116,114,97,99,116,69,110,116,101,114,71,117,97,114,100,115,40,97,99,116,105,118,97,116,101,100,41,59,92,110,32,32,32,32,118,97,114,32,113,117,101,117,101,32,61,32,101,110,116,101,114,71,117,97,114,100,115,46,99,111,110,99,97,116,40,116,104,105,115,36,49,46,114,111,117,116,101,114,46,114,101,115,111,108,118,101,72,111,111,107,115,41,59,92,110,32,32,32,32,114,117,110,81,117,101,117,101,40,113,117,101,117,101,44,32,105,116,101,114,97,116,111,114,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,36,49,46,112,101,110,100,105,110,103,32,33,61,61,32,114,111,117,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,98,111,114,116,40,99,114,101,97,116,101,78,97,118,105,103,97,116,105,111,110,67,97,110,99,101,108,108,101,100,69,114,114,111,114,40,99,117,114,114,101,110,116,44,32,114,111,117,116,101,41,41,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,116,104,105,115,36,49,46,112,101,110,100,105,110,103,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,111,110,67,111,109,112,108,101,116,101,40,114,111,117,116,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,36,49,46,114,111,117,116,101,114,46,97,112,112,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,114,111,117,116,101,114,46,97,112,112,46,36,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,82,111,117,116,101,69,110,116,101,114,101,100,40,114,111,117,116,101,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,117,112,100,97,116,101,82,111,117,116,101,32,61,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,82,111,117,116,101,32,40,114,111,117,116,101,41,32,123,92,110,32,32,116,104,105,115,46,99,117,114,114,101,110,116,32,61,32,114,111,117,116,101,59,92,110,32,32,116,104,105,115,46,99,98,32,38,38,32,116,104,105,115,46,99,98,40,114,111,117,116,101,41,59,92,110,125,59,92,110,92,110,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,115,101,116,117,112,76,105,115,116,101,110,101,114,115,32,61,32,102,117,110,99,116,105,111,110,32,115,101,116,117,112,76,105,115,116,101,110,101,114,115,32,40,41,32,123,92,110,32,32,47,47,32,68,101,102,97,117,108,116,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,105,115,32,101,109,112,116,121,92,110,125,59,92,110,92,110,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,116,101,97,114,100,111,119,110,32,61,32,102,117,110,99,116,105,111,110,32,116,101,97,114,100,111,119,110,32,40,41,32,123,92,110,32,32,47,47,32,99,108,101,97,110,32,117,112,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,92,110,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,45,114,111,117,116,101,114,47,105,115,115,117,101,115,47,50,51,52,49,92,110,32,32,116,104,105,115,46,108,105,115,116,101,110,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,108,101,97,110,117,112,76,105,115,116,101,110,101,114,41,32,123,92,110,32,32,32,32,99,108,101,97,110,117,112,76,105,115,116,101,110,101,114,40,41,59,92,110,32,32,125,41,59,92,110,32,32,116,104,105,115,46,108,105,115,116,101,110,101,114,115,32,61,32,91,93,59,92,110,92,110,32,32,47,47,32,114,101,115,101,116,32,99,117,114,114,101,110,116,32,104,105,115,116,111,114,121,32,114,111,117,116,101,92,110,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,45,114,111,117,116,101,114,47,105,115,115,117,101,115,47,51,50,57,52,92,110,32,32,116,104,105,115,46,99,117,114,114,101,110,116,32,61,32,83,84,65,82,84,59,92,110,32,32,116,104,105,115,46,112,101,110,100,105,110,103,32,61,32,110,117,108,108,59,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,66,97,115,101,32,40,98,97,115,101,41,32,123,92,110,32,32,105,102,32,40,33,98,97,115,101,41,32,123,92,110,32,32,32,32,105,102,32,40,105,110,66,114,111,119,115,101,114,41,32,123,92,110,32,32,32,32,32,32,47,47,32,114,101,115,112,101,99,116,32,60,98,97,115,101,62,32,116,97,103,92,110,32,32,32,32,32,32,118,97,114,32,98,97,115,101,69,108,32,61,32,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,39,98,97,115,101,39,41,59,92,110,32,32,32,32,32,32,98,97,115,101,32,61,32,40,98,97,115,101,69,108,32,38,38,32,98,97,115,101,69,108,46,103,101,116,65,116,116,114,105,98,117,116,101,40,39,104,114,101,102,39,41,41,32,124,124,32,39,47,39,59,92,110,32,32,32,32,32,32,47,47,32,115,116,114,105,112,32,102,117,108,108,32,85,82,76,32,111,114,105,103,105,110,92,110,32,32,32,32,32,32,98,97,115,101,32,61,32,98,97,115,101,46,114,101,112,108,97,99,101,40,47,94,104,116,116,112,115,63,58,92,92,47,92,92,47,91,94,92,92,47,93,43,47,44,32,39,39,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,98,97,115,101,32,61,32,39,47,39,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,47,47,32,109,97,107,101,32,115,117,114,101,32,116,104,101,114,101,39,115,32,116,104,101,32,115,116,97,114,116,105,110,103,32,115,108,97,115,104,92,110,32,32,105,102,32,40,98,97,115,101,46,99,104,97,114,65,116,40,48,41,32,33,61,61,32,39,47,39,41,32,123,92,110,32,32,32,32,98,97,115,101,32,61,32,39,47,39,32,43,32,98,97,115,101,59,92,110,32,32,125,92,110,32,32,47,47,32,114,101,109,111,118,101,32,116,114,97,105,108,105,110,103,32,115,108,97,115,104,92,110,32,32,114,101,116,117,114,110,32,98,97,115,101,46,114,101,112,108,97,99,101,40,47,92,92,47,36,47,44,32,39,39,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,81,117,101,117,101,32,40,92,110,32,32,99,117,114,114,101,110,116,44,92,110,32,32,110,101,120,116,92,110,41,32,123,92,110,32,32,118,97,114,32,105,59,92,110,32,32,118,97,114,32,109,97,120,32,61,32,77,97,116,104,46,109,97,120,40,99,117,114,114,101,110,116,46,108,101,110,103,116,104,44,32,110,101,120,116,46,108,101,110,103,116,104,41,59,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,109,97,120,59,32,105,43,43,41,32,123,92,110,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,91,105,93,32,33,61,61,32,110,101,120,116,91,105,93,41,32,123,92,110,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,117,112,100,97,116,101,100,58,32,110,101,120,116,46,115,108,105,99,101,40,48,44,32,105,41,44,92,110,32,32,32,32,97,99,116,105,118,97,116,101,100,58,32,110,101,120,116,46,115,108,105,99,101,40,105,41,44,92,110,32,32,32,32,100,101,97,99,116,105,118,97,116,101,100,58,32,99,117,114,114,101,110,116,46,115,108,105,99,101,40,105,41,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,116,114,97,99,116,71,117,97,114,100,115,32,40,92,110,32,32,114,101,99,111,114,100,115,44,92,110,32,32,110,97,109,101,44,92,110,32,32,98,105,110,100,44,92,110,32,32,114,101,118,101,114,115,101,92,110,41,32,123,92,110,32,32,118,97,114,32,103,117,97,114,100,115,32,61,32,102,108,97,116,77,97,112,67,111,109,112,111,110,101,110,116,115,40,114,101,99,111,114,100,115,44,32,102,117,110,99,116,105,111,110,32,40,100,101,102,44,32,105,110,115,116,97,110,99,101,44,32,109,97,116,99,104,44,32,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,103,117,97,114,100,32,61,32,101,120,116,114,97,99,116,71,117,97,114,100,40,100,101,102,44,32,110,97,109,101,41,59,92,110,32,32,32,32,105,102,32,40,103,117,97,114,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,103,117,97,114,100,41,92,110,32,32,32,32,32,32,32,32,63,32,103,117,97,114,100,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,103,117,97,114,100,41,32,123,32,114,101,116,117,114,110,32,98,105,110,100,40,103,117,97,114,100,44,32,105,110,115,116,97,110,99,101,44,32,109,97,116,99,104,44,32,107,101,121,41,59,32,125,41,92,110,32,32,32,32,32,32,32,32,58,32,98,105,110,100,40,103,117,97,114,100,44,32,105,110,115,116,97,110,99,101,44,32,109,97,116,99,104,44,32,107,101,121,41,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,102,108,97,116,116,101,110,40,114,101,118,101,114,115,101,32,63,32,103,117,97,114,100,115,46,114,101,118,101,114,115,101,40,41,32,58,32,103,117,97,114,100,115,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,116,114,97,99,116,71,117,97,114,100,32,40,92,110,32,32,100,101,102,44,92,110,32,32,107,101,121,92,110,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,100,101,102,32,33,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,47,47,32,101,120,116,101,110,100,32,110,111,119,32,115,111,32,116,104,97,116,32,103,108,111,98,97,108,32,109,105,120,105,110,115,32,97,114,101,32,97,112,112,108,105,101,100,46,92,110,32,32,32,32,100,101,102,32,61,32,95,86,117,101,46,101,120,116,101,110,100,40,100,101,102,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,100,101,102,46,111,112,116,105,111,110,115,91,107,101,121,93,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,116,114,97,99,116,76,101,97,118,101,71,117,97,114,100,115,32,40,100,101,97,99,116,105,118,97,116,101,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,120,116,114,97,99,116,71,117,97,114,100,115,40,100,101,97,99,116,105,118,97,116,101,100,44,32,39,98,101,102,111,114,101,82,111,117,116,101,76,101,97,118,101,39,44,32,98,105,110,100,71,117,97,114,100,44,32,116,114,117,101,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,116,114,97,99,116,85,112,100,97,116,101,72,111,111,107,115,32,40,117,112,100,97,116,101,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,120,116,114,97,99,116,71,117,97,114,100,115,40,117,112,100,97,116,101,100,44,32,39,98,101,102,111,114,101,82,111,117,116,101,85,112,100,97,116,101,39,44,32,98,105,110,100,71,117,97,114,100,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,105,110,100,71,117,97,114,100,32,40,103,117,97,114,100,44,32,105,110,115,116,97,110,99,101,41,32,123,92,110,32,32,105,102,32,40,105,110,115,116,97,110,99,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,98,111,117,110,100,82,111,117,116,101,71,117,97,114,100,32,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,103,117,97,114,100,46,97,112,112,108,121,40,105,110,115,116,97,110,99,101,44,32,97,114,103,117,109,101,110,116,115,41,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,116,114,97,99,116,69,110,116,101,114,71,117,97,114,100,115,32,40,92,110,32,32,97,99,116,105,118,97,116,101,100,92,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,101,120,116,114,97,99,116,71,117,97,114,100,115,40,92,110,32,32,32,32,97,99,116,105,118,97,116,101,100,44,92,110,32,32,32,32,39,98,101,102,111,114,101,82,111,117,116,101,69,110,116,101,114,39,44,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,40,103,117,97,114,100,44,32,95,44,32,109,97,116,99,104,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,98,105,110,100,69,110,116,101,114,71,117,97,114,100,40,103,117,97,114,100,44,32,109,97,116,99,104,44,32,107,101,121,41,92,110,32,32,32,32,125,92,110,32,32,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,105,110,100,69,110,116,101,114,71,117,97,114,100,32,40,92,110,32,32,103,117,97,114,100,44,92,110,32,32,109,97,116,99,104,44,92,110,32,32,107,101,121,92,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,114,111,117,116,101,69,110,116,101,114,71,117,97,114,100,32,40,116,111,44,32,102,114,111,109,44,32,110,101,120,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,103,117,97,114,100,40,116,111,44,32,102,114,111,109,44,32,102,117,110,99,116,105,111,110,32,40,99,98,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,99,98,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,109,97,116,99,104,46,101,110,116,101,114,101,100,67,98,115,91,107,101,121,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,46,101,110,116,101,114,101,100,67,98,115,91,107,101,121,93,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,109,97,116,99,104,46,101,110,116,101,114,101,100,67,98,115,91,107,101,121,93,46,112,117,115,104,40,99,98,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,110,101,120,116,40,99,98,41,59,92,110,32,32,32,32,125,41,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,72,84,77,76,53,72,105,115,116,111,114,121,32,61,32,47,42,64,95,95,80,85,82,69,95,95,42,47,40,102,117,110,99,116,105,111,110,32,40,72,105,115,116,111,114,121,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,72,84,77,76,53,72,105,115,116,111,114,121,32,40,114,111,117,116,101,114,44,32,98,97,115,101,41,32,123,92,110,32,32,32,32,72,105,115,116,111,114,121,46,99,97,108,108,40,116,104,105,115,44,32,114,111,117,116,101,114,44,32,98,97,115,101,41,59,92,110,92,110,32,32,32,32,116,104,105,115,46,95,115,116,97,114,116,76,111,99,97,116,105,111,110,32,61,32,103,101,116,76,111,99,97,116,105,111,110,40,116,104,105,115,46,98,97,115,101,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,32,72,105,115,116,111,114,121,32,41,32,72,84,77,76,53,72,105,115,116,111,114,121,46,95,95,112,114,111,116,111,95,95,32,61,32,72,105,115,116,111,114,121,59,92,110,32,32,72,84,77,76,53,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,32,72,105,115,116,111,114,121,32,38,38,32,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,32,41,59,92,110,32,32,72,84,77,76,53,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,72,84,77,76,53,72,105,115,116,111,114,121,59,92,110,92,110,32,32,72,84,77,76,53,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,115,101,116,117,112,76,105,115,116,101,110,101,114,115,32,61,32,102,117,110,99,116,105,111,110,32,115,101,116,117,112,76,105,115,116,101,110,101,114,115,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,114,111,117,116,101,114,32,61,32,116,104,105,115,46,114,111,117,116,101,114,59,92,110,32,32,32,32,118,97,114,32,101,120,112,101,99,116,83,99,114,111,108,108,32,61,32,114,111,117,116,101,114,46,111,112,116,105,111,110,115,46,115,99,114,111,108,108,66,101,104,97,118,105,111,114,59,92,110,32,32,32,32,118,97,114,32,115,117,112,112,111,114,116,115,83,99,114,111,108,108,32,61,32,115,117,112,112,111,114,116,115,80,117,115,104,83,116,97,116,101,32,38,38,32,101,120,112,101,99,116,83,99,114,111,108,108,59,92,110,92,110,32,32,32,32,105,102,32,40,115,117,112,112,111,114,116,115,83,99,114,111,108,108,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,115,101,116,117,112,83,99,114,111,108,108,40,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,82,111,117,116,105,110,103,69,118,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,32,61,32,116,104,105,115,36,49,46,99,117,114,114,101,110,116,59,92,110,92,110,32,32,32,32,32,32,47,47,32,65,118,111,105,100,105,110,103,32,102,105,114,115,116,32,96,112,111,112,115,116,97,116,101,96,32,101,118,101,110,116,32,100,105,115,112,97,116,99,104,101,100,32,105,110,32,115,111,109,101,32,98,114,111,119,115,101,114,115,32,98,117,116,32,102,105,114,115,116,92,110,32,32,32,32,32,32,47,47,32,104,105,115,116,111,114,121,32,114,111,117,116,101,32,110,111,116,32,117,112,100,97,116,101,100,32,115,105,110,99,101,32,97,115,121,110,99,32,103,117,97,114,100,32,97,116,32,116,104,101,32,115,97,109,101,32,116,105,109,101,46,92,110,32,32,32,32,32,32,118,97,114,32,108,111,99,97,116,105,111,110,32,61,32,103,101,116,76,111,99,97,116,105,111,110,40,116,104,105,115,36,49,46,98,97,115,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,36,49,46,99,117,114,114,101,110,116,32,61,61,61,32,83,84,65,82,84,32,38,38,32,108,111,99,97,116,105,111,110,32,61,61,61,32,116,104,105,115,36,49,46,95,115,116,97,114,116,76,111,99,97,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,36,49,46,116,114,97,110,115,105,116,105,111,110,84,111,40,108,111,99,97,116,105,111,110,44,32,102,117,110,99,116,105,111,110,32,40,114,111,117,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,117,112,112,111,114,116,115,83,99,114,111,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,83,99,114,111,108,108,40,114,111,117,116,101,114,44,32,114,111,117,116,101,44,32,99,117,114,114,101,110,116,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,112,111,112,115,116,97,116,101,39,44,32,104,97,110,100,108,101,82,111,117,116,105,110,103,69,118,101,110,116,41,59,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,112,111,112,115,116,97,116,101,39,44,32,104,97,110,100,108,101,82,111,117,116,105,110,103,69,118,101,110,116,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,72,84,77,76,53,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,103,111,32,61,32,102,117,110,99,116,105,111,110,32,103,111,32,40,110,41,32,123,92,110,32,32,32,32,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,103,111,40,110,41,59,92,110,32,32,125,59,92,110,92,110,32,32,72,84,77,76,53,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,32,61,32,102,117,110,99,116,105,111,110,32,112,117,115,104,32,40,108,111,99,97,116,105,111,110,44,32,111,110,67,111,109,112,108,101,116,101,44,32,111,110,65,98,111,114,116,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,114,101,102,32,61,32,116,104,105,115,59,92,110,32,32,32,32,118,97,114,32,102,114,111,109,82,111,117,116,101,32,61,32,114,101,102,46,99,117,114,114,101,110,116,59,92,110,32,32,32,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,84,111,40,108,111,99,97,116,105,111,110,44,32,102,117,110,99,116,105,111,110,32,40,114,111,117,116,101,41,32,123,92,110,32,32,32,32,32,32,112,117,115,104,83,116,97,116,101,40,99,108,101,97,110,80,97,116,104,40,116,104,105,115,36,49,46,98,97,115,101,32,43,32,114,111,117,116,101,46,102,117,108,108,80,97,116,104,41,41,59,92,110,32,32,32,32,32,32,104,97,110,100,108,101,83,99,114,111,108,108,40,116,104,105,115,36,49,46,114,111,117,116,101,114,44,32,114,111,117,116,101,44,32,102,114,111,109,82,111,117,116,101,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,111,110,67,111,109,112,108,101,116,101,32,38,38,32,111,110,67,111,109,112,108,101,116,101,40,114,111,117,116,101,41,59,92,110,32,32,32,32,125,44,32,111,110,65,98,111,114,116,41,59,92,110,32,32,125,59,92,110,92,110,32,32,72,84,77,76,53,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,114,101,112,108,97,99,101,32,61,32,102,117,110,99,116,105,111,110,32,114,101,112,108,97,99,101,32,40,108,111,99,97,116,105,111,110,44,32,111,110,67,111,109,112,108,101,116,101,44,32,111,110,65,98,111,114,116,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,114,101,102,32,61,32,116,104,105,115,59,92,110,32,32,32,32,118,97,114,32,102,114,111,109,82,111,117,116,101,32,61,32,114,101,102,46,99,117,114,114,101,110,116,59,92,110,32,32,32,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,84,111,40,108,111,99,97,116,105,111,110,44,32,102,117,110,99,116,105,111,110,32,40,114,111,117,116,101,41,32,123,92,110,32,32,32,32,32,32,114,101,112,108,97,99,101,83,116,97,116,101,40,99,108,101,97,110,80,97,116,104,40,116,104,105,115,36,49,46,98,97,115,101,32,43,32,114,111,117,116,101,46,102,117,108,108,80,97,116,104,41,41,59,92,110,32,32,32,32,32,32,104,97,110,100,108,101,83,99,114,111,108,108,40,116,104,105,115,36,49,46,114,111,117,116,101,114,44,32,114,111,117,116,101,44,32,102,114,111,109,82,111,117,116,101,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,111,110,67,111,109,112,108,101,116,101,32,38,38,32,111,110,67,111,109,112,108,101,116,101,40,114,111,117,116,101,41,59,92,110,32,32,32,32,125,44,32,111,110,65,98,111,114,116,41,59,92,110,32,32,125,59,92,110,92,110,32,32,72,84,77,76,53,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,101,110,115,117,114,101,85,82,76,32,61,32,102,117,110,99,116,105,111,110,32,101,110,115,117,114,101,85,82,76,32,40,112,117,115,104,41,32,123,92,110,32,32,32,32,105,102,32,40,103,101,116,76,111,99,97,116,105,111,110,40,116,104,105,115,46,98,97,115,101,41,32,33,61,61,32,116,104,105,115,46,99,117,114,114,101,110,116,46,102,117,108,108,80,97,116,104,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,32,61,32,99,108,101,97,110,80,97,116,104,40,116,104,105,115,46,98,97,115,101,32,43,32,116,104,105,115,46,99,117,114,114,101,110,116,46,102,117,108,108,80,97,116,104,41,59,92,110,32,32,32,32,32,32,112,117,115,104,32,63,32,112,117,115,104,83,116,97,116,101,40,99,117,114,114,101,110,116,41,32,58,32,114,101,112,108,97,99,101,83,116,97,116,101,40,99,117,114,114,101,110,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,72,84,77,76,53,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,117,114,114,101,110,116,76,111,99,97,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,67,117,114,114,101,110,116,76,111,99,97,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,103,101,116,76,111,99,97,116,105,111,110,40,116,104,105,115,46,98,97,115,101,41,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,72,84,77,76,53,72,105,115,116,111,114,121,59,92,110,125,40,72,105,115,116,111,114,121,41,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,76,111,99,97,116,105,111,110,32,40,98,97,115,101,41,32,123,92,110,32,32,118,97,114,32,112,97,116,104,32,61,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,112,97,116,104,110,97,109,101,59,92,110,32,32,105,102,32,40,98,97,115,101,32,38,38,32,112,97,116,104,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,105,110,100,101,120,79,102,40,98,97,115,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,112,97,116,104,32,61,32,112,97,116,104,46,115,108,105,99,101,40,98,97,115,101,46,108,101,110,103,116,104,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,40,112,97,116,104,32,124,124,32,39,47,39,41,32,43,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,115,101,97,114,99,104,32,43,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,97,115,104,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,72,97,115,104,72,105,115,116,111,114,121,32,61,32,47,42,64,95,95,80,85,82,69,95,95,42,47,40,102,117,110,99,116,105,111,110,32,40,72,105,115,116,111,114,121,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,72,97,115,104,72,105,115,116,111,114,121,32,40,114,111,117,116,101,114,44,32,98,97,115,101,44,32,102,97,108,108,98,97,99,107,41,32,123,92,110,32,32,32,32,72,105,115,116,111,114,121,46,99,97,108,108,40,116,104,105,115,44,32,114,111,117,116,101,114,44,32,98,97,115,101,41,59,92,110,32,32,32,32,47,47,32,99,104,101,99,107,32,104,105,115,116,111,114,121,32,102,97,108,108,98,97,99,107,32,100,101,101,112,108,105,110,107,105,110,103,92,110,32,32,32,32,105,102,32,40,102,97,108,108,98,97,99,107,32,38,38,32,99,104,101,99,107,70,97,108,108,98,97,99,107,40,116,104,105,115,46,98,97,115,101,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,32,32,32,32,101,110,115,117,114,101,83,108,97,115,104,40,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,32,72,105,115,116,111,114,121,32,41,32,72,97,115,104,72,105,115,116,111,114,121,46,95,95,112,114,111,116,111,95,95,32,61,32,72,105,115,116,111,114,121,59,92,110,32,32,72,97,115,104,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,32,72,105,115,116,111,114,121,32,38,38,32,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,32,41,59,92,110,32,32,72,97,115,104,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,72,97,115,104,72,105,115,116,111,114,121,59,92,110,92,110,32,32,47,47,32,116,104,105,115,32,105,115,32,100,101,108,97,121,101,100,32,117,110,116,105,108,32,116,104,101,32,97,112,112,32,109,111,117,110,116,115,92,110,32,32,47,47,32,116,111,32,97,118,111,105,100,32,116,104,101,32,104,97,115,104,99,104,97,110,103,101,32,108,105,115,116,101,110,101,114,32,98,101,105,110,103,32,102,105,114,101,100,32,116,111,111,32,101,97,114,108,121,92,110,32,32,72,97,115,104,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,115,101,116,117,112,76,105,115,116,101,110,101,114,115,32,61,32,102,117,110,99,116,105,111,110,32,115,101,116,117,112,76,105,115,116,101,110,101,114,115,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,114,111,117,116,101,114,32,61,32,116,104,105,115,46,114,111,117,116,101,114,59,92,110,32,32,32,32,118,97,114,32,101,120,112,101,99,116,83,99,114,111,108,108,32,61,32,114,111,117,116,101,114,46,111,112,116,105,111,110,115,46,115,99,114,111,108,108,66,101,104,97,118,105,111,114,59,92,110,32,32,32,32,118,97,114,32,115,117,112,112,111,114,116,115,83,99,114,111,108,108,32,61,32,115,117,112,112,111,114,116,115,80,117,115,104,83,116,97,116,101,32,38,38,32,101,120,112,101,99,116,83,99,114,111,108,108,59,92,110,92,110,32,32,32,32,105,102,32,40,115,117,112,112,111,114,116,115,83,99,114,111,108,108,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,115,101,116,117,112,83,99,114,111,108,108,40,41,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,82,111,117,116,105,110,103,69,118,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,32,61,32,116,104,105,115,36,49,46,99,117,114,114,101,110,116,59,92,110,32,32,32,32,32,32,105,102,32,40,33,101,110,115,117,114,101,83,108,97,115,104,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,116,104,105,115,36,49,46,116,114,97,110,115,105,116,105,111,110,84,111,40,103,101,116,72,97,115,104,40,41,44,32,102,117,110,99,116,105,111,110,32,40,114,111,117,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,117,112,112,111,114,116,115,83,99,114,111,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,83,99,114,111,108,108,40,116,104,105,115,36,49,46,114,111,117,116,101,114,44,32,114,111,117,116,101,44,32,99,117,114,114,101,110,116,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,115,117,112,112,111,114,116,115,80,117,115,104,83,116,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,112,108,97,99,101,72,97,115,104,40,114,111,117,116,101,46,102,117,108,108,80,97,116,104,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,118,97,114,32,101,118,101,110,116,84,121,112,101,32,61,32,115,117,112,112,111,114,116,115,80,117,115,104,83,116,97,116,101,32,63,32,39,112,111,112,115,116,97,116,101,39,32,58,32,39,104,97,115,104,99,104,97,110,103,101,39,59,92,110,32,32,32,32,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,110,32,32,32,32,32,32,101,118,101,110,116,84,121,112,101,44,92,110,32,32,32,32,32,32,104,97,110,100,108,101,82,111,117,116,105,110,103,69,118,101,110,116,92,110,32,32,32,32,41,59,92,110,32,32,32,32,116,104,105,115,46,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,118,101,110,116,84,121,112,101,44,32,104,97,110,100,108,101,82,111,117,116,105,110,103,69,118,101,110,116,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,92,110,32,32,72,97,115,104,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,32,61,32,102,117,110,99,116,105,111,110,32,112,117,115,104,32,40,108,111,99,97,116,105,111,110,44,32,111,110,67,111,109,112,108,101,116,101,44,32,111,110,65,98,111,114,116,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,114,101,102,32,61,32,116,104,105,115,59,92,110,32,32,32,32,118,97,114,32,102,114,111,109,82,111,117,116,101,32,61,32,114,101,102,46,99,117,114,114,101,110,116,59,92,110,32,32,32,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,84,111,40,92,110,32,32,32,32,32,32,108,111,99,97,116,105,111,110,44,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,40,114,111,117,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,112,117,115,104,72,97,115,104,40,114,111,117,116,101,46,102,117,108,108,80,97,116,104,41,59,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,83,99,114,111,108,108,40,116,104,105,115,36,49,46,114,111,117,116,101,114,44,32,114,111,117,116,101,44,32,102,114,111,109,82,111,117,116,101,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,111,110,67,111,109,112,108,101,116,101,32,38,38,32,111,110,67,111,109,112,108,101,116,101,40,114,111,117,116,101,41,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,65,98,111,114,116,92,110,32,32,32,32,41,59,92,110,32,32,125,59,92,110,92,110,32,32,72,97,115,104,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,114,101,112,108,97,99,101,32,61,32,102,117,110,99,116,105,111,110,32,114,101,112,108,97,99,101,32,40,108,111,99,97,116,105,111,110,44,32,111,110,67,111,109,112,108,101,116,101,44,32,111,110,65,98,111,114,116,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,114,101,102,32,61,32,116,104,105,115,59,92,110,32,32,32,32,118,97,114,32,102,114,111,109,82,111,117,116,101,32,61,32,114,101,102,46,99,117,114,114,101,110,116,59,92,110,32,32,32,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,84,111,40,92,110,32,32,32,32,32,32,108,111,99,97,116,105,111,110,44,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,40,114,111,117,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,112,108,97,99,101,72,97,115,104,40,114,111,117,116,101,46,102,117,108,108,80,97,116,104,41,59,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,83,99,114,111,108,108,40,116,104,105,115,36,49,46,114,111,117,116,101,114,44,32,114,111,117,116,101,44,32,102,114,111,109,82,111,117,116,101,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,111,110,67,111,109,112,108,101,116,101,32,38,38,32,111,110,67,111,109,112,108,101,116,101,40,114,111,117,116,101,41,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,65,98,111,114,116,92,110,32,32,32,32,41,59,92,110,32,32,125,59,92,110,92,110,32,32,72,97,115,104,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,103,111,32,61,32,102,117,110,99,116,105,111,110,32,103,111,32,40,110,41,32,123,92,110,32,32,32,32,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,103,111,40,110,41,59,92,110,32,32,125,59,92,110,92,110,32,32,72,97,115,104,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,101,110,115,117,114,101,85,82,76,32,61,32,102,117,110,99,116,105,111,110,32,101,110,115,117,114,101,85,82,76,32,40,112,117,115,104,41,32,123,92,110,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,32,61,32,116,104,105,115,46,99,117,114,114,101,110,116,46,102,117,108,108,80,97,116,104,59,92,110,32,32,32,32,105,102,32,40,103,101,116,72,97,115,104,40,41,32,33,61,61,32,99,117,114,114,101,110,116,41,32,123,92,110,32,32,32,32,32,32,112,117,115,104,32,63,32,112,117,115,104,72,97,115,104,40,99,117,114,114,101,110,116,41,32,58,32,114,101,112,108,97,99,101,72,97,115,104,40,99,117,114,114,101,110,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,72,97,115,104,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,117,114,114,101,110,116,76,111,99,97,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,67,117,114,114,101,110,116,76,111,99,97,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,103,101,116,72,97,115,104,40,41,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,72,97,115,104,72,105,115,116,111,114,121,59,92,110,125,40,72,105,115,116,111,114,121,41,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,104,101,99,107,70,97,108,108,98,97,99,107,32,40,98,97,115,101,41,32,123,92,110,32,32,118,97,114,32,108,111,99,97,116,105,111,110,32,61,32,103,101,116,76,111,99,97,116,105,111,110,40,98,97,115,101,41,59,92,110,32,32,105,102,32,40,33,47,94,92,92,47,35,47,46,116,101,115,116,40,108,111,99,97,116,105,111,110,41,41,32,123,92,110,32,32,32,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,114,101,112,108,97,99,101,40,99,108,101,97,110,80,97,116,104,40,98,97,115,101,32,43,32,39,47,35,39,32,43,32,108,111,99,97,116,105,111,110,41,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,110,115,117,114,101,83,108,97,115,104,32,40,41,32,123,92,110,32,32,118,97,114,32,112,97,116,104,32,61,32,103,101,116,72,97,115,104,40,41,59,92,110,32,32,105,102,32,40,112,97,116,104,46,99,104,97,114,65,116,40,48,41,32,61,61,61,32,39,47,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,32,32,125,92,110,32,32,114,101,112,108,97,99,101,72,97,115,104,40,39,47,39,32,43,32,112,97,116,104,41,59,92,110,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,72,97,115,104,32,40,41,32,123,92,110,32,32,47,47,32,87,101,32,99,97,110,39,116,32,117,115,101,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,97,115,104,32,104,101,114,101,32,98,101,99,97,117,115,101,32,105,116,39,115,32,110,111,116,92,110,32,32,47,47,32,99,111,110,115,105,115,116,101,110,116,32,97,99,114,111,115,115,32,98,114,111,119,115,101,114,115,32,45,32,70,105,114,101,102,111,120,32,119,105,108,108,32,112,114,101,45,100,101,99,111,100,101,32,105,116,33,92,110,32,32,118,97,114,32,104,114,101,102,32,61,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,114,101,102,59,92,110,32,32,118,97,114,32,105,110,100,101,120,32,61,32,104,114,101,102,46,105,110,100,101,120,79,102,40,39,35,39,41,59,92,110,32,32,47,47,32,101,109,112,116,121,32,112,97,116,104,92,110,32,32,105,102,32,40,105,110,100,101,120,32,60,32,48,41,32,123,32,114,101,116,117,114,110,32,39,39,32,125,92,110,92,110,32,32,104,114,101,102,32,61,32,104,114,101,102,46,115,108,105,99,101,40,105,110,100,101,120,32,43,32,49,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,104,114,101,102,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,85,114,108,32,40,112,97,116,104,41,32,123,92,110,32,32,118,97,114,32,104,114,101,102,32,61,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,114,101,102,59,92,110,32,32,118,97,114,32,105,32,61,32,104,114,101,102,46,105,110,100,101,120,79,102,40,39,35,39,41,59,92,110,32,32,118,97,114,32,98,97,115,101,32,61,32,105,32,62,61,32,48,32,63,32,104,114,101,102,46,115,108,105,99,101,40,48,44,32,105,41,32,58,32,104,114,101,102,59,92,110,32,32,114,101,116,117,114,110,32,40,98,97,115,101,32,43,32,92,34,35,92,34,32,43,32,112,97,116,104,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,117,115,104,72,97,115,104,32,40,112,97,116,104,41,32,123,92,110,32,32,105,102,32,40,115,117,112,112,111,114,116,115,80,117,115,104,83,116,97,116,101,41,32,123,92,110,32,32,32,32,112,117,115,104,83,116,97,116,101,40,103,101,116,85,114,108,40,112,97,116,104,41,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,97,115,104,32,61,32,112,97,116,104,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,112,108,97,99,101,72,97,115,104,32,40,112,97,116,104,41,32,123,92,110,32,32,105,102,32,40,115,117,112,112,111,114,116,115,80,117,115,104,83,116,97,116,101,41,32,123,92,110,32,32,32,32,114,101,112,108,97,99,101,83,116,97,116,101,40,103,101,116,85,114,108,40,112,97,116,104,41,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,114,101,112,108,97,99,101,40,103,101,116,85,114,108,40,112,97,116,104,41,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,65,98,115,116,114,97,99,116,72,105,115,116,111,114,121,32,61,32,47,42,64,95,95,80,85,82,69,95,95,42,47,40,102,117,110,99,116,105,111,110,32,40,72,105,115,116,111,114,121,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,65,98,115,116,114,97,99,116,72,105,115,116,111,114,121,32,40,114,111,117,116,101,114,44,32,98,97,115,101,41,32,123,92,110,32,32,32,32,72,105,115,116,111,114,121,46,99,97,108,108,40,116,104,105,115,44,32,114,111,117,116,101,114,44,32,98,97,115,101,41,59,92,110,32,32,32,32,116,104,105,115,46,115,116,97,99,107,32,61,32,91,93,59,92,110,32,32,32,32,116,104,105,115,46,105,110,100,101,120,32,61,32,45,49,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,32,72,105,115,116,111,114,121,32,41,32,65,98,115,116,114,97,99,116,72,105,115,116,111,114,121,46,95,95,112,114,111,116,111,95,95,32,61,32,72,105,115,116,111,114,121,59,92,110,32,32,65,98,115,116,114,97,99,116,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,32,72,105,115,116,111,114,121,32,38,38,32,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,32,41,59,92,110,32,32,65,98,115,116,114,97,99,116,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,65,98,115,116,114,97,99,116,72,105,115,116,111,114,121,59,92,110,92,110,32,32,65,98,115,116,114,97,99,116,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,32,61,32,102,117,110,99,116,105,111,110,32,112,117,115,104,32,40,108,111,99,97,116,105,111,110,44,32,111,110,67,111,109,112,108,101,116,101,44,32,111,110,65,98,111,114,116,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,84,111,40,92,110,32,32,32,32,32,32,108,111,99,97,116,105,111,110,44,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,40,114,111,117,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,115,116,97,99,107,32,61,32,116,104,105,115,36,49,46,115,116,97,99,107,46,115,108,105,99,101,40,48,44,32,116,104,105,115,36,49,46,105,110,100,101,120,32,43,32,49,41,46,99,111,110,99,97,116,40,114,111,117,116,101,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,105,110,100,101,120,43,43,59,92,110,32,32,32,32,32,32,32,32,111,110,67,111,109,112,108,101,116,101,32,38,38,32,111,110,67,111,109,112,108,101,116,101,40,114,111,117,116,101,41,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,65,98,111,114,116,92,110,32,32,32,32,41,59,92,110,32,32,125,59,92,110,92,110,32,32,65,98,115,116,114,97,99,116,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,114,101,112,108,97,99,101,32,61,32,102,117,110,99,116,105,111,110,32,114,101,112,108,97,99,101,32,40,108,111,99,97,116,105,111,110,44,32,111,110,67,111,109,112,108,101,116,101,44,32,111,110,65,98,111,114,116,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,84,111,40,92,110,32,32,32,32,32,32,108,111,99,97,116,105,111,110,44,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,40,114,111,117,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,115,116,97,99,107,32,61,32,116,104,105,115,36,49,46,115,116,97,99,107,46,115,108,105,99,101,40,48,44,32,116,104,105,115,36,49,46,105,110,100,101,120,41,46,99,111,110,99,97,116,40,114,111,117,116,101,41,59,92,110,32,32,32,32,32,32,32,32,111,110,67,111,109,112,108,101,116,101,32,38,38,32,111,110,67,111,109,112,108,101,116,101,40,114,111,117,116,101,41,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,65,98,111,114,116,92,110,32,32,32,32,41,59,92,110,32,32,125,59,92,110,92,110,32,32,65,98,115,116,114,97,99,116,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,103,111,32,61,32,102,117,110,99,116,105,111,110,32,103,111,32,40,110,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,116,97,114,103,101,116,73,110,100,101,120,32,61,32,116,104,105,115,46,105,110,100,101,120,32,43,32,110,59,92,110,32,32,32,32,105,102,32,40,116,97,114,103,101,116,73,110,100,101,120,32,60,32,48,32,124,124,32,116,97,114,103,101,116,73,110,100,101,120,32,62,61,32,116,104,105,115,46,115,116,97,99,107,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,32,32,32,32,118,97,114,32,114,111,117,116,101,32,61,32,116,104,105,115,46,115,116,97,99,107,91,116,97,114,103,101,116,73,110,100,101,120,93,59,92,110,32,32,32,32,116,104,105,115,46,99,111,110,102,105,114,109,84,114,97,110,115,105,116,105,111,110,40,92,110,32,32,32,32,32,32,114,111,117,116,101,44,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,114,101,118,32,61,32,116,104,105,115,36,49,46,99,117,114,114,101,110,116,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,105,110,100,101,120,32,61,32,116,97,114,103,101,116,73,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,117,112,100,97,116,101,82,111,117,116,101,40,114,111,117,116,101,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,114,111,117,116,101,114,46,97,102,116,101,114,72,111,111,107,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,111,111,107,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,111,111,107,32,38,38,32,104,111,111,107,40,114,111,117,116,101,44,32,112,114,101,118,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,40,101,114,114,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,40,101,114,114,44,32,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,84,121,112,101,46,100,117,112,108,105,99,97,116,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,105,110,100,101,120,32,61,32,116,97,114,103,101,116,73,110,100,101,120,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,41,59,92,110,32,32,125,59,92,110,92,110,32,32,65,98,115,116,114,97,99,116,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,117,114,114,101,110,116,76,111,99,97,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,67,117,114,114,101,110,116,76,111,99,97,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,32,61,32,116,104,105,115,46,115,116,97,99,107,91,116,104,105,115,46,115,116,97,99,107,46,108,101,110,103,116,104,32,45,32,49,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,117,114,114,101,110,116,32,63,32,99,117,114,114,101,110,116,46,102,117,108,108,80,97,116,104,32,58,32,39,47,39,92,110,32,32,125,59,92,110,92,110,32,32,65,98,115,116,114,97,99,116,72,105,115,116,111,114,121,46,112,114,111,116,111,116,121,112,101,46,101,110,115,117,114,101,85,82,76,32,61,32,102,117,110,99,116,105,111,110,32,101,110,115,117,114,101,85,82,76,32,40,41,32,123,92,110,32,32,32,32,47,47,32,110,111,111,112,92,110,32,32,125,59,92,110,92,110,32,32,114,101,116,117,114,110,32,65,98,115,116,114,97,99,116,72,105,115,116,111,114,121,59,92,110,125,40,72,105,115,116,111,114,121,41,41,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,86,117,101,82,111,117,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,86,117,101,82,111,117,116,101,114,32,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,105,102,32,40,32,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,32,41,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,92,110,32,32,116,104,105,115,46,97,112,112,32,61,32,110,117,108,108,59,92,110,32,32,116,104,105,115,46,97,112,112,115,32,61,32,91,93,59,92,110,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,59,92,110,32,32,116,104,105,115,46,98,101,102,111,114,101,72,111,111,107,115,32,61,32,91,93,59,92,110,32,32,116,104,105,115,46,114,101,115,111,108,118,101,72,111,111,107,115,32,61,32,91,93,59,92,110,32,32,116,104,105,115,46,97,102,116,101,114,72,111,111,107,115,32,61,32,91,93,59,92,110,32,32,116,104,105,115,46,109,97,116,99,104,101,114,32,61,32,99,114,101,97,116,101,77,97,116,99,104,101,114,40,111,112,116,105,111,110,115,46,114,111,117,116,101,115,32,124,124,32,91,93,44,32,116,104,105,115,41,59,92,110,92,110,32,32,118,97,114,32,109,111,100,101,32,61,32,111,112,116,105,111,110,115,46,109,111,100,101,32,124,124,32,39,104,97,115,104,39,59,92,110,32,32,116,104,105,115,46,102,97,108,108,98,97,99,107,32,61,92,110,32,32,32,32,109,111,100,101,32,61,61,61,32,39,104,105,115,116,111,114,121,39,32,38,38,32,33,115,117,112,112,111,114,116,115,80,117,115,104,83,116,97,116,101,32,38,38,32,111,112,116,105,111,110,115,46,102,97,108,108,98,97,99,107,32,33,61,61,32,102,97,108,115,101,59,92,110,32,32,105,102,32,40,116,104,105,115,46,102,97,108,108,98,97,99,107,41,32,123,92,110,32,32,32,32,109,111,100,101,32,61,32,39,104,97,115,104,39,59,92,110,32,32,125,92,110,32,32,105,102,32,40,33,105,110,66,114,111,119,115,101,114,41,32,123,92,110,32,32,32,32,109,111,100,101,32,61,32,39,97,98,115,116,114,97,99,116,39,59,92,110,32,32,125,92,110,32,32,116,104,105,115,46,109,111,100,101,32,61,32,109,111,100,101,59,92,110,92,110,32,32,115,119,105,116,99,104,32,40,109,111,100,101,41,32,123,92,110,32,32,32,32,99,97,115,101,32,39,104,105,115,116,111,114,121,39,58,92,110,32,32,32,32,32,32,116,104,105,115,46,104,105,115,116,111,114,121,32,61,32,110,101,119,32,72,84,77,76,53,72,105,115,116,111,114,121,40,116,104,105,115,44,32,111,112,116,105,111,110,115,46,98,97,115,101,41,59,92,110,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,99,97,115,101,32,39,104,97,115,104,39,58,92,110,32,32,32,32,32,32,116,104,105,115,46,104,105,115,116,111,114,121,32,61,32,110,101,119,32,72,97,115,104,72,105,115,116,111,114,121,40,116,104,105,115,44,32,111,112,116,105,111,110,115,46,98,97,115,101,44,32,116,104,105,115,46,102,97,108,108,98,97,99,107,41,59,92,110,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,99,97,115,101,32,39,97,98,115,116,114,97,99,116,39,58,92,110,32,32,32,32,32,32,116,104,105,115,46,104,105,115,116,111,114,121,32,61,32,110,101,119,32,65,98,115,116,114,97,99,116,72,105,115,116,111,114,121,40,116,104,105,115,44,32,111,112,116,105,111,110,115,46,98,97,115,101,41,59,92,110,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,100,101,102,97,117,108,116,58,92,110,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,97,115,115,101,114,116,40,102,97,108,115,101,44,32,40,92,34,105,110,118,97,108,105,100,32,109,111,100,101,58,32,92,34,32,43,32,109,111,100,101,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,32,61,32,123,32,99,117,114,114,101,110,116,82,111,117,116,101,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,32,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,109,97,116,99,104,32,61,32,102,117,110,99,116,105,111,110,32,109,97,116,99,104,32,40,114,97,119,44,32,99,117,114,114,101,110,116,44,32,114,101,100,105,114,101,99,116,101,100,70,114,111,109,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,109,97,116,99,104,101,114,46,109,97,116,99,104,40,114,97,119,44,32,99,117,114,114,101,110,116,44,32,114,101,100,105,114,101,99,116,101,100,70,114,111,109,41,92,110,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,99,117,114,114,101,110,116,82,111,117,116,101,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,104,105,115,116,111,114,121,32,38,38,32,116,104,105,115,46,104,105,115,116,111,114,121,46,99,117,114,114,101,110,116,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,105,110,105,116,32,61,32,102,117,110,99,116,105,111,110,32,105,110,105,116,32,40,97,112,112,32,47,42,32,86,117,101,32,99,111,109,112,111,110,101,110,116,32,105,110,115,116,97,110,99,101,32,42,47,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,116,114,117,101,32,38,38,92,110,32,32,32,32,97,115,115,101,114,116,40,92,110,32,32,32,32,32,32,105,110,115,116,97,108,108,46,105,110,115,116,97,108,108,101,100,44,92,110,32,32,32,32,32,32,92,34,110,111,116,32,105,110,115,116,97,108,108,101,100,46,32,77,97,107,101,32,115,117,114,101,32,116,111,32,99,97,108,108,32,96,86,117,101,46,117,115,101,40,86,117,101,82,111,117,116,101,114,41,96,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,92,34,98,101,102,111,114,101,32,99,114,101,97,116,105,110,103,32,114,111,111,116,32,105,110,115,116,97,110,99,101,46,92,34,92,110,32,32,32,32,41,59,92,110,92,110,32,32,116,104,105,115,46,97,112,112,115,46,112,117,115,104,40,97,112,112,41,59,92,110,92,110,32,32,47,47,32,115,101,116,32,117,112,32,97,112,112,32,100,101,115,116,114,111,121,101,100,32,104,97,110,100,108,101,114,92,110,32,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,45,114,111,117,116,101,114,47,105,115,115,117,101,115,47,50,54,51,57,92,110,32,32,97,112,112,46,36,111,110,99,101,40,39,104,111,111,107,58,100,101,115,116,114,111,121,101,100,39,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,47,47,32,99,108,101,97,110,32,111,117,116,32,97,112,112,32,102,114,111,109,32,116,104,105,115,46,97,112,112,115,32,97,114,114,97,121,32,111,110,99,101,32,100,101,115,116,114,111,121,101,100,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,116,104,105,115,36,49,46,97,112,112,115,46,105,110,100,101,120,79,102,40,97,112,112,41,59,92,110,32,32,32,32,105,102,32,40,105,110,100,101,120,32,62,32,45,49,41,32,123,32,116,104,105,115,36,49,46,97,112,112,115,46,115,112,108,105,99,101,40,105,110,100,101,120,44,32,49,41,59,32,125,92,110,32,32,32,32,47,47,32,101,110,115,117,114,101,32,119,101,32,115,116,105,108,108,32,104,97,118,101,32,97,32,109,97,105,110,32,97,112,112,32,111,114,32,110,117,108,108,32,105,102,32,110,111,32,97,112,112,115,92,110,32,32,32,32,47,47,32,119,101,32,100,111,32,110,111,116,32,114,101,108,101,97,115,101,32,116,104,101,32,114,111,117,116,101,114,32,115,111,32,105,116,32,99,97,110,32,98,101,32,114,101,117,115,101,100,92,110,32,32,32,32,105,102,32,40,116,104,105,115,36,49,46,97,112,112,32,61,61,61,32,97,112,112,41,32,123,32,116,104,105,115,36,49,46,97,112,112,32,61,32,116,104,105,115,36,49,46,97,112,112,115,91,48,93,32,124,124,32,110,117,108,108,59,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,36,49,46,97,112,112,41,32,123,32,116,104,105,115,36,49,46,104,105,115,116,111,114,121,46,116,101,97,114,100,111,119,110,40,41,59,32,125,92,110,32,32,125,41,59,92,110,92,110,32,32,47,47,32,109,97,105,110,32,97,112,112,32,112,114,101,118,105,111,117,115,108,121,32,105,110,105,116,105,97,108,105,122,101,100,92,110,32,32,47,47,32,114,101,116,117,114,110,32,97,115,32,119,101,32,100,111,110,39,116,32,110,101,101,100,32,116,111,32,115,101,116,32,117,112,32,110,101,119,32,104,105,115,116,111,114,121,32,108,105,115,116,101,110,101,114,92,110,32,32,105,102,32,40,116,104,105,115,46,97,112,112,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,116,104,105,115,46,97,112,112,32,61,32,97,112,112,59,92,110,92,110,32,32,118,97,114,32,104,105,115,116,111,114,121,32,61,32,116,104,105,115,46,104,105,115,116,111,114,121,59,92,110,92,110,32,32,105,102,32,40,104,105,115,116,111,114,121,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,53,72,105,115,116,111,114,121,32,124,124,32,104,105,115,116,111,114,121,32,105,110,115,116,97,110,99,101,111,102,32,72,97,115,104,72,105,115,116,111,114,121,41,32,123,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,73,110,105,116,105,97,108,83,99,114,111,108,108,32,61,32,102,117,110,99,116,105,111,110,32,40,114,111,117,116,101,79,114,69,114,114,111,114,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,102,114,111,109,32,61,32,104,105,115,116,111,114,121,46,99,117,114,114,101,110,116,59,92,110,32,32,32,32,32,32,118,97,114,32,101,120,112,101,99,116,83,99,114,111,108,108,32,61,32,116,104,105,115,36,49,46,111,112,116,105,111,110,115,46,115,99,114,111,108,108,66,101,104,97,118,105,111,114,59,92,110,32,32,32,32,32,32,118,97,114,32,115,117,112,112,111,114,116,115,83,99,114,111,108,108,32,61,32,115,117,112,112,111,114,116,115,80,117,115,104,83,116,97,116,101,32,38,38,32,101,120,112,101,99,116,83,99,114,111,108,108,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,117,112,112,111,114,116,115,83,99,114,111,108,108,32,38,38,32,39,102,117,108,108,80,97,116,104,39,32,105,110,32,114,111,117,116,101,79,114,69,114,114,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,83,99,114,111,108,108,40,116,104,105,115,36,49,44,32,114,111,117,116,101,79,114,69,114,114,111,114,44,32,102,114,111,109,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,32,32,32,32,118,97,114,32,115,101,116,117,112,76,105,115,116,101,110,101,114,115,32,61,32,102,117,110,99,116,105,111,110,32,40,114,111,117,116,101,79,114,69,114,114,111,114,41,32,123,92,110,32,32,32,32,32,32,104,105,115,116,111,114,121,46,115,101,116,117,112,76,105,115,116,101,110,101,114,115,40,41,59,92,110,32,32,32,32,32,32,104,97,110,100,108,101,73,110,105,116,105,97,108,83,99,114,111,108,108,40,114,111,117,116,101,79,114,69,114,114,111,114,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,104,105,115,116,111,114,121,46,116,114,97,110,115,105,116,105,111,110,84,111,40,92,110,32,32,32,32,32,32,104,105,115,116,111,114,121,46,103,101,116,67,117,114,114,101,110,116,76,111,99,97,116,105,111,110,40,41,44,92,110,32,32,32,32,32,32,115,101,116,117,112,76,105,115,116,101,110,101,114,115,44,92,110,32,32,32,32,32,32,115,101,116,117,112,76,105,115,116,101,110,101,114,115,92,110,32,32,32,32,41,59,92,110,32,32,125,92,110,92,110,32,32,104,105,115,116,111,114,121,46,108,105,115,116,101,110,40,102,117,110,99,116,105,111,110,32,40,114,111,117,116,101,41,32,123,92,110,32,32,32,32,116,104,105,115,36,49,46,97,112,112,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,97,112,112,41,32,123,92,110,32,32,32,32,32,32,97,112,112,46,95,114,111,117,116,101,32,61,32,114,111,117,116,101,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,98,101,102,111,114,101,69,97,99,104,32,61,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,69,97,99,104,32,40,102,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,114,101,103,105,115,116,101,114,72,111,111,107,40,116,104,105,115,46,98,101,102,111,114,101,72,111,111,107,115,44,32,102,110,41,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,98,101,102,111,114,101,82,101,115,111,108,118,101,32,61,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,82,101,115,111,108,118,101,32,40,102,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,114,101,103,105,115,116,101,114,72,111,111,107,40,116,104,105,115,46,114,101,115,111,108,118,101,72,111,111,107,115,44,32,102,110,41,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,97,102,116,101,114,69,97,99,104,32,61,32,102,117,110,99,116,105,111,110,32,97,102,116,101,114,69,97,99,104,32,40,102,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,114,101,103,105,115,116,101,114,72,111,111,107,40,116,104,105,115,46,97,102,116,101,114,72,111,111,107,115,44,32,102,110,41,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,111,110,82,101,97,100,121,32,61,32,102,117,110,99,116,105,111,110,32,111,110,82,101,97,100,121,32,40,99,98,44,32,101,114,114,111,114,67,98,41,32,123,92,110,32,32,116,104,105,115,46,104,105,115,116,111,114,121,46,111,110,82,101,97,100,121,40,99,98,44,32,101,114,114,111,114,67,98,41,59,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,111,110,69,114,114,111,114,32,61,32,102,117,110,99,116,105,111,110,32,111,110,69,114,114,111,114,32,40,101,114,114,111,114,67,98,41,32,123,92,110,32,32,116,104,105,115,46,104,105,115,116,111,114,121,46,111,110,69,114,114,111,114,40,101,114,114,111,114,67,98,41,59,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,32,61,32,102,117,110,99,116,105,111,110,32,112,117,115,104,32,40,108,111,99,97,116,105,111,110,44,32,111,110,67,111,109,112,108,101,116,101,44,32,111,110,65,98,111,114,116,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,105,102,32,40,33,111,110,67,111,109,112,108,101,116,101,32,38,38,32,33,111,110,65,98,111,114,116,32,38,38,32,116,121,112,101,111,102,32,80,114,111,109,105,115,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,36,49,46,104,105,115,116,111,114,121,46,112,117,115,104,40,108,111,99,97,116,105,111,110,44,32,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,59,92,110,32,32,32,32,125,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,116,104,105,115,46,104,105,115,116,111,114,121,46,112,117,115,104,40,108,111,99,97,116,105,111,110,44,32,111,110,67,111,109,112,108,101,116,101,44,32,111,110,65,98,111,114,116,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,114,101,112,108,97,99,101,32,61,32,102,117,110,99,116,105,111,110,32,114,101,112,108,97,99,101,32,40,108,111,99,97,116,105,111,110,44,32,111,110,67,111,109,112,108,101,116,101,44,32,111,110,65,98,111,114,116,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,105,102,32,40,33,111,110,67,111,109,112,108,101,116,101,32,38,38,32,33,111,110,65,98,111,114,116,32,38,38,32,116,121,112,101,111,102,32,80,114,111,109,105,115,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,36,49,46,104,105,115,116,111,114,121,46,114,101,112,108,97,99,101,40,108,111,99,97,116,105,111,110,44,32,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,59,92,110,32,32,32,32,125,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,116,104,105,115,46,104,105,115,116,111,114,121,46,114,101,112,108,97,99,101,40,108,111,99,97,116,105,111,110,44,32,111,110,67,111,109,112,108,101,116,101,44,32,111,110,65,98,111,114,116,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,103,111,32,61,32,102,117,110,99,116,105,111,110,32,103,111,32,40,110,41,32,123,92,110,32,32,116,104,105,115,46,104,105,115,116,111,114,121,46,103,111,40,110,41,59,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,98,97,99,107,32,61,32,102,117,110,99,116,105,111,110,32,98,97,99,107,32,40,41,32,123,92,110,32,32,116,104,105,115,46,103,111,40,45,49,41,59,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,102,111,114,119,97,114,100,32,61,32,102,117,110,99,116,105,111,110,32,102,111,114,119,97,114,100,32,40,41,32,123,92,110,32,32,116,104,105,115,46,103,111,40,49,41,59,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,103,101,116,77,97,116,99,104,101,100,67,111,109,112,111,110,101,110,116,115,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,77,97,116,99,104,101,100,67,111,109,112,111,110,101,110,116,115,32,40,116,111,41,32,123,92,110,32,32,118,97,114,32,114,111,117,116,101,32,61,32,116,111,92,110,32,32,32,32,63,32,116,111,46,109,97,116,99,104,101,100,92,110,32,32,32,32,32,32,63,32,116,111,92,110,32,32,32,32,32,32,58,32,116,104,105,115,46,114,101,115,111,108,118,101,40,116,111,41,46,114,111,117,116,101,92,110,32,32,32,32,58,32,116,104,105,115,46,99,117,114,114,101,110,116,82,111,117,116,101,59,92,110,32,32,105,102,32,40,33,114,111,117,116,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,93,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,91,93,46,99,111,110,99,97,116,46,97,112,112,108,121,40,92,110,32,32,32,32,91,93,44,92,110,32,32,32,32,114,111,117,116,101,46,109,97,116,99,104,101,100,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,109,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,109,46,99,111,109,112,111,110,101,110,116,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,46,99,111,109,112,111,110,101,110,116,115,91,107,101,121,93,92,110,32,32,32,32,32,32,125,41,92,110,32,32,32,32,125,41,92,110,32,32,41,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,114,101,115,111,108,118,101,32,61,32,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,32,40,92,110,32,32,116,111,44,92,110,32,32,99,117,114,114,101,110,116,44,92,110,32,32,97,112,112,101,110,100,92,110,41,32,123,92,110,32,32,99,117,114,114,101,110,116,32,61,32,99,117,114,114,101,110,116,32,124,124,32,116,104,105,115,46,104,105,115,116,111,114,121,46,99,117,114,114,101,110,116,59,92,110,32,32,118,97,114,32,108,111,99,97,116,105,111,110,32,61,32,110,111,114,109,97,108,105,122,101,76,111,99,97,116,105,111,110,40,116,111,44,32,99,117,114,114,101,110,116,44,32,97,112,112,101,110,100,44,32,116,104,105,115,41,59,92,110,32,32,118,97,114,32,114,111,117,116,101,32,61,32,116,104,105,115,46,109,97,116,99,104,40,108,111,99,97,116,105,111,110,44,32,99,117,114,114,101,110,116,41,59,92,110,32,32,118,97,114,32,102,117,108,108,80,97,116,104,32,61,32,114,111,117,116,101,46,114,101,100,105,114,101,99,116,101,100,70,114,111,109,32,124,124,32,114,111,117,116,101,46,102,117,108,108,80,97,116,104,59,92,110,32,32,118,97,114,32,98,97,115,101,32,61,32,116,104,105,115,46,104,105,115,116,111,114,121,46,98,97,115,101,59,92,110,32,32,118,97,114,32,104,114,101,102,32,61,32,99,114,101,97,116,101,72,114,101,102,40,98,97,115,101,44,32,102,117,108,108,80,97,116,104,44,32,116,104,105,115,46,109,111,100,101,41,59,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,108,111,99,97,116,105,111,110,58,32,108,111,99,97,116,105,111,110,44,92,110,32,32,32,32,114,111,117,116,101,58,32,114,111,117,116,101,44,92,110,32,32,32,32,104,114,101,102,58,32,104,114,101,102,44,92,110,32,32,32,32,47,47,32,102,111,114,32,98,97,99,107,119,97,114,100,115,32,99,111,109,112,97,116,92,110,32,32,32,32,110,111,114,109,97,108,105,122,101,100,84,111,58,32,108,111,99,97,116,105,111,110,44,92,110,32,32,32,32,114,101,115,111,108,118,101,100,58,32,114,111,117,116,101,92,110,32,32,125,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,103,101,116,82,111,117,116,101,115,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,82,111,117,116,101,115,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,109,97,116,99,104,101,114,46,103,101,116,82,111,117,116,101,115,40,41,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,97,100,100,82,111,117,116,101,32,61,32,102,117,110,99,116,105,111,110,32,97,100,100,82,111,117,116,101,32,40,112,97,114,101,110,116,79,114,82,111,117,116,101,44,32,114,111,117,116,101,41,32,123,92,110,32,32,116,104,105,115,46,109,97,116,99,104,101,114,46,97,100,100,82,111,117,116,101,40,112,97,114,101,110,116,79,114,82,111,117,116,101,44,32,114,111,117,116,101,41,59,92,110,32,32,105,102,32,40,116,104,105,115,46,104,105,115,116,111,114,121,46,99,117,114,114,101,110,116,32,33,61,61,32,83,84,65,82,84,41,32,123,92,110,32,32,32,32,116,104,105,115,46,104,105,115,116,111,114,121,46,116,114,97,110,115,105,116,105,111,110,84,111,40,116,104,105,115,46,104,105,115,116,111,114,121,46,103,101,116,67,117,114,114,101,110,116,76,111,99,97,116,105,111,110,40,41,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,46,97,100,100,82,111,117,116,101,115,32,61,32,102,117,110,99,116,105,111,110,32,97,100,100,82,111,117,116,101,115,32,40,114,111,117,116,101,115,41,32,123,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,119,97,114,110,40,102,97,108,115,101,44,32,39,114,111,117,116,101,114,46,97,100,100,82,111,117,116,101,115,40,41,32,105,115,32,100,101,112,114,101,99,97,116,101,100,32,97,110,100,32,104,97,115,32,98,101,101,110,32,114,101,109,111,118,101,100,32,105,110,32,86,117,101,32,82,111,117,116,101,114,32,52,46,32,85,115,101,32,114,111,117,116,101,114,46,97,100,100,82,111,117,116,101,40,41,32,105,110,115,116,101,97,100,46,39,41,59,92,110,32,32,125,92,110,32,32,116,104,105,115,46,109,97,116,99,104,101,114,46,97,100,100,82,111,117,116,101,115,40,114,111,117,116,101,115,41,59,92,110,32,32,105,102,32,40,116,104,105,115,46,104,105,115,116,111,114,121,46,99,117,114,114,101,110,116,32,33,61,61,32,83,84,65,82,84,41,32,123,92,110,32,32,32,32,116,104,105,115,46,104,105,115,116,111,114,121,46,116,114,97,110,115,105,116,105,111,110,84,111,40,116,104,105,115,46,104,105,115,116,111,114,121,46,103,101,116,67,117,114,114,101,110,116,76,111,99,97,116,105,111,110,40,41,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,32,86,117,101,82,111,117,116,101,114,46,112,114,111,116,111,116,121,112,101,44,32,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,32,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,72,111,111,107,32,40,108,105,115,116,44,32,102,110,41,32,123,92,110,32,32,108,105,115,116,46,112,117,115,104,40,102,110,41,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,108,105,115,116,46,105,110,100,101,120,79,102,40,102,110,41,59,92,110,32,32,32,32,105,102,32,40,105,32,62,32,45,49,41,32,123,32,108,105,115,116,46,115,112,108,105,99,101,40,105,44,32,49,41,59,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,72,114,101,102,32,40,98,97,115,101,44,32,102,117,108,108,80,97,116,104,44,32,109,111,100,101,41,32,123,92,110,32,32,118,97,114,32,112,97,116,104,32,61,32,109,111,100,101,32,61,61,61,32,39,104,97,115,104,39,32,63,32,39,35,39,32,43,32,102,117,108,108,80,97,116,104,32,58,32,102,117,108,108,80,97,116,104,59,92,110,32,32,114,101,116,117,114,110,32,98,97,115,101,32,63,32,99,108,101,97,110,80,97,116,104,40,98,97,115,101,32,43,32,39,47,39,32,43,32,112,97,116,104,41,32,58,32,112,97,116,104,92,110,125,92,110,92,110,86,117,101,82,111,117,116,101,114,46,105,110,115,116,97,108,108,32,61,32,105,110,115,116,97,108,108,59,92,110,86,117,101,82,111,117,116,101,114,46,118,101,114,115,105,111,110,32,61,32,39,51,46,53,46,49,39,59,92,110,86,117,101,82,111,117,116,101,114,46,105,115,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,32,61,32,105,115,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,59,92,110,86,117,101,82,111,117,116,101,114,46,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,84,121,112,101,32,61,32,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,84,121,112,101,59,92,110,86,117,101,82,111,117,116,101,114,46,83,84,65,82,84,95,76,79,67,65,84,73,79,78,32,61,32,83,84,65,82,84,59,92,110,92,110,105,102,32,40,105,110,66,114,111,119,115,101,114,32,38,38,32,119,105,110,100,111,119,46,86,117,101,41,32,123,92,110,32,32,119,105,110,100,111,119,46,86,117,101,46,117,115,101,40,86,117,101,82,111,117,116,101,114,41,59,92,110,125,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,86,117,101,82,111,117,116,101,114,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,114,111,117,116,101,114,47,100,105,115,116,47,118,117,101,45,114,111,117,116,101,114,46,101,115,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,100,105,115,116,47,101,115,54,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,100,105,115,116,47,101,115,54,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,99,111,110,115,116,32,100,101,102,97,117,108,116,67,111,110,116,114,111,108,115,32,61,32,123,92,110,32,32,115,101,108,101,99,116,105,111,110,85,112,58,32,91,51,56,93,44,92,110,32,32,115,101,108,101,99,116,105,111,110,68,111,119,110,58,32,91,52,48,93,44,92,110,32,32,115,101,108,101,99,116,58,32,91,49,51,93,44,92,110,32,32,104,105,100,101,76,105,115,116,58,32,91,50,55,93,44,92,110,32,32,115,104,111,119,76,105,115,116,58,32,91,52,48,93,44,92,110,32,32,97,117,116,111,99,111,109,112,108,101,116,101,58,32,91,51,50,44,32,49,51,93,92,110,125,59,92,110,92,110,99,111,110,115,116,32,109,111,100,101,115,32,61,32,123,92,110,32,32,105,110,112,117,116,58,32,83,116,114,105,110,103,44,92,110,32,32,115,101,108,101,99,116,58,32,79,98,106,101,99,116,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,102,114,111,109,80,97,116,104,40,111,98,106,44,32,112,97,116,104,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,116,104,46,115,112,108,105,116,40,39,46,39,41,46,114,101,100,117,99,101,40,40,111,44,32,105,41,32,61,62,32,111,32,61,61,61,32,79,98,106,101,99,116,40,111,41,32,63,32,111,91,105,93,32,58,32,111,44,32,111,98,106,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,97,115,75,101,121,67,111,100,101,40,97,114,114,44,32,101,118,101,110,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,104,97,115,75,101,121,67,111,100,101,66,121,67,111,100,101,40,97,114,114,44,32,101,118,101,110,116,46,107,101,121,67,111,100,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,97,115,75,101,121,67,111,100,101,66,121,67,111,100,101,40,97,114,114,44,32,107,101,121,67,111,100,101,41,32,123,92,110,32,32,105,102,32,40,97,114,114,46,108,101,110,103,116,104,32,60,61,32,48,41,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,92,110,32,32,99,111,110,115,116,32,104,97,115,32,61,32,97,114,114,32,61,62,32,97,114,114,46,115,111,109,101,40,99,111,100,101,32,61,62,32,99,111,100,101,32,61,61,61,32,107,101,121,67,111,100,101,41,59,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,114,91,48,93,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,114,114,46,115,111,109,101,40,97,114,114,97,121,32,61,62,32,104,97,115,40,97,114,114,97,121,41,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,97,115,40,97,114,114,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,97,119,97,105,116,40,118,97,108,117,101,44,32,116,104,101,110,44,32,100,105,114,101,99,116,41,32,123,92,110,32,32,105,102,32,40,100,105,114,101,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,101,110,32,63,32,116,104,101,110,40,118,97,108,117,101,41,32,58,32,118,97,108,117,101,59,92,110,32,32,125,105,102,32,40,33,118,97,108,117,101,32,124,124,32,33,118,97,108,117,101,46,116,104,101,110,41,32,123,92,110,32,32,32,32,118,97,108,117,101,32,61,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,118,97,108,117,101,41,59,92,110,32,32,125,114,101,116,117,114,110,32,116,104,101,110,32,63,32,118,97,108,117,101,46,116,104,101,110,40,116,104,101,110,41,32,58,32,118,97,108,117,101,59,92,110,125,102,117,110,99,116,105,111,110,32,95,97,115,121,110,99,40,102,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,97,114,103,115,32,61,32,91,93,44,32,105,32,61,32,48,59,32,105,32,60,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,97,114,103,115,91,105,93,32,61,32,97,114,103,117,109,101,110,116,115,91,105,93,59,92,110,32,32,32,32,125,116,114,121,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,102,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,41,59,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,102,117,110,99,116,105,111,110,32,95,101,109,112,116,121,40,41,32,123,125,102,117,110,99,116,105,111,110,32,95,97,119,97,105,116,73,103,110,111,114,101,100,40,118,97,108,117,101,44,32,100,105,114,101,99,116,41,32,123,92,110,32,32,105,102,32,40,33,100,105,114,101,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,38,38,32,118,97,108,117,101,46,116,104,101,110,32,63,32,118,97,108,117,101,46,116,104,101,110,40,95,101,109,112,116,121,41,32,58,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,59,92,110,32,32,125,92,110,125,102,117,110,99,116,105,111,110,32,95,105,110,118,111,107,101,40,98,111,100,121,44,32,116,104,101,110,41,32,123,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,98,111,100,121,40,41,59,105,102,32,40,114,101,115,117,108,116,32,38,38,32,114,101,115,117,108,116,46,116,104,101,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,46,116,104,101,110,40,116,104,101,110,41,59,92,110,32,32,125,114,101,116,117,114,110,32,116,104,101,110,40,114,101,115,117,108,116,41,59,92,110,125,102,117,110,99,116,105,111,110,32,95,105,110,118,111,107,101,73,103,110,111,114,101,100,40,98,111,100,121,41,32,123,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,98,111,100,121,40,41,59,105,102,32,40,114,101,115,117,108,116,32,38,38,32,114,101,115,117,108,116,46,116,104,101,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,46,116,104,101,110,40,95,101,109,112,116,121,41,59,92,110,32,32,125,92,110,125,102,117,110,99,116,105,111,110,32,95,99,97,116,99,104,40,98,111,100,121,44,32,114,101,99,111,118,101,114,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,98,111,100,121,40,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,99,111,118,101,114,40,101,41,59,92,110,32,32,125,105,102,32,40,114,101,115,117,108,116,32,38,38,32,114,101,115,117,108,116,46,116,104,101,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,46,116,104,101,110,40,118,111,105,100,32,48,44,32,114,101,99,111,118,101,114,41,59,92,110,32,32,125,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,125,102,117,110,99,116,105,111,110,32,95,102,105,110,97,108,108,121,40,98,111,100,121,44,32,102,105,110,97,108,105,122,101,114,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,98,111,100,121,40,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,105,110,97,108,105,122,101,114,40,41,59,92,110,32,32,125,105,102,32,40,114,101,115,117,108,116,32,38,38,32,114,101,115,117,108,116,46,116,104,101,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,46,116,104,101,110,40,102,105,110,97,108,105,122,101,114,44,32,102,105,110,97,108,105,122,101,114,41,59,92,110,32,32,125,114,101,116,117,114,110,32,102,105,110,97,108,105,122,101,114,40,41,59,92,110,125,118,97,114,32,86,117,101,83,105,109,112,108,101,83,117,103,103,101,115,116,32,61,32,123,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,59,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,59,114,101,116,117,114,110,32,95,99,40,39,100,105,118,39,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,92,34,44,32,99,108,97,115,115,58,32,91,95,118,109,46,115,116,121,108,101,115,46,118,117,101,83,105,109,112,108,101,83,117,103,103,101,115,116,44,32,123,32,100,101,115,105,103,110,101,100,58,32,33,95,118,109,46,100,101,115,116,121,108,101,100,44,32,102,111,99,117,115,58,32,95,118,109,46,105,115,73,110,70,111,99,117,115,32,125,93,44,32,111,110,58,32,123,32,92,34,107,101,121,100,111,119,110,92,34,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,36,101,118,101,110,116,46,116,121,112,101,46,105,110,100,101,120,79,102,40,39,107,101,121,39,41,32,38,38,32,95,118,109,46,95,107,40,36,101,118,101,110,116,46,107,101,121,67,111,100,101,44,32,92,34,116,97,98,92,34,44,32,57,44,32,36,101,118,101,110,116,46,107,101,121,44,32,92,34,84,97,98,92,34,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,125,95,118,109,46,105,115,84,97,98,98,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,32,125,32,125,44,32,91,95,99,40,39,100,105,118,39,44,32,123,32,114,101,102,58,32,92,34,105,110,112,117,116,83,108,111,116,92,34,44,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,105,110,112,117,116,45,119,114,97,112,112,101,114,92,34,44,32,99,108,97,115,115,58,32,95,118,109,46,115,116,121,108,101,115,46,105,110,112,117,116,87,114,97,112,112,101,114,44,32,97,116,116,114,115,58,32,123,32,92,34,114,111,108,101,92,34,58,32,92,34,99,111,109,98,111,98,111,120,92,34,44,32,92,34,97,114,105,97,45,104,97,115,112,111,112,117,112,92,34,58,32,92,34,108,105,115,116,98,111,120,92,34,44,32,92,34,97,114,105,97,45,111,119,110,115,92,34,58,32,95,118,109,46,108,105,115,116,73,100,44,32,92,34,97,114,105,97,45,101,120,112,97,110,100,101,100,92,34,58,32,33,33,95,118,109,46,108,105,115,116,83,104,111,119,110,32,38,38,32,33,95,118,109,46,114,101,109,111,118,101,76,105,115,116,32,63,32,39,116,114,117,101,39,32,58,32,39,102,97,108,115,101,39,32,125,32,125,44,32,91,95,118,109,46,95,116,40,92,34,100,101,102,97,117,108,116,92,34,44,32,91,95,99,40,39,105,110,112,117,116,39,44,32,95,118,109,46,95,98,40,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,100,101,102,97,117,108,116,45,105,110,112,117,116,92,34,44,32,99,108,97,115,115,58,32,95,118,109,46,115,116,121,108,101,115,46,100,101,102,97,117,108,116,73,110,112,117,116,44,32,100,111,109,80,114,111,112,115,58,32,123,32,92,34,118,97,108,117,101,92,34,58,32,95,118,109,46,116,101,120,116,32,124,124,32,39,39,32,125,32,125,44,32,39,105,110,112,117,116,39,44,32,95,118,109,46,36,97,116,116,114,115,44,32,102,97,108,115,101,41,41,93,41,93,44,32,50,41,44,32,95,118,109,46,95,118,40,92,34,32,92,34,41,44,32,95,99,40,39,116,114,97,110,115,105,116,105,111,110,39,44,32,123,32,97,116,116,114,115,58,32,123,32,92,34,110,97,109,101,92,34,58,32,92,34,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,92,34,32,125,32,125,44,32,91,33,33,95,118,109,46,108,105,115,116,83,104,111,119,110,32,38,38,32,33,95,118,109,46,114,101,109,111,118,101,76,105,115,116,32,63,32,95,99,40,39,117,108,39,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,115,117,103,103,101,115,116,105,111,110,115,92,34,44,32,99,108,97,115,115,58,32,95,118,109,46,115,116,121,108,101,115,46,115,117,103,103,101,115,116,105,111,110,115,44,32,97,116,116,114,115,58,32,123,32,92,34,105,100,92,34,58,32,95,118,109,46,108,105,115,116,73,100,44,32,92,34,114,111,108,101,92,34,58,32,92,34,108,105,115,116,98,111,120,92,34,44,32,92,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,92,34,58,32,95,118,109,46,108,105,115,116,73,100,32,125,32,125,44,32,91,33,33,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,91,39,109,105,115,99,45,105,116,101,109,45,97,98,111,118,101,39,93,32,63,32,95,99,40,39,108,105,39,44,32,91,95,118,109,46,95,116,40,92,34,109,105,115,99,45,105,116,101,109,45,97,98,111,118,101,92,34,44,32,110,117,108,108,44,32,123,32,92,34,115,117,103,103,101,115,116,105,111,110,115,92,34,58,32,95,118,109,46,115,117,103,103,101,115,116,105,111,110,115,44,32,92,34,113,117,101,114,121,92,34,58,32,95,118,109,46,116,101,120,116,32,125,41,93,44,32,50,41,32,58,32,95,118,109,46,95,101,40,41,44,32,95,118,109,46,95,118,40,92,34,32,92,34,41,44,32,95,118,109,46,95,108,40,95,118,109,46,115,117,103,103,101,115,116,105,111,110,115,44,32,102,117,110,99,116,105,111,110,32,40,115,117,103,103,101,115,116,105,111,110,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,40,39,108,105,39,44,32,123,32,107,101,121,58,32,95,118,109,46,103,101,116,73,100,40,115,117,103,103,101,115,116,105,111,110,44,32,105,110,100,101,120,41,44,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,115,117,103,103,101,115,116,45,105,116,101,109,92,34,44,32,99,108,97,115,115,58,32,91,95,118,109,46,115,116,121,108,101,115,46,115,117,103,103,101,115,116,73,116,101,109,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,58,32,95,118,109,46,105,115,83,101,108,101,99,116,101,100,40,115,117,103,103,101,115,116,105,111,110,41,44,92,110,32,32,32,32,32,32,32,32,32,32,104,111,118,101,114,58,32,95,118,109,46,105,115,72,111,118,101,114,101,100,40,115,117,103,103,101,115,116,105,111,110,41,92,110,32,32,32,32,32,32,32,32,125,93,44,32,97,116,116,114,115,58,32,123,32,92,34,114,111,108,101,92,34,58,32,92,34,111,112,116,105,111,110,92,34,44,32,92,34,97,114,105,97,45,115,101,108,101,99,116,101,100,92,34,58,32,95,118,109,46,105,115,72,111,118,101,114,101,100,40,115,117,103,103,101,115,116,105,111,110,41,32,124,124,32,95,118,109,46,105,115,83,101,108,101,99,116,101,100,40,115,117,103,103,101,115,116,105,111,110,41,32,63,32,39,116,114,117,101,39,32,58,32,39,102,97,108,115,101,39,44,32,92,34,105,100,92,34,58,32,95,118,109,46,103,101,116,73,100,40,115,117,103,103,101,115,116,105,111,110,44,32,105,110,100,101,120,41,32,125,44,32,111,110,58,32,123,32,92,34,109,111,117,115,101,101,110,116,101,114,92,34,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,104,111,118,101,114,40,115,117,103,103,101,115,116,105,111,110,44,32,36,101,118,101,110,116,46,116,97,114,103,101,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,92,34,109,111,117,115,101,108,101,97,118,101,92,34,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,104,111,118,101,114,40,117,110,100,101,102,105,110,101,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,92,34,99,108,105,99,107,92,34,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,115,117,103,103,101,115,116,105,111,110,67,108,105,99,107,40,115,117,103,103,101,115,116,105,111,110,44,32,36,101,118,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,125,32,125,44,32,91,95,118,109,46,95,116,40,92,34,115,117,103,103,101,115,116,105,111,110,45,105,116,101,109,92,34,44,32,91,95,99,40,39,115,112,97,110,39,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,100,105,115,112,108,97,121,80,114,111,112,101,114,116,121,40,115,117,103,103,101,115,116,105,111,110,41,41,41,93,41,93,44,32,123,32,92,34,97,117,116,111,99,111,109,112,108,101,116,101,92,34,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,97,117,116,111,99,111,109,112,108,101,116,101,84,101,120,116,40,115,117,103,103,101,115,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,125,44,32,92,34,115,117,103,103,101,115,116,105,111,110,92,34,58,32,115,117,103,103,101,115,116,105,111,110,44,32,92,34,113,117,101,114,121,92,34,58,32,95,118,109,46,116,101,120,116,32,125,41,93,44,32,50,41,59,92,110,32,32,32,32,125,41,44,32,95,118,109,46,95,118,40,92,34,32,92,34,41,44,32,33,33,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,91,39,109,105,115,99,45,105,116,101,109,45,98,101,108,111,119,39,93,32,63,32,95,99,40,39,108,105,39,44,32,91,95,118,109,46,95,116,40,92,34,109,105,115,99,45,105,116,101,109,45,98,101,108,111,119,92,34,44,32,110,117,108,108,44,32,123,32,92,34,115,117,103,103,101,115,116,105,111,110,115,92,34,58,32,95,118,109,46,115,117,103,103,101,115,116,105,111,110,115,44,32,92,34,113,117,101,114,121,92,34,58,32,95,118,109,46,116,101,120,116,32,125,41,93,44,32,50,41,32,58,32,95,118,109,46,95,101,40,41,93,44,32,50,41,32,58,32,95,118,109,46,95,101,40,41,93,41,93,44,32,49,41,59,92,110,32,32,125,44,92,110,32,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,32,91,93,44,92,110,32,32,110,97,109,101,58,32,39,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,39,44,92,110,32,32,105,110,104,101,114,105,116,65,116,116,114,115,58,32,102,97,108,115,101,44,92,110,32,32,109,111,100,101,108,58,32,123,92,110,32,32,32,32,112,114,111,112,58,32,39,118,97,108,117,101,39,44,92,110,32,32,32,32,101,118,101,110,116,58,32,39,105,110,112,117,116,39,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,115,116,121,108,101,115,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,79,98,106,101,99,116,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,40,41,32,61,62,32,40,123,125,41,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,110,116,114,111,108,115,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,79,98,106,101,99,116,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,40,41,32,61,62,32,100,101,102,97,117,108,116,67,111,110,116,114,111,108,115,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,105,110,76,101,110,103,116,104,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,78,117,109,98,101,114,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,49,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,97,120,83,117,103,103,101,115,116,105,111,110,115,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,78,117,109,98,101,114,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,49,48,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,105,115,112,108,97,121,65,116,116,114,105,98,117,116,101,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,39,116,105,116,108,101,39,92,110,32,32,32,32,125,44,92,110,32,32,32,32,118,97,108,117,101,65,116,116,114,105,98,117,116,101,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,39,105,100,39,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,105,115,116,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,91,70,117,110,99,116,105,111,110,44,32,65,114,114,97,121,93,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,40,41,32,61,62,32,91,93,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,109,111,118,101,76,105,115,116,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,66,111,111,108,101,97,110,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,97,108,115,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,101,115,116,121,108,101,100,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,66,111,111,108,101,97,110,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,97,108,115,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,105,108,116,101,114,66,121,81,117,101,114,121,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,66,111,111,108,101,97,110,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,97,108,115,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,105,108,116,101,114,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,70,117,110,99,116,105,111,110,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,40,101,108,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,63,32,126,116,104,105,115,46,100,105,115,112,108,97,121,80,114,111,112,101,114,116,121,40,101,108,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,105,110,100,101,120,79,102,40,118,97,108,117,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,32,58,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,101,98,111,117,110,99,101,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,78,117,109,98,101,114,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,48,92,110,32,32,32,32,125,44,92,110,32,32,32,32,110,117,108,108,97,98,108,101,83,101,108,101,99,116,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,66,111,111,108,101,97,110,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,97,108,115,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,118,97,108,117,101,58,32,123,125,44,92,110,32,32,32,32,109,111,100,101,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,39,105,110,112,117,116,39,44,92,110,32,32,32,32,32,32,118,97,108,105,100,97,116,111,114,58,32,118,97,108,117,101,32,61,62,32,33,33,126,79,98,106,101,99,116,46,107,101,121,115,40,109,111,100,101,115,41,46,105,110,100,101,120,79,102,40,118,97,108,117,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,114,101,118,101,110,116,72,105,100,101,58,32,123,92,110,32,32,32,32,32,32,116,121,112,101,58,32,66,111,111,108,101,97,110,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,58,32,102,97,108,115,101,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,32,72,97,110,100,108,101,32,114,117,110,45,116,105,109,101,32,109,111,100,101,32,99,104,97,110,103,101,115,32,40,110,111,119,32,119,111,114,107,105,110,103,41,58,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,109,111,100,101,58,32,123,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,40,99,117,114,114,101,110,116,44,32,111,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,111,112,116,105,111,110,115,46,109,111,100,101,108,46,101,118,101,110,116,32,61,32,99,117,114,114,101,110,116,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,67,97,110,32,98,101,32,110,117,108,108,32,105,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105,115,32,114,111,111,116,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,112,97,114,101,110,116,32,38,38,32,116,104,105,115,46,36,112,97,114,101,110,116,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,32,61,61,61,32,39,105,110,112,117,116,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,39,105,110,112,117,116,39,44,32,116,104,105,115,46,116,101,120,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,39,115,101,108,101,99,116,39,44,32,116,104,105,115,46,115,101,108,101,99,116,101,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,105,109,109,101,100,105,97,116,101,58,32,116,114,117,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,118,97,108,117,101,58,32,123,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,40,99,117,114,114,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,99,117,114,114,101,110,116,32,33,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,32,61,32,116,104,105,115,46,100,105,115,112,108,97,121,80,114,111,112,101,114,116,121,40,99,117,114,114,101,110,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,84,101,120,116,79,117,116,115,105,100,101,40,99,117,114,114,101,110,116,41,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,105,109,109,101,100,105,97,116,101,58,32,116,114,117,101,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,47,47,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,104,111,118,101,114,101,100,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,115,117,103,103,101,115,116,105,111,110,115,58,32,91,93,44,92,110,32,32,32,32,32,32,108,105,115,116,83,104,111,119,110,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,105,110,112,117,116,69,108,101,109,101,110,116,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,99,97,110,83,101,110,100,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,116,105,109,101,111,117,116,73,110,115,116,97,110,99,101,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,118,97,108,117,101,44,92,110,32,32,32,32,32,32,105,115,80,108,97,105,110,83,117,103,103,101,115,116,105,111,110,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,105,115,67,108,105,99,107,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,105,115,73,110,70,111,99,117,115,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,105,115,70,97,108,115,101,70,111,99,117,115,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,105,115,84,97,98,98,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,99,111,110,116,114,111,108,83,99,104,101,109,101,58,32,123,125,44,92,110,32,32,32,32,32,32,108,105,115,116,73,100,58,32,96,36,123,116,104,105,115,46,95,117,105,100,125,45,115,117,103,103,101,115,116,105,111,110,115,96,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,108,105,115,116,73,115,82,101,113,117,101,115,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,104,105,115,46,108,105,115,116,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,110,112,117,116,73,115,67,111,109,112,111,110,101,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,32,38,38,32,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,33,33,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,91,48,93,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,110,112,117,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,112,117,116,73,115,67,111,109,112,111,110,101,110,116,32,63,32,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,91,48,93,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,32,58,32,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,112,117,116,73,115,67,111,109,112,111,110,101,110,116,32,63,32,39,36,111,110,39,32,58,32,39,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,102,102,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,112,117,116,73,115,67,111,109,112,111,110,101,110,116,32,63,32,39,36,111,102,102,39,32,58,32,39,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,39,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,111,118,101,114,101,100,73,110,100,101,120,40,41,32,123,92,110,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,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,101,108,32,61,32,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,91,105,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,111,118,101,114,101,100,32,38,38,32,116,104,105,115,46,118,97,108,117,101,80,114,111,112,101,114,116,121,40,116,104,105,115,46,104,111,118,101,114,101,100,41,32,61,61,32,116,104,105,115,46,118,97,108,117,101,80,114,111,112,101,114,116,121,40,101,108,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,45,49,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,101,120,116,76,101,110,103,116,104,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,116,101,120,116,32,38,38,32,116,104,105,115,46,116,101,120,116,46,108,101,110,103,116,104,32,124,124,32,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,46,118,97,108,117,101,46,108,101,110,103,116,104,32,124,124,32,48,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,83,101,108,101,99,116,101,100,85,112,84,111,68,97,116,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,33,33,116,104,105,115,46,115,101,108,101,99,116,101,100,32,38,38,32,116,104,105,115,46,100,105,115,112,108,97,121,80,114,111,112,101,114,116,121,40,116,104,105,115,46,115,101,108,101,99,116,101,100,41,32,61,61,61,32,116,104,105,115,46,116,101,120,116,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,32,61,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,32,100,101,102,97,117,108,116,67,111,110,116,114,111,108,115,44,32,116,104,105,115,46,99,111,110,116,114,111,108,115,41,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,58,32,95,97,115,121,110,99,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,99,111,110,115,116,32,95,116,104,105,115,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,95,97,119,97,105,116,40,95,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,32,61,32,95,116,104,105,115,46,36,114,101,102,115,91,39,105,110,112,117,116,83,108,111,116,39,93,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,39,105,110,112,117,116,39,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,115,101,116,73,110,112,117,116,65,114,105,97,65,116,116,114,105,98,117,116,101,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,46,112,114,101,112,97,114,101,69,118,101,110,116,72,97,110,100,108,101,114,115,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,39,78,111,32,105,110,112,117,116,32,101,108,101,109,101,110,116,32,102,111,117,110,100,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,41,44,92,110,92,110,32,32,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,112,114,101,112,97,114,101,69,118,101,110,116,72,97,110,100,108,101,114,115,40,102,97,108,115,101,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,105,115,69,113,117,97,108,40,115,117,103,103,101,115,116,105,111,110,44,32,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,32,38,38,32,116,104,105,115,46,118,97,108,117,101,80,114,111,112,101,114,116,121,40,115,117,103,103,101,115,116,105,111,110,41,32,61,61,32,116,104,105,115,46,118,97,108,117,101,80,114,111,112,101,114,116,121,40,105,116,101,109,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,83,101,108,101,99,116,101,100,40,115,117,103,103,101,115,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,69,113,117,97,108,40,115,117,103,103,101,115,116,105,111,110,44,32,116,104,105,115,46,115,101,108,101,99,116,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,72,111,118,101,114,101,100,40,115,117,103,103,101,115,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,69,113,117,97,108,40,115,117,103,103,101,115,116,105,111,110,44,32,116,104,105,115,46,104,111,118,101,114,101,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,73,110,112,117,116,65,114,105,97,65,116,116,114,105,98,117,116,101,115,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,97,114,105,97,45,97,99,116,105,118,101,100,101,115,99,101,110,100,97,110,116,39,44,32,39,39,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,97,114,105,97,45,97,117,116,111,99,111,109,112,108,101,116,101,39,44,32,39,108,105,115,116,39,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,97,114,105,97,45,99,111,110,116,114,111,108,115,39,44,32,116,104,105,115,46,108,105,115,116,73,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,114,101,112,97,114,101,69,118,101,110,116,72,97,110,100,108,101,114,115,40,101,110,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,98,105,110,100,101,114,32,61,32,116,104,105,115,91,101,110,97,98,108,101,32,63,32,39,111,110,39,32,58,32,39,111,102,102,39,93,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,107,101,121,69,118,101,110,116,115,76,105,115,116,32,61,32,123,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,116,104,105,115,46,115,104,111,119,83,117,103,103,101,115,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,107,101,121,100,111,119,110,58,32,116,104,105,115,46,111,110,75,101,121,68,111,119,110,44,92,110,32,32,32,32,32,32,32,32,107,101,121,117,112,58,32,116,104,105,115,46,111,110,76,105,115,116,75,101,121,85,112,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,101,118,101,110,116,115,76,105,115,116,32,61,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,92,110,32,32,32,32,32,32,32,32,98,108,117,114,58,32,116,104,105,115,46,111,110,66,108,117,114,44,92,110,32,32,32,32,32,32,32,32,102,111,99,117,115,58,32,116,104,105,115,46,111,110,70,111,99,117,115,44,92,110,32,32,32,32,32,32,32,32,105,110,112,117,116,58,32,116,104,105,115,46,111,110,73,110,112,117,116,92,110,32,32,32,32,32,32,125,44,32,107,101,121,69,118,101,110,116,115,76,105,115,116,41,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,99,111,110,115,116,32,101,118,101,110,116,32,105,110,32,101,118,101,110,116,115,76,105,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,110,112,117,116,91,98,105,110,100,101,114,93,40,101,118,101,110,116,44,32,101,118,101,110,116,115,76,105,115,116,91,101,118,101,110,116,93,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,99,111,110,115,116,32,108,105,115,116,101,110,101,114,66,105,110,100,101,114,32,61,32,101,110,97,98,108,101,32,63,32,39,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,39,32,58,32,39,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,39,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,99,111,110,115,116,32,101,118,101,110,116,32,105,110,32,107,101,121,69,118,101,110,116,115,76,105,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,91,108,105,115,116,101,110,101,114,66,105,110,100,101,114,93,40,101,118,101,110,116,44,32,107,101,121,69,118,101,110,116,115,76,105,115,116,91,101,118,101,110,116,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,83,99,111,112,101,100,83,108,111,116,69,109,112,116,121,40,115,108,111,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,108,111,116,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,118,78,111,100,101,32,61,32,115,108,111,116,40,116,104,105,115,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,33,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,78,111,100,101,41,32,124,124,32,118,78,111,100,101,32,38,38,32,40,118,78,111,100,101,46,116,97,103,32,124,124,32,118,78,111,100,101,46,99,111,110,116,101,120,116,32,124,124,32,118,78,111,100,101,46,116,101,120,116,32,124,124,32,118,78,111,100,101,46,99,104,105,108,100,114,101,110,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,105,115,99,83,108,111,116,115,65,114,101,69,109,112,116,121,40,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,115,108,111,116,115,32,61,32,91,39,109,105,115,99,45,105,116,101,109,45,97,98,111,118,101,39,44,32,39,109,105,115,99,45,105,116,101,109,45,98,101,108,111,119,39,93,46,109,97,112,40,115,32,61,62,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,91,115,93,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,115,108,111,116,115,46,101,118,101,114,121,40,115,32,61,62,32,33,33,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,108,111,116,115,46,101,118,101,114,121,40,116,104,105,115,46,105,115,83,99,111,112,101,100,83,108,111,116,69,109,112,116,121,46,98,105,110,100,40,116,104,105,115,41,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,99,111,110,115,116,32,115,108,111,116,32,61,32,115,108,111,116,115,46,102,105,110,100,40,115,32,61,62,32,33,33,115,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,99,111,112,101,100,83,108,111,116,69,109,112,116,121,46,99,97,108,108,40,116,104,105,115,44,32,115,108,111,116,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,80,114,111,112,101,114,116,121,66,121,65,116,116,114,105,98,117,116,101,40,111,98,106,44,32,97,116,116,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,115,80,108,97,105,110,83,117,103,103,101,115,116,105,111,110,32,63,32,111,98,106,32,58,32,116,121,112,101,111,102,32,111,98,106,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,102,114,111,109,80,97,116,104,40,111,98,106,44,32,97,116,116,114,41,32,58,32,111,98,106,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,105,115,112,108,97,121,80,114,111,112,101,114,116,121,40,111,98,106,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,80,108,97,105,110,83,117,103,103,101,115,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,108,101,116,32,100,105,115,112,108,97,121,32,61,32,116,104,105,115,46,103,101,116,80,114,111,112,101,114,116,121,66,121,65,116,116,114,105,98,117,116,101,40,111,98,106,44,32,116,104,105,115,46,100,105,115,112,108,97,121,65,116,116,114,105,98,117,116,101,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,100,105,115,112,108,97,121,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,32,61,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,111,98,106,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,112,114,111,99,101,115,115,32,38,38,32,126,92,34,100,101,118,101,108,111,112,109,101,110,116,92,34,46,105,110,100,101,120,79,102,40,39,100,101,118,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,39,91,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,93,58,32,80,108,101,97,115,101,44,32,112,114,111,118,105,100,101,32,96,100,105,115,112,108,97,121,45,97,116,116,114,105,98,117,116,101,96,32,97,115,32,97,32,107,101,121,32,111,114,32,97,32,100,111,116,116,101,100,32,112,97,116,104,32,102,111,114,32,97,32,112,114,111,112,101,114,116,121,32,102,114,111,109,32,121,111,117,114,32,111,98,106,101,99,116,46,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,100,105,115,112,108,97,121,32,124,124,32,39,39,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,118,97,108,117,101,80,114,111,112,101,114,116,121,40,111,98,106,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,80,108,97,105,110,83,117,103,103,101,115,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,98,106,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,99,111,110,115,116,32,118,97,108,117,101,32,61,32,116,104,105,115,46,103,101,116,80,114,111,112,101,114,116,121,66,121,65,116,116,114,105,98,117,116,101,40,111,98,106,44,32,116,104,105,115,46,118,97,108,117,101,65,116,116,114,105,98,117,116,101,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,96,91,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,93,58,32,80,108,101,97,115,101,44,32,99,104,101,99,107,32,105,102,32,121,111,117,32,112,97,115,115,101,100,32,39,118,97,108,117,101,45,97,116,116,114,105,98,117,116,101,39,32,40,100,101,102,97,117,108,116,32,105,115,32,39,105,100,39,41,32,97,110,100,32,39,100,105,115,112,108,97,121,45,97,116,116,114,105,98,117,116,101,39,32,40,100,101,102,97,117,108,116,32,105,115,32,39,116,105,116,108,101,39,41,32,112,114,111,112,115,32,99,111,114,114,101,99,116,108,121,46,92,110,32,32,32,32,32,32,32,32,89,111,117,114,32,108,105,115,116,32,111,98,106,101,99,116,115,32,115,104,111,117,108,100,32,97,108,119,97,121,115,32,99,111,110,116,97,105,110,32,97,32,117,110,105,113,117,101,32,105,100,101,110,116,105,102,105,101,114,46,96,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,97,117,116,111,99,111,109,112,108,101,116,101,84,101,120,116,40,115,117,103,103,101,115,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,84,101,120,116,40,116,104,105,115,46,100,105,115,112,108,97,121,80,114,111,112,101,114,116,121,40,115,117,103,103,101,115,116,105,111,110,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,84,101,120,116,40,116,101,120,116,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,46,118,97,108,117,101,32,61,32,116,101,120,116,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,101,120,116,32,61,32,116,101,120,116,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,39,105,110,112,117,116,39,44,32,116,101,120,116,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,115,101,108,101,99,116,101,100,32,33,61,61,32,105,116,101,109,32,124,124,32,116,104,105,115,46,110,117,108,108,97,98,108,101,83,101,108,101,99,116,32,38,38,32,33,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,101,100,32,61,32,105,116,101,109,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,39,115,101,108,101,99,116,39,44,32,105,116,101,109,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,97,117,116,111,99,111,109,112,108,101,116,101,84,101,120,116,40,105,116,101,109,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,104,111,118,101,114,40,110,117,108,108,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,111,118,101,114,40,105,116,101,109,44,32,101,108,101,109,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,101,108,101,109,73,100,32,61,32,33,33,105,116,101,109,32,63,32,116,104,105,115,46,103,101,116,73,100,40,105,116,101,109,44,32,116,104,105,115,46,104,111,118,101,114,101,100,73,110,100,101,120,41,32,58,32,39,39,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,97,114,105,97,45,97,99,116,105,118,101,100,101,115,99,101,110,100,97,110,116,39,44,32,101,108,101,109,73,100,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,105,116,101,109,32,38,38,32,105,116,101,109,32,33,61,61,32,116,104,105,115,46,104,111,118,101,114,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,39,104,111,118,101,114,39,44,32,105,116,101,109,44,32,101,108,101,109,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,104,111,118,101,114,101,100,32,61,32,105,116,101,109,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,105,100,101,76,105,115,116,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,105,115,116,83,104,111,119,110,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,105,115,116,83,104,111,119,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,111,118,101,114,40,110,117,108,108,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,39,104,105,100,101,45,108,105,115,116,39,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,104,111,119,76,105,115,116,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,108,105,115,116,83,104,111,119,110,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,116,101,120,116,76,101,110,103,116,104,32,62,61,32,116,104,105,115,46,109,105,110,76,101,110,103,116,104,32,38,38,32,40,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,32,62,32,48,32,124,124,32,33,116,104,105,115,46,109,105,115,99,83,108,111,116,115,65,114,101,69,109,112,116,121,40,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,105,115,116,83,104,111,119,110,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,39,115,104,111,119,45,108,105,115,116,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,104,111,119,83,117,103,103,101,115,116,105,111,110,115,58,32,95,97,115,121,110,99,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,95,116,104,105,115,50,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,105,110,118,111,107,101,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,50,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,32,61,61,61,32,48,32,38,38,32,95,116,104,105,115,50,46,109,105,110,76,101,110,103,116,104,32,60,61,32,95,116,104,105,115,50,46,116,101,120,116,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,116,114,121,32,115,104,111,119,32,109,105,115,99,32,115,108,111,116,115,32,119,104,105,108,101,32,114,101,115,101,97,114,99,104,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,115,104,111,119,76,105,115,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,97,119,97,105,116,73,103,110,111,114,101,100,40,95,116,104,105,115,50,46,114,101,115,101,97,114,99,104,40,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,50,46,115,104,111,119,76,105,115,116,40,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,44,92,110,92,110,32,32,32,32,111,110,83,104,111,119,76,105,115,116,40,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,75,101,121,67,111,100,101,40,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,115,104,111,119,76,105,115,116,44,32,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,83,117,103,103,101,115,116,105,111,110,115,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,111,118,101,83,101,108,101,99,116,105,111,110,40,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,108,105,115,116,83,104,111,119,110,32,124,124,32,33,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,41,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,75,101,121,67,111,100,101,40,91,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,115,101,108,101,99,116,105,111,110,85,112,44,32,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,115,101,108,101,99,116,105,111,110,68,111,119,110,93,44,32,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,105,115,77,111,118,105,110,103,68,111,119,110,32,61,32,104,97,115,75,101,121,67,111,100,101,40,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,115,101,108,101,99,116,105,111,110,68,111,119,110,44,32,101,41,59,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,105,114,101,99,116,105,111,110,32,61,32,105,115,77,111,118,105,110,103,68,111,119,110,32,42,32,50,32,45,32,49,59,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,108,105,115,116,69,100,103,101,32,61,32,105,115,77,111,118,105,110,103,68,111,119,110,32,63,32,48,32,58,32,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,104,111,118,101,114,115,66,101,116,119,101,101,110,69,100,103,101,115,32,61,32,105,115,77,111,118,105,110,103,68,111,119,110,32,63,32,116,104,105,115,46,104,111,118,101,114,101,100,73,110,100,101,120,32,60,32,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,32,45,32,49,32,58,32,116,104,105,115,46,104,111,118,101,114,101,100,73,110,100,101,120,32,62,32,48,59,92,110,92,110,32,32,32,32,32,32,32,32,108,101,116,32,105,116,101,109,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,104,111,118,101,114,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,32,61,32,116,104,105,115,46,115,101,108,101,99,116,101,100,32,124,124,32,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,91,108,105,115,116,69,100,103,101,93,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,111,118,101,114,115,66,101,116,119,101,101,110,69,100,103,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,32,61,32,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,91,116,104,105,115,46,104,111,118,101,114,101,100,73,110,100,101,120,32,43,32,100,105,114,101,99,116,105,111,110,93,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,47,42,32,105,102,32,104,111,118,101,114,115,32,111,110,32,101,100,103,101,32,42,47,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,116,101,109,32,61,32,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,91,108,105,115,116,69,100,103,101,93,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,111,118,101,114,40,105,116,101,109,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,75,101,121,68,111,119,110,40,101,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,115,101,108,101,99,116,32,61,32,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,115,101,108,101,99,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,105,100,101,76,105,115,116,32,61,32,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,104,105,100,101,76,105,115,116,59,92,110,92,110,32,32,32,32,32,32,47,47,32,112,114,101,118,101,110,116,32,102,111,114,109,32,115,117,98,109,105,116,32,111,110,32,107,101,121,100,111,119,110,32,105,102,32,69,110,116,101,114,32,107,101,121,32,114,101,103,105,115,116,101,114,101,100,32,105,110,32,116,104,101,32,107,101,121,117,112,32,108,105,115,116,92,110,32,32,32,32,32,32,105,102,32,40,101,46,107,101,121,32,61,61,61,32,39,69,110,116,101,114,39,32,38,38,32,116,104,105,115,46,108,105,115,116,83,104,111,119,110,32,38,38,32,104,97,115,75,101,121,67,111,100,101,66,121,67,111,100,101,40,91,115,101,108,101,99,116,44,32,104,105,100,101,76,105,115,116,93,44,32,49,51,41,41,32,123,92,110,32,32,32,32,32,32,32,32,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,101,46,107,101,121,32,61,61,61,32,39,84,97,98,39,32,38,38,32,116,104,105,115,46,104,111,118,101,114,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,40,116,104,105,115,46,104,111,118,101,114,101,100,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,111,110,83,104,111,119,76,105,115,116,40,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,109,111,118,101,83,101,108,101,99,116,105,111,110,40,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,111,110,65,117,116,111,99,111,109,112,108,101,116,101,40,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,76,105,115,116,75,101,121,85,112,40,101,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,115,101,108,101,99,116,32,61,32,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,115,101,108,101,99,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,105,100,101,76,105,115,116,32,61,32,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,104,105,100,101,76,105,115,116,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,105,115,116,83,104,111,119,110,32,38,38,32,104,97,115,75,101,121,67,111,100,101,40,91,115,101,108,101,99,116,44,32,104,105,100,101,76,105,115,116,93,44,32,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,104,97,115,75,101,121,67,111,100,101,40,115,101,108,101,99,116,44,32,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,40,116,104,105,115,46,104,111,118,101,114,101,100,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,76,105,115,116,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,65,117,116,111,99,111,109,112,108,101,116,101,40,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,104,97,115,75,101,121,67,111,100,101,40,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,97,117,116,111,99,111,109,112,108,101,116,101,44,32,101,41,32,38,38,32,40,101,46,99,116,114,108,75,101,121,32,124,124,32,101,46,115,104,105,102,116,75,101,121,41,32,38,38,32,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,91,48,93,32,38,38,32,116,104,105,115,46,108,105,115,116,83,104,111,119,110,41,32,123,92,110,32,32,32,32,32,32,32,32,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,111,118,101,114,40,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,91,48,93,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,117,116,111,99,111,109,112,108,101,116,101,84,101,120,116,40,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,91,48,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,117,103,103,101,115,116,105,111,110,67,108,105,99,107,40,115,117,103,103,101,115,116,105,111,110,44,32,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,39,115,117,103,103,101,115,116,105,111,110,45,99,108,105,99,107,39,44,32,115,117,103,103,101,115,116,105,111,110,44,32,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,108,101,99,116,40,115,117,103,103,101,115,116,105,111,110,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,112,114,101,118,101,110,116,72,105,100,101,41,32,116,104,105,115,46,104,105,100,101,76,105,115,116,40,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,67,108,105,99,107,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,46,102,111,99,117,115,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,47,47,47,32,69,110,115,117,114,101,44,32,116,104,97,116,32,97,108,108,32,110,101,101,100,101,100,32,102,108,97,103,115,32,97,114,101,32,111,102,102,32,98,101,102,111,114,101,32,102,105,110,105,115,104,105,110,103,32,116,104,101,32,99,108,105,99,107,46,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,67,108,105,99,107,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,44,32,48,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,66,108,117,114,40,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,73,110,70,111,99,117,115,41,32,123,92,110,92,110,32,32,32,32,32,32,32,32,47,47,47,32,67,108,105,99,107,105,110,103,32,115,116,97,114,116,115,32,104,101,114,101,44,32,98,101,99,97,117,115,101,32,105,110,112,117,116,39,115,32,98,108,117,114,32,111,99,99,117,114,115,32,98,101,102,111,114,101,32,116,104,101,32,115,117,103,103,101,115,116,105,111,110,67,108,105,99,107,92,110,32,32,32,32,32,32,32,32,47,47,47,32,97,110,100,32,101,120,97,99,116,108,121,32,119,104,101,110,32,116,104,101,32,117,115,101,114,32,99,108,105,99,107,115,32,116,104,101,32,109,111,117,115,101,32,98,117,116,116,111,110,32,111,114,32,116,97,112,115,32,116,104,101,32,115,99,114,101,101,110,46,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,67,108,105,99,107,105,110,103,32,61,32,116,104,105,115,46,104,111,118,101,114,101,100,32,38,38,32,33,116,104,105,115,46,105,115,84,97,98,98,101,100,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,67,108,105,99,107,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,73,110,70,111,99,117,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,76,105,115,116,40,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,39,98,108,117,114,39,44,32,101,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,101,32,38,38,32,101,46,105,115,84,114,117,115,116,101,100,32,38,38,32,33,116,104,105,115,46,105,115,84,97,98,98,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,70,97,108,115,101,70,111,99,117,115,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,46,98,108,117,114,40,41,59,92,110,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,96,84,104,105,115,32,115,104,111,117,108,100,32,110,101,118,101,114,32,104,97,112,112,101,110,33,92,110,32,32,32,32,32,32,32,32,32,32,73,102,32,121,111,117,32,101,110,99,111,117,110,116,101,114,101,100,32,116,104,105,115,32,101,114,114,111,114,44,32,112,108,101,97,115,101,32,109,97,107,101,32,115,117,114,101,32,116,104,97,116,32,121,111,117,114,32,105,110,112,117,116,32,99,111,109,112,111,110,101,110,116,32,101,109,105,116,115,32,39,102,111,99,117,115,39,32,101,118,101,110,116,115,32,112,114,111,112,101,114,108,121,46,92,110,32,32,32,32,32,32,32,32,32,32,70,111,114,32,109,111,114,101,32,105,110,102,111,32,115,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,75,97,122,97,110,69,120,112,114,101,115,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,35,99,117,115,116,111,109,45,105,110,112,117,116,46,92,110,92,110,32,32,32,32,32,32,32,32,32,32,73,102,32,121,111,117,114,32,39,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,39,32,115,101,116,117,112,32,100,111,101,115,32,110,111,116,32,105,110,99,108,117,100,101,32,97,32,99,117,115,116,111,109,32,105,110,112,117,116,32,99,111,109,112,111,110,101,110,116,32,45,32,112,108,101,97,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,112,111,114,116,32,116,111,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,75,97,122,97,110,69,120,112,114,101,115,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,105,115,115,117,101,115,47,110,101,119,96,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,84,97,98,98,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,70,111,99,117,115,40,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,73,110,70,111,99,117,115,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,47,47,32,79,110,108,121,32,101,109,105,116,44,32,105,102,32,105,116,32,119,97,115,32,97,32,110,97,116,105,118,101,32,105,110,112,117,116,32,102,111,99,117,115,92,110,32,32,32,32,32,32,105,102,32,40,101,32,38,38,32,33,116,104,105,115,46,105,115,70,97,108,115,101,70,111,99,117,115,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,39,102,111,99,117,115,39,44,32,101,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,83,104,111,119,32,108,105,115,116,32,111,110,108,121,32,105,102,32,116,104,101,32,105,116,101,109,32,104,97,115,32,110,111,116,32,98,101,101,110,32,99,108,105,99,107,101,100,32,40,105,115,70,97,108,115,101,70,111,99,117,115,32,105,110,100,105,99,97,116,101,115,32,116,104,97,116,32,99,108,105,99,107,32,119,97,115,32,109,97,100,101,32,101,97,114,108,105,101,114,41,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,67,108,105,99,107,105,110,103,32,38,38,32,33,116,104,105,115,46,105,115,70,97,108,115,101,70,111,99,117,115,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,83,117,103,103,101,115,116,105,111,110,115,40,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,105,115,70,97,108,115,101,70,111,99,117,115,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,73,110,112,117,116,40,105,110,112,117,116,69,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,118,97,108,117,101,32,61,32,33,105,110,112,117,116,69,118,101,110,116,46,116,97,114,103,101,116,32,63,32,105,110,112,117,116,69,118,101,110,116,32,58,32,105,110,112,117,116,69,118,101,110,116,46,116,97,114,103,101,116,46,118,97,108,117,101,59,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,84,101,120,116,79,117,116,115,105,100,101,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,39,105,110,112,117,116,39,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,112,100,97,116,101,84,101,120,116,79,117,116,115,105,100,101,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,116,101,120,116,32,61,61,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,116,104,105,115,46,116,101,120,116,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,111,118,101,114,101,100,41,32,116,104,105,115,46,104,111,118,101,114,40,110,117,108,108,41,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,116,101,120,116,46,108,101,110,103,116,104,32,60,32,116,104,105,115,46,109,105,110,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,104,105,100,101,76,105,115,116,40,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,101,98,111,117,110,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,116,105,109,101,111,117,116,73,110,115,116,97,110,99,101,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,105,109,101,111,117,116,73,110,115,116,97,110,99,101,32,61,32,115,101,116,84,105,109,101,111,117,116,40,116,104,105,115,46,114,101,115,101,97,114,99,104,44,32,116,104,105,115,46,100,101,98,111,117,110,99,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,114,101,115,101,97,114,99,104,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,115,101,97,114,99,104,58,32,95,97,115,121,110,99,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,95,116,104,105,115,51,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,102,105,110,97,108,108,121,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,97,116,99,104,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,105,110,118,111,107,101,73,103,110,111,114,101,100,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,51,46,99,97,110,83,101,110,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,99,97,110,83,101,110,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,64,84,79,68,79,58,32,102,105,120,32,119,104,101,110,32,112,114,111,109,105,115,101,115,32,119,105,108,108,32,98,101,32,99,97,110,99,101,108,97,98,108,101,32,40,110,101,118,101,114,32,58,68,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,116,101,120,116,66,101,102,111,114,101,82,101,113,117,101,115,116,32,61,32,95,116,104,105,115,51,46,116,101,120,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,97,119,97,105,116,40,95,116,104,105,115,51,46,103,101,116,83,117,103,103,101,115,116,105,111,110,115,40,95,116,104,105,115,51,46,116,101,120,116,41,44,32,102,117,110,99,116,105,111,110,32,40,110,101,119,76,105,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,101,120,116,66,101,102,111,114,101,82,101,113,117,101,115,116,32,61,61,61,32,95,116,104,105,115,51,46,116,101,120,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,36,115,101,116,40,95,116,104,105,115,51,44,32,39,115,117,103,103,101,115,116,105,111,110,115,39,44,32,110,101,119,76,105,115,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,99,108,101,97,114,83,117,103,103,101,115,116,105,111,110,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,101,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,99,97,110,83,101,110,100,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,51,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,32,61,61,61,32,48,32,38,38,32,95,116,104,105,115,51,46,109,105,115,99,83,108,111,116,115,65,114,101,69,109,112,116,121,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,104,105,100,101,76,105,115,116,40,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,95,116,104,105,115,51,46,105,115,73,110,70,111,99,117,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,51,46,115,104,111,119,76,105,115,116,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,116,104,105,115,51,46,115,117,103,103,101,115,116,105,111,110,115,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,44,92,110,32,32,32,32,103,101,116,83,117,103,103,101,115,116,105,111,110,115,58,32,95,97,115,121,110,99,40,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,95,116,104,105,115,52,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,118,97,108,117,101,32,124,124,32,39,39,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,46,108,101,110,103,116,104,32,60,32,95,116,104,105,115,52,46,109,105,110,76,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,95,116,104,105,115,52,46,115,101,108,101,99,116,101,100,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,47,47,32,83,116,97,114,116,32,114,101,113,117,101,115,116,32,105,102,32,99,97,110,92,110,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,52,46,108,105,115,116,73,115,82,101,113,117,101,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,36,101,109,105,116,40,39,114,101,113,117,101,115,116,45,115,116,97,114,116,39,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,108,101,116,32,110,101,120,116,73,115,80,108,97,105,110,83,117,103,103,101,115,116,105,111,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,108,101,116,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,102,105,110,97,108,108,121,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,97,116,99,104,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,105,110,118,111,107,101,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,52,46,108,105,115,116,73,115,82,101,113,117,101,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,97,119,97,105,116,40,95,116,104,105,115,52,46,108,105,115,116,40,118,97,108,117,101,41,44,32,102,117,110,99,116,105,111,110,32,40,95,116,104,105,115,52,36,108,105,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,95,116,104,105,115,52,36,108,105,115,116,32,124,124,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,95,116,104,105,115,52,46,108,105,115,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,73,70,70,32,116,104,101,32,114,101,115,117,108,116,32,105,115,32,110,111,116,32,97,110,32,97,114,114,97,121,32,40,106,117,115,116,32,105,110,32,99,97,115,101,33,41,32,45,32,109,97,107,101,32,105,116,32,97,110,32,97,114,114,97,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,101,115,117,108,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,91,114,101,115,117,108,116,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,73,115,80,108,97,105,110,83,117,103,103,101,115,116,105,111,110,32,61,32,116,121,112,101,111,102,32,114,101,115,117,108,116,91,48,93,32,33,61,61,32,39,111,98,106,101,99,116,39,32,38,38,32,116,121,112,101,111,102,32,114,101,115,117,108,116,91,48,93,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,124,124,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,101,115,117,108,116,91,48,93,41,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,52,46,102,105,108,116,101,114,66,121,81,117,101,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,114,101,115,117,108,116,46,102,105,108,116,101,114,40,101,108,32,61,62,32,95,116,104,105,115,52,46,102,105,108,116,101,114,40,101,108,44,32,118,97,108,117,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,52,46,108,105,115,116,73,115,82,101,113,117,101,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,36,101,109,105,116,40,39,114,101,113,117,101,115,116,45,100,111,110,101,39,44,32,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,52,46,108,105,115,116,73,115,82,101,113,117,101,115,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,36,101,109,105,116,40,39,114,101,113,117,101,115,116,45,102,97,105,108,101,100,39,44,32,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,114,111,119,32,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,95,116,104,105,115,52,46,109,97,120,83,117,103,103,101,115,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,115,112,108,105,99,101,40,95,116,104,105,115,52,46,109,97,120,83,117,103,103,101,115,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,95,116,104,105,115,52,46,105,115,80,108,97,105,110,83,117,103,103,101,115,116,105,111,110,32,61,32,110,101,120,116,73,115,80,108,97,105,110,83,117,103,103,101,115,116,105,111,110,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,44,92,110,92,110,32,32,32,32,99,108,101,97,114,83,117,103,103,101,115,116,105,111,110,115,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,46,115,112,108,105,99,101,40,48,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,73,100,40,118,97,108,117,101,44,32,105,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,96,36,123,116,104,105,115,46,108,105,115,116,73,100,125,45,115,117,103,103,101,115,116,105,111,110,45,36,123,116,104,105,115,46,105,115,80,108,97,105,110,83,117,103,103,101,115,116,105,111,110,32,63,32,105,32,58,32,116,104,105,115,46,118,97,108,117,101,80,114,111,112,101,114,116,121,40,118,97,108,117,101,41,32,124,124,32,105,125,96,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,86,117,101,83,105,109,112,108,101,83,117,103,103,101,115,116,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,100,105,115,116,47,101,115,54,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,100,105,115,116,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,109,105,110,46,99,115,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,100,105,115,116,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,109,105,110,46,99,115,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,109,105,110,46,99,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,100,105,115,116,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,109,105,110,46,99,115,115,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,55,53,102,57,100,102,50,56,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,100,105,115,116,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,109,105,110,46,99,115,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,47,100,105,115,116,47,99,115,115,47,98,111,111,116,115,116,114,97,112,46,109,105,110,46,99,115,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,47,100,105,115,116,47,99,115,115,47,98,111,111,116,115,116,114,97,112,46,109,105,110,46,99,115,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,46,47,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,98,111,111,116,115,116,114,97,112,46,109,105,110,46,99,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,47,100,105,115,116,47,99,115,115,47,98,111,111,116,115,116,114,97,112,46,109,105,110,46,99,115,115,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,46,46,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,53,52,49,55,101,54,102,57,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,47,100,105,115,116,47,99,115,115,47,98,111,111,116,115,116,114,97,112,46,109,105,110,46,99,115,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,108,105,103,104,116,46,109,105,110,46,99,115,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,108,105,103,104,116,46,109,105,110,46,99,115,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,105,110,115,112,105,114,101,45,116,114,101,101,45,108,105,103,104,116,46,109,105,110,46,99,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,108,105,103,104,116,46,109,105,110,46,99,115,115,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,50,100,50,55,52,54,49,50,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,108,105,103,104,116,46,109,105,110,46,99,115,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,99,115,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,99,115,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,117,105,115,108,105,100,101,114,46,99,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,99,115,115,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,50,51,51,51,57,101,98,55,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,99,115,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,100,105,115,116,47,115,116,121,108,101,115,46,99,115,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,100,105,115,116,47,115,116,121,108,101,115,46,99,115,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,46,47,46,46,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,115,116,121,108,101,115,46,99,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,52,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,100,105,115,116,47,115,116,121,108,101,115,46,99,115,115,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,49,101,101,48,52,53,54,57,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,100,105,115,116,47,115,116,121,108,101,115,46,99,115,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,108,105,115,116,84,111,83,116,121,108,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,108,105,115,116,84,111,83,116,121,108,101,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,108,105,115,116,84,111,83,116,121,108,101,115,46,106,115,92,34,41,59,92,110,47,42,92,110,32,32,77,73,84,32,76,105,99,101,110,115,101,32,104,116,116,112,58,47,47,119,119,119,46,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,109,105,116,45,108,105,99,101,110,115,101,46,112,104,112,92,110,32,32,65,117,116,104,111,114,32,84,111,98,105,97,115,32,75,111,112,112,101,114,115,32,64,115,111,107,114,97,92,110,32,32,77,111,100,105,102,105,101,100,32,98,121,32,69,118,97,110,32,89,111,117,32,64,121,121,120,57,57,48,56,48,51,92,110,42,47,92,110,92,110,92,110,92,110,118,97,114,32,104,97,115,68,111,99,117,109,101,110,116,32,61,32,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,92,110,92,110,105,102,32,40,116,121,112,101,111,102,32,68,69,66,85,71,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,68,69,66,85,71,41,32,123,92,110,32,32,105,102,32,40,33,104,97,115,68,111,99,117,109,101,110,116,41,32,123,92,110,32,32,32,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,92,110,32,32,32,32,39,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,32,99,97,110,110,111,116,32,98,101,32,117,115,101,100,32,105,110,32,97,32,110,111,110,45,98,114,111,119,115,101,114,32,101,110,118,105,114,111,110,109,101,110,116,46,32,39,32,43,92,110,32,32,32,32,92,34,85,115,101,32,123,32,116,97,114,103,101,116,58,32,39,110,111,100,101,39,32,125,32,105,110,32,121,111,117,114,32,87,101,98,112,97,99,107,32,99,111,110,102,105,103,32,116,111,32,105,110,100,105,99,97,116,101,32,97,32,115,101,114,118,101,114,45,114,101,110,100,101,114,105,110,103,32,101,110,118,105,114,111,110,109,101,110,116,46,92,34,92,110,32,32,41,32,125,92,110,125,92,110,92,110,47,42,92,110,116,121,112,101,32,83,116,121,108,101,79,98,106,101,99,116,32,61,32,123,92,110,32,32,105,100,58,32,110,117,109,98,101,114,59,92,110,32,32,112,97,114,116,115,58,32,65,114,114,97,121,60,83,116,121,108,101,79,98,106,101,99,116,80,97,114,116,62,92,110,125,92,110,92,110,116,121,112,101,32,83,116,121,108,101,79,98,106,101,99,116,80,97,114,116,32,61,32,123,92,110,32,32,99,115,115,58,32,115,116,114,105,110,103,59,92,110,32,32,109,101,100,105,97,58,32,115,116,114,105,110,103,59,92,110,32,32,115,111,117,114,99,101,77,97,112,58,32,63,115,116,114,105,110,103,92,110,125,92,110,42,47,92,110,92,110,118,97,114,32,115,116,121,108,101,115,73,110,68,111,109,32,61,32,123,47,42,92,110,32,32,91,105,100,58,32,110,117,109,98,101,114,93,58,32,123,92,110,32,32,32,32,105,100,58,32,110,117,109,98,101,114,44,92,110,32,32,32,32,114,101,102,115,58,32,110,117,109,98,101,114,44,92,110,32,32,32,32,112,97,114,116,115,58,32,65,114,114,97,121,60,40,111,98,106,63,58,32,83,116,121,108,101,79,98,106,101,99,116,80,97,114,116,41,32,61,62,32,118,111,105,100,62,92,110,32,32,125,92,110,42,47,125,92,110,92,110,118,97,114,32,104,101,97,100,32,61,32,104,97,115,68,111,99,117,109,101,110,116,32,38,38,32,40,100,111,99,117,109,101,110,116,46,104,101,97,100,32,124,124,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,39,104,101,97,100,39,41,91,48,93,41,92,110,118,97,114,32,115,105,110,103,108,101,116,111,110,69,108,101,109,101,110,116,32,61,32,110,117,108,108,92,110,118,97,114,32,115,105,110,103,108,101,116,111,110,67,111,117,110,116,101,114,32,61,32,48,92,110,118,97,114,32,105,115,80,114,111,100,117,99,116,105,111,110,32,61,32,102,97,108,115,101,92,110,118,97,114,32,110,111,111,112,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,125,92,110,118,97,114,32,111,112,116,105,111,110,115,32,61,32,110,117,108,108,92,110,118,97,114,32,115,115,114,73,100,75,101,121,32,61,32,39,100,97,116,97,45,118,117,101,45,115,115,114,45,105,100,39,92,110,92,110,47,47,32,70,111,114,99,101,32,115,105,110,103,108,101,45,116,97,103,32,115,111,108,117,116,105,111,110,32,111,110,32,73,69,54,45,57,44,32,119,104,105,99,104,32,104,97,115,32,97,32,104,97,114,100,32,108,105,109,105,116,32,111,110,32,116,104,101,32,35,32,111,102,32,60,115,116,121,108,101,62,92,110,47,47,32,116,97,103,115,32,105,116,32,119,105,108,108,32,97,108,108,111,119,32,111,110,32,97,32,112,97,103,101,92,110,118,97,114,32,105,115,79,108,100,73,69,32,61,32,116,121,112,101,111,102,32,110,97,118,105,103,97,116,111,114,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,47,109,115,105,101,32,91,54,45,57,93,92,92,98,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,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,92,110,92,110,102,117,110,99,116,105,111,110,32,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,32,40,112,97,114,101,110,116,73,100,44,32,108,105,115,116,44,32,95,105,115,80,114,111,100,117,99,116,105,111,110,44,32,95,111,112,116,105,111,110,115,41,32,123,92,110,32,32,105,115,80,114,111,100,117,99,116,105,111,110,32,61,32,95,105,115,80,114,111,100,117,99,116,105,111,110,92,110,92,110,32,32,111,112,116,105,111,110,115,32,61,32,95,111,112,116,105,111,110,115,32,124,124,32,123,125,92,110,92,110,32,32,118,97,114,32,115,116,121,108,101,115,32,61,32,40,48,44,95,108,105,115,116,84,111,83,116,121,108,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,112,97,114,101,110,116,73,100,44,32,108,105,115,116,41,92,110,32,32,97,100,100,83,116,121,108,101,115,84,111,68,111,109,40,115,116,121,108,101,115,41,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,32,40,110,101,119,76,105,115,116,41,32,123,92,110,32,32,32,32,118,97,114,32,109,97,121,82,101,109,111,118,101,32,61,32,91,93,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,115,116,121,108,101,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,115,116,121,108,101,115,91,105,93,92,110,32,32,32,32,32,32,118,97,114,32,100,111,109,83,116,121,108,101,32,61,32,115,116,121,108,101,115,73,110,68,111,109,91,105,116,101,109,46,105,100,93,92,110,32,32,32,32,32,32,100,111,109,83,116,121,108,101,46,114,101,102,115,45,45,92,110,32,32,32,32,32,32,109,97,121,82,101,109,111,118,101,46,112,117,115,104,40,100,111,109,83,116,121,108,101,41,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,110,101,119,76,105,115,116,41,32,123,92,110,32,32,32,32,32,32,115,116,121,108,101,115,32,61,32,40,48,44,95,108,105,115,116,84,111,83,116,121,108,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,112,97,114,101,110,116,73,100,44,32,110,101,119,76,105,115,116,41,92,110,32,32,32,32,32,32,97,100,100,83,116,121,108,101,115,84,111,68,111,109,40,115,116,121,108,101,115,41,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,115,116,121,108,101,115,32,61,32,91,93,92,110,32,32,32,32,125,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,109,97,121,82,101,109,111,118,101,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,111,109,83,116,121,108,101,32,61,32,109,97,121,82,101,109,111,118,101,91,105,93,92,110,32,32,32,32,32,32,105,102,32,40,100,111,109,83,116,121,108,101,46,114,101,102,115,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,59,32,106,32,60,32,100,111,109,83,116,121,108,101,46,112,97,114,116,115,46,108,101,110,103,116,104,59,32,106,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,111,109,83,116,121,108,101,46,112,97,114,116,115,91,106,93,40,41,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,115,116,121,108,101,115,73,110,68,111,109,91,100,111,109,83,116,121,108,101,46,105,100,93,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,100,100,83,116,121,108,101,115,84,111,68,111,109,32,40,115,116,121,108,101,115,32,47,42,32,65,114,114,97,121,60,83,116,121,108,101,79,98,106,101,99,116,62,32,42,47,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,115,116,121,108,101,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,115,116,121,108,101,115,91,105,93,92,110,32,32,32,32,118,97,114,32,100,111,109,83,116,121,108,101,32,61,32,115,116,121,108,101,115,73,110,68,111,109,91,105,116,101,109,46,105,100,93,92,110,32,32,32,32,105,102,32,40,100,111,109,83,116,121,108,101,41,32,123,92,110,32,32,32,32,32,32,100,111,109,83,116,121,108,101,46,114,101,102,115,43,43,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,59,32,106,32,60,32,100,111,109,83,116,121,108,101,46,112,97,114,116,115,46,108,101,110,103,116,104,59,32,106,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,100,111,109,83,116,121,108,101,46,112,97,114,116,115,91,106,93,40,105,116,101,109,46,112,97,114,116,115,91,106,93,41,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,102,111,114,32,40,59,32,106,32,60,32,105,116,101,109,46,112,97,114,116,115,46,108,101,110,103,116,104,59,32,106,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,100,111,109,83,116,121,108,101,46,112,97,114,116,115,46,112,117,115,104,40,97,100,100,83,116,121,108,101,40,105,116,101,109,46,112,97,114,116,115,91,106,93,41,41,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,100,111,109,83,116,121,108,101,46,112,97,114,116,115,46,108,101,110,103,116,104,32,62,32,105,116,101,109,46,112,97,114,116,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,100,111,109,83,116,121,108,101,46,112,97,114,116,115,46,108,101,110,103,116,104,32,61,32,105,116,101,109,46,112,97,114,116,115,46,108,101,110,103,116,104,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,97,114,116,115,32,61,32,91,93,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,106,32,61,32,48,59,32,106,32,60,32,105,116,101,109,46,112,97,114,116,115,46,108,101,110,103,116,104,59,32,106,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,112,97,114,116,115,46,112,117,115,104,40,97,100,100,83,116,121,108,101,40,105,116,101,109,46,112,97,114,116,115,91,106,93,41,41,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,115,116,121,108,101,115,73,110,68,111,109,91,105,116,101,109,46,105,100,93,32,61,32,123,32,105,100,58,32,105,116,101,109,46,105,100,44,32,114,101,102,115,58,32,49,44,32,112,97,114,116,115,58,32,112,97,114,116,115,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,83,116,121,108,101,69,108,101,109,101,110,116,32,40,41,32,123,92,110,32,32,118,97,114,32,115,116,121,108,101,69,108,101,109,101,110,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,39,115,116,121,108,101,39,41,92,110,32,32,115,116,121,108,101,69,108,101,109,101,110,116,46,116,121,112,101,32,61,32,39,116,101,120,116,47,99,115,115,39,92,110,32,32,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,115,116,121,108,101,69,108,101,109,101,110,116,41,92,110,32,32,114,101,116,117,114,110,32,115,116,121,108,101,69,108,101,109,101,110,116,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,100,100,83,116,121,108,101,32,40,111,98,106,32,47,42,32,83,116,121,108,101,79,98,106,101,99,116,80,97,114,116,32,42,47,41,32,123,92,110,32,32,118,97,114,32,117,112,100,97,116,101,44,32,114,101,109,111,118,101,92,110,32,32,118,97,114,32,115,116,121,108,101,69,108,101,109,101,110,116,32,61,32,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,39,115,116,121,108,101,91,39,32,43,32,115,115,114,73,100,75,101,121,32,43,32,39,126,61,92,34,39,32,43,32,111,98,106,46,105,100,32,43,32,39,92,34,93,39,41,92,110,92,110,32,32,105,102,32,40,115,116,121,108,101,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,80,114,111,100,117,99,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,47,47,32,104,97,115,32,83,83,82,32,115,116,121,108,101,115,32,97,110,100,32,105,110,32,112,114,111,100,117,99,116,105,111,110,32,109,111,100,101,46,92,110,32,32,32,32,32,32,47,47,32,115,105,109,112,108,121,32,100,111,32,110,111,116,104,105,110,103,46,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,111,112,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,104,97,115,32,83,83,82,32,115,116,121,108,101,115,32,98,117,116,32,105,110,32,100,101,118,32,109,111,100,101,46,92,110,32,32,32,32,32,32,47,47,32,102,111,114,32,115,111,109,101,32,114,101,97,115,111,110,32,67,104,114,111,109,101,32,99,97,110,39,116,32,104,97,110,100,108,101,32,115,111,117,114,99,101,32,109,97,112,32,105,110,32,115,101,114,118,101,114,45,114,101,110,100,101,114,101,100,92,110,32,32,32,32,32,32,47,47,32,115,116,121,108,101,32,116,97,103,115,32,45,32,115,111,117,114,99,101,32,109,97,112,115,32,105,110,32,60,115,116,121,108,101,62,32,111,110,108,121,32,119,111,114,107,115,32,105,102,32,116,104,101,32,115,116,121,108,101,32,116,97,103,32,105,115,92,110,32,32,32,32,32,32,47,47,32,99,114,101,97,116,101,100,32,97,110,100,32,105,110,115,101,114,116,101,100,32,100,121,110,97,109,105,99,97,108,108,121,46,32,83,111,32,119,101,32,114,101,109,111,118,101,32,116,104,101,32,115,101,114,118,101,114,32,114,101,110,100,101,114,101,100,92,110,32,32,32,32,32,32,47,47,32,115,116,121,108,101,115,32,97,110,100,32,105,110,106,101,99,116,32,110,101,119,32,111,110,101,115,46,92,110,32,32,32,32,32,32,115,116,121,108,101,69,108,101,109,101,110,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,115,116,121,108,101,69,108,101,109,101,110,116,41,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,105,115,79,108,100,73,69,41,32,123,92,110,32,32,32,32,47,47,32,117,115,101,32,115,105,110,103,108,101,116,111,110,32,109,111,100,101,32,102,111,114,32,73,69,57,46,92,110,32,32,32,32,118,97,114,32,115,116,121,108,101,73,110,100,101,120,32,61,32,115,105,110,103,108,101,116,111,110,67,111,117,110,116,101,114,43,43,92,110,32,32,32,32,115,116,121,108,101,69,108,101,109,101,110,116,32,61,32,115,105,110,103,108,101,116,111,110,69,108,101,109,101,110,116,32,124,124,32,40,115,105,110,103,108,101,116,111,110,69,108,101,109,101,110,116,32,61,32,99,114,101,97,116,101,83,116,121,108,101,69,108,101,109,101,110,116,40,41,41,92,110,32,32,32,32,117,112,100,97,116,101,32,61,32,97,112,112,108,121,84,111,83,105,110,103,108,101,116,111,110,84,97,103,46,98,105,110,100,40,110,117,108,108,44,32,115,116,121,108,101,69,108,101,109,101,110,116,44,32,115,116,121,108,101,73,110,100,101,120,44,32,102,97,108,115,101,41,92,110,32,32,32,32,114,101,109,111,118,101,32,61,32,97,112,112,108,121,84,111,83,105,110,103,108,101,116,111,110,84,97,103,46,98,105,110,100,40,110,117,108,108,44,32,115,116,121,108,101,69,108,101,109,101,110,116,44,32,115,116,121,108,101,73,110,100,101,120,44,32,116,114,117,101,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,47,32,117,115,101,32,109,117,108,116,105,45,115,116,121,108,101,45,116,97,103,32,109,111,100,101,32,105,110,32,97,108,108,32,111,116,104,101,114,32,99,97,115,101,115,92,110,32,32,32,32,115,116,121,108,101,69,108,101,109,101,110,116,32,61,32,99,114,101,97,116,101,83,116,121,108,101,69,108,101,109,101,110,116,40,41,92,110,32,32,32,32,117,112,100,97,116,101,32,61,32,97,112,112,108,121,84,111,84,97,103,46,98,105,110,100,40,110,117,108,108,44,32,115,116,121,108,101,69,108,101,109,101,110,116,41,92,110,32,32,32,32,114,101,109,111,118,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,115,116,121,108,101,69,108,101,109,101,110,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,115,116,121,108,101,69,108,101,109,101,110,116,41,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,117,112,100,97,116,101,40,111,98,106,41,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,83,116,121,108,101,32,40,110,101,119,79,98,106,32,47,42,32,83,116,121,108,101,79,98,106,101,99,116,80,97,114,116,32,42,47,41,32,123,92,110,32,32,32,32,105,102,32,40,110,101,119,79,98,106,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,79,98,106,46,99,115,115,32,61,61,61,32,111,98,106,46,99,115,115,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,110,101,119,79,98,106,46,109,101,100,105,97,32,61,61,61,32,111,98,106,46,109,101,100,105,97,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,110,101,119,79,98,106,46,115,111,117,114,99,101,77,97,112,32,61,61,61,32,111,98,106,46,115,111,117,114,99,101,77,97,112,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,117,112,100,97,116,101,40,111,98,106,32,61,32,110,101,119,79,98,106,41,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,109,111,118,101,40,41,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,114,101,112,108,97,99,101,84,101,120,116,32,61,32,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,116,101,120,116,83,116,111,114,101,32,61,32,91,93,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,105,110,100,101,120,44,32,114,101,112,108,97,99,101,109,101,110,116,41,32,123,92,110,32,32,32,32,116,101,120,116,83,116,111,114,101,91,105,110,100,101,120,93,32,61,32,114,101,112,108,97,99,101,109,101,110,116,92,110,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,83,116,111,114,101,46,102,105,108,116,101,114,40,66,111,111,108,101,97,110,41,46,106,111,105,110,40,39,92,92,110,39,41,92,110,32,32,125,92,110,125,41,40,41,92,110,92,110,102,117,110,99,116,105,111,110,32,97,112,112,108,121,84,111,83,105,110,103,108,101,116,111,110,84,97,103,32,40,115,116,121,108,101,69,108,101,109,101,110,116,44,32,105,110,100,101,120,44,32,114,101,109,111,118,101,44,32,111,98,106,41,32,123,92,110,32,32,118,97,114,32,99,115,115,32,61,32,114,101,109,111,118,101,32,63,32,39,39,32,58,32,111,98,106,46,99,115,115,92,110,92,110,32,32,105,102,32,40,115,116,121,108,101,69,108,101,109,101,110,116,46,115,116,121,108,101,83,104,101,101,116,41,32,123,92,110,32,32,32,32,115,116,121,108,101,69,108,101,109,101,110,116,46,115,116,121,108,101,83,104,101,101,116,46,99,115,115,84,101,120,116,32,61,32,114,101,112,108,97,99,101,84,101,120,116,40,105,110,100,101,120,44,32,99,115,115,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,118,97,114,32,99,115,115,78,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,99,115,115,41,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,78,111,100,101,115,32,61,32,115,116,121,108,101,69,108,101,109,101,110,116,46,99,104,105,108,100,78,111,100,101,115,92,110,32,32,32,32,105,102,32,40,99,104,105,108,100,78,111,100,101,115,91,105,110,100,101,120,93,41,32,115,116,121,108,101,69,108,101,109,101,110,116,46,114,101,109,111,118,101,67,104,105,108,100,40,99,104,105,108,100,78,111,100,101,115,91,105,110,100,101,120,93,41,92,110,32,32,32,32,105,102,32,40,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,115,116,121,108,101,69,108,101,109,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,99,115,115,78,111,100,101,44,32,99,104,105,108,100,78,111,100,101,115,91,105,110,100,101,120,93,41,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,115,116,121,108,101,69,108,101,109,101,110,116,46,97,112,112,101,110,100,67,104,105,108,100,40,99,115,115,78,111,100,101,41,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,112,112,108,121,84,111,84,97,103,32,40,115,116,121,108,101,69,108,101,109,101,110,116,44,32,111,98,106,41,32,123,92,110,32,32,118,97,114,32,99,115,115,32,61,32,111,98,106,46,99,115,115,92,110,32,32,118,97,114,32,109,101,100,105,97,32,61,32,111,98,106,46,109,101,100,105,97,92,110,32,32,118,97,114,32,115,111,117,114,99,101,77,97,112,32,61,32,111,98,106,46,115,111,117,114,99,101,77,97,112,92,110,92,110,32,32,105,102,32,40,109,101,100,105,97,41,32,123,92,110,32,32,32,32,115,116,121,108,101,69,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,109,101,100,105,97,39,44,32,109,101,100,105,97,41,92,110,32,32,125,92,110,32,32,105,102,32,40,111,112,116,105,111,110,115,46,115,115,114,73,100,41,32,123,92,110,32,32,32,32,115,116,121,108,101,69,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,115,115,114,73,100,75,101,121,44,32,111,98,106,46,105,100,41,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,115,111,117,114,99,101,77,97,112,41,32,123,92,110,32,32,32,32,47,47,32,104,116,116,112,115,58,47,47,100,101,118,101,108,111,112,101,114,46,99,104,114,111,109,101,46,99,111,109,47,100,101,118,116,111,111,108,115,47,100,111,99,115,47,106,97,118,97,115,99,114,105,112,116,45,100,101,98,117,103,103,105,110,103,92,110,32,32,32,32,47,47,32,116,104,105,115,32,109,97,107,101,115,32,115,111,117,114,99,101,32,109,97,112,115,32,105,110,115,105,100,101,32,115,116,121,108,101,32,116,97,103,115,32,119,111,114,107,32,112,114,111,112,101,114,108,121,32,105,110,32,67,104,114,111,109,101,92,110,32,32,32,32,99,115,115,32,43,61,32,39,92,92,110,47,42,35,32,115,111,117,114,99,101,85,82,76,61,39,32,43,32,115,111,117,114,99,101,77,97,112,46,115,111,117,114,99,101,115,91,48,93,32,43,32,39,32,42,47,39,92,110,32,32,32,32,47,47,32,104,116,116,112,58,47,47,115,116,97,99,107,111,118,101,114,102,108,111,119,46,99,111,109,47,97,47,50,54,54,48,51,56,55,53,92,110,32,32,32,32,99,115,115,32,43,61,32,39,92,92,110,47,42,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,100,97,116,97,58,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,59,98,97,115,101,54,52,44,39,32,43,32,98,116,111,97,40,117,110,101,115,99,97,112,101,40,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,115,111,117,114,99,101,77,97,112,41,41,41,41,32,43,32,39,32,42,47,39,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,115,116,121,108,101,69,108,101,109,101,110,116,46,115,116,121,108,101,83,104,101,101,116,41,32,123,92,110,32,32,32,32,115,116,121,108,101,69,108,101,109,101,110,116,46,115,116,121,108,101,83,104,101,101,116,46,99,115,115,84,101,120,116,32,61,32,99,115,115,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,115,116,121,108,101,69,108,101,109,101,110,116,46,102,105,114,115,116,67,104,105,108,100,41,32,123,92,110,32,32,32,32,32,32,115,116,121,108,101,69,108,101,109,101,110,116,46,114,101,109,111,118,101,67,104,105,108,100,40,115,116,121,108,101,69,108,101,109,101,110,116,46,102,105,114,115,116,67,104,105,108,100,41,92,110,32,32,32,32,125,92,110,32,32,32,32,115,116,121,108,101,69,108,101,109,101,110,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,99,115,115,41,41,92,110,32,32,125,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,108,105,115,116,84,111,83,116,121,108,101,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,108,105,115,116,84,111,83,116,121,108,101,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,102,97,117,108,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,105,115,116,84,111,83,116,121,108,101,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,42,92,110,32,42,32,84,114,97,110,115,108,97,116,101,115,32,116,104,101,32,108,105,115,116,32,102,111,114,109,97,116,32,112,114,111,100,117,99,101,100,32,98,121,32,99,115,115,45,108,111,97,100,101,114,32,105,110,116,111,32,115,111,109,101,116,104,105,110,103,92,110,32,42,32,101,97,115,105,101,114,32,116,111,32,109,97,110,105,112,117,108,97,116,101,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,108,105,115,116,84,111,83,116,121,108,101,115,32,40,112,97,114,101,110,116,73,100,44,32,108,105,115,116,41,32,123,92,110,32,32,118,97,114,32,115,116,121,108,101,115,32,61,32,91,93,92,110,32,32,118,97,114,32,110,101,119,83,116,121,108,101,115,32,61,32,123,125,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,105,115,116,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,105,116,101,109,32,61,32,108,105,115,116,91,105,93,92,110,32,32,32,32,118,97,114,32,105,100,32,61,32,105,116,101,109,91,48,93,92,110,32,32,32,32,118,97,114,32,99,115,115,32,61,32,105,116,101,109,91,49,93,92,110,32,32,32,32,118,97,114,32,109,101,100,105,97,32,61,32,105,116,101,109,91,50,93,92,110,32,32,32,32,118,97,114,32,115,111,117,114,99,101,77,97,112,32,61,32,105,116,101,109,91,51,93,92,110,32,32,32,32,118,97,114,32,112,97,114,116,32,61,32,123,92,110,32,32,32,32,32,32,105,100,58,32,112,97,114,101,110,116,73,100,32,43,32,39,58,39,32,43,32,105,44,92,110,32,32,32,32,32,32,99,115,115,58,32,99,115,115,44,92,110,32,32,32,32,32,32,109,101,100,105,97,58,32,109,101,100,105,97,44,92,110,32,32,32,32,32,32,115,111,117,114,99,101,77,97,112,58,32,115,111,117,114,99,101,77,97,112,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,33,110,101,119,83,116,121,108,101,115,91,105,100,93,41,32,123,92,110,32,32,32,32,32,32,115,116,121,108,101,115,46,112,117,115,104,40,110,101,119,83,116,121,108,101,115,91,105,100,93,32,61,32,123,32,105,100,58,32,105,100,44,32,112,97,114,116,115,58,32,91,112,97,114,116,93,32,125,41,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,110,101,119,83,116,121,108,101,115,91,105,100,93,46,112,97,114,116,115,46,112,117,115,104,40,112,97,114,116,41,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,115,116,121,108,101,115,92,110,125,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,108,105,115,116,84,111,83,116,121,108,101,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,33,92,110,32,42,32,86,117,101,46,106,115,32,118,50,46,54,46,49,50,92,110,32,42,32,40,99,41,32,50,48,49,52,45,50,48,50,48,32,69,118,97,110,32,89,111,117,92,110,32,42,32,82,101,108,101,97,115,101,100,32,117,110,100,101,114,32,116,104,101,32,77,73,84,32,76,105,99,101,110,115,101,46,92,110,32,42,47,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,101,109,112,116,121,79,98,106,101,99,116,32,61,32,79,98,106,101,99,116,46,102,114,101,101,122,101,40,123,125,41,59,92,110,92,110,47,47,32,84,104,101,115,101,32,104,101,108,112,101,114,115,32,112,114,111,100,117,99,101,32,98,101,116,116,101,114,32,86,77,32,99,111,100,101,32,105,110,32,74,83,32,101,110,103,105,110,101,115,32,100,117,101,32,116,111,32,116,104,101,105,114,92,110,47,47,32,101,120,112,108,105,99,105,116,110,101,115,115,32,97,110,100,32,102,117,110,99,116,105,111,110,32,105,110,108,105,110,105,110,103,46,92,110,102,117,110,99,116,105,111,110,32,105,115,85,110,100,101,102,32,40,118,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,32,118,32,61,61,61,32,110,117,108,108,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,68,101,102,32,40,118,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,32,118,32,33,61,61,32,110,117,108,108,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,84,114,117,101,32,40,118,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,32,61,61,61,32,116,114,117,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,70,97,108,115,101,32,40,118,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,32,61,61,61,32,102,97,108,115,101,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,67,104,101,99,107,32,105,102,32,118,97,108,117,101,32,105,115,32,112,114,105,109,105,116,105,118,101,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,80,114,105,109,105,116,105,118,101,32,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,92,110,32,32,32,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,39,115,116,114,105,110,103,39,32,124,124,92,110,32,32,32,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,39,110,117,109,98,101,114,39,32,124,124,92,110,32,32,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,32,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,39,115,121,109,98,111,108,39,32,124,124,92,110,32,32,32,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,39,98,111,111,108,101,97,110,39,92,110,32,32,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,81,117,105,99,107,32,111,98,106,101,99,116,32,99,104,101,99,107,32,45,32,116,104,105,115,32,105,115,32,112,114,105,109,97,114,105,108,121,32,117,115,101,100,32,116,111,32,116,101,108,108,92,110,32,42,32,79,98,106,101,99,116,115,32,102,114,111,109,32,112,114,105,109,105,116,105,118,101,32,118,97,108,117,101,115,32,119,104,101,110,32,119,101,32,107,110,111,119,32,116,104,101,32,118,97,108,117,101,92,110,32,42,32,105,115,32,97,32,74,83,79,78,45,99,111,109,112,108,105,97,110,116,32,116,121,112,101,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,79,98,106,101,99,116,32,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,111,98,106,32,33,61,61,32,110,117,108,108,32,38,38,32,116,121,112,101,111,102,32,111,98,106,32,61,61,61,32,39,111,98,106,101,99,116,39,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,32,116,104,101,32,114,97,119,32,116,121,112,101,32,115,116,114,105,110,103,32,111,102,32,97,32,118,97,108,117,101,44,32,101,46,103,46,44,32,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,46,92,110,32,42,47,92,110,118,97,114,32,95,116,111,83,116,114,105,110,103,32,61,32,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,59,92,110,92,110,102,117,110,99,116,105,111,110,32,116,111,82,97,119,84,121,112,101,32,40,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,116,111,83,116,114,105,110,103,46,99,97,108,108,40,118,97,108,117,101,41,46,115,108,105,99,101,40,56,44,32,45,49,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,83,116,114,105,99,116,32,111,98,106,101,99,116,32,116,121,112,101,32,99,104,101,99,107,46,32,79,110,108,121,32,114,101,116,117,114,110,115,32,116,114,117,101,92,110,32,42,32,102,111,114,32,112,108,97,105,110,32,74,97,118,97,83,99,114,105,112,116,32,111,98,106,101,99,116,115,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,80,108,97,105,110,79,98,106,101,99,116,32,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,116,111,83,116,114,105,110,103,46,99,97,108,108,40,111,98,106,41,32,61,61,61,32,39,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,39,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,82,101,103,69,120,112,32,40,118,41,32,123,92,110,32,32,114,101,116,117,114,110,32,95,116,111,83,116,114,105,110,103,46,99,97,108,108,40,118,41,32,61,61,61,32,39,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,39,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,67,104,101,99,107,32,105,102,32,118,97,108,32,105,115,32,97,32,118,97,108,105,100,32,97,114,114,97,121,32,105,110,100,101,120,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,86,97,108,105,100,65,114,114,97,121,73,110,100,101,120,32,40,118,97,108,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,112,97,114,115,101,70,108,111,97,116,40,83,116,114,105,110,103,40,118,97,108,41,41,59,92,110,32,32,114,101,116,117,114,110,32,110,32,62,61,32,48,32,38,38,32,77,97,116,104,46,102,108,111,111,114,40,110,41,32,61,61,61,32,110,32,38,38,32,105,115,70,105,110,105,116,101,40,118,97,108,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,80,114,111,109,105,115,101,32,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,92,110,32,32,32,32,105,115,68,101,102,40,118,97,108,41,32,38,38,92,110,32,32,32,32,116,121,112,101,111,102,32,118,97,108,46,116,104,101,110,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,92,110,32,32,32,32,116,121,112,101,111,102,32,118,97,108,46,99,97,116,99,104,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,32,32,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,67,111,110,118,101,114,116,32,97,32,118,97,108,117,101,32,116,111,32,97,32,115,116,114,105,110,103,32,116,104,97,116,32,105,115,32,97,99,116,117,97,108,108,121,32,114,101,110,100,101,114,101,100,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,116,111,83,116,114,105,110,103,32,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,32,61,61,32,110,117,108,108,92,110,32,32,32,32,63,32,39,39,92,110,32,32,32,32,58,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,41,32,124,124,32,40,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,41,32,38,38,32,118,97,108,46,116,111,83,116,114,105,110,103,32,61,61,61,32,95,116,111,83,116,114,105,110,103,41,92,110,32,32,32,32,32,32,63,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,118,97,108,44,32,110,117,108,108,44,32,50,41,92,110,32,32,32,32,32,32,58,32,83,116,114,105,110,103,40,118,97,108,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,67,111,110,118,101,114,116,32,97,110,32,105,110,112,117,116,32,118,97,108,117,101,32,116,111,32,97,32,110,117,109,98,101,114,32,102,111,114,32,112,101,114,115,105,115,116,101,110,99,101,46,92,110,32,42,32,73,102,32,116,104,101,32,99,111,110,118,101,114,115,105,111,110,32,102,97,105,108,115,44,32,114,101,116,117,114,110,32,111,114,105,103,105,110,97,108,32,115,116,114,105,110,103,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,116,111,78,117,109,98,101,114,32,40,118,97,108,41,32,123,92,110,32,32,118,97,114,32,110,32,61,32,112,97,114,115,101,70,108,111,97,116,40,118,97,108,41,59,92,110,32,32,114,101,116,117,114,110,32,105,115,78,97,78,40,110,41,32,63,32,118,97,108,32,58,32,110,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,77,97,107,101,32,97,32,109,97,112,32,97,110,100,32,114,101,116,117,114,110,32,97,32,102,117,110,99,116,105,111,110,32,102,111,114,32,99,104,101,99,107,105,110,103,32,105,102,32,97,32,107,101,121,92,110,32,42,32,105,115,32,105,110,32,116,104,97,116,32,109,97,112,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,109,97,107,101,77,97,112,32,40,92,110,32,32,115,116,114,44,92,110,32,32,101,120,112,101,99,116,115,76,111,119,101,114,67,97,115,101,92,110,41,32,123,92,110,32,32,118,97,114,32,109,97,112,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,118,97,114,32,108,105,115,116,32,61,32,115,116,114,46,115,112,108,105,116,40,39,44,39,41,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,108,105,115,116,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,109,97,112,91,108,105,115,116,91,105,93,93,32,61,32,116,114,117,101,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,101,120,112,101,99,116,115,76,111,119,101,114,67,97,115,101,92,110,32,32,32,32,63,32,102,117,110,99,116,105,111,110,32,40,118,97,108,41,32,123,32,114,101,116,117,114,110,32,109,97,112,91,118,97,108,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,59,32,125,92,110,32,32,32,32,58,32,102,117,110,99,116,105,111,110,32,40,118,97,108,41,32,123,32,114,101,116,117,114,110,32,109,97,112,91,118,97,108,93,59,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,67,104,101,99,107,32,105,102,32,97,32,116,97,103,32,105,115,32,97,32,98,117,105,108,116,45,105,110,32,116,97,103,46,92,110,32,42,47,92,110,118,97,114,32,105,115,66,117,105,108,116,73,110,84,97,103,32,61,32,109,97,107,101,77,97,112,40,39,115,108,111,116,44,99,111,109,112,111,110,101,110,116,39,44,32,116,114,117,101,41,59,92,110,92,110,47,42,42,92,110,32,42,32,67,104,101,99,107,32,105,102,32,97,110,32,97,116,116,114,105,98,117,116,101,32,105,115,32,97,32,114,101,115,101,114,118,101,100,32,97,116,116,114,105,98,117,116,101,46,92,110,32,42,47,92,110,118,97,114,32,105,115,82,101,115,101,114,118,101,100,65,116,116,114,105,98,117,116,101,32,61,32,109,97,107,101,77,97,112,40,39,107,101,121,44,114,101,102,44,115,108,111,116,44,115,108,111,116,45,115,99,111,112,101,44,105,115,39,41,59,92,110,92,110,47,42,42,92,110,32,42,32,82,101,109,111,118,101,32,97,110,32,105,116,101,109,32,102,114,111,109,32,97,110,32,97,114,114,97,121,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,32,40,97,114,114,44,32,105,116,101,109,41,32,123,92,110,32,32,105,102,32,40,97,114,114,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,100,101,120,32,61,32,97,114,114,46,105,110,100,101,120,79,102,40,105,116,101,109,41,59,92,110,32,32,32,32,105,102,32,40,105,110,100,101,120,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,97,114,114,46,115,112,108,105,99,101,40,105,110,100,101,120,44,32,49,41,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,67,104,101,99,107,32,119,104,101,116,104,101,114,32,97,110,32,111,98,106,101,99,116,32,104,97,115,32,116,104,101,32,112,114,111,112,101,114,116,121,46,92,110,32,42,47,92,110,118,97,114,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,32,61,32,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,59,92,110,102,117,110,99,116,105,111,110,32,104,97,115,79,119,110,32,40,111,98,106,44,32,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,111,98,106,44,32,107,101,121,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,67,114,101,97,116,101,32,97,32,99,97,99,104,101,100,32,118,101,114,115,105,111,110,32,111,102,32,97,32,112,117,114,101,32,102,117,110,99,116,105,111,110,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,99,97,99,104,101,100,32,40,102,110,41,32,123,92,110,32,32,118,97,114,32,99,97,99,104,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,114,101,116,117,114,110,32,40,102,117,110,99,116,105,111,110,32,99,97,99,104,101,100,70,110,32,40,115,116,114,41,32,123,92,110,32,32,32,32,118,97,114,32,104,105,116,32,61,32,99,97,99,104,101,91,115,116,114,93,59,92,110,32,32,32,32,114,101,116,117,114,110,32,104,105,116,32,124,124,32,40,99,97,99,104,101,91,115,116,114,93,32,61,32,102,110,40,115,116,114,41,41,92,110,32,32,125,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,67,97,109,101,108,105,122,101,32,97,32,104,121,112,104,101,110,45,100,101,108,105,109,105,116,101,100,32,115,116,114,105,110,103,46,92,110,32,42,47,92,110,118,97,114,32,99,97,109,101,108,105,122,101,82,69,32,61,32,47,45,40,92,92,119,41,47,103,59,92,110,118,97,114,32,99,97,109,101,108,105,122,101,32,61,32,99,97,99,104,101,100,40,102,117,110,99,116,105,111,110,32,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,116,114,46,114,101,112,108,97,99,101,40,99,97,109,101,108,105,122,101,82,69,44,32,102,117,110,99,116,105,111,110,32,40,95,44,32,99,41,32,123,32,114,101,116,117,114,110,32,99,32,63,32,99,46,116,111,85,112,112,101,114,67,97,115,101,40,41,32,58,32,39,39,59,32,125,41,92,110,125,41,59,92,110,92,110,47,42,42,92,110,32,42,32,67,97,112,105,116,97,108,105,122,101,32,97,32,115,116,114,105,110,103,46,92,110,32,42,47,92,110,118,97,114,32,99,97,112,105,116,97,108,105,122,101,32,61,32,99,97,99,104,101,100,40,102,117,110,99,116,105,111,110,32,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,116,114,46,99,104,97,114,65,116,40,48,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,32,43,32,115,116,114,46,115,108,105,99,101,40,49,41,92,110,125,41,59,92,110,92,110,47,42,42,92,110,32,42,32,72,121,112,104,101,110,97,116,101,32,97,32,99,97,109,101,108,67,97,115,101,32,115,116,114,105,110,103,46,92,110,32,42,47,92,110,118,97,114,32,104,121,112,104,101,110,97,116,101,82,69,32,61,32,47,92,92,66,40,91,65,45,90,93,41,47,103,59,92,110,118,97,114,32,104,121,112,104,101,110,97,116,101,32,61,32,99,97,99,104,101,100,40,102,117,110,99,116,105,111,110,32,40,115,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,116,114,46,114,101,112,108,97,99,101,40,104,121,112,104,101,110,97,116,101,82,69,44,32,39,45,36,49,39,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,92,110,125,41,59,92,110,92,110,47,42,42,92,110,32,42,32,83,105,109,112,108,101,32,98,105,110,100,32,112,111,108,121,102,105,108,108,32,102,111,114,32,101,110,118,105,114,111,110,109,101,110,116,115,32,116,104,97,116,32,100,111,32,110,111,116,32,115,117,112,112,111,114,116,32,105,116,44,92,110,32,42,32,101,46,103,46,44,32,80,104,97,110,116,111,109,74,83,32,49,46,120,46,32,84,101,99,104,110,105,99,97,108,108,121,44,32,119,101,32,100,111,110,39,116,32,110,101,101,100,32,116,104,105,115,32,97,110,121,109,111,114,101,92,110,32,42,32,115,105,110,99,101,32,110,97,116,105,118,101,32,98,105,110,100,32,105,115,32,110,111,119,32,112,101,114,102,111,114,109,97,110,116,32,101,110,111,117,103,104,32,105,110,32,109,111,115,116,32,98,114,111,119,115,101,114,115,46,92,110,32,42,32,66,117,116,32,114,101,109,111,118,105,110,103,32,105,116,32,119,111,117,108,100,32,109,101,97,110,32,98,114,101,97,107,105,110,103,32,99,111,100,101,32,116,104,97,116,32,119,97,115,32,97,98,108,101,32,116,111,32,114,117,110,32,105,110,92,110,32,42,32,80,104,97,110,116,111,109,74,83,32,49,46,120,44,32,115,111,32,116,104,105,115,32,109,117,115,116,32,98,101,32,107,101,112,116,32,102,111,114,32,98,97,99,107,119,97,114,100,32,99,111,109,112,97,116,105,98,105,108,105,116,121,46,92,110,32,42,47,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,102,117,110,99,116,105,111,110,32,112,111,108,121,102,105,108,108,66,105,110,100,32,40,102,110,44,32,99,116,120,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,98,111,117,110,100,70,110,32,40,97,41,32,123,92,110,32,32,32,32,118,97,114,32,108,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,114,101,116,117,114,110,32,108,92,110,32,32,32,32,32,32,63,32,108,32,62,32,49,92,110,32,32,32,32,32,32,32,32,63,32,102,110,46,97,112,112,108,121,40,99,116,120,44,32,97,114,103,117,109,101,110,116,115,41,92,110,32,32,32,32,32,32,32,32,58,32,102,110,46,99,97,108,108,40,99,116,120,44,32,97,41,92,110,32,32,32,32,32,32,58,32,102,110,46,99,97,108,108,40,99,116,120,41,92,110,32,32,125,92,110,92,110,32,32,98,111,117,110,100,70,110,46,95,108,101,110,103,116,104,32,61,32,102,110,46,108,101,110,103,116,104,59,92,110,32,32,114,101,116,117,114,110,32,98,111,117,110,100,70,110,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,97,116,105,118,101,66,105,110,100,32,40,102,110,44,32,99,116,120,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,110,46,98,105,110,100,40,99,116,120,41,92,110,125,92,110,92,110,118,97,114,32,98,105,110,100,32,61,32,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,98,105,110,100,92,110,32,32,63,32,110,97,116,105,118,101,66,105,110,100,92,110,32,32,58,32,112,111,108,121,102,105,108,108,66,105,110,100,59,92,110,92,110,47,42,42,92,110,32,42,32,67,111,110,118,101,114,116,32,97,110,32,65,114,114,97,121,45,108,105,107,101,32,111,98,106,101,99,116,32,116,111,32,97,32,114,101,97,108,32,65,114,114,97,121,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,116,111,65,114,114,97,121,32,40,108,105,115,116,44,32,115,116,97,114,116,41,32,123,92,110,32,32,115,116,97,114,116,32,61,32,115,116,97,114,116,32,124,124,32,48,59,92,110,32,32,118,97,114,32,105,32,61,32,108,105,115,116,46,108,101,110,103,116,104,32,45,32,115,116,97,114,116,59,92,110,32,32,118,97,114,32,114,101,116,32,61,32,110,101,119,32,65,114,114,97,121,40,105,41,59,92,110,32,32,119,104,105,108,101,32,40,105,45,45,41,32,123,92,110,32,32,32,32,114,101,116,91,105,93,32,61,32,108,105,115,116,91,105,32,43,32,115,116,97,114,116,93,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,116,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,77,105,120,32,112,114,111,112,101,114,116,105,101,115,32,105,110,116,111,32,116,97,114,103,101,116,32,111,98,106,101,99,116,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,101,120,116,101,110,100,32,40,116,111,44,32,95,102,114,111,109,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,95,102,114,111,109,41,32,123,92,110,32,32,32,32,116,111,91,107,101,121,93,32,61,32,95,102,114,111,109,91,107,101,121,93,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,111,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,77,101,114,103,101,32,97,110,32,65,114,114,97,121,32,111,102,32,79,98,106,101,99,116,115,32,105,110,116,111,32,97,32,115,105,110,103,108,101,32,79,98,106,101,99,116,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,116,111,79,98,106,101,99,116,32,40,97,114,114,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,123,125,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,97,114,114,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,105,102,32,40,97,114,114,91,105,93,41,32,123,92,110,32,32,32,32,32,32,101,120,116,101,110,100,40,114,101,115,44,32,97,114,114,91,105,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,92,110,92,110,47,42,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,32,110,111,45,117,110,117,115,101,100,45,118,97,114,115,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,80,101,114,102,111,114,109,32,110,111,32,111,112,101,114,97,116,105,111,110,46,92,110,32,42,32,83,116,117,98,98,105,110,103,32,97,114,103,115,32,116,111,32,109,97,107,101,32,70,108,111,119,32,104,97,112,112,121,32,119,105,116,104,111,117,116,32,108,101,97,118,105,110,103,32,117,115,101,108,101,115,115,32,116,114,97,110,115,112,105,108,101,100,32,99,111,100,101,92,110,32,42,32,119,105,116,104,32,46,46,46,114,101,115,116,32,40,104,116,116,112,115,58,47,47,102,108,111,119,46,111,114,103,47,98,108,111,103,47,50,48,49,55,47,48,53,47,48,55,47,83,116,114,105,99,116,45,70,117,110,99,116,105,111,110,45,67,97,108,108,45,65,114,105,116,121,47,41,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,110,111,111,112,32,40,97,44,32,98,44,32,99,41,32,123,125,92,110,92,110,47,42,42,92,110,32,42,32,65,108,119,97,121,115,32,114,101,116,117,114,110,32,102,97,108,115,101,46,92,110,32,42,47,92,110,118,97,114,32,110,111,32,61,32,102,117,110,99,116,105,111,110,32,40,97,44,32,98,44,32,99,41,32,123,32,114,101,116,117,114,110,32,102,97,108,115,101,59,32,125,59,92,110,92,110,47,42,32,101,115,108,105,110,116,45,101,110,97,98,108,101,32,110,111,45,117,110,117,115,101,100,45,118,97,114,115,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,82,101,116,117,114,110,32,116,104,101,32,115,97,109,101,32,118,97,108,117,101,46,92,110,32,42,47,92,110,118,97,114,32,105,100,101,110,116,105,116,121,32,61,32,102,117,110,99,116,105,111,110,32,40,95,41,32,123,32,114,101,116,117,114,110,32,95,59,32,125,59,92,110,92,110,47,42,42,92,110,32,42,32,67,104,101,99,107,32,105,102,32,116,119,111,32,118,97,108,117,101,115,32,97,114,101,32,108,111,111,115,101,108,121,32,101,113,117,97,108,32,45,32,116,104,97,116,32,105,115,44,92,110,32,42,32,105,102,32,116,104,101,121,32,97,114,101,32,112,108,97,105,110,32,111,98,106,101,99,116,115,44,32,100,111,32,116,104,101,121,32,104,97,118,101,32,116,104,101,32,115,97,109,101,32,115,104,97,112,101,63,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,108,111,111,115,101,69,113,117,97,108,32,40,97,44,32,98,41,32,123,92,110,32,32,105,102,32,40,97,32,61,61,61,32,98,41,32,123,32,114,101,116,117,114,110,32,116,114,117,101,32,125,92,110,32,32,118,97,114,32,105,115,79,98,106,101,99,116,65,32,61,32,105,115,79,98,106,101,99,116,40,97,41,59,92,110,32,32,118,97,114,32,105,115,79,98,106,101,99,116,66,32,61,32,105,115,79,98,106,101,99,116,40,98,41,59,92,110,32,32,105,102,32,40,105,115,79,98,106,101,99,116,65,32,38,38,32,105,115,79,98,106,101,99,116,66,41,32,123,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,65,114,114,97,121,65,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,115,65,114,114,97,121,66,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,98,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,65,114,114,97,121,65,32,38,38,32,105,115,65,114,114,97,121,66,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,46,108,101,110,103,116,104,32,61,61,61,32,98,46,108,101,110,103,116,104,32,38,38,32,97,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,32,40,101,44,32,105,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,111,115,101,69,113,117,97,108,40,101,44,32,98,91,105,93,41,92,110,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,97,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,32,38,38,32,98,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,46,103,101,116,84,105,109,101,40,41,32,61,61,61,32,98,46,103,101,116,84,105,109,101,40,41,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,105,115,65,114,114,97,121,65,32,38,38,32,33,105,115,65,114,114,97,121,66,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,115,65,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,97,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,115,66,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,98,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,107,101,121,115,65,46,108,101,110,103,116,104,32,61,61,61,32,107,101,121,115,66,46,108,101,110,103,116,104,32,38,38,32,107,101,121,115,65,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,111,111,115,101,69,113,117,97,108,40,97,91,107,101,121,93,44,32,98,91,107,101,121,93,41,92,110,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,33,105,115,79,98,106,101,99,116,65,32,38,38,32,33,105,115,79,98,106,101,99,116,66,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,83,116,114,105,110,103,40,97,41,32,61,61,61,32,83,116,114,105,110,103,40,98,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,101,116,117,114,110,32,116,104,101,32,102,105,114,115,116,32,105,110,100,101,120,32,97,116,32,119,104,105,99,104,32,97,32,108,111,111,115,101,108,121,32,101,113,117,97,108,32,118,97,108,117,101,32,99,97,110,32,98,101,92,110,32,42,32,102,111,117,110,100,32,105,110,32,116,104,101,32,97,114,114,97,121,32,40,105,102,32,118,97,108,117,101,32,105,115,32,97,32,112,108,97,105,110,32,111,98,106,101,99,116,44,32,116,104,101,32,97,114,114,97,121,32,109,117,115,116,92,110,32,42,32,99,111,110,116,97,105,110,32,97,110,32,111,98,106,101,99,116,32,111,102,32,116,104,101,32,115,97,109,101,32,115,104,97,112,101,41,44,32,111,114,32,45,49,32,105,102,32,105,116,32,105,115,32,110,111,116,32,112,114,101,115,101,110,116,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,108,111,111,115,101,73,110,100,101,120,79,102,32,40,97,114,114,44,32,118,97,108,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,97,114,114,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,105,102,32,40,108,111,111,115,101,69,113,117,97,108,40,97,114,114,91,105,93,44,32,118,97,108,41,41,32,123,32,114,101,116,117,114,110,32,105,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,45,49,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,69,110,115,117,114,101,32,97,32,102,117,110,99,116,105,111,110,32,105,115,32,99,97,108,108,101,100,32,111,110,108,121,32,111,110,99,101,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,111,110,99,101,32,40,102,110,41,32,123,92,110,32,32,118,97,114,32,99,97,108,108,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,99,97,108,108,101,100,41,32,123,92,110,32,32,32,32,32,32,99,97,108,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,102,110,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,83,83,82,95,65,84,84,82,32,61,32,39,100,97,116,97,45,115,101,114,118,101,114,45,114,101,110,100,101,114,101,100,39,59,92,110,92,110,118,97,114,32,65,83,83,69,84,95,84,89,80,69,83,32,61,32,91,92,110,32,32,39,99,111,109,112,111,110,101,110,116,39,44,92,110,32,32,39,100,105,114,101,99,116,105,118,101,39,44,92,110,32,32,39,102,105,108,116,101,114,39,92,110,93,59,92,110,92,110,118,97,114,32,76,73,70,69,67,89,67,76,69,95,72,79,79,75,83,32,61,32,91,92,110,32,32,39,98,101,102,111,114,101,67,114,101,97,116,101,39,44,92,110,32,32,39,99,114,101,97,116,101,100,39,44,92,110,32,32,39,98,101,102,111,114,101,77,111,117,110,116,39,44,92,110,32,32,39,109,111,117,110,116,101,100,39,44,92,110,32,32,39,98,101,102,111,114,101,85,112,100,97,116,101,39,44,92,110,32,32,39,117,112,100,97,116,101,100,39,44,92,110,32,32,39,98,101,102,111,114,101,68,101,115,116,114,111,121,39,44,92,110,32,32,39,100,101,115,116,114,111,121,101,100,39,44,92,110,32,32,39,97,99,116,105,118,97,116,101,100,39,44,92,110,32,32,39,100,101,97,99,116,105,118,97,116,101,100,39,44,92,110,32,32,39,101,114,114,111,114,67,97,112,116,117,114,101,100,39,44,92,110,32,32,39,115,101,114,118,101,114,80,114,101,102,101,116,99,104,39,92,110,93,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,92,110,92,110,118,97,114,32,99,111,110,102,105,103,32,61,32,40,123,92,110,32,32,47,42,42,92,110,32,32,32,42,32,79,112,116,105,111,110,32,109,101,114,103,101,32,115,116,114,97,116,101,103,105,101,115,32,40,117,115,101,100,32,105,110,32,99,111,114,101,47,117,116,105,108,47,111,112,116,105,111,110,115,41,92,110,32,32,32,42,47,92,110,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,111,112,116,105,111,110,77,101,114,103,101,83,116,114,97,116,101,103,105,101,115,58,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,87,104,101,116,104,101,114,32,116,111,32,115,117,112,112,114,101,115,115,32,119,97,114,110,105,110,103,115,46,92,110,32,32,32,42,47,92,110,32,32,115,105,108,101,110,116,58,32,102,97,108,115,101,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,83,104,111,119,32,112,114,111,100,117,99,116,105,111,110,32,109,111,100,101,32,116,105,112,32,109,101,115,115,97,103,101,32,111,110,32,98,111,111,116,63,92,110,32,32,32,42,47,92,110,32,32,112,114,111,100,117,99,116,105,111,110,84,105,112,58,32,92,34,100,101,118,101,108,111,112,109,101,110,116,92,34,32,33,61,61,32,39,112,114,111,100,117,99,116,105,111,110,39,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,87,104,101,116,104,101,114,32,116,111,32,101,110,97,98,108,101,32,100,101,118,116,111,111,108,115,92,110,32,32,32,42,47,92,110,32,32,100,101,118,116,111,111,108,115,58,32,92,34,100,101,118,101,108,111,112,109,101,110,116,92,34,32,33,61,61,32,39,112,114,111,100,117,99,116,105,111,110,39,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,87,104,101,116,104,101,114,32,116,111,32,114,101,99,111,114,100,32,112,101,114,102,92,110,32,32,32,42,47,92,110,32,32,112,101,114,102,111,114,109,97,110,99,101,58,32,102,97,108,115,101,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,69,114,114,111,114,32,104,97,110,100,108,101,114,32,102,111,114,32,119,97,116,99,104,101,114,32,101,114,114,111,114,115,92,110,32,32,32,42,47,92,110,32,32,101,114,114,111,114,72,97,110,100,108,101,114,58,32,110,117,108,108,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,87,97,114,110,32,104,97,110,100,108,101,114,32,102,111,114,32,119,97,116,99,104,101,114,32,119,97,114,110,115,92,110,32,32,32,42,47,92,110,32,32,119,97,114,110,72,97,110,100,108,101,114,58,32,110,117,108,108,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,73,103,110,111,114,101,32,99,101,114,116,97,105,110,32,99,117,115,116,111,109,32,101,108,101,109,101,110,116,115,92,110,32,32,32,42,47,92,110,32,32,105,103,110,111,114,101,100,69,108,101,109,101,110,116,115,58,32,91,93,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,117,115,116,111,109,32,117,115,101,114,32,107,101,121,32,97,108,105,97,115,101,115,32,102,111,114,32,118,45,111,110,92,110,32,32,32,42,47,92,110,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,107,101,121,67,111,100,101,115,58,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,104,101,99,107,32,105,102,32,97,32,116,97,103,32,105,115,32,114,101,115,101,114,118,101,100,32,115,111,32,116,104,97,116,32,105,116,32,99,97,110,110,111,116,32,98,101,32,114,101,103,105,115,116,101,114,101,100,32,97,115,32,97,92,110,32,32,32,42,32,99,111,109,112,111,110,101,110,116,46,32,84,104,105,115,32,105,115,32,112,108,97,116,102,111,114,109,45,100,101,112,101,110,100,101,110,116,32,97,110,100,32,109,97,121,32,98,101,32,111,118,101,114,119,114,105,116,116,101,110,46,92,110,32,32,32,42,47,92,110,32,32,105,115,82,101,115,101,114,118,101,100,84,97,103,58,32,110,111,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,104,101,99,107,32,105,102,32,97,110,32,97,116,116,114,105,98,117,116,101,32,105,115,32,114,101,115,101,114,118,101,100,32,115,111,32,116,104,97,116,32,105,116,32,99,97,110,110,111,116,32,98,101,32,117,115,101,100,32,97,115,32,97,32,99,111,109,112,111,110,101,110,116,92,110,32,32,32,42,32,112,114,111,112,46,32,84,104,105,115,32,105,115,32,112,108,97,116,102,111,114,109,45,100,101,112,101,110,100,101,110,116,32,97,110,100,32,109,97,121,32,98,101,32,111,118,101,114,119,114,105,116,116,101,110,46,92,110,32,32,32,42,47,92,110,32,32,105,115,82,101,115,101,114,118,101,100,65,116,116,114,58,32,110,111,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,104,101,99,107,32,105,102,32,97,32,116,97,103,32,105,115,32,97,110,32,117,110,107,110,111,119,110,32,101,108,101,109,101,110,116,46,92,110,32,32,32,42,32,80,108,97,116,102,111,114,109,45,100,101,112,101,110,100,101,110,116,46,92,110,32,32,32,42,47,92,110,32,32,105,115,85,110,107,110,111,119,110,69,108,101,109,101,110,116,58,32,110,111,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,71,101,116,32,116,104,101,32,110,97,109,101,115,112,97,99,101,32,111,102,32,97,110,32,101,108,101,109,101,110,116,92,110,32,32,32,42,47,92,110,32,32,103,101,116,84,97,103,78,97,109,101,115,112,97,99,101,58,32,110,111,111,112,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,80,97,114,115,101,32,116,104,101,32,114,101,97,108,32,116,97,103,32,110,97,109,101,32,102,111,114,32,116,104,101,32,115,112,101,99,105,102,105,99,32,112,108,97,116,102,111,114,109,46,92,110,32,32,32,42,47,92,110,32,32,112,97,114,115,101,80,108,97,116,102,111,114,109,84,97,103,78,97,109,101,58,32,105,100,101,110,116,105,116,121,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,104,101,99,107,32,105,102,32,97,110,32,97,116,116,114,105,98,117,116,101,32,109,117,115,116,32,98,101,32,98,111,117,110,100,32,117,115,105,110,103,32,112,114,111,112,101,114,116,121,44,32,101,46,103,46,32,118,97,108,117,101,92,110,32,32,32,42,32,80,108,97,116,102,111,114,109,45,100,101,112,101,110,100,101,110,116,46,92,110,32,32,32,42,47,92,110,32,32,109,117,115,116,85,115,101,80,114,111,112,58,32,110,111,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,80,101,114,102,111,114,109,32,117,112,100,97,116,101,115,32,97,115,121,110,99,104,114,111,110,111,117,115,108,121,46,32,73,110,116,101,110,100,101,100,32,116,111,32,98,101,32,117,115,101,100,32,98,121,32,86,117,101,32,84,101,115,116,32,85,116,105,108,115,92,110,32,32,32,42,32,84,104,105,115,32,119,105,108,108,32,115,105,103,110,105,102,105,99,97,110,116,108,121,32,114,101,100,117,99,101,32,112,101,114,102,111,114,109,97,110,99,101,32,105,102,32,115,101,116,32,116,111,32,102,97,108,115,101,46,92,110,32,32,32,42,47,92,110,32,32,97,115,121,110,99,58,32,116,114,117,101,44,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,69,120,112,111,115,101,100,32,102,111,114,32,108,101,103,97,99,121,32,114,101,97,115,111,110,115,92,110,32,32,32,42,47,92,110,32,32,95,108,105,102,101,99,121,99,108,101,72,111,111,107,115,58,32,76,73,70,69,67,89,67,76,69,95,72,79,79,75,83,92,110,125,41,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,117,110,105,99,111,100,101,32,108,101,116,116,101,114,115,32,117,115,101,100,32,102,111,114,32,112,97,114,115,105,110,103,32,104,116,109,108,32,116,97,103,115,44,32,99,111,109,112,111,110,101,110,116,32,110,97,109,101,115,32,97,110,100,32,112,114,111,112,101,114,116,121,32,112,97,116,104,115,46,92,110,32,42,32,117,115,105,110,103,32,104,116,116,112,115,58,47,47,119,119,119,46,119,51,46,111,114,103,47,84,82,47,104,116,109,108,53,51,47,115,101,109,97,110,116,105,99,115,45,115,99,114,105,112,116,105,110,103,46,104,116,109,108,35,112,111,116,101,110,116,105,97,108,99,117,115,116,111,109,101,108,101,109,101,110,116,110,97,109,101,92,110,32,42,32,115,107,105,112,112,105,110,103,32,92,92,117,49,48,48,48,48,45,92,92,117,69,70,70,70,70,32,100,117,101,32,116,111,32,105,116,32,102,114,101,101,122,105,110,103,32,117,112,32,80,104,97,110,116,111,109,74,83,92,110,32,42,47,92,110,118,97,114,32,117,110,105,99,111,100,101,82,101,103,69,120,112,32,61,32,47,97,45,122,65,45,90,92,92,117,48,48,66,55,92,92,117,48,48,67,48,45,92,92,117,48,48,68,54,92,92,117,48,48,68,56,45,92,92,117,48,48,70,54,92,92,117,48,48,70,56,45,92,92,117,48,51,55,68,92,92,117,48,51,55,70,45,92,92,117,49,70,70,70,92,92,117,50,48,48,67,45,92,92,117,50,48,48,68,92,92,117,50,48,51,70,45,92,92,117,50,48,52,48,92,92,117,50,48,55,48,45,92,92,117,50,49,56,70,92,92,117,50,67,48,48,45,92,92,117,50,70,69,70,92,92,117,51,48,48,49,45,92,92,117,68,55,70,70,92,92,117,70,57,48,48,45,92,92,117,70,68,67,70,92,92,117,70,68,70,48,45,92,92,117,70,70,70,68,47,59,92,110,92,110,47,42,42,92,110,32,42,32,67,104,101,99,107,32,105,102,32,97,32,115,116,114,105,110,103,32,115,116,97,114,116,115,32,119,105,116,104,32,36,32,111,114,32,95,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,82,101,115,101,114,118,101,100,32,40,115,116,114,41,32,123,92,110,32,32,118,97,114,32,99,32,61,32,40,115,116,114,32,43,32,39,39,41,46,99,104,97,114,67,111,100,101,65,116,40,48,41,59,92,110,32,32,114,101,116,117,114,110,32,99,32,61,61,61,32,48,120,50,52,32,124,124,32,99,32,61,61,61,32,48,120,53,70,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,102,105,110,101,32,97,32,112,114,111,112,101,114,116,121,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,100,101,102,32,40,111,98,106,44,32,107,101,121,44,32,118,97,108,44,32,101,110,117,109,101,114,97,98,108,101,41,32,123,92,110,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,92,110,32,32,32,32,118,97,108,117,101,58,32,118,97,108,44,92,110,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,33,33,101,110,117,109,101,114,97,98,108,101,44,92,110,32,32,32,32,119,114,105,116,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,92,110,32,32,125,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,80,97,114,115,101,32,115,105,109,112,108,101,32,112,97,116,104,46,92,110,32,42,47,92,110,118,97,114,32,98,97,105,108,82,69,32,61,32,110,101,119,32,82,101,103,69,120,112,40,40,92,34,91,94,92,34,32,43,32,40,117,110,105,99,111,100,101,82,101,103,69,120,112,46,115,111,117,114,99,101,41,32,43,32,92,34,46,36,95,92,92,92,92,100,93,92,34,41,41,59,92,110,102,117,110,99,116,105,111,110,32,112,97,114,115,101,80,97,116,104,32,40,112,97,116,104,41,32,123,92,110,32,32,105,102,32,40,98,97,105,108,82,69,46,116,101,115,116,40,112,97,116,104,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,118,97,114,32,115,101,103,109,101,110,116,115,32,61,32,112,97,116,104,46,115,112,108,105,116,40,39,46,39,41,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,111,98,106,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,115,101,103,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,111,98,106,41,32,123,32,114,101,116,117,114,110,32,125,92,110,32,32,32,32,32,32,111,98,106,32,61,32,111,98,106,91,115,101,103,109,101,110,116,115,91,105,93,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,111,98,106,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,47,32,99,97,110,32,119,101,32,117,115,101,32,95,95,112,114,111,116,111,95,95,63,92,110,118,97,114,32,104,97,115,80,114,111,116,111,32,61,32,39,95,95,112,114,111,116,111,95,95,39,32,105,110,32,123,125,59,92,110,92,110,47,47,32,66,114,111,119,115,101,114,32,101,110,118,105,114,111,110,109,101,110,116,32,115,110,105,102,102,105,110,103,92,110,118,97,114,32,105,110,66,114,111,119,115,101,114,32,61,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,59,92,110,118,97,114,32,105,110,87,101,101,120,32,61,32,116,121,112,101,111,102,32,87,88,69,110,118,105,114,111,110,109,101,110,116,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,33,33,87,88,69,110,118,105,114,111,110,109,101,110,116,46,112,108,97,116,102,111,114,109,59,92,110,118,97,114,32,119,101,101,120,80,108,97,116,102,111,114,109,32,61,32,105,110,87,101,101,120,32,38,38,32,87,88,69,110,118,105,114,111,110,109,101,110,116,46,112,108,97,116,102,111,114,109,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,118,97,114,32,85,65,32,61,32,105,110,66,114,111,119,115,101,114,32,38,38,32,119,105,110,100,111,119,46,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,118,97,114,32,105,115,73,69,32,61,32,85,65,32,38,38,32,47,109,115,105,101,124,116,114,105,100,101,110,116,47,46,116,101,115,116,40,85,65,41,59,92,110,118,97,114,32,105,115,73,69,57,32,61,32,85,65,32,38,38,32,85,65,46,105,110,100,101,120,79,102,40,39,109,115,105,101,32,57,46,48,39,41,32,62,32,48,59,92,110,118,97,114,32,105,115,69,100,103,101,32,61,32,85,65,32,38,38,32,85,65,46,105,110,100,101,120,79,102,40,39,101,100,103,101,47,39,41,32,62,32,48,59,92,110,118,97,114,32,105,115,65,110,100,114,111,105,100,32,61,32,40,85,65,32,38,38,32,85,65,46,105,110,100,101,120,79,102,40,39,97,110,100,114,111,105,100,39,41,32,62,32,48,41,32,124,124,32,40,119,101,101,120,80,108,97,116,102,111,114,109,32,61,61,61,32,39,97,110,100,114,111,105,100,39,41,59,92,110,118,97,114,32,105,115,73,79,83,32,61,32,40,85,65,32,38,38,32,47,105,112,104,111,110,101,124,105,112,97,100,124,105,112,111,100,124,105,111,115,47,46,116,101,115,116,40,85,65,41,41,32,124,124,32,40,119,101,101,120,80,108,97,116,102,111,114,109,32,61,61,61,32,39,105,111,115,39,41,59,92,110,118,97,114,32,105,115,67,104,114,111,109,101,32,61,32,85,65,32,38,38,32,47,99,104,114,111,109,101,92,92,47,92,92,100,43,47,46,116,101,115,116,40,85,65,41,32,38,38,32,33,105,115,69,100,103,101,59,92,110,118,97,114,32,105,115,80,104,97,110,116,111,109,74,83,32,61,32,85,65,32,38,38,32,47,112,104,97,110,116,111,109,106,115,47,46,116,101,115,116,40,85,65,41,59,92,110,118,97,114,32,105,115,70,70,32,61,32,85,65,32,38,38,32,85,65,46,109,97,116,99,104,40,47,102,105,114,101,102,111,120,92,92,47,40,92,92,100,43,41,47,41,59,92,110,92,110,47,47,32,70,105,114,101,102,111,120,32,104,97,115,32,97,32,92,34,119,97,116,99,104,92,34,32,102,117,110,99,116,105,111,110,32,111,110,32,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,46,46,92,110,118,97,114,32,110,97,116,105,118,101,87,97,116,99,104,32,61,32,40,123,125,41,46,119,97,116,99,104,59,92,110,92,110,118,97,114,32,115,117,112,112,111,114,116,115,80,97,115,115,105,118,101,32,61,32,102,97,108,115,101,59,92,110,105,102,32,40,105,110,66,114,111,119,115,101,114,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,118,97,114,32,111,112,116,115,32,61,32,123,125,59,92,110,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,112,116,115,44,32,39,112,97,115,115,105,118,101,39,44,32,40,123,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,32,32,32,32,115,117,112,112,111,114,116,115,80,97,115,115,105,118,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,41,59,32,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,102,97,99,101,98,111,111,107,47,102,108,111,119,47,105,115,115,117,101,115,47,50,56,53,92,110,32,32,32,32,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,116,101,115,116,45,112,97,115,115,105,118,101,39,44,32,110,117,108,108,44,32,111,112,116,115,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,125,92,110,125,92,110,92,110,47,47,32,116,104,105,115,32,110,101,101,100,115,32,116,111,32,98,101,32,108,97,122,121,45,101,118,97,108,101,100,32,98,101,99,97,117,115,101,32,118,117,101,32,109,97,121,32,98,101,32,114,101,113,117,105,114,101,100,32,98,101,102,111,114,101,92,110,47,47,32,118,117,101,45,115,101,114,118,101,114,45,114,101,110,100,101,114,101,114,32,99,97,110,32,115,101,116,32,86,85,69,95,69,78,86,92,110,118,97,114,32,95,105,115,83,101,114,118,101,114,59,92,110,118,97,114,32,105,115,83,101,114,118,101,114,82,101,110,100,101,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,105,102,32,40,95,105,115,83,101,114,118,101,114,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,33,105,110,66,114,111,119,115,101,114,32,38,38,32,33,105,110,87,101,101,120,32,38,38,32,116,121,112,101,111,102,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,47,47,32,100,101,116,101,99,116,32,112,114,101,115,101,110,99,101,32,111,102,32,118,117,101,45,115,101,114,118,101,114,45,114,101,110,100,101,114,101,114,32,97,110,100,32,97,118,111,105,100,92,110,32,32,32,32,32,32,47,47,32,87,101,98,112,97,99,107,32,115,104,105,109,109,105,110,103,32,116,104,101,32,112,114,111,99,101,115,115,92,110,32,32,32,32,32,32,95,105,115,83,101,114,118,101,114,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,91,39,112,114,111,99,101,115,115,39,93,32,38,38,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,91,39,112,114,111,99,101,115,115,39,93,46,101,110,118,46,86,85,69,95,69,78,86,32,61,61,61,32,39,115,101,114,118,101,114,39,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,95,105,115,83,101,114,118,101,114,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,95,105,115,83,101,114,118,101,114,92,110,125,59,92,110,92,110,47,47,32,100,101,116,101,99,116,32,100,101,118,116,111,111,108,115,92,110,118,97,114,32,100,101,118,116,111,111,108,115,32,61,32,105,110,66,114,111,119,115,101,114,32,38,38,32,119,105,110,100,111,119,46,95,95,86,85,69,95,68,69,86,84,79,79,76,83,95,71,76,79,66,65,76,95,72,79,79,75,95,95,59,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,78,97,116,105,118,101,32,40,67,116,111,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,67,116,111,114,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,47,110,97,116,105,118,101,32,99,111,100,101,47,46,116,101,115,116,40,67,116,111,114,46,116,111,83,116,114,105,110,103,40,41,41,92,110,125,92,110,92,110,118,97,114,32,104,97,115,83,121,109,98,111,108,32,61,92,110,32,32,116,121,112,101,111,102,32,83,121,109,98,111,108,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,105,115,78,97,116,105,118,101,40,83,121,109,98,111,108,41,32,38,38,92,110,32,32,116,121,112,101,111,102,32,82,101,102,108,101,99,116,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,105,115,78,97,116,105,118,101,40,82,101,102,108,101,99,116,46,111,119,110,75,101,121,115,41,59,92,110,92,110,118,97,114,32,95,83,101,116,59,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,105,102,32,40,116,121,112,101,111,102,32,83,101,116,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,105,115,78,97,116,105,118,101,40,83,101,116,41,41,32,123,92,110,32,32,47,47,32,117,115,101,32,110,97,116,105,118,101,32,83,101,116,32,119,104,101,110,32,97,118,97,105,108,97,98,108,101,46,92,110,32,32,95,83,101,116,32,61,32,83,101,116,59,92,110,125,32,101,108,115,101,32,123,92,110,32,32,47,47,32,97,32,110,111,110,45,115,116,97,110,100,97,114,100,32,83,101,116,32,112,111,108,121,102,105,108,108,32,116,104,97,116,32,111,110,108,121,32,119,111,114,107,115,32,119,105,116,104,32,112,114,105,109,105,116,105,118,101,32,107,101,121,115,46,92,110,32,32,95,83,101,116,32,61,32,47,42,64,95,95,80,85,82,69,95,95,42,47,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,83,101,116,32,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,83,101,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,32,61,32,102,117,110,99,116,105,111,110,32,104,97,115,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,101,116,91,107,101,121,93,32,61,61,61,32,116,114,117,101,92,110,32,32,32,32,125,59,92,110,32,32,32,32,83,101,116,46,112,114,111,116,111,116,121,112,101,46,97,100,100,32,61,32,102,117,110,99,116,105,111,110,32,97,100,100,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,91,107,101,121,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,83,101,116,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,32,61,32,102,117,110,99,116,105,111,110,32,99,108,101,97,114,32,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,83,101,116,59,92,110,32,32,125,40,41,41,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,119,97,114,110,32,61,32,110,111,111,112,59,92,110,118,97,114,32,116,105,112,32,61,32,110,111,111,112,59,92,110,118,97,114,32,103,101,110,101,114,97,116,101,67,111,109,112,111,110,101,110,116,84,114,97,99,101,32,61,32,40,110,111,111,112,41,59,32,47,47,32,119,111,114,107,32,97,114,111,117,110,100,32,102,108,111,119,32,99,104,101,99,107,92,110,118,97,114,32,102,111,114,109,97,116,67,111,109,112,111,110,101,110,116,78,97,109,101,32,61,32,40,110,111,111,112,41,59,92,110,92,110,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,118,97,114,32,104,97,115,67,111,110,115,111,108,101,32,61,32,116,121,112,101,111,102,32,99,111,110,115,111,108,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,59,92,110,32,32,118,97,114,32,99,108,97,115,115,105,102,121,82,69,32,61,32,47,40,63,58,94,124,91,45,95,93,41,40,92,92,119,41,47,103,59,92,110,32,32,118,97,114,32,99,108,97,115,115,105,102,121,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,114,41,32,123,32,114,101,116,117,114,110,32,115,116,114,92,110,32,32,32,32,46,114,101,112,108,97,99,101,40,99,108,97,115,115,105,102,121,82,69,44,32,102,117,110,99,116,105,111,110,32,40,99,41,32,123,32,114,101,116,117,114,110,32,99,46,116,111,85,112,112,101,114,67,97,115,101,40,41,59,32,125,41,92,110,32,32,32,32,46,114,101,112,108,97,99,101,40,47,91,45,95,93,47,103,44,32,39,39,41,59,32,125,59,92,110,92,110,32,32,119,97,114,110,32,61,32,102,117,110,99,116,105,111,110,32,40,109,115,103,44,32,118,109,41,32,123,92,110,32,32,32,32,118,97,114,32,116,114,97,99,101,32,61,32,118,109,32,63,32,103,101,110,101,114,97,116,101,67,111,109,112,111,110,101,110,116,84,114,97,99,101,40,118,109,41,32,58,32,39,39,59,92,110,92,110,32,32,32,32,105,102,32,40,99,111,110,102,105,103,46,119,97,114,110,72,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,119,97,114,110,72,97,110,100,108,101,114,46,99,97,108,108,40,110,117,108,108,44,32,109,115,103,44,32,118,109,44,32,116,114,97,99,101,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,97,115,67,111,110,115,111,108,101,32,38,38,32,40,33,99,111,110,102,105,103,46,115,105,108,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,40,92,34,91,86,117,101,32,119,97,114,110,93,58,32,92,34,32,43,32,109,115,103,32,43,32,116,114,97,99,101,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,116,105,112,32,61,32,102,117,110,99,116,105,111,110,32,40,109,115,103,44,32,118,109,41,32,123,92,110,32,32,32,32,105,102,32,40,104,97,115,67,111,110,115,111,108,101,32,38,38,32,40,33,99,111,110,102,105,103,46,115,105,108,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,34,91,86,117,101,32,116,105,112,93,58,32,92,34,32,43,32,109,115,103,32,43,32,40,92,110,32,32,32,32,32,32,32,32,118,109,32,63,32,103,101,110,101,114,97,116,101,67,111,109,112,111,110,101,110,116,84,114,97,99,101,40,118,109,41,32,58,32,39,39,92,110,32,32,32,32,32,32,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,109,97,116,67,111,109,112,111,110,101,110,116,78,97,109,101,32,61,32,102,117,110,99,116,105,111,110,32,40,118,109,44,32,105,110,99,108,117,100,101,70,105,108,101,41,32,123,92,110,32,32,32,32,105,102,32,40,118,109,46,36,114,111,111,116,32,61,61,61,32,118,109,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,60,82,111,111,116,62,39,92,110,32,32,32,32,125,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,116,121,112,101,111,102,32,118,109,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,118,109,46,99,105,100,32,33,61,32,110,117,108,108,92,110,32,32,32,32,32,32,63,32,118,109,46,111,112,116,105,111,110,115,92,110,32,32,32,32,32,32,58,32,118,109,46,95,105,115,86,117,101,92,110,32,32,32,32,32,32,32,32,63,32,118,109,46,36,111,112,116,105,111,110,115,32,124,124,32,118,109,46,99,111,110,115,116,114,117,99,116,111,114,46,111,112,116,105,111,110,115,92,110,32,32,32,32,32,32,32,32,58,32,118,109,59,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,111,112,116,105,111,110,115,46,110,97,109,101,32,124,124,32,111,112,116,105,111,110,115,46,95,99,111,109,112,111,110,101,110,116,84,97,103,59,92,110,32,32,32,32,118,97,114,32,102,105,108,101,32,61,32,111,112,116,105,111,110,115,46,95,95,102,105,108,101,59,92,110,32,32,32,32,105,102,32,40,33,110,97,109,101,32,38,38,32,102,105,108,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,109,97,116,99,104,32,61,32,102,105,108,101,46,109,97,116,99,104,40,47,40,91,94,47,92,92,92,92,93,43,41,92,92,46,118,117,101,36,47,41,59,92,110,32,32,32,32,32,32,110,97,109,101,32,61,32,109,97,116,99,104,32,38,38,32,109,97,116,99,104,91,49,93,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,40,92,110,32,32,32,32,32,32,40,110,97,109,101,32,63,32,40,92,34,60,92,34,32,43,32,40,99,108,97,115,115,105,102,121,40,110,97,109,101,41,41,32,43,32,92,34,62,92,34,41,32,58,32,92,34,60,65,110,111,110,121,109,111,117,115,62,92,34,41,32,43,92,110,32,32,32,32,32,32,40,102,105,108,101,32,38,38,32,105,110,99,108,117,100,101,70,105,108,101,32,33,61,61,32,102,97,108,115,101,32,63,32,40,92,34,32,97,116,32,92,34,32,43,32,102,105,108,101,41,32,58,32,39,39,41,92,110,32,32,32,32,41,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,114,101,112,101,97,116,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,114,44,32,110,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,32,61,32,39,39,59,92,110,32,32,32,32,119,104,105,108,101,32,40,110,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,32,37,32,50,32,61,61,61,32,49,41,32,123,32,114,101,115,32,43,61,32,115,116,114,59,32,125,92,110,32,32,32,32,32,32,105,102,32,40,110,32,62,32,49,41,32,123,32,115,116,114,32,43,61,32,115,116,114,59,32,125,92,110,32,32,32,32,32,32,110,32,62,62,61,32,49,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,92,110,32,32,125,59,92,110,92,110,32,32,103,101,110,101,114,97,116,101,67,111,109,112,111,110,101,110,116,84,114,97,99,101,32,61,32,102,117,110,99,116,105,111,110,32,40,118,109,41,32,123,92,110,32,32,32,32,105,102,32,40,118,109,46,95,105,115,86,117,101,32,38,38,32,118,109,46,36,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,114,101,101,32,61,32,91,93,59,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,114,101,110,116,82,101,99,117,114,115,105,118,101,83,101,113,117,101,110,99,101,32,61,32,48,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,118,109,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,114,101,101,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,108,97,115,116,32,61,32,116,114,101,101,91,116,114,101,101,46,108,101,110,103,116,104,32,45,32,49,93,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,97,115,116,46,99,111,110,115,116,114,117,99,116,111,114,32,61,61,61,32,118,109,46,99,111,110,115,116,114,117,99,116,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,82,101,99,117,114,115,105,118,101,83,101,113,117,101,110,99,101,43,43,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,109,32,61,32,118,109,46,36,112,97,114,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,105,110,117,101,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,99,117,114,114,101,110,116,82,101,99,117,114,115,105,118,101,83,101,113,117,101,110,99,101,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,91,116,114,101,101,46,108,101,110,103,116,104,32,45,32,49,93,32,61,32,91,108,97,115,116,44,32,99,117,114,114,101,110,116,82,101,99,117,114,115,105,118,101,83,101,113,117,101,110,99,101,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,82,101,99,117,114,115,105,118,101,83,101,113,117,101,110,99,101,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,116,114,101,101,46,112,117,115,104,40,118,109,41,59,92,110,32,32,32,32,32,32,32,32,118,109,32,61,32,118,109,46,36,112,97,114,101,110,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,39,92,92,110,92,92,110,102,111,117,110,100,32,105,110,92,92,110,92,92,110,39,32,43,32,116,114,101,101,92,110,32,32,32,32,32,32,32,32,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,118,109,44,32,105,41,32,123,32,114,101,116,117,114,110,32,40,92,34,92,34,32,43,32,40,105,32,61,61,61,32,48,32,63,32,39,45,45,45,62,32,39,32,58,32,114,101,112,101,97,116,40,39,32,39,44,32,53,32,43,32,105,32,42,32,50,41,41,32,43,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,109,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,40,102,111,114,109,97,116,67,111,109,112,111,110,101,110,116,78,97,109,101,40,118,109,91,48,93,41,41,32,43,32,92,34,46,46,46,32,40,92,34,32,43,32,40,118,109,91,49,93,41,32,43,32,92,34,32,114,101,99,117,114,115,105,118,101,32,99,97,108,108,115,41,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,102,111,114,109,97,116,67,111,109,112,111,110,101,110,116,78,97,109,101,40,118,109,41,41,41,59,32,125,41,92,110,32,32,32,32,32,32,32,32,46,106,111,105,110,40,39,92,92,110,39,41,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,92,34,92,92,110,92,92,110,40,102,111,117,110,100,32,105,110,32,92,34,32,43,32,40,102,111,114,109,97,116,67,111,109,112,111,110,101,110,116,78,97,109,101,40,118,109,41,41,32,43,32,92,34,41,92,34,41,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,117,105,100,32,61,32,48,59,92,110,92,110,47,42,42,92,110,32,42,32,65,32,100,101,112,32,105,115,32,97,110,32,111,98,115,101,114,118,97,98,108,101,32,116,104,97,116,32,99,97,110,32,104,97,118,101,32,109,117,108,116,105,112,108,101,92,110,32,42,32,100,105,114,101,99,116,105,118,101,115,32,115,117,98,115,99,114,105,98,105,110,103,32,116,111,32,105,116,46,92,110,32,42,47,92,110,118,97,114,32,68,101,112,32,61,32,102,117,110,99,116,105,111,110,32,68,101,112,32,40,41,32,123,92,110,32,32,116,104,105,115,46,105,100,32,61,32,117,105,100,43,43,59,92,110,32,32,116,104,105,115,46,115,117,98,115,32,61,32,91,93,59,92,110,125,59,92,110,92,110,68,101,112,46,112,114,111,116,111,116,121,112,101,46,97,100,100,83,117,98,32,61,32,102,117,110,99,116,105,111,110,32,97,100,100,83,117,98,32,40,115,117,98,41,32,123,92,110,32,32,116,104,105,115,46,115,117,98,115,46,112,117,115,104,40,115,117,98,41,59,92,110,125,59,92,110,92,110,68,101,112,46,112,114,111,116,111,116,121,112,101,46,114,101,109,111,118,101,83,117,98,32,61,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,83,117,98,32,40,115,117,98,41,32,123,92,110,32,32,114,101,109,111,118,101,40,116,104,105,115,46,115,117,98,115,44,32,115,117,98,41,59,92,110,125,59,92,110,92,110,68,101,112,46,112,114,111,116,111,116,121,112,101,46,100,101,112,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,100,101,112,101,110,100,32,40,41,32,123,92,110,32,32,105,102,32,40,68,101,112,46,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,68,101,112,46,116,97,114,103,101,116,46,97,100,100,68,101,112,40,116,104,105,115,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,68,101,112,46,112,114,111,116,111,116,121,112,101,46,110,111,116,105,102,121,32,61,32,102,117,110,99,116,105,111,110,32,110,111,116,105,102,121,32,40,41,32,123,92,110,32,32,47,47,32,115,116,97,98,105,108,105,122,101,32,116,104,101,32,115,117,98,115,99,114,105,98,101,114,32,108,105,115,116,32,102,105,114,115,116,92,110,32,32,118,97,114,32,115,117,98,115,32,61,32,116,104,105,115,46,115,117,98,115,46,115,108,105,99,101,40,41,59,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,99,111,110,102,105,103,46,97,115,121,110,99,41,32,123,92,110,32,32,32,32,47,47,32,115,117,98,115,32,97,114,101,110,39,116,32,115,111,114,116,101,100,32,105,110,32,115,99,104,101,100,117,108,101,114,32,105,102,32,110,111,116,32,114,117,110,110,105,110,103,32,97,115,121,110,99,92,110,32,32,32,32,47,47,32,119,101,32,110,101,101,100,32,116,111,32,115,111,114,116,32,116,104,101,109,32,110,111,119,32,116,111,32,109,97,107,101,32,115,117,114,101,32,116,104,101,121,32,102,105,114,101,32,105,110,32,99,111,114,114,101,99,116,92,110,32,32,32,32,47,47,32,111,114,100,101,114,92,110,32,32,32,32,115,117,98,115,46,115,111,114,116,40,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,32,114,101,116,117,114,110,32,97,46,105,100,32,45,32,98,46,105,100,59,32,125,41,59,92,110,32,32,125,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,32,61,32,115,117,98,115,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,115,117,98,115,91,105,93,46,117,112,100,97,116,101,40,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,32,84,104,101,32,99,117,114,114,101,110,116,32,116,97,114,103,101,116,32,119,97,116,99,104,101,114,32,98,101,105,110,103,32,101,118,97,108,117,97,116,101,100,46,92,110,47,47,32,84,104,105,115,32,105,115,32,103,108,111,98,97,108,108,121,32,117,110,105,113,117,101,32,98,101,99,97,117,115,101,32,111,110,108,121,32,111,110,101,32,119,97,116,99,104,101,114,92,110,47,47,32,99,97,110,32,98,101,32,101,118,97,108,117,97,116,101,100,32,97,116,32,97,32,116,105,109,101,46,92,110,68,101,112,46,116,97,114,103,101,116,32,61,32,110,117,108,108,59,92,110,118,97,114,32,116,97,114,103,101,116,83,116,97,99,107,32,61,32,91,93,59,92,110,92,110,102,117,110,99,116,105,111,110,32,112,117,115,104,84,97,114,103,101,116,32,40,116,97,114,103,101,116,41,32,123,92,110,32,32,116,97,114,103,101,116,83,116,97,99,107,46,112,117,115,104,40,116,97,114,103,101,116,41,59,92,110,32,32,68,101,112,46,116,97,114,103,101,116,32,61,32,116,97,114,103,101,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,111,112,84,97,114,103,101,116,32,40,41,32,123,92,110,32,32,116,97,114,103,101,116,83,116,97,99,107,46,112,111,112,40,41,59,92,110,32,32,68,101,112,46,116,97,114,103,101,116,32,61,32,116,97,114,103,101,116,83,116,97,99,107,91,116,97,114,103,101,116,83,116,97,99,107,46,108,101,110,103,116,104,32,45,32,49,93,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,86,78,111,100,101,32,61,32,102,117,110,99,116,105,111,110,32,86,78,111,100,101,32,40,92,110,32,32,116,97,103,44,92,110,32,32,100,97,116,97,44,92,110,32,32,99,104,105,108,100,114,101,110,44,92,110,32,32,116,101,120,116,44,92,110,32,32,101,108,109,44,92,110,32,32,99,111,110,116,101,120,116,44,92,110,32,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,44,92,110,32,32,97,115,121,110,99,70,97,99,116,111,114,121,92,110,41,32,123,92,110,32,32,116,104,105,115,46,116,97,103,32,61,32,116,97,103,59,92,110,32,32,116,104,105,115,46,100,97,116,97,32,61,32,100,97,116,97,59,92,110,32,32,116,104,105,115,46,99,104,105,108,100,114,101,110,32,61,32,99,104,105,108,100,114,101,110,59,92,110,32,32,116,104,105,115,46,116,101,120,116,32,61,32,116,101,120,116,59,92,110,32,32,116,104,105,115,46,101,108,109,32,61,32,101,108,109,59,92,110,32,32,116,104,105,115,46,110,115,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,116,104,105,115,46,99,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,59,92,110,32,32,116,104,105,115,46,102,110,67,111,110,116,101,120,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,116,104,105,115,46,102,110,79,112,116,105,111,110,115,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,116,104,105,115,46,102,110,83,99,111,112,101,73,100,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,116,104,105,115,46,107,101,121,32,61,32,100,97,116,97,32,38,38,32,100,97,116,97,46,107,101,121,59,92,110,32,32,116,104,105,115,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,32,61,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,59,92,110,32,32,116,104,105,115,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,116,104,105,115,46,112,97,114,101,110,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,116,104,105,115,46,114,97,119,32,61,32,102,97,108,115,101,59,92,110,32,32,116,104,105,115,46,105,115,83,116,97,116,105,99,32,61,32,102,97,108,115,101,59,92,110,32,32,116,104,105,115,46,105,115,82,111,111,116,73,110,115,101,114,116,32,61,32,116,114,117,101,59,92,110,32,32,116,104,105,115,46,105,115,67,111,109,109,101,110,116,32,61,32,102,97,108,115,101,59,92,110,32,32,116,104,105,115,46,105,115,67,108,111,110,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,116,104,105,115,46,105,115,79,110,99,101,32,61,32,102,97,108,115,101,59,92,110,32,32,116,104,105,115,46,97,115,121,110,99,70,97,99,116,111,114,121,32,61,32,97,115,121,110,99,70,97,99,116,111,114,121,59,92,110,32,32,116,104,105,115,46,97,115,121,110,99,77,101,116,97,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,116,104,105,115,46,105,115,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,32,61,32,102,97,108,115,101,59,92,110,125,59,92,110,92,110,118,97,114,32,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,32,61,32,123,32,99,104,105,108,100,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,32,125,59,92,110,92,110,47,47,32,68,69,80,82,69,67,65,84,69,68,58,32,97,108,105,97,115,32,102,111,114,32,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,32,102,111,114,32,98,97,99,107,119,97,114,100,115,32,99,111,109,112,97,116,46,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,99,104,105,108,100,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,92,110,125,59,92,110,92,110,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,32,86,78,111,100,101,46,112,114,111,116,111,116,121,112,101,44,32,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,32,41,59,92,110,92,110,118,97,114,32,99,114,101,97,116,101,69,109,112,116,121,86,78,111,100,101,32,61,32,102,117,110,99,116,105,111,110,32,40,116,101,120,116,41,32,123,92,110,32,32,105,102,32,40,32,116,101,120,116,32,61,61,61,32,118,111,105,100,32,48,32,41,32,116,101,120,116,32,61,32,39,39,59,92,110,92,110,32,32,118,97,114,32,110,111,100,101,32,61,32,110,101,119,32,86,78,111,100,101,40,41,59,92,110,32,32,110,111,100,101,46,116,101,120,116,32,61,32,116,101,120,116,59,92,110,32,32,110,111,100,101,46,105,115,67,111,109,109,101,110,116,32,61,32,116,114,117,101,59,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,32,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,86,78,111,100,101,40,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,83,116,114,105,110,103,40,118,97,108,41,41,92,110,125,92,110,92,110,47,47,32,111,112,116,105,109,105,122,101,100,32,115,104,97,108,108,111,119,32,99,108,111,110,101,92,110,47,47,32,117,115,101,100,32,102,111,114,32,115,116,97,116,105,99,32,110,111,100,101,115,32,97,110,100,32,115,108,111,116,32,110,111,100,101,115,32,98,101,99,97,117,115,101,32,116,104,101,121,32,109,97,121,32,98,101,32,114,101,117,115,101,100,32,97,99,114,111,115,115,92,110,47,47,32,109,117,108,116,105,112,108,101,32,114,101,110,100,101,114,115,44,32,99,108,111,110,105,110,103,32,116,104,101,109,32,97,118,111,105,100,115,32,101,114,114,111,114,115,32,119,104,101,110,32,68,79,77,32,109,97,110,105,112,117,108,97,116,105,111,110,115,32,114,101,108,121,92,110,47,47,32,111,110,32,116,104,101,105,114,32,101,108,109,32,114,101,102,101,114,101,110,99,101,46,92,110,102,117,110,99,116,105,111,110,32,99,108,111,110,101,86,78,111,100,101,32,40,118,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,99,108,111,110,101,100,32,61,32,110,101,119,32,86,78,111,100,101,40,92,110,32,32,32,32,118,110,111,100,101,46,116,97,103,44,92,110,32,32,32,32,118,110,111,100,101,46,100,97,116,97,44,92,110,32,32,32,32,47,47,32,35,55,57,55,53,92,110,32,32,32,32,47,47,32,99,108,111,110,101,32,99,104,105,108,100,114,101,110,32,97,114,114,97,121,32,116,111,32,97,118,111,105,100,32,109,117,116,97,116,105,110,103,32,111,114,105,103,105,110,97,108,32,105,110,32,99,97,115,101,32,111,102,32,99,108,111,110,105,110,103,92,110,32,32,32,32,47,47,32,97,32,99,104,105,108,100,46,92,110,32,32,32,32,118,110,111,100,101,46,99,104,105,108,100,114,101,110,32,38,38,32,118,110,111,100,101,46,99,104,105,108,100,114,101,110,46,115,108,105,99,101,40,41,44,92,110,32,32,32,32,118,110,111,100,101,46,116,101,120,116,44,92,110,32,32,32,32,118,110,111,100,101,46,101,108,109,44,92,110,32,32,32,32,118,110,111,100,101,46,99,111,110,116,101,120,116,44,92,110,32,32,32,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,44,92,110,32,32,32,32,118,110,111,100,101,46,97,115,121,110,99,70,97,99,116,111,114,121,92,110,32,32,41,59,92,110,32,32,99,108,111,110,101,100,46,110,115,32,61,32,118,110,111,100,101,46,110,115,59,92,110,32,32,99,108,111,110,101,100,46,105,115,83,116,97,116,105,99,32,61,32,118,110,111,100,101,46,105,115,83,116,97,116,105,99,59,92,110,32,32,99,108,111,110,101,100,46,107,101,121,32,61,32,118,110,111,100,101,46,107,101,121,59,92,110,32,32,99,108,111,110,101,100,46,105,115,67,111,109,109,101,110,116,32,61,32,118,110,111,100,101,46,105,115,67,111,109,109,101,110,116,59,92,110,32,32,99,108,111,110,101,100,46,102,110,67,111,110,116,101,120,116,32,61,32,118,110,111,100,101,46,102,110,67,111,110,116,101,120,116,59,92,110,32,32,99,108,111,110,101,100,46,102,110,79,112,116,105,111,110,115,32,61,32,118,110,111,100,101,46,102,110,79,112,116,105,111,110,115,59,92,110,32,32,99,108,111,110,101,100,46,102,110,83,99,111,112,101,73,100,32,61,32,118,110,111,100,101,46,102,110,83,99,111,112,101,73,100,59,92,110,32,32,99,108,111,110,101,100,46,97,115,121,110,99,77,101,116,97,32,61,32,118,110,111,100,101,46,97,115,121,110,99,77,101,116,97,59,92,110,32,32,99,108,111,110,101,100,46,105,115,67,108,111,110,101,100,32,61,32,116,114,117,101,59,92,110,32,32,114,101,116,117,114,110,32,99,108,111,110,101,100,92,110,125,92,110,92,110,47,42,92,110,32,42,32,110,111,116,32,116,121,112,101,32,99,104,101,99,107,105,110,103,32,116,104,105,115,32,102,105,108,101,32,98,101,99,97,117,115,101,32,102,108,111,119,32,100,111,101,115,110,39,116,32,112,108,97,121,32,119,101,108,108,32,119,105,116,104,92,110,32,42,32,100,121,110,97,109,105,99,97,108,108,121,32,97,99,99,101,115,115,105,110,103,32,109,101,116,104,111,100,115,32,111,110,32,65,114,114,97,121,32,112,114,111,116,111,116,121,112,101,92,110,32,42,47,92,110,92,110,118,97,114,32,97,114,114,97,121,80,114,111,116,111,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,59,92,110,118,97,114,32,97,114,114,97,121,77,101,116,104,111,100,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,97,114,114,97,121,80,114,111,116,111,41,59,92,110,92,110,118,97,114,32,109,101,116,104,111,100,115,84,111,80,97,116,99,104,32,61,32,91,92,110,32,32,39,112,117,115,104,39,44,92,110,32,32,39,112,111,112,39,44,92,110,32,32,39,115,104,105,102,116,39,44,92,110,32,32,39,117,110,115,104,105,102,116,39,44,92,110,32,32,39,115,112,108,105,99,101,39,44,92,110,32,32,39,115,111,114,116,39,44,92,110,32,32,39,114,101,118,101,114,115,101,39,92,110,93,59,92,110,92,110,47,42,42,92,110,32,42,32,73,110,116,101,114,99,101,112,116,32,109,117,116,97,116,105,110,103,32,109,101,116,104,111,100,115,32,97,110,100,32,101,109,105,116,32,101,118,101,110,116,115,92,110,32,42,47,92,110,109,101,116,104,111,100,115,84,111,80,97,116,99,104,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,109,101,116,104,111,100,41,32,123,92,110,32,32,47,47,32,99,97,99,104,101,32,111,114,105,103,105,110,97,108,32,109,101,116,104,111,100,92,110,32,32,118,97,114,32,111,114,105,103,105,110,97,108,32,61,32,97,114,114,97,121,80,114,111,116,111,91,109,101,116,104,111,100,93,59,92,110,32,32,100,101,102,40,97,114,114,97,121,77,101,116,104,111,100,115,44,32,109,101,116,104,111,100,44,32,102,117,110,99,116,105,111,110,32,109,117,116,97,116,111,114,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,41,32,97,114,103,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,93,59,92,110,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,111,114,105,103,105,110,97,108,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,115,41,59,92,110,32,32,32,32,118,97,114,32,111,98,32,61,32,116,104,105,115,46,95,95,111,98,95,95,59,92,110,32,32,32,32,118,97,114,32,105,110,115,101,114,116,101,100,59,92,110,32,32,32,32,115,119,105,116,99,104,32,40,109,101,116,104,111,100,41,32,123,92,110,32,32,32,32,32,32,99,97,115,101,32,39,112,117,115,104,39,58,92,110,32,32,32,32,32,32,99,97,115,101,32,39,117,110,115,104,105,102,116,39,58,92,110,32,32,32,32,32,32,32,32,105,110,115,101,114,116,101,100,32,61,32,97,114,103,115,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,32,32,99,97,115,101,32,39,115,112,108,105,99,101,39,58,92,110,32,32,32,32,32,32,32,32,105,110,115,101,114,116,101,100,32,61,32,97,114,103,115,46,115,108,105,99,101,40,50,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,105,110,115,101,114,116,101,100,41,32,123,32,111,98,46,111,98,115,101,114,118,101,65,114,114,97,121,40,105,110,115,101,114,116,101,100,41,59,32,125,92,110,32,32,32,32,47,47,32,110,111,116,105,102,121,32,99,104,97,110,103,101,92,110,32,32,32,32,111,98,46,100,101,112,46,110,111,116,105,102,121,40,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,92,110,32,32,125,41,59,92,110,125,41,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,97,114,114,97,121,75,101,121,115,32,61,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,97,114,114,97,121,77,101,116,104,111,100,115,41,59,92,110,92,110,47,42,42,92,110,32,42,32,73,110,32,115,111,109,101,32,99,97,115,101,115,32,119,101,32,109,97,121,32,119,97,110,116,32,116,111,32,100,105,115,97,98,108,101,32,111,98,115,101,114,118,97,116,105,111,110,32,105,110,115,105,100,101,32,97,32,99,111,109,112,111,110,101,110,116,39,115,92,110,32,42,32,117,112,100,97,116,101,32,99,111,109,112,117,116,97,116,105,111,110,46,92,110,32,42,47,92,110,118,97,114,32,115,104,111,117,108,100,79,98,115,101,114,118,101,32,61,32,116,114,117,101,59,92,110,92,110,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,79,98,115,101,114,118,105,110,103,32,40,118,97,108,117,101,41,32,123,92,110,32,32,115,104,111,117,108,100,79,98,115,101,114,118,101,32,61,32,118,97,108,117,101,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,79,98,115,101,114,118,101,114,32,99,108,97,115,115,32,116,104,97,116,32,105,115,32,97,116,116,97,99,104,101,100,32,116,111,32,101,97,99,104,32,111,98,115,101,114,118,101,100,92,110,32,42,32,111,98,106,101,99,116,46,32,79,110,99,101,32,97,116,116,97,99,104,101,100,44,32,116,104,101,32,111,98,115,101,114,118,101,114,32,99,111,110,118,101,114,116,115,32,116,104,101,32,116,97,114,103,101,116,92,110,32,42,32,111,98,106,101,99,116,39,115,32,112,114,111,112,101,114,116,121,32,107,101,121,115,32,105,110,116,111,32,103,101,116,116,101,114,47,115,101,116,116,101,114,115,32,116,104,97,116,92,110,32,42,32,99,111,108,108,101,99,116,32,100,101,112,101,110,100,101,110,99,105,101,115,32,97,110,100,32,100,105,115,112,97,116,99,104,32,117,112,100,97,116,101,115,46,92,110,32,42,47,92,110,118,97,114,32,79,98,115,101,114,118,101,114,32,61,32,102,117,110,99,116,105,111,110,32,79,98,115,101,114,118,101,114,32,40,118,97,108,117,101,41,32,123,92,110,32,32,116,104,105,115,46,118,97,108,117,101,32,61,32,118,97,108,117,101,59,92,110,32,32,116,104,105,115,46,100,101,112,32,61,32,110,101,119,32,68,101,112,40,41,59,92,110,32,32,116,104,105,115,46,118,109,67,111,117,110,116,32,61,32,48,59,92,110,32,32,100,101,102,40,118,97,108,117,101,44,32,39,95,95,111,98,95,95,39,44,32,116,104,105,115,41,59,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,105,102,32,40,104,97,115,80,114,111,116,111,41,32,123,92,110,32,32,32,32,32,32,112,114,111,116,111,65,117,103,109,101,110,116,40,118,97,108,117,101,44,32,97,114,114,97,121,77,101,116,104,111,100,115,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,99,111,112,121,65,117,103,109,101,110,116,40,118,97,108,117,101,44,32,97,114,114,97,121,77,101,116,104,111,100,115,44,32,97,114,114,97,121,75,101,121,115,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,104,105,115,46,111,98,115,101,114,118,101,65,114,114,97,121,40,118,97,108,117,101,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,116,104,105,115,46,119,97,108,107,40,118,97,108,117,101,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,87,97,108,107,32,116,104,114,111,117,103,104,32,97,108,108,32,112,114,111,112,101,114,116,105,101,115,32,97,110,100,32,99,111,110,118,101,114,116,32,116,104,101,109,32,105,110,116,111,92,110,32,42,32,103,101,116,116,101,114,47,115,101,116,116,101,114,115,46,32,84,104,105,115,32,109,101,116,104,111,100,32,115,104,111,117,108,100,32,111,110,108,121,32,98,101,32,99,97,108,108,101,100,32,119,104,101,110,92,110,32,42,32,118,97,108,117,101,32,116,121,112,101,32,105,115,32,79,98,106,101,99,116,46,92,110,32,42,47,92,110,79,98,115,101,114,118,101,114,46,112,114,111,116,111,116,121,112,101,46,119,97,108,107,32,61,32,102,117,110,99,116,105,111,110,32,119,97,108,107,32,40,111,98,106,41,32,123,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,41,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,107,101,121,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,100,101,102,105,110,101,82,101,97,99,116,105,118,101,36,36,49,40,111,98,106,44,32,107,101,121,115,91,105,93,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,79,98,115,101,114,118,101,32,97,32,108,105,115,116,32,111,102,32,65,114,114,97,121,32,105,116,101,109,115,46,92,110,32,42,47,92,110,79,98,115,101,114,118,101,114,46,112,114,111,116,111,116,121,112,101,46,111,98,115,101,114,118,101,65,114,114,97,121,32,61,32,102,117,110,99,116,105,111,110,32,111,98,115,101,114,118,101,65,114,114,97,121,32,40,105,116,101,109,115,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,32,61,32,105,116,101,109,115,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,111,98,115,101,114,118,101,40,105,116,101,109,115,91,105,93,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,32,104,101,108,112,101,114,115,92,110,92,110,47,42,42,92,110,32,42,32,65,117,103,109,101,110,116,32,97,32,116,97,114,103,101,116,32,79,98,106,101,99,116,32,111,114,32,65,114,114,97,121,32,98,121,32,105,110,116,101,114,99,101,112,116,105,110,103,92,110,32,42,32,116,104,101,32,112,114,111,116,111,116,121,112,101,32,99,104,97,105,110,32,117,115,105,110,103,32,95,95,112,114,111,116,111,95,95,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,112,114,111,116,111,65,117,103,109,101,110,116,32,40,116,97,114,103,101,116,44,32,115,114,99,41,32,123,92,110,32,32,47,42,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,32,110,111,45,112,114,111,116,111,32,42,47,92,110,32,32,116,97,114,103,101,116,46,95,95,112,114,111,116,111,95,95,32,61,32,115,114,99,59,92,110,32,32,47,42,32,101,115,108,105,110,116,45,101,110,97,98,108,101,32,110,111,45,112,114,111,116,111,32,42,47,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,65,117,103,109,101,110,116,32,97,32,116,97,114,103,101,116,32,79,98,106,101,99,116,32,111,114,32,65,114,114,97,121,32,98,121,32,100,101,102,105,110,105,110,103,92,110,32,42,32,104,105,100,100,101,110,32,112,114,111,112,101,114,116,105,101,115,46,92,110,32,42,47,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,102,117,110,99,116,105,111,110,32,99,111,112,121,65,117,103,109,101,110,116,32,40,116,97,114,103,101,116,44,32,115,114,99,44,32,107,101,121,115,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,32,61,32,107,101,121,115,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,107,101,121,32,61,32,107,101,121,115,91,105,93,59,92,110,32,32,32,32,100,101,102,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,114,99,91,107,101,121,93,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,65,116,116,101,109,112,116,32,116,111,32,99,114,101,97,116,101,32,97,110,32,111,98,115,101,114,118,101,114,32,105,110,115,116,97,110,99,101,32,102,111,114,32,97,32,118,97,108,117,101,44,92,110,32,42,32,114,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,111,98,115,101,114,118,101,114,32,105,102,32,115,117,99,99,101,115,115,102,117,108,108,121,32,111,98,115,101,114,118,101,100,44,92,110,32,42,32,111,114,32,116,104,101,32,101,120,105,115,116,105,110,103,32,111,98,115,101,114,118,101,114,32,105,102,32,116,104,101,32,118,97,108,117,101,32,97,108,114,101,97,100,121,32,104,97,115,32,111,110,101,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,111,98,115,101,114,118,101,32,40,118,97,108,117,101,44,32,97,115,82,111,111,116,68,97,116,97,41,32,123,92,110,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,118,97,108,117,101,41,32,124,124,32,118,97,108,117,101,32,105,110,115,116,97,110,99,101,111,102,32,86,78,111,100,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,118,97,114,32,111,98,59,92,110,32,32,105,102,32,40,104,97,115,79,119,110,40,118,97,108,117,101,44,32,39,95,95,111,98,95,95,39,41,32,38,38,32,118,97,108,117,101,46,95,95,111,98,95,95,32,105,110,115,116,97,110,99,101,111,102,32,79,98,115,101,114,118,101,114,41,32,123,92,110,32,32,32,32,111,98,32,61,32,118,97,108,117,101,46,95,95,111,98,95,95,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,92,110,32,32,32,32,115,104,111,117,108,100,79,98,115,101,114,118,101,32,38,38,92,110,32,32,32,32,33,105,115,83,101,114,118,101,114,82,101,110,100,101,114,105,110,103,40,41,32,38,38,92,110,32,32,32,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,117,101,41,32,124,124,32,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,117,101,41,41,32,38,38,92,110,32,32,32,32,79,98,106,101,99,116,46,105,115,69,120,116,101,110,115,105,98,108,101,40,118,97,108,117,101,41,32,38,38,92,110,32,32,32,32,33,118,97,108,117,101,46,95,105,115,86,117,101,92,110,32,32,41,32,123,92,110,32,32,32,32,111,98,32,61,32,110,101,119,32,79,98,115,101,114,118,101,114,40,118,97,108,117,101,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,97,115,82,111,111,116,68,97,116,97,32,38,38,32,111,98,41,32,123,92,110,32,32,32,32,111,98,46,118,109,67,111,117,110,116,43,43,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,111,98,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,102,105,110,101,32,97,32,114,101,97,99,116,105,118,101,32,112,114,111,112,101,114,116,121,32,111,110,32,97,110,32,79,98,106,101,99,116,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,82,101,97,99,116,105,118,101,36,36,49,32,40,92,110,32,32,111,98,106,44,92,110,32,32,107,101,121,44,92,110,32,32,118,97,108,44,92,110,32,32,99,117,115,116,111,109,83,101,116,116,101,114,44,92,110,32,32,115,104,97,108,108,111,119,92,110,41,32,123,92,110,32,32,118,97,114,32,100,101,112,32,61,32,110,101,119,32,68,101,112,40,41,59,92,110,92,110,32,32,118,97,114,32,112,114,111,112,101,114,116,121,32,61,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,111,98,106,44,32,107,101,121,41,59,92,110,32,32,105,102,32,40,112,114,111,112,101,114,116,121,32,38,38,32,112,114,111,112,101,114,116,121,46,99,111,110,102,105,103,117,114,97,98,108,101,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,47,47,32,99,97,116,101,114,32,102,111,114,32,112,114,101,45,100,101,102,105,110,101,100,32,103,101,116,116,101,114,47,115,101,116,116,101,114,115,92,110,32,32,118,97,114,32,103,101,116,116,101,114,32,61,32,112,114,111,112,101,114,116,121,32,38,38,32,112,114,111,112,101,114,116,121,46,103,101,116,59,92,110,32,32,118,97,114,32,115,101,116,116,101,114,32,61,32,112,114,111,112,101,114,116,121,32,38,38,32,112,114,111,112,101,114,116,121,46,115,101,116,59,92,110,32,32,105,102,32,40,40,33,103,101,116,116,101,114,32,124,124,32,115,101,116,116,101,114,41,32,38,38,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,61,61,61,32,50,41,32,123,92,110,32,32,32,32,118,97,108,32,61,32,111,98,106,91,107,101,121,93,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,104,105,108,100,79,98,32,61,32,33,115,104,97,108,108,111,119,32,38,38,32,111,98,115,101,114,118,101,40,118,97,108,41,59,92,110,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,111,98,106,44,32,107,101,121,44,32,123,92,110,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,114,101,97,99,116,105,118,101,71,101,116,116,101,114,32,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,103,101,116,116,101,114,32,63,32,103,101,116,116,101,114,46,99,97,108,108,40,111,98,106,41,32,58,32,118,97,108,59,92,110,32,32,32,32,32,32,105,102,32,40,68,101,112,46,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,112,46,100,101,112,101,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,79,98,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,79,98,46,100,101,112,46,100,101,112,101,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,101,112,101,110,100,65,114,114,97,121,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,58,32,102,117,110,99,116,105,111,110,32,114,101,97,99,116,105,118,101,83,101,116,116,101,114,32,40,110,101,119,86,97,108,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,103,101,116,116,101,114,32,63,32,103,101,116,116,101,114,46,99,97,108,108,40,111,98,106,41,32,58,32,118,97,108,59,92,110,32,32,32,32,32,32,47,42,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,32,110,111,45,115,101,108,102,45,99,111,109,112,97,114,101,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,110,101,119,86,97,108,32,61,61,61,32,118,97,108,117,101,32,124,124,32,40,110,101,119,86,97,108,32,33,61,61,32,110,101,119,86,97,108,32,38,38,32,118,97,108,117,101,32,33,61,61,32,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,42,32,101,115,108,105,110,116,45,101,110,97,98,108,101,32,110,111,45,115,101,108,102,45,99,111,109,112,97,114,101,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,99,117,115,116,111,109,83,101,116,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,99,117,115,116,111,109,83,101,116,116,101,114,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,35,55,57,56,49,58,32,102,111,114,32,97,99,99,101,115,115,111,114,32,112,114,111,112,101,114,116,105,101,115,32,119,105,116,104,111,117,116,32,115,101,116,116,101,114,92,110,32,32,32,32,32,32,105,102,32,40,103,101,116,116,101,114,32,38,38,32,33,115,101,116,116,101,114,41,32,123,32,114,101,116,117,114,110,32,125,92,110,32,32,32,32,32,32,105,102,32,40,115,101,116,116,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,115,101,116,116,101,114,46,99,97,108,108,40,111,98,106,44,32,110,101,119,86,97,108,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,32,61,32,110,101,119,86,97,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,104,105,108,100,79,98,32,61,32,33,115,104,97,108,108,111,119,32,38,38,32,111,98,115,101,114,118,101,40,110,101,119,86,97,108,41,59,92,110,32,32,32,32,32,32,100,101,112,46,110,111,116,105,102,121,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,83,101,116,32,97,32,112,114,111,112,101,114,116,121,32,111,110,32,97,110,32,111,98,106,101,99,116,46,32,65,100,100,115,32,116,104,101,32,110,101,119,32,112,114,111,112,101,114,116,121,32,97,110,100,92,110,32,42,32,116,114,105,103,103,101,114,115,32,99,104,97,110,103,101,32,110,111,116,105,102,105,99,97,116,105,111,110,32,105,102,32,116,104,101,32,112,114,111,112,101,114,116,121,32,100,111,101,115,110,39,116,92,110,32,42,32,97,108,114,101,97,100,121,32,101,120,105,115,116,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,115,101,116,32,40,116,97,114,103,101,116,44,32,107,101,121,44,32,118,97,108,41,32,123,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,92,110,32,32,32,32,40,105,115,85,110,100,101,102,40,116,97,114,103,101,116,41,32,124,124,32,105,115,80,114,105,109,105,116,105,118,101,40,116,97,114,103,101,116,41,41,92,110,32,32,41,32,123,92,110,32,32,32,32,119,97,114,110,40,40,92,34,67,97,110,110,111,116,32,115,101,116,32,114,101,97,99,116,105,118,101,32,112,114,111,112,101,114,116,121,32,111,110,32,117,110,100,101,102,105,110,101,100,44,32,110,117,108,108,44,32,111,114,32,112,114,105,109,105,116,105,118,101,32,118,97,108,117,101,58,32,92,34,32,43,32,40,40,116,97,114,103,101,116,41,41,41,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,97,114,103,101,116,41,32,38,38,32,105,115,86,97,108,105,100,65,114,114,97,121,73,110,100,101,120,40,107,101,121,41,41,32,123,92,110,32,32,32,32,116,97,114,103,101,116,46,108,101,110,103,116,104,32,61,32,77,97,116,104,46,109,97,120,40,116,97,114,103,101,116,46,108,101,110,103,116,104,44,32,107,101,121,41,59,92,110,32,32,32,32,116,97,114,103,101,116,46,115,112,108,105,99,101,40,107,101,121,44,32,49,44,32,118,97,108,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,92,110,32,32,125,92,110,32,32,105,102,32,40,107,101,121,32,105,110,32,116,97,114,103,101,116,32,38,38,32,33,40,107,101,121,32,105,110,32,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,41,41,32,123,92,110,32,32,32,32,116,97,114,103,101,116,91,107,101,121,93,32,61,32,118,97,108,59,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,92,110,32,32,125,92,110,32,32,118,97,114,32,111,98,32,61,32,40,116,97,114,103,101,116,41,46,95,95,111,98,95,95,59,92,110,32,32,105,102,32,40,116,97,114,103,101,116,46,95,105,115,86,117,101,32,124,124,32,40,111,98,32,38,38,32,111,98,46,118,109,67,111,117,110,116,41,41,32,123,92,110,32,32,32,32,32,116,114,117,101,32,38,38,32,119,97,114,110,40,92,110,32,32,32,32,32,32,39,65,118,111,105,100,32,97,100,100,105,110,103,32,114,101,97,99,116,105,118,101,32,112,114,111,112,101,114,116,105,101,115,32,116,111,32,97,32,86,117,101,32,105,110,115,116,97,110,99,101,32,111,114,32,105,116,115,32,114,111,111,116,32,36,100,97,116,97,32,39,32,43,92,110,32,32,32,32,32,32,39,97,116,32,114,117,110,116,105,109,101,32,45,32,100,101,99,108,97,114,101,32,105,116,32,117,112,102,114,111,110,116,32,105,110,32,116,104,101,32,100,97,116,97,32,111,112,116,105,111,110,46,39,92,110,32,32,32,32,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,92,110,32,32,125,92,110,32,32,105,102,32,40,33,111,98,41,32,123,92,110,32,32,32,32,116,97,114,103,101,116,91,107,101,121,93,32,61,32,118,97,108,59,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,92,110,32,32,125,92,110,32,32,100,101,102,105,110,101,82,101,97,99,116,105,118,101,36,36,49,40,111,98,46,118,97,108,117,101,44,32,107,101,121,44,32,118,97,108,41,59,92,110,32,32,111,98,46,100,101,112,46,110,111,116,105,102,121,40,41,59,92,110,32,32,114,101,116,117,114,110,32,118,97,108,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,108,101,116,101,32,97,32,112,114,111,112,101,114,116,121,32,97,110,100,32,116,114,105,103,103,101,114,32,99,104,97,110,103,101,32,105,102,32,110,101,99,101,115,115,97,114,121,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,100,101,108,32,40,116,97,114,103,101,116,44,32,107,101,121,41,32,123,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,92,110,32,32,32,32,40,105,115,85,110,100,101,102,40,116,97,114,103,101,116,41,32,124,124,32,105,115,80,114,105,109,105,116,105,118,101,40,116,97,114,103,101,116,41,41,92,110,32,32,41,32,123,92,110,32,32,32,32,119,97,114,110,40,40,92,34,67,97,110,110,111,116,32,100,101,108,101,116,101,32,114,101,97,99,116,105,118,101,32,112,114,111,112,101,114,116,121,32,111,110,32,117,110,100,101,102,105,110,101,100,44,32,110,117,108,108,44,32,111,114,32,112,114,105,109,105,116,105,118,101,32,118,97,108,117,101,58,32,92,34,32,43,32,40,40,116,97,114,103,101,116,41,41,41,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,97,114,103,101,116,41,32,38,38,32,105,115,86,97,108,105,100,65,114,114,97,121,73,110,100,101,120,40,107,101,121,41,41,32,123,92,110,32,32,32,32,116,97,114,103,101,116,46,115,112,108,105,99,101,40,107,101,121,44,32,49,41,59,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,118,97,114,32,111,98,32,61,32,40,116,97,114,103,101,116,41,46,95,95,111,98,95,95,59,92,110,32,32,105,102,32,40,116,97,114,103,101,116,46,95,105,115,86,117,101,32,124,124,32,40,111,98,32,38,38,32,111,98,46,118,109,67,111,117,110,116,41,41,32,123,92,110,32,32,32,32,32,116,114,117,101,32,38,38,32,119,97,114,110,40,92,110,32,32,32,32,32,32,39,65,118,111,105,100,32,100,101,108,101,116,105,110,103,32,112,114,111,112,101,114,116,105,101,115,32,111,110,32,97,32,86,117,101,32,105,110,115,116,97,110,99,101,32,111,114,32,105,116,115,32,114,111,111,116,32,36,100,97,116,97,32,39,32,43,92,110,32,32,32,32,32,32,39,45,32,106,117,115,116,32,115,101,116,32,105,116,32,116,111,32,110,117,108,108,46,39,92,110,32,32,32,32,41,59,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,105,102,32,40,33,104,97,115,79,119,110,40,116,97,114,103,101,116,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,100,101,108,101,116,101,32,116,97,114,103,101,116,91,107,101,121,93,59,92,110,32,32,105,102,32,40,33,111,98,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,111,98,46,100,101,112,46,110,111,116,105,102,121,40,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,67,111,108,108,101,99,116,32,100,101,112,101,110,100,101,110,99,105,101,115,32,111,110,32,97,114,114,97,121,32,101,108,101,109,101,110,116,115,32,119,104,101,110,32,116,104,101,32,97,114,114,97,121,32,105,115,32,116,111,117,99,104,101,100,44,32,115,105,110,99,101,92,110,32,42,32,119,101,32,99,97,110,110,111,116,32,105,110,116,101,114,99,101,112,116,32,97,114,114,97,121,32,101,108,101,109,101,110,116,32,97,99,99,101,115,115,32,108,105,107,101,32,112,114,111,112,101,114,116,121,32,103,101,116,116,101,114,115,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,100,101,112,101,110,100,65,114,114,97,121,32,40,118,97,108,117,101,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,101,32,61,32,40,118,111,105,100,32,48,41,44,32,105,32,61,32,48,44,32,108,32,61,32,118,97,108,117,101,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,101,32,61,32,118,97,108,117,101,91,105,93,59,92,110,32,32,32,32,101,32,38,38,32,101,46,95,95,111,98,95,95,32,38,38,32,101,46,95,95,111,98,95,95,46,100,101,112,46,100,101,112,101,110,100,40,41,59,92,110,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,32,123,92,110,32,32,32,32,32,32,100,101,112,101,110,100,65,114,114,97,121,40,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,79,112,116,105,111,110,32,111,118,101,114,119,114,105,116,105,110,103,32,115,116,114,97,116,101,103,105,101,115,32,97,114,101,32,102,117,110,99,116,105,111,110,115,32,116,104,97,116,32,104,97,110,100,108,101,92,110,32,42,32,104,111,119,32,116,111,32,109,101,114,103,101,32,97,32,112,97,114,101,110,116,32,111,112,116,105,111,110,32,118,97,108,117,101,32,97,110,100,32,97,32,99,104,105,108,100,32,111,112,116,105,111,110,92,110,32,42,32,118,97,108,117,101,32,105,110,116,111,32,116,104,101,32,102,105,110,97,108,32,118,97,108,117,101,46,92,110,32,42,47,92,110,118,97,114,32,115,116,114,97,116,115,32,61,32,99,111,110,102,105,103,46,111,112,116,105,111,110,77,101,114,103,101,83,116,114,97,116,101,103,105,101,115,59,92,110,92,110,47,42,42,92,110,32,42,32,79,112,116,105,111,110,115,32,119,105,116,104,32,114,101,115,116,114,105,99,116,105,111,110,115,92,110,32,42,47,92,110,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,115,116,114,97,116,115,46,101,108,32,61,32,115,116,114,97,116,115,46,112,114,111,112,115,68,97,116,97,32,61,32,102,117,110,99,116,105,111,110,32,40,112,97,114,101,110,116,44,32,99,104,105,108,100,44,32,118,109,44,32,107,101,121,41,32,123,92,110,32,32,32,32,105,102,32,40,33,118,109,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,92,34,111,112,116,105,111,110,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,32,99,97,110,32,111,110,108,121,32,98,101,32,117,115,101,100,32,100,117,114,105,110,103,32,105,110,115,116,97,110,99,101,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,39,99,114,101,97,116,105,111,110,32,119,105,116,104,32,116,104,101,32,96,110,101,119,96,32,107,101,121,119,111,114,100,46,39,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,100,101,102,97,117,108,116,83,116,114,97,116,40,112,97,114,101,110,116,44,32,99,104,105,108,100,41,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,72,101,108,112,101,114,32,116,104,97,116,32,114,101,99,117,114,115,105,118,101,108,121,32,109,101,114,103,101,115,32,116,119,111,32,100,97,116,97,32,111,98,106,101,99,116,115,32,116,111,103,101,116,104,101,114,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,109,101,114,103,101,68,97,116,97,32,40,116,111,44,32,102,114,111,109,41,32,123,92,110,32,32,105,102,32,40,33,102,114,111,109,41,32,123,32,114,101,116,117,114,110,32,116,111,32,125,92,110,32,32,118,97,114,32,107,101,121,44,32,116,111,86,97,108,44,32,102,114,111,109,86,97,108,59,92,110,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,104,97,115,83,121,109,98,111,108,92,110,32,32,32,32,63,32,82,101,102,108,101,99,116,46,111,119,110,75,101,121,115,40,102,114,111,109,41,92,110,32,32,32,32,58,32,79,98,106,101,99,116,46,107,101,121,115,40,102,114,111,109,41,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,107,101,121,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,107,101,121,32,61,32,107,101,121,115,91,105,93,59,92,110,32,32,32,32,47,47,32,105,110,32,99,97,115,101,32,116,104,101,32,111,98,106,101,99,116,32,105,115,32,97,108,114,101,97,100,121,32,111,98,115,101,114,118,101,100,46,46,46,92,110,32,32,32,32,105,102,32,40,107,101,121,32,61,61,61,32,39,95,95,111,98,95,95,39,41,32,123,32,99,111,110,116,105,110,117,101,32,125,92,110,32,32,32,32,116,111,86,97,108,32,61,32,116,111,91,107,101,121,93,59,92,110,32,32,32,32,102,114,111,109,86,97,108,32,61,32,102,114,111,109,91,107,101,121,93,59,92,110,32,32,32,32,105,102,32,40,33,104,97,115,79,119,110,40,116,111,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,115,101,116,40,116,111,44,32,107,101,121,44,32,102,114,111,109,86,97,108,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,92,110,32,32,32,32,32,32,116,111,86,97,108,32,33,61,61,32,102,114,111,109,86,97,108,32,38,38,92,110,32,32,32,32,32,32,105,115,80,108,97,105,110,79,98,106,101,99,116,40,116,111,86,97,108,41,32,38,38,92,110,32,32,32,32,32,32,105,115,80,108,97,105,110,79,98,106,101,99,116,40,102,114,111,109,86,97,108,41,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,109,101,114,103,101,68,97,116,97,40,116,111,86,97,108,44,32,102,114,111,109,86,97,108,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,111,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,97,116,97,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,109,101,114,103,101,68,97,116,97,79,114,70,110,32,40,92,110,32,32,112,97,114,101,110,116,86,97,108,44,92,110,32,32,99,104,105,108,100,86,97,108,44,92,110,32,32,118,109,92,110,41,32,123,92,110,32,32,105,102,32,40,33,118,109,41,32,123,92,110,32,32,32,32,47,47,32,105,110,32,97,32,86,117,101,46,101,120,116,101,110,100,32,109,101,114,103,101,44,32,98,111,116,104,32,115,104,111,117,108,100,32,98,101,32,102,117,110,99,116,105,111,110,115,92,110,32,32,32,32,105,102,32,40,33,99,104,105,108,100,86,97,108,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,114,101,110,116,86,97,108,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,33,112,97,114,101,110,116,86,97,108,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,104,105,108,100,86,97,108,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,119,104,101,110,32,112,97,114,101,110,116,86,97,108,32,38,32,99,104,105,108,100,86,97,108,32,97,114,101,32,98,111,116,104,32,112,114,101,115,101,110,116,44,92,110,32,32,32,32,47,47,32,119,101,32,110,101,101,100,32,116,111,32,114,101,116,117,114,110,32,97,32,102,117,110,99,116,105,111,110,32,116,104,97,116,32,114,101,116,117,114,110,115,32,116,104,101,92,110,32,32,32,32,47,47,32,109,101,114,103,101,100,32,114,101,115,117,108,116,32,111,102,32,98,111,116,104,32,102,117,110,99,116,105,111,110,115,46,46,46,32,110,111,32,110,101,101,100,32,116,111,92,110,32,32,32,32,47,47,32,99,104,101,99,107,32,105,102,32,112,97,114,101,110,116,86,97,108,32,105,115,32,97,32,102,117,110,99,116,105,111,110,32,104,101,114,101,32,98,101,99,97,117,115,101,92,110,32,32,32,32,47,47,32,105,116,32,104,97,115,32,116,111,32,98,101,32,97,32,102,117,110,99,116,105,111,110,32,116,111,32,112,97,115,115,32,112,114,101,118,105,111,117,115,32,109,101,114,103,101,115,46,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,109,101,114,103,101,100,68,97,116,97,70,110,32,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,101,114,103,101,68,97,116,97,40,92,110,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,99,104,105,108,100,86,97,108,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,99,104,105,108,100,86,97,108,46,99,97,108,108,40,116,104,105,115,44,32,116,104,105,115,41,32,58,32,99,104,105,108,100,86,97,108,44,92,110,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,112,97,114,101,110,116,86,97,108,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,112,97,114,101,110,116,86,97,108,46,99,97,108,108,40,116,104,105,115,44,32,116,104,105,115,41,32,58,32,112,97,114,101,110,116,86,97,108,92,110,32,32,32,32,32,32,41,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,109,101,114,103,101,100,73,110,115,116,97,110,99,101,68,97,116,97,70,110,32,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,105,110,115,116,97,110,99,101,32,109,101,114,103,101,92,110,32,32,32,32,32,32,118,97,114,32,105,110,115,116,97,110,99,101,68,97,116,97,32,61,32,116,121,112,101,111,102,32,99,104,105,108,100,86,97,108,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,32,32,32,32,32,32,32,32,63,32,99,104,105,108,100,86,97,108,46,99,97,108,108,40,118,109,44,32,118,109,41,92,110,32,32,32,32,32,32,32,32,58,32,99,104,105,108,100,86,97,108,59,92,110,32,32,32,32,32,32,118,97,114,32,100,101,102,97,117,108,116,68,97,116,97,32,61,32,116,121,112,101,111,102,32,112,97,114,101,110,116,86,97,108,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,32,32,32,32,32,32,32,32,63,32,112,97,114,101,110,116,86,97,108,46,99,97,108,108,40,118,109,44,32,118,109,41,92,110,32,32,32,32,32,32,32,32,58,32,112,97,114,101,110,116,86,97,108,59,92,110,32,32,32,32,32,32,105,102,32,40,105,110,115,116,97,110,99,101,68,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,101,114,103,101,68,97,116,97,40,105,110,115,116,97,110,99,101,68,97,116,97,44,32,100,101,102,97,117,108,116,68,97,116,97,41,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,102,97,117,108,116,68,97,116,97,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,115,116,114,97,116,115,46,100,97,116,97,32,61,32,102,117,110,99,116,105,111,110,32,40,92,110,32,32,112,97,114,101,110,116,86,97,108,44,92,110,32,32,99,104,105,108,100,86,97,108,44,92,110,32,32,118,109,92,110,41,32,123,92,110,32,32,105,102,32,40,33,118,109,41,32,123,92,110,32,32,32,32,105,102,32,40,99,104,105,108,100,86,97,108,32,38,38,32,116,121,112,101,111,102,32,99,104,105,108,100,86,97,108,32,33,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,116,114,117,101,32,38,38,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,39,84,104,101,32,92,34,100,97,116,97,92,34,32,111,112,116,105,111,110,32,115,104,111,117,108,100,32,98,101,32,97,32,102,117,110,99,116,105,111,110,32,39,32,43,92,110,32,32,32,32,32,32,32,32,39,116,104,97,116,32,114,101,116,117,114,110,115,32,97,32,112,101,114,45,105,110,115,116,97,110,99,101,32,118,97,108,117,101,32,105,110,32,99,111,109,112,111,110,101,110,116,32,39,32,43,92,110,32,32,32,32,32,32,32,32,39,100,101,102,105,110,105,116,105,111,110,115,46,39,44,92,110,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,41,59,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,97,114,101,110,116,86,97,108,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,109,101,114,103,101,68,97,116,97,79,114,70,110,40,112,97,114,101,110,116,86,97,108,44,32,99,104,105,108,100,86,97,108,41,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,109,101,114,103,101,68,97,116,97,79,114,70,110,40,112,97,114,101,110,116,86,97,108,44,32,99,104,105,108,100,86,97,108,44,32,118,109,41,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,72,111,111,107,115,32,97,110,100,32,112,114,111,112,115,32,97,114,101,32,109,101,114,103,101,100,32,97,115,32,97,114,114,97,121,115,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,109,101,114,103,101,72,111,111,107,32,40,92,110,32,32,112,97,114,101,110,116,86,97,108,44,92,110,32,32,99,104,105,108,100,86,97,108,92,110,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,99,104,105,108,100,86,97,108,92,110,32,32,32,32,63,32,112,97,114,101,110,116,86,97,108,92,110,32,32,32,32,32,32,63,32,112,97,114,101,110,116,86,97,108,46,99,111,110,99,97,116,40,99,104,105,108,100,86,97,108,41,92,110,32,32,32,32,32,32,58,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,104,105,108,100,86,97,108,41,92,110,32,32,32,32,32,32,32,32,63,32,99,104,105,108,100,86,97,108,92,110,32,32,32,32,32,32,32,32,58,32,91,99,104,105,108,100,86,97,108,93,92,110,32,32,32,32,58,32,112,97,114,101,110,116,86,97,108,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,32,32,32,32,63,32,100,101,100,117,112,101,72,111,111,107,115,40,114,101,115,41,92,110,32,32,32,32,58,32,114,101,115,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,100,117,112,101,72,111,111,107,115,32,40,104,111,111,107,115,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,91,93,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,104,111,111,107,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,105,102,32,40,114,101,115,46,105,110,100,101,120,79,102,40,104,111,111,107,115,91,105,93,41,32,61,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,114,101,115,46,112,117,115,104,40,104,111,111,107,115,91,105,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,92,110,92,110,76,73,70,69,67,89,67,76,69,95,72,79,79,75,83,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,104,111,111,107,41,32,123,92,110,32,32,115,116,114,97,116,115,91,104,111,111,107,93,32,61,32,109,101,114,103,101,72,111,111,107,59,92,110,125,41,59,92,110,92,110,47,42,42,92,110,32,42,32,65,115,115,101,116,115,92,110,32,42,92,110,32,42,32,87,104,101,110,32,97,32,118,109,32,105,115,32,112,114,101,115,101,110,116,32,40,105,110,115,116,97,110,99,101,32,99,114,101,97,116,105,111,110,41,44,32,119,101,32,110,101,101,100,32,116,111,32,100,111,92,110,32,42,32,97,32,116,104,114,101,101,45,119,97,121,32,109,101,114,103,101,32,98,101,116,119,101,101,110,32,99,111,110,115,116,114,117,99,116,111,114,32,111,112,116,105,111,110,115,44,32,105,110,115,116,97,110,99,101,92,110,32,42,32,111,112,116,105,111,110,115,32,97,110,100,32,112,97,114,101,110,116,32,111,112,116,105,111,110,115,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,109,101,114,103,101,65,115,115,101,116,115,32,40,92,110,32,32,112,97,114,101,110,116,86,97,108,44,92,110,32,32,99,104,105,108,100,86,97,108,44,92,110,32,32,118,109,44,92,110,32,32,107,101,121,92,110,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,112,97,114,101,110,116,86,97,108,32,124,124,32,110,117,108,108,41,59,92,110,32,32,105,102,32,40,99,104,105,108,100,86,97,108,41,32,123,92,110,32,32,32,32,32,116,114,117,101,32,38,38,32,97,115,115,101,114,116,79,98,106,101,99,116,84,121,112,101,40,107,101,121,44,32,99,104,105,108,100,86,97,108,44,32,118,109,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,101,120,116,101,110,100,40,114,101,115,44,32,99,104,105,108,100,86,97,108,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,92,110,32,32,125,92,110,125,92,110,92,110,65,83,83,69,84,95,84,89,80,69,83,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,121,112,101,41,32,123,92,110,32,32,115,116,114,97,116,115,91,116,121,112,101,32,43,32,39,115,39,93,32,61,32,109,101,114,103,101,65,115,115,101,116,115,59,92,110,125,41,59,92,110,92,110,47,42,42,92,110,32,42,32,87,97,116,99,104,101,114,115,46,92,110,32,42,92,110,32,42,32,87,97,116,99,104,101,114,115,32,104,97,115,104,101,115,32,115,104,111,117,108,100,32,110,111,116,32,111,118,101,114,119,114,105,116,101,32,111,110,101,92,110,32,42,32,97,110,111,116,104,101,114,44,32,115,111,32,119,101,32,109,101,114,103,101,32,116,104,101,109,32,97,115,32,97,114,114,97,121,115,46,92,110,32,42,47,92,110,115,116,114,97,116,115,46,119,97,116,99,104,32,61,32,102,117,110,99,116,105,111,110,32,40,92,110,32,32,112,97,114,101,110,116,86,97,108,44,92,110,32,32,99,104,105,108,100,86,97,108,44,92,110,32,32,118,109,44,92,110,32,32,107,101,121,92,110,41,32,123,92,110,32,32,47,47,32,119,111,114,107,32,97,114,111,117,110,100,32,70,105,114,101,102,111,120,39,115,32,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,119,97,116,99,104,46,46,46,92,110,32,32,105,102,32,40,112,97,114,101,110,116,86,97,108,32,61,61,61,32,110,97,116,105,118,101,87,97,116,99,104,41,32,123,32,112,97,114,101,110,116,86,97,108,32,61,32,117,110,100,101,102,105,110,101,100,59,32,125,92,110,32,32,105,102,32,40,99,104,105,108,100,86,97,108,32,61,61,61,32,110,97,116,105,118,101,87,97,116,99,104,41,32,123,32,99,104,105,108,100,86,97,108,32,61,32,117,110,100,101,102,105,110,101,100,59,32,125,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,33,99,104,105,108,100,86,97,108,41,32,123,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,112,97,114,101,110,116,86,97,108,32,124,124,32,110,117,108,108,41,32,125,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,97,115,115,101,114,116,79,98,106,101,99,116,84,121,112,101,40,107,101,121,44,32,99,104,105,108,100,86,97,108,44,32,118,109,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,33,112,97,114,101,110,116,86,97,108,41,32,123,32,114,101,116,117,114,110,32,99,104,105,108,100,86,97,108,32,125,92,110,32,32,118,97,114,32,114,101,116,32,61,32,123,125,59,92,110,32,32,101,120,116,101,110,100,40,114,101,116,44,32,112,97,114,101,110,116,86,97,108,41,59,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,36,49,32,105,110,32,99,104,105,108,100,86,97,108,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,114,101,116,91,107,101,121,36,49,93,59,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,32,61,32,99,104,105,108,100,86,97,108,91,107,101,121,36,49,93,59,92,110,32,32,32,32,105,102,32,40,112,97,114,101,110,116,32,38,38,32,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,112,97,114,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,91,112,97,114,101,110,116,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,91,107,101,121,36,49,93,32,61,32,112,97,114,101,110,116,92,110,32,32,32,32,32,32,63,32,112,97,114,101,110,116,46,99,111,110,99,97,116,40,99,104,105,108,100,41,92,110,32,32,32,32,32,32,58,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,104,105,108,100,41,32,63,32,99,104,105,108,100,32,58,32,91,99,104,105,108,100,93,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,116,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,79,116,104,101,114,32,111,98,106,101,99,116,32,104,97,115,104,101,115,46,92,110,32,42,47,92,110,115,116,114,97,116,115,46,112,114,111,112,115,32,61,92,110,115,116,114,97,116,115,46,109,101,116,104,111,100,115,32,61,92,110,115,116,114,97,116,115,46,105,110,106,101,99,116,32,61,92,110,115,116,114,97,116,115,46,99,111,109,112,117,116,101,100,32,61,32,102,117,110,99,116,105,111,110,32,40,92,110,32,32,112,97,114,101,110,116,86,97,108,44,92,110,32,32,99,104,105,108,100,86,97,108,44,92,110,32,32,118,109,44,92,110,32,32,107,101,121,92,110,41,32,123,92,110,32,32,105,102,32,40,99,104,105,108,100,86,97,108,32,38,38,32,92,34,100,101,118,101,108,111,112,109,101,110,116,92,34,32,33,61,61,32,39,112,114,111,100,117,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,97,115,115,101,114,116,79,98,106,101,99,116,84,121,112,101,40,107,101,121,44,32,99,104,105,108,100,86,97,108,44,32,118,109,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,33,112,97,114,101,110,116,86,97,108,41,32,123,32,114,101,116,117,114,110,32,99,104,105,108,100,86,97,108,32,125,92,110,32,32,118,97,114,32,114,101,116,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,101,120,116,101,110,100,40,114,101,116,44,32,112,97,114,101,110,116,86,97,108,41,59,92,110,32,32,105,102,32,40,99,104,105,108,100,86,97,108,41,32,123,32,101,120,116,101,110,100,40,114,101,116,44,32,99,104,105,108,100,86,97,108,41,59,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,116,92,110,125,59,92,110,115,116,114,97,116,115,46,112,114,111,118,105,100,101,32,61,32,109,101,114,103,101,68,97,116,97,79,114,70,110,59,92,110,92,110,47,42,42,92,110,32,42,32,68,101,102,97,117,108,116,32,115,116,114,97,116,101,103,121,46,92,110,32,42,47,92,110,118,97,114,32,100,101,102,97,117,108,116,83,116,114,97,116,32,61,32,102,117,110,99,116,105,111,110,32,40,112,97,114,101,110,116,86,97,108,44,32,99,104,105,108,100,86,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,99,104,105,108,100,86,97,108,32,61,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,63,32,112,97,114,101,110,116,86,97,108,92,110,32,32,32,32,58,32,99,104,105,108,100,86,97,108,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,86,97,108,105,100,97,116,101,32,99,111,109,112,111,110,101,110,116,32,110,97,109,101,115,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,99,104,101,99,107,67,111,109,112,111,110,101,110,116,115,32,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,111,112,116,105,111,110,115,46,99,111,109,112,111,110,101,110,116,115,41,32,123,92,110,32,32,32,32,118,97,108,105,100,97,116,101,67,111,109,112,111,110,101,110,116,78,97,109,101,40,107,101,121,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,118,97,108,105,100,97,116,101,67,111,109,112,111,110,101,110,116,78,97,109,101,32,40,110,97,109,101,41,32,123,92,110,32,32,105,102,32,40,33,110,101,119,32,82,101,103,69,120,112,40,40,92,34,94,91,97,45,122,65,45,90,93,91,92,92,92,92,45,92,92,92,92,46,48,45,57,95,92,34,32,43,32,40,117,110,105,99,111,100,101,82,101,103,69,120,112,46,115,111,117,114,99,101,41,32,43,32,92,34,93,42,36,92,34,41,41,46,116,101,115,116,40,110,97,109,101,41,41,32,123,92,110,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,39,73,110,118,97,108,105,100,32,99,111,109,112,111,110,101,110,116,32,110,97,109,101,58,32,92,34,39,32,43,32,110,97,109,101,32,43,32,39,92,34,46,32,67,111,109,112,111,110,101,110,116,32,110,97,109,101,115,32,39,32,43,92,110,32,32,32,32,32,32,39,115,104,111,117,108,100,32,99,111,110,102,111,114,109,32,116,111,32,118,97,108,105,100,32,99,117,115,116,111,109,32,101,108,101,109,101,110,116,32,110,97,109,101,32,105,110,32,104,116,109,108,53,32,115,112,101,99,105,102,105,99,97,116,105,111,110,46,39,92,110,32,32,32,32,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,105,115,66,117,105,108,116,73,110,84,97,103,40,110,97,109,101,41,32,124,124,32,99,111,110,102,105,103,46,105,115,82,101,115,101,114,118,101,100,84,97,103,40,110,97,109,101,41,41,32,123,92,110,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,39,68,111,32,110,111,116,32,117,115,101,32,98,117,105,108,116,45,105,110,32,111,114,32,114,101,115,101,114,118,101,100,32,72,84,77,76,32,101,108,101,109,101,110,116,115,32,97,115,32,99,111,109,112,111,110,101,110,116,32,39,32,43,92,110,32,32,32,32,32,32,39,105,100,58,32,39,32,43,32,110,97,109,101,92,110,32,32,32,32,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,69,110,115,117,114,101,32,97,108,108,32,112,114,111,112,115,32,111,112,116,105,111,110,32,115,121,110,116,97,120,32,97,114,101,32,110,111,114,109,97,108,105,122,101,100,32,105,110,116,111,32,116,104,101,92,110,32,42,32,79,98,106,101,99,116,45,98,97,115,101,100,32,102,111,114,109,97,116,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,80,114,111,112,115,32,40,111,112,116,105,111,110,115,44,32,118,109,41,32,123,92,110,32,32,118,97,114,32,112,114,111,112,115,32,61,32,111,112,116,105,111,110,115,46,112,114,111,112,115,59,92,110,32,32,105,102,32,40,33,112,114,111,112,115,41,32,123,32,114,101,116,117,114,110,32,125,92,110,32,32,118,97,114,32,114,101,115,32,61,32,123,125,59,92,110,32,32,118,97,114,32,105,44,32,118,97,108,44,32,110,97,109,101,59,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,112,114,111,112,115,41,41,32,123,92,110,32,32,32,32,105,32,61,32,112,114,111,112,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,105,45,45,41,32,123,92,110,32,32,32,32,32,32,118,97,108,32,61,32,112,114,111,112,115,91,105,93,59,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,32,32,32,32,110,97,109,101,32,61,32,99,97,109,101,108,105,122,101,40,118,97,108,41,59,92,110,32,32,32,32,32,32,32,32,114,101,115,91,110,97,109,101,93,32,61,32,123,32,116,121,112,101,58,32,110,117,108,108,32,125,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,39,112,114,111,112,115,32,109,117,115,116,32,98,101,32,115,116,114,105,110,103,115,32,119,104,101,110,32,117,115,105,110,103,32,97,114,114,97,121,32,115,121,110,116,97,120,46,39,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,80,108,97,105,110,79,98,106,101,99,116,40,112,114,111,112,115,41,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,112,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,118,97,108,32,61,32,112,114,111,112,115,91,107,101,121,93,59,92,110,32,32,32,32,32,32,110,97,109,101,32,61,32,99,97,109,101,108,105,122,101,40,107,101,121,41,59,92,110,32,32,32,32,32,32,114,101,115,91,110,97,109,101,93,32,61,32,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,41,92,110,32,32,32,32,32,32,32,32,63,32,118,97,108,92,110,32,32,32,32,32,32,32,32,58,32,123,32,116,121,112,101,58,32,118,97,108,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,92,34,73,110,118,97,108,105,100,32,118,97,108,117,101,32,102,111,114,32,111,112,116,105,111,110,32,92,92,92,34,112,114,111,112,115,92,92,92,34,58,32,101,120,112,101,99,116,101,100,32,97,110,32,65,114,114,97,121,32,111,114,32,97,110,32,79,98,106,101,99,116,44,32,92,34,32,43,92,110,32,32,32,32,32,32,92,34,98,117,116,32,103,111,116,32,92,34,32,43,32,40,116,111,82,97,119,84,121,112,101,40,112,114,111,112,115,41,41,32,43,32,92,34,46,92,34,44,92,110,32,32,32,32,32,32,118,109,92,110,32,32,32,32,41,59,92,110,32,32,125,92,110,32,32,111,112,116,105,111,110,115,46,112,114,111,112,115,32,61,32,114,101,115,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,78,111,114,109,97,108,105,122,101,32,97,108,108,32,105,110,106,101,99,116,105,111,110,115,32,105,110,116,111,32,79,98,106,101,99,116,45,98,97,115,101,100,32,102,111,114,109,97,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,73,110,106,101,99,116,32,40,111,112,116,105,111,110,115,44,32,118,109,41,32,123,92,110,32,32,118,97,114,32,105,110,106,101,99,116,32,61,32,111,112,116,105,111,110,115,46,105,110,106,101,99,116,59,92,110,32,32,105,102,32,40,33,105,110,106,101,99,116,41,32,123,32,114,101,116,117,114,110,32,125,92,110,32,32,118,97,114,32,110,111,114,109,97,108,105,122,101,100,32,61,32,111,112,116,105,111,110,115,46,105,110,106,101,99,116,32,61,32,123,125,59,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,105,110,106,101,99,116,41,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,105,110,106,101,99,116,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,110,111,114,109,97,108,105,122,101,100,91,105,110,106,101,99,116,91,105,93,93,32,61,32,123,32,102,114,111,109,58,32,105,110,106,101,99,116,91,105,93,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,80,108,97,105,110,79,98,106,101,99,116,40,105,110,106,101,99,116,41,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,105,110,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,97,108,32,61,32,105,110,106,101,99,116,91,107,101,121,93,59,92,110,32,32,32,32,32,32,110,111,114,109,97,108,105,122,101,100,91,107,101,121,93,32,61,32,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,41,92,110,32,32,32,32,32,32,32,32,63,32,101,120,116,101,110,100,40,123,32,102,114,111,109,58,32,107,101,121,32,125,44,32,118,97,108,41,92,110,32,32,32,32,32,32,32,32,58,32,123,32,102,114,111,109,58,32,118,97,108,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,92,34,73,110,118,97,108,105,100,32,118,97,108,117,101,32,102,111,114,32,111,112,116,105,111,110,32,92,92,92,34,105,110,106,101,99,116,92,92,92,34,58,32,101,120,112,101,99,116,101,100,32,97,110,32,65,114,114,97,121,32,111,114,32,97,110,32,79,98,106,101,99,116,44,32,92,34,32,43,92,110,32,32,32,32,32,32,92,34,98,117,116,32,103,111,116,32,92,34,32,43,32,40,116,111,82,97,119,84,121,112,101,40,105,110,106,101,99,116,41,41,32,43,32,92,34,46,92,34,44,92,110,32,32,32,32,32,32,118,109,92,110,32,32,32,32,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,78,111,114,109,97,108,105,122,101,32,114,97,119,32,102,117,110,99,116,105,111,110,32,100,105,114,101,99,116,105,118,101,115,32,105,110,116,111,32,111,98,106,101,99,116,32,102,111,114,109,97,116,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,68,105,114,101,99,116,105,118,101,115,32,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,100,105,114,115,32,61,32,111,112,116,105,111,110,115,46,100,105,114,101,99,116,105,118,101,115,59,92,110,32,32,105,102,32,40,100,105,114,115,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,100,105,114,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,100,101,102,36,36,49,32,61,32,100,105,114,115,91,107,101,121,93,59,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,100,101,102,36,36,49,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,100,105,114,115,91,107,101,121,93,32,61,32,123,32,98,105,110,100,58,32,100,101,102,36,36,49,44,32,117,112,100,97,116,101,58,32,100,101,102,36,36,49,32,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,115,115,101,114,116,79,98,106,101,99,116,84,121,112,101,32,40,110,97,109,101,44,32,118,97,108,117,101,44,32,118,109,41,32,123,92,110,32,32,105,102,32,40,33,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,92,34,73,110,118,97,108,105,100,32,118,97,108,117,101,32,102,111,114,32,111,112,116,105,111,110,32,92,92,92,34,92,34,32,43,32,110,97,109,101,32,43,32,92,34,92,92,92,34,58,32,101,120,112,101,99,116,101,100,32,97,110,32,79,98,106,101,99,116,44,32,92,34,32,43,92,110,32,32,32,32,32,32,92,34,98,117,116,32,103,111,116,32,92,34,32,43,32,40,116,111,82,97,119,84,121,112,101,40,118,97,108,117,101,41,41,32,43,32,92,34,46,92,34,44,92,110,32,32,32,32,32,32,118,109,92,110,32,32,32,32,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,77,101,114,103,101,32,116,119,111,32,111,112,116,105,111,110,32,111,98,106,101,99,116,115,32,105,110,116,111,32,97,32,110,101,119,32,111,110,101,46,92,110,32,42,32,67,111,114,101,32,117,116,105,108,105,116,121,32,117,115,101,100,32,105,110,32,98,111,116,104,32,105,110,115,116,97,110,116,105,97,116,105,111,110,32,97,110,100,32,105,110,104,101,114,105,116,97,110,99,101,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,109,101,114,103,101,79,112,116,105,111,110,115,32,40,92,110,32,32,112,97,114,101,110,116,44,92,110,32,32,99,104,105,108,100,44,92,110,32,32,118,109,92,110,41,32,123,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,99,104,101,99,107,67,111,109,112,111,110,101,110,116,115,40,99,104,105,108,100,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,99,104,105,108,100,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,99,104,105,108,100,32,61,32,99,104,105,108,100,46,111,112,116,105,111,110,115,59,92,110,32,32,125,92,110,92,110,32,32,110,111,114,109,97,108,105,122,101,80,114,111,112,115,40,99,104,105,108,100,44,32,118,109,41,59,92,110,32,32,110,111,114,109,97,108,105,122,101,73,110,106,101,99,116,40,99,104,105,108,100,44,32,118,109,41,59,92,110,32,32,110,111,114,109,97,108,105,122,101,68,105,114,101,99,116,105,118,101,115,40,99,104,105,108,100,41,59,92,110,92,110,32,32,47,47,32,65,112,112,108,121,32,101,120,116,101,110,100,115,32,97,110,100,32,109,105,120,105,110,115,32,111,110,32,116,104,101,32,99,104,105,108,100,32,111,112,116,105,111,110,115,44,92,110,32,32,47,47,32,98,117,116,32,111,110,108,121,32,105,102,32,105,116,32,105,115,32,97,32,114,97,119,32,111,112,116,105,111,110,115,32,111,98,106,101,99,116,32,116,104,97,116,32,105,115,110,39,116,92,110,32,32,47,47,32,116,104,101,32,114,101,115,117,108,116,32,111,102,32,97,110,111,116,104,101,114,32,109,101,114,103,101,79,112,116,105,111,110,115,32,99,97,108,108,46,92,110,32,32,47,47,32,79,110,108,121,32,109,101,114,103,101,100,32,111,112,116,105,111,110,115,32,104,97,115,32,116,104,101,32,95,98,97,115,101,32,112,114,111,112,101,114,116,121,46,92,110,32,32,105,102,32,40,33,99,104,105,108,100,46,95,98,97,115,101,41,32,123,92,110,32,32,32,32,105,102,32,40,99,104,105,108,100,46,101,120,116,101,110,100,115,41,32,123,92,110,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,109,101,114,103,101,79,112,116,105,111,110,115,40,112,97,114,101,110,116,44,32,99,104,105,108,100,46,101,120,116,101,110,100,115,44,32,118,109,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,99,104,105,108,100,46,109,105,120,105,110,115,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,32,61,32,99,104,105,108,100,46,109,105,120,105,110,115,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,109,101,114,103,101,79,112,116,105,111,110,115,40,112,97,114,101,110,116,44,32,99,104,105,108,100,46,109,105,120,105,110,115,91,105,93,44,32,118,109,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,32,32,118,97,114,32,107,101,121,59,92,110,32,32,102,111,114,32,40,107,101,121,32,105,110,32,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,109,101,114,103,101,70,105,101,108,100,40,107,101,121,41,59,92,110,32,32,125,92,110,32,32,102,111,114,32,40,107,101,121,32,105,110,32,99,104,105,108,100,41,32,123,92,110,32,32,32,32,105,102,32,40,33,104,97,115,79,119,110,40,112,97,114,101,110,116,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,109,101,114,103,101,70,105,101,108,100,40,107,101,121,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,102,117,110,99,116,105,111,110,32,109,101,114,103,101,70,105,101,108,100,32,40,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,115,116,114,97,116,32,61,32,115,116,114,97,116,115,91,107,101,121,93,32,124,124,32,100,101,102,97,117,108,116,83,116,114,97,116,59,92,110,32,32,32,32,111,112,116,105,111,110,115,91,107,101,121,93,32,61,32,115,116,114,97,116,40,112,97,114,101,110,116,91,107,101,121,93,44,32,99,104,105,108,100,91,107,101,121,93,44,32,118,109,44,32,107,101,121,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,111,112,116,105,111,110,115,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,101,115,111,108,118,101,32,97,110,32,97,115,115,101,116,46,92,110,32,42,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,105,115,32,117,115,101,100,32,98,101,99,97,117,115,101,32,99,104,105,108,100,32,105,110,115,116,97,110,99,101,115,32,110,101,101,100,32,97,99,99,101,115,115,92,110,32,42,32,116,111,32,97,115,115,101,116,115,32,100,101,102,105,110,101,100,32,105,110,32,105,116,115,32,97,110,99,101,115,116,111,114,32,99,104,97,105,110,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,65,115,115,101,116,32,40,92,110,32,32,111,112,116,105,111,110,115,44,92,110,32,32,116,121,112,101,44,92,110,32,32,105,100,44,92,110,32,32,119,97,114,110,77,105,115,115,105,110,103,92,110,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,105,100,32,33,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,118,97,114,32,97,115,115,101,116,115,32,61,32,111,112,116,105,111,110,115,91,116,121,112,101,93,59,92,110,32,32,47,47,32,99,104,101,99,107,32,108,111,99,97,108,32,114,101,103,105,115,116,114,97,116,105,111,110,32,118,97,114,105,97,116,105,111,110,115,32,102,105,114,115,116,92,110,32,32,105,102,32,40,104,97,115,79,119,110,40,97,115,115,101,116,115,44,32,105,100,41,41,32,123,32,114,101,116,117,114,110,32,97,115,115,101,116,115,91,105,100,93,32,125,92,110,32,32,118,97,114,32,99,97,109,101,108,105,122,101,100,73,100,32,61,32,99,97,109,101,108,105,122,101,40,105,100,41,59,92,110,32,32,105,102,32,40,104,97,115,79,119,110,40,97,115,115,101,116,115,44,32,99,97,109,101,108,105,122,101,100,73,100,41,41,32,123,32,114,101,116,117,114,110,32,97,115,115,101,116,115,91,99,97,109,101,108,105,122,101,100,73,100,93,32,125,92,110,32,32,118,97,114,32,80,97,115,99,97,108,67,97,115,101,73,100,32,61,32,99,97,112,105,116,97,108,105,122,101,40,99,97,109,101,108,105,122,101,100,73,100,41,59,92,110,32,32,105,102,32,40,104,97,115,79,119,110,40,97,115,115,101,116,115,44,32,80,97,115,99,97,108,67,97,115,101,73,100,41,41,32,123,32,114,101,116,117,114,110,32,97,115,115,101,116,115,91,80,97,115,99,97,108,67,97,115,101,73,100,93,32,125,92,110,32,32,47,47,32,102,97,108,108,98,97,99,107,32,116,111,32,112,114,111,116,111,116,121,112,101,32,99,104,97,105,110,92,110,32,32,118,97,114,32,114,101,115,32,61,32,97,115,115,101,116,115,91,105,100,93,32,124,124,32,97,115,115,101,116,115,91,99,97,109,101,108,105,122,101,100,73,100,93,32,124,124,32,97,115,115,101,116,115,91,80,97,115,99,97,108,67,97,115,101,73,100,93,59,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,119,97,114,110,77,105,115,115,105,110,103,32,38,38,32,33,114,101,115,41,32,123,92,110,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,39,70,97,105,108,101,100,32,116,111,32,114,101,115,111,108,118,101,32,39,32,43,32,116,121,112,101,46,115,108,105,99,101,40,48,44,32,45,49,41,32,43,32,39,58,32,39,32,43,32,105,100,44,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,92,110,32,32,32,32,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,118,97,108,105,100,97,116,101,80,114,111,112,32,40,92,110,32,32,107,101,121,44,92,110,32,32,112,114,111,112,79,112,116,105,111,110,115,44,92,110,32,32,112,114,111,112,115,68,97,116,97,44,92,110,32,32,118,109,92,110,41,32,123,92,110,32,32,118,97,114,32,112,114,111,112,32,61,32,112,114,111,112,79,112,116,105,111,110,115,91,107,101,121,93,59,92,110,32,32,118,97,114,32,97,98,115,101,110,116,32,61,32,33,104,97,115,79,119,110,40,112,114,111,112,115,68,97,116,97,44,32,107,101,121,41,59,92,110,32,32,118,97,114,32,118,97,108,117,101,32,61,32,112,114,111,112,115,68,97,116,97,91,107,101,121,93,59,92,110,32,32,47,47,32,98,111,111,108,101,97,110,32,99,97,115,116,105,110,103,92,110,32,32,118,97,114,32,98,111,111,108,101,97,110,73,110,100,101,120,32,61,32,103,101,116,84,121,112,101,73,110,100,101,120,40,66,111,111,108,101,97,110,44,32,112,114,111,112,46,116,121,112,101,41,59,92,110,32,32,105,102,32,40,98,111,111,108,101,97,110,73,110,100,101,120,32,62,32,45,49,41,32,123,92,110,32,32,32,32,105,102,32,40,97,98,115,101,110,116,32,38,38,32,33,104,97,115,79,119,110,40,112,114,111,112,44,32,39,100,101,102,97,117,108,116,39,41,41,32,123,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,39,39,32,124,124,32,118,97,108,117,101,32,61,61,61,32,104,121,112,104,101,110,97,116,101,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,111,110,108,121,32,99,97,115,116,32,101,109,112,116,121,32,115,116,114,105,110,103,32,47,32,115,97,109,101,32,110,97,109,101,32,116,111,32,98,111,111,108,101,97,110,32,105,102,92,110,32,32,32,32,32,32,47,47,32,98,111,111,108,101,97,110,32,104,97,115,32,104,105,103,104,101,114,32,112,114,105,111,114,105,116,121,92,110,32,32,32,32,32,32,118,97,114,32,115,116,114,105,110,103,73,110,100,101,120,32,61,32,103,101,116,84,121,112,101,73,110,100,101,120,40,83,116,114,105,110,103,44,32,112,114,111,112,46,116,121,112,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,116,114,105,110,103,73,110,100,101,120,32,60,32,48,32,124,124,32,98,111,111,108,101,97,110,73,110,100,101,120,32,60,32,115,116,114,105,110,103,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,47,47,32,99,104,101,99,107,32,100,101,102,97,117,108,116,32,118,97,108,117,101,92,110,32,32,105,102,32,40,118,97,108,117,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,118,97,108,117,101,32,61,32,103,101,116,80,114,111,112,68,101,102,97,117,108,116,86,97,108,117,101,40,118,109,44,32,112,114,111,112,44,32,107,101,121,41,59,92,110,32,32,32,32,47,47,32,115,105,110,99,101,32,116,104,101,32,100,101,102,97,117,108,116,32,118,97,108,117,101,32,105,115,32,97,32,102,114,101,115,104,32,99,111,112,121,44,92,110,32,32,32,32,47,47,32,109,97,107,101,32,115,117,114,101,32,116,111,32,111,98,115,101,114,118,101,32,105,116,46,92,110,32,32,32,32,118,97,114,32,112,114,101,118,83,104,111,117,108,100,79,98,115,101,114,118,101,32,61,32,115,104,111,117,108,100,79,98,115,101,114,118,101,59,92,110,32,32,32,32,116,111,103,103,108,101,79,98,115,101,114,118,105,110,103,40,116,114,117,101,41,59,92,110,32,32,32,32,111,98,115,101,114,118,101,40,118,97,108,117,101,41,59,92,110,32,32,32,32,116,111,103,103,108,101,79,98,115,101,114,118,105,110,103,40,112,114,101,118,83,104,111,117,108,100,79,98,115,101,114,118,101,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,92,110,32,32,32,32,116,114,117,101,92,110,32,32,41,32,123,92,110,32,32,32,32,97,115,115,101,114,116,80,114,111,112,40,112,114,111,112,44,32,107,101,121,44,32,118,97,108,117,101,44,32,118,109,44,32,97,98,115,101,110,116,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,32,116,104,101,32,100,101,102,97,117,108,116,32,118,97,108,117,101,32,111,102,32,97,32,112,114,111,112,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,80,114,111,112,68,101,102,97,117,108,116,86,97,108,117,101,32,40,118,109,44,32,112,114,111,112,44,32,107,101,121,41,32,123,92,110,32,32,47,47,32,110,111,32,100,101,102,97,117,108,116,44,32,114,101,116,117,114,110,32,117,110,100,101,102,105,110,101,100,92,110,32,32,105,102,32,40,33,104,97,115,79,119,110,40,112,114,111,112,44,32,39,100,101,102,97,117,108,116,39,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,117,110,100,101,102,105,110,101,100,92,110,32,32,125,92,110,32,32,118,97,114,32,100,101,102,32,61,32,112,114,111,112,46,100,101,102,97,117,108,116,59,92,110,32,32,47,47,32,119,97,114,110,32,97,103,97,105,110,115,116,32,110,111,110,45,102,97,99,116,111,114,121,32,100,101,102,97,117,108,116,115,32,102,111,114,32,79,98,106,101,99,116,32,38,32,65,114,114,97,121,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,105,115,79,98,106,101,99,116,40,100,101,102,41,41,32,123,92,110,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,39,73,110,118,97,108,105,100,32,100,101,102,97,117,108,116,32,118,97,108,117,101,32,102,111,114,32,112,114,111,112,32,92,34,39,32,43,32,107,101,121,32,43,32,39,92,34,58,32,39,32,43,92,110,32,32,32,32,32,32,39,80,114,111,112,115,32,119,105,116,104,32,116,121,112,101,32,79,98,106,101,99,116,47,65,114,114,97,121,32,109,117,115,116,32,117,115,101,32,97,32,102,97,99,116,111,114,121,32,102,117,110,99,116,105,111,110,32,39,32,43,92,110,32,32,32,32,32,32,39,116,111,32,114,101,116,117,114,110,32,116,104,101,32,100,101,102,97,117,108,116,32,118,97,108,117,101,46,39,44,92,110,32,32,32,32,32,32,118,109,92,110,32,32,32,32,41,59,92,110,32,32,125,92,110,32,32,47,47,32,116,104,101,32,114,97,119,32,112,114,111,112,32,118,97,108,117,101,32,119,97,115,32,97,108,115,111,32,117,110,100,101,102,105,110,101,100,32,102,114,111,109,32,112,114,101,118,105,111,117,115,32,114,101,110,100,101,114,44,92,110,32,32,47,47,32,114,101,116,117,114,110,32,112,114,101,118,105,111,117,115,32,100,101,102,97,117,108,116,32,118,97,108,117,101,32,116,111,32,97,118,111,105,100,32,117,110,110,101,99,101,115,115,97,114,121,32,119,97,116,99,104,101,114,32,116,114,105,103,103,101,114,92,110,32,32,105,102,32,40,118,109,32,38,38,32,118,109,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,68,97,116,97,32,38,38,92,110,32,32,32,32,118,109,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,68,97,116,97,91,107,101,121,93,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,92,110,32,32,32,32,118,109,46,95,112,114,111,112,115,91,107,101,121,93,32,33,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,109,46,95,112,114,111,112,115,91,107,101,121,93,92,110,32,32,125,92,110,32,32,47,47,32,99,97,108,108,32,102,97,99,116,111,114,121,32,102,117,110,99,116,105,111,110,32,102,111,114,32,110,111,110,45,70,117,110,99,116,105,111,110,32,116,121,112,101,115,92,110,32,32,47,47,32,97,32,118,97,108,117,101,32,105,115,32,70,117,110,99,116,105,111,110,32,105,102,32,105,116,115,32,112,114,111,116,111,116,121,112,101,32,105,115,32,102,117,110,99,116,105,111,110,32,101,118,101,110,32,97,99,114,111,115,115,32,100,105,102,102,101,114,101,110,116,32,101,120,101,99,117,116,105,111,110,32,99,111,110,116,101,120,116,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,100,101,102,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,32,103,101,116,84,121,112,101,40,112,114,111,112,46,116,121,112,101,41,32,33,61,61,32,39,70,117,110,99,116,105,111,110,39,92,110,32,32,32,32,63,32,100,101,102,46,99,97,108,108,40,118,109,41,92,110,32,32,32,32,58,32,100,101,102,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,65,115,115,101,114,116,32,119,104,101,116,104,101,114,32,97,32,112,114,111,112,32,105,115,32,118,97,108,105,100,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,97,115,115,101,114,116,80,114,111,112,32,40,92,110,32,32,112,114,111,112,44,92,110,32,32,110,97,109,101,44,92,110,32,32,118,97,108,117,101,44,92,110,32,32,118,109,44,92,110,32,32,97,98,115,101,110,116,92,110,41,32,123,92,110,32,32,105,102,32,40,112,114,111,112,46,114,101,113,117,105,114,101,100,32,38,38,32,97,98,115,101,110,116,41,32,123,92,110,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,39,77,105,115,115,105,110,103,32,114,101,113,117,105,114,101,100,32,112,114,111,112,58,32,92,34,39,32,43,32,110,97,109,101,32,43,32,39,92,34,39,44,92,110,32,32,32,32,32,32,118,109,92,110,32,32,32,32,41,59,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,105,102,32,40,118,97,108,117,101,32,61,61,32,110,117,108,108,32,38,38,32,33,112,114,111,112,46,114,101,113,117,105,114,101,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,118,97,114,32,116,121,112,101,32,61,32,112,114,111,112,46,116,121,112,101,59,92,110,32,32,118,97,114,32,118,97,108,105,100,32,61,32,33,116,121,112,101,32,124,124,32,116,121,112,101,32,61,61,61,32,116,114,117,101,59,92,110,32,32,118,97,114,32,101,120,112,101,99,116,101,100,84,121,112,101,115,32,61,32,91,93,59,92,110,32,32,105,102,32,40,116,121,112,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,121,112,101,41,41,32,123,92,110,32,32,32,32,32,32,116,121,112,101,32,61,32,91,116,121,112,101,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,116,121,112,101,46,108,101,110,103,116,104,32,38,38,32,33,118,97,108,105,100,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,115,115,101,114,116,101,100,84,121,112,101,32,61,32,97,115,115,101,114,116,84,121,112,101,40,118,97,108,117,101,44,32,116,121,112,101,91,105,93,41,59,92,110,32,32,32,32,32,32,101,120,112,101,99,116,101,100,84,121,112,101,115,46,112,117,115,104,40,97,115,115,101,114,116,101,100,84,121,112,101,46,101,120,112,101,99,116,101,100,84,121,112,101,32,124,124,32,39,39,41,59,92,110,32,32,32,32,32,32,118,97,108,105,100,32,61,32,97,115,115,101,114,116,101,100,84,121,112,101,46,118,97,108,105,100,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,118,97,108,105,100,41,32,123,92,110,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,103,101,116,73,110,118,97,108,105,100,84,121,112,101,77,101,115,115,97,103,101,40,110,97,109,101,44,32,118,97,108,117,101,44,32,101,120,112,101,99,116,101,100,84,121,112,101,115,41,44,92,110,32,32,32,32,32,32,118,109,92,110,32,32,32,32,41,59,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,118,97,114,32,118,97,108,105,100,97,116,111,114,32,61,32,112,114,111,112,46,118,97,108,105,100,97,116,111,114,59,92,110,32,32,105,102,32,40,118,97,108,105,100,97,116,111,114,41,32,123,92,110,32,32,32,32,105,102,32,40,33,118,97,108,105,100,97,116,111,114,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,39,73,110,118,97,108,105,100,32,112,114,111,112,58,32,99,117,115,116,111,109,32,118,97,108,105,100,97,116,111,114,32,99,104,101,99,107,32,102,97,105,108,101,100,32,102,111,114,32,112,114,111,112,32,92,34,39,32,43,32,110,97,109,101,32,43,32,39,92,34,46,39,44,92,110,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,115,105,109,112,108,101,67,104,101,99,107,82,69,32,61,32,47,94,40,83,116,114,105,110,103,124,78,117,109,98,101,114,124,66,111,111,108,101,97,110,124,70,117,110,99,116,105,111,110,124,83,121,109,98,111,108,41,36,47,59,92,110,92,110,102,117,110,99,116,105,111,110,32,97,115,115,101,114,116,84,121,112,101,32,40,118,97,108,117,101,44,32,116,121,112,101,41,32,123,92,110,32,32,118,97,114,32,118,97,108,105,100,59,92,110,32,32,118,97,114,32,101,120,112,101,99,116,101,100,84,121,112,101,32,61,32,103,101,116,84,121,112,101,40,116,121,112,101,41,59,92,110,32,32,105,102,32,40,115,105,109,112,108,101,67,104,101,99,107,82,69,46,116,101,115,116,40,101,120,112,101,99,116,101,100,84,121,112,101,41,41,32,123,92,110,32,32,32,32,118,97,114,32,116,32,61,32,116,121,112,101,111,102,32,118,97,108,117,101,59,92,110,32,32,32,32,118,97,108,105,100,32,61,32,116,32,61,61,61,32,101,120,112,101,99,116,101,100,84,121,112,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,32,32,47,47,32,102,111,114,32,112,114,105,109,105,116,105,118,101,32,119,114,97,112,112,101,114,32,111,98,106,101,99,116,115,92,110,32,32,32,32,105,102,32,40,33,118,97,108,105,100,32,38,38,32,116,32,61,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,32,32,118,97,108,105,100,32,61,32,118,97,108,117,101,32,105,110,115,116,97,110,99,101,111,102,32,116,121,112,101,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,101,120,112,101,99,116,101,100,84,121,112,101,32,61,61,61,32,39,79,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,118,97,108,105,100,32,61,32,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,117,101,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,101,120,112,101,99,116,101,100,84,121,112,101,32,61,61,61,32,39,65,114,114,97,121,39,41,32,123,92,110,32,32,32,32,118,97,108,105,100,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,117,101,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,118,97,108,105,100,32,61,32,118,97,108,117,101,32,105,110,115,116,97,110,99,101,111,102,32,116,121,112,101,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,118,97,108,105,100,58,32,118,97,108,105,100,44,92,110,32,32,32,32,101,120,112,101,99,116,101,100,84,121,112,101,58,32,101,120,112,101,99,116,101,100,84,121,112,101,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,85,115,101,32,102,117,110,99,116,105,111,110,32,115,116,114,105,110,103,32,110,97,109,101,32,116,111,32,99,104,101,99,107,32,98,117,105,108,116,45,105,110,32,116,121,112,101,115,44,92,110,32,42,32,98,101,99,97,117,115,101,32,97,32,115,105,109,112,108,101,32,101,113,117,97,108,105,116,121,32,99,104,101,99,107,32,119,105,108,108,32,102,97,105,108,32,119,104,101,110,32,114,117,110,110,105,110,103,92,110,32,42,32,97,99,114,111,115,115,32,100,105,102,102,101,114,101,110,116,32,118,109,115,32,47,32,105,102,114,97,109,101,115,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,84,121,112,101,32,40,102,110,41,32,123,92,110,32,32,118,97,114,32,109,97,116,99,104,32,61,32,102,110,32,38,38,32,102,110,46,116,111,83,116,114,105,110,103,40,41,46,109,97,116,99,104,40,47,94,92,92,115,42,102,117,110,99,116,105,111,110,32,40,92,92,119,43,41,47,41,59,92,110,32,32,114,101,116,117,114,110,32,109,97,116,99,104,32,63,32,109,97,116,99,104,91,49,93,32,58,32,39,39,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,83,97,109,101,84,121,112,101,32,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,101,116,84,121,112,101,40,97,41,32,61,61,61,32,103,101,116,84,121,112,101,40,98,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,84,121,112,101,73,110,100,101,120,32,40,116,121,112,101,44,32,101,120,112,101,99,116,101,100,84,121,112,101,115,41,32,123,92,110,32,32,105,102,32,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,120,112,101,99,116,101,100,84,121,112,101,115,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,83,97,109,101,84,121,112,101,40,101,120,112,101,99,116,101,100,84,121,112,101,115,44,32,116,121,112,101,41,32,63,32,48,32,58,32,45,49,92,110,32,32,125,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,101,110,32,61,32,101,120,112,101,99,116,101,100,84,121,112,101,115,46,108,101,110,103,116,104,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,83,97,109,101,84,121,112,101,40,101,120,112,101,99,116,101,100,84,121,112,101,115,91,105,93,44,32,116,121,112,101,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,45,49,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,73,110,118,97,108,105,100,84,121,112,101,77,101,115,115,97,103,101,32,40,110,97,109,101,44,32,118,97,108,117,101,44,32,101,120,112,101,99,116,101,100,84,121,112,101,115,41,32,123,92,110,32,32,118,97,114,32,109,101,115,115,97,103,101,32,61,32,92,34,73,110,118,97,108,105,100,32,112,114,111,112,58,32,116,121,112,101,32,99,104,101,99,107,32,102,97,105,108,101,100,32,102,111,114,32,112,114,111,112,32,92,92,92,34,92,34,32,43,32,110,97,109,101,32,43,32,92,34,92,92,92,34,46,92,34,32,43,92,110,32,32,32,32,92,34,32,69,120,112,101,99,116,101,100,32,92,34,32,43,32,40,101,120,112,101,99,116,101,100,84,121,112,101,115,46,109,97,112,40,99,97,112,105,116,97,108,105,122,101,41,46,106,111,105,110,40,39,44,32,39,41,41,59,92,110,32,32,118,97,114,32,101,120,112,101,99,116,101,100,84,121,112,101,32,61,32,101,120,112,101,99,116,101,100,84,121,112,101,115,91,48,93,59,92,110,32,32,118,97,114,32,114,101,99,101,105,118,101,100,84,121,112,101,32,61,32,116,111,82,97,119,84,121,112,101,40,118,97,108,117,101,41,59,92,110,32,32,118,97,114,32,101,120,112,101,99,116,101,100,86,97,108,117,101,32,61,32,115,116,121,108,101,86,97,108,117,101,40,118,97,108,117,101,44,32,101,120,112,101,99,116,101,100,84,121,112,101,41,59,92,110,32,32,118,97,114,32,114,101,99,101,105,118,101,100,86,97,108,117,101,32,61,32,115,116,121,108,101,86,97,108,117,101,40,118,97,108,117,101,44,32,114,101,99,101,105,118,101,100,84,121,112,101,41,59,92,110,32,32,47,47,32,99,104,101,99,107,32,105,102,32,119,101,32,110,101,101,100,32,116,111,32,115,112,101,99,105,102,121,32,101,120,112,101,99,116,101,100,32,118,97,108,117,101,92,110,32,32,105,102,32,40,101,120,112,101,99,116,101,100,84,121,112,101,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,38,38,92,110,32,32,32,32,32,32,105,115,69,120,112,108,105,99,97,98,108,101,40,101,120,112,101,99,116,101,100,84,121,112,101,41,32,38,38,92,110,32,32,32,32,32,32,33,105,115,66,111,111,108,101,97,110,40,101,120,112,101,99,116,101,100,84,121,112,101,44,32,114,101,99,101,105,118,101,100,84,121,112,101,41,41,32,123,92,110,32,32,32,32,109,101,115,115,97,103,101,32,43,61,32,92,34,32,119,105,116,104,32,118,97,108,117,101,32,92,34,32,43,32,101,120,112,101,99,116,101,100,86,97,108,117,101,59,92,110,32,32,125,92,110,32,32,109,101,115,115,97,103,101,32,43,61,32,92,34,44,32,103,111,116,32,92,34,32,43,32,114,101,99,101,105,118,101,100,84,121,112,101,32,43,32,92,34,32,92,34,59,92,110,32,32,47,47,32,99,104,101,99,107,32,105,102,32,119,101,32,110,101,101,100,32,116,111,32,115,112,101,99,105,102,121,32,114,101,99,101,105,118,101,100,32,118,97,108,117,101,92,110,32,32,105,102,32,40,105,115,69,120,112,108,105,99,97,98,108,101,40,114,101,99,101,105,118,101,100,84,121,112,101,41,41,32,123,92,110,32,32,32,32,109,101,115,115,97,103,101,32,43,61,32,92,34,119,105,116,104,32,118,97,108,117,101,32,92,34,32,43,32,114,101,99,101,105,118,101,100,86,97,108,117,101,32,43,32,92,34,46,92,34,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,109,101,115,115,97,103,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,121,108,101,86,97,108,117,101,32,40,118,97,108,117,101,44,32,116,121,112,101,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,83,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,92,34,92,92,92,34,92,34,32,43,32,118,97,108,117,101,32,43,32,92,34,92,92,92,34,92,34,41,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,78,117,109,98,101,114,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,92,34,92,34,32,43,32,40,78,117,109,98,101,114,40,118,97,108,117,101,41,41,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,92,34,92,34,32,43,32,118,97,108,117,101,41,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,69,120,112,108,105,99,97,98,108,101,32,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,101,120,112,108,105,99,105,116,84,121,112,101,115,32,61,32,91,39,115,116,114,105,110,103,39,44,32,39,110,117,109,98,101,114,39,44,32,39,98,111,111,108,101,97,110,39,93,59,92,110,32,32,114,101,116,117,114,110,32,101,120,112,108,105,99,105,116,84,121,112,101,115,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,101,108,101,109,41,32,123,32,114,101,116,117,114,110,32,118,97,108,117,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,32,61,61,61,32,101,108,101,109,59,32,125,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,66,111,111,108,101,97,110,32,40,41,32,123,92,110,32,32,118,97,114,32,97,114,103,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,41,32,97,114,103,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,93,59,92,110,92,110,32,32,114,101,116,117,114,110,32,97,114,103,115,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,101,108,101,109,41,32,123,32,114,101,116,117,114,110,32,101,108,101,109,46,116,111,76,111,119,101,114,67,97,115,101,40,41,32,61,61,61,32,39,98,111,111,108,101,97,110,39,59,32,125,41,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,69,114,114,111,114,32,40,101,114,114,44,32,118,109,44,32,105,110,102,111,41,32,123,92,110,32,32,47,47,32,68,101,97,99,116,105,118,97,116,101,32,100,101,112,115,32,116,114,97,99,107,105,110,103,32,119,104,105,108,101,32,112,114,111,99,101,115,115,105,110,103,32,101,114,114,111,114,32,104,97,110,100,108,101,114,32,116,111,32,97,118,111,105,100,32,112,111,115,115,105,98,108,101,32,105,110,102,105,110,105,116,101,32,114,101,110,100,101,114,105,110,103,46,92,110,32,32,47,47,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,120,47,105,115,115,117,101,115,47,49,53,48,53,92,110,32,32,112,117,115,104,84,97,114,103,101,116,40,41,59,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,105,102,32,40,118,109,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,32,61,32,118,109,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,40,99,117,114,32,61,32,99,117,114,46,36,112,97,114,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,104,111,111,107,115,32,61,32,99,117,114,46,36,111,112,116,105,111,110,115,46,101,114,114,111,114,67,97,112,116,117,114,101,100,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,104,111,111,107,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,104,111,111,107,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,97,112,116,117,114,101,32,61,32,104,111,111,107,115,91,105,93,46,99,97,108,108,40,99,117,114,44,32,101,114,114,44,32,118,109,44,32,105,110,102,111,41,32,61,61,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,99,97,112,116,117,114,101,41,32,123,32,114,101,116,117,114,110,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,108,111,98,97,108,72,97,110,100,108,101,69,114,114,111,114,40,101,44,32,99,117,114,44,32,39,101,114,114,111,114,67,97,112,116,117,114,101,100,32,104,111,111,107,39,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,103,108,111,98,97,108,72,97,110,100,108,101,69,114,114,111,114,40,101,114,114,44,32,118,109,44,32,105,110,102,111,41,59,92,110,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,112,111,112,84,97,114,103,101,116,40,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,87,105,116,104,69,114,114,111,114,72,97,110,100,108,105,110,103,32,40,92,110,32,32,104,97,110,100,108,101,114,44,92,110,32,32,99,111,110,116,101,120,116,44,92,110,32,32,97,114,103,115,44,92,110,32,32,118,109,44,92,110,32,32,105,110,102,111,92,110,41,32,123,92,110,32,32,118,97,114,32,114,101,115,59,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,114,101,115,32,61,32,97,114,103,115,32,63,32,104,97,110,100,108,101,114,46,97,112,112,108,121,40,99,111,110,116,101,120,116,44,32,97,114,103,115,41,32,58,32,104,97,110,100,108,101,114,46,99,97,108,108,40,99,111,110,116,101,120,116,41,59,92,110,32,32,32,32,105,102,32,40,114,101,115,32,38,38,32,33,114,101,115,46,95,105,115,86,117,101,32,38,38,32,105,115,80,114,111,109,105,115,101,40,114,101,115,41,32,38,38,32,33,114,101,115,46,95,104,97,110,100,108,101,100,41,32,123,92,110,32,32,32,32,32,32,114,101,115,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,32,40,101,41,32,123,32,114,101,116,117,114,110,32,104,97,110,100,108,101,69,114,114,111,114,40,101,44,32,118,109,44,32,105,110,102,111,32,43,32,92,34,32,40,80,114,111,109,105,115,101,47,97,115,121,110,99,41,92,34,41,59,32,125,41,59,92,110,32,32,32,32,32,32,47,47,32,105,115,115,117,101,32,35,57,53,49,49,92,110,32,32,32,32,32,32,47,47,32,97,118,111,105,100,32,99,97,116,99,104,32,116,114,105,103,103,101,114,105,110,103,32,109,117,108,116,105,112,108,101,32,116,105,109,101,115,32,119,104,101,110,32,110,101,115,116,101,100,32,99,97,108,108,115,92,110,32,32,32,32,32,32,114,101,115,46,95,104,97,110,100,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,104,97,110,100,108,101,69,114,114,111,114,40,101,44,32,118,109,44,32,105,110,102,111,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,108,111,98,97,108,72,97,110,100,108,101,69,114,114,111,114,32,40,101,114,114,44,32,118,109,44,32,105,110,102,111,41,32,123,92,110,32,32,105,102,32,40,99,111,110,102,105,103,46,101,114,114,111,114,72,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,110,102,105,103,46,101,114,114,111,114,72,97,110,100,108,101,114,46,99,97,108,108,40,110,117,108,108,44,32,101,114,114,44,32,118,109,44,32,105,110,102,111,41,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,105,102,32,116,104,101,32,117,115,101,114,32,105,110,116,101,110,116,105,111,110,97,108,108,121,32,116,104,114,111,119,115,32,116,104,101,32,111,114,105,103,105,110,97,108,32,101,114,114,111,114,32,105,110,32,116,104,101,32,104,97,110,100,108,101,114,44,92,110,32,32,32,32,32,32,47,47,32,100,111,32,110,111,116,32,108,111,103,32,105,116,32,116,119,105,99,101,92,110,32,32,32,32,32,32,105,102,32,40,101,32,33,61,61,32,101,114,114,41,32,123,92,110,32,32,32,32,32,32,32,32,108,111,103,69,114,114,111,114,40,101,44,32,110,117,108,108,44,32,39,99,111,110,102,105,103,46,101,114,114,111,114,72,97,110,100,108,101,114,39,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,108,111,103,69,114,114,111,114,40,101,114,114,44,32,118,109,44,32,105,110,102,111,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,111,103,69,114,114,111,114,32,40,101,114,114,44,32,118,109,44,32,105,110,102,111,41,32,123,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,119,97,114,110,40,40,92,34,69,114,114,111,114,32,105,110,32,92,34,32,43,32,105,110,102,111,32,43,32,92,34,58,32,92,92,92,34,92,34,32,43,32,40,101,114,114,46,116,111,83,116,114,105,110,103,40,41,41,32,43,32,92,34,92,92,92,34,92,34,41,44,32,118,109,41,59,92,110,32,32,125,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,105,102,32,40,40,105,110,66,114,111,119,115,101,114,32,124,124,32,105,110,87,101,101,120,41,32,38,38,32,116,121,112,101,111,102,32,99,111,110,115,111,108,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,101,114,114,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,116,104,114,111,119,32,101,114,114,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,105,115,85,115,105,110,103,77,105,99,114,111,84,97,115,107,32,61,32,102,97,108,115,101,59,92,110,92,110,118,97,114,32,99,97,108,108,98,97,99,107,115,32,61,32,91,93,59,92,110,118,97,114,32,112,101,110,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,92,110,102,117,110,99,116,105,111,110,32,102,108,117,115,104,67,97,108,108,98,97,99,107,115,32,40,41,32,123,92,110,32,32,112,101,110,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,118,97,114,32,99,111,112,105,101,115,32,61,32,99,97,108,108,98,97,99,107,115,46,115,108,105,99,101,40,48,41,59,92,110,32,32,99,97,108,108,98,97,99,107,115,46,108,101,110,103,116,104,32,61,32,48,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,99,111,112,105,101,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,99,111,112,105,101,115,91,105,93,40,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,47,32,72,101,114,101,32,119,101,32,104,97,118,101,32,97,115,121,110,99,32,100,101,102,101,114,114,105,110,103,32,119,114,97,112,112,101,114,115,32,117,115,105,110,103,32,109,105,99,114,111,116,97,115,107,115,46,92,110,47,47,32,73,110,32,50,46,53,32,119,101,32,117,115,101,100,32,40,109,97,99,114,111,41,32,116,97,115,107,115,32,40,105,110,32,99,111,109,98,105,110,97,116,105,111,110,32,119,105,116,104,32,109,105,99,114,111,116,97,115,107,115,41,46,92,110,47,47,32,72,111,119,101,118,101,114,44,32,105,116,32,104,97,115,32,115,117,98,116,108,101,32,112,114,111,98,108,101,109,115,32,119,104,101,110,32,115,116,97,116,101,32,105,115,32,99,104,97,110,103,101,100,32,114,105,103,104,116,32,98,101,102,111,114,101,32,114,101,112,97,105,110,116,92,110,47,47,32,40,101,46,103,46,32,35,54,56,49,51,44,32,111,117,116,45,105,110,32,116,114,97,110,115,105,116,105,111,110,115,41,46,92,110,47,47,32,65,108,115,111,44,32,117,115,105,110,103,32,40,109,97,99,114,111,41,32,116,97,115,107,115,32,105,110,32,101,118,101,110,116,32,104,97,110,100,108,101,114,32,119,111,117,108,100,32,99,97,117,115,101,32,115,111,109,101,32,119,101,105,114,100,32,98,101,104,97,118,105,111,114,115,92,110,47,47,32,116,104,97,116,32,99,97,110,110,111,116,32,98,101,32,99,105,114,99,117,109,118,101,110,116,101,100,32,40,101,46,103,46,32,35,55,49,48,57,44,32,35,55,49,53,51,44,32,35,55,53,52,54,44,32,35,55,56,51,52,44,32,35,56,49,48,57,41,46,92,110,47,47,32,83,111,32,119,101,32,110,111,119,32,117,115,101,32,109,105,99,114,111,116,97,115,107,115,32,101,118,101,114,121,119,104,101,114,101,44,32,97,103,97,105,110,46,92,110,47,47,32,65,32,109,97,106,111,114,32,100,114,97,119,98,97,99,107,32,111,102,32,116,104,105,115,32,116,114,97,100,101,111,102,102,32,105,115,32,116,104,97,116,32,116,104,101,114,101,32,97,114,101,32,115,111,109,101,32,115,99,101,110,97,114,105,111,115,92,110,47,47,32,119,104,101,114,101,32,109,105,99,114,111,116,97,115,107,115,32,104,97,118,101,32,116,111,111,32,104,105,103,104,32,97,32,112,114,105,111,114,105,116,121,32,97,110,100,32,102,105,114,101,32,105,110,32,98,101,116,119,101,101,110,32,115,117,112,112,111,115,101,100,108,121,92,110,47,47,32,115,101,113,117,101,110,116,105,97,108,32,101,118,101,110,116,115,32,40,101,46,103,46,32,35,52,53,50,49,44,32,35,54,54,57,48,44,32,119,104,105,99,104,32,104,97,118,101,32,119,111,114,107,97,114,111,117,110,100,115,41,92,110,47,47,32,111,114,32,101,118,101,110,32,98,101,116,119,101,101,110,32,98,117,98,98,108,105,110,103,32,111,102,32,116,104,101,32,115,97,109,101,32,101,118,101,110,116,32,40,35,54,53,54,54,41,46,92,110,118,97,114,32,116,105,109,101,114,70,117,110,99,59,92,110,92,110,47,47,32,84,104,101,32,110,101,120,116,84,105,99,107,32,98,101,104,97,118,105,111,114,32,108,101,118,101,114,97,103,101,115,32,116,104,101,32,109,105,99,114,111,116,97,115,107,32,113,117,101,117,101,44,32,119,104,105,99,104,32,99,97,110,32,98,101,32,97,99,99,101,115,115,101,100,92,110,47,47,32,118,105,97,32,101,105,116,104,101,114,32,110,97,116,105,118,101,32,80,114,111,109,105,115,101,46,116,104,101,110,32,111,114,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,46,92,110,47,47,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,104,97,115,32,119,105,100,101,114,32,115,117,112,112,111,114,116,44,32,104,111,119,101,118,101,114,32,105,116,32,105,115,32,115,101,114,105,111,117,115,108,121,32,98,117,103,103,101,100,32,105,110,92,110,47,47,32,85,73,87,101,98,86,105,101,119,32,105,110,32,105,79,83,32,62,61,32,57,46,51,46,51,32,119,104,101,110,32,116,114,105,103,103,101,114,101,100,32,105,110,32,116,111,117,99,104,32,101,118,101,110,116,32,104,97,110,100,108,101,114,115,46,32,73,116,92,110,47,47,32,99,111,109,112,108,101,116,101,108,121,32,115,116,111,112,115,32,119,111,114,107,105,110,103,32,97,102,116,101,114,32,116,114,105,103,103,101,114,105,110,103,32,97,32,102,101,119,32,116,105,109,101,115,46,46,46,32,115,111,44,32,105,102,32,110,97,116,105,118,101,92,110,47,47,32,80,114,111,109,105,115,101,32,105,115,32,97,118,97,105,108,97,98,108,101,44,32,119,101,32,119,105,108,108,32,117,115,101,32,105,116,58,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,44,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,32,42,47,92,110,105,102,32,40,116,121,112,101,111,102,32,80,114,111,109,105,115,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,105,115,78,97,116,105,118,101,40,80,114,111,109,105,115,101,41,41,32,123,92,110,32,32,118,97,114,32,112,32,61,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,59,92,110,32,32,116,105,109,101,114,70,117,110,99,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,112,46,116,104,101,110,40,102,108,117,115,104,67,97,108,108,98,97,99,107,115,41,59,92,110,32,32,32,32,47,47,32,73,110,32,112,114,111,98,108,101,109,97,116,105,99,32,85,73,87,101,98,86,105,101,119,115,44,32,80,114,111,109,105,115,101,46,116,104,101,110,32,100,111,101,115,110,39,116,32,99,111,109,112,108,101,116,101,108,121,32,98,114,101,97,107,44,32,98,117,116,92,110,32,32,32,32,47,47,32,105,116,32,99,97,110,32,103,101,116,32,115,116,117,99,107,32,105,110,32,97,32,119,101,105,114,100,32,115,116,97,116,101,32,119,104,101,114,101,32,99,97,108,108,98,97,99,107,115,32,97,114,101,32,112,117,115,104,101,100,32,105,110,116,111,32,116,104,101,92,110,32,32,32,32,47,47,32,109,105,99,114,111,116,97,115,107,32,113,117,101,117,101,32,98,117,116,32,116,104,101,32,113,117,101,117,101,32,105,115,110,39,116,32,98,101,105,110,103,32,102,108,117,115,104,101,100,44,32,117,110,116,105,108,32,116,104,101,32,98,114,111,119,115,101,114,92,110,32,32,32,32,47,47,32,110,101,101,100,115,32,116,111,32,100,111,32,115,111,109,101,32,111,116,104,101,114,32,119,111,114,107,44,32,101,46,103,46,32,104,97,110,100,108,101,32,97,32,116,105,109,101,114,46,32,84,104,101,114,101,102,111,114,101,32,119,101,32,99,97,110,92,110,32,32,32,32,47,47,32,92,34,102,111,114,99,101,92,34,32,116,104,101,32,109,105,99,114,111,116,97,115,107,32,113,117,101,117,101,32,116,111,32,98,101,32,102,108,117,115,104,101,100,32,98,121,32,97,100,100,105,110,103,32,97,110,32,101,109,112,116,121,32,116,105,109,101,114,46,92,110,32,32,32,32,105,102,32,40,105,115,73,79,83,41,32,123,32,115,101,116,84,105,109,101,111,117,116,40,110,111,111,112,41,59,32,125,92,110,32,32,125,59,92,110,32,32,105,115,85,115,105,110,103,77,105,99,114,111,84,97,115,107,32,61,32,116,114,117,101,59,92,110,125,32,101,108,115,101,32,105,102,32,40,33,105,115,73,69,32,38,38,32,116,121,112,101,111,102,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,40,92,110,32,32,105,115,78,97,116,105,118,101,40,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,41,32,124,124,92,110,32,32,47,47,32,80,104,97,110,116,111,109,74,83,32,97,110,100,32,105,79,83,32,55,46,120,92,110,32,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,46,116,111,83,116,114,105,110,103,40,41,32,61,61,61,32,39,91,111,98,106,101,99,116,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,67,111,110,115,116,114,117,99,116,111,114,93,39,92,110,41,41,32,123,92,110,32,32,47,47,32,85,115,101,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,119,104,101,114,101,32,110,97,116,105,118,101,32,80,114,111,109,105,115,101,32,105,115,32,110,111,116,32,97,118,97,105,108,97,98,108,101,44,92,110,32,32,47,47,32,101,46,103,46,32,80,104,97,110,116,111,109,74,83,44,32,105,79,83,55,44,32,65,110,100,114,111,105,100,32,52,46,52,92,110,32,32,47,47,32,40,35,54,52,54,54,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,105,115,32,117,110,114,101,108,105,97,98,108,101,32,105,110,32,73,69,49,49,41,92,110,32,32,118,97,114,32,99,111,117,110,116,101,114,32,61,32,49,59,92,110,32,32,118,97,114,32,111,98,115,101,114,118,101,114,32,61,32,110,101,119,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,40,102,108,117,115,104,67,97,108,108,98,97,99,107,115,41,59,92,110,32,32,118,97,114,32,116,101,120,116,78,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,83,116,114,105,110,103,40,99,111,117,110,116,101,114,41,41,59,92,110,32,32,111,98,115,101,114,118,101,114,46,111,98,115,101,114,118,101,40,116,101,120,116,78,111,100,101,44,32,123,92,110,32,32,32,32,99,104,97,114,97,99,116,101,114,68,97,116,97,58,32,116,114,117,101,92,110,32,32,125,41,59,92,110,32,32,116,105,109,101,114,70,117,110,99,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,99,111,117,110,116,101,114,32,61,32,40,99,111,117,110,116,101,114,32,43,32,49,41,32,37,32,50,59,92,110,32,32,32,32,116,101,120,116,78,111,100,101,46,100,97,116,97,32,61,32,83,116,114,105,110,103,40,99,111,117,110,116,101,114,41,59,92,110,32,32,125,59,92,110,32,32,105,115,85,115,105,110,103,77,105,99,114,111,84,97,115,107,32,61,32,116,114,117,101,59,92,110,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,111,102,32,115,101,116,73,109,109,101,100,105,97,116,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,105,115,78,97,116,105,118,101,40,115,101,116,73,109,109,101,100,105,97,116,101,41,41,32,123,92,110,32,32,47,47,32,70,97,108,108,98,97,99,107,32,116,111,32,115,101,116,73,109,109,101,100,105,97,116,101,46,92,110,32,32,47,47,32,84,101,99,104,110,105,99,97,108,108,121,32,105,116,32,108,101,118,101,114,97,103,101,115,32,116,104,101,32,40,109,97,99,114,111,41,32,116,97,115,107,32,113,117,101,117,101,44,92,110,32,32,47,47,32,98,117,116,32,105,116,32,105,115,32,115,116,105,108,108,32,97,32,98,101,116,116,101,114,32,99,104,111,105,99,101,32,116,104,97,110,32,115,101,116,84,105,109,101,111,117,116,46,92,110,32,32,116,105,109,101,114,70,117,110,99,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,115,101,116,73,109,109,101,100,105,97,116,101,40,102,108,117,115,104,67,97,108,108,98,97,99,107,115,41,59,92,110,32,32,125,59,92,110,125,32,101,108,115,101,32,123,92,110,32,32,47,47,32,70,97,108,108,98,97,99,107,32,116,111,32,115,101,116,84,105,109,101,111,117,116,46,92,110,32,32,116,105,109,101,114,70,117,110,99,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,108,117,115,104,67,97,108,108,98,97,99,107,115,44,32,48,41,59,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,101,120,116,84,105,99,107,32,40,99,98,44,32,99,116,120,41,32,123,92,110,32,32,118,97,114,32,95,114,101,115,111,108,118,101,59,92,110,32,32,99,97,108,108,98,97,99,107,115,46,112,117,115,104,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,99,98,41,32,123,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,99,98,46,99,97,108,108,40,99,116,120,41,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,69,114,114,111,114,40,101,44,32,99,116,120,44,32,39,110,101,120,116,84,105,99,107,39,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,95,114,101,115,111,108,118,101,41,32,123,92,110,32,32,32,32,32,32,95,114,101,115,111,108,118,101,40,99,116,120,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,105,102,32,40,33,112,101,110,100,105,110,103,41,32,123,92,110,32,32,32,32,112,101,110,100,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,116,105,109,101,114,70,117,110,99,40,41,59,92,110,32,32,125,92,110,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,105,102,32,40,33,99,98,32,38,38,32,116,121,112,101,111,102,32,80,114,111,109,105,115,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,41,32,123,92,110,32,32,32,32,32,32,95,114,101,115,111,108,118,101,32,61,32,114,101,115,111,108,118,101,59,92,110,32,32,32,32,125,41,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,32,110,111,116,32,116,121,112,101,32,99,104,101,99,107,105,110,103,32,116,104,105,115,32,102,105,108,101,32,98,101,99,97,117,115,101,32,102,108,111,119,32,100,111,101,115,110,39,116,32,112,108,97,121,32,119,101,108,108,32,119,105,116,104,32,80,114,111,120,121,32,42,47,92,110,92,110,118,97,114,32,105,110,105,116,80,114,111,120,121,59,92,110,92,110,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,118,97,114,32,97,108,108,111,119,101,100,71,108,111,98,97,108,115,32,61,32,109,97,107,101,77,97,112,40,92,110,32,32,32,32,39,73,110,102,105,110,105,116,121,44,117,110,100,101,102,105,110,101,100,44,78,97,78,44,105,115,70,105,110,105,116,101,44,105,115,78,97,78,44,39,32,43,92,110,32,32,32,32,39,112,97,114,115,101,70,108,111,97,116,44,112,97,114,115,101,73,110,116,44,100,101,99,111,100,101,85,82,73,44,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,44,101,110,99,111,100,101,85,82,73,44,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,44,39,32,43,92,110,32,32,32,32,39,77,97,116,104,44,78,117,109,98,101,114,44,68,97,116,101,44,65,114,114,97,121,44,79,98,106,101,99,116,44,66,111,111,108,101,97,110,44,83,116,114,105,110,103,44,82,101,103,69,120,112,44,77,97,112,44,83,101,116,44,74,83,79,78,44,73,110,116,108,44,39,32,43,92,110,32,32,32,32,39,114,101,113,117,105,114,101,39,32,47,47,32,102,111,114,32,87,101,98,112,97,99,107,47,66,114,111,119,115,101,114,105,102,121,92,110,32,32,41,59,92,110,92,110,32,32,118,97,114,32,119,97,114,110,78,111,110,80,114,101,115,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,92,34,80,114,111,112,101,114,116,121,32,111,114,32,109,101,116,104,111,100,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,32,105,115,32,110,111,116,32,100,101,102,105,110,101,100,32,111,110,32,116,104,101,32,105,110,115,116,97,110,99,101,32,98,117,116,32,92,34,32,43,92,110,32,32,32,32,32,32,39,114,101,102,101,114,101,110,99,101,100,32,100,117,114,105,110,103,32,114,101,110,100,101,114,46,32,77,97,107,101,32,115,117,114,101,32,116,104,97,116,32,116,104,105,115,32,112,114,111,112,101,114,116,121,32,105,115,32,114,101,97,99,116,105,118,101,44,32,39,32,43,92,110,32,32,32,32,32,32,39,101,105,116,104,101,114,32,105,110,32,116,104,101,32,100,97,116,97,32,111,112,116,105,111,110,44,32,111,114,32,102,111,114,32,99,108,97,115,115,45,98,97,115,101,100,32,99,111,109,112,111,110,101,110,116,115,44,32,98,121,32,39,32,43,92,110,32,32,32,32,32,32,39,105,110,105,116,105,97,108,105,122,105,110,103,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,39,32,43,92,110,32,32,32,32,32,32,39,83,101,101,58,32,104,116,116,112,115,58,47,47,118,117,101,106,115,46,111,114,103,47,118,50,47,103,117,105,100,101,47,114,101,97,99,116,105,118,105,116,121,46,104,116,109,108,35,68,101,99,108,97,114,105,110,103,45,82,101,97,99,116,105,118,101,45,80,114,111,112,101,114,116,105,101,115,46,39,44,92,110,32,32,32,32,32,32,116,97,114,103,101,116,92,110,32,32,32,32,41,59,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,119,97,114,110,82,101,115,101,114,118,101,100,80,114,101,102,105,120,32,61,32,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,92,34,80,114,111,112,101,114,116,121,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,32,109,117,115,116,32,98,101,32,97,99,99,101,115,115,101,100,32,119,105,116,104,32,92,92,92,34,36,100,97,116,97,46,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,32,98,101,99,97,117,115,101,32,92,34,32,43,92,110,32,32,32,32,32,32,39,112,114,111,112,101,114,116,105,101,115,32,115,116,97,114,116,105,110,103,32,119,105,116,104,32,92,34,36,92,34,32,111,114,32,92,34,95,92,34,32,97,114,101,32,110,111,116,32,112,114,111,120,105,101,100,32,105,110,32,116,104,101,32,86,117,101,32,105,110,115,116,97,110,99,101,32,116,111,32,39,32,43,92,110,32,32,32,32,32,32,39,112,114,101,118,101,110,116,32,99,111,110,102,108,105,99,116,115,32,119,105,116,104,32,86,117,101,32,105,110,116,101,114,110,97,108,115,46,32,39,32,43,92,110,32,32,32,32,32,32,39,83,101,101,58,32,104,116,116,112,115,58,47,47,118,117,101,106,115,46,111,114,103,47,118,50,47,97,112,105,47,35,100,97,116,97,39,44,92,110,32,32,32,32,32,32,116,97,114,103,101,116,92,110,32,32,32,32,41,59,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,104,97,115,80,114,111,120,121,32,61,92,110,32,32,32,32,116,121,112,101,111,102,32,80,114,111,120,121,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,105,115,78,97,116,105,118,101,40,80,114,111,120,121,41,59,92,110,92,110,32,32,105,102,32,40,104,97,115,80,114,111,120,121,41,32,123,92,110,32,32,32,32,118,97,114,32,105,115,66,117,105,108,116,73,110,77,111,100,105,102,105,101,114,32,61,32,109,97,107,101,77,97,112,40,39,115,116,111,112,44,112,114,101,118,101,110,116,44,115,101,108,102,44,99,116,114,108,44,115,104,105,102,116,44,97,108,116,44,109,101,116,97,44,101,120,97,99,116,39,41,59,92,110,32,32,32,32,99,111,110,102,105,103,46,107,101,121,67,111,100,101,115,32,61,32,110,101,119,32,80,114,111,120,121,40,99,111,110,102,105,103,46,107,101,121,67,111,100,101,115,44,32,123,92,110,32,32,32,32,32,32,115,101,116,58,32,102,117,110,99,116,105,111,110,32,115,101,116,32,40,116,97,114,103,101,116,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,66,117,105,108,116,73,110,77,111,100,105,102,105,101,114,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,40,92,34,65,118,111,105,100,32,111,118,101,114,119,114,105,116,105,110,103,32,98,117,105,108,116,45,105,110,32,109,111,100,105,102,105,101,114,32,105,110,32,99,111,110,102,105,103,46,107,101,121,67,111,100,101,115,58,32,46,92,34,32,43,32,107,101,121,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,91,107,101,121,93,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,104,97,115,72,97,110,100,108,101,114,32,61,32,123,92,110,32,32,32,32,104,97,115,58,32,102,117,110,99,116,105,111,110,32,104,97,115,32,40,116,97,114,103,101,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,97,115,32,61,32,107,101,121,32,105,110,32,116,97,114,103,101,116,59,92,110,32,32,32,32,32,32,118,97,114,32,105,115,65,108,108,111,119,101,100,32,61,32,97,108,108,111,119,101,100,71,108,111,98,97,108,115,40,107,101,121,41,32,124,124,92,110,32,32,32,32,32,32,32,32,40,116,121,112,101,111,102,32,107,101,121,32,61,61,61,32,39,115,116,114,105,110,103,39,32,38,38,32,107,101,121,46,99,104,97,114,65,116,40,48,41,32,61,61,61,32,39,95,39,32,38,38,32,33,40,107,101,121,32,105,110,32,116,97,114,103,101,116,46,36,100,97,116,97,41,41,59,92,110,32,32,32,32,32,32,105,102,32,40,33,104,97,115,32,38,38,32,33,105,115,65,108,108,111,119,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,32,105,110,32,116,97,114,103,101,116,46,36,100,97,116,97,41,32,123,32,119,97,114,110,82,101,115,101,114,118,101,100,80,114,101,102,105,120,40,116,97,114,103,101,116,44,32,107,101,121,41,59,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,32,119,97,114,110,78,111,110,80,114,101,115,101,110,116,40,116,97,114,103,101,116,44,32,107,101,121,41,59,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,115,32,124,124,32,33,105,115,65,108,108,111,119,101,100,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,118,97,114,32,103,101,116,72,97,110,100,108,101,114,32,61,32,123,92,110,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,32,40,116,97,114,103,101,116,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,107,101,121,32,61,61,61,32,39,115,116,114,105,110,103,39,32,38,38,32,33,40,107,101,121,32,105,110,32,116,97,114,103,101,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,32,105,110,32,116,97,114,103,101,116,46,36,100,97,116,97,41,32,123,32,119,97,114,110,82,101,115,101,114,118,101,100,80,114,101,102,105,120,40,116,97,114,103,101,116,44,32,107,101,121,41,59,32,125,92,110,32,32,32,32,32,32,32,32,101,108,115,101,32,123,32,119,97,114,110,78,111,110,80,114,101,115,101,110,116,40,116,97,114,103,101,116,44,32,107,101,121,41,59,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,97,114,103,101,116,91,107,101,121,93,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,105,110,105,116,80,114,111,120,121,32,61,32,102,117,110,99,116,105,111,110,32,105,110,105,116,80,114,111,120,121,32,40,118,109,41,32,123,92,110,32,32,32,32,105,102,32,40,104,97,115,80,114,111,120,121,41,32,123,92,110,32,32,32,32,32,32,47,47,32,100,101,116,101,114,109,105,110,101,32,119,104,105,99,104,32,112,114,111,120,121,32,104,97,110,100,108,101,114,32,116,111,32,117,115,101,92,110,32,32,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,118,109,46,36,111,112,116,105,111,110,115,59,92,110,32,32,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,115,32,61,32,111,112,116,105,111,110,115,46,114,101,110,100,101,114,32,38,38,32,111,112,116,105,111,110,115,46,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,92,110,32,32,32,32,32,32,32,32,63,32,103,101,116,72,97,110,100,108,101,114,92,110,32,32,32,32,32,32,32,32,58,32,104,97,115,72,97,110,100,108,101,114,59,92,110,32,32,32,32,32,32,118,109,46,95,114,101,110,100,101,114,80,114,111,120,121,32,61,32,110,101,119,32,80,114,111,120,121,40,118,109,44,32,104,97,110,100,108,101,114,115,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,109,46,95,114,101,110,100,101,114,80,114,111,120,121,32,61,32,118,109,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,115,101,101,110,79,98,106,101,99,116,115,32,61,32,110,101,119,32,95,83,101,116,40,41,59,92,110,92,110,47,42,42,92,110,32,42,32,82,101,99,117,114,115,105,118,101,108,121,32,116,114,97,118,101,114,115,101,32,97,110,32,111,98,106,101,99,116,32,116,111,32,101,118,111,107,101,32,97,108,108,32,99,111,110,118,101,114,116,101,100,92,110,32,42,32,103,101,116,116,101,114,115,44,32,115,111,32,116,104,97,116,32,101,118,101,114,121,32,110,101,115,116,101,100,32,112,114,111,112,101,114,116,121,32,105,110,115,105,100,101,32,116,104,101,32,111,98,106,101,99,116,92,110,32,42,32,105,115,32,99,111,108,108,101,99,116,101,100,32,97,115,32,97,32,92,34,100,101,101,112,92,34,32,100,101,112,101,110,100,101,110,99,121,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,116,114,97,118,101,114,115,101,32,40,118,97,108,41,32,123,92,110,32,32,95,116,114,97,118,101,114,115,101,40,118,97,108,44,32,115,101,101,110,79,98,106,101,99,116,115,41,59,92,110,32,32,115,101,101,110,79,98,106,101,99,116,115,46,99,108,101,97,114,40,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,116,114,97,118,101,114,115,101,32,40,118,97,108,44,32,115,101,101,110,41,32,123,92,110,32,32,118,97,114,32,105,44,32,107,101,121,115,59,92,110,32,32,118,97,114,32,105,115,65,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,41,59,92,110,32,32,105,102,32,40,40,33,105,115,65,32,38,38,32,33,105,115,79,98,106,101,99,116,40,118,97,108,41,41,32,124,124,32,79,98,106,101,99,116,46,105,115,70,114,111,122,101,110,40,118,97,108,41,32,124,124,32,118,97,108,32,105,110,115,116,97,110,99,101,111,102,32,86,78,111,100,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,105,102,32,40,118,97,108,46,95,95,111,98,95,95,41,32,123,92,110,32,32,32,32,118,97,114,32,100,101,112,73,100,32,61,32,118,97,108,46,95,95,111,98,95,95,46,100,101,112,46,105,100,59,92,110,32,32,32,32,105,102,32,40,115,101,101,110,46,104,97,115,40,100,101,112,73,100,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,32,32,32,32,115,101,101,110,46,97,100,100,40,100,101,112,73,100,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,105,115,65,41,32,123,92,110,32,32,32,32,105,32,61,32,118,97,108,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,105,45,45,41,32,123,32,95,116,114,97,118,101,114,115,101,40,118,97,108,91,105,93,44,32,115,101,101,110,41,59,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,118,97,108,41,59,92,110,32,32,32,32,105,32,61,32,107,101,121,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,105,45,45,41,32,123,32,95,116,114,97,118,101,114,115,101,40,118,97,108,91,107,101,121,115,91,105,93,93,44,32,115,101,101,110,41,59,32,125,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,109,97,114,107,59,92,110,118,97,114,32,109,101,97,115,117,114,101,59,92,110,92,110,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,118,97,114,32,112,101,114,102,32,61,32,105,110,66,114,111,119,115,101,114,32,38,38,32,119,105,110,100,111,119,46,112,101,114,102,111,114,109,97,110,99,101,59,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,92,110,32,32,32,32,112,101,114,102,32,38,38,92,110,32,32,32,32,112,101,114,102,46,109,97,114,107,32,38,38,92,110,32,32,32,32,112,101,114,102,46,109,101,97,115,117,114,101,32,38,38,92,110,32,32,32,32,112,101,114,102,46,99,108,101,97,114,77,97,114,107,115,32,38,38,92,110,32,32,32,32,112,101,114,102,46,99,108,101,97,114,77,101,97,115,117,114,101,115,92,110,32,32,41,32,123,92,110,32,32,32,32,109,97,114,107,32,61,32,102,117,110,99,116,105,111,110,32,40,116,97,103,41,32,123,32,114,101,116,117,114,110,32,112,101,114,102,46,109,97,114,107,40,116,97,103,41,59,32,125,59,92,110,32,32,32,32,109,101,97,115,117,114,101,32,61,32,102,117,110,99,116,105,111,110,32,40,110,97,109,101,44,32,115,116,97,114,116,84,97,103,44,32,101,110,100,84,97,103,41,32,123,92,110,32,32,32,32,32,32,112,101,114,102,46,109,101,97,115,117,114,101,40,110,97,109,101,44,32,115,116,97,114,116,84,97,103,44,32,101,110,100,84,97,103,41,59,92,110,32,32,32,32,32,32,112,101,114,102,46,99,108,101,97,114,77,97,114,107,115,40,115,116,97,114,116,84,97,103,41,59,92,110,32,32,32,32,32,32,112,101,114,102,46,99,108,101,97,114,77,97,114,107,115,40,101,110,100,84,97,103,41,59,92,110,32,32,32,32,32,32,47,47,32,112,101,114,102,46,99,108,101,97,114,77,101,97,115,117,114,101,115,40,110,97,109,101,41,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,110,111,114,109,97,108,105,122,101,69,118,101,110,116,32,61,32,99,97,99,104,101,100,40,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,32,32,118,97,114,32,112,97,115,115,105,118,101,32,61,32,110,97,109,101,46,99,104,97,114,65,116,40,48,41,32,61,61,61,32,39,38,39,59,92,110,32,32,110,97,109,101,32,61,32,112,97,115,115,105,118,101,32,63,32,110,97,109,101,46,115,108,105,99,101,40,49,41,32,58,32,110,97,109,101,59,92,110,32,32,118,97,114,32,111,110,99,101,36,36,49,32,61,32,110,97,109,101,46,99,104,97,114,65,116,40,48,41,32,61,61,61,32,39,126,39,59,32,47,47,32,80,114,101,102,105,120,101,100,32,108,97,115,116,44,32,99,104,101,99,107,101,100,32,102,105,114,115,116,92,110,32,32,110,97,109,101,32,61,32,111,110,99,101,36,36,49,32,63,32,110,97,109,101,46,115,108,105,99,101,40,49,41,32,58,32,110,97,109,101,59,92,110,32,32,118,97,114,32,99,97,112,116,117,114,101,32,61,32,110,97,109,101,46,99,104,97,114,65,116,40,48,41,32,61,61,61,32,39,33,39,59,92,110,32,32,110,97,109,101,32,61,32,99,97,112,116,117,114,101,32,63,32,110,97,109,101,46,115,108,105,99,101,40,49,41,32,58,32,110,97,109,101,59,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,110,97,109,101,58,32,110,97,109,101,44,92,110,32,32,32,32,111,110,99,101,58,32,111,110,99,101,36,36,49,44,92,110,32,32,32,32,99,97,112,116,117,114,101,58,32,99,97,112,116,117,114,101,44,92,110,32,32,32,32,112,97,115,115,105,118,101,58,32,112,97,115,115,105,118,101,92,110,32,32,125,92,110,125,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,70,110,73,110,118,111,107,101,114,32,40,102,110,115,44,32,118,109,41,32,123,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,114,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,97,114,103,117,109,101,110,116,115,36,49,32,61,32,97,114,103,117,109,101,110,116,115,59,92,110,92,110,32,32,32,32,118,97,114,32,102,110,115,32,61,32,105,110,118,111,107,101,114,46,102,110,115,59,92,110,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,102,110,115,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,108,111,110,101,100,32,61,32,102,110,115,46,115,108,105,99,101,40,41,59,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,99,108,111,110,101,100,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,118,111,107,101,87,105,116,104,69,114,114,111,114,72,97,110,100,108,105,110,103,40,99,108,111,110,101,100,91,105,93,44,32,110,117,108,108,44,32,97,114,103,117,109,101,110,116,115,36,49,44,32,118,109,44,32,92,34,118,45,111,110,32,104,97,110,100,108,101,114,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,114,101,116,117,114,110,32,104,97,110,100,108,101,114,32,114,101,116,117,114,110,32,118,97,108,117,101,32,102,111,114,32,115,105,110,103,108,101,32,104,97,110,100,108,101,114,115,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,110,118,111,107,101,87,105,116,104,69,114,114,111,114,72,97,110,100,108,105,110,103,40,102,110,115,44,32,110,117,108,108,44,32,97,114,103,117,109,101,110,116,115,44,32,118,109,44,32,92,34,118,45,111,110,32,104,97,110,100,108,101,114,92,34,41,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,105,110,118,111,107,101,114,46,102,110,115,32,61,32,102,110,115,59,92,110,32,32,114,101,116,117,114,110,32,105,110,118,111,107,101,114,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,76,105,115,116,101,110,101,114,115,32,40,92,110,32,32,111,110,44,92,110,32,32,111,108,100,79,110,44,92,110,32,32,97,100,100,44,92,110,32,32,114,101,109,111,118,101,36,36,49,44,92,110,32,32,99,114,101,97,116,101,79,110,99,101,72,97,110,100,108,101,114,44,92,110,32,32,118,109,92,110,41,32,123,92,110,32,32,118,97,114,32,110,97,109,101,44,32,100,101,102,36,36,49,44,32,99,117,114,44,32,111,108,100,44,32,101,118,101,110,116,59,92,110,32,32,102,111,114,32,40,110,97,109,101,32,105,110,32,111,110,41,32,123,92,110,32,32,32,32,100,101,102,36,36,49,32,61,32,99,117,114,32,61,32,111,110,91,110,97,109,101,93,59,92,110,32,32,32,32,111,108,100,32,61,32,111,108,100,79,110,91,110,97,109,101,93,59,92,110,32,32,32,32,101,118,101,110,116,32,61,32,110,111,114,109,97,108,105,122,101,69,118,101,110,116,40,110,97,109,101,41,59,92,110,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,40,99,117,114,41,41,32,123,92,110,32,32,32,32,32,32,32,116,114,117,101,32,38,38,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,92,34,73,110,118,97,108,105,100,32,104,97,110,100,108,101,114,32,102,111,114,32,101,118,101,110,116,32,92,92,92,34,92,34,32,43,32,40,101,118,101,110,116,46,110,97,109,101,41,32,43,32,92,34,92,92,92,34,58,32,103,111,116,32,92,34,32,43,32,83,116,114,105,110,103,40,99,117,114,41,44,92,110,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,85,110,100,101,102,40,111,108,100,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,40,99,117,114,46,102,110,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,99,117,114,32,61,32,111,110,91,110,97,109,101,93,32,61,32,99,114,101,97,116,101,70,110,73,110,118,111,107,101,114,40,99,117,114,44,32,118,109,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,84,114,117,101,40,101,118,101,110,116,46,111,110,99,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,99,117,114,32,61,32,111,110,91,110,97,109,101,93,32,61,32,99,114,101,97,116,101,79,110,99,101,72,97,110,100,108,101,114,40,101,118,101,110,116,46,110,97,109,101,44,32,99,117,114,44,32,101,118,101,110,116,46,99,97,112,116,117,114,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,97,100,100,40,101,118,101,110,116,46,110,97,109,101,44,32,99,117,114,44,32,101,118,101,110,116,46,99,97,112,116,117,114,101,44,32,101,118,101,110,116,46,112,97,115,115,105,118,101,44,32,101,118,101,110,116,46,112,97,114,97,109,115,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,99,117,114,32,33,61,61,32,111,108,100,41,32,123,92,110,32,32,32,32,32,32,111,108,100,46,102,110,115,32,61,32,99,117,114,59,92,110,32,32,32,32,32,32,111,110,91,110,97,109,101,93,32,61,32,111,108,100,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,102,111,114,32,40,110,97,109,101,32,105,110,32,111,108,100,79,110,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,40,111,110,91,110,97,109,101,93,41,41,32,123,92,110,32,32,32,32,32,32,101,118,101,110,116,32,61,32,110,111,114,109,97,108,105,122,101,69,118,101,110,116,40,110,97,109,101,41,59,92,110,32,32,32,32,32,32,114,101,109,111,118,101,36,36,49,40,101,118,101,110,116,46,110,97,109,101,44,32,111,108,100,79,110,91,110,97,109,101,93,44,32,101,118,101,110,116,46,99,97,112,116,117,114,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,109,101,114,103,101,86,78,111,100,101,72,111,111,107,32,40,100,101,102,44,32,104,111,111,107,75,101,121,44,32,104,111,111,107,41,32,123,92,110,32,32,105,102,32,40,100,101,102,32,105,110,115,116,97,110,99,101,111,102,32,86,78,111,100,101,41,32,123,92,110,32,32,32,32,100,101,102,32,61,32,100,101,102,46,100,97,116,97,46,104,111,111,107,32,124,124,32,40,100,101,102,46,100,97,116,97,46,104,111,111,107,32,61,32,123,125,41,59,92,110,32,32,125,92,110,32,32,118,97,114,32,105,110,118,111,107,101,114,59,92,110,32,32,118,97,114,32,111,108,100,72,111,111,107,32,61,32,100,101,102,91,104,111,111,107,75,101,121,93,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,100,72,111,111,107,32,40,41,32,123,92,110,32,32,32,32,104,111,111,107,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,47,47,32,105,109,112,111,114,116,97,110,116,58,32,114,101,109,111,118,101,32,109,101,114,103,101,100,32,104,111,111,107,32,116,111,32,101,110,115,117,114,101,32,105,116,39,115,32,99,97,108,108,101,100,32,111,110,108,121,32,111,110,99,101,92,110,32,32,32,32,47,47,32,97,110,100,32,112,114,101,118,101,110,116,32,109,101,109,111,114,121,32,108,101,97,107,92,110,32,32,32,32,114,101,109,111,118,101,40,105,110,118,111,107,101,114,46,102,110,115,44,32,119,114,97,112,112,101,100,72,111,111,107,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,105,115,85,110,100,101,102,40,111,108,100,72,111,111,107,41,41,32,123,92,110,32,32,32,32,47,47,32,110,111,32,101,120,105,115,116,105,110,103,32,104,111,111,107,92,110,32,32,32,32,105,110,118,111,107,101,114,32,61,32,99,114,101,97,116,101,70,110,73,110,118,111,107,101,114,40,91,119,114,97,112,112,101,100,72,111,111,107,93,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,111,108,100,72,111,111,107,46,102,110,115,41,32,38,38,32,105,115,84,114,117,101,40,111,108,100,72,111,111,107,46,109,101,114,103,101,100,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,97,108,114,101,97,100,121,32,97,32,109,101,114,103,101,100,32,105,110,118,111,107,101,114,92,110,32,32,32,32,32,32,105,110,118,111,107,101,114,32,61,32,111,108,100,72,111,111,107,59,92,110,32,32,32,32,32,32,105,110,118,111,107,101,114,46,102,110,115,46,112,117,115,104,40,119,114,97,112,112,101,100,72,111,111,107,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,101,120,105,115,116,105,110,103,32,112,108,97,105,110,32,104,111,111,107,92,110,32,32,32,32,32,32,105,110,118,111,107,101,114,32,61,32,99,114,101,97,116,101,70,110,73,110,118,111,107,101,114,40,91,111,108,100,72,111,111,107,44,32,119,114,97,112,112,101,100,72,111,111,107,93,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,110,118,111,107,101,114,46,109,101,114,103,101,100,32,61,32,116,114,117,101,59,92,110,32,32,100,101,102,91,104,111,111,107,75,101,121,93,32,61,32,105,110,118,111,107,101,114,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,116,114,97,99,116,80,114,111,112,115,70,114,111,109,86,78,111,100,101,68,97,116,97,32,40,92,110,32,32,100,97,116,97,44,92,110,32,32,67,116,111,114,44,92,110,32,32,116,97,103,92,110,41,32,123,92,110,32,32,47,47,32,119,101,32,97,114,101,32,111,110,108,121,32,101,120,116,114,97,99,116,105,110,103,32,114,97,119,32,118,97,108,117,101,115,32,104,101,114,101,46,92,110,32,32,47,47,32,118,97,108,105,100,97,116,105,111,110,32,97,110,100,32,100,101,102,97,117,108,116,32,118,97,108,117,101,115,32,97,114,101,32,104,97,110,100,108,101,100,32,105,110,32,116,104,101,32,99,104,105,108,100,92,110,32,32,47,47,32,99,111,109,112,111,110,101,110,116,32,105,116,115,101,108,102,46,92,110,32,32,118,97,114,32,112,114,111,112,79,112,116,105,111,110,115,32,61,32,67,116,111,114,46,111,112,116,105,111,110,115,46,112,114,111,112,115,59,92,110,32,32,105,102,32,40,105,115,85,110,100,101,102,40,112,114,111,112,79,112,116,105,111,110,115,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,118,97,114,32,114,101,115,32,61,32,123,125,59,92,110,32,32,118,97,114,32,97,116,116,114,115,32,61,32,100,97,116,97,46,97,116,116,114,115,59,92,110,32,32,118,97,114,32,112,114,111,112,115,32,61,32,100,97,116,97,46,112,114,111,112,115,59,92,110,32,32,105,102,32,40,105,115,68,101,102,40,97,116,116,114,115,41,32,124,124,32,105,115,68,101,102,40,112,114,111,112,115,41,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,112,114,111,112,79,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,108,116,75,101,121,32,61,32,104,121,112,104,101,110,97,116,101,40,107,101,121,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,107,101,121,73,110,76,111,119,101,114,67,97,115,101,32,61,32,107,101,121,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,32,33,61,61,32,107,101,121,73,110,76,111,119,101,114,67,97,115,101,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,32,38,38,32,104,97,115,79,119,110,40,97,116,116,114,115,44,32,107,101,121,73,110,76,111,119,101,114,67,97,115,101,41,92,110,32,32,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,105,112,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,80,114,111,112,32,92,92,92,34,92,34,32,43,32,107,101,121,73,110,76,111,119,101,114,67,97,115,101,32,43,32,92,34,92,92,92,34,32,105,115,32,112,97,115,115,101,100,32,116,111,32,99,111,109,112,111,110,101,110,116,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,102,111,114,109,97,116,67,111,109,112,111,110,101,110,116,78,97,109,101,40,116,97,103,32,124,124,32,67,116,111,114,41,41,32,43,32,92,34,44,32,98,117,116,32,116,104,101,32,100,101,99,108,97,114,101,100,32,112,114,111,112,32,110,97,109,101,32,105,115,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,46,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,78,111,116,101,32,116,104,97,116,32,72,84,77,76,32,97,116,116,114,105,98,117,116,101,115,32,97,114,101,32,99,97,115,101,45,105,110,115,101,110,115,105,116,105,118,101,32,97,110,100,32,99,97,109,101,108,67,97,115,101,100,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,112,114,111,112,115,32,110,101,101,100,32,116,111,32,117,115,101,32,116,104,101,105,114,32,107,101,98,97,98,45,99,97,115,101,32,101,113,117,105,118,97,108,101,110,116,115,32,119,104,101,110,32,117,115,105,110,103,32,105,110,45,68,79,77,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,116,101,109,112,108,97,116,101,115,46,32,89,111,117,32,115,104,111,117,108,100,32,112,114,111,98,97,98,108,121,32,117,115,101,32,92,92,92,34,92,34,32,43,32,97,108,116,75,101,121,32,43,32,92,34,92,92,92,34,32,105,110,115,116,101,97,100,32,111,102,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,46,92,34,92,110,32,32,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,104,101,99,107,80,114,111,112,40,114,101,115,44,32,112,114,111,112,115,44,32,107,101,121,44,32,97,108,116,75,101,121,44,32,116,114,117,101,41,32,124,124,92,110,32,32,32,32,32,32,99,104,101,99,107,80,114,111,112,40,114,101,115,44,32,97,116,116,114,115,44,32,107,101,121,44,32,97,108,116,75,101,121,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,104,101,99,107,80,114,111,112,32,40,92,110,32,32,114,101,115,44,92,110,32,32,104,97,115,104,44,92,110,32,32,107,101,121,44,92,110,32,32,97,108,116,75,101,121,44,92,110,32,32,112,114,101,115,101,114,118,101,92,110,41,32,123,92,110,32,32,105,102,32,40,105,115,68,101,102,40,104,97,115,104,41,41,32,123,92,110,32,32,32,32,105,102,32,40,104,97,115,79,119,110,40,104,97,115,104,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,114,101,115,91,107,101,121,93,32,61,32,104,97,115,104,91,107,101,121,93,59,92,110,32,32,32,32,32,32,105,102,32,40,33,112,114,101,115,101,114,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,104,97,115,104,91,107,101,121,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,97,115,79,119,110,40,104,97,115,104,44,32,97,108,116,75,101,121,41,41,32,123,92,110,32,32,32,32,32,32,114,101,115,91,107,101,121,93,32,61,32,104,97,115,104,91,97,108,116,75,101,121,93,59,92,110,32,32,32,32,32,32,105,102,32,40,33,112,114,101,115,101,114,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,108,101,116,101,32,104,97,115,104,91,97,108,116,75,101,121,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,47,32,84,104,101,32,116,101,109,112,108,97,116,101,32,99,111,109,112,105,108,101,114,32,97,116,116,101,109,112,116,115,32,116,111,32,109,105,110,105,109,105,122,101,32,116,104,101,32,110,101,101,100,32,102,111,114,32,110,111,114,109,97,108,105,122,97,116,105,111,110,32,98,121,92,110,47,47,32,115,116,97,116,105,99,97,108,108,121,32,97,110,97,108,121,122,105,110,103,32,116,104,101,32,116,101,109,112,108,97,116,101,32,97,116,32,99,111,109,112,105,108,101,32,116,105,109,101,46,92,110,47,47,92,110,47,47,32,70,111,114,32,112,108,97,105,110,32,72,84,77,76,32,109,97,114,107,117,112,44,32,110,111,114,109,97,108,105,122,97,116,105,111,110,32,99,97,110,32,98,101,32,99,111,109,112,108,101,116,101,108,121,32,115,107,105,112,112,101,100,32,98,101,99,97,117,115,101,32,116,104,101,92,110,47,47,32,103,101,110,101,114,97,116,101,100,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,32,105,115,32,103,117,97,114,97,110,116,101,101,100,32,116,111,32,114,101,116,117,114,110,32,65,114,114,97,121,60,86,78,111,100,101,62,46,32,84,104,101,114,101,32,97,114,101,92,110,47,47,32,116,119,111,32,99,97,115,101,115,32,119,104,101,114,101,32,101,120,116,114,97,32,110,111,114,109,97,108,105,122,97,116,105,111,110,32,105,115,32,110,101,101,100,101,100,58,92,110,92,110,47,47,32,49,46,32,87,104,101,110,32,116,104,101,32,99,104,105,108,100,114,101,110,32,99,111,110,116,97,105,110,115,32,99,111,109,112,111,110,101,110,116,115,32,45,32,98,101,99,97,117,115,101,32,97,32,102,117,110,99,116,105,111,110,97,108,32,99,111,109,112,111,110,101,110,116,92,110,47,47,32,109,97,121,32,114,101,116,117,114,110,32,97,110,32,65,114,114,97,121,32,105,110,115,116,101,97,100,32,111,102,32,97,32,115,105,110,103,108,101,32,114,111,111,116,46,32,73,110,32,116,104,105,115,32,99,97,115,101,44,32,106,117,115,116,32,97,32,115,105,109,112,108,101,92,110,47,47,32,110,111,114,109,97,108,105,122,97,116,105,111,110,32,105,115,32,110,101,101,100,101,100,32,45,32,105,102,32,97,110,121,32,99,104,105,108,100,32,105,115,32,97,110,32,65,114,114,97,121,44,32,119,101,32,102,108,97,116,116,101,110,32,116,104,101,32,119,104,111,108,101,92,110,47,47,32,116,104,105,110,103,32,119,105,116,104,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,99,111,110,99,97,116,46,32,73,116,32,105,115,32,103,117,97,114,97,110,116,101,101,100,32,116,111,32,98,101,32,111,110,108,121,32,49,45,108,101,118,101,108,32,100,101,101,112,92,110,47,47,32,98,101,99,97,117,115,101,32,102,117,110,99,116,105,111,110,97,108,32,99,111,109,112,111,110,101,110,116,115,32,97,108,114,101,97,100,121,32,110,111,114,109,97,108,105,122,101,32,116,104,101,105,114,32,111,119,110,32,99,104,105,108,100,114,101,110,46,92,110,102,117,110,99,116,105,111,110,32,115,105,109,112,108,101,78,111,114,109,97,108,105,122,101,67,104,105,108,100,114,101,110,32,40,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,104,105,108,100,114,101,110,91,105,93,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,99,111,110,99,97,116,46,97,112,112,108,121,40,91,93,44,32,99,104,105,108,100,114,101,110,41,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,99,104,105,108,100,114,101,110,92,110,125,92,110,92,110,47,47,32,50,46,32,87,104,101,110,32,116,104,101,32,99,104,105,108,100,114,101,110,32,99,111,110,116,97,105,110,115,32,99,111,110,115,116,114,117,99,116,115,32,116,104,97,116,32,97,108,119,97,121,115,32,103,101,110,101,114,97,116,101,100,32,110,101,115,116,101,100,32,65,114,114,97,121,115,44,92,110,47,47,32,101,46,103,46,32,60,116,101,109,112,108,97,116,101,62,44,32,60,115,108,111,116,62,44,32,118,45,102,111,114,44,32,111,114,32,119,104,101,110,32,116,104,101,32,99,104,105,108,100,114,101,110,32,105,115,32,112,114,111,118,105,100,101,100,32,98,121,32,117,115,101,114,92,110,47,47,32,119,105,116,104,32,104,97,110,100,45,119,114,105,116,116,101,110,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,115,32,47,32,74,83,88,46,32,73,110,32,115,117,99,104,32,99,97,115,101,115,32,97,32,102,117,108,108,32,110,111,114,109,97,108,105,122,97,116,105,111,110,92,110,47,47,32,105,115,32,110,101,101,100,101,100,32,116,111,32,99,97,116,101,114,32,116,111,32,97,108,108,32,112,111,115,115,105,98,108,101,32,116,121,112,101,115,32,111,102,32,99,104,105,108,100,114,101,110,32,118,97,108,117,101,115,46,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,67,104,105,108,100,114,101,110,32,40,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,80,114,105,109,105,116,105,118,101,40,99,104,105,108,100,114,101,110,41,92,110,32,32,32,32,63,32,91,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,40,99,104,105,108,100,114,101,110,41,93,92,110,32,32,32,32,58,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,104,105,108,100,114,101,110,41,92,110,32,32,32,32,32,32,63,32,110,111,114,109,97,108,105,122,101,65,114,114,97,121,67,104,105,108,100,114,101,110,40,99,104,105,108,100,114,101,110,41,92,110,32,32,32,32,32,32,58,32,117,110,100,101,102,105,110,101,100,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,84,101,120,116,78,111,100,101,32,40,110,111,100,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,68,101,102,40,110,111,100,101,41,32,38,38,32,105,115,68,101,102,40,110,111,100,101,46,116,101,120,116,41,32,38,38,32,105,115,70,97,108,115,101,40,110,111,100,101,46,105,115,67,111,109,109,101,110,116,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,65,114,114,97,121,67,104,105,108,100,114,101,110,32,40,99,104,105,108,100,114,101,110,44,32,110,101,115,116,101,100,73,110,100,101,120,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,91,93,59,92,110,32,32,118,97,114,32,105,44,32,99,44,32,108,97,115,116,73,110,100,101,120,44,32,108,97,115,116,59,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,99,32,61,32,99,104,105,108,100,114,101,110,91,105,93,59,92,110,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,40,99,41,32,124,124,32,116,121,112,101,111,102,32,99,32,61,61,61,32,39,98,111,111,108,101,97,110,39,41,32,123,32,99,111,110,116,105,110,117,101,32,125,92,110,32,32,32,32,108,97,115,116,73,110,100,101,120,32,61,32,114,101,115,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,108,97,115,116,32,61,32,114,101,115,91,108,97,115,116,73,110,100,101,120,93,59,92,110,32,32,32,32,47,47,32,32,110,101,115,116,101,100,92,110,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,99,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,99,32,61,32,110,111,114,109,97,108,105,122,101,65,114,114,97,121,67,104,105,108,100,114,101,110,40,99,44,32,40,40,110,101,115,116,101,100,73,110,100,101,120,32,124,124,32,39,39,41,32,43,32,92,34,95,92,34,32,43,32,105,41,41,59,92,110,32,32,32,32,32,32,32,32,47,47,32,109,101,114,103,101,32,97,100,106,97,99,101,110,116,32,116,101,120,116,32,110,111,100,101,115,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,84,101,120,116,78,111,100,101,40,99,91,48,93,41,32,38,38,32,105,115,84,101,120,116,78,111,100,101,40,108,97,115,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,91,108,97,115,116,73,110,100,101,120,93,32,61,32,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,40,108,97,115,116,46,116,101,120,116,32,43,32,40,99,91,48,93,41,46,116,101,120,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,46,115,104,105,102,116,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,115,46,112,117,115,104,46,97,112,112,108,121,40,114,101,115,44,32,99,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,80,114,105,109,105,116,105,118,101,40,99,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,84,101,120,116,78,111,100,101,40,108,97,115,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,109,101,114,103,101,32,97,100,106,97,99,101,110,116,32,116,101,120,116,32,110,111,100,101,115,92,110,32,32,32,32,32,32,32,32,47,47,32,116,104,105,115,32,105,115,32,110,101,99,101,115,115,97,114,121,32,102,111,114,32,83,83,82,32,104,121,100,114,97,116,105,111,110,32,98,101,99,97,117,115,101,32,116,101,120,116,32,110,111,100,101,115,32,97,114,101,92,110,32,32,32,32,32,32,32,32,47,47,32,101,115,115,101,110,116,105,97,108,108,121,32,109,101,114,103,101,100,32,119,104,101,110,32,114,101,110,100,101,114,101,100,32,116,111,32,72,84,77,76,32,115,116,114,105,110,103,115,92,110,32,32,32,32,32,32,32,32,114,101,115,91,108,97,115,116,73,110,100,101,120,93,32,61,32,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,40,108,97,115,116,46,116,101,120,116,32,43,32,99,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,99,32,33,61,61,32,39,39,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,99,111,110,118,101,114,116,32,112,114,105,109,105,116,105,118,101,32,116,111,32,118,110,111,100,101,92,110,32,32,32,32,32,32,32,32,114,101,115,46,112,117,115,104,40,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,40,99,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,84,101,120,116,78,111,100,101,40,99,41,32,38,38,32,105,115,84,101,120,116,78,111,100,101,40,108,97,115,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,109,101,114,103,101,32,97,100,106,97,99,101,110,116,32,116,101,120,116,32,110,111,100,101,115,92,110,32,32,32,32,32,32,32,32,114,101,115,91,108,97,115,116,73,110,100,101,120,93,32,61,32,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,40,108,97,115,116,46,116,101,120,116,32,43,32,99,46,116,101,120,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,100,101,102,97,117,108,116,32,107,101,121,32,102,111,114,32,110,101,115,116,101,100,32,97,114,114,97,121,32,99,104,105,108,100,114,101,110,32,40,108,105,107,101,108,121,32,103,101,110,101,114,97,116,101,100,32,98,121,32,118,45,102,111,114,41,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,84,114,117,101,40,99,104,105,108,100,114,101,110,46,95,105,115,86,76,105,115,116,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,105,115,68,101,102,40,99,46,116,97,103,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,105,115,85,110,100,101,102,40,99,46,107,101,121,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,105,115,68,101,102,40,110,101,115,116,101,100,73,110,100,101,120,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,46,107,101,121,32,61,32,92,34,95,95,118,108,105,115,116,92,34,32,43,32,110,101,115,116,101,100,73,110,100,101,120,32,43,32,92,34,95,92,34,32,43,32,105,32,43,32,92,34,95,95,92,34,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,115,46,112,117,115,104,40,99,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,80,114,111,118,105,100,101,32,40,118,109,41,32,123,92,110,32,32,118,97,114,32,112,114,111,118,105,100,101,32,61,32,118,109,46,36,111,112,116,105,111,110,115,46,112,114,111,118,105,100,101,59,92,110,32,32,105,102,32,40,112,114,111,118,105,100,101,41,32,123,92,110,32,32,32,32,118,109,46,95,112,114,111,118,105,100,101,100,32,61,32,116,121,112,101,111,102,32,112,114,111,118,105,100,101,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,32,32,32,32,32,32,63,32,112,114,111,118,105,100,101,46,99,97,108,108,40,118,109,41,92,110,32,32,32,32,32,32,58,32,112,114,111,118,105,100,101,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,73,110,106,101,99,116,105,111,110,115,32,40,118,109,41,32,123,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,114,101,115,111,108,118,101,73,110,106,101,99,116,40,118,109,46,36,111,112,116,105,111,110,115,46,105,110,106,101,99,116,44,32,118,109,41,59,92,110,32,32,105,102,32,40,114,101,115,117,108,116,41,32,123,92,110,32,32,32,32,116,111,103,103,108,101,79,98,115,101,114,118,105,110,103,40,102,97,108,115,101,41,59,92,110,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,114,101,115,117,108,116,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,102,105,110,101,82,101,97,99,116,105,118,101,36,36,49,40,118,109,44,32,107,101,121,44,32,114,101,115,117,108,116,91,107,101,121,93,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,65,118,111,105,100,32,109,117,116,97,116,105,110,103,32,97,110,32,105,110,106,101,99,116,101,100,32,118,97,108,117,101,32,100,105,114,101,99,116,108,121,32,115,105,110,99,101,32,116,104,101,32,99,104,97,110,103,101,115,32,119,105,108,108,32,98,101,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,111,118,101,114,119,114,105,116,116,101,110,32,119,104,101,110,101,118,101,114,32,116,104,101,32,112,114,111,118,105,100,101,100,32,99,111,109,112,111,110,101,110,116,32,114,101,45,114,101,110,100,101,114,115,46,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,105,110,106,101,99,116,105,111,110,32,98,101,105,110,103,32,109,117,116,97,116,101,100,58,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,116,111,103,103,108,101,79,98,115,101,114,118,105,110,103,40,116,114,117,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,73,110,106,101,99,116,32,40,105,110,106,101,99,116,44,32,118,109,41,32,123,92,110,32,32,105,102,32,40,105,110,106,101,99,116,41,32,123,92,110,32,32,32,32,47,47,32,105,110,106,101,99,116,32,105,115,32,58,97,110,121,32,98,101,99,97,117,115,101,32,102,108,111,119,32,105,115,32,110,111,116,32,115,109,97,114,116,32,101,110,111,117,103,104,32,116,111,32,102,105,103,117,114,101,32,111,117,116,32,99,97,99,104,101,100,92,110,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,32,32,118,97,114,32,107,101,121,115,32,61,32,104,97,115,83,121,109,98,111,108,92,110,32,32,32,32,32,32,63,32,82,101,102,108,101,99,116,46,111,119,110,75,101,121,115,40,105,110,106,101,99,116,41,92,110,32,32,32,32,32,32,58,32,79,98,106,101,99,116,46,107,101,121,115,40,105,110,106,101,99,116,41,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,107,101,121,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,107,101,121,115,91,105,93,59,92,110,32,32,32,32,32,32,47,47,32,35,54,53,55,52,32,105,110,32,99,97,115,101,32,116,104,101,32,105,110,106,101,99,116,32,111,98,106,101,99,116,32,105,115,32,111,98,115,101,114,118,101,100,46,46,46,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,32,61,61,61,32,39,95,95,111,98,95,95,39,41,32,123,32,99,111,110,116,105,110,117,101,32,125,92,110,32,32,32,32,32,32,118,97,114,32,112,114,111,118,105,100,101,75,101,121,32,61,32,105,110,106,101,99,116,91,107,101,121,93,46,102,114,111,109,59,92,110,32,32,32,32,32,32,118,97,114,32,115,111,117,114,99,101,32,61,32,118,109,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,111,117,114,99,101,46,95,112,114,111,118,105,100,101,100,32,38,38,32,104,97,115,79,119,110,40,115,111,117,114,99,101,46,95,112,114,111,118,105,100,101,100,44,32,112,114,111,118,105,100,101,75,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,107,101,121,93,32,61,32,115,111,117,114,99,101,46,95,112,114,111,118,105,100,101,100,91,112,114,111,118,105,100,101,75,101,121,93,59,92,110,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,115,111,117,114,99,101,32,61,32,115,111,117,114,99,101,46,36,112,97,114,101,110,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,33,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,39,100,101,102,97,117,108,116,39,32,105,110,32,105,110,106,101,99,116,91,107,101,121,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,114,111,118,105,100,101,68,101,102,97,117,108,116,32,61,32,105,110,106,101,99,116,91,107,101,121,93,46,100,101,102,97,117,108,116,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,91,107,101,121,93,32,61,32,116,121,112,101,111,102,32,112,114,111,118,105,100,101,68,101,102,97,117,108,116,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,112,114,111,118,105,100,101,68,101,102,97,117,108,116,46,99,97,108,108,40,118,109,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,112,114,111,118,105,100,101,68,101,102,97,117,108,116,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,40,92,34,73,110,106,101,99,116,105,111,110,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,32,110,111,116,32,102,111,117,110,100,92,34,41,44,32,118,109,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,92,110,92,110,47,42,42,92,110,32,42,32,82,117,110,116,105,109,101,32,104,101,108,112,101,114,32,102,111,114,32,114,101,115,111,108,118,105,110,103,32,114,97,119,32,99,104,105,108,100,114,101,110,32,86,78,111,100,101,115,32,105,110,116,111,32,97,32,115,108,111,116,32,111,98,106,101,99,116,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,83,108,111,116,115,32,40,92,110,32,32,99,104,105,108,100,114,101,110,44,92,110,32,32,99,111,110,116,101,120,116,92,110,41,32,123,92,110,32,32,105,102,32,40,33,99,104,105,108,100,114,101,110,32,124,124,32,33,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,125,92,110,32,32,125,92,110,32,32,118,97,114,32,115,108,111,116,115,32,61,32,123,125,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,32,61,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,32,61,32,99,104,105,108,100,114,101,110,91,105,93,59,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,99,104,105,108,100,46,100,97,116,97,59,92,110,32,32,32,32,47,47,32,114,101,109,111,118,101,32,115,108,111,116,32,97,116,116,114,105,98,117,116,101,32,105,102,32,116,104,101,32,110,111,100,101,32,105,115,32,114,101,115,111,108,118,101,100,32,97,115,32,97,32,86,117,101,32,115,108,111,116,32,110,111,100,101,92,110,32,32,32,32,105,102,32,40,100,97,116,97,32,38,38,32,100,97,116,97,46,97,116,116,114,115,32,38,38,32,100,97,116,97,46,97,116,116,114,115,46,115,108,111,116,41,32,123,92,110,32,32,32,32,32,32,100,101,108,101,116,101,32,100,97,116,97,46,97,116,116,114,115,46,115,108,111,116,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,110,97,109,101,100,32,115,108,111,116,115,32,115,104,111,117,108,100,32,111,110,108,121,32,98,101,32,114,101,115,112,101,99,116,101,100,32,105,102,32,116,104,101,32,118,110,111,100,101,32,119,97,115,32,114,101,110,100,101,114,101,100,32,105,110,32,116,104,101,92,110,32,32,32,32,47,47,32,115,97,109,101,32,99,111,110,116,101,120,116,46,92,110,32,32,32,32,105,102,32,40,40,99,104,105,108,100,46,99,111,110,116,101,120,116,32,61,61,61,32,99,111,110,116,101,120,116,32,124,124,32,99,104,105,108,100,46,102,110,67,111,110,116,101,120,116,32,61,61,61,32,99,111,110,116,101,120,116,41,32,38,38,92,110,32,32,32,32,32,32,100,97,116,97,32,38,38,32,100,97,116,97,46,115,108,111,116,32,33,61,32,110,117,108,108,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,100,97,116,97,46,115,108,111,116,59,92,110,32,32,32,32,32,32,118,97,114,32,115,108,111,116,32,61,32,40,115,108,111,116,115,91,110,97,109,101,93,32,124,124,32,40,115,108,111,116,115,91,110,97,109,101,93,32,61,32,91,93,41,41,59,92,110,32,32,32,32,32,32,105,102,32,40,99,104,105,108,100,46,116,97,103,32,61,61,61,32,39,116,101,109,112,108,97,116,101,39,41,32,123,92,110,32,32,32,32,32,32,32,32,115,108,111,116,46,112,117,115,104,46,97,112,112,108,121,40,115,108,111,116,44,32,99,104,105,108,100,46,99,104,105,108,100,114,101,110,32,124,124,32,91,93,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,115,108,111,116,46,112,117,115,104,40,99,104,105,108,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,40,115,108,111,116,115,46,100,101,102,97,117,108,116,32,124,124,32,40,115,108,111,116,115,46,100,101,102,97,117,108,116,32,61,32,91,93,41,41,46,112,117,115,104,40,99,104,105,108,100,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,47,47,32,105,103,110,111,114,101,32,115,108,111,116,115,32,116,104,97,116,32,99,111,110,116,97,105,110,115,32,111,110,108,121,32,119,104,105,116,101,115,112,97,99,101,92,110,32,32,102,111,114,32,40,118,97,114,32,110,97,109,101,36,49,32,105,110,32,115,108,111,116,115,41,32,123,92,110,32,32,32,32,105,102,32,40,115,108,111,116,115,91,110,97,109,101,36,49,93,46,101,118,101,114,121,40,105,115,87,104,105,116,101,115,112,97,99,101,41,41,32,123,92,110,32,32,32,32,32,32,100,101,108,101,116,101,32,115,108,111,116,115,91,110,97,109,101,36,49,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,115,108,111,116,115,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,87,104,105,116,101,115,112,97,99,101,32,40,110,111,100,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,110,111,100,101,46,105,115,67,111,109,109,101,110,116,32,38,38,32,33,110,111,100,101,46,97,115,121,110,99,70,97,99,116,111,114,121,41,32,124,124,32,110,111,100,101,46,116,101,120,116,32,61,61,61,32,39,32,39,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,83,99,111,112,101,100,83,108,111,116,115,32,40,92,110,32,32,115,108,111,116,115,44,92,110,32,32,110,111,114,109,97,108,83,108,111,116,115,44,92,110,32,32,112,114,101,118,83,108,111,116,115,92,110,41,32,123,92,110,32,32,118,97,114,32,114,101,115,59,92,110,32,32,118,97,114,32,104,97,115,78,111,114,109,97,108,83,108,111,116,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,110,111,114,109,97,108,83,108,111,116,115,41,46,108,101,110,103,116,104,32,62,32,48,59,92,110,32,32,118,97,114,32,105,115,83,116,97,98,108,101,32,61,32,115,108,111,116,115,32,63,32,33,33,115,108,111,116,115,46,36,115,116,97,98,108,101,32,58,32,33,104,97,115,78,111,114,109,97,108,83,108,111,116,115,59,92,110,32,32,118,97,114,32,107,101,121,32,61,32,115,108,111,116,115,32,38,38,32,115,108,111,116,115,46,36,107,101,121,59,92,110,32,32,105,102,32,40,33,115,108,111,116,115,41,32,123,92,110,32,32,32,32,114,101,115,32,61,32,123,125,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,115,108,111,116,115,46,95,110,111,114,109,97,108,105,122,101,100,41,32,123,92,110,32,32,32,32,47,47,32,102,97,115,116,32,112,97,116,104,32,49,58,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,32,114,101,45,114,101,110,100,101,114,32,111,110,108,121,44,32,112,97,114,101,110,116,32,100,105,100,32,110,111,116,32,99,104,97,110,103,101,92,110,32,32,32,32,114,101,116,117,114,110,32,115,108,111,116,115,46,95,110,111,114,109,97,108,105,122,101,100,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,92,110,32,32,32,32,105,115,83,116,97,98,108,101,32,38,38,92,110,32,32,32,32,112,114,101,118,83,108,111,116,115,32,38,38,92,110,32,32,32,32,112,114,101,118,83,108,111,116,115,32,33,61,61,32,101,109,112,116,121,79,98,106,101,99,116,32,38,38,92,110,32,32,32,32,107,101,121,32,61,61,61,32,112,114,101,118,83,108,111,116,115,46,36,107,101,121,32,38,38,92,110,32,32,32,32,33,104,97,115,78,111,114,109,97,108,83,108,111,116,115,32,38,38,92,110,32,32,32,32,33,112,114,101,118,83,108,111,116,115,46,36,104,97,115,78,111,114,109,97,108,92,110,32,32,41,32,123,92,110,32,32,32,32,47,47,32,102,97,115,116,32,112,97,116,104,32,50,58,32,115,116,97,98,108,101,32,115,99,111,112,101,100,32,115,108,111,116,115,32,119,47,32,110,111,32,110,111,114,109,97,108,32,115,108,111,116,115,32,116,111,32,112,114,111,120,121,44,92,110,32,32,32,32,47,47,32,111,110,108,121,32,110,101,101,100,32,116,111,32,110,111,114,109,97,108,105,122,101,32,111,110,99,101,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,101,118,83,108,111,116,115,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,115,32,61,32,123,125,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,36,49,32,105,110,32,115,108,111,116,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,108,111,116,115,91,107,101,121,36,49,93,32,38,38,32,107,101,121,36,49,91,48,93,32,33,61,61,32,39,36,39,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,91,107,101,121,36,49,93,32,61,32,110,111,114,109,97,108,105,122,101,83,99,111,112,101,100,83,108,111,116,40,110,111,114,109,97,108,83,108,111,116,115,44,32,107,101,121,36,49,44,32,115,108,111,116,115,91,107,101,121,36,49,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,47,47,32,101,120,112,111,115,101,32,110,111,114,109,97,108,32,115,108,111,116,115,32,111,110,32,115,99,111,112,101,100,83,108,111,116,115,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,36,50,32,105,110,32,110,111,114,109,97,108,83,108,111,116,115,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,107,101,121,36,50,32,105,110,32,114,101,115,41,41,32,123,92,110,32,32,32,32,32,32,114,101,115,91,107,101,121,36,50,93,32,61,32,112,114,111,120,121,78,111,114,109,97,108,83,108,111,116,40,110,111,114,109,97,108,83,108,111,116,115,44,32,107,101,121,36,50,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,47,47,32,97,118,111,114,105,97,122,32,115,101,101,109,115,32,116,111,32,109,111,99,107,32,97,32,110,111,110,45,101,120,116,101,110,115,105,98,108,101,32,36,115,99,111,112,101,100,83,108,111,116,115,32,111,98,106,101,99,116,92,110,32,32,47,47,32,97,110,100,32,119,104,101,110,32,116,104,97,116,32,105,115,32,112,97,115,115,101,100,32,100,111,119,110,32,116,104,105,115,32,119,111,117,108,100,32,99,97,117,115,101,32,97,110,32,101,114,114,111,114,92,110,32,32,105,102,32,40,115,108,111,116,115,32,38,38,32,79,98,106,101,99,116,46,105,115,69,120,116,101,110,115,105,98,108,101,40,115,108,111,116,115,41,41,32,123,92,110,32,32,32,32,40,115,108,111,116,115,41,46,95,110,111,114,109,97,108,105,122,101,100,32,61,32,114,101,115,59,92,110,32,32,125,92,110,32,32,100,101,102,40,114,101,115,44,32,39,36,115,116,97,98,108,101,39,44,32,105,115,83,116,97,98,108,101,41,59,92,110,32,32,100,101,102,40,114,101,115,44,32,39,36,107,101,121,39,44,32,107,101,121,41,59,92,110,32,32,100,101,102,40,114,101,115,44,32,39,36,104,97,115,78,111,114,109,97,108,39,44,32,104,97,115,78,111,114,109,97,108,83,108,111,116,115,41,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,83,99,111,112,101,100,83,108,111,116,40,110,111,114,109,97,108,83,108,111,116,115,44,32,107,101,121,44,32,102,110,41,32,123,92,110,32,32,118,97,114,32,110,111,114,109,97,108,105,122,101,100,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,32,63,32,102,110,46,97,112,112,108,121,40,110,117,108,108,44,32,97,114,103,117,109,101,110,116,115,41,32,58,32,102,110,40,123,125,41,59,92,110,32,32,32,32,114,101,115,32,61,32,114,101,115,32,38,38,32,116,121,112,101,111,102,32,114,101,115,32,61,61,61,32,39,111,98,106,101,99,116,39,32,38,38,32,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,101,115,41,92,110,32,32,32,32,32,32,63,32,91,114,101,115,93,32,47,47,32,115,105,110,103,108,101,32,118,110,111,100,101,92,110,32,32,32,32,32,32,58,32,110,111,114,109,97,108,105,122,101,67,104,105,108,100,114,101,110,40,114,101,115,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,32,38,38,32,40,92,110,32,32,32,32,32,32,114,101,115,46,108,101,110,103,116,104,32,61,61,61,32,48,32,124,124,92,110,32,32,32,32,32,32,40,114,101,115,46,108,101,110,103,116,104,32,61,61,61,32,49,32,38,38,32,114,101,115,91,48,93,46,105,115,67,111,109,109,101,110,116,41,32,47,47,32,35,57,54,53,56,92,110,32,32,32,32,41,32,63,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,58,32,114,101,115,92,110,32,32,125,59,92,110,32,32,47,47,32,116,104,105,115,32,105,115,32,97,32,115,108,111,116,32,117,115,105,110,103,32,116,104,101,32,110,101,119,32,118,45,115,108,111,116,32,115,121,110,116,97,120,32,119,105,116,104,111,117,116,32,115,99,111,112,101,46,32,97,108,116,104,111,117,103,104,32,105,116,32,105,115,92,110,32,32,47,47,32,99,111,109,112,105,108,101,100,32,97,115,32,97,32,115,99,111,112,101,100,32,115,108,111,116,44,32,114,101,110,100,101,114,32,102,110,32,117,115,101,114,115,32,119,111,117,108,100,32,101,120,112,101,99,116,32,105,116,32,116,111,32,98,101,32,112,114,101,115,101,110,116,92,110,32,32,47,47,32,111,110,32,116,104,105,115,46,36,115,108,111,116,115,32,98,101,99,97,117,115,101,32,116,104,101,32,117,115,97,103,101,32,105,115,32,115,101,109,97,110,116,105,99,97,108,108,121,32,97,32,110,111,114,109,97,108,32,115,108,111,116,46,92,110,32,32,105,102,32,40,102,110,46,112,114,111,120,121,41,32,123,92,110,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,110,111,114,109,97,108,83,108,111,116,115,44,32,107,101,121,44,32,123,92,110,32,32,32,32,32,32,103,101,116,58,32,110,111,114,109,97,108,105,122,101,100,44,92,110,32,32,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,110,111,114,109,97,108,105,122,101,100,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,114,111,120,121,78,111,114,109,97,108,83,108,111,116,40,115,108,111,116,115,44,32,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,115,108,111,116,115,91,107,101,121,93,59,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,82,117,110,116,105,109,101,32,104,101,108,112,101,114,32,102,111,114,32,114,101,110,100,101,114,105,110,103,32,118,45,102,111,114,32,108,105,115,116,115,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,76,105,115,116,32,40,92,110,32,32,118,97,108,44,92,110,32,32,114,101,110,100,101,114,92,110,41,32,123,92,110,32,32,118,97,114,32,114,101,116,44,32,105,44,32,108,44,32,107,101,121,115,44,32,107,101,121,59,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,41,32,124,124,32,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,114,101,116,32,61,32,110,101,119,32,65,114,114,97,121,40,118,97,108,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,44,32,108,32,61,32,118,97,108,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,114,101,116,91,105,93,32,61,32,114,101,110,100,101,114,40,118,97,108,91,105,93,44,32,105,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,110,117,109,98,101,114,39,41,32,123,92,110,32,32,32,32,114,101,116,32,61,32,110,101,119,32,65,114,114,97,121,40,118,97,108,41,59,92,110,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,118,97,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,114,101,116,91,105,93,32,61,32,114,101,110,100,101,114,40,105,32,43,32,49,44,32,105,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,79,98,106,101,99,116,40,118,97,108,41,41,32,123,92,110,32,32,32,32,105,102,32,40,104,97,115,83,121,109,98,111,108,32,38,38,32,118,97,108,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,41,32,123,92,110,32,32,32,32,32,32,114,101,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,118,97,114,32,105,116,101,114,97,116,111,114,32,61,32,118,97,108,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,105,116,101,114,97,116,111,114,46,110,101,120,116,40,41,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,33,114,101,115,117,108,116,46,100,111,110,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,46,112,117,115,104,40,114,101,110,100,101,114,40,114,101,115,117,108,116,46,118,97,108,117,101,44,32,114,101,116,46,108,101,110,103,116,104,41,41,59,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,61,32,105,116,101,114,97,116,111,114,46,110,101,120,116,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,118,97,108,41,59,92,110,32,32,32,32,32,32,114,101,116,32,61,32,110,101,119,32,65,114,114,97,121,40,107,101,121,115,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,44,32,108,32,61,32,107,101,121,115,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,32,61,32,107,101,121,115,91,105,93,59,92,110,32,32,32,32,32,32,32,32,114,101,116,91,105,93,32,61,32,114,101,110,100,101,114,40,118,97,108,91,107,101,121,93,44,32,107,101,121,44,32,105,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,105,102,32,40,33,105,115,68,101,102,40,114,101,116,41,41,32,123,92,110,32,32,32,32,114,101,116,32,61,32,91,93,59,92,110,32,32,125,92,110,32,32,40,114,101,116,41,46,95,105,115,86,76,105,115,116,32,61,32,116,114,117,101,59,92,110,32,32,114,101,116,117,114,110,32,114,101,116,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,82,117,110,116,105,109,101,32,104,101,108,112,101,114,32,102,111,114,32,114,101,110,100,101,114,105,110,103,32,60,115,108,111,116,62,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,83,108,111,116,32,40,92,110,32,32,110,97,109,101,44,92,110,32,32,102,97,108,108,98,97,99,107,44,92,110,32,32,112,114,111,112,115,44,92,110,32,32,98,105,110,100,79,98,106,101,99,116,92,110,41,32,123,92,110,32,32,118,97,114,32,115,99,111,112,101,100,83,108,111,116,70,110,32,61,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,91,110,97,109,101,93,59,92,110,32,32,118,97,114,32,110,111,100,101,115,59,92,110,32,32,105,102,32,40,115,99,111,112,101,100,83,108,111,116,70,110,41,32,123,32,47,47,32,115,99,111,112,101,100,32,115,108,111,116,92,110,32,32,32,32,112,114,111,112,115,32,61,32,112,114,111,112,115,32,124,124,32,123,125,59,92,110,32,32,32,32,105,102,32,40,98,105,110,100,79,98,106,101,99,116,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,105,115,79,98,106,101,99,116,40,98,105,110,100,79,98,106,101,99,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,39,115,108,111,116,32,118,45,98,105,110,100,32,119,105,116,104,111,117,116,32,97,114,103,117,109,101,110,116,32,101,120,112,101,99,116,115,32,97,110,32,79,98,106,101,99,116,39,44,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,112,114,111,112,115,32,61,32,101,120,116,101,110,100,40,101,120,116,101,110,100,40,123,125,44,32,98,105,110,100,79,98,106,101,99,116,41,44,32,112,114,111,112,115,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,110,111,100,101,115,32,61,32,115,99,111,112,101,100,83,108,111,116,70,110,40,112,114,111,112,115,41,32,124,124,32,102,97,108,108,98,97,99,107,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,110,111,100,101,115,32,61,32,116,104,105,115,46,36,115,108,111,116,115,91,110,97,109,101,93,32,124,124,32,102,97,108,108,98,97,99,107,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,116,97,114,103,101,116,32,61,32,112,114,111,112,115,32,38,38,32,112,114,111,112,115,46,115,108,111,116,59,92,110,32,32,105,102,32,40,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,39,116,101,109,112,108,97,116,101,39,44,32,123,32,115,108,111,116,58,32,116,97,114,103,101,116,32,125,44,32,110,111,100,101,115,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,115,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,82,117,110,116,105,109,101,32,104,101,108,112,101,114,32,102,111,114,32,114,101,115,111,108,118,105,110,103,32,102,105,108,116,101,114,115,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,70,105,108,116,101,114,32,40,105,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,114,101,115,111,108,118,101,65,115,115,101,116,40,116,104,105,115,46,36,111,112,116,105,111,110,115,44,32,39,102,105,108,116,101,114,115,39,44,32,105,100,44,32,116,114,117,101,41,32,124,124,32,105,100,101,110,116,105,116,121,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,75,101,121,78,111,116,77,97,116,99,104,32,40,101,120,112,101,99,116,44,32,97,99,116,117,97,108,41,32,123,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,120,112,101,99,116,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,120,112,101,99,116,46,105,110,100,101,120,79,102,40,97,99,116,117,97,108,41,32,61,61,61,32,45,49,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,120,112,101,99,116,32,33,61,61,32,97,99,116,117,97,108,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,117,110,116,105,109,101,32,104,101,108,112,101,114,32,102,111,114,32,99,104,101,99,107,105,110,103,32,107,101,121,67,111,100,101,115,32,102,114,111,109,32,99,111,110,102,105,103,46,92,110,32,42,32,101,120,112,111,115,101,100,32,97,115,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,95,107,92,110,32,42,32,112,97,115,115,105,110,103,32,105,110,32,101,118,101,110,116,75,101,121,78,97,109,101,32,97,115,32,108,97,115,116,32,97,114,103,117,109,101,110,116,32,115,101,112,97,114,97,116,101,108,121,32,102,111,114,32,98,97,99,107,119,97,114,100,115,32,99,111,109,112,97,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,99,104,101,99,107,75,101,121,67,111,100,101,115,32,40,92,110,32,32,101,118,101,110,116,75,101,121,67,111,100,101,44,92,110,32,32,107,101,121,44,92,110,32,32,98,117,105,108,116,73,110,75,101,121,67,111,100,101,44,92,110,32,32,101,118,101,110,116,75,101,121,78,97,109,101,44,92,110,32,32,98,117,105,108,116,73,110,75,101,121,78,97,109,101,92,110,41,32,123,92,110,32,32,118,97,114,32,109,97,112,112,101,100,75,101,121,67,111,100,101,32,61,32,99,111,110,102,105,103,46,107,101,121,67,111,100,101,115,91,107,101,121,93,32,124,124,32,98,117,105,108,116,73,110,75,101,121,67,111,100,101,59,92,110,32,32,105,102,32,40,98,117,105,108,116,73,110,75,101,121,78,97,109,101,32,38,38,32,101,118,101,110,116,75,101,121,78,97,109,101,32,38,38,32,33,99,111,110,102,105,103,46,107,101,121,67,111,100,101,115,91,107,101,121,93,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,75,101,121,78,111,116,77,97,116,99,104,40,98,117,105,108,116,73,110,75,101,121,78,97,109,101,44,32,101,118,101,110,116,75,101,121,78,97,109,101,41,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,109,97,112,112,101,100,75,101,121,67,111,100,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,75,101,121,78,111,116,77,97,116,99,104,40,109,97,112,112,101,100,75,101,121,67,111,100,101,44,32,101,118,101,110,116,75,101,121,67,111,100,101,41,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,101,118,101,110,116,75,101,121,78,97,109,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,121,112,104,101,110,97,116,101,40,101,118,101,110,116,75,101,121,78,97,109,101,41,32,33,61,61,32,107,101,121,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,82,117,110,116,105,109,101,32,104,101,108,112,101,114,32,102,111,114,32,109,101,114,103,105,110,103,32,118,45,98,105,110,100,61,92,34,111,98,106,101,99,116,92,34,32,105,110,116,111,32,97,32,86,78,111,100,101,39,115,32,100,97,116,97,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,98,105,110,100,79,98,106,101,99,116,80,114,111,112,115,32,40,92,110,32,32,100,97,116,97,44,92,110,32,32,116,97,103,44,92,110,32,32,118,97,108,117,101,44,92,110,32,32,97,115,80,114,111,112,44,92,110,32,32,105,115,83,121,110,99,92,110,41,32,123,92,110,32,32,105,102,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,105,115,79,98,106,101,99,116,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,116,114,117,101,32,38,38,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,39,118,45,98,105,110,100,32,119,105,116,104,111,117,116,32,97,114,103,117,109,101,110,116,32,101,120,112,101,99,116,115,32,97,110,32,79,98,106,101,99,116,32,111,114,32,65,114,114,97,121,32,118,97,108,117,101,39,44,92,110,32,32,32,32,32,32,32,32,116,104,105,115,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,32,61,32,116,111,79,98,106,101,99,116,40,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,97,114,32,104,97,115,104,59,92,110,32,32,32,32,32,32,118,97,114,32,108,111,111,112,32,61,32,102,117,110,99,116,105,111,110,32,40,32,107,101,121,32,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,32,61,61,61,32,39,99,108,97,115,115,39,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,32,61,61,61,32,39,115,116,121,108,101,39,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,105,115,82,101,115,101,114,118,101,100,65,116,116,114,105,98,117,116,101,40,107,101,121,41,92,110,32,32,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,97,115,104,32,61,32,100,97,116,97,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,100,97,116,97,46,97,116,116,114,115,32,38,38,32,100,97,116,97,46,97,116,116,114,115,46,116,121,112,101,59,92,110,32,32,32,32,32,32,32,32,32,32,104,97,115,104,32,61,32,97,115,80,114,111,112,32,124,124,32,99,111,110,102,105,103,46,109,117,115,116,85,115,101,80,114,111,112,40,116,97,103,44,32,116,121,112,101,44,32,107,101,121,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,100,97,116,97,46,100,111,109,80,114,111,112,115,32,124,124,32,40,100,97,116,97,46,100,111,109,80,114,111,112,115,32,61,32,123,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,100,97,116,97,46,97,116,116,114,115,32,124,124,32,40,100,97,116,97,46,97,116,116,114,115,32,61,32,123,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,97,109,101,108,105,122,101,100,75,101,121,32,61,32,99,97,109,101,108,105,122,101,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,104,121,112,104,101,110,97,116,101,100,75,101,121,32,61,32,104,121,112,104,101,110,97,116,101,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,99,97,109,101,108,105,122,101,100,75,101,121,32,105,110,32,104,97,115,104,41,32,38,38,32,33,40,104,121,112,104,101,110,97,116,101,100,75,101,121,32,105,110,32,104,97,115,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,97,115,104,91,107,101,121,93,32,61,32,118,97,108,117,101,91,107,101,121,93,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,83,121,110,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,110,32,61,32,100,97,116,97,46,111,110,32,124,124,32,40,100,97,116,97,46,111,110,32,61,32,123,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,110,91,40,92,34,117,112,100,97,116,101,58,92,34,32,43,32,107,101,121,41,93,32,61,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,91,107,101,121,93,32,61,32,36,101,118,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,118,97,108,117,101,41,32,108,111,111,112,40,32,107,101,121,32,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,82,117,110,116,105,109,101,32,104,101,108,112,101,114,32,102,111,114,32,114,101,110,100,101,114,105,110,103,32,115,116,97,116,105,99,32,116,114,101,101,115,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,83,116,97,116,105,99,32,40,92,110,32,32,105,110,100,101,120,44,92,110,32,32,105,115,73,110,70,111,114,92,110,41,32,123,92,110,32,32,118,97,114,32,99,97,99,104,101,100,32,61,32,116,104,105,115,46,95,115,116,97,116,105,99,84,114,101,101,115,32,124,124,32,40,116,104,105,115,46,95,115,116,97,116,105,99,84,114,101,101,115,32,61,32,91,93,41,59,92,110,32,32,118,97,114,32,116,114,101,101,32,61,32,99,97,99,104,101,100,91,105,110,100,101,120,93,59,92,110,32,32,47,47,32,105,102,32,104,97,115,32,97,108,114,101,97,100,121,45,114,101,110,100,101,114,101,100,32,115,116,97,116,105,99,32,116,114,101,101,32,97,110,100,32,110,111,116,32,105,110,115,105,100,101,32,118,45,102,111,114,44,92,110,32,32,47,47,32,119,101,32,99,97,110,32,114,101,117,115,101,32,116,104,101,32,115,97,109,101,32,116,114,101,101,46,92,110,32,32,105,102,32,40,116,114,101,101,32,38,38,32,33,105,115,73,110,70,111,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,101,101,92,110,32,32,125,92,110,32,32,47,47,32,111,116,104,101,114,119,105,115,101,44,32,114,101,110,100,101,114,32,97,32,102,114,101,115,104,32,116,114,101,101,46,92,110,32,32,116,114,101,101,32,61,32,99,97,99,104,101,100,91,105,110,100,101,120,93,32,61,32,116,104,105,115,46,36,111,112,116,105,111,110,115,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,91,105,110,100,101,120,93,46,99,97,108,108,40,92,110,32,32,32,32,116,104,105,115,46,95,114,101,110,100,101,114,80,114,111,120,121,44,92,110,32,32,32,32,110,117,108,108,44,92,110,32,32,32,32,116,104,105,115,32,47,47,32,102,111,114,32,114,101,110,100,101,114,32,102,110,115,32,103,101,110,101,114,97,116,101,100,32,102,111,114,32,102,117,110,99,116,105,111,110,97,108,32,99,111,109,112,111,110,101,110,116,32,116,101,109,112,108,97,116,101,115,92,110,32,32,41,59,92,110,32,32,109,97,114,107,83,116,97,116,105,99,40,116,114,101,101,44,32,40,92,34,95,95,115,116,97,116,105,99,95,95,92,34,32,43,32,105,110,100,101,120,41,44,32,102,97,108,115,101,41,59,92,110,32,32,114,101,116,117,114,110,32,116,114,101,101,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,117,110,116,105,109,101,32,104,101,108,112,101,114,32,102,111,114,32,118,45,111,110,99,101,46,92,110,32,42,32,69,102,102,101,99,116,105,118,101,108,121,32,105,116,32,109,101,97,110,115,32,109,97,114,107,105,110,103,32,116,104,101,32,110,111,100,101,32,97,115,32,115,116,97,116,105,99,32,119,105,116,104,32,97,32,117,110,105,113,117,101,32,107,101,121,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,109,97,114,107,79,110,99,101,32,40,92,110,32,32,116,114,101,101,44,92,110,32,32,105,110,100,101,120,44,92,110,32,32,107,101,121,92,110,41,32,123,92,110,32,32,109,97,114,107,83,116,97,116,105,99,40,116,114,101,101,44,32,40,92,34,95,95,111,110,99,101,95,95,92,34,32,43,32,105,110,100,101,120,32,43,32,40,107,101,121,32,63,32,40,92,34,95,92,34,32,43,32,107,101,121,41,32,58,32,92,34,92,34,41,41,44,32,116,114,117,101,41,59,92,110,32,32,114,101,116,117,114,110,32,116,114,101,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,97,114,107,83,116,97,116,105,99,32,40,92,110,32,32,116,114,101,101,44,92,110,32,32,107,101,121,44,92,110,32,32,105,115,79,110,99,101,92,110,41,32,123,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,114,101,101,41,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,116,114,101,101,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,114,101,101,91,105,93,32,38,38,32,116,121,112,101,111,102,32,116,114,101,101,91,105,93,32,33,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,32,32,32,32,109,97,114,107,83,116,97,116,105,99,78,111,100,101,40,116,114,101,101,91,105,93,44,32,40,107,101,121,32,43,32,92,34,95,92,34,32,43,32,105,41,44,32,105,115,79,110,99,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,109,97,114,107,83,116,97,116,105,99,78,111,100,101,40,116,114,101,101,44,32,107,101,121,44,32,105,115,79,110,99,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,97,114,107,83,116,97,116,105,99,78,111,100,101,32,40,110,111,100,101,44,32,107,101,121,44,32,105,115,79,110,99,101,41,32,123,92,110,32,32,110,111,100,101,46,105,115,83,116,97,116,105,99,32,61,32,116,114,117,101,59,92,110,32,32,110,111,100,101,46,107,101,121,32,61,32,107,101,121,59,92,110,32,32,110,111,100,101,46,105,115,79,110,99,101,32,61,32,105,115,79,110,99,101,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,98,105,110,100,79,98,106,101,99,116,76,105,115,116,101,110,101,114,115,32,40,100,97,116,97,44,32,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,33,105,115,80,108,97,105,110,79,98,106,101,99,116,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,116,114,117,101,32,38,38,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,39,118,45,111,110,32,119,105,116,104,111,117,116,32,97,114,103,117,109,101,110,116,32,101,120,112,101,99,116,115,32,97,110,32,79,98,106,101,99,116,32,118,97,108,117,101,39,44,92,110,32,32,32,32,32,32,32,32,116,104,105,115,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,111,110,32,61,32,100,97,116,97,46,111,110,32,61,32,100,97,116,97,46,111,110,32,63,32,101,120,116,101,110,100,40,123,125,44,32,100,97,116,97,46,111,110,41,32,58,32,123,125,59,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,120,105,115,116,105,110,103,32,61,32,111,110,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,117,114,115,32,61,32,118,97,108,117,101,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,111,110,91,107,101,121,93,32,61,32,101,120,105,115,116,105,110,103,32,63,32,91,93,46,99,111,110,99,97,116,40,101,120,105,115,116,105,110,103,44,32,111,117,114,115,41,32,58,32,111,117,114,115,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,83,99,111,112,101,100,83,108,111,116,115,32,40,92,110,32,32,102,110,115,44,32,47,47,32,115,101,101,32,102,108,111,119,47,118,110,111,100,101,92,110,32,32,114,101,115,44,92,110,32,32,47,47,32,116,104,101,32,102,111,108,108,111,119,105,110,103,32,97,114,101,32,97,100,100,101,100,32,105,110,32,50,46,54,92,110,32,32,104,97,115,68,121,110,97,109,105,99,75,101,121,115,44,92,110,32,32,99,111,110,116,101,110,116,72,97,115,104,75,101,121,92,110,41,32,123,92,110,32,32,114,101,115,32,61,32,114,101,115,32,124,124,32,123,32,36,115,116,97,98,108,101,58,32,33,104,97,115,68,121,110,97,109,105,99,75,101,121,115,32,125,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,102,110,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,115,108,111,116,32,61,32,102,110,115,91,105,93,59,92,110,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,115,108,111,116,41,41,32,123,92,110,32,32,32,32,32,32,114,101,115,111,108,118,101,83,99,111,112,101,100,83,108,111,116,115,40,115,108,111,116,44,32,114,101,115,44,32,104,97,115,68,121,110,97,109,105,99,75,101,121,115,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,108,111,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,109,97,114,107,101,114,32,102,111,114,32,114,101,118,101,114,115,101,32,112,114,111,120,121,105,110,103,32,118,45,115,108,111,116,32,119,105,116,104,111,117,116,32,115,99,111,112,101,32,111,110,32,116,104,105,115,46,36,115,108,111,116,115,92,110,32,32,32,32,32,32,105,102,32,40,115,108,111,116,46,112,114,111,120,121,41,32,123,92,110,32,32,32,32,32,32,32,32,115,108,111,116,46,102,110,46,112,114,111,120,121,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,115,91,115,108,111,116,46,107,101,121,93,32,61,32,115,108,111,116,46,102,110,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,105,102,32,40,99,111,110,116,101,110,116,72,97,115,104,75,101,121,41,32,123,92,110,32,32,32,32,40,114,101,115,41,46,36,107,101,121,32,61,32,99,111,110,116,101,110,116,72,97,115,104,75,101,121,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,98,105,110,100,68,121,110,97,109,105,99,75,101,121,115,32,40,98,97,115,101,79,98,106,44,32,118,97,108,117,101,115,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,118,97,108,117,101,115,46,108,101,110,103,116,104,59,32,105,32,43,61,32,50,41,32,123,92,110,32,32,32,32,118,97,114,32,107,101,121,32,61,32,118,97,108,117,101,115,91,105,93,59,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,107,101,121,32,61,61,61,32,39,115,116,114,105,110,103,39,32,38,38,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,79,98,106,91,118,97,108,117,101,115,91,105,93,93,32,61,32,118,97,108,117,101,115,91,105,32,43,32,49,93,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,32,116,114,117,101,32,38,38,32,107,101,121,32,33,61,61,32,39,39,32,38,38,32,107,101,121,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,47,47,32,110,117,108,108,32,105,115,32,97,32,115,112,101,99,105,97,108,32,118,97,108,117,101,32,102,111,114,32,101,120,112,108,105,99,105,116,108,121,32,114,101,109,111,118,105,110,103,32,97,32,98,105,110,100,105,110,103,92,110,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,40,92,34,73,110,118,97,108,105,100,32,118,97,108,117,101,32,102,111,114,32,100,121,110,97,109,105,99,32,100,105,114,101,99,116,105,118,101,32,97,114,103,117,109,101,110,116,32,40,101,120,112,101,99,116,101,100,32,115,116,114,105,110,103,32,111,114,32,110,117,108,108,41,58,32,92,34,32,43,32,107,101,121,41,44,92,110,32,32,32,32,32,32,32,32,116,104,105,115,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,98,97,115,101,79,98,106,92,110,125,92,110,92,110,47,47,32,104,101,108,112,101,114,32,116,111,32,100,121,110,97,109,105,99,97,108,108,121,32,97,112,112,101,110,100,32,109,111,100,105,102,105,101,114,32,114,117,110,116,105,109,101,32,109,97,114,107,101,114,115,32,116,111,32,101,118,101,110,116,32,110,97,109,101,115,46,92,110,47,47,32,101,110,115,117,114,101,32,111,110,108,121,32,97,112,112,101,110,100,32,119,104,101,110,32,118,97,108,117,101,32,105,115,32,97,108,114,101,97,100,121,32,115,116,114,105,110,103,44,32,111,116,104,101,114,119,105,115,101,32,105,116,32,119,105,108,108,32,98,101,32,99,97,115,116,92,110,47,47,32,116,111,32,115,116,114,105,110,103,32,97,110,100,32,99,97,117,115,101,32,116,104,101,32,116,121,112,101,32,99,104,101,99,107,32,116,111,32,109,105,115,115,46,92,110,102,117,110,99,116,105,111,110,32,112,114,101,112,101,110,100,77,111,100,105,102,105,101,114,32,40,118,97,108,117,101,44,32,115,121,109,98,111,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,39,115,116,114,105,110,103,39,32,63,32,115,121,109,98,111,108,32,43,32,118,97,108,117,101,32,58,32,118,97,108,117,101,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,115,116,97,108,108,82,101,110,100,101,114,72,101,108,112,101,114,115,32,40,116,97,114,103,101,116,41,32,123,92,110,32,32,116,97,114,103,101,116,46,95,111,32,61,32,109,97,114,107,79,110,99,101,59,92,110,32,32,116,97,114,103,101,116,46,95,110,32,61,32,116,111,78,117,109,98,101,114,59,92,110,32,32,116,97,114,103,101,116,46,95,115,32,61,32,116,111,83,116,114,105,110,103,59,92,110,32,32,116,97,114,103,101,116,46,95,108,32,61,32,114,101,110,100,101,114,76,105,115,116,59,92,110,32,32,116,97,114,103,101,116,46,95,116,32,61,32,114,101,110,100,101,114,83,108,111,116,59,92,110,32,32,116,97,114,103,101,116,46,95,113,32,61,32,108,111,111,115,101,69,113,117,97,108,59,92,110,32,32,116,97,114,103,101,116,46,95,105,32,61,32,108,111,111,115,101,73,110,100,101,120,79,102,59,92,110,32,32,116,97,114,103,101,116,46,95,109,32,61,32,114,101,110,100,101,114,83,116,97,116,105,99,59,92,110,32,32,116,97,114,103,101,116,46,95,102,32,61,32,114,101,115,111,108,118,101,70,105,108,116,101,114,59,92,110,32,32,116,97,114,103,101,116,46,95,107,32,61,32,99,104,101,99,107,75,101,121,67,111,100,101,115,59,92,110,32,32,116,97,114,103,101,116,46,95,98,32,61,32,98,105,110,100,79,98,106,101,99,116,80,114,111,112,115,59,92,110,32,32,116,97,114,103,101,116,46,95,118,32,61,32,99,114,101,97,116,101,84,101,120,116,86,78,111,100,101,59,92,110,32,32,116,97,114,103,101,116,46,95,101,32,61,32,99,114,101,97,116,101,69,109,112,116,121,86,78,111,100,101,59,92,110,32,32,116,97,114,103,101,116,46,95,117,32,61,32,114,101,115,111,108,118,101,83,99,111,112,101,100,83,108,111,116,115,59,92,110,32,32,116,97,114,103,101,116,46,95,103,32,61,32,98,105,110,100,79,98,106,101,99,116,76,105,115,116,101,110,101,114,115,59,92,110,32,32,116,97,114,103,101,116,46,95,100,32,61,32,98,105,110,100,68,121,110,97,109,105,99,75,101,121,115,59,92,110,32,32,116,97,114,103,101,116,46,95,112,32,61,32,112,114,101,112,101,110,100,77,111,100,105,102,105,101,114,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,70,117,110,99,116,105,111,110,97,108,82,101,110,100,101,114,67,111,110,116,101,120,116,32,40,92,110,32,32,100,97,116,97,44,92,110,32,32,112,114,111,112,115,44,92,110,32,32,99,104,105,108,100,114,101,110,44,92,110,32,32,112,97,114,101,110,116,44,92,110,32,32,67,116,111,114,92,110,41,32,123,92,110,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,67,116,111,114,46,111,112,116,105,111,110,115,59,92,110,32,32,47,47,32,101,110,115,117,114,101,32,116,104,101,32,99,114,101,97,116,101,69,108,101,109,101,110,116,32,102,117,110,99,116,105,111,110,32,105,110,32,102,117,110,99,116,105,111,110,97,108,32,99,111,109,112,111,110,101,110,116,115,92,110,32,32,47,47,32,103,101,116,115,32,97,32,117,110,105,113,117,101,32,99,111,110,116,101,120,116,32,45,32,116,104,105,115,32,105,115,32,110,101,99,101,115,115,97,114,121,32,102,111,114,32,99,111,114,114,101,99,116,32,110,97,109,101,100,32,115,108,111,116,32,99,104,101,99,107,92,110,32,32,118,97,114,32,99,111,110,116,101,120,116,86,109,59,92,110,32,32,105,102,32,40,104,97,115,79,119,110,40,112,97,114,101,110,116,44,32,39,95,117,105,100,39,41,41,32,123,92,110,32,32,32,32,99,111,110,116,101,120,116,86,109,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,112,97,114,101,110,116,41,59,92,110,32,32,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,32,32,99,111,110,116,101,120,116,86,109,46,95,111,114,105,103,105,110,97,108,32,61,32,112,97,114,101,110,116,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,47,32,116,104,101,32,99,111,110,116,101,120,116,32,118,109,32,112,97,115,115,101,100,32,105,110,32,105,115,32,97,32,102,117,110,99,116,105,111,110,97,108,32,99,111,110,116,101,120,116,32,97,115,32,119,101,108,108,46,92,110,32,32,32,32,47,47,32,105,110,32,116,104,105,115,32,99,97,115,101,32,119,101,32,119,97,110,116,32,116,111,32,109,97,107,101,32,115,117,114,101,32,119,101,32,97,114,101,32,97,98,108,101,32,116,111,32,103,101,116,32,97,32,104,111,108,100,32,116,111,32,116,104,101,92,110,32,32,32,32,47,47,32,114,101,97,108,32,99,111,110,116,101,120,116,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,99,111,110,116,101,120,116,86,109,32,61,32,112,97,114,101,110,116,59,92,110,32,32,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,32,32,112,97,114,101,110,116,32,61,32,112,97,114,101,110,116,46,95,111,114,105,103,105,110,97,108,59,92,110,32,32,125,92,110,32,32,118,97,114,32,105,115,67,111,109,112,105,108,101,100,32,61,32,105,115,84,114,117,101,40,111,112,116,105,111,110,115,46,95,99,111,109,112,105,108,101,100,41,59,92,110,32,32,118,97,114,32,110,101,101,100,78,111,114,109,97,108,105,122,97,116,105,111,110,32,61,32,33,105,115,67,111,109,112,105,108,101,100,59,92,110,92,110,32,32,116,104,105,115,46,100,97,116,97,32,61,32,100,97,116,97,59,92,110,32,32,116,104,105,115,46,112,114,111,112,115,32,61,32,112,114,111,112,115,59,92,110,32,32,116,104,105,115,46,99,104,105,108,100,114,101,110,32,61,32,99,104,105,108,100,114,101,110,59,92,110,32,32,116,104,105,115,46,112,97,114,101,110,116,32,61,32,112,97,114,101,110,116,59,92,110,32,32,116,104,105,115,46,108,105,115,116,101,110,101,114,115,32,61,32,100,97,116,97,46,111,110,32,124,124,32,101,109,112,116,121,79,98,106,101,99,116,59,92,110,32,32,116,104,105,115,46,105,110,106,101,99,116,105,111,110,115,32,61,32,114,101,115,111,108,118,101,73,110,106,101,99,116,40,111,112,116,105,111,110,115,46,105,110,106,101,99,116,44,32,112,97,114,101,110,116,41,59,92,110,32,32,116,104,105,115,46,115,108,111,116,115,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,36,49,46,36,115,108,111,116,115,41,32,123,92,110,32,32,32,32,32,32,110,111,114,109,97,108,105,122,101,83,99,111,112,101,100,83,108,111,116,115,40,92,110,32,32,32,32,32,32,32,32,100,97,116,97,46,115,99,111,112,101,100,83,108,111,116,115,44,92,110,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,36,115,108,111,116,115,32,61,32,114,101,115,111,108,118,101,83,108,111,116,115,40,99,104,105,108,100,114,101,110,44,32,112,97,114,101,110,116,41,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,36,49,46,36,115,108,111,116,115,92,110,32,32,125,59,92,110,92,110,32,32,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,32,39,115,99,111,112,101,100,83,108,111,116,115,39,44,32,40,123,92,110,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,32,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,114,109,97,108,105,122,101,83,99,111,112,101,100,83,108,111,116,115,40,100,97,116,97,46,115,99,111,112,101,100,83,108,111,116,115,44,32,116,104,105,115,46,115,108,111,116,115,40,41,41,92,110,32,32,32,32,125,92,110,32,32,125,41,41,59,92,110,92,110,32,32,47,47,32,115,117,112,112,111,114,116,32,102,111,114,32,99,111,109,112,105,108,101,100,32,102,117,110,99,116,105,111,110,97,108,32,116,101,109,112,108,97,116,101,92,110,32,32,105,102,32,40,105,115,67,111,109,112,105,108,101,100,41,32,123,92,110,32,32,32,32,47,47,32,101,120,112,111,115,105,110,103,32,36,111,112,116,105,111,110,115,32,102,111,114,32,114,101,110,100,101,114,83,116,97,116,105,99,40,41,92,110,32,32,32,32,116,104,105,115,46,36,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,59,92,110,32,32,32,32,47,47,32,112,114,101,45,114,101,115,111,108,118,101,32,115,108,111,116,115,32,102,111,114,32,114,101,110,100,101,114,83,108,111,116,40,41,92,110,32,32,32,32,116,104,105,115,46,36,115,108,111,116,115,32,61,32,116,104,105,115,46,115,108,111,116,115,40,41,59,92,110,32,32,32,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,110,111,114,109,97,108,105,122,101,83,99,111,112,101,100,83,108,111,116,115,40,100,97,116,97,46,115,99,111,112,101,100,83,108,111,116,115,44,32,116,104,105,115,46,36,115,108,111,116,115,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,111,112,116,105,111,110,115,46,95,115,99,111,112,101,73,100,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,99,32,61,32,102,117,110,99,116,105,111,110,32,40,97,44,32,98,44,32,99,44,32,100,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,110,111,100,101,32,61,32,99,114,101,97,116,101,69,108,101,109,101,110,116,40,99,111,110,116,101,120,116,86,109,44,32,97,44,32,98,44,32,99,44,32,100,44,32,110,101,101,100,78,111,114,109,97,108,105,122,97,116,105,111,110,41,59,92,110,32,32,32,32,32,32,105,102,32,40,118,110,111,100,101,32,38,38,32,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,110,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,110,111,100,101,46,102,110,83,99,111,112,101,73,100,32,61,32,111,112,116,105,111,110,115,46,95,115,99,111,112,101,73,100,59,92,110,32,32,32,32,32,32,32,32,118,110,111,100,101,46,102,110,67,111,110,116,101,120,116,32,61,32,112,97,114,101,110,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,110,111,100,101,92,110,32,32,32,32,125,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,116,104,105,115,46,95,99,32,61,32,102,117,110,99,116,105,111,110,32,40,97,44,32,98,44,32,99,44,32,100,41,32,123,32,114,101,116,117,114,110,32,99,114,101,97,116,101,69,108,101,109,101,110,116,40,99,111,110,116,101,120,116,86,109,44,32,97,44,32,98,44,32,99,44,32,100,44,32,110,101,101,100,78,111,114,109,97,108,105,122,97,116,105,111,110,41,59,32,125,59,92,110,32,32,125,92,110,125,92,110,92,110,105,110,115,116,97,108,108,82,101,110,100,101,114,72,101,108,112,101,114,115,40,70,117,110,99,116,105,111,110,97,108,82,101,110,100,101,114,67,111,110,116,101,120,116,46,112,114,111,116,111,116,121,112,101,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,70,117,110,99,116,105,111,110,97,108,67,111,109,112,111,110,101,110,116,32,40,92,110,32,32,67,116,111,114,44,92,110,32,32,112,114,111,112,115,68,97,116,97,44,92,110,32,32,100,97,116,97,44,92,110,32,32,99,111,110,116,101,120,116,86,109,44,92,110,32,32,99,104,105,108,100,114,101,110,92,110,41,32,123,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,67,116,111,114,46,111,112,116,105,111,110,115,59,92,110,32,32,118,97,114,32,112,114,111,112,115,32,61,32,123,125,59,92,110,32,32,118,97,114,32,112,114,111,112,79,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,46,112,114,111,112,115,59,92,110,32,32,105,102,32,40,105,115,68,101,102,40,112,114,111,112,79,112,116,105,111,110,115,41,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,112,114,111,112,79,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,91,107,101,121,93,32,61,32,118,97,108,105,100,97,116,101,80,114,111,112,40,107,101,121,44,32,112,114,111,112,79,112,116,105,111,110,115,44,32,112,114,111,112,115,68,97,116,97,32,124,124,32,101,109,112,116,121,79,98,106,101,99,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,100,97,116,97,46,97,116,116,114,115,41,41,32,123,32,109,101,114,103,101,80,114,111,112,115,40,112,114,111,112,115,44,32,100,97,116,97,46,97,116,116,114,115,41,59,32,125,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,100,97,116,97,46,112,114,111,112,115,41,41,32,123,32,109,101,114,103,101,80,114,111,112,115,40,112,114,111,112,115,44,32,100,97,116,97,46,112,114,111,112,115,41,59,32,125,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,114,101,110,100,101,114,67,111,110,116,101,120,116,32,61,32,110,101,119,32,70,117,110,99,116,105,111,110,97,108,82,101,110,100,101,114,67,111,110,116,101,120,116,40,92,110,32,32,32,32,100,97,116,97,44,92,110,32,32,32,32,112,114,111,112,115,44,92,110,32,32,32,32,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,99,111,110,116,101,120,116,86,109,44,92,110,32,32,32,32,67,116,111,114,92,110,32,32,41,59,92,110,92,110,32,32,118,97,114,32,118,110,111,100,101,32,61,32,111,112,116,105,111,110,115,46,114,101,110,100,101,114,46,99,97,108,108,40,110,117,108,108,44,32,114,101,110,100,101,114,67,111,110,116,101,120,116,46,95,99,44,32,114,101,110,100,101,114,67,111,110,116,101,120,116,41,59,92,110,92,110,32,32,105,102,32,40,118,110,111,100,101,32,105,110,115,116,97,110,99,101,111,102,32,86,78,111,100,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,108,111,110,101,65,110,100,77,97,114,107,70,117,110,99,116,105,111,110,97,108,82,101,115,117,108,116,40,118,110,111,100,101,44,32,100,97,116,97,44,32,114,101,110,100,101,114,67,111,110,116,101,120,116,46,112,97,114,101,110,116,44,32,111,112,116,105,111,110,115,44,32,114,101,110,100,101,114,67,111,110,116,101,120,116,41,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,110,111,100,101,41,41,32,123,92,110,32,32,32,32,118,97,114,32,118,110,111,100,101,115,32,61,32,110,111,114,109,97,108,105,122,101,67,104,105,108,100,114,101,110,40,118,110,111,100,101,41,32,124,124,32,91,93,59,92,110,32,32,32,32,118,97,114,32,114,101,115,32,61,32,110,101,119,32,65,114,114,97,121,40,118,110,111,100,101,115,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,118,110,111,100,101,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,114,101,115,91,105,93,32,61,32,99,108,111,110,101,65,110,100,77,97,114,107,70,117,110,99,116,105,111,110,97,108,82,101,115,117,108,116,40,118,110,111,100,101,115,91,105,93,44,32,100,97,116,97,44,32,114,101,110,100,101,114,67,111,110,116,101,120,116,46,112,97,114,101,110,116,44,32,111,112,116,105,111,110,115,44,32,114,101,110,100,101,114,67,111,110,116,101,120,116,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,108,111,110,101,65,110,100,77,97,114,107,70,117,110,99,116,105,111,110,97,108,82,101,115,117,108,116,32,40,118,110,111,100,101,44,32,100,97,116,97,44,32,99,111,110,116,101,120,116,86,109,44,32,111,112,116,105,111,110,115,44,32,114,101,110,100,101,114,67,111,110,116,101,120,116,41,32,123,92,110,32,32,47,47,32,35,55,56,49,55,32,99,108,111,110,101,32,110,111,100,101,32,98,101,102,111,114,101,32,115,101,116,116,105,110,103,32,102,110,67,111,110,116,101,120,116,44,32,111,116,104,101,114,119,105,115,101,32,105,102,32,116,104,101,32,110,111,100,101,32,105,115,32,114,101,117,115,101,100,92,110,32,32,47,47,32,40,101,46,103,46,32,105,116,32,119,97,115,32,102,114,111,109,32,97,32,99,97,99,104,101,100,32,110,111,114,109,97,108,32,115,108,111,116,41,32,116,104,101,32,102,110,67,111,110,116,101,120,116,32,99,97,117,115,101,115,32,110,97,109,101,100,32,115,108,111,116,115,92,110,32,32,47,47,32,116,104,97,116,32,115,104,111,117,108,100,32,110,111,116,32,98,101,32,109,97,116,99,104,101,100,32,116,111,32,109,97,116,99,104,46,92,110,32,32,118,97,114,32,99,108,111,110,101,32,61,32,99,108,111,110,101,86,78,111,100,101,40,118,110,111,100,101,41,59,92,110,32,32,99,108,111,110,101,46,102,110,67,111,110,116,101,120,116,32,61,32,99,111,110,116,101,120,116,86,109,59,92,110,32,32,99,108,111,110,101,46,102,110,79,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,59,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,40,99,108,111,110,101,46,100,101,118,116,111,111,108,115,77,101,116,97,32,61,32,99,108,111,110,101,46,100,101,118,116,111,111,108,115,77,101,116,97,32,124,124,32,123,125,41,46,114,101,110,100,101,114,67,111,110,116,101,120,116,32,61,32,114,101,110,100,101,114,67,111,110,116,101,120,116,59,92,110,32,32,125,92,110,32,32,105,102,32,40,100,97,116,97,46,115,108,111,116,41,32,123,92,110,32,32,32,32,40,99,108,111,110,101,46,100,97,116,97,32,124,124,32,40,99,108,111,110,101,46,100,97,116,97,32,61,32,123,125,41,41,46,115,108,111,116,32,61,32,100,97,116,97,46,115,108,111,116,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,99,108,111,110,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,101,114,103,101,80,114,111,112,115,32,40,116,111,44,32,102,114,111,109,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,102,114,111,109,41,32,123,92,110,32,32,32,32,116,111,91,99,97,109,101,108,105,122,101,40,107,101,121,41,93,32,61,32,102,114,111,109,91,107,101,121,93,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,47,32,105,110,108,105,110,101,32,104,111,111,107,115,32,116,111,32,98,101,32,105,110,118,111,107,101,100,32,111,110,32,99,111,109,112,111,110,101,110,116,32,86,78,111,100,101,115,32,100,117,114,105,110,103,32,112,97,116,99,104,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,86,78,111,100,101,72,111,111,107,115,32,61,32,123,92,110,32,32,105,110,105,116,58,32,102,117,110,99,116,105,111,110,32,105,110,105,116,32,40,118,110,111,100,101,44,32,104,121,100,114,97,116,105,110,103,41,32,123,92,110,32,32,32,32,105,102,32,40,92,110,32,32,32,32,32,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,32,38,38,92,110,32,32,32,32,32,32,33,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,105,115,68,101,115,116,114,111,121,101,100,32,38,38,92,110,32,32,32,32,32,32,118,110,111,100,101,46,100,97,116,97,46,107,101,101,112,65,108,105,118,101,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,47,47,32,107,101,112,116,45,97,108,105,118,101,32,99,111,109,112,111,110,101,110,116,115,44,32,116,114,101,97,116,32,97,115,32,97,32,112,97,116,99,104,92,110,32,32,32,32,32,32,118,97,114,32,109,111,117,110,116,101,100,78,111,100,101,32,61,32,118,110,111,100,101,59,32,47,47,32,119,111,114,107,32,97,114,111,117,110,100,32,102,108,111,119,92,110,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,86,78,111,100,101,72,111,111,107,115,46,112,114,101,112,97,116,99,104,40,109,111,117,110,116,101,100,78,111,100,101,44,32,109,111,117,110,116,101,100,78,111,100,101,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,32,61,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,32,61,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,70,111,114,86,110,111,100,101,40,92,110,32,32,32,32,32,32,32,32,118,110,111,100,101,44,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,101,73,110,115,116,97,110,99,101,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,99,104,105,108,100,46,36,109,111,117,110,116,40,104,121,100,114,97,116,105,110,103,32,63,32,118,110,111,100,101,46,101,108,109,32,58,32,117,110,100,101,102,105,110,101,100,44,32,104,121,100,114,97,116,105,110,103,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,92,110,32,32,112,114,101,112,97,116,99,104,58,32,102,117,110,99,116,105,111,110,32,112,114,101,112,97,116,99,104,32,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,59,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,32,61,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,32,61,32,111,108,100,86,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,59,92,110,32,32,32,32,117,112,100,97,116,101,67,104,105,108,100,67,111,109,112,111,110,101,110,116,40,92,110,32,32,32,32,32,32,99,104,105,108,100,44,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,46,112,114,111,112,115,68,97,116,97,44,32,47,47,32,117,112,100,97,116,101,100,32,112,114,111,112,115,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,46,108,105,115,116,101,110,101,114,115,44,32,47,47,32,117,112,100,97,116,101,100,32,108,105,115,116,101,110,101,114,115,92,110,32,32,32,32,32,32,118,110,111,100,101,44,32,47,47,32,110,101,119,32,112,97,114,101,110,116,32,118,110,111,100,101,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,46,99,104,105,108,100,114,101,110,32,47,47,32,110,101,119,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,41,59,92,110,32,32,125,44,92,110,92,110,32,32,105,110,115,101,114,116,58,32,102,117,110,99,116,105,111,110,32,105,110,115,101,114,116,32,40,118,110,111,100,101,41,32,123,92,110,32,32,32,32,118,97,114,32,99,111,110,116,101,120,116,32,61,32,118,110,111,100,101,46,99,111,110,116,101,120,116,59,92,110,32,32,32,32,118,97,114,32,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,32,61,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,59,92,110,32,32,32,32,105,102,32,40,33,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,105,115,77,111,117,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,105,115,77,111,117,110,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,99,97,108,108,72,111,111,107,40,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,44,32,39,109,111,117,110,116,101,100,39,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,118,110,111,100,101,46,100,97,116,97,46,107,101,101,112,65,108,105,118,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,99,111,110,116,101,120,116,46,95,105,115,77,111,117,110,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,118,117,101,45,114,111,117,116,101,114,35,49,50,49,50,92,110,32,32,32,32,32,32,32,32,47,47,32,68,117,114,105,110,103,32,117,112,100,97,116,101,115,44,32,97,32,107,101,112,116,45,97,108,105,118,101,32,99,111,109,112,111,110,101,110,116,39,115,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,115,32,109,97,121,92,110,32,32,32,32,32,32,32,32,47,47,32,99,104,97,110,103,101,44,32,115,111,32,100,105,114,101,99,116,108,121,32,119,97,108,107,105,110,103,32,116,104,101,32,116,114,101,101,32,104,101,114,101,32,109,97,121,32,99,97,108,108,32,97,99,116,105,118,97,116,101,100,32,104,111,111,107,115,92,110,32,32,32,32,32,32,32,32,47,47,32,111,110,32,105,110,99,111,114,114,101,99,116,32,99,104,105,108,100,114,101,110,46,32,73,110,115,116,101,97,100,32,119,101,32,112,117,115,104,32,116,104,101,109,32,105,110,116,111,32,97,32,113,117,101,117,101,32,119,104,105,99,104,32,119,105,108,108,92,110,32,32,32,32,32,32,32,32,47,47,32,98,101,32,112,114,111,99,101,115,115,101,100,32,97,102,116,101,114,32,116,104,101,32,119,104,111,108,101,32,112,97,116,99,104,32,112,114,111,99,101,115,115,32,101,110,100,101,100,46,92,110,32,32,32,32,32,32,32,32,113,117,101,117,101,65,99,116,105,118,97,116,101,100,67,111,109,112,111,110,101,110,116,40,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,97,99,116,105,118,97,116,101,67,104,105,108,100,67,111,109,112,111,110,101,110,116,40,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,44,32,116,114,117,101,32,47,42,32,100,105,114,101,99,116,32,42,47,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,92,110,32,32,100,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,32,40,118,110,111,100,101,41,32,123,92,110,32,32,32,32,118,97,114,32,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,32,61,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,59,92,110,32,32,32,32,105,102,32,40,33,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,105,115,68,101,115,116,114,111,121,101,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,118,110,111,100,101,46,100,97,116,97,46,107,101,101,112,65,108,105,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,36,100,101,115,116,114,111,121,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,100,101,97,99,116,105,118,97,116,101,67,104,105,108,100,67,111,109,112,111,110,101,110,116,40,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,44,32,116,114,117,101,32,47,42,32,100,105,114,101,99,116,32,42,47,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,104,111,111,107,115,84,111,77,101,114,103,101,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,99,111,109,112,111,110,101,110,116,86,78,111,100,101,72,111,111,107,115,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,32,40,92,110,32,32,67,116,111,114,44,92,110,32,32,100,97,116,97,44,92,110,32,32,99,111,110,116,101,120,116,44,92,110,32,32,99,104,105,108,100,114,101,110,44,92,110,32,32,116,97,103,92,110,41,32,123,92,110,32,32,105,102,32,40,105,115,85,110,100,101,102,40,67,116,111,114,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,98,97,115,101,67,116,111,114,32,61,32,99,111,110,116,101,120,116,46,36,111,112,116,105,111,110,115,46,95,98,97,115,101,59,92,110,92,110,32,32,47,47,32,112,108,97,105,110,32,111,112,116,105,111,110,115,32,111,98,106,101,99,116,58,32,116,117,114,110,32,105,116,32,105,110,116,111,32,97,32,99,111,110,115,116,114,117,99,116,111,114,92,110,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,67,116,111,114,41,41,32,123,92,110,32,32,32,32,67,116,111,114,32,61,32,98,97,115,101,67,116,111,114,46,101,120,116,101,110,100,40,67,116,111,114,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,105,102,32,97,116,32,116,104,105,115,32,115,116,97,103,101,32,105,116,39,115,32,110,111,116,32,97,32,99,111,110,115,116,114,117,99,116,111,114,32,111,114,32,97,110,32,97,115,121,110,99,32,99,111,109,112,111,110,101,110,116,32,102,97,99,116,111,114,121,44,92,110,32,32,47,47,32,114,101,106,101,99,116,46,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,67,116,111,114,32,33,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,40,92,34,73,110,118,97,108,105,100,32,67,111,109,112,111,110,101,110,116,32,100,101,102,105,110,105,116,105,111,110,58,32,92,34,32,43,32,40,83,116,114,105,110,103,40,67,116,111,114,41,41,41,44,32,99,111,110,116,101,120,116,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,47,47,32,97,115,121,110,99,32,99,111,109,112,111,110,101,110,116,92,110,32,32,118,97,114,32,97,115,121,110,99,70,97,99,116,111,114,121,59,92,110,32,32,105,102,32,40,105,115,85,110,100,101,102,40,67,116,111,114,46,99,105,100,41,41,32,123,92,110,32,32,32,32,97,115,121,110,99,70,97,99,116,111,114,121,32,61,32,67,116,111,114,59,92,110,32,32,32,32,67,116,111,114,32,61,32,114,101,115,111,108,118,101,65,115,121,110,99,67,111,109,112,111,110,101,110,116,40,97,115,121,110,99,70,97,99,116,111,114,121,44,32,98,97,115,101,67,116,111,114,41,59,92,110,32,32,32,32,105,102,32,40,67,116,111,114,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,47,47,32,114,101,116,117,114,110,32,97,32,112,108,97,99,101,104,111,108,100,101,114,32,110,111,100,101,32,102,111,114,32,97,115,121,110,99,32,99,111,109,112,111,110,101,110,116,44,32,119,104,105,99,104,32,105,115,32,114,101,110,100,101,114,101,100,92,110,32,32,32,32,32,32,47,47,32,97,115,32,97,32,99,111,109,109,101,110,116,32,110,111,100,101,32,98,117,116,32,112,114,101,115,101,114,118,101,115,32,97,108,108,32,116,104,101,32,114,97,119,32,105,110,102,111,114,109,97,116,105,111,110,32,102,111,114,32,116,104,101,32,110,111,100,101,46,92,110,32,32,32,32,32,32,47,47,32,116,104,101,32,105,110,102,111,114,109,97,116,105,111,110,32,119,105,108,108,32,98,101,32,117,115,101,100,32,102,111,114,32,97,115,121,110,99,32,115,101,114,118,101,114,45,114,101,110,100,101,114,105,110,103,32,97,110,100,32,104,121,100,114,97,116,105,111,110,46,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,40,92,110,32,32,32,32,32,32,32,32,97,115,121,110,99,70,97,99,116,111,114,121,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,44,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,32,32,116,97,103,92,110,32,32,32,32,32,32,41,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,100,97,116,97,32,61,32,100,97,116,97,32,124,124,32,123,125,59,92,110,92,110,32,32,47,47,32,114,101,115,111,108,118,101,32,99,111,110,115,116,114,117,99,116,111,114,32,111,112,116,105,111,110,115,32,105,110,32,99,97,115,101,32,103,108,111,98,97,108,32,109,105,120,105,110,115,32,97,114,101,32,97,112,112,108,105,101,100,32,97,102,116,101,114,92,110,32,32,47,47,32,99,111,109,112,111,110,101,110,116,32,99,111,110,115,116,114,117,99,116,111,114,32,99,114,101,97,116,105,111,110,92,110,32,32,114,101,115,111,108,118,101,67,111,110,115,116,114,117,99,116,111,114,79,112,116,105,111,110,115,40,67,116,111,114,41,59,92,110,92,110,32,32,47,47,32,116,114,97,110,115,102,111,114,109,32,99,111,109,112,111,110,101,110,116,32,118,45,109,111,100,101,108,32,100,97,116,97,32,105,110,116,111,32,112,114,111,112,115,32,38,32,101,118,101,110,116,115,92,110,32,32,105,102,32,40,105,115,68,101,102,40,100,97,116,97,46,109,111,100,101,108,41,41,32,123,92,110,32,32,32,32,116,114,97,110,115,102,111,114,109,77,111,100,101,108,40,67,116,111,114,46,111,112,116,105,111,110,115,44,32,100,97,116,97,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,101,120,116,114,97,99,116,32,112,114,111,112,115,92,110,32,32,118,97,114,32,112,114,111,112,115,68,97,116,97,32,61,32,101,120,116,114,97,99,116,80,114,111,112,115,70,114,111,109,86,78,111,100,101,68,97,116,97,40,100,97,116,97,44,32,67,116,111,114,44,32,116,97,103,41,59,92,110,92,110,32,32,47,47,32,102,117,110,99,116,105,111,110,97,108,32,99,111,109,112,111,110,101,110,116,92,110,32,32,105,102,32,40,105,115,84,114,117,101,40,67,116,111,114,46,111,112,116,105,111,110,115,46,102,117,110,99,116,105,111,110,97,108,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,70,117,110,99,116,105,111,110,97,108,67,111,109,112,111,110,101,110,116,40,67,116,111,114,44,32,112,114,111,112,115,68,97,116,97,44,32,100,97,116,97,44,32,99,111,110,116,101,120,116,44,32,99,104,105,108,100,114,101,110,41,92,110,32,32,125,92,110,92,110,32,32,47,47,32,101,120,116,114,97,99,116,32,108,105,115,116,101,110,101,114,115,44,32,115,105,110,99,101,32,116,104,101,115,101,32,110,101,101,100,115,32,116,111,32,98,101,32,116,114,101,97,116,101,100,32,97,115,92,110,32,32,47,47,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,32,108,105,115,116,101,110,101,114,115,32,105,110,115,116,101,97,100,32,111,102,32,68,79,77,32,108,105,115,116,101,110,101,114,115,92,110,32,32,118,97,114,32,108,105,115,116,101,110,101,114,115,32,61,32,100,97,116,97,46,111,110,59,92,110,32,32,47,47,32,114,101,112,108,97,99,101,32,119,105,116,104,32,108,105,115,116,101,110,101,114,115,32,119,105,116,104,32,46,110,97,116,105,118,101,32,109,111,100,105,102,105,101,114,92,110,32,32,47,47,32,115,111,32,105,116,32,103,101,116,115,32,112,114,111,99,101,115,115,101,100,32,100,117,114,105,110,103,32,112,97,114,101,110,116,32,99,111,109,112,111,110,101,110,116,32,112,97,116,99,104,46,92,110,32,32,100,97,116,97,46,111,110,32,61,32,100,97,116,97,46,110,97,116,105,118,101,79,110,59,92,110,92,110,32,32,105,102,32,40,105,115,84,114,117,101,40,67,116,111,114,46,111,112,116,105,111,110,115,46,97,98,115,116,114,97,99,116,41,41,32,123,92,110,32,32,32,32,47,47,32,97,98,115,116,114,97,99,116,32,99,111,109,112,111,110,101,110,116,115,32,100,111,32,110,111,116,32,107,101,101,112,32,97,110,121,116,104,105,110,103,92,110,32,32,32,32,47,47,32,111,116,104,101,114,32,116,104,97,110,32,112,114,111,112,115,32,38,32,108,105,115,116,101,110,101,114,115,32,38,32,115,108,111,116,92,110,92,110,32,32,32,32,47,47,32,119,111,114,107,32,97,114,111,117,110,100,32,102,108,111,119,92,110,32,32,32,32,118,97,114,32,115,108,111,116,32,61,32,100,97,116,97,46,115,108,111,116,59,92,110,32,32,32,32,100,97,116,97,32,61,32,123,125,59,92,110,32,32,32,32,105,102,32,40,115,108,111,116,41,32,123,92,110,32,32,32,32,32,32,100,97,116,97,46,115,108,111,116,32,61,32,115,108,111,116,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,105,110,115,116,97,108,108,32,99,111,109,112,111,110,101,110,116,32,109,97,110,97,103,101,109,101,110,116,32,104,111,111,107,115,32,111,110,116,111,32,116,104,101,32,112,108,97,99,101,104,111,108,100,101,114,32,110,111,100,101,92,110,32,32,105,110,115,116,97,108,108,67,111,109,112,111,110,101,110,116,72,111,111,107,115,40,100,97,116,97,41,59,92,110,92,110,32,32,47,47,32,114,101,116,117,114,110,32,97,32,112,108,97,99,101,104,111,108,100,101,114,32,118,110,111,100,101,92,110,32,32,118,97,114,32,110,97,109,101,32,61,32,67,116,111,114,46,111,112,116,105,111,110,115,46,110,97,109,101,32,124,124,32,116,97,103,59,92,110,32,32,118,97,114,32,118,110,111,100,101,32,61,32,110,101,119,32,86,78,111,100,101,40,92,110,32,32,32,32,40,92,34,118,117,101,45,99,111,109,112,111,110,101,110,116,45,92,34,32,43,32,40,67,116,111,114,46,99,105,100,41,32,43,32,40,110,97,109,101,32,63,32,40,92,34,45,92,34,32,43,32,110,97,109,101,41,32,58,32,39,39,41,41,44,92,110,32,32,32,32,100,97,116,97,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,99,111,110,116,101,120,116,44,92,110,32,32,32,32,123,32,67,116,111,114,58,32,67,116,111,114,44,32,112,114,111,112,115,68,97,116,97,58,32,112,114,111,112,115,68,97,116,97,44,32,108,105,115,116,101,110,101,114,115,58,32,108,105,115,116,101,110,101,114,115,44,32,116,97,103,58,32,116,97,103,44,32,99,104,105,108,100,114,101,110,58,32,99,104,105,108,100,114,101,110,32,125,44,92,110,32,32,32,32,97,115,121,110,99,70,97,99,116,111,114,121,92,110,32,32,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,118,110,111,100,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,70,111,114,86,110,111,100,101,32,40,92,110,32,32,118,110,111,100,101,44,32,47,47,32,119,101,32,107,110,111,119,32,105,116,39,115,32,77,111,117,110,116,101,100,67,111,109,112,111,110,101,110,116,86,78,111,100,101,32,98,117,116,32,102,108,111,119,32,100,111,101,115,110,39,116,92,110,32,32,112,97,114,101,110,116,32,47,47,32,97,99,116,105,118,101,73,110,115,116,97,110,99,101,32,105,110,32,108,105,102,101,99,121,99,108,101,32,115,116,97,116,101,92,110,41,32,123,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,123,92,110,32,32,32,32,95,105,115,67,111,109,112,111,110,101,110,116,58,32,116,114,117,101,44,92,110,32,32,32,32,95,112,97,114,101,110,116,86,110,111,100,101,58,32,118,110,111,100,101,44,92,110,32,32,32,32,112,97,114,101,110,116,58,32,112,97,114,101,110,116,92,110,32,32,125,59,92,110,32,32,47,47,32,99,104,101,99,107,32,105,110,108,105,110,101,45,116,101,109,112,108,97,116,101,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,115,92,110,32,32,118,97,114,32,105,110,108,105,110,101,84,101,109,112,108,97,116,101,32,61,32,118,110,111,100,101,46,100,97,116,97,46,105,110,108,105,110,101,84,101,109,112,108,97,116,101,59,92,110,32,32,105,102,32,40,105,115,68,101,102,40,105,110,108,105,110,101,84,101,109,112,108,97,116,101,41,41,32,123,92,110,32,32,32,32,111,112,116,105,111,110,115,46,114,101,110,100,101,114,32,61,32,105,110,108,105,110,101,84,101,109,112,108,97,116,101,46,114,101,110,100,101,114,59,92,110,32,32,32,32,111,112,116,105,111,110,115,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,105,110,108,105,110,101,84,101,109,112,108,97,116,101,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,67,116,111,114,40,111,112,116,105,111,110,115,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,115,116,97,108,108,67,111,109,112,111,110,101,110,116,72,111,111,107,115,32,40,100,97,116,97,41,32,123,92,110,32,32,118,97,114,32,104,111,111,107,115,32,61,32,100,97,116,97,46,104,111,111,107,32,124,124,32,40,100,97,116,97,46,104,111,111,107,32,61,32,123,125,41,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,104,111,111,107,115,84,111,77,101,114,103,101,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,107,101,121,32,61,32,104,111,111,107,115,84,111,77,101,114,103,101,91,105,93,59,92,110,32,32,32,32,118,97,114,32,101,120,105,115,116,105,110,103,32,61,32,104,111,111,107,115,91,107,101,121,93,59,92,110,32,32,32,32,118,97,114,32,116,111,77,101,114,103,101,32,61,32,99,111,109,112,111,110,101,110,116,86,78,111,100,101,72,111,111,107,115,91,107,101,121,93,59,92,110,32,32,32,32,105,102,32,40,101,120,105,115,116,105,110,103,32,33,61,61,32,116,111,77,101,114,103,101,32,38,38,32,33,40,101,120,105,115,116,105,110,103,32,38,38,32,101,120,105,115,116,105,110,103,46,95,109,101,114,103,101,100,41,41,32,123,92,110,32,32,32,32,32,32,104,111,111,107,115,91,107,101,121,93,32,61,32,101,120,105,115,116,105,110,103,32,63,32,109,101,114,103,101,72,111,111,107,36,49,40,116,111,77,101,114,103,101,44,32,101,120,105,115,116,105,110,103,41,32,58,32,116,111,77,101,114,103,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,101,114,103,101,72,111,111,107,36,49,32,40,102,49,44,32,102,50,41,32,123,92,110,32,32,118,97,114,32,109,101,114,103,101,100,32,61,32,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,92,110,32,32,32,32,47,47,32,102,108,111,119,32,99,111,109,112,108,97,105,110,115,32,97,98,111,117,116,32,101,120,116,114,97,32,97,114,103,115,32,119,104,105,99,104,32,105,115,32,119,104,121,32,119,101,32,117,115,101,32,97,110,121,92,110,32,32,32,32,102,49,40,97,44,32,98,41,59,92,110,32,32,32,32,102,50,40,97,44,32,98,41,59,92,110,32,32,125,59,92,110,32,32,109,101,114,103,101,100,46,95,109,101,114,103,101,100,32,61,32,116,114,117,101,59,92,110,32,32,114,101,116,117,114,110,32,109,101,114,103,101,100,92,110,125,92,110,92,110,47,47,32,116,114,97,110,115,102,111,114,109,32,99,111,109,112,111,110,101,110,116,32,118,45,109,111,100,101,108,32,105,110,102,111,32,40,118,97,108,117,101,32,97,110,100,32,99,97,108,108,98,97,99,107,41,32,105,110,116,111,92,110,47,47,32,112,114,111,112,32,97,110,100,32,101,118,101,110,116,32,104,97,110,100,108,101,114,32,114,101,115,112,101,99,116,105,118,101,108,121,46,92,110,102,117,110,99,116,105,111,110,32,116,114,97,110,115,102,111,114,109,77,111,100,101,108,32,40,111,112,116,105,111,110,115,44,32,100,97,116,97,41,32,123,92,110,32,32,118,97,114,32,112,114,111,112,32,61,32,40,111,112,116,105,111,110,115,46,109,111,100,101,108,32,38,38,32,111,112,116,105,111,110,115,46,109,111,100,101,108,46,112,114,111,112,41,32,124,124,32,39,118,97,108,117,101,39,59,92,110,32,32,118,97,114,32,101,118,101,110,116,32,61,32,40,111,112,116,105,111,110,115,46,109,111,100,101,108,32,38,38,32,111,112,116,105,111,110,115,46,109,111,100,101,108,46,101,118,101,110,116,41,32,124,124,32,39,105,110,112,117,116,39,92,110,32,32,59,40,100,97,116,97,46,97,116,116,114,115,32,124,124,32,40,100,97,116,97,46,97,116,116,114,115,32,61,32,123,125,41,41,91,112,114,111,112,93,32,61,32,100,97,116,97,46,109,111,100,101,108,46,118,97,108,117,101,59,92,110,32,32,118,97,114,32,111,110,32,61,32,100,97,116,97,46,111,110,32,124,124,32,40,100,97,116,97,46,111,110,32,61,32,123,125,41,59,92,110,32,32,118,97,114,32,101,120,105,115,116,105,110,103,32,61,32,111,110,91,101,118,101,110,116,93,59,92,110,32,32,118,97,114,32,99,97,108,108,98,97,99,107,32,61,32,100,97,116,97,46,109,111,100,101,108,46,99,97,108,108,98,97,99,107,59,92,110,32,32,105,102,32,40,105,115,68,101,102,40,101,120,105,115,116,105,110,103,41,41,32,123,92,110,32,32,32,32,105,102,32,40,92,110,32,32,32,32,32,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,120,105,115,116,105,110,103,41,92,110,32,32,32,32,32,32,32,32,63,32,101,120,105,115,116,105,110,103,46,105,110,100,101,120,79,102,40,99,97,108,108,98,97,99,107,41,32,61,61,61,32,45,49,92,110,32,32,32,32,32,32,32,32,58,32,101,120,105,115,116,105,110,103,32,33,61,61,32,99,97,108,108,98,97,99,107,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,111,110,91,101,118,101,110,116,93,32,61,32,91,99,97,108,108,98,97,99,107,93,46,99,111,110,99,97,116,40,101,120,105,115,116,105,110,103,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,111,110,91,101,118,101,110,116,93,32,61,32,99,97,108,108,98,97,99,107,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,83,73,77,80,76,69,95,78,79,82,77,65,76,73,90,69,32,61,32,49,59,92,110,118,97,114,32,65,76,87,65,89,83,95,78,79,82,77,65,76,73,90,69,32,61,32,50,59,92,110,92,110,47,47,32,119,114,97,112,112,101,114,32,102,117,110,99,116,105,111,110,32,102,111,114,32,112,114,111,118,105,100,105,110,103,32,97,32,109,111,114,101,32,102,108,101,120,105,98,108,101,32,105,110,116,101,114,102,97,99,101,92,110,47,47,32,119,105,116,104,111,117,116,32,103,101,116,116,105,110,103,32,121,101,108,108,101,100,32,97,116,32,98,121,32,102,108,111,119,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,69,108,101,109,101,110,116,32,40,92,110,32,32,99,111,110,116,101,120,116,44,92,110,32,32,116,97,103,44,92,110,32,32,100,97,116,97,44,92,110,32,32,99,104,105,108,100,114,101,110,44,92,110,32,32,110,111,114,109,97,108,105,122,97,116,105,111,110,84,121,112,101,44,92,110,32,32,97,108,119,97,121,115,78,111,114,109,97,108,105,122,101,92,110,41,32,123,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,100,97,116,97,41,32,124,124,32,105,115,80,114,105,109,105,116,105,118,101,40,100,97,116,97,41,41,32,123,92,110,32,32,32,32,110,111,114,109,97,108,105,122,97,116,105,111,110,84,121,112,101,32,61,32,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,100,97,116,97,59,92,110,32,32,32,32,100,97,116,97,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,125,92,110,32,32,105,102,32,40,105,115,84,114,117,101,40,97,108,119,97,121,115,78,111,114,109,97,108,105,122,101,41,41,32,123,92,110,32,32,32,32,110,111,114,109,97,108,105,122,97,116,105,111,110,84,121,112,101,32,61,32,65,76,87,65,89,83,95,78,79,82,77,65,76,73,90,69,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,95,99,114,101,97,116,101,69,108,101,109,101,110,116,40,99,111,110,116,101,120,116,44,32,116,97,103,44,32,100,97,116,97,44,32,99,104,105,108,100,114,101,110,44,32,110,111,114,109,97,108,105,122,97,116,105,111,110,84,121,112,101,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,99,114,101,97,116,101,69,108,101,109,101,110,116,32,40,92,110,32,32,99,111,110,116,101,120,116,44,92,110,32,32,116,97,103,44,92,110,32,32,100,97,116,97,44,92,110,32,32,99,104,105,108,100,114,101,110,44,92,110,32,32,110,111,114,109,97,108,105,122,97,116,105,111,110,84,121,112,101,92,110,41,32,123,92,110,32,32,105,102,32,40,105,115,68,101,102,40,100,97,116,97,41,32,38,38,32,105,115,68,101,102,40,40,100,97,116,97,41,46,95,95,111,98,95,95,41,41,32,123,92,110,32,32,32,32,32,116,114,117,101,32,38,38,32,119,97,114,110,40,92,110,32,32,32,32,32,32,92,34,65,118,111,105,100,32,117,115,105,110,103,32,111,98,115,101,114,118,101,100,32,100,97,116,97,32,111,98,106,101,99,116,32,97,115,32,118,110,111,100,101,32,100,97,116,97,58,32,92,34,32,43,32,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,100,97,116,97,41,41,32,43,32,92,34,92,92,110,92,34,32,43,92,110,32,32,32,32,32,32,39,65,108,119,97,121,115,32,99,114,101,97,116,101,32,102,114,101,115,104,32,118,110,111,100,101,32,100,97,116,97,32,111,98,106,101,99,116,115,32,105,110,32,101,97,99,104,32,114,101,110,100,101,114,33,39,44,92,110,32,32,32,32,32,32,99,111,110,116,101,120,116,92,110,32,32,32,32,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,69,109,112,116,121,86,78,111,100,101,40,41,92,110,32,32,125,92,110,32,32,47,47,32,111,98,106,101,99,116,32,115,121,110,116,97,120,32,105,110,32,118,45,98,105,110,100,92,110,32,32,105,102,32,40,105,115,68,101,102,40,100,97,116,97,41,32,38,38,32,105,115,68,101,102,40,100,97,116,97,46,105,115,41,41,32,123,92,110,32,32,32,32,116,97,103,32,61,32,100,97,116,97,46,105,115,59,92,110,32,32,125,92,110,32,32,105,102,32,40,33,116,97,103,41,32,123,92,110,32,32,32,32,47,47,32,105,110,32,99,97,115,101,32,111,102,32,99,111,109,112,111,110,101,110,116,32,58,105,115,32,115,101,116,32,116,111,32,102,97,108,115,121,32,118,97,108,117,101,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,69,109,112,116,121,86,78,111,100,101,40,41,92,110,32,32,125,92,110,32,32,47,47,32,119,97,114,110,32,97,103,97,105,110,115,116,32,110,111,110,45,112,114,105,109,105,116,105,118,101,32,107,101,121,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,92,110,32,32,32,32,105,115,68,101,102,40,100,97,116,97,41,32,38,38,32,105,115,68,101,102,40,100,97,116,97,46,107,101,121,41,32,38,38,32,33,105,115,80,114,105,109,105,116,105,118,101,40,100,97,116,97,46,107,101,121,41,92,110,32,32,41,32,123,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,39,65,118,111,105,100,32,117,115,105,110,103,32,110,111,110,45,112,114,105,109,105,116,105,118,101,32,118,97,108,117,101,32,97,115,32,107,101,121,44,32,39,32,43,92,110,32,32,32,32,32,32,32,32,39,117,115,101,32,115,116,114,105,110,103,47,110,117,109,98,101,114,32,118,97,108,117,101,32,105,110,115,116,101,97,100,46,39,44,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,47,47,32,115,117,112,112,111,114,116,32,115,105,110,103,108,101,32,102,117,110,99,116,105,111,110,32,99,104,105,108,100,114,101,110,32,97,115,32,100,101,102,97,117,108,116,32,115,99,111,112,101,100,32,115,108,111,116,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,104,105,108,100,114,101,110,41,32,38,38,92,110,32,32,32,32,116,121,112,101,111,102,32,99,104,105,108,100,114,101,110,91,48,93,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,32,32,41,32,123,92,110,32,32,32,32,100,97,116,97,32,61,32,100,97,116,97,32,124,124,32,123,125,59,92,110,32,32,32,32,100,97,116,97,46,115,99,111,112,101,100,83,108,111,116,115,32,61,32,123,32,100,101,102,97,117,108,116,58,32,99,104,105,108,100,114,101,110,91,48,93,32,125,59,92,110,32,32,32,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,61,32,48,59,92,110,32,32,125,92,110,32,32,105,102,32,40,110,111,114,109,97,108,105,122,97,116,105,111,110,84,121,112,101,32,61,61,61,32,65,76,87,65,89,83,95,78,79,82,77,65,76,73,90,69,41,32,123,92,110,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,110,111,114,109,97,108,105,122,101,67,104,105,108,100,114,101,110,40,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,110,111,114,109,97,108,105,122,97,116,105,111,110,84,121,112,101,32,61,61,61,32,83,73,77,80,76,69,95,78,79,82,77,65,76,73,90,69,41,32,123,92,110,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,115,105,109,112,108,101,78,111,114,109,97,108,105,122,101,67,104,105,108,100,114,101,110,40,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,32,32,118,97,114,32,118,110,111,100,101,44,32,110,115,59,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,116,97,103,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,118,97,114,32,67,116,111,114,59,92,110,32,32,32,32,110,115,32,61,32,40,99,111,110,116,101,120,116,46,36,118,110,111,100,101,32,38,38,32,99,111,110,116,101,120,116,46,36,118,110,111,100,101,46,110,115,41,32,124,124,32,99,111,110,102,105,103,46,103,101,116,84,97,103,78,97,109,101,115,112,97,99,101,40,116,97,103,41,59,92,110,32,32,32,32,105,102,32,40,99,111,110,102,105,103,46,105,115,82,101,115,101,114,118,101,100,84,97,103,40,116,97,103,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,112,108,97,116,102,111,114,109,32,98,117,105,108,116,45,105,110,32,101,108,101,109,101,110,116,115,92,110,32,32,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,105,115,68,101,102,40,100,97,116,97,41,32,38,38,32,105,115,68,101,102,40,100,97,116,97,46,110,97,116,105,118,101,79,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,40,92,34,84,104,101,32,46,110,97,116,105,118,101,32,109,111,100,105,102,105,101,114,32,102,111,114,32,118,45,111,110,32,105,115,32,111,110,108,121,32,118,97,108,105,100,32,111,110,32,99,111,109,112,111,110,101,110,116,115,32,98,117,116,32,105,116,32,119,97,115,32,117,115,101,100,32,111,110,32,60,92,34,32,43,32,116,97,103,32,43,32,92,34,62,46,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,110,111,100,101,32,61,32,110,101,119,32,86,78,111,100,101,40,92,110,32,32,32,32,32,32,32,32,99,111,110,102,105,103,46,112,97,114,115,101,80,108,97,116,102,111,114,109,84,97,103,78,97,109,101,40,116,97,103,41,44,32,100,97,116,97,44,32,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,32,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,99,111,110,116,101,120,116,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,33,100,97,116,97,32,124,124,32,33,100,97,116,97,46,112,114,101,41,32,38,38,32,105,115,68,101,102,40,67,116,111,114,32,61,32,114,101,115,111,108,118,101,65,115,115,101,116,40,99,111,110,116,101,120,116,46,36,111,112,116,105,111,110,115,44,32,39,99,111,109,112,111,110,101,110,116,115,39,44,32,116,97,103,41,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,99,111,109,112,111,110,101,110,116,92,110,32,32,32,32,32,32,118,110,111,100,101,32,61,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,40,67,116,111,114,44,32,100,97,116,97,44,32,99,111,110,116,101,120,116,44,32,99,104,105,108,100,114,101,110,44,32,116,97,103,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,117,110,107,110,111,119,110,32,111,114,32,117,110,108,105,115,116,101,100,32,110,97,109,101,115,112,97,99,101,100,32,101,108,101,109,101,110,116,115,92,110,32,32,32,32,32,32,47,47,32,99,104,101,99,107,32,97,116,32,114,117,110,116,105,109,101,32,98,101,99,97,117,115,101,32,105,116,32,109,97,121,32,103,101,116,32,97,115,115,105,103,110,101,100,32,97,32,110,97,109,101,115,112,97,99,101,32,119,104,101,110,32,105,116,115,92,110,32,32,32,32,32,32,47,47,32,112,97,114,101,110,116,32,110,111,114,109,97,108,105,122,101,115,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,118,110,111,100,101,32,61,32,110,101,119,32,86,78,111,100,101,40,92,110,32,32,32,32,32,32,32,32,116,97,103,44,32,100,97,116,97,44,32,99,104,105,108,100,114,101,110,44,92,110,32,32,32,32,32,32,32,32,117,110,100,101,102,105,110,101,100,44,32,117,110,100,101,102,105,110,101,100,44,32,99,111,110,116,101,120,116,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,47,32,100,105,114,101,99,116,32,99,111,109,112,111,110,101,110,116,32,111,112,116,105,111,110,115,32,47,32,99,111,110,115,116,114,117,99,116,111,114,92,110,32,32,32,32,118,110,111,100,101,32,61,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,40,116,97,103,44,32,100,97,116,97,44,32,99,111,110,116,101,120,116,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,110,111,100,101,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,110,111,100,101,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,68,101,102,40,118,110,111,100,101,41,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,110,115,41,41,32,123,32,97,112,112,108,121,78,83,40,118,110,111,100,101,44,32,110,115,41,59,32,125,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,100,97,116,97,41,41,32,123,32,114,101,103,105,115,116,101,114,68,101,101,112,66,105,110,100,105,110,103,115,40,100,97,116,97,41,59,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,118,110,111,100,101,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,69,109,112,116,121,86,78,111,100,101,40,41,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,112,112,108,121,78,83,32,40,118,110,111,100,101,44,32,110,115,44,32,102,111,114,99,101,41,32,123,92,110,32,32,118,110,111,100,101,46,110,115,32,61,32,110,115,59,92,110,32,32,105,102,32,40,118,110,111,100,101,46,116,97,103,32,61,61,61,32,39,102,111,114,101,105,103,110,79,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,47,47,32,117,115,101,32,100,101,102,97,117,108,116,32,110,97,109,101,115,112,97,99,101,32,105,110,115,105,100,101,32,102,111,114,101,105,103,110,79,98,106,101,99,116,92,110,32,32,32,32,110,115,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,102,111,114,99,101,32,61,32,116,114,117,101,59,92,110,32,32,125,92,110,32,32,105,102,32,40,105,115,68,101,102,40,118,110,111,100,101,46,99,104,105,108,100,114,101,110,41,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,32,61,32,118,110,111,100,101,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,32,61,32,118,110,111,100,101,46,99,104,105,108,100,114,101,110,91,105,93,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,99,104,105,108,100,46,116,97,103,41,32,38,38,32,40,92,110,32,32,32,32,32,32,32,32,105,115,85,110,100,101,102,40,99,104,105,108,100,46,110,115,41,32,124,124,32,40,105,115,84,114,117,101,40,102,111,114,99,101,41,32,38,38,32,99,104,105,108,100,46,116,97,103,32,33,61,61,32,39,115,118,103,39,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,97,112,112,108,121,78,83,40,99,104,105,108,100,44,32,110,115,44,32,102,111,114,99,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,47,32,114,101,102,32,35,53,51,49,56,92,110,47,47,32,110,101,99,101,115,115,97,114,121,32,116,111,32,101,110,115,117,114,101,32,112,97,114,101,110,116,32,114,101,45,114,101,110,100,101,114,32,119,104,101,110,32,100,101,101,112,32,98,105,110,100,105,110,103,115,32,108,105,107,101,32,58,115,116,121,108,101,32,97,110,100,92,110,47,47,32,58,99,108,97,115,115,32,97,114,101,32,117,115,101,100,32,111,110,32,115,108,111,116,32,110,111,100,101,115,92,110,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,68,101,101,112,66,105,110,100,105,110,103,115,32,40,100,97,116,97,41,32,123,92,110,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,100,97,116,97,46,115,116,121,108,101,41,41,32,123,92,110,32,32,32,32,116,114,97,118,101,114,115,101,40,100,97,116,97,46,115,116,121,108,101,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,100,97,116,97,46,99,108,97,115,115,41,41,32,123,92,110,32,32,32,32,116,114,97,118,101,114,115,101,40,100,97,116,97,46,99,108,97,115,115,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,82,101,110,100,101,114,32,40,118,109,41,32,123,92,110,32,32,118,109,46,95,118,110,111,100,101,32,61,32,110,117,108,108,59,32,47,47,32,116,104,101,32,114,111,111,116,32,111,102,32,116,104,101,32,99,104,105,108,100,32,116,114,101,101,92,110,32,32,118,109,46,95,115,116,97,116,105,99,84,114,101,101,115,32,61,32,110,117,108,108,59,32,47,47,32,118,45,111,110,99,101,32,99,97,99,104,101,100,32,116,114,101,101,115,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,118,109,46,36,111,112,116,105,111,110,115,59,92,110,32,32,118,97,114,32,112,97,114,101,110,116,86,110,111,100,101,32,61,32,118,109,46,36,118,110,111,100,101,32,61,32,111,112,116,105,111,110,115,46,95,112,97,114,101,110,116,86,110,111,100,101,59,32,47,47,32,116,104,101,32,112,108,97,99,101,104,111,108,100,101,114,32,110,111,100,101,32,105,110,32,112,97,114,101,110,116,32,116,114,101,101,92,110,32,32,118,97,114,32,114,101,110,100,101,114,67,111,110,116,101,120,116,32,61,32,112,97,114,101,110,116,86,110,111,100,101,32,38,38,32,112,97,114,101,110,116,86,110,111,100,101,46,99,111,110,116,101,120,116,59,92,110,32,32,118,109,46,36,115,108,111,116,115,32,61,32,114,101,115,111,108,118,101,83,108,111,116,115,40,111,112,116,105,111,110,115,46,95,114,101,110,100,101,114,67,104,105,108,100,114,101,110,44,32,114,101,110,100,101,114,67,111,110,116,101,120,116,41,59,92,110,32,32,118,109,46,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,101,109,112,116,121,79,98,106,101,99,116,59,92,110,32,32,47,47,32,98,105,110,100,32,116,104,101,32,99,114,101,97,116,101,69,108,101,109,101,110,116,32,102,110,32,116,111,32,116,104,105,115,32,105,110,115,116,97,110,99,101,92,110,32,32,47,47,32,115,111,32,116,104,97,116,32,119,101,32,103,101,116,32,112,114,111,112,101,114,32,114,101,110,100,101,114,32,99,111,110,116,101,120,116,32,105,110,115,105,100,101,32,105,116,46,92,110,32,32,47,47,32,97,114,103,115,32,111,114,100,101,114,58,32,116,97,103,44,32,100,97,116,97,44,32,99,104,105,108,100,114,101,110,44,32,110,111,114,109,97,108,105,122,97,116,105,111,110,84,121,112,101,44,32,97,108,119,97,121,115,78,111,114,109,97,108,105,122,101,92,110,32,32,47,47,32,105,110,116,101,114,110,97,108,32,118,101,114,115,105,111,110,32,105,115,32,117,115,101,100,32,98,121,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,115,32,99,111,109,112,105,108,101,100,32,102,114,111,109,32,116,101,109,112,108,97,116,101,115,92,110,32,32,118,109,46,95,99,32,61,32,102,117,110,99,116,105,111,110,32,40,97,44,32,98,44,32,99,44,32,100,41,32,123,32,114,101,116,117,114,110,32,99,114,101,97,116,101,69,108,101,109,101,110,116,40,118,109,44,32,97,44,32,98,44,32,99,44,32,100,44,32,102,97,108,115,101,41,59,32,125,59,92,110,32,32,47,47,32,110,111,114,109,97,108,105,122,97,116,105,111,110,32,105,115,32,97,108,119,97,121,115,32,97,112,112,108,105,101,100,32,102,111,114,32,116,104,101,32,112,117,98,108,105,99,32,118,101,114,115,105,111,110,44,32,117,115,101,100,32,105,110,92,110,32,32,47,47,32,117,115,101,114,45,119,114,105,116,116,101,110,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,115,46,92,110,32,32,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,97,44,32,98,44,32,99,44,32,100,41,32,123,32,114,101,116,117,114,110,32,99,114,101,97,116,101,69,108,101,109,101,110,116,40,118,109,44,32,97,44,32,98,44,32,99,44,32,100,44,32,116,114,117,101,41,59,32,125,59,92,110,92,110,32,32,47,47,32,36,97,116,116,114,115,32,38,32,36,108,105,115,116,101,110,101,114,115,32,97,114,101,32,101,120,112,111,115,101,100,32,102,111,114,32,101,97,115,105,101,114,32,72,79,67,32,99,114,101,97,116,105,111,110,46,92,110,32,32,47,47,32,116,104,101,121,32,110,101,101,100,32,116,111,32,98,101,32,114,101,97,99,116,105,118,101,32,115,111,32,116,104,97,116,32,72,79,67,115,32,117,115,105,110,103,32,116,104,101,109,32,97,114,101,32,97,108,119,97,121,115,32,117,112,100,97,116,101,100,92,110,32,32,118,97,114,32,112,97,114,101,110,116,68,97,116,97,32,61,32,112,97,114,101,110,116,86,110,111,100,101,32,38,38,32,112,97,114,101,110,116,86,110,111,100,101,46,100,97,116,97,59,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,100,101,102,105,110,101,82,101,97,99,116,105,118,101,36,36,49,40,118,109,44,32,39,36,97,116,116,114,115,39,44,32,112,97,114,101,110,116,68,97,116,97,32,38,38,32,112,97,114,101,110,116,68,97,116,97,46,97,116,116,114,115,32,124,124,32,101,109,112,116,121,79,98,106,101,99,116,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,33,105,115,85,112,100,97,116,105,110,103,67,104,105,108,100,67,111,109,112,111,110,101,110,116,32,38,38,32,119,97,114,110,40,92,34,36,97,116,116,114,115,32,105,115,32,114,101,97,100,111,110,108,121,46,92,34,44,32,118,109,41,59,92,110,32,32,32,32,125,44,32,116,114,117,101,41,59,92,110,32,32,32,32,100,101,102,105,110,101,82,101,97,99,116,105,118,101,36,36,49,40,118,109,44,32,39,36,108,105,115,116,101,110,101,114,115,39,44,32,111,112,116,105,111,110,115,46,95,112,97,114,101,110,116,76,105,115,116,101,110,101,114,115,32,124,124,32,101,109,112,116,121,79,98,106,101,99,116,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,33,105,115,85,112,100,97,116,105,110,103,67,104,105,108,100,67,111,109,112,111,110,101,110,116,32,38,38,32,119,97,114,110,40,92,34,36,108,105,115,116,101,110,101,114,115,32,105,115,32,114,101,97,100,111,110,108,121,46,92,34,44,32,118,109,41,59,92,110,32,32,32,32,125,44,32,116,114,117,101,41,59,92,110,32,32,125,32,101,108,115,101,32,123,125,92,110,125,92,110,92,110,118,97,114,32,99,117,114,114,101,110,116,82,101,110,100,101,114,105,110,103,73,110,115,116,97,110,99,101,32,61,32,110,117,108,108,59,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,77,105,120,105,110,32,40,86,117,101,41,32,123,92,110,32,32,47,47,32,105,110,115,116,97,108,108,32,114,117,110,116,105,109,101,32,99,111,110,118,101,110,105,101,110,99,101,32,104,101,108,112,101,114,115,92,110,32,32,105,110,115,116,97,108,108,82,101,110,100,101,114,72,101,108,112,101,114,115,40,86,117,101,46,112,114,111,116,111,116,121,112,101,41,59,92,110,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,110,101,120,116,84,105,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,102,110,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,84,105,99,107,40,102,110,44,32,116,104,105,115,41,92,110,32,32,125,59,92,110,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,95,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,109,32,61,32,116,104,105,115,59,92,110,32,32,32,32,118,97,114,32,114,101,102,32,61,32,118,109,46,36,111,112,116,105,111,110,115,59,92,110,32,32,32,32,118,97,114,32,114,101,110,100,101,114,32,61,32,114,101,102,46,114,101,110,100,101,114,59,92,110,32,32,32,32,118,97,114,32,95,112,97,114,101,110,116,86,110,111,100,101,32,61,32,114,101,102,46,95,112,97,114,101,110,116,86,110,111,100,101,59,92,110,92,110,32,32,32,32,105,102,32,40,95,112,97,114,101,110,116,86,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,118,109,46,36,115,99,111,112,101,100,83,108,111,116,115,32,61,32,110,111,114,109,97,108,105,122,101,83,99,111,112,101,100,83,108,111,116,115,40,92,110,32,32,32,32,32,32,32,32,95,112,97,114,101,110,116,86,110,111,100,101,46,100,97,116,97,46,115,99,111,112,101,100,83,108,111,116,115,44,92,110,32,32,32,32,32,32,32,32,118,109,46,36,115,108,111,116,115,44,92,110,32,32,32,32,32,32,32,32,118,109,46,36,115,99,111,112,101,100,83,108,111,116,115,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,115,101,116,32,112,97,114,101,110,116,32,118,110,111,100,101,46,32,116,104,105,115,32,97,108,108,111,119,115,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,115,32,116,111,32,104,97,118,101,32,97,99,99,101,115,115,92,110,32,32,32,32,47,47,32,116,111,32,116,104,101,32,100,97,116,97,32,111,110,32,116,104,101,32,112,108,97,99,101,104,111,108,100,101,114,32,110,111,100,101,46,92,110,32,32,32,32,118,109,46,36,118,110,111,100,101,32,61,32,95,112,97,114,101,110,116,86,110,111,100,101,59,92,110,32,32,32,32,47,47,32,114,101,110,100,101,114,32,115,101,108,102,92,110,32,32,32,32,118,97,114,32,118,110,111,100,101,59,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,47,47,32,84,104,101,114,101,39,115,32,110,111,32,110,101,101,100,32,116,111,32,109,97,105,110,116,97,105,110,32,97,32,115,116,97,99,107,32,98,101,99,97,117,115,101,32,97,108,108,32,114,101,110,100,101,114,32,102,110,115,32,97,114,101,32,99,97,108,108,101,100,92,110,32,32,32,32,32,32,47,47,32,115,101,112,97,114,97,116,101,108,121,32,102,114,111,109,32,111,110,101,32,97,110,111,116,104,101,114,46,32,78,101,115,116,101,100,32,99,111,109,112,111,110,101,110,116,39,115,32,114,101,110,100,101,114,32,102,110,115,32,97,114,101,32,99,97,108,108,101,100,92,110,32,32,32,32,32,32,47,47,32,119,104,101,110,32,112,97,114,101,110,116,32,99,111,109,112,111,110,101,110,116,32,105,115,32,112,97,116,99,104,101,100,46,92,110,32,32,32,32,32,32,99,117,114,114,101,110,116,82,101,110,100,101,114,105,110,103,73,110,115,116,97,110,99,101,32,61,32,118,109,59,92,110,32,32,32,32,32,32,118,110,111,100,101,32,61,32,114,101,110,100,101,114,46,99,97,108,108,40,118,109,46,95,114,101,110,100,101,114,80,114,111,120,121,44,32,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,41,59,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,104,97,110,100,108,101,69,114,114,111,114,40,101,44,32,118,109,44,32,92,34,114,101,110,100,101,114,92,34,41,59,92,110,32,32,32,32,32,32,47,47,32,114,101,116,117,114,110,32,101,114,114,111,114,32,114,101,110,100,101,114,32,114,101,115,117,108,116,44,92,110,32,32,32,32,32,32,47,47,32,111,114,32,112,114,101,118,105,111,117,115,32,118,110,111,100,101,32,116,111,32,112,114,101,118,101,110,116,32,114,101,110,100,101,114,32,101,114,114,111,114,32,99,97,117,115,105,110,103,32,98,108,97,110,107,32,99,111,109,112,111,110,101,110,116,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,118,109,46,36,111,112,116,105,111,110,115,46,114,101,110,100,101,114,69,114,114,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,110,111,100,101,32,61,32,118,109,46,36,111,112,116,105,111,110,115,46,114,101,110,100,101,114,69,114,114,111,114,46,99,97,108,108,40,118,109,46,95,114,101,110,100,101,114,80,114,111,120,121,44,32,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,32,101,41,59,92,110,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,69,114,114,111,114,40,101,44,32,118,109,44,32,92,34,114,101,110,100,101,114,69,114,114,111,114,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,110,111,100,101,32,61,32,118,109,46,95,118,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,118,110,111,100,101,32,61,32,118,109,46,95,118,110,111,100,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,32,32,99,117,114,114,101,110,116,82,101,110,100,101,114,105,110,103,73,110,115,116,97,110,99,101,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,105,102,32,116,104,101,32,114,101,116,117,114,110,101,100,32,97,114,114,97,121,32,99,111,110,116,97,105,110,115,32,111,110,108,121,32,97,32,115,105,110,103,108,101,32,110,111,100,101,44,32,97,108,108,111,119,32,105,116,92,110,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,110,111,100,101,41,32,38,38,32,118,110,111,100,101,46,108,101,110,103,116,104,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,118,110,111,100,101,32,61,32,118,110,111,100,101,91,48,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,114,101,116,117,114,110,32,101,109,112,116,121,32,118,110,111,100,101,32,105,110,32,99,97,115,101,32,116,104,101,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,32,101,114,114,111,114,101,100,32,111,117,116,92,110,32,32,32,32,105,102,32,40,33,40,118,110,111,100,101,32,105,110,115,116,97,110,99,101,111,102,32,86,78,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,110,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,39,77,117,108,116,105,112,108,101,32,114,111,111,116,32,110,111,100,101,115,32,114,101,116,117,114,110,101,100,32,102,114,111,109,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,46,32,82,101,110,100,101,114,32,102,117,110,99,116,105,111,110,32,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,39,115,104,111,117,108,100,32,114,101,116,117,114,110,32,97,32,115,105,110,103,108,101,32,114,111,111,116,32,110,111,100,101,46,39,44,92,110,32,32,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,118,110,111,100,101,32,61,32,99,114,101,97,116,101,69,109,112,116,121,86,78,111,100,101,40,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,115,101,116,32,112,97,114,101,110,116,92,110,32,32,32,32,118,110,111,100,101,46,112,97,114,101,110,116,32,61,32,95,112,97,114,101,110,116,86,110,111,100,101,59,92,110,32,32,32,32,114,101,116,117,114,110,32,118,110,111,100,101,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,101,110,115,117,114,101,67,116,111,114,32,40,99,111,109,112,44,32,98,97,115,101,41,32,123,92,110,32,32,105,102,32,40,92,110,32,32,32,32,99,111,109,112,46,95,95,101,115,77,111,100,117,108,101,32,124,124,92,110,32,32,32,32,40,104,97,115,83,121,109,98,111,108,32,38,38,32,99,111,109,112,91,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,93,32,61,61,61,32,39,77,111,100,117,108,101,39,41,92,110,32,32,41,32,123,92,110,32,32,32,32,99,111,109,112,32,61,32,99,111,109,112,46,100,101,102,97,117,108,116,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,105,115,79,98,106,101,99,116,40,99,111,109,112,41,92,110,32,32,32,32,63,32,98,97,115,101,46,101,120,116,101,110,100,40,99,111,109,112,41,92,110,32,32,32,32,58,32,99,111,109,112,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,32,40,92,110,32,32,102,97,99,116,111,114,121,44,92,110,32,32,100,97,116,97,44,92,110,32,32,99,111,110,116,101,120,116,44,92,110,32,32,99,104,105,108,100,114,101,110,44,92,110,32,32,116,97,103,92,110,41,32,123,92,110,32,32,118,97,114,32,110,111,100,101,32,61,32,99,114,101,97,116,101,69,109,112,116,121,86,78,111,100,101,40,41,59,92,110,32,32,110,111,100,101,46,97,115,121,110,99,70,97,99,116,111,114,121,32,61,32,102,97,99,116,111,114,121,59,92,110,32,32,110,111,100,101,46,97,115,121,110,99,77,101,116,97,32,61,32,123,32,100,97,116,97,58,32,100,97,116,97,44,32,99,111,110,116,101,120,116,58,32,99,111,110,116,101,120,116,44,32,99,104,105,108,100,114,101,110,58,32,99,104,105,108,100,114,101,110,44,32,116,97,103,58,32,116,97,103,32,125,59,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,65,115,121,110,99,67,111,109,112,111,110,101,110,116,32,40,92,110,32,32,102,97,99,116,111,114,121,44,92,110,32,32,98,97,115,101,67,116,111,114,92,110,41,32,123,92,110,32,32,105,102,32,40,105,115,84,114,117,101,40,102,97,99,116,111,114,121,46,101,114,114,111,114,41,32,38,38,32,105,115,68,101,102,40,102,97,99,116,111,114,121,46,101,114,114,111,114,67,111,109,112,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,99,116,111,114,121,46,101,114,114,111,114,67,111,109,112,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,105,115,68,101,102,40,102,97,99,116,111,114,121,46,114,101,115,111,108,118,101,100,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,99,116,111,114,121,46,114,101,115,111,108,118,101,100,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,111,119,110,101,114,32,61,32,99,117,114,114,101,110,116,82,101,110,100,101,114,105,110,103,73,110,115,116,97,110,99,101,59,92,110,32,32,105,102,32,40,111,119,110,101,114,32,38,38,32,105,115,68,101,102,40,102,97,99,116,111,114,121,46,111,119,110,101,114,115,41,32,38,38,32,102,97,99,116,111,114,121,46,111,119,110,101,114,115,46,105,110,100,101,120,79,102,40,111,119,110,101,114,41,32,61,61,61,32,45,49,41,32,123,92,110,32,32,32,32,47,47,32,97,108,114,101,97,100,121,32,112,101,110,100,105,110,103,92,110,32,32,32,32,102,97,99,116,111,114,121,46,111,119,110,101,114,115,46,112,117,115,104,40,111,119,110,101,114,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,105,115,84,114,117,101,40,102,97,99,116,111,114,121,46,108,111,97,100,105,110,103,41,32,38,38,32,105,115,68,101,102,40,102,97,99,116,111,114,121,46,108,111,97,100,105,110,103,67,111,109,112,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,99,116,111,114,121,46,108,111,97,100,105,110,103,67,111,109,112,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,111,119,110,101,114,32,38,38,32,33,105,115,68,101,102,40,102,97,99,116,111,114,121,46,111,119,110,101,114,115,41,41,32,123,92,110,32,32,32,32,118,97,114,32,111,119,110,101,114,115,32,61,32,102,97,99,116,111,114,121,46,111,119,110,101,114,115,32,61,32,91,111,119,110,101,114,93,59,92,110,32,32,32,32,118,97,114,32,115,121,110,99,32,61,32,116,114,117,101,59,92,110,32,32,32,32,118,97,114,32,116,105,109,101,114,76,111,97,100,105,110,103,32,61,32,110,117,108,108,59,92,110,32,32,32,32,118,97,114,32,116,105,109,101,114,84,105,109,101,111,117,116,32,61,32,110,117,108,108,92,110,92,110,32,32,32,32,59,40,111,119,110,101,114,41,46,36,111,110,40,39,104,111,111,107,58,100,101,115,116,114,111,121,101,100,39,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,114,101,109,111,118,101,40,111,119,110,101,114,115,44,32,111,119,110,101,114,41,59,32,125,41,59,92,110,92,110,32,32,32,32,118,97,114,32,102,111,114,99,101,82,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,114,101,110,100,101,114,67,111,109,112,108,101,116,101,100,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,32,61,32,111,119,110,101,114,115,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,40,111,119,110,101,114,115,91,105,93,41,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,114,101,110,100,101,114,67,111,109,112,108,101,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,111,119,110,101,114,115,46,108,101,110,103,116,104,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,105,109,101,114,76,111,97,100,105,110,103,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,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,114,76,111,97,100,105,110,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,105,109,101,114,76,111,97,100,105,110,103,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,105,109,101,114,84,105,109,101,111,117,116,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,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,114,84,105,109,101,111,117,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,105,109,101,114,84,105,109,101,111,117,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,92,110,32,32,32,32,118,97,114,32,114,101,115,111,108,118,101,32,61,32,111,110,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,41,32,123,92,110,32,32,32,32,32,32,47,47,32,99,97,99,104,101,32,114,101,115,111,108,118,101,100,92,110,32,32,32,32,32,32,102,97,99,116,111,114,121,46,114,101,115,111,108,118,101,100,32,61,32,101,110,115,117,114,101,67,116,111,114,40,114,101,115,44,32,98,97,115,101,67,116,111,114,41,59,92,110,32,32,32,32,32,32,47,47,32,105,110,118,111,107,101,32,99,97,108,108,98,97,99,107,115,32,111,110,108,121,32,105,102,32,116,104,105,115,32,105,115,32,110,111,116,32,97,32,115,121,110,99,104,114,111,110,111,117,115,32,114,101,115,111,108,118,101,92,110,32,32,32,32,32,32,47,47,32,40,97,115,121,110,99,32,114,101,115,111,108,118,101,115,32,97,114,101,32,115,104,105,109,109,101,100,32,97,115,32,115,121,110,99,104,114,111,110,111,117,115,32,100,117,114,105,110,103,32,83,83,82,41,92,110,32,32,32,32,32,32,105,102,32,40,33,115,121,110,99,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,99,101,82,101,110,100,101,114,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,111,119,110,101,114,115,46,108,101,110,103,116,104,32,61,32,48,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,118,97,114,32,114,101,106,101,99,116,32,61,32,111,110,99,101,40,102,117,110,99,116,105,111,110,32,40,114,101,97,115,111,110,41,32,123,92,110,32,32,32,32,32,32,32,116,114,117,101,32,38,38,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,92,34,70,97,105,108,101,100,32,116,111,32,114,101,115,111,108,118,101,32,97,115,121,110,99,32,99,111,109,112,111,110,101,110,116,58,32,92,34,32,43,32,40,83,116,114,105,110,103,40,102,97,99,116,111,114,121,41,41,32,43,92,110,32,32,32,32,32,32,32,32,40,114,101,97,115,111,110,32,63,32,40,92,34,92,92,110,82,101,97,115,111,110,58,32,92,34,32,43,32,114,101,97,115,111,110,41,32,58,32,39,39,41,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,102,97,99,116,111,114,121,46,101,114,114,111,114,67,111,109,112,41,41,32,123,92,110,32,32,32,32,32,32,32,32,102,97,99,116,111,114,121,46,101,114,114,111,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,102,111,114,99,101,82,101,110,100,101,114,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,118,97,114,32,114,101,115,32,61,32,102,97,99,116,111,114,121,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,114,101,115,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,80,114,111,109,105,115,101,40,114,101,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,40,41,32,61,62,32,80,114,111,109,105,115,101,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,40,102,97,99,116,111,114,121,46,114,101,115,111,108,118,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,46,116,104,101,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,80,114,111,109,105,115,101,40,114,101,115,46,99,111,109,112,111,110,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,46,99,111,109,112,111,110,101,110,116,46,116,104,101,110,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,114,101,115,46,101,114,114,111,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,97,99,116,111,114,121,46,101,114,114,111,114,67,111,109,112,32,61,32,101,110,115,117,114,101,67,116,111,114,40,114,101,115,46,101,114,114,111,114,44,32,98,97,115,101,67,116,111,114,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,114,101,115,46,108,111,97,100,105,110,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,97,99,116,111,114,121,46,108,111,97,100,105,110,103,67,111,109,112,32,61,32,101,110,115,117,114,101,67,116,111,114,40,114,101,115,46,108,111,97,100,105,110,103,44,32,98,97,115,101,67,116,111,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,114,101,115,46,100,101,108,97,121,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,97,99,116,111,114,121,46,108,111,97,100,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,105,109,101,114,76,111,97,100,105,110,103,32,61,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,105,109,101,114,76,111,97,100,105,110,103,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,40,102,97,99,116,111,114,121,46,114,101,115,111,108,118,101,100,41,32,38,38,32,105,115,85,110,100,101,102,40,102,97,99,116,111,114,121,46,101,114,114,111,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,97,99,116,111,114,121,46,108,111,97,100,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,99,101,82,101,110,100,101,114,40,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,32,114,101,115,46,100,101,108,97,121,32,124,124,32,50,48,48,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,114,101,115,46,116,105,109,101,111,117,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,105,109,101,114,84,105,109,101,111,117,116,32,61,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,105,109,101,114,84,105,109,101,111,117,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,40,102,97,99,116,111,114,121,46,114,101,115,111,108,118,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,106,101,99,116,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,92,34,116,105,109,101,111,117,116,32,40,92,34,32,43,32,40,114,101,115,46,116,105,109,101,111,117,116,41,32,43,32,92,34,109,115,41,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,48,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,44,32,114,101,115,46,116,105,109,101,111,117,116,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,115,121,110,99,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,47,47,32,114,101,116,117,114,110,32,105,110,32,99,97,115,101,32,114,101,115,111,108,118,101,100,32,115,121,110,99,104,114,111,110,111,117,115,108,121,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,99,116,111,114,121,46,108,111,97,100,105,110,103,92,110,32,32,32,32,32,32,63,32,102,97,99,116,111,114,121,46,108,111,97,100,105,110,103,67,111,109,112,92,110,32,32,32,32,32,32,58,32,102,97,99,116,111,114,121,46,114,101,115,111,108,118,101,100,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,32,40,110,111,100,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,46,105,115,67,111,109,109,101,110,116,32,38,38,32,110,111,100,101,46,97,115,121,110,99,70,97,99,116,111,114,121,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,70,105,114,115,116,67,111,109,112,111,110,101,110,116,67,104,105,108,100,32,40,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,104,105,108,100,114,101,110,41,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,32,61,32,99,104,105,108,100,114,101,110,91,105,93,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,99,41,32,38,38,32,40,105,115,68,101,102,40,99,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,41,32,124,124,32,105,115,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,40,99,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,69,118,101,110,116,115,32,40,118,109,41,32,123,92,110,32,32,118,109,46,95,101,118,101,110,116,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,118,109,46,95,104,97,115,72,111,111,107,69,118,101,110,116,32,61,32,102,97,108,115,101,59,92,110,32,32,47,47,32,105,110,105,116,32,112,97,114,101,110,116,32,97,116,116,97,99,104,101,100,32,101,118,101,110,116,115,92,110,32,32,118,97,114,32,108,105,115,116,101,110,101,114,115,32,61,32,118,109,46,36,111,112,116,105,111,110,115,46,95,112,97,114,101,110,116,76,105,115,116,101,110,101,114,115,59,92,110,32,32,105,102,32,40,108,105,115,116,101,110,101,114,115,41,32,123,92,110,32,32,32,32,117,112,100,97,116,101,67,111,109,112,111,110,101,110,116,76,105,115,116,101,110,101,114,115,40,118,109,44,32,108,105,115,116,101,110,101,114,115,41,59,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,116,97,114,103,101,116,59,92,110,92,110,102,117,110,99,116,105,111,110,32,97,100,100,32,40,101,118,101,110,116,44,32,102,110,41,32,123,92,110,32,32,116,97,114,103,101,116,46,36,111,110,40,101,118,101,110,116,44,32,102,110,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,36,49,32,40,101,118,101,110,116,44,32,102,110,41,32,123,92,110,32,32,116,97,114,103,101,116,46,36,111,102,102,40,101,118,101,110,116,44,32,102,110,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,79,110,99,101,72,97,110,100,108,101,114,32,40,101,118,101,110,116,44,32,102,110,41,32,123,92,110,32,32,118,97,114,32,95,116,97,114,103,101,116,32,61,32,116,97,114,103,101,116,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,111,110,99,101,72,97,110,100,108,101,114,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,32,61,32,102,110,46,97,112,112,108,121,40,110,117,108,108,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,105,102,32,40,114,101,115,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,95,116,97,114,103,101,116,46,36,111,102,102,40,101,118,101,110,116,44,32,111,110,99,101,72,97,110,100,108,101,114,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,67,111,109,112,111,110,101,110,116,76,105,115,116,101,110,101,114,115,32,40,92,110,32,32,118,109,44,92,110,32,32,108,105,115,116,101,110,101,114,115,44,92,110,32,32,111,108,100,76,105,115,116,101,110,101,114,115,92,110,41,32,123,92,110,32,32,116,97,114,103,101,116,32,61,32,118,109,59,92,110,32,32,117,112,100,97,116,101,76,105,115,116,101,110,101,114,115,40,108,105,115,116,101,110,101,114,115,44,32,111,108,100,76,105,115,116,101,110,101,114,115,32,124,124,32,123,125,44,32,97,100,100,44,32,114,101,109,111,118,101,36,49,44,32,99,114,101,97,116,101,79,110,99,101,72,97,110,100,108,101,114,44,32,118,109,41,59,92,110,32,32,116,97,114,103,101,116,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,118,101,110,116,115,77,105,120,105,110,32,40,86,117,101,41,32,123,92,110,32,32,118,97,114,32,104,111,111,107,82,69,32,61,32,47,94,104,111,111,107,58,47,59,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,111,110,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,44,32,102,110,41,32,123,92,110,32,32,32,32,118,97,114,32,118,109,32,61,32,116,104,105,115,59,92,110,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,118,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,32,61,32,101,118,101,110,116,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,118,109,46,36,111,110,40,101,118,101,110,116,91,105,93,44,32,102,110,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,40,118,109,46,95,101,118,101,110,116,115,91,101,118,101,110,116,93,32,124,124,32,40,118,109,46,95,101,118,101,110,116,115,91,101,118,101,110,116,93,32,61,32,91,93,41,41,46,112,117,115,104,40,102,110,41,59,92,110,32,32,32,32,32,32,47,47,32,111,112,116,105,109,105,122,101,32,104,111,111,107,58,101,118,101,110,116,32,99,111,115,116,32,98,121,32,117,115,105,110,103,32,97,32,98,111,111,108,101,97,110,32,102,108,97,103,32,109,97,114,107,101,100,32,97,116,32,114,101,103,105,115,116,114,97,116,105,111,110,92,110,32,32,32,32,32,32,47,47,32,105,110,115,116,101,97,100,32,111,102,32,97,32,104,97,115,104,32,108,111,111,107,117,112,92,110,32,32,32,32,32,32,105,102,32,40,104,111,111,107,82,69,46,116,101,115,116,40,101,118,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,109,46,95,104,97,115,72,111,111,107,69,118,101,110,116,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,118,109,92,110,32,32,125,59,92,110,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,111,110,99,101,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,44,32,102,110,41,32,123,92,110,32,32,32,32,118,97,114,32,118,109,32,61,32,116,104,105,115,59,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,109,46,36,111,102,102,40,101,118,101,110,116,44,32,111,110,41,59,92,110,32,32,32,32,32,32,102,110,46,97,112,112,108,121,40,118,109,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,111,110,46,102,110,32,61,32,102,110,59,92,110,32,32,32,32,118,109,46,36,111,110,40,101,118,101,110,116,44,32,111,110,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,118,109,92,110,32,32,125,59,92,110,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,111,102,102,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,44,32,102,110,41,32,123,92,110,32,32,32,32,118,97,114,32,118,109,32,61,32,116,104,105,115,59,92,110,32,32,32,32,47,47,32,97,108,108,92,110,32,32,32,32,105,102,32,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,118,109,46,95,101,118,101,110,116,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,109,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,97,114,114,97,121,32,111,102,32,101,118,101,110,116,115,92,110,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,118,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,36,49,32,61,32,48,44,32,108,32,61,32,101,118,101,110,116,46,108,101,110,103,116,104,59,32,105,36,49,32,60,32,108,59,32,105,36,49,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,118,109,46,36,111,102,102,40,101,118,101,110,116,91,105,36,49,93,44,32,102,110,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,109,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,115,112,101,99,105,102,105,99,32,101,118,101,110,116,92,110,32,32,32,32,118,97,114,32,99,98,115,32,61,32,118,109,46,95,101,118,101,110,116,115,91,101,118,101,110,116,93,59,92,110,32,32,32,32,105,102,32,40,33,99,98,115,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,109,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,33,102,110,41,32,123,92,110,32,32,32,32,32,32,118,109,46,95,101,118,101,110,116,115,91,101,118,101,110,116,93,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,109,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,115,112,101,99,105,102,105,99,32,104,97,110,100,108,101,114,92,110,32,32,32,32,118,97,114,32,99,98,59,92,110,32,32,32,32,118,97,114,32,105,32,61,32,99,98,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,105,45,45,41,32,123,92,110,32,32,32,32,32,32,99,98,32,61,32,99,98,115,91,105,93,59,92,110,32,32,32,32,32,32,105,102,32,40,99,98,32,61,61,61,32,102,110,32,124,124,32,99,98,46,102,110,32,61,61,61,32,102,110,41,32,123,92,110,32,32,32,32,32,32,32,32,99,98,115,46,115,112,108,105,99,101,40,105,44,32,49,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,118,109,92,110,32,32,125,59,92,110,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,101,109,105,116,32,61,32,102,117,110,99,116,105,111,110,32,40,101,118,101,110,116,41,32,123,92,110,32,32,32,32,118,97,114,32,118,109,32,61,32,116,104,105,115,59,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,108,111,119,101,114,67,97,115,101,69,118,101,110,116,32,61,32,101,118,101,110,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,32,32,32,32,105,102,32,40,108,111,119,101,114,67,97,115,101,69,118,101,110,116,32,33,61,61,32,101,118,101,110,116,32,38,38,32,118,109,46,95,101,118,101,110,116,115,91,108,111,119,101,114,67,97,115,101,69,118,101,110,116,93,41,32,123,92,110,32,32,32,32,32,32,32,32,116,105,112,40,92,110,32,32,32,32,32,32,32,32,32,32,92,34,69,118,101,110,116,32,92,92,92,34,92,34,32,43,32,108,111,119,101,114,67,97,115,101,69,118,101,110,116,32,43,32,92,34,92,92,92,34,32,105,115,32,101,109,105,116,116,101,100,32,105,110,32,99,111,109,112,111,110,101,110,116,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,40,102,111,114,109,97,116,67,111,109,112,111,110,101,110,116,78,97,109,101,40,118,109,41,41,32,43,32,92,34,32,98,117,116,32,116,104,101,32,104,97,110,100,108,101,114,32,105,115,32,114,101,103,105,115,116,101,114,101,100,32,102,111,114,32,92,92,92,34,92,34,32,43,32,101,118,101,110,116,32,43,32,92,34,92,92,92,34,46,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,92,34,78,111,116,101,32,116,104,97,116,32,72,84,77,76,32,97,116,116,114,105,98,117,116,101,115,32,97,114,101,32,99,97,115,101,45,105,110,115,101,110,115,105,116,105,118,101,32,97,110,100,32,121,111,117,32,99,97,110,110,111,116,32,117,115,101,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,92,34,118,45,111,110,32,116,111,32,108,105,115,116,101,110,32,116,111,32,99,97,109,101,108,67,97,115,101,32,101,118,101,110,116,115,32,119,104,101,110,32,117,115,105,110,103,32,105,110,45,68,79,77,32,116,101,109,112,108,97,116,101,115,46,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,92,34,89,111,117,32,115,104,111,117,108,100,32,112,114,111,98,97,98,108,121,32,117,115,101,32,92,92,92,34,92,34,32,43,32,40,104,121,112,104,101,110,97,116,101,40,101,118,101,110,116,41,41,32,43,32,92,34,92,92,92,34,32,105,110,115,116,101,97,100,32,111,102,32,92,92,92,34,92,34,32,43,32,101,118,101,110,116,32,43,32,92,34,92,92,92,34,46,92,34,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,118,97,114,32,99,98,115,32,61,32,118,109,46,95,101,118,101,110,116,115,91,101,118,101,110,116,93,59,92,110,32,32,32,32,105,102,32,40,99,98,115,41,32,123,92,110,32,32,32,32,32,32,99,98,115,32,61,32,99,98,115,46,108,101,110,103,116,104,32,62,32,49,32,63,32,116,111,65,114,114,97,121,40,99,98,115,41,32,58,32,99,98,115,59,92,110,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,116,111,65,114,114,97,121,40,97,114,103,117,109,101,110,116,115,44,32,49,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,110,102,111,32,61,32,92,34,101,118,101,110,116,32,104,97,110,100,108,101,114,32,102,111,114,32,92,92,92,34,92,34,32,43,32,101,118,101,110,116,32,43,32,92,34,92,92,92,34,92,34,59,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,32,61,32,99,98,115,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,118,111,107,101,87,105,116,104,69,114,114,111,114,72,97,110,100,108,105,110,103,40,99,98,115,91,105,93,44,32,118,109,44,32,97,114,103,115,44,32,118,109,44,32,105,110,102,111,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,118,109,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,97,99,116,105,118,101,73,110,115,116,97,110,99,101,32,61,32,110,117,108,108,59,92,110,118,97,114,32,105,115,85,112,100,97,116,105,110,103,67,104,105,108,100,67,111,109,112,111,110,101,110,116,32,61,32,102,97,108,115,101,59,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,65,99,116,105,118,101,73,110,115,116,97,110,99,101,40,118,109,41,32,123,92,110,32,32,118,97,114,32,112,114,101,118,65,99,116,105,118,101,73,110,115,116,97,110,99,101,32,61,32,97,99,116,105,118,101,73,110,115,116,97,110,99,101,59,92,110,32,32,97,99,116,105,118,101,73,110,115,116,97,110,99,101,32,61,32,118,109,59,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,97,99,116,105,118,101,73,110,115,116,97,110,99,101,32,61,32,112,114,101,118,65,99,116,105,118,101,73,110,115,116,97,110,99,101,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,76,105,102,101,99,121,99,108,101,32,40,118,109,41,32,123,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,118,109,46,36,111,112,116,105,111,110,115,59,92,110,92,110,32,32,47,47,32,108,111,99,97,116,101,32,102,105,114,115,116,32,110,111,110,45,97,98,115,116,114,97,99,116,32,112,97,114,101,110,116,92,110,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,111,112,116,105,111,110,115,46,112,97,114,101,110,116,59,92,110,32,32,105,102,32,40,112,97,114,101,110,116,32,38,38,32,33,111,112,116,105,111,110,115,46,97,98,115,116,114,97,99,116,41,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,112,97,114,101,110,116,46,36,111,112,116,105,111,110,115,46,97,98,115,116,114,97,99,116,32,38,38,32,112,97,114,101,110,116,46,36,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,32,32,112,97,114,101,110,116,32,61,32,112,97,114,101,110,116,46,36,112,97,114,101,110,116,59,92,110,32,32,32,32,125,92,110,32,32,32,32,112,97,114,101,110,116,46,36,99,104,105,108,100,114,101,110,46,112,117,115,104,40,118,109,41,59,92,110,32,32,125,92,110,92,110,32,32,118,109,46,36,112,97,114,101,110,116,32,61,32,112,97,114,101,110,116,59,92,110,32,32,118,109,46,36,114,111,111,116,32,61,32,112,97,114,101,110,116,32,63,32,112,97,114,101,110,116,46,36,114,111,111,116,32,58,32,118,109,59,92,110,92,110,32,32,118,109,46,36,99,104,105,108,100,114,101,110,32,61,32,91,93,59,92,110,32,32,118,109,46,36,114,101,102,115,32,61,32,123,125,59,92,110,92,110,32,32,118,109,46,95,119,97,116,99,104,101,114,32,61,32,110,117,108,108,59,92,110,32,32,118,109,46,95,105,110,97,99,116,105,118,101,32,61,32,110,117,108,108,59,92,110,32,32,118,109,46,95,100,105,114,101,99,116,73,110,97,99,116,105,118,101,32,61,32,102,97,108,115,101,59,92,110,32,32,118,109,46,95,105,115,77,111,117,110,116,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,118,109,46,95,105,115,68,101,115,116,114,111,121,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,118,109,46,95,105,115,66,101,105,110,103,68,101,115,116,114,111,121,101,100,32,61,32,102,97,108,115,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,105,102,101,99,121,99,108,101,77,105,120,105,110,32,40,86,117,101,41,32,123,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,95,117,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,40,118,110,111,100,101,44,32,104,121,100,114,97,116,105,110,103,41,32,123,92,110,32,32,32,32,118,97,114,32,118,109,32,61,32,116,104,105,115,59,92,110,32,32,32,32,118,97,114,32,112,114,101,118,69,108,32,61,32,118,109,46,36,101,108,59,92,110,32,32,32,32,118,97,114,32,112,114,101,118,86,110,111,100,101,32,61,32,118,109,46,95,118,110,111,100,101,59,92,110,32,32,32,32,118,97,114,32,114,101,115,116,111,114,101,65,99,116,105,118,101,73,110,115,116,97,110,99,101,32,61,32,115,101,116,65,99,116,105,118,101,73,110,115,116,97,110,99,101,40,118,109,41,59,92,110,32,32,32,32,118,109,46,95,118,110,111,100,101,32,61,32,118,110,111,100,101,59,92,110,32,32,32,32,47,47,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,95,95,112,97,116,99,104,95,95,32,105,115,32,105,110,106,101,99,116,101,100,32,105,110,32,101,110,116,114,121,32,112,111,105,110,116,115,92,110,32,32,32,32,47,47,32,98,97,115,101,100,32,111,110,32,116,104,101,32,114,101,110,100,101,114,105,110,103,32,98,97,99,107,101,110,100,32,117,115,101,100,46,92,110,32,32,32,32,105,102,32,40,33,112,114,101,118,86,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,105,110,105,116,105,97,108,32,114,101,110,100,101,114,92,110,32,32,32,32,32,32,118,109,46,36,101,108,32,61,32,118,109,46,95,95,112,97,116,99,104,95,95,40,118,109,46,36,101,108,44,32,118,110,111,100,101,44,32,104,121,100,114,97,116,105,110,103,44,32,102,97,108,115,101,32,47,42,32,114,101,109,111,118,101,79,110,108,121,32,42,47,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,117,112,100,97,116,101,115,92,110,32,32,32,32,32,32,118,109,46,36,101,108,32,61,32,118,109,46,95,95,112,97,116,99,104,95,95,40,112,114,101,118,86,110,111,100,101,44,32,118,110,111,100,101,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,115,116,111,114,101,65,99,116,105,118,101,73,110,115,116,97,110,99,101,40,41,59,92,110,32,32,32,32,47,47,32,117,112,100,97,116,101,32,95,95,118,117,101,95,95,32,114,101,102,101,114,101,110,99,101,92,110,32,32,32,32,105,102,32,40,112,114,101,118,69,108,41,32,123,92,110,32,32,32,32,32,32,112,114,101,118,69,108,46,95,95,118,117,101,95,95,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,118,109,46,36,101,108,41,32,123,92,110,32,32,32,32,32,32,118,109,46,36,101,108,46,95,95,118,117,101,95,95,32,61,32,118,109,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,105,102,32,112,97,114,101,110,116,32,105,115,32,97,110,32,72,79,67,44,32,117,112,100,97,116,101,32,105,116,115,32,36,101,108,32,97,115,32,119,101,108,108,92,110,32,32,32,32,105,102,32,40,118,109,46,36,118,110,111,100,101,32,38,38,32,118,109,46,36,112,97,114,101,110,116,32,38,38,32,118,109,46,36,118,110,111,100,101,32,61,61,61,32,118,109,46,36,112,97,114,101,110,116,46,95,118,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,118,109,46,36,112,97,114,101,110,116,46,36,101,108,32,61,32,118,109,46,36,101,108,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,117,112,100,97,116,101,100,32,104,111,111,107,32,105,115,32,99,97,108,108,101,100,32,98,121,32,116,104,101,32,115,99,104,101,100,117,108,101,114,32,116,111,32,101,110,115,117,114,101,32,116,104,97,116,32,99,104,105,108,100,114,101,110,32,97,114,101,92,110,32,32,32,32,47,47,32,117,112,100,97,116,101,100,32,105,110,32,97,32,112,97,114,101,110,116,39,115,32,117,112,100,97,116,101,100,32,104,111,111,107,46,92,110,32,32,125,59,92,110,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,102,111,114,99,101,85,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,109,32,61,32,116,104,105,115,59,92,110,32,32,32,32,105,102,32,40,118,109,46,95,119,97,116,99,104,101,114,41,32,123,92,110,32,32,32,32,32,32,118,109,46,95,119,97,116,99,104,101,114,46,117,112,100,97,116,101,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,100,101,115,116,114,111,121,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,118,109,32,61,32,116,104,105,115,59,92,110,32,32,32,32,105,102,32,40,118,109,46,95,105,115,66,101,105,110,103,68,101,115,116,114,111,121,101,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,32,32,32,32,99,97,108,108,72,111,111,107,40,118,109,44,32,39,98,101,102,111,114,101,68,101,115,116,114,111,121,39,41,59,92,110,32,32,32,32,118,109,46,95,105,115,66,101,105,110,103,68,101,115,116,114,111,121,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,47,47,32,114,101,109,111,118,101,32,115,101,108,102,32,102,114,111,109,32,112,97,114,101,110,116,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,118,109,46,36,112,97,114,101,110,116,59,92,110,32,32,32,32,105,102,32,40,112,97,114,101,110,116,32,38,38,32,33,112,97,114,101,110,116,46,95,105,115,66,101,105,110,103,68,101,115,116,114,111,121,101,100,32,38,38,32,33,118,109,46,36,111,112,116,105,111,110,115,46,97,98,115,116,114,97,99,116,41,32,123,92,110,32,32,32,32,32,32,114,101,109,111,118,101,40,112,97,114,101,110,116,46,36,99,104,105,108,100,114,101,110,44,32,118,109,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,116,101,97,114,100,111,119,110,32,119,97,116,99,104,101,114,115,92,110,32,32,32,32,105,102,32,40,118,109,46,95,119,97,116,99,104,101,114,41,32,123,92,110,32,32,32,32,32,32,118,109,46,95,119,97,116,99,104,101,114,46,116,101,97,114,100,111,119,110,40,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,118,97,114,32,105,32,61,32,118,109,46,95,119,97,116,99,104,101,114,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,105,45,45,41,32,123,92,110,32,32,32,32,32,32,118,109,46,95,119,97,116,99,104,101,114,115,91,105,93,46,116,101,97,114,100,111,119,110,40,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,114,101,109,111,118,101,32,114,101,102,101,114,101,110,99,101,32,102,114,111,109,32,100,97,116,97,32,111,98,92,110,32,32,32,32,47,47,32,102,114,111,122,101,110,32,111,98,106,101,99,116,32,109,97,121,32,110,111,116,32,104,97,118,101,32,111,98,115,101,114,118,101,114,46,92,110,32,32,32,32,105,102,32,40,118,109,46,95,100,97,116,97,46,95,95,111,98,95,95,41,32,123,92,110,32,32,32,32,32,32,118,109,46,95,100,97,116,97,46,95,95,111,98,95,95,46,118,109,67,111,117,110,116,45,45,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,99,97,108,108,32,116,104,101,32,108,97,115,116,32,104,111,111,107,46,46,46,92,110,32,32,32,32,118,109,46,95,105,115,68,101,115,116,114,111,121,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,47,47,32,105,110,118,111,107,101,32,100,101,115,116,114,111,121,32,104,111,111,107,115,32,111,110,32,99,117,114,114,101,110,116,32,114,101,110,100,101,114,101,100,32,116,114,101,101,92,110,32,32,32,32,118,109,46,95,95,112,97,116,99,104,95,95,40,118,109,46,95,118,110,111,100,101,44,32,110,117,108,108,41,59,92,110,32,32,32,32,47,47,32,102,105,114,101,32,100,101,115,116,114,111,121,101,100,32,104,111,111,107,92,110,32,32,32,32,99,97,108,108,72,111,111,107,40,118,109,44,32,39,100,101,115,116,114,111,121,101,100,39,41,59,92,110,32,32,32,32,47,47,32,116,117,114,110,32,111,102,102,32,97,108,108,32,105,110,115,116,97,110,99,101,32,108,105,115,116,101,110,101,114,115,46,92,110,32,32,32,32,118,109,46,36,111,102,102,40,41,59,92,110,32,32,32,32,47,47,32,114,101,109,111,118,101,32,95,95,118,117,101,95,95,32,114,101,102,101,114,101,110,99,101,92,110,32,32,32,32,105,102,32,40,118,109,46,36,101,108,41,32,123,92,110,32,32,32,32,32,32,118,109,46,36,101,108,46,95,95,118,117,101,95,95,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,114,101,108,101,97,115,101,32,99,105,114,99,117,108,97,114,32,114,101,102,101,114,101,110,99,101,32,40,35,54,55,53,57,41,92,110,32,32,32,32,105,102,32,40,118,109,46,36,118,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,118,109,46,36,118,110,111,100,101,46,112,97,114,101,110,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,111,117,110,116,67,111,109,112,111,110,101,110,116,32,40,92,110,32,32,118,109,44,92,110,32,32,101,108,44,92,110,32,32,104,121,100,114,97,116,105,110,103,92,110,41,32,123,92,110,32,32,118,109,46,36,101,108,32,61,32,101,108,59,92,110,32,32,105,102,32,40,33,118,109,46,36,111,112,116,105,111,110,115,46,114,101,110,100,101,114,41,32,123,92,110,32,32,32,32,118,109,46,36,111,112,116,105,111,110,115,46,114,101,110,100,101,114,32,61,32,99,114,101,97,116,101,69,109,112,116,121,86,78,111,100,101,59,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,40,118,109,46,36,111,112,116,105,111,110,115,46,116,101,109,112,108,97,116,101,32,38,38,32,118,109,46,36,111,112,116,105,111,110,115,46,116,101,109,112,108,97,116,101,46,99,104,97,114,65,116,40,48,41,32,33,61,61,32,39,35,39,41,32,124,124,92,110,32,32,32,32,32,32,32,32,118,109,46,36,111,112,116,105,111,110,115,46,101,108,32,124,124,32,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,39,89,111,117,32,97,114,101,32,117,115,105,110,103,32,116,104,101,32,114,117,110,116,105,109,101,45,111,110,108,121,32,98,117,105,108,100,32,111,102,32,86,117,101,32,119,104,101,114,101,32,116,104,101,32,116,101,109,112,108,97,116,101,32,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,39,99,111,109,112,105,108,101,114,32,105,115,32,110,111,116,32,97,118,97,105,108,97,98,108,101,46,32,69,105,116,104,101,114,32,112,114,101,45,99,111,109,112,105,108,101,32,116,104,101,32,116,101,109,112,108,97,116,101,115,32,105,110,116,111,32,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,39,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,115,44,32,111,114,32,117,115,101,32,116,104,101,32,99,111,109,112,105,108,101,114,45,105,110,99,108,117,100,101,100,32,98,117,105,108,100,46,39,44,92,110,32,32,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,39,70,97,105,108,101,100,32,116,111,32,109,111,117,110,116,32,99,111,109,112,111,110,101,110,116,58,32,116,101,109,112,108,97,116,101,32,111,114,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,32,110,111,116,32,100,101,102,105,110,101,100,46,39,44,92,110,32,32,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,99,97,108,108,72,111,111,107,40,118,109,44,32,39,98,101,102,111,114,101,77,111,117,110,116,39,41,59,92,110,92,110,32,32,118,97,114,32,117,112,100,97,116,101,67,111,109,112,111,110,101,110,116,59,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,99,111,110,102,105,103,46,112,101,114,102,111,114,109,97,110,99,101,32,38,38,32,109,97,114,107,41,32,123,92,110,32,32,32,32,117,112,100,97,116,101,67,111,109,112,111,110,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,118,109,46,95,110,97,109,101,59,92,110,32,32,32,32,32,32,118,97,114,32,105,100,32,61,32,118,109,46,95,117,105,100,59,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,114,116,84,97,103,32,61,32,92,34,118,117,101,45,112,101,114,102,45,115,116,97,114,116,58,92,34,32,43,32,105,100,59,92,110,32,32,32,32,32,32,118,97,114,32,101,110,100,84,97,103,32,61,32,92,34,118,117,101,45,112,101,114,102,45,101,110,100,58,92,34,32,43,32,105,100,59,92,110,92,110,32,32,32,32,32,32,109,97,114,107,40,115,116,97,114,116,84,97,103,41,59,92,110,32,32,32,32,32,32,118,97,114,32,118,110,111,100,101,32,61,32,118,109,46,95,114,101,110,100,101,114,40,41,59,92,110,32,32,32,32,32,32,109,97,114,107,40,101,110,100,84,97,103,41,59,92,110,32,32,32,32,32,32,109,101,97,115,117,114,101,40,40,92,34,118,117,101,32,92,34,32,43,32,110,97,109,101,32,43,32,92,34,32,114,101,110,100,101,114,92,34,41,44,32,115,116,97,114,116,84,97,103,44,32,101,110,100,84,97,103,41,59,92,110,92,110,32,32,32,32,32,32,109,97,114,107,40,115,116,97,114,116,84,97,103,41,59,92,110,32,32,32,32,32,32,118,109,46,95,117,112,100,97,116,101,40,118,110,111,100,101,44,32,104,121,100,114,97,116,105,110,103,41,59,92,110,32,32,32,32,32,32,109,97,114,107,40,101,110,100,84,97,103,41,59,92,110,32,32,32,32,32,32,109,101,97,115,117,114,101,40,40,92,34,118,117,101,32,92,34,32,43,32,110,97,109,101,32,43,32,92,34,32,112,97,116,99,104,92,34,41,44,32,115,116,97,114,116,84,97,103,44,32,101,110,100,84,97,103,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,117,112,100,97,116,101,67,111,109,112,111,110,101,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,109,46,95,117,112,100,97,116,101,40,118,109,46,95,114,101,110,100,101,114,40,41,44,32,104,121,100,114,97,116,105,110,103,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,119,101,32,115,101,116,32,116,104,105,115,32,116,111,32,118,109,46,95,119,97,116,99,104,101,114,32,105,110,115,105,100,101,32,116,104,101,32,119,97,116,99,104,101,114,39,115,32,99,111,110,115,116,114,117,99,116,111,114,92,110,32,32,47,47,32,115,105,110,99,101,32,116,104,101,32,119,97,116,99,104,101,114,39,115,32,105,110,105,116,105,97,108,32,112,97,116,99,104,32,109,97,121,32,99,97,108,108,32,36,102,111,114,99,101,85,112,100,97,116,101,32,40,101,46,103,46,32,105,110,115,105,100,101,32,99,104,105,108,100,92,110,32,32,47,47,32,99,111,109,112,111,110,101,110,116,39,115,32,109,111,117,110,116,101,100,32,104,111,111,107,41,44,32,119,104,105,99,104,32,114,101,108,105,101,115,32,111,110,32,118,109,46,95,119,97,116,99,104,101,114,32,98,101,105,110,103,32,97,108,114,101,97,100,121,32,100,101,102,105,110,101,100,92,110,32,32,110,101,119,32,87,97,116,99,104,101,114,40,118,109,44,32,117,112,100,97,116,101,67,111,109,112,111,110,101,110,116,44,32,110,111,111,112,44,32,123,92,110,32,32,32,32,98,101,102,111,114,101,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,109,46,95,105,115,77,111,117,110,116,101,100,32,38,38,32,33,118,109,46,95,105,115,68,101,115,116,114,111,121,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,108,108,72,111,111,107,40,118,109,44,32,39,98,101,102,111,114,101,85,112,100,97,116,101,39,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,32,116,114,117,101,32,47,42,32,105,115,82,101,110,100,101,114,87,97,116,99,104,101,114,32,42,47,41,59,92,110,32,32,104,121,100,114,97,116,105,110,103,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,47,47,32,109,97,110,117,97,108,108,121,32,109,111,117,110,116,101,100,32,105,110,115,116,97,110,99,101,44,32,99,97,108,108,32,109,111,117,110,116,101,100,32,111,110,32,115,101,108,102,92,110,32,32,47,47,32,109,111,117,110,116,101,100,32,105,115,32,99,97,108,108,101,100,32,102,111,114,32,114,101,110,100,101,114,45,99,114,101,97,116,101,100,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,115,32,105,110,32,105,116,115,32,105,110,115,101,114,116,101,100,32,104,111,111,107,92,110,32,32,105,102,32,40,118,109,46,36,118,110,111,100,101,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,118,109,46,95,105,115,77,111,117,110,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,99,97,108,108,72,111,111,107,40,118,109,44,32,39,109,111,117,110,116,101,100,39,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,118,109,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,67,104,105,108,100,67,111,109,112,111,110,101,110,116,32,40,92,110,32,32,118,109,44,92,110,32,32,112,114,111,112,115,68,97,116,97,44,92,110,32,32,108,105,115,116,101,110,101,114,115,44,92,110,32,32,112,97,114,101,110,116,86,110,111,100,101,44,92,110,32,32,114,101,110,100,101,114,67,104,105,108,100,114,101,110,92,110,41,32,123,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,105,115,85,112,100,97,116,105,110,103,67,104,105,108,100,67,111,109,112,111,110,101,110,116,32,61,32,116,114,117,101,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,100,101,116,101,114,109,105,110,101,32,119,104,101,116,104,101,114,32,99,111,109,112,111,110,101,110,116,32,104,97,115,32,115,108,111,116,32,99,104,105,108,100,114,101,110,92,110,32,32,47,47,32,119,101,32,110,101,101,100,32,116,111,32,100,111,32,116,104,105,115,32,98,101,102,111,114,101,32,111,118,101,114,119,114,105,116,105,110,103,32,36,111,112,116,105,111,110,115,46,95,114,101,110,100,101,114,67,104,105,108,100,114,101,110,46,92,110,92,110,32,32,47,47,32,99,104,101,99,107,32,105,102,32,116,104,101,114,101,32,97,114,101,32,100,121,110,97,109,105,99,32,115,99,111,112,101,100,83,108,111,116,115,32,40,104,97,110,100,45,119,114,105,116,116,101,110,32,111,114,32,99,111,109,112,105,108,101,100,32,98,117,116,32,119,105,116,104,92,110,32,32,47,47,32,100,121,110,97,109,105,99,32,115,108,111,116,32,110,97,109,101,115,41,46,32,83,116,97,116,105,99,32,115,99,111,112,101,100,32,115,108,111,116,115,32,99,111,109,112,105,108,101,100,32,102,114,111,109,32,116,101,109,112,108,97,116,101,32,104,97,115,32,116,104,101,92,110,32,32,47,47,32,92,34,36,115,116,97,98,108,101,92,34,32,109,97,114,107,101,114,46,92,110,32,32,118,97,114,32,110,101,119,83,99,111,112,101,100,83,108,111,116,115,32,61,32,112,97,114,101,110,116,86,110,111,100,101,46,100,97,116,97,46,115,99,111,112,101,100,83,108,111,116,115,59,92,110,32,32,118,97,114,32,111,108,100,83,99,111,112,101,100,83,108,111,116,115,32,61,32,118,109,46,36,115,99,111,112,101,100,83,108,111,116,115,59,92,110,32,32,118,97,114,32,104,97,115,68,121,110,97,109,105,99,83,99,111,112,101,100,83,108,111,116,32,61,32,33,33,40,92,110,32,32,32,32,40,110,101,119,83,99,111,112,101,100,83,108,111,116,115,32,38,38,32,33,110,101,119,83,99,111,112,101,100,83,108,111,116,115,46,36,115,116,97,98,108,101,41,32,124,124,92,110,32,32,32,32,40,111,108,100,83,99,111,112,101,100,83,108,111,116,115,32,33,61,61,32,101,109,112,116,121,79,98,106,101,99,116,32,38,38,32,33,111,108,100,83,99,111,112,101,100,83,108,111,116,115,46,36,115,116,97,98,108,101,41,32,124,124,92,110,32,32,32,32,40,110,101,119,83,99,111,112,101,100,83,108,111,116,115,32,38,38,32,118,109,46,36,115,99,111,112,101,100,83,108,111,116,115,46,36,107,101,121,32,33,61,61,32,110,101,119,83,99,111,112,101,100,83,108,111,116,115,46,36,107,101,121,41,92,110,32,32,41,59,92,110,92,110,32,32,47,47,32,65,110,121,32,115,116,97,116,105,99,32,115,108,111,116,32,99,104,105,108,100,114,101,110,32,102,114,111,109,32,116,104,101,32,112,97,114,101,110,116,32,109,97,121,32,104,97,118,101,32,99,104,97,110,103,101,100,32,100,117,114,105,110,103,32,112,97,114,101,110,116,39,115,92,110,32,32,47,47,32,117,112,100,97,116,101,46,32,68,121,110,97,109,105,99,32,115,99,111,112,101,100,32,115,108,111,116,115,32,109,97,121,32,97,108,115,111,32,104,97,118,101,32,99,104,97,110,103,101,100,46,32,73,110,32,115,117,99,104,32,99,97,115,101,115,44,32,97,32,102,111,114,99,101,100,92,110,32,32,47,47,32,117,112,100,97,116,101,32,105,115,32,110,101,99,101,115,115,97,114,121,32,116,111,32,101,110,115,117,114,101,32,99,111,114,114,101,99,116,110,101,115,115,46,92,110,32,32,118,97,114,32,110,101,101,100,115,70,111,114,99,101,85,112,100,97,116,101,32,61,32,33,33,40,92,110,32,32,32,32,114,101,110,100,101,114,67,104,105,108,100,114,101,110,32,124,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,104,97,115,32,110,101,119,32,115,116,97,116,105,99,32,115,108,111,116,115,92,110,32,32,32,32,118,109,46,36,111,112,116,105,111,110,115,46,95,114,101,110,100,101,114,67,104,105,108,100,114,101,110,32,124,124,32,32,47,47,32,104,97,115,32,111,108,100,32,115,116,97,116,105,99,32,115,108,111,116,115,92,110,32,32,32,32,104,97,115,68,121,110,97,109,105,99,83,99,111,112,101,100,83,108,111,116,92,110,32,32,41,59,92,110,92,110,32,32,118,109,46,36,111,112,116,105,111,110,115,46,95,112,97,114,101,110,116,86,110,111,100,101,32,61,32,112,97,114,101,110,116,86,110,111,100,101,59,92,110,32,32,118,109,46,36,118,110,111,100,101,32,61,32,112,97,114,101,110,116,86,110,111,100,101,59,32,47,47,32,117,112,100,97,116,101,32,118,109,39,115,32,112,108,97,99,101,104,111,108,100,101,114,32,110,111,100,101,32,119,105,116,104,111,117,116,32,114,101,45,114,101,110,100,101,114,92,110,92,110,32,32,105,102,32,40,118,109,46,95,118,110,111,100,101,41,32,123,32,47,47,32,117,112,100,97,116,101,32,99,104,105,108,100,32,116,114,101,101,39,115,32,112,97,114,101,110,116,92,110,32,32,32,32,118,109,46,95,118,110,111,100,101,46,112,97,114,101,110,116,32,61,32,112,97,114,101,110,116,86,110,111,100,101,59,92,110,32,32,125,92,110,32,32,118,109,46,36,111,112,116,105,111,110,115,46,95,114,101,110,100,101,114,67,104,105,108,100,114,101,110,32,61,32,114,101,110,100,101,114,67,104,105,108,100,114,101,110,59,92,110,92,110,32,32,47,47,32,117,112,100,97,116,101,32,36,97,116,116,114,115,32,97,110,100,32,36,108,105,115,116,101,110,101,114,115,32,104,97,115,104,92,110,32,32,47,47,32,116,104,101,115,101,32,97,114,101,32,97,108,115,111,32,114,101,97,99,116,105,118,101,32,115,111,32,116,104,101,121,32,109,97,121,32,116,114,105,103,103,101,114,32,99,104,105,108,100,32,117,112,100,97,116,101,32,105,102,32,116,104,101,32,99,104,105,108,100,92,110,32,32,47,47,32,117,115,101,100,32,116,104,101,109,32,100,117,114,105,110,103,32,114,101,110,100,101,114,92,110,32,32,118,109,46,36,97,116,116,114,115,32,61,32,112,97,114,101,110,116,86,110,111,100,101,46,100,97,116,97,46,97,116,116,114,115,32,124,124,32,101,109,112,116,121,79,98,106,101,99,116,59,92,110,32,32,118,109,46,36,108,105,115,116,101,110,101,114,115,32,61,32,108,105,115,116,101,110,101,114,115,32,124,124,32,101,109,112,116,121,79,98,106,101,99,116,59,92,110,92,110,32,32,47,47,32,117,112,100,97,116,101,32,112,114,111,112,115,92,110,32,32,105,102,32,40,112,114,111,112,115,68,97,116,97,32,38,38,32,118,109,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,41,32,123,92,110,32,32,32,32,116,111,103,103,108,101,79,98,115,101,114,118,105,110,103,40,102,97,108,115,101,41,59,92,110,32,32,32,32,118,97,114,32,112,114,111,112,115,32,61,32,118,109,46,95,112,114,111,112,115,59,92,110,32,32,32,32,118,97,114,32,112,114,111,112,75,101,121,115,32,61,32,118,109,46,36,111,112,116,105,111,110,115,46,95,112,114,111,112,75,101,121,115,32,124,124,32,91,93,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,112,114,111,112,75,101,121,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,112,114,111,112,75,101,121,115,91,105,93,59,92,110,32,32,32,32,32,32,118,97,114,32,112,114,111,112,79,112,116,105,111,110,115,32,61,32,118,109,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,59,32,47,47,32,119,116,102,32,102,108,111,119,63,92,110,32,32,32,32,32,32,112,114,111,112,115,91,107,101,121,93,32,61,32,118,97,108,105,100,97,116,101,80,114,111,112,40,107,101,121,44,32,112,114,111,112,79,112,116,105,111,110,115,44,32,112,114,111,112,115,68,97,116,97,44,32,118,109,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,111,103,103,108,101,79,98,115,101,114,118,105,110,103,40,116,114,117,101,41,59,92,110,32,32,32,32,47,47,32,107,101,101,112,32,97,32,99,111,112,121,32,111,102,32,114,97,119,32,112,114,111,112,115,68,97,116,97,92,110,32,32,32,32,118,109,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,68,97,116,97,32,61,32,112,114,111,112,115,68,97,116,97,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,117,112,100,97,116,101,32,108,105,115,116,101,110,101,114,115,92,110,32,32,108,105,115,116,101,110,101,114,115,32,61,32,108,105,115,116,101,110,101,114,115,32,124,124,32,101,109,112,116,121,79,98,106,101,99,116,59,92,110,32,32,118,97,114,32,111,108,100,76,105,115,116,101,110,101,114,115,32,61,32,118,109,46,36,111,112,116,105,111,110,115,46,95,112,97,114,101,110,116,76,105,115,116,101,110,101,114,115,59,92,110,32,32,118,109,46,36,111,112,116,105,111,110,115,46,95,112,97,114,101,110,116,76,105,115,116,101,110,101,114,115,32,61,32,108,105,115,116,101,110,101,114,115,59,92,110,32,32,117,112,100,97,116,101,67,111,109,112,111,110,101,110,116,76,105,115,116,101,110,101,114,115,40,118,109,44,32,108,105,115,116,101,110,101,114,115,44,32,111,108,100,76,105,115,116,101,110,101,114,115,41,59,92,110,92,110,32,32,47,47,32,114,101,115,111,108,118,101,32,115,108,111,116,115,32,43,32,102,111,114,99,101,32,117,112,100,97,116,101,32,105,102,32,104,97,115,32,99,104,105,108,100,114,101,110,92,110,32,32,105,102,32,40,110,101,101,100,115,70,111,114,99,101,85,112,100,97,116,101,41,32,123,92,110,32,32,32,32,118,109,46,36,115,108,111,116,115,32,61,32,114,101,115,111,108,118,101,83,108,111,116,115,40,114,101,110,100,101,114,67,104,105,108,100,114,101,110,44,32,112,97,114,101,110,116,86,110,111,100,101,46,99,111,110,116,101,120,116,41,59,92,110,32,32,32,32,118,109,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,105,115,85,112,100,97,116,105,110,103,67,104,105,108,100,67,111,109,112,111,110,101,110,116,32,61,32,102,97,108,115,101,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,73,110,73,110,97,99,116,105,118,101,84,114,101,101,32,40,118,109,41,32,123,92,110,32,32,119,104,105,108,101,32,40,118,109,32,38,38,32,40,118,109,32,61,32,118,109,46,36,112,97,114,101,110,116,41,41,32,123,92,110,32,32,32,32,105,102,32,40,118,109,46,95,105,110,97,99,116,105,118,101,41,32,123,32,114,101,116,117,114,110,32,116,114,117,101,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,99,116,105,118,97,116,101,67,104,105,108,100,67,111,109,112,111,110,101,110,116,32,40,118,109,44,32,100,105,114,101,99,116,41,32,123,92,110,32,32,105,102,32,40,100,105,114,101,99,116,41,32,123,92,110,32,32,32,32,118,109,46,95,100,105,114,101,99,116,73,110,97,99,116,105,118,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,105,102,32,40,105,115,73,110,73,110,97,99,116,105,118,101,84,114,101,101,40,118,109,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,118,109,46,95,100,105,114,101,99,116,73,110,97,99,116,105,118,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,105,102,32,40,118,109,46,95,105,110,97,99,116,105,118,101,32,124,124,32,118,109,46,95,105,110,97,99,116,105,118,101,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,118,109,46,95,105,110,97,99,116,105,118,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,118,109,46,36,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,97,99,116,105,118,97,116,101,67,104,105,108,100,67,111,109,112,111,110,101,110,116,40,118,109,46,36,99,104,105,108,100,114,101,110,91,105,93,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,99,97,108,108,72,111,111,107,40,118,109,44,32,39,97,99,116,105,118,97,116,101,100,39,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,97,99,116,105,118,97,116,101,67,104,105,108,100,67,111,109,112,111,110,101,110,116,32,40,118,109,44,32,100,105,114,101,99,116,41,32,123,92,110,32,32,105,102,32,40,100,105,114,101,99,116,41,32,123,92,110,32,32,32,32,118,109,46,95,100,105,114,101,99,116,73,110,97,99,116,105,118,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,105,102,32,40,105,115,73,110,73,110,97,99,116,105,118,101,84,114,101,101,40,118,109,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,105,102,32,40,33,118,109,46,95,105,110,97,99,116,105,118,101,41,32,123,92,110,32,32,32,32,118,109,46,95,105,110,97,99,116,105,118,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,118,109,46,36,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,100,101,97,99,116,105,118,97,116,101,67,104,105,108,100,67,111,109,112,111,110,101,110,116,40,118,109,46,36,99,104,105,108,100,114,101,110,91,105,93,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,99,97,108,108,72,111,111,107,40,118,109,44,32,39,100,101,97,99,116,105,118,97,116,101,100,39,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,97,108,108,72,111,111,107,32,40,118,109,44,32,104,111,111,107,41,32,123,92,110,32,32,47,47,32,35,55,53,55,51,32,100,105,115,97,98,108,101,32,100,101,112,32,99,111,108,108,101,99,116,105,111,110,32,119,104,101,110,32,105,110,118,111,107,105,110,103,32,108,105,102,101,99,121,99,108,101,32,104,111,111,107,115,92,110,32,32,112,117,115,104,84,97,114,103,101,116,40,41,59,92,110,32,32,118,97,114,32,104,97,110,100,108,101,114,115,32,61,32,118,109,46,36,111,112,116,105,111,110,115,91,104,111,111,107,93,59,92,110,32,32,118,97,114,32,105,110,102,111,32,61,32,104,111,111,107,32,43,32,92,34,32,104,111,111,107,92,34,59,92,110,32,32,105,102,32,40,104,97,110,100,108,101,114,115,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,106,32,61,32,104,97,110,100,108,101,114,115,46,108,101,110,103,116,104,59,32,105,32,60,32,106,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,105,110,118,111,107,101,87,105,116,104,69,114,114,111,114,72,97,110,100,108,105,110,103,40,104,97,110,100,108,101,114,115,91,105,93,44,32,118,109,44,32,110,117,108,108,44,32,118,109,44,32,105,110,102,111,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,105,102,32,40,118,109,46,95,104,97,115,72,111,111,107,69,118,101,110,116,41,32,123,92,110,32,32,32,32,118,109,46,36,101,109,105,116,40,39,104,111,111,107,58,39,32,43,32,104,111,111,107,41,59,92,110,32,32,125,92,110,32,32,112,111,112,84,97,114,103,101,116,40,41,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,77,65,88,95,85,80,68,65,84,69,95,67,79,85,78,84,32,61,32,49,48,48,59,92,110,92,110,118,97,114,32,113,117,101,117,101,32,61,32,91,93,59,92,110,118,97,114,32,97,99,116,105,118,97,116,101,100,67,104,105,108,100,114,101,110,32,61,32,91,93,59,92,110,118,97,114,32,104,97,115,32,61,32,123,125,59,92,110,118,97,114,32,99,105,114,99,117,108,97,114,32,61,32,123,125,59,92,110,118,97,114,32,119,97,105,116,105,110,103,32,61,32,102,97,108,115,101,59,92,110,118,97,114,32,102,108,117,115,104,105,110,103,32,61,32,102,97,108,115,101,59,92,110,118,97,114,32,105,110,100,101,120,32,61,32,48,59,92,110,92,110,47,42,42,92,110,32,42,32,82,101,115,101,116,32,116,104,101,32,115,99,104,101,100,117,108,101,114,39,115,32,115,116,97,116,101,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,114,101,115,101,116,83,99,104,101,100,117,108,101,114,83,116,97,116,101,32,40,41,32,123,92,110,32,32,105,110,100,101,120,32,61,32,113,117,101,117,101,46,108,101,110,103,116,104,32,61,32,97,99,116,105,118,97,116,101,100,67,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,61,32,48,59,92,110,32,32,104,97,115,32,61,32,123,125,59,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,99,105,114,99,117,108,97,114,32,61,32,123,125,59,92,110,32,32,125,92,110,32,32,119,97,105,116,105,110,103,32,61,32,102,108,117,115,104,105,110,103,32,61,32,102,97,108,115,101,59,92,110,125,92,110,92,110,47,47,32,65,115,121,110,99,32,101,100,103,101,32,99,97,115,101,32,35,54,53,54,54,32,114,101,113,117,105,114,101,115,32,115,97,118,105,110,103,32,116,104,101,32,116,105,109,101,115,116,97,109,112,32,119,104,101,110,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,32,97,114,101,92,110,47,47,32,97,116,116,97,99,104,101,100,46,32,72,111,119,101,118,101,114,44,32,99,97,108,108,105,110,103,32,112,101,114,102,111,114,109,97,110,99,101,46,110,111,119,40,41,32,104,97,115,32,97,32,112,101,114,102,32,111,118,101,114,104,101,97,100,32,101,115,112,101,99,105,97,108,108,121,92,110,47,47,32,105,102,32,116,104,101,32,112,97,103,101,32,104,97,115,32,116,104,111,117,115,97,110,100,115,32,111,102,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,46,32,73,110,115,116,101,97,100,44,32,119,101,32,116,97,107,101,32,97,32,116,105,109,101,115,116,97,109,112,92,110,47,47,32,101,118,101,114,121,32,116,105,109,101,32,116,104,101,32,115,99,104,101,100,117,108,101,114,32,102,108,117,115,104,101,115,32,97,110,100,32,117,115,101,32,116,104,97,116,32,102,111,114,32,97,108,108,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,115,92,110,47,47,32,97,116,116,97,99,104,101,100,32,100,117,114,105,110,103,32,116,104,97,116,32,102,108,117,115,104,46,92,110,118,97,114,32,99,117,114,114,101,110,116,70,108,117,115,104,84,105,109,101,115,116,97,109,112,32,61,32,48,59,92,110,92,110,47,47,32,65,115,121,110,99,32,101,100,103,101,32,99,97,115,101,32,102,105,120,32,114,101,113,117,105,114,101,115,32,115,116,111,114,105,110,103,32,97,110,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,39,115,32,97,116,116,97,99,104,32,116,105,109,101,115,116,97,109,112,46,92,110,118,97,114,32,103,101,116,78,111,119,32,61,32,68,97,116,101,46,110,111,119,59,92,110,92,110,47,47,32,68,101,116,101,114,109,105,110,101,32,119,104,97,116,32,101,118,101,110,116,32,116,105,109,101,115,116,97,109,112,32,116,104,101,32,98,114,111,119,115,101,114,32,105,115,32,117,115,105,110,103,46,32,65,110,110,111,121,105,110,103,108,121,44,32,116,104,101,92,110,47,47,32,116,105,109,101,115,116,97,109,112,32,99,97,110,32,101,105,116,104,101,114,32,98,101,32,104,105,45,114,101,115,32,40,114,101,108,97,116,105,118,101,32,116,111,32,112,97,103,101,32,108,111,97,100,41,32,111,114,32,108,111,119,45,114,101,115,92,110,47,47,32,40,114,101,108,97,116,105,118,101,32,116,111,32,85,78,73,88,32,101,112,111,99,104,41,44,32,115,111,32,105,110,32,111,114,100,101,114,32,116,111,32,99,111,109,112,97,114,101,32,116,105,109,101,32,119,101,32,104,97,118,101,32,116,111,32,117,115,101,32,116,104,101,92,110,47,47,32,115,97,109,101,32,116,105,109,101,115,116,97,109,112,32,116,121,112,101,32,119,104,101,110,32,115,97,118,105,110,103,32,116,104,101,32,102,108,117,115,104,32,116,105,109,101,115,116,97,109,112,46,92,110,47,47,32,65,108,108,32,73,69,32,118,101,114,115,105,111,110,115,32,117,115,101,32,108,111,119,45,114,101,115,32,101,118,101,110,116,32,116,105,109,101,115,116,97,109,112,115,44,32,97,110,100,32,104,97,118,101,32,112,114,111,98,108,101,109,97,116,105,99,32,99,108,111,99,107,92,110,47,47,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,115,32,40,35,57,54,51,50,41,92,110,105,102,32,40,105,110,66,114,111,119,115,101,114,32,38,38,32,33,105,115,73,69,41,32,123,92,110,32,32,118,97,114,32,112,101,114,102,111,114,109,97,110,99,101,32,61,32,119,105,110,100,111,119,46,112,101,114,102,111,114,109,97,110,99,101,59,92,110,32,32,105,102,32,40,92,110,32,32,32,32,112,101,114,102,111,114,109,97,110,99,101,32,38,38,92,110,32,32,32,32,116,121,112,101,111,102,32,112,101,114,102,111,114,109,97,110,99,101,46,110,111,119,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,38,38,92,110,32,32,32,32,103,101,116,78,111,119,40,41,32,62,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,118,101,110,116,40,39,69,118,101,110,116,39,41,46,116,105,109,101,83,116,97,109,112,92,110,32,32,41,32,123,92,110,32,32,32,32,47,47,32,105,102,32,116,104,101,32,101,118,101,110,116,32,116,105,109,101,115,116,97,109,112,44,32,97,108,116,104,111,117,103,104,32,101,118,97,108,117,97,116,101,100,32,65,70,84,69,82,32,116,104,101,32,68,97,116,101,46,110,111,119,40,41,44,32,105,115,92,110,32,32,32,32,47,47,32,115,109,97,108,108,101,114,32,116,104,97,110,32,105,116,44,32,105,116,32,109,101,97,110,115,32,116,104,101,32,101,118,101,110,116,32,105,115,32,117,115,105,110,103,32,97,32,104,105,45,114,101,115,32,116,105,109,101,115,116,97,109,112,44,92,110,32,32,32,32,47,47,32,97,110,100,32,119,101,32,110,101,101,100,32,116,111,32,117,115,101,32,116,104,101,32,104,105,45,114,101,115,32,118,101,114,115,105,111,110,32,102,111,114,32,101,118,101,110,116,32,108,105,115,116,101,110,101,114,32,116,105,109,101,115,116,97,109,112,115,32,97,115,92,110,32,32,32,32,47,47,32,119,101,108,108,46,92,110,32,32,32,32,103,101,116,78,111,119,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,112,101,114,102,111,114,109,97,110,99,101,46,110,111,119,40,41,59,32,125,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,70,108,117,115,104,32,98,111,116,104,32,113,117,101,117,101,115,32,97,110,100,32,114,117,110,32,116,104,101,32,119,97,116,99,104,101,114,115,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,102,108,117,115,104,83,99,104,101,100,117,108,101,114,81,117,101,117,101,32,40,41,32,123,92,110,32,32,99,117,114,114,101,110,116,70,108,117,115,104,84,105,109,101,115,116,97,109,112,32,61,32,103,101,116,78,111,119,40,41,59,92,110,32,32,102,108,117,115,104,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,118,97,114,32,119,97,116,99,104,101,114,44,32,105,100,59,92,110,92,110,32,32,47,47,32,83,111,114,116,32,113,117,101,117,101,32,98,101,102,111,114,101,32,102,108,117,115,104,46,92,110,32,32,47,47,32,84,104,105,115,32,101,110,115,117,114,101,115,32,116,104,97,116,58,92,110,32,32,47,47,32,49,46,32,67,111,109,112,111,110,101,110,116,115,32,97,114,101,32,117,112,100,97,116,101,100,32,102,114,111,109,32,112,97,114,101,110,116,32,116,111,32,99,104,105,108,100,46,32,40,98,101,99,97,117,115,101,32,112,97,114,101,110,116,32,105,115,32,97,108,119,97,121,115,92,110,32,32,47,47,32,32,32,32,99,114,101,97,116,101,100,32,98,101,102,111,114,101,32,116,104,101,32,99,104,105,108,100,41,92,110,32,32,47,47,32,50,46,32,65,32,99,111,109,112,111,110,101,110,116,39,115,32,117,115,101,114,32,119,97,116,99,104,101,114,115,32,97,114,101,32,114,117,110,32,98,101,102,111,114,101,32,105,116,115,32,114,101,110,100,101,114,32,119,97,116,99,104,101,114,32,40,98,101,99,97,117,115,101,92,110,32,32,47,47,32,32,32,32,117,115,101,114,32,119,97,116,99,104,101,114,115,32,97,114,101,32,99,114,101,97,116,101,100,32,98,101,102,111,114,101,32,116,104,101,32,114,101,110,100,101,114,32,119,97,116,99,104,101,114,41,92,110,32,32,47,47,32,51,46,32,73,102,32,97,32,99,111,109,112,111,110,101,110,116,32,105,115,32,100,101,115,116,114,111,121,101,100,32,100,117,114,105,110,103,32,97,32,112,97,114,101,110,116,32,99,111,109,112,111,110,101,110,116,39,115,32,119,97,116,99,104,101,114,32,114,117,110,44,92,110,32,32,47,47,32,32,32,32,105,116,115,32,119,97,116,99,104,101,114,115,32,99,97,110,32,98,101,32,115,107,105,112,112,101,100,46,92,110,32,32,113,117,101,117,101,46,115,111,114,116,40,102,117,110,99,116,105,111,110,32,40,97,44,32,98,41,32,123,32,114,101,116,117,114,110,32,97,46,105,100,32,45,32,98,46,105,100,59,32,125,41,59,92,110,92,110,32,32,47,47,32,100,111,32,110,111,116,32,99,97,99,104,101,32,108,101,110,103,116,104,32,98,101,99,97,117,115,101,32,109,111,114,101,32,119,97,116,99,104,101,114,115,32,109,105,103,104,116,32,98,101,32,112,117,115,104,101,100,92,110,32,32,47,47,32,97,115,32,119,101,32,114,117,110,32,101,120,105,115,116,105,110,103,32,119,97,116,99,104,101,114,115,92,110,32,32,102,111,114,32,40,105,110,100,101,120,32,61,32,48,59,32,105,110,100,101,120,32,60,32,113,117,101,117,101,46,108,101,110,103,116,104,59,32,105,110,100,101,120,43,43,41,32,123,92,110,32,32,32,32,119,97,116,99,104,101,114,32,61,32,113,117,101,117,101,91,105,110,100,101,120,93,59,92,110,32,32,32,32,105,102,32,40,119,97,116,99,104,101,114,46,98,101,102,111,114,101,41,32,123,92,110,32,32,32,32,32,32,119,97,116,99,104,101,114,46,98,101,102,111,114,101,40,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,100,32,61,32,119,97,116,99,104,101,114,46,105,100,59,92,110,32,32,32,32,104,97,115,91,105,100,93,32,61,32,110,117,108,108,59,92,110,32,32,32,32,119,97,116,99,104,101,114,46,114,117,110,40,41,59,92,110,32,32,32,32,47,47,32,105,110,32,100,101,118,32,98,117,105,108,100,44,32,99,104,101,99,107,32,97,110,100,32,115,116,111,112,32,99,105,114,99,117,108,97,114,32,117,112,100,97,116,101,115,46,92,110,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,104,97,115,91,105,100,93,32,33,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,99,105,114,99,117,108,97,114,91,105,100,93,32,61,32,40,99,105,114,99,117,108,97,114,91,105,100,93,32,124,124,32,48,41,32,43,32,49,59,92,110,32,32,32,32,32,32,105,102,32,40,99,105,114,99,117,108,97,114,91,105,100,93,32,62,32,77,65,88,95,85,80,68,65,84,69,95,67,79,85,78,84,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,39,89,111,117,32,109,97,121,32,104,97,118,101,32,97,110,32,105,110,102,105,110,105,116,101,32,117,112,100,97,116,101,32,108,111,111,112,32,39,32,43,32,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,97,116,99,104,101,114,46,117,115,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,92,34,105,110,32,119,97,116,99,104,101,114,32,119,105,116,104,32,101,120,112,114,101,115,115,105,111,110,32,92,92,92,34,92,34,32,43,32,40,119,97,116,99,104,101,114,46,101,120,112,114,101,115,115,105,111,110,41,32,43,32,92,34,92,92,92,34,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,92,34,105,110,32,97,32,99,111,109,112,111,110,101,110,116,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,46,92,34,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,119,97,116,99,104,101,114,46,118,109,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,107,101,101,112,32,99,111,112,105,101,115,32,111,102,32,112,111,115,116,32,113,117,101,117,101,115,32,98,101,102,111,114,101,32,114,101,115,101,116,116,105,110,103,32,115,116,97,116,101,92,110,32,32,118,97,114,32,97,99,116,105,118,97,116,101,100,81,117,101,117,101,32,61,32,97,99,116,105,118,97,116,101,100,67,104,105,108,100,114,101,110,46,115,108,105,99,101,40,41,59,92,110,32,32,118,97,114,32,117,112,100,97,116,101,100,81,117,101,117,101,32,61,32,113,117,101,117,101,46,115,108,105,99,101,40,41,59,92,110,92,110,32,32,114,101,115,101,116,83,99,104,101,100,117,108,101,114,83,116,97,116,101,40,41,59,92,110,92,110,32,32,47,47,32,99,97,108,108,32,99,111,109,112,111,110,101,110,116,32,117,112,100,97,116,101,100,32,97,110,100,32,97,99,116,105,118,97,116,101,100,32,104,111,111,107,115,92,110,32,32,99,97,108,108,65,99,116,105,118,97,116,101,100,72,111,111,107,115,40,97,99,116,105,118,97,116,101,100,81,117,101,117,101,41,59,92,110,32,32,99,97,108,108,85,112,100,97,116,101,100,72,111,111,107,115,40,117,112,100,97,116,101,100,81,117,101,117,101,41,59,92,110,92,110,32,32,47,47,32,100,101,118,116,111,111,108,32,104,111,111,107,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,100,101,118,116,111,111,108,115,32,38,38,32,99,111,110,102,105,103,46,100,101,118,116,111,111,108,115,41,32,123,92,110,32,32,32,32,100,101,118,116,111,111,108,115,46,101,109,105,116,40,39,102,108,117,115,104,39,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,97,108,108,85,112,100,97,116,101,100,72,111,111,107,115,32,40,113,117,101,117,101,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,113,117,101,117,101,46,108,101,110,103,116,104,59,92,110,32,32,119,104,105,108,101,32,40,105,45,45,41,32,123,92,110,32,32,32,32,118,97,114,32,119,97,116,99,104,101,114,32,61,32,113,117,101,117,101,91,105,93,59,92,110,32,32,32,32,118,97,114,32,118,109,32,61,32,119,97,116,99,104,101,114,46,118,109,59,92,110,32,32,32,32,105,102,32,40,118,109,46,95,119,97,116,99,104,101,114,32,61,61,61,32,119,97,116,99,104,101,114,32,38,38,32,118,109,46,95,105,115,77,111,117,110,116,101,100,32,38,38,32,33,118,109,46,95,105,115,68,101,115,116,114,111,121,101,100,41,32,123,92,110,32,32,32,32,32,32,99,97,108,108,72,111,111,107,40,118,109,44,32,39,117,112,100,97,116,101,100,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,81,117,101,117,101,32,97,32,107,101,112,116,45,97,108,105,118,101,32,99,111,109,112,111,110,101,110,116,32,116,104,97,116,32,119,97,115,32,97,99,116,105,118,97,116,101,100,32,100,117,114,105,110,103,32,112,97,116,99,104,46,92,110,32,42,32,84,104,101,32,113,117,101,117,101,32,119,105,108,108,32,98,101,32,112,114,111,99,101,115,115,101,100,32,97,102,116,101,114,32,116,104,101,32,101,110,116,105,114,101,32,116,114,101,101,32,104,97,115,32,98,101,101,110,32,112,97,116,99,104,101,100,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,113,117,101,117,101,65,99,116,105,118,97,116,101,100,67,111,109,112,111,110,101,110,116,32,40,118,109,41,32,123,92,110,32,32,47,47,32,115,101,116,116,105,110,103,32,95,105,110,97,99,116,105,118,101,32,116,111,32,102,97,108,115,101,32,104,101,114,101,32,115,111,32,116,104,97,116,32,97,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,32,99,97,110,92,110,32,32,47,47,32,114,101,108,121,32,111,110,32,99,104,101,99,107,105,110,103,32,119,104,101,116,104,101,114,32,105,116,39,115,32,105,110,32,97,110,32,105,110,97,99,116,105,118,101,32,116,114,101,101,32,40,101,46,103,46,32,114,111,117,116,101,114,45,118,105,101,119,41,92,110,32,32,118,109,46,95,105,110,97,99,116,105,118,101,32,61,32,102,97,108,115,101,59,92,110,32,32,97,99,116,105,118,97,116,101,100,67,104,105,108,100,114,101,110,46,112,117,115,104,40,118,109,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,97,108,108,65,99,116,105,118,97,116,101,100,72,111,111,107,115,32,40,113,117,101,117,101,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,113,117,101,117,101,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,113,117,101,117,101,91,105,93,46,95,105,110,97,99,116,105,118,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,97,99,116,105,118,97,116,101,67,104,105,108,100,67,111,109,112,111,110,101,110,116,40,113,117,101,117,101,91,105,93,44,32,116,114,117,101,32,47,42,32,116,114,117,101,32,42,47,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,80,117,115,104,32,97,32,119,97,116,99,104,101,114,32,105,110,116,111,32,116,104,101,32,119,97,116,99,104,101,114,32,113,117,101,117,101,46,92,110,32,42,32,74,111,98,115,32,119,105,116,104,32,100,117,112,108,105,99,97,116,101,32,73,68,115,32,119,105,108,108,32,98,101,32,115,107,105,112,112,101,100,32,117,110,108,101,115,115,32,105,116,39,115,92,110,32,42,32,112,117,115,104,101,100,32,119,104,101,110,32,116,104,101,32,113,117,101,117,101,32,105,115,32,98,101,105,110,103,32,102,108,117,115,104,101,100,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,113,117,101,117,101,87,97,116,99,104,101,114,32,40,119,97,116,99,104,101,114,41,32,123,92,110,32,32,118,97,114,32,105,100,32,61,32,119,97,116,99,104,101,114,46,105,100,59,92,110,32,32,105,102,32,40,104,97,115,91,105,100,93,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,104,97,115,91,105,100,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,105,102,32,40,33,102,108,117,115,104,105,110,103,41,32,123,92,110,32,32,32,32,32,32,113,117,101,117,101,46,112,117,115,104,40,119,97,116,99,104,101,114,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,105,102,32,97,108,114,101,97,100,121,32,102,108,117,115,104,105,110,103,44,32,115,112,108,105,99,101,32,116,104,101,32,119,97,116,99,104,101,114,32,98,97,115,101,100,32,111,110,32,105,116,115,32,105,100,92,110,32,32,32,32,32,32,47,47,32,105,102,32,97,108,114,101,97,100,121,32,112,97,115,116,32,105,116,115,32,105,100,44,32,105,116,32,119,105,108,108,32,98,101,32,114,117,110,32,110,101,120,116,32,105,109,109,101,100,105,97,116,101,108,121,46,92,110,32,32,32,32,32,32,118,97,114,32,105,32,61,32,113,117,101,117,101,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,105,32,62,32,105,110,100,101,120,32,38,38,32,113,117,101,117,101,91,105,93,46,105,100,32,62,32,119,97,116,99,104,101,114,46,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,105,45,45,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,113,117,101,117,101,46,115,112,108,105,99,101,40,105,32,43,32,49,44,32,48,44,32,119,97,116,99,104,101,114,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,113,117,101,117,101,32,116,104,101,32,102,108,117,115,104,92,110,32,32,32,32,105,102,32,40,33,119,97,105,116,105,110,103,41,32,123,92,110,32,32,32,32,32,32,119,97,105,116,105,110,103,32,61,32,116,114,117,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,33,99,111,110,102,105,103,46,97,115,121,110,99,41,32,123,92,110,32,32,32,32,32,32,32,32,102,108,117,115,104,83,99,104,101,100,117,108,101,114,81,117,101,117,101,40,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,110,101,120,116,84,105,99,107,40,102,108,117,115,104,83,99,104,101,100,117,108,101,114,81,117,101,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,92,110,92,110,118,97,114,32,117,105,100,36,50,32,61,32,48,59,92,110,92,110,47,42,42,92,110,32,42,32,65,32,119,97,116,99,104,101,114,32,112,97,114,115,101,115,32,97,110,32,101,120,112,114,101,115,115,105,111,110,44,32,99,111,108,108,101,99,116,115,32,100,101,112,101,110,100,101,110,99,105,101,115,44,92,110,32,42,32,97,110,100,32,102,105,114,101,115,32,99,97,108,108,98,97,99,107,32,119,104,101,110,32,116,104,101,32,101,120,112,114,101,115,115,105,111,110,32,118,97,108,117,101,32,99,104,97,110,103,101,115,46,92,110,32,42,32,84,104,105,115,32,105,115,32,117,115,101,100,32,102,111,114,32,98,111,116,104,32,116,104,101,32,36,119,97,116,99,104,40,41,32,97,112,105,32,97,110,100,32,100,105,114,101,99,116,105,118,101,115,46,92,110,32,42,47,92,110,118,97,114,32,87,97,116,99,104,101,114,32,61,32,102,117,110,99,116,105,111,110,32,87,97,116,99,104,101,114,32,40,92,110,32,32,118,109,44,92,110,32,32,101,120,112,79,114,70,110,44,92,110,32,32,99,98,44,92,110,32,32,111,112,116,105,111,110,115,44,92,110,32,32,105,115,82,101,110,100,101,114,87,97,116,99,104,101,114,92,110,41,32,123,92,110,32,32,116,104,105,115,46,118,109,32,61,32,118,109,59,92,110,32,32,105,102,32,40,105,115,82,101,110,100,101,114,87,97,116,99,104,101,114,41,32,123,92,110,32,32,32,32,118,109,46,95,119,97,116,99,104,101,114,32,61,32,116,104,105,115,59,92,110,32,32,125,92,110,32,32,118,109,46,95,119,97,116,99,104,101,114,115,46,112,117,115,104,40,116,104,105,115,41,59,92,110,32,32,47,47,32,111,112,116,105,111,110,115,92,110,32,32,105,102,32,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,116,104,105,115,46,100,101,101,112,32,61,32,33,33,111,112,116,105,111,110,115,46,100,101,101,112,59,92,110,32,32,32,32,116,104,105,115,46,117,115,101,114,32,61,32,33,33,111,112,116,105,111,110,115,46,117,115,101,114,59,92,110,32,32,32,32,116,104,105,115,46,108,97,122,121,32,61,32,33,33,111,112,116,105,111,110,115,46,108,97,122,121,59,92,110,32,32,32,32,116,104,105,115,46,115,121,110,99,32,61,32,33,33,111,112,116,105,111,110,115,46,115,121,110,99,59,92,110,32,32,32,32,116,104,105,115,46,98,101,102,111,114,101,32,61,32,111,112,116,105,111,110,115,46,98,101,102,111,114,101,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,116,104,105,115,46,100,101,101,112,32,61,32,116,104,105,115,46,117,115,101,114,32,61,32,116,104,105,115,46,108,97,122,121,32,61,32,116,104,105,115,46,115,121,110,99,32,61,32,102,97,108,115,101,59,92,110,32,32,125,92,110,32,32,116,104,105,115,46,99,98,32,61,32,99,98,59,92,110,32,32,116,104,105,115,46,105,100,32,61,32,43,43,117,105,100,36,50,59,32,47,47,32,117,105,100,32,102,111,114,32,98,97,116,99,104,105,110,103,92,110,32,32,116,104,105,115,46,97,99,116,105,118,101,32,61,32,116,114,117,101,59,92,110,32,32,116,104,105,115,46,100,105,114,116,121,32,61,32,116,104,105,115,46,108,97,122,121,59,32,47,47,32,102,111,114,32,108,97,122,121,32,119,97,116,99,104,101,114,115,92,110,32,32,116,104,105,115,46,100,101,112,115,32,61,32,91,93,59,92,110,32,32,116,104,105,115,46,110,101,119,68,101,112,115,32,61,32,91,93,59,92,110,32,32,116,104,105,115,46,100,101,112,73,100,115,32,61,32,110,101,119,32,95,83,101,116,40,41,59,92,110,32,32,116,104,105,115,46,110,101,119,68,101,112,73,100,115,32,61,32,110,101,119,32,95,83,101,116,40,41,59,92,110,32,32,116,104,105,115,46,101,120,112,114,101,115,115,105,111,110,32,61,32,32,116,114,117,101,92,110,32,32,32,32,63,32,101,120,112,79,114,70,110,46,116,111,83,116,114,105,110,103,40,41,92,110,32,32,32,32,58,32,48,59,92,110,32,32,47,47,32,112,97,114,115,101,32,101,120,112,114,101,115,115,105,111,110,32,102,111,114,32,103,101,116,116,101,114,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,101,120,112,79,114,70,110,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,116,104,105,115,46,103,101,116,116,101,114,32,61,32,101,120,112,79,114,70,110,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,116,104,105,115,46,103,101,116,116,101,114,32,61,32,112,97,114,115,101,80,97,116,104,40,101,120,112,79,114,70,110,41,59,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,103,101,116,116,101,114,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,103,101,116,116,101,114,32,61,32,110,111,111,112,59,92,110,32,32,32,32,32,32,32,116,114,117,101,32,38,38,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,92,34,70,97,105,108,101,100,32,119,97,116,99,104,105,110,103,32,112,97,116,104,58,32,92,92,92,34,92,34,32,43,32,101,120,112,79,114,70,110,32,43,32,92,34,92,92,92,34,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,39,87,97,116,99,104,101,114,32,111,110,108,121,32,97,99,99,101,112,116,115,32,115,105,109,112,108,101,32,100,111,116,45,100,101,108,105,109,105,116,101,100,32,112,97,116,104,115,46,32,39,32,43,92,110,32,32,32,32,32,32,32,32,39,70,111,114,32,102,117,108,108,32,99,111,110,116,114,111,108,44,32,117,115,101,32,97,32,102,117,110,99,116,105,111,110,32,105,110,115,116,101,97,100,46,39,44,92,110,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,116,104,105,115,46,118,97,108,117,101,32,61,32,116,104,105,115,46,108,97,122,121,92,110,32,32,32,32,63,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,58,32,116,104,105,115,46,103,101,116,40,41,59,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,69,118,97,108,117,97,116,101,32,116,104,101,32,103,101,116,116,101,114,44,32,97,110,100,32,114,101,45,99,111,108,108,101,99,116,32,100,101,112,101,110,100,101,110,99,105,101,115,46,92,110,32,42,47,92,110,87,97,116,99,104,101,114,46,112,114,111,116,111,116,121,112,101,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,32,40,41,32,123,92,110,32,32,112,117,115,104,84,97,114,103,101,116,40,116,104,105,115,41,59,92,110,32,32,118,97,114,32,118,97,108,117,101,59,92,110,32,32,118,97,114,32,118,109,32,61,32,116,104,105,115,46,118,109,59,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,118,97,108,117,101,32,61,32,116,104,105,115,46,103,101,116,116,101,114,46,99,97,108,108,40,118,109,44,32,118,109,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,117,115,101,114,41,32,123,92,110,32,32,32,32,32,32,104,97,110,100,108,101,69,114,114,111,114,40,101,44,32,118,109,44,32,40,92,34,103,101,116,116,101,114,32,102,111,114,32,119,97,116,99,104,101,114,32,92,92,92,34,92,34,32,43,32,40,116,104,105,115,46,101,120,112,114,101,115,115,105,111,110,41,32,43,32,92,34,92,92,92,34,92,34,41,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,114,111,119,32,101,92,110,32,32,32,32,125,92,110,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,47,47,32,92,34,116,111,117,99,104,92,34,32,101,118,101,114,121,32,112,114,111,112,101,114,116,121,32,115,111,32,116,104,101,121,32,97,114,101,32,97,108,108,32,116,114,97,99,107,101,100,32,97,115,92,110,32,32,32,32,47,47,32,100,101,112,101,110,100,101,110,99,105,101,115,32,102,111,114,32,100,101,101,112,32,119,97,116,99,104,105,110,103,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,100,101,101,112,41,32,123,92,110,32,32,32,32,32,32,116,114,97,118,101,114,115,101,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,112,111,112,84,97,114,103,101,116,40,41,59,92,110,32,32,32,32,116,104,105,115,46,99,108,101,97,110,117,112,68,101,112,115,40,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,65,100,100,32,97,32,100,101,112,101,110,100,101,110,99,121,32,116,111,32,116,104,105,115,32,100,105,114,101,99,116,105,118,101,46,92,110,32,42,47,92,110,87,97,116,99,104,101,114,46,112,114,111,116,111,116,121,112,101,46,97,100,100,68,101,112,32,61,32,102,117,110,99,116,105,111,110,32,97,100,100,68,101,112,32,40,100,101,112,41,32,123,92,110,32,32,118,97,114,32,105,100,32,61,32,100,101,112,46,105,100,59,92,110,32,32,105,102,32,40,33,116,104,105,115,46,110,101,119,68,101,112,73,100,115,46,104,97,115,40,105,100,41,41,32,123,92,110,32,32,32,32,116,104,105,115,46,110,101,119,68,101,112,73,100,115,46,97,100,100,40,105,100,41,59,92,110,32,32,32,32,116,104,105,115,46,110,101,119,68,101,112,115,46,112,117,115,104,40,100,101,112,41,59,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,101,112,73,100,115,46,104,97,115,40,105,100,41,41,32,123,92,110,32,32,32,32,32,32,100,101,112,46,97,100,100,83,117,98,40,116,104,105,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,67,108,101,97,110,32,117,112,32,102,111,114,32,100,101,112,101,110,100,101,110,99,121,32,99,111,108,108,101,99,116,105,111,110,46,92,110,32,42,47,92,110,87,97,116,99,104,101,114,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,110,117,112,68,101,112,115,32,61,32,102,117,110,99,116,105,111,110,32,99,108,101,97,110,117,112,68,101,112,115,32,40,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,116,104,105,115,46,100,101,112,115,46,108,101,110,103,116,104,59,92,110,32,32,119,104,105,108,101,32,40,105,45,45,41,32,123,92,110,32,32,32,32,118,97,114,32,100,101,112,32,61,32,116,104,105,115,46,100,101,112,115,91,105,93,59,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,110,101,119,68,101,112,73,100,115,46,104,97,115,40,100,101,112,46,105,100,41,41,32,123,92,110,32,32,32,32,32,32,100,101,112,46,114,101,109,111,118,101,83,117,98,40,116,104,105,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,118,97,114,32,116,109,112,32,61,32,116,104,105,115,46,100,101,112,73,100,115,59,92,110,32,32,116,104,105,115,46,100,101,112,73,100,115,32,61,32,116,104,105,115,46,110,101,119,68,101,112,73,100,115,59,92,110,32,32,116,104,105,115,46,110,101,119,68,101,112,73,100,115,32,61,32,116,109,112,59,92,110,32,32,116,104,105,115,46,110,101,119,68,101,112,73,100,115,46,99,108,101,97,114,40,41,59,92,110,32,32,116,109,112,32,61,32,116,104,105,115,46,100,101,112,115,59,92,110,32,32,116,104,105,115,46,100,101,112,115,32,61,32,116,104,105,115,46,110,101,119,68,101,112,115,59,92,110,32,32,116,104,105,115,46,110,101,119,68,101,112,115,32,61,32,116,109,112,59,92,110,32,32,116,104,105,115,46,110,101,119,68,101,112,115,46,108,101,110,103,116,104,32,61,32,48,59,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,83,117,98,115,99,114,105,98,101,114,32,105,110,116,101,114,102,97,99,101,46,92,110,32,42,32,87,105,108,108,32,98,101,32,99,97,108,108,101,100,32,119,104,101,110,32,97,32,100,101,112,101,110,100,101,110,99,121,32,99,104,97,110,103,101,115,46,92,110,32,42,47,92,110,87,97,116,99,104,101,114,46,112,114,111,116,111,116,121,112,101,46,117,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,32,40,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,105,102,32,40,116,104,105,115,46,108,97,122,121,41,32,123,92,110,32,32,32,32,116,104,105,115,46,100,105,114,116,121,32,61,32,116,114,117,101,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,115,121,110,99,41,32,123,92,110,32,32,32,32,116,104,105,115,46,114,117,110,40,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,113,117,101,117,101,87,97,116,99,104,101,114,40,116,104,105,115,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,83,99,104,101,100,117,108,101,114,32,106,111,98,32,105,110,116,101,114,102,97,99,101,46,92,110,32,42,32,87,105,108,108,32,98,101,32,99,97,108,108,101,100,32,98,121,32,116,104,101,32,115,99,104,101,100,117,108,101,114,46,92,110,32,42,47,92,110,87,97,116,99,104,101,114,46,112,114,111,116,111,116,121,112,101,46,114,117,110,32,61,32,102,117,110,99,116,105,111,110,32,114,117,110,32,40,41,32,123,92,110,32,32,105,102,32,40,116,104,105,115,46,97,99,116,105,118,101,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,116,104,105,115,46,103,101,116,40,41,59,92,110,32,32,32,32,105,102,32,40,92,110,32,32,32,32,32,32,118,97,108,117,101,32,33,61,61,32,116,104,105,115,46,118,97,108,117,101,32,124,124,92,110,32,32,32,32,32,32,47,47,32,68,101,101,112,32,119,97,116,99,104,101,114,115,32,97,110,100,32,119,97,116,99,104,101,114,115,32,111,110,32,79,98,106,101,99,116,47,65,114,114,97,121,115,32,115,104,111,117,108,100,32,102,105,114,101,32,101,118,101,110,92,110,32,32,32,32,32,32,47,47,32,119,104,101,110,32,116,104,101,32,118,97,108,117,101,32,105,115,32,116,104,101,32,115,97,109,101,44,32,98,101,99,97,117,115,101,32,116,104,101,32,118,97,108,117,101,32,109,97,121,92,110,32,32,32,32,32,32,47,47,32,104,97,118,101,32,109,117,116,97,116,101,100,46,92,110,32,32,32,32,32,32,105,115,79,98,106,101,99,116,40,118,97,108,117,101,41,32,124,124,92,110,32,32,32,32,32,32,116,104,105,115,46,100,101,101,112,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,47,47,32,115,101,116,32,110,101,119,32,118,97,108,117,101,92,110,32,32,32,32,32,32,118,97,114,32,111,108,100,86,97,108,117,101,32,61,32,116,104,105,115,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,118,97,108,117,101,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,117,115,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,99,98,46,99,97,108,108,40,116,104,105,115,46,118,109,44,32,118,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,97,110,100,108,101,69,114,114,111,114,40,101,44,32,116,104,105,115,46,118,109,44,32,40,92,34,99,97,108,108,98,97,99,107,32,102,111,114,32,119,97,116,99,104,101,114,32,92,92,92,34,92,34,32,43,32,40,116,104,105,115,46,101,120,112,114,101,115,115,105,111,110,41,32,43,32,92,34,92,92,92,34,92,34,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,98,46,99,97,108,108,40,116,104,105,115,46,118,109,44,32,118,97,108,117,101,44,32,111,108,100,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,69,118,97,108,117,97,116,101,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32,119,97,116,99,104,101,114,46,92,110,32,42,32,84,104,105,115,32,111,110,108,121,32,103,101,116,115,32,99,97,108,108,101,100,32,102,111,114,32,108,97,122,121,32,119,97,116,99,104,101,114,115,46,92,110,32,42,47,92,110,87,97,116,99,104,101,114,46,112,114,111,116,111,116,121,112,101,46,101,118,97,108,117,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,101,118,97,108,117,97,116,101,32,40,41,32,123,92,110,32,32,116,104,105,115,46,118,97,108,117,101,32,61,32,116,104,105,115,46,103,101,116,40,41,59,92,110,32,32,116,104,105,115,46,100,105,114,116,121,32,61,32,102,97,108,115,101,59,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,68,101,112,101,110,100,32,111,110,32,97,108,108,32,100,101,112,115,32,99,111,108,108,101,99,116,101,100,32,98,121,32,116,104,105,115,32,119,97,116,99,104,101,114,46,92,110,32,42,47,92,110,87,97,116,99,104,101,114,46,112,114,111,116,111,116,121,112,101,46,100,101,112,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,100,101,112,101,110,100,32,40,41,32,123,92,110,32,32,118,97,114,32,105,32,61,32,116,104,105,115,46,100,101,112,115,46,108,101,110,103,116,104,59,92,110,32,32,119,104,105,108,101,32,40,105,45,45,41,32,123,92,110,32,32,32,32,116,104,105,115,46,100,101,112,115,91,105,93,46,100,101,112,101,110,100,40,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,42,92,110,32,42,32,82,101,109,111,118,101,32,115,101,108,102,32,102,114,111,109,32,97,108,108,32,100,101,112,101,110,100,101,110,99,105,101,115,39,32,115,117,98,115,99,114,105,98,101,114,32,108,105,115,116,46,92,110,32,42,47,92,110,87,97,116,99,104,101,114,46,112,114,111,116,111,116,121,112,101,46,116,101,97,114,100,111,119,110,32,61,32,102,117,110,99,116,105,111,110,32,116,101,97,114,100,111,119,110,32,40,41,32,123,92,110,32,32,105,102,32,40,116,104,105,115,46,97,99,116,105,118,101,41,32,123,92,110,32,32,32,32,47,47,32,114,101,109,111,118,101,32,115,101,108,102,32,102,114,111,109,32,118,109,39,115,32,119,97,116,99,104,101,114,32,108,105,115,116,92,110,32,32,32,32,47,47,32,116,104,105,115,32,105,115,32,97,32,115,111,109,101,119,104,97,116,32,101,120,112,101,110,115,105,118,101,32,111,112,101,114,97,116,105,111,110,32,115,111,32,119,101,32,115,107,105,112,32,105,116,92,110,32,32,32,32,47,47,32,105,102,32,116,104,101,32,118,109,32,105,115,32,98,101,105,110,103,32,100,101,115,116,114,111,121,101,100,46,92,110,32,32,32,32,105,102,32,40,33,116,104,105,115,46,118,109,46,95,105,115,66,101,105,110,103,68,101,115,116,114,111,121,101,100,41,32,123,92,110,32,32,32,32,32,32,114,101,109,111,118,101,40,116,104,105,115,46,118,109,46,95,119,97,116,99,104,101,114,115,44,32,116,104,105,115,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,118,97,114,32,105,32,61,32,116,104,105,115,46,100,101,112,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,119,104,105,108,101,32,40,105,45,45,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,100,101,112,115,91,105,93,46,114,101,109,111,118,101,83,117,98,40,116,104,105,115,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,104,105,115,46,97,99,116,105,118,101,32,61,32,102,97,108,115,101,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,115,104,97,114,101,100,80,114,111,112,101,114,116,121,68,101,102,105,110,105,116,105,111,110,32,61,32,123,92,110,32,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,44,92,110,32,32,103,101,116,58,32,110,111,111,112,44,92,110,32,32,115,101,116,58,32,110,111,111,112,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,112,114,111,120,121,32,40,116,97,114,103,101,116,44,32,115,111,117,114,99,101,75,101,121,44,32,107,101,121,41,32,123,92,110,32,32,115,104,97,114,101,100,80,114,111,112,101,114,116,121,68,101,102,105,110,105,116,105,111,110,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,112,114,111,120,121,71,101,116,116,101,114,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,91,115,111,117,114,99,101,75,101,121,93,91,107,101,121,93,92,110,32,32,125,59,92,110,32,32,115,104,97,114,101,100,80,114,111,112,101,114,116,121,68,101,102,105,110,105,116,105,111,110,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,112,114,111,120,121,83,101,116,116,101,114,32,40,118,97,108,41,32,123,92,110,32,32,32,32,116,104,105,115,91,115,111,117,114,99,101,75,101,121,93,91,107,101,121,93,32,61,32,118,97,108,59,92,110,32,32,125,59,92,110,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,104,97,114,101,100,80,114,111,112,101,114,116,121,68,101,102,105,110,105,116,105,111,110,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,83,116,97,116,101,32,40,118,109,41,32,123,92,110,32,32,118,109,46,95,119,97,116,99,104,101,114,115,32,61,32,91,93,59,92,110,32,32,118,97,114,32,111,112,116,115,32,61,32,118,109,46,36,111,112,116,105,111,110,115,59,92,110,32,32,105,102,32,40,111,112,116,115,46,112,114,111,112,115,41,32,123,32,105,110,105,116,80,114,111,112,115,40,118,109,44,32,111,112,116,115,46,112,114,111,112,115,41,59,32,125,92,110,32,32,105,102,32,40,111,112,116,115,46,109,101,116,104,111,100,115,41,32,123,32,105,110,105,116,77,101,116,104,111,100,115,40,118,109,44,32,111,112,116,115,46,109,101,116,104,111,100,115,41,59,32,125,92,110,32,32,105,102,32,40,111,112,116,115,46,100,97,116,97,41,32,123,92,110,32,32,32,32,105,110,105,116,68,97,116,97,40,118,109,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,111,98,115,101,114,118,101,40,118,109,46,95,100,97,116,97,32,61,32,123,125,44,32,116,114,117,101,32,47,42,32,97,115,82,111,111,116,68,97,116,97,32,42,47,41,59,92,110,32,32,125,92,110,32,32,105,102,32,40,111,112,116,115,46,99,111,109,112,117,116,101,100,41,32,123,32,105,110,105,116,67,111,109,112,117,116,101,100,40,118,109,44,32,111,112,116,115,46,99,111,109,112,117,116,101,100,41,59,32,125,92,110,32,32,105,102,32,40,111,112,116,115,46,119,97,116,99,104,32,38,38,32,111,112,116,115,46,119,97,116,99,104,32,33,61,61,32,110,97,116,105,118,101,87,97,116,99,104,41,32,123,92,110,32,32,32,32,105,110,105,116,87,97,116,99,104,40,118,109,44,32,111,112,116,115,46,119,97,116,99,104,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,80,114,111,112,115,32,40,118,109,44,32,112,114,111,112,115,79,112,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,112,114,111,112,115,68,97,116,97,32,61,32,118,109,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,68,97,116,97,32,124,124,32,123,125,59,92,110,32,32,118,97,114,32,112,114,111,112,115,32,61,32,118,109,46,95,112,114,111,112,115,32,61,32,123,125,59,92,110,32,32,47,47,32,99,97,99,104,101,32,112,114,111,112,32,107,101,121,115,32,115,111,32,116,104,97,116,32,102,117,116,117,114,101,32,112,114,111,112,115,32,117,112,100,97,116,101,115,32,99,97,110,32,105,116,101,114,97,116,101,32,117,115,105,110,103,32,65,114,114,97,121,92,110,32,32,47,47,32,105,110,115,116,101,97,100,32,111,102,32,100,121,110,97,109,105,99,32,111,98,106,101,99,116,32,107,101,121,32,101,110,117,109,101,114,97,116,105,111,110,46,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,118,109,46,36,111,112,116,105,111,110,115,46,95,112,114,111,112,75,101,121,115,32,61,32,91,93,59,92,110,32,32,118,97,114,32,105,115,82,111,111,116,32,61,32,33,118,109,46,36,112,97,114,101,110,116,59,92,110,32,32,47,47,32,114,111,111,116,32,105,110,115,116,97,110,99,101,32,112,114,111,112,115,32,115,104,111,117,108,100,32,98,101,32,99,111,110,118,101,114,116,101,100,92,110,32,32,105,102,32,40,33,105,115,82,111,111,116,41,32,123,92,110,32,32,32,32,116,111,103,103,108,101,79,98,115,101,114,118,105,110,103,40,102,97,108,115,101,41,59,92,110,32,32,125,92,110,32,32,118,97,114,32,108,111,111,112,32,61,32,102,117,110,99,116,105,111,110,32,40,32,107,101,121,32,41,32,123,92,110,32,32,32,32,107,101,121,115,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,118,97,108,105,100,97,116,101,80,114,111,112,40,107,101,121,44,32,112,114,111,112,115,79,112,116,105,111,110,115,44,32,112,114,111,112,115,68,97,116,97,44,32,118,109,41,59,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,104,121,112,104,101,110,97,116,101,100,75,101,121,32,61,32,104,121,112,104,101,110,97,116,101,40,107,101,121,41,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,82,101,115,101,114,118,101,100,65,116,116,114,105,98,117,116,101,40,104,121,112,104,101,110,97,116,101,100,75,101,121,41,32,124,124,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,102,105,103,46,105,115,82,101,115,101,114,118,101,100,65,116,116,114,40,104,121,112,104,101,110,97,116,101,100,75,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,40,92,34,92,92,92,34,92,34,32,43,32,104,121,112,104,101,110,97,116,101,100,75,101,121,32,43,32,92,34,92,92,92,34,32,105,115,32,97,32,114,101,115,101,114,118,101,100,32,97,116,116,114,105,98,117,116,101,32,97,110,100,32,99,97,110,110,111,116,32,98,101,32,117,115,101,100,32,97,115,32,99,111,109,112,111,110,101,110,116,32,112,114,111,112,46,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,100,101,102,105,110,101,82,101,97,99,116,105,118,101,36,36,49,40,112,114,111,112,115,44,32,107,101,121,44,32,118,97,108,117,101,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,82,111,111,116,32,38,38,32,33,105,115,85,112,100,97,116,105,110,103,67,104,105,108,100,67,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,65,118,111,105,100,32,109,117,116,97,116,105,110,103,32,97,32,112,114,111,112,32,100,105,114,101,99,116,108,121,32,115,105,110,99,101,32,116,104,101,32,118,97,108,117,101,32,119,105,108,108,32,98,101,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,111,118,101,114,119,114,105,116,116,101,110,32,119,104,101,110,101,118,101,114,32,116,104,101,32,112,97,114,101,110,116,32,99,111,109,112,111,110,101,110,116,32,114,101,45,114,101,110,100,101,114,115,46,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,73,110,115,116,101,97,100,44,32,117,115,101,32,97,32,100,97,116,97,32,111,114,32,99,111,109,112,117,116,101,100,32,112,114,111,112,101,114,116,121,32,98,97,115,101,100,32,111,110,32,116,104,101,32,112,114,111,112,39,115,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,118,97,108,117,101,46,32,80,114,111,112,32,98,101,105,110,103,32,109,117,116,97,116,101,100,58,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,125,92,110,32,32,32,32,47,47,32,115,116,97,116,105,99,32,112,114,111,112,115,32,97,114,101,32,97,108,114,101,97,100,121,32,112,114,111,120,105,101,100,32,111,110,32,116,104,101,32,99,111,109,112,111,110,101,110,116,39,115,32,112,114,111,116,111,116,121,112,101,92,110,32,32,32,32,47,47,32,100,117,114,105,110,103,32,86,117,101,46,101,120,116,101,110,100,40,41,46,32,87,101,32,111,110,108,121,32,110,101,101,100,32,116,111,32,112,114,111,120,121,32,112,114,111,112,115,32,100,101,102,105,110,101,100,32,97,116,92,110,32,32,32,32,47,47,32,105,110,115,116,97,110,116,105,97,116,105,111,110,32,104,101,114,101,46,92,110,32,32,32,32,105,102,32,40,33,40,107,101,121,32,105,110,32,118,109,41,41,32,123,92,110,32,32,32,32,32,32,112,114,111,120,121,40,118,109,44,32,92,34,95,112,114,111,112,115,92,34,44,32,107,101,121,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,112,114,111,112,115,79,112,116,105,111,110,115,41,32,108,111,111,112,40,32,107,101,121,32,41,59,92,110,32,32,116,111,103,103,108,101,79,98,115,101,114,118,105,110,103,40,116,114,117,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,68,97,116,97,32,40,118,109,41,32,123,92,110,32,32,118,97,114,32,100,97,116,97,32,61,32,118,109,46,36,111,112,116,105,111,110,115,46,100,97,116,97,59,92,110,32,32,100,97,116,97,32,61,32,118,109,46,95,100,97,116,97,32,61,32,116,121,112,101,111,102,32,100,97,116,97,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,32,32,32,32,63,32,103,101,116,68,97,116,97,40,100,97,116,97,44,32,118,109,41,92,110,32,32,32,32,58,32,100,97,116,97,32,124,124,32,123,125,59,92,110,32,32,105,102,32,40,33,105,115,80,108,97,105,110,79,98,106,101,99,116,40,100,97,116,97,41,41,32,123,92,110,32,32,32,32,100,97,116,97,32,61,32,123,125,59,92,110,32,32,32,32,32,116,114,117,101,32,38,38,32,119,97,114,110,40,92,110,32,32,32,32,32,32,39,100,97,116,97,32,102,117,110,99,116,105,111,110,115,32,115,104,111,117,108,100,32,114,101,116,117,114,110,32,97,110,32,111,98,106,101,99,116,58,92,92,110,39,32,43,92,110,32,32,32,32,32,32,39,104,116,116,112,115,58,47,47,118,117,101,106,115,46,111,114,103,47,118,50,47,103,117,105,100,101,47,99,111,109,112,111,110,101,110,116,115,46,104,116,109,108,35,100,97,116,97,45,77,117,115,116,45,66,101,45,97,45,70,117,110,99,116,105,111,110,39,44,92,110,32,32,32,32,32,32,118,109,92,110,32,32,32,32,41,59,92,110,32,32,125,92,110,32,32,47,47,32,112,114,111,120,121,32,100,97,116,97,32,111,110,32,105,110,115,116,97,110,99,101,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,79,98,106,101,99,116,46,107,101,121,115,40,100,97,116,97,41,59,92,110,32,32,118,97,114,32,112,114,111,112,115,32,61,32,118,109,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,59,92,110,32,32,118,97,114,32,109,101,116,104,111,100,115,32,61,32,118,109,46,36,111,112,116,105,111,110,115,46,109,101,116,104,111,100,115,59,92,110,32,32,118,97,114,32,105,32,61,32,107,101,121,115,46,108,101,110,103,116,104,59,92,110,32,32,119,104,105,108,101,32,40,105,45,45,41,32,123,92,110,32,32,32,32,118,97,114,32,107,101,121,32,61,32,107,101,121,115,91,105,93,59,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,109,101,116,104,111,100,115,32,38,38,32,104,97,115,79,119,110,40,109,101,116,104,111,100,115,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,40,92,34,77,101,116,104,111,100,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,32,104,97,115,32,97,108,114,101,97,100,121,32,98,101,101,110,32,100,101,102,105,110,101,100,32,97,115,32,97,32,100,97,116,97,32,112,114,111,112,101,114,116,121,46,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,112,114,111,112,115,32,38,38,32,104,97,115,79,119,110,40,112,114,111,112,115,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,116,114,117,101,32,38,38,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,92,34,84,104,101,32,100,97,116,97,32,112,114,111,112,101,114,116,121,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,32,105,115,32,97,108,114,101,97,100,121,32,100,101,99,108,97,114,101,100,32,97,115,32,97,32,112,114,111,112,46,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,92,34,85,115,101,32,112,114,111,112,32,100,101,102,97,117,108,116,32,118,97,108,117,101,32,105,110,115,116,101,97,100,46,92,34,44,92,110,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,105,115,82,101,115,101,114,118,101,100,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,112,114,111,120,121,40,118,109,44,32,92,34,95,100,97,116,97,92,34,44,32,107,101,121,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,47,47,32,111,98,115,101,114,118,101,32,100,97,116,97,92,110,32,32,111,98,115,101,114,118,101,40,100,97,116,97,44,32,116,114,117,101,32,47,42,32,97,115,82,111,111,116,68,97,116,97,32,42,47,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,68,97,116,97,32,40,100,97,116,97,44,32,118,109,41,32,123,92,110,32,32,47,47,32,35,55,53,55,51,32,100,105,115,97,98,108,101,32,100,101,112,32,99,111,108,108,101,99,116,105,111,110,32,119,104,101,110,32,105,110,118,111,107,105,110,103,32,100,97,116,97,32,103,101,116,116,101,114,115,92,110,32,32,112,117,115,104,84,97,114,103,101,116,40,41,59,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,97,116,97,46,99,97,108,108,40,118,109,44,32,118,109,41,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,104,97,110,100,108,101,69,114,114,111,114,40,101,44,32,118,109,44,32,92,34,100,97,116,97,40,41,92,34,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,125,92,110,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,112,111,112,84,97,114,103,101,116,40,41,59,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,99,111,109,112,117,116,101,100,87,97,116,99,104,101,114,79,112,116,105,111,110,115,32,61,32,123,32,108,97,122,121,58,32,116,114,117,101,32,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,67,111,109,112,117,116,101,100,32,40,118,109,44,32,99,111,109,112,117,116,101,100,41,32,123,92,110,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,118,97,114,32,119,97,116,99,104,101,114,115,32,61,32,118,109,46,95,99,111,109,112,117,116,101,100,87,97,116,99,104,101,114,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,47,47,32,99,111,109,112,117,116,101,100,32,112,114,111,112,101,114,116,105,101,115,32,97,114,101,32,106,117,115,116,32,103,101,116,116,101,114,115,32,100,117,114,105,110,103,32,83,83,82,92,110,32,32,118,97,114,32,105,115,83,83,82,32,61,32,105,115,83,101,114,118,101,114,82,101,110,100,101,114,105,110,103,40,41,59,92,110,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,99,111,109,112,117,116,101,100,41,32,123,92,110,32,32,32,32,118,97,114,32,117,115,101,114,68,101,102,32,61,32,99,111,109,112,117,116,101,100,91,107,101,121,93,59,92,110,32,32,32,32,118,97,114,32,103,101,116,116,101,114,32,61,32,116,121,112,101,111,102,32,117,115,101,114,68,101,102,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,117,115,101,114,68,101,102,32,58,32,117,115,101,114,68,101,102,46,103,101,116,59,92,110,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,103,101,116,116,101,114,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,40,92,34,71,101,116,116,101,114,32,105,115,32,109,105,115,115,105,110,103,32,102,111,114,32,99,111,109,112,117,116,101,100,32,112,114,111,112,101,114,116,121,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,46,92,34,41,44,92,110,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,33,105,115,83,83,82,41,32,123,92,110,32,32,32,32,32,32,47,47,32,99,114,101,97,116,101,32,105,110,116,101,114,110,97,108,32,119,97,116,99,104,101,114,32,102,111,114,32,116,104,101,32,99,111,109,112,117,116,101,100,32,112,114,111,112,101,114,116,121,46,92,110,32,32,32,32,32,32,119,97,116,99,104,101,114,115,91,107,101,121,93,32,61,32,110,101,119,32,87,97,116,99,104,101,114,40,92,110,32,32,32,32,32,32,32,32,118,109,44,92,110,32,32,32,32,32,32,32,32,103,101,116,116,101,114,32,124,124,32,110,111,111,112,44,92,110,32,32,32,32,32,32,32,32,110,111,111,112,44,92,110,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,100,87,97,116,99,104,101,114,79,112,116,105,111,110,115,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,99,111,109,112,111,110,101,110,116,45,100,101,102,105,110,101,100,32,99,111,109,112,117,116,101,100,32,112,114,111,112,101,114,116,105,101,115,32,97,114,101,32,97,108,114,101,97,100,121,32,100,101,102,105,110,101,100,32,111,110,32,116,104,101,92,110,32,32,32,32,47,47,32,99,111,109,112,111,110,101,110,116,32,112,114,111,116,111,116,121,112,101,46,32,87,101,32,111,110,108,121,32,110,101,101,100,32,116,111,32,100,101,102,105,110,101,32,99,111,109,112,117,116,101,100,32,112,114,111,112,101,114,116,105,101,115,32,100,101,102,105,110,101,100,92,110,32,32,32,32,47,47,32,97,116,32,105,110,115,116,97,110,116,105,97,116,105,111,110,32,104,101,114,101,46,92,110,32,32,32,32,105,102,32,40,33,40,107,101,121,32,105,110,32,118,109,41,41,32,123,92,110,32,32,32,32,32,32,100,101,102,105,110,101,67,111,109,112,117,116,101,100,40,118,109,44,32,107,101,121,44,32,117,115,101,114,68,101,102,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,107,101,121,32,105,110,32,118,109,46,36,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,40,92,34,84,104,101,32,99,111,109,112,117,116,101,100,32,112,114,111,112,101,114,116,121,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,32,105,115,32,97,108,114,101,97,100,121,32,100,101,102,105,110,101,100,32,105,110,32,100,97,116,97,46,92,34,41,44,32,118,109,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,118,109,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,32,38,38,32,107,101,121,32,105,110,32,118,109,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,40,92,34,84,104,101,32,99,111,109,112,117,116,101,100,32,112,114,111,112,101,114,116,121,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,32,105,115,32,97,108,114,101,97,100,121,32,100,101,102,105,110,101,100,32,97,115,32,97,32,112,114,111,112,46,92,34,41,44,32,118,109,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,102,105,110,101,67,111,109,112,117,116,101,100,32,40,92,110,32,32,116,97,114,103,101,116,44,92,110,32,32,107,101,121,44,92,110,32,32,117,115,101,114,68,101,102,92,110,41,32,123,92,110,32,32,118,97,114,32,115,104,111,117,108,100,67,97,99,104,101,32,61,32,33,105,115,83,101,114,118,101,114,82,101,110,100,101,114,105,110,103,40,41,59,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,117,115,101,114,68,101,102,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,115,104,97,114,101,100,80,114,111,112,101,114,116,121,68,101,102,105,110,105,116,105,111,110,46,103,101,116,32,61,32,115,104,111,117,108,100,67,97,99,104,101,92,110,32,32,32,32,32,32,63,32,99,114,101,97,116,101,67,111,109,112,117,116,101,100,71,101,116,116,101,114,40,107,101,121,41,92,110,32,32,32,32,32,32,58,32,99,114,101,97,116,101,71,101,116,116,101,114,73,110,118,111,107,101,114,40,117,115,101,114,68,101,102,41,59,92,110,32,32,32,32,115,104,97,114,101,100,80,114,111,112,101,114,116,121,68,101,102,105,110,105,116,105,111,110,46,115,101,116,32,61,32,110,111,111,112,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,115,104,97,114,101,100,80,114,111,112,101,114,116,121,68,101,102,105,110,105,116,105,111,110,46,103,101,116,32,61,32,117,115,101,114,68,101,102,46,103,101,116,92,110,32,32,32,32,32,32,63,32,115,104,111,117,108,100,67,97,99,104,101,32,38,38,32,117,115,101,114,68,101,102,46,99,97,99,104,101,32,33,61,61,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,63,32,99,114,101,97,116,101,67,111,109,112,117,116,101,100,71,101,116,116,101,114,40,107,101,121,41,92,110,32,32,32,32,32,32,32,32,58,32,99,114,101,97,116,101,71,101,116,116,101,114,73,110,118,111,107,101,114,40,117,115,101,114,68,101,102,46,103,101,116,41,92,110,32,32,32,32,32,32,58,32,110,111,111,112,59,92,110,32,32,32,32,115,104,97,114,101,100,80,114,111,112,101,114,116,121,68,101,102,105,110,105,116,105,111,110,46,115,101,116,32,61,32,117,115,101,114,68,101,102,46,115,101,116,32,124,124,32,110,111,111,112,59,92,110,32,32,125,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,92,110,32,32,32,32,32,32,115,104,97,114,101,100,80,114,111,112,101,114,116,121,68,101,102,105,110,105,116,105,111,110,46,115,101,116,32,61,61,61,32,110,111,111,112,41,32,123,92,110,32,32,32,32,115,104,97,114,101,100,80,114,111,112,101,114,116,121,68,101,102,105,110,105,116,105,111,110,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,40,92,34,67,111,109,112,117,116,101,100,32,112,114,111,112,101,114,116,121,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,32,119,97,115,32,97,115,115,105,103,110,101,100,32,116,111,32,98,117,116,32,105,116,32,104,97,115,32,110,111,32,115,101,116,116,101,114,46,92,34,41,44,92,110,32,32,32,32,32,32,32,32,116,104,105,115,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,97,114,103,101,116,44,32,107,101,121,44,32,115,104,97,114,101,100,80,114,111,112,101,114,116,121,68,101,102,105,110,105,116,105,111,110,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,111,109,112,117,116,101,100,71,101,116,116,101,114,32,40,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,71,101,116,116,101,114,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,119,97,116,99,104,101,114,32,61,32,116,104,105,115,46,95,99,111,109,112,117,116,101,100,87,97,116,99,104,101,114,115,32,38,38,32,116,104,105,115,46,95,99,111,109,112,117,116,101,100,87,97,116,99,104,101,114,115,91,107,101,121,93,59,92,110,32,32,32,32,105,102,32,40,119,97,116,99,104,101,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,119,97,116,99,104,101,114,46,100,105,114,116,121,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,116,99,104,101,114,46,101,118,97,108,117,97,116,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,68,101,112,46,116,97,114,103,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,116,99,104,101,114,46,100,101,112,101,110,100,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,119,97,116,99,104,101,114,46,118,97,108,117,101,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,71,101,116,116,101,114,73,110,118,111,107,101,114,40,102,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,99,111,109,112,117,116,101,100,71,101,116,116,101,114,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,110,46,99,97,108,108,40,116,104,105,115,44,32,116,104,105,115,41,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,77,101,116,104,111,100,115,32,40,118,109,44,32,109,101,116,104,111,100,115,41,32,123,92,110,32,32,118,97,114,32,112,114,111,112,115,32,61,32,118,109,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,59,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,109,101,116,104,111,100,115,41,32,123,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,109,101,116,104,111,100,115,91,107,101,121,93,32,33,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,92,34,77,101,116,104,111,100,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,32,104,97,115,32,116,121,112,101,32,92,92,92,34,92,34,32,43,32,40,116,121,112,101,111,102,32,109,101,116,104,111,100,115,91,107,101,121,93,41,32,43,32,92,34,92,92,92,34,32,105,110,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,100,101,102,105,110,105,116,105,111,110,46,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,92,34,68,105,100,32,121,111,117,32,114,101,102,101,114,101,110,99,101,32,116,104,101,32,102,117,110,99,116,105,111,110,32,99,111,114,114,101,99,116,108,121,63,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,32,38,38,32,104,97,115,79,119,110,40,112,114,111,112,115,44,32,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,40,92,34,77,101,116,104,111,100,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,32,104,97,115,32,97,108,114,101,97,100,121,32,98,101,101,110,32,100,101,102,105,110,101,100,32,97,115,32,97,32,112,114,111,112,46,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,40,107,101,121,32,105,110,32,118,109,41,32,38,38,32,105,115,82,101,115,101,114,118,101,100,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,92,34,77,101,116,104,111,100,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,92,92,92,34,32,99,111,110,102,108,105,99,116,115,32,119,105,116,104,32,97,110,32,101,120,105,115,116,105,110,103,32,86,117,101,32,105,110,115,116,97,110,99,101,32,109,101,116,104,111,100,46,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,92,34,65,118,111,105,100,32,100,101,102,105,110,105,110,103,32,99,111,109,112,111,110,101,110,116,32,109,101,116,104,111,100,115,32,116,104,97,116,32,115,116,97,114,116,32,119,105,116,104,32,95,32,111,114,32,36,46,92,34,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,118,109,91,107,101,121,93,32,61,32,116,121,112,101,111,102,32,109,101,116,104,111,100,115,91,107,101,121,93,32,33,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,110,111,111,112,32,58,32,98,105,110,100,40,109,101,116,104,111,100,115,91,107,101,121,93,44,32,118,109,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,87,97,116,99,104,32,40,118,109,44,32,119,97,116,99,104,41,32,123,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,119,97,116,99,104,41,32,123,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,119,97,116,99,104,91,107,101,121,93,59,92,110,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,104,97,110,100,108,101,114,41,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,104,97,110,100,108,101,114,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,87,97,116,99,104,101,114,40,118,109,44,32,107,101,121,44,32,104,97,110,100,108,101,114,91,105,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,99,114,101,97,116,101,87,97,116,99,104,101,114,40,118,109,44,32,107,101,121,44,32,104,97,110,100,108,101,114,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,87,97,116,99,104,101,114,32,40,92,110,32,32,118,109,44,92,110,32,32,101,120,112,79,114,70,110,44,92,110,32,32,104,97,110,100,108,101,114,44,92,110,32,32,111,112,116,105,111,110,115,92,110,41,32,123,92,110,32,32,105,102,32,40,105,115,80,108,97,105,110,79,98,106,101,99,116,40,104,97,110,100,108,101,114,41,41,32,123,92,110,32,32,32,32,111,112,116,105,111,110,115,32,61,32,104,97,110,100,108,101,114,59,92,110,32,32,32,32,104,97,110,100,108,101,114,32,61,32,104,97,110,100,108,101,114,46,104,97,110,100,108,101,114,59,92,110,32,32,125,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,104,97,110,100,108,101,114,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,104,97,110,100,108,101,114,32,61,32,118,109,91,104,97,110,100,108,101,114,93,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,118,109,46,36,119,97,116,99,104,40,101,120,112,79,114,70,110,44,32,104,97,110,100,108,101,114,44,32,111,112,116,105,111,110,115,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,97,116,101,77,105,120,105,110,32,40,86,117,101,41,32,123,92,110,32,32,47,47,32,102,108,111,119,32,115,111,109,101,104,111,119,32,104,97,115,32,112,114,111,98,108,101,109,115,32,119,105,116,104,32,100,105,114,101,99,116,108,121,32,100,101,99,108,97,114,101,100,32,100,101,102,105,110,105,116,105,111,110,32,111,98,106,101,99,116,92,110,32,32,47,47,32,119,104,101,110,32,117,115,105,110,103,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,44,32,115,111,32,119,101,32,104,97,118,101,32,116,111,32,112,114,111,99,101,100,117,114,97,108,108,121,32,98,117,105,108,100,32,117,112,92,110,32,32,47,47,32,116,104,101,32,111,98,106,101,99,116,32,104,101,114,101,46,92,110,32,32,118,97,114,32,100,97,116,97,68,101,102,32,61,32,123,125,59,92,110,32,32,100,97,116,97,68,101,102,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,100,97,116,97,32,125,59,92,110,32,32,118,97,114,32,112,114,111,112,115,68,101,102,32,61,32,123,125,59,92,110,32,32,112,114,111,112,115,68,101,102,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,112,114,111,112,115,32,125,59,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,100,97,116,97,68,101,102,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,39,65,118,111,105,100,32,114,101,112,108,97,99,105,110,103,32,105,110,115,116,97,110,99,101,32,114,111,111,116,32,36,100,97,116,97,46,32,39,32,43,92,110,32,32,32,32,32,32,32,32,39,85,115,101,32,110,101,115,116,101,100,32,100,97,116,97,32,112,114,111,112,101,114,116,105,101,115,32,105,110,115,116,101,97,100,46,39,44,92,110,32,32,32,32,32,32,32,32,116,104,105,115,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,112,114,111,112,115,68,101,102,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,92,34,36,112,114,111,112,115,32,105,115,32,114,101,97,100,111,110,108,121,46,92,34,44,32,116,104,105,115,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,86,117,101,46,112,114,111,116,111,116,121,112,101,44,32,39,36,100,97,116,97,39,44,32,100,97,116,97,68,101,102,41,59,92,110,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,86,117,101,46,112,114,111,116,111,116,121,112,101,44,32,39,36,112,114,111,112,115,39,44,32,112,114,111,112,115,68,101,102,41,59,92,110,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,115,101,116,32,61,32,115,101,116,59,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,100,101,108,101,116,101,32,61,32,100,101,108,59,92,110,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,119,97,116,99,104,32,61,32,102,117,110,99,116,105,111,110,32,40,92,110,32,32,32,32,101,120,112,79,114,70,110,44,92,110,32,32,32,32,99,98,44,92,110,32,32,32,32,111,112,116,105,111,110,115,92,110,32,32,41,32,123,92,110,32,32,32,32,118,97,114,32,118,109,32,61,32,116,104,105,115,59,92,110,32,32,32,32,105,102,32,40,105,115,80,108,97,105,110,79,98,106,101,99,116,40,99,98,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,114,101,97,116,101,87,97,116,99,104,101,114,40,118,109,44,32,101,120,112,79,114,70,110,44,32,99,98,44,32,111,112,116,105,111,110,115,41,92,110,32,32,32,32,125,92,110,32,32,32,32,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,32,32,32,32,111,112,116,105,111,110,115,46,117,115,101,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,118,97,114,32,119,97,116,99,104,101,114,32,61,32,110,101,119,32,87,97,116,99,104,101,114,40,118,109,44,32,101,120,112,79,114,70,110,44,32,99,98,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,105,109,109,101,100,105,97,116,101,41,32,123,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,99,98,46,99,97,108,108,40,118,109,44,32,119,97,116,99,104,101,114,46,118,97,108,117,101,41,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,114,114,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,104,97,110,100,108,101,69,114,114,111,114,40,101,114,114,111,114,44,32,118,109,44,32,40,92,34,99,97,108,108,98,97,99,107,32,102,111,114,32,105,109,109,101,100,105,97,116,101,32,119,97,116,99,104,101,114,32,92,92,92,34,92,34,32,43,32,40,119,97,116,99,104,101,114,46,101,120,112,114,101,115,115,105,111,110,41,32,43,32,92,34,92,92,92,34,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,117,110,119,97,116,99,104,70,110,32,40,41,32,123,92,110,32,32,32,32,32,32,119,97,116,99,104,101,114,46,116,101,97,114,100,111,119,110,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,117,105,100,36,51,32,61,32,48,59,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,77,105,120,105,110,32,40,86,117,101,41,32,123,92,110,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,95,105,110,105,116,32,61,32,102,117,110,99,116,105,111,110,32,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,118,109,32,61,32,116,104,105,115,59,92,110,32,32,32,32,47,47,32,97,32,117,105,100,92,110,32,32,32,32,118,109,46,95,117,105,100,32,61,32,117,105,100,36,51,43,43,59,92,110,92,110,32,32,32,32,118,97,114,32,115,116,97,114,116,84,97,103,44,32,101,110,100,84,97,103,59,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,99,111,110,102,105,103,46,112,101,114,102,111,114,109,97,110,99,101,32,38,38,32,109,97,114,107,41,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,84,97,103,32,61,32,92,34,118,117,101,45,112,101,114,102,45,115,116,97,114,116,58,92,34,32,43,32,40,118,109,46,95,117,105,100,41,59,92,110,32,32,32,32,32,32,101,110,100,84,97,103,32,61,32,92,34,118,117,101,45,112,101,114,102,45,101,110,100,58,92,34,32,43,32,40,118,109,46,95,117,105,100,41,59,92,110,32,32,32,32,32,32,109,97,114,107,40,115,116,97,114,116,84,97,103,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,97,32,102,108,97,103,32,116,111,32,97,118,111,105,100,32,116,104,105,115,32,98,101,105,110,103,32,111,98,115,101,114,118,101,100,92,110,32,32,32,32,118,109,46,95,105,115,86,117,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,47,47,32,109,101,114,103,101,32,111,112,116,105,111,110,115,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,32,38,38,32,111,112,116,105,111,110,115,46,95,105,115,67,111,109,112,111,110,101,110,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,111,112,116,105,109,105,122,101,32,105,110,116,101,114,110,97,108,32,99,111,109,112,111,110,101,110,116,32,105,110,115,116,97,110,116,105,97,116,105,111,110,92,110,32,32,32,32,32,32,47,47,32,115,105,110,99,101,32,100,121,110,97,109,105,99,32,111,112,116,105,111,110,115,32,109,101,114,103,105,110,103,32,105,115,32,112,114,101,116,116,121,32,115,108,111,119,44,32,97,110,100,32,110,111,110,101,32,111,102,32,116,104,101,92,110,32,32,32,32,32,32,47,47,32,105,110,116,101,114,110,97,108,32,99,111,109,112,111,110,101,110,116,32,111,112,116,105,111,110,115,32,110,101,101,100,115,32,115,112,101,99,105,97,108,32,116,114,101,97,116,109,101,110,116,46,92,110,32,32,32,32,32,32,105,110,105,116,73,110,116,101,114,110,97,108,67,111,109,112,111,110,101,110,116,40,118,109,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,109,46,36,111,112,116,105,111,110,115,32,61,32,109,101,114,103,101,79,112,116,105,111,110,115,40,92,110,32,32,32,32,32,32,32,32,114,101,115,111,108,118,101,67,111,110,115,116,114,117,99,116,111,114,79,112,116,105,111,110,115,40,118,109,46,99,111,110,115,116,114,117,99,116,111,114,41,44,92,110,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,32,124,124,32,123,125,44,92,110,32,32,32,32,32,32,32,32,118,109,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,105,110,105,116,80,114,111,120,121,40,118,109,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,125,92,110,32,32,32,32,47,47,32,101,120,112,111,115,101,32,114,101,97,108,32,115,101,108,102,92,110,32,32,32,32,118,109,46,95,115,101,108,102,32,61,32,118,109,59,92,110,32,32,32,32,105,110,105,116,76,105,102,101,99,121,99,108,101,40,118,109,41,59,92,110,32,32,32,32,105,110,105,116,69,118,101,110,116,115,40,118,109,41,59,92,110,32,32,32,32,105,110,105,116,82,101,110,100,101,114,40,118,109,41,59,92,110,32,32,32,32,99,97,108,108,72,111,111,107,40,118,109,44,32,39,98,101,102,111,114,101,67,114,101,97,116,101,39,41,59,92,110,32,32,32,32,105,110,105,116,73,110,106,101,99,116,105,111,110,115,40,118,109,41,59,32,47,47,32,114,101,115,111,108,118,101,32,105,110,106,101,99,116,105,111,110,115,32,98,101,102,111,114,101,32,100,97,116,97,47,112,114,111,112,115,92,110,32,32,32,32,105,110,105,116,83,116,97,116,101,40,118,109,41,59,92,110,32,32,32,32,105,110,105,116,80,114,111,118,105,100,101,40,118,109,41,59,32,47,47,32,114,101,115,111,108,118,101,32,112,114,111,118,105,100,101,32,97,102,116,101,114,32,100,97,116,97,47,112,114,111,112,115,92,110,32,32,32,32,99,97,108,108,72,111,111,107,40,118,109,44,32,39,99,114,101,97,116,101,100,39,41,59,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,99,111,110,102,105,103,46,112,101,114,102,111,114,109,97,110,99,101,32,38,38,32,109,97,114,107,41,32,123,92,110,32,32,32,32,32,32,118,109,46,95,110,97,109,101,32,61,32,102,111,114,109,97,116,67,111,109,112,111,110,101,110,116,78,97,109,101,40,118,109,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,109,97,114,107,40,101,110,100,84,97,103,41,59,92,110,32,32,32,32,32,32,109,101,97,115,117,114,101,40,40,92,34,118,117,101,32,92,34,32,43,32,40,118,109,46,95,110,97,109,101,41,32,43,32,92,34,32,105,110,105,116,92,34,41,44,32,115,116,97,114,116,84,97,103,44,32,101,110,100,84,97,103,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,118,109,46,36,111,112,116,105,111,110,115,46,101,108,41,32,123,92,110,32,32,32,32,32,32,118,109,46,36,109,111,117,110,116,40,118,109,46,36,111,112,116,105,111,110,115,46,101,108,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,73,110,116,101,114,110,97,108,67,111,109,112,111,110,101,110,116,32,40,118,109,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,111,112,116,115,32,61,32,118,109,46,36,111,112,116,105,111,110,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,118,109,46,99,111,110,115,116,114,117,99,116,111,114,46,111,112,116,105,111,110,115,41,59,92,110,32,32,47,47,32,100,111,105,110,103,32,116,104,105,115,32,98,101,99,97,117,115,101,32,105,116,39,115,32,102,97,115,116,101,114,32,116,104,97,110,32,100,121,110,97,109,105,99,32,101,110,117,109,101,114,97,116,105,111,110,46,92,110,32,32,118,97,114,32,112,97,114,101,110,116,86,110,111,100,101,32,61,32,111,112,116,105,111,110,115,46,95,112,97,114,101,110,116,86,110,111,100,101,59,92,110,32,32,111,112,116,115,46,112,97,114,101,110,116,32,61,32,111,112,116,105,111,110,115,46,112,97,114,101,110,116,59,92,110,32,32,111,112,116,115,46,95,112,97,114,101,110,116,86,110,111,100,101,32,61,32,112,97,114,101,110,116,86,110,111,100,101,59,92,110,92,110,32,32,118,97,114,32,118,110,111,100,101,67,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,32,61,32,112,97,114,101,110,116,86,110,111,100,101,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,59,92,110,32,32,111,112,116,115,46,112,114,111,112,115,68,97,116,97,32,61,32,118,110,111,100,101,67,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,112,114,111,112,115,68,97,116,97,59,92,110,32,32,111,112,116,115,46,95,112,97,114,101,110,116,76,105,115,116,101,110,101,114,115,32,61,32,118,110,111,100,101,67,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,108,105,115,116,101,110,101,114,115,59,92,110,32,32,111,112,116,115,46,95,114,101,110,100,101,114,67,104,105,108,100,114,101,110,32,61,32,118,110,111,100,101,67,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,99,104,105,108,100,114,101,110,59,92,110,32,32,111,112,116,115,46,95,99,111,109,112,111,110,101,110,116,84,97,103,32,61,32,118,110,111,100,101,67,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,116,97,103,59,92,110,92,110,32,32,105,102,32,40,111,112,116,105,111,110,115,46,114,101,110,100,101,114,41,32,123,92,110,32,32,32,32,111,112,116,115,46,114,101,110,100,101,114,32,61,32,111,112,116,105,111,110,115,46,114,101,110,100,101,114,59,92,110,32,32,32,32,111,112,116,115,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,111,112,116,105,111,110,115,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,67,111,110,115,116,114,117,99,116,111,114,79,112,116,105,111,110,115,32,40,67,116,111,114,41,32,123,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,67,116,111,114,46,111,112,116,105,111,110,115,59,92,110,32,32,105,102,32,40,67,116,111,114,46,115,117,112,101,114,41,32,123,92,110,32,32,32,32,118,97,114,32,115,117,112,101,114,79,112,116,105,111,110,115,32,61,32,114,101,115,111,108,118,101,67,111,110,115,116,114,117,99,116,111,114,79,112,116,105,111,110,115,40,67,116,111,114,46,115,117,112,101,114,41,59,92,110,32,32,32,32,118,97,114,32,99,97,99,104,101,100,83,117,112,101,114,79,112,116,105,111,110,115,32,61,32,67,116,111,114,46,115,117,112,101,114,79,112,116,105,111,110,115,59,92,110,32,32,32,32,105,102,32,40,115,117,112,101,114,79,112,116,105,111,110,115,32,33,61,61,32,99,97,99,104,101,100,83,117,112,101,114,79,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,47,47,32,115,117,112,101,114,32,111,112,116,105,111,110,32,99,104,97,110,103,101,100,44,92,110,32,32,32,32,32,32,47,47,32,110,101,101,100,32,116,111,32,114,101,115,111,108,118,101,32,110,101,119,32,111,112,116,105,111,110,115,46,92,110,32,32,32,32,32,32,67,116,111,114,46,115,117,112,101,114,79,112,116,105,111,110,115,32,61,32,115,117,112,101,114,79,112,116,105,111,110,115,59,92,110,32,32,32,32,32,32,47,47,32,99,104,101,99,107,32,105,102,32,116,104,101,114,101,32,97,114,101,32,97,110,121,32,108,97,116,101,45,109,111,100,105,102,105,101,100,47,97,116,116,97,99,104,101,100,32,111,112,116,105,111,110,115,32,40,35,52,57,55,54,41,92,110,32,32,32,32,32,32,118,97,114,32,109,111,100,105,102,105,101,100,79,112,116,105,111,110,115,32,61,32,114,101,115,111,108,118,101,77,111,100,105,102,105,101,100,79,112,116,105,111,110,115,40,67,116,111,114,41,59,92,110,32,32,32,32,32,32,47,47,32,117,112,100,97,116,101,32,98,97,115,101,32,101,120,116,101,110,100,32,111,112,116,105,111,110,115,92,110,32,32,32,32,32,32,105,102,32,40,109,111,100,105,102,105,101,100,79,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,101,120,116,101,110,100,40,67,116,111,114,46,101,120,116,101,110,100,79,112,116,105,111,110,115,44,32,109,111,100,105,102,105,101,100,79,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,32,61,32,67,116,111,114,46,111,112,116,105,111,110,115,32,61,32,109,101,114,103,101,79,112,116,105,111,110,115,40,115,117,112,101,114,79,112,116,105,111,110,115,44,32,67,116,111,114,46,101,120,116,101,110,100,79,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,46,99,111,109,112,111,110,101,110,116,115,91,111,112,116,105,111,110,115,46,110,97,109,101,93,32,61,32,67,116,111,114,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,111,112,116,105,111,110,115,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,77,111,100,105,102,105,101,100,79,112,116,105,111,110,115,32,40,67,116,111,114,41,32,123,92,110,32,32,118,97,114,32,109,111,100,105,102,105,101,100,59,92,110,32,32,118,97,114,32,108,97,116,101,115,116,32,61,32,67,116,111,114,46,111,112,116,105,111,110,115,59,92,110,32,32,118,97,114,32,115,101,97,108,101,100,32,61,32,67,116,111,114,46,115,101,97,108,101,100,79,112,116,105,111,110,115,59,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,108,97,116,101,115,116,41,32,123,92,110,32,32,32,32,105,102,32,40,108,97,116,101,115,116,91,107,101,121,93,32,33,61,61,32,115,101,97,108,101,100,91,107,101,121,93,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,109,111,100,105,102,105,101,100,41,32,123,32,109,111,100,105,102,105,101,100,32,61,32,123,125,59,32,125,92,110,32,32,32,32,32,32,109,111,100,105,102,105,101,100,91,107,101,121,93,32,61,32,108,97,116,101,115,116,91,107,101,121,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,109,111,100,105,102,105,101,100,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,86,117,101,32,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,92,110,32,32,32,32,33,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,86,117,101,41,92,110,32,32,41,32,123,92,110,32,32,32,32,119,97,114,110,40,39,86,117,101,32,105,115,32,97,32,99,111,110,115,116,114,117,99,116,111,114,32,97,110,100,32,115,104,111,117,108,100,32,98,101,32,99,97,108,108,101,100,32,119,105,116,104,32,116,104,101,32,96,110,101,119,96,32,107,101,121,119,111,114,100,39,41,59,92,110,32,32,125,92,110,32,32,116,104,105,115,46,95,105,110,105,116,40,111,112,116,105,111,110,115,41,59,92,110,125,92,110,92,110,105,110,105,116,77,105,120,105,110,40,86,117,101,41,59,92,110,115,116,97,116,101,77,105,120,105,110,40,86,117,101,41,59,92,110,101,118,101,110,116,115,77,105,120,105,110,40,86,117,101,41,59,92,110,108,105,102,101,99,121,99,108,101,77,105,120,105,110,40,86,117,101,41,59,92,110,114,101,110,100,101,114,77,105,120,105,110,40,86,117,101,41,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,85,115,101,32,40,86,117,101,41,32,123,92,110,32,32,86,117,101,46,117,115,101,32,61,32,102,117,110,99,116,105,111,110,32,40,112,108,117,103,105,110,41,32,123,92,110,32,32,32,32,118,97,114,32,105,110,115,116,97,108,108,101,100,80,108,117,103,105,110,115,32,61,32,40,116,104,105,115,46,95,105,110,115,116,97,108,108,101,100,80,108,117,103,105,110,115,32,124,124,32,40,116,104,105,115,46,95,105,110,115,116,97,108,108,101,100,80,108,117,103,105,110,115,32,61,32,91,93,41,41,59,92,110,32,32,32,32,105,102,32,40,105,110,115,116,97,108,108,101,100,80,108,117,103,105,110,115,46,105,110,100,101,120,79,102,40,112,108,117,103,105,110,41,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,97,100,100,105,116,105,111,110,97,108,32,112,97,114,97,109,101,116,101,114,115,92,110,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,116,111,65,114,114,97,121,40,97,114,103,117,109,101,110,116,115,44,32,49,41,59,92,110,32,32,32,32,97,114,103,115,46,117,110,115,104,105,102,116,40,116,104,105,115,41,59,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,112,108,117,103,105,110,46,105,110,115,116,97,108,108,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,112,108,117,103,105,110,46,105,110,115,116,97,108,108,46,97,112,112,108,121,40,112,108,117,103,105,110,44,32,97,114,103,115,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,111,102,32,112,108,117,103,105,110,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,112,108,117,103,105,110,46,97,112,112,108,121,40,110,117,108,108,44,32,97,114,103,115,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,110,115,116,97,108,108,101,100,80,108,117,103,105,110,115,46,112,117,115,104,40,112,108,117,103,105,110,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,77,105,120,105,110,36,49,32,40,86,117,101,41,32,123,92,110,32,32,86,117,101,46,109,105,120,105,110,32,61,32,102,117,110,99,116,105,111,110,32,40,109,105,120,105,110,41,32,123,92,110,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,109,101,114,103,101,79,112,116,105,111,110,115,40,116,104,105,115,46,111,112,116,105,111,110,115,44,32,109,105,120,105,110,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,92,110,32,32,125,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,69,120,116,101,110,100,32,40,86,117,101,41,32,123,92,110,32,32,47,42,42,92,110,32,32,32,42,32,69,97,99,104,32,105,110,115,116,97,110,99,101,32,99,111,110,115,116,114,117,99,116,111,114,44,32,105,110,99,108,117,100,105,110,103,32,86,117,101,44,32,104,97,115,32,97,32,117,110,105,113,117,101,92,110,32,32,32,42,32,99,105,100,46,32,84,104,105,115,32,101,110,97,98,108,101,115,32,117,115,32,116,111,32,99,114,101,97,116,101,32,119,114,97,112,112,101,100,32,92,34,99,104,105,108,100,92,110,32,32,32,42,32,99,111,110,115,116,114,117,99,116,111,114,115,92,34,32,102,111,114,32,112,114,111,116,111,116,121,112,97,108,32,105,110,104,101,114,105,116,97,110,99,101,32,97,110,100,32,99,97,99,104,101,32,116,104,101,109,46,92,110,32,32,32,42,47,92,110,32,32,86,117,101,46,99,105,100,32,61,32,48,59,92,110,32,32,118,97,114,32,99,105,100,32,61,32,49,59,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,108,97,115,115,32,105,110,104,101,114,105,116,97,110,99,101,92,110,32,32,32,42,47,92,110,32,32,86,117,101,46,101,120,116,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,101,120,116,101,110,100,79,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,101,120,116,101,110,100,79,112,116,105,111,110,115,32,61,32,101,120,116,101,110,100,79,112,116,105,111,110,115,32,124,124,32,123,125,59,92,110,32,32,32,32,118,97,114,32,83,117,112,101,114,32,61,32,116,104,105,115,59,92,110,32,32,32,32,118,97,114,32,83,117,112,101,114,73,100,32,61,32,83,117,112,101,114,46,99,105,100,59,92,110,32,32,32,32,118,97,114,32,99,97,99,104,101,100,67,116,111,114,115,32,61,32,101,120,116,101,110,100,79,112,116,105,111,110,115,46,95,67,116,111,114,32,124,124,32,40,101,120,116,101,110,100,79,112,116,105,111,110,115,46,95,67,116,111,114,32,61,32,123,125,41,59,92,110,32,32,32,32,105,102,32,40,99,97,99,104,101,100,67,116,111,114,115,91,83,117,112,101,114,73,100,93,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,97,99,104,101,100,67,116,111,114,115,91,83,117,112,101,114,73,100,93,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,101,120,116,101,110,100,79,112,116,105,111,110,115,46,110,97,109,101,32,124,124,32,83,117,112,101,114,46,111,112,116,105,111,110,115,46,110,97,109,101,59,92,110,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,118,97,108,105,100,97,116,101,67,111,109,112,111,110,101,110,116,78,97,109,101,40,110,97,109,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,83,117,98,32,61,32,102,117,110,99,116,105,111,110,32,86,117,101,67,111,109,112,111,110,101,110,116,32,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,95,105,110,105,116,40,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,125,59,92,110,32,32,32,32,83,117,98,46,112,114,111,116,111,116,121,112,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,83,117,112,101,114,46,112,114,111,116,111,116,121,112,101,41,59,92,110,32,32,32,32,83,117,98,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,32,61,32,83,117,98,59,92,110,32,32,32,32,83,117,98,46,99,105,100,32,61,32,99,105,100,43,43,59,92,110,32,32,32,32,83,117,98,46,111,112,116,105,111,110,115,32,61,32,109,101,114,103,101,79,112,116,105,111,110,115,40,92,110,32,32,32,32,32,32,83,117,112,101,114,46,111,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,101,120,116,101,110,100,79,112,116,105,111,110,115,92,110,32,32,32,32,41,59,92,110,32,32,32,32,83,117,98,91,39,115,117,112,101,114,39,93,32,61,32,83,117,112,101,114,59,92,110,92,110,32,32,32,32,47,47,32,70,111,114,32,112,114,111,112,115,32,97,110,100,32,99,111,109,112,117,116,101,100,32,112,114,111,112,101,114,116,105,101,115,44,32,119,101,32,100,101,102,105,110,101,32,116,104,101,32,112,114,111,120,121,32,103,101,116,116,101,114,115,32,111,110,92,110,32,32,32,32,47,47,32,116,104,101,32,86,117,101,32,105,110,115,116,97,110,99,101,115,32,97,116,32,101,120,116,101,110,115,105,111,110,32,116,105,109,101,44,32,111,110,32,116,104,101,32,101,120,116,101,110,100,101,100,32,112,114,111,116,111,116,121,112,101,46,32,84,104,105,115,92,110,32,32,32,32,47,47,32,97,118,111,105,100,115,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,32,99,97,108,108,115,32,102,111,114,32,101,97,99,104,32,105,110,115,116,97,110,99,101,32,99,114,101,97,116,101,100,46,92,110,32,32,32,32,105,102,32,40,83,117,98,46,111,112,116,105,111,110,115,46,112,114,111,112,115,41,32,123,92,110,32,32,32,32,32,32,105,110,105,116,80,114,111,112,115,36,49,40,83,117,98,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,83,117,98,46,111,112,116,105,111,110,115,46,99,111,109,112,117,116,101,100,41,32,123,92,110,32,32,32,32,32,32,105,110,105,116,67,111,109,112,117,116,101,100,36,49,40,83,117,98,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,97,108,108,111,119,32,102,117,114,116,104,101,114,32,101,120,116,101,110,115,105,111,110,47,109,105,120,105,110,47,112,108,117,103,105,110,32,117,115,97,103,101,92,110,32,32,32,32,83,117,98,46,101,120,116,101,110,100,32,61,32,83,117,112,101,114,46,101,120,116,101,110,100,59,92,110,32,32,32,32,83,117,98,46,109,105,120,105,110,32,61,32,83,117,112,101,114,46,109,105,120,105,110,59,92,110,32,32,32,32,83,117,98,46,117,115,101,32,61,32,83,117,112,101,114,46,117,115,101,59,92,110,92,110,32,32,32,32,47,47,32,99,114,101,97,116,101,32,97,115,115,101,116,32,114,101,103,105,115,116,101,114,115,44,32,115,111,32,101,120,116,101,110,100,101,100,32,99,108,97,115,115,101,115,92,110,32,32,32,32,47,47,32,99,97,110,32,104,97,118,101,32,116,104,101,105,114,32,112,114,105,118,97,116,101,32,97,115,115,101,116,115,32,116,111,111,46,92,110,32,32,32,32,65,83,83,69,84,95,84,89,80,69,83,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,83,117,98,91,116,121,112,101,93,32,61,32,83,117,112,101,114,91,116,121,112,101,93,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,47,47,32,101,110,97,98,108,101,32,114,101,99,117,114,115,105,118,101,32,115,101,108,102,45,108,111,111,107,117,112,92,110,32,32,32,32,105,102,32,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,83,117,98,46,111,112,116,105,111,110,115,46,99,111,109,112,111,110,101,110,116,115,91,110,97,109,101,93,32,61,32,83,117,98,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,107,101,101,112,32,97,32,114,101,102,101,114,101,110,99,101,32,116,111,32,116,104,101,32,115,117,112,101,114,32,111,112,116,105,111,110,115,32,97,116,32,101,120,116,101,110,115,105,111,110,32,116,105,109,101,46,92,110,32,32,32,32,47,47,32,108,97,116,101,114,32,97,116,32,105,110,115,116,97,110,116,105,97,116,105,111,110,32,119,101,32,99,97,110,32,99,104,101,99,107,32,105,102,32,83,117,112,101,114,39,115,32,111,112,116,105,111,110,115,32,104,97,118,101,92,110,32,32,32,32,47,47,32,98,101,101,110,32,117,112,100,97,116,101,100,46,92,110,32,32,32,32,83,117,98,46,115,117,112,101,114,79,112,116,105,111,110,115,32,61,32,83,117,112,101,114,46,111,112,116,105,111,110,115,59,92,110,32,32,32,32,83,117,98,46,101,120,116,101,110,100,79,112,116,105,111,110,115,32,61,32,101,120,116,101,110,100,79,112,116,105,111,110,115,59,92,110,32,32,32,32,83,117,98,46,115,101,97,108,101,100,79,112,116,105,111,110,115,32,61,32,101,120,116,101,110,100,40,123,125,44,32,83,117,98,46,111,112,116,105,111,110,115,41,59,92,110,92,110,32,32,32,32,47,47,32,99,97,99,104,101,32,99,111,110,115,116,114,117,99,116,111,114,92,110,32,32,32,32,99,97,99,104,101,100,67,116,111,114,115,91,83,117,112,101,114,73,100,93,32,61,32,83,117,98,59,92,110,32,32,32,32,114,101,116,117,114,110,32,83,117,98,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,80,114,111,112,115,36,49,32,40,67,111,109,112,41,32,123,92,110,32,32,118,97,114,32,112,114,111,112,115,32,61,32,67,111,109,112,46,111,112,116,105,111,110,115,46,112,114,111,112,115,59,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,112,114,111,112,115,41,32,123,92,110,32,32,32,32,112,114,111,120,121,40,67,111,109,112,46,112,114,111,116,111,116,121,112,101,44,32,92,34,95,112,114,111,112,115,92,34,44,32,107,101,121,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,67,111,109,112,117,116,101,100,36,49,32,40,67,111,109,112,41,32,123,92,110,32,32,118,97,114,32,99,111,109,112,117,116,101,100,32,61,32,67,111,109,112,46,111,112,116,105,111,110,115,46,99,111,109,112,117,116,101,100,59,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,99,111,109,112,117,116,101,100,41,32,123,92,110,32,32,32,32,100,101,102,105,110,101,67,111,109,112,117,116,101,100,40,67,111,109,112,46,112,114,111,116,111,116,121,112,101,44,32,107,101,121,44,32,99,111,109,112,117,116,101,100,91,107,101,121,93,41,59,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,65,115,115,101,116,82,101,103,105,115,116,101,114,115,32,40,86,117,101,41,32,123,92,110,32,32,47,42,42,92,110,32,32,32,42,32,67,114,101,97,116,101,32,97,115,115,101,116,32,114,101,103,105,115,116,114,97,116,105,111,110,32,109,101,116,104,111,100,115,46,92,110,32,32,32,42,47,92,110,32,32,65,83,83,69,84,95,84,89,80,69,83,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,121,112,101,41,32,123,92,110,32,32,32,32,86,117,101,91,116,121,112,101,93,32,61,32,102,117,110,99,116,105,111,110,32,40,92,110,32,32,32,32,32,32,105,100,44,92,110,32,32,32,32,32,32,100,101,102,105,110,105,116,105,111,110,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,100,101,102,105,110,105,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,91,116,121,112,101,32,43,32,39,115,39,93,91,105,100,93,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,116,121,112,101,32,61,61,61,32,39,99,111,109,112,111,110,101,110,116,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,105,100,97,116,101,67,111,109,112,111,110,101,110,116,78,97,109,101,40,105,100,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,99,111,109,112,111,110,101,110,116,39,32,38,38,32,105,115,80,108,97,105,110,79,98,106,101,99,116,40,100,101,102,105,110,105,116,105,111,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,101,102,105,110,105,116,105,111,110,46,110,97,109,101,32,61,32,100,101,102,105,110,105,116,105,111,110,46,110,97,109,101,32,124,124,32,105,100,59,92,110,32,32,32,32,32,32,32,32,32,32,100,101,102,105,110,105,116,105,111,110,32,61,32,116,104,105,115,46,111,112,116,105,111,110,115,46,95,98,97,115,101,46,101,120,116,101,110,100,40,100,101,102,105,110,105,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,121,112,101,32,61,61,61,32,39,100,105,114,101,99,116,105,118,101,39,32,38,38,32,116,121,112,101,111,102,32,100,101,102,105,110,105,116,105,111,110,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,101,102,105,110,105,116,105,111,110,32,61,32,123,32,98,105,110,100,58,32,100,101,102,105,110,105,116,105,111,110,44,32,117,112,100,97,116,101,58,32,100,101,102,105,110,105,116,105,111,110,32,125,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,91,116,121,112,101,32,43,32,39,115,39,93,91,105,100,93,32,61,32,100,101,102,105,110,105,116,105,111,110,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,102,105,110,105,116,105,111,110,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,67,111,109,112,111,110,101,110,116,78,97,109,101,32,40,111,112,116,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,111,112,116,115,32,38,38,32,40,111,112,116,115,46,67,116,111,114,46,111,112,116,105,111,110,115,46,110,97,109,101,32,124,124,32,111,112,116,115,46,116,97,103,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,97,116,99,104,101,115,32,40,112,97,116,116,101,114,110,44,32,110,97,109,101,41,32,123,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,112,97,116,116,101,114,110,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,97,116,116,101,114,110,46,105,110,100,101,120,79,102,40,110,97,109,101,41,32,62,32,45,49,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,111,102,32,112,97,116,116,101,114,110,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,97,116,116,101,114,110,46,115,112,108,105,116,40,39,44,39,41,46,105,110,100,101,120,79,102,40,110,97,109,101,41,32,62,32,45,49,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,82,101,103,69,120,112,40,112,97,116,116,101,114,110,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,97,116,116,101,114,110,46,116,101,115,116,40,110,97,109,101,41,92,110,32,32,125,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,114,117,110,101,67,97,99,104,101,32,40,107,101,101,112,65,108,105,118,101,73,110,115,116,97,110,99,101,44,32,102,105,108,116,101,114,41,32,123,92,110,32,32,118,97,114,32,99,97,99,104,101,32,61,32,107,101,101,112,65,108,105,118,101,73,110,115,116,97,110,99,101,46,99,97,99,104,101,59,92,110,32,32,118,97,114,32,107,101,121,115,32,61,32,107,101,101,112,65,108,105,118,101,73,110,115,116,97,110,99,101,46,107,101,121,115,59,92,110,32,32,118,97,114,32,95,118,110,111,100,101,32,61,32,107,101,101,112,65,108,105,118,101,73,110,115,116,97,110,99,101,46,95,118,110,111,100,101,59,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,99,97,99,104,101,41,32,123,92,110,32,32,32,32,118,97,114,32,99,97,99,104,101,100,78,111,100,101,32,61,32,99,97,99,104,101,91,107,101,121,93,59,92,110,32,32,32,32,105,102,32,40,99,97,99,104,101,100,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,103,101,116,67,111,109,112,111,110,101,110,116,78,97,109,101,40,99,97,99,104,101,100,78,111,100,101,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,105,102,32,40,110,97,109,101,32,38,38,32,33,102,105,108,116,101,114,40,110,97,109,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,112,114,117,110,101,67,97,99,104,101,69,110,116,114,121,40,99,97,99,104,101,44,32,107,101,121,44,32,107,101,121,115,44,32,95,118,110,111,100,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,114,117,110,101,67,97,99,104,101,69,110,116,114,121,32,40,92,110,32,32,99,97,99,104,101,44,92,110,32,32,107,101,121,44,92,110,32,32,107,101,121,115,44,92,110,32,32,99,117,114,114,101,110,116,92,110,41,32,123,92,110,32,32,118,97,114,32,99,97,99,104,101,100,36,36,49,32,61,32,99,97,99,104,101,91,107,101,121,93,59,92,110,32,32,105,102,32,40,99,97,99,104,101,100,36,36,49,32,38,38,32,40,33,99,117,114,114,101,110,116,32,124,124,32,99,97,99,104,101,100,36,36,49,46,116,97,103,32,33,61,61,32,99,117,114,114,101,110,116,46,116,97,103,41,41,32,123,92,110,32,32,32,32,99,97,99,104,101,100,36,36,49,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,36,100,101,115,116,114,111,121,40,41,59,92,110,32,32,125,92,110,32,32,99,97,99,104,101,91,107,101,121,93,32,61,32,110,117,108,108,59,92,110,32,32,114,101,109,111,118,101,40,107,101,121,115,44,32,107,101,121,41,59,92,110,125,92,110,92,110,118,97,114,32,112,97,116,116,101,114,110,84,121,112,101,115,32,61,32,91,83,116,114,105,110,103,44,32,82,101,103,69,120,112,44,32,65,114,114,97,121,93,59,92,110,92,110,118,97,114,32,75,101,101,112,65,108,105,118,101,32,61,32,123,92,110,32,32,110,97,109,101,58,32,39,107,101,101,112,45,97,108,105,118,101,39,44,92,110,32,32,97,98,115,116,114,97,99,116,58,32,116,114,117,101,44,92,110,92,110,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,105,110,99,108,117,100,101,58,32,112,97,116,116,101,114,110,84,121,112,101,115,44,92,110,32,32,32,32,101,120,99,108,117,100,101,58,32,112,97,116,116,101,114,110,84,121,112,101,115,44,92,110,32,32,32,32,109,97,120,58,32,91,83,116,114,105,110,103,44,32,78,117,109,98,101,114,93,92,110,32,32,125,44,92,110,92,110,32,32,99,114,101,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,100,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,99,97,99,104,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,32,32,116,104,105,115,46,107,101,121,115,32,61,32,91,93,59,92,110,32,32,125,44,92,110,92,110,32,32,100,101,115,116,114,111,121,101,100,58,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,101,100,32,40,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,116,104,105,115,46,99,97,99,104,101,41,32,123,92,110,32,32,32,32,32,32,112,114,117,110,101,67,97,99,104,101,69,110,116,114,121,40,116,104,105,115,46,99,97,99,104,101,44,32,107,101,121,44,32,116,104,105,115,46,107,101,121,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,92,110,32,32,109,111,117,110,116,101,100,58,32,102,117,110,99,116,105,111,110,32,109,111,117,110,116,101,100,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,116,104,105,115,46,36,119,97,116,99,104,40,39,105,110,99,108,117,100,101,39,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,41,32,123,92,110,32,32,32,32,32,32,112,114,117,110,101,67,97,99,104,101,40,116,104,105,115,36,49,44,32,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,32,114,101,116,117,114,110,32,109,97,116,99,104,101,115,40,118,97,108,44,32,110,97,109,101,41,59,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,116,104,105,115,46,36,119,97,116,99,104,40,39,101,120,99,108,117,100,101,39,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,41,32,123,92,110,32,32,32,32,32,32,112,114,117,110,101,67,97,99,104,101,40,116,104,105,115,36,49,44,32,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,32,114,101,116,117,114,110,32,33,109,97,116,99,104,101,115,40,118,97,108,44,32,110,97,109,101,41,59,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,115,108,111,116,32,61,32,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,59,92,110,32,32,32,32,118,97,114,32,118,110,111,100,101,32,61,32,103,101,116,70,105,114,115,116,67,111,109,112,111,110,101,110,116,67,104,105,108,100,40,115,108,111,116,41,59,92,110,32,32,32,32,118,97,114,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,32,61,32,118,110,111,100,101,32,38,38,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,59,92,110,32,32,32,32,105,102,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,47,47,32,99,104,101,99,107,32,112,97,116,116,101,114,110,92,110,32,32,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,103,101,116,67,111,109,112,111,110,101,110,116,78,97,109,101,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,102,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,118,97,114,32,105,110,99,108,117,100,101,32,61,32,114,101,102,46,105,110,99,108,117,100,101,59,92,110,32,32,32,32,32,32,118,97,114,32,101,120,99,108,117,100,101,32,61,32,114,101,102,46,101,120,99,108,117,100,101,59,92,110,32,32,32,32,32,32,105,102,32,40,92,110,32,32,32,32,32,32,32,32,47,47,32,110,111,116,32,105,110,99,108,117,100,101,100,92,110,32,32,32,32,32,32,32,32,40,105,110,99,108,117,100,101,32,38,38,32,40,33,110,97,109,101,32,124,124,32,33,109,97,116,99,104,101,115,40,105,110,99,108,117,100,101,44,32,110,97,109,101,41,41,41,32,124,124,92,110,32,32,32,32,32,32,32,32,47,47,32,101,120,99,108,117,100,101,100,92,110,32,32,32,32,32,32,32,32,40,101,120,99,108,117,100,101,32,38,38,32,110,97,109,101,32,38,38,32,109,97,116,99,104,101,115,40,101,120,99,108,117,100,101,44,32,110,97,109,101,41,41,92,110,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,110,111,100,101,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,97,114,32,114,101,102,36,49,32,61,32,116,104,105,115,59,92,110,32,32,32,32,32,32,118,97,114,32,99,97,99,104,101,32,61,32,114,101,102,36,49,46,99,97,99,104,101,59,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,115,32,61,32,114,101,102,36,49,46,107,101,121,115,59,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,118,110,111,100,101,46,107,101,121,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,47,47,32,115,97,109,101,32,99,111,110,115,116,114,117,99,116,111,114,32,109,97,121,32,103,101,116,32,114,101,103,105,115,116,101,114,101,100,32,97,115,32,100,105,102,102,101,114,101,110,116,32,108,111,99,97,108,32,99,111,109,112,111,110,101,110,116,115,92,110,32,32,32,32,32,32,32,32,47,47,32,115,111,32,99,105,100,32,97,108,111,110,101,32,105,115,32,110,111,116,32,101,110,111,117,103,104,32,40,35,51,50,54,57,41,92,110,32,32,32,32,32,32,32,32,63,32,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,67,116,111,114,46,99,105,100,32,43,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,116,97,103,32,63,32,40,92,34,58,58,92,34,32,43,32,40,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,116,97,103,41,41,32,58,32,39,39,41,92,110,32,32,32,32,32,32,32,32,58,32,118,110,111,100,101,46,107,101,121,59,92,110,32,32,32,32,32,32,105,102,32,40,99,97,99,104,101,91,107,101,121,93,41,32,123,92,110,32,32,32,32,32,32,32,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,32,61,32,99,97,99,104,101,91,107,101,121,93,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,59,92,110,32,32,32,32,32,32,32,32,47,47,32,109,97,107,101,32,99,117,114,114,101,110,116,32,107,101,121,32,102,114,101,115,104,101,115,116,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,40,107,101,121,115,44,32,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,107,101,121,115,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,99,97,99,104,101,91,107,101,121,93,32,61,32,118,110,111,100,101,59,92,110,32,32,32,32,32,32,32,32,107,101,121,115,46,112,117,115,104,40,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,47,47,32,112,114,117,110,101,32,111,108,100,101,115,116,32,101,110,116,114,121,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,109,97,120,32,38,38,32,107,101,121,115,46,108,101,110,103,116,104,32,62,32,112,97,114,115,101,73,110,116,40,116,104,105,115,46,109,97,120,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,117,110,101,67,97,99,104,101,69,110,116,114,121,40,99,97,99,104,101,44,32,107,101,121,115,91,48,93,44,32,107,101,121,115,44,32,116,104,105,115,46,95,118,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,110,111,100,101,46,100,97,116,97,46,107,101,101,112,65,108,105,118,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,118,110,111,100,101,32,124,124,32,40,115,108,111,116,32,38,38,32,115,108,111,116,91,48,93,41,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,98,117,105,108,116,73,110,67,111,109,112,111,110,101,110,116,115,32,61,32,123,92,110,32,32,75,101,101,112,65,108,105,118,101,58,32,75,101,101,112,65,108,105,118,101,92,110,125,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,105,116,71,108,111,98,97,108,65,80,73,32,40,86,117,101,41,32,123,92,110,32,32,47,47,32,99,111,110,102,105,103,92,110,32,32,118,97,114,32,99,111,110,102,105,103,68,101,102,32,61,32,123,125,59,92,110,32,32,99,111,110,102,105,103,68,101,102,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,99,111,110,102,105,103,59,32,125,59,92,110,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,99,111,110,102,105,103,68,101,102,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,39,68,111,32,110,111,116,32,114,101,112,108,97,99,101,32,116,104,101,32,86,117,101,46,99,111,110,102,105,103,32,111,98,106,101,99,116,44,32,115,101,116,32,105,110,100,105,118,105,100,117,97,108,32,102,105,101,108,100,115,32,105,110,115,116,101,97,100,46,39,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,86,117,101,44,32,39,99,111,110,102,105,103,39,44,32,99,111,110,102,105,103,68,101,102,41,59,92,110,92,110,32,32,47,47,32,101,120,112,111,115,101,100,32,117,116,105,108,32,109,101,116,104,111,100,115,46,92,110,32,32,47,47,32,78,79,84,69,58,32,116,104,101,115,101,32,97,114,101,32,110,111,116,32,99,111,110,115,105,100,101,114,101,100,32,112,97,114,116,32,111,102,32,116,104,101,32,112,117,98,108,105,99,32,65,80,73,32,45,32,97,118,111,105,100,32,114,101,108,121,105,110,103,32,111,110,92,110,32,32,47,47,32,116,104,101,109,32,117,110,108,101,115,115,32,121,111,117,32,97,114,101,32,97,119,97,114,101,32,111,102,32,116,104,101,32,114,105,115,107,46,92,110,32,32,86,117,101,46,117,116,105,108,32,61,32,123,92,110,32,32,32,32,119,97,114,110,58,32,119,97,114,110,44,92,110,32,32,32,32,101,120,116,101,110,100,58,32,101,120,116,101,110,100,44,92,110,32,32,32,32,109,101,114,103,101,79,112,116,105,111,110,115,58,32,109,101,114,103,101,79,112,116,105,111,110,115,44,92,110,32,32,32,32,100,101,102,105,110,101,82,101,97,99,116,105,118,101,58,32,100,101,102,105,110,101,82,101,97,99,116,105,118,101,36,36,49,92,110,32,32,125,59,92,110,92,110,32,32,86,117,101,46,115,101,116,32,61,32,115,101,116,59,92,110,32,32,86,117,101,46,100,101,108,101,116,101,32,61,32,100,101,108,59,92,110,32,32,86,117,101,46,110,101,120,116,84,105,99,107,32,61,32,110,101,120,116,84,105,99,107,59,92,110,92,110,32,32,47,47,32,50,46,54,32,101,120,112,108,105,99,105,116,32,111,98,115,101,114,118,97,98,108,101,32,65,80,73,92,110,32,32,86,117,101,46,111,98,115,101,114,118,97,98,108,101,32,61,32,102,117,110,99,116,105,111,110,32,40,111,98,106,41,32,123,92,110,32,32,32,32,111,98,115,101,114,118,101,40,111,98,106,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,111,98,106,92,110,32,32,125,59,92,110,92,110,32,32,86,117,101,46,111,112,116,105,111,110,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,65,83,83,69,84,95,84,89,80,69,83,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,121,112,101,41,32,123,92,110,32,32,32,32,86,117,101,46,111,112,116,105,111,110,115,91,116,121,112,101,32,43,32,39,115,39,93,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,47,47,32,116,104,105,115,32,105,115,32,117,115,101,100,32,116,111,32,105,100,101,110,116,105,102,121,32,116,104,101,32,92,34,98,97,115,101,92,34,32,99,111,110,115,116,114,117,99,116,111,114,32,116,111,32,101,120,116,101,110,100,32,97,108,108,32,112,108,97,105,110,45,111,98,106,101,99,116,92,110,32,32,47,47,32,99,111,109,112,111,110,101,110,116,115,32,119,105,116,104,32,105,110,32,87,101,101,120,39,115,32,109,117,108,116,105,45,105,110,115,116,97,110,99,101,32,115,99,101,110,97,114,105,111,115,46,92,110,32,32,86,117,101,46,111,112,116,105,111,110,115,46,95,98,97,115,101,32,61,32,86,117,101,59,92,110,92,110,32,32,101,120,116,101,110,100,40,86,117,101,46,111,112,116,105,111,110,115,46,99,111,109,112,111,110,101,110,116,115,44,32,98,117,105,108,116,73,110,67,111,109,112,111,110,101,110,116,115,41,59,92,110,92,110,32,32,105,110,105,116,85,115,101,40,86,117,101,41,59,92,110,32,32,105,110,105,116,77,105,120,105,110,36,49,40,86,117,101,41,59,92,110,32,32,105,110,105,116,69,120,116,101,110,100,40,86,117,101,41,59,92,110,32,32,105,110,105,116,65,115,115,101,116,82,101,103,105,115,116,101,114,115,40,86,117,101,41,59,92,110,125,92,110,92,110,105,110,105,116,71,108,111,98,97,108,65,80,73,40,86,117,101,41,59,92,110,92,110,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,86,117,101,46,112,114,111,116,111,116,121,112,101,44,32,39,36,105,115,83,101,114,118,101,114,39,44,32,123,92,110,32,32,103,101,116,58,32,105,115,83,101,114,118,101,114,82,101,110,100,101,114,105,110,103,92,110,125,41,59,92,110,92,110,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,86,117,101,46,112,114,111,116,111,116,121,112,101,44,32,39,36,115,115,114,67,111,110,116,101,120,116,39,44,32,123,92,110,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,103,101,116,32,40,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,118,110,111,100,101,32,38,38,32,116,104,105,115,46,36,118,110,111,100,101,46,115,115,114,67,111,110,116,101,120,116,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,32,101,120,112,111,115,101,32,70,117,110,99,116,105,111,110,97,108,82,101,110,100,101,114,67,111,110,116,101,120,116,32,102,111,114,32,115,115,114,32,114,117,110,116,105,109,101,32,104,101,108,112,101,114,32,105,110,115,116,97,108,108,97,116,105,111,110,92,110,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,86,117,101,44,32,39,70,117,110,99,116,105,111,110,97,108,82,101,110,100,101,114,67,111,110,116,101,120,116,39,44,32,123,92,110,32,32,118,97,108,117,101,58,32,70,117,110,99,116,105,111,110,97,108,82,101,110,100,101,114,67,111,110,116,101,120,116,92,110,125,41,59,92,110,92,110,86,117,101,46,118,101,114,115,105,111,110,32,61,32,39,50,46,54,46,49,50,39,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,47,32,116,104,101,115,101,32,97,114,101,32,114,101,115,101,114,118,101,100,32,102,111,114,32,119,101,98,32,98,101,99,97,117,115,101,32,116,104,101,121,32,97,114,101,32,100,105,114,101,99,116,108,121,32,99,111,109,112,105,108,101,100,32,97,119,97,121,92,110,47,47,32,100,117,114,105,110,103,32,116,101,109,112,108,97,116,101,32,99,111,109,112,105,108,97,116,105,111,110,92,110,118,97,114,32,105,115,82,101,115,101,114,118,101,100,65,116,116,114,32,61,32,109,97,107,101,77,97,112,40,39,115,116,121,108,101,44,99,108,97,115,115,39,41,59,92,110,92,110,47,47,32,97,116,116,114,105,98,117,116,101,115,32,116,104,97,116,32,115,104,111,117,108,100,32,98,101,32,117,115,105,110,103,32,112,114,111,112,115,32,102,111,114,32,98,105,110,100,105,110,103,92,110,118,97,114,32,97,99,99,101,112,116,86,97,108,117,101,32,61,32,109,97,107,101,77,97,112,40,39,105,110,112,117,116,44,116,101,120,116,97,114,101,97,44,111,112,116,105,111,110,44,115,101,108,101,99,116,44,112,114,111,103,114,101,115,115,39,41,59,92,110,118,97,114,32,109,117,115,116,85,115,101,80,114,111,112,32,61,32,102,117,110,99,116,105,111,110,32,40,116,97,103,44,32,116,121,112,101,44,32,97,116,116,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,92,110,32,32,32,32,40,97,116,116,114,32,61,61,61,32,39,118,97,108,117,101,39,32,38,38,32,97,99,99,101,112,116,86,97,108,117,101,40,116,97,103,41,41,32,38,38,32,116,121,112,101,32,33,61,61,32,39,98,117,116,116,111,110,39,32,124,124,92,110,32,32,32,32,40,97,116,116,114,32,61,61,61,32,39,115,101,108,101,99,116,101,100,39,32,38,38,32,116,97,103,32,61,61,61,32,39,111,112,116,105,111,110,39,41,32,124,124,92,110,32,32,32,32,40,97,116,116,114,32,61,61,61,32,39,99,104,101,99,107,101,100,39,32,38,38,32,116,97,103,32,61,61,61,32,39,105,110,112,117,116,39,41,32,124,124,92,110,32,32,32,32,40,97,116,116,114,32,61,61,61,32,39,109,117,116,101,100,39,32,38,38,32,116,97,103,32,61,61,61,32,39,118,105,100,101,111,39,41,92,110,32,32,41,92,110,125,59,92,110,92,110,118,97,114,32,105,115,69,110,117,109,101,114,97,116,101,100,65,116,116,114,32,61,32,109,97,107,101,77,97,112,40,39,99,111,110,116,101,110,116,101,100,105,116,97,98,108,101,44,100,114,97,103,103,97,98,108,101,44,115,112,101,108,108,99,104,101,99,107,39,41,59,92,110,92,110,118,97,114,32,105,115,86,97,108,105,100,67,111,110,116,101,110,116,69,100,105,116,97,98,108,101,86,97,108,117,101,32,61,32,109,97,107,101,77,97,112,40,39,101,118,101,110,116,115,44,99,97,114,101,116,44,116,121,112,105,110,103,44,112,108,97,105,110,116,101,120,116,45,111,110,108,121,39,41,59,92,110,92,110,118,97,114,32,99,111,110,118,101,114,116,69,110,117,109,101,114,97,116,101,100,86,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,32,40,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,70,97,108,115,121,65,116,116,114,86,97,108,117,101,40,118,97,108,117,101,41,32,124,124,32,118,97,108,117,101,32,61,61,61,32,39,102,97,108,115,101,39,92,110,32,32,32,32,63,32,39,102,97,108,115,101,39,92,110,32,32,32,32,47,47,32,97,108,108,111,119,32,97,114,98,105,116,114,97,114,121,32,115,116,114,105,110,103,32,118,97,108,117,101,32,102,111,114,32,99,111,110,116,101,110,116,101,100,105,116,97,98,108,101,92,110,32,32,32,32,58,32,107,101,121,32,61,61,61,32,39,99,111,110,116,101,110,116,101,100,105,116,97,98,108,101,39,32,38,38,32,105,115,86,97,108,105,100,67,111,110,116,101,110,116,69,100,105,116,97,98,108,101,86,97,108,117,101,40,118,97,108,117,101,41,92,110,32,32,32,32,32,32,63,32,118,97,108,117,101,92,110,32,32,32,32,32,32,58,32,39,116,114,117,101,39,92,110,125,59,92,110,92,110,118,97,114,32,105,115,66,111,111,108,101,97,110,65,116,116,114,32,61,32,109,97,107,101,77,97,112,40,92,110,32,32,39,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,44,97,115,121,110,99,44,97,117,116,111,102,111,99,117,115,44,97,117,116,111,112,108,97,121,44,99,104,101,99,107,101,100,44,99,111,109,112,97,99,116,44,99,111,110,116,114,111,108,115,44,100,101,99,108,97,114,101,44,39,32,43,92,110,32,32,39,100,101,102,97,117,108,116,44,100,101,102,97,117,108,116,99,104,101,99,107,101,100,44,100,101,102,97,117,108,116,109,117,116,101,100,44,100,101,102,97,117,108,116,115,101,108,101,99,116,101,100,44,100,101,102,101,114,44,100,105,115,97,98,108,101,100,44,39,32,43,92,110,32,32,39,101,110,97,98,108,101,100,44,102,111,114,109,110,111,118,97,108,105,100,97,116,101,44,104,105,100,100,101,110,44,105,110,100,101,116,101,114,109,105,110,97,116,101,44,105,110,101,114,116,44,105,115,109,97,112,44,105,116,101,109,115,99,111,112,101,44,108,111,111,112,44,109,117,108,116,105,112,108,101,44,39,32,43,92,110,32,32,39,109,117,116,101,100,44,110,111,104,114,101,102,44,110,111,114,101,115,105,122,101,44,110,111,115,104,97,100,101,44,110,111,118,97,108,105,100,97,116,101,44,110,111,119,114,97,112,44,111,112,101,110,44,112,97,117,115,101,111,110,101,120,105,116,44,114,101,97,100,111,110,108,121,44,39,32,43,92,110,32,32,39,114,101,113,117,105,114,101,100,44,114,101,118,101,114,115,101,100,44,115,99,111,112,101,100,44,115,101,97,109,108,101,115,115,44,115,101,108,101,99,116,101,100,44,115,111,114,116,97,98,108,101,44,116,114,97,110,115,108,97,116,101,44,39,32,43,92,110,32,32,39,116,114,117,101,115,112,101,101,100,44,116,121,112,101,109,117,115,116,109,97,116,99,104,44,118,105,115,105,98,108,101,39,92,110,41,59,92,110,92,110,118,97,114,32,120,108,105,110,107,78,83,32,61,32,39,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,39,59,92,110,92,110,118,97,114,32,105,115,88,108,105,110,107,32,61,32,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,97,109,101,46,99,104,97,114,65,116,40,53,41,32,61,61,61,32,39,58,39,32,38,38,32,110,97,109,101,46,115,108,105,99,101,40,48,44,32,53,41,32,61,61,61,32,39,120,108,105,110,107,39,92,110,125,59,92,110,92,110,118,97,114,32,103,101,116,88,108,105,110,107,80,114,111,112,32,61,32,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,88,108,105,110,107,40,110,97,109,101,41,32,63,32,110,97,109,101,46,115,108,105,99,101,40,54,44,32,110,97,109,101,46,108,101,110,103,116,104,41,32,58,32,39,39,92,110,125,59,92,110,92,110,118,97,114,32,105,115,70,97,108,115,121,65,116,116,114,86,97,108,117,101,32,61,32,102,117,110,99,116,105,111,110,32,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,32,61,61,32,110,117,108,108,32,124,124,32,118,97,108,32,61,61,61,32,102,97,108,115,101,92,110,125,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,110,67,108,97,115,115,70,111,114,86,110,111,100,101,32,40,118,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,100,97,116,97,32,61,32,118,110,111,100,101,46,100,97,116,97,59,92,110,32,32,118,97,114,32,112,97,114,101,110,116,78,111,100,101,32,61,32,118,110,111,100,101,59,92,110,32,32,118,97,114,32,99,104,105,108,100,78,111,100,101,32,61,32,118,110,111,100,101,59,92,110,32,32,119,104,105,108,101,32,40,105,115,68,101,102,40,99,104,105,108,100,78,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,41,32,123,92,110,32,32,32,32,99,104,105,108,100,78,111,100,101,32,61,32,99,104,105,108,100,78,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,118,110,111,100,101,59,92,110,32,32,32,32,105,102,32,40,99,104,105,108,100,78,111,100,101,32,38,38,32,99,104,105,108,100,78,111,100,101,46,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,100,97,116,97,32,61,32,109,101,114,103,101,67,108,97,115,115,68,97,116,97,40,99,104,105,108,100,78,111,100,101,46,100,97,116,97,44,32,100,97,116,97,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,119,104,105,108,101,32,40,105,115,68,101,102,40,112,97,114,101,110,116,78,111,100,101,32,61,32,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,41,41,32,123,92,110,32,32,32,32,105,102,32,40,112,97,114,101,110,116,78,111,100,101,32,38,38,32,112,97,114,101,110,116,78,111,100,101,46,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,100,97,116,97,32,61,32,109,101,114,103,101,67,108,97,115,115,68,97,116,97,40,100,97,116,97,44,32,112,97,114,101,110,116,78,111,100,101,46,100,97,116,97,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,110,100,101,114,67,108,97,115,115,40,100,97,116,97,46,115,116,97,116,105,99,67,108,97,115,115,44,32,100,97,116,97,46,99,108,97,115,115,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,101,114,103,101,67,108,97,115,115,68,97,116,97,32,40,99,104,105,108,100,44,32,112,97,114,101,110,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,99,111,110,99,97,116,40,99,104,105,108,100,46,115,116,97,116,105,99,67,108,97,115,115,44,32,112,97,114,101,110,116,46,115,116,97,116,105,99,67,108,97,115,115,41,44,92,110,32,32,32,32,99,108,97,115,115,58,32,105,115,68,101,102,40,99,104,105,108,100,46,99,108,97,115,115,41,92,110,32,32,32,32,32,32,63,32,91,99,104,105,108,100,46,99,108,97,115,115,44,32,112,97,114,101,110,116,46,99,108,97,115,115,93,92,110,32,32,32,32,32,32,58,32,112,97,114,101,110,116,46,99,108,97,115,115,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,67,108,97,115,115,32,40,92,110,32,32,115,116,97,116,105,99,67,108,97,115,115,44,92,110,32,32,100,121,110,97,109,105,99,67,108,97,115,115,92,110,41,32,123,92,110,32,32,105,102,32,40,105,115,68,101,102,40,115,116,97,116,105,99,67,108,97,115,115,41,32,124,124,32,105,115,68,101,102,40,100,121,110,97,109,105,99,67,108,97,115,115,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,110,99,97,116,40,115,116,97,116,105,99,67,108,97,115,115,44,32,115,116,114,105,110,103,105,102,121,67,108,97,115,115,40,100,121,110,97,109,105,99,67,108,97,115,115,41,41,92,110,32,32,125,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,114,101,116,117,114,110,32,39,39,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,110,99,97,116,32,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,97,32,63,32,98,32,63,32,40,97,32,43,32,39,32,39,32,43,32,98,41,32,58,32,97,32,58,32,40,98,32,124,124,32,39,39,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,114,105,110,103,105,102,121,67,108,97,115,115,32,40,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,105,102,121,65,114,114,97,121,40,118,97,108,117,101,41,92,110,32,32,125,92,110,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,105,102,121,79,98,106,101,99,116,40,118,97,108,117,101,41,92,110,32,32,125,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,92,110,32,32,125,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,114,101,116,117,114,110,32,39,39,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,114,105,110,103,105,102,121,65,114,114,97,121,32,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,39,39,59,92,110,32,32,118,97,114,32,115,116,114,105,110,103,105,102,105,101,100,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,32,61,32,118,97,108,117,101,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,115,116,114,105,110,103,105,102,105,101,100,32,61,32,115,116,114,105,110,103,105,102,121,67,108,97,115,115,40,118,97,108,117,101,91,105,93,41,41,32,38,38,32,115,116,114,105,110,103,105,102,105,101,100,32,33,61,61,32,39,39,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,41,32,123,32,114,101,115,32,43,61,32,39,32,39,59,32,125,92,110,32,32,32,32,32,32,114,101,115,32,43,61,32,115,116,114,105,110,103,105,102,105,101,100,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,114,105,110,103,105,102,121,79,98,106,101,99,116,32,40,118,97,108,117,101,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,39,39,59,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,118,97,108,117,101,91,107,101,121,93,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,41,32,123,32,114,101,115,32,43,61,32,39,32,39,59,32,125,92,110,32,32,32,32,32,32,114,101,115,32,43,61,32,107,101,121,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,110,97,109,101,115,112,97,99,101,77,97,112,32,61,32,123,92,110,32,32,115,118,103,58,32,39,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,39,44,92,110,32,32,109,97,116,104,58,32,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,56,47,77,97,116,104,47,77,97,116,104,77,76,39,92,110,125,59,92,110,92,110,118,97,114,32,105,115,72,84,77,76,84,97,103,32,61,32,109,97,107,101,77,97,112,40,92,110,32,32,39,104,116,109,108,44,98,111,100,121,44,98,97,115,101,44,104,101,97,100,44,108,105,110,107,44,109,101,116,97,44,115,116,121,108,101,44,116,105,116,108,101,44,39,32,43,92,110,32,32,39,97,100,100,114,101,115,115,44,97,114,116,105,99,108,101,44,97,115,105,100,101,44,102,111,111,116,101,114,44,104,101,97,100,101,114,44,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,44,104,103,114,111,117,112,44,110,97,118,44,115,101,99,116,105,111,110,44,39,32,43,92,110,32,32,39,100,105,118,44,100,100,44,100,108,44,100,116,44,102,105,103,99,97,112,116,105,111,110,44,102,105,103,117,114,101,44,112,105,99,116,117,114,101,44,104,114,44,105,109,103,44,108,105,44,109,97,105,110,44,111,108,44,112,44,112,114,101,44,117,108,44,39,32,43,92,110,32,32,39,97,44,98,44,97,98,98,114,44,98,100,105,44,98,100,111,44,98,114,44,99,105,116,101,44,99,111,100,101,44,100,97,116,97,44,100,102,110,44,101,109,44,105,44,107,98,100,44,109,97,114,107,44,113,44,114,112,44,114,116,44,114,116,99,44,114,117,98,121,44,39,32,43,92,110,32,32,39,115,44,115,97,109,112,44,115,109,97,108,108,44,115,112,97,110,44,115,116,114,111,110,103,44,115,117,98,44,115,117,112,44,116,105,109,101,44,117,44,118,97,114,44,119,98,114,44,97,114,101,97,44,97,117,100,105,111,44,109,97,112,44,116,114,97,99,107,44,118,105,100,101,111,44,39,32,43,92,110,32,32,39,101,109,98,101,100,44,111,98,106,101,99,116,44,112,97,114,97,109,44,115,111,117,114,99,101,44,99,97,110,118,97,115,44,115,99,114,105,112,116,44,110,111,115,99,114,105,112,116,44,100,101,108,44,105,110,115,44,39,32,43,92,110,32,32,39,99,97,112,116,105,111,110,44,99,111,108,44,99,111,108,103,114,111,117,112,44,116,97,98,108,101,44,116,104,101,97,100,44,116,98,111,100,121,44,116,100,44,116,104,44,116,114,44,39,32,43,92,110,32,32,39,98,117,116,116,111,110,44,100,97,116,97,108,105,115,116,44,102,105,101,108,100,115,101,116,44,102,111,114,109,44,105,110,112,117,116,44,108,97,98,101,108,44,108,101,103,101,110,100,44,109,101,116,101,114,44,111,112,116,103,114,111,117,112,44,111,112,116,105,111,110,44,39,32,43,92,110,32,32,39,111,117,116,112,117,116,44,112,114,111,103,114,101,115,115,44,115,101,108,101,99,116,44,116,101,120,116,97,114,101,97,44,39,32,43,92,110,32,32,39,100,101,116,97,105,108,115,44,100,105,97,108,111,103,44,109,101,110,117,44,109,101,110,117,105,116,101,109,44,115,117,109,109,97,114,121,44,39,32,43,92,110,32,32,39,99,111,110,116,101,110,116,44,101,108,101,109,101,110,116,44,115,104,97,100,111,119,44,116,101,109,112,108,97,116,101,44,98,108,111,99,107,113,117,111,116,101,44,105,102,114,97,109,101,44,116,102,111,111,116,39,92,110,41,59,92,110,92,110,47,47,32,116,104,105,115,32,109,97,112,32,105,115,32,105,110,116,101,110,116,105,111,110,97,108,108,121,32,115,101,108,101,99,116,105,118,101,44,32,111,110,108,121,32,99,111,118,101,114,105,110,103,32,83,86,71,32,101,108,101,109,101,110,116,115,32,116,104,97,116,32,109,97,121,92,110,47,47,32,99,111,110,116,97,105,110,32,99,104,105,108,100,32,101,108,101,109,101,110,116,115,46,92,110,118,97,114,32,105,115,83,86,71,32,61,32,109,97,107,101,77,97,112,40,92,110,32,32,39,115,118,103,44,97,110,105,109,97,116,101,44,99,105,114,99,108,101,44,99,108,105,112,112,97,116,104,44,99,117,114,115,111,114,44,100,101,102,115,44,100,101,115,99,44,101,108,108,105,112,115,101,44,102,105,108,116,101,114,44,102,111,110,116,45,102,97,99,101,44,39,32,43,92,110,32,32,39,102,111,114,101,105,103,110,79,98,106,101,99,116,44,103,44,103,108,121,112,104,44,105,109,97,103,101,44,108,105,110,101,44,109,97,114,107,101,114,44,109,97,115,107,44,109,105,115,115,105,110,103,45,103,108,121,112,104,44,112,97,116,104,44,112,97,116,116,101,114,110,44,39,32,43,92,110,32,32,39,112,111,108,121,103,111,110,44,112,111,108,121,108,105,110,101,44,114,101,99,116,44,115,119,105,116,99,104,44,115,121,109,98,111,108,44,116,101,120,116,44,116,101,120,116,112,97,116,104,44,116,115,112,97,110,44,117,115,101,44,118,105,101,119,39,44,92,110,32,32,116,114,117,101,92,110,41,59,92,110,92,110,118,97,114,32,105,115,82,101,115,101,114,118,101,100,84,97,103,32,61,32,102,117,110,99,116,105,111,110,32,40,116,97,103,41,32,123,92,110,32,32,114,101,116,117,114,110,32,105,115,72,84,77,76,84,97,103,40,116,97,103,41,32,124,124,32,105,115,83,86,71,40,116,97,103,41,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,84,97,103,78,97,109,101,115,112,97,99,101,32,40,116,97,103,41,32,123,92,110,32,32,105,102,32,40,105,115,83,86,71,40,116,97,103,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,39,115,118,103,39,92,110,32,32,125,92,110,32,32,47,47,32,98,97,115,105,99,32,115,117,112,112,111,114,116,32,102,111,114,32,77,97,116,104,77,76,92,110,32,32,47,47,32,110,111,116,101,32,105,116,32,100,111,101,115,110,39,116,32,115,117,112,112,111,114,116,32,111,116,104,101,114,32,77,97,116,104,77,76,32,101,108,101,109,101,110,116,115,32,98,101,105,110,103,32,99,111,109,112,111,110,101,110,116,32,114,111,111,116,115,92,110,32,32,105,102,32,40,116,97,103,32,61,61,61,32,39,109,97,116,104,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,39,109,97,116,104,39,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,117,110,107,110,111,119,110,69,108,101,109,101,110,116,67,97,99,104,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,102,117,110,99,116,105,111,110,32,105,115,85,110,107,110,111,119,110,69,108,101,109,101,110,116,32,40,116,97,103,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,33,105,110,66,114,111,119,115,101,114,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,32,32,125,92,110,32,32,105,102,32,40,105,115,82,101,115,101,114,118,101,100,84,97,103,40,116,97,103,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,125,92,110,32,32,116,97,103,32,61,32,116,97,103,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,117,110,107,110,111,119,110,69,108,101,109,101,110,116,67,97,99,104,101,91,116,97,103,93,32,33,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,117,110,107,110,111,119,110,69,108,101,109,101,110,116,67,97,99,104,101,91,116,97,103,93,92,110,32,32,125,92,110,32,32,118,97,114,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,116,97,103,41,59,92,110,32,32,105,102,32,40,116,97,103,46,105,110,100,101,120,79,102,40,39,45,39,41,32,62,32,45,49,41,32,123,92,110,32,32,32,32,47,47,32,104,116,116,112,58,47,47,115,116,97,99,107,111,118,101,114,102,108,111,119,46,99,111,109,47,97,47,50,56,50,49,48,51,54,52,47,49,48,55,48,50,52,52,92,110,32,32,32,32,114,101,116,117,114,110,32,40,117,110,107,110,111,119,110,69,108,101,109,101,110,116,67,97,99,104,101,91,116,97,103,93,32,61,32,40,92,110,32,32,32,32,32,32,101,108,46,99,111,110,115,116,114,117,99,116,111,114,32,61,61,61,32,119,105,110,100,111,119,46,72,84,77,76,85,110,107,110,111,119,110,69,108,101,109,101,110,116,32,124,124,92,110,32,32,32,32,32,32,101,108,46,99,111,110,115,116,114,117,99,116,111,114,32,61,61,61,32,119,105,110,100,111,119,46,72,84,77,76,69,108,101,109,101,110,116,92,110,32,32,32,32,41,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,117,110,107,110,111,119,110,69,108,101,109,101,110,116,67,97,99,104,101,91,116,97,103,93,32,61,32,47,72,84,77,76,85,110,107,110,111,119,110,69,108,101,109,101,110,116,47,46,116,101,115,116,40,101,108,46,116,111,83,116,114,105,110,103,40,41,41,41,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,105,115,84,101,120,116,73,110,112,117,116,84,121,112,101,32,61,32,109,97,107,101,77,97,112,40,39,116,101,120,116,44,110,117,109,98,101,114,44,112,97,115,115,119,111,114,100,44,115,101,97,114,99,104,44,101,109,97,105,108,44,116,101,108,44,117,114,108,39,41,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,42,92,110,32,42,32,81,117,101,114,121,32,97,110,32,101,108,101,109,101,110,116,32,115,101,108,101,99,116,111,114,32,105,102,32,105,116,39,115,32,110,111,116,32,97,110,32,101,108,101,109,101,110,116,32,97,108,114,101,97,100,121,46,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,113,117,101,114,121,32,40,101,108,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,101,108,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,118,97,114,32,115,101,108,101,99,116,101,100,32,61,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,108,41,59,92,110,32,32,32,32,105,102,32,40,33,115,101,108,101,99,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,116,114,117,101,32,38,38,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,39,67,97,110,110,111,116,32,102,105,110,100,32,101,108,101,109,101,110,116,58,32,39,32,43,32,101,108,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,39,100,105,118,39,41,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,115,101,108,101,99,116,101,100,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,108,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,69,108,101,109,101,110,116,36,49,32,40,116,97,103,78,97,109,101,44,32,118,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,101,108,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,116,97,103,78,97,109,101,41,59,92,110,32,32,105,102,32,40,116,97,103,78,97,109,101,32,33,61,61,32,39,115,101,108,101,99,116,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,101,108,109,92,110,32,32,125,92,110,32,32,47,47,32,102,97,108,115,101,32,111,114,32,110,117,108,108,32,119,105,108,108,32,114,101,109,111,118,101,32,116,104,101,32,97,116,116,114,105,98,117,116,101,32,98,117,116,32,117,110,100,101,102,105,110,101,100,32,119,105,108,108,32,110,111,116,92,110,32,32,105,102,32,40,118,110,111,100,101,46,100,97,116,97,32,38,38,32,118,110,111,100,101,46,100,97,116,97,46,97,116,116,114,115,32,38,38,32,118,110,111,100,101,46,100,97,116,97,46,97,116,116,114,115,46,109,117,108,116,105,112,108,101,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,101,108,109,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,109,117,108,116,105,112,108,101,39,44,32,39,109,117,108,116,105,112,108,101,39,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,101,108,109,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,32,40,110,97,109,101,115,112,97,99,101,44,32,116,97,103,78,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,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,110,97,109,101,115,112,97,99,101,77,97,112,91,110,97,109,101,115,112,97,99,101,93,44,32,116,97,103,78,97,109,101,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,84,101,120,116,78,111,100,101,32,40,116,101,120,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,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,101,120,116,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,111,109,109,101,110,116,32,40,116,101,120,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,67,111,109,109,101,110,116,40,116,101,120,116,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,115,101,114,116,66,101,102,111,114,101,32,40,112,97,114,101,110,116,78,111,100,101,44,32,110,101,119,78,111,100,101,44,32,114,101,102,101,114,101,110,99,101,78,111,100,101,41,32,123,92,110,32,32,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,110,101,119,78,111,100,101,44,32,114,101,102,101,114,101,110,99,101,78,111,100,101,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,67,104,105,108,100,32,40,110,111,100,101,44,32,99,104,105,108,100,41,32,123,92,110,32,32,110,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,99,104,105,108,100,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,112,112,101,110,100,67,104,105,108,100,32,40,110,111,100,101,44,32,99,104,105,108,100,41,32,123,92,110,32,32,110,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,99,104,105,108,100,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,101,110,116,78,111,100,101,32,40,110,111,100,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,46,112,97,114,101,110,116,78,111,100,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,110,101,120,116,83,105,98,108,105,110,103,32,40,110,111,100,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,46,110,101,120,116,83,105,98,108,105,110,103,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,97,103,78,97,109,101,32,40,110,111,100,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,46,116,97,103,78,97,109,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,84,101,120,116,67,111,110,116,101,110,116,32,40,110,111,100,101,44,32,116,101,120,116,41,32,123,92,110,32,32,110,111,100,101,46,116,101,120,116,67,111,110,116,101,110,116,32,61,32,116,101,120,116,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,83,116,121,108,101,83,99,111,112,101,32,40,110,111,100,101,44,32,115,99,111,112,101,73,100,41,32,123,92,110,32,32,110,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,115,99,111,112,101,73,100,44,32,39,39,41,59,92,110,125,92,110,92,110,118,97,114,32,110,111,100,101,79,112,115,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,79,98,106,101,99,116,46,102,114,101,101,122,101,40,123,92,110,32,32,99,114,101,97,116,101,69,108,101,109,101,110,116,58,32,99,114,101,97,116,101,69,108,101,109,101,110,116,36,49,44,92,110,32,32,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,58,32,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,44,92,110,32,32,99,114,101,97,116,101,84,101,120,116,78,111,100,101,58,32,99,114,101,97,116,101,84,101,120,116,78,111,100,101,44,92,110,32,32,99,114,101,97,116,101,67,111,109,109,101,110,116,58,32,99,114,101,97,116,101,67,111,109,109,101,110,116,44,92,110,32,32,105,110,115,101,114,116,66,101,102,111,114,101,58,32,105,110,115,101,114,116,66,101,102,111,114,101,44,92,110,32,32,114,101,109,111,118,101,67,104,105,108,100,58,32,114,101,109,111,118,101,67,104,105,108,100,44,92,110,32,32,97,112,112,101,110,100,67,104,105,108,100,58,32,97,112,112,101,110,100,67,104,105,108,100,44,92,110,32,32,112,97,114,101,110,116,78,111,100,101,58,32,112,97,114,101,110,116,78,111,100,101,44,92,110,32,32,110,101,120,116,83,105,98,108,105,110,103,58,32,110,101,120,116,83,105,98,108,105,110,103,44,92,110,32,32,116,97,103,78,97,109,101,58,32,116,97,103,78,97,109,101,44,92,110,32,32,115,101,116,84,101,120,116,67,111,110,116,101,110,116,58,32,115,101,116,84,101,120,116,67,111,110,116,101,110,116,44,92,110,32,32,115,101,116,83,116,121,108,101,83,99,111,112,101,58,32,115,101,116,83,116,121,108,101,83,99,111,112,101,92,110,125,41,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,114,101,102,32,61,32,123,92,110,32,32,99,114,101,97,116,101,58,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,32,40,95,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,114,101,103,105,115,116,101,114,82,101,102,40,118,110,111,100,101,41,59,92,110,32,32,125,44,92,110,32,32,117,112,100,97,116,101,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,32,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,105,102,32,40,111,108,100,86,110,111,100,101,46,100,97,116,97,46,114,101,102,32,33,61,61,32,118,110,111,100,101,46,100,97,116,97,46,114,101,102,41,32,123,92,110,32,32,32,32,32,32,114,101,103,105,115,116,101,114,82,101,102,40,111,108,100,86,110,111,100,101,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,114,101,103,105,115,116,101,114,82,101,102,40,118,110,111,100,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,100,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,100,101,115,116,114,111,121,32,40,118,110,111,100,101,41,32,123,92,110,32,32,32,32,114,101,103,105,115,116,101,114,82,101,102,40,118,110,111,100,101,44,32,116,114,117,101,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,82,101,102,32,40,118,110,111,100,101,44,32,105,115,82,101,109,111,118,97,108,41,32,123,92,110,32,32,118,97,114,32,107,101,121,32,61,32,118,110,111,100,101,46,100,97,116,97,46,114,101,102,59,92,110,32,32,105,102,32,40,33,105,115,68,101,102,40,107,101,121,41,41,32,123,32,114,101,116,117,114,110,32,125,92,110,92,110,32,32,118,97,114,32,118,109,32,61,32,118,110,111,100,101,46,99,111,110,116,101,120,116,59,92,110,32,32,118,97,114,32,114,101,102,32,61,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,32,124,124,32,118,110,111,100,101,46,101,108,109,59,92,110,32,32,118,97,114,32,114,101,102,115,32,61,32,118,109,46,36,114,101,102,115,59,92,110,32,32,105,102,32,40,105,115,82,101,109,111,118,97,108,41,32,123,92,110,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,101,102,115,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,114,101,109,111,118,101,40,114,101,102,115,91,107,101,121,93,44,32,114,101,102,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,114,101,102,115,91,107,101,121,93,32,61,61,61,32,114,101,102,41,32,123,92,110,32,32,32,32,32,32,114,101,102,115,91,107,101,121,93,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,105,102,32,40,118,110,111,100,101,46,100,97,116,97,46,114,101,102,73,110,70,111,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,101,102,115,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,102,115,91,107,101,121,93,32,61,32,91,114,101,102,93,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,114,101,102,115,91,107,101,121,93,46,105,110,100,101,120,79,102,40,114,101,102,41,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,32,32,32,32,32,32,114,101,102,115,91,107,101,121,93,46,112,117,115,104,40,114,101,102,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,102,115,91,107,101,121,93,32,61,32,114,101,102,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,86,105,114,116,117,97,108,32,68,79,77,32,112,97,116,99,104,105,110,103,32,97,108,103,111,114,105,116,104,109,32,98,97,115,101,100,32,111,110,32,83,110,97,98,98,100,111,109,32,98,121,92,110,32,42,32,83,105,109,111,110,32,70,114,105,105,115,32,86,105,110,100,117,109,32,40,64,112,97,108,100,101,112,105,110,100,41,92,110,32,42,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,77,73,84,32,76,105,99,101,110,115,101,92,110,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,112,97,108,100,101,112,105,110,100,47,115,110,97,98,98,100,111,109,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,92,110,32,42,92,110,32,42,32,109,111,100,105,102,105,101,100,32,98,121,32,69,118,97,110,32,89,111,117,32,40,64,121,121,120,57,57,48,56,48,51,41,92,110,32,42,92,110,32,42,32,78,111,116,32,116,121,112,101,45,99,104,101,99,107,105,110,103,32,116,104,105,115,32,98,101,99,97,117,115,101,32,116,104,105,115,32,102,105,108,101,32,105,115,32,112,101,114,102,45,99,114,105,116,105,99,97,108,32,97,110,100,32,116,104,101,32,99,111,115,116,92,110,32,42,32,111,102,32,109,97,107,105,110,103,32,102,108,111,119,32,117,110,100,101,114,115,116,97,110,100,32,105,116,32,105,115,32,110,111,116,32,119,111,114,116,104,32,105,116,46,92,110,32,42,47,92,110,92,110,118,97,114,32,101,109,112,116,121,78,111,100,101,32,61,32,110,101,119,32,86,78,111,100,101,40,39,39,44,32,123,125,44,32,91,93,41,59,92,110,92,110,118,97,114,32,104,111,111,107,115,32,61,32,91,39,99,114,101,97,116,101,39,44,32,39,97,99,116,105,118,97,116,101,39,44,32,39,117,112,100,97,116,101,39,44,32,39,114,101,109,111,118,101,39,44,32,39,100,101,115,116,114,111,121,39,93,59,92,110,92,110,102,117,110,99,116,105,111,110,32,115,97,109,101,86,110,111,100,101,32,40,97,44,32,98,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,92,110,32,32,32,32,97,46,107,101,121,32,61,61,61,32,98,46,107,101,121,32,38,38,32,40,92,110,32,32,32,32,32,32,40,92,110,32,32,32,32,32,32,32,32,97,46,116,97,103,32,61,61,61,32,98,46,116,97,103,32,38,38,92,110,32,32,32,32,32,32,32,32,97,46,105,115,67,111,109,109,101,110,116,32,61,61,61,32,98,46,105,115,67,111,109,109,101,110,116,32,38,38,92,110,32,32,32,32,32,32,32,32,105,115,68,101,102,40,97,46,100,97,116,97,41,32,61,61,61,32,105,115,68,101,102,40,98,46,100,97,116,97,41,32,38,38,92,110,32,32,32,32,32,32,32,32,115,97,109,101,73,110,112,117,116,84,121,112,101,40,97,44,32,98,41,92,110,32,32,32,32,32,32,41,32,124,124,32,40,92,110,32,32,32,32,32,32,32,32,105,115,84,114,117,101,40,97,46,105,115,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,41,32,38,38,92,110,32,32,32,32,32,32,32,32,97,46,97,115,121,110,99,70,97,99,116,111,114,121,32,61,61,61,32,98,46,97,115,121,110,99,70,97,99,116,111,114,121,32,38,38,92,110,32,32,32,32,32,32,32,32,105,115,85,110,100,101,102,40,98,46,97,115,121,110,99,70,97,99,116,111,114,121,46,101,114,114,111,114,41,92,110,32,32,32,32,32,32,41,92,110,32,32,32,32,41,92,110,32,32,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,97,109,101,73,110,112,117,116,84,121,112,101,32,40,97,44,32,98,41,32,123,92,110,32,32,105,102,32,40,97,46,116,97,103,32,33,61,61,32,39,105,110,112,117,116,39,41,32,123,32,114,101,116,117,114,110,32,116,114,117,101,32,125,92,110,32,32,118,97,114,32,105,59,92,110,32,32,118,97,114,32,116,121,112,101,65,32,61,32,105,115,68,101,102,40,105,32,61,32,97,46,100,97,116,97,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,97,116,116,114,115,41,32,38,38,32,105,46,116,121,112,101,59,92,110,32,32,118,97,114,32,116,121,112,101,66,32,61,32,105,115,68,101,102,40,105,32,61,32,98,46,100,97,116,97,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,97,116,116,114,115,41,32,38,38,32,105,46,116,121,112,101,59,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,65,32,61,61,61,32,116,121,112,101,66,32,124,124,32,105,115,84,101,120,116,73,110,112,117,116,84,121,112,101,40,116,121,112,101,65,41,32,38,38,32,105,115,84,101,120,116,73,110,112,117,116,84,121,112,101,40,116,121,112,101,66,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,75,101,121,84,111,79,108,100,73,100,120,32,40,99,104,105,108,100,114,101,110,44,32,98,101,103,105,110,73,100,120,44,32,101,110,100,73,100,120,41,32,123,92,110,32,32,118,97,114,32,105,44,32,107,101,121,59,92,110,32,32,118,97,114,32,109,97,112,32,61,32,123,125,59,92,110,32,32,102,111,114,32,40,105,32,61,32,98,101,103,105,110,73,100,120,59,32,105,32,60,61,32,101,110,100,73,100,120,59,32,43,43,105,41,32,123,92,110,32,32,32,32,107,101,121,32,61,32,99,104,105,108,100,114,101,110,91,105,93,46,107,101,121,59,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,107,101,121,41,41,32,123,32,109,97,112,91,107,101,121,93,32,61,32,105,59,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,109,97,112,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,80,97,116,99,104,70,117,110,99,116,105,111,110,32,40,98,97,99,107,101,110,100,41,32,123,92,110,32,32,118,97,114,32,105,44,32,106,59,92,110,32,32,118,97,114,32,99,98,115,32,61,32,123,125,59,92,110,92,110,32,32,118,97,114,32,109,111,100,117,108,101,115,32,61,32,98,97,99,107,101,110,100,46,109,111,100,117,108,101,115,59,92,110,32,32,118,97,114,32,110,111,100,101,79,112,115,32,61,32,98,97,99,107,101,110,100,46,110,111,100,101,79,112,115,59,92,110,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,104,111,111,107,115,46,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,99,98,115,91,104,111,111,107,115,91,105,93,93,32,61,32,91,93,59,92,110,32,32,32,32,102,111,114,32,40,106,32,61,32,48,59,32,106,32,60,32,109,111,100,117,108,101,115,46,108,101,110,103,116,104,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,109,111,100,117,108,101,115,91,106,93,91,104,111,111,107,115,91,105,93,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,99,98,115,91,104,111,111,107,115,91,105,93,93,46,112,117,115,104,40,109,111,100,117,108,101,115,91,106,93,91,104,111,111,107,115,91,105,93,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,101,109,112,116,121,78,111,100,101,65,116,32,40,101,108,109,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,86,78,111,100,101,40,110,111,100,101,79,112,115,46,116,97,103,78,97,109,101,40,101,108,109,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,32,123,125,44,32,91,93,44,32,117,110,100,101,102,105,110,101,100,44,32,101,108,109,41,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,82,109,67,98,32,40,99,104,105,108,100,69,108,109,44,32,108,105,115,116,101,110,101,114,115,41,32,123,92,110,32,32,32,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,36,36,49,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,45,45,114,101,109,111,118,101,36,36,49,46,108,105,115,116,101,110,101,114,115,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,78,111,100,101,40,99,104,105,108,100,69,108,109,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,109,111,118,101,36,36,49,46,108,105,115,116,101,110,101,114,115,32,61,32,108,105,115,116,101,110,101,114,115,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,109,111,118,101,36,36,49,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,78,111,100,101,32,40,101,108,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,110,111,100,101,79,112,115,46,112,97,114,101,110,116,78,111,100,101,40,101,108,41,59,92,110,32,32,32,32,47,47,32,101,108,101,109,101,110,116,32,109,97,121,32,104,97,118,101,32,97,108,114,101,97,100,121,32,98,101,101,110,32,114,101,109,111,118,101,100,32,100,117,101,32,116,111,32,118,45,104,116,109,108,32,47,32,118,45,116,101,120,116,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,112,97,114,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,79,112,115,46,114,101,109,111,118,101,67,104,105,108,100,40,112,97,114,101,110,116,44,32,101,108,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,115,85,110,107,110,111,119,110,69,108,101,109,101,110,116,36,36,49,32,40,118,110,111,100,101,44,32,105,110,86,80,114,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,92,110,32,32,32,32,32,32,33,105,110,86,80,114,101,32,38,38,92,110,32,32,32,32,32,32,33,118,110,111,100,101,46,110,115,32,38,38,92,110,32,32,32,32,32,32,33,40,92,110,32,32,32,32,32,32,32,32,99,111,110,102,105,103,46,105,103,110,111,114,101,100,69,108,101,109,101,110,116,115,46,108,101,110,103,116,104,32,38,38,92,110,32,32,32,32,32,32,32,32,99,111,110,102,105,103,46,105,103,110,111,114,101,100,69,108,101,109,101,110,116,115,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,105,103,110,111,114,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,82,101,103,69,120,112,40,105,103,110,111,114,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,105,103,110,111,114,101,46,116,101,115,116,40,118,110,111,100,101,46,116,97,103,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,105,103,110,111,114,101,32,61,61,61,32,118,110,111,100,101,46,116,97,103,92,110,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,41,32,38,38,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,105,115,85,110,107,110,111,119,110,69,108,101,109,101,110,116,40,118,110,111,100,101,46,116,97,103,41,92,110,32,32,32,32,41,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,114,101,97,116,105,110,103,69,108,109,73,110,86,80,114,101,32,61,32,48,59,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,69,108,109,32,40,92,110,32,32,32,32,118,110,111,100,101,44,92,110,32,32,32,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,92,110,32,32,32,32,112,97,114,101,110,116,69,108,109,44,92,110,32,32,32,32,114,101,102,69,108,109,44,92,110,32,32,32,32,110,101,115,116,101,100,44,92,110,32,32,32,32,111,119,110,101,114,65,114,114,97,121,44,92,110,32,32,32,32,105,110,100,101,120,92,110,32,32,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,118,110,111,100,101,46,101,108,109,41,32,38,38,32,105,115,68,101,102,40,111,119,110,101,114,65,114,114,97,121,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,104,105,115,32,118,110,111,100,101,32,119,97,115,32,117,115,101,100,32,105,110,32,97,32,112,114,101,118,105,111,117,115,32,114,101,110,100,101,114,33,92,110,32,32,32,32,32,32,47,47,32,110,111,119,32,105,116,39,115,32,117,115,101,100,32,97,115,32,97,32,110,101,119,32,110,111,100,101,44,32,111,118,101,114,119,114,105,116,105,110,103,32,105,116,115,32,101,108,109,32,119,111,117,108,100,32,99,97,117,115,101,92,110,32,32,32,32,32,32,47,47,32,112,111,116,101,110,116,105,97,108,32,112,97,116,99,104,32,101,114,114,111,114,115,32,100,111,119,110,32,116,104,101,32,114,111,97,100,32,119,104,101,110,32,105,116,39,115,32,117,115,101,100,32,97,115,32,97,110,32,105,110,115,101,114,116,105,111,110,92,110,32,32,32,32,32,32,47,47,32,114,101,102,101,114,101,110,99,101,32,110,111,100,101,46,32,73,110,115,116,101,97,100,44,32,119,101,32,99,108,111,110,101,32,116,104,101,32,110,111,100,101,32,111,110,45,100,101,109,97,110,100,32,98,101,102,111,114,101,32,99,114,101,97,116,105,110,103,92,110,32,32,32,32,32,32,47,47,32,97,115,115,111,99,105,97,116,101,100,32,68,79,77,32,101,108,101,109,101,110,116,32,102,111,114,32,105,116,46,92,110,32,32,32,32,32,32,118,110,111,100,101,32,61,32,111,119,110,101,114,65,114,114,97,121,91,105,110,100,101,120,93,32,61,32,99,108,111,110,101,86,78,111,100,101,40,118,110,111,100,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,110,111,100,101,46,105,115,82,111,111,116,73,110,115,101,114,116,32,61,32,33,110,101,115,116,101,100,59,32,47,47,32,102,111,114,32,116,114,97,110,115,105,116,105,111,110,32,101,110,116,101,114,32,99,104,101,99,107,92,110,32,32,32,32,105,102,32,40,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,40,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,112,97,114,101,110,116,69,108,109,44,32,114,101,102,69,108,109,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,118,110,111,100,101,46,100,97,116,97,59,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,118,110,111,100,101,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,116,97,103,32,61,32,118,110,111,100,101,46,116,97,103,59,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,116,97,103,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,100,97,116,97,32,38,38,32,100,97,116,97,46,112,114,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,114,101,97,116,105,110,103,69,108,109,73,110,86,80,114,101,43,43,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,85,110,107,110,111,119,110,69,108,101,109,101,110,116,36,36,49,40,118,110,111,100,101,44,32,99,114,101,97,116,105,110,103,69,108,109,73,110,86,80,114,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,85,110,107,110,111,119,110,32,99,117,115,116,111,109,32,101,108,101,109,101,110,116,58,32,60,39,32,43,32,116,97,103,32,43,32,39,62,32,45,32,100,105,100,32,121,111,117,32,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,114,101,103,105,115,116,101,114,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,99,111,114,114,101,99,116,108,121,63,32,70,111,114,32,114,101,99,117,114,115,105,118,101,32,99,111,109,112,111,110,101,110,116,115,44,32,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,109,97,107,101,32,115,117,114,101,32,116,111,32,112,114,111,118,105,100,101,32,116,104,101,32,92,34,110,97,109,101,92,34,32,111,112,116,105,111,110,46,39,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,110,111,100,101,46,99,111,110,116,101,120,116,92,110,32,32,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,118,110,111,100,101,46,101,108,109,32,61,32,118,110,111,100,101,46,110,115,92,110,32,32,32,32,32,32,32,32,63,32,110,111,100,101,79,112,115,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,118,110,111,100,101,46,110,115,44,32,116,97,103,41,92,110,32,32,32,32,32,32,32,32,58,32,110,111,100,101,79,112,115,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,116,97,103,44,32,118,110,111,100,101,41,59,92,110,32,32,32,32,32,32,115,101,116,83,99,111,112,101,40,118,110,111,100,101,41,59,92,110,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,67,104,105,108,100,114,101,110,40,118,110,111,100,101,44,32,99,104,105,108,100,114,101,110,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,100,97,116,97,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,110,118,111,107,101,67,114,101,97,116,101,72,111,111,107,115,40,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,110,115,101,114,116,40,112,97,114,101,110,116,69,108,109,44,32,118,110,111,100,101,46,101,108,109,44,32,114,101,102,69,108,109,41,59,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,100,97,116,97,32,38,38,32,100,97,116,97,46,112,114,101,41,32,123,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,105,110,103,69,108,109,73,110,86,80,114,101,45,45,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,84,114,117,101,40,118,110,111,100,101,46,105,115,67,111,109,109,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,118,110,111,100,101,46,101,108,109,32,61,32,110,111,100,101,79,112,115,46,99,114,101,97,116,101,67,111,109,109,101,110,116,40,118,110,111,100,101,46,116,101,120,116,41,59,92,110,32,32,32,32,32,32,105,110,115,101,114,116,40,112,97,114,101,110,116,69,108,109,44,32,118,110,111,100,101,46,101,108,109,44,32,114,101,102,69,108,109,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,110,111,100,101,46,101,108,109,32,61,32,110,111,100,101,79,112,115,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,118,110,111,100,101,46,116,101,120,116,41,59,92,110,32,32,32,32,32,32,105,110,115,101,114,116,40,112,97,114,101,110,116,69,108,109,44,32,118,110,111,100,101,46,101,108,109,44,32,114,101,102,69,108,109,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,111,109,112,111,110,101,110,116,32,40,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,112,97,114,101,110,116,69,108,109,44,32,114,101,102,69,108,109,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,118,110,111,100,101,46,100,97,116,97,59,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,82,101,97,99,116,105,118,97,116,101,100,32,61,32,105,115,68,101,102,40,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,32,38,38,32,105,46,107,101,101,112,65,108,105,118,101,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,32,61,32,105,46,104,111,111,107,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,105,110,105,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,40,118,110,111,100,101,44,32,102,97,108,115,101,32,47,42,32,104,121,100,114,97,116,105,110,103,32,42,47,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,97,102,116,101,114,32,99,97,108,108,105,110,103,32,116,104,101,32,105,110,105,116,32,104,111,111,107,44,32,105,102,32,116,104,101,32,118,110,111,100,101,32,105,115,32,97,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,92,110,32,32,32,32,32,32,47,47,32,105,116,32,115,104,111,117,108,100,39,118,101,32,99,114,101,97,116,101,100,32,97,32,99,104,105,108,100,32,105,110,115,116,97,110,99,101,32,97,110,100,32,109,111,117,110,116,101,100,32,105,116,46,32,116,104,101,32,99,104,105,108,100,92,110,32,32,32,32,32,32,47,47,32,99,111,109,112,111,110,101,110,116,32,97,108,115,111,32,104,97,115,32,115,101,116,32,116,104,101,32,112,108,97,99,101,104,111,108,100,101,114,32,118,110,111,100,101,39,115,32,101,108,109,46,92,110,32,32,32,32,32,32,47,47,32,105,110,32,116,104,97,116,32,99,97,115,101,32,119,101,32,99,97,110,32,106,117,115,116,32,114,101,116,117,114,110,32,116,104,101,32,101,108,101,109,101,110,116,32,97,110,100,32,98,101,32,100,111,110,101,46,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,105,116,67,111,109,112,111,110,101,110,116,40,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,59,92,110,32,32,32,32,32,32,32,32,105,110,115,101,114,116,40,112,97,114,101,110,116,69,108,109,44,32,118,110,111,100,101,46,101,108,109,44,32,114,101,102,69,108,109,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,84,114,117,101,40,105,115,82,101,97,99,116,105,118,97,116,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,97,99,116,105,118,97,116,101,67,111,109,112,111,110,101,110,116,40,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,112,97,114,101,110,116,69,108,109,44,32,114,101,102,69,108,109,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,105,116,67,111,109,112,111,110,101,110,116,32,40,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,118,110,111,100,101,46,100,97,116,97,46,112,101,110,100,105,110,103,73,110,115,101,114,116,41,41,32,123,92,110,32,32,32,32,32,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,46,112,117,115,104,46,97,112,112,108,121,40,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,118,110,111,100,101,46,100,97,116,97,46,112,101,110,100,105,110,103,73,110,115,101,114,116,41,59,92,110,32,32,32,32,32,32,118,110,111,100,101,46,100,97,116,97,46,112,101,110,100,105,110,103,73,110,115,101,114,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,32,32,118,110,111,100,101,46,101,108,109,32,61,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,36,101,108,59,92,110,32,32,32,32,105,102,32,40,105,115,80,97,116,99,104,97,98,108,101,40,118,110,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,105,110,118,111,107,101,67,114,101,97,116,101,72,111,111,107,115,40,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,59,92,110,32,32,32,32,32,32,115,101,116,83,99,111,112,101,40,118,110,111,100,101,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,101,109,112,116,121,32,99,111,109,112,111,110,101,110,116,32,114,111,111,116,46,92,110,32,32,32,32,32,32,47,47,32,115,107,105,112,32,97,108,108,32,101,108,101,109,101,110,116,45,114,101,108,97,116,101,100,32,109,111,100,117,108,101,115,32,101,120,99,101,112,116,32,102,111,114,32,114,101,102,32,40,35,51,52,53,53,41,92,110,32,32,32,32,32,32,114,101,103,105,115,116,101,114,82,101,102,40,118,110,111,100,101,41,59,92,110,32,32,32,32,32,32,47,47,32,109,97,107,101,32,115,117,114,101,32,116,111,32,105,110,118,111,107,101,32,116,104,101,32,105,110,115,101,114,116,32,104,111,111,107,92,110,32,32,32,32,32,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,46,112,117,115,104,40,118,110,111,100,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,97,99,116,105,118,97,116,101,67,111,109,112,111,110,101,110,116,32,40,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,112,97,114,101,110,116,69,108,109,44,32,114,101,102,69,108,109,41,32,123,92,110,32,32,32,32,118,97,114,32,105,59,92,110,32,32,32,32,47,47,32,104,97,99,107,32,102,111,114,32,35,52,51,51,57,58,32,97,32,114,101,97,99,116,105,118,97,116,101,100,32,99,111,109,112,111,110,101,110,116,32,119,105,116,104,32,105,110,110,101,114,32,116,114,97,110,115,105,116,105,111,110,92,110,32,32,32,32,47,47,32,100,111,101,115,32,110,111,116,32,116,114,105,103,103,101,114,32,98,101,99,97,117,115,101,32,116,104,101,32,105,110,110,101,114,32,110,111,100,101,39,115,32,99,114,101,97,116,101,100,32,104,111,111,107,115,32,97,114,101,32,110,111,116,32,99,97,108,108,101,100,92,110,32,32,32,32,47,47,32,97,103,97,105,110,46,32,73,116,39,115,32,110,111,116,32,105,100,101,97,108,32,116,111,32,105,110,118,111,108,118,101,32,109,111,100,117,108,101,45,115,112,101,99,105,102,105,99,32,108,111,103,105,99,32,105,110,32,104,101,114,101,32,98,117,116,92,110,32,32,32,32,47,47,32,116,104,101,114,101,32,100,111,101,115,110,39,116,32,115,101,101,109,32,116,111,32,98,101,32,97,32,98,101,116,116,101,114,32,119,97,121,32,116,111,32,100,111,32,105,116,46,92,110,32,32,32,32,118,97,114,32,105,110,110,101,114,78,111,100,101,32,61,32,118,110,111,100,101,59,92,110,32,32,32,32,119,104,105,108,101,32,40,105,110,110,101,114,78,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,32,123,92,110,32,32,32,32,32,32,105,110,110,101,114,78,111,100,101,32,61,32,105,110,110,101,114,78,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,118,110,111,100,101,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,32,61,32,105,110,110,101,114,78,111,100,101,46,100,97,116,97,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,116,114,97,110,115,105,116,105,111,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,99,98,115,46,97,99,116,105,118,97,116,101,46,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,98,115,46,97,99,116,105,118,97,116,101,91,105,93,40,101,109,112,116,121,78,111,100,101,44,32,105,110,110,101,114,78,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,46,112,117,115,104,40,105,110,110,101,114,78,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,117,110,108,105,107,101,32,97,32,110,101,119,108,121,32,99,114,101,97,116,101,100,32,99,111,109,112,111,110,101,110,116,44,92,110,32,32,32,32,47,47,32,97,32,114,101,97,99,116,105,118,97,116,101,100,32,107,101,101,112,45,97,108,105,118,101,32,99,111,109,112,111,110,101,110,116,32,100,111,101,115,110,39,116,32,105,110,115,101,114,116,32,105,116,115,101,108,102,92,110,32,32,32,32,105,110,115,101,114,116,40,112,97,114,101,110,116,69,108,109,44,32,118,110,111,100,101,46,101,108,109,44,32,114,101,102,69,108,109,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,115,101,114,116,32,40,112,97,114,101,110,116,44,32,101,108,109,44,32,114,101,102,36,36,49,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,112,97,114,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,114,101,102,36,36,49,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,79,112,115,46,112,97,114,101,110,116,78,111,100,101,40,114,101,102,36,36,49,41,32,61,61,61,32,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,110,111,100,101,79,112,115,46,105,110,115,101,114,116,66,101,102,111,114,101,40,112,97,114,101,110,116,44,32,101,108,109,44,32,114,101,102,36,36,49,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,110,111,100,101,79,112,115,46,97,112,112,101,110,100,67,104,105,108,100,40,112,97,114,101,110,116,44,32,101,108,109,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,67,104,105,108,100,114,101,110,32,40,118,110,111,100,101,44,32,99,104,105,108,100,114,101,110,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,99,104,105,108,100,114,101,110,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,99,104,101,99,107,68,117,112,108,105,99,97,116,101,75,101,121,115,40,99,104,105,108,100,114,101,110,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,69,108,109,40,99,104,105,108,100,114,101,110,91,105,93,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,118,110,111,100,101,46,101,108,109,44,32,110,117,108,108,44,32,116,114,117,101,44,32,99,104,105,108,100,114,101,110,44,32,105,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,80,114,105,109,105,116,105,118,101,40,118,110,111,100,101,46,116,101,120,116,41,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,79,112,115,46,97,112,112,101,110,100,67,104,105,108,100,40,118,110,111,100,101,46,101,108,109,44,32,110,111,100,101,79,112,115,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,83,116,114,105,110,103,40,118,110,111,100,101,46,116,101,120,116,41,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,115,80,97,116,99,104,97,98,108,101,32,40,118,110,111,100,101,41,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,32,123,92,110,32,32,32,32,32,32,118,110,111,100,101,32,61,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,118,110,111,100,101,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,105,115,68,101,102,40,118,110,111,100,101,46,116,97,103,41,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,67,114,101,97,116,101,72,111,111,107,115,32,40,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,36,49,32,61,32,48,59,32,105,36,49,32,60,32,99,98,115,46,99,114,101,97,116,101,46,108,101,110,103,116,104,59,32,43,43,105,36,49,41,32,123,92,110,32,32,32,32,32,32,99,98,115,46,99,114,101,97,116,101,91,105,36,49,93,40,101,109,112,116,121,78,111,100,101,44,32,118,110,111,100,101,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,32,61,32,118,110,111,100,101,46,100,97,116,97,46,104,111,111,107,59,32,47,47,32,82,101,117,115,101,32,118,97,114,105,97,98,108,101,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,46,99,114,101,97,116,101,41,41,32,123,32,105,46,99,114,101,97,116,101,40,101,109,112,116,121,78,111,100,101,44,32,118,110,111,100,101,41,59,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,46,105,110,115,101,114,116,41,41,32,123,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,46,112,117,115,104,40,118,110,111,100,101,41,59,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,47,47,32,115,101,116,32,115,99,111,112,101,32,105,100,32,97,116,116,114,105,98,117,116,101,32,102,111,114,32,115,99,111,112,101,100,32,67,83,83,46,92,110,32,32,47,47,32,116,104,105,115,32,105,115,32,105,109,112,108,101,109,101,110,116,101,100,32,97,115,32,97,32,115,112,101,99,105,97,108,32,99,97,115,101,32,116,111,32,97,118,111,105,100,32,116,104,101,32,111,118,101,114,104,101,97,100,92,110,32,32,47,47,32,111,102,32,103,111,105,110,103,32,116,104,114,111,117,103,104,32,116,104,101,32,110,111,114,109,97,108,32,97,116,116,114,105,98,117,116,101,32,112,97,116,99,104,105,110,103,32,112,114,111,99,101,115,115,46,92,110,32,32,102,117,110,99,116,105,111,110,32,115,101,116,83,99,111,112,101,32,40,118,110,111,100,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,59,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,32,61,32,118,110,111,100,101,46,102,110,83,99,111,112,101,73,100,41,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,79,112,115,46,115,101,116,83,116,121,108,101,83,99,111,112,101,40,118,110,111,100,101,46,101,108,109,44,32,105,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,110,99,101,115,116,111,114,32,61,32,118,110,111,100,101,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,97,110,99,101,115,116,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,32,61,32,97,110,99,101,115,116,111,114,46,99,111,110,116,101,120,116,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,36,111,112,116,105,111,110,115,46,95,115,99,111,112,101,73,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,110,111,100,101,79,112,115,46,115,101,116,83,116,121,108,101,83,99,111,112,101,40,118,110,111,100,101,46,101,108,109,44,32,105,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,97,110,99,101,115,116,111,114,32,61,32,97,110,99,101,115,116,111,114,46,112,97,114,101,110,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,102,111,114,32,115,108,111,116,32,99,111,110,116,101,110,116,32,116,104,101,121,32,115,104,111,117,108,100,32,97,108,115,111,32,103,101,116,32,116,104,101,32,115,99,111,112,101,73,100,32,102,114,111,109,32,116,104,101,32,104,111,115,116,32,105,110,115,116,97,110,99,101,46,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,32,61,32,97,99,116,105,118,101,73,110,115,116,97,110,99,101,41,32,38,38,92,110,32,32,32,32,32,32,105,32,33,61,61,32,118,110,111,100,101,46,99,111,110,116,101,120,116,32,38,38,92,110,32,32,32,32,32,32,105,32,33,61,61,32,118,110,111,100,101,46,102,110,67,111,110,116,101,120,116,32,38,38,92,110,32,32,32,32,32,32,105,115,68,101,102,40,105,32,61,32,105,46,36,111,112,116,105,111,110,115,46,95,115,99,111,112,101,73,100,41,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,79,112,115,46,115,101,116,83,116,121,108,101,83,99,111,112,101,40,118,110,111,100,101,46,101,108,109,44,32,105,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,97,100,100,86,110,111,100,101,115,32,40,112,97,114,101,110,116,69,108,109,44,32,114,101,102,69,108,109,44,32,118,110,111,100,101,115,44,32,115,116,97,114,116,73,100,120,44,32,101,110,100,73,100,120,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,32,123,92,110,32,32,32,32,102,111,114,32,40,59,32,115,116,97,114,116,73,100,120,32,60,61,32,101,110,100,73,100,120,59,32,43,43,115,116,97,114,116,73,100,120,41,32,123,92,110,32,32,32,32,32,32,99,114,101,97,116,101,69,108,109,40,118,110,111,100,101,115,91,115,116,97,114,116,73,100,120,93,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,112,97,114,101,110,116,69,108,109,44,32,114,101,102,69,108,109,44,32,102,97,108,115,101,44,32,118,110,111,100,101,115,44,32,115,116,97,114,116,73,100,120,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,68,101,115,116,114,111,121,72,111,111,107,32,40,118,110,111,100,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,44,32,106,59,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,118,110,111,100,101,46,100,97,116,97,59,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,100,97,116,97,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,32,61,32,100,97,116,97,46,104,111,111,107,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,100,101,115,116,114,111,121,41,41,32,123,32,105,40,118,110,111,100,101,41,59,32,125,92,110,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,99,98,115,46,100,101,115,116,114,111,121,46,108,101,110,103,116,104,59,32,43,43,105,41,32,123,32,99,98,115,46,100,101,115,116,114,111,121,91,105,93,40,118,110,111,100,101,41,59,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,32,61,32,118,110,111,100,101,46,99,104,105,108,100,114,101,110,41,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,106,32,61,32,48,59,32,106,32,60,32,118,110,111,100,101,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,43,43,106,41,32,123,92,110,32,32,32,32,32,32,32,32,105,110,118,111,107,101,68,101,115,116,114,111,121,72,111,111,107,40,118,110,111,100,101,46,99,104,105,108,100,114,101,110,91,106,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,86,110,111,100,101,115,32,40,118,110,111,100,101,115,44,32,115,116,97,114,116,73,100,120,44,32,101,110,100,73,100,120,41,32,123,92,110,32,32,32,32,102,111,114,32,40,59,32,115,116,97,114,116,73,100,120,32,60,61,32,101,110,100,73,100,120,59,32,43,43,115,116,97,114,116,73,100,120,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,104,32,61,32,118,110,111,100,101,115,91,115,116,97,114,116,73,100,120,93,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,99,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,99,104,46,116,97,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,65,110,100,73,110,118,111,107,101,82,101,109,111,118,101,72,111,111,107,40,99,104,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,110,118,111,107,101,68,101,115,116,114,111,121,72,111,111,107,40,99,104,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,32,47,47,32,84,101,120,116,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,78,111,100,101,40,99,104,46,101,108,109,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,65,110,100,73,110,118,111,107,101,82,101,109,111,118,101,72,111,111,107,32,40,118,110,111,100,101,44,32,114,109,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,114,109,41,32,124,124,32,105,115,68,101,102,40,118,110,111,100,101,46,100,97,116,97,41,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,59,92,110,32,32,32,32,32,32,118,97,114,32,108,105,115,116,101,110,101,114,115,32,61,32,99,98,115,46,114,101,109,111,118,101,46,108,101,110,103,116,104,32,43,32,49,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,114,109,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,119,101,32,104,97,118,101,32,97,32,114,101,99,117,114,115,105,118,101,108,121,32,112,97,115,115,101,100,32,100,111,119,110,32,114,109,32,99,97,108,108,98,97,99,107,92,110,32,32,32,32,32,32,32,32,47,47,32,105,110,99,114,101,97,115,101,32,116,104,101,32,108,105,115,116,101,110,101,114,115,32,99,111,117,110,116,92,110,32,32,32,32,32,32,32,32,114,109,46,108,105,115,116,101,110,101,114,115,32,43,61,32,108,105,115,116,101,110,101,114,115,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,100,105,114,101,99,116,108,121,32,114,101,109,111,118,105,110,103,92,110,32,32,32,32,32,32,32,32,114,109,32,61,32,99,114,101,97,116,101,82,109,67,98,40,118,110,111,100,101,46,101,108,109,44,32,108,105,115,116,101,110,101,114,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,114,101,99,117,114,115,105,118,101,108,121,32,105,110,118,111,107,101,32,104,111,111,107,115,32,111,110,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,32,114,111,111,116,32,110,111,100,101,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,32,61,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,95,118,110,111,100,101,41,32,38,38,32,105,115,68,101,102,40,105,46,100,97,116,97,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,65,110,100,73,110,118,111,107,101,82,101,109,111,118,101,72,111,111,107,40,105,44,32,114,109,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,99,98,115,46,114,101,109,111,118,101,46,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,99,98,115,46,114,101,109,111,118,101,91,105,93,40,118,110,111,100,101,44,32,114,109,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,32,61,32,118,110,111,100,101,46,100,97,116,97,46,104,111,111,107,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,114,101,109,111,118,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,40,118,110,111,100,101,44,32,114,109,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,114,109,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,109,111,118,101,78,111,100,101,40,118,110,111,100,101,46,101,108,109,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,67,104,105,108,100,114,101,110,32,40,112,97,114,101,110,116,69,108,109,44,32,111,108,100,67,104,44,32,110,101,119,67,104,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,114,101,109,111,118,101,79,110,108,121,41,32,123,92,110,32,32,32,32,118,97,114,32,111,108,100,83,116,97,114,116,73,100,120,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,110,101,119,83,116,97,114,116,73,100,120,32,61,32,48,59,92,110,32,32,32,32,118,97,114,32,111,108,100,69,110,100,73,100,120,32,61,32,111,108,100,67,104,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,118,97,114,32,111,108,100,83,116,97,114,116,86,110,111,100,101,32,61,32,111,108,100,67,104,91,48,93,59,92,110,32,32,32,32,118,97,114,32,111,108,100,69,110,100,86,110,111,100,101,32,61,32,111,108,100,67,104,91,111,108,100,69,110,100,73,100,120,93,59,92,110,32,32,32,32,118,97,114,32,110,101,119,69,110,100,73,100,120,32,61,32,110,101,119,67,104,46,108,101,110,103,116,104,32,45,32,49,59,92,110,32,32,32,32,118,97,114,32,110,101,119,83,116,97,114,116,86,110,111,100,101,32,61,32,110,101,119,67,104,91,48,93,59,92,110,32,32,32,32,118,97,114,32,110,101,119,69,110,100,86,110,111,100,101,32,61,32,110,101,119,67,104,91,110,101,119,69,110,100,73,100,120,93,59,92,110,32,32,32,32,118,97,114,32,111,108,100,75,101,121,84,111,73,100,120,44,32,105,100,120,73,110,79,108,100,44,32,118,110,111,100,101,84,111,77,111,118,101,44,32,114,101,102,69,108,109,59,92,110,92,110,32,32,32,32,47,47,32,114,101,109,111,118,101,79,110,108,121,32,105,115,32,97,32,115,112,101,99,105,97,108,32,102,108,97,103,32,117,115,101,100,32,111,110,108,121,32,98,121,32,60,116,114,97,110,115,105,116,105,111,110,45,103,114,111,117,112,62,92,110,32,32,32,32,47,47,32,116,111,32,101,110,115,117,114,101,32,114,101,109,111,118,101,100,32,101,108,101,109,101,110,116,115,32,115,116,97,121,32,105,110,32,99,111,114,114,101,99,116,32,114,101,108,97,116,105,118,101,32,112,111,115,105,116,105,111,110,115,92,110,32,32,32,32,47,47,32,100,117,114,105,110,103,32,108,101,97,118,105,110,103,32,116,114,97,110,115,105,116,105,111,110,115,92,110,32,32,32,32,118,97,114,32,99,97,110,77,111,118,101,32,61,32,33,114,101,109,111,118,101,79,110,108,121,59,92,110,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,99,104,101,99,107,68,117,112,108,105,99,97,116,101,75,101,121,115,40,110,101,119,67,104,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,119,104,105,108,101,32,40,111,108,100,83,116,97,114,116,73,100,120,32,60,61,32,111,108,100,69,110,100,73,100,120,32,38,38,32,110,101,119,83,116,97,114,116,73,100,120,32,60,61,32,110,101,119,69,110,100,73,100,120,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,40,111,108,100,83,116,97,114,116,86,110,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,111,108,100,83,116,97,114,116,86,110,111,100,101,32,61,32,111,108,100,67,104,91,43,43,111,108,100,83,116,97,114,116,73,100,120,93,59,32,47,47,32,86,110,111,100,101,32,104,97,115,32,98,101,101,110,32,109,111,118,101,100,32,108,101,102,116,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,85,110,100,101,102,40,111,108,100,69,110,100,86,110,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,111,108,100,69,110,100,86,110,111,100,101,32,61,32,111,108,100,67,104,91,45,45,111,108,100,69,110,100,73,100,120,93,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,97,109,101,86,110,111,100,101,40,111,108,100,83,116,97,114,116,86,110,111,100,101,44,32,110,101,119,83,116,97,114,116,86,110,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,112,97,116,99,104,86,110,111,100,101,40,111,108,100,83,116,97,114,116,86,110,111,100,101,44,32,110,101,119,83,116,97,114,116,86,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,110,101,119,67,104,44,32,110,101,119,83,116,97,114,116,73,100,120,41,59,92,110,32,32,32,32,32,32,32,32,111,108,100,83,116,97,114,116,86,110,111,100,101,32,61,32,111,108,100,67,104,91,43,43,111,108,100,83,116,97,114,116,73,100,120,93,59,92,110,32,32,32,32,32,32,32,32,110,101,119,83,116,97,114,116,86,110,111,100,101,32,61,32,110,101,119,67,104,91,43,43,110,101,119,83,116,97,114,116,73,100,120,93,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,97,109,101,86,110,111,100,101,40,111,108,100,69,110,100,86,110,111,100,101,44,32,110,101,119,69,110,100,86,110,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,112,97,116,99,104,86,110,111,100,101,40,111,108,100,69,110,100,86,110,111,100,101,44,32,110,101,119,69,110,100,86,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,110,101,119,67,104,44,32,110,101,119,69,110,100,73,100,120,41,59,92,110,32,32,32,32,32,32,32,32,111,108,100,69,110,100,86,110,111,100,101,32,61,32,111,108,100,67,104,91,45,45,111,108,100,69,110,100,73,100,120,93,59,92,110,32,32,32,32,32,32,32,32,110,101,119,69,110,100,86,110,111,100,101,32,61,32,110,101,119,67,104,91,45,45,110,101,119,69,110,100,73,100,120,93,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,97,109,101,86,110,111,100,101,40,111,108,100,83,116,97,114,116,86,110,111,100,101,44,32,110,101,119,69,110,100,86,110,111,100,101,41,41,32,123,32,47,47,32,86,110,111,100,101,32,109,111,118,101,100,32,114,105,103,104,116,92,110,32,32,32,32,32,32,32,32,112,97,116,99,104,86,110,111,100,101,40,111,108,100,83,116,97,114,116,86,110,111,100,101,44,32,110,101,119,69,110,100,86,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,110,101,119,67,104,44,32,110,101,119,69,110,100,73,100,120,41,59,92,110,32,32,32,32,32,32,32,32,99,97,110,77,111,118,101,32,38,38,32,110,111,100,101,79,112,115,46,105,110,115,101,114,116,66,101,102,111,114,101,40,112,97,114,101,110,116,69,108,109,44,32,111,108,100,83,116,97,114,116,86,110,111,100,101,46,101,108,109,44,32,110,111,100,101,79,112,115,46,110,101,120,116,83,105,98,108,105,110,103,40,111,108,100,69,110,100,86,110,111,100,101,46,101,108,109,41,41,59,92,110,32,32,32,32,32,32,32,32,111,108,100,83,116,97,114,116,86,110,111,100,101,32,61,32,111,108,100,67,104,91,43,43,111,108,100,83,116,97,114,116,73,100,120,93,59,92,110,32,32,32,32,32,32,32,32,110,101,119,69,110,100,86,110,111,100,101,32,61,32,110,101,119,67,104,91,45,45,110,101,119,69,110,100,73,100,120,93,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,97,109,101,86,110,111,100,101,40,111,108,100,69,110,100,86,110,111,100,101,44,32,110,101,119,83,116,97,114,116,86,110,111,100,101,41,41,32,123,32,47,47,32,86,110,111,100,101,32,109,111,118,101,100,32,108,101,102,116,92,110,32,32,32,32,32,32,32,32,112,97,116,99,104,86,110,111,100,101,40,111,108,100,69,110,100,86,110,111,100,101,44,32,110,101,119,83,116,97,114,116,86,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,110,101,119,67,104,44,32,110,101,119,83,116,97,114,116,73,100,120,41,59,92,110,32,32,32,32,32,32,32,32,99,97,110,77,111,118,101,32,38,38,32,110,111,100,101,79,112,115,46,105,110,115,101,114,116,66,101,102,111,114,101,40,112,97,114,101,110,116,69,108,109,44,32,111,108,100,69,110,100,86,110,111,100,101,46,101,108,109,44,32,111,108,100,83,116,97,114,116,86,110,111,100,101,46,101,108,109,41,59,92,110,32,32,32,32,32,32,32,32,111,108,100,69,110,100,86,110,111,100,101,32,61,32,111,108,100,67,104,91,45,45,111,108,100,69,110,100,73,100,120,93,59,92,110,32,32,32,32,32,32,32,32,110,101,119,83,116,97,114,116,86,110,111,100,101,32,61,32,110,101,119,67,104,91,43,43,110,101,119,83,116,97,114,116,73,100,120,93,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,40,111,108,100,75,101,121,84,111,73,100,120,41,41,32,123,32,111,108,100,75,101,121,84,111,73,100,120,32,61,32,99,114,101,97,116,101,75,101,121,84,111,79,108,100,73,100,120,40,111,108,100,67,104,44,32,111,108,100,83,116,97,114,116,73,100,120,44,32,111,108,100,69,110,100,73,100,120,41,59,32,125,92,110,32,32,32,32,32,32,32,32,105,100,120,73,110,79,108,100,32,61,32,105,115,68,101,102,40,110,101,119,83,116,97,114,116,86,110,111,100,101,46,107,101,121,41,92,110,32,32,32,32,32,32,32,32,32,32,63,32,111,108,100,75,101,121,84,111,73,100,120,91,110,101,119,83,116,97,114,116,86,110,111,100,101,46,107,101,121,93,92,110,32,32,32,32,32,32,32,32,32,32,58,32,102,105,110,100,73,100,120,73,110,79,108,100,40,110,101,119,83,116,97,114,116,86,110,111,100,101,44,32,111,108,100,67,104,44,32,111,108,100,83,116,97,114,116,73,100,120,44,32,111,108,100,69,110,100,73,100,120,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,40,105,100,120,73,110,79,108,100,41,41,32,123,32,47,47,32,78,101,119,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,99,114,101,97,116,101,69,108,109,40,110,101,119,83,116,97,114,116,86,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,112,97,114,101,110,116,69,108,109,44,32,111,108,100,83,116,97,114,116,86,110,111,100,101,46,101,108,109,44,32,102,97,108,115,101,44,32,110,101,119,67,104,44,32,110,101,119,83,116,97,114,116,73,100,120,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,110,111,100,101,84,111,77,111,118,101,32,61,32,111,108,100,67,104,91,105,100,120,73,110,79,108,100,93,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,97,109,101,86,110,111,100,101,40,118,110,111,100,101,84,111,77,111,118,101,44,32,110,101,119,83,116,97,114,116,86,110,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,99,104,86,110,111,100,101,40,118,110,111,100,101,84,111,77,111,118,101,44,32,110,101,119,83,116,97,114,116,86,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,110,101,119,67,104,44,32,110,101,119,83,116,97,114,116,73,100,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,108,100,67,104,91,105,100,120,73,110,79,108,100,93,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,110,77,111,118,101,32,38,38,32,110,111,100,101,79,112,115,46,105,110,115,101,114,116,66,101,102,111,114,101,40,112,97,114,101,110,116,69,108,109,44,32,118,110,111,100,101,84,111,77,111,118,101,46,101,108,109,44,32,111,108,100,83,116,97,114,116,86,110,111,100,101,46,101,108,109,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,115,97,109,101,32,107,101,121,32,98,117,116,32,100,105,102,102,101,114,101,110,116,32,101,108,101,109,101,110,116,46,32,116,114,101,97,116,32,97,115,32,110,101,119,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,114,101,97,116,101,69,108,109,40,110,101,119,83,116,97,114,116,86,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,112,97,114,101,110,116,69,108,109,44,32,111,108,100,83,116,97,114,116,86,110,111,100,101,46,101,108,109,44,32,102,97,108,115,101,44,32,110,101,119,67,104,44,32,110,101,119,83,116,97,114,116,73,100,120,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,110,101,119,83,116,97,114,116,86,110,111,100,101,32,61,32,110,101,119,67,104,91,43,43,110,101,119,83,116,97,114,116,73,100,120,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,111,108,100,83,116,97,114,116,73,100,120,32,62,32,111,108,100,69,110,100,73,100,120,41,32,123,92,110,32,32,32,32,32,32,114,101,102,69,108,109,32,61,32,105,115,85,110,100,101,102,40,110,101,119,67,104,91,110,101,119,69,110,100,73,100,120,32,43,32,49,93,41,32,63,32,110,117,108,108,32,58,32,110,101,119,67,104,91,110,101,119,69,110,100,73,100,120,32,43,32,49,93,46,101,108,109,59,92,110,32,32,32,32,32,32,97,100,100,86,110,111,100,101,115,40,112,97,114,101,110,116,69,108,109,44,32,114,101,102,69,108,109,44,32,110,101,119,67,104,44,32,110,101,119,83,116,97,114,116,73,100,120,44,32,110,101,119,69,110,100,73,100,120,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,101,119,83,116,97,114,116,73,100,120,32,62,32,110,101,119,69,110,100,73,100,120,41,32,123,92,110,32,32,32,32,32,32,114,101,109,111,118,101,86,110,111,100,101,115,40,111,108,100,67,104,44,32,111,108,100,83,116,97,114,116,73,100,120,44,32,111,108,100,69,110,100,73,100,120,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,99,104,101,99,107,68,117,112,108,105,99,97,116,101,75,101,121,115,32,40,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,118,97,114,32,115,101,101,110,75,101,121,115,32,61,32,123,125,59,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,118,110,111,100,101,32,61,32,99,104,105,108,100,114,101,110,91,105,93,59,92,110,32,32,32,32,32,32,118,97,114,32,107,101,121,32,61,32,118,110,111,100,101,46,107,101,121,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,101,101,110,75,101,121,115,91,107,101,121,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,92,34,68,117,112,108,105,99,97,116,101,32,107,101,121,115,32,100,101,116,101,99,116,101,100,58,32,39,92,34,32,43,32,107,101,121,32,43,32,92,34,39,46,32,84,104,105,115,32,109,97,121,32,99,97,117,115,101,32,97,110,32,117,112,100,97,116,101,32,101,114,114,111,114,46,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,110,111,100,101,46,99,111,110,116,101,120,116,92,110,32,32,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,101,101,110,75,101,121,115,91,107,101,121,93,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,102,105,110,100,73,100,120,73,110,79,108,100,32,40,110,111,100,101,44,32,111,108,100,67,104,44,32,115,116,97,114,116,44,32,101,110,100,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,115,116,97,114,116,59,32,105,32,60,32,101,110,100,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,32,61,32,111,108,100,67,104,91,105,93,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,99,41,32,38,38,32,115,97,109,101,86,110,111,100,101,40,110,111,100,101,44,32,99,41,41,32,123,32,114,101,116,117,114,110,32,105,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,97,116,99,104,86,110,111,100,101,32,40,92,110,32,32,32,32,111,108,100,86,110,111,100,101,44,92,110,32,32,32,32,118,110,111,100,101,44,92,110,32,32,32,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,92,110,32,32,32,32,111,119,110,101,114,65,114,114,97,121,44,92,110,32,32,32,32,105,110,100,101,120,44,92,110,32,32,32,32,114,101,109,111,118,101,79,110,108,121,92,110,32,32,41,32,123,92,110,32,32,32,32,105,102,32,40,111,108,100,86,110,111,100,101,32,61,61,61,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,118,110,111,100,101,46,101,108,109,41,32,38,38,32,105,115,68,101,102,40,111,119,110,101,114,65,114,114,97,121,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,99,108,111,110,101,32,114,101,117,115,101,100,32,118,110,111,100,101,92,110,32,32,32,32,32,32,118,110,111,100,101,32,61,32,111,119,110,101,114,65,114,114,97,121,91,105,110,100,101,120,93,32,61,32,99,108,111,110,101,86,78,111,100,101,40,118,110,111,100,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,101,108,109,32,61,32,118,110,111,100,101,46,101,108,109,32,61,32,111,108,100,86,110,111,100,101,46,101,108,109,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,84,114,117,101,40,111,108,100,86,110,111,100,101,46,105,115,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,118,110,111,100,101,46,97,115,121,110,99,70,97,99,116,111,114,121,46,114,101,115,111,108,118,101,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,104,121,100,114,97,116,101,40,111,108,100,86,110,111,100,101,46,101,108,109,44,32,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,118,110,111,100,101,46,105,115,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,114,101,117,115,101,32,101,108,101,109,101,110,116,32,102,111,114,32,115,116,97,116,105,99,32,116,114,101,101,115,46,92,110,32,32,32,32,47,47,32,110,111,116,101,32,119,101,32,111,110,108,121,32,100,111,32,116,104,105,115,32,105,102,32,116,104,101,32,118,110,111,100,101,32,105,115,32,99,108,111,110,101,100,32,45,92,110,32,32,32,32,47,47,32,105,102,32,116,104,101,32,110,101,119,32,110,111,100,101,32,105,115,32,110,111,116,32,99,108,111,110,101,100,32,105,116,32,109,101,97,110,115,32,116,104,101,32,114,101,110,100,101,114,32,102,117,110,99,116,105,111,110,115,32,104,97,118,101,32,98,101,101,110,92,110,32,32,32,32,47,47,32,114,101,115,101,116,32,98,121,32,116,104,101,32,104,111,116,45,114,101,108,111,97,100,45,97,112,105,32,97,110,100,32,119,101,32,110,101,101,100,32,116,111,32,100,111,32,97,32,112,114,111,112,101,114,32,114,101,45,114,101,110,100,101,114,46,92,110,32,32,32,32,105,102,32,40,105,115,84,114,117,101,40,118,110,111,100,101,46,105,115,83,116,97,116,105,99,41,32,38,38,92,110,32,32,32,32,32,32,105,115,84,114,117,101,40,111,108,100,86,110,111,100,101,46,105,115,83,116,97,116,105,99,41,32,38,38,92,110,32,32,32,32,32,32,118,110,111,100,101,46,107,101,121,32,61,61,61,32,111,108,100,86,110,111,100,101,46,107,101,121,32,38,38,92,110,32,32,32,32,32,32,40,105,115,84,114,117,101,40,118,110,111,100,101,46,105,115,67,108,111,110,101,100,41,32,124,124,32,105,115,84,114,117,101,40,118,110,111,100,101,46,105,115,79,110,99,101,41,41,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,32,61,32,111,108,100,86,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,105,59,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,118,110,111,100,101,46,100,97,116,97,59,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,100,97,116,97,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,100,97,116,97,46,104,111,111,107,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,112,114,101,112,97,116,99,104,41,41,32,123,92,110,32,32,32,32,32,32,105,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,111,108,100,67,104,32,61,32,111,108,100,86,110,111,100,101,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,99,104,32,61,32,118,110,111,100,101,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,100,97,116,97,41,32,38,38,32,105,115,80,97,116,99,104,97,98,108,101,40,118,110,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,99,98,115,46,117,112,100,97,116,101,46,108,101,110,103,116,104,59,32,43,43,105,41,32,123,32,99,98,115,46,117,112,100,97,116,101,91,105,93,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,41,59,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,32,61,32,100,97,116,97,46,104,111,111,107,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,117,112,100,97,116,101,41,41,32,123,32,105,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,41,59,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,40,118,110,111,100,101,46,116,101,120,116,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,111,108,100,67,104,41,32,38,38,32,105,115,68,101,102,40,99,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,111,108,100,67,104,32,33,61,61,32,99,104,41,32,123,32,117,112,100,97,116,101,67,104,105,108,100,114,101,110,40,101,108,109,44,32,111,108,100,67,104,44,32,99,104,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,114,101,109,111,118,101,79,110,108,121,41,59,32,125,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,68,101,102,40,99,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,104,101,99,107,68,117,112,108,105,99,97,116,101,75,101,121,115,40,99,104,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,111,108,100,86,110,111,100,101,46,116,101,120,116,41,41,32,123,32,110,111,100,101,79,112,115,46,115,101,116,84,101,120,116,67,111,110,116,101,110,116,40,101,108,109,44,32,39,39,41,59,32,125,92,110,32,32,32,32,32,32,32,32,97,100,100,86,110,111,100,101,115,40,101,108,109,44,32,110,117,108,108,44,32,99,104,44,32,48,44,32,99,104,46,108,101,110,103,116,104,32,45,32,49,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,68,101,102,40,111,108,100,67,104,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,86,110,111,100,101,115,40,111,108,100,67,104,44,32,48,44,32,111,108,100,67,104,46,108,101,110,103,116,104,32,45,32,49,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,68,101,102,40,111,108,100,86,110,111,100,101,46,116,101,120,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,110,111,100,101,79,112,115,46,115,101,116,84,101,120,116,67,111,110,116,101,110,116,40,101,108,109,44,32,39,39,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,111,108,100,86,110,111,100,101,46,116,101,120,116,32,33,61,61,32,118,110,111,100,101,46,116,101,120,116,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,79,112,115,46,115,101,116,84,101,120,116,67,111,110,116,101,110,116,40,101,108,109,44,32,118,110,111,100,101,46,116,101,120,116,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,100,97,116,97,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,32,61,32,100,97,116,97,46,104,111,111,107,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,112,111,115,116,112,97,116,99,104,41,41,32,123,32,105,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,41,59,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,105,110,118,111,107,101,73,110,115,101,114,116,72,111,111,107,32,40,118,110,111,100,101,44,32,113,117,101,117,101,44,32,105,110,105,116,105,97,108,41,32,123,92,110,32,32,32,32,47,47,32,100,101,108,97,121,32,105,110,115,101,114,116,32,104,111,111,107,115,32,102,111,114,32,99,111,109,112,111,110,101,110,116,32,114,111,111,116,32,110,111,100,101,115,44,32,105,110,118,111,107,101,32,116,104,101,109,32,97,102,116,101,114,32,116,104,101,92,110,32,32,32,32,47,47,32,101,108,101,109,101,110,116,32,105,115,32,114,101,97,108,108,121,32,105,110,115,101,114,116,101,100,92,110,32,32,32,32,105,102,32,40,105,115,84,114,117,101,40,105,110,105,116,105,97,108,41,32,38,38,32,105,115,68,101,102,40,118,110,111,100,101,46,112,97,114,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,118,110,111,100,101,46,112,97,114,101,110,116,46,100,97,116,97,46,112,101,110,100,105,110,103,73,110,115,101,114,116,32,61,32,113,117,101,117,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,113,117,101,117,101,46,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,113,117,101,117,101,91,105,93,46,100,97,116,97,46,104,111,111,107,46,105,110,115,101,114,116,40,113,117,101,117,101,91,105,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,104,121,100,114,97,116,105,111,110,66,97,105,108,101,100,32,61,32,102,97,108,115,101,59,92,110,32,32,47,47,32,108,105,115,116,32,111,102,32,109,111,100,117,108,101,115,32,116,104,97,116,32,99,97,110,32,115,107,105,112,32,99,114,101,97,116,101,32,104,111,111,107,32,100,117,114,105,110,103,32,104,121,100,114,97,116,105,111,110,32,98,101,99,97,117,115,101,32,116,104,101,121,92,110,32,32,47,47,32,97,114,101,32,97,108,114,101,97,100,121,32,114,101,110,100,101,114,101,100,32,111,110,32,116,104,101,32,99,108,105,101,110,116,32,111,114,32,104,97,115,32,110,111,32,110,101,101,100,32,102,111,114,32,105,110,105,116,105,97,108,105,122,97,116,105,111,110,92,110,32,32,47,47,32,78,111,116,101,58,32,115,116,121,108,101,32,105,115,32,101,120,99,108,117,100,101,100,32,98,101,99,97,117,115,101,32,105,116,32,114,101,108,105,101,115,32,111,110,32,105,110,105,116,105,97,108,32,99,108,111,110,101,32,102,111,114,32,102,117,116,117,114,101,92,110,32,32,47,47,32,100,101,101,112,32,117,112,100,97,116,101,115,32,40,35,55,48,54,51,41,46,92,110,32,32,118,97,114,32,105,115,82,101,110,100,101,114,101,100,77,111,100,117,108,101,32,61,32,109,97,107,101,77,97,112,40,39,97,116,116,114,115,44,99,108,97,115,115,44,115,116,97,116,105,99,67,108,97,115,115,44,115,116,97,116,105,99,83,116,121,108,101,44,107,101,121,39,41,59,92,110,92,110,32,32,47,47,32,78,111,116,101,58,32,116,104,105,115,32,105,115,32,97,32,98,114,111,119,115,101,114,45,111,110,108,121,32,102,117,110,99,116,105,111,110,32,115,111,32,119,101,32,99,97,110,32,97,115,115,117,109,101,32,101,108,109,115,32,97,114,101,32,68,79,77,32,110,111,100,101,115,46,92,110,32,32,102,117,110,99,116,105,111,110,32,104,121,100,114,97,116,101,32,40,101,108,109,44,32,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,105,110,86,80,114,101,41,32,123,92,110,32,32,32,32,118,97,114,32,105,59,92,110,32,32,32,32,118,97,114,32,116,97,103,32,61,32,118,110,111,100,101,46,116,97,103,59,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,118,110,111,100,101,46,100,97,116,97,59,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,118,110,111,100,101,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,105,110,86,80,114,101,32,61,32,105,110,86,80,114,101,32,124,124,32,40,100,97,116,97,32,38,38,32,100,97,116,97,46,112,114,101,41,59,92,110,32,32,32,32,118,110,111,100,101,46,101,108,109,32,61,32,101,108,109,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,84,114,117,101,40,118,110,111,100,101,46,105,115,67,111,109,109,101,110,116,41,32,38,38,32,105,115,68,101,102,40,118,110,111,100,101,46,97,115,121,110,99,70,97,99,116,111,114,121,41,41,32,123,92,110,32,32,32,32,32,32,118,110,111,100,101,46,105,115,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,97,115,115,101,114,116,32,110,111,100,101,32,109,97,116,99,104,92,110,32,32,32,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,97,115,115,101,114,116,78,111,100,101,77,97,116,99,104,40,101,108,109,44,32,118,110,111,100,101,44,32,105,110,86,80,114,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,100,97,116,97,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,32,61,32,100,97,116,97,46,104,111,111,107,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,105,110,105,116,41,41,32,123,32,105,40,118,110,111,100,101,44,32,116,114,117,101,32,47,42,32,104,121,100,114,97,116,105,110,103,32,42,47,41,59,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,32,61,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,46,32,105,116,32,115,104,111,117,108,100,32,104,97,118,101,32,104,121,100,114,97,116,101,100,32,105,116,115,32,111,119,110,32,116,114,101,101,46,92,110,32,32,32,32,32,32,32,32,105,110,105,116,67,111,109,112,111,110,101,110,116,40,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,116,97,103,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,99,104,105,108,100,114,101,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,101,109,112,116,121,32,101,108,101,109,101,110,116,44,32,97,108,108,111,119,32,99,108,105,101,110,116,32,116,111,32,112,105,99,107,32,117,112,32,97,110,100,32,112,111,112,117,108,97,116,101,32,99,104,105,108,100,114,101,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,101,108,109,46,104,97,115,67,104,105,108,100,78,111,100,101,115,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,114,101,97,116,101,67,104,105,108,100,114,101,110,40,118,110,111,100,101,44,32,99,104,105,108,100,114,101,110,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,118,45,104,116,109,108,32,97,110,100,32,100,111,109,80,114,111,112,115,58,32,105,110,110,101,114,72,84,77,76,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,105,32,61,32,100,97,116,97,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,100,111,109,80,114,111,112,115,41,32,38,38,32,105,115,68,101,102,40,105,32,61,32,105,46,105,110,110,101,114,72,84,77,76,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,32,33,61,61,32,101,108,109,46,105,110,110,101,114,72,84,77,76,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,99,111,110,115,111,108,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,33,104,121,100,114,97,116,105,111,110,66,97,105,108,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,121,100,114,97,116,105,111,110,66,97,105,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,39,80,97,114,101,110,116,58,32,39,44,32,101,108,109,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,39,115,101,114,118,101,114,32,105,110,110,101,114,72,84,77,76,58,32,39,44,32,105,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,39,99,108,105,101,110,116,32,105,110,110,101,114,72,84,77,76,58,32,39,44,32,101,108,109,46,105,110,110,101,114,72,84,77,76,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,105,116,101,114,97,116,101,32,97,110,100,32,99,111,109,112,97,114,101,32,99,104,105,108,100,114,101,110,32,108,105,115,116,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,77,97,116,99,104,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,99,104,105,108,100,78,111,100,101,32,61,32,101,108,109,46,102,105,114,115,116,67,104,105,108,100,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,36,49,32,61,32,48,59,32,105,36,49,32,60,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,36,49,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,99,104,105,108,100,78,111,100,101,32,124,124,32,33,104,121,100,114,97,116,101,40,99,104,105,108,100,78,111,100,101,44,32,99,104,105,108,100,114,101,110,91,105,36,49,93,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,105,110,86,80,114,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,77,97,116,99,104,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,78,111,100,101,32,61,32,99,104,105,108,100,78,111,100,101,46,110,101,120,116,83,105,98,108,105,110,103,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,105,102,32,99,104,105,108,100,78,111,100,101,32,105,115,32,110,111,116,32,110,117,108,108,44,32,105,116,32,109,101,97,110,115,32,116,104,101,32,97,99,116,117,97,108,32,99,104,105,108,100,78,111,100,101,115,32,108,105,115,116,32,105,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,108,111,110,103,101,114,32,116,104,97,110,32,116,104,101,32,118,105,114,116,117,97,108,32,99,104,105,108,100,114,101,110,32,108,105,115,116,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,99,104,105,108,100,114,101,110,77,97,116,99,104,32,124,124,32,99,104,105,108,100,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,111,102,32,99,111,110,115,111,108,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,33,104,121,100,114,97,116,105,111,110,66,97,105,108,101,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,121,100,114,97,116,105,111,110,66,97,105,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,39,80,97,114,101,110,116,58,32,39,44,32,101,108,109,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,39,77,105,115,109,97,116,99,104,105,110,103,32,99,104,105,108,100,78,111,100,101,115,32,118,115,46,32,86,78,111,100,101,115,58,32,39,44,32,101,108,109,46,99,104,105,108,100,78,111,100,101,115,44,32,99,104,105,108,100,114,101,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,100,97,116,97,41,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,102,117,108,108,73,110,118,111,107,101,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,105,115,82,101,110,100,101,114,101,100,77,111,100,117,108,101,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,117,108,108,73,110,118,111,107,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,118,111,107,101,67,114,101,97,116,101,72,111,111,107,115,40,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,102,117,108,108,73,110,118,111,107,101,32,38,38,32,100,97,116,97,91,39,99,108,97,115,115,39,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,101,110,115,117,114,101,32,99,111,108,108,101,99,116,105,110,103,32,100,101,112,115,32,102,111,114,32,100,101,101,112,32,99,108,97,115,115,32,98,105,110,100,105,110,103,115,32,102,111,114,32,102,117,116,117,114,101,32,117,112,100,97,116,101,115,92,110,32,32,32,32,32,32,32,32,32,32,116,114,97,118,101,114,115,101,40,100,97,116,97,91,39,99,108,97,115,115,39,93,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,101,108,109,46,100,97,116,97,32,33,61,61,32,118,110,111,100,101,46,116,101,120,116,41,32,123,92,110,32,32,32,32,32,32,101,108,109,46,100,97,116,97,32,61,32,118,110,111,100,101,46,116,101,120,116,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,97,115,115,101,114,116,78,111,100,101,77,97,116,99,104,32,40,110,111,100,101,44,32,118,110,111,100,101,44,32,105,110,86,80,114,101,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,68,101,102,40,118,110,111,100,101,46,116,97,103,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,110,111,100,101,46,116,97,103,46,105,110,100,101,120,79,102,40,39,118,117,101,45,99,111,109,112,111,110,101,110,116,39,41,32,61,61,61,32,48,32,124,124,32,40,92,110,32,32,32,32,32,32,32,32,33,105,115,85,110,107,110,111,119,110,69,108,101,109,101,110,116,36,36,49,40,118,110,111,100,101,44,32,105,110,86,80,114,101,41,32,38,38,92,110,32,32,32,32,32,32,32,32,118,110,111,100,101,46,116,97,103,46,116,111,76,111,119,101,114,67,97,115,101,40,41,32,61,61,61,32,40,110,111,100,101,46,116,97,103,78,97,109,101,32,38,38,32,110,111,100,101,46,116,97,103,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,92,110,32,32,32,32,32,32,41,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,46,110,111,100,101,84,121,112,101,32,61,61,61,32,40,118,110,111,100,101,46,105,115,67,111,109,109,101,110,116,32,63,32,56,32,58,32,51,41,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,112,97,116,99,104,32,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,44,32,104,121,100,114,97,116,105,110,103,44,32,114,101,109,111,118,101,79,110,108,121,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,40,118,110,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,111,108,100,86,110,111,100,101,41,41,32,123,32,105,110,118,111,107,101,68,101,115,116,114,111,121,72,111,111,107,40,111,108,100,86,110,111,100,101,41,59,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,105,115,73,110,105,116,105,97,108,80,97,116,99,104,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,118,97,114,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,32,61,32,91,93,59,92,110,92,110,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,40,111,108,100,86,110,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,101,109,112,116,121,32,109,111,117,110,116,32,40,108,105,107,101,108,121,32,97,115,32,99,111,109,112,111,110,101,110,116,41,44,32,99,114,101,97,116,101,32,110,101,119,32,114,111,111,116,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,32,105,115,73,110,105,116,105,97,108,80,97,116,99,104,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,99,114,101,97,116,101,69,108,109,40,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,118,97,114,32,105,115,82,101,97,108,69,108,101,109,101,110,116,32,61,32,105,115,68,101,102,40,111,108,100,86,110,111,100,101,46,110,111,100,101,84,121,112,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,33,105,115,82,101,97,108,69,108,101,109,101,110,116,32,38,38,32,115,97,109,101,86,110,111,100,101,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,112,97,116,99,104,32,101,120,105,115,116,105,110,103,32,114,111,111,116,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,112,97,116,99,104,86,110,111,100,101,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,110,117,108,108,44,32,110,117,108,108,44,32,114,101,109,111,118,101,79,110,108,121,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,82,101,97,108,69,108,101,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,109,111,117,110,116,105,110,103,32,116,111,32,97,32,114,101,97,108,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,99,104,101,99,107,32,105,102,32,116,104,105,115,32,105,115,32,115,101,114,118,101,114,45,114,101,110,100,101,114,101,100,32,99,111,110,116,101,110,116,32,97,110,100,32,105,102,32,119,101,32,99,97,110,32,112,101,114,102,111,114,109,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,97,32,115,117,99,99,101,115,115,102,117,108,32,104,121,100,114,97,116,105,111,110,46,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,111,108,100,86,110,111,100,101,46,110,111,100,101,84,121,112,101,32,61,61,61,32,49,32,38,38,32,111,108,100,86,110,111,100,101,46,104,97,115,65,116,116,114,105,98,117,116,101,40,83,83,82,95,65,84,84,82,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,108,100,86,110,111,100,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,83,83,82,95,65,84,84,82,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,104,121,100,114,97,116,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,84,114,117,101,40,104,121,100,114,97,116,105,110,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,121,100,114,97,116,101,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,118,111,107,101,73,110,115,101,114,116,72,111,111,107,40,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,108,100,86,110,111,100,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,84,104,101,32,99,108,105,101,110,116,45,115,105,100,101,32,114,101,110,100,101,114,101,100,32,118,105,114,116,117,97,108,32,68,79,77,32,116,114,101,101,32,105,115,32,110,111,116,32,109,97,116,99,104,105,110,103,32,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,115,101,114,118,101,114,45,114,101,110,100,101,114,101,100,32,99,111,110,116,101,110,116,46,32,84,104,105,115,32,105,115,32,108,105,107,101,108,121,32,99,97,117,115,101,100,32,98,121,32,105,110,99,111,114,114,101,99,116,32,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,72,84,77,76,32,109,97,114,107,117,112,44,32,102,111,114,32,101,120,97,109,112,108,101,32,110,101,115,116,105,110,103,32,98,108,111,99,107,45,108,101,118,101,108,32,101,108,101,109,101,110,116,115,32,105,110,115,105,100,101,32,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,60,112,62,44,32,111,114,32,109,105,115,115,105,110,103,32,60,116,98,111,100,121,62,46,32,66,97,105,108,105,110,103,32,104,121,100,114,97,116,105,111,110,32,97,110,100,32,112,101,114,102,111,114,109,105,110,103,32,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,39,102,117,108,108,32,99,108,105,101,110,116,45,115,105,100,101,32,114,101,110,100,101,114,46,39,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,101,105,116,104,101,114,32,110,111,116,32,115,101,114,118,101,114,45,114,101,110,100,101,114,101,100,44,32,111,114,32,104,121,100,114,97,116,105,111,110,32,102,97,105,108,101,100,46,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,99,114,101,97,116,101,32,97,110,32,101,109,112,116,121,32,110,111,100,101,32,97,110,100,32,114,101,112,108,97,99,101,32,105,116,92,110,32,32,32,32,32,32,32,32,32,32,111,108,100,86,110,111,100,101,32,61,32,101,109,112,116,121,78,111,100,101,65,116,40,111,108,100,86,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,114,101,112,108,97,99,105,110,103,32,101,120,105,115,116,105,110,103,32,101,108,101,109,101,110,116,92,110,32,32,32,32,32,32,32,32,118,97,114,32,111,108,100,69,108,109,32,61,32,111,108,100,86,110,111,100,101,46,101,108,109,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,97,114,101,110,116,69,108,109,32,61,32,110,111,100,101,79,112,115,46,112,97,114,101,110,116,78,111,100,101,40,111,108,100,69,108,109,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,99,114,101,97,116,101,32,110,101,119,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,99,114,101,97,116,101,69,108,109,40,92,110,32,32,32,32,32,32,32,32,32,32,118,110,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,101,120,116,114,101,109,101,108,121,32,114,97,114,101,32,101,100,103,101,32,99,97,115,101,58,32,100,111,32,110,111,116,32,105,110,115,101,114,116,32,105,102,32,111,108,100,32,101,108,101,109,101,110,116,32,105,115,32,105,110,32,97,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,108,101,97,118,105,110,103,32,116,114,97,110,115,105,116,105,111,110,46,32,79,110,108,121,32,104,97,112,112,101,110,115,32,119,104,101,110,32,99,111,109,98,105,110,105,110,103,32,116,114,97,110,115,105,116,105,111,110,32,43,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,107,101,101,112,45,97,108,105,118,101,32,43,32,72,79,67,115,46,32,40,35,52,53,57,48,41,92,110,32,32,32,32,32,32,32,32,32,32,111,108,100,69,108,109,46,95,108,101,97,118,101,67,98,32,63,32,110,117,108,108,32,58,32,112,97,114,101,110,116,69,108,109,44,92,110,32,32,32,32,32,32,32,32,32,32,110,111,100,101,79,112,115,46,110,101,120,116,83,105,98,108,105,110,103,40,111,108,100,69,108,109,41,92,110,32,32,32,32,32,32,32,32,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,117,112,100,97,116,101,32,112,97,114,101,110,116,32,112,108,97,99,101,104,111,108,100,101,114,32,110,111,100,101,32,101,108,101,109,101,110,116,44,32,114,101,99,117,114,115,105,118,101,108,121,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,118,110,111,100,101,46,112,97,114,101,110,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,97,110,99,101,115,116,111,114,32,61,32,118,110,111,100,101,46,112,97,114,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,112,97,116,99,104,97,98,108,101,32,61,32,105,115,80,97,116,99,104,97,98,108,101,40,118,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,97,110,99,101,115,116,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,99,98,115,46,100,101,115,116,114,111,121,46,108,101,110,103,116,104,59,32,43,43,105,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,98,115,46,100,101,115,116,114,111,121,91,105,93,40,97,110,99,101,115,116,111,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,110,99,101,115,116,111,114,46,101,108,109,32,61,32,118,110,111,100,101,46,101,108,109,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,97,116,99,104,97,98,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,36,49,32,61,32,48,59,32,105,36,49,32,60,32,99,98,115,46,99,114,101,97,116,101,46,108,101,110,103,116,104,59,32,43,43,105,36,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,98,115,46,99,114,101,97,116,101,91,105,36,49,93,40,101,109,112,116,121,78,111,100,101,44,32,97,110,99,101,115,116,111,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,35,54,53,49,51,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,105,110,118,111,107,101,32,105,110,115,101,114,116,32,104,111,111,107,115,32,116,104,97,116,32,109,97,121,32,104,97,118,101,32,98,101,101,110,32,109,101,114,103,101,100,32,98,121,32,99,114,101,97,116,101,32,104,111,111,107,115,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,101,46,103,46,32,102,111,114,32,100,105,114,101,99,116,105,118,101,115,32,116,104,97,116,32,117,115,101,115,32,116,104,101,32,92,34,105,110,115,101,114,116,101,100,92,34,32,104,111,111,107,46,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,105,110,115,101,114,116,32,61,32,97,110,99,101,115,116,111,114,46,100,97,116,97,46,104,111,111,107,46,105,110,115,101,114,116,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,110,115,101,114,116,46,109,101,114,103,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,115,116,97,114,116,32,97,116,32,105,110,100,101,120,32,49,32,116,111,32,97,118,111,105,100,32,114,101,45,105,110,118,111,107,105,110,103,32,99,111,109,112,111,110,101,110,116,32,109,111,117,110,116,101,100,32,104,111,111,107,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,36,50,32,61,32,49,59,32,105,36,50,32,60,32,105,110,115,101,114,116,46,102,110,115,46,108,101,110,103,116,104,59,32,105,36,50,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,101,114,116,46,102,110,115,91,105,36,50,93,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,103,105,115,116,101,114,82,101,102,40,97,110,99,101,115,116,111,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,110,99,101,115,116,111,114,32,61,32,97,110,99,101,115,116,111,114,46,112,97,114,101,110,116,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,100,101,115,116,114,111,121,32,111,108,100,32,110,111,100,101,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,68,101,102,40,112,97,114,101,110,116,69,108,109,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,86,110,111,100,101,115,40,91,111,108,100,86,110,111,100,101,93,44,32,48,44,32,48,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,68,101,102,40,111,108,100,86,110,111,100,101,46,116,97,103,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,110,118,111,107,101,68,101,115,116,114,111,121,72,111,111,107,40,111,108,100,86,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,110,118,111,107,101,73,110,115,101,114,116,72,111,111,107,40,118,110,111,100,101,44,32,105,110,115,101,114,116,101,100,86,110,111,100,101,81,117,101,117,101,44,32,105,115,73,110,105,116,105,97,108,80,97,116,99,104,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,118,110,111,100,101,46,101,108,109,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,100,105,114,101,99,116,105,118,101,115,32,61,32,123,92,110,32,32,99,114,101,97,116,101,58,32,117,112,100,97,116,101,68,105,114,101,99,116,105,118,101,115,44,92,110,32,32,117,112,100,97,116,101,58,32,117,112,100,97,116,101,68,105,114,101,99,116,105,118,101,115,44,92,110,32,32,100,101,115,116,114,111,121,58,32,102,117,110,99,116,105,111,110,32,117,110,98,105,110,100,68,105,114,101,99,116,105,118,101,115,32,40,118,110,111,100,101,41,32,123,92,110,32,32,32,32,117,112,100,97,116,101,68,105,114,101,99,116,105,118,101,115,40,118,110,111,100,101,44,32,101,109,112,116,121,78,111,100,101,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,68,105,114,101,99,116,105,118,101,115,32,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,41,32,123,92,110,32,32,105,102,32,40,111,108,100,86,110,111,100,101,46,100,97,116,97,46,100,105,114,101,99,116,105,118,101,115,32,124,124,32,118,110,111,100,101,46,100,97,116,97,46,100,105,114,101,99,116,105,118,101,115,41,32,123,92,110,32,32,32,32,95,117,112,100,97,116,101,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,117,112,100,97,116,101,32,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,105,115,67,114,101,97,116,101,32,61,32,111,108,100,86,110,111,100,101,32,61,61,61,32,101,109,112,116,121,78,111,100,101,59,92,110,32,32,118,97,114,32,105,115,68,101,115,116,114,111,121,32,61,32,118,110,111,100,101,32,61,61,61,32,101,109,112,116,121,78,111,100,101,59,92,110,32,32,118,97,114,32,111,108,100,68,105,114,115,32,61,32,110,111,114,109,97,108,105,122,101,68,105,114,101,99,116,105,118,101,115,36,49,40,111,108,100,86,110,111,100,101,46,100,97,116,97,46,100,105,114,101,99,116,105,118,101,115,44,32,111,108,100,86,110,111,100,101,46,99,111,110,116,101,120,116,41,59,92,110,32,32,118,97,114,32,110,101,119,68,105,114,115,32,61,32,110,111,114,109,97,108,105,122,101,68,105,114,101,99,116,105,118,101,115,36,49,40,118,110,111,100,101,46,100,97,116,97,46,100,105,114,101,99,116,105,118,101,115,44,32,118,110,111,100,101,46,99,111,110,116,101,120,116,41,59,92,110,92,110,32,32,118,97,114,32,100,105,114,115,87,105,116,104,73,110,115,101,114,116,32,61,32,91,93,59,92,110,32,32,118,97,114,32,100,105,114,115,87,105,116,104,80,111,115,116,112,97,116,99,104,32,61,32,91,93,59,92,110,92,110,32,32,118,97,114,32,107,101,121,44,32,111,108,100,68,105,114,44,32,100,105,114,59,92,110,32,32,102,111,114,32,40,107,101,121,32,105,110,32,110,101,119,68,105,114,115,41,32,123,92,110,32,32,32,32,111,108,100,68,105,114,32,61,32,111,108,100,68,105,114,115,91,107,101,121,93,59,92,110,32,32,32,32,100,105,114,32,61,32,110,101,119,68,105,114,115,91,107,101,121,93,59,92,110,32,32,32,32,105,102,32,40,33,111,108,100,68,105,114,41,32,123,92,110,32,32,32,32,32,32,47,47,32,110,101,119,32,100,105,114,101,99,116,105,118,101,44,32,98,105,110,100,92,110,32,32,32,32,32,32,99,97,108,108,72,111,111,107,36,49,40,100,105,114,44,32,39,98,105,110,100,39,44,32,118,110,111,100,101,44,32,111,108,100,86,110,111,100,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,100,105,114,46,100,101,102,32,38,38,32,100,105,114,46,100,101,102,46,105,110,115,101,114,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,100,105,114,115,87,105,116,104,73,110,115,101,114,116,46,112,117,115,104,40,100,105,114,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,101,120,105,115,116,105,110,103,32,100,105,114,101,99,116,105,118,101,44,32,117,112,100,97,116,101,92,110,32,32,32,32,32,32,100,105,114,46,111,108,100,86,97,108,117,101,32,61,32,111,108,100,68,105,114,46,118,97,108,117,101,59,92,110,32,32,32,32,32,32,100,105,114,46,111,108,100,65,114,103,32,61,32,111,108,100,68,105,114,46,97,114,103,59,92,110,32,32,32,32,32,32,99,97,108,108,72,111,111,107,36,49,40,100,105,114,44,32,39,117,112,100,97,116,101,39,44,32,118,110,111,100,101,44,32,111,108,100,86,110,111,100,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,100,105,114,46,100,101,102,32,38,38,32,100,105,114,46,100,101,102,46,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,100,105,114,115,87,105,116,104,80,111,115,116,112,97,116,99,104,46,112,117,115,104,40,100,105,114,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,100,105,114,115,87,105,116,104,73,110,115,101,114,116,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,118,97,114,32,99,97,108,108,73,110,115,101,114,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,100,105,114,115,87,105,116,104,73,110,115,101,114,116,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,108,108,72,111,111,107,36,49,40,100,105,114,115,87,105,116,104,73,110,115,101,114,116,91,105,93,44,32,39,105,110,115,101,114,116,101,100,39,44,32,118,110,111,100,101,44,32,111,108,100,86,110,111,100,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,32,32,32,32,105,102,32,40,105,115,67,114,101,97,116,101,41,32,123,92,110,32,32,32,32,32,32,109,101,114,103,101,86,78,111,100,101,72,111,111,107,40,118,110,111,100,101,44,32,39,105,110,115,101,114,116,39,44,32,99,97,108,108,73,110,115,101,114,116,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,99,97,108,108,73,110,115,101,114,116,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,100,105,114,115,87,105,116,104,80,111,115,116,112,97,116,99,104,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,109,101,114,103,101,86,78,111,100,101,72,111,111,107,40,118,110,111,100,101,44,32,39,112,111,115,116,112,97,116,99,104,39,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,100,105,114,115,87,105,116,104,80,111,115,116,112,97,116,99,104,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,108,108,72,111,111,107,36,49,40,100,105,114,115,87,105,116,104,80,111,115,116,112,97,116,99,104,91,105,93,44,32,39,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,39,44,32,118,110,111,100,101,44,32,111,108,100,86,110,111,100,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,105,115,67,114,101,97,116,101,41,32,123,92,110,32,32,32,32,102,111,114,32,40,107,101,121,32,105,110,32,111,108,100,68,105,114,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,110,101,119,68,105,114,115,91,107,101,121,93,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,110,111,32,108,111,110,103,101,114,32,112,114,101,115,101,110,116,44,32,117,110,98,105,110,100,92,110,32,32,32,32,32,32,32,32,99,97,108,108,72,111,111,107,36,49,40,111,108,100,68,105,114,115,91,107,101,121,93,44,32,39,117,110,98,105,110,100,39,44,32,111,108,100,86,110,111,100,101,44,32,111,108,100,86,110,111,100,101,44,32,105,115,68,101,115,116,114,111,121,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,101,109,112,116,121,77,111,100,105,102,105,101,114,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,68,105,114,101,99,116,105,118,101,115,36,49,32,40,92,110,32,32,100,105,114,115,44,92,110,32,32,118,109,92,110,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,105,102,32,40,33,100,105,114,115,41,32,123,92,110,32,32,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,92,110,32,32,125,92,110,32,32,118,97,114,32,105,44,32,100,105,114,59,92,110,32,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,100,105,114,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,100,105,114,32,61,32,100,105,114,115,91,105,93,59,92,110,32,32,32,32,105,102,32,40,33,100,105,114,46,109,111,100,105,102,105,101,114,115,41,32,123,92,110,32,32,32,32,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,32,32,32,32,100,105,114,46,109,111,100,105,102,105,101,114,115,32,61,32,101,109,112,116,121,77,111,100,105,102,105,101,114,115,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,115,91,103,101,116,82,97,119,68,105,114,78,97,109,101,40,100,105,114,41,93,32,61,32,100,105,114,59,92,110,32,32,32,32,100,105,114,46,100,101,102,32,61,32,114,101,115,111,108,118,101,65,115,115,101,116,40,118,109,46,36,111,112,116,105,111,110,115,44,32,39,100,105,114,101,99,116,105,118,101,115,39,44,32,100,105,114,46,110,97,109,101,44,32,116,114,117,101,41,59,92,110,32,32,125,92,110,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,82,97,119,68,105,114,78,97,109,101,32,40,100,105,114,41,32,123,92,110,32,32,114,101,116,117,114,110,32,100,105,114,46,114,97,119,78,97,109,101,32,124,124,32,40,40,100,105,114,46,110,97,109,101,41,32,43,32,92,34,46,92,34,32,43,32,40,79,98,106,101,99,116,46,107,101,121,115,40,100,105,114,46,109,111,100,105,102,105,101,114,115,32,124,124,32,123,125,41,46,106,111,105,110,40,39,46,39,41,41,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,97,108,108,72,111,111,107,36,49,32,40,100,105,114,44,32,104,111,111,107,44,32,118,110,111,100,101,44,32,111,108,100,86,110,111,100,101,44,32,105,115,68,101,115,116,114,111,121,41,32,123,92,110,32,32,118,97,114,32,102,110,32,61,32,100,105,114,46,100,101,102,32,38,38,32,100,105,114,46,100,101,102,91,104,111,111,107,93,59,92,110,32,32,105,102,32,40,102,110,41,32,123,92,110,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,102,110,40,118,110,111,100,101,46,101,108,109,44,32,100,105,114,44,32,118,110,111,100,101,44,32,111,108,100,86,110,111,100,101,44,32,105,115,68,101,115,116,114,111,121,41,59,92,110,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,104,97,110,100,108,101,69,114,114,111,114,40,101,44,32,118,110,111,100,101,46,99,111,110,116,101,120,116,44,32,40,92,34,100,105,114,101,99,116,105,118,101,32,92,34,32,43,32,40,100,105,114,46,110,97,109,101,41,32,43,32,92,34,32,92,34,32,43,32,104,111,111,107,32,43,32,92,34,32,104,111,111,107,92,34,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,98,97,115,101,77,111,100,117,108,101,115,32,61,32,91,92,110,32,32,114,101,102,44,92,110,32,32,100,105,114,101,99,116,105,118,101,115,92,110,93,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,65,116,116,114,115,32,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,111,112,116,115,32,61,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,59,92,110,32,32,105,102,32,40,105,115,68,101,102,40,111,112,116,115,41,32,38,38,32,111,112,116,115,46,67,116,111,114,46,111,112,116,105,111,110,115,46,105,110,104,101,114,105,116,65,116,116,114,115,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,105,102,32,40,105,115,85,110,100,101,102,40,111,108,100,86,110,111,100,101,46,100,97,116,97,46,97,116,116,114,115,41,32,38,38,32,105,115,85,110,100,101,102,40,118,110,111,100,101,46,100,97,116,97,46,97,116,116,114,115,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,118,97,114,32,107,101,121,44,32,99,117,114,44,32,111,108,100,59,92,110,32,32,118,97,114,32,101,108,109,32,61,32,118,110,111,100,101,46,101,108,109,59,92,110,32,32,118,97,114,32,111,108,100,65,116,116,114,115,32,61,32,111,108,100,86,110,111,100,101,46,100,97,116,97,46,97,116,116,114,115,32,124,124,32,123,125,59,92,110,32,32,118,97,114,32,97,116,116,114,115,32,61,32,118,110,111,100,101,46,100,97,116,97,46,97,116,116,114,115,32,124,124,32,123,125,59,92,110,32,32,47,47,32,99,108,111,110,101,32,111,98,115,101,114,118,101,100,32,111,98,106,101,99,116,115,44,32,97,115,32,116,104,101,32,117,115,101,114,32,112,114,111,98,97,98,108,121,32,119,97,110,116,115,32,116,111,32,109,117,116,97,116,101,32,105,116,92,110,32,32,105,102,32,40,105,115,68,101,102,40,97,116,116,114,115,46,95,95,111,98,95,95,41,41,32,123,92,110,32,32,32,32,97,116,116,114,115,32,61,32,118,110,111,100,101,46,100,97,116,97,46,97,116,116,114,115,32,61,32,101,120,116,101,110,100,40,123,125,44,32,97,116,116,114,115,41,59,92,110,32,32,125,92,110,92,110,32,32,102,111,114,32,40,107,101,121,32,105,110,32,97,116,116,114,115,41,32,123,92,110,32,32,32,32,99,117,114,32,61,32,97,116,116,114,115,91,107,101,121,93,59,92,110,32,32,32,32,111,108,100,32,61,32,111,108,100,65,116,116,114,115,91,107,101,121,93,59,92,110,32,32,32,32,105,102,32,40,111,108,100,32,33,61,61,32,99,117,114,41,32,123,92,110,32,32,32,32,32,32,115,101,116,65,116,116,114,40,101,108,109,44,32,107,101,121,44,32,99,117,114,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,47,47,32,35,52,51,57,49,58,32,105,110,32,73,69,57,44,32,115,101,116,116,105,110,103,32,116,121,112,101,32,99,97,110,32,114,101,115,101,116,32,118,97,108,117,101,32,102,111,114,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,92,110,32,32,47,47,32,35,54,54,54,54,58,32,73,69,47,69,100,103,101,32,102,111,114,99,101,115,32,112,114,111,103,114,101,115,115,32,118,97,108,117,101,32,100,111,119,110,32,116,111,32,49,32,98,101,102,111,114,101,32,115,101,116,116,105,110,103,32,97,32,109,97,120,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,40,105,115,73,69,32,124,124,32,105,115,69,100,103,101,41,32,38,38,32,97,116,116,114,115,46,118,97,108,117,101,32,33,61,61,32,111,108,100,65,116,116,114,115,46,118,97,108,117,101,41,32,123,92,110,32,32,32,32,115,101,116,65,116,116,114,40,101,108,109,44,32,39,118,97,108,117,101,39,44,32,97,116,116,114,115,46,118,97,108,117,101,41,59,92,110,32,32,125,92,110,32,32,102,111,114,32,40,107,101,121,32,105,110,32,111,108,100,65,116,116,114,115,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,40,97,116,116,114,115,91,107,101,121,93,41,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,105,115,88,108,105,110,107,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,101,108,109,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,120,108,105,110,107,78,83,44,32,103,101,116,88,108,105,110,107,80,114,111,112,40,107,101,121,41,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,105,115,69,110,117,109,101,114,97,116,101,100,65,116,116,114,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,101,108,109,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,107,101,121,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,65,116,116,114,32,40,101,108,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,101,108,46,116,97,103,78,97,109,101,46,105,110,100,101,120,79,102,40,39,45,39,41,32,62,32,45,49,41,32,123,92,110,32,32,32,32,98,97,115,101,83,101,116,65,116,116,114,40,101,108,44,32,107,101,121,44,32,118,97,108,117,101,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,66,111,111,108,101,97,110,65,116,116,114,40,107,101,121,41,41,32,123,92,110,32,32,32,32,47,47,32,115,101,116,32,97,116,116,114,105,98,117,116,101,32,102,111,114,32,98,108,97,110,107,32,118,97,108,117,101,92,110,32,32,32,32,47,47,32,101,46,103,46,32,60,111,112,116,105,111,110,32,100,105,115,97,98,108,101,100,62,83,101,108,101,99,116,32,111,110,101,60,47,111,112,116,105,111,110,62,92,110,32,32,32,32,105,102,32,40,105,115,70,97,108,115,121,65,116,116,114,86,97,108,117,101,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,101,108,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,107,101,121,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,47,47,32,116,101,99,104,110,105,99,97,108,108,121,32,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,32,105,115,32,97,32,98,111,111,108,101,97,110,32,97,116,116,114,105,98,117,116,101,32,102,111,114,32,60,105,102,114,97,109,101,62,44,92,110,32,32,32,32,32,32,47,47,32,98,117,116,32,70,108,97,115,104,32,101,120,112,101,99,116,115,32,97,32,118,97,108,117,101,32,111,102,32,92,34,116,114,117,101,92,34,32,119,104,101,110,32,117,115,101,100,32,111,110,32,60,101,109,98,101,100,62,32,116,97,103,92,110,32,32,32,32,32,32,118,97,108,117,101,32,61,32,107,101,121,32,61,61,61,32,39,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,39,32,38,38,32,101,108,46,116,97,103,78,97,109,101,32,61,61,61,32,39,69,77,66,69,68,39,92,110,32,32,32,32,32,32,32,32,63,32,39,116,114,117,101,39,92,110,32,32,32,32,32,32,32,32,58,32,107,101,121,59,92,110,32,32,32,32,32,32,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,107,101,121,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,69,110,117,109,101,114,97,116,101,100,65,116,116,114,40,107,101,121,41,41,32,123,92,110,32,32,32,32,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,107,101,121,44,32,99,111,110,118,101,114,116,69,110,117,109,101,114,97,116,101,100,86,97,108,117,101,40,107,101,121,44,32,118,97,108,117,101,41,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,88,108,105,110,107,40,107,101,121,41,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,70,97,108,115,121,65,116,116,114,86,97,108,117,101,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,101,108,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,120,108,105,110,107,78,83,44,32,103,101,116,88,108,105,110,107,80,114,111,112,40,107,101,121,41,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,120,108,105,110,107,78,83,44,32,107,101,121,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,98,97,115,101,83,101,116,65,116,116,114,40,101,108,44,32,107,101,121,44,32,118,97,108,117,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,98,97,115,101,83,101,116,65,116,116,114,32,40,101,108,44,32,107,101,121,44,32,118,97,108,117,101,41,32,123,92,110,32,32,105,102,32,40,105,115,70,97,108,115,121,65,116,116,114,86,97,108,117,101,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,101,108,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,107,101,121,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,47,32,35,55,49,51,56,58,32,73,69,49,48,32,38,32,49,49,32,102,105,114,101,115,32,105,110,112,117,116,32,101,118,101,110,116,32,119,104,101,110,32,115,101,116,116,105,110,103,32,112,108,97,99,101,104,111,108,100,101,114,32,111,110,92,110,32,32,32,32,47,47,32,60,116,101,120,116,97,114,101,97,62,46,46,46,32,98,108,111,99,107,32,116,104,101,32,102,105,114,115,116,32,105,110,112,117,116,32,101,118,101,110,116,32,97,110,100,32,114,101,109,111,118,101,32,116,104,101,32,98,108,111,99,107,101,114,92,110,32,32,32,32,47,47,32,105,109,109,101,100,105,97,116,101,108,121,46,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,92,110,32,32,32,32,32,32,105,115,73,69,32,38,38,32,33,105,115,73,69,57,32,38,38,92,110,32,32,32,32,32,32,101,108,46,116,97,103,78,97,109,101,32,61,61,61,32,39,84,69,88,84,65,82,69,65,39,32,38,38,92,110,32,32,32,32,32,32,107,101,121,32,61,61,61,32,39,112,108,97,99,101,104,111,108,100,101,114,39,32,38,38,32,118,97,108,117,101,32,33,61,61,32,39,39,32,38,38,32,33,101,108,46,95,95,105,101,112,104,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,98,108,111,99,107,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,32,32,101,108,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,105,110,112,117,116,39,44,32,98,108,111,99,107,101,114,41,59,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,101,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,105,110,112,117,116,39,44,32,98,108,111,99,107,101,114,41,59,92,110,32,32,32,32,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,32,32,32,32,101,108,46,95,95,105,101,112,104,32,61,32,116,114,117,101,59,32,47,42,32,73,69,32,112,108,97,99,101,104,111,108,100,101,114,32,112,97,116,99,104,101,100,32,42,47,92,110,32,32,32,32,125,92,110,32,32,32,32,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,107,101,121,44,32,118,97,108,117,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,97,116,116,114,115,32,61,32,123,92,110,32,32,99,114,101,97,116,101,58,32,117,112,100,97,116,101,65,116,116,114,115,44,92,110,32,32,117,112,100,97,116,101,58,32,117,112,100,97,116,101,65,116,116,114,115,92,110,125,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,67,108,97,115,115,32,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,101,108,32,61,32,118,110,111,100,101,46,101,108,109,59,92,110,32,32,118,97,114,32,100,97,116,97,32,61,32,118,110,111,100,101,46,100,97,116,97,59,92,110,32,32,118,97,114,32,111,108,100,68,97,116,97,32,61,32,111,108,100,86,110,111,100,101,46,100,97,116,97,59,92,110,32,32,105,102,32,40,92,110,32,32,32,32,105,115,85,110,100,101,102,40,100,97,116,97,46,115,116,97,116,105,99,67,108,97,115,115,41,32,38,38,92,110,32,32,32,32,105,115,85,110,100,101,102,40,100,97,116,97,46,99,108,97,115,115,41,32,38,38,32,40,92,110,32,32,32,32,32,32,105,115,85,110,100,101,102,40,111,108,100,68,97,116,97,41,32,124,124,32,40,92,110,32,32,32,32,32,32,32,32,105,115,85,110,100,101,102,40,111,108,100,68,97,116,97,46,115,116,97,116,105,99,67,108,97,115,115,41,32,38,38,92,110,32,32,32,32,32,32,32,32,105,115,85,110,100,101,102,40,111,108,100,68,97,116,97,46,99,108,97,115,115,41,92,110,32,32,32,32,32,32,41,92,110,32,32,32,32,41,92,110,32,32,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,108,115,32,61,32,103,101,110,67,108,97,115,115,70,111,114,86,110,111,100,101,40,118,110,111,100,101,41,59,92,110,92,110,32,32,47,47,32,104,97,110,100,108,101,32,116,114,97,110,115,105,116,105,111,110,32,99,108,97,115,115,101,115,92,110,32,32,118,97,114,32,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,32,61,32,101,108,46,95,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,59,92,110,32,32,105,102,32,40,105,115,68,101,102,40,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,41,41,32,123,92,110,32,32,32,32,99,108,115,32,61,32,99,111,110,99,97,116,40,99,108,115,44,32,115,116,114,105,110,103,105,102,121,67,108,97,115,115,40,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,41,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,115,101,116,32,116,104,101,32,99,108,97,115,115,92,110,32,32,105,102,32,40,99,108,115,32,33,61,61,32,101,108,46,95,112,114,101,118,67,108,97,115,115,41,32,123,92,110,32,32,32,32,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,99,108,97,115,115,39,44,32,99,108,115,41,59,92,110,32,32,32,32,101,108,46,95,112,114,101,118,67,108,97,115,115,32,61,32,99,108,115,59,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,107,108,97,115,115,32,61,32,123,92,110,32,32,99,114,101,97,116,101,58,32,117,112,100,97,116,101,67,108,97,115,115,44,92,110,32,32,117,112,100,97,116,101,58,32,117,112,100,97,116,101,67,108,97,115,115,92,110,125,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,47,32,105,110,32,115,111,109,101,32,99,97,115,101,115,44,32,116,104,101,32,101,118,101,110,116,32,117,115,101,100,32,104,97,115,32,116,111,32,98,101,32,100,101,116,101,114,109,105,110,101,100,32,97,116,32,114,117,110,116,105,109,101,92,110,47,47,32,115,111,32,119,101,32,117,115,101,100,32,115,111,109,101,32,114,101,115,101,114,118,101,100,32,116,111,107,101,110,115,32,100,117,114,105,110,103,32,99,111,109,112,105,108,101,46,92,110,118,97,114,32,82,65,78,71,69,95,84,79,75,69,78,32,61,32,39,95,95,114,39,59,92,110,118,97,114,32,67,72,69,67,75,66,79,88,95,82,65,68,73,79,95,84,79,75,69,78,32,61,32,39,95,95,99,39,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,47,32,110,111,114,109,97,108,105,122,101,32,118,45,109,111,100,101,108,32,101,118,101,110,116,32,116,111,107,101,110,115,32,116,104,97,116,32,99,97,110,32,111,110,108,121,32,98,101,32,100,101,116,101,114,109,105,110,101,100,32,97,116,32,114,117,110,116,105,109,101,46,92,110,47,47,32,105,116,39,115,32,105,109,112,111,114,116,97,110,116,32,116,111,32,112,108,97,99,101,32,116,104,101,32,101,118,101,110,116,32,97,115,32,116,104,101,32,102,105,114,115,116,32,105,110,32,116,104,101,32,97,114,114,97,121,32,98,101,99,97,117,115,101,92,110,47,47,32,116,104,101,32,119,104,111,108,101,32,112,111,105,110,116,32,105,115,32,101,110,115,117,114,105,110,103,32,116,104,101,32,118,45,109,111,100,101,108,32,99,97,108,108,98,97,99,107,32,103,101,116,115,32,99,97,108,108,101,100,32,98,101,102,111,114,101,92,110,47,47,32,117,115,101,114,45,97,116,116,97,99,104,101,100,32,104,97,110,100,108,101,114,115,46,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,69,118,101,110,116,115,32,40,111,110,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,105,115,68,101,102,40,111,110,91,82,65,78,71,69,95,84,79,75,69,78,93,41,41,32,123,92,110,32,32,32,32,47,47,32,73,69,32,105,110,112,117,116,91,116,121,112,101,61,114,97,110,103,101,93,32,111,110,108,121,32,115,117,112,112,111,114,116,115,32,96,99,104,97,110,103,101,96,32,101,118,101,110,116,92,110,32,32,32,32,118,97,114,32,101,118,101,110,116,32,61,32,105,115,73,69,32,63,32,39,99,104,97,110,103,101,39,32,58,32,39,105,110,112,117,116,39,59,92,110,32,32,32,32,111,110,91,101,118,101,110,116,93,32,61,32,91,93,46,99,111,110,99,97,116,40,111,110,91,82,65,78,71,69,95,84,79,75,69,78,93,44,32,111,110,91,101,118,101,110,116,93,32,124,124,32,91,93,41,59,92,110,32,32,32,32,100,101,108,101,116,101,32,111,110,91,82,65,78,71,69,95,84,79,75,69,78,93,59,92,110,32,32,125,92,110,32,32,47,47,32,84,104,105,115,32,119,97,115,32,111,114,105,103,105,110,97,108,108,121,32,105,110,116,101,110,100,101,100,32,116,111,32,102,105,120,32,35,52,53,50,49,32,98,117,116,32,110,111,32,108,111,110,103,101,114,32,110,101,99,101,115,115,97,114,121,92,110,32,32,47,47,32,97,102,116,101,114,32,50,46,53,46,32,75,101,101,112,105,110,103,32,105,116,32,102,111,114,32,98,97,99,107,119,97,114,100,115,32,99,111,109,112,97,116,32,119,105,116,104,32,103,101,110,101,114,97,116,101,100,32,99,111,100,101,32,102,114,111,109,32,60,32,50,46,52,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,105,115,68,101,102,40,111,110,91,67,72,69,67,75,66,79,88,95,82,65,68,73,79,95,84,79,75,69,78,93,41,41,32,123,92,110,32,32,32,32,111,110,46,99,104,97,110,103,101,32,61,32,91,93,46,99,111,110,99,97,116,40,111,110,91,67,72,69,67,75,66,79,88,95,82,65,68,73,79,95,84,79,75,69,78,93,44,32,111,110,46,99,104,97,110,103,101,32,124,124,32,91,93,41,59,92,110,32,32,32,32,100,101,108,101,116,101,32,111,110,91,67,72,69,67,75,66,79,88,95,82,65,68,73,79,95,84,79,75,69,78,93,59,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,116,97,114,103,101,116,36,49,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,79,110,99,101,72,97,110,100,108,101,114,36,49,32,40,101,118,101,110,116,44,32,104,97,110,100,108,101,114,44,32,99,97,112,116,117,114,101,41,32,123,92,110,32,32,118,97,114,32,95,116,97,114,103,101,116,32,61,32,116,97,114,103,101,116,36,49,59,32,47,47,32,115,97,118,101,32,99,117,114,114,101,110,116,32,116,97,114,103,101,116,32,101,108,101,109,101,110,116,32,105,110,32,99,108,111,115,117,114,101,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,111,110,99,101,72,97,110,100,108,101,114,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,32,61,32,104,97,110,100,108,101,114,46,97,112,112,108,121,40,110,117,108,108,44,32,97,114,103,117,109,101,110,116,115,41,59,92,110,32,32,32,32,105,102,32,40,114,101,115,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,114,101,109,111,118,101,36,50,40,101,118,101,110,116,44,32,111,110,99,101,72,97,110,100,108,101,114,44,32,99,97,112,116,117,114,101,44,32,95,116,97,114,103,101,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,47,32,35,57,52,52,54,58,32,70,105,114,101,102,111,120,32,60,61,32,53,51,32,40,105,110,32,112,97,114,116,105,99,117,108,97,114,44,32,69,83,82,32,53,50,41,32,104,97,115,32,105,110,99,111,114,114,101,99,116,32,69,118,101,110,116,46,116,105,109,101,83,116,97,109,112,92,110,47,47,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,97,110,100,32,100,111,101,115,32,110,111,116,32,102,105,114,101,32,109,105,99,114,111,116,97,115,107,115,32,105,110,32,98,101,116,119,101,101,110,32,101,118,101,110,116,32,112,114,111,112,97,103,97,116,105,111,110,44,32,115,111,92,110,47,47,32,115,97,102,101,32,116,111,32,101,120,99,108,117,100,101,46,92,110,118,97,114,32,117,115,101,77,105,99,114,111,116,97,115,107,70,105,120,32,61,32,105,115,85,115,105,110,103,77,105,99,114,111,84,97,115,107,32,38,38,32,33,40,105,115,70,70,32,38,38,32,78,117,109,98,101,114,40,105,115,70,70,91,49,93,41,32,60,61,32,53,51,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,97,100,100,36,49,32,40,92,110,32,32,110,97,109,101,44,92,110,32,32,104,97,110,100,108,101,114,44,92,110,32,32,99,97,112,116,117,114,101,44,92,110,32,32,112,97,115,115,105,118,101,92,110,41,32,123,92,110,32,32,47,47,32,97,115,121,110,99,32,101,100,103,101,32,99,97,115,101,32,35,54,53,54,54,58,32,105,110,110,101,114,32,99,108,105,99,107,32,101,118,101,110,116,32,116,114,105,103,103,101,114,115,32,112,97,116,99,104,44,32,101,118,101,110,116,32,104,97,110,100,108,101,114,92,110,32,32,47,47,32,97,116,116,97,99,104,101,100,32,116,111,32,111,117,116,101,114,32,101,108,101,109,101,110,116,32,100,117,114,105,110,103,32,112,97,116,99,104,44,32,97,110,100,32,116,114,105,103,103,101,114,101,100,32,97,103,97,105,110,46,32,84,104,105,115,92,110,32,32,47,47,32,104,97,112,112,101,110,115,32,98,101,99,97,117,115,101,32,98,114,111,119,115,101,114,115,32,102,105,114,101,32,109,105,99,114,111,116,97,115,107,32,116,105,99,107,115,32,98,101,116,119,101,101,110,32,101,118,101,110,116,32,112,114,111,112,97,103,97,116,105,111,110,46,92,110,32,32,47,47,32,116,104,101,32,115,111,108,117,116,105,111,110,32,105,115,32,115,105,109,112,108,101,58,32,119,101,32,115,97,118,101,32,116,104,101,32,116,105,109,101,115,116,97,109,112,32,119,104,101,110,32,97,32,104,97,110,100,108,101,114,32,105,115,32,97,116,116,97,99,104,101,100,44,92,110,32,32,47,47,32,97,110,100,32,116,104,101,32,104,97,110,100,108,101,114,32,119,111,117,108,100,32,111,110,108,121,32,102,105,114,101,32,105,102,32,116,104,101,32,101,118,101,110,116,32,112,97,115,115,101,100,32,116,111,32,105,116,32,119,97,115,32,102,105,114,101,100,92,110,32,32,47,47,32,65,70,84,69,82,32,105,116,32,119,97,115,32,97,116,116,97,99,104,101,100,46,92,110,32,32,105,102,32,40,117,115,101,77,105,99,114,111,116,97,115,107,70,105,120,41,32,123,92,110,32,32,32,32,118,97,114,32,97,116,116,97,99,104,101,100,84,105,109,101,115,116,97,109,112,32,61,32,99,117,114,114,101,110,116,70,108,117,115,104,84,105,109,101,115,116,97,109,112,59,92,110,32,32,32,32,118,97,114,32,111,114,105,103,105,110,97,108,32,61,32,104,97,110,100,108,101,114,59,92,110,32,32,32,32,104,97,110,100,108,101,114,32,61,32,111,114,105,103,105,110,97,108,46,95,119,114,97,112,112,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,92,110,32,32,32,32,32,32,32,32,47,47,32,110,111,32,98,117,98,98,108,105,110,103,44,32,115,104,111,117,108,100,32,97,108,119,97,121,115,32,102,105,114,101,46,92,110,32,32,32,32,32,32,32,32,47,47,32,116,104,105,115,32,105,115,32,106,117,115,116,32,97,32,115,97,102,101,116,121,32,110,101,116,32,105,110,32,99,97,115,101,32,101,118,101,110,116,46,116,105,109,101,83,116,97,109,112,32,105,115,32,117,110,114,101,108,105,97,98,108,101,32,105,110,92,110,32,32,32,32,32,32,32,32,47,47,32,99,101,114,116,97,105,110,32,119,101,105,114,100,32,101,110,118,105,114,111,110,109,101,110,116,115,46,46,46,92,110,32,32,32,32,32,32,32,32,101,46,116,97,114,103,101,116,32,61,61,61,32,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,32,124,124,92,110,32,32,32,32,32,32,32,32,47,47,32,101,118,101,110,116,32,105,115,32,102,105,114,101,100,32,97,102,116,101,114,32,104,97,110,100,108,101,114,32,97,116,116,97,99,104,109,101,110,116,92,110,32,32,32,32,32,32,32,32,101,46,116,105,109,101,83,116,97,109,112,32,62,61,32,97,116,116,97,99,104,101,100,84,105,109,101,115,116,97,109,112,32,124,124,92,110,32,32,32,32,32,32,32,32,47,47,32,98,97,105,108,32,102,111,114,32,101,110,118,105,114,111,110,109,101,110,116,115,32,116,104,97,116,32,104,97,118,101,32,98,117,103,103,121,32,101,118,101,110,116,46,116,105,109,101,83,116,97,109,112,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,115,92,110,32,32,32,32,32,32,32,32,47,47,32,35,57,52,54,50,32,105,79,83,32,57,32,98,117,103,58,32,101,118,101,110,116,46,116,105,109,101,83,116,97,109,112,32,105,115,32,48,32,97,102,116,101,114,32,104,105,115,116,111,114,121,46,112,117,115,104,83,116,97,116,101,92,110,32,32,32,32,32,32,32,32,47,47,32,35,57,54,56,49,32,81,116,87,101,98,69,110,103,105,110,101,32,101,118,101,110,116,46,116,105,109,101,83,116,97,109,112,32,105,115,32,110,101,103,97,116,105,118,101,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,101,46,116,105,109,101,83,116,97,109,112,32,60,61,32,48,32,124,124,92,110,32,32,32,32,32,32,32,32,47,47,32,35,57,52,52,56,32,98,97,105,108,32,105,102,32,101,118,101,110,116,32,105,115,32,102,105,114,101,100,32,105,110,32,97,110,111,116,104,101,114,32,100,111,99,117,109,101,110,116,32,105,110,32,97,32,109,117,108,116,105,45,112,97,103,101,92,110,32,32,32,32,32,32,32,32,47,47,32,101,108,101,99,116,114,111,110,47,110,119,46,106,115,32,97,112,112,44,32,115,105,110,99,101,32,101,118,101,110,116,46,116,105,109,101,83,116,97,109,112,32,119,105,108,108,32,98,101,32,117,115,105,110,103,32,97,32,100,105,102,102,101,114,101,110,116,92,110,32,32,32,32,32,32,32,32,47,47,32,115,116,97,114,116,105,110,103,32,114,101,102,101,114,101,110,99,101,92,110,32,32,32,32,32,32,32,32,101,46,116,97,114,103,101,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,32,33,61,61,32,100,111,99,117,109,101,110,116,92,110,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,114,105,103,105,110,97,108,46,97,112,112,108,121,40,116,104,105,115,44,32,97,114,103,117,109,101,110,116,115,41,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,32,32,116,97,114,103,101,116,36,49,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,110,32,32,32,32,110,97,109,101,44,92,110,32,32,32,32,104,97,110,100,108,101,114,44,92,110,32,32,32,32,115,117,112,112,111,114,116,115,80,97,115,115,105,118,101,92,110,32,32,32,32,32,32,63,32,123,32,99,97,112,116,117,114,101,58,32,99,97,112,116,117,114,101,44,32,112,97,115,115,105,118,101,58,32,112,97,115,115,105,118,101,32,125,92,110,32,32,32,32,32,32,58,32,99,97,112,116,117,114,101,92,110,32,32,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,36,50,32,40,92,110,32,32,110,97,109,101,44,92,110,32,32,104,97,110,100,108,101,114,44,92,110,32,32,99,97,112,116,117,114,101,44,92,110,32,32,95,116,97,114,103,101,116,92,110,41,32,123,92,110,32,32,40,95,116,97,114,103,101,116,32,124,124,32,116,97,114,103,101,116,36,49,41,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,110,32,32,32,32,110,97,109,101,44,92,110,32,32,32,32,104,97,110,100,108,101,114,46,95,119,114,97,112,112,101,114,32,124,124,32,104,97,110,100,108,101,114,44,92,110,32,32,32,32,99,97,112,116,117,114,101,92,110,32,32,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,68,79,77,76,105,115,116,101,110,101,114,115,32,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,41,32,123,92,110,32,32,105,102,32,40,105,115,85,110,100,101,102,40,111,108,100,86,110,111,100,101,46,100,97,116,97,46,111,110,41,32,38,38,32,105,115,85,110,100,101,102,40,118,110,111,100,101,46,100,97,116,97,46,111,110,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,118,97,114,32,111,110,32,61,32,118,110,111,100,101,46,100,97,116,97,46,111,110,32,124,124,32,123,125,59,92,110,32,32,118,97,114,32,111,108,100,79,110,32,61,32,111,108,100,86,110,111,100,101,46,100,97,116,97,46,111,110,32,124,124,32,123,125,59,92,110,32,32,116,97,114,103,101,116,36,49,32,61,32,118,110,111,100,101,46,101,108,109,59,92,110,32,32,110,111,114,109,97,108,105,122,101,69,118,101,110,116,115,40,111,110,41,59,92,110,32,32,117,112,100,97,116,101,76,105,115,116,101,110,101,114,115,40,111,110,44,32,111,108,100,79,110,44,32,97,100,100,36,49,44,32,114,101,109,111,118,101,36,50,44,32,99,114,101,97,116,101,79,110,99,101,72,97,110,100,108,101,114,36,49,44,32,118,110,111,100,101,46,99,111,110,116,101,120,116,41,59,92,110,32,32,116,97,114,103,101,116,36,49,32,61,32,117,110,100,101,102,105,110,101,100,59,92,110,125,92,110,92,110,118,97,114,32,101,118,101,110,116,115,32,61,32,123,92,110,32,32,99,114,101,97,116,101,58,32,117,112,100,97,116,101,68,79,77,76,105,115,116,101,110,101,114,115,44,92,110,32,32,117,112,100,97,116,101,58,32,117,112,100,97,116,101,68,79,77,76,105,115,116,101,110,101,114,115,92,110,125,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,115,118,103,67,111,110,116,97,105,110,101,114,59,92,110,92,110,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,68,79,77,80,114,111,112,115,32,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,41,32,123,92,110,32,32,105,102,32,40,105,115,85,110,100,101,102,40,111,108,100,86,110,111,100,101,46,100,97,116,97,46,100,111,109,80,114,111,112,115,41,32,38,38,32,105,115,85,110,100,101,102,40,118,110,111,100,101,46,100,97,116,97,46,100,111,109,80,114,111,112,115,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,118,97,114,32,107,101,121,44,32,99,117,114,59,92,110,32,32,118,97,114,32,101,108,109,32,61,32,118,110,111,100,101,46,101,108,109,59,92,110,32,32,118,97,114,32,111,108,100,80,114,111,112,115,32,61,32,111,108,100,86,110,111,100,101,46,100,97,116,97,46,100,111,109,80,114,111,112,115,32,124,124,32,123,125,59,92,110,32,32,118,97,114,32,112,114,111,112,115,32,61,32,118,110,111,100,101,46,100,97,116,97,46,100,111,109,80,114,111,112,115,32,124,124,32,123,125,59,92,110,32,32,47,47,32,99,108,111,110,101,32,111,98,115,101,114,118,101,100,32,111,98,106,101,99,116,115,44,32,97,115,32,116,104,101,32,117,115,101,114,32,112,114,111,98,97,98,108,121,32,119,97,110,116,115,32,116,111,32,109,117,116,97,116,101,32,105,116,92,110,32,32,105,102,32,40,105,115,68,101,102,40,112,114,111,112,115,46,95,95,111,98,95,95,41,41,32,123,92,110,32,32,32,32,112,114,111,112,115,32,61,32,118,110,111,100,101,46,100,97,116,97,46,100,111,109,80,114,111,112,115,32,61,32,101,120,116,101,110,100,40,123,125,44,32,112,114,111,112,115,41,59,92,110,32,32,125,92,110,92,110,32,32,102,111,114,32,40,107,101,121,32,105,110,32,111,108,100,80,114,111,112,115,41,32,123,92,110,32,32,32,32,105,102,32,40,33,40,107,101,121,32,105,110,32,112,114,111,112,115,41,41,32,123,92,110,32,32,32,32,32,32,101,108,109,91,107,101,121,93,32,61,32,39,39,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,102,111,114,32,40,107,101,121,32,105,110,32,112,114,111,112,115,41,32,123,92,110,32,32,32,32,99,117,114,32,61,32,112,114,111,112,115,91,107,101,121,93,59,92,110,32,32,32,32,47,47,32,105,103,110,111,114,101,32,99,104,105,108,100,114,101,110,32,105,102,32,116,104,101,32,110,111,100,101,32,104,97,115,32,116,101,120,116,67,111,110,116,101,110,116,32,111,114,32,105,110,110,101,114,72,84,77,76,44,92,110,32,32,32,32,47,47,32,97,115,32,116,104,101,115,101,32,119,105,108,108,32,116,104,114,111,119,32,97,119,97,121,32,101,120,105,115,116,105,110,103,32,68,79,77,32,110,111,100,101,115,32,97,110,100,32,99,97,117,115,101,32,114,101,109,111,118,97,108,32,101,114,114,111,114,115,92,110,32,32,32,32,47,47,32,111,110,32,115,117,98,115,101,113,117,101,110,116,32,112,97,116,99,104,101,115,32,40,35,51,51,54,48,41,92,110,32,32,32,32,105,102,32,40,107,101,121,32,61,61,61,32,39,116,101,120,116,67,111,110,116,101,110,116,39,32,124,124,32,107,101,121,32,61,61,61,32,39,105,110,110,101,114,72,84,77,76,39,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,118,110,111,100,101,46,99,104,105,108,100,114,101,110,41,32,123,32,118,110,111,100,101,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,61,32,48,59,32,125,92,110,32,32,32,32,32,32,105,102,32,40,99,117,114,32,61,61,61,32,111,108,100,80,114,111,112,115,91,107,101,121,93,41,32,123,32,99,111,110,116,105,110,117,101,32,125,92,110,32,32,32,32,32,32,47,47,32,35,54,54,48,49,32,119,111,114,107,32,97,114,111,117,110,100,32,67,104,114,111,109,101,32,118,101,114,115,105,111,110,32,60,61,32,53,53,32,98,117,103,32,119,104,101,114,101,32,115,105,110,103,108,101,32,116,101,120,116,78,111,100,101,92,110,32,32,32,32,32,32,47,47,32,114,101,112,108,97,99,101,100,32,98,121,32,105,110,110,101,114,72,84,77,76,47,116,101,120,116,67,111,110,116,101,110,116,32,114,101,116,97,105,110,115,32,105,116,115,32,112,97,114,101,110,116,78,111,100,101,32,112,114,111,112,101,114,116,121,92,110,32,32,32,32,32,32,105,102,32,40,101,108,109,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,101,108,109,46,114,101,109,111,118,101,67,104,105,108,100,40,101,108,109,46,99,104,105,108,100,78,111,100,101,115,91,48,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,107,101,121,32,61,61,61,32,39,118,97,108,117,101,39,32,38,38,32,101,108,109,46,116,97,103,78,97,109,101,32,33,61,61,32,39,80,82,79,71,82,69,83,83,39,41,32,123,92,110,32,32,32,32,32,32,47,47,32,115,116,111,114,101,32,118,97,108,117,101,32,97,115,32,95,118,97,108,117,101,32,97,115,32,119,101,108,108,32,115,105,110,99,101,92,110,32,32,32,32,32,32,47,47,32,110,111,110,45,115,116,114,105,110,103,32,118,97,108,117,101,115,32,119,105,108,108,32,98,101,32,115,116,114,105,110,103,105,102,105,101,100,92,110,32,32,32,32,32,32,101,108,109,46,95,118,97,108,117,101,32,61,32,99,117,114,59,92,110,32,32,32,32,32,32,47,47,32,97,118,111,105,100,32,114,101,115,101,116,116,105,110,103,32,99,117,114,115,111,114,32,112,111,115,105,116,105,111,110,32,119,104,101,110,32,118,97,108,117,101,32,105,115,32,116,104,101,32,115,97,109,101,92,110,32,32,32,32,32,32,118,97,114,32,115,116,114,67,117,114,32,61,32,105,115,85,110,100,101,102,40,99,117,114,41,32,63,32,39,39,32,58,32,83,116,114,105,110,103,40,99,117,114,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,104,111,117,108,100,85,112,100,97,116,101,86,97,108,117,101,40,101,108,109,44,32,115,116,114,67,117,114,41,41,32,123,92,110,32,32,32,32,32,32,32,32,101,108,109,46,118,97,108,117,101,32,61,32,115,116,114,67,117,114,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,107,101,121,32,61,61,61,32,39,105,110,110,101,114,72,84,77,76,39,32,38,38,32,105,115,83,86,71,40,101,108,109,46,116,97,103,78,97,109,101,41,32,38,38,32,105,115,85,110,100,101,102,40,101,108,109,46,105,110,110,101,114,72,84,77,76,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,73,69,32,100,111,101,115,110,39,116,32,115,117,112,112,111,114,116,32,105,110,110,101,114,72,84,77,76,32,102,111,114,32,83,86,71,32,101,108,101,109,101,110,116,115,92,110,32,32,32,32,32,32,115,118,103,67,111,110,116,97,105,110,101,114,32,61,32,115,118,103,67,111,110,116,97,105,110,101,114,32,124,124,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,39,100,105,118,39,41,59,92,110,32,32,32,32,32,32,115,118,103,67,111,110,116,97,105,110,101,114,46,105,110,110,101,114,72,84,77,76,32,61,32,92,34,60,115,118,103,62,92,34,32,43,32,99,117,114,32,43,32,92,34,60,47,115,118,103,62,92,34,59,92,110,32,32,32,32,32,32,118,97,114,32,115,118,103,32,61,32,115,118,103,67,111,110,116,97,105,110,101,114,46,102,105,114,115,116,67,104,105,108,100,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,101,108,109,46,102,105,114,115,116,67,104,105,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,101,108,109,46,114,101,109,111,118,101,67,104,105,108,100,40,101,108,109,46,102,105,114,115,116,67,104,105,108,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,115,118,103,46,102,105,114,115,116,67,104,105,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,101,108,109,46,97,112,112,101,110,100,67,104,105,108,100,40,115,118,103,46,102,105,114,115,116,67,104,105,108,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,92,110,32,32,32,32,32,32,47,47,32,115,107,105,112,32,116,104,101,32,117,112,100,97,116,101,32,105,102,32,111,108,100,32,97,110,100,32,110,101,119,32,86,68,79,77,32,115,116,97,116,101,32,105,115,32,116,104,101,32,115,97,109,101,46,92,110,32,32,32,32,32,32,47,47,32,96,118,97,108,117,101,96,32,105,115,32,104,97,110,100,108,101,100,32,115,101,112,97,114,97,116,101,108,121,32,98,101,99,97,117,115,101,32,116,104,101,32,68,79,77,32,118,97,108,117,101,32,109,97,121,32,98,101,32,116,101,109,112,111,114,97,114,105,108,121,92,110,32,32,32,32,32,32,47,47,32,111,117,116,32,111,102,32,115,121,110,99,32,119,105,116,104,32,86,68,79,77,32,115,116,97,116,101,32,100,117,101,32,116,111,32,102,111,99,117,115,44,32,99,111,109,112,111,115,105,116,105,111,110,32,97,110,100,32,109,111,100,105,102,105,101,114,115,46,92,110,32,32,32,32,32,32,47,47,32,84,104,105,115,32,32,35,52,53,50,49,32,98,121,32,115,107,105,112,112,105,110,103,32,116,104,101,32,117,110,110,101,99,101,115,115,97,114,121,32,96,99,104,101,99,107,101,100,96,32,117,112,100,97,116,101,46,92,110,32,32,32,32,32,32,99,117,114,32,33,61,61,32,111,108,100,80,114,111,112,115,91,107,101,121,93,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,47,47,32,115,111,109,101,32,112,114,111,112,101,114,116,121,32,117,112,100,97,116,101,115,32,99,97,110,32,116,104,114,111,119,92,110,32,32,32,32,32,32,47,47,32,101,46,103,46,32,96,118,97,108,117,101,96,32,111,110,32,60,112,114,111,103,114,101,115,115,62,32,119,47,32,110,111,110,45,102,105,110,105,116,101,32,118,97,108,117,101,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,101,108,109,91,107,101,121,93,32,61,32,99,117,114,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,47,32,99,104,101,99,107,32,112,108,97,116,102,111,114,109,115,47,119,101,98,47,117,116,105,108,47,97,116,116,114,115,46,106,115,32,97,99,99,101,112,116,86,97,108,117,101,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,85,112,100,97,116,101,86,97,108,117,101,32,40,101,108,109,44,32,99,104,101,99,107,86,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,33,101,108,109,46,99,111,109,112,111,115,105,110,103,32,38,38,32,40,92,110,32,32,32,32,101,108,109,46,116,97,103,78,97,109,101,32,61,61,61,32,39,79,80,84,73,79,78,39,32,124,124,92,110,32,32,32,32,105,115,78,111,116,73,110,70,111,99,117,115,65,110,100,68,105,114,116,121,40,101,108,109,44,32,99,104,101,99,107,86,97,108,41,32,124,124,92,110,32,32,32,32,105,115,68,105,114,116,121,87,105,116,104,77,111,100,105,102,105,101,114,115,40,101,108,109,44,32,99,104,101,99,107,86,97,108,41,92,110,32,32,41,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,78,111,116,73,110,70,111,99,117,115,65,110,100,68,105,114,116,121,32,40,101,108,109,44,32,99,104,101,99,107,86,97,108,41,32,123,92,110,32,32,47,47,32,114,101,116,117,114,110,32,116,114,117,101,32,119,104,101,110,32,116,101,120,116,98,111,120,32,40,46,110,117,109,98,101,114,32,97,110,100,32,46,116,114,105,109,41,32,108,111,115,101,115,32,102,111,99,117,115,32,97,110,100,32,105,116,115,32,118,97,108,117,101,32,105,115,92,110,32,32,47,47,32,110,111,116,32,101,113,117,97,108,32,116,111,32,116,104,101,32,117,112,100,97,116,101,100,32,118,97,108,117,101,92,110,32,32,118,97,114,32,110,111,116,73,110,70,111,99,117,115,32,61,32,116,114,117,101,59,92,110,32,32,47,47,32,35,54,49,53,55,92,110,32,32,47,47,32,119,111,114,107,32,97,114,111,117,110,100,32,73,69,32,98,117,103,32,119,104,101,110,32,97,99,99,101,115,115,105,110,103,32,100,111,99,117,109,101,110,116,46,97,99,116,105,118,101,69,108,101,109,101,110,116,32,105,110,32,97,110,32,105,102,114,97,109,101,92,110,32,32,116,114,121,32,123,32,110,111,116,73,110,70,111,99,117,115,32,61,32,100,111,99,117,109,101,110,116,46,97,99,116,105,118,101,69,108,101,109,101,110,116,32,33,61,61,32,101,108,109,59,32,125,32,99,97,116,99,104,32,40,101,41,32,123,125,92,110,32,32,114,101,116,117,114,110,32,110,111,116,73,110,70,111,99,117,115,32,38,38,32,101,108,109,46,118,97,108,117,101,32,33,61,61,32,99,104,101,99,107,86,97,108,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,68,105,114,116,121,87,105,116,104,77,111,100,105,102,105,101,114,115,32,40,101,108,109,44,32,110,101,119,86,97,108,41,32,123,92,110,32,32,118,97,114,32,118,97,108,117,101,32,61,32,101,108,109,46,118,97,108,117,101,59,92,110,32,32,118,97,114,32,109,111,100,105,102,105,101,114,115,32,61,32,101,108,109,46,95,118,77,111,100,105,102,105,101,114,115,59,32,47,47,32,105,110,106,101,99,116,101,100,32,98,121,32,118,45,109,111,100,101,108,32,114,117,110,116,105,109,101,92,110,32,32,105,102,32,40,105,115,68,101,102,40,109,111,100,105,102,105,101,114,115,41,41,32,123,92,110,32,32,32,32,105,102,32,40,109,111,100,105,102,105,101,114,115,46,110,117,109,98,101,114,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,111,78,117,109,98,101,114,40,118,97,108,117,101,41,32,33,61,61,32,116,111,78,117,109,98,101,114,40,110,101,119,86,97,108,41,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,109,111,100,105,102,105,101,114,115,46,116,114,105,109,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,46,116,114,105,109,40,41,32,33,61,61,32,110,101,119,86,97,108,46,116,114,105,109,40,41,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,118,97,108,117,101,32,33,61,61,32,110,101,119,86,97,108,92,110,125,92,110,92,110,118,97,114,32,100,111,109,80,114,111,112,115,32,61,32,123,92,110,32,32,99,114,101,97,116,101,58,32,117,112,100,97,116,101,68,79,77,80,114,111,112,115,44,92,110,32,32,117,112,100,97,116,101,58,32,117,112,100,97,116,101,68,79,77,80,114,111,112,115,92,110,125,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,112,97,114,115,101,83,116,121,108,101,84,101,120,116,32,61,32,99,97,99,104,101,100,40,102,117,110,99,116,105,111,110,32,40,99,115,115,84,101,120,116,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,123,125,59,92,110,32,32,118,97,114,32,108,105,115,116,68,101,108,105,109,105,116,101,114,32,61,32,47,59,40,63,33,91,94,40,93,42,92,92,41,41,47,103,59,92,110,32,32,118,97,114,32,112,114,111,112,101,114,116,121,68,101,108,105,109,105,116,101,114,32,61,32,47,58,40,46,43,41,47,59,92,110,32,32,99,115,115,84,101,120,116,46,115,112,108,105,116,40,108,105,115,116,68,101,108,105,109,105,116,101,114,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,105,102,32,40,105,116,101,109,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,116,109,112,32,61,32,105,116,101,109,46,115,112,108,105,116,40,112,114,111,112,101,114,116,121,68,101,108,105,109,105,116,101,114,41,59,92,110,32,32,32,32,32,32,116,109,112,46,108,101,110,103,116,104,32,62,32,49,32,38,38,32,40,114,101,115,91,116,109,112,91,48,93,46,116,114,105,109,40,41,93,32,61,32,116,109,112,91,49,93,46,116,114,105,109,40,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,41,59,92,110,92,110,47,47,32,109,101,114,103,101,32,115,116,97,116,105,99,32,97,110,100,32,100,121,110,97,109,105,99,32,115,116,121,108,101,32,100,97,116,97,32,111,110,32,116,104,101,32,115,97,109,101,32,118,110,111,100,101,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,83,116,121,108,101,68,97,116,97,32,40,100,97,116,97,41,32,123,92,110,32,32,118,97,114,32,115,116,121,108,101,32,61,32,110,111,114,109,97,108,105,122,101,83,116,121,108,101,66,105,110,100,105,110,103,40,100,97,116,97,46,115,116,121,108,101,41,59,92,110,32,32,47,47,32,115,116,97,116,105,99,32,115,116,121,108,101,32,105,115,32,112,114,101,45,112,114,111,99,101,115,115,101,100,32,105,110,116,111,32,97,110,32,111,98,106,101,99,116,32,100,117,114,105,110,103,32,99,111,109,112,105,108,97,116,105,111,110,92,110,32,32,47,47,32,97,110,100,32,105,115,32,97,108,119,97,121,115,32,97,32,102,114,101,115,104,32,111,98,106,101,99,116,44,32,115,111,32,105,116,39,115,32,115,97,102,101,32,116,111,32,109,101,114,103,101,32,105,110,116,111,32,105,116,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,46,115,116,97,116,105,99,83,116,121,108,101,92,110,32,32,32,32,63,32,101,120,116,101,110,100,40,100,97,116,97,46,115,116,97,116,105,99,83,116,121,108,101,44,32,115,116,121,108,101,41,92,110,32,32,32,32,58,32,115,116,121,108,101,92,110,125,92,110,92,110,47,47,32,110,111,114,109,97,108,105,122,101,32,112,111,115,115,105,98,108,101,32,97,114,114,97,121,32,47,32,115,116,114,105,110,103,32,118,97,108,117,101,115,32,105,110,116,111,32,79,98,106,101,99,116,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,83,116,121,108,101,66,105,110,100,105,110,103,32,40,98,105,110,100,105,110,103,83,116,121,108,101,41,32,123,92,110,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,98,105,110,100,105,110,103,83,116,121,108,101,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,111,79,98,106,101,99,116,40,98,105,110,100,105,110,103,83,116,121,108,101,41,92,110,32,32,125,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,98,105,110,100,105,110,103,83,116,121,108,101,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,97,114,115,101,83,116,121,108,101,84,101,120,116,40,98,105,110,100,105,110,103,83,116,121,108,101,41,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,98,105,110,100,105,110,103,83,116,121,108,101,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,112,97,114,101,110,116,32,99,111,109,112,111,110,101,110,116,32,115,116,121,108,101,32,115,104,111,117,108,100,32,98,101,32,97,102,116,101,114,32,99,104,105,108,100,39,115,92,110,32,42,32,115,111,32,116,104,97,116,32,112,97,114,101,110,116,32,99,111,109,112,111,110,101,110,116,39,115,32,115,116,121,108,101,32,99,111,117,108,100,32,111,118,101,114,114,105,100,101,32,105,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,83,116,121,108,101,32,40,118,110,111,100,101,44,32,99,104,101,99,107,67,104,105,108,100,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,123,125,59,92,110,32,32,118,97,114,32,115,116,121,108,101,68,97,116,97,59,92,110,92,110,32,32,105,102,32,40,99,104,101,99,107,67,104,105,108,100,41,32,123,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,78,111,100,101,32,61,32,118,110,111,100,101,59,92,110,32,32,32,32,119,104,105,108,101,32,40,99,104,105,108,100,78,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,32,123,92,110,32,32,32,32,32,32,99,104,105,108,100,78,111,100,101,32,61,32,99,104,105,108,100,78,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,118,110,111,100,101,59,92,110,32,32,32,32,32,32,105,102,32,40,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,78,111,100,101,32,38,38,32,99,104,105,108,100,78,111,100,101,46,100,97,116,97,32,38,38,92,110,32,32,32,32,32,32,32,32,40,115,116,121,108,101,68,97,116,97,32,61,32,110,111,114,109,97,108,105,122,101,83,116,121,108,101,68,97,116,97,40,99,104,105,108,100,78,111,100,101,46,100,97,116,97,41,41,92,110,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,101,120,116,101,110,100,40,114,101,115,44,32,115,116,121,108,101,68,97,116,97,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,40,115,116,121,108,101,68,97,116,97,32,61,32,110,111,114,109,97,108,105,122,101,83,116,121,108,101,68,97,116,97,40,118,110,111,100,101,46,100,97,116,97,41,41,41,32,123,92,110,32,32,32,32,101,120,116,101,110,100,40,114,101,115,44,32,115,116,121,108,101,68,97,116,97,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,112,97,114,101,110,116,78,111,100,101,32,61,32,118,110,111,100,101,59,92,110,32,32,119,104,105,108,101,32,40,40,112,97,114,101,110,116,78,111,100,101,32,61,32,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,41,41,32,123,92,110,32,32,32,32,105,102,32,40,112,97,114,101,110,116,78,111,100,101,46,100,97,116,97,32,38,38,32,40,115,116,121,108,101,68,97,116,97,32,61,32,110,111,114,109,97,108,105,122,101,83,116,121,108,101,68,97,116,97,40,112,97,114,101,110,116,78,111,100,101,46,100,97,116,97,41,41,41,32,123,92,110,32,32,32,32,32,32,101,120,116,101,110,100,40,114,101,115,44,32,115,116,121,108,101,68,97,116,97,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,99,115,115,86,97,114,82,69,32,61,32,47,94,45,45,47,59,92,110,118,97,114,32,105,109,112,111,114,116,97,110,116,82,69,32,61,32,47,92,92,115,42,33,105,109,112,111,114,116,97,110,116,36,47,59,92,110,118,97,114,32,115,101,116,80,114,111,112,32,61,32,102,117,110,99,116,105,111,110,32,40,101,108,44,32,110,97,109,101,44,32,118,97,108,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,99,115,115,86,97,114,82,69,46,116,101,115,116,40,110,97,109,101,41,41,32,123,92,110,32,32,32,32,101,108,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,110,97,109,101,44,32,118,97,108,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,109,112,111,114,116,97,110,116,82,69,46,116,101,115,116,40,118,97,108,41,41,32,123,92,110,32,32,32,32,101,108,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,104,121,112,104,101,110,97,116,101,40,110,97,109,101,41,44,32,118,97,108,46,114,101,112,108,97,99,101,40,105,109,112,111,114,116,97,110,116,82,69,44,32,39,39,41,44,32,39,105,109,112,111,114,116,97,110,116,39,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,118,97,114,32,110,111,114,109,97,108,105,122,101,100,78,97,109,101,32,61,32,110,111,114,109,97,108,105,122,101,40,110,97,109,101,41,59,92,110,32,32,32,32,105,102,32,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,41,41,32,123,92,110,32,32,32,32,32,32,47,47,32,83,117,112,112,111,114,116,32,118,97,108,117,101,115,32,97,114,114,97,121,32,99,114,101,97,116,101,100,32,98,121,32,97,117,116,111,112,114,101,102,105,120,101,114,44,32,101,46,103,46,92,110,32,32,32,32,32,32,47,47,32,123,100,105,115,112,108,97,121,58,32,91,92,34,45,119,101,98,107,105,116,45,98,111,120,92,34,44,32,92,34,45,109,115,45,102,108,101,120,98,111,120,92,34,44,32,92,34,102,108,101,120,92,34,93,125,92,110,32,32,32,32,32,32,47,47,32,83,101,116,32,116,104,101,109,32,111,110,101,32,98,121,32,111,110,101,44,32,97,110,100,32,116,104,101,32,98,114,111,119,115,101,114,32,119,105,108,108,32,111,110,108,121,32,115,101,116,32,116,104,111,115,101,32,105,116,32,99,97,110,32,114,101,99,111,103,110,105,122,101,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,101,110,32,61,32,118,97,108,46,108,101,110,103,116,104,59,32,105,32,60,32,108,101,110,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,101,108,46,115,116,121,108,101,91,110,111,114,109,97,108,105,122,101,100,78,97,109,101,93,32,61,32,118,97,108,91,105,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,101,108,46,115,116,121,108,101,91,110,111,114,109,97,108,105,122,101,100,78,97,109,101,93,32,61,32,118,97,108,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,118,101,110,100,111,114,78,97,109,101,115,32,61,32,91,39,87,101,98,107,105,116,39,44,32,39,77,111,122,39,44,32,39,109,115,39,93,59,92,110,92,110,118,97,114,32,101,109,112,116,121,83,116,121,108,101,59,92,110,118,97,114,32,110,111,114,109,97,108,105,122,101,32,61,32,99,97,99,104,101,100,40,102,117,110,99,116,105,111,110,32,40,112,114,111,112,41,32,123,92,110,32,32,101,109,112,116,121,83,116,121,108,101,32,61,32,101,109,112,116,121,83,116,121,108,101,32,124,124,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,39,100,105,118,39,41,46,115,116,121,108,101,59,92,110,32,32,112,114,111,112,32,61,32,99,97,109,101,108,105,122,101,40,112,114,111,112,41,59,92,110,32,32,105,102,32,40,112,114,111,112,32,33,61,61,32,39,102,105,108,116,101,114,39,32,38,38,32,40,112,114,111,112,32,105,110,32,101,109,112,116,121,83,116,121,108,101,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,114,111,112,92,110,32,32,125,92,110,32,32,118,97,114,32,99,97,112,78,97,109,101,32,61,32,112,114,111,112,46,99,104,97,114,65,116,40,48,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,32,43,32,112,114,111,112,46,115,108,105,99,101,40,49,41,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,118,101,110,100,111,114,78,97,109,101,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,118,101,110,100,111,114,78,97,109,101,115,91,105,93,32,43,32,99,97,112,78,97,109,101,59,92,110,32,32,32,32,105,102,32,40,110,97,109,101,32,105,110,32,101,109,112,116,121,83,116,121,108,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,97,109,101,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,83,116,121,108,101,32,40,111,108,100,86,110,111,100,101,44,32,118,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,100,97,116,97,32,61,32,118,110,111,100,101,46,100,97,116,97,59,92,110,32,32,118,97,114,32,111,108,100,68,97,116,97,32,61,32,111,108,100,86,110,111,100,101,46,100,97,116,97,59,92,110,92,110,32,32,105,102,32,40,105,115,85,110,100,101,102,40,100,97,116,97,46,115,116,97,116,105,99,83,116,121,108,101,41,32,38,38,32,105,115,85,110,100,101,102,40,100,97,116,97,46,115,116,121,108,101,41,32,38,38,92,110,32,32,32,32,105,115,85,110,100,101,102,40,111,108,100,68,97,116,97,46,115,116,97,116,105,99,83,116,121,108,101,41,32,38,38,32,105,115,85,110,100,101,102,40,111,108,100,68,97,116,97,46,115,116,121,108,101,41,92,110,32,32,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,117,114,44,32,110,97,109,101,59,92,110,32,32,118,97,114,32,101,108,32,61,32,118,110,111,100,101,46,101,108,109,59,92,110,32,32,118,97,114,32,111,108,100,83,116,97,116,105,99,83,116,121,108,101,32,61,32,111,108,100,68,97,116,97,46,115,116,97,116,105,99,83,116,121,108,101,59,92,110,32,32,118,97,114,32,111,108,100,83,116,121,108,101,66,105,110,100,105,110,103,32,61,32,111,108,100,68,97,116,97,46,110,111,114,109,97,108,105,122,101,100,83,116,121,108,101,32,124,124,32,111,108,100,68,97,116,97,46,115,116,121,108,101,32,124,124,32,123,125,59,92,110,92,110,32,32,47,47,32,105,102,32,115,116,97,116,105,99,32,115,116,121,108,101,32,101,120,105,115,116,115,44,32,115,116,121,108,101,98,105,110,100,105,110,103,32,97,108,114,101,97,100,121,32,109,101,114,103,101,100,32,105,110,116,111,32,105,116,32,119,104,101,110,32,100,111,105,110,103,32,110,111,114,109,97,108,105,122,101,83,116,121,108,101,68,97,116,97,92,110,32,32,118,97,114,32,111,108,100,83,116,121,108,101,32,61,32,111,108,100,83,116,97,116,105,99,83,116,121,108,101,32,124,124,32,111,108,100,83,116,121,108,101,66,105,110,100,105,110,103,59,92,110,92,110,32,32,118,97,114,32,115,116,121,108,101,32,61,32,110,111,114,109,97,108,105,122,101,83,116,121,108,101,66,105,110,100,105,110,103,40,118,110,111,100,101,46,100,97,116,97,46,115,116,121,108,101,41,32,124,124,32,123,125,59,92,110,92,110,32,32,47,47,32,115,116,111,114,101,32,110,111,114,109,97,108,105,122,101,100,32,115,116,121,108,101,32,117,110,100,101,114,32,97,32,100,105,102,102,101,114,101,110,116,32,107,101,121,32,102,111,114,32,110,101,120,116,32,100,105,102,102,92,110,32,32,47,47,32,109,97,107,101,32,115,117,114,101,32,116,111,32,99,108,111,110,101,32,105,116,32,105,102,32,105,116,39,115,32,114,101,97,99,116,105,118,101,44,32,115,105,110,99,101,32,116,104,101,32,117,115,101,114,32,108,105,107,101,108,121,32,119,97,110,116,115,92,110,32,32,47,47,32,116,111,32,109,117,116,97,116,101,32,105,116,46,92,110,32,32,118,110,111,100,101,46,100,97,116,97,46,110,111,114,109,97,108,105,122,101,100,83,116,121,108,101,32,61,32,105,115,68,101,102,40,115,116,121,108,101,46,95,95,111,98,95,95,41,92,110,32,32,32,32,63,32,101,120,116,101,110,100,40,123,125,44,32,115,116,121,108,101,41,92,110,32,32,32,32,58,32,115,116,121,108,101,59,92,110,92,110,32,32,118,97,114,32,110,101,119,83,116,121,108,101,32,61,32,103,101,116,83,116,121,108,101,40,118,110,111,100,101,44,32,116,114,117,101,41,59,92,110,92,110,32,32,102,111,114,32,40,110,97,109,101,32,105,110,32,111,108,100,83,116,121,108,101,41,32,123,92,110,32,32,32,32,105,102,32,40,105,115,85,110,100,101,102,40,110,101,119,83,116,121,108,101,91,110,97,109,101,93,41,41,32,123,92,110,32,32,32,32,32,32,115,101,116,80,114,111,112,40,101,108,44,32,110,97,109,101,44,32,39,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,102,111,114,32,40,110,97,109,101,32,105,110,32,110,101,119,83,116,121,108,101,41,32,123,92,110,32,32,32,32,99,117,114,32,61,32,110,101,119,83,116,121,108,101,91,110,97,109,101,93,59,92,110,32,32,32,32,105,102,32,40,99,117,114,32,33,61,61,32,111,108,100,83,116,121,108,101,91,110,97,109,101,93,41,32,123,92,110,32,32,32,32,32,32,47,47,32,105,101,57,32,115,101,116,116,105,110,103,32,116,111,32,110,117,108,108,32,104,97,115,32,110,111,32,101,102,102,101,99,116,44,32,109,117,115,116,32,117,115,101,32,101,109,112,116,121,32,115,116,114,105,110,103,92,110,32,32,32,32,32,32,115,101,116,80,114,111,112,40,101,108,44,32,110,97,109,101,44,32,99,117,114,32,61,61,32,110,117,108,108,32,63,32,39,39,32,58,32,99,117,114,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,115,116,121,108,101,32,61,32,123,92,110,32,32,99,114,101,97,116,101,58,32,117,112,100,97,116,101,83,116,121,108,101,44,92,110,32,32,117,112,100,97,116,101,58,32,117,112,100,97,116,101,83,116,121,108,101,92,110,125,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,119,104,105,116,101,115,112,97,99,101,82,69,32,61,32,47,92,92,115,43,47,59,92,110,92,110,47,42,42,92,110,32,42,32,65,100,100,32,99,108,97,115,115,32,119,105,116,104,32,99,111,109,112,97,116,105,98,105,108,105,116,121,32,102,111,114,32,83,86,71,32,115,105,110,99,101,32,99,108,97,115,115,76,105,115,116,32,105,115,32,110,111,116,32,115,117,112,112,111,114,116,101,100,32,111,110,92,110,32,42,32,83,86,71,32,101,108,101,109,101,110,116,115,32,105,110,32,73,69,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,97,100,100,67,108,97,115,115,32,40,101,108,44,32,99,108,115,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,33,99,108,115,32,124,124,32,33,40,99,108,115,32,61,32,99,108,115,46,116,114,105,109,40,41,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,105,102,32,40,101,108,46,99,108,97,115,115,76,105,115,116,41,32,123,92,110,32,32,32,32,105,102,32,40,99,108,115,46,105,110,100,101,120,79,102,40,39,32,39,41,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,99,108,115,46,115,112,108,105,116,40,119,104,105,116,101,115,112,97,99,101,82,69,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,41,32,123,32,114,101,116,117,114,110,32,101,108,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,99,41,59,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,101,108,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,99,108,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,118,97,114,32,99,117,114,32,61,32,92,34,32,92,34,32,43,32,40,101,108,46,103,101,116,65,116,116,114,105,98,117,116,101,40,39,99,108,97,115,115,39,41,32,124,124,32,39,39,41,32,43,32,92,34,32,92,34,59,92,110,32,32,32,32,105,102,32,40,99,117,114,46,105,110,100,101,120,79,102,40,39,32,39,32,43,32,99,108,115,32,43,32,39,32,39,41,32,60,32,48,41,32,123,92,110,32,32,32,32,32,32,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,99,108,97,115,115,39,44,32,40,99,117,114,32,43,32,99,108,115,41,46,116,114,105,109,40,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,101,109,111,118,101,32,99,108,97,115,115,32,119,105,116,104,32,99,111,109,112,97,116,105,98,105,108,105,116,121,32,102,111,114,32,83,86,71,32,115,105,110,99,101,32,99,108,97,115,115,76,105,115,116,32,105,115,32,110,111,116,32,115,117,112,112,111,114,116,101,100,32,111,110,92,110,32,42,32,83,86,71,32,101,108,101,109,101,110,116,115,32,105,110,32,73,69,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,67,108,97,115,115,32,40,101,108,44,32,99,108,115,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,33,99,108,115,32,124,124,32,33,40,99,108,115,32,61,32,99,108,115,46,116,114,105,109,40,41,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,105,102,32,40,101,108,46,99,108,97,115,115,76,105,115,116,41,32,123,92,110,32,32,32,32,105,102,32,40,99,108,115,46,105,110,100,101,120,79,102,40,39,32,39,41,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,99,108,115,46,115,112,108,105,116,40,119,104,105,116,101,115,112,97,99,101,82,69,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,41,32,123,32,114,101,116,117,114,110,32,101,108,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,99,41,59,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,101,108,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,99,108,115,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,33,101,108,46,99,108,97,115,115,76,105,115,116,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,101,108,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,39,99,108,97,115,115,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,118,97,114,32,99,117,114,32,61,32,92,34,32,92,34,32,43,32,40,101,108,46,103,101,116,65,116,116,114,105,98,117,116,101,40,39,99,108,97,115,115,39,41,32,124,124,32,39,39,41,32,43,32,92,34,32,92,34,59,92,110,32,32,32,32,118,97,114,32,116,97,114,32,61,32,39,32,39,32,43,32,99,108,115,32,43,32,39,32,39,59,92,110,32,32,32,32,119,104,105,108,101,32,40,99,117,114,46,105,110,100,101,120,79,102,40,116,97,114,41,32,62,61,32,48,41,32,123,92,110,32,32,32,32,32,32,99,117,114,32,61,32,99,117,114,46,114,101,112,108,97,99,101,40,116,97,114,44,32,39,32,39,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,99,117,114,32,61,32,99,117,114,46,116,114,105,109,40,41,59,92,110,32,32,32,32,105,102,32,40,99,117,114,41,32,123,92,110,32,32,32,32,32,32,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,39,99,108,97,115,115,39,44,32,99,117,114,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,101,108,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,39,99,108,97,115,115,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,111,108,118,101,84,114,97,110,115,105,116,105,111,110,32,40,100,101,102,36,36,49,41,32,123,92,110,32,32,105,102,32,40,33,100,101,102,36,36,49,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,100,101,102,36,36,49,32,61,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,32,61,32,123,125,59,92,110,32,32,32,32,105,102,32,40,100,101,102,36,36,49,46,99,115,115,32,33,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,101,120,116,101,110,100,40,114,101,115,44,32,97,117,116,111,67,115,115,84,114,97,110,115,105,116,105,111,110,40,100,101,102,36,36,49,46,110,97,109,101,32,124,124,32,39,118,39,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,101,120,116,101,110,100,40,114,101,115,44,32,100,101,102,36,36,49,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,114,101,115,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,116,121,112,101,111,102,32,100,101,102,36,36,49,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,117,116,111,67,115,115,84,114,97,110,115,105,116,105,111,110,40,100,101,102,36,36,49,41,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,97,117,116,111,67,115,115,84,114,97,110,115,105,116,105,111,110,32,61,32,99,97,99,104,101,100,40,102,117,110,99,116,105,111,110,32,40,110,97,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,101,110,116,101,114,67,108,97,115,115,58,32,40,110,97,109,101,32,43,32,92,34,45,101,110,116,101,114,92,34,41,44,92,110,32,32,32,32,101,110,116,101,114,84,111,67,108,97,115,115,58,32,40,110,97,109,101,32,43,32,92,34,45,101,110,116,101,114,45,116,111,92,34,41,44,92,110,32,32,32,32,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,58,32,40,110,97,109,101,32,43,32,92,34,45,101,110,116,101,114,45,97,99,116,105,118,101,92,34,41,44,92,110,32,32,32,32,108,101,97,118,101,67,108,97,115,115,58,32,40,110,97,109,101,32,43,32,92,34,45,108,101,97,118,101,92,34,41,44,92,110,32,32,32,32,108,101,97,118,101,84,111,67,108,97,115,115,58,32,40,110,97,109,101,32,43,32,92,34,45,108,101,97,118,101,45,116,111,92,34,41,44,92,110,32,32,32,32,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,58,32,40,110,97,109,101,32,43,32,92,34,45,108,101,97,118,101,45,97,99,116,105,118,101,92,34,41,92,110,32,32,125,92,110,125,41,59,92,110,92,110,118,97,114,32,104,97,115,84,114,97,110,115,105,116,105,111,110,32,61,32,105,110,66,114,111,119,115,101,114,32,38,38,32,33,105,115,73,69,57,59,92,110,118,97,114,32,84,82,65,78,83,73,84,73,79,78,32,61,32,39,116,114,97,110,115,105,116,105,111,110,39,59,92,110,118,97,114,32,65,78,73,77,65,84,73,79,78,32,61,32,39,97,110,105,109,97,116,105,111,110,39,59,92,110,92,110,47,47,32,84,114,97,110,115,105,116,105,111,110,32,112,114,111,112,101,114,116,121,47,101,118,101,110,116,32,115,110,105,102,102,105,110,103,92,110,118,97,114,32,116,114,97,110,115,105,116,105,111,110,80,114,111,112,32,61,32,39,116,114,97,110,115,105,116,105,111,110,39,59,92,110,118,97,114,32,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,32,61,32,39,116,114,97,110,115,105,116,105,111,110,101,110,100,39,59,92,110,118,97,114,32,97,110,105,109,97,116,105,111,110,80,114,111,112,32,61,32,39,97,110,105,109,97,116,105,111,110,39,59,92,110,118,97,114,32,97,110,105,109,97,116,105,111,110,69,110,100,69,118,101,110,116,32,61,32,39,97,110,105,109,97,116,105,111,110,101,110,100,39,59,92,110,105,102,32,40,104,97,115,84,114,97,110,115,105,116,105,111,110,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,119,105,110,100,111,119,46,111,110,116,114,97,110,115,105,116,105,111,110,101,110,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,92,110,32,32,32,32,119,105,110,100,111,119,46,111,110,119,101,98,107,105,116,116,114,97,110,115,105,116,105,111,110,101,110,100,32,33,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,41,32,123,92,110,32,32,32,32,116,114,97,110,115,105,116,105,111,110,80,114,111,112,32,61,32,39,87,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,39,59,92,110,32,32,32,32,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,32,61,32,39,119,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,69,110,100,39,59,92,110,32,32,125,92,110,32,32,105,102,32,40,119,105,110,100,111,119,46,111,110,97,110,105,109,97,116,105,111,110,101,110,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,38,38,92,110,32,32,32,32,119,105,110,100,111,119,46,111,110,119,101,98,107,105,116,97,110,105,109,97,116,105,111,110,101,110,100,32,33,61,61,32,117,110,100,101,102,105,110,101,100,92,110,32,32,41,32,123,92,110,32,32,32,32,97,110,105,109,97,116,105,111,110,80,114,111,112,32,61,32,39,87,101,98,107,105,116,65,110,105,109,97,116,105,111,110,39,59,92,110,32,32,32,32,97,110,105,109,97,116,105,111,110,69,110,100,69,118,101,110,116,32,61,32,39,119,101,98,107,105,116,65,110,105,109,97,116,105,111,110,69,110,100,39,59,92,110,32,32,125,92,110,125,92,110,92,110,47,47,32,98,105,110,100,105,110,103,32,116,111,32,119,105,110,100,111,119,32,105,115,32,110,101,99,101,115,115,97,114,121,32,116,111,32,109,97,107,101,32,104,111,116,32,114,101,108,111,97,100,32,119,111,114,107,32,105,110,32,73,69,32,105,110,32,115,116,114,105,99,116,32,109,111,100,101,92,110,118,97,114,32,114,97,102,32,61,32,105,110,66,114,111,119,115,101,114,92,110,32,32,63,32,119,105,110,100,111,119,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,92,110,32,32,32,32,63,32,119,105,110,100,111,119,46,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,92,110,32,32,32,32,58,32,115,101,116,84,105,109,101,111,117,116,92,110,32,32,58,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,32,102,117,110,99,116,105,111,110,32,40,102,110,41,32,123,32,114,101,116,117,114,110,32,102,110,40,41,59,32,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,110,101,120,116,70,114,97,109,101,32,40,102,110,41,32,123,92,110,32,32,114,97,102,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,97,102,40,102,110,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,100,100,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,32,40,101,108,44,32,99,108,115,41,32,123,92,110,32,32,118,97,114,32,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,32,61,32,101,108,46,95,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,32,124,124,32,40,101,108,46,95,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,32,61,32,91,93,41,59,92,110,32,32,105,102,32,40,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,46,105,110,100,101,120,79,102,40,99,108,115,41,32,60,32,48,41,32,123,92,110,32,32,32,32,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,46,112,117,115,104,40,99,108,115,41,59,92,110,32,32,32,32,97,100,100,67,108,97,115,115,40,101,108,44,32,99,108,115,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,32,40,101,108,44,32,99,108,115,41,32,123,92,110,32,32,105,102,32,40,101,108,46,95,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,41,32,123,92,110,32,32,32,32,114,101,109,111,118,101,40,101,108,46,95,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,44,32,99,108,115,41,59,92,110,32,32,125,92,110,32,32,114,101,109,111,118,101,67,108,97,115,115,40,101,108,44,32,99,108,115,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,119,104,101,110,84,114,97,110,115,105,116,105,111,110,69,110,100,115,32,40,92,110,32,32,101,108,44,92,110,32,32,101,120,112,101,99,116,101,100,84,121,112,101,44,92,110,32,32,99,98,92,110,41,32,123,92,110,32,32,118,97,114,32,114,101,102,32,61,32,103,101,116,84,114,97,110,115,105,116,105,111,110,73,110,102,111,40,101,108,44,32,101,120,112,101,99,116,101,100,84,121,112,101,41,59,92,110,32,32,118,97,114,32,116,121,112,101,32,61,32,114,101,102,46,116,121,112,101,59,92,110,32,32,118,97,114,32,116,105,109,101,111,117,116,32,61,32,114,101,102,46,116,105,109,101,111,117,116,59,92,110,32,32,118,97,114,32,112,114,111,112,67,111,117,110,116,32,61,32,114,101,102,46,112,114,111,112,67,111,117,110,116,59,92,110,32,32,105,102,32,40,33,116,121,112,101,41,32,123,32,114,101,116,117,114,110,32,99,98,40,41,32,125,92,110,32,32,118,97,114,32,101,118,101,110,116,32,61,32,116,121,112,101,32,61,61,61,32,84,82,65,78,83,73,84,73,79,78,32,63,32,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,32,58,32,97,110,105,109,97,116,105,111,110,69,110,100,69,118,101,110,116,59,92,110,32,32,118,97,114,32,101,110,100,101,100,32,61,32,48,59,92,110,32,32,118,97,114,32,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,101,108,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,118,101,110,116,44,32,111,110,69,110,100,41,59,92,110,32,32,32,32,99,98,40,41,59,92,110,32,32,125,59,92,110,32,32,118,97,114,32,111,110,69,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,92,110,32,32,32,32,105,102,32,40,101,46,116,97,114,103,101,116,32,61,61,61,32,101,108,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,43,43,101,110,100,101,100,32,62,61,32,112,114,111,112,67,111,117,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,101,110,100,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,101,110,100,101,100,32,60,32,112,114,111,112,67,111,117,110,116,41,32,123,92,110,32,32,32,32,32,32,101,110,100,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,116,105,109,101,111,117,116,32,43,32,49,41,59,92,110,32,32,101,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,118,101,110,116,44,32,111,110,69,110,100,41,59,92,110,125,92,110,92,110,118,97,114,32,116,114,97,110,115,102,111,114,109,82,69,32,61,32,47,92,92,98,40,116,114,97,110,115,102,111,114,109,124,97,108,108,41,40,44,124,36,41,47,59,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,84,114,97,110,115,105,116,105,111,110,73,110,102,111,32,40,101,108,44,32,101,120,112,101,99,116,101,100,84,121,112,101,41,32,123,92,110,32,32,118,97,114,32,115,116,121,108,101,115,32,61,32,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,108,41,59,92,110,32,32,47,47,32,74,83,68,79,77,32,109,97,121,32,114,101,116,117,114,110,32,117,110,100,101,102,105,110,101,100,32,102,111,114,32,116,114,97,110,115,105,116,105,111,110,32,112,114,111,112,101,114,116,105,101,115,92,110,32,32,118,97,114,32,116,114,97,110,115,105,116,105,111,110,68,101,108,97,121,115,32,61,32,40,115,116,121,108,101,115,91,116,114,97,110,115,105,116,105,111,110,80,114,111,112,32,43,32,39,68,101,108,97,121,39,93,32,124,124,32,39,39,41,46,115,112,108,105,116,40,39,44,32,39,41,59,92,110,32,32,118,97,114,32,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,115,32,61,32,40,115,116,121,108,101,115,91,116,114,97,110,115,105,116,105,111,110,80,114,111,112,32,43,32,39,68,117,114,97,116,105,111,110,39,93,32,124,124,32,39,39,41,46,115,112,108,105,116,40,39,44,32,39,41,59,92,110,32,32,118,97,114,32,116,114,97,110,115,105,116,105,111,110,84,105,109,101,111,117,116,32,61,32,103,101,116,84,105,109,101,111,117,116,40,116,114,97,110,115,105,116,105,111,110,68,101,108,97,121,115,44,32,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,115,41,59,92,110,32,32,118,97,114,32,97,110,105,109,97,116,105,111,110,68,101,108,97,121,115,32,61,32,40,115,116,121,108,101,115,91,97,110,105,109,97,116,105,111,110,80,114,111,112,32,43,32,39,68,101,108,97,121,39,93,32,124,124,32,39,39,41,46,115,112,108,105,116,40,39,44,32,39,41,59,92,110,32,32,118,97,114,32,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,115,32,61,32,40,115,116,121,108,101,115,91,97,110,105,109,97,116,105,111,110,80,114,111,112,32,43,32,39,68,117,114,97,116,105,111,110,39,93,32,124,124,32,39,39,41,46,115,112,108,105,116,40,39,44,32,39,41,59,92,110,32,32,118,97,114,32,97,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,32,61,32,103,101,116,84,105,109,101,111,117,116,40,97,110,105,109,97,116,105,111,110,68,101,108,97,121,115,44,32,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,115,41,59,92,110,92,110,32,32,118,97,114,32,116,121,112,101,59,92,110,32,32,118,97,114,32,116,105,109,101,111,117,116,32,61,32,48,59,92,110,32,32,118,97,114,32,112,114,111,112,67,111,117,110,116,32,61,32,48,59,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,101,120,112,101,99,116,101,100,84,121,112,101,32,61,61,61,32,84,82,65,78,83,73,84,73,79,78,41,32,123,92,110,32,32,32,32,105,102,32,40,116,114,97,110,115,105,116,105,111,110,84,105,109,101,111,117,116,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,116,121,112,101,32,61,32,84,82,65,78,83,73,84,73,79,78,59,92,110,32,32,32,32,32,32,116,105,109,101,111,117,116,32,61,32,116,114,97,110,115,105,116,105,111,110,84,105,109,101,111,117,116,59,92,110,32,32,32,32,32,32,112,114,111,112,67,111,117,110,116,32,61,32,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,101,120,112,101,99,116,101,100,84,121,112,101,32,61,61,61,32,65,78,73,77,65,84,73,79,78,41,32,123,92,110,32,32,32,32,105,102,32,40,97,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,116,121,112,101,32,61,32,65,78,73,77,65,84,73,79,78,59,92,110,32,32,32,32,32,32,116,105,109,101,111,117,116,32,61,32,97,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,59,92,110,32,32,32,32,32,32,112,114,111,112,67,111,117,110,116,32,61,32,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,125,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,116,105,109,101,111,117,116,32,61,32,77,97,116,104,46,109,97,120,40,116,114,97,110,115,105,116,105,111,110,84,105,109,101,111,117,116,44,32,97,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,41,59,92,110,32,32,32,32,116,121,112,101,32,61,32,116,105,109,101,111,117,116,32,62,32,48,92,110,32,32,32,32,32,32,63,32,116,114,97,110,115,105,116,105,111,110,84,105,109,101,111,117,116,32,62,32,97,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,92,110,32,32,32,32,32,32,32,32,63,32,84,82,65,78,83,73,84,73,79,78,92,110,32,32,32,32,32,32,32,32,58,32,65,78,73,77,65,84,73,79,78,92,110,32,32,32,32,32,32,58,32,110,117,108,108,59,92,110,32,32,32,32,112,114,111,112,67,111,117,110,116,32,61,32,116,121,112,101,92,110,32,32,32,32,32,32,63,32,116,121,112,101,32,61,61,61,32,84,82,65,78,83,73,84,73,79,78,92,110,32,32,32,32,32,32,32,32,63,32,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,115,46,108,101,110,103,116,104,92,110,32,32,32,32,32,32,32,32,58,32,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,115,46,108,101,110,103,116,104,92,110,32,32,32,32,32,32,58,32,48,59,92,110,32,32,125,92,110,32,32,118,97,114,32,104,97,115,84,114,97,110,115,102,111,114,109,32,61,92,110,32,32,32,32,116,121,112,101,32,61,61,61,32,84,82,65,78,83,73,84,73,79,78,32,38,38,92,110,32,32,32,32,116,114,97,110,115,102,111,114,109,82,69,46,116,101,115,116,40,115,116,121,108,101,115,91,116,114,97,110,115,105,116,105,111,110,80,114,111,112,32,43,32,39,80,114,111,112,101,114,116,121,39,93,41,59,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,116,121,112,101,58,32,116,121,112,101,44,92,110,32,32,32,32,116,105,109,101,111,117,116,58,32,116,105,109,101,111,117,116,44,92,110,32,32,32,32,112,114,111,112,67,111,117,110,116,58,32,112,114,111,112,67,111,117,110,116,44,92,110,32,32,32,32,104,97,115,84,114,97,110,115,102,111,114,109,58,32,104,97,115,84,114,97,110,115,102,111,114,109,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,84,105,109,101,111,117,116,32,40,100,101,108,97,121,115,44,32,100,117,114,97,116,105,111,110,115,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,32,32,119,104,105,108,101,32,40,100,101,108,97,121,115,46,108,101,110,103,116,104,32,60,32,100,117,114,97,116,105,111,110,115,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,100,101,108,97,121,115,32,61,32,100,101,108,97,121,115,46,99,111,110,99,97,116,40,100,101,108,97,121,115,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,110,117,108,108,44,32,100,117,114,97,116,105,111,110,115,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,100,44,32,105,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,111,77,115,40,100,41,32,43,32,116,111,77,115,40,100,101,108,97,121,115,91,105,93,41,92,110,32,32,125,41,41,92,110,125,92,110,92,110,47,47,32,79,108,100,32,118,101,114,115,105,111,110,115,32,111,102,32,67,104,114,111,109,105,117,109,32,40,98,101,108,111,119,32,54,49,46,48,46,51,49,54,51,46,49,48,48,41,32,102,111,114,109,97,116,115,32,102,108,111,97,116,105,110,103,32,112,111,105,110,116,101,114,32,110,117,109,98,101,114,115,92,110,47,47,32,105,110,32,97,32,108,111,99,97,108,101,45,100,101,112,101,110,100,101,110,116,32,119,97,121,44,32,117,115,105,110,103,32,97,32,99,111,109,109,97,32,105,110,115,116,101,97,100,32,111,102,32,97,32,100,111,116,46,92,110,47,47,32,73,102,32,99,111,109,109,97,32,105,115,32,110,111,116,32,114,101,112,108,97,99,101,100,32,119,105,116,104,32,97,32,100,111,116,44,32,116,104,101,32,105,110,112,117,116,32,119,105,108,108,32,98,101,32,114,111,117,110,100,101,100,32,100,111,119,110,32,40,105,46,101,46,32,97,99,116,105,110,103,92,110,47,47,32,97,115,32,97,32,102,108,111,111,114,32,102,117,110,99,116,105,111,110,41,32,99,97,117,115,105,110,103,32,117,110,101,120,112,101,99,116,101,100,32,98,101,104,97,118,105,111,114,115,92,110,102,117,110,99,116,105,111,110,32,116,111,77,115,32,40,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,78,117,109,98,101,114,40,115,46,115,108,105,99,101,40,48,44,32,45,49,41,46,114,101,112,108,97,99,101,40,39,44,39,44,32,39,46,39,41,41,32,42,32,49,48,48,48,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,102,117,110,99,116,105,111,110,32,101,110,116,101,114,32,40,118,110,111,100,101,44,32,116,111,103,103,108,101,68,105,115,112,108,97,121,41,32,123,92,110,32,32,118,97,114,32,101,108,32,61,32,118,110,111,100,101,46,101,108,109,59,92,110,92,110,32,32,47,47,32,99,97,108,108,32,108,101,97,118,101,32,99,97,108,108,98,97,99,107,32,110,111,119,92,110,32,32,105,102,32,40,105,115,68,101,102,40,101,108,46,95,108,101,97,118,101,67,98,41,41,32,123,92,110,32,32,32,32,101,108,46,95,108,101,97,118,101,67,98,46,99,97,110,99,101,108,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,101,108,46,95,108,101,97,118,101,67,98,40,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,100,97,116,97,32,61,32,114,101,115,111,108,118,101,84,114,97,110,115,105,116,105,111,110,40,118,110,111,100,101,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,41,59,92,110,32,32,105,102,32,40,105,115,85,110,100,101,102,40,100,97,116,97,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,105,115,68,101,102,40,101,108,46,95,101,110,116,101,114,67,98,41,32,124,124,32,101,108,46,110,111,100,101,84,121,112,101,32,33,61,61,32,49,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,115,115,32,61,32,100,97,116,97,46,99,115,115,59,92,110,32,32,118,97,114,32,116,121,112,101,32,61,32,100,97,116,97,46,116,121,112,101,59,92,110,32,32,118,97,114,32,101,110,116,101,114,67,108,97,115,115,32,61,32,100,97,116,97,46,101,110,116,101,114,67,108,97,115,115,59,92,110,32,32,118,97,114,32,101,110,116,101,114,84,111,67,108,97,115,115,32,61,32,100,97,116,97,46,101,110,116,101,114,84,111,67,108,97,115,115,59,92,110,32,32,118,97,114,32,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,32,61,32,100,97,116,97,46,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,59,92,110,32,32,118,97,114,32,97,112,112,101,97,114,67,108,97,115,115,32,61,32,100,97,116,97,46,97,112,112,101,97,114,67,108,97,115,115,59,92,110,32,32,118,97,114,32,97,112,112,101,97,114,84,111,67,108,97,115,115,32,61,32,100,97,116,97,46,97,112,112,101,97,114,84,111,67,108,97,115,115,59,92,110,32,32,118,97,114,32,97,112,112,101,97,114,65,99,116,105,118,101,67,108,97,115,115,32,61,32,100,97,116,97,46,97,112,112,101,97,114,65,99,116,105,118,101,67,108,97,115,115,59,92,110,32,32,118,97,114,32,98,101,102,111,114,101,69,110,116,101,114,32,61,32,100,97,116,97,46,98,101,102,111,114,101,69,110,116,101,114,59,92,110,32,32,118,97,114,32,101,110,116,101,114,32,61,32,100,97,116,97,46,101,110,116,101,114,59,92,110,32,32,118,97,114,32,97,102,116,101,114,69,110,116,101,114,32,61,32,100,97,116,97,46,97,102,116,101,114,69,110,116,101,114,59,92,110,32,32,118,97,114,32,101,110,116,101,114,67,97,110,99,101,108,108,101,100,32,61,32,100,97,116,97,46,101,110,116,101,114,67,97,110,99,101,108,108,101,100,59,92,110,32,32,118,97,114,32,98,101,102,111,114,101,65,112,112,101,97,114,32,61,32,100,97,116,97,46,98,101,102,111,114,101,65,112,112,101,97,114,59,92,110,32,32,118,97,114,32,97,112,112,101,97,114,32,61,32,100,97,116,97,46,97,112,112,101,97,114,59,92,110,32,32,118,97,114,32,97,102,116,101,114,65,112,112,101,97,114,32,61,32,100,97,116,97,46,97,102,116,101,114,65,112,112,101,97,114,59,92,110,32,32,118,97,114,32,97,112,112,101,97,114,67,97,110,99,101,108,108,101,100,32,61,32,100,97,116,97,46,97,112,112,101,97,114,67,97,110,99,101,108,108,101,100,59,92,110,32,32,118,97,114,32,100,117,114,97,116,105,111,110,32,61,32,100,97,116,97,46,100,117,114,97,116,105,111,110,59,92,110,92,110,32,32,47,47,32,97,99,116,105,118,101,73,110,115,116,97,110,99,101,32,119,105,108,108,32,97,108,119,97,121,115,32,98,101,32,116,104,101,32,60,116,114,97,110,115,105,116,105,111,110,62,32,99,111,109,112,111,110,101,110,116,32,109,97,110,97,103,105,110,103,32,116,104,105,115,92,110,32,32,47,47,32,116,114,97,110,115,105,116,105,111,110,46,32,79,110,101,32,101,100,103,101,32,99,97,115,101,32,116,111,32,99,104,101,99,107,32,105,115,32,119,104,101,110,32,116,104,101,32,60,116,114,97,110,115,105,116,105,111,110,62,32,105,115,32,112,108,97,99,101,100,92,110,32,32,47,47,32,97,115,32,116,104,101,32,114,111,111,116,32,110,111,100,101,32,111,102,32,97,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,46,32,73,110,32,116,104,97,116,32,99,97,115,101,32,119,101,32,110,101,101,100,32,116,111,32,99,104,101,99,107,92,110,32,32,47,47,32,60,116,114,97,110,115,105,116,105,111,110,62,39,115,32,112,97,114,101,110,116,32,102,111,114,32,97,112,112,101,97,114,32,99,104,101,99,107,46,92,110,32,32,118,97,114,32,99,111,110,116,101,120,116,32,61,32,97,99,116,105,118,101,73,110,115,116,97,110,99,101,59,92,110,32,32,118,97,114,32,116,114,97,110,115,105,116,105,111,110,78,111,100,101,32,61,32,97,99,116,105,118,101,73,110,115,116,97,110,99,101,46,36,118,110,111,100,101,59,92,110,32,32,119,104,105,108,101,32,40,116,114,97,110,115,105,116,105,111,110,78,111,100,101,32,38,38,32,116,114,97,110,115,105,116,105,111,110,78,111,100,101,46,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,99,111,110,116,101,120,116,32,61,32,116,114,97,110,115,105,116,105,111,110,78,111,100,101,46,99,111,110,116,101,120,116,59,92,110,32,32,32,32,116,114,97,110,115,105,116,105,111,110,78,111,100,101,32,61,32,116,114,97,110,115,105,116,105,111,110,78,111,100,101,46,112,97,114,101,110,116,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,105,115,65,112,112,101,97,114,32,61,32,33,99,111,110,116,101,120,116,46,95,105,115,77,111,117,110,116,101,100,32,124,124,32,33,118,110,111,100,101,46,105,115,82,111,111,116,73,110,115,101,114,116,59,92,110,92,110,32,32,105,102,32,40,105,115,65,112,112,101,97,114,32,38,38,32,33,97,112,112,101,97,114,32,38,38,32,97,112,112,101,97,114,32,33,61,61,32,39,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,115,116,97,114,116,67,108,97,115,115,32,61,32,105,115,65,112,112,101,97,114,32,38,38,32,97,112,112,101,97,114,67,108,97,115,115,92,110,32,32,32,32,63,32,97,112,112,101,97,114,67,108,97,115,115,92,110,32,32,32,32,58,32,101,110,116,101,114,67,108,97,115,115,59,92,110,32,32,118,97,114,32,97,99,116,105,118,101,67,108,97,115,115,32,61,32,105,115,65,112,112,101,97,114,32,38,38,32,97,112,112,101,97,114,65,99,116,105,118,101,67,108,97,115,115,92,110,32,32,32,32,63,32,97,112,112,101,97,114,65,99,116,105,118,101,67,108,97,115,115,92,110,32,32,32,32,58,32,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,59,92,110,32,32,118,97,114,32,116,111,67,108,97,115,115,32,61,32,105,115,65,112,112,101,97,114,32,38,38,32,97,112,112,101,97,114,84,111,67,108,97,115,115,92,110,32,32,32,32,63,32,97,112,112,101,97,114,84,111,67,108,97,115,115,92,110,32,32,32,32,58,32,101,110,116,101,114,84,111,67,108,97,115,115,59,92,110,92,110,32,32,118,97,114,32,98,101,102,111,114,101,69,110,116,101,114,72,111,111,107,32,61,32,105,115,65,112,112,101,97,114,92,110,32,32,32,32,63,32,40,98,101,102,111,114,101,65,112,112,101,97,114,32,124,124,32,98,101,102,111,114,101,69,110,116,101,114,41,92,110,32,32,32,32,58,32,98,101,102,111,114,101,69,110,116,101,114,59,92,110,32,32,118,97,114,32,101,110,116,101,114,72,111,111,107,32,61,32,105,115,65,112,112,101,97,114,92,110,32,32,32,32,63,32,40,116,121,112,101,111,102,32,97,112,112,101,97,114,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,97,112,112,101,97,114,32,58,32,101,110,116,101,114,41,92,110,32,32,32,32,58,32,101,110,116,101,114,59,92,110,32,32,118,97,114,32,97,102,116,101,114,69,110,116,101,114,72,111,111,107,32,61,32,105,115,65,112,112,101,97,114,92,110,32,32,32,32,63,32,40,97,102,116,101,114,65,112,112,101,97,114,32,124,124,32,97,102,116,101,114,69,110,116,101,114,41,92,110,32,32,32,32,58,32,97,102,116,101,114,69,110,116,101,114,59,92,110,32,32,118,97,114,32,101,110,116,101,114,67,97,110,99,101,108,108,101,100,72,111,111,107,32,61,32,105,115,65,112,112,101,97,114,92,110,32,32,32,32,63,32,40,97,112,112,101,97,114,67,97,110,99,101,108,108,101,100,32,124,124,32,101,110,116,101,114,67,97,110,99,101,108,108,101,100,41,92,110,32,32,32,32,58,32,101,110,116,101,114,67,97,110,99,101,108,108,101,100,59,92,110,92,110,32,32,118,97,114,32,101,120,112,108,105,99,105,116,69,110,116,101,114,68,117,114,97,116,105,111,110,32,61,32,116,111,78,117,109,98,101,114,40,92,110,32,32,32,32,105,115,79,98,106,101,99,116,40,100,117,114,97,116,105,111,110,41,92,110,32,32,32,32,32,32,63,32,100,117,114,97,116,105,111,110,46,101,110,116,101,114,92,110,32,32,32,32,32,32,58,32,100,117,114,97,116,105,111,110,92,110,32,32,41,59,92,110,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,101,120,112,108,105,99,105,116,69,110,116,101,114,68,117,114,97,116,105,111,110,32,33,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,99,104,101,99,107,68,117,114,97,116,105,111,110,40,101,120,112,108,105,99,105,116,69,110,116,101,114,68,117,114,97,116,105,111,110,44,32,39,101,110,116,101,114,39,44,32,118,110,111,100,101,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,101,120,112,101,99,116,115,67,83,83,32,61,32,99,115,115,32,33,61,61,32,102,97,108,115,101,32,38,38,32,33,105,115,73,69,57,59,92,110,32,32,118,97,114,32,117,115,101,114,87,97,110,116,115,67,111,110,116,114,111,108,32,61,32,103,101,116,72,111,111,107,65,114,103,117,109,101,110,116,115,76,101,110,103,116,104,40,101,110,116,101,114,72,111,111,107,41,59,92,110,92,110,32,32,118,97,114,32,99,98,32,61,32,101,108,46,95,101,110,116,101,114,67,98,32,61,32,111,110,99,101,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,101,120,112,101,99,116,115,67,83,83,41,32,123,92,110,32,32,32,32,32,32,114,101,109,111,118,101,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,116,111,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,114,101,109,111,118,101,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,97,99,116,105,118,101,67,108,97,115,115,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,99,98,46,99,97,110,99,101,108,108,101,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,101,120,112,101,99,116,115,67,83,83,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,115,116,97,114,116,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,101,110,116,101,114,67,97,110,99,101,108,108,101,100,72,111,111,107,32,38,38,32,101,110,116,101,114,67,97,110,99,101,108,108,101,100,72,111,111,107,40,101,108,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,97,102,116,101,114,69,110,116,101,114,72,111,111,107,32,38,38,32,97,102,116,101,114,69,110,116,101,114,72,111,111,107,40,101,108,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,101,108,46,95,101,110,116,101,114,67,98,32,61,32,110,117,108,108,59,92,110,32,32,125,41,59,92,110,92,110,32,32,105,102,32,40,33,118,110,111,100,101,46,100,97,116,97,46,115,104,111,119,41,32,123,92,110,32,32,32,32,47,47,32,114,101,109,111,118,101,32,112,101,110,100,105,110,103,32,108,101,97,118,101,32,101,108,101,109,101,110,116,32,111,110,32,101,110,116,101,114,32,98,121,32,105,110,106,101,99,116,105,110,103,32,97,110,32,105,110,115,101,114,116,32,104,111,111,107,92,110,32,32,32,32,109,101,114,103,101,86,78,111,100,101,72,111,111,107,40,118,110,111,100,101,44,32,39,105,110,115,101,114,116,39,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,101,108,46,112,97,114,101,110,116,78,111,100,101,59,92,110,32,32,32,32,32,32,118,97,114,32,112,101,110,100,105,110,103,78,111,100,101,32,61,32,112,97,114,101,110,116,32,38,38,32,112,97,114,101,110,116,46,95,112,101,110,100,105,110,103,32,38,38,32,112,97,114,101,110,116,46,95,112,101,110,100,105,110,103,91,118,110,111,100,101,46,107,101,121,93,59,92,110,32,32,32,32,32,32,105,102,32,40,112,101,110,100,105,110,103,78,111,100,101,32,38,38,92,110,32,32,32,32,32,32,32,32,112,101,110,100,105,110,103,78,111,100,101,46,116,97,103,32,61,61,61,32,118,110,111,100,101,46,116,97,103,32,38,38,92,110,32,32,32,32,32,32,32,32,112,101,110,100,105,110,103,78,111,100,101,46,101,108,109,46,95,108,101,97,118,101,67,98,92,110,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,112,101,110,100,105,110,103,78,111,100,101,46,101,108,109,46,95,108,101,97,118,101,67,98,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,101,110,116,101,114,72,111,111,107,32,38,38,32,101,110,116,101,114,72,111,111,107,40,101,108,44,32,99,98,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,115,116,97,114,116,32,101,110,116,101,114,32,116,114,97,110,115,105,116,105,111,110,92,110,32,32,98,101,102,111,114,101,69,110,116,101,114,72,111,111,107,32,38,38,32,98,101,102,111,114,101,69,110,116,101,114,72,111,111,107,40,101,108,41,59,92,110,32,32,105,102,32,40,101,120,112,101,99,116,115,67,83,83,41,32,123,92,110,32,32,32,32,97,100,100,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,115,116,97,114,116,67,108,97,115,115,41,59,92,110,32,32,32,32,97,100,100,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,97,99,116,105,118,101,67,108,97,115,115,41,59,92,110,32,32,32,32,110,101,120,116,70,114,97,109,101,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,114,101,109,111,118,101,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,115,116,97,114,116,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,105,102,32,40,33,99,98,46,99,97,110,99,101,108,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,97,100,100,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,116,111,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,117,115,101,114,87,97,110,116,115,67,111,110,116,114,111,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,86,97,108,105,100,68,117,114,97,116,105,111,110,40,101,120,112,108,105,99,105,116,69,110,116,101,114,68,117,114,97,116,105,111,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,99,98,44,32,101,120,112,108,105,99,105,116,69,110,116,101,114,68,117,114,97,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,104,101,110,84,114,97,110,115,105,116,105,111,110,69,110,100,115,40,101,108,44,32,116,121,112,101,44,32,99,98,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,118,110,111,100,101,46,100,97,116,97,46,115,104,111,119,41,32,123,92,110,32,32,32,32,116,111,103,103,108,101,68,105,115,112,108,97,121,32,38,38,32,116,111,103,103,108,101,68,105,115,112,108,97,121,40,41,59,92,110,32,32,32,32,101,110,116,101,114,72,111,111,107,32,38,38,32,101,110,116,101,114,72,111,111,107,40,101,108,44,32,99,98,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,101,120,112,101,99,116,115,67,83,83,32,38,38,32,33,117,115,101,114,87,97,110,116,115,67,111,110,116,114,111,108,41,32,123,92,110,32,32,32,32,99,98,40,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,108,101,97,118,101,32,40,118,110,111,100,101,44,32,114,109,41,32,123,92,110,32,32,118,97,114,32,101,108,32,61,32,118,110,111,100,101,46,101,108,109,59,92,110,92,110,32,32,47,47,32,99,97,108,108,32,101,110,116,101,114,32,99,97,108,108,98,97,99,107,32,110,111,119,92,110,32,32,105,102,32,40,105,115,68,101,102,40,101,108,46,95,101,110,116,101,114,67,98,41,41,32,123,92,110,32,32,32,32,101,108,46,95,101,110,116,101,114,67,98,46,99,97,110,99,101,108,108,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,101,108,46,95,101,110,116,101,114,67,98,40,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,100,97,116,97,32,61,32,114,101,115,111,108,118,101,84,114,97,110,115,105,116,105,111,110,40,118,110,111,100,101,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,41,59,92,110,32,32,105,102,32,40,105,115,85,110,100,101,102,40,100,97,116,97,41,32,124,124,32,101,108,46,110,111,100,101,84,121,112,101,32,33,61,61,32,49,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,109,40,41,92,110,32,32,125,92,110,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,105,115,68,101,102,40,101,108,46,95,108,101,97,118,101,67,98,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,115,115,32,61,32,100,97,116,97,46,99,115,115,59,92,110,32,32,118,97,114,32,116,121,112,101,32,61,32,100,97,116,97,46,116,121,112,101,59,92,110,32,32,118,97,114,32,108,101,97,118,101,67,108,97,115,115,32,61,32,100,97,116,97,46,108,101,97,118,101,67,108,97,115,115,59,92,110,32,32,118,97,114,32,108,101,97,118,101,84,111,67,108,97,115,115,32,61,32,100,97,116,97,46,108,101,97,118,101,84,111,67,108,97,115,115,59,92,110,32,32,118,97,114,32,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,32,61,32,100,97,116,97,46,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,59,92,110,32,32,118,97,114,32,98,101,102,111,114,101,76,101,97,118,101,32,61,32,100,97,116,97,46,98,101,102,111,114,101,76,101,97,118,101,59,92,110,32,32,118,97,114,32,108,101,97,118,101,32,61,32,100,97,116,97,46,108,101,97,118,101,59,92,110,32,32,118,97,114,32,97,102,116,101,114,76,101,97,118,101,32,61,32,100,97,116,97,46,97,102,116,101,114,76,101,97,118,101,59,92,110,32,32,118,97,114,32,108,101,97,118,101,67,97,110,99,101,108,108,101,100,32,61,32,100,97,116,97,46,108,101,97,118,101,67,97,110,99,101,108,108,101,100,59,92,110,32,32,118,97,114,32,100,101,108,97,121,76,101,97,118,101,32,61,32,100,97,116,97,46,100,101,108,97,121,76,101,97,118,101,59,92,110,32,32,118,97,114,32,100,117,114,97,116,105,111,110,32,61,32,100,97,116,97,46,100,117,114,97,116,105,111,110,59,92,110,92,110,32,32,118,97,114,32,101,120,112,101,99,116,115,67,83,83,32,61,32,99,115,115,32,33,61,61,32,102,97,108,115,101,32,38,38,32,33,105,115,73,69,57,59,92,110,32,32,118,97,114,32,117,115,101,114,87,97,110,116,115,67,111,110,116,114,111,108,32,61,32,103,101,116,72,111,111,107,65,114,103,117,109,101,110,116,115,76,101,110,103,116,104,40,108,101,97,118,101,41,59,92,110,92,110,32,32,118,97,114,32,101,120,112,108,105,99,105,116,76,101,97,118,101,68,117,114,97,116,105,111,110,32,61,32,116,111,78,117,109,98,101,114,40,92,110,32,32,32,32,105,115,79,98,106,101,99,116,40,100,117,114,97,116,105,111,110,41,92,110,32,32,32,32,32,32,63,32,100,117,114,97,116,105,111,110,46,108,101,97,118,101,92,110,32,32,32,32,32,32,58,32,100,117,114,97,116,105,111,110,92,110,32,32,41,59,92,110,92,110,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,105,115,68,101,102,40,101,120,112,108,105,99,105,116,76,101,97,118,101,68,117,114,97,116,105,111,110,41,41,32,123,92,110,32,32,32,32,99,104,101,99,107,68,117,114,97,116,105,111,110,40,101,120,112,108,105,99,105,116,76,101,97,118,101,68,117,114,97,116,105,111,110,44,32,39,108,101,97,118,101,39,44,32,118,110,111,100,101,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,98,32,61,32,101,108,46,95,108,101,97,118,101,67,98,32,61,32,111,110,99,101,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,101,108,46,112,97,114,101,110,116,78,111,100,101,32,38,38,32,101,108,46,112,97,114,101,110,116,78,111,100,101,46,95,112,101,110,100,105,110,103,41,32,123,92,110,32,32,32,32,32,32,101,108,46,112,97,114,101,110,116,78,111,100,101,46,95,112,101,110,100,105,110,103,91,118,110,111,100,101,46,107,101,121,93,32,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,101,120,112,101,99,116,115,67,83,83,41,32,123,92,110,32,32,32,32,32,32,114,101,109,111,118,101,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,108,101,97,118,101,84,111,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,114,101,109,111,118,101,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,99,98,46,99,97,110,99,101,108,108,101,100,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,101,120,112,101,99,116,115,67,83,83,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,108,101,97,118,101,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,108,101,97,118,101,67,97,110,99,101,108,108,101,100,32,38,38,32,108,101,97,118,101,67,97,110,99,101,108,108,101,100,40,101,108,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,109,40,41,59,92,110,32,32,32,32,32,32,97,102,116,101,114,76,101,97,118,101,32,38,38,32,97,102,116,101,114,76,101,97,118,101,40,101,108,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,101,108,46,95,108,101,97,118,101,67,98,32,61,32,110,117,108,108,59,92,110,32,32,125,41,59,92,110,92,110,32,32,105,102,32,40,100,101,108,97,121,76,101,97,118,101,41,32,123,92,110,32,32,32,32,100,101,108,97,121,76,101,97,118,101,40,112,101,114,102,111,114,109,76,101,97,118,101,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,112,101,114,102,111,114,109,76,101,97,118,101,40,41,59,92,110,32,32,125,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,112,101,114,102,111,114,109,76,101,97,118,101,32,40,41,32,123,92,110,32,32,32,32,47,47,32,116,104,101,32,100,101,108,97,121,101,100,32,108,101,97,118,101,32,109,97,121,32,104,97,118,101,32,97,108,114,101,97,100,121,32,98,101,101,110,32,99,97,110,99,101,108,108,101,100,92,110,32,32,32,32,105,102,32,40,99,98,46,99,97,110,99,101,108,108,101,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,114,101,99,111,114,100,32,108,101,97,118,105,110,103,32,101,108,101,109,101,110,116,92,110,32,32,32,32,105,102,32,40,33,118,110,111,100,101,46,100,97,116,97,46,115,104,111,119,32,38,38,32,101,108,46,112,97,114,101,110,116,78,111,100,101,41,32,123,92,110,32,32,32,32,32,32,40,101,108,46,112,97,114,101,110,116,78,111,100,101,46,95,112,101,110,100,105,110,103,32,124,124,32,40,101,108,46,112,97,114,101,110,116,78,111,100,101,46,95,112,101,110,100,105,110,103,32,61,32,123,125,41,41,91,40,118,110,111,100,101,46,107,101,121,41,93,32,61,32,118,110,111,100,101,59,92,110,32,32,32,32,125,92,110,32,32,32,32,98,101,102,111,114,101,76,101,97,118,101,32,38,38,32,98,101,102,111,114,101,76,101,97,118,101,40,101,108,41,59,92,110,32,32,32,32,105,102,32,40,101,120,112,101,99,116,115,67,83,83,41,32,123,92,110,32,32,32,32,32,32,97,100,100,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,108,101,97,118,101,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,97,100,100,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,110,101,120,116,70,114,97,109,101,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,109,111,118,101,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,108,101,97,118,101,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,99,98,46,99,97,110,99,101,108,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,100,100,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,108,101,97,118,101,84,111,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,117,115,101,114,87,97,110,116,115,67,111,110,116,114,111,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,105,115,86,97,108,105,100,68,117,114,97,116,105,111,110,40,101,120,112,108,105,99,105,116,76,101,97,118,101,68,117,114,97,116,105,111,110,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,99,98,44,32,101,120,112,108,105,99,105,116,76,101,97,118,101,68,117,114,97,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,104,101,110,84,114,97,110,115,105,116,105,111,110,69,110,100,115,40,101,108,44,32,116,121,112,101,44,32,99,98,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,108,101,97,118,101,32,38,38,32,108,101,97,118,101,40,101,108,44,32,99,98,41,59,92,110,32,32,32,32,105,102,32,40,33,101,120,112,101,99,116,115,67,83,83,32,38,38,32,33,117,115,101,114,87,97,110,116,115,67,111,110,116,114,111,108,41,32,123,92,110,32,32,32,32,32,32,99,98,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,47,47,32,111,110,108,121,32,117,115,101,100,32,105,110,32,100,101,118,32,109,111,100,101,92,110,102,117,110,99,116,105,111,110,32,99,104,101,99,107,68,117,114,97,116,105,111,110,32,40,118,97,108,44,32,110,97,109,101,44,32,118,110,111,100,101,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,32,33,61,61,32,39,110,117,109,98,101,114,39,41,32,123,92,110,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,92,34,60,116,114,97,110,115,105,116,105,111,110,62,32,101,120,112,108,105,99,105,116,32,92,34,32,43,32,110,97,109,101,32,43,32,92,34,32,100,117,114,97,116,105,111,110,32,105,115,32,110,111,116,32,97,32,118,97,108,105,100,32,110,117,109,98,101,114,32,45,32,92,34,32,43,92,110,32,32,32,32,32,32,92,34,103,111,116,32,92,34,32,43,32,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,118,97,108,41,41,32,43,32,92,34,46,92,34,44,92,110,32,32,32,32,32,32,118,110,111,100,101,46,99,111,110,116,101,120,116,92,110,32,32,32,32,41,59,92,110,32,32,125,32,101,108,115,101,32,105,102,32,40,105,115,78,97,78,40,118,97,108,41,41,32,123,92,110,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,92,34,60,116,114,97,110,115,105,116,105,111,110,62,32,101,120,112,108,105,99,105,116,32,92,34,32,43,32,110,97,109,101,32,43,32,92,34,32,100,117,114,97,116,105,111,110,32,105,115,32,78,97,78,32,45,32,92,34,32,43,92,110,32,32,32,32,32,32,39,116,104,101,32,100,117,114,97,116,105,111,110,32,101,120,112,114,101,115,115,105,111,110,32,109,105,103,104,116,32,98,101,32,105,110,99,111,114,114,101,99,116,46,39,44,92,110,32,32,32,32,32,32,118,110,111,100,101,46,99,111,110,116,101,120,116,92,110,32,32,32,32,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,86,97,108,105,100,68,117,114,97,116,105,111,110,32,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,110,117,109,98,101,114,39,32,38,38,32,33,105,115,78,97,78,40,118,97,108,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,78,111,114,109,97,108,105,122,101,32,97,32,116,114,97,110,115,105,116,105,111,110,32,104,111,111,107,39,115,32,97,114,103,117,109,101,110,116,32,108,101,110,103,116,104,46,32,84,104,101,32,104,111,111,107,32,109,97,121,32,98,101,58,92,110,32,42,32,45,32,97,32,109,101,114,103,101,100,32,104,111,111,107,32,40,105,110,118,111,107,101,114,41,32,119,105,116,104,32,116,104,101,32,111,114,105,103,105,110,97,108,32,105,110,32,46,102,110,115,92,110,32,42,32,45,32,97,32,119,114,97,112,112,101,100,32,99,111,109,112,111,110,101,110,116,32,109,101,116,104,111,100,32,40,99,104,101,99,107,32,46,95,108,101,110,103,116,104,41,92,110,32,42,32,45,32,97,32,112,108,97,105,110,32,102,117,110,99,116,105,111,110,32,40,46,108,101,110,103,116,104,41,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,72,111,111,107,65,114,103,117,109,101,110,116,115,76,101,110,103,116,104,32,40,102,110,41,32,123,92,110,32,32,105,102,32,40,105,115,85,110,100,101,102,40,102,110,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,125,92,110,32,32,118,97,114,32,105,110,118,111,107,101,114,70,110,115,32,61,32,102,110,46,102,110,115,59,92,110,32,32,105,102,32,40,105,115,68,101,102,40,105,110,118,111,107,101,114,70,110,115,41,41,32,123,92,110,32,32,32,32,47,47,32,105,110,118,111,107,101,114,92,110,32,32,32,32,114,101,116,117,114,110,32,103,101,116,72,111,111,107,65,114,103,117,109,101,110,116,115,76,101,110,103,116,104,40,92,110,32,32,32,32,32,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,105,110,118,111,107,101,114,70,110,115,41,92,110,32,32,32,32,32,32,32,32,63,32,105,110,118,111,107,101,114,70,110,115,91,48,93,92,110,32,32,32,32,32,32,32,32,58,32,105,110,118,111,107,101,114,70,110,115,92,110,32,32,32,32,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,102,110,46,95,108,101,110,103,116,104,32,124,124,32,102,110,46,108,101,110,103,116,104,41,32,62,32,49,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,95,101,110,116,101,114,32,40,95,44,32,118,110,111,100,101,41,32,123,92,110,32,32,105,102,32,40,118,110,111,100,101,46,100,97,116,97,46,115,104,111,119,32,33,61,61,32,116,114,117,101,41,32,123,92,110,32,32,32,32,101,110,116,101,114,40,118,110,111,100,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,116,114,97,110,115,105,116,105,111,110,32,61,32,105,110,66,114,111,119,115,101,114,32,63,32,123,92,110,32,32,99,114,101,97,116,101,58,32,95,101,110,116,101,114,44,92,110,32,32,97,99,116,105,118,97,116,101,58,32,95,101,110,116,101,114,44,92,110,32,32,114,101,109,111,118,101,58,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,36,36,49,32,40,118,110,111,100,101,44,32,114,109,41,32,123,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,101,108,115,101,32,42,47,92,110,32,32,32,32,105,102,32,40,118,110,111,100,101,46,100,97,116,97,46,115,104,111,119,32,33,61,61,32,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,108,101,97,118,101,40,118,110,111,100,101,44,32,114,109,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,109,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,32,58,32,123,125,59,92,110,92,110,118,97,114,32,112,108,97,116,102,111,114,109,77,111,100,117,108,101,115,32,61,32,91,92,110,32,32,97,116,116,114,115,44,92,110,32,32,107,108,97,115,115,44,92,110,32,32,101,118,101,110,116,115,44,92,110,32,32,100,111,109,80,114,111,112,115,44,92,110,32,32,115,116,121,108,101,44,92,110,32,32,116,114,97,110,115,105,116,105,111,110,92,110,93,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,47,32,116,104,101,32,100,105,114,101,99,116,105,118,101,32,109,111,100,117,108,101,32,115,104,111,117,108,100,32,98,101,32,97,112,112,108,105,101,100,32,108,97,115,116,44,32,97,102,116,101,114,32,97,108,108,92,110,47,47,32,98,117,105,108,116,45,105,110,32,109,111,100,117,108,101,115,32,104,97,118,101,32,98,101,101,110,32,97,112,112,108,105,101,100,46,92,110,118,97,114,32,109,111,100,117,108,101,115,32,61,32,112,108,97,116,102,111,114,109,77,111,100,117,108,101,115,46,99,111,110,99,97,116,40,98,97,115,101,77,111,100,117,108,101,115,41,59,92,110,92,110,118,97,114,32,112,97,116,99,104,32,61,32,99,114,101,97,116,101,80,97,116,99,104,70,117,110,99,116,105,111,110,40,123,32,110,111,100,101,79,112,115,58,32,110,111,100,101,79,112,115,44,32,109,111,100,117,108,101,115,58,32,109,111,100,117,108,101,115,32,125,41,59,92,110,92,110,47,42,42,92,110,32,42,32,78,111,116,32,116,121,112,101,32,99,104,101,99,107,105,110,103,32,116,104,105,115,32,102,105,108,101,32,98,101,99,97,117,115,101,32,102,108,111,119,32,100,111,101,115,110,39,116,32,108,105,107,101,32,97,116,116,97,99,104,105,110,103,92,110,32,42,32,112,114,111,112,101,114,116,105,101,115,32,116,111,32,69,108,101,109,101,110,116,115,46,92,110,32,42,47,92,110,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,105,102,32,40,105,115,73,69,57,41,32,123,92,110,32,32,47,47,32,104,116,116,112,58,47,47,119,119,119,46,109,97,116,116,115,52,49,49,46,99,111,109,47,112,111,115,116,47,105,110,116,101,114,110,101,116,45,101,120,112,108,111,114,101,114,45,57,45,111,110,105,110,112,117,116,47,92,110,32,32,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,39,115,101,108,101,99,116,105,111,110,99,104,97,110,103,101,39,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,101,108,32,61,32,100,111,99,117,109,101,110,116,46,97,99,116,105,118,101,69,108,101,109,101,110,116,59,92,110,32,32,32,32,105,102,32,40,101,108,32,38,38,32,101,108,46,118,109,111,100,101,108,41,32,123,92,110,32,32,32,32,32,32,116,114,105,103,103,101,114,40,101,108,44,32,39,105,110,112,117,116,39,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,92,110,92,110,118,97,114,32,100,105,114,101,99,116,105,118,101,32,61,32,123,92,110,32,32,105,110,115,101,114,116,101,100,58,32,102,117,110,99,116,105,111,110,32,105,110,115,101,114,116,101,100,32,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,44,32,111,108,100,86,110,111,100,101,41,32,123,92,110,32,32,32,32,105,102,32,40,118,110,111,100,101,46,116,97,103,32,61,61,61,32,39,115,101,108,101,99,116,39,41,32,123,92,110,32,32,32,32,32,32,47,47,32,35,54,57,48,51,92,110,32,32,32,32,32,32,105,102,32,40,111,108,100,86,110,111,100,101,46,101,108,109,32,38,38,32,33,111,108,100,86,110,111,100,101,46,101,108,109,46,95,118,79,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,32,32,109,101,114,103,101,86,78,111,100,101,72,111,111,107,40,118,110,111,100,101,44,32,39,112,111,115,116,112,97,116,99,104,39,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,46,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,115,101,116,83,101,108,101,99,116,101,100,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,46,99,111,110,116,101,120,116,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,101,108,46,95,118,79,112,116,105,111,110,115,32,61,32,91,93,46,109,97,112,46,99,97,108,108,40,101,108,46,111,112,116,105,111,110,115,44,32,103,101,116,86,97,108,117,101,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,118,110,111,100,101,46,116,97,103,32,61,61,61,32,39,116,101,120,116,97,114,101,97,39,32,124,124,32,105,115,84,101,120,116,73,110,112,117,116,84,121,112,101,40,101,108,46,116,121,112,101,41,41,32,123,92,110,32,32,32,32,32,32,101,108,46,95,118,77,111,100,105,102,105,101,114,115,32,61,32,98,105,110,100,105,110,103,46,109,111,100,105,102,105,101,114,115,59,92,110,32,32,32,32,32,32,105,102,32,40,33,98,105,110,100,105,110,103,46,109,111,100,105,102,105,101,114,115,46,108,97,122,121,41,32,123,92,110,32,32,32,32,32,32,32,32,101,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,99,111,109,112,111,115,105,116,105,111,110,115,116,97,114,116,39,44,32,111,110,67,111,109,112,111,115,105,116,105,111,110,83,116,97,114,116,41,59,92,110,32,32,32,32,32,32,32,32,101,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,99,111,109,112,111,115,105,116,105,111,110,101,110,100,39,44,32,111,110,67,111,109,112,111,115,105,116,105,111,110,69,110,100,41,59,92,110,32,32,32,32,32,32,32,32,47,47,32,83,97,102,97,114,105,32,60,32,49,48,46,50,32,38,32,85,73,87,101,98,86,105,101,119,32,100,111,101,115,110,39,116,32,102,105,114,101,32,99,111,109,112,111,115,105,116,105,111,110,101,110,100,32,119,104,101,110,92,110,32,32,32,32,32,32,32,32,47,47,32,115,119,105,116,99,104,105,110,103,32,102,111,99,117,115,32,98,101,102,111,114,101,32,99,111,110,102,105,114,109,105,110,103,32,99,111,109,112,111,115,105,116,105,111,110,32,99,104,111,105,99,101,92,110,32,32,32,32,32,32,32,32,47,47,32,116,104,105,115,32,97,108,115,111,32,102,105,120,101,115,32,116,104,101,32,105,115,115,117,101,32,119,104,101,114,101,32,115,111,109,101,32,98,114,111,119,115,101,114,115,32,101,46,103,46,32,105,79,83,32,67,104,114,111,109,101,92,110,32,32,32,32,32,32,32,32,47,47,32,102,105,114,101,115,32,92,34,99,104,97,110,103,101,92,34,32,105,110,115,116,101,97,100,32,111,102,32,92,34,105,110,112,117,116,92,34,32,111,110,32,97,117,116,111,99,111,109,112,108,101,116,101,46,92,110,32,32,32,32,32,32,32,32,101,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,99,104,97,110,103,101,39,44,32,111,110,67,111,109,112,111,115,105,116,105,111,110,69,110,100,41,59,92,110,32,32,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,73,69,57,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,108,46,118,109,111,100,101,108,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,92,110,32,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,32,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,105,102,32,40,118,110,111,100,101,46,116,97,103,32,61,61,61,32,39,115,101,108,101,99,116,39,41,32,123,92,110,32,32,32,32,32,32,115,101,116,83,101,108,101,99,116,101,100,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,110,111,100,101,46,99,111,110,116,101,120,116,41,59,92,110,32,32,32,32,32,32,47,47,32,105,110,32,99,97,115,101,32,116,104,101,32,111,112,116,105,111,110,115,32,114,101,110,100,101,114,101,100,32,98,121,32,118,45,102,111,114,32,104,97,118,101,32,99,104,97,110,103,101,100,44,92,110,32,32,32,32,32,32,47,47,32,105,116,39,115,32,112,111,115,115,105,98,108,101,32,116,104,97,116,32,116,104,101,32,118,97,108,117,101,32,105,115,32,111,117,116,45,111,102,45,115,121,110,99,32,119,105,116,104,32,116,104,101,32,114,101,110,100,101,114,101,100,32,111,112,116,105,111,110,115,46,92,110,32,32,32,32,32,32,47,47,32,100,101,116,101,99,116,32,115,117,99,104,32,99,97,115,101,115,32,97,110,100,32,102,105,108,116,101,114,32,111,117,116,32,118,97,108,117,101,115,32,116,104,97,116,32,110,111,32,108,111,110,103,101,114,32,104,97,115,32,97,32,109,97,116,99,104,105,110,103,92,110,32,32,32,32,32,32,47,47,32,111,112,116,105,111,110,32,105,110,32,116,104,101,32,68,79,77,46,92,110,32,32,32,32,32,32,118,97,114,32,112,114,101,118,79,112,116,105,111,110,115,32,61,32,101,108,46,95,118,79,112,116,105,111,110,115,59,92,110,32,32,32,32,32,32,118,97,114,32,99,117,114,79,112,116,105,111,110,115,32,61,32,101,108,46,95,118,79,112,116,105,111,110,115,32,61,32,91,93,46,109,97,112,46,99,97,108,108,40,101,108,46,111,112,116,105,111,110,115,44,32,103,101,116,86,97,108,117,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,99,117,114,79,112,116,105,111,110,115,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,111,44,32,105,41,32,123,32,114,101,116,117,114,110,32,33,108,111,111,115,101,69,113,117,97,108,40,111,44,32,112,114,101,118,79,112,116,105,111,110,115,91,105,93,41,59,32,125,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,116,114,105,103,103,101,114,32,99,104,97,110,103,101,32,101,118,101,110,116,32,105,102,92,110,32,32,32,32,32,32,32,32,47,47,32,110,111,32,109,97,116,99,104,105,110,103,32,111,112,116,105,111,110,32,102,111,117,110,100,32,102,111,114,32,97,116,32,108,101,97,115,116,32,111,110,101,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,101,101,100,82,101,115,101,116,32,61,32,101,108,46,109,117,108,116,105,112,108,101,92,110,32,32,32,32,32,32,32,32,32,32,63,32,98,105,110,100,105,110,103,46,118,97,108,117,101,46,115,111,109,101,40,102,117,110,99,116,105,111,110,32,40,118,41,32,123,32,114,101,116,117,114,110,32,104,97,115,78,111,77,97,116,99,104,105,110,103,79,112,116,105,111,110,40,118,44,32,99,117,114,79,112,116,105,111,110,115,41,59,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,58,32,98,105,110,100,105,110,103,46,118,97,108,117,101,32,33,61,61,32,98,105,110,100,105,110,103,46,111,108,100,86,97,108,117,101,32,38,38,32,104,97,115,78,111,77,97,116,99,104,105,110,103,79,112,116,105,111,110,40,98,105,110,100,105,110,103,46,118,97,108,117,101,44,32,99,117,114,79,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,101,101,100,82,101,115,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,114,105,103,103,101,114,40,101,108,44,32,39,99,104,97,110,103,101,39,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,115,101,116,83,101,108,101,99,116,101,100,32,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,109,41,32,123,92,110,32,32,97,99,116,117,97,108,108,121,83,101,116,83,101,108,101,99,116,101,100,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,109,41,59,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,105,115,73,69,32,124,124,32,105,115,69,100,103,101,41,32,123,92,110,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,97,99,116,117,97,108,108,121,83,101,116,83,101,108,101,99,116,101,100,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,109,41,59,92,110,32,32,32,32,125,44,32,48,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,99,116,117,97,108,108,121,83,101,116,83,101,108,101,99,116,101,100,32,40,101,108,44,32,98,105,110,100,105,110,103,44,32,118,109,41,32,123,92,110,32,32,118,97,114,32,118,97,108,117,101,32,61,32,98,105,110,100,105,110,103,46,118,97,108,117,101,59,92,110,32,32,118,97,114,32,105,115,77,117,108,116,105,112,108,101,32,61,32,101,108,46,109,117,108,116,105,112,108,101,59,92,110,32,32,105,102,32,40,105,115,77,117,108,116,105,112,108,101,32,38,38,32,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,116,114,117,101,32,38,38,32,119,97,114,110,40,92,110,32,32,32,32,32,32,92,34,60,115,101,108,101,99,116,32,109,117,108,116,105,112,108,101,32,118,45,109,111,100,101,108,61,92,92,92,34,92,34,32,43,32,40,98,105,110,100,105,110,103,46,101,120,112,114,101,115,115,105,111,110,41,32,43,32,92,34,92,92,92,34,62,32,92,34,32,43,92,110,32,32,32,32,32,32,92,34,101,120,112,101,99,116,115,32,97,110,32,65,114,114,97,121,32,118,97,108,117,101,32,102,111,114,32,105,116,115,32,98,105,110,100,105,110,103,44,32,98,117,116,32,103,111,116,32,92,34,32,43,32,40,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,118,97,108,117,101,41,46,115,108,105,99,101,40,56,44,32,45,49,41,41,44,92,110,32,32,32,32,32,32,118,109,92,110,32,32,32,32,41,59,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,118,97,114,32,115,101,108,101,99,116,101,100,44,32,111,112,116,105,111,110,59,92,110,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,44,32,108,32,61,32,101,108,46,111,112,116,105,111,110,115,46,108,101,110,103,116,104,59,32,105,32,60,32,108,59,32,105,43,43,41,32,123,92,110,32,32,32,32,111,112,116,105,111,110,32,61,32,101,108,46,111,112,116,105,111,110,115,91,105,93,59,92,110,32,32,32,32,105,102,32,40,105,115,77,117,108,116,105,112,108,101,41,32,123,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,32,61,32,108,111,111,115,101,73,110,100,101,120,79,102,40,118,97,108,117,101,44,32,103,101,116,86,97,108,117,101,40,111,112,116,105,111,110,41,41,32,62,32,45,49,59,92,110,32,32,32,32,32,32,105,102,32,40,111,112,116,105,111,110,46,115,101,108,101,99,116,101,100,32,33,61,61,32,115,101,108,101,99,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,111,112,116,105,111,110,46,115,101,108,101,99,116,101,100,32,61,32,115,101,108,101,99,116,101,100,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,105,102,32,40,108,111,111,115,101,69,113,117,97,108,40,103,101,116,86,97,108,117,101,40,111,112,116,105,111,110,41,44,32,118,97,108,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,108,46,115,101,108,101,99,116,101,100,73,110,100,101,120,32,33,61,61,32,105,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,108,46,115,101,108,101,99,116,101,100,73,110,100,101,120,32,61,32,105,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,105,102,32,40,33,105,115,77,117,108,116,105,112,108,101,41,32,123,92,110,32,32,32,32,101,108,46,115,101,108,101,99,116,101,100,73,110,100,101,120,32,61,32,45,49,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,97,115,78,111,77,97,116,99,104,105,110,103,79,112,116,105,111,110,32,40,118,97,108,117,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,111,112,116,105,111,110,115,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,32,40,111,41,32,123,32,114,101,116,117,114,110,32,33,108,111,111,115,101,69,113,117,97,108,40,111,44,32,118,97,108,117,101,41,59,32,125,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,86,97,108,117,101,32,40,111,112,116,105,111,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,39,95,118,97,108,117,101,39,32,105,110,32,111,112,116,105,111,110,92,110,32,32,32,32,63,32,111,112,116,105,111,110,46,95,118,97,108,117,101,92,110,32,32,32,32,58,32,111,112,116,105,111,110,46,118,97,108,117,101,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,111,110,67,111,109,112,111,115,105,116,105,111,110,83,116,97,114,116,32,40,101,41,32,123,92,110,32,32,101,46,116,97,114,103,101,116,46,99,111,109,112,111,115,105,110,103,32,61,32,116,114,117,101,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,111,110,67,111,109,112,111,115,105,116,105,111,110,69,110,100,32,40,101,41,32,123,92,110,32,32,47,47,32,112,114,101,118,101,110,116,32,116,114,105,103,103,101,114,105,110,103,32,97,110,32,105,110,112,117,116,32,101,118,101,110,116,32,102,111,114,32,110,111,32,114,101,97,115,111,110,92,110,32,32,105,102,32,40,33,101,46,116,97,114,103,101,116,46,99,111,109,112,111,115,105,110,103,41,32,123,32,114,101,116,117,114,110,32,125,92,110,32,32,101,46,116,97,114,103,101,116,46,99,111,109,112,111,115,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,116,114,105,103,103,101,114,40,101,46,116,97,114,103,101,116,44,32,39,105,110,112,117,116,39,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,116,114,105,103,103,101,114,32,40,101,108,44,32,116,121,112,101,41,32,123,92,110,32,32,118,97,114,32,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,118,101,110,116,40,39,72,84,77,76,69,118,101,110,116,115,39,41,59,92,110,32,32,101,46,105,110,105,116,69,118,101,110,116,40,116,121,112,101,44,32,116,114,117,101,44,32,116,114,117,101,41,59,92,110,32,32,101,108,46,100,105,115,112,97,116,99,104,69,118,101,110,116,40,101,41,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,47,32,114,101,99,117,114,115,105,118,101,108,121,32,115,101,97,114,99,104,32,102,111,114,32,112,111,115,115,105,98,108,101,32,116,114,97,110,115,105,116,105,111,110,32,100,101,102,105,110,101,100,32,105,110,115,105,100,101,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,114,111,111,116,92,110,102,117,110,99,116,105,111,110,32,108,111,99,97,116,101,78,111,100,101,32,40,118,110,111,100,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,32,38,38,32,40,33,118,110,111,100,101,46,100,97,116,97,32,124,124,32,33,118,110,111,100,101,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,41,92,110,32,32,32,32,63,32,108,111,99,97,116,101,78,111,100,101,40,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,118,110,111,100,101,41,92,110,32,32,32,32,58,32,118,110,111,100,101,92,110,125,92,110,92,110,118,97,114,32,115,104,111,119,32,61,32,123,92,110,32,32,98,105,110,100,58,32,102,117,110,99,116,105,111,110,32,98,105,110,100,32,40,101,108,44,32,114,101,102,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,114,101,102,46,118,97,108,117,101,59,92,110,92,110,32,32,32,32,118,110,111,100,101,32,61,32,108,111,99,97,116,101,78,111,100,101,40,118,110,111,100,101,41,59,92,110,32,32,32,32,118,97,114,32,116,114,97,110,115,105,116,105,111,110,36,36,49,32,61,32,118,110,111,100,101,46,100,97,116,97,32,38,38,32,118,110,111,100,101,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,59,92,110,32,32,32,32,118,97,114,32,111,114,105,103,105,110,97,108,68,105,115,112,108,97,121,32,61,32,101,108,46,95,95,118,79,114,105,103,105,110,97,108,68,105,115,112,108,97,121,32,61,92,110,32,32,32,32,32,32,101,108,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,61,61,32,39,110,111,110,101,39,32,63,32,39,39,32,58,32,101,108,46,115,116,121,108,101,46,100,105,115,112,108,97,121,59,92,110,32,32,32,32,105,102,32,40,118,97,108,117,101,32,38,38,32,116,114,97,110,115,105,116,105,111,110,36,36,49,41,32,123,92,110,32,32,32,32,32,32,118,110,111,100,101,46,100,97,116,97,46,115,104,111,119,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,101,110,116,101,114,40,118,110,111,100,101,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,101,108,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,111,114,105,103,105,110,97,108,68,105,115,112,108,97,121,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,101,108,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,118,97,108,117,101,32,63,32,111,114,105,103,105,110,97,108,68,105,115,112,108,97,121,32,58,32,39,110,111,110,101,39,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,92,110,32,32,117,112,100,97,116,101,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,32,40,101,108,44,32,114,101,102,44,32,118,110,111,100,101,41,32,123,92,110,32,32,32,32,118,97,114,32,118,97,108,117,101,32,61,32,114,101,102,46,118,97,108,117,101,59,92,110,32,32,32,32,118,97,114,32,111,108,100,86,97,108,117,101,32,61,32,114,101,102,46,111,108,100,86,97,108,117,101,59,92,110,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,33,118,97,108,117,101,32,61,61,61,32,33,111,108,100,86,97,108,117,101,41,32,123,32,114,101,116,117,114,110,32,125,92,110,32,32,32,32,118,110,111,100,101,32,61,32,108,111,99,97,116,101,78,111,100,101,40,118,110,111,100,101,41,59,92,110,32,32,32,32,118,97,114,32,116,114,97,110,115,105,116,105,111,110,36,36,49,32,61,32,118,110,111,100,101,46,100,97,116,97,32,38,38,32,118,110,111,100,101,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,59,92,110,32,32,32,32,105,102,32,40,116,114,97,110,115,105,116,105,111,110,36,36,49,41,32,123,92,110,32,32,32,32,32,32,118,110,111,100,101,46,100,97,116,97,46,115,104,111,119,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,105,102,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,101,110,116,101,114,40,118,110,111,100,101,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,108,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,101,108,46,95,95,118,79,114,105,103,105,110,97,108,68,105,115,112,108,97,121,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,108,101,97,118,101,40,118,110,111,100,101,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,108,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,39,110,111,110,101,39,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,101,108,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,118,97,108,117,101,32,63,32,101,108,46,95,95,118,79,114,105,103,105,110,97,108,68,105,115,112,108,97,121,32,58,32,39,110,111,110,101,39,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,92,110,32,32,117,110,98,105,110,100,58,32,102,117,110,99,116,105,111,110,32,117,110,98,105,110,100,32,40,92,110,32,32,32,32,101,108,44,92,110,32,32,32,32,98,105,110,100,105,110,103,44,92,110,32,32,32,32,118,110,111,100,101,44,92,110,32,32,32,32,111,108,100,86,110,111,100,101,44,92,110,32,32,32,32,105,115,68,101,115,116,114,111,121,92,110,32,32,41,32,123,92,110,32,32,32,32,105,102,32,40,33,105,115,68,101,115,116,114,111,121,41,32,123,92,110,32,32,32,32,32,32,101,108,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,101,108,46,95,95,118,79,114,105,103,105,110,97,108,68,105,115,112,108,97,121,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,112,108,97,116,102,111,114,109,68,105,114,101,99,116,105,118,101,115,32,61,32,123,92,110,32,32,109,111,100,101,108,58,32,100,105,114,101,99,116,105,118,101,44,92,110,32,32,115,104,111,119,58,32,115,104,111,119,92,110,125,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,116,114,97,110,115,105,116,105,111,110,80,114,111,112,115,32,61,32,123,92,110,32,32,110,97,109,101,58,32,83,116,114,105,110,103,44,92,110,32,32,97,112,112,101,97,114,58,32,66,111,111,108,101,97,110,44,92,110,32,32,99,115,115,58,32,66,111,111,108,101,97,110,44,92,110,32,32,109,111,100,101,58,32,83,116,114,105,110,103,44,92,110,32,32,116,121,112,101,58,32,83,116,114,105,110,103,44,92,110,32,32,101,110,116,101,114,67,108,97,115,115,58,32,83,116,114,105,110,103,44,92,110,32,32,108,101,97,118,101,67,108,97,115,115,58,32,83,116,114,105,110,103,44,92,110,32,32,101,110,116,101,114,84,111,67,108,97,115,115,58,32,83,116,114,105,110,103,44,92,110,32,32,108,101,97,118,101,84,111,67,108,97,115,115,58,32,83,116,114,105,110,103,44,92,110,32,32,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,58,32,83,116,114,105,110,103,44,92,110,32,32,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,58,32,83,116,114,105,110,103,44,92,110,32,32,97,112,112,101,97,114,67,108,97,115,115,58,32,83,116,114,105,110,103,44,92,110,32,32,97,112,112,101,97,114,65,99,116,105,118,101,67,108,97,115,115,58,32,83,116,114,105,110,103,44,92,110,32,32,97,112,112,101,97,114,84,111,67,108,97,115,115,58,32,83,116,114,105,110,103,44,92,110,32,32,100,117,114,97,116,105,111,110,58,32,91,78,117,109,98,101,114,44,32,83,116,114,105,110,103,44,32,79,98,106,101,99,116,93,92,110,125,59,92,110,92,110,47,47,32,105,110,32,99,97,115,101,32,116,104,101,32,99,104,105,108,100,32,105,115,32,97,108,115,111,32,97,110,32,97,98,115,116,114,97,99,116,32,99,111,109,112,111,110,101,110,116,44,32,101,46,103,46,32,60,107,101,101,112,45,97,108,105,118,101,62,92,110,47,47,32,119,101,32,119,97,110,116,32,116,111,32,114,101,99,117,114,115,105,118,101,108,121,32,114,101,116,114,105,101,118,101,32,116,104,101,32,114,101,97,108,32,99,111,109,112,111,110,101,110,116,32,116,111,32,98,101,32,114,101,110,100,101,114,101,100,92,110,102,117,110,99,116,105,111,110,32,103,101,116,82,101,97,108,67,104,105,108,100,32,40,118,110,111,100,101,41,32,123,92,110,32,32,118,97,114,32,99,111,109,112,79,112,116,105,111,110,115,32,61,32,118,110,111,100,101,32,38,38,32,118,110,111,100,101,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,59,92,110,32,32,105,102,32,40,99,111,109,112,79,112,116,105,111,110,115,32,38,38,32,99,111,109,112,79,112,116,105,111,110,115,46,67,116,111,114,46,111,112,116,105,111,110,115,46,97,98,115,116,114,97,99,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,103,101,116,82,101,97,108,67,104,105,108,100,40,103,101,116,70,105,114,115,116,67,111,109,112,111,110,101,110,116,67,104,105,108,100,40,99,111,109,112,79,112,116,105,111,110,115,46,99,104,105,108,100,114,101,110,41,41,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,118,110,111,100,101,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,120,116,114,97,99,116,84,114,97,110,115,105,116,105,111,110,68,97,116,97,32,40,99,111,109,112,41,32,123,92,110,32,32,118,97,114,32,100,97,116,97,32,61,32,123,125,59,92,110,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,99,111,109,112,46,36,111,112,116,105,111,110,115,59,92,110,32,32,47,47,32,112,114,111,112,115,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,111,112,116,105,111,110,115,46,112,114,111,112,115,68,97,116,97,41,32,123,92,110,32,32,32,32,100,97,116,97,91,107,101,121,93,32,61,32,99,111,109,112,91,107,101,121,93,59,92,110,32,32,125,92,110,32,32,47,47,32,101,118,101,110,116,115,46,92,110,32,32,47,47,32,101,120,116,114,97,99,116,32,108,105,115,116,101,110,101,114,115,32,97,110,100,32,112,97,115,115,32,116,104,101,109,32,100,105,114,101,99,116,108,121,32,116,111,32,116,104,101,32,116,114,97,110,115,105,116,105,111,110,32,109,101,116,104,111,100,115,92,110,32,32,118,97,114,32,108,105,115,116,101,110,101,114,115,32,61,32,111,112,116,105,111,110,115,46,95,112,97,114,101,110,116,76,105,115,116,101,110,101,114,115,59,92,110,32,32,102,111,114,32,40,118,97,114,32,107,101,121,36,49,32,105,110,32,108,105,115,116,101,110,101,114,115,41,32,123,92,110,32,32,32,32,100,97,116,97,91,99,97,109,101,108,105,122,101,40,107,101,121,36,49,41,93,32,61,32,108,105,115,116,101,110,101,114,115,91,107,101,121,36,49,93,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,100,97,116,97,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,108,97,99,101,104,111,108,100,101,114,32,40,104,44,32,114,97,119,67,104,105,108,100,41,32,123,92,110,32,32,105,102,32,40,47,92,92,100,45,107,101,101,112,45,97,108,105,118,101,36,47,46,116,101,115,116,40,114,97,119,67,104,105,108,100,46,116,97,103,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,39,107,101,101,112,45,97,108,105,118,101,39,44,32,123,92,110,32,32,32,32,32,32,112,114,111,112,115,58,32,114,97,119,67,104,105,108,100,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,112,114,111,112,115,68,97,116,97,92,110,32,32,32,32,125,41,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,104,97,115,80,97,114,101,110,116,84,114,97,110,115,105,116,105,111,110,32,40,118,110,111,100,101,41,32,123,92,110,32,32,119,104,105,108,101,32,40,40,118,110,111,100,101,32,61,32,118,110,111,100,101,46,112,97,114,101,110,116,41,41,32,123,92,110,32,32,32,32,105,102,32,40,118,110,111,100,101,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,83,97,109,101,67,104,105,108,100,32,40,99,104,105,108,100,44,32,111,108,100,67,104,105,108,100,41,32,123,92,110,32,32,114,101,116,117,114,110,32,111,108,100,67,104,105,108,100,46,107,101,121,32,61,61,61,32,99,104,105,108,100,46,107,101,121,32,38,38,32,111,108,100,67,104,105,108,100,46,116,97,103,32,61,61,61,32,99,104,105,108,100,46,116,97,103,92,110,125,92,110,92,110,118,97,114,32,105,115,78,111,116,84,101,120,116,78,111,100,101,32,61,32,102,117,110,99,116,105,111,110,32,40,99,41,32,123,32,114,101,116,117,114,110,32,99,46,116,97,103,32,124,124,32,105,115,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,40,99,41,59,32,125,59,92,110,92,110,118,97,114,32,105,115,86,83,104,111,119,68,105,114,101,99,116,105,118,101,32,61,32,102,117,110,99,116,105,111,110,32,40,100,41,32,123,32,114,101,116,117,114,110,32,100,46,110,97,109,101,32,61,61,61,32,39,115,104,111,119,39,59,32,125,59,92,110,92,110,118,97,114,32,84,114,97,110,115,105,116,105,111,110,32,61,32,123,92,110,32,32,110,97,109,101,58,32,39,116,114,97,110,115,105,116,105,111,110,39,44,92,110,32,32,112,114,111,112,115,58,32,116,114,97,110,115,105,116,105,111,110,80,114,111,112,115,44,92,110,32,32,97,98,115,116,114,97,99,116,58,32,116,114,117,101,44,92,110,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,32,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,59,92,110,32,32,32,32,105,102,32,40,33,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,102,105,108,116,101,114,32,111,117,116,32,116,101,120,116,32,110,111,100,101,115,32,40,112,111,115,115,105,98,108,101,32,119,104,105,116,101,115,112,97,99,101,115,41,92,110,32,32,32,32,99,104,105,108,100,114,101,110,32,61,32,99,104,105,108,100,114,101,110,46,102,105,108,116,101,114,40,105,115,78,111,116,84,101,120,116,78,111,100,101,41,59,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,33,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,119,97,114,110,32,109,117,108,116,105,112,108,101,32,101,108,101,109,101,110,116,115,92,110,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,32,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,62,32,49,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,39,60,116,114,97,110,115,105,116,105,111,110,62,32,99,97,110,32,111,110,108,121,32,98,101,32,117,115,101,100,32,111,110,32,97,32,115,105,110,103,108,101,32,101,108,101,109,101,110,116,46,32,85,115,101,32,39,32,43,92,110,32,32,32,32,32,32,32,32,39,60,116,114,97,110,115,105,116,105,111,110,45,103,114,111,117,112,62,32,102,111,114,32,108,105,115,116,115,46,39,44,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,112,97,114,101,110,116,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,109,111,100,101,32,61,32,116,104,105,115,46,109,111,100,101,59,92,110,92,110,32,32,32,32,47,47,32,119,97,114,110,32,105,110,118,97,108,105,100,32,109,111,100,101,92,110,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,92,110,32,32,32,32,32,32,109,111,100,101,32,38,38,32,109,111,100,101,32,33,61,61,32,39,105,110,45,111,117,116,39,32,38,38,32,109,111,100,101,32,33,61,61,32,39,111,117,116,45,105,110,39,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,39,105,110,118,97,108,105,100,32,60,116,114,97,110,115,105,116,105,111,110,62,32,109,111,100,101,58,32,39,32,43,32,109,111,100,101,44,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,112,97,114,101,110,116,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,118,97,114,32,114,97,119,67,104,105,108,100,32,61,32,99,104,105,108,100,114,101,110,91,48,93,59,92,110,92,110,32,32,32,32,47,47,32,105,102,32,116,104,105,115,32,105,115,32,97,32,99,111,109,112,111,110,101,110,116,32,114,111,111,116,32,110,111,100,101,32,97,110,100,32,116,104,101,32,99,111,109,112,111,110,101,110,116,39,115,92,110,32,32,32,32,47,47,32,112,97,114,101,110,116,32,99,111,110,116,97,105,110,101,114,32,110,111,100,101,32,97,108,115,111,32,104,97,115,32,116,114,97,110,115,105,116,105,111,110,44,32,115,107,105,112,46,92,110,32,32,32,32,105,102,32,40,104,97,115,80,97,114,101,110,116,84,114,97,110,115,105,116,105,111,110,40,116,104,105,115,46,36,118,110,111,100,101,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,97,119,67,104,105,108,100,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,97,112,112,108,121,32,116,114,97,110,115,105,116,105,111,110,32,100,97,116,97,32,116,111,32,99,104,105,108,100,92,110,32,32,32,32,47,47,32,117,115,101,32,103,101,116,82,101,97,108,67,104,105,108,100,40,41,32,116,111,32,105,103,110,111,114,101,32,97,98,115,116,114,97,99,116,32,99,111,109,112,111,110,101,110,116,115,32,101,46,103,46,32,107,101,101,112,45,97,108,105,118,101,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,32,61,32,103,101,116,82,101,97,108,67,104,105,108,100,40,114,97,119,67,104,105,108,100,41,59,92,110,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,105,102,32,40,33,99,104,105,108,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,97,119,67,104,105,108,100,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,95,108,101,97,118,105,110,103,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,108,97,99,101,104,111,108,100,101,114,40,104,44,32,114,97,119,67,104,105,108,100,41,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,101,110,115,117,114,101,32,97,32,107,101,121,32,116,104,97,116,32,105,115,32,117,110,105,113,117,101,32,116,111,32,116,104,101,32,118,110,111,100,101,32,116,121,112,101,32,97,110,100,32,116,111,32,116,104,105,115,32,116,114,97,110,115,105,116,105,111,110,92,110,32,32,32,32,47,47,32,99,111,109,112,111,110,101,110,116,32,105,110,115,116,97,110,99,101,46,32,84,104,105,115,32,107,101,121,32,119,105,108,108,32,98,101,32,117,115,101,100,32,116,111,32,114,101,109,111,118,101,32,112,101,110,100,105,110,103,32,108,101,97,118,105,110,103,32,110,111,100,101,115,92,110,32,32,32,32,47,47,32,100,117,114,105,110,103,32,101,110,116,101,114,105,110,103,46,92,110,32,32,32,32,118,97,114,32,105,100,32,61,32,92,34,95,95,116,114,97,110,115,105,116,105,111,110,45,92,34,32,43,32,40,116,104,105,115,46,95,117,105,100,41,32,43,32,92,34,45,92,34,59,92,110,32,32,32,32,99,104,105,108,100,46,107,101,121,32,61,32,99,104,105,108,100,46,107,101,121,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,63,32,99,104,105,108,100,46,105,115,67,111,109,109,101,110,116,92,110,32,32,32,32,32,32,32,32,63,32,105,100,32,43,32,39,99,111,109,109,101,110,116,39,92,110,32,32,32,32,32,32,32,32,58,32,105,100,32,43,32,99,104,105,108,100,46,116,97,103,92,110,32,32,32,32,32,32,58,32,105,115,80,114,105,109,105,116,105,118,101,40,99,104,105,108,100,46,107,101,121,41,92,110,32,32,32,32,32,32,32,32,63,32,40,83,116,114,105,110,103,40,99,104,105,108,100,46,107,101,121,41,46,105,110,100,101,120,79,102,40,105,100,41,32,61,61,61,32,48,32,63,32,99,104,105,108,100,46,107,101,121,32,58,32,105,100,32,43,32,99,104,105,108,100,46,107,101,121,41,92,110,32,32,32,32,32,32,32,32,58,32,99,104,105,108,100,46,107,101,121,59,92,110,92,110,32,32,32,32,118,97,114,32,100,97,116,97,32,61,32,40,99,104,105,108,100,46,100,97,116,97,32,124,124,32,40,99,104,105,108,100,46,100,97,116,97,32,61,32,123,125,41,41,46,116,114,97,110,115,105,116,105,111,110,32,61,32,101,120,116,114,97,99,116,84,114,97,110,115,105,116,105,111,110,68,97,116,97,40,116,104,105,115,41,59,92,110,32,32,32,32,118,97,114,32,111,108,100,82,97,119,67,104,105,108,100,32,61,32,116,104,105,115,46,95,118,110,111,100,101,59,92,110,32,32,32,32,118,97,114,32,111,108,100,67,104,105,108,100,32,61,32,103,101,116,82,101,97,108,67,104,105,108,100,40,111,108,100,82,97,119,67,104,105,108,100,41,59,92,110,92,110,32,32,32,32,47,47,32,109,97,114,107,32,118,45,115,104,111,119,92,110,32,32,32,32,47,47,32,115,111,32,116,104,97,116,32,116,104,101,32,116,114,97,110,115,105,116,105,111,110,32,109,111,100,117,108,101,32,99,97,110,32,104,97,110,100,32,111,118,101,114,32,116,104,101,32,99,111,110,116,114,111,108,32,116,111,32,116,104,101,32,100,105,114,101,99,116,105,118,101,92,110,32,32,32,32,105,102,32,40,99,104,105,108,100,46,100,97,116,97,46,100,105,114,101,99,116,105,118,101,115,32,38,38,32,99,104,105,108,100,46,100,97,116,97,46,100,105,114,101,99,116,105,118,101,115,46,115,111,109,101,40,105,115,86,83,104,111,119,68,105,114,101,99,116,105,118,101,41,41,32,123,92,110,32,32,32,32,32,32,99,104,105,108,100,46,100,97,116,97,46,115,104,111,119,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,92,110,32,32,32,32,32,32,111,108,100,67,104,105,108,100,32,38,38,92,110,32,32,32,32,32,32,111,108,100,67,104,105,108,100,46,100,97,116,97,32,38,38,92,110,32,32,32,32,32,32,33,105,115,83,97,109,101,67,104,105,108,100,40,99,104,105,108,100,44,32,111,108,100,67,104,105,108,100,41,32,38,38,92,110,32,32,32,32,32,32,33,105,115,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,40,111,108,100,67,104,105,108,100,41,32,38,38,92,110,32,32,32,32,32,32,47,47,32,35,54,54,56,55,32,99,111,109,112,111,110,101,110,116,32,114,111,111,116,32,105,115,32,97,32,99,111,109,109,101,110,116,32,110,111,100,101,92,110,32,32,32,32,32,32,33,40,111,108,100,67,104,105,108,100,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,32,38,38,32,111,108,100,67,104,105,108,100,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,118,110,111,100,101,46,105,115,67,111,109,109,101,110,116,41,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,47,47,32,114,101,112,108,97,99,101,32,111,108,100,32,99,104,105,108,100,32,116,114,97,110,115,105,116,105,111,110,32,100,97,116,97,32,119,105,116,104,32,102,114,101,115,104,32,111,110,101,92,110,32,32,32,32,32,32,47,47,32,105,109,112,111,114,116,97,110,116,32,102,111,114,32,100,121,110,97,109,105,99,32,116,114,97,110,115,105,116,105,111,110,115,33,92,110,32,32,32,32,32,32,118,97,114,32,111,108,100,68,97,116,97,32,61,32,111,108,100,67,104,105,108,100,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,32,61,32,101,120,116,101,110,100,40,123,125,44,32,100,97,116,97,41,59,92,110,32,32,32,32,32,32,47,47,32,104,97,110,100,108,101,32,116,114,97,110,115,105,116,105,111,110,32,109,111,100,101,92,110,32,32,32,32,32,32,105,102,32,40,109,111,100,101,32,61,61,61,32,39,111,117,116,45,105,110,39,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,114,101,116,117,114,110,32,112,108,97,99,101,104,111,108,100,101,114,32,110,111,100,101,32,97,110,100,32,113,117,101,117,101,32,117,112,100,97,116,101,32,119,104,101,110,32,108,101,97,118,101,32,102,105,110,105,115,104,101,115,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,95,108,101,97,118,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,109,101,114,103,101,86,78,111,100,101,72,111,111,107,40,111,108,100,68,97,116,97,44,32,39,97,102,116,101,114,76,101,97,118,101,39,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,95,108,101,97,118,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,112,108,97,99,101,104,111,108,100,101,114,40,104,44,32,114,97,119,67,104,105,108,100,41,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,109,111,100,101,32,61,61,61,32,39,105,110,45,111,117,116,39,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,105,115,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,40,99,104,105,108,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,111,108,100,82,97,119,67,104,105,108,100,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,118,97,114,32,100,101,108,97,121,101,100,76,101,97,118,101,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,112,101,114,102,111,114,109,76,101,97,118,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,100,101,108,97,121,101,100,76,101,97,118,101,40,41,59,32,125,59,92,110,32,32,32,32,32,32,32,32,109,101,114,103,101,86,78,111,100,101,72,111,111,107,40,100,97,116,97,44,32,39,97,102,116,101,114,69,110,116,101,114,39,44,32,112,101,114,102,111,114,109,76,101,97,118,101,41,59,92,110,32,32,32,32,32,32,32,32,109,101,114,103,101,86,78,111,100,101,72,111,111,107,40,100,97,116,97,44,32,39,101,110,116,101,114,67,97,110,99,101,108,108,101,100,39,44,32,112,101,114,102,111,114,109,76,101,97,118,101,41,59,92,110,32,32,32,32,32,32,32,32,109,101,114,103,101,86,78,111,100,101,72,111,111,107,40,111,108,100,68,97,116,97,44,32,39,100,101,108,97,121,76,101,97,118,101,39,44,32,102,117,110,99,116,105,111,110,32,40,108,101,97,118,101,41,32,123,32,100,101,108,97,121,101,100,76,101,97,118,101,32,61,32,108,101,97,118,101,59,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,114,97,119,67,104,105,108,100,92,110,32,32,125,92,110,125,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,118,97,114,32,112,114,111,112,115,32,61,32,101,120,116,101,110,100,40,123,92,110,32,32,116,97,103,58,32,83,116,114,105,110,103,44,92,110,32,32,109,111,118,101,67,108,97,115,115,58,32,83,116,114,105,110,103,92,110,125,44,32,116,114,97,110,115,105,116,105,111,110,80,114,111,112,115,41,59,92,110,92,110,100,101,108,101,116,101,32,112,114,111,112,115,46,109,111,100,101,59,92,110,92,110,118,97,114,32,84,114,97,110,115,105,116,105,111,110,71,114,111,117,112,32,61,32,123,92,110,32,32,112,114,111,112,115,58,32,112,114,111,112,115,44,92,110,92,110,32,32,98,101,102,111,114,101,77,111,117,110,116,58,32,102,117,110,99,116,105,111,110,32,98,101,102,111,114,101,77,111,117,110,116,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,32,32,118,97,114,32,117,112,100,97,116,101,32,61,32,116,104,105,115,46,95,117,112,100,97,116,101,59,92,110,32,32,32,32,116,104,105,115,46,95,117,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,40,118,110,111,100,101,44,32,104,121,100,114,97,116,105,110,103,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,114,101,115,116,111,114,101,65,99,116,105,118,101,73,110,115,116,97,110,99,101,32,61,32,115,101,116,65,99,116,105,118,101,73,110,115,116,97,110,99,101,40,116,104,105,115,36,49,41,59,92,110,32,32,32,32,32,32,47,47,32,102,111,114,99,101,32,114,101,109,111,118,105,110,103,32,112,97,115,115,92,110,32,32,32,32,32,32,116,104,105,115,36,49,46,95,95,112,97,116,99,104,95,95,40,92,110,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,95,118,110,111,100,101,44,92,110,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,107,101,112,116,44,92,110,32,32,32,32,32,32,32,32,102,97,108,115,101,44,32,47,47,32,104,121,100,114,97,116,105,110,103,92,110,32,32,32,32,32,32,32,32,116,114,117,101,32,47,47,32,114,101,109,111,118,101,79,110,108,121,32,40,33,105,109,112,111,114,116,97,110,116,44,32,97,118,111,105,100,115,32,117,110,110,101,99,101,115,115,97,114,121,32,109,111,118,101,115,41,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,116,104,105,115,36,49,46,95,118,110,111,100,101,32,61,32,116,104,105,115,36,49,46,107,101,112,116,59,92,110,32,32,32,32,32,32,114,101,115,116,111,114,101,65,99,116,105,118,101,73,110,115,116,97,110,99,101,40,41,59,92,110,32,32,32,32,32,32,117,112,100,97,116,101,46,99,97,108,108,40,116,104,105,115,36,49,44,32,118,110,111,100,101,44,32,104,121,100,114,97,116,105,110,103,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,92,110,32,32,114,101,110,100,101,114,58,32,102,117,110,99,116,105,111,110,32,114,101,110,100,101,114,32,40,104,41,32,123,92,110,32,32,32,32,118,97,114,32,116,97,103,32,61,32,116,104,105,115,46,116,97,103,32,124,124,32,116,104,105,115,46,36,118,110,111,100,101,46,100,97,116,97,46,116,97,103,32,124,124,32,39,115,112,97,110,39,59,92,110,32,32,32,32,118,97,114,32,109,97,112,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,32,32,118,97,114,32,112,114,101,118,67,104,105,108,100,114,101,110,32,61,32,116,104,105,115,46,112,114,101,118,67,104,105,108,100,114,101,110,32,61,32,116,104,105,115,46,99,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,114,97,119,67,104,105,108,100,114,101,110,32,61,32,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,32,124,124,32,91,93,59,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,116,104,105,115,46,99,104,105,108,100,114,101,110,32,61,32,91,93,59,92,110,32,32,32,32,118,97,114,32,116,114,97,110,115,105,116,105,111,110,68,97,116,97,32,61,32,101,120,116,114,97,99,116,84,114,97,110,115,105,116,105,111,110,68,97,116,97,40,116,104,105,115,41,59,92,110,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,114,97,119,67,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,99,32,61,32,114,97,119,67,104,105,108,100,114,101,110,91,105,93,59,92,110,32,32,32,32,32,32,105,102,32,40,99,46,116,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,99,46,107,101,121,32,33,61,32,110,117,108,108,32,38,38,32,83,116,114,105,110,103,40,99,46,107,101,121,41,46,105,110,100,101,120,79,102,40,39,95,95,118,108,105,115,116,39,41,32,33,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,46,112,117,115,104,40,99,41,59,92,110,32,32,32,32,32,32,32,32,32,32,109,97,112,91,99,46,107,101,121,93,32,61,32,99,92,110,32,32,32,32,32,32,32,32,32,32,59,40,99,46,100,97,116,97,32,124,124,32,40,99,46,100,97,116,97,32,61,32,123,125,41,41,46,116,114,97,110,115,105,116,105,111,110,32,61,32,116,114,97,110,115,105,116,105,111,110,68,97,116,97,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,114,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,111,112,116,115,32,61,32,99,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,110,97,109,101,32,61,32,111,112,116,115,32,63,32,40,111,112,116,115,46,67,116,111,114,46,111,112,116,105,111,110,115,46,110,97,109,101,32,124,124,32,111,112,116,115,46,116,97,103,32,124,124,32,39,39,41,32,58,32,99,46,116,97,103,59,92,110,32,32,32,32,32,32,32,32,32,32,119,97,114,110,40,40,92,34,60,116,114,97,110,115,105,116,105,111,110,45,103,114,111,117,112,62,32,99,104,105,108,100,114,101,110,32,109,117,115,116,32,98,101,32,107,101,121,101,100,58,32,60,92,34,32,43,32,110,97,109,101,32,43,32,92,34,62,92,34,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,112,114,101,118,67,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,107,101,112,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,118,97,114,32,114,101,109,111,118,101,100,32,61,32,91,93,59,92,110,32,32,32,32,32,32,102,111,114,32,40,118,97,114,32,105,36,49,32,61,32,48,59,32,105,36,49,32,60,32,112,114,101,118,67,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,32,105,36,49,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,99,36,49,32,61,32,112,114,101,118,67,104,105,108,100,114,101,110,91,105,36,49,93,59,92,110,32,32,32,32,32,32,32,32,99,36,49,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,32,61,32,116,114,97,110,115,105,116,105,111,110,68,97,116,97,59,92,110,32,32,32,32,32,32,32,32,99,36,49,46,100,97,116,97,46,112,111,115,32,61,32,99,36,49,46,101,108,109,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,92,110,32,32,32,32,32,32,32,32,105,102,32,40,109,97,112,91,99,36,49,46,107,101,121,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,107,101,112,116,46,112,117,115,104,40,99,36,49,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,100,46,112,117,115,104,40,99,36,49,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,116,104,105,115,46,107,101,112,116,32,61,32,104,40,116,97,103,44,32,110,117,108,108,44,32,107,101,112,116,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,114,101,109,111,118,101,100,32,61,32,114,101,109,111,118,101,100,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,114,101,116,117,114,110,32,104,40,116,97,103,44,32,110,117,108,108,44,32,99,104,105,108,100,114,101,110,41,92,110,32,32,125,44,92,110,92,110,32,32,117,112,100,97,116,101,100,58,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,100,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,99,104,105,108,100,114,101,110,32,61,32,116,104,105,115,46,112,114,101,118,67,104,105,108,100,114,101,110,59,92,110,32,32,32,32,118,97,114,32,109,111,118,101,67,108,97,115,115,32,61,32,116,104,105,115,46,109,111,118,101,67,108,97,115,115,32,124,124,32,40,40,116,104,105,115,46,110,97,109,101,32,124,124,32,39,118,39,41,32,43,32,39,45,109,111,118,101,39,41,59,92,110,32,32,32,32,105,102,32,40,33,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,124,124,32,33,116,104,105,115,46,104,97,115,77,111,118,101,40,99,104,105,108,100,114,101,110,91,48,93,46,101,108,109,44,32,109,111,118,101,67,108,97,115,115,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,47,47,32,119,101,32,100,105,118,105,100,101,32,116,104,101,32,119,111,114,107,32,105,110,116,111,32,116,104,114,101,101,32,108,111,111,112,115,32,116,111,32,97,118,111,105,100,32,109,105,120,105,110,103,32,68,79,77,32,114,101,97,100,115,32,97,110,100,32,119,114,105,116,101,115,92,110,32,32,32,32,47,47,32,105,110,32,101,97,99,104,32,105,116,101,114,97,116,105,111,110,32,45,32,119,104,105,99,104,32,104,101,108,112,115,32,112,114,101,118,101,110,116,32,108,97,121,111,117,116,32,116,104,114,97,115,104,105,110,103,46,92,110,32,32,32,32,99,104,105,108,100,114,101,110,46,102,111,114,69,97,99,104,40,99,97,108,108,80,101,110,100,105,110,103,67,98,115,41,59,92,110,32,32,32,32,99,104,105,108,100,114,101,110,46,102,111,114,69,97,99,104,40,114,101,99,111,114,100,80,111,115,105,116,105,111,110,41,59,92,110,32,32,32,32,99,104,105,108,100,114,101,110,46,102,111,114,69,97,99,104,40,97,112,112,108,121,84,114,97,110,115,108,97,116,105,111,110,41,59,92,110,92,110,32,32,32,32,47,47,32,102,111,114,99,101,32,114,101,102,108,111,119,32,116,111,32,112,117,116,32,101,118,101,114,121,116,104,105,110,103,32,105,110,32,112,111,115,105,116,105,111,110,92,110,32,32,32,32,47,47,32,97,115,115,105,103,110,32,116,111,32,116,104,105,115,32,116,111,32,97,118,111,105,100,32,98,101,105,110,103,32,114,101,109,111,118,101,100,32,105,110,32,116,114,101,101,45,115,104,97,107,105,110,103,92,110,32,32,32,32,47,47,32,36,102,108,111,119,45,100,105,115,97,98,108,101,45,108,105,110,101,92,110,32,32,32,32,116,104,105,115,46,95,114,101,102,108,111,119,32,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,59,92,110,92,110,32,32,32,32,99,104,105,108,100,114,101,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,99,46,100,97,116,97,46,109,111,118,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,101,108,32,61,32,99,46,101,108,109,59,92,110,32,32,32,32,32,32,32,32,118,97,114,32,115,32,61,32,101,108,46,115,116,121,108,101,59,92,110,32,32,32,32,32,32,32,32,97,100,100,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,109,111,118,101,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,32,32,115,46,116,114,97,110,115,102,111,114,109,32,61,32,115,46,87,101,98,107,105,116,84,114,97,110,115,102,111,114,109,32,61,32,115,46,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,32,61,32,39,39,59,92,110,32,32,32,32,32,32,32,32,101,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,44,32,101,108,46,95,109,111,118,101,67,98,32,61,32,102,117,110,99,116,105,111,110,32,99,98,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,32,38,38,32,101,46,116,97,114,103,101,116,32,33,61,61,32,101,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,101,32,124,124,32,47,116,114,97,110,115,102,111,114,109,36,47,46,116,101,115,116,40,101,46,112,114,111,112,101,114,116,121,78,97,109,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,44,32,99,98,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,108,46,95,109,111,118,101,67,98,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,101,84,114,97,110,115,105,116,105,111,110,67,108,97,115,115,40,101,108,44,32,109,111,118,101,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,104,97,115,77,111,118,101,58,32,102,117,110,99,116,105,111,110,32,104,97,115,77,111,118,101,32,40,101,108,44,32,109,111,118,101,67,108,97,115,115,41,32,123,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,33,104,97,115,84,114,97,110,115,105,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,95,104,97,115,77,111,118,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,104,97,115,77,111,118,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,68,101,116,101,99,116,32,119,104,101,116,104,101,114,32,97,110,32,101,108,101,109,101,110,116,32,119,105,116,104,32,116,104,101,32,109,111,118,101,32,99,108,97,115,115,32,97,112,112,108,105,101,100,32,104,97,115,92,110,32,32,32,32,32,32,47,47,32,67,83,83,32,116,114,97,110,115,105,116,105,111,110,115,46,32,83,105,110,99,101,32,116,104,101,32,101,108,101,109,101,110,116,32,109,97,121,32,98,101,32,105,110,115,105,100,101,32,97,110,32,101,110,116,101,114,105,110,103,92,110,32,32,32,32,32,32,47,47,32,116,114,97,110,115,105,116,105,111,110,32,97,116,32,116,104,105,115,32,118,101,114,121,32,109,111,109,101,110,116,44,32,119,101,32,109,97,107,101,32,97,32,99,108,111,110,101,32,111,102,32,105,116,32,97,110,100,32,114,101,109,111,118,101,92,110,32,32,32,32,32,32,47,47,32,97,108,108,32,111,116,104,101,114,32,116,114,97,110,115,105,116,105,111,110,32,99,108,97,115,115,101,115,32,97,112,112,108,105,101,100,32,116,111,32,101,110,115,117,114,101,32,111,110,108,121,32,116,104,101,32,109,111,118,101,32,99,108,97,115,115,92,110,32,32,32,32,32,32,47,47,32,105,115,32,97,112,112,108,105,101,100,46,92,110,32,32,32,32,32,32,118,97,114,32,99,108,111,110,101,32,61,32,101,108,46,99,108,111,110,101,78,111,100,101,40,41,59,92,110,32,32,32,32,32,32,105,102,32,40,101,108,46,95,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,101,108,46,95,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,99,108,115,41,32,123,32,114,101,109,111,118,101,67,108,97,115,115,40,99,108,111,110,101,44,32,99,108,115,41,59,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,97,100,100,67,108,97,115,115,40,99,108,111,110,101,44,32,109,111,118,101,67,108,97,115,115,41,59,92,110,32,32,32,32,32,32,99,108,111,110,101,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,39,110,111,110,101,39,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,108,46,97,112,112,101,110,100,67,104,105,108,100,40,99,108,111,110,101,41,59,92,110,32,32,32,32,32,32,118,97,114,32,105,110,102,111,32,61,32,103,101,116,84,114,97,110,115,105,116,105,111,110,73,110,102,111,40,99,108,111,110,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,108,46,114,101,109,111,118,101,67,104,105,108,100,40,99,108,111,110,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,116,104,105,115,46,95,104,97,115,77,111,118,101,32,61,32,105,110,102,111,46,104,97,115,84,114,97,110,115,102,111,114,109,41,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,99,97,108,108,80,101,110,100,105,110,103,67,98,115,32,40,99,41,32,123,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,99,46,101,108,109,46,95,109,111,118,101,67,98,41,32,123,92,110,32,32,32,32,99,46,101,108,109,46,95,109,111,118,101,67,98,40,41,59,92,110,32,32,125,92,110,32,32,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,105,102,32,42,47,92,110,32,32,105,102,32,40,99,46,101,108,109,46,95,101,110,116,101,114,67,98,41,32,123,92,110,32,32,32,32,99,46,101,108,109,46,95,101,110,116,101,114,67,98,40,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,99,111,114,100,80,111,115,105,116,105,111,110,32,40,99,41,32,123,92,110,32,32,99,46,100,97,116,97,46,110,101,119,80,111,115,32,61,32,99,46,101,108,109,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,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,112,112,108,121,84,114,97,110,115,108,97,116,105,111,110,32,40,99,41,32,123,92,110,32,32,118,97,114,32,111,108,100,80,111,115,32,61,32,99,46,100,97,116,97,46,112,111,115,59,92,110,32,32,118,97,114,32,110,101,119,80,111,115,32,61,32,99,46,100,97,116,97,46,110,101,119,80,111,115,59,92,110,32,32,118,97,114,32,100,120,32,61,32,111,108,100,80,111,115,46,108,101,102,116,32,45,32,110,101,119,80,111,115,46,108,101,102,116,59,92,110,32,32,118,97,114,32,100,121,32,61,32,111,108,100,80,111,115,46,116,111,112,32,45,32,110,101,119,80,111,115,46,116,111,112,59,92,110,32,32,105,102,32,40,100,120,32,124,124,32,100,121,41,32,123,92,110,32,32,32,32,99,46,100,97,116,97,46,109,111,118,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,118,97,114,32,115,32,61,32,99,46,101,108,109,46,115,116,121,108,101,59,92,110,32,32,32,32,115,46,116,114,97,110,115,102,111,114,109,32,61,32,115,46,87,101,98,107,105,116,84,114,97,110,115,102,111,114,109,32,61,32,92,34,116,114,97,110,115,108,97,116,101,40,92,34,32,43,32,100,120,32,43,32,92,34,112,120,44,92,34,32,43,32,100,121,32,43,32,92,34,112,120,41,92,34,59,92,110,32,32,32,32,115,46,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,32,61,32,39,48,115,39,59,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,112,108,97,116,102,111,114,109,67,111,109,112,111,110,101,110,116,115,32,61,32,123,92,110,32,32,84,114,97,110,115,105,116,105,111,110,58,32,84,114,97,110,115,105,116,105,111,110,44,92,110,32,32,84,114,97,110,115,105,116,105,111,110,71,114,111,117,112,58,32,84,114,97,110,115,105,116,105,111,110,71,114,111,117,112,92,110,125,59,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,47,32,105,110,115,116,97,108,108,32,112,108,97,116,102,111,114,109,32,115,112,101,99,105,102,105,99,32,117,116,105,108,115,92,110,86,117,101,46,99,111,110,102,105,103,46,109,117,115,116,85,115,101,80,114,111,112,32,61,32,109,117,115,116,85,115,101,80,114,111,112,59,92,110,86,117,101,46,99,111,110,102,105,103,46,105,115,82,101,115,101,114,118,101,100,84,97,103,32,61,32,105,115,82,101,115,101,114,118,101,100,84,97,103,59,92,110,86,117,101,46,99,111,110,102,105,103,46,105,115,82,101,115,101,114,118,101,100,65,116,116,114,32,61,32,105,115,82,101,115,101,114,118,101,100,65,116,116,114,59,92,110,86,117,101,46,99,111,110,102,105,103,46,103,101,116,84,97,103,78,97,109,101,115,112,97,99,101,32,61,32,103,101,116,84,97,103,78,97,109,101,115,112,97,99,101,59,92,110,86,117,101,46,99,111,110,102,105,103,46,105,115,85,110,107,110,111,119,110,69,108,101,109,101,110,116,32,61,32,105,115,85,110,107,110,111,119,110,69,108,101,109,101,110,116,59,92,110,92,110,47,47,32,105,110,115,116,97,108,108,32,112,108,97,116,102,111,114,109,32,114,117,110,116,105,109,101,32,100,105,114,101,99,116,105,118,101,115,32,38,32,99,111,109,112,111,110,101,110,116,115,92,110,101,120,116,101,110,100,40,86,117,101,46,111,112,116,105,111,110,115,46,100,105,114,101,99,116,105,118,101,115,44,32,112,108,97,116,102,111,114,109,68,105,114,101,99,116,105,118,101,115,41,59,92,110,101,120,116,101,110,100,40,86,117,101,46,111,112,116,105,111,110,115,46,99,111,109,112,111,110,101,110,116,115,44,32,112,108,97,116,102,111,114,109,67,111,109,112,111,110,101,110,116,115,41,59,92,110,92,110,47,47,32,105,110,115,116,97,108,108,32,112,108,97,116,102,111,114,109,32,112,97,116,99,104,32,102,117,110,99,116,105,111,110,92,110,86,117,101,46,112,114,111,116,111,116,121,112,101,46,95,95,112,97,116,99,104,95,95,32,61,32,105,110,66,114,111,119,115,101,114,32,63,32,112,97,116,99,104,32,58,32,110,111,111,112,59,92,110,92,110,47,47,32,112,117,98,108,105,99,32,109,111,117,110,116,32,109,101,116,104,111,100,92,110,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,109,111,117,110,116,32,61,32,102,117,110,99,116,105,111,110,32,40,92,110,32,32,101,108,44,92,110,32,32,104,121,100,114,97,116,105,110,103,92,110,41,32,123,92,110,32,32,101,108,32,61,32,101,108,32,38,38,32,105,110,66,114,111,119,115,101,114,32,63,32,113,117,101,114,121,40,101,108,41,32,58,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,114,101,116,117,114,110,32,109,111,117,110,116,67,111,109,112,111,110,101,110,116,40,116,104,105,115,44,32,101,108,44,32,104,121,100,114,97,116,105,110,103,41,92,110,125,59,92,110,92,110,47,47,32,100,101,118,116,111,111,108,115,32,103,108,111,98,97,108,32,104,111,111,107,92,110,47,42,32,105,115,116,97,110,98,117,108,32,105,103,110,111,114,101,32,110,101,120,116,32,42,47,92,110,105,102,32,40,105,110,66,114,111,119,115,101,114,41,32,123,92,110,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,99,111,110,102,105,103,46,100,101,118,116,111,111,108,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,100,101,118,116,111,111,108,115,41,32,123,92,110,32,32,32,32,32,32,32,32,100,101,118,116,111,111,108,115,46,101,109,105,116,40,39,105,110,105,116,39,44,32,86,117,101,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,92,110,32,32,32,32,32,32,32,32,116,114,117,101,92,110,32,32,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,91,99,111,110,115,111,108,101,46,105,110,102,111,32,63,32,39,105,110,102,111,39,32,58,32,39,108,111,103,39,93,40,92,110,32,32,32,32,32,32,32,32,32,32,39,68,111,119,110,108,111,97,100,32,116,104,101,32,86,117,101,32,68,101,118,116,111,111,108,115,32,101,120,116,101,110,115,105,111,110,32,102,111,114,32,97,32,98,101,116,116,101,114,32,100,101,118,101,108,111,112,109,101,110,116,32,101,120,112,101,114,105,101,110,99,101,58,92,92,110,39,32,43,92,110,32,32,32,32,32,32,32,32,32,32,39,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,118,117,101,106,115,47,118,117,101,45,100,101,118,116,111,111,108,115,39,92,110,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,32,116,114,117,101,32,38,38,92,110,32,32,32,32,32,32,99,111,110,102,105,103,46,112,114,111,100,117,99,116,105,111,110,84,105,112,32,33,61,61,32,102,97,108,115,101,32,38,38,92,110,32,32,32,32,32,32,116,121,112,101,111,102,32,99,111,110,115,111,108,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,92,110,32,32,32,32,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,91,99,111,110,115,111,108,101,46,105,110,102,111,32,63,32,39,105,110,102,111,39,32,58,32,39,108,111,103,39,93,40,92,110,32,32,32,32,32,32,32,32,92,34,89,111,117,32,97,114,101,32,114,117,110,110,105,110,103,32,86,117,101,32,105,110,32,100,101,118,101,108,111,112,109,101,110,116,32,109,111,100,101,46,92,92,110,92,34,32,43,92,110,32,32,32,32,32,32,32,32,92,34,77,97,107,101,32,115,117,114,101,32,116,111,32,116,117,114,110,32,111,110,32,112,114,111,100,117,99,116,105,111,110,32,109,111,100,101,32,119,104,101,110,32,100,101,112,108,111,121,105,110,103,32,102,111,114,32,112,114,111,100,117,99,116,105,111,110,46,92,92,110,92,34,32,43,92,110,32,32,32,32,32,32,32,32,92,34,83,101,101,32,109,111,114,101,32,116,105,112,115,32,97,116,32,104,116,116,112,115,58,47,47,118,117,101,106,115,46,111,114,103,47,103,117,105,100,101,47,100,101,112,108,111,121,109,101,110,116,46,104,116,109,108,92,34,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,48,41,59,92,110,125,92,110,92,110,47,42,32,32,42,47,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,86,117,101,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,120,47,100,105,115,116,47,118,117,101,120,46,101,115,109,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,120,47,100,105,115,116,47,118,117,101,120,46,101,115,109,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,83,116,111,114,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,83,116,111,114,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,101,97,116,101,76,111,103,103,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,114,101,97,116,101,76,111,103,103,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,114,101,97,116,101,78,97,109,101,115,112,97,99,101,100,72,101,108,112,101,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,114,101,97,116,101,78,97,109,101,115,112,97,99,101,100,72,101,108,112,101,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,105,110,115,116,97,108,108,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,105,110,115,116,97,108,108,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,112,65,99,116,105,111,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,112,65,99,116,105,111,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,112,71,101,116,116,101,114,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,112,71,101,116,116,101,114,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,112,77,117,116,97,116,105,111,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,112,77,117,116,97,116,105,111,110,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,97,112,83,116,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,97,112,83,116,97,116,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,33,92,110,32,42,32,118,117,101,120,32,118,51,46,54,46,50,92,110,32,42,32,40,99,41,32,50,48,50,49,32,69,118,97,110,32,89,111,117,92,110,32,42,32,64,108,105,99,101,110,115,101,32,77,73,84,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,97,112,112,108,121,77,105,120,105,110,32,40,86,117,101,41,32,123,92,110,32,32,118,97,114,32,118,101,114,115,105,111,110,32,61,32,78,117,109,98,101,114,40,86,117,101,46,118,101,114,115,105,111,110,46,115,112,108,105,116,40,39,46,39,41,91,48,93,41,59,92,110,92,110,32,32,105,102,32,40,118,101,114,115,105,111,110,32,62,61,32,50,41,32,123,92,110,32,32,32,32,86,117,101,46,109,105,120,105,110,40,123,32,98,101,102,111,114,101,67,114,101,97,116,101,58,32,118,117,101,120,73,110,105,116,32,125,41,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,47,47,32,111,118,101,114,114,105,100,101,32,105,110,105,116,32,97,110,100,32,105,110,106,101,99,116,32,118,117,101,120,32,105,110,105,116,32,112,114,111,99,101,100,117,114,101,92,110,32,32,32,32,47,47,32,102,111,114,32,49,46,120,32,98,97,99,107,119,97,114,100,115,32,99,111,109,112,97,116,105,98,105,108,105,116,121,46,92,110,32,32,32,32,118,97,114,32,95,105,110,105,116,32,61,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,95,105,110,105,116,59,92,110,32,32,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,95,105,110,105,116,32,61,32,102,117,110,99,116,105,111,110,32,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,32,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,32,41,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,92,110,32,32,32,32,32,32,111,112,116,105,111,110,115,46,105,110,105,116,32,61,32,111,112,116,105,111,110,115,46,105,110,105,116,92,110,32,32,32,32,32,32,32,32,63,32,91,118,117,101,120,73,110,105,116,93,46,99,111,110,99,97,116,40,111,112,116,105,111,110,115,46,105,110,105,116,41,92,110,32,32,32,32,32,32,32,32,58,32,118,117,101,120,73,110,105,116,59,92,110,32,32,32,32,32,32,95,105,110,105,116,46,99,97,108,108,40,116,104,105,115,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,92,110,32,32,47,42,42,92,110,32,32,32,42,32,86,117,101,120,32,105,110,105,116,32,104,111,111,107,44,32,105,110,106,101,99,116,101,100,32,105,110,116,111,32,101,97,99,104,32,105,110,115,116,97,110,99,101,115,32,105,110,105,116,32,104,111,111,107,115,32,108,105,115,116,46,92,110,32,32,32,42,47,92,110,92,110,32,32,102,117,110,99,116,105,111,110,32,118,117,101,120,73,110,105,116,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,116,104,105,115,46,36,111,112,116,105,111,110,115,59,92,110,32,32,32,32,47,47,32,115,116,111,114,101,32,105,110,106,101,99,116,105,111,110,92,110,32,32,32,32,105,102,32,40,111,112,116,105,111,110,115,46,115,116,111,114,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,32,61,32,116,121,112,101,111,102,32,111,112,116,105,111,110,115,46,115,116,111,114,101,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,32,32,32,32,32,32,32,32,63,32,111,112,116,105,111,110,115,46,115,116,111,114,101,40,41,92,110,32,32,32,32,32,32,32,32,58,32,111,112,116,105,111,110,115,46,115,116,111,114,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,111,112,116,105,111,110,115,46,112,97,114,101,110,116,32,38,38,32,111,112,116,105,111,110,115,46,112,97,114,101,110,116,46,36,115,116,111,114,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,32,61,32,111,112,116,105,111,110,115,46,112,97,114,101,110,116,46,36,115,116,111,114,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,116,97,114,103,101,116,32,61,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,92,110,32,32,63,32,119,105,110,100,111,119,92,110,32,32,58,32,116,121,112,101,111,102,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,92,110,32,32,32,32,63,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,92,110,32,32,32,32,58,32,123,125,59,92,110,118,97,114,32,100,101,118,116,111,111,108,72,111,111,107,32,61,32,116,97,114,103,101,116,46,95,95,86,85,69,95,68,69,86,84,79,79,76,83,95,71,76,79,66,65,76,95,72,79,79,75,95,95,59,92,110,92,110,102,117,110,99,116,105,111,110,32,100,101,118,116,111,111,108,80,108,117,103,105,110,32,40,115,116,111,114,101,41,32,123,92,110,32,32,105,102,32,40,33,100,101,118,116,111,111,108,72,111,111,107,41,32,123,32,114,101,116,117,114,110,32,125,92,110,92,110,32,32,115,116,111,114,101,46,95,100,101,118,116,111,111,108,72,111,111,107,32,61,32,100,101,118,116,111,111,108,72,111,111,107,59,92,110,92,110,32,32,100,101,118,116,111,111,108,72,111,111,107,46,101,109,105,116,40,39,118,117,101,120,58,105,110,105,116,39,44,32,115,116,111,114,101,41,59,92,110,92,110,32,32,100,101,118,116,111,111,108,72,111,111,107,46,111,110,40,39,118,117,101,120,58,116,114,97,118,101,108,45,116,111,45,115,116,97,116,101,39,44,32,102,117,110,99,116,105,111,110,32,40,116,97,114,103,101,116,83,116,97,116,101,41,32,123,92,110,32,32,32,32,115,116,111,114,101,46,114,101,112,108,97,99,101,83,116,97,116,101,40,116,97,114,103,101,116,83,116,97,116,101,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,102,117,110,99,116,105,111,110,32,40,109,117,116,97,116,105,111,110,44,32,115,116,97,116,101,41,32,123,92,110,32,32,32,32,100,101,118,116,111,111,108,72,111,111,107,46,101,109,105,116,40,39,118,117,101,120,58,109,117,116,97,116,105,111,110,39,44,32,109,117,116,97,116,105,111,110,44,32,115,116,97,116,101,41,59,92,110,32,32,125,44,32,123,32,112,114,101,112,101,110,100,58,32,116,114,117,101,32,125,41,59,92,110,92,110,32,32,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,65,99,116,105,111,110,40,102,117,110,99,116,105,111,110,32,40,97,99,116,105,111,110,44,32,115,116,97,116,101,41,32,123,92,110,32,32,32,32,100,101,118,116,111,111,108,72,111,111,107,46,101,109,105,116,40,39,118,117,101,120,58,97,99,116,105,111,110,39,44,32,97,99,116,105,111,110,44,32,115,116,97,116,101,41,59,92,110,32,32,125,44,32,123,32,112,114,101,112,101,110,100,58,32,116,114,117,101,32,125,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,71,101,116,32,116,104,101,32,102,105,114,115,116,32,105,116,101,109,32,116,104,97,116,32,112,97,115,115,32,116,104,101,32,116,101,115,116,92,110,32,42,32,98,121,32,115,101,99,111,110,100,32,97,114,103,117,109,101,110,116,32,102,117,110,99,116,105,111,110,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,125,32,108,105,115,116,92,110,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,92,110,32,42,32,64,114,101,116,117,114,110,32,123,42,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,102,105,110,100,32,40,108,105,115,116,44,32,102,41,32,123,92,110,32,32,114,101,116,117,114,110,32,108,105,115,116,46,102,105,108,116,101,114,40,102,41,91,48,93,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,68,101,101,112,32,99,111,112,121,32,116,104,101,32,103,105,118,101,110,32,111,98,106,101,99,116,32,99,111,110,115,105,100,101,114,105,110,103,32,99,105,114,99,117,108,97,114,32,115,116,114,117,99,116,117,114,101,46,92,110,32,42,32,84,104,105,115,32,102,117,110,99,116,105,111,110,32,99,97,99,104,101,115,32,97,108,108,32,110,101,115,116,101,100,32,111,98,106,101,99,116,115,32,97,110,100,32,105,116,115,32,99,111,112,105,101,115,46,92,110,32,42,32,73,102,32,105,116,32,100,101,116,101,99,116,115,32,99,105,114,99,117,108,97,114,32,115,116,114,117,99,116,117,114,101,44,32,117,115,101,32,99,97,99,104,101,100,32,99,111,112,121,32,116,111,32,97,118,111,105,100,32,105,110,102,105,110,105,116,101,32,108,111,111,112,46,92,110,32,42,92,110,32,42,32,64,112,97,114,97,109,32,123,42,125,32,111,98,106,92,110,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,60,79,98,106,101,99,116,62,125,32,99,97,99,104,101,92,110,32,42,32,64,114,101,116,117,114,110,32,123,42,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,100,101,101,112,67,111,112,121,32,40,111,98,106,44,32,99,97,99,104,101,41,32,123,92,110,32,32,105,102,32,40,32,99,97,99,104,101,32,61,61,61,32,118,111,105,100,32,48,32,41,32,99,97,99,104,101,32,61,32,91,93,59,92,110,92,110,32,32,47,47,32,106,117,115,116,32,114,101,116,117,114,110,32,105,102,32,111,98,106,32,105,115,32,105,109,109,117,116,97,98,108,101,32,118,97,108,117,101,92,110,32,32,105,102,32,40,111,98,106,32,61,61,61,32,110,117,108,108,32,124,124,32,116,121,112,101,111,102,32,111,98,106,32,33,61,61,32,39,111,98,106,101,99,116,39,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,111,98,106,92,110,32,32,125,92,110,92,110,32,32,47,47,32,105,102,32,111,98,106,32,105,115,32,104,105,116,44,32,105,116,32,105,115,32,105,110,32,99,105,114,99,117,108,97,114,32,115,116,114,117,99,116,117,114,101,92,110,32,32,118,97,114,32,104,105,116,32,61,32,102,105,110,100,40,99,97,99,104,101,44,32,102,117,110,99,116,105,111,110,32,40,99,41,32,123,32,114,101,116,117,114,110,32,99,46,111,114,105,103,105,110,97,108,32,61,61,61,32,111,98,106,59,32,125,41,59,92,110,32,32,105,102,32,40,104,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,104,105,116,46,99,111,112,121,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,99,111,112,121,32,61,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,98,106,41,32,63,32,91,93,32,58,32,123,125,59,92,110,32,32,47,47,32,112,117,116,32,116,104,101,32,99,111,112,121,32,105,110,116,111,32,99,97,99,104,101,32,97,116,32,102,105,114,115,116,92,110,32,32,47,47,32,98,101,99,97,117,115,101,32,119,101,32,119,97,110,116,32,116,111,32,114,101,102,101,114,32,105,116,32,105,110,32,114,101,99,117,114,115,105,118,101,32,100,101,101,112,67,111,112,121,92,110,32,32,99,97,99,104,101,46,112,117,115,104,40,123,92,110,32,32,32,32,111,114,105,103,105,110,97,108,58,32,111,98,106,44,92,110,32,32,32,32,99,111,112,121,58,32,99,111,112,121,92,110,32,32,125,41,59,92,110,92,110,32,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,99,111,112,121,91,107,101,121,93,32,61,32,100,101,101,112,67,111,112,121,40,111,98,106,91,107,101,121,93,44,32,99,97,99,104,101,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,99,111,112,121,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,102,111,114,69,97,99,104,32,102,111,114,32,111,98,106,101,99,116,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,86,97,108,117,101,32,40,111,98,106,44,32,102,110,41,32,123,92,110,32,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,102,110,40,111,98,106,91,107,101,121,93,44,32,107,101,121,41,59,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,79,98,106,101,99,116,32,40,111,98,106,41,32,123,92,110,32,32,114,101,116,117,114,110,32,111,98,106,32,33,61,61,32,110,117,108,108,32,38,38,32,116,121,112,101,111,102,32,111,98,106,32,61,61,61,32,39,111,98,106,101,99,116,39,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,115,80,114,111,109,105,115,101,32,40,118,97,108,41,32,123,92,110,32,32,114,101,116,117,114,110,32,118,97,108,32,38,38,32,116,121,112,101,111,102,32,118,97,108,46,116,104,101,110,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,97,115,115,101,114,116,32,40,99,111,110,100,105,116,105,111,110,44,32,109,115,103,41,32,123,92,110,32,32,105,102,32,40,33,99,111,110,100,105,116,105,111,110,41,32,123,32,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,40,92,34,91,118,117,101,120,93,32,92,34,32,43,32,109,115,103,41,41,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,114,116,105,97,108,32,40,102,110,44,32,97,114,103,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,110,40,97,114,103,41,92,110,32,32,125,92,110,125,92,110,92,110,47,47,32,66,97,115,101,32,100,97,116,97,32,115,116,114,117,99,116,32,102,111,114,32,115,116,111,114,101,39,115,32,109,111,100,117,108,101,44,32,112,97,99,107,97,103,101,32,119,105,116,104,32,115,111,109,101,32,97,116,116,114,105,98,117,116,101,32,97,110,100,32,109,101,116,104,111,100,92,110,118,97,114,32,77,111,100,117,108,101,32,61,32,102,117,110,99,116,105,111,110,32,77,111,100,117,108,101,32,40,114,97,119,77,111,100,117,108,101,44,32,114,117,110,116,105,109,101,41,32,123,92,110,32,32,116,104,105,115,46,114,117,110,116,105,109,101,32,61,32,114,117,110,116,105,109,101,59,92,110,32,32,47,47,32,83,116,111,114,101,32,115,111,109,101,32,99,104,105,108,100,114,101,110,32,105,116,101,109,92,110,32,32,116,104,105,115,46,95,99,104,105,108,100,114,101,110,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,47,47,32,83,116,111,114,101,32,116,104,101,32,111,114,105,103,105,110,32,109,111,100,117,108,101,32,111,98,106,101,99,116,32,119,104,105,99,104,32,112,97,115,115,101,100,32,98,121,32,112,114,111,103,114,97,109,109,101,114,92,110,32,32,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,32,61,32,114,97,119,77,111,100,117,108,101,59,92,110,32,32,118,97,114,32,114,97,119,83,116,97,116,101,32,61,32,114,97,119,77,111,100,117,108,101,46,115,116,97,116,101,59,92,110,92,110,32,32,47,47,32,83,116,111,114,101,32,116,104,101,32,111,114,105,103,105,110,32,109,111,100,117,108,101,39,115,32,115,116,97,116,101,92,110,32,32,116,104,105,115,46,115,116,97,116,101,32,61,32,40,116,121,112,101,111,102,32,114,97,119,83,116,97,116,101,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,114,97,119,83,116,97,116,101,40,41,32,58,32,114,97,119,83,116,97,116,101,41,32,124,124,32,123,125,59,92,110,125,59,92,110,92,110,118,97,114,32,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,32,61,32,123,32,110,97,109,101,115,112,97,99,101,100,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,32,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,46,110,97,109,101,115,112,97,99,101,100,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,33,33,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,110,97,109,101,115,112,97,99,101,100,92,110,125,59,92,110,92,110,77,111,100,117,108,101,46,112,114,111,116,111,116,121,112,101,46,97,100,100,67,104,105,108,100,32,61,32,102,117,110,99,116,105,111,110,32,97,100,100,67,104,105,108,100,32,40,107,101,121,44,32,109,111,100,117,108,101,41,32,123,92,110,32,32,116,104,105,115,46,95,99,104,105,108,100,114,101,110,91,107,101,121,93,32,61,32,109,111,100,117,108,101,59,92,110,125,59,92,110,92,110,77,111,100,117,108,101,46,112,114,111,116,111,116,121,112,101,46,114,101,109,111,118,101,67,104,105,108,100,32,61,32,102,117,110,99,116,105,111,110,32,114,101,109,111,118,101,67,104,105,108,100,32,40,107,101,121,41,32,123,92,110,32,32,100,101,108,101,116,101,32,116,104,105,115,46,95,99,104,105,108,100,114,101,110,91,107,101,121,93,59,92,110,125,59,92,110,92,110,77,111,100,117,108,101,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,104,105,108,100,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,67,104,105,108,100,32,40,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,99,104,105,108,100,114,101,110,91,107,101,121,93,92,110,125,59,92,110,92,110,77,111,100,117,108,101,46,112,114,111,116,111,116,121,112,101,46,104,97,115,67,104,105,108,100,32,61,32,102,117,110,99,116,105,111,110,32,104,97,115,67,104,105,108,100,32,40,107,101,121,41,32,123,92,110,32,32,114,101,116,117,114,110,32,107,101,121,32,105,110,32,116,104,105,115,46,95,99,104,105,108,100,114,101,110,92,110,125,59,92,110,92,110,77,111,100,117,108,101,46,112,114,111,116,111,116,121,112,101,46,117,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,32,40,114,97,119,77,111,100,117,108,101,41,32,123,92,110,32,32,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,110,97,109,101,115,112,97,99,101,100,32,61,32,114,97,119,77,111,100,117,108,101,46,110,97,109,101,115,112,97,99,101,100,59,92,110,32,32,105,102,32,40,114,97,119,77,111,100,117,108,101,46,97,99,116,105,111,110,115,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,97,99,116,105,111,110,115,32,61,32,114,97,119,77,111,100,117,108,101,46,97,99,116,105,111,110,115,59,92,110,32,32,125,92,110,32,32,105,102,32,40,114,97,119,77,111,100,117,108,101,46,109,117,116,97,116,105,111,110,115,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,109,117,116,97,116,105,111,110,115,32,61,32,114,97,119,77,111,100,117,108,101,46,109,117,116,97,116,105,111,110,115,59,92,110,32,32,125,92,110,32,32,105,102,32,40,114,97,119,77,111,100,117,108,101,46,103,101,116,116,101,114,115,41,32,123,92,110,32,32,32,32,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,103,101,116,116,101,114,115,32,61,32,114,97,119,77,111,100,117,108,101,46,103,101,116,116,101,114,115,59,92,110,32,32,125,92,110,125,59,92,110,92,110,77,111,100,117,108,101,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,67,104,105,108,100,32,61,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,67,104,105,108,100,32,40,102,110,41,32,123,92,110,32,32,102,111,114,69,97,99,104,86,97,108,117,101,40,116,104,105,115,46,95,99,104,105,108,100,114,101,110,44,32,102,110,41,59,92,110,125,59,92,110,92,110,77,111,100,117,108,101,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,71,101,116,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,71,101,116,116,101,114,32,40,102,110,41,32,123,92,110,32,32,105,102,32,40,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,103,101,116,116,101,114,115,41,32,123,92,110,32,32,32,32,102,111,114,69,97,99,104,86,97,108,117,101,40,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,103,101,116,116,101,114,115,44,32,102,110,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,77,111,100,117,108,101,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,65,99,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,65,99,116,105,111,110,32,40,102,110,41,32,123,92,110,32,32,105,102,32,40,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,97,99,116,105,111,110,115,41,32,123,92,110,32,32,32,32,102,111,114,69,97,99,104,86,97,108,117,101,40,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,97,99,116,105,111,110,115,44,32,102,110,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,77,111,100,117,108,101,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,77,117,116,97,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,32,102,111,114,69,97,99,104,77,117,116,97,116,105,111,110,32,40,102,110,41,32,123,92,110,32,32,105,102,32,40,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,109,117,116,97,116,105,111,110,115,41,32,123,92,110,32,32,32,32,102,111,114,69,97,99,104,86,97,108,117,101,40,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,109,117,116,97,116,105,111,110,115,44,32,102,110,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,32,77,111,100,117,108,101,46,112,114,111,116,111,116,121,112,101,44,32,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,32,41,59,92,110,92,110,118,97,114,32,77,111,100,117,108,101,67,111,108,108,101,99,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,32,77,111,100,117,108,101,67,111,108,108,101,99,116,105,111,110,32,40,114,97,119,82,111,111,116,77,111,100,117,108,101,41,32,123,92,110,32,32,47,47,32,114,101,103,105,115,116,101,114,32,114,111,111,116,32,109,111,100,117,108,101,32,40,86,117,101,120,46,83,116,111,114,101,32,111,112,116,105,111,110,115,41,92,110,32,32,116,104,105,115,46,114,101,103,105,115,116,101,114,40,91,93,44,32,114,97,119,82,111,111,116,77,111,100,117,108,101,44,32,102,97,108,115,101,41,59,92,110,125,59,92,110,92,110,77,111,100,117,108,101,67,111,108,108,101,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,32,40,112,97,116,104,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,116,104,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,109,111,100,117,108,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,109,111,100,117,108,101,46,103,101,116,67,104,105,108,100,40,107,101,121,41,92,110,32,32,125,44,32,116,104,105,115,46,114,111,111,116,41,92,110,125,59,92,110,92,110,77,111,100,117,108,101,67,111,108,108,101,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,78,97,109,101,115,112,97,99,101,32,61,32,102,117,110,99,116,105,111,110,32,103,101,116,78,97,109,101,115,112,97,99,101,32,40,112,97,116,104,41,32,123,92,110,32,32,118,97,114,32,109,111,100,117,108,101,32,61,32,116,104,105,115,46,114,111,111,116,59,92,110,32,32,114,101,116,117,114,110,32,112,97,116,104,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,110,97,109,101,115,112,97,99,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,109,111,100,117,108,101,32,61,32,109,111,100,117,108,101,46,103,101,116,67,104,105,108,100,40,107,101,121,41,59,92,110,32,32,32,32,114,101,116,117,114,110,32,110,97,109,101,115,112,97,99,101,32,43,32,40,109,111,100,117,108,101,46,110,97,109,101,115,112,97,99,101,100,32,63,32,107,101,121,32,43,32,39,47,39,32,58,32,39,39,41,92,110,32,32,125,44,32,39,39,41,92,110,125,59,92,110,92,110,77,111,100,117,108,101,67,111,108,108,101,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,117,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,36,49,32,40,114,97,119,82,111,111,116,77,111,100,117,108,101,41,32,123,92,110,32,32,117,112,100,97,116,101,40,91,93,44,32,116,104,105,115,46,114,111,111,116,44,32,114,97,119,82,111,111,116,77,111,100,117,108,101,41,59,92,110,125,59,92,110,92,110,77,111,100,117,108,101,67,111,108,108,101,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,114,101,103,105,115,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,32,40,112,97,116,104,44,32,114,97,119,77,111,100,117,108,101,44,32,114,117,110,116,105,109,101,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,32,32,32,32,105,102,32,40,32,114,117,110,116,105,109,101,32,61,61,61,32,118,111,105,100,32,48,32,41,32,114,117,110,116,105,109,101,32,61,32,116,114,117,101,59,92,110,92,110,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,97,115,115,101,114,116,82,97,119,77,111,100,117,108,101,40,112,97,116,104,44,32,114,97,119,77,111,100,117,108,101,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,110,101,119,77,111,100,117,108,101,32,61,32,110,101,119,32,77,111,100,117,108,101,40,114,97,119,77,111,100,117,108,101,44,32,114,117,110,116,105,109,101,41,59,92,110,32,32,105,102,32,40,112,97,116,104,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,116,104,105,115,46,114,111,111,116,32,61,32,110,101,119,77,111,100,117,108,101,59,92,110,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,116,104,105,115,46,103,101,116,40,112,97,116,104,46,115,108,105,99,101,40,48,44,32,45,49,41,41,59,92,110,32,32,32,32,112,97,114,101,110,116,46,97,100,100,67,104,105,108,100,40,112,97,116,104,91,112,97,116,104,46,108,101,110,103,116,104,32,45,32,49,93,44,32,110,101,119,77,111,100,117,108,101,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,114,101,103,105,115,116,101,114,32,110,101,115,116,101,100,32,109,111,100,117,108,101,115,92,110,32,32,105,102,32,40,114,97,119,77,111,100,117,108,101,46,109,111,100,117,108,101,115,41,32,123,92,110,32,32,32,32,102,111,114,69,97,99,104,86,97,108,117,101,40,114,97,119,77,111,100,117,108,101,46,109,111,100,117,108,101,115,44,32,102,117,110,99,116,105,111,110,32,40,114,97,119,67,104,105,108,100,77,111,100,117,108,101,44,32,107,101,121,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,36,49,46,114,101,103,105,115,116,101,114,40,112,97,116,104,46,99,111,110,99,97,116,40,107,101,121,41,44,32,114,97,119,67,104,105,108,100,77,111,100,117,108,101,44,32,114,117,110,116,105,109,101,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,77,111,100,117,108,101,67,111,108,108,101,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,117,110,114,101,103,105,115,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,117,110,114,101,103,105,115,116,101,114,32,40,112,97,116,104,41,32,123,92,110,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,116,104,105,115,46,103,101,116,40,112,97,116,104,46,115,108,105,99,101,40,48,44,32,45,49,41,41,59,92,110,32,32,118,97,114,32,107,101,121,32,61,32,112,97,116,104,91,112,97,116,104,46,108,101,110,103,116,104,32,45,32,49,93,59,92,110,32,32,118,97,114,32,99,104,105,108,100,32,61,32,112,97,114,101,110,116,46,103,101,116,67,104,105,108,100,40,107,101,121,41,59,92,110,92,110,32,32,105,102,32,40,33,99,104,105,108,100,41,32,123,92,110,32,32,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,92,34,91,118,117,101,120,93,32,116,114,121,105,110,103,32,116,111,32,117,110,114,101,103,105,115,116,101,114,32,109,111,100,117,108,101,32,39,92,34,32,43,32,107,101,121,32,43,32,92,34,39,44,32,119,104,105,99,104,32,105,115,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,92,34,110,111,116,32,114,101,103,105,115,116,101,114,101,100,92,34,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,33,99,104,105,108,100,46,114,117,110,116,105,109,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,112,97,114,101,110,116,46,114,101,109,111,118,101,67,104,105,108,100,40,107,101,121,41,59,92,110,125,59,92,110,92,110,77,111,100,117,108,101,67,111,108,108,101,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,105,115,82,101,103,105,115,116,101,114,101,100,32,61,32,102,117,110,99,116,105,111,110,32,105,115,82,101,103,105,115,116,101,114,101,100,32,40,112,97,116,104,41,32,123,92,110,32,32,118,97,114,32,112,97,114,101,110,116,32,61,32,116,104,105,115,46,103,101,116,40,112,97,116,104,46,115,108,105,99,101,40,48,44,32,45,49,41,41,59,92,110,32,32,118,97,114,32,107,101,121,32,61,32,112,97,116,104,91,112,97,116,104,46,108,101,110,103,116,104,32,45,32,49,93,59,92,110,92,110,32,32,105,102,32,40,112,97,114,101,110,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,112,97,114,101,110,116,46,104,97,115,67,104,105,108,100,40,107,101,121,41,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,102,97,108,115,101,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,32,40,112,97,116,104,44,32,116,97,114,103,101,116,77,111,100,117,108,101,44,32,110,101,119,77,111,100,117,108,101,41,32,123,92,110,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,97,115,115,101,114,116,82,97,119,77,111,100,117,108,101,40,112,97,116,104,44,32,110,101,119,77,111,100,117,108,101,41,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,117,112,100,97,116,101,32,116,97,114,103,101,116,32,109,111,100,117,108,101,92,110,32,32,116,97,114,103,101,116,77,111,100,117,108,101,46,117,112,100,97,116,101,40,110,101,119,77,111,100,117,108,101,41,59,92,110,92,110,32,32,47,47,32,117,112,100,97,116,101,32,110,101,115,116,101,100,32,109,111,100,117,108,101,115,92,110,32,32,105,102,32,40,110,101,119,77,111,100,117,108,101,46,109,111,100,117,108,101,115,41,32,123,92,110,32,32,32,32,102,111,114,32,40,118,97,114,32,107,101,121,32,105,110,32,110,101,119,77,111,100,117,108,101,46,109,111,100,117,108,101,115,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,97,114,103,101,116,77,111,100,117,108,101,46,103,101,116,67,104,105,108,100,40,107,101,121,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,91,118,117,101,120,93,32,116,114,121,105,110,103,32,116,111,32,97,100,100,32,97,32,110,101,119,32,109,111,100,117,108,101,32,39,92,34,32,43,32,107,101,121,32,43,32,92,34,39,32,111,110,32,104,111,116,32,114,101,108,111,97,100,105,110,103,44,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,39,109,97,110,117,97,108,32,114,101,108,111,97,100,32,105,115,32,110,101,101,100,101,100,39,92,110,32,32,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,117,112,100,97,116,101,40,92,110,32,32,32,32,32,32,32,32,112,97,116,104,46,99,111,110,99,97,116,40,107,101,121,41,44,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,77,111,100,117,108,101,46,103,101,116,67,104,105,108,100,40,107,101,121,41,44,92,110,32,32,32,32,32,32,32,32,110,101,119,77,111,100,117,108,101,46,109,111,100,117,108,101,115,91,107,101,121,93,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,118,97,114,32,102,117,110,99,116,105,111,110,65,115,115,101,114,116,32,61,32,123,92,110,32,32,97,115,115,101,114,116,58,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,59,32,125,44,92,110,32,32,101,120,112,101,99,116,101,100,58,32,39,102,117,110,99,116,105,111,110,39,92,110,125,59,92,110,92,110,118,97,114,32,111,98,106,101,99,116,65,115,115,101,114,116,32,61,32,123,92,110,32,32,97,115,115,101,114,116,58,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,124,124,92,110,32,32,32,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,39,111,98,106,101,99,116,39,32,38,38,32,116,121,112,101,111,102,32,118,97,108,117,101,46,104,97,110,100,108,101,114,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,41,59,32,125,44,92,110,32,32,101,120,112,101,99,116,101,100,58,32,39,102,117,110,99,116,105,111,110,32,111,114,32,111,98,106,101,99,116,32,119,105,116,104,32,92,34,104,97,110,100,108,101,114,92,34,32,102,117,110,99,116,105,111,110,39,92,110,125,59,92,110,92,110,118,97,114,32,97,115,115,101,114,116,84,121,112,101,115,32,61,32,123,92,110,32,32,103,101,116,116,101,114,115,58,32,102,117,110,99,116,105,111,110,65,115,115,101,114,116,44,92,110,32,32,109,117,116,97,116,105,111,110,115,58,32,102,117,110,99,116,105,111,110,65,115,115,101,114,116,44,92,110,32,32,97,99,116,105,111,110,115,58,32,111,98,106,101,99,116,65,115,115,101,114,116,92,110,125,59,92,110,92,110,102,117,110,99,116,105,111,110,32,97,115,115,101,114,116,82,97,119,77,111,100,117,108,101,32,40,112,97,116,104,44,32,114,97,119,77,111,100,117,108,101,41,32,123,92,110,32,32,79,98,106,101,99,116,46,107,101,121,115,40,97,115,115,101,114,116,84,121,112,101,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,92,110,32,32,32,32,105,102,32,40,33,114,97,119,77,111,100,117,108,101,91,107,101,121,93,41,32,123,32,114,101,116,117,114,110,32,125,92,110,92,110,32,32,32,32,118,97,114,32,97,115,115,101,114,116,79,112,116,105,111,110,115,32,61,32,97,115,115,101,114,116,84,121,112,101,115,91,107,101,121,93,59,92,110,92,110,32,32,32,32,102,111,114,69,97,99,104,86,97,108,117,101,40,114,97,119,77,111,100,117,108,101,91,107,101,121,93,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,44,32,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,97,115,115,101,114,116,40,92,110,32,32,32,32,32,32,32,32,97,115,115,101,114,116,79,112,116,105,111,110,115,46,97,115,115,101,114,116,40,118,97,108,117,101,41,44,92,110,32,32,32,32,32,32,32,32,109,97,107,101,65,115,115,101,114,116,105,111,110,77,101,115,115,97,103,101,40,112,97,116,104,44,32,107,101,121,44,32,116,121,112,101,44,32,118,97,108,117,101,44,32,97,115,115,101,114,116,79,112,116,105,111,110,115,46,101,120,112,101,99,116,101,100,41,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,97,107,101,65,115,115,101,114,116,105,111,110,77,101,115,115,97,103,101,32,40,112,97,116,104,44,32,107,101,121,44,32,116,121,112,101,44,32,118,97,108,117,101,44,32,101,120,112,101,99,116,101,100,41,32,123,92,110,32,32,118,97,114,32,98,117,102,32,61,32,107,101,121,32,43,32,92,34,32,115,104,111,117,108,100,32,98,101,32,92,34,32,43,32,101,120,112,101,99,116,101,100,32,43,32,92,34,32,98,117,116,32,92,92,92,34,92,34,32,43,32,107,101,121,32,43,32,92,34,46,92,34,32,43,32,116,121,112,101,32,43,32,92,34,92,92,92,34,92,34,59,92,110,32,32,105,102,32,40,112,97,116,104,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,98,117,102,32,43,61,32,92,34,32,105,110,32,109,111,100,117,108,101,32,92,92,92,34,92,34,32,43,32,40,112,97,116,104,46,106,111,105,110,40,39,46,39,41,41,32,43,32,92,34,92,92,92,34,92,34,59,92,110,32,32,125,92,110,32,32,98,117,102,32,43,61,32,92,34,32,105,115,32,92,34,32,43,32,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,118,97,108,117,101,41,41,32,43,32,92,34,46,92,34,59,92,110,32,32,114,101,116,117,114,110,32,98,117,102,92,110,125,92,110,92,110,118,97,114,32,86,117,101,59,32,47,47,32,98,105,110,100,32,111,110,32,105,110,115,116,97,108,108,92,110,92,110,118,97,114,32,83,116,111,114,101,32,61,32,102,117,110,99,116,105,111,110,32,83,116,111,114,101,32,40,111,112,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,32,32,105,102,32,40,32,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,32,41,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,92,110,32,32,47,47,32,65,117,116,111,32,105,110,115,116,97,108,108,32,105,102,32,105,116,32,105,115,32,110,111,116,32,100,111,110,101,32,121,101,116,32,97,110,100,32,96,119,105,110,100,111,119,96,32,104,97,115,32,96,86,117,101,96,46,92,110,32,32,47,47,32,84,111,32,97,108,108,111,119,32,117,115,101,114,115,32,116,111,32,97,118,111,105,100,32,97,117,116,111,45,105,110,115,116,97,108,108,97,116,105,111,110,32,105,110,32,115,111,109,101,32,99,97,115,101,115,44,92,110,32,32,47,47,32,116,104,105,115,32,99,111,100,101,32,115,104,111,117,108,100,32,98,101,32,112,108,97,99,101,100,32,104,101,114,101,46,32,83,101,101,32,35,55,51,49,92,110,32,32,105,102,32,40,33,86,117,101,32,38,38,32,116,121,112,101,111,102,32,119,105,110,100,111,119,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,119,105,110,100,111,119,46,86,117,101,41,32,123,92,110,32,32,32,32,105,110,115,116,97,108,108,40,119,105,110,100,111,119,46,86,117,101,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,97,115,115,101,114,116,40,86,117,101,44,32,92,34,109,117,115,116,32,99,97,108,108,32,86,117,101,46,117,115,101,40,86,117,101,120,41,32,98,101,102,111,114,101,32,99,114,101,97,116,105,110,103,32,97,32,115,116,111,114,101,32,105,110,115,116,97,110,99,101,46,92,34,41,59,92,110,32,32,32,32,97,115,115,101,114,116,40,116,121,112,101,111,102,32,80,114,111,109,105,115,101,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,44,32,92,34,118,117,101,120,32,114,101,113,117,105,114,101,115,32,97,32,80,114,111,109,105,115,101,32,112,111,108,121,102,105,108,108,32,105,110,32,116,104,105,115,32,98,114,111,119,115,101,114,46,92,34,41,59,92,110,32,32,32,32,97,115,115,101,114,116,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,83,116,111,114,101,44,32,92,34,115,116,111,114,101,32,109,117,115,116,32,98,101,32,99,97,108,108,101,100,32,119,105,116,104,32,116,104,101,32,110,101,119,32,111,112,101,114,97,116,111,114,46,92,34,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,112,108,117,103,105,110,115,32,61,32,111,112,116,105,111,110,115,46,112,108,117,103,105,110,115,59,32,105,102,32,40,32,112,108,117,103,105,110,115,32,61,61,61,32,118,111,105,100,32,48,32,41,32,112,108,117,103,105,110,115,32,61,32,91,93,59,92,110,32,32,118,97,114,32,115,116,114,105,99,116,32,61,32,111,112,116,105,111,110,115,46,115,116,114,105,99,116,59,32,105,102,32,40,32,115,116,114,105,99,116,32,61,61,61,32,118,111,105,100,32,48,32,41,32,115,116,114,105,99,116,32,61,32,102,97,108,115,101,59,92,110,92,110,32,32,47,47,32,115,116,111,114,101,32,105,110,116,101,114,110,97,108,32,115,116,97,116,101,92,110,32,32,116,104,105,115,46,95,99,111,109,109,105,116,116,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,116,104,105,115,46,95,97,99,116,105,111,110,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,116,104,105,115,46,95,97,99,116,105,111,110,83,117,98,115,99,114,105,98,101,114,115,32,61,32,91,93,59,92,110,32,32,116,104,105,115,46,95,109,117,116,97,116,105,111,110,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,116,104,105,115,46,95,119,114,97,112,112,101,100,71,101,116,116,101,114,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,116,104,105,115,46,95,109,111,100,117,108,101,115,32,61,32,110,101,119,32,77,111,100,117,108,101,67,111,108,108,101,99,116,105,111,110,40,111,112,116,105,111,110,115,41,59,92,110,32,32,116,104,105,115,46,95,109,111,100,117,108,101,115,78,97,109,101,115,112,97,99,101,77,97,112,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,116,104,105,115,46,95,115,117,98,115,99,114,105,98,101,114,115,32,61,32,91,93,59,92,110,32,32,116,104,105,115,46,95,119,97,116,99,104,101,114,86,77,32,61,32,110,101,119,32,86,117,101,40,41,59,92,110,32,32,116,104,105,115,46,95,109,97,107,101,76,111,99,97,108,71,101,116,116,101,114,115,67,97,99,104,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,92,110,32,32,47,47,32,98,105,110,100,32,99,111,109,109,105,116,32,97,110,100,32,100,105,115,112,97,116,99,104,32,116,111,32,115,101,108,102,92,110,32,32,118,97,114,32,115,116,111,114,101,32,61,32,116,104,105,115,59,92,110,32,32,118,97,114,32,114,101,102,32,61,32,116,104,105,115,59,92,110,32,32,118,97,114,32,100,105,115,112,97,116,99,104,32,61,32,114,101,102,46,100,105,115,112,97,116,99,104,59,92,110,32,32,118,97,114,32,99,111,109,109,105,116,32,61,32,114,101,102,46,99,111,109,109,105,116,59,92,110,32,32,116,104,105,115,46,100,105,115,112,97,116,99,104,32,61,32,102,117,110,99,116,105,111,110,32,98,111,117,110,100,68,105,115,112,97,116,99,104,32,40,116,121,112,101,44,32,112,97,121,108,111,97,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,100,105,115,112,97,116,99,104,46,99,97,108,108,40,115,116,111,114,101,44,32,116,121,112,101,44,32,112,97,121,108,111,97,100,41,92,110,32,32,125,59,92,110,32,32,116,104,105,115,46,99,111,109,109,105,116,32,61,32,102,117,110,99,116,105,111,110,32,98,111,117,110,100,67,111,109,109,105,116,32,40,116,121,112,101,44,32,112,97,121,108,111,97,100,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,99,111,109,109,105,116,46,99,97,108,108,40,115,116,111,114,101,44,32,116,121,112,101,44,32,112,97,121,108,111,97,100,44,32,111,112,116,105,111,110,115,41,92,110,32,32,125,59,92,110,92,110,32,32,47,47,32,115,116,114,105,99,116,32,109,111,100,101,92,110,32,32,116,104,105,115,46,115,116,114,105,99,116,32,61,32,115,116,114,105,99,116,59,92,110,92,110,32,32,118,97,114,32,115,116,97,116,101,32,61,32,116,104,105,115,46,95,109,111,100,117,108,101,115,46,114,111,111,116,46,115,116,97,116,101,59,92,110,92,110,32,32,47,47,32,105,110,105,116,32,114,111,111,116,32,109,111,100,117,108,101,46,92,110,32,32,47,47,32,116,104,105,115,32,97,108,115,111,32,114,101,99,117,114,115,105,118,101,108,121,32,114,101,103,105,115,116,101,114,115,32,97,108,108,32,115,117,98,45,109,111,100,117,108,101,115,92,110,32,32,47,47,32,97,110,100,32,99,111,108,108,101,99,116,115,32,97,108,108,32,109,111,100,117,108,101,32,103,101,116,116,101,114,115,32,105,110,115,105,100,101,32,116,104,105,115,46,95,119,114,97,112,112,101,100,71,101,116,116,101,114,115,92,110,32,32,105,110,115,116,97,108,108,77,111,100,117,108,101,40,116,104,105,115,44,32,115,116,97,116,101,44,32,91,93,44,32,116,104,105,115,46,95,109,111,100,117,108,101,115,46,114,111,111,116,41,59,92,110,92,110,32,32,47,47,32,105,110,105,116,105,97,108,105,122,101,32,116,104,101,32,115,116,111,114,101,32,118,109,44,32,119,104,105,99,104,32,105,115,32,114,101,115,112,111,110,115,105,98,108,101,32,102,111,114,32,116,104,101,32,114,101,97,99,116,105,118,105,116,121,92,110,32,32,47,47,32,40,97,108,115,111,32,114,101,103,105,115,116,101,114,115,32,95,119,114,97,112,112,101,100,71,101,116,116,101,114,115,32,97,115,32,99,111,109,112,117,116,101,100,32,112,114,111,112,101,114,116,105,101,115,41,92,110,32,32,114,101,115,101,116,83,116,111,114,101,86,77,40,116,104,105,115,44,32,115,116,97,116,101,41,59,92,110,92,110,32,32,47,47,32,97,112,112,108,121,32,112,108,117,103,105,110,115,92,110,32,32,112,108,117,103,105,110,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,108,117,103,105,110,41,32,123,32,114,101,116,117,114,110,32,112,108,117,103,105,110,40,116,104,105,115,36,49,41,59,32,125,41,59,92,110,92,110,32,32,118,97,114,32,117,115,101,68,101,118,116,111,111,108,115,32,61,32,111,112,116,105,111,110,115,46,100,101,118,116,111,111,108,115,32,33,61,61,32,117,110,100,101,102,105,110,101,100,32,63,32,111,112,116,105,111,110,115,46,100,101,118,116,111,111,108,115,32,58,32,86,117,101,46,99,111,110,102,105,103,46,100,101,118,116,111,111,108,115,59,92,110,32,32,105,102,32,40,117,115,101,68,101,118,116,111,111,108,115,41,32,123,92,110,32,32,32,32,100,101,118,116,111,111,108,80,108,117,103,105,110,40,116,104,105,115,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,118,97,114,32,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,36,49,32,61,32,123,32,115,116,97,116,101,58,32,123,32,99,111,110,102,105,103,117,114,97,98,108,101,58,32,116,114,117,101,32,125,32,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,36,49,46,115,116,97,116,101,46,103,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,118,109,46,95,100,97,116,97,46,36,36,115,116,97,116,101,92,110,125,59,92,110,92,110,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,36,49,46,115,116,97,116,101,46,115,101,116,32,61,32,102,117,110,99,116,105,111,110,32,40,118,41,32,123,92,110,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,97,115,115,101,114,116,40,102,97,108,115,101,44,32,92,34,117,115,101,32,115,116,111,114,101,46,114,101,112,108,97,99,101,83,116,97,116,101,40,41,32,116,111,32,101,120,112,108,105,99,105,116,32,114,101,112,108,97,99,101,32,115,116,111,114,101,32,115,116,97,116,101,46,92,34,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,83,116,111,114,101,46,112,114,111,116,111,116,121,112,101,46,99,111,109,109,105,116,32,61,32,102,117,110,99,116,105,111,110,32,99,111,109,109,105,116,32,40,95,116,121,112,101,44,32,95,112,97,121,108,111,97,100,44,32,95,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,47,47,32,99,104,101,99,107,32,111,98,106,101,99,116,45,115,116,121,108,101,32,99,111,109,109,105,116,92,110,32,32,118,97,114,32,114,101,102,32,61,32,117,110,105,102,121,79,98,106,101,99,116,83,116,121,108,101,40,95,116,121,112,101,44,32,95,112,97,121,108,111,97,100,44,32,95,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,114,101,102,46,116,121,112,101,59,92,110,32,32,32,32,118,97,114,32,112,97,121,108,111,97,100,32,61,32,114,101,102,46,112,97,121,108,111,97,100,59,92,110,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,114,101,102,46,111,112,116,105,111,110,115,59,92,110,92,110,32,32,118,97,114,32,109,117,116,97,116,105,111,110,32,61,32,123,32,116,121,112,101,58,32,116,121,112,101,44,32,112,97,121,108,111,97,100,58,32,112,97,121,108,111,97,100,32,125,59,92,110,32,32,118,97,114,32,101,110,116,114,121,32,61,32,116,104,105,115,46,95,109,117,116,97,116,105,111,110,115,91,116,121,112,101,93,59,92,110,32,32,105,102,32,40,33,101,110,116,114,121,41,32,123,92,110,32,32,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,40,92,34,91,118,117,101,120,93,32,117,110,107,110,111,119,110,32,109,117,116,97,116,105,111,110,32,116,121,112,101,58,32,92,34,32,43,32,116,121,112,101,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,116,104,105,115,46,95,119,105,116,104,67,111,109,109,105,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,101,110,116,114,121,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,99,111,109,109,105,116,73,116,101,114,97,116,111,114,32,40,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,40,112,97,121,108,111,97,100,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,116,104,105,115,46,95,115,117,98,115,99,114,105,98,101,114,115,92,110,32,32,32,32,46,115,108,105,99,101,40,41,32,47,47,32,115,104,97,108,108,111,119,32,99,111,112,121,32,116,111,32,112,114,101,118,101,110,116,32,105,116,101,114,97,116,111,114,32,105,110,118,97,108,105,100,97,116,105,111,110,32,105,102,32,115,117,98,115,99,114,105,98,101,114,32,115,121,110,99,104,114,111,110,111,117,115,108,121,32,99,97,108,108,115,32,117,110,115,117,98,115,99,114,105,98,101,92,110,32,32,32,32,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,115,117,98,41,32,123,32,114,101,116,117,114,110,32,115,117,98,40,109,117,116,97,116,105,111,110,44,32,116,104,105,115,36,49,46,115,116,97,116,101,41,59,32,125,41,59,92,110,92,110,32,32,105,102,32,40,92,110,32,32,32,32,40,32,116,114,117,101,41,32,38,38,92,110,32,32,32,32,111,112,116,105,111,110,115,32,38,38,32,111,112,116,105,111,110,115,46,115,105,108,101,110,116,92,110,32,32,41,32,123,92,110,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,110,32,32,32,32,32,32,92,34,91,118,117,101,120,93,32,109,117,116,97,116,105,111,110,32,116,121,112,101,58,32,92,34,32,43,32,116,121,112,101,32,43,32,92,34,46,32,83,105,108,101,110,116,32,111,112,116,105,111,110,32,104,97,115,32,98,101,101,110,32,114,101,109,111,118,101,100,46,32,92,34,32,43,92,110,32,32,32,32,32,32,39,85,115,101,32,116,104,101,32,102,105,108,116,101,114,32,102,117,110,99,116,105,111,110,97,108,105,116,121,32,105,110,32,116,104,101,32,118,117,101,45,100,101,118,116,111,111,108,115,39,92,110,32,32,32,32,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,83,116,111,114,101,46,112,114,111,116,111,116,121,112,101,46,100,105,115,112,97,116,99,104,32,61,32,102,117,110,99,116,105,111,110,32,100,105,115,112,97,116,99,104,32,40,95,116,121,112,101,44,32,95,112,97,121,108,111,97,100,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,47,47,32,99,104,101,99,107,32,111,98,106,101,99,116,45,115,116,121,108,101,32,100,105,115,112,97,116,99,104,92,110,32,32,118,97,114,32,114,101,102,32,61,32,117,110,105,102,121,79,98,106,101,99,116,83,116,121,108,101,40,95,116,121,112,101,44,32,95,112,97,121,108,111,97,100,41,59,92,110,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,114,101,102,46,116,121,112,101,59,92,110,32,32,32,32,118,97,114,32,112,97,121,108,111,97,100,32,61,32,114,101,102,46,112,97,121,108,111,97,100,59,92,110,92,110,32,32,118,97,114,32,97,99,116,105,111,110,32,61,32,123,32,116,121,112,101,58,32,116,121,112,101,44,32,112,97,121,108,111,97,100,58,32,112,97,121,108,111,97,100,32,125,59,92,110,32,32,118,97,114,32,101,110,116,114,121,32,61,32,116,104,105,115,46,95,97,99,116,105,111,110,115,91,116,121,112,101,93,59,92,110,32,32,105,102,32,40,33,101,110,116,114,121,41,32,123,92,110,32,32,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,40,92,34,91,118,117,101,120,93,32,117,110,107,110,111,119,110,32,97,99,116,105,111,110,32,116,121,112,101,58,32,92,34,32,43,32,116,121,112,101,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,116,104,105,115,46,95,97,99,116,105,111,110,83,117,98,115,99,114,105,98,101,114,115,92,110,32,32,32,32,32,32,46,115,108,105,99,101,40,41,32,47,47,32,115,104,97,108,108,111,119,32,99,111,112,121,32,116,111,32,112,114,101,118,101,110,116,32,105,116,101,114,97,116,111,114,32,105,110,118,97,108,105,100,97,116,105,111,110,32,105,102,32,115,117,98,115,99,114,105,98,101,114,32,115,121,110,99,104,114,111,110,111,117,115,108,121,32,99,97,108,108,115,32,117,110,115,117,98,115,99,114,105,98,101,92,110,32,32,32,32,32,32,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,117,98,41,32,123,32,114,101,116,117,114,110,32,115,117,98,46,98,101,102,111,114,101,59,32,125,41,92,110,32,32,32,32,32,32,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,115,117,98,41,32,123,32,114,101,116,117,114,110,32,115,117,98,46,98,101,102,111,114,101,40,97,99,116,105,111,110,44,32,116,104,105,115,36,49,46,115,116,97,116,101,41,59,32,125,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,34,91,118,117,101,120,93,32,101,114,114,111,114,32,105,110,32,98,101,102,111,114,101,32,97,99,116,105,111,110,32,115,117,98,115,99,114,105,98,101,114,115,58,32,92,34,41,59,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,114,101,115,117,108,116,32,61,32,101,110,116,114,121,46,108,101,110,103,116,104,32,62,32,49,92,110,32,32,32,32,63,32,80,114,111,109,105,115,101,46,97,108,108,40,101,110,116,114,121,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,104,97,110,100,108,101,114,41,32,123,32,114,101,116,117,114,110,32,104,97,110,100,108,101,114,40,112,97,121,108,111,97,100,41,59,32,125,41,41,92,110,32,32,32,32,58,32,101,110,116,114,121,91,48,93,40,112,97,121,108,111,97,100,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,32,40,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,92,110,32,32,32,32,114,101,115,117,108,116,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,114,101,115,41,32,123,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,95,97,99,116,105,111,110,83,117,98,115,99,114,105,98,101,114,115,92,110,32,32,32,32,32,32,32,32,32,32,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,117,98,41,32,123,32,114,101,116,117,114,110,32,115,117,98,46,97,102,116,101,114,59,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,115,117,98,41,32,123,32,114,101,116,117,114,110,32,115,117,98,46,97,102,116,101,114,40,97,99,116,105,111,110,44,32,116,104,105,115,36,49,46,115,116,97,116,101,41,59,32,125,41,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,34,91,118,117,101,120,93,32,101,114,114,111,114,32,105,110,32,97,102,116,101,114,32,97,99,116,105,111,110,32,115,117,98,115,99,114,105,98,101,114,115,58,32,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,115,111,108,118,101,40,114,101,115,41,59,92,110,32,32,32,32,125,44,32,102,117,110,99,116,105,111,110,32,40,101,114,114,111,114,41,32,123,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,36,49,46,95,97,99,116,105,111,110,83,117,98,115,99,114,105,98,101,114,115,92,110,32,32,32,32,32,32,32,32,32,32,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,32,40,115,117,98,41,32,123,32,114,101,116,117,114,110,32,115,117,98,46,101,114,114,111,114,59,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,115,117,98,41,32,123,32,114,101,116,117,114,110,32,115,117,98,46,101,114,114,111,114,40,97,99,116,105,111,110,44,32,116,104,105,115,36,49,46,115,116,97,116,101,44,32,101,114,114,111,114,41,59,32,125,41,59,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,34,91,118,117,101,120,93,32,101,114,114,111,114,32,105,110,32,101,114,114,111,114,32,97,99,116,105,111,110,32,115,117,98,115,99,114,105,98,101,114,115,58,32,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,106,101,99,116,40,101,114,114,111,114,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,41,92,110,125,59,92,110,92,110,83,116,111,114,101,46,112,114,111,116,111,116,121,112,101,46,115,117,98,115,99,114,105,98,101,32,61,32,102,117,110,99,116,105,111,110,32,115,117,98,115,99,114,105,98,101,32,40,102,110,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,103,101,110,101,114,105,99,83,117,98,115,99,114,105,98,101,40,102,110,44,32,116,104,105,115,46,95,115,117,98,115,99,114,105,98,101,114,115,44,32,111,112,116,105,111,110,115,41,92,110,125,59,92,110,92,110,83,116,111,114,101,46,112,114,111,116,111,116,121,112,101,46,115,117,98,115,99,114,105,98,101,65,99,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,32,115,117,98,115,99,114,105,98,101,65,99,116,105,111,110,32,40,102,110,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,115,117,98,115,32,61,32,116,121,112,101,111,102,32,102,110,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,32,63,32,123,32,98,101,102,111,114,101,58,32,102,110,32,125,32,58,32,102,110,59,92,110,32,32,114,101,116,117,114,110,32,103,101,110,101,114,105,99,83,117,98,115,99,114,105,98,101,40,115,117,98,115,44,32,116,104,105,115,46,95,97,99,116,105,111,110,83,117,98,115,99,114,105,98,101,114,115,44,32,111,112,116,105,111,110,115,41,92,110,125,59,92,110,92,110,83,116,111,114,101,46,112,114,111,116,111,116,121,112,101,46,119,97,116,99,104,32,61,32,102,117,110,99,116,105,111,110,32,119,97,116,99,104,32,40,103,101,116,116,101,114,44,32,99,98,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,97,115,115,101,114,116,40,116,121,112,101,111,102,32,103,101,116,116,101,114,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,44,32,92,34,115,116,111,114,101,46,119,97,116,99,104,32,111,110,108,121,32,97,99,99,101,112,116,115,32,97,32,102,117,110,99,116,105,111,110,46,92,34,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,119,97,116,99,104,101,114,86,77,46,36,119,97,116,99,104,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,103,101,116,116,101,114,40,116,104,105,115,36,49,46,115,116,97,116,101,44,32,116,104,105,115,36,49,46,103,101,116,116,101,114,115,41,59,32,125,44,32,99,98,44,32,111,112,116,105,111,110,115,41,92,110,125,59,92,110,92,110,83,116,111,114,101,46,112,114,111,116,111,116,121,112,101,46,114,101,112,108,97,99,101,83,116,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,114,101,112,108,97,99,101,83,116,97,116,101,32,40,115,116,97,116,101,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,116,104,105,115,46,95,119,105,116,104,67,111,109,109,105,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,116,104,105,115,36,49,46,95,118,109,46,95,100,97,116,97,46,36,36,115,116,97,116,101,32,61,32,115,116,97,116,101,59,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,83,116,111,114,101,46,112,114,111,116,111,116,121,112,101,46,114,101,103,105,115,116,101,114,77,111,100,117,108,101,32,61,32,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,77,111,100,117,108,101,32,40,112,97,116,104,44,32,114,97,119,77,111,100,117,108,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,105,102,32,40,32,111,112,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,32,41,32,111,112,116,105,111,110,115,32,61,32,123,125,59,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,112,97,116,104,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,32,112,97,116,104,32,61,32,91,112,97,116,104,93,59,32,125,92,110,92,110,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,97,115,115,101,114,116,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,112,97,116,104,41,44,32,92,34,109,111,100,117,108,101,32,112,97,116,104,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,111,114,32,97,110,32,65,114,114,97,121,46,92,34,41,59,92,110,32,32,32,32,97,115,115,101,114,116,40,112,97,116,104,46,108,101,110,103,116,104,32,62,32,48,44,32,39,99,97,110,110,111,116,32,114,101,103,105,115,116,101,114,32,116,104,101,32,114,111,111,116,32,109,111,100,117,108,101,32,98,121,32,117,115,105,110,103,32,114,101,103,105,115,116,101,114,77,111,100,117,108,101,46,39,41,59,92,110,32,32,125,92,110,92,110,32,32,116,104,105,115,46,95,109,111,100,117,108,101,115,46,114,101,103,105,115,116,101,114,40,112,97,116,104,44,32,114,97,119,77,111,100,117,108,101,41,59,92,110,32,32,105,110,115,116,97,108,108,77,111,100,117,108,101,40,116,104,105,115,44,32,116,104,105,115,46,115,116,97,116,101,44,32,112,97,116,104,44,32,116,104,105,115,46,95,109,111,100,117,108,101,115,46,103,101,116,40,112,97,116,104,41,44,32,111,112,116,105,111,110,115,46,112,114,101,115,101,114,118,101,83,116,97,116,101,41,59,92,110,32,32,47,47,32,114,101,115,101,116,32,115,116,111,114,101,32,116,111,32,117,112,100,97,116,101,32,103,101,116,116,101,114,115,46,46,46,92,110,32,32,114,101,115,101,116,83,116,111,114,101,86,77,40,116,104,105,115,44,32,116,104,105,115,46,115,116,97,116,101,41,59,92,110,125,59,92,110,92,110,83,116,111,114,101,46,112,114,111,116,111,116,121,112,101,46,117,110,114,101,103,105,115,116,101,114,77,111,100,117,108,101,32,61,32,102,117,110,99,116,105,111,110,32,117,110,114,101,103,105,115,116,101,114,77,111,100,117,108,101,32,40,112,97,116,104,41,32,123,92,110,32,32,32,32,118,97,114,32,116,104,105,115,36,49,32,61,32,116,104,105,115,59,92,110,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,112,97,116,104,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,32,112,97,116,104,32,61,32,91,112,97,116,104,93,59,32,125,92,110,92,110,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,97,115,115,101,114,116,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,112,97,116,104,41,44,32,92,34,109,111,100,117,108,101,32,112,97,116,104,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,111,114,32,97,110,32,65,114,114,97,121,46,92,34,41,59,92,110,32,32,125,92,110,92,110,32,32,116,104,105,115,46,95,109,111,100,117,108,101,115,46,117,110,114,101,103,105,115,116,101,114,40,112,97,116,104,41,59,92,110,32,32,116,104,105,115,46,95,119,105,116,104,67,111,109,109,105,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,83,116,97,116,101,32,61,32,103,101,116,78,101,115,116,101,100,83,116,97,116,101,40,116,104,105,115,36,49,46,115,116,97,116,101,44,32,112,97,116,104,46,115,108,105,99,101,40,48,44,32,45,49,41,41,59,92,110,32,32,32,32,86,117,101,46,100,101,108,101,116,101,40,112,97,114,101,110,116,83,116,97,116,101,44,32,112,97,116,104,91,112,97,116,104,46,108,101,110,103,116,104,32,45,32,49,93,41,59,92,110,32,32,125,41,59,92,110,32,32,114,101,115,101,116,83,116,111,114,101,40,116,104,105,115,41,59,92,110,125,59,92,110,92,110,83,116,111,114,101,46,112,114,111,116,111,116,121,112,101,46,104,97,115,77,111,100,117,108,101,32,61,32,102,117,110,99,116,105,111,110,32,104,97,115,77,111,100,117,108,101,32,40,112,97,116,104,41,32,123,92,110,32,32,105,102,32,40,116,121,112,101,111,102,32,112,97,116,104,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,123,32,112,97,116,104,32,61,32,91,112,97,116,104,93,59,32,125,92,110,92,110,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,97,115,115,101,114,116,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,112,97,116,104,41,44,32,92,34,109,111,100,117,108,101,32,112,97,116,104,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,111,114,32,97,110,32,65,114,114,97,121,46,92,34,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,116,104,105,115,46,95,109,111,100,117,108,101,115,46,105,115,82,101,103,105,115,116,101,114,101,100,40,112,97,116,104,41,92,110,125,59,92,110,92,110,83,116,111,114,101,46,112,114,111,116,111,116,121,112,101,46,104,111,116,85,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,104,111,116,85,112,100,97,116,101,32,40,110,101,119,79,112,116,105,111,110,115,41,32,123,92,110,32,32,116,104,105,115,46,95,109,111,100,117,108,101,115,46,117,112,100,97,116,101,40,110,101,119,79,112,116,105,111,110,115,41,59,92,110,32,32,114,101,115,101,116,83,116,111,114,101,40,116,104,105,115,44,32,116,114,117,101,41,59,92,110,125,59,92,110,92,110,83,116,111,114,101,46,112,114,111,116,111,116,121,112,101,46,95,119,105,116,104,67,111,109,109,105,116,32,61,32,102,117,110,99,116,105,111,110,32,95,119,105,116,104,67,111,109,109,105,116,32,40,102,110,41,32,123,92,110,32,32,118,97,114,32,99,111,109,109,105,116,116,105,110,103,32,61,32,116,104,105,115,46,95,99,111,109,109,105,116,116,105,110,103,59,92,110,32,32,116,104,105,115,46,95,99,111,109,109,105,116,116,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,102,110,40,41,59,92,110,32,32,116,104,105,115,46,95,99,111,109,109,105,116,116,105,110,103,32,61,32,99,111,109,109,105,116,116,105,110,103,59,92,110,125,59,92,110,92,110,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,32,83,116,111,114,101,46,112,114,111,116,111,116,121,112,101,44,32,112,114,111,116,111,116,121,112,101,65,99,99,101,115,115,111,114,115,36,49,32,41,59,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,110,101,114,105,99,83,117,98,115,99,114,105,98,101,32,40,102,110,44,32,115,117,98,115,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,105,102,32,40,115,117,98,115,46,105,110,100,101,120,79,102,40,102,110,41,32,60,32,48,41,32,123,92,110,32,32,32,32,111,112,116,105,111,110,115,32,38,38,32,111,112,116,105,111,110,115,46,112,114,101,112,101,110,100,92,110,32,32,32,32,32,32,63,32,115,117,98,115,46,117,110,115,104,105,102,116,40,102,110,41,92,110,32,32,32,32,32,32,58,32,115,117,98,115,46,112,117,115,104,40,102,110,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,118,97,114,32,105,32,61,32,115,117,98,115,46,105,110,100,101,120,79,102,40,102,110,41,59,92,110,32,32,32,32,105,102,32,40,105,32,62,32,45,49,41,32,123,92,110,32,32,32,32,32,32,115,117,98,115,46,115,112,108,105,99,101,40,105,44,32,49,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,101,116,83,116,111,114,101,32,40,115,116,111,114,101,44,32,104,111,116,41,32,123,92,110,32,32,115,116,111,114,101,46,95,97,99,116,105,111,110,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,115,116,111,114,101,46,95,109,117,116,97,116,105,111,110,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,115,116,111,114,101,46,95,119,114,97,112,112,101,100,71,101,116,116,101,114,115,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,115,116,111,114,101,46,95,109,111,100,117,108,101,115,78,97,109,101,115,112,97,99,101,77,97,112,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,118,97,114,32,115,116,97,116,101,32,61,32,115,116,111,114,101,46,115,116,97,116,101,59,92,110,32,32,47,47,32,105,110,105,116,32,97,108,108,32,109,111,100,117,108,101,115,92,110,32,32,105,110,115,116,97,108,108,77,111,100,117,108,101,40,115,116,111,114,101,44,32,115,116,97,116,101,44,32,91,93,44,32,115,116,111,114,101,46,95,109,111,100,117,108,101,115,46,114,111,111,116,44,32,116,114,117,101,41,59,92,110,32,32,47,47,32,114,101,115,101,116,32,118,109,92,110,32,32,114,101,115,101,116,83,116,111,114,101,86,77,40,115,116,111,114,101,44,32,115,116,97,116,101,44,32,104,111,116,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,101,116,83,116,111,114,101,86,77,32,40,115,116,111,114,101,44,32,115,116,97,116,101,44,32,104,111,116,41,32,123,92,110,32,32,118,97,114,32,111,108,100,86,109,32,61,32,115,116,111,114,101,46,95,118,109,59,92,110,92,110,32,32,47,47,32,98,105,110,100,32,115,116,111,114,101,32,112,117,98,108,105,99,32,103,101,116,116,101,114,115,92,110,32,32,115,116,111,114,101,46,103,101,116,116,101,114,115,32,61,32,123,125,59,92,110,32,32,47,47,32,114,101,115,101,116,32,108,111,99,97,108,32,103,101,116,116,101,114,115,32,99,97,99,104,101,92,110,32,32,115,116,111,114,101,46,95,109,97,107,101,76,111,99,97,108,71,101,116,116,101,114,115,67,97,99,104,101,32,61,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,92,110,32,32,118,97,114,32,119,114,97,112,112,101,100,71,101,116,116,101,114,115,32,61,32,115,116,111,114,101,46,95,119,114,97,112,112,101,100,71,101,116,116,101,114,115,59,92,110,32,32,118,97,114,32,99,111,109,112,117,116,101,100,32,61,32,123,125,59,92,110,32,32,102,111,114,69,97,99,104,86,97,108,117,101,40,119,114,97,112,112,101,100,71,101,116,116,101,114,115,44,32,102,117,110,99,116,105,111,110,32,40,102,110,44,32,107,101,121,41,32,123,92,110,32,32,32,32,47,47,32,117,115,101,32,99,111,109,112,117,116,101,100,32,116,111,32,108,101,118,101,114,97,103,101,32,105,116,115,32,108,97,122,121,45,99,97,99,104,105,110,103,32,109,101,99,104,97,110,105,115,109,92,110,32,32,32,32,47,47,32,100,105,114,101,99,116,32,105,110,108,105,110,101,32,102,117,110,99,116,105,111,110,32,117,115,101,32,119,105,108,108,32,108,101,97,100,32,116,111,32,99,108,111,115,117,114,101,32,112,114,101,115,101,114,118,105,110,103,32,111,108,100,86,109,46,92,110,32,32,32,32,47,47,32,117,115,105,110,103,32,112,97,114,116,105,97,108,32,116,111,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,119,105,116,104,32,111,110,108,121,32,97,114,103,117,109,101,110,116,115,32,112,114,101,115,101,114,118,101,100,32,105,110,32,99,108,111,115,117,114,101,32,101,110,118,105,114,111,110,109,101,110,116,46,92,110,32,32,32,32,99,111,109,112,117,116,101,100,91,107,101,121,93,32,61,32,112,97,114,116,105,97,108,40,102,110,44,32,115,116,111,114,101,41,59,92,110,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,115,116,111,114,101,46,103,101,116,116,101,114,115,44,32,107,101,121,44,32,123,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,115,116,111,114,101,46,95,118,109,91,107,101,121,93,59,32,125,44,92,110,32,32,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,32,47,47,32,102,111,114,32,108,111,99,97,108,32,103,101,116,116,101,114,115,92,110,32,32,32,32,125,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,47,47,32,117,115,101,32,97,32,86,117,101,32,105,110,115,116,97,110,99,101,32,116,111,32,115,116,111,114,101,32,116,104,101,32,115,116,97,116,101,32,116,114,101,101,92,110,32,32,47,47,32,115,117,112,112,114,101,115,115,32,119,97,114,110,105,110,103,115,32,106,117,115,116,32,105,110,32,99,97,115,101,32,116,104,101,32,117,115,101,114,32,104,97,115,32,97,100,100,101,100,92,110,32,32,47,47,32,115,111,109,101,32,102,117,110,107,121,32,103,108,111,98,97,108,32,109,105,120,105,110,115,92,110,32,32,118,97,114,32,115,105,108,101,110,116,32,61,32,86,117,101,46,99,111,110,102,105,103,46,115,105,108,101,110,116,59,92,110,32,32,86,117,101,46,99,111,110,102,105,103,46,115,105,108,101,110,116,32,61,32,116,114,117,101,59,92,110,32,32,115,116,111,114,101,46,95,118,109,32,61,32,110,101,119,32,86,117,101,40,123,92,110,32,32,32,32,100,97,116,97,58,32,123,92,110,32,32,32,32,32,32,36,36,115,116,97,116,101,58,32,115,116,97,116,101,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,109,112,117,116,101,100,58,32,99,111,109,112,117,116,101,100,92,110,32,32,125,41,59,92,110,32,32,86,117,101,46,99,111,110,102,105,103,46,115,105,108,101,110,116,32,61,32,115,105,108,101,110,116,59,92,110,92,110,32,32,47,47,32,101,110,97,98,108,101,32,115,116,114,105,99,116,32,109,111,100,101,32,102,111,114,32,110,101,119,32,118,109,92,110,32,32,105,102,32,40,115,116,111,114,101,46,115,116,114,105,99,116,41,32,123,92,110,32,32,32,32,101,110,97,98,108,101,83,116,114,105,99,116,77,111,100,101,40,115,116,111,114,101,41,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,111,108,100,86,109,41,32,123,92,110,32,32,32,32,105,102,32,40,104,111,116,41,32,123,92,110,32,32,32,32,32,32,47,47,32,100,105,115,112,97,116,99,104,32,99,104,97,110,103,101,115,32,105,110,32,97,108,108,32,115,117,98,115,99,114,105,98,101,100,32,119,97,116,99,104,101,114,115,92,110,32,32,32,32,32,32,47,47,32,116,111,32,102,111,114,99,101,32,103,101,116,116,101,114,32,114,101,45,101,118,97,108,117,97,116,105,111,110,32,102,111,114,32,104,111,116,32,114,101,108,111,97,100,105,110,103,46,92,110,32,32,32,32,32,32,115,116,111,114,101,46,95,119,105,116,104,67,111,109,109,105,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,111,108,100,86,109,46,95,100,97,116,97,46,36,36,115,116,97,116,101,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,86,117,101,46,110,101,120,116,84,105,99,107,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,111,108,100,86,109,46,36,100,101,115,116,114,111,121,40,41,59,32,125,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,115,116,97,108,108,77,111,100,117,108,101,32,40,115,116,111,114,101,44,32,114,111,111,116,83,116,97,116,101,44,32,112,97,116,104,44,32,109,111,100,117,108,101,44,32,104,111,116,41,32,123,92,110,32,32,118,97,114,32,105,115,82,111,111,116,32,61,32,33,112,97,116,104,46,108,101,110,103,116,104,59,92,110,32,32,118,97,114,32,110,97,109,101,115,112,97,99,101,32,61,32,115,116,111,114,101,46,95,109,111,100,117,108,101,115,46,103,101,116,78,97,109,101,115,112,97,99,101,40,112,97,116,104,41,59,92,110,92,110,32,32,47,47,32,114,101,103,105,115,116,101,114,32,105,110,32,110,97,109,101,115,112,97,99,101,32,109,97,112,92,110,32,32,105,102,32,40,109,111,100,117,108,101,46,110,97,109,101,115,112,97,99,101,100,41,32,123,92,110,32,32,32,32,105,102,32,40,115,116,111,114,101,46,95,109,111,100,117,108,101,115,78,97,109,101,115,112,97,99,101,77,97,112,91,110,97,109,101,115,112,97,99,101,93,32,38,38,32,40,92,34,100,101,118,101,108,111,112,109,101,110,116,92,34,32,33,61,61,32,39,112,114,111,100,117,99,116,105,111,110,39,41,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,40,92,34,91,118,117,101,120,93,32,100,117,112,108,105,99,97,116,101,32,110,97,109,101,115,112,97,99,101,32,92,34,32,43,32,110,97,109,101,115,112,97,99,101,32,43,32,92,34,32,102,111,114,32,116,104,101,32,110,97,109,101,115,112,97,99,101,100,32,109,111,100,117,108,101,32,92,34,32,43,32,40,112,97,116,104,46,106,111,105,110,40,39,47,39,41,41,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,115,116,111,114,101,46,95,109,111,100,117,108,101,115,78,97,109,101,115,112,97,99,101,77,97,112,91,110,97,109,101,115,112,97,99,101,93,32,61,32,109,111,100,117,108,101,59,92,110,32,32,125,92,110,92,110,32,32,47,47,32,115,101,116,32,115,116,97,116,101,92,110,32,32,105,102,32,40,33,105,115,82,111,111,116,32,38,38,32,33,104,111,116,41,32,123,92,110,32,32,32,32,118,97,114,32,112,97,114,101,110,116,83,116,97,116,101,32,61,32,103,101,116,78,101,115,116,101,100,83,116,97,116,101,40,114,111,111,116,83,116,97,116,101,44,32,112,97,116,104,46,115,108,105,99,101,40,48,44,32,45,49,41,41,59,92,110,32,32,32,32,118,97,114,32,109,111,100,117,108,101,78,97,109,101,32,61,32,112,97,116,104,91,112,97,116,104,46,108,101,110,103,116,104,32,45,32,49,93,59,92,110,32,32,32,32,115,116,111,114,101,46,95,119,105,116,104,67,111,109,109,105,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,109,111,100,117,108,101,78,97,109,101,32,105,110,32,112,97,114,101,110,116,83,116,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,119,97,114,110,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,92,34,91,118,117,101,120,93,32,115,116,97,116,101,32,102,105,101,108,100,32,92,92,92,34,92,34,32,43,32,109,111,100,117,108,101,78,97,109,101,32,43,32,92,34,92,92,92,34,32,119,97,115,32,111,118,101,114,114,105,100,100,101,110,32,98,121,32,97,32,109,111,100,117,108,101,32,119,105,116,104,32,116,104,101,32,115,97,109,101,32,110,97,109,101,32,97,116,32,92,92,92,34,92,34,32,43,32,40,112,97,116,104,46,106,111,105,110,40,39,46,39,41,41,32,43,32,92,34,92,92,92,34,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,86,117,101,46,115,101,116,40,112,97,114,101,110,116,83,116,97,116,101,44,32,109,111,100,117,108,101,78,97,109,101,44,32,109,111,100,117,108,101,46,115,116,97,116,101,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,92,110,32,32,118,97,114,32,108,111,99,97,108,32,61,32,109,111,100,117,108,101,46,99,111,110,116,101,120,116,32,61,32,109,97,107,101,76,111,99,97,108,67,111,110,116,101,120,116,40,115,116,111,114,101,44,32,110,97,109,101,115,112,97,99,101,44,32,112,97,116,104,41,59,92,110,92,110,32,32,109,111,100,117,108,101,46,102,111,114,69,97,99,104,77,117,116,97,116,105,111,110,40,102,117,110,99,116,105,111,110,32,40,109,117,116,97,116,105,111,110,44,32,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,110,97,109,101,115,112,97,99,101,100,84,121,112,101,32,61,32,110,97,109,101,115,112,97,99,101,32,43,32,107,101,121,59,92,110,32,32,32,32,114,101,103,105,115,116,101,114,77,117,116,97,116,105,111,110,40,115,116,111,114,101,44,32,110,97,109,101,115,112,97,99,101,100,84,121,112,101,44,32,109,117,116,97,116,105,111,110,44,32,108,111,99,97,108,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,109,111,100,117,108,101,46,102,111,114,69,97,99,104,65,99,116,105,111,110,40,102,117,110,99,116,105,111,110,32,40,97,99,116,105,111,110,44,32,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,97,99,116,105,111,110,46,114,111,111,116,32,63,32,107,101,121,32,58,32,110,97,109,101,115,112,97,99,101,32,43,32,107,101,121,59,92,110,32,32,32,32,118,97,114,32,104,97,110,100,108,101,114,32,61,32,97,99,116,105,111,110,46,104,97,110,100,108,101,114,32,124,124,32,97,99,116,105,111,110,59,92,110,32,32,32,32,114,101,103,105,115,116,101,114,65,99,116,105,111,110,40,115,116,111,114,101,44,32,116,121,112,101,44,32,104,97,110,100,108,101,114,44,32,108,111,99,97,108,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,109,111,100,117,108,101,46,102,111,114,69,97,99,104,71,101,116,116,101,114,40,102,117,110,99,116,105,111,110,32,40,103,101,116,116,101,114,44,32,107,101,121,41,32,123,92,110,32,32,32,32,118,97,114,32,110,97,109,101,115,112,97,99,101,100,84,121,112,101,32,61,32,110,97,109,101,115,112,97,99,101,32,43,32,107,101,121,59,92,110,32,32,32,32,114,101,103,105,115,116,101,114,71,101,116,116,101,114,40,115,116,111,114,101,44,32,110,97,109,101,115,112,97,99,101,100,84,121,112,101,44,32,103,101,116,116,101,114,44,32,108,111,99,97,108,41,59,92,110,32,32,125,41,59,92,110,92,110,32,32,109,111,100,117,108,101,46,102,111,114,69,97,99,104,67,104,105,108,100,40,102,117,110,99,116,105,111,110,32,40,99,104,105,108,100,44,32,107,101,121,41,32,123,92,110,32,32,32,32,105,110,115,116,97,108,108,77,111,100,117,108,101,40,115,116,111,114,101,44,32,114,111,111,116,83,116,97,116,101,44,32,112,97,116,104,46,99,111,110,99,97,116,40,107,101,121,41,44,32,99,104,105,108,100,44,32,104,111,116,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,109,97,107,101,32,108,111,99,97,108,105,122,101,100,32,100,105,115,112,97,116,99,104,44,32,99,111,109,109,105,116,44,32,103,101,116,116,101,114,115,32,97,110,100,32,115,116,97,116,101,92,110,32,42,32,105,102,32,116,104,101,114,101,32,105,115,32,110,111,32,110,97,109,101,115,112,97,99,101,44,32,106,117,115,116,32,117,115,101,32,114,111,111,116,32,111,110,101,115,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,109,97,107,101,76,111,99,97,108,67,111,110,116,101,120,116,32,40,115,116,111,114,101,44,32,110,97,109,101,115,112,97,99,101,44,32,112,97,116,104,41,32,123,92,110,32,32,118,97,114,32,110,111,78,97,109,101,115,112,97,99,101,32,61,32,110,97,109,101,115,112,97,99,101,32,61,61,61,32,39,39,59,92,110,92,110,32,32,118,97,114,32,108,111,99,97,108,32,61,32,123,92,110,32,32,32,32,100,105,115,112,97,116,99,104,58,32,110,111,78,97,109,101,115,112,97,99,101,32,63,32,115,116,111,114,101,46,100,105,115,112,97,116,99,104,32,58,32,102,117,110,99,116,105,111,110,32,40,95,116,121,112,101,44,32,95,112,97,121,108,111,97,100,44,32,95,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,117,110,105,102,121,79,98,106,101,99,116,83,116,121,108,101,40,95,116,121,112,101,44,32,95,112,97,121,108,111,97,100,44,32,95,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,118,97,114,32,112,97,121,108,111,97,100,32,61,32,97,114,103,115,46,112,97,121,108,111,97,100,59,92,110,32,32,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,97,114,103,115,46,111,112,116,105,111,110,115,59,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,97,114,103,115,46,116,121,112,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,111,112,116,105,111,110,115,32,124,124,32,33,111,112,116,105,111,110,115,46,114,111,111,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,121,112,101,32,61,32,110,97,109,101,115,112,97,99,101,32,43,32,116,121,112,101,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,32,116,114,117,101,41,32,38,38,32,33,115,116,111,114,101,46,95,97,99,116,105,111,110,115,91,116,121,112,101,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,40,92,34,91,118,117,101,120,93,32,117,110,107,110,111,119,110,32,108,111,99,97,108,32,97,99,116,105,111,110,32,116,121,112,101,58,32,92,34,32,43,32,40,97,114,103,115,46,116,121,112,101,41,32,43,32,92,34,44,32,103,108,111,98,97,108,32,116,121,112,101,58,32,92,34,32,43,32,116,121,112,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,116,121,112,101,44,32,112,97,121,108,111,97,100,41,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,99,111,109,109,105,116,58,32,110,111,78,97,109,101,115,112,97,99,101,32,63,32,115,116,111,114,101,46,99,111,109,109,105,116,32,58,32,102,117,110,99,116,105,111,110,32,40,95,116,121,112,101,44,32,95,112,97,121,108,111,97,100,44,32,95,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,117,110,105,102,121,79,98,106,101,99,116,83,116,121,108,101,40,95,116,121,112,101,44,32,95,112,97,121,108,111,97,100,44,32,95,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,32,32,118,97,114,32,112,97,121,108,111,97,100,32,61,32,97,114,103,115,46,112,97,121,108,111,97,100,59,92,110,32,32,32,32,32,32,118,97,114,32,111,112,116,105,111,110,115,32,61,32,97,114,103,115,46,111,112,116,105,111,110,115,59,92,110,32,32,32,32,32,32,118,97,114,32,116,121,112,101,32,61,32,97,114,103,115,46,116,121,112,101,59,92,110,92,110,32,32,32,32,32,32,105,102,32,40,33,111,112,116,105,111,110,115,32,124,124,32,33,111,112,116,105,111,110,115,46,114,111,111,116,41,32,123,92,110,32,32,32,32,32,32,32,32,116,121,112,101,32,61,32,110,97,109,101,115,112,97,99,101,32,43,32,116,121,112,101,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,40,32,116,114,117,101,41,32,38,38,32,33,115,116,111,114,101,46,95,109,117,116,97,116,105,111,110,115,91,116,121,112,101,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,40,92,34,91,118,117,101,120,93,32,117,110,107,110,111,119,110,32,108,111,99,97,108,32,109,117,116,97,116,105,111,110,32,116,121,112,101,58,32,92,34,32,43,32,40,97,114,103,115,46,116,121,112,101,41,32,43,32,92,34,44,32,103,108,111,98,97,108,32,116,121,112,101,58,32,92,34,32,43,32,116,121,112,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,115,116,111,114,101,46,99,111,109,109,105,116,40,116,121,112,101,44,32,112,97,121,108,111,97,100,44,32,111,112,116,105,111,110,115,41,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,92,110,32,32,47,47,32,103,101,116,116,101,114,115,32,97,110,100,32,115,116,97,116,101,32,111,98,106,101,99,116,32,109,117,115,116,32,98,101,32,103,111,116,116,101,110,32,108,97,122,105,108,121,92,110,32,32,47,47,32,98,101,99,97,117,115,101,32,116,104,101,121,32,119,105,108,108,32,98,101,32,99,104,97,110,103,101,100,32,98,121,32,118,109,32,117,112,100,97,116,101,92,110,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,108,111,99,97,108,44,32,123,92,110,32,32,32,32,103,101,116,116,101,114,115,58,32,123,92,110,32,32,32,32,32,32,103,101,116,58,32,110,111,78,97,109,101,115,112,97,99,101,92,110,32,32,32,32,32,32,32,32,63,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,115,116,111,114,101,46,103,101,116,116,101,114,115,59,32,125,92,110,32,32,32,32,32,32,32,32,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,109,97,107,101,76,111,99,97,108,71,101,116,116,101,114,115,40,115,116,111,114,101,44,32,110,97,109,101,115,112,97,99,101,41,59,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,116,97,116,101,58,32,123,92,110,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,103,101,116,78,101,115,116,101,100,83,116,97,116,101,40,115,116,111,114,101,46,115,116,97,116,101,44,32,112,97,116,104,41,59,32,125,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,92,110,32,32,114,101,116,117,114,110,32,108,111,99,97,108,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,109,97,107,101,76,111,99,97,108,71,101,116,116,101,114,115,32,40,115,116,111,114,101,44,32,110,97,109,101,115,112,97,99,101,41,32,123,92,110,32,32,105,102,32,40,33,115,116,111,114,101,46,95,109,97,107,101,76,111,99,97,108,71,101,116,116,101,114,115,67,97,99,104,101,91,110,97,109,101,115,112,97,99,101,93,41,32,123,92,110,32,32,32,32,118,97,114,32,103,101,116,116,101,114,115,80,114,111,120,121,32,61,32,123,125,59,92,110,32,32,32,32,118,97,114,32,115,112,108,105,116,80,111,115,32,61,32,110,97,109,101,115,112,97,99,101,46,108,101,110,103,116,104,59,92,110,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,115,116,111,114,101,46,103,101,116,116,101,114,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,121,112,101,41,32,123,92,110,32,32,32,32,32,32,47,47,32,115,107,105,112,32,105,102,32,116,104,101,32,116,97,114,103,101,116,32,103,101,116,116,101,114,32,105,115,32,110,111,116,32,109,97,116,99,104,32,116,104,105,115,32,110,97,109,101,115,112,97,99,101,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,46,115,108,105,99,101,40,48,44,32,115,112,108,105,116,80,111,115,41,32,33,61,61,32,110,97,109,101,115,112,97,99,101,41,32,123,32,114,101,116,117,114,110,32,125,92,110,92,110,32,32,32,32,32,32,47,47,32,101,120,116,114,97,99,116,32,108,111,99,97,108,32,103,101,116,116,101,114,32,116,121,112,101,92,110,32,32,32,32,32,32,118,97,114,32,108,111,99,97,108,84,121,112,101,32,61,32,116,121,112,101,46,115,108,105,99,101,40,115,112,108,105,116,80,111,115,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,65,100,100,32,97,32,112,111,114,116,32,116,111,32,116,104,101,32,103,101,116,116,101,114,115,32,112,114,111,120,121,46,92,110,32,32,32,32,32,32,47,47,32,68,101,102,105,110,101,32,97,115,32,103,101,116,116,101,114,32,112,114,111,112,101,114,116,121,32,98,101,99,97,117,115,101,92,110,32,32,32,32,32,32,47,47,32,119,101,32,100,111,32,110,111,116,32,119,97,110,116,32,116,111,32,101,118,97,108,117,97,116,101,32,116,104,101,32,103,101,116,116,101,114,115,32,105,110,32,116,104,105,115,32,116,105,109,101,46,92,110,32,32,32,32,32,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,103,101,116,116,101,114,115,80,114,111,120,121,44,32,108,111,99,97,108,84,121,112,101,44,32,123,92,110,32,32,32,32,32,32,32,32,103,101,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,115,116,111,114,101,46,103,101,116,116,101,114,115,91,116,121,112,101,93,59,32,125,44,92,110,32,32,32,32,32,32,32,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,115,116,111,114,101,46,95,109,97,107,101,76,111,99,97,108,71,101,116,116,101,114,115,67,97,99,104,101,91,110,97,109,101,115,112,97,99,101,93,32,61,32,103,101,116,116,101,114,115,80,114,111,120,121,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,115,116,111,114,101,46,95,109,97,107,101,76,111,99,97,108,71,101,116,116,101,114,115,67,97,99,104,101,91,110,97,109,101,115,112,97,99,101,93,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,77,117,116,97,116,105,111,110,32,40,115,116,111,114,101,44,32,116,121,112,101,44,32,104,97,110,100,108,101,114,44,32,108,111,99,97,108,41,32,123,92,110,32,32,118,97,114,32,101,110,116,114,121,32,61,32,115,116,111,114,101,46,95,109,117,116,97,116,105,111,110,115,91,116,121,112,101,93,32,124,124,32,40,115,116,111,114,101,46,95,109,117,116,97,116,105,111,110,115,91,116,121,112,101,93,32,61,32,91,93,41,59,92,110,32,32,101,110,116,114,121,46,112,117,115,104,40,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,100,77,117,116,97,116,105,111,110,72,97,110,100,108,101,114,32,40,112,97,121,108,111,97,100,41,32,123,92,110,32,32,32,32,104,97,110,100,108,101,114,46,99,97,108,108,40,115,116,111,114,101,44,32,108,111,99,97,108,46,115,116,97,116,101,44,32,112,97,121,108,111,97,100,41,59,92,110,32,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,65,99,116,105,111,110,32,40,115,116,111,114,101,44,32,116,121,112,101,44,32,104,97,110,100,108,101,114,44,32,108,111,99,97,108,41,32,123,92,110,32,32,118,97,114,32,101,110,116,114,121,32,61,32,115,116,111,114,101,46,95,97,99,116,105,111,110,115,91,116,121,112,101,93,32,124,124,32,40,115,116,111,114,101,46,95,97,99,116,105,111,110,115,91,116,121,112,101,93,32,61,32,91,93,41,59,92,110,32,32,101,110,116,114,121,46,112,117,115,104,40,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,100,65,99,116,105,111,110,72,97,110,100,108,101,114,32,40,112,97,121,108,111,97,100,41,32,123,92,110,32,32,32,32,118,97,114,32,114,101,115,32,61,32,104,97,110,100,108,101,114,46,99,97,108,108,40,115,116,111,114,101,44,32,123,92,110,32,32,32,32,32,32,100,105,115,112,97,116,99,104,58,32,108,111,99,97,108,46,100,105,115,112,97,116,99,104,44,92,110,32,32,32,32,32,32,99,111,109,109,105,116,58,32,108,111,99,97,108,46,99,111,109,109,105,116,44,92,110,32,32,32,32,32,32,103,101,116,116,101,114,115,58,32,108,111,99,97,108,46,103,101,116,116,101,114,115,44,92,110,32,32,32,32,32,32,115,116,97,116,101,58,32,108,111,99,97,108,46,115,116,97,116,101,44,92,110,32,32,32,32,32,32,114,111,111,116,71,101,116,116,101,114,115,58,32,115,116,111,114,101,46,103,101,116,116,101,114,115,44,92,110,32,32,32,32,32,32,114,111,111,116,83,116,97,116,101,58,32,115,116,111,114,101,46,115,116,97,116,101,92,110,32,32,32,32,125,44,32,112,97,121,108,111,97,100,41,59,92,110,32,32,32,32,105,102,32,40,33,105,115,80,114,111,109,105,115,101,40,114,101,115,41,41,32,123,92,110,32,32,32,32,32,32,114,101,115,32,61,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,114,101,115,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,115,116,111,114,101,46,95,100,101,118,116,111,111,108,72,111,111,107,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,32,40,101,114,114,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,111,114,101,46,95,100,101,118,116,111,111,108,72,111,111,107,46,101,109,105,116,40,39,118,117,101,120,58,101,114,114,111,114,39,44,32,101,114,114,41,59,92,110,32,32,32,32,32,32,32,32,116,104,114,111,119,32,101,114,114,92,110,32,32,32,32,32,32,125,41,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,103,105,115,116,101,114,71,101,116,116,101,114,32,40,115,116,111,114,101,44,32,116,121,112,101,44,32,114,97,119,71,101,116,116,101,114,44,32,108,111,99,97,108,41,32,123,92,110,32,32,105,102,32,40,115,116,111,114,101,46,95,119,114,97,112,112,101,100,71,101,116,116,101,114,115,91,116,121,112,101,93,41,32,123,92,110,32,32,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,40,92,34,91,118,117,101,120,93,32,100,117,112,108,105,99,97,116,101,32,103,101,116,116,101,114,32,107,101,121,58,32,92,34,32,43,32,116,121,112,101,41,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,115,116,111,114,101,46,95,119,114,97,112,112,101,100,71,101,116,116,101,114,115,91,116,121,112,101,93,32,61,32,102,117,110,99,116,105,111,110,32,119,114,97,112,112,101,100,71,101,116,116,101,114,32,40,115,116,111,114,101,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,114,97,119,71,101,116,116,101,114,40,92,110,32,32,32,32,32,32,108,111,99,97,108,46,115,116,97,116,101,44,32,47,47,32,108,111,99,97,108,32,115,116,97,116,101,92,110,32,32,32,32,32,32,108,111,99,97,108,46,103,101,116,116,101,114,115,44,32,47,47,32,108,111,99,97,108,32,103,101,116,116,101,114,115,92,110,32,32,32,32,32,32,115,116,111,114,101,46,115,116,97,116,101,44,32,47,47,32,114,111,111,116,32,115,116,97,116,101,92,110,32,32,32,32,32,32,115,116,111,114,101,46,103,101,116,116,101,114,115,32,47,47,32,114,111,111,116,32,103,101,116,116,101,114,115,92,110,32,32,32,32,41,92,110,32,32,125,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,110,97,98,108,101,83,116,114,105,99,116,77,111,100,101,32,40,115,116,111,114,101,41,32,123,92,110,32,32,115,116,111,114,101,46,95,118,109,46,36,119,97,116,99,104,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,114,101,116,117,114,110,32,116,104,105,115,46,95,100,97,116,97,46,36,36,115,116,97,116,101,32,125,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,32,32,97,115,115,101,114,116,40,115,116,111,114,101,46,95,99,111,109,109,105,116,116,105,110,103,44,32,92,34,100,111,32,110,111,116,32,109,117,116,97,116,101,32,118,117,101,120,32,115,116,111,114,101,32,115,116,97,116,101,32,111,117,116,115,105,100,101,32,109,117,116,97,116,105,111,110,32,104,97,110,100,108,101,114,115,46,92,34,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,32,123,32,100,101,101,112,58,32,116,114,117,101,44,32,115,121,110,99,58,32,116,114,117,101,32,125,41,59,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,78,101,115,116,101,100,83,116,97,116,101,32,40,115,116,97,116,101,44,32,112,97,116,104,41,32,123,92,110,32,32,114,101,116,117,114,110,32,112,97,116,104,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,32,40,115,116,97,116,101,44,32,107,101,121,41,32,123,32,114,101,116,117,114,110,32,115,116,97,116,101,91,107,101,121,93,59,32,125,44,32,115,116,97,116,101,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,117,110,105,102,121,79,98,106,101,99,116,83,116,121,108,101,32,40,116,121,112,101,44,32,112,97,121,108,111,97,100,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,105,102,32,40,105,115,79,98,106,101,99,116,40,116,121,112,101,41,32,38,38,32,116,121,112,101,46,116,121,112,101,41,32,123,92,110,32,32,32,32,111,112,116,105,111,110,115,32,61,32,112,97,121,108,111,97,100,59,92,110,32,32,32,32,112,97,121,108,111,97,100,32,61,32,116,121,112,101,59,92,110,32,32,32,32,116,121,112,101,32,61,32,116,121,112,101,46,116,121,112,101,59,92,110,32,32,125,92,110,92,110,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,97,115,115,101,114,116,40,116,121,112,101,111,102,32,116,121,112,101,32,61,61,61,32,39,115,116,114,105,110,103,39,44,32,40,92,34,101,120,112,101,99,116,115,32,115,116,114,105,110,103,32,97,115,32,116,104,101,32,116,121,112,101,44,32,98,117,116,32,102,111,117,110,100,32,92,34,32,43,32,40,116,121,112,101,111,102,32,116,121,112,101,41,32,43,32,92,34,46,92,34,41,41,59,92,110,32,32,125,92,110,92,110,32,32,114,101,116,117,114,110,32,123,32,116,121,112,101,58,32,116,121,112,101,44,32,112,97,121,108,111,97,100,58,32,112,97,121,108,111,97,100,44,32,111,112,116,105,111,110,115,58,32,111,112,116,105,111,110,115,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,105,110,115,116,97,108,108,32,40,95,86,117,101,41,32,123,92,110,32,32,105,102,32,40,86,117,101,32,38,38,32,95,86,117,101,32,61,61,61,32,86,117,101,41,32,123,92,110,32,32,32,32,105,102,32,40,40,116,114,117,101,41,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,92,110,32,32,32,32,32,32,32,32,39,91,118,117,101,120,93,32,97,108,114,101,97,100,121,32,105,110,115,116,97,108,108,101,100,46,32,86,117,101,46,117,115,101,40,86,117,101,120,41,32,115,104,111,117,108,100,32,98,101,32,99,97,108,108,101,100,32,111,110,108,121,32,111,110,99,101,46,39,92,110,32,32,32,32,32,32,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,92,110,32,32,125,92,110,32,32,86,117,101,32,61,32,95,86,117,101,59,92,110,32,32,97,112,112,108,121,77,105,120,105,110,40,86,117,101,41,59,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,101,100,117,99,101,32,116,104,101,32,99,111,100,101,32,119,104,105,99,104,32,119,114,105,116,116,101,110,32,105,110,32,86,117,101,46,106,115,32,102,111,114,32,103,101,116,116,105,110,103,32,116,104,101,32,115,116,97,116,101,46,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,91,110,97,109,101,115,112,97,99,101,93,32,45,32,77,111,100,117,108,101,39,115,32,110,97,109,101,115,112,97,99,101,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,124,65,114,114,97,121,125,32,115,116,97,116,101,115,32,35,32,79,98,106,101,99,116,39,115,32,105,116,101,109,32,99,97,110,32,98,101,32,97,32,102,117,110,99,116,105,111,110,32,119,104,105,99,104,32,97,99,99,101,112,116,32,115,116,97,116,101,32,97,110,100,32,103,101,116,116,101,114,115,32,102,111,114,32,112,97,114,97,109,44,32,121,111,117,32,99,97,110,32,100,111,32,115,111,109,101,116,104,105,110,103,32,102,111,114,32,115,116,97,116,101,32,97,110,100,32,103,101,116,116,101,114,115,32,105,110,32,105,116,46,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,92,110,32,42,47,92,110,118,97,114,32,109,97,112,83,116,97,116,101,32,61,32,110,111,114,109,97,108,105,122,101,78,97,109,101,115,112,97,99,101,40,102,117,110,99,116,105,111,110,32,40,110,97,109,101,115,112,97,99,101,44,32,115,116,97,116,101,115,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,123,125,59,92,110,32,32,105,102,32,40,40,32,116,114,117,101,41,32,38,38,32,33,105,115,86,97,108,105,100,77,97,112,40,115,116,97,116,101,115,41,41,32,123,92,110,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,39,91,118,117,101,120,93,32,109,97,112,83,116,97,116,101,58,32,109,97,112,112,101,114,32,112,97,114,97,109,101,116,101,114,32,109,117,115,116,32,98,101,32,101,105,116,104,101,114,32,97,110,32,65,114,114,97,121,32,111,114,32,97,110,32,79,98,106,101,99,116,39,41,59,92,110,32,32,125,92,110,32,32,110,111,114,109,97,108,105,122,101,77,97,112,40,115,116,97,116,101,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,107,101,121,32,61,32,114,101,102,46,107,101,121,59,92,110,32,32,32,32,118,97,114,32,118,97,108,32,61,32,114,101,102,46,118,97,108,59,92,110,92,110,32,32,32,32,114,101,115,91,107,101,121,93,32,61,32,102,117,110,99,116,105,111,110,32,109,97,112,112,101,100,83,116,97,116,101,32,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,115,116,97,116,101,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,59,92,110,32,32,32,32,32,32,118,97,114,32,103,101,116,116,101,114,115,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,59,92,110,32,32,32,32,32,32,105,102,32,40,110,97,109,101,115,112,97,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,111,100,117,108,101,32,61,32,103,101,116,77,111,100,117,108,101,66,121,78,97,109,101,115,112,97,99,101,40,116,104,105,115,46,36,115,116,111,114,101,44,32,39,109,97,112,83,116,97,116,101,39,44,32,110,97,109,101,115,112,97,99,101,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,109,111,100,117,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,115,116,97,116,101,32,61,32,109,111,100,117,108,101,46,99,111,110,116,101,120,116,46,115,116,97,116,101,59,92,110,32,32,32,32,32,32,32,32,103,101,116,116,101,114,115,32,61,32,109,111,100,117,108,101,46,99,111,110,116,101,120,116,46,103,101,116,116,101,114,115,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,32,32,32,32,32,32,32,32,63,32,118,97,108,46,99,97,108,108,40,116,104,105,115,44,32,115,116,97,116,101,44,32,103,101,116,116,101,114,115,41,92,110,32,32,32,32,32,32,32,32,58,32,115,116,97,116,101,91,118,97,108,93,92,110,32,32,32,32,125,59,92,110,32,32,32,32,47,47,32,109,97,114,107,32,118,117,101,120,32,103,101,116,116,101,114,32,102,111,114,32,100,101,118,116,111,111,108,115,92,110,32,32,32,32,114,101,115,91,107,101,121,93,46,118,117,101,120,32,61,32,116,114,117,101,59,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,41,59,92,110,92,110,47,42,42,92,110,32,42,32,82,101,100,117,99,101,32,116,104,101,32,99,111,100,101,32,119,104,105,99,104,32,119,114,105,116,116,101,110,32,105,110,32,86,117,101,46,106,115,32,102,111,114,32,99,111,109,109,105,116,116,105,110,103,32,116,104,101,32,109,117,116,97,116,105,111,110,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,91,110,97,109,101,115,112,97,99,101,93,32,45,32,77,111,100,117,108,101,39,115,32,110,97,109,101,115,112,97,99,101,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,124,65,114,114,97,121,125,32,109,117,116,97,116,105,111,110,115,32,35,32,79,98,106,101,99,116,39,115,32,105,116,101,109,32,99,97,110,32,98,101,32,97,32,102,117,110,99,116,105,111,110,32,119,104,105,99,104,32,97,99,99,101,112,116,32,96,99,111,109,109,105,116,96,32,102,117,110,99,116,105,111,110,32,97,115,32,116,104,101,32,102,105,114,115,116,32,112,97,114,97,109,44,32,105,116,32,99,97,110,32,97,99,99,101,112,116,32,97,110,111,116,104,101,114,32,112,97,114,97,109,115,46,32,89,111,117,32,99,97,110,32,99,111,109,109,105,116,32,109,117,116,97,116,105,111,110,32,97,110,100,32,100,111,32,97,110,121,32,111,116,104,101,114,32,116,104,105,110,103,115,32,105,110,32,116,104,105,115,32,102,117,110,99,116,105,111,110,46,32,115,112,101,99,105,97,108,108,121,44,32,89,111,117,32,110,101,101,100,32,116,111,32,112,97,115,115,32,97,110,116,104,111,114,32,112,97,114,97,109,115,32,102,114,111,109,32,116,104,101,32,109,97,112,112,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,92,110,32,42,47,92,110,118,97,114,32,109,97,112,77,117,116,97,116,105,111,110,115,32,61,32,110,111,114,109,97,108,105,122,101,78,97,109,101,115,112,97,99,101,40,102,117,110,99,116,105,111,110,32,40,110,97,109,101,115,112,97,99,101,44,32,109,117,116,97,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,123,125,59,92,110,32,32,105,102,32,40,40,32,116,114,117,101,41,32,38,38,32,33,105,115,86,97,108,105,100,77,97,112,40,109,117,116,97,116,105,111,110,115,41,41,32,123,92,110,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,39,91,118,117,101,120,93,32,109,97,112,77,117,116,97,116,105,111,110,115,58,32,109,97,112,112,101,114,32,112,97,114,97,109,101,116,101,114,32,109,117,115,116,32,98,101,32,101,105,116,104,101,114,32,97,110,32,65,114,114,97,121,32,111,114,32,97,110,32,79,98,106,101,99,116,39,41,59,92,110,32,32,125,92,110,32,32,110,111,114,109,97,108,105,122,101,77,97,112,40,109,117,116,97,116,105,111,110,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,107,101,121,32,61,32,114,101,102,46,107,101,121,59,92,110,32,32,32,32,118,97,114,32,118,97,108,32,61,32,114,101,102,46,118,97,108,59,92,110,92,110,32,32,32,32,114,101,115,91,107,101,121,93,32,61,32,102,117,110,99,116,105,111,110,32,109,97,112,112,101,100,77,117,116,97,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,41,32,97,114,103,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,93,59,92,110,92,110,32,32,32,32,32,32,47,47,32,71,101,116,32,116,104,101,32,99,111,109,109,105,116,32,109,101,116,104,111,100,32,102,114,111,109,32,115,116,111,114,101,92,110,32,32,32,32,32,32,118,97,114,32,99,111,109,109,105,116,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,59,92,110,32,32,32,32,32,32,105,102,32,40,110,97,109,101,115,112,97,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,111,100,117,108,101,32,61,32,103,101,116,77,111,100,117,108,101,66,121,78,97,109,101,115,112,97,99,101,40,116,104,105,115,46,36,115,116,111,114,101,44,32,39,109,97,112,77,117,116,97,116,105,111,110,115,39,44,32,110,97,109,101,115,112,97,99,101,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,109,111,100,117,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,111,109,109,105,116,32,61,32,109,111,100,117,108,101,46,99,111,110,116,101,120,116,46,99,111,109,109,105,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,32,32,32,32,32,32,32,32,63,32,118,97,108,46,97,112,112,108,121,40,116,104,105,115,44,32,91,99,111,109,109,105,116,93,46,99,111,110,99,97,116,40,97,114,103,115,41,41,92,110,32,32,32,32,32,32,32,32,58,32,99,111,109,109,105,116,46,97,112,112,108,121,40,116,104,105,115,46,36,115,116,111,114,101,44,32,91,118,97,108,93,46,99,111,110,99,97,116,40,97,114,103,115,41,41,92,110,32,32,32,32,125,59,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,41,59,92,110,92,110,47,42,42,92,110,32,42,32,82,101,100,117,99,101,32,116,104,101,32,99,111,100,101,32,119,104,105,99,104,32,119,114,105,116,116,101,110,32,105,110,32,86,117,101,46,106,115,32,102,111,114,32,103,101,116,116,105,110,103,32,116,104,101,32,103,101,116,116,101,114,115,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,91,110,97,109,101,115,112,97,99,101,93,32,45,32,77,111,100,117,108,101,39,115,32,110,97,109,101,115,112,97,99,101,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,124,65,114,114,97,121,125,32,103,101,116,116,101,114,115,92,110,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,92,110,32,42,47,92,110,118,97,114,32,109,97,112,71,101,116,116,101,114,115,32,61,32,110,111,114,109,97,108,105,122,101,78,97,109,101,115,112,97,99,101,40,102,117,110,99,116,105,111,110,32,40,110,97,109,101,115,112,97,99,101,44,32,103,101,116,116,101,114,115,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,123,125,59,92,110,32,32,105,102,32,40,40,32,116,114,117,101,41,32,38,38,32,33,105,115,86,97,108,105,100,77,97,112,40,103,101,116,116,101,114,115,41,41,32,123,92,110,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,39,91,118,117,101,120,93,32,109,97,112,71,101,116,116,101,114,115,58,32,109,97,112,112,101,114,32,112,97,114,97,109,101,116,101,114,32,109,117,115,116,32,98,101,32,101,105,116,104,101,114,32,97,110,32,65,114,114,97,121,32,111,114,32,97,110,32,79,98,106,101,99,116,39,41,59,92,110,32,32,125,92,110,32,32,110,111,114,109,97,108,105,122,101,77,97,112,40,103,101,116,116,101,114,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,107,101,121,32,61,32,114,101,102,46,107,101,121,59,92,110,32,32,32,32,118,97,114,32,118,97,108,32,61,32,114,101,102,46,118,97,108,59,92,110,92,110,32,32,32,32,47,47,32,84,104,101,32,110,97,109,101,115,112,97,99,101,32,104,97,115,32,98,101,101,110,32,109,117,116,97,116,101,100,32,98,121,32,110,111,114,109,97,108,105,122,101,78,97,109,101,115,112,97,99,101,92,110,32,32,32,32,118,97,108,32,61,32,110,97,109,101,115,112,97,99,101,32,43,32,118,97,108,59,92,110,32,32,32,32,114,101,115,91,107,101,121,93,32,61,32,102,117,110,99,116,105,111,110,32,109,97,112,112,101,100,71,101,116,116,101,114,32,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,97,109,101,115,112,97,99,101,32,38,38,32,33,103,101,116,77,111,100,117,108,101,66,121,78,97,109,101,115,112,97,99,101,40,116,104,105,115,46,36,115,116,111,114,101,44,32,39,109,97,112,71,101,116,116,101,114,115,39,44,32,110,97,109,101,115,112,97,99,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,40,32,116,114,117,101,41,32,38,38,32,33,40,118,97,108,32,105,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,41,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,40,92,34,91,118,117,101,120,93,32,117,110,107,110,111,119,110,32,103,101,116,116,101,114,58,32,92,34,32,43,32,118,97,108,41,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,118,97,108,93,92,110,32,32,32,32,125,59,92,110,32,32,32,32,47,47,32,109,97,114,107,32,118,117,101,120,32,103,101,116,116,101,114,32,102,111,114,32,100,101,118,116,111,111,108,115,92,110,32,32,32,32,114,101,115,91,107,101,121,93,46,118,117,101,120,32,61,32,116,114,117,101,59,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,41,59,92,110,92,110,47,42,42,92,110,32,42,32,82,101,100,117,99,101,32,116,104,101,32,99,111,100,101,32,119,104,105,99,104,32,119,114,105,116,116,101,110,32,105,110,32,86,117,101,46,106,115,32,102,111,114,32,100,105,115,112,97,116,99,104,32,116,104,101,32,97,99,116,105,111,110,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,91,110,97,109,101,115,112,97,99,101,93,32,45,32,77,111,100,117,108,101,39,115,32,110,97,109,101,115,112,97,99,101,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,124,65,114,114,97,121,125,32,97,99,116,105,111,110,115,32,35,32,79,98,106,101,99,116,39,115,32,105,116,101,109,32,99,97,110,32,98,101,32,97,32,102,117,110,99,116,105,111,110,32,119,104,105,99,104,32,97,99,99,101,112,116,32,96,100,105,115,112,97,116,99,104,96,32,102,117,110,99,116,105,111,110,32,97,115,32,116,104,101,32,102,105,114,115,116,32,112,97,114,97,109,44,32,105,116,32,99,97,110,32,97,99,99,101,112,116,32,97,110,116,104,111,114,32,112,97,114,97,109,115,46,32,89,111,117,32,99,97,110,32,100,105,115,112,97,116,99,104,32,97,99,116,105,111,110,32,97,110,100,32,100,111,32,97,110,121,32,111,116,104,101,114,32,116,104,105,110,103,115,32,105,110,32,116,104,105,115,32,102,117,110,99,116,105,111,110,46,32,115,112,101,99,105,97,108,108,121,44,32,89,111,117,32,110,101,101,100,32,116,111,32,112,97,115,115,32,97,110,116,104,111,114,32,112,97,114,97,109,115,32,102,114,111,109,32,116,104,101,32,109,97,112,112,101,100,32,102,117,110,99,116,105,111,110,46,92,110,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,92,110,32,42,47,92,110,118,97,114,32,109,97,112,65,99,116,105,111,110,115,32,61,32,110,111,114,109,97,108,105,122,101,78,97,109,101,115,112,97,99,101,40,102,117,110,99,116,105,111,110,32,40,110,97,109,101,115,112,97,99,101,44,32,97,99,116,105,111,110,115,41,32,123,92,110,32,32,118,97,114,32,114,101,115,32,61,32,123,125,59,92,110,32,32,105,102,32,40,40,32,116,114,117,101,41,32,38,38,32,33,105,115,86,97,108,105,100,77,97,112,40,97,99,116,105,111,110,115,41,41,32,123,92,110,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,39,91,118,117,101,120,93,32,109,97,112,65,99,116,105,111,110,115,58,32,109,97,112,112,101,114,32,112,97,114,97,109,101,116,101,114,32,109,117,115,116,32,98,101,32,101,105,116,104,101,114,32,97,110,32,65,114,114,97,121,32,111,114,32,97,110,32,79,98,106,101,99,116,39,41,59,92,110,32,32,125,92,110,32,32,110,111,114,109,97,108,105,122,101,77,97,112,40,97,99,116,105,111,110,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,114,101,102,41,32,123,92,110,32,32,32,32,118,97,114,32,107,101,121,32,61,32,114,101,102,46,107,101,121,59,92,110,32,32,32,32,118,97,114,32,118,97,108,32,61,32,114,101,102,46,118,97,108,59,92,110,92,110,32,32,32,32,114,101,115,91,107,101,121,93,32,61,32,102,117,110,99,116,105,111,110,32,109,97,112,112,101,100,65,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,118,97,114,32,97,114,103,115,32,61,32,91,93,44,32,108,101,110,32,61,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,119,104,105,108,101,32,40,32,108,101,110,45,45,32,41,32,97,114,103,115,91,32,108,101,110,32,93,32,61,32,97,114,103,117,109,101,110,116,115,91,32,108,101,110,32,93,59,92,110,92,110,32,32,32,32,32,32,47,47,32,103,101,116,32,100,105,115,112,97,116,99,104,32,102,117,110,99,116,105,111,110,32,102,114,111,109,32,115,116,111,114,101,92,110,32,32,32,32,32,32,118,97,114,32,100,105,115,112,97,116,99,104,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,59,92,110,32,32,32,32,32,32,105,102,32,40,110,97,109,101,115,112,97,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,109,111,100,117,108,101,32,61,32,103,101,116,77,111,100,117,108,101,66,121,78,97,109,101,115,112,97,99,101,40,116,104,105,115,46,36,115,116,111,114,101,44,32,39,109,97,112,65,99,116,105,111,110,115,39,44,32,110,97,109,101,115,112,97,99,101,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,109,111,100,117,108,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,100,105,115,112,97,116,99,104,32,61,32,109,111,100,117,108,101,46,99,111,110,116,101,120,116,46,100,105,115,112,97,116,99,104,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,121,112,101,111,102,32,118,97,108,32,61,61,61,32,39,102,117,110,99,116,105,111,110,39,92,110,32,32,32,32,32,32,32,32,63,32,118,97,108,46,97,112,112,108,121,40,116,104,105,115,44,32,91,100,105,115,112,97,116,99,104,93,46,99,111,110,99,97,116,40,97,114,103,115,41,41,92,110,32,32,32,32,32,32,32,32,58,32,100,105,115,112,97,116,99,104,46,97,112,112,108,121,40,116,104,105,115,46,36,115,116,111,114,101,44,32,91,118,97,108,93,46,99,111,110,99,97,116,40,97,114,103,115,41,41,92,110,32,32,32,32,125,59,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,114,101,115,92,110,125,41,59,92,110,92,110,47,42,42,92,110,32,42,32,82,101,98,105,110,100,105,110,103,32,110,97,109,101,115,112,97,99,101,32,112,97,114,97,109,32,102,111,114,32,109,97,112,88,88,88,32,102,117,110,99,116,105,111,110,32,105,110,32,115,112,101,99,105,97,108,32,115,99,111,112,101,100,44,32,97,110,100,32,114,101,116,117,114,110,32,116,104,101,109,32,98,121,32,115,105,109,112,108,101,32,111,98,106,101,99,116,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,110,97,109,101,115,112,97,99,101,92,110,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,92,110,32,42,47,92,110,118,97,114,32,99,114,101,97,116,101,78,97,109,101,115,112,97,99,101,100,72,101,108,112,101,114,115,32,61,32,102,117,110,99,116,105,111,110,32,40,110,97,109,101,115,112,97,99,101,41,32,123,32,114,101,116,117,114,110,32,40,123,92,110,32,32,109,97,112,83,116,97,116,101,58,32,109,97,112,83,116,97,116,101,46,98,105,110,100,40,110,117,108,108,44,32,110,97,109,101,115,112,97,99,101,41,44,92,110,32,32,109,97,112,71,101,116,116,101,114,115,58,32,109,97,112,71,101,116,116,101,114,115,46,98,105,110,100,40,110,117,108,108,44,32,110,97,109,101,115,112,97,99,101,41,44,92,110,32,32,109,97,112,77,117,116,97,116,105,111,110,115,58,32,109,97,112,77,117,116,97,116,105,111,110,115,46,98,105,110,100,40,110,117,108,108,44,32,110,97,109,101,115,112,97,99,101,41,44,92,110,32,32,109,97,112,65,99,116,105,111,110,115,58,32,109,97,112,65,99,116,105,111,110,115,46,98,105,110,100,40,110,117,108,108,44,32,110,97,109,101,115,112,97,99,101,41,92,110,125,41,59,32,125,59,92,110,92,110,47,42,42,92,110,32,42,32,78,111,114,109,97,108,105,122,101,32,116,104,101,32,109,97,112,92,110,32,42,32,110,111,114,109,97,108,105,122,101,77,97,112,40,91,49,44,32,50,44,32,51,93,41,32,61,62,32,91,32,123,32,107,101,121,58,32,49,44,32,118,97,108,58,32,49,32,125,44,32,123,32,107,101,121,58,32,50,44,32,118,97,108,58,32,50,32,125,44,32,123,32,107,101,121,58,32,51,44,32,118,97,108,58,32,51,32,125,32,93,92,110,32,42,32,110,111,114,109,97,108,105,122,101,77,97,112,40,123,97,58,32,49,44,32,98,58,32,50,44,32,99,58,32,51,125,41,32,61,62,32,91,32,123,32,107,101,121,58,32,39,97,39,44,32,118,97,108,58,32,49,32,125,44,32,123,32,107,101,121,58,32,39,98,39,44,32,118,97,108,58,32,50,32,125,44,32,123,32,107,101,121,58,32,39,99,39,44,32,118,97,108,58,32,51,32,125,32,93,92,110,32,42,32,64,112,97,114,97,109,32,123,65,114,114,97,121,124,79,98,106,101,99,116,125,32,109,97,112,92,110,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,77,97,112,32,40,109,97,112,41,32,123,92,110,32,32,105,102,32,40,33,105,115,86,97,108,105,100,77,97,112,40,109,97,112,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,91,93,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,109,97,112,41,92,110,32,32,32,32,63,32,109,97,112,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,40,123,32,107,101,121,58,32,107,101,121,44,32,118,97,108,58,32,107,101,121,32,125,41,59,32,125,41,92,110,32,32,32,32,58,32,79,98,106,101,99,116,46,107,101,121,115,40,109,97,112,41,46,109,97,112,40,102,117,110,99,116,105,111,110,32,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,40,123,32,107,101,121,58,32,107,101,121,44,32,118,97,108,58,32,109,97,112,91,107,101,121,93,32,125,41,59,32,125,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,86,97,108,105,100,97,116,101,32,119,104,101,116,104,101,114,32,103,105,118,101,110,32,109,97,112,32,105,115,32,118,97,108,105,100,32,111,114,32,110,111,116,92,110,32,42,32,64,112,97,114,97,109,32,123,42,125,32,109,97,112,92,110,32,42,32,64,114,101,116,117,114,110,32,123,66,111,111,108,101,97,110,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,105,115,86,97,108,105,100,77,97,112,32,40,109,97,112,41,32,123,92,110,32,32,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,109,97,112,41,32,124,124,32,105,115,79,98,106,101,99,116,40,109,97,112,41,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,82,101,116,117,114,110,32,97,32,102,117,110,99,116,105,111,110,32,101,120,112,101,99,116,32,116,119,111,32,112,97,114,97,109,32,99,111,110,116,97,105,110,115,32,110,97,109,101,115,112,97,99,101,32,97,110,100,32,109,97,112,46,32,105,116,32,119,105,108,108,32,110,111,114,109,97,108,105,122,101,32,116,104,101,32,110,97,109,101,115,112,97,99,101,32,97,110,100,32,116,104,101,110,32,116,104,101,32,112,97,114,97,109,39,115,32,102,117,110,99,116,105,111,110,32,119,105,108,108,32,104,97,110,100,108,101,32,116,104,101,32,110,101,119,32,110,97,109,101,115,112,97,99,101,32,97,110,100,32,116,104,101,32,109,97,112,46,92,110,32,42,32,64,112,97,114,97,109,32,123,70,117,110,99,116,105,111,110,125,32,102,110,92,110,32,42,32,64,114,101,116,117,114,110,32,123,70,117,110,99,116,105,111,110,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,110,111,114,109,97,108,105,122,101,78,97,109,101,115,112,97,99,101,32,40,102,110,41,32,123,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,110,97,109,101,115,112,97,99,101,44,32,109,97,112,41,32,123,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,110,97,109,101,115,112,97,99,101,32,33,61,61,32,39,115,116,114,105,110,103,39,41,32,123,92,110,32,32,32,32,32,32,109,97,112,32,61,32,110,97,109,101,115,112,97,99,101,59,92,110,32,32,32,32,32,32,110,97,109,101,115,112,97,99,101,32,61,32,39,39,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,97,109,101,115,112,97,99,101,46,99,104,97,114,65,116,40,110,97,109,101,115,112,97,99,101,46,108,101,110,103,116,104,32,45,32,49,41,32,33,61,61,32,39,47,39,41,32,123,92,110,32,32,32,32,32,32,110,97,109,101,115,112,97,99,101,32,43,61,32,39,47,39,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,102,110,40,110,97,109,101,115,112,97,99,101,44,32,109,97,112,41,92,110,32,32,125,92,110,125,92,110,92,110,47,42,42,92,110,32,42,32,83,101,97,114,99,104,32,97,32,115,112,101,99,105,97,108,32,109,111,100,117,108,101,32,102,114,111,109,32,115,116,111,114,101,32,98,121,32,110,97,109,101,115,112,97,99,101,46,32,105,102,32,109,111,100,117,108,101,32,110,111,116,32,101,120,105,115,116,44,32,112,114,105,110,116,32,101,114,114,111,114,32,109,101,115,115,97,103,101,46,92,110,32,42,32,64,112,97,114,97,109,32,123,79,98,106,101,99,116,125,32,115,116,111,114,101,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,104,101,108,112,101,114,92,110,32,42,32,64,112,97,114,97,109,32,123,83,116,114,105,110,103,125,32,110,97,109,101,115,112,97,99,101,92,110,32,42,32,64,114,101,116,117,114,110,32,123,79,98,106,101,99,116,125,92,110,32,42,47,92,110,102,117,110,99,116,105,111,110,32,103,101,116,77,111,100,117,108,101,66,121,78,97,109,101,115,112,97,99,101,32,40,115,116,111,114,101,44,32,104,101,108,112,101,114,44,32,110,97,109,101,115,112,97,99,101,41,32,123,92,110,32,32,118,97,114,32,109,111,100,117,108,101,32,61,32,115,116,111,114,101,46,95,109,111,100,117,108,101,115,78,97,109,101,115,112,97,99,101,77,97,112,91,110,97,109,101,115,112,97,99,101,93,59,92,110,32,32,105,102,32,40,40,32,116,114,117,101,41,32,38,38,32,33,109,111,100,117,108,101,41,32,123,92,110,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,40,92,34,91,118,117,101,120,93,32,109,111,100,117,108,101,32,110,97,109,101,115,112,97,99,101,32,110,111,116,32,102,111,117,110,100,32,105,110,32,92,34,32,43,32,104,101,108,112,101,114,32,43,32,92,34,40,41,58,32,92,34,32,43,32,110,97,109,101,115,112,97,99,101,41,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,109,111,100,117,108,101,92,110,125,92,110,92,110,47,47,32,67,114,101,100,105,116,115,58,32,98,111,114,114,111,119,101,100,32,99,111,100,101,32,102,114,111,109,32,102,99,111,109,98,47,114,101,100,117,120,45,108,111,103,103,101,114,92,110,92,110,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,76,111,103,103,101,114,32,40,114,101,102,41,32,123,92,110,32,32,105,102,32,40,32,114,101,102,32,61,61,61,32,118,111,105,100,32,48,32,41,32,114,101,102,32,61,32,123,125,59,92,110,32,32,118,97,114,32,99,111,108,108,97,112,115,101,100,32,61,32,114,101,102,46,99,111,108,108,97,112,115,101,100,59,32,105,102,32,40,32,99,111,108,108,97,112,115,101,100,32,61,61,61,32,118,111,105,100,32,48,32,41,32,99,111,108,108,97,112,115,101,100,32,61,32,116,114,117,101,59,92,110,32,32,118,97,114,32,102,105,108,116,101,114,32,61,32,114,101,102,46,102,105,108,116,101,114,59,32,105,102,32,40,32,102,105,108,116,101,114,32,61,61,61,32,118,111,105,100,32,48,32,41,32,102,105,108,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,109,117,116,97,116,105,111,110,44,32,115,116,97,116,101,66,101,102,111,114,101,44,32,115,116,97,116,101,65,102,116,101,114,41,32,123,32,114,101,116,117,114,110,32,116,114,117,101,59,32,125,59,92,110,32,32,118,97,114,32,116,114,97,110,115,102,111,114,109,101,114,32,61,32,114,101,102,46,116,114,97,110,115,102,111,114,109,101,114,59,32,105,102,32,40,32,116,114,97,110,115,102,111,114,109,101,114,32,61,61,61,32,118,111,105,100,32,48,32,41,32,116,114,97,110,115,102,111,114,109,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,115,116,97,116,101,41,32,123,32,114,101,116,117,114,110,32,115,116,97,116,101,59,32,125,59,92,110,32,32,118,97,114,32,109,117,116,97,116,105,111,110,84,114,97,110,115,102,111,114,109,101,114,32,61,32,114,101,102,46,109,117,116,97,116,105,111,110,84,114,97,110,115,102,111,114,109,101,114,59,32,105,102,32,40,32,109,117,116,97,116,105,111,110,84,114,97,110,115,102,111,114,109,101,114,32,61,61,61,32,118,111,105,100,32,48,32,41,32,109,117,116,97,116,105,111,110,84,114,97,110,115,102,111,114,109,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,109,117,116,41,32,123,32,114,101,116,117,114,110,32,109,117,116,59,32,125,59,92,110,32,32,118,97,114,32,97,99,116,105,111,110,70,105,108,116,101,114,32,61,32,114,101,102,46,97,99,116,105,111,110,70,105,108,116,101,114,59,32,105,102,32,40,32,97,99,116,105,111,110,70,105,108,116,101,114,32,61,61,61,32,118,111,105,100,32,48,32,41,32,97,99,116,105,111,110,70,105,108,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,97,99,116,105,111,110,44,32,115,116,97,116,101,41,32,123,32,114,101,116,117,114,110,32,116,114,117,101,59,32,125,59,92,110,32,32,118,97,114,32,97,99,116,105,111,110,84,114,97,110,115,102,111,114,109,101,114,32,61,32,114,101,102,46,97,99,116,105,111,110,84,114,97,110,115,102,111,114,109,101,114,59,32,105,102,32,40,32,97,99,116,105,111,110,84,114,97,110,115,102,111,114,109,101,114,32,61,61,61,32,118,111,105,100,32,48,32,41,32,97,99,116,105,111,110,84,114,97,110,115,102,111,114,109,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,97,99,116,41,32,123,32,114,101,116,117,114,110,32,97,99,116,59,32,125,59,92,110,32,32,118,97,114,32,108,111,103,77,117,116,97,116,105,111,110,115,32,61,32,114,101,102,46,108,111,103,77,117,116,97,116,105,111,110,115,59,32,105,102,32,40,32,108,111,103,77,117,116,97,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,32,41,32,108,111,103,77,117,116,97,116,105,111,110,115,32,61,32,116,114,117,101,59,92,110,32,32,118,97,114,32,108,111,103,65,99,116,105,111,110,115,32,61,32,114,101,102,46,108,111,103,65,99,116,105,111,110,115,59,32,105,102,32,40,32,108,111,103,65,99,116,105,111,110,115,32,61,61,61,32,118,111,105,100,32,48,32,41,32,108,111,103,65,99,116,105,111,110,115,32,61,32,116,114,117,101,59,92,110,32,32,118,97,114,32,108,111,103,103,101,114,32,61,32,114,101,102,46,108,111,103,103,101,114,59,32,105,102,32,40,32,108,111,103,103,101,114,32,61,61,61,32,118,111,105,100,32,48,32,41,32,108,111,103,103,101,114,32,61,32,99,111,110,115,111,108,101,59,92,110,92,110,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,115,116,111,114,101,41,32,123,92,110,32,32,32,32,118,97,114,32,112,114,101,118,83,116,97,116,101,32,61,32,100,101,101,112,67,111,112,121,40,115,116,111,114,101,46,115,116,97,116,101,41,59,92,110,92,110,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,108,111,103,103,101,114,32,61,61,61,32,39,117,110,100,101,102,105,110,101,100,39,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,108,111,103,77,117,116,97,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,102,117,110,99,116,105,111,110,32,40,109,117,116,97,116,105,111,110,44,32,115,116,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,118,97,114,32,110,101,120,116,83,116,97,116,101,32,61,32,100,101,101,112,67,111,112,121,40,115,116,97,116,101,41,59,92,110,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,105,108,116,101,114,40,109,117,116,97,116,105,111,110,44,32,112,114,101,118,83,116,97,116,101,44,32,110,101,120,116,83,116,97,116,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,100,84,105,109,101,32,61,32,103,101,116,70,111,114,109,97,116,116,101,100,84,105,109,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,100,77,117,116,97,116,105,111,110,32,61,32,109,117,116,97,116,105,111,110,84,114,97,110,115,102,111,114,109,101,114,40,109,117,116,97,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,101,115,115,97,103,101,32,61,32,92,34,109,117,116,97,116,105,111,110,32,92,34,32,43,32,40,109,117,116,97,116,105,111,110,46,116,121,112,101,41,32,43,32,102,111,114,109,97,116,116,101,100,84,105,109,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,77,101,115,115,97,103,101,40,108,111,103,103,101,114,44,32,109,101,115,115,97,103,101,44,32,99,111,108,108,97,112,115,101,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,108,111,103,103,101,114,46,108,111,103,40,39,37,99,32,112,114,101,118,32,115,116,97,116,101,39,44,32,39,99,111,108,111,114,58,32,35,57,69,57,69,57,69,59,32,102,111,110,116,45,119,101,105,103,104,116,58,32,98,111,108,100,39,44,32,116,114,97,110,115,102,111,114,109,101,114,40,112,114,101,118,83,116,97,116,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,108,111,103,103,101,114,46,108,111,103,40,39,37,99,32,109,117,116,97,116,105,111,110,39,44,32,39,99,111,108,111,114,58,32,35,48,51,65,57,70,52,59,32,102,111,110,116,45,119,101,105,103,104,116,58,32,98,111,108,100,39,44,32,102,111,114,109,97,116,116,101,100,77,117,116,97,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,108,111,103,103,101,114,46,108,111,103,40,39,37,99,32,110,101,120,116,32,115,116,97,116,101,39,44,32,39,99,111,108,111,114,58,32,35,52,67,65,70,53,48,59,32,102,111,110,116,45,119,101,105,103,104,116,58,32,98,111,108,100,39,44,32,116,114,97,110,115,102,111,114,109,101,114,40,110,101,120,116,83,116,97,116,101,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,101,110,100,77,101,115,115,97,103,101,40,108,111,103,103,101,114,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,112,114,101,118,83,116,97,116,101,32,61,32,110,101,120,116,83,116,97,116,101,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,92,110,32,32,32,32,105,102,32,40,108,111,103,65,99,116,105,111,110,115,41,32,123,92,110,32,32,32,32,32,32,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,65,99,116,105,111,110,40,102,117,110,99,116,105,111,110,32,40,97,99,116,105,111,110,44,32,115,116,97,116,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,97,99,116,105,111,110,70,105,108,116,101,114,40,97,99,116,105,111,110,44,32,115,116,97,116,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,100,84,105,109,101,32,61,32,103,101,116,70,111,114,109,97,116,116,101,100,84,105,109,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,102,111,114,109,97,116,116,101,100,65,99,116,105,111,110,32,61,32,97,99,116,105,111,110,84,114,97,110,115,102,111,114,109,101,114,40,97,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,118,97,114,32,109,101,115,115,97,103,101,32,61,32,92,34,97,99,116,105,111,110,32,92,34,32,43,32,40,97,99,116,105,111,110,46,116,121,112,101,41,32,43,32,102,111,114,109,97,116,116,101,100,84,105,109,101,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,77,101,115,115,97,103,101,40,108,111,103,103,101,114,44,32,109,101,115,115,97,103,101,44,32,99,111,108,108,97,112,115,101,100,41,59,92,110,32,32,32,32,32,32,32,32,32,32,108,111,103,103,101,114,46,108,111,103,40,39,37,99,32,97,99,116,105,111,110,39,44,32,39,99,111,108,111,114,58,32,35,48,51,65,57,70,52,59,32,102,111,110,116,45,119,101,105,103,104,116,58,32,98,111,108,100,39,44,32,102,111,114,109,97,116,116,101,100,65,99,116,105,111,110,41,59,92,110,32,32,32,32,32,32,32,32,32,32,101,110,100,77,101,115,115,97,103,101,40,108,111,103,103,101,114,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,115,116,97,114,116,77,101,115,115,97,103,101,32,40,108,111,103,103,101,114,44,32,109,101,115,115,97,103,101,44,32,99,111,108,108,97,112,115,101,100,41,32,123,92,110,32,32,118,97,114,32,115,116,97,114,116,77,101,115,115,97,103,101,32,61,32,99,111,108,108,97,112,115,101,100,92,110,32,32,32,32,63,32,108,111,103,103,101,114,46,103,114,111,117,112,67,111,108,108,97,112,115,101,100,92,110,32,32,32,32,58,32,108,111,103,103,101,114,46,103,114,111,117,112,59,92,110,92,110,32,32,47,47,32,114,101,110,100,101,114,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,115,116,97,114,116,77,101,115,115,97,103,101,46,99,97,108,108,40,108,111,103,103,101,114,44,32,109,101,115,115,97,103,101,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,108,111,103,103,101,114,46,108,111,103,40,109,101,115,115,97,103,101,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,101,110,100,77,101,115,115,97,103,101,32,40,108,111,103,103,101,114,41,32,123,92,110,32,32,116,114,121,32,123,92,110,32,32,32,32,108,111,103,103,101,114,46,103,114,111,117,112,69,110,100,40,41,59,92,110,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,108,111,103,103,101,114,46,108,111,103,40,39,226,128,148,226,128,148,32,108,111,103,32,101,110,100,32,226,128,148,226,128,148,39,41,59,92,110,32,32,125,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,70,111,114,109,97,116,116,101,100,84,105,109,101,32,40,41,32,123,92,110,32,32,118,97,114,32,116,105,109,101,32,61,32,110,101,119,32,68,97,116,101,40,41,59,92,110,32,32,114,101,116,117,114,110,32,40,92,34,32,64,32,92,34,32,43,32,40,112,97,100,40,116,105,109,101,46,103,101,116,72,111,117,114,115,40,41,44,32,50,41,41,32,43,32,92,34,58,92,34,32,43,32,40,112,97,100,40,116,105,109,101,46,103,101,116,77,105,110,117,116,101,115,40,41,44,32,50,41,41,32,43,32,92,34,58,92,34,32,43,32,40,112,97,100,40,116,105,109,101,46,103,101,116,83,101,99,111,110,100,115,40,41,44,32,50,41,41,32,43,32,92,34,46,92,34,32,43,32,40,112,97,100,40,116,105,109,101,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,44,32,51,41,41,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,112,101,97,116,32,40,115,116,114,44,32,116,105,109,101,115,41,32,123,92,110,32,32,114,101,116,117,114,110,32,40,110,101,119,32,65,114,114,97,121,40,116,105,109,101,115,32,43,32,49,41,41,46,106,111,105,110,40,115,116,114,41,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,112,97,100,32,40,110,117,109,44,32,109,97,120,76,101,110,103,116,104,41,32,123,92,110,32,32,114,101,116,117,114,110,32,114,101,112,101,97,116,40,39,48,39,44,32,109,97,120,76,101,110,103,116,104,32,45,32,110,117,109,46,116,111,83,116,114,105,110,103,40,41,46,108,101,110,103,116,104,41,32,43,32,110,117,109,92,110,125,92,110,92,110,118,97,114,32,105,110,100,101,120,32,61,32,123,92,110,32,32,83,116,111,114,101,58,32,83,116,111,114,101,44,92,110,32,32,105,110,115,116,97,108,108,58,32,105,110,115,116,97,108,108,44,92,110,32,32,118,101,114,115,105,111,110,58,32,39,51,46,54,46,50,39,44,92,110,32,32,109,97,112,83,116,97,116,101,58,32,109,97,112,83,116,97,116,101,44,92,110,32,32,109,97,112,77,117,116,97,116,105,111,110,115,58,32,109,97,112,77,117,116,97,116,105,111,110,115,44,92,110,32,32,109,97,112,71,101,116,116,101,114,115,58,32,109,97,112,71,101,116,116,101,114,115,44,92,110,32,32,109,97,112,65,99,116,105,111,110,115,58,32,109,97,112,65,99,116,105,111,110,115,44,92,110,32,32,99,114,101,97,116,101,78,97,109,101,115,112,97,99,101,100,72,101,108,112,101,114,115,58,32,99,114,101,97,116,101,78,97,109,101,115,112,97,99,101,100,72,101,108,112,101,114,115,44,92,110,32,32,99,114,101,97,116,101,76,111,103,103,101,114,58,32,99,114,101,97,116,101,76,111,103,103,101,114,92,110,125,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,105,110,100,101,120,41,59,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,120,47,100,105,115,116,47,118,117,101,120,46,101,115,109,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,10,10,125,93,41,59}; -char index_js[1483161] = {47,42,10,32,42,32,65,84,84,69,78,84,73,79,78,58,32,84,104,101,32,34,101,118,97,108,34,32,100,101,118,116,111,111,108,32,104,97,115,32,98,101,101,110,32,117,115,101,100,32,40,109,97,121,98,101,32,98,121,32,100,101,102,97,117,108,116,32,105,110,32,109,111,100,101,58,32,34,100,101,118,101,108,111,112,109,101,110,116,34,41,46,10,32,42,32,84,104,105,115,32,100,101,118,116,111,111,108,32,105,115,32,110,101,105,116,104,101,114,32,109,97,100,101,32,102,111,114,32,112,114,111,100,117,99,116,105,111,110,32,110,111,114,32,102,111,114,32,114,101,97,100,97,98,108,101,32,111,117,116,112,117,116,32,102,105,108,101,115,46,10,32,42,32,73,116,32,117,115,101,115,32,34,101,118,97,108,40,41,34,32,99,97,108,108,115,32,116,111,32,99,114,101,97,116,101,32,97,32,115,101,112,97,114,97,116,101,32,115,111,117,114,99,101,32,102,105,108,101,32,105,110,32,116,104,101,32,98,114,111,119,115,101,114,32,100,101,118,116,111,111,108,115,46,10,32,42,32,73,102,32,121,111,117,32,97,114,101,32,116,114,121,105,110,103,32,116,111,32,114,101,97,100,32,116,104,101,32,111,117,116,112,117,116,32,102,105,108,101,44,32,115,101,108,101,99,116,32,97,32,100,105,102,102,101,114,101,110,116,32,100,101,118,116,111,111,108,32,40,104,116,116,112,115,58,47,47,119,101,98,112,97,99,107,46,106,115,46,111,114,103,47,99,111,110,102,105,103,117,114,97,116,105,111,110,47,100,101,118,116,111,111,108,47,41,10,32,42,32,111,114,32,100,105,115,97,98,108,101,32,116,104,101,32,100,101,102,97,117,108,116,32,100,101,118,116,111,111,108,32,119,105,116,104,32,34,100,101,118,116,111,111,108,58,32,102,97,108,115,101,34,46,10,32,42,32,73,102,32,121,111,117,32,97,114,101,32,108,111,111,107,105,110,103,32,102,111,114,32,112,114,111,100,117,99,116,105,111,110,45,114,101,97,100,121,32,111,117,116,112,117,116,32,102,105,108,101,115,44,32,115,101,101,32,109,111,100,101,58,32,34,112,114,111,100,117,99,116,105,111,110,34,32,40,104,116,116,112,115,58,47,47,119,101,98,112,97,99,107,46,106,115,46,111,114,103,47,99,111,110,102,105,103,117,114,97,116,105,111,110,47,109,111,100,101,47,41,46,10,32,42,47,10,47,42,42,42,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,41,32,123,32,47,47,32,119,101,98,112,97,99,107,66,111,111,116,115,116,114,97,112,10,47,42,42,42,42,42,42,47,32,9,118,97,114,32,95,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,115,95,95,32,61,32,40,123,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,65,112,112,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,77,105,109,101,66,97,114,67,111,117,110,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,77,105,109,101,66,97,114,67,111,117,110,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,77,105,109,101,66,97,114,83,105,122,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,77,105,109,101,66,97,114,83,105,122,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,84,114,101,101,109,97,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,84,114,101,101,109,97,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,87,97,108,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,87,97,108,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,73,110,102,111,77,111,100,97,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,73,110,102,111,77,111,100,97,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,72,101,108,112,68,105,97,108,111,103,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,72,101,108,112,68,105,97,108,111,103,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,100,101,120,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,100,101,120,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,102,111,84,97,98,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,102,111,84,97,98,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,97,122,121,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,97,122,121,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,101,97,114,99,104,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,101,97,114,99,104,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,105,115,116,50,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,105,115,116,50,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,112,108,117,103,105,110,95,116,121,112,101,115,99,114,105,112,116,95,110,111,100,101,95,109,111,100,117,108,101,115,95,116,115,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,112,108,117,103,105,110,95,116,121,112,101,115,99,114,105,112,116,95,110,111,100,101,95,109,111,100,117,108,101,115,95,116,115,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,112,108,117,103,105,110,95,116,121,112,101,115,99,114,105,112,116,95,110,111,100,101,95,109,111,100,117,108,101,115,95,116,115,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,112,108,117,103,105,110,95,116,121,112,101,115,99,114,105,112,116,95,110,111,100,101,95,109,111,100,117,108,101,115,95,116,115,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,112,108,117,103,105,110,95,116,121,112,101,115,99,114,105,112,116,95,110,111,100,101,95,109,111,100,117,108,101,115,95,116,115,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,112,108,117,103,105,110,95,116,121,112,101,115,99,114,105,112,116,95,110,111,100,101,95,109,111,100,117,108,101,115,95,116,115,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,112,108,117,103,105,110,95,116,121,112,101,115,99,114,105,112,116,95,110,111,100,101,95,109,111,100,117,108,101,115,95,116,115,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,112,108,117,103,105,110,95,116,121,112,101,115,99,114,105,112,116,95,110,111,100,101,95,109,111,100,117,108,101,115,95,116,115,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,112,108,117,103,105,110,95,116,121,112,101,115,99,114,105,112,116,95,110,111,100,101,95,109,111,100,117,108,101,115,95,116,115,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,92,34,41,59,92,110,32,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,98,97,98,101,108,95,108,111,97,100,101,114,95,108,105,98,95,105,110,100,101,120,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,112,108,117,103,105,110,95,116,121,112,101,115,99,114,105,112,116,95,110,111,100,101,95,109,111,100,117,108,101,115,95,116,115,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,52,49,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,32,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,98,97,53,98,100,57,48,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,98,97,53,98,100,57,48,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,98,97,53,98,100,57,48,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,98,97,53,98,100,57,48,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,98,97,53,98,100,57,48,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,98,97,53,98,100,57,48,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,98,97,53,98,100,57,48,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,65,112,112,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,101,49,98,48,55,56,56,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,101,49,98,48,55,56,56,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,101,49,98,48,55,56,56,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,101,49,98,48,55,56,56,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,101,49,98,48,55,56,56,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,101,49,98,48,55,56,56,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,101,49,98,48,55,56,56,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,100,101,49,102,99,55,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,100,101,49,102,99,55,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,100,101,49,102,99,55,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,100,101,49,102,99,55,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,100,101,49,102,99,55,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,100,101,49,102,99,55,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,100,101,49,102,99,55,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,53,102,99,101,53,97,102,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,53,102,99,101,53,97,102,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,77,105,109,101,66,97,114,67,111,117,110,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,53,102,99,101,53,97,102,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,77,105,109,101,66,97,114,67,111,117,110,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,53,102,99,101,53,97,102,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,77,105,109,101,66,97,114,67,111,117,110,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,53,102,99,101,53,97,102,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,53,102,99,101,53,97,102,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,53,102,99,101,53,97,102,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,55,98,55,53,48,100,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,55,98,55,53,48,100,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,77,105,109,101,66,97,114,83,105,122,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,102,55,98,55,53,48,100,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,77,105,109,101,66,97,114,83,105,122,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,102,55,98,55,53,48,100,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,77,105,109,101,66,97,114,83,105,122,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,102,55,98,55,53,48,100,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,55,98,55,53,48,100,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,55,98,55,53,48,100,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,49,56,53,56,101,53,52,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,49,56,53,56,101,53,52,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,49,56,53,56,101,53,52,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,49,56,53,56,101,53,52,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,49,56,53,56,101,53,52,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,49,56,53,56,101,53,52,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,49,56,53,56,101,53,52,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,55,97,100,98,97,50,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,55,97,100,98,97,50,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,84,114,101,101,109,97,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,55,97,100,98,97,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,84,114,101,101,109,97,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,55,97,100,98,97,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,51,84,114,101,101,109,97,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,55,97,100,98,97,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,55,97,100,98,97,50,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,55,97,100,98,97,50,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,101,100,99,52,100,102,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,101,100,99,52,100,102,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,50,101,100,99,52,100,102,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,50,101,100,99,52,100,102,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,50,101,100,99,52,100,102,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,101,100,99,52,100,102,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,101,100,99,52,100,102,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,51,57,98,52,100,50,49,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,51,57,98,52,100,50,49,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,51,57,98,52,100,50,49,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,51,57,98,52,100,50,49,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,51,57,98,52,100,50,49,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,51,57,98,52,100,50,49,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,51,57,98,52,100,50,49,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,100,51,99,49,48,98,57,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,100,51,99,49,48,98,57,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,100,51,99,49,48,98,57,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,100,51,99,49,48,98,57,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,100,51,99,49,48,98,57,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,100,51,99,49,48,98,57,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,100,51,99,49,48,98,57,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,52,100,101,100,54,54,56,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,52,100,101,100,54,54,56,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,52,100,101,100,54,54,56,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,48,56,56,54,102,53,50,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,48,56,56,54,102,53,50,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,87,97,108,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,48,56,56,54,102,53,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,87,97,108,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,48,56,56,54,102,53,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,87,97,108,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,48,56,56,54,102,53,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,48,56,56,54,102,53,50,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,48,56,56,54,102,53,50,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,99,100,100,52,54,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,99,100,100,52,54,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,99,100,100,52,54,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,100,48,50,55,52,102,55,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,100,48,50,55,52,102,55,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,73,110,102,111,77,111,100,97,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,100,48,50,55,52,102,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,73,110,102,111,77,111,100,97,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,100,48,50,55,52,102,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,73,110,102,111,77,111,100,97,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,100,48,50,55,52,102,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,100,48,50,55,52,102,55,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,100,48,50,55,52,102,55,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,53,53,57,49,57,52,102,54,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,53,53,57,49,57,52,102,54,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,53,53,57,49,57,52,102,54,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,53,53,57,49,57,52,102,54,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,53,53,57,49,57,52,102,54,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,53,53,57,49,57,52,102,54,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,53,53,57,49,57,52,102,54,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,102,52,49,53,56,97,101,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,102,52,49,53,56,97,101,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,102,52,49,53,56,97,101,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,97,98,97,48,50,54,99,54,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,97,98,97,48,50,54,99,54,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,97,98,97,48,50,54,99,54,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,56,51,97,56,49,57,57,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,56,51,97,56,49,57,57,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,72,101,108,112,68,105,97,108,111,103,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,56,51,97,56,49,57,57,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,72,101,108,112,68,105,97,108,111,103,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,56,51,97,56,49,57,57,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,72,101,108,112,68,105,97,108,111,103,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,56,51,97,56,49,57,57,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,56,51,97,56,49,57,57,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,56,51,97,56,49,57,57,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,57,53,98,54,48,99,50,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,57,53,98,54,48,99,50,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,100,101,120,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,57,53,98,54,48,99,50,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,100,101,120,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,57,53,98,54,48,99,50,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,100,101,120,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,57,53,98,54,48,99,50,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,57,53,98,54,48,99,50,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,57,53,98,54,48,99,50,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,55,99,50,49,52,48,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,55,99,50,49,52,48,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,55,99,50,49,52,48,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,54,51,48,98,98,99,48,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,54,51,48,98,98,99,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,102,111,84,97,98,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,54,51,48,98,98,99,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,102,111,84,97,98,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,54,51,48,98,98,99,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,102,111,84,97,98,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,54,51,48,98,98,99,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,54,51,48,98,98,99,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,54,51,48,98,98,99,48,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,101,53,53,99,48,49,99,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,101,53,53,99,48,49,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,97,122,121,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,101,53,53,99,48,49,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,97,122,121,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,101,53,53,99,48,49,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,97,122,121,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,101,53,53,99,48,49,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,101,53,53,99,48,49,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,101,53,53,99,48,49,99,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,52,52,48,99,54,97,53,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,52,52,48,99,54,97,53,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,52,52,48,99,54,97,53,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,52,52,48,99,54,97,53,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,52,52,48,99,54,97,53,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,52,52,48,99,54,97,53,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,52,52,48,99,54,97,53,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,100,55,97,57,55,54,57,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,100,55,97,57,55,54,57,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,100,55,97,57,55,54,57,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,100,55,97,57,55,54,57,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,100,55,97,57,55,54,57,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,100,55,97,57,55,54,57,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,100,55,97,57,55,54,57,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,57,53,100,48,57,100,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,57,53,100,48,57,100,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,57,53,100,48,57,100,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,50,57,53,100,50,50,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,50,57,53,100,50,50,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,50,57,53,100,50,50,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,51,98,101,54,56,49,51,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,51,98,101,54,56,49,51,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,51,98,101,54,56,49,51,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,97,57,52,101,57,55,54,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,97,57,52,101,57,55,54,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,97,57,52,101,57,55,54,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,97,57,52,101,57,55,54,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,97,57,52,101,57,55,54,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,80,114,101,108,111,97,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,97,57,52,101,57,55,54,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,97,57,52,101,57,55,54,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,52,50,48,57,98,52,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,52,50,48,57,98,52,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,57,52,50,48,57,98,52,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,57,52,50,48,57,98,52,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,57,52,50,48,57,98,52,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,52,50,48,57,98,52,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,52,50,48,57,98,52,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,101,99,97,51,55,99,98,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,101,99,97,51,55,99,98,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,101,97,114,99,104,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,101,99,97,51,55,99,98,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,101,97,114,99,104,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,101,99,97,51,55,99,98,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,101,97,114,99,104,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,101,99,97,51,55,99,98,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,101,99,97,51,55,99,98,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,101,99,97,51,55,99,98,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,49,50,101,97,57,55,50,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,49,50,101,97,57,55,50,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,49,50,101,97,57,55,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,49,50,101,97,57,55,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,49,50,101,97,57,55,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,49,50,101,97,57,55,50,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,49,50,101,97,57,55,50,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,56,98,100,54,102,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,56,98,100,54,102,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,56,98,100,54,102,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,101,49,49,49,53,53,50,99,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,101,49,49,49,53,53,50,99,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,101,49,49,49,53,53,50,99,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,101,49,49,49,53,53,50,99,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,101,49,49,49,53,53,50,99,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,101,49,49,49,53,53,50,99,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,101,49,49,49,53,53,50,99,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,102,48,51,100,50,98,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,102,48,51,100,50,98,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,102,48,51,100,50,98,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,55,101,100,50,54,55,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,55,101,100,50,54,55,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,55,101,100,50,54,55,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,56,52,53,50,49,52,97,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,56,52,53,50,49,52,97,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,56,52,53,50,49,52,97,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,54,50,53,51,52,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,54,50,53,51,52,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,54,50,53,51,52,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,53,57,101,51,51,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,53,57,101,51,51,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,53,57,101,51,51,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,99,51,49,100,52,57,97,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,99,51,49,100,52,57,97,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,99,51,49,100,52,57,97,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,101,98,98,49,52,97,54,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,101,98,98,49,52,97,54,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,101,98,98,49,52,97,54,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,97,100,102,101,53,48,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,97,100,102,101,53,48,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,97,100,102,101,53,48,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,98,54,101,100,54,54,56,50,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,98,54,101,100,54,54,56,50,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,105,115,116,50,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,98,54,101,100,54,54,56,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,105,115,116,50,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,98,54,101,100,54,54,56,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,105,115,116,50,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,98,54,101,100,54,54,56,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,98,54,101,100,54,54,56,50,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,98,54,101,100,54,54,56,50,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,54,48,57,53,98,97,56,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,54,48,57,53,98,97,56,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,102,54,48,57,53,98,97,56,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,102,54,48,57,53,98,97,56,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,102,54,48,57,53,98,97,56,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,54,48,57,53,98,97,56,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,54,48,57,53,98,97,56,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,98,57,56,51,50,101,53,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,98,57,56,51,50,101,53,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,98,57,56,51,50,101,53,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,51,56,55,53,50,100,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,51,56,55,53,50,100,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,51,56,55,53,50,100,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,51,56,55,53,50,100,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,51,56,55,53,50,100,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,51,56,55,53,50,100,101,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,51,56,55,53,50,100,101,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,56,102,57,51,55,102,56,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,56,102,57,51,55,102,56,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,56,102,57,51,55,102,56,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,114,101,101,120,112,111,114,116,32,115,97,102,101,32,42,47,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,56,102,57,51,55,102,56,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,97,99,104,101,68,105,114,101,99,116,111,114,121,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,118,117,101,95,108,111,97,100,101,114,95,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,95,98,97,53,52,55,49,56,48,95,118,117,101,95,108,111,97,100,101,114,95,116,101,109,112,108,97,116,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,116,101,109,112,108,97,116,101,76,111,97,100,101,114,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,56,102,57,51,55,102,56,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,56,102,57,51,55,102,56,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,92,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,92,92,34,58,92,92,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,92,92,34,44,92,92,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,92,92,34,58,92,92,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,92,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,56,102,57,51,55,102,56,38,92,34,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,98,97,53,98,100,57,48,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,98,97,53,98,100,57,48,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,98,97,53,98,100,57,48,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,98,97,53,98,100,57,48,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,98,97,53,98,100,57,48,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,98,97,53,98,100,57,48,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,98,97,53,98,100,57,48,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,98,97,53,98,100,57,48,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,98,97,53,98,100,57,48,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,65,112,112,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,101,100,99,52,100,102,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,101,100,99,52,100,102,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,50,101,100,99,52,100,102,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,101,100,99,52,100,102,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,101,100,99,52,100,102,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,50,101,100,99,52,100,102,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,50,101,100,99,52,100,102,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,50,101,100,99,52,100,102,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,50,101,100,99,52,100,102,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,52,100,101,100,54,54,56,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,52,100,101,100,54,54,56,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,52,100,101,100,54,54,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,52,100,101,100,54,54,56,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,52,100,101,100,54,54,56,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,52,100,101,100,54,54,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,52,100,101,100,54,54,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,52,100,101,100,54,54,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,52,100,101,100,54,54,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,48,52,100,101,100,54,54,56,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,48,52,100,101,100,54,54,56,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,48,52,100,101,100,54,54,56,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,48,52,100,101,100,54,54,56,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,48,52,100,101,100,54,54,56,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,99,100,100,52,54,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,99,100,100,52,54,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,99,100,100,52,54,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,99,100,100,52,54,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,99,100,100,52,54,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,53,53,57,49,57,52,102,54,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,53,53,57,49,57,52,102,54,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,53,53,57,49,57,52,102,54,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,53,53,57,49,57,52,102,54,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,53,53,57,49,57,52,102,54,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,53,53,57,49,57,52,102,54,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,53,53,57,49,57,52,102,54,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,53,53,57,49,57,52,102,54,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,53,53,57,49,57,52,102,54,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,54,102,52,49,53,56,97,101,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,54,102,52,49,53,56,97,101,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,54,102,52,49,53,56,97,101,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,54,102,52,49,53,56,97,101,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,54,102,52,49,53,56,97,101,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,97,98,97,48,50,54,99,54,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,97,98,97,48,50,54,99,54,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,97,98,97,48,50,54,99,54,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,97,98,97,48,50,54,99,54,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,97,98,97,48,50,54,99,54,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,55,99,50,49,52,48,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,55,99,50,49,52,48,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,55,99,50,49,52,48,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,55,99,50,49,52,48,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,55,99,50,49,52,48,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,52,52,48,99,54,97,53,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,52,52,48,99,54,97,53,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,52,52,48,99,54,97,53,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,52,52,48,99,54,97,53,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,52,52,48,99,54,97,53,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,52,52,48,99,54,97,53,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,52,52,48,99,54,97,53,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,52,52,48,99,54,97,53,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,52,52,48,99,54,97,53,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,57,53,100,48,57,100,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,57,53,100,48,57,100,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,57,53,100,48,57,100,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,57,53,100,48,57,100,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,57,53,100,48,57,100,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,50,57,53,100,50,50,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,50,57,53,100,50,50,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,50,57,53,100,50,50,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,50,57,53,100,50,50,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,50,57,53,100,50,50,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,51,51,98,101,54,56,49,51,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,51,51,98,101,54,56,49,51,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,51,51,98,101,54,56,49,51,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,51,51,98,101,54,56,49,51,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,51,51,98,101,54,56,49,51,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,51,51,98,101,54,56,49,51,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,51,51,98,101,54,56,49,51,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,51,51,98,101,54,56,49,51,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,51,51,98,101,54,56,49,51,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,51,51,98,101,54,56,49,51,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,51,51,98,101,54,56,49,51,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,51,51,98,101,54,56,49,51,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,51,51,98,101,54,56,49,51,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,51,51,98,101,54,56,49,51,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,52,50,48,57,98,52,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,52,50,48,57,98,52,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,57,52,50,48,57,98,52,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,52,50,48,57,98,52,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,52,50,48,57,98,52,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,57,52,50,48,57,98,52,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,57,52,50,48,57,98,52,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,57,52,50,48,57,98,52,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,57,52,50,48,57,98,52,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,49,50,101,97,57,55,50,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,49,50,101,97,57,55,50,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,50,49,50,101,97,57,55,50,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,49,50,101,97,57,55,50,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,49,50,101,97,57,55,50,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,50,49,50,101,97,57,55,50,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,50,49,50,101,97,57,55,50,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,50,49,50,101,97,57,55,50,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,50,49,50,101,97,57,55,50,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,56,98,100,54,102,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,56,98,100,54,102,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,56,98,100,54,102,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,56,98,100,54,102,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,56,98,100,54,102,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,101,49,49,49,53,53,50,99,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,101,49,49,49,53,53,50,99,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,101,49,49,49,53,53,50,99,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,101,49,49,49,53,53,50,99,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,101,49,49,49,53,53,50,99,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,101,49,49,49,53,53,50,99,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,101,49,49,49,53,53,50,99,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,101,49,49,49,53,53,50,99,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,101,49,49,49,53,53,50,99,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,102,48,51,100,50,98,55,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,102,48,51,100,50,98,55,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,102,48,51,100,50,98,55,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,102,48,51,100,50,98,55,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,102,48,51,100,50,98,55,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,49,102,48,51,100,50,98,55,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,49,102,48,51,100,50,98,55,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,49,102,48,51,100,50,98,55,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,49,102,48,51,100,50,98,55,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,49,102,48,51,100,50,98,55,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,49,102,48,51,100,50,98,55,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,49,102,48,51,100,50,98,55,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,49,102,48,51,100,50,98,55,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,49,102,48,51,100,50,98,55,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,55,101,100,50,54,55,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,55,101,100,50,54,55,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,55,101,100,50,54,55,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,55,101,100,50,54,55,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,55,101,100,50,54,55,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,52,55,101,100,50,54,55,48,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,52,55,101,100,50,54,55,48,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,52,55,101,100,50,54,55,48,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,52,55,101,100,50,54,55,48,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,52,55,101,100,50,54,55,48,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,52,55,101,100,50,54,55,48,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,52,55,101,100,50,54,55,48,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,52,55,101,100,50,54,55,48,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,52,55,101,100,50,54,55,48,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,50,56,52,53,50,49,52,97,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,50,56,52,53,50,49,52,97,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,50,56,52,53,50,49,52,97,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,50,56,52,53,50,49,52,97,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,50,56,52,53,50,49,52,97,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,54,50,53,51,52,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,54,50,53,51,52,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,54,50,53,51,52,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,54,50,53,51,52,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,54,50,53,51,52,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,102,53,57,101,51,51,55,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,102,53,57,101,51,51,55,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,102,53,57,101,51,51,55,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,102,53,57,101,51,51,55,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,102,53,57,101,51,51,55,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,99,51,49,100,52,57,97,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,99,51,49,100,52,57,97,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,99,51,49,100,52,57,97,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,99,51,49,100,52,57,97,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,99,51,49,100,52,57,97,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,54,101,98,98,49,52,97,54,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,54,101,98,98,49,52,97,54,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,54,101,98,98,49,52,97,54,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,54,101,98,98,49,52,97,54,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,54,101,98,98,49,52,97,54,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,97,100,102,101,53,48,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,97,100,102,101,53,48,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,97,100,102,101,53,48,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,97,100,102,101,53,48,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,97,100,102,101,53,48,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,102,54,48,57,53,98,97,56,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,102,54,48,57,53,98,97,56,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,102,54,48,57,53,98,97,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,102,54,48,57,53,98,97,56,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,102,54,48,57,53,98,97,56,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,102,54,48,57,53,98,97,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,102,54,48,57,53,98,97,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,102,54,48,57,53,98,97,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,102,54,48,57,53,98,97,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,98,57,56,51,50,101,53,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,98,57,56,51,50,101,53,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,98,57,56,51,50,101,53,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,98,57,56,51,50,101,53,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,98,57,56,51,50,101,53,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,51,56,55,53,50,100,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,51,56,55,53,50,100,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,51,56,55,53,50,100,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,51,56,55,53,50,100,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,51,56,55,53,50,100,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,51,56,55,53,50,100,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,51,56,55,53,50,100,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,51,56,55,53,50,100,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,51,56,55,53,50,100,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,56,102,57,51,55,102,56,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,56,102,57,51,55,102,56,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,56,102,57,51,55,102,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,45,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,56,102,57,51,55,102,56,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,56,102,57,51,55,102,56,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,56,102,57,51,55,102,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,56,102,57,51,55,102,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,118,97,114,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,32,61,32,123,125,59,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,102,111,114,40,118,97,114,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,105,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,56,102,57,51,55,102,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,32,105,102,40,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,32,33,61,61,32,92,34,100,101,102,97,117,108,116,92,34,41,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,91,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,93,32,61,32,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,115,116,121,108,101,95,108,111,97,100,101,114,95,105,110,100,101,120,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,49,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,108,111,97,100,101,114,115,95,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,95,106,115,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,112,111,115,116,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,99,108,111,110,101,100,82,117,108,101,83,101,116,95,49,50,95,117,115,101,95,50,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,97,99,104,101,95,108,111,97,100,101,114,95,100,105,115,116,95,99,106,115,95,106,115,95,114,117,108,101,83,101,116,95,48,95,117,115,101,95,48,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,105,110,100,101,120,95,106,115,95,118,117,101,95,108,111,97,100,101,114,95,111,112,116,105,111,110,115,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,56,102,57,51,55,102,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,107,101,121,93,59,32,125,46,98,105,110,100,40,48,44,32,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,95,75,69,89,95,95,41,92,110,47,42,32,104,97,114,109,111,110,121,32,114,101,101,120,112,111,114,116,32,40,117,110,107,110,111,119,110,41,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,87,69,66,80,65,67,75,95,82,69,69,88,80,79,82,84,95,79,66,74,69,67,84,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,98,97,53,98,100,57,48,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,98,97,53,98,100,57,48,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,103,101,116,85,114,108,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,103,101,116,85,114,108,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,48,95,95,95,32,61,32,110,101,119,32,85,82,76,40,47,42,32,97,115,115,101,116,32,105,109,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,98,97,115,101,54,52,44,80,72,78,50,90,121,66,52,98,87,120,117,99,122,48,105,97,72,82,48,99,68,111,118,76,51,100,51,100,121,53,51,77,121,53,118,99,109,99,118,77,106,65,119,77,67,57,122,100,109,99,105,73,72,104,116,98,71,53,122,79,110,104,115,97,87,53,114,80,83,74,111,100,72,82,119,79,105,56,118,100,51,100,51,76,110,99,122,76,109,57,121,90,121,56,120,79,84,107,53,76,51,104,115,97,87,53,114,73,105,66,52,80,83,73,119,99,72,103,105,73,72,107,57,73,106,66,119,101,67,73,75,73,67,65,103,73,67,66,50,97,87,86,51,81,109,57,52,80,83,73,119,73,68,65,103,78,68,73,50,76,106,89,50,78,121,65,48,77,106,89,117,78,106,89,51,73,105,66,122,100,72,108,115,90,84,48,105,90,87,53,104,89,109,120,108,76,87,74,104,89,50,116,110,99,109,57,49,98,109,81,54,98,109,86,51,73,68,65,103,77,67,65,48,77,106,89,117,78,106,89,51,73,68,81,121,78,105,52,50,78,106,99,55,73,105,66,109,97,87,120,115,80,83,73,106,90,109,90,109,73,106,52,75,80,71,99,43,67,105,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,80,72,74,108,89,51,81,103,101,68,48,105,77,84,107,121,73,105,66,53,80,83,73,120,79,84,73,105,73,72,100,112,90,72,82,111,80,83,73,48,77,105,52,50,78,106,99,105,73,71,104,108,97,87,100,111,100,68,48,105,77,84,73,52,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,119,89,88,82,111,73,71,81,57,73,107,48,121,77,84,77,117,77,122,77,122,76,68,66,68,79,84,85,117,78,68,89,51,76,68,65,115,77,67,119,53,78,83,52,48,78,106,99,115,77,67,119,121,77,84,77,117,77,122,77,122,99,122,107,49,76,106,81,50,78,121,119,121,77,84,77,117,77,122,77,122,76,68,73,120,77,121,52,122,77,122,77,115,77,106,69,122,76,106,77,122,77,49,77,48,77,106,89,117,78,106,89,51,76,68,77,122,77,83,52,121,76,68,81,121,78,105,52,50,78,106,99,115,77,106,69,122,76,106,77,122,77,119,111,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,85,122,77,122,77,83,52,121,76,68,65,115,77,106,69,122,76,106,77,122,77,121,119,119,101,105,66,78,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,106,76,84,107,48,76,106,65,52,76,68,65,116,77,84,99,119,76,106,89,50,78,121,48,51,78,105,52,49,79,68,99,116,77,84,99,119,76,106,89,50,78,121,48,120,78,122,65,117,78,106,89,51,85,122,69,120,79,83,52,121,78,84,77,115,78,68,73,117,78,106,89,51,76,68,73,120,77,121,52,122,77,122,77,115,78,68,73,117,78,106,89,51,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,66,84,77,122,103,48,76,68,69,120,79,83,52,121,78,84,77,115,77,122,103,48,76,68,73,120,77,121,52,122,77,122,78,84,77,122,65,51,76,106,81,120,77,121,119,122,79,68,81,115,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,54,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,121,90,87,78,48,73,72,103,57,73,106,69,53,77,105,73,103,101,84,48,105,77,84,65,50,76,106,89,50,78,121,73,103,100,50,108,107,100,71,103,57,73,106,81,121,76,106,89,50,78,121,73,103,97,71,86,112,90,50,104,48,80,83,73,48,77,105,52,50,78,106,99,105,76,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,76,50,99,43,67,105,65,103,73,67,65,56,76,50,99,43,67,106,119,118,90,122,52,75,80,67,57,122,100,109,99,43,67,103,61,61,32,42,47,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,98,97,115,101,54,52,44,80,72,78,50,90,121,66,52,98,87,120,117,99,122,48,105,97,72,82,48,99,68,111,118,76,51,100,51,100,121,53,51,77,121,53,118,99,109,99,118,77,106,65,119,77,67,57,122,100,109,99,105,73,72,104,116,98,71,53,122,79,110,104,115,97,87,53,114,80,83,74,111,100,72,82,119,79,105,56,118,100,51,100,51,76,110,99,122,76,109,57,121,90,121,56,120,79,84,107,53,76,51,104,115,97,87,53,114,73,105,66,52,80,83,73,119,99,72,103,105,73,72,107,57,73,106,66,119,101,67,73,75,73,67,65,103,73,67,66,50,97,87,86,51,81,109,57,52,80,83,73,119,73,68,65,103,78,68,73,50,76,106,89,50,78,121,65,48,77,106,89,117,78,106,89,51,73,105,66,122,100,72,108,115,90,84,48,105,90,87,53,104,89,109,120,108,76,87,74,104,89,50,116,110,99,109,57,49,98,109,81,54,98,109,86,51,73,68,65,103,77,67,65,48,77,106,89,117,78,106,89,51,73,68,81,121,78,105,52,50,78,106,99,55,73,105,66,109,97,87,120,115,80,83,73,106,90,109,90,109,73,106,52,75,80,71,99,43,67,105,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,80,72,74,108,89,51,81,103,101,68,48,105,77,84,107,121,73,105,66,53,80,83,73,120,79,84,73,105,73,72,100,112,90,72,82,111,80,83,73,48,77,105,52,50,78,106,99,105,73,71,104,108,97,87,100,111,100,68,48,105,77,84,73,52,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,119,89,88,82,111,73,71,81,57,73,107,48,121,77,84,77,117,77,122,77,122,76,68,66,68,79,84,85,117,78,68,89,51,76,68,65,115,77,67,119,53,78,83,52,48,78,106,99,115,77,67,119,121,77,84,77,117,77,122,77,122,99,122,107,49,76,106,81,50,78,121,119,121,77,84,77,117,77,122,77,122,76,68,73,120,77,121,52,122,77,122,77,115,77,106,69,122,76,106,77,122,77,49,77,48,77,106,89,117,78,106,89,51,76,68,77,122,77,83,52,121,76,68,81,121,78,105,52,50,78,106,99,115,77,106,69,122,76,106,77,122,77,119,111,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,85,122,77,122,77,83,52,121,76,68,65,115,77,106,69,122,76,106,77,122,77,121,119,119,101,105,66,78,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,106,76,84,107,48,76,106,65,52,76,68,65,116,77,84,99,119,76,106,89,50,78,121,48,51,78,105,52,49,79,68,99,116,77,84,99,119,76,106,89,50,78,121,48,120,78,122,65,117,78,106,89,51,85,122,69,120,79,83,52,121,78,84,77,115,78,68,73,117,78,106,89,51,76,68,73,120,77,121,52,122,77,122,77,115,78,68,73,117,78,106,89,51,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,66,84,77,122,103,48,76,68,69,120,79,83,52,121,78,84,77,115,77,122,103,48,76,68,73,120,77,121,52,122,77,122,78,84,77,122,65,51,76,106,81,120,77,121,119,122,79,68,81,115,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,54,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,121,90,87,78,48,73,72,103,57,73,106,69,53,77,105,73,103,101,84,48,105,77,84,65,50,76,106,89,50,78,121,73,103,100,50,108,107,100,71,103,57,73,106,81,121,76,106,89,50,78,121,73,103,97,71,86,112,90,50,104,48,80,83,73,48,77,105,52,50,78,106,99,105,76,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,76,50,99,43,67,105,65,103,73,67,65,56,76,50,99,43,67,106,119,118,90,122,52,75,80,67,57,122,100,109,99,43,67,103,61,61,92,34,41,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,48,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,103,101,116,85,114,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,40,41,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,73,77,80,79,82,84,95,48,95,95,95,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,104,116,109,108,44,32,98,111,100,121,32,123,92,92,110,32,32,104,101,105,103,104,116,58,32,49,48,48,37,59,92,92,110,125,92,92,110,35,97,112,112,32,123,92,92,110,32,32,47,42,102,111,110,116,45,102,97,109,105,108,121,58,32,65,118,101,110,105,114,44,32,72,101,108,118,101,116,105,99,97,44,32,65,114,105,97,108,44,32,115,97,110,115,45,115,101,114,105,102,59,42,47,92,92,110,32,32,45,119,101,98,107,105,116,45,102,111,110,116,45,115,109,111,111,116,104,105,110,103,58,32,97,110,116,105,97,108,105,97,115,101,100,59,92,92,110,32,32,45,109,111,122,45,111,115,120,45,102,111,110,116,45,115,109,111,111,116,104,105,110,103,58,32,103,114,97,121,115,99,97,108,101,59,92,92,110,32,32,47,42,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,42,47,92,92,110,32,32,99,111,108,111,114,58,32,35,50,99,51,101,53,48,59,92,92,110,32,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,49,101,109,59,92,92,110,32,32,109,105,110,45,104,101,105,103,104,116,58,32,49,48,48,37,59,92,92,110,125,92,92,110,92,92,110,47,42,66,108,97,99,107,32,116,104,101,109,101,42,47,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,48,48,48,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,99,97,114,100,44,32,46,116,104,101,109,101,45,98,108,97,99,107,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,50,49,50,49,59,92,92,110,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,112,120,59,92,92,110,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,116,97,98,108,101,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,116,97,98,108,101,32,116,100,44,32,46,116,104,101,109,101,45,98,108,97,99,107,32,46,116,97,98,108,101,32,116,104,32,123,92,92,110,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,116,97,98,108,101,32,116,104,101,97,100,32,116,104,32,123,92,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,49,112,120,32,115,111,108,105,100,32,35,54,52,54,52,54,52,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,32,123,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,51,55,52,55,52,70,59,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,92,92,110,32,32,99,111,108,111,114,58,32,35,98,100,98,100,98,100,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,32,123,92,92,110,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,55,53,55,53,55,53,59,92,92,110,32,32,111,117,116,108,105,110,101,58,32,48,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,32,49,50,51,44,32,50,53,53,44,32,46,50,53,41,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,119,104,111,108,101,114,111,119,44,32,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,32,43,32,46,119,104,111,108,101,114,111,119,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,101,120,112,97,110,100,58,58,98,101,102,111,114,101,44,32,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,111,108,108,97,112,115,101,58,58,98,101,102,111,114,101,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,98,108,97,99,107,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,101,101,101,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,123,92,92,110,32,32,102,111,110,116,45,119,101,105,103,104,116,58,32,52,48,48,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,52,112,120,59,92,92,110,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,72,101,108,118,101,116,105,99,97,44,32,78,117,101,117,101,44,32,86,101,114,100,97,110,97,44,32,115,97,110,115,45,115,101,114,105,102,59,92,92,110,32,32,109,97,120,45,104,101,105,103,104,116,58,32,51,53,48,112,120,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,92,92,110,125,92,92,110,46,105,110,115,112,105,114,101,45,116,114,101,101,32,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,32,123,92,92,110,32,32,108,101,102,116,58,32,50,50,112,120,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,116,111,112,58,32,55,112,120,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,102,111,114,109,45,99,111,110,116,114,111,108,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,51,55,52,55,52,70,59,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,92,92,110,32,32,99,111,108,111,114,58,32,35,100,98,100,98,100,98,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,53,52,54,69,55,65,59,92,92,110,32,32,99,111,108,111,114,58,32,35,102,102,102,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,32,46,116,104,101,109,101,45,98,108,97,99,107,32,46,100,101,102,97,117,108,116,45,105,110,112,117,116,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,51,55,52,55,52,70,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,99,111,108,111,114,58,32,35,100,98,100,98,100,98,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,58,58,45,109,111,122,45,112,108,97,99,101,104,111,108,100,101,114,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,66,68,66,68,66,68,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,111,112,97,99,105,116,121,58,32,49,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,58,58,112,108,97,99,101,104,111,108,100,101,114,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,66,68,66,68,66,68,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,111,112,97,99,105,116,121,58,32,49,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,46,115,104,111,119,32,46,110,97,118,45,108,105,110,107,44,32,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,50,49,50,49,50,49,59,92,92,110,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,54,49,54,49,54,49,32,35,54,49,54,49,54,49,32,35,50,49,50,49,50,49,59,92,92,110,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,32,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,32,123,92,92,110,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,54,49,54,49,54,49,32,35,54,49,54,49,54,49,32,35,50,49,50,49,50,49,59,92,92,110,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,32,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,32,123,92,92,110,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,101,48,101,48,101,48,32,35,101,48,101,48,101,48,32,35,50,49,50,49,50,49,59,92,92,110,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,45,116,97,98,115,32,123,92,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,35,54,49,54,49,54,49,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,97,58,104,111,118,101,114,44,32,46,116,104,101,109,101,45,98,108,97,99,107,32,46,98,116,110,58,104,111,118,101,114,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,102,102,102,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,98,45,100,114,111,112,100,111,119,110,32,97,58,104,111,118,101,114,32,123,92,92,110,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,98,116,110,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,101,101,101,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,109,111,100,97,108,45,104,101,97,100,101,114,32,46,99,108,111,115,101,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,92,92,110,32,32,116,101,120,116,45,115,104,97,100,111,119,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,109,111,100,97,108,45,104,101,97,100,101,114,32,123,92,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,49,112,120,32,115,111,108,105,100,32,35,54,52,54,52,54,52,59,92,92,110,125,92,92,110,92,92,110,47,42,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,32,42,47,92,92,110,35,110,97,118,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,51,48,112,120,59,92,92,110,125,92,92,110,35,110,97,118,32,97,32,123,92,92,110,32,32,102,111,110,116,45,119,101,105,103,104,116,58,32,98,111,108,100,59,92,92,110,32,32,99,111,108,111,114,58,32,35,50,99,51,101,53,48,59,92,92,110,125,92,92,110,35,110,97,118,32,97,46,114,111,117,116,101,114,45,108,105,110,107,45,101,120,97,99,116,45,97,99,116,105,118,101,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,52,50,98,57,56,51,59,92,92,110,125,92,92,110,46,109,111,98,105,108,101,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,99,111,110,116,97,105,110,101,114,32,123,92,92,110,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,49,101,109,59,92,92,110,125,92,92,110,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,54,53,48,112,120,41,32,123,92,92,110,46,109,111,98,105,108,101,32,123,92,92,110,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,105,116,105,97,108,59,92,92,110,125,92,92,110,46,110,111,116,45,109,111,98,105,108,101,32,123,92,92,110,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,103,114,105,100,45,115,105,110,103,108,101,45,99,111,108,117,109,110,32,46,102,105,116,32,123,92,92,110,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,99,111,110,116,97,105,110,101,114,32,123,92,92,110,32,32,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,48,59,92,92,110,32,32,32,32,112,97,100,100,105,110,103,45,114,105,103,104,116,58,32,48,59,92,92,110,32,32,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,48,92,92,110,125,92,92,110,46,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,32,123,92,92,110,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,92,92,110,125,92,92,110,125,92,92,110,46,105,110,102,111,45,105,99,111,110,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,114,101,109,59,92,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,48,46,50,114,101,109,59,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,114,101,109,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,32,117,114,108,40,92,34,32,43,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,85,82,76,95,82,69,80,76,65,67,69,77,69,78,84,95,48,95,95,95,32,43,32,92,34,41,59,92,92,110,32,32,102,105,108,116,101,114,58,32,98,114,105,103,104,116,110,101,115,115,40,52,53,37,41,59,92,92,110,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,92,92,110,125,92,92,110,46,116,97,98,115,32,123,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,48,112,120,59,92,92,110,125,92,92,110,46,109,111,100,97,108,45,116,105,116,108,101,32,123,92,92,110,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,92,92,110,125,92,92,110,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,32,49,53,48,48,112,120,41,32,123,92,92,110,46,99,111,110,116,97,105,110,101,114,32,123,92,92,110,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,52,52,48,112,120,59,92,92,110,125,92,92,110,125,92,92,110,46,110,111,85,105,45,99,111,110,110,101,99,116,115,32,123,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,112,120,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,109,97,114,107,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,50,49,55,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,49,112,120,32,48,59,92,92,110,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,109,97,114,107,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,97,40,50,53,49,44,32,49,57,49,44,32,52,49,44,32,48,46,50,53,41,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,49,112,120,32,48,59,92,92,110,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,99,111,110,116,101,110,116,45,100,105,118,32,109,97,114,107,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,97,40,50,53,49,44,32,49,57,49,44,32,52,49,44,32,48,46,52,48,41,59,92,92,110,32,32,99,111,108,111,114,58,32,119,104,105,116,101,59,92,92,110,125,92,92,110,46,99,111,110,116,101,110,116,45,100,105,118,32,123,92,92,110,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,32,77,101,110,108,111,44,32,77,111,110,97,99,111,44,32,67,111,110,115,111,108,97,115,44,32,92,92,92,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,92,92,92,34,44,32,92,92,92,34,67,111,117,114,105,101,114,32,78,101,119,92,92,92,34,44,32,109,111,110,111,115,112,97,99,101,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,49,101,109,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,53,102,53,102,53,59,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,99,99,99,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,92,92,110,32,32,109,97,114,103,105,110,58,32,51,112,120,59,92,92,110,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,114,109,97,108,59,92,92,110,32,32,99,111,108,111,114,58,32,35,48,48,48,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,99,111,110,116,101,110,116,45,100,105,118,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,51,55,52,55,52,70,59,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,92,92,110,32,32,99,111,108,111,114,58,32,35,69,48,69,48,69,48,70,70,59,92,92,110,125,92,92,110,46,103,114,97,112,104,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,45,98,108,111,99,107,59,92,92,110,32,32,119,105,100,116,104,58,32,52,48,37,59,92,92,110,125,92,92,110,46,112,111,105,110,116,101,114,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,125,92,92,110,46,108,111,97,100,105,110,103,45,112,97,103,101,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,92,110,32,32,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,32,99,101,110,116,101,114,59,92,92,110,32,32,97,108,105,103,110,45,105,116,101,109,115,58,32,99,101,110,116,101,114,59,92,92,110,32,32,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,32,99,111,108,117,109,110,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,48,48,37,59,92,92,110,32,32,103,97,112,58,32,49,53,112,120,92,92,110,125,92,92,110,46,108,111,97,100,105,110,103,45,115,112,105,110,110,101,114,115,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,92,110,32,32,103,97,112,58,32,49,48,112,120,59,92,92,110,125,92,92,110,46,108,111,97,100,105,110,103,45,116,101,120,116,32,123,92,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,65,112,112,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,101,100,99,52,100,102,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,101,100,99,52,100,102,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,35,100,97,116,101,83,108,105,100,101,114,32,123,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,51,52,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,50,112,120,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,52,100,101,100,54,54,56,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,52,100,101,100,54,54,56,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,102,105,116,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,92,92,110,32,32,109,105,110,45,119,105,100,116,104,58,32,54,52,112,120,59,92,92,110,32,32,109,97,120,45,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,32,32,47,42,109,97,120,45,104,101,105,103,104,116,58,32,52,48,48,112,120,59,42,47,92,92,110,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,32,48,59,92,92,110,32,32,119,105,100,116,104,58,32,97,117,116,111,59,92,92,110,32,32,104,101,105,103,104,116,58,32,97,117,116,111,59,92,92,110,125,92,92,110,46,97,117,100,105,111,45,102,105,116,32,123,92,92,110,32,32,104,101,105,103,104,116,58,32,51,57,112,120,59,92,92,110,32,32,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,32,98,111,116,116,111,109,59,92,92,110,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,59,92,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,112,97,100,100,105,110,103,45,48,51,91,100,97,116,97,45,118,45,48,52,100,101,100,54,54,56,93,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,46,51,114,101,109,59,92,92,110,125,92,92,110,46,99,97,114,100,91,100,97,116,97,45,118,45,48,52,100,101,100,54,54,56,93,32,123,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,92,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,48,59,92,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,48,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,48,56,41,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,92,92,110,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,99,97,114,100,45,98,111,100,121,91,100,97,116,97,45,118,45,48,52,100,101,100,54,54,56,93,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,46,51,114,101,109,59,92,92,110,125,92,92,110,46,100,111,99,45,99,97,114,100,91,100,97,116,97,45,118,45,48,52,100,101,100,54,54,56,93,32,123,92,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,51,112,120,59,92,92,110,32,32,112,97,100,100,105,110,103,45,114,105,103,104,116,58,32,51,112,120,59,92,92,110,125,92,92,110,46,115,117,98,45,100,111,99,117,109,101,110,116,32,46,99,97,114,100,91,100,97,116,97,45,118,45,48,52,100,101,100,54,54,56,93,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,65,66,52,55,66,67,49,70,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,115,117,98,45,100,111,99,117,109,101,110,116,32,46,99,97,114,100,91,100,97,116,97,45,118,45,48,52,100,101,100,54,54,56,93,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,51,55,52,55,52,70,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,115,117,98,45,100,111,99,117,109,101,110,116,32,46,102,105,116,91,100,97,116,97,45,118,45,48,52,100,101,100,54,54,56,93,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,52,112,120,32,52,112,120,32,48,32,52,112,120,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,102,105,108,101,45,116,105,116,108,101,45,97,110,99,104,111,114,91,100,97,116,97,45,118,45,52,99,100,100,52,54,49,52,93,32,123,92,92,110,32,32,109,97,120,45,119,105,100,116,104,58,32,99,97,108,99,40,49,48,48,37,32,45,32,49,46,50,114,101,109,41,59,92,92,110,125,92,92,110,46,102,105,108,101,45,116,105,116,108,101,91,100,97,116,97,45,118,45,52,99,100,100,52,54,49,52,93,32,123,92,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,46,49,114,101,109,59,92,92,110,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,92,92,110,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,54,112,120,59,92,92,110,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,92,92,92,34,83,111,117,114,99,101,32,83,97,110,115,32,80,114,111,92,92,92,34,44,32,115,97,110,115,45,115,101,114,105,102,59,92,92,110,32,32,102,111,110,116,45,119,101,105,103,104,116,58,32,98,111,108,100,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,102,105,108,101,45,116,105,116,108,101,91,100,97,116,97,45,118,45,52,99,100,100,52,54,49,52,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,100,100,100,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,102,105,108,101,45,116,105,116,108,101,91,100,97,116,97,45,118,45,52,99,100,100,52,54,49,52,93,58,104,111,118,101,114,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,102,102,102,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,108,105,103,104,116,32,46,102,105,108,101,45,116,105,116,108,101,91,100,97,116,97,45,118,45,52,99,100,100,52,54,49,52,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,98,108,97,99,107,59,92,92,110,125,92,92,110,46,100,111,99,45,99,97,114,100,32,46,102,105,108,101,45,116,105,116,108,101,91,100,97,116,97,45,118,45,52,99,100,100,52,54,49,52,93,32,123,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,50,112,120,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,53,53,57,49,57,52,102,54,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,53,53,57,49,57,52,102,54,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,50,49,50,49,59,92,92,110,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,92,92,110,92,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,110,111,110,101,59,92,92,110,32,32,98,111,114,100,101,114,45,108,101,102,116,58,32,110,111,110,101,59,92,92,110,32,32,98,111,114,100,101,114,45,114,105,103,104,116,58,32,110,111,110,101,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,46,50,53,114,101,109,32,48,46,53,114,101,109,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,123,92,92,110,32,32,98,111,114,100,101,114,45,116,111,112,58,32,110,111,110,101,59,92,92,110,125,92,92,110,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,115,117,98,45,100,111,99,117,109,101,110,116,91,100,97,116,97,45,118,45,54,102,52,49,53,56,97,101,93,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,65,66,52,55,66,67,49,70,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,115,117,98,45,100,111,99,117,109,101,110,116,91,100,97,116,97,45,118,45,54,102,52,49,53,56,97,101,93,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,51,55,52,55,52,70,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,108,105,115,116,45,103,114,111,117,112,91,100,97,116,97,45,118,45,54,102,52,49,53,56,97,101,93,32,123,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,92,92,110,125,92,92,110,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,91,100,97,116,97,45,118,45,54,102,52,49,53,56,97,101,93,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,46,50,53,114,101,109,32,48,46,53,114,101,109,59,92,92,110,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,46,49,50,53,114,101,109,32,48,46,50,53,114,101,109,32,114,103,98,40,48,32,48,32,48,32,47,32,56,37,41,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,92,92,110,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,112,97,116,104,45,114,111,119,91,100,97,116,97,45,118,45,54,102,52,49,53,56,97,101,93,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,92,110,32,32,97,108,105,103,110,45,105,116,101,109,115,58,32,102,108,101,120,45,115,116,97,114,116,59,92,92,110,125,92,92,110,46,112,97,116,104,45,108,105,110,101,91,100,97,116,97,45,118,45,54,102,52,49,53,56,97,101,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,56,48,56,48,56,48,59,92,92,110,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,92,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,48,46,51,101,109,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,112,97,116,104,45,108,105,110,101,91,100,97,116,97,45,118,45,54,102,52,49,53,56,97,101,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,98,98,98,59,92,92,110,125,92,92,110,46,112,108,97,121,91,100,97,116,97,45,118,45,54,102,52,49,53,56,97,101,93,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,119,105,100,116,104,58,32,49,56,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,56,112,120,59,92,92,110,32,32,108,101,102,116,58,32,53,48,37,59,92,92,110,32,32,116,111,112,58,32,53,48,37,59,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,92,92,110,32,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,112,108,97,121,32,115,118,103,91,100,97,116,97,45,118,45,54,102,52,49,53,56,97,101,93,32,123,92,92,110,32,32,102,105,108,108,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,55,41,59,92,92,110,125,92,92,110,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,46,105,109,103,45,119,114,97,112,112,101,114,91,100,97,116,97,45,118,45,54,102,52,49,53,56,97,101,93,32,123,92,92,110,32,32,119,105,100,116,104,58,32,56,56,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,56,56,112,120,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,125,92,92,110,46,102,105,116,45,115,109,91,100,97,116,97,45,118,45,54,102,52,49,53,56,97,101,93,32,123,92,92,110,32,32,109,97,120,45,104,101,105,103,104,116,58,32,49,48,48,37,59,92,92,110,32,32,109,97,120,45,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,32,32,119,105,100,116,104,58,32,97,117,116,111,59,92,92,110,32,32,104,101,105,103,104,116,58,32,97,117,116,111,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,116,111,112,58,32,48,59,92,92,110,32,32,98,111,116,116,111,109,58,32,48,59,92,92,110,32,32,108,101,102,116,58,32,48,59,92,92,110,32,32,114,105,103,104,116,58,32,48,59,92,92,110,32,32,109,97,114,103,105,110,58,32,97,117,116,111,59,92,92,110,92,92,110,32,32,47,42,98,111,120,45,115,104,97,100,111,119,58,32,50,112,120,32,50,112,120,32,52,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,50,41,59,42,47,92,92,110,125,92,92,110,46,100,111,99,45,108,105,110,101,91,100,97,116,97,45,118,45,54,102,52,49,53,56,97,101,93,32,123,92,92,110,32,32,109,97,120,45,119,105,100,116,104,58,32,99,97,108,99,40,49,48,48,37,32,45,32,56,56,112,120,32,45,32,49,46,53,114,101,109,41,59,92,92,110,32,32,102,108,101,120,58,32,49,59,92,92,110,32,32,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,32,109,105,100,100,108,101,59,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,97,117,116,111,59,92,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,97,117,116,111,59,92,92,110,125,92,92,110,46,102,105,108,101,45,105,99,111,110,45,119,114,97,112,112,101,114,91,100,97,116,97,45,118,45,54,102,52,49,53,56,97,101,93,32,123,92,92,110,32,32,119,105,100,116,104,58,32,99,97,108,99,40,56,56,112,120,32,43,32,46,53,114,101,109,41,59,92,92,110,32,32,104,101,105,103,104,116,58,32,56,56,112,120,59,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,105,109,103,45,119,114,97,112,112,101,114,91,100,97,116,97,45,118,45,97,98,97,48,50,54,99,54,93,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,92,110,125,92,92,110,46,105,109,103,45,119,114,97,112,112,101,114,58,104,111,118,101,114,32,115,118,103,91,100,97,116,97,45,118,45,97,98,97,48,50,54,99,54,93,32,123,92,92,110,32,32,102,105,108,108,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,49,41,59,92,92,110,125,92,92,110,46,99,97,114,100,45,105,109,103,45,116,111,112,91,100,97,116,97,45,118,45,97,98,97,48,50,54,99,54,93,32,123,92,92,110,32,32,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,32,48,59,92,92,110,32,32,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,32,48,59,92,92,110,125,92,92,110,46,112,108,97,121,91,100,97,116,97,45,118,45,97,98,97,48,50,54,99,54,93,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,119,105,100,116,104,58,32,50,53,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,53,112,120,59,92,92,110,32,32,108,101,102,116,58,32,53,48,37,59,92,92,110,32,32,116,111,112,58,32,53,48,37,59,92,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,92,92,110,32,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,112,108,97,121,32,115,118,103,91,100,97,116,97,45,118,45,97,98,97,48,50,54,99,54,93,32,123,92,92,110,32,32,102,105,108,108,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,55,41,59,92,92,110,125,92,92,110,46,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,91,100,97,116,97,45,118,45,97,98,97,48,50,54,99,54,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,70,67,49,48,55,59,92,92,110,125,92,92,110,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,91,100,97,116,97,45,118,45,97,98,97,48,50,54,99,54,93,32,123,92,92,110,32,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,46,55,53,114,101,109,59,92,92,110,32,32,98,111,116,116,111,109,58,32,117,110,115,101,116,59,92,92,110,32,32,116,111,112,58,32,48,59,92,92,110,32,32,108,101,102,116,58,32,117,110,115,101,116,59,92,92,110,32,32,114,105,103,104,116,58,32,117,110,115,101,116,59,92,92,110,125,92,92,110,46,115,109,97,108,108,45,98,97,100,103,101,91,100,97,116,97,45,118,45,97,98,97,48,50,54,99,54,93,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,49,112,120,32,51,112,120,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,55,48,37,59,92,92,110,125,92,92,110,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,116,105,109,101,115,116,97,109,112,45,116,101,120,116,91,100,97,116,97,45,118,45,48,55,99,50,49,52,48,48,93,32,123,92,92,110,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,50,52,112,120,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,56,48,37,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,118,101,114,115,105,111,110,45,98,97,100,103,101,91,100,97,116,97,45,118,45,48,55,99,50,49,52,48,48,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,101,101,101,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,118,101,114,115,105,111,110,45,98,97,100,103,101,91,100,97,116,97,45,118,45,48,55,99,50,49,52,48,48,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,50,50,50,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,91,100,97,116,97,45,118,45,48,55,99,50,49,52,48,48,93,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,46,50,101,109,32,48,46,52,101,109,59,92,92,110,125,92,92,110,35,105,110,100,101,120,45,112,105,99,107,101,114,45,100,101,115,107,116,111,112,91,100,97,116,97,45,118,45,48,55,99,50,49,52,48,48,93,32,123,92,92,110,32,32,111,118,101,114,102,108,111,119,45,121,58,32,97,117,116,111,59,92,92,110,32,32,109,97,120,45,104,101,105,103,104,116,58,32,49,51,50,112,120,59,92,92,110,125,92,92,110,46,98,116,110,45,108,105,110,107,91,100,97,116,97,45,118,45,48,55,99,50,49,52,48,48,93,58,102,111,99,117,115,32,123,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,117,110,115,101,108,101,99,116,97,98,108,101,91,100,97,116,97,45,118,45,48,55,99,50,49,52,48,48,93,32,123,92,92,110,32,32,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,32,32,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,32,32,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,32,32,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,91,100,97,116,97,45,118,45,48,55,99,50,49,52,48,48,93,32,123,92,92,110,32,32,122,45,105,110,100,101,120,58,32,50,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,92,92,110,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,91,100,97,116,97,45,118,45,48,55,99,50,49,52,48,48,93,32,123,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,32,48,46,49,41,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,91,100,97,116,97,45,118,45,48,55,99,50,49,52,48,48,93,58,102,105,114,115,116,45,99,104,105,108,100,32,123,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,32,48,46,48,53,41,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,91,100,97,116,97,45,118,45,48,55,99,50,49,52,48,48,93,32,123,92,92,110,32,32,122,45,105,110,100,101,120,58,32,50,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,92,92,110,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,92,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,32,48,46,51,41,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,108,105,115,116,45,103,114,111,117,112,91,100,97,116,97,45,118,45,48,55,99,50,49,52,48,48,93,32,123,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,52,52,48,99,54,97,53,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,52,52,48,99,54,97,53,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,110,116,104,45,99,104,105,108,100,40,50,41,32,123,92,92,110,32,32,111,114,100,101,114,58,32,49,59,92,92,110,125,92,92,110,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,110,116,104,45,99,104,105,108,100,40,49,41,32,123,92,92,110,32,32,111,114,100,101,114,58,32,50,59,92,92,110,125,92,92,110,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,110,116,104,45,99,104,105,108,100,40,51,41,32,123,92,92,110,32,32,111,114,100,101,114,58,32,51,59,92,92,110,125,92,92,110,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,110,116,104,45,99,104,105,108,100,40,52,41,32,123,92,92,110,32,32,111,114,100,101,114,58,32,52,59,92,92,110,125,92,92,110,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,110,116,104,45,99,104,105,108,100,40,53,41,32,123,92,92,110,32,32,111,114,100,101,114,58,32,53,59,92,92,110,125,92,92,110,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,54,53,48,112,120,41,32,123,92,92,110,32,32,47,42,32,68,105,115,97,98,108,101,32,102,117,108,108,115,99,114,101,101,110,32,111,110,32,109,111,98,105,108,101,32,98,101,99,97,117,115,101,32,105,116,39,115,32,98,117,103,103,121,32,42,47,92,92,110,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,110,116,104,45,99,104,105,108,100,40,54,41,32,123,92,92,110,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,92,92,110,125,92,92,110,125,92,92,110,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,110,116,104,45,99,104,105,108,100,40,54,41,32,123,92,92,110,32,32,111,114,100,101,114,58,32,54,59,92,92,110,125,92,92,110,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,110,116,104,45,99,104,105,108,100,40,55,41,32,123,92,92,110,32,32,111,114,100,101,114,58,32,55,59,92,92,110,125,92,92,110,46,100,105,115,97,98,108,101,45,97,110,105,109,97,116,105,111,110,115,32,46,102,115,108,105,103,104,116,98,111,120,45,99,111,110,116,97,105,110,101,114,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,97,40,51,48,44,51,48,44,51,48,44,46,57,41,59,92,92,110,125,92,92,110,46,100,105,115,97,98,108,101,45,97,110,105,109,97,116,105,111,110,115,32,46,102,115,108,105,103,104,116,98,111,120,45,116,114,97,110,115,102,111,114,109,45,116,114,97,110,115,105,116,105,111,110,32,123,92,92,110,32,32,116,114,97,110,115,105,116,105,111,110,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,100,105,115,97,98,108,101,45,97,110,105,109,97,116,105,111,110,115,32,46,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,45,115,116,114,111,110,103,32,123,92,92,110,32,32,97,110,105,109,97,116,105,111,110,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,102,115,108,105,103,104,116,98,111,120,45,99,111,110,116,97,105,110,101,114,32,118,105,100,101,111,44,32,46,102,115,108,105,103,104,116,98,111,120,45,99,111,110,116,97,105,110,101,114,32,105,109,103,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,117,110,115,101,116,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,35,109,105,109,101,84,114,101,101,91,100,97,116,97,45,118,45,52,57,53,100,48,57,100,99,93,32,123,92,92,110,32,32,109,97,120,45,104,101,105,103,104,116,58,32,51,53,48,112,120,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,110,97,118,98,97,114,91,100,97,116,97,45,118,45,52,50,57,53,100,50,50,48,93,32,123,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,46,49,50,53,114,101,109,32,48,46,50,53,114,101,109,32,114,103,98,40,48,32,48,32,48,32,47,32,56,37,41,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,98,97,114,91,100,97,116,97,45,118,45,52,50,57,53,100,50,50,48,93,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,53,52,54,98,55,97,51,48,59,92,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,110,97,118,98,97,114,45,98,114,97,110,100,91,100,97,116,97,45,118,45,52,50,57,53,100,50,50,48,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,50,50,50,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,46,55,53,114,101,109,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,59,92,92,110,125,92,92,110,46,110,97,118,98,97,114,45,98,114,97,110,100,91,100,97,116,97,45,118,45,52,50,57,53,100,50,50,48,93,58,104,111,118,101,114,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,48,48,48,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,118,101,114,115,105,111,110,91,100,97,116,97,45,118,45,52,50,57,53,100,50,50,48,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,50,50,50,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,45,49,56,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,45,49,52,112,120,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,49,112,120,59,92,92,110,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,109,111,110,111,115,112,97,99,101,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,118,101,114,115,105,111,110,91,100,97,116,97,45,118,45,52,50,57,53,100,50,50,48,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,102,53,102,53,102,53,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,91,100,97,116,97,45,118,45,52,50,57,53,100,50,50,48,93,32,123,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,46,55,53,114,101,109,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,59,92,92,110,32,32,99,111,108,111,114,58,32,35,102,53,102,53,102,53,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,97,91,100,97,116,97,45,118,45,52,50,57,53,100,50,50,48,93,58,104,111,118,101,114,44,32,46,116,104,101,109,101,45,98,108,97,99,107,32,46,98,116,110,91,100,97,116,97,45,118,45,52,50,57,53,100,50,50,48,93,58,104,111,118,101,114,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,102,102,102,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,98,97,114,32,115,112,97,110,91,100,97,116,97,45,118,45,52,50,57,53,100,50,50,48,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,101,101,101,59,92,92,110,125,92,92,110,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,54,53,48,112,120,41,32,123,92,92,110,46,116,97,103,108,105,110,101,91,100,97,116,97,45,118,45,52,50,57,53,100,50,50,48,93,32,123,92,92,110,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,118,101,114,115,105,111,110,91,100,97,116,97,45,118,45,52,50,57,53,100,50,50,48,93,32,123,92,92,110,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,92,92,110,125,92,92,110,125,92,92,110,46,116,104,101,109,101,45,108,105,103,104,116,32,46,98,116,110,45,108,105,110,107,91,100,97,116,97,45,118,45,52,50,57,53,100,50,50,48,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,50,50,50,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,35,109,105,109,101,84,114,101,101,91,100,97,116,97,45,118,45,51,51,98,101,54,56,49,51,93,32,123,92,92,110,32,32,109,97,120,45,104,101,105,103,104,116,58,32,51,53,48,112,120,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,92,92,110,125,92,92,110,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,120,45,102,108,101,120,91,100,97,116,97,45,118,45,51,51,98,101,54,56,49,51,93,32,123,92,92,110,32,32,102,108,101,120,58,32,49,32,49,32,97,117,116,111,59,92,92,110,32,32,119,105,100,116,104,58,32,49,37,59,92,92,110,32,32,109,105,110,45,119,105,100,116,104,58,32,48,59,92,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,48,59,92,92,110,125,92,92,110,46,115,117,103,103,101,115,116,105,111,110,45,108,105,110,101,91,100,97,116,97,45,118,45,51,51,98,101,54,56,49,51,93,32,123,92,92,110,32,32,109,97,120,45,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,92,110,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,92,92,110,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,46,49,59,92,92,110,125,92,92,110,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,51,51,98,101,54,56,49,51,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,51,51,98,101,54,56,49,51,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,115,117,103,103,101,115,116,105,111,110,115,32,123,92,92,110,32,32,109,97,120,45,104,101,105,103,104,116,58,32,50,53,48,112,120,59,92,92,110,32,32,111,118,101,114,102,108,111,119,45,121,58,32,97,117,116,111,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,115,117,103,103,101,115,116,105,111,110,115,32,123,92,92,110,32,32,99,111,108,111,114,58,32,98,108,97,99,107,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,52,50,48,57,98,52,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,52,50,48,57,98,52,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,35,114,101,115,117,108,116,115,32,123,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,92,92,110,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,48,56,41,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,92,92,110,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,92,92,110,125,92,92,110,35,114,101,115,117,108,116,115,32,46,99,97,114,100,45,98,111,100,121,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,46,55,101,109,32,49,46,50,53,101,109,59,92,92,110,125,92,92,110,46,104,105,100,100,101,110,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,49,50,101,97,57,55,50,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,49,50,101,97,57,55,50,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,35,115,105,122,101,83,108,105,100,101,114,32,123,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,51,52,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,50,112,120,59,92,92,110,125,92,92,110,46,115,108,105,100,101,114,45,99,111,108,111,114,48,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,57,54,102,51,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,115,108,105,100,101,114,45,99,111,108,111,114,48,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,48,48,98,99,100,52,59,92,92,110,125,92,92,110,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,32,123,92,92,110,32,32,119,105,100,116,104,58,32,50,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,49,56,112,120,59,92,92,110,32,32,114,105,103,104,116,58,32,45,49,112,120,59,92,92,110,32,32,116,111,112,58,32,45,51,112,120,59,92,92,110,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,49,57,55,54,100,50,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,110,111,110,101,59,92,92,110,32,32,99,117,114,115,111,114,58,32,101,119,45,114,101,115,105,122,101,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,50,49,54,56,97,99,59,92,92,110,125,92,92,110,46,110,111,85,105,45,104,97,110,100,108,101,58,98,101,102,111,114,101,32,123,92,92,110,32,32,116,111,112,58,32,45,54,112,120,59,92,92,110,32,32,108,101,102,116,58,32,51,112,120,59,92,92,110,92,92,110,32,32,119,105,100,116,104,58,32,49,48,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,56,112,120,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,116,114,97,110,115,112,97,114,101,110,116,59,92,92,110,125,92,92,110,46,110,111,85,105,45,104,97,110,100,108,101,58,97,102,116,101,114,32,123,92,92,110,32,32,116,111,112,58,32,45,54,112,120,59,92,92,110,32,32,108,101,102,116,58,32,45,49,48,112,120,59,92,92,110,92,92,110,32,32,119,105,100,116,104,58,32,49,48,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,56,112,120,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,116,114,97,110,115,112,97,114,101,110,116,59,92,92,110,125,92,92,110,46,110,111,85,105,45,100,114,97,103,103,97,98,108,101,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,109,111,118,101,59,92,92,110,125,92,92,110,46,110,111,85,105,45,116,111,111,108,116,105,112,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,102,102,102,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,92,92,110,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,46,51,51,51,59,92,92,110,32,32,116,101,120,116,45,115,104,97,100,111,119,58,32,110,111,110,101,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,32,50,112,120,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,57,54,70,51,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,92,92,110,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,111,85,105,45,116,111,111,108,116,105,112,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,48,48,98,99,100,52,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,111,85,105,45,99,111,110,110,101,99,116,115,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,51,55,52,55,52,102,59,92,92,110,125,92,92,110,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,111,114,105,103,105,110,32,62,32,46,110,111,85,105,45,116,111,111,108,116,105,112,32,123,92,92,110,32,32,98,111,116,116,111,109,58,32,55,112,120,59,92,92,110,125,92,92,110,46,110,111,85,105,45,116,97,114,103,101,116,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,101,49,101,52,101,57,59,92,92,110,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,110,111,110,101,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,98,97,100,103,101,45,112,105,108,108,91,100,97,116,97,45,118,45,55,56,98,100,54,102,48,99,93,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,46,51,101,109,32,46,52,101,109,32,48,46,49,101,109,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,54,114,101,109,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,101,49,49,49,53,53,50,99,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,101,49,49,49,53,53,50,99,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,32,97,32,123,92,92,110,32,32,102,111,110,116,45,119,101,105,103,104,116,58,32,98,111,108,100,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,98,97,100,103,101,45,118,105,100,101,111,91,100,97,116,97,45,118,45,49,102,48,51,100,50,98,55,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,50,55,55,54,49,59,92,92,110,125,92,92,110,46,98,97,100,103,101,45,105,109,97,103,101,91,100,97,116,97,45,118,45,49,102,48,51,100,50,98,55,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,65,65,57,57,67,57,59,92,92,110,125,92,92,110,46,98,97,100,103,101,45,97,117,100,105,111,91,100,97,116,97,45,118,45,49,102,48,51,100,50,98,55,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,48,48,65,68,69,70,59,92,92,110,125,92,92,110,46,98,97,100,103,101,45,117,115,101,114,91,100,97,116,97,45,118,45,49,102,48,51,100,50,98,55,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,92,92,110,125,92,92,110,46,98,97,100,103,101,45,117,115,101,114,91,100,97,116,97,45,118,45,49,102,48,51,100,50,98,55,93,58,104,111,118,101,114,44,32,46,97,100,100,45,116,97,103,45,98,117,116,116,111,110,91,100,97,116,97,45,118,45,49,102,48,51,100,50,98,55,93,58,104,111,118,101,114,32,123,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,49,112,120,32,51,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,50,41,44,32,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,50,52,41,59,92,92,110,125,92,92,110,46,98,97,100,103,101,45,116,101,120,116,91,100,97,116,97,45,118,45,49,102,48,51,100,50,98,55,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,65,65,66,51,67,59,92,92,110,125,92,92,110,46,98,97,100,103,101,91,100,97,116,97,45,118,45,49,102,48,51,100,50,98,55,93,32,123,92,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,51,112,120,59,92,92,110,125,92,92,110,46,98,97,100,103,101,45,100,101,108,101,116,101,91,100,97,116,97,45,118,45,49,102,48,51,100,50,98,55,93,32,123,92,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,45,50,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,50,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,45,49,112,120,59,92,92,110,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,109,111,110,111,115,112,97,99,101,59,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,57,48,37,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,50,41,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,46,49,101,109,32,48,46,52,101,109,59,92,92,110,32,32,99,111,108,111,114,58,32,119,104,105,116,101,59,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,125,92,92,110,46,98,97,100,103,101,45,115,105,122,101,91,100,97,116,97,45,118,45,49,102,48,51,100,50,98,55,93,32,123,92,92,110,32,32,119,105,100,116,104,58,32,53,48,112,120,59,92,92,110,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,45,98,108,111,99,107,59,92,92,110,125,92,92,110,46,97,100,100,45,116,97,103,45,98,117,116,116,111,110,91,100,97,116,97,45,118,45,49,102,48,51,100,50,98,55,93,32,123,92,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,92,110,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,92,92,110,32,32,119,105,100,116,104,58,32,53,48,112,120,59,92,92,110,125,92,92,110,46,98,97,100,103,101,91,100,97,116,97,45,118,45,49,102,48,51,100,50,98,55,93,32,123,92,92,110,32,32,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,32,32,32,32,32,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,32,32,32,32,32,32,32,32,32,32,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,98,97,100,103,101,45,115,117,103,103,101,115,116,105,111,110,91,100,97,116,97,45,118,45,49,102,48,51,100,50,98,55,93,32,123,92,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,57,48,37,59,92,92,110,32,32,102,111,110,116,45,119,101,105,103,104,116,58,32,110,111,114,109,97,108,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,49,102,48,51,100,50,98,55,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,49,102,48,51,100,50,98,55,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,118,99,45,116,119,105,116,116,101,114,45,98,111,100,121,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,48,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,118,99,45,116,119,105,116,116,101,114,32,123,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,116,111,111,108,116,105,112,32,123,92,92,110,32,32,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,32,32,32,32,32,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,32,32,32,32,32,32,32,32,32,32,117,115,101,114,45,115,101,108,101,99,116,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,116,111,97,115,116,32,123,92,92,110,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,35,109,105,109,101,84,114,101,101,91,100,97,116,97,45,118,45,52,55,101,100,50,54,55,48,93,32,123,92,92,110,32,32,109,97,120,45,104,101,105,103,104,116,58,32,51,53,48,112,120,59,92,92,110,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,52,55,101,100,50,54,55,48,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,52,55,101,100,50,54,55,48,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,99,117,115,101,100,32,62,32,46,119,104,111,108,101,114,111,119,32,123,92,92,110,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,92,92,110,125,92,92,110,35,116,97,103,45,112,105,99,107,101,114,45,102,105,108,116,101,114,45,98,97,114,32,123,92,92,110,32,32,112,97,100,100,105,110,103,58,32,49,48,112,120,32,52,112,120,32,52,112,120,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,109,97,116,99,104,101,100,32,62,32,46,119,104,111,108,101,114,111,119,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,97,40,50,53,49,44,32,49,57,49,44,32,52,49,44,32,48,46,50,53,41,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,116,104,117,109,98,110,97,105,108,45,112,114,111,103,114,101,115,115,45,98,97,114,91,100,97,116,97,45,118,45,50,56,52,53,50,49,52,97,93,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,108,101,102,116,58,32,48,59,92,92,110,32,32,98,111,116,116,111,109,58,32,48,59,92,92,110,92,92,110,32,32,104,101,105,103,104,116,58,32,52,112,120,59,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,57,54,102,51,65,65,59,92,92,110,92,92,110,32,32,122,45,105,110,100,101,120,58,32,57,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,116,104,117,109,98,110,97,105,108,45,112,114,111,103,114,101,115,115,45,98,97,114,91,100,97,116,97,45,118,45,50,56,52,53,50,49,52,97,93,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,97,40,48,44,32,49,56,56,44,32,50,49,50,44,32,48,46,57,53,41,59,92,92,110,125,92,92,110,46,115,117,98,45,100,111,99,117,109,101,110,116,32,46,116,104,117,109,98,110,97,105,108,45,112,114,111,103,114,101,115,115,45,98,97,114,91,100,97,116,97,45,118,45,50,56,52,53,50,49,52,97,93,32,123,92,92,110,32,32,109,97,120,45,119,105,100,116,104,58,32,99,97,108,99,40,49,48,48,37,32,45,32,56,112,120,41,59,92,92,110,32,32,108,101,102,116,58,32,52,112,120,59,92,92,110,125,92,92,110,92,92,110,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,115,118,103,91,100,97,116,97,45,118,45,55,54,50,53,51,52,48,99,93,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,45,98,108,111,99,107,59,92,92,110,32,32,119,105,100,116,104,58,32,50,48,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,48,112,120,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,115,118,103,91,100,97,116,97,45,118,45,52,102,53,57,101,51,51,55,93,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,45,98,108,111,99,107,59,92,92,110,32,32,119,105,100,116,104,58,32,50,48,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,48,112,120,59,92,92,110,32,32,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,32,109,105,100,100,108,101,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,102,105,108,101,45,105,99,111,110,91,100,97,116,97,45,118,45,48,99,51,49,100,52,57,97,93,32,123,92,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,92,110,32,32,109,97,120,45,104,101,105,103,104,116,58,32,49,48,48,37,59,92,92,110,32,32,109,97,120,45,119,105,100,116,104,58,32,49,48,48,37,59,92,92,110,32,32,116,111,112,58,32,48,59,92,92,110,32,32,98,111,116,116,111,109,58,32,48,59,92,92,110,32,32,108,101,102,116,58,32,48,59,92,92,110,32,32,114,105,103,104,116,58,32,48,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,98,108,97,99,107,32,46,102,105,108,101,45,105,99,111,110,91,100,97,116,97,45,118,45,48,99,51,49,100,52,57,97,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,102,102,102,102,102,102,53,48,59,92,92,110,125,92,92,110,46,116,104,101,109,101,45,108,105,103,104,116,32,46,102,105,108,101,45,105,99,111,110,91,100,97,116,97,45,118,45,48,99,51,49,100,52,57,97,93,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,48,48,48,48,48,48,97,48,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,115,118,103,91,100,97,116,97,45,118,45,54,101,98,98,49,52,97,54,93,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,45,98,108,111,99,107,59,92,92,110,32,32,119,105,100,116,104,58,32,50,48,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,48,112,120,59,92,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,45,52,112,120,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,115,118,103,91,100,97,116,97,45,118,45,97,100,102,101,53,48,49,52,93,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,45,98,108,111,99,107,59,92,92,110,32,32,119,105,100,116,104,58,32,50,48,112,120,59,92,92,110,32,32,104,101,105,103,104,116,58,32,50,48,112,120,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,102,54,48,57,53,98,97,56,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,102,54,48,57,53,98,97,56,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,115,104,114,105,110,107,32,123,92,92,110,32,32,102,108,101,120,45,103,114,111,119,58,32,105,110,104,101,114,105,116,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,105,109,103,45,119,114,97,112,112,101,114,91,100,97,116,97,45,118,45,49,98,57,56,51,50,101,53,93,32,123,92,92,110,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,45,98,108,111,99,107,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,51,56,55,53,50,100,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,51,56,55,53,50,100,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,35,115,101,97,114,99,104,45,112,97,110,101,108,32,123,92,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,48,56,41,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,92,92,110,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,116,111,97,115,116,45,104,101,97,100,101,114,45,105,110,102,111,44,32,46,116,111,97,115,116,45,98,111,100,121,45,105,110,102,111,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,57,54,102,51,59,92,92,110,32,32,99,111,108,111,114,58,32,35,102,102,102,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,116,111,97,115,116,45,104,101,97,100,101,114,45,101,114,114,111,114,44,32,46,116,111,97,115,116,45,98,111,100,121,45,101,114,114,111,114,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,97,57,52,52,52,50,59,92,92,110,32,32,99,111,108,111,114,58,32,35,102,50,100,101,100,101,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,46,116,111,97,115,116,45,104,101,97,100,101,114,45,101,114,114,111,114,32,123,92,92,110,32,32,99,111,108,111,114,58,32,35,102,102,102,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,110,111,110,101,59,92,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,45,49,101,109,59,92,92,110,125,92,92,110,46,116,111,97,115,116,45,104,101,97,100,101,114,45,101,114,114,111,114,32,46,99,108,111,115,101,32,123,92,92,110,32,32,116,101,120,116,45,115,104,97,100,111,119,58,32,110,111,110,101,59,92,92,110,125,92,92,110,46,116,111,97,115,116,45,104,101,97,100,101,114,45,119,97,114,110,105,110,103,44,32,46,116,111,97,115,116,45,98,111,100,121,45,119,97,114,110,105,110,103,32,123,92,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,70,70,56,70,48,48,59,92,92,110,32,32,99,111,108,111,114,58,32,35,70,70,70,51,69,48,32,33,105,109,112,111,114,116,97,110,116,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,56,102,57,51,55,102,56,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,56,102,57,51,55,102,56,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,110,111,83,111,117,114,99,101,77,97,112,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,114,117,110,116,105,109,101,47,97,112,105,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,47,32,73,109,112,111,114,116,115,92,110,92,110,92,110,118,97,114,32,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,32,61,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,97,112,105,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,40,40,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,99,115,115,95,108,111,97,100,101,114,95,100,105,115,116,95,114,117,110,116,105,109,101,95,110,111,83,111,117,114,99,101,77,97,112,115,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,41,59,92,110,47,47,32,77,111,100,117,108,101,92,110,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,46,112,117,115,104,40,91,109,111,100,117,108,101,46,105,100,44,32,92,34,92,92,110,46,115,116,97,116,115,45,99,97,114,100,32,123,92,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,92,110,32,32,112,97,100,100,105,110,103,58,32,49,101,109,59,92,92,110,125,92,92,110,92,34,44,32,92,34,92,34,93,41,59,92,110,47,47,32,69,120,112,111,114,116,115,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,95,95,95,67,83,83,95,76,79,65,68,69,82,95,69,88,80,79,82,84,95,95,95,41,59,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,78,97,118,66,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,120,47,100,105,115,116,47,118,117,101,120,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,109,97,105,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,109,97,105,110,32,42,47,32,92,34,46,47,115,114,99,47,109,97,105,110,46,106,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,78,97,118,66,97,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,78,97,118,66,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,99,111,110,102,105,103,76,111,97,100,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,97,117,116,104,76,111,97,100,105,110,103,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,115,105,115,116,50,73,110,102,111,76,111,97,100,105,110,103,58,32,116,114,117,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,112,71,101,116,116,101,114,115,41,40,91,92,34,111,112,116,84,104,101,109,101,92,34,93,41,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,92,34,108,111,97,100,67,111,110,102,105,103,117,114,97,116,105,111,110,92,34,41,46,116,104,101,110,40,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,46,108,111,99,97,108,101,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,76,97,110,103,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,109,117,116,97,116,105,111,110,32,61,62,32,123,92,110,32,32,32,32,32,32,105,102,32,40,109,117,116,97,116,105,111,110,46,116,121,112,101,32,61,61,61,32,92,34,115,101,116,79,112,116,76,97,110,103,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,46,108,111,99,97,108,101,32,61,32,109,117,116,97,116,105,111,110,46,112,97,121,108,111,97,100,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,111,110,102,105,103,76,111,97,100,105,110,103,32,61,32,116,114,117,101,59,92,110,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,40,41,32,61,62,32,116,104,105,115,46,99,111,110,102,105,103,76,111,97,100,105,110,103,32,61,32,102,97,108,115,101,44,32,49,48,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,109,117,116,97,116,105,111,110,46,116,121,112,101,32,61,61,61,32,92,34,115,101,116,65,117,116,104,48,84,111,107,101,110,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,117,116,104,76,111,97,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,103,101,116,83,105,115,116,50,73,110,102,111,40,41,46,116,104,101,110,40,100,97,116,97,32,61,62,32,123,92,110,32,32,32,32,32,32,105,102,32,40,100,97,116,97,46,97,117,116,104,48,69,110,97,98,108,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,117,116,104,76,111,97,100,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,109,97,105,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,115,101,116,117,112,65,117,116,104,48,41,40,100,97,116,97,46,97,117,116,104,48,68,111,109,97,105,110,44,32,100,97,116,97,46,97,117,116,104,48,67,108,105,101,110,116,73,100,44,32,100,97,116,97,46,97,117,116,104,48,65,117,100,105,101,110,99,101,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,97,117,116,104,46,36,119,97,116,99,104,40,92,34,108,111,97,100,105,110,103,92,34,44,32,108,111,97,100,105,110,103,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,111,97,100,105,110,103,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,36,97,117,116,104,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,97,117,116,104,46,108,111,103,105,110,87,105,116,104,82,101,100,105,114,101,99,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,92,34,99,111,100,101,92,34,32,112,97,114,97,109,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,114,101,112,108,97,99,101,83,116,97,116,101,40,123,125,44,32,92,34,92,34,44,32,92,34,47,92,34,32,43,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,97,115,104,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,92,34,108,111,97,100,65,117,116,104,48,84,111,107,101,110,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,117,116,104,76,111,97,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,105,115,116,50,73,110,102,111,40,100,97,116,97,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,73,110,100,105,99,101,115,40,100,97,116,97,46,105,110,100,105,99,101,115,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,112,65,99,116,105,111,110,115,41,40,91,92,34,115,101,116,83,105,115,116,50,73,110,102,111,92,34,93,41,44,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,97,112,77,117,116,97,116,105,111,110,115,41,40,91,92,34,115,101,116,73,110,100,105,99,101,115,92,34,93,41,44,92,110,32,32,32,32,103,101,116,67,108,97,115,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,92,34,116,104,101,109,101,45,108,105,103,104,116,92,34,58,32,116,104,105,115,46,111,112,116,84,104,101,109,101,32,61,61,61,32,92,34,108,105,103,104,116,92,34,44,92,110,32,32,32,32,32,32,32,32,92,34,116,104,101,109,101,45,98,108,97,99,107,92,34,58,32,116,104,105,115,46,111,112,116,84,104,101,109,101,32,61,61,61,32,92,34,98,108,97,99,107,92,34,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,65,112,112,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,67,111,110,116,101,110,116,68,105,118,92,34,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,100,111,99,92,34,93,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,99,111,110,116,101,110,116,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,92,34,99,111,110,116,101,110,116,46,110,71,114,97,109,92,34,93,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,92,34,99,111,110,116,101,110,116,46,110,71,114,97,109,92,34,93,91,48,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,46,99,111,110,116,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,46,99,111,110,116,101,110,116,91,48,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,99,111,110,115,116,32,102,111,114,109,97,116,83,73,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,102,111,114,109,97,116,40,92,34,126,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,100,97,116,101,72,105,115,116,111,103,114,97,109,40,100,97,116,97,44,32,115,118,103,44,32,116,105,116,108,101,41,32,123,92,110,32,32,108,101,116,32,98,105,110,115,32,61,32,100,97,116,97,46,109,97,112,40,100,32,61,62,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,101,110,103,116,104,58,32,78,117,109,98,101,114,40,100,46,99,111,117,110,116,41,44,92,110,32,32,32,32,32,32,120,48,58,32,78,117,109,98,101,114,40,100,46,98,117,99,107,101,116,41,44,92,110,32,32,32,32,32,32,120,49,58,32,78,117,109,98,101,114,40,100,46,98,117,99,107,101,116,41,32,43,32,50,54,50,57,56,48,48,92,110,32,32,32,32,125,59,92,110,32,32,125,41,59,92,110,32,32,98,105,110,115,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,46,108,101,110,103,116,104,32,45,32,98,46,108,101,110,103,116,104,41,59,92,110,32,32,99,111,110,115,116,32,109,97,114,103,105,110,32,61,32,123,92,110,32,32,32,32,116,111,112,58,32,53,48,44,92,110,32,32,32,32,114,105,103,104,116,58,32,50,48,44,92,110,32,32,32,32,98,111,116,116,111,109,58,32,55,48,44,92,110,32,32,32,32,108,101,102,116,58,32,52,48,92,110,32,32,125,59,92,110,32,32,99,111,110,115,116,32,116,104,114,101,115,104,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,113,117,97,110,116,105,108,101,40,98,105,110,115,44,32,48,46,57,44,32,100,32,61,62,32,100,46,108,101,110,103,116,104,41,59,92,110,32,32,98,105,110,115,32,61,32,98,105,110,115,46,102,105,108,116,101,114,40,100,32,61,62,32,100,46,108,101,110,103,116,104,32,62,32,116,104,114,101,115,104,41,59,92,110,32,32,99,111,110,115,116,32,119,105,100,116,104,32,61,32,53,53,48,59,92,110,32,32,99,111,110,115,116,32,104,101,105,103,104,116,32,61,32,52,53,48,59,92,110,32,32,115,118,103,46,115,101,108,101,99,116,65,108,108,40,92,34,42,92,34,41,46,114,101,109,111,118,101,40,41,59,92,110,32,32,115,118,103,46,97,116,116,114,40,92,34,118,105,101,119,66,111,120,92,34,44,32,91,48,44,32,48,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,93,41,59,92,110,32,32,99,111,110,115,116,32,121,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,99,97,108,101,76,105,110,101,97,114,40,41,46,100,111,109,97,105,110,40,91,48,44,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,120,40,98,105,110,115,44,32,100,32,61,62,32,100,46,108,101,110,103,116,104,41,93,41,46,110,105,99,101,40,41,46,114,97,110,103,101,40,91,104,101,105,103,104,116,32,45,32,109,97,114,103,105,110,46,98,111,116,116,111,109,44,32,109,97,114,103,105,110,46,116,111,112,93,41,59,92,110,32,32,99,111,110,115,116,32,120,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,99,97,108,101,76,105,110,101,97,114,40,41,46,100,111,109,97,105,110,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,120,116,101,110,116,40,98,105,110,115,44,32,100,32,61,62,32,100,46,120,48,41,41,46,110,105,99,101,40,41,46,114,97,110,103,101,40,91,109,97,114,103,105,110,46,108,101,102,116,44,32,119,105,100,116,104,32,45,32,109,97,114,103,105,110,46,114,105,103,104,116,93,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,102,105,108,108,92,34,44,32,92,34,115,116,101,101,108,98,108,117,101,92,34,41,46,115,101,108,101,99,116,65,108,108,40,92,34,114,101,99,116,92,34,41,46,100,97,116,97,40,98,105,110,115,41,46,106,111,105,110,40,92,34,114,101,99,116,92,34,41,46,97,116,116,114,40,92,34,120,92,34,44,32,100,32,61,62,32,120,40,100,46,120,48,41,32,43,32,49,41,46,97,116,116,114,40,92,34,119,105,100,116,104,92,34,44,32,100,32,61,62,32,77,97,116,104,46,109,97,120,40,49,44,32,120,40,100,46,120,49,41,32,45,32,120,40,100,46,120,48,41,32,45,32,49,41,41,46,97,116,116,114,40,92,34,121,92,34,44,32,100,32,61,62,32,121,40,100,46,108,101,110,103,116,104,41,41,46,97,116,116,114,40,92,34,104,101,105,103,104,116,92,34,44,32,100,32,61,62,32,121,40,48,41,32,45,32,121,40,100,46,108,101,110,103,116,104,41,41,46,99,97,108,108,40,103,32,61,62,32,103,46,97,112,112,101,110,100,40,92,34,116,105,116,108,101,92,34,41,46,116,101,120,116,40,100,32,61,62,32,100,46,108,101,110,103,116,104,41,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,96,116,114,97,110,115,108,97,116,101,40,48,44,36,123,104,101,105,103,104,116,32,45,32,109,97,114,103,105,110,46,98,111,116,116,111,109,125,41,96,41,46,99,97,108,108,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,120,105,115,66,111,116,116,111,109,40,120,41,46,116,105,99,107,115,40,119,105,100,116,104,32,47,32,51,48,41,46,116,105,99,107,83,105,122,101,79,117,116,101,114,40,48,41,46,116,105,99,107,70,111,114,109,97,116,40,116,32,61,62,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,105,109,101,70,111,114,109,97,116,40,92,34,37,89,45,37,109,45,37,100,92,34,41,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,117,116,99,80,97,114,115,101,40,92,34,37,115,92,34,41,40,116,41,41,41,41,46,99,97,108,108,40,103,32,61,62,32,103,46,115,101,108,101,99,116,65,108,108,40,92,34,116,101,120,116,92,34,41,46,115,116,121,108,101,40,92,34,116,101,120,116,45,97,110,99,104,111,114,92,34,44,32,92,34,101,110,100,92,34,41,46,97,116,116,114,40,92,34,100,120,92,34,44,32,92,34,45,46,56,101,109,92,34,41,46,97,116,116,114,40,92,34,100,121,92,34,44,32,92,34,46,49,53,101,109,92,34,41,46,97,116,116,114,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,92,34,114,111,116,97,116,101,40,45,54,53,41,92,34,41,41,46,99,97,108,108,40,103,32,61,62,32,103,46,97,112,112,101,110,100,40,92,34,116,101,120,116,92,34,41,46,97,116,116,114,40,92,34,120,92,34,44,32,119,105,100,116,104,32,45,32,109,97,114,103,105,110,46,114,105,103,104,116,41,46,97,116,116,114,40,92,34,121,92,34,44,32,45,52,41,46,97,116,116,114,40,92,34,102,105,108,108,92,34,44,32,92,34,99,117,114,114,101,110,116,67,111,108,111,114,92,34,41,46,97,116,116,114,40,92,34,102,111,110,116,45,119,101,105,103,104,116,92,34,44,32,92,34,98,111,108,100,92,34,41,46,97,116,116,114,40,92,34,116,101,120,116,45,97,110,99,104,111,114,92,34,44,32,92,34,101,110,100,92,34,41,46,116,101,120,116,40,92,34,109,116,105,109,101,92,34,41,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,96,116,114,97,110,115,108,97,116,101,40,36,123,109,97,114,103,105,110,46,108,101,102,116,125,44,48,41,96,41,46,99,97,108,108,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,120,105,115,76,101,102,116,40,121,41,46,116,105,99,107,115,40,104,101,105,103,104,116,32,47,32,52,48,41,46,116,105,99,107,70,111,114,109,97,116,40,116,32,61,62,32,102,111,114,109,97,116,83,73,40,116,41,41,41,46,99,97,108,108,40,103,32,61,62,32,103,46,115,101,108,101,99,116,40,92,34,46,100,111,109,97,105,110,92,34,41,46,114,101,109,111,118,101,40,41,41,46,99,97,108,108,40,103,32,61,62,32,103,46,115,101,108,101,99,116,40,92,34,46,116,105,99,107,58,108,97,115,116,45,111,102,45,116,121,112,101,32,116,101,120,116,92,34,41,46,99,108,111,110,101,40,41,46,97,116,116,114,40,92,34,120,92,34,44,32,52,41,46,97,116,116,114,40,92,34,116,101,120,116,45,97,110,99,104,111,114,92,34,44,32,92,34,115,116,97,114,116,92,34,41,46,97,116,116,114,40,92,34,102,111,110,116,45,119,101,105,103,104,116,92,34,44,32,92,34,98,111,108,100,92,34,41,46,116,101,120,116,40,92,34,70,105,108,101,32,99,111,117,110,116,92,34,41,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,116,101,120,116,92,34,41,46,97,116,116,114,40,92,34,120,92,34,44,32,119,105,100,116,104,32,47,32,50,41,46,97,116,116,114,40,92,34,121,92,34,44,32,109,97,114,103,105,110,46,116,111,112,32,47,32,50,41,46,97,116,116,114,40,92,34,116,101,120,116,45,97,110,99,104,111,114,92,34,44,32,92,34,109,105,100,100,108,101,92,34,41,46,115,116,121,108,101,40,92,34,102,111,110,116,45,115,105,122,101,92,34,44,32,92,34,49,54,112,120,92,34,41,46,116,101,120,116,40,116,105,116,108,101,41,59,92,110,125,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,92,34,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,105,110,100,101,120,73,100,92,34,93,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,59,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,105,110,100,101,120,73,100,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,117,112,100,97,116,101,40,105,110,100,101,120,73,100,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,115,118,103,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,108,101,99,116,40,92,34,35,100,97,116,101,45,104,105,115,116,111,103,114,97,109,92,34,41,59,92,110,32,32,32,32,32,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,115,118,40,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,103,101,116,68,97,116,101,67,115,118,40,105,110,100,101,120,73,100,41,41,46,116,104,101,110,40,116,97,98,117,108,97,114,68,97,116,97,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,100,97,116,101,72,105,115,116,111,103,114,97,109,40,116,97,98,117,108,97,114,68,97,116,97,46,115,108,105,99,101,40,41,44,32,115,118,103,44,32,116,104,105,115,46,36,116,40,92,34,100,51,46,100,97,116,101,72,105,115,116,111,103,114,97,109,92,34,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,99,111,110,115,116,32,102,111,114,109,97,116,83,73,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,102,111,114,109,97,116,40,92,34,126,115,92,34,41,59,92,110,99,111,110,115,116,32,98,97,114,72,101,105,103,104,116,32,61,32,50,48,59,92,110,99,111,110,115,116,32,111,114,100,105,110,97,108,67,111,108,111,114,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,99,97,108,101,79,114,100,105,110,97,108,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,99,104,101,109,101,67,97,116,101,103,111,114,121,49,48,41,59,92,110,102,117,110,99,116,105,111,110,32,109,105,109,101,66,97,114,67,111,117,110,116,40,100,97,116,97,44,32,115,118,103,44,32,102,105,108,108,79,112,97,99,105,116,121,44,32,116,105,116,108,101,41,32,123,92,110,32,32,99,111,110,115,116,32,109,97,114,103,105,110,32,61,32,123,92,110,32,32,32,32,116,111,112,58,32,53,48,44,92,110,32,32,32,32,114,105,103,104,116,58,32,48,44,92,110,32,32,32,32,98,111,116,116,111,109,58,32,49,48,44,92,110,32,32,32,32,108,101,102,116,58,32,77,97,116,104,46,109,97,120,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,120,40,100,97,116,97,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,99,111,117,110,116,32,45,32,97,46,99,111,117,110,116,41,46,115,108,105,99,101,40,48,44,32,49,53,41,44,32,100,32,61,62,32,100,46,109,105,109,101,46,108,101,110,103,116,104,41,32,42,32,54,44,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,120,40,100,97,116,97,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,115,105,122,101,32,45,32,97,46,115,105,122,101,41,46,115,108,105,99,101,40,48,44,32,49,53,41,44,32,100,32,61,62,32,100,46,109,105,109,101,46,108,101,110,103,116,104,41,32,42,32,54,41,92,110,32,32,125,59,92,110,32,32,100,97,116,97,46,102,111,114,69,97,99,104,40,100,32,61,62,32,123,92,110,32,32,32,32,100,46,110,97,109,101,32,61,32,100,46,109,105,109,101,59,92,110,32,32,32,32,100,46,118,97,108,117,101,32,61,32,78,117,109,98,101,114,40,100,46,99,111,117,110,116,41,59,92,110,32,32,125,41,59,92,110,32,32,100,97,116,97,32,61,32,100,97,116,97,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,118,97,108,117,101,32,45,32,97,46,118,97,108,117,101,41,46,115,108,105,99,101,40,48,44,32,49,53,41,59,92,110,32,32,99,111,110,115,116,32,119,105,100,116,104,32,61,32,53,53,48,59,92,110,32,32,99,111,110,115,116,32,104,101,105,103,104,116,32,61,32,77,97,116,104,46,99,101,105,108,40,40,100,97,116,97,46,108,101,110,103,116,104,32,43,32,48,46,49,41,32,42,32,98,97,114,72,101,105,103,104,116,41,32,43,32,109,97,114,103,105,110,46,116,111,112,32,43,32,109,97,114,103,105,110,46,98,111,116,116,111,109,59,92,110,32,32,115,118,103,46,115,101,108,101,99,116,65,108,108,40,92,34,42,92,34,41,46,114,101,109,111,118,101,40,41,59,92,110,32,32,115,118,103,46,97,116,116,114,40,92,34,118,105,101,119,66,111,120,92,34,44,32,91,48,44,32,48,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,93,41,59,92,110,32,32,99,111,110,115,116,32,121,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,99,97,108,101,66,97,110,100,40,41,46,100,111,109,97,105,110,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,110,103,101,40,100,97,116,97,46,108,101,110,103,116,104,41,41,46,114,97,110,103,101,82,111,117,110,100,40,91,109,97,114,103,105,110,46,116,111,112,44,32,104,101,105,103,104,116,32,45,32,109,97,114,103,105,110,46,98,111,116,116,111,109,93,41,59,92,110,32,32,99,111,110,115,116,32,120,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,99,97,108,101,76,105,110,101,97,114,40,41,46,100,111,109,97,105,110,40,91,48,44,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,120,40,100,97,116,97,44,32,100,32,61,62,32,100,46,118,97,108,117,101,41,93,41,46,114,97,110,103,101,40,91,109,97,114,103,105,110,46,108,101,102,116,44,32,119,105,100,116,104,32,45,32,109,97,114,103,105,110,46,114,105,103,104,116,93,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,102,105,108,108,45,111,112,97,99,105,116,121,92,34,44,32,102,105,108,108,79,112,97,99,105,116,121,41,46,115,101,108,101,99,116,65,108,108,40,92,34,114,101,99,116,92,34,41,46,100,97,116,97,40,100,97,116,97,41,46,106,111,105,110,40,92,34,114,101,99,116,92,34,41,46,97,116,116,114,40,92,34,102,105,108,108,92,34,44,32,100,32,61,62,32,111,114,100,105,110,97,108,67,111,108,111,114,40,100,46,110,97,109,101,41,41,46,97,116,116,114,40,92,34,120,92,34,44,32,120,40,48,41,41,46,97,116,116,114,40,92,34,121,92,34,44,32,40,100,44,32,105,41,32,61,62,32,121,40,105,41,41,46,97,116,116,114,40,92,34,119,105,100,116,104,92,34,44,32,100,32,61,62,32,120,40,100,46,118,97,108,117,101,41,32,45,32,120,40,48,41,41,46,97,116,116,114,40,92,34,104,101,105,103,104,116,92,34,44,32,121,46,98,97,110,100,119,105,100,116,104,40,41,41,46,97,112,112,101,110,100,40,92,34,116,105,116,108,101,92,34,41,46,116,101,120,116,40,100,32,61,62,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,102,111,114,109,97,116,40,92,34,44,92,34,41,40,100,46,118,97,108,117,101,41,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,96,116,114,97,110,115,108,97,116,101,40,48,44,36,123,109,97,114,103,105,110,46,116,111,112,125,41,96,41,46,99,97,108,108,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,120,105,115,84,111,112,40,120,41,46,116,105,99,107,115,40,119,105,100,116,104,32,47,32,56,48,44,32,100,97,116,97,46,102,111,114,109,97,116,41,46,116,105,99,107,70,111,114,109,97,116,40,102,111,114,109,97,116,83,73,41,41,46,99,97,108,108,40,103,32,61,62,32,103,46,115,101,108,101,99,116,40,92,34,46,100,111,109,97,105,110,92,34,41,46,114,101,109,111,118,101,40,41,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,96,116,114,97,110,115,108,97,116,101,40,36,123,109,97,114,103,105,110,46,108,101,102,116,125,44,48,41,96,41,46,99,97,108,108,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,120,105,115,76,101,102,116,40,121,41,46,116,105,99,107,70,111,114,109,97,116,40,105,32,61,62,32,100,97,116,97,91,105,93,46,110,97,109,101,41,46,116,105,99,107,83,105,122,101,79,117,116,101,114,40,48,41,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,116,101,120,116,92,34,41,46,97,116,116,114,40,92,34,120,92,34,44,32,119,105,100,116,104,32,47,32,50,41,46,97,116,116,114,40,92,34,121,92,34,44,32,109,97,114,103,105,110,46,116,111,112,32,47,32,50,41,46,97,116,116,114,40,92,34,116,101,120,116,45,97,110,99,104,111,114,92,34,44,32,92,34,109,105,100,100,108,101,92,34,41,46,115,116,121,108,101,40,92,34,102,111,110,116,45,115,105,122,101,92,34,44,32,92,34,49,54,112,120,92,34,41,46,116,101,120,116,40,116,105,116,108,101,41,59,92,110,125,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,68,51,77,105,109,101,66,97,114,83,105,122,101,92,34,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,105,110,100,101,120,73,100,92,34,93,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,59,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,105,110,100,101,120,73,100,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,117,112,100,97,116,101,40,105,110,100,101,120,73,100,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,109,105,109,101,83,118,103,67,111,117,110,116,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,108,101,99,116,40,92,34,35,97,103,103,45,109,105,109,101,45,99,111,117,110,116,92,34,41,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,102,105,108,108,79,112,97,99,105,116,121,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,104,101,109,101,32,61,61,61,32,92,34,98,108,97,99,107,92,34,32,63,32,48,46,57,32,58,32,48,46,54,59,92,110,32,32,32,32,32,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,115,118,40,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,103,101,116,77,105,109,101,67,115,118,85,114,108,40,105,110,100,101,120,73,100,41,41,46,116,104,101,110,40,116,97,98,117,108,97,114,68,97,116,97,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,109,105,109,101,66,97,114,67,111,117,110,116,40,116,97,98,117,108,97,114,68,97,116,97,46,115,108,105,99,101,40,41,44,32,109,105,109,101,83,118,103,67,111,117,110,116,44,32,102,105,108,108,79,112,97,99,105,116,121,44,32,116,104,105,115,46,36,116,40,92,34,100,51,46,109,105,109,101,67,111,117,110,116,92,34,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,99,111,110,115,116,32,102,111,114,109,97,116,83,73,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,102,111,114,109,97,116,40,92,34,126,115,92,34,41,59,92,110,99,111,110,115,116,32,98,97,114,72,101,105,103,104,116,32,61,32,50,48,59,92,110,99,111,110,115,116,32,111,114,100,105,110,97,108,67,111,108,111,114,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,99,97,108,101,79,114,100,105,110,97,108,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,99,104,101,109,101,67,97,116,101,103,111,114,121,49,48,41,59,92,110,102,117,110,99,116,105,111,110,32,109,105,109,101,66,97,114,83,105,122,101,40,100,97,116,97,44,32,115,118,103,44,32,102,105,108,108,79,112,97,99,105,116,121,44,32,116,105,116,108,101,41,32,123,92,110,32,32,99,111,110,115,116,32,109,97,114,103,105,110,32,61,32,123,92,110,32,32,32,32,116,111,112,58,32,53,48,44,92,110,32,32,32,32,114,105,103,104,116,58,32,48,44,92,110,32,32,32,32,98,111,116,116,111,109,58,32,49,48,44,92,110,32,32,32,32,108,101,102,116,58,32,77,97,116,104,46,109,97,120,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,120,40,100,97,116,97,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,99,111,117,110,116,32,45,32,97,46,99,111,117,110,116,41,46,115,108,105,99,101,40,48,44,32,49,53,41,44,32,100,32,61,62,32,100,46,109,105,109,101,46,108,101,110,103,116,104,41,32,42,32,54,44,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,120,40,100,97,116,97,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,115,105,122,101,32,45,32,97,46,115,105,122,101,41,46,115,108,105,99,101,40,48,44,32,49,53,41,44,32,100,32,61,62,32,100,46,109,105,109,101,46,108,101,110,103,116,104,41,32,42,32,54,41,92,110,32,32,125,59,92,110,32,32,100,97,116,97,46,102,111,114,69,97,99,104,40,100,32,61,62,32,123,92,110,32,32,32,32,100,46,110,97,109,101,32,61,32,100,46,109,105,109,101,59,92,110,32,32,32,32,100,46,118,97,108,117,101,32,61,32,78,117,109,98,101,114,40,100,46,115,105,122,101,41,59,92,110,32,32,125,41,59,92,110,32,32,100,97,116,97,32,61,32,100,97,116,97,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,118,97,108,117,101,32,45,32,97,46,118,97,108,117,101,41,46,115,108,105,99,101,40,48,44,32,49,53,41,59,92,110,32,32,99,111,110,115,116,32,119,105,100,116,104,32,61,32,53,53,48,59,92,110,32,32,99,111,110,115,116,32,104,101,105,103,104,116,32,61,32,77,97,116,104,46,99,101,105,108,40,40,100,97,116,97,46,108,101,110,103,116,104,32,43,32,48,46,49,41,32,42,32,98,97,114,72,101,105,103,104,116,41,32,43,32,109,97,114,103,105,110,46,116,111,112,32,43,32,109,97,114,103,105,110,46,98,111,116,116,111,109,59,92,110,32,32,115,118,103,46,115,101,108,101,99,116,65,108,108,40,92,34,42,92,34,41,46,114,101,109,111,118,101,40,41,59,92,110,32,32,115,118,103,46,97,116,116,114,40,92,34,118,105,101,119,66,111,120,92,34,44,32,91,48,44,32,48,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,93,41,59,92,110,32,32,99,111,110,115,116,32,121,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,99,97,108,101,66,97,110,100,40,41,46,100,111,109,97,105,110,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,110,103,101,40,100,97,116,97,46,108,101,110,103,116,104,41,41,46,114,97,110,103,101,82,111,117,110,100,40,91,109,97,114,103,105,110,46,116,111,112,44,32,104,101,105,103,104,116,32,45,32,109,97,114,103,105,110,46,98,111,116,116,111,109,93,41,59,92,110,32,32,99,111,110,115,116,32,120,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,99,97,108,101,76,105,110,101,97,114,40,41,46,100,111,109,97,105,110,40,91,48,44,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,120,40,100,97,116,97,44,32,100,32,61,62,32,100,46,118,97,108,117,101,41,93,41,46,114,97,110,103,101,40,91,109,97,114,103,105,110,46,108,101,102,116,44,32,119,105,100,116,104,32,45,32,109,97,114,103,105,110,46,114,105,103,104,116,93,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,102,105,108,108,45,111,112,97,99,105,116,121,92,34,44,32,102,105,108,108,79,112,97,99,105,116,121,41,46,115,101,108,101,99,116,65,108,108,40,92,34,114,101,99,116,92,34,41,46,100,97,116,97,40,100,97,116,97,41,46,106,111,105,110,40,92,34,114,101,99,116,92,34,41,46,97,116,116,114,40,92,34,102,105,108,108,92,34,44,32,100,32,61,62,32,111,114,100,105,110,97,108,67,111,108,111,114,40,100,46,110,97,109,101,41,41,46,97,116,116,114,40,92,34,120,92,34,44,32,120,40,48,41,41,46,97,116,116,114,40,92,34,121,92,34,44,32,40,100,44,32,105,41,32,61,62,32,121,40,105,41,41,46,97,116,116,114,40,92,34,119,105,100,116,104,92,34,44,32,100,32,61,62,32,120,40,100,46,118,97,108,117,101,41,32,45,32,120,40,48,41,41,46,97,116,116,114,40,92,34,104,101,105,103,104,116,92,34,44,32,121,46,98,97,110,100,119,105,100,116,104,40,41,41,46,97,112,112,101,110,100,40,92,34,116,105,116,108,101,92,34,41,46,116,101,120,116,40,100,32,61,62,32,102,111,114,109,97,116,83,73,40,100,46,118,97,108,117,101,41,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,96,116,114,97,110,115,108,97,116,101,40,48,44,36,123,109,97,114,103,105,110,46,116,111,112,125,41,96,41,46,99,97,108,108,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,120,105,115,84,111,112,40,120,41,46,116,105,99,107,115,40,119,105,100,116,104,32,47,32,56,48,44,32,100,97,116,97,46,102,111,114,109,97,116,41,46,116,105,99,107,70,111,114,109,97,116,40,102,111,114,109,97,116,83,73,41,41,46,99,97,108,108,40,103,32,61,62,32,103,46,115,101,108,101,99,116,40,92,34,46,100,111,109,97,105,110,92,34,41,46,114,101,109,111,118,101,40,41,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,96,116,114,97,110,115,108,97,116,101,40,36,123,109,97,114,103,105,110,46,108,101,102,116,125,44,48,41,96,41,46,99,97,108,108,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,120,105,115,76,101,102,116,40,121,41,46,116,105,99,107,70,111,114,109,97,116,40,105,32,61,62,32,100,97,116,97,91,105,93,46,110,97,109,101,41,46,116,105,99,107,83,105,122,101,79,117,116,101,114,40,48,41,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,116,101,120,116,92,34,41,46,97,116,116,114,40,92,34,120,92,34,44,32,119,105,100,116,104,32,47,32,50,41,46,97,116,116,114,40,92,34,121,92,34,44,32,109,97,114,103,105,110,46,116,111,112,32,47,32,50,41,46,97,116,116,114,40,92,34,116,101,120,116,45,97,110,99,104,111,114,92,34,44,32,92,34,109,105,100,100,108,101,92,34,41,46,115,116,121,108,101,40,92,34,102,111,110,116,45,115,105,122,101,92,34,44,32,92,34,49,54,112,120,92,34,41,46,116,101,120,116,40,116,105,116,108,101,41,59,92,110,125,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,68,51,77,105,109,101,66,97,114,83,105,122,101,92,34,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,105,110,100,101,120,73,100,92,34,93,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,59,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,105,110,100,101,120,73,100,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,117,112,100,97,116,101,40,105,110,100,101,120,73,100,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,109,105,109,101,83,118,103,83,105,122,101,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,108,101,99,116,40,92,34,35,97,103,103,45,109,105,109,101,45,115,105,122,101,92,34,41,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,102,105,108,108,79,112,97,99,105,116,121,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,104,101,109,101,32,61,61,61,32,92,34,98,108,97,99,107,92,34,32,63,32,48,46,57,32,58,32,48,46,54,59,92,110,32,32,32,32,32,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,115,118,40,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,103,101,116,77,105,109,101,67,115,118,85,114,108,40,105,110,100,101,120,73,100,41,41,46,116,104,101,110,40,116,97,98,117,108,97,114,68,97,116,97,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,109,105,109,101,66,97,114,83,105,122,101,40,116,97,98,117,108,97,114,68,97,116,97,46,115,108,105,99,101,40,41,44,32,109,105,109,101,83,118,103,83,105,122,101,44,32,102,105,108,108,79,112,97,99,105,116,121,44,32,116,104,105,115,46,36,116,40,92,34,100,51,46,109,105,109,101,83,105,122,101,92,34,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,99,111,110,115,116,32,102,111,114,109,97,116,83,73,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,102,111,114,109,97,116,40,92,34,126,115,92,34,41,59,92,110,102,117,110,99,116,105,111,110,32,115,105,122,101,72,105,115,116,111,103,114,97,109,40,100,97,116,97,44,32,115,118,103,44,32,116,105,116,108,101,41,32,123,92,110,32,32,108,101,116,32,98,105,110,115,32,61,32,100,97,116,97,46,109,97,112,40,100,32,61,62,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,101,110,103,116,104,58,32,78,117,109,98,101,114,40,100,46,99,111,117,110,116,41,44,92,110,32,32,32,32,32,32,120,48,58,32,78,117,109,98,101,114,40,100,46,98,117,99,107,101,116,41,44,92,110,32,32,32,32,32,32,120,49,58,32,78,117,109,98,101,114,40,100,46,98,117,99,107,101,116,41,32,43,32,53,32,42,32,49,48,50,52,32,42,32,49,48,50,52,92,110,32,32,32,32,125,59,92,110,32,32,125,41,59,92,110,32,32,98,105,110,115,32,61,32,98,105,110,115,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,108,101,110,103,116,104,32,45,32,97,46,108,101,110,103,116,104,41,46,115,108,105,99,101,40,48,44,32,50,53,41,59,92,110,32,32,99,111,110,115,116,32,109,97,114,103,105,110,32,61,32,123,92,110,32,32,32,32,116,111,112,58,32,53,48,44,92,110,32,32,32,32,114,105,103,104,116,58,32,50,48,44,92,110,32,32,32,32,98,111,116,116,111,109,58,32,55,48,44,92,110,32,32,32,32,108,101,102,116,58,32,52,48,92,110,32,32,125,59,92,110,32,32,99,111,110,115,116,32,119,105,100,116,104,32,61,32,53,53,48,59,92,110,32,32,99,111,110,115,116,32,104,101,105,103,104,116,32,61,32,52,53,48,59,92,110,32,32,115,118,103,46,115,101,108,101,99,116,65,108,108,40,92,34,42,92,34,41,46,114,101,109,111,118,101,40,41,59,92,110,32,32,115,118,103,46,97,116,116,114,40,92,34,118,105,101,119,66,111,120,92,34,44,32,91,48,44,32,48,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,93,41,59,92,110,32,32,99,111,110,115,116,32,121,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,99,97,108,101,76,105,110,101,97,114,40,41,46,100,111,109,97,105,110,40,91,48,44,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,120,40,98,105,110,115,44,32,100,32,61,62,32,100,46,108,101,110,103,116,104,41,93,41,46,114,97,110,103,101,40,91,104,101,105,103,104,116,32,45,32,109,97,114,103,105,110,46,98,111,116,116,111,109,44,32,109,97,114,103,105,110,46,116,111,112,93,41,59,92,110,32,32,99,111,110,115,116,32,120,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,99,97,108,101,76,105,110,101,97,114,40,41,46,100,111,109,97,105,110,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,120,116,101,110,116,40,98,105,110,115,44,32,100,32,61,62,32,100,46,120,48,41,41,46,110,105,99,101,40,41,46,114,97,110,103,101,40,91,109,97,114,103,105,110,46,108,101,102,116,44,32,119,105,100,116,104,32,45,32,109,97,114,103,105,110,46,114,105,103,104,116,93,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,102,105,108,108,92,34,44,32,92,34,115,116,101,101,108,98,108,117,101,92,34,41,46,115,101,108,101,99,116,65,108,108,40,92,34,114,101,99,116,92,34,41,46,100,97,116,97,40,98,105,110,115,41,46,106,111,105,110,40,92,34,114,101,99,116,92,34,41,46,97,116,116,114,40,92,34,120,92,34,44,32,100,32,61,62,32,120,40,100,46,120,48,41,32,43,32,49,41,46,97,116,116,114,40,92,34,119,105,100,116,104,92,34,44,32,100,32,61,62,32,77,97,116,104,46,109,97,120,40,49,44,32,120,40,100,46,120,49,41,32,45,32,120,40,100,46,120,48,41,32,45,32,49,41,41,46,97,116,116,114,40,92,34,121,92,34,44,32,100,32,61,62,32,121,40,100,46,108,101,110,103,116,104,41,41,46,97,116,116,114,40,92,34,104,101,105,103,104,116,92,34,44,32,100,32,61,62,32,121,40,48,41,32,45,32,121,40,100,46,108,101,110,103,116,104,41,41,46,99,97,108,108,40,103,32,61,62,32,103,46,97,112,112,101,110,100,40,92,34,116,105,116,108,101,92,34,41,46,116,101,120,116,40,100,32,61,62,32,100,46,108,101,110,103,116,104,41,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,96,116,114,97,110,115,108,97,116,101,40,48,44,36,123,104,101,105,103,104,116,32,45,32,109,97,114,103,105,110,46,98,111,116,116,111,109,125,41,96,41,46,99,97,108,108,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,120,105,115,66,111,116,116,111,109,40,120,41,46,116,105,99,107,115,40,119,105,100,116,104,32,47,32,51,48,41,46,116,105,99,107,83,105,122,101,79,117,116,101,114,40,48,41,46,116,105,99,107,70,111,114,109,97,116,40,102,111,114,109,97,116,83,73,41,41,46,99,97,108,108,40,103,32,61,62,32,103,46,115,101,108,101,99,116,65,108,108,40,92,34,116,101,120,116,92,34,41,46,115,116,121,108,101,40,92,34,116,101,120,116,45,97,110,99,104,111,114,92,34,44,32,92,34,101,110,100,92,34,41,46,97,116,116,114,40,92,34,100,120,92,34,44,32,92,34,45,46,56,101,109,92,34,41,46,97,116,116,114,40,92,34,100,121,92,34,44,32,92,34,46,49,53,101,109,92,34,41,46,97,116,116,114,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,92,34,114,111,116,97,116,101,40,45,54,53,41,92,34,41,41,46,99,97,108,108,40,103,32,61,62,32,103,46,97,112,112,101,110,100,40,92,34,116,101,120,116,92,34,41,46,97,116,116,114,40,92,34,120,92,34,44,32,119,105,100,116,104,32,45,32,109,97,114,103,105,110,46,114,105,103,104,116,41,46,97,116,116,114,40,92,34,121,92,34,44,32,45,52,41,46,97,116,116,114,40,92,34,102,105,108,108,92,34,44,32,92,34,99,117,114,114,101,110,116,67,111,108,111,114,92,34,41,46,97,116,116,114,40,92,34,102,111,110,116,45,119,101,105,103,104,116,92,34,44,32,92,34,98,111,108,100,92,34,41,46,97,116,116,114,40,92,34,116,101,120,116,45,97,110,99,104,111,114,92,34,44,32,92,34,101,110,100,92,34,41,46,116,101,120,116,40,92,34,115,105,122,101,32,40,98,121,116,101,115,41,92,34,41,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,96,116,114,97,110,115,108,97,116,101,40,36,123,109,97,114,103,105,110,46,108,101,102,116,125,44,48,41,96,41,46,99,97,108,108,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,120,105,115,76,101,102,116,40,121,41,46,116,105,99,107,115,40,104,101,105,103,104,116,32,47,32,52,48,41,46,116,105,99,107,70,111,114,109,97,116,40,116,32,61,62,32,102,111,114,109,97,116,83,73,40,116,41,41,41,46,99,97,108,108,40,103,32,61,62,32,103,46,115,101,108,101,99,116,40,92,34,46,100,111,109,97,105,110,92,34,41,46,114,101,109,111,118,101,40,41,41,46,99,97,108,108,40,103,32,61,62,32,103,46,115,101,108,101,99,116,40,92,34,46,116,105,99,107,58,108,97,115,116,45,111,102,45,116,121,112,101,32,116,101,120,116,92,34,41,46,99,108,111,110,101,40,41,46,97,116,116,114,40,92,34,120,92,34,44,32,52,41,46,97,116,116,114,40,92,34,116,101,120,116,45,97,110,99,104,111,114,92,34,44,32,92,34,115,116,97,114,116,92,34,41,46,97,116,116,114,40,92,34,102,111,110,116,45,119,101,105,103,104,116,92,34,44,32,92,34,98,111,108,100,92,34,41,46,116,101,120,116,40,92,34,70,105,108,101,32,99,111,117,110,116,92,34,41,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,116,101,120,116,92,34,41,46,97,116,116,114,40,92,34,120,92,34,44,32,119,105,100,116,104,32,47,32,50,41,46,97,116,116,114,40,92,34,121,92,34,44,32,109,97,114,103,105,110,46,116,111,112,32,47,32,50,41,46,97,116,116,114,40,92,34,116,101,120,116,45,97,110,99,104,111,114,92,34,44,32,92,34,109,105,100,100,108,101,92,34,41,46,115,116,121,108,101,40,92,34,102,111,110,116,45,115,105,122,101,92,34,44,32,92,34,49,54,112,120,92,34,41,46,116,101,120,116,40,116,105,116,108,101,41,59,92,110,125,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,92,34,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,105,110,100,101,120,73,100,92,34,93,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,59,92,110,32,32,125,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,105,110,100,101,120,73,100,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,117,112,100,97,116,101,40,105,110,100,101,120,73,100,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,115,118,103,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,108,101,99,116,40,92,34,35,115,105,122,101,45,104,105,115,116,111,103,114,97,109,92,34,41,59,92,110,32,32,32,32,32,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,115,118,40,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,103,101,116,83,105,122,101,67,115,118,40,105,110,100,101,120,73,100,41,41,46,116,104,101,110,40,116,97,98,117,108,97,114,68,97,116,97,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,115,105,122,101,72,105,115,116,111,103,114,97,109,40,116,97,98,117,108,97,114,68,97,116,97,46,115,108,105,99,101,40,41,44,32,115,118,103,44,32,116,104,105,115,46,36,116,40,92,34,100,51,46,115,105,122,101,72,105,115,116,111,103,114,97,109,92,34,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,51,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,51,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,45,106,115,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,45,106,115,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,111,109,95,116,111,95,105,109,97,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,111,109,45,116,111,45,105,109,97,103,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,111,109,45,116,111,45,105,109,97,103,101,47,115,114,99,47,100,111,109,45,116,111,45,105,109,97,103,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,111,109,95,116,111,95,105,109,97,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,100,111,109,95,116,111,95,105,109,97,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,92,110,99,111,110,115,116,32,84,73,76,73,78,71,95,77,79,68,69,83,32,61,32,123,92,110,32,32,92,34,115,113,117,97,114,105,102,121,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,114,101,101,109,97,112,83,113,117,97,114,105,102,121,44,92,110,32,32,92,34,98,105,110,97,114,121,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,114,101,101,109,97,112,66,105,110,97,114,121,44,92,110,32,32,92,34,115,108,105,99,101,68,105,99,101,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,114,101,101,109,97,112,83,108,105,99,101,68,105,99,101,44,92,110,32,32,92,34,115,108,105,99,101,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,114,101,101,109,97,112,83,108,105,99,101,44,92,110,32,32,92,34,100,105,99,101,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,114,101,101,109,97,112,68,105,99,101,92,110,125,59,92,110,99,111,110,115,116,32,67,79,76,79,82,83,32,61,32,123,92,110,32,32,92,34,80,117,66,117,71,110,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,71,110,44,92,110,32,32,92,34,80,117,82,100,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,112,111,108,97,116,101,80,117,82,100,44,92,110,32,32,92,34,80,117,66,117,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,44,92,110,32,32,92,34,89,108,79,114,66,114,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,66,114,44,92,110,32,32,92,34,89,108,79,114,82,100,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,82,100,44,92,110,32,32,92,34,89,108,71,110,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,44,92,110,32,32,92,34,89,108,71,110,66,117,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,66,117,44,92,110,32,32,92,34,80,108,97,115,109,97,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,112,111,108,97,116,101,80,108,97,115,109,97,44,92,110,32,32,92,34,77,97,103,109,97,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,112,111,108,97,116,101,77,97,103,109,97,44,92,110,32,32,92,34,73,110,102,101,114,110,111,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,112,111,108,97,116,101,73,110,102,101,114,110,111,44,92,110,32,32,92,34,86,105,114,105,100,105,115,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,112,111,108,97,116,101,86,105,114,105,100,105,115,44,92,110,32,32,92,34,84,117,114,98,111,92,34,58,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,105,110,116,101,114,112,111,108,97,116,101,84,117,114,98,111,92,110,125,59,92,110,99,111,110,115,116,32,83,73,90,69,83,32,61,32,123,92,110,32,32,92,34,115,109,97,108,108,92,34,58,32,91,56,48,48,44,32,54,48,48,93,44,92,110,32,32,92,34,109,101,100,105,117,109,92,34,58,32,91,49,51,48,48,44,32,55,53,48,93,44,92,110,32,32,92,34,108,97,114,103,101,92,34,58,32,91,49,57,48,48,44,32,57,48,48,93,44,92,110,32,32,92,34,120,45,108,97,114,103,101,92,34,58,32,91,50,56,48,48,44,32,49,55,48,48,93,44,92,110,32,32,92,34,120,120,45,108,97,114,103,101,92,34,58,32,91,51,54,48,48,44,32,50,48,48,48,93,92,110,125,59,92,110,99,111,110,115,116,32,117,105,100,115,32,61,32,123,125,59,92,110,102,117,110,99,116,105,111,110,32,117,105,100,40,110,97,109,101,41,32,123,92,110,32,32,108,101,116,32,105,100,32,61,32,117,105,100,115,91,110,97,109,101,93,32,124,124,32,48,59,92,110,32,32,117,105,100,115,91,110,97,109,101,93,32,61,32,105,100,32,43,32,49,59,92,110,32,32,114,101,116,117,114,110,32,110,97,109,101,32,43,32,105,100,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,99,97,115,99,97,100,101,40,114,111,111,116,44,32,111,102,102,115,101,116,41,32,123,92,110,32,32,99,111,110,115,116,32,120,32,61,32,110,101,119,32,77,97,112,40,41,59,92,110,32,32,99,111,110,115,116,32,121,32,61,32,110,101,119,32,77,97,112,40,41,59,92,110,32,32,114,101,116,117,114,110,32,114,111,111,116,46,101,97,99,104,65,102,116,101,114,40,100,32,61,62,32,123,92,110,32,32,32,32,105,102,32,40,100,46,99,104,105,108,100,114,101,110,32,38,38,32,100,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,33,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,120,46,115,101,116,40,100,44,32,49,32,43,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,120,40,100,46,99,104,105,108,100,114,101,110,44,32,99,32,61,62,32,99,46,120,49,32,61,61,61,32,100,46,120,49,32,45,32,111,102,102,115,101,116,32,63,32,120,46,103,101,116,40,99,41,32,58,32,78,97,78,41,41,59,92,110,32,32,32,32,32,32,121,46,115,101,116,40,100,44,32,49,32,43,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,120,40,100,46,99,104,105,108,100,114,101,110,44,32,99,32,61,62,32,99,46,121,49,32,61,61,61,32,100,46,121,49,32,45,32,111,102,102,115,101,116,32,63,32,121,46,103,101,116,40,99,41,32,58,32,78,97,78,41,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,120,46,115,101,116,40,100,44,32,48,41,59,92,110,32,32,32,32,32,32,121,46,115,101,116,40,100,44,32,48,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,46,101,97,99,104,66,101,102,111,114,101,40,100,32,61,62,32,123,92,110,32,32,32,32,100,46,120,49,32,45,61,32,50,32,42,32,111,102,102,115,101,116,32,42,32,120,46,103,101,116,40,100,41,59,92,110,32,32,32,32,100,46,121,49,32,45,61,32,50,32,42,32,111,102,102,115,101,116,32,42,32,121,46,103,101,116,40,100,41,59,92,110,32,32,125,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,99,97,115,99,97,100,101,84,114,101,101,109,97,112,40,100,97,116,97,44,32,115,118,103,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,44,32,116,105,108,105,110,103,77,111,100,101,44,32,116,114,101,101,109,97,112,67,111,108,111,114,41,32,123,92,110,32,32,99,111,110,115,116,32,114,111,111,116,32,61,32,99,97,115,99,97,100,101,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,114,101,101,109,97,112,40,41,46,115,105,122,101,40,91,119,105,100,116,104,44,32,104,101,105,103,104,116,93,41,46,116,105,108,101,40,84,73,76,73,78,71,95,77,79,68,69,83,91,116,105,108,105,110,103,77,111,100,101,93,41,46,112,97,100,100,105,110,103,79,117,116,101,114,40,51,41,46,112,97,100,100,105,110,103,84,111,112,40,49,54,41,46,112,97,100,100,105,110,103,73,110,110,101,114,40,49,41,46,114,111,117,110,100,40,116,114,117,101,41,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,105,101,114,97,114,99,104,121,40,100,97,116,97,41,46,115,117,109,40,100,32,61,62,32,100,46,118,97,108,117,101,41,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,118,97,108,117,101,32,45,32,97,46,118,97,108,117,101,41,41,44,32,51,32,47,47,32,116,114,101,101,109,97,112,46,112,97,100,100,105,110,103,79,117,116,101,114,92,110,32,32,41,59,92,110,92,110,32,32,99,111,110,115,116,32,109,97,120,68,101,112,116,104,32,61,32,77,97,116,104,46,109,97,120,40,46,46,46,114,111,111,116,46,100,101,115,99,101,110,100,97,110,116,115,40,41,46,109,97,112,40,100,32,61,62,32,100,46,100,101,112,116,104,41,41,59,92,110,32,32,99,111,110,115,116,32,99,111,108,111,114,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,40,91,109,97,120,68,101,112,116,104,44,32,45,49,93,44,32,67,79,76,79,82,83,91,116,114,101,101,109,97,112,67,111,108,111,114,93,41,59,92,110,32,32,115,118,103,46,97,112,112,101,110,100,40,92,34,102,105,108,116,101,114,92,34,41,46,97,116,116,114,40,92,34,105,100,92,34,44,32,92,34,115,104,97,100,111,119,92,34,41,46,97,112,112,101,110,100,40,92,34,102,101,68,114,111,112,83,104,97,100,111,119,92,34,41,46,97,116,116,114,40,92,34,102,108,111,111,100,45,111,112,97,99,105,116,121,92,34,44,32,48,46,51,41,46,97,116,116,114,40,92,34,100,120,92,34,44,32,48,41,46,97,116,116,114,40,92,34,115,116,100,68,101,118,105,97,116,105,111,110,92,34,44,32,51,41,59,92,110,32,32,99,111,110,115,116,32,110,111,100,101,32,61,32,115,118,103,46,115,101,108,101,99,116,65,108,108,40,92,34,103,92,34,41,46,100,97,116,97,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,110,101,115,116,40,41,46,107,101,121,40,100,32,61,62,32,100,46,100,101,112,116,104,41,46,115,111,114,116,75,101,121,115,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,97,115,99,101,110,100,105,110,103,41,46,101,110,116,114,105,101,115,40,114,111,111,116,46,100,101,115,99,101,110,100,97,110,116,115,40,41,41,41,46,106,111,105,110,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,102,105,108,116,101,114,92,34,44,32,92,34,117,114,108,40,35,115,104,97,100,111,119,41,92,34,41,46,115,101,108,101,99,116,65,108,108,40,92,34,103,92,34,41,46,100,97,116,97,40,100,32,61,62,32,100,46,118,97,108,117,101,115,41,46,106,111,105,110,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,100,32,61,62,32,96,116,114,97,110,115,108,97,116,101,40,36,123,100,46,120,48,125,44,36,123,100,46,121,48,125,41,96,41,59,92,110,32,32,110,111,100,101,46,97,112,112,101,110,100,40,92,34,116,105,116,108,101,92,34,41,46,116,101,120,116,40,100,32,61,62,32,96,36,123,100,46,97,110,99,101,115,116,111,114,115,40,41,46,114,101,118,101,114,115,101,40,41,46,115,112,108,105,99,101,40,49,41,46,109,97,112,40,100,32,61,62,32,100,46,100,97,116,97,46,110,97,109,101,41,46,106,111,105,110,40,92,34,47,92,34,41,125,92,92,110,36,123,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,117,109,97,110,70,105,108,101,83,105,122,101,41,40,100,46,118,97,108,117,101,41,125,96,41,59,92,110,32,32,110,111,100,101,46,97,112,112,101,110,100,40,92,34,114,101,99,116,92,34,41,46,97,116,116,114,40,92,34,105,100,92,34,44,32,100,32,61,62,32,100,46,110,111,100,101,85,105,100,32,61,32,117,105,100,40,92,34,110,111,100,101,92,34,41,41,46,97,116,116,114,40,92,34,102,105,108,108,92,34,44,32,100,32,61,62,32,99,111,108,111,114,40,100,46,100,101,112,116,104,41,41,46,97,116,116,114,40,92,34,119,105,100,116,104,92,34,44,32,100,32,61,62,32,100,46,120,49,32,45,32,100,46,120,48,41,46,97,116,116,114,40,92,34,104,101,105,103,104,116,92,34,44,32,100,32,61,62,32,100,46,121,49,32,45,32,100,46,121,48,41,59,92,110,32,32,110,111,100,101,46,97,112,112,101,110,100,40,92,34,99,108,105,112,80,97,116,104,92,34,41,46,97,116,116,114,40,92,34,105,100,92,34,44,32,100,32,61,62,32,100,46,99,108,105,112,85,105,100,32,61,32,117,105,100,40,92,34,99,108,105,112,92,34,41,41,46,97,112,112,101,110,100,40,92,34,117,115,101,92,34,41,46,97,116,116,114,40,92,34,104,114,101,102,92,34,44,32,100,32,61,62,32,96,35,36,123,100,46,110,111,100,101,85,105,100,125,96,41,59,92,110,32,32,110,111,100,101,46,97,112,112,101,110,100,40,92,34,116,101,120,116,92,34,41,46,97,116,116,114,40,92,34,102,105,108,108,92,34,44,32,100,32,61,62,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,115,108,40,99,111,108,111,114,40,100,46,100,101,112,116,104,41,41,46,108,32,62,32,46,53,32,63,32,92,34,35,51,51,51,92,34,32,58,32,92,34,35,101,101,101,92,34,41,46,97,116,116,114,40,92,34,99,108,105,112,45,112,97,116,104,92,34,44,32,100,32,61,62,32,96,117,114,108,40,35,36,123,100,46,99,108,105,112,85,105,100,125,41,96,41,46,115,101,108,101,99,116,65,108,108,40,92,34,116,115,112,97,110,92,34,41,46,100,97,116,97,40,100,32,61,62,32,91,100,46,100,97,116,97,46,110,97,109,101,44,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,117,109,97,110,70,105,108,101,83,105,122,101,41,40,100,46,118,97,108,117,101,41,93,41,46,106,111,105,110,40,92,34,116,115,112,97,110,92,34,41,46,116,101,120,116,40,100,32,61,62,32,100,41,59,92,110,32,32,110,111,100,101,46,102,105,108,116,101,114,40,100,32,61,62,32,100,46,99,104,105,108,100,114,101,110,41,46,115,101,108,101,99,116,65,108,108,40,92,34,116,115,112,97,110,92,34,41,46,97,116,116,114,40,92,34,100,120,92,34,44,32,51,41,46,97,116,116,114,40,92,34,121,92,34,44,32,49,51,41,59,92,110,32,32,110,111,100,101,46,102,105,108,116,101,114,40,100,32,61,62,32,33,100,46,99,104,105,108,100,114,101,110,41,46,115,101,108,101,99,116,65,108,108,40,92,34,116,115,112,97,110,92,34,41,46,97,116,116,114,40,92,34,120,92,34,44,32,51,41,46,97,116,116,114,40,92,34,121,92,34,44,32,40,100,44,32,105,41,32,61,62,32,96,36,123,105,32,61,61,61,32,48,32,63,32,49,46,49,32,58,32,50,46,51,125,101,109,96,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,102,108,97,116,84,114,101,101,109,97,112,40,100,97,116,97,44,32,115,118,103,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,44,32,103,114,111,117,112,105,110,103,68,101,112,116,104,44,32,116,105,108,105,110,103,77,111,100,101,44,32,102,105,108,108,79,112,97,99,105,116,121,41,32,123,92,110,32,32,99,111,110,115,116,32,111,114,100,105,110,97,108,67,111,108,111,114,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,99,97,108,101,79,114,100,105,110,97,108,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,99,104,101,109,101,67,97,116,101,103,111,114,121,49,48,41,59,92,110,32,32,99,111,110,115,116,32,114,111,111,116,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,116,114,101,101,109,97,112,40,41,46,116,105,108,101,40,84,73,76,73,78,71,95,77,79,68,69,83,91,116,105,108,105,110,103,77,111,100,101,93,41,46,115,105,122,101,40,91,119,105,100,116,104,44,32,104,101,105,103,104,116,93,41,46,112,97,100,100,105,110,103,40,49,41,46,114,111,117,110,100,40,116,114,117,101,41,40,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,105,101,114,97,114,99,104,121,40,100,97,116,97,41,46,115,117,109,40,100,32,61,62,32,100,46,118,97,108,117,101,41,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,118,97,108,117,101,32,45,32,97,46,118,97,108,117,101,41,41,59,92,110,32,32,99,111,110,115,116,32,108,101,97,102,32,61,32,115,118,103,46,115,101,108,101,99,116,65,108,108,40,92,34,103,92,34,41,46,100,97,116,97,40,114,111,111,116,46,108,101,97,118,101,115,40,41,41,46,106,111,105,110,40,92,34,103,92,34,41,46,97,116,116,114,40,92,34,116,114,97,110,115,102,111,114,109,92,34,44,32,100,32,61,62,32,96,116,114,97,110,115,108,97,116,101,40,36,123,100,46,120,48,125,44,36,123,100,46,121,48,125,41,96,41,59,92,110,32,32,108,101,97,102,46,97,112,112,101,110,100,40,92,34,116,105,116,108,101,92,34,41,46,116,101,120,116,40,100,32,61,62,32,96,36,123,100,46,97,110,99,101,115,116,111,114,115,40,41,46,114,101,118,101,114,115,101,40,41,46,109,97,112,40,100,32,61,62,32,100,46,100,97,116,97,46,110,97,109,101,41,46,106,111,105,110,40,92,34,47,92,34,41,125,92,92,110,36,123,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,117,109,97,110,70,105,108,101,83,105,122,101,41,40,100,46,118,97,108,117,101,41,125,96,41,59,92,110,32,32,108,101,97,102,46,97,112,112,101,110,100,40,92,34,114,101,99,116,92,34,41,46,97,116,116,114,40,92,34,105,100,92,34,44,32,100,32,61,62,32,100,46,108,101,97,102,85,105,100,32,61,32,117,105,100,40,92,34,108,101,97,102,92,34,41,41,46,97,116,116,114,40,92,34,102,105,108,108,92,34,44,32,100,32,61,62,32,123,92,110,32,32,32,32,119,104,105,108,101,32,40,100,46,100,101,112,116,104,32,62,32,103,114,111,117,112,105,110,103,68,101,112,116,104,41,32,100,32,61,32,100,46,112,97,114,101,110,116,59,92,110,32,32,32,32,114,101,116,117,114,110,32,111,114,100,105,110,97,108,67,111,108,111,114,40,100,46,100,97,116,97,46,110,97,109,101,41,59,92,110,32,32,125,41,46,97,116,116,114,40,92,34,102,105,108,108,45,111,112,97,99,105,116,121,92,34,44,32,102,105,108,108,79,112,97,99,105,116,121,41,46,97,116,116,114,40,92,34,119,105,100,116,104,92,34,44,32,100,32,61,62,32,100,46,120,49,32,45,32,100,46,120,48,41,46,97,116,116,114,40,92,34,104,101,105,103,104,116,92,34,44,32,100,32,61,62,32,100,46,121,49,32,45,32,100,46,121,48,41,59,92,110,32,32,108,101,97,102,46,97,112,112,101,110,100,40,92,34,99,108,105,112,80,97,116,104,92,34,41,46,97,116,116,114,40,92,34,105,100,92,34,44,32,100,32,61,62,32,100,46,99,108,105,112,85,105,100,32,61,32,117,105,100,40,92,34,99,108,105,112,92,34,41,41,46,97,112,112,101,110,100,40,92,34,117,115,101,92,34,41,46,97,116,116,114,40,92,34,104,114,101,102,92,34,44,32,100,32,61,62,32,96,35,36,123,100,46,108,101,97,102,85,105,100,125,96,41,59,92,110,32,32,108,101,97,102,46,97,112,112,101,110,100,40,92,34,116,101,120,116,92,34,41,46,97,116,116,114,40,92,34,99,108,105,112,45,112,97,116,104,92,34,44,32,100,32,61,62,32,96,117,114,108,40,35,36,123,100,46,99,108,105,112,85,105,100,125,41,96,41,46,115,101,108,101,99,116,65,108,108,40,92,34,116,115,112,97,110,92,34,41,46,100,97,116,97,40,100,32,61,62,32,123,92,110,32,32,32,32,105,102,32,40,100,46,100,97,116,97,46,110,97,109,101,32,61,61,61,32,92,34,46,92,34,41,32,123,92,110,32,32,32,32,32,32,100,32,61,32,100,46,112,97,114,101,110,116,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,91,100,46,100,97,116,97,46,110,97,109,101,44,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,117,109,97,110,70,105,108,101,83,105,122,101,41,40,100,46,118,97,108,117,101,41,93,59,92,110,32,32,125,41,46,106,111,105,110,40,92,34,116,115,112,97,110,92,34,41,46,97,116,116,114,40,92,34,120,92,34,44,32,50,41,46,97,116,116,114,40,92,34,121,92,34,44,32,40,100,44,32,105,41,32,61,62,32,96,36,123,105,32,61,61,61,32,48,32,63,32,49,46,49,32,58,32,50,46,51,125,101,109,96,41,46,116,101,120,116,40,100,32,61,62,32,100,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,101,120,112,111,114,116,84,114,101,101,109,97,112,40,105,110,100,101,120,78,97,109,101,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,41,32,123,92,110,32,32,100,111,109,95,116,111,95,105,109,97,103,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,95,100,101,102,97,117,108,116,40,41,46,116,111,66,108,111,98,40,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,92,34,116,114,101,101,109,97,112,92,34,41,44,32,123,92,110,32,32,32,32,119,105,100,116,104,58,32,119,105,100,116,104,44,92,110,32,32,32,32,104,101,105,103,104,116,58,32,104,101,105,103,104,116,92,110,32,32,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,32,40,98,108,111,98,41,32,123,92,110,32,32,32,32,108,101,116,32,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,92,34,97,92,34,41,59,92,110,32,32,32,32,108,101,116,32,117,114,108,32,61,32,85,82,76,46,99,114,101,97,116,101,79,98,106,101,99,116,85,82,76,40,98,108,111,98,41,59,92,110,32,32,32,32,97,46,104,114,101,102,32,61,32,117,114,108,59,92,110,32,32,32,32,97,46,100,111,119,110,108,111,97,100,32,61,32,96,36,123,105,110,100,101,120,78,97,109,101,125,95,116,114,101,101,109,97,112,46,112,110,103,96,59,92,110,32,32,32,32,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,97,41,59,92,110,32,32,32,32,97,46,99,108,105,99,107,40,41,59,92,110,32,32,32,32,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,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,97,41,59,92,110,32,32,32,32,32,32,119,105,110,100,111,119,46,85,82,76,46,114,101,118,111,107,101,79,98,106,101,99,116,85,82,76,40,117,114,108,41,59,92,110,32,32,32,32,125,44,32,48,41,59,92,110,32,32,125,41,59,92,110,125,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,68,51,84,114,101,101,109,97,112,92,34,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,105,110,100,101,120,73,100,92,34,93,44,92,110,32,32,119,97,116,99,104,58,32,123,92,110,32,32,32,32,105,110,100,101,120,73,100,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,117,112,100,97,116,101,40,105,110,100,101,120,73,100,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,119,105,100,116,104,32,61,32,83,73,90,69,83,91,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,93,91,48,93,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,104,101,105,103,104,116,32,61,32,83,73,90,69,83,91,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,93,91,49,93,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,116,105,108,105,110,103,77,111,100,101,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,103,114,111,117,112,105,110,103,68,101,112,116,104,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,116,114,101,101,109,97,112,67,111,108,111,114,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,116,114,101,101,109,97,112,84,121,112,101,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,84,121,112,101,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,116,114,101,101,109,97,112,83,118,103,32,61,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,108,101,99,116,40,92,34,35,116,114,101,101,109,97,112,92,34,41,59,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,83,118,103,46,115,101,108,101,99,116,65,108,108,40,92,34,42,92,34,41,46,114,101,109,111,118,101,40,41,59,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,83,118,103,46,97,116,116,114,40,92,34,118,105,101,119,66,111,120,92,34,44,32,91,48,44,32,48,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,93,41,46,97,116,116,114,40,92,34,120,109,108,110,115,92,34,44,32,92,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,92,34,41,46,97,116,116,114,40,92,34,120,109,108,110,115,58,120,108,105,110,107,92,34,44,32,92,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,92,34,41,46,97,116,116,114,40,92,34,118,101,114,115,105,111,110,92,34,44,32,92,34,49,46,49,92,34,41,46,115,116,121,108,101,40,92,34,111,118,101,114,102,108,111,119,92,34,44,32,92,34,118,105,115,105,98,108,101,92,34,41,46,115,116,121,108,101,40,92,34,102,111,110,116,92,34,44,32,92,34,49,48,112,120,32,115,97,110,115,45,115,101,114,105,102,92,34,41,59,92,110,32,32,32,32,32,32,100,51,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,115,118,40,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,103,101,116,84,114,101,101,109,97,112,67,115,118,85,114,108,40,105,110,100,101,120,73,100,41,41,46,116,104,101,110,40,116,97,98,117,108,97,114,68,97,116,97,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,116,97,98,117,108,97,114,68,97,116,97,46,102,111,114,69,97,99,104,40,114,111,119,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,111,119,46,116,97,120,111,110,111,109,121,32,61,32,114,111,119,46,112,97,116,104,46,115,112,108,105,116,40,92,34,47,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,111,119,46,115,105,122,101,32,61,32,78,117,109,98,101,114,40,114,111,119,46,115,105,122,101,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,114,101,101,109,97,112,84,121,112,101,32,61,61,61,32,92,34,99,97,115,99,97,100,101,100,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,97,116,97,32,61,32,40,48,44,95,117,116,105,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,98,117,114,114,111,119,41,40,116,97,98,117,108,97,114,68,97,116,97,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,97,115,99,97,100,101,84,114,101,101,109,97,112,40,100,97,116,97,44,32,116,114,101,101,109,97,112,83,118,103,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,44,32,116,105,108,105,110,103,77,111,100,101,44,32,116,114,101,101,109,97,112,67,111,108,111,114,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,97,116,97,32,61,32,40,48,44,95,117,116,105,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,98,117,114,114,111,119,41,40,116,97,98,117,108,97,114,68,97,116,97,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,46,116,97,120,111,110,111,109,121,46,108,101,110,103,116,104,32,45,32,97,46,116,97,120,111,110,111,109,121,46,108,101,110,103,116,104,41,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,102,105,108,108,79,112,97,99,105,116,121,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,104,101,109,101,32,61,61,61,32,92,34,98,108,97,99,107,92,34,32,63,32,48,46,57,32,58,32,48,46,54,59,92,110,32,32,32,32,32,32,32,32,32,32,102,108,97,116,84,114,101,101,109,97,112,40,100,97,116,97,44,32,116,114,101,101,109,97,112,83,118,103,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,44,32,103,114,111,117,112,105,110,103,68,101,112,116,104,44,32,116,105,108,105,110,103,77,111,100,101,44,32,102,105,108,108,79,112,97,99,105,116,121,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,111,119,110,108,111,97,100,84,114,101,101,109,97,112,40,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,119,105,100,116,104,32,61,32,83,73,90,69,83,91,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,93,91,48,93,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,104,101,105,103,104,116,32,61,32,83,73,90,69,83,91,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,93,91,49,93,59,92,110,32,32,32,32,32,32,101,120,112,111,114,116,84,114,101,101,109,97,112,40,116,104,105,115,46,105,110,100,101,120,73,100,44,32,119,105,100,116,104,44,32,104,101,105,103,104,116,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,110,111,117,105,115,108,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,110,111,117,105,115,108,105,100,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,110,111,117,105,115,108,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,110,111,117,105,115,108,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,110,111,117,105,115,108,105,100,101,114,95,100,105,115,116,95,110,111,117,105,115,108,105,100,101,114,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,99,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,99,115,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,110,111,117,105,115,108,105,100,101,114,95,100,105,115,116,95,110,111,117,105,115,108,105,100,101,114,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,110,111,117,105,115,108,105,100,101,114,95,100,105,115,116,95,110,111,117,105,115,108,105,100,101,114,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,45,106,115,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,45,106,115,46,106,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,68,97,116,101,83,108,105,100,101,114,92,34,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,115,101,116,68,97,116,101,77,105,110,40,118,97,108,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,101,112,111,99,104,68,97,116,101,32,61,32,77,97,116,104,46,99,101,105,108,40,43,118,97,108,32,47,32,49,48,48,48,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,68,97,116,101,77,105,110,92,34,44,32,101,112,111,99,104,68,97,116,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,68,97,116,101,77,97,120,40,118,97,108,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,101,112,111,99,104,68,97,116,101,32,61,32,77,97,116,104,46,99,101,105,108,40,43,118,97,108,32,47,32,49,48,48,48,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,68,97,116,101,77,97,120,92,34,44,32,101,112,111,99,104,68,97,116,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,100,97,116,101,77,105,110,40,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,100,97,116,101,77,105,110,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,105,110,32,63,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,105,110,32,58,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,66,111,117,110,100,115,77,105,110,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,100,97,116,101,77,105,110,32,42,32,49,48,48,48,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,97,116,101,77,97,120,40,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,100,97,116,101,77,97,120,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,97,120,32,63,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,97,120,32,58,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,66,111,117,110,100,115,77,97,120,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,100,97,116,101,77,97,120,32,42,32,49,48,48,48,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,109,117,116,97,116,105,111,110,32,61,62,32,123,92,110,32,32,32,32,32,32,105,102,32,40,109,117,116,97,116,105,111,110,46,116,121,112,101,32,61,61,61,32,92,34,115,101,116,68,97,116,101,66,111,117,110,100,115,77,97,120,92,34,41,32,123,92,110,32,32,32,32,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,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,92,34,100,97,116,101,83,108,105,100,101,114,92,34,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,108,101,109,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,85,115,105,110,103,32,98,45,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,44,32,115,107,105,112,32,105,110,105,116,105,97,108,105,115,97,116,105,111,110,32,111,102,32,115,108,105,100,101,114,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,108,101,109,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,97,116,101,77,97,120,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,66,111,117,110,100,115,77,97,120,59,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,97,116,101,77,105,110,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,66,111,117,110,100,115,77,105,110,59,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,115,108,105,100,101,114,32,61,32,110,111,117,105,115,108,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,46,99,114,101,97,116,101,40,101,108,101,109,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,114,116,58,32,91,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,105,110,32,63,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,105,110,32,58,32,100,97,116,101,77,105,110,44,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,97,120,32,63,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,97,120,32,58,32,100,97,116,101,77,97,120,93,44,92,110,32,32,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,115,58,32,91,116,114,117,101,44,32,116,114,117,101,93,44,92,110,32,32,32,32,32,32,32,32,32,32,98,101,104,97,118,105,111,117,114,58,32,92,34,100,114,97,103,45,116,97,112,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,110,101,99,116,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,114,97,110,103,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,109,105,110,92,34,58,32,100,97,116,101,77,105,110,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,109,97,120,92,34,58,32,100,97,116,101,77,97,120,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,111,58,32,120,32,61,62,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,117,109,97,110,68,97,116,101,41,40,120,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,114,111,109,58,32,120,32,61,62,32,120,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,40,48,44,95,117,116,105,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,101,114,103,101,84,111,111,108,116,105,112,115,41,40,101,108,101,109,44,32,49,48,44,32,92,34,32,45,32,92,34,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,101,108,101,109,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,39,46,110,111,85,105,45,99,111,110,110,101,99,116,39,41,91,48,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,92,34,115,108,105,100,101,114,45,99,111,108,111,114,48,92,34,41,59,92,110,32,32,32,32,32,32,32,32,115,108,105,100,101,114,46,111,110,40,92,34,115,101,116,92,34,44,32,40,118,97,108,117,101,115,44,32,104,97,110,100,108,101,44,32,117,110,101,110,99,111,100,101,100,41,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,97,110,100,108,101,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,68,97,116,101,77,105,110,92,34,44,32,117,110,101,110,99,111,100,101,100,91,48,93,32,61,61,61,32,100,97,116,101,77,105,110,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,77,97,116,104,46,114,111,117,110,100,40,117,110,101,110,99,111,100,101,100,91,48,93,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,68,97,116,101,77,97,120,92,34,44,32,117,110,101,110,99,111,100,101,100,91,49,93,32,62,61,32,100,97,116,101,77,97,120,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,77,97,116,104,46,114,111,117,110,100,40,117,110,101,110,99,111,100,101,100,91,49,93,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,73,110,100,101,120,68,101,98,117,103,73,110,102,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,105,99,111,110,115,95,68,101,98,117,103,73,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,68,101,98,117,103,73,110,102,111,46,118,117,101,92,34,44,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,68,101,98,117,103,73,99,111,110,58,32,95,99,111,109,112,111,110,101,110,116,115,95,105,99,111,110,115,95,68,101,98,117,103,73,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,73,110,100,101,120,68,101,98,117,103,73,110,102,111,58,32,95,99,111,109,112,111,110,101,110,116,115,95,73,110,100,101,120,68,101,98,117,103,73,110,102,111,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,116,97,98,108,101,73,116,101,109,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,118,101,114,115,105,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,118,101,114,115,105,111,110,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,112,108,97,116,102,111,114,109,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,112,108,97,116,102,111,114,109,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,100,101,98,117,103,66,105,110,97,114,121,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,100,101,98,117,103,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,115,105,115,116,50,67,111,109,109,105,116,72,97,115,104,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,115,105,115,116,50,72,97,115,104,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,101,115,73,110,100,101,120,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,101,115,73,110,100,101,120,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,116,97,103,108,105,110,101,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,116,97,103,108,105,110,101,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,100,101,118,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,100,101,118,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,109,111,110,103,111,111,115,101,86,101,114,115,105,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,109,111,110,103,111,111,115,101,86,101,114,115,105,111,110,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,101,115,86,101,114,115,105,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,101,115,86,101,114,115,105,111,110,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,101,115,86,101,114,115,105,111,110,83,117,112,112,111,114,116,101,100,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,101,115,86,101,114,115,105,111,110,83,117,112,112,111,114,116,101,100,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,101,115,86,101,114,115,105,111,110,76,101,103,97,99,121,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,101,115,86,101,114,115,105,111,110,76,101,103,97,99,121,92,110,32,32,32,32,32,32,125,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,120,47,100,105,115,116,47,118,117,101,120,46,101,115,109,46,106,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,92,34,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,112,71,101,116,116,101,114,115,41,40,91,92,34,111,112,116,68,105,115,112,108,97,121,92,34,93,41,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,112,77,117,116,97,116,105,111,110,115,41,40,91,92,34,115,101,116,79,112,116,68,105,115,112,108,97,121,92,34,93,41,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,73,110,102,111,77,111,100,97,108,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,70,117,108,108,84,104,117,109,98,110,97,105,108,58,32,95,99,111,109,112,111,110,101,110,116,115,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,67,111,110,116,101,110,116,68,105,118,58,32,95,99,111,109,112,111,110,101,110,116,115,95,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,68,111,99,73,110,102,111,77,111,100,97,108,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,73,110,102,111,77,111,100,97,108,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,68,111,99,70,105,108,101,84,105,116,108,101,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,84,97,103,67,111,110,116,97,105,110,101,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,100,111,99,92,34,44,32,92,34,119,105,100,116,104,92,34,93,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,101,120,116,58,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,120,116,44,92,110,32,32,32,32,32,32,115,104,111,119,73,110,102,111,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,115,109,97,108,108,66,97,100,103,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,119,105,100,116,104,32,60,32,49,53,48,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,104,117,109,97,110,70,105,108,101,83,105,122,101,58,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,117,109,97,110,70,105,108,101,83,105,122,101,44,92,110,32,32,32,32,104,117,109,97,110,84,105,109,101,58,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,117,109,97,110,84,105,109,101,44,92,110,32,32,32,32,111,110,73,110,102,111,67,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,73,110,102,111,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,115,121,110,99,32,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,85,105,76,105,103,104,116,98,111,120,83,108,105,100,101,92,34,44,32,116,104,105,115,46,100,111,99,46,95,115,101,113,41,59,92,110,32,32,32,32,32,32,97,119,97,105,116,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,92,34,115,104,111,119,76,105,103,104,116,98,111,120,92,34,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,65,117,100,105,111,80,108,97,121,40,41,32,123,92,110,32,32,32,32,32,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,92,34,97,117,100,105,111,92,34,41,46,102,111,114,69,97,99,104,40,101,108,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,108,32,33,61,61,32,116,104,105,115,46,36,114,101,102,115,91,92,34,97,117,100,105,111,92,34,93,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,101,108,46,112,97,117,115,101,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,67,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,101,103,106,115,95,118,117,101,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,101,103,106,115,47,118,117,101,45,105,110,102,105,110,105,116,101,103,114,105,100,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,101,103,106,115,47,118,117,101,45,105,110,102,105,110,105,116,101,103,114,105,100,47,100,105,115,116,47,105,110,102,105,110,105,116,101,103,114,105,100,46,101,115,109,46,106,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,117,115,101,40,95,101,103,106,115,95,118,117,101,95,105,110,102,105,110,105,116,101,103,114,105,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,68,111,99,67,97,114,100,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,67,97,114,100,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,100,111,99,115,92,34,44,32,92,34,97,112,112,101,110,100,92,34,93,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,119,105,100,116,104,58,32,48,44,92,110,32,32,32,32,32,32,103,114,105,100,79,112,116,105,111,110,115,58,32,123,92,110,32,32,32,32,32,32,32,32,97,108,105,103,110,58,32,92,34,99,101,110,116,101,114,92,34,44,92,110,32,32,32,32,32,32,32,32,109,97,114,103,105,110,58,32,48,44,92,110,32,32,32,32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,58,32,48,44,92,110,32,32,32,32,32,32,32,32,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,105,115,67,111,110,115,116,97,110,116,83,105,122,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,117,115,101,70,105,116,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,100,105,99,97,116,101,115,32,119,104,101,116,104,101,114,32,107,101,101,112,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,68,79,77,115,32,105,115,32,109,97,105,110,116,97,105,110,101,100,46,32,73,102,32,116,104,101,32,117,115,101,82,101,99,121,99,108,101,32,118,97,108,117,101,32,105,115,32,39,116,114,117,101,39,44,32,107,101,101,112,32,116,104,101,32,110,117,109,98,101,114,92,110,32,32,32,32,32,32,32,32,47,47,32,32,111,102,32,68,79,77,115,32,105,115,32,109,97,105,110,116,97,105,110,101,100,46,32,73,102,32,116,104,101,32,117,115,101,82,101,99,121,99,108,101,32,118,97,108,117,101,32,105,115,32,39,102,97,108,115,101,39,44,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,68,79,77,115,32,119,105,108,108,32,105,110,99,114,101,97,115,101,32,97,115,32,99,97,114,100,32,101,108,101,109,101,110,116,115,92,110,32,32,32,32,32,32,32,32,47,47,32,32,97,114,101,32,97,100,100,101,100,46,92,110,32,32,32,32,32,32,32,32,117,115,101,82,101,99,121,99,108,101,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,99,111,108,67,111,117,110,116,40,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,99,111,108,117,109,110,115,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,92,34,111,112,116,67,111,108,117,109,110,115,92,34,93,59,92,110,32,32,32,32,32,32,105,102,32,40,99,111,108,117,109,110,115,32,61,61,61,32,92,34,97,117,116,111,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,36,114,101,102,115,91,92,34,103,114,105,100,45,108,97,121,111,117,116,92,34,93,46,36,101,108,46,115,99,114,111,108,108,87,105,100,116,104,32,47,32,51,48,48,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,108,117,109,110,115,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,119,105,100,116,104,32,61,32,116,104,105,115,46,36,114,101,102,115,91,92,34,103,114,105,100,45,108,97,121,111,117,116,92,34,93,46,36,101,108,46,115,99,114,111,108,108,87,105,100,116,104,32,47,32,116,104,105,115,46,99,111,108,67,111,117,110,116,59,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,99,111,108,67,111,117,110,116,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,114,101,102,115,91,92,34,103,114,105,100,45,108,97,121,111,117,116,92,34,93,46,36,101,108,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,92,34,103,114,105,100,45,115,105,110,103,108,101,45,99,111,108,117,109,110,92,34,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,109,117,116,97,116,105,111,110,32,61,62,32,123,92,110,32,32,32,32,32,32,105,102,32,40,109,117,116,97,116,105,111,110,46,116,121,112,101,32,61,61,61,32,92,34,98,117,115,85,112,100,97,116,101,87,97,108,108,73,116,101,109,115,92,34,32,38,38,32,116,104,105,115,46,36,114,101,102,115,91,92,34,103,114,105,100,45,108,97,121,111,117,116,92,34,93,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,114,101,102,115,91,92,34,103,114,105,100,45,108,97,121,111,117,116,92,34,93,46,117,112,100,97,116,101,73,116,101,109,115,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,41,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,68,111,99,70,105,108,101,84,105,116,108,101,92,34,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,100,111,99,92,34,93,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,101,120,116,58,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,120,116,44,92,110,32,32,32,32,102,105,108,101,78,97,109,101,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,46,110,97,109,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,92,34,110,97,109,101,46,110,71,114,97,109,92,34,93,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,92,34,110,97,109,101,46,110,71,114,97,109,92,34,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,46,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,46,110,97,109,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,46,110,97,109,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,73,110,102,111,84,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,76,97,122,121,67,111,110,116,101,110,116,68,105,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,68,111,99,73,110,102,111,77,111,100,97,108,92,34,44,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,76,97,122,121,67,111,110,116,101,110,116,68,105,118,58,32,95,99,111,109,112,111,110,101,110,116,115,95,76,97,122,121,67,111,110,116,101,110,116,68,105,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,73,110,102,111,84,97,98,108,101,58,32,95,99,111,109,112,111,110,101,110,116,115,95,73,110,102,111,84,97,98,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,100,111,99,92,34,44,32,92,34,115,104,111,119,92,34,93,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,101,120,116,58,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,120,116,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,70,105,108,101,84,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,73,110,102,111,77,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,67,111,110,116,101,110,116,68,105,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,105,99,111,110,115,95,70,105,108,101,73,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,68,111,99,76,105,115,116,73,116,101,109,92,34,44,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,70,105,108,101,73,99,111,110,58,32,95,99,111,109,112,111,110,101,110,116,115,95,105,99,111,110,115,95,70,105,108,101,73,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,67,111,110,116,101,110,116,68,105,118,58,32,95,99,111,109,112,111,110,101,110,116,115,95,67,111,110,116,101,110,116,68,105,118,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,68,111,99,73,110,102,111,77,111,100,97,108,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,73,110,102,111,77,111,100,97,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,68,111,99,70,105,108,101,84,105,116,108,101,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,70,105,108,101,84,105,116,108,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,84,97,103,67,111,110,116,97,105,110,101,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,84,97,103,67,111,110,116,97,105,110,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,100,111,99,92,34,93,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,104,111,118,101,114,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,115,104,111,119,73,110,102,111,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,97,115,121,110,99,32,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,85,105,76,105,103,104,116,98,111,120,83,108,105,100,101,92,34,44,32,116,104,105,115,46,100,111,99,46,95,115,101,113,41,59,92,110,32,32,32,32,32,32,97,119,97,105,116,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,92,34,115,104,111,119,76,105,103,104,116,98,111,120,92,34,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,112,97,116,104,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,116,104,32,43,32,92,34,47,92,34,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,92,34,112,97,116,104,46,116,101,120,116,92,34,93,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,92,34,112,97,116,104,46,116,101,120,116,92,34,93,32,43,32,92,34,47,92,34,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,92,34,112,97,116,104,46,110,71,114,97,109,92,34,93,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,92,34,112,97,116,104,46,110,71,114,97,109,92,34,93,32,43,32,92,34,47,92,34,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,116,104,32,43,32,92,34,47,92,34,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,84,110,69,110,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,104,111,118,101,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,84,110,76,101,97,118,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,104,111,118,101,114,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,70,117,108,108,84,104,117,109,98,110,97,105,108,92,34,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,100,111,99,92,34,44,32,92,34,115,109,97,108,108,66,97,100,103,101,92,34,93,44,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,104,111,118,101,114,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,58,32,48,44,92,110,32,32,32,32,32,32,116,105,109,101,111,117,116,73,100,58,32,110,117,108,108,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,109,117,116,97,116,105,111,110,32,61,62,32,123,92,110,32,32,32,32,32,32,105,102,32,40,109,117,116,97,116,105,111,110,46,116,121,112,101,32,61,61,61,32,92,34,98,117,115,84,110,84,111,117,99,104,83,116,97,114,116,92,34,32,38,38,32,109,117,116,97,116,105,111,110,46,112,97,121,108,111,97,100,32,33,61,61,32,116,104,105,115,46,100,111,99,46,95,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,111,110,84,110,76,101,97,118,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,116,110,83,114,99,40,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,100,111,99,32,61,32,116,104,105,115,46,100,111,99,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,112,114,111,112,115,32,61,32,100,111,99,46,95,112,114,111,112,115,59,92,110,32,32,32,32,32,32,105,102,32,40,112,114,111,112,115,46,105,115,71,105,102,32,38,38,32,116,104,105,115,46,104,111,118,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,96,102,47,36,123,100,111,99,46,95,105,100,125,96,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,32,61,61,61,32,48,32,63,32,96,116,47,36,123,100,111,99,46,95,115,111,117,114,99,101,46,105,110,100,101,120,125,47,36,123,100,111,99,46,95,105,100,125,96,32,58,32,96,116,47,36,123,100,111,99,46,95,115,111,117,114,99,101,46,105,110,100,101,120,125,47,36,123,100,111,99,46,95,105,100,125,36,123,83,116,114,105,110,103,40,116,104,105,115,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,41,46,112,97,100,83,116,97,114,116,40,52,44,32,92,34,48,92,34,41,125,96,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,104,117,109,97,110,84,105,109,101,58,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,117,109,97,110,84,105,109,101,44,92,110,32,32,32,32,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,92,34,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,92,34,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,110,72,101,105,103,104,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,114,101,102,115,46,116,110,46,104,101,105,103,104,116,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,110,87,105,100,116,104,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,114,101,102,115,46,116,110,46,119,105,100,116,104,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,84,110,69,110,116,101,114,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,104,111,118,101,114,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,100,111,99,46,95,112,114,111,112,115,46,104,97,115,86,105,100,80,114,101,118,105,101,119,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,32,43,61,32,49,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,99,104,101,100,117,108,101,78,101,120,116,84,110,78,117,109,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,84,110,76,101,97,118,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,32,61,32,48,59,92,110,32,32,32,32,32,32,116,104,105,115,46,104,111,118,101,114,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,116,105,109,101,111,117,116,73,100,32,33,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,116,105,109,101,111,117,116,73,100,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,105,109,101,111,117,116,73,100,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,99,104,101,100,117,108,101,78,101,120,116,84,110,78,117,109,40,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,73,78,84,69,82,86,65,76,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,32,63,63,32,55,48,48,59,92,110,32,32,32,32,32,32,116,104,105,115,46,116,105,109,101,111,117,116,73,100,32,61,32,119,105,110,100,111,119,46,115,101,116,84,105,109,101,111,117,116,40,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,104,111,118,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,99,104,101,100,117,108,101,78,101,120,116,84,110,78,117,109,40,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,32,61,61,61,32,116,104,105,115,46,100,111,99,46,95,112,114,111,112,115,46,116,110,78,117,109,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,32,43,61,32,49,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,32,73,78,84,69,82,86,65,76,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,84,111,117,99,104,83,116,97,114,116,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,98,117,115,84,110,84,111,117,99,104,83,116,97,114,116,92,34,44,32,116,104,105,115,46,100,111,99,46,95,105,100,41,59,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,104,111,118,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,111,110,84,110,69,110,116,101,114,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,72,101,108,112,68,105,97,108,111,103,92,34,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,115,104,111,119,92,34,93,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,73,110,100,101,120,68,101,98,117,103,73,110,102,111,92,34,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,105,110,100,101,120,92,34,93,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,116,97,98,108,101,73,116,101,109,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,116,104,105,115,46,36,116,40,92,34,110,97,109,101,92,34,41,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,105,110,100,101,120,46,110,97,109,101,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,116,104,105,115,46,36,116,40,92,34,105,100,92,34,41,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,105,110,100,101,120,46,105,100,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,116,104,105,115,46,36,116,40,92,34,105,110,100,101,120,86,101,114,115,105,111,110,92,34,41,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,105,110,100,101,120,46,118,101,114,115,105,111,110,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,116,104,105,115,46,36,116,40,92,34,114,101,119,114,105,116,101,85,114,108,92,34,41,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,105,110,100,101,120,46,114,101,119,114,105,116,101,85,114,108,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,116,104,105,115,46,36,116,40,92,34,116,105,109,101,115,116,97,109,112,92,34,41,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,117,109,97,110,68,97,116,101,41,40,116,104,105,115,46,105,110,100,101,120,46,116,105,109,101,115,116,97,109,112,41,92,110,32,32,32,32,32,32,125,93,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,109,97,107,101,71,112,115,76,105,110,107,40,108,97,116,105,116,117,100,101,44,32,108,111,110,103,105,116,117,100,101,41,32,123,92,110,32,32,105,102,32,40,105,115,78,97,78,40,108,97,116,105,116,117,100,101,41,32,124,124,32,105,115,78,97,78,40,108,111,110,103,105,116,117,100,101,41,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,92,34,92,34,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,96,60,97,32,116,97,114,103,101,116,61,92,34,95,98,108,97,110,107,92,34,32,104,114,101,102,61,92,34,104,116,116,112,115,58,47,47,109,97,112,115,46,103,111,111,103,108,101,46,99,111,109,47,63,113,61,36,123,108,97,116,105,116,117,100,101,125,44,36,123,108,111,110,103,105,116,117,100,101,125,38,108,108,61,36,123,108,97,116,105,116,117,100,101,125,44,36,123,108,111,110,103,105,116,117,100,101,125,38,116,61,107,38,122,61,49,55,92,34,62,36,123,108,97,116,105,116,117,100,101,125,44,32,36,123,108,111,110,103,105,116,117,100,101,125,60,47,97,62,96,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,100,109,115,84,111,68,101,99,105,109,97,108,40,100,109,115,44,32,114,101,102,41,32,123,92,110,32,32,99,111,110,115,116,32,116,111,107,101,110,115,32,61,32,100,109,115,46,115,112,108,105,116,40,92,34,44,92,34,41,59,92,110,32,32,99,111,110,115,116,32,100,32,61,32,78,117,109,98,101,114,40,116,111,107,101,110,115,91,48,93,46,116,114,105,109,40,41,46,115,112,108,105,116,40,92,34,58,92,34,41,91,48,93,41,32,47,32,78,117,109,98,101,114,40,116,111,107,101,110,115,91,48,93,46,116,114,105,109,40,41,46,115,112,108,105,116,40,92,34,58,92,34,41,91,49,93,41,59,92,110,32,32,99,111,110,115,116,32,109,32,61,32,78,117,109,98,101,114,40,116,111,107,101,110,115,91,49,93,46,116,114,105,109,40,41,46,115,112,108,105,116,40,92,34,58,92,34,41,91,48,93,41,32,47,32,78,117,109,98,101,114,40,116,111,107,101,110,115,91,49,93,46,116,114,105,109,40,41,46,115,112,108,105,116,40,92,34,58,92,34,41,91,49,93,41,59,92,110,32,32,99,111,110,115,116,32,115,32,61,32,78,117,109,98,101,114,40,116,111,107,101,110,115,91,50,93,46,116,114,105,109,40,41,46,115,112,108,105,116,40,92,34,58,92,34,41,91,48,93,41,32,47,32,78,117,109,98,101,114,40,116,111,107,101,110,115,91,50,93,46,116,114,105,109,40,41,46,115,112,108,105,116,40,92,34,58,92,34,41,91,49,93,41,59,92,110,32,32,114,101,116,117,114,110,32,40,100,32,43,32,109,32,47,32,54,48,32,43,32,115,32,47,32,51,54,48,48,41,32,42,32,40,114,101,102,32,61,61,61,32,92,34,83,92,34,32,124,124,32,114,101,102,32,61,61,61,32,92,34,87,92,34,32,63,32,45,49,32,58,32,49,41,59,92,110,125,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,73,110,102,111,84,97,98,108,101,92,34,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,100,111,99,92,34,93,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,105,110,100,101,120,78,97,109,101,58,32,92,34,108,111,97,100,105,110,103,46,46,46,92,34,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,116,97,98,108,101,73,116,101,109,115,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,110,100,101,120,78,97,109,101,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,115,114,99,32,61,32,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,105,116,101,109,115,32,61,32,91,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,105,110,100,101,120,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,96,91,36,123,116,104,105,115,46,105,110,100,101,120,78,97,109,101,125,93,96,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,109,116,105,109,101,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,117,109,97,110,68,97,116,101,41,40,115,114,99,46,109,116,105,109,101,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,109,105,109,101,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,115,114,99,46,109,105,109,101,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,115,105,122,101,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,117,109,97,110,70,105,108,101,83,105,122,101,41,40,115,114,99,46,115,105,122,101,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,112,97,116,104,92,34,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,115,114,99,46,112,97,116,104,92,110,32,32,32,32,32,32,125,93,59,92,110,32,32,32,32,32,32,105,102,32,40,92,34,119,105,100,116,104,92,34,32,105,110,32,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,109,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,105,109,97,103,101,32,115,105,122,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,96,36,123,115,114,99,46,119,105,100,116,104,125,120,36,123,115,114,99,46,104,101,105,103,104,116,125,96,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,111,110,115,116,32,102,105,101,108,100,115,32,61,32,91,92,34,116,105,116,108,101,92,34,44,32,92,34,100,117,114,97,116,105,111,110,92,34,44,32,92,34,97,117,100,105,111,99,92,34,44,32,92,34,118,105,100,101,111,99,92,34,44,32,92,34,98,105,116,114,97,116,101,92,34,44,32,92,34,97,114,116,105,115,116,92,34,44,32,92,34,97,108,98,117,109,92,34,44,32,92,34,97,108,98,117,109,95,97,114,116,105,115,116,92,34,44,32,92,34,103,101,110,114,101,92,34,44,32,92,34,102,111,110,116,95,110,97,109,101,92,34,44,32,92,34,97,117,116,104,111,114,92,34,44,32,92,34,109,111,100,105,102,105,101,100,95,98,121,92,34,44,32,92,34,112,97,103,101,115,92,34,44,32,92,34,116,97,103,92,34,44,32,92,34,101,120,105,102,95,109,97,107,101,92,34,44,32,92,34,101,120,105,102,95,115,111,102,116,119,97,114,101,92,34,44,32,92,34,101,120,105,102,95,101,120,112,111,115,117,114,101,95,116,105,109,101,92,34,44,32,92,34,101,120,105,102,95,102,110,117,109,98,101,114,92,34,44,32,92,34,101,120,105,102,95,102,111,99,97,108,95,108,101,110,103,116,104,92,34,44,32,92,34,101,120,105,102,95,117,115,101,114,95,99,111,109,109,101,110,116,92,34,44,32,92,34,101,120,105,102,95,105,115,111,95,115,112,101,101,100,95,114,97,116,105,110,103,115,92,34,44,32,92,34,101,120,105,102,95,109,111,100,101,108,92,34,44,32,92,34,101,120,105,102,95,100,97,116,101,116,105,109,101,92,34,44,32,92,34,99,104,101,99,107,115,117,109,92,34,93,59,92,110,32,32,32,32,32,32,102,105,101,108,100,115,46,102,111,114,69,97,99,104,40,102,105,101,108,100,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,102,105,101,108,100,32,105,110,32,115,114,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,102,105,101,108,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,115,114,99,91,102,105,101,108,100,93,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,115,114,99,41,46,102,111,114,69,97,99,104,40,107,101,121,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,92,34,109,116,95,92,34,41,32,124,124,32,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,92,34,105,110,116,95,92,34,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,107,101,121,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,115,114,99,91,107,101,121,93,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,92,110,32,32,32,32,32,32,47,47,32,69,120,105,102,32,71,80,83,92,110,32,32,32,32,32,32,105,102,32,40,92,34,101,120,105,102,95,103,112,115,95,108,111,110,103,105,116,117,100,101,95,100,101,99,92,34,32,105,110,32,115,114,99,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,109,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,69,120,105,102,32,71,80,83,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,104,116,109,108,58,32,109,97,107,101,71,112,115,76,105,110,107,40,115,114,99,91,92,34,101,120,105,102,95,103,112,115,95,108,97,116,105,116,117,100,101,95,100,101,99,92,34,93,44,32,115,114,99,91,92,34,101,120,105,102,95,103,112,115,95,108,111,110,103,105,116,117,100,101,95,100,101,99,92,34,93,41,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,92,34,101,120,105,102,95,103,112,115,95,108,111,110,103,105,116,117,100,101,95,100,109,115,92,34,32,105,110,32,115,114,99,41,32,123,92,110,32,32,32,32,32,32,32,32,105,116,101,109,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,69,120,105,102,32,71,80,83,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,104,116,109,108,58,32,109,97,107,101,71,112,115,76,105,110,107,40,100,109,115,84,111,68,101,99,105,109,97,108,40,115,114,99,91,92,34,101,120,105,102,95,103,112,115,95,108,97,116,105,116,117,100,101,95,100,109,115,92,34,93,44,32,115,114,99,91,92,34,101,120,105,102,95,103,112,115,95,108,97,116,105,116,117,100,101,95,114,101,102,92,34,93,41,44,32,100,109,115,84,111,68,101,99,105,109,97,108,40,115,114,99,91,92,34,101,120,105,102,95,103,112,115,95,108,111,110,103,105,116,117,100,101,95,100,109,115,92,34,93,44,32,115,114,99,91,92,34,101,120,105,102,95,103,112,115,95,108,111,110,103,105,116,117,100,101,95,114,101,102,92,34,93,41,41,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,115,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,105,110,100,101,120,77,97,112,91,116,104,105,115,46,100,111,99,46,105,110,100,101,120,93,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,110,100,101,120,78,97,109,101,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,105,110,100,101,120,77,97,112,91,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,46,105,110,100,101,120,93,46,110,97,109,101,59,92,110,32,32,32,32,125,92,110,32,32,32,32,119,105,110,100,111,119,46,115,101,116,84,105,109,101,111,117,116,40,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,110,100,101,120,78,97,109,101,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,105,110,100,101,120,77,97,112,91,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,46,105,110,100,101,120,93,46,110,97,109,101,59,92,110,32,32,32,32,125,44,32,53,48,48,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,80,114,101,108,111,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,81,117,101,114,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,81,117,101,114,121,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,81,117,101,114,121,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,111,114,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,115,116,111,114,101,32,42,47,32,92,34,46,47,115,114,99,47,115,116,111,114,101,47,105,110,100,101,120,46,116,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,76,97,122,121,67,111,110,116,101,110,116,68,105,118,92,34,44,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,80,114,101,108,111,97,100,101,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,80,114,101,108,111,97,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,100,111,99,73,100,92,34,93,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,99,111,110,116,101,110,116,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,108,111,97,100,105,110,103,58,32,116,114,117,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,99,111,110,115,116,32,113,117,101,114,121,32,61,32,95,83,105,115,116,50,81,117,101,114,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,115,101,97,114,99,104,81,117,101,114,121,40,41,59,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,72,105,103,104,108,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,102,105,101,108,100,115,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,102,117,122,122,121,32,63,32,123,92,110,32,32,32,32,32,32,32,32,92,34,99,111,110,116,101,110,116,46,110,71,114,97,109,92,34,58,32,123,125,92,110,32,32,32,32,32,32,125,32,58,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,58,32,123,125,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,113,117,101,114,121,46,104,105,103,104,108,105,103,104,116,32,61,32,123,92,110,32,32,32,32,32,32,32,32,112,114,101,95,116,97,103,115,58,32,91,92,34,60,109,97,114,107,62,92,34,93,44,92,110,32,32,32,32,32,32,32,32,112,111,115,116,95,116,97,103,115,58,32,91,92,34,60,47,109,97,114,107,62,92,34,93,44,92,110,32,32,32,32,32,32,32,32,110,117,109,98,101,114,95,111,102,95,102,114,97,103,109,101,110,116,115,58,32,48,44,92,110,32,32,32,32,32,32,32,32,102,105,101,108,100,115,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,105,102,32,40,33,95,115,116,111,114,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,101,115,86,101,114,115,105,111,110,76,101,103,97,99,121,41,32,123,92,110,32,32,32,32,32,32,32,32,113,117,101,114,121,46,104,105,103,104,108,105,103,104,116,46,109,97,120,95,97,110,97,108,121,122,101,100,95,111,102,102,115,101,116,32,61,32,57,57,57,95,57,57,57,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,92,34,102,117,110,99,116,105,111,110,95,115,99,111,114,101,92,34,32,105,110,32,113,117,101,114,121,46,113,117,101,114,121,41,32,123,92,110,32,32,32,32,32,32,113,117,101,114,121,46,113,117,101,114,121,32,61,32,113,117,101,114,121,46,113,117,101,114,121,46,102,117,110,99,116,105,111,110,95,115,99,111,114,101,46,113,117,101,114,121,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,33,40,92,34,109,117,115,116,92,34,32,105,110,32,113,117,101,114,121,46,113,117,101,114,121,46,98,111,111,108,41,41,32,123,92,110,32,32,32,32,32,32,113,117,101,114,121,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,32,61,32,91,93,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,113,117,101,114,121,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,41,41,32,123,92,110,32,32,32,32,32,32,113,117,101,114,121,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,32,61,32,91,113,117,101,114,121,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,113,117,101,114,121,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,109,97,116,99,104,58,32,123,92,110,32,32,32,32,32,32,32,32,95,105,100,58,32,116,104,105,115,46,100,111,99,73,100,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,100,101,108,101,116,101,32,113,117,101,114,121,91,92,34,115,111,114,116,92,34,93,59,92,110,32,32,32,32,100,101,108,101,116,101,32,113,117,101,114,121,91,92,34,97,103,103,115,92,34,93,59,92,110,32,32,32,32,100,101,108,101,116,101,32,113,117,101,114,121,91,92,34,115,101,97,114,99,104,95,97,102,116,101,114,92,34,93,59,92,110,32,32,32,32,100,101,108,101,116,101,32,113,117,101,114,121,46,113,117,101,114,121,91,92,34,102,117,110,99,116,105,111,110,95,115,99,111,114,101,92,34,93,59,92,110,32,32,32,32,113,117,101,114,121,46,95,115,111,117,114,99,101,32,61,32,123,92,110,32,32,32,32,32,32,105,110,99,108,117,100,101,115,58,32,91,92,34,99,111,110,116,101,110,116,92,34,44,32,92,34,110,97,109,101,92,34,44,32,92,34,112,97,116,104,92,34,44,32,92,34,101,120,116,101,110,115,105,111,110,92,34,93,92,110,32,32,32,32,125,59,92,110,32,32,32,32,113,117,101,114,121,46,115,105,122,101,32,61,32,49,59,92,110,32,32,32,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,115,81,117,101,114,121,40,113,117,101,114,121,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,97,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,112,46,104,105,116,115,46,104,105,116,115,46,108,101,110,103,116,104,32,61,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,99,111,110,116,101,110,116,32,61,32,116,104,105,115,46,103,101,116,67,111,110,116,101,110,116,40,114,101,115,112,46,104,105,116,115,46,104,105,116,115,91,48,93,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,92,34,70,73,88,77,69,58,32,99,111,117,108,100,32,110,111,116,32,103,101,116,32,99,111,110,116,101,110,116,92,34,41,59,92,110,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,114,101,115,112,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,103,101,116,67,111,110,116,101,110,116,40,100,111,99,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,100,111,99,46,104,105,103,104,108,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,111,99,46,95,115,111,117,114,99,101,46,99,111,110,116,101,110,116,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,100,111,99,46,104,105,103,104,108,105,103,104,116,91,92,34,99,111,110,116,101,110,116,46,110,71,114,97,109,92,34,93,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,111,99,46,104,105,103,104,108,105,103,104,116,91,92,34,99,111,110,116,101,110,116,46,110,71,114,97,109,92,34,93,91,48,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,100,111,99,46,104,105,103,104,108,105,103,104,116,46,99,111,110,116,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,111,99,46,104,105,103,104,108,105,103,104,116,46,99,111,110,116,101,110,116,91,48,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,102,115,108,105,103,104,116,98,111,120,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,102,115,108,105,103,104,116,98,111,120,45,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,102,115,108,105,103,104,116,98,111,120,45,118,117,101,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,102,115,108,105,103,104,116,98,111,120,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,102,115,108,105,103,104,116,98,111,120,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,76,105,103,104,116,98,111,120,92,34,44,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,70,115,76,105,103,104,116,98,111,120,58,32,40,102,115,108,105,103,104,116,98,111,120,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,92,110,32,32,125,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,100,105,115,97,98,108,101,65,110,105,109,97,116,105,111,110,115,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,99,117,115,116,111,109,66,117,116,116,111,110,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,118,105,101,119,66,111,120,58,32,92,34,48,32,48,32,51,56,52,46,57,50,56,32,51,56,52,46,57,50,56,92,34,44,92,110,32,32,32,32,32,32,32,32,100,58,32,92,34,77,51,50,49,46,51,51,57,44,50,52,53,46,51,51,52,99,45,52,46,55,52,45,52,46,54,57,50,45,49,50,46,52,51,57,45,52,46,55,48,52,45,49,55,46,49,55,57,44,48,108,45,57,57,46,53,53,49,44,57,56,46,53,54,52,86,49,50,46,48,51,32,99,48,45,54,46,54,52,49,45,53,46,52,51,56,45,49,50,46,48,51,45,49,50,46,49,53,49,45,49,50,46,48,51,115,45,49,50,46,49,53,49,44,53,46,51,57,45,49,50,46,49,53,49,44,49,50,46,48,51,118,51,51,49,46,56,54,56,108,45,57,57,46,53,53,49,45,57,56,46,53,53,50,99,45,52,46,55,52,45,52,46,55,48,52,45,49,50,46,52,51,57,45,52,46,55,48,52,45,49,55,46,49,55,57,44,48,32,115,45,52,46,55,52,44,49,50,46,51,49,57,44,48,44,49,55,46,48,49,49,108,49,50,48,46,50,57,49,44,49,49,57,46,48,56,56,99,52,46,54,57,50,44,52,46,54,52,52,44,49,50,46,52,57,57,44,52,46,54,52,52,44,49,55,46,49,57,49,44,48,108,49,50,48,46,50,57,49,45,49,49,57,46,48,56,56,32,67,51,50,54,46,48,57,49,44,50,53,55,46,54,53,51,44,51,50,54,46,48,57,49,44,50,53,48,46,48,51,56,44,51,50,49,46,51,51,57,44,50,52,53,46,51,51,52,67,51,49,54,46,53,57,57,44,50,52,48,46,54,52,50,44,51,50,54,46,48,57,49,44,50,53,48,46,48,51,56,44,51,50,49,46,51,51,57,44,50,52,53,46,51,51,52,122,92,34,44,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,92,34,49,55,112,120,92,34,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,92,34,49,55,112,120,92,34,44,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,92,34,68,111,119,110,108,111,97,100,92,34,44,92,110,32,32,32,32,32,32,32,32,111,110,67,108,105,99,107,58,32,116,104,105,115,46,111,110,68,111,119,110,108,111,97,100,67,108,105,99,107,92,110,32,32,32,32,32,32,125,93,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,115,104,111,119,76,105,103,104,116,98,111,120,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,92,34,117,105,83,104,111,119,76,105,103,104,116,98,111,120,92,34,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,105,103,104,116,98,111,120,83,111,117,114,99,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,92,34,117,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,92,34,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,105,103,104,116,98,111,120,84,104,117,109,98,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,92,34,117,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,92,34,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,105,103,104,116,98,111,120,75,101,121,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,92,34,117,105,76,105,103,104,116,98,111,120,75,101,121,92,34,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,105,103,104,116,98,111,120,83,108,105,100,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,92,34,117,105,76,105,103,104,116,98,111,120,83,108,105,100,101,92,34,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,92,34,117,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,92,34,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,105,103,104,116,98,111,120,84,121,112,101,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,92,34,117,105,76,105,103,104,116,98,111,120,84,121,112,101,115,92,34,93,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,99,111,110,115,116,32,108,105,115,116,101,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,111,110,107,101,121,100,111,119,110,59,92,110,32,32,32,32,100,111,99,117,109,101,110,116,46,111,110,107,101,121,100,111,119,110,32,61,32,101,32,61,62,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,114,101,116,32,61,32,116,104,105,115,46,107,101,121,68,111,119,110,76,105,115,116,101,110,101,114,40,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,108,105,115,116,101,110,101,114,32,38,38,32,114,101,116,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,108,105,115,116,101,110,101,114,40,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,107,101,121,68,111,119,110,76,105,115,116,101,110,101,114,40,101,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,105,115,76,105,103,104,116,98,111,120,79,112,101,110,32,61,32,116,104,105,115,46,36,114,101,102,115,46,108,105,103,104,116,98,111,120,32,61,61,61,32,117,110,100,101,102,105,110,101,100,32,124,124,32,116,104,105,115,46,36,114,101,102,115,46,108,105,103,104,116,98,111,120,46,36,101,108,46,116,97,103,78,97,109,101,32,61,61,61,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,32,32,32,32,105,102,32,40,105,115,76,105,103,104,116,98,111,120,79,112,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,111,110,115,116,32,108,105,103,104,116,98,111,120,83,116,111,114,101,32,61,32,116,104,105,115,46,36,114,101,102,115,46,108,105,103,104,116,98,111,120,46,102,115,76,105,103,104,116,98,111,120,83,116,111,114,101,46,115,108,105,99,101,40,45,49,41,91,48,93,59,92,110,32,32,32,32,32,32,115,119,105,116,99,104,32,40,101,46,107,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,32,92,34,58,92,110,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,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,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,105,110,100,32,118,105,100,101,111,32,97,116,32,99,117,114,114,101,110,116,32,115,108,105,100,101,44,32,116,111,103,103,108,101,32,112,108,97,121,47,112,97,117,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,46,46,46,100,111,99,117,109,101,110,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,92,34,102,115,108,105,103,104,116,98,111,120,45,97,98,115,111,108,117,116,101,100,92,34,41,93,46,102,111,114,69,97,99,104,40,101,108,101,109,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,108,101,109,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,32,61,61,61,32,92,34,116,114,97,110,115,108,97,116,101,40,48,112,120,41,92,34,32,124,124,32,101,108,101,109,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,32,61,61,61,32,92,34,116,114,97,110,115,108,97,116,101,40,48,112,120,44,32,48,112,120,41,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,118,105,100,32,61,32,101,108,101,109,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,92,34,118,105,100,101,111,92,34,41,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,105,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,118,105,100,46,112,97,117,115,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,105,100,46,112,108,97,121,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,105,100,46,112,97,117,115,101,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,65,114,114,111,119,85,112,92,34,58,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,107,92,34,58,92,110,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,108,105,103,104,116,98,111,120,83,116,111,114,101,46,100,97,116,97,46,105,115,84,104,117,109,98,105,110,103,32,38,38,32,108,105,103,104,116,98,111,120,83,116,111,114,101,46,99,111,114,101,46,116,104,117,109,98,115,84,111,103,103,108,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,103,104,116,98,111,120,83,116,111,114,101,46,99,111,114,101,46,116,104,117,109,98,115,84,111,103,103,108,101,114,46,116,111,103,103,108,101,84,104,117,109,98,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,65,114,114,111,119,68,111,119,110,92,34,58,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,106,92,34,58,92,110,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,105,103,104,116,98,111,120,83,116,111,114,101,46,100,97,116,97,46,105,115,84,104,117,109,98,105,110,103,32,38,38,32,108,105,103,104,116,98,111,120,83,116,111,114,101,46,99,111,114,101,46,116,104,117,109,98,115,84,111,103,103,108,101,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,103,104,116,98,111,120,83,116,111,114,101,46,99,111,114,101,46,116,104,117,109,98,115,84,111,103,103,108,101,114,46,116,111,103,103,108,101,84,104,117,109,98,115,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,104,92,34,58,92,110,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,105,103,104,116,98,111,120,83,116,111,114,101,46,99,111,114,101,46,115,116,97,103,101,77,97,110,97,103,101,114,46,103,101,116,80,114,101,118,105,111,117,115,83,108,105,100,101,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,103,104,116,98,111,120,83,116,111,114,101,46,99,111,114,101,46,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,46,106,117,109,112,84,111,40,108,105,103,104,116,98,111,120,83,116,111,114,101,46,99,111,114,101,46,115,116,97,103,101,77,97,110,97,103,101,114,46,103,101,116,80,114,101,118,105,111,117,115,83,108,105,100,101,73,110,100,101,120,40,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,97,115,101,32,92,34,108,92,34,58,92,110,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,108,105,103,104,116,98,111,120,83,116,111,114,101,46,99,111,114,101,46,115,116,97,103,101,77,97,110,97,103,101,114,46,103,101,116,78,101,120,116,83,108,105,100,101,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,103,104,116,98,111,120,83,116,111,114,101,46,99,111,114,101,46,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,46,106,117,109,112,84,111,40,108,105,103,104,116,98,111,120,83,116,111,114,101,46,99,111,114,101,46,115,116,97,103,101,77,97,110,97,103,101,114,46,103,101,116,78,101,120,116,83,108,105,100,101,73,110,100,101,120,40,41,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,68,111,119,110,108,111,97,100,67,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,117,114,108,32,61,32,116,104,105,115,46,108,105,103,104,116,98,111,120,83,111,117,114,99,101,115,91,116,104,105,115,46,108,105,103,104,116,98,111,120,83,108,105,100,101,93,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,97,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,92,34,108,105,103,104,116,98,111,120,45,100,111,119,110,108,111,97,100,92,34,41,59,92,110,32,32,32,32,32,32,97,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,104,114,101,102,92,34,44,32,117,114,108,41,59,92,110,32,32,32,32,32,32,97,46,115,101,116,65,116,116,114,105,98,117,116,101,40,92,34,100,111,119,110,108,111,97,100,92,34,44,32,92,34,92,34,41,59,92,110,32,32,32,32,32,32,97,46,99,108,105,99,107,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,83,104,111,119,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,85,105,76,105,103,104,116,98,111,120,73,115,79,112,101,110,92,34,44,32,116,114,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,108,111,115,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,85,105,76,105,103,104,116,98,111,120,73,115,79,112,101,110,92,34,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,83,108,105,100,101,67,104,97,110,103,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,80,97,117,115,101,32,97,108,108,32,118,105,100,101,111,115,32,119,104,101,110,32,99,104,97,110,103,105,110,103,32,115,108,105,100,101,92,110,32,32,32,32,32,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,92,34,118,105,100,101,111,92,34,41,46,102,111,114,69,97,99,104,40,101,108,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,101,108,46,112,97,117,115,101,40,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,92,34,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,104,105,116,92,34,93,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,104,117,109,97,110,70,105,108,101,83,105,122,101,58,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,117,109,97,110,70,105,108,101,83,105,122,101,44,92,110,32,32,32,32,101,120,116,58,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,101,120,116,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,105,110,115,112,105,114,101,45,116,114,101,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,105,110,115,112,105,114,101,95,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,100,105,115,116,95,105,110,115,112,105,114,101,95,116,114,101,101,95,108,105,103,104,116,95,109,105,110,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,108,105,103,104,116,46,109,105,110,46,99,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,108,105,103,104,116,46,109,105,110,46,99,115,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,100,105,115,116,95,105,110,115,112,105,114,101,95,116,114,101,101,95,108,105,103,104,116,95,109,105,110,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,100,105,115,116,95,105,110,115,112,105,114,101,95,116,114,101,101,95,108,105,103,104,116,95,109,105,110,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,81,117,101,114,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,81,117,101,114,121,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,81,117,101,114,121,46,116,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,77,105,109,101,80,105,99,107,101,114,92,34,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,109,105,109,101,84,114,101,101,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,117,112,100,97,116,101,66,117,115,121,58,32,102,97,108,115,101,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,109,117,116,97,116,105,111,110,32,61,62,32,123,92,110,32,32,32,32,32,32,105,102,32,40,109,117,116,97,116,105,111,110,46,116,121,112,101,32,61,61,61,32,92,34,115,101,116,85,105,77,105,109,101,77,97,112,92,34,32,38,38,32,116,104,105,115,46,109,105,109,101,84,114,101,101,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,110,105,116,105,97,108,105,122,101,84,114,101,101,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,109,117,116,97,116,105,111,110,46,116,121,112,101,32,61,61,61,32,92,34,98,117,115,83,101,97,114,99,104,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,84,114,101,101,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,110,111,100,101,44,32,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,101,32,61,61,61,32,92,34,105,110,100,101,116,101,114,109,105,110,97,116,101,92,34,32,124,124,32,101,32,61,61,61,32,92,34,99,111,108,108,97,112,115,101,100,92,34,32,124,124,32,101,32,61,61,61,32,39,114,101,110,100,101,114,101,100,39,32,124,124,32,101,32,61,61,61,32,92,34,102,111,99,117,115,101,100,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,117,112,100,97,116,101,66,117,115,121,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,92,34,44,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,103,101,116,83,101,108,101,99,116,101,100,84,114,101,101,78,111,100,101,115,41,40,116,104,105,115,46,109,105,109,101,84,114,101,101,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,112,100,97,116,101,84,114,101,101,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,117,112,100,97,116,101,66,117,115,121,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,66,117,115,121,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,32,61,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,103,101,116,84,114,101,101,78,111,100,101,65,116,116,114,105,98,117,116,101,115,41,40,116,104,105,115,46,109,105,109,101,84,114,101,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,111,110,115,116,32,113,117,101,114,121,32,61,32,95,83,105,115,116,50,81,117,101,114,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,115,101,97,114,99,104,81,117,101,114,121,40,41,59,92,110,32,32,32,32,32,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,103,101,116,77,105,109,101,84,121,112,101,115,40,113,117,101,114,121,41,46,116,104,101,110,40,40,123,92,110,32,32,32,32,32,32,32,32,98,117,99,107,101,116,115,44,92,110,32,32,32,32,32,32,32,32,109,105,109,101,77,97,112,92,110,32,32,32,32,32,32,125,41,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,85,105,77,105,109,101,77,97,112,92,34,44,32,109,105,109,101,77,97,112,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,85,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,92,34,44,32,98,117,99,107,101,116,115,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,109,105,109,101,84,114,101,101,46,114,101,109,111,118,101,65,108,108,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,109,105,109,101,84,114,101,101,46,97,100,100,78,111,100,101,115,40,109,105,109,101,77,97,112,41,59,92,110,92,110,32,32,32,32,32,32,32,32,47,47,32,82,101,115,116,111,114,101,32,115,101,108,101,99,116,101,100,32,109,105,109,101,115,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,78,79,84,69,58,32,84,104,105,115,32,104,97,112,112,101,110,115,32,119,104,101,110,32,115,117,99,99,101,115,115,105,118,101,32,102,97,115,116,32,115,101,97,114,99,104,101,115,32,97,114,101,32,116,114,105,103,103,101,114,101,100,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,32,61,32,123,125,59,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,65,108,119,97,121,115,32,97,100,100,32,116,104,101,32,115,101,108,101,99,116,101,100,32,109,105,109,101,32,116,121,112,101,115,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,46,102,111,114,69,97,99,104,40,109,105,109,101,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,91,109,105,109,101,93,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,101,99,107,101,100,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,101,110,116,114,105,101,115,40,116,104,105,115,46,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,41,46,102,111,114,69,97,99,104,40,40,91,109,105,109,101,44,32,97,116,116,114,105,98,117,116,101,115,93,41,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,109,105,109,101,84,114,101,101,46,110,111,100,101,40,109,105,109,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,116,116,114,105,98,117,116,101,115,46,99,104,101,99,107,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,109,105,109,101,84,114,101,101,46,110,111,100,101,40,109,105,109,101,41,46,115,101,108,101,99,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,116,116,114,105,98,117,116,101,115,46,99,111,108,108,97,112,115,101,100,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,109,105,109,101,84,114,101,101,46,110,111,100,101,40,109,105,109,101,41,46,101,120,112,97,110,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,66,117,115,121,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,110,105,116,105,97,108,105,122,101,84,114,101,101,40,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,109,105,109,101,77,97,112,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,117,105,77,105,109,101,77,97,112,59,92,110,32,32,32,32,32,32,116,104,105,115,46,109,105,109,101,84,114,101,101,32,61,32,110,101,119,32,40,105,110,115,112,105,114,101,95,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,40,123,92,110,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,109,111,100,101,58,32,92,34,99,104,101,99,107,98,111,120,92,34,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,58,32,109,105,109,101,77,97,112,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,110,101,119,32,40,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,41,40,116,104,105,115,46,109,105,109,101,84,114,101,101,44,32,123,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,92,34,35,109,105,109,101,84,114,101,101,92,34,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,109,105,109,101,84,114,101,101,46,111,110,40,92,34,110,111,100,101,46,115,116,97,116,101,46,99,104,97,110,103,101,100,92,34,44,32,116,104,105,115,46,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,109,105,109,101,84,114,101,101,46,100,101,115,101,108,101,99,116,40,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,46,102,111,114,69,97,99,104,40,109,105,109,101,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,109,105,109,101,84,114,101,101,46,110,111,100,101,40,109,105,109,101,41,46,115,101,108,101,99,116,40,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,105,99,111,110,115,95,83,105,115,116,50,73,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,78,97,118,66,97,114,92,34,44,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,83,105,115,116,50,73,99,111,110,58,32,95,99,111,109,112,111,110,101,110,116,115,95,105,99,111,110,115,95,83,105,115,116,50,73,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,116,97,103,108,105,110,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,116,97,103,108,105,110,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,105,115,116,50,86,101,114,115,105,111,110,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,118,101,114,115,105,111,110,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,68,101,98,117,103,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,100,101,98,117,103,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,76,101,103,97,99,121,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,101,115,86,101,114,115,105,111,110,76,101,103,97,99,121,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,105,100,101,76,101,103,97,99,121,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,72,105,100,101,76,101,103,97,99,121,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,76,111,103,111,117,116,67,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,97,117,116,104,46,108,111,103,111,117,116,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,105,110,115,112,105,114,101,45,116,114,101,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,105,110,115,112,105,114,101,95,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,100,105,115,116,95,105,110,115,112,105,114,101,95,116,114,101,101,95,108,105,103,104,116,95,109,105,110,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,108,105,103,104,116,46,109,105,110,46,99,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,108,105,103,104,116,46,109,105,110,46,99,115,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,100,105,115,116,95,105,110,115,112,105,114,101,95,116,114,101,101,95,108,105,103,104,116,95,109,105,110,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,100,105,115,116,95,105,110,115,112,105,114,101,95,116,114,101,101,95,108,105,103,104,116,95,109,105,110,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,120,47,100,105,115,116,47,118,117,101,120,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,115,105,109,112,108,101,95,115,117,103,103,101,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,100,105,115,116,47,101,115,54,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,115,105,109,112,108,101,95,115,117,103,103,101,115,116,95,100,105,115,116,95,115,116,121,108,101,115,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,100,105,115,116,47,115,116,121,108,101,115,46,99,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,100,105,115,116,47,115,116,121,108,101,115,46,99,115,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,115,105,109,112,108,101,95,115,117,103,103,101,115,116,95,100,105,115,116,95,115,116,121,108,101,115,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,118,117,101,95,115,105,109,112,108,101,95,115,117,103,103,101,115,116,95,100,105,115,116,95,115,116,121,108,101,115,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,32,47,47,32,79,112,116,105,111,110,97,108,32,67,83,83,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,80,97,116,104,84,114,101,101,92,34,44,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,86,117,101,83,105,109,112,108,101,83,117,103,103,101,115,116,58,32,118,117,101,95,115,105,109,112,108,101,95,115,117,103,103,101,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,109,105,109,101,84,114,101,101,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,112,97,116,104,73,116,101,109,115,58,32,91,93,44,92,110,32,32,32,32,32,32,116,109,112,80,97,116,104,58,32,92,34,92,34,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,112,71,101,116,116,101,114,115,41,40,91,92,34,103,101,116,80,97,116,104,84,101,120,116,92,34,93,41,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,109,117,116,97,116,105,111,110,32,61,62,32,123,92,110,32,32,32,32,32,32,47,47,32,87,97,105,116,32,117,110,116,105,108,32,105,110,100,105,99,101,115,32,97,114,101,32,108,111,97,100,101,100,32,116,111,32,103,101,116,32,116,104,101,32,114,111,111,116,32,112,97,116,104,115,92,110,32,32,32,32,32,32,105,102,32,40,109,117,116,97,116,105,111,110,46,116,121,112,101,32,61,61,61,32,92,34,115,101,116,73,110,100,105,99,101,115,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,108,101,116,32,112,97,116,104,84,114,101,101,32,61,32,110,101,119,32,40,105,110,115,112,105,114,101,95,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,40,123,92,110,32,32,32,32,32,32,32,32,32,32,100,97,116,97,58,32,40,110,111,100,101,44,32,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,103,101,116,78,101,120,116,68,101,112,116,104,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,115,111,114,116,58,32,92,34,116,101,120,116,92,34,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,105,110,100,105,99,101,115,46,102,111,114,69,97,99,104,40,105,100,120,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,84,114,101,101,46,97,100,100,78,111,100,101,40,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,92,34,47,92,34,32,43,32,105,100,120,46,105,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,115,58,32,91,92,34,47,92,34,32,43,32,105,100,120,46,105,100,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,96,47,91,36,123,105,100,120,46,110,97,109,101,125,93,96,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,105,100,120,46,105,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,101,112,116,104,58,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,110,101,119,32,40,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,41,40,112,97,116,104,84,114,101,101,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,92,34,35,112,97,116,104,84,114,101,101,92,34,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,112,97,116,104,84,114,101,101,46,111,110,40,92,34,110,111,100,101,46,99,108,105,99,107,92,34,44,32,116,104,105,115,46,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,41,59,92,110,32,32,32,32,32,32,32,32,112,97,116,104,84,114,101,101,46,101,120,112,97,110,100,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,46,109,97,112,77,117,116,97,116,105,111,110,115,41,40,91,92,34,115,101,116,80,97,116,104,84,101,120,116,92,34,93,41,44,92,110,32,32,32,32,103,101,116,83,117,103,103,101,115,116,105,111,110,87,105,116,104,111,117,116,81,117,101,114,121,80,114,101,102,105,120,40,115,117,103,103,101,115,116,105,111,110,44,32,113,117,101,114,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,117,103,103,101,115,116,105,111,110,46,115,108,105,99,101,40,113,117,101,114,121,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,115,121,110,99,32,103,101,116,80,97,116,104,67,104,111,105,99,101,115,40,41,32,123,92,110,32,32,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,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,113,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,117,103,103,101,115,116,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,102,105,120,58,32,116,104,105,115,46,103,101,116,80,97,116,104,84,101,120,116,44,92,110,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,92,34,115,117,103,103,101,115,116,45,112,97,116,104,92,34,44,92,110,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,92,110,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,115,81,117,101,114,121,40,113,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,92,34,115,117,103,103,101,115,116,92,34,93,91,92,34,112,97,116,104,92,34,93,91,48,93,91,92,34,111,112,116,105,111,110,115,92,34,93,46,109,97,112,40,111,112,116,32,61,62,32,111,112,116,91,92,34,95,115,111,117,114,99,101,92,34,93,91,92,34,112,97,116,104,92,34,93,41,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,115,121,110,99,32,115,117,103,103,101,115,116,80,97,116,104,40,116,101,114,109,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,83,117,103,103,101,115,116,80,97,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,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,92,110,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,116,104,105,115,46,103,101,116,80,97,116,104,67,104,111,105,99,101,115,40,41,59,92,110,32,32,32,32,32,32,108,101,116,32,109,97,116,99,104,101,115,32,61,32,91,93,59,92,110,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,92,110,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,92,110,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,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,116,99,104,101,115,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,46,108,101,110,103,116,104,32,45,32,98,46,108,101,110,103,116,104,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,78,101,120,116,68,101,112,116,104,40,110,111,100,101,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,113,32,61,32,123,92,110,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,98,111,111,108,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,58,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,110,111,100,101,46,105,110,100,101,120,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,97,110,103,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,100,101,112,116,104,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,116,101,58,32,110,111,100,101,46,100,101,112,116,104,32,43,32,49,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,116,101,58,32,110,111,100,101,46,100,101,112,116,104,32,43,32,51,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,93,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,97,103,103,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,92,34,112,97,116,104,92,34,44,92,110,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,58,32,48,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,100,101,112,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,113,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,112,114,101,102,105,120,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,58,32,110,111,100,101,46,105,100,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,115,81,117,101,114,121,40,113,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,98,117,99,107,101,116,115,32,61,32,114,101,115,112,91,92,34,97,103,103,114,101,103,97,116,105,111,110,115,92,34,93,91,92,34,112,97,116,104,115,92,34,93,91,92,34,98,117,99,107,101,116,115,92,34,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,98,117,99,107,101,116,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,112,97,116,104,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,117,99,107,101,116,115,46,102,105,108,116,101,114,40,98,117,99,107,101,116,32,61,62,32,98,117,99,107,101,116,46,107,101,121,46,108,101,110,103,116,104,32,62,32,110,111,100,101,46,105,100,46,108,101,110,103,116,104,32,124,124,32,110,111,100,101,46,105,100,46,115,116,97,114,116,115,87,105,116,104,40,92,34,47,92,34,41,41,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,46,107,101,121,32,62,32,98,46,107,101,121,41,46,109,97,112,40,98,117,99,107,101,116,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,97,116,104,115,46,115,111,109,101,40,110,32,61,62,32,98,117,99,107,101,116,46,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,110,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,110,97,109,101,32,61,32,110,111,100,101,46,105,100,46,115,116,97,114,116,115,87,105,116,104,40,92,34,47,92,34,41,32,63,32,98,117,99,107,101,116,46,107,101,121,32,58,32,98,117,99,107,101,116,46,107,101,121,46,115,108,105,99,101,40,110,111,100,101,46,105,100,46,108,101,110,103,116,104,32,43,32,49,41,59,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,117,115,104,40,98,117,99,107,101,116,46,107,101,121,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,98,117,99,107,101,116,46,107,101,121,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,96,36,123,110,97,109,101,125,47,32,40,36,123,98,117,99,107,101,116,46,100,111,99,95,99,111,117,110,116,125,41,96,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,101,112,116,104,58,32,110,111,100,101,46,100,101,112,116,104,32,43,32,49,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,110,111,100,101,46,105,110,100,101,120,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,115,58,32,91,98,117,99,107,101,116,46,107,101,121,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,125,41,46,102,105,108,116,101,114,40,120,32,61,62,32,120,32,33,61,61,32,110,117,108,108,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,101,44,32,110,111,100,101,44,32,104,97,110,100,108,101,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,100,101,112,116,104,32,33,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,80,97,116,104,84,101,120,116,40,110,111,100,101,46,105,100,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,114,101,102,115,91,39,112,97,116,104,45,109,111,100,97,108,39,93,46,104,105,100,101,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,101,109,105,116,40,92,34,115,101,97,114,99,104,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,104,97,110,100,108,101,114,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,120,47,100,105,115,116,47,118,117,101,120,46,101,115,109,46,106,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,112,71,101,116,116,101,114,115,41,40,123,92,110,32,32,32,32,32,32,111,112,116,81,117,101,114,121,77,111,100,101,58,32,92,34,111,112,116,81,117,101,114,121,77,111,100,101,92,34,44,92,110,32,32,32,32,32,32,115,101,97,114,99,104,84,101,120,116,58,32,92,34,115,101,97,114,99,104,84,101,120,116,92,34,44,92,110,32,32,32,32,32,32,102,117,122,122,121,58,32,92,34,102,117,122,122,121,92,34,92,110,32,32,32,32,125,41,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,109,97,112,77,117,116,97,116,105,111,110,115,41,40,123,92,110,32,32,32,32,32,32,115,101,116,83,101,97,114,99,104,84,101,120,116,58,32,92,34,115,101,116,83,101,97,114,99,104,84,101,120,116,92,34,44,92,110,32,32,32,32,32,32,115,101,116,70,117,122,122,121,58,32,92,34,115,101,116,70,117,122,122,121,92,34,92,110,32,32,32,32,125,41,44,92,110,32,32,32,32,97,100,118,97,110,99,101,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,81,117,101,114,121,77,111,100,101,32,61,61,61,32,92,34,97,100,118,97,110,99,101,100,92,34,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,110,111,117,105,115,108,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,110,111,117,105,115,108,105,100,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,110,111,117,105,115,108,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,110,111,117,105,115,108,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,110,111,117,105,115,108,105,100,101,114,95,100,105,115,116,95,110,111,117,105,115,108,105,100,101,114,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,99,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,110,111,117,105,115,108,105,100,101,114,47,100,105,115,116,47,110,111,117,105,115,108,105,100,101,114,46,99,115,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,110,111,117,105,115,108,105,100,101,114,95,100,105,115,116,95,110,111,117,105,115,108,105,100,101,114,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,110,111,117,105,115,108,105,100,101,114,95,100,105,115,116,95,110,111,117,105,115,108,105,100,101,114,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,45,106,115,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,45,106,115,46,106,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,83,105,122,101,83,108,105,100,101,114,92,34,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,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,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,92,34,115,105,122,101,83,108,105,100,101,114,92,34,41,59,92,110,32,32,32,32,99,111,110,115,116,32,115,108,105,100,101,114,32,61,32,110,111,117,105,115,108,105,100,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,46,99,114,101,97,116,101,40,101,108,101,109,44,32,123,92,110,32,32,32,32,32,32,115,116,97,114,116,58,32,91,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,122,101,77,105,110,32,63,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,122,101,77,105,110,32,58,32,48,44,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,122,101,77,97,120,32,63,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,122,101,77,97,120,32,58,32,49,48,48,48,32,42,32,49,48,48,48,32,42,32,53,48,48,48,48,93,44,92,110,32,32,32,32,32,32,116,111,111,108,116,105,112,115,58,32,91,116,114,117,101,44,32,116,114,117,101,93,44,92,110,32,32,32,32,32,32,98,101,104,97,118,105,111,117,114,58,32,92,34,100,114,97,103,45,116,97,112,92,34,44,92,110,32,32,32,32,32,32,99,111,110,110,101,99,116,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,114,97,110,103,101,58,32,123,92,110,32,32,32,32,32,32,32,32,39,109,105,110,39,58,32,48,44,92,110,32,32,32,32,32,32,32,32,92,34,49,48,37,92,34,58,32,49,48,48,48,32,42,32,49,48,48,48,44,92,110,32,32,32,32,32,32,32,32,92,34,50,48,37,92,34,58,32,49,48,48,48,32,42,32,49,48,48,48,32,42,32,49,48,44,92,110,32,32,32,32,32,32,32,32,92,34,53,48,37,92,34,58,32,49,48,48,48,32,42,32,49,48,48,48,32,42,32,53,48,48,48,44,92,110,32,32,32,32,32,32,32,32,92,34,109,97,120,92,34,58,32,49,48,48,48,32,42,32,49,48,48,48,32,42,32,53,48,48,48,48,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,102,111,114,109,97,116,58,32,123,92,110,32,32,32,32,32,32,32,32,116,111,58,32,120,32,61,62,32,120,32,62,61,32,49,48,48,48,32,42,32,49,48,48,48,32,42,32,53,48,48,48,48,32,63,32,92,34,53,48,71,43,92,34,32,58,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,104,117,109,97,110,70,105,108,101,83,105,122,101,41,40,77,97,116,104,46,114,111,117,110,100,40,120,41,41,44,92,110,32,32,32,32,32,32,32,32,102,114,111,109,58,32,120,32,61,62,32,120,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,40,48,44,95,117,116,105,108,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,109,101,114,103,101,84,111,111,108,116,105,112,115,41,40,101,108,101,109,44,32,49,48,44,32,92,34,32,45,32,92,34,41,59,92,110,32,32,32,32,101,108,101,109,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,39,46,110,111,85,105,45,99,111,110,110,101,99,116,39,41,91,48,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,92,34,115,108,105,100,101,114,45,99,111,108,111,114,48,92,34,41,59,92,110,32,32,32,32,115,108,105,100,101,114,46,111,110,40,92,34,115,101,116,92,34,44,32,40,118,97,108,117,101,115,44,32,104,97,110,100,108,101,44,32,117,110,101,110,99,111,100,101,100,41,32,61,62,32,123,92,110,32,32,32,32,32,32,105,102,32,40,104,97,110,100,108,101,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,83,105,122,101,77,105,110,92,34,44,32,117,110,101,110,99,111,100,101,100,91,48,93,32,61,61,61,32,48,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,77,97,116,104,46,114,111,117,110,100,40,117,110,101,110,99,111,100,101,100,91,48,93,41,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,83,105,122,101,77,97,120,92,34,44,32,117,110,101,110,99,111,100,101,100,91,49,93,32,62,61,32,49,48,48,48,32,42,32,49,48,48,48,32,42,32,53,48,48,48,48,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,77,97,116,104,46,114,111,117,110,100,40,117,110,101,110,99,111,100,101,100,91,49,93,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,83,111,114,116,83,101,108,101,99,116,92,34,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,115,111,114,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,111,114,116,77,111,100,101,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,111,110,83,101,108,101,99,116,40,115,111,114,116,77,111,100,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,111,114,116,77,111,100,101,32,61,61,61,32,92,34,114,97,110,100,111,109,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,83,101,101,100,92,34,44,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,110,100,111,109,83,101,101,100,41,40,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,83,111,114,116,77,111,100,101,92,34,44,32,115,111,114,116,77,111,100,101,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,45,99,111,108,111,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,99,111,108,111,114,47,100,105,115,116,47,118,117,101,45,99,111,108,111,114,46,109,105,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,118,117,101,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,115,105,109,112,108,101,95,115,117,103,103,101,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,100,105,115,116,47,101,115,54,46,106,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,92,34,84,119,105,116,116,101,114,67,111,108,111,114,80,105,99,107,101,114,92,34,58,32,118,117,101,95,99,111,108,111,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,84,119,105,116,116,101,114,44,92,110,32,32,32,32,86,117,101,83,105,109,112,108,101,83,117,103,103,101,115,116,58,32,118,117,101,95,115,105,109,112,108,101,95,115,117,103,103,101,115,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,104,105,116,92,34,93,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,115,104,111,119,65,100,100,66,117,116,116,111,110,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,115,104,111,119,77,111,100,97,108,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,116,97,103,84,101,120,116,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,99,111,108,111,114,58,32,123,92,110,32,32,32,32,32,32,32,32,104,101,120,58,32,92,34,35,101,48,101,48,101,48,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,116,97,103,72,111,118,101,114,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,92,34,117,105,84,97,103,72,111,118,101,114,92,34,93,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,104,117,109,97,110,70,105,108,101,83,105,122,101,58,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,104,117,109,97,110,70,105,108,101,83,105,122,101,44,92,110,32,32,32,32,103,101,116,83,117,103,103,101,115,116,105,111,110,87,105,116,104,111,117,116,81,117,101,114,121,80,114,101,102,105,120,40,115,117,103,103,101,115,116,105,111,110,44,32,113,117,101,114,121,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,117,103,103,101,115,116,105,111,110,46,105,100,46,115,108,105,99,101,40,113,117,101,114,121,46,108,101,110,103,116,104,44,32,45,56,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,66,103,40,115,117,103,103,101,115,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,117,103,103,101,115,116,105,111,110,46,105,100,46,115,108,105,99,101,40,45,55,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,70,103,40,115,117,103,103,101,115,116,105,111,110,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,108,117,109,41,40,115,117,103,103,101,115,116,105,111,110,46,105,100,46,115,108,105,99,101,40,45,55,41,41,32,62,32,53,48,32,63,32,92,34,35,48,48,48,92,34,32,58,32,92,34,35,102,102,102,92,34,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,84,97,103,84,101,120,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,114,101,102,115,46,115,117,103,103,101,115,116,46,99,108,101,97,114,83,117,103,103,101,115,116,105,111,110,115,40,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,118,97,108,117,101,32,61,61,61,32,92,34,115,116,114,105,110,103,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,97,103,84,101,120,116,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,116,104,105,115,46,99,111,108,111,114,32,61,32,123,92,110,32,32,32,32,32,32,32,32,104,101,120,58,32,92,34,35,92,34,32,43,32,118,97,108,117,101,46,105,100,46,115,112,108,105,116,40,92,34,35,92,34,41,91,49,93,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,116,104,105,115,46,116,97,103,84,101,120,116,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,97,100,103,101,67,108,97,115,115,40,116,97,103,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,96,98,97,100,103,101,45,36,123,116,97,103,46,115,116,121,108,101,125,96,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,97,100,103,101,83,116,121,108,101,40,116,97,103,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,116,97,103,46,98,103,44,92,110,32,32,32,32,32,32,32,32,99,111,108,111,114,58,32,116,97,103,46,102,103,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,84,97,103,72,111,118,101,114,40,116,97,103,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,97,103,46,117,115,101,114,84,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,85,105,84,97,103,72,111,118,101,114,92,34,44,32,116,97,103,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,84,97,103,76,101,97,118,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,85,105,84,97,103,72,111,118,101,114,92,34,44,32,110,117,108,108,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,84,97,103,68,101,108,101,116,101,67,108,105,99,107,40,116,97,103,44,32,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,104,105,116,46,95,116,97,103,115,32,61,32,116,104,105,115,46,104,105,116,46,95,116,97,103,115,46,102,105,108,116,101,114,40,116,32,61,62,32,116,32,33,61,61,32,116,97,103,41,59,92,110,32,32,32,32,32,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,100,101,108,101,116,101,84,97,103,40,116,97,103,46,114,97,119,84,101,120,116,44,32,116,104,105,115,46,104,105,116,41,46,116,104,101,110,40,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,47,47,116,111,97,115,116,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,98,117,115,85,112,100,97,116,101,87,97,108,108,73,116,101,109,115,92,34,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,98,117,115,85,112,100,97,116,101,84,97,103,115,92,34,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,97,103,65,100,100,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,77,111,100,97,108,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,97,118,101,84,97,103,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,116,97,103,84,101,120,116,46,105,100,46,105,110,99,108,117,100,101,115,40,92,34,35,92,34,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,98,118,84,111,97,115,116,46,116,111,97,115,116,40,116,104,105,115,46,36,116,40,92,34,116,111,97,115,116,46,105,110,118,97,108,105,100,84,97,103,92,34,41,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,116,104,105,115,46,36,116,40,92,34,116,111,97,115,116,46,105,110,118,97,108,105,100,84,97,103,84,105,116,108,101,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,110,111,65,117,116,111,72,105,100,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,111,97,115,116,101,114,58,32,92,34,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,104,101,97,100,101,114,67,108,97,115,115,58,32,92,34,116,111,97,115,116,45,104,101,97,100,101,114,45,101,114,114,111,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,98,111,100,121,67,108,97,115,115,58,32,92,34,116,111,97,115,116,45,98,111,100,121,45,101,114,114,111,114,92,34,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,108,101,116,32,116,97,103,32,61,32,116,104,105,115,46,116,97,103,84,101,120,116,46,105,100,32,43,32,116,104,105,115,46,99,111,108,111,114,46,104,101,120,46,114,101,112,108,97,99,101,40,92,34,35,92,34,44,32,92,34,46,35,92,34,41,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,117,115,101,114,84,97,103,115,32,61,32,116,104,105,115,46,104,105,116,46,95,116,97,103,115,46,102,105,108,116,101,114,40,116,32,61,62,32,116,46,117,115,101,114,84,97,103,41,59,92,110,32,32,32,32,32,32,105,102,32,40,117,115,101,114,84,97,103,115,46,102,105,110,100,40,116,32,61,62,32,116,46,114,97,119,84,101,120,116,32,61,61,61,32,116,97,103,41,32,33,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,98,118,84,111,97,115,116,46,116,111,97,115,116,40,116,104,105,115,46,36,116,40,92,34,116,111,97,115,116,46,100,117,112,101,84,97,103,92,34,41,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,116,104,105,115,46,36,116,40,92,34,116,111,97,115,116,46,100,117,112,101,84,97,103,84,105,116,108,101,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,110,111,65,117,116,111,72,105,100,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,111,97,115,116,101,114,58,32,92,34,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,104,101,97,100,101,114,67,108,97,115,115,58,32,92,34,116,111,97,115,116,45,104,101,97,100,101,114,45,101,114,114,111,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,98,111,100,121,67,108,97,115,115,58,32,92,34,116,111,97,115,116,45,98,111,100,121,45,101,114,114,111,114,92,34,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,116,104,105,115,46,104,105,116,46,95,116,97,103,115,46,112,117,115,104,40,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,99,114,101,97,116,101,85,115,101,114,84,97,103,40,116,97,103,41,41,59,92,110,32,32,32,32,32,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,115,97,118,101,84,97,103,40,116,97,103,44,32,116,104,105,115,46,104,105,116,41,46,116,104,101,110,40,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,97,103,84,101,120,116,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,77,111,100,97,108,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,98,117,115,85,112,100,97,116,101,87,97,108,108,73,116,101,109,115,92,34,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,98,117,115,85,112,100,97,116,101,84,97,103,115,92,34,41,59,92,110,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,116,111,97,115,116,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,92,110,32,32,32,32,97,115,121,110,99,32,115,117,103,103,101,115,116,84,97,103,40,116,101,114,109,41,32,123,92,110,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,92,110,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,116,104,105,115,46,103,101,116,84,97,103,67,104,111,105,99,101,115,40,116,101,114,109,41,59,92,110,32,32,32,32,32,32,108,101,116,32,109,97,116,99,104,101,115,32,61,32,91,93,59,92,110,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,92,110,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,92,110,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,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,116,99,104,101,115,46,115,111,114,116,40,41,46,109,97,112,40,109,97,116,99,104,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,109,97,116,99,104,46,115,112,108,105,116,40,92,34,46,92,34,41,46,115,108,105,99,101,40,48,44,32,45,49,41,46,106,111,105,110,40,92,34,46,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,109,97,116,99,104,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,84,97,103,67,104,111,105,99,101,115,40,112,114,101,102,105,120,41,32,123,92,110,32,32,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,92,110,32,32,32,32,32,32,32,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,115,81,117,101,114,121,40,123,92,110,32,32,32,32,32,32,32,32,32,32,115,117,103,103,101,115,116,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,102,105,120,58,32,112,114,101,102,105,120,44,92,110,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,92,34,115,117,103,103,101,115,116,45,116,97,103,92,34,44,92,110,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,92,110,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,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,114,101,115,117,108,116,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,112,91,92,34,115,117,103,103,101,115,116,92,34,93,91,92,34,116,97,103,92,34,93,91,48,93,91,92,34,111,112,116,105,111,110,115,92,34,93,46,109,97,112,40,111,112,116,32,61,62,32,111,112,116,91,92,34,95,115,111,117,114,99,101,92,34,93,91,92,34,116,97,103,92,34,93,41,46,102,111,114,69,97,99,104,40,116,97,103,115,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,102,111,114,69,97,99,104,40,116,97,103,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,116,32,61,32,116,97,103,46,115,108,105,99,101,40,48,44,32,45,56,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,114,101,115,117,108,116,46,102,105,110,100,40,120,32,61,62,32,120,46,115,108,105,99,101,40,48,44,32,45,56,41,32,61,61,61,32,116,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,116,97,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,103,101,116,80,97,116,104,115,40,114,101,115,117,108,116,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,105,110,115,112,105,114,101,45,116,114,101,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,105,110,115,112,105,114,101,95,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,100,105,115,116,95,105,110,115,112,105,114,101,95,116,114,101,101,95,108,105,103,104,116,95,109,105,110,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,108,105,103,104,116,46,109,105,110,46,99,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,100,105,115,116,47,105,110,115,112,105,114,101,45,116,114,101,101,45,108,105,103,104,116,46,109,105,110,46,99,115,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,100,105,115,116,95,105,110,115,112,105,114,101,95,116,114,101,101,95,108,105,103,104,116,95,109,105,110,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,100,105,115,116,95,105,110,115,112,105,114,101,95,116,114,101,101,95,108,105,103,104,116,95,109,105,110,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,114,101,115,101,116,83,116,97,116,101,40,110,111,100,101,41,32,123,92,110,32,32,110,111,100,101,46,95,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,118,97,108,44,32,112,114,111,112,41,32,123,92,110,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,112,114,111,112,44,32,118,97,108,41,59,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,112,114,111,112,44,32,118,97,108,117,101,44,32,118,101,114,98,44,32,110,111,100,101,44,32,100,101,101,112,41,32,123,92,110,32,32,105,102,32,40,110,111,100,101,46,115,116,97,116,101,40,112,114,111,112,41,32,33,61,61,32,118,97,108,117,101,41,32,123,92,110,32,32,32,32,110,111,100,101,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,92,110,32,32,32,32,105,102,32,40,110,111,100,101,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,32,38,38,32,118,101,114,98,32,61,61,61,32,39,114,101,115,116,111,114,101,100,39,41,32,123,92,110,32,32,32,32,32,32,114,101,115,101,116,83,116,97,116,101,40,110,111,100,101,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,110,111,100,101,46,115,116,97,116,101,40,112,114,111,112,44,32,118,97,108,117,101,41,59,92,110,32,32,32,32,110,111,100,101,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,39,32,43,32,118,101,114,98,44,32,110,111,100,101,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,105,102,32,40,100,101,101,112,32,38,38,32,110,111,100,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,32,123,92,110,32,32,32,32,32,32,110,111,100,101,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,32,40,99,104,105,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,112,114,111,112,44,32,118,97,108,117,101,44,32,118,101,114,98,44,32,99,104,105,108,100,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,110,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,59,92,110,32,32,32,32,110,111,100,101,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,110,111,100,101,59,92,110,125,92,110,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,92,110,32,32,99,111,110,115,116,32,116,97,103,115,32,61,32,116,97,103,46,115,112,108,105,116,40,92,34,46,92,34,41,59,92,110,32,32,99,111,110,115,116,32,99,104,105,108,100,32,61,32,123,92,110,32,32,32,32,105,100,58,32,105,100,44,92,110,32,32,32,32,99,111,117,110,116,58,32,99,111,117,110,116,44,92,110,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,92,110,32,32,32,32,110,97,109,101,58,32,116,97,103,115,91,48,93,44,92,110,32,32,32,32,99,104,105,108,100,114,101,110,58,32,91,93,44,92,110,32,32,32,32,47,47,32,79,118,101,114,119,114,105,116,101,32,98,97,115,101,32,102,117,110,99,116,105,111,110,115,92,110,32,32,32,32,98,108,117,114,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,110,111,111,112,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,116,97,116,101,40,92,34,115,101,108,101,99,116,101,100,92,34,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,104,101,99,107,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,101,115,101,108,101,99,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,116,97,116,101,40,92,34,115,101,108,101,99,116,101,100,92,34,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,117,110,99,104,101,99,107,40,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,110,99,104,101,99,107,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,99,104,101,99,107,101,100,39,44,32,102,97,108,115,101,44,32,39,117,110,99,104,101,99,107,101,100,39,44,32,116,104,105,115,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,116,97,116,101,40,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,104,101,99,107,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,99,104,101,99,107,101,100,39,44,32,116,114,117,101,44,32,39,99,104,101,99,107,101,100,39,44,32,116,104,105,115,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,32,123,92,110,32,32,32,32,32,32,32,32,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,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,92,110,32,32,32,32,125,92,110,32,32,125,59,92,110,32,32,108,101,116,32,102,111,117,110,100,32,61,32,102,97,108,115,101,59,92,110,32,32,109,97,112,46,102,111,114,69,97,99,104,40,110,111,100,101,32,61,62,32,123,92,110,32,32,32,32,105,102,32,40,110,111,100,101,46,110,97,109,101,32,61,61,61,32,99,104,105,108,100,46,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,102,111,117,110,100,32,61,32,116,114,117,101,59,92,110,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,92,110,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,92,34,46,92,34,41,44,32,105,100,44,32,99,111,117,110,116,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,83,97,109,101,32,110,97,109,101,44,32,100,105,102,102,101,114,101,110,116,32,99,111,108,111,114,92,110,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,92,34,70,73,88,77,69,58,32,68,117,112,108,105,99,97,116,101,32,116,97,103,63,92,34,41,59,92,110,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,116,114,97,99,101,40,110,111,100,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,105,102,32,40,33,102,111,117,110,100,41,32,123,92,110,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,92,110,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,92,34,46,92,34,41,44,32,105,100,44,32,99,111,117,110,116,41,59,92,110,32,32,32,32,32,32,109,97,112,46,112,117,115,104,40,99,104,105,108,100,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,109,97,112,46,112,117,115,104,40,99,104,105,108,100,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,84,97,103,80,105,99,107,101,114,92,34,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,115,104,111,119,83,101,97,114,99,104,66,97,114,92,34,93,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,116,97,103,84,114,101,101,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,108,111,97,100,101,100,70,114,111,109,65,114,103,115,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,102,105,108,116,101,114,58,32,92,34,92,34,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,109,117,116,97,116,105,111,110,32,61,62,32,123,92,110,32,32,32,32,32,32,105,102,32,40,109,117,116,97,116,105,111,110,46,116,121,112,101,32,61,61,61,32,92,34,115,101,116,85,105,77,105,109,101,77,97,112,92,34,32,38,38,32,116,104,105,115,46,116,97,103,84,114,101,101,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,110,105,116,105,97,108,105,122,101,84,114,101,101,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,117,112,100,97,116,101,84,114,101,101,40,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,109,117,116,97,116,105,111,110,46,116,121,112,101,32,61,61,61,32,92,34,98,117,115,85,112,100,97,116,101,84,97,103,115,92,34,41,32,123,92,110,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,116,104,105,115,46,117,112,100,97,116,101,84,114,101,101,44,32,50,48,48,48,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,111,110,70,105,108,116,101,114,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,102,105,108,116,101,114,32,61,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,116,97,103,84,114,101,101,46,115,101,97,114,99,104,40,118,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,110,105,116,105,97,108,105,122,101,84,114,101,101,40,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,116,97,103,77,97,112,32,61,32,91,93,59,92,110,32,32,32,32,32,32,116,104,105,115,46,116,97,103,84,114,101,101,32,61,32,110,101,119,32,40,105,110,115,112,105,114,101,95,116,114,101,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,41,40,123,92,110,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,109,111,100,101,58,32,92,34,99,104,101,99,107,98,111,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,97,117,116,111,68,101,115,101,108,101,99,116,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,99,104,101,99,107,98,111,120,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,100,97,116,97,58,32,116,97,103,77,97,112,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,110,101,119,32,40,105,110,115,112,105,114,101,95,116,114,101,101,95,100,111,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,40,41,41,40,116,104,105,115,46,116,97,103,84,114,101,101,44,32,123,92,110,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,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,116,97,103,84,114,101,101,46,111,110,40,92,34,110,111,100,101,46,115,116,97,116,101,46,99,104,97,110,103,101,100,92,34,44,32,116,104,105,115,46,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,112,100,97,116,101,84,114,101,101,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,114,101,109,101,109,98,101,114,32,119,104,105,99,104,32,116,97,103,115,32,97,114,101,32,115,101,108,101,99,116,101,100,32,97,110,100,32,114,101,115,116,111,114,101,63,92,110,32,32,32,32,32,32,99,111,110,115,116,32,116,97,103,77,97,112,32,61,32,91,93,59,92,110,32,32,32,32,32,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,103,101,116,84,97,103,115,40,41,46,116,104,101,110,40,116,97,103,115,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,116,97,103,115,46,102,111,114,69,97,99,104,40,116,97,103,32,61,62,32,97,100,100,84,97,103,40,116,97,103,77,97,112,44,32,116,97,103,46,105,100,44,32,116,97,103,46,105,100,44,32,116,97,103,46,99,111,117,110,116,41,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,97,103,84,114,101,101,46,114,101,109,111,118,101,65,108,108,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,116,97,103,84,114,101,101,46,97,100,100,78,111,100,101,115,40,116,97,103,77,97,112,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,84,97,103,115,46,108,101,110,103,116,104,32,62,32,48,32,38,38,32,33,116,104,105,115,46,108,111,97,100,101,100,70,114,111,109,65,114,103,115,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,84,97,103,115,46,102,111,114,69,97,99,104,40,109,105,109,101,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,116,97,103,84,114,101,101,46,110,111,100,101,40,109,105,109,101,41,46,115,101,108,101,99,116,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,97,100,101,100,70,114,111,109,65,114,103,115,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,110,111,100,101,44,32,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,101,32,61,61,61,32,92,34,105,110,100,101,116,101,114,109,105,110,97,116,101,92,34,32,124,124,32,101,32,61,61,61,32,92,34,99,111,108,108,97,112,115,101,100,92,34,32,124,124,32,101,32,61,61,61,32,39,114,101,110,100,101,114,101,100,39,32,124,124,32,101,32,61,61,61,32,92,34,102,111,99,117,115,101,100,92,34,32,124,124,32,101,32,61,61,61,32,92,34,109,97,116,99,104,101,100,92,34,32,124,124,32,101,32,61,61,61,32,92,34,104,105,100,100,101,110,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,83,101,108,101,99,116,101,100,84,97,103,115,92,34,44,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,103,101,116,83,101,108,101,99,116,101,100,84,114,101,101,78,111,100,101,115,41,40,116,104,105,115,46,116,97,103,84,114,101,101,41,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,92,34,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,100,111,99,92,34,44,32,92,34,112,114,111,103,114,101,115,115,92,34,93,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,112,101,114,99,101,110,116,80,114,111,103,114,101,115,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,77,97,116,104,46,109,105,110,40,77,97,116,104,46,109,97,120,40,116,104,105,115,46,112,114,111,103,114,101,115,115,32,42,32,49,48,48,44,32,48,41,44,32,49,48,48,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,67,108,105,112,98,111,97,114,100,73,99,111,110,92,34,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,68,101,98,117,103,73,99,111,110,92,34,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,70,105,108,101,73,99,111,110,92,34,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,71,101,97,114,73,99,111,110,92,34,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,76,97,110,103,117,97,103,101,73,99,111,110,92,34,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,110,97,109,101,58,32,92,34,83,105,115,116,50,73,99,111,110,92,34,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,120,47,100,105,115,116,47,118,117,101,120,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,101,98,117,103,73,110,102,111,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,105,99,111,110,115,95,71,101,97,114,73,99,111,110,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,105,99,111,110,115,95,76,97,110,103,117,97,103,101,73,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,76,97,110,103,117,97,103,101,73,99,111,110,58,32,95,99,111,109,112,111,110,101,110,116,115,95,105,99,111,110,115,95,76,97,110,103,117,97,103,101,73,99,111,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,71,101,97,114,73,99,111,110,58,32,95,99,111,109,112,111,110,101,110,116,115,95,105,99,111,110,115,95,71,101,97,114,73,99,111,110,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,68,101,98,117,103,73,110,102,111,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,101,98,117,103,73,110,102,111,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,80,114,101,108,111,97,100,101,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,97,100,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,99,111,110,102,105,103,76,111,97,100,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,108,97,110,103,79,112,116,105,111,110,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,101,110,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,108,97,110,103,46,101,110,92,34,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,102,114,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,108,97,110,103,46,102,114,92,34,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,122,104,45,67,78,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,108,97,110,103,46,122,104,45,67,78,92,34,41,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,113,117,101,114,121,77,111,100,101,79,112,116,105,111,110,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,115,105,109,112,108,101,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,113,117,101,114,121,77,111,100,101,46,115,105,109,112,108,101,92,34,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,97,100,118,97,110,99,101,100,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,113,117,101,114,121,77,111,100,101,46,97,100,118,97,110,99,101,100,92,34,41,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,100,105,115,112,108,97,121,77,111,100,101,79,112,116,105,111,110,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,103,114,105,100,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,100,105,115,112,108,97,121,77,111,100,101,46,103,114,105,100,92,34,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,108,105,115,116,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,100,105,115,112,108,97,121,77,111,100,101,46,108,105,115,116,92,34,41,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,99,111,108,117,109,110,115,79,112,116,105,111,110,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,97,117,116,111,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,99,111,108,117,109,110,115,46,97,117,116,111,92,34,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,49,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,49,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,50,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,50,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,51,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,51,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,52,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,52,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,53,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,53,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,54,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,54,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,55,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,55,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,56,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,56,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,57,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,57,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,49,48,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,49,48,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,49,49,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,49,49,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,49,50,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,49,50,92,34,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,84,121,112,101,79,112,116,105,111,110,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,99,97,115,99,97,100,101,100,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,116,114,101,101,109,97,112,84,121,112,101,46,99,97,115,99,97,100,101,100,92,34,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,102,108,97,116,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,116,114,101,101,109,97,112,84,121,112,101,46,102,108,97,116,92,34,41,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,84,105,108,105,110,103,79,112,116,105,111,110,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,98,105,110,97,114,121,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,116,114,101,101,109,97,112,84,105,108,105,110,103,46,98,105,110,97,114,121,92,34,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,115,113,117,97,114,105,102,121,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,116,114,101,101,109,97,112,84,105,108,105,110,103,46,115,113,117,97,114,105,102,121,92,34,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,115,108,105,99,101,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,116,114,101,101,109,97,112,84,105,108,105,110,103,46,115,108,105,99,101,92,34,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,100,105,99,101,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,116,114,101,101,109,97,112,84,105,108,105,110,103,46,100,105,99,101,92,34,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,115,108,105,99,101,68,105,99,101,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,116,114,101,101,109,97,112,84,105,108,105,110,103,46,115,108,105,99,101,68,105,99,101,92,34,41,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,83,105,122,101,79,112,116,105,111,110,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,115,109,97,108,108,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,116,114,101,101,109,97,112,83,105,122,101,46,115,109,97,108,108,92,34,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,109,101,100,105,117,109,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,116,114,101,101,109,97,112,83,105,122,101,46,109,101,100,105,117,109,92,34,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,108,97,114,103,101,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,116,114,101,101,109,97,112,83,105,122,101,46,108,97,114,103,101,92,34,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,120,45,108,97,114,103,101,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,116,114,101,101,109,97,112,83,105,122,101,46,120,76,97,114,103,101,92,34,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,120,120,45,108,97,114,103,101,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,116,114,101,101,109,97,112,83,105,122,101,46,120,120,76,97,114,103,101,92,34,41,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,47,47,32,123,118,97,108,117,101,58,32,92,34,99,117,115,116,111,109,92,34,44,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,116,114,101,101,109,97,112,83,105,122,101,46,99,117,115,116,111,109,92,34,41,125,44,92,110,32,32,32,32,32,32,93,44,92,110,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,67,111,108,111,114,79,112,116,105,111,110,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,80,117,66,117,71,110,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,80,117,114,112,108,101,45,66,108,117,101,45,71,114,101,101,110,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,80,117,82,100,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,80,117,114,112,108,101,45,82,101,100,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,80,117,66,117,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,80,117,114,112,108,101,45,66,108,117,101,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,89,108,79,114,66,114,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,89,101,108,108,111,119,45,79,114,97,110,103,101,45,66,114,111,119,110,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,89,108,79,114,82,100,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,89,101,108,108,111,119,45,79,114,97,110,103,101,45,82,101,100,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,89,108,71,110,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,89,101,108,108,111,119,45,71,114,101,101,110,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,89,108,71,110,66,117,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,89,101,108,108,111,119,45,71,114,101,101,110,45,66,108,117,101,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,80,108,97,115,109,97,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,80,108,97,115,109,97,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,77,97,103,109,97,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,77,97,103,109,97,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,73,110,102,101,114,110,111,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,73,110,102,101,114,110,111,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,86,105,114,105,100,105,115,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,86,105,114,105,100,105,115,92,34,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,84,117,114,98,111,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,92,34,84,117,114,98,111,92,34,92,110,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,116,104,101,109,101,79,112,116,105,111,110,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,108,105,103,104,116,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,116,104,101,109,101,46,108,105,103,104,116,92,34,41,92,110,32,32,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,92,34,98,108,97,99,107,92,34,44,92,110,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,104,105,115,46,36,116,40,92,34,116,104,101,109,101,46,98,108,97,99,107,92,34,41,92,110,32,32,32,32,32,32,125,93,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,112,71,101,116,116,101,114,115,41,40,91,92,34,111,112,116,84,104,101,109,101,92,34,44,32,92,34,111,112,116,68,105,115,112,108,97,121,92,34,44,32,92,34,111,112,116,67,111,108,117,109,110,115,92,34,44,32,92,34,111,112,116,72,105,103,104,108,105,103,104,116,92,34,44,32,92,34,111,112,116,70,117,122,122,121,92,34,44,32,92,34,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,92,34,44,32,92,34,111,112,116,83,117,103,103,101,115,116,80,97,116,104,92,34,44,32,92,34,111,112,116,70,114,97,103,109,101,110,116,83,105,122,101,92,34,44,32,92,34,111,112,116,81,117,101,114,121,77,111,100,101,92,34,44,32,92,34,111,112,116,84,114,101,101,109,97,112,84,121,112,101,92,34,44,32,92,34,111,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,92,34,44,32,92,34,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,92,34,44,32,92,34,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,92,34,44,32,92,34,111,112,116,84,114,101,101,109,97,112,83,105,122,101,92,34,44,32,92,34,111,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,92,34,44,32,92,34,111,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,92,34,44,32,92,34,111,112,116,82,101,115,117,108,116,83,105,122,101,92,34,44,32,92,34,111,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,92,34,44,32,92,34,111,112,116,76,97,110,103,92,34,44,32,92,34,111,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,92,34,44,32,92,34,111,112,116,72,105,100,101,76,101,103,97,99,121,92,34,44,32,92,34,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,92,34,44,32,92,34,111,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,92,34,44,32,92,34,111,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,92,34,44,32,92,34,111,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,92,34,44,32,92,34,111,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,92,34,93,41,44,92,110,32,32,32,32,99,108,105,101,110,116,87,105,100,116,104,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,109,117,116,97,116,105,111,110,32,61,62,32,123,92,110,32,32,32,32,32,32,105,102,32,40,109,117,116,97,116,105,111,110,46,116,121,112,101,46,115,116,97,114,116,115,87,105,116,104,40,92,34,115,101,116,79,112,116,92,34,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,92,34,117,112,100,97,116,101,67,111,110,102,105,103,117,114,97,116,105,111,110,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,112,65,99,116,105,111,110,115,41,40,123,92,110,32,32,32,32,32,32,115,101,116,83,105,115,116,50,73,110,102,111,58,32,92,34,115,101,116,83,105,115,116,50,73,110,102,111,92,34,92,110,32,32,32,32,125,41,44,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,46,109,97,112,77,117,116,97,116,105,111,110,115,41,40,91,92,34,115,101,116,79,112,116,84,104,101,109,101,92,34,44,32,92,34,115,101,116,79,112,116,68,105,115,112,108,97,121,92,34,44,32,92,34,115,101,116,79,112,116,67,111,108,117,109,110,115,92,34,44,32,92,34,115,101,116,79,112,116,72,105,103,104,108,105,103,104,116,92,34,44,32,92,34,115,101,116,79,112,116,70,117,122,122,121,92,34,44,32,92,34,115,101,116,79,112,116,83,101,97,114,99,104,73,110,80,97,116,104,92,34,44,32,92,34,115,101,116,79,112,116,83,117,103,103,101,115,116,80,97,116,104,92,34,44,32,92,34,115,101,116,79,112,116,70,114,97,103,109,101,110,116,83,105,122,101,92,34,44,32,92,34,115,101,116,79,112,116,81,117,101,114,121,77,111,100,101,92,34,44,32,92,34,115,101,116,79,112,116,84,114,101,101,109,97,112,84,121,112,101,92,34,44,32,92,34,115,101,116,79,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,92,34,44,32,92,34,115,101,116,79,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,92,34,44,32,92,34,115,101,116,79,112,116,84,114,101,101,109,97,112,67,111,108,111,114,92,34,44,32,92,34,115,101,116,79,112,116,84,114,101,101,109,97,112,83,105,122,101,92,34,44,32,92,34,115,101,116,79,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,92,34,44,32,92,34,115,101,116,79,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,92,34,44,32,92,34,115,101,116,79,112,116,82,101,115,117,108,116,83,105,122,101,92,34,44,32,92,34,115,101,116,79,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,92,34,44,32,92,34,115,101,116,79,112,116,76,97,110,103,92,34,44,32,92,34,115,101,116,79,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,92,34,44,32,92,34,115,101,116,79,112,116,72,105,100,101,76,101,103,97,99,121,92,34,44,32,92,34,115,101,116,79,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,92,34,44,32,92,34,115,101,116,79,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,92,34,44,32,92,34,115,101,116,79,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,92,34,44,32,92,34,115,101,116,79,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,92,34,44,32,92,34,115,101,116,79,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,92,34,93,41,44,92,110,32,32,32,32,111,110,82,101,115,101,116,67,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,108,111,99,97,108,83,116,111,114,97,103,101,46,114,101,109,111,118,101,73,116,101,109,40,92,34,115,105,115,116,50,95,99,111,110,102,105,103,117,114,97,116,105,111,110,92,34,41,59,92,110,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,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,73,110,102,111,84,97,98,108,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,92,34,70,105,108,101,80,97,103,101,92,34,44,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,70,117,108,108,84,104,117,109,98,110,97,105,108,58,32,95,99,111,109,112,111,110,101,110,116,115,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,80,114,101,108,111,97,100,101,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,73,110,102,111,84,97,98,108,101,58,32,95,99,111,109,112,111,110,101,110,116,115,95,73,110,102,111,84,97,98,108,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,97,100,105,110,103,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,102,111,117,110,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,100,111,99,58,32,110,117,108,108,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,101,120,116,58,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,46,101,120,116,44,92,110,32,32,32,32,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,119,105,110,100,111,119,46,111,112,101,110,40,96,47,102,47,36,123,116,104,105,115,46,100,111,99,46,95,105,100,125,96,44,32,92,34,95,98,108,97,110,107,92,34,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,105,110,100,66,121,67,117,115,116,111,109,70,105,101,108,100,40,102,105,101,108,100,44,32,105,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,98,111,111,108,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,117,115,116,58,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,102,105,101,108,100,93,58,32,105,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,93,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,105,110,100,66,121,73,100,40,105,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,98,111,111,108,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,117,115,116,58,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,95,105,100,92,34,58,32,105,100,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,93,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,105,110,100,66,121,78,97,109,101,40,110,97,109,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,98,111,111,108,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,117,115,116,58,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,110,97,109,101,92,34,58,32,110,97,109,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,93,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,108,101,116,32,113,117,101,114,121,32,61,32,110,117,108,108,59,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,98,121,73,100,41,32,123,92,110,32,32,32,32,32,32,113,117,101,114,121,32,61,32,116,104,105,115,46,102,105,110,100,66,121,73,100,40,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,98,121,73,100,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,98,121,78,97,109,101,41,32,123,92,110,32,32,32,32,32,32,113,117,101,114,121,32,61,32,116,104,105,115,46,102,105,110,100,66,121,78,97,109,101,40,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,98,121,78,97,109,101,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,98,121,32,38,38,32,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,113,41,32,123,92,110,32,32,32,32,32,32,113,117,101,114,121,32,61,32,116,104,105,115,46,102,105,110,100,66,121,67,117,115,116,111,109,70,105,101,108,100,40,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,98,121,44,32,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,113,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,113,117,101,114,121,41,32,123,92,110,32,32,32,32,32,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,115,81,117,101,114,121,40,113,117,101,114,121,41,46,116,104,101,110,40,114,101,115,117,108,116,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,101,115,117,108,116,46,104,105,116,115,46,104,105,116,115,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,102,111,117,110,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,100,111,99,32,61,32,114,101,115,117,108,116,46,104,105,116,115,46,104,105,116,115,91,48,93,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,102,111,117,110,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,97,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,97,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,116,104,105,115,46,102,111,117,110,100,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,51,84,114,101,101,109,97,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,51,77,105,109,101,66,97,114,67,111,117,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,51,77,105,109,101,66,97,114,83,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,92,34,41,59,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,47,47,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,68,51,77,105,109,101,66,97,114,83,105,122,101,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,51,77,105,109,101,66,97,114,83,105,122,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,68,51,77,105,109,101,66,97,114,67,111,117,110,116,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,51,77,105,109,101,66,97,114,67,111,117,110,116,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,68,51,84,114,101,101,109,97,112,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,51,84,114,101,101,109,97,112,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,80,114,101,108,111,97,100,101,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,97,100,105,110,103,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,101,120,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,105,110,100,105,99,101,115,58,32,91,93,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,105,110,100,101,120,79,112,116,105,111,110,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,46,109,97,112,40,105,100,120,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,105,100,120,46,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,105,100,120,46,105,100,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,103,101,116,83,105,115,116,50,73,110,102,111,40,41,46,116,104,101,110,40,100,97,116,97,32,61,62,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,105,110,100,105,99,101,115,32,61,32,100,97,116,97,46,105,110,100,105,99,101,115,59,92,110,32,32,32,32,32,32,116,104,105,115,46,108,111,97,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,48,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,109,97,105,110,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,109,97,105,110,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,116,117,112,65,117,116,104,48,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,116,117,112,65,117,116,104,48,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,98,101,108,95,112,111,108,121,102,105,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,108,105,98,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,98,97,98,101,108,95,112,111,108,121,102,105,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,95,98,97,98,101,108,95,112,111,108,121,102,105,108,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,109,117,116,97,116,105,111,110,111,98,115,101,114,118,101,114,95,115,104,105,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,109,117,116,97,116,105,111,110,111,98,115,101,114,118,101,114,45,115,104,105,109,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,109,117,116,97,116,105,111,110,111,98,115,101,114,118,101,114,45,115,104,105,109,47,100,105,115,116,47,109,117,116,97,116,105,111,110,111,98,115,101,114,118,101,114,46,109,105,110,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,109,117,116,97,116,105,111,110,111,98,115,101,114,118,101,114,95,115,104,105,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,109,117,116,97,116,105,111,110,111,98,115,101,114,118,101,114,95,115,104,105,109,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,108,117,103,105,110,115,95,98,111,111,116,115,116,114,97,112,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,108,117,103,105,110,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,112,108,117,103,105,110,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,65,112,112,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,65,112,112,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,65,112,112,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,114,111,117,116,101,114,32,42,47,32,92,34,46,47,115,114,99,47,114,111,117,116,101,114,47,105,110,100,101,120,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,111,114,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,111,114,101,32,42,47,32,92,34,46,47,115,114,99,47,115,116,111,114,101,47,105,110,100,101,120,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,105,49,56,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,45,105,49,56,110,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,105,49,56,110,47,100,105,115,116,47,118,117,101,45,105,49,56,110,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,105,49,56,110,95,109,101,115,115,97,103,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,105,49,56,110,47,109,101,115,115,97,103,101,115,32,42,47,32,92,34,46,47,115,114,99,47,105,49,56,110,47,109,101,115,115,97,103,101,115,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,108,117,103,105,110,115,95,97,117,116,104,48,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,112,108,117,103,105,110,115,47,97,117,116,104,48,32,42,47,32,92,34,46,47,115,114,99,47,112,108,117,103,105,110,115,47,97,117,116,104,48,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,45,114,111,117,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,114,111,117,116,101,114,47,100,105,115,116,47,118,117,101,45,114,111,117,116,101,114,46,101,115,109,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,99,111,110,102,105,103,46,112,114,111,100,117,99,116,105,111,110,84,105,112,32,61,32,102,97,108,115,101,59,92,110,102,117,110,99,116,105,111,110,32,115,101,116,117,112,65,117,116,104,48,40,100,111,109,97,105,110,44,32,99,108,105,101,110,116,73,100,44,32,97,117,100,105,101,110,99,101,41,32,123,92,110,32,32,40,48,44,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,115,101,116,85,115,101,65,117,116,104,48,41,40,116,114,117,101,41,59,92,110,32,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,117,115,101,40,95,112,108,117,103,105,110,115,95,97,117,116,104,48,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,46,65,117,116,104,48,80,108,117,103,105,110,44,32,123,92,110,32,32,32,32,100,111,109,97,105,110,44,92,110,32,32,32,32,99,108,105,101,110,116,73,100,44,92,110,32,32,32,32,97,117,100,105,101,110,99,101,44,92,110,32,32,32,32,111,110,82,101,100,105,114,101,99,116,67,97,108,108,98,97,99,107,58,32,97,112,112,83,116,97,116,101,32,61,62,32,123,125,92,110,32,32,125,41,59,92,110,125,92,110,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,112,114,111,116,111,116,121,112,101,46,36,97,117,116,104,32,61,32,110,117,108,108,59,92,110,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,99,111,110,102,105,103,46,112,114,111,100,117,99,116,105,111,110,84,105,112,32,61,32,102,97,108,115,101,59,92,110,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,117,115,101,40,118,117,101,95,105,49,56,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,117,115,101,40,118,117,101,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,99,111,110,115,116,32,105,49,56,110,32,61,32,110,101,119,32,118,117,101,95,105,49,56,110,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,123,92,110,32,32,108,111,99,97,108,101,58,32,92,34,101,110,92,34,44,92,110,32,32,109,101,115,115,97,103,101,115,58,32,95,105,49,56,110,95,109,101,115,115,97,103,101,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,125,41,59,92,110,110,101,119,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,123,92,110,32,32,114,111,117,116,101,114,58,32,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,115,116,111,114,101,58,32,95,115,116,111,114,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,105,49,56,110,44,92,110,32,32,114,101,110,100,101,114,58,32,104,32,61,62,32,104,40,95,65,112,112,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,125,41,46,36,109,111,117,110,116,40,92,34,35,97,112,112,92,34,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,109,97,105,110,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,112,108,117,103,105,110,115,47,97,117,116,104,48,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,112,108,117,103,105,110,115,47,97,117,116,104,48,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,65,117,116,104,48,80,108,117,103,105,110,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,65,117,116,104,48,80,108,117,103,105,110,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,73,110,115,116,97,110,99,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,73,110,115,116,97,110,99,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,117,115,101,65,117,116,104,48,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,117,115,101,65,117,116,104,48,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,97,117,116,104,48,95,97,117,116,104,48,95,115,112,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,97,117,116,104,48,47,97,117,116,104,48,45,115,112,97,45,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,97,117,116,104,48,47,97,117,116,104,48,45,115,112,97,45,106,115,47,100,105,115,116,47,97,117,116,104,48,45,115,112,97,45,106,115,46,112,114,111,100,117,99,116,105,111,110,46,101,115,109,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,47,42,42,32,68,101,102,105,110,101,32,97,32,100,101,102,97,117,108,116,32,97,99,116,105,111,110,32,116,111,32,112,101,114,102,111,114,109,32,97,102,116,101,114,32,97,117,116,104,101,110,116,105,99,97,116,105,111,110,32,42,47,92,110,99,111,110,115,116,32,68,69,70,65,85,76,84,95,82,69,68,73,82,69,67,84,95,67,65,76,76,66,65,67,75,32,61,32,40,41,32,61,62,32,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,114,101,112,108,97,99,101,83,116,97,116,101,40,123,125,44,32,100,111,99,117,109,101,110,116,46,116,105,116,108,101,44,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,112,97,116,104,110,97,109,101,41,59,92,110,108,101,116,32,105,110,115,116,97,110,99,101,59,92,110,92,110,47,42,42,32,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,105,110,115,116,97,110,99,101,32,111,102,32,116,104,101,32,83,68,75,32,42,47,92,110,99,111,110,115,116,32,103,101,116,73,110,115,116,97,110,99,101,32,61,32,40,41,32,61,62,32,105,110,115,116,97,110,99,101,59,92,110,92,110,47,42,42,32,67,114,101,97,116,101,115,32,97,110,32,105,110,115,116,97,110,99,101,32,111,102,32,116,104,101,32,65,117,116,104,48,32,83,68,75,46,32,73,102,32,111,110,101,32,104,97,115,32,97,108,114,101,97,100,121,32,98,101,101,110,32,99,114,101,97,116,101,100,44,32,105,116,32,114,101,116,117,114,110,115,32,116,104,97,116,32,105,110,115,116,97,110,99,101,32,42,47,92,110,99,111,110,115,116,32,117,115,101,65,117,116,104,48,32,61,32,40,123,92,110,32,32,100,111,109,97,105,110,44,92,110,32,32,99,108,105,101,110,116,73,100,44,92,110,32,32,97,117,100,105,101,110,99,101,44,92,110,32,32,111,110,82,101,100,105,114,101,99,116,67,97,108,108,98,97,99,107,32,61,32,68,69,70,65,85,76,84,95,82,69,68,73,82,69,67,84,95,67,65,76,76,66,65,67,75,44,92,110,32,32,114,101,100,105,114,101,99,116,85,114,105,32,61,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,111,114,105,103,105,110,92,110,125,41,32,61,62,32,123,92,110,32,32,105,102,32,40,105,110,115,116,97,110,99,101,41,32,114,101,116,117,114,110,32,105,110,115,116,97,110,99,101,59,92,110,92,110,32,32,47,47,32,84,104,101,32,39,105,110,115,116,97,110,99,101,39,32,105,115,32,115,105,109,112,108,121,32,97,32,86,117,101,32,111,98,106,101,99,116,92,110,32,32,105,110,115,116,97,110,99,101,32,61,32,110,101,119,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,123,92,110,32,32,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,108,111,97,100,105,110,103,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,117,115,101,114,58,32,123,125,44,92,110,32,32,32,32,32,32,32,32,97,117,116,104,48,67,108,105,101,110,116,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,112,111,112,117,112,79,112,101,110,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,101,114,114,111,114,58,32,110,117,108,108,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,32,32,47,42,42,32,65,117,116,104,101,110,116,105,99,97,116,101,115,32,116,104,101,32,117,115,101,114,32,117,115,105,110,103,32,97,32,112,111,112,117,112,32,119,105,110,100,111,119,32,42,47,92,110,32,32,32,32,32,32,97,115,121,110,99,32,108,111,103,105,110,87,105,116,104,80,111,112,117,112,40,111,112,116,105,111,110,115,44,32,99,111,110,102,105,103,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,112,111,112,117,112,79,112,101,110,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,108,111,103,105,110,87,105,116,104,80,111,112,117,112,40,111,112,116,105,111,110,115,44,32,99,111,110,102,105,103,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,117,115,101,114,32,61,32,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,103,101,116,85,115,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,32,61,32,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,101,114,114,111,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,101,114,114,111,114,32,61,32,101,59,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,101,115,108,105,110,116,45,100,105,115,97,98,108,101,45,110,101,120,116,45,108,105,110,101,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,101,41,59,92,110,32,32,32,32,32,32,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,112,111,112,117,112,79,112,101,110,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,117,115,101,114,32,61,32,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,103,101,116,85,115,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,47,42,42,32,72,97,110,100,108,101,115,32,116,104,101,32,99,97,108,108,98,97,99,107,32,119,104,101,110,32,108,111,103,103,105,110,103,32,105,110,32,117,115,105,110,103,32,97,32,114,101,100,105,114,101,99,116,32,42,47,92,110,32,32,32,32,32,32,97,115,121,110,99,32,104,97,110,100,108,101,82,101,100,105,114,101,99,116,67,97,108,108,98,97,99,107,40,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,97,100,105,110,103,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,104,97,110,100,108,101,82,101,100,105,114,101,99,116,67,97,108,108,98,97,99,107,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,117,115,101,114,32,61,32,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,103,101,116,85,115,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,101,114,114,111,114,32,61,32,110,117,108,108,59,92,110,32,32,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,101,114,114,111,114,32,61,32,101,59,92,110,32,32,32,32,32,32,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,97,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,47,42,42,32,65,117,116,104,101,110,116,105,99,97,116,101,115,32,116,104,101,32,117,115,101,114,32,117,115,105,110,103,32,116,104,101,32,114,101,100,105,114,101,99,116,32,109,101,116,104,111,100,32,42,47,92,110,32,32,32,32,32,32,108,111,103,105,110,87,105,116,104,82,101,100,105,114,101,99,116,40,111,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,108,111,103,105,110,87,105,116,104,82,101,100,105,114,101,99,116,40,111,41,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,47,42,42,32,82,101,116,117,114,110,115,32,97,108,108,32,116,104,101,32,99,108,97,105,109,115,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,32,42,47,92,110,32,32,32,32,32,32,103,101,116,73,100,84,111,107,101,110,67,108,97,105,109,115,40,111,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,103,101,116,73,100,84,111,107,101,110,67,108,97,105,109,115,40,111,41,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,47,42,42,32,82,101,116,117,114,110,115,32,116,104,101,32,97,99,99,101,115,115,32,116,111,107,101,110,46,32,73,102,32,116,104,101,32,116,111,107,101,110,32,105,115,32,105,110,118,97,108,105,100,32,111,114,32,109,105,115,115,105,110,103,44,32,97,32,110,101,119,32,111,110,101,32,105,115,32,114,101,116,114,105,101,118,101,100,32,42,47,92,110,32,32,32,32,32,32,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,40,111,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,40,111,41,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,47,42,42,32,71,101,116,115,32,116,104,101,32,97,99,99,101,115,115,32,116,111,107,101,110,32,117,115,105,110,103,32,97,32,112,111,112,117,112,32,119,105,110,100,111,119,32,42,47,92,110,92,110,32,32,32,32,32,32,103,101,116,84,111,107,101,110,87,105,116,104,80,111,112,117,112,40,111,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,103,101,116,84,111,107,101,110,87,105,116,104,80,111,112,117,112,40,111,41,59,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,47,42,42,32,76,111,103,115,32,116,104,101,32,117,115,101,114,32,111,117,116,32,97,110,100,32,114,101,109,111,118,101,115,32,116,104,101,105,114,32,115,101,115,115,105,111,110,32,111,110,32,116,104,101,32,97,117,116,104,111,114,105,122,97,116,105,111,110,32,115,101,114,118,101,114,32,42,47,92,110,32,32,32,32,32,32,108,111,103,111,117,116,40,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,108,111,103,111,117,116,40,123,92,110,32,32,32,32,32,32,32,32,32,32,108,111,103,111,117,116,80,97,114,97,109,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,84,111,58,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,111,114,105,103,105,110,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,47,42,42,32,85,115,101,32,116,104,105,115,32,108,105,102,101,99,121,99,108,101,32,109,101,116,104,111,100,32,116,111,32,105,110,115,116,97,110,116,105,97,116,101,32,116,104,101,32,83,68,75,32,99,108,105,101,110,116,32,42,47,92,110,32,32,32,32,97,115,121,110,99,32,99,114,101,97,116,101,100,40,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,114,101,97,116,101,32,97,32,110,101,119,32,105,110,115,116,97,110,99,101,32,111,102,32,116,104,101,32,83,68,75,32,99,108,105,101,110,116,32,117,115,105,110,103,32,109,101,109,98,101,114,115,32,111,102,32,116,104,101,32,103,105,118,101,110,32,111,112,116,105,111,110,115,32,111,98,106,101,99,116,92,110,32,32,32,32,32,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,32,61,32,97,119,97,105,116,32,40,48,44,95,97,117,116,104,48,95,97,117,116,104,48,95,115,112,97,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,99,114,101,97,116,101,65,117,116,104,48,67,108,105,101,110,116,41,40,123,92,110,32,32,32,32,32,32,32,32,100,111,109,97,105,110,58,32,100,111,109,97,105,110,44,92,110,32,32,32,32,32,32,32,32,99,108,105,101,110,116,73,100,58,32,99,108,105,101,110,116,73,100,44,92,110,32,32,32,32,32,32,32,32,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,100,105,114,101,99,116,95,117,114,105,58,32,114,101,100,105,114,101,99,116,85,114,105,44,92,110,32,32,32,32,32,32,32,32,32,32,97,117,100,105,101,110,99,101,58,32,97,117,100,105,101,110,99,101,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,116,114,121,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,102,32,116,104,101,32,117,115,101,114,32,105,115,32,114,101,116,117,114,110,105,110,103,32,116,111,32,116,104,101,32,97,112,112,32,97,102,116,101,114,32,97,117,116,104,101,110,116,105,99,97,116,105,111,110,46,46,92,110,32,32,32,32,32,32,32,32,105,102,32,40,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,115,101,97,114,99,104,46,105,110,99,108,117,100,101,115,40,39,99,111,100,101,61,39,41,32,38,38,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,115,101,97,114,99,104,46,105,110,99,108,117,100,101,115,40,39,115,116,97,116,101,61,39,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,104,97,110,100,108,101,32,116,104,101,32,114,101,100,105,114,101,99,116,32,97,110,100,32,114,101,116,114,105,101,118,101,32,116,111,107,101,110,115,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,112,112,83,116,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,125,32,61,32,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,104,97,110,100,108,101,82,101,100,105,114,101,99,116,67,97,108,108,98,97,99,107,40,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,101,114,114,111,114,32,61,32,110,117,108,108,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,116,105,102,121,32,115,117,98,115,99,114,105,98,101,114,115,32,116,104,97,116,32,116,104,101,32,114,101,100,105,114,101,99,116,32,99,97,108,108,98,97,99,107,32,104,97,115,32,104,97,112,112,101,110,101,100,44,32,112,97,115,115,105,110,103,32,116,104,101,32,97,112,112,83,116,97,116,101,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,40,117,115,101,102,117,108,32,102,111,114,32,114,101,116,114,105,101,118,105,110,103,32,97,110,121,32,112,114,101,45,97,117,116,104,101,110,116,105,99,97,116,105,111,110,32,115,116,97,116,101,41,92,110,32,32,32,32,32,32,32,32,32,32,111,110,82,101,100,105,114,101,99,116,67,97,108,108,98,97,99,107,40,97,112,112,83,116,97,116,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,32,99,97,116,99,104,32,40,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,101,114,114,111,114,32,61,32,101,59,92,110,32,32,32,32,32,32,125,32,102,105,110,97,108,108,121,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,73,110,105,116,105,97,108,105,122,101,32,111,117,114,32,105,110,116,101,114,110,97,108,32,97,117,116,104,101,110,116,105,99,97,116,105,111,110,32,115,116,97,116,101,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,32,61,32,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,117,115,101,114,32,61,32,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,103,101,116,85,115,101,114,40,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,108,111,97,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,114,101,116,117,114,110,32,105,110,115,116,97,110,99,101,59,92,110,125,59,92,110,92,110,47,47,32,67,114,101,97,116,101,32,97,32,115,105,109,112,108,101,32,86,117,101,32,112,108,117,103,105,110,32,116,111,32,101,120,112,111,115,101,32,116,104,101,32,119,114,97,112,112,101,114,32,111,98,106,101,99,116,32,116,104,114,111,117,103,104,111,117,116,32,116,104,101,32,97,112,112,108,105,99,97,116,105,111,110,92,110,99,111,110,115,116,32,65,117,116,104,48,80,108,117,103,105,110,32,61,32,123,92,110,32,32,105,110,115,116,97,108,108,40,86,117,101,44,32,111,112,116,105,111,110,115,41,32,123,92,110,32,32,32,32,86,117,101,46,112,114,111,116,111,116,121,112,101,46,36,97,117,116,104,32,61,32,117,115,101,65,117,116,104,48,40,111,112,116,105,111,110,115,41,59,92,110,32,32,125,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,112,108,117,103,105,110,115,47,97,117,116,104,48,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,112,108,117,103,105,110,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,112,108,117,103,105,110,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,98,111,111,116,115,116,114,97,112,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,98,111,111,116,115,116,114,97,112,45,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,101,115,109,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,98,111,111,116,115,116,114,97,112,95,100,105,115,116,95,99,115,115,95,98,111,111,116,115,116,114,97,112,95,109,105,110,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,98,111,111,116,115,116,114,97,112,47,100,105,115,116,47,99,115,115,47,98,111,111,116,115,116,114,97,112,46,109,105,110,46,99,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,47,100,105,115,116,47,99,115,115,47,98,111,111,116,115,116,114,97,112,46,109,105,110,46,99,115,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,98,111,111,116,115,116,114,97,112,95,100,105,115,116,95,99,115,115,95,98,111,111,116,115,116,114,97,112,95,109,105,110,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,98,111,111,116,115,116,114,97,112,95,100,105,115,116,95,99,115,115,95,98,111,111,116,115,116,114,97,112,95,109,105,110,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,98,111,111,116,115,116,114,97,112,95,118,117,101,95,100,105,115,116,95,98,111,111,116,115,116,114,97,112,95,118,117,101,95,109,105,110,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,98,111,111,116,115,116,114,97,112,45,118,117,101,47,100,105,115,116,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,109,105,110,46,99,115,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,47,100,105,115,116,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,109,105,110,46,99,115,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,98,111,111,116,115,116,114,97,112,95,118,117,101,95,100,105,115,116,95,98,111,111,116,115,116,114,97,112,95,118,117,101,95,109,105,110,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,98,111,111,116,115,116,114,97,112,95,118,117,101,95,100,105,115,116,95,98,111,111,116,115,116,114,97,112,95,118,117,101,95,109,105,110,95,99,115,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,41,59,92,110,92,110,92,110,92,110,92,110,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,117,115,101,40,98,111,111,116,115,116,114,97,112,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,112,108,117,103,105,110,115,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,117,116,105,108,45,106,115,46,106,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,117,116,105,108,45,106,115,46,106,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,98,117,114,114,111,119,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,98,117,114,114,111,119,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,109,101,114,103,101,84,111,111,108,116,105,112,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,109,101,114,103,101,84,111,111,108,116,105,112,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,109,101,114,103,101,84,111,111,108,116,105,112,115,40,115,108,105,100,101,114,44,32,116,104,114,101,115,104,111,108,100,44,32,115,101,112,97,114,97,116,111,114,44,32,102,105,120,84,111,111,108,116,105,112,115,41,32,123,92,110,32,32,99,111,110,115,116,32,105,115,77,111,98,105,108,101,32,61,32,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,32,60,61,32,54,53,48,59,92,110,32,32,105,102,32,40,105,115,77,111,98,105,108,101,41,32,123,92,110,32,32,32,32,116,104,114,101,115,104,111,108,100,32,61,32,50,53,59,92,110,32,32,125,92,110,32,32,99,111,110,115,116,32,116,101,120,116,73,115,82,116,108,32,61,32,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,115,108,105,100,101,114,41,46,100,105,114,101,99,116,105,111,110,32,61,61,61,32,39,114,116,108,39,59,92,110,32,32,99,111,110,115,116,32,105,115,82,116,108,32,61,32,115,108,105,100,101,114,46,110,111,85,105,83,108,105,100,101,114,46,111,112,116,105,111,110,115,46,100,105,114,101,99,116,105,111,110,32,61,61,61,32,39,114,116,108,39,59,92,110,32,32,99,111,110,115,116,32,105,115,86,101,114,116,105,99,97,108,32,61,32,115,108,105,100,101,114,46,110,111,85,105,83,108,105,100,101,114,46,111,112,116,105,111,110,115,46,111,114,105,101,110,116,97,116,105,111,110,32,61,61,61,32,39,118,101,114,116,105,99,97,108,39,59,92,110,32,32,99,111,110,115,116,32,116,111,111,108,116,105,112,115,32,61,32,115,108,105,100,101,114,46,110,111,85,105,83,108,105,100,101,114,46,103,101,116,84,111,111,108,116,105,112,115,40,41,59,92,110,32,32,99,111,110,115,116,32,111,114,105,103,105,110,115,32,61,32,115,108,105,100,101,114,46,110,111,85,105,83,108,105,100,101,114,46,103,101,116,79,114,105,103,105,110,115,40,41,59,92,110,92,110,32,32,47,47,32,77,111,118,101,32,116,111,111,108,116,105,112,115,32,105,110,116,111,32,116,104,101,32,111,114,105,103,105,110,32,101,108,101,109,101,110,116,46,32,84,104,101,32,100,101,102,97,117,108,116,32,115,116,121,108,101,115,104,101,101,116,32,104,97,110,100,108,101,115,32,116,104,105,115,46,92,110,32,32,116,111,111,108,116,105,112,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,116,111,111,108,116,105,112,44,32,105,110,100,101,120,41,32,123,92,110,32,32,32,32,105,102,32,40,116,111,111,108,116,105,112,41,32,123,92,110,32,32,32,32,32,32,111,114,105,103,105,110,115,91,105,110,100,101,120,93,46,97,112,112,101,110,100,67,104,105,108,100,40,116,111,111,108,116,105,112,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,115,108,105,100,101,114,46,110,111,85,105,83,108,105,100,101,114,46,111,110,40,39,117,112,100,97,116,101,39,44,32,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,115,44,32,104,97,110,100,108,101,44,32,117,110,101,110,99,111,100,101,100,44,32,116,97,112,44,32,112,111,115,105,116,105,111,110,115,41,32,123,92,110,32,32,32,32,99,111,110,115,116,32,112,111,111,108,115,32,61,32,91,91,93,93,59,92,110,32,32,32,32,99,111,110,115,116,32,112,111,111,108,80,111,115,105,116,105,111,110,115,32,61,32,91,91,93,93,59,92,110,32,32,32,32,99,111,110,115,116,32,112,111,111,108,86,97,108,117,101,115,32,61,32,91,91,93,93,59,92,110,32,32,32,32,108,101,116,32,97,116,80,111,111,108,32,61,32,48,59,92,110,92,110,32,32,32,32,47,47,32,65,115,115,105,103,110,32,116,104,101,32,102,105,114,115,116,32,116,111,111,108,116,105,112,32,116,111,32,116,104,101,32,102,105,114,115,116,32,112,111,111,108,44,32,105,102,32,116,104,101,32,116,111,111,108,116,105,112,32,105,115,32,99,111,110,102,105,103,117,114,101,100,92,110,32,32,32,32,105,102,32,40,116,111,111,108,116,105,112,115,91,48,93,41,32,123,92,110,32,32,32,32,32,32,112,111,111,108,115,91,48,93,91,48,93,32,61,32,48,59,92,110,32,32,32,32,32,32,112,111,111,108,80,111,115,105,116,105,111,110,115,91,48,93,91,48,93,32,61,32,112,111,115,105,116,105,111,110,115,91,48,93,59,92,110,32,32,32,32,32,32,112,111,111,108,86,97,108,117,101,115,91,48,93,91,48,93,32,61,32,118,97,108,117,101,115,91,48,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,49,59,32,105,32,60,32,112,111,115,105,116,105,111,110,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,111,111,108,116,105,112,115,91,105,93,32,124,124,32,112,111,115,105,116,105,111,110,115,91,105,93,32,45,32,112,111,115,105,116,105,111,110,115,91,105,32,45,32,49,93,32,62,32,116,104,114,101,115,104,111,108,100,41,32,123,92,110,32,32,32,32,32,32,32,32,97,116,80,111,111,108,43,43,59,92,110,32,32,32,32,32,32,32,32,112,111,111,108,115,91,97,116,80,111,111,108,93,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,112,111,111,108,86,97,108,117,101,115,91,97,116,80,111,111,108,93,32,61,32,91,93,59,92,110,32,32,32,32,32,32,32,32,112,111,111,108,80,111,115,105,116,105,111,110,115,91,97,116,80,111,111,108,93,32,61,32,91,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,116,111,111,108,116,105,112,115,91,105,93,41,32,123,92,110,32,32,32,32,32,32,32,32,112,111,111,108,115,91,97,116,80,111,111,108,93,46,112,117,115,104,40,105,41,59,92,110,32,32,32,32,32,32,32,32,112,111,111,108,86,97,108,117,101,115,91,97,116,80,111,111,108,93,46,112,117,115,104,40,118,97,108,117,101,115,91,105,93,41,59,92,110,32,32,32,32,32,32,32,32,112,111,111,108,80,111,115,105,116,105,111,110,115,91,97,116,80,111,111,108,93,46,112,117,115,104,40,112,111,115,105,116,105,111,110,115,91,105,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,112,111,111,108,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,112,111,111,108,44,32,112,111,111,108,73,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,104,97,110,100,108,101,115,73,110,80,111,111,108,32,61,32,112,111,111,108,46,108,101,110,103,116,104,59,92,110,32,32,32,32,32,32,102,111,114,32,40,108,101,116,32,106,32,61,32,48,59,32,106,32,60,32,104,97,110,100,108,101,115,73,110,80,111,111,108,59,32,106,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,104,97,110,100,108,101,78,117,109,98,101,114,32,61,32,112,111,111,108,91,106,93,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,106,32,61,61,61,32,104,97,110,100,108,101,115,73,110,80,111,111,108,32,45,32,49,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,108,101,116,32,111,102,102,115,101,116,32,61,32,48,59,92,110,32,32,32,32,32,32,32,32,32,32,112,111,111,108,80,111,115,105,116,105,111,110,115,91,112,111,111,108,73,110,100,101,120,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,32,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,102,102,115,101,116,32,43,61,32,49,48,48,48,32,45,32,49,48,32,42,32,118,97,108,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,105,114,101,99,116,105,111,110,32,61,32,105,115,86,101,114,116,105,99,97,108,32,63,32,39,98,111,116,116,111,109,39,32,58,32,39,114,105,103,104,116,39,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,108,97,115,116,32,61,32,105,115,82,116,108,32,63,32,48,32,58,32,104,97,110,100,108,101,115,73,110,80,111,111,108,32,45,32,49,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,108,97,115,116,79,102,102,115,101,116,32,61,32,49,48,48,48,32,45,32,49,48,32,42,32,112,111,111,108,80,111,115,105,116,105,111,110,115,91,112,111,111,108,73,110,100,101,120,93,91,108,97,115,116,93,59,92,110,32,32,32,32,32,32,32,32,32,32,111,102,102,115,101,116,32,61,32,40,116,101,120,116,73,115,82,116,108,32,38,38,32,33,105,115,86,101,114,116,105,99,97,108,32,63,32,49,48,48,32,58,32,48,41,32,43,32,111,102,102,115,101,116,32,47,32,104,97,110,100,108,101,115,73,110,80,111,111,108,32,45,32,108,97,115,116,79,102,102,115,101,116,59,92,110,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,67,101,110,116,101,114,32,116,104,105,115,32,116,111,111,108,116,105,112,32,111,118,101,114,32,116,104,101,32,97,102,102,101,99,116,101,100,32,104,97,110,100,108,101,115,92,110,32,32,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,46,105,110,110,101,114,72,84,77,76,32,61,32,112,111,111,108,86,97,108,117,101,115,91,112,111,111,108,73,110,100,101,120,93,46,106,111,105,110,40,115,101,112,97,114,97,116,111,114,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,39,98,108,111,99,107,39,59,92,110,32,32,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,46,115,116,121,108,101,91,100,105,114,101,99,116,105,111,110,93,32,61,32,111,102,102,115,101,116,32,43,32,39,37,39,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,47,47,32,72,105,100,101,32,116,104,105,115,32,116,111,111,108,116,105,112,92,110,32,32,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,115,91,104,97,110,100,108,101,78,117,109,98,101,114,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,39,110,111,110,101,39,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,105,102,32,40,102,105,120,84,111,111,108,116,105,112,115,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,105,115,77,111,98,105,108,101,32,61,32,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,32,60,61,32,54,53,48,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,108,101,110,32,61,32,105,115,77,111,98,105,108,101,32,63,32,50,48,32,58,32,53,59,92,110,32,32,32,32,32,32,105,102,32,40,112,111,115,105,116,105,111,110,115,91,48,93,32,60,32,108,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,115,91,48,93,46,115,116,121,108,101,46,114,105,103,104,116,32,61,32,96,36,123,40,49,32,45,32,112,111,115,105,116,105,111,110,115,91,48,93,32,47,32,108,101,110,41,32,42,32,45,51,53,125,112,120,96,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,115,91,48,93,46,115,116,121,108,101,46,114,105,103,104,116,32,61,32,92,34,48,92,34,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,112,111,115,105,116,105,111,110,115,91,49,93,32,62,32,49,48,48,32,45,32,108,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,115,91,49,93,46,115,116,121,108,101,46,114,105,103,104,116,32,61,32,96,36,123,40,112,111,115,105,116,105,111,110,115,91,49,93,32,45,32,40,49,48,48,32,45,32,108,101,110,41,41,32,47,32,108,101,110,32,42,32,51,53,125,112,120,96,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,111,111,108,116,105,112,115,91,49,93,46,115,116,121,108,101,46,114,105,103,104,116,32,61,32,92,34,48,92,34,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,98,117,114,114,111,119,40,116,97,98,108,101,44,32,97,100,100,83,101,108,102,68,105,114,44,32,114,111,111,116,78,97,109,101,41,32,123,92,110,32,32,99,111,110,115,116,32,114,111,111,116,32,61,32,123,125,59,92,110,32,32,116,97,98,108,101,46,102,111,114,69,97,99,104,40,114,111,119,32,61,62,32,123,92,110,32,32,32,32,108,101,116,32,108,97,121,101,114,32,61,32,114,111,111,116,59,92,110,32,32,32,32,114,111,119,46,116,97,120,111,110,111,109,121,46,102,111,114,69,97,99,104,40,107,101,121,32,61,62,32,123,92,110,32,32,32,32,32,32,108,97,121,101,114,91,107,101,121,93,32,61,32,107,101,121,32,105,110,32,108,97,121,101,114,32,63,32,108,97,121,101,114,91,107,101,121,93,32,58,32,123,125,59,92,110,32,32,32,32,32,32,108,97,121,101,114,32,61,32,108,97,121,101,114,91,107,101,121,93,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,105,102,32,40,79,98,106,101,99,116,46,107,101,121,115,40,108,97,121,101,114,41,46,108,101,110,103,116,104,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,32,32,108,97,121,101,114,91,92,34,36,115,105,122,101,36,92,34,93,32,61,32,114,111,119,46,115,105,122,101,59,92,110,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,97,100,100,83,101,108,102,68,105,114,41,32,123,92,110,32,32,32,32,32,32,108,97,121,101,114,91,92,34,46,92,34,93,32,61,32,123,92,110,32,32,32,32,32,32,32,32,92,34,36,115,105,122,101,36,92,34,58,32,114,111,119,46,115,105,122,101,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,32,32,99,111,110,115,116,32,100,101,115,99,101,110,100,32,61,32,102,117,110,99,116,105,111,110,32,40,111,98,106,44,32,100,101,112,116,104,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,111,98,106,41,46,102,105,108,116,101,114,40,107,32,61,62,32,107,32,33,61,61,32,92,34,36,115,105,122,101,36,92,34,41,46,109,97,112,40,107,32,61,62,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,99,104,105,108,100,32,61,32,123,92,110,32,32,32,32,32,32,32,32,110,97,109,101,58,32,107,44,92,110,32,32,32,32,32,32,32,32,100,101,112,116,104,58,32,100,101,112,116,104,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,48,44,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,100,101,115,99,101,110,100,40,111,98,106,91,107,93,44,32,100,101,112,116,104,32,43,32,49,41,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,105,102,32,40,92,34,36,115,105,122,101,36,92,34,32,105,110,32,111,98,106,91,107,93,41,32,123,92,110,32,32,32,32,32,32,32,32,99,104,105,108,100,46,118,97,108,117,101,32,61,32,111,98,106,91,107,93,91,92,34,36,115,105,122,101,36,92,34,93,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,99,104,105,108,100,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,110,97,109,101,58,32,114,111,111,116,78,97,109,101,44,92,110,32,32,32,32,99,104,105,108,100,114,101,110,58,32,100,101,115,99,101,110,100,40,114,111,111,116,44,32,49,41,44,92,110,32,32,32,32,118,97,108,117,101,58,32,48,44,92,110,32,32,32,32,100,101,112,116,104,58,32,48,92,110,32,32,125,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,117,116,105,108,45,106,115,46,106,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,92,34,68,111,99,76,105,115,116,92,34,44,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,68,111,99,76,105,115,116,73,116,101,109,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,112,114,111,112,115,58,32,91,92,34,100,111,99,115,92,34,44,32,92,34,97,112,112,101,110,100,92,34,93,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,92,34,115,99,114,111,108,108,92,34,44,32,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,116,104,114,101,115,104,111,108,100,32,61,32,52,48,48,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,97,112,112,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,92,34,97,112,112,92,34,41,59,92,110,32,32,32,32,32,32,105,102,32,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,32,62,61,32,97,112,112,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,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,97,112,112,101,110,100,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,125,41,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,120,47,100,105,115,116,47,118,117,101,120,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,100,97,116,101,95,102,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,100,97,116,101,45,102,110,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,100,97,116,101,45,102,110,115,47,101,115,109,47,102,111,114,109,97,116,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,83,109,97,108,108,66,97,100,103,101,58,32,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,100,97,116,97,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,108,111,97,100,105,110,103,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,108,97,115,116,67,108,105,99,107,73,110,100,101,120,58,32,110,117,108,108,92,110,32,32,32,32,125,59,92,110,32,32,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,112,71,101,116,116,101,114,115,41,40,91,92,34,105,110,100,105,99,101,115,92,34,44,32,92,34,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,92,34,93,41,44,92,110,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,73,100,115,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,109,97,112,40,105,100,120,32,61,62,32,105,100,120,46,105,100,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,77,111,98,105,108,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,32,60,61,32,54,53,48,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,46,109,97,112,65,99,116,105,111,110,115,41,40,123,92,110,32,32,32,32,32,32,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,32,92,34,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,92,34,92,110,32,32,32,32,125,41,44,92,110,32,32,32,32,115,104,105,102,116,67,108,105,99,107,40,105,110,100,101,120,44,32,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,108,97,115,116,67,108,105,99,107,73,110,100,101,120,32,61,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,111,110,115,116,32,115,101,108,101,99,116,32,61,32,116,104,105,115,46,105,115,83,101,108,101,99,116,101,100,40,116,104,105,115,46,108,97,115,116,67,108,105,99,107,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,108,101,116,32,108,101,102,116,66,111,117,110,100,97,114,121,32,61,32,116,104,105,115,46,105,110,100,105,99,101,115,46,105,110,100,101,120,79,102,40,116,104,105,115,46,108,97,115,116,67,108,105,99,107,73,110,100,101,120,41,59,92,110,32,32,32,32,32,32,108,101,116,32,114,105,103,104,116,66,111,117,110,100,97,114,121,32,61,32,116,104,105,115,46,105,110,100,105,99,101,115,46,105,110,100,101,120,79,102,40,105,110,100,101,120,41,59,92,110,32,32,32,32,32,32,105,102,32,40,114,105,103,104,116,66,111,117,110,100,97,114,121,32,60,32,108,101,102,116,66,111,117,110,100,97,114,121,41,32,123,92,110,32,32,32,32,32,32,32,32,108,101,116,32,116,109,112,32,61,32,108,101,102,116,66,111,117,110,100,97,114,121,59,92,110,32,32,32,32,32,32,32,32,108,101,102,116,66,111,117,110,100,97,114,121,32,61,32,114,105,103,104,116,66,111,117,110,100,97,114,121,59,92,110,32,32,32,32,32,32,32,32,114,105,103,104,116,66,111,117,110,100,97,114,121,32,61,32,116,109,112,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,108,101,102,116,66,111,117,110,100,97,114,121,59,32,105,32,60,61,32,114,105,103,104,116,66,111,117,110,100,97,114,121,59,32,105,43,43,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,83,101,108,101,99,116,101,100,40,116,104,105,115,46,105,110,100,105,99,101,115,91,105,93,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,40,91,116,104,105,115,46,105,110,100,105,99,101,115,91,105,93,44,32,46,46,46,116,104,105,115,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,40,116,104,105,115,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,102,105,108,116,101,114,40,105,100,120,32,61,62,32,105,100,120,32,33,61,61,32,116,104,105,115,46,105,110,100,105,99,101,115,91,105,93,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,65,108,108,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,40,116,104,105,115,46,105,110,100,105,99,101,115,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,78,111,110,101,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,40,91,93,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,83,101,108,101,99,116,40,118,97,108,117,101,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,40,116,104,105,115,46,105,110,100,105,99,101,115,46,102,105,108,116,101,114,40,105,100,120,32,61,62,32,118,97,108,117,101,46,105,110,99,108,117,100,101,115,40,105,100,120,46,105,100,41,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,114,109,97,116,73,100,120,68,97,116,101,40,116,105,109,101,115,116,97,109,112,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,100,97,116,101,95,102,110,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,110,101,119,32,68,97,116,101,40,116,105,109,101,115,116,97,109,112,32,42,32,49,48,48,48,41,44,32,92,34,121,121,121,121,45,77,77,45,100,100,92,34,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,111,103,103,108,101,73,110,100,101,120,40,105,110,100,101,120,44,32,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,101,46,115,104,105,102,116,75,101,121,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,116,104,105,115,46,108,97,115,116,67,108,105,99,107,73,110,100,101,120,32,61,32,105,110,100,101,120,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,105,115,83,101,108,101,99,116,101,100,40,105,110,100,101,120,41,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,40,116,104,105,115,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,102,105,108,116,101,114,40,105,100,120,32,61,62,32,105,100,120,46,105,100,32,33,61,32,105,110,100,101,120,46,105,100,41,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,40,91,105,110,100,101,120,44,32,46,46,46,116,104,105,115,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,115,83,101,108,101,99,116,101,100,40,105,110,100,101,120,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,102,105,110,100,40,105,100,120,32,61,62,32,105,100,120,46,105,100,32,61,61,32,105,110,100,101,120,46,105,100,41,32,33,61,32,110,117,108,108,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,81,117,101,114,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,81,117,101,114,121,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,81,117,101,114,121,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,105,99,111,110,115,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,110,97,109,101,58,32,92,34,82,101,115,117,108,116,115,67,97,114,100,92,34,44,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,67,108,105,112,98,111,97,114,100,73,99,111,110,58,32,95,99,111,109,112,111,110,101,110,116,115,95,105,99,111,110,115,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,80,114,101,108,111,97,100,101,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,83,111,114,116,83,101,108,101,99,116,58,32,95,99,111,109,112,111,110,101,110,116,115,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,99,114,101,97,116,101,100,40,41,32,123,125,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,108,97,115,116,82,101,115,117,108,116,115,76,111,97,100,101,100,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,32,33,61,32,110,117,108,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,105,116,67,111,117,110,116,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,46,97,103,103,114,101,103,97,116,105,111,110,115,46,116,111,116,97,108,95,99,111,117,110,116,46,118,97,108,117,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,97,98,108,101,73,116,101,109,115,40,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,105,116,101,109,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,105,116,101,109,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,116,104,105,115,46,36,116,40,92,34,113,117,101,114,121,84,105,109,101,92,34,41,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,116,111,111,107,40,41,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,105,116,101,109,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,116,104,105,115,46,36,116,40,92,34,116,111,116,97,108,83,105,122,101,92,34,41,44,92,110,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,116,104,105,115,46,116,111,116,97,108,83,105,122,101,40,41,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,105,116,101,109,115,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,116,111,111,107,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,46,116,111,111,107,32,43,32,92,34,109,115,92,34,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,111,116,97,108,83,105,122,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,104,117,109,97,110,70,105,108,101,83,105,122,101,41,40,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,46,97,103,103,114,101,103,97,116,105,111,110,115,46,116,111,116,97,108,95,115,105,122,101,46,118,97,108,117,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,84,111,103,103,108,101,40,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,115,104,111,119,32,61,32,33,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,92,34,99,111,108,108,97,112,115,101,45,49,92,34,41,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,92,34,115,104,111,119,92,34,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,85,105,83,104,111,119,68,101,116,97,105,108,115,92,34,44,32,115,104,111,119,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,104,111,119,32,38,38,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,117,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,32,61,61,32,110,117,108,108,32,38,38,32,33,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,77,105,109,101,32,97,103,103,115,32,97,114,101,32,110,111,116,32,117,112,100,97,116,101,100,32,97,117,116,111,109,97,116,105,99,97,108,108,121,44,32,117,112,100,97,116,101,32,110,111,119,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,102,111,114,99,101,85,112,100,97,116,101,77,105,109,101,65,103,103,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,111,110,67,111,112,121,67,108,105,99,107,40,41,32,123,92,110,32,32,32,32,32,32,108,101,116,32,116,115,118,83,116,114,105,110,103,32,61,32,92,34,92,34,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,117,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,46,115,108,105,99,101,40,41,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,98,91,92,34,100,111,99,95,99,111,117,110,116,92,34,93,32,45,32,97,91,92,34,100,111,99,95,99,111,117,110,116,92,34,93,41,46,102,111,114,69,97,99,104,40,114,111,119,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,116,115,118,83,116,114,105,110,103,32,43,61,32,96,36,123,114,111,119,91,92,34,107,101,121,92,34,93,125,92,92,116,36,123,114,111,119,91,92,34,100,111,99,95,99,111,117,110,116,92,34,93,125,92,92,110,96,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,110,97,118,105,103,97,116,111,114,46,99,108,105,112,98,111,97,114,100,46,119,114,105,116,101,84,101,120,116,40,116,115,118,83,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,98,118,84,111,97,115,116,46,116,111,97,115,116,40,116,104,105,115,46,36,116,40,92,34,116,111,97,115,116,46,99,111,112,105,101,100,84,111,67,108,105,112,98,111,97,114,100,92,34,41,44,32,123,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,110,111,65,117,116,111,72,105,100,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,32,32,116,111,97,115,116,101,114,58,32,92,34,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,92,34,44,92,110,32,32,32,32,32,32,32,32,104,101,97,100,101,114,67,108,97,115,115,58,32,92,34,104,105,100,100,101,110,92,34,44,92,110,32,32,32,32,32,32,32,32,98,111,100,121,67,108,97,115,115,58,32,92,34,116,111,97,115,116,45,98,111,100,121,45,105,110,102,111,92,34,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,102,111,114,99,101,85,112,100,97,116,101,77,105,109,101,65,103,103,40,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,113,117,101,114,121,32,61,32,95,83,105,115,116,50,81,117,101,114,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,115,101,97,114,99,104,81,117,101,114,121,40,41,59,92,110,32,32,32,32,32,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,103,101,116,77,105,109,101,84,121,112,101,115,40,113,117,101,114,121,41,46,116,104,101,110,40,40,123,92,110,32,32,32,32,32,32,32,32,98,117,99,107,101,116,115,92,110,32,32,32,32,32,32,125,41,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,85,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,92,34,44,32,98,117,99,107,101,116,115,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,116,101,120,116,58,32,83,116,114,105,110,103,44,92,110,32,32,32,32,112,105,108,108,58,32,66,111,111,108,101,97,110,92,110,32,32,125,92,110,125,41,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,120,47,100,105,115,116,47,118,117,101,120,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,83,105,115,116,50,65,112,105,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,83,101,97,114,99,104,66,97,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,81,117,101,114,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,83,105,115,116,50,81,117,101,114,121,32,42,47,32,92,34,46,47,115,114,99,47,83,105,115,116,50,81,117,101,114,121,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,108,111,100,97,115,104,95,100,101,98,111,117,110,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,108,111,100,97,115,104,47,100,101,98,111,117,110,99,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,108,111,100,97,115,104,47,100,101,98,111,117,110,99,101,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,108,111,100,97,115,104,95,100,101,98,111,117,110,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,108,111,100,97,115,104,95,100,101,98,111,117,110,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,67,97,114,100,87,97,108,108,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,76,105,103,104,116,98,111,120,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,76,105,115,116,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,99,111,109,112,111,110,101,110,116,115,95,72,101,108,112,68,105,97,108,111,103,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,120,116,101,110,100,40,123,92,110,32,32,99,111,109,112,111,110,101,110,116,115,58,32,123,92,110,32,32,32,32,72,101,108,112,68,105,97,108,111,103,58,32,95,99,111,109,112,111,110,101,110,116,115,95,72,101,108,112,68,105,97,108,111,103,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,68,111,99,76,105,115,116,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,76,105,115,116,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,84,97,103,80,105,99,107,101,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,68,97,116,101,83,108,105,100,101,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,83,105,122,101,83,108,105,100,101,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,80,97,116,104,84,114,101,101,58,32,95,99,111,109,112,111,110,101,110,116,115,95,80,97,116,104,84,114,101,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,82,101,115,117,108,116,115,67,97,114,100,58,32,95,99,111,109,112,111,110,101,110,116,115,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,77,105,109,101,80,105,99,107,101,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,57,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,76,105,103,104,116,98,111,120,58,32,95,99,111,109,112,111,110,101,110,116,115,95,76,105,103,104,116,98,111,120,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,55,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,68,111,99,67,97,114,100,87,97,108,108,58,32,95,99,111,109,112,111,110,101,110,116,115,95,68,111,99,67,97,114,100,87,97,108,108,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,73,110,100,101,120,80,105,99,107,101,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,83,101,97,114,99,104,66,97,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,83,101,97,114,99,104,66,97,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,80,114,101,108,111,97,100,101,114,58,32,95,99,111,109,112,111,110,101,110,116,115,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,32,32,125,44,92,110,32,32,100,97,116,97,58,32,40,41,32,61,62,32,40,123,92,110,32,32,32,32,108,111,97,100,105,110,103,58,32,102,97,108,115,101,44,92,110,32,32,32,32,117,105,76,111,97,100,105,110,103,58,32,116,114,117,101,44,92,110,32,32,32,32,115,101,97,114,99,104,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,100,111,99,115,58,32,91,93,44,92,110,32,32,32,32,100,111,99,73,100,115,58,32,110,101,119,32,83,101,116,40,41,44,92,110,32,32,32,32,100,111,99,67,104,101,99,107,115,117,109,115,58,32,110,101,119,32,83,101,116,40,41,44,92,110,32,32,32,32,115,101,97,114,99,104,66,117,115,121,58,32,102,97,108,115,101,44,92,110,32,32,32,32,83,105,115,116,50,81,117,101,114,121,58,32,95,83,105,115,116,50,81,117,101,114,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,115,104,111,119,72,101,108,112,58,32,102,97,108,115,101,92,110,32,32,125,41,44,92,110,32,32,99,111,109,112,117,116,101,100,58,32,123,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,109,97,112,71,101,116,116,101,114,115,41,40,91,92,34,105,110,100,105,99,101,115,92,34,44,32,92,34,111,112,116,68,105,115,112,108,97,121,92,34,93,41,92,110,32,32,125,44,92,110,32,32,109,111,117,110,116,101,100,40,41,32,123,92,110,32,32,32,32,47,47,32,72,97,110,100,108,101,32,116,111,117,99,104,32,101,118,101,110,116,115,92,110,32,32,32,32,119,105,110,100,111,119,46,111,110,116,111,117,99,104,101,110,100,32,61,32,40,41,32,61,62,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,98,117,115,84,111,117,99,104,69,110,100,92,34,41,59,92,110,32,32,32,32,119,105,110,100,111,119,46,111,110,116,111,117,99,104,99,97,110,99,101,108,32,61,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,98,117,115,84,111,117,99,104,69,110,100,92,34,41,59,92,110,32,32,32,32,116,104,105,115,46,115,101,97,114,99,104,32,61,32,108,111,100,97,115,104,95,100,101,98,111,117,110,99,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,95,100,101,102,97,117,108,116,40,41,40,97,115,121,110,99,32,99,108,101,97,114,32,61,62,32,123,92,110,32,32,32,32,32,32,105,102,32,40,99,108,101,97,114,41,32,123,92,110,32,32,32,32,32,32,32,32,97,119,97,105,116,32,116,104,105,115,46,99,108,101,97,114,82,101,115,117,108,116,115,40,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,97,119,97,105,116,32,116,104,105,115,46,115,101,97,114,99,104,78,111,119,40,95,83,105,115,116,50,81,117,101,114,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,115,101,97,114,99,104,81,117,101,114,121,40,41,41,59,92,110,32,32,32,32,125,44,32,51,53,48,44,32,123,92,110,32,32,32,32,32,32,108,101,97,100,105,110,103,58,32,102,97,108,115,101,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,92,34,108,111,97,100,70,114,111,109,65,114,103,115,92,34,44,32,116,104,105,115,46,36,114,111,117,116,101,41,46,116,104,101,110,40,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,40,41,32,61,62,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,92,34,117,112,100,97,116,101,65,114,103,115,92,34,44,32,116,104,105,115,46,36,114,111,117,116,101,114,41,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,109,117,116,97,116,105,111,110,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,91,92,34,115,101,116,83,105,122,101,77,105,110,92,34,44,32,92,34,115,101,116,83,105,122,101,77,97,120,92,34,44,32,92,34,115,101,116,68,97,116,101,77,105,110,92,34,44,32,92,34,115,101,116,68,97,116,101,77,97,120,92,34,44,32,92,34,115,101,116,83,101,97,114,99,104,84,101,120,116,92,34,44,32,92,34,115,101,116,80,97,116,104,84,101,120,116,92,34,44,32,92,34,115,101,116,83,111,114,116,77,111,100,101,92,34,44,32,92,34,115,101,116,79,112,116,72,105,103,104,108,105,103,104,116,92,34,44,32,92,34,115,101,116,79,112,116,70,114,97,103,109,101,110,116,83,105,122,101,92,34,44,32,92,34,115,101,116,70,117,122,122,121,92,34,44,32,92,34,115,101,116,83,105,122,101,92,34,44,32,92,34,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,92,34,44,32,92,34,115,101,116,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,92,34,44,32,92,34,115,101,116,83,101,108,101,99,116,101,100,84,97,103,115,92,34,44,32,92,34,115,101,116,79,112,116,81,117,101,114,121,77,111,100,101,92,34,44,32,92,34,115,101,116,79,112,116,83,101,97,114,99,104,73,110,80,97,116,104,92,34,93,46,105,110,99,108,117,100,101,115,40,109,117,116,97,116,105,111,110,46,116,121,112,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,115,101,97,114,99,104,66,117,115,121,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,97,114,99,104,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,32,32,116,104,105,115,46,115,101,116,73,110,100,105,99,101,115,40,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,92,34,115,105,115,116,50,73,110,102,111,92,34,93,46,105,110,100,105,99,101,115,41,59,92,110,32,32,32,32,116,104,105,115,46,103,101,116,68,97,116,101,82,97,110,103,101,40,41,46,116,104,101,110,40,114,97,110,103,101,32,61,62,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,68,97,116,101,66,111,117,110,100,115,77,105,110,40,114,97,110,103,101,46,109,105,110,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,116,68,97,116,101,66,111,117,110,100,115,77,97,120,40,114,97,110,103,101,46,109,97,120,41,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,100,111,66,108,97,110,107,83,101,97,114,99,104,32,61,32,33,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,59,92,110,32,32,32,32,32,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,103,101,116,77,105,109,101,84,121,112,101,115,40,95,83,105,115,116,50,81,117,101,114,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,115,101,97,114,99,104,81,117,101,114,121,40,100,111,66,108,97,110,107,83,101,97,114,99,104,41,41,46,116,104,101,110,40,40,123,92,110,32,32,32,32,32,32,32,32,109,105,109,101,77,97,112,92,110,32,32,32,32,32,32,125,41,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,85,105,77,105,109,101,77,97,112,92,34,44,32,109,105,109,101,77,97,112,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,117,105,76,111,97,100,105,110,103,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,97,114,99,104,40,116,114,117,101,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,44,92,110,32,32,109,101,116,104,111,100,115,58,32,123,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,109,97,112,65,99,116,105,111,110,115,41,40,123,92,110,32,32,32,32,32,32,115,101,116,83,105,115,116,50,73,110,102,111,58,32,92,34,115,101,116,83,105,115,116,50,73,110,102,111,92,34,92,110,32,32,32,32,125,41,44,92,110,32,32,32,32,46,46,46,40,48,44,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,56,95,95,46,109,97,112,77,117,116,97,116,105,111,110,115,41,40,123,92,110,32,32,32,32,32,32,115,101,116,73,110,100,105,99,101,115,58,32,92,34,115,101,116,73,110,100,105,99,101,115,92,34,44,92,110,32,32,32,32,32,32,115,101,116,68,97,116,101,66,111,117,110,100,115,77,105,110,58,32,92,34,115,101,116,68,97,116,101,66,111,117,110,100,115,77,105,110,92,34,44,92,110,32,32,32,32,32,32,115,101,116,68,97,116,101,66,111,117,110,100,115,77,97,120,58,32,92,34,115,101,116,68,97,116,101,66,111,117,110,100,115,77,97,120,92,34,44,92,110,32,32,32,32,32,32,115,101,116,84,97,103,115,58,32,92,34,115,101,116,84,97,103,115,92,34,92,110,32,32,32,32,125,41,44,92,110,32,32,32,32,115,104,111,119,69,114,114,111,114,84,111,97,115,116,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,98,118,84,111,97,115,116,46,116,111,97,115,116,40,116,104,105,115,46,36,116,40,92,34,116,111,97,115,116,46,101,115,67,111,110,110,69,114,114,92,34,41,44,32,123,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,116,104,105,115,46,36,116,40,92,34,116,111,97,115,116,46,101,115,67,111,110,110,69,114,114,84,105,116,108,101,92,34,41,44,92,110,32,32,32,32,32,32,32,32,110,111,65,117,116,111,72,105,100,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,116,111,97,115,116,101,114,58,32,92,34,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,92,34,44,92,110,32,32,32,32,32,32,32,32,104,101,97,100,101,114,67,108,97,115,115,58,32,92,34,116,111,97,115,116,45,104,101,97,100,101,114,45,101,114,114,111,114,92,34,44,92,110,32,32,32,32,32,32,32,32,98,111,100,121,67,108,97,115,115,58,32,92,34,116,111,97,115,116,45,98,111,100,121,45,101,114,114,111,114,92,34,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,104,111,119,83,121,110,116,97,120,69,114,114,111,114,84,111,97,115,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,98,118,84,111,97,115,116,46,116,111,97,115,116,40,116,104,105,115,46,36,116,40,92,34,116,111,97,115,116,46,101,115,81,117,101,114,121,69,114,114,92,34,41,44,32,123,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,116,104,105,115,46,36,116,40,92,34,116,111,97,115,116,46,101,115,81,117,101,114,121,69,114,114,84,105,116,108,101,92,34,41,44,92,110,32,32,32,32,32,32,32,32,110,111,65,117,116,111,72,105,100,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,116,111,97,115,116,101,114,58,32,92,34,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,92,34,44,92,110,32,32,32,32,32,32,32,32,104,101,97,100,101,114,67,108,97,115,115,58,32,92,34,116,111,97,115,116,45,104,101,97,100,101,114,45,119,97,114,110,105,110,103,92,34,44,92,110,32,32,32,32,32,32,32,32,98,111,100,121,67,108,97,115,115,58,32,92,34,116,111,97,115,116,45,98,111,100,121,45,119,97,114,110,105,110,103,92,34,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,115,121,110,99,32,115,101,97,114,99,104,78,111,119,40,113,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,115,101,97,114,99,104,66,117,115,121,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,97,119,97,105,116,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,92,34,105,110,99,114,101,109,101,110,116,81,117,101,114,121,83,101,113,117,101,110,99,101,92,34,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,98,117,115,83,101,97,114,99,104,92,34,41,59,92,110,32,32,32,32,32,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,115,81,117,101,114,121,40,113,41,46,116,104,101,110,40,97,115,121,110,99,32,114,101,115,112,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,97,119,97,105,116,32,116,104,105,115,46,104,97,110,100,108,101,83,101,97,114,99,104,40,114,101,115,112,41,59,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,97,114,99,104,66,117,115,121,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,41,46,99,97,116,99,104,40,101,114,114,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,101,114,114,46,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,32,61,61,61,32,53,48,48,32,38,38,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,81,117,101,114,121,77,111,100,101,32,61,61,61,32,92,34,97,100,118,97,110,99,101,100,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,83,121,110,116,97,120,69,114,114,111,114,84,111,97,115,116,40,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,104,111,119,69,114,114,111,114,84,111,97,115,116,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,115,121,110,99,32,99,108,101,97,114,82,101,115,117,108,116,115,40,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,100,111,99,115,32,61,32,91,93,59,92,110,32,32,32,32,32,32,116,104,105,115,46,100,111,99,73,100,115,46,99,108,101,97,114,40,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,100,111,99,67,104,101,99,107,115,117,109,115,46,99,108,101,97,114,40,41,59,92,110,32,32,32,32,32,32,97,119,97,105,116,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,92,34,99,108,101,97,114,82,101,115,117,108,116,115,92,34,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,85,105,82,101,97,99,104,101,100,83,99,114,111,108,108,69,110,100,92,34,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,115,121,110,99,32,104,97,110,100,108,101,83,101,97,114,99,104,40,114,101,115,112,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,112,46,104,105,116,115,46,104,105,116,115,46,108,101,110,103,116,104,32,61,61,32,48,32,124,124,32,114,101,115,112,46,104,105,116,115,46,104,105,116,115,46,108,101,110,103,116,104,32,60,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,83,105,122,101,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,85,105,82,101,97,99,104,101,100,83,99,114,111,108,108,69,110,100,92,34,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,115,112,46,104,105,116,115,46,104,105,116,115,32,61,32,114,101,115,112,46,104,105,116,115,46,104,105,116,115,46,102,105,108,116,101,114,40,104,105,116,32,61,62,32,33,116,104,105,115,46,100,111,99,73,100,115,46,104,97,115,40,104,105,116,46,95,105,100,41,41,59,92,110,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,112,46,104,105,116,115,46,104,105,116,115,32,61,32,114,101,115,112,46,104,105,116,115,46,104,105,116,115,46,102,105,108,116,101,114,40,104,105,116,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,40,92,34,99,104,101,99,107,115,117,109,92,34,32,105,110,32,104,105,116,46,95,115,111,117,114,99,101,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,105,115,68,117,112,101,32,61,32,33,116,104,105,115,46,100,111,99,67,104,101,99,107,115,117,109,115,46,104,97,115,40,104,105,116,46,95,115,111,117,114,99,101,46,99,104,101,99,107,115,117,109,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,100,111,99,67,104,101,99,107,115,117,109,115,46,97,100,100,40,104,105,116,46,95,115,111,117,114,99,101,46,99,104,101,99,107,115,117,109,41,59,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,115,68,117,112,101,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,102,111,114,32,40,99,111,110,115,116,32,104,105,116,32,111,102,32,114,101,115,112,46,104,105,116,115,46,104,105,116,115,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,73,109,97,103,101,32,124,124,32,104,105,116,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,86,105,100,101,111,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,105,116,46,95,115,101,113,32,61,32,97,119,97,105,116,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,92,34,103,101,116,75,101,121,83,101,113,117,101,110,99,101,92,34,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,97,100,100,76,105,103,104,116,98,111,120,83,111,117,114,99,101,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,111,117,114,99,101,58,32,96,102,47,36,123,104,105,116,46,95,105,100,125,96,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,58,32,104,105,116,46,95,112,114,111,112,115,46,104,97,115,84,104,117,109,98,110,97,105,108,32,63,32,96,116,47,36,123,104,105,116,46,95,115,111,117,114,99,101,46,105,110,100,101,120,125,47,36,123,104,105,116,46,95,105,100,125,96,32,58,32,110,117,108,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,112,116,105,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,111,110,101,110,116,58,32,95,99,111,109,112,111,110,101,110,116,115,95,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,56,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,112,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,105,116,58,32,104,105,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,58,32,104,105,116,46,95,112,114,111,112,115,46,105,115,86,105,100,101,111,32,63,32,92,34,118,105,100,101,111,92,34,32,58,32,92,34,105,109,97,103,101,92,34,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,97,119,97,105,116,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,92,34,114,101,109,111,117,110,116,76,105,103,104,116,98,111,120,92,34,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,76,97,115,116,81,117,101,114,121,82,101,115,117,108,116,92,34,44,32,114,101,115,112,41,59,92,110,32,32,32,32,32,32,116,104,105,115,46,100,111,99,115,46,112,117,115,104,40,46,46,46,114,101,115,112,46,104,105,116,115,46,104,105,116,115,41,59,92,110,32,32,32,32,32,32,114,101,115,112,46,104,105,116,115,46,104,105,116,115,46,102,111,114,69,97,99,104,40,104,105,116,32,61,62,32,116,104,105,115,46,100,111,99,73,100,115,46,97,100,100,40,104,105,116,46,95,105,100,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,103,101,116,68,97,116,101,82,97,110,103,101,40,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,83,105,115,116,50,65,112,105,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,101,115,81,117,101,114,121,40,123,92,110,32,32,32,32,32,32,32,32,47,47,32,84,79,68,79,58,32,102,105,108,116,101,114,32,99,117,114,114,101,110,116,32,115,101,108,101,99,116,101,100,32,105,110,100,105,99,101,115,92,110,32,32,32,32,32,32,32,32,97,103,103,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,97,116,101,77,105,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,105,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,92,34,109,116,105,109,101,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,100,97,116,101,77,97,120,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,97,120,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,92,34,109,116,105,109,101,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,58,32,48,92,110,32,32,32,32,32,32,125,41,46,116,104,101,110,40,114,101,115,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,109,105,110,58,32,114,101,115,46,97,103,103,114,101,103,97,116,105,111,110,115,46,100,97,116,101,77,105,110,46,118,97,108,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,109,97,120,58,32,114,101,115,46,97,103,103,114,101,103,97,116,105,111,110,115,46,100,97,116,101,77,97,120,46,118,97,108,117,101,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,112,112,101,110,100,70,117,110,99,40,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,117,105,82,101,97,99,104,101,100,83,99,114,111,108,108,69,110,100,32,38,38,32,116,104,105,115,46,115,101,97,114,99,104,32,38,38,32,33,116,104,105,115,46,115,101,97,114,99,104,66,117,115,121,41,32,123,92,110,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,97,114,99,104,78,111,119,40,95,83,105,115,116,50,81,117,101,114,121,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,115,101,97,114,99,104,81,117,101,114,121,40,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,98,101,102,111,114,101,82,111,117,116,101,85,112,100,97,116,101,40,116,111,44,32,102,114,111,109,44,32,110,101,120,116,41,32,123,92,110,32,32,32,32,105,102,32,40,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,73,115,79,112,101,110,41,32,123,92,110,32,32,32,32,32,32,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,95,115,101,116,85,105,83,104,111,119,76,105,103,104,116,98,111,120,92,34,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,110,101,120,116,40,102,97,108,115,101,41,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,110,101,120,116,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,98,97,98,101,108,45,108,111,97,100,101,114,47,108,105,98,47,105,110,100,101,120,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,112,108,117,103,105,110,45,116,121,112,101,115,99,114,105,112,116,47,110,111,100,101,95,109,111,100,117,108,101,115,47,116,115,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,52,49,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,97,120,105,111,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,97,120,105,111,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,97,120,105,111,115,47,105,110,100,101,120,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,97,120,105,111,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,32,61,32,47,42,35,95,95,80,85,82,69,95,95,42,47,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,40,97,120,105,111,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,92,110,92,110,102,117,110,99,116,105,111,110,32,103,101,116,73,100,80,114,101,102,105,120,40,105,110,100,105,99,101,115,44,32,105,100,41,32,123,92,110,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,52,59,32,105,32,60,32,51,50,59,32,105,43,43,41,32,123,92,110,32,32,32,32,99,111,110,115,116,32,112,114,101,102,105,120,32,61,32,105,100,46,115,108,105,99,101,40,48,44,32,105,41,59,92,110,32,32,32,32,105,102,32,40,105,110,100,105,99,101,115,46,102,105,108,116,101,114,40,105,100,120,32,61,62,32,105,100,120,46,105,100,46,115,108,105,99,101,40,48,44,32,105,41,32,61,61,32,112,114,101,102,105,120,41,46,108,101,110,103,116,104,32,61,61,32,49,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,112,114,101,102,105,120,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,105,100,59,92,110,125,92,110,99,108,97,115,115,32,83,105,115,116,50,65,112,105,32,123,92,110,32,32,99,111,110,115,116,114,117,99,116,111,114,40,98,97,115,101,85,114,108,41,32,123,92,110,32,32,32,32,116,104,105,115,46,98,97,115,101,85,114,108,32,61,32,98,97,115,101,85,114,108,59,92,110,32,32,125,92,110,32,32,103,101,116,83,105,115,116,50,73,110,102,111,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,120,105,111,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,46,103,101,116,40,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,105,96,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,105,110,100,105,99,101,115,32,61,32,114,101,115,112,46,100,97,116,97,46,105,110,100,105,99,101,115,59,92,110,32,32,32,32,32,32,114,101,115,112,46,100,97,116,97,46,105,110,100,105,99,101,115,32,61,32,105,110,100,105,99,101,115,46,109,97,112,40,105,100,120,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,100,58,32,105,100,120,46,105,100,44,92,110,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,105,100,120,46,110,97,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,116,105,109,101,115,116,97,109,112,58,32,105,100,120,46,116,105,109,101,115,116,97,109,112,44,92,110,32,32,32,32,32,32,32,32,32,32,118,101,114,115,105,111,110,58,32,105,100,120,46,118,101,114,115,105,111,110,44,92,110,32,32,32,32,32,32,32,32,32,32,105,100,80,114,101,102,105,120,58,32,103,101,116,73,100,80,114,101,102,105,120,40,105,110,100,105,99,101,115,44,32,105,100,120,46,105,100,41,92,110,32,32,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,112,46,100,97,116,97,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,32,32,115,101,116,72,105,116,80,114,111,112,115,40,104,105,116,41,32,123,92,110,32,32,32,32,104,105,116,91,92,34,95,112,114,111,112,115,92,34,93,32,61,32,123,125,59,92,110,32,32,32,32,99,111,110,115,116,32,109,105,109,101,67,97,116,101,103,111,114,121,32,61,32,104,105,116,46,95,115,111,117,114,99,101,46,109,105,109,101,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,104,105,116,46,95,115,111,117,114,99,101,46,109,105,109,101,46,115,112,108,105,116,40,92,34,47,92,34,41,91,48,93,59,92,110,32,32,32,32,105,102,32,40,92,34,112,97,114,101,110,116,92,34,32,105,110,32,104,105,116,46,95,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,104,105,116,46,95,112,114,111,112,115,46,105,115,83,117,98,68,111,99,117,109,101,110,116,32,61,32,116,114,117,101,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,92,34,116,104,117,109,98,110,97,105,108,92,34,32,105,110,32,104,105,116,46,95,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,104,105,116,46,95,112,114,111,112,115,46,104,97,115,84,104,117,109,98,110,97,105,108,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,105,102,32,40,78,117,109,98,101,114,46,105,115,78,97,78,40,78,117,109,98,101,114,40,104,105,116,46,95,115,111,117,114,99,101,46,116,104,117,109,98,110,97,105,108,41,41,41,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,66,97,99,107,119,97,114,100,115,32,99,111,109,112,97,116,105,98,105,108,105,116,121,92,110,32,32,32,32,32,32,32,32,104,105,116,46,95,112,114,111,112,115,46,116,110,78,117,109,32,61,32,49,59,92,110,32,32,32,32,32,32,32,32,104,105,116,46,95,112,114,111,112,115,46,104,97,115,86,105,100,80,114,101,118,105,101,119,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,104,105,116,46,95,112,114,111,112,115,46,116,110,78,117,109,32,61,32,78,117,109,98,101,114,40,104,105,116,46,95,115,111,117,114,99,101,46,116,104,117,109,98,110,97,105,108,41,59,92,110,32,32,32,32,32,32,32,32,104,105,116,46,95,112,114,111,112,115,46,104,97,115,86,105,100,80,114,101,118,105,101,119,32,61,32,104,105,116,46,95,112,114,111,112,115,46,116,110,78,117,109,32,62,32,49,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,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,92,110,32,32,32,32,32,32,99,97,115,101,32,92,34,105,109,97,103,101,92,34,58,92,110,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,46,95,115,111,117,114,99,101,46,118,105,100,101,111,99,32,61,61,61,32,92,34,103,105,102,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,105,116,46,95,112,114,111,112,115,46,105,115,71,105,102,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,105,116,46,95,112,114,111,112,115,46,105,115,73,109,97,103,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,92,34,119,105,100,116,104,92,34,32,105,110,32,104,105,116,46,95,115,111,117,114,99,101,32,38,38,32,33,104,105,116,46,95,112,114,111,112,115,46,105,115,83,117,98,68,111,99,117,109,101,110,116,32,38,38,32,104,105,116,46,95,115,111,117,114,99,101,46,118,105,100,101,111,99,32,33,61,61,32,92,34,116,105,102,102,92,34,32,38,38,32,104,105,116,46,95,115,111,117,114,99,101,46,118,105,100,101,111,99,32,33,61,61,32,92,34,114,97,119,92,34,32,38,38,32,104,105,116,46,95,115,111,117,114,99,101,46,118,105,100,101,111,99,32,33,61,61,32,92,34,112,112,109,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,105,116,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,73,109,97,103,101,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,92,34,118,105,100,101,111,92,34,58,92,110,32,32,32,32,32,32,32,32,105,102,32,40,92,34,118,105,100,101,111,99,92,34,32,105,110,32,104,105,116,46,95,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,105,116,46,95,112,114,111,112,115,46,105,115,86,105,100,101,111,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,46,95,112,114,111,112,115,46,105,115,86,105,100,101,111,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,118,105,100,101,111,99,32,61,32,104,105,116,46,95,115,111,117,114,99,101,46,118,105,100,101,111,99,59,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,109,105,109,101,32,61,32,104,105,116,46,95,115,111,117,114,99,101,46,109,105,109,101,59,92,110,32,32,32,32,32,32,32,32,32,32,104,105,116,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,86,105,100,101,111,32,61,32,109,105,109,101,32,33,61,32,110,117,108,108,32,38,38,32,109,105,109,101,46,115,116,97,114,116,115,87,105,116,104,40,92,34,118,105,100,101,111,47,92,34,41,32,38,38,32,33,104,105,116,46,95,112,114,111,112,115,46,105,115,83,117,98,68,111,99,117,109,101,110,116,32,38,38,32,104,105,116,46,95,115,111,117,114,99,101,46,101,120,116,101,110,115,105,111,110,32,33,61,61,32,92,34,109,107,118,92,34,32,38,38,32,104,105,116,46,95,115,111,117,114,99,101,46,101,120,116,101,110,115,105,111,110,32,33,61,61,32,92,34,97,118,105,92,34,32,38,38,32,104,105,116,46,95,115,111,117,114,99,101,46,101,120,116,101,110,115,105,111,110,32,33,61,61,32,92,34,109,111,118,92,34,32,38,38,32,118,105,100,101,111,99,32,33,61,61,32,92,34,104,101,118,99,92,34,32,38,38,32,118,105,100,101,111,99,32,33,61,61,32,92,34,109,112,101,103,49,118,105,100,101,111,92,34,32,38,38,32,118,105,100,101,111,99,32,33,61,61,32,92,34,109,112,101,103,50,118,105,100,101,111,92,34,32,38,38,32,118,105,100,101,111,99,32,33,61,61,32,92,34,119,109,118,51,92,34,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,92,34,97,117,100,105,111,92,34,58,92,110,32,32,32,32,32,32,32,32,105,102,32,40,92,34,97,117,100,105,111,99,92,34,32,105,110,32,104,105,116,46,95,115,111,117,114,99,101,32,38,38,32,33,104,105,116,46,95,112,114,111,112,115,46,105,115,83,117,98,68,111,99,117,109,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,105,116,46,95,112,114,111,112,115,46,105,115,65,117,100,105,111,32,61,32,116,114,117,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,115,101,116,72,105,116,84,97,103,115,40,104,105,116,41,32,123,92,110,32,32,32,32,99,111,110,115,116,32,116,97,103,115,32,61,32,91,93,59,92,110,32,32,32,32,99,111,110,115,116,32,109,105,109,101,67,97,116,101,103,111,114,121,32,61,32,104,105,116,46,95,115,111,117,114,99,101,46,109,105,109,101,32,61,61,32,110,117,108,108,32,63,32,110,117,108,108,32,58,32,104,105,116,46,95,115,111,117,114,99,101,46,109,105,109,101,46,115,112,108,105,116,40,92,34,47,92,34,41,91,48,93,59,92,110,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,92,110,32,32,32,32,32,32,99,97,115,101,32,92,34,105,109,97,103,101,92,34,58,92,110,32,32,32,32,32,32,99,97,115,101,32,92,34,118,105,100,101,111,92,34,58,92,110,32,32,32,32,32,32,32,32,105,102,32,40,92,34,118,105,100,101,111,99,92,34,32,105,110,32,104,105,116,46,95,115,111,117,114,99,101,32,38,38,32,104,105,116,46,95,115,111,117,114,99,101,46,118,105,100,101,111,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,92,34,118,105,100,101,111,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,104,105,116,46,95,115,111,117,114,99,101,46,118,105,100,101,111,99,46,114,101,112,108,97,99,101,40,92,34,32,92,34,44,32,92,34,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,115,101,114,84,97,103,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,32,32,99,97,115,101,32,92,34,97,117,100,105,111,92,34,58,92,110,32,32,32,32,32,32,32,32,105,102,32,40,92,34,97,117,100,105,111,99,92,34,32,105,110,32,104,105,116,46,95,115,111,117,114,99,101,32,38,38,32,104,105,116,46,95,115,111,117,114,99,101,46,97,117,100,105,111,99,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,92,34,97,117,100,105,111,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,104,105,116,46,95,115,111,117,114,99,101,46,97,117,100,105,111,99,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,117,115,101,114,84,97,103,58,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,98,114,101,97,107,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,85,115,101,114,32,116,97,103,115,92,110,32,32,32,32,105,102,32,40,92,34,116,97,103,92,34,32,105,110,32,104,105,116,46,95,115,111,117,114,99,101,41,32,123,92,110,32,32,32,32,32,32,104,105,116,46,95,115,111,117,114,99,101,46,116,97,103,46,102,111,114,69,97,99,104,40,116,97,103,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,116,104,105,115,46,99,114,101,97,116,101,85,115,101,114,84,97,103,40,116,97,103,41,41,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,104,105,116,46,95,116,97,103,115,32,61,32,116,97,103,115,59,92,110,32,32,125,92,110,32,32,99,114,101,97,116,101,85,115,101,114,84,97,103,40,116,97,103,41,32,123,92,110,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,92,34,46,92,34,41,59,92,110,32,32,32,32,99,111,110,115,116,32,99,111,108,111,114,84,111,107,101,110,32,61,32,116,111,107,101,110,115,46,112,111,112,40,41,59,92,110,32,32,32,32,99,111,110,115,116,32,98,103,32,61,32,99,111,108,111,114,84,111,107,101,110,59,92,110,32,32,32,32,99,111,110,115,116,32,102,103,32,61,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,108,117,109,41,40,99,111,108,111,114,84,111,107,101,110,41,32,62,32,53,48,32,63,32,92,34,35,48,48,48,92,34,32,58,32,92,34,35,102,102,102,92,34,59,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,92,34,117,115,101,114,92,34,44,92,110,32,32,32,32,32,32,102,103,58,32,102,103,44,92,110,32,32,32,32,32,32,98,103,58,32,98,103,44,92,110,32,32,32,32,32,32,116,101,120,116,58,32,116,111,107,101,110,115,46,106,111,105,110,40,92,34,46,92,34,41,44,92,110,32,32,32,32,32,32,114,97,119,84,101,120,116,58,32,116,97,103,44,92,110,32,32,32,32,32,32,117,115,101,114,84,97,103,58,32,116,114,117,101,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,32,32,101,115,81,117,101,114,121,40,113,117,101,114,121,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,120,105,111,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,46,112,111,115,116,40,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,101,115,96,44,32,113,117,101,114,121,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,114,101,115,32,61,32,114,101,115,112,46,100,97,116,97,59,92,110,32,32,32,32,32,32,105,102,32,40,114,101,115,46,104,105,116,115,63,46,104,105,116,115,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,46,104,105,116,115,46,104,105,116,115,46,102,111,114,69,97,99,104,40,104,105,116,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,104,105,116,91,92,34,95,115,111,117,114,99,101,92,34,93,91,92,34,110,97,109,101,92,34,93,32,61,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,116,114,85,110,101,115,99,97,112,101,41,40,104,105,116,91,92,34,95,115,111,117,114,99,101,92,34,93,91,92,34,110,97,109,101,92,34,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,104,105,116,91,92,34,95,115,111,117,114,99,101,92,34,93,91,92,34,112,97,116,104,92,34,93,32,61,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,115,116,114,85,110,101,115,99,97,112,101,41,40,104,105,116,91,92,34,95,115,111,117,114,99,101,92,34,93,91,92,34,112,97,116,104,92,34,93,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,72,105,116,80,114,111,112,115,40,104,105,116,41,59,92,110,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,101,116,72,105,116,84,97,103,115,40,104,105,116,41,59,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,114,101,115,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,32,32,103,101,116,77,105,109,101,84,121,112,101,115,40,113,117,101,114,121,32,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,99,111,110,115,116,32,65,71,71,83,32,61,32,123,92,110,32,32,32,32,32,32,109,105,109,101,84,121,112,101,115,58,32,123,92,110,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,92,34,109,105,109,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,59,92,110,32,32,32,32,105,102,32,40,33,113,117,101,114,121,41,32,123,92,110,32,32,32,32,32,32,113,117,101,114,121,32,61,32,123,92,110,32,32,32,32,32,32,32,32,97,103,103,115,58,32,65,71,71,83,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,58,32,48,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,113,117,101,114,121,46,115,105,122,101,32,61,32,48,59,92,110,32,32,32,32,32,32,113,117,101,114,121,46,97,103,103,115,32,61,32,65,71,71,83,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,115,81,117,101,114,121,40,113,117,101,114,121,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,109,105,109,101,77,97,112,32,61,32,91,93,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,98,117,99,107,101,116,115,32,61,32,114,101,115,112,91,92,34,97,103,103,114,101,103,97,116,105,111,110,115,92,34,93,91,92,34,109,105,109,101,84,121,112,101,115,92,34,93,91,92,34,98,117,99,107,101,116,115,92,34,93,59,92,110,32,32,32,32,32,32,98,117,99,107,101,116,115,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,46,107,101,121,32,62,32,98,46,107,101,121,41,46,102,111,114,69,97,99,104,40,98,117,99,107,101,116,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,116,109,112,32,61,32,98,117,99,107,101,116,91,92,34,107,101,121,92,34,93,46,115,112,108,105,116,40,92,34,47,92,34,41,59,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,97,116,101,103,111,114,121,32,61,32,116,109,112,91,48,93,59,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,109,105,109,101,32,61,32,116,109,112,91,49,93,59,92,110,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,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,104,105,108,100,32,61,32,123,92,110,32,32,32,32,32,32,32,32,32,32,92,34,105,100,92,34,58,32,98,117,99,107,101,116,91,92,34,107,101,121,92,34,93,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,116,101,120,116,92,34,58,32,96,36,123,109,105,109,101,125,32,40,36,123,98,117,99,107,101,116,91,92,34,100,111,99,95,99,111,117,110,116,92,34,93,125,41,96,92,110,32,32,32,32,32,32,32,32,125,59,92,110,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,92,110,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,92,110,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,92,110,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,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,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,92,110,32,32,32,32,32,32,32,32,32,32,109,105,109,101,77,97,112,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,99,97,116,101,103,111,114,121,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,91,99,104,105,108,100,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,99,97,116,101,103,111,114,121,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,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,92,110,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,99,104,105,108,100,114,101,110,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,99,104,105,108,100,114,101,110,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,46,105,100,46,108,111,99,97,108,101,67,111,109,112,97,114,101,40,98,46,105,100,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,109,105,109,101,77,97,112,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,46,105,100,46,108,111,99,97,108,101,67,111,109,112,97,114,101,40,98,46,105,100,41,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,98,117,99,107,101,116,115,44,92,110,32,32,32,32,32,32,32,32,109,105,109,101,77,97,112,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,32,32,95,99,114,101,97,116,101,69,115,84,97,103,40,116,97,103,44,32,99,111,117,110,116,41,32,123,92,110,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,92,34,46,92,34,41,59,92,110,32,32,32,32,105,102,32,40,47,46,42,92,92,46,35,91,48,45,57,97,45,102,93,123,54,125,47,46,116,101,115,116,40,116,97,103,41,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,32,32,105,100,58,32,116,111,107,101,110,115,46,115,108,105,99,101,40,48,44,32,45,49,41,46,106,111,105,110,40,92,34,46,92,34,41,44,92,110,32,32,32,32,32,32,32,32,99,111,108,111,114,58,32,116,111,107,101,110,115,46,112,111,112,40,41,44,92,110,32,32,32,32,32,32,32,32,105,115,76,101,97,102,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,99,111,117,110,116,58,32,99,111,117,110,116,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,123,92,110,32,32,32,32,32,32,105,100,58,32,116,97,103,44,92,110,32,32,32,32,32,32,99,111,117,110,116,58,32,99,111,117,110,116,44,92,110,32,32,32,32,32,32,105,115,76,101,97,102,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,99,111,108,111,114,58,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,32,32,103,101,116,84,97,103,115,40,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,101,115,81,117,101,114,121,40,123,92,110,32,32,32,32,32,32,97,103,103,115,58,32,123,92,110,32,32,32,32,32,32,32,32,116,97,103,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,92,34,116,97,103,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,115,105,122,101,58,32,48,92,110,32,32,32,32,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,115,101,101,110,32,61,32,110,101,119,32,83,101,116,40,41,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,116,97,103,115,32,61,32,114,101,115,112,91,92,34,97,103,103,114,101,103,97,116,105,111,110,115,92,34,93,91,92,34,116,97,103,115,92,34,93,91,92,34,98,117,99,107,101,116,115,92,34,93,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,91,92,34,107,101,121,92,34,93,46,108,111,99,97,108,101,67,111,109,112,97,114,101,40,98,91,92,34,107,101,121,92,34,93,41,41,46,109,97,112,40,98,117,99,107,101,116,32,61,62,32,116,104,105,115,46,95,99,114,101,97,116,101,69,115,84,97,103,40,98,117,99,107,101,116,91,92,34,107,101,121,92,34,93,44,32,98,117,99,107,101,116,91,92,34,100,111,99,95,99,111,117,110,116,92,34,93,41,41,59,92,110,32,32,32,32,32,32,47,47,32,82,101,109,111,118,101,32,100,117,112,108,105,99,97,116,101,115,32,40,115,97,109,101,32,116,97,103,32,119,105,116,104,32,100,105,102,102,101,114,101,110,116,32,99,111,108,111,114,41,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,116,97,103,115,46,102,105,108,116,101,114,40,116,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,115,101,101,110,46,104,97,115,40,116,46,105,100,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,115,101,101,110,46,97,100,100,40,116,46,105,100,41,59,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,59,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,32,32,115,97,118,101,84,97,103,40,116,97,103,44,32,104,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,120,105,111,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,46,112,111,115,116,40,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,116,97,103,47,96,32,43,32,104,105,116,91,92,34,95,115,111,117,114,99,101,92,34,93,91,92,34,105,110,100,101,120,92,34,93,44,32,123,92,110,32,32,32,32,32,32,100,101,108,101,116,101,58,32,102,97,108,115,101,44,92,110,32,32,32,32,32,32,110,97,109,101,58,32,116,97,103,44,92,110,32,32,32,32,32,32,100,111,99,95,105,100,58,32,104,105,116,91,92,34,95,105,100,92,34,93,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,32,32,100,101,108,101,116,101,84,97,103,40,116,97,103,44,32,104,105,116,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,97,120,105,111,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,95,100,101,102,97,117,108,116,40,41,46,112,111,115,116,40,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,116,97,103,47,96,32,43,32,104,105,116,91,92,34,95,115,111,117,114,99,101,92,34,93,91,92,34,105,110,100,101,120,92,34,93,44,32,123,92,110,32,32,32,32,32,32,100,101,108,101,116,101,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,110,97,109,101,58,32,116,97,103,44,92,110,32,32,32,32,32,32,100,111,99,95,105,100,58,32,104,105,116,91,92,34,95,105,100,92,34,93,92,110,32,32,32,32,125,41,59,92,110,32,32,125,92,110,32,32,103,101,116,84,114,101,101,109,97,112,67,115,118,85,114,108,40,105,110,100,101,120,73,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,115,47,36,123,105,110,100,101,120,73,100,125,47,49,96,59,92,110,32,32,125,92,110,32,32,103,101,116,77,105,109,101,67,115,118,85,114,108,40,105,110,100,101,120,73,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,115,47,36,123,105,110,100,101,120,73,100,125,47,50,96,59,92,110,32,32,125,92,110,32,32,103,101,116,83,105,122,101,67,115,118,40,105,110,100,101,120,73,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,115,47,36,123,105,110,100,101,120,73,100,125,47,51,96,59,92,110,32,32,125,92,110,32,32,103,101,116,68,97,116,101,67,115,118,40,105,110,100,101,120,73,100,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,115,47,36,123,105,110,100,101,120,73,100,125,47,52,96,59,92,110,32,32,125,92,110,125,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,110,101,119,32,83,105,115,116,50,65,112,105,40,92,34,92,34,41,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,83,105,115,116,50,65,112,105,46,116,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,83,105,115,116,50,81,117,101,114,121,46,116,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,83,105,115,116,50,81,117,101,114,121,46,116,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,115,116,111,114,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,115,116,111,114,101,32,42,47,32,92,34,46,47,115,114,99,47,115,116,111,114,101,47,105,110,100,101,120,46,116,115,92,34,41,59,92,110,92,110,99,111,110,115,116,32,83,79,82,84,95,77,79,68,69,83,32,61,32,123,92,110,32,32,115,99,111,114,101,58,32,123,92,110,32,32,32,32,109,111,100,101,58,32,91,123,92,110,32,32,32,32,32,32,95,115,99,111,114,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,100,101,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,95,116,105,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,97,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,93,44,92,110,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,46,95,115,99,111,114,101,92,110,32,32,125,44,92,110,32,32,114,97,110,100,111,109,58,32,123,92,110,32,32,32,32,109,111,100,101,58,32,91,123,92,110,32,32,32,32,32,32,95,115,99,111,114,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,100,101,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,95,116,105,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,97,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,93,44,92,110,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,46,95,115,99,111,114,101,92,110,32,32,125,44,92,110,32,32,100,97,116,101,65,115,99,58,32,123,92,110,32,32,32,32,109,111,100,101,58,32,91,123,92,110,32,32,32,32,32,32,109,116,105,109,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,97,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,95,116,105,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,97,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,93,44,92,110,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,46,95,115,111,117,114,99,101,46,109,116,105,109,101,92,110,32,32,125,44,92,110,32,32,100,97,116,101,68,101,115,99,58,32,123,92,110,32,32,32,32,109,111,100,101,58,32,91,123,92,110,32,32,32,32,32,32,109,116,105,109,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,100,101,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,95,116,105,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,97,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,93,44,92,110,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,46,95,115,111,117,114,99,101,46,109,116,105,109,101,92,110,32,32,125,44,92,110,32,32,115,105,122,101,65,115,99,58,32,123,92,110,32,32,32,32,109,111,100,101,58,32,91,123,92,110,32,32,32,32,32,32,115,105,122,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,97,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,95,116,105,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,97,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,93,44,92,110,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,46,95,115,111,117,114,99,101,46,115,105,122,101,92,110,32,32,125,44,92,110,32,32,115,105,122,101,68,101,115,99,58,32,123,92,110,32,32,32,32,109,111,100,101,58,32,91,123,92,110,32,32,32,32,32,32,115,105,122,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,100,101,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,95,116,105,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,97,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,93,44,92,110,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,46,95,115,111,117,114,99,101,46,115,105,122,101,92,110,32,32,125,44,92,110,32,32,110,97,109,101,65,115,99,58,32,123,92,110,32,32,32,32,109,111,100,101,58,32,91,123,92,110,32,32,32,32,32,32,110,97,109,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,97,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,95,116,105,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,97,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,93,44,92,110,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,46,95,115,111,117,114,99,101,46,110,97,109,101,92,110,32,32,125,44,92,110,32,32,110,97,109,101,68,101,115,99,58,32,123,92,110,32,32,32,32,109,111,100,101,58,32,91,123,92,110,32,32,32,32,32,32,110,97,109,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,100,101,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,32,123,92,110,32,32,32,32,32,32,95,116,105,101,58,32,123,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,97,115,99,92,34,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,93,44,92,110,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,46,95,115,111,117,114,99,101,46,110,97,109,101,92,110,32,32,125,92,110,125,59,92,110,99,108,97,115,115,32,83,105,115,116,50,81,117,101,114,121,32,123,92,110,32,32,115,101,97,114,99,104,81,117,101,114,121,40,98,108,97,110,107,83,101,97,114,99,104,32,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,99,111,110,115,116,32,103,101,116,116,101,114,115,32,61,32,95,115,116,111,114,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,103,101,116,116,101,114,115,59,92,110,32,32,32,32,99,111,110,115,116,32,115,101,97,114,99,104,84,101,120,116,32,61,32,103,101,116,116,101,114,115,46,115,101,97,114,99,104,84,101,120,116,59,92,110,32,32,32,32,99,111,110,115,116,32,112,97,116,104,84,101,120,116,32,61,32,103,101,116,116,101,114,115,46,112,97,116,104,84,101,120,116,59,92,110,32,32,32,32,99,111,110,115,116,32,101,109,112,116,121,32,61,32,115,101,97,114,99,104,84,101,120,116,32,61,61,61,32,92,34,92,34,59,92,110,32,32,32,32,99,111,110,115,116,32,115,105,122,101,77,105,110,32,61,32,103,101,116,116,101,114,115,46,115,105,122,101,77,105,110,59,92,110,32,32,32,32,99,111,110,115,116,32,115,105,122,101,77,97,120,32,61,32,103,101,116,116,101,114,115,46,115,105,122,101,77,97,120,59,92,110,32,32,32,32,99,111,110,115,116,32,100,97,116,101,77,105,110,32,61,32,103,101,116,116,101,114,115,46,100,97,116,101,77,105,110,59,92,110,32,32,32,32,99,111,110,115,116,32,100,97,116,101,77,97,120,32,61,32,103,101,116,116,101,114,115,46,100,97,116,101,77,97,120,59,92,110,32,32,32,32,99,111,110,115,116,32,102,117,122,122,121,32,61,32,103,101,116,116,101,114,115,46,102,117,122,122,121,59,92,110,32,32,32,32,99,111,110,115,116,32,115,105,122,101,32,61,32,103,101,116,116,101,114,115,46,115,105,122,101,59,92,110,32,32,32,32,99,111,110,115,116,32,97,102,116,101,114,32,61,32,103,101,116,116,101,114,115,46,108,97,115,116,68,111,99,59,92,110,32,32,32,32,99,111,110,115,116,32,115,101,108,101,99,116,101,100,73,110,100,101,120,73,100,115,32,61,32,103,101,116,116,101,114,115,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,109,97,112,40,105,100,120,32,61,62,32,105,100,120,46,105,100,41,59,92,110,32,32,32,32,99,111,110,115,116,32,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,32,61,32,103,101,116,116,101,114,115,46,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,59,92,110,32,32,32,32,99,111,110,115,116,32,115,101,108,101,99,116,101,100,84,97,103,115,32,61,32,103,101,116,116,101,114,115,46,115,101,108,101,99,116,101,100,84,97,103,115,59,92,110,32,32,32,32,99,111,110,115,116,32,108,101,103,97,99,121,69,83,32,61,32,95,115,116,111,114,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,101,115,86,101,114,115,105,111,110,76,101,103,97,99,121,59,92,110,32,32,32,32,99,111,110,115,116,32,102,105,108,116,101,114,115,32,61,32,91,123,92,110,32,32,32,32,32,32,116,101,114,109,115,58,32,123,92,110,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,115,101,108,101,99,116,101,100,73,110,100,101,120,73,100,115,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,93,59,92,110,32,32,32,32,99,111,110,115,116,32,102,105,101,108,100,115,32,61,32,91,92,34,110,97,109,101,94,56,92,34,44,32,92,34,99,111,110,116,101,110,116,94,51,92,34,44,32,92,34,97,108,98,117,109,94,56,92,34,44,32,92,34,97,114,116,105,115,116,94,56,92,34,44,32,92,34,116,105,116,108,101,94,56,92,34,44,32,92,34,103,101,110,114,101,94,50,92,34,44,32,92,34,97,108,98,117,109,95,97,114,116,105,115,116,94,56,92,34,44,32,92,34,102,111,110,116,95,110,97,109,101,94,54,92,34,93,59,92,110,32,32,32,32,105,102,32,40,103,101,116,116,101,114,115,46,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,41,32,123,92,110,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,92,34,112,97,116,104,46,116,101,120,116,94,53,92,34,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,102,117,122,122,121,41,32,123,92,110,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,92,34,99,111,110,116,101,110,116,46,110,71,114,97,109,92,34,41,59,92,110,32,32,32,32,32,32,105,102,32,40,103,101,116,116,101,114,115,46,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,92,34,112,97,116,104,46,110,71,114,97,109,92,34,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,92,34,110,97,109,101,46,110,71,114,97,109,94,51,92,34,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,33,98,108,97,110,107,83,101,97,114,99,104,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,105,122,101,77,105,110,32,38,38,32,115,105,122,101,77,97,120,41,32,123,92,110,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,114,97,110,103,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,116,101,58,32,115,105,122,101,77,105,110,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,116,101,58,32,115,105,122,101,77,97,120,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,105,122,101,77,105,110,41,32,123,92,110,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,114,97,110,103,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,116,101,58,32,115,105,122,101,77,105,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,105,122,101,77,97,120,41,32,123,92,110,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,114,97,110,103,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,116,101,58,32,115,105,122,101,77,97,120,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,100,97,116,101,77,105,110,32,38,38,32,100,97,116,101,77,97,120,41,32,123,92,110,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,114,97,110,103,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,116,105,109,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,116,101,58,32,100,97,116,101,77,105,110,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,116,101,58,32,100,97,116,101,77,97,120,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,97,116,101,77,105,110,41,32,123,92,110,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,114,97,110,103,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,116,105,109,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,116,101,58,32,100,97,116,101,77,105,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,97,116,101,77,97,120,41,32,123,92,110,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,114,97,110,103,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,116,105,109,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,116,101,58,32,100,97,116,101,77,97,120,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,99,111,110,115,116,32,112,97,116,104,32,61,32,112,97,116,104,84,101,120,116,46,114,101,112,108,97,99,101,40,47,92,92,47,36,47,44,32,92,34,92,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,92,110,32,32,32,32,32,32,105,102,32,40,112,97,116,104,32,33,61,61,32,92,34,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,116,101,114,109,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,58,32,112,97,116,104,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,109,105,109,101,92,34,58,32,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,101,100,84,97,103,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,103,101,116,116,101,114,115,46,111,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,116,97,103,92,34,58,32,115,101,108,101,99,116,101,100,84,97,103,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,84,97,103,115,46,102,111,114,69,97,99,104,40,116,97,103,32,61,62,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,116,97,103,92,34,58,32,116,97,103,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,41,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,108,101,116,32,113,117,101,114,121,59,92,110,32,32,32,32,105,102,32,40,103,101,116,116,101,114,115,46,111,112,116,81,117,101,114,121,77,111,100,101,32,61,61,61,32,92,34,115,105,109,112,108,101,92,34,41,32,123,92,110,32,32,32,32,32,32,113,117,101,114,121,32,61,32,123,92,110,32,32,32,32,32,32,32,32,115,105,109,112,108,101,95,113,117,101,114,121,95,115,116,114,105,110,103,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,115,101,97,114,99,104,84,101,120,116,44,92,110,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,92,110,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,95,111,112,101,114,97,116,111,114,58,32,92,34,97,110,100,92,34,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,113,117,101,114,121,32,61,32,123,92,110,32,32,32,32,32,32,32,32,113,117,101,114,121,95,115,116,114,105,110,103,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,115,101,97,114,99,104,84,101,120,116,44,92,110,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,95,102,105,101,108,100,58,32,92,34,110,97,109,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,95,111,112,101,114,97,116,111,114,58,32,92,34,97,110,100,92,34,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,125,92,110,32,32,32,32,99,111,110,115,116,32,113,32,61,32,123,92,110,32,32,32,32,32,32,95,115,111,117,114,99,101,58,32,123,92,110,32,32,32,32,32,32,32,32,101,120,99,108,117,100,101,115,58,32,91,92,34,99,111,110,116,101,110,116,92,34,44,32,92,34,95,116,105,101,92,34,93,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,113,117,101,114,121,58,32,123,92,110,32,32,32,32,32,32,32,32,98,111,111,108,58,32,123,92,110,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,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,115,111,114,116,58,32,83,79,82,84,95,77,79,68,69,83,91,103,101,116,116,101,114,115,46,115,111,114,116,77,111,100,101,93,46,109,111,100,101,44,92,110,32,32,32,32,32,32,97,103,103,115,58,32,123,92,110,32,32,32,32,32,32,32,32,116,111,116,97,108,95,115,105,122,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,92,34,115,117,109,92,34,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,102,105,101,108,100,92,34,58,32,92,34,115,105,122,101,92,34,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,116,111,116,97,108,95,99,111,117,110,116,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,92,34,118,97,108,117,101,95,99,111,117,110,116,92,34,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,102,105,101,108,100,92,34,58,32,92,34,115,105,122,101,92,34,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,115,105,122,101,58,32,115,105,122,101,92,110,32,32,32,32,125,59,92,110,32,32,32,32,105,102,32,40,33,101,109,112,116,121,32,38,38,32,33,98,108,97,110,107,83,101,97,114,99,104,41,32,123,92,110,32,32,32,32,32,32,113,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,32,61,32,113,117,101,114,121,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,97,102,116,101,114,41,32,123,92,110,32,32,32,32,32,32,113,46,115,101,97,114,99,104,95,97,102,116,101,114,32,61,32,91,83,79,82,84,95,77,79,68,69,83,91,103,101,116,116,101,114,115,46,115,111,114,116,77,111,100,101,93,46,107,101,121,40,97,102,116,101,114,41,44,32,97,102,116,101,114,91,92,34,95,105,100,92,34,93,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,103,101,116,116,101,114,115,46,111,112,116,72,105,103,104,108,105,103,104,116,41,32,123,92,110,32,32,32,32,32,32,113,46,104,105,103,104,108,105,103,104,116,32,61,32,123,92,110,32,32,32,32,32,32,32,32,112,114,101,95,116,97,103,115,58,32,91,92,34,60,109,97,114,107,62,92,34,93,44,92,110,32,32,32,32,32,32,32,32,112,111,115,116,95,116,97,103,115,58,32,91,92,34,60,47,109,97,114,107,62,92,34,93,44,92,110,32,32,32,32,32,32,32,32,102,114,97,103,109,101,110,116,95,115,105,122,101,58,32,103,101,116,116,101,114,115,46,111,112,116,70,114,97,103,109,101,110,116,83,105,122,101,44,92,110,32,32,32,32,32,32,32,32,110,117,109,98,101,114,95,111,102,95,102,114,97,103,109,101,110,116,115,58,32,49,44,92,110,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,92,34,115,99,111,114,101,92,34,44,92,110,32,32,32,32,32,32,32,32,102,105,101,108,100,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,58,32,123,125,44,92,110,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,123,125,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,110,97,109,101,46,110,71,114,97,109,92,34,58,32,123,125,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,99,111,110,116,101,110,116,46,110,71,114,97,109,92,34,58,32,123,125,44,92,110,32,32,32,32,32,32,32,32,32,32,102,111,110,116,95,110,97,109,101,58,32,123,125,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,105,102,32,40,33,108,101,103,97,99,121,69,83,41,32,123,92,110,32,32,32,32,32,32,32,32,113,46,104,105,103,104,108,105,103,104,116,46,109,97,120,95,97,110,97,108,121,122,101,100,95,111,102,102,115,101,116,32,61,32,57,57,57,57,57,57,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,103,101,116,116,101,114,115,46,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,113,46,104,105,103,104,108,105,103,104,116,46,102,105,101,108,100,115,91,92,34,112,97,116,104,46,116,101,120,116,92,34,93,32,61,32,123,125,59,92,110,32,32,32,32,32,32,32,32,113,46,104,105,103,104,108,105,103,104,116,46,102,105,101,108,100,115,91,92,34,112,97,116,104,46,110,71,114,97,109,92,34,93,32,61,32,123,125,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,105,102,32,40,103,101,116,116,101,114,115,46,115,111,114,116,77,111,100,101,32,61,61,61,32,92,34,114,97,110,100,111,109,92,34,41,32,123,92,110,32,32,32,32,32,32,113,46,113,117,101,114,121,32,61,32,123,92,110,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,95,115,99,111,114,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,98,111,111,108,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,117,115,116,58,32,102,105,108,116,101,114,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,115,58,32,91,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,97,110,100,111,109,95,115,99,111,114,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,101,100,58,32,103,101,116,116,101,114,115,46,115,101,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,92,34,95,115,101,113,95,110,111,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,119,101,105,103,104,116,58,32,49,48,48,48,92,110,32,32,32,32,32,32,32,32,32,32,125,93,44,92,110,32,32,32,32,32,32,32,32,32,32,98,111,111,115,116,95,109,111,100,101,58,32,92,34,115,117,109,92,34,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,59,92,110,32,32,32,32,32,32,105,102,32,40,33,101,109,112,116,121,32,38,38,32,33,98,108,97,110,107,83,101,97,114,99,104,41,32,123,92,110,32,32,32,32,32,32,32,32,113,46,113,117,101,114,121,46,102,117,110,99,116,105,111,110,95,115,99,111,114,101,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,46,112,117,115,104,40,113,117,101,114,121,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,32,32,114,101,116,117,114,110,32,113,59,92,110,32,32,125,92,110,125,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,110,101,119,32,83,105,115,116,50,81,117,101,114,121,40,41,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,83,105,115,116,50,81,117,101,114,121,46,116,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,105,49,56,110,47,109,101,115,115,97,103,101,115,46,116,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,105,49,56,110,47,109,101,115,115,97,103,101,115,46,116,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,123,92,110,32,32,101,110,58,32,123,92,110,32,32,32,32,102,105,108,101,80,97,103,101,58,32,123,92,110,32,32,32,32,32,32,110,111,116,70,111,117,110,100,58,32,92,34,78,111,116,32,102,111,117,110,100,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,97,114,99,104,66,97,114,58,32,123,92,110,32,32,32,32,32,32,115,105,109,112,108,101,58,32,92,34,83,101,97,114,99,104,92,34,44,92,110,32,32,32,32,32,32,97,100,118,97,110,99,101,100,58,32,92,34,65,100,118,97,110,99,101,100,32,115,101,97,114,99,104,92,34,44,92,110,32,32,32,32,32,32,102,117,122,122,121,58,32,92,34,70,117,122,122,121,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,100,100,84,97,103,58,32,92,34,65,100,100,92,34,44,92,110,32,32,32,32,100,101,108,101,116,101,84,97,103,58,32,92,34,68,101,108,101,116,101,92,34,44,92,110,32,32,32,32,100,111,119,110,108,111,97,100,58,32,92,34,68,111,119,110,108,111,97,100,92,34,44,92,110,32,32,32,32,97,110,100,58,32,92,34,97,110,100,92,34,44,92,110,32,32,32,32,112,97,103,101,58,32,92,34,112,97,103,101,92,34,44,92,110,32,32,32,32,112,97,103,101,115,58,32,92,34,112,97,103,101,115,92,34,44,92,110,32,32,32,32,109,105,109,101,84,121,112,101,115,58,32,92,34,77,101,100,105,97,32,116,121,112,101,115,92,34,44,92,110,32,32,32,32,116,97,103,115,58,32,92,34,84,97,103,115,92,34,44,92,110,32,32,32,32,116,97,103,70,105,108,116,101,114,58,32,92,34,70,105,108,116,101,114,32,116,97,103,115,92,34,44,92,110,32,32,32,32,104,101,108,112,58,32,123,92,110,32,32,32,32,32,32,115,105,109,112,108,101,83,101,97,114,99,104,58,32,92,34,83,105,109,112,108,101,32,115,101,97,114,99,104,92,34,44,92,110,32,32,32,32,32,32,97,100,118,97,110,99,101,100,83,101,97,114,99,104,58,32,92,34,65,100,118,97,110,99,101,100,32,115,101,97,114,99,104,92,34,44,92,110,32,32,32,32,32,32,104,101,108,112,58,32,92,34,72,101,108,112,92,34,44,92,110,32,32,32,32,32,32,116,101,114,109,58,32,92,34,60,84,69,82,77,62,92,34,44,92,110,32,32,32,32,32,32,97,110,100,58,32,92,34,65,78,68,32,111,112,101,114,97,116,111,114,92,34,44,92,110,32,32,32,32,32,32,111,114,58,32,92,34,79,82,32,111,112,101,114,97,116,111,114,92,34,44,92,110,32,32,32,32,32,32,110,111,116,58,32,92,34,110,101,103,97,116,101,115,32,97,32,115,105,110,103,108,101,32,116,101,114,109,92,34,44,92,110,32,32,32,32,32,32,113,117,111,116,101,115,58,32,92,34,119,105,108,108,32,109,97,116,99,104,32,116,104,101,32,101,110,99,108,111,115,101,100,32,115,101,113,117,101,110,99,101,32,111,102,32,116,101,114,109,115,32,105,110,32,116,104,97,116,32,115,112,101,99,105,102,105,99,32,111,114,100,101,114,92,34,44,92,110,32,32,32,32,32,32,112,114,101,102,105,120,58,32,92,34,119,105,108,108,32,109,97,116,99,104,32,97,110,121,32,116,101,114,109,32,119,105,116,104,32,97,32,103,105,118,101,110,32,112,114,101,102,105,120,32,119,104,101,110,32,117,115,101,100,32,97,116,32,116,104,101,32,101,110,100,32,111,102,32,97,32,119,111,114,100,92,34,44,92,110,32,32,32,32,32,32,112,97,114,101,110,115,58,32,92,34,117,115,101,100,32,116,111,32,103,114,111,117,112,32,101,120,112,114,101,115,115,105,111,110,115,92,34,44,92,110,32,32,32,32,32,32,116,105,108,100,101,84,101,114,109,58,32,92,34,109,97,116,99,104,32,97,32,116,101,114,109,32,119,105,116,104,32,97,32,103,105,118,101,110,32,101,100,105,116,32,100,105,115,116,97,110,99,101,92,34,44,92,110,32,32,32,32,32,32,116,105,108,100,101,80,104,114,97,115,101,58,32,92,34,109,97,116,99,104,32,97,32,112,104,114,97,115,101,32,119,105,116,104,32,97,32,103,105,118,101,110,32,110,117,109,98,101,114,32,111,102,32,97,108,108,111,119,101,100,32,105,110,116,101,114,118,101,110,105,110,103,32,117,110,109,97,116,99,104,101,100,32,119,111,114,100,115,92,34,44,92,110,32,32,32,32,32,32,101,120,97,109,112,108,101,49,58,32,92,34,70,111,114,32,101,120,97,109,112,108,101,58,32,60,99,111,100,101,62,92,92,92,34,102,114,105,101,100,32,101,103,103,115,92,92,92,34,32,43,40,101,103,103,112,108,97,110,116,32,124,32,112,111,116,97,116,111,41,32,45,102,114,105,116,116,97,116,97,60,47,99,111,100,101,62,32,119,105,108,108,32,109,97,116,99,104,32,116,104,101,32,92,34,32,43,32,92,34,112,104,114,97,115,101,32,60,105,62,102,114,105,101,100,32,101,103,103,115,60,47,105,62,32,97,110,100,32,101,105,116,104,101,114,32,60,105,62,101,103,103,112,108,97,110,116,60,47,105,62,32,111,114,32,60,105,62,112,111,116,97,116,111,60,47,105,62,44,32,98,117,116,32,119,105,108,108,32,105,103,110,111,114,101,32,114,101,115,117,108,116,115,32,92,34,32,43,32,92,34,99,111,110,116,97,105,110,105,110,103,32,60,105,62,102,114,105,116,116,97,116,97,60,47,105,62,46,92,34,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,79,112,101,114,97,116,111,114,58,32,92,34,87,104,101,110,32,110,101,105,116,104,101,114,32,60,99,111,100,101,62,43,60,47,99,111,100,101,62,32,111,114,32,60,99,111,100,101,62,124,60,47,99,111,100,101,62,32,105,115,32,115,112,101,99,105,102,105,101,100,44,32,116,104,101,32,100,101,102,97,117,108,116,32,111,112,101,114,97,116,111,114,32,105,115,32,92,34,32,43,32,92,34,60,99,111,100,101,62,43,60,47,99,111,100,101,62,32,40,97,110,100,41,46,92,34,44,92,110,32,32,32,32,32,32,102,117,122,122,121,58,32,92,34,87,104,101,110,32,116,104,101,32,60,98,62,70,117,122,122,121,60,47,98,62,32,111,112,116,105,111,110,32,105,115,32,99,104,101,99,107,101,100,44,32,112,97,114,116,105,97,108,32,109,97,116,99,104,101,115,32,98,97,115,101,100,32,111,110,32,51,45,103,114,97,109,115,32,97,114,101,32,97,108,115,111,32,114,101,116,117,114,110,101,100,46,92,34,44,92,110,32,32,32,32,32,32,109,111,114,101,73,110,102,111,83,105,109,112,108,101,58,32,92,34,70,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,44,32,115,101,101,32,60,97,32,116,97,114,103,101,116,61,92,92,92,34,95,98,108,97,110,107,92,92,92,34,32,92,34,32,43,32,92,34,114,101,108,61,92,92,92,34,110,111,114,101,102,101,114,114,101,114,92,92,92,34,32,104,114,101,102,61,92,92,92,34,47,47,119,119,119,46,101,108,97,115,116,105,99,46,99,111,47,103,117,105,100,101,47,101,110,47,101,108,97,115,116,105,99,115,101,97,114,99,104,47,114,101,102,101,114,101,110,99,101,47,99,117,114,114,101,110,116,47,113,117,101,114,121,45,100,115,108,45,115,105,109,112,108,101,45,113,117,101,114,121,45,115,116,114,105,110,103,45,113,117,101,114,121,46,104,116,109,108,92,92,92,34,62,69,108,97,115,116,105,99,115,101,97,114,99,104,32,100,111,99,117,109,101,110,116,97,116,105,111,110,60,47,97,62,92,34,44,92,110,32,32,32,32,32,32,109,111,114,101,73,110,102,111,65,100,118,97,110,99,101,100,58,32,92,34,70,111,114,32,100,111,99,117,109,101,110,116,97,116,105,111,110,32,97,98,111,117,116,32,116,104,101,32,97,100,118,97,110,99,101,100,32,115,101,97,114,99,104,32,109,111,100,101,44,32,115,101,101,32,60,97,32,116,97,114,103,101,116,61,92,92,92,34,95,98,108,97,110,107,92,92,92,34,32,114,101,108,61,92,92,92,34,110,111,114,101,102,101,114,114,101,114,92,92,92,34,32,104,114,101,102,61,92,92,92,34,47,47,119,119,119,46,101,108,97,115,116,105,99,46,99,111,47,103,117,105,100,101,47,101,110,47,101,108,97,115,116,105,99,115,101,97,114,99,104,47,114,101,102,101,114,101,110,99,101,47,99,117,114,114,101,110,116,47,113,117,101,114,121,45,100,115,108,45,113,117,101,114,121,45,115,116,114,105,110,103,45,113,117,101,114,121,46,104,116,109,108,35,113,117,101,114,121,45,115,116,114,105,110,103,45,115,121,110,116,97,120,92,92,92,34,62,69,108,97,115,116,105,99,115,101,97,114,99,104,32,100,111,99,117,109,101,110,116,97,116,105,111,110,60,47,97,62,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,110,102,105,103,58,32,92,34,67,111,110,102,105,103,117,114,97,116,105,111,110,92,34,44,92,110,32,32,32,32,99,111,110,102,105,103,68,101,115,99,114,105,112,116,105,111,110,58,32,92,34,67,111,110,102,105,103,117,114,97,116,105,111,110,32,105,115,32,115,97,118,101,100,32,105,110,32,114,101,97,108,32,116,105,109,101,32,102,111,114,32,116,104,105,115,32,98,114,111,119,115,101,114,46,92,34,44,92,110,32,32,32,32,99,111,110,102,105,103,82,101,115,101,116,58,32,92,34,82,101,115,101,116,32,99,111,110,102,105,103,117,114,97,116,105,111,110,92,34,44,92,110,32,32,32,32,115,101,97,114,99,104,79,112,116,105,111,110,115,58,32,92,34,83,101,97,114,99,104,32,111,112,116,105,111,110,115,92,34,44,92,110,32,32,32,32,116,114,101,101,109,97,112,79,112,116,105,111,110,115,58,32,92,34,84,114,101,101,109,97,112,32,111,112,116,105,111,110,115,92,34,44,92,110,32,32,32,32,100,105,115,112,108,97,121,79,112,116,105,111,110,115,58,32,92,34,68,105,115,112,108,97,121,32,111,112,116,105,111,110,115,92,34,44,92,110,32,32,32,32,111,112,116,58,32,123,92,110,32,32,32,32,32,32,108,97,110,103,58,32,92,34,76,97,110,103,117,97,103,101,92,34,44,92,110,32,32,32,32,32,32,104,105,103,104,108,105,103,104,116,58,32,92,34,69,110,97,98,108,101,32,104,105,103,104,108,105,103,104,116,105,110,103,92,34,44,92,110,32,32,32,32,32,32,102,117,122,122,121,58,32,92,34,83,101,116,32,102,117,122,122,121,32,115,101,97,114,99,104,32,98,121,32,100,101,102,97,117,108,116,92,34,44,92,110,32,32,32,32,32,32,115,101,97,114,99,104,73,110,80,97,116,104,58,32,92,34,69,110,97,98,108,101,32,109,97,116,99,104,105,110,103,32,113,117,101,114,121,32,97,103,97,105,110,115,116,32,100,111,99,117,109,101,110,116,32,112,97,116,104,92,34,44,92,110,32,32,32,32,32,32,115,117,103,103,101,115,116,80,97,116,104,58,32,92,34,69,110,97,98,108,101,32,97,117,116,111,45,99,111,109,112,108,101,116,101,32,105,110,32,112,97,116,104,32,102,105,108,116,101,114,32,98,97,114,92,34,44,92,110,32,32,32,32,32,32,102,114,97,103,109,101,110,116,83,105,122,101,58,32,92,34,72,105,103,104,108,105,103,104,116,32,99,111,110,116,101,120,116,32,115,105,122,101,32,105,110,32,99,104,97,114,97,99,116,101,114,115,92,34,44,92,110,32,32,32,32,32,32,113,117,101,114,121,77,111,100,101,58,32,92,34,83,101,97,114,99,104,32,109,111,100,101,92,34,44,92,110,32,32,32,32,32,32,100,105,115,112,108,97,121,77,111,100,101,58,32,92,34,68,105,115,112,108,97,121,92,34,44,92,110,32,32,32,32,32,32,99,111,108,117,109,110,115,58,32,92,34,67,111,108,117,109,110,32,99,111,117,110,116,92,34,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,84,121,112,101,58,32,92,34,84,114,101,101,109,97,112,32,116,121,112,101,92,34,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,84,105,108,105,110,103,58,32,92,34,84,114,101,101,109,97,112,32,116,105,108,105,110,103,92,34,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,58,32,92,34,84,114,101,101,109,97,112,32,99,111,108,111,114,32,103,114,111,117,112,105,110,103,32,100,101,112,116,104,32,40,102,108,97,116,41,92,34,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,67,111,108,111,114,58,32,92,34,84,114,101,101,109,97,112,32,99,111,108,111,114,32,40,99,97,115,99,97,100,101,100,41,92,34,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,83,105,122,101,58,32,92,34,84,114,101,101,109,97,112,32,115,105,122,101,92,34,44,92,110,32,32,32,32,32,32,116,104,101,109,101,58,32,92,34,84,104,101,109,101,92,34,44,92,110,32,32,32,32,32,32,108,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,58,32,92,34,68,111,32,110,111,116,32,112,114,101,108,111,97,100,32,102,117,108,108,45,115,105,122,101,32,105,109,97,103,101,115,32,102,111,114,32,97,100,106,97,99,101,110,116,32,115,108,105,100,101,115,32,105,110,32,105,109,97,103,101,32,118,105,101,119,101,114,46,92,34,44,92,110,32,32,32,32,32,32,115,108,105,100,101,68,117,114,97,116,105,111,110,58,32,92,34,83,108,105,100,101,32,100,117,114,97,116,105,111,110,92,34,44,92,110,32,32,32,32,32,32,114,101,115,117,108,116,83,105,122,101,58,32,92,34,78,117,109,98,101,114,32,111,102,32,114,101,115,117,108,116,115,32,112,101,114,32,112,97,103,101,92,34,44,92,110,32,32,32,32,32,32,116,97,103,79,114,79,112,101,114,97,116,111,114,58,32,92,34,85,115,101,32,79,82,32,111,112,101,114,97,116,111,114,32,119,104,101,110,32,115,112,101,99,105,102,121,105,110,103,32,109,117,108,116,105,112,108,101,32,116,97,103,115,46,92,34,44,92,110,32,32,32,32,32,32,104,105,100,101,68,117,112,108,105,99,97,116,101,115,58,32,92,34,72,105,100,101,32,100,117,112,108,105,99,97,116,101,32,114,101,115,117,108,116,115,32,98,97,115,101,100,32,111,110,32,99,104,101,99,107,115,117,109,92,34,44,92,110,32,32,32,32,32,32,104,105,100,101,76,101,103,97,99,121,58,32,92,34,72,105,100,101,32,116,104,101,32,39,108,101,103,97,99,121,69,83,39,32,69,108,97,115,116,105,99,115,101,97,114,99,104,32,110,111,116,105,99,101,92,34,44,92,110,32,32,32,32,32,32,117,112,100,97,116,101,77,105,109,101,77,97,112,58,32,92,34,85,112,100,97,116,101,32,116,104,101,32,77,101,100,105,97,32,84,121,112,101,115,32,116,114,101,101,32,105,110,32,114,101,97,108,32,116,105,109,101,92,34,44,92,110,32,32,32,32,32,32,117,115,101,68,97,116,101,80,105,99,107,101,114,58,32,92,34,85,115,101,32,97,32,68,97,116,101,32,80,105,99,107,101,114,32,99,111,109,112,111,110,101,110,116,32,114,97,116,104,101,114,32,116,104,97,110,32,97,32,115,108,105,100,101,114,92,34,44,92,110,32,32,32,32,32,32,118,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,58,32,92,34,86,105,100,101,111,32,112,114,101,118,105,101,119,32,102,114,97,109,101,32,100,117,114,97,116,105,111,110,32,105,110,32,109,115,92,34,44,92,110,32,32,32,32,32,32,115,105,109,112,108,101,76,105,103,104,116,98,111,120,58,32,92,34,68,105,115,97,98,108,101,32,97,110,105,109,97,116,105,111,110,115,32,105,110,32,105,109,97,103,101,32,118,105,101,119,101,114,92,34,44,92,110,32,32,32,32,32,32,115,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,58,32,92,34,68,105,115,112,108,97,121,32,116,104,101,32,116,97,103,32,102,105,108,116,101,114,32,98,97,114,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,113,117,101,114,121,77,111,100,101,58,32,123,92,110,32,32,32,32,32,32,115,105,109,112,108,101,58,32,92,34,83,105,109,112,108,101,92,34,44,92,110,32,32,32,32,32,32,97,100,118,97,110,99,101,100,58,32,92,34,65,100,118,97,110,99,101,100,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,97,110,103,58,32,123,92,110,32,32,32,32,32,32,101,110,58,32,92,34,69,110,103,108,105,115,104,92,34,44,92,110,32,32,32,32,32,32,102,114,58,32,92,34,70,114,97,110,195,167,97,105,115,92,34,44,92,110,32,32,32,32,32,32,92,34,122,104,45,67,78,92,34,58,32,92,34,231,174,128,228,189,147,228,184,173,230,150,135,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,105,115,112,108,97,121,77,111,100,101,58,32,123,92,110,32,32,32,32,32,32,103,114,105,100,58,32,92,34,71,114,105,100,92,34,44,92,110,32,32,32,32,32,32,108,105,115,116,58,32,92,34,76,105,115,116,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,108,117,109,110,115,58,32,123,92,110,32,32,32,32,32,32,97,117,116,111,58,32,92,34,65,117,116,111,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,114,101,101,109,97,112,84,121,112,101,58,32,123,92,110,32,32,32,32,32,32,99,97,115,99,97,100,101,100,58,32,92,34,67,97,115,99,97,100,101,100,92,34,44,92,110,32,32,32,32,32,32,102,108,97,116,58,32,92,34,70,108,97,116,32,40,99,111,109,112,97,99,116,41,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,114,101,101,109,97,112,83,105,122,101,58,32,123,92,110,32,32,32,32,32,32,115,109,97,108,108,58,32,92,34,83,109,97,108,108,92,34,44,92,110,32,32,32,32,32,32,109,101,100,105,117,109,58,32,92,34,77,101,100,105,117,109,92,34,44,92,110,32,32,32,32,32,32,108,97,114,103,101,58,32,92,34,76,97,114,103,101,92,34,44,92,110,32,32,32,32,32,32,120,76,97,114,103,101,58,32,92,34,120,76,97,114,103,101,92,34,44,92,110,32,32,32,32,32,32,120,120,76,97,114,103,101,58,32,92,34,120,120,76,97,114,103,101,92,34,44,92,110,32,32,32,32,32,32,99,117,115,116,111,109,58,32,92,34,67,117,115,116,111,109,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,114,101,101,109,97,112,84,105,108,105,110,103,58,32,123,92,110,32,32,32,32,32,32,98,105,110,97,114,121,58,32,92,34,66,105,110,97,114,121,92,34,44,92,110,32,32,32,32,32,32,115,113,117,97,114,105,102,121,58,32,92,34,83,113,117,97,114,105,102,121,92,34,44,92,110,32,32,32,32,32,32,115,108,105,99,101,58,32,92,34,83,108,105,99,101,92,34,44,92,110,32,32,32,32,32,32,100,105,99,101,58,32,92,34,68,105,99,101,92,34,44,92,110,32,32,32,32,32,32,115,108,105,99,101,68,105,99,101,58,32,92,34,83,108,105,99,101,32,38,32,68,105,99,101,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,104,101,109,101,58,32,123,92,110,32,32,32,32,32,32,108,105,103,104,116,58,32,92,34,76,105,103,104,116,92,34,44,92,110,32,32,32,32,32,32,98,108,97,99,107,58,32,92,34,66,108,97,99,107,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,105,116,58,32,92,34,104,105,116,92,34,44,92,110,32,32,32,32,104,105,116,115,58,32,92,34,104,105,116,115,92,34,44,92,110,32,32,32,32,100,101,116,97,105,108,115,58,32,92,34,68,101,116,97,105,108,115,92,34,44,92,110,32,32,32,32,115,116,97,116,115,58,32,92,34,83,116,97,116,115,92,34,44,92,110,32,32,32,32,113,117,101,114,121,84,105,109,101,58,32,92,34,81,117,101,114,121,32,116,105,109,101,92,34,44,92,110,32,32,32,32,116,111,116,97,108,83,105,122,101,58,32,92,34,84,111,116,97,108,32,115,105,122,101,92,34,44,92,110,32,32,32,32,112,97,116,104,66,97,114,58,32,123,92,110,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,92,34,70,105,108,116,101,114,32,112,97,116,104,92,34,44,92,110,32,32,32,32,32,32,109,111,100,97,108,84,105,116,108,101,58,32,92,34,83,101,108,101,99,116,32,112,97,116,104,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,101,98,117,103,58,32,92,34,68,101,98,117,103,32,105,110,102,111,114,109,97,116,105,111,110,92,34,44,92,110,32,32,32,32,100,101,98,117,103,68,101,115,99,114,105,112,116,105,111,110,58,32,92,34,73,110,102,111,114,109,97,116,105,111,110,32,117,115,101,102,117,108,32,102,111,114,32,100,101,98,117,103,103,105,110,103,46,32,73,102,32,121,111,117,32,101,110,99,111,117,110,116,101,114,32,98,117,103,115,32,111,114,32,104,97,118,101,32,115,117,103,103,101,115,116,105,111,110,115,32,102,111,114,92,34,32,43,32,92,34,32,110,101,119,32,102,101,97,116,117,114,101,115,44,32,112,108,101,97,115,101,32,115,117,98,109,105,116,32,97,32,110,101,119,32,105,115,115,117,101,32,60,97,32,104,114,101,102,61,39,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,115,105,109,111,110,57,56,55,47,115,105,115,116,50,47,105,115,115,117,101,115,47,110,101,119,47,99,104,111,111,115,101,39,62,104,101,114,101,60,47,97,62,46,92,34,44,92,110,32,32,32,32,116,97,103,108,105,110,101,58,32,92,34,84,97,103,108,105,110,101,92,34,44,92,110,32,32,32,32,116,111,97,115,116,58,32,123,92,110,32,32,32,32,32,32,101,115,67,111,110,110,69,114,114,84,105,116,108,101,58,32,92,34,69,108,97,115,116,105,99,115,101,97,114,99,104,32,99,111,110,110,101,99,116,105,111,110,32,101,114,114,111,114,92,34,44,92,110,32,32,32,32,32,32,101,115,67,111,110,110,69,114,114,58,32,92,34,115,105,115,116,50,32,119,101,98,32,109,111,100,117,108,101,32,101,110,99,111,117,110,116,101,114,101,100,32,97,110,32,101,114,114,111,114,32,119,104,105,108,101,32,99,111,110,110,101,99,116,105,110,103,32,116,111,32,69,108,97,115,116,105,99,115,101,97,114,99,104,46,92,34,32,43,32,92,34,32,83,101,101,32,115,101,114,118,101,114,32,108,111,103,115,32,102,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,46,92,34,44,92,110,32,32,32,32,32,32,101,115,81,117,101,114,121,69,114,114,84,105,116,108,101,58,32,92,34,81,117,101,114,121,32,101,114,114,111,114,92,34,44,92,110,32,32,32,32,32,32,101,115,81,117,101,114,121,69,114,114,58,32,92,34,67,111,117,108,100,32,110,111,116,32,112,97,114,115,101,32,111,114,32,101,120,101,99,117,116,101,32,113,117,101,114,121,44,32,112,108,101,97,115,101,32,99,104,101,99,107,32,116,104,101,32,65,100,118,97,110,99,101,100,32,115,101,97,114,99,104,32,100,111,99,117,109,101,110,116,97,116,105,111,110,46,32,92,34,32,43,32,92,34,83,101,101,32,115,101,114,118,101,114,32,108,111,103,115,32,102,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,46,92,34,44,92,110,32,32,32,32,32,32,100,117,112,101,84,97,103,84,105,116,108,101,58,32,92,34,68,117,112,108,105,99,97,116,101,32,116,97,103,92,34,44,92,110,32,32,32,32,32,32,100,117,112,101,84,97,103,58,32,92,34,84,104,105,115,32,116,97,103,32,97,108,114,101,97,100,121,32,101,120,105,115,116,115,32,102,111,114,32,116,104,105,115,32,100,111,99,117,109,101,110,116,46,92,34,44,92,110,32,32,32,32,32,32,99,111,112,105,101,100,84,111,67,108,105,112,98,111,97,114,100,58,32,92,34,67,111,112,105,101,100,32,116,111,32,99,108,105,112,98,111,97,114,100,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,97,118,101,84,97,103,77,111,100,97,108,84,105,116,108,101,58,32,92,34,65,100,100,32,116,97,103,92,34,44,92,110,32,32,32,32,115,97,118,101,84,97,103,80,108,97,99,101,104,111,108,100,101,114,58,32,92,34,84,97,103,32,110,97,109,101,92,34,44,92,110,32,32,32,32,99,111,110,102,105,114,109,58,32,92,34,67,111,110,102,105,114,109,92,34,44,92,110,32,32,32,32,105,110,100,101,120,80,105,99,107,101,114,80,108,97,99,101,104,111,108,100,101,114,58,32,92,34,83,101,108,101,99,116,32,97,110,32,105,110,100,101,120,92,34,44,92,110,32,32,32,32,115,111,114,116,58,32,123,92,110,32,32,32,32,32,32,114,101,108,101,118,97,110,99,101,58,32,92,34,82,101,108,101,118,97,110,99,101,92,34,44,92,110,32,32,32,32,32,32,100,97,116,101,65,115,99,58,32,92,34,68,97,116,101,32,40,79,108,100,101,114,32,102,105,114,115,116,41,92,34,44,92,110,32,32,32,32,32,32,100,97,116,101,68,101,115,99,58,32,92,34,68,97,116,101,32,40,78,101,119,101,114,32,102,105,114,115,116,41,92,34,44,92,110,32,32,32,32,32,32,115,105,122,101,65,115,99,58,32,92,34,83,105,122,101,32,40,83,109,97,108,108,101,114,32,102,105,114,115,116,41,92,34,44,92,110,32,32,32,32,32,32,115,105,122,101,68,101,115,99,58,32,92,34,83,105,122,101,32,40,76,97,114,103,101,114,32,102,105,114,115,116,41,92,34,44,92,110,32,32,32,32,32,32,110,97,109,101,65,115,99,58,32,92,34,78,97,109,101,32,40,65,45,122,41,92,34,44,92,110,32,32,32,32,32,32,110,97,109,101,68,101,115,99,58,32,92,34,78,97,109,101,32,40,90,45,97,41,92,34,44,92,110,32,32,32,32,32,32,114,97,110,100,111,109,58,32,92,34,82,97,110,100,111,109,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,51,58,32,123,92,110,32,32,32,32,32,32,109,105,109,101,67,111,117,110,116,58,32,92,34,70,105,108,101,32,99,111,117,110,116,32,100,105,115,116,114,105,98,117,116,105,111,110,32,98,121,32,109,101,100,105,97,32,116,121,112,101,92,34,44,92,110,32,32,32,32,32,32,109,105,109,101,83,105,122,101,58,32,92,34,83,105,122,101,32,100,105,115,116,114,105,98,117,116,105,111,110,32,98,121,32,109,101,100,105,97,32,116,121,112,101,92,34,44,92,110,32,32,32,32,32,32,100,97,116,101,72,105,115,116,111,103,114,97,109,58,32,92,34,70,105,108,101,32,109,111,100,105,102,105,99,97,116,105,111,110,32,116,105,109,101,32,100,105,115,116,114,105,98,117,116,105,111,110,92,34,44,92,110,32,32,32,32,32,32,115,105,122,101,72,105,115,116,111,103,114,97,109,58,32,92,34,70,105,108,101,32,115,105,122,101,32,100,105,115,116,114,105,98,117,116,105,111,110,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,110,100,101,120,80,105,99,107,101,114,58,32,123,92,110,32,32,32,32,32,32,115,101,108,101,99,116,78,111,110,101,58,32,92,34,83,101,108,101,99,116,32,78,111,110,101,92,34,44,92,110,32,32,32,32,32,32,115,101,108,101,99,116,65,108,108,58,32,92,34,83,101,108,101,99,116,32,65,108,108,92,34,44,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,101,120,58,32,92,34,115,101,108,101,99,116,101,100,32,105,110,100,101,120,92,34,44,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,32,92,34,115,101,108,101,99,116,101,100,32,105,110,100,105,99,101,115,92,34,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,102,114,58,32,123,92,110,32,32,32,32,102,105,108,101,80,97,103,101,58,32,123,92,110,32,32,32,32,32,32,110,111,116,70,111,117,110,100,58,32,92,34,70,105,99,104,101,114,32,105,110,116,114,111,117,118,97,98,108,101,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,97,114,99,104,66,97,114,58,32,123,92,110,32,32,32,32,32,32,115,105,109,112,108,101,58,32,92,34,82,101,99,104,101,114,99,104,101,92,34,44,92,110,32,32,32,32,32,32,97,100,118,97,110,99,101,100,58,32,92,34,82,101,99,104,101,114,99,104,101,32,97,118,97,110,99,195,169,101,92,34,44,92,110,32,32,32,32,32,32,102,117,122,122,121,58,32,92,34,65,112,112,114,111,120,105,109,97,116,105,102,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,100,100,84,97,103,58,32,92,34,65,106,111,117,116,101,114,92,34,44,92,110,32,32,32,32,100,101,108,101,116,101,84,97,103,58,32,92,34,83,117,112,112,114,105,109,101,114,92,34,44,92,110,32,32,32,32,100,111,119,110,108,111,97,100,58,32,92,34,84,195,169,108,195,169,99,104,97,114,103,101,114,92,34,44,92,110,32,32,32,32,97,110,100,58,32,92,34,101,116,92,34,44,92,110,32,32,32,32,112,97,103,101,58,32,92,34,112,97,103,101,92,34,44,92,110,32,32,32,32,112,97,103,101,115,58,32,92,34,112,97,103,101,115,92,34,44,92,110,32,32,32,32,109,105,109,101,84,121,112,101,115,58,32,92,34,84,121,112,101,115,32,100,101,32,109,195,169,100,105,97,115,92,34,44,92,110,32,32,32,32,116,97,103,115,58,32,92,34,84,97,103,115,92,34,44,92,110,32,32,32,32,116,97,103,70,105,108,116,101,114,58,32,92,34,70,105,108,116,114,101,114,32,108,101,115,32,116,97,103,115,92,34,44,92,110,32,32,32,32,104,101,108,112,58,32,123,92,110,32,32,32,32,32,32,115,105,109,112,108,101,83,101,97,114,99,104,58,32,92,34,82,101,99,104,101,114,99,104,101,32,115,105,109,112,108,101,92,34,44,92,110,32,32,32,32,32,32,97,100,118,97,110,99,101,100,83,101,97,114,99,104,58,32,92,34,82,101,99,104,101,114,99,104,101,32,97,118,97,110,99,195,169,101,92,34,44,92,110,32,32,32,32,32,32,104,101,108,112,58,32,92,34,65,105,100,101,92,34,44,92,110,32,32,32,32,32,32,116,101,114,109,58,32,92,34,60,84,69,82,77,69,62,92,34,44,92,110,32,32,32,32,32,32,97,110,100,58,32,92,34,111,112,195,169,114,97,116,111,114,32,69,84,92,34,44,92,110,32,32,32,32,32,32,111,114,58,32,92,34,111,112,195,169,114,97,116,111,114,32,79,85,92,34,44,92,110,32,32,32,32,32,32,110,111,116,58,32,92,34,101,120,99,108,117,116,32,117,110,32,116,101,114,109,101,92,34,44,92,110,32,32,32,32,32,32,113,117,111,116,101,115,58,32,92,34,114,101,99,104,101,114,99,104,101,32,108,97,32,115,195,169,113,117,101,110,99,101,32,100,101,32,116,101,114,109,101,115,32,100,97,110,115,32,99,101,116,32,111,114,100,114,101,32,115,112,195,169,99,105,102,105,113,117,101,46,92,34,44,92,110,32,32,32,32,32,32,112,114,101,102,105,120,58,32,92,34,108,111,114,115,113,117,39,117,116,105,108,105,115,195,169,32,195,160,32,108,97,32,102,105,110,32,100,39,117,110,32,109,111,116,44,32,114,101,99,104,101,114,99,104,101,32,116,111,117,115,32,108,101,115,32,116,101,114,109,101,115,32,97,118,101,99,32,108,101,32,112,114,195,169,102,105,120,101,32,100,111,110,110,195,169,46,92,34,44,92,110,32,32,32,32,32,32,112,97,114,101,110,115,58,32,92,34,117,116,105,108,105,115,195,169,32,112,111,117,114,32,114,101,103,114,111,117,112,101,114,32,100,101,115,32,101,120,112,114,101,115,115,105,111,110,115,92,34,44,92,110,32,32,32,32,32,32,116,105,108,100,101,84,101,114,109,58,32,92,34,114,101,99,104,101,114,99,104,101,32,117,110,32,116,101,114,109,101,32,97,118,101,99,32,117,110,101,32,100,105,115,116,97,110,99,101,32,100,39,195,169,100,105,116,105,111,110,32,100,111,110,110,195,169,101,92,34,44,92,110,32,32,32,32,32,32,116,105,108,100,101,80,104,114,97,115,101,58,32,92,34,114,101,99,104,101,114,99,104,101,32,117,110,101,32,112,104,114,97,115,101,32,97,118,101,99,32,117,110,32,110,111,109,98,114,101,32,100,111,110,110,195,169,32,100,101,32,109,111,116,115,32,105,110,116,101,114,109,195,169,100,105,97,105,114,101,115,32,116,111,108,195,169,114,195,169,115,92,34,44,92,110,32,32,32,32,32,32,101,120,97,109,112,108,101,49,58,32,92,34,80,97,114,32,101,120,101,109,112,108,101,58,32,60,99,111,100,101,62,92,92,92,34,102,114,105,101,100,32,101,103,103,115,92,92,92,34,32,43,40,101,103,103,112,108,97,110,116,32,124,32,112,111,116,97,116,111,41,32,45,102,114,105,116,116,97,116,97,60,47,99,111,100,101,62,32,118,97,32,114,101,99,104,101,114,99,104,101,114,32,108,97,32,92,34,32,43,32,92,34,112,104,114,97,115,101,32,60,105,62,102,114,105,101,100,32,101,103,103,115,60,47,105,62,32,101,116,32,115,111,105,116,32,60,105,62,101,103,103,112,108,97,110,116,60,47,105,62,32,111,117,32,60,105,62,112,111,116,97,116,111,60,47,105,62,44,32,109,97,105,115,32,118,97,115,32,101,120,108,117,114,101,32,108,101,115,32,114,195,169,115,117,108,116,97,116,115,32,92,34,32,43,32,92,34,113,117,105,32,99,111,110,116,105,101,110,110,101,110,116,32,60,105,62,102,114,105,116,116,97,116,97,60,47,105,62,46,92,34,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,79,112,101,114,97,116,111,114,58,32,92,34,76,111,114,115,113,117,39,97,117,99,117,110,32,100,101,115,32,111,112,195,169,114,97,116,101,117,114,115,32,60,99,111,100,101,62,43,60,47,99,111,100,101,62,32,111,117,32,60,99,111,100,101,62,124,60,47,99,111,100,101,62,32,115,111,110,116,32,115,112,195,169,99,105,102,105,195,169,115,44,32,108,39,111,112,195,169,114,97,116,101,117,114,32,112,97,114,32,100,195,169,102,97,117,116,32,92,34,32,43,32,92,34,101,115,116,32,60,99,111,100,101,62,43,60,47,99,111,100,101,62,32,40,69,84,41,46,92,34,44,92,110,32,32,32,32,32,32,102,117,122,122,121,58,32,92,34,76,111,114,115,113,117,101,32,108,39,111,112,116,105,111,110,32,60,98,62,65,112,112,114,111,120,105,109,97,116,105,102,60,47,98,62,32,101,115,116,32,97,99,116,105,118,195,169,101,44,32,108,101,115,32,114,195,169,115,117,108,116,97,116,115,32,112,97,114,116,105,101,108,115,32,98,97,115,195,169,115,32,115,117,114,32,108,101,115,32,116,114,105,103,114,97,109,109,101,115,32,115,111,110,116,92,34,32,43,32,92,34,32,195,169,103,97,108,101,109,101,110,116,32,105,110,99,108,117,115,46,92,34,44,92,110,32,32,32,32,32,32,109,111,114,101,73,110,102,111,83,105,109,112,108,101,58,32,92,34,80,111,117,114,32,112,108,117,115,32,100,39,105,110,102,111,114,109,97,116,105,111,110,44,32,118,111,105,114,32,60,97,32,116,97,114,103,101,116,61,92,92,92,34,95,98,108,97,110,107,92,92,92,34,32,92,34,32,43,32,92,34,114,101,108,61,92,92,92,34,110,111,114,101,102,101,114,114,101,114,92,92,92,34,32,104,114,101,102,61,92,92,92,34,47,47,119,119,119,46,101,108,97,115,116,105,99,46,99,111,47,103,117,105,100,101,47,101,110,47,101,108,97,115,116,105,99,115,101,97,114,99,104,47,114,101,102,101,114,101,110,99,101,47,99,117,114,114,101,110,116,47,113,117,101,114,121,45,100,115,108,45,115,105,109,112,108,101,45,113,117,101,114,121,45,115,116,114,105,110,103,45,113,117,101,114,121,46,104,116,109,108,92,92,92,34,62,100,111,99,117,109,101,110,116,97,116,105,111,110,32,69,108,97,115,116,105,99,115,101,97,114,99,104,60,47,97,62,92,34,44,92,110,32,32,32,32,32,32,109,111,114,101,73,110,102,111,65,100,118,97,110,99,101,100,58,32,92,34,80,111,117,114,32,112,108,117,115,32,100,39,105,110,102,111,114,109,97,116,105,111,110,32,115,117,114,32,108,97,32,114,101,99,104,101,114,99,104,101,32,97,118,97,110,99,195,169,101,44,32,118,111,105,114,32,60,97,32,116,97,114,103,101,116,61,92,92,92,34,95,98,108,97,110,107,92,92,92,34,32,114,101,108,61,92,92,92,34,110,111,114,101,102,101,114,114,101,114,92,92,92,34,32,104,114,101,102,61,92,92,92,34,47,47,119,119,119,46,101,108,97,115,116,105,99,46,99,111,47,103,117,105,100,101,47,101,110,47,101,108,97,115,116,105,99,115,101,97,114,99,104,47,114,101,102,101,114,101,110,99,101,47,99,117,114,114,101,110,116,47,113,117,101,114,121,45,100,115,108,45,113,117,101,114,121,45,115,116,114,105,110,103,45,113,117,101,114,121,46,104,116,109,108,35,113,117,101,114,121,45,115,116,114,105,110,103,45,115,121,110,116,97,120,92,92,92,34,62,100,111,99,117,109,101,110,116,97,116,105,111,110,32,69,108,97,115,116,105,99,115,101,97,114,99,104,60,47,97,62,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,110,102,105,103,58,32,92,34,67,111,110,102,105,103,117,114,97,116,105,111,110,92,34,44,92,110,32,32,32,32,99,111,110,102,105,103,68,101,115,99,114,105,112,116,105,111,110,58,32,92,34,76,97,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,101,115,116,32,101,110,114,101,103,105,115,116,114,195,169,101,32,101,110,32,116,101,109,112,115,32,114,195,169,101,108,32,112,111,117,114,32,99,101,32,110,97,118,105,103,97,116,101,117,114,46,92,34,44,92,110,32,32,32,32,99,111,110,102,105,103,82,101,115,101,116,58,32,92,34,82,195,169,105,110,105,116,105,97,108,105,115,101,114,32,108,97,32,99,111,110,102,105,103,117,114,97,116,105,111,110,92,34,44,92,110,32,32,32,32,115,101,97,114,99,104,79,112,116,105,111,110,115,58,32,92,34,79,112,116,105,111,110,115,32,100,101,32,114,101,99,104,101,114,99,104,101,92,34,44,92,110,32,32,32,32,116,114,101,101,109,97,112,79,112,116,105,111,110,115,58,32,92,34,79,112,116,105,111,110,115,32,100,117,32,84,114,101,101,109,97,112,92,34,44,92,110,32,32,32,32,100,105,115,112,108,97,121,79,112,116,105,111,110,115,58,32,92,34,79,112,116,105,111,110,115,32,100,39,97,102,102,105,99,104,97,103,101,92,34,44,92,110,32,32,32,32,111,112,116,58,32,123,92,110,32,32,32,32,32,32,108,97,110,103,58,32,92,34,76,97,110,103,117,101,92,34,44,92,110,32,32,32,32,32,32,104,105,103,104,108,105,103,104,116,58,32,92,34,65,99,116,105,118,101,114,32,108,101,32,115,117,114,108,105,103,110,97,103,101,92,34,44,92,110,32,32,32,32,32,32,102,117,122,122,121,58,32,92,34,65,99,116,105,118,101,114,32,108,97,32,114,101,99,104,101,114,99,104,101,32,97,112,112,114,111,120,105,109,97,116,105,118,101,32,112,97,114,32,100,195,169,102,97,117,116,92,34,44,92,110,32,32,32,32,32,32,115,101,97,114,99,104,73,110,80,97,116,104,58,32,92,34,65,99,116,105,118,101,114,32,108,97,32,114,101,99,104,101,114,99,104,101,32,100,97,110,115,32,108,101,32,99,104,101,109,105,110,32,100,101,115,32,100,111,99,117,109,101,110,116,115,92,34,44,92,110,32,32,32,32,32,32,115,117,103,103,101,115,116,80,97,116,104,58,32,92,34,65,99,116,105,118,101,114,32,108,39,97,117,116,111,99,111,109,112,108,195,169,116,105,111,110,32,100,97,110,115,32,108,97,32,98,97,114,114,101,32,100,101,32,102,105,108,116,114,101,32,100,101,32,99,104,101,109,105,110,92,34,44,92,110,32,32,32,32,32,32,102,114,97,103,109,101,110,116,83,105,122,101,58,32,92,34,76,111,110,103,117,101,117,114,32,100,117,32,99,111,110,116,101,120,116,101,32,100,101,32,115,117,114,108,105,103,110,97,103,101,44,32,101,110,32,110,111,109,98,114,101,32,100,101,32,99,97,114,97,99,116,195,168,114,101,115,92,34,44,92,110,32,32,32,32,32,32,113,117,101,114,121,77,111,100,101,58,32,92,34,77,111,100,101,32,100,101,32,114,101,99,104,101,114,99,104,101,92,34,44,92,110,32,32,32,32,32,32,100,105,115,112,108,97,121,77,111,100,101,58,32,92,34,65,102,102,105,99,104,97,103,101,92,34,44,92,110,32,32,32,32,32,32,99,111,108,117,109,110,115,58,32,92,34,78,111,109,98,114,101,32,100,101,32,99,111,108,111,110,110,101,115,92,34,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,84,121,112,101,58,32,92,34,84,121,112,101,32,100,101,32,84,114,101,101,109,97,112,92,34,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,84,105,108,105,110,103,58,32,92,34,84,114,101,101,109,97,112,32,116,105,108,105,110,103,92,34,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,58,32,92,34,71,114,111,117,112,97,103,101,32,100,101,32,99,111,117,108,101,117,114,32,100,117,32,84,114,101,101,109,97,112,32,40,112,108,97,116,41,92,34,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,67,111,108,111,114,58,32,92,34,67,111,117,108,101,117,114,32,100,117,32,84,114,101,101,109,97,112,32,40,101,110,32,99,97,115,99,97,100,101,41,92,34,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,83,105,122,101,58,32,92,34,84,97,105,108,108,101,32,100,117,32,84,114,101,101,109,97,112,92,34,44,92,110,32,32,32,32,32,32,116,104,101,109,101,58,32,92,34,84,104,195,168,109,101,92,34,44,92,110,32,32,32,32,32,32,108,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,58,32,92,34,68,195,169,115,97,99,116,105,118,101,114,32,108,101,32,99,104,97,114,103,101,109,101,110,116,32,100,101,115,32,100,105,97,112,111,115,105,116,105,118,101,115,32,97,100,106,97,99,101,110,116,101,115,32,112,111,117,114,32,108,101,32,118,105,115,117,97,108,105,115,101,117,114,32,100,39,105,109,97,103,101,115,92,34,44,92,110,32,32,32,32,32,32,115,108,105,100,101,68,117,114,97,116,105,111,110,58,32,92,34,68,117,114,195,169,101,32,100,101,115,32,100,105,97,112,111,115,105,116,105,118,101,115,92,34,44,92,110,32,32,32,32,32,32,114,101,115,117,108,116,83,105,122,101,58,32,92,34,78,111,109,98,114,101,32,100,101,32,114,195,169,115,117,108,116,97,116,115,32,112,97,114,32,112,97,103,101,92,34,44,92,110,32,32,32,32,32,32,116,97,103,79,114,79,112,101,114,97,116,111,114,58,32,92,34,85,116,105,108,105,115,101,114,32,108,39,111,112,195,169,114,97,116,101,117,114,32,79,85,32,108,111,114,115,32,100,101,32,108,97,32,115,112,195,169,99,105,102,105,99,97,116,105,111,110,32,100,101,32,112,108,117,115,105,101,117,114,115,32,116,97,103,115,92,34,44,92,110,32,32,32,32,32,32,104,105,100,101,68,117,112,108,105,99,97,116,101,115,58,32,92,34,77,97,115,113,117,101,114,32,108,101,115,32,114,195,169,115,117,108,116,97,116,115,32,101,110,32,100,111,117,98,108,101,92,34,44,92,110,32,32,32,32,32,32,104,105,100,101,76,101,103,97,99,121,58,32,92,34,77,97,115,113,117,101,114,32,108,97,32,110,111,116,105,99,101,32,39,108,101,103,97,99,121,69,83,39,32,69,108,97,115,116,105,99,115,101,97,114,99,104,92,34,44,92,110,32,32,32,32,32,32,117,112,100,97,116,101,77,105,109,101,77,97,112,58,32,92,34,77,101,116,116,114,101,32,195,160,32,106,111,117,114,32,108,39,97,114,98,114,101,32,100,101,32,84,121,112,101,115,32,100,101,32,109,195,169,100,105,97,115,32,101,110,32,116,101,109,112,115,32,114,195,169,101,108,92,34,44,92,110,32,32,32,32,32,32,117,115,101,68,97,116,101,80,105,99,107,101,114,58,32,92,34,65,102,102,105,99,104,101,114,32,117,110,32,99,111,109,112,111,115,97,110,116,32,194,171,32,68,97,116,101,32,80,105,99,107,101,114,32,194,187,32,112,108,117,116,195,180,116,32,113,117,39,117,110,32,115,108,105,100,101,114,92,34,44,92,110,32,32,32,32,32,32,118,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,58,32,92,34,68,117,114,195,169,101,32,100,101,115,32,105,109,97,103,101,115,32,100,39,97,112,101,114,195,167,117,32,118,105,100,101,111,32,101,110,32,109,105,108,108,105,115,101,99,111,110,100,101,115,92,34,44,92,110,32,32,32,32,32,32,115,105,109,112,108,101,76,105,103,104,116,98,111,120,58,32,92,34,68,195,169,115,97,99,116,105,118,101,114,32,108,101,115,32,97,110,105,109,97,116,105,111,110,115,32,100,117,32,118,105,115,117,97,108,105,115,101,117,114,32,100,39,105,109,97,103,101,115,92,34,44,92,110,32,32,32,32,32,32,115,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,58,32,92,34,65,102,102,105,99,104,101,114,32,108,101,32,102,105,108,116,114,101,32,100,97,110,115,32,108,39,111,110,103,108,101,116,32,84,97,103,115,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,113,117,101,114,121,77,111,100,101,58,32,123,92,110,32,32,32,32,32,32,115,105,109,112,108,101,58,32,92,34,83,105,109,112,108,101,92,34,44,92,110,32,32,32,32,32,32,97,100,118,97,110,99,101,100,58,32,92,34,65,118,97,110,99,195,169,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,97,110,103,58,32,123,92,110,32,32,32,32,32,32,101,110,58,32,92,34,69,110,103,108,105,115,104,92,34,44,92,110,32,32,32,32,32,32,102,114,58,32,92,34,70,114,97,110,195,167,97,105,115,92,34,44,92,110,32,32,32,32,32,32,92,34,122,104,45,67,78,92,34,58,32,92,34,231,174,128,228,189,147,228,184,173,230,150,135,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,105,115,112,108,97,121,77,111,100,101,58,32,123,92,110,32,32,32,32,32,32,103,114,105,100,58,32,92,34,71,114,105,108,108,101,92,34,44,92,110,32,32,32,32,32,32,108,105,115,116,58,32,92,34,76,105,115,116,101,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,108,117,109,110,115,58,32,123,92,110,32,32,32,32,32,32,97,117,116,111,58,32,92,34,65,117,116,111,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,114,101,101,109,97,112,84,121,112,101,58,32,123,92,110,32,32,32,32,32,32,99,97,115,99,97,100,101,100,58,32,92,34,69,110,32,99,97,115,99,97,100,101,92,34,44,92,110,32,32,32,32,32,32,102,108,97,116,58,32,92,34,80,108,97,116,32,40,99,111,109,112,97,99,116,41,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,114,101,101,109,97,112,83,105,122,101,58,32,123,92,110,32,32,32,32,32,32,115,109,97,108,108,58,32,92,34,80,101,116,105,116,92,34,44,92,110,32,32,32,32,32,32,109,101,100,105,117,109,58,32,92,34,77,111,121,101,110,92,34,44,92,110,32,32,32,32,32,32,108,97,114,103,101,58,32,92,34,71,114,97,110,100,92,34,44,92,110,32,32,32,32,32,32,120,76,97,114,103,101,58,32,92,34,120,71,114,97,110,100,92,34,44,92,110,32,32,32,32,32,32,120,120,76,97,114,103,101,58,32,92,34,120,120,71,114,97,110,100,92,34,44,92,110,32,32,32,32,32,32,99,117,115,116,111,109,58,32,92,34,80,101,114,115,111,110,110,97,108,105,115,195,169,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,114,101,101,109,97,112,84,105,108,105,110,103,58,32,123,92,110,32,32,32,32,32,32,98,105,110,97,114,121,58,32,92,34,66,105,110,97,114,121,92,34,44,92,110,32,32,32,32,32,32,115,113,117,97,114,105,102,121,58,32,92,34,83,113,117,97,114,105,102,121,92,34,44,92,110,32,32,32,32,32,32,115,108,105,99,101,58,32,92,34,83,108,105,99,101,92,34,44,92,110,32,32,32,32,32,32,100,105,99,101,58,32,92,34,68,105,99,101,92,34,44,92,110,32,32,32,32,32,32,115,108,105,99,101,68,105,99,101,58,32,92,34,83,108,105,99,101,32,38,32,68,105,99,101,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,104,101,109,101,58,32,123,92,110,32,32,32,32,32,32,108,105,103,104,116,58,32,92,34,67,108,97,105,114,92,34,44,92,110,32,32,32,32,32,32,98,108,97,99,107,58,32,92,34,78,111,105,114,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,105,116,58,32,92,34,114,195,169,115,117,108,116,97,116,92,34,44,92,110,32,32,32,32,104,105,116,115,58,32,92,34,114,195,169,115,117,108,116,97,116,115,92,34,44,92,110,32,32,32,32,100,101,116,97,105,108,115,58,32,92,34,68,195,169,116,97,105,108,115,92,34,44,92,110,32,32,32,32,115,116,97,116,115,58,32,92,34,83,116,97,116,115,92,34,44,92,110,32,32,32,32,113,117,101,114,121,84,105,109,101,58,32,92,34,68,117,114,195,169,101,32,100,101,32,108,97,32,114,101,113,117,195,170,116,101,92,34,44,92,110,32,32,32,32,116,111,116,97,108,83,105,122,101,58,32,92,34,84,97,105,108,108,101,32,116,111,116,97,108,101,92,34,44,92,110,32,32,32,32,112,97,116,104,66,97,114,58,32,123,92,110,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,92,34,70,105,108,116,114,101,114,32,108,101,32,99,104,101,109,105,110,92,34,44,92,110,32,32,32,32,32,32,109,111,100,97,108,84,105,116,108,101,58,32,92,34,83,195,169,108,101,99,116,105,111,110,110,101,114,32,108,101,32,99,104,101,109,105,110,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,101,98,117,103,58,32,92,34,73,110,102,111,114,109,97,116,105,111,110,32,100,101,32,100,195,169,98,111,103,97,103,101,92,34,44,92,110,32,32,32,32,100,101,98,117,103,68,101,115,99,114,105,112,116,105,111,110,58,32,92,34,73,110,102,111,114,109,97,116,105,111,110,115,32,117,116,105,108,101,115,32,112,111,117,114,32,108,101,32,100,195,169,98,111,103,97,103,101,92,92,110,92,34,32,43,32,92,34,83,105,32,118,111,117,115,32,114,101,110,99,111,110,116,114,101,122,32,100,101,115,32,98,111,103,117,101,115,32,111,117,32,115,105,32,118,111,117,115,32,97,118,101,122,32,100,101,115,32,115,117,103,103,101,115,116,105,111,110,115,32,112,111,117,114,32,100,101,32,110,111,117,118,101,108,108,101,115,32,102,111,110,99,116,105,111,110,110,97,108,105,116,195,169,115,44,92,34,32,43,32,92,34,32,118,101,117,105,108,108,101,122,32,115,111,117,109,101,116,116,114,101,32,117,110,32,110,111,117,118,101,108,32,73,115,115,117,101,32,60,97,32,104,114,101,102,61,39,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,115,105,109,111,110,57,56,55,47,115,105,115,116,50,47,105,115,115,117,101,115,47,110,101,119,47,99,104,111,111,115,101,39,62,105,99,105,60,47,97,62,46,92,34,44,92,110,32,32,32,32,116,97,103,108,105,110,101,58,32,92,34,84,97,103,108,105,110,101,92,34,44,92,110,32,32,32,32,116,111,97,115,116,58,32,123,92,110,32,32,32,32,32,32,101,115,67,111,110,110,69,114,114,84,105,116,108,101,58,32,92,34,69,114,114,101,117,114,32,100,101,32,99,111,110,110,101,120,105,111,110,32,69,108,97,115,116,105,99,115,101,97,114,99,104,92,34,44,92,110,32,32,32,32,32,32,101,115,67,111,110,110,69,114,114,58,32,92,34,76,101,32,109,111,100,117,108,101,32,119,101,98,32,97,32,114,101,110,99,111,110,116,114,195,169,32,117,110,101,32,101,114,114,101,117,114,32,108,111,114,115,32,100,101,32,108,97,32,99,111,110,110,101,120,105,111,110,32,195,160,32,69,108,97,115,116,105,99,115,101,97,114,99,104,46,92,34,32,43,32,92,34,32,67,111,110,115,117,108,116,101,122,32,108,101,115,32,106,111,117,114,110,97,117,120,32,100,117,32,115,101,114,118,101,117,114,32,112,111,117,114,32,112,108,117,115,32,100,39,105,110,102,111,114,109,97,116,105,111,110,115,46,46,92,34,44,92,110,32,32,32,32,32,32,101,115,81,117,101,114,121,69,114,114,84,105,116,108,101,58,32,92,34,69,114,114,101,117,114,32,100,101,32,114,101,113,117,195,170,116,101,92,34,44,92,110,32,32,32,32,32,32,101,115,81,117,101,114,121,69,114,114,58,32,92,34,73,109,112,111,115,115,105,98,108,101,32,100,39,97,110,97,108,121,115,101,114,32,111,117,32,100,39,101,120,195,169,99,117,116,101,114,32,108,97,32,114,101,113,117,195,170,116,101,44,32,118,101,117,105,108,108,101,122,32,99,111,110,115,117,108,116,101,114,32,108,97,32,100,111,99,117,109,101,110,116,97,116,105,111,110,32,115,117,114,32,108,97,32,92,34,32,43,32,92,34,114,101,99,104,101,114,99,104,101,32,97,118,97,110,99,195,169,101,46,32,86,111,105,114,32,108,101,115,32,106,111,117,114,110,97,117,120,32,100,117,32,115,101,114,118,101,117,114,32,112,111,117,114,32,112,108,117,115,32,100,39,105,110,102,111,114,109,97,116,105,111,110,115,46,92,34,44,92,110,32,32,32,32,32,32,100,117,112,101,84,97,103,84,105,116,108,101,58,32,92,34,84,97,103,32,101,110,32,100,111,117,98,108,101,92,34,44,92,110,32,32,32,32,32,32,100,117,112,101,84,97,103,58,32,92,34,67,101,32,116,97,103,32,101,120,105,115,116,101,32,100,195,169,106,195,160,32,112,111,117,114,32,99,101,32,100,111,99,117,109,101,110,116,46,92,34,44,92,110,32,32,32,32,32,32,99,111,112,105,101,100,84,111,67,108,105,112,98,111,97,114,100,58,32,92,34,67,111,112,105,195,169,32,100,97,110,115,32,108,101,32,112,114,101,115,115,101,45,112,97,112,105,101,114,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,97,118,101,84,97,103,77,111,100,97,108,84,105,116,108,101,58,32,92,34,65,106,111,117,116,101,114,32,117,110,32,116,97,103,92,34,44,92,110,32,32,32,32,115,97,118,101,84,97,103,80,108,97,99,101,104,111,108,100,101,114,58,32,92,34,78,111,109,32,100,117,32,116,97,103,92,34,44,92,110,32,32,32,32,99,111,110,102,105,114,109,58,32,92,34,67,111,110,102,105,114,109,101,114,92,34,44,92,110,32,32,32,32,105,110,100,101,120,80,105,99,107,101,114,80,108,97,99,101,104,111,108,100,101,114,58,32,92,34,83,195,169,108,101,99,116,105,111,110,110,101,114,32,117,110,32,105,110,100,101,120,92,34,44,92,110,32,32,32,32,115,111,114,116,58,32,123,92,110,32,32,32,32,32,32,114,101,108,101,118,97,110,99,101,58,32,92,34,80,101,114,116,105,110,101,110,99,101,92,34,44,92,110,32,32,32,32,32,32,100,97,116,101,65,115,99,58,32,92,34,68,97,116,101,32,40,80,108,117,115,32,97,110,99,105,101,110,116,41,92,34,44,92,110,32,32,32,32,32,32,100,97,116,101,68,101,115,99,58,32,92,34,68,97,116,101,32,40,80,108,117,115,32,114,195,169,99,101,110,116,41,92,34,44,92,110,32,32,32,32,32,32,115,105,122,101,65,115,99,58,32,92,34,84,97,105,108,108,101,32,40,80,108,117,115,32,112,101,116,105,116,41,92,34,44,92,110,32,32,32,32,32,32,115,105,122,101,68,101,115,99,58,32,92,34,84,97,105,108,108,101,32,40,80,108,117,115,32,103,114,97,110,100,41,92,34,44,92,110,32,32,32,32,32,32,110,97,109,101,65,115,99,58,32,92,34,78,111,109,32,40,65,45,122,41,92,34,44,92,110,32,32,32,32,32,32,110,97,109,101,68,101,115,99,58,32,92,34,78,111,109,32,40,90,45,97,41,92,34,44,92,110,32,32,32,32,32,32,114,97,110,100,111,109,58,32,92,34,65,108,195,169,97,116,111,105,114,101,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,51,58,32,123,92,110,32,32,32,32,32,32,109,105,109,101,67,111,117,110,116,58,32,92,34,68,105,115,116,114,105,98,117,116,105,111,110,32,100,117,32,110,111,109,98,114,101,32,100,101,32,102,105,99,104,105,101,114,115,32,112,97,114,32,116,121,112,101,32,100,101,32,109,195,169,100,105,97,92,34,44,92,110,32,32,32,32,32,32,109,105,109,101,83,105,122,101,58,32,92,34,68,105,115,116,114,105,98,117,116,105,111,110,32,100,101,115,32,116,97,105,108,108,101,115,32,100,101,32,102,105,99,104,105,101,114,115,32,112,97,114,32,116,121,112,101,32,100,101,32,109,195,169,100,105,97,92,34,44,92,110,32,32,32,32,32,32,100,97,116,101,72,105,115,116,111,103,114,97,109,58,32,92,34,68,105,115,116,114,105,98,117,116,105,111,110,32,100,101,115,32,100,97,116,101,115,32,100,101,32,109,111,100,105,102,105,99,97,116,105,111,110,92,34,44,92,110,32,32,32,32,32,32,115,105,122,101,72,105,115,116,111,103,114,97,109,58,32,92,34,68,105,115,116,114,105,98,117,116,105,111,110,32,100,101,115,32,116,97,105,108,108,101,115,32,100,101,32,102,105,99,104,105,101,114,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,110,100,101,120,80,105,99,107,101,114,58,32,123,92,110,32,32,32,32,32,32,115,101,108,101,99,116,78,111,110,101,58,32,92,34,83,195,169,108,101,99,116,105,111,110,110,101,114,32,97,117,99,117,110,92,34,44,92,110,32,32,32,32,32,32,115,101,108,101,99,116,65,108,108,58,32,92,34,83,195,169,108,101,99,116,105,111,110,110,101,114,32,116,111,117,116,92,34,44,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,101,120,58,32,92,34,105,110,100,101,120,32,115,195,169,108,101,99,116,105,111,110,110,195,169,92,34,44,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,32,92,34,105,110,100,101,120,32,115,195,169,108,101,99,116,105,111,110,110,195,169,115,92,34,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,92,34,122,104,45,67,78,92,34,58,32,123,92,110,32,32,32,32,102,105,108,101,80,97,103,101,58,32,123,92,110,32,32,32,32,32,32,110,111,116,70,111,117,110,100,58,32,92,34,230,156,170,230,137,190,229,136,176,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,97,114,99,104,66,97,114,58,32,123,92,110,32,32,32,32,32,32,115,105,109,112,108,101,58,32,92,34,230,144,156,231,180,162,92,34,44,92,110,32,32,32,32,32,32,97,100,118,97,110,99,101,100,58,32,92,34,233,171,152,231,186,167,230,144,156,231,180,162,92,34,44,92,110,32,32,32,32,32,32,102,117,122,122,121,58,32,92,34,230,168,161,231,179,138,230,144,156,231,180,162,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,100,100,84,97,103,58,32,92,34,230,183,187,229,138,160,92,34,44,92,110,32,32,32,32,100,101,108,101,116,101,84,97,103,58,32,92,34,229,136,160,233,153,164,92,34,44,92,110,32,32,32,32,100,111,119,110,108,111,97,100,58,32,92,34,228,184,139,232,189,189,92,34,44,92,110,32,32,32,32,97,110,100,58,32,92,34,228,184,142,92,34,44,92,110,32,32,32,32,112,97,103,101,58,32,92,34,233,161,181,92,34,44,92,110,32,32,32,32,112,97,103,101,115,58,32,92,34,233,161,181,92,34,44,92,110,32,32,32,32,109,105,109,101,84,121,112,101,115,58,32,92,34,230,150,135,228,187,182,231,177,187,229,158,139,92,34,44,92,110,32,32,32,32,116,97,103,115,58,32,92,34,230,160,135,231,173,190,92,34,44,92,110,32,32,32,32,116,97,103,70,105,108,116,101,114,58,32,92,34,231,173,155,233,128,137,230,160,135,231,173,190,92,34,44,92,110,32,32,32,32,104,101,108,112,58,32,123,92,110,32,32,32,32,32,32,115,105,109,112,108,101,83,101,97,114,99,104,58,32,92,34,231,174,128,230,152,147,230,144,156,231,180,162,92,34,44,92,110,32,32,32,32,32,32,97,100,118,97,110,99,101,100,83,101,97,114,99,104,58,32,92,34,233,171,152,231,186,167,230,144,156,231,180,162,92,34,44,92,110,32,32,32,32,32,32,104,101,108,112,58,32,92,34,229,184,174,229,138,169,92,34,44,92,110,32,32,32,32,32,32,116,101,114,109,58,32,92,34,60,229,133,179,233,148,174,232,175,141,62,92,34,44,92,110,32,32,32,32,32,32,97,110,100,58,32,92,34,228,184,142,230,147,141,228,189,156,92,34,44,92,110,32,32,32,32,32,32,111,114,58,32,92,34,230,136,150,230,147,141,228,189,156,92,34,44,92,110,32,32,32,32,32,32,110,111,116,58,32,92,34,229,143,141,233,128,137,229,141,149,228,184,170,229,133,179,233,148,174,232,175,141,92,34,44,92,110,32,32,32,32,32,32,113,117,111,116,101,115,58,32,92,34,230,139,172,232,181,183,230,157,165,231,154,132,233,131,168,229,136,134,232,167,134,228,184,186,228,184,128,228,184,170,229,133,179,233,148,174,232,175,141,239,188,140,228,191,157,229,186,143,92,34,44,92,110,32,32,32,32,32,32,112,114,101,102,105,120,58,32,92,34,229,156,168,232,175,141,229,176,190,228,189,191,231,148,168,230,151,182,239,188,140,229,140,185,233,133,141,229,137,141,231,188,128,92,34,44,92,110,32,32,32,32,32,32,112,97,114,101,110,115,58,32,92,34,232,161,168,232,190,190,229,188,143,231,188,150,231,187,132,92,34,44,92,110,32,32,32,32,32,32,116,105,108,100,101,84,101,114,109,58,32,92,34,229,140,185,233,133,141,231,188,150,232,190,145,232,183,157,231,166,187,228,187,165,229,134,133,231,154,132,229,133,179,233,148,174,232,175,141,92,34,44,92,110,32,32,32,32,32,32,116,105,108,100,101,80,104,114,97,115,101,58,32,92,34,229,140,185,233,133,141,231,159,173,232,175,173,239,188,140,229,174,185,229,191,141,228,184,128,228,186,155,233,157,158,229,140,185,233,133,141,232,175,141,92,34,44,92,110,32,32,32,32,32,32,101,120,97,109,112,108,101,49,58,32,92,34,228,190,139,229,166,130,58,32,60,99,111,100,101,62,92,92,92,34,231,149,170,232,140,132,92,92,92,34,32,43,40,231,130,146,232,155,139,32,124,32,231,137,155,232,133,169,41,32,45,233,165,173,60,47,99,111,100,101,62,32,229,176,134,229,140,185,233,133,141,92,34,32,43,32,92,34,231,159,173,232,175,173,32,60,105,62,231,149,170,232,140,132,231,130,146,232,155,139,60,47,105,62,227,128,129,60,105,62,231,130,146,232,155,139,60,47,105,62,32,230,136,150,232,128,133,32,60,105,62,231,137,155,232,133,169,60,47,105,62,239,188,140,232,128,140,229,191,189,231,149,165,228,187,187,228,189,149,229,184,166,230,156,137,92,34,32,43,32,92,34,60,105,62,233,165,173,60,47,105,62,231,154,132,229,133,179,233,148,174,232,175,141,46,92,34,44,92,110,32,32,32,32,32,32,100,101,102,97,117,108,116,79,112,101,114,97,116,111,114,58,32,92,34,232,161,168,232,190,190,229,188,143,228,184,173,230,151,160,60,99,111,100,101,62,43,60,47,99,111,100,101,62,230,136,150,232,128,133,60,99,111,100,101,62,124,60,47,99,111,100,101,62,230,151,182,239,188,140,233,187,152,232,174,164,228,189,191,231,148,168,92,34,32,43,32,92,34,60,99,111,100,101,62,43,60,47,99,111,100,101,62,239,188,136,228,184,142,230,147,141,228,189,156,239,188,137,227,128,130,92,34,44,92,110,32,32,32,32,32,32,102,117,122,122,121,58,32,92,34,233,128,137,228,184,173,60,98,62,230,168,161,231,179,138,230,144,156,231,180,162,60,47,98,62,233,128,137,233,161,185,230,151,182,239,188,140,232,191,148,229,155,158,233,131,168,229,136,134,229,140,185,233,133,141,231,154,132,231,187,147,230,158,156,239,188,136,51,45,103,114,97,109,115,41,227,128,130,92,34,44,92,110,32,32,32,32,32,32,109,111,114,101,73,110,102,111,83,105,109,112,108,101,58,32,92,34,232,175,166,231,187,134,228,191,161,230,129,175,239,188,154,60,97,32,116,97,114,103,101,116,61,92,92,92,34,95,98,108,97,110,107,92,92,92,34,32,92,34,32,43,32,92,34,114,101,108,61,92,92,92,34,110,111,114,101,102,101,114,114,101,114,92,92,92,34,32,104,114,101,102,61,92,92,92,34,47,47,119,119,119,46,101,108,97,115,116,105,99,46,99,111,47,103,117,105,100,101,47,101,110,47,101,108,97,115,116,105,99,115,101,97,114,99,104,47,114,101,102,101,114,101,110,99,101,47,99,117,114,114,101,110,116,47,113,117,101,114,121,45,100,115,108,45,115,105,109,112,108,101,45,113,117,101,114,121,45,115,116,114,105,110,103,45,113,117,101,114,121,46,104,116,109,108,92,92,92,34,62,69,108,97,115,116,105,99,115,101,97,114,99,104,230,150,135,230,161,163,60,47,97,62,92,34,44,92,110,32,32,32,32,32,32,109,111,114,101,73,110,102,111,65,100,118,97,110,99,101,100,58,32,92,34,233,171,152,231,186,167,230,144,156,231,180,162,230,168,161,229,188,143,230,150,135,230,161,163,239,188,154,60,97,32,116,97,114,103,101,116,61,92,92,92,34,95,98,108,97,110,107,92,92,92,34,32,114,101,108,61,92,92,92,34,110,111,114,101,102,101,114,114,101,114,92,92,92,34,32,104,114,101,102,61,92,92,92,34,47,47,119,119,119,46,101,108,97,115,116,105,99,46,99,111,47,103,117,105,100,101,47,101,110,47,101,108,97,115,116,105,99,115,101,97,114,99,104,47,114,101,102,101,114,101,110,99,101,47,99,117,114,114,101,110,116,47,113,117,101,114,121,45,100,115,108,45,113,117,101,114,121,45,115,116,114,105,110,103,45,113,117,101,114,121,46,104,116,109,108,35,113,117,101,114,121,45,115,116,114,105,110,103,45,115,121,110,116,97,120,92,92,92,34,62,69,108,97,115,116,105,99,115,101,97,114,99,104,230,150,135,230,161,163,60,47,97,62,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,110,102,105,103,58,32,92,34,233,133,141,231,189,174,92,34,44,92,110,32,32,32,32,99,111,110,102,105,103,68,101,115,99,114,105,112,116,105,111,110,58,32,92,34,233,133,141,231,189,174,229,156,168,230,173,164,230,181,143,232,167,136,229,153,168,228,184,173,229,174,158,230,151,182,228,191,157,229,173,152,227,128,130,92,34,44,92,110,32,32,32,32,99,111,110,102,105,103,82,101,115,101,116,58,32,92,34,233,135,141,231,189,174,230,137,128,230,156,137,232,174,190,231,189,174,92,34,44,92,110,32,32,32,32,115,101,97,114,99,104,79,112,116,105,111,110,115,58,32,92,34,230,144,156,231,180,162,233,128,137,233,161,185,92,34,44,92,110,32,32,32,32,116,114,101,101,109,97,112,79,112,116,105,111,110,115,58,32,92,34,230,160,145,231,138,182,229,155,190,233,128,137,233,161,185,92,34,44,92,110,32,32,32,32,100,105,115,112,108,97,121,79,112,116,105,111,110,115,58,32,92,34,230,152,190,231,164,186,233,128,137,233,161,185,92,34,44,92,110,32,32,32,32,111,112,116,58,32,123,92,110,32,32,32,32,32,32,108,97,110,103,58,32,92,34,232,175,173,232,168,128,92,34,44,92,110,32,32,32,32,32,32,104,105,103,104,108,105,103,104,116,58,32,92,34,229,144,175,231,148,168,233,171,152,228,186,174,92,34,44,92,110,32,32,32,32,32,32,102,117,122,122,121,58,32,92,34,233,187,152,232,174,164,228,189,191,231,148,168,230,168,161,231,179,138,230,144,156,231,180,162,92,34,44,92,110,32,32,32,32,32,32,115,101,97,114,99,104,73,110,80,97,116,104,58,32,92,34,229,140,185,233,133,141,230,150,135,230,161,163,232,183,175,229,190,132,92,34,44,92,110,32,32,32,32,32,32,115,117,103,103,101,115,116,80,97,116,104,58,32,92,34,230,144,156,231,180,162,230,161,134,229,144,175,231,148,168,232,135,170,229,138,168,232,161,165,229,133,168,92,34,44,92,110,32,32,32,32,32,32,102,114,97,103,109,101,110,116,83,105,122,101,58,32,92,34,233,171,152,228,186,174,228,184,138,228,184,139,230,150,135,229,164,167,229,176,143,92,34,44,92,110,32,32,32,32,32,32,113,117,101,114,121,77,111,100,101,58,32,92,34,230,144,156,231,180,162,230,168,161,229,188,143,92,34,44,92,110,32,32,32,32,32,32,100,105,115,112,108,97,121,77,111,100,101,58,32,92,34,230,152,190,231,164,186,92,34,44,92,110,32,32,32,32,32,32,99,111,108,117,109,110,115,58,32,92,34,229,136,151,230,149,176,92,34,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,84,121,112,101,58,32,92,34,230,160,145,231,138,182,229,155,190,231,177,187,229,177,158,230,128,167,92,34,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,84,105,108,105,110,103,58,32,92,34,230,160,145,231,138,182,229,155,190,229,185,179,233,147,186,92,34,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,58,32,92,34,230,160,145,231,138,182,229,155,190,233,162,156,232,137,178,231,188,150,231,187,132,230,183,177,229,186,166,239,188,136,229,177,149,229,188,128,239,188,137,92,34,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,67,111,108,111,114,58,32,92,34,230,160,145,231,138,182,229,155,190,233,162,156,232,137,178,239,188,136,230,138,152,229,143,160,239,188,137,92,34,44,92,110,32,32,32,32,32,32,116,114,101,101,109,97,112,83,105,122,101,58,32,92,34,230,160,145,231,138,182,229,155,190,229,164,167,229,176,143,92,34,44,92,110,32,32,32,32,32,32,116,104,101,109,101,58,32,92,34,228,184,187,233,162,152,92,34,44,92,110,32,32,32,32,32,32,108,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,58,32,92,34,229,156,168,229,155,190,231,137,135,230,159,165,231,156,139,229,153,168,228,184,173,239,188,140,228,184,141,232,166,129,233,162,132,232,175,187,231,155,184,233,130,187,231,154,132,229,133,168,229,155,190,92,34,44,92,110,32,32,32,32,32,32,115,108,105,100,101,68,117,114,97,116,105,111,110,58,32,92,34,229,185,187,231,129,175,231,137,135,230,151,182,233,149,191,92,34,44,92,110,32,32,32,32,32,32,114,101,115,117,108,116,83,105,122,101,58,32,92,34,230,175,143,233,161,181,231,187,147,230,158,156,230,149,176,92,34,44,92,110,32,32,32,32,32,32,116,97,103,79,114,79,112,101,114,97,116,111,114,58,32,92,34,228,189,191,231,148,168,230,136,150,230,147,141,228,189,156,239,188,136,79,82,239,188,137,229,140,185,233,133,141,229,164,154,228,184,170,230,160,135,231,173,190,227,128,130,92,34,44,92,110,32,32,32,32,32,32,104,105,100,101,68,117,112,108,105,99,97,116,101,115,58,32,92,34,228,189,191,231,148,168,230,160,161,233,170,140,231,160,129,233,154,144,232,151,143,233,135,141,229,164,141,231,187,147,230,158,156,92,34,44,92,110,32,32,32,32,32,32,104,105,100,101,76,101,103,97,99,121,58,32,92,34,233,154,144,232,151,143,39,108,101,103,97,99,121,69,83,39,32,69,108,97,115,116,105,99,115,101,97,114,99,104,32,233,128,154,231,159,165,92,34,44,92,110,32,32,32,32,32,32,117,112,100,97,116,101,77,105,109,101,77,97,112,58,32,92,34,229,170,146,228,189,147,231,177,187,229,158,139,230,160,145,231,154,132,229,174,158,230,151,182,230,155,180,230,150,176,92,34,44,92,110,32,32,32,32,32,32,117,115,101,68,97,116,101,80,105,99,107,101,114,58,32,92,34,228,189,191,231,148,168,230,151,165,230,156,159,233,128,137,230,139,169,229,153,168,231,187,132,228,187,182,232,128,140,228,184,141,230,152,175,230,187,145,229,157,151,92,34,44,92,110,32,32,32,32,32,32,118,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,58,32,92,34,232,167,134,233,162,145,233,162,132,232,167,136,229,184,167,231,154,132,230,140,129,231,187,173,230,151,182,233,151,180,239,188,140,228,187,165,230,175,171,231,167,146,228,184,186,229,141,149,228,189,141,92,34,44,92,110,32,32,32,32,32,32,115,105,109,112,108,101,76,105,103,104,116,98,111,120,58,32,92,34,229,156,168,229,155,190,231,137,135,230,159,165,231,156,139,229,153,168,228,184,173,239,188,140,231,166,129,231,148,168,229,138,168,231,148,187,92,34,44,92,110,32,32,32,32,32,32,115,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,58,32,92,34,230,152,190,231,164,186,230,160,135,231,173,190,232,191,135,230,187,164,230,160,143,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,113,117,101,114,121,77,111,100,101,58,32,123,92,110,32,32,32,32,32,32,115,105,109,112,108,101,58,32,92,34,231,174,128,229,141,149,92,34,44,92,110,32,32,32,32,32,32,97,100,118,97,110,99,101,100,58,32,92,34,233,171,152,231,186,167,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,97,110,103,58,32,123,92,110,32,32,32,32,32,32,101,110,58,32,92,34,69,110,103,108,105,115,104,92,34,44,92,110,32,32,32,32,32,32,102,114,58,32,92,34,70,114,97,110,195,167,97,105,115,92,34,44,92,110,32,32,32,32,32,32,92,34,122,104,45,67,78,92,34,58,32,92,34,231,174,128,228,189,147,228,184,173,230,150,135,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,105,115,112,108,97,121,77,111,100,101,58,32,123,92,110,32,32,32,32,32,32,103,114,105,100,58,32,92,34,231,189,145,230,160,188,92,34,44,92,110,32,32,32,32,32,32,108,105,115,116,58,32,92,34,229,136,151,232,161,168,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,111,108,117,109,110,115,58,32,123,92,110,32,32,32,32,32,32,97,117,116,111,58,32,92,34,232,135,170,229,138,168,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,114,101,101,109,97,112,84,121,112,101,58,32,123,92,110,32,32,32,32,32,32,99,97,115,99,97,100,101,100,58,32,92,34,230,138,152,229,143,160,92,34,44,92,110,32,32,32,32,32,32,102,108,97,116,58,32,92,34,229,185,179,233,147,186,239,188,136,231,180,167,229,135,145,239,188,137,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,114,101,101,109,97,112,83,105,122,101,58,32,123,92,110,32,32,32,32,32,32,115,109,97,108,108,58,32,92,34,229,176,143,92,34,44,92,110,32,32,32,32,32,32,109,101,100,105,117,109,58,32,92,34,228,184,173,92,34,44,92,110,32,32,32,32,32,32,108,97,114,103,101,58,32,92,34,229,164,167,92,34,44,92,110,32,32,32,32,32,32,120,76,97,114,103,101,58,32,92,34,229,138,160,229,164,167,92,34,44,92,110,32,32,32,32,32,32,120,120,76,97,114,103,101,58,32,92,34,229,138,160,229,138,160,229,164,167,92,34,44,92,110,32,32,32,32,32,32,99,117,115,116,111,109,58,32,92,34,232,135,170,232,174,162,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,114,101,101,109,97,112,84,105,108,105,110,103,58,32,123,92,110,32,32,32,32,32,32,98,105,110,97,114,121,58,32,92,34,66,105,110,97,114,121,92,34,44,92,110,32,32,32,32,32,32,115,113,117,97,114,105,102,121,58,32,92,34,83,113,117,97,114,105,102,121,92,34,44,92,110,32,32,32,32,32,32,115,108,105,99,101,58,32,92,34,83,108,105,99,101,92,34,44,92,110,32,32,32,32,32,32,100,105,99,101,58,32,92,34,68,105,99,101,92,34,44,92,110,32,32,32,32,32,32,115,108,105,99,101,68,105,99,101,58,32,92,34,83,108,105,99,101,32,38,32,68,105,99,101,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,116,104,101,109,101,58,32,123,92,110,32,32,32,32,32,32,108,105,103,104,116,58,32,92,34,228,186,174,92,34,44,92,110,32,32,32,32,32,32,98,108,97,99,107,58,32,92,34,230,154,151,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,104,105,116,58,32,92,34,229,145,189,228,184,173,92,34,44,92,110,32,32,32,32,104,105,116,115,58,32,92,34,229,145,189,228,184,173,92,34,44,92,110,32,32,32,32,100,101,116,97,105,108,115,58,32,92,34,232,175,166,231,187,134,228,191,161,230,129,175,92,34,44,92,110,32,32,32,32,115,116,97,116,115,58,32,92,34,231,187,159,232,174,161,228,191,161,230,129,175,92,34,44,92,110,32,32,32,32,113,117,101,114,121,84,105,109,101,58,32,92,34,230,159,165,232,175,162,230,151,182,233,151,180,92,34,44,92,110,32,32,32,32,116,111,116,97,108,83,105,122,101,58,32,92,34,230,128,187,229,164,167,229,176,143,92,34,44,92,110,32,32,32,32,112,97,116,104,66,97,114,58,32,123,92,110,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,92,34,232,191,135,230,187,164,232,183,175,229,190,132,92,34,44,92,110,32,32,32,32,32,32,109,111,100,97,108,84,105,116,108,101,58,32,92,34,233,128,137,230,139,169,232,183,175,229,190,132,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,101,98,117,103,58,32,92,34,232,176,131,232,175,149,228,191,161,230,129,175,92,34,44,92,110,32,32,32,32,100,101,98,117,103,68,101,115,99,114,105,112,116,105,111,110,58,32,92,34,229,175,185,232,176,131,232,175,149,233,153,164,233,148,153,230,156,137,231,148,168,231,154,132,228,191,161,230,129,175,227,128,130,32,232,139,165,230,130,168,233,129,135,229,136,176,98,117,103,230,136,150,232,128,133,230,131,179,229,187,186,232,174,174,230,150,176,229,138,159,232,131,189,239,188,140,232,175,183,230,143,144,228,186,164,230,150,176,73,115,115,117,101,229,136,176,92,34,32,43,32,92,34,60,97,32,104,114,101,102,61,39,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,115,105,109,111,110,57,56,55,47,115,105,115,116,50,47,105,115,115,117,101,115,47,110,101,119,47,99,104,111,111,115,101,39,62,232,191,153,233,135,140,60,47,97,62,46,92,34,44,92,110,32,32,32,32,116,97,103,108,105,110,101,58,32,92,34,230,160,135,231,173,190,230,160,143,92,34,44,92,110,32,32,32,32,116,111,97,115,116,58,32,123,92,110,32,32,32,32,32,32,101,115,67,111,110,110,69,114,114,84,105,116,108,101,58,32,92,34,69,108,97,115,116,105,99,115,101,97,114,99,104,232,191,158,230,142,165,233,148,153,232,175,175,92,34,44,92,110,32,32,32,32,32,32,101,115,67,111,110,110,69,114,114,58,32,92,34,115,105,115,116,50,32,119,101,98,32,230,168,161,229,157,151,232,191,158,230,142,165,69,108,97,115,116,105,99,115,101,97,114,99,104,229,135,186,233,148,153,227,128,130,92,34,32,43,32,92,34,230,159,165,231,156,139,230,156,141,229,138,161,230,151,165,229,191,151,228,187,165,232,142,183,229,143,150,230,155,180,229,164,154,228,191,161,230,129,175,227,128,130,92,34,44,92,110,32,32,32,32,32,32,101,115,81,117,101,114,121,69,114,114,84,105,116,108,101,58,32,92,34,230,159,165,232,175,162,233,148,153,232,175,175,92,34,44,92,110,32,32,32,32,32,32,101,115,81,117,101,114,121,69,114,114,58,32,92,34,230,151,160,230,179,149,232,175,134,229,136,171,230,136,150,230,137,167,232,161,140,230,159,165,232,175,162,239,188,140,232,175,183,230,159,165,233,152,133,233,171,152,231,186,167,230,144,156,231,180,162,230,150,135,230,161,163,227,128,130,92,34,32,43,32,92,34,230,159,165,231,156,139,230,156,141,229,138,161,230,151,165,229,191,151,228,187,165,232,142,183,229,143,150,230,155,180,229,164,154,228,191,161,230,129,175,227,128,130,92,34,44,92,110,32,32,32,32,32,32,100,117,112,101,84,97,103,84,105,116,108,101,58,32,92,34,233,135,141,229,164,141,230,160,135,231,173,190,92,34,44,92,110,32,32,32,32,32,32,100,117,112,101,84,97,103,58,32,92,34,232,175,165,230,160,135,231,173,190,229,183,178,229,173,152,229,156,168,228,186,142,230,173,164,230,150,135,230,161,163,227,128,130,92,34,44,92,110,32,32,32,32,32,32,99,111,112,105,101,100,84,111,67,108,105,112,98,111,97,114,100,58,32,92,34,229,164,141,229,136,182,229,136,176,229,137,170,232,180,180,230,157,191,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,97,118,101,84,97,103,77,111,100,97,108,84,105,116,108,101,58,32,92,34,229,162,158,229,138,160,230,160,135,231,173,190,92,34,44,92,110,32,32,32,32,115,97,118,101,84,97,103,80,108,97,99,101,104,111,108,100,101,114,58,32,92,34,230,160,135,231,173,190,229,144,141,92,34,44,92,110,32,32,32,32,99,111,110,102,105,114,109,58,32,92,34,231,161,174,232,174,164,92,34,44,92,110,32,32,32,32,105,110,100,101,120,80,105,99,107,101,114,80,108,97,99,101,104,111,108,100,101,114,58,32,92,34,233,128,137,230,139,169,228,184,128,228,184,170,231,180,162,229,188,149,92,34,44,92,110,32,32,32,32,115,111,114,116,58,32,123,92,110,32,32,32,32,32,32,114,101,108,101,118,97,110,99,101,58,32,92,34,231,155,184,229,133,179,229,186,166,92,34,44,92,110,32,32,32,32,32,32,100,97,116,101,65,115,99,58,32,92,34,230,151,165,230,156,159,239,188,136,231,148,177,230,151,167,229,136,176,230,150,176,239,188,137,92,34,44,92,110,32,32,32,32,32,32,100,97,116,101,68,101,115,99,58,32,92,34,230,151,165,230,156,159,239,188,136,231,148,177,230,150,176,229,136,176,230,151,167,239,188,137,92,34,44,92,110,32,32,32,32,32,32,115,105,122,101,65,115,99,58,32,92,34,229,164,167,229,176,143,239,188,136,228,187,142,229,176,143,229,136,176,229,164,167,239,188,137,92,34,44,92,110,32,32,32,32,32,32,115,105,122,101,68,101,115,99,58,32,92,34,229,164,167,229,176,143,239,188,136,228,187,142,229,164,167,229,136,176,229,176,143,239,188,137,92,34,44,92,110,32,32,32,32,32,32,110,97,109,101,65,115,99,58,32,92,34,229,144,141,229,173,151,239,188,136,65,45,122,239,188,137,92,34,44,92,110,32,32,32,32,32,32,110,97,109,101,68,101,115,99,58,32,92,34,229,144,141,229,173,151,32,239,188,136,90,45,97,239,188,137,92,34,44,92,110,32,32,32,32,32,32,114,97,110,100,111,109,58,32,92,34,233,154,143,230,156,186,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,100,51,58,32,123,92,110,32,32,32,32,32,32,109,105,109,101,67,111,117,110,116,58,32,92,34,229,144,132,231,177,187,230,150,135,228,187,182,230,149,176,233,135,143,229,136,134,229,184,131,92,34,44,92,110,32,32,32,32,32,32,109,105,109,101,83,105,122,101,58,32,92,34,229,144,132,231,177,187,230,150,135,228,187,182,229,164,167,229,176,143,229,136,134,229,184,131,92,34,44,92,110,32,32,32,32,32,32,100,97,116,101,72,105,115,116,111,103,114,97,109,58,32,92,34,230,150,135,228,187,182,228,191,174,230,148,185,230,151,182,233,151,180,229,136,134,229,184,131,92,34,44,92,110,32,32,32,32,32,32,115,105,122,101,72,105,115,116,111,103,114,97,109,58,32,92,34,230,150,135,228,187,182,229,164,167,229,176,143,229,136,134,229,184,131,92,34,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,110,100,101,120,80,105,99,107,101,114,58,32,123,92,110,32,32,32,32,32,32,115,101,108,101,99,116,78,111,110,101,58,32,92,34,230,184,133,231,169,186,92,34,44,92,110,32,32,32,32,32,32,115,101,108,101,99,116,65,108,108,58,32,92,34,229,133,168,233,128,137,92,34,44,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,101,120,58,32,92,34,233,128,137,228,184,173,231,180,162,229,188,149,92,34,44,92,110,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,32,92,34,233,128,137,228,184,173,231,180,162,229,188,149,92,34,92,110,32,32,32,32,125,92,110,32,32,125,92,110,125,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,105,49,56,110,47,109,101,115,115,97,103,101,115,46,116,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,114,111,117,116,101,114,47,97,117,116,104,48,46,116,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,114,111,117,116,101,114,47,97,117,116,104,48,46,116,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,97,117,116,104,71,117,97,114,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,97,117,116,104,71,117,97,114,100,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,108,117,103,105,110,115,95,97,117,116,104,48,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,112,108,117,103,105,110,115,47,97,117,116,104,48,32,42,47,32,92,34,46,47,115,114,99,47,112,108,117,103,105,110,115,47,97,117,116,104,48,46,106,115,92,34,41,59,92,110,92,110,99,111,110,115,116,32,97,117,116,104,71,117,97,114,100,32,61,32,40,116,111,44,32,102,114,111,109,44,32,110,101,120,116,41,32,61,62,32,123,92,110,32,32,99,111,110,115,116,32,97,117,116,104,83,101,114,118,105,99,101,32,61,32,40,48,44,95,112,108,117,103,105,110,115,95,97,117,116,104,48,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,103,101,116,73,110,115,116,97,110,99,101,41,40,41,59,92,110,32,32,99,111,110,115,116,32,102,110,32,61,32,40,41,32,61,62,32,123,92,110,32,32,32,32,47,47,32,73,102,32,116,104,101,32,117,115,101,114,32,105,115,32,97,117,116,104,101,110,116,105,99,97,116,101,100,44,32,99,111,110,116,105,110,117,101,32,119,105,116,104,32,116,104,101,32,114,111,117,116,101,92,110,32,32,32,32,105,102,32,40,97,117,116,104,83,101,114,118,105,99,101,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,110,101,120,116,40,41,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,32,79,116,104,101,114,119,105,115,101,44,32,108,111,103,32,105,110,92,110,32,32,32,32,97,117,116,104,83,101,114,118,105,99,101,46,108,111,103,105,110,87,105,116,104,82,101,100,105,114,101,99,116,40,123,92,110,32,32,32,32,32,32,97,112,112,83,116,97,116,101,58,32,123,92,110,32,32,32,32,32,32,32,32,116,97,114,103,101,116,85,114,108,58,32,116,111,46,102,117,108,108,80,97,116,104,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,41,59,92,110,32,32,125,59,92,110,32,32,47,47,32,73,102,32,108,111,97,100,105,110,103,32,104,97,115,32,97,108,114,101,97,100,121,32,102,105,110,105,115,104,101,100,44,32,99,104,101,99,107,32,111,117,114,32,97,117,116,104,32,115,116,97,116,101,32,117,115,105,110,103,32,96,102,110,40,41,96,92,110,32,32,105,102,32,40,33,97,117,116,104,83,101,114,118,105,99,101,46,108,111,97,100,105,110,103,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,102,110,40,41,59,92,110,32,32,125,92,110,32,32,47,47,32,87,97,116,99,104,32,102,111,114,32,116,104,101,32,108,111,97,100,105,110,103,32,112,114,111,112,101,114,116,121,32,116,111,32,99,104,97,110,103,101,32,98,101,102,111,114,101,32,119,101,32,99,104,101,99,107,32,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,92,110,32,32,97,117,116,104,83,101,114,118,105,99,101,46,36,119,97,116,99,104,40,92,34,108,111,97,100,105,110,103,92,34,44,32,108,111,97,100,105,110,103,32,61,62,32,123,92,110,32,32,32,32,105,102,32,40,108,111,97,100,105,110,103,32,61,61,61,32,102,97,108,115,101,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,102,110,40,41,59,92,110,32,32,32,32,125,92,110,32,32,125,41,59,92,110,125,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,114,111,117,116,101,114,47,97,117,116,104,48,46,116,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,114,111,117,116,101,114,47,105,110,100,101,120,46,116,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,114,111,117,116,101,114,47,105,110,100,101,120,46,116,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,116,85,115,101,65,117,116,104,48,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,116,85,115,101,65,117,116,104,48,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,45,114,111,117,116,101,114,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,114,111,117,116,101,114,47,100,105,115,116,47,118,117,101,45,114,111,117,116,101,114,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,105,101,119,115,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,105,101,119,115,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,46,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,105,101,119,115,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,118,105,101,119,115,95,70,105,108,101,80,97,103,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,114,111,117,116,101,114,95,97,117,116,104,48,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,114,111,117,116,101,114,47,97,117,116,104,48,32,42,47,32,92,34,46,47,115,114,99,47,114,111,117,116,101,114,47,97,117,116,104,48,46,116,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,92,110,92,110,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,53,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,117,115,101,40,118,117,101,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,108,101,116,32,85,83,69,95,65,85,84,72,48,32,61,32,102,97,108,115,101,59,92,110,102,117,110,99,116,105,111,110,32,115,101,116,85,115,101,65,117,116,104,48,40,118,97,108,41,32,123,92,110,32,32,85,83,69,95,65,85,84,72,48,32,61,32,118,97,108,59,92,110,125,92,110,99,111,110,115,116,32,97,117,116,104,71,117,97,114,100,32,61,32,40,116,111,44,32,102,114,111,109,44,32,110,101,120,116,41,32,61,62,32,123,92,110,32,32,105,102,32,40,85,83,69,95,65,85,84,72,48,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,40,48,44,95,114,111,117,116,101,114,95,97,117,116,104,48,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,46,97,117,116,104,71,117,97,114,100,41,40,116,111,44,32,102,114,111,109,44,32,110,101,120,116,41,59,92,110,32,32,125,92,110,32,32,110,101,120,116,40,41,59,92,110,125,59,92,110,99,111,110,115,116,32,114,111,117,116,101,115,32,61,32,91,123,92,110,32,32,112,97,116,104,58,32,92,34,47,92,34,44,92,110,32,32,110,97,109,101,58,32,92,34,83,101,97,114,99,104,80,97,103,101,92,34,44,92,110,32,32,99,111,109,112,111,110,101,110,116,58,32,95,118,105,101,119,115,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,98,101,102,111,114,101,69,110,116,101,114,58,32,97,117,116,104,71,117,97,114,100,92,110,125,44,32,123,92,110,32,32,112,97,116,104,58,32,92,34,47,115,116,97,116,115,92,34,44,92,110,32,32,110,97,109,101,58,32,92,34,83,116,97,116,115,92,34,44,92,110,32,32,99,111,109,112,111,110,101,110,116,58,32,95,118,105,101,119,115,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,125,44,32,123,92,110,32,32,112,97,116,104,58,32,92,34,47,99,111,110,102,105,103,92,34,44,92,110,32,32,110,97,109,101,58,32,92,34,67,111,110,102,105,103,117,114,97,116,105,111,110,92,34,44,92,110,32,32,99,111,109,112,111,110,101,110,116,58,32,95,118,105,101,119,115,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,125,44,32,123,92,110,32,32,112,97,116,104,58,32,92,34,47,102,105,108,101,92,34,44,92,110,32,32,110,97,109,101,58,32,92,34,70,105,108,101,92,34,44,92,110,32,32,99,111,109,112,111,110,101,110,116,58,32,95,118,105,101,119,115,95,70,105,108,101,80,97,103,101,95,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,92,110,125,93,59,92,110,99,111,110,115,116,32,114,111,117,116,101,114,32,61,32,110,101,119,32,118,117,101,95,114,111,117,116,101,114,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,54,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,40,123,92,110,32,32,109,111,100,101,58,32,92,34,104,97,115,104,92,34,44,92,110,32,32,98,97,115,101,58,32,92,34,92,34,44,92,110,32,32,114,111,117,116,101,115,44,92,110,32,32,115,99,114,111,108,108,66,101,104,97,118,105,111,114,40,116,111,44,32,102,114,111,109,44,32,115,97,118,101,100,80,111,115,105,116,105,111,110,41,32,123,92,110,32,32,32,32,47,47,32,114,101,116,117,114,110,32,100,101,115,105,114,101,100,32,112,111,115,105,116,105,111,110,92,110,32,32,125,92,110,125,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,114,111,117,116,101,114,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,114,111,117,116,101,114,47,105,110,100,101,120,46,116,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,115,116,111,114,101,47,105,110,100,101,120,46,116,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,115,116,111,114,101,47,105,110,100,101,120,46,116,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,47,100,105,115,116,47,118,117,101,46,114,117,110,116,105,109,101,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,118,117,101,120,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,120,47,100,105,115,116,47,118,117,101,120,46,101,115,109,46,106,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,117,116,105,108,32,42,47,32,92,34,46,47,115,114,99,47,117,116,105,108,46,116,115,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,112,108,117,103,105,110,115,95,97,117,116,104,48,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,64,47,112,108,117,103,105,110,115,47,97,117,116,104,48,46,106,115,32,42,47,32,92,34,46,47,115,114,99,47,112,108,117,103,105,110,115,47,97,117,116,104,48,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,99,111,110,115,116,32,67,79,78,70,95,86,69,82,83,73,79,78,32,61,32,50,59,92,110,118,117,101,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,117,115,101,40,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,110,101,119,32,118,117,101,120,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,46,83,116,111,114,101,40,123,92,110,32,32,115,116,97,116,101,58,32,123,92,110,32,32,32,32,115,101,101,100,58,32,48,44,92,110,32,32,32,32,105,110,100,105,99,101,115,58,32,91,93,44,92,110,32,32,32,32,116,97,103,115,58,32,91,93,44,92,110,32,32,32,32,115,105,115,116,50,73,110,102,111,58,32,110,117,108,108,44,92,110,32,32,32,32,115,105,122,101,77,105,110,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,115,105,122,101,77,97,120,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,100,97,116,101,66,111,117,110,100,115,77,105,110,58,32,110,117,108,108,44,92,110,32,32,32,32,100,97,116,101,66,111,117,110,100,115,77,97,120,58,32,110,117,108,108,44,92,110,32,32,32,32,100,97,116,101,77,105,110,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,100,97,116,101,77,97,120,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,115,101,97,114,99,104,84,101,120,116,58,32,92,34,92,34,44,92,110,32,32,32,32,112,97,116,104,84,101,120,116,58,32,92,34,92,34,44,92,110,32,32,32,32,115,111,114,116,77,111,100,101,58,32,92,34,115,99,111,114,101,92,34,44,92,110,32,32,32,32,102,117,122,122,121,58,32,102,97,108,115,101,44,92,110,32,32,32,32,111,112,116,76,97,110,103,58,32,92,34,101,110,92,34,44,92,110,32,32,32,32,111,112,116,76,97,110,103,73,115,68,101,102,97,117,108,116,58,32,116,114,117,101,44,92,110,32,32,32,32,111,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,58,32,116,114,117,101,44,92,110,32,32,32,32,111,112,116,84,104,101,109,101,58,32,92,34,108,105,103,104,116,92,34,44,92,110,32,32,32,32,111,112,116,68,105,115,112,108,97,121,58,32,92,34,103,114,105,100,92,34,44,92,110,32,32,32,32,111,112,116,83,105,122,101,58,32,54,48,44,92,110,32,32,32,32,111,112,116,72,105,103,104,108,105,103,104,116,58,32,116,114,117,101,44,92,110,32,32,32,32,111,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,58,32,102,97,108,115,101,44,92,110,32,32,32,32,111,112,116,70,117,122,122,121,58,32,116,114,117,101,44,92,110,32,32,32,32,111,112,116,70,114,97,103,109,101,110,116,83,105,122,101,58,32,50,48,48,44,92,110,32,32,32,32,111,112,116,81,117,101,114,121,77,111,100,101,58,32,92,34,115,105,109,112,108,101,92,34,44,92,110,32,32,32,32,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,58,32,102,97,108,115,101,44,92,110,32,32,32,32,111,112,116,67,111,108,117,109,110,115,58,32,92,34,97,117,116,111,92,34,44,92,110,32,32,32,32,111,112,116,83,117,103,103,101,115,116,80,97,116,104,58,32,116,114,117,101,44,92,110,32,32,32,32,111,112,116,84,114,101,101,109,97,112,84,121,112,101,58,32,92,34,99,97,115,99,97,100,101,100,92,34,44,92,110,32,32,32,32,111,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,58,32,92,34,115,113,117,97,114,105,102,121,92,34,44,92,110,32,32,32,32,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,58,32,51,44,92,110,32,32,32,32,111,112,116,84,114,101,101,109,97,112,83,105,122,101,58,32,92,34,109,101,100,105,117,109,92,34,44,92,110,32,32,32,32,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,58,32,92,34,80,117,66,117,71,110,92,34,44,92,110,32,32,32,32,111,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,58,32,102,97,108,115,101,44,92,110,32,32,32,32,111,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,58,32,49,53,44,92,110,32,32,32,32,111,112,116,72,105,100,101,76,101,103,97,99,121,58,32,102,97,108,115,101,44,92,110,32,32,32,32,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,58,32,102,97,108,115,101,44,92,110,32,32,32,32,111,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,58,32,102,97,108,115,101,44,92,110,32,32,32,32,111,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,58,32,55,48,48,44,92,110,32,32,32,32,111,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,58,32,116,114,117,101,44,92,110,32,32,32,32,111,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,58,32,116,114,117,101,44,92,110,32,32,32,32,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,32,91,93,44,92,110,32,32,32,32,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,58,32,91,93,44,92,110,32,32,32,32,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,84,97,103,115,58,32,91,93,44,92,110,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,32,91,93,44,92,110,32,32,32,32,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,58,32,91,93,44,92,110,32,32,32,32,115,101,108,101,99,116,101,100,84,97,103,115,58,32,91,93,44,92,110,32,32,32,32,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,58,32,110,117,108,108,44,92,110,32,32,32,32,107,101,121,83,101,113,117,101,110,99,101,58,32,48,44,92,110,32,32,32,32,113,117,101,114,121,83,101,113,117,101,110,99,101,58,32,48,44,92,110,32,32,32,32,117,105,84,97,103,72,111,118,101,114,58,32,110,117,108,108,44,92,110,32,32,32,32,117,105,76,105,103,104,116,98,111,120,73,115,79,112,101,110,58,32,102,97,108,115,101,44,92,110,32,32,32,32,117,105,83,104,111,119,76,105,103,104,116,98,111,120,58,32,102,97,108,115,101,44,92,110,32,32,32,32,117,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,58,32,91,93,44,92,110,32,32,32,32,117,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,58,32,91,93,44,92,110,32,32,32,32,117,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,58,32,91,93,44,92,110,32,32,32,32,117,105,76,105,103,104,116,98,111,120,84,121,112,101,115,58,32,91,93,44,92,110,32,32,32,32,117,105,76,105,103,104,116,98,111,120,75,101,121,58,32,48,44,92,110,32,32,32,32,117,105,76,105,103,104,116,98,111,120,83,108,105,100,101,58,32,48,44,92,110,32,32,32,32,117,105,82,101,97,99,104,101,100,83,99,114,111,108,108,69,110,100,58,32,102,97,108,115,101,44,92,110,32,32,32,32,117,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,58,32,110,117,108,108,44,92,110,32,32,32,32,117,105,83,104,111,119,68,101,116,97,105,108,115,58,32,102,97,108,115,101,44,92,110,32,32,32,32,117,105,77,105,109,101,77,97,112,58,32,91,93,44,92,110,32,32,32,32,97,117,116,104,48,84,111,107,101,110,58,32,110,117,108,108,92,110,32,32,125,44,92,110,32,32,109,117,116,97,116,105,111,110,115,58,32,123,92,110,32,32,32,32,115,101,116,85,105,83,104,111,119,68,101,116,97,105,108,115,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,117,105,83,104,111,119,68,101,116,97,105,108,115,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,85,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,117,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,85,105,82,101,97,99,104,101,100,83,99,114,111,108,108,69,110,100,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,117,105,82,101,97,99,104,101,100,83,99,114,111,108,108,69,110,100,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,84,97,103,115,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,116,97,103,115,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,80,97,116,104,84,101,120,116,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,112,97,116,104,84,101,120,116,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,83,105,122,101,77,105,110,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,115,105,122,101,77,105,110,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,83,105,122,101,77,97,120,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,115,105,122,101,77,97,120,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,83,105,115,116,50,73,110,102,111,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,83,101,101,100,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,115,101,101,100,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,76,97,110,103,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,123,92,110,32,32,32,32,32,32,115,116,97,116,101,46,111,112,116,76,97,110,103,32,61,32,118,97,108,59,92,110,32,32,32,32,32,32,115,116,97,116,101,46,111,112,116,76,97,110,103,73,115,68,101,102,97,117,108,116,32,61,32,102,97,108,115,101,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,83,111,114,116,77,111,100,101,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,115,111,114,116,77,111,100,101,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,73,110,100,105,99,101,115,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,123,92,110,32,32,32,32,32,32,115,116,97,116,101,46,105,110,100,105,99,101,115,32,61,32,118,97,108,59,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,116,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,108,101,110,103,116,104,32,62,32,48,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,101,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,32,61,32,118,97,108,46,102,105,108,116,101,114,40,105,100,120,32,61,62,32,115,116,97,116,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,115,111,109,101,40,112,114,101,102,105,120,32,61,62,32,105,100,120,46,105,100,46,115,116,97,114,116,115,87,105,116,104,40,112,114,101,102,105,120,41,41,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,101,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,32,61,32,118,97,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,68,97,116,101,77,105,110,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,100,97,116,101,77,105,110,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,68,97,116,101,77,97,120,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,100,97,116,101,77,97,120,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,68,97,116,101,66,111,117,110,100,115,77,105,110,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,100,97,116,101,66,111,117,110,100,115,77,105,110,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,68,97,116,101,66,111,117,110,100,115,77,97,120,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,100,97,116,101,66,111,117,110,100,115,77,97,120,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,83,101,97,114,99,104,84,101,120,116,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,115,101,97,114,99,104,84,101,120,116,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,70,117,122,122,121,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,102,117,122,122,121,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,76,97,115,116,81,117,101,114,121,82,101,115,117,108,116,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,32,61,32,118,97,108,44,92,110,32,32,32,32,95,115,101,116,79,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,32,61,32,118,97,108,44,92,110,32,32,32,32,95,115,101,116,79,110,76,111,97,100,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,32,61,32,118,97,108,44,92,110,32,32,32,32,95,115,101,116,79,110,76,111,97,100,83,101,108,101,99,116,101,100,84,97,103,115,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,84,97,103,115,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,83,101,108,101,99,116,101,100,84,97,103,115,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,115,101,108,101,99,116,101,100,84,97,103,115,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,85,105,84,97,103,72,111,118,101,114,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,117,105,84,97,103,72,111,118,101,114,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,85,105,76,105,103,104,116,98,111,120,73,115,79,112,101,110,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,73,115,79,112,101,110,32,61,32,118,97,108,44,92,110,32,32,32,32,95,115,101,116,85,105,83,104,111,119,76,105,103,104,116,98,111,120,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,117,105,83,104,111,119,76,105,103,104,116,98,111,120,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,85,105,76,105,103,104,116,98,111,120,75,101,121,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,75,101,121,32,61,32,118,97,108,44,92,110,32,32,32,32,95,115,101,116,75,101,121,83,101,113,117,101,110,99,101,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,107,101,121,83,101,113,117,101,110,99,101,32,61,32,118,97,108,44,92,110,32,32,32,32,95,115,101,116,81,117,101,114,121,83,101,113,117,101,110,99,101,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,113,117,101,114,121,83,101,113,117,101,110,99,101,32,61,32,118,97,108,44,92,110,32,32,32,32,97,100,100,76,105,103,104,116,98,111,120,83,111,117,114,99,101,58,32,40,115,116,97,116,101,44,32,123,92,110,32,32,32,32,32,32,115,111,117,114,99,101,44,92,110,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,44,92,110,32,32,32,32,32,32,99,97,112,116,105,111,110,44,92,110,32,32,32,32,32,32,116,121,112,101,92,110,32,32,32,32,125,41,32,61,62,32,123,92,110,32,32,32,32,32,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,46,112,117,115,104,40,115,111,117,114,99,101,41,59,92,110,32,32,32,32,32,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,46,112,117,115,104,40,116,104,117,109,98,110,97,105,108,41,59,92,110,32,32,32,32,32,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,46,112,117,115,104,40,99,97,112,116,105,111,110,41,59,92,110,32,32,32,32,32,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,84,121,112,101,115,46,112,117,115,104,40,116,121,112,101,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,85,105,76,105,103,104,116,98,111,120,83,108,105,100,101,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,83,108,105,100,101,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,85,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,85,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,85,105,76,105,103,104,116,98,111,120,84,121,112,101,115,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,84,121,112,101,115,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,85,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,84,104,101,109,101,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,84,104,101,109,101,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,68,105,115,112,108,97,121,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,68,105,115,112,108,97,121,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,67,111,108,117,109,110,115,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,67,111,108,117,109,110,115,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,72,105,103,104,108,105,103,104,116,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,72,105,103,104,108,105,103,104,116,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,70,117,122,122,121,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,102,117,122,122,121,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,83,101,97,114,99,104,73,110,80,97,116,104,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,83,117,103,103,101,115,116,80,97,116,104,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,83,117,103,103,101,115,116,80,97,116,104,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,70,114,97,103,109,101,110,116,83,105,122,101,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,70,114,97,103,109,101,110,116,83,105,122,101,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,81,117,101,114,121,77,111,100,101,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,81,117,101,114,121,77,111,100,101,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,82,101,115,117,108,116,83,105,122,101,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,83,105,122,101,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,84,114,101,101,109,97,112,84,121,112,101,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,84,121,112,101,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,84,114,101,101,109,97,112,83,105,122,101,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,84,114,101,101,109,97,112,67,111,108,111,114,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,72,105,100,101,76,101,103,97,99,121,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,72,105,100,101,76,101,103,97,99,121,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,79,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,111,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,32,61,32,118,97,108,44,92,110,32,32,32,32,115,101,116,85,105,77,105,109,101,77,97,112,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,117,105,77,105,109,101,77,97,112,32,61,32,118,97,108,44,92,110,32,32,32,32,98,117,115,85,112,100,97,116,101,87,97,108,108,73,116,101,109,115,58,32,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,47,47,32,110,111,111,112,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,117,115,85,112,100,97,116,101,84,97,103,115,58,32,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,47,47,32,110,111,111,112,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,117,115,83,101,97,114,99,104,58,32,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,47,47,32,110,111,111,112,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,117,115,84,111,117,99,104,69,110,100,58,32,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,47,47,32,110,111,111,112,92,110,32,32,32,32,125,44,92,110,32,32,32,32,98,117,115,84,110,84,111,117,99,104,83,116,97,114,116,58,32,100,111,99,95,105,100,32,61,62,32,123,92,110,32,32,32,32,32,32,47,47,32,110,111,111,112,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,65,117,116,104,48,84,111,107,101,110,58,32,40,115,116,97,116,101,44,32,118,97,108,41,32,61,62,32,115,116,97,116,101,46,97,117,116,104,48,84,111,107,101,110,32,61,32,118,97,108,92,110,32,32,125,44,92,110,32,32,97,99,116,105,111,110,115,58,32,123,92,110,32,32,32,32,115,101,116,83,105,115,116,50,73,110,102,111,58,32,40,115,116,111,114,101,44,32,118,97,108,41,32,61,62,32,123,92,110,32,32,32,32,32,32,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,83,105,115,116,50,73,110,102,111,92,34,44,32,118,97,108,41,59,92,110,32,32,32,32,32,32,105,102,32,40,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,76,97,110,103,73,115,68,101,102,97,117,108,116,41,32,123,92,110,32,32,32,32,32,32,32,32,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,115,101,116,79,112,116,76,97,110,103,92,34,44,32,118,97,108,46,108,97,110,103,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,111,97,100,70,114,111,109,65,114,103,115,40,123,92,110,32,32,32,32,32,32,99,111,109,109,105,116,92,110,32,32,32,32,125,44,32,114,111,117,116,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,114,111,117,116,101,46,113,117,101,114,121,46,113,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,83,101,97,114,99,104,84,101,120,116,92,34,44,32,114,111,117,116,101,46,113,117,101,114,121,46,113,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,114,111,117,116,101,46,113,117,101,114,121,46,102,117,122,122,121,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,70,117,122,122,121,92,34,44,32,116,114,117,101,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,114,111,117,116,101,46,113,117,101,114,121,46,105,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,95,115,101,116,79,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,92,34,44,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,111,117,116,101,46,113,117,101,114,121,46,105,41,32,63,32,114,111,117,116,101,46,113,117,101,114,121,46,105,32,58,32,91,114,111,117,116,101,46,113,117,101,114,121,46,105,93,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,114,111,117,116,101,46,113,117,101,114,121,46,100,77,105,110,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,68,97,116,101,77,105,110,92,34,44,32,78,117,109,98,101,114,40,114,111,117,116,101,46,113,117,101,114,121,46,100,77,105,110,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,114,111,117,116,101,46,113,117,101,114,121,46,100,77,97,120,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,68,97,116,101,77,97,120,92,34,44,32,78,117,109,98,101,114,40,114,111,117,116,101,46,113,117,101,114,121,46,100,77,97,120,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,114,111,117,116,101,46,113,117,101,114,121,46,115,77,105,110,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,83,105,122,101,77,105,110,92,34,44,32,78,117,109,98,101,114,40,114,111,117,116,101,46,113,117,101,114,121,46,115,77,105,110,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,114,111,117,116,101,46,113,117,101,114,121,46,115,77,97,120,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,83,105,122,101,77,97,120,92,34,44,32,78,117,109,98,101,114,40,114,111,117,116,101,46,113,117,101,114,121,46,115,77,97,120,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,114,111,117,116,101,46,113,117,101,114,121,46,112,97,116,104,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,80,97,116,104,84,101,120,116,92,34,44,32,114,111,117,116,101,46,113,117,101,114,121,46,112,97,116,104,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,114,111,117,116,101,46,113,117,101,114,121,46,109,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,95,115,101,116,79,110,76,111,97,100,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,92,34,44,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,100,101,115,101,114,105,97,108,105,122,101,77,105,109,101,115,41,40,114,111,117,116,101,46,113,117,101,114,121,46,109,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,114,111,117,116,101,46,113,117,101,114,121,46,116,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,95,115,101,116,79,110,76,111,97,100,83,101,108,101,99,116,101,100,84,97,103,115,92,34,44,32,114,111,117,116,101,46,113,117,101,114,121,46,116,46,115,112,108,105,116,40,92,34,44,92,34,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,105,102,32,40,114,111,117,116,101,46,113,117,101,114,121,46,115,111,114,116,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,83,111,114,116,77,111,100,101,92,34,44,32,114,111,117,116,101,46,113,117,101,114,121,46,115,111,114,116,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,114,111,117,116,101,46,113,117,101,114,121,46,115,111,114,116,32,61,61,61,32,92,34,114,97,110,100,111,109,92,34,32,38,38,32,114,111,117,116,101,46,113,117,101,114,121,46,115,101,101,100,32,61,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,111,117,116,101,46,113,117,101,114,121,46,115,101,101,100,32,61,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,97,110,100,111,109,83,101,101,100,41,40,41,46,116,111,83,116,114,105,110,103,40,41,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,83,101,101,100,92,34,44,32,78,117,109,98,101,114,40,114,111,117,116,101,46,113,117,101,114,121,46,115,101,101,100,41,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,115,121,110,99,32,117,112,100,97,116,101,65,114,103,115,40,123,92,110,32,32,32,32,32,32,115,116,97,116,101,92,110,32,32,32,32,125,44,32,114,111,117,116,101,114,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,114,111,117,116,101,114,46,99,117,114,114,101,110,116,82,111,117,116,101,46,112,97,116,104,32,33,61,61,32,92,34,47,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,97,119,97,105,116,32,114,111,117,116,101,114,46,112,117,115,104,40,123,92,110,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,113,58,32,115,116,97,116,101,46,115,101,97,114,99,104,84,101,120,116,46,116,114,105,109,40,41,32,63,32,115,116,97,116,101,46,115,101,97,114,99,104,84,101,120,116,46,116,114,105,109,40,41,46,114,101,112,108,97,99,101,40,47,92,92,115,43,47,103,44,32,92,34,32,92,34,41,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,102,117,122,122,121,58,32,115,116,97,116,101,46,102,117,122,122,121,32,63,32,110,117,108,108,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,105,58,32,115,116,97,116,101,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,32,63,32,115,116,97,116,101,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,109,97,112,40,105,100,120,32,61,62,32,105,100,120,46,105,100,80,114,101,102,105,120,41,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,100,77,105,110,58,32,115,116,97,116,101,46,100,97,116,101,77,105,110,44,92,110,32,32,32,32,32,32,32,32,32,32,100,77,97,120,58,32,115,116,97,116,101,46,100,97,116,101,77,97,120,44,92,110,32,32,32,32,32,32,32,32,32,32,115,77,105,110,58,32,115,116,97,116,101,46,115,105,122,101,77,105,110,44,92,110,32,32,32,32,32,32,32,32,32,32,115,77,97,120,58,32,115,116,97,116,101,46,115,105,122,101,77,97,120,44,92,110,32,32,32,32,32,32,32,32,32,32,112,97,116,104,58,32,115,116,97,116,101,46,112,97,116,104,84,101,120,116,32,63,32,115,116,97,116,101,46,112,97,116,104,84,101,120,116,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,109,58,32,40,48,44,95,117,116,105,108,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,101,114,105,97,108,105,122,101,77,105,109,101,115,41,40,115,116,97,116,101,46,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,41,44,92,110,32,32,32,32,32,32,32,32,32,32,116,58,32,115,116,97,116,101,46,115,101,108,101,99,116,101,100,84,97,103,115,46,108,101,110,103,116,104,32,61,61,32,48,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,115,116,97,116,101,46,115,101,108,101,99,116,101,100,84,97,103,115,46,106,111,105,110,40,92,34,44,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,115,111,114,116,58,32,115,116,97,116,101,46,115,111,114,116,77,111,100,101,32,61,61,61,32,92,34,115,99,111,114,101,92,34,32,63,32,117,110,100,101,102,105,110,101,100,32,58,32,115,116,97,116,101,46,115,111,114,116,77,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,115,101,101,100,58,32,115,116,97,116,101,46,115,111,114,116,77,111,100,101,32,61,61,61,32,92,34,114,97,110,100,111,109,92,34,32,63,32,115,116,97,116,101,46,115,101,101,100,46,116,111,83,116,114,105,110,103,40,41,32,58,32,117,110,100,101,102,105,110,101,100,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,46,99,97,116,99,104,40,40,41,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,47,47,32,105,103,110,111,114,101,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,112,100,97,116,101,67,111,110,102,105,103,117,114,97,116,105,111,110,40,123,92,110,32,32,32,32,32,32,115,116,97,116,101,92,110,32,32,32,32,125,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,99,111,110,102,32,61,32,123,125,59,92,110,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,115,116,97,116,101,41,46,102,111,114,69,97,99,104,40,107,101,121,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,92,34,111,112,116,92,34,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,111,110,102,91,107,101,121,93,32,61,32,115,116,97,116,101,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,99,111,110,102,91,92,34,118,101,114,115,105,111,110,92,34,93,32,61,32,67,79,78,70,95,86,69,82,83,73,79,78,59,92,110,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,92,34,115,105,115,116,50,95,99,111,110,102,105,103,117,114,97,116,105,111,110,92,34,44,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,99,111,110,102,41,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,108,111,97,100,67,111,110,102,105,103,117,114,97,116,105,111,110,40,123,92,110,32,32,32,32,32,32,115,116,97,116,101,92,110,32,32,32,32,125,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,99,111,110,102,83,116,114,105,110,103,32,61,32,108,111,99,97,108,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,92,34,115,105,115,116,50,95,99,111,110,102,105,103,117,114,97,116,105,111,110,92,34,41,59,92,110,32,32,32,32,32,32,105,102,32,40,99,111,110,102,83,116,114,105,110,103,41,32,123,92,110,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,111,110,102,32,61,32,74,83,79,78,46,112,97,114,115,101,40,99,111,110,102,83,116,114,105,110,103,41,59,92,110,32,32,32,32,32,32,32,32,105,102,32,40,33,40,92,34,118,101,114,115,105,111,110,92,34,32,105,110,32,99,111,110,102,41,32,124,124,32,99,111,110,102,91,92,34,118,101,114,115,105,111,110,92,34,93,32,33,61,32,67,79,78,70,95,86,69,82,83,73,79,78,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,83,116,111,114,97,103,101,46,114,101,109,111,118,101,73,116,101,109,40,92,34,115,105,115,116,50,95,99,111,110,102,105,103,117,114,97,116,105,111,110,92,34,41,59,92,110,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,92,110,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,115,116,97,116,101,41,46,102,111,114,69,97,99,104,40,107,101,121,32,61,62,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,102,32,40,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,92,34,111,112,116,92,34,41,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,101,91,107,101,121,93,32,61,32,99,111,110,102,91,107,101,121,93,59,92,110,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,125,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,32,40,123,92,110,32,32,32,32,32,32,99,111,109,109,105,116,92,110,32,32,32,32,125,44,32,118,97,108,41,32,61,62,32,99,111,109,109,105,116,40,92,34,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,92,34,44,32,118,97,108,41,44,92,110,32,32,32,32,103,101,116,75,101,121,83,101,113,117,101,110,99,101,40,123,92,110,32,32,32,32,32,32,99,111,109,109,105,116,44,92,110,32,32,32,32,32,32,115,116,97,116,101,92,110,32,32,32,32,125,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,118,97,108,32,61,32,115,116,97,116,101,46,107,101,121,83,101,113,117,101,110,99,101,59,92,110,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,95,115,101,116,75,101,121,83,101,113,117,101,110,99,101,92,34,44,32,118,97,108,32,43,32,49,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,105,110,99,114,101,109,101,110,116,81,117,101,114,121,83,101,113,117,101,110,99,101,40,123,92,110,32,32,32,32,32,32,99,111,109,109,105,116,44,92,110,32,32,32,32,32,32,115,116,97,116,101,92,110,32,32,32,32,125,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,118,97,108,32,61,32,115,116,97,116,101,46,113,117,101,114,121,83,101,113,117,101,110,99,101,59,92,110,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,95,115,101,116,81,117,101,114,121,83,101,113,117,101,110,99,101,92,34,44,32,118,97,108,32,43,32,49,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,118,97,108,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,114,101,109,111,117,110,116,76,105,103,104,116,98,111,120,40,123,92,110,32,32,32,32,32,32,99,111,109,109,105,116,44,92,110,32,32,32,32,32,32,115,116,97,116,101,92,110,32,32,32,32,125,41,32,123,92,110,32,32,32,32,32,32,47,47,32,67,104,97,110,103,101,32,107,101,121,32,116,111,32,97,110,32,97,114,98,105,116,114,97,114,121,32,110,117,109,98,101,114,32,116,111,32,102,111,114,99,101,32,116,104,101,32,108,105,103,104,116,98,111,120,32,116,111,32,114,101,109,111,117,110,116,92,110,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,85,105,76,105,103,104,116,98,111,120,75,101,121,92,34,44,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,75,101,121,32,43,32,49,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,104,111,119,76,105,103,104,116,98,111,120,40,123,92,110,32,32,32,32,32,32,99,111,109,109,105,116,44,92,110,32,32,32,32,32,32,115,116,97,116,101,92,110,32,32,32,32,125,41,32,123,92,110,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,95,115,101,116,85,105,83,104,111,119,76,105,103,104,116,98,111,120,92,34,44,32,33,115,116,97,116,101,46,117,105,83,104,111,119,76,105,103,104,116,98,111,120,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,99,108,101,97,114,82,101,115,117,108,116,115,40,123,92,110,32,32,32,32,32,32,99,111,109,109,105,116,92,110,32,32,32,32,125,41,32,123,92,110,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,76,97,115,116,81,117,101,114,121,82,101,115,117,108,116,92,34,44,32,110,117,108,108,41,59,92,110,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,95,115,101,116,75,101,121,83,101,113,117,101,110,99,101,92,34,44,32,48,41,59,92,110,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,95,115,101,116,85,105,83,104,111,119,76,105,103,104,116,98,111,120,92,34,44,32,102,97,108,115,101,41,59,92,110,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,85,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,92,34,44,32,91,93,41,59,92,110,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,85,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,92,34,44,32,91,93,41,59,92,110,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,85,105,76,105,103,104,116,98,111,120,84,121,112,101,115,92,34,44,32,91,93,41,59,92,110,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,85,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,92,34,44,32,91,93,41,59,92,110,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,85,105,76,105,103,104,116,98,111,120,75,101,121,92,34,44,32,48,41,59,92,110,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,85,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,92,34,44,32,110,117,108,108,41,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,97,115,121,110,99,32,108,111,97,100,65,117,116,104,48,84,111,107,101,110,40,123,92,110,32,32,32,32,32,32,99,111,109,109,105,116,92,110,32,32,32,32,125,41,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,97,117,116,104,83,101,114,118,105,99,101,32,61,32,40,48,44,95,112,108,117,103,105,110,115,95,97,117,116,104,48,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,46,103,101,116,73,110,115,116,97,110,99,101,41,40,41,59,92,110,32,32,32,32,32,32,99,111,110,115,116,32,97,99,99,101,115,115,84,111,107,101,110,32,61,32,97,119,97,105,116,32,97,117,116,104,83,101,114,118,105,99,101,46,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,40,41,59,92,110,32,32,32,32,32,32,99,111,109,109,105,116,40,92,34,115,101,116,65,117,116,104,48,84,111,107,101,110,92,34,44,32,97,99,99,101,115,115,84,111,107,101,110,41,59,92,110,32,32,32,32,32,32,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,32,61,32,96,115,105,115,116,50,45,97,117,116,104,48,61,36,123,97,99,99,101,115,115,84,111,107,101,110,125,59,96,59,92,110,32,32,32,32,125,92,110,32,32,125,44,92,110,32,32,109,111,100,117,108,101,115,58,32,123,125,44,92,110,32,32,103,101,116,116,101,114,115,58,32,123,92,110,32,32,32,32,115,101,101,100,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,115,101,101,100,44,92,110,32,32,32,32,103,101,116,80,97,116,104,84,101,120,116,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,112,97,116,104,84,101,120,116,44,92,110,32,32,32,32,105,110,100,105,99,101,115,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,105,110,100,105,99,101,115,44,92,110,32,32,32,32,115,105,115,116,50,73,110,102,111,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,44,92,110,32,32,32,32,105,110,100,101,120,77,97,112,58,32,115,116,97,116,101,32,61,62,32,123,92,110,32,32,32,32,32,32,99,111,110,115,116,32,109,97,112,32,61,32,123,125,59,92,110,32,32,32,32,32,32,115,116,97,116,101,46,105,110,100,105,99,101,115,46,102,111,114,69,97,99,104,40,105,100,120,32,61,62,32,109,97,112,91,105,100,120,46,105,100,93,32,61,32,105,100,120,41,59,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,112,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,44,92,110,32,32,32,32,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,44,92,110,32,32,32,32,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,44,92,110,32,32,32,32,115,101,108,101,99,116,101,100,84,97,103,115,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,115,101,108,101,99,116,101,100,84,97,103,115,44,92,110,32,32,32,32,100,97,116,101,77,105,110,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,100,97,116,101,77,105,110,44,92,110,32,32,32,32,100,97,116,101,77,97,120,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,100,97,116,101,77,97,120,44,92,110,32,32,32,32,115,105,122,101,77,105,110,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,115,105,122,101,77,105,110,44,92,110,32,32,32,32,115,105,122,101,77,97,120,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,115,105,122,101,77,97,120,44,92,110,32,32,32,32,115,101,97,114,99,104,84,101,120,116,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,115,101,97,114,99,104,84,101,120,116,44,92,110,32,32,32,32,112,97,116,104,84,101,120,116,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,112,97,116,104,84,101,120,116,44,92,110,32,32,32,32,102,117,122,122,121,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,102,117,122,122,121,44,92,110,32,32,32,32,115,105,122,101,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,83,105,122,101,44,92,110,32,32,32,32,115,111,114,116,77,111,100,101,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,115,111,114,116,77,111,100,101,44,92,110,32,32,32,32,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,44,92,110,32,32,32,32,108,97,115,116,68,111,99,58,32,102,117,110,99,116,105,111,110,32,40,115,116,97,116,101,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,116,97,116,101,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,32,61,61,32,110,117,108,108,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,97,116,101,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,46,104,105,116,115,46,104,105,116,115,46,115,108,105,99,101,40,45,49,41,91,48,93,59,92,110,32,32,32,32,125,44,92,110,32,32,32,32,117,105,84,97,103,72,111,118,101,114,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,117,105,84,97,103,72,111,118,101,114,44,92,110,32,32,32,32,117,105,83,104,111,119,76,105,103,104,116,98,111,120,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,117,105,83,104,111,119,76,105,103,104,116,98,111,120,44,92,110,32,32,32,32,117,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,44,92,110,32,32,32,32,117,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,44,92,110,32,32,32,32,117,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,44,92,110,32,32,32,32,117,105,76,105,103,104,116,98,111,120,84,121,112,101,115,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,84,121,112,101,115,44,92,110,32,32,32,32,117,105,76,105,103,104,116,98,111,120,75,101,121,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,75,101,121,44,92,110,32,32,32,32,117,105,76,105,103,104,116,98,111,120,83,108,105,100,101,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,83,108,105,100,101,44,92,110,32,32,32,32,111,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,44,92,110,32,32,32,32,111,112,116,76,97,110,103,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,76,97,110,103,44,92,110,32,32,32,32,111,112,116,84,104,101,109,101,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,84,104,101,109,101,44,92,110,32,32,32,32,111,112,116,68,105,115,112,108,97,121,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,68,105,115,112,108,97,121,44,92,110,32,32,32,32,111,112,116,67,111,108,117,109,110,115,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,67,111,108,117,109,110,115,44,92,110,32,32,32,32,111,112,116,72,105,103,104,108,105,103,104,116,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,72,105,103,104,108,105,103,104,116,44,92,110,32,32,32,32,111,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,44,92,110,32,32,32,32,111,112,116,70,117,122,122,121,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,70,117,122,122,121,44,92,110,32,32,32,32,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,44,92,110,32,32,32,32,111,112,116,83,117,103,103,101,115,116,80,97,116,104,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,83,117,103,103,101,115,116,80,97,116,104,44,92,110,32,32,32,32,111,112,116,70,114,97,103,109,101,110,116,83,105,122,101,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,70,114,97,103,109,101,110,116,83,105,122,101,44,92,110,32,32,32,32,111,112,116,81,117,101,114,121,77,111,100,101,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,81,117,101,114,121,77,111,100,101,44,92,110,32,32,32,32,111,112,116,84,114,101,101,109,97,112,84,121,112,101,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,84,121,112,101,44,92,110,32,32,32,32,111,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,44,92,110,32,32,32,32,111,112,116,84,114,101,101,109,97,112,83,105,122,101,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,44,92,110,32,32,32,32,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,44,92,110,32,32,32,32,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,44,92,110,32,32,32,32,111,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,44,92,110,32,32,32,32,111,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,44,92,110,32,32,32,32,111,112,116,82,101,115,117,108,116,83,105,122,101,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,83,105,122,101,44,92,110,32,32,32,32,111,112,116,72,105,100,101,76,101,103,97,99,121,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,72,105,100,101,76,101,103,97,99,121,44,92,110,32,32,32,32,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,44,92,110,32,32,32,32,111,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,44,92,110,32,32,32,32,111,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,44,92,110,32,32,32,32,111,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,44,92,110,32,32,32,32,111,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,58,32,115,116,97,116,101,32,61,62,32,115,116,97,116,101,46,111,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,92,110,32,32,125,92,110,125,41,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,115,116,111,114,101,47,105,110,100,101,120,46,116,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,117,116,105,108,46,116,115,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,117,116,105,108,46,116,115,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,99,111,109,112,114,101,115,115,77,105,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,99,111,109,112,114,101,115,115,77,105,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,99,111,109,112,114,101,115,115,77,105,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,101,99,111,109,112,114,101,115,115,77,105,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,100,101,115,101,114,105,97,108,105,122,101,77,105,109,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,100,101,115,101,114,105,97,108,105,122,101,77,105,109,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,101,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,101,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,83,101,108,101,99,116,101,100,84,114,101,101,78,111,100,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,83,101,108,101,99,116,101,100,84,114,101,101,78,111,100,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,103,101,116,84,114,101,101,78,111,100,101,65,116,116,114,105,98,117,116,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,103,101,116,84,114,101,101,78,111,100,101,65,116,116,114,105,98,117,116,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,117,109,97,110,68,97,116,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,117,109,97,110,68,97,116,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,117,109,97,110,70,105,108,101,83,105,122,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,117,109,97,110,70,105,108,101,83,105,122,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,104,117,109,97,110,84,105,109,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,104,117,109,97,110,84,105,109,101,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,108,117,109,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,108,117,109,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,97,110,100,111,109,83,101,101,100,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,97,110,100,111,109,83,101,101,100,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,101,114,105,97,108,105,122,101,77,105,109,101,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,101,114,105,97,108,105,122,101,77,105,109,101,115,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,114,99,69,120,116,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,114,99,69,120,116,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,114,85,110,101,115,99,97,112,101,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,114,85,110,101,115,99,97,112,101,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,102,117,110,99,116,105,111,110,32,101,120,116,40,104,105,116,41,32,123,92,110,32,32,114,101,116,117,114,110,32,115,114,99,69,120,116,40,104,105,116,46,95,115,111,117,114,99,101,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,115,114,99,69,120,116,40,115,114,99,41,32,123,92,110,32,32,114,101,116,117,114,110,32,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,115,114,99,44,32,92,34,101,120,116,101,110,115,105,111,110,92,34,41,32,38,38,32,115,114,99,91,92,34,101,120,116,101,110,115,105,111,110,92,34,93,32,33,61,61,32,92,34,92,34,32,63,32,92,34,46,92,34,32,43,32,115,114,99,91,92,34,101,120,116,101,110,115,105,111,110,92,34,93,32,58,32,92,34,92,34,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,115,116,114,85,110,101,115,99,97,112,101,40,115,116,114,41,32,123,92,110,32,32,108,101,116,32,114,101,115,117,108,116,32,61,32,92,34,92,34,59,92,110,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,115,116,114,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,99,111,110,115,116,32,99,32,61,32,115,116,114,91,105,93,59,92,110,32,32,32,32,99,111,110,115,116,32,110,101,120,116,32,61,32,115,116,114,91,105,32,43,32,49,93,59,92,110,32,32,32,32,105,102,32,40,99,32,61,61,61,32,92,34,93,92,34,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,110,101,120,116,32,61,61,61,32,92,34,93,92,34,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,99,59,92,110,32,32,32,32,32,32,32,32,105,32,43,61,32,49,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,112,97,114,115,101,73,110,116,40,115,116,114,46,115,108,105,99,101,40,105,44,32,105,32,43,32,50,41,44,32,49,54,41,41,59,92,110,32,32,32,32,32,32,32,32,105,32,43,61,32,50,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,99,59,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,92,110,125,92,110,99,111,110,115,116,32,116,104,114,101,115,104,32,61,32,49,48,48,48,59,92,110,99,111,110,115,116,32,117,110,105,116,115,32,61,32,91,92,34,107,92,34,44,32,92,34,77,92,34,44,32,92,34,71,92,34,44,32,92,34,84,92,34,44,32,92,34,80,92,34,44,32,92,34,69,92,34,44,32,92,34,90,92,34,44,32,92,34,89,92,34,93,59,92,110,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,92,110,32,32,105,102,32,40,98,121,116,101,115,32,61,61,61,32,48,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,92,34,48,32,66,92,34,59,92,110,32,32,125,92,110,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,92,110,32,32,32,32,114,101,116,117,114,110,32,98,121,116,101,115,32,43,32,39,32,66,39,59,92,110,32,32,125,92,110,32,32,108,101,116,32,117,32,61,32,45,49,59,92,110,32,32,100,111,32,123,92,110,32,32,32,32,98,121,116,101,115,32,47,61,32,116,104,114,101,115,104,59,92,110,32,32,32,32,43,43,117,59,92,110,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,92,110,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,92,110,125,92,110,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,92,110,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,92,110,32,32,99,111,110,115,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,92,110,32,32,99,111,110,115,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,104,111,117,114,115,32,42,32,51,54,48,48,41,32,47,32,54,48,41,59,92,110,32,32,99,111,110,115,116,32,115,101,99,111,110,100,115,32,61,32,115,101,99,95,110,117,109,32,45,32,104,111,117,114,115,32,42,32,51,54,48,48,32,45,32,109,105,110,117,116,101,115,32,42,32,54,48,59,92,110,32,32,114,101,116,117,114,110,32,96,36,123,104,111,117,114,115,32,60,32,49,48,32,63,32,92,34,48,92,34,32,58,32,92,34,92,34,125,36,123,104,111,117,114,115,125,58,36,123,109,105,110,117,116,101,115,32,60,32,49,48,32,63,32,92,34,48,92,34,32,58,32,92,34,92,34,125,36,123,109,105,110,117,116,101,115,125,58,36,123,115,101,99,111,110,100,115,32,60,32,49,48,32,63,32,92,34,48,92,34,32,58,32,92,34,92,34,125,36,123,115,101,99,111,110,100,115,125,96,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,104,117,109,97,110,68,97,116,101,40,110,117,109,77,105,108,105,115,41,32,123,92,110,32,32,99,111,110,115,116,32,100,97,116,101,32,61,32,110,101,119,32,68,97,116,101,40,110,117,109,77,105,108,105,115,32,42,32,49,48,48,48,41,59,92,110,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,32,43,32,92,34,45,92,34,32,43,32,40,92,34,48,92,34,32,43,32,40,100,97,116,101,46,103,101,116,85,84,67,77,111,110,116,104,40,41,32,43,32,49,41,41,46,115,108,105,99,101,40,45,50,41,32,43,32,92,34,45,92,34,32,43,32,40,92,34,48,92,34,32,43,32,100,97,116,101,46,103,101,116,85,84,67,68,97,116,101,40,41,41,46,115,108,105,99,101,40,45,50,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,108,117,109,40,99,41,32,123,92,110,32,32,99,32,61,32,99,46,115,117,98,115,116,114,105,110,103,40,49,41,59,92,110,32,32,99,111,110,115,116,32,114,103,98,32,61,32,112,97,114,115,101,73,110,116,40,99,44,32,49,54,41,59,92,110,32,32,99,111,110,115,116,32,114,32,61,32,114,103,98,32,62,62,32,49,54,32,38,32,48,120,102,102,59,92,110,32,32,99,111,110,115,116,32,103,32,61,32,114,103,98,32,62,62,32,56,32,38,32,48,120,102,102,59,92,110,32,32,99,111,110,115,116,32,98,32,61,32,114,103,98,32,62,62,32,48,32,38,32,48,120,102,102,59,92,110,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,92,110,125,92,110,102,117,110,99,116,105,111,110,32,103,101,116,83,101,108,101,99,116,101,100,84,114,101,101,78,111,100,101,115,40,116,114,101,101,41,32,123,92,110,32,32,99,111,110,115,116,32,115,101,108,101,99,116,101,100,78,111,100,101,115,32,61,32,110,101,119,32,83,101,116,40,41,59,92,110,32,32,99,111,110,115,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,92,110,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,92,110,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,92,34,97,110,121,92,34,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,91,92,34,97,110,121,92,34,93,59,92,110,32,32,32,32,125,92,110,32,32,32,32,47,47,79,110,108,121,32,103,101,116,32,99,104,105,108,100,114,101,110,92,110,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,92,34,40,92,34,41,32,33,61,61,32,45,49,41,32,123,92,110,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,101,100,91,105,93,46,118,97,108,117,101,115,41,32,123,92,110,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,78,111,100,101,115,46,97,100,100,40,115,101,108,101,99,116,101,100,91,105,93,46,118,97,108,117,101,115,46,115,108,105,99,101,40,45,49,41,91,48,93,41,59,92,110,32,32,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,78,111,100,101,115,46,97,100,100,40,115,101,108,101,99,116,101,100,91,105,93,46,105,100,41,59,92,110,32,32,32,32,32,32,125,92,110,32,32,32,32,125,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,115,101,108,101,99,116,101,100,78,111,100,101,115,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,103,101,116,84,114,101,101,78,111,100,101,65,116,116,114,105,98,117,116,101,115,40,116,114,101,101,41,32,123,92,110,32,32,99,111,110,115,116,32,110,111,100,101,115,32,61,32,116,114,101,101,46,115,101,108,101,99,116,97,98,108,101,40,41,59,92,110,32,32,99,111,110,115,116,32,97,116,116,114,105,98,117,116,101,115,32,61,32,123,125,59,92,110,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,110,111,100,101,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,92,110,32,32,32,32,108,101,116,32,105,100,32,61,32,110,117,108,108,59,92,110,32,32,32,32,105,102,32,40,110,111,100,101,115,91,105,93,46,116,101,120,116,46,105,110,100,101,120,79,102,40,92,34,40,92,34,41,32,33,61,61,32,45,49,32,38,38,32,110,111,100,101,115,91,105,93,46,118,97,108,117,101,115,41,32,123,92,110,32,32,32,32,32,32,105,100,32,61,32,110,111,100,101,115,91,105,93,46,118,97,108,117,101,115,46,115,108,105,99,101,40,45,49,41,91,48,93,59,92,110,32,32,32,32,125,32,101,108,115,101,32,123,92,110,32,32,32,32,32,32,105,100,32,61,32,110,111,100,101,115,91,105,93,46,105,100,59,92,110,32,32,32,32,125,92,110,32,32,32,32,97,116,116,114,105,98,117,116,101,115,91,105,100,93,32,61,32,123,92,110,32,32,32,32,32,32,99,104,101,99,107,101,100,58,32,110,111,100,101,115,91,105,93,46,105,116,114,101,101,46,115,116,97,116,101,46,99,104,101,99,107,101,100,44,92,110,32,32,32,32,32,32,99,111,108,108,97,112,115,101,100,58,32,110,111,100,101,115,91,105,93,46,105,116,114,101,101,46,115,116,97,116,101,46,99,111,108,108,97,112,115,101,100,92,110,32,32,32,32,125,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,97,116,116,114,105,98,117,116,101,115,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,115,101,114,105,97,108,105,122,101,77,105,109,101,115,40,109,105,109,101,115,41,32,123,92,110,32,32,105,102,32,40,109,105,109,101,115,46,108,101,110,103,116,104,32,61,61,32,48,41,32,123,92,110,32,32,32,32,114,101,116,117,114,110,32,117,110,100,101,102,105,110,101,100,59,92,110,32,32,125,92,110,32,32,114,101,116,117,114,110,32,109,105,109,101,115,46,109,97,112,40,109,105,109,101,32,61,62,32,99,111,109,112,114,101,115,115,77,105,109,101,40,109,105,109,101,41,41,46,106,111,105,110,40,92,34,92,34,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,100,101,115,101,114,105,97,108,105,122,101,77,105,109,101,115,40,109,105,109,101,83,116,114,105,110,103,41,32,123,92,110,32,32,114,101,116,117,114,110,32,109,105,109,101,83,116,114,105,110,103,46,114,101,112,108,97,99,101,65,108,108,40,47,40,91,73,86,65,84,85,70,93,41,47,103,44,32,92,34,36,36,36,38,92,34,41,46,115,112,108,105,116,40,92,34,36,92,34,41,46,109,97,112,40,109,105,109,101,32,61,62,32,100,101,99,111,109,112,114,101,115,115,77,105,109,101,40,109,105,109,101,41,41,46,115,108,105,99,101,40,49,41,59,32,47,47,32,73,103,110,111,114,101,32,116,104,101,32,102,105,114,115,116,32,40,101,109,112,116,121,41,32,116,111,107,101,110,92,110,125,92,110,92,110,102,117,110,99,116,105,111,110,32,99,111,109,112,114,101,115,115,77,105,109,101,40,109,105,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,109,105,109,101,46,114,101,112,108,97,99,101,40,92,34,105,109,97,103,101,47,92,34,44,32,92,34,73,92,34,41,46,114,101,112,108,97,99,101,40,92,34,118,105,100,101,111,47,92,34,44,32,92,34,86,92,34,41,46,114,101,112,108,97,99,101,40,92,34,97,112,112,108,105,99,97,116,105,111,110,47,92,34,44,32,92,34,65,92,34,41,46,114,101,112,108,97,99,101,40,92,34,116,101,120,116,47,92,34,44,32,92,34,84,92,34,41,46,114,101,112,108,97,99,101,40,92,34,97,117,100,105,111,47,92,34,44,32,92,34,85,92,34,41,46,114,101,112,108,97,99,101,40,92,34,102,111,110,116,47,92,34,44,32,92,34,70,92,34,41,46,114,101,112,108,97,99,101,40,92,34,43,92,34,44,32,92,34,44,92,34,41,46,114,101,112,108,97,99,101,40,92,34,120,45,92,34,44,32,92,34,88,92,34,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,100,101,99,111,109,112,114,101,115,115,77,105,109,101,40,109,105,109,101,41,32,123,92,110,32,32,114,101,116,117,114,110,32,109,105,109,101,46,114,101,112,108,97,99,101,40,92,34,73,92,34,44,32,92,34,105,109,97,103,101,47,92,34,41,46,114,101,112,108,97,99,101,40,92,34,86,92,34,44,32,92,34,118,105,100,101,111,47,92,34,41,46,114,101,112,108,97,99,101,40,92,34,65,92,34,44,32,92,34,97,112,112,108,105,99,97,116,105,111,110,47,92,34,41,46,114,101,112,108,97,99,101,40,92,34,84,92,34,44,32,92,34,116,101,120,116,47,92,34,41,46,114,101,112,108,97,99,101,40,92,34,85,92,34,44,32,92,34,97,117,100,105,111,47,92,34,41,46,114,101,112,108,97,99,101,40,92,34,70,92,34,44,32,92,34,102,111,110,116,47,92,34,41,46,114,101,112,108,97,99,101,40,92,34,44,92,34,44,32,92,34,43,92,34,41,46,114,101,112,108,97,99,101,40,92,34,88,92,34,44,32,92,34,120,45,92,34,41,59,92,110,125,92,110,102,117,110,99,116,105,111,110,32,114,97,110,100,111,109,83,101,101,100,40,41,32,123,92,110,32,32,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,77,97,116,104,46,114,97,110,100,111,109,40,41,32,42,32,49,48,48,48,48,48,41,59,92,110,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,117,116,105,108,46,116,115,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,65,112,112,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,65,112,112,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,98,97,53,98,100,57,48,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,98,97,53,98,100,57,48,38,32,42,47,32,92,34,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,98,97,53,98,100,57,48,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,98,97,53,98,100,57,48,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,98,97,53,98,100,57,48,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,98,97,53,98,100,57,48,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,98,97,53,98,100,57,48,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,65,112,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,98,97,53,98,100,57,48,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,65,112,112,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,65,112,112,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,101,49,98,48,55,56,56,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,101,49,98,48,55,56,56,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,101,49,98,48,55,56,56,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,101,49,98,48,55,56,56,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,101,49,98,48,55,56,56,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,50,101,49,98,48,55,56,56,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,100,101,49,102,99,55,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,100,101,49,102,99,55,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,100,101,49,102,99,55,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,100,101,49,102,99,55,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,100,101,49,102,99,55,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,51,77,105,109,101,66,97,114,67,111,117,110,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,53,102,99,101,53,97,102,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,53,102,99,101,53,97,102,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,53,102,99,101,53,97,102,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,51,77,105,109,101,66,97,114,67,111,117,110,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,68,51,77,105,109,101,66,97,114,67,111,117,110,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,68,51,77,105,109,101,66,97,114,67,111,117,110,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,53,102,99,101,53,97,102,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,68,51,77,105,109,101,66,97,114,67,111,117,110,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,53,102,99,101,53,97,102,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,51,77,105,109,101,66,97,114,83,105,122,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,102,55,98,55,53,48,100,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,55,98,55,53,48,100,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,55,98,55,53,48,100,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,51,77,105,109,101,66,97,114,83,105,122,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,68,51,77,105,109,101,66,97,114,83,105,122,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,68,51,77,105,109,101,66,97,114,83,105,122,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,102,55,98,55,53,48,100,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,68,51,77,105,109,101,66,97,114,83,105,122,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,102,55,98,55,53,48,100,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,49,56,53,56,101,53,52,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,49,56,53,56,101,53,52,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,49,56,53,56,101,53,52,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,49,56,53,56,101,53,52,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,49,56,53,56,101,53,52,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,51,84,114,101,101,109,97,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,55,97,100,98,97,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,55,97,100,98,97,50,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,55,97,100,98,97,50,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,51,84,114,101,101,109,97,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,68,51,84,114,101,101,109,97,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,68,51,84,114,101,101,109,97,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,55,97,100,98,97,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,68,51,84,114,101,101,109,97,112,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,55,97,100,98,97,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,50,101,100,99,52,100,102,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,101,100,99,52,100,102,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,101,100,99,52,100,102,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,50,101,100,99,52,100,102,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,101,100,99,52,100,102,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,101,100,99,52,100,102,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,50,101,100,99,52,100,102,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,68,97,116,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,50,101,100,99,52,100,102,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,51,57,98,52,100,50,49,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,51,57,98,52,100,50,49,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,51,57,98,52,100,50,49,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,51,57,98,52,100,50,49,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,51,57,98,52,100,50,49,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,100,51,99,49,48,98,57,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,100,51,99,49,48,98,57,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,100,51,99,49,48,98,57,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,100,51,99,49,48,98,57,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,100,51,99,49,48,98,57,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,49,100,51,99,49,48,98,57,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,52,100,101,100,54,54,56,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,52,100,101,100,54,54,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,52,100,101,100,54,54,56,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,52,100,101,100,54,54,56,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,48,52,100,101,100,54,54,56,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,52,100,101,100,54,54,56,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,68,111,99,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,52,100,101,100,54,54,56,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,48,52,100,101,100,54,54,56,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,67,97,114,100,87,97,108,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,48,56,56,54,102,53,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,48,56,56,54,102,53,50,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,48,56,56,54,102,53,50,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,67,97,114,100,87,97,108,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,68,111,99,67,97,114,100,87,97,108,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,68,111,99,67,97,114,100,87,97,108,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,48,56,56,54,102,53,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,68,111,99,67,97,114,100,87,97,108,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,48,56,56,54,102,53,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,99,100,100,52,54,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,99,100,100,52,54,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,99,100,100,52,54,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,68,111,99,70,105,108,101,84,105,116,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,99,100,100,52,54,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,52,99,100,100,52,54,49,52,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,73,110,102,111,77,111,100,97,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,100,48,50,55,52,102,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,100,48,50,55,52,102,55,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,100,48,50,55,52,102,55,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,73,110,102,111,77,111,100,97,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,68,111,99,73,110,102,111,77,111,100,97,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,68,111,99,73,110,102,111,77,111,100,97,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,100,48,50,55,52,102,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,68,111,99,73,110,102,111,77,111,100,97,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,100,48,50,55,52,102,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,52,100,48,50,55,52,102,55,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,53,53,57,49,57,52,102,54,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,53,53,57,49,57,52,102,54,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,53,53,57,49,57,52,102,54,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,53,53,57,49,57,52,102,54,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,53,53,57,49,57,52,102,54,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,53,53,57,49,57,52,102,54,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,53,53,57,49,57,52,102,54,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,68,111,99,76,105,115,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,53,53,57,49,57,52,102,54,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,102,52,49,53,56,97,101,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,54,102,52,49,53,56,97,101,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,102,52,49,53,56,97,101,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,68,111,99,76,105,115,116,73,116,101,109,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,102,52,49,53,56,97,101,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,54,102,52,49,53,56,97,101,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,97,98,97,48,50,54,99,54,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,97,98,97,48,50,54,99,54,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,97,98,97,48,50,54,99,54,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,70,117,108,108,84,104,117,109,98,110,97,105,108,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,97,98,97,48,50,54,99,54,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,97,98,97,48,50,54,99,54,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,72,101,108,112,68,105,97,108,111,103,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,56,51,97,56,49,57,57,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,56,51,97,56,49,57,57,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,56,51,97,56,49,57,57,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,72,101,108,112,68,105,97,108,111,103,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,72,101,108,112,68,105,97,108,111,103,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,72,101,108,112,68,105,97,108,111,103,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,56,51,97,56,49,57,57,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,72,101,108,112,68,105,97,108,111,103,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,56,51,97,56,49,57,57,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,49,56,51,97,56,49,57,57,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,73,110,100,101,120,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,57,53,98,54,48,99,50,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,57,53,98,54,48,99,50,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,57,53,98,54,48,99,50,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,73,110,100,101,120,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,73,110,100,101,120,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,73,110,100,101,120,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,57,53,98,54,48,99,50,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,73,110,100,101,120,68,101,98,117,103,73,110,102,111,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,57,53,98,54,48,99,50,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,51,57,53,98,54,48,99,50,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,55,99,50,49,52,48,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,55,99,50,49,52,48,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,55,99,50,49,52,48,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,73,110,100,101,120,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,55,99,50,49,52,48,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,48,55,99,50,49,52,48,48,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,73,110,102,111,84,97,98,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,54,51,48,98,98,99,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,54,51,48,98,98,99,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,54,51,48,98,98,99,48,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,73,110,102,111,84,97,98,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,73,110,102,111,84,97,98,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,73,110,102,111,84,97,98,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,54,51,48,98,98,99,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,73,110,102,111,84,97,98,108,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,54,51,48,98,98,99,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,51,54,51,48,98,98,99,48,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,76,97,122,121,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,101,53,53,99,48,49,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,101,53,53,99,48,49,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,101,53,53,99,48,49,99,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,76,97,122,121,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,76,97,122,121,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,76,97,122,121,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,101,53,53,99,48,49,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,76,97,122,121,67,111,110,116,101,110,116,68,105,118,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,101,53,53,99,48,49,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,49,101,53,53,99,48,49,99,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,52,52,48,99,54,97,53,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,52,52,48,99,54,97,53,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,52,52,48,99,54,97,53,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,52,52,48,99,54,97,53,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,52,52,48,99,54,97,53,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,52,52,48,99,54,97,53,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,52,52,48,99,54,97,53,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,76,105,103,104,116,98,111,120,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,52,52,48,99,54,97,53,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,100,55,97,57,55,54,57,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,100,55,97,57,55,54,57,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,100,55,97,57,55,54,57,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,100,55,97,57,55,54,57,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,100,55,97,57,55,54,57,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,57,53,100,48,57,100,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,57,53,100,48,57,100,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,57,53,100,48,57,100,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,77,105,109,101,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,57,53,100,48,57,100,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,52,57,53,100,48,57,100,99,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,50,57,53,100,50,50,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,50,57,53,100,50,50,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,50,57,53,100,50,50,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,78,97,118,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,50,57,53,100,50,50,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,52,50,57,53,100,50,50,48,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,51,98,101,54,56,49,51,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,51,51,98,101,54,56,49,51,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,51,51,98,101,54,56,49,51,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,51,51,98,101,54,56,49,51,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,51,51,98,101,54,56,49,51,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,51,98,101,54,56,49,51,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,80,97,116,104,84,114,101,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,51,51,98,101,54,56,49,51,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,51,51,98,101,54,56,49,51,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,97,57,52,101,57,55,54,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,80,114,101,108,111,97,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,97,57,52,101,57,55,54,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,97,57,52,101,57,55,54,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,118,97,114,32,115,99,114,105,112,116,32,61,32,123,125,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,115,99,114,105,112,116,44,92,110,32,32,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,97,57,52,101,57,55,54,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,80,114,101,108,111,97,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,97,57,52,101,57,55,54,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,57,52,50,48,57,98,52,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,52,50,48,57,98,52,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,52,50,48,57,98,52,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,57,52,50,48,57,98,52,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,52,50,48,57,98,52,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,52,50,48,57,98,52,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,57,52,50,48,57,98,52,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,82,101,115,117,108,116,115,67,97,114,100,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,57,52,50,48,57,98,52,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,101,97,114,99,104,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,101,99,97,51,55,99,98,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,101,99,97,51,55,99,98,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,101,99,97,51,55,99,98,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,101,97,114,99,104,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,83,101,97,114,99,104,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,83,101,97,114,99,104,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,101,99,97,51,55,99,98,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,83,101,97,114,99,104,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,101,99,97,51,55,99,98,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,49,50,101,97,57,55,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,49,50,101,97,57,55,50,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,49,50,101,97,57,55,50,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,50,49,50,101,97,57,55,50,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,49,50,101,97,57,55,50,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,49,50,101,97,57,55,50,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,49,50,101,97,57,55,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,83,105,122,101,83,108,105,100,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,49,50,101,97,57,55,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,56,98,100,54,102,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,56,98,100,54,102,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,56,98,100,54,102,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,83,109,97,108,108,66,97,100,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,56,98,100,54,102,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,55,56,98,100,54,102,48,99,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,101,49,49,49,53,53,50,99,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,101,49,49,49,53,53,50,99,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,101,49,49,49,53,53,50,99,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,101,49,49,49,53,53,50,99,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,101,49,49,49,53,53,50,99,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,101,49,49,49,53,53,50,99,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,101,49,49,49,53,53,50,99,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,83,111,114,116,83,101,108,101,99,116,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,101,49,49,49,53,53,50,99,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,102,48,51,100,50,98,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,102,48,51,100,50,98,55,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,49,102,48,51,100,50,98,55,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,49,102,48,51,100,50,98,55,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,49,102,48,51,100,50,98,55,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,102,48,51,100,50,98,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,84,97,103,67,111,110,116,97,105,110,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,102,48,51,100,50,98,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,49,102,48,51,100,50,98,55,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,55,101,100,50,54,55,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,55,101,100,50,54,55,48,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,49,95,105,100,95,52,55,101,100,50,54,55,48,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,52,55,101,100,50,54,55,48,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,52,55,101,100,50,54,55,48,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,52,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,55,101,100,50,54,55,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,84,97,103,80,105,99,107,101,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,55,101,100,50,54,55,48,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,52,55,101,100,50,54,55,48,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,56,52,53,50,49,52,97,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,50,56,52,53,50,49,52,97,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,56,52,53,50,49,52,97,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,50,56,52,53,50,49,52,97,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,50,56,52,53,50,49,52,97,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,54,50,53,51,52,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,55,54,50,53,51,52,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,54,50,53,51,52,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,67,108,105,112,98,111,97,114,100,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,55,54,50,53,51,52,48,99,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,55,54,50,53,51,52,48,99,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,53,57,101,51,51,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,102,53,57,101,51,51,55,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,53,57,101,51,51,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,68,101,98,117,103,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,102,53,57,101,51,51,55,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,52,102,53,57,101,51,51,55,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,99,51,49,100,52,57,97,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,48,99,51,49,100,52,57,97,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,99,51,49,100,52,57,97,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,70,105,108,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,48,99,51,49,100,52,57,97,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,48,99,51,49,100,52,57,97,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,101,98,98,49,52,97,54,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,54,101,98,98,49,52,97,54,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,101,98,98,49,52,97,54,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,71,101,97,114,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,54,101,98,98,49,52,97,54,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,54,101,98,98,49,52,97,54,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,97,100,102,101,53,48,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,97,100,102,101,53,48,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,97,100,102,101,53,48,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,76,97,110,103,117,97,103,101,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,97,100,102,101,53,48,49,52,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,97,100,102,101,53,48,49,52,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,98,54,101,100,54,54,56,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,98,54,101,100,54,54,56,50,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,98,54,101,100,54,54,56,50,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,105,115,116,50,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,59,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,83,105,115,116,50,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,83,105,115,116,50,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,98,54,101,100,54,54,56,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,83,105,115,116,50,73,99,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,98,54,101,100,54,54,56,50,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,102,54,48,57,53,98,97,56,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,54,48,57,53,98,97,56,38,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,54,48,57,53,98,97,56,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,102,54,48,57,53,98,97,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,102,54,48,57,53,98,97,56,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,102,54,48,57,53,98,97,56,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,102,54,48,57,53,98,97,56,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,67,111,110,102,105,103,117,114,97,116,105,111,110,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,102,54,48,57,53,98,97,56,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,98,57,56,51,50,101,53,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,98,57,56,51,50,101,53,95,115,99,111,112,101,100,95,116,114,117,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,98,57,56,51,50,101,53,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,70,105,108,101,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,98,57,56,51,50,101,53,95,115,99,111,112,101,100,95,116,114,117,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,92,34,49,98,57,56,51,50,101,53,92,34,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,51,56,55,53,50,100,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,51,56,55,53,50,100,101,38,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,51,56,55,53,50,100,101,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,116,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,49,51,56,55,53,50,100,101,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,51,56,55,53,50,100,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,51,56,55,53,50,100,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,116,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,51,56,55,53,50,100,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,83,101,97,114,99,104,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,49,51,56,55,53,50,100,101,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,56,102,57,51,55,102,56,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,56,102,57,51,55,102,56,38,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,56,102,57,51,55,102,56,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,99,114,105,112,116,38,108,97,110,103,61,106,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,116,121,108,101,95,105,110,100,101,120,95,48,95,105,100,95,52,56,102,57,51,55,102,56,95,108,97,110,103,95,99,115,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,50,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,46,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,56,102,57,51,55,102,56,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,56,102,57,51,55,102,56,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,105,109,112,111,114,116,32,42,47,32,118,97,114,32,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,114,117,110,116,105,109,101,47,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,46,106,115,92,34,41,59,92,110,92,110,92,110,92,110,59,92,110,92,110,92,110,47,42,32,110,111,114,109,97,108,105,122,101,32,99,111,109,112,111,110,101,110,116,32,42,47,92,110,92,110,118,97,114,32,99,111,109,112,111,110,101,110,116,32,61,32,40,48,44,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,99,108,105,95,115,101,114,118,105,99,101,95,110,111,100,101,95,109,111,100,117,108,101,115,95,118,117,101,95,118,117,101,95,108,111,97,100,101,114,95,118,49,53,95,108,105,98,95,114,117,110,116,105,109,101,95,99,111,109,112,111,110,101,110,116,78,111,114,109,97,108,105,122,101,114,95,106,115,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,51,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,41,40,92,110,32,32,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,115,99,114,105,112,116,95,108,97,110,103,95,106,115,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,49,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,44,92,110,32,32,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,56,102,57,51,55,102,56,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,114,101,110,100,101,114,44,92,110,32,32,95,83,116,97,116,115,80,97,103,101,95,118,117,101,95,118,117,101,95,116,121,112,101,95,116,101,109,112,108,97,116,101,95,105,100,95,52,56,102,57,51,55,102,56,95,95,95,87,69,66,80,65,67,75,95,73,77,80,79,82,84,69,68,95,77,79,68,85,76,69,95,48,95,95,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,92,110,32,32,102,97,108,115,101,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,44,92,110,32,32,110,117,108,108,92,110,32,32,92,110,41,92,110,92,110,47,42,32,104,111,116,32,114,101,108,111,97,100,32,42,47,92,110,105,102,32,40,102,97,108,115,101,41,32,123,32,118,97,114,32,97,112,105,59,32,125,92,110,99,111,109,112,111,110,101,110,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,32,61,32,92,34,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,92,34,92,110,47,42,32,104,97,114,109,111,110,121,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,91,92,34,100,101,102,97,117,108,116,92,34,93,32,61,32,40,99,111,109,112,111,110,101,110,116,46,101,120,112,111,114,116,115,41,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,98,97,53,98,100,57,48,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,98,97,53,98,100,57,48,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,33,95,118,109,46,97,117,116,104,76,111,97,100,105,110,103,92,110,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,123,32,99,108,97,115,115,58,32,95,118,109,46,103,101,116,67,108,97,115,115,40,41,44,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,97,112,112,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,91,95,99,40,92,34,78,97,118,66,97,114,92,34,41,44,32,33,95,118,109,46,99,111,110,102,105,103,76,111,97,100,105,110,103,32,63,32,95,99,40,92,34,114,111,117,116,101,114,45,118,105,101,119,92,34,41,32,58,32,95,118,109,46,95,101,40,41,93,44,92,110,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,41,92,110,32,32,32,32,58,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,108,111,97,100,105,110,103,45,112,97,103,101,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,108,111,97,100,105,110,103,45,115,112,105,110,110,101,114,115,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,115,112,105,110,110,101,114,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,116,121,112,101,58,32,92,34,103,114,111,119,92,34,44,32,118,97,114,105,97,110,116,58,32,92,34,112,114,105,109,97,114,121,92,34,32,125,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,115,112,105,110,110,101,114,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,116,121,112,101,58,32,92,34,103,114,111,119,92,34,44,32,118,97,114,105,97,110,116,58,32,92,34,112,114,105,109,97,114,121,92,34,32,125,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,115,112,105,110,110,101,114,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,116,121,112,101,58,32,92,34,103,114,111,119,92,34,44,32,118,97,114,105,97,110,116,58,32,92,34,112,114,105,109,97,114,121,92,34,32,125,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,108,111,97,100,105,110,103,45,116,101,120,116,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,34,32,76,111,97,100,105,110,103,32,226,128,162,32,67,104,97,114,103,101,109,101,110,116,32,226,128,162,32,232,163,133,232,189,189,32,92,34,41,44,92,110,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,93,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,65,112,112,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,101,49,98,48,55,56,56,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,101,49,98,48,55,56,56,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,118,109,46,99,111,110,116,101,110,116,40,41,92,110,32,32,32,32,63,32,95,99,40,92,34,100,105,118,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,99,111,110,116,101,110,116,45,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,123,32,105,110,110,101,114,72,84,77,76,58,32,95,118,109,46,95,115,40,95,118,109,46,99,111,110,116,101,110,116,40,41,41,32,125,44,92,110,32,32,32,32,32,32,125,41,92,110,32,32,32,32,58,32,95,118,109,46,95,101,40,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,100,101,49,102,99,55,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,100,101,49,102,99,55,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,103,114,97,112,104,92,34,32,125,44,32,91,92,110,32,32,32,32,95,99,40,92,34,115,118,103,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,100,97,116,101,45,104,105,115,116,111,103,114,97,109,92,34,32,125,32,125,41,44,92,110,32,32,93,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,53,102,99,101,53,97,102,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,53,102,99,101,53,97,102,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,103,114,97,112,104,92,34,32,125,44,32,91,92,110,32,32,32,32,95,99,40,92,34,115,118,103,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,97,103,103,45,109,105,109,101,45,99,111,117,110,116,92,34,32,125,32,125,41,44,92,110,32,32,93,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,67,111,117,110,116,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,55,98,55,53,48,100,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,55,98,55,53,48,100,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,103,114,97,112,104,92,34,32,125,44,32,91,92,110,32,32,32,32,95,99,40,92,34,115,118,103,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,97,103,103,45,109,105,109,101,45,115,105,122,101,92,34,32,125,32,125,41,44,92,110,32,32,93,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,77,105,109,101,66,97,114,83,105,122,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,49,56,53,56,101,53,52,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,49,56,53,56,101,53,52,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,103,114,97,112,104,92,34,32,125,44,32,91,92,110,32,32,32,32,95,99,40,92,34,115,118,103,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,115,105,122,101,45,104,105,115,116,111,103,114,97,109,92,34,32,125,32,125,41,44,92,110,32,32,93,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,55,97,100,98,97,50,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,55,97,100,98,97,50,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,98,116,110,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,102,108,111,97,116,58,32,92,34,114,105,103,104,116,92,34,44,32,92,34,109,97,114,103,105,110,45,98,111,116,116,111,109,92,34,58,32,92,34,49,48,112,120,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,118,97,114,105,97,110,116,58,32,92,34,112,114,105,109,97,114,121,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,100,111,119,110,108,111,97,100,84,114,101,101,109,97,112,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,100,111,119,110,108,111,97,100,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,115,118,103,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,116,114,101,101,109,97,112,92,34,32,125,32,125,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,51,84,114,101,101,109,97,112,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,101,100,99,52,100,102,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,101,100,99,52,100,102,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,118,109,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,92,110,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,114,111,119,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,111,108,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,97,116,116,114,115,58,32,123,32,115,109,58,32,92,34,54,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,98,45,50,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,118,97,108,117,101,45,97,115,45,100,97,116,101,92,34,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,97,116,101,45,102,111,114,109,97,116,45,111,112,116,105,111,110,115,92,34,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,121,101,97,114,58,32,92,34,110,117,109,101,114,105,99,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,110,116,104,58,32,92,34,50,45,100,105,103,105,116,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,97,121,58,32,92,34,50,45,100,105,103,105,116,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,101,58,32,95,118,109,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,76,97,110,103,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,95,118,109,46,100,97,116,101,77,105,110,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,68,97,116,101,77,105,110,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,111,108,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,97,116,116,114,115,58,32,123,32,115,109,58,32,92,34,54,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,98,45,50,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,118,97,108,117,101,45,97,115,45,100,97,116,101,92,34,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,97,116,101,45,102,111,114,109,97,116,45,111,112,116,105,111,110,115,92,34,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,121,101,97,114,58,32,92,34,110,117,109,101,114,105,99,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,110,116,104,58,32,92,34,50,45,100,105,103,105,116,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,97,121,58,32,92,34,50,45,100,105,103,105,116,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,101,58,32,95,118,109,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,76,97,110,103,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,95,118,109,46,100,97,116,101,77,97,120,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,68,97,116,101,77,97,120,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,41,92,110,32,32,32,32,58,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,114,111,119,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,99,111,108,92,34,44,32,123,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,104,101,105,103,104,116,58,32,92,34,55,48,112,120,92,34,32,125,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,100,97,116,101,83,108,105,100,101,114,92,34,32,125,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,51,57,98,52,100,50,49,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,51,57,98,52,100,50,49,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,98,45,99,97,114,100,92,34,44,92,110,32,32,32,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,98,45,52,32,109,116,45,52,92,34,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,45,116,105,116,108,101,92,34,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,68,101,98,117,103,73,99,111,110,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,114,45,49,92,34,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,100,101,98,117,103,92,34,41,41,41,44,92,110,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,112,92,34,44,32,123,32,100,111,109,80,114,111,112,115,58,32,123,32,105,110,110,101,114,72,84,77,76,58,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,100,101,98,117,103,68,101,115,99,114,105,112,116,105,111,110,92,34,41,41,32,125,32,125,41,44,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,45,98,111,100,121,92,34,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,116,97,98,108,101,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,98,45,48,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,116,101,109,115,58,32,95,118,109,46,116,97,98,108,101,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,109,97,108,108,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,111,114,100,101,114,108,101,115,115,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,112,111,110,115,105,118,101,58,32,92,34,109,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,116,104,101,97,100,45,99,108,97,115,115,92,34,58,32,92,34,104,105,100,100,101,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,104,114,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,108,40,95,118,109,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,105,110,100,105,99,101,115,44,32,102,117,110,99,116,105,111,110,32,40,105,100,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,40,92,34,73,110,100,101,120,68,101,98,117,103,73,110,102,111,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,105,100,120,46,105,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,116,45,50,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,105,110,100,101,120,58,32,105,100,120,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,50,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,101,98,117,103,73,110,102,111,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,100,51,99,49,48,98,57,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,100,51,99,49,48,98,57,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,98,45,98,117,116,116,111,110,45,103,114,111,117,112,92,34,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,98,117,116,116,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,92,34,112,114,105,109,97,114,121,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,95,118,109,46,36,116,40,92,34,100,105,115,112,108,97,121,77,111,100,101,46,108,105,115,116,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,115,115,101,100,58,32,95,118,109,46,111,112,116,68,105,115,112,108,97,121,32,61,61,61,32,92,34,108,105,115,116,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,115,101,116,79,112,116,68,105,115,112,108,97,121,40,92,34,108,105,115,116,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,118,103,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,92,34,50,48,112,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,92,34,50,48,112,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,92,34,105,109,103,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,120,109,108,110,115,58,32,92,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,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,105,101,119,66,111,120,58,32,92,34,48,32,48,32,53,49,50,32,53,49,50,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,108,58,32,92,34,99,117,114,114,101,110,116,67,111,108,111,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,58,32,92,34,77,56,48,32,51,54,56,72,49,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,45,51,50,48,72,49,54,65,49,54,32,49,54,32,48,32,48,32,48,32,48,32,54,52,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,86,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,32,49,54,48,72,49,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,52,49,54,32,49,55,54,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,51,50,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,45,51,50,48,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,86,56,48,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,32,49,54,48,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,51,50,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,98,117,116,116,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,105,97,110,116,58,32,92,34,112,114,105,109,97,114,121,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,95,118,109,46,36,116,40,92,34,100,105,115,112,108,97,121,77,111,100,101,46,103,114,105,100,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,115,115,101,100,58,32,95,118,109,46,111,112,116,68,105,115,112,108,97,121,32,61,61,61,32,92,34,103,114,105,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,115,101,116,79,112,116,68,105,115,112,108,97,121,40,92,34,103,114,105,100,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,118,103,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,92,34,50,48,112,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,92,34,50,48,112,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,111,108,101,58,32,92,34,105,109,103,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,120,109,108,110,115,58,32,92,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,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,105,101,119,66,111,120,58,32,92,34,48,32,48,32,53,49,50,32,53,49,50,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,108,58,32,92,34,99,117,114,114,101,110,116,67,111,108,111,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,58,32,92,34,77,49,52,57,46,51,51,51,32,53,54,118,56,48,99,48,32,49,51,46,50,53,53,45,49,48,46,55,52,53,32,50,52,45,50,52,32,50,52,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,45,49,48,46,55,52,53,45,50,52,45,50,52,86,53,54,99,48,45,49,51,46,50,53,53,32,49,48,46,55,52,53,45,50,52,32,50,52,45,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,32,49,48,46,55,52,53,32,50,52,32,50,52,122,109,49,56,49,46,51,51,52,32,50,52,48,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,54,32,48,32,50,52,46,48,48,49,45,49,48,46,55,52,53,32,50,52,46,48,48,49,45,50,52,122,109,51,50,45,50,52,48,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,86,53,54,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,109,45,51,50,32,56,48,86,53,54,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,54,32,48,32,50,52,46,48,48,49,45,49,48,46,55,52,53,32,50,52,46,48,48,49,45,50,52,122,109,45,50,48,53,46,51,51,52,32,53,54,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,122,77,48,32,51,55,54,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,109,51,56,54,46,54,54,55,45,53,54,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,122,109,48,32,49,54,48,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,122,77,49,56,49,46,51,51,51,32,51,55,54,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,100,111,99,45,99,97,114,100,92,34,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,32,92,34,115,117,98,45,100,111,99,117,109,101,110,116,92,34,58,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,83,117,98,68,111,99,117,109,101,110,116,32,125,44,92,110,32,32,32,32,32,32,115,116,121,108,101,58,32,92,34,119,105,100,116,104,58,32,92,34,32,43,32,95,118,109,46,119,105,100,116,104,32,43,32,92,34,112,120,92,34,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,92,34,98,117,115,84,110,84,111,117,99,104,83,116,97,114,116,92,34,44,32,110,117,108,108,41,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,92,34,44,92,110,32,32,32,32,32,32,32,32,123,32,97,116,116,114,115,58,32,123,32,92,34,110,111,45,98,111,100,121,92,34,58,32,92,34,92,34,44,32,92,34,105,109,103,45,116,111,112,92,34,58,32,92,34,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,68,111,99,73,110,102,111,77,111,100,97,108,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,115,104,111,119,58,32,95,118,109,46,115,104,111,119,73,110,102,111,44,32,100,111,99,58,32,95,118,109,46,100,111,99,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,111,115,101,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,115,104,111,119,73,110,102,111,32,61,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,67,111,110,116,101,110,116,68,105,118,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,100,111,99,58,32,95,118,109,46,100,111,99,32,125,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,70,117,108,108,84,104,117,109,98,110,97,105,108,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,100,111,99,58,32,95,118,109,46,100,111,99,44,32,92,34,115,109,97,108,108,45,98,97,100,103,101,92,34,58,32,95,118,109,46,115,109,97,108,108,66,97,100,103,101,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,65,117,100,105,111,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,97,117,100,105,111,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,102,58,32,92,34,97,117,100,105,111,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,97,117,100,105,111,45,102,105,116,32,102,105,116,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,108,111,97,100,58,32,92,34,110,111,110,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,114,111,108,115,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,58,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,109,105,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,114,99,58,32,92,34,102,47,92,34,32,43,32,95,118,109,46,100,111,99,46,95,105,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,121,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,65,117,100,105,111,80,108,97,121,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,99,97,114,100,45,98,111,100,121,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,112,97,100,100,105,110,103,45,48,51,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,100,105,115,112,108,97,121,58,32,92,34,102,108,101,120,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,115,112,97,110,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,105,110,102,111,45,105,99,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,73,110,102,111,67,108,105,99,107,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,68,111,99,70,105,108,101,84,105,116,108,101,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,100,111,99,58,32,95,118,109,46,100,111,99,32,125,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,99,97,114,100,45,116,101,120,116,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,99,40,92,34,84,97,103,67,111,110,116,97,105,110,101,114,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,104,105,116,58,32,95,118,109,46,100,111,99,32,125,32,125,41,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,48,56,56,54,102,53,50,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,48,56,56,54,102,53,50,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,71,114,105,100,76,97,121,111,117,116,92,34,44,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,114,101,102,58,32,92,34,103,114,105,100,45,108,97,121,111,117,116,92,34,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,111,112,116,105,111,110,115,58,32,95,118,109,46,103,114,105,100,79,112,116,105,111,110,115,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,97,112,112,101,110,100,58,32,95,118,109,46,97,112,112,101,110,100,44,92,110,32,32,32,32,32,32,32,32,92,34,108,97,121,111,117,116,45,99,111,109,112,108,101,116,101,92,34,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,36,101,109,105,116,40,92,34,108,97,121,111,117,116,45,99,111,109,112,108,101,116,101,92,34,41,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,95,118,109,46,95,108,40,95,118,109,46,100,111,99,115,44,32,102,117,110,99,116,105,111,110,32,40,100,111,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,40,92,34,68,111,99,67,97,114,100,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,100,111,99,46,95,105,100,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,100,111,99,58,32,100,111,99,44,32,119,105,100,116,104,58,32,95,118,109,46,119,105,100,116,104,32,125,44,92,110,32,32,32,32,32,32,125,41,92,110,32,32,32,32,125,41,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,87,97,108,108,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,97,92,34,44,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,102,105,108,101,45,116,105,116,108,101,45,97,110,99,104,111,114,92,34,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,104,114,101,102,58,32,92,34,102,47,92,34,32,43,32,95,118,109,46,100,111,99,46,95,105,100,44,32,116,97,114,103,101,116,58,32,92,34,95,98,108,97,110,107,92,34,32,125,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,34,100,105,118,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,102,105,108,101,45,116,105,116,108,101,92,34,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,116,104,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,47,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,110,97,109,101,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,101,120,116,40,95,118,109,46,100,111,99,41,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,123,32,105,110,110,101,114,72,84,77,76,58,32,95,118,109,46,95,115,40,95,118,109,46,102,105,108,101,78,97,109,101,40,41,32,43,32,95,118,109,46,101,120,116,40,95,118,109,46,100,111,99,41,41,32,125,44,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,93,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,100,48,50,55,52,102,55,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,100,48,50,55,52,102,55,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,98,45,109,111,100,97,108,92,34,44,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,58,32,95,118,109,46,115,104,111,119,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,58,32,92,34,108,103,92,34,44,92,110,32,32,32,32,32,32,32,32,92,34,104,105,100,101,45,102,111,111,116,101,114,92,34,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,108,97,122,121,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,99,108,111,115,101,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,36,101,109,105,116,40,92,34,99,108,111,115,101,92,34,41,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,104,105,100,101,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,36,101,109,105,116,40,92,34,99,108,111,115,101,92,34,41,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,58,32,95,118,109,46,95,117,40,91,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,109,111,100,97,108,45,116,105,116,108,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,102,110,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,104,53,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,111,100,97,108,45,116,105,116,108,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,116,105,116,108,101,58,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,110,97,109,101,32,43,32,95,118,109,46,101,120,116,40,95,118,109,46,100,111,99,41,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,110,97,109,101,32,43,32,95,118,109,46,101,120,116,40,95,118,109,46,100,111,99,41,41,32,43,32,92,34,32,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,114,111,117,116,101,114,45,108,105,110,107,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,97,116,116,114,115,58,32,123,32,116,111,58,32,92,34,47,102,105,108,101,63,98,121,73,100,61,92,34,32,43,32,95,118,109,46,100,111,99,46,95,105,100,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,92,34,35,92,34,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,120,121,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,104,97,115,84,104,117,109,98,110,97,105,108,92,110,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,105,109,103,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,102,105,116,32,99,97,114,100,45,105,109,103,45,116,111,112,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,114,99,58,32,92,34,116,47,92,34,32,43,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,105,110,100,101,120,32,43,32,92,34,47,92,34,32,43,32,95,118,109,46,100,111,99,46,95,105,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,108,116,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,73,110,102,111,84,97,98,108,101,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,100,111,99,58,32,95,118,109,46,100,111,99,32,125,32,125,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,76,97,122,121,67,111,110,116,101,110,116,68,105,118,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,92,34,100,111,99,45,105,100,92,34,58,32,95,118,109,46,100,111,99,46,95,105,100,32,125,32,125,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,73,110,102,111,77,111,100,97,108,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,53,53,57,49,57,52,102,54,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,53,53,57,49,57,52,102,54,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,98,45,108,105,115,116,45,103,114,111,117,112,92,34,44,92,110,32,32,32,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,116,45,51,92,34,32,125,44,92,110,32,32,32,32,95,118,109,46,95,108,40,95,118,109,46,100,111,99,115,44,32,102,117,110,99,116,105,111,110,32,40,100,111,99,41,32,123,92,110,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,40,92,34,68,111,99,76,105,115,116,73,116,101,109,92,34,44,32,123,32,107,101,121,58,32,100,111,99,46,95,105,100,44,32,97,116,116,114,115,58,32,123,32,100,111,99,58,32,100,111,99,32,125,32,125,41,92,110,32,32,32,32,125,41,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,98,45,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,92,34,44,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,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,32,109,98,45,50,92,34,44,92,110,32,32,32,32,32,32,99,108,97,115,115,58,32,123,32,92,34,115,117,98,45,100,111,99,117,109,101,110,116,92,34,58,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,83,117,98,68,111,99,117,109,101,110,116,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,109,111,117,115,101,101,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,84,110,69,110,116,101,114,40,41,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,109,111,117,115,101,108,101,97,118,101,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,84,110,76,101,97,118,101,40,41,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,34,68,111,99,73,110,102,111,77,111,100,97,108,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,115,104,111,119,58,32,95,118,109,46,115,104,111,119,73,110,102,111,44,32,100,111,99,58,32,95,118,109,46,100,111,99,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,111,115,101,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,115,104,111,119,73,110,102,111,32,61,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,101,100,105,97,32,109,108,45,50,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,104,97,115,84,104,117,109,98,110,97,105,108,92,110,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,97,108,105,103,110,45,115,101,108,102,45,115,116,97,114,116,32,109,114,45,50,32,119,114,97,112,112,101,114,45,115,109,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,105,109,103,45,119,114,97,112,112,101,114,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,86,105,100,101,111,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,112,108,97,121,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,118,103,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,97,116,116,114,115,58,32,123,92,110,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,118,105,101,119,66,111,120,58,32,92,34,48,32,48,32,52,57,52,46,57,52,50,32,52,57,52,46,57,52,50,92,34,44,92,110,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,120,109,108,110,115,58,32,92,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,92,34,44,92,110,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,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,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,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,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,97,116,116,114,115,58,32,123,92,110,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,100,58,32,92,34,109,51,53,46,51,53,51,32,48,32,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,45,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,122,92,34,44,92,110,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,125,44,92,110,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,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,73,109,97,103,101,32,124,124,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,86,105,100,101,111,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,105,109,103,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,112,111,105,110,116,101,114,32,102,105,116,45,115,109,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,114,99,58,92,110,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,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,71,105,102,32,38,38,32,95,118,109,46,104,111,118,101,114,92,110,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,63,32,92,34,102,47,92,34,32,43,32,95,118,109,46,100,111,99,46,95,105,100,92,110,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,58,32,92,34,116,47,92,34,32,43,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,105,110,100,101,120,32,43,32,92,34,47,92,34,32,43,32,95,118,109,46,100,111,99,46,95,105,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,108,116,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,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,114,101,116,117,114,110,32,95,118,109,46,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,99,40,92,34,105,109,103,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,102,105,116,45,115,109,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,114,99,58,32,92,34,116,47,92,34,32,43,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,105,110,100,101,120,32,43,32,92,34,47,92,34,32,43,32,95,118,109,46,100,111,99,46,95,105,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,108,116,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,41,92,110,32,32,32,32,32,32,32,32,32,32,58,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,102,105,108,101,45,105,99,111,110,45,119,114,97,112,112,101,114,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,99,40,92,34,70,105,108,101,73,99,111,110,92,34,41,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,100,111,99,45,108,105,110,101,32,109,108,45,51,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,100,105,115,112,108,97,121,58,32,92,34,102,108,101,120,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,115,112,97,110,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,105,110,102,111,45,105,99,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,115,104,111,119,73,110,102,111,32,61,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,68,111,99,70,105,108,101,84,105,116,108,101,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,100,111,99,58,32,95,118,109,46,100,111,99,32,125,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,67,111,110,116,101,110,116,68,105,118,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,100,111,99,58,32,95,118,109,46,100,111,99,32,125,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,112,97,116,104,45,114,111,119,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,100,105,118,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,112,97,116,104,45,108,105,110,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,123,32,105,110,110,101,114,72,84,77,76,58,32,95,118,109,46,95,115,40,95,118,109,46,112,97,116,104,40,41,41,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,84,97,103,67,111,110,116,97,105,110,101,114,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,104,105,116,58,32,95,118,109,46,100,111,99,32,125,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,103,101,115,32,124,124,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,97,117,116,104,111,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,112,97,116,104,45,114,111,119,32,116,101,120,116,45,109,117,116,101,100,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,103,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,115,112,97,110,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,110,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,95,118,109,46,95,115,40,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,103,101,115,41,32,43,92,110,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,92,34,32,92,34,32,43,92,110,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,95,118,109,46,95,115,40,92,110,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,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,103,101,115,32,62,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,118,109,46,36,116,40,92,34,112,97,103,101,115,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,36,116,40,92,34,112,97,103,101,92,34,41,92,110,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,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,97,117,116,104,111,114,32,38,38,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,103,101,115,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,115,112,97,110,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,120,45,49,92,34,32,125,44,32,91,95,118,109,46,95,118,40,92,34,45,92,34,41,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,97,117,116,104,111,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,115,112,97,110,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,97,117,116,104,111,114,41,41,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,104,97,115,84,104,117,109,98,110,97,105,108,92,110,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,105,109,103,45,119,114,97,112,112,101,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,115,101,101,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,84,110,69,110,116,101,114,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,109,111,117,115,101,108,101,97,118,101,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,84,110,76,101,97,118,101,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,111,117,99,104,115,116,97,114,116,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,84,111,117,99,104,83,116,97,114,116,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,65,117,100,105,111,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,32,92,34,115,109,97,108,108,45,98,97,100,103,101,92,34,58,32,95,118,109,46,115,109,97,108,108,66,97,100,103,101,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,115,112,97,110,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,104,117,109,97,110,84,105,109,101,40,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,100,117,114,97,116,105,111,110,41,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,73,109,97,103,101,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,33,95,118,109,46,104,111,118,101,114,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,116,110,87,32,47,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,116,110,72,32,60,32,53,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,32,92,34,115,109,97,108,108,45,98,97,100,103,101,92,34,58,32,95,118,109,46,115,109,97,108,108,66,97,100,103,101,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,115,112,97,110,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,115,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,119,105,100,116,104,32,43,32,92,34,120,92,34,32,43,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,104,101,105,103,104,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,40,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,86,105,100,101,111,32,124,124,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,71,105,102,41,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,100,117,114,97,116,105,111,110,32,62,32,48,32,38,38,92,110,32,32,32,32,32,32,32,32,32,32,33,95,118,109,46,104,111,118,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,32,92,34,115,109,97,108,108,45,98,97,100,103,101,92,34,58,32,95,118,109,46,115,109,97,108,108,66,97,100,103,101,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,115,112,97,110,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,104,117,109,97,110,84,105,109,101,40,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,100,117,114,97,116,105,111,110,41,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,86,105,100,101,111,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,112,108,97,121,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,118,103,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,105,101,119,66,111,120,58,32,92,34,48,32,48,32,52,57,52,46,57,52,50,32,52,57,52,46,57,52,50,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,120,109,108,110,115,58,32,92,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,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,58,32,92,34,109,51,53,46,51,53,51,32,48,32,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,45,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,122,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,73,109,97,103,101,32,124,124,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,86,105,100,101,111,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,105,109,103,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,102,58,32,92,34,116,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,112,111,105,110,116,101,114,32,102,105,116,32,99,97,114,100,45,105,109,103,45,116,111,112,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,71,105,102,32,38,38,32,95,118,109,46,104,111,118,101,114,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,118,109,46,116,110,72,101,105,103,104,116,40,41,32,43,32,92,34,112,120,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,117,110,100,101,102,105,110,101,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,115,114,99,58,32,95,118,109,46,116,110,83,114,99,44,32,97,108,116,58,32,92,34,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,99,40,92,34,105,109,103,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,102,105,116,32,99,97,114,100,45,105,109,103,45,116,111,112,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,115,114,99,58,32,95,118,109,46,116,110,83,114,99,44,32,97,108,116,58,32,92,34,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,104,111,118,101,114,32,38,38,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,104,97,115,86,105,100,80,114,101,118,105,101,119,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,103,114,101,115,115,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,95,118,109,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,32,43,32,49,41,32,47,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,116,110,78,117,109,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,41,92,110,32,32,32,32,58,32,95,118,109,46,95,101,40,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,56,51,97,56,49,57,57,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,56,51,97,56,49,57,57,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,98,45,109,111,100,97,108,92,34,44,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,108,101,58,32,95,118,109,46,115,104,111,119,44,92,110,32,32,32,32,32,32,32,32,115,105,122,101,58,32,92,34,108,103,92,34,44,92,110,32,32,32,32,32,32,32,32,92,34,104,105,100,101,45,102,111,111,116,101,114,92,34,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,95,118,109,46,36,116,40,92,34,104,101,108,112,46,104,101,108,112,92,34,41,44,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,99,108,111,115,101,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,36,101,109,105,116,40,92,34,99,108,111,115,101,92,34,41,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,104,105,100,101,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,36,101,109,105,116,40,92,34,99,108,111,115,101,92,34,41,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,34,104,50,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,115,105,109,112,108,101,83,101,97,114,99,104,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,116,97,98,108,101,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,116,97,98,108,101,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,95,99,40,92,34,116,98,111,100,121,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,114,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,95,99,40,92,34,99,111,100,101,92,34,44,32,91,95,118,109,46,95,118,40,92,34,43,92,34,41,93,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,97,110,100,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,114,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,95,99,40,92,34,99,111,100,101,92,34,44,32,91,95,118,109,46,95,118,40,92,34,124,92,34,41,93,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,111,114,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,114,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,95,99,40,92,34,99,111,100,101,92,34,44,32,91,95,118,109,46,95,118,40,92,34,45,92,34,41,93,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,110,111,116,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,114,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,95,99,40,92,34,99,111,100,101,92,34,44,32,91,95,118,109,46,95,118,40,39,92,34,92,34,39,41,93,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,113,117,111,116,101,115,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,114,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,95,99,40,92,34,99,111,100,101,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,116,101,114,109,92,34,41,41,32,43,32,92,34,42,92,34,41,93,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,112,114,101,102,105,120,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,114,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,99,111,100,101,92,34,44,32,91,95,118,109,46,95,118,40,92,34,40,92,34,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,97,110,100,92,34,41,41,32,43,32,92,34,32,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,99,111,100,101,92,34,44,32,91,95,118,109,46,95,118,40,92,34,41,92,34,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,112,97,114,101,110,115,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,114,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,99,111,100,101,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,116,101,114,109,92,34,41,41,32,43,32,92,34,126,78,92,34,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,116,105,108,100,101,84,101,114,109,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,114,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,95,99,40,92,34,99,111,100,101,92,34,44,32,91,95,118,109,46,95,118,40,39,92,34,46,46,46,92,34,126,78,39,41,93,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,116,100,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,116,105,108,100,101,80,104,114,97,115,101,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,112,92,34,44,32,123,32,100,111,109,80,114,111,112,115,58,32,123,32,105,110,110,101,114,72,84,77,76,58,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,101,120,97,109,112,108,101,49,92,34,41,41,32,125,32,125,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,112,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,123,32,105,110,110,101,114,72,84,77,76,58,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,100,101,102,97,117,108,116,79,112,101,114,97,116,111,114,92,34,41,41,32,125,44,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,112,92,34,44,32,123,32,100,111,109,80,114,111,112,115,58,32,123,32,105,110,110,101,114,72,84,77,76,58,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,102,117,122,122,121,92,34,41,41,32,125,32,125,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,98,114,92,34,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,112,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,123,32,105,110,110,101,114,72,84,77,76,58,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,109,111,114,101,73,110,102,111,83,105,109,112,108,101,92,34,41,41,32,125,44,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,112,92,34,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,104,50,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,97,100,118,97,110,99,101,100,83,101,97,114,99,104,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,112,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,123,32,105,110,110,101,114,72,84,77,76,58,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,109,111,114,101,73,110,102,111,65,100,118,97,110,99,101,100,92,34,41,41,32,125,44,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,93,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,72,101,108,112,68,105,97,108,111,103,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,57,53,98,54,48,99,50,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,57,53,98,54,48,99,50,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,34,104,52,92,34,44,32,91,95,118,109,46,95,118,40,92,34,91,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,105,110,100,101,120,46,110,97,109,101,41,32,43,32,92,34,93,92,34,41,93,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,98,45,116,97,98,108,101,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,98,45,48,92,34,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,105,116,101,109,115,58,32,95,118,109,46,116,97,98,108,101,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,115,109,97,108,108,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,98,111,114,100,101,114,108,101,115,115,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,115,112,111,110,115,105,118,101,58,32,92,34,109,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,116,104,101,97,100,45,99,108,97,115,115,92,34,58,32,92,34,104,105,100,100,101,110,92,34,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,68,101,98,117,103,73,110,102,111,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,118,109,46,105,115,77,111,98,105,108,101,92,110,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,115,101,108,101,99,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,95,118,109,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,73,100,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,105,111,110,115,58,32,95,118,109,46,105,110,100,105,99,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,117,108,116,105,112,108,101,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,101,108,101,99,116,45,115,105,122,101,92,34,58,32,54,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,116,101,120,116,45,102,105,101,108,100,92,34,58,32,92,34,110,97,109,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,118,97,108,117,101,45,102,105,101,108,100,92,34,58,32,92,34,105,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,97,110,103,101,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,83,101,108,101,99,116,40,36,101,118,101,110,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,41,92,110,32,32,32,32,58,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,45,102,108,101,120,32,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,32,97,108,105,103,110,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,115,112,97,110,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,115,40,95,118,109,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,108,101,110,103,116,104,41,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,115,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,108,101,110,103,116,104,32,61,61,61,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,118,109,46,36,116,40,92,34,105,110,100,101,120,80,105,99,107,101,114,46,115,101,108,101,99,116,101,100,73,110,100,101,120,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,36,116,40,92,34,105,110,100,101,120,80,105,99,107,101,114,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,32,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,98,117,116,116,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,118,97,114,105,97,110,116,58,32,92,34,108,105,110,107,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,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,114,101,116,117,114,110,32,95,118,109,46,115,101,108,101,99,116,65,108,108,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,105,110,100,101,120,80,105,99,107,101,114,46,115,101,108,101,99,116,65,108,108,92,34,41,41,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,98,117,116,116,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,118,97,114,105,97,110,116,58,32,92,34,108,105,110,107,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,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,114,101,116,117,114,110,32,95,118,109,46,115,101,108,101,99,116,78,111,110,101,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,105,110,100,101,120,80,105,99,107,101,114,46,115,101,108,101,99,116,78,111,110,101,92,34,41,41,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,108,105,115,116,45,103,114,111,117,112,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,117,110,115,101,108,101,99,116,97,98,108,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,105,110,100,101,120,45,112,105,99,107,101,114,45,100,101,115,107,116,111,112,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,108,40,95,118,109,46,105,110,100,105,99,101,115,44,32,102,117,110,99,116,105,111,110,32,40,105,100,120,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,45,102,108,101,120,32,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,32,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,32,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,32,112,111,105,110,116,101,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,32,97,99,116,105,118,101,58,32,95,118,109,46,108,97,115,116,67,108,105,99,107,73,110,100,101,120,32,61,61,61,32,105,100,120,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,116,111,103,103,108,101,73,110,100,101,120,40,105,100,120,44,32,36,101,118,101,110,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,36,101,118,101,110,116,46,115,104,105,102,116,75,101,121,41,32,123,92,110,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,114,101,116,117,114,110,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,115,104,105,102,116,67,108,105,99,107,40,105,100,120,44,32,36,101,118,101,110,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,100,45,102,108,101,120,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,99,104,101,99,107,98,111,120,92,34,44,32,123,92,110,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,116,97,116,105,99,83,116,121,108,101,58,32,123,32,92,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,92,34,58,32,92,34,110,111,110,101,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,99,104,101,99,107,101,100,58,32,95,118,109,46,105,115,83,101,108,101,99,116,101,100,40,105,100,120,41,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,105,100,120,46,110,97,109,101,41,32,43,32,92,34,32,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,112,97,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,116,101,120,116,45,109,117,116,101,100,32,116,105,109,101,115,116,97,109,112,45,116,101,120,116,32,109,108,45,50,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,102,111,114,109,97,116,73,100,120,68,97,116,101,40,105,100,120,46,116,105,109,101,115,116,97,109,112,41,41,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,98,97,100,103,101,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,118,101,114,115,105,111,110,45,98,97,100,103,101,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,34,118,92,34,32,43,32,95,118,109,46,95,115,40,105,100,120,46,118,101,114,115,105,111,110,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,54,51,48,98,98,99,48,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,54,51,48,98,98,99,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,34,98,45,116,97,98,108,101,92,34,44,32,123,92,110,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,98,45,48,32,109,116,45,52,92,34,44,92,110,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,105,116,101,109,115,58,32,95,118,109,46,116,97,98,108,101,73,116,101,109,115,44,92,110,32,32,32,32,32,32,115,109,97,108,108,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,98,111,114,100,101,114,108,101,115,115,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,114,101,115,112,111,110,115,105,118,101,58,32,92,34,109,100,92,34,44,92,110,32,32,32,32,32,32,92,34,116,104,101,97,100,45,99,108,97,115,115,92,34,58,32,92,34,104,105,100,100,101,110,92,34,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,58,32,95,118,109,46,95,117,40,91,92,110,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,99,101,108,108,40,118,97,108,117,101,41,92,34,44,92,110,32,32,32,32,32,32,32,32,102,110,58,32,102,117,110,99,116,105,111,110,32,40,100,97,116,97,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,104,116,109,108,92,34,32,105,110,32,100,97,116,97,46,105,116,101,109,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,115,112,97,110,92,34,44,32,123,32,100,111,109,80,114,111,112,115,58,32,123,32,105,110,110,101,114,72,84,77,76,58,32,95,118,109,46,95,115,40,100,97,116,97,46,105,116,101,109,46,104,116,109,108,41,32,125,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,99,40,92,34,115,112,97,110,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,100,97,116,97,46,118,97,108,117,101,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,93,41,44,92,110,32,32,125,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,102,111,84,97,98,108,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,101,53,53,99,48,49,99,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,101,53,53,99,48,49,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,118,109,46,108,111,97,100,105,110,103,92,110,32,32,32,32,63,32,95,99,40,92,34,80,114,101,108,111,97,100,101,114,92,34,41,92,110,32,32,32,32,58,32,95,118,109,46,99,111,110,116,101,110,116,92,110,32,32,32,32,63,32,95,99,40,92,34,100,105,118,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,99,111,110,116,101,110,116,45,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,123,32,105,110,110,101,114,72,84,77,76,58,32,95,118,109,46,95,115,40,95,118,109,46,99,111,110,116,101,110,116,41,32,125,44,92,110,32,32,32,32,32,32,125,41,92,110,32,32,32,32,58,32,95,118,109,46,95,101,40,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,97,122,121,67,111,110,116,101,110,116,68,105,118,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,52,52,48,99,54,97,53,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,52,52,48,99,54,97,53,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,123,32,99,108,97,115,115,58,32,123,32,92,34,100,105,115,97,98,108,101,45,97,110,105,109,97,116,105,111,110,115,92,34,58,32,95,118,109,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,32,125,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,34,70,115,76,105,103,104,116,98,111,120,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,107,101,121,58,32,95,118,109,46,108,105,103,104,116,98,111,120,75,101,121,44,92,110,32,32,32,32,32,32,32,32,114,101,102,58,32,92,34,108,105,103,104,116,98,111,120,92,34,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,116,111,103,103,108,101,114,58,32,95,118,109,46,115,104,111,119,76,105,103,104,116,98,111,120,44,92,110,32,32,32,32,32,32,32,32,32,32,115,111,117,114,99,101,115,58,32,95,118,109,46,108,105,103,104,116,98,111,120,83,111,117,114,99,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,115,58,32,95,118,109,46,108,105,103,104,116,98,111,120,84,104,117,109,98,115,44,92,110,32,32,32,32,32,32,32,32,32,32,99,97,112,116,105,111,110,115,58,32,95,118,109,46,108,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,32,32,116,121,112,101,115,58,32,95,118,109,46,108,105,103,104,116,98,111,120,84,121,112,101,115,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,115,111,117,114,99,101,45,105,110,100,101,120,92,34,58,32,95,118,109,46,108,105,103,104,116,98,111,120,83,108,105,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,99,117,115,116,111,109,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,115,92,34,58,32,95,118,109,46,99,117,115,116,111,109,66,117,116,116,111,110,115,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,115,108,105,100,101,115,104,111,119,45,116,105,109,101,92,34,58,32,95,118,109,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,111,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,32,42,32,49,48,48,48,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,122,111,111,109,45,105,110,99,114,101,109,101,110,116,92,34,58,32,48,46,50,53,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,108,111,97,100,45,111,110,108,121,45,99,117,114,114,101,110,116,45,115,111,117,114,99,101,92,34,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,111,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,111,110,45,99,108,111,115,101,92,34,58,32,95,118,109,46,111,110,67,108,111,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,111,110,45,111,112,101,110,92,34,58,32,95,118,109,46,111,110,83,104,111,119,44,92,110,32,32,32,32,32,32,32,32,32,32,92,34,111,110,45,115,108,105,100,101,45,99,104,97,110,103,101,92,34,58,32,95,118,109,46,111,110,83,108,105,100,101,67,104,97,110,103,101,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,97,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,100,105,115,112,108,97,121,58,32,92,34,110,111,110,101,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,108,105,103,104,116,98,111,120,45,100,111,119,110,108,111,97,100,92,34,32,125,44,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,100,55,97,57,55,54,57,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,100,55,97,57,55,54,57,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,92,34,32,125,44,32,91,92,110,32,32,32,32,95,99,40,92,34,112,92,34,44,32,91,92,110,32,32,32,32,32,32,95,99,40,92,34,98,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,115,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,91,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,105,110,100,105,99,101,115,46,102,105,110,100,40,102,117,110,99,116,105,111,110,32,40,105,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,46,105,100,32,61,61,61,32,95,118,109,46,104,105,116,46,95,115,111,117,114,99,101,46,105,110,100,101,120,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,46,110,97,109,101,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,93,92,34,92,110,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,95,118,109,46,95,118,40,92,110,32,32,32,32,32,32,32,32,95,118,109,46,95,115,40,92,110,32,32,32,32,32,32,32,32,32,32,92,34,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,40,95,118,109,46,104,105,116,46,95,115,111,117,114,99,101,46,112,97,116,104,32,61,61,61,32,92,34,92,34,32,63,32,92,34,92,34,32,58,32,92,34,47,92,34,41,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,104,105,116,46,95,115,111,117,114,99,101,46,112,97,116,104,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,47,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,104,105,116,46,95,115,111,117,114,99,101,46,110,97,109,101,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,101,120,116,40,95,118,109,46,104,105,116,41,92,110,32,32,32,32,32,32,32,32,41,32,43,32,92,34,32,92,34,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,93,41,44,92,110,32,32,32,32,95,99,40,92,34,112,92,34,44,32,123,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,92,34,109,97,114,103,105,110,45,116,111,112,92,34,58,32,92,34,45,49,101,109,92,34,32,125,32,125,44,32,91,92,110,32,32,32,32,32,32,95,118,109,46,104,105,116,46,95,115,111,117,114,99,101,46,119,105,100,116,104,92,110,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,115,112,97,110,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,115,40,95,118,109,46,104,105,116,46,95,115,111,117,114,99,101,46,119,105,100,116,104,32,43,32,92,34,120,92,34,32,43,32,95,118,109,46,104,105,116,46,95,115,111,117,114,99,101,46,104,101,105,103,104,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,41,92,110,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,95,118,109,46,95,118,40,92,110,32,32,32,32,32,32,32,32,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,92,34,32,40,92,34,32,43,32,95,118,109,46,104,117,109,97,110,70,105,108,101,83,105,122,101,40,95,118,109,46,104,105,116,46,95,115,111,117,114,99,101,46,115,105,122,101,41,32,43,32,92,34,41,92,34,41,32,43,32,92,34,32,92,34,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,93,41,44,92,110,32,32,93,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,109,105,109,101,84,114,101,101,92,34,32,125,32,125,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,98,45,110,97,118,98,97,114,92,34,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,118,109,46,36,114,111,117,116,101,46,112,97,116,104,32,33,61,61,32,92,34,47,92,34,92,110,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,98,45,110,97,118,98,97,114,45,98,114,97,110,100,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,116,111,58,32,92,34,47,92,34,32,125,32,125,44,32,91,95,99,40,92,34,83,105,115,116,50,73,99,111,110,92,34,41,93,44,32,49,41,92,110,32,32,32,32,32,32,32,32,58,32,95,99,40,92,34,98,45,110,97,118,98,97,114,45,98,114,97,110,100,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,104,114,101,102,58,32,92,34,46,92,34,32,125,32,125,44,32,91,95,99,40,92,34,83,105,115,116,50,73,99,111,110,92,34,41,93,44,32,49,41,44,92,110,32,32,32,32,32,32,95,118,109,46,36,115,116,111,114,101,32,38,38,32,95,118,109,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,92,110,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,115,112,97,110,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,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,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,34,32,118,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,115,105,115,116,50,86,101,114,115,105,111,110,40,41,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,105,115,68,101,98,117,103,40,41,32,63,32,95,99,40,92,34,115,112,97,110,92,34,44,32,91,95,118,109,46,95,118,40,92,34,45,100,98,103,92,34,41,93,41,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,105,115,76,101,103,97,99,121,40,41,32,38,38,32,33,95,118,109,46,104,105,100,101,76,101,103,97,99,121,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,115,112,97,110,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,34,45,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,97,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,114,101,102,58,32,92,34,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,115,105,109,111,110,57,56,55,47,115,105,115,116,50,47,98,108,111,98,47,109,97,115,116,101,114,47,100,111,99,115,47,85,83,65,71,69,46,109,100,35,101,108,97,115,116,105,99,115,101,97,114,99,104,92,34,44,92,110,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,97,114,103,101,116,58,32,92,34,95,98,108,97,110,107,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,92,34,108,101,103,97,99,121,69,83,92,34,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,41,92,110,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,95,118,109,46,36,115,116,111,114,101,32,38,38,32,95,118,109,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,92,110,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,115,112,97,110,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,116,97,103,108,105,110,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,100,111,109,80,114,111,112,115,58,32,123,32,105,110,110,101,114,72,84,77,76,58,32,95,118,109,46,95,115,40,95,118,109,46,116,97,103,108,105,110,101,40,41,41,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,98,117,116,116,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,108,45,97,117,116,111,92,34,44,32,97,116,116,114,115,58,32,123,32,116,111,58,32,92,34,115,116,97,116,115,92,34,44,32,118,97,114,105,97,110,116,58,32,92,34,108,105,110,107,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,115,116,97,116,115,92,34,41,41,41,93,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,98,45,98,117,116,116,111,110,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,116,111,58,32,92,34,99,111,110,102,105,103,92,34,44,32,118,97,114,105,97,110,116,58,32,92,34,108,105,110,107,92,34,32,125,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,99,111,110,102,105,103,92,34,41,41,41,44,92,110,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,95,118,109,46,36,97,117,116,104,32,38,38,32,95,118,109,46,36,97,117,116,104,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,92,110,32,32,32,32,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,98,117,116,116,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,118,97,114,105,97,110,116,58,32,92,34,108,105,110,107,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,76,111,103,111,117,116,67,108,105,99,107,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,92,34,108,111,103,111,117,116,92,34,41,93,92,110,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,105,110,112,117,116,45,103,114,111,117,112,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,92,34,109,97,114,103,105,110,45,98,111,116,116,111,109,92,34,58,32,92,34,48,46,53,101,109,92,34,44,32,92,34,109,97,114,103,105,110,45,116,111,112,92,34,58,32,92,34,49,101,109,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,98,117,116,116,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,118,97,114,105,97,110,116,58,32,92,34,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,36,114,101,102,115,91,92,34,112,97,116,104,45,109,111,100,97,108,92,34,93,46,115,104,111,119,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,118,103,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,120,109,108,110,115,58,32,92,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,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,105,101,119,66,111,120,58,32,92,34,48,32,48,32,53,55,54,32,53,49,50,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,92,34,50,48,112,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,102,105,108,108,58,32,92,34,99,117,114,114,101,110,116,67,111,108,111,114,92,34,44,92,110,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,100,58,32,92,34,77,50,56,56,32,50,50,52,104,50,50,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,45,51,50,86,54,52,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,45,51,50,72,52,48,48,76,51,54,56,32,48,104,45,56,48,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,32,51,50,118,54,52,72,54,52,86,56,97,56,32,56,32,48,32,48,32,48,45,56,45,56,72,52,48,97,56,32,56,32,48,32,48,32,48,45,56,32,56,118,51,57,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,50,48,56,118,54,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,32,51,50,104,50,50,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,45,51,50,86,51,53,50,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,45,51,50,72,52,48,48,108,45,51,50,45,51,50,104,45,56,48,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,32,51,50,118,54,52,72,54,52,86,49,50,56,104,49,57,50,118,54,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,32,51,50,122,109,48,32,57,54,104,54,54,46,55,52,108,51,50,32,51,50,72,53,49,50,118,49,50,56,72,50,56,56,122,109,48,45,50,56,56,104,54,54,46,55,52,108,51,50,32,51,50,72,53,49,50,118,49,50,56,72,50,56,56,122,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,86,117,101,83,105,109,112,108,101,83,117,103,103,101,115,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,120,45,102,108,101,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,95,118,109,46,103,101,116,80,97,116,104,84,101,120,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,115,116,58,32,95,118,109,46,115,117,103,103,101,115,116,80,97,116,104,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,109,97,120,45,115,117,103,103,101,115,116,105,111,110,115,92,34,58,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,95,118,109,46,36,116,40,92,34,112,97,116,104,66,97,114,46,112,108,97,99,101,104,111,108,100,101,114,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,80,97,116,104,84,101,120,116,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,58,32,95,118,109,46,95,117,40,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,115,117,103,103,101,115,116,105,111,110,45,105,116,101,109,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,110,58,32,102,117,110,99,116,105,111,110,32,40,114,101,102,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,115,117,103,103,101,115,116,105,111,110,32,61,32,114,101,102,46,115,117,103,103,101,115,116,105,111,110,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,114,32,113,117,101,114,121,32,61,32,114,101,102,46,113,117,101,114,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,99,40,92,34,100,105,118,92,34,44,32,123,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,116,97,116,105,99,67,108,97,115,115,58,32,92,34,115,117,103,103,101,115,116,105,111,110,45,108,105,110,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,116,105,116,108,101,58,32,115,117,103,103,101,115,116,105,111,110,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,115,116,114,111,110,103,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,113,117,101,114,121,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,110,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,95,118,109,46,95,115,40,92,110,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,95,118,109,46,103,101,116,83,117,103,103,101,115,116,105,111,110,87,105,116,104,111,117,116,81,117,101,114,121,80,114,101,102,105,120,40,92,110,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,115,117,103,103,101,115,116,105,111,110,44,92,110,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,113,117,101,114,121,92,110,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,41,92,110,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,41,32,43,32,92,34,32,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,109,111,100,97,108,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,114,101,102,58,32,92,34,112,97,116,104,45,109,111,100,97,108,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,95,118,109,46,36,116,40,92,34,112,97,116,104,66,97,114,46,109,111,100,97,108,84,105,116,108,101,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,92,34,108,103,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,104,105,100,101,45,102,111,111,116,101,114,92,34,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,95,99,40,92,34,100,105,118,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,112,97,116,104,84,114,101,101,92,34,32,125,32,125,41,93,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,97,57,52,101,57,55,54,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,97,57,52,101,57,55,54,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,34,98,45,112,114,111,103,114,101,115,115,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,118,97,108,117,101,58,32,92,34,49,92,34,44,32,109,97,120,58,32,92,34,49,92,34,44,32,97,110,105,109,97,116,101,100,58,32,92,34,92,34,32,125,32,125,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,114,101,108,111,97,100,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,52,50,48,57,98,52,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,57,52,50,48,57,98,52,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,118,109,46,108,97,115,116,82,101,115,117,108,116,115,76,111,97,100,101,100,92,110,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,92,34,44,92,110,32,32,32,32,32,32,32,32,123,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,114,101,115,117,108,116,115,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,115,112,97,110,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,115,40,95,118,109,46,104,105,116,67,111,117,110,116,41,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,32,92,34,32,43,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,115,40,95,118,109,46,104,105,116,67,111,117,110,116,32,61,61,61,32,49,32,63,32,95,118,109,46,36,116,40,92,34,104,105,116,92,34,41,32,58,32,95,118,109,46,36,116,40,92,34,104,105,116,115,92,34,41,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,102,108,111,97,116,58,32,92,34,114,105,103,104,116,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,98,117,116,116,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,92,34,98,45,116,111,103,103,108,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,97,119,78,97,109,101,58,32,92,34,118,45,98,45,116,111,103,103,108,101,46,99,111,108,108,97,112,115,101,45,49,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,105,102,105,101,114,115,58,32,123,32,92,34,99,111,108,108,97,112,115,101,45,49,92,34,58,32,116,114,117,101,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,110,111,116,45,109,111,98,105,108,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,118,97,114,105,97,110,116,58,32,92,34,112,114,105,109,97,114,121,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,84,111,103,103,108,101,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,100,101,116,97,105,108,115,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,104,105,116,67,111,117,110,116,32,33,61,61,32,48,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,83,111,114,116,83,101,108,101,99,116,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,108,45,50,92,34,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,108,45,50,92,34,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,50,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,111,108,108,97,112,115,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,112,116,45,50,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,99,108,101,97,114,58,32,92,34,98,111,116,104,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,99,111,108,108,97,112,115,101,45,49,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,116,97,98,108,101,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,98,45,48,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,116,101,109,115,58,32,95,118,109,46,116,97,98,108,101,73,116,101,109,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,109,97,108,108,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,111,114,100,101,114,108,101,115,115,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,111,114,100,101,114,101,100,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,116,104,101,97,100,45,99,108,97,115,115,92,34,58,32,92,34,104,105,100,100,101,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,114,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,104,52,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,109,105,109,101,84,121,112,101,115,92,34,41,41,32,43,32,92,34,32,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,98,117,116,116,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,102,108,111,97,116,45,114,105,103,104,116,92,34,44,92,110,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,97,116,116,114,115,58,32,123,32,115,105,122,101,58,32,92,34,115,109,92,34,44,32,118,97,114,105,97,110,116,58,32,92,34,112,114,105,109,97,114,121,92,34,32,125,44,92,110,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,58,32,123,32,99,108,105,99,107,58,32,95,118,109,46,111,110,67,111,112,121,67,108,105,99,107,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,99,40,92,34,67,108,105,112,98,111,97,114,100,73,99,111,110,92,34,41,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,36,115,116,111,114,101,46,115,116,97,116,101,46,117,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,32,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,80,114,101,108,111,97,100,101,114,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,99,40,92,34,98,45,116,97,98,108,101,92,34,44,32,123,92,110,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,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,98,45,48,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,92,34,115,111,114,116,45,98,121,92,34,58,32,92,34,100,111,99,95,99,111,117,110,116,92,34,44,92,110,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,92,34,115,111,114,116,45,100,101,115,99,92,34,58,32,116,114,117,101,44,92,110,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,92,34,116,104,101,97,100,45,99,108,97,115,115,92,34,58,32,92,34,104,105,100,100,101,110,92,34,44,92,110,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,105,116,101,109,115,58,32,95,118,109,46,36,115,116,111,114,101,46,115,116,97,116,101,46,117,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,44,92,110,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,115,109,97,108,108,58,32,92,34,92,34,44,92,110,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,98,111,114,100,101,114,101,100,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,41,92,110,32,32,32,32,58,32,95,118,109,46,95,101,40,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,101,99,97,51,55,99,98,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,101,99,97,51,55,99,98,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,105,110,112,117,116,45,103,114,111,117,112,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,58,32,95,118,109,46,95,117,40,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,112,114,101,112,101,110,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,110,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,97,116,116,114,115,58,32,123,92,110,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,99,104,101,99,107,101,100,58,32,95,118,109,46,102,117,122,122,121,44,92,110,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,116,105,116,108,101,58,32,92,34,84,111,103,103,108,101,32,102,117,122,122,121,32,115,101,97,114,99,104,105,110,103,92,34,44,92,110,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,125,44,92,110,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,58,32,123,92,110,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,99,104,97,110,103,101,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,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,114,101,116,117,114,110,32,95,118,109,46,115,101,116,70,117,122,122,121,40,36,101,118,101,110,116,41,92,110,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,125,44,92,110,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,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,115,101,97,114,99,104,66,97,114,46,102,117,122,122,121,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,120,121,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,97,112,112,101,110,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,110,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,98,117,116,116,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,118,97,114,105,97,110,116,58,32,92,34,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,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,114,101,116,117,114,110,32,95,118,109,46,36,101,109,105,116,40,92,34,115,104,111,119,45,104,101,108,112,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,104,101,108,112,46,104,101,108,112,92,34,41,41,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,111,120,121,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,105,110,112,117,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,95,118,109,46,115,101,97,114,99,104,84,101,120,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,95,118,109,46,97,100,118,97,110,99,101,100,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,118,109,46,36,116,40,92,34,115,101,97,114,99,104,66,97,114,46,97,100,118,97,110,99,101,100,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,36,116,40,92,34,115,101,97,114,99,104,66,97,114,46,115,105,109,112,108,101,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,112,117,116,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,115,101,116,83,101,97,114,99,104,84,101,120,116,40,36,101,118,101,110,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,101,97,114,99,104,66,97,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,49,50,101,97,57,55,50,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,49,50,101,97,57,55,50,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,115,105,122,101,83,108,105,100,101,114,92,34,32,125,32,125,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,34,98,45,98,97,100,103,101,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,118,97,114,105,97,110,116,58,32,92,34,115,101,99,111,110,100,97,114,121,92,34,44,32,112,105,108,108,58,32,95,118,109,46,112,105,108,108,32,125,32,125,44,32,91,92,110,32,32,32,32,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,116,101,120,116,41,41,44,92,110,32,32,93,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,101,49,49,49,53,53,50,99,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,101,49,49,49,53,53,50,99,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,98,45,100,114,111,112,100,111,119,110,92,34,44,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,118,97,114,105,97,110,116,58,32,92,34,112,114,105,109,97,114,121,92,34,32,125,44,92,110,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,58,32,95,118,109,46,95,117,40,91,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,98,117,116,116,111,110,45,99,111,110,116,101,110,116,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,102,110,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,118,103,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,97,114,105,97,45,104,105,100,100,101,110,92,34,58,32,92,34,116,114,117,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,92,34,50,48,112,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,92,34,50,48,112,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,120,109,108,110,115,58,32,92,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,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,105,101,119,66,111,120,58,32,92,34,48,32,48,32,51,50,48,32,53,49,50,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,108,58,32,92,34,99,117,114,114,101,110,116,67,111,108,111,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,58,32,92,34,77,52,49,32,50,56,56,104,50,51,56,99,50,49,46,52,32,48,32,51,50,46,49,32,50,53,46,57,32,49,55,32,52,49,76,49,55,55,32,52,52,56,99,45,57,46,52,32,57,46,52,45,50,52,46,54,32,57,46,52,45,51,51,46,57,32,48,76,50,52,32,51,50,57,99,45,49,53,46,49,45,49,53,46,49,45,52,46,52,45,52,49,32,49,55,45,52,49,122,109,50,53,53,45,49,48,53,76,49,55,55,32,54,52,99,45,57,46,52,45,57,46,52,45,50,52,46,54,45,57,46,52,45,51,51,46,57,32,48,76,50,52,32,49,56,51,99,45,49,53,46,49,32,49,53,46,49,45,52,46,52,32,52,49,32,49,55,32,52,49,104,50,51,56,99,50,49,46,52,32,48,32,51,50,46,49,45,50,53,46,57,32,49,55,45,52,49,122,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,112,114,111,120,121,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,32,92,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,92,34,58,32,95,118,109,46,115,111,114,116,32,61,61,61,32,92,34,115,99,111,114,101,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,83,101,108,101,99,116,40,92,34,115,99,111,114,101,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,115,111,114,116,46,114,101,108,101,118,97,110,99,101,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,32,92,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,92,34,58,32,95,118,109,46,115,111,114,116,32,61,61,61,32,92,34,100,97,116,101,65,115,99,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,83,101,108,101,99,116,40,92,34,100,97,116,101,65,115,99,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,115,111,114,116,46,100,97,116,101,65,115,99,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,32,92,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,92,34,58,32,95,118,109,46,115,111,114,116,32,61,61,61,32,92,34,100,97,116,101,68,101,115,99,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,83,101,108,101,99,116,40,92,34,100,97,116,101,68,101,115,99,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,115,111,114,116,46,100,97,116,101,68,101,115,99,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,32,92,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,92,34,58,32,95,118,109,46,115,111,114,116,32,61,61,61,32,92,34,115,105,122,101,65,115,99,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,83,101,108,101,99,116,40,92,34,115,105,122,101,65,115,99,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,115,111,114,116,46,115,105,122,101,65,115,99,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,32,92,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,92,34,58,32,95,118,109,46,115,111,114,116,32,61,61,61,32,92,34,115,105,122,101,68,101,115,99,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,83,101,108,101,99,116,40,92,34,115,105,122,101,68,101,115,99,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,115,111,114,116,46,115,105,122,101,68,101,115,99,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,32,92,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,92,34,58,32,95,118,109,46,115,111,114,116,32,61,61,61,32,92,34,110,97,109,101,68,101,115,99,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,83,101,108,101,99,116,40,92,34,110,97,109,101,68,101,115,99,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,115,111,114,116,46,110,97,109,101,68,101,115,99,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,32,92,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,92,34,58,32,95,118,109,46,115,111,114,116,32,61,61,61,32,92,34,110,97,109,101,65,115,99,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,83,101,108,101,99,116,40,92,34,110,97,109,101,65,115,99,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,115,111,114,116,46,110,97,109,101,65,115,99,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,123,32,92,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,92,34,58,32,95,118,109,46,115,111,114,116,32,61,61,61,32,92,34,114,97,110,100,111,109,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,83,101,108,101,99,116,40,92,34,114,97,110,100,111,109,92,34,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,115,111,114,116,46,114,97,110,100,111,109,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,109,111,117,115,101,101,110,116,101,114,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,115,104,111,119,65,100,100,66,117,116,116,111,110,32,61,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,109,111,117,115,101,108,101,97,118,101,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,115,104,111,119,65,100,100,66,117,116,116,111,110,32,61,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,109,111,100,97,108,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,58,32,95,118,109,46,36,116,40,92,34,115,97,118,101,84,97,103,77,111,100,97,108,84,105,116,108,101,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,104,105,100,101,45,102,111,111,116,101,114,92,34,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,110,111,45,102,97,100,101,92,34,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,101,110,116,101,114,101,100,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,92,34,108,103,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,108,97,122,121,58,32,92,34,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,109,111,100,101,108,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,95,118,109,46,115,104,111,119,77,111,100,97,108,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,98,97,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,36,118,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,115,104,111,119,77,111,100,97,108,32,61,32,36,36,118,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,101,120,112,114,101,115,115,105,111,110,58,32,92,34,115,104,111,119,77,111,100,97,108,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,114,111,119,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,111,108,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,92,34,102,108,101,120,45,103,114,111,119,92,34,58,32,92,34,50,92,34,32,125,44,32,97,116,116,114,115,58,32,123,32,115,109,58,32,92,34,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,86,117,101,83,105,109,112,108,101,83,117,103,103,101,115,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,102,58,32,92,34,115,117,103,103,101,115,116,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,120,45,102,108,101,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,92,34,109,97,114,103,105,110,45,116,111,112,92,34,58,32,92,34,49,55,112,120,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,95,118,109,46,116,97,103,84,101,120,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,105,115,116,58,32,95,118,109,46,115,117,103,103,101,115,116,84,97,103,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,109,97,120,45,115,117,103,103,101,115,116,105,111,110,115,92,34,58,32,48,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,58,32,95,118,109,46,36,116,40,92,34,115,97,118,101,84,97,103,80,108,97,99,101,104,111,108,100,101,114,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,115,101,116,84,97,103,84,101,120,116,40,36,101,118,101,110,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,112,117,116,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,115,101,116,84,97,103,84,101,120,116,40,36,101,118,101,110,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,58,32,95,118,109,46,95,117,40,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,92,34,115,117,103,103,101,115,116,105,111,110,45,105,116,101,109,92,34,44,92,110,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,110,58,32,102,117,110,99,116,105,111,110,32,40,114,101,102,41,32,123,92,110,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,118,97,114,32,115,117,103,103,101,115,116,105,111,110,32,61,32,114,101,102,46,115,117,103,103,101,115,116,105,111,110,92,110,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,118,97,114,32,113,117,101,114,121,32,61,32,114,101,102,46,113,117,101,114,121,92,110,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,114,101,116,117,114,110,32,95,99,40,92,34,100,105,118,92,34,44,32,123,125,44,32,91,92,110,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,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,115,117,103,103,101,115,116,105,111,110,45,108,105,110,101,92,34,32,125,44,32,91,92,110,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,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,112,97,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,98,97,100,103,101,32,98,97,100,103,101,45,115,117,103,103,101,115,116,105,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,95,118,109,46,103,101,116,66,103,40,115,117,103,103,101,115,116,105,111,110,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,58,32,95,118,109,46,103,101,116,70,103,40,115,117,103,103,101,115,116,105,111,110,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,115,116,114,111,110,103,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,113,117,101,114,121,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,115,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,103,101,116,83,117,103,103,101,115,116,105,111,110,87,105,116,104,111,117,116,81,117,101,114,121,80,114,101,102,105,120,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,117,103,103,101,115,116,105,111,110,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,113,117,101,114,121,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,32,43,32,92,34,32,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,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,41,44,92,110,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,93,41,44,92,110,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,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,111,108,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,116,45,52,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,84,119,105,116,116,101,114,67,111,108,111,114,80,105,99,107,101,114,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,114,45,97,117,116,111,32,109,108,45,97,117,116,111,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,116,114,105,97,110,103,108,101,58,32,92,34,104,105,100,101,92,34,44,32,119,105,100,116,104,58,32,50,53,50,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,108,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,95,118,109,46,99,111,108,111,114,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,98,97,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,36,118,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,99,111,108,111,114,32,61,32,36,36,118,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,120,112,114,101,115,115,105,111,110,58,32,92,34,99,111,108,111,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,98,117,116,116,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,116,45,50,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,102,108,111,97,116,58,32,92,34,114,105,103,104,116,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,118,97,114,105,97,110,116,58,32,92,34,112,114,105,109,97,114,121,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,115,97,118,101,84,97,103,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,99,111,110,102,105,114,109,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,95,118,109,46,95,108,40,95,118,109,46,104,105,116,46,95,116,97,103,115,44,32,102,117,110,99,116,105,111,110,32,40,116,97,103,41,32,123,92,110,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,92,110,32,32,32,32,32,32,32,32,32,32,116,97,103,46,117,115,101,114,84,97,103,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,107,101,121,58,32,116,97,103,46,114,97,119,84,101,120,116,44,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,100,105,115,112,108,97,121,58,32,92,34,105,110,108,105,110,101,45,98,108,111,99,107,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,112,97,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,98,97,100,103,101,32,112,111,105,110,116,101,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,95,118,109,46,98,97,100,103,101,67,108,97,115,115,40,116,97,103,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,95,118,109,46,98,97,100,103,101,83,116,121,108,101,40,116,97,103,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,95,118,109,46,104,105,116,46,95,105,100,32,43,32,116,97,103,46,114,97,119,84,101,120,116,44,92,110,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,105,116,108,101,58,32,116,97,103,46,116,101,120,116,44,92,110,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,97,98,105,110,100,101,120,58,32,92,34,45,49,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,120,116,109,101,110,117,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,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,114,101,116,117,114,110,32,95,118,109,46,111,110,84,97,103,82,105,103,104,116,67,108,105,99,107,40,116,97,103,44,32,36,101,118,101,110,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,116,97,103,46,116,101,120,116,46,115,112,108,105,116,40,92,34,46,92,34,41,46,112,111,112,40,41,41,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,112,111,112,111,118,101,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,97,114,103,101,116,58,32,95,118,109,46,104,105,116,46,95,105,100,32,43,32,116,97,103,46,114,97,119,84,101,120,116,44,92,110,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,114,105,103,103,101,114,115,58,32,92,34,102,111,99,117,115,32,98,108,117,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,99,101,109,101,110,116,58,32,92,34,116,111,112,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,98,117,116,116,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,97,116,116,114,115,58,32,123,32,118,97,114,105,97,110,116,58,32,92,34,100,97,110,103,101,114,92,34,32,125,44,92,110,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,58,32,123,92,110,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,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,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,114,101,116,117,114,110,32,95,118,109,46,111,110,84,97,103,68,101,108,101,116,101,67,108,105,99,107,40,116,97,103,44,32,36,101,118,101,110,116,41,92,110,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,125,44,92,110,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,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,100,101,108,101,116,101,84,97,103,92,34,41,41,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,112,97,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,107,101,121,58,32,116,97,103,46,116,101,120,116,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,98,97,100,103,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,97,115,115,58,32,95,118,109,46,98,97,100,103,101,67,108,97,115,115,40,116,97,103,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,121,108,101,58,32,95,118,109,46,98,97,100,103,101,83,116,121,108,101,40,116,97,103,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,116,97,103,46,116,101,120,116,46,115,112,108,105,116,40,92,34,46,92,34,41,46,112,111,112,40,41,41,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,95,118,109,46,115,104,111,119,65,100,100,66,117,116,116,111,110,92,110,32,32,32,32,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,109,97,108,108,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,98,97,100,103,101,32,97,100,100,45,116,97,103,45,98,117,116,116,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,116,97,103,65,100,100,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,97,100,100,84,97,103,92,34,41,41,41,93,92,110,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,58,32,95,99,40,92,34,115,109,97,108,108,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,116,101,120,116,45,109,117,116,101,100,32,98,97,100,103,101,45,115,105,122,101,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,104,117,109,97,110,70,105,108,101,83,105,122,101,40,95,118,109,46,104,105,116,46,95,115,111,117,114,99,101,46,115,105,122,101,41,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,50,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,118,109,46,115,104,111,119,83,101,97,114,99,104,66,97,114,92,110,32,32,32,32,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,105,110,112,117,116,45,103,114,111,117,112,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,123,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,116,97,103,45,112,105,99,107,101,114,45,102,105,108,116,101,114,45,98,97,114,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,105,110,112,117,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,118,97,108,117,101,58,32,95,118,109,46,102,105,108,116,101,114,44,32,112,108,97,99,101,104,111,108,100,101,114,58,32,95,118,109,46,36,116,40,92,34,116,97,103,70,105,108,116,101,114,92,34,41,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,112,117,116,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,70,105,108,116,101,114,40,36,101,118,101,110,116,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,116,97,103,84,114,101,101,92,34,32,125,32,125,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,34,100,105,118,92,34,44,32,123,92,110,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,116,104,117,109,98,110,97,105,108,45,112,114,111,103,114,101,115,115,45,98,97,114,92,34,44,92,110,32,32,32,32,115,116,121,108,101,58,32,123,32,119,105,100,116,104,58,32,95,118,109,46,112,101,114,99,101,110,116,80,114,111,103,114,101,115,115,32,43,32,92,34,37,92,34,32,125,44,92,110,32,32,125,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,115,118,103,92,34,44,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,119,105,100,116,104,58,32,92,34,50,52,112,120,92,34,44,32,104,101,105,103,104,116,58,32,92,34,50,52,112,120,92,34,32,125,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,118,105,101,119,66,111,120,58,32,92,34,48,32,48,32,50,52,32,50,52,92,34,32,125,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,105,108,108,58,32,92,34,99,117,114,114,101,110,116,67,111,108,111,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,100,58,32,92,34,77,49,55,44,57,72,55,86,55,72,49,55,77,49,55,44,49,51,72,55,86,49,49,72,49,55,77,49,52,44,49,55,72,55,86,49,53,72,49,52,77,49,50,44,51,65,49,44,49,32,48,32,48,44,49,32,49,51,44,52,65,49,44,49,32,48,32,48,44,49,32,49,50,44,53,65,49,44,49,32,48,32,48,44,49,32,49,49,44,52,65,49,44,49,32,48,32,48,44,49,32,49,50,44,51,77,49,57,44,51,72,49,52,46,56,50,67,49,52,46,52,44,49,46,56,52,32,49,51,46,51,44,49,32,49,50,44,49,67,49,48,46,55,44,49,32,57,46,54,44,49,46,56,52,32,57,46,49,56,44,51,72,53,65,50,44,50,32,48,32,48,44,48,32,51,44,53,86,49,57,65,50,44,50,32,48,32,48,44,48,32,53,44,50,49,72,49,57,65,50,44,50,32,48,32,48,44,48,32,50,49,44,49,57,86,53,65,50,44,50,32,48,32,48,44,48,32,49,57,44,51,90,92,34,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,93,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,115,118,103,92,34,44,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,120,109,108,110,115,58,32,92,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,92,34,44,92,110,32,32,32,32,32,32,32,32,118,105,101,119,66,111,120,58,32,92,34,48,32,48,32,51,48,57,46,57,57,56,32,51,48,57,46,57,57,56,92,34,44,92,110,32,32,32,32,32,32,32,32,102,105,108,108,58,32,92,34,99,117,114,114,101,110,116,67,111,108,111,114,92,34,44,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,58,32,92,34,77,50,57,52,46,57,57,56,44,49,53,53,46,48,51,72,50,53,48,118,45,52,56,46,56,50,108,51,57,46,55,49,52,45,51,57,46,55,49,53,99,53,46,56,53,56,45,53,46,56,53,55,44,53,46,56,53,56,45,49,53,46,51,53,54,44,48,45,50,49,46,50,49,51,99,45,53,46,56,53,55,45,53,46,56,53,55,45,49,53,46,51,53,53,45,53,46,56,53,55,45,50,49,46,50,49,51,44,48,32,108,45,50,51,46,55,44,50,51,46,55,48,49,99,45,49,50,46,56,56,53,45,51,55,46,50,45,52,56,46,50,55,52,45,54,51,46,57,56,52,45,56,57,46,56,48,50,45,54,51,46,57,56,52,99,45,52,49,46,53,50,56,44,48,45,55,54,46,57,49,51,44,50,54,46,55,56,55,45,56,57,46,55,57,55,44,54,51,46,57,56,57,76,52,49,46,52,57,55,44,52,53,46,50,56,50,32,99,45,53,46,56,53,54,45,53,46,56,53,57,45,49,53,46,51,53,52,45,53,46,56,53,55,45,50,49,46,50,49,51,44,48,115,45,53,46,56,53,56,44,49,53,46,51,53,53,44,48,44,50,49,46,50,49,51,76,54,48,44,49,48,54,46,50,49,50,118,52,56,46,56,49,56,72,49,53,99,45,56,46,50,56,52,44,48,45,49,53,44,54,46,55,49,54,45,49,53,44,49,53,99,48,44,56,46,50,56,52,44,54,46,55,49,54,44,49,53,44,49,53,44,49,53,32,104,52,53,46,49,51,52,99,48,46,56,53,53,44,49,54,46,51,49,52,44,53,46,56,52,57,44,51,49,46,53,53,49,44,49,51,46,57,52,52,44,52,52,46,54,56,108,45,52,57,46,54,56,53,44,52,57,46,54,56,51,99,45,53,46,56,53,56,44,53,46,56,53,55,45,53,46,56,53,56,44,49,53,46,51,53,52,44,48,44,50,49,46,50,49,51,32,99,50,46,57,50,57,44,50,46,57,51,44,54,46,55,54,56,44,52,46,51,57,52,44,49,48,46,54,48,55,44,52,46,51,57,52,99,51,46,56,51,56,44,48,44,55,46,54,55,56,45,49,46,52,54,53,44,49,48,46,54,48,54,45,52,46,51,57,52,108,52,56,46,48,57,53,45,52,56,46,48,57,51,99,49,54,46,53,53,56,44,49,52,46,48,49,56,44,51,55,46,57,53,55,44,50,50,46,52,56,54,44,54,49,46,51,48,49,44,50,50,46,52,56,54,32,99,48,46,48,49,57,44,48,44,48,46,48,51,55,45,48,46,48,48,49,44,48,46,48,53,55,45,48,46,48,48,49,99,48,46,48,49,49,44,48,44,48,46,48,50,50,44,48,46,48,48,50,44,48,46,48,51,51,44,48,46,48,48,50,99,48,46,48,49,57,44,48,44,48,46,48,51,55,45,48,46,48,48,51,44,48,46,48,53,54,45,48,46,48,48,51,32,99,50,51,46,50,56,53,45,48,46,48,51,53,44,52,52,46,54,50,57,45,56,46,52,57,52,44,54,49,46,49,53,45,50,50,46,52,56,51,108,52,56,46,48,57,52,44,52,56,46,48,57,50,99,50,46,57,50,57,44,50,46,57,50,57,44,54,46,55,54,56,44,52,46,51,57,52,44,49,48,46,54,48,54,44,52,46,51,57,52,99,51,46,56,51,57,44,48,44,55,46,54,55,56,45,49,46,52,54,53,44,49,48,46,54,48,55,45,52,46,51,57,52,32,99,53,46,56,53,56,45,53,46,56,53,56,44,53,46,56,53,56,45,49,53,46,51,53,53,44,48,45,50,49,46,50,49,51,108,45,52,57,46,54,56,51,45,52,57,46,54,56,49,99,56,46,48,57,54,45,49,51,46,49,51,49,44,49,51,46,48,56,57,45,50,56,46,51,54,54,44,49,51,46,57,52,52,45,52,52,46,54,56,50,104,52,53,46,49,51,50,99,56,46,50,56,52,44,48,44,49,53,45,54,46,55,49,54,44,49,53,45,49,53,32,67,51,48,57,46,57,57,56,44,49,54,49,46,55,52,54,44,51,48,51,46,50,56,50,44,49,53,53,46,48,51,44,50,57,52,46,57,57,56,44,49,53,53,46,48,51,122,32,77,49,53,52,46,57,57,57,44,51,52,46,57,57,57,99,51,48,46,54,56,49,44,48,44,53,54,46,52,54,53,44,50,49,46,51,54,53,44,54,51,46,50,53,52,44,53,48,72,57,49,46,55,52,55,32,67,57,56,46,53,51,53,44,53,54,46,51,54,52,44,49,50,52,46,51,49,56,44,51,52,46,57,57,57,44,49,53,52,46,57,57,57,44,51,52,46,57,57,57,122,32,77,57,48,44,49,55,57,46,57,57,57,118,45,57,46,50,55,50,99,48,46,48,49,49,45,48,46,50,51,50,44,48,46,48,51,53,45,48,46,52,54,50,44,48,46,48,51,53,45,48,46,54,57,54,32,99,48,45,48,46,50,51,52,45,48,46,48,50,52,45,48,46,52,54,52,45,48,46,48,51,53,45,48,46,54,57,53,118,45,53,52,46,51,51,54,104,53,48,46,48,57,50,118,49,50,56,46,50,53,52,67,49,49,49,46,52,49,53,44,50,51,54,46,52,57,52,44,57,48,44,50,49,48,46,55,48,56,44,57,48,44,49,55,57,46,57,57,57,122,32,77,49,55,48,46,48,57,50,44,50,52,51,46,50,49,50,86,49,49,52,46,57,57,57,72,50,50,48,32,118,53,52,46,50,57,55,99,45,48,46,48,49,50,44,48,46,50,52,52,45,48,46,48,51,55,44,48,46,52,56,54,45,48,46,48,51,55,44,48,46,55,51,52,99,48,44,48,46,50,52,56,44,48,46,48,50,53,44,48,46,52,57,44,48,46,48,51,55,44,48,46,55,51,52,118,57,46,50,51,52,67,50,50,48,44,50,49,48,46,54,52,53,44,49,57,56,46,54,55,54,44,50,51,54,46,51,56,56,44,49,55,48,46,48,57,50,44,50,52,51,46,50,49,50,122,92,34,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,93,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,115,118,103,92,34,44,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,102,105,108,101,45,105,99,111,110,92,34,44,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,120,109,108,110,115,58,32,92,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,92,34,44,32,118,105,101,119,66,111,120,58,32,92,34,48,32,48,32,53,48,32,53,48,92,34,32,125,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,105,108,108,58,32,92,34,99,117,114,114,101,110,116,67,111,108,111,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,100,58,32,92,34,77,32,55,32,50,32,76,32,55,32,52,56,32,76,32,52,51,32,52,56,32,76,32,52,51,32,49,52,46,53,57,51,55,53,32,76,32,52,50,46,55,49,56,55,53,32,49,52,46,50,56,49,50,53,32,76,32,51,48,46,55,49,56,55,53,32,50,46,50,56,49,50,53,32,76,32,51,48,46,52,48,54,50,53,32,50,32,90,32,77,32,57,32,52,32,76,32,50,57,32,52,32,76,32,50,57,32,49,54,32,76,32,52,49,32,49,54,32,76,32,52,49,32,52,54,32,76,32,57,32,52,54,32,90,32,77,32,51,49,32,53,46,52,51,55,53,32,76,32,51,57,46,53,54,50,53,32,49,52,32,76,32,51,49,32,49,52,32,90,92,34,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,93,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,115,118,103,92,34,44,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,120,109,108,110,115,58,32,92,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,92,34,44,92,110,32,32,32,32,32,32,32,32,118,105,101,119,66,111,120,58,32,92,34,48,32,48,32,49,48,48,48,32,49,48,48,48,92,34,44,92,110,32,32,32,32,32,32,32,32,102,105,108,108,58,32,92,34,99,117,114,114,101,110,116,67,111,108,111,114,92,34,44,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,103,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,116,114,97,110,115,102,111,114,109,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,116,114,97,110,115,108,97,116,101,40,48,46,48,48,48,48,48,48,44,53,49,50,46,48,48,48,48,48,48,41,32,115,99,97,108,101,40,48,46,49,48,48,48,48,48,44,45,48,46,49,48,48,48,48,48,41,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,58,32,92,34,77,52,53,54,56,46,53,44,53,48,49,49,99,45,55,51,46,50,45,55,46,55,45,49,53,52,45,50,53,45,49,55,55,46,49,45,51,54,46,54,99,45,56,52,46,55,45,52,54,46,50,45,49,48,50,45,49,49,57,46,52,45,49,53,57,46,56,45,54,56,57,46,50,115,45,54,53,46,53,45,54,49,48,46,51,45,49,53,57,46,56,45,54,55,48,99,45,50,51,46,49,45,49,53,46,52,45,49,50,53,46,49,45,53,53,46,56,45,50,50,53,46,51,45,57,48,46,53,99,45,49,48,48,46,49,45,51,50,46,55,45,50,57,48,46,55,45,49,49,49,46,55,45,52,50,51,46,54,45,49,55,53,46,50,99,45,51,49,57,46,54,45,49,53,50,46,49,45,51,49,53,46,56,45,49,53,50,46,49,45,54,49,57,46,57,44,57,52,46,51,99,45,55,49,56,46,49,44,53,56,51,46,51,45,54,53,48,46,55,44,53,51,53,46,50,45,55,52,55,44,53,51,53,46,50,99,45,55,55,44,48,45,49,48,52,45,49,49,46,54,45,49,56,52,46,56,45,55,55,99,45,49,53,55,46,57,45,49,50,55,46,49,45,52,49,48,46,49,45,51,55,53,46,52,45,53,54,55,46,57,45,53,53,56,46,51,99,45,49,53,53,46,57,45,49,55,55,46,49,45,49,57,48,46,54,45,50,53,48,46,51,45,49,53,57,46,56,45,51,52,52,46,54,99,57,46,54,45,50,55,44,49,54,53,46,54,45,50,50,55,46,50,44,51,52,52,46,54,45,52,52,54,46,55,99,49,56,49,45,50,49,57,46,53,44,51,52,50,46,55,45,52,50,53,46,53,44,51,54,48,45,52,53,56,46,50,99,53,50,45,56,56,46,54,44,52,50,46,51,45,49,53,48,46,50,45,53,48,46,49,45,51,51,53,99,45,55,51,46,50,45,49,52,56,46,51,45,49,52,52,46,52,45,51,50,53,46,52,45,50,53,50,46,50,45,54,50,51,46,56,99,45,49,55,46,51,45,53,48,45,53,55,46,56,45,49,49,51,46,54,45,56,56,46,54,45,49,51,56,46,54,99,45,54,51,46,53,45,53,51,46,57,45,53,57,46,55,45,53,51,46,57,45,54,57,53,45,49,49,55,46,52,99,45,53,50,55,46,53,45,53,50,45,53,55,55,46,54,45,54,53,46,53,45,54,50,55,46,54,45,49,55,57,99,45,52,54,46,50,45,49,48,53,46,57,45,52,54,46,50,45,49,48,53,55,44,48,45,49,49,54,50,46,57,99,53,48,45,49,49,51,46,54,44,57,56,46,50,45,49,50,55,46,49,44,54,52,54,46,57,45,49,56,49,99,50,55,49,46,53,45,50,53,44,53,50,51,46,55,45,53,50,44,53,54,48,46,50,45,53,55,46,56,99,49,49,49,46,55,45,49,55,46,51,44,49,55,57,46,49,45,49,48,55,46,56,44,50,53,57,46,57,45,51,52,52,46,54,99,51,56,46,53,45,49,49,53,46,53,44,49,49,57,46,52,45,51,49,48,44,49,55,55,46,49,45,52,51,49,46,51,99,53,55,46,56,45,49,49,57,46,52,44,49,48,52,45,50,52,48,46,55,44,49,48,52,45,50,54,57,46,53,99,48,45,55,56,46,57,45,52,50,46,52,45,49,52,48,46,53,45,51,57,52,46,55,45,53,54,56,99,45,49,55,57,45,50,49,57,46,53,45,51,51,53,45,52,49,57,46,55,45,51,52,52,46,54,45,52,52,54,46,54,99,45,51,48,46,56,45,57,52,46,51,44,51,46,57,45,49,54,55,46,53,44,49,53,57,46,56,45,51,52,52,46,54,99,49,53,55,46,57,45,49,56,49,44,52,49,48,46,49,45,52,50,57,46,51,44,53,54,52,46,49,45,53,53,52,46,53,99,57,54,46,51,45,55,56,46,57,44,49,56,56,46,55,45,49,48,53,46,57,44,50,54,53,46,55,45,55,53,46,49,99,50,54,46,57,44,49,49,46,54,44,50,51,52,46,57,44,49,55,51,46,51,44,52,54,50,46,49,44,51,54,48,99,50,50,55,46,50,44,49,56,56,46,55,44,52,51,51,46,50,44,51,52,56,46,53,44,52,53,56,46,50,44,51,53,56,46,49,99,56,50,46,56,44,51,48,46,56,44,49,51,54,46,55,44,49,55,46,51,44,51,53,52,46,51,45,56,54,46,54,99,49,49,57,46,52,45,53,55,46,56,44,51,48,56,45,49,51,54,46,55,44,52,49,57,46,55,45,49,55,53,46,50,99,49,49,49,46,55,45,51,56,46,53,44,50,50,49,46,52,45,56,50,46,56,44,50,52,52,46,53,45,57,56,46,50,99,57,52,46,51,45,53,57,46,55,44,49,48,50,45,49,48,48,46,49,44,49,53,57,46,56,45,54,55,48,99,54,49,46,54,45,54,48,54,46,53,44,55,51,46,50,45,54,52,56,46,56,44,49,56,56,46,55,45,55,48,48,46,56,99,49,48,53,46,57,45,52,54,46,50,44,49,48,53,55,45,52,54,46,50,44,49,49,54,50,46,57,44,48,99,49,49,53,46,53,44,53,50,44,49,50,55,46,49,44,57,52,46,51,44,49,56,56,46,55,44,55,48,48,46,56,99,53,55,46,56,44,53,54,57,46,57,44,54,53,46,52,44,54,49,48,46,51,44,49,53,57,46,56,44,54,55,48,99,50,51,46,49,44,49,53,46,52,44,49,51,50,46,57,44,53,57,46,55,44,50,52,52,46,53,44,57,56,46,50,115,51,48,48,46,51,44,49,49,55,46,52,44,52,49,55,46,56,44,49,55,53,46,50,99,50,49,57,46,53,44,49,48,52,44,50,55,51,46,52,44,49,49,55,46,53,44,51,53,54,46,50,44,56,54,46,54,99,50,53,45,57,46,54,44,50,51,49,45,49,54,57,46,52,44,52,53,56,46,50,45,51,53,56,46,49,99,50,50,55,46,50,45,49,56,54,46,56,44,52,51,53,46,49,45,51,52,56,46,53,44,52,54,50,46,49,45,51,54,48,99,55,55,45,50,56,46,57,44,49,54,57,46,52,45,51,46,57,44,50,54,53,46,55,44,55,53,46,49,99,49,53,50,46,49,44,49,50,49,46,51,44,52,52,50,46,56,44,52,49,48,46,49,44,53,56,51,46,52,44,53,55,55,46,54,99,49,52,48,46,54,44,49,54,51,46,54,44,49,55,51,46,51,44,50,52,50,46,54,44,49,51,54,46,55,44,51,51,51,46,49,99,45,49,49,46,54,44,50,55,45,49,55,51,46,51,44,50,51,52,46,57,45,51,54,48,44,52,54,50,46,49,99,45,49,56,56,46,55,44,50,50,55,46,50,45,51,52,56,46,53,44,52,51,51,46,50,45,51,53,56,46,49,44,52,53,56,46,50,99,45,51,48,46,56,44,56,50,46,56,45,49,55,46,51,44,49,51,54,46,55,44,56,54,46,54,44,51,53,54,46,50,99,53,55,46,56,44,49,49,55,46,52,44,49,51,56,46,54,44,51,49,49,46,57,44,49,55,55,46,49,44,52,50,55,46,52,99,56,48,46,57,44,50,51,54,46,56,44,49,52,56,46,51,44,51,50,55,46,51,44,50,53,57,46,57,44,51,52,52,46,54,99,51,54,46,54,44,53,46,56,44,50,56,56,46,56,44,51,50,46,55,44,53,54,50,46,50,44,53,57,46,55,99,51,48,56,44,50,56,46,57,44,53,49,55,46,57,44,53,57,46,55,44,53,53,48,46,54,44,55,55,99,51,48,46,56,44,49,53,46,52,44,55,49,46,50,44,53,57,46,55,44,57,48,46,53,44,49,48,48,46,49,99,51,50,46,56,44,54,53,46,52,44,51,54,46,54,44,49,50,51,46,50,44,51,52,46,55,44,53,55,51,46,55,99,48,44,53,54,50,46,50,45,49,49,46,53,44,54,50,55,46,54,45,49,49,53,46,53,44,54,56,55,46,51,99,45,52,54,46,50,44,50,55,45,49,56,56,46,55,44,52,56,46,49,45,54,49,50,46,50,44,57,48,46,53,99,45,53,55,51,46,55,44,53,57,46,55,45,54,49,52,46,50,44,54,55,46,52,45,54,55,51,46,56,44,49,54,49,46,55,99,45,49,53,46,52,44,50,51,46,49,45,53,57,46,55,44,49,51,50,46,57,45,57,56,46,50,44,50,52,52,46,53,115,45,49,49,55,46,52,44,51,48,48,46,51,45,49,55,53,46,50,44,52,49,55,46,56,99,45,53,55,46,56,44,49,49,57,46,52,45,49,48,52,44,50,52,48,46,55,45,49,48,52,44,50,55,49,46,53,99,48,44,56,48,46,57,44,52,48,46,52,44,49,51,56,46,54,44,51,57,52,46,55,44,53,54,57,46,57,99,49,56,49,44,50,49,57,46,53,44,51,51,53,44,52,49,57,46,55,44,51,52,52,46,54,44,52,52,54,46,55,99,51,48,46,56,44,57,52,46,51,45,51,46,57,44,49,54,55,46,53,45,49,53,57,46,56,44,51,52,52,46,54,99,45,49,53,55,46,57,44,49,56,49,45,52,49,48,46,49,44,52,50,57,46,51,45,53,54,52,46,49,44,53,53,52,46,53,99,45,57,54,46,51,44,55,56,46,57,45,49,56,56,46,55,44,49,48,52,45,50,54,53,46,55,44,55,53,46,49,99,45,50,55,45,49,49,46,54,45,50,51,52,46,57,45,49,55,51,46,51,45,52,54,50,46,49,45,51,54,48,99,45,50,50,55,46,50,45,49,56,56,46,55,45,52,51,51,46,50,45,51,52,56,46,53,45,52,53,56,46,50,45,51,53,56,46,49,99,45,56,48,46,57,45,51,48,46,56,45,49,51,48,46,57,45,49,57,46,50,45,51,55,49,46,54,44,57,54,46,51,99,45,49,51,48,46,57,44,54,49,46,54,45,51,50,53,46,52,44,49,52,50,46,53,45,52,51,49,46,51,44,49,55,55,46,49,99,45,50,49,55,46,53,44,55,49,46,50,45,51,48,56,44,49,52,48,46,53,45,51,50,53,46,52,44,50,53,48,46,51,99,45,53,46,56,44,51,54,46,54,45,51,50,46,55,44,50,56,56,46,56,45,53,55,46,56,44,53,54,48,46,51,99,45,53,51,46,57,44,53,53,48,46,54,45,54,55,46,52,44,53,57,54,46,56,45,49,56,49,44,54,52,53,67,53,53,48,50,46,51,44,53,48,49,56,46,55,44,52,56,48,55,46,51,44,53,48,51,54,44,52,53,54,56,46,53,44,53,48,49,49,122,32,77,53,52,54,51,46,56,44,49,56,57,55,46,56,99,53,48,50,46,53,45,49,50,55,46,49,44,57,53,52,46,57,45,52,57,52,46,56,44,49,49,56,52,45,57,54,48,46,55,99,52,52,54,46,55,45,57,49,52,46,53,44,55,56,46,57,45,50,48,49,49,46,57,45,56,50,52,45,50,52,54,48,46,53,99,45,49,48,53,51,46,49,45,53,50,49,46,56,45,50,51,48,56,46,52,44,53,50,45,50,54,48,52,46,57,44,49,49,56,57,46,56,99,45,55,49,46,50,44,50,55,55,46,50,45,55,49,46,50,44,54,50,57,46,54,44,48,44,57,48,52,46,57,99,49,57,50,46,53,44,55,51,55,46,52,44,56,49,52,46,52,44,49,50,56,52,46,50,44,49,53,54,57,46,49,44,49,51,55,54,46,54,67,52,57,55,52,46,56,44,49,57,55,49,44,53,50,53,53,46,57,44,49,57,52,57,46,56,44,53,52,54,51,46,56,44,49,56,57,55,46,56,122,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,93,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,115,118,103,92,34,44,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,120,109,108,110,115,58,32,92,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,92,34,44,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,92,34,50,52,92,34,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,92,34,50,52,92,34,44,92,110,32,32,32,32,32,32,32,32,118,105,101,119,66,111,120,58,32,92,34,48,32,48,32,50,52,32,50,52,92,34,44,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,102,105,108,108,58,32,92,34,99,117,114,114,101,110,116,67,111,108,111,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,100,58,32,92,34,77,49,50,32,48,99,45,54,46,54,50,55,32,48,45,49,50,32,53,46,51,55,51,45,49,50,32,49,50,115,53,46,51,55,51,32,49,50,32,49,50,32,49,50,32,49,50,45,53,46,51,55,51,32,49,50,45,49,50,45,53,46,51,55,51,45,49,50,45,49,50,45,49,50,122,109,49,32,49,54,46,48,53,55,118,45,51,46,48,53,55,104,50,46,57,57,52,99,45,46,48,53,57,32,49,46,49,52,51,45,46,50,49,50,32,50,46,50,52,45,46,52,53,54,32,51,46,50,55,57,45,46,56,50,51,45,46,49,50,45,49,46,54,55,52,45,46,49,56,56,45,50,46,53,51,56,45,46,50,50,50,122,109,49,46,57,53,55,32,50,46,49,54,50,99,45,46,52,57,57,32,49,46,51,51,45,49,46,49,53,57,32,50,46,52,57,55,45,49,46,57,53,55,32,51,46,52,53,54,118,45,51,46,54,50,99,46,54,54,54,46,48,50,56,32,49,46,51,49,57,46,48,56,49,32,49,46,57,53,55,46,49,54,52,122,109,45,49,46,57,53,55,45,55,46,50,49,57,118,45,51,46,48,49,53,99,46,56,54,56,45,46,48,51,52,32,49,46,55,50,49,45,46,49,48,51,32,50,46,53,52,56,45,46,50,50,52,46,50,51,56,32,49,46,48,50,55,46,51,56,57,32,50,46,49,49,49,46,52,52,54,32,51,46,50,51,57,104,45,50,46,57,57,52,122,109,48,45,53,46,48,49,52,118,45,51,46,54,54,49,99,46,56,48,54,46,57,54,57,32,49,46,52,55,49,32,50,46,49,53,32,49,46,57,55,49,32,51,46,52,57,54,45,46,54,52,50,46,48,56,52,45,49,46,51,46,49,51,55,45,49,46,57,55,49,46,49,54,53,122,109,50,46,55,48,51,45,51,46,50,54,55,99,49,46,50,51,55,46,52,57,54,32,50,46,51,53,52,32,49,46,50,50,56,32,51,46,50,57,32,50,46,49,52,54,45,46,54,52,50,46,50,51,52,45,49,46,51,49,49,46,52,52,50,45,50,46,48,49,57,46,54,48,55,45,46,51,52,52,45,46,57,57,50,45,46,55,55,53,45,49,46,57,49,45,49,46,50,55,49,45,50,46,55,53,51,122,109,45,55,46,50,52,49,32,49,51,46,53,54,99,45,46,50,52,52,45,49,46,48,51,57,45,46,51,57,56,45,50,46,49,51,54,45,46,52,53,54,45,51,46,50,55,57,104,50,46,57,57,52,118,51,46,48,53,55,99,45,46,56,54,53,46,48,51,52,45,49,46,55,49,52,46,49,48,50,45,50,46,53,51,56,46,50,50,50,122,109,50,46,53,51,56,32,49,46,55,55,54,118,51,46,54,50,99,45,46,55,57,56,45,46,57,53,57,45,49,46,52,53,56,45,50,46,49,50,54,45,49,46,57,53,55,45,51,46,52,53,54,46,54,51,56,45,46,48,56,51,32,49,46,50,57,49,45,46,49,51,54,32,49,46,57,53,55,45,46,49,54,52,122,109,45,50,46,57,57,52,45,55,46,48,53,53,99,46,48,53,55,45,49,46,49,50,56,46,50,48,55,45,50,46,50,49,50,46,52,52,54,45,51,46,50,51,57,46,56,50,55,46,49,50,49,32,49,46,54,56,46,49,57,32,50,46,53,52,56,46,50,50,52,118,51,46,48,49,53,104,45,50,46,57,57,52,122,109,49,46,48,50,52,45,53,46,49,55,57,99,46,53,45,49,46,51,52,54,32,49,46,49,54,53,45,50,46,53,50,55,32,49,46,57,55,45,51,46,52,57,54,118,51,46,54,54,49,99,45,46,54,55,49,45,46,48,50,56,45,49,46,51,50,57,45,46,48,56,49,45,49,46,57,55,45,46,49,54,53,122,109,45,50,46,48,48,53,45,46,51,53,99,45,46,55,48,56,45,46,49,54,53,45,49,46,51,55,55,45,46,51,55,51,45,50,46,48,49,56,45,46,54,48,55,46,57,51,55,45,46,57,49,56,32,50,46,48,53,51,45,49,46,54,53,32,51,46,50,57,45,50,46,49,52,54,45,46,52,57,54,46,56,52,52,45,46,57,50,55,32,49,46,55,54,50,45,49,46,50,55,50,32,50,46,55,53,51,122,109,45,46,53,52,57,32,49,46,57,49,56,99,45,46,50,54,52,32,49,46,49,53,49,45,46,52,51,52,32,50,46,51,54,45,46,52,57,50,32,51,46,54,49,49,104,45,51,46,57,51,51,99,46,49,54,53,45,49,46,54,53,56,46,55,51,57,45,51,46,49,57,55,32,49,46,54,49,55,45,52,46,53,49,56,46,56,56,46,51,54,49,32,49,46,56,49,54,46,54,55,32,50,46,56,48,56,46,57,48,55,122,109,46,48,48,57,32,57,46,50,54,50,99,45,46,57,56,56,46,50,51,54,45,49,46,57,50,46,53,52,50,45,50,46,55,57,55,46,57,45,46,56,57,45,49,46,51,50,56,45,49,46,52,55,49,45,50,46,56,55,57,45,49,46,54,51,55,45,52,46,53,53,49,104,51,46,57,51,52,99,46,48,53,56,32,49,46,50,54,53,46,50,51,49,32,50,46,52,56,56,46,53,32,51,46,54,53,49,122,109,46,53,53,51,32,49,46,57,49,55,99,46,51,52,50,46,57,55,54,46,55,54,56,32,49,46,56,56,49,32,49,46,50,53,55,32,50,46,55,49,50,45,49,46,50,50,51,45,46,52,57,45,50,46,51,50,54,45,49,46,50,49,49,45,51,46,50,53,54,45,50,46,49,49,53,46,54,51,54,45,46,50,50,57,32,49,46,50,57,57,45,46,52,51,53,32,49,46,57,57,57,45,46,53,57,55,122,109,57,46,57,50,52,32,48,99,46,55,46,49,54,51,32,49,46,51,54,50,46,51,54,55,32,49,46,57,57,57,46,53,57,55,45,46,57,51,49,46,57,48,51,45,50,46,48,51,52,32,49,46,54,50,53,45,51,46,50,53,55,32,50,46,49,49,54,46,52,56,57,45,46,56,51,50,46,57,49,53,45,49,46,55,51,55,32,49,46,50,53,56,45,50,46,55,49,51,122,109,46,53,53,51,45,49,46,57,49,55,99,46,50,55,45,49,46,49,54,51,46,52,52,50,45,50,46,51,56,54,46,53,48,49,45,51,46,54,53,49,104,51,46,57,51,52,99,45,46,49,54,55,32,49,46,54,55,50,45,46,55,52,56,32,51,46,50,50,51,45,49,46,54,51,56,32,52,46,53,53,49,45,46,56,55,55,45,46,51,53,56,45,49,46,56,49,45,46,54,54,52,45,50,46,55,57,55,45,46,57,122,109,46,53,48,49,45,53,46,54,53,49,99,45,46,48,53,56,45,49,46,50,53,49,45,46,50,50,57,45,50,46,52,54,45,46,52,57,50,45,51,46,54,49,49,46,57,57,50,45,46,50,51,55,32,49,46,57,50,57,45,46,53,52,54,32,50,46,56,48,57,45,46,57,48,55,46,56,55,55,32,49,46,51,50,49,32,49,46,52,53,49,32,50,46,56,54,32,49,46,54,49,54,32,52,46,53,49,56,104,45,51,46,57,51,51,122,92,34,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,93,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,98,54,101,100,54,54,56,50,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,98,54,101,100,54,54,56,50,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,115,118,103,92,34,44,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,120,109,108,110,115,58,32,92,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,92,34,44,92,110,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,92,34,50,55,46,56,54,56,48,54,57,109,109,92,34,44,92,110,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,92,34,55,46,54,52,52,54,54,55,49,109,109,92,34,44,92,110,32,32,32,32,32,32,32,32,118,105,101,119,66,111,120,58,32,92,34,48,32,48,32,50,55,46,56,54,56,48,54,57,32,55,46,54,52,52,54,54,55,49,92,34,44,92,110,32,32,32,32,32,32,125,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,34,103,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,116,114,97,110,115,102,111,114,109,58,32,92,34,116,114,97,110,115,108,97,116,101,40,45,52,46,53,48,49,56,51,49,51,44,45,52,46,49,56,52,57,55,57,51,41,92,34,32,125,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,92,34,103,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,108,58,32,92,34,99,117,114,114,101,110,116,67,111,108,111,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,102,105,108,108,45,111,112,97,99,105,116,121,92,34,58,32,92,34,49,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,114,111,107,101,58,32,92,34,110,111,110,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,116,114,111,107,101,45,119,105,100,116,104,92,34,58,32,92,34,48,46,50,54,52,53,56,51,51,50,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,92,34,115,116,114,111,107,101,45,119,105,100,116,104,92,34,58,32,92,34,48,46,50,54,52,53,56,51,51,50,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,58,32,92,34,109,32,54,46,51,49,53,51,50,57,54,44,49,49,46,56,50,57,54,52,54,32,113,32,45,48,46,55,55,49,55,48,49,52,44,48,32,45,49,46,56,49,51,52,57,56,51,44,45,48,46,51,51,55,54,49,57,32,118,32,45,48,46,57,49,54,51,57,53,32,113,32,49,46,48,49,50,56,53,56,49,44,48,46,53,49,49,50,53,50,32,49,46,56,48,51,56,53,50,44,48,46,53,49,49,50,53,50,32,48,46,53,54,52,51,48,54,55,44,48,32,48,46,57,48,49,57,50,54,44,45,48,46,50,51,54,51,51,52,32,48,46,51,51,55,54,49,57,52,44,45,48,46,50,51,54,51,51,51,32,48,46,51,51,55,54,49,57,52,44,45,48,46,54,51,49,56,51,32,48,44,45,48,46,51,52,50,52,52,50,56,32,45,48,46,50,56,52,53,54,52,57,44,45,48,46,53,52,57,56,51,55,54,32,81,32,54,46,57,56,48,57,50,50,44,57,46,52,53,54,54,54,52,53,32,54,46,51,54,51,53,54,48,57,44,57,46,51,50,54,52,51,57,57,32,76,32,53,46,57,57,50,49,55,57,54,44,57,46,50,52,57,50,54,57,56,32,81,32,53,46,50,51,48,49,50,52,53,44,57,46,48,57,52,57,50,57,53,32,52,46,56,55,51,50,49,50,54,44,56,46,55,52,50,56,52,48,55,32,52,46,53,50,49,49,50,51,56,44,56,46,51,56,53,57,50,56,56,32,52,46,53,50,49,49,50,51,56,44,55,46,55,55,51,51,57,48,56,32,113,32,48,44,45,48,46,55,55,54,53,50,52,53,32,48,46,53,51,48,53,52,52,55,44,45,49,46,49,57,54,49,51,55,50,32,48,46,53,51,48,53,52,52,55,44,45,48,46,52,49,57,54,49,50,54,32,49,46,53,48,57,54,52,48,57,44,45,48,46,52,49,57,54,49,50,54,32,48,46,56,50,57,53,55,57,44,48,32,49,46,54,48,54,49,48,51,54,44,48,46,51,49,56,51,50,54,56,32,86,32,55,46,51,52,52,49,51,49,57,32,81,32,55,46,52,49,48,49,56,48,57,44,54,46,57,48,48,52,48,51,54,32,54,46,53,56,53,52,50,53,49,44,54,46,57,48,48,52,48,51,54,32,113,32,45,49,46,49,54,55,49,57,56,52,44,48,32,45,49,46,49,54,55,49,57,56,52,44,48,46,55,57,53,56,49,55,49,32,48,44,48,46,50,54,48,52,52,57,50,32,48,46,49,48,49,50,56,53,56,44,48,46,52,49,52,55,56,57,53,32,48,46,49,48,49,50,56,53,56,44,48,46,49,52,57,53,49,55,49,32,48,46,51,56,53,56,53,48,55,44,48,46,50,53,53,54,50,54,49,32,48,46,50,56,52,53,54,52,57,44,48,46,49,48,49,50,56,53,56,32,48,46,56,51,57,50,50,53,51,44,48,46,50,49,50,50,49,55,57,32,108,32,48,46,51,53,54,57,49,49,57,44,48,46,48,54,55,53,50,52,32,113,32,49,46,51,52,48,56,51,49,50,44,48,46,50,54,53,50,55,50,52,32,49,46,51,52,48,56,51,49,50,44,49,46,52,54,49,52,48,57,56,32,48,44,48,46,56,48,48,54,52,32,45,48,46,53,54,57,49,50,57,56,44,49,46,50,54,51,54,54,49,32,45,48,46,53,54,57,49,50,57,56,44,48,46,52,53,56,49,57,55,32,45,49,46,53,53,55,56,55,50,50,44,48,46,52,53,56,49,57,55,32,122,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,92,34,115,116,114,111,107,101,45,119,105,100,116,104,92,34,58,32,92,34,48,46,50,54,52,53,56,51,51,50,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,58,32,92,34,109,32,49,49,46,57,52,51,57,50,55,44,53,46,51,48,56,55,54,57,52,32,113,32,45,48,46,49,52,52,54,57,52,44,48,32,45,48,46,49,52,52,54,57,52,44,45,48,46,49,52,52,54,57,52,32,86,32,52,46,51,50,57,54,55,51,51,32,113,32,48,44,45,48,46,49,52,52,54,57,52,32,48,46,49,52,52,54,57,52,44,45,48,46,49,52,52,54,57,52,32,104,32,48,46,54,57,52,53,51,49,32,113,32,48,46,49,52,52,54,57,52,44,48,32,48,46,49,52,52,54,57,52,44,48,46,49,52,52,54,57,52,32,118,32,48,46,56,51,52,52,48,50,49,32,113,32,48,44,48,46,49,52,52,54,57,52,32,45,48,46,49,52,52,54,57,52,44,48,46,49,52,52,54,57,52,32,122,32,77,32,49,51,46,53,54,52,53,44,49,49,46,55,50,56,51,54,49,32,113,32,45,48,46,55,57,53,56,49,55,44,48,32,45,49,46,50,51,52,55,50,50,44,45,48,46,53,49,49,50,53,51,32,45,48,46,52,51,52,48,56,50,44,45,48,46,53,49,54,48,55,53,32,45,48,46,52,51,52,48,56,50,44,45,49,46,52,52,54,57,51,57,56,32,86,32,54,46,57,56,50,51,57,54,57,32,72,32,49,48,46,55,49,52,48,50,56,32,86,32,54,46,50,56,55,56,54,53,54,32,104,32,50,46,48,54,57,49,50,52,32,118,32,51,46,52,56,50,51,48,50,54,32,113,32,48,44,48,46,53,56,56,52,50,50,56,32,48,46,50,50,49,56,54,52,44,48,46,56,57,55,49,48,50,56,32,48,46,50,50,49,56,54,53,44,48,46,51,48,56,54,56,49,32,48,46,54,52,54,51,44,48,46,51,48,56,54,56,49,32,104,32,49,46,48,51,54,57,55,52,32,118,32,48,46,55,53,50,52,48,57,32,122,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,92,34,115,116,114,111,107,101,45,119,105,100,116,104,92,34,58,32,92,34,48,46,50,54,52,53,56,51,51,50,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,58,32,92,34,109,32,49,56,46,50,48,57,49,55,56,44,49,49,46,56,50,57,54,52,54,32,113,32,45,48,46,55,55,49,55,48,49,44,48,32,45,49,46,56,49,51,52,57,56,44,45,48,46,51,51,55,54,49,57,32,118,32,45,48,46,57,49,54,51,57,53,32,113,32,49,46,48,49,50,56,53,56,44,48,46,53,49,49,50,53,50,32,49,46,56,48,51,56,53,50,44,48,46,53,49,49,50,53,50,32,48,46,53,54,52,51,48,54,44,48,32,48,46,57,48,49,57,50,54,44,45,48,46,50,51,54,51,51,52,32,48,46,51,51,55,54,49,57,44,45,48,46,50,51,54,51,51,51,32,48,46,51,51,55,54,49,57,44,45,48,46,54,51,49,56,51,32,48,44,45,48,46,51,52,50,52,52,50,56,32,45,48,46,50,56,52,53,54,53,44,45,48,46,53,52,57,56,51,55,54,32,81,32,49,56,46,56,55,52,55,55,44,57,46,52,53,54,54,54,52,53,32,49,56,46,50,53,55,52,48,57,44,57,46,51,50,54,52,51,57,57,32,108,32,45,48,46,51,55,49,51,56,49,44,45,48,46,48,55,55,49,55,32,81,32,49,55,46,49,50,51,57,55,51,44,57,46,48,57,52,57,50,57,53,32,49,54,46,55,54,55,48,54,49,44,56,46,55,52,50,56,52,48,55,32,49,54,46,52,49,52,57,55,50,44,56,46,51,56,53,57,50,56,56,32,49,54,46,52,49,52,57,55,50,44,55,46,55,55,51,51,57,48,56,32,113,32,48,44,45,48,46,55,55,54,53,50,52,53,32,48,46,53,51,48,53,52,53,44,45,49,46,49,57,54,49,51,55,50,32,48,46,53,51,48,53,52,53,44,45,48,46,52,49,57,54,49,50,54,32,49,46,53,48,57,54,52,49,44,45,48,46,52,49,57,54,49,50,54,32,48,46,56,50,57,53,55,57,44,48,32,49,46,54,48,54,49,48,51,44,48,46,51,49,56,51,50,54,56,32,118,32,48,46,56,54,56,49,54,52,49,32,113,32,45,48,46,55,53,55,50,51,50,44,45,48,46,52,52,51,55,50,56,51,32,45,49,46,53,56,49,57,56,56,44,45,48,46,52,52,51,55,50,56,51,32,45,49,46,49,54,55,49,57,56,44,48,32,45,49,46,49,54,55,49,57,56,44,48,46,55,57,53,56,49,55,49,32,48,44,48,46,50,54,48,52,52,57,50,32,48,46,49,48,49,50,56,54,44,48,46,52,49,52,55,56,57,53,32,48,46,49,48,49,50,56,54,44,48,46,49,52,57,53,49,55,49,32,48,46,51,56,53,56,53,49,44,48,46,50,53,53,54,50,54,49,32,48,46,50,56,52,53,54,53,44,48,46,49,48,49,50,56,53,56,32,48,46,56,51,57,50,50,53,44,48,46,50,49,50,50,49,55,57,32,108,32,48,46,51,53,54,57,49,50,44,48,46,48,54,55,53,50,52,32,113,32,49,46,51,52,48,56,51,49,44,48,46,50,54,53,50,55,50,52,32,49,46,51,52,48,56,51,49,44,49,46,52,54,49,52,48,57,56,32,48,44,48,46,56,48,48,54,52,32,45,48,46,53,54,57,49,51,44,49,46,50,54,51,54,54,49,32,45,48,46,53,54,57,49,51,44,48,46,52,53,56,49,57,55,32,45,49,46,53,53,55,56,55,50,44,48,46,52,53,56,49,57,55,32,122,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,92,34,115,116,114,111,107,101,45,119,105,100,116,104,92,34,58,32,92,34,48,46,50,54,52,53,56,51,51,50,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,58,32,92,34,109,32,50,53,46,50,48,55,53,52,53,44,49,49,46,55,48,57,48,54,56,32,113,32,45,48,46,57,57,51,53,54,53,44,48,32,45,49,46,52,48,56,51,53,53,44,45,48,46,52,48,48,51,50,32,45,48,46,52,48,57,57,54,54,44,45,48,46,52,48,53,49,52,51,32,45,48,46,52,48,57,57,54,54,44,45,49,46,51,55,57,52,49,54,52,32,86,32,54,46,57,55,55,53,55,51,55,32,72,32,50,49,46,57,52,55,49,48,55,32,86,32,54,46,50,56,55,56,54,53,54,32,104,32,49,46,52,52,50,49,49,55,32,86,32,52,46,56,55,52,54,56,55,52,32,108,32,48,46,56,56,55,52,53,55,44,45,48,46,51,56,53,56,53,48,55,32,118,32,49,46,55,57,57,48,50,56,57,32,104,32,50,46,48,49,54,48,54,57,32,118,32,48,46,54,56,57,55,48,56,49,32,104,32,45,50,46,48,49,54,48,54,57,32,118,32,50,46,57,53,49,55,53,55,57,32,113,32,48,44,48,46,53,57,51,50,52,53,52,32,48,46,50,50,54,54,56,55,44,48,46,56,51,52,52,48,50,52,32,48,46,50,50,54,54,56,55,44,48,46,50,51,54,51,51,51,32,48,46,55,57,48,57,57,52,44,48,46,50,51,54,51,51,51,32,104,32,48,46,57,57,56,51,56,56,32,118,32,48,46,55,48,57,48,48,49,32,122,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,112,97,116,104,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,92,34,115,116,114,111,107,101,45,119,105,100,116,104,92,34,58,32,92,34,48,46,50,54,52,53,56,51,51,50,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,58,32,92,34,109,32,50,55,46,57,57,53,51,49,55,44,49,49,46,48,52,51,52,55,54,32,113,32,48,44,45,48,46,49,55,56,52,53,54,32,48,46,49,50,48,53,55,56,44,45,48,46,50,57,57,48,51,53,32,48,46,50,55,52,57,49,57,44,45,48,46,50,56,57,51,56,56,32,48,46,54,53,49,49,50,51,44,45,48,46,54,56,52,56,56,53,32,48,46,51,55,54,50,48,53,44,45,48,46,52,48,48,51,49,57,57,32,48,46,56,48,53,52,54,52,44,45,48,46,56,54,56,49,54,51,56,32,48,46,51,50,55,57,55,51,44,45,48,46,51,53,54,57,49,50,32,48,46,52,57,49,57,53,57,44,45,48,46,53,51,53,51,54,55,57,32,48,46,49,54,56,56,49,44,45,48,46,49,56,51,50,55,57,49,32,48,46,50,53,53,54,50,54,44,45,48,46,50,56,52,53,54,52,57,32,48,46,48,57,49,54,52,44,45,48,46,49,48,49,50,56,53,56,32,48,46,49,55,56,52,53,54,44,45,48,46,50,48,55,51,57,52,56,32,48,46,50,53,53,54,50,54,44,45,48,46,51,48,56,54,56,48,53,32,48,46,52,48,53,49,52,52,44,45,48,46,53,50,53,55,50,49,53,32,48,46,49,53,52,51,52,44,45,48,46,50,49,55,48,52,49,49,32,48,46,50,53,48,56,48,51,44,45,48,46,52,50,57,50,53,56,57,32,48,46,49,54,56,56,48,57,44,45,48,46,51,55,54,50,48,52,53,32,48,46,49,54,56,56,48,57,44,45,48,46,55,53,50,52,48,56,57,32,48,44,45,48,46,53,57,56,48,54,56,54,32,45,48,46,51,53,50,48,56,57,44,45,48,46,57,51,53,54,56,56,32,45,48,46,51,53,54,57,49,49,44,45,48,46,51,52,50,52,52,50,53,32,45,48,46,57,55,57,48,57,54,44,45,48,46,51,52,50,52,52,50,53,32,45,48,46,56,54,51,51,52,49,44,48,32,45,49,46,57,51,56,56,57,57,44,48,46,54,52,49,52,55,54,56,32,86,32,52,46,56,51,54,49,48,50,51,32,113,32,48,46,52,57,49,57,53,57,44,45,48,46,50,51,54,51,51,51,53,32,48,46,57,55,57,48,57,54,44,45,48,46,51,53,54,57,49,49,57,32,48,46,52,55,55,52,57,44,45,48,46,49,50,48,53,55,56,51,32,48,46,57,52,53,51,51,52,44,45,48,46,49,50,48,53,55,56,51,32,48,46,53,48,49,54,48,54,44,48,32,48,46,57,52,48,53,49,49,44,48,46,49,51,53,48,52,55,55,32,48,46,52,51,56,57,48,53,44,48,46,49,51,53,48,52,55,56,32,48,46,55,54,54,56,55,56,44,48,46,52,50,52,52,51,53,56,32,48,46,50,56,57,51,56,56,44,48,46,50,53,53,54,50,54,49,32,48,46,52,54,51,48,50,49,44,48,46,54,50,55,48,48,55,52,32,48,46,49,55,51,54,51,51,44,48,46,51,54,54,53,53,56,50,32,48,46,49,55,51,54,51,51,44,48,46,56,50,57,53,55,57,32,48,44,48,46,52,55,50,54,54,55,49,32,45,48,46,50,49,50,50,49,56,44,48,46,57,53,48,49,53,55,52,32,45,48,46,49,48,54,49,48,57,44,48,46,50,52,49,49,53,54,55,32,45,48,46,50,55,52,57,49,57,44,48,46,52,55,50,54,54,55,49,32,45,48,46,49,54,51,57,56,54,44,48,46,50,50,54,54,56,55,51,32,45,48,46,52,50,52,52,51,53,44,48,46,53,52,48,49,57,49,32,81,32,51,49,46,50,55,48,50,50,53,44,56,46,53,48,49,54,56,52,32,51,49,46,48,55,55,50,57,57,44,56,46,55,49,56,55,50,53,32,51,48,46,56,56,52,51,55,52,44,56,46,57,51,53,55,54,54,49,32,51,48,46,54,50,56,55,52,56,44,57,46,50,49,48,54,56,52,55,32,51,48,46,52,52,53,52,54,57,44,57,46,52,48,56,52,51,51,50,32,51,48,46,50,56,54,51,48,53,44,57,46,53,54,55,53,57,54,54,32,51,48,46,49,51,49,57,54,53,44,57,46,55,50,54,55,54,32,50,57,46,57,53,56,51,51,50,44,57,46,57,48,48,51,57,50,56,32,50,57,46,55,56,52,55,44,49,48,46,48,54,57,50,48,51,32,50,57,46,53,53,56,48,49,50,44,49,48,46,51,48,48,55,49,51,32,50,57,46,51,51,54,49,52,56,44,49,48,46,53,50,55,52,32,50,57,46,48,49,50,57,57,56,44,49,48,46,56,54,57,56,52,51,32,104,32,51,46,51,53,54,57,48,49,32,118,32,48,46,56,49,57,57,51,50,32,104,32,45,52,46,51,55,52,53,56,50,32,122,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,93,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,83,105,115,116,50,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,54,48,57,53,98,97,56,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,102,54,48,57,53,98,97,56,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,33,95,118,109,46,99,111,110,102,105,103,76,111,97,100,105,110,103,92,110,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,99,111,110,116,97,105,110,101,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,92,34,109,97,114,103,105,110,45,108,101,102,116,92,34,58,32,92,34,97,117,116,111,92,34,44,32,92,34,109,97,114,103,105,110,45,114,105,103,104,116,92,34,58,32,92,34,97,117,116,111,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,45,116,105,116,108,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,99,40,92,34,71,101,97,114,73,99,111,110,92,34,41,44,32,95,118,109,46,95,118,40,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,99,111,110,102,105,103,92,34,41,41,32,43,32,92,34,32,92,34,41,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,112,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,99,111,110,102,105,103,68,101,115,99,114,105,112,116,105,111,110,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,45,98,111,100,121,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,104,52,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,100,105,115,112,108,97,121,79,112,116,105,111,110,115,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,108,97,98,101,108,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,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,95,99,40,92,34,76,97,110,103,117,97,103,101,73,99,111,110,92,34,41,44,92,110,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,95,99,40,92,110,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,92,34,115,112,97,110,92,34,44,92,110,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,123,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,92,34,118,101,114,116,105,99,97,108,45,97,108,105,103,110,92,34,58,32,92,34,109,105,100,100,108,101,92,34,32,125,32,125,44,92,110,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,91,95,118,109,46,95,118,40,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,108,97,110,103,92,34,41,41,41,93,92,110,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,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,115,101,108,101,99,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,111,112,116,105,111,110,115,58,32,95,118,109,46,108,97,110,103,79,112,116,105,111,110,115,44,32,118,97,108,117,101,58,32,95,118,109,46,111,112,116,76,97,110,103,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,76,97,110,103,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,108,97,98,101,108,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,116,104,101,109,101,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,115,101,108,101,99,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,112,116,105,111,110,115,58,32,95,118,109,46,116,104,101,109,101,79,112,116,105,111,110,115,44,92,110,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,118,97,108,117,101,58,32,95,118,109,46,111,112,116,84,104,101,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,84,104,101,109,101,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,108,97,98,101,108,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,100,105,115,112,108,97,121,77,111,100,101,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,115,101,108,101,99,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,112,116,105,111,110,115,58,32,95,118,109,46,100,105,115,112,108,97,121,77,111,100,101,79,112,116,105,111,110,115,44,92,110,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,118,97,108,117,101,58,32,95,118,109,46,111,112,116,68,105,115,112,108,97,121,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,68,105,115,112,108,97,121,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,108,97,98,101,108,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,99,111,108,117,109,110,115,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,115,101,108,101,99,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,112,116,105,111,110,115,58,32,95,118,109,46,99,111,108,117,109,110,115,79,112,116,105,111,110,115,44,92,110,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,118,97,108,117,101,58,32,95,118,109,46,111,112,116,67,111,108,117,109,110,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,67,111,108,117,109,110,115,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,104,101,105,103,104,116,58,32,92,34,49,48,112,120,92,34,32,125,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,97,116,116,114,115,58,32,123,32,99,104,101,99,107,101,100,58,32,95,118,109,46,111,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,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,95,118,109,46,95,118,40,92,110,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,92,34,32,92,34,32,43,92,110,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,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,108,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,92,34,41,41,32,43,92,110,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,92,34,32,92,34,92,110,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,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,97,116,116,114,115,58,32,123,32,99,104,101,99,107,101,100,58,32,95,118,109,46,111,112,116,72,105,100,101,76,101,103,97,99,121,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,72,105,100,101,76,101,103,97,99,121,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,104,105,100,101,76,101,103,97,99,121,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,97,116,116,114,115,58,32,123,32,99,104,101,99,107,101,100,58,32,95,118,109,46,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,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,95,118,109,46,95,118,40,92,110,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,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,117,112,100,97,116,101,77,105,109,101,77,97,112,92,34,41,41,32,43,32,92,34,32,92,34,92,110,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,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,97,116,116,114,115,58,32,123,32,99,104,101,99,107,101,100,58,32,95,118,109,46,111,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,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,95,118,109,46,95,118,40,92,110,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,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,117,115,101,68,97,116,101,80,105,99,107,101,114,92,34,41,41,32,43,32,92,34,32,92,34,92,110,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,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,97,116,116,114,115,58,32,123,32,99,104,101,99,107,101,100,58,32,95,118,109,46,111,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,115,105,109,112,108,101,76,105,103,104,116,98,111,120,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,97,116,116,114,115,58,32,123,32,99,104,101,99,107,101,100,58,32,95,118,109,46,111,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,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,95,118,109,46,95,118,40,92,110,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,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,115,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,92,34,41,41,32,43,32,92,34,32,92,34,92,110,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,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,114,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,104,52,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,115,101,97,114,99,104,79,112,116,105,111,110,115,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,97,116,116,114,115,58,32,123,32,99,104,101,99,107,101,100,58,32,95,118,109,46,111,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,104,105,100,101,68,117,112,108,105,99,97,116,101,115,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,97,116,116,114,115,58,32,123,32,99,104,101,99,107,101,100,58,32,95,118,109,46,111,112,116,72,105,103,104,108,105,103,104,116,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,72,105,103,104,108,105,103,104,116,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,104,105,103,104,108,105,103,104,116,92,34,41,41,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,97,116,116,114,115,58,32,123,32,99,104,101,99,107,101,100,58,32,95,118,109,46,111,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,116,97,103,79,114,79,112,101,114,97,116,111,114,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,97,116,116,114,115,58,32,123,32,99,104,101,99,107,101,100,58,32,95,118,109,46,111,112,116,70,117,122,122,121,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,70,117,122,122,121,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,102,117,122,122,121,92,34,41,41,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,97,116,116,114,115,58,32,123,32,99,104,101,99,107,101,100,58,32,95,118,109,46,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,83,101,97,114,99,104,73,110,80,97,116,104,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,115,101,97,114,99,104,73,110,80,97,116,104,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,97,116,116,114,115,58,32,123,32,99,104,101,99,107,101,100,58,32,95,118,109,46,111,112,116,83,117,103,103,101,115,116,80,97,116,104,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,83,117,103,103,101,115,116,80,97,116,104,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,115,117,103,103,101,115,116,80,97,116,104,92,34,41,41,32,43,32,92,34,32,92,34,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,114,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,108,97,98,101,108,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,102,114,97,103,109,101,110,116,83,105,122,101,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,105,110,112,117,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,118,97,108,117,101,58,32,95,118,109,46,111,112,116,70,114,97,103,109,101,110,116,83,105,122,101,44,92,110,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,115,116,101,112,58,32,92,34,49,48,92,34,44,92,110,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,116,121,112,101,58,32,92,34,110,117,109,98,101,114,92,34,44,92,110,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,109,105,110,58,32,92,34,48,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,70,114,97,103,109,101,110,116,83,105,122,101,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,108,97,98,101,108,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,114,101,115,117,108,116,83,105,122,101,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,105,110,112,117,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,118,97,108,117,101,58,32,95,118,109,46,111,112,116,82,101,115,117,108,116,83,105,122,101,44,92,110,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,116,121,112,101,58,32,92,34,110,117,109,98,101,114,92,34,44,92,110,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,109,105,110,58,32,92,34,49,48,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,82,101,115,117,108,116,83,105,122,101,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,108,97,98,101,108,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,113,117,101,114,121,77,111,100,101,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,115,101,108,101,99,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,112,116,105,111,110,115,58,32,95,118,109,46,113,117,101,114,121,77,111,100,101,79,112,116,105,111,110,115,44,92,110,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,118,97,108,117,101,58,32,95,118,109,46,111,112,116,81,117,101,114,121,77,111,100,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,81,117,101,114,121,77,111,100,101,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,108,97,98,101,108,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,115,108,105,100,101,68,117,114,97,116,105,111,110,92,34,41,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,105,110,112,117,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,118,97,108,117,101,58,32,95,118,109,46,111,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,44,92,110,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,116,121,112,101,58,32,92,34,110,117,109,98,101,114,92,34,44,92,110,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,109,105,110,58,32,92,34,49,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,108,97,98,101,108,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,118,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,92,34,41,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,105,110,112,117,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,118,97,108,117,101,58,32,95,118,109,46,111,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,44,92,110,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,116,121,112,101,58,32,92,34,110,117,109,98,101,114,92,34,44,92,110,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,109,105,110,58,32,92,34,53,48,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,104,52,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,116,45,51,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,116,114,101,101,109,97,112,79,112,116,105,111,110,115,92,34,41,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,108,97,98,101,108,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,116,114,101,101,109,97,112,84,121,112,101,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,115,101,108,101,99,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,118,97,108,117,101,58,32,95,118,109,46,111,112,116,84,114,101,101,109,97,112,84,121,112,101,44,92,110,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,112,116,105,111,110,115,58,32,95,118,109,46,116,114,101,101,109,97,112,84,121,112,101,79,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,84,114,101,101,109,97,112,84,121,112,101,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,108,97,98,101,108,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,116,114,101,101,109,97,112,84,105,108,105,110,103,92,34,41,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,115,101,108,101,99,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,118,97,108,117,101,58,32,95,118,109,46,111,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,44,92,110,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,112,116,105,111,110,115,58,32,95,118,109,46,116,114,101,101,109,97,112,84,105,108,105,110,103,79,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,108,97,98,101,108,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,116,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,92,34,41,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,105,110,112,117,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,118,97,108,117,101,58,32,95,118,109,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,44,92,110,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,116,121,112,101,58,32,92,34,110,117,109,98,101,114,92,34,44,92,110,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,109,105,110,58,32,92,34,49,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,108,97,98,101,108,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,116,114,101,101,109,97,112,83,105,122,101,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,115,101,108,101,99,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,118,97,108,117,101,58,32,95,118,109,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,44,92,110,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,112,116,105,111,110,115,58,32,95,118,109,46,116,114,101,101,109,97,112,83,105,122,101,79,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,84,114,101,101,109,97,112,83,105,122,101,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,32,61,61,61,32,92,34,99,117,115,116,111,109,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,91,92,110,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,95,99,40,92,34,98,45,102,111,114,109,45,105,110,112,117,116,92,34,44,32,123,92,110,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,97,116,116,114,115,58,32,123,32,116,121,112,101,58,32,92,34,110,117,109,98,101,114,92,34,44,32,109,105,110,58,32,92,34,48,92,34,44,32,115,116,101,112,58,32,92,34,49,48,92,34,32,125,44,92,110,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,125,41,44,92,110,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,95,99,40,92,34,98,45,102,111,114,109,45,105,110,112,117,116,92,34,44,32,123,92,110,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,97,116,116,114,115,58,32,123,32,116,121,112,101,58,32,92,34,110,117,109,98,101,114,92,34,44,32,109,105,110,58,32,92,34,48,92,34,44,32,115,116,101,112,58,32,92,34,49,48,92,34,32,125,44,92,110,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,125,41,44,92,110,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,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,108,97,98,101,108,92,34,44,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,111,112,116,46,116,114,101,101,109,97,112,67,111,108,111,114,92,34,41,41,41,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,102,111,114,109,45,115,101,108,101,99,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,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,118,97,108,117,101,58,32,95,118,109,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,44,92,110,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,112,116,105,111,110,115,58,32,95,118,109,46,116,114,101,101,109,97,112,67,111,108,111,114,79,112,116,105,111,110,115,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,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,58,32,123,32,105,110,112,117,116,58,32,95,118,109,46,115,101,116,79,112,116,84,114,101,101,109,97,112,67,111,108,111,114,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,50,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,98,117,116,116,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,116,45,52,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,118,97,114,105,97,110,116,58,32,92,34,100,97,110,103,101,114,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,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,114,101,116,117,114,110,32,95,118,109,46,111,110,82,101,115,101,116,67,108,105,99,107,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,99,111,110,102,105,103,82,101,115,101,116,92,34,41,41,41,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,108,111,97,100,105,110,103,92,110,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,98,45,99,97,114,100,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,116,45,52,92,34,32,125,44,32,91,95,99,40,92,34,80,114,101,108,111,97,100,101,114,92,34,41,93,44,32,49,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,99,40,92,34,68,101,98,117,103,73,110,102,111,92,34,41,44,92,110,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,41,92,110,32,32,32,32,58,32,95,118,109,46,95,101,40,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,123,92,110,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,99,111,110,116,97,105,110,101,114,92,34,44,92,110,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,92,34,109,97,114,103,105,110,45,108,101,102,116,92,34,58,32,92,34,97,117,116,111,92,34,44,32,92,34,109,97,114,103,105,110,45,114,105,103,104,116,92,34,58,32,92,34,97,117,116,111,92,34,32,125,44,92,110,32,32,32,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,118,109,46,108,111,97,100,105,110,103,92,110,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,80,114,101,108,111,97,100,101,114,92,34,41,92,110,32,32,32,32,32,32,32,32,58,32,33,95,118,109,46,108,111,97,100,105,110,103,32,38,38,32,95,118,109,46,102,111,117,110,100,92,110,32,32,32,32,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,45,116,105,116,108,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,97,116,116,114,115,58,32,123,32,116,105,116,108,101,58,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,110,97,109,101,32,43,32,95,118,109,46,101,120,116,40,95,118,109,46,100,111,99,41,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,32,92,34,32,43,32,95,118,109,46,95,115,40,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,110,97,109,101,32,43,32,95,118,109,46,101,120,116,40,95,118,109,46,100,111,99,41,41,32,43,32,92,34,32,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,58,32,92,34,114,101,108,97,116,105,118,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,109,97,114,103,105,110,45,108,101,102,116,92,34,58,32,92,34,97,117,116,111,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,109,97,114,103,105,110,45,114,105,103,104,116,92,34,58,32,92,34,97,117,116,111,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,116,101,120,116,45,97,108,105,103,110,92,34,58,32,92,34,99,101,110,116,101,114,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,70,117,108,108,84,104,117,109,98,110,97,105,108,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,100,111,99,58,32,95,118,109,46,100,111,99,44,32,92,34,115,109,97,108,108,45,98,97,100,103,101,92,34,58,32,102,97,108,115,101,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,112,114,111,112,115,46,105,115,65,117,100,105,111,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,97,117,100,105,111,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,102,58,32,92,34,97,117,100,105,111,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,97,117,100,105,111,45,102,105,116,32,102,105,116,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,108,111,97,100,58,32,92,34,110,111,110,101,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,114,111,108,115,58,32,92,34,92,34,44,92,110,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,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,109,105,109,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,114,99,58,32,92,34,102,47,92,34,32,43,32,95,118,109,46,100,111,99,46,95,105,100,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,32,63,32,95,99,40,92,34,73,110,102,111,84,97,98,108,101,92,34,44,32,123,32,97,116,116,114,115,58,32,123,32,100,111,99,58,32,95,118,109,46,100,111,99,32,125,32,125,41,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,99,111,110,116,101,110,116,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,100,105,118,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,99,111,110,116,101,110,116,45,100,105,118,92,34,32,125,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,100,111,99,46,95,115,111,117,114,99,101,46,99,111,110,116,101,110,116,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,58,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,99,97,114,100,45,116,105,116,108,101,92,34,44,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,102,105,108,101,80,97,103,101,46,110,111,116,70,111,117,110,100,92,34,41,41,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,51,56,55,53,50,100,101,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,49,51,56,55,53,50,100,101,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,99,111,110,116,97,105,110,101,114,92,34,32,125,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,99,40,92,34,76,105,103,104,116,98,111,120,92,34,41,44,92,110,32,32,32,32,32,32,95,99,40,92,34,72,101,108,112,68,105,97,108,111,103,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,115,104,111,119,58,32,95,118,109,46,115,104,111,119,72,101,108,112,32,125,44,92,110,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,99,108,111,115,101,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,115,104,111,119,72,101,108,112,32,61,32,102,97,108,115,101,92,110,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,95,118,109,46,117,105,76,111,97,100,105,110,103,32,63,32,95,99,40,92,34,98,45,99,97,114,100,92,34,44,32,91,95,99,40,92,34,80,114,101,108,111,97,100,101,114,92,34,41,93,44,32,49,41,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,92,34,115,104,111,119,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,97,119,78,97,109,101,58,32,92,34,118,45,115,104,111,119,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,33,95,118,109,46,117,105,76,111,97,100,105,110,103,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,120,112,114,101,115,115,105,111,110,58,32,92,34,33,117,105,76,111,97,100,105,110,103,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,105,100,58,32,92,34,115,101,97,114,99,104,45,112,97,110,101,108,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,83,101,97,114,99,104,66,97,114,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,115,104,111,119,45,104,101,108,112,92,34,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,115,104,111,119,72,101,108,112,32,61,32,116,114,117,101,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,114,111,119,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,111,108,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,83,116,121,108,101,58,32,123,32,104,101,105,103,104,116,58,32,92,34,55,48,112,120,92,34,32,125,44,32,97,116,116,114,115,58,32,123,32,115,109,58,32,92,34,54,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,99,40,92,34,83,105,122,101,83,108,105,100,101,114,92,34,41,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,111,108,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,80,97,116,104,84,114,101,101,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,58,32,102,117,110,99,116,105,111,110,32,40,36,101,118,101,110,116,41,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,95,118,109,46,115,101,97,114,99,104,40,116,114,117,101,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,114,111,119,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,111,108,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,97,116,116,114,115,58,32,123,32,115,109,58,32,92,34,54,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,68,97,116,101,83,108,105,100,101,114,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,114,111,119,92,34,44,32,91,95,99,40,92,34,98,45,99,111,108,92,34,44,32,91,95,99,40,92,34,73,110,100,101,120,80,105,99,107,101,114,92,34,41,93,44,32,49,41,93,44,32,49,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,111,108,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,116,97,98,115,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,97,116,116,114,115,58,32,123,32,106,117,115,116,105,102,105,101,100,58,32,92,34,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,116,97,98,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,97,116,116,114,115,58,32,123,32,116,105,116,108,101,58,32,95,118,109,46,36,116,40,92,34,109,105,109,101,84,121,112,101,115,92,34,41,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,95,99,40,92,34,77,105,109,101,80,105,99,107,101,114,92,34,41,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,116,97,98,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,97,116,116,114,115,58,32,123,32,116,105,116,108,101,58,32,95,118,109,46,36,116,40,92,34,116,97,103,115,92,34,41,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,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,95,99,40,92,34,84,97,103,80,105,99,107,101,114,92,34,44,32,123,92,110,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,97,116,116,114,115,58,32,123,92,110,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,92,34,115,104,111,119,45,115,101,97,114,99,104,45,98,97,114,92,34,58,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,44,92,110,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,125,44,92,110,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,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,100,105,114,101,99,116,105,118,101,115,58,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,92,34,115,104,111,119,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,97,119,78,97,109,101,58,32,92,34,118,45,115,104,111,119,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,95,118,109,46,100,111,99,115,46,108,101,110,103,116,104,32,61,61,61,32,48,32,38,38,32,33,95,118,109,46,117,105,76,111,97,100,105,110,103,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,120,112,114,101,115,115,105,111,110,58,32,92,34,100,111,99,115,46,108,101,110,103,116,104,32,61,61,61,32,48,32,38,38,32,33,117,105,76,111,97,100,105,110,103,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,95,118,109,46,115,101,97,114,99,104,66,117,115,121,32,63,32,95,99,40,92,34,80,114,101,108,111,97,100,101,114,92,34,44,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,116,45,51,92,34,32,125,41,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,82,101,115,117,108,116,115,67,97,114,100,92,34,41,44,92,110,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,95,118,109,46,100,111,99,115,46,108,101,110,103,116,104,32,62,32,48,92,110,32,32,32,32,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,92,34,100,105,118,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,82,101,115,117,108,116,115,67,97,114,100,92,34,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,111,112,116,68,105,115,112,108,97,121,32,61,61,61,32,92,34,103,114,105,100,92,34,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,68,111,99,67,97,114,100,87,97,108,108,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,100,111,99,115,58,32,95,118,109,46,100,111,99,115,44,32,97,112,112,101,110,100,58,32,95,118,109,46,97,112,112,101,110,100,70,117,110,99,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,99,40,92,34,68,111,99,76,105,115,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,100,111,99,115,58,32,95,118,109,46,100,111,99,115,44,32,97,112,112,101,110,100,58,32,95,118,109,46,97,112,112,101,110,100,70,117,110,99,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,49,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,92,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,92,34,58,92,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,92,34,44,92,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,92,34,58,92,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,92,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,56,102,57,51,55,102,56,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,123,34,99,97,99,104,101,68,105,114,101,99,116,111,114,121,34,58,34,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,34,44,34,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,34,58,34,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,34,125,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,116,101,109,112,108,97,116,101,38,105,100,61,52,56,102,57,51,55,102,56,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,44,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,44,32,123,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,114,101,110,100,101,114,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,114,101,110,100,101,114,59,32,125,44,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,32,32,92,34,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,92,34,58,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,47,42,32,98,105,110,100,105,110,103,32,42,47,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,59,32,125,92,110,47,42,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,32,42,47,32,125,41,59,92,110,118,97,114,32,114,101,110,100,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,32,32,118,97,114,32,95,118,109,32,61,32,116,104,105,115,92,110,32,32,118,97,114,32,95,104,32,61,32,95,118,109,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,92,110,32,32,118,97,114,32,95,99,32,61,32,95,118,109,46,95,115,101,108,102,46,95,99,32,124,124,32,95,104,92,110,32,32,114,101,116,117,114,110,32,95,99,40,92,110,32,32,32,32,92,34,98,45,99,111,110,116,97,105,110,101,114,92,34,44,92,110,32,32,32,32,91,92,110,32,32,32,32,32,32,95,118,109,46,108,111,97,100,105,110,103,92,110,32,32,32,32,32,32,32,32,63,32,95,99,40,92,34,98,45,99,97,114,100,92,34,44,32,91,95,99,40,92,34,80,114,101,108,111,97,100,101,114,92,34,41,93,44,32,49,41,92,110,32,32,32,32,32,32,32,32,58,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,45,98,111,100,121,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,98,45,115,101,108,101,99,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,111,112,116,105,111,110,115,58,32,95,118,109,46,105,110,100,101,120,79,112,116,105,111,110,115,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,99,111,112,101,100,83,108,111,116,115,58,32,95,118,109,46,95,117,40,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,92,110,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,107,101,121,58,32,92,34,102,105,114,115,116,92,34,44,92,110,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,102,110,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,92,110,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,114,101,116,117,114,110,32,91,92,110,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,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,97,116,116,114,115,58,32,123,32,118,97,108,117,101,58,32,110,117,108,108,44,32,100,105,115,97,98,108,101,100,58,32,92,34,92,34,32,125,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,118,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,95,115,40,95,118,109,46,36,116,40,92,34,105,110,100,101,120,80,105,99,107,101,114,80,108,97,99,101,104,111,108,100,101,114,92,34,41,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,92,110,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,41,44,92,110,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,93,92,110,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,125,44,92,110,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,112,114,111,120,121,58,32,116,114,117,101,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,108,58,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,58,32,95,118,109,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,98,97,99,107,58,32,102,117,110,99,116,105,111,110,32,40,36,36,118,41,32,123,92,110,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,95,118,109,46,115,101,108,101,99,116,101,100,73,110,100,101,120,32,61,32,36,36,118,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,120,112,114,101,115,115,105,111,110,58,32,92,34,115,101,108,101,99,116,101,100,73,110,100,101,120,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,115,101,108,101,99,116,101,100,73,110,100,101,120,32,33,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,109,116,45,51,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,45,98,111,100,121,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,68,51,84,114,101,101,109,97,112,92,34,44,32,123,92,110,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,97,116,116,114,115,58,32,123,32,92,34,105,110,100,101,120,45,105,100,92,34,58,32,95,118,109,46,115,101,108,101,99,116,101,100,73,110,100,101,120,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,95,118,109,46,115,101,108,101,99,116,101,100,73,110,100,101,120,32,33,61,61,32,110,117,108,108,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,95,99,40,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,92,34,98,45,99,97,114,100,92,34,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,32,115,116,97,116,105,99,67,108,97,115,115,58,32,92,34,115,116,97,116,115,45,99,97,114,100,32,109,116,45,51,92,34,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,68,51,77,105,109,101,66,97,114,67,111,117,110,116,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,92,34,105,110,100,101,120,45,105,100,92,34,58,32,95,118,109,46,115,101,108,101,99,116,101,100,73,110,100,101,120,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,68,51,77,105,109,101,66,97,114,83,105,122,101,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,92,34,105,110,100,101,120,45,105,100,92,34,58,32,95,118,109,46,115,101,108,101,99,116,101,100,73,110,100,101,120,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,92,34,105,110,100,101,120,45,105,100,92,34,58,32,95,118,109,46,115,101,108,101,99,116,101,100,73,110,100,101,120,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,95,99,40,92,34,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,92,34,44,32,123,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,116,116,114,115,58,32,123,32,92,34,105,110,100,101,120,45,105,100,92,34,58,32,95,118,109,46,115,101,108,101,99,116,101,100,73,110,100,101,120,32,125,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,49,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,95,118,109,46,95,101,40,41,44,92,110,32,32,32,32,32,32,32,32,32,32,93,44,92,110,32,32,32,32,93,44,92,110,32,32,32,32,50,92,110,32,32,41,92,110,125,92,110,118,97,114,32,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,32,61,32,91,93,92,110,114,101,110,100,101,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,32,61,32,116,114,117,101,92,110,92,110,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,37,55,66,37,50,50,99,97,99,104,101,68,105,114,101,99,116,111,114,121,37,50,50,58,37,50,50,110,111,100,101,95,109,111,100,117,108,101,115,47,46,99,97,99,104,101,47,118,117,101,45,108,111,97,100,101,114,37,50,50,44,37,50,50,99,97,99,104,101,73,100,101,110,116,105,102,105,101,114,37,50,50,58,37,50,50,98,97,53,52,55,49,56,48,45,118,117,101,45,108,111,97,100,101,114,45,116,101,109,112,108,97,116,101,37,50,50,37,55,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,116,101,109,112,108,97,116,101,76,111,97,100,101,114,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,98,97,53,98,100,57,48,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,98,97,53,98,100,57,48,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,98,97,53,98,100,57,48,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,65,112,112,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,98,97,53,98,100,57,48,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,54,57,48,51,49,102,51,48,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,65,112,112,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,101,100,99,52,100,102,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,101,100,99,52,100,102,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,101,100,99,52,100,102,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,101,100,99,52,100,102,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,51,48,54,56,48,52,53,52,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,97,116,101,83,108,105,100,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,52,100,101,100,54,54,56,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,52,100,101,100,54,54,56,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,52,100,101,100,54,54,56,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,52,100,101,100,54,54,56,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,53,56,53,56,51,100,50,100,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,48,52,100,101,100,54,54,56,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,51,57,54,55,50,101,49,55,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,67,97,114,100,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,99,100,100,52,54,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,98,54,50,102,101,97,54,50,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,70,105,108,101,84,105,116,108,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,53,53,57,49,57,52,102,54,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,53,53,57,49,57,52,102,54,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,53,53,57,49,57,52,102,54,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,53,53,57,49,57,52,102,54,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,55,101,99,97,53,50,55,102,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,102,52,49,53,56,97,101,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,48,99,57,56,102,53,56,50,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,68,111,99,76,105,115,116,73,116,101,109,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,98,97,48,50,54,99,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,51,55,53,102,99,50,57,56,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,70,117,108,108,84,104,117,109,98,110,97,105,108,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,55,99,50,49,52,48,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,52,54,51,98,97,52,97,56,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,73,110,100,101,120,80,105,99,107,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,52,52,48,99,54,97,53,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,52,52,48,99,54,97,53,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,52,52,48,99,54,97,53,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,52,52,48,99,54,97,53,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,52,48,57,99,57,51,56,99,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,76,105,103,104,116,98,111,120,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,53,100,48,57,100,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,50,102,54,49,101,54,49,55,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,105,109,101,80,105,99,107,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,50,57,53,100,50,50,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,55,53,99,55,53,52,98,101,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,78,97,118,66,97,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,51,51,98,101,54,56,49,51,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,56,55,100,55,56,102,51,99,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,51,51,98,101,54,56,49,51,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,51,51,98,101,54,56,49,51,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,51,51,98,101,54,56,49,51,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,51,51,98,101,54,56,49,51,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,50,100,102,101,52,57,101,52,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,97,116,104,84,114,101,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,52,50,48,57,98,52,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,52,50,48,57,98,52,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,52,50,48,57,98,52,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,57,52,50,48,57,98,52,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,50,100,53,101,99,54,56,52,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,82,101,115,117,108,116,115,67,97,114,100,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,49,50,101,97,57,55,50,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,49,50,101,97,57,55,50,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,49,50,101,97,57,55,50,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,49,50,101,97,57,55,50,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,55,55,49,49,57,56,97,98,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,105,122,101,83,108,105,100,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,56,98,100,54,102,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,54,53,51,48,56,52,48,49,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,109,97,108,108,66,97,100,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,101,49,49,49,53,53,50,99,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,101,49,49,49,53,53,50,99,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,101,49,49,49,53,53,50,99,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,101,49,49,49,53,53,50,99,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,50,49,53,101,101,48,102,97,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,111,114,116,83,101,108,101,99,116,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,102,48,51,100,50,98,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,56,98,101,54,100,52,53,52,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,49,102,48,51,100,50,98,55,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,49,102,48,51,100,50,98,55,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,49,102,48,51,100,50,98,55,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,49,102,48,51,100,50,98,55,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,52,55,48,99,102,97,56,50,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,67,111,110,116,97,105,110,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,55,101,100,50,54,55,48,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,54,98,100,101,49,100,100,50,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,52,55,101,100,50,54,55,48,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,52,55,101,100,50,54,55,48,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,52,55,101,100,50,54,55,48,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,49,38,105,100,61,52,55,101,100,50,54,55,48,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,97,99,97,98,48,51,98,52,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,97,103,80,105,99,107,101,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,50,56,52,53,50,49,52,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,52,102,102,56,101,97,54,101,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,55,54,50,53,51,52,48,99,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,49,48,56,55,51,99,57,100,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,67,108,105,112,98,111,97,114,100,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,102,53,57,101,51,51,55,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,48,55,53,99,101,54,98,54,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,68,101,98,117,103,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,48,99,51,49,100,52,57,97,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,51,51,99,98,100,100,54,50,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,70,105,108,101,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,54,101,98,98,49,52,97,54,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,51,55,101,51,53,49,97,48,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,71,101,97,114,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,97,100,102,101,53,48,49,52,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,49,101,99,57,97,100,53,57,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,105,99,111,110,115,47,76,97,110,103,117,97,103,101,73,99,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,102,54,48,57,53,98,97,56,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,102,54,48,57,53,98,97,56,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,102,54,48,57,53,98,97,56,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,102,54,48,57,53,98,97,56,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,51,99,99,97,99,49,56,54,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,67,111,110,102,105,103,117,114,97,116,105,111,110,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,98,57,56,51,50,101,53,38,115,99,111,112,101,100,61,116,114,117,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,49,51,56,54,101,101,52,54,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,70,105,108,101,80,97,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,51,56,55,53,50,100,101,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,51,56,55,53,50,100,101,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,51,56,55,53,50,100,101,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,49,51,56,55,53,50,100,101,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,55,97,56,56,100,48,53,97,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,101,97,114,99,104,80,97,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,56,102,57,51,55,102,56,38,108,97,110,103,61,99,115,115,38,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,56,102,57,51,55,102,56,38,108,97,110,103,61,99,115,115,38,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,44,32,95,95,117,110,117,115,101,100,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,32,123,10,10,101,118,97,108,40,34,47,47,32,115,116,121,108,101,45,108,111,97,100,101,114,58,32,65,100,100,115,32,115,111,109,101,32,99,115,115,32,116,111,32,116,104,101,32,68,79,77,32,98,121,32,97,100,100,105,110,103,32,97,32,60,115,116,121,108,101,62,32,116,97,103,92,110,92,110,47,47,32,108,111,97,100,32,116,104,101,32,115,116,121,108,101,115,92,110,118,97,114,32,99,111,110,116,101,110,116,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,56,102,57,51,55,102,56,38,108,97,110,103,61,99,115,115,38,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,49,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,91,50,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,91,48,93,46,117,115,101,91,48,93,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,33,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,118,117,101,38,116,121,112,101,61,115,116,121,108,101,38,105,110,100,101,120,61,48,38,105,100,61,52,56,102,57,51,55,102,56,38,108,97,110,103,61,99,115,115,38,92,34,41,59,92,110,105,102,40,99,111,110,116,101,110,116,46,95,95,101,115,77,111,100,117,108,101,41,32,99,111,110,116,101,110,116,32,61,32,99,111,110,116,101,110,116,46,100,101,102,97,117,108,116,59,92,110,105,102,40,116,121,112,101,111,102,32,99,111,110,116,101,110,116,32,61,61,61,32,39,115,116,114,105,110,103,39,41,32,99,111,110,116,101,110,116,32,61,32,91,91,109,111,100,117,108,101,46,105,100,44,32,99,111,110,116,101,110,116,44,32,39,39,93,93,59,92,110,105,102,40,99,111,110,116,101,110,116,46,108,111,99,97,108,115,41,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,99,111,110,116,101,110,116,46,108,111,99,97,108,115,59,92,110,47,47,32,97,100,100,32,116,104,101,32,115,116,121,108,101,115,32,116,111,32,116,104,101,32,68,79,77,92,110,118,97,114,32,97,100,100,32,61,32,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,47,42,33,32,33,46,46,47,46,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,32,42,47,32,92,34,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,108,105,98,47,97,100,100,83,116,121,108,101,115,67,108,105,101,110,116,46,106,115,92,34,41,91,92,34,100,101,102,97,117,108,116,92,34,93,41,92,110,118,97,114,32,117,112,100,97,116,101,32,61,32,97,100,100,40,92,34,56,49,102,50,99,48,97,54,92,34,44,32,99,111,110,116,101,110,116,44,32,102,97,108,115,101,44,32,123,92,34,115,111,117,114,99,101,77,97,112,92,34,58,102,97,108,115,101,44,92,34,115,104,97,100,111,119,77,111,100,101,92,34,58,102,97,108,115,101,125,41,59,92,110,47,47,32,72,111,116,32,77,111,100,117,108,101,32,82,101,112,108,97,99,101,109,101,110,116,92,110,105,102,40,102,97,108,115,101,41,32,123,125,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,46,47,115,114,99,47,118,105,101,119,115,47,83,116,97,116,115,80,97,103,101,46,118,117,101,63,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,47,105,110,100,101,120,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,49,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,108,111,97,100,101,114,115,47,115,116,121,108,101,80,111,115,116,76,111,97,100,101,114,46,106,115,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,112,111,115,116,99,115,115,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,99,108,111,110,101,100,82,117,108,101,83,101,116,45,49,50,46,117,115,101,37,53,66,50,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,99,97,99,104,101,45,108,111,97,100,101,114,47,100,105,115,116,47,99,106,115,46,106,115,63,63,114,117,108,101,83,101,116,37,53,66,48,37,53,68,46,117,115,101,37,53,66,48,37,53,68,33,46,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,99,108,105,45,115,101,114,118,105,99,101,47,110,111,100,101,95,109,111,100,117,108,101,115,47,64,118,117,101,47,118,117,101,45,108,111,97,100,101,114,45,118,49,53,47,108,105,98,47,105,110,100,101,120,46,106,115,63,63,118,117,101,45,108,111,97,100,101,114,45,111,112,116,105,111,110,115,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,78,67,65,89,65,65,65,66,121,54,43,82,56,65,65,65,65,75,107,108,69,81,86,81,111,85,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,74,111,65,71,85,90,77,51,50,90,48,85,56,116,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,78,67,65,89,65,65,65,66,121,54,43,82,56,65,65,65,65,75,107,108,69,81,86,81,111,85,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,74,111,65,71,85,90,77,51,50,90,48,85,56,116,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,78,67,65,89,65,65,65,66,121,54,43,82,56,65,65,65,65,75,107,108,69,81,86,81,111,85,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,74,111,65,71,85,90,77,51,50,90,48,85,56,116,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,78,67,65,89,65,65,65,66,121,54,43,82,56,65,65,65,65,75,107,108,69,81,86,81,111,85,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,74,111,65,71,85,90,77,51,50,90,48,85,56,116,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,100,61,37,50,55,77,50,46,55,53,32,48,108,45,49,46,53,32,49,46,53,76,51,46,55,53,32,52,108,45,50,46,53,32,50,46,53,76,50,46,55,53,32,56,108,52,45,52,45,52,45,52,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,100,61,37,50,55,77,50,46,55,53,32,48,108,45,49,46,53,32,49,46,53,76,51,46,55,53,32,52,108,45,50,46,53,32,50,46,53,76,50,46,55,53,32,56,108,52,45,52,45,52,45,52,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,100,61,37,50,55,77,50,46,55,53,32,48,108,45,49,46,53,32,49,46,53,76,51,46,55,53,32,52,108,45,50,46,53,32,50,46,53,76,50,46,55,53,32,56,108,52,45,52,45,52,45,52,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,102,105,108,108,61,37,50,53,50,55,37,50,53,50,51,102,102,102,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,56,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,56,37,50,53,50,55,95,118,105,101,119,66,111,120,61,37,50,53,50,55,48,95,48,95,56,95,56,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,100,61,37,50,53,50,55,77,50,46,55,53,95,48,108,45,49,46,53,95,49,46,53,76,51,46,55,53,95,52,108,45,50,46,53,95,50,46,53,76,50,46,55,53,95,56,108,52,45,52,45,52,45,52,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,100,61,37,50,55,77,53,46,50,53,32,48,108,45,52,32,52,32,52,32,52,32,49,46,53,45,49,46,53,76,52,46,50,53,32,52,108,50,46,53,45,50,46,53,76,53,46,50,53,32,48,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,100,61,37,50,55,77,53,46,50,53,32,48,108,45,52,32,52,32,52,32,52,32,49,46,53,45,49,46,53,76,52,46,50,53,32,52,108,50,46,53,45,50,46,53,76,53,46,50,53,32,48,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,100,61,37,50,55,77,53,46,50,53,32,48,108,45,52,32,52,32,52,32,52,32,49,46,53,45,49,46,53,76,52,46,50,53,32,52,108,50,46,53,45,50,46,53,76,53,46,50,53,32,48,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,102,105,108,108,61,37,50,53,50,55,37,50,53,50,51,102,102,102,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,56,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,56,37,50,53,50,55,95,118,105,101,119,66,111,120,61,37,50,53,50,55,48,95,48,95,56,95,56,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,100,61,37,50,53,50,55,77,53,46,50,53,95,48,108,45,52,95,52,95,52,95,52,95,49,46,53,45,49,46,53,76,52,46,50,53,95,52,108,50,46,53,45,50,46,53,76,53,46,50,53,95,48,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,49,48,49,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,49,48,49,37,50,53,50,55,95,118,105,101,119,45,98,111,120,61,37,50,53,50,55,48,95,48,95,49,48,49,95,49,48,49,37,50,53,50,55,95,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,53,50,55,110,111,110,101,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,102,105,108,108,61,37,50,53,50,55,98,108,97,99,107,37,50,53,50,55,95,100,61,37,50,53,50,55,77,53,49,95,49,108,50,53,95,50,51,95,50,52,95,50,50,72,49,108,50,53,45,50,50,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,102,105,108,108,61,37,50,53,50,55,98,108,97,99,107,37,50,53,50,55,95,111,112,97,99,105,116,121,61,37,50,53,50,55,46,51,37,50,53,50,55,95,100,61,37,50,53,50,55,77,53,49,95,49,48,49,108,50,53,45,50,51,95,50,52,45,50,50,72,49,108,50,53,95,50,50,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,49,48,49,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,49,48,49,37,50,53,50,55,95,118,105,101,119,45,98,111,120,61,37,50,53,50,55,48,95,48,95,49,48,49,95,49,48,49,37,50,53,50,55,95,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,53,50,55,110,111,110,101,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,102,105,108,108,61,37,50,53,50,55,98,108,97,99,107,37,50,53,50,55,95,111,112,97,99,105,116,121,61,37,50,53,50,55,46,51,37,50,53,50,55,95,100,61,37,50,53,50,55,77,53,49,95,49,108,50,53,95,50,51,95,50,52,95,50,50,72,49,108,50,53,45,50,50,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,102,105,108,108,61,37,50,53,50,55,98,108,97,99,107,37,50,53,50,55,95,100,61,37,50,53,50,55,77,53,49,95,49,48,49,108,50,53,45,50,51,95,50,52,45,50,50,72,49,108,50,53,95,50,50,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,98,108,97,99,107,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,49,48,49,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,49,48,49,37,50,53,50,55,95,118,105,101,119,45,98,111,120,61,37,50,53,50,55,48,95,48,95,49,48,49,95,49,48,49,37,50,53,50,55,95,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,53,50,55,110,111,110,101,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,102,105,108,108,61,37,50,53,50,55,98,108,97,99,107,37,50,53,50,55,95,111,112,97,99,105,116,121,61,37,50,53,50,55,46,51,37,50,53,50,55,95,100,61,37,50,53,50,55,77,53,49,95,49,108,50,53,95,50,51,95,50,52,95,50,50,72,49,108,50,53,45,50,50,122,77,53,49,95,49,48,49,108,50,53,45,50,51,95,50,52,45,50,50,72,49,108,50,53,95,50,50,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,49,48,49,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,49,48,49,37,50,53,50,55,95,118,105,101,119,45,98,111,120,61,37,50,53,50,55,48,95,48,95,49,48,49,95,49,48,49,37,50,53,50,55,95,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,53,50,55,110,111,110,101,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,102,105,108,108,61,37,50,53,50,55,119,104,105,116,101,37,50,53,50,55,95,100,61,37,50,53,50,55,77,53,49,95,49,108,50,53,95,50,51,95,50,52,95,50,50,72,49,108,50,53,45,50,50,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,102,105,108,108,61,37,50,53,50,55,119,104,105,116,101,37,50,53,50,55,95,111,112,97,99,105,116,121,61,37,50,53,50,55,46,51,37,50,53,50,55,95,100,61,37,50,53,50,55,77,53,49,95,49,48,49,108,50,53,45,50,51,95,50,52,45,50,50,72,49,108,50,53,95,50,50,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,100,61,37,50,55,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,49,48,49,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,49,48,49,37,50,53,50,55,95,118,105,101,119,45,98,111,120,61,37,50,53,50,55,48,95,48,95,49,48,49,95,49,48,49,37,50,53,50,55,95,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,53,50,55,110,111,110,101,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,102,105,108,108,61,37,50,53,50,55,119,104,105,116,101,37,50,53,50,55,95,111,112,97,99,105,116,121,61,37,50,53,50,55,46,51,37,50,53,50,55,95,100,61,37,50,53,50,55,77,53,49,95,49,108,50,53,95,50,51,95,50,52,95,50,50,72,49,108,50,53,45,50,50,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,102,105,108,108,61,37,50,53,50,55,119,104,105,116,101,37,50,53,50,55,95,100,61,37,50,53,50,55,77,53,49,95,49,48,49,108,50,53,45,50,51,95,50,52,45,50,50,72,49,108,50,53,95,50,50,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,48,49,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,48,49,37,50,55,32,118,105,101,119,45,98,111,120,61,37,50,55,48,32,48,32,49,48,49,32,49,48,49,37,50,55,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,55,110,111,110,101,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,119,104,105,116,101,37,50,55,32,111,112,97,99,105,116,121,61,37,50,55,46,51,37,50,55,32,100,61,37,50,55,77,53,49,32,49,108,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,77,53,49,32,49,48,49,108,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,49,48,49,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,49,48,49,37,50,53,50,55,95,118,105,101,119,45,98,111,120,61,37,50,53,50,55,48,95,48,95,49,48,49,95,49,48,49,37,50,53,50,55,95,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,37,50,53,50,55,110,111,110,101,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,102,105,108,108,61,37,50,53,50,55,119,104,105,116,101,37,50,53,50,55,95,111,112,97,99,105,116,121,61,37,50,53,50,55,46,51,37,50,53,50,55,95,100,61,37,50,53,50,55,77,53,49,95,49,108,50,53,95,50,51,95,50,52,95,50,50,72,49,108,50,53,45,50,50,122,77,53,49,95,49,48,49,108,50,53,45,50,51,95,50,52,45,50,50,72,49,108,50,53,95,50,50,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,50,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,50,37,50,55,32,102,105,108,108,61,37,50,55,110,111,110,101,37,50,55,32,115,116,114,111,107,101,61,37,50,55,37,50,51,100,99,51,53,52,53,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,49,50,32,49,50,37,50,55,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,37,50,55,54,37,50,55,32,99,121,61,37,50,55,54,37,50,55,32,114,61,37,50,55,52,46,53,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,45,108,105,110,101,106,111,105,110,61,37,50,55,114,111,117,110,100,37,50,55,32,100,61,37,50,55,77,53,46,56,32,51,46,54,104,46,52,76,54,32,54,46,53,122,37,50,55,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,37,50,55,54,37,50,55,32,99,121,61,37,50,55,56,46,50,37,50,55,32,114,61,37,50,55,46,54,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,100,99,51,53,52,53,37,50,55,32,115,116,114,111,107,101,61,37,50,55,110,111,110,101,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,50,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,50,37,50,55,32,102,105,108,108,61,37,50,55,110,111,110,101,37,50,55,32,115,116,114,111,107,101,61,37,50,55,37,50,51,100,99,51,53,52,53,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,49,50,32,49,50,37,50,55,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,37,50,55,54,37,50,55,32,99,121,61,37,50,55,54,37,50,55,32,114,61,37,50,55,52,46,53,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,45,108,105,110,101,106,111,105,110,61,37,50,55,114,111,117,110,100,37,50,55,32,100,61,37,50,55,77,53,46,56,32,51,46,54,104,46,52,76,54,32,54,46,53,122,37,50,55,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,37,50,55,54,37,50,55,32,99,121,61,37,50,55,56,46,50,37,50,55,32,114,61,37,50,55,46,54,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,100,99,51,53,52,53,37,50,55,32,115,116,114,111,107,101,61,37,50,55,110,111,110,101,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,50,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,50,37,50,55,32,102,105,108,108,61,37,50,55,110,111,110,101,37,50,55,32,115,116,114,111,107,101,61,37,50,55,37,50,51,100,99,51,53,52,53,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,49,50,32,49,50,37,50,55,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,37,50,55,54,37,50,55,32,99,121,61,37,50,55,54,37,50,55,32,114,61,37,50,55,52,46,53,37,50,55,47,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,45,108,105,110,101,106,111,105,110,61,37,50,55,114,111,117,110,100,37,50,55,32,100,61,37,50,55,77,53,46,56,32,51,46,54,104,46,52,76,54,32,54,46,53,122,37,50,55,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,37,50,55,54,37,50,55,32,99,121,61,37,50,55,56,46,50,37,50,55,32,114,61,37,50,55,46,54,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,100,99,51,53,52,53,37,50,55,32,115,116,114,111,107,101,61,37,50,55,110,111,110,101,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,49,50,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,49,50,37,50,53,50,55,95,102,105,108,108,61,37,50,53,50,55,110,111,110,101,37,50,53,50,55,95,115,116,114,111,107,101,61,37,50,53,50,55,37,50,53,50,51,100,99,51,53,52,53,37,50,53,50,55,95,118,105,101,119,66,111,120,61,37,50,53,50,55,48,95,48,95,49,50,95,49,50,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,99,105,114,99,108,101,95,99,120,61,37,50,53,50,55,54,37,50,53,50,55,95,99,121,61,37,50,53,50,55,54,37,50,53,50,55,95,114,61,37,50,53,50,55,52,46,53,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,115,116,114,111,107,101,45,108,105,110,101,106,111,105,110,61,37,50,53,50,55,114,111,117,110,100,37,50,53,50,55,95,100,61,37,50,53,50,55,77,53,46,56,95,51,46,54,104,46,52,76,54,95,54,46,53,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,99,105,114,99,108,101,95,99,120,61,37,50,53,50,55,54,37,50,53,50,55,95,99,121,61,37,50,53,50,55,56,46,50,37,50,53,50,55,95,114,61,37,50,53,50,55,46,54,37,50,53,50,55,95,102,105,108,108,61,37,50,53,50,55,37,50,53,50,51,100,99,51,53,52,53,37,50,53,50,55,95,115,116,114,111,107,101,61,37,50,53,50,55,110,111,110,101,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,50,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,50,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,45,52,32,45,52,32,56,32,56,37,50,55,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,37,50,55,51,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,50,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,50,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,45,52,32,45,52,32,56,32,56,37,50,55,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,37,50,55,51,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,49,50,37,50,55,32,104,101,105,103,104,116,61,37,50,55,49,50,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,45,52,32,45,52,32,56,32,56,37,50,55,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,37,50,55,51,37,50,55,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,49,50,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,49,50,37,50,53,50,55,95,118,105,101,119,66,111,120,61,37,50,53,50,55,45,52,95,45,52,95,56,95,56,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,99,105,114,99,108,101,95,114,61,37,50,53,50,55,51,37,50,53,50,55,95,102,105,108,108,61,37,50,53,50,55,37,50,53,50,51,102,102,102,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,51,48,37,50,55,32,104,101,105,103,104,116,61,37,50,55,51,48,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,51,48,32,51,48,37,50,55,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,37,50,55,114,103,98,97,37,50,56,48,44,32,48,44,32,48,44,32,48,46,53,37,50,57,37,50,55,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,37,50,55,114,111,117,110,100,37,50,55,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,37,50,55,49,48,37,50,55,32,115,116,114,111,107,101,45,119,105,100,116,104,61,37,50,55,50,37,50,55,32,100,61,37,50,55,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,51,48,37,50,55,32,104,101,105,103,104,116,61,37,50,55,51,48,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,51,48,32,51,48,37,50,55,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,37,50,55,114,103,98,97,37,50,56,48,44,32,48,44,32,48,44,32,48,46,53,37,50,57,37,50,55,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,37,50,55,114,111,117,110,100,37,50,55,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,37,50,55,49,48,37,50,55,32,115,116,114,111,107,101,45,119,105,100,116,104,61,37,50,55,50,37,50,55,32,100,61,37,50,55,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,51,48,37,50,55,32,104,101,105,103,104,116,61,37,50,55,51,48,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,51,48,32,51,48,37,50,55,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,37,50,55,114,103,98,97,37,50,56,48,44,32,48,44,32,48,44,32,48,46,53,37,50,57,37,50,55,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,37,50,55,114,111,117,110,100,37,50,55,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,37,50,55,49,48,37,50,55,32,115,116,114,111,107,101,45,119,105,100,116,104,61,37,50,55,50,37,50,55,32,100,61,37,50,55,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,51,48,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,51,48,37,50,53,50,55,95,118,105,101,119,66,111,120,61,37,50,53,50,55,48,95,48,95,51,48,95,51,48,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,115,116,114,111,107,101,61,37,50,53,50,55,114,103,98,97,37,50,53,50,56,48,44,95,48,44,95,48,44,95,48,46,53,37,50,53,50,57,37,50,53,50,55,95,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,37,50,53,50,55,114,111,117,110,100,37,50,53,50,55,95,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,37,50,53,50,55,49,48,37,50,53,50,55,95,115,116,114,111,107,101,45,119,105,100,116,104,61,37,50,53,50,55,50,37,50,53,50,55,95,100,61,37,50,53,50,55,77,52,95,55,104,50,50,77,52,95,49,53,104,50,50,77,52,95,50,51,104,50,50,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,51,48,37,50,55,32,104,101,105,103,104,116,61,37,50,55,51,48,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,51,48,32,51,48,37,50,55,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,37,50,55,114,103,98,97,37,50,56,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,37,50,57,37,50,55,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,37,50,55,114,111,117,110,100,37,50,55,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,37,50,55,49,48,37,50,55,32,115,116,114,111,107,101,45,119,105,100,116,104,61,37,50,55,50,37,50,55,32,100,61,37,50,55,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,51,48,37,50,55,32,104,101,105,103,104,116,61,37,50,55,51,48,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,51,48,32,51,48,37,50,55,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,37,50,55,114,103,98,97,37,50,56,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,37,50,57,37,50,55,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,37,50,55,114,111,117,110,100,37,50,55,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,37,50,55,49,48,37,50,55,32,115,116,114,111,107,101,45,119,105,100,116,104,61,37,50,55,50,37,50,55,32,100,61,37,50,55,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,51,48,37,50,55,32,104,101,105,103,104,116,61,37,50,55,51,48,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,51,48,32,51,48,37,50,55,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,37,50,55,114,103,98,97,37,50,56,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,37,50,57,37,50,55,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,37,50,55,114,111,117,110,100,37,50,55,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,37,50,55,49,48,37,50,55,32,115,116,114,111,107,101,45,119,105,100,116,104,61,37,50,55,50,37,50,55,32,100,61,37,50,55,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,51,48,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,51,48,37,50,53,50,55,95,118,105,101,119,66,111,120,61,37,50,53,50,55,48,95,48,95,51,48,95,51,48,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,115,116,114,111,107,101,61,37,50,53,50,55,114,103,98,97,37,50,53,50,56,50,53,53,44,95,50,53,53,44,95,50,53,53,44,95,48,46,53,37,50,53,50,57,37,50,53,50,55,95,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,37,50,53,50,55,114,111,117,110,100,37,50,53,50,55,95,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,37,50,53,50,55,49,48,37,50,53,50,55,95,115,116,114,111,107,101,45,119,105,100,116,104,61,37,50,53,50,55,50,37,50,53,50,55,95,100,61,37,50,53,50,55,77,52,95,55,104,50,50,77,52,95,49,53,104,50,50,77,52,95,50,51,104,50,50,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,52,37,50,55,32,104,101,105,103,104,116,61,37,50,55,52,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,52,32,52,37,50,55,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,37,50,55,37,50,51,102,102,102,37,50,55,32,100,61,37,50,55,77,48,32,50,104,52,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,52,37,50,55,32,104,101,105,103,104,116,61,37,50,55,52,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,52,32,52,37,50,55,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,37,50,55,37,50,51,102,102,102,37,50,55,32,100,61,37,50,55,77,48,32,50,104,52,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,52,37,50,55,32,104,101,105,103,104,116,61,37,50,55,52,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,52,32,52,37,50,55,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,37,50,55,37,50,51,102,102,102,37,50,55,32,100,61,37,50,55,77,48,32,50,104,52,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,52,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,52,37,50,53,50,55,95,118,105,101,119,66,111,120,61,37,50,53,50,55,48,95,48,95,52,95,52,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,115,116,114,111,107,101,61,37,50,53,50,55,37,50,53,50,51,102,102,102,37,50,53,50,55,95,100,61,37,50,53,50,55,77,48,95,50,104,52,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,52,37,50,55,32,104,101,105,103,104,116,61,37,50,55,53,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,52,32,53,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,37,50,51,51,52,51,97,52,48,37,50,55,32,100,61,37,50,55,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,52,37,50,55,32,104,101,105,103,104,116,61,37,50,55,53,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,52,32,53,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,37,50,51,51,52,51,97,52,48,37,50,55,32,100,61,37,50,55,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,52,37,50,55,32,104,101,105,103,104,116,61,37,50,55,53,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,52,32,53,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,37,50,51,51,52,51,97,52,48,37,50,55,32,100,61,37,50,55,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,52,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,53,37,50,53,50,55,95,118,105,101,119,66,111,120,61,37,50,53,50,55,48,95,48,95,52,95,53,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,102,105,108,108,61,37,50,53,50,55,37,50,53,50,51,51,52,51,97,52,48,37,50,53,50,55,95,100,61,37,50,53,50,55,77,50,95,48,76,48,95,50,104,52,122,109,48,95,53,76,48,95,51,104,52,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,37,50,51,50,56,97,55,52,53,37,50,55,32,100,61,37,50,55,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,37,50,51,50,56,97,55,52,53,37,50,55,32,100,61,37,50,55,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,37,50,51,50,56,97,55,52,53,37,50,55,32,100,61,37,50,55,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,56,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,56,37,50,53,50,55,95,118,105,101,119,66,111,120,61,37,50,53,50,55,48,95,48,95,56,95,56,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,102,105,108,108,61,37,50,53,50,55,37,50,53,50,51,50,56,97,55,52,53,37,50,53,50,55,95,100,61,37,50,53,50,55,77,50,46,51,95,54,46,55,51,76,46,54,95,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,95,49,46,49,45,46,56,108,49,46,49,95,49,46,52,95,51,46,52,45,51,46,56,99,46,54,45,46,54,51,95,49,46,54,45,46,50,55,95,49,46,50,46,55,108,45,52,95,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,32,100,61,37,50,55,77,54,46,53,54,52,46,55,53,108,45,51,46,53,57,32,51,46,54,49,50,45,49,46,53,51,56,45,49,46,53,53,76,48,32,52,46,50,54,108,50,46,57,55,52,32,50,46,57,57,76,56,32,50,46,49,57,51,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,32,100,61,37,50,55,77,54,46,53,54,52,46,55,53,108,45,51,46,53,57,32,51,46,54,49,50,45,49,46,53,51,56,45,49,46,53,53,76,48,32,52,46,50,54,108,50,46,57,55,52,32,50,46,57,57,76,56,32,50,46,49,57,51,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,37,50,55,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,37,50,55,32,119,105,100,116,104,61,37,50,55,56,37,50,55,32,104,101,105,103,104,116,61,37,50,55,56,37,50,55,32,118,105,101,119,66,111,120,61,37,50,55,48,32,48,32,56,32,56,37,50,55,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,37,50,55,37,50,51,102,102,102,37,50,55,32,100,61,37,50,55,77,54,46,53,54,52,46,55,53,108,45,51,46,53,57,32,51,46,54,49,50,45,49,46,53,51,56,45,49,46,53,53,76,48,32,52,46,50,54,108,50,46,57,55,52,32,50,46,57,57,76,56,32,50,46,49,57,51,122,37,50,55,47,37,51,101,37,51,99,47,115,118,103,37,51,101,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,50,53,51,99,115,118,103,95,120,109,108,110,115,61,37,50,53,50,55,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,37,50,53,50,55,95,119,105,100,116,104,61,37,50,53,50,55,56,37,50,53,50,55,95,104,101,105,103,104,116,61,37,50,53,50,55,56,37,50,53,50,55,95,118,105,101,119,66,111,120,61,37,50,53,50,55,48,95,48,95,56,95,56,37,50,53,50,55,37,50,53,51,101,37,50,53,51,99,112,97,116,104,95,102,105,108,108,61,37,50,53,50,55,37,50,53,50,51,102,102,102,37,50,53,50,55,95,100,61,37,50,53,50,55,77,54,46,53,54,52,46,55,53,108,45,51,46,53,57,95,51,46,54,49,50,45,49,46,53,51,56,45,49,46,53,53,76,48,95,52,46,50,54,108,50,46,57,55,52,95,50,46,57,57,76,56,95,50,46,49,57,51,122,37,50,53,50,55,47,37,50,53,51,101,37,50,53,51,99,47,115,118,103,37,50,53,51,101,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,98,97,115,101,54,52,44,80,72,78,50,90,121,66,52,98,87,120,117,99,122,48,105,97,72,82,48,99,68,111,118,76,51,100,51,100,121,53,51,77,121,53,118,99,109,99,118,77,106,65,119,77,67,57,122,100,109,99,105,73,72,104,116,98,71,53,122,79,110,104,115,97,87,53,114,80,83,74,111,100,72,82,119,79,105,56,118,100,51,100,51,76,110,99,122,76,109,57,121,90,121,56,120,79,84,107,53,76,51,104,115,97,87,53,114,73,105,66,52,80,83,73,119,99,72,103,105,73,72,107,57,73,106,66,119,101,67,73,75,73,67,65,103,73,67,66,50,97,87,86,51,81,109,57,52,80,83,73,119,73,68,65,103,78,68,73,50,76,106,89,50,78,121,65,48,77,106,89,117,78,106,89,51,73,105,66,122,100,72,108,115,90,84,48,105,90,87,53,104,89,109,120,108,76,87,74,104,89,50,116,110,99,109,57,49,98,109,81,54,98,109,86,51,73,68,65,103,77,67,65,48,77,106,89,117,78,106,89,51,73,68,81,121,78,105,52,50,78,106,99,55,73,105,66,109,97,87,120,115,80,83,73,106,90,109,90,109,73,106,52,75,80,71,99,43,67,105,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,80,72,74,108,89,51,81,103,101,68,48,105,77,84,107,121,73,105,66,53,80,83,73,120,79,84,73,105,73,72,100,112,90,72,82,111,80,83,73,48,77,105,52,50,78,106,99,105,73,71,104,108,97,87,100,111,100,68,48,105,77,84,73,52,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,119,89,88,82,111,73,71,81,57,73,107,48,121,77,84,77,117,77,122,77,122,76,68,66,68,79,84,85,117,78,68,89,51,76,68,65,115,77,67,119,53,78,83,52,48,78,106,99,115,77,67,119,121,77,84,77,117,77,122,77,122,99,122,107,49,76,106,81,50,78,121,119,121,77,84,77,117,77,122,77,122,76,68,73,120,77,121,52,122,77,122,77,115,77,106,69,122,76,106,77,122,77,49,77,48,77,106,89,117,78,106,89,51,76,68,77,122,77,83,52,121,76,68,81,121,78,105,52,50,78,106,99,115,77,106,69,122,76,106,77,122,77,119,111,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,85,122,77,122,77,83,52,121,76,68,65,115,77,106,69,122,76,106,77,122,77,121,119,119,101,105,66,78,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,106,76,84,107,48,76,106,65,52,76,68,65,116,77,84,99,119,76,106,89,50,78,121,48,51,78,105,52,49,79,68,99,116,77,84,99,119,76,106,89,50,78,121,48,120,78,122,65,117,78,106,89,51,85,122,69,120,79,83,52,121,78,84,77,115,78,68,73,117,78,106,89,51,76,68,73,120,77,121,52,122,77,122,77,115,78,68,73,117,78,106,89,51,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,66,84,77,122,103,48,76,68,69,120,79,83,52,121,78,84,77,115,77,122,103,48,76,68,73,120,77,121,52,122,77,122,78,84,77,122,65,51,76,106,81,120,77,121,119,122,79,68,81,115,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,54,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,121,90,87,78,48,73,72,103,57,73,106,69,53,77,105,73,103,101,84,48,105,77,84,65,50,76,106,89,50,78,121,73,103,100,50,108,107,100,71,103,57,73,106,81,121,76,106,89,50,78,121,73,103,97,71,86,112,90,50,104,48,80,83,73,48,77,105,52,50,78,106,99,105,76,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,76,50,99,43,67,105,65,103,73,67,65,56,76,50,99,43,67,106,119,118,90,122,52,75,80,67,57,122,100,109,99,43,67,103,61,61,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,98,97,115,101,54,52,44,80,72,78,50,90,121,66,52,98,87,120,117,99,122,48,105,97,72,82,48,99,68,111,118,76,51,100,51,100,121,53,51,77,121,53,118,99,109,99,118,77,106,65,119,77,67,57,122,100,109,99,105,73,72,104,116,98,71,53,122,79,110,104,115,97,87,53,114,80,83,74,111,100,72,82,119,79,105,56,118,100,51,100,51,76,110,99,122,76,109,57,121,90,121,56,120,79,84,107,53,76,51,104,115,97,87,53,114,73,105,66,52,80,83,73,119,99,72,103,105,73,72,107,57,73,106,66,119,101,67,73,75,73,67,65,103,73,67,66,50,97,87,86,51,81,109,57,52,80,83,73,119,73,68,65,103,78,68,73,50,76,106,89,50,78,121,65,48,77,106,89,117,78,106,89,51,73,105,66,122,100,72,108,115,90,84,48,105,90,87,53,104,89,109,120,108,76,87,74,104,89,50,116,110,99,109,57,49,98,109,81,54,98,109,86,51,73,68,65,103,77,67,65,48,77,106,89,117,78,106,89,51,73,68,81,121,78,105,52,50,78,106,99,55,73,105,66,109,97,87,120,115,80,83,73,106,90,109,90,109,73,106,52,75,80,71,99,43,67,105,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,80,72,74,108,89,51,81,103,101,68,48,105,77,84,107,121,73,105,66,53,80,83,73,120,79,84,73,105,73,72,100,112,90,72,82,111,80,83,73,48,77,105,52,50,78,106,99,105,73,71,104,108,97,87,100,111,100,68,48,105,77,84,73,52,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,119,89,88,82,111,73,71,81,57,73,107,48,121,77,84,77,117,77,122,77,122,76,68,66,68,79,84,85,117,78,68,89,51,76,68,65,115,77,67,119,53,78,83,52,48,78,106,99,115,77,67,119,121,77,84,77,117,77,122,77,122,99,122,107,49,76,106,81,50,78,121,119,121,77,84,77,117,77,122,77,122,76,68,73,120,77,121,52,122,77,122,77,115,77,106,69,122,76,106,77,122,77,49,77,48,77,106,89,117,78,106,89,51,76,68,77,122,77,83,52,121,76,68,81,121,78,105,52,50,78,106,99,115,77,106,69,122,76,106,77,122,77,119,111,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,85,122,77,122,77,83,52,121,76,68,65,115,77,106,69,122,76,106,77,122,77,121,119,119,101,105,66,78,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,106,76,84,107,48,76,106,65,52,76,68,65,116,77,84,99,119,76,106,89,50,78,121,48,51,78,105,52,49,79,68,99,116,77,84,99,119,76,106,89,50,78,121,48,120,78,122,65,117,78,106,89,51,85,122,69,120,79,83,52,121,78,84,77,115,78,68,73,117,78,106,89,51,76,68,73,120,77,121,52,122,77,122,77,115,78,68,73,117,78,106,89,51,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,66,84,77,122,103,48,76,68,69,120,79,83,52,121,78,84,77,115,77,122,103,48,76,68,73,120,77,121,52,122,77,122,78,84,77,122,65,51,76,106,81,120,77,121,119,122,79,68,81,115,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,54,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,121,90,87,78,48,73,72,103,57,73,106,69,53,77,105,73,103,101,84,48,105,77,84,65,50,76,106,89,50,78,121,73,103,100,50,108,107,100,71,103,57,73,106,81,121,76,106,89,50,78,121,73,103,97,71,86,112,90,50,104,48,80,83,73,48,77,105,52,50,78,106,99,105,76,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,76,50,99,43,67,105,65,103,73,67,65,56,76,50,99,43,67,106,119,118,90,122,52,75,80,67,57,122,100,109,99,43,67,103,61,61,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,98,97,115,101,54,52,44,80,72,78,50,90,121,66,52,98,87,120,117,99,122,48,105,97,72,82,48,99,68,111,118,76,51,100,51,100,121,53,51,77,121,53,118,99,109,99,118,77,106,65,119,77,67,57,122,100,109,99,105,73,72,104,116,98,71,53,122,79,110,104,115,97,87,53,114,80,83,74,111,100,72,82,119,79,105,56,118,100,51,100,51,76,110,99,122,76,109,57,121,90,121,56,120,79,84,107,53,76,51,104,115,97,87,53,114,73,105,66,52,80,83,73,119,99,72,103,105,73,72,107,57,73,106,66,119,101,67,73,75,73,67,65,103,73,67,66,50,97,87,86,51,81,109,57,52,80,83,73,119,73,68,65,103,78,68,73,50,76,106,89,50,78,121,65,48,77,106,89,117,78,106,89,51,73,105,66,122,100,72,108,115,90,84,48,105,90,87,53,104,89,109,120,108,76,87,74,104,89,50,116,110,99,109,57,49,98,109,81,54,98,109,86,51,73,68,65,103,77,67,65,48,77,106,89,117,78,106,89,51,73,68,81,121,78,105,52,50,78,106,99,55,73,105,66,109,97,87,120,115,80,83,73,106,90,109,90,109,73,106,52,75,80,71,99,43,67,105,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,80,72,74,108,89,51,81,103,101,68,48,105,77,84,107,121,73,105,66,53,80,83,73,120,79,84,73,105,73,72,100,112,90,72,82,111,80,83,73,48,77,105,52,50,78,106,99,105,73,71,104,108,97,87,100,111,100,68,48,105,77,84,73,52,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,119,89,88,82,111,73,71,81,57,73,107,48,121,77,84,77,117,77,122,77,122,76,68,66,68,79,84,85,117,78,68,89,51,76,68,65,115,77,67,119,53,78,83,52,48,78,106,99,115,77,67,119,121,77,84,77,117,77,122,77,122,99,122,107,49,76,106,81,50,78,121,119,121,77,84,77,117,77,122,77,122,76,68,73,120,77,121,52,122,77,122,77,115,77,106,69,122,76,106,77,122,77,49,77,48,77,106,89,117,78,106,89,51,76,68,77,122,77,83,52,121,76,68,81,121,78,105,52,50,78,106,99,115,77,106,69,122,76,106,77,122,77,119,111,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,85,122,77,122,77,83,52,121,76,68,65,115,77,106,69,122,76,106,77,122,77,121,119,119,101,105,66,78,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,106,76,84,107,48,76,106,65,52,76,68,65,116,77,84,99,119,76,106,89,50,78,121,48,51,78,105,52,49,79,68,99,116,77,84,99,119,76,106,89,50,78,121,48,120,78,122,65,117,78,106,89,51,85,122,69,120,79,83,52,121,78,84,77,115,78,68,73,117,78,106,89,51,76,68,73,120,77,121,52,122,77,122,77,115,78,68,73,117,78,106,89,51,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,66,84,77,122,103,48,76,68,69,120,79,83,52,121,78,84,77,115,77,122,103,48,76,68,73,120,77,121,52,122,77,122,78,84,77,122,65,51,76,106,81,120,77,121,119,122,79,68,81,115,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,54,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,121,90,87,78,48,73,72,103,57,73,106,69,53,77,105,73,103,101,84,48,105,77,84,65,50,76,106,89,50,78,121,73,103,100,50,108,107,100,71,103,57,73,106,81,121,76,106,89,50,78,121,73,103,97,71,86,112,90,50,104,48,80,83,73,48,77,105,52,50,78,106,99,105,76,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,76,50,99,43,67,105,65,103,73,67,65,56,76,50,99,43,67,106,119,118,90,122,52,75,80,67,57,122,100,109,99,43,67,103,61,61,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,98,97,115,101,54,52,44,80,72,78,50,90,121,66,52,98,87,120,117,99,122,48,105,97,72,82,48,99,68,111,118,76,51,100,51,100,121,53,51,77,121,53,118,99,109,99,118,77,106,65,119,77,67,57,122,100,109,99,105,73,72,104,116,98,71,53,122,79,110,104,115,97,87,53,114,80,83,74,111,100,72,82,119,79,105,56,118,100,51,100,51,76,110,99,122,76,109,57,121,90,121,56,120,79,84,107,53,76,51,104,115,97,87,53,114,73,105,66,52,80,83,73,119,99,72,103,105,73,72,107,57,73,106,66,119,101,67,73,75,73,67,65,103,73,67,66,50,97,87,86,51,81,109,57,52,80,83,73,119,73,68,65,103,78,68,73,50,76,106,89,50,78,121,65,48,77,106,89,117,78,106,89,51,73,105,66,122,100,72,108,115,90,84,48,105,90,87,53,104,89,109,120,108,76,87,74,104,89,50,116,110,99,109,57,49,98,109,81,54,98,109,86,51,73,68,65,103,77,67,65,48,77,106,89,117,78,106,89,51,73,68,81,121,78,105,52,50,78,106,99,55,73,105,66,109,97,87,120,115,80,83,73,106,90,109,90,109,73,106,52,75,80,71,99,43,67,105,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,80,72,74,108,89,51,81,103,101,68,48,105,77,84,107,121,73,105,66,53,80,83,73,120,79,84,73,105,73,72,100,112,90,72,82,111,80,83,73,48,77,105,52,50,78,106,99,105,73,71,104,108,97,87,100,111,100,68,48,105,77,84,73,52,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,119,89,88,82,111,73,71,81,57,73,107,48,121,77,84,77,117,77,122,77,122,76,68,66,68,79,84,85,117,78,68,89,51,76,68,65,115,77,67,119,53,78,83,52,48,78,106,99,115,77,67,119,121,77,84,77,117,77,122,77,122,99,122,107,49,76,106,81,50,78,121,119,121,77,84,77,117,77,122,77,122,76,68,73,120,77,121,52,122,77,122,77,115,77,106,69,122,76,106,77,122,77,49,77,48,77,106,89,117,78,106,89,51,76,68,77,122,77,83,52,121,76,68,81,121,78,105,52,50,78,106,99,115,77,106,69,122,76,106,77,122,77,119,111,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,85,122,77,122,77,83,52,121,76,68,65,115,77,106,69,122,76,106,77,122,77,121,119,119,101,105,66,78,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,106,76,84,107,48,76,106,65,52,76,68,65,116,77,84,99,119,76,106,89,50,78,121,48,51,78,105,52,49,79,68,99,116,77,84,99,119,76,106,89,50,78,121,48,120,78,122,65,117,78,106,89,51,85,122,69,120,79,83,52,121,78,84,77,115,78,68,73,117,78,106,89,51,76,68,73,120,77,121,52,122,77,122,77,115,78,68,73,117,78,106,89,51,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,66,84,77,122,103,48,76,68,69,120,79,83,52,121,78,84,77,115,77,122,103,48,76,68,73,120,77,121,52,122,77,122,78,84,77,122,65,51,76,106,81,120,77,121,119,122,79,68,81,115,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,54,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,121,90,87,78,48,73,72,103,57,73,106,69,53,77,105,73,103,101,84,48,105,77,84,65,50,76,106,89,50,78,121,73,103,100,50,108,107,100,71,103,57,73,106,81,121,76,106,89,50,78,121,73,103,97,71,86,112,90,50,104,48,80,83,73,48,77,105,52,50,78,106,99,105,76,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,76,50,99,43,67,105,65,103,73,67,65,56,76,50,99,43,67,106,119,118,90,122,52,75,80,67,57,122,100,109,99,43,67,103,61,61,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,50,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,49,56,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,54,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,50,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,49,56,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,54,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,50,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,49,56,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,54,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,50,52,37,50,53,50,48,50,52,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,54,97,54,97,54,97,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,49,50,37,50,53,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,53,50,48,48,37,50,53,50,48,50,46,48,49,54,37,50,53,50,48,48,46,57,51,56,37,50,53,50,48,50,46,48,49,54,37,50,53,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,53,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,53,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,53,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,53,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,49,56,37,50,53,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,53,50,48,48,37,50,53,50,48,50,46,48,49,54,37,50,53,50,48,48,46,57,51,56,37,50,53,50,48,50,46,48,49,54,37,50,53,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,53,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,53,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,53,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,53,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,54,37,50,53,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,53,50,48,48,37,50,53,50,48,50,46,48,49,54,37,50,53,50,48,48,46,57,51,56,37,50,53,50,48,50,46,48,49,54,37,50,53,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,53,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,53,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,53,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,53,50,48,50,46,48,49,54,45,50,46,48,49,54,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,49,50,37,50,48,55,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,118,51,104,51,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,51,118,51,113,48,37,50,48,48,46,52,49,52,45,48,46,50,57,51,37,50,48,48,46,55,48,55,116,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,45,48,46,50,57,51,45,48,46,50,57,51,45,48,46,55,48,55,118,45,51,104,45,51,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,104,51,118,45,51,113,48,45,48,46,52,49,52,37,50,48,48,46,50,57,51,45,48,46,55,48,55,116,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,49,50,37,50,48,55,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,118,51,104,51,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,51,118,51,113,48,37,50,48,48,46,52,49,52,45,48,46,50,57,51,37,50,48,48,46,55,48,55,116,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,45,48,46,50,57,51,45,48,46,50,57,51,45,48,46,55,48,55,118,45,51,104,45,51,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,104,51,118,45,51,113,48,45,48,46,52,49,52,37,50,48,48,46,50,57,51,45,48,46,55,48,55,116,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,49,50,37,50,48,55,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,118,51,104,51,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,51,118,51,113,48,37,50,48,48,46,52,49,52,45,48,46,50,57,51,37,50,48,48,46,55,48,55,116,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,45,48,46,50,57,51,45,48,46,50,57,51,45,48,46,55,48,55,118,45,51,104,45,51,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,104,51,118,45,51,113,48,45,48,46,52,49,52,37,50,48,48,46,50,57,51,45,48,46,55,48,55,116,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,50,52,37,50,53,50,48,50,52,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,97,97,97,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,52,37,50,53,50,48,49,104,49,54,113,49,46,50,52,50,37,50,53,50,48,48,37,50,53,50,48,50,46,49,50,49,37,50,53,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,53,50,48,50,46,49,50,49,118,49,54,113,48,37,50,53,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,53,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,53,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,53,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,53,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,53,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,53,50,48,48,45,48,46,55,48,55,37,50,53,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,53,50,48,48,46,55,48,55,118,49,54,113,48,37,50,53,50,48,48,46,52,49,52,37,50,53,50,48,48,46,50,57,51,37,50,53,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,53,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,53,50,48,48,37,50,53,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,49,50,37,50,53,50,48,55,113,48,46,52,49,52,37,50,53,50,48,48,37,50,53,50,48,48,46,55,48,55,37,50,53,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,53,50,48,48,46,55,48,55,118,51,104,51,113,48,46,52,49,52,37,50,53,50,48,48,37,50,53,50,48,48,46,55,48,55,37,50,53,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,53,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,53,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,53,50,48,48,46,50,57,51,104,45,51,118,51,113,48,37,50,53,50,48,48,46,52,49,52,45,48,46,50,57,51,37,50,53,50,48,48,46,55,48,55,116,45,48,46,55,48,55,37,50,53,50,48,48,46,50,57,51,45,48,46,55,48,55,45,48,46,50,57,51,45,48,46,50,57,51,45,48,46,55,48,55,118,45,51,104,45,51,113,45,48,46,52,49,52,37,50,53,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,53,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,53,50,48,48,46,55,48,55,45,48,46,50,57,51,104,51,118,45,51,113,48,45,48,46,52,49,52,37,50,53,50,48,48,46,50,57,51,45,48,46,55,48,55,116,48,46,55,48,55,45,48,46,50,57,51,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,56,37,50,48,49,49,104,56,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,56,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,56,37,50,48,49,49,104,56,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,56,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,56,37,50,48,49,49,104,56,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,56,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,50,52,37,50,53,50,48,50,52,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,97,97,97,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,52,37,50,53,50,48,49,104,49,54,113,49,46,50,52,50,37,50,53,50,48,48,37,50,53,50,48,50,46,49,50,49,37,50,53,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,53,50,48,50,46,49,50,49,118,49,54,113,48,37,50,53,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,53,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,53,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,53,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,53,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,53,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,53,50,48,48,45,48,46,55,48,55,37,50,53,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,53,50,48,48,46,55,48,55,118,49,54,113,48,37,50,53,50,48,48,46,52,49,52,37,50,53,50,48,48,46,50,57,51,37,50,53,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,53,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,53,50,48,48,37,50,53,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,56,37,50,53,50,48,49,49,104,56,113,48,46,52,49,52,37,50,53,50,48,48,37,50,53,50,48,48,46,55,48,55,37,50,53,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,53,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,53,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,53,50,48,48,46,50,57,51,104,45,56,113,45,48,46,52,49,52,37,50,53,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,53,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,53,50,48,48,46,55,48,55,45,48,46,50,57,51,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,48,99,99,99,48,97,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,50,55,37,50,53,50,48,48,99,50,46,55,54,49,37,50,53,50,48,48,37,50,53,50,48,53,37,50,53,50,48,50,46,50,51,57,37,50,53,50,48,53,37,50,53,50,48,53,37,50,53,50,48,48,37,50,53,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,53,50,48,50,46,49,54,52,45,49,37,50,53,50,48,51,108,45,50,37,50,53,50,48,50,45,55,45,55,37,50,53,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,53,50,48,49,46,56,55,52,45,49,37,50,53,50,48,51,45,49,122,77,50,37,50,53,50,48,50,51,108,45,50,37,50,53,50,48,57,37,50,53,50,48,57,45,50,37,50,53,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,53,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,53,50,48,49,49,46,51,54,50,108,45,49,52,37,50,53,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,53,50,48,49,52,45,49,52,37,50,53,50,48,49,46,55,50,52,37,50,53,50,48,49,46,55,50,52,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,37,50,53,48,65,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,48,99,99,99,48,97,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,50,55,37,50,53,50,48,52,108,45,49,53,37,50,53,50,48,49,53,45,55,45,55,45,53,37,50,53,50,48,53,37,50,53,50,48,49,50,37,50,53,50,48,49,50,37,50,53,50,48,50,48,45,50,48,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,48,99,99,99,48,97,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,51,49,37,50,53,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,53,50,48,48,45,49,37,50,53,50,48,48,46,52,52,56,45,49,37,50,53,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,53,50,48,48,45,49,37,50,53,50,48,48,46,52,52,56,45,49,37,50,53,50,48,49,118,54,99,48,37,50,53,50,48,48,46,53,53,50,37,50,53,50,48,48,46,52,52,56,37,50,53,50,48,49,37,50,53,50,48,49,37,50,53,50,48,49,104,49,49,118,49,49,99,48,37,50,53,50,48,48,46,53,53,50,37,50,53,50,48,48,46,52,52,56,37,50,53,50,48,49,37,50,53,50,48,49,37,50,53,50,48,49,104,54,99,48,46,53,53,50,37,50,53,50,48,48,37,50,53,50,48,49,45,48,46,52,52,56,37,50,53,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,53,50,48,48,37,50,53,50,48,49,45,48,46,52,52,56,37,50,53,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,49,55,57,98,98,57,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,49,52,37,50,53,50,48,52,108,52,37,50,53,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,49,55,57,98,98,57,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,50,54,37,50,53,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,53,50,48,49,54,122,77,52,37,50,53,50,48,49,50,108,45,52,37,50,53,50,48,49,56,118,45,50,54,104,57,108,52,37,50,53,50,48,52,104,49,51,118,52,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,37,50,53,48,65,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,49,55,57,98,98,57,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,50,56,46,54,56,49,37,50,53,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,53,50,48,48,45,50,46,53,37,50,53,50,48,49,46,49,50,49,45,50,46,53,37,50,53,50,48,50,46,53,118,50,55,99,48,37,50,53,50,48,49,46,51,55,56,37,50,53,50,48,49,46,49,50,50,37,50,53,50,48,50,46,53,37,50,53,50,48,50,46,53,37,50,53,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,53,50,48,48,37,50,53,50,48,50,46,53,45,49,46,49,50,50,37,50,53,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,53,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,53,50,48,48,46,57,53,57,37,50,53,50,48,49,46,55,49,50,37,50,53,50,48,49,46,56,50,53,37,50,53,50,48,50,46,50,54,56,37,50,53,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,53,50,48,48,46,53,53,54,37,50,53,50,48,49,46,53,56,52,37,50,53,50,48,49,46,51,48,57,37,50,53,50,48,50,46,53,52,51,37,50,53,50,48,50,46,50,54,56,122,77,50,56,37,50,53,50,48,50,57,46,53,99,48,37,50,53,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,53,50,48,48,46,53,45,48,46,53,37,50,53,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,53,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,53,50,48,48,46,50,50,57,45,48,46,53,37,50,53,50,48,48,46,53,45,48,46,53,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,49,53,46,52,57,57,45,48,37,50,53,50,48,49,53,46,53,37,50,53,50,48,48,118,55,99,48,37,50,53,50,48,48,46,53,53,50,37,50,53,50,48,48,46,52,52,56,37,50,53,50,48,49,37,50,53,50,48,49,37,50,53,50,48,49,104,55,118,49,57,46,53,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,54,97,54,97,54,97,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,48,37,50,53,50,48,49,51,118,54,99,48,37,50,53,50,48,48,46,53,53,50,37,50,53,50,48,48,46,52,52,56,37,50,53,50,48,49,37,50,53,50,48,49,37,50,53,50,48,49,104,51,48,99,48,46,53,53,50,37,50,53,50,48,48,37,50,53,50,48,49,45,48,46,52,52,56,37,50,53,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,53,50,48,48,45,49,37,50,53,50,48,48,46,52,52,56,45,49,37,50,53,50,48,49,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,54,97,54,97,54,97,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,49,52,37,50,53,50,48,52,108,52,37,50,53,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,54,97,54,97,54,97,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,50,54,37,50,53,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,53,50,48,49,54,122,77,52,37,50,53,50,48,49,50,108,45,52,37,50,53,50,48,49,56,118,45,50,54,104,57,108,52,37,50,53,50,48,52,104,49,51,118,52,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,37,50,53,48,65,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,54,97,54,97,54,97,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,50,55,37,50,53,50,48,48,99,50,46,55,54,49,37,50,53,50,48,48,37,50,53,50,48,53,37,50,53,50,48,50,46,50,51,57,37,50,53,50,48,53,37,50,53,50,48,53,37,50,53,50,48,48,37,50,53,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,53,50,48,50,46,49,54,52,45,49,37,50,53,50,48,51,108,45,50,37,50,53,50,48,50,45,55,45,55,37,50,53,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,53,50,48,49,46,56,55,52,45,49,37,50,53,50,48,51,45,49,122,77,50,37,50,53,50,48,50,51,108,45,50,37,50,53,50,48,57,37,50,53,50,48,57,45,50,37,50,53,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,53,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,53,50,48,49,49,46,51,54,50,108,45,49,52,37,50,53,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,53,50,48,49,52,45,49,52,37,50,53,50,48,49,46,55,50,52,37,50,53,50,48,49,46,55,50,52,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,37,50,53,48,65,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,54,97,54,97,54,97,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,50,55,37,50,53,50,48,52,108,45,49,53,37,50,53,50,48,49,53,45,55,45,55,45,53,37,50,53,50,48,53,37,50,53,50,48,49,50,37,50,53,50,48,49,50,37,50,53,50,48,50,48,45,50,48,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,54,97,54,97,54,97,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,51,49,37,50,53,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,53,50,48,48,45,49,37,50,53,50,48,48,46,52,52,56,45,49,37,50,53,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,53,50,48,48,45,49,37,50,53,50,48,48,46,52,52,56,45,49,37,50,53,50,48,49,118,54,99,48,37,50,53,50,48,48,46,53,53,50,37,50,53,50,48,48,46,52,52,56,37,50,53,50,48,49,37,50,53,50,48,49,37,50,53,50,48,49,104,49,49,118,49,49,99,48,37,50,53,50,48,48,46,53,53,50,37,50,53,50,48,48,46,52,52,56,37,50,53,50,48,49,37,50,53,50,48,49,37,50,53,50,48,49,104,54,99,48,46,53,53,50,37,50,53,50,48,48,37,50,53,50,48,49,45,48,46,52,52,56,37,50,53,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,53,50,48,48,37,50,53,50,48,49,45,48,46,52,52,56,37,50,53,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,54,97,54,97,54,97,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,51,49,46,55,48,56,37,50,53,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,53,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,53,50,48,48,45,48,37,50,53,50,48,48,45,48,37,50,53,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,53,50,48,48,46,49,56,45,48,46,50,50,55,37,50,53,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,53,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,53,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,53,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,53,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,53,50,48,48,46,50,50,56,37,50,53,50,48,48,37,50,53,50,48,48,45,48,37,50,53,50,48,48,45,48,37,50,53,50,48,48,108,45,57,46,55,48,56,37,50,53,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,53,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,53,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,53,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,53,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,53,50,48,49,46,48,53,55,37,50,53,50,48,48,46,48,52,57,37,50,53,50,48,48,46,49,51,37,50,53,50,48,48,46,49,50,52,37,50,53,50,48,48,46,50,53,50,37,50,53,50,48,48,46,50,50,57,37,50,53,50,48,48,46,51,53,55,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,108,57,46,55,48,56,37,50,53,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,53,50,48,57,46,55,48,56,99,45,48,37,50,53,50,48,48,45,48,37,50,53,50,48,48,45,48,37,50,53,50,48,48,45,48,46,49,48,52,37,50,53,50,48,48,46,49,48,53,45,48,46,49,56,37,50,53,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,53,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,53,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,53,50,48,48,46,55,55,49,37,50,53,50,48,48,46,50,50,57,37,50,53,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,53,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,53,50,48,48,46,50,56,54,37,50,53,50,48,48,46,55,48,50,37,50,53,50,48,48,46,51,54,49,37,50,53,50,48,49,46,48,53,55,37,50,53,50,48,48,46,50,50,57,37,50,53,50,48,48,46,49,51,45,48,46,48,52,57,37,50,53,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,53,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,53,50,48,48,45,48,37,50,53,50,48,48,45,48,37,50,53,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,53,50,48,57,46,55,48,56,37,50,53,50,48,57,46,55,48,56,99,48,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,46,49,48,53,37,50,53,50,48,48,46,49,48,53,37,50,53,50,48,48,46,50,50,55,37,50,53,50,48,48,46,49,56,37,50,53,50,48,48,46,51,53,55,37,50,53,50,48,48,46,50,50,57,37,50,53,50,48,48,46,51,53,54,37,50,53,50,48,48,46,49,51,51,37,50,53,50,48,48,46,55,55,49,37,50,53,50,48,48,46,48,53,55,37,50,53,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,53,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,53,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,53,97,53,97,53,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,53,97,53,97,53,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,53,97,53,97,53,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,97,53,97,53,97,53,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,50,56,46,54,56,49,37,50,53,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,53,50,48,48,45,50,46,53,37,50,53,50,48,49,46,49,50,49,45,50,46,53,37,50,53,50,48,50,46,53,118,50,55,99,48,37,50,53,50,48,49,46,51,55,56,37,50,53,50,48,49,46,49,50,50,37,50,53,50,48,50,46,53,37,50,53,50,48,50,46,53,37,50,53,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,53,50,48,48,37,50,53,50,48,50,46,53,45,49,46,49,50,50,37,50,53,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,53,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,53,50,48,48,46,57,53,57,37,50,53,50,48,49,46,55,49,50,37,50,53,50,48,49,46,56,50,53,37,50,53,50,48,50,46,50,54,56,37,50,53,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,53,50,48,48,46,53,53,54,37,50,53,50,48,49,46,53,56,52,37,50,53,50,48,49,46,51,48,57,37,50,53,50,48,50,46,53,52,51,37,50,53,50,48,50,46,50,54,56,122,77,50,56,37,50,53,50,48,50,57,46,53,99,48,37,50,53,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,53,50,48,48,46,53,45,48,46,53,37,50,53,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,53,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,53,50,48,48,46,50,50,57,45,48,46,53,37,50,53,50,48,48,46,53,45,48,46,53,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,49,53,46,52,57,57,45,48,37,50,53,50,48,49,53,46,53,37,50,53,50,48,48,118,55,99,48,37,50,53,50,48,48,46,53,53,50,37,50,53,50,48,48,46,52,52,56,37,50,53,50,48,49,37,50,53,50,48,49,37,50,53,50,48,49,104,55,118,49,57,46,53,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,99,48,48,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,48,37,50,53,50,48,49,51,118,54,99,48,37,50,53,50,48,48,46,53,53,50,37,50,53,50,48,48,46,52,52,56,37,50,53,50,48,49,37,50,53,50,48,49,37,50,53,50,48,49,104,51,48,99,48,46,53,53,50,37,50,53,50,48,48,37,50,53,50,48,49,45,48,46,52,52,56,37,50,53,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,53,50,48,48,45,49,37,50,53,50,48,48,46,52,52,56,45,49,37,50,53,50,48,49,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,118,101,114,115,105,111,110,37,50,53,51,68,37,50,53,50,50,49,46,49,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,120,109,108,110,115,37,50,53,51,65,120,108,105,110,107,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,49,57,57,57,37,50,53,50,70,120,108,105,110,107,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,51,50,37,50,53,50,48,51,50,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,99,48,48,37,50,53,50,50,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,51,49,46,55,48,56,37,50,53,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,53,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,53,50,48,48,45,48,37,50,53,50,48,48,45,48,37,50,53,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,53,50,48,48,46,49,56,45,48,46,50,50,55,37,50,53,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,53,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,53,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,53,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,53,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,53,50,48,48,46,50,50,56,37,50,53,50,48,48,37,50,53,50,48,48,45,48,37,50,53,50,48,48,45,48,37,50,53,50,48,48,108,45,57,46,55,48,56,37,50,53,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,53,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,53,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,53,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,53,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,53,50,48,49,46,48,53,55,37,50,53,50,48,48,46,48,52,57,37,50,53,50,48,48,46,49,51,37,50,53,50,48,48,46,49,50,52,37,50,53,50,48,48,46,50,53,50,37,50,53,50,48,48,46,50,50,57,37,50,53,50,48,48,46,51,53,55,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,108,57,46,55,48,56,37,50,53,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,53,50,48,57,46,55,48,56,99,45,48,37,50,53,50,48,48,45,48,37,50,53,50,48,48,45,48,37,50,53,50,48,48,45,48,46,49,48,52,37,50,53,50,48,48,46,49,48,53,45,48,46,49,56,37,50,53,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,53,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,53,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,53,50,48,48,46,55,55,49,37,50,53,50,48,48,46,50,50,57,37,50,53,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,53,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,53,50,48,48,46,50,56,54,37,50,53,50,48,48,46,55,48,50,37,50,53,50,48,48,46,51,54,49,37,50,53,50,48,49,46,48,53,55,37,50,53,50,48,48,46,50,50,57,37,50,53,50,48,48,46,49,51,45,48,46,48,52,57,37,50,53,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,53,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,53,50,48,48,45,48,37,50,53,50,48,48,45,48,37,50,53,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,53,50,48,57,46,55,48,56,37,50,53,50,48,57,46,55,48,56,99,48,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,37,50,53,50,48,48,46,49,48,53,37,50,53,50,48,48,46,49,48,53,37,50,53,50,48,48,46,50,50,55,37,50,53,50,48,48,46,49,56,37,50,53,50,48,48,46,51,53,55,37,50,53,50,48,48,46,50,50,57,37,50,53,50,48,48,46,51,53,54,37,50,53,50,48,48,46,49,51,51,37,50,53,50,48,48,46,55,55,49,37,50,53,50,48,48,46,48,53,55,37,50,53,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,53,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,53,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,44,10,10,47,42,42,42,47,32,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,119,105,100,116,104,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,104,101,105,103,104,116,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,49,48,48,37,50,48,49,48,48,37,50,50,37,50,48,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,37,51,68,37,50,50,120,77,105,100,89,77,105,100,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,117,105,108,45,114,105,110,103,37,50,50,37,51,69,37,51,67,114,101,99,116,37,50,48,120,37,51,68,37,50,50,48,37,50,50,37,50,48,121,37,51,68,37,50,50,48,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,110,111,110,101,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,98,107,37,50,50,37,51,69,37,51,67,37,50,70,114,101,99,116,37,51,69,37,51,67,100,101,102,115,37,51,69,37,51,67,102,105,108,116,101,114,37,50,48,105,100,37,51,68,37,50,50,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,50,37,50,48,120,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,121,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,51,69,37,51,67,102,101,79,102,102,115,101,116,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,100,120,37,51,68,37,50,50,48,37,50,50,37,50,48,100,121,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,79,102,102,115,101,116,37,51,69,37,51,67,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,115,116,100,68,101,118,105,97,116,105,111,110,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,51,69,37,51,67,102,101,66,108,101,110,100,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,105,110,50,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,109,111,100,101,37,51,68,37,50,50,110,111,114,109,97,108,37,50,50,37,51,69,37,51,67,37,50,70,102,101,66,108,101,110,100,37,51,69,37,51,67,37,50,70,102,105,108,116,101,114,37,51,69,37,51,67,37,50,70,100,101,102,115,37,51,69,37,51,67,112,97,116,104,37,50,48,100,37,51,68,37,50,50,77,49,48,37,50,67,53,48,99,48,37,50,67,48,37,50,67,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,37,50,67,48,46,50,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,46,49,37,50,67,48,46,55,37,50,67,48,46,49,37,50,67,49,46,49,99,48,46,49,37,50,67,48,46,52,37,50,67,48,46,49,37,50,67,48,46,56,37,50,67,48,46,50,37,50,67,49,46,50,99,48,46,50,37,50,67,48,46,56,37,50,67,48,46,51,37,50,67,49,46,56,37,50,67,48,46,53,37,50,67,50,46,56,37,50,48,99,48,46,51,37,50,67,49,37,50,67,48,46,54,37,50,67,50,46,49,37,50,67,48,46,57,37,50,67,51,46,50,99,48,46,51,37,50,67,49,46,49,37,50,67,48,46,57,37,50,67,50,46,51,37,50,67,49,46,52,37,50,67,51,46,53,99,48,46,53,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,50,46,52,37,50,67,49,46,56,37,50,67,51,46,55,99,48,46,51,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,49,46,57,99,48,46,52,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,51,37,50,67,49,46,51,37,50,67,49,46,57,37,50,48,99,49,37,50,67,49,46,50,37,50,67,49,46,57,37,50,67,50,46,54,37,50,67,51,46,49,37,50,67,51,46,55,99,50,46,50,37,50,67,50,46,53,37,50,67,53,37,50,67,52,46,55,37,50,67,55,46,57,37,50,67,54,46,55,99,51,37,50,67,50,37,50,67,54,46,53,37,50,67,51,46,52,37,50,67,49,48,46,49,37,50,67,52,46,54,99,51,46,54,37,50,67,49,46,49,37,50,67,55,46,53,37,50,67,49,46,53,37,50,67,49,49,46,50,37,50,67,49,46,54,99,52,45,48,46,49,37,50,67,55,46,55,45,48,46,54,37,50,67,49,49,46,51,45,49,46,54,37,50,48,99,51,46,54,45,49,46,50,37,50,67,55,45,50,46,54,37,50,67,49,48,45,52,46,54,99,51,45,50,37,50,67,53,46,56,45,52,46,50,37,50,67,55,46,57,45,54,46,55,99,49,46,50,45,49,46,50,37,50,67,50,46,49,45,50,46,53,37,50,67,51,46,49,45,51,46,55,99,48,46,53,45,48,46,54,37,50,67,48,46,57,45,49,46,51,37,50,67,49,46,51,45,49,46,57,99,48,46,52,45,48,46,54,37,50,67,48,46,56,45,49,46,51,37,50,67,49,46,50,45,49,46,57,37,50,48,99,48,46,54,45,49,46,51,37,50,67,49,46,51,45,50,46,53,37,50,67,49,46,56,45,51,46,55,99,48,46,53,45,49,46,50,37,50,67,49,45,50,46,52,37,50,67,49,46,52,45,51,46,53,99,48,46,51,45,49,46,49,37,50,67,48,46,54,45,50,46,50,37,50,67,48,46,57,45,51,46,50,99,48,46,50,45,49,37,50,67,48,46,52,45,49,46,57,37,50,67,48,46,53,45,50,46,56,99,48,46,49,45,48,46,52,37,50,67,48,46,49,45,48,46,56,37,50,67,48,46,50,45,49,46,50,37,50,48,99,48,45,48,46,52,37,50,67,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,49,99,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,50,37,50,67,48,46,50,45,49,46,55,67,57,48,37,50,67,53,48,46,53,37,50,67,57,48,37,50,67,53,48,37,50,67,57,48,37,50,67,53,48,115,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,37,50,67,48,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,37,50,67,48,46,55,37,50,67,48,37,50,67,49,46,49,37,50,48,99,48,37,50,67,48,46,52,45,48,46,49,37,50,67,48,46,56,45,48,46,49,37,50,67,49,46,50,99,45,48,46,49,37,50,67,48,46,57,45,48,46,50,37,50,67,49,46,56,45,48,46,52,37,50,67,50,46,56,99,45,48,46,50,37,50,67,49,45,48,46,53,37,50,67,50,46,49,45,48,46,55,37,50,67,51,46,51,99,45,48,46,51,37,50,67,49,46,50,45,48,46,56,37,50,67,50,46,52,45,49,46,50,37,50,67,51,46,55,99,45,48,46,50,37,50,67,48,46,55,45,48,46,53,37,50,67,49,46,51,45,48,46,56,37,50,67,49,46,57,37,50,48,99,45,48,46,51,37,50,67,48,46,55,45,48,46,54,37,50,67,49,46,51,45,48,46,57,37,50,67,50,99,45,48,46,51,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,51,45,49,46,49,37,50,67,50,99,45,48,46,52,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,52,45,49,46,50,37,50,67,50,99,45,49,37,50,67,49,46,51,45,49,46,57,37,50,67,50,46,55,45,51,46,49,37,50,67,52,99,45,50,46,50,37,50,67,50,46,55,45,53,37,50,67,53,45,56,46,49,37,50,67,55,46,49,37,50,48,99,45,48,46,56,37,50,67,48,46,53,45,49,46,54,37,50,67,49,45,50,46,52,37,50,67,49,46,53,99,45,48,46,56,37,50,67,48,46,53,45,49,46,55,37,50,67,48,46,57,45,50,46,54,37,50,67,49,46,51,76,54,54,37,50,67,56,55,46,55,108,45,49,46,52,37,50,67,48,46,53,99,45,48,46,57,37,50,67,48,46,51,45,49,46,56,37,50,67,48,46,55,45,50,46,56,37,50,67,49,99,45,51,46,56,37,50,67,49,46,49,45,55,46,57,37,50,67,49,46,55,45,49,49,46,56,37,50,67,49,46,56,76,52,55,37,50,67,57,48,46,56,37,50,48,99,45,49,37,50,67,48,45,50,45,48,46,50,45,51,45,48,46,51,108,45,49,46,53,45,48,46,50,108,45,48,46,55,45,48,46,49,76,52,49,46,49,37,50,67,57,48,99,45,49,45,48,46,51,45,49,46,57,45,48,46,53,45,50,46,57,45,48,46,55,99,45,48,46,57,45,48,46,51,45,49,46,57,45,48,46,55,45,50,46,56,45,49,76,51,52,37,50,67,56,55,46,55,108,45,49,46,51,45,48,46,54,37,50,48,99,45,48,46,57,45,48,46,52,45,49,46,56,45,48,46,56,45,50,46,54,45,49,46,51,99,45,48,46,56,45,48,46,53,45,49,46,54,45,49,45,50,46,52,45,49,46,53,99,45,51,46,49,45,50,46,49,45,53,46,57,45,52,46,53,45,56,46,49,45,55,46,49,99,45,49,46,50,45,49,46,50,45,50,46,49,45,50,46,55,45,51,46,49,45,52,99,45,48,46,53,45,48,46,54,45,48,46,56,45,49,46,52,45,49,46,50,45,50,37,50,48,99,45,48,46,52,45,48,46,55,45,48,46,56,45,49,46,51,45,49,46,49,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,57,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,56,45,49,46,57,99,45,48,46,52,45,49,46,51,45,48,46,57,45,50,46,53,45,49,46,50,45,51,46,55,99,45,48,46,51,45,49,46,50,45,48,46,53,45,50,46,51,45,48,46,55,45,51,46,51,37,50,48,99,45,48,46,50,45,49,45,48,46,51,45,50,45,48,46,52,45,50,46,56,99,45,48,46,49,45,48,46,52,45,48,46,49,45,48,46,56,45,48,46,49,45,49,46,50,99,48,45,48,46,52,37,50,67,48,45,48,46,55,37,50,67,48,45,49,46,49,99,48,45,48,46,55,37,50,67,48,45,49,46,50,37,50,67,48,45,49,46,55,67,49,48,37,50,67,53,48,46,53,37,50,67,49,48,37,50,67,53,48,37,50,67,49,48,37,50,67,53,48,122,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,49,51,49,51,56,37,50,50,37,50,48,102,105,108,116,101,114,37,51,68,37,50,50,117,114,108,37,50,56,37,50,51,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,57,37,50,50,37,51,69,37,51,67,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,50,48,97,116,116,114,105,98,117,116,101,78,97,109,101,37,51,68,37,50,50,116,114,97,110,115,102,111,114,109,37,50,50,37,50,48,116,121,112,101,37,51,68,37,50,50,114,111,116,97,116,101,37,50,50,37,50,48,102,114,111,109,37,51,68,37,50,50,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,116,111,37,51,68,37,50,50,51,54,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,114,101,112,101,97,116,67,111,117,110,116,37,51,68,37,50,50,105,110,100,101,102,105,110,105,116,101,37,50,50,37,50,48,100,117,114,37,51,68,37,50,50,49,115,37,50,50,37,51,69,37,51,67,37,50,70,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,58,10,47,42,33,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,33,42,92,10,32,32,33,42,42,42,32,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,119,105,100,116,104,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,104,101,105,103,104,116,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,49,48,48,37,50,48,49,48,48,37,50,50,37,50,48,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,37,51,68,37,50,50,120,77,105,100,89,77,105,100,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,117,105,108,45,114,105,110,103,37,50,50,37,51,69,37,51,67,114,101,99,116,37,50,48,120,37,51,68,37,50,50,48,37,50,50,37,50,48,121,37,51,68,37,50,50,48,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,110,111,110,101,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,98,107,37,50,50,37,51,69,37,51,67,37,50,70,114,101,99,116,37,51,69,37,51,67,100,101,102,115,37,51,69,37,51,67,102,105,108,116,101,114,37,50,48,105,100,37,51,68,37,50,50,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,50,37,50,48,120,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,121,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,51,69,37,51,67,102,101,79,102,102,115,101,116,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,100,120,37,51,68,37,50,50,48,37,50,50,37,50,48,100,121,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,79,102,102,115,101,116,37,51,69,37,51,67,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,115,116,100,68,101,118,105,97,116,105,111,110,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,51,69,37,51,67,102,101,66,108,101,110,100,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,105,110,50,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,109,111,100,101,37,51,68,37,50,50,110,111,114,109,97,108,37,50,50,37,51,69,37,51,67,37,50,70,102,101,66,108,101,110,100,37,51,69,37,51,67,37,50,70,102,105,108,116,101,114,37,51,69,37,51,67,37,50,70,100,101,102,115,37,51,69,37,51,67,112,97,116,104,37,50,48,100,37,51,68,37,50,50,77,49,48,37,50,67,53,48,99,48,37,50,67,48,37,50,67,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,37,50,67,48,46,50,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,46,49,37,50,67,48,46,55,37,50,67,48,46,49,37,50,67,49,46,49,99,48,46,49,37,50,67,48,46,52,37,50,67,48,46,49,37,50,67,48,46,56,37,50,67,48,46,50,37,50,67,49,46,50,99,48,46,50,37,50,67,48,46,56,37,50,67,48,46,51,37,50,67,49,46,56,37,50,67,48,46,53,37,50,67,50,46,56,37,50,48,99,48,46,51,37,50,67,49,37,50,67,48,46,54,37,50,67,50,46,49,37,50,67,48,46,57,37,50,67,51,46,50,99,48,46,51,37,50,67,49,46,49,37,50,67,48,46,57,37,50,67,50,46,51,37,50,67,49,46,52,37,50,67,51,46,53,99,48,46,53,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,50,46,52,37,50,67,49,46,56,37,50,67,51,46,55,99,48,46,51,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,49,46,57,99,48,46,52,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,51,37,50,67,49,46,51,37,50,67,49,46,57,37,50,48,99,49,37,50,67,49,46,50,37,50,67,49,46,57,37,50,67,50,46,54,37,50,67,51,46,49,37,50,67,51,46,55,99,50,46,50,37,50,67,50,46,53,37,50,67,53,37,50,67,52,46,55,37,50,67,55,46,57,37,50,67,54,46,55,99,51,37,50,67,50,37,50,67,54,46,53,37,50,67,51,46,52,37,50,67,49,48,46,49,37,50,67,52,46,54,99,51,46,54,37,50,67,49,46,49,37,50,67,55,46,53,37,50,67,49,46,53,37,50,67,49,49,46,50,37,50,67,49,46,54,99,52,45,48,46,49,37,50,67,55,46,55,45,48,46,54,37,50,67,49,49,46,51,45,49,46,54,37,50,48,99,51,46,54,45,49,46,50,37,50,67,55,45,50,46,54,37,50,67,49,48,45,52,46,54,99,51,45,50,37,50,67,53,46,56,45,52,46,50,37,50,67,55,46,57,45,54,46,55,99,49,46,50,45,49,46,50,37,50,67,50,46,49,45,50,46,53,37,50,67,51,46,49,45,51,46,55,99,48,46,53,45,48,46,54,37,50,67,48,46,57,45,49,46,51,37,50,67,49,46,51,45,49,46,57,99,48,46,52,45,48,46,54,37,50,67,48,46,56,45,49,46,51,37,50,67,49,46,50,45,49,46,57,37,50,48,99,48,46,54,45,49,46,51,37,50,67,49,46,51,45,50,46,53,37,50,67,49,46,56,45,51,46,55,99,48,46,53,45,49,46,50,37,50,67,49,45,50,46,52,37,50,67,49,46,52,45,51,46,53,99,48,46,51,45,49,46,49,37,50,67,48,46,54,45,50,46,50,37,50,67,48,46,57,45,51,46,50,99,48,46,50,45,49,37,50,67,48,46,52,45,49,46,57,37,50,67,48,46,53,45,50,46,56,99,48,46,49,45,48,46,52,37,50,67,48,46,49,45,48,46,56,37,50,67,48,46,50,45,49,46,50,37,50,48,99,48,45,48,46,52,37,50,67,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,49,99,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,50,37,50,67,48,46,50,45,49,46,55,67,57,48,37,50,67,53,48,46,53,37,50,67,57,48,37,50,67,53,48,37,50,67,57,48,37,50,67,53,48,115,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,37,50,67,48,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,37,50,67,48,46,55,37,50,67,48,37,50,67,49,46,49,37,50,48,99,48,37,50,67,48,46,52,45,48,46,49,37,50,67,48,46,56,45,48,46,49,37,50,67,49,46,50,99,45,48,46,49,37,50,67,48,46,57,45,48,46,50,37,50,67,49,46,56,45,48,46,52,37,50,67,50,46,56,99,45,48,46,50,37,50,67,49,45,48,46,53,37,50,67,50,46,49,45,48,46,55,37,50,67,51,46,51,99,45,48,46,51,37,50,67,49,46,50,45,48,46,56,37,50,67,50,46,52,45,49,46,50,37,50,67,51,46,55,99,45,48,46,50,37,50,67,48,46,55,45,48,46,53,37,50,67,49,46,51,45,48,46,56,37,50,67,49,46,57,37,50,48,99,45,48,46,51,37,50,67,48,46,55,45,48,46,54,37,50,67,49,46,51,45,48,46,57,37,50,67,50,99,45,48,46,51,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,51,45,49,46,49,37,50,67,50,99,45,48,46,52,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,52,45,49,46,50,37,50,67,50,99,45,49,37,50,67,49,46,51,45,49,46,57,37,50,67,50,46,55,45,51,46,49,37,50,67,52,99,45,50,46,50,37,50,67,50,46,55,45,53,37,50,67,53,45,56,46,49,37,50,67,55,46,49,37,50,48,99,45,48,46,56,37,50,67,48,46,53,45,49,46,54,37,50,67,49,45,50,46,52,37,50,67,49,46,53,99,45,48,46,56,37,50,67,48,46,53,45,49,46,55,37,50,67,48,46,57,45,50,46,54,37,50,67,49,46,51,76,54,54,37,50,67,56,55,46,55,108,45,49,46,52,37,50,67,48,46,53,99,45,48,46,57,37,50,67,48,46,51,45,49,46,56,37,50,67,48,46,55,45,50,46,56,37,50,67,49,99,45,51,46,56,37,50,67,49,46,49,45,55,46,57,37,50,67,49,46,55,45,49,49,46,56,37,50,67,49,46,56,76,52,55,37,50,67,57,48,46,56,37,50,48,99,45,49,37,50,67,48,45,50,45,48,46,50,45,51,45,48,46,51,108,45,49,46,53,45,48,46,50,108,45,48,46,55,45,48,46,49,76,52,49,46,49,37,50,67,57,48,99,45,49,45,48,46,51,45,49,46,57,45,48,46,53,45,50,46,57,45,48,46,55,99,45,48,46,57,45,48,46,51,45,49,46,57,45,48,46,55,45,50,46,56,45,49,76,51,52,37,50,67,56,55,46,55,108,45,49,46,51,45,48,46,54,37,50,48,99,45,48,46,57,45,48,46,52,45,49,46,56,45,48,46,56,45,50,46,54,45,49,46,51,99,45,48,46,56,45,48,46,53,45,49,46,54,45,49,45,50,46,52,45,49,46,53,99,45,51,46,49,45,50,46,49,45,53,46,57,45,52,46,53,45,56,46,49,45,55,46,49,99,45,49,46,50,45,49,46,50,45,50,46,49,45,50,46,55,45,51,46,49,45,52,99,45,48,46,53,45,48,46,54,45,48,46,56,45,49,46,52,45,49,46,50,45,50,37,50,48,99,45,48,46,52,45,48,46,55,45,48,46,56,45,49,46,51,45,49,46,49,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,57,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,56,45,49,46,57,99,45,48,46,52,45,49,46,51,45,48,46,57,45,50,46,53,45,49,46,50,45,51,46,55,99,45,48,46,51,45,49,46,50,45,48,46,53,45,50,46,51,45,48,46,55,45,51,46,51,37,50,48,99,45,48,46,50,45,49,45,48,46,51,45,50,45,48,46,52,45,50,46,56,99,45,48,46,49,45,48,46,52,45,48,46,49,45,48,46,56,45,48,46,49,45,49,46,50,99,48,45,48,46,52,37,50,67,48,45,48,46,55,37,50,67,48,45,49,46,49,99,48,45,48,46,55,37,50,67,48,45,49,46,50,37,50,67,48,45,49,46,55,67,49,48,37,50,67,53,48,46,53,37,50,67,49,48,37,50,67,53,48,37,50,67,49,48,37,50,67,53,48,122,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,49,51,49,51,56,37,50,50,37,50,48,102,105,108,116,101,114,37,51,68,37,50,50,117,114,108,37,50,56,37,50,51,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,57,37,50,50,37,51,69,37,51,67,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,50,48,97,116,116,114,105,98,117,116,101,78,97,109,101,37,51,68,37,50,50,116,114,97,110,115,102,111,114,109,37,50,50,37,50,48,116,121,112,101,37,51,68,37,50,50,114,111,116,97,116,101,37,50,50,37,50,48,102,114,111,109,37,51,68,37,50,50,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,116,111,37,51,68,37,50,50,51,54,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,114,101,112,101,97,116,67,111,117,110,116,37,51,68,37,50,50,105,110,100,101,102,105,110,105,116,101,37,50,50,37,50,48,100,117,114,37,51,68,37,50,50,49,115,37,50,50,37,51,69,37,51,67,37,50,70,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,32,42,42,42,33,10,32,32,92,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,47,32,40,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,10,34,117,115,101,32,115,116,114,105,99,116,34,59,10,101,118,97,108,40,34,109,111,100,117,108,101,46,101,120,112,111,114,116,115,32,61,32,92,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,119,105,100,116,104,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,104,101,105,103,104,116,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,49,48,48,37,50,48,49,48,48,37,50,50,37,50,48,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,37,51,68,37,50,50,120,77,105,100,89,77,105,100,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,117,105,108,45,114,105,110,103,37,50,50,37,51,69,37,51,67,114,101,99,116,37,50,48,120,37,51,68,37,50,50,48,37,50,50,37,50,48,121,37,51,68,37,50,50,48,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,110,111,110,101,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,98,107,37,50,50,37,51,69,37,51,67,37,50,70,114,101,99,116,37,51,69,37,51,67,100,101,102,115,37,51,69,37,51,67,102,105,108,116,101,114,37,50,48,105,100,37,51,68,37,50,50,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,50,37,50,48,120,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,121,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,51,69,37,51,67,102,101,79,102,102,115,101,116,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,100,120,37,51,68,37,50,50,48,37,50,50,37,50,48,100,121,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,79,102,102,115,101,116,37,51,69,37,51,67,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,115,116,100,68,101,118,105,97,116,105,111,110,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,51,69,37,51,67,102,101,66,108,101,110,100,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,105,110,50,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,109,111,100,101,37,51,68,37,50,50,110,111,114,109,97,108,37,50,50,37,51,69,37,51,67,37,50,70,102,101,66,108,101,110,100,37,51,69,37,51,67,37,50,70,102,105,108,116,101,114,37,51,69,37,51,67,37,50,70,100,101,102,115,37,51,69,37,51,67,112,97,116,104,37,50,48,100,37,51,68,37,50,50,77,49,48,37,50,67,53,48,99,48,37,50,67,48,37,50,67,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,37,50,67,48,46,50,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,46,49,37,50,67,48,46,55,37,50,67,48,46,49,37,50,67,49,46,49,99,48,46,49,37,50,67,48,46,52,37,50,67,48,46,49,37,50,67,48,46,56,37,50,67,48,46,50,37,50,67,49,46,50,99,48,46,50,37,50,67,48,46,56,37,50,67,48,46,51,37,50,67,49,46,56,37,50,67,48,46,53,37,50,67,50,46,56,37,50,48,99,48,46,51,37,50,67,49,37,50,67,48,46,54,37,50,67,50,46,49,37,50,67,48,46,57,37,50,67,51,46,50,99,48,46,51,37,50,67,49,46,49,37,50,67,48,46,57,37,50,67,50,46,51,37,50,67,49,46,52,37,50,67,51,46,53,99,48,46,53,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,50,46,52,37,50,67,49,46,56,37,50,67,51,46,55,99,48,46,51,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,49,46,57,99,48,46,52,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,51,37,50,67,49,46,51,37,50,67,49,46,57,37,50,48,99,49,37,50,67,49,46,50,37,50,67,49,46,57,37,50,67,50,46,54,37,50,67,51,46,49,37,50,67,51,46,55,99,50,46,50,37,50,67,50,46,53,37,50,67,53,37,50,67,52,46,55,37,50,67,55,46,57,37,50,67,54,46,55,99,51,37,50,67,50,37,50,67,54,46,53,37,50,67,51,46,52,37,50,67,49,48,46,49,37,50,67,52,46,54,99,51,46,54,37,50,67,49,46,49,37,50,67,55,46,53,37,50,67,49,46,53,37,50,67,49,49,46,50,37,50,67,49,46,54,99,52,45,48,46,49,37,50,67,55,46,55,45,48,46,54,37,50,67,49,49,46,51,45,49,46,54,37,50,48,99,51,46,54,45,49,46,50,37,50,67,55,45,50,46,54,37,50,67,49,48,45,52,46,54,99,51,45,50,37,50,67,53,46,56,45,52,46,50,37,50,67,55,46,57,45,54,46,55,99,49,46,50,45,49,46,50,37,50,67,50,46,49,45,50,46,53,37,50,67,51,46,49,45,51,46,55,99,48,46,53,45,48,46,54,37,50,67,48,46,57,45,49,46,51,37,50,67,49,46,51,45,49,46,57,99,48,46,52,45,48,46,54,37,50,67,48,46,56,45,49,46,51,37,50,67,49,46,50,45,49,46,57,37,50,48,99,48,46,54,45,49,46,51,37,50,67,49,46,51,45,50,46,53,37,50,67,49,46,56,45,51,46,55,99,48,46,53,45,49,46,50,37,50,67,49,45,50,46,52,37,50,67,49,46,52,45,51,46,53,99,48,46,51,45,49,46,49,37,50,67,48,46,54,45,50,46,50,37,50,67,48,46,57,45,51,46,50,99,48,46,50,45,49,37,50,67,48,46,52,45,49,46,57,37,50,67,48,46,53,45,50,46,56,99,48,46,49,45,48,46,52,37,50,67,48,46,49,45,48,46,56,37,50,67,48,46,50,45,49,46,50,37,50,48,99,48,45,48,46,52,37,50,67,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,49,99,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,50,37,50,67,48,46,50,45,49,46,55,67,57,48,37,50,67,53,48,46,53,37,50,67,57,48,37,50,67,53,48,37,50,67,57,48,37,50,67,53,48,115,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,37,50,67,48,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,37,50,67,48,46,55,37,50,67,48,37,50,67,49,46,49,37,50,48,99,48,37,50,67,48,46,52,45,48,46,49,37,50,67,48,46,56,45,48,46,49,37,50,67,49,46,50,99,45,48,46,49,37,50,67,48,46,57,45,48,46,50,37,50,67,49,46,56,45,48,46,52,37,50,67,50,46,56,99,45,48,46,50,37,50,67,49,45,48,46,53,37,50,67,50,46,49,45,48,46,55,37,50,67,51,46,51,99,45,48,46,51,37,50,67,49,46,50,45,48,46,56,37,50,67,50,46,52,45,49,46,50,37,50,67,51,46,55,99,45,48,46,50,37,50,67,48,46,55,45,48,46,53,37,50,67,49,46,51,45,48,46,56,37,50,67,49,46,57,37,50,48,99,45,48,46,51,37,50,67,48,46,55,45,48,46,54,37,50,67,49,46,51,45,48,46,57,37,50,67,50,99,45,48,46,51,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,51,45,49,46,49,37,50,67,50,99,45,48,46,52,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,52,45,49,46,50,37,50,67,50,99,45,49,37,50,67,49,46,51,45,49,46,57,37,50,67,50,46,55,45,51,46,49,37,50,67,52,99,45,50,46,50,37,50,67,50,46,55,45,53,37,50,67,53,45,56,46,49,37,50,67,55,46,49,37,50,48,99,45,48,46,56,37,50,67,48,46,53,45,49,46,54,37,50,67,49,45,50,46,52,37,50,67,49,46,53,99,45,48,46,56,37,50,67,48,46,53,45,49,46,55,37,50,67,48,46,57,45,50,46,54,37,50,67,49,46,51,76,54,54,37,50,67,56,55,46,55,108,45,49,46,52,37,50,67,48,46,53,99,45,48,46,57,37,50,67,48,46,51,45,49,46,56,37,50,67,48,46,55,45,50,46,56,37,50,67,49,99,45,51,46,56,37,50,67,49,46,49,45,55,46,57,37,50,67,49,46,55,45,49,49,46,56,37,50,67,49,46,56,76,52,55,37,50,67,57,48,46,56,37,50,48,99,45,49,37,50,67,48,45,50,45,48,46,50,45,51,45,48,46,51,108,45,49,46,53,45,48,46,50,108,45,48,46,55,45,48,46,49,76,52,49,46,49,37,50,67,57,48,99,45,49,45,48,46,51,45,49,46,57,45,48,46,53,45,50,46,57,45,48,46,55,99,45,48,46,57,45,48,46,51,45,49,46,57,45,48,46,55,45,50,46,56,45,49,76,51,52,37,50,67,56,55,46,55,108,45,49,46,51,45,48,46,54,37,50,48,99,45,48,46,57,45,48,46,52,45,49,46,56,45,48,46,56,45,50,46,54,45,49,46,51,99,45,48,46,56,45,48,46,53,45,49,46,54,45,49,45,50,46,52,45,49,46,53,99,45,51,46,49,45,50,46,49,45,53,46,57,45,52,46,53,45,56,46,49,45,55,46,49,99,45,49,46,50,45,49,46,50,45,50,46,49,45,50,46,55,45,51,46,49,45,52,99,45,48,46,53,45,48,46,54,45,48,46,56,45,49,46,52,45,49,46,50,45,50,37,50,48,99,45,48,46,52,45,48,46,55,45,48,46,56,45,49,46,51,45,49,46,49,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,57,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,56,45,49,46,57,99,45,48,46,52,45,49,46,51,45,48,46,57,45,50,46,53,45,49,46,50,45,51,46,55,99,45,48,46,51,45,49,46,50,45,48,46,53,45,50,46,51,45,48,46,55,45,51,46,51,37,50,48,99,45,48,46,50,45,49,45,48,46,51,45,50,45,48,46,52,45,50,46,56,99,45,48,46,49,45,48,46,52,45,48,46,49,45,48,46,56,45,48,46,49,45,49,46,50,99,48,45,48,46,52,37,50,67,48,45,48,46,55,37,50,67,48,45,49,46,49,99,48,45,48,46,55,37,50,67,48,45,49,46,50,37,50,67,48,45,49,46,55,67,49,48,37,50,67,53,48,46,53,37,50,67,49,48,37,50,67,53,48,37,50,67,49,48,37,50,67,53,48,122,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,49,51,49,51,56,37,50,50,37,50,48,102,105,108,116,101,114,37,51,68,37,50,50,117,114,108,37,50,56,37,50,51,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,57,37,50,50,37,51,69,37,51,67,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,50,48,97,116,116,114,105,98,117,116,101,78,97,109,101,37,51,68,37,50,50,116,114,97,110,115,102,111,114,109,37,50,50,37,50,48,116,121,112,101,37,51,68,37,50,50,114,111,116,97,116,101,37,50,50,37,50,48,102,114,111,109,37,51,68,37,50,50,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,116,111,37,51,68,37,50,50,51,54,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,114,101,112,101,97,116,67,111,117,110,116,37,51,68,37,50,50,105,110,100,101,102,105,110,105,116,101,37,50,50,37,50,48,100,117,114,37,51,68,37,50,50,49,115,37,50,50,37,51,69,37,51,67,37,50,70,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,92,34,59,92,110,92,110,47,47,35,32,115,111,117,114,99,101,85,82,76,61,119,101,98,112,97,99,107,58,47,47,115,105,115,116,50,47,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,50,53,51,67,115,118,103,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,55,49,52,112,120,37,50,53,50,55,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,55,49,52,112,120,37,50,53,50,55,37,50,53,50,48,120,109,108,110,115,37,50,53,51,68,37,50,53,50,50,104,116,116,112,37,50,53,51,65,37,50,53,50,70,37,50,53,50,70,119,119,119,46,119,51,46,111,114,103,37,50,53,50,70,50,48,48,48,37,50,53,50,70,115,118,103,37,50,53,50,50,37,50,53,50,48,118,105,101,119,66,111,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,48,37,50,53,50,48,49,48,48,37,50,53,50,48,49,48,48,37,50,53,50,50,37,50,53,50,48,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,37,50,53,51,68,37,50,53,50,50,120,77,105,100,89,77,105,100,37,50,53,50,50,37,50,53,50,48,99,108,97,115,115,37,50,53,51,68,37,50,53,50,50,117,105,108,45,114,105,110,103,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,114,101,99,116,37,50,53,50,48,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,50,37,50,53,50,48,121,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,49,48,48,37,50,53,50,50,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,110,111,110,101,37,50,53,50,50,37,50,53,50,48,99,108,97,115,115,37,50,53,51,68,37,50,53,50,50,98,107,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,114,101,99,116,37,50,53,51,69,37,50,53,51,67,100,101,102,115,37,50,53,51,69,37,50,53,51,67,102,105,108,116,101,114,37,50,53,50,48,105,100,37,50,53,51,68,37,50,53,50,50,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,53,50,50,37,50,53,50,48,120,37,50,53,51,68,37,50,53,50,50,45,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,121,37,50,53,51,68,37,50,53,50,50,45,49,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,119,105,100,116,104,37,50,53,51,68,37,50,53,50,50,51,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,50,48,104,101,105,103,104,116,37,50,53,51,68,37,50,53,50,50,51,48,48,37,50,53,50,53,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,102,101,79,102,102,115,101,116,37,50,53,50,48,114,101,115,117,108,116,37,50,53,51,68,37,50,53,50,50,111,102,102,79,117,116,37,50,53,50,50,37,50,53,50,48,105,110,37,50,53,51,68,37,50,53,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,53,50,50,37,50,53,50,48,100,120,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,50,37,50,53,50,48,100,121,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,102,101,79,102,102,115,101,116,37,50,53,51,69,37,50,53,51,67,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,50,53,50,48,114,101,115,117,108,116,37,50,53,51,68,37,50,53,50,50,98,108,117,114,79,117,116,37,50,53,50,50,37,50,53,50,48,105,110,37,50,53,51,68,37,50,53,50,50,111,102,102,79,117,116,37,50,53,50,50,37,50,53,50,48,115,116,100,68,101,118,105,97,116,105,111,110,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,50,53,51,69,37,50,53,51,67,102,101,66,108,101,110,100,37,50,53,50,48,105,110,37,50,53,51,68,37,50,53,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,53,50,50,37,50,53,50,48,105,110,50,37,50,53,51,68,37,50,53,50,50,98,108,117,114,79,117,116,37,50,53,50,50,37,50,53,50,48,109,111,100,101,37,50,53,51,68,37,50,53,50,50,110,111,114,109,97,108,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,102,101,66,108,101,110,100,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,102,105,108,116,101,114,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,100,101,102,115,37,50,53,51,69,37,50,53,51,67,112,97,116,104,37,50,53,50,48,100,37,50,53,51,68,37,50,53,50,50,77,49,48,37,50,53,50,67,53,48,99,48,37,50,53,50,67,48,37,50,53,50,67,48,37,50,53,50,67,48,46,53,37,50,53,50,67,48,46,49,37,50,53,50,67,49,46,52,99,48,37,50,53,50,67,48,46,53,37,50,53,50,67,48,46,49,37,50,53,50,67,49,37,50,53,50,67,48,46,50,37,50,53,50,67,49,46,55,99,48,37,50,53,50,67,48,46,51,37,50,53,50,67,48,46,49,37,50,53,50,67,48,46,55,37,50,53,50,67,48,46,49,37,50,53,50,67,49,46,49,99,48,46,49,37,50,53,50,67,48,46,52,37,50,53,50,67,48,46,49,37,50,53,50,67,48,46,56,37,50,53,50,67,48,46,50,37,50,53,50,67,49,46,50,99,48,46,50,37,50,53,50,67,48,46,56,37,50,53,50,67,48,46,51,37,50,53,50,67,49,46,56,37,50,53,50,67,48,46,53,37,50,53,50,67,50,46,56,37,50,53,50,48,99,48,46,51,37,50,53,50,67,49,37,50,53,50,67,48,46,54,37,50,53,50,67,50,46,49,37,50,53,50,67,48,46,57,37,50,53,50,67,51,46,50,99,48,46,51,37,50,53,50,67,49,46,49,37,50,53,50,67,48,46,57,37,50,53,50,67,50,46,51,37,50,53,50,67,49,46,52,37,50,53,50,67,51,46,53,99,48,46,53,37,50,53,50,67,49,46,50,37,50,53,50,67,49,46,50,37,50,53,50,67,50,46,52,37,50,53,50,67,49,46,56,37,50,53,50,67,51,46,55,99,48,46,51,37,50,53,50,67,48,46,54,37,50,53,50,67,48,46,56,37,50,53,50,67,49,46,50,37,50,53,50,67,49,46,50,37,50,53,50,67,49,46,57,99,48,46,52,37,50,53,50,67,48,46,54,37,50,53,50,67,48,46,56,37,50,53,50,67,49,46,51,37,50,53,50,67,49,46,51,37,50,53,50,67,49,46,57,37,50,53,50,48,99,49,37,50,53,50,67,49,46,50,37,50,53,50,67,49,46,57,37,50,53,50,67,50,46,54,37,50,53,50,67,51,46,49,37,50,53,50,67,51,46,55,99,50,46,50,37,50,53,50,67,50,46,53,37,50,53,50,67,53,37,50,53,50,67,52,46,55,37,50,53,50,67,55,46,57,37,50,53,50,67,54,46,55,99,51,37,50,53,50,67,50,37,50,53,50,67,54,46,53,37,50,53,50,67,51,46,52,37,50,53,50,67,49,48,46,49,37,50,53,50,67,52,46,54,99,51,46,54,37,50,53,50,67,49,46,49,37,50,53,50,67,55,46,53,37,50,53,50,67,49,46,53,37,50,53,50,67,49,49,46,50,37,50,53,50,67,49,46,54,99,52,45,48,46,49,37,50,53,50,67,55,46,55,45,48,46,54,37,50,53,50,67,49,49,46,51,45,49,46,54,37,50,53,50,48,99,51,46,54,45,49,46,50,37,50,53,50,67,55,45,50,46,54,37,50,53,50,67,49,48,45,52,46,54,99,51,45,50,37,50,53,50,67,53,46,56,45,52,46,50,37,50,53,50,67,55,46,57,45,54,46,55,99,49,46,50,45,49,46,50,37,50,53,50,67,50,46,49,45,50,46,53,37,50,53,50,67,51,46,49,45,51,46,55,99,48,46,53,45,48,46,54,37,50,53,50,67,48,46,57,45,49,46,51,37,50,53,50,67,49,46,51,45,49,46,57,99,48,46,52,45,48,46,54,37,50,53,50,67,48,46,56,45,49,46,51,37,50,53,50,67,49,46,50,45,49,46,57,37,50,53,50,48,99,48,46,54,45,49,46,51,37,50,53,50,67,49,46,51,45,50,46,53,37,50,53,50,67,49,46,56,45,51,46,55,99,48,46,53,45,49,46,50,37,50,53,50,67,49,45,50,46,52,37,50,53,50,67,49,46,52,45,51,46,53,99,48,46,51,45,49,46,49,37,50,53,50,67,48,46,54,45,50,46,50,37,50,53,50,67,48,46,57,45,51,46,50,99,48,46,50,45,49,37,50,53,50,67,48,46,52,45,49,46,57,37,50,53,50,67,48,46,53,45,50,46,56,99,48,46,49,45,48,46,52,37,50,53,50,67,48,46,49,45,48,46,56,37,50,53,50,67,48,46,50,45,49,46,50,37,50,53,50,48,99,48,45,48,46,52,37,50,53,50,67,48,46,49,45,48,46,55,37,50,53,50,67,48,46,49,45,49,46,49,99,48,46,49,45,48,46,55,37,50,53,50,67,48,46,49,45,49,46,50,37,50,53,50,67,48,46,50,45,49,46,55,67,57,48,37,50,53,50,67,53,48,46,53,37,50,53,50,67,57,48,37,50,53,50,67,53,48,37,50,53,50,67,57,48,37,50,53,50,67,53,48,115,48,37,50,53,50,67,48,46,53,37,50,53,50,67,48,37,50,53,50,67,49,46,52,99,48,37,50,53,50,67,48,46,53,37,50,53,50,67,48,37,50,53,50,67,49,37,50,53,50,67,48,37,50,53,50,67,49,46,55,99,48,37,50,53,50,67,48,46,51,37,50,53,50,67,48,37,50,53,50,67,48,46,55,37,50,53,50,67,48,37,50,53,50,67,49,46,49,37,50,53,50,48,99,48,37,50,53,50,67,48,46,52,45,48,46,49,37,50,53,50,67,48,46,56,45,48,46,49,37,50,53,50,67,49,46,50,99,45,48,46,49,37,50,53,50,67,48,46,57,45,48,46,50,37,50,53,50,67,49,46,56,45,48,46,52,37,50,53,50,67,50,46,56,99,45,48,46,50,37,50,53,50,67,49,45,48,46,53,37,50,53,50,67,50,46,49,45,48,46,55,37,50,53,50,67,51,46,51,99,45,48,46,51,37,50,53,50,67,49,46,50,45,48,46,56,37,50,53,50,67,50,46,52,45,49,46,50,37,50,53,50,67,51,46,55,99,45,48,46,50,37,50,53,50,67,48,46,55,45,48,46,53,37,50,53,50,67,49,46,51,45,48,46,56,37,50,53,50,67,49,46,57,37,50,53,50,48,99,45,48,46,51,37,50,53,50,67,48,46,55,45,48,46,54,37,50,53,50,67,49,46,51,45,48,46,57,37,50,53,50,67,50,99,45,48,46,51,37,50,53,50,67,48,46,55,45,48,46,55,37,50,53,50,67,49,46,51,45,49,46,49,37,50,53,50,67,50,99,45,48,46,52,37,50,53,50,67,48,46,55,45,48,46,55,37,50,53,50,67,49,46,52,45,49,46,50,37,50,53,50,67,50,99,45,49,37,50,53,50,67,49,46,51,45,49,46,57,37,50,53,50,67,50,46,55,45,51,46,49,37,50,53,50,67,52,99,45,50,46,50,37,50,53,50,67,50,46,55,45,53,37,50,53,50,67,53,45,56,46,49,37,50,53,50,67,55,46,49,37,50,53,50,48,99,45,48,46,56,37,50,53,50,67,48,46,53,45,49,46,54,37,50,53,50,67,49,45,50,46,52,37,50,53,50,67,49,46,53,99,45,48,46,56,37,50,53,50,67,48,46,53,45,49,46,55,37,50,53,50,67,48,46,57,45,50,46,54,37,50,53,50,67,49,46,51,76,54,54,37,50,53,50,67,56,55,46,55,108,45,49,46,52,37,50,53,50,67,48,46,53,99,45,48,46,57,37,50,53,50,67,48,46,51,45,49,46,56,37,50,53,50,67,48,46,55,45,50,46,56,37,50,53,50,67,49,99,45,51,46,56,37,50,53,50,67,49,46,49,45,55,46,57,37,50,53,50,67,49,46,55,45,49,49,46,56,37,50,53,50,67,49,46,56,76,52,55,37,50,53,50,67,57,48,46,56,37,50,53,50,48,99,45,49,37,50,53,50,67,48,45,50,45,48,46,50,45,51,45,48,46,51,108,45,49,46,53,45,48,46,50,108,45,48,46,55,45,48,46,49,76,52,49,46,49,37,50,53,50,67,57,48,99,45,49,45,48,46,51,45,49,46,57,45,48,46,53,45,50,46,57,45,48,46,55,99,45,48,46,57,45,48,46,51,45,49,46,57,45,48,46,55,45,50,46,56,45,49,76,51,52,37,50,53,50,67,56,55,46,55,108,45,49,46,51,45,48,46,54,37,50,53,50,48,99,45,48,46,57,45,48,46,52,45,49,46,56,45,48,46,56,45,50,46,54,45,49,46,51,99,45,48,46,56,45,48,46,53,45,49,46,54,45,49,45,50,46,52,45,49,46,53,99,45,51,46,49,45,50,46,49,45,53,46,57,45,52,46,53,45,56,46,49,45,55,46,49,99,45,49,46,50,45,49,46,50,45,50,46,49,45,50,46,55,45,51,46,49,45,52,99,45,48,46,53,45,48,46,54,45,48,46,56,45,49,46,52,45,49,46,50,45,50,37,50,53,50,48,99,45,48,46,52,45,48,46,55,45,48,46,56,45,49,46,51,45,49,46,49,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,57,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,56,45,49,46,57,99,45,48,46,52,45,49,46,51,45,48,46,57,45,50,46,53,45,49,46,50,45,51,46,55,99,45,48,46,51,45,49,46,50,45,48,46,53,45,50,46,51,45,48,46,55,45,51,46,51,37,50,53,50,48,99,45,48,46,50,45,49,45,48,46,51,45,50,45,48,46,52,45,50,46,56,99,45,48,46,49,45,48,46,52,45,48,46,49,45,48,46,56,45,48,46,49,45,49,46,50,99,48,45,48,46,52,37,50,53,50,67,48,45,48,46,55,37,50,53,50,67,48,45,49,46,49,99,48,45,48,46,55,37,50,53,50,67,48,45,49,46,50,37,50,53,50,67,48,45,49,46,55,67,49,48,37,50,53,50,67,53,48,46,53,37,50,53,50,67,49,48,37,50,53,50,67,53,48,37,50,53,50,67,49,48,37,50,53,50,67,53,48,122,37,50,53,50,50,37,50,53,50,48,102,105,108,108,37,50,53,51,68,37,50,53,50,50,37,50,53,50,51,48,49,51,49,51,56,37,50,53,50,50,37,50,53,50,48,102,105,108,116,101,114,37,50,53,51,68,37,50,53,50,50,117,114,108,37,50,53,50,56,37,50,53,50,51,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,53,50,57,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,50,53,50,48,97,116,116,114,105,98,117,116,101,78,97,109,101,37,50,53,51,68,37,50,53,50,50,116,114,97,110,115,102,111,114,109,37,50,53,50,50,37,50,53,50,48,116,121,112,101,37,50,53,51,68,37,50,53,50,50,114,111,116,97,116,101,37,50,53,50,50,37,50,53,50,48,102,114,111,109,37,50,53,51,68,37,50,53,50,50,48,37,50,53,50,48,53,48,37,50,53,50,48,53,48,37,50,53,50,50,37,50,53,50,48,116,111,37,50,53,51,68,37,50,53,50,50,51,54,48,37,50,53,50,48,53,48,37,50,53,50,48,53,48,37,50,53,50,50,37,50,53,50,48,114,101,112,101,97,116,67,111,117,110,116,37,50,53,51,68,37,50,53,50,50,105,110,100,101,102,105,110,105,116,101,37,50,53,50,50,37,50,53,50,48,100,117,114,37,50,53,51,68,37,50,53,50,50,49,115,37,50,53,50,50,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,112,97,116,104,37,50,53,51,69,37,50,53,51,67,37,50,53,50,70,115,118,103,37,50,53,51,69,63,34,41,59,10,10,47,42,42,42,47,32,125,41,10,10,47,42,42,42,42,42,42,47,32,9,125,41,59,10,47,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,42,42,42,47,32,9,47,47,32,84,104,101,32,109,111,100,117,108,101,32,99,97,99,104,101,10,47,42,42,42,42,42,42,47,32,9,118,97,114,32,95,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,95,99,97,99,104,101,95,95,32,61,32,123,125,59,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,47,32,9,47,47,32,84,104,101,32,114,101,113,117,105,114,101,32,102,117,110,99,116,105,111,110,10,47,42,42,42,42,42,42,47,32,9,102,117,110,99,116,105,111,110,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,109,111,100,117,108,101,73,100,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,67,104,101,99,107,32,105,102,32,109,111,100,117,108,101,32,105,115,32,105,110,32,99,97,99,104,101,10,47,42,42,42,42,42,42,47,32,9,9,118,97,114,32,99,97,99,104,101,100,77,111,100,117,108,101,32,61,32,95,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,95,99,97,99,104,101,95,95,91,109,111,100,117,108,101,73,100,93,59,10,47,42,42,42,42,42,42,47,32,9,9,105,102,32,40,99,97,99,104,101,100,77,111,100,117,108,101,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,114,101,116,117,114,110,32,99,97,99,104,101,100,77,111,100,117,108,101,46,101,120,112,111,114,116,115,59,10,47,42,42,42,42,42,42,47,32,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,67,114,101,97,116,101,32,97,32,110,101,119,32,109,111,100,117,108,101,32,40,97,110,100,32,112,117,116,32,105,116,32,105,110,116,111,32,116,104,101,32,99,97,99,104,101,41,10,47,42,42,42,42,42,42,47,32,9,9,118,97,114,32,109,111,100,117,108,101,32,61,32,95,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,95,99,97,99,104,101,95,95,91,109,111,100,117,108,101,73,100,93,32,61,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,105,100,58,32,109,111,100,117,108,101,73,100,44,10,47,42,42,42,42,42,42,47,32,9,9,9,108,111,97,100,101,100,58,32,102,97,108,115,101,44,10,47,42,42,42,42,42,42,47,32,9,9,9,101,120,112,111,114,116,115,58,32,123,125,10,47,42,42,42,42,42,42,47,32,9,9,125,59,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,69,120,101,99,117,116,101,32,116,104,101,32,109,111,100,117,108,101,32,102,117,110,99,116,105,111,110,10,47,42,42,42,42,42,42,47,32,9,9,95,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,115,95,95,91,109,111,100,117,108,101,73,100,93,46,99,97,108,108,40,109,111,100,117,108,101,46,101,120,112,111,114,116,115,44,32,109,111,100,117,108,101,44,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,44,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,59,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,70,108,97,103,32,116,104,101,32,109,111,100,117,108,101,32,97,115,32,108,111,97,100,101,100,10,47,42,42,42,42,42,42,47,32,9,9,109,111,100,117,108,101,46,108,111,97,100,101,100,32,61,32,116,114,117,101,59,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,82,101,116,117,114,110,32,116,104,101,32,101,120,112,111,114,116,115,32,111,102,32,116,104,101,32,109,111,100,117,108,101,10,47,42,42,42,42,42,42,47,32,9,9,114,101,116,117,114,110,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,59,10,47,42,42,42,42,42,42,47,32,9,125,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,47,32,9,47,47,32,101,120,112,111,115,101,32,116,104,101,32,109,111,100,117,108,101,115,32,111,98,106,101,99,116,32,40,95,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,115,95,95,41,10,47,42,42,42,42,42,42,47,32,9,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,109,32,61,32,95,95,119,101,98,112,97,99,107,95,109,111,100,117,108,101,115,95,95,59,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,42,42,42,47,32,9,47,42,32,119,101,98,112,97,99,107,47,114,117,110,116,105,109,101,47,99,104,117,110,107,32,108,111,97,100,101,100,32,42,47,10,47,42,42,42,42,42,42,47,32,9,33,102,117,110,99,116,105,111,110,40,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,118,97,114,32,100,101,102,101,114,114,101,100,32,61,32,91,93,59,10,47,42,42,42,42,42,42,47,32,9,9,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,79,32,61,32,102,117,110,99,116,105,111,110,40,114,101,115,117,108,116,44,32,99,104,117,110,107,73,100,115,44,32,102,110,44,32,112,114,105,111,114,105,116,121,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,105,102,40,99,104,117,110,107,73,100,115,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,112,114,105,111,114,105,116,121,32,61,32,112,114,105,111,114,105,116,121,32,124,124,32,48,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,102,111,114,40,118,97,114,32,105,32,61,32,100,101,102,101,114,114,101,100,46,108,101,110,103,116,104,59,32,105,32,62,32,48,32,38,38,32,100,101,102,101,114,114,101,100,91,105,32,45,32,49,93,91,50,93,32,62,32,112,114,105,111,114,105,116,121,59,32,105,45,45,41,32,100,101,102,101,114,114,101,100,91,105,93,32,61,32,100,101,102,101,114,114,101,100,91,105,32,45,32,49,93,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,100,101,102,101,114,114,101,100,91,105,93,32,61,32,91,99,104,117,110,107,73,100,115,44,32,102,110,44,32,112,114,105,111,114,105,116,121,93,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,114,101,116,117,114,110,59,10,47,42,42,42,42,42,42,47,32,9,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,9,118,97,114,32,110,111,116,70,117,108,102,105,108,108,101,100,32,61,32,73,110,102,105,110,105,116,121,59,10,47,42,42,42,42,42,42,47,32,9,9,9,102,111,114,32,40,118,97,114,32,105,32,61,32,48,59,32,105,32,60,32,100,101,102,101,114,114,101,100,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,118,97,114,32,99,104,117,110,107,73,100,115,32,61,32,100,101,102,101,114,114,101,100,91,105,93,91,48,93,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,118,97,114,32,102,110,32,61,32,100,101,102,101,114,114,101,100,91,105,93,91,49,93,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,118,97,114,32,112,114,105,111,114,105,116,121,32,61,32,100,101,102,101,114,114,101,100,91,105,93,91,50,93,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,118,97,114,32,102,117,108,102,105,108,108,101,100,32,61,32,116,114,117,101,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,102,111,114,32,40,118,97,114,32,106,32,61,32,48,59,32,106,32,60,32,99,104,117,110,107,73,100,115,46,108,101,110,103,116,104,59,32,106,43,43,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,9,105,102,32,40,40,112,114,105,111,114,105,116,121,32,38,32,49,32,61,61,61,32,48,32,124,124,32,110,111,116,70,117,108,102,105,108,108,101,100,32,62,61,32,112,114,105,111,114,105,116,121,41,32,38,38,32,79,98,106,101,99,116,46,107,101,121,115,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,79,41,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,40,107,101,121,41,32,123,32,114,101,116,117,114,110,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,79,91,107,101,121,93,40,99,104,117,110,107,73,100,115,91,106,93,41,59,32,125,41,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,9,9,99,104,117,110,107,73,100,115,46,115,112,108,105,99,101,40,106,45,45,44,32,49,41,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,9,125,32,101,108,115,101,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,9,9,102,117,108,102,105,108,108,101,100,32,61,32,102,97,108,115,101,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,9,9,105,102,40,112,114,105,111,114,105,116,121,32,60,32,110,111,116,70,117,108,102,105,108,108,101,100,41,32,110,111,116,70,117,108,102,105,108,108,101,100,32,61,32,112,114,105,111,114,105,116,121,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,9,9,105,102,40,102,117,108,102,105,108,108,101,100,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,9,100,101,102,101,114,114,101,100,46,115,112,108,105,99,101,40,105,45,45,44,32,49,41,10,47,42,42,42,42,42,42,47,32,9,9,9,9,9,118,97,114,32,114,32,61,32,102,110,40,41,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,9,105,102,32,40,114,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,114,101,115,117,108,116,32,61,32,114,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,9,114,101,116,117,114,110,32,114,101,115,117,108,116,59,10,47,42,42,42,42,42,42,47,32,9,9,125,59,10,47,42,42,42,42,42,42,47,32,9,125,40,41,59,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,47,32,9,47,42,32,119,101,98,112,97,99,107,47,114,117,110,116,105,109,101,47,99,111,109,112,97,116,32,103,101,116,32,100,101,102,97,117,108,116,32,101,120,112,111,114,116,32,42,47,10,47,42,42,42,42,42,42,47,32,9,33,102,117,110,99,116,105,111,110,40,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,103,101,116,68,101,102,97,117,108,116,69,120,112,111,114,116,32,102,117,110,99,116,105,111,110,32,102,111,114,32,99,111,109,112,97,116,105,98,105,108,105,116,121,32,119,105,116,104,32,110,111,110,45,104,97,114,109,111,110,121,32,109,111,100,117,108,101,115,10,47,42,42,42,42,42,42,47,32,9,9,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,32,61,32,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,118,97,114,32,103,101,116,116,101,114,32,61,32,109,111,100,117,108,101,32,38,38,32,109,111,100,117,108,101,46,95,95,101,115,77,111,100,117,108,101,32,63,10,47,42,42,42,42,42,42,47,32,9,9,9,9,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,109,111,100,117,108,101,91,39,100,101,102,97,117,108,116,39,93,59,32,125,32,58,10,47,42,42,42,42,42,42,47,32,9,9,9,9,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,109,111,100,117,108,101,59,32,125,59,10,47,42,42,42,42,42,42,47,32,9,9,9,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,40,103,101,116,116,101,114,44,32,123,32,97,58,32,103,101,116,116,101,114,32,125,41,59,10,47,42,42,42,42,42,42,47,32,9,9,9,114,101,116,117,114,110,32,103,101,116,116,101,114,59,10,47,42,42,42,42,42,42,47,32,9,9,125,59,10,47,42,42,42,42,42,42,47,32,9,125,40,41,59,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,47,32,9,47,42,32,119,101,98,112,97,99,107,47,114,117,110,116,105,109,101,47,100,101,102,105,110,101,32,112,114,111,112,101,114,116,121,32,103,101,116,116,101,114,115,32,42,47,10,47,42,42,42,42,42,42,47,32,9,33,102,117,110,99,116,105,111,110,40,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,100,101,102,105,110,101,32,103,101,116,116,101,114,32,102,117,110,99,116,105,111,110,115,32,102,111,114,32,104,97,114,109,111,110,121,32,101,120,112,111,114,116,115,10,47,42,42,42,42,42,42,47,32,9,9,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,100,32,61,32,102,117,110,99,116,105,111,110,40,101,120,112,111,114,116,115,44,32,100,101,102,105,110,105,116,105,111,110,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,102,111,114,40,118,97,114,32,107,101,121,32,105,110,32,100,101,102,105,110,105,116,105,111,110,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,105,102,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,111,40,100,101,102,105,110,105,116,105,111,110,44,32,107,101,121,41,32,38,38,32,33,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,111,40,101,120,112,111,114,116,115,44,32,107,101,121,41,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,9,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,120,112,111,114,116,115,44,32,107,101,121,44,32,123,32,101,110,117,109,101,114,97,98,108,101,58,32,116,114,117,101,44,32,103,101,116,58,32,100,101,102,105,110,105,116,105,111,110,91,107,101,121,93,32,125,41,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,125,59,10,47,42,42,42,42,42,42,47,32,9,125,40,41,59,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,47,32,9,47,42,32,119,101,98,112,97,99,107,47,114,117,110,116,105,109,101,47,103,108,111,98,97,108,32,42,47,10,47,42,42,42,42,42,42,47,32,9,33,102,117,110,99,116,105,111,110,40,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,103,32,61,32,40,102,117,110,99,116,105,111,110,40,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,105,102,32,40,116,121,112,101,111,102,32,103,108,111,98,97,108,84,104,105,115,32,61,61,61,32,39,111,98,106,101,99,116,39,41,32,114,101,116,117,114,110,32,103,108,111,98,97,108,84,104,105,115,59,10,47,42,42,42,42,42,42,47,32,9,9,9,116,114,121,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,114,101,116,117,114,110,32,116,104,105,115,32,124,124,32,110,101,119,32,70,117,110,99,116,105,111,110,40,39,114,101,116,117,114,110,32,116,104,105,115,39,41,40,41,59,10,47,42,42,42,42,42,42,47,32,9,9,9,125,32,99,97,116,99,104,32,40,101,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,105,102,32,40,116,121,112,101,111,102,32,119,105,110,100,111,119,32,61,61,61,32,39,111,98,106,101,99,116,39,41,32,114,101,116,117,114,110,32,119,105,110,100,111,119,59,10,47,42,42,42,42,42,42,47,32,9,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,125,41,40,41,59,10,47,42,42,42,42,42,42,47,32,9,125,40,41,59,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,47,32,9,47,42,32,119,101,98,112,97,99,107,47,114,117,110,116,105,109,101,47,104,97,115,79,119,110,80,114,111,112,101,114,116,121,32,115,104,111,114,116,104,97,110,100,32,42,47,10,47,42,42,42,42,42,42,47,32,9,33,102,117,110,99,116,105,111,110,40,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,111,32,61,32,102,117,110,99,116,105,111,110,40,111,98,106,44,32,112,114,111,112,41,32,123,32,114,101,116,117,114,110,32,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,111,98,106,44,32,112,114,111,112,41,59,32,125,10,47,42,42,42,42,42,42,47,32,9,125,40,41,59,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,47,32,9,47,42,32,119,101,98,112,97,99,107,47,114,117,110,116,105,109,101,47,109,97,107,101,32,110,97,109,101,115,112,97,99,101,32,111,98,106,101,99,116,32,42,47,10,47,42,42,42,42,42,42,47,32,9,33,102,117,110,99,116,105,111,110,40,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,100,101,102,105,110,101,32,95,95,101,115,77,111,100,117,108,101,32,111,110,32,101,120,112,111,114,116,115,10,47,42,42,42,42,42,42,47,32,9,9,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,114,32,61,32,102,117,110,99,116,105,111,110,40,101,120,112,111,114,116,115,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,105,102,40,116,121,112,101,111,102,32,83,121,109,98,111,108,32,33,61,61,32,39,117,110,100,101,102,105,110,101,100,39,32,38,38,32,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,120,112,111,114,116,115,44,32,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,44,32,123,32,118,97,108,117,101,58,32,39,77,111,100,117,108,101,39,32,125,41,59,10,47,42,42,42,42,42,42,47,32,9,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,9,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,120,112,111,114,116,115,44,32,39,95,95,101,115,77,111,100,117,108,101,39,44,32,123,32,118,97,108,117,101,58,32,116,114,117,101,32,125,41,59,10,47,42,42,42,42,42,42,47,32,9,9,125,59,10,47,42,42,42,42,42,42,47,32,9,125,40,41,59,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,47,32,9,47,42,32,119,101,98,112,97,99,107,47,114,117,110,116,105,109,101,47,110,111,100,101,32,109,111,100,117,108,101,32,100,101,99,111,114,97,116,111,114,32,42,47,10,47,42,42,42,42,42,42,47,32,9,33,102,117,110,99,116,105,111,110,40,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,110,109,100,32,61,32,102,117,110,99,116,105,111,110,40,109,111,100,117,108,101,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,109,111,100,117,108,101,46,112,97,116,104,115,32,61,32,91,93,59,10,47,42,42,42,42,42,42,47,32,9,9,9,105,102,32,40,33,109,111,100,117,108,101,46,99,104,105,108,100,114,101,110,41,32,109,111,100,117,108,101,46,99,104,105,108,100,114,101,110,32,61,32,91,93,59,10,47,42,42,42,42,42,42,47,32,9,9,9,114,101,116,117,114,110,32,109,111,100,117,108,101,59,10,47,42,42,42,42,42,42,47,32,9,9,125,59,10,47,42,42,42,42,42,42,47,32,9,125,40,41,59,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,47,32,9,47,42,32,119,101,98,112,97,99,107,47,114,117,110,116,105,109,101,47,106,115,111,110,112,32,99,104,117,110,107,32,108,111,97,100,105,110,103,32,42,47,10,47,42,42,42,42,42,42,47,32,9,33,102,117,110,99,116,105,111,110,40,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,98,32,61,32,100,111,99,117,109,101,110,116,46,98,97,115,101,85,82,73,32,124,124,32,115,101,108,102,46,108,111,99,97,116,105,111,110,46,104,114,101,102,59,10,47,42,42,42,42,42,42,47,32,9,9,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,111,98,106,101,99,116,32,116,111,32,115,116,111,114,101,32,108,111,97,100,101,100,32,97,110,100,32,108,111,97,100,105,110,103,32,99,104,117,110,107,115,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,117,110,100,101,102,105,110,101,100,32,61,32,99,104,117,110,107,32,110,111,116,32,108,111,97,100,101,100,44,32,110,117,108,108,32,61,32,99,104,117,110,107,32,112,114,101,108,111,97,100,101,100,47,112,114,101,102,101,116,99,104,101,100,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,91,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,44,32,80,114,111,109,105,115,101,93,32,61,32,99,104,117,110,107,32,108,111,97,100,105,110,103,44,32,48,32,61,32,99,104,117,110,107,32,108,111,97,100,101,100,10,47,42,42,42,42,42,42,47,32,9,9,118,97,114,32,105,110,115,116,97,108,108,101,100,67,104,117,110,107,115,32,61,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,34,105,110,100,101,120,34,58,32,48,10,47,42,42,42,42,42,42,47,32,9,9,125,59,10,47,42,42,42,42,42,42,47,32,9,9,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,110,111,32,99,104,117,110,107,32,111,110,32,100,101,109,97,110,100,32,108,111,97,100,105,110,103,10,47,42,42,42,42,42,42,47,32,9,9,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,110,111,32,112,114,101,102,101,116,99,104,105,110,103,10,47,42,42,42,42,42,42,47,32,9,9,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,110,111,32,112,114,101,108,111,97,100,101,100,10,47,42,42,42,42,42,42,47,32,9,9,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,110,111,32,72,77,82,10,47,42,42,42,42,42,42,47,32,9,9,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,110,111,32,72,77,82,32,109,97,110,105,102,101,115,116,10,47,42,42,42,42,42,42,47,32,9,9,10,47,42,42,42,42,42,42,47,32,9,9,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,79,46,106,32,61,32,102,117,110,99,116,105,111,110,40,99,104,117,110,107,73,100,41,32,123,32,114,101,116,117,114,110,32,105,110,115,116,97,108,108,101,100,67,104,117,110,107,115,91,99,104,117,110,107,73,100,93,32,61,61,61,32,48,59,32,125,59,10,47,42,42,42,42,42,42,47,32,9,9,10,47,42,42,42,42,42,42,47,32,9,9,47,47,32,105,110,115,116,97,108,108,32,97,32,74,83,79,78,80,32,99,97,108,108,98,97,99,107,32,102,111,114,32,99,104,117,110,107,32,108,111,97,100,105,110,103,10,47,42,42,42,42,42,42,47,32,9,9,118,97,114,32,119,101,98,112,97,99,107,74,115,111,110,112,67,97,108,108,98,97,99,107,32,61,32,102,117,110,99,116,105,111,110,40,112,97,114,101,110,116,67,104,117,110,107,76,111,97,100,105,110,103,70,117,110,99,116,105,111,110,44,32,100,97,116,97,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,118,97,114,32,99,104,117,110,107,73,100,115,32,61,32,100,97,116,97,91,48,93,59,10,47,42,42,42,42,42,42,47,32,9,9,9,118,97,114,32,109,111,114,101,77,111,100,117,108,101,115,32,61,32,100,97,116,97,91,49,93,59,10,47,42,42,42,42,42,42,47,32,9,9,9,118,97,114,32,114,117,110,116,105,109,101,32,61,32,100,97,116,97,91,50,93,59,10,47,42,42,42,42,42,42,47,32,9,9,9,47,47,32,97,100,100,32,34,109,111,114,101,77,111,100,117,108,101,115,34,32,116,111,32,116,104,101,32,109,111,100,117,108,101,115,32,111,98,106,101,99,116,44,10,47,42,42,42,42,42,42,47,32,9,9,9,47,47,32,116,104,101,110,32,102,108,97,103,32,97,108,108,32,34,99,104,117,110,107,73,100,115,34,32,97,115,32,108,111,97,100,101,100,32,97,110,100,32,102,105,114,101,32,99,97,108,108,98,97,99,107,10,47,42,42,42,42,42,42,47,32,9,9,9,118,97,114,32,109,111,100,117,108,101,73,100,44,32,99,104,117,110,107,73,100,44,32,105,32,61,32,48,59,10,47,42,42,42,42,42,42,47,32,9,9,9,105,102,40,99,104,117,110,107,73,100,115,46,115,111,109,101,40,102,117,110,99,116,105,111,110,40,105,100,41,32,123,32,114,101,116,117,114,110,32,105,110,115,116,97,108,108,101,100,67,104,117,110,107,115,91,105,100,93,32,33,61,61,32,48,59,32,125,41,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,102,111,114,40,109,111,100,117,108,101,73,100,32,105,110,32,109,111,114,101,77,111,100,117,108,101,115,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,9,105,102,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,111,40,109,111,114,101,77,111,100,117,108,101,115,44,32,109,111,100,117,108,101,73,100,41,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,9,9,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,109,91,109,111,100,117,108,101,73,100,93,32,61,32,109,111,114,101,77,111,100,117,108,101,115,91,109,111,100,117,108,101,73,100,93,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,9,9,105,102,40,114,117,110,116,105,109,101,41,32,118,97,114,32,114,101,115,117,108,116,32,61,32,114,117,110,116,105,109,101,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,41,59,10,47,42,42,42,42,42,42,47,32,9,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,9,105,102,40,112,97,114,101,110,116,67,104,117,110,107,76,111,97,100,105,110,103,70,117,110,99,116,105,111,110,41,32,112,97,114,101,110,116,67,104,117,110,107,76,111,97,100,105,110,103,70,117,110,99,116,105,111,110,40,100,97,116,97,41,59,10,47,42,42,42,42,42,42,47,32,9,9,9,102,111,114,40,59,105,32,60,32,99,104,117,110,107,73,100,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,99,104,117,110,107,73,100,32,61,32,99,104,117,110,107,73,100,115,91,105,93,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,105,102,40,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,111,40,105,110,115,116,97,108,108,101,100,67,104,117,110,107,115,44,32,99,104,117,110,107,73,100,41,32,38,38,32,105,110,115,116,97,108,108,101,100,67,104,117,110,107,115,91,99,104,117,110,107,73,100,93,41,32,123,10,47,42,42,42,42,42,42,47,32,9,9,9,9,9,105,110,115,116,97,108,108,101,100,67,104,117,110,107,115,91,99,104,117,110,107,73,100,93,91,48,93,40,41,59,10,47,42,42,42,42,42,42,47,32,9,9,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,9,9,105,110,115,116,97,108,108,101,100,67,104,117,110,107,115,91,99,104,117,110,107,73,100,93,32,61,32,48,59,10,47,42,42,42,42,42,42,47,32,9,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,9,114,101,116,117,114,110,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,79,40,114,101,115,117,108,116,41,59,10,47,42,42,42,42,42,42,47,32,9,9,125,10,47,42,42,42,42,42,42,47,32,9,9,10,47,42,42,42,42,42,42,47,32,9,9,118,97,114,32,99,104,117,110,107,76,111,97,100,105,110,103,71,108,111,98,97,108,32,61,32,115,101,108,102,91,34,119,101,98,112,97,99,107,67,104,117,110,107,115,105,115,116,50,34,93,32,61,32,115,101,108,102,91,34,119,101,98,112,97,99,107,67,104,117,110,107,115,105,115,116,50,34,93,32,124,124,32,91,93,59,10,47,42,42,42,42,42,42,47,32,9,9,99,104,117,110,107,76,111,97,100,105,110,103,71,108,111,98,97,108,46,102,111,114,69,97,99,104,40,119,101,98,112,97,99,107,74,115,111,110,112,67,97,108,108,98,97,99,107,46,98,105,110,100,40,110,117,108,108,44,32,48,41,41,59,10,47,42,42,42,42,42,42,47,32,9,9,99,104,117,110,107,76,111,97,100,105,110,103,71,108,111,98,97,108,46,112,117,115,104,32,61,32,119,101,98,112,97,99,107,74,115,111,110,112,67,97,108,108,98,97,99,107,46,98,105,110,100,40,110,117,108,108,44,32,99,104,117,110,107,76,111,97,100,105,110,103,71,108,111,98,97,108,46,112,117,115,104,46,98,105,110,100,40,99,104,117,110,107,76,111,97,100,105,110,103,71,108,111,98,97,108,41,41,59,10,47,42,42,42,42,42,42,47,32,9,125,40,41,59,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,47,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,47,32,9,47,47,32,115,116,97,114,116,117,112,10,47,42,42,42,42,42,42,47,32,9,47,47,32,76,111,97,100,32,101,110,116,114,121,32,109,111,100,117,108,101,32,97,110,100,32,114,101,116,117,114,110,32,101,120,112,111,114,116,115,10,47,42,42,42,42,42,42,47,32,9,47,47,32,84,104,105,115,32,101,110,116,114,121,32,109,111,100,117,108,101,32,100,101,112,101,110,100,115,32,111,110,32,111,116,104,101,114,32,108,111,97,100,101,100,32,99,104,117,110,107,115,32,97,110,100,32,101,120,101,99,117,116,105,111,110,32,110,101,101,100,32,116,111,32,98,101,32,100,101,108,97,121,101,100,10,47,42,42,42,42,42,42,47,32,9,118,97,114,32,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,79,40,117,110,100,101,102,105,110,101,100,44,32,91,34,99,104,117,110,107,45,118,101,110,100,111,114,115,34,93,44,32,102,117,110,99,116,105,111,110,40,41,32,123,32,114,101,116,117,114,110,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,40,34,46,47,115,114,99,47,109,97,105,110,46,106,115,34,41,59,32,125,41,10,47,42,42,42,42,42,42,47,32,9,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,32,61,32,95,95,119,101,98,112,97,99,107,95,114,101,113,117,105,114,101,95,95,46,79,40,95,95,119,101,98,112,97,99,107,95,101,120,112,111,114,116,115,95,95,41,59,10,47,42,42,42,42,42,42,47,32,9,10,47,42,42,42,42,42,42,47,32,125,41,40,41,10,59}; -char index_html[947] = {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,109,101,116,97,32,104,116,116,112,45,101,113,117,105,118,61,34,88,45,85,65,45,67,111,109,112,97,116,105,98,108,101,34,32,99,111,110,116,101,110,116,61,34,73,69,61,101,100,103,101,34,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,116,105,116,108,101,62,115,105,115,116,50,60,47,116,105,116,108,101,62,10,60,115,99,114,105,112,116,32,100,101,102,101,114,32,115,114,99,61,34,106,115,47,99,104,117,110,107,45,118,101,110,100,111,114,115,46,106,115,34,62,60,47,115,99,114,105,112,116,62,60,115,99,114,105,112,116,32,100,101,102,101,114,32,115,114,99,61,34,106,115,47,105,110,100,101,120,46,106,115,34,62,60,47,115,99,114,105,112,116,62,60,47,104,101,97,100,62,10,60,98,111,100,121,62,10,60,110,111,115,99,114,105,112,116,62,10,32,32,32,32,60,115,116,121,108,101,62,10,32,32,32,32,32,32,32,32,98,111,100,121,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,105,110,105,116,105,97,108,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,60,47,115,116,121,108,101,62,10,32,32,32,32,60,100,105,118,32,115,116,121,108,101,61,34,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,32,109,97,114,103,105,110,45,116,111,112,58,32,49,48,48,112,120,34,62,10,32,32,32,32,32,32,32,32,60,115,116,114,111,110,103,62,10,32,32,32,32,32,32,32,32,32,32,32,32,87,101,39,114,101,32,115,111,114,114,121,32,98,117,116,32,115,105,115,116,50,32,100,111,101,115,110,39,116,32,119,111,114,107,32,112,114,111,112,101,114,108,121,32,119,105,116,104,111,117,116,32,74,97,118,97,83,99,114,105,112,116,32,101,110,97,98,108,101,100,46,10,32,32,32,32,32,32,32,32,32,32,32,32,80,108,101,97,115,101,32,101,110,97,98,108,101,32,105,116,32,116,111,32,99,111,110,116,105,110,117,101,46,10,32,32,32,32,32,32,32,32,60,47,115,116,114,111,110,103,62,10,32,32,32,32,32,32,32,32,60,98,114,47,62,10,32,32,32,32,32,32,32,32,60,115,116,114,111,110,103,62,10,32,32,32,32,32,32,32,32,32,32,32,32,78,111,117,115,32,115,111,109,109,101,115,32,100,195,169,115,111,108,195,169,115,32,109,97,105,115,32,115,105,115,116,50,32,110,101,32,102,111,110,99,116,105,111,110,110,101,32,112,97,115,32,99,111,114,114,101,99,116,101,109,101,110,116,10,32,32,32,32,32,32,32,32,32,32,32,32,115,105,32,74,97,118,97,83,99,114,105,112,116,32,101,115,116,32,97,99,116,105,118,195,169,46,10,32,32,32,32,32,32,32,32,32,32,32,32,86,101,117,105,108,108,101,122,32,108,39,97,99,116,105,118,101,114,32,112,111,117,114,32,99,111,110,116,105,110,117,101,114,46,10,32,32,32,32,32,32,32,32,60,47,115,116,114,111,110,103,62,10,32,32,32,32,60,47,100,105,118,62,10,60,47,110,111,115,99,114,105,112,116,62,10,60,100,105,118,32,105,100,61,34,97,112,112,34,62,60,47,100,105,118,62,10,60,47,98,111,100,121,62,10,60,47,104,116,109,108,62,10}; +char chunk_vendors_css[244866] = {64,99,104,97,114,115,101,116,32,34,85,84,70,45,56,34,59,47,42,33,10,32,42,32,66,111,111,116,115,116,114,97,112,32,118,52,46,54,46,48,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,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,50,49,32,84,104,101,32,66,111,111,116,115,116,114,97,112,32,65,117,116,104,111,114,115,10,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,50,49,32,84,119,105,116,116,101,114,44,32,73,110,99,46,10,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,105,110,47,76,73,67,69,78,83,69,41,10,32,42,47,58,114,111,111,116,123,45,45,98,108,117,101,58,35,48,48,55,98,102,102,59,45,45,105,110,100,105,103,111,58,35,54,54,49,48,102,50,59,45,45,112,117,114,112,108,101,58,35,54,102,52,50,99,49,59,45,45,112,105,110,107,58,35,101,56,51,101,56,99,59,45,45,114,101,100,58,35,100,99,51,53,52,53,59,45,45,111,114,97,110,103,101,58,35,102,100,55,101,49,52,59,45,45,121,101,108,108,111,119,58,35,102,102,99,49,48,55,59,45,45,103,114,101,101,110,58,35,50,56,97,55,52,53,59,45,45,116,101,97,108,58,35,50,48,99,57,57,55,59,45,45,99,121,97,110,58,35,49,55,97,50,98,56,59,45,45,119,104,105,116,101,58,35,102,102,102,59,45,45,103,114,97,121,58,35,54,99,55,53,55,100,59,45,45,103,114,97,121,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,112,114,105,109,97,114,121,58,35,48,48,55,98,102,102,59,45,45,115,101,99,111,110,100,97,114,121,58,35,54,99,55,53,55,100,59,45,45,115,117,99,99,101,115,115,58,35,50,56,97,55,52,53,59,45,45,105,110,102,111,58,35,49,55,97,50,98,56,59,45,45,119,97,114,110,105,110,103,58,35,102,102,99,49,48,55,59,45,45,100,97,110,103,101,114,58,35,100,99,51,53,52,53,59,45,45,108,105,103,104,116,58,35,102,56,102,57,102,97,59,45,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,115,58,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,115,109,58,53,55,54,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,109,100,58,55,54,56,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,108,103,58,57,57,50,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,108,58,49,50,48,48,112,120,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,115,97,110,115,45,115,101,114,105,102,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,34,76,105,98,101,114,97,116,105,111,110,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,109,111,110,111,115,112,97,99,101,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,125,42,44,58,97,102,116,101,114,44,58,98,101,102,111,114,101,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,104,116,109,108,123,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,49,53,59,45,119,101,98,107,105,116,45,116,101,120,116,45,115,105,122,101,45,97,100,106,117,115,116,58,49,48,48,37,59,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,114,116,105,99,108,101,44,97,115,105,100,101,44,102,105,103,99,97,112,116,105,111,110,44,102,105,103,117,114,101,44,102,111,111,116,101,114,44,104,101,97,100,101,114,44,104,103,114,111,117,112,44,109,97,105,110,44,110,97,118,44,115,101,99,116,105,111,110,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,98,111,100,121,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,83,101,103,111,101,32,85,73,44,82,111,98,111,116,111,44,72,101,108,118,101,116,105,99,97,32,78,101,117,101,44,65,114,105,97,108,44,78,111,116,111,32,83,97,110,115,44,76,105,98,101,114,97,116,105,111,110,32,83,97,110,115,44,115,97,110,115,45,115,101,114,105,102,44,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,44,83,101,103,111,101,32,85,73,32,69,109,111,106,105,44,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,44,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,91,116,97,98,105,110,100,101,120,61,34,45,49,34,93,58,102,111,99,117,115,58,110,111,116,40,58,102,111,99,117,115,45,118,105,115,105,98,108,101,41,123,111,117,116,108,105,110,101,58,48,33,105,109,112,111,114,116,97,110,116,125,104,114,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,112,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,97,98,98,114,91,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,93,44,97,98,98,114,91,116,105,116,108,101,93,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,99,117,114,115,111,114,58,104,101,108,112,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,125,97,100,100,114,101,115,115,123,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,97,100,100,114,101,115,115,44,100,108,44,111,108,44,117,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,100,108,44,111,108,44,117,108,123,109,97,114,103,105,110,45,116,111,112,58,48,125,111,108,32,111,108,44,111,108,32,117,108,44,117,108,32,111,108,44,117,108,32,117,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,100,116,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,100,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,98,44,115,116,114,111,110,103,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,125,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,125,115,117,98,44,115,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,115,117,98,123,98,111,116,116,111,109,58,45,46,50,53,101,109,125,115,117,112,123,116,111,112,58,45,46,53,101,109,125,97,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,99,108,97,115,115,93,41,44,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,99,108,97,115,115,93,41,58,104,111,118,101,114,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,99,111,100,101,44,107,98,100,44,112,114,101,44,115,97,109,112,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,44,67,111,117,114,105,101,114,32,78,101,119,44,109,111,110,111,115,112,97,99,101,59,102,111,110,116,45,115,105,122,101,58,49,101,109,125,112,114,101,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,111,118,101,114,102,108,111,119,58,97,117,116,111,59,45,109,115,45,111,118,101,114,102,108,111,119,45,115,116,121,108,101,58,115,99,114,111,108,108,98,97,114,125,102,105,103,117,114,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,105,109,103,123,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,105,109,103,44,115,118,103,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,115,118,103,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,125,99,97,112,116,105,111,110,123,112,97,100,100,105,110,103,45,116,111,112,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,99,97,112,116,105,111,110,45,115,105,100,101,58,98,111,116,116,111,109,125,116,104,123,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,59,116,101,120,116,45,97,108,105,103,110,58,45,119,101,98,107,105,116,45,109,97,116,99,104,45,112,97,114,101,110,116,125,108,97,98,101,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,98,117,116,116,111,110,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,98,117,116,116,111,110,58,102,111,99,117,115,58,110,111,116,40,58,102,111,99,117,115,45,118,105,115,105,98,108,101,41,123,111,117,116,108,105,110,101,58,48,125,98,117,116,116,111,110,44,105,110,112,117,116,44,111,112,116,103,114,111,117,112,44,115,101,108,101,99,116,44,116,101,120,116,97,114,101,97,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,105,110,104,101,114,105,116,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,98,117,116,116,111,110,44,105,110,112,117,116,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,98,117,116,116,111,110,44,115,101,108,101,99,116,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,91,114,111,108,101,61,98,117,116,116,111,110,93,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,115,101,108,101,99,116,123,119,111,114,100,45,119,114,97,112,58,110,111,114,109,97,108,125,91,116,121,112,101,61,98,117,116,116,111,110,93,44,91,116,121,112,101,61,114,101,115,101,116,93,44,91,116,121,112,101,61,115,117,98,109,105,116,93,44,98,117,116,116,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,114,101,115,101,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,98,117,116,116,111,110,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,114,101,115,101,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,98,117,116,116,111,110,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,123,112,97,100,100,105,110,103,58,48,59,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,112,97,100,100,105,110,103,58,48,125,116,101,120,116,97,114,101,97,123,111,118,101,114,102,108,111,119,58,97,117,116,111,59,114,101,115,105,122,101,58,118,101,114,116,105,99,97,108,125,102,105,101,108,100,115,101,116,123,109,105,110,45,119,105,100,116,104,58,48,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,58,48,59,98,111,114,100,101,114,58,48,125,108,101,103,101,110,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,112,114,111,103,114,101,115,115,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,105,110,110,101,114,45,115,112,105,110,45,98,117,116,116,111,110,44,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,111,117,116,101,114,45,115,112,105,110,45,98,117,116,116,111,110,123,104,101,105,103,104,116,58,97,117,116,111,125,91,116,121,112,101,61,115,101,97,114,99,104,93,123,111,117,116,108,105,110,101,45,111,102,102,115,101,116,58,45,50,112,120,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,91,116,121,112,101,61,115,101,97,114,99,104,93,58,58,45,119,101,98,107,105,116,45,115,101,97,114,99,104,45,100,101,99,111,114,97,116,105,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,58,58,45,119,101,98,107,105,116,45,102,105,108,101,45,117,112,108,111,97,100,45,98,117,116,116,111,110,123,102,111,110,116,58,105,110,104,101,114,105,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,111,117,116,112,117,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,115,117,109,109,97,114,121,123,100,105,115,112,108,97,121,58,108,105,115,116,45,105,116,101,109,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,116,101,109,112,108,97,116,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,91,104,105,100,100,101,110,93,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,104,49,44,46,104,50,44,46,104,51,44,46,104,52,44,46,104,53,44,46,104,54,44,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,53,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,104,49,44,104,49,123,102,111,110,116,45,115,105,122,101,58,50,46,53,114,101,109,125,46,104,50,44,104,50,123,102,111,110,116,45,115,105,122,101,58,50,114,101,109,125,46,104,51,44,104,51,123,102,111,110,116,45,115,105,122,101,58,49,46,55,53,114,101,109,125,46,104,52,44,104,52,123,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,125,46,104,53,44,104,53,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,104,54,44,104,54,123,102,111,110,116,45,115,105,122,101,58,49,114,101,109,125,46,108,101,97,100,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,125,46,100,105,115,112,108,97,121,45,49,123,102,111,110,116,45,115,105,122,101,58,54,114,101,109,125,46,100,105,115,112,108,97,121,45,49,44,46,100,105,115,112,108,97,121,45,50,123,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,50,123,102,111,110,116,45,115,105,122,101,58,53,46,53,114,101,109,125,46,100,105,115,112,108,97,121,45,51,123,102,111,110,116,45,115,105,122,101,58,52,46,53,114,101,109,125,46,100,105,115,112,108,97,121,45,51,44,46,100,105,115,112,108,97,121,45,52,123,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,52,123,102,111,110,116,45,115,105,122,101,58,51,46,53,114,101,109,125,104,114,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,115,109,97,108,108,44,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,125,46,109,97,114,107,44,109,97,114,107,123,112,97,100,100,105,110,103,58,46,50,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,99,102,56,101,51,125,46,108,105,115,116,45,105,110,108,105,110,101,44,46,108,105,115,116,45,117,110,115,116,121,108,101,100,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,105,110,105,116,105,97,108,105,115,109,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,125,46,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,34,92,50,48,49,52,92,48,48,65,48,34,125,46,105,109,103,45,102,108,117,105,100,44,46,105,109,103,45,116,104,117,109,98,110,97,105,108,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,97,117,116,111,125,46,105,109,103,45,116,104,117,109,98,110,97,105,108,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,105,103,117,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,105,103,117,114,101,45,105,109,103,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,125,46,102,105,103,117,114,101,45,99,97,112,116,105,111,110,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,101,56,51,101,56,99,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,125,97,62,99,111,100,101,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,107,98,100,123,112,97,100,100,105,110,103,58,46,50,114,101,109,32,46,52,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,107,98,100,32,107,98,100,123,112,97,100,100,105,110,103,58,48,59,102,111,110,116,45,115,105,122,101,58,49,48,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,112,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,112,114,101,32,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,125,46,112,114,101,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,51,52,48,112,120,59,111,118,101,114,102,108,111,119,45,121,58,115,99,114,111,108,108,125,46,99,111,110,116,97,105,110,101,114,44,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,99,111,110,116,97,105,110,101,114,45,120,108,123,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,59,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,110,116,97,105,110,101,114,44,46,99,111,110,116,97,105,110,101,114,45,115,109,123,109,97,120,45,119,105,100,116,104,58,53,52,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,110,116,97,105,110,101,114,44,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,99,111,110,116,97,105,110,101,114,45,115,109,123,109,97,120,45,119,105,100,116,104,58,55,50,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,110,116,97,105,110,101,114,44,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,99,111,110,116,97,105,110,101,114,45,115,109,123,109,97,120,45,119,105,100,116,104,58,57,54,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,110,116,97,105,110,101,114,44,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,99,111,110,116,97,105,110,101,114,45,120,108,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,114,111,119,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,110,111,45,103,117,116,116,101,114,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,110,111,45,103,117,116,116,101,114,115,62,46,99,111,108,44,46,110,111,45,103,117,116,116,101,114,115,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,99,111,108,44,46,99,111,108,45,49,44,46,99,111,108,45,49,48,44,46,99,111,108,45,49,49,44,46,99,111,108,45,49,50,44,46,99,111,108,45,50,44,46,99,111,108,45,51,44,46,99,111,108,45,52,44,46,99,111,108,45,53,44,46,99,111,108,45,54,44,46,99,111,108,45,55,44,46,99,111,108,45,56,44,46,99,111,108,45,57,44,46,99,111,108,45,97,117,116,111,44,46,99,111,108,45,108,103,44,46,99,111,108,45,108,103,45,49,44,46,99,111,108,45,108,103,45,49,48,44,46,99,111,108,45,108,103,45,49,49,44,46,99,111,108,45,108,103,45,49,50,44,46,99,111,108,45,108,103,45,50,44,46,99,111,108,45,108,103,45,51,44,46,99,111,108,45,108,103,45,52,44,46,99,111,108,45,108,103,45,53,44,46,99,111,108,45,108,103,45,54,44,46,99,111,108,45,108,103,45,55,44,46,99,111,108,45,108,103,45,56,44,46,99,111,108,45,108,103,45,57,44,46,99,111,108,45,108,103,45,97,117,116,111,44,46,99,111,108,45,109,100,44,46,99,111,108,45,109,100,45,49,44,46,99,111,108,45,109,100,45,49,48,44,46,99,111,108,45,109,100,45,49,49,44,46,99,111,108,45,109,100,45,49,50,44,46,99,111,108,45,109,100,45,50,44,46,99,111,108,45,109,100,45,51,44,46,99,111,108,45,109,100,45,52,44,46,99,111,108,45,109,100,45,53,44,46,99,111,108,45,109,100,45,54,44,46,99,111,108,45,109,100,45,55,44,46,99,111,108,45,109,100,45,56,44,46,99,111,108,45,109,100,45,57,44,46,99,111,108,45,109,100,45,97,117,116,111,44,46,99,111,108,45,115,109,44,46,99,111,108,45,115,109,45,49,44,46,99,111,108,45,115,109,45,49,48,44,46,99,111,108,45,115,109,45,49,49,44,46,99,111,108,45,115,109,45,49,50,44,46,99,111,108,45,115,109,45,50,44,46,99,111,108,45,115,109,45,51,44,46,99,111,108,45,115,109,45,52,44,46,99,111,108,45,115,109,45,53,44,46,99,111,108,45,115,109,45,54,44,46,99,111,108,45,115,109,45,55,44,46,99,111,108,45,115,109,45,56,44,46,99,111,108,45,115,109,45,57,44,46,99,111,108,45,115,109,45,97,117,116,111,44,46,99,111,108,45,120,108,44,46,99,111,108,45,120,108,45,49,44,46,99,111,108,45,120,108,45,49,48,44,46,99,111,108,45,120,108,45,49,49,44,46,99,111,108,45,120,108,45,49,50,44,46,99,111,108,45,120,108,45,50,44,46,99,111,108,45,120,108,45,51,44,46,99,111,108,45,120,108,45,52,44,46,99,111,108,45,120,108,45,53,44,46,99,111,108,45,120,108,45,54,44,46,99,111,108,45,120,108,45,55,44,46,99,111,108,45,120,108,45,56,44,46,99,111,108,45,120,108,45,57,44,46,99,111,108,45,120,108,45,97,117,116,111,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,125,46,99,111,108,123,102,108,101,120,45,98,97,115,105,115,58,48,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,49,62,42,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,50,62,42,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,114,111,119,45,99,111,108,115,45,51,62,42,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,114,111,119,45,99,111,108,115,45,52,62,42,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,114,111,119,45,99,111,108,115,45,53,62,42,123,102,108,101,120,58,48,32,48,32,50,48,37,59,109,97,120,45,119,105,100,116,104,58,50,48,37,125,46,114,111,119,45,99,111,108,115,45,54,62,42,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,97,117,116,111,123,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,49,123,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,50,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,51,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,52,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,53,123,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,54,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,55,123,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,56,123,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,57,123,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,49,48,123,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,49,49,123,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,49,50,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,102,105,114,115,116,123,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,97,115,116,123,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,48,123,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,49,123,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,50,123,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,51,123,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,52,123,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,53,123,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,54,123,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,55,123,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,56,123,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,57,123,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,49,48,123,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,49,49,123,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,49,50,123,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,108,45,115,109,123,102,108,101,120,45,98,97,115,105,115,58,48,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,115,109,45,49,62,42,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,115,109,45,50,62,42,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,114,111,119,45,99,111,108,115,45,115,109,45,51,62,42,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,114,111,119,45,99,111,108,115,45,115,109,45,52,62,42,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,114,111,119,45,99,111,108,115,45,115,109,45,53,62,42,123,102,108,101,120,58,48,32,48,32,50,48,37,59,109,97,120,45,119,105,100,116,104,58,50,48,37,125,46,114,111,119,45,99,111,108,115,45,115,109,45,54,62,42,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,97,117,116,111,123,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,115,109,45,49,123,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,50,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,51,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,115,109,45,52,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,53,123,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,54,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,115,109,45,55,123,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,56,123,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,57,123,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,115,109,45,49,48,123,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,49,49,123,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,49,50,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,115,109,45,102,105,114,115,116,123,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,115,109,45,108,97,115,116,123,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,115,109,45,48,123,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,115,109,45,49,123,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,115,109,45,50,123,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,115,109,45,51,123,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,115,109,45,52,123,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,115,109,45,53,123,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,115,109,45,54,123,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,115,109,45,55,123,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,115,109,45,56,123,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,115,109,45,57,123,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,115,109,45,49,48,123,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,115,109,45,49,49,123,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,115,109,45,49,50,123,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,115,109,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,115,109,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,108,45,109,100,123,102,108,101,120,45,98,97,115,105,115,58,48,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,109,100,45,49,62,42,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,109,100,45,50,62,42,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,114,111,119,45,99,111,108,115,45,109,100,45,51,62,42,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,114,111,119,45,99,111,108,115,45,109,100,45,52,62,42,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,114,111,119,45,99,111,108,115,45,109,100,45,53,62,42,123,102,108,101,120,58,48,32,48,32,50,48,37,59,109,97,120,45,119,105,100,116,104,58,50,48,37,125,46,114,111,119,45,99,111,108,115,45,109,100,45,54,62,42,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,97,117,116,111,123,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,109,100,45,49,123,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,50,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,51,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,109,100,45,52,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,53,123,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,54,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,109,100,45,55,123,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,56,123,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,57,123,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,109,100,45,49,48,123,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,49,49,123,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,49,50,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,109,100,45,102,105,114,115,116,123,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,109,100,45,108,97,115,116,123,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,109,100,45,48,123,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,109,100,45,49,123,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,109,100,45,50,123,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,109,100,45,51,123,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,109,100,45,52,123,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,109,100,45,53,123,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,109,100,45,54,123,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,109,100,45,55,123,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,109,100,45,56,123,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,109,100,45,57,123,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,109,100,45,49,48,123,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,109,100,45,49,49,123,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,109,100,45,49,50,123,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,109,100,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,109,100,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,108,45,108,103,123,102,108,101,120,45,98,97,115,105,115,58,48,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,108,103,45,49,62,42,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,108,103,45,50,62,42,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,114,111,119,45,99,111,108,115,45,108,103,45,51,62,42,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,114,111,119,45,99,111,108,115,45,108,103,45,52,62,42,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,114,111,119,45,99,111,108,115,45,108,103,45,53,62,42,123,102,108,101,120,58,48,32,48,32,50,48,37,59,109,97,120,45,119,105,100,116,104,58,50,48,37,125,46,114,111,119,45,99,111,108,115,45,108,103,45,54,62,42,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,97,117,116,111,123,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,108,103,45,49,123,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,50,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,51,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,108,103,45,52,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,53,123,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,54,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,108,103,45,55,123,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,56,123,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,57,123,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,108,103,45,49,48,123,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,49,49,123,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,49,50,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,108,103,45,102,105,114,115,116,123,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,103,45,108,97,115,116,123,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,108,103,45,48,123,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,108,103,45,49,123,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,108,103,45,50,123,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,108,103,45,51,123,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,108,103,45,52,123,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,108,103,45,53,123,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,108,103,45,54,123,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,108,103,45,55,123,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,108,103,45,56,123,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,108,103,45,57,123,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,108,103,45,49,48,123,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,108,103,45,49,49,123,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,108,103,45,49,50,123,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,108,103,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,108,103,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,108,45,120,108,123,102,108,101,120,45,98,97,115,105,115,58,48,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,120,108,45,49,62,42,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,114,111,119,45,99,111,108,115,45,120,108,45,50,62,42,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,114,111,119,45,99,111,108,115,45,120,108,45,51,62,42,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,114,111,119,45,99,111,108,115,45,120,108,45,52,62,42,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,114,111,119,45,99,111,108,115,45,120,108,45,53,62,42,123,102,108,101,120,58,48,32,48,32,50,48,37,59,109,97,120,45,119,105,100,116,104,58,50,48,37,125,46,114,111,119,45,99,111,108,115,45,120,108,45,54,62,42,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,97,117,116,111,123,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,120,108,45,49,123,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,50,123,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,51,123,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,120,108,45,52,123,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,53,123,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,54,123,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,120,108,45,55,123,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,56,123,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,57,123,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,120,108,45,49,48,123,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,49,49,123,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,49,50,123,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,120,108,45,102,105,114,115,116,123,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,120,108,45,108,97,115,116,123,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,120,108,45,48,123,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,120,108,45,49,123,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,120,108,45,50,123,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,120,108,45,51,123,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,120,108,45,52,123,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,120,108,45,53,123,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,120,108,45,54,123,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,120,108,45,55,123,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,120,108,45,56,123,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,120,108,45,57,123,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,120,108,45,49,48,123,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,120,108,45,49,49,123,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,120,108,45,49,50,123,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,120,108,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,120,108,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,46,116,97,98,108,101,123,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,104,101,97,100,32,116,104,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,98,111,100,121,43,116,98,111,100,121,123,98,111,114,100,101,114,45,116,111,112,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,115,109,32,116,100,44,46,116,97,98,108,101,45,115,109,32,116,104,123,112,97,100,100,105,110,103,58,46,51,114,101,109,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,58,50,112,120,125,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,97,98,97,102,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,98,55,98,98,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,102,100,49,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,116,97,98,108,101,45,105,110,102,111,44,46,116,97,98,108,101,45,105,110,102,111,62,116,100,44,46,116,97,98,108,101,45,105,110,102,111,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,116,97,98,108,101,45,105,110,102,111,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,105,110,102,111,32,116,100,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,54,99,102,100,97,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,100,102,55,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,116,97,98,108,101,45,100,97,110,103,101,114,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,100,57,54,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,116,97,98,108,101,45,108,105,103,104,116,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,116,97,98,108,101,45,108,105,103,104,116,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,98,102,99,102,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,116,97,98,108,101,45,100,97,114,107,44,46,116,97,98,108,101,45,100,97,114,107,62,116,100,44,46,116,97,98,108,101,45,100,97,114,107,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,57,53,57,57,57,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,116,97,98,108,101,45,97,99,116,105,118,101,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,100,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,104,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,108,105,103,104,116,32,116,104,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,48,53,41,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,48,55,53,41,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,111,114,109,45,99,111,110,116,114,111,108,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,115,45,101,120,112,97,110,100,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,45,109,111,122,45,102,111,99,117,115,114,105,110,103,123,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,48,32,48,32,35,52,57,53,48,53,55,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,111,122,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,100,105,115,97,98,108,101,100,44,46,102,111,114,109,45,99,111,110,116,114,111,108,91,114,101,97,100,111,110,108,121,93,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,111,112,97,99,105,116,121,58,49,125,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,93,46,102,111,114,109,45,99,111,110,116,114,111,108,44,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,116,105,109,101,45,108,111,99,97,108,93,46,102,111,114,109,45,99,111,110,116,114,111,108,44,105,110,112,117,116,91,116,121,112,101,61,109,111,110,116,104,93,46,102,111,114,109,45,99,111,110,116,114,111,108,44,105,110,112,117,116,91,116,121,112,101,61,116,105,109,101,93,46,102,111,114,109,45,99,111,110,116,114,111,108,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,114,97,110,103,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,108,103,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,115,109,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,49,112,120,32,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,109,117,108,116,105,112,108,101,93,44,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,115,105,122,101,93,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,123,104,101,105,103,104,116,58,97,117,116,111,125,46,102,111,114,109,45,103,114,111,117,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,46,102,111,114,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,125,46,102,111,114,109,45,114,111,119,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,53,112,120,125,46,102,111,114,109,45,114,111,119,62,46,99,111,108,44,46,102,111,114,109,45,114,111,119,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,53,112,120,125,46,102,111,114,109,45,99,104,101,99,107,123,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,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,109,97,114,103,105,110,45,116,111,112,58,46,51,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,91,100,105,115,97,98,108,101,100,93,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,55,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,114,111,119,62,46,99,111,108,62,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,102,111,114,109,45,114,111,119,62,91,99,108,97,115,115,42,61,99,111,108,45,93,62,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,108,101,102,116,58,53,112,120,125,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,56,39,32,104,101,105,103,104,116,61,39,56,39,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,50,56,97,55,52,53,39,32,100,61,39,77,50,46,51,32,54,46,55,51,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,46,55,53,101,109,32,43,32,50,46,51,49,50,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,52,39,32,104,101,105,103,104,116,61,39,53,39,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,32,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,32,110,111,45,114,101,112,101,97,116,44,35,102,102,102,32,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,56,39,32,104,101,105,103,104,116,61,39,56,39,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,50,56,97,55,52,53,39,32,100,61,39,77,50,46,51,32,54,46,55,51,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,110,111,45,114,101,112,101,97,116,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,99,101,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,99,101,53,55,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,114,111,119,62,46,99,111,108,62,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,102,111,114,109,45,114,111,119,62,91,99,108,97,115,115,42,61,99,111,108,45,93,62,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,108,101,102,116,58,53,112,120,125,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,49,50,39,32,104,101,105,103,104,116,61,39,49,50,39,32,102,105,108,108,61,39,110,111,110,101,39,32,115,116,114,111,107,101,61,39,37,50,51,100,99,51,53,52,53,39,37,51,69,37,51,67,99,105,114,99,108,101,32,99,120,61,39,54,39,32,99,121,61,39,54,39,32,114,61,39,52,46,53,39,47,37,51,69,37,51,67,112,97,116,104,32,115,116,114,111,107,101,45,108,105,110,101,106,111,105,110,61,39,114,111,117,110,100,39,32,100,61,39,77,53,46,56,32,51,46,54,104,46,52,76,54,32,54,46,53,122,39,47,37,51,69,37,51,67,99,105,114,99,108,101,32,99,120,61,39,54,39,32,99,121,61,39,56,46,50,39,32,114,61,39,46,54,39,32,102,105,108,108,61,39,37,50,51,100,99,51,53,52,53,39,32,115,116,114,111,107,101,61,39,110,111,110,101,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,46,55,53,101,109,32,43,32,50,46,51,49,50,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,52,39,32,104,101,105,103,104,116,61,39,53,39,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,32,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,32,110,111,45,114,101,112,101,97,116,44,35,102,102,102,32,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,49,50,39,32,104,101,105,103,104,116,61,39,49,50,39,32,102,105,108,108,61,39,110,111,110,101,39,32,115,116,114,111,107,101,61,39,37,50,51,100,99,51,53,52,53,39,37,51,69,37,51,67,99,105,114,99,108,101,32,99,120,61,39,54,39,32,99,121,61,39,54,39,32,114,61,39,52,46,53,39,47,37,51,69,37,51,67,112,97,116,104,32,115,116,114,111,107,101,45,108,105,110,101,106,111,105,110,61,39,114,111,117,110,100,39,32,100,61,39,77,53,46,56,32,51,46,54,104,46,52,76,54,32,54,46,53,122,39,47,37,51,69,37,51,67,99,105,114,99,108,101,32,99,120,61,39,54,39,32,99,121,61,39,56,46,50,39,32,114,61,39,46,54,39,32,102,105,108,108,61,39,37,50,51,100,99,51,53,52,53,39,32,115,116,114,111,107,101,61,39,110,111,110,101,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,110,111,45,114,101,112,101,97,116,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,52,54,48,54,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,52,54,48,54,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,119,105,100,116,104,58,49,48,48,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,111,114,109,45,105,110,108,105,110,101,32,108,97,98,101,108,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,103,114,111,117,112,44,46,102,111,114,109,45,105,110,108,105,110,101,32,108,97,98,101,108,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,103,114,111,117,112,123,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,97,117,116,111,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,102,111,114,109,45,105,110,108,105,110,101,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,97,117,116,111,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,108,101,120,45,115,104,114,105,110,107,58,48,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,125,46,98,116,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,116,110,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,98,116,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,46,102,111,99,117,115,44,46,98,116,110,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,98,116,110,46,100,105,115,97,98,108,101,100,44,46,98,116,110,58,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,46,54,53,125,46,98,116,110,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,97,46,98,116,110,46,100,105,115,97,98,108,101,100,44,102,105,101,108,100,115,101,116,58,100,105,115,97,98,108,101,100,32,97,46,98,116,110,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,57,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,46,98,116,110,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,53,99,98,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,97,54,50,54,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,104,115,108,97,40,50,48,56,44,54,37,44,53,52,37,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,101,53,53,53,98,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,104,115,108,97,40,50,48,56,44,54,37,44,53,52,37,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,56,56,51,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,46,98,116,110,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,99,55,52,51,48,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,51,56,52,57,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,46,98,116,110,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,48,55,48,55,102,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,48,97,56,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,57,53,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,50,51,51,51,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,46,98,116,110,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,50,49,102,50,100,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,54,101,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,46,98,116,110,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,104,115,108,97,40,50,50,48,44,52,37,44,56,53,37,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,100,57,100,102,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,104,115,108,97,40,50,50,48,44,52,37,44,56,53,37,44,46,53,41,125,46,98,116,110,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,51,50,55,50,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,46,98,116,110,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,49,97,49,100,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,104,115,108,97,40,50,48,56,44,55,37,44,52,54,37,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,104,115,108,97,40,50,48,56,44,55,37,44,52,54,37,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,125,46,98,116,110,45,108,105,110,107,46,102,111,99,117,115,44,46,98,116,110,45,108,105,110,107,58,102,111,99,117,115,44,46,98,116,110,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,116,110,45,108,105,110,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,110,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,44,46,98,116,110,45,108,103,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,44,46,98,116,110,45,115,109,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,116,110,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,98,108,111,99,107,43,46,98,116,110,45,98,108,111,99,107,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,105,110,112,117,116,91,116,121,112,101,61,98,117,116,116,111,110,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,114,101,115,101,116,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,115,117,98,109,105,116,93,46,98,116,110,45,98,108,111,99,107,123,119,105,100,116,104,58,49,48,48,37,125,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,108,105,110,101,97,114,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,97,100,101,58,110,111,116,40,46,115,104,111,119,41,123,111,112,97,99,105,116,121,58,48,125,46,99,111,108,108,97,112,115,101,58,110,111,116,40,46,115,104,111,119,41,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,108,97,112,115,105,110,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,104,101,105,103,104,116,32,46,51,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,111,108,108,97,112,115,105,110,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,100,114,111,112,100,111,119,110,44,46,100,114,111,112,108,101,102,116,44,46,100,114,111,112,114,105,103,104,116,44,46,100,114,111,112,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,48,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,109,105,110,45,119,105,100,116,104,58,49,48,114,101,109,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,48,59,109,97,114,103,105,110,58,46,49,50,53,114,101,109,32,48,32,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,97,117,116,111,59,98,111,116,116,111,109,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,49,50,53,114,101,109,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,48,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,97,102,116,101,114,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,49,48,48,37,59,108,101,102,116,58,97,117,116,111,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,100,105,115,112,108,97,121,58,110,111,110,101,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,98,101,102,111,114,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,123,114,105,103,104,116,58,97,117,116,111,59,98,111,116,116,111,109,58,97,117,116,111,125,46,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,123,104,101,105,103,104,116,58,48,59,109,97,114,103,105,110,58,46,53,114,101,109,32,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,101,57,101,99,101,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,108,101,97,114,58,98,111,116,104,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,102,111,99,117,115,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,54,49,56,49,98,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,97,99,116,105,118,101,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,97,100,98,53,98,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,46,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,98,116,110,45,103,114,111,117,112,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,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,105,110,108,105,110,101,45,102,108,101,120,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,108,101,120,58,49,32,49,32,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,102,111,99,117,115,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,104,111,118,101,114,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,102,111,99,117,115,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,125,46,98,116,110,45,116,111,111,108,98,97,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,98,116,110,45,116,111,111,108,98,97,114,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,54,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,54,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,97,102,116,101,114,44,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,97,102,116,101,114,44,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,98,101,102,111,114,101,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,115,109,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,51,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,51,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,108,103,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,123,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,105,110,112,117,116,45,103,114,111,117,112,123,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,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,59,119,105,100,116,104,58,49,48,48,37,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,119,105,100,116,104,58,49,37,59,109,105,110,45,119,105,100,116,104,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,52,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,116,104,45,108,97,115,116,45,99,104,105,108,100,40,110,43,51,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,116,104,45,108,97,115,116,45,99,104,105,108,100,40,110,43,51,41,44,46,105,110,112,117,116,45,103,114,111,117,112,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,116,104,45,108,97,115,116,45,99,104,105,108,100,40,110,43,51,41,44,46,105,110,112,117,116,45,103,114,111,117,112,58,110,111,116,40,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,41,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,58,110,111,116,40,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,41,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,58,110,111,116,40,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,41,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,100,105,115,112,108,97,121,58,102,108,101,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,55,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,116,104,45,108,97,115,116,45,99,104,105,108,100,40,110,43,51,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,116,104,45,108,97,115,116,45,99,104,105,108,100,40,110,43,51,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,58,110,111,116,40,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,58,110,111,116,40,46,104,97,115,45,118,97,108,105,100,97,116,105,111,110,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,49,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,105,110,45,104,101,105,103,104,116,58,49,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,59,45,119,101,98,107,105,116,45,112,114,105,110,116,45,99,111,108,111,114,45,97,100,106,117,115,116,58,101,120,97,99,116,59,99,111,108,111,114,45,97,100,106,117,115,116,58,101,120,97,99,116,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,45,49,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,46,50,53,114,101,109,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,91,100,105,115,97,98,108,101,100,93,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,91,100,105,115,97,98,108,101,100,93,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,46,50,53,114,101,109,59,108,101,102,116,58,45,49,46,53,114,101,109,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,99,111,110,116,101,110,116,58,34,34,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,58,53,48,37,47,53,48,37,32,53,48,37,32,110,111,45,114,101,112,101,97,116,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,56,39,32,104,101,105,103,104,116,61,39,56,39,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,100,61,39,109,54,46,53,54,52,46,55,53,45,51,46,53,57,32,51,46,54,49,50,45,49,46,53,51,56,45,49,46,53,53,76,48,32,52,46,50,54,108,50,46,57,55,52,32,50,46,57,57,76,56,32,50,46,49,57,51,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,52,39,32,104,101,105,103,104,116,61,39,52,39,37,51,69,37,51,67,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,102,102,102,39,32,100,61,39,77,48,32,50,104,52,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,49,50,39,32,104,101,105,103,104,116,61,39,49,50,39,32,118,105,101,119,66,111,120,61,39,45,52,32,45,52,32,56,32,56,39,37,51,69,37,51,67,99,105,114,99,108,101,32,114,61,39,51,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,108,101,102,116,58,45,50,46,50,53,114,101,109,59,119,105,100,116,104,58,49,46,55,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,123,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,50,112,120,41,59,108,101,102,116,58,99,97,108,99,40,45,50,46,50,53,114,101,109,32,43,32,50,112,120,41,59,119,105,100,116,104,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,104,101,105,103,104,116,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,49,46,55,53,114,101,109,32,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,98,97,99,107,103,114,111,117,110,100,58,35,102,102,102,32,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,52,39,32,104,101,105,103,104,116,61,39,53,39,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,32,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,32,110,111,45,114,101,112,101,97,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,109,117,108,116,105,112,108,101,93,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,115,105,122,101,93,58,110,111,116,40,91,115,105,122,101,61,34,49,34,93,41,123,104,101,105,103,104,116,58,97,117,116,111,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,58,45,109,115,45,101,120,112,97,110,100,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,45,109,111,122,45,102,111,99,117,115,114,105,110,103,123,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,48,32,48,32,35,52,57,53,48,53,55,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,123,122,45,105,110,100,101,120,58,50,59,109,97,114,103,105,110,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,91,100,105,115,97,98,108,101,100,93,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,108,97,110,103,40,101,110,41,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,66,114,111,119,115,101,34,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,91,100,97,116,97,45,98,114,111,119,115,101,93,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,98,114,111,119,115,101,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,123,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,51,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,99,111,110,116,101,110,116,58,34,66,114,111,119,115,101,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,108,101,102,116,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,46,50,53,114,101,109,32,46,50,53,114,101,109,32,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,46,52,114,101,109,59,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,102,111,99,117,115,45,111,117,116,101,114,123,98,111,114,100,101,114,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,59,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,45,109,111,122,45,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,45,109,111,122,45,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,59,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,45,109,115,45,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,45,109,115,45,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,59,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,108,111,119,101,114,44,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,117,112,112,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,117,112,112,101,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,115,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,110,97,118,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,110,97,118,45,116,97,98,115,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,57,101,99,101,102,32,35,101,57,101,99,101,102,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,46,115,104,111,119,32,46,110,97,118,45,108,105,110,107,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,32,35,100,101,101,50,101,54,32,35,102,102,102,125,46,110,97,118,45,116,97,98,115,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,45,112,105,108,108,115,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,110,97,118,45,102,105,108,108,32,46,110,97,118,45,105,116,101,109,44,46,110,97,118,45,102,105,108,108,62,46,110,97,118,45,108,105,110,107,123,102,108,101,120,58,49,32,49,32,97,117,116,111,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,110,97,118,45,106,117,115,116,105,102,105,101,100,32,46,110,97,118,45,105,116,101,109,44,46,110,97,118,45,106,117,115,116,105,102,105,101,100,62,46,110,97,118,45,108,105,110,107,123,102,108,101,120,45,98,97,115,105,115,58,48,59,102,108,101,120,45,103,114,111,119,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,116,97,98,45,112,97,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,110,97,118,98,97,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,98,97,114,44,46,110,97,118,98,97,114,32,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,32,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,32,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,32,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,32,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,32,46,99,111,110,116,97,105,110,101,114,45,120,108,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,125,46,110,97,118,98,97,114,45,98,114,97,110,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,51,49,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,102,108,111,97,116,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,102,108,101,120,45,98,97,115,105,115,58,49,48,48,37,59,102,108,101,120,45,103,114,111,119,58,49,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,46,53,101,109,59,104,101,105,103,104,116,58,49,46,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,58,53,48,37,47,49,48,48,37,32,49,48,48,37,32,110,111,45,114,101,112,101,97,116,125,46,110,97,118,98,97,114,45,110,97,118,45,115,99,114,111,108,108,123,109,97,120,45,104,101,105,103,104,116,58,55,53,118,104,59,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,123,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,45,115,99,114,111,108,108,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,123,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,45,115,99,114,111,108,108,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,123,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,45,115,99,114,111,108,108,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,123,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,45,115,99,114,111,108,108,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,123,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,108,103,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,109,100,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,115,109,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,120,108,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,45,115,99,114,111,108,108,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,55,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,51,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,51,48,39,32,104,101,105,103,104,116,61,39,51,48,39,37,51,69,37,51,67,112,97,116,104,32,115,116,114,111,107,101,61,39,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,53,41,39,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,39,114,111,117,110,100,39,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,39,49,48,39,32,115,116,114,111,107,101,45,119,105,100,116,104,61,39,50,39,32,100,61,39,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,55,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,50,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,49,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,51,48,39,32,104,101,105,103,104,116,61,39,51,48,39,37,51,69,37,51,67,112,97,116,104,32,115,116,114,111,107,101,61,39,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,41,39,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,39,114,111,117,110,100,39,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,39,49,48,39,32,115,116,114,111,107,101,45,119,105,100,116,104,61,39,50,39,32,100,61,39,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,99,97,114,100,123,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,102,108,101,120,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,109,105,110,45,119,105,100,116,104,58,48,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,98,111,114,100,101,114,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,62,104,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,123,98,111,114,100,101,114,45,116,111,112,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,105,110,104,101,114,105,116,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,48,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,62,46,99,97,114,100,45,104,101,97,100,101,114,43,46,108,105,115,116,45,103,114,111,117,112,44,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,43,46,99,97,114,100,45,102,111,111,116,101,114,123,98,111,114,100,101,114,45,116,111,112,58,48,125,46,99,97,114,100,45,98,111,100,121,123,102,108,101,120,58,49,32,49,32,97,117,116,111,59,109,105,110,45,104,101,105,103,104,116,58,49,112,120,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,99,97,114,100,45,115,117,98,116,105,116,108,101,123,109,97,114,103,105,110,45,116,111,112,58,45,46,51,55,53,114,101,109,125,46,99,97,114,100,45,115,117,98,116,105,116,108,101,44,46,99,97,114,100,45,116,101,120,116,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,97,114,100,45,108,105,110,107,43,46,99,97,114,100,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,104,101,97,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,48,32,48,125,46,99,97,114,100,45,102,111,111,116,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,102,111,111,116,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,48,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,104,101,97,100,101,114,45,116,97,98,115,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,55,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,104,101,97,100,101,114,45,112,105,108,108,115,44,46,99,97,114,100,45,104,101,97,100,101,114,45,116,97,98,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,54,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,54,50,53,114,101,109,125,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,44,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,44,46,99,97,114,100,45,105,109,103,45,116,111,112,123,102,108,101,120,45,115,104,114,105,110,107,58,48,59,119,105,100,116,104,58,49,48,48,37,125,46,99,97,114,100,45,105,109,103,44,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,44,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,100,101,99,107,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,102,108,101,120,58,49,32,48,32,48,37,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,112,120,125,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,102,108,101,120,58,49,32,48,32,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,43,46,99,97,114,100,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,99,111,108,117,109,110,115,123,45,109,111,122,45,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,45,109,111,122,45,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,111,114,112,104,97,110,115,58,49,59,119,105,100,111,119,115,58,49,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,125,46,97,99,99,111,114,100,105,111,110,123,111,118,101,114,102,108,111,119,45,97,110,99,104,111,114,58,110,111,110,101,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,111,102,45,116,121,112,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,111,102,45,116,121,112,101,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,62,46,99,97,114,100,45,104,101,97,100,101,114,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,98,114,101,97,100,99,114,117,109,98,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,98,101,102,111,114,101,123,102,108,111,97,116,58,108,101,102,116,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,99,111,110,116,101,110,116,58,34,47,34,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,104,111,118,101,114,58,98,101,102,111,114,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,112,97,103,105,110,97,116,105,111,110,123,100,105,115,112,108,97,121,58,102,108,101,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,108,105,110,107,123,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,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,53,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,46,97,99,116,105,118,101,32,46,112,97,103,101,45,108,105,110,107,123,122,45,105,110,100,101,120,58,51,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,112,97,103,101,45,105,116,101,109,46,100,105,115,97,98,108,101,100,32,46,112,97,103,101,45,108,105,110,107,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,97,100,103,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,101,109,32,46,52,101,109,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,97,100,103,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,97,46,98,97,100,103,101,58,102,111,99,117,115,44,97,46,98,97,100,103,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,97,100,103,101,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,116,110,32,46,98,97,100,103,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,111,112,58,45,49,112,120,125,46,98,97,100,103,101,45,112,105,108,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,54,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,54,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,48,114,101,109,125,46,98,97,100,103,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,104,115,108,97,40,50,48,56,44,55,37,44,52,54,37,44,46,53,41,125,46,98,97,100,103,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,97,46,98,97,100,103,101,45,105,110,102,111,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,97,100,103,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,97,100,103,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,97,46,98,97,100,103,101,45,108,105,103,104,116,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,97,100,103,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,97,46,98,97,100,103,101,45,100,97,114,107,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,50,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,52,114,101,109,32,50,114,101,109,125,125,46,106,117,109,98,111,116,114,111,110,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,108,101,114,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,97,108,101,114,116,45,104,101,97,100,105,110,103,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,52,114,101,109,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,32,46,99,108,111,115,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,122,45,105,110,100,101,120,58,50,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,99,101,53,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,48,50,55,53,50,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,51,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,50,48,50,51,50,54,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,52,101,100,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,98,50,101,49,51,125,46,97,108,101,114,116,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,49,101,99,102,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,97,108,101,114,116,45,105,110,102,111,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,97,108,101,114,116,45,105,110,102,111,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,54,50,99,51,51,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,51,99,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,53,51,51,102,48,51,125,46,97,108,101,114,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,100,55,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,52,57,49,50,49,55,125,46,97,108,101,114,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,101,102,101,102,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,97,108,101,114,116,45,108,105,103,104,116,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,97,108,101,114,116,45,108,105,103,104,116,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,54,56,54,56,54,56,125,46,97,108,101,114,116,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,97,108,101,114,116,45,100,97,114,107,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,97,108,101,114,116,45,100,97,114,107,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,52,48,53,48,53,125,64,107,101,121,102,114,97,109,101,115,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,123,48,37,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,114,101,109,32,48,125,116,111,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,125,46,112,114,111,103,114,101,115,115,123,104,101,105,103,104,116,58,49,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,102,111,110,116,45,115,105,122,101,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,114,111,103,114,101,115,115,44,46,112,114,111,103,114,101,115,115,45,98,97,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,112,114,111,103,114,101,115,115,45,98,97,114,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,114,97,110,115,105,116,105,111,110,58,119,105,100,116,104,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,49,53,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,48,44,116,114,97,110,115,112,97,114,101,110,116,32,53,48,37,44,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,49,53,41,32,48,44,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,49,53,41,32,55,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,48,44,116,114,97,110,115,112,97,114,101,110,116,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,114,101,109,32,49,114,101,109,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,97,110,105,109,97,116,105,111,110,58,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,32,49,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,109,101,100,105,97,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,125,46,109,101,100,105,97,45,98,111,100,121,123,102,108,101,120,58,49,125,46,108,105,115,116,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,123,119,105,100,116,104,58,49,48,48,37,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,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,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,105,110,104,101,114,105,116,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,105,110,104,101,114,105,116,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,59,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,49,112,120,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,49,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,49,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,49,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,49,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,43,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,58,49,112,120,125,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,48,32,49,112,120,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,62,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,52,48,56,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,56,51,100,52,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,53,53,55,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,99,53,52,54,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,53,54,52,48,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,50,49,99,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,49,56,49,56,50,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,98,49,101,50,49,125,46,99,108,111,115,101,123,102,108,111,97,116,58,114,105,103,104,116,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,48,32,35,102,102,102,59,111,112,97,99,105,116,121,58,46,53,125,46,99,108,111,115,101,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,102,111,99,117,115,44,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,104,111,118,101,114,123,111,112,97,99,105,116,121,58,46,55,53,125,98,117,116,116,111,110,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,97,46,99,108,111,115,101,46,100,105,115,97,98,108,101,100,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,116,111,97,115,116,123,102,108,101,120,45,98,97,115,105,115,58,51,53,48,112,120,59,109,97,120,45,119,105,100,116,104,58,51,53,48,112,120,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,46,50,53,114,101,109,32,46,55,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,111,112,97,99,105,116,121,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,116,111,97,115,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,116,111,97,115,116,46,115,104,111,119,105,110,103,123,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,104,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,111,97,115,116,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,116,111,97,115,116,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,125,46,109,111,100,97,108,45,111,112,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,111,112,101,110,32,46,109,111,100,97,108,123,111,118,101,114,102,108,111,119,45,120,58,104,105,100,100,101,110,59,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,53,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,97,117,116,111,59,109,97,114,103,105,110,58,46,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,112,120,41,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,109,111,100,97,108,46,115,104,111,119,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,109,111,100,97,108,46,109,111,100,97,108,45,115,116,97,116,105,99,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,46,48,50,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,100,105,115,112,108,97,121,58,102,108,101,120,59,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,102,111,111,116,101,114,44,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,104,101,97,100,101,114,123,102,108,101,120,45,115,104,114,105,110,107,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,98,111,100,121,123,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,104,101,105,103,104,116,58,45,109,111,122,45,109,105,110,45,99,111,110,116,101,110,116,59,104,101,105,103,104,116,58,109,105,110,45,99,111,110,116,101,110,116,59,99,111,110,116,101,110,116,58,34,34,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,104,101,105,103,104,116,58,49,48,48,37,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,110,111,110,101,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,110,111,110,101,125,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,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,102,108,101,120,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,119,105,100,116,104,58,49,48,48,37,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,52,48,59,119,105,100,116,104,58,49,48,48,118,119,59,104,101,105,103,104,116,58,49,48,48,118,104,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,102,97,100,101,123,111,112,97,99,105,116,121,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,53,125,46,109,111,100,97,108,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,59,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,125,46,109,111,100,97,108,45,104,101,97,100,101,114,32,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,58,45,49,114,101,109,32,45,49,114,101,109,32,45,49,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,109,111,100,97,108,45,98,111,100,121,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,112,97,100,100,105,110,103,58,49,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,125,46,109,111,100,97,108,45,102,111,111,116,101,114,62,42,123,109,97,114,103,105,110,58,46,50,53,114,101,109,125,46,109,111,100,97,108,45,115,99,114,111,108,108,98,97,114,45,109,101,97,115,117,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,57,57,57,57,112,120,59,119,105,100,116,104,58,53,48,112,120,59,104,101,105,103,104,116,58,53,48,112,120,59,111,118,101,114,102,108,111,119,58,115,99,114,111,108,108,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,111,100,97,108,45,100,105,97,108,111,103,123,109,97,120,45,119,105,100,116,104,58,53,48,48,112,120,59,109,97,114,103,105,110,58,49,46,55,53,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,98,101,102,111,114,101,123,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,59,104,101,105,103,104,116,58,45,109,111,122,45,109,105,110,45,99,111,110,116,101,110,116,59,104,101,105,103,104,116,58,109,105,110,45,99,111,110,116,101,110,116,125,46,109,111,100,97,108,45,115,109,123,109,97,120,45,119,105,100,116,104,58,51,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,111,100,97,108,45,108,103,44,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,56,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,48,55,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,83,101,103,111,101,32,85,73,44,82,111,98,111,116,111,44,72,101,108,118,101,116,105,99,97,32,78,101,117,101,44,65,114,105,97,108,44,78,111,116,111,32,83,97,110,115,44,76,105,98,101,114,97,116,105,111,110,32,83,97,110,115,44,115,97,110,115,45,115,101,114,105,102,44,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,44,83,101,103,111,101,32,85,73,32,69,109,111,106,105,44,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,44,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,111,112,97,99,105,116,121,58,48,125,46,116,111,111,108,116,105,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,57,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,46,56,114,101,109,59,104,101,105,103,104,116,58,46,52,114,101,109,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,123,98,111,116,116,111,109,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,123,108,101,102,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,123,116,111,112,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,123,114,105,103,104,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,48,48,48,125,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,109,97,120,45,119,105,100,116,104,58,50,48,48,112,120,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,111,112,111,118,101,114,123,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,54,48,59,109,97,120,45,119,105,100,116,104,58,50,55,54,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,83,101,103,111,101,32,85,73,44,82,111,98,111,116,111,44,72,101,108,118,101,116,105,99,97,32,78,101,117,101,44,65,114,105,97,108,44,78,111,116,111,32,83,97,110,115,44,76,105,98,101,114,97,116,105,111,110,32,83,97,110,115,44,115,97,110,115,45,115,101,114,105,102,44,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,44,83,101,103,111,101,32,85,73,32,69,109,111,106,105,44,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,44,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,111,112,111,118,101,114,44,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,46,53,114,101,109,59,109,97,114,103,105,110,58,48,32,46,51,114,101,109,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,97,102,116,101,114,44,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,123,98,111,116,116,111,109,58,99,97,108,99,40,45,46,53,114,101,109,32,45,32,49,112,120,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,116,116,111,109,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,123,108,101,102,116,58,99,97,108,99,40,45,46,53,114,101,109,32,45,32,49,112,120,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,108,101,102,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,123,116,111,112,58,99,97,108,99,40,45,46,53,114,101,109,32,45,32,49,112,120,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,97,102,116,101,114,123,116,111,112,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,53,48,37,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,102,55,102,55,102,55,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,123,114,105,103,104,116,58,99,97,108,99,40,45,46,53,114,101,109,32,45,32,49,112,120,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,114,105,103,104,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,102,102,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,55,102,55,102,55,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,101,98,101,98,101,98,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,112,111,112,111,118,101,114,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,99,97,114,111,117,115,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,99,97,114,111,117,115,101,108,46,112,111,105,110,116,101,114,45,101,118,101,110,116,123,116,111,117,99,104,45,97,99,116,105,111,110,58,112,97,110,45,121,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,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,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,48,48,37,59,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,41,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,41,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,45,112,114,111,112,101,114,116,121,58,111,112,97,99,105,116,121,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,49,59,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,122,45,105,110,100,101,120,58,48,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,48,115,32,46,54,115,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,49,59,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,49,53,37,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,104,111,118,101,114,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,111,117,116,108,105,110,101,58,48,59,111,112,97,99,105,116,121,58,46,57,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,108,101,102,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,123,114,105,103,104,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,48,112,120,59,104,101,105,103,104,116,58,50,48,112,120,59,98,97,99,107,103,114,111,117,110,100,58,53,48,37,47,49,48,48,37,32,49,48,48,37,32,110,111,45,114,101,112,101,97,116,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,119,105,100,116,104,61,39,56,39,32,104,101,105,103,104,116,61,39,56,39,37,51,69,37,51,67,112,97,116,104,32,100,61,39,109,53,46,50,53,32,48,45,52,32,52,32,52,32,52,32,49,46,53,45,49,46,53,76,52,46,50,53,32,52,108,50,46,53,45,50,46,53,76,53,46,50,53,32,48,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,119,105,100,116,104,61,39,56,39,32,104,101,105,103,104,116,61,39,56,39,37,51,69,37,51,67,112,97,116,104,32,100,61,39,109,50,46,55,53,32,48,45,49,46,53,32,49,46,53,76,51,46,55,53,32,52,108,45,50,46,53,32,50,46,53,76,50,46,55,53,32,56,108,52,45,52,45,52,45,52,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,53,59,100,105,115,112,108,97,121,58,102,108,101,120,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,37,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,37,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,102,108,101,120,58,48,32,49,32,97,117,116,111,59,119,105,100,116,104,58,51,48,112,120,59,104,101,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,51,112,120,59,116,101,120,116,45,105,110,100,101,110,116,58,45,57,57,57,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,116,111,112,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,46,97,99,116,105,118,101,123,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,99,97,112,116,105,111,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,53,37,59,98,111,116,116,111,109,58,50,48,112,120,59,108,101,102,116,58,49,53,37,59,122,45,105,110,100,101,120,58,49,48,59,112,97,100,100,105,110,103,45,116,111,112,58,50,48,112,120,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,50,48,112,120,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,116,111,123,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,49,116,117,114,110,41,125,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,111,114,100,101,114,58,46,50,53,101,109,32,115,111,108,105,100,32,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,98,111,114,100,101,114,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,50,101,109,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,103,114,111,119,123,48,37,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,125,53,48,37,123,111,112,97,99,105,116,121,58,49,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,125,46,115,112,105,110,110,101,114,45,103,114,111,119,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,111,112,97,99,105,116,121,58,48,59,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,103,114,111,119,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,46,115,112,105,110,110,101,114,45,103,114,111,119,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,44,46,115,112,105,110,110,101,114,45,103,114,111,119,123,97,110,105,109,97,116,105,111,110,45,100,117,114,97,116,105,111,110,58,49,46,53,115,125,125,46,97,108,105,103,110,45,98,97,115,101,108,105,110,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,109,105,100,100,108,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,112,114,105,109,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,101,99,111,110,100,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,117,99,99,101,115,115,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,105,110,102,111,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,103,45,105,110,102,111,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,97,114,110,105,110,103,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,110,103,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,108,105,103,104,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,114,107,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,103,45,100,97,114,107,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,104,105,116,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,116,114,97,110,115,112,97,114,101,110,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,123,98,111,114,100,101,114,45,114,105,103,104,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,123,98,111,114,100,101,114,45,108,101,102,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,48,123,98,111,114,100,101,114,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,45,48,123,98,111,114,100,101,114,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,45,48,123,98,111,114,100,101,114,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,45,48,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,45,48,123,98,111,114,100,101,114,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,112,114,105,109,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,101,99,111,110,100,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,117,99,99,101,115,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,105,110,102,111,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,97,114,110,105,110,103,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,110,103,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,105,103,104,116,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,114,107,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,104,105,116,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,115,109,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,114,105,103,104,116,44,46,114,111,117,110,100,101,100,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,98,111,116,116,111,109,44,46,114,111,117,110,100,101,100,45,114,105,103,104,116,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,98,111,116,116,111,109,44,46,114,111,117,110,100,101,100,45,108,101,102,116,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,101,102,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,103,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,99,105,114,99,108,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,112,105,108,108,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,48,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,33,105,109,112,111,114,116,97,110,116,125,46,99,108,101,97,114,102,105,120,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,45,115,109,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,102,108,101,120,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,45,109,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,45,108,103,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,102,108,101,120,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,45,120,108,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,102,108,101,120,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,112,114,105,110,116,123,46,100,45,112,114,105,110,116,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,102,108,101,120,123,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,123,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,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,105,116,101,109,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,101,109,98,101,100,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,105,102,114,97,109,101,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,111,98,106,101,99,116,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,118,105,100,101,111,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,98,111,114,100,101,114,58,48,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,50,49,98,121,57,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,52,50,46,56,53,55,49,52,51,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,54,98,121,57,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,53,54,46,50,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,52,98,121,51,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,55,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,98,121,49,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,49,48,48,37,125,46,102,108,101,120,45,114,111,119,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,114,111,119,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,110,111,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,45,114,101,118,101,114,115,101,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,102,105,108,108,123,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,48,123,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,49,123,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,48,123,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,49,123,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,101,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,97,114,116,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,101,110,100,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,123,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,101,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,97,117,116,111,123,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,97,114,116,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,101,110,100,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,99,101,110,116,101,114,123,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,101,120,45,115,109,45,114,111,119,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,114,111,119,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,110,111,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,45,114,101,118,101,114,115,101,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,102,105,108,108,123,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,48,123,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,49,123,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,48,123,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,49,123,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,97,114,116,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,101,110,100,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,99,101,110,116,101,114,123,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,97,117,116,111,123,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,97,114,116,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,101,110,100,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,99,101,110,116,101,114,123,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,101,120,45,109,100,45,114,111,119,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,114,111,119,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,110,111,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,45,114,101,118,101,114,115,101,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,102,105,108,108,123,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,48,123,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,49,123,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,48,123,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,49,123,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,97,114,116,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,101,110,100,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,99,101,110,116,101,114,123,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,97,117,116,111,123,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,97,114,116,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,101,110,100,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,99,101,110,116,101,114,123,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,101,120,45,108,103,45,114,111,119,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,114,111,119,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,110,111,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,45,114,101,118,101,114,115,101,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,102,105,108,108,123,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,48,123,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,49,123,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,48,123,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,49,123,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,97,114,116,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,101,110,100,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,99,101,110,116,101,114,123,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,97,117,116,111,123,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,97,114,116,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,101,110,100,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,99,101,110,116,101,114,123,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,101,120,45,120,108,45,114,111,119,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,114,111,119,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,110,111,119,114,97,112,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,45,114,101,118,101,114,115,101,123,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,102,105,108,108,123,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,48,123,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,49,123,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,48,123,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,49,123,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,97,114,116,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,101,110,100,123,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,99,101,110,116,101,114,123,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,97,117,116,111,123,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,97,114,116,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,101,110,100,123,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,99,101,110,116,101,114,123,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,98,97,115,101,108,105,110,101,123,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,114,101,116,99,104,123,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,46,102,108,111,97,116,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,111,97,116,45,115,109,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,111,97,116,45,109,100,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,111,97,116,45,108,103,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,111,97,116,45,120,108,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,46,117,115,101,114,45,115,101,108,101,99,116,45,97,108,108,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,97,108,108,33,105,109,112,111,114,116,97,110,116,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,97,108,108,33,105,109,112,111,114,116,97,110,116,59,117,115,101,114,45,115,101,108,101,99,116,58,97,108,108,33,105,109,112,111,114,116,97,110,116,125,46,117,115,101,114,45,115,101,108,101,99,116,45,97,117,116,111,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,117,115,101,114,45,115,101,108,101,99,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,117,115,101,114,45,115,101,108,101,99,116,45,110,111,110,101,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,111,118,101,114,102,108,111,119,45,97,117,116,111,123,111,118,101,114,102,108,111,119,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,111,118,101,114,102,108,111,119,45,104,105,100,100,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,114,101,108,97,116,105,118,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,97,98,115,111,108,117,116,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,105,99,107,121,123,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,33,105,109,112,111,114,116,97,110,116,125,46,102,105,120,101,100,45,116,111,112,123,116,111,112,58,48,125,46,102,105,120,101,100,45,98,111,116,116,111,109,44,46,102,105,120,101,100,45,116,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,51,48,125,46,102,105,120,101,100,45,98,111,116,116,111,109,123,98,111,116,116,111,109,58,48,125,64,115,117,112,112,111,114,116,115,32,40,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,41,123,46,115,116,105,99,107,121,45,116,111,112,123,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,59,116,111,112,58,48,59,122,45,105,110,100,101,120,58,49,48,50,48,125,125,46,115,114,45,111,110,108,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,49,112,120,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,58,45,49,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,111,114,100,101,114,58,48,125,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,97,99,116,105,118,101,44,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,102,111,99,117,115,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,59,99,108,105,112,58,97,117,116,111,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,46,115,104,97,100,111,119,45,115,109,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,53,114,101,109,32,49,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,108,103,123,98,111,120,45,115,104,97,100,111,119,58,48,32,49,114,101,109,32,51,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,110,111,110,101,123,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,119,45,50,53,123,119,105,100,116,104,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,53,48,123,119,105,100,116,104,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,55,53,123,119,105,100,116,104,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,97,117,116,111,123,119,105,100,116,104,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,104,45,50,53,123,104,101,105,103,104,116,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,53,48,123,104,101,105,103,104,116,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,55,53,123,104,101,105,103,104,116,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,97,117,116,111,123,104,101,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,119,45,49,48,48,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,104,45,49,48,48,123,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,119,45,49,48,48,123,109,105,110,45,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,104,45,49,48,48,123,109,105,110,45,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,118,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,118,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,45,115,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,109,45,109,100,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,45,108,103,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,45,120,108,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,46,115,116,114,101,116,99,104,101,100,45,108,105,110,107,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,116,101,120,116,45,109,111,110,111,115,112,97,99,101,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,44,67,111,117,114,105,101,114,32,78,101,119,44,109,111,110,111,115,112,97,99,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,106,117,115,116,105,102,121,123,116,101,120,116,45,97,108,105,103,110,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,110,111,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,116,114,117,110,99,97,116,101,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,116,101,120,116,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,116,101,120,116,45,115,109,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,116,101,120,116,45,109,100,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,116,101,120,116,45,108,103,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,116,101,120,116,45,120,108,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,46,116,101,120,116,45,108,111,119,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,108,111,119,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,117,112,112,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,97,112,105,116,97,108,105,122,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,99,97,112,105,116,97,108,105,122,101,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,123,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,108,105,103,104,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,110,111,114,109,97,108,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,105,116,97,108,105,99,123,102,111,110,116,45,115,116,121,108,101,58,105,116,97,108,105,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,123,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,52,57,52,102,53,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,57,54,57,50,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,105,110,102,111,58,102,111,99,117,115,44,97,46,116,101,120,116,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,102,54,54,55,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,98,97,56,98,48,48,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,97,55,49,100,50,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,116,101,120,116,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,99,98,100,51,100,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,114,107,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,50,49,52,49,54,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,111,100,121,123,99,111,108,111,114,58,35,50,49,50,53,50,57,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,117,116,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,108,97,99,107,45,53,48,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,45,53,48,123,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,104,105,100,101,123,102,111,110,116,58,48,47,48,32,97,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,110,111,110,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,114,101,97,107,123,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,101,115,101,116,123,99,111,108,111,114,58,105,110,104,101,114,105,116,33,105,109,112,111,114,116,97,110,116,125,46,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,118,105,115,105,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,105,110,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,112,114,105,110,116,123,42,44,58,97,102,116,101,114,44,58,98,101,102,111,114,101,123,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,97,58,110,111,116,40,46,98,116,110,41,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,98,98,114,91,116,105,116,108,101,93,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,32,40,34,32,97,116,116,114,40,116,105,116,108,101,41,32,34,41,34,125,112,114,101,123,119,104,105,116,101,45,115,112,97,99,101,58,112,114,101,45,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,98,108,111,99,107,113,117,111,116,101,44,112,114,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,97,100,98,53,98,100,59,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,116,104,101,97,100,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,104,101,97,100,101,114,45,103,114,111,117,112,125,105,109,103,44,116,114,123,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,104,50,44,104,51,44,112,123,111,114,112,104,97,110,115,58,51,59,119,105,100,111,119,115,58,51,125,104,50,44,104,51,123,112,97,103,101,45,98,114,101,97,107,45,97,102,116,101,114,58,97,118,111,105,100,125,64,112,97,103,101,123,115,105,122,101,58,97,51,125,46,99,111,110,116,97,105,110,101,114,44,98,111,100,121,123,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,33,105,109,112,111,114,116,97,110,116,125,46,110,97,118,98,97,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,97,100,103,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,48,48,48,125,46,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,125,47,42,33,10,32,42,32,66,111,111,116,115,116,114,97,112,86,117,101,32,67,117,115,116,111,109,32,67,83,83,32,40,104,116,116,112,115,58,47,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,111,114,103,41,10,32,42,47,46,98,118,45,110,111,45,102,111,99,117,115,45,114,105,110,103,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,98,118,45,100,45,120,115,45,100,111,119,110,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,98,118,45,100,45,115,109,45,100,111,119,110,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,98,118,45,100,45,109,100,45,100,111,119,110,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,98,118,45,100,45,108,103,45,100,111,119,110,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,46,98,118,45,100,45,120,108,45,100,111,119,110,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,102,111,99,117,115,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,102,111,99,117,115,46,105,115,45,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,102,111,99,117,115,46,105,115,45,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,98,45,97,118,97,116,97,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,102,108,101,120,45,115,104,114,105,110,107,58,48,59,119,105,100,116,104,58,50,46,53,114,101,109,59,104,101,105,103,104,116,58,50,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,104,101,105,103,104,116,58,97,117,116,111,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,46,98,45,97,118,97,116,97,114,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,46,98,45,97,118,97,116,97,114,46,98,116,110,44,46,98,45,97,118,97,116,97,114,91,104,114,101,102,93,123,112,97,100,100,105,110,103,58,48,59,98,111,114,100,101,114,58,48,125,46,98,45,97,118,97,116,97,114,46,98,116,110,32,46,98,45,97,118,97,116,97,114,45,105,109,103,32,105,109,103,44,46,98,45,97,118,97,116,97,114,91,104,114,101,102,93,32,46,98,45,97,118,97,116,97,114,45,105,109,103,32,105,109,103,123,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,46,98,45,97,118,97,116,97,114,46,98,116,110,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,44,46,98,45,97,118,97,116,97,114,91,104,114,101,102,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,98,45,97,118,97,116,97,114,46,98,116,110,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,104,111,118,101,114,32,46,98,45,97,118,97,116,97,114,45,105,109,103,32,105,109,103,44,46,98,45,97,118,97,116,97,114,91,104,114,101,102,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,104,111,118,101,114,32,46,98,45,97,118,97,116,97,114,45,105,109,103,32,105,109,103,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,46,49,53,41,125,46,98,45,97,118,97,116,97,114,46,100,105,115,97,98,108,101,100,44,46,98,45,97,118,97,116,97,114,58,100,105,115,97,98,108,101,100,44,46,98,45,97,118,97,116,97,114,91,100,105,115,97,98,108,101,100,93,123,111,112,97,99,105,116,121,58,46,54,53,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,45,97,118,97,116,97,114,32,46,98,45,97,118,97,116,97,114,45,99,117,115,116,111,109,44,46,98,45,97,118,97,116,97,114,32,46,98,45,97,118,97,116,97,114,45,105,109,103,44,46,98,45,97,118,97,116,97,114,32,46,98,45,97,118,97,116,97,114,45,116,101,120,116,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,105,110,104,101,114,105,116,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,100,105,115,112,108,97,121,58,102,108,101,120,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,109,97,115,107,45,105,109,97,103,101,58,114,97,100,105,97,108,45,103,114,97,100,105,101,110,116,40,35,102,102,102,44,35,48,48,48,41,59,109,97,115,107,45,105,109,97,103,101,58,114,97,100,105,97,108,45,103,114,97,100,105,101,110,116,40,35,102,102,102,44,35,48,48,48,41,125,46,98,45,97,118,97,116,97,114,32,46,98,45,97,118,97,116,97,114,45,116,101,120,116,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,98,45,97,118,97,116,97,114,91,104,114,101,102,93,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,45,97,118,97,116,97,114,62,46,98,45,105,99,111,110,123,119,105,100,116,104,58,54,48,37,59,104,101,105,103,104,116,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,98,45,97,118,97,116,97,114,32,46,98,45,97,118,97,116,97,114,45,105,109,103,32,105,109,103,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,109,97,120,45,104,101,105,103,104,116,58,97,117,116,111,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,105,110,104,101,114,105,116,59,45,111,45,111,98,106,101,99,116,45,102,105,116,58,99,111,118,101,114,59,111,98,106,101,99,116,45,102,105,116,58,99,111,118,101,114,125,46,98,45,97,118,97,116,97,114,32,46,98,45,97,118,97,116,97,114,45,98,97,100,103,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,109,105,110,45,104,101,105,103,104,116,58,49,46,53,101,109,59,109,105,110,45,119,105,100,116,104,58,49,46,53,101,109,59,112,97,100,100,105,110,103,58,46,50,53,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,48,101,109,59,102,111,110,116,45,115,105,122,101,58,55,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,122,45,105,110,100,101,120,58,49,125,46,98,45,97,118,97,116,97,114,45,115,109,123,119,105,100,116,104,58,49,46,53,114,101,109,59,104,101,105,103,104,116,58,49,46,53,114,101,109,125,46,98,45,97,118,97,116,97,114,45,115,109,32,46,98,45,97,118,97,116,97,114,45,116,101,120,116,123,102,111,110,116,45,115,105,122,101,58,46,54,114,101,109,125,46,98,45,97,118,97,116,97,114,45,115,109,32,46,98,45,97,118,97,116,97,114,45,98,97,100,103,101,123,102,111,110,116,45,115,105,122,101,58,46,52,50,114,101,109,125,46,98,45,97,118,97,116,97,114,45,108,103,123,119,105,100,116,104,58,51,46,53,114,101,109,59,104,101,105,103,104,116,58,51,46,53,114,101,109,125,46,98,45,97,118,97,116,97,114,45,108,103,32,46,98,45,97,118,97,116,97,114,45,116,101,120,116,123,102,111,110,116,45,115,105,122,101,58,49,46,52,114,101,109,125,46,98,45,97,118,97,116,97,114,45,108,103,32,46,98,45,97,118,97,116,97,114,45,98,97,100,103,101,123,102,111,110,116,45,115,105,122,101,58,46,57,56,114,101,109,125,46,98,45,97,118,97,116,97,114,45,103,114,111,117,112,32,46,98,45,97,118,97,116,97,114,45,103,114,111,117,112,45,105,110,110,101,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,125,46,98,45,97,118,97,116,97,114,45,103,114,111,117,112,32,46,98,45,97,118,97,116,97,114,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,98,45,97,118,97,116,97,114,45,103,114,111,117,112,32,46,98,116,110,46,98,45,97,118,97,116,97,114,58,104,111,118,101,114,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,100,105,115,97,98,108,101,100,41,44,46,98,45,97,118,97,116,97,114,45,103,114,111,117,112,32,97,46,98,45,97,118,97,116,97,114,58,104,111,118,101,114,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,100,105,115,97,98,108,101,100,41,123,122,45,105,110,100,101,120,58,49,125,46,98,45,99,97,108,101,110,100,97,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,105,110,110,101,114,123,109,105,110,45,119,105,100,116,104,58,50,53,48,112,120,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,104,101,97,100,101,114,44,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,110,97,118,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,110,97,118,32,46,98,116,110,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,125,46,98,45,99,97,108,101,110,100,97,114,32,111,117,116,112,117,116,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,125,46,98,45,99,97,108,101,110,100,97,114,32,111,117,116,112,117,116,46,114,101,97,100,111,110,108,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,111,112,97,99,105,116,121,58,49,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,102,111,111,116,101,114,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,123,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,32,46,114,111,119,123,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,45,99,97,112,116,105,111,110,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,45,98,111,100,121,32,46,99,111,108,91,100,97,116,97,45,100,97,116,101,93,32,46,98,116,110,123,119,105,100,116,104,58,51,50,112,120,59,104,101,105,103,104,116,58,51,50,112,120,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,109,97,114,103,105,110,58,51,112,120,32,97,117,116,111,59,112,97,100,100,105,110,103,58,57,112,120,32,48,125,46,98,45,99,97,108,101,110,100,97,114,32,46,98,116,110,46,100,105,115,97,98,108,101,100,44,46,98,45,99,97,108,101,110,100,97,114,32,46,98,116,110,58,100,105,115,97,98,108,101,100,44,46,98,45,99,97,108,101,110,100,97,114,32,46,98,116,110,91,97,114,105,97,45,100,105,115,97,98,108,101,100,61,116,114,117,101,93,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,99,97,114,100,45,105,109,103,45,108,101,102,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,45,114,105,103,104,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,100,114,111,112,100,111,119,110,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,110,111,45,99,97,114,101,116,58,98,101,102,111,114,101,44,46,100,114,111,112,100,111,119,110,58,110,111,116,40,46,100,114,111,112,108,101,102,116,41,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,110,111,45,99,97,114,101,116,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,114,111,112,100,111,119,110,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,46,98,45,100,114,111,112,100,111,119,110,45,102,111,114,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,119,105,100,116,104,58,49,48,48,37,59,99,108,101,97,114,58,98,111,116,104,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,125,46,98,45,100,114,111,112,100,111,119,110,45,102,111,114,109,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,49,112,120,32,100,111,116,116,101,100,33,105,109,112,111,114,116,97,110,116,59,111,117,116,108,105,110,101,58,53,112,120,32,97,117,116,111,32,45,119,101,98,107,105,116,45,102,111,99,117,115,45,114,105,110,103,45,99,111,108,111,114,33,105,109,112,111,114,116,97,110,116,125,46,98,45,100,114,111,112,100,111,119,110,45,102,111,114,109,46,100,105,115,97,98,108,101,100,44,46,98,45,100,114,111,112,100,111,119,110,45,102,111,114,109,58,100,105,115,97,98,108,101,100,123,111,117,116,108,105,110,101,58,48,33,105,109,112,111,114,116,97,110,116,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,45,100,114,111,112,100,111,119,110,45,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,119,105,100,116,104,58,49,48,48,37,59,99,108,101,97,114,58,98,111,116,104,59,102,111,110,116,45,119,101,105,103,104,116,58,108,105,103,104,116,101,114,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,56,55,53,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,116,111,112,58,46,51,49,50,53,114,101,109,59,108,101,102,116,58,45,49,46,56,55,53,114,101,109,59,119,105,100,116,104,58,49,46,50,53,114,101,109,59,104,101,105,103,104,116,58,49,46,50,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,123,116,111,112,58,46,51,49,50,53,114,101,109,59,108,101,102,116,58,45,49,46,56,55,53,114,101,109,59,119,105,100,116,104,58,49,46,50,53,114,101,109,59,104,101,105,103,104,116,58,49,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,123,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,51,49,50,53,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,116,111,112,58,46,50,49,56,55,53,114,101,109,59,108,101,102,116,58,45,49,46,51,49,50,53,114,101,109,59,119,105,100,116,104,58,46,56,55,53,114,101,109,59,104,101,105,103,104,116,58,46,56,55,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,123,116,111,112,58,46,50,49,56,55,53,114,101,109,59,108,101,102,116,58,45,49,46,51,49,50,53,114,101,109,59,119,105,100,116,104,58,46,56,55,53,114,101,109,59,104,101,105,103,104,116,58,46,56,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,46,56,49,50,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,116,111,112,58,46,51,49,50,53,114,101,109,59,104,101,105,103,104,116,58,49,46,50,53,114,101,109,59,108,101,102,116,58,45,50,46,56,49,50,53,114,101,109,59,119,105,100,116,104,58,50,46,49,56,55,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,54,50,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,123,116,111,112,58,99,97,108,99,40,46,51,49,50,53,114,101,109,32,43,32,50,112,120,41,59,108,101,102,116,58,99,97,108,99,40,45,50,46,56,49,50,53,114,101,109,32,43,32,50,112,120,41,59,119,105,100,116,104,58,99,97,108,99,40,49,46,50,53,114,101,109,32,45,32,52,112,120,41,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,50,53,114,101,109,32,45,32,52,112,120,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,54,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,57,51,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,57,54,56,55,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,116,111,112,58,46,50,49,56,55,53,114,101,109,59,108,101,102,116,58,45,49,46,57,54,56,55,53,114,101,109,59,119,105,100,116,104,58,49,46,53,51,49,50,53,114,101,109,59,104,101,105,103,104,116,58,46,56,55,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,52,51,55,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,123,116,111,112,58,99,97,108,99,40,46,50,49,56,55,53,114,101,109,32,43,32,50,112,120,41,59,108,101,102,116,58,99,97,108,99,40,45,49,46,57,54,56,55,53,114,101,109,32,43,32,50,112,120,41,59,119,105,100,116,104,58,99,97,108,99,40,46,56,55,53,114,101,109,32,45,32,52,112,120,41,59,104,101,105,103,104,116,58,99,97,108,99,40,46,56,55,53,114,101,109,32,45,32,52,112,120,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,52,51,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,54,53,54,50,53,114,101,109,41,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,59,104,101,105,103,104,116,58,97,117,116,111,59,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,105,110,112,117,116,45,103,114,111,117,112,32,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,123,112,97,100,100,105,110,103,58,48,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,91,100,105,114,61,114,116,108,93,44,91,100,105,114,61,114,116,108,93,32,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,91,100,105,114,61,114,116,108,93,62,108,97,98,101,108,44,91,100,105,114,61,114,116,108,93,32,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,108,97,98,101,108,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,98,116,110,123,108,105,110,101,45,104,101,105,103,104,116,58,49,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,58,48,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,98,116,110,58,100,105,115,97,98,108,101,100,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,62,46,98,116,110,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,62,46,98,116,110,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,97,100,100,105,110,103,58,46,53,114,101,109,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,102,111,114,109,45,99,111,110,116,114,111,108,123,104,101,105,103,104,116,58,97,117,116,111,59,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,59,109,97,114,103,105,110,58,48,59,98,111,114,100,101,114,58,48,59,111,117,116,108,105,110,101,58,48,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,102,111,114,109,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,41,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,102,111,114,109,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,41,125,46,105,110,112,117,116,45,103,114,111,117,112,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,102,111,114,109,45,99,111,110,116,114,111,108,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,62,46,102,111,114,109,45,99,111,110,116,114,111,108,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,91,97,114,105,97,45,100,105,115,97,98,108,101,100,61,116,114,117,101,93,44,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,91,97,114,105,97,45,114,101,97,100,111,110,108,121,61,116,114,117,101,93,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,111,112,97,99,105,116,121,58,49,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,91,97,114,105,97,45,100,105,115,97,98,108,101,100,61,116,114,117,101,93,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,91,97,114,105,97,45,100,105,115,97,98,108,101,100,61,116,114,117,101,93,62,108,97,98,101,108,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,46,98,116,110,45,103,114,111,117,112,62,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,97,100,100,105,110,103,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,111,118,101,114,102,108,111,119,45,120,58,104,105,100,100,101,110,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,44,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,46,99,117,115,116,111,109,45,102,105,108,101,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,123,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,46,51,114,101,109,32,46,51,114,101,109,32,48,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,44,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,46,99,117,115,116,111,109,45,102,105,108,101,123,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,97,102,116,101,114,123,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,46,50,114,101,109,32,46,50,114,101,109,32,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,44,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,99,101,110,116,101,114,125,105,110,112,117,116,91,116,121,112,101,61,99,111,108,111,114,93,46,102,111,114,109,45,99,111,110,116,114,111,108,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,49,50,53,114,101,109,32,46,50,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,105,110,112,117,116,91,116,121,112,101,61,99,111,108,111,114,93,46,102,111,114,109,45,99,111,110,116,114,111,108,44,105,110,112,117,116,91,116,121,112,101,61,99,111,108,111,114,93,46,102,111,114,109,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,49,50,53,114,101,109,32,46,50,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,105,110,112,117,116,91,116,121,112,101,61,99,111,108,111,114,93,46,102,111,114,109,45,99,111,110,116,114,111,108,44,105,110,112,117,116,91,116,121,112,101,61,99,111,108,111,114,93,46,102,111,114,109,45,99,111,110,116,114,111,108,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,49,50,53,114,101,109,32,46,50,53,114,101,109,125,105,110,112,117,116,91,116,121,112,101,61,99,111,108,111,114,93,46,102,111,114,109,45,99,111,110,116,114,111,108,58,100,105,115,97,98,108,101,100,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,59,111,112,97,99,105,116,121,58,46,54,53,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,119,105,100,116,104,58,49,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,114,97,110,103,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,43,46,99,117,115,116,111,109,45,114,97,110,103,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,43,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,114,97,110,103,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,114,97,110,103,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,114,97,110,103,101,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,123,112,97,100,100,105,110,103,58,48,32,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,114,97,110,103,101,91,114,101,97,100,111,110,108,121,93,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,114,97,110,103,101,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,48,32,49,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,114,97,110,103,101,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,48,32,46,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,35,57,98,101,55,97,99,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,35,57,98,101,55,97,99,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,35,57,98,101,55,97,99,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,98,101,55,97,99,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,51,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,98,101,55,97,99,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,51,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,98,101,55,97,99,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,108,111,119,101,114,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,108,111,119,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,51,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,117,112,112,101,114,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,117,112,112,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,51,53,41,125,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,105,110,112,117,116,45,103,114,111,117,112,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,35,102,54,99,100,100,49,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,35,102,54,99,100,100,49,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,35,102,54,99,100,100,49,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,54,99,100,100,49,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,51,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,54,99,100,100,49,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,51,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,54,99,100,100,49,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,108,111,119,101,114,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,108,111,119,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,51,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,46,105,115,45,105,110,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,117,112,112,101,114,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,114,97,110,103,101,58,105,110,118,97,108,105,100,58,58,45,109,115,45,116,114,97,99,107,45,117,112,112,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,51,53,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,114,97,100,105,111,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,56,55,53,114,101,109,125,46,99,117,115,116,111,109,45,114,97,100,105,111,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,116,111,112,58,46,51,49,50,53,114,101,109,59,108,101,102,116,58,45,49,46,56,55,53,114,101,109,59,119,105,100,116,104,58,49,46,50,53,114,101,109,59,104,101,105,103,104,116,58,49,46,50,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,125,46,99,117,115,116,111,109,45,114,97,100,105,111,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,103,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,32,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,123,116,111,112,58,46,51,49,50,53,114,101,109,59,108,101,102,116,58,45,49,46,56,55,53,114,101,109,59,119,105,100,116,104,58,49,46,50,53,114,101,109,59,104,101,105,103,104,116,58,49,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,114,97,100,105,111,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,114,97,100,105,111,123,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,51,49,50,53,114,101,109,125,46,99,117,115,116,111,109,45,114,97,100,105,111,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,98,101,102,111,114,101,123,116,111,112,58,46,50,49,56,55,53,114,101,109,59,108,101,102,116,58,45,49,46,51,49,50,53,114,101,109,59,119,105,100,116,104,58,46,56,55,53,114,101,109,59,104,101,105,103,104,116,58,46,56,55,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,125,46,99,117,115,116,111,109,45,114,97,100,105,111,46,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,115,109,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,32,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,97,102,116,101,114,123,116,111,112,58,46,50,49,56,55,53,114,101,109,59,108,101,102,116,58,45,49,46,51,49,50,53,114,101,109,59,119,105,100,116,104,58,46,56,55,53,114,101,109,59,104,101,105,103,104,116,58,46,56,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,53,48,37,32,53,48,37,125,46,98,45,114,97,116,105,110,103,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,98,45,114,97,116,105,110,103,46,100,45,105,110,108,105,110,101,45,102,108,101,120,123,119,105,100,116,104,58,97,117,116,111,125,46,98,45,114,97,116,105,110,103,32,46,98,45,114,97,116,105,110,103,45,115,116,97,114,44,46,98,45,114,97,116,105,110,103,32,46,98,45,114,97,116,105,110,103,45,118,97,108,117,101,123,112,97,100,100,105,110,103,58,48,32,46,50,53,101,109,125,46,98,45,114,97,116,105,110,103,32,46,98,45,114,97,116,105,110,103,45,118,97,108,117,101,123,109,105,110,45,119,105,100,116,104,58,50,46,53,101,109,125,46,98,45,114,97,116,105,110,103,32,46,98,45,114,97,116,105,110,103,45,115,116,97,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,111,117,116,108,105,110,101,58,48,125,46,98,45,114,97,116,105,110,103,32,46,98,45,114,97,116,105,110,103,45,115,116,97,114,32,46,98,45,114,97,116,105,110,103,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,46,98,45,114,97,116,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,45,114,97,116,105,110,103,58,100,105,115,97,98,108,101,100,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,45,114,97,116,105,110,103,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,114,101,97,100,111,110,108,121,41,32,46,98,45,114,97,116,105,110,103,45,115,116,97,114,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,98,45,114,97,116,105,110,103,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,114,101,97,100,111,110,108,121,41,32,46,98,45,114,97,116,105,110,103,45,115,116,97,114,58,104,111,118,101,114,32,46,98,45,114,97,116,105,110,103,45,105,99,111,110,44,46,98,45,114,97,116,105,110,103,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,114,101,97,100,111,110,108,121,41,58,102,111,99,117,115,58,110,111,116,40,58,104,111,118,101,114,41,32,46,98,45,114,97,116,105,110,103,45,115,116,97,114,46,102,111,99,117,115,101,100,32,46,98,45,114,97,116,105,110,103,45,105,99,111,110,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,46,53,41,125,46,98,45,114,97,116,105,110,103,91,100,105,114,61,114,116,108,93,32,46,98,45,114,97,116,105,110,103,45,115,116,97,114,45,104,97,108,102,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,88,40,45,49,41,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,59,112,97,100,100,105,110,103,58,48,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,91,100,105,114,61,114,116,108,93,58,110,111,116,40,46,102,108,101,120,45,99,111,108,117,109,110,41,44,91,100,105,114,61,114,116,108,93,32,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,58,110,111,116,40,46,102,108,101,120,45,99,111,108,117,109,110,41,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,111,117,116,112,117,116,123,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,111,117,116,108,105,110,101,58,48,59,98,111,114,100,101,114,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,119,105,100,116,104,58,97,117,116,111,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,32,46,50,53,114,101,109,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,111,117,116,112,117,116,62,98,100,105,44,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,111,117,116,112,117,116,62,100,105,118,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,105,110,45,119,105,100,116,104,58,50,46,50,53,101,109,59,104,101,105,103,104,116,58,49,46,53,101,109,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,102,108,101,120,45,99,111,108,117,109,110,123,104,101,105,103,104,116,58,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,102,108,101,120,45,99,111,108,117,109,110,32,111,117,116,112,117,116,123,109,97,114,103,105,110,58,48,32,46,50,53,114,101,109,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,48,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,58,110,111,116,40,46,100,45,105,110,108,105,110,101,45,102,108,101,120,41,58,110,111,116,40,46,102,108,101,120,45,99,111,108,117,109,110,41,123,111,117,116,112,117,116,45,119,105,100,116,104,58,49,48,48,37,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,100,45,105,110,108,105,110,101,45,102,108,101,120,58,110,111,116,40,46,102,108,101,120,45,99,111,108,117,109,110,41,123,119,105,100,116,104,58,97,117,116,111,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,46,98,116,110,123,108,105,110,101,45,104,101,105,103,104,116,58,49,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,46,98,116,110,58,100,105,115,97,98,108,101,100,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,46,98,116,110,58,104,111,118,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,62,100,105,118,62,46,98,45,105,99,111,110,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,46,50,53,41,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,100,105,115,97,98,108,101,100,44,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,114,101,97,100,111,110,108,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,46,100,105,115,97,98,108,101,100,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,45,102,111,114,109,45,116,97,103,115,32,46,98,45,102,111,114,109,45,116,97,103,115,45,108,105,115,116,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,125,46,98,45,102,111,114,109,45,116,97,103,115,32,46,98,45,102,111,114,109,45,116,97,103,115,45,108,105,115,116,32,46,98,45,102,111,114,109,45,116,97,103,44,46,98,45,102,111,114,109,45,116,97,103,115,32,46,98,45,102,111,114,109,45,116,97,103,115,45,108,105,115,116,32,46,98,45,102,114,111,109,45,116,97,103,115,45,102,105,101,108,100,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,125,46,98,45,102,111,114,109,45,116,97,103,115,46,102,111,99,117,115,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,98,45,102,111,114,109,45,116,97,103,115,46,102,111,99,117,115,46,105,115,45,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,98,45,102,111,114,109,45,116,97,103,115,46,102,111,99,117,115,46,105,115,45,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,98,45,102,111,114,109,45,116,97,103,115,46,100,105,115,97,98,108,101,100,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,98,45,102,111,114,109,45,116,97,103,123,102,111,110,116,45,115,105,122,101,58,55,53,37,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,125,46,98,45,102,111,114,109,45,116,97,103,46,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,46,55,53,125,46,98,45,102,111,114,109,45,116,97,103,62,98,117,116,116,111,110,46,98,45,102,111,114,109,45,116,97,103,45,114,101,109,111,118,101,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,102,111,110,116,45,115,105,122,101,58,49,50,53,37,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,102,108,111,97,116,58,110,111,110,101,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,32,46,98,45,102,111,114,109,45,116,97,103,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,32,46,98,45,102,111,114,109,45,116,97,103,123,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,109,101,100,105,97,45,97,115,105,100,101,123,100,105,115,112,108,97,121,58,102,108,101,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,125,46,109,101,100,105,97,45,97,115,105,100,101,45,114,105,103,104,116,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,123,111,112,97,99,105,116,121,58,46,53,125,46,98,45,112,97,103,105,110,97,116,105,111,110,45,112,105,108,108,115,32,46,112,97,103,101,45,105,116,101,109,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,114,101,109,33,105,109,112,111,114,116,97,110,116,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,125,46,98,45,112,97,103,105,110,97,116,105,111,110,45,112,105,108,108,115,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,112,111,112,111,118,101,114,46,98,45,112,111,112,111,118,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,112,97,99,105,116,121,58,49,59,111,117,116,108,105,110,101,58,48,125,46,112,111,112,111,118,101,114,46,98,45,112,111,112,111,118,101,114,46,102,97,100,101,58,110,111,116,40,46,115,104,111,119,41,123,111,112,97,99,105,116,121,58,48,125,46,112,111,112,111,118,101,114,46,98,45,112,111,112,111,118,101,114,46,115,104,111,119,123,111,112,97,99,105,116,121,58,49,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,99,101,53,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,99,99,101,53,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,99,99,101,53,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,98,100,100,100,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,99,99,101,53,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,100,100,102,102,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,97,51,100,48,102,102,125,46,98,45,112,111,112,111,118,101,114,45,112,114,105,109,97,114,121,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,51,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,101,50,101,51,101,53,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,101,50,101,51,101,53,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,100,97,100,98,100,101,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,101,50,101,51,101,53,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,100,98,100,101,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,99,99,101,100,50,125,46,98,45,112,111,112,111,118,101,114,45,115,101,99,111,110,100,97,114,121,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,52,101,100,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,100,52,101,100,100,97,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,100,52,101,100,100,97,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,57,101,56,100,49,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,100,52,101,100,100,97,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,57,101,56,100,49,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,98,55,101,49,99,49,125,46,98,45,112,111,112,111,118,101,114,45,115,117,99,99,101,115,115,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,49,53,53,55,50,52,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,49,101,99,102,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,100,49,101,99,102,49,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,100,49,101,99,102,49,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,53,101,55,101,100,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,100,49,101,99,102,49,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,53,101,55,101,100,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,98,50,100,102,101,55,125,46,98,45,112,111,112,111,118,101,114,45,105,110,102,111,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,48,99,53,52,54,48,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,51,99,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,102,51,99,100,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,102,102,51,99,100,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,101,102,98,101,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,102,102,51,99,100,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,102,98,101,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,101,57,97,52,125,46,98,45,112,111,112,111,118,101,114,45,119,97,114,110,105,110,103,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,56,53,54,52,48,52,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,100,55,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,56,100,55,100,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,56,100,55,100,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,54,99,97,99,101,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,56,100,55,100,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,54,99,97,99,101,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,50,98,52,98,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,110,103,101,114,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,55,50,49,99,50,52,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,101,102,101,102,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,101,102,101,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,101,102,101,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,54,102,54,102,54,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,101,102,101,102,101,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,54,102,54,102,54,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,101,97,101,97,101,97,125,46,98,45,112,111,112,111,118,101,114,45,108,105,103,104,116,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,56,49,56,49,56,50,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,112,111,112,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,100,54,100,56,100,57,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,100,54,100,56,100,57,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,101,100,48,100,50,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,97,102,116,101,114,44,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,97,102,116,101,114,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,100,54,100,56,100,57,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,101,100,48,100,50,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,99,49,99,52,99,53,125,46,98,45,112,111,112,111,118,101,114,45,100,97,114,107,32,46,112,111,112,111,118,101,114,45,98,111,100,121,123,99,111,108,111,114,58,35,49,98,49,101,50,49,125,46,98,45,115,105,100,101,98,97,114,45,111,117,116,101,114,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,114,105,103,104,116,58,48,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,59,122,45,105,110,100,101,120,58,49,48,51,53,125,46,98,45,115,105,100,101,98,97,114,45,98,97,99,107,100,114,111,112,123,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,45,49,59,119,105,100,116,104,58,49,48,48,118,119,59,111,112,97,99,105,116,121,58,46,54,125,46,98,45,115,105,100,101,98,97,114,44,46,98,45,115,105,100,101,98,97,114,45,98,97,99,107,100,114,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,104,101,105,103,104,116,58,49,48,48,118,104,125,46,98,45,115,105,100,101,98,97,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,119,105,100,116,104,58,51,50,48,112,120,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,59,109,97,114,103,105,110,58,48,59,111,117,116,108,105,110,101,58,48,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,48,41,125,46,98,45,115,105,100,101,98,97,114,46,115,108,105,100,101,123,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,115,105,100,101,98,97,114,46,115,108,105,100,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,98,45,115,105,100,101,98,97,114,58,110,111,116,40,46,98,45,115,105,100,101,98,97,114,45,114,105,103,104,116,41,123,108,101,102,116,58,48,59,114,105,103,104,116,58,97,117,116,111,125,46,98,45,115,105,100,101,98,97,114,58,110,111,116,40,46,98,45,115,105,100,101,98,97,114,45,114,105,103,104,116,41,46,115,108,105,100,101,58,110,111,116,40,46,115,104,111,119,41,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,125,46,98,45,115,105,100,101,98,97,114,58,110,111,116,40,46,98,45,115,105,100,101,98,97,114,45,114,105,103,104,116,41,62,46,98,45,115,105,100,101,98,97,114,45,104,101,97,100,101,114,32,46,99,108,111,115,101,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,46,98,45,115,105,100,101,98,97,114,46,98,45,115,105,100,101,98,97,114,45,114,105,103,104,116,123,108,101,102,116,58,97,117,116,111,59,114,105,103,104,116,58,48,125,46,98,45,115,105,100,101,98,97,114,46,98,45,115,105,100,101,98,97,114,45,114,105,103,104,116,46,115,108,105,100,101,58,110,111,116,40,46,115,104,111,119,41,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,125,46,98,45,115,105,100,101,98,97,114,46,98,45,115,105,100,101,98,97,114,45,114,105,103,104,116,62,46,98,45,115,105,100,101,98,97,114,45,104,101,97,100,101,114,32,46,99,108,111,115,101,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,125,46,98,45,115,105,100,101,98,97,114,62,46,98,45,115,105,100,101,98,97,114,45,104,101,97,100,101,114,123,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,100,105,115,112,108,97,121,58,102,108,101,120,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,103,114,111,119,58,48,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,91,100,105,114,61,114,116,108,93,32,46,98,45,115,105,100,101,98,97,114,62,46,98,45,115,105,100,101,98,97,114,45,104,101,97,100,101,114,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,125,46,98,45,115,105,100,101,98,97,114,62,46,98,45,115,105,100,101,98,97,114,45,104,101,97,100,101,114,32,46,99,108,111,115,101,123,102,108,111,97,116,58,110,111,110,101,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,125,46,98,45,115,105,100,101,98,97,114,62,46,98,45,115,105,100,101,98,97,114,45,98,111,100,121,123,102,108,101,120,45,103,114,111,119,58,49,59,104,101,105,103,104,116,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,98,45,115,105,100,101,98,97,114,62,46,98,45,115,105,100,101,98,97,114,45,102,111,111,116,101,114,123,102,108,101,120,45,103,114,111,119,58,48,125,46,98,45,115,107,101,108,101,116,111,110,45,119,114,97,112,112,101,114,123,99,117,114,115,111,114,58,119,97,105,116,125,46,98,45,115,107,101,108,101,116,111,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,49,50,41,59,99,117,114,115,111,114,58,119,97,105,116,59,45,119,101,98,107,105,116,45,109,97,115,107,45,105,109,97,103,101,58,114,97,100,105,97,108,45,103,114,97,100,105,101,110,116,40,35,102,102,102,44,35,48,48,48,41,59,109,97,115,107,45,105,109,97,103,101,58,114,97,100,105,97,108,45,103,114,97,100,105,101,110,116,40,35,102,102,102,44,35,48,48,48,41,125,46,98,45,115,107,101,108,101,116,111,110,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,34,194,160,34,125,46,98,45,115,107,101,108,101,116,111,110,45,116,101,120,116,123,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,45,115,107,101,108,101,116,111,110,45,98,117,116,116,111,110,123,119,105,100,116,104,58,55,53,112,120,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,45,115,107,101,108,101,116,111,110,45,97,118,97,116,97,114,123,119,105,100,116,104,58,50,46,53,101,109,59,104,101,105,103,104,116,58,50,46,53,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,125,46,98,45,115,107,101,108,101,116,111,110,45,105,110,112,117,116,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,45,115,107,101,108,101,116,111,110,45,105,99,111,110,45,119,114,97,112,112,101,114,32,115,118,103,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,49,50,41,125,46,98,45,115,107,101,108,101,116,111,110,45,105,109,103,123,104,101,105,103,104,116,58,49,48,48,37,59,119,105,100,116,104,58,49,48,48,37,125,46,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,119,97,118,101,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,34,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,48,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,57,48,100,101,103,44,116,114,97,110,115,112,97,114,101,110,116,44,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,52,41,44,116,114,97,110,115,112,97,114,101,110,116,41,59,97,110,105,109,97,116,105,111,110,58,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,119,97,118,101,32,49,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,119,97,118,101,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,119,97,118,101,123,48,37,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,125,116,111,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,125,125,46,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,102,97,100,101,123,97,110,105,109,97,116,105,111,110,58,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,102,97,100,101,32,56,55,53,109,115,32,101,97,115,101,45,105,110,45,111,117,116,32,105,110,102,105,110,105,116,101,32,97,108,116,101,114,110,97,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,102,97,100,101,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,102,97,100,101,123,48,37,123,111,112,97,99,105,116,121,58,49,125,116,111,123,111,112,97,99,105,116,121,58,46,52,125,125,46,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,116,104,114,111,98,123,97,110,105,109,97,116,105,111,110,58,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,116,104,114,111,98,32,56,55,53,109,115,32,101,97,115,101,45,105,110,32,105,110,102,105,110,105,116,101,32,97,108,116,101,114,110,97,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,116,104,114,111,98,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,116,104,114,111,98,123,48,37,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,125,116,111,123,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,57,55,53,41,125,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,102,105,120,101,100,123,116,97,98,108,101,45,108,97,121,111,117,116,58,102,105,120,101,100,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,110,111,45,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,115,101,112,97,114,97,116,101,59,98,111,114,100,101,114,45,115,112,97,99,105,110,103,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,91,97,114,105,97,45,98,117,115,121,61,116,114,117,101,93,123,111,112,97,99,105,116,121,58,46,53,53,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,46,98,45,116,97,98,108,101,45,100,101,116,97,105,108,115,62,116,100,123,98,111,114,100,101,114,45,116,111,112,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,99,97,112,116,105,111,110,123,99,97,112,116,105,111,110,45,115,105,100,101,58,98,111,116,116,111,109,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,99,97,112,116,105,111,110,45,116,111,112,62,99,97,112,116,105,111,110,123,99,97,112,116,105,111,110,45,115,105,100,101,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,46,116,97,98,108,101,45,97,99,116,105,118,101,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,104,111,118,101,114,62,116,98,111,100,121,62,116,114,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,32,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,104,111,118,101,114,62,116,98,111,100,121,62,116,114,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,32,116,104,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,44,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,46,98,103,45,97,99,116,105,118,101,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,46,98,103,45,97,99,116,105,118,101,62,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,46,98,103,45,97,99,116,105,118,101,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,48,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,104,111,118,101,114,46,116,97,98,108,101,45,100,97,114,107,62,116,98,111,100,121,62,116,114,46,98,103,45,97,99,116,105,118,101,58,104,111,118,101,114,32,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,104,111,118,101,114,46,116,97,98,108,101,45,100,97,114,107,62,116,98,111,100,121,62,116,114,46,98,103,45,97,99,116,105,118,101,58,104,111,118,101,114,32,116,104,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,48,55,53,41,44,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,48,55,53,41,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,62,46,116,97,98,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,123,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,59,109,97,120,45,104,101,105,103,104,116,58,51,48,48,112,120,125,64,109,101,100,105,97,32,112,114,105,110,116,123,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,123,111,118,101,114,102,108,111,119,45,121,58,118,105,115,105,98,108,101,33,105,109,112,111,114,116,97,110,116,59,109,97,120,45,104,101,105,103,104,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,115,117,112,112,111,114,116,115,32,40,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,41,123,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,116,104,123,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,59,116,111,112,58,48,59,122,45,105,110,100,101,120,58,50,125,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,123,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,59,108,101,102,116,58,48,125,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,123,122,45,105,110,100,101,120,58,53,125,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,44,91,99,108,97,115,115,42,61,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,93,62,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,123,122,45,105,110,100,101,120,58,50,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,98,111,100,121,62,116,114,62,46,116,97,98,108,101,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,116,97,98,108,101,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,116,97,98,108,101,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,98,111,100,121,62,116,114,62,46,98,103,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,102,111,111,116,62,116,114,62,46,98,103,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,104,101,97,100,62,116,114,62,46,98,103,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,115,116,114,105,112,101,100,62,116,98,111,100,121,62,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,62,46,116,97,98,108,101,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,44,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,115,116,114,105,112,101,100,46,116,97,98,108,101,45,100,97,114,107,62,116,98,111,100,121,62,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,62,46,98,103,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,48,53,41,44,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,48,53,41,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,104,111,118,101,114,62,116,98,111,100,121,62,116,114,58,104,111,118,101,114,62,46,116,97,98,108,101,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,44,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,104,111,118,101,114,46,116,97,98,108,101,45,100,97,114,107,62,116,98,111,100,121,62,116,114,58,104,111,118,101,114,62,46,98,103,45,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,48,55,53,41,44,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,48,55,53,41,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,46,54,53,101,109,32,49,101,109,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,58,110,111,116,40,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,41,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,58,110,111,116,40,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,41,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,114,105,103,104,116,32,46,51,55,53,114,101,109,32,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,46,55,53,114,101,109,32,43,32,46,54,53,101,109,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,108,101,102,116,32,46,51,55,53,114,101,109,32,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,99,97,108,99,40,46,55,53,114,101,109,32,43,32,46,54,53,101,109,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,110,111,110,101,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,110,111,110,101,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,49,48,49,39,32,104,101,105,103,104,116,61,39,49,48,49,39,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,39,110,111,110,101,39,37,51,69,37,51,67,112,97,116,104,32,111,112,97,99,105,116,121,61,39,46,51,39,32,100,61,39,109,53,49,32,49,32,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,109,48,32,49,48,48,32,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,97,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,97,115,99,101,110,100,105,110,103,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,49,48,49,39,32,104,101,105,103,104,116,61,39,49,48,49,39,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,39,110,111,110,101,39,37,51,69,37,51,67,112,97,116,104,32,100,61,39,109,53,49,32,49,32,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,39,47,37,51,69,37,51,67,112,97,116,104,32,111,112,97,99,105,116,121,61,39,46,51,39,32,100,61,39,109,53,49,32,49,48,49,32,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,100,101,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,100,101,115,99,101,110,100,105,110,103,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,49,48,49,39,32,104,101,105,103,104,116,61,39,49,48,49,39,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,39,110,111,110,101,39,37,51,69,37,51,67,112,97,116,104,32,111,112,97,99,105,116,121,61,39,46,51,39,32,100,61,39,109,53,49,32,49,32,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,39,47,37,51,69,37,51,67,112,97,116,104,32,100,61,39,109,53,49,32,49,48,49,32,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,110,111,110,101,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,110,111,110,101,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,46,116,104,101,97,100,45,100,97,114,107,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,110,111,110,101,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,49,48,49,39,32,104,101,105,103,104,116,61,39,49,48,49,39,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,39,110,111,110,101,39,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,111,112,97,99,105,116,121,61,39,46,51,39,32,100,61,39,109,53,49,32,49,32,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,109,48,32,49,48,48,32,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,97,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,97,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,46,116,104,101,97,100,45,100,97,114,107,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,97,115,99,101,110,100,105,110,103,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,49,48,49,39,32,104,101,105,103,104,116,61,39,49,48,49,39,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,39,110,111,110,101,39,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,100,61,39,109,53,49,32,49,32,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,39,47,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,111,112,97,99,105,116,121,61,39,46,51,39,32,100,61,39,109,53,49,32,49,48,49,32,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,100,101,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,100,97,114,107,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,100,101,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,46,116,104,101,97,100,45,100,97,114,107,62,116,114,62,91,97,114,105,97,45,115,111,114,116,61,100,101,115,99,101,110,100,105,110,103,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,49,48,49,39,32,104,101,105,103,104,116,61,39,49,48,49,39,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,39,110,111,110,101,39,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,111,112,97,99,105,116,121,61,39,46,51,39,32,100,61,39,109,53,49,32,49,32,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,39,47,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,100,61,39,109,53,49,32,49,48,49,32,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,116,97,98,108,101,45,100,97,114,107,91,97,114,105,97,45,115,111,114,116,61,110,111,110,101,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,116,97,98,108,101,45,100,97,114,107,91,97,114,105,97,45,115,111,114,116,61,110,111,110,101,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,49,48,49,39,32,104,101,105,103,104,116,61,39,49,48,49,39,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,39,110,111,110,101,39,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,111,112,97,99,105,116,121,61,39,46,51,39,32,100,61,39,109,53,49,32,49,32,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,109,48,32,49,48,48,32,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,116,97,98,108,101,45,100,97,114,107,91,97,114,105,97,45,115,111,114,116,61,97,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,116,97,98,108,101,45,100,97,114,107,91,97,114,105,97,45,115,111,114,116,61,97,115,99,101,110,100,105,110,103,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,49,48,49,39,32,104,101,105,103,104,116,61,39,49,48,49,39,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,39,110,111,110,101,39,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,100,61,39,109,53,49,32,49,32,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,39,47,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,111,112,97,99,105,116,121,61,39,46,51,39,32,100,61,39,109,53,49,32,49,48,49,32,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,102,111,111,116,62,116,114,62,46,116,97,98,108,101,45,100,97,114,107,91,97,114,105,97,45,115,111,114,116,61,100,101,115,99,101,110,100,105,110,103,93,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,62,116,104,101,97,100,62,116,114,62,46,116,97,98,108,101,45,100,97,114,107,91,97,114,105,97,45,115,111,114,116,61,100,101,115,99,101,110,100,105,110,103,93,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,37,51,67,115,118,103,32,120,109,108,110,115,61,39,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,39,32,119,105,100,116,104,61,39,49,48,49,39,32,104,101,105,103,104,116,61,39,49,48,49,39,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,39,110,111,110,101,39,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,111,112,97,99,105,116,121,61,39,46,51,39,32,100,61,39,109,53,49,32,49,32,50,53,32,50,51,32,50,52,32,50,50,72,49,108,50,53,45,50,50,122,39,47,37,51,69,37,51,67,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,100,61,39,109,53,49,32,49,48,49,32,50,53,45,50,51,32,50,52,45,50,50,72,49,108,50,53,32,50,50,122,39,47,37,51,69,37,51,67,47,115,118,103,37,51,69,34,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,115,109,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,58,110,111,116,40,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,41,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,115,109,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,58,110,111,116,40,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,41,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,114,105,103,104,116,32,46,49,53,114,101,109,32,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,46,51,114,101,109,32,43,32,46,54,53,101,109,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,115,109,62,116,102,111,111,116,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,116,97,98,108,101,45,115,109,62,116,104,101,97,100,62,116,114,62,91,97,114,105,97,45,115,111,114,116,93,46,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,108,101,102,116,32,46,49,53,114,101,109,32,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,99,97,108,99,40,46,51,114,101,109,32,43,32,46,54,53,101,109,41,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,101,108,101,99,116,97,98,108,101,58,110,111,116,40,46,98,45,116,97,98,108,101,45,115,101,108,101,99,116,97,98,108,101,45,110,111,45,99,108,105,99,107,41,62,116,98,111,100,121,62,116,114,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,101,108,101,99,116,97,98,108,101,58,110,111,116,40,46,98,45,116,97,98,108,101,45,115,101,108,101,99,116,97,98,108,101,45,110,111,45,99,108,105,99,107,41,46,98,45,116,97,98,108,101,45,115,101,108,101,99,116,105,110,103,46,98,45,116,97,98,108,101,45,115,101,108,101,99,116,45,114,97,110,103,101,62,116,98,111,100,121,62,116,114,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,99,97,112,116,105,111,110,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,116,104,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,102,111,111,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,104,101,97,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,99,97,112,116,105,111,110,123,99,97,112,116,105,111,110,45,115,105,100,101,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,108,97,98,101,108,41,59,119,105,100,116,104,58,52,48,37,59,102,108,111,97,116,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,112,97,100,100,105,110,103,58,48,32,46,53,114,101,109,32,48,32,48,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,62,100,105,118,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,54,48,37,59,112,97,100,100,105,110,103,58,48,32,48,32,48,32,46,53,114,101,109,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,46,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,46,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,58,102,105,114,115,116,45,99,104,105,108,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,115,109,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,104,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,51,112,120,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,99,97,112,116,105,111,110,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,116,104,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,102,111,111,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,104,101,97,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,99,97,112,116,105,111,110,123,99,97,112,116,105,111,110,45,115,105,100,101,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,108,97,98,101,108,41,59,119,105,100,116,104,58,52,48,37,59,102,108,111,97,116,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,112,97,100,100,105,110,103,58,48,32,46,53,114,101,109,32,48,32,48,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,62,100,105,118,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,54,48,37,59,112,97,100,100,105,110,103,58,48,32,48,32,48,32,46,53,114,101,109,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,46,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,46,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,58,102,105,114,115,116,45,99,104,105,108,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,109,100,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,104,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,51,112,120,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,99,97,112,116,105,111,110,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,116,104,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,102,111,111,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,104,101,97,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,99,97,112,116,105,111,110,123,99,97,112,116,105,111,110,45,115,105,100,101,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,108,97,98,101,108,41,59,119,105,100,116,104,58,52,48,37,59,102,108,111,97,116,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,112,97,100,100,105,110,103,58,48,32,46,53,114,101,109,32,48,32,48,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,62,100,105,118,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,54,48,37,59,112,97,100,100,105,110,103,58,48,32,48,32,48,32,46,53,114,101,109,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,46,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,46,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,58,102,105,114,115,116,45,99,104,105,108,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,108,103,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,104,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,51,112,120,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,99,97,112,116,105,111,110,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,116,104,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,102,111,111,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,104,101,97,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,99,97,112,116,105,111,110,123,99,97,112,116,105,111,110,45,115,105,100,101,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,108,97,98,101,108,41,59,119,105,100,116,104,58,52,48,37,59,102,108,111,97,116,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,112,97,100,100,105,110,103,58,48,32,46,53,114,101,109,32,48,32,48,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,62,100,105,118,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,54,48,37,59,112,97,100,100,105,110,103,58,48,32,48,32,48,32,46,53,114,101,109,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,46,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,46,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,58,102,105,114,115,116,45,99,104,105,108,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,120,108,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,104,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,51,112,120,125,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,99,97,112,116,105,111,110,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,116,104,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,102,111,111,116,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,102,111,111,116,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,104,101,97,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,104,101,97,100,62,116,114,46,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,99,97,112,116,105,111,110,123,99,97,112,116,105,111,110,45,115,105,100,101,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,108,97,98,101,108,41,59,119,105,100,116,104,58,52,48,37,59,102,108,111,97,116,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,112,97,100,100,105,110,103,58,48,32,46,53,114,101,109,32,48,32,48,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,91,100,97,116,97,45,108,97,98,101,108,93,62,100,105,118,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,54,48,37,59,112,97,100,100,105,110,103,58,48,32,48,32,48,32,46,53,114,101,109,59,109,97,114,103,105,110,58,48,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,46,98,111,116,116,111,109,45,114,111,119,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,46,116,111,112,45,114,111,119,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,58,102,105,114,115,116,45,99,104,105,108,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,100,44,46,116,97,98,108,101,46,98,45,116,97,98,108,101,46,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,62,116,98,111,100,121,62,116,114,62,91,114,111,119,115,112,97,110,93,43,116,104,123,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,58,51,112,120,125,46,98,45,116,105,109,101,123,109,105,110,45,119,105,100,116,104,58,49,53,48,112,120,125,46,98,45,116,105,109,101,32,111,117,116,112,117,116,46,100,105,115,97,98,108,101,100,44,46,98,45,116,105,109,101,91,97,114,105,97,45,100,105,115,97,98,108,101,100,61,116,114,117,101,93,32,111,117,116,112,117,116,44,46,98,45,116,105,109,101,91,97,114,105,97,45,114,101,97,100,111,110,108,121,61,116,114,117,101,93,32,111,117,116,112,117,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,111,112,97,99,105,116,121,58,49,125,46,98,45,116,105,109,101,91,97,114,105,97,45,100,105,115,97,98,108,101,100,61,116,114,117,101,93,32,111,117,116,112,117,116,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,91,100,105,114,61,114,116,108,93,32,46,98,45,116,105,109,101,62,46,100,45,102,108,101,120,58,110,111,116,40,46,102,108,101,120,45,99,111,108,117,109,110,41,123,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,125,46,98,45,116,105,109,101,32,46,98,45,116,105,109,101,45,104,101,97,100,101,114,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,98,45,116,105,109,101,32,46,98,45,116,105,109,101,45,104,101,97,100,101,114,32,111,117,116,112,117,116,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,125,46,98,45,116,105,109,101,32,46,98,45,116,105,109,101,45,102,111,111,116,101,114,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,46,98,45,116,105,109,101,32,46,98,45,116,105,109,101,45,97,109,112,109,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,125,46,98,45,116,111,97,115,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,109,97,120,45,119,105,100,116,104,58,51,53,48,112,120,59,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,122,45,105,110,100,101,120,58,49,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,45,116,111,97,115,116,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,56,53,41,125,46,98,45,116,111,97,115,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,98,45,116,111,97,115,116,32,46,116,111,97,115,116,123,111,112,97,99,105,116,121,58,49,125,46,98,45,116,111,97,115,116,32,46,116,111,97,115,116,46,102,97,100,101,58,110,111,116,40,46,115,104,111,119,41,123,111,112,97,99,105,116,121,58,48,125,46,98,45,116,111,97,115,116,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,98,111,100,121,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,98,45,116,111,97,115,116,45,112,114,105,109,97,114,121,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,51,48,44,50,52,50,44,50,53,53,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,49,56,52,44,50,49,56,44,50,53,53,44,46,56,53,41,59,99,111,108,111,114,58,35,48,48,52,48,56,53,125,46,98,45,116,111,97,115,116,45,112,114,105,109,97,114,121,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,48,52,44,50,50,57,44,50,53,53,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,49,56,52,44,50,49,56,44,50,53,53,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,112,114,105,109,97,114,121,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,54,102,50,102,102,125,46,98,45,116,111,97,115,116,45,115,101,99,111,110,100,97,114,121,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,104,115,108,97,40,50,49,48,44,55,37,44,57,52,37,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,104,115,108,97,40,50,49,54,44,54,37,44,56,53,37,44,46,56,53,41,59,99,111,108,111,114,58,35,51,56,51,100,52,49,125,46,98,45,116,111,97,115,116,45,115,101,99,111,110,100,97,114,121,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,104,115,108,97,40,50,50,48,44,53,37,44,56,57,37,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,104,115,108,97,40,50,49,54,44,54,37,44,56,53,37,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,115,101,99,111,110,100,97,114,121,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,102,102,48,102,49,125,46,98,45,116,111,97,115,116,45,115,117,99,99,101,115,115,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,51,48,44,50,52,53,44,50,51,51,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,49,57,53,44,50,51,48,44,50,48,51,44,46,56,53,41,59,99,111,108,111,114,58,35,49,53,53,55,50,52,125,46,98,45,116,111,97,115,116,45,115,117,99,99,101,115,115,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,49,50,44,50,51,55,44,50,49,56,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,49,57,53,44,50,51,48,44,50,48,51,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,115,117,99,99,101,115,115,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,54,102,53,101,57,125,46,98,45,116,111,97,115,116,45,105,110,102,111,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,50,57,44,50,52,52,44,50,52,55,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,49,57,48,44,50,50,57,44,50,51,53,44,46,56,53,41,59,99,111,108,111,114,58,35,48,99,53,52,54,48,125,46,98,45,116,111,97,115,116,45,105,110,102,111,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,48,57,44,50,51,54,44,50,52,49,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,49,57,48,44,50,50,57,44,50,51,53,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,105,110,102,111,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,53,102,52,102,55,125,46,98,45,116,111,97,115,116,45,119,97,114,110,105,110,103,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,52,57,44,50,51,49,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,51,56,44,49,56,54,44,46,56,53,41,59,99,111,108,111,114,58,35,56,53,54,52,48,52,125,46,98,45,116,111,97,115,116,45,119,97,114,110,105,110,103,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,52,51,44,50,48,53,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,51,56,44,49,56,54,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,119,97,114,110,105,110,103,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,57,101,55,125,46,98,45,116,111,97,115,116,45,100,97,110,103,101,114,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,50,44,50,51,55,44,50,51,56,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,50,52,53,44,49,57,56,44,50,48,51,44,46,56,53,41,59,99,111,108,111,114,58,35,55,50,49,99,50,52,125,46,98,45,116,111,97,115,116,45,100,97,110,103,101,114,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,52,56,44,50,49,53,44,50,49,56,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,50,52,53,44,49,57,56,44,50,48,51,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,100,97,110,103,101,114,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,99,101,100,101,101,125,46,98,45,116,111,97,115,116,45,108,105,103,104,116,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,50,53,51,44,50,53,51,44,50,53,52,44,46,56,53,41,59,99,111,108,111,114,58,35,56,49,56,49,56,50,125,46,98,45,116,111,97,115,116,45,108,105,103,104,116,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,50,53,51,44,50,53,51,44,50,53,52,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,108,105,103,104,116,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,98,45,116,111,97,115,116,45,100,97,114,107,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,104,115,108,97,40,49,56,48,44,52,37,44,56,57,37,44,46,56,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,104,115,108,97,40,50,49,48,44,52,37,44,55,56,37,44,46,56,53,41,59,99,111,108,111,114,58,35,49,98,49,101,50,49,125,46,98,45,116,111,97,115,116,45,100,97,114,107,32,46,116,111,97,115,116,32,46,116,111,97,115,116,45,104,101,97,100,101,114,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,104,115,108,97,40,50,48,48,44,52,37,44,56,53,37,44,46,56,53,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,104,115,108,97,40,50,49,48,44,52,37,44,55,56,37,44,46,56,53,41,125,46,98,45,116,111,97,115,116,45,100,97,114,107,46,98,45,116,111,97,115,116,45,115,111,108,105,100,32,46,116,111,97,115,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,51,101,53,101,53,125,46,98,45,116,111,97,115,116,101,114,123,122,45,105,110,100,101,120,58,49,49,48,48,125,46,98,45,116,111,97,115,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,123,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,125,46,98,45,116,111,97,115,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,99,101,110,116,101,114,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,102,117,108,108,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,99,101,110,116,101,114,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,102,117,108,108,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,108,101,102,116,58,46,53,114,101,109,59,114,105,103,104,116,58,46,53,114,101,109,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,109,97,120,45,119,105,100,116,104,58,51,53,48,112,120,59,119,105,100,116,104,58,49,48,48,37,59,108,101,102,116,58,48,59,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,58,48,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,32,46,98,45,116,111,97,115,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,32,46,116,111,97,115,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,32,46,98,45,116,111,97,115,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,32,46,116,111,97,115,116,123,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,99,101,110,116,101,114,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,102,117,108,108,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,123,116,111,112,58,48,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,123,116,111,112,58,46,53,114,101,109,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,99,101,110,116,101,114,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,102,117,108,108,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,123,98,111,116,116,111,109,58,48,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,102,117,108,108,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,123,98,111,116,116,111,109,58,46,53,114,101,109,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,99,101,110,116,101,114,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,101,114,45,115,108,111,116,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,109,111,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,109,111,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,109,111,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,109,111,118,101,123,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,49,55,53,109,115,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,116,111,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,116,111,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,116,111,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,101,110,116,101,114,45,116,111,32,46,116,111,97,115,116,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,45,100,101,108,97,121,58,49,55,53,109,115,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,114,97,110,115,105,116,105,111,110,45,100,101,108,97,121,58,49,55,53,109,115,125,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,108,101,102,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,44,46,98,45,116,111,97,115,116,101,114,46,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,32,46,98,45,116,111,97,115,116,46,98,45,116,111,97,115,116,101,114,45,108,101,97,118,101,45,97,99,116,105,118,101,32,46,116,111,97,115,116,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,45,100,101,108,97,121,58,48,115,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,112,97,99,105,116,121,58,46,57,59,111,117,116,108,105,110,101,58,48,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,102,97,100,101,58,110,111,116,40,46,115,104,111,119,41,123,111,112,97,99,105,116,121,58,48,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,57,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,110,111,110,105,110,116,101,114,97,99,116,105,118,101,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,32,46,97,114,114,111,119,123,109,97,114,103,105,110,58,48,32,46,50,53,114,101,109,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,123,109,97,114,103,105,110,58,46,50,53,114,101,109,32,48,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,112,114,105,109,97,114,121,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,101,99,111,110,100,97,114,121,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,115,117,99,99,101,115,115,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,105,110,102,111,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,119,97,114,110,105,110,103,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,110,103,101,114,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,108,105,103,104,116,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,98,101,102,111,114,101,44,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,111,111,108,116,105,112,46,98,45,116,111,111,108,116,105,112,45,100,97,114,107,32,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,45,105,99,111,110,46,98,105,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,45,46,49,53,101,109,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,32,46,55,53,115,32,101,97,115,101,45,105,110,45,111,117,116,32,105,110,102,105,110,105,116,101,32,97,108,116,101,114,110,97,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,45,118,101,114,116,105,99,97,108,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,45,118,101,114,116,105,99,97,108,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,45,118,101,114,116,105,99,97,108,32,46,55,53,115,32,101,97,115,101,45,105,110,45,111,117,116,32,105,110,102,105,110,105,116,101,32,97,108,116,101,114,110,97,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,45,118,101,114,116,105,99,97,108,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,45,118,101,114,116,105,99,97,108,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,102,97,100,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,102,97,100,101,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,102,97,100,101,32,46,55,53,115,32,101,97,115,101,45,105,110,45,111,117,116,32,105,110,102,105,110,105,116,101,32,97,108,116,101,114,110,97,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,102,97,100,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,102,97,100,101,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,32,50,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,32,110,111,114,109,97,108,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,32,50,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,32,114,101,118,101,114,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,112,117,108,115,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,112,117,108,115,101,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,32,49,115,32,115,116,101,112,115,40,56,41,32,105,110,102,105,110,105,116,101,32,110,111,114,109,97,108,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,112,117,108,115,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,112,117,108,115,101,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,45,112,117,108,115,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,45,112,117,108,115,101,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,32,49,115,32,115,116,101,112,115,40,56,41,32,105,110,102,105,110,105,116,101,32,114,101,118,101,114,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,45,112,117,108,115,101,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,45,114,101,118,101,114,115,101,45,112,117,108,115,101,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,116,104,114,111,98,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,116,104,114,111,98,62,103,123,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,99,101,110,116,101,114,59,97,110,105,109,97,116,105,111,110,58,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,116,104,114,111,98,32,46,55,53,115,32,101,97,115,101,45,105,110,45,111,117,116,32,105,110,102,105,110,105,116,101,32,97,108,116,101,114,110,97,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,45,105,99,111,110,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,116,104,114,111,98,44,46,98,45,105,99,111,110,46,98,45,105,99,111,110,115,116,97,99,107,32,46,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,116,104,114,111,98,62,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,123,48,37,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,50,53,37,41,125,116,111,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,50,53,37,41,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,99,121,108,111,110,45,118,101,114,116,105,99,97,108,123,48,37,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,50,53,37,41,125,116,111,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,50,53,37,41,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,102,97,100,101,123,48,37,123,111,112,97,99,105,116,121,58,46,49,125,116,111,123,111,112,97,99,105,116,121,58,49,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,115,112,105,110,123,48,37,123,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,48,41,125,116,111,123,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,53,57,100,101,103,41,125,125,64,107,101,121,102,114,97,109,101,115,32,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,116,104,114,111,98,123,48,37,123,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,53,41,125,116,111,123,111,112,97,99,105,116,121,58,49,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,125,125,46,98,116,110,32,46,98,45,105,99,111,110,46,98,105,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,32,46,98,45,105,99,111,110,46,98,105,44,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,32,46,98,45,105,99,111,110,46,98,105,44,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,46,98,45,105,99,111,110,46,98,105,44,46,110,97,118,45,108,105,110,107,32,46,98,45,105,99,111,110,46,98,105,123,102,111,110,116,45,115,105,122,101,58,49,50,53,37,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,52,41,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,48,112,120,59,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,46,49,53,115,32,108,105,110,101,97,114,59,119,105,100,116,104,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,58,104,111,118,101,114,123,98,111,120,45,115,104,97,100,111,119,58,48,32,50,112,120,32,51,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,43,46,98,116,110,123,109,97,114,103,105,110,45,108,101,102,116,58,53,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,45,53,48,37,41,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,125,46,105,116,114,101,101,45,109,101,110,117,123,98,97,99,107,103,114,111,117,110,100,58,35,100,100,100,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,52,99,52,99,52,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,109,105,110,45,119,105,100,116,104,58,49,53,48,112,120,59,112,97,100,100,105,110,103,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,52,125,46,105,116,114,101,101,45,109,101,110,117,32,97,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,51,112,120,32,56,112,120,125,46,105,116,114,101,101,45,109,101,110,117,32,97,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,49,56,44,50,53,48,44,50,53,53,44,46,53,41,59,99,111,108,111,114,58,114,103,98,97,40,49,54,52,44,50,51,52,44,50,52,53,44,46,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,42,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,123,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,32,111,108,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,99,111,108,108,97,112,115,101,100,62,111,108,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,104,105,100,100,101,110,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,62,46,116,105,116,108,101,45,119,114,97,112,123,109,105,110,45,104,101,105,103,104,116,58,50,53,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,119,105,100,116,104,58,50,53,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,45,53,48,37,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,123,108,101,102,116,58,49,56,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,52,112,120,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,119,105,100,116,104,58,50,48,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,52,50,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,123,99,111,108,111,114,58,35,52,55,54,99,98,56,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,98,101,102,111,114,101,123,108,101,102,116,58,50,52,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,100,114,97,103,45,97,110,100,45,100,114,111,112,32,108,105,58,110,111,116,40,46,100,114,111,112,45,116,97,114,103,101,116,41,123,111,112,97,99,105,116,121,58,46,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,46,105,110,115,112,105,114,101,45,116,114,101,101,44,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,62,46,116,105,116,108,101,45,119,114,97,112,62,46,116,105,116,108,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,62,46,116,105,116,108,101,45,119,114,97,112,62,46,116,105,116,108,101,123,98,111,114,100,101,114,45,116,111,112,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,62,46,116,105,116,108,101,45,119,114,97,112,62,46,116,105,116,108,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,104,101,105,103,104,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,46,98,116,110,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,62,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,110,111,110,101,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,48,112,120,59,122,45,105,110,100,101,120,58,51,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,58,104,111,118,101,114,62,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,105,110,112,117,116,43,46,98,116,110,45,103,114,111,117,112,123,109,97,114,103,105,110,45,108,101,102,116,58,49,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,62,46,98,116,110,46,105,99,111,110,123,109,97,114,103,105,110,45,108,101,102,116,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,62,111,108,62,46,102,111,108,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,49,51,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,44,46,105,110,115,112,105,114,101,45,116,114,101,101,62,111,108,62,46,102,111,108,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,62,111,108,62,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,62,111,108,32,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,111,108,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,62,111,108,32,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,111,108,123,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,46,102,111,108,100,101,114,58,110,111,116,40,46,108,111,97,100,105,110,103,41,62,46,116,105,116,108,101,45,119,114,97,112,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,51,49,112,120,32,49,51,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,101,116,97,99,104,101,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,78,67,65,89,65,65,65,66,121,54,43,82,56,65,65,65,65,75,107,108,69,81,86,81,111,85,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,74,111,65,71,85,90,77,51,50,90,48,85,56,116,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,46,100,101,116,97,99,104,101,100,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,62,111,108,62,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,99,111,110,116,101,110,116,58,34,34,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,104,111,118,101,114,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,111,108,108,97,112,115,101,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,56,37,50,48,49,49,104,56,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,56,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,104,111,118,101,114,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,101,120,112,97,110,100,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,49,50,37,50,48,55,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,118,51,104,51,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,51,118,51,113,48,37,50,48,48,46,52,49,52,45,48,46,50,57,51,37,50,48,48,46,55,48,55,116,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,45,48,46,50,57,51,45,48,46,50,57,51,45,48,46,55,48,55,118,45,51,104,45,51,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,104,51,118,45,51,113,48,45,48,46,52,49,52,37,50,48,48,46,50,57,51,45,48,46,55,48,55,116,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,53,97,53,97,53,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,104,111,118,101,114,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,111,114,101,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,50,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,49,56,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,54,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,104,111,118,101,114,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,104,111,118,101,114,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,62,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,62,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,62,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,62,46,116,105,116,108,101,45,119,114,97,112,32,105,110,112,117,116,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,62,46,116,105,116,108,101,45,119,114,97,112,32,46,116,105,116,108,101,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,119,105,100,116,104,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,104,101,105,103,104,116,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,49,48,48,37,50,48,49,48,48,37,50,50,37,50,48,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,37,51,68,37,50,50,120,77,105,100,89,77,105,100,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,117,105,108,45,114,105,110,103,37,50,50,37,51,69,37,51,67,114,101,99,116,37,50,48,120,37,51,68,37,50,50,48,37,50,50,37,50,48,121,37,51,68,37,50,50,48,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,110,111,110,101,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,98,107,37,50,50,37,51,69,37,51,67,37,50,70,114,101,99,116,37,51,69,37,51,67,100,101,102,115,37,51,69,37,51,67,102,105,108,116,101,114,37,50,48,105,100,37,51,68,37,50,50,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,50,37,50,48,120,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,121,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,51,69,37,51,67,102,101,79,102,102,115,101,116,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,100,120,37,51,68,37,50,50,48,37,50,50,37,50,48,100,121,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,79,102,102,115,101,116,37,51,69,37,51,67,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,115,116,100,68,101,118,105,97,116,105,111,110,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,51,69,37,51,67,102,101,66,108,101,110,100,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,105,110,50,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,109,111,100,101,37,51,68,37,50,50,110,111,114,109,97,108,37,50,50,37,51,69,37,51,67,37,50,70,102,101,66,108,101,110,100,37,51,69,37,51,67,37,50,70,102,105,108,116,101,114,37,51,69,37,51,67,37,50,70,100,101,102,115,37,51,69,37,51,67,112,97,116,104,37,50,48,100,37,51,68,37,50,50,77,49,48,37,50,67,53,48,99,48,37,50,67,48,37,50,67,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,37,50,67,48,46,50,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,46,49,37,50,67,48,46,55,37,50,67,48,46,49,37,50,67,49,46,49,99,48,46,49,37,50,67,48,46,52,37,50,67,48,46,49,37,50,67,48,46,56,37,50,67,48,46,50,37,50,67,49,46,50,99,48,46,50,37,50,67,48,46,56,37,50,67,48,46,51,37,50,67,49,46,56,37,50,67,48,46,53,37,50,67,50,46,56,37,50,48,99,48,46,51,37,50,67,49,37,50,67,48,46,54,37,50,67,50,46,49,37,50,67,48,46,57,37,50,67,51,46,50,99,48,46,51,37,50,67,49,46,49,37,50,67,48,46,57,37,50,67,50,46,51,37,50,67,49,46,52,37,50,67,51,46,53,99,48,46,53,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,50,46,52,37,50,67,49,46,56,37,50,67,51,46,55,99,48,46,51,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,49,46,57,99,48,46,52,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,51,37,50,67,49,46,51,37,50,67,49,46,57,37,50,48,99,49,37,50,67,49,46,50,37,50,67,49,46,57,37,50,67,50,46,54,37,50,67,51,46,49,37,50,67,51,46,55,99,50,46,50,37,50,67,50,46,53,37,50,67,53,37,50,67,52,46,55,37,50,67,55,46,57,37,50,67,54,46,55,99,51,37,50,67,50,37,50,67,54,46,53,37,50,67,51,46,52,37,50,67,49,48,46,49,37,50,67,52,46,54,99,51,46,54,37,50,67,49,46,49,37,50,67,55,46,53,37,50,67,49,46,53,37,50,67,49,49,46,50,37,50,67,49,46,54,99,52,45,48,46,49,37,50,67,55,46,55,45,48,46,54,37,50,67,49,49,46,51,45,49,46,54,37,50,48,99,51,46,54,45,49,46,50,37,50,67,55,45,50,46,54,37,50,67,49,48,45,52,46,54,99,51,45,50,37,50,67,53,46,56,45,52,46,50,37,50,67,55,46,57,45,54,46,55,99,49,46,50,45,49,46,50,37,50,67,50,46,49,45,50,46,53,37,50,67,51,46,49,45,51,46,55,99,48,46,53,45,48,46,54,37,50,67,48,46,57,45,49,46,51,37,50,67,49,46,51,45,49,46,57,99,48,46,52,45,48,46,54,37,50,67,48,46,56,45,49,46,51,37,50,67,49,46,50,45,49,46,57,37,50,48,99,48,46,54,45,49,46,51,37,50,67,49,46,51,45,50,46,53,37,50,67,49,46,56,45,51,46,55,99,48,46,53,45,49,46,50,37,50,67,49,45,50,46,52,37,50,67,49,46,52,45,51,46,53,99,48,46,51,45,49,46,49,37,50,67,48,46,54,45,50,46,50,37,50,67,48,46,57,45,51,46,50,99,48,46,50,45,49,37,50,67,48,46,52,45,49,46,57,37,50,67,48,46,53,45,50,46,56,99,48,46,49,45,48,46,52,37,50,67,48,46,49,45,48,46,56,37,50,67,48,46,50,45,49,46,50,37,50,48,99,48,45,48,46,52,37,50,67,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,49,99,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,50,37,50,67,48,46,50,45,49,46,55,67,57,48,37,50,67,53,48,46,53,37,50,67,57,48,37,50,67,53,48,37,50,67,57,48,37,50,67,53,48,115,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,37,50,67,48,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,37,50,67,48,46,55,37,50,67,48,37,50,67,49,46,49,37,50,48,99,48,37,50,67,48,46,52,45,48,46,49,37,50,67,48,46,56,45,48,46,49,37,50,67,49,46,50,99,45,48,46,49,37,50,67,48,46,57,45,48,46,50,37,50,67,49,46,56,45,48,46,52,37,50,67,50,46,56,99,45,48,46,50,37,50,67,49,45,48,46,53,37,50,67,50,46,49,45,48,46,55,37,50,67,51,46,51,99,45,48,46,51,37,50,67,49,46,50,45,48,46,56,37,50,67,50,46,52,45,49,46,50,37,50,67,51,46,55,99,45,48,46,50,37,50,67,48,46,55,45,48,46,53,37,50,67,49,46,51,45,48,46,56,37,50,67,49,46,57,37,50,48,99,45,48,46,51,37,50,67,48,46,55,45,48,46,54,37,50,67,49,46,51,45,48,46,57,37,50,67,50,99,45,48,46,51,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,51,45,49,46,49,37,50,67,50,99,45,48,46,52,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,52,45,49,46,50,37,50,67,50,99,45,49,37,50,67,49,46,51,45,49,46,57,37,50,67,50,46,55,45,51,46,49,37,50,67,52,99,45,50,46,50,37,50,67,50,46,55,45,53,37,50,67,53,45,56,46,49,37,50,67,55,46,49,37,50,48,99,45,48,46,56,37,50,67,48,46,53,45,49,46,54,37,50,67,49,45,50,46,52,37,50,67,49,46,53,99,45,48,46,56,37,50,67,48,46,53,45,49,46,55,37,50,67,48,46,57,45,50,46,54,37,50,67,49,46,51,76,54,54,37,50,67,56,55,46,55,108,45,49,46,52,37,50,67,48,46,53,99,45,48,46,57,37,50,67,48,46,51,45,49,46,56,37,50,67,48,46,55,45,50,46,56,37,50,67,49,99,45,51,46,56,37,50,67,49,46,49,45,55,46,57,37,50,67,49,46,55,45,49,49,46,56,37,50,67,49,46,56,76,52,55,37,50,67,57,48,46,56,37,50,48,99,45,49,37,50,67,48,45,50,45,48,46,50,45,51,45,48,46,51,108,45,49,46,53,45,48,46,50,108,45,48,46,55,45,48,46,49,76,52,49,46,49,37,50,67,57,48,99,45,49,45,48,46,51,45,49,46,57,45,48,46,53,45,50,46,57,45,48,46,55,99,45,48,46,57,45,48,46,51,45,49,46,57,45,48,46,55,45,50,46,56,45,49,76,51,52,37,50,67,56,55,46,55,108,45,49,46,51,45,48,46,54,37,50,48,99,45,48,46,57,45,48,46,52,45,49,46,56,45,48,46,56,45,50,46,54,45,49,46,51,99,45,48,46,56,45,48,46,53,45,49,46,54,45,49,45,50,46,52,45,49,46,53,99,45,51,46,49,45,50,46,49,45,53,46,57,45,52,46,53,45,56,46,49,45,55,46,49,99,45,49,46,50,45,49,46,50,45,50,46,49,45,50,46,55,45,51,46,49,45,52,99,45,48,46,53,45,48,46,54,45,48,46,56,45,49,46,52,45,49,46,50,45,50,37,50,48,99,45,48,46,52,45,48,46,55,45,48,46,56,45,49,46,51,45,49,46,49,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,57,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,56,45,49,46,57,99,45,48,46,52,45,49,46,51,45,48,46,57,45,50,46,53,45,49,46,50,45,51,46,55,99,45,48,46,51,45,49,46,50,45,48,46,53,45,50,46,51,45,48,46,55,45,51,46,51,37,50,48,99,45,48,46,50,45,49,45,48,46,51,45,50,45,48,46,52,45,50,46,56,99,45,48,46,49,45,48,46,52,45,48,46,49,45,48,46,56,45,48,46,49,45,49,46,50,99,48,45,48,46,52,37,50,67,48,45,48,46,55,37,50,67,48,45,49,46,49,99,48,45,48,46,55,37,50,67,48,45,49,46,50,37,50,67,48,45,49,46,55,67,49,48,37,50,67,53,48,46,53,37,50,67,49,48,37,50,67,53,48,37,50,67,49,48,37,50,67,53,48,122,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,49,51,49,51,56,37,50,50,37,50,48,102,105,108,116,101,114,37,51,68,37,50,50,117,114,108,37,50,56,37,50,51,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,57,37,50,50,37,51,69,37,51,67,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,50,48,97,116,116,114,105,98,117,116,101,78,97,109,101,37,51,68,37,50,50,116,114,97,110,115,102,111,114,109,37,50,50,37,50,48,116,121,112,101,37,51,68,37,50,50,114,111,116,97,116,101,37,50,50,37,50,48,102,114,111,109,37,51,68,37,50,50,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,116,111,37,51,68,37,50,50,51,54,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,114,101,112,101,97,116,67,111,117,110,116,37,51,68,37,50,50,105,110,100,101,102,105,110,105,116,101,37,50,50,37,50,48,100,117,114,37,51,68,37,50,50,49,115,37,50,50,37,51,69,37,51,67,37,50,70,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,99,111,110,116,101,110,116,58,34,34,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,62,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,119,104,111,108,101,114,111,119,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,109,97,114,103,105,110,45,116,111,112,58,45,50,53,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,48,48,37,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,99,117,115,101,100,62,46,119,104,111,108,101,114,111,119,123,98,111,114,100,101,114,58,49,112,120,32,100,111,116,116,101,100,32,35,48,48,48,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,43,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,119,104,111,108,101,114,111,119,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,49,56,44,50,53,48,44,50,53,53,44,46,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,62,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,43,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,62,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,62,46,119,104,111,108,101,114,111,119,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,49,54,52,44,50,51,52,44,50,52,53,44,46,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,109,97,116,99,104,101,100,62,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,43,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,109,97,116,99,104,101,100,62,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,109,97,116,99,104,101,100,62,46,119,104,111,108,101,114,111,119,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,52,55,44,50,53,53,44,49,55,48,44,46,53,41,125,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,62,117,108,123,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,125,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,44,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,42,123,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,46,105,110,112,117,116,45,119,114,97,112,112,101,114,32,105,110,112,117,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,49,48,112,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,100,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,99,111,108,111,114,58,35,48,48,48,59,98,97,99,107,103,114,111,117,110,100,58,35,102,102,102,59,111,117,116,108,105,110,101,58,110,111,110,101,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,46,49,115,59,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,46,49,115,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,45,100,101,108,97,121,58,46,48,53,115,59,116,114,97,110,115,105,116,105,111,110,45,100,101,108,97,121,58,46,48,53,115,125,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,46,102,111,99,117,115,32,46,105,110,112,117,116,45,119,114,97,112,112,101,114,32,105,110,112,117,116,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,97,97,97,125,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,46,115,117,103,103,101,115,116,105,111,110,115,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,48,59,114,105,103,104,116,58,48,59,116,111,112,58,49,48,48,37,59,116,111,112,58,99,97,108,99,40,49,48,48,37,32,43,32,53,112,120,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,97,97,97,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,111,112,97,99,105,116,121,58,49,59,122,45,105,110,100,101,120,58,49,48,48,48,125,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,46,115,117,103,103,101,115,116,105,111,110,115,32,46,115,117,103,103,101,115,116,45,105,116,101,109,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,46,115,117,103,103,101,115,116,105,111,110,115,32,46,109,105,115,99,45,105,116,101,109,44,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,46,115,117,103,103,101,115,116,105,111,110,115,32,46,115,117,103,103,101,115,116,45,105,116,101,109,123,112,97,100,100,105,110,103,58,53,112,120,32,49,48,112,120,125,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,46,115,117,103,103,101,115,116,105,111,110,115,32,46,115,117,103,103,101,115,116,45,105,116,101,109,46,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,55,52,100,53,33,105,109,112,111,114,116,97,110,116,59,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,46,100,101,115,105,103,110,101,100,32,46,115,117,103,103,101,115,116,105,111,110,115,32,46,115,117,103,103,101,115,116,45,105,116,101,109,46,115,101,108,101,99,116,101,100,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,51,50,100,53,59,99,111,108,111,114,58,35,102,102,102,125,46,110,111,85,105,45,116,97,114,103,101,116,44,46,110,111,85,105,45,116,97,114,103,101,116,32,42,123,45,119,101,98,107,105,116,45,116,111,117,99,104,45,99,97,108,108,111,117,116,58,110,111,110,101,59,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,48,41,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,116,111,117,99,104,45,97,99,116,105,111,110,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,110,111,85,105,45,116,97,114,103,101,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,110,111,85,105,45,98,97,115,101,44,46,110,111,85,105,45,99,111,110,110,101,99,116,115,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,49,125,46,110,111,85,105,45,99,111,110,110,101,99,116,115,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,122,45,105,110,100,101,120,58,48,125,46,110,111,85,105,45,99,111,110,110,101,99,116,44,46,110,111,85,105,45,111,114,105,103,105,110,123,119,105,108,108,45,99,104,97,110,103,101,58,116,114,97,110,115,102,111,114,109,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,45,109,115,45,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,48,32,48,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,48,32,48,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,45,115,116,121,108,101,58,112,114,101,115,101,114,118,101,45,51,100,59,116,114,97,110,115,102,111,114,109,45,111,114,105,103,105,110,58,48,32,48,59,116,114,97,110,115,102,111,114,109,45,115,116,121,108,101,58,102,108,97,116,125,46,110,111,85,105,45,99,111,110,110,101,99,116,123,104,101,105,103,104,116,58,49,48,48,37,59,119,105,100,116,104,58,49,48,48,37,125,46,110,111,85,105,45,111,114,105,103,105,110,123,104,101,105,103,104,116,58,49,48,37,59,119,105,100,116,104,58,49,48,37,125,46,110,111,85,105,45,116,120,116,45,100,105,114,45,114,116,108,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,111,114,105,103,105,110,123,108,101,102,116,58,48,59,114,105,103,104,116,58,97,117,116,111,125,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,111,114,105,103,105,110,123,119,105,100,116,104,58,48,125,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,111,114,105,103,105,110,123,104,101,105,103,104,116,58,48,125,46,110,111,85,105,45,104,97,110,100,108,101,123,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,111,85,105,45,116,111,117,99,104,45,97,114,101,97,123,104,101,105,103,104,116,58,49,48,48,37,59,119,105,100,116,104,58,49,48,48,37,125,46,110,111,85,105,45,115,116,97,116,101,45,116,97,112,32,46,110,111,85,105,45,99,111,110,110,101,99,116,44,46,110,111,85,105,45,115,116,97,116,101,45,116,97,112,32,46,110,111,85,105,45,111,114,105,103,105,110,123,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,125,46,110,111,85,105,45,115,116,97,116,101,45,100,114,97,103,32,42,123,99,117,114,115,111,114,58,105,110,104,101,114,105,116,33,105,109,112,111,114,116,97,110,116,125,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,123,104,101,105,103,104,116,58,49,56,112,120,125,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,123,119,105,100,116,104,58,51,52,112,120,59,104,101,105,103,104,116,58,50,56,112,120,59,114,105,103,104,116,58,45,49,55,112,120,59,116,111,112,58,45,54,112,120,125,46,110,111,85,105,45,118,101,114,116,105,99,97,108,123,119,105,100,116,104,58,49,56,112,120,125,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,123,119,105,100,116,104,58,50,56,112,120,59,104,101,105,103,104,116,58,51,52,112,120,59,114,105,103,104,116,58,45,54,112,120,59,116,111,112,58,45,49,55,112,120,125,46,110,111,85,105,45,116,120,116,45,100,105,114,45,114,116,108,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,123,108,101,102,116,58,45,49,55,112,120,59,114,105,103,104,116,58,97,117,116,111,125,46,110,111,85,105,45,116,97,114,103,101,116,123,98,97,99,107,103,114,111,117,110,100,58,35,102,97,102,97,102,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,51,100,51,100,51,59,98,111,120,45,115,104,97,100,111,119,58,105,110,115,101,116,32,48,32,49,112,120,32,49,112,120,32,35,102,48,102,48,102,48,44,48,32,51,112,120,32,54,112,120,32,45,53,112,120,32,35,98,98,98,125,46,110,111,85,105,45,99,111,110,110,101,99,116,115,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,125,46,110,111,85,105,45,99,111,110,110,101,99,116,123,98,97,99,107,103,114,111,117,110,100,58,35,51,102,98,56,97,102,125,46,110,111,85,105,45,100,114,97,103,103,97,98,108,101,123,99,117,114,115,111,114,58,101,119,45,114,101,115,105,122,101,125,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,100,114,97,103,103,97,98,108,101,123,99,117,114,115,111,114,58,110,115,45,114,101,115,105,122,101,125,46,110,111,85,105,45,104,97,110,100,108,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,57,100,57,100,57,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,102,102,102,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,98,111,120,45,115,104,97,100,111,119,58,105,110,115,101,116,32,48,32,48,32,49,112,120,32,35,102,102,102,44,105,110,115,101,116,32,48,32,49,112,120,32,55,112,120,32,35,101,98,101,98,101,98,44,48,32,51,112,120,32,54,112,120,32,45,51,112,120,32,35,98,98,98,125,46,110,111,85,105,45,97,99,116,105,118,101,123,98,111,120,45,115,104,97,100,111,119,58,105,110,115,101,116,32,48,32,48,32,49,112,120,32,35,102,102,102,44,105,110,115,101,116,32,48,32,49,112,120,32,55,112,120,32,35,100,100,100,44,48,32,51,112,120,32,54,112,120,32,45,51,112,120,32,35,98,98,98,125,46,110,111,85,105,45,104,97,110,100,108,101,58,97,102,116,101,114,44,46,110,111,85,105,45,104,97,110,100,108,101,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,34,34,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,101,56,101,55,101,54,59,108,101,102,116,58,49,52,112,120,59,116,111,112,58,54,112,120,125,46,110,111,85,105,45,104,97,110,100,108,101,58,97,102,116,101,114,123,108,101,102,116,58,49,55,112,120,125,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,58,97,102,116,101,114,44,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,58,98,101,102,111,114,101,123,119,105,100,116,104,58,49,52,112,120,59,104,101,105,103,104,116,58,49,112,120,59,108,101,102,116,58,54,112,120,59,116,111,112,58,49,52,112,120,125,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,58,97,102,116,101,114,123,116,111,112,58,49,55,112,120,125,91,100,105,115,97,98,108,101,100,93,32,46,110,111,85,105,45,99,111,110,110,101,99,116,123,98,97,99,107,103,114,111,117,110,100,58,35,98,56,98,56,98,56,125,91,100,105,115,97,98,108,101,100,93,32,46,110,111,85,105,45,104,97,110,100,108,101,44,91,100,105,115,97,98,108,101,100,93,46,110,111,85,105,45,104,97,110,100,108,101,44,91,100,105,115,97,98,108,101,100,93,46,110,111,85,105,45,116,97,114,103,101,116,123,99,117,114,115,111,114,58,110,111,116,45,97,108,108,111,119,101,100,125,46,110,111,85,105,45,112,105,112,115,44,46,110,111,85,105,45,112,105,112,115,32,42,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,110,111,85,105,45,112,105,112,115,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,111,108,111,114,58,35,57,57,57,125,46,110,111,85,105,45,118,97,108,117,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,110,111,85,105,45,118,97,108,117,101,45,115,117,98,123,99,111,108,111,114,58,35,99,99,99,59,102,111,110,116,45,115,105,122,101,58,49,48,112,120,125,46,110,111,85,105,45,109,97,114,107,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,98,97,99,107,103,114,111,117,110,100,58,35,99,99,99,125,46,110,111,85,105,45,109,97,114,107,101,114,45,108,97,114,103,101,44,46,110,111,85,105,45,109,97,114,107,101,114,45,115,117,98,123,98,97,99,107,103,114,111,117,110,100,58,35,97,97,97,125,46,110,111,85,105,45,112,105,112,115,45,104,111,114,105,122,111,110,116,97,108,123,112,97,100,100,105,110,103,58,49,48,112,120,32,48,59,104,101,105,103,104,116,58,56,48,112,120,59,116,111,112,58,49,48,48,37,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,125,46,110,111,85,105,45,118,97,108,117,101,45,104,111,114,105,122,111,110,116,97,108,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,53,48,37,41,125,46,110,111,85,105,45,114,116,108,32,46,110,111,85,105,45,118,97,108,117,101,45,104,111,114,105,122,111,110,116,97,108,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,53,48,37,44,53,48,37,41,125,46,110,111,85,105,45,109,97,114,107,101,114,45,104,111,114,105,122,111,110,116,97,108,46,110,111,85,105,45,109,97,114,107,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,119,105,100,116,104,58,50,112,120,59,104,101,105,103,104,116,58,53,112,120,125,46,110,111,85,105,45,109,97,114,107,101,114,45,104,111,114,105,122,111,110,116,97,108,46,110,111,85,105,45,109,97,114,107,101,114,45,115,117,98,123,104,101,105,103,104,116,58,49,48,112,120,125,46,110,111,85,105,45,109,97,114,107,101,114,45,104,111,114,105,122,111,110,116,97,108,46,110,111,85,105,45,109,97,114,107,101,114,45,108,97,114,103,101,123,104,101,105,103,104,116,58,49,53,112,120,125,46,110,111,85,105,45,112,105,112,115,45,118,101,114,116,105,99,97,108,123,112,97,100,100,105,110,103,58,48,32,49,48,112,120,59,104,101,105,103,104,116,58,49,48,48,37,59,116,111,112,58,48,59,108,101,102,116,58,49,48,48,37,125,46,110,111,85,105,45,118,97,108,117,101,45,118,101,114,116,105,99,97,108,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,112,97,100,100,105,110,103,45,108,101,102,116,58,50,53,112,120,125,46,110,111,85,105,45,114,116,108,32,46,110,111,85,105,45,118,97,108,117,101,45,118,101,114,116,105,99,97,108,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,53,48,37,41,125,46,110,111,85,105,45,109,97,114,107,101,114,45,118,101,114,116,105,99,97,108,46,110,111,85,105,45,109,97,114,107,101,114,123,119,105,100,116,104,58,53,112,120,59,104,101,105,103,104,116,58,50,112,120,59,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,125,46,110,111,85,105,45,109,97,114,107,101,114,45,118,101,114,116,105,99,97,108,46,110,111,85,105,45,109,97,114,107,101,114,45,115,117,98,123,119,105,100,116,104,58,49,48,112,120,125,46,110,111,85,105,45,109,97,114,107,101,114,45,118,101,114,116,105,99,97,108,46,110,111,85,105,45,109,97,114,107,101,114,45,108,97,114,103,101,123,119,105,100,116,104,58,49,53,112,120,125,46,110,111,85,105,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,57,100,57,100,57,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,102,102,102,59,99,111,108,111,114,58,35,48,48,48,59,112,97,100,100,105,110,103,58,53,112,120,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,116,111,111,108,116,105,112,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,41,59,108,101,102,116,58,53,48,37,59,98,111,116,116,111,109,58,49,50,48,37,125,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,116,111,111,108,116,105,112,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,116,111,112,58,53,48,37,59,114,105,103,104,116,58,49,50,48,37,125,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,111,114,105,103,105,110,62,46,110,111,85,105,45,116,111,111,108,116,105,112,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,53,48,37,41,59,108,101,102,116,58,97,117,116,111,59,98,111,116,116,111,109,58,49,48,112,120,125,46,110,111,85,105,45,118,101,114,116,105,99,97,108,32,46,110,111,85,105,45,111,114,105,103,105,110,62,46,110,111,85,105,45,116,111,111,108,116,105,112,123,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,49,56,112,120,41,59,116,111,112,58,97,117,116,111,59,114,105,103,104,116,58,50,56,112,120,125}; +char index_css[14655] = {46,110,97,118,98,97,114,91,100,97,116,97,45,118,45,54,99,55,52,54,100,102,102,93,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,40,48,32,48,32,48,47,56,37,41,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,98,97,114,91,100,97,116,97,45,118,45,54,99,55,52,54,100,102,102,93,123,98,97,99,107,103,114,111,117,110,100,58,35,53,52,54,98,55,97,51,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,110,111,110,101,125,46,110,97,118,98,97,114,45,98,114,97,110,100,91,100,97,116,97,45,118,45,54,99,55,52,54,100,102,102,93,123,99,111,108,111,114,58,35,50,50,50,33,105,109,112,111,114,116,97,110,116,59,102,111,110,116,45,115,105,122,101,58,49,46,55,53,114,101,109,59,112,97,100,100,105,110,103,58,48,125,46,110,97,118,98,97,114,45,98,114,97,110,100,91,100,97,116,97,45,118,45,54,99,55,52,54,100,102,102,93,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,48,33,105,109,112,111,114,116,97,110,116,125,46,118,101,114,115,105,111,110,91,100,97,116,97,45,118,45,54,99,55,52,54,100,102,102,93,123,99,111,108,111,114,58,35,50,50,50,33,105,109,112,111,114,116,97,110,116,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,56,112,120,59,109,97,114,103,105,110,45,116,111,112,58,45,49,52,112,120,59,102,111,110,116,45,115,105,122,101,58,49,49,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,109,111,110,111,115,112,97,99,101,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,118,101,114,115,105,111,110,91,100,97,116,97,45,118,45,54,99,55,52,54,100,102,102,93,123,99,111,108,111,114,58,35,102,53,102,53,102,53,33,105,109,112,111,114,116,97,110,116,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,91,100,97,116,97,45,118,45,54,99,55,52,54,100,102,102,93,123,102,111,110,116,45,115,105,122,101,58,49,46,55,53,114,101,109,59,112,97,100,100,105,110,103,58,48,59,99,111,108,111,114,58,35,102,53,102,53,102,53,33,105,109,112,111,114,116,97,110,116,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,98,116,110,91,100,97,116,97,45,118,45,54,99,55,52,54,100,102,102,93,58,104,111,118,101,114,44,46,116,104,101,109,101,45,98,108,97,99,107,32,97,91,100,97,116,97,45,118,45,54,99,55,52,54,100,102,102,93,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,98,97,114,32,115,112,97,110,91,100,97,116,97,45,118,45,54,99,55,52,54,100,102,102,93,123,99,111,108,111,114,58,35,101,101,101,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,54,53,48,112,120,41,123,46,116,97,103,108,105,110,101,91,100,97,116,97,45,118,45,54,99,55,52,54,100,102,102,93,44,46,118,101,114,115,105,111,110,91,100,97,116,97,45,118,45,54,99,55,52,54,100,102,102,93,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,46,116,104,101,109,101,45,108,105,103,104,116,32,46,98,116,110,45,108,105,110,107,91,100,97,116,97,45,118,45,54,99,55,52,54,100,102,102,93,123,99,111,108,111,114,58,35,50,50,50,125,98,111,100,121,44,104,116,109,108,123,104,101,105,103,104,116,58,49,48,48,37,125,35,97,112,112,123,45,119,101,98,107,105,116,45,102,111,110,116,45,115,109,111,111,116,104,105,110,103,58,97,110,116,105,97,108,105,97,115,101,100,59,45,109,111,122,45,111,115,120,45,102,111,110,116,45,115,109,111,111,116,104,105,110,103,58,103,114,97,121,115,99,97,108,101,59,99,111,108,111,114,58,35,50,99,51,101,53,48,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,101,109,59,109,105,110,45,104,101,105,103,104,116,58,49,48,48,37,125,46,116,104,101,109,101,45,98,108,97,99,107,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,99,97,114,100,44,46,116,104,101,109,101,45,98,108,97,99,107,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,98,97,99,107,103,114,111,117,110,100,58,35,50,49,50,49,50,49,59,99,111,108,111,114,58,35,101,48,101,48,101,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,112,120,59,98,111,114,100,101,114,58,110,111,110,101,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,116,97,98,108,101,123,99,111,108,111,114,58,35,101,48,101,48,101,48,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,116,97,98,108,101,32,116,100,44,46,116,104,101,109,101,45,98,108,97,99,107,32,46,116,97,98,108,101,32,116,104,123,98,111,114,100,101,114,58,110,111,110,101,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,116,97,98,108,101,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,54,52,54,52,54,52,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,111,118,101,114,102,108,111,119,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,55,52,55,52,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,99,111,108,111,114,58,35,98,100,98,100,98,100,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,53,55,53,55,53,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,62,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,43,46,119,104,111,108,101,114,111,119,44,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,62,46,119,104,111,108,101,114,111,119,123,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,111,108,108,97,112,115,101,58,98,101,102,111,114,101,44,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,101,120,112,97,110,100,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,33,105,109,112,111,114,116,97,110,116,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,123,99,111,108,111,114,58,35,101,101,101,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,115,112,105,114,101,45,116,114,101,101,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,72,101,108,118,101,116,105,99,97,44,78,117,101,117,101,44,86,101,114,100,97,110,97,44,115,97,110,115,45,115,101,114,105,102,59,109,97,120,45,104,101,105,103,104,116,58,51,53,48,112,120,59,111,118,101,114,102,108,111,119,58,97,117,116,111,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,123,108,101,102,116,58,50,50,112,120,33,105,109,112,111,114,116,97,110,116,59,116,111,112,58,55,112,120,33,105,109,112,111,114,116,97,110,116,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,102,111,114,109,45,99,111,110,116,114,111,108,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,55,52,55,52,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,99,111,108,111,114,58,35,100,98,100,98,100,98,33,105,109,112,111,114,116,97,110,116,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,54,101,55,97,59,99,111,108,111,114,58,35,102,102,102,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,100,101,102,97,117,108,116,45,105,110,112,117,116,44,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,97,99,107,103,114,111,117,110,100,58,35,51,55,52,55,52,102,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,33,105,109,112,111,114,116,97,110,116,59,99,111,108,111,114,58,35,100,98,100,98,100,98,33,105,109,112,111,114,116,97,110,116,125,46,116,104,101,109,101,45,98,108,97,99,107,32,58,58,45,109,111,122,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,98,100,98,100,98,100,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,49,125,46,116,104,101,109,101,45,98,108,97,99,107,32,58,58,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,98,100,98,100,98,100,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,49,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,101,48,101,48,101,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,46,115,104,111,119,32,46,110,97,118,45,108,105,110,107,44,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,50,49,50,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,49,54,49,54,49,32,35,54,49,54,49,54,49,32,35,50,49,50,49,50,49,59,99,111,108,111,114,58,35,101,48,101,48,101,48,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,49,54,49,54,49,32,35,54,49,54,49,54,49,32,35,50,49,50,49,50,49,59,99,111,108,111,114,58,35,101,48,101,48,101,48,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,48,101,48,101,48,32,35,101,48,101,48,101,48,32,35,50,49,50,49,50,49,59,99,111,108,111,114,58,35,101,48,101,48,101,48,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,97,118,45,116,97,98,115,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,35,54,49,54,49,54,49,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,98,116,110,58,104,111,118,101,114,44,46,116,104,101,109,101,45,98,108,97,99,107,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,98,45,100,114,111,112,100,111,119,110,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,98,116,110,123,99,111,108,111,114,58,35,101,101,101,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,109,111,100,97,108,45,104,101,97,100,101,114,32,46,99,108,111,115,101,123,99,111,108,111,114,58,35,101,48,101,48,101,48,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,109,111,100,97,108,45,104,101,97,100,101,114,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,54,52,54,52,54,52,125,35,110,97,118,123,112,97,100,100,105,110,103,58,51,48,112,120,125,35,110,97,118,32,97,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,99,111,108,111,114,58,35,50,99,51,101,53,48,125,35,110,97,118,32,97,46,114,111,117,116,101,114,45,108,105,110,107,45,101,120,97,99,116,45,97,99,116,105,118,101,123,99,111,108,111,114,58,35,52,50,98,57,56,51,125,46,109,111,98,105,108,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,110,116,97,105,110,101,114,123,112,97,100,100,105,110,103,45,116,111,112,58,49,101,109,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,54,53,48,112,120,41,123,46,109,111,98,105,108,101,123,100,105,115,112,108,97,121,58,105,110,105,116,105,97,108,125,46,110,111,116,45,109,111,98,105,108,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,103,114,105,100,45,115,105,110,103,108,101,45,99,111,108,117,109,110,32,46,102,105,116,123,109,97,120,45,104,101,105,103,104,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,99,111,110,116,97,105,110,101,114,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,116,111,112,58,48,125,46,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,46,105,110,102,111,45,105,99,111,110,123,119,105,100,116,104,58,49,114,101,109,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,114,101,109,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,108,105,110,101,45,104,101,105,103,104,116,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,98,97,115,101,54,52,44,80,72,78,50,90,121,66,52,98,87,120,117,99,122,48,105,97,72,82,48,99,68,111,118,76,51,100,51,100,121,53,51,77,121,53,118,99,109,99,118,77,106,65,119,77,67,57,122,100,109,99,105,73,72,90,112,90,88,100,67,98,51,103,57,73,106,65,103,77,67,65,48,77,106,89,117,78,106,89,51,73,68,81,121,78,105,52,50,78,106,99,105,73,72,78,48,101,87,120,108,80,83,74,108,98,109,70,105,98,71,85,116,89,109,70,106,97,50,100,121,98,51,86,117,90,68,112,117,90,88,99,103,77,67,65,119,73,68,81,121,78,105,52,50,78,106,99,103,78,68,73,50,76,106,89,50,78,121,73,103,90,109,108,115,98,68,48,105,73,50,90,109,90,105,73,43,80,72,66,104,100,71,103,103,90,68,48,105,84,84,69,53,77,105,65,120,79,84,74,111,78,68,73,117,78,106,89,51,100,106,69,121,79,69,103,120,79,84,74,54,73,105,56,43,80,72,66,104,100,71,103,103,90,68,48,105,84,84,73,120,77,121,52,122,77,122,77,103,77,69,77,53,78,83,52,48,78,106,99,103,77,67,65,119,73,68,107,49,76,106,81,50,78,121,65,119,73,68,73,120,77,121,52,122,77,122,78,122,79,84,85,117,78,68,89,51,73,68,73,120,77,121,52,122,77,122,77,103,77,106,69,122,76,106,77,122,77,121,65,121,77,84,77,117,77,122,77,122,85,122,81,121,78,105,52,50,78,106,99,103,77,122,77,120,76,106,73,103,78,68,73,50,76,106,89,50,78,121,65,121,77,84,77,117,77,122,77,122,73,68,77,122,77,83,52,121,73,68,65,103,77,106,69,122,76,106,77,122,77,121,65,119,101,109,48,119,73,68,77,52,78,71,77,116,79,84,81,117,77,68,103,103,77,67,48,120,78,122,65,117,78,106,89,51,76,84,99,50,76,106,85,52,78,121,48,120,78,122,65,117,78,106,89,51,76,84,69,51,77,67,52,50,78,106,100,84,77,84,69,53,76,106,73,49,77,121,65,48,77,105,52,50,78,106,99,103,77,106,69,122,76,106,77,122,77,121,65,48,77,105,52,50,78,106,99,103,77,122,103,48,73,68,69,120,79,83,52,121,78,84,77,103,77,122,103,48,73,68,73,120,77,121,52,122,77,122,77,103,77,122,65,51,76,106,81,120,77,121,65,122,79,68,81,103,77,106,69,122,76,106,77,122,77,121,65,122,79,68,82,54,73,105,56,43,80,72,66,104,100,71,103,103,90,68,48,105,84,84,69,53,77,105,65,120,77,68,89,117,78,106,89,51,97,68,81,121,76,106,89,50,78,51,89,48,77,105,52,50,78,106,100,73,77,84,107,121,101,105,73,118,80,106,119,118,99,51,90,110,80,103,61,61,41,59,102,105,108,116,101,114,58,98,114,105,103,104,116,110,101,115,115,40,52,53,37,41,59,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,116,97,98,115,123,109,97,114,103,105,110,45,116,111,112,58,49,48,112,120,125,46,109,111,100,97,108,45,116,105,116,108,101,123,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,49,53,48,48,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,49,52,52,48,112,120,125,125,46,110,111,85,105,45,99,111,110,110,101,99,116,115,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,112,120,33,105,109,112,111,114,116,97,110,116,125,109,97,114,107,123,98,97,99,107,103,114,111,117,110,100,58,35,102,102,102,50,49,55,125,46,116,104,101,109,101,45,98,108,97,99,107,32,109,97,114,107,44,109,97,114,107,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,59,112,97,100,100,105,110,103,58,49,112,120,32,48,59,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,116,104,101,109,101,45,98,108,97,99,107,32,109,97,114,107,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,53,49,44,49,57,49,44,52,49,44,46,50,53,41,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,99,111,110,116,101,110,116,45,100,105,118,32,109,97,114,107,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,53,49,44,49,57,49,44,52,49,44,46,52,41,59,99,111,108,111,114,58,35,102,102,102,125,46,99,111,110,116,101,110,116,45,100,105,118,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,44,67,111,117,114,105,101,114,32,78,101,119,44,109,111,110,111,115,112,97,99,101,59,102,111,110,116,45,115,105,122,101,58,49,51,112,120,59,112,97,100,100,105,110,103,58,49,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,102,53,102,53,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,99,99,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,109,97,114,103,105,110,58,51,112,120,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,99,111,108,111,114,58,35,48,48,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,99,111,110,116,101,110,116,45,100,105,118,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,55,52,55,52,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,99,111,108,111,114,58,35,101,48,101,48,101,48,125,46,103,114,97,112,104,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,52,48,37,125,46,112,111,105,110,116,101,114,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,108,111,97,100,105,110,103,45,112,97,103,101,123,100,105,115,112,108,97,121,58,102,108,101,120,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,104,101,105,103,104,116,58,49,48,48,37,59,103,97,112,58,49,53,112,120,125,46,108,111,97,100,105,110,103,45,115,112,105,110,110,101,114,115,123,100,105,115,112,108,97,121,58,102,108,101,120,59,103,97,112,58,49,48,112,120,125,46,108,111,97,100,105,110,103,45,116,101,120,116,44,46,115,116,97,116,115,45,99,97,114,100,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,115,116,97,116,115,45,99,97,114,100,123,112,97,100,100,105,110,103,58,49,101,109,125,115,118,103,91,100,97,116,97,45,118,45,49,52,57,51,97,99,50,99,93,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,115,118,103,91,100,97,116,97,45,118,45,49,52,57,51,97,99,50,99,93,44,115,118,103,91,100,97,116,97,45,118,45,97,97,51,56,57,97,50,99,93,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,48,112,120,59,104,101,105,103,104,116,58,50,48,112,120,125,115,118,103,91,100,97,116,97,45,118,45,97,97,51,56,57,97,50,99,93,123,109,97,114,103,105,110,45,116,111,112,58,45,52,112,120,125,115,118,103,91,100,97,116,97,45,118,45,53,51,56,52,55,97,98,54,93,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,48,112,120,59,104,101,105,103,104,116,58,50,48,112,120,125,46,115,104,114,105,110,107,123,102,108,101,120,45,103,114,111,119,58,105,110,104,101,114,105,116,125,46,98,97,100,103,101,45,112,105,108,108,91,100,97,116,97,45,118,45,52,100,101,97,49,48,55,48,93,123,112,97,100,100,105,110,103,58,46,51,101,109,32,46,52,101,109,32,46,49,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,54,114,101,109,125,46,116,105,109,101,115,116,97,109,112,45,116,101,120,116,91,100,97,116,97,45,118,45,54,53,101,101,100,51,53,51,93,123,108,105,110,101,45,104,101,105,103,104,116,58,50,52,112,120,59,102,111,110,116,45,115,105,122,101,58,56,48,37,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,118,101,114,115,105,111,110,45,98,97,100,103,101,91,100,97,116,97,45,118,45,54,53,101,101,100,51,53,51,93,123,99,111,108,111,114,58,35,101,101,101,33,105,109,112,111,114,116,97,110,116,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,125,46,118,101,114,115,105,111,110,45,98,97,100,103,101,91,100,97,116,97,45,118,45,54,53,101,101,100,51,53,51,93,123,99,111,108,111,114,58,35,50,50,50,33,105,109,112,111,114,116,97,110,116,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,91,100,97,116,97,45,118,45,54,53,101,101,100,51,53,51,93,123,112,97,100,100,105,110,103,58,46,50,101,109,32,46,52,101,109,125,35,105,110,100,101,120,45,112,105,99,107,101,114,45,100,101,115,107,116,111,112,91,100,97,116,97,45,118,45,54,53,101,101,100,51,53,51,93,123,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,59,109,97,120,45,104,101,105,103,104,116,58,49,51,50,112,120,125,46,98,116,110,45,108,105,110,107,91,100,97,116,97,45,118,45,54,53,101,101,100,51,53,51,93,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,117,110,115,101,108,101,99,116,97,98,108,101,91,100,97,116,97,45,118,45,54,53,101,101,100,51,53,51,93,123,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,91,100,97,116,97,45,118,45,54,53,101,101,100,51,53,51,93,123,122,45,105,110,100,101,120,58,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,91,100,97,116,97,45,118,45,54,53,101,101,100,51,53,51,93,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,49,41,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,91,100,97,116,97,45,118,45,54,53,101,101,100,51,53,51,93,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,48,53,41,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,91,100,97,116,97,45,118,45,54,53,101,101,100,51,53,51,93,123,122,45,105,110,100,101,120,58,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,104,115,108,97,40,48,44,48,37,44,49,48,48,37,44,46,51,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,108,105,115,116,45,103,114,111,117,112,91,100,97,116,97,45,118,45,54,53,101,101,100,51,53,51,93,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,98,97,100,103,101,45,118,105,100,101,111,91,100,97,116,97,45,118,45,99,53,101,97,97,102,49,52,93,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,50,55,55,54,49,125,46,98,97,100,103,101,45,105,109,97,103,101,91,100,97,116,97,45,118,45,99,53,101,97,97,102,49,52,93,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,97,57,57,99,57,125,46,98,97,100,103,101,45,97,117,100,105,111,91,100,97,116,97,45,118,45,99,53,101,97,97,102,49,52,93,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,97,100,101,102,125,46,98,97,100,103,101,45,117,115,101,114,91,100,97,116,97,45,118,45,99,53,101,97,97,102,49,52,93,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,48,101,48,101,48,125,46,97,100,100,45,116,97,103,45,98,117,116,116,111,110,91,100,97,116,97,45,118,45,99,53,101,97,97,102,49,52,93,58,104,111,118,101,114,44,46,98,97,100,103,101,45,117,115,101,114,91,100,97,116,97,45,118,45,99,53,101,97,97,102,49,52,93,58,104,111,118,101,114,123,98,111,120,45,115,104,97,100,111,119,58,48,32,49,112,120,32,51,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,41,44,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,52,41,125,46,98,97,100,103,101,45,116,101,120,116,91,100,97,116,97,45,118,45,99,53,101,97,97,102,49,52,93,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,97,97,98,51,99,125,46,98,97,100,103,101,91,100,97,116,97,45,118,45,99,53,101,97,97,102,49,52,93,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,112,120,125,46,98,97,100,103,101,45,100,101,108,101,116,101,91,100,97,116,97,45,118,45,99,53,101,97,97,102,49,52,93,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,50,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,50,112,120,59,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,109,111,110,111,115,112,97,99,101,59,102,111,110,116,45,115,105,122,101,58,57,48,37,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,112,97,100,100,105,110,103,58,46,49,101,109,32,46,52,101,109,59,99,111,108,111,114,58,35,102,102,102,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,98,97,100,103,101,45,115,105,122,101,91,100,97,116,97,45,118,45,99,53,101,97,97,102,49,52,93,123,119,105,100,116,104,58,53,48,112,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,97,100,100,45,116,97,103,45,98,117,116,116,111,110,91,100,97,116,97,45,118,45,99,53,101,97,97,102,49,52,93,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,48,101,48,101,48,59,119,105,100,116,104,58,53,48,112,120,125,46,98,97,100,103,101,91,100,97,116,97,45,118,45,99,53,101,97,97,102,49,52,93,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,98,97,100,103,101,45,115,117,103,103,101,115,116,105,111,110,91,100,97,116,97,45,118,45,99,53,101,97,97,102,49,52,93,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,125,46,118,99,45,116,119,105,116,116,101,114,45,98,111,100,121,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,118,99,45,116,119,105,116,116,101,114,123,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,116,111,111,108,116,105,112,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,116,111,97,115,116,123,98,111,114,100,101,114,58,110,111,110,101,125,46,102,105,108,101,45,116,105,116,108,101,45,97,110,99,104,111,114,91,100,97,116,97,45,118,45,55,56,54,97,100,97,98,50,93,123,109,97,120,45,119,105,100,116,104,58,99,97,108,99,40,49,48,48,37,32,45,32,49,46,50,114,101,109,41,125,46,102,105,108,101,45,116,105,116,108,101,91,100,97,116,97,45,118,45,55,56,54,97,100,97,98,50,93,123,119,105,100,116,104,58,49,48,48,37,59,108,105,110,101,45,104,101,105,103,104,116,58,49,114,101,109,59,104,101,105,103,104,116,58,49,46,49,114,101,109,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,102,111,110,116,45,115,105,122,101,58,49,54,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,83,111,117,114,99,101,32,83,97,110,115,32,80,114,111,44,115,97,110,115,45,115,101,114,105,102,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,102,105,108,101,45,116,105,116,108,101,91,100,97,116,97,45,118,45,55,56,54,97,100,97,98,50,93,123,99,111,108,111,114,58,35,100,100,100,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,102,105,108,101,45,116,105,116,108,101,91,100,97,116,97,45,118,45,55,56,54,97,100,97,98,50,93,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,116,104,101,109,101,45,108,105,103,104,116,32,46,102,105,108,101,45,116,105,116,108,101,91,100,97,116,97,45,118,45,55,56,54,97,100,97,98,50,93,123,99,111,108,111,114,58,35,48,48,48,125,46,100,111,99,45,99,97,114,100,32,46,102,105,108,101,45,116,105,116,108,101,91,100,97,116,97,45,118,45,55,56,54,97,100,97,98,50,93,123,102,111,110,116,45,115,105,122,101,58,49,50,112,120,125,46,116,104,117,109,98,110,97,105,108,45,112,114,111,103,114,101,115,115,45,98,97,114,91,100,97,116,97,45,118,45,53,51,55,53,102,52,100,48,93,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,48,59,98,111,116,116,111,109,58,48,59,104,101,105,103,104,116,58,52,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,50,49,57,54,102,51,97,97,59,122,45,105,110,100,101,120,58,57,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,116,104,117,109,98,110,97,105,108,45,112,114,111,103,114,101,115,115,45,98,97,114,91,100,97,116,97,45,118,45,53,51,55,53,102,52,100,48,93,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,49,56,56,44,50,49,50,44,46,57,53,41,125,46,115,117,98,45,100,111,99,117,109,101,110,116,32,46,116,104,117,109,98,110,97,105,108,45,112,114,111,103,114,101,115,115,45,98,97,114,91,100,97,116,97,45,118,45,53,51,55,53,102,52,100,48,93,123,109,97,120,45,119,105,100,116,104,58,99,97,108,99,40,49,48,48,37,32,45,32,56,112,120,41,59,108,101,102,116,58,52,112,120,125,46,105,109,103,45,119,114,97,112,112,101,114,91,100,97,116,97,45,118,45,52,54,98,100,51,97,101,99,93,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,109,103,45,119,114,97,112,112,101,114,58,104,111,118,101,114,32,115,118,103,91,100,97,116,97,45,118,45,52,54,98,100,51,97,101,99,93,123,102,105,108,108,58,35,48,48,48,125,46,99,97,114,100,45,105,109,103,45,116,111,112,91,100,97,116,97,45,118,45,52,54,98,100,51,97,101,99,93,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,112,108,97,121,91,100,97,116,97,45,118,45,52,54,98,100,51,97,101,99,93,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,50,53,112,120,59,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,53,48,37,59,116,111,112,58,53,48,37,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,45,53,48,37,41,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,112,108,97,121,32,115,118,103,91,100,97,116,97,45,118,45,52,54,98,100,51,97,101,99,93,123,102,105,108,108,58,114,103,98,97,40,48,44,48,44,48,44,46,55,41,125,46,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,91,100,97,116,97,45,118,45,52,54,98,100,51,97,101,99,93,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,91,100,97,116,97,45,118,45,52,54,98,100,51,97,101,99,93,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,59,98,111,116,116,111,109,58,117,110,115,101,116,59,116,111,112,58,48,59,108,101,102,116,58,117,110,115,101,116,59,114,105,103,104,116,58,117,110,115,101,116,125,46,115,109,97,108,108,45,98,97,100,103,101,91,100,97,116,97,45,118,45,52,54,98,100,51,97,101,99,93,123,112,97,100,100,105,110,103,58,49,112,120,32,51,112,120,59,102,111,110,116,45,115,105,122,101,58,55,48,37,125,46,102,105,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,105,110,45,119,105,100,116,104,58,54,52,112,120,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,58,48,32,97,117,116,111,32,48,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,125,46,97,117,100,105,111,45,102,105,116,123,104,101,105,103,104,116,58,51,57,112,120,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,59,119,105,100,116,104,58,49,48,48,37,125,46,112,97,100,100,105,110,103,45,48,51,91,100,97,116,97,45,118,45,52,97,98,101,57,54,53,57,93,123,112,97,100,100,105,110,103,58,46,51,114,101,109,125,46,99,97,114,100,91,100,97,116,97,45,118,45,52,97,98,101,57,54,53,57,93,123,109,97,114,103,105,110,45,116,111,112,58,49,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,48,56,41,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,58,110,111,110,101,125,46,99,97,114,100,45,98,111,100,121,91,100,97,116,97,45,118,45,52,97,98,101,57,54,53,57,93,123,112,97,100,100,105,110,103,58,46,51,114,101,109,125,46,100,111,99,45,99,97,114,100,91,100,97,116,97,45,118,45,52,97,98,101,57,54,53,57,93,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,112,120,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,112,120,125,46,115,117,98,45,100,111,99,117,109,101,110,116,32,46,99,97,114,100,91,100,97,116,97,45,118,45,52,97,98,101,57,54,53,57,93,123,98,97,99,107,103,114,111,117,110,100,58,35,97,98,52,55,98,99,49,102,33,105,109,112,111,114,116,97,110,116,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,115,117,98,45,100,111,99,117,109,101,110,116,32,46,99,97,114,100,91,100,97,116,97,45,118,45,52,97,98,101,57,54,53,57,93,123,98,97,99,107,103,114,111,117,110,100,58,35,51,55,52,55,52,102,33,105,109,112,111,114,116,97,110,116,125,46,115,117,98,45,100,111,99,117,109,101,110,116,32,46,102,105,116,91,100,97,116,97,45,118,45,52,97,98,101,57,54,53,57,93,123,112,97,100,100,105,110,103,58,52,112,120,32,52,112,120,32,48,32,52,112,120,125,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,110,116,104,45,99,104,105,108,100,40,50,41,123,111,114,100,101,114,58,49,125,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,102,105,114,115,116,45,99,104,105,108,100,123,111,114,100,101,114,58,50,125,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,110,116,104,45,99,104,105,108,100,40,51,41,123,111,114,100,101,114,58,51,125,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,110,116,104,45,99,104,105,108,100,40,52,41,123,111,114,100,101,114,58,52,125,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,110,116,104,45,99,104,105,108,100,40,53,41,123,111,114,100,101,114,58,53,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,54,53,48,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,110,116,104,45,99,104,105,108,100,40,54,41,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,110,116,104,45,99,104,105,108,100,40,54,41,123,111,114,100,101,114,58,54,125,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,110,116,104,45,99,104,105,108,100,40,55,41,123,111,114,100,101,114,58,55,125,46,100,105,115,97,98,108,101,45,97,110,105,109,97,116,105,111,110,115,32,46,102,115,108,105,103,104,116,98,111,120,45,99,111,110,116,97,105,110,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,51,48,44,51,48,44,51,48,44,46,57,41,125,46,100,105,115,97,98,108,101,45,97,110,105,109,97,116,105,111,110,115,32,46,102,115,108,105,103,104,116,98,111,120,45,116,114,97,110,115,102,111,114,109,45,116,114,97,110,115,105,116,105,111,110,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,46,100,105,115,97,98,108,101,45,97,110,105,109,97,116,105,111,110,115,32,46,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,45,115,116,114,111,110,103,123,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,46,102,115,108,105,103,104,116,98,111,120,45,99,111,110,116,97,105,110,101,114,32,105,109,103,44,46,102,115,108,105,103,104,116,98,111,120,45,99,111,110,116,97,105,110,101,114,32,118,105,100,101,111,123,99,117,114,115,111,114,58,117,110,115,101,116,33,105,109,112,111,114,116,97,110,116,125,35,109,105,109,101,84,114,101,101,91,100,97,116,97,45,118,45,48,100,49,49,102,54,55,48,93,123,109,97,120,45,104,101,105,103,104,116,58,51,53,48,112,120,59,111,118,101,114,102,108,111,119,58,97,117,116,111,125,46,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,32,97,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,115,118,103,91,100,97,116,97,45,118,45,49,54,102,98,97,100,50,50,93,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,48,112,120,59,104,101,105,103,104,116,58,50,48,112,120,125,35,114,101,115,117,108,116,115,123,109,97,114,103,105,110,45,116,111,112,58,49,101,109,59,98,111,120,45,115,104,97,100,111,119,58,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,48,56,41,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,58,110,111,110,101,125,35,114,101,115,117,108,116,115,32,46,99,97,114,100,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,55,101,109,32,49,46,50,53,101,109,125,46,104,105,100,100,101,110,123,100,105,115,112,108,97,121,58,110,111,110,101,125,35,109,105,109,101,84,114,101,101,91,100,97,116,97,45,118,45,98,50,52,97,57,57,101,54,93,123,109,97,120,45,104,101,105,103,104,116,58,51,53,48,112,120,59,111,118,101,114,102,108,111,119,58,97,117,116,111,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,120,45,102,108,101,120,91,100,97,116,97,45,118,45,98,50,52,97,57,57,101,54,93,123,102,108,101,120,58,49,32,49,32,97,117,116,111,59,119,105,100,116,104,58,49,37,59,109,105,110,45,119,105,100,116,104,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,115,117,103,103,101,115,116,105,111,110,45,108,105,110,101,91,100,97,116,97,45,118,45,98,50,52,97,57,57,101,54,93,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,49,125,46,115,117,103,103,101,115,116,105,111,110,115,123,109,97,120,45,104,101,105,103,104,116,58,50,53,48,112,120,59,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,115,117,103,103,101,115,116,105,111,110,115,123,99,111,108,111,114,58,35,48,48,48,125,35,115,105,122,101,83,108,105,100,101,114,123,109,97,114,103,105,110,45,116,111,112,58,51,52,112,120,59,104,101,105,103,104,116,58,49,50,112,120,125,46,115,108,105,100,101,114,45,99,111,108,111,114,48,123,98,97,99,107,103,114,111,117,110,100,58,35,50,49,57,54,102,51,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,115,108,105,100,101,114,45,99,111,108,111,114,48,123,98,97,99,107,103,114,111,117,110,100,58,35,48,48,98,99,100,52,125,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,123,119,105,100,116,104,58,50,112,120,59,104,101,105,103,104,116,58,49,56,112,120,59,114,105,103,104,116,58,45,49,112,120,59,116,111,112,58,45,51,112,120,59,98,111,114,100,101,114,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,57,55,54,100,50,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,99,117,114,115,111,114,58,101,119,45,114,101,115,105,122,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,104,97,110,100,108,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,54,56,97,99,125,46,110,111,85,105,45,104,97,110,100,108,101,58,98,101,102,111,114,101,123,108,101,102,116,58,51,112,120,125,46,110,111,85,105,45,104,97,110,100,108,101,58,97,102,116,101,114,44,46,110,111,85,105,45,104,97,110,100,108,101,58,98,101,102,111,114,101,123,116,111,112,58,45,54,112,120,59,119,105,100,116,104,58,49,48,112,120,59,104,101,105,103,104,116,58,50,56,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,110,111,85,105,45,104,97,110,100,108,101,58,97,102,116,101,114,123,108,101,102,116,58,45,49,48,112,120,125,46,110,111,85,105,45,100,114,97,103,103,97,98,108,101,123,99,117,114,115,111,114,58,109,111,118,101,125,46,110,111,85,105,45,116,111,111,108,116,105,112,123,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,105,122,101,58,49,51,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,51,51,51,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,112,97,100,100,105,110,103,58,48,32,50,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,50,49,57,54,102,51,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,98,111,114,100,101,114,58,110,111,110,101,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,111,85,105,45,116,111,111,108,116,105,112,123,98,97,99,107,103,114,111,117,110,100,58,35,48,48,98,99,100,52,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,110,111,85,105,45,99,111,110,110,101,99,116,115,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,55,52,55,52,102,125,46,110,111,85,105,45,104,111,114,105,122,111,110,116,97,108,32,46,110,111,85,105,45,111,114,105,103,105,110,62,46,110,111,85,105,45,116,111,111,108,116,105,112,123,98,111,116,116,111,109,58,55,112,120,125,46,110,111,85,105,45,116,97,114,103,101,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,49,101,52,101,57,59,98,111,114,100,101,114,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,35,100,97,116,101,83,108,105,100,101,114,123,109,97,114,103,105,110,45,116,111,112,58,51,52,112,120,59,104,101,105,103,104,116,58,49,50,112,120,125,35,109,105,109,101,84,114,101,101,91,100,97,116,97,45,118,45,102,49,54,49,57,57,54,56,93,123,109,97,120,45,104,101,105,103,104,116,58,51,53,48,112,120,59,111,118,101,114,102,108,111,119,58,97,117,116,111,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,99,117,115,101,100,62,46,119,104,111,108,101,114,111,119,123,98,111,114,100,101,114,58,110,111,110,101,125,35,116,97,103,45,112,105,99,107,101,114,45,102,105,108,116,101,114,45,98,97,114,123,112,97,100,100,105,110,103,58,49,48,112,120,32,52,112,120,32,52,112,120,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,109,97,116,99,104,101,100,62,46,119,104,111,108,101,114,111,119,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,53,49,44,49,57,49,44,52,49,44,46,50,53,41,125,46,102,105,108,101,45,105,99,111,110,91,100,97,116,97,45,118,45,48,99,101,97,57,52,100,100,93,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,114,105,103,104,116,58,48,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,102,105,108,101,45,105,99,111,110,91,100,97,116,97,45,118,45,48,99,101,97,57,52,100,100,93,123,99,111,108,111,114,58,35,102,102,102,102,102,102,53,48,125,46,116,104,101,109,101,45,108,105,103,104,116,32,46,102,105,108,101,45,105,99,111,110,91,100,97,116,97,45,118,45,48,99,101,97,57,52,100,100,93,123,99,111,108,111,114,58,35,48,48,48,48,48,48,97,48,125,46,115,117,98,45,100,111,99,117,109,101,110,116,91,100,97,116,97,45,118,45,53,55,55,49,53,97,51,98,93,123,98,97,99,107,103,114,111,117,110,100,58,35,97,98,52,55,98,99,49,102,33,105,109,112,111,114,116,97,110,116,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,115,117,98,45,100,111,99,117,109,101,110,116,91,100,97,116,97,45,118,45,53,55,55,49,53,97,51,98,93,123,98,97,99,107,103,114,111,117,110,100,58,35,51,55,52,55,52,102,33,105,109,112,111,114,116,97,110,116,125,46,108,105,115,116,45,103,114,111,117,112,91,100,97,116,97,45,118,45,53,55,55,49,53,97,51,98,93,123,109,97,114,103,105,110,45,116,111,112,58,49,101,109,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,91,100,97,116,97,45,118,45,53,55,55,49,53,97,51,98,93,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,98,111,120,45,115,104,97,100,111,119,58,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,40,48,32,48,32,48,47,56,37,41,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,58,110,111,110,101,125,46,112,97,116,104,45,114,111,119,91,100,97,116,97,45,118,45,53,55,55,49,53,97,51,98,93,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,125,46,112,97,116,104,45,108,105,110,101,91,100,97,116,97,45,118,45,53,55,55,49,53,97,51,98,93,123,99,111,108,111,114,58,103,114,101,121,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,51,101,109,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,112,97,116,104,45,108,105,110,101,91,100,97,116,97,45,118,45,53,55,55,49,53,97,51,98,93,123,99,111,108,111,114,58,35,98,98,98,125,46,112,108,97,121,91,100,97,116,97,45,118,45,53,55,55,49,53,97,51,98,93,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,56,112,120,59,104,101,105,103,104,116,58,49,56,112,120,59,108,101,102,116,58,53,48,37,59,116,111,112,58,53,48,37,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,45,53,48,37,41,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,112,108,97,121,32,115,118,103,91,100,97,116,97,45,118,45,53,55,55,49,53,97,51,98,93,123,102,105,108,108,58,114,103,98,97,40,48,44,48,44,48,44,46,55,41,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,46,105,109,103,45,119,114,97,112,112,101,114,91,100,97,116,97,45,118,45,53,55,55,49,53,97,51,98,93,123,119,105,100,116,104,58,56,56,112,120,59,104,101,105,103,104,116,58,56,56,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,102,105,116,45,115,109,91,100,97,116,97,45,118,45,53,55,55,49,53,97,51,98,93,123,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,114,105,103,104,116,58,48,59,109,97,114,103,105,110,58,97,117,116,111,125,46,100,111,99,45,108,105,110,101,91,100,97,116,97,45,118,45,53,55,55,49,53,97,51,98,93,123,109,97,120,45,119,105,100,116,104,58,99,97,108,99,40,49,48,48,37,32,45,32,56,56,112,120,32,45,32,49,46,53,114,101,109,41,59,102,108,101,120,58,49,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,125,46,102,105,108,101,45,105,99,111,110,45,119,114,97,112,112,101,114,91,100,97,116,97,45,118,45,53,55,55,49,53,97,51,98,93,123,119,105,100,116,104,58,99,97,108,99,40,56,56,112,120,32,43,32,46,53,114,101,109,41,59,104,101,105,103,104,116,58,56,56,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,97,99,107,103,114,111,117,110,100,58,35,50,49,50,49,50,49,59,99,111,108,111,114,58,35,101,48,101,48,101,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,110,111,110,101,59,98,111,114,100,101,114,45,108,101,102,116,58,110,111,110,101,59,98,111,114,100,101,114,45,114,105,103,104,116,58,110,111,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,125,46,116,104,101,109,101,45,98,108,97,99,107,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,58,110,111,110,101,125,35,115,101,97,114,99,104,45,112,97,110,101,108,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,48,56,41,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,58,110,111,110,101,125,46,116,111,97,115,116,45,98,111,100,121,45,105,110,102,111,44,46,116,111,97,115,116,45,104,101,97,100,101,114,45,105,110,102,111,123,98,97,99,107,103,114,111,117,110,100,58,35,50,49,57,54,102,51,59,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,111,97,115,116,45,98,111,100,121,45,101,114,114,111,114,44,46,116,111,97,115,116,45,104,101,97,100,101,114,45,101,114,114,111,114,123,98,97,99,107,103,114,111,117,110,100,58,35,97,57,52,52,52,50,59,99,111,108,111,114,58,35,102,50,100,101,100,101,33,105,109,112,111,114,116,97,110,116,125,46,116,111,97,115,116,45,104,101,97,100,101,114,45,101,114,114,111,114,123,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,110,111,110,101,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,101,109,125,46,116,111,97,115,116,45,104,101,97,100,101,114,45,101,114,114,111,114,32,46,99,108,111,115,101,123,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,125,46,116,111,97,115,116,45,98,111,100,121,45,119,97,114,110,105,110,103,44,46,116,111,97,115,116,45,104,101,97,100,101,114,45,119,97,114,110,105,110,103,123,98,97,99,107,103,114,111,117,110,100,58,35,102,102,56,102,48,48,59,99,111,108,111,114,58,35,102,102,102,51,101,48,33,105,109,112,111,114,116,97,110,116,125,46,105,109,103,45,119,114,97,112,112,101,114,91,100,97,116,97,45,118,45,49,98,50,102,101,98,102,52,93,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125}; +char chunk_vendors_js[1328780] = {40,115,101,108,102,91,34,119,101,98,112,97,99,107,67,104,117,110,107,115,105,115,116,50,34,93,61,115,101,108,102,91,34,119,101,98,112,97,99,107,67,104,117,110,107,115,105,115,116,50,34,93,124,124,91,93,41,46,112,117,115,104,40,91,91,57,57,56,93,44,123,52,55,49,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,118,97,114,32,110,61,123,125,59,102,111,114,40,118,97,114,32,114,32,105,110,32,116,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,116,44,114,41,38,38,101,46,105,110,100,101,120,79,102,40,114,41,60,48,38,38,40,110,91,114,93,61,116,91,114,93,41,59,105,102,40,110,117,108,108,33,61,116,38,38,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,41,123,118,97,114,32,105,61,48,59,102,111,114,40,114,61,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,116,41,59,105,60,114,46,108,101,110,103,116,104,59,105,43,43,41,101,46,105,110,100,101,120,79,102,40,114,91,105,93,41,60,48,38,38,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,46,99,97,108,108,40,116,44,114,91,105,93,41,38,38,40,110,91,114,91,105,93,93,61,116,91,114,91,105,93,93,41,125,114,101,116,117,114,110,32,110,125,110,46,100,40,101,44,123,95,65,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,116,125,125,41,59,118,97,114,32,105,61,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,84,104,105,115,63,103,108,111,98,97,108,84,104,105,115,58,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,110,46,103,63,110,46,103,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,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,38,38,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,116,44,34,100,101,102,97,117,108,116,34,41,63,116,46,100,101,102,97,117,108,116,58,116,125,102,117,110,99,116,105,111,110,32,97,40,116,44,101,41,123,114,101,116,117,114,110,32,116,40,101,61,123,101,120,112,111,114,116,115,58,123,125,125,44,101,46,101,120,112,111,114,116,115,41,44,101,46,101,120,112,111,114,116,115,125,118,97,114,32,115,61,97,40,40,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,101,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,59,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,108,111,99,107,101,100,61,110,101,119,32,77,97,112,44,116,104,105,115,46,97,100,100,84,111,76,111,99,107,101,100,61,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,61,116,46,108,111,99,107,101,100,46,103,101,116,40,101,41,59,118,111,105,100,32,48,61,61,61,114,63,118,111,105,100,32,48,61,61,61,110,63,116,46,108,111,99,107,101,100,46,115,101,116,40,101,44,91,93,41,58,116,46,108,111,99,107,101,100,46,115,101,116,40,101,44,91,110,93,41,58,118,111,105,100,32,48,33,61,61,110,38,38,40,114,46,117,110,115,104,105,102,116,40,110,41,44,116,46,108,111,99,107,101,100,46,115,101,116,40,101,44,114,41,41,125,44,116,104,105,115,46,105,115,76,111,99,107,101,100,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,108,111,99,107,101,100,46,104,97,115,40,101,41,125,44,116,104,105,115,46,108,111,99,107,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,116,46,105,115,76,111,99,107,101,100,40,101,41,63,116,46,97,100,100,84,111,76,111,99,107,101,100,40,101,44,110,41,58,40,116,46,97,100,100,84,111,76,111,99,107,101,100,40,101,41,44,110,40,41,41,125,41,41,125,44,116,104,105,115,46,117,110,108,111,99,107,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,116,46,108,111,99,107,101,100,46,103,101,116,40,101,41,59,105,102,40,118,111,105,100,32,48,33,61,61,110,38,38,48,33,61,61,110,46,108,101,110,103,116,104,41,123,118,97,114,32,114,61,110,46,112,111,112,40,41,59,116,46,108,111,99,107,101,100,46,115,101,116,40,101,44,110,41,44,118,111,105,100,32,48,33,61,61,114,38,38,115,101,116,84,105,109,101,111,117,116,40,114,44,48,41,125,101,108,115,101,32,116,46,108,111,99,107,101,100,46,100,101,108,101,116,101,40,101,41,125,125,114,101,116,117,114,110,32,116,46,103,101,116,73,110,115,116,97,110,99,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,46,105,110,115,116,97,110,99,101,38,38,40,116,46,105,110,115,116,97,110,99,101,61,110,101,119,32,116,41,44,116,46,105,110,115,116,97,110,99,101,125,44,116,125,40,41,59,101,46,100,101,102,97,117,108,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,46,103,101,116,73,110,115,116,97,110,99,101,40,41,125,125,41,41,59,111,40,115,41,59,118,97,114,32,99,61,111,40,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,105,38,38,105,46,95,95,97,119,97,105,116,101,114,124,124,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,110,101,119,40,110,124,124,40,110,61,80,114,111,109,105,115,101,41,41,40,40,102,117,110,99,116,105,111,110,40,105,44,111,41,123,102,117,110,99,116,105,111,110,32,97,40,116,41,123,116,114,121,123,99,40,114,46,110,101,120,116,40,116,41,41,125,99,97,116,99,104,40,116,41,123,111,40,116,41,125,125,102,117,110,99,116,105,111,110,32,115,40,116,41,123,116,114,121,123,99,40,114,46,116,104,114,111,119,40,116,41,41,125,99,97,116,99,104,40,116,41,123,111,40,116,41,125,125,102,117,110,99,116,105,111,110,32,99,40,116,41,123,116,46,100,111,110,101,63,105,40,116,46,118,97,108,117,101,41,58,110,101,119,32,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,40,116,46,118,97,108,117,101,41,125,41,41,46,116,104,101,110,40,97,44,115,41,125,99,40,40,114,61,114,46,97,112,112,108,121,40,116,44,101,124,124,91,93,41,41,46,110,101,120,116,40,41,41,125,41,41,125,44,114,61,105,38,38,105,46,95,95,103,101,110,101,114,97,116,111,114,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,61,123,108,97,98,101,108,58,48,44,115,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,49,38,105,91,48,93,41,116,104,114,111,119,32,105,91,49,93,59,114,101,116,117,114,110,32,105,91,49,93,125,44,116,114,121,115,58,91,93,44,111,112,115,58,91,93,125,59,114,101,116,117,114,110,32,111,61,123,110,101,120,116,58,115,40,48,41,44,116,104,114,111,119,58,115,40,49,41,44,114,101,116,117,114,110,58,115,40,50,41,125,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,111,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,41,44,111,59,102,117,110,99,116,105,111,110,32,115,40,111,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,115,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,41,123,105,102,40,110,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,71,101,110,101,114,97,116,111,114,32,105,115,32,97,108,114,101,97,100,121,32,101,120,101,99,117,116,105,110,103,46,34,41,59,102,111,114,40,59,97,59,41,116,114,121,123,105,102,40,110,61,49,44,114,38,38,40,105,61,50,38,111,91,48,93,63,114,46,114,101,116,117,114,110,58,111,91,48,93,63,114,46,116,104,114,111,119,124,124,40,40,105,61,114,46,114,101,116,117,114,110,41,38,38,105,46,99,97,108,108,40,114,41,44,48,41,58,114,46,110,101,120,116,41,38,38,33,40,105,61,105,46,99,97,108,108,40,114,44,111,91,49,93,41,41,46,100,111,110,101,41,114,101,116,117,114,110,32,105,59,115,119,105,116,99,104,40,114,61,48,44,105,38,38,40,111,61,91,50,38,111,91,48,93,44,105,46,118,97,108,117,101,93,41,44,111,91,48,93,41,123,99,97,115,101,32,48,58,99,97,115,101,32,49,58,105,61,111,59,98,114,101,97,107,59,99,97,115,101,32,52,58,114,101,116,117,114,110,32,97,46,108,97,98,101,108,43,43,44,123,118,97,108,117,101,58,111,91,49,93,44,100,111,110,101,58,33,49,125,59,99,97,115,101,32,53,58,97,46,108,97,98,101,108,43,43,44,114,61,111,91,49,93,44,111,61,91,48,93,59,99,111,110,116,105,110,117,101,59,99,97,115,101,32,55,58,111,61,97,46,111,112,115,46,112,111,112,40,41,44,97,46,116,114,121,115,46,112,111,112,40,41,59,99,111,110,116,105,110,117,101,59,100,101,102,97,117,108,116,58,105,102,40,105,61,97,46,116,114,121,115,44,33,40,40,105,61,105,46,108,101,110,103,116,104,62,48,38,38,105,91,105,46,108,101,110,103,116,104,45,49,93,41,124,124,54,33,61,61,111,91,48,93,38,38,50,33,61,61,111,91,48,93,41,41,123,97,61,48,59,99,111,110,116,105,110,117,101,125,105,102,40,51,61,61,61,111,91,48,93,38,38,40,33,105,124,124,111,91,49,93,62,105,91,48,93,38,38,111,91,49,93,60,105,91,51,93,41,41,123,97,46,108,97,98,101,108,61,111,91,49,93,59,98,114,101,97,107,125,105,102,40,54,61,61,61,111,91,48,93,38,38,97,46,108,97,98,101,108,60,105,91,49,93,41,123,97,46,108,97,98,101,108,61,105,91,49,93,44,105,61,111,59,98,114,101,97,107,125,105,102,40,105,38,38,97,46,108,97,98,101,108,60,105,91,50,93,41,123,97,46,108,97,98,101,108,61,105,91,50,93,44,97,46,111,112,115,46,112,117,115,104,40,111,41,59,98,114,101,97,107,125,105,91,50,93,38,38,97,46,111,112,115,46,112,111,112,40,41,44,97,46,116,114,121,115,46,112,111,112,40,41,59,99,111,110,116,105,110,117,101,125,111,61,101,46,99,97,108,108,40,116,44,97,41,125,99,97,116,99,104,40,116,41,123,111,61,91,54,44,116,93,44,114,61,48,125,102,105,110,97,108,108,121,123,110,61,105,61,48,125,105,102,40,53,38,111,91,48,93,41,116,104,114,111,119,32,111,91,49,93,59,114,101,116,117,114,110,123,118,97,108,117,101,58,111,91,48,93,63,111,91,49,93,58,118,111,105,100,32,48,44,100,111,110,101,58,33,48,125,125,40,91,111,44,115,93,41,125,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,111,61,34,98,114,111,119,115,101,114,45,116,97,98,115,45,108,111,99,107,45,107,101,121,34,59,102,117,110,99,116,105,111,110,32,97,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,115,101,116,84,105,109,101,111,117,116,40,101,44,116,41,125,41,41,125,102,117,110,99,116,105,111,110,32,99,40,116,41,123,102,111,114,40,118,97,114,32,101,61,34,48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,84,90,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,34,44,110,61,34,34,44,114,61,48,59,114,60,116,59,114,43,43,41,110,43,61,101,91,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,114,97,110,100,111,109,40,41,42,101,46,108,101,110,103,116,104,41,93,59,114,101,116,117,114,110,32,110,125,118,97,114,32,117,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,116,104,105,115,46,97,99,113,117,105,114,101,100,73,97,116,83,101,116,61,110,101,119,32,83,101,116,44,116,104,105,115,46,105,100,61,68,97,116,101,46,110,111,119,40,41,46,116,111,83,116,114,105,110,103,40,41,43,99,40,49,53,41,44,116,104,105,115,46,97,99,113,117,105,114,101,76,111,99,107,61,116,104,105,115,46,97,99,113,117,105,114,101,76,111,99,107,46,98,105,110,100,40,116,104,105,115,41,44,116,104,105,115,46,114,101,108,101,97,115,101,76,111,99,107,61,116,104,105,115,46,114,101,108,101,97,115,101,76,111,99,107,46,98,105,110,100,40,116,104,105,115,41,44,116,104,105,115,46,114,101,108,101,97,115,101,76,111,99,107,95,95,112,114,105,118,97,116,101,95,95,61,116,104,105,115,46,114,101,108,101,97,115,101,76,111,99,107,95,95,112,114,105,118,97,116,101,95,95,46,98,105,110,100,40,116,104,105,115,41,44,116,104,105,115,46,119,97,105,116,70,111,114,83,111,109,101,116,104,105,110,103,84,111,67,104,97,110,103,101,61,116,104,105,115,46,119,97,105,116,70,111,114,83,111,109,101,116,104,105,110,103,84,111,67,104,97,110,103,101,46,98,105,110,100,40,116,104,105,115,41,44,116,104,105,115,46,114,101,102,114,101,115,104,76,111,99,107,87,104,105,108,101,65,99,113,117,105,114,101,100,61,116,104,105,115,46,114,101,102,114,101,115,104,76,111,99,107,87,104,105,108,101,65,99,113,117,105,114,101,100,46,98,105,110,100,40,116,104,105,115,41,44,118,111,105,100,32,48,61,61,61,116,46,119,97,105,116,101,114,115,38,38,40,116,46,119,97,105,116,101,114,115,61,91,93,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,46,97,99,113,117,105,114,101,76,111,99,107,61,102,117,110,99,116,105,111,110,40,101,44,105,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,105,38,38,40,105,61,53,101,51,41,44,110,40,116,104,105,115,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,115,44,117,44,108,44,102,44,104,59,114,101,116,117,114,110,32,114,40,116,104,105,115,44,40,102,117,110,99,116,105,111,110,40,114,41,123,115,119,105,116,99,104,40,114,46,108,97,98,101,108,41,123,99,97,115,101,32,48,58,110,61,68,97,116,101,46,110,111,119,40,41,43,99,40,52,41,44,115,61,68,97,116,101,46,110,111,119,40,41,43,105,44,117,61,111,43,34,45,34,43,101,44,108,61,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,44,114,46,108,97,98,101,108,61,49,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,68,97,116,101,46,110,111,119,40,41,60,115,63,91,52,44,97,40,51,48,41,93,58,91,51,44,56,93,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,114,46,115,101,110,116,40,41,44,110,117,108,108,33,61,61,108,46,103,101,116,73,116,101,109,40,117,41,63,91,51,44,53,93,58,40,102,61,116,104,105,115,46,105,100,43,34,45,34,43,101,43,34,45,34,43,110,44,91,52,44,97,40,77,97,116,104,46,102,108,111,111,114,40,50,53,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,41,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,114,46,115,101,110,116,40,41,44,108,46,115,101,116,73,116,101,109,40,117,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,123,105,100,58,116,104,105,115,46,105,100,44,105,97,116,58,110,44,116,105,109,101,111,117,116,75,101,121,58,102,44,116,105,109,101,65,99,113,117,105,114,101,100,58,68,97,116,101,46,110,111,119,40,41,44,116,105,109,101,82,101,102,114,101,115,104,101,100,58,68,97,116,101,46,110,111,119,40,41,125,41,41,44,91,52,44,97,40,51,48,41,93,59,99,97,115,101,32,52,58,114,101,116,117,114,110,32,114,46,115,101,110,116,40,41,44,110,117,108,108,33,61,61,40,104,61,108,46,103,101,116,73,116,101,109,40,117,41,41,38,38,40,104,61,74,83,79,78,46,112,97,114,115,101,40,104,41,41,46,105,100,61,61,61,116,104,105,115,46,105,100,38,38,104,46,105,97,116,61,61,61,110,63,40,116,104,105,115,46,97,99,113,117,105,114,101,100,73,97,116,83,101,116,46,97,100,100,40,110,41,44,116,104,105,115,46,114,101,102,114,101,115,104,76,111,99,107,87,104,105,108,101,65,99,113,117,105,114,101,100,40,117,44,110,41,44,91,50,44,33,48,93,41,58,91,51,44,55,93,59,99,97,115,101,32,53,58,114,101,116,117,114,110,32,116,46,108,111,99,107,67,111,114,114,101,99,116,111,114,40,41,44,91,52,44,116,104,105,115,46,119,97,105,116,70,111,114,83,111,109,101,116,104,105,110,103,84,111,67,104,97,110,103,101,40,115,41,93,59,99,97,115,101,32,54,58,114,46,115,101,110,116,40,41,44,114,46,108,97,98,101,108,61,55,59,99,97,115,101,32,55,58,114,101,116,117,114,110,32,110,61,68,97,116,101,46,110,111,119,40,41,43,99,40,52,41,44,91,51,44,49,93,59,99,97,115,101,32,56,58,114,101,116,117,114,110,91,50,44,33,49,93,125,125,41,41,125,41,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,114,101,102,114,101,115,104,76,111,99,107,87,104,105,108,101,65,99,113,117,105,114,101,100,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,40,116,104,105,115,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,116,104,105,115,59,114,101,116,117,114,110,32,114,40,116,104,105,115,44,40,102,117,110,99,116,105,111,110,40,111,41,123,114,101,116,117,114,110,32,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,40,105,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,105,59,114,101,116,117,114,110,32,114,40,116,104,105,115,44,40,102,117,110,99,116,105,111,110,40,114,41,123,115,119,105,116,99,104,40,114,46,108,97,98,101,108,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,91,52,44,115,46,100,101,102,97,117,108,116,40,41,46,108,111,99,107,40,101,41,93,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,114,46,115,101,110,116,40,41,44,116,104,105,115,46,97,99,113,117,105,114,101,100,73,97,116,83,101,116,46,104,97,115,40,101,41,63,40,110,61,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,44,110,117,108,108,61,61,61,40,105,61,110,46,103,101,116,73,116,101,109,40,116,41,41,63,40,115,46,100,101,102,97,117,108,116,40,41,46,117,110,108,111,99,107,40,101,41,44,91,50,93,41,58,40,40,105,61,74,83,79,78,46,112,97,114,115,101,40,105,41,41,46,116,105,109,101,82,101,102,114,101,115,104,101,100,61,68,97,116,101,46,110,111,119,40,41,44,110,46,115,101,116,73,116,101,109,40,116,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,105,41,41,44,115,46,100,101,102,97,117,108,116,40,41,46,117,110,108,111,99,107,40,101,41,44,116,104,105,115,46,114,101,102,114,101,115,104,76,111,99,107,87,104,105,108,101,65,99,113,117,105,114,101,100,40,116,44,101,41,44,91,50,93,41,41,58,40,115,46,100,101,102,97,117,108,116,40,41,46,117,110,108,111,99,107,40,101,41,44,91,50,93,41,125,125,41,41,125,41,41,125,41,44,49,101,51,41,44,91,50,93,125,41,41,125,41,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,119,97,105,116,70,111,114,83,111,109,101,116,104,105,110,103,84,111,67,104,97,110,103,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,40,116,104,105,115,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,40,116,104,105,115,44,40,102,117,110,99,116,105,111,110,40,110,41,123,115,119,105,116,99,104,40,110,46,108,97,98,101,108,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,91,52,44,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,33,49,44,105,61,68,97,116,101,46,110,111,119,40,41,44,111,61,33,49,59,102,117,110,99,116,105,111,110,32,97,40,41,123,105,102,40,111,124,124,40,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,116,111,114,97,103,101,34,44,97,41,44,116,46,114,101,109,111,118,101,70,114,111,109,87,97,105,116,105,110,103,40,97,41,44,99,108,101,97,114,84,105,109,101,111,117,116,40,115,41,44,111,61,33,48,41,44,33,114,41,123,114,61,33,48,59,118,97,114,32,101,61,53,48,45,40,68,97,116,101,46,110,111,119,40,41,45,105,41,59,101,62,48,63,115,101,116,84,105,109,101,111,117,116,40,110,44,101,41,58,110,40,41,125,125,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,116,111,114,97,103,101,34,44,97,41,44,116,46,97,100,100,84,111,87,97,105,116,105,110,103,40,97,41,59,118,97,114,32,115,61,115,101,116,84,105,109,101,111,117,116,40,97,44,77,97,116,104,46,109,97,120,40,48,44,101,45,68,97,116,101,46,110,111,119,40,41,41,41,125,41,41,93,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,46,115,101,110,116,40,41,44,91,50,93,125,125,41,41,125,41,41,125,44,116,46,97,100,100,84,111,87,97,105,116,105,110,103,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,114,101,109,111,118,101,70,114,111,109,87,97,105,116,105,110,103,40,101,41,44,118,111,105,100,32,48,33,61,61,116,46,119,97,105,116,101,114,115,38,38,116,46,119,97,105,116,101,114,115,46,112,117,115,104,40,101,41,125,44,116,46,114,101,109,111,118,101,70,114,111,109,87,97,105,116,105,110,103,61,102,117,110,99,116,105,111,110,40,101,41,123,118,111,105,100,32,48,33,61,61,116,46,119,97,105,116,101,114,115,38,38,40,116,46,119,97,105,116,101,114,115,61,116,46,119,97,105,116,101,114,115,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,33,61,61,101,125,41,41,41,125,44,116,46,110,111,116,105,102,121,87,97,105,116,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,111,105,100,32,48,33,61,61,116,46,119,97,105,116,101,114,115,38,38,116,46,119,97,105,116,101,114,115,46,115,108,105,99,101,40,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,41,125,41,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,114,101,108,101,97,115,101,76,111,99,107,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,116,104,105,115,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,40,116,104,105,115,44,40,102,117,110,99,116,105,111,110,40,101,41,123,115,119,105,116,99,104,40,101,46,108,97,98,101,108,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,91,52,44,116,104,105,115,46,114,101,108,101,97,115,101,76,111,99,107,95,95,112,114,105,118,97,116,101,95,95,40,116,41,93,59,99,97,115,101,32,49,58,114,101,116,117,114,110,91,50,44,101,46,115,101,110,116,40,41,93,125,125,41,41,125,41,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,114,101,108,101,97,115,101,76,111,99,107,95,95,112,114,105,118,97,116,101,95,95,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,40,116,104,105,115,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,105,44,97,59,114,101,116,117,114,110,32,114,40,116,104,105,115,44,40,102,117,110,99,116,105,111,110,40,114,41,123,115,119,105,116,99,104,40,114,46,108,97,98,101,108,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,61,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,44,105,61,111,43,34,45,34,43,101,44,110,117,108,108,61,61,61,40,97,61,110,46,103,101,116,73,116,101,109,40,105,41,41,63,91,50,93,58,40,97,61,74,83,79,78,46,112,97,114,115,101,40,97,41,41,46,105,100,33,61,61,116,104,105,115,46,105,100,63,91,51,44,50,93,58,91,52,44,115,46,100,101,102,97,117,108,116,40,41,46,108,111,99,107,40,97,46,105,97,116,41,93,59,99,97,115,101,32,49,58,114,46,115,101,110,116,40,41,44,116,104,105,115,46,97,99,113,117,105,114,101,100,73,97,116,83,101,116,46,100,101,108,101,116,101,40,97,46,105,97,116,41,44,110,46,114,101,109,111,118,101,73,116,101,109,40,105,41,44,115,46,100,101,102,97,117,108,116,40,41,46,117,110,108,111,99,107,40,97,46,105,97,116,41,44,116,46,110,111,116,105,102,121,87,97,105,116,101,114,115,40,41,44,114,46,108,97,98,101,108,61,50,59,99,97,115,101,32,50,58,114,101,116,117,114,110,91,50,93,125,125,41,41,125,41,41,125,44,116,46,108,111,99,107,67,111,114,114,101,99,116,111,114,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,68,97,116,101,46,110,111,119,40,41,45,53,101,51,44,110,61,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,44,114,61,79,98,106,101,99,116,46,107,101,121,115,40,110,41,44,105,61,33,49,44,97,61,48,59,97,60,114,46,108,101,110,103,116,104,59,97,43,43,41,123,118,97,114,32,115,61,114,91,97,93,59,105,102,40,115,46,105,110,99,108,117,100,101,115,40,111,41,41,123,118,97,114,32,99,61,110,46,103,101,116,73,116,101,109,40,115,41,59,110,117,108,108,33,61,61,99,38,38,40,118,111,105,100,32,48,61,61,61,40,99,61,74,83,79,78,46,112,97,114,115,101,40,99,41,41,46,116,105,109,101,82,101,102,114,101,115,104,101,100,38,38,99,46,116,105,109,101,65,99,113,117,105,114,101,100,60,101,124,124,118,111,105,100,32,48,33,61,61,99,46,116,105,109,101,82,101,102,114,101,115,104,101,100,38,38,99,46,116,105,109,101,82,101,102,114,101,115,104,101,100,60,101,41,38,38,40,110,46,114,101,109,111,118,101,73,116,101,109,40,115,41,44,105,61,33,48,41,125,125,105,38,38,116,46,110,111,116,105,102,121,87,97,105,116,101,114,115,40,41,125,44,116,46,119,97,105,116,101,114,115,61,118,111,105,100,32,48,44,116,125,40,41,59,101,46,100,101,102,97,117,108,116,61,117,125,41,41,41,59,99,111,110,115,116,32,117,61,123,116,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,58,54,48,125,44,108,61,123,110,97,109,101,58,34,97,117,116,104,48,45,115,112,97,45,106,115,34,44,118,101,114,115,105,111,110,58,34,50,46,48,46,50,34,125,44,102,61,40,41,61,62,68,97,116,101,46,110,111,119,40,41,59,99,108,97,115,115,32,104,32,101,120,116,101,110,100,115,32,69,114,114,111,114,123,99,111,110,115,116,114,117,99,116,111,114,40,116,44,101,41,123,115,117,112,101,114,40,101,41,44,116,104,105,115,46,101,114,114,111,114,61,116,44,116,104,105,115,46,101,114,114,111,114,95,100,101,115,99,114,105,112,116,105,111,110,61,101,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,44,104,46,112,114,111,116,111,116,121,112,101,41,125,115,116,97,116,105,99,32,102,114,111,109,80,97,121,108,111,97,100,40,123,101,114,114,111,114,58,116,44,101,114,114,111,114,95,100,101,115,99,114,105,112,116,105,111,110,58,101,125,41,123,114,101,116,117,114,110,32,110,101,119,32,104,40,116,44,101,41,125,125,99,108,97,115,115,32,100,32,101,120,116,101,110,100,115,32,104,123,99,111,110,115,116,114,117,99,116,111,114,40,116,44,101,44,110,44,114,61,110,117,108,108,41,123,115,117,112,101,114,40,116,44,101,41,44,116,104,105,115,46,115,116,97,116,101,61,110,44,116,104,105,115,46,97,112,112,83,116,97,116,101,61,114,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,44,100,46,112,114,111,116,111,116,121,112,101,41,125,125,99,108,97,115,115,32,112,32,101,120,116,101,110,100,115,32,104,123,99,111,110,115,116,114,117,99,116,111,114,40,41,123,115,117,112,101,114,40,34,116,105,109,101,111,117,116,34,44,34,84,105,109,101,111,117,116,34,41,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,44,112,46,112,114,111,116,111,116,121,112,101,41,125,125,99,108,97,115,115,32,118,32,101,120,116,101,110,100,115,32,112,123,99,111,110,115,116,114,117,99,116,111,114,40,116,41,123,115,117,112,101,114,40,41,44,116,104,105,115,46,112,111,112,117,112,61,116,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,44,118,46,112,114,111,116,111,116,121,112,101,41,125,125,99,108,97,115,115,32,103,32,101,120,116,101,110,100,115,32,104,123,99,111,110,115,116,114,117,99,116,111,114,40,116,41,123,115,117,112,101,114,40,34,99,97,110,99,101,108,108,101,100,34,44,34,80,111,112,117,112,32,99,108,111,115,101,100,34,41,44,116,104,105,115,46,112,111,112,117,112,61,116,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,44,103,46,112,114,111,116,111,116,121,112,101,41,125,125,99,108,97,115,115,32,109,32,101,120,116,101,110,100,115,32,104,123,99,111,110,115,116,114,117,99,116,111,114,40,116,44,101,44,110,41,123,115,117,112,101,114,40,116,44,101,41,44,116,104,105,115,46,109,102,97,95,116,111,107,101,110,61,110,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,44,109,46,112,114,111,116,111,116,121,112,101,41,125,125,99,108,97,115,115,32,98,32,101,120,116,101,110,100,115,32,104,123,99,111,110,115,116,114,117,99,116,111,114,40,116,44,101,41,123,115,117,112,101,114,40,34,109,105,115,115,105,110,103,95,114,101,102,114,101,115,104,95,116,111,107,101,110,34,44,96,77,105,115,115,105,110,103,32,82,101,102,114,101,115,104,32,84,111,107,101,110,32,40,97,117,100,105,101,110,99,101,58,32,39,36,123,121,40,116,44,91,34,100,101,102,97,117,108,116,34,93,41,125,39,44,32,115,99,111,112,101,58,32,39,36,123,121,40,101,41,125,39,41,96,41,44,116,104,105,115,46,97,117,100,105,101,110,99,101,61,116,44,116,104,105,115,46,115,99,111,112,101,61,101,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,104,105,115,44,98,46,112,114,111,116,111,116,121,112,101,41,125,125,102,117,110,99,116,105,111,110,32,121,40,116,44,101,61,91,93,41,123,114,101,116,117,114,110,32,116,38,38,33,101,46,105,110,99,108,117,100,101,115,40,116,41,63,116,58,34,34,125,99,111,110,115,116,32,119,61,40,41,61,62,119,105,110,100,111,119,46,99,114,121,112,116,111,44,95,61,40,41,61,62,123,99,111,110,115,116,32,116,61,34,48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,45,95,126,46,34,59,108,101,116,32,101,61,34,34,59,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,119,40,41,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,40,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,52,51,41,41,41,46,102,111,114,69,97,99,104,40,40,110,61,62,101,43,61,116,91,110,37,116,46,108,101,110,103,116,104,93,41,41,44,101,125,44,120,61,116,61,62,98,116,111,97,40,116,41,44,79,61,116,61,62,123,118,97,114,123,99,108,105,101,110,116,73,100,58,101,125,61,116,44,110,61,114,40,116,44,91,34,99,108,105,101,110,116,73,100,34,93,41,59,114,101,116,117,114,110,32,110,101,119,32,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,40,40,116,61,62,79,98,106,101,99,116,46,107,101,121,115,40,116,41,46,102,105,108,116,101,114,40,40,101,61,62,118,111,105,100,32,48,33,61,61,116,91,101,93,41,41,46,114,101,100,117,99,101,40,40,40,101,44,110,41,61,62,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,101,41,44,123,91,110,93,58,116,91,110,93,125,41,41,44,123,125,41,41,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,99,108,105,101,110,116,95,105,100,58,101,125,44,110,41,41,41,46,116,111,83,116,114,105,110,103,40,41,125,44,83,61,116,61,62,40,116,61,62,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,97,116,111,98,40,116,41,46,115,112,108,105,116,40,34,34,41,46,109,97,112,40,40,116,61,62,34,37,34,43,40,34,48,48,34,43,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,46,115,108,105,99,101,40,45,50,41,41,41,46,106,111,105,110,40,34,34,41,41,41,40,116,46,114,101,112,108,97,99,101,40,47,95,47,103,44,34,47,34,41,46,114,101,112,108,97,99,101,40,47,45,47,103,44,34,43,34,41,41,44,107,61,97,115,121,110,99,40,116,44,101,41,61,62,123,99,111,110,115,116,32,110,61,97,119,97,105,116,32,102,101,116,99,104,40,116,44,101,41,59,114,101,116,117,114,110,123,111,107,58,110,46,111,107,44,106,115,111,110,58,97,119,97,105,116,32,110,46,106,115,111,110,40,41,125,125,44,67,61,97,115,121,110,99,40,116,44,101,44,110,41,61,62,123,99,111,110,115,116,32,114,61,110,101,119,32,65,98,111,114,116,67,111,110,116,114,111,108,108,101,114,59,108,101,116,32,105,59,114,101,116,117,114,110,32,101,46,115,105,103,110,97,108,61,114,46,115,105,103,110,97,108,44,80,114,111,109,105,115,101,46,114,97,99,101,40,91,107,40,116,44,101,41,44,110,101,119,32,80,114,111,109,105,115,101,40,40,40,116,44,101,41,61,62,123,105,61,115,101,116,84,105,109,101,111,117,116,40,40,40,41,61,62,123,114,46,97,98,111,114,116,40,41,44,101,40,110,101,119,32,69,114,114,111,114,40,34,84,105,109,101,111,117,116,32,119,104,101,110,32,101,120,101,99,117,116,105,110,103,32,39,102,101,116,99,104,39,34,41,41,125,41,44,110,41,125,41,41,93,41,46,102,105,110,97,108,108,121,40,40,40,41,61,62,123,99,108,101,97,114,84,105,109,101,111,117,116,40,105,41,125,41,41,125,44,80,61,97,115,121,110,99,40,116,44,101,44,110,44,114,44,105,44,111,44,97,41,61,62,123,114,101,116,117,114,110,32,115,61,123,97,117,116,104,58,123,97,117,100,105,101,110,99,101,58,101,44,115,99,111,112,101,58,110,125,44,116,105,109,101,111,117,116,58,105,44,102,101,116,99,104,85,114,108,58,116,44,102,101,116,99,104,79,112,116,105,111,110,115,58,114,44,117,115,101,70,111,114,109,68,97,116,97,58,97,125,44,99,61,111,44,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,99,111,110,115,116,32,110,61,110,101,119,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,59,110,46,112,111,114,116,49,46,111,110,109,101,115,115,97,103,101,61,102,117,110,99,116,105,111,110,40,114,41,123,114,46,100,97,116,97,46,101,114,114,111,114,63,101,40,110,101,119,32,69,114,114,111,114,40,114,46,100,97,116,97,46,101,114,114,111,114,41,41,58,116,40,114,46,100,97,116,97,41,44,110,46,112,111,114,116,49,46,99,108,111,115,101,40,41,125,44,99,46,112,111,115,116,77,101,115,115,97,103,101,40,115,44,91,110,46,112,111,114,116,50,93,41,125,41,41,59,118,97,114,32,115,44,99,125,44,84,61,97,115,121,110,99,40,116,44,101,44,110,44,114,44,105,44,111,44,97,61,49,101,52,41,61,62,105,63,80,40,116,44,101,44,110,44,114,44,97,44,105,44,111,41,58,67,40,116,44,114,44,97,41,59,97,115,121,110,99,32,102,117,110,99,116,105,111,110,32,106,40,116,44,101,41,123,118,97,114,123,98,97,115,101,85,114,108,58,110,44,116,105,109,101,111,117,116,58,105,44,97,117,100,105,101,110,99,101,58,111,44,115,99,111,112,101,58,97,44,97,117,116,104,48,67,108,105,101,110,116,58,115,44,117,115,101,70,111,114,109,68,97,116,97,58,99,125,61,116,44,117,61,114,40,116,44,91,34,98,97,115,101,85,114,108,34,44,34,116,105,109,101,111,117,116,34,44,34,97,117,100,105,101,110,99,101,34,44,34,115,99,111,112,101,34,44,34,97,117,116,104,48,67,108,105,101,110,116,34,44,34,117,115,101,70,111,114,109,68,97,116,97,34,93,41,59,99,111,110,115,116,32,102,61,99,63,79,40,117,41,58,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,117,41,59,114,101,116,117,114,110,32,97,119,97,105,116,32,97,115,121,110,99,32,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,105,44,111,44,97,44,115,41,123,108,101,116,32,99,44,117,61,110,117,108,108,59,102,111,114,40,108,101,116,32,104,61,48,59,104,60,51,59,104,43,43,41,116,114,121,123,99,61,97,119,97,105,116,32,84,40,116,44,110,44,105,44,111,44,97,44,115,44,101,41,44,117,61,110,117,108,108,59,98,114,101,97,107,125,99,97,116,99,104,40,114,41,123,117,61,114,125,105,102,40,117,41,116,104,114,111,119,32,117,59,99,111,110,115,116,32,108,61,99,46,106,115,111,110,44,123,101,114,114,111,114,58,102,44,101,114,114,111,114,95,100,101,115,99,114,105,112,116,105,111,110,58,100,125,61,108,44,112,61,114,40,108,44,91,34,101,114,114,111,114,34,44,34,101,114,114,111,114,95,100,101,115,99,114,105,112,116,105,111,110,34,93,41,44,123,111,107,58,118,125,61,99,59,105,102,40,33,118,41,123,99,111,110,115,116,32,101,61,100,124,124,96,72,84,84,80,32,101,114,114,111,114,46,32,85,110,97,98,108,101,32,116,111,32,102,101,116,99,104,32,36,123,116,125,96,59,105,102,40,34,109,102,97,95,114,101,113,117,105,114,101,100,34,61,61,61,102,41,116,104,114,111,119,32,110,101,119,32,109,40,102,44,101,44,112,46,109,102,97,95,116,111,107,101,110,41,59,116,104,114,111,119,32,110,101,119,32,104,40,102,124,124,34,114,101,113,117,101,115,116,95,101,114,114,111,114,34,44,101,41,125,114,101,116,117,114,110,32,112,125,40,96,36,123,110,125,47,111,97,117,116,104,47,116,111,107,101,110,96,44,105,44,111,124,124,34,100,101,102,97,117,108,116,34,44,97,44,123,109,101,116,104,111,100,58,34,80,79,83,84,34,44,98,111,100,121,58,102,44,104,101,97,100,101,114,115,58,123,34,67,111,110,116,101,110,116,45,84,121,112,101,34,58,99,63,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,58,34,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,34,44,34,65,117,116,104,48,45,67,108,105,101,110,116,34,58,98,116,111,97,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,115,124,124,108,41,41,125,125,44,101,44,99,41,125,99,111,110,115,116,32,69,61,40,46,46,46,116,41,61,62,123,114,101,116,117,114,110,40,101,61,116,46,102,105,108,116,101,114,40,66,111,111,108,101,97,110,41,46,106,111,105,110,40,34,32,34,41,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,92,115,43,47,41,44,65,114,114,97,121,46,102,114,111,109,40,110,101,119,32,83,101,116,40,101,41,41,41,46,106,111,105,110,40,34,32,34,41,59,118,97,114,32,101,125,59,99,108,97,115,115,32,68,123,99,111,110,115,116,114,117,99,116,111,114,40,116,44,101,61,34,64,64,97,117,116,104,48,115,112,97,106,115,64,64,34,44,110,41,123,116,104,105,115,46,112,114,101,102,105,120,61,101,44,116,104,105,115,46,115,117,102,102,105,120,61,110,44,116,104,105,115,46,99,108,105,101,110,116,73,100,61,116,46,99,108,105,101,110,116,73,100,44,116,104,105,115,46,115,99,111,112,101,61,116,46,115,99,111,112,101,44,116,104,105,115,46,97,117,100,105,101,110,99,101,61,116,46,97,117,100,105,101,110,99,101,125,116,111,75,101,121,40,41,123,114,101,116,117,114,110,91,116,104,105,115,46,112,114,101,102,105,120,44,116,104,105,115,46,99,108,105,101,110,116,73,100,44,116,104,105,115,46,97,117,100,105,101,110,99,101,44,116,104,105,115,46,115,99,111,112,101,44,116,104,105,115,46,115,117,102,102,105,120,93,46,102,105,108,116,101,114,40,66,111,111,108,101,97,110,41,46,106,111,105,110,40,34,58,58,34,41,125,115,116,97,116,105,99,32,102,114,111,109,75,101,121,40,116,41,123,99,111,110,115,116,91,101,44,110,44,114,44,105,93,61,116,46,115,112,108,105,116,40,34,58,58,34,41,59,114,101,116,117,114,110,32,110,101,119,32,68,40,123,99,108,105,101,110,116,73,100,58,110,44,115,99,111,112,101,58,105,44,97,117,100,105,101,110,99,101,58,114,125,44,101,41,125,115,116,97,116,105,99,32,102,114,111,109,67,97,99,104,101,69,110,116,114,121,40,116,41,123,99,111,110,115,116,123,115,99,111,112,101,58,101,44,97,117,100,105,101,110,99,101,58,110,44,99,108,105,101,110,116,95,105,100,58,114,125,61,116,59,114,101,116,117,114,110,32,110,101,119,32,68,40,123,115,99,111,112,101,58,101,44,97,117,100,105,101,110,99,101,58,110,44,99,108,105,101,110,116,73,100,58,114,125,41,125,125,99,108,97,115,115,32,65,123,115,101,116,40,116,44,101,41,123,108,111,99,97,108,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,116,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,101,41,41,125,103,101,116,40,116,41,123,99,111,110,115,116,32,101,61,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,116,41,59,105,102,40,101,41,116,114,121,123,114,101,116,117,114,110,32,74,83,79,78,46,112,97,114,115,101,40,101,41,125,99,97,116,99,104,40,116,41,123,114,101,116,117,114,110,125,125,114,101,109,111,118,101,40,116,41,123,108,111,99,97,108,83,116,111,114,97,103,101,46,114,101,109,111,118,101,73,116,101,109,40,116,41,125,97,108,108,75,101,121,115,40,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,41,46,102,105,108,116,101,114,40,40,116,61,62,116,46,115,116,97,114,116,115,87,105,116,104,40,34,64,64,97,117,116,104,48,115,112,97,106,115,64,64,34,41,41,41,125,125,99,108,97,115,115,32,76,123,99,111,110,115,116,114,117,99,116,111,114,40,41,123,116,104,105,115,46,101,110,99,108,111,115,101,100,67,97,99,104,101,61,102,117,110,99,116,105,111,110,40,41,123,108,101,116,32,116,61,123,125,59,114,101,116,117,114,110,123,115,101,116,40,101,44,110,41,123,116,91,101,93,61,110,125,44,103,101,116,40,101,41,123,99,111,110,115,116,32,110,61,116,91,101,93,59,105,102,40,110,41,114,101,116,117,114,110,32,110,125,44,114,101,109,111,118,101,40,101,41,123,100,101,108,101,116,101,32,116,91,101,93,125,44,97,108,108,75,101,121,115,58,40,41,61,62,79,98,106,101,99,116,46,107,101,121,115,40,116,41,125,125,40,41,125,125,99,108,97,115,115,32,73,123,99,111,110,115,116,114,117,99,116,111,114,40,116,44,101,44,110,41,123,116,104,105,115,46,99,97,99,104,101,61,116,44,116,104,105,115,46,107,101,121,77,97,110,105,102,101,115,116,61,101,44,116,104,105,115,46,110,111,119,80,114,111,118,105,100,101,114,61,110,124,124,102,125,97,115,121,110,99,32,115,101,116,73,100,84,111,107,101,110,40,116,44,101,44,110,41,123,118,97,114,32,114,59,99,111,110,115,116,32,105,61,116,104,105,115,46,103,101,116,73,100,84,111,107,101,110,67,97,99,104,101,75,101,121,40,116,41,59,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,115,101,116,40,105,44,123,105,100,95,116,111,107,101,110,58,101,44,100,101,99,111,100,101,100,84,111,107,101,110,58,110,125,41,44,97,119,97,105,116,40,110,117,108,108,61,61,61,40,114,61,116,104,105,115,46,107,101,121,77,97,110,105,102,101,115,116,41,124,124,118,111,105,100,32,48,61,61,61,114,63,118,111,105,100,32,48,58,114,46,97,100,100,40,105,41,41,125,97,115,121,110,99,32,103,101,116,73,100,84,111,107,101,110,40,116,41,123,99,111,110,115,116,32,101,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,103,101,116,40,116,104,105,115,46,103,101,116,73,100,84,111,107,101,110,67,97,99,104,101,75,101,121,40,116,46,99,108,105,101,110,116,73,100,41,41,59,105,102,40,33,101,38,38,116,46,115,99,111,112,101,38,38,116,46,97,117,100,105,101,110,99,101,41,123,99,111,110,115,116,32,101,61,97,119,97,105,116,32,116,104,105,115,46,103,101,116,40,116,41,59,105,102,40,33,101,41,114,101,116,117,114,110,59,105,102,40,33,101,46,105,100,95,116,111,107,101,110,124,124,33,101,46,100,101,99,111,100,101,100,84,111,107,101,110,41,114,101,116,117,114,110,59,114,101,116,117,114,110,123,105,100,95,116,111,107,101,110,58,101,46,105,100,95,116,111,107,101,110,44,100,101,99,111,100,101,100,84,111,107,101,110,58,101,46,100,101,99,111,100,101,100,84,111,107,101,110,125,125,105,102,40,101,41,114,101,116,117,114,110,123,105,100,95,116,111,107,101,110,58,101,46,105,100,95,116,111,107,101,110,44,100,101,99,111,100,101,100,84,111,107,101,110,58,101,46,100,101,99,111,100,101,100,84,111,107,101,110,125,125,97,115,121,110,99,32,103,101,116,40,116,44,101,61,48,41,123,118,97,114,32,110,59,108,101,116,32,114,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,103,101,116,40,116,46,116,111,75,101,121,40,41,41,59,105,102,40,33,114,41,123,99,111,110,115,116,32,101,61,97,119,97,105,116,32,116,104,105,115,46,103,101,116,67,97,99,104,101,75,101,121,115,40,41,59,105,102,40,33,101,41,114,101,116,117,114,110,59,99,111,110,115,116,32,110,61,116,104,105,115,46,109,97,116,99,104,69,120,105,115,116,105,110,103,67,97,99,104,101,75,101,121,40,116,44,101,41,59,110,38,38,40,114,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,103,101,116,40,110,41,41,125,105,102,40,33,114,41,114,101,116,117,114,110,59,99,111,110,115,116,32,105,61,97,119,97,105,116,32,116,104,105,115,46,110,111,119,80,114,111,118,105,100,101,114,40,41,44,111,61,77,97,116,104,46,102,108,111,111,114,40,105,47,49,101,51,41,59,114,101,116,117,114,110,32,114,46,101,120,112,105,114,101,115,65,116,45,101,60,111,63,114,46,98,111,100,121,46,114,101,102,114,101,115,104,95,116,111,107,101,110,63,40,114,46,98,111,100,121,61,123,114,101,102,114,101,115,104,95,116,111,107,101,110,58,114,46,98,111,100,121,46,114,101,102,114,101,115,104,95,116,111,107,101,110,125,44,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,115,101,116,40,116,46,116,111,75,101,121,40,41,44,114,41,44,114,46,98,111,100,121,41,58,40,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,114,101,109,111,118,101,40,116,46,116,111,75,101,121,40,41,41,44,118,111,105,100,32,97,119,97,105,116,40,110,117,108,108,61,61,61,40,110,61,116,104,105,115,46,107,101,121,77,97,110,105,102,101,115,116,41,124,124,118,111,105,100,32,48,61,61,61,110,63,118,111,105,100,32,48,58,110,46,114,101,109,111,118,101,40,116,46,116,111,75,101,121,40,41,41,41,41,58,114,46,98,111,100,121,125,97,115,121,110,99,32,115,101,116,40,116,41,123,118,97,114,32,101,59,99,111,110,115,116,32,110,61,110,101,119,32,68,40,123,99,108,105,101,110,116,73,100,58,116,46,99,108,105,101,110,116,95,105,100,44,115,99,111,112,101,58,116,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,116,46,97,117,100,105,101,110,99,101,125,41,44,114,61,97,119,97,105,116,32,116,104,105,115,46,119,114,97,112,67,97,99,104,101,69,110,116,114,121,40,116,41,59,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,115,101,116,40,110,46,116,111,75,101,121,40,41,44,114,41,44,97,119,97,105,116,40,110,117,108,108,61,61,61,40,101,61,116,104,105,115,46,107,101,121,77,97,110,105,102,101,115,116,41,124,124,118,111,105,100,32,48,61,61,61,101,63,118,111,105,100,32,48,58,101,46,97,100,100,40,110,46,116,111,75,101,121,40,41,41,41,125,97,115,121,110,99,32,99,108,101,97,114,40,116,41,123,118,97,114,32,101,59,99,111,110,115,116,32,110,61,97,119,97,105,116,32,116,104,105,115,46,103,101,116,67,97,99,104,101,75,101,121,115,40,41,59,110,38,38,40,97,119,97,105,116,32,110,46,102,105,108,116,101,114,40,40,101,61,62,33,116,124,124,101,46,105,110,99,108,117,100,101,115,40,116,41,41,41,46,114,101,100,117,99,101,40,40,97,115,121,110,99,40,116,44,101,41,61,62,123,97,119,97,105,116,32,116,44,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,114,101,109,111,118,101,40,101,41,125,41,44,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,41,44,97,119,97,105,116,40,110,117,108,108,61,61,61,40,101,61,116,104,105,115,46,107,101,121,77,97,110,105,102,101,115,116,41,124,124,118,111,105,100,32,48,61,61,61,101,63,118,111,105,100,32,48,58,101,46,99,108,101,97,114,40,41,41,41,125,97,115,121,110,99,32,119,114,97,112,67,97,99,104,101,69,110,116,114,121,40,116,41,123,99,111,110,115,116,32,101,61,97,119,97,105,116,32,116,104,105,115,46,110,111,119,80,114,111,118,105,100,101,114,40,41,59,114,101,116,117,114,110,123,98,111,100,121,58,116,44,101,120,112,105,114,101,115,65,116,58,77,97,116,104,46,102,108,111,111,114,40,101,47,49,101,51,41,43,116,46,101,120,112,105,114,101,115,95,105,110,125,125,97,115,121,110,99,32,103,101,116,67,97,99,104,101,75,101,121,115,40,41,123,118,97,114,32,116,59,114,101,116,117,114,110,32,116,104,105,115,46,107,101,121,77,97,110,105,102,101,115,116,63,110,117,108,108,61,61,61,40,116,61,97,119,97,105,116,32,116,104,105,115,46,107,101,121,77,97,110,105,102,101,115,116,46,103,101,116,40,41,41,124,124,118,111,105,100,32,48,61,61,61,116,63,118,111,105,100,32,48,58,116,46,107,101,121,115,58,116,104,105,115,46,99,97,99,104,101,46,97,108,108,75,101,121,115,63,116,104,105,115,46,99,97,99,104,101,46,97,108,108,75,101,121,115,40,41,58,118,111,105,100,32,48,125,103,101,116,73,100,84,111,107,101,110,67,97,99,104,101,75,101,121,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,68,40,123,99,108,105,101,110,116,73,100,58,116,125,44,34,64,64,97,117,116,104,48,115,112,97,106,115,64,64,34,44,34,64,64,117,115,101,114,64,64,34,41,46,116,111,75,101,121,40,41,125,109,97,116,99,104,69,120,105,115,116,105,110,103,67,97,99,104,101,75,101,121,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,102,105,108,116,101,114,40,40,101,61,62,123,118,97,114,32,110,59,99,111,110,115,116,32,114,61,68,46,102,114,111,109,75,101,121,40,101,41,44,105,61,110,101,119,32,83,101,116,40,114,46,115,99,111,112,101,38,38,114,46,115,99,111,112,101,46,115,112,108,105,116,40,34,32,34,41,41,44,111,61,40,110,117,108,108,61,61,61,40,110,61,116,46,115,99,111,112,101,41,124,124,118,111,105,100,32,48,61,61,61,110,63,118,111,105,100,32,48,58,110,46,115,112,108,105,116,40,34,32,34,41,41,124,124,91,93,44,97,61,114,46,115,99,111,112,101,38,38,111,46,114,101,100,117,99,101,40,40,40,116,44,101,41,61,62,116,38,38,105,46,104,97,115,40,101,41,41,44,33,48,41,59,114,101,116,117,114,110,34,64,64,97,117,116,104,48,115,112,97,106,115,64,64,34,61,61,61,114,46,112,114,101,102,105,120,38,38,114,46,99,108,105,101,110,116,73,100,61,61,61,116,46,99,108,105,101,110,116,73,100,38,38,114,46,97,117,100,105,101,110,99,101,61,61,61,116,46,97,117,100,105,101,110,99,101,38,38,97,125,41,41,91,48,93,125,125,99,108,97,115,115,32,77,123,99,111,110,115,116,114,117,99,116,111,114,40,116,44,101,41,123,116,104,105,115,46,115,116,111,114,97,103,101,61,116,44,116,104,105,115,46,99,108,105,101,110,116,73,100,61,101,44,116,104,105,115,46,115,116,111,114,97,103,101,75,101,121,61,96,97,48,46,115,112,97,106,115,46,116,120,115,46,36,123,116,104,105,115,46,99,108,105,101,110,116,73,100,125,96,44,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,61,116,104,105,115,46,115,116,111,114,97,103,101,46,103,101,116,40,116,104,105,115,46,115,116,111,114,97,103,101,75,101,121,41,125,99,114,101,97,116,101,40,116,41,123,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,61,116,44,116,104,105,115,46,115,116,111,114,97,103,101,46,115,97,118,101,40,116,104,105,115,46,115,116,111,114,97,103,101,75,101,121,44,116,44,123,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,58,49,125,41,125,103,101,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,125,114,101,109,111,118,101,40,41,123,100,101,108,101,116,101,32,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,44,116,104,105,115,46,115,116,111,114,97,103,101,46,114,101,109,111,118,101,40,116,104,105,115,46,115,116,111,114,97,103,101,75,101,121,41,125,125,99,111,110,115,116,32,36,61,116,61,62,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,44,70,61,91,34,105,115,115,34,44,34,97,117,100,34,44,34,101,120,112,34,44,34,110,98,102,34,44,34,105,97,116,34,44,34,106,116,105,34,44,34,97,122,112,34,44,34,110,111,110,99,101,34,44,34,97,117,116,104,95,116,105,109,101,34,44,34,97,116,95,104,97,115,104,34,44,34,99,95,104,97,115,104,34,44,34,97,99,114,34,44,34,97,109,114,34,44,34,115,117,98,95,106,119,107,34,44,34,99,110,102,34,44,34,115,105,112,95,102,114,111,109,95,116,97,103,34,44,34,115,105,112,95,100,97,116,101,34,44,34,115,105,112,95,99,97,108,108,105,100,34,44,34,115,105,112,95,99,115,101,113,95,110,117,109,34,44,34,115,105,112,95,118,105,97,95,98,114,97,110,99,104,34,44,34,111,114,105,103,34,44,34,100,101,115,116,34,44,34,109,107,121,34,44,34,101,118,101,110,116,115,34,44,34,116,111,101,34,44,34,116,120,110,34,44,34,114,112,104,34,44,34,115,105,100,34,44,34,118,111,116,34,44,34,118,116,109,34,93,44,82,61,116,61,62,123,105,102,40,33,116,46,105,100,95,116,111,107,101,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,73,68,32,116,111,107,101,110,32,105,115,32,114,101,113,117,105,114,101,100,32,98,117,116,32,109,105,115,115,105,110,103,34,41,59,99,111,110,115,116,32,101,61,40,116,61,62,123,99,111,110,115,116,32,101,61,116,46,115,112,108,105,116,40,34,46,34,41,44,91,110,44,114,44,105,93,61,101,59,105,102,40,51,33,61,61,101,46,108,101,110,103,116,104,124,124,33,110,124,124,33,114,124,124,33,105,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,73,68,32,116,111,107,101,110,32,99,111,117,108,100,32,110,111,116,32,98,101,32,100,101,99,111,100,101,100,34,41,59,99,111,110,115,116,32,111,61,74,83,79,78,46,112,97,114,115,101,40,83,40,114,41,41,44,97,61,123,95,95,114,97,119,58,116,125,44,115,61,123,125,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,111,41,46,102,111,114,69,97,99,104,40,40,116,61,62,123,97,91,116,93,61,111,91,116,93,44,70,46,105,110,99,108,117,100,101,115,40,116,41,124,124,40,115,91,116,93,61,111,91,116,93,41,125,41,41,44,123,101,110,99,111,100,101,100,58,123,104,101,97,100,101,114,58,110,44,112,97,121,108,111,97,100,58,114,44,115,105,103,110,97,116,117,114,101,58,105,125,44,104,101,97,100,101,114,58,74,83,79,78,46,112,97,114,115,101,40,83,40,110,41,41,44,99,108,97,105,109,115,58,97,44,117,115,101,114,58,115,125,125,41,40,116,46,105,100,95,116,111,107,101,110,41,59,105,102,40,33,101,46,99,108,97,105,109,115,46,105,115,115,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,73,115,115,117,101,114,32,40,105,115,115,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,34,41,59,105,102,40,101,46,99,108,97,105,109,115,46,105,115,115,33,61,61,116,46,105,115,115,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,73,115,115,117,101,114,32,40,105,115,115,41,32,99,108,97,105,109,32,109,105,115,109,97,116,99,104,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,59,32,101,120,112,101,99,116,101,100,32,34,36,123,116,46,105,115,115,125,34,44,32,102,111,117,110,100,32,34,36,123,101,46,99,108,97,105,109,115,46,105,115,115,125,34,96,41,59,105,102,40,33,101,46,117,115,101,114,46,115,117,98,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,83,117,98,106,101,99,116,32,40,115,117,98,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,34,41,59,105,102,40,34,82,83,50,53,54,34,33,61,61,101,46,104,101,97,100,101,114,46,97,108,103,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,83,105,103,110,97,116,117,114,101,32,97,108,103,111,114,105,116,104,109,32,111,102,32,34,36,123,101,46,104,101,97,100,101,114,46,97,108,103,125,34,32,105,115,32,110,111,116,32,115,117,112,112,111,114,116,101,100,46,32,69,120,112,101,99,116,101,100,32,116,104,101,32,73,68,32,116,111,107,101,110,32,116,111,32,98,101,32,115,105,103,110,101,100,32,119,105,116,104,32,34,82,83,50,53,54,34,46,96,41,59,105,102,40,33,101,46,99,108,97,105,109,115,46,97,117,100,124,124,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,46,99,108,97,105,109,115,46,97,117,100,38,38,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,46,99,108,97,105,109,115,46,97,117,100,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,65,117,100,105,101,110,99,101,32,40,97,117,100,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,111,114,32,97,114,114,97,121,32,111,102,32,115,116,114,105,110,103,115,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,34,41,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,46,99,108,97,105,109,115,46,97,117,100,41,41,123,105,102,40,33,101,46,99,108,97,105,109,115,46,97,117,100,46,105,110,99,108,117,100,101,115,40,116,46,97,117,100,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,65,117,100,105,101,110,99,101,32,40,97,117,100,41,32,99,108,97,105,109,32,109,105,115,109,97,116,99,104,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,59,32,101,120,112,101,99,116,101,100,32,34,36,123,116,46,97,117,100,125,34,32,98,117,116,32,119,97,115,32,110,111,116,32,111,110,101,32,111,102,32,34,36,123,101,46,99,108,97,105,109,115,46,97,117,100,46,106,111,105,110,40,34,44,32,34,41,125,34,96,41,59,105,102,40,101,46,99,108,97,105,109,115,46,97,117,100,46,108,101,110,103,116,104,62,49,41,123,105,102,40,33,101,46,99,108,97,105,109,115,46,97,122,112,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,65,117,116,104,111,114,105,122,101,100,32,80,97,114,116,121,32,40,97,122,112,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,32,119,104,101,110,32,65,117,100,105,101,110,99,101,32,40,97,117,100,41,32,99,108,97,105,109,32,104,97,115,32,109,117,108,116,105,112,108,101,32,118,97,108,117,101,115,34,41,59,105,102,40,101,46,99,108,97,105,109,115,46,97,122,112,33,61,61,116,46,97,117,100,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,65,117,116,104,111,114,105,122,101,100,32,80,97,114,116,121,32,40,97,122,112,41,32,99,108,97,105,109,32,109,105,115,109,97,116,99,104,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,59,32,101,120,112,101,99,116,101,100,32,34,36,123,116,46,97,117,100,125,34,44,32,102,111,117,110,100,32,34,36,123,101,46,99,108,97,105,109,115,46,97,122,112,125,34,96,41,125,125,101,108,115,101,32,105,102,40,101,46,99,108,97,105,109,115,46,97,117,100,33,61,61,116,46,97,117,100,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,65,117,100,105,101,110,99,101,32,40,97,117,100,41,32,99,108,97,105,109,32,109,105,115,109,97,116,99,104,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,59,32,101,120,112,101,99,116,101,100,32,34,36,123,116,46,97,117,100,125,34,32,98,117,116,32,102,111,117,110,100,32,34,36,123,101,46,99,108,97,105,109,115,46,97,117,100,125,34,96,41,59,105,102,40,116,46,110,111,110,99,101,41,123,105,102,40,33,101,46,99,108,97,105,109,115,46,110,111,110,99,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,78,111,110,99,101,32,40,110,111,110,99,101,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,34,41,59,105,102,40,101,46,99,108,97,105,109,115,46,110,111,110,99,101,33,61,61,116,46,110,111,110,99,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,78,111,110,99,101,32,40,110,111,110,99,101,41,32,99,108,97,105,109,32,109,105,115,109,97,116,99,104,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,59,32,101,120,112,101,99,116,101,100,32,34,36,123,116,46,110,111,110,99,101,125,34,44,32,102,111,117,110,100,32,34,36,123,101,46,99,108,97,105,109,115,46,110,111,110,99,101,125,34,96,41,125,105,102,40,116,46,109,97,120,95,97,103,101,38,38,33,36,40,101,46,99,108,97,105,109,115,46,97,117,116,104,95,116,105,109,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,65,117,116,104,101,110,116,105,99,97,116,105,111,110,32,84,105,109,101,32,40,97,117,116,104,95,116,105,109,101,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,110,117,109,98,101,114,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,32,119,104,101,110,32,77,97,120,32,65,103,101,32,40,109,97,120,95,97,103,101,41,32,105,115,32,115,112,101,99,105,102,105,101,100,34,41,59,105,102,40,110,117,108,108,61,61,101,46,99,108,97,105,109,115,46,101,120,112,124,124,33,36,40,101,46,99,108,97,105,109,115,46,101,120,112,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,69,120,112,105,114,97,116,105,111,110,32,84,105,109,101,32,40,101,120,112,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,110,117,109,98,101,114,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,34,41,59,105,102,40,33,36,40,101,46,99,108,97,105,109,115,46,105,97,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,73,115,115,117,101,100,32,65,116,32,40,105,97,116,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,110,117,109,98,101,114,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,34,41,59,99,111,110,115,116,32,110,61,116,46,108,101,101,119,97,121,124,124,54,48,44,114,61,110,101,119,32,68,97,116,101,40,116,46,110,111,119,124,124,68,97,116,101,46,110,111,119,40,41,41,44,105,61,110,101,119,32,68,97,116,101,40,48,41,59,105,102,40,105,46,115,101,116,85,84,67,83,101,99,111,110,100,115,40,101,46,99,108,97,105,109,115,46,101,120,112,43,110,41,44,114,62,105,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,69,120,112,105,114,97,116,105,111,110,32,84,105,109,101,32,40,101,120,112,41,32,99,108,97,105,109,32,101,114,114,111,114,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,59,32,99,117,114,114,101,110,116,32,116,105,109,101,32,40,36,123,114,125,41,32,105,115,32,97,102,116,101,114,32,101,120,112,105,114,97,116,105,111,110,32,116,105,109,101,32,40,36,123,105,125,41,96,41,59,105,102,40,110,117,108,108,33,61,101,46,99,108,97,105,109,115,46,110,98,102,38,38,36,40,101,46,99,108,97,105,109,115,46,110,98,102,41,41,123,99,111,110,115,116,32,116,61,110,101,119,32,68,97,116,101,40,48,41,59,105,102,40,116,46,115,101,116,85,84,67,83,101,99,111,110,100,115,40,101,46,99,108,97,105,109,115,46,110,98,102,45,110,41,44,114,60,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,78,111,116,32,66,101,102,111,114,101,32,116,105,109,101,32,40,110,98,102,41,32,99,108,97,105,109,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,32,105,110,100,105,99,97,116,101,115,32,116,104,97,116,32,116,104,105,115,32,116,111,107,101,110,32,99,97,110,39,116,32,98,101,32,117,115,101,100,32,106,117,115,116,32,121,101,116,46,32,67,117,114,114,101,110,116,32,116,105,109,101,32,40,36,123,114,125,41,32,105,115,32,98,101,102,111,114,101,32,36,123,116,125,96,41,125,105,102,40,110,117,108,108,33,61,101,46,99,108,97,105,109,115,46,97,117,116,104,95,116,105,109,101,38,38,36,40,101,46,99,108,97,105,109,115,46,97,117,116,104,95,116,105,109,101,41,41,123,99,111,110,115,116,32,105,61,110,101,119,32,68,97,116,101,40,48,41,59,105,102,40,105,46,115,101,116,85,84,67,83,101,99,111,110,100,115,40,112,97,114,115,101,73,110,116,40,101,46,99,108,97,105,109,115,46,97,117,116,104,95,116,105,109,101,41,43,116,46,109,97,120,95,97,103,101,43,110,41,44,114,62,105,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,65,117,116,104,101,110,116,105,99,97,116,105,111,110,32,84,105,109,101,32,40,97,117,116,104,95,116,105,109,101,41,32,99,108,97,105,109,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,32,105,110,100,105,99,97,116,101,115,32,116,104,97,116,32,116,111,111,32,109,117,99,104,32,116,105,109,101,32,104,97,115,32,112,97,115,115,101,100,32,115,105,110,99,101,32,116,104,101,32,108,97,115,116,32,101,110,100,45,117,115,101,114,32,97,117,116,104,101,110,116,105,99,97,116,105,111,110,46,32,67,117,114,114,101,110,116,32,116,105,109,101,32,40,36,123,114,125,41,32,105,115,32,97,102,116,101,114,32,108,97,115,116,32,97,117,116,104,32,97,116,32,36,123,105,125,96,41,125,105,102,40,116,46,111,114,103,97,110,105,122,97,116,105,111,110,73,100,41,123,105,102,40,33,101,46,99,108,97,105,109,115,46,111,114,103,95,105,100,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,79,114,103,97,110,105,122,97,116,105,111,110,32,73,68,32,40,111,114,103,95,105,100,41,32,99,108,97,105,109,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,112,114,101,115,101,110,116,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,34,41,59,105,102,40,116,46,111,114,103,97,110,105,122,97,116,105,111,110,73,100,33,61,61,101,46,99,108,97,105,109,115,46,111,114,103,95,105,100,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,79,114,103,97,110,105,122,97,116,105,111,110,32,73,68,32,40,111,114,103,95,105,100,41,32,99,108,97,105,109,32,109,105,115,109,97,116,99,104,32,105,110,32,116,104,101,32,73,68,32,116,111,107,101,110,59,32,101,120,112,101,99,116,101,100,32,34,36,123,116,46,111,114,103,97,110,105,122,97,116,105,111,110,73,100,125,34,44,32,102,111,117,110,100,32,34,36,123,101,46,99,108,97,105,109,115,46,111,114,103,95,105,100,125,34,96,41,125,114,101,116,117,114,110,32,101,125,59,118,97,114,32,78,61,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,105,38,38,105,46,95,95,97,115,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,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,44,110,61,49,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,102,111,114,40,118,97,114,32,105,32,105,110,32,101,61,97,114,103,117,109,101,110,116,115,91,110,93,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,101,44,105,41,38,38,40,116,91,105,93,61,101,91,105,93,41,59,114,101,116,117,114,110,32,116,125,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,59,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,105,102,40,33,101,41,114,101,116,117,114,110,34,34,59,118,97,114,32,110,61,34,59,32,34,43,116,59,114,101,116,117,114,110,33,48,61,61,61,101,63,110,58,110,43,34,61,34,43,101,125,102,117,110,99,116,105,111,110,32,111,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,116,41,46,114,101,112,108,97,99,101,40,47,37,40,50,51,124,50,52,124,50,54,124,50,66,124,53,69,124,54,48,124,55,67,41,47,103,44,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,41,46,114,101,112,108,97,99,101,40,47,92,40,47,103,44,34,37,50,56,34,41,46,114,101,112,108,97,99,101,40,47,92,41,47,103,44,34,37,50,57,34,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,101,41,46,114,101,112,108,97,99,101,40,47,37,40,50,51,124,50,52,124,50,54,124,50,66,124,51,65,124,51,67,124,51,69,124,51,68,124,50,70,124,51,70,124,52,48,124,53,66,124,53,68,124,53,69,124,54,48,124,55,66,124,55,68,124,55,67,41,47,103,44,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,41,43,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,46,101,120,112,105,114,101,115,41,123,118,97,114,32,101,61,110,101,119,32,68,97,116,101,59,101,46,115,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,101,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,43,56,54,52,101,53,42,116,46,101,120,112,105,114,101,115,41,44,116,46,101,120,112,105,114,101,115,61,101,125,114,101,116,117,114,110,32,114,40,34,69,120,112,105,114,101,115,34,44,116,46,101,120,112,105,114,101,115,63,116,46,101,120,112,105,114,101,115,46,116,111,85,84,67,83,116,114,105,110,103,40,41,58,34,34,41,43,114,40,34,68,111,109,97,105,110,34,44,116,46,100,111,109,97,105,110,41,43,114,40,34,80,97,116,104,34,44,116,46,112,97,116,104,41,43,114,40,34,83,101,99,117,114,101,34,44,116,46,115,101,99,117,114,101,41,43,114,40,34,83,97,109,101,83,105,116,101,34,44,116,46,115,97,109,101,83,105,116,101,41,125,40,110,41,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,102,111,114,40,118,97,114,32,101,61,123,125,44,110,61,116,63,116,46,115,112,108,105,116,40,34,59,32,34,41,58,91,93,44,114,61,47,40,37,91,92,100,65,45,70,93,123,50,125,41,43,47,103,105,44,105,61,48,59,105,60,110,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,111,61,110,91,105,93,46,115,112,108,105,116,40,34,61,34,41,44,97,61,111,46,115,108,105,99,101,40,49,41,46,106,111,105,110,40,34,61,34,41,59,39,34,39,61,61,61,97,46,99,104,97,114,65,116,40,48,41,38,38,40,97,61,97,46,115,108,105,99,101,40,49,44,45,49,41,41,59,116,114,121,123,101,91,111,91,48,93,46,114,101,112,108,97,99,101,40,114,44,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,41,93,61,97,46,114,101,112,108,97,99,101,40,114,44,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,41,125,99,97,116,99,104,40,116,41,123,125,125,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,115,40,41,123,114,101,116,117,114,110,32,97,40,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,41,125,102,117,110,99,116,105,111,110,32,99,40,116,44,101,44,114,41,123,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,61,111,40,116,44,101,44,110,40,123,112,97,116,104,58,34,47,34,125,44,114,41,41,125,101,46,95,95,101,115,77,111,100,117,108,101,61,33,48,44,101,46,101,110,99,111,100,101,61,111,44,101,46,112,97,114,115,101,61,97,44,101,46,103,101,116,65,108,108,61,115,44,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,115,40,41,91,116,93,125,44,101,46,115,101,116,61,99,44,101,46,114,101,109,111,118,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,99,40,116,44,34,34,44,110,40,110,40,123,125,44,101,41,44,123,101,120,112,105,114,101,115,58,45,49,125,41,41,125,125,41,41,59,111,40,78,41,44,78,46,101,110,99,111,100,101,44,78,46,112,97,114,115,101,44,78,46,103,101,116,65,108,108,59,118,97,114,32,66,61,78,46,103,101,116,44,122,61,78,46,115,101,116,44,86,61,78,46,114,101,109,111,118,101,59,99,111,110,115,116,32,72,61,123,103,101,116,40,116,41,123,99,111,110,115,116,32,101,61,66,40,116,41,59,105,102,40,118,111,105,100,32,48,33,61,61,101,41,114,101,116,117,114,110,32,74,83,79,78,46,112,97,114,115,101,40,101,41,125,44,115,97,118,101,40,116,44,101,44,110,41,123,108,101,116,32,114,61,123,125,59,34,104,116,116,112,115,58,34,61,61,61,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,112,114,111,116,111,99,111,108,38,38,40,114,61,123,115,101,99,117,114,101,58,33,48,44,115,97,109,101,83,105,116,101,58,34,110,111,110,101,34,125,41,44,40,110,117,108,108,61,61,110,63,118,111,105,100,32,48,58,110,46,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,41,38,38,40,114,46,101,120,112,105,114,101,115,61,110,46,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,41,44,40,110,117,108,108,61,61,110,63,118,111,105,100,32,48,58,110,46,99,111,111,107,105,101,68,111,109,97,105,110,41,38,38,40,114,46,100,111,109,97,105,110,61,110,46,99,111,111,107,105,101,68,111,109,97,105,110,41,44,122,40,116,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,101,41,44,114,41,125,44,114,101,109,111,118,101,40,116,44,101,41,123,108,101,116,32,110,61,123,125,59,40,110,117,108,108,61,61,101,63,118,111,105,100,32,48,58,101,46,99,111,111,107,105,101,68,111,109,97,105,110,41,38,38,40,110,46,100,111,109,97,105,110,61,101,46,99,111,111,107,105,101,68,111,109,97,105,110,41,44,86,40,116,44,110,41,125,125,44,85,61,123,103,101,116,40,116,41,123,99,111,110,115,116,32,101,61,72,46,103,101,116,40,116,41,59,114,101,116,117,114,110,32,101,124,124,72,46,103,101,116,40,96,95,108,101,103,97,99,121,95,36,123,116,125,96,41,125,44,115,97,118,101,40,116,44,101,44,110,41,123,108,101,116,32,114,61,123,125,59,34,104,116,116,112,115,58,34,61,61,61,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,112,114,111,116,111,99,111,108,38,38,40,114,61,123,115,101,99,117,114,101,58,33,48,125,41,44,40,110,117,108,108,61,61,110,63,118,111,105,100,32,48,58,110,46,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,41,38,38,40,114,46,101,120,112,105,114,101,115,61,110,46,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,41,44,122,40,96,95,108,101,103,97,99,121,95,36,123,116,125,96,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,101,41,44,114,41,44,72,46,115,97,118,101,40,116,44,101,44,110,41,125,44,114,101,109,111,118,101,40,116,44,101,41,123,108,101,116,32,110,61,123,125,59,40,110,117,108,108,61,61,101,63,118,111,105,100,32,48,58,101,46,99,111,111,107,105,101,68,111,109,97,105,110,41,38,38,40,110,46,100,111,109,97,105,110,61,101,46,99,111,111,107,105,101,68,111,109,97,105,110,41,44,86,40,116,44,110,41,44,72,46,114,101,109,111,118,101,40,116,44,101,41,44,72,46,114,101,109,111,118,101,40,96,95,108,101,103,97,99,121,95,36,123,116,125,96,44,101,41,125,125,44,87,61,123,103,101,116,40,116,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,115,101,115,115,105,111,110,83,116,111,114,97,103,101,41,114,101,116,117,114,110,59,99,111,110,115,116,32,101,61,115,101,115,115,105,111,110,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,33,61,101,63,74,83,79,78,46,112,97,114,115,101,40,101,41,58,118,111,105,100,32,48,125,44,115,97,118,101,40,116,44,101,41,123,115,101,115,115,105,111,110,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,116,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,101,41,41,125,44,114,101,109,111,118,101,40,116,41,123,115,101,115,115,105,111,110,83,116,111,114,97,103,101,46,114,101,109,111,118,101,73,116,101,109,40,116,41,125,125,59,102,117,110,99,116,105,111,110,32,71,40,116,44,101,44,110,41,123,118,97,114,32,114,61,118,111,105,100,32,48,61,61,61,101,63,110,117,108,108,58,101,44,105,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,97,116,111,98,40,116,41,59,105,102,40,101,41,123,102,111,114,40,118,97,114,32,114,61,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,110,46,108,101,110,103,116,104,41,44,105,61,48,44,111,61,110,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,114,91,105,93,61,110,46,99,104,97,114,67,111,100,101,65,116,40,105,41,59,114,101,116,117,114,110,32,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,46,97,112,112,108,121,40,110,117,108,108,44,110,101,119,32,85,105,110,116,49,54,65,114,114,97,121,40,114,46,98,117,102,102,101,114,41,41,125,114,101,116,117,114,110,32,110,125,40,116,44,118,111,105,100,32,48,33,61,61,110,38,38,110,41,44,111,61,105,46,105,110,100,101,120,79,102,40,34,92,110,34,44,49,48,41,43,49,44,97,61,105,46,115,117,98,115,116,114,105,110,103,40,111,41,43,40,114,63,34,47,47,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,34,43,114,58,34,34,41,44,115,61,110,101,119,32,66,108,111,98,40,91,97,93,44,123,116,121,112,101,58,34,97,112,112,108,105,99,97,116,105,111,110,47,106,97,118,97,115,99,114,105,112,116,34,125,41,59,114,101,116,117,114,110,32,85,82,76,46,99,114,101,97,116,101,79,98,106,101,99,116,85,82,76,40,115,41,125,118,97,114,32,113,44,89,44,75,44,88,44,90,61,40,113,61,34,76,121,111,103,99,109,57,115,98,72,86,119,76,88,66,115,100,87,100,112,98,105,49,51,90,87,73,116,100,50,57,121,97,50,86,121,76,87,120,118,89,87,82,108,99,105,65,113,76,119,111,104,90,110,86,117,89,51,82,112,98,50,52,111,75,88,115,105,100,88,78,108,73,72,78,48,99,109,108,106,100,67,73,55,89,50,120,104,99,51,77,103,90,83,66,108,101,72,82,108,98,109,82,122,73,69,86,121,99,109,57,121,101,50,78,118,98,110,78,48,99,110,86,106,100,71,57,121,75,72,81,115,99,105,108,55,99,51,86,119,90,88,73,111,99,105,107,115,100,71,104,112,99,121,53,108,99,110,74,118,99,106,49,48,76,72,82,111,97,88,77,117,90,88,74,121,98,51,74,102,90,71,86,122,89,51,74,112,99,72,82,112,98,50,52,57,99,105,120,80,89,109,112,108,89,51,81,117,99,50,86,48,85,72,74,118,100,71,57,48,101,88,66,108,84,50,89,111,100,71,104,112,99,121,120,108,76,110,66,121,98,51,82,118,100,72,108,119,90,83,108,57,99,51,82,104,100,71,108,106,73,71,90,121,98,50,49,81,89,88,108,115,98,50,70,107,75,72,116,108,99,110,74,118,99,106,112,48,76,71,86,121,99,109,57,121,88,50,82,108,99,50,78,121,97,88,66,48,97,87,57,117,79,110,74,57,75,88,116,121,90,88,82,49,99,109,52,103,98,109,86,51,73,71,85,111,100,67,120,121,75,88,49,57,89,50,120,104,99,51,77,103,100,67,66,108,101,72,82,108,98,109,82,122,73,71,86,55,89,50,57,117,99,51,82,121,100,87,78,48,98,51,73,111,90,83,120,122,75,88,116,122,100,88,66,108,99,105,103,105,98,87,108,122,99,50,108,117,90,49,57,121,90,87,90,121,90,88,78,111,88,51,82,118,97,50,86,117,73,105,120,103,84,87,108,122,99,50,108,117,90,121,66,83,90,87,90,121,90,88,78,111,73,70,82,118,97,50,86,117,73,67,104,104,100,87,82,112,90,87,53,106,90,84,111,103,74,121,82,55,99,105,104,108,76,70,115,105,90,71,86,109,89,88,86,115,100,67,74,100,75,88,48,110,76,67,66,122,89,50,57,119,90,84,111,103,74,121,82,55,99,105,104,122,75,88,48,110,75,87,65,112,76,72,82,111,97,88,77,117,89,88,86,107,97,87,86,117,89,50,85,57,90,83,120,48,97,71,108,122,76,110,78,106,98,51,66,108,80,88,77,115,84,50,74,113,90,87,78,48,76,110,78,108,100,70,66,121,98,51,82,118,100,72,108,119,90,85,57,109,75,72,82,111,97,88,77,115,100,67,53,119,99,109,57,48,98,51,82,53,99,71,85,112,102,88,49,109,100,87,53,106,100,71,108,118,98,105,66,121,75,71,85,115,100,68,49,98,88,83,108,55,99,109,86,48,100,88,74,117,73,71,85,109,74,105,70,48,76,109,108,117,89,50,120,49,90,71,86,122,75,71,85,112,80,50,85,54,73,105,74,57,89,50,57,117,99,51,81,103,99,122,49,108,80,84,53,55,100,109,70,121,101,50,78,115,97,87,86,117,100,69,108,107,79,110,82,57,80,87,85,115,99,106,49,109,100,87,53,106,100,71,108,118,98,105,104,108,76,72,81,112,101,51,90,104,99,105,66,121,80,88,116,57,79,50,90,118,99,105,104,50,89,88,73,103,99,121,66,112,98,105,66,108,75,85,57,105,97,109,86,106,100,67,53,119,99,109,57,48,98,51,82,53,99,71,85,117,97,71,70,122,84,51,100,117,85,72,74,118,99,71,86,121,100,72,107,117,89,50,70,115,98,67,104,108,76,72,77,112,74,105,90,48,76,109,108,117,90,71,86,52,84,50,89,111,99,121,107,56,77,67,89,109,75,72,74,98,99,49,48,57,90,86,116,122,88,83,107,55,97,87,89,111,98,110,86,115,98,67,69,57,90,83,89,109,73,109,90,49,98,109,78,48,97,87,57,117,73,106,48,57,100,72,108,119,90,87,57,109,73,69,57,105,97,109,86,106,100,67,53,110,90,88,82,80,100,50,53,81,99,109,57,119,90,88,74,48,101,86,78,53,98,87,74,118,98,72,77,112,101,51,90,104,99,105,66,118,80,84,65,55,90,109,57,121,75,72,77,57,84,50,74,113,90,87,78,48,76,109,100,108,100,69,57,51,98,108,66,121,98,51,66,108,99,110,82,53,85,51,108,116,89,109,57,115,99,121,104,108,75,84,116,118,80,72,77,117,98,71,86,117,90,51,82,111,79,50,56,114,75,121,108,48,76,109,108,117,90,71,86,52,84,50,89,111,99,49,116,118,88,83,107,56,77,67,89,109,84,50,74,113,90,87,78,48,76,110,66,121,98,51,82,118,100,72,108,119,90,83,53,119,99,109,57,119,90,88,74,48,101,85,108,122,82,87,53,49,98,87,86,121,89,87,74,115,90,83,53,106,89,87,120,115,75,71,85,115,99,49,116,118,88,83,107,109,74,105,104,121,87,51,78,98,98,49,49,100,80,87,86,98,99,49,116,118,88,86,48,112,102,88,74,108,100,72,86,121,98,105,66,121,102,83,104,108,76,70,115,105,89,50,120,112,90,87,53,48,83,87,81,105,88,83,107,55,99,109,86,48,100,88,74,117,73,71,53,108,100,121,66,86,85,107,120,84,90,87,70,121,89,50,104,81,89,88,74,104,98,88,77,111,75,71,85,57,80,107,57,105,97,109,86,106,100,67,53,114,90,88,108,122,75,71,85,112,76,109,90,112,98,72,82,108,99,105,103,111,100,68,48,43,100,109,57,112,90,67,65,119,73,84,48,57,90,86,116,48,88,83,107,112,76,110,74,108,90,72,86,106,90,83,103,111,75,72,81,115,99,105,107,57,80,107,57,105,97,109,86,106,100,67,53,104,99,51,78,112,90,50,52,111,84,50,74,113,90,87,78,48,76,109,70,122,99,50,108,110,98,105,104,55,102,83,120,48,75,83,120,55,87,51,74,100,79,109,86,98,99,108,49,57,75,83,107,115,101,51,48,112,75,83,104,80,89,109,112,108,89,51,81,117,89,88,78,122,97,87,100,117,75,72,116,106,98,71,108,108,98,110,82,102,97,87,81,54,100,72,48,115,99,105,107,112,75,83,53,48,98,49,78,48,99,109,108,117,90,121,103,112,102,84,116,115,90,88,81,103,98,122,49,55,102,84,116,106,98,50,53,122,100,67,66,117,80,83,104,108,76,72,81,112,80,84,53,103,74,72,116,108,102,88,119,107,101,51,82,57,89,68,116,104,90,71,82,70,100,109,86,117,100,69,120,112,99,51,82,108,98,109,86,121,75,67,74,116,90,88,78,122,89,87,100,108,73,105,119,111,89,88,78,53,98,109,77,111,101,50,82,104,100,71,69,54,101,51,82,112,98,87,86,118,100,88,81,54,90,83,120,104,100,88,82,111,79,110,73,115,90,109,86,48,89,50,104,86,99,109,119,54,97,83,120,109,90,88,82,106,97,69,57,119,100,71,108,118,98,110,77,54,89,121,120,49,99,50,86,71,98,51,74,116,82,71,70,48,89,84,112,104,102,83,120,119,98,51,74,48,99,122,112,98,90,108,49,57,75,84,48,43,101,50,120,108,100,67,66,119,79,50,78,118,98,110,78,48,101,50,70,49,90,71,108,108,98,109,78,108,79,109,119,115,99,50,78,118,99,71,85,54,100,88,48,57,99,110,120,56,101,51,48,55,100,72,74,53,101,50,78,118,98,110,78,48,73,72,73,57,89,84,56,111,90,84,48,43,101,50,78,118,98,110,78,48,73,72,81,57,98,109,86,51,73,70,86,83,84,70,78,108,89,88,74,106,97,70,66,104,99,109,70,116,99,121,104,108,75,83,120,121,80,88,116,57,79,51,74,108,100,72,86,121,98,105,66,48,76,109,90,118,99,107,86,104,89,50,103,111,75,67,104,108,76,72,81,112,80,84,53,55,99,108,116,48,88,84,49,108,102,83,107,112,76,72,74,57,75,83,104,106,76,109,74,118,90,72,107,112,79,107,112,84,84,48,52,117,99,71,70,121,99,50,85,111,89,121,53,105,98,50,82,53,75,84,116,112,90,105,103,104,99,105,53,121,90,87,90,121,90,88,78,111,88,51,82,118,97,50,86,117,74,105,89,105,99,109,86,109,99,109,86,122,97,70,57,48,98,50,116,108,98,105,73,57,80,84,49,121,76,109,100,121,89,87,53,48,88,51,82,53,99,71,85,112,101,50,78,118,98,110,78,48,73,71,85,57,75,67,104,108,76,72,81,112,80,84,53,118,87,50,52,111,90,83,120,48,75,86,48,112,75,71,119,115,100,83,107,55,97,87,89,111,73,87,85,112,100,71,104,121,98,51,99,103,98,109,86,51,73,72,81,111,98,67,120,49,75,84,116,106,76,109,74,118,90,72,107,57,89,84,57,122,75,69,57,105,97,109,86,106,100,67,53,104,99,51,78,112,90,50,52,111,84,50,74,113,90,87,78,48,76,109,70,122,99,50,108,110,98,105,104,55,102,83,120,121,75,83,120,55,99,109,86,109,99,109,86,122,97,70,57,48,98,50,116,108,98,106,112,108,102,83,107,112,79,107,112,84,84,48,52,117,99,51,82,121,97,87,53,110,97,87,90,53,75,69,57,105,97,109,86,106,100,67,53,104,99,51,78,112,90,50,52,111,84,50,74,113,90,87,78,48,76,109,70,122,99,50,108,110,98,105,104,55,102,83,120,121,75,83,120,55,99,109,86,109,99,109,86,122,97,70,57,48,98,50,116,108,98,106,112,108,102,83,107,112,102,87,120,108,100,67,66,107,76,71,99,55,73,109,90,49,98,109,78,48,97,87,57,117,73,106,48,57,100,72,108,119,90,87,57,109,73,69,70,105,98,51,74,48,81,50,57,117,100,72,74,118,98,71,120,108,99,105,89,109,75,71,81,57,98,109,86,51,73,69,70,105,98,51,74,48,81,50,57,117,100,72,74,118,98,71,120,108,99,105,120,106,76,110,78,112,90,50,53,104,98,68,49,107,76,110,78,112,90,50,53,104,98,67,107,55,100,72,74,53,101,50,99,57,89,88,100,104,97,88,81,103,85,72,74,118,98,87,108,122,90,83,53,121,89,87,78,108,75,70,115,111,97,68,49,108,76,71,53,108,100,121,66,81,99,109,57,116,97,88,78,108,75,67,104,108,80,84,53,122,90,88,82,85,97,87,49,108,98,51,86,48,75,71,85,115,97,67,107,112,75,83,107,115,90,109,86,48,89,50,103,111,97,83,120,80,89,109,112,108,89,51,81,117,89,88,78,122,97,87,100,117,75,72,116,57,76,71,77,112,75,86,48,112,102,87,78,104,100,71,78,111,75,71,85,112,101,51,74,108,100,72,86,121,98,105,66,50,98,50,108,107,73,71,89,117,99,71,57,122,100,69,49,108,99,51,78,104,90,50,85,111,101,50,86,121,99,109,57,121,79,109,85,117,98,87,86,122,99,50,70,110,90,88,48,112,102,87,108,109,75,67,70,110,75,88,74,108,100,72,86,121,98,105,66,107,74,105,90,107,76,109,70,105,98,51,74,48,75,67,107,115,100,109,57,112,90,67,66,109,76,110,66,118,99,51,82,78,90,88,78,122,89,87,100,108,75,72,116,108,99,110,74,118,99,106,111,105,86,71,108,116,90,87,57,49,100,67,66,51,97,71,86,117,73,71,86,52,90,87,78,49,100,71,108,117,90,121,65,110,90,109,86,48,89,50,103,110,73,110,48,112,79,51,65,57,89,88,100,104,97,88,81,103,90,121,53,113,99,50,57,117,75,67,107,115,99,67,53,121,90,87,90,121,90,88,78,111,88,51,82,118,97,50,86,117,80,121,103,111,75,71,85,115,100,67,120,121,75,84,48,43,101,50,57,98,98,105,104,48,76,72,73,112,88,84,49,108,102,83,107,111,99,67,53,121,90,87,90,121,90,88,78,111,88,51,82,118,97,50,86,117,76,71,119,115,100,83,107,115,90,71,86,115,90,88,82,108,73,72,65,117,99,109,86,109,99,109,86,122,97,70,57,48,98,50,116,108,98,105,107,54,75,67,104,108,76,72,81,112,80,84,53,55,90,71,86,115,90,88,82,108,73,71,57,98,98,105,104,108,76,72,81,112,88,88,48,112,75,71,119,115,100,83,107,115,90,105,53,119,98,51,78,48,84,87,86,122,99,50,70,110,90,83,104,55,98,50,115,54,90,121,53,118,97,121,120,113,99,50,57,117,79,110,66,57,75,88,49,106,89,88,82,106,97,67,104,108,75,88,116,109,76,110,66,118,99,51,82,78,90,88,78,122,89,87,100,108,75,72,116,118,97,122,111,104,77,83,120,113,99,50,57,117,79,110,116,108,99,110,74,118,99,108,57,107,90,88,78,106,99,109,108,119,100,71,108,118,98,106,112,108,76,109,49,108,99,51,78,104,90,50,86,57,102,83,108,57,100,109,70,121,73,71,104,57,75,83,108,57,75,67,107,55,67,103,111,61,34,44,89,61,110,117,108,108,44,75,61,33,49,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,88,61,88,124,124,71,40,113,44,89,44,75,41,44,110,101,119,32,87,111,114,107,101,114,40,88,44,116,41,125,41,59,99,111,110,115,116,32,74,61,123,125,59,99,108,97,115,115,32,81,123,99,111,110,115,116,114,117,99,116,111,114,40,116,44,101,41,123,116,104,105,115,46,99,97,99,104,101,61,116,44,116,104,105,115,46,99,108,105,101,110,116,73,100,61,101,44,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,61,116,104,105,115,46,99,114,101,97,116,101,77,97,110,105,102,101,115,116,75,101,121,70,114,111,109,40,116,104,105,115,46,99,108,105,101,110,116,73,100,41,125,97,115,121,110,99,32,97,100,100,40,116,41,123,118,97,114,32,101,59,99,111,110,115,116,32,110,61,110,101,119,32,83,101,116,40,40,110,117,108,108,61,61,61,40,101,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,103,101,116,40,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,41,41,124,124,118,111,105,100,32,48,61,61,61,101,63,118,111,105,100,32,48,58,101,46,107,101,121,115,41,124,124,91,93,41,59,110,46,97,100,100,40,116,41,44,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,115,101,116,40,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,44,123,107,101,121,115,58,91,46,46,46,110,93,125,41,125,97,115,121,110,99,32,114,101,109,111,118,101,40,116,41,123,99,111,110,115,116,32,101,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,103,101,116,40,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,41,59,105,102,40,101,41,123,99,111,110,115,116,32,110,61,110,101,119,32,83,101,116,40,101,46,107,101,121,115,41,59,114,101,116,117,114,110,32,110,46,100,101,108,101,116,101,40,116,41,44,110,46,115,105,122,101,62,48,63,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,115,101,116,40,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,44,123,107,101,121,115,58,91,46,46,46,110,93,125,41,58,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,46,114,101,109,111,118,101,40,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,41,125,125,103,101,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,97,99,104,101,46,103,101,116,40,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,41,125,99,108,101,97,114,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,97,99,104,101,46,114,101,109,111,118,101,40,116,104,105,115,46,109,97,110,105,102,101,115,116,75,101,121,41,125,99,114,101,97,116,101,77,97,110,105,102,101,115,116,75,101,121,70,114,111,109,40,116,41,123,114,101,116,117,114,110,96,64,64,97,117,116,104,48,115,112,97,106,115,64,64,58,58,36,123,116,125,96,125,125,99,111,110,115,116,32,116,116,61,123,109,101,109,111,114,121,58,40,41,61,62,40,110,101,119,32,76,41,46,101,110,99,108,111,115,101,100,67,97,99,104,101,44,108,111,99,97,108,115,116,111,114,97,103,101,58,40,41,61,62,110,101,119,32,65,125,44,101,116,61,116,61,62,116,116,91,116,93,44,110,116,61,116,61,62,123,99,111,110,115,116,123,111,112,101,110,85,114,108,58,101,44,111,110,82,101,100,105,114,101,99,116,58,110,125,61,116,44,105,61,114,40,116,44,91,34,111,112,101,110,85,114,108,34,44,34,111,110,82,101,100,105,114,101,99,116,34,93,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,105,41,44,123,111,112,101,110,85,114,108,58,33,49,61,61,61,101,124,124,101,63,101,58,110,125,41,125,44,114,116,61,110,101,119,32,99,59,99,108,97,115,115,32,105,116,123,99,111,110,115,116,114,117,99,116,111,114,40,116,41,123,108,101,116,32,101,44,110,59,105,102,40,116,104,105,115,46,117,115,101,114,67,97,99,104,101,61,40,110,101,119,32,76,41,46,101,110,99,108,111,115,101,100,67,97,99,104,101,44,116,104,105,115,46,100,101,102,97,117,108,116,79,112,116,105,111,110,115,61,123,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,58,123,115,99,111,112,101,58,34,111,112,101,110,105,100,32,112,114,111,102,105,108,101,32,101,109,97,105,108,34,125,44,117,115,101,82,101,102,114,101,115,104,84,111,107,101,110,115,70,97,108,108,98,97,99,107,58,33,49,44,117,115,101,70,111,114,109,68,97,116,97,58,33,48,125,44,116,104,105,115,46,95,114,101,108,101,97,115,101,76,111,99,107,79,110,80,97,103,101,72,105,100,101,61,97,115,121,110,99,40,41,61,62,123,97,119,97,105,116,32,114,116,46,114,101,108,101,97,115,101,76,111,99,107,40,34,97,117,116,104,48,46,108,111,99,107,46,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,34,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,112,97,103,101,104,105,100,101,34,44,116,104,105,115,46,95,114,101,108,101,97,115,101,76,111,99,107,79,110,80,97,103,101,72,105,100,101,41,125,44,116,104,105,115,46,111,112,116,105,111,110,115,61,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,104,105,115,46,100,101,102,97,117,108,116,79,112,116,105,111,110,115,41,44,116,41,44,123,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,58,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,104,105,115,46,100,101,102,97,117,108,116,79,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,125,41,44,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,40,40,41,61,62,123,105,102,40,33,119,40,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,70,111,114,32,115,101,99,117,114,105,116,121,32,114,101,97,115,111,110,115,44,32,96,119,105,110,100,111,119,46,99,114,121,112,116,111,96,32,105,115,32,114,101,113,117,105,114,101,100,32,116,111,32,114,117,110,32,96,97,117,116,104,48,45,115,112,97,45,106,115,96,46,34,41,59,105,102,40,118,111,105,100,32,48,61,61,61,119,40,41,46,115,117,98,116,108,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,92,110,32,32,32,32,32,32,97,117,116,104,48,45,115,112,97,45,106,115,32,109,117,115,116,32,114,117,110,32,111,110,32,97,32,115,101,99,117,114,101,32,111,114,105,103,105,110,46,32,83,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,97,117,116,104,48,47,97,117,116,104,48,45,115,112,97,45,106,115,47,98,108,111,98,47,109,97,115,116,101,114,47,70,65,81,46,109,100,35,119,104,121,45,100,111,45,105,45,103,101,116,45,97,117,116,104,48,45,115,112,97,45,106,115,45,109,117,115,116,45,114,117,110,45,111,110,45,97,45,115,101,99,117,114,101,45,111,114,105,103,105,110,32,102,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,46,92,110,32,32,32,32,34,41,125,41,40,41,44,116,46,99,97,99,104,101,38,38,116,46,99,97,99,104,101,76,111,99,97,116,105,111,110,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,66,111,116,104,32,96,99,97,99,104,101,96,32,97,110,100,32,96,99,97,99,104,101,76,111,99,97,116,105,111,110,96,32,111,112,116,105,111,110,115,32,104,97,118,101,32,98,101,101,110,32,115,112,101,99,105,102,105,101,100,32,105,110,32,116,104,101,32,65,117,116,104,48,67,108,105,101,110,116,32,99,111,110,102,105,103,117,114,97,116,105,111,110,59,32,105,103,110,111,114,105,110,103,32,96,99,97,99,104,101,76,111,99,97,116,105,111,110,96,32,97,110,100,32,117,115,105,110,103,32,96,99,97,99,104,101,96,46,34,41,44,116,46,99,97,99,104,101,41,110,61,116,46,99,97,99,104,101,59,101,108,115,101,123,105,102,40,101,61,116,46,99,97,99,104,101,76,111,99,97,116,105,111,110,124,124,34,109,101,109,111,114,121,34,44,33,101,116,40,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,96,73,110,118,97,108,105,100,32,99,97,99,104,101,32,108,111,99,97,116,105,111,110,32,34,36,123,101,125,34,96,41,59,110,61,101,116,40,101,41,40,41,125,116,104,105,115,46,104,116,116,112,84,105,109,101,111,117,116,77,115,61,116,46,104,116,116,112,84,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,63,49,101,51,42,116,46,104,116,116,112,84,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,58,49,101,52,44,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,61,33,49,61,61,61,116,46,108,101,103,97,99,121,83,97,109,101,83,105,116,101,67,111,111,107,105,101,63,72,58,85,44,116,104,105,115,46,111,114,103,72,105,110,116,67,111,111,107,105,101,78,97,109,101,61,96,97,117,116,104,48,46,36,123,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,125,46,111,114,103,97,110,105,122,97,116,105,111,110,95,104,105,110,116,96,44,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,67,111,111,107,105,101,78,97,109,101,61,40,116,61,62,96,97,117,116,104,48,46,36,123,116,125,46,105,115,46,97,117,116,104,101,110,116,105,99,97,116,101,100,96,41,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,41,44,116,104,105,115,46,115,101,115,115,105,111,110,67,104,101,99,107,69,120,112,105,114,121,68,97,121,115,61,116,46,115,101,115,115,105,111,110,67,104,101,99,107,69,120,112,105,114,121,68,97,121,115,124,124,49,59,99,111,110,115,116,32,114,61,116,46,117,115,101,67,111,111,107,105,101,115,70,111,114,84,114,97,110,115,97,99,116,105,111,110,115,63,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,58,87,59,118,97,114,32,105,59,116,104,105,115,46,115,99,111,112,101,61,69,40,34,111,112,101,110,105,100,34,44,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,102,114,101,115,104,84,111,107,101,110,115,63,34,111,102,102,108,105,110,101,95,97,99,99,101,115,115,34,58,34,34,41,44,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,77,97,110,97,103,101,114,61,110,101,119,32,77,40,114,44,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,41,44,116,104,105,115,46,110,111,119,80,114,111,118,105,100,101,114,61,116,104,105,115,46,111,112,116,105,111,110,115,46,110,111,119,80,114,111,118,105,100,101,114,124,124,102,44,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,61,110,101,119,32,73,40,110,44,110,46,97,108,108,75,101,121,115,63,118,111,105,100,32,48,58,110,101,119,32,81,40,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,41,44,116,104,105,115,46,110,111,119,80,114,111,118,105,100,101,114,41,44,116,104,105,115,46,100,111,109,97,105,110,85,114,108,61,40,105,61,116,104,105,115,46,111,112,116,105,111,110,115,46,100,111,109,97,105,110,44,47,94,104,116,116,112,115,63,58,92,47,92,47,47,46,116,101,115,116,40,105,41,63,105,58,96,104,116,116,112,115,58,47,47,36,123,105,125,96,41,44,116,104,105,115,46,116,111,107,101,110,73,115,115,117,101,114,61,40,40,116,44,101,41,61,62,116,63,116,46,115,116,97,114,116,115,87,105,116,104,40,34,104,116,116,112,115,58,47,47,34,41,63,116,58,96,104,116,116,112,115,58,47,47,36,123,116,125,47,96,58,96,36,123,101,125,47,96,41,40,116,104,105,115,46,111,112,116,105,111,110,115,46,105,115,115,117,101,114,44,116,104,105,115,46,100,111,109,97,105,110,85,114,108,41,44,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,119,105,110,100,111,119,46,87,111,114,107,101,114,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,102,114,101,115,104,84,111,107,101,110,115,38,38,34,109,101,109,111,114,121,34,61,61,61,101,38,38,40,116,104,105,115,46,119,111,114,107,101,114,61,110,101,119,32,90,41,125,95,117,114,108,40,116,41,123,99,111,110,115,116,32,101,61,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,98,116,111,97,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,48,67,108,105,101,110,116,124,124,108,41,41,41,59,114,101,116,117,114,110,96,36,123,116,104,105,115,46,100,111,109,97,105,110,85,114,108,125,36,123,116,125,38,97,117,116,104,48,67,108,105,101,110,116,61,36,123,101,125,96,125,95,97,117,116,104,111,114,105,122,101,85,114,108,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,117,114,108,40,96,47,97,117,116,104,111,114,105,122,101,63,36,123,79,40,116,41,125,96,41,125,97,115,121,110,99,32,95,118,101,114,105,102,121,73,100,84,111,107,101,110,40,116,44,101,44,110,41,123,99,111,110,115,116,32,114,61,97,119,97,105,116,32,116,104,105,115,46,110,111,119,80,114,111,118,105,100,101,114,40,41,59,114,101,116,117,114,110,32,82,40,123,105,115,115,58,116,104,105,115,46,116,111,107,101,110,73,115,115,117,101,114,44,97,117,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,44,105,100,95,116,111,107,101,110,58,116,44,110,111,110,99,101,58,101,44,111,114,103,97,110,105,122,97,116,105,111,110,73,100,58,110,44,108,101,101,119,97,121,58,116,104,105,115,46,111,112,116,105,111,110,115,46,108,101,101,119,97,121,44,109,97,120,95,97,103,101,58,40,105,61,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,109,97,120,95,97,103,101,44,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,105,63,105,58,112,97,114,115,101,73,110,116,40,105,44,49,48,41,124,124,118,111,105,100,32,48,41,44,110,111,119,58,114,125,41,59,118,97,114,32,105,125,95,112,114,111,99,101,115,115,79,114,103,73,100,72,105,110,116,40,116,41,123,116,63,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,115,97,118,101,40,116,104,105,115,46,111,114,103,72,105,110,116,67,111,111,107,105,101,78,97,109,101,44,116,44,123,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,58,116,104,105,115,46,115,101,115,115,105,111,110,67,104,101,99,107,69,120,112,105,114,121,68,97,121,115,44,99,111,111,107,105,101,68,111,109,97,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,111,107,105,101,68,111,109,97,105,110,125,41,58,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,114,101,109,111,118,101,40,116,104,105,115,46,111,114,103,72,105,110,116,67,111,111,107,105,101,78,97,109,101,44,123,99,111,111,107,105,101,68,111,109,97,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,111,107,105,101,68,111,109,97,105,110,125,41,125,97,115,121,110,99,32,95,112,114,101,112,97,114,101,65,117,116,104,111,114,105,122,101,85,114,108,40,116,44,101,44,110,41,123,99,111,110,115,116,32,114,61,120,40,95,40,41,41,44,105,61,120,40,95,40,41,41,44,111,61,95,40,41,44,97,61,40,116,61,62,123,99,111,110,115,116,32,101,61,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,116,41,59,114,101,116,117,114,110,40,116,61,62,123,99,111,110,115,116,32,101,61,123,34,43,34,58,34,45,34,44,34,47,34,58,34,95,34,44,34,61,34,58,34,34,125,59,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,47,91,43,47,61,93,47,103,44,40,116,61,62,101,91,116,93,41,41,125,41,40,119,105,110,100,111,119,46,98,116,111,97,40,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,46,46,46,65,114,114,97,121,46,102,114,111,109,40,101,41,41,41,41,125,41,40,97,119,97,105,116,40,97,115,121,110,99,32,116,61,62,123,99,111,110,115,116,32,101,61,119,40,41,46,115,117,98,116,108,101,46,100,105,103,101,115,116,40,123,110,97,109,101,58,34,83,72,65,45,50,53,54,34,125,44,40,110,101,119,32,84,101,120,116,69,110,99,111,100,101,114,41,46,101,110,99,111,100,101,40,116,41,41,59,114,101,116,117,114,110,32,97,119,97,105,116,32,101,125,41,40,111,41,41,44,115,61,40,40,116,44,101,44,110,44,114,44,105,44,111,44,97,44,115,41,61,62,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,99,108,105,101,110,116,95,105,100,58,116,46,99,108,105,101,110,116,73,100,125,44,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,110,41,44,123,115,99,111,112,101,58,69,40,101,44,110,46,115,99,111,112,101,41,44,114,101,115,112,111,110,115,101,95,116,121,112,101,58,34,99,111,100,101,34,44,114,101,115,112,111,110,115,101,95,109,111,100,101,58,115,124,124,34,113,117,101,114,121,34,44,115,116,97,116,101,58,114,44,110,111,110,99,101,58,105,44,114,101,100,105,114,101,99,116,95,117,114,105,58,97,124,124,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,114,101,100,105,114,101,99,116,95,117,114,105,44,99,111,100,101,95,99,104,97,108,108,101,110,103,101,58,111,44,99,111,100,101,95,99,104,97,108,108,101,110,103,101,95,109,101,116,104,111,100,58,34,83,50,53,54,34,125,41,41,40,116,104,105,115,46,111,112,116,105,111,110,115,44,116,104,105,115,46,115,99,111,112,101,44,116,44,114,44,105,44,97,44,116,46,114,101,100,105,114,101,99,116,95,117,114,105,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,114,101,100,105,114,101,99,116,95,117,114,105,124,124,110,44,110,117,108,108,61,61,101,63,118,111,105,100,32,48,58,101,46,114,101,115,112,111,110,115,101,95,109,111,100,101,41,44,99,61,116,104,105,115,46,95,97,117,116,104,111,114,105,122,101,85,114,108,40,115,41,59,114,101,116,117,114,110,123,110,111,110,99,101,58,105,44,99,111,100,101,95,118,101,114,105,102,105,101,114,58,111,44,115,99,111,112,101,58,115,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,115,46,97,117,100,105,101,110,99,101,124,124,34,100,101,102,97,117,108,116,34,44,114,101,100,105,114,101,99,116,95,117,114,105,58,115,46,114,101,100,105,114,101,99,116,95,117,114,105,44,115,116,97,116,101,58,114,44,117,114,108,58,99,125,125,97,115,121,110,99,32,108,111,103,105,110,87,105,116,104,80,111,112,117,112,40,116,44,101,41,123,118,97,114,32,110,59,105,102,40,116,61,116,124,124,123,125,44,33,40,101,61,101,124,124,123,125,41,46,112,111,112,117,112,38,38,40,101,46,112,111,112,117,112,61,40,116,61,62,123,99,111,110,115,116,32,101,61,119,105,110,100,111,119,46,115,99,114,101,101,110,88,43,40,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,45,52,48,48,41,47,50,44,110,61,119,105,110,100,111,119,46,115,99,114,101,101,110,89,43,40,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,45,54,48,48,41,47,50,59,114,101,116,117,114,110,32,119,105,110,100,111,119,46,111,112,101,110,40,116,44,34,97,117,116,104,48,58,97,117,116,104,111,114,105,122,101,58,112,111,112,117,112,34,44,96,108,101,102,116,61,36,123,101,125,44,116,111,112,61,36,123,110,125,44,119,105,100,116,104,61,52,48,48,44,104,101,105,103,104,116,61,54,48,48,44,114,101,115,105,122,97,98,108,101,44,115,99,114,111,108,108,98,97,114,115,61,121,101,115,44,115,116,97,116,117,115,61,49,96,41,125,41,40,34,34,41,44,33,101,46,112,111,112,117,112,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,85,110,97,98,108,101,32,116,111,32,111,112,101,110,32,97,32,112,111,112,117,112,32,102,111,114,32,108,111,103,105,110,87,105,116,104,80,111,112,117,112,32,45,32,119,105,110,100,111,119,46,111,112,101,110,32,114,101,116,117,114,110,101,100,32,96,110,117,108,108,96,34,41,59,99,111,110,115,116,32,114,61,97,119,97,105,116,32,116,104,105,115,46,95,112,114,101,112,97,114,101,65,117,116,104,111,114,105,122,101,85,114,108,40,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,124,124,123,125,44,123,114,101,115,112,111,110,115,101,95,109,111,100,101,58,34,119,101,98,95,109,101,115,115,97,103,101,34,125,44,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,111,114,105,103,105,110,41,59,101,46,112,111,112,117,112,46,108,111,99,97,116,105,111,110,46,104,114,101,102,61,114,46,117,114,108,59,99,111,110,115,116,32,105,61,97,119,97,105,116,40,116,61,62,110,101,119,32,80,114,111,109,105,115,101,40,40,40,101,44,110,41,61,62,123,108,101,116,32,114,59,99,111,110,115,116,32,105,61,115,101,116,73,110,116,101,114,118,97,108,40,40,40,41,61,62,123,116,46,112,111,112,117,112,38,38,116,46,112,111,112,117,112,46,99,108,111,115,101,100,38,38,40,99,108,101,97,114,73,110,116,101,114,118,97,108,40,105,41,44,99,108,101,97,114,84,105,109,101,111,117,116,40,111,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,101,115,115,97,103,101,34,44,114,44,33,49,41,44,110,40,110,101,119,32,103,40,116,46,112,111,112,117,112,41,41,41,125,41,44,49,101,51,41,44,111,61,115,101,116,84,105,109,101,111,117,116,40,40,40,41,61,62,123,99,108,101,97,114,73,110,116,101,114,118,97,108,40,105,41,44,110,40,110,101,119,32,118,40,116,46,112,111,112,117,112,41,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,101,115,115,97,103,101,34,44,114,44,33,49,41,125,41,44,49,101,51,42,40,116,46,116,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,124,124,54,48,41,41,59,114,61,102,117,110,99,116,105,111,110,40,97,41,123,105,102,40,97,46,100,97,116,97,38,38,34,97,117,116,104,111,114,105,122,97,116,105,111,110,95,114,101,115,112,111,110,115,101,34,61,61,61,97,46,100,97,116,97,46,116,121,112,101,41,123,105,102,40,99,108,101,97,114,84,105,109,101,111,117,116,40,111,41,44,99,108,101,97,114,73,110,116,101,114,118,97,108,40,105,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,101,115,115,97,103,101,34,44,114,44,33,49,41,44,116,46,112,111,112,117,112,46,99,108,111,115,101,40,41,44,97,46,100,97,116,97,46,114,101,115,112,111,110,115,101,46,101,114,114,111,114,41,114,101,116,117,114,110,32,110,40,104,46,102,114,111,109,80,97,121,108,111,97,100,40,97,46,100,97,116,97,46,114,101,115,112,111,110,115,101,41,41,59,101,40,97,46,100,97,116,97,46,114,101,115,112,111,110,115,101,41,125,125,44,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,109,101,115,115,97,103,101,34,44,114,41,125,41,41,41,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,101,41,44,123,116,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,58,101,46,116,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,101,84,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,124,124,54,48,125,41,41,59,105,102,40,114,46,115,116,97,116,101,33,61,61,105,46,115,116,97,116,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,115,116,97,116,101,34,41,59,99,111,110,115,116,32,111,61,40,110,117,108,108,61,61,61,40,110,61,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,124,124,118,111,105,100,32,48,61,61,61,110,63,118,111,105,100,32,48,58,110,46,111,114,103,97,110,105,122,97,116,105,111,110,41,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,111,114,103,97,110,105,122,97,116,105,111,110,59,97,119,97,105,116,32,116,104,105,115,46,95,114,101,113,117,101,115,116,84,111,107,101,110,40,123,97,117,100,105,101,110,99,101,58,114,46,97,117,100,105,101,110,99,101,44,115,99,111,112,101,58,114,46,115,99,111,112,101,44,99,111,100,101,95,118,101,114,105,102,105,101,114,58,114,46,99,111,100,101,95,118,101,114,105,102,105,101,114,44,103,114,97,110,116,95,116,121,112,101,58,34,97,117,116,104,111,114,105,122,97,116,105,111,110,95,99,111,100,101,34,44,99,111,100,101,58,105,46,99,111,100,101,44,114,101,100,105,114,101,99,116,95,117,114,105,58,114,46,114,101,100,105,114,101,99,116,95,117,114,105,125,44,123,110,111,110,99,101,73,110,58,114,46,110,111,110,99,101,44,111,114,103,97,110,105,122,97,116,105,111,110,73,100,58,111,125,41,125,97,115,121,110,99,32,103,101,116,85,115,101,114,40,41,123,118,97,114,32,116,59,99,111,110,115,116,32,101,61,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,73,100,84,111,107,101,110,70,114,111,109,67,97,99,104,101,40,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,61,40,116,61,110,117,108,108,61,61,101,63,118,111,105,100,32,48,58,101,46,100,101,99,111,100,101,100,84,111,107,101,110,41,124,124,118,111,105,100,32,48,61,61,61,116,63,118,111,105,100,32,48,58,116,46,117,115,101,114,125,97,115,121,110,99,32,103,101,116,73,100,84,111,107,101,110,67,108,97,105,109,115,40,41,123,118,97,114,32,116,59,99,111,110,115,116,32,101,61,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,73,100,84,111,107,101,110,70,114,111,109,67,97,99,104,101,40,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,61,40,116,61,110,117,108,108,61,61,101,63,118,111,105,100,32,48,58,101,46,100,101,99,111,100,101,100,84,111,107,101,110,41,124,124,118,111,105,100,32,48,61,61,61,116,63,118,111,105,100,32,48,58,116,46,99,108,97,105,109,115,125,97,115,121,110,99,32,108,111,103,105,110,87,105,116,104,82,101,100,105,114,101,99,116,40,116,61,123,125,41,123,118,97,114,32,101,59,99,111,110,115,116,32,110,61,110,116,40,116,41,44,123,111,112,101,110,85,114,108,58,105,44,102,114,97,103,109,101,110,116,58,111,44,97,112,112,83,116,97,116,101,58,97,125,61,110,44,115,61,114,40,110,44,91,34,111,112,101,110,85,114,108,34,44,34,102,114,97,103,109,101,110,116,34,44,34,97,112,112,83,116,97,116,101,34,93,41,44,99,61,40,110,117,108,108,61,61,61,40,101,61,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,124,124,118,111,105,100,32,48,61,61,61,101,63,118,111,105,100,32,48,58,101,46,111,114,103,97,110,105,122,97,116,105,111,110,41,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,111,114,103,97,110,105,122,97,116,105,111,110,44,117,61,97,119,97,105,116,32,116,104,105,115,46,95,112,114,101,112,97,114,101,65,117,116,104,111,114,105,122,101,85,114,108,40,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,124,124,123,125,41,44,123,117,114,108,58,108,125,61,117,44,102,61,114,40,117,44,91,34,117,114,108,34,93,41,59,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,77,97,110,97,103,101,114,46,99,114,101,97,116,101,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,102,41,44,123,97,112,112,83,116,97,116,101,58,97,125,41,44,99,38,38,123,111,114,103,97,110,105,122,97,116,105,111,110,73,100,58,99,125,41,41,59,99,111,110,115,116,32,104,61,111,63,96,36,123,108,125,35,36,123,111,125,96,58,108,59,105,63,97,119,97,105,116,32,105,40,104,41,58,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,97,115,115,105,103,110,40,104,41,125,97,115,121,110,99,32,104,97,110,100,108,101,82,101,100,105,114,101,99,116,67,97,108,108,98,97,99,107,40,116,61,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,114,101,102,41,123,99,111,110,115,116,32,101,61,116,46,115,112,108,105,116,40,34,63,34,41,46,115,108,105,99,101,40,49,41,59,105,102,40,48,61,61,61,101,46,108,101,110,103,116,104,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,84,104,101,114,101,32,97,114,101,32,110,111,32,113,117,101,114,121,32,112,97,114,97,109,115,32,97,118,97,105,108,97,98,108,101,32,102,111,114,32,112,97,114,115,105,110,103,46,34,41,59,99,111,110,115,116,123,115,116,97,116,101,58,110,44,99,111,100,101,58,114,44,101,114,114,111,114,58,105,44,101,114,114,111,114,95,100,101,115,99,114,105,112,116,105,111,110,58,111,125,61,40,116,61,62,123,116,46,105,110,100,101,120,79,102,40,34,35,34,41,62,45,49,38,38,40,116,61,116,46,115,117,98,115,116,114,105,110,103,40,48,44,116,46,105,110,100,101,120,79,102,40,34,35,34,41,41,41,59,99,111,110,115,116,32,101,61,110,101,119,32,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,40,116,41,59,114,101,116,117,114,110,123,115,116,97,116,101,58,101,46,103,101,116,40,34,115,116,97,116,101,34,41,44,99,111,100,101,58,101,46,103,101,116,40,34,99,111,100,101,34,41,124,124,118,111,105,100,32,48,44,101,114,114,111,114,58,101,46,103,101,116,40,34,101,114,114,111,114,34,41,124,124,118,111,105,100,32,48,44,101,114,114,111,114,95,100,101,115,99,114,105,112,116,105,111,110,58,101,46,103,101,116,40,34,101,114,114,111,114,95,100,101,115,99,114,105,112,116,105,111,110,34,41,124,124,118,111,105,100,32,48,125,125,41,40,101,46,106,111,105,110,40,34,34,41,41,44,97,61,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,77,97,110,97,103,101,114,46,103,101,116,40,41,59,105,102,40,33,97,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,115,116,97,116,101,34,41,59,105,102,40,116,104,105,115,46,116,114,97,110,115,97,99,116,105,111,110,77,97,110,97,103,101,114,46,114,101,109,111,118,101,40,41,44,105,41,116,104,114,111,119,32,110,101,119,32,100,40,105,44,111,124,124,105,44,110,44,97,46,97,112,112,83,116,97,116,101,41,59,105,102,40,33,97,46,99,111,100,101,95,118,101,114,105,102,105,101,114,124,124,97,46,115,116,97,116,101,38,38,97,46,115,116,97,116,101,33,61,61,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,115,116,97,116,101,34,41,59,99,111,110,115,116,32,115,61,97,46,111,114,103,97,110,105,122,97,116,105,111,110,73,100,44,99,61,97,46,110,111,110,99,101,44,117,61,97,46,114,101,100,105,114,101,99,116,95,117,114,105,59,114,101,116,117,114,110,32,97,119,97,105,116,32,116,104,105,115,46,95,114,101,113,117,101,115,116,84,111,107,101,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,97,117,100,105,101,110,99,101,58,97,46,97,117,100,105,101,110,99,101,44,115,99,111,112,101,58,97,46,115,99,111,112,101,44,99,111,100,101,95,118,101,114,105,102,105,101,114,58,97,46,99,111,100,101,95,118,101,114,105,102,105,101,114,44,103,114,97,110,116,95,116,121,112,101,58,34,97,117,116,104,111,114,105,122,97,116,105,111,110,95,99,111,100,101,34,44,99,111,100,101,58,114,125,44,117,63,123,114,101,100,105,114,101,99,116,95,117,114,105,58,117,125,58,123,125,41,44,123,110,111,110,99,101,73,110,58,99,44,111,114,103,97,110,105,122,97,116,105,111,110,73,100,58,115,125,41,44,123,97,112,112,83,116,97,116,101,58,97,46,97,112,112,83,116,97,116,101,125,125,97,115,121,110,99,32,99,104,101,99,107,83,101,115,115,105,111,110,40,116,41,123,105,102,40,33,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,103,101,116,40,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,67,111,111,107,105,101,78,97,109,101,41,41,123,105,102,40,33,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,103,101,116,40,34,97,117,116,104,48,46,105,115,46,97,117,116,104,101,110,116,105,99,97,116,101,100,34,41,41,114,101,116,117,114,110,59,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,115,97,118,101,40,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,67,111,111,107,105,101,78,97,109,101,44,33,48,44,123,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,58,116,104,105,115,46,115,101,115,115,105,111,110,67,104,101,99,107,69,120,112,105,114,121,68,97,121,115,44,99,111,111,107,105,101,68,111,109,97,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,111,107,105,101,68,111,109,97,105,110,125,41,44,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,114,101,109,111,118,101,40,34,97,117,116,104,48,46,105,115,46,97,117,116,104,101,110,116,105,99,97,116,101,100,34,41,125,116,114,121,123,97,119,97,105,116,32,116,104,105,115,46,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,40,116,41,125,99,97,116,99,104,40,116,41,123,125,125,97,115,121,110,99,32,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,40,116,61,123,125,41,123,118,97,114,32,101,59,99,111,110,115,116,32,110,61,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,99,97,99,104,101,77,111,100,101,58,34,111,110,34,125,44,116,41,44,123,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,58,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,123,115,99,111,112,101,58,69,40,116,104,105,115,46,115,99,111,112,101,44,110,117,108,108,61,61,61,40,101,61,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,124,124,118,111,105,100,32,48,61,61,61,101,63,118,111,105,100,32,48,58,101,46,115,99,111,112,101,41,125,41,125,41,44,114,61,97,119,97,105,116,40,40,116,44,101,41,61,62,123,108,101,116,32,110,61,74,91,101,93,59,114,101,116,117,114,110,32,110,124,124,40,110,61,116,40,41,46,102,105,110,97,108,108,121,40,40,40,41,61,62,123,100,101,108,101,116,101,32,74,91,101,93,44,110,61,110,117,108,108,125,41,41,44,74,91,101,93,61,110,41,44,110,125,41,40,40,40,41,61,62,116,104,105,115,46,95,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,40,110,41,41,44,96,36,123,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,125,58,58,36,123,110,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,125,58,58,36,123,110,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,125,96,41,59,114,101,116,117,114,110,32,116,46,100,101,116,97,105,108,101,100,82,101,115,112,111,110,115,101,63,114,58,110,117,108,108,61,61,114,63,118,111,105,100,32,48,58,114,46,97,99,99,101,115,115,95,116,111,107,101,110,125,97,115,121,110,99,32,95,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,40,116,41,123,99,111,110,115,116,123,99,97,99,104,101,77,111,100,101,58,101,125,61,116,44,110,61,114,40,116,44,91,34,99,97,99,104,101,77,111,100,101,34,93,41,59,105,102,40,34,111,102,102,34,33,61,61,101,41,123,99,111,110,115,116,32,116,61,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,69,110,116,114,121,70,114,111,109,67,97,99,104,101,40,123,115,99,111,112,101,58,110,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,110,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,124,124,34,100,101,102,97,117,108,116,34,44,99,108,105,101,110,116,73,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,125,41,59,105,102,40,116,41,114,101,116,117,114,110,32,116,125,105,102,40,34,99,97,99,104,101,45,111,110,108,121,34,33,61,61,101,41,123,105,102,40,33,97,119,97,105,116,40,97,115,121,110,99,40,116,44,101,61,51,41,61,62,123,102,111,114,40,108,101,116,32,110,61,48,59,110,60,101,59,110,43,43,41,105,102,40,97,119,97,105,116,32,116,40,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,41,40,40,40,41,61,62,114,116,46,97,99,113,117,105,114,101,76,111,99,107,40,34,97,117,116,104,48,46,108,111,99,107,46,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,34,44,53,101,51,41,41,44,49,48,41,41,116,104,114,111,119,32,110,101,119,32,112,59,116,114,121,123,105,102,40,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,112,97,103,101,104,105,100,101,34,44,116,104,105,115,46,95,114,101,108,101,97,115,101,76,111,99,107,79,110,80,97,103,101,72,105,100,101,41,44,34,111,102,102,34,33,61,61,101,41,123,99,111,110,115,116,32,116,61,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,69,110,116,114,121,70,114,111,109,67,97,99,104,101,40,123,115,99,111,112,101,58,110,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,110,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,124,124,34,100,101,102,97,117,108,116,34,44,99,108,105,101,110,116,73,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,125,41,59,105,102,40,116,41,114,101,116,117,114,110,32,116,125,99,111,110,115,116,32,116,61,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,102,114,101,115,104,84,111,107,101,110,115,63,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,84,111,107,101,110,85,115,105,110,103,82,101,102,114,101,115,104,84,111,107,101,110,40,110,41,58,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,84,111,107,101,110,70,114,111,109,73,70,114,97,109,101,40,110,41,44,123,105,100,95,116,111,107,101,110,58,114,44,97,99,99,101,115,115,95,116,111,107,101,110,58,105,44,111,97,117,116,104,84,111,107,101,110,83,99,111,112,101,58,111,44,101,120,112,105,114,101,115,95,105,110,58,97,125,61,116,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,105,100,95,116,111,107,101,110,58,114,44,97,99,99,101,115,115,95,116,111,107,101,110,58,105,125,44,111,63,123,115,99,111,112,101,58,111,125,58,110,117,108,108,41,44,123,101,120,112,105,114,101,115,95,105,110,58,97,125,41,125,102,105,110,97,108,108,121,123,97,119,97,105,116,32,114,116,46,114,101,108,101,97,115,101,76,111,99,107,40,34,97,117,116,104,48,46,108,111,99,107,46,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,34,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,112,97,103,101,104,105,100,101,34,44,116,104,105,115,46,95,114,101,108,101,97,115,101,76,111,99,107,79,110,80,97,103,101,72,105,100,101,41,125,125,125,97,115,121,110,99,32,103,101,116,84,111,107,101,110,87,105,116,104,80,111,112,117,112,40,116,61,123,125,44,101,61,123,125,41,123,118,97,114,32,110,59,99,111,110,115,116,32,114,61,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,41,44,123,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,58,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,123,115,99,111,112,101,58,69,40,116,104,105,115,46,115,99,111,112,101,44,110,117,108,108,61,61,61,40,110,61,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,124,124,118,111,105,100,32,48,61,61,61,110,63,118,111,105,100,32,48,58,110,46,115,99,111,112,101,41,125,41,125,41,59,114,101,116,117,114,110,32,101,61,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,117,41,44,101,41,44,97,119,97,105,116,32,116,104,105,115,46,108,111,103,105,110,87,105,116,104,80,111,112,117,112,40,114,44,101,41,44,40,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,46,103,101,116,40,110,101,119,32,68,40,123,115,99,111,112,101,58,114,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,114,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,124,124,34,100,101,102,97,117,108,116,34,44,99,108,105,101,110,116,73,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,125,41,41,41,46,97,99,99,101,115,115,95,116,111,107,101,110,125,97,115,121,110,99,32,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,40,41,123,114,101,116,117,114,110,33,33,97,119,97,105,116,32,116,104,105,115,46,103,101,116,85,115,101,114,40,41,125,95,98,117,105,108,100,76,111,103,111,117,116,85,114,108,40,116,41,123,110,117,108,108,33,61,61,116,46,99,108,105,101,110,116,73,100,63,116,46,99,108,105,101,110,116,73,100,61,116,46,99,108,105,101,110,116,73,100,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,58,100,101,108,101,116,101,32,116,46,99,108,105,101,110,116,73,100,59,99,111,110,115,116,32,101,61,116,46,108,111,103,111,117,116,80,97,114,97,109,115,124,124,123,125,44,123,102,101,100,101,114,97,116,101,100,58,110,125,61,101,44,105,61,114,40,101,44,91,34,102,101,100,101,114,97,116,101,100,34,93,41,44,111,61,110,63,34,38,102,101,100,101,114,97,116,101,100,34,58,34,34,59,114,101,116,117,114,110,32,116,104,105,115,46,95,117,114,108,40,96,47,118,50,47,108,111,103,111,117,116,63,36,123,79,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,99,108,105,101,110,116,73,100,58,116,46,99,108,105,101,110,116,73,100,125,44,105,41,41,125,96,41,43,111,125,97,115,121,110,99,32,108,111,103,111,117,116,40,116,61,123,125,41,123,99,111,110,115,116,32,101,61,110,116,40,116,41,44,123,111,112,101,110,85,114,108,58,110,125,61,101,44,105,61,114,40,101,44,91,34,111,112,101,110,85,114,108,34,93,41,59,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,46,99,108,101,97,114,40,41,44,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,114,101,109,111,118,101,40,116,104,105,115,46,111,114,103,72,105,110,116,67,111,111,107,105,101,78,97,109,101,44,123,99,111,111,107,105,101,68,111,109,97,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,111,107,105,101,68,111,109,97,105,110,125,41,44,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,114,101,109,111,118,101,40,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,67,111,111,107,105,101,78,97,109,101,44,123,99,111,111,107,105,101,68,111,109,97,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,111,107,105,101,68,111,109,97,105,110,125,41,44,116,104,105,115,46,117,115,101,114,67,97,99,104,101,46,114,101,109,111,118,101,40,34,64,64,117,115,101,114,64,64,34,41,59,99,111,110,115,116,32,111,61,116,104,105,115,46,95,98,117,105,108,100,76,111,103,111,117,116,85,114,108,40,105,41,59,110,63,97,119,97,105,116,32,110,40,111,41,58,33,49,33,61,61,110,38,38,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,97,115,115,105,103,110,40,111,41,125,97,115,121,110,99,32,95,103,101,116,84,111,107,101,110,70,114,111,109,73,70,114,97,109,101,40,116,41,123,99,111,110,115,116,32,101,61,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,123,112,114,111,109,112,116,58,34,110,111,110,101,34,125,41,44,110,61,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,103,101,116,40,116,104,105,115,46,111,114,103,72,105,110,116,67,111,111,107,105,101,78,97,109,101,41,59,110,38,38,33,101,46,111,114,103,97,110,105,122,97,116,105,111,110,38,38,40,101,46,111,114,103,97,110,105,122,97,116,105,111,110,61,110,41,59,99,111,110,115,116,123,117,114,108,58,114,44,115,116,97,116,101,58,105,44,110,111,110,99,101,58,111,44,99,111,100,101,95,118,101,114,105,102,105,101,114,58,97,44,114,101,100,105,114,101,99,116,95,117,114,105,58,115,44,115,99,111,112,101,58,99,44,97,117,100,105,101,110,99,101,58,117,125,61,97,119,97,105,116,32,116,104,105,115,46,95,112,114,101,112,97,114,101,65,117,116,104,111,114,105,122,101,85,114,108,40,101,44,123,114,101,115,112,111,110,115,101,95,109,111,100,101,58,34,119,101,98,95,109,101,115,115,97,103,101,34,125,44,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,111,114,105,103,105,110,41,59,116,114,121,123,105,102,40,119,105,110,100,111,119,46,99,114,111,115,115,79,114,105,103,105,110,73,115,111,108,97,116,101,100,41,116,104,114,111,119,32,110,101,119,32,104,40,34,108,111,103,105,110,95,114,101,113,117,105,114,101,100,34,44,34,84,104,101,32,97,112,112,108,105,99,97,116,105,111,110,32,105,115,32,114,117,110,110,105,110,103,32,105,110,32,97,32,67,114,111,115,115,45,79,114,105,103,105,110,32,73,115,111,108,97,116,101,100,32,99,111,110,116,101,120,116,44,32,115,105,108,101,110,116,108,121,32,114,101,116,114,105,101,118,105,110,103,32,97,32,116,111,107,101,110,32,119,105,116,104,111,117,116,32,114,101,102,114,101,115,104,32,116,111,107,101,110,32,105,115,32,110,111,116,32,112,111,115,115,105,98,108,101,46,34,41,59,99,111,110,115,116,32,101,61,116,46,116,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,101,84,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,44,110,61,97,119,97,105,116,40,40,116,44,101,44,110,61,54,48,41,61,62,110,101,119,32,80,114,111,109,105,115,101,40,40,40,114,44,105,41,61,62,123,99,111,110,115,116,32,111,61,119,105,110,100,111,119,46,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,102,114,97,109,101,34,41,59,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,119,105,100,116,104,34,44,34,48,34,41,44,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,104,101,105,103,104,116,34,44,34,48,34,41,44,111,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,59,99,111,110,115,116,32,97,61,40,41,61,62,123,119,105,110,100,111,119,46,100,111,99,117,109,101,110,116,46,98,111,100,121,46,99,111,110,116,97,105,110,115,40,111,41,38,38,40,119,105,110,100,111,119,46,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,111,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,101,115,115,97,103,101,34,44,115,44,33,49,41,41,125,59,108,101,116,32,115,59,99,111,110,115,116,32,99,61,115,101,116,84,105,109,101,111,117,116,40,40,40,41,61,62,123,105,40,110,101,119,32,112,41,44,97,40,41,125,41,44,49,101,51,42,110,41,59,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,46,111,114,105,103,105,110,33,61,101,41,114,101,116,117,114,110,59,105,102,40,33,116,46,100,97,116,97,124,124,34,97,117,116,104,111,114,105,122,97,116,105,111,110,95,114,101,115,112,111,110,115,101,34,33,61,61,116,46,100,97,116,97,46,116,121,112,101,41,114,101,116,117,114,110,59,99,111,110,115,116,32,110,61,116,46,115,111,117,114,99,101,59,110,38,38,110,46,99,108,111,115,101,40,41,44,116,46,100,97,116,97,46,114,101,115,112,111,110,115,101,46,101,114,114,111,114,63,105,40,104,46,102,114,111,109,80,97,121,108,111,97,100,40,116,46,100,97,116,97,46,114,101,115,112,111,110,115,101,41,41,58,114,40,116,46,100,97,116,97,46,114,101,115,112,111,110,115,101,41,44,99,108,101,97,114,84,105,109,101,111,117,116,40,99,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,101,115,115,97,103,101,34,44,115,44,33,49,41,44,115,101,116,84,105,109,101,111,117,116,40,97,44,50,101,51,41,125,44,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,109,101,115,115,97,103,101,34,44,115,44,33,49,41,44,119,105,110,100,111,119,46,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,111,41,44,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,116,41,125,41,41,41,40,114,44,116,104,105,115,46,100,111,109,97,105,110,85,114,108,44,101,41,59,105,102,40,105,33,61,61,110,46,115,116,97,116,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,115,116,97,116,101,34,41,59,99,111,110,115,116,32,108,61,97,119,97,105,116,32,116,104,105,115,46,95,114,101,113,117,101,115,116,84,111,107,101,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,123,99,111,100,101,95,118,101,114,105,102,105,101,114,58,97,44,99,111,100,101,58,110,46,99,111,100,101,44,103,114,97,110,116,95,116,121,112,101,58,34,97,117,116,104,111,114,105,122,97,116,105,111,110,95,99,111,100,101,34,44,114,101,100,105,114,101,99,116,95,117,114,105,58,115,44,116,105,109,101,111,117,116,58,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,116,105,109,101,111,117,116,124,124,116,104,105,115,46,104,116,116,112,84,105,109,101,111,117,116,77,115,125,41,44,123,110,111,110,99,101,73,110,58,111,125,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,108,41,44,123,115,99,111,112,101,58,99,44,111,97,117,116,104,84,111,107,101,110,83,99,111,112,101,58,108,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,117,125,41,125,99,97,116,99,104,40,116,41,123,116,104,114,111,119,34,108,111,103,105,110,95,114,101,113,117,105,114,101,100,34,61,61,61,116,46,101,114,114,111,114,38,38,116,104,105,115,46,108,111,103,111,117,116,40,123,111,112,101,110,85,114,108,58,33,49,125,41,44,116,125,125,97,115,121,110,99,32,95,103,101,116,84,111,107,101,110,85,115,105,110,103,82,101,102,114,101,115,104,84,111,107,101,110,40,116,41,123,99,111,110,115,116,32,101,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,46,103,101,116,40,110,101,119,32,68,40,123,115,99,111,112,101,58,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,124,124,34,100,101,102,97,117,108,116,34,44,99,108,105,101,110,116,73,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,125,41,41,59,105,102,40,33,40,101,38,38,101,46,114,101,102,114,101,115,104,95,116,111,107,101,110,124,124,116,104,105,115,46,119,111,114,107,101,114,41,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,102,114,101,115,104,84,111,107,101,110,115,70,97,108,108,98,97,99,107,41,114,101,116,117,114,110,32,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,84,111,107,101,110,70,114,111,109,73,70,114,97,109,101,40,116,41,59,116,104,114,111,119,32,110,101,119,32,98,40,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,124,124,34,100,101,102,97,117,108,116,34,44,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,41,125,99,111,110,115,116,32,110,61,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,114,101,100,105,114,101,99,116,95,117,114,105,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,114,101,100,105,114,101,99,116,95,117,114,105,124,124,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,111,114,105,103,105,110,44,114,61,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,46,116,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,63,49,101,51,42,116,46,116,105,109,101,111,117,116,73,110,83,101,99,111,110,100,115,58,110,117,108,108,59,116,114,121,123,99,111,110,115,116,32,105,61,97,119,97,105,116,32,116,104,105,115,46,95,114,101,113,117,101,115,116,84,111,107,101,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,41,44,123,103,114,97,110,116,95,116,121,112,101,58,34,114,101,102,114,101,115,104,95,116,111,107,101,110,34,44,114,101,102,114,101,115,104,95,116,111,107,101,110,58,101,38,38,101,46,114,101,102,114,101,115,104,95,116,111,107,101,110,44,114,101,100,105,114,101,99,116,95,117,114,105,58,110,125,41,44,114,38,38,123,116,105,109,101,111,117,116,58,114,125,41,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,105,41,44,123,115,99,111,112,101,58,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,115,99,111,112,101,44,111,97,117,116,104,84,111,107,101,110,83,99,111,112,101,58,105,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,116,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,124,124,34,100,101,102,97,117,108,116,34,125,41,125,99,97,116,99,104,40,101,41,123,105,102,40,40,101,46,109,101,115,115,97,103,101,46,105,110,100,101,120,79,102,40,34,77,105,115,115,105,110,103,32,82,101,102,114,101,115,104,32,84,111,107,101,110,34,41,62,45,49,124,124,101,46,109,101,115,115,97,103,101,38,38,101,46,109,101,115,115,97,103,101,46,105,110,100,101,120,79,102,40,34,105,110,118,97,108,105,100,32,114,101,102,114,101,115,104,32,116,111,107,101,110,34,41,62,45,49,41,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,102,114,101,115,104,84,111,107,101,110,115,70,97,108,108,98,97,99,107,41,114,101,116,117,114,110,32,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,84,111,107,101,110,70,114,111,109,73,70,114,97,109,101,40,116,41,59,116,104,114,111,119,32,101,125,125,97,115,121,110,99,32,95,115,97,118,101,69,110,116,114,121,73,110,67,97,99,104,101,40,116,41,123,99,111,110,115,116,123,105,100,95,116,111,107,101,110,58,101,44,100,101,99,111,100,101,100,84,111,107,101,110,58,110,125,61,116,44,105,61,114,40,116,44,91,34,105,100,95,116,111,107,101,110,34,44,34,100,101,99,111,100,101,100,84,111,107,101,110,34,93,41,59,116,104,105,115,46,117,115,101,114,67,97,99,104,101,46,115,101,116,40,34,64,64,117,115,101,114,64,64,34,44,123,105,100,95,116,111,107,101,110,58,101,44,100,101,99,111,100,101,100,84,111,107,101,110,58,110,125,41,44,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,46,115,101,116,73,100,84,111,107,101,110,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,44,116,46,105,100,95,116,111,107,101,110,44,116,46,100,101,99,111,100,101,100,84,111,107,101,110,41,44,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,46,115,101,116,40,105,41,125,97,115,121,110,99,32,95,103,101,116,73,100,84,111,107,101,110,70,114,111,109,67,97,99,104,101,40,41,123,99,111,110,115,116,32,116,61,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,46,97,117,100,105,101,110,99,101,124,124,34,100,101,102,97,117,108,116,34,44,101,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,46,103,101,116,73,100,84,111,107,101,110,40,110,101,119,32,68,40,123,99,108,105,101,110,116,73,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,44,97,117,100,105,101,110,99,101,58,116,44,115,99,111,112,101,58,116,104,105,115,46,115,99,111,112,101,125,41,41,44,110,61,116,104,105,115,46,117,115,101,114,67,97,99,104,101,46,103,101,116,40,34,64,64,117,115,101,114,64,64,34,41,59,114,101,116,117,114,110,32,101,38,38,101,46,105,100,95,116,111,107,101,110,61,61,61,40,110,117,108,108,61,61,110,63,118,111,105,100,32,48,58,110,46,105,100,95,116,111,107,101,110,41,63,110,58,40,116,104,105,115,46,117,115,101,114,67,97,99,104,101,46,115,101,116,40,34,64,64,117,115,101,114,64,64,34,44,101,41,44,101,41,125,97,115,121,110,99,32,95,103,101,116,69,110,116,114,121,70,114,111,109,67,97,99,104,101,40,123,115,99,111,112,101,58,116,44,97,117,100,105,101,110,99,101,58,101,44,99,108,105,101,110,116,73,100,58,110,125,41,123,99,111,110,115,116,32,114,61,97,119,97,105,116,32,116,104,105,115,46,99,97,99,104,101,77,97,110,97,103,101,114,46,103,101,116,40,110,101,119,32,68,40,123,115,99,111,112,101,58,116,44,97,117,100,105,101,110,99,101,58,101,44,99,108,105,101,110,116,73,100,58,110,125,41,44,54,48,41,59,105,102,40,114,38,38,114,46,97,99,99,101,115,115,95,116,111,107,101,110,41,123,99,111,110,115,116,123,97,99,99,101,115,115,95,116,111,107,101,110,58,116,44,111,97,117,116,104,84,111,107,101,110,83,99,111,112,101,58,101,44,101,120,112,105,114,101,115,95,105,110,58,110,125,61,114,44,105,61,97,119,97,105,116,32,116,104,105,115,46,95,103,101,116,73,100,84,111,107,101,110,70,114,111,109,67,97,99,104,101,40,41,59,114,101,116,117,114,110,32,105,38,38,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,105,100,95,116,111,107,101,110,58,105,46,105,100,95,116,111,107,101,110,44,97,99,99,101,115,115,95,116,111,107,101,110,58,116,125,44,101,63,123,115,99,111,112,101,58,101,125,58,110,117,108,108,41,44,123,101,120,112,105,114,101,115,95,105,110,58,110,125,41,125,125,97,115,121,110,99,32,95,114,101,113,117,101,115,116,84,111,107,101,110,40,116,44,101,41,123,99,111,110,115,116,123,110,111,110,99,101,73,110,58,110,44,111,114,103,97,110,105,122,97,116,105,111,110,73,100,58,114,125,61,101,124,124,123,125,44,105,61,97,119,97,105,116,32,106,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,98,97,115,101,85,114,108,58,116,104,105,115,46,100,111,109,97,105,110,85,114,108,44,99,108,105,101,110,116,95,105,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,44,97,117,116,104,48,67,108,105,101,110,116,58,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,104,48,67,108,105,101,110,116,44,117,115,101,70,111,114,109,68,97,116,97,58,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,70,111,114,109,68,97,116,97,44,116,105,109,101,111,117,116,58,116,104,105,115,46,104,116,116,112,84,105,109,101,111,117,116,77,115,125,44,116,41,44,116,104,105,115,46,119,111,114,107,101,114,41,44,111,61,97,119,97,105,116,32,116,104,105,115,46,95,118,101,114,105,102,121,73,100,84,111,107,101,110,40,105,46,105,100,95,116,111,107,101,110,44,110,44,114,41,59,114,101,116,117,114,110,32,97,119,97,105,116,32,116,104,105,115,46,95,115,97,118,101,69,110,116,114,121,73,110,67,97,99,104,101,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,105,41,44,123,100,101,99,111,100,101,100,84,111,107,101,110,58,111,44,115,99,111,112,101,58,116,46,115,99,111,112,101,44,97,117,100,105,101,110,99,101,58,116,46,97,117,100,105,101,110,99,101,124,124,34,100,101,102,97,117,108,116,34,125,41,44,105,46,115,99,111,112,101,63,123,111,97,117,116,104,84,111,107,101,110,83,99,111,112,101,58,105,46,115,99,111,112,101,125,58,110,117,108,108,41,44,123,99,108,105,101,110,116,95,105,100,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,105,101,110,116,73,100,125,41,41,44,116,104,105,115,46,99,111,111,107,105,101,83,116,111,114,97,103,101,46,115,97,118,101,40,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,67,111,111,107,105,101,78,97,109,101,44,33,48,44,123,100,97,121,115,85,110,116,105,108,69,120,112,105,114,101,58,116,104,105,115,46,115,101,115,115,105,111,110,67,104,101,99,107,69,120,112,105,114,121,68,97,121,115,44,99,111,111,107,105,101,68,111,109,97,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,111,107,105,101,68,111,109,97,105,110,125,41,44,116,104,105,115,46,95,112,114,111,99,101,115,115,79,114,103,73,100,72,105,110,116,40,111,46,99,108,97,105,109,115,46,111,114,103,95,105,100,41,44,79,98,106,101,99,116,46,97,115,115,105,103,110,40,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,105,41,44,123,100,101,99,111,100,101,100,84,111,107,101,110,58,111,125,41,125,125,97,115,121,110,99,32,102,117,110,99,116,105,111,110,32,111,116,40,116,41,123,99,111,110,115,116,32,101,61,110,101,119,32,105,116,40,116,41,59,114,101,116,117,114,110,32,97,119,97,105,116,32,101,46,99,104,101,99,107,83,101,115,115,105,111,110,40,41,44,101,125,125,44,54,57,56,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,49,57,56,51,41,59,118,97,114,32,114,61,105,40,110,40,49,53,52,51,41,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,116,58,123,100,101,102,97,117,108,116,58,116,125,125,114,91,34,100,101,102,97,117,108,116,34,93,46,95,98,97,98,101,108,80,111,108,121,102,105,108,108,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,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,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,32,105,115,32,108,111,97,100,101,100,32,109,111,114,101,32,116,104,97,110,32,111,110,99,101,32,111,110,32,116,104,105,115,32,112,97,103,101,46,32,84,104,105,115,32,105,115,32,112,114,111,98,97,98,108,121,32,110,111,116,32,100,101,115,105,114,97,98,108,101,47,105,110,116,101,110,100,101,100,32,97,110,100,32,109,97,121,32,104,97,118,101,32,99,111,110,115,101,113,117,101,110,99,101,115,32,105,102,32,100,105,102,102,101,114,101,110,116,32,118,101,114,115,105,111,110,115,32,111,102,32,116,104,101,32,112,111,108,121,102,105,108,108,115,32,97,114,101,32,97,112,112,108,105,101,100,32,115,101,113,117,101,110,116,105,97,108,108,121,46,32,73,102,32,121,111,117,32,100,111,32,110,101,101,100,32,116,111,32,108,111,97,100,32,116,104,101,32,112,111,108,121,102,105,108,108,32,109,111,114,101,32,116,104,97,110,32,111,110,99,101,44,32,117,115,101,32,64,98,97,98,101,108,47,112,111,108,121,102,105,108,108,47,110,111,67,111,110,102,108,105,99,116,32,105,110,115,116,101,97,100,32,116,111,32,98,121,112,97,115,115,32,116,104,101,32,119,97,114,110,105,110,103,46,34,41,44,114,91,34,100,101,102,97,117,108,116,34,93,46,95,98,97,98,101,108,80,111,108,121,102,105,108,108,61,33,48,125,44,49,57,56,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,53,48,51,51,41,44,110,40,56,48,51,51,41,44,110,40,50,56,54,51,41,44,110,40,54,49,52,49,41,44,110,40,52,51,49,54,41,44,110,40,49,49,55,41,44,110,40,54,56,54,51,41,44,110,40,50,57,48,41,44,110,40,56,54,53,50,41,44,110,40,49,50,51,53,41,44,110,40,56,57,51,48,41,44,110,40,49,55,57,52,41,44,110,40,49,53,50,51,41,44,110,40,53,54,54,54,41,125,44,53,48,51,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,56,57,57,55,41,44,110,40,55,57,52,52,41,44,110,40,53,51,56,56,41,44,110,40,50,54,54,41,44,110,40,55,53,53,55,41,44,110,40,51,51,56,54,41,44,110,40,56,49,41,44,110,40,52,57,52,51,41,44,110,40,49,57,50,41,44,110,40,52,51,55,49,41,44,110,40,55,48,50,54,41,44,110,40,54,55,51,54,41,44,110,40,55,50,54,48,41,44,110,40,52,54,52,57,41,44,110,40,56,51,50,53,41,44,110,40,50,55,57,56,41,44,110,40,54,57,49,49,41,44,110,40,52,51,57,52,41,44,110,40,56,55,54,57,41,44,110,40,55,50,57,41,44,110,40,57,51,56,51,41,44,110,40,57,51,49,53,41,44,110,40,53,48,55,50,41,44,110,40,51,52,56,41,44,110,40,49,48,50,56,41,44,110,40,50,54,49,48,41,44,110,40,52,48,48,55,41,44,110,40,55,54,49,54,41,44,110,40,54,55,54,50,41,44,110,40,51,51,49,54,41,44,110,40,51,48,49,57,41,44,110,40,50,57,51,41,44,110,40,54,52,48,41,44,110,40,54,53,56,57,41,44,110,40,51,50,49,48,41,44,110,40,50,51,55,50,41,44,110,40,53,49,49,41,44,110,40,54,55,56,49,41,44,110,40,52,52,51,52,41,44,110,40,52,55,56,51,41,44,110,40,53,53,50,49,41,44,110,40,52,48,57,51,41,44,110,40,54,51,55,56,41,44,110,40,50,51,56,48,41,44,110,40,50,56,48,51,41,44,110,40,51,55,50,53,41,44,110,40,55,57,55,55,41,44,110,40,52,49,57,50,41,44,110,40,50,57,52,48,41,44,110,40,53,55,51,49,41,44,110,40,57,51,56,50,41,44,110,40,56,56,55,55,41,44,110,40,50,53,51,57,41,44,110,40,57,56,50,48,41,44,110,40,56,52,49,55,41,44,110,40,52,51,51,51,41,44,110,40,50,56,53,56,41,44,110,40,50,48,53,56,41,44,110,40,53,52,55,50,41,44,110,40,55,48,48,49,41,44,110,40,55,52,57,50,41,44,110,40,52,52,55,41,44,110,40,53,54,50,52,41,44,110,40,49,50,54,51,41,44,110,40,53,49,57,51,41,44,110,40,56,50,52,49,41,44,110,40,54,55,50,51,41,44,110,40,57,51,57,52,41,44,110,40,54,57,51,56,41,44,110,40,49,57,54,49,41,44,110,40,57,54,53,57,41,44,110,40,51,51,53,52,41,44,110,40,57,54,50,48,41,44,110,40,54,51,56,41,44,110,40,50,51,51,56,41,44,110,40,54,52,49,41,44,110,40,49,53,55,53,41,44,110,40,53,54,49,49,41,44,110,40,49,48,51,51,41,44,110,40,49,54,48,41,44,110,40,53,50,55,49,41,44,110,40,56,50,50,49,41,44,110,40,50,53,50,51,41,44,110,40,53,52,52,49,41,44,110,40,56,51,55,53,41,44,110,40,57,49,48,54,41,44,110,40,57,49,51,57,41,44,110,40,51,51,53,50,41,44,110,40,51,50,56,57,41,44,110,40,53,57,52,51,41,44,110,40,57,52,56,51,41,44,110,40,56,50,57,50,41,44,110,40,54,49,55,52,41,44,110,40,54,57,55,53,41,44,110,40,49,52,49,50,41,44,110,40,51,54,48,41,44,110,40,56,51,57,52,41,44,110,40,51,49,49,56,41,44,110,40,56,55,55,50,41,44,110,40,49,51,48,56,41,44,110,40,55,48,56,48,41,44,110,40,56,54,49,53,41,44,110,40,53,50,52,52,41,44,110,40,57,53,52,52,41,44,110,40,53,52,55,53,41,44,110,40,51,55,55,48,41,44,110,40,53,50,48,49,41,44,110,40,49,51,56,53,41,44,110,40,50,56,49,51,41,44,110,40,50,53,48,57,41,44,110,40,56,50,53,51,41,44,110,40,55,51,57,49,41,44,110,40,51,51,48,55,41,44,110,40,51,51,49,53,41,44,110,40,50,57,50,48,41,44,110,40,53,52,52,51,41,44,110,40,57,56,49,53,41,44,110,40,51,55,55,49,41,44,110,40,54,57,51,53,41,44,110,40,55,56,52,54,41,44,110,40,54,52,48,51,41,44,110,40,49,50,48,48,41,44,110,40,57,53,49,41,44,110,40,50,57,41,44,110,40,57,51,49,48,41,44,110,40,54,55,50,50,41,44,110,40,56,51,55,50,41,44,110,40,52,54,48,52,41,44,110,40,52,55,56,49,41,44,110,40,56,52,49,54,41,44,110,40,52,51,57,53,41,44,110,40,57,54,52,57,41,44,110,40,50,52,55,53,41,44,110,40,50,57,50,52,41,44,110,40,54,51,51,55,41,44,110,40,51,50,56,54,41,44,110,40,55,50,50,53,41,44,110,40,56,55,54,54,41,44,116,46,101,120,112,111,114,116,115,61,110,40,52,52,49,49,41,125,44,50,56,54,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,56,49,50,53,41,44,116,46,101,120,112,111,114,116,115,61,110,40,52,52,49,49,41,46,65,114,114,97,121,46,102,108,97,116,77,97,112,125,44,56,48,51,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,57,51,52,56,41,44,116,46,101,120,112,111,114,116,115,61,110,40,52,52,49,49,41,46,65,114,114,97,121,46,105,110,99,108,117,100,101,115,125,44,56,57,51,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,49,55,54,56,41,44,116,46,101,120,112,111,114,116,115,61,110,40,52,52,49,49,41,46,79,98,106,101,99,116,46,101,110,116,114,105,101,115,125,44,56,54,53,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,57,50,50,51,41,44,116,46,101,120,112,111,114,116,115,61,110,40,52,52,49,49,41,46,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,115,125,44,49,50,51,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,55,52,52,50,41,44,116,46,101,120,112,111,114,116,115,61,110,40,52,52,49,49,41,46,79,98,106,101,99,116,46,118,97,108,117,101,115,125,44,49,55,57,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,50,56,49,51,41,44,110,40,52,57,51,54,41,44,116,46,101,120,112,111,114,116,115,61,110,40,52,52,49,49,41,46,80,114,111,109,105,115,101,91,34,102,105,110,97,108,108,121,34,93,125,44,52,51,49,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,50,51,57,41,44,116,46,101,120,112,111,114,116,115,61,110,40,52,52,49,49,41,46,83,116,114,105,110,103,46,112,97,100,69,110,100,125,44,54,49,52,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,56,55,53,53,41,44,116,46,101,120,112,111,114,116,115,61,110,40,52,52,49,49,41,46,83,116,114,105,110,103,46,112,97,100,83,116,97,114,116,125,44,54,56,54,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,54,57,52,56,41,44,116,46,101,120,112,111,114,116,115,61,110,40,52,52,49,49,41,46,83,116,114,105,110,103,46,116,114,105,109,82,105,103,104,116,125,44,49,49,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,51,52,49,50,41,44,116,46,101,120,112,111,114,116,115,61,110,40,52,52,49,49,41,46,83,116,114,105,110,103,46,116,114,105,109,76,101,102,116,125,44,50,57,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,56,50,56,52,41,44,116,46,101,120,112,111,114,116,115,61,110,40,56,56,51,51,41,46,102,40,34,97,115,121,110,99,73,116,101,114,97,116,111,114,34,41,125,44,49,53,52,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,52,50,57,54,41,44,116,46,101,120,112,111,114,116,115,61,110,40,49,50,55,53,41,46,103,108,111,98,97,108,125,44,55,52,49,49,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,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,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,116,43,34,32,105,115,32,110,111,116,32,97,32,102,117,110,99,116,105,111,110,33,34,41,59,114,101,116,117,114,110,32,116,125,125,44,51,50,48,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,48,48,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,114,40,116,41,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,116,43,34,32,105,115,32,110,111,116,32,97,110,32,111,98,106,101,99,116,33,34,41,59,114,101,116,117,114,110,32,116,125,125,44,49,50,55,53,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,101,120,112,111,114,116,115,61,123,118,101,114,115,105,111,110,58,34,50,46,54,46,49,50,34,125,59,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,95,95,101,38,38,40,95,95,101,61,101,41,125,44,57,57,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,49,49,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,114,40,116,41,44,118,111,105,100,32,48,61,61,61,101,41,114,101,116,117,114,110,32,116,59,115,119,105,116,99,104,40,110,41,123,99,97,115,101,32,49,58,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,99,97,108,108,40,101,44,110,41,125,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,116,46,99,97,108,108,40,101,44,110,44,114,41,125,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,44,105,41,123,114,101,116,117,114,110,32,116,46,99,97,108,108,40,101,44,110,44,114,44,105,41,125,125,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,46,97,112,112,108,121,40,101,44,97,114,103,117,109,101,110,116,115,41,125,125,125,44,54,57,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,46,101,120,112,111,114,116,115,61,33,110,40,51,56,51,52,41,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,33,61,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,34,97,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,125,125,41,46,97,125,41,41,125,44,50,51,57,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,48,48,41,44,105,61,110,40,49,48,55,53,41,46,100,111,99,117,109,101,110,116,44,111,61,114,40,105,41,38,38,114,40,105,46,99,114,101,97,116,101,69,108,101,109,101,110,116,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,63,105,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,116,41,58,123,125,125,125,44,52,53,53,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,48,55,53,41,44,105,61,110,40,49,50,55,53,41,44,111,61,110,40,57,57,57,41,44,97,61,110,40,50,53,53,48,41,44,115,61,110,40,52,51,50,52,41,44,99,61,34,112,114,111,116,111,116,121,112,101,34,44,117,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,108,44,102,44,104,44,100,61,116,38,117,46,70,44,112,61,116,38,117,46,71,44,118,61,116,38,117,46,83,44,103,61,116,38,117,46,80,44,109,61,116,38,117,46,66,44,98,61,116,38,117,46,87,44,121,61,112,63,105,58,105,91,101,93,124,124,40,105,91,101,93,61,123,125,41,44,119,61,121,91,99,93,44,95,61,112,63,114,58,118,63,114,91,101,93,58,40,114,91,101,93,124,124,123,125,41,91,99,93,59,102,111,114,40,108,32,105,110,32,112,38,38,40,110,61,101,41,44,110,41,102,61,33,100,38,38,95,38,38,118,111,105,100,32,48,33,61,61,95,91,108,93,44,102,38,38,115,40,121,44,108,41,124,124,40,104,61,102,63,95,91,108,93,58,110,91,108,93,44,121,91,108,93,61,112,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,95,91,108,93,63,110,91,108,93,58,109,38,38,102,63,111,40,104,44,114,41,58,98,38,38,95,91,108,93,61,61,104,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,101,44,110,44,114,41,123,105,102,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,116,41,123,115,119,105,116,99,104,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,101,119,32,116,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,101,119,32,116,40,101,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,101,119,32,116,40,101,44,110,41,125,114,101,116,117,114,110,32,110,101,119,32,116,40,101,44,110,44,114,41,125,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,59,114,101,116,117,114,110,32,101,91,99,93,61,116,91,99,93,44,101,125,40,104,41,58,103,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,104,63,111,40,70,117,110,99,116,105,111,110,46,99,97,108,108,44,104,41,58,104,44,103,38,38,40,40,121,46,118,105,114,116,117,97,108,124,124,40,121,46,118,105,114,116,117,97,108,61,123,125,41,41,91,108,93,61,104,44,116,38,117,46,82,38,38,119,38,38,33,119,91,108,93,38,38,97,40,119,44,108,44,104,41,41,41,125,59,117,46,70,61,49,44,117,46,71,61,50,44,117,46,83,61,52,44,117,46,80,61,56,44,117,46,66,61,49,54,44,117,46,87,61,51,50,44,117,46,85,61,54,52,44,117,46,82,61,49,50,56,44,116,46,101,120,112,111,114,116,115,61,117,125,44,51,56,51,52,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,116,114,121,123,114,101,116,117,114,110,33,33,116,40,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,33,48,125,125,125,44,49,48,55,53,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,101,120,112,111,114,116,115,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,119,105,110,100,111,119,46,77,97,116,104,61,61,77,97,116,104,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,115,101,108,102,38,38,115,101,108,102,46,77,97,116,104,61,61,77,97,116,104,63,115,101,108,102,58,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,59,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,95,95,103,38,38,40,95,95,103,61,101,41,125,44,52,51,50,52,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,123,125,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,101,46,99,97,108,108,40,116,44,110,41,125,125,44,50,53,53,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,50,52,57,41,44,105,61,110,40,51,54,53,50,41,59,116,46,101,120,112,111,114,116,115,61,110,40,54,57,55,41,63,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,114,46,102,40,116,44,101,44,105,40,49,44,110,41,41,125,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,91,101,93,61,110,44,116,125,125,44,51,51,57,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,46,101,120,112,111,114,116,115,61,33,110,40,54,57,55,41,38,38,33,110,40,51,56,51,52,41,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,33,61,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,110,40,50,51,57,52,41,40,34,100,105,118,34,41,44,34,97,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,125,125,41,46,97,125,41,41,125,44,55,48,48,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,63,110,117,108,108,33,61,61,116,58,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,125,125,44,50,52,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,51,50,48,54,41,44,105,61,110,40,51,51,57,51,41,44,111,61,110,40,51,51,55,55,41,44,97,61,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,59,101,46,102,61,110,40,54,57,55,41,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,114,40,116,41,44,101,61,111,40,101,44,33,48,41,44,114,40,110,41,44,105,41,116,114,121,123,114,101,116,117,114,110,32,97,40,116,44,101,44,110,41,125,99,97,116,99,104,40,115,41,123,125,105,102,40,34,103,101,116,34,105,110,32,110,124,124,34,115,101,116,34,105,110,32,110,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,34,65,99,99,101,115,115,111,114,115,32,110,111,116,32,115,117,112,112,111,114,116,101,100,33,34,41,59,114,101,116,117,114,110,34,118,97,108,117,101,34,105,110,32,110,38,38,40,116,91,101,93,61,110,46,118,97,108,117,101,41,44,116,125,125,44,51,54,53,50,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,123,101,110,117,109,101,114,97,98,108,101,58,33,40,49,38,116,41,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,40,50,38,116,41,44,119,114,105,116,97,98,108,101,58,33,40,52,38,116,41,44,118,97,108,117,101,58,101,125,125,125,44,51,51,55,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,48,48,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,114,40,116,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,110,44,105,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,40,110,61,116,46,116,111,83,116,114,105,110,103,41,38,38,33,114,40,105,61,110,46,99,97,108,108,40,116,41,41,41,114,101,116,117,114,110,32,105,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,110,61,116,46,118,97,108,117,101,79,102,41,38,38,33,114,40,105,61,110,46,99,97,108,108,40,116,41,41,41,114,101,116,117,114,110,32,105,59,105,102,40,33,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,110,61,116,46,116,111,83,116,114,105,110,103,41,38,38,33,114,40,105,61,110,46,99,97,108,108,40,116,41,41,41,114,101,116,117,114,110,32,105,59,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,39,116,32,99,111,110,118,101,114,116,32,111,98,106,101,99,116,32,116,111,32,112,114,105,109,105,116,105,118,101,32,118,97,108,117,101,34,41,125,125,44,52,50,57,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,53,53,51,41,59,114,40,114,46,71,44,123,103,108,111,98,97,108,58,110,40,49,48,55,53,41,125,41,125,44,51,48,55,57,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,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,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,116,43,34,32,105,115,32,110,111,116,32,97,32,102,117,110,99,116,105,111,110,33,34,41,59,114,101,116,117,114,110,32,116,125,125,44,51,51,55,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,52,50,54,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,116,38,38,34,78,117,109,98,101,114,34,33,61,114,40,116,41,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,101,41,59,114,101,116,117,114,110,43,116,125,125,44,50,56,48,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,55,51,57,41,40,34,117,110,115,99,111,112,97,98,108,101,115,34,41,44,105,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,59,118,111,105,100,32,48,61,61,105,91,114,93,38,38,110,40,56,52,52,50,41,40,105,44,114,44,123,125,41,44,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,91,114,93,91,116,93,61,33,48,125,125,44,57,57,53,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,55,51,56,52,41,40,33,48,41,59,116,46,101,120,112,111,114,116,115,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,43,40,110,63,114,40,116,44,101,41,46,108,101,110,103,116,104,58,49,41,125,125,44,53,57,57,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,105,102,40,33,40,116,32,105,110,115,116,97,110,99,101,111,102,32,101,41,124,124,118,111,105,100,32,48,33,61,61,114,38,38,114,32,105,110,32,116,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,110,43,34,58,32,105,110,99,111,114,114,101,99,116,32,105,110,118,111,99,97,116,105,111,110,33,34,41,59,114,101,116,117,114,110,32,116,125,125,44,57,55,49,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,56,49,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,114,40,116,41,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,116,43,34,32,105,115,32,110,111,116,32,97,110,32,111,98,106,101,99,116,33,34,41,59,114,101,116,117,114,110,32,116,125,125,44,52,56,57,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,50,48,48,41,44,105,61,110,40,53,48,52,52,41,44,111,61,110,40,49,56,51,56,41,59,116,46,101,120,112,111,114,116,115,61,91,93,46,99,111,112,121,87,105,116,104,105,110,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,114,40,116,104,105,115,41,44,97,61,111,40,110,46,108,101,110,103,116,104,41,44,115,61,105,40,116,44,97,41,44,99,61,105,40,101,44,97,41,44,117,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,50,63,97,114,103,117,109,101,110,116,115,91,50,93,58,118,111,105,100,32,48,44,108,61,77,97,116,104,46,109,105,110,40,40,118,111,105,100,32,48,61,61,61,117,63,97,58,105,40,117,44,97,41,41,45,99,44,97,45,115,41,44,102,61,49,59,99,60,115,38,38,115,60,99,43,108,38,38,40,102,61,45,49,44,99,43,61,108,45,49,44,115,43,61,108,45,49,41,59,119,104,105,108,101,40,108,45,45,32,62,48,41,99,32,105,110,32,110,63,110,91,115,93,61,110,91,99,93,58,100,101,108,101,116,101,32,110,91,115,93,44,115,43,61,102,44,99,43,61,102,59,114,101,116,117,114,110,32,110,125,125,44,56,53,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,50,48,48,41,44,105,61,110,40,53,48,52,52,41,44,111,61,110,40,49,56,51,56,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,114,40,116,104,105,115,41,44,110,61,111,40,101,46,108,101,110,103,116,104,41,44,97,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,115,61,105,40,97,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,44,110,41,44,99,61,97,62,50,63,97,114,103,117,109,101,110,116,115,91,50,93,58,118,111,105,100,32,48,44,117,61,118,111,105,100,32,48,61,61,61,99,63,110,58,105,40,99,44,110,41,59,119,104,105,108,101,40,117,62,115,41,101,91,115,43,43,93,61,116,59,114,101,116,117,114,110,32,101,125,125,44,49,53,52,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,56,53,48,48,41,44,105,61,110,40,49,56,51,56,41,44,111,61,110,40,53,48,52,52,41,59,116,46,101,120,112,111,114,116,115,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,44,110,44,97,41,123,118,97,114,32,115,44,99,61,114,40,101,41,44,117,61,105,40,99,46,108,101,110,103,116,104,41,44,108,61,111,40,97,44,117,41,59,105,102,40,116,38,38,110,33,61,110,41,123,119,104,105,108,101,40,117,62,108,41,105,102,40,115,61,99,91,108,43,43,93,44,115,33,61,115,41,114,101,116,117,114,110,33,48,125,101,108,115,101,32,102,111,114,40,59,117,62,108,59,108,43,43,41,105,102,40,40,116,124,124,108,32,105,110,32,99,41,38,38,99,91,108,93,61,61,61,110,41,114,101,116,117,114,110,32,116,124,124,108,124,124,48,59,114,101,116,117,114,110,33,116,38,38,45,49,125,125,125,44,54,57,51,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,50,55,57,52,41,44,105,61,110,40,57,55,53,41,44,111,61,110,40,52,50,48,48,41,44,97,61,110,40,49,56,51,56,41,44,115,61,110,40,52,48,56,55,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,49,61,61,116,44,99,61,50,61,61,116,44,117,61,51,61,61,116,44,108,61,52,61,61,116,44,102,61,54,61,61,116,44,104,61,53,61,61,116,124,124,102,44,100,61,101,124,124,115,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,115,44,112,41,123,102,111,114,40,118,97,114,32,118,44,103,44,109,61,111,40,101,41,44,98,61,105,40,109,41,44,121,61,114,40,115,44,112,44,51,41,44,119,61,97,40,98,46,108,101,110,103,116,104,41,44,95,61,48,44,120,61,110,63,100,40,101,44,119,41,58,99,63,100,40,101,44,48,41,58,118,111,105,100,32,48,59,119,62,95,59,95,43,43,41,105,102,40,40,104,124,124,95,32,105,110,32,98,41,38,38,40,118,61,98,91,95,93,44,103,61,121,40,118,44,95,44,109,41,44,116,41,41,105,102,40,110,41,120,91,95,93,61,103,59,101,108,115,101,32,105,102,40,103,41,115,119,105,116,99,104,40,116,41,123,99,97,115,101,32,51,58,114,101,116,117,114,110,33,48,59,99,97,115,101,32,53,58,114,101,116,117,114,110,32,118,59,99,97,115,101,32,54,58,114,101,116,117,114,110,32,95,59,99,97,115,101,32,50,58,120,46,112,117,115,104,40,118,41,125,101,108,115,101,32,105,102,40,108,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,32,102,63,45,49,58,117,124,124,108,63,108,58,120,125,125,125,44,57,56,53,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,51,48,55,57,41,44,105,61,110,40,52,50,48,48,41,44,111,61,110,40,57,55,53,41,44,97,61,110,40,49,56,51,56,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,115,44,99,41,123,114,40,101,41,59,118,97,114,32,117,61,105,40,116,41,44,108,61,111,40,117,41,44,102,61,97,40,117,46,108,101,110,103,116,104,41,44,104,61,99,63,102,45,49,58,48,44,100,61,99,63,45,49,58,49,59,105,102,40,110,60,50,41,102,111,114,40,59,59,41,123,105,102,40,104,32,105,110,32,108,41,123,115,61,108,91,104,93,44,104,43,61,100,59,98,114,101,97,107,125,105,102,40,104,43,61,100,44,99,63,104,60,48,58,102,60,61,104,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,34,82,101,100,117,99,101,32,111,102,32,101,109,112,116,121,32,97,114,114,97,121,32,119,105,116,104,32,110,111,32,105,110,105,116,105,97,108,32,118,97,108,117,101,34,41,125,102,111,114,40,59,99,63,104,62,61,48,58,102,62,104,59,104,43,61,100,41,104,32,105,110,32,108,38,38,40,115,61,101,40,115,44,108,91,104,93,44,104,44,117,41,41,59,114,101,116,117,114,110,32,115,125,125,44,52,56,52,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,56,49,41,44,105,61,110,40,54,56,57,41,44,111,61,110,40,57,55,51,57,41,40,34,115,112,101,99,105,101,115,34,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,105,40,116,41,38,38,40,101,61,116,46,99,111,110,115,116,114,117,99,116,111,114,44,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,101,124,124,101,33,61,61,65,114,114,97,121,38,38,33,105,40,101,46,112,114,111,116,111,116,121,112,101,41,124,124,40,101,61,118,111,105,100,32,48,41,44,114,40,101,41,38,38,40,101,61,101,91,111,93,44,110,117,108,108,61,61,61,101,38,38,40,101,61,118,111,105,100,32,48,41,41,41,44,118,111,105,100,32,48,61,61,61,101,63,65,114,114,97,121,58,101,125,125,44,52,48,56,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,56,52,57,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,101,119,40,114,40,116,41,41,40,101,41,125,125,44,54,57,54,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,51,48,55,57,41,44,105,61,110,40,55,52,56,49,41,44,111,61,110,40,51,53,51,52,41,44,97,61,91,93,46,115,108,105,99,101,44,115,61,123,125,44,99,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,33,40,101,32,105,110,32,115,41,41,123,102,111,114,40,118,97,114,32,114,61,91,93,44,105,61,48,59,105,60,101,59,105,43,43,41,114,91,105,93,61,34,97,91,34,43,105,43,34,93,34,59,115,91,101,93,61,70,117,110,99,116,105,111,110,40,34,70,44,97,34,44,34,114,101,116,117,114,110,32,110,101,119,32,70,40,34,43,114,46,106,111,105,110,40,34,44,34,41,43,34,41,34,41,125,114,101,116,117,114,110,32,115,91,101,93,40,116,44,110,41,125,59,116,46,101,120,112,111,114,116,115,61,70,117,110,99,116,105,111,110,46,98,105,110,100,124,124,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,114,40,116,104,105,115,41,44,110,61,97,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,49,41,44,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,114,61,110,46,99,111,110,99,97,116,40,97,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,59,114,101,116,117,114,110,32,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,115,63,99,40,101,44,114,46,108,101,110,103,116,104,44,114,41,58,111,40,101,44,114,44,116,41,125,59,114,101,116,117,114,110,32,105,40,101,46,112,114,111,116,111,116,121,112,101,41,38,38,40,115,46,112,114,111,116,111,116,121,112,101,61,101,46,112,114,111,116,111,116,121,112,101,41,44,115,125,125,44,50,56,52,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,52,50,54,41,44,105,61,110,40,57,55,51,57,41,40,34,116,111,83,116,114,105,110,103,84,97,103,34,41,44,111,61,34,65,114,103,117,109,101,110,116,115,34,61,61,114,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,44,97,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,114,121,123,114,101,116,117,114,110,32,116,91,101,93,125,99,97,116,99,104,40,110,41,123,125,125,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,115,59,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,34,85,110,100,101,102,105,110,101,100,34,58,110,117,108,108,61,61,61,116,63,34,78,117,108,108,34,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,40,110,61,97,40,101,61,79,98,106,101,99,116,40,116,41,44,105,41,41,63,110,58,111,63,114,40,101,41,58,34,79,98,106,101,99,116,34,61,61,40,115,61,114,40,101,41,41,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,46,99,97,108,108,101,101,63,34,65,114,103,117,109,101,110,116,115,34,58,115,125,125,44,57,52,50,54,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,123,125,46,116,111,83,116,114,105,110,103,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,99,97,108,108,40,116,41,46,115,108,105,99,101,40,56,44,45,49,41,125,125,44,53,49,52,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,51,53,51,48,41,46,102,44,105,61,110,40,50,53,52,53,41,44,111,61,110,40,52,48,57,50,41,44,97,61,110,40,50,55,57,52,41,44,115,61,110,40,53,57,57,41,44,99,61,110,40,50,57,55,49,41,44,117,61,110,40,57,49,50,49,41,44,108,61,110,40,56,54,49,49,41,44,102,61,110,40,53,57,57,51,41,44,104,61,110,40,49,57,49,54,41,44,100,61,110,40,50,49,53,51,41,46,102,97,115,116,75,101,121,44,112,61,110,40,49,54,48,51,41,44,118,61,104,63,34,95,115,34,58,34,115,105,122,101,34,44,103,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,100,40,101,41,59,105,102,40,34,70,34,33,61,61,114,41,114,101,116,117,114,110,32,116,46,95,105,91,114,93,59,102,111,114,40,110,61,116,46,95,102,59,110,59,110,61,110,46,110,41,105,102,40,110,46,107,61,61,101,41,114,101,116,117,114,110,32,110,125,59,116,46,101,120,112,111,114,116,115,61,123,103,101,116,67,111,110,115,116,114,117,99,116,111,114,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,117,41,123,118,97,114,32,108,61,116,40,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,115,40,116,44,108,44,101,44,34,95,105,34,41,44,116,46,95,116,61,101,44,116,46,95,105,61,105,40,110,117,108,108,41,44,116,46,95,102,61,118,111,105,100,32,48,44,116,46,95,108,61,118,111,105,100,32,48,44,116,91,118,93,61,48,44,118,111,105,100,32,48,33,61,114,38,38,99,40,114,44,110,44,116,91,117,93,44,116,41,125,41,41,59,114,101,116,117,114,110,32,111,40,108,46,112,114,111,116,111,116,121,112,101,44,123,99,108,101,97,114,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,112,40,116,104,105,115,44,101,41,44,110,61,116,46,95,105,44,114,61,116,46,95,102,59,114,59,114,61,114,46,110,41,114,46,114,61,33,48,44,114,46,112,38,38,40,114,46,112,61,114,46,112,46,110,61,118,111,105,100,32,48,41,44,100,101,108,101,116,101,32,110,91,114,46,105,93,59,116,46,95,102,61,116,46,95,108,61,118,111,105,100,32,48,44,116,91,118,93,61,48,125,44,100,101,108,101,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,112,40,116,104,105,115,44,101,41,44,114,61,103,40,110,44,116,41,59,105,102,40,114,41,123,118,97,114,32,105,61,114,46,110,44,111,61,114,46,112,59,100,101,108,101,116,101,32,110,46,95,105,91,114,46,105,93,44,114,46,114,61,33,48,44,111,38,38,40,111,46,110,61,105,41,44,105,38,38,40,105,46,112,61,111,41,44,110,46,95,102,61,61,114,38,38,40,110,46,95,102,61,105,41,44,110,46,95,108,61,61,114,38,38,40,110,46,95,108,61,111,41,44,110,91,118,93,45,45,125,114,101,116,117,114,110,33,33,114,125,44,102,111,114,69,97,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,104,105,115,44,101,41,59,118,97,114,32,110,44,114,61,97,40,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,44,51,41,59,119,104,105,108,101,40,110,61,110,63,110,46,110,58,116,104,105,115,46,95,102,41,123,114,40,110,46,118,44,110,46,107,44,116,104,105,115,41,59,119,104,105,108,101,40,110,38,38,110,46,114,41,110,61,110,46,112,125,125,44,104,97,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,33,103,40,112,40,116,104,105,115,44,101,41,44,116,41,125,125,41,44,104,38,38,114,40,108,46,112,114,111,116,111,116,121,112,101,44,34,115,105,122,101,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,40,116,104,105,115,44,101,41,91,118,93,125,125,41,44,108,125,44,100,101,102,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,111,61,103,40,116,44,101,41,59,114,101,116,117,114,110,32,111,63,111,46,118,61,110,58,40,116,46,95,108,61,111,61,123,105,58,105,61,100,40,101,44,33,48,41,44,107,58,101,44,118,58,110,44,112,58,114,61,116,46,95,108,44,110,58,118,111,105,100,32,48,44,114,58,33,49,125,44,116,46,95,102,124,124,40,116,46,95,102,61,111,41,44,114,38,38,40,114,46,110,61,111,41,44,116,91,118,93,43,43,44,34,70,34,33,61,61,105,38,38,40,116,46,95,105,91,105,93,61,111,41,41,44,116,125,44,103,101,116,69,110,116,114,121,58,103,44,115,101,116,83,116,114,111,110,103,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,117,40,116,44,101,44,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,116,61,112,40,116,44,101,41,44,116,104,105,115,46,95,107,61,110,44,116,104,105,115,46,95,108,61,118,111,105,100,32,48,125,41,44,40,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,46,95,107,44,110,61,116,46,95,108,59,119,104,105,108,101,40,110,38,38,110,46,114,41,110,61,110,46,112,59,114,101,116,117,114,110,32,116,46,95,116,38,38,40,116,46,95,108,61,110,61,110,63,110,46,110,58,116,46,95,116,46,95,102,41,63,108,40,48,44,34,107,101,121,115,34,61,61,101,63,110,46,107,58,34,118,97,108,117,101,115,34,61,61,101,63,110,46,118,58,91,110,46,107,44,110,46,118,93,41,58,40,116,46,95,116,61,118,111,105,100,32,48,44,108,40,49,41,41,125,41,44,110,63,34,101,110,116,114,105,101,115,34,58,34,118,97,108,117,101,115,34,44,33,110,44,33,48,41,44,102,40,101,41,125,125,125,44,51,53,48,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,48,57,50,41,44,105,61,110,40,50,49,53,51,41,46,103,101,116,87,101,97,107,44,111,61,110,40,57,55,49,57,41,44,97,61,110,40,55,52,56,49,41,44,115,61,110,40,53,57,57,41,44,99,61,110,40,50,57,55,49,41,44,117,61,110,40,54,57,51,52,41,44,108,61,110,40,49,48,54,51,41,44,102,61,110,40,49,54,48,51,41,44,104,61,117,40,53,41,44,100,61,117,40,54,41,44,112,61,48,44,118,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,95,108,124,124,40,116,46,95,108,61,110,101,119,32,103,41,125,44,103,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,97,61,91,93,125,44,109,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,104,40,116,46,97,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,61,61,61,101,125,41,41,125,59,103,46,112,114,111,116,111,116,121,112,101,61,123,103,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,40,116,104,105,115,44,116,41,59,105,102,40,101,41,114,101,116,117,114,110,32,101,91,49,93,125,44,104,97,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,33,109,40,116,104,105,115,44,116,41,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,109,40,116,104,105,115,44,116,41,59,110,63,110,91,49,93,61,101,58,116,104,105,115,46,97,46,112,117,115,104,40,91,116,44,101,93,41,125,44,100,101,108,101,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,100,40,116,104,105,115,46,97,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,48,93,61,61,61,116,125,41,41,59,114,101,116,117,114,110,126,101,38,38,116,104,105,115,46,97,46,115,112,108,105,99,101,40,101,44,49,41,44,33,33,126,101,125,125,44,116,46,101,120,112,111,114,116,115,61,123,103,101,116,67,111,110,115,116,114,117,99,116,111,114,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,111,41,123,118,97,114,32,117,61,116,40,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,115,40,116,44,117,44,101,44,34,95,105,34,41,44,116,46,95,116,61,101,44,116,46,95,105,61,112,43,43,44,116,46,95,108,61,118,111,105,100,32,48,44,118,111,105,100,32,48,33,61,114,38,38,99,40,114,44,110,44,116,91,111,93,44,116,41,125,41,41,59,114,101,116,117,114,110,32,114,40,117,46,112,114,111,116,111,116,121,112,101,44,123,100,101,108,101,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,40,116,41,41,114,101,116,117,114,110,33,49,59,118,97,114,32,110,61,105,40,116,41,59,114,101,116,117,114,110,33,48,61,61,61,110,63,118,40,102,40,116,104,105,115,44,101,41,41,91,34,100,101,108,101,116,101,34,93,40,116,41,58,110,38,38,108,40,110,44,116,104,105,115,46,95,105,41,38,38,100,101,108,101,116,101,32,110,91,116,104,105,115,46,95,105,93,125,44,104,97,115,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,40,116,41,41,114,101,116,117,114,110,33,49,59,118,97,114,32,110,61,105,40,116,41,59,114,101,116,117,114,110,33,48,61,61,61,110,63,118,40,102,40,116,104,105,115,44,101,41,41,46,104,97,115,40,116,41,58,110,38,38,108,40,110,44,116,104,105,115,46,95,105,41,125,125,41,44,117,125,44,100,101,102,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,105,40,111,40,101,41,44,33,48,41,59,114,101,116,117,114,110,33,48,61,61,61,114,63,118,40,116,41,46,115,101,116,40,101,44,110,41,58,114,91,116,46,95,105,93,61,110,44,116,125,44,117,102,115,116,111,114,101,58,118,125,125,44,56,48,57,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,54,51,52,49,41,44,105,61,110,40,53,51,54,54,41,44,111,61,110,40,49,53,54,52,41,44,97,61,110,40,52,48,57,50,41,44,115,61,110,40,50,49,53,51,41,44,99,61,110,40,50,57,55,49,41,44,117,61,110,40,53,57,57,41,44,108,61,110,40,55,52,56,49,41,44,102,61,110,40,49,50,52,48,41,44,104,61,110,40,49,52,54,49,41,44,100,61,110,40,49,51,48,57,41,44,112,61,110,40,52,56,48,53,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,118,44,103,44,109,41,123,118,97,114,32,98,61,114,91,116,93,44,121,61,98,44,119,61,103,63,34,115,101,116,34,58,34,97,100,100,34,44,95,61,121,38,38,121,46,112,114,111,116,111,116,121,112,101,44,120,61,123,125,44,79,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,95,91,116,93,59,111,40,95,44,116,44,34,100,101,108,101,116,101,34,61,61,116,124,124,34,104,97,115,34,61,61,116,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,40,109,38,38,33,108,40,116,41,41,38,38,101,46,99,97,108,108,40,116,104,105,115,44,48,61,61,61,116,63,48,58,116,41,125,58,34,103,101,116,34,61,61,116,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,109,38,38,33,108,40,116,41,63,118,111,105,100,32,48,58,101,46,99,97,108,108,40,116,104,105,115,44,48,61,61,61,116,63,48,58,116,41,125,58,34,97,100,100,34,61,61,116,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,99,97,108,108,40,116,104,105,115,44,48,61,61,61,116,63,48,58,116,41,44,116,104,105,115,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,101,46,99,97,108,108,40,116,104,105,115,44,48,61,61,61,116,63,48,58,116,44,110,41,44,116,104,105,115,125,41,125,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,121,38,38,40,109,124,124,95,46,102,111,114,69,97,99,104,38,38,33,102,40,40,102,117,110,99,116,105,111,110,40,41,123,40,110,101,119,32,121,41,46,101,110,116,114,105,101,115,40,41,46,110,101,120,116,40,41,125,41,41,41,41,123,118,97,114,32,83,61,110,101,119,32,121,44,107,61,83,91,119,93,40,109,63,123,125,58,45,48,44,49,41,33,61,83,44,67,61,102,40,40,102,117,110,99,116,105,111,110,40,41,123,83,46,104,97,115,40,49,41,125,41,41,44,80,61,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,110,101,119,32,121,40,116,41,125,41,41,44,84,61,33,109,38,38,102,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,121,44,101,61,53,59,119,104,105,108,101,40,101,45,45,41,116,91,119,93,40,101,44,101,41,59,114,101,116,117,114,110,33,116,46,104,97,115,40,45,48,41,125,41,41,59,80,124,124,40,121,61,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,117,40,101,44,121,44,116,41,59,118,97,114,32,114,61,112,40,110,101,119,32,98,44,101,44,121,41,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,110,38,38,99,40,110,44,103,44,114,91,119,93,44,114,41,44,114,125,41,41,44,121,46,112,114,111,116,111,116,121,112,101,61,95,44,95,46,99,111,110,115,116,114,117,99,116,111,114,61,121,41,44,40,67,124,124,84,41,38,38,40,79,40,34,100,101,108,101,116,101,34,41,44,79,40,34,104,97,115,34,41,44,103,38,38,79,40,34,103,101,116,34,41,41,44,40,84,124,124,107,41,38,38,79,40,119,41,44,109,38,38,95,46,99,108,101,97,114,38,38,100,101,108,101,116,101,32,95,46,99,108,101,97,114,125,101,108,115,101,32,121,61,118,46,103,101,116,67,111,110,115,116,114,117,99,116,111,114,40,101,44,116,44,103,44,119,41,44,97,40,121,46,112,114,111,116,111,116,121,112,101,44,110,41,44,115,46,78,69,69,68,61,33,48,59,114,101,116,117,114,110,32,100,40,121,44,116,41,44,120,91,116,93,61,121,44,105,40,105,46,71,43,105,46,87,43,105,46,70,42,40,121,33,61,98,41,44,120,41,44,109,124,124,118,46,115,101,116,83,116,114,111,110,103,40,121,44,116,44,103,41,44,121,125,125,44,52,52,49,49,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,101,120,112,111,114,116,115,61,123,118,101,114,115,105,111,110,58,34,50,46,54,46,49,50,34,125,59,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,95,95,101,38,38,40,95,95,101,61,101,41,125,44,49,54,55,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,51,53,51,48,41,44,105,61,110,40,49,55,54,49,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,32,105,110,32,116,63,114,46,102,40,116,44,101,44,105,40,48,44,110,41,41,58,116,91,101,93,61,110,125,125,44,50,55,57,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,51,48,55,57,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,114,40,116,41,44,118,111,105,100,32,48,61,61,61,101,41,114,101,116,117,114,110,32,116,59,115,119,105,116,99,104,40,110,41,123,99,97,115,101,32,49,58,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,99,97,108,108,40,101,44,110,41,125,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,116,46,99,97,108,108,40,101,44,110,44,114,41,125,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,44,105,41,123,114,101,116,117,114,110,32,116,46,99,97,108,108,40,101,44,110,44,114,44,105,41,125,125,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,46,97,112,112,108,121,40,101,44,97,114,103,117,109,101,110,116,115,41,125,125,125,44,49,55,57,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,49,50,52,48,41,44,105,61,68,97,116,101,46,112,114,111,116,111,116,121,112,101,46,103,101,116,84,105,109,101,44,111,61,68,97,116,101,46,112,114,111,116,111,116,121,112,101,46,116,111,73,83,79,83,116,114,105,110,103,44,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,62,57,63,116,58,34,48,34,43,116,125,59,116,46,101,120,112,111,114,116,115,61,114,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,48,51,56,53,45,48,55,45,50,53,84,48,55,58,48,54,58,51,57,46,57,57,57,90,34,33,61,111,46,99,97,108,108,40,110,101,119,32,68,97,116,101,40,45,53,48,48,48,48,48,48,48,48,48,48,48,48,49,41,41,125,41,41,124,124,33,114,40,40,102,117,110,99,116,105,111,110,40,41,123,111,46,99,97,108,108,40,110,101,119,32,68,97,116,101,40,78,97,78,41,41,125,41,41,63,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,105,115,70,105,110,105,116,101,40,105,46,99,97,108,108,40,116,104,105,115,41,41,41,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,116,105,109,101,32,118,97,108,117,101,34,41,59,118,97,114,32,116,61,116,104,105,115,44,101,61,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,44,110,61,116,46,103,101,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,41,44,114,61,101,60,48,63,34,45,34,58,101,62,57,57,57,57,63,34,43,34,58,34,34,59,114,101,116,117,114,110,32,114,43,40,34,48,48,48,48,48,34,43,77,97,116,104,46,97,98,115,40,101,41,41,46,115,108,105,99,101,40,114,63,45,54,58,45,52,41,43,34,45,34,43,97,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,49,41,43,34,45,34,43,97,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,41,43,34,84,34,43,97,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,41,43,34,58,34,43,97,40,116,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,41,43,34,58,34,43,97,40,116,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,41,43,34,46,34,43,40,110,62,57,57,63,110,58,34,48,34,43,97,40,110,41,41,43,34,90,34,125,58,111,125,44,55,54,56,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,57,55,49,57,41,44,105,61,110,40,57,50,52,49,41,44,111,61,34,110,117,109,98,101,114,34,59,116,46,101,120,112,111,114,116,115,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,61,116,38,38,116,33,61,61,111,38,38,34,100,101,102,97,117,108,116,34,33,61,61,116,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,99,111,114,114,101,99,116,32,104,105,110,116,34,41,59,114,101,116,117,114,110,32,105,40,114,40,116,104,105,115,41,44,116,33,61,111,41,125,125,44,51,53,56,57,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,118,111,105,100,32,48,61,61,116,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,39,116,32,99,97,108,108,32,109,101,116,104,111,100,32,111,110,32,32,34,43,116,41,59,114,101,116,117,114,110,32,116,125,125,44,49,57,49,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,46,101,120,112,111,114,116,115,61,33,110,40,49,50,52,48,41,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,33,61,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,34,97,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,125,125,41,46,97,125,41,41,125,44,51,51,56,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,56,49,41,44,105,61,110,40,54,51,52,49,41,46,100,111,99,117,109,101,110,116,44,111,61,114,40,105,41,38,38,114,40,105,46,99,114,101,97,116,101,69,108,101,109,101,110,116,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,63,105,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,116,41,58,123,125,125,125,44,55,53,57,48,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,34,99,111,110,115,116,114,117,99,116,111,114,44,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,105,115,80,114,111,116,111,116,121,112,101,79,102,44,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,44,116,111,76,111,99,97,108,101,83,116,114,105,110,103,44,116,111,83,116,114,105,110,103,44,118,97,108,117,101,79,102,34,46,115,112,108,105,116,40,34,44,34,41,125,44,52,53,51,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,56,50,53,41,44,105,61,110,40,50,53,50,48,41,44,111,61,110,40,49,49,52,52,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,114,40,116,41,44,110,61,105,46,102,59,105,102,40,110,41,123,118,97,114,32,97,44,115,61,110,40,116,41,44,99,61,111,46,102,44,117,61,48,59,119,104,105,108,101,40,115,46,108,101,110,103,116,104,62,117,41,99,46,99,97,108,108,40,116,44,97,61,115,91,117,43,43,93,41,38,38,101,46,112,117,115,104,40,97,41,125,114,101,116,117,114,110,32,101,125,125,44,53,51,54,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,54,51,52,49,41,44,105,61,110,40,52,52,49,49,41,44,111,61,110,40,56,52,52,50,41,44,97,61,110,40,49,53,54,52,41,44,115,61,110,40,50,55,57,52,41,44,99,61,34,112,114,111,116,111,116,121,112,101,34,44,117,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,108,44,102,44,104,44,100,44,112,61,116,38,117,46,70,44,118,61,116,38,117,46,71,44,103,61,116,38,117,46,83,44,109,61,116,38,117,46,80,44,98,61,116,38,117,46,66,44,121,61,118,63,114,58,103,63,114,91,101,93,124,124,40,114,91,101,93,61,123,125,41,58,40,114,91,101,93,124,124,123,125,41,91,99,93,44,119,61,118,63,105,58,105,91,101,93,124,124,40,105,91,101,93,61,123,125,41,44,95,61,119,91,99,93,124,124,40,119,91,99,93,61,123,125,41,59,102,111,114,40,108,32,105,110,32,118,38,38,40,110,61,101,41,44,110,41,102,61,33,112,38,38,121,38,38,118,111,105,100,32,48,33,61,61,121,91,108,93,44,104,61,40,102,63,121,58,110,41,91,108,93,44,100,61,98,38,38,102,63,115,40,104,44,114,41,58,109,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,104,63,115,40,70,117,110,99,116,105,111,110,46,99,97,108,108,44,104,41,58,104,44,121,38,38,97,40,121,44,108,44,104,44,116,38,117,46,85,41,44,119,91,108,93,33,61,104,38,38,111,40,119,44,108,44,100,41,44,109,38,38,95,91,108,93,33,61,104,38,38,40,95,91,108,93,61,104,41,125,59,114,46,99,111,114,101,61,105,44,117,46,70,61,49,44,117,46,71,61,50,44,117,46,83,61,52,44,117,46,80,61,56,44,117,46,66,61,49,54,44,117,46,87,61,51,50,44,117,46,85,61,54,52,44,117,46,82,61,49,50,56,44,116,46,101,120,112,111,114,116,115,61,117,125,44,54,56,56,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,55,51,57,41,40,34,109,97,116,99,104,34,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,47,46,47,59,116,114,121,123,34,47,46,47,34,91,116,93,40,101,41,125,99,97,116,99,104,40,110,41,123,116,114,121,123,114,101,116,117,114,110,32,101,91,114,93,61,33,49,44,33,34,47,46,47,34,91,116,93,40,101,41,125,99,97,116,99,104,40,105,41,123,125,125,114,101,116,117,114,110,33,48,125,125,44,49,50,52,48,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,116,114,121,123,114,101,116,117,114,110,33,33,116,40,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,33,48,125,125,125,44,53,51,48,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,56,54,49,53,41,59,118,97,114,32,114,61,110,40,49,53,54,52,41,44,105,61,110,40,56,52,52,50,41,44,111,61,110,40,49,50,52,48,41,44,97,61,110,40,51,53,56,57,41,44,115,61,110,40,57,55,51,57,41,44,99,61,110,40,56,56,54,56,41,44,117,61,115,40,34,115,112,101,99,105,101,115,34,41,44,108,61,33,111,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,47,46,47,59,114,101,116,117,114,110,32,116,46,101,120,101,99,61,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,46,103,114,111,117,112,115,61,123,97,58,34,55,34,125,44,116,125,44,34,55,34,33,61,61,34,34,46,114,101,112,108,97,99,101,40,116,44,34,36,60,97,62,34,41,125,41,41,44,102,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,47,40,63,58,41,47,44,101,61,116,46,101,120,101,99,59,116,46,101,120,101,99,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,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,59,118,97,114,32,110,61,34,97,98,34,46,115,112,108,105,116,40,116,41,59,114,101,116,117,114,110,32,50,61,61,61,110,46,108,101,110,103,116,104,38,38,34,97,34,61,61,61,110,91,48,93,38,38,34,98,34,61,61,61,110,91,49,93,125,40,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,104,61,115,40,116,41,44,100,61,33,111,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,123,125,59,114,101,116,117,114,110,32,101,91,104,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,125,44,55,33,61,34,34,91,116,93,40,101,41,125,41,41,44,112,61,100,63,33,111,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,33,49,44,110,61,47,97,47,59,114,101,116,117,114,110,32,110,46,101,120,101,99,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,61,33,48,44,110,117,108,108,125,44,34,115,112,108,105,116,34,61,61,61,116,38,38,40,110,46,99,111,110,115,116,114,117,99,116,111,114,61,123,125,44,110,46,99,111,110,115,116,114,117,99,116,111,114,91,117,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,125,41,44,110,91,104,93,40,34,34,41,44,33,101,125,41,41,58,118,111,105,100,32,48,59,105,102,40,33,100,124,124,33,112,124,124,34,114,101,112,108,97,99,101,34,61,61,61,116,38,38,33,108,124,124,34,115,112,108,105,116,34,61,61,61,116,38,38,33,102,41,123,118,97,114,32,118,61,47,46,47,91,104,93,44,103,61,110,40,97,44,104,44,34,34,91,116,93,44,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,41,123,114,101,116,117,114,110,32,101,46,101,120,101,99,61,61,61,99,63,100,38,38,33,105,63,123,100,111,110,101,58,33,48,44,118,97,108,117,101,58,118,46,99,97,108,108,40,101,44,110,44,114,41,125,58,123,100,111,110,101,58,33,48,44,118,97,108,117,101,58,116,46,99,97,108,108,40,110,44,101,44,114,41,125,58,123,100,111,110,101,58,33,49,125,125,41,41,44,109,61,103,91,48,93,44,98,61,103,91,49,93,59,114,40,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,44,116,44,109,41,44,105,40,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,44,104,44,50,61,61,101,63,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,98,46,99,97,108,108,40,116,44,116,104,105,115,44,101,41,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,98,46,99,97,108,108,40,116,44,116,104,105,115,41,125,41,125,125,125,44,54,52,51,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,57,55,49,57,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,114,40,116,104,105,115,41,44,101,61,34,34,59,114,101,116,117,114,110,32,116,46,103,108,111,98,97,108,38,38,40,101,43,61,34,103,34,41,44,116,46,105,103,110,111,114,101,67,97,115,101,38,38,40,101,43,61,34,105,34,41,44,116,46,109,117,108,116,105,108,105,110,101,38,38,40,101,43,61,34,109,34,41,44,116,46,117,110,105,99,111,100,101,38,38,40,101,43,61,34,117,34,41,44,116,46,115,116,105,99,107,121,38,38,40,101,43,61,34,121,34,41,44,101,125,125,44,51,56,56,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,54,56,57,41,44,105,61,110,40,55,52,56,49,41,44,111,61,110,40,49,56,51,56,41,44,97,61,110,40,50,55,57,52,41,44,115,61,110,40,57,55,51,57,41,40,34,105,115,67,111,110,99,97,116,83,112,114,101,97,100,97,98,108,101,34,41,59,102,117,110,99,116,105,111,110,32,99,40,116,44,101,44,110,44,117,44,108,44,102,44,104,44,100,41,123,118,97,114,32,112,44,118,44,103,61,108,44,109,61,48,44,98,61,33,33,104,38,38,97,40,104,44,100,44,51,41,59,119,104,105,108,101,40,109,60,117,41,123,105,102,40,109,32,105,110,32,110,41,123,105,102,40,112,61,98,63,98,40,110,91,109,93,44,109,44,101,41,58,110,91,109,93,44,118,61,33,49,44,105,40,112,41,38,38,40,118,61,112,91,115,93,44,118,61,118,111,105,100,32,48,33,61,61,118,63,33,33,118,58,114,40,112,41,41,44,118,38,38,102,62,48,41,103,61,99,40,116,44,101,44,112,44,111,40,112,46,108,101,110,103,116,104,41,44,103,44,102,45,49,41,45,49,59,101,108,115,101,123,105,102,40,103,62,61,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,41,59,116,91,103,93,61,112,125,103,43,43,125,109,43,43,125,114,101,116,117,114,110,32,103,125,116,46,101,120,112,111,114,116,115,61,99,125,44,50,57,55,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,50,55,57,52,41,44,105,61,110,40,53,53,51,57,41,44,111,61,110,40,51,56,57,52,41,44,97,61,110,40,57,55,49,57,41,44,115,61,110,40,49,56,51,56,41,44,99,61,110,40,56,52,52,52,41,44,117,61,123,125,44,108,61,123,125,44,102,61,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,102,44,104,41,123,118,97,114,32,100,44,112,44,118,44,103,44,109,61,104,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,58,99,40,116,41,44,98,61,114,40,110,44,102,44,101,63,50,58,49,41,44,121,61,48,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,109,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,116,43,34,32,105,115,32,110,111,116,32,105,116,101,114,97,98,108,101,33,34,41,59,105,102,40,111,40,109,41,41,123,102,111,114,40,100,61,115,40,116,46,108,101,110,103,116,104,41,59,100,62,121,59,121,43,43,41,105,102,40,103,61,101,63,98,40,97,40,112,61,116,91,121,93,41,91,48,93,44,112,91,49,93,41,58,98,40,116,91,121,93,41,44,103,61,61,61,117,124,124,103,61,61,61,108,41,114,101,116,117,114,110,32,103,125,101,108,115,101,32,102,111,114,40,118,61,109,46,99,97,108,108,40,116,41,59,33,40,112,61,118,46,110,101,120,116,40,41,41,46,100,111,110,101,59,41,105,102,40,103,61,105,40,118,44,98,44,112,46,118,97,108,117,101,44,101,41,44,103,61,61,61,117,124,124,103,61,61,61,108,41,114,101,116,117,114,110,32,103,125,59,102,46,66,82,69,65,75,61,117,44,102,46,82,69,84,85,82,78,61,108,125,44,53,57,55,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,46,101,120,112,111,114,116,115,61,110,40,55,51,53,53,41,40,34,110,97,116,105,118,101,45,102,117,110,99,116,105,111,110,45,116,111,45,115,116,114,105,110,103,34,44,70,117,110,99,116,105,111,110,46,116,111,83,116,114,105,110,103,41,125,44,54,51,52,49,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,101,120,112,111,114,116,115,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,119,105,110,100,111,119,46,77,97,116,104,61,61,77,97,116,104,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,115,101,108,102,38,38,115,101,108,102,46,77,97,116,104,61,61,77,97,116,104,63,115,101,108,102,58,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,59,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,95,95,103,38,38,40,95,95,103,61,101,41,125,44,49,48,54,51,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,123,125,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,101,46,99,97,108,108,40,116,44,110,41,125,125,44,56,52,52,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,51,53,51,48,41,44,105,61,110,40,49,55,54,49,41,59,116,46,101,120,112,111,114,116,115,61,110,40,49,57,49,54,41,63,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,114,46,102,40,116,44,101,44,105,40,49,44,110,41,41,125,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,91,101,93,61,110,44,116,125,125,44,54,49,51,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,54,51,52,49,41,46,100,111,99,117,109,101,110,116,59,116,46,101,120,112,111,114,116,115,61,114,38,38,114,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,125,44,52,51,53,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,46,101,120,112,111,114,116,115,61,33,110,40,49,57,49,54,41,38,38,33,110,40,49,50,52,48,41,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,33,61,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,110,40,51,51,56,51,41,40,34,100,105,118,34,41,44,34,97,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,125,125,41,46,97,125,41,41,125,44,52,56,48,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,56,49,41,44,105,61,110,40,55,49,51,53,41,46,115,101,116,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,111,44,97,61,101,46,99,111,110,115,116,114,117,99,116,111,114,59,114,101,116,117,114,110,32,97,33,61,61,110,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,97,38,38,40,111,61,97,46,112,114,111,116,111,116,121,112,101,41,33,61,61,110,46,112,114,111,116,111,116,121,112,101,38,38,114,40,111,41,38,38,105,38,38,105,40,116,44,111,41,44,116,125,125,44,51,53,51,52,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,118,111,105,100,32,48,61,61,61,110,59,115,119,105,116,99,104,40,101,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,32,114,63,116,40,41,58,116,46,99,97,108,108,40,110,41,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,114,63,116,40,101,91,48,93,41,58,116,46,99,97,108,108,40,110,44,101,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,114,63,116,40,101,91,48,93,44,101,91,49,93,41,58,116,46,99,97,108,108,40,110,44,101,91,48,93,44,101,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,114,63,116,40,101,91,48,93,44,101,91,49,93,44,101,91,50,93,41,58,116,46,99,97,108,108,40,110,44,101,91,48,93,44,101,91,49,93,44,101,91,50,93,41,59,99,97,115,101,32,52,58,114,101,116,117,114,110,32,114,63,116,40,101,91,48,93,44,101,91,49,93,44,101,91,50,93,44,101,91,51,93,41,58,116,46,99,97,108,108,40,110,44,101,91,48,93,44,101,91,49,93,44,101,91,50,93,44,101,91,51,93,41,125,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,110,44,101,41,125,125,44,57,55,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,52,50,54,41,59,116,46,101,120,112,111,114,116,115,61,79,98,106,101,99,116,40,34,122,34,41,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,40,48,41,63,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,83,116,114,105,110,103,34,61,61,114,40,116,41,63,116,46,115,112,108,105,116,40,34,34,41,58,79,98,106,101,99,116,40,116,41,125,125,44,51,56,57,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,57,49,57,41,44,105,61,110,40,57,55,51,57,41,40,34,105,116,101,114,97,116,111,114,34,41,44,111,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,116,38,38,40,114,46,65,114,114,97,121,61,61,61,116,124,124,111,91,105,93,61,61,61,116,41,125,125,44,54,56,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,52,50,54,41,59,116,46,101,120,112,111,114,116,115,61,65,114,114,97,121,46,105,115,65,114,114,97,121,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,65,114,114,97,121,34,61,61,114,40,116,41,125,125,44,50,50,56,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,56,49,41,44,105,61,77,97,116,104,46,102,108,111,111,114,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,114,40,116,41,38,38,105,115,70,105,110,105,116,101,40,116,41,38,38,105,40,116,41,61,61,61,116,125,125,44,55,52,56,49,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,63,110,117,108,108,33,61,61,116,58,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,125,125,44,57,53,52,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,56,49,41,44,105,61,110,40,57,52,50,54,41,44,111,61,110,40,57,55,51,57,41,40,34,109,97,116,99,104,34,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,114,40,116,41,38,38,40,118,111,105,100,32,48,33,61,61,40,101,61,116,91,111,93,41,63,33,33,101,58,34,82,101,103,69,120,112,34,61,61,105,40,116,41,41,125,125,44,53,53,51,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,55,49,57,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,105,41,123,116,114,121,123,114,101,116,117,114,110,32,105,63,101,40,114,40,110,41,91,48,93,44,110,91,49,93,41,58,101,40,110,41,125,99,97,116,99,104,40,97,41,123,118,97,114,32,111,61,116,91,34,114,101,116,117,114,110,34,93,59,116,104,114,111,119,32,118,111,105,100,32,48,33,61,61,111,38,38,114,40,111,46,99,97,108,108,40,116,41,41,44,97,125,125,125,44,55,57,51,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,50,53,52,53,41,44,105,61,110,40,49,55,54,49,41,44,111,61,110,40,49,51,48,57,41,44,97,61,123,125,59,110,40,56,52,52,50,41,40,97,44,110,40,57,55,51,57,41,40,34,105,116,101,114,97,116,111,114,34,41,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,41,41,44,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,46,112,114,111,116,111,116,121,112,101,61,114,40,97,44,123,110,101,120,116,58,105,40,49,44,110,41,125,41,44,111,40,116,44,101,43,34,32,73,116,101,114,97,116,111,114,34,41,125,125,44,57,49,50,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,49,49,51,41,44,105,61,110,40,53,51,54,54,41,44,111,61,110,40,49,53,54,52,41,44,97,61,110,40,56,52,52,50,41,44,115,61,110,40,52,57,49,57,41,44,99,61,110,40,55,57,51,56,41,44,117,61,110,40,49,51,48,57,41,44,108,61,110,40,52,52,48,56,41,44,102,61,110,40,57,55,51,57,41,40,34,105,116,101,114,97,116,111,114,34,41,44,104,61,33,40,91,93,46,107,101,121,115,38,38,34,110,101,120,116,34,105,110,91,93,46,107,101,121,115,40,41,41,44,100,61,34,64,64,105,116,101,114,97,116,111,114,34,44,112,61,34,107,101,121,115,34,44,118,61,34,118,97,108,117,101,115,34,44,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,109,44,98,44,121,44,119,41,123,99,40,110,44,101,44,109,41,59,118,97,114,32,95,44,120,44,79,44,83,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,104,38,38,116,32,105,110,32,84,41,114,101,116,117,114,110,32,84,91,116,93,59,115,119,105,116,99,104,40,116,41,123,99,97,115,101,32,112,58,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,101,119,32,110,40,116,104,105,115,44,116,41,125,59,99,97,115,101,32,118,58,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,101,119,32,110,40,116,104,105,115,44,116,41,125,125,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,101,119,32,110,40,116,104,105,115,44,116,41,125,125,44,107,61,101,43,34,32,73,116,101,114,97,116,111,114,34,44,67,61,98,61,61,118,44,80,61,33,49,44,84,61,116,46,112,114,111,116,111,116,121,112,101,44,106,61,84,91,102,93,124,124,84,91,100,93,124,124,98,38,38,84,91,98,93,44,69,61,106,124,124,83,40,98,41,44,68,61,98,63,67,63,83,40,34,101,110,116,114,105,101,115,34,41,58,69,58,118,111,105,100,32,48,44,65,61,34,65,114,114,97,121,34,61,61,101,38,38,84,46,101,110,116,114,105,101,115,124,124,106,59,105,102,40,65,38,38,40,79,61,108,40,65,46,99,97,108,108,40,110,101,119,32,116,41,41,44,79,33,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,38,38,79,46,110,101,120,116,38,38,40,117,40,79,44,107,44,33,48,41,44,114,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,79,91,102,93,124,124,97,40,79,44,102,44,103,41,41,41,44,67,38,38,106,38,38,106,46,110,97,109,101,33,61,61,118,38,38,40,80,61,33,48,44,69,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,46,99,97,108,108,40,116,104,105,115,41,125,41,44,114,38,38,33,119,124,124,33,104,38,38,33,80,38,38,84,91,102,93,124,124,97,40,84,44,102,44,69,41,44,115,91,101,93,61,69,44,115,91,107,93,61,103,44,98,41,105,102,40,95,61,123,118,97,108,117,101,115,58,67,63,69,58,83,40,118,41,44,107,101,121,115,58,121,63,69,58,83,40,112,41,44,101,110,116,114,105,101,115,58,68,125,44,119,41,102,111,114,40,120,32,105,110,32,95,41,120,32,105,110,32,84,124,124,111,40,84,44,120,44,95,91,120,93,41,59,101,108,115,101,32,105,40,105,46,80,43,105,46,70,42,40,104,124,124,80,41,44,101,44,95,41,59,114,101,116,117,114,110,32,95,125,125,44,49,52,54,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,55,51,57,41,40,34,105,116,101,114,97,116,111,114,34,41,44,105,61,33,49,59,116,114,121,123,118,97,114,32,111,61,91,55,93,91,114,93,40,41,59,111,91,34,114,101,116,117,114,110,34,93,61,102,117,110,99,116,105,111,110,40,41,123,105,61,33,48,125,44,65,114,114,97,121,46,102,114,111,109,40,111,44,40,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,50,125,41,41,125,99,97,116,99,104,40,97,41,123,125,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,101,38,38,33,105,41,114,101,116,117,114,110,33,49,59,118,97,114,32,110,61,33,49,59,116,114,121,123,118,97,114,32,111,61,91,55,93,44,115,61,111,91,114,93,40,41,59,115,46,110,101,120,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,100,111,110,101,58,110,61,33,48,125,125,44,111,91,114,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,125,44,116,40,111,41,125,99,97,116,99,104,40,97,41,123,125,114,101,116,117,114,110,32,110,125,125,44,56,54,49,49,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,123,118,97,108,117,101,58,101,44,100,111,110,101,58,33,33,116,125,125,125,44,52,57,49,57,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,123,125,125,44,53,49,49,51,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,33,49,125,44,55,49,49,55,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,77,97,116,104,46,101,120,112,109,49,59,116,46,101,120,112,111,114,116,115,61,33,101,124,124,101,40,49,48,41,62,50,50,48,50,53,46,52,54,53,55,57,52,56,48,54,55,49,56,124,124,101,40,49,48,41,60,50,50,48,50,53,46,52,54,53,55,57,52,56,48,54,55,49,56,124,124,45,50,101,45,49,55,33,61,101,40,45,50,101,45,49,55,41,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,48,61,61,40,116,61,43,116,41,63,116,58,116,62,45,49,101,45,54,38,38,116,60,49,101,45,54,63,116,43,116,42,116,47,50,58,77,97,116,104,46,101,120,112,40,116,41,45,49,125,58,101,125,44,57,51,57,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,50,52,55,41,44,105,61,77,97,116,104,46,112,111,119,44,111,61,105,40,50,44,45,53,50,41,44,97,61,105,40,50,44,45,50,51,41,44,115,61,105,40,50,44,49,50,55,41,42,40,50,45,97,41,44,99,61,105,40,50,44,45,49,50,54,41,44,117,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,43,49,47,111,45,49,47,111,125,59,116,46,101,120,112,111,114,116,115,61,77,97,116,104,46,102,114,111,117,110,100,124,124,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,105,61,77,97,116,104,46,97,98,115,40,116,41,44,108,61,114,40,116,41,59,114,101,116,117,114,110,32,105,60,99,63,108,42,117,40,105,47,99,47,97,41,42,99,42,97,58,40,101,61,40,49,43,97,47,111,41,42,105,44,110,61,101,45,40,101,45,105,41,44,110,62,115,124,124,110,33,61,110,63,108,42,40,49,47,48,41,58,108,42,110,41,125,125,44,57,48,48,55,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,77,97,116,104,46,108,111,103,49,112,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,61,43,116,41,62,45,49,101,45,56,38,38,116,60,49,101,45,56,63,116,45,116,42,116,47,50,58,77,97,116,104,46,108,111,103,40,49,43,116,41,125,125,44,52,50,52,55,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,77,97,116,104,46,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,48,61,61,40,116,61,43,116,41,124,124,116,33,61,116,63,116,58,116,60,48,63,45,49,58,49,125,125,44,50,49,53,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,51,48,41,40,34,109,101,116,97,34,41,44,105,61,110,40,55,52,56,49,41,44,111,61,110,40,49,48,54,51,41,44,97,61,110,40,51,53,51,48,41,46,102,44,115,61,48,44,99,61,79,98,106,101,99,116,46,105,115,69,120,116,101,110,115,105,98,108,101,124,124,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,117,61,33,110,40,49,50,52,48,41,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,40,79,98,106,101,99,116,46,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,40,123,125,41,41,125,41,41,44,108,61,102,117,110,99,116,105,111,110,40,116,41,123,97,40,116,44,114,44,123,118,97,108,117,101,58,123,105,58,34,79,34,43,32,43,43,115,44,119,58,123,125,125,125,41,125,44,102,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,105,40,116,41,41,114,101,116,117,114,110,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,116,63,116,58,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,63,34,83,34,58,34,80,34,41,43,116,59,105,102,40,33,111,40,116,44,114,41,41,123,105,102,40,33,99,40,116,41,41,114,101,116,117,114,110,34,70,34,59,105,102,40,33,101,41,114,101,116,117,114,110,34,69,34,59,108,40,116,41,125,114,101,116,117,114,110,32,116,91,114,93,46,105,125,44,104,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,111,40,116,44,114,41,41,123,105,102,40,33,99,40,116,41,41,114,101,116,117,114,110,33,48,59,105,102,40,33,101,41,114,101,116,117,114,110,33,49,59,108,40,116,41,125,114,101,116,117,114,110,32,116,91,114,93,46,119,125,44,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,117,38,38,112,46,78,69,69,68,38,38,99,40,116,41,38,38,33,111,40,116,44,114,41,38,38,108,40,116,41,44,116,125,44,112,61,116,46,101,120,112,111,114,116,115,61,123,75,69,89,58,114,44,78,69,69,68,58,33,49,44,102,97,115,116,75,101,121,58,102,44,103,101,116,87,101,97,107,58,104,44,111,110,70,114,101,101,122,101,58,100,125,125,44,51,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,54,51,52,49,41,44,105,61,110,40,55,49,50,50,41,46,115,101,116,44,111,61,114,46,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,124,124,114,46,87,101,98,75,105,116,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,44,97,61,114,46,112,114,111,99,101,115,115,44,115,61,114,46,80,114,111,109,105,115,101,44,99,61,34,112,114,111,99,101,115,115,34,61,61,110,40,57,52,50,54,41,40,97,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,44,110,44,117,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,114,44,105,59,99,38,38,40,114,61,97,46,100,111,109,97,105,110,41,38,38,114,46,101,120,105,116,40,41,59,119,104,105,108,101,40,116,41,123,105,61,116,46,102,110,44,116,61,116,46,110,101,120,116,59,116,114,121,123,105,40,41,125,99,97,116,99,104,40,111,41,123,116,104,114,111,119,32,116,63,110,40,41,58,101,61,118,111,105,100,32,48,44,111,125,125,101,61,118,111,105,100,32,48,44,114,38,38,114,46,101,110,116,101,114,40,41,125,59,105,102,40,99,41,110,61,102,117,110,99,116,105,111,110,40,41,123,97,46,110,101,120,116,84,105,99,107,40,117,41,125,59,101,108,115,101,32,105,102,40,33,111,124,124,114,46,110,97,118,105,103,97,116,111,114,38,38,114,46,110,97,118,105,103,97,116,111,114,46,115,116,97,110,100,97,108,111,110,101,41,105,102,40,115,38,38,115,46,114,101,115,111,108,118,101,41,123,118,97,114,32,108,61,115,46,114,101,115,111,108,118,101,40,118,111,105,100,32,48,41,59,110,61,102,117,110,99,116,105,111,110,40,41,123,108,46,116,104,101,110,40,117,41,125,125,101,108,115,101,32,110,61,102,117,110,99,116,105,111,110,40,41,123,105,46,99,97,108,108,40,114,44,117,41,125,59,101,108,115,101,123,118,97,114,32,102,61,33,48,44,104,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,110,101,119,32,111,40,117,41,46,111,98,115,101,114,118,101,40,104,44,123,99,104,97,114,97,99,116,101,114,68,97,116,97,58,33,48,125,41,44,110,61,102,117,110,99,116,105,111,110,40,41,123,104,46,100,97,116,97,61,102,61,33,102,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,105,61,123,102,110,58,114,44,110,101,120,116,58,118,111,105,100,32,48,125,59,101,38,38,40,101,46,110,101,120,116,61,105,41,44,116,124,124,40,116,61,105,44,110,40,41,41,44,101,61,105,125,125,125,44,51,50,56,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,51,48,55,57,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,118,97,114,32,101,44,110,59,116,104,105,115,46,112,114,111,109,105,115,101,61,110,101,119,32,116,40,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,105,102,40,118,111,105,100,32,48,33,61,61,101,124,124,118,111,105,100,32,48,33,61,61,110,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,34,66,97,100,32,80,114,111,109,105,115,101,32,99,111,110,115,116,114,117,99,116,111,114,34,41,59,101,61,116,44,110,61,114,125,41,41,44,116,104,105,115,46,114,101,115,111,108,118,101,61,114,40,101,41,44,116,104,105,115,46,114,101,106,101,99,116,61,114,40,110,41,125,116,46,101,120,112,111,114,116,115,46,102,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,105,40,116,41,125,125,44,57,56,50,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,49,57,49,54,41,44,105,61,110,40,53,56,50,53,41,44,111,61,110,40,50,53,50,48,41,44,97,61,110,40,49,49,52,52,41,44,115,61,110,40,52,50,48,48,41,44,99,61,110,40,57,55,53,41,44,117,61,79,98,106,101,99,116,46,97,115,115,105,103,110,59,116,46,101,120,112,111,114,116,115,61,33,117,124,124,110,40,49,50,52,48,41,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,125,44,101,61,123,125,44,110,61,83,121,109,98,111,108,40,41,44,114,61,34,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,34,59,114,101,116,117,114,110,32,116,91,110,93,61,55,44,114,46,115,112,108,105,116,40,34,34,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,101,91,116,93,61,116,125,41,41,44,55,33,61,117,40,123,125,44,116,41,91,110,93,124,124,79,98,106,101,99,116,46,107,101,121,115,40,117,40,123,125,44,101,41,41,46,106,111,105,110,40,34,34,41,33,61,114,125,41,41,63,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,115,40,116,41,44,117,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,108,61,49,44,102,61,111,46,102,44,104,61,97,46,102,59,119,104,105,108,101,40,117,62,108,41,123,118,97,114,32,100,44,112,61,99,40,97,114,103,117,109,101,110,116,115,91,108,43,43,93,41,44,118,61,102,63,105,40,112,41,46,99,111,110,99,97,116,40,102,40,112,41,41,58,105,40,112,41,44,103,61,118,46,108,101,110,103,116,104,44,109,61,48,59,119,104,105,108,101,40,103,62,109,41,100,61,118,91,109,43,43,93,44,114,38,38,33,104,46,99,97,108,108,40,112,44,100,41,124,124,40,110,91,100,93,61,112,91,100,93,41,125,114,101,116,117,114,110,32,110,125,58,117,125,44,50,53,52,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,55,49,57,41,44,105,61,110,40,52,49,51,41,44,111,61,110,40,55,53,57,48,41,44,97,61,110,40,51,53,52,56,41,40,34,73,69,95,80,82,79,84,79,34,41,44,115,61,102,117,110,99,116,105,111,110,40,41,123,125,44,99,61,34,112,114,111,116,111,116,121,112,101,34,44,117,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,61,110,40,51,51,56,51,41,40,34,105,102,114,97,109,101,34,41,44,114,61,111,46,108,101,110,103,116,104,44,105,61,34,60,34,44,97,61,34,62,34,59,101,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,110,40,54,49,51,55,41,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,44,101,46,115,114,99,61,34,106,97,118,97,115,99,114,105,112,116,58,34,44,116,61,101,46,99,111,110,116,101,110,116,87,105,110,100,111,119,46,100,111,99,117,109,101,110,116,44,116,46,111,112,101,110,40,41,44,116,46,119,114,105,116,101,40,105,43,34,115,99,114,105,112,116,34,43,97,43,34,100,111,99,117,109,101,110,116,46,70,61,79,98,106,101,99,116,34,43,105,43,34,47,115,99,114,105,112,116,34,43,97,41,44,116,46,99,108,111,115,101,40,41,44,117,61,116,46,70,59,119,104,105,108,101,40,114,45,45,41,100,101,108,101,116,101,32,117,91,99,93,91,111,91,114,93,93,59,114,101,116,117,114,110,32,117,40,41,125,59,116,46,101,120,112,111,114,116,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,63,40,115,91,99,93,61,114,40,116,41,44,110,61,110,101,119,32,115,44,115,91,99,93,61,110,117,108,108,44,110,91,97,93,61,116,41,58,110,61,117,40,41,44,118,111,105,100,32,48,61,61,61,101,63,110,58,105,40,110,44,101,41,125,125,44,51,53,51,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,55,49,57,41,44,105,61,110,40,52,51,53,50,41,44,111,61,110,40,57,50,52,49,41,44,97,61,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,59,101,46,102,61,110,40,49,57,49,54,41,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,114,40,116,41,44,101,61,111,40,101,44,33,48,41,44,114,40,110,41,44,105,41,116,114,121,123,114,101,116,117,114,110,32,97,40,116,44,101,44,110,41,125,99,97,116,99,104,40,115,41,123,125,105,102,40,34,103,101,116,34,105,110,32,110,124,124,34,115,101,116,34,105,110,32,110,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,34,65,99,99,101,115,115,111,114,115,32,110,111,116,32,115,117,112,112,111,114,116,101,100,33,34,41,59,114,101,116,117,114,110,34,118,97,108,117,101,34,105,110,32,110,38,38,40,116,91,101,93,61,110,46,118,97,108,117,101,41,44,116,125,125,44,52,49,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,51,53,51,48,41,44,105,61,110,40,57,55,49,57,41,44,111,61,110,40,53,56,50,53,41,59,116,46,101,120,112,111,114,116,115,61,110,40,49,57,49,54,41,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,40,116,41,59,118,97,114,32,110,44,97,61,111,40,101,41,44,115,61,97,46,108,101,110,103,116,104,44,99,61,48,59,119,104,105,108,101,40,115,62,99,41,114,46,102,40,116,44,110,61,97,91,99,43,43,93,44,101,91,110,93,41,59,114,101,116,117,114,110,32,116,125,125,44,55,55,54,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,49,52,52,41,44,105,61,110,40,49,55,54,49,41,44,111,61,110,40,56,53,48,48,41,44,97,61,110,40,57,50,52,49,41,44,115,61,110,40,49,48,54,51,41,44,99,61,110,40,52,51,53,50,41,44,117,61,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,59,101,46,102,61,110,40,49,57,49,54,41,63,117,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,61,111,40,116,41,44,101,61,97,40,101,44,33,48,41,44,99,41,116,114,121,123,114,101,116,117,114,110,32,117,40,116,44,101,41,125,99,97,116,99,104,40,110,41,123,125,105,102,40,115,40,116,44,101,41,41,114,101,116,117,114,110,32,105,40,33,114,46,102,46,99,97,108,108,40,116,44,101,41,44,116,91,101,93,41,125,125,44,53,48,48,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,56,53,48,48,41,44,105,61,110,40,52,50,51,48,41,46,102,44,111,61,123,125,46,116,111,83,116,114,105,110,103,44,97,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,119,105,110,100,111,119,38,38,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,63,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,119,105,110,100,111,119,41,58,91,93,44,115,61,102,117,110,99,116,105,111,110,40,116,41,123,116,114,121,123,114,101,116,117,114,110,32,105,40,116,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,97,46,115,108,105,99,101,40,41,125,125,59,116,46,101,120,112,111,114,116,115,46,102,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,38,38,34,91,111,98,106,101,99,116,32,87,105,110,100,111,119,93,34,61,61,111,46,99,97,108,108,40,116,41,63,115,40,116,41,58,105,40,114,40,116,41,41,125,125,44,52,50,51,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,50,56,53,49,41,44,105,61,110,40,55,53,57,48,41,46,99,111,110,99,97,116,40,34,108,101,110,103,116,104,34,44,34,112,114,111,116,111,116,121,112,101,34,41,59,101,46,102,61,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,116,44,105,41,125,125,44,50,53,50,48,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,46,102,61,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,125,44,52,52,48,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,48,54,51,41,44,105,61,110,40,52,50,48,48,41,44,111,61,110,40,51,53,52,56,41,40,34,73,69,95,80,82,79,84,79,34,41,44,97,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,59,116,46,101,120,112,111,114,116,115,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,105,40,116,41,44,114,40,116,44,111,41,63,116,91,111,93,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,116,32,105,110,115,116,97,110,99,101,111,102,32,116,46,99,111,110,115,116,114,117,99,116,111,114,63,116,46,99,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,58,116,32,105,110,115,116,97,110,99,101,111,102,32,79,98,106,101,99,116,63,97,58,110,117,108,108,125,125,44,50,56,53,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,48,54,51,41,44,105,61,110,40,56,53,48,48,41,44,111,61,110,40,49,53,52,53,41,40,33,49,41,44,97,61,110,40,51,53,52,56,41,40,34,73,69,95,80,82,79,84,79,34,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,115,61,105,40,116,41,44,99,61,48,44,117,61,91,93,59,102,111,114,40,110,32,105,110,32,115,41,110,33,61,97,38,38,114,40,115,44,110,41,38,38,117,46,112,117,115,104,40,110,41,59,119,104,105,108,101,40,101,46,108,101,110,103,116,104,62,99,41,114,40,115,44,110,61,101,91,99,43,43,93,41,38,38,40,126,111,40,117,44,110,41,124,124,117,46,112,117,115,104,40,110,41,41,59,114,101,116,117,114,110,32,117,125,125,44,53,56,50,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,50,56,53,49,41,44,105,61,110,40,55,53,57,48,41,59,116,46,101,120,112,111,114,116,115,61,79,98,106,101,99,116,46,107,101,121,115,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,116,44,105,41,125,125,44,49,49,52,52,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,46,102,61,123,125,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,125,44,49,48,50,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,52,52,49,49,41,44,111,61,110,40,49,50,52,48,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,40,105,46,79,98,106,101,99,116,124,124,123,125,41,91,116,93,124,124,79,98,106,101,99,116,91,116,93,44,97,61,123,125,59,97,91,116,93,61,101,40,110,41,44,114,40,114,46,83,43,114,46,70,42,111,40,40,102,117,110,99,116,105,111,110,40,41,123,110,40,49,41,125,41,41,44,34,79,98,106,101,99,116,34,44,97,41,125,125,44,53,51,52,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,57,49,54,41,44,105,61,110,40,53,56,50,53,41,44,111,61,110,40,56,53,48,48,41,44,97,61,110,40,49,49,52,52,41,46,102,59,116,46,101,120,112,111,114,116,115,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,118,97,114,32,110,44,115,61,111,40,101,41,44,99,61,105,40,115,41,44,117,61,99,46,108,101,110,103,116,104,44,108,61,48,44,102,61,91,93,59,119,104,105,108,101,40,117,62,108,41,110,61,99,91,108,43,43,93,44,114,38,38,33,97,46,99,97,108,108,40,115,44,110,41,124,124,102,46,112,117,115,104,40,116,63,91,110,44,115,91,110,93,93,58,115,91,110,93,41,59,114,101,116,117,114,110,32,102,125,125,125,44,55,50,56,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,50,51,48,41,44,105,61,110,40,50,53,50,48,41,44,111,61,110,40,57,55,49,57,41,44,97,61,110,40,54,51,52,49,41,46,82,101,102,108,101,99,116,59,116,46,101,120,112,111,114,116,115,61,97,38,38,97,46,111,119,110,75,101,121,115,124,124,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,114,46,102,40,111,40,116,41,41,44,110,61,105,46,102,59,114,101,116,117,114,110,32,110,63,101,46,99,111,110,99,97,116,40,110,40,116,41,41,58,101,125,125,44,51,55,54,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,54,51,52,49,41,46,112,97,114,115,101,70,108,111,97,116,44,105,61,110,40,55,51,55,48,41,46,116,114,105,109,59,116,46,101,120,112,111,114,116,115,61,49,47,114,40,110,40,56,50,55,53,41,43,34,45,48,34,41,33,61,61,45,49,47,48,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,105,40,83,116,114,105,110,103,40,116,41,44,51,41,44,110,61,114,40,101,41,59,114,101,116,117,114,110,32,48,61,61,61,110,38,38,34,45,34,61,61,101,46,99,104,97,114,65,116,40,48,41,63,45,48,58,110,125,58,114,125,44,53,48,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,54,51,52,49,41,46,112,97,114,115,101,73,110,116,44,105,61,110,40,55,51,55,48,41,46,116,114,105,109,44,111,61,110,40,56,50,55,53,41,44,97,61,47,94,91,45,43,93,63,48,91,120,88,93,47,59,116,46,101,120,112,111,114,116,115,61,56,33,61,61,114,40,111,43,34,48,56,34,41,124,124,50,50,33,61,61,114,40,111,43,34,48,120,49,54,34,41,63,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,105,40,83,116,114,105,110,103,40,116,41,44,51,41,59,114,101,116,117,114,110,32,114,40,110,44,101,62,62,62,48,124,124,40,97,46,116,101,115,116,40,110,41,63,49,54,58,49,48,41,41,125,58,114,125,44,56,51,51,50,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,116,114,121,123,114,101,116,117,114,110,123,101,58,33,49,44,118,58,116,40,41,125,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,123,101,58,33,48,44,118,58,101,125,125,125,125,44,56,54,49,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,55,49,57,41,44,105,61,110,40,55,52,56,49,41,44,111,61,110,40,51,50,56,53,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,114,40,116,41,44,105,40,101,41,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,111,46,102,40,116,41,44,97,61,110,46,114,101,115,111,108,118,101,59,114,101,116,117,114,110,32,97,40,101,41,44,110,46,112,114,111,109,105,115,101,125,125,44,49,55,54,49,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,123,101,110,117,109,101,114,97,98,108,101,58,33,40,49,38,116,41,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,40,50,38,116,41,44,119,114,105,116,97,98,108,101,58,33,40,52,38,116,41,44,118,97,108,117,101,58,101,125,125,125,44,52,48,57,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,53,54,52,41,59,116,46,101,120,112,111,114,116,115,61,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,101,41,114,40,116,44,105,44,101,91,105,93,44,110,41,59,114,101,116,117,114,110,32,116,125,125,44,49,53,54,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,54,51,52,49,41,44,105,61,110,40,56,52,52,50,41,44,111,61,110,40,49,48,54,51,41,44,97,61,110,40,52,51,48,41,40,34,115,114,99,34,41,44,115,61,110,40,53,57,55,57,41,44,99,61,34,116,111,83,116,114,105,110,103,34,44,117,61,40,34,34,43,115,41,46,115,112,108,105,116,40,99,41,59,110,40,52,52,49,49,41,46,105,110,115,112,101,99,116,83,111,117,114,99,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,115,46,99,97,108,108,40,116,41,125,44,40,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,115,41,123,118,97,114,32,99,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,59,99,38,38,40,111,40,110,44,34,110,97,109,101,34,41,124,124,105,40,110,44,34,110,97,109,101,34,44,101,41,41,44,116,91,101,93,33,61,61,110,38,38,40,99,38,38,40,111,40,110,44,97,41,124,124,105,40,110,44,97,44,116,91,101,93,63,34,34,43,116,91,101,93,58,117,46,106,111,105,110,40,83,116,114,105,110,103,40,101,41,41,41,41,44,116,61,61,61,114,63,116,91,101,93,61,110,58,115,63,116,91,101,93,63,116,91,101,93,61,110,58,105,40,116,44,101,44,110,41,58,40,100,101,108,101,116,101,32,116,91,101,93,44,105,40,116,44,101,44,110,41,41,41,125,41,40,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,44,99,44,40,102,117,110,99,116,105,111,110,40,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,116,104,105,115,38,38,116,104,105,115,91,97,93,124,124,115,46,99,97,108,108,40,116,104,105,115,41,125,41,41,125,44,57,48,55,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,50,56,52,53,41,44,105,61,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,46,101,120,101,99,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,101,120,101,99,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,110,41,123,118,97,114,32,111,61,110,46,99,97,108,108,40,116,44,101,41,59,105,102,40,34,111,98,106,101,99,116,34,33,61,61,116,121,112,101,111,102,32,111,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,82,101,103,69,120,112,32,101,120,101,99,32,109,101,116,104,111,100,32,114,101,116,117,114,110,101,100,32,115,111,109,101,116,104,105,110,103,32,111,116,104,101,114,32,116,104,97,110,32,97,110,32,79,98,106,101,99,116,32,111,114,32,110,117,108,108,34,41,59,114,101,116,117,114,110,32,111,125,105,102,40,34,82,101,103,69,120,112,34,33,61,61,114,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,82,101,103,69,120,112,35,101,120,101,99,32,99,97,108,108,101,100,32,111,110,32,105,110,99,111,109,112,97,116,105,98,108,101,32,114,101,99,101,105,118,101,114,34,41,59,114,101,116,117,114,110,32,105,46,99,97,108,108,40,116,44,101,41,125,125,44,56,56,54,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,54,52,51,57,41,44,105,61,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,46,101,120,101,99,44,111,61,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,46,114,101,112,108,97,99,101,44,97,61,105,44,115,61,34,108,97,115,116,73,110,100,101,120,34,44,99,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,47,97,47,44,101,61,47,98,42,47,103,59,114,101,116,117,114,110,32,105,46,99,97,108,108,40,116,44,34,97,34,41,44,105,46,99,97,108,108,40,101,44,34,97,34,41,44,48,33,61,61,116,91,115,93,124,124,48,33,61,61,101,91,115,93,125,40,41,44,117,61,118,111,105,100,32,48,33,61,61,47,40,41,63,63,47,46,101,120,101,99,40,34,34,41,91,49,93,44,108,61,99,124,124,117,59,108,38,38,40,97,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,97,44,108,44,102,61,116,104,105,115,59,114,101,116,117,114,110,32,117,38,38,40,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,102,46,115,111,117,114,99,101,43,34,36,40,63,33,92,92,115,41,34,44,114,46,99,97,108,108,40,102,41,41,41,44,99,38,38,40,101,61,102,91,115,93,41,44,97,61,105,46,99,97,108,108,40,102,44,116,41,44,99,38,38,97,38,38,40,102,91,115,93,61,102,46,103,108,111,98,97,108,63,97,46,105,110,100,101,120,43,97,91,48,93,46,108,101,110,103,116,104,58,101,41,44,117,38,38,97,38,38,97,46,108,101,110,103,116,104,62,49,38,38,111,46,99,97,108,108,40,97,91,48,93,44,110,44,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,108,61,49,59,108,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,50,59,108,43,43,41,118,111,105,100,32,48,61,61,61,97,114,103,117,109,101,110,116,115,91,108,93,38,38,40,97,91,108,93,61,118,111,105,100,32,48,41,125,41,41,44,97,125,41,44,116,46,101,120,112,111,114,116,115,61,97,125,44,49,53,52,49,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,79,98,106,101,99,116,46,105,115,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,61,61,101,63,48,33,61,61,116,124,124,49,47,116,61,61,61,49,47,101,58,116,33,61,116,38,38,101,33,61,101,125,125,44,55,49,51,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,56,49,41,44,105,61,110,40,57,55,49,57,41,44,111,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,105,40,116,41,44,33,114,40,101,41,38,38,110,117,108,108,33,61,61,101,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,101,43,34,58,32,99,97,110,39,116,32,115,101,116,32,97,115,32,112,114,111,116,111,116,121,112,101,33,34,41,125,59,116,46,101,120,112,111,114,116,115,61,123,115,101,116,58,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,40,34,95,95,112,114,111,116,111,95,95,34,105,110,123,125,63,102,117,110,99,116,105,111,110,40,116,44,101,44,114,41,123,116,114,121,123,114,61,110,40,50,55,57,52,41,40,70,117,110,99,116,105,111,110,46,99,97,108,108,44,110,40,55,55,54,50,41,46,102,40,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,44,34,95,95,112,114,111,116,111,95,95,34,41,46,115,101,116,44,50,41,44,114,40,116,44,91,93,41,44,101,61,33,40,116,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,41,125,99,97,116,99,104,40,105,41,123,101,61,33,48,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,111,40,116,44,110,41,44,101,63,116,46,95,95,112,114,111,116,111,95,95,61,110,58,114,40,116,44,110,41,44,116,125,125,40,123,125,44,33,49,41,58,118,111,105,100,32,48,41,44,99,104,101,99,107,58,111,125,125,44,53,57,57,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,54,51,52,49,41,44,105,61,110,40,51,53,51,48,41,44,111,61,110,40,49,57,49,54,41,44,97,61,110,40,57,55,51,57,41,40,34,115,112,101,99,105,101,115,34,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,114,91,116,93,59,111,38,38,101,38,38,33,101,91,97,93,38,38,105,46,102,40,101,44,97,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,116,104,105,115,125,125,41,125,125,44,49,51,48,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,51,53,51,48,41,46,102,44,105,61,110,40,49,48,54,51,41,44,111,61,110,40,57,55,51,57,41,40,34,116,111,83,116,114,105,110,103,84,97,103,34,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,38,38,33,105,40,116,61,110,63,116,58,116,46,112,114,111,116,111,116,121,112,101,44,111,41,38,38,114,40,116,44,111,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,118,97,108,117,101,58,101,125,41,125,125,44,51,53,52,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,51,53,53,41,40,34,107,101,121,115,34,41,44,105,61,110,40,52,51,48,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,91,116,93,124,124,40,114,91,116,93,61,105,40,116,41,41,125,125,44,55,51,53,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,52,49,49,41,44,105,61,110,40,54,51,52,49,41,44,111,61,34,95,95,99,111,114,101,45,106,115,95,115,104,97,114,101,100,95,95,34,44,97,61,105,91,111,93,124,124,40,105,91,111,93,61,123,125,41,59,40,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,97,91,116,93,124,124,40,97,91,116,93,61,118,111,105,100,32,48,33,61,61,101,63,101,58,123,125,41,125,41,40,34,118,101,114,115,105,111,110,115,34,44,91,93,41,46,112,117,115,104,40,123,118,101,114,115,105,111,110,58,114,46,118,101,114,115,105,111,110,44,109,111,100,101,58,110,40,53,49,49,51,41,63,34,112,117,114,101,34,58,34,103,108,111,98,97,108,34,44,99,111,112,121,114,105,103,104,116,58,34,194,169,32,50,48,50,48,32,68,101,110,105,115,32,80,117,115,104,107,97,114,101,118,32,40,122,108,111,105,114,111,99,107,46,114,117,41,34,125,41,125,44,57,55,56,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,55,49,57,41,44,105,61,110,40,51,48,55,57,41,44,111,61,110,40,57,55,51,57,41,40,34,115,112,101,99,105,101,115,34,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,97,61,114,40,116,41,46,99,111,110,115,116,114,117,99,116,111,114,59,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,97,124,124,118,111,105,100,32,48,61,61,40,110,61,114,40,97,41,91,111,93,41,63,101,58,105,40,110,41,125,125,44,53,49,51,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,49,50,52,48,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,33,33,116,38,38,114,40,40,102,117,110,99,116,105,111,110,40,41,123,101,63,116,46,99,97,108,108,40,110,117,108,108,44,40,102,117,110,99,116,105,111,110,40,41,123,125,41,44,49,41,58,116,46,99,97,108,108,40,110,117,108,108,41,125,41,41,125,125,44,55,51,56,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,53,52,57,41,44,105,61,110,40,51,53,56,57,41,59,116,46,101,120,112,111,114,116,115,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,44,110,41,123,118,97,114,32,111,44,97,44,115,61,83,116,114,105,110,103,40,105,40,101,41,41,44,99,61,114,40,110,41,44,117,61,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,99,60,48,124,124,99,62,61,117,63,116,63,34,34,58,118,111,105,100,32,48,58,40,111,61,115,46,99,104,97,114,67,111,100,101,65,116,40,99,41,44,111,60,53,53,50,57,54,124,124,111,62,53,54,51,49,57,124,124,99,43,49,61,61,61,117,124,124,40,97,61,115,46,99,104,97,114,67,111,100,101,65,116,40,99,43,49,41,41,60,53,54,51,50,48,124,124,97,62,53,55,51,52,51,63,116,63,115,46,99,104,97,114,65,116,40,99,41,58,111,58,116,63,115,46,115,108,105,99,101,40,99,44,99,43,50,41,58,97,45,53,54,51,50,48,43,40,111,45,53,53,50,57,54,60,60,49,48,41,43,54,53,53,51,54,41,125,125,125,44,51,50,53,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,53,52,51,41,44,105,61,110,40,51,53,56,57,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,114,40,101,41,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,34,83,116,114,105,110,103,35,34,43,110,43,34,32,100,111,101,115,110,39,116,32,97,99,99,101,112,116,32,114,101,103,101,120,33,34,41,59,114,101,116,117,114,110,32,83,116,114,105,110,103,40,105,40,116,41,41,125,125,44,57,48,52,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,49,50,52,48,41,44,111,61,110,40,51,53,56,57,41,44,97,61,47,34,47,103,44,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,83,116,114,105,110,103,40,111,40,116,41,41,44,115,61,34,60,34,43,101,59,114,101,116,117,114,110,34,34,33,61,61,110,38,38,40,115,43,61,34,32,34,43,110,43,39,61,34,39,43,83,116,114,105,110,103,40,114,41,46,114,101,112,108,97,99,101,40,97,44,34,38,113,117,111,116,59,34,41,43,39,34,39,41,44,115,43,34,62,34,43,105,43,34,60,47,34,43,101,43,34,62,34,125,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,123,125,59,110,91,116,93,61,101,40,115,41,44,114,40,114,46,80,43,114,46,70,42,105,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,34,34,91,116,93,40,39,34,39,41,59,114,101,116,117,114,110,32,101,33,61,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,124,124,101,46,115,112,108,105,116,40,39,34,39,41,46,108,101,110,103,116,104,62,51,125,41,41,44,34,83,116,114,105,110,103,34,44,110,41,125,125,44,57,56,50,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,56,51,56,41,44,105,61,110,40,53,41,44,111,61,110,40,51,53,56,57,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,97,41,123,118,97,114,32,115,61,83,116,114,105,110,103,40,111,40,116,41,41,44,99,61,115,46,108,101,110,103,116,104,44,117,61,118,111,105,100,32,48,61,61,61,110,63,34,32,34,58,83,116,114,105,110,103,40,110,41,44,108,61,114,40,101,41,59,105,102,40,108,60,61,99,124,124,34,34,61,61,117,41,114,101,116,117,114,110,32,115,59,118,97,114,32,102,61,108,45,99,44,104,61,105,46,99,97,108,108,40,117,44,77,97,116,104,46,99,101,105,108,40,102,47,117,46,108,101,110,103,116,104,41,41,59,114,101,116,117,114,110,32,104,46,108,101,110,103,116,104,62,102,38,38,40,104,61,104,46,115,108,105,99,101,40,48,44,102,41,41,44,97,63,104,43,115,58,115,43,104,125,125,44,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,49,53,52,57,41,44,105,61,110,40,51,53,56,57,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,83,116,114,105,110,103,40,105,40,116,104,105,115,41,41,44,110,61,34,34,44,111,61,114,40,116,41,59,105,102,40,111,60,48,124,124,111,61,61,49,47,48,41,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,34,67,111,117,110,116,32,99,97,110,39,116,32,98,101,32,110,101,103,97,116,105,118,101,34,41,59,102,111,114,40,59,111,62,48,59,40,111,62,62,62,61,49,41,38,38,40,101,43,61,101,41,41,49,38,111,38,38,40,110,43,61,101,41,59,114,101,116,117,114,110,32,110,125,125,44,55,51,55,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,51,53,56,57,41,44,111,61,110,40,49,50,52,48,41,44,97,61,110,40,56,50,55,53,41,44,115,61,34,91,34,43,97,43,34,93,34,44,99,61,34,226,128,139,194,133,34,44,117,61,82,101,103,69,120,112,40,34,94,34,43,115,43,115,43,34,42,34,41,44,108,61,82,101,103,69,120,112,40,115,43,115,43,34,42,36,34,41,44,102,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,105,61,123,125,44,115,61,111,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,97,91,116,93,40,41,124,124,99,91,116,93,40,41,33,61,99,125,41,41,44,117,61,105,91,116,93,61,115,63,101,40,104,41,58,97,91,116,93,59,110,38,38,40,105,91,110,93,61,117,41,44,114,40,114,46,80,43,114,46,70,42,115,44,34,83,116,114,105,110,103,34,44,105,41,125,44,104,61,102,46,116,114,105,109,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,83,116,114,105,110,103,40,105,40,116,41,41,44,49,38,101,38,38,40,116,61,116,46,114,101,112,108,97,99,101,40,117,44,34,34,41,41,44,50,38,101,38,38,40,116,61,116,46,114,101,112,108,97,99,101,40,108,44,34,34,41,41,44,116,125,59,116,46,101,120,112,111,114,116,115,61,102,125,44,56,50,55,53,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,34,92,116,92,110,92,118,92,102,92,114,32,194,160,225,154,128,225,160,142,226,128,128,226,128,129,226,128,130,226,128,131,226,128,132,226,128,133,226,128,134,226,128,135,226,128,136,226,128,137,226,128,138,226,128,175,226,129,159,227,128,128,92,117,50,48,50,56,92,117,50,48,50,57,92,117,102,101,102,102,34,125,44,55,49,50,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,110,40,50,55,57,52,41,44,115,61,110,40,51,53,51,52,41,44,99,61,110,40,54,49,51,55,41,44,117,61,110,40,51,51,56,51,41,44,108,61,110,40,54,51,52,49,41,44,102,61,108,46,112,114,111,99,101,115,115,44,104,61,108,46,115,101,116,73,109,109,101,100,105,97,116,101,44,100,61,108,46,99,108,101,97,114,73,109,109,101,100,105,97,116,101,44,112,61,108,46,77,101,115,115,97,103,101,67,104,97,110,110,101,108,44,118,61,108,46,68,105,115,112,97,116,99,104,44,103,61,48,44,109,61,123,125,44,98,61,34,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,34,44,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,43,116,104,105,115,59,105,102,40,109,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,123,118,97,114,32,101,61,109,91,116,93,59,100,101,108,101,116,101,32,109,91,116,93,44,101,40,41,125,125,44,119,61,102,117,110,99,116,105,111,110,40,116,41,123,121,46,99,97,108,108,40,116,46,100,97,116,97,41,125,59,104,38,38,100,124,124,40,104,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,91,93,44,110,61,49,59,119,104,105,108,101,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,110,41,101,46,112,117,115,104,40,97,114,103,117,109,101,110,116,115,91,110,43,43,93,41,59,114,101,116,117,114,110,32,109,91,43,43,103,93,61,102,117,110,99,116,105,111,110,40,41,123,115,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,70,117,110,99,116,105,111,110,40,116,41,44,101,41,125,44,114,40,103,41,44,103,125,44,100,61,102,117,110,99,116,105,111,110,40,116,41,123,100,101,108,101,116,101,32,109,91,116,93,125,44,34,112,114,111,99,101,115,115,34,61,61,110,40,57,52,50,54,41,40,102,41,63,114,61,102,117,110,99,116,105,111,110,40,116,41,123,102,46,110,101,120,116,84,105,99,107,40,97,40,121,44,116,44,49,41,41,125,58,118,38,38,118,46,110,111,119,63,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,46,110,111,119,40,97,40,121,44,116,44,49,41,41,125,58,112,63,40,105,61,110,101,119,32,112,44,111,61,105,46,112,111,114,116,50,44,105,46,112,111,114,116,49,46,111,110,109,101,115,115,97,103,101,61,119,44,114,61,97,40,111,46,112,111,115,116,77,101,115,115,97,103,101,44,111,44,49,41,41,58,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,112,111,115,116,77,101,115,115,97,103,101,38,38,33,108,46,105,109,112,111,114,116,83,99,114,105,112,116,115,63,40,114,61,102,117,110,99,116,105,111,110,40,116,41,123,108,46,112,111,115,116,77,101,115,115,97,103,101,40,116,43,34,34,44,34,42,34,41,125,44,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,101,115,115,97,103,101,34,44,119,44,33,49,41,41,58,114,61,98,32,105,110,32,117,40,34,115,99,114,105,112,116,34,41,63,102,117,110,99,116,105,111,110,40,116,41,123,99,46,97,112,112,101,110,100,67,104,105,108,100,40,117,40,34,115,99,114,105,112,116,34,41,41,91,98,93,61,102,117,110,99,116,105,111,110,40,41,123,99,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,41,44,121,46,99,97,108,108,40,116,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,115,101,116,84,105,109,101,111,117,116,40,97,40,121,44,116,44,49,41,44,48,41,125,41,44,116,46,101,120,112,111,114,116,115,61,123,115,101,116,58,104,44,99,108,101,97,114,58,100,125,125,44,53,48,52,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,53,52,57,41,44,105,61,77,97,116,104,46,109,97,120,44,111,61,77,97,116,104,46,109,105,110,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,114,40,116,41,44,116,60,48,63,105,40,116,43,101,44,48,41,58,111,40,116,44,101,41,125,125,44,57,55,48,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,53,52,57,41,44,105,61,110,40,49,56,51,56,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,118,111,105,100,32,48,61,61,61,116,41,114,101,116,117,114,110,32,48,59,118,97,114,32,101,61,114,40,116,41,44,110,61,105,40,101,41,59,105,102,40,101,33,61,61,110,41,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,34,87,114,111,110,103,32,108,101,110,103,116,104,33,34,41,59,114,101,116,117,114,110,32,110,125,125,44,49,53,52,57,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,77,97,116,104,46,99,101,105,108,44,110,61,77,97,116,104,46,102,108,111,111,114,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,116,61,43,116,41,63,48,58,40,116,62,48,63,110,58,101,41,40,116,41,125,125,44,56,53,48,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,55,53,41,44,105,61,110,40,51,53,56,57,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,105,40,116,41,41,125,125,44,49,56,51,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,53,52,57,41,44,105,61,77,97,116,104,46,109,105,110,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,62,48,63,105,40,114,40,116,41,44,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,41,58,48,125,125,44,52,50,48,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,51,53,56,57,41,59,116,46,101,120,112,111,114,116,115,61,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,40,114,40,116,41,41,125,125,44,57,50,52,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,56,49,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,114,40,116,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,110,44,105,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,40,110,61,116,46,116,111,83,116,114,105,110,103,41,38,38,33,114,40,105,61,110,46,99,97,108,108,40,116,41,41,41,114,101,116,117,114,110,32,105,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,110,61,116,46,118,97,108,117,101,79,102,41,38,38,33,114,40,105,61,110,46,99,97,108,108,40,116,41,41,41,114,101,116,117,114,110,32,105,59,105,102,40,33,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,110,61,116,46,116,111,83,116,114,105,110,103,41,38,38,33,114,40,105,61,110,46,99,97,108,108,40,116,41,41,41,114,101,116,117,114,110,32,105,59,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,39,116,32,99,111,110,118,101,114,116,32,111,98,106,101,99,116,32,116,111,32,112,114,105,109,105,116,105,118,101,32,118,97,108,117,101,34,41,125,125,44,56,55,53,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,105,102,40,110,40,49,57,49,54,41,41,123,118,97,114,32,114,61,110,40,53,49,49,51,41,44,105,61,110,40,54,51,52,49,41,44,111,61,110,40,49,50,52,48,41,44,97,61,110,40,53,51,54,54,41,44,115,61,110,40,55,55,50,56,41,44,99,61,110,40,57,56,57,53,41,44,117,61,110,40,50,55,57,52,41,44,108,61,110,40,53,57,57,41,44,102,61,110,40,49,55,54,49,41,44,104,61,110,40,56,52,52,50,41,44,100,61,110,40,52,48,57,50,41,44,112,61,110,40,49,53,52,57,41,44,118,61,110,40,49,56,51,56,41,44,103,61,110,40,57,55,48,55,41,44,109,61,110,40,53,48,52,52,41,44,98,61,110,40,57,50,52,49,41,44,121,61,110,40,49,48,54,51,41,44,119,61,110,40,50,56,52,53,41,44,95,61,110,40,55,52,56,49,41,44,120,61,110,40,52,50,48,48,41,44,79,61,110,40,51,56,57,52,41,44,83,61,110,40,50,53,52,53,41,44,107,61,110,40,52,52,48,56,41,44,67,61,110,40,52,50,51,48,41,46,102,44,80,61,110,40,56,52,52,52,41,44,84,61,110,40,52,51,48,41,44,106,61,110,40,57,55,51,57,41,44,69,61,110,40,54,57,51,52,41,44,68,61,110,40,49,53,52,53,41,44,65,61,110,40,57,55,56,57,41,44,76,61,110,40,49,51,48,56,41,44,73,61,110,40,52,57,49,57,41,44,77,61,110,40,49,52,54,49,41,44,36,61,110,40,53,57,57,51,41,44,70,61,110,40,56,53,50,41,44,82,61,110,40,52,56,57,51,41,44,78,61,110,40,51,53,51,48,41,44,66,61,110,40,55,55,54,50,41,44,122,61,78,46,102,44,86,61,66,46,102,44,72,61,105,46,82,97,110,103,101,69,114,114,111,114,44,85,61,105,46,84,121,112,101,69,114,114,111,114,44,87,61,105,46,85,105,110,116,56,65,114,114,97,121,44,71,61,34,65,114,114,97,121,66,117,102,102,101,114,34,44,113,61,34,83,104,97,114,101,100,34,43,71,44,89,61,34,66,89,84,69,83,95,80,69,82,95,69,76,69,77,69,78,84,34,44,75,61,34,112,114,111,116,111,116,121,112,101,34,44,88,61,65,114,114,97,121,91,75,93,44,90,61,99,46,65,114,114,97,121,66,117,102,102,101,114,44,74,61,99,46,68,97,116,97,86,105,101,119,44,81,61,69,40,48,41,44,116,116,61,69,40,50,41,44,101,116,61,69,40,51,41,44,110,116,61,69,40,52,41,44,114,116,61,69,40,53,41,44,105,116,61,69,40,54,41,44,111,116,61,68,40,33,48,41,44,97,116,61,68,40,33,49,41,44,115,116,61,76,46,118,97,108,117,101,115,44,99,116,61,76,46,107,101,121,115,44,117,116,61,76,46,101,110,116,114,105,101,115,44,108,116,61,88,46,108,97,115,116,73,110,100,101,120,79,102,44,102,116,61,88,46,114,101,100,117,99,101,44,104,116,61,88,46,114,101,100,117,99,101,82,105,103,104,116,44,100,116,61,88,46,106,111,105,110,44,112,116,61,88,46,115,111,114,116,44,118,116,61,88,46,115,108,105,99,101,44,103,116,61,88,46,116,111,83,116,114,105,110,103,44,109,116,61,88,46,116,111,76,111,99,97,108,101,83,116,114,105,110,103,44,98,116,61,106,40,34,105,116,101,114,97,116,111,114,34,41,44,121,116,61,106,40,34,116,111,83,116,114,105,110,103,84,97,103,34,41,44,119,116,61,84,40,34,116,121,112,101,100,95,99,111,110,115,116,114,117,99,116,111,114,34,41,44,95,116,61,84,40,34,100,101,102,95,99,111,110,115,116,114,117,99,116,111,114,34,41,44,120,116,61,115,46,67,79,78,83,84,82,44,79,116,61,115,46,84,89,80,69,68,44,83,116,61,115,46,86,73,69,87,44,107,116,61,34,87,114,111,110,103,32,108,101,110,103,116,104,33,34,44,67,116,61,69,40,49,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,68,116,40,65,40,116,44,116,91,95,116,93,41,44,101,41,125,41,41,44,80,116,61,111,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,61,61,61,110,101,119,32,87,40,110,101,119,32,85,105,110,116,49,54,65,114,114,97,121,40,91,49,93,41,46,98,117,102,102,101,114,41,91,48,93,125,41,41,44,84,116,61,33,33,87,38,38,33,33,87,91,75,93,46,115,101,116,38,38,111,40,40,102,117,110,99,116,105,111,110,40,41,123,110,101,119,32,87,40,49,41,46,115,101,116,40,123,125,41,125,41,41,44,106,116,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,59,105,102,40,110,60,48,124,124,110,37,101,41,116,104,114,111,119,32,72,40,34,87,114,111,110,103,32,111,102,102,115,101,116,33,34,41,59,114,101,116,117,114,110,32,110,125,44,69,116,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,95,40,116,41,38,38,79,116,32,105,110,32,116,41,114,101,116,117,114,110,32,116,59,116,104,114,111,119,32,85,40,116,43,34,32,105,115,32,110,111,116,32,97,32,116,121,112,101,100,32,97,114,114,97,121,33,34,41,125,44,68,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,95,40,116,41,124,124,33,40,119,116,32,105,110,32,116,41,41,116,104,114,111,119,32,85,40,34,73,116,32,105,115,32,110,111,116,32,97,32,116,121,112,101,100,32,97,114,114,97,121,32,99,111,110,115,116,114,117,99,116,111,114,33,34,41,59,114,101,116,117,114,110,32,110,101,119,32,116,40,101,41,125,44,65,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,76,116,40,65,40,116,44,116,91,95,116,93,41,44,101,41,125,44,76,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,48,44,114,61,101,46,108,101,110,103,116,104,44,105,61,68,116,40,116,44,114,41,59,119,104,105,108,101,40,114,62,110,41,105,91,110,93,61,101,91,110,43,43,93,59,114,101,116,117,114,110,32,105,125,44,73,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,122,40,116,44,101,44,123,103,101,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,95,100,91,110,93,125,125,41,125,44,77,116,61,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,61,120,40,116,41,44,99,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,108,61,99,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,44,102,61,118,111,105,100,32,48,33,61,61,108,44,104,61,80,40,115,41,59,105,102,40,118,111,105,100,32,48,33,61,104,38,38,33,79,40,104,41,41,123,102,111,114,40,97,61,104,46,99,97,108,108,40,115,41,44,114,61,91,93,44,101,61,48,59,33,40,111,61,97,46,110,101,120,116,40,41,41,46,100,111,110,101,59,101,43,43,41,114,46,112,117,115,104,40,111,46,118,97,108,117,101,41,59,115,61,114,125,102,111,114,40,102,38,38,99,62,50,38,38,40,108,61,117,40,108,44,97,114,103,117,109,101,110,116,115,91,50,93,44,50,41,41,44,101,61,48,44,110,61,118,40,115,46,108,101,110,103,116,104,41,44,105,61,68,116,40,116,104,105,115,44,110,41,59,110,62,101,59,101,43,43,41,105,91,101,93,61,102,63,108,40,115,91,101,93,44,101,41,58,115,91,101,93,59,114,101,116,117,114,110,32,105,125,44,36,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,44,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,110,61,68,116,40,116,104,105,115,44,101,41,59,119,104,105,108,101,40,101,62,116,41,110,91,116,93,61,97,114,103,117,109,101,110,116,115,91,116,43,43,93,59,114,101,116,117,114,110,32,110,125,44,70,116,61,33,33,87,38,38,111,40,40,102,117,110,99,116,105,111,110,40,41,123,109,116,46,99,97,108,108,40,110,101,119,32,87,40,49,41,41,125,41,41,44,82,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,109,116,46,97,112,112,108,121,40,70,116,63,118,116,46,99,97,108,108,40,69,116,40,116,104,105,115,41,41,58,69,116,40,116,104,105,115,41,44,97,114,103,117,109,101,110,116,115,41,125,44,78,116,61,123,99,111,112,121,87,105,116,104,105,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,82,46,99,97,108,108,40,69,116,40,116,104,105,115,41,44,116,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,50,63,97,114,103,117,109,101,110,116,115,91,50,93,58,118,111,105,100,32,48,41,125,44,101,118,101,114,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,116,40,69,116,40,116,104,105,115,41,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,41,125,44,102,105,108,108,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,70,46,97,112,112,108,121,40,69,116,40,116,104,105,115,41,44,97,114,103,117,109,101,110,116,115,41,125,44,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,65,116,40,116,104,105,115,44,116,116,40,69,116,40,116,104,105,115,41,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,41,41,125,44,102,105,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,116,40,69,116,40,116,104,105,115,41,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,41,125,44,102,105,110,100,73,110,100,101,120,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,116,40,69,116,40,116,104,105,115,41,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,41,125,44,102,111,114,69,97,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,81,40,69,116,40,116,104,105,115,41,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,41,125,44,105,110,100,101,120,79,102,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,116,40,69,116,40,116,104,105,115,41,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,41,125,44,105,110,99,108,117,100,101,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,116,40,69,116,40,116,104,105,115,41,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,41,125,44,106,111,105,110,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,100,116,46,97,112,112,108,121,40,69,116,40,116,104,105,115,41,44,97,114,103,117,109,101,110,116,115,41,125,44,108,97,115,116,73,110,100,101,120,79,102,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,108,116,46,97,112,112,108,121,40,69,116,40,116,104,105,115,41,44,97,114,103,117,109,101,110,116,115,41,125,44,109,97,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,116,40,69,116,40,116,104,105,115,41,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,41,125,44,114,101,100,117,99,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,116,46,97,112,112,108,121,40,69,116,40,116,104,105,115,41,44,97,114,103,117,109,101,110,116,115,41,125,44,114,101,100,117,99,101,82,105,103,104,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,104,116,46,97,112,112,108,121,40,69,116,40,116,104,105,115,41,44,97,114,103,117,109,101,110,116,115,41,125,44,114,101,118,101,114,115,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,61,116,104,105,115,44,110,61,69,116,40,101,41,46,108,101,110,103,116,104,44,114,61,77,97,116,104,46,102,108,111,111,114,40,110,47,50,41,44,105,61,48,59,119,104,105,108,101,40,105,60,114,41,116,61,101,91,105,93,44,101,91,105,43,43,93,61,101,91,45,45,110,93,44,101,91,110,93,61,116,59,114,101,116,117,114,110,32,101,125,44,115,111,109,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,116,40,69,116,40,116,104,105,115,41,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,41,125,44,115,111,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,112,116,46,99,97,108,108,40,69,116,40,116,104,105,115,41,44,116,41,125,44,115,117,98,97,114,114,97,121,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,69,116,40,116,104,105,115,41,44,114,61,110,46,108,101,110,103,116,104,44,105,61,109,40,116,44,114,41,59,114,101,116,117,114,110,32,110,101,119,40,65,40,110,44,110,91,95,116,93,41,41,40,110,46,98,117,102,102,101,114,44,110,46,98,121,116,101,79,102,102,115,101,116,43,105,42,110,46,66,89,84,69,83,95,80,69,82,95,69,76,69,77,69,78,84,44,118,40,40,118,111,105,100,32,48,61,61,61,101,63,114,58,109,40,101,44,114,41,41,45,105,41,41,125,125,44,66,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,65,116,40,116,104,105,115,44,118,116,46,99,97,108,108,40,69,116,40,116,104,105,115,41,44,116,44,101,41,41,125,44,122,116,61,102,117,110,99,116,105,111,110,40,116,41,123,69,116,40,116,104,105,115,41,59,118,97,114,32,101,61,106,116,40,97,114,103,117,109,101,110,116,115,91,49,93,44,49,41,44,110,61,116,104,105,115,46,108,101,110,103,116,104,44,114,61,120,40,116,41,44,105,61,118,40,114,46,108,101,110,103,116,104,41,44,111,61,48,59,105,102,40,105,43,101,62,110,41,116,104,114,111,119,32,72,40,107,116,41,59,119,104,105,108,101,40,111,60,105,41,116,104,105,115,91,101,43,111,93,61,114,91,111,43,43,93,125,44,86,116,61,123,101,110,116,114,105,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,117,116,46,99,97,108,108,40,69,116,40,116,104,105,115,41,41,125,44,107,101,121,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,116,46,99,97,108,108,40,69,116,40,116,104,105,115,41,41,125,44,118,97,108,117,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,116,46,99,97,108,108,40,69,116,40,116,104,105,115,41,41,125,125,44,72,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,95,40,116,41,38,38,116,91,79,116,93,38,38,34,115,121,109,98,111,108,34,33,61,116,121,112,101,111,102,32,101,38,38,101,32,105,110,32,116,38,38,83,116,114,105,110,103,40,43,101,41,61,61,83,116,114,105,110,103,40,101,41,125,44,85,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,72,116,40,116,44,101,61,98,40,101,44,33,48,41,41,63,102,40,50,44,116,91,101,93,41,58,86,40,116,44,101,41,125,44,87,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,33,40,72,116,40,116,44,101,61,98,40,101,44,33,48,41,41,38,38,95,40,110,41,38,38,121,40,110,44,34,118,97,108,117,101,34,41,41,124,124,121,40,110,44,34,103,101,116,34,41,124,124,121,40,110,44,34,115,101,116,34,41,124,124,110,46,99,111,110,102,105,103,117,114,97,98,108,101,124,124,121,40,110,44,34,119,114,105,116,97,98,108,101,34,41,38,38,33,110,46,119,114,105,116,97,98,108,101,124,124,121,40,110,44,34,101,110,117,109,101,114,97,98,108,101,34,41,38,38,33,110,46,101,110,117,109,101,114,97,98,108,101,63,122,40,116,44,101,44,110,41,58,40,116,91,101,93,61,110,46,118,97,108,117,101,44,116,41,125,59,120,116,124,124,40,66,46,102,61,85,116,44,78,46,102,61,87,116,41,44,97,40,97,46,83,43,97,46,70,42,33,120,116,44,34,79,98,106,101,99,116,34,44,123,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,58,85,116,44,100,101,102,105,110,101,80,114,111,112,101,114,116,121,58,87,116,125,41,44,111,40,40,102,117,110,99,116,105,111,110,40,41,123,103,116,46,99,97,108,108,40,123,125,41,125,41,41,38,38,40,103,116,61,109,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,100,116,46,99,97,108,108,40,116,104,105,115,41,125,41,59,118,97,114,32,71,116,61,100,40,123,125,44,78,116,41,59,100,40,71,116,44,86,116,41,44,104,40,71,116,44,98,116,44,86,116,46,118,97,108,117,101,115,41,44,100,40,71,116,44,123,115,108,105,99,101,58,66,116,44,115,101,116,58,122,116,44,99,111,110,115,116,114,117,99,116,111,114,58,102,117,110,99,116,105,111,110,40,41,123,125,44,116,111,83,116,114,105,110,103,58,103,116,44,116,111,76,111,99,97,108,101,83,116,114,105,110,103,58,82,116,125,41,44,73,116,40,71,116,44,34,98,117,102,102,101,114,34,44,34,98,34,41,44,73,116,40,71,116,44,34,98,121,116,101,79,102,102,115,101,116,34,44,34,111,34,41,44,73,116,40,71,116,44,34,98,121,116,101,76,101,110,103,116,104,34,44,34,108,34,41,44,73,116,40,71,116,44,34,108,101,110,103,116,104,34,44,34,101,34,41,44,122,40,71,116,44,121,116,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,91,79,116,93,125,125,41,44,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,99,41,123,99,61,33,33,99,59,118,97,114,32,117,61,116,43,40,99,63,34,67,108,97,109,112,101,100,34,58,34,34,41,43,34,65,114,114,97,121,34,44,102,61,34,103,101,116,34,43,116,44,100,61,34,115,101,116,34,43,116,44,112,61,105,91,117,93,44,109,61,112,124,124,123,125,44,98,61,112,38,38,107,40,112,41,44,121,61,33,112,124,124,33,115,46,65,66,86,44,120,61,123,125,44,79,61,112,38,38,112,91,75,93,44,80,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,114,61,116,46,95,100,59,114,101,116,117,114,110,32,114,46,118,91,102,93,40,110,42,101,43,114,46,111,44,80,116,41,125,44,84,61,102,117,110,99,116,105,111,110,40,116,44,110,44,114,41,123,118,97,114,32,105,61,116,46,95,100,59,99,38,38,40,114,61,40,114,61,77,97,116,104,46,114,111,117,110,100,40,114,41,41,60,48,63,48,58,114,62,50,53,53,63,50,53,53,58,50,53,53,38,114,41,44,105,46,118,91,100,93,40,110,42,101,43,105,46,111,44,114,44,80,116,41,125,44,106,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,122,40,116,44,101,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,80,40,116,104,105,115,44,101,41,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,84,40,116,104,105,115,44,101,44,116,41,125,44,101,110,117,109,101,114,97,98,108,101,58,33,48,125,41,125,59,121,63,40,112,61,110,40,40,102,117,110,99,116,105,111,110,40,116,44,110,44,114,44,105,41,123,108,40,116,44,112,44,117,44,34,95,100,34,41,59,118,97,114,32,111,44,97,44,115,44,99,44,102,61,48,44,100,61,48,59,105,102,40,95,40,110,41,41,123,105,102,40,33,40,110,32,105,110,115,116,97,110,99,101,111,102,32,90,124,124,40,99,61,119,40,110,41,41,61,61,71,124,124,99,61,61,113,41,41,114,101,116,117,114,110,32,79,116,32,105,110,32,110,63,76,116,40,112,44,110,41,58,77,116,46,99,97,108,108,40,112,44,110,41,59,111,61,110,44,100,61,106,116,40,114,44,101,41,59,118,97,114,32,109,61,110,46,98,121,116,101,76,101,110,103,116,104,59,105,102,40,118,111,105,100,32,48,61,61,61,105,41,123,105,102,40,109,37,101,41,116,104,114,111,119,32,72,40,107,116,41,59,105,102,40,97,61,109,45,100,44,97,60,48,41,116,104,114,111,119,32,72,40,107,116,41,125,101,108,115,101,32,105,102,40,97,61,118,40,105,41,42,101,44,97,43,100,62,109,41,116,104,114,111,119,32,72,40,107,116,41,59,115,61,97,47,101,125,101,108,115,101,32,115,61,103,40,110,41,44,97,61,115,42,101,44,111,61,110,101,119,32,90,40,97,41,59,104,40,116,44,34,95,100,34,44,123,98,58,111,44,111,58,100,44,108,58,97,44,101,58,115,44,118,58,110,101,119,32,74,40,111,41,125,41,59,119,104,105,108,101,40,102,60,115,41,106,40,116,44,102,43,43,41,125,41,41,44,79,61,112,91,75,93,61,83,40,71,116,41,44,104,40,79,44,34,99,111,110,115,116,114,117,99,116,111,114,34,44,112,41,41,58,111,40,40,102,117,110,99,116,105,111,110,40,41,123,112,40,49,41,125,41,41,38,38,111,40,40,102,117,110,99,116,105,111,110,40,41,123,110,101,119,32,112,40,45,49,41,125,41,41,38,38,77,40,40,102,117,110,99,116,105,111,110,40,116,41,123,110,101,119,32,112,44,110,101,119,32,112,40,110,117,108,108,41,44,110,101,119,32,112,40,49,46,53,41,44,110,101,119,32,112,40,116,41,125,41,44,33,48,41,124,124,40,112,61,110,40,40,102,117,110,99,116,105,111,110,40,116,44,110,44,114,44,105,41,123,118,97,114,32,111,59,114,101,116,117,114,110,32,108,40,116,44,112,44,117,41,44,95,40,110,41,63,110,32,105,110,115,116,97,110,99,101,111,102,32,90,124,124,40,111,61,119,40,110,41,41,61,61,71,124,124,111,61,61,113,63,118,111,105,100,32,48,33,61,61,105,63,110,101,119,32,109,40,110,44,106,116,40,114,44,101,41,44,105,41,58,118,111,105,100,32,48,33,61,61,114,63,110,101,119,32,109,40,110,44,106,116,40,114,44,101,41,41,58,110,101,119,32,109,40,110,41,58,79,116,32,105,110,32,110,63,76,116,40,112,44,110,41,58,77,116,46,99,97,108,108,40,112,44,110,41,58,110,101,119,32,109,40,103,40,110,41,41,125,41,41,44,81,40,98,33,61,61,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,63,67,40,109,41,46,99,111,110,99,97,116,40,67,40,98,41,41,58,67,40,109,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,32,105,110,32,112,124,124,104,40,112,44,116,44,109,91,116,93,41,125,41,41,44,112,91,75,93,61,79,44,114,124,124,40,79,46,99,111,110,115,116,114,117,99,116,111,114,61,112,41,41,59,118,97,114,32,69,61,79,91,98,116,93,44,68,61,33,33,69,38,38,40,34,118,97,108,117,101,115,34,61,61,69,46,110,97,109,101,124,124,118,111,105,100,32,48,61,61,69,46,110,97,109,101,41,44,65,61,86,116,46,118,97,108,117,101,115,59,104,40,112,44,119,116,44,33,48,41,44,104,40,79,44,79,116,44,117,41,44,104,40,79,44,83,116,44,33,48,41,44,104,40,79,44,95,116,44,112,41,44,40,99,63,110,101,119,32,112,40,49,41,91,121,116,93,61,61,117,58,121,116,32,105,110,32,79,41,124,124,122,40,79,44,121,116,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,117,125,125,41,44,120,91,117,93,61,112,44,97,40,97,46,71,43,97,46,87,43,97,46,70,42,40,112,33,61,109,41,44,120,41,44,97,40,97,46,83,44,117,44,123,66,89,84,69,83,95,80,69,82,95,69,76,69,77,69,78,84,58,101,125,41,44,97,40,97,46,83,43,97,46,70,42,111,40,40,102,117,110,99,116,105,111,110,40,41,123,109,46,111,102,46,99,97,108,108,40,112,44,49,41,125,41,41,44,117,44,123,102,114,111,109,58,77,116,44,111,102,58,36,116,125,41,44,89,32,105,110,32,79,124,124,104,40,79,44,89,44,101,41,44,97,40,97,46,80,44,117,44,78,116,41,44,36,40,117,41,44,97,40,97,46,80,43,97,46,70,42,84,116,44,117,44,123,115,101,116,58,122,116,125,41,44,97,40,97,46,80,43,97,46,70,42,33,68,44,117,44,86,116,41,44,114,124,124,79,46,116,111,83,116,114,105,110,103,61,61,103,116,124,124,40,79,46,116,111,83,116,114,105,110,103,61,103,116,41,44,97,40,97,46,80,43,97,46,70,42,111,40,40,102,117,110,99,116,105,111,110,40,41,123,110,101,119,32,112,40,49,41,46,115,108,105,99,101,40,41,125,41,41,44,117,44,123,115,108,105,99,101,58,66,116,125,41,44,97,40,97,46,80,43,97,46,70,42,40,111,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,49,44,50,93,46,116,111,76,111,99,97,108,101,83,116,114,105,110,103,40,41,33,61,110,101,119,32,112,40,91,49,44,50,93,41,46,116,111,76,111,99,97,108,101,83,116,114,105,110,103,40,41,125,41,41,124,124,33,111,40,40,102,117,110,99,116,105,111,110,40,41,123,79,46,116,111,76,111,99,97,108,101,83,116,114,105,110,103,46,99,97,108,108,40,91,49,44,50,93,41,125,41,41,41,44,117,44,123,116,111,76,111,99,97,108,101,83,116,114,105,110,103,58,82,116,125,41,44,73,91,117,93,61,68,63,69,58,65,44,114,124,124,68,124,124,104,40,79,44,98,116,44,65,41,125,125,101,108,115,101,32,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,125,125,44,57,56,57,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,54,51,52,49,41,44,105,61,110,40,49,57,49,54,41,44,111,61,110,40,53,49,49,51,41,44,97,61,110,40,55,55,50,56,41,44,115,61,110,40,56,52,52,50,41,44,99,61,110,40,52,48,57,50,41,44,117,61,110,40,49,50,52,48,41,44,108,61,110,40,53,57,57,41,44,102,61,110,40,49,53,52,57,41,44,104,61,110,40,49,56,51,56,41,44,100,61,110,40,57,55,48,55,41,44,112,61,110,40,52,50,51,48,41,46,102,44,118,61,110,40,51,53,51,48,41,46,102,44,103,61,110,40,56,53,50,41,44,109,61,110,40,49,51,48,57,41,44,98,61,34,65,114,114,97,121,66,117,102,102,101,114,34,44,121,61,34,68,97,116,97,86,105,101,119,34,44,119,61,34,112,114,111,116,111,116,121,112,101,34,44,95,61,34,87,114,111,110,103,32,108,101,110,103,116,104,33,34,44,120,61,34,87,114,111,110,103,32,105,110,100,101,120,33,34,44,79,61,114,91,98,93,44,83,61,114,91,121,93,44,107,61,114,46,77,97,116,104,44,67,61,114,46,82,97,110,103,101,69,114,114,111,114,44,80,61,114,46,73,110,102,105,110,105,116,121,44,84,61,79,44,106,61,107,46,97,98,115,44,69,61,107,46,112,111,119,44,68,61,107,46,102,108,111,111,114,44,65,61,107,46,108,111,103,44,76,61,107,46,76,78,50,44,73,61,34,98,117,102,102,101,114,34,44,77,61,34,98,121,116,101,76,101,110,103,116,104,34,44,36,61,34,98,121,116,101,79,102,102,115,101,116,34,44,70,61,105,63,34,95,98,34,58,73,44,82,61,105,63,34,95,108,34,58,77,44,78,61,105,63,34,95,111,34,58,36,59,102,117,110,99,116,105,111,110,32,66,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,110,101,119,32,65,114,114,97,121,40,110,41,44,115,61,56,42,110,45,101,45,49,44,99,61,40,49,60,60,115,41,45,49,44,117,61,99,62,62,49,44,108,61,50,51,61,61,61,101,63,69,40,50,44,45,50,52,41,45,69,40,50,44,45,55,55,41,58,48,44,102,61,48,44,104,61,116,60,48,124,124,48,61,61,61,116,38,38,49,47,116,60,48,63,49,58,48,59,102,111,114,40,116,61,106,40,116,41,44,116,33,61,116,124,124,116,61,61,61,80,63,40,105,61,116,33,61,116,63,49,58,48,44,114,61,99,41,58,40,114,61,68,40,65,40,116,41,47,76,41,44,116,42,40,111,61,69,40,50,44,45,114,41,41,60,49,38,38,40,114,45,45,44,111,42,61,50,41,44,116,43,61,114,43,117,62,61,49,63,108,47,111,58,108,42,69,40,50,44,49,45,117,41,44,116,42,111,62,61,50,38,38,40,114,43,43,44,111,47,61,50,41,44,114,43,117,62,61,99,63,40,105,61,48,44,114,61,99,41,58,114,43,117,62,61,49,63,40,105,61,40,116,42,111,45,49,41,42,69,40,50,44,101,41,44,114,43,61,117,41,58,40,105,61,116,42,69,40,50,44,117,45,49,41,42,69,40,50,44,101,41,44,114,61,48,41,41,59,101,62,61,56,59,97,91,102,43,43,93,61,50,53,53,38,105,44,105,47,61,50,53,54,44,101,45,61,56,41,59,102,111,114,40,114,61,114,60,60,101,124,105,44,115,43,61,101,59,115,62,48,59,97,91,102,43,43,93,61,50,53,53,38,114,44,114,47,61,50,53,54,44,115,45,61,56,41,59,114,101,116,117,114,110,32,97,91,45,45,102,93,124,61,49,50,56,42,104,44,97,125,102,117,110,99,116,105,111,110,32,122,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,61,56,42,110,45,101,45,49,44,111,61,40,49,60,60,105,41,45,49,44,97,61,111,62,62,49,44,115,61,105,45,55,44,99,61,110,45,49,44,117,61,116,91,99,45,45,93,44,108,61,49,50,55,38,117,59,102,111,114,40,117,62,62,61,55,59,115,62,48,59,108,61,50,53,54,42,108,43,116,91,99,93,44,99,45,45,44,115,45,61,56,41,59,102,111,114,40,114,61,108,38,40,49,60,60,45,115,41,45,49,44,108,62,62,61,45,115,44,115,43,61,101,59,115,62,48,59,114,61,50,53,54,42,114,43,116,91,99,93,44,99,45,45,44,115,45,61,56,41,59,105,102,40,48,61,61,61,108,41,108,61,49,45,97,59,101,108,115,101,123,105,102,40,108,61,61,61,111,41,114,101,116,117,114,110,32,114,63,78,97,78,58,117,63,45,80,58,80,59,114,43,61,69,40,50,44,101,41,44,108,45,61,97,125,114,101,116,117,114,110,40,117,63,45,49,58,49,41,42,114,42,69,40,50,44,108,45,101,41,125,102,117,110,99,116,105,111,110,32,86,40,116,41,123,114,101,116,117,114,110,32,116,91,51,93,60,60,50,52,124,116,91,50,93,60,60,49,54,124,116,91,49,93,60,60,56,124,116,91,48,93,125,102,117,110,99,116,105,111,110,32,72,40,116,41,123,114,101,116,117,114,110,91,50,53,53,38,116,93,125,102,117,110,99,116,105,111,110,32,85,40,116,41,123,114,101,116,117,114,110,91,50,53,53,38,116,44,116,62,62,56,38,50,53,53,93,125,102,117,110,99,116,105,111,110,32,87,40,116,41,123,114,101,116,117,114,110,91,50,53,53,38,116,44,116,62,62,56,38,50,53,53,44,116,62,62,49,54,38,50,53,53,44,116,62,62,50,52,38,50,53,53,93,125,102,117,110,99,116,105,111,110,32,71,40,116,41,123,114,101,116,117,114,110,32,66,40,116,44,53,50,44,56,41,125,102,117,110,99,116,105,111,110,32,113,40,116,41,123,114,101,116,117,114,110,32,66,40,116,44,50,51,44,52,41,125,102,117,110,99,116,105,111,110,32,89,40,116,44,101,44,110,41,123,118,40,116,91,119,93,44,101,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,91,110,93,125,125,41,125,102,117,110,99,116,105,111,110,32,75,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,43,110,44,111,61,100,40,105,41,59,105,102,40,111,43,101,62,116,91,82,93,41,116,104,114,111,119,32,67,40,120,41,59,118,97,114,32,97,61,116,91,70,93,46,95,98,44,115,61,111,43,116,91,78,93,44,99,61,97,46,115,108,105,99,101,40,115,44,115,43,101,41,59,114,101,116,117,114,110,32,114,63,99,58,99,46,114,101,118,101,114,115,101,40,41,125,102,117,110,99,116,105,111,110,32,88,40,116,44,101,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,61,43,110,44,115,61,100,40,97,41,59,105,102,40,115,43,101,62,116,91,82,93,41,116,104,114,111,119,32,67,40,120,41,59,102,111,114,40,118,97,114,32,99,61,116,91,70,93,46,95,98,44,117,61,115,43,116,91,78,93,44,108,61,114,40,43,105,41,44,102,61,48,59,102,60,101,59,102,43,43,41,99,91,117,43,102,93,61,108,91,111,63,102,58,101,45,102,45,49,93,125,105,102,40,97,46,65,66,86,41,123,105,102,40,33,117,40,40,102,117,110,99,116,105,111,110,40,41,123,79,40,49,41,125,41,41,124,124,33,117,40,40,102,117,110,99,116,105,111,110,40,41,123,110,101,119,32,79,40,45,49,41,125,41,41,124,124,117,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,79,44,110,101,119,32,79,40,49,46,53,41,44,110,101,119,32,79,40,78,97,78,41,44,79,46,110,97,109,101,33,61,98,125,41,41,41,123,79,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,108,40,116,104,105,115,44,79,41,44,110,101,119,32,84,40,100,40,116,41,41,125,59,102,111,114,40,118,97,114,32,90,44,74,61,79,91,119,93,61,84,91,119,93,44,81,61,112,40,84,41,44,116,116,61,48,59,81,46,108,101,110,103,116,104,62,116,116,59,41,40,90,61,81,91,116,116,43,43,93,41,105,110,32,79,124,124,115,40,79,44,90,44,84,91,90,93,41,59,111,124,124,40,74,46,99,111,110,115,116,114,117,99,116,111,114,61,79,41,125,118,97,114,32,101,116,61,110,101,119,32,83,40,110,101,119,32,79,40,50,41,41,44,110,116,61,83,91,119,93,46,115,101,116,73,110,116,56,59,101,116,46,115,101,116,73,110,116,56,40,48,44,50,49,52,55,52,56,51,54,52,56,41,44,101,116,46,115,101,116,73,110,116,56,40,49,44,50,49,52,55,52,56,51,54,52,57,41,44,33,101,116,46,103,101,116,73,110,116,56,40,48,41,38,38,101,116,46,103,101,116,73,110,116,56,40,49,41,124,124,99,40,83,91,119,93,44,123,115,101,116,73,110,116,56,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,110,116,46,99,97,108,108,40,116,104,105,115,44,116,44,101,60,60,50,52,62,62,50,52,41,125,44,115,101,116,85,105,110,116,56,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,110,116,46,99,97,108,108,40,116,104,105,115,44,116,44,101,60,60,50,52,62,62,50,52,41,125,125,44,33,48,41,125,101,108,115,101,32,79,61,102,117,110,99,116,105,111,110,40,116,41,123,108,40,116,104,105,115,44,79,44,98,41,59,118,97,114,32,101,61,100,40,116,41,59,116,104,105,115,46,95,98,61,103,46,99,97,108,108,40,110,101,119,32,65,114,114,97,121,40,101,41,44,48,41,44,116,104,105,115,91,82,93,61,101,125,44,83,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,108,40,116,104,105,115,44,83,44,121,41,44,108,40,116,44,79,44,121,41,59,118,97,114,32,114,61,116,91,82,93,44,105,61,102,40,101,41,59,105,102,40,105,60,48,124,124,105,62,114,41,116,104,114,111,119,32,67,40,34,87,114,111,110,103,32,111,102,102,115,101,116,33,34,41,59,105,102,40,110,61,118,111,105,100,32,48,61,61,61,110,63,114,45,105,58,104,40,110,41,44,105,43,110,62,114,41,116,104,114,111,119,32,67,40,95,41,59,116,104,105,115,91,70,93,61,116,44,116,104,105,115,91,78,93,61,105,44,116,104,105,115,91,82,93,61,110,125,44,105,38,38,40,89,40,79,44,77,44,34,95,108,34,41,44,89,40,83,44,73,44,34,95,98,34,41,44,89,40,83,44,77,44,34,95,108,34,41,44,89,40,83,44,36,44,34,95,111,34,41,41,44,99,40,83,91,119,93,44,123,103,101,116,73,110,116,56,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,75,40,116,104,105,115,44,49,44,116,41,91,48,93,60,60,50,52,62,62,50,52,125,44,103,101,116,85,105,110,116,56,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,75,40,116,104,105,115,44,49,44,116,41,91,48,93,125,44,103,101,116,73,110,116,49,54,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,75,40,116,104,105,115,44,50,44,116,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,114,101,116,117,114,110,40,101,91,49,93,60,60,56,124,101,91,48,93,41,60,60,49,54,62,62,49,54,125,44,103,101,116,85,105,110,116,49,54,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,75,40,116,104,105,115,44,50,44,116,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,114,101,116,117,114,110,32,101,91,49,93,60,60,56,124,101,91,48,93,125,44,103,101,116,73,110,116,51,50,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,86,40,75,40,116,104,105,115,44,52,44,116,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,125,44,103,101,116,85,105,110,116,51,50,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,86,40,75,40,116,104,105,115,44,52,44,116,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,62,62,62,48,125,44,103,101,116,70,108,111,97,116,51,50,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,122,40,75,40,116,104,105,115,44,52,44,116,44,97,114,103,117,109,101,110,116,115,91,49,93,41,44,50,51,44,52,41,125,44,103,101,116,70,108,111,97,116,54,52,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,122,40,75,40,116,104,105,115,44,56,44,116,44,97,114,103,117,109,101,110,116,115,91,49,93,41,44,53,50,44,56,41,125,44,115,101,116,73,110,116,56,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,88,40,116,104,105,115,44,49,44,116,44,72,44,101,41,125,44,115,101,116,85,105,110,116,56,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,88,40,116,104,105,115,44,49,44,116,44,72,44,101,41,125,44,115,101,116,73,110,116,49,54,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,88,40,116,104,105,115,44,50,44,116,44,85,44,101,44,97,114,103,117,109,101,110,116,115,91,50,93,41,125,44,115,101,116,85,105,110,116,49,54,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,88,40,116,104,105,115,44,50,44,116,44,85,44,101,44,97,114,103,117,109,101,110,116,115,91,50,93,41,125,44,115,101,116,73,110,116,51,50,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,88,40,116,104,105,115,44,52,44,116,44,87,44,101,44,97,114,103,117,109,101,110,116,115,91,50,93,41,125,44,115,101,116,85,105,110,116,51,50,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,88,40,116,104,105,115,44,52,44,116,44,87,44,101,44,97,114,103,117,109,101,110,116,115,91,50,93,41,125,44,115,101,116,70,108,111,97,116,51,50,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,88,40,116,104,105,115,44,52,44,116,44,113,44,101,44,97,114,103,117,109,101,110,116,115,91,50,93,41,125,44,115,101,116,70,108,111,97,116,54,52,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,88,40,116,104,105,115,44,56,44,116,44,71,44,101,44,97,114,103,117,109,101,110,116,115,91,50,93,41,125,125,41,59,109,40,79,44,98,41,44,109,40,83,44,121,41,44,115,40,83,91,119,93,44,97,46,86,73,69,87,44,33,48,41,44,101,91,98,93,61,79,44,101,91,121,93,61,83,125,44,55,55,50,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,61,110,40,54,51,52,49,41,44,111,61,110,40,56,52,52,50,41,44,97,61,110,40,52,51,48,41,44,115,61,97,40,34,116,121,112,101,100,95,97,114,114,97,121,34,41,44,99,61,97,40,34,118,105,101,119,34,41,44,117,61,33,40,33,105,46,65,114,114,97,121,66,117,102,102,101,114,124,124,33,105,46,68,97,116,97,86,105,101,119,41,44,108,61,117,44,102,61,48,44,104,61,57,44,100,61,34,73,110,116,56,65,114,114,97,121,44,85,105,110,116,56,65,114,114,97,121,44,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,44,73,110,116,49,54,65,114,114,97,121,44,85,105,110,116,49,54,65,114,114,97,121,44,73,110,116,51,50,65,114,114,97,121,44,85,105,110,116,51,50,65,114,114,97,121,44,70,108,111,97,116,51,50,65,114,114,97,121,44,70,108,111,97,116,54,52,65,114,114,97,121,34,46,115,112,108,105,116,40,34,44,34,41,59,119,104,105,108,101,40,102,60,104,41,40,114,61,105,91,100,91,102,43,43,93,93,41,63,40,111,40,114,46,112,114,111,116,111,116,121,112,101,44,115,44,33,48,41,44,111,40,114,46,112,114,111,116,111,116,121,112,101,44,99,44,33,48,41,41,58,108,61,33,49,59,116,46,101,120,112,111,114,116,115,61,123,65,66,86,58,117,44,67,79,78,83,84,82,58,108,44,84,89,80,69,68,58,115,44,86,73,69,87,58,99,125,125,44,52,51,48,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,48,44,110,61,77,97,116,104,46,114,97,110,100,111,109,40,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,83,121,109,98,111,108,40,34,46,99,111,110,99,97,116,40,118,111,105,100,32,48,61,61,61,116,63,34,34,58,116,44,34,41,95,34,44,40,43,43,101,43,110,41,46,116,111,83,116,114,105,110,103,40,51,54,41,41,125,125,44,51,56,52,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,54,51,52,49,41,44,105,61,114,46,110,97,118,105,103,97,116,111,114,59,116,46,101,120,112,111,114,116,115,61,105,38,38,105,46,117,115,101,114,65,103,101,110,116,124,124,34,34,125,44,49,54,48,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,56,49,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,114,40,116,41,124,124,116,46,95,116,33,61,61,101,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,99,111,109,112,97,116,105,98,108,101,32,114,101,99,101,105,118,101,114,44,32,34,43,101,43,34,32,114,101,113,117,105,114,101,100,33,34,41,59,114,101,116,117,114,110,32,116,125,125,44,56,49,53,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,54,51,52,49,41,44,105,61,110,40,52,52,49,49,41,44,111,61,110,40,53,49,49,51,41,44,97,61,110,40,56,56,51,51,41,44,115,61,110,40,51,53,51,48,41,46,102,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,105,46,83,121,109,98,111,108,124,124,40,105,46,83,121,109,98,111,108,61,111,63,123,125,58,114,46,83,121,109,98,111,108,124,124,123,125,41,59,34,95,34,61,61,116,46,99,104,97,114,65,116,40,48,41,124,124,116,32,105,110,32,101,124,124,115,40,101,44,116,44,123,118,97,108,117,101,58,97,46,102,40,116,41,125,41,125,125,44,56,56,51,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,46,102,61,110,40,57,55,51,57,41,125,44,57,55,51,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,51,53,53,41,40,34,119,107,115,34,41,44,105,61,110,40,52,51,48,41,44,111,61,110,40,54,51,52,49,41,46,83,121,109,98,111,108,44,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,111,44,115,61,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,91,116,93,124,124,40,114,91,116,93,61,97,38,38,111,91,116,93,124,124,40,97,63,111,58,105,41,40,34,83,121,109,98,111,108,46,34,43,116,41,41,125,59,115,46,115,116,111,114,101,61,114,125,44,56,52,52,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,50,56,52,53,41,44,105,61,110,40,57,55,51,57,41,40,34,105,116,101,114,97,116,111,114,34,41,44,111,61,110,40,52,57,49,57,41,59,116,46,101,120,112,111,114,116,115,61,110,40,52,52,49,49,41,46,103,101,116,73,116,101,114,97,116,111,114,77,101,116,104,111,100,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,118,111,105,100,32,48,33,61,116,41,114,101,116,117,114,110,32,116,91,105,93,124,124,116,91,34,64,64,105,116,101,114,97,116,111,114,34,93,124,124,111,91,114,40,116,41,93,125,125,44,49,52,49,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,80,44,34,65,114,114,97,121,34,44,123,99,111,112,121,87,105,116,104,105,110,58,110,40,52,56,57,51,41,125,41,44,110,40,50,56,48,50,41,40,34,99,111,112,121,87,105,116,104,105,110,34,41,125,44,53,57,52,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,54,57,51,52,41,40,52,41,59,114,40,114,46,80,43,114,46,70,42,33,110,40,53,49,51,57,41,40,91,93,46,101,118,101,114,121,44,33,48,41,44,34,65,114,114,97,121,34,44,123,101,118,101,114,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,104,105,115,44,116,44,97,114,103,117,109,101,110,116,115,91,49,93,41,125,125,41,125,44,51,54,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,80,44,34,65,114,114,97,121,34,44,123,102,105,108,108,58,110,40,56,53,50,41,125,41,44,110,40,50,56,48,50,41,40,34,102,105,108,108,34,41,125,44,51,51,53,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,54,57,51,52,41,40,50,41,59,114,40,114,46,80,43,114,46,70,42,33,110,40,53,49,51,57,41,40,91,93,46,102,105,108,116,101,114,44,33,48,41,44,34,65,114,114,97,121,34,44,123,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,104,105,115,44,116,44,97,114,103,117,109,101,110,116,115,91,49,93,41,125,125,41,125,44,51,49,49,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,54,57,51,52,41,40,54,41,44,111,61,34,102,105,110,100,73,110,100,101,120,34,44,97,61,33,48,59,111,32,105,110,91,93,38,38,65,114,114,97,121,40,49,41,91,111,93,40,40,102,117,110,99,116,105,111,110,40,41,123,97,61,33,49,125,41,41,44,114,40,114,46,80,43,114,46,70,42,97,44,34,65,114,114,97,121,34,44,123,102,105,110,100,73,110,100,101,120,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,104,105,115,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,41,125,125,41,44,110,40,50,56,48,50,41,40,111,41,125,44,56,51,57,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,54,57,51,52,41,40,53,41,44,111,61,34,102,105,110,100,34,44,97,61,33,48,59,111,32,105,110,91,93,38,38,65,114,114,97,121,40,49,41,91,111,93,40,40,102,117,110,99,116,105,111,110,40,41,123,97,61,33,49,125,41,41,44,114,40,114,46,80,43,114,46,70,42,97,44,34,65,114,114,97,121,34,44,123,102,105,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,104,105,115,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,41,125,125,41,44,110,40,50,56,48,50,41,40,111,41,125,44,57,49,48,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,54,57,51,52,41,40,48,41,44,111,61,110,40,53,49,51,57,41,40,91,93,46,102,111,114,69,97,99,104,44,33,48,41,59,114,40,114,46,80,43,114,46,70,42,33,111,44,34,65,114,114,97,121,34,44,123,102,111,114,69,97,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,104,105,115,44,116,44,97,114,103,117,109,101,110,116,115,91,49,93,41,125,125,41,125,44,53,50,55,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,50,55,57,52,41,44,105,61,110,40,53,51,54,54,41,44,111,61,110,40,52,50,48,48,41,44,97,61,110,40,53,53,51,57,41,44,115,61,110,40,51,56,57,52,41,44,99,61,110,40,49,56,51,56,41,44,117,61,110,40,49,54,55,54,41,44,108,61,110,40,56,52,52,52,41,59,105,40,105,46,83,43,105,46,70,42,33,110,40,49,52,54,49,41,40,40,102,117,110,99,116,105,111,110,40,116,41,123,65,114,114,97,121,46,102,114,111,109,40,116,41,125,41,41,44,34,65,114,114,97,121,34,44,123,102,114,111,109,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,105,44,102,44,104,61,111,40,116,41,44,100,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,63,116,104,105,115,58,65,114,114,97,121,44,112,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,118,61,112,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,44,103,61,118,111,105,100,32,48,33,61,61,118,44,109,61,48,44,98,61,108,40,104,41,59,105,102,40,103,38,38,40,118,61,114,40,118,44,112,62,50,63,97,114,103,117,109,101,110,116,115,91,50,93,58,118,111,105,100,32,48,44,50,41,41,44,118,111,105,100,32,48,61,61,98,124,124,100,61,61,65,114,114,97,121,38,38,115,40,98,41,41,102,111,114,40,101,61,99,40,104,46,108,101,110,103,116,104,41,44,110,61,110,101,119,32,100,40,101,41,59,101,62,109,59,109,43,43,41,117,40,110,44,109,44,103,63,118,40,104,91,109,93,44,109,41,58,104,91,109,93,41,59,101,108,115,101,32,102,111,114,40,102,61,98,46,99,97,108,108,40,104,41,44,110,61,110,101,119,32,100,59,33,40,105,61,102,46,110,101,120,116,40,41,41,46,100,111,110,101,59,109,43,43,41,117,40,110,44,109,44,103,63,97,40,102,44,118,44,91,105,46,118,97,108,117,101,44,109,93,44,33,48,41,58,105,46,118,97,108,117,101,41,59,114,101,116,117,114,110,32,110,46,108,101,110,103,116,104,61,109,44,110,125,125,41,125,44,54,49,55,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,49,53,52,53,41,40,33,49,41,44,111,61,91,93,46,105,110,100,101,120,79,102,44,97,61,33,33,111,38,38,49,47,91,49,93,46,105,110,100,101,120,79,102,40,49,44,45,48,41,60,48,59,114,40,114,46,80,43,114,46,70,42,40,97,124,124,33,110,40,53,49,51,57,41,40,111,41,41,44,34,65,114,114,97,121,34,44,123,105,110,100,101,120,79,102,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,63,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,124,124,48,58,105,40,116,104,105,115,44,116,44,97,114,103,117,109,101,110,116,115,91,49,93,41,125,125,41,125,44,49,54,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,65,114,114,97,121,34,44,123,105,115,65,114,114,97,121,58,110,40,54,56,57,41,125,41,125,44,49,51,48,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,50,56,48,50,41,44,105,61,110,40,56,54,49,49,41,44,111,61,110,40,52,57,49,57,41,44,97,61,110,40,56,53,48,48,41,59,116,46,101,120,112,111,114,116,115,61,110,40,57,49,50,49,41,40,65,114,114,97,121,44,34,65,114,114,97,121,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,95,116,61,97,40,116,41,44,116,104,105,115,46,95,105,61,48,44,116,104,105,115,46,95,107,61,101,125,41,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,44,101,61,116,104,105,115,46,95,107,44,110,61,116,104,105,115,46,95,105,43,43,59,114,101,116,117,114,110,33,116,124,124,110,62,61,116,46,108,101,110,103,116,104,63,40,116,104,105,115,46,95,116,61,118,111,105,100,32,48,44,105,40,49,41,41,58,105,40,48,44,34,107,101,121,115,34,61,61,101,63,110,58,34,118,97,108,117,101,115,34,61,61,101,63,116,91,110,93,58,91,110,44,116,91,110,93,93,41,125,41,44,34,118,97,108,117,101,115,34,41,44,111,46,65,114,103,117,109,101,110,116,115,61,111,46,65,114,114,97,121,44,114,40,34,107,101,121,115,34,41,44,114,40,34,118,97,108,117,101,115,34,41,44,114,40,34,101,110,116,114,105,101,115,34,41,125,44,50,53,50,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,56,53,48,48,41,44,111,61,91,93,46,106,111,105,110,59,114,40,114,46,80,43,114,46,70,42,40,110,40,57,55,53,41,33,61,79,98,106,101,99,116,124,124,33,110,40,53,49,51,57,41,40,111,41,41,44,34,65,114,114,97,121,34,44,123,106,111,105,110,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,46,99,97,108,108,40,105,40,116,104,105,115,41,44,118,111,105,100,32,48,61,61,61,116,63,34,44,34,58,116,41,125,125,41,125,44,54,57,55,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,56,53,48,48,41,44,111,61,110,40,49,53,52,57,41,44,97,61,110,40,49,56,51,56,41,44,115,61,91,93,46,108,97,115,116,73,110,100,101,120,79,102,44,99,61,33,33,115,38,38,49,47,91,49,93,46,108,97,115,116,73,110,100,101,120,79,102,40,49,44,45,48,41,60,48,59,114,40,114,46,80,43,114,46,70,42,40,99,124,124,33,110,40,53,49,51,57,41,40,115,41,41,44,34,65,114,114,97,121,34,44,123,108,97,115,116,73,110,100,101,120,79,102,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,99,41,114,101,116,117,114,110,32,115,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,124,124,48,59,118,97,114,32,101,61,105,40,116,104,105,115,41,44,110,61,97,40,101,46,108,101,110,103,116,104,41,44,114,61,110,45,49,59,102,111,114,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,40,114,61,77,97,116,104,46,109,105,110,40,114,44,111,40,97,114,103,117,109,101,110,116,115,91,49,93,41,41,41,44,114,60,48,38,38,40,114,61,110,43,114,41,59,114,62,61,48,59,114,45,45,41,105,102,40,114,32,105,110,32,101,38,38,101,91,114,93,61,61,61,116,41,114,101,116,117,114,110,32,114,124,124,48,59,114,101,116,117,114,110,45,49,125,125,41,125,44,57,49,51,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,54,57,51,52,41,40,49,41,59,114,40,114,46,80,43,114,46,70,42,33,110,40,53,49,51,57,41,40,91,93,46,109,97,112,44,33,48,41,44,34,65,114,114,97,121,34,44,123,109,97,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,104,105,115,44,116,44,97,114,103,117,109,101,110,116,115,91,49,93,41,125,125,41,125,44,56,50,50,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,49,54,55,54,41,59,114,40,114,46,83,43,114,46,70,42,110,40,49,50,52,48,41,40,40,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,125,114,101,116,117,114,110,33,40,65,114,114,97,121,46,111,102,46,99,97,108,108,40,116,41,105,110,115,116,97,110,99,101,111,102,32,116,41,125,41,41,44,34,65,114,114,97,121,34,44,123,111,102,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,44,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,110,61,110,101,119,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,63,116,104,105,115,58,65,114,114,97,121,41,40,101,41,59,119,104,105,108,101,40,101,62,116,41,105,40,110,44,116,44,97,114,103,117,109,101,110,116,115,91,116,43,43,93,41,59,114,101,116,117,114,110,32,110,46,108,101,110,103,116,104,61,101,44,110,125,125,41,125,44,56,50,57,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,57,56,53,55,41,59,114,40,114,46,80,43,114,46,70,42,33,110,40,53,49,51,57,41,40,91,93,46,114,101,100,117,99,101,82,105,103,104,116,44,33,48,41,44,34,65,114,114,97,121,34,44,123,114,101,100,117,99,101,82,105,103,104,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,104,105,115,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,97,114,103,117,109,101,110,116,115,91,49,93,44,33,48,41,125,125,41,125,44,57,52,56,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,57,56,53,55,41,59,114,40,114,46,80,43,114,46,70,42,33,110,40,53,49,51,57,41,40,91,93,46,114,101,100,117,99,101,44,33,48,41,44,34,65,114,114,97,121,34,44,123,114,101,100,117,99,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,104,105,115,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,97,114,103,117,109,101,110,116,115,91,49,93,44,33,49,41,125,125,41,125,44,53,52,52,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,54,49,51,55,41,44,111,61,110,40,57,52,50,54,41,44,97,61,110,40,53,48,52,52,41,44,115,61,110,40,49,56,51,56,41,44,99,61,91,93,46,115,108,105,99,101,59,114,40,114,46,80,43,114,46,70,42,110,40,49,50,52,48,41,40,40,102,117,110,99,116,105,111,110,40,41,123,105,38,38,99,46,99,97,108,108,40,105,41,125,41,41,44,34,65,114,114,97,121,34,44,123,115,108,105,99,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,115,40,116,104,105,115,46,108,101,110,103,116,104,41,44,114,61,111,40,116,104,105,115,41,59,105,102,40,101,61,118,111,105,100,32,48,61,61,61,101,63,110,58,101,44,34,65,114,114,97,121,34,61,61,114,41,114,101,116,117,114,110,32,99,46,99,97,108,108,40,116,104,105,115,44,116,44,101,41,59,102,111,114,40,118,97,114,32,105,61,97,40,116,44,110,41,44,117,61,97,40,101,44,110,41,44,108,61,115,40,117,45,105,41,44,102,61,110,101,119,32,65,114,114,97,121,40,108,41,44,104,61,48,59,104,60,108,59,104,43,43,41,102,91,104,93,61,34,83,116,114,105,110,103,34,61,61,114,63,116,104,105,115,46,99,104,97,114,65,116,40,105,43,104,41,58,116,104,105,115,91,105,43,104,93,59,114,101,116,117,114,110,32,102,125,125,41,125,44,51,50,56,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,54,57,51,52,41,40,51,41,59,114,40,114,46,80,43,114,46,70,42,33,110,40,53,49,51,57,41,40,91,93,46,115,111,109,101,44,33,48,41,44,34,65,114,114,97,121,34,44,123,115,111,109,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,104,105,115,44,116,44,97,114,103,117,109,101,110,116,115,91,49,93,41,125,125,41,125,44,56,51,55,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,51,48,55,57,41,44,111,61,110,40,52,50,48,48,41,44,97,61,110,40,49,50,52,48,41,44,115,61,91,93,46,115,111,114,116,44,99,61,91,49,44,50,44,51,93,59,114,40,114,46,80,43,114,46,70,42,40,97,40,40,102,117,110,99,116,105,111,110,40,41,123,99,46,115,111,114,116,40,118,111,105,100,32,48,41,125,41,41,124,124,33,97,40,40,102,117,110,99,116,105,111,110,40,41,123,99,46,115,111,114,116,40,110,117,108,108,41,125,41,41,124,124,33,110,40,53,49,51,57,41,40,115,41,41,44,34,65,114,114,97,121,34,44,123,115,111,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,115,46,99,97,108,108,40,111,40,116,104,105,115,41,41,58,115,46,99,97,108,108,40,111,40,116,104,105,115,41,44,105,40,116,41,41,125,125,41,125,44,56,55,55,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,53,57,57,51,41,40,34,65,114,114,97,121,34,41,125,44,50,51,51,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,68,97,116,101,34,44,123,110,111,119,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,110,101,119,32,68,97,116,101,41,46,103,101,116,84,105,109,101,40,41,125,125,41,125,44,49,53,55,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,49,55,57,50,41,59,114,40,114,46,80,43,114,46,70,42,40,68,97,116,101,46,112,114,111,116,111,116,121,112,101,46,116,111,73,83,79,83,116,114,105,110,103,33,61,61,105,41,44,34,68,97,116,101,34,44,123,116,111,73,83,79,83,116,114,105,110,103,58,105,125,41,125,44,54,52,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,52,50,48,48,41,44,111,61,110,40,57,50,52,49,41,59,114,40,114,46,80,43,114,46,70,42,110,40,49,50,52,48,41,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,110,101,119,32,68,97,116,101,40,78,97,78,41,46,116,111,74,83,79,78,40,41,124,124,49,33,61,61,68,97,116,101,46,112,114,111,116,111,116,121,112,101,46,116,111,74,83,79,78,46,99,97,108,108,40,123,116,111,73,83,79,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,125,125,41,125,41,41,44,34,68,97,116,101,34,44,123,116,111,74,83,79,78,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,105,40,116,104,105,115,41,44,110,61,111,40,101,41,59,114,101,116,117,114,110,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,110,124,124,105,115,70,105,110,105,116,101,40,110,41,63,101,46,116,111,73,83,79,83,116,114,105,110,103,40,41,58,110,117,108,108,125,125,41,125,44,49,48,51,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,55,51,57,41,40,34,116,111,80,114,105,109,105,116,105,118,101,34,41,44,105,61,68,97,116,101,46,112,114,111,116,111,116,121,112,101,59,114,32,105,110,32,105,124,124,110,40,56,52,52,50,41,40,105,44,114,44,110,40,55,54,56,55,41,41,125,44,53,54,49,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,68,97,116,101,46,112,114,111,116,111,116,121,112,101,44,105,61,34,73,110,118,97,108,105,100,32,68,97,116,101,34,44,111,61,34,116,111,83,116,114,105,110,103,34,44,97,61,114,91,111,93,44,115,61,114,46,103,101,116,84,105,109,101,59,110,101,119,32,68,97,116,101,40,78,97,78,41,43,34,34,33,61,105,38,38,110,40,49,53,54,52,41,40,114,44,111,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,115,46,99,97,108,108,40,116,104,105,115,41,59,114,101,116,117,114,110,32,116,61,61,61,116,63,97,46,99,97,108,108,40,116,104,105,115,41,58,105,125,41,41,125,44,56,55,54,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,80,44,34,70,117,110,99,116,105,111,110,34,44,123,98,105,110,100,58,110,40,54,57,54,54,41,125,41,125,44,57,51,56,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,55,52,56,49,41,44,105,61,110,40,52,52,48,56,41,44,111,61,110,40,57,55,51,57,41,40,34,104,97,115,73,110,115,116,97,110,99,101,34,41,44,97,61,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,59,111,32,105,110,32,97,124,124,110,40,51,53,51,48,41,46,102,40,97,44,111,44,123,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,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,104,105,115,124,124,33,114,40,116,41,41,114,101,116,117,114,110,33,49,59,105,102,40,33,114,40,116,104,105,115,46,112,114,111,116,111,116,121,112,101,41,41,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,116,104,105,115,59,119,104,105,108,101,40,116,61,105,40,116,41,41,105,102,40,116,104,105,115,46,112,114,111,116,111,116,121,112,101,61,61,61,116,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,125,41,125,44,55,50,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,51,53,51,48,41,46,102,44,105,61,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,44,111,61,47,94,92,115,42,102,117,110,99,116,105,111,110,32,40,91,94,32,40,93,42,41,47,44,97,61,34,110,97,109,101,34,59,97,32,105,110,32,105,124,124,110,40,49,57,49,54,41,38,38,114,40,105,44,97,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,116,114,121,123,114,101,116,117,114,110,40,34,34,43,116,104,105,115,41,46,109,97,116,99,104,40,111,41,91,49,93,125,99,97,116,99,104,40,116,41,123,114,101,116,117,114,110,34,34,125,125,125,41,125,44,50,53,48,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,49,52,52,41,44,105,61,110,40,49,54,48,51,41,44,111,61,34,77,97,112,34,59,116,46,101,120,112,111,114,116,115,61,110,40,56,48,57,49,41,40,111,44,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,63,97,114,103,117,109,101,110,116,115,91,48,93,58,118,111,105,100,32,48,41,125,125,41,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,114,46,103,101,116,69,110,116,114,121,40,105,40,116,104,105,115,44,111,41,44,116,41,59,114,101,116,117,114,110,32,101,38,38,101,46,118,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,114,46,100,101,102,40,105,40,116,104,105,115,44,111,41,44,48,61,61,61,116,63,48,58,116,44,101,41,125,125,44,114,44,33,48,41,125,44,50,51,55,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,57,48,48,55,41,44,111,61,77,97,116,104,46,115,113,114,116,44,97,61,77,97,116,104,46,97,99,111,115,104,59,114,40,114,46,83,43,114,46,70,42,33,40,97,38,38,55,49,48,61,61,77,97,116,104,46,102,108,111,111,114,40,97,40,78,117,109,98,101,114,46,77,65,88,95,86,65,76,85,69,41,41,38,38,97,40,49,47,48,41,61,61,49,47,48,41,44,34,77,97,116,104,34,44,123,97,99,111,115,104,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,61,43,116,41,60,49,63,78,97,78,58,116,62,57,52,57,48,54,50,54,53,46,54,50,52,50,53,49,53,54,63,77,97,116,104,46,108,111,103,40,116,41,43,77,97,116,104,46,76,78,50,58,105,40,116,45,49,43,111,40,116,45,49,41,42,111,40,116,43,49,41,41,125,125,41,125,44,53,49,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,77,97,116,104,46,97,115,105,110,104,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,61,43,116,41,38,38,48,33,61,116,63,116,60,48,63,45,111,40,45,116,41,58,77,97,116,104,46,108,111,103,40,116,43,77,97,116,104,46,115,113,114,116,40,116,42,116,43,49,41,41,58,116,125,114,40,114,46,83,43,114,46,70,42,33,40,105,38,38,49,47,105,40,48,41,62,48,41,44,34,77,97,116,104,34,44,123,97,115,105,110,104,58,111,125,41,125,44,54,55,56,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,77,97,116,104,46,97,116,97,110,104,59,114,40,114,46,83,43,114,46,70,42,33,40,105,38,38,49,47,105,40,45,48,41,60,48,41,44,34,77,97,116,104,34,44,123,97,116,97,110,104,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,48,61,61,40,116,61,43,116,41,63,116,58,77,97,116,104,46,108,111,103,40,40,49,43,116,41,47,40,49,45,116,41,41,47,50,125,125,41,125,44,52,52,51,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,52,50,52,55,41,59,114,40,114,46,83,44,34,77,97,116,104,34,44,123,99,98,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,61,43,116,41,42,77,97,116,104,46,112,111,119,40,77,97,116,104,46,97,98,115,40,116,41,44,49,47,51,41,125,125,41,125,44,52,55,56,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,77,97,116,104,34,44,123,99,108,122,51,50,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,62,62,62,61,48,41,63,51,49,45,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,116,43,46,53,41,42,77,97,116,104,46,76,79,71,50,69,41,58,51,50,125,125,41,125,44,53,53,50,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,77,97,116,104,46,101,120,112,59,114,40,114,46,83,44,34,77,97,116,104,34,44,123,99,111,115,104,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,105,40,116,61,43,116,41,43,105,40,45,116,41,41,47,50,125,125,41,125,44,52,48,57,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,55,49,49,55,41,59,114,40,114,46,83,43,114,46,70,42,40,105,33,61,77,97,116,104,46,101,120,112,109,49,41,44,34,77,97,116,104,34,44,123,101,120,112,109,49,58,105,125,41,125,44,54,51,55,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,77,97,116,104,34,44,123,102,114,111,117,110,100,58,110,40,57,51,57,54,41,125,41,125,44,50,51,56,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,77,97,116,104,46,97,98,115,59,114,40,114,46,83,44,34,77,97,116,104,34,44,123,104,121,112,111,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,44,111,61,48,44,97,61,48,44,115,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,99,61,48,59,119,104,105,108,101,40,97,60,115,41,110,61,105,40,97,114,103,117,109,101,110,116,115,91,97,43,43,93,41,44,99,60,110,63,40,114,61,99,47,110,44,111,61,111,42,114,42,114,43,49,44,99,61,110,41,58,110,62,48,63,40,114,61,110,47,99,44,111,43,61,114,42,114,41,58,111,43,61,110,59,114,101,116,117,114,110,32,99,61,61,61,49,47,48,63,49,47,48,58,99,42,77,97,116,104,46,115,113,114,116,40,111,41,125,125,41,125,44,50,56,48,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,77,97,116,104,46,105,109,117,108,59,114,40,114,46,83,43,114,46,70,42,110,40,49,50,52,48,41,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,45,53,33,61,105,40,52,50,57,52,57,54,55,50,57,53,44,53,41,124,124,50,33,61,105,46,108,101,110,103,116,104,125,41,41,44,34,77,97,116,104,34,44,123,105,109,117,108,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,54,53,53,51,53,44,114,61,43,116,44,105,61,43,101,44,111,61,110,38,114,44,97,61,110,38,105,59,114,101,116,117,114,110,32,48,124,111,42,97,43,40,40,110,38,114,62,62,62,49,54,41,42,97,43,111,42,40,110,38,105,62,62,62,49,54,41,60,60,49,54,62,62,62,48,41,125,125,41,125,44,51,55,50,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,77,97,116,104,34,44,123,108,111,103,49,48,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,108,111,103,40,116,41,42,77,97,116,104,46,76,79,71,49,48,69,125,125,41,125,44,55,57,55,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,77,97,116,104,34,44,123,108,111,103,49,112,58,110,40,57,48,48,55,41,125,41,125,44,52,49,57,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,77,97,116,104,34,44,123,108,111,103,50,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,108,111,103,40,116,41,47,77,97,116,104,46,76,78,50,125,125,41,125,44,50,57,52,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,77,97,116,104,34,44,123,115,105,103,110,58,110,40,52,50,52,55,41,125,41,125,44,53,55,51,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,55,49,49,55,41,44,111,61,77,97,116,104,46,101,120,112,59,114,40,114,46,83,43,114,46,70,42,110,40,49,50,52,48,41,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,45,50,101,45,49,55,33,61,33,77,97,116,104,46,115,105,110,104,40,45,50,101,45,49,55,41,125,41,41,44,34,77,97,116,104,34,44,123,115,105,110,104,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,97,98,115,40,116,61,43,116,41,60,49,63,40,105,40,116,41,45,105,40,45,116,41,41,47,50,58,40,111,40,116,45,49,41,45,111,40,45,116,45,49,41,41,42,40,77,97,116,104,46,69,47,50,41,125,125,41,125,44,57,51,56,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,55,49,49,55,41,44,111,61,77,97,116,104,46,101,120,112,59,114,40,114,46,83,44,34,77,97,116,104,34,44,123,116,97,110,104,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,105,40,116,61,43,116,41,44,110,61,105,40,45,116,41,59,114,101,116,117,114,110,32,101,61,61,49,47,48,63,49,58,110,61,61,49,47,48,63,45,49,58,40,101,45,110,41,47,40,111,40,116,41,43,111,40,45,116,41,41,125,125,41,125,44,56,56,55,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,77,97,116,104,34,44,123,116,114,117,110,99,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,62,48,63,77,97,116,104,46,102,108,111,111,114,58,77,97,116,104,46,99,101,105,108,41,40,116,41,125,125,41,125,44,51,52,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,54,51,52,49,41,44,105,61,110,40,49,48,54,51,41,44,111,61,110,40,57,52,50,54,41,44,97,61,110,40,52,56,48,53,41,44,115,61,110,40,57,50,52,49,41,44,99,61,110,40,49,50,52,48,41,44,117,61,110,40,52,50,51,48,41,46,102,44,108,61,110,40,55,55,54,50,41,46,102,44,102,61,110,40,51,53,51,48,41,46,102,44,104,61,110,40,55,51,55,48,41,46,116,114,105,109,44,100,61,34,78,117,109,98,101,114,34,44,112,61,114,91,100,93,44,118,61,112,44,103,61,112,46,112,114,111,116,111,116,121,112,101,44,109,61,111,40,110,40,50,53,52,53,41,40,103,41,41,61,61,100,44,98,61,34,116,114,105,109,34,105,110,32,83,116,114,105,110,103,46,112,114,111,116,111,116,121,112,101,44,121,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,115,40,116,44,33,49,41,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,108,101,110,103,116,104,62,50,41,123,101,61,98,63,101,46,116,114,105,109,40,41,58,104,40,101,44,51,41,59,118,97,114,32,110,44,114,44,105,44,111,61,101,46,99,104,97,114,67,111,100,101,65,116,40,48,41,59,105,102,40,52,51,61,61,61,111,124,124,52,53,61,61,61,111,41,123,105,102,40,110,61,101,46,99,104,97,114,67,111,100,101,65,116,40,50,41,44,56,56,61,61,61,110,124,124,49,50,48,61,61,61,110,41,114,101,116,117,114,110,32,78,97,78,125,101,108,115,101,32,105,102,40,52,56,61,61,61,111,41,123,115,119,105,116,99,104,40,101,46,99,104,97,114,67,111,100,101,65,116,40,49,41,41,123,99,97,115,101,32,54,54,58,99,97,115,101,32,57,56,58,114,61,50,44,105,61,52,57,59,98,114,101,97,107,59,99,97,115,101,32,55,57,58,99,97,115,101,32,49,49,49,58,114,61,56,44,105,61,53,53,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,43,101,125,102,111,114,40,118,97,114,32,97,44,99,61,101,46,115,108,105,99,101,40,50,41,44,117,61,48,44,108,61,99,46,108,101,110,103,116,104,59,117,60,108,59,117,43,43,41,105,102,40,97,61,99,46,99,104,97,114,67,111,100,101,65,116,40,117,41,44,97,60,52,56,124,124,97,62,105,41,114,101,116,117,114,110,32,78,97,78,59,114,101,116,117,114,110,32,112,97,114,115,101,73,110,116,40,99,44,114,41,125,125,114,101,116,117,114,110,43,101,125,59,105,102,40,33,112,40,34,32,48,111,49,34,41,124,124,33,112,40,34,48,98,49,34,41,124,124,112,40,34,43,48,120,49,34,41,41,123,112,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,49,63,48,58,116,44,110,61,116,104,105,115,59,114,101,116,117,114,110,32,110,32,105,110,115,116,97,110,99,101,111,102,32,112,38,38,40,109,63,99,40,40,102,117,110,99,116,105,111,110,40,41,123,103,46,118,97,108,117,101,79,102,46,99,97,108,108,40,110,41,125,41,41,58,111,40,110,41,33,61,100,41,63,97,40,110,101,119,32,118,40,121,40,101,41,41,44,110,44,112,41,58,121,40,101,41,125,59,102,111,114,40,118,97,114,32,119,44,95,61,110,40,49,57,49,54,41,63,117,40,118,41,58,34,77,65,88,95,86,65,76,85,69,44,77,73,78,95,86,65,76,85,69,44,78,97,78,44,78,69,71,65,84,73,86,69,95,73,78,70,73,78,73,84,89,44,80,79,83,73,84,73,86,69,95,73,78,70,73,78,73,84,89,44,69,80,83,73,76,79,78,44,105,115,70,105,110,105,116,101,44,105,115,73,110,116,101,103,101,114,44,105,115,78,97,78,44,105,115,83,97,102,101,73,110,116,101,103,101,114,44,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,44,77,73,78,95,83,65,70,69,95,73,78,84,69,71,69,82,44,112,97,114,115,101,70,108,111,97,116,44,112,97,114,115,101,73,110,116,44,105,115,73,110,116,101,103,101,114,34,46,115,112,108,105,116,40,34,44,34,41,44,120,61,48,59,95,46,108,101,110,103,116,104,62,120,59,120,43,43,41,105,40,118,44,119,61,95,91,120,93,41,38,38,33,105,40,112,44,119,41,38,38,102,40,112,44,119,44,108,40,118,44,119,41,41,59,112,46,112,114,111,116,111,116,121,112,101,61,103,44,103,46,99,111,110,115,116,114,117,99,116,111,114,61,112,44,110,40,49,53,54,52,41,40,114,44,100,44,112,41,125,125,44,52,48,48,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,78,117,109,98,101,114,34,44,123,69,80,83,73,76,79,78,58,77,97,116,104,46,112,111,119,40,50,44,45,53,50,41,125,41,125,44,55,54,49,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,54,51,52,49,41,46,105,115,70,105,110,105,116,101,59,114,40,114,46,83,44,34,78,117,109,98,101,114,34,44,123,105,115,70,105,110,105,116,101,58,102,117,110,99,116,105,111,110,40,116,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,116,38,38,105,40,116,41,125,125,41,125,44,54,55,54,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,78,117,109,98,101,114,34,44,123,105,115,73,110,116,101,103,101,114,58,110,40,50,50,56,57,41,125,41,125,44,51,51,49,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,78,117,109,98,101,114,34,44,123,105,115,78,97,78,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,33,61,116,125,125,41,125,44,51,48,49,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,50,50,56,57,41,44,111,61,77,97,116,104,46,97,98,115,59,114,40,114,46,83,44,34,78,117,109,98,101,114,34,44,123,105,115,83,97,102,101,73,110,116,101,103,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,41,38,38,111,40,116,41,60,61,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,125,125,41,125,44,50,57,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,78,117,109,98,101,114,34,44,123,77,65,88,95,83,65,70,69,95,73,78,84,69,71,69,82,58,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,125,41,125,44,54,52,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,78,117,109,98,101,114,34,44,123,77,73,78,95,83,65,70,69,95,73,78,84,69,71,69,82,58,45,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,125,41,125,44,54,53,56,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,51,55,54,53,41,59,114,40,114,46,83,43,114,46,70,42,40,78,117,109,98,101,114,46,112,97,114,115,101,70,108,111,97,116,33,61,105,41,44,34,78,117,109,98,101,114,34,44,123,112,97,114,115,101,70,108,111,97,116,58,105,125,41,125,44,51,50,49,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,53,48,48,41,59,114,40,114,46,83,43,114,46,70,42,40,78,117,109,98,101,114,46,112,97,114,115,101,73,110,116,33,61,105,41,44,34,78,117,109,98,101,114,34,44,123,112,97,114,115,101,73,110,116,58,105,125,41,125,44,49,48,50,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,49,53,52,57,41,44,111,61,110,40,51,51,55,51,41,44,97,61,110,40,53,41,44,115,61,49,46,46,116,111,70,105,120,101,100,44,99,61,77,97,116,104,46,102,108,111,111,114,44,117,61,91,48,44,48,44,48,44,48,44,48,44,48,93,44,108,61,34,78,117,109,98,101,114,46,116,111,70,105,120,101,100,58,32,105,110,99,111,114,114,101,99,116,32,105,110,118,111,99,97,116,105,111,110,33,34,44,102,61,34,48,34,44,104,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,45,49,44,114,61,101,59,119,104,105,108,101,40,43,43,110,60,54,41,114,43,61,116,42,117,91,110,93,44,117,91,110,93,61,114,37,49,101,55,44,114,61,99,40,114,47,49,101,55,41,125,44,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,54,44,110,61,48,59,119,104,105,108,101,40,45,45,101,62,61,48,41,110,43,61,117,91,101,93,44,117,91,101,93,61,99,40,110,47,116,41,44,110,61,110,37,116,42,49,101,55,125,44,112,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,54,44,101,61,34,34,59,119,104,105,108,101,40,45,45,116,62,61,48,41,105,102,40,34,34,33,61,61,101,124,124,48,61,61,61,116,124,124,48,33,61,61,117,91,116,93,41,123,118,97,114,32,110,61,83,116,114,105,110,103,40,117,91,116,93,41,59,101,61,34,34,61,61,61,101,63,110,58,101,43,97,46,99,97,108,108,40,102,44,55,45,110,46,108,101,110,103,116,104,41,43,110,125,114,101,116,117,114,110,32,101,125,44,118,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,48,61,61,61,101,63,110,58,101,37,50,61,61,61,49,63,118,40,116,44,101,45,49,44,110,42,116,41,58,118,40,116,42,116,44,101,47,50,44,110,41,125,44,103,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,48,44,110,61,116,59,119,104,105,108,101,40,110,62,61,52,48,57,54,41,101,43,61,49,50,44,110,47,61,52,48,57,54,59,119,104,105,108,101,40,110,62,61,50,41,101,43,61,49,44,110,47,61,50,59,114,101,116,117,114,110,32,101,125,59,114,40,114,46,80,43,114,46,70,42,40,33,33,115,38,38,40,34,48,46,48,48,48,34,33,61,61,56,101,45,53,46,116,111,70,105,120,101,100,40,51,41,124,124,34,49,34,33,61,61,46,57,46,116,111,70,105,120,101,100,40,48,41,124,124,34,49,46,50,53,34,33,61,61,49,46,50,53,53,46,116,111,70,105,120,101,100,40,50,41,124,124,34,49,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,49,50,56,34,33,61,61,40,48,120,100,101,48,98,54,98,51,97,55,54,52,48,48,56,48,41,46,116,111,70,105,120,101,100,40,48,41,41,124,124,33,110,40,49,50,52,48,41,40,40,102,117,110,99,116,105,111,110,40,41,123,115,46,99,97,108,108,40,123,125,41,125,41,41,41,44,34,78,117,109,98,101,114,34,44,123,116,111,70,105,120,101,100,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,114,44,115,44,99,61,111,40,116,104,105,115,44,108,41,44,117,61,105,40,116,41,44,109,61,34,34,44,98,61,102,59,105,102,40,117,60,48,124,124,117,62,50,48,41,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,108,41,59,105,102,40,99,33,61,99,41,114,101,116,117,114,110,34,78,97,78,34,59,105,102,40,99,60,61,45,49,101,50,49,124,124,99,62,61,49,101,50,49,41,114,101,116,117,114,110,32,83,116,114,105,110,103,40,99,41,59,105,102,40,99,60,48,38,38,40,109,61,34,45,34,44,99,61,45,99,41,44,99,62,49,101,45,50,49,41,105,102,40,101,61,103,40,99,42,118,40,50,44,54,57,44,49,41,41,45,54,57,44,110,61,101,60,48,63,99,42,118,40,50,44,45,101,44,49,41,58,99,47,118,40,50,44,101,44,49,41,44,110,42,61,52,53,48,51,53,57,57,54,50,55,51,55,48,52,57,54,44,101,61,53,50,45,101,44,101,62,48,41,123,104,40,48,44,110,41,44,114,61,117,59,119,104,105,108,101,40,114,62,61,55,41,104,40,49,101,55,44,48,41,44,114,45,61,55,59,104,40,118,40,49,48,44,114,44,49,41,44,48,41,44,114,61,101,45,49,59,119,104,105,108,101,40,114,62,61,50,51,41,100,40,49,60,60,50,51,41,44,114,45,61,50,51,59,100,40,49,60,60,114,41,44,104,40,49,44,49,41,44,100,40,50,41,44,98,61,112,40,41,125,101,108,115,101,32,104,40,48,44,110,41,44,104,40,49,60,60,45,101,44,48,41,44,98,61,112,40,41,43,97,46,99,97,108,108,40,102,44,117,41,59,114,101,116,117,114,110,32,117,62,48,63,40,115,61,98,46,108,101,110,103,116,104,44,98,61,109,43,40,115,60,61,117,63,34,48,46,34,43,97,46,99,97,108,108,40,102,44,117,45,115,41,43,98,58,98,46,115,108,105,99,101,40,48,44,115,45,117,41,43,34,46,34,43,98,46,115,108,105,99,101,40,115,45,117,41,41,41,58,98,61,109,43,98,44,98,125,125,41,125,44,50,54,49,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,49,50,52,48,41,44,111,61,110,40,51,51,55,51,41,44,97,61,49,46,46,116,111,80,114,101,99,105,115,105,111,110,59,114,40,114,46,80,43,114,46,70,42,40,105,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,49,34,33,61,61,97,46,99,97,108,108,40,49,44,118,111,105,100,32,48,41,125,41,41,124,124,33,105,40,40,102,117,110,99,116,105,111,110,40,41,123,97,46,99,97,108,108,40,123,125,41,125,41,41,41,44,34,78,117,109,98,101,114,34,44,123,116,111,80,114,101,99,105,115,105,111,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,111,40,116,104,105,115,44,34,78,117,109,98,101,114,35,116,111,80,114,101,99,105,115,105,111,110,58,32,105,110,99,111,114,114,101,99,116,32,105,110,118,111,99,97,116,105,111,110,33,34,41,59,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,97,46,99,97,108,108,40,101,41,58,97,46,99,97,108,108,40,101,44,116,41,125,125,41,125,44,56,51,50,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,43,114,46,70,44,34,79,98,106,101,99,116,34,44,123,97,115,115,105,103,110,58,110,40,57,56,50,49,41,125,41,125,44,55,57,52,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,79,98,106,101,99,116,34,44,123,99,114,101,97,116,101,58,110,40,50,53,52,53,41,125,41,125,44,50,54,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,43,114,46,70,42,33,110,40,49,57,49,54,41,44,34,79,98,106,101,99,116,34,44,123,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,58,110,40,52,49,51,41,125,41,125,44,53,51,56,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,43,114,46,70,42,33,110,40,49,57,49,54,41,44,34,79,98,106,101,99,116,34,44,123,100,101,102,105,110,101,80,114,111,112,101,114,116,121,58,110,40,51,53,51,48,41,46,102,125,41,125,44,49,57,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,56,49,41,44,105,61,110,40,50,49,53,51,41,46,111,110,70,114,101,101,122,101,59,110,40,49,48,50,53,41,40,34,102,114,101,101,122,101,34,44,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,116,38,38,114,40,101,41,63,116,40,105,40,101,41,41,58,101,125,125,41,41,125,44,55,53,53,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,56,53,48,48,41,44,105,61,110,40,55,55,54,50,41,46,102,59,110,40,49,48,50,53,41,40,34,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,34,44,40,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,116,44,101,41,123,114,101,116,117,114,110,32,105,40,114,40,116,41,44,101,41,125,125,41,41,125,44,52,57,52,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,49,48,50,53,41,40,34,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,40,53,48,48,57,41,46,102,125,41,41,125,44,51,51,56,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,50,48,48,41,44,105,61,110,40,52,52,48,56,41,59,110,40,49,48,50,53,41,40,34,103,101,116,80,114,111,116,111,116,121,112,101,79,102,34,44,40,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,116,41,123,114,101,116,117,114,110,32,105,40,114,40,116,41,41,125,125,41,41,125,44,52,54,52,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,56,49,41,59,110,40,49,48,50,53,41,40,34,105,115,69,120,116,101,110,115,105,98,108,101,34,44,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,33,33,114,40,101,41,38,38,40,33,116,124,124,116,40,101,41,41,125,125,41,41,125,44,54,55,51,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,56,49,41,59,110,40,49,48,50,53,41,40,34,105,115,70,114,111,122,101,110,34,44,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,33,114,40,101,41,124,124,33,33,116,38,38,116,40,101,41,125,125,41,41,125,44,55,50,54,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,56,49,41,59,110,40,49,48,50,53,41,40,34,105,115,83,101,97,108,101,100,34,44,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,33,114,40,101,41,124,124,33,33,116,38,38,116,40,101,41,125,125,41,41,125,44,50,55,57,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,79,98,106,101,99,116,34,44,123,105,115,58,110,40,49,53,52,49,41,125,41,125,44,56,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,50,48,48,41,44,105,61,110,40,53,56,50,53,41,59,110,40,49,48,50,53,41,40,34,107,101,121,115,34,44,40,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,116,41,123,114,101,116,117,114,110,32,105,40,114,40,116,41,41,125,125,41,41,125,44,55,48,50,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,56,49,41,44,105,61,110,40,50,49,53,51,41,46,111,110,70,114,101,101,122,101,59,110,40,49,48,50,53,41,40,34,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,34,44,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,116,38,38,114,40,101,41,63,116,40,105,40,101,41,41,58,101,125,125,41,41,125,44,52,51,55,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,52,56,49,41,44,105,61,110,40,50,49,53,51,41,46,111,110,70,114,101,101,122,101,59,110,40,49,48,50,53,41,40,34,115,101,97,108,34,44,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,116,38,38,114,40,101,41,63,116,40,105,40,101,41,41,58,101,125,125,41,41,125,44,54,57,49,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,79,98,106,101,99,116,34,44,123,115,101,116,80,114,111,116,111,116,121,112,101,79,102,58,110,40,55,49,51,53,41,46,115,101,116,125,41,125,44,52,51,57,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,50,56,52,53,41,44,105,61,123,125,59,105,91,110,40,57,55,51,57,41,40,34,116,111,83,116,114,105,110,103,84,97,103,34,41,93,61,34,122,34,44,105,43,34,34,33,61,34,91,111,98,106,101,99,116,32,122,93,34,38,38,110,40,49,53,54,52,41,40,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,44,34,116,111,83,116,114,105,110,103,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,34,43,114,40,116,104,105,115,41,43,34,93,34,125,41,44,33,48,41,125,44,53,48,55,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,51,55,54,53,41,59,114,40,114,46,71,43,114,46,70,42,40,112,97,114,115,101,70,108,111,97,116,33,61,105,41,44,123,112,97,114,115,101,70,108,111,97,116,58,105,125,41,125,44,57,51,49,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,53,48,48,41,59,114,40,114,46,71,43,114,46,70,42,40,112,97,114,115,101,73,110,116,33,61,105,41,44,123,112,97,114,115,101,73,110,116,58,105,125,41,125,44,50,56,49,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,44,105,44,111,44,97,44,115,61,110,40,53,49,49,51,41,44,99,61,110,40,54,51,52,49,41,44,117,61,110,40,50,55,57,52,41,44,108,61,110,40,50,56,52,53,41,44,102,61,110,40,53,51,54,54,41,44,104,61,110,40,55,52,56,49,41,44,100,61,110,40,51,48,55,57,41,44,112,61,110,40,53,57,57,41,44,118,61,110,40,50,57,55,49,41,44,103,61,110,40,57,55,56,57,41,44,109,61,110,40,55,49,50,50,41,46,115,101,116,44,98,61,110,40,51,55,41,40,41,44,121,61,110,40,51,50,56,53,41,44,119,61,110,40,56,51,51,50,41,44,95,61,110,40,51,56,52,51,41,44,120,61,110,40,56,54,49,52,41,44,79,61,34,80,114,111,109,105,115,101,34,44,83,61,99,46,84,121,112,101,69,114,114,111,114,44,107,61,99,46,112,114,111,99,101,115,115,44,67,61,107,38,38,107,46,118,101,114,115,105,111,110,115,44,80,61,67,38,38,67,46,118,56,124,124,34,34,44,84,61,99,91,79,93,44,106,61,34,112,114,111,99,101,115,115,34,61,61,108,40,107,41,44,69,61,102,117,110,99,116,105,111,110,40,41,123,125,44,68,61,105,61,121,46,102,44,65,61,33,33,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,118,97,114,32,116,61,84,46,114,101,115,111,108,118,101,40,49,41,44,101,61,40,116,46,99,111,110,115,116,114,117,99,116,111,114,61,123,125,41,91,110,40,57,55,51,57,41,40,34,115,112,101,99,105,101,115,34,41,93,61,102,117,110,99,116,105,111,110,40,116,41,123,116,40,69,44,69,41,125,59,114,101,116,117,114,110,40,106,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,80,114,111,109,105,115,101,82,101,106,101,99,116,105,111,110,69,118,101,110,116,41,38,38,116,46,116,104,101,110,40,69,41,105,110,115,116,97,110,99,101,111,102,32,101,38,38,48,33,61,61,80,46,105,110,100,101,120,79,102,40,34,54,46,54,34,41,38,38,45,49,61,61,61,95,46,105,110,100,101,120,79,102,40,34,67,104,114,111,109,101,47,54,54,34,41,125,99,97,116,99,104,40,114,41,123,125,125,40,41,44,76,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,59,114,101,116,117,114,110,33,40,33,104,40,116,41,124,124,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,40,101,61,116,46,116,104,101,110,41,41,38,38,101,125,44,73,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,116,46,95,110,41,123,116,46,95,110,61,33,48,59,118,97,114,32,110,61,116,46,95,99,59,98,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,114,61,116,46,95,118,44,105,61,49,61,61,116,46,95,115,44,111,61,48,44,97,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,44,111,44,97,44,115,61,105,63,101,46,111,107,58,101,46,102,97,105,108,44,99,61,101,46,114,101,115,111,108,118,101,44,117,61,101,46,114,101,106,101,99,116,44,108,61,101,46,100,111,109,97,105,110,59,116,114,121,123,115,63,40,105,124,124,40,50,61,61,116,46,95,104,38,38,70,40,116,41,44,116,46,95,104,61,49,41,44,33,48,61,61,61,115,63,110,61,114,58,40,108,38,38,108,46,101,110,116,101,114,40,41,44,110,61,115,40,114,41,44,108,38,38,40,108,46,101,120,105,116,40,41,44,97,61,33,48,41,41,44,110,61,61,61,101,46,112,114,111,109,105,115,101,63,117,40,83,40,34,80,114,111,109,105,115,101,45,99,104,97,105,110,32,99,121,99,108,101,34,41,41,58,40,111,61,76,40,110,41,41,63,111,46,99,97,108,108,40,110,44,99,44,117,41,58,99,40,110,41,41,58,117,40,114,41,125,99,97,116,99,104,40,102,41,123,108,38,38,33,97,38,38,108,46,101,120,105,116,40,41,44,117,40,102,41,125,125,59,119,104,105,108,101,40,110,46,108,101,110,103,116,104,62,111,41,97,40,110,91,111,43,43,93,41,59,116,46,95,99,61,91,93,44,116,46,95,110,61,33,49,44,101,38,38,33,116,46,95,104,38,38,77,40,116,41,125,41,41,125,125,44,77,61,102,117,110,99,116,105,111,110,40,116,41,123,109,46,99,97,108,108,40,99,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,110,44,114,44,105,61,116,46,95,118,44,111,61,36,40,116,41,59,105,102,40,111,38,38,40,101,61,119,40,40,102,117,110,99,116,105,111,110,40,41,123,106,63,107,46,101,109,105,116,40,34,117,110,104,97,110,100,108,101,100,82,101,106,101,99,116,105,111,110,34,44,105,44,116,41,58,40,110,61,99,46,111,110,117,110,104,97,110,100,108,101,100,114,101,106,101,99,116,105,111,110,41,63,110,40,123,112,114,111,109,105,115,101,58,116,44,114,101,97,115,111,110,58,105,125,41,58,40,114,61,99,46,99,111,110,115,111,108,101,41,38,38,114,46,101,114,114,111,114,38,38,114,46,101,114,114,111,114,40,34,85,110,104,97,110,100,108,101,100,32,112,114,111,109,105,115,101,32,114,101,106,101,99,116,105,111,110,34,44,105,41,125,41,41,44,116,46,95,104,61,106,124,124,36,40,116,41,63,50,58,49,41,44,116,46,95,97,61,118,111,105,100,32,48,44,111,38,38,101,46,101,41,116,104,114,111,119,32,101,46,118,125,41,41,125,44,36,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,33,61,61,116,46,95,104,38,38,48,61,61,61,40,116,46,95,97,124,124,116,46,95,99,41,46,108,101,110,103,116,104,125,44,70,61,102,117,110,99,116,105,111,110,40,116,41,123,109,46,99,97,108,108,40,99,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,106,63,107,46,101,109,105,116,40,34,114,101,106,101,99,116,105,111,110,72,97,110,100,108,101,100,34,44,116,41,58,40,101,61,99,46,111,110,114,101,106,101,99,116,105,111,110,104,97,110,100,108,101,100,41,38,38,101,40,123,112,114,111,109,105,115,101,58,116,44,114,101,97,115,111,110,58,116,46,95,118,125,41,125,41,41,125,44,82,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,101,46,95,100,124,124,40,101,46,95,100,61,33,48,44,101,61,101,46,95,119,124,124,101,44,101,46,95,118,61,116,44,101,46,95,115,61,50,44,101,46,95,97,124,124,40,101,46,95,97,61,101,46,95,99,46,115,108,105,99,101,40,41,41,44,73,40,101,44,33,48,41,41,125,44,78,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,116,104,105,115,59,105,102,40,33,110,46,95,100,41,123,110,46,95,100,61,33,48,44,110,61,110,46,95,119,124,124,110,59,116,114,121,123,105,102,40,110,61,61,61,116,41,116,104,114,111,119,32,83,40,34,80,114,111,109,105,115,101,32,99,97,110,39,116,32,98,101,32,114,101,115,111,108,118,101,100,32,105,116,115,101,108,102,34,41,59,40,101,61,76,40,116,41,41,63,98,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,114,61,123,95,119,58,110,44,95,100,58,33,49,125,59,116,114,121,123,101,46,99,97,108,108,40,116,44,117,40,78,44,114,44,49,41,44,117,40,82,44,114,44,49,41,41,125,99,97,116,99,104,40,105,41,123,82,46,99,97,108,108,40,114,44,105,41,125,125,41,41,58,40,110,46,95,118,61,116,44,110,46,95,115,61,49,44,73,40,110,44,33,49,41,41,125,99,97,116,99,104,40,114,41,123,82,46,99,97,108,108,40,123,95,119,58,110,44,95,100,58,33,49,125,44,114,41,125,125,125,59,65,124,124,40,84,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,104,105,115,44,84,44,79,44,34,95,104,34,41,44,100,40,116,41,44,114,46,99,97,108,108,40,116,104,105,115,41,59,116,114,121,123,116,40,117,40,78,44,116,104,105,115,44,49,41,44,117,40,82,44,116,104,105,115,44,49,41,41,125,99,97,116,99,104,40,101,41,123,82,46,99,97,108,108,40,116,104,105,115,44,101,41,125,125,44,114,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,99,61,91,93,44,116,104,105,115,46,95,97,61,118,111,105,100,32,48,44,116,104,105,115,46,95,115,61,48,44,116,104,105,115,46,95,100,61,33,49,44,116,104,105,115,46,95,118,61,118,111,105,100,32,48,44,116,104,105,115,46,95,104,61,48,44,116,104,105,115,46,95,110,61,33,49,125,44,114,46,112,114,111,116,111,116,121,112,101,61,110,40,52,48,57,50,41,40,84,46,112,114,111,116,111,116,121,112,101,44,123,116,104,101,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,68,40,103,40,116,104,105,115,44,84,41,41,59,114,101,116,117,114,110,32,110,46,111,107,61,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,124,124,116,44,110,46,102,97,105,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,110,46,100,111,109,97,105,110,61,106,63,107,46,100,111,109,97,105,110,58,118,111,105,100,32,48,44,116,104,105,115,46,95,99,46,112,117,115,104,40,110,41,44,116,104,105,115,46,95,97,38,38,116,104,105,115,46,95,97,46,112,117,115,104,40,110,41,44,116,104,105,115,46,95,115,38,38,73,40,116,104,105,115,44,33,49,41,44,110,46,112,114,111,109,105,115,101,125,44,99,97,116,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,104,101,110,40,118,111,105,100,32,48,44,116,41,125,125,41,44,111,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,114,59,116,104,105,115,46,112,114,111,109,105,115,101,61,116,44,116,104,105,115,46,114,101,115,111,108,118,101,61,117,40,78,44,116,44,49,41,44,116,104,105,115,46,114,101,106,101,99,116,61,117,40,82,44,116,44,49,41,125,44,121,46,102,61,68,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,61,61,84,124,124,116,61,61,61,97,63,110,101,119,32,111,40,116,41,58,105,40,116,41,125,41,44,102,40,102,46,71,43,102,46,87,43,102,46,70,42,33,65,44,123,80,114,111,109,105,115,101,58,84,125,41,44,110,40,49,51,48,57,41,40,84,44,79,41,44,110,40,53,57,57,51,41,40,79,41,44,97,61,110,40,52,52,49,49,41,91,79,93,44,102,40,102,46,83,43,102,46,70,42,33,65,44,79,44,123,114,101,106,101,99,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,68,40,116,104,105,115,41,44,110,61,101,46,114,101,106,101,99,116,59,114,101,116,117,114,110,32,110,40,116,41,44,101,46,112,114,111,109,105,115,101,125,125,41,44,102,40,102,46,83,43,102,46,70,42,40,115,124,124,33,65,41,44,79,44,123,114,101,115,111,108,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,120,40,115,38,38,116,104,105,115,61,61,61,97,63,84,58,116,104,105,115,44,116,41,125,125,41,44,102,40,102,46,83,43,102,46,70,42,33,40,65,38,38,110,40,49,52,54,49,41,40,40,102,117,110,99,116,105,111,110,40,116,41,123,84,46,97,108,108,40,116,41,91,34,99,97,116,99,104,34,93,40,69,41,125,41,41,41,44,79,44,123,97,108,108,58,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,68,40,101,41,44,114,61,110,46,114,101,115,111,108,118,101,44,105,61,110,46,114,101,106,101,99,116,44,111,61,119,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,91,93,44,111,61,48,44,97,61,49,59,118,40,116,44,33,49,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,115,61,111,43,43,44,99,61,33,49,59,110,46,112,117,115,104,40,118,111,105,100,32,48,41,44,97,43,43,44,101,46,114,101,115,111,108,118,101,40,116,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,99,124,124,40,99,61,33,48,44,110,91,115,93,61,116,44,45,45,97,124,124,114,40,110,41,41,125,41,44,105,41,125,41,41,44,45,45,97,124,124,114,40,110,41,125,41,41,59,114,101,116,117,114,110,32,111,46,101,38,38,105,40,111,46,118,41,44,110,46,112,114,111,109,105,115,101,125,44,114,97,99,101,58,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,68,40,101,41,44,114,61,110,46,114,101,106,101,99,116,44,105,61,119,40,40,102,117,110,99,116,105,111,110,40,41,123,118,40,116,44,33,49,44,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,114,101,115,111,108,118,101,40,116,41,46,116,104,101,110,40,110,46,114,101,115,111,108,118,101,44,114,41,125,41,41,125,41,41,59,114,101,116,117,114,110,32,105,46,101,38,38,114,40,105,46,118,41,44,110,46,112,114,111,109,105,115,101,125,125,41,125,44,57,51,49,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,51,48,55,57,41,44,111,61,110,40,57,55,49,57,41,44,97,61,40,110,40,54,51,52,49,41,46,82,101,102,108,101,99,116,124,124,123,125,41,46,97,112,112,108,121,44,115,61,70,117,110,99,116,105,111,110,46,97,112,112,108,121,59,114,40,114,46,83,43,114,46,70,42,33,110,40,49,50,52,48,41,40,40,102,117,110,99,116,105,111,110,40,41,123,97,40,40,102,117,110,99,116,105,111,110,40,41,123,125,41,41,125,41,41,44,34,82,101,102,108,101,99,116,34,44,123,97,112,112,108,121,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,105,40,116,41,44,99,61,111,40,110,41,59,114,101,116,117,114,110,32,97,63,97,40,114,44,101,44,99,41,58,115,46,99,97,108,108,40,114,44,101,44,99,41,125,125,41,125,44,54,55,50,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,50,53,52,53,41,44,111,61,110,40,51,48,55,57,41,44,97,61,110,40,57,55,49,57,41,44,115,61,110,40,55,52,56,49,41,44,99,61,110,40,49,50,52,48,41,44,117,61,110,40,54,57,54,54,41,44,108,61,40,110,40,54,51,52,49,41,46,82,101,102,108,101,99,116,124,124,123,125,41,46,99,111,110,115,116,114,117,99,116,44,102,61,99,40,40,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,125,114,101,116,117,114,110,33,40,108,40,40,102,117,110,99,116,105,111,110,40,41,123,125,41,44,91,93,44,116,41,105,110,115,116,97,110,99,101,111,102,32,116,41,125,41,41,44,104,61,33,99,40,40,102,117,110,99,116,105,111,110,40,41,123,108,40,40,102,117,110,99,116,105,111,110,40,41,123,125,41,41,125,41,41,59,114,40,114,46,83,43,114,46,70,42,40,102,124,124,104,41,44,34,82,101,102,108,101,99,116,34,44,123,99,111,110,115,116,114,117,99,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,111,40,116,41,44,97,40,101,41,59,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,51,63,116,58,111,40,97,114,103,117,109,101,110,116,115,91,50,93,41,59,105,102,40,104,38,38,33,102,41,114,101,116,117,114,110,32,108,40,116,44,101,44,110,41,59,105,102,40,116,61,61,110,41,123,115,119,105,116,99,104,40,101,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,101,119,32,116,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,101,119,32,116,40,101,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,101,119,32,116,40,101,91,48,93,44,101,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,110,101,119,32,116,40,101,91,48,93,44,101,91,49,93,44,101,91,50,93,41,59,99,97,115,101,32,52,58,114,101,116,117,114,110,32,110,101,119,32,116,40,101,91,48,93,44,101,91,49,93,44,101,91,50,93,44,101,91,51,93,41,125,118,97,114,32,114,61,91,110,117,108,108,93,59,114,101,116,117,114,110,32,114,46,112,117,115,104,46,97,112,112,108,121,40,114,44,101,41,44,110,101,119,40,117,46,97,112,112,108,121,40,116,44,114,41,41,125,118,97,114,32,99,61,110,46,112,114,111,116,111,116,121,112,101,44,100,61,105,40,115,40,99,41,63,99,58,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,41,44,112,61,70,117,110,99,116,105,111,110,46,97,112,112,108,121,46,99,97,108,108,40,116,44,100,44,101,41,59,114,101,116,117,114,110,32,115,40,112,41,63,112,58,100,125,125,41,125,44,56,51,55,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,51,53,51,48,41,44,105,61,110,40,53,51,54,54,41,44,111,61,110,40,57,55,49,57,41,44,97,61,110,40,57,50,52,49,41,59,105,40,105,46,83,43,105,46,70,42,110,40,49,50,52,48,41,40,40,102,117,110,99,116,105,111,110,40,41,123,82,101,102,108,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,114,46,102,40,123,125,44,49,44,123,118,97,108,117,101,58,49,125,41,44,49,44,123,118,97,108,117,101,58,50,125,41,125,41,41,44,34,82,101,102,108,101,99,116,34,44,123,100,101,102,105,110,101,80,114,111,112,101,114,116,121,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,111,40,116,41,44,101,61,97,40,101,44,33,48,41,44,111,40,110,41,59,116,114,121,123,114,101,116,117,114,110,32,114,46,102,40,116,44,101,44,110,41,44,33,48,125,99,97,116,99,104,40,105,41,123,114,101,116,117,114,110,33,49,125,125,125,41,125,44,52,54,48,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,55,55,54,50,41,46,102,44,111,61,110,40,57,55,49,57,41,59,114,40,114,46,83,44,34,82,101,102,108,101,99,116,34,44,123,100,101,108,101,116,101,80,114,111,112,101,114,116,121,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,105,40,111,40,116,41,44,101,41,59,114,101,116,117,114,110,33,40,110,38,38,33,110,46,99,111,110,102,105,103,117,114,97,98,108,101,41,38,38,100,101,108,101,116,101,32,116,91,101,93,125,125,41,125,44,52,55,56,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,57,55,49,57,41,44,111,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,116,61,105,40,116,41,44,116,104,105,115,46,95,105,61,48,59,118,97,114,32,101,44,110,61,116,104,105,115,46,95,107,61,91,93,59,102,111,114,40,101,32,105,110,32,116,41,110,46,112,117,115,104,40,101,41,125,59,110,40,55,57,51,56,41,40,111,44,34,79,98,106,101,99,116,34,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,61,116,104,105,115,44,110,61,101,46,95,107,59,100,111,123,105,102,40,101,46,95,105,62,61,110,46,108,101,110,103,116,104,41,114,101,116,117,114,110,123,118,97,108,117,101,58,118,111,105,100,32,48,44,100,111,110,101,58,33,48,125,125,119,104,105,108,101,40,33,40,40,116,61,110,91,101,46,95,105,43,43,93,41,105,110,32,101,46,95,116,41,41,59,114,101,116,117,114,110,123,118,97,108,117,101,58,116,44,100,111,110,101,58,33,49,125,125,41,41,44,114,40,114,46,83,44,34,82,101,102,108,101,99,116,34,44,123,101,110,117,109,101,114,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,111,40,116,41,125,125,41,125,44,52,51,57,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,55,54,50,41,44,105,61,110,40,53,51,54,54,41,44,111,61,110,40,57,55,49,57,41,59,105,40,105,46,83,44,34,82,101,102,108,101,99,116,34,44,123,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,114,46,102,40,111,40,116,41,44,101,41,125,125,41,125,44,57,54,52,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,52,52,48,56,41,44,111,61,110,40,57,55,49,57,41,59,114,40,114,46,83,44,34,82,101,102,108,101,99,116,34,44,123,103,101,116,80,114,111,116,111,116,121,112,101,79,102,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,111,40,116,41,41,125,125,41,125,44,56,52,49,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,55,54,50,41,44,105,61,110,40,52,52,48,56,41,44,111,61,110,40,49,48,54,51,41,44,97,61,110,40,53,51,54,54,41,44,115,61,110,40,55,52,56,49,41,44,99,61,110,40,57,55,49,57,41,59,102,117,110,99,116,105,111,110,32,117,40,116,44,101,41,123,118,97,114,32,110,44,97,44,108,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,51,63,116,58,97,114,103,117,109,101,110,116,115,91,50,93,59,114,101,116,117,114,110,32,99,40,116,41,61,61,61,108,63,116,91,101,93,58,40,110,61,114,46,102,40,116,44,101,41,41,63,111,40,110,44,34,118,97,108,117,101,34,41,63,110,46,118,97,108,117,101,58,118,111,105,100,32,48,33,61,61,110,46,103,101,116,63,110,46,103,101,116,46,99,97,108,108,40,108,41,58,118,111,105,100,32,48,58,115,40,97,61,105,40,116,41,41,63,117,40,97,44,101,44,108,41,58,118,111,105,100,32,48,125,97,40,97,46,83,44,34,82,101,102,108,101,99,116,34,44,123,103,101,116,58,117,125,41,125,44,50,52,55,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,82,101,102,108,101,99,116,34,44,123,104,97,115,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,32,105,110,32,116,125,125,41,125,44,50,57,50,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,57,55,49,57,41,44,111,61,79,98,106,101,99,116,46,105,115,69,120,116,101,110,115,105,98,108,101,59,114,40,114,46,83,44,34,82,101,102,108,101,99,116,34,44,123,105,115,69,120,116,101,110,115,105,98,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,41,44,33,111,124,124,111,40,116,41,125,125,41,125,44,54,51,51,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,83,44,34,82,101,102,108,101,99,116,34,44,123,111,119,110,75,101,121,115,58,110,40,55,50,56,53,41,125,41,125,44,51,50,56,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,57,55,49,57,41,44,111,61,79,98,106,101,99,116,46,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,59,114,40,114,46,83,44,34,82,101,102,108,101,99,116,34,44,123,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,58,102,117,110,99,116,105,111,110,40,116,41,123,105,40,116,41,59,116,114,121,123,114,101,116,117,114,110,32,111,38,38,111,40,116,41,44,33,48,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,33,49,125,125,125,41,125,44,56,55,54,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,55,49,51,53,41,59,105,38,38,114,40,114,46,83,44,34,82,101,102,108,101,99,116,34,44,123,115,101,116,80,114,111,116,111,116,121,112,101,79,102,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,46,99,104,101,99,107,40,116,44,101,41,59,116,114,121,123,114,101,116,117,114,110,32,105,46,115,101,116,40,116,44,101,41,44,33,48,125,99,97,116,99,104,40,110,41,123,114,101,116,117,114,110,33,49,125,125,125,41,125,44,55,50,50,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,51,53,51,48,41,44,105,61,110,40,55,55,54,50,41,44,111,61,110,40,52,52,48,56,41,44,97,61,110,40,49,48,54,51,41,44,115,61,110,40,53,51,54,54,41,44,99,61,110,40,49,55,54,49,41,44,117,61,110,40,57,55,49,57,41,44,108,61,110,40,55,52,56,49,41,59,102,117,110,99,116,105,111,110,32,102,40,116,44,101,44,110,41,123,118,97,114,32,115,44,104,44,100,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,52,63,116,58,97,114,103,117,109,101,110,116,115,91,51,93,44,112,61,105,46,102,40,117,40,116,41,44,101,41,59,105,102,40,33,112,41,123,105,102,40,108,40,104,61,111,40,116,41,41,41,114,101,116,117,114,110,32,102,40,104,44,101,44,110,44,100,41,59,112,61,99,40,48,41,125,105,102,40,97,40,112,44,34,118,97,108,117,101,34,41,41,123,105,102,40,33,49,61,61,61,112,46,119,114,105,116,97,98,108,101,124,124,33,108,40,100,41,41,114,101,116,117,114,110,33,49,59,105,102,40,115,61,105,46,102,40,100,44,101,41,41,123,105,102,40,115,46,103,101,116,124,124,115,46,115,101,116,124,124,33,49,61,61,61,115,46,119,114,105,116,97,98,108,101,41,114,101,116,117,114,110,33,49,59,115,46,118,97,108,117,101,61,110,44,114,46,102,40,100,44,101,44,115,41,125,101,108,115,101,32,114,46,102,40,100,44,101,44,99,40,48,44,110,41,41,59,114,101,116,117,114,110,33,48,125,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,112,46,115,101,116,38,38,40,112,46,115,101,116,46,99,97,108,108,40,100,44,110,41,44,33,48,41,125,115,40,115,46,83,44,34,82,101,102,108,101,99,116,34,44,123,115,101,116,58,102,125,41,125,44,55,48,56,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,54,51,52,49,41,44,105,61,110,40,52,56,48,53,41,44,111,61,110,40,51,53,51,48,41,46,102,44,97,61,110,40,52,50,51,48,41,46,102,44,115,61,110,40,57,53,52,51,41,44,99,61,110,40,54,52,51,57,41,44,117,61,114,46,82,101,103,69,120,112,44,108,61,117,44,102,61,117,46,112,114,111,116,111,116,121,112,101,44,104,61,47,97,47,103,44,100,61,47,97,47,103,44,112,61,110,101,119,32,117,40,104,41,33,61,61,104,59,105,102,40,110,40,49,57,49,54,41,38,38,40,33,112,124,124,110,40,49,50,52,48,41,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,100,91,110,40,57,55,51,57,41,40,34,109,97,116,99,104,34,41,93,61,33,49,44,117,40,104,41,33,61,104,124,124,117,40,100,41,61,61,100,124,124,34,47,97,47,105,34,33,61,117,40,104,44,34,105,34,41,125,41,41,41,41,123,117,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,32,105,110,115,116,97,110,99,101,111,102,32,117,44,114,61,115,40,116,41,44,111,61,118,111,105,100,32,48,61,61,61,101,59,114,101,116,117,114,110,33,110,38,38,114,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,117,38,38,111,63,116,58,105,40,112,63,110,101,119,32,108,40,114,38,38,33,111,63,116,46,115,111,117,114,99,101,58,116,44,101,41,58,108,40,40,114,61,116,32,105,110,115,116,97,110,99,101,111,102,32,117,41,63,116,46,115,111,117,114,99,101,58,116,44,114,38,38,111,63,99,46,99,97,108,108,40,116,41,58,101,41,44,110,63,116,104,105,115,58,102,44,117,41,125,59,102,111,114,40,118,97,114,32,118,61,102,117,110,99,116,105,111,110,40,116,41,123,116,32,105,110,32,117,124,124,111,40,117,44,116,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,108,91,116,93,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,108,91,116,93,61,101,125,125,41,125,44,103,61,97,40,108,41,44,109,61,48,59,103,46,108,101,110,103,116,104,62,109,59,41,118,40,103,91,109,43,43,93,41,59,102,46,99,111,110,115,116,114,117,99,116,111,114,61,117,44,117,46,112,114,111,116,111,116,121,112,101,61,102,44,110,40,49,53,54,52,41,40,114,44,34,82,101,103,69,120,112,34,44,117,41,125,110,40,53,57,57,51,41,40,34,82,101,103,69,120,112,34,41,125,44,56,54,49,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,56,56,54,56,41,59,110,40,53,51,54,54,41,40,123,116,97,114,103,101,116,58,34,82,101,103,69,120,112,34,44,112,114,111,116,111,58,33,48,44,102,111,114,99,101,100,58,114,33,61,61,47,46,47,46,101,120,101,99,125,44,123,101,120,101,99,58,114,125,41,125,44,57,53,52,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,49,57,49,54,41,38,38,34,103,34,33,61,47,46,47,103,46,102,108,97,103,115,38,38,110,40,51,53,51,48,41,46,102,40,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,44,34,102,108,97,103,115,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,103,101,116,58,110,40,54,52,51,57,41,125,41,125,44,53,52,55,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,57,55,49,57,41,44,105,61,110,40,49,56,51,56,41,44,111,61,110,40,57,57,53,57,41,44,97,61,110,40,57,48,55,51,41,59,110,40,53,51,48,55,41,40,34,109,97,116,99,104,34,44,49,44,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,115,41,123,114,101,116,117,114,110,91,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,116,40,116,104,105,115,41,44,105,61,118,111,105,100,32,48,61,61,110,63,118,111,105,100,32,48,58,110,91,101,93,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,105,63,105,46,99,97,108,108,40,110,44,114,41,58,110,101,119,32,82,101,103,69,120,112,40,110,41,91,101,93,40,83,116,114,105,110,103,40,114,41,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,115,40,110,44,116,44,116,104,105,115,41,59,105,102,40,101,46,100,111,110,101,41,114,101,116,117,114,110,32,101,46,118,97,108,117,101,59,118,97,114,32,99,61,114,40,116,41,44,117,61,83,116,114,105,110,103,40,116,104,105,115,41,59,105,102,40,33,99,46,103,108,111,98,97,108,41,114,101,116,117,114,110,32,97,40,99,44,117,41,59,118,97,114,32,108,61,99,46,117,110,105,99,111,100,101,59,99,46,108,97,115,116,73,110,100,101,120,61,48,59,118,97,114,32,102,44,104,61,91,93,44,100,61,48,59,119,104,105,108,101,40,110,117,108,108,33,61,61,40,102,61,97,40,99,44,117,41,41,41,123,118,97,114,32,112,61,83,116,114,105,110,103,40,102,91,48,93,41,59,104,91,100,93,61,112,44,34,34,61,61,61,112,38,38,40,99,46,108,97,115,116,73,110,100,101,120,61,111,40,117,44,105,40,99,46,108,97,115,116,73,110,100,101,120,41,44,108,41,41,44,100,43,43,125,114,101,116,117,114,110,32,48,61,61,61,100,63,110,117,108,108,58,104,125,93,125,41,41,125,44,51,55,55,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,57,55,49,57,41,44,105,61,110,40,52,50,48,48,41,44,111,61,110,40,49,56,51,56,41,44,97,61,110,40,49,53,52,57,41,44,115,61,110,40,57,57,53,57,41,44,99,61,110,40,57,48,55,51,41,44,117,61,77,97,116,104,46,109,97,120,44,108,61,77,97,116,104,46,109,105,110,44,102,61,77,97,116,104,46,102,108,111,111,114,44,104,61,47,92,36,40,91,36,38,96,39,93,124,92,100,92,100,63,124,60,91,94,62,93,42,62,41,47,103,44,100,61,47,92,36,40,91,36,38,96,39,93,124,92,100,92,100,63,41,47,103,44,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,116,58,83,116,114,105,110,103,40,116,41,125,59,110,40,53,51,48,55,41,40,34,114,101,112,108,97,99,101,34,44,50,44,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,118,41,123,114,101,116,117,114,110,91,102,117,110,99,116,105,111,110,40,114,44,105,41,123,118,97,114,32,111,61,116,40,116,104,105,115,41,44,97,61,118,111,105,100,32,48,61,61,114,63,118,111,105,100,32,48,58,114,91,101,93,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,97,63,97,46,99,97,108,108,40,114,44,111,44,105,41,58,110,46,99,97,108,108,40,83,116,114,105,110,103,40,111,41,44,114,44,105,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,105,61,118,40,110,44,116,44,116,104,105,115,44,101,41,59,105,102,40,105,46,100,111,110,101,41,114,101,116,117,114,110,32,105,46,118,97,108,117,101,59,118,97,114,32,102,61,114,40,116,41,44,104,61,83,116,114,105,110,103,40,116,104,105,115,41,44,100,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,59,100,124,124,40,101,61,83,116,114,105,110,103,40,101,41,41,59,118,97,114,32,109,61,102,46,103,108,111,98,97,108,59,105,102,40,109,41,123,118,97,114,32,98,61,102,46,117,110,105,99,111,100,101,59,102,46,108,97,115,116,73,110,100,101,120,61,48,125,118,97,114,32,121,61,91,93,59,119,104,105,108,101,40,49,41,123,118,97,114,32,119,61,99,40,102,44,104,41,59,105,102,40,110,117,108,108,61,61,61,119,41,98,114,101,97,107,59,105,102,40,121,46,112,117,115,104,40,119,41,44,33,109,41,98,114,101,97,107,59,118,97,114,32,95,61,83,116,114,105,110,103,40,119,91,48,93,41,59,34,34,61,61,61,95,38,38,40,102,46,108,97,115,116,73,110,100,101,120,61,115,40,104,44,111,40,102,46,108,97,115,116,73,110,100,101,120,41,44,98,41,41,125,102,111,114,40,118,97,114,32,120,61,34,34,44,79,61,48,44,83,61,48,59,83,60,121,46,108,101,110,103,116,104,59,83,43,43,41,123,119,61,121,91,83,93,59,102,111,114,40,118,97,114,32,107,61,83,116,114,105,110,103,40,119,91,48,93,41,44,67,61,117,40,108,40,97,40,119,46,105,110,100,101,120,41,44,104,46,108,101,110,103,116,104,41,44,48,41,44,80,61,91,93,44,84,61,49,59,84,60,119,46,108,101,110,103,116,104,59,84,43,43,41,80,46,112,117,115,104,40,112,40,119,91,84,93,41,41,59,118,97,114,32,106,61,119,46,103,114,111,117,112,115,59,105,102,40,100,41,123,118,97,114,32,69,61,91,107,93,46,99,111,110,99,97,116,40,80,44,67,44,104,41,59,118,111,105,100,32,48,33,61,61,106,38,38,69,46,112,117,115,104,40,106,41,59,118,97,114,32,68,61,83,116,114,105,110,103,40,101,46,97,112,112,108,121,40,118,111,105,100,32,48,44,69,41,41,125,101,108,115,101,32,68,61,103,40,107,44,104,44,67,44,80,44,106,44,101,41,59,67,62,61,79,38,38,40,120,43,61,104,46,115,108,105,99,101,40,79,44,67,41,43,68,44,79,61,67,43,107,46,108,101,110,103,116,104,41,125,114,101,116,117,114,110,32,120,43,104,46,115,108,105,99,101,40,79,41,125,93,59,102,117,110,99,116,105,111,110,32,103,40,116,44,101,44,114,44,111,44,97,44,115,41,123,118,97,114,32,99,61,114,43,116,46,108,101,110,103,116,104,44,117,61,111,46,108,101,110,103,116,104,44,108,61,100,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,97,38,38,40,97,61,105,40,97,41,44,108,61,104,41,44,110,46,99,97,108,108,40,115,44,108,44,40,102,117,110,99,116,105,111,110,40,110,44,105,41,123,118,97,114,32,115,59,115,119,105,116,99,104,40,105,46,99,104,97,114,65,116,40,48,41,41,123,99,97,115,101,34,36,34,58,114,101,116,117,114,110,34,36,34,59,99,97,115,101,34,38,34,58,114,101,116,117,114,110,32,116,59,99,97,115,101,34,96,34,58,114,101,116,117,114,110,32,101,46,115,108,105,99,101,40,48,44,114,41,59,99,97,115,101,34,39,34,58,114,101,116,117,114,110,32,101,46,115,108,105,99,101,40,99,41,59,99,97,115,101,34,60,34,58,115,61,97,91,105,46,115,108,105,99,101,40,49,44,45,49,41,93,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,118,97,114,32,108,61,43,105,59,105,102,40,48,61,61,61,108,41,114,101,116,117,114,110,32,110,59,105,102,40,108,62,117,41,123,118,97,114,32,104,61,102,40,108,47,49,48,41,59,114,101,116,117,114,110,32,48,61,61,61,104,63,110,58,104,60,61,117,63,118,111,105,100,32,48,61,61,61,111,91,104,45,49,93,63,105,46,99,104,97,114,65,116,40,49,41,58,111,91,104,45,49,93,43,105,46,99,104,97,114,65,116,40,49,41,58,110,125,115,61,111,91,108,45,49,93,125,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,115,63,34,34,58,115,125,41,41,125,125,41,41,125,44,53,50,48,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,57,55,49,57,41,44,105,61,110,40,49,53,52,49,41,44,111,61,110,40,57,48,55,51,41,59,110,40,53,51,48,55,41,40,34,115,101,97,114,99,104,34,44,49,44,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,97,41,123,114,101,116,117,114,110,91,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,116,40,116,104,105,115,41,44,105,61,118,111,105,100,32,48,61,61,110,63,118,111,105,100,32,48,58,110,91,101,93,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,105,63,105,46,99,97,108,108,40,110,44,114,41,58,110,101,119,32,82,101,103,69,120,112,40,110,41,91,101,93,40,83,116,114,105,110,103,40,114,41,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,97,40,110,44,116,44,116,104,105,115,41,59,105,102,40,101,46,100,111,110,101,41,114,101,116,117,114,110,32,101,46,118,97,108,117,101,59,118,97,114,32,115,61,114,40,116,41,44,99,61,83,116,114,105,110,103,40,116,104,105,115,41,44,117,61,115,46,108,97,115,116,73,110,100,101,120,59,105,40,117,44,48,41,124,124,40,115,46,108,97,115,116,73,110,100,101,120,61,48,41,59,118,97,114,32,108,61,111,40,115,44,99,41,59,114,101,116,117,114,110,32,105,40,115,46,108,97,115,116,73,110,100,101,120,44,117,41,124,124,40,115,46,108,97,115,116,73,110,100,101,120,61,117,41,44,110,117,108,108,61,61,61,108,63,45,49,58,108,46,105,110,100,101,120,125,93,125,41,41,125,44,49,51,56,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,57,53,52,51,41,44,105,61,110,40,57,55,49,57,41,44,111,61,110,40,57,55,56,57,41,44,97,61,110,40,57,57,53,57,41,44,115,61,110,40,49,56,51,56,41,44,99,61,110,40,57,48,55,51,41,44,117,61,110,40,56,56,54,56,41,44,108,61,110,40,49,50,52,48,41,44,102,61,77,97,116,104,46,109,105,110,44,104,61,91,93,46,112,117,115,104,44,100,61,34,115,112,108,105,116,34,44,112,61,34,108,101,110,103,116,104,34,44,118,61,34,108,97,115,116,73,110,100,101,120,34,44,103,61,52,50,57,52,57,54,55,50,57,53,44,109,61,33,108,40,40,102,117,110,99,116,105,111,110,40,41,123,82,101,103,69,120,112,40,103,44,34,121,34,41,125,41,41,59,110,40,53,51,48,55,41,40,34,115,112,108,105,116,34,44,50,44,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,108,41,123,118,97,114,32,98,59,114,101,116,117,114,110,32,98,61,34,99,34,61,61,34,97,98,98,99,34,91,100,93,40,47,40,98,41,42,47,41,91,49,93,124,124,52,33,61,34,116,101,115,116,34,91,100,93,40,47,40,63,58,41,47,44,45,49,41,91,112,93,124,124,50,33,61,34,97,98,34,91,100,93,40,47,40,63,58,97,98,41,42,47,41,91,112,93,124,124,52,33,61,34,46,34,91,100,93,40,47,40,46,63,41,40,46,63,41,47,41,91,112,93,124,124,34,46,34,91,100,93,40,47,40,41,40,41,47,41,91,112,93,62,49,124,124,34,34,91,100,93,40,47,46,63,47,41,91,112,93,63,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,105,61,83,116,114,105,110,103,40,116,104,105,115,41,59,105,102,40,118,111,105,100,32,48,61,61,61,116,38,38,48,61,61,61,101,41,114,101,116,117,114,110,91,93,59,105,102,40,33,114,40,116,41,41,114,101,116,117,114,110,32,110,46,99,97,108,108,40,105,44,116,44,101,41,59,118,97,114,32,111,44,97,44,115,44,99,61,91,93,44,108,61,40,116,46,105,103,110,111,114,101,67,97,115,101,63,34,105,34,58,34,34,41,43,40,116,46,109,117,108,116,105,108,105,110,101,63,34,109,34,58,34,34,41,43,40,116,46,117,110,105,99,111,100,101,63,34,117,34,58,34,34,41,43,40,116,46,115,116,105,99,107,121,63,34,121,34,58,34,34,41,44,102,61,48,44,100,61,118,111,105,100,32,48,61,61,61,101,63,103,58,101,62,62,62,48,44,109,61,110,101,119,32,82,101,103,69,120,112,40,116,46,115,111,117,114,99,101,44,108,43,34,103,34,41,59,119,104,105,108,101,40,111,61,117,46,99,97,108,108,40,109,44,105,41,41,123,105,102,40,97,61,109,91,118,93,44,97,62,102,38,38,40,99,46,112,117,115,104,40,105,46,115,108,105,99,101,40,102,44,111,46,105,110,100,101,120,41,41,44,111,91,112,93,62,49,38,38,111,46,105,110,100,101,120,60,105,91,112,93,38,38,104,46,97,112,112,108,121,40,99,44,111,46,115,108,105,99,101,40,49,41,41,44,115,61,111,91,48,93,91,112,93,44,102,61,97,44,99,91,112,93,62,61,100,41,41,98,114,101,97,107,59,109,91,118,93,61,61,61,111,46,105,110,100,101,120,38,38,109,91,118,93,43,43,125,114,101,116,117,114,110,32,102,61,61,61,105,91,112,93,63,33,115,38,38,109,46,116,101,115,116,40,34,34,41,124,124,99,46,112,117,115,104,40,34,34,41,58,99,46,112,117,115,104,40,105,46,115,108,105,99,101,40,102,41,41,44,99,91,112,93,62,100,63,99,46,115,108,105,99,101,40,48,44,100,41,58,99,125,58,34,48,34,91,100,93,40,118,111,105,100,32,48,44,48,41,91,112,93,63,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,38,38,48,61,61,61,101,63,91,93,58,110,46,99,97,108,108,40,116,104,105,115,44,116,44,101,41,125,58,110,44,91,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,105,61,116,40,116,104,105,115,41,44,111,61,118,111,105,100,32,48,61,61,110,63,118,111,105,100,32,48,58,110,91,101,93,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,111,63,111,46,99,97,108,108,40,110,44,105,44,114,41,58,98,46,99,97,108,108,40,83,116,114,105,110,103,40,105,41,44,110,44,114,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,114,61,108,40,98,44,116,44,116,104,105,115,44,101,44,98,33,61,61,110,41,59,105,102,40,114,46,100,111,110,101,41,114,101,116,117,114,110,32,114,46,118,97,108,117,101,59,118,97,114,32,117,61,105,40,116,41,44,104,61,83,116,114,105,110,103,40,116,104,105,115,41,44,100,61,111,40,117,44,82,101,103,69,120,112,41,44,112,61,117,46,117,110,105,99,111,100,101,44,118,61,40,117,46,105,103,110,111,114,101,67,97,115,101,63,34,105,34,58,34,34,41,43,40,117,46,109,117,108,116,105,108,105,110,101,63,34,109,34,58,34,34,41,43,40,117,46,117,110,105,99,111,100,101,63,34,117,34,58,34,34,41,43,40,109,63,34,121,34,58,34,103,34,41,44,121,61,110,101,119,32,100,40,109,63,117,58,34,94,40,63,58,34,43,117,46,115,111,117,114,99,101,43,34,41,34,44,118,41,44,119,61,118,111,105,100,32,48,61,61,61,101,63,103,58,101,62,62,62,48,59,105,102,40,48,61,61,61,119,41,114,101,116,117,114,110,91,93,59,105,102,40,48,61,61,61,104,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,117,108,108,61,61,61,99,40,121,44,104,41,63,91,104,93,58,91,93,59,118,97,114,32,95,61,48,44,120,61,48,44,79,61,91,93,59,119,104,105,108,101,40,120,60,104,46,108,101,110,103,116,104,41,123,121,46,108,97,115,116,73,110,100,101,120,61,109,63,120,58,48,59,118,97,114,32,83,44,107,61,99,40,121,44,109,63,104,58,104,46,115,108,105,99,101,40,120,41,41,59,105,102,40,110,117,108,108,61,61,61,107,124,124,40,83,61,102,40,115,40,121,46,108,97,115,116,73,110,100,101,120,43,40,109,63,48,58,120,41,41,44,104,46,108,101,110,103,116,104,41,41,61,61,61,95,41,120,61,97,40,104,44,120,44,112,41,59,101,108,115,101,123,105,102,40,79,46,112,117,115,104,40,104,46,115,108,105,99,101,40,95,44,120,41,41,44,79,46,108,101,110,103,116,104,61,61,61,119,41,114,101,116,117,114,110,32,79,59,102,111,114,40,118,97,114,32,67,61,49,59,67,60,61,107,46,108,101,110,103,116,104,45,49,59,67,43,43,41,105,102,40,79,46,112,117,115,104,40,107,91,67,93,41,44,79,46,108,101,110,103,116,104,61,61,61,119,41,114,101,116,117,114,110,32,79,59,120,61,95,61,83,125,125,114,101,116,117,114,110,32,79,46,112,117,115,104,40,104,46,115,108,105,99,101,40,95,41,41,44,79,125,93,125,41,41,125,44,53,50,52,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,57,53,52,52,41,59,118,97,114,32,114,61,110,40,57,55,49,57,41,44,105,61,110,40,54,52,51,57,41,44,111,61,110,40,49,57,49,54,41,44,97,61,34,116,111,83,116,114,105,110,103,34,44,115,61,47,46,47,91,97,93,44,99,61,102,117,110,99,116,105,111,110,40,116,41,123,110,40,49,53,54,52,41,40,82,101,103,69,120,112,46,112,114,111,116,111,116,121,112,101,44,97,44,116,44,33,48,41,125,59,110,40,49,50,52,48,41,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,47,97,47,98,34,33,61,115,46,99,97,108,108,40,123,115,111,117,114,99,101,58,34,97,34,44,102,108,97,103,115,58,34,98,34,125,41,125,41,41,63,99,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,114,40,116,104,105,115,41,59,114,101,116,117,114,110,34,47,34,46,99,111,110,99,97,116,40,116,46,115,111,117,114,99,101,44,34,47,34,44,34,102,108,97,103,115,34,105,110,32,116,63,116,46,102,108,97,103,115,58,33,111,38,38,116,32,105,110,115,116,97,110,99,101,111,102,32,82,101,103,69,120,112,63,105,46,99,97,108,108,40,116,41,58,118,111,105,100,32,48,41,125,41,41,58,115,46,110,97,109,101,33,61,97,38,38,99,40,40,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,41,41,125,44,56,50,53,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,49,52,52,41,44,105,61,110,40,49,54,48,51,41,44,111,61,34,83,101,116,34,59,116,46,101,120,112,111,114,116,115,61,110,40,56,48,57,49,41,40,111,44,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,63,97,114,103,117,109,101,110,116,115,91,48,93,58,118,111,105,100,32,48,41,125,125,41,44,123,97,100,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,100,101,102,40,105,40,116,104,105,115,44,111,41,44,116,61,48,61,61,61,116,63,48,58,116,44,116,41,125,125,44,114,41,125,44,52,52,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,57,48,52,56,41,40,34,97,110,99,104,111,114,34,44,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,116,40,116,104,105,115,44,34,97,34,44,34,110,97,109,101,34,44,101,41,125,125,41,41,125,44,53,54,50,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,57,48,52,56,41,40,34,98,105,103,34,44,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,34,98,105,103,34,44,34,34,44,34,34,41,125,125,41,41,125,44,49,50,54,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,57,48,52,56,41,40,34,98,108,105,110,107,34,44,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,34,98,108,105,110,107,34,44,34,34,44,34,34,41,125,125,41,41,125,44,53,49,57,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,57,48,52,56,41,40,34,98,111,108,100,34,44,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,34,98,34,44,34,34,44,34,34,41,125,125,41,41,125,44,50,56,53,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,55,51,56,52,41,40,33,49,41,59,114,40,114,46,80,44,34,83,116,114,105,110,103,34,44,123,99,111,100,101,80,111,105,110,116,65,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,104,105,115,44,116,41,125,125,41,125,44,50,48,53,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,49,56,51,56,41,44,111,61,110,40,51,50,53,54,41,44,97,61,34,101,110,100,115,87,105,116,104,34,44,115,61,34,34,91,97,93,59,114,40,114,46,80,43,114,46,70,42,110,40,54,56,56,49,41,40,97,41,44,34,83,116,114,105,110,103,34,44,123,101,110,100,115,87,105,116,104,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,111,40,116,104,105,115,44,116,44,97,41,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,44,114,61,105,40,101,46,108,101,110,103,116,104,41,44,99,61,118,111,105,100,32,48,61,61,61,110,63,114,58,77,97,116,104,46,109,105,110,40,105,40,110,41,44,114,41,44,117,61,83,116,114,105,110,103,40,116,41,59,114,101,116,117,114,110,32,115,63,115,46,99,97,108,108,40,101,44,117,44,99,41,58,101,46,115,108,105,99,101,40,99,45,117,46,108,101,110,103,116,104,44,99,41,61,61,61,117,125,125,41,125,44,56,50,52,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,57,48,52,56,41,40,34,102,105,120,101,100,34,44,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,34,116,116,34,44,34,34,44,34,34,41,125,125,41,41,125,44,54,55,50,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,57,48,52,56,41,40,34,102,111,110,116,99,111,108,111,114,34,44,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,116,40,116,104,105,115,44,34,102,111,110,116,34,44,34,99,111,108,111,114,34,44,101,41,125,125,41,41,125,44,57,51,57,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,57,48,52,56,41,40,34,102,111,110,116,115,105,122,101,34,44,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,116,40,116,104,105,115,44,34,102,111,110,116,34,44,34,115,105,122,101,34,44,101,41,125,125,41,41,125,44,50,53,51,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,53,48,52,52,41,44,111,61,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,44,97,61,83,116,114,105,110,103,46,102,114,111,109,67,111,100,101,80,111,105,110,116,59,114,40,114,46,83,43,114,46,70,42,40,33,33,97,38,38,49,33,61,97,46,108,101,110,103,116,104,41,44,34,83,116,114,105,110,103,34,44,123,102,114,111,109,67,111,100,101,80,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,91,93,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,97,61,48,59,119,104,105,108,101,40,114,62,97,41,123,105,102,40,101,61,43,97,114,103,117,109,101,110,116,115,91,97,43,43,93,44,105,40,101,44,49,49,49,52,49,49,49,41,33,61,61,101,41,116,104,114,111,119,32,82,97,110,103,101,69,114,114,111,114,40,101,43,34,32,105,115,32,110,111,116,32,97,32,118,97,108,105,100,32,99,111,100,101,32,112,111,105,110,116,34,41,59,110,46,112,117,115,104,40,101,60,54,53,53,51,54,63,111,40,101,41,58,111,40,53,53,50,57,54,43,40,40,101,45,61,54,53,53,51,54,41,62,62,49,48,41,44,101,37,49,48,50,52,43,53,54,51,50,48,41,41,125,114,101,116,117,114,110,32,110,46,106,111,105,110,40,34,34,41,125,125,41,125,44,53,52,55,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,51,50,53,54,41,44,111,61,34,105,110,99,108,117,100,101,115,34,59,114,40,114,46,80,43,114,46,70,42,110,40,54,56,56,49,41,40,111,41,44,34,83,116,114,105,110,103,34,44,123,105,110,99,108,117,100,101,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,33,126,105,40,116,104,105,115,44,116,44,111,41,46,105,110,100,101,120,79,102,40,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,41,125,125,41,125,44,54,57,51,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,57,48,52,56,41,40,34,105,116,97,108,105,99,115,34,44,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,34,105,34,44,34,34,44,34,34,41,125,125,41,41,125,44,52,51,51,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,55,51,56,52,41,40,33,48,41,59,110,40,57,49,50,49,41,40,83,116,114,105,110,103,44,34,83,116,114,105,110,103,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,116,61,83,116,114,105,110,103,40,116,41,44,116,104,105,115,46,95,105,61,48,125,41,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,61,116,104,105,115,46,95,116,44,110,61,116,104,105,115,46,95,105,59,114,101,116,117,114,110,32,110,62,61,101,46,108,101,110,103,116,104,63,123,118,97,108,117,101,58,118,111,105,100,32,48,44,100,111,110,101,58,33,48,125,58,40,116,61,114,40,101,44,110,41,44,116,104,105,115,46,95,105,43,61,116,46,108,101,110,103,116,104,44,123,118,97,108,117,101,58,116,44,100,111,110,101,58,33,49,125,41,125,41,41,125,44,49,57,54,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,57,48,52,56,41,40,34,108,105,110,107,34,44,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,116,40,116,104,105,115,44,34,97,34,44,34,104,114,101,102,34,44,101,41,125,125,41,41,125,44,57,56,50,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,56,53,48,48,41,44,111,61,110,40,49,56,51,56,41,59,114,40,114,46,83,44,34,83,116,114,105,110,103,34,44,123,114,97,119,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,105,40,116,46,114,97,119,41,44,110,61,111,40,101,46,108,101,110,103,116,104,41,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,97,61,91,93,44,115,61,48,59,119,104,105,108,101,40,110,62,115,41,97,46,112,117,115,104,40,83,116,114,105,110,103,40,101,91,115,43,43,93,41,41,44,115,60,114,38,38,97,46,112,117,115,104,40,83,116,114,105,110,103,40,97,114,103,117,109,101,110,116,115,91,115,93,41,41,59,114,101,116,117,114,110,32,97,46,106,111,105,110,40,34,34,41,125,125,41,125,44,55,48,48,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,80,44,34,83,116,114,105,110,103,34,44,123,114,101,112,101,97,116,58,110,40,53,41,125,41,125,44,57,54,53,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,57,48,52,56,41,40,34,115,109,97,108,108,34,44,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,34,115,109,97,108,108,34,44,34,34,44,34,34,41,125,125,41,41,125,44,55,52,57,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,49,56,51,56,41,44,111,61,110,40,51,50,53,54,41,44,97,61,34,115,116,97,114,116,115,87,105,116,104,34,44,115,61,34,34,91,97,93,59,114,40,114,46,80,43,114,46,70,42,110,40,54,56,56,49,41,40,97,41,44,34,83,116,114,105,110,103,34,44,123,115,116,97,114,116,115,87,105,116,104,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,111,40,116,104,105,115,44,116,44,97,41,44,110,61,105,40,77,97,116,104,46,109,105,110,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,44,101,46,108,101,110,103,116,104,41,41,44,114,61,83,116,114,105,110,103,40,116,41,59,114,101,116,117,114,110,32,115,63,115,46,99,97,108,108,40,101,44,114,44,110,41,58,101,46,115,108,105,99,101,40,110,44,110,43,114,46,108,101,110,103,116,104,41,61,61,61,114,125,125,41,125,44,51,51,53,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,57,48,52,56,41,40,34,115,116,114,105,107,101,34,44,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,34,115,116,114,105,107,101,34,44,34,34,44,34,34,41,125,125,41,41,125,44,57,54,50,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,57,48,52,56,41,40,34,115,117,98,34,44,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,34,115,117,98,34,44,34,34,44,34,34,41,125,125,41,41,125,44,54,51,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,57,48,52,56,41,40,34,115,117,112,34,44,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,34,115,117,112,34,44,34,34,44,34,34,41,125,125,41,41,125,44,56,52,49,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,55,51,55,48,41,40,34,116,114,105,109,34,44,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,51,41,125,125,41,41,125,44,56,57,57,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,54,51,52,49,41,44,105,61,110,40,49,48,54,51,41,44,111,61,110,40,49,57,49,54,41,44,97,61,110,40,53,51,54,54,41,44,115,61,110,40,49,53,54,52,41,44,99,61,110,40,50,49,53,51,41,46,75,69,89,44,117,61,110,40,49,50,52,48,41,44,108,61,110,40,55,51,53,53,41,44,102,61,110,40,49,51,48,57,41,44,104,61,110,40,52,51,48,41,44,100,61,110,40,57,55,51,57,41,44,112,61,110,40,56,56,51,51,41,44,118,61,110,40,56,49,53,53,41,44,103,61,110,40,52,53,51,53,41,44,109,61,110,40,54,56,57,41,44,98,61,110,40,57,55,49,57,41,44,121,61,110,40,55,52,56,49,41,44,119,61,110,40,52,50,48,48,41,44,95,61,110,40,56,53,48,48,41,44,120,61,110,40,57,50,52,49,41,44,79,61,110,40,49,55,54,49,41,44,83,61,110,40,50,53,52,53,41,44,107,61,110,40,53,48,48,57,41,44,67,61,110,40,55,55,54,50,41,44,80,61,110,40,50,53,50,48,41,44,84,61,110,40,51,53,51,48,41,44,106,61,110,40,53,56,50,53,41,44,69,61,67,46,102,44,68,61,84,46,102,44,65,61,107,46,102,44,76,61,114,46,83,121,109,98,111,108,44,73,61,114,46,74,83,79,78,44,77,61,73,38,38,73,46,115,116,114,105,110,103,105,102,121,44,36,61,34,112,114,111,116,111,116,121,112,101,34,44,70,61,100,40,34,95,104,105,100,100,101,110,34,41,44,82,61,100,40,34,116,111,80,114,105,109,105,116,105,118,101,34,41,44,78,61,123,125,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,44,66,61,108,40,34,115,121,109,98,111,108,45,114,101,103,105,115,116,114,121,34,41,44,122,61,108,40,34,115,121,109,98,111,108,115,34,41,44,86,61,108,40,34,111,112,45,115,121,109,98,111,108,115,34,41,44,72,61,79,98,106,101,99,116,91,36,93,44,85,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,76,38,38,33,33,80,46,102,44,87,61,114,46,81,79,98,106,101,99,116,44,71,61,33,87,124,124,33,87,91,36,93,124,124,33,87,91,36,93,46,102,105,110,100,67,104,105,108,100,44,113,61,111,38,38,117,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,33,61,83,40,68,40,123,125,44,34,97,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,68,40,116,104,105,115,44,34,97,34,44,123,118,97,108,117,101,58,55,125,41,46,97,125,125,41,41,46,97,125,41,41,63,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,69,40,72,44,101,41,59,114,38,38,100,101,108,101,116,101,32,72,91,101,93,44,68,40,116,44,101,44,110,41,44,114,38,38,116,33,61,61,72,38,38,68,40,72,44,101,44,114,41,125,58,68,44,89,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,122,91,116,93,61,83,40,76,91,36,93,41,59,114,101,116,117,114,110,32,101,46,95,107,61,116,44,101,125,44,75,61,85,38,38,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,76,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,116,125,58,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,76,125,44,88,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,61,61,61,72,38,38,88,40,86,44,101,44,110,41,44,98,40,116,41,44,101,61,120,40,101,44,33,48,41,44,98,40,110,41,44,105,40,122,44,101,41,63,40,110,46,101,110,117,109,101,114,97,98,108,101,63,40,105,40,116,44,70,41,38,38,116,91,70,93,91,101,93,38,38,40,116,91,70,93,91,101,93,61,33,49,41,44,110,61,83,40,110,44,123,101,110,117,109,101,114,97,98,108,101,58,79,40,48,44,33,49,41,125,41,41,58,40,105,40,116,44,70,41,124,124,68,40,116,44,70,44,79,40,49,44,123,125,41,41,44,116,91,70,93,91,101,93,61,33,48,41,44,113,40,116,44,101,44,110,41,41,58,68,40,116,44,101,44,110,41,125,44,90,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,98,40,116,41,59,118,97,114,32,110,44,114,61,103,40,101,61,95,40,101,41,41,44,105,61,48,44,111,61,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,62,105,41,88,40,116,44,110,61,114,91,105,43,43,93,44,101,91,110,93,41,59,114,101,116,117,114,110,32,116,125,44,74,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,63,83,40,116,41,58,90,40,83,40,116,41,44,101,41,125,44,81,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,78,46,99,97,108,108,40,116,104,105,115,44,116,61,120,40,116,44,33,48,41,41,59,114,101,116,117,114,110,33,40,116,104,105,115,61,61,61,72,38,38,105,40,122,44,116,41,38,38,33,105,40,86,44,116,41,41,38,38,40,33,40,101,124,124,33,105,40,116,104,105,115,44,116,41,124,124,33,105,40,122,44,116,41,124,124,105,40,116,104,105,115,44,70,41,38,38,116,104,105,115,91,70,93,91,116,93,41,124,124,101,41,125,44,116,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,61,95,40,116,41,44,101,61,120,40,101,44,33,48,41,44,116,33,61,61,72,124,124,33,105,40,122,44,101,41,124,124,105,40,86,44,101,41,41,123,118,97,114,32,110,61,69,40,116,44,101,41,59,114,101,116,117,114,110,33,110,124,124,33,105,40,122,44,101,41,124,124,105,40,116,44,70,41,38,38,116,91,70,93,91,101,93,124,124,40,110,46,101,110,117,109,101,114,97,98,108,101,61,33,48,41,44,110,125,125,44,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,65,40,95,40,116,41,41,44,114,61,91,93,44,111,61,48,59,119,104,105,108,101,40,110,46,108,101,110,103,116,104,62,111,41,105,40,122,44,101,61,110,91,111,43,43,93,41,124,124,101,61,61,70,124,124,101,61,61,99,124,124,114,46,112,117,115,104,40,101,41,59,114,101,116,117,114,110,32,114,125,44,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,116,61,61,61,72,44,114,61,65,40,110,63,86,58,95,40,116,41,41,44,111,61,91,93,44,97,61,48,59,119,104,105,108,101,40,114,46,108,101,110,103,116,104,62,97,41,33,105,40,122,44,101,61,114,91,97,43,43,93,41,124,124,110,38,38,33,105,40,72,44,101,41,124,124,111,46,112,117,115,104,40,122,91,101,93,41,59,114,101,116,117,114,110,32,111,125,59,85,124,124,40,76,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,76,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,34,83,121,109,98,111,108,32,105,115,32,110,111,116,32,97,32,99,111,110,115,116,114,117,99,116,111,114,33,34,41,59,118,97,114,32,116,61,104,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,63,97,114,103,117,109,101,110,116,115,91,48,93,58,118,111,105,100,32,48,41,44,101,61,102,117,110,99,116,105,111,110,40,110,41,123,116,104,105,115,61,61,61,72,38,38,101,46,99,97,108,108,40,86,44,110,41,44,105,40,116,104,105,115,44,70,41,38,38,105,40,116,104,105,115,91,70,93,44,116,41,38,38,40,116,104,105,115,91,70,93,91,116,93,61,33,49,41,44,113,40,116,104,105,115,44,116,44,79,40,49,44,110,41,41,125,59,114,101,116,117,114,110,32,111,38,38,71,38,38,113,40,72,44,116,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,115,101,116,58,101,125,41,44,89,40,116,41,125,44,115,40,76,91,36,93,44,34,116,111,83,116,114,105,110,103,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,107,125,41,41,44,67,46,102,61,116,116,44,84,46,102,61,88,44,110,40,52,50,51,48,41,46,102,61,107,46,102,61,101,116,44,110,40,49,49,52,52,41,46,102,61,81,44,80,46,102,61,110,116,44,111,38,38,33,110,40,53,49,49,51,41,38,38,115,40,72,44,34,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,34,44,81,44,33,48,41,44,112,46,102,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,89,40,100,40,116,41,41,125,41,44,97,40,97,46,71,43,97,46,87,43,97,46,70,42,33,85,44,123,83,121,109,98,111,108,58,76,125,41,59,102,111,114,40,118,97,114,32,114,116,61,34,104,97,115,73,110,115,116,97,110,99,101,44,105,115,67,111,110,99,97,116,83,112,114,101,97,100,97,98,108,101,44,105,116,101,114,97,116,111,114,44,109,97,116,99,104,44,114,101,112,108,97,99,101,44,115,101,97,114,99,104,44,115,112,101,99,105,101,115,44,115,112,108,105,116,44,116,111,80,114,105,109,105,116,105,118,101,44,116,111,83,116,114,105,110,103,84,97,103,44,117,110,115,99,111,112,97,98,108,101,115,34,46,115,112,108,105,116,40,34,44,34,41,44,105,116,61,48,59,114,116,46,108,101,110,103,116,104,62,105,116,59,41,100,40,114,116,91,105,116,43,43,93,41,59,102,111,114,40,118,97,114,32,111,116,61,106,40,100,46,115,116,111,114,101,41,44,97,116,61,48,59,111,116,46,108,101,110,103,116,104,62,97,116,59,41,118,40,111,116,91,97,116,43,43,93,41,59,97,40,97,46,83,43,97,46,70,42,33,85,44,34,83,121,109,98,111,108,34,44,123,102,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,66,44,116,43,61,34,34,41,63,66,91,116,93,58,66,91,116,93,61,76,40,116,41,125,44,107,101,121,70,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,75,40,116,41,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,116,43,34,32,105,115,32,110,111,116,32,97,32,115,121,109,98,111,108,33,34,41,59,102,111,114,40,118,97,114,32,101,32,105,110,32,66,41,105,102,40,66,91,101,93,61,61,61,116,41,114,101,116,117,114,110,32,101,125,44,117,115,101,83,101,116,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,71,61,33,48,125,44,117,115,101,83,105,109,112,108,101,58,102,117,110,99,116,105,111,110,40,41,123,71,61,33,49,125,125,41,44,97,40,97,46,83,43,97,46,70,42,33,85,44,34,79,98,106,101,99,116,34,44,123,99,114,101,97,116,101,58,74,44,100,101,102,105,110,101,80,114,111,112,101,114,116,121,58,88,44,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,58,90,44,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,58,116,116,44,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,58,101,116,44,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,58,110,116,125,41,59,118,97,114,32,115,116,61,117,40,40,102,117,110,99,116,105,111,110,40,41,123,80,46,102,40,49,41,125,41,41,59,97,40,97,46,83,43,97,46,70,42,115,116,44,34,79,98,106,101,99,116,34,44,123,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,80,46,102,40,119,40,116,41,41,125,125,41,44,73,38,38,97,40,97,46,83,43,97,46,70,42,40,33,85,124,124,117,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,76,40,41,59,114,101,116,117,114,110,34,91,110,117,108,108,93,34,33,61,77,40,91,116,93,41,124,124,34,123,125,34,33,61,77,40,123,97,58,116,125,41,124,124,34,123,125,34,33,61,77,40,79,98,106,101,99,116,40,116,41,41,125,41,41,41,44,34,74,83,79,78,34,44,123,115,116,114,105,110,103,105,102,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,114,61,91,116,93,44,105,61,49,59,119,104,105,108,101,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,105,41,114,46,112,117,115,104,40,97,114,103,117,109,101,110,116,115,91,105,43,43,93,41,59,105,102,40,110,61,101,61,114,91,49,93,44,40,121,40,101,41,124,124,118,111,105,100,32,48,33,61,61,116,41,38,38,33,75,40,116,41,41,114,101,116,117,114,110,32,109,40,101,41,124,124,40,101,61,102,117,110,99,116,105,111,110,40,116,44,101,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,38,38,40,101,61,110,46,99,97,108,108,40,116,104,105,115,44,116,44,101,41,41,44,33,75,40,101,41,41,114,101,116,117,114,110,32,101,125,41,44,114,91,49,93,61,101,44,77,46,97,112,112,108,121,40,73,44,114,41,125,125,41,44,76,91,36,93,91,82,93,124,124,110,40,56,52,52,50,41,40,76,91,36,93,44,82,44,76,91,36,93,46,118,97,108,117,101,79,102,41,44,102,40,76,44,34,83,121,109,98,111,108,34,41,44,102,40,77,97,116,104,44,34,77,97,116,104,34,44,33,48,41,44,102,40,114,46,74,83,79,78,44,34,74,83,79,78,34,44,33,48,41,125,44,51,51,49,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,55,55,50,56,41,44,111,61,110,40,57,56,57,53,41,44,97,61,110,40,57,55,49,57,41,44,115,61,110,40,53,48,52,52,41,44,99,61,110,40,49,56,51,56,41,44,117,61,110,40,55,52,56,49,41,44,108,61,110,40,54,51,52,49,41,46,65,114,114,97,121,66,117,102,102,101,114,44,102,61,110,40,57,55,56,57,41,44,104,61,111,46,65,114,114,97,121,66,117,102,102,101,114,44,100,61,111,46,68,97,116,97,86,105,101,119,44,112,61,105,46,65,66,86,38,38,108,46,105,115,86,105,101,119,44,118,61,104,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,44,103,61,105,46,86,73,69,87,44,109,61,34,65,114,114,97,121,66,117,102,102,101,114,34,59,114,40,114,46,71,43,114,46,87,43,114,46,70,42,40,108,33,61,61,104,41,44,123,65,114,114,97,121,66,117,102,102,101,114,58,104,125,41,44,114,40,114,46,83,43,114,46,70,42,33,105,46,67,79,78,83,84,82,44,109,44,123,105,115,86,105,101,119,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,112,38,38,112,40,116,41,124,124,117,40,116,41,38,38,103,32,105,110,32,116,125,125,41,44,114,40,114,46,80,43,114,46,85,43,114,46,70,42,110,40,49,50,52,48,41,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,110,101,119,32,104,40,50,41,46,115,108,105,99,101,40,49,44,118,111,105,100,32,48,41,46,98,121,116,101,76,101,110,103,116,104,125,41,41,44,109,44,123,115,108,105,99,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,118,111,105,100,32,48,33,61,61,118,38,38,118,111,105,100,32,48,61,61,61,101,41,114,101,116,117,114,110,32,118,46,99,97,108,108,40,97,40,116,104,105,115,41,44,116,41,59,118,97,114,32,110,61,97,40,116,104,105,115,41,46,98,121,116,101,76,101,110,103,116,104,44,114,61,115,40,116,44,110,41,44,105,61,115,40,118,111,105,100,32,48,61,61,61,101,63,110,58,101,44,110,41,44,111,61,110,101,119,40,102,40,116,104,105,115,44,104,41,41,40,99,40,105,45,114,41,41,44,117,61,110,101,119,32,100,40,116,104,105,115,41,44,108,61,110,101,119,32,100,40,111,41,44,112,61,48,59,119,104,105,108,101,40,114,60,105,41,108,46,115,101,116,85,105,110,116,56,40,112,43,43,44,117,46,103,101,116,85,105,110,116,56,40,114,43,43,41,41,59,114,101,116,117,114,110,32,111,125,125,41,44,110,40,53,57,57,51,41,40,109,41,125,44,50,57,50,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,59,114,40,114,46,71,43,114,46,87,43,114,46,70,42,33,110,40,55,55,50,56,41,46,65,66,86,44,123,68,97,116,97,86,105,101,119,58,110,40,57,56,57,53,41,46,68,97,116,97,86,105,101,119,125,41,125,44,57,53,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,56,55,53,52,41,40,34,70,108,111,97,116,51,50,34,44,52,44,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,44,110,44,114,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,101,44,110,44,114,41,125,125,41,41,125,44,50,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,56,55,53,52,41,40,34,70,108,111,97,116,54,52,34,44,56,44,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,44,110,44,114,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,101,44,110,44,114,41,125,125,41,41,125,44,54,57,51,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,56,55,53,52,41,40,34,73,110,116,49,54,34,44,50,44,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,44,110,44,114,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,101,44,110,44,114,41,125,125,41,41,125,44,54,52,48,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,56,55,53,52,41,40,34,73,110,116,51,50,34,44,52,44,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,44,110,44,114,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,101,44,110,44,114,41,125,125,41,41,125,44,53,52,52,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,56,55,53,52,41,40,34,73,110,116,56,34,44,49,44,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,44,110,44,114,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,101,44,110,44,114,41,125,125,41,41,125,44,55,56,52,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,56,55,53,52,41,40,34,85,105,110,116,49,54,34,44,50,44,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,44,110,44,114,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,101,44,110,44,114,41,125,125,41,41,125,44,49,50,48,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,56,55,53,52,41,40,34,85,105,110,116,51,50,34,44,52,44,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,44,110,44,114,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,101,44,110,44,114,41,125,125,41,41,125,44,57,56,49,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,56,55,53,52,41,40,34,85,105,110,116,56,34,44,49,44,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,44,110,44,114,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,101,44,110,44,114,41,125,125,41,41,125,44,51,55,55,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,56,55,53,52,41,40,34,85,105,110,116,56,34,44,49,44,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,44,110,44,114,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,101,44,110,44,114,41,125,125,41,44,33,48,41,125,44,55,51,57,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,44,105,61,110,40,54,51,52,49,41,44,111,61,110,40,54,57,51,52,41,40,48,41,44,97,61,110,40,49,53,54,52,41,44,115,61,110,40,50,49,53,51,41,44,99,61,110,40,57,56,50,49,41,44,117,61,110,40,51,53,48,51,41,44,108,61,110,40,55,52,56,49,41,44,102,61,110,40,49,54,48,51,41,44,104,61,110,40,49,54,48,51,41,44,100,61,33,105,46,65,99,116,105,118,101,88,79,98,106,101,99,116,38,38,34,65,99,116,105,118,101,88,79,98,106,101,99,116,34,105,110,32,105,44,112,61,34,87,101,97,107,77,97,112,34,44,118,61,115,46,103,101,116,87,101,97,107,44,103,61,79,98,106,101,99,116,46,105,115,69,120,116,101,110,115,105,98,108,101,44,109,61,117,46,117,102,115,116,111,114,101,44,98,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,63,97,114,103,117,109,101,110,116,115,91,48,93,58,118,111,105,100,32,48,41,125,125,44,121,61,123,103,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,108,40,116,41,41,123,118,97,114,32,101,61,118,40,116,41,59,114,101,116,117,114,110,33,48,61,61,61,101,63,109,40,102,40,116,104,105,115,44,112,41,41,46,103,101,116,40,116,41,58,101,63,101,91,116,104,105,115,46,95,105,93,58,118,111,105,100,32,48,125,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,117,46,100,101,102,40,102,40,116,104,105,115,44,112,41,44,116,44,101,41,125,125,44,119,61,116,46,101,120,112,111,114,116,115,61,110,40,56,48,57,49,41,40,112,44,98,44,121,44,117,44,33,48,44,33,48,41,59,104,38,38,100,38,38,40,114,61,117,46,103,101,116,67,111,110,115,116,114,117,99,116,111,114,40,98,44,112,41,44,99,40,114,46,112,114,111,116,111,116,121,112,101,44,121,41,44,115,46,78,69,69,68,61,33,48,44,111,40,91,34,100,101,108,101,116,101,34,44,34,104,97,115,34,44,34,103,101,116,34,44,34,115,101,116,34,93,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,119,46,112,114,111,116,111,116,121,112,101,44,110,61,101,91,116,93,59,97,40,101,44,116,44,40,102,117,110,99,116,105,111,110,40,101,44,105,41,123,105,102,40,108,40,101,41,38,38,33,103,40,101,41,41,123,116,104,105,115,46,95,102,124,124,40,116,104,105,115,46,95,102,61,110,101,119,32,114,41,59,118,97,114,32,111,61,116,104,105,115,46,95,102,91,116,93,40,101,44,105,41,59,114,101,116,117,114,110,34,115,101,116,34,61,61,116,63,116,104,105,115,58,111,125,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,104,105,115,44,101,44,105,41,125,41,41,125,41,41,41,125,44,51,51,48,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,51,53,48,51,41,44,105,61,110,40,49,54,48,51,41,44,111,61,34,87,101,97,107,83,101,116,34,59,110,40,56,48,57,49,41,40,111,44,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,63,97,114,103,117,109,101,110,116,115,91,48,93,58,118,111,105,100,32,48,41,125,125,41,44,123,97,100,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,100,101,102,40,105,40,116,104,105,115,44,111,41,44,116,44,33,48,41,125,125,44,114,44,33,49,44,33,48,41,125,44,56,49,50,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,51,56,56,53,41,44,111,61,110,40,52,50,48,48,41,44,97,61,110,40,49,56,51,56,41,44,115,61,110,40,51,48,55,57,41,44,99,61,110,40,52,48,56,55,41,59,114,40,114,46,80,44,34,65,114,114,97,121,34,44,123,102,108,97,116,77,97,112,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,114,61,111,40,116,104,105,115,41,59,114,101,116,117,114,110,32,115,40,116,41,44,101,61,97,40,114,46,108,101,110,103,116,104,41,44,110,61,99,40,114,44,48,41,44,105,40,110,44,114,44,114,44,101,44,48,44,49,44,116,44,97,114,103,117,109,101,110,116,115,91,49,93,41,44,110,125,125,41,44,110,40,50,56,48,50,41,40,34,102,108,97,116,77,97,112,34,41,125,44,57,51,52,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,49,53,52,53,41,40,33,48,41,59,114,40,114,46,80,44,34,65,114,114,97,121,34,44,123,105,110,99,108,117,100,101,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,104,105,115,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,41,125,125,41,44,110,40,50,56,48,50,41,40,34,105,110,99,108,117,100,101,115,34,41,125,44,49,55,54,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,53,51,52,54,41,40,33,48,41,59,114,40,114,46,83,44,34,79,98,106,101,99,116,34,44,123,101,110,116,114,105,101,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,41,125,125,41,125,44,57,50,50,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,55,50,56,53,41,44,111,61,110,40,56,53,48,48,41,44,97,61,110,40,55,55,54,50,41,44,115,61,110,40,49,54,55,54,41,59,114,40,114,46,83,44,34,79,98,106,101,99,116,34,44,123,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,115,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,114,61,111,40,116,41,44,99,61,97,46,102,44,117,61,105,40,114,41,44,108,61,123,125,44,102,61,48,59,119,104,105,108,101,40,117,46,108,101,110,103,116,104,62,102,41,110,61,99,40,114,44,101,61,117,91,102,43,43,93,41,44,118,111,105,100,32,48,33,61,61,110,38,38,115,40,108,44,101,44,110,41,59,114,101,116,117,114,110,32,108,125,125,41,125,44,55,52,52,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,53,51,52,54,41,40,33,49,41,59,114,40,114,46,83,44,34,79,98,106,101,99,116,34,44,123,118,97,108,117,101,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,41,125,125,41,125,44,52,57,51,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,52,52,49,49,41,44,111,61,110,40,54,51,52,49,41,44,97,61,110,40,57,55,56,57,41,44,115,61,110,40,56,54,49,52,41,59,114,40,114,46,80,43,114,46,82,44,34,80,114,111,109,105,115,101,34,44,123,102,105,110,97,108,108,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,97,40,116,104,105,115,44,105,46,80,114,111,109,105,115,101,124,124,111,46,80,114,111,109,105,115,101,41,44,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,32,116,104,105,115,46,116,104,101,110,40,110,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,115,40,101,44,116,40,41,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,125,41,41,125,58,116,44,110,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,115,40,101,44,116,40,41,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,110,125,41,41,125,58,116,41,125,125,41,125,44,50,51,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,57,56,50,51,41,44,111,61,110,40,51,56,52,51,41,44,97,61,47,86,101,114,115,105,111,110,92,47,49,48,92,46,92,100,43,40,92,46,92,100,43,41,63,40,32,77,111,98,105,108,101,92,47,92,119,43,41,63,32,83,97,102,97,114,105,92,47,47,46,116,101,115,116,40,111,41,59,114,40,114,46,80,43,114,46,70,42,97,44,34,83,116,114,105,110,103,34,44,123,112,97,100,69,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,104,105,115,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,44,33,49,41,125,125,41,125,44,56,55,53,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,57,56,50,51,41,44,111,61,110,40,51,56,52,51,41,44,97,61,47,86,101,114,115,105,111,110,92,47,49,48,92,46,92,100,43,40,92,46,92,100,43,41,63,40,32,77,111,98,105,108,101,92,47,92,119,43,41,63,32,83,97,102,97,114,105,92,47,47,46,116,101,115,116,40,111,41,59,114,40,114,46,80,43,114,46,70,42,97,44,34,83,116,114,105,110,103,34,44,123,112,97,100,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,104,105,115,44,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,44,33,48,41,125,125,41,125,44,51,52,49,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,55,51,55,48,41,40,34,116,114,105,109,76,101,102,116,34,44,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,49,41,125,125,41,44,34,116,114,105,109,83,116,97,114,116,34,41,125,44,54,57,52,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,40,55,51,55,48,41,40,34,116,114,105,109,82,105,103,104,116,34,44,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,41,123,114,101,116,117,114,110,32,116,40,116,104,105,115,44,50,41,125,125,41,44,34,116,114,105,109,69,110,100,34,41,125,44,56,50,56,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,56,49,53,53,41,40,34,97,115,121,110,99,73,116,101,114,97,116,111,114,34,41,125,44,56,55,52,53,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,114,61,110,40,49,51,48,56,41,44,105,61,110,40,53,56,50,53,41,44,111,61,110,40,49,53,54,52,41,44,97,61,110,40,54,51,52,49,41,44,115,61,110,40,56,52,52,50,41,44,99,61,110,40,52,57,49,57,41,44,117,61,110,40,57,55,51,57,41,44,108,61,117,40,34,105,116,101,114,97,116,111,114,34,41,44,102,61,117,40,34,116,111,83,116,114,105,110,103,84,97,103,34,41,44,104,61,99,46,65,114,114,97,121,44,100,61,123,67,83,83,82,117,108,101,76,105,115,116,58,33,48,44,67,83,83,83,116,121,108,101,68,101,99,108,97,114,97,116,105,111,110,58,33,49,44,67,83,83,86,97,108,117,101,76,105,115,116,58,33,49,44,67,108,105,101,110,116,82,101,99,116,76,105,115,116,58,33,49,44,68,79,77,82,101,99,116,76,105,115,116,58,33,49,44,68,79,77,83,116,114,105,110,103,76,105,115,116,58,33,49,44,68,79,77,84,111,107,101,110,76,105,115,116,58,33,48,44,68,97,116,97,84,114,97,110,115,102,101,114,73,116,101,109,76,105,115,116,58,33,49,44,70,105,108,101,76,105,115,116,58,33,49,44,72,84,77,76,65,108,108,67,111,108,108,101,99,116,105,111,110,58,33,49,44,72,84,77,76,67,111,108,108,101,99,116,105,111,110,58,33,49,44,72,84,77,76,70,111,114,109,69,108,101,109,101,110,116,58,33,49,44,72,84,77,76,83,101,108,101,99,116,69,108,101,109,101,110,116,58,33,49,44,77,101,100,105,97,76,105,115,116,58,33,48,44,77,105,109,101,84,121,112,101,65,114,114,97,121,58,33,49,44,78,97,109,101,100,78,111,100,101,77,97,112,58,33,49,44,78,111,100,101,76,105,115,116,58,33,48,44,80,97,105,110,116,82,101,113,117,101,115,116,76,105,115,116,58,33,49,44,80,108,117,103,105,110,58,33,49,44,80,108,117,103,105,110,65,114,114,97,121,58,33,49,44,83,86,71,76,101,110,103,116,104,76,105,115,116,58,33,49,44,83,86,71,78,117,109,98,101,114,76,105,115,116,58,33,49,44,83,86,71,80,97,116,104,83,101,103,76,105,115,116,58,33,49,44,83,86,71,80,111,105,110,116,76,105,115,116,58,33,49,44,83,86,71,83,116,114,105,110,103,76,105,115,116,58,33,49,44,83,86,71,84,114,97,110,115,102,111,114,109,76,105,115,116,58,33,49,44,83,111,117,114,99,101,66,117,102,102,101,114,76,105,115,116,58,33,49,44,83,116,121,108,101,83,104,101,101,116,76,105,115,116,58,33,48,44,84,101,120,116,84,114,97,99,107,67,117,101,76,105,115,116,58,33,49,44,84,101,120,116,84,114,97,99,107,76,105,115,116,58,33,49,44,84,111,117,99,104,76,105,115,116,58,33,49,125,44,112,61,105,40,100,41,44,118,61,48,59,118,60,112,46,108,101,110,103,116,104,59,118,43,43,41,123,118,97,114,32,103,44,109,61,112,91,118,93,44,98,61,100,91,109,93,44,121,61,97,91,109,93,44,119,61,121,38,38,121,46,112,114,111,116,111,116,121,112,101,59,105,102,40,119,38,38,40,119,91,108,93,124,124,115,40,119,44,108,44,104,41,44,119,91,102,93,124,124,115,40,119,44,102,44,109,41,44,99,91,109,93,61,104,44,98,41,41,102,111,114,40,103,32,105,110,32,114,41,119,91,103,93,124,124,111,40,119,44,103,44,114,91,103,93,44,33,48,41,125,125,44,50,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,51,54,54,41,44,105,61,110,40,55,49,50,50,41,59,114,40,114,46,71,43,114,46,66,44,123,115,101,116,73,109,109,101,100,105,97,116,101,58,105,46,115,101,116,44,99,108,101,97,114,73,109,109,101,100,105,97,116,101,58,105,46,99,108,101,97,114,125,41,125,44,49,54,50,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,54,51,52,49,41,44,105,61,110,40,53,51,54,54,41,44,111,61,110,40,51,56,52,51,41,44,97,61,91,93,46,115,108,105,99,101,44,115,61,47,77,83,73,69,32,46,92,46,47,46,116,101,115,116,40,111,41,44,99,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,44,110,41,123,118,97,114,32,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,50,44,105,61,33,33,114,38,38,97,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,50,41,59,114,101,116,117,114,110,32,116,40,114,63,102,117,110,99,116,105,111,110,40,41,123,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,58,70,117,110,99,116,105,111,110,40,101,41,41,46,97,112,112,108,121,40,116,104,105,115,44,105,41,125,58,101,44,110,41,125,125,59,105,40,105,46,71,43,105,46,66,43,105,46,70,42,115,44,123,115,101,116,84,105,109,101,111,117,116,58,99,40,114,46,115,101,116,84,105,109,101,111,117,116,41,44,115,101,116,73,110,116,101,114,118,97,108,58,99,40,114,46,115,101,116,73,110,116,101,114,118,97,108,41,125,41,125,44,49,53,50,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,49,54,50,57,41,44,110,40,50,53,41,44,110,40,56,55,52,53,41,44,116,46,101,120,112,111,114,116,115,61,110,40,52,52,49,49,41,125,44,53,57,50,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,10,47,42,33,32,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,10,67,111,112,121,114,105,103,104,116,32,40,99,41,32,77,105,99,114,111,115,111,102,116,32,67,111,114,112,111,114,97,116,105,111,110,46,10,10,80,101,114,109,105,115,115,105,111,110,32,116,111,32,117,115,101,44,32,99,111,112,121,44,32,109,111,100,105,102,121,44,32,97,110,100,47,111,114,32,100,105,115,116,114,105,98,117,116,101,32,116,104,105,115,32,115,111,102,116,119,97,114,101,32,102,111,114,32,97,110,121,10,112,117,114,112,111,115,101,32,119,105,116,104,32,111,114,32,119,105,116,104,111,117,116,32,102,101,101,32,105,115,32,104,101,114,101,98,121,32,103,114,97,110,116,101,100,46,10,10,84,72,69,32,83,79,70,84,87,65,82,69,32,73,83,32,80,82,79,86,73,68,69,68,32,34,65,83,32,73,83,34,32,65,78,68,32,84,72,69,32,65,85,84,72,79,82,32,68,73,83,67,76,65,73,77,83,32,65,76,76,32,87,65,82,82,65,78,84,73,69,83,32,87,73,84,72,10,82,69,71,65,82,68,32,84,79,32,84,72,73,83,32,83,79,70,84,87,65,82,69,32,73,78,67,76,85,68,73,78,71,32,65,76,76,32,73,77,80,76,73,69,68,32,87,65,82,82,65,78,84,73,69,83,32,79,70,32,77,69,82,67,72,65,78,84,65,66,73,76,73,84,89,10,65,78,68,32,70,73,84,78,69,83,83,46,32,73,78,32,78,79,32,69,86,69,78,84,32,83,72,65,76,76,32,84,72,69,32,65,85,84,72,79,82,32,66,69,32,76,73,65,66,76,69,32,70,79,82,32,65,78,89,32,83,80,69,67,73,65,76,44,32,68,73,82,69,67,84,44,10,73,78,68,73,82,69,67,84,44,32,79,82,32,67,79,78,83,69,81,85,69,78,84,73,65,76,32,68,65,77,65,71,69,83,32,79,82,32,65,78,89,32,68,65,77,65,71,69,83,32,87,72,65,84,83,79,69,86,69,82,32,82,69,83,85,76,84,73,78,71,32,70,82,79,77,10,76,79,83,83,32,79,70,32,85,83,69,44,32,68,65,84,65,32,79,82,32,80,82,79,70,73,84,83,44,32,87,72,69,84,72,69,82,32,73,78,32,65,78,32,65,67,84,73,79,78,32,79,70,32,67,79,78,84,82,65,67,84,44,32,78,69,71,76,73,71,69,78,67,69,32,79,82,10,79,84,72,69,82,32,84,79,82,84,73,79,85,83,32,65,67,84,73,79,78,44,32,65,82,73,83,73,78,71,32,79,85,84,32,79,70,32,79,82,32,73,78,32,67,79,78,78,69,67,84,73,79,78,32,87,73,84,72,32,84,72,69,32,85,83,69,32,79,82,10,80,69,82,70,79,82,77,65,78,67,69,32,79,70,32,84,72,73,83,32,83,79,70,84,87,65,82,69,46,10,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,32,42,47,10,102,117,110,99,116,105,111,110,32,114,40,116,41,123,118,97,114,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,44,110,61,101,38,38,116,91,101,93,44,114,61,48,59,105,102,40,110,41,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,41,59,105,102,40,116,38,38,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,116,46,108,101,110,103,116,104,41,114,101,116,117,114,110,123,110,101,120,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,38,38,114,62,61,116,46,108,101,110,103,116,104,38,38,40,116,61,118,111,105,100,32,48,41,44,123,118,97,108,117,101,58,116,38,38,116,91,114,43,43,93,44,100,111,110,101,58,33,116,125,125,125,59,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,101,63,34,79,98,106,101,99,116,32,105,115,32,110,111,116,32,105,116,101,114,97,98,108,101,46,34,58,34,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,115,32,110,111,116,32,100,101,102,105,110,101,100,46,34,41,125,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,116,125,110,46,100,40,101,44,123,90,80,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,70,110,125,125,41,59,118,97,114,32,111,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,116,104,105,115,46,111,112,116,105,111,110,115,61,123,125,44,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,61,123,125,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,101,46,116,114,105,103,103,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,116,104,105,115,44,110,61,91,93,44,114,61,49,59,114,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,114,43,43,41,110,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,118,97,114,32,105,61,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,91,116,93,124,124,91,93,44,111,61,105,46,108,101,110,103,116,104,62,48,59,105,102,40,33,111,41,114,101,116,117,114,110,33,48,59,118,97,114,32,97,61,110,91,48,93,124,124,123,125,44,115,61,110,46,115,108,105,99,101,40,49,41,59,105,61,105,46,99,111,110,99,97,116,40,41,59,118,97,114,32,99,61,33,49,59,97,46,101,118,101,110,116,84,121,112,101,61,116,44,97,46,115,116,111,112,61,102,117,110,99,116,105,111,110,40,41,123,99,61,33,48,125,44,97,46,99,117,114,114,101,110,116,84,97,114,103,101,116,61,116,104,105,115,59,118,97,114,32,117,61,91,97,93,59,114,101,116,117,114,110,32,115,46,108,101,110,103,116,104,62,61,49,38,38,40,117,61,117,46,99,111,110,99,97,116,40,115,41,41,44,105,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,97,112,112,108,121,40,101,44,117,41,125,41,41,44,33,99,125,44,101,46,111,110,99,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,59,105,102,40,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,38,38,105,40,101,41,41,123,118,97,114,32,114,61,116,59,102,111,114,40,118,97,114,32,111,32,105,110,32,114,41,116,104,105,115,46,111,110,99,101,40,111,44,114,91,111,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,41,123,118,97,114,32,97,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,114,61,91,93,44,105,61,48,59,105,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,43,43,41,114,91,105,93,61,97,114,103,117,109,101,110,116,115,91,105,93,59,101,46,97,112,112,108,121,40,110,44,114,41,44,110,46,111,102,102,40,116,44,97,41,125,59,116,104,105,115,46,111,110,40,116,44,97,41,125,114,101,116,117,114,110,32,116,104,105,115,125,44,101,46,104,97,115,79,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,33,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,91,116,93,125,44,101,46,111,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,38,38,105,40,101,41,41,123,118,97,114,32,110,61,116,59,102,111,114,40,118,97,114,32,114,32,105,110,32,110,41,116,104,105,115,46,111,110,40,114,44,110,91,114,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,41,123,118,97,114,32,111,61,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,91,116,93,59,105,40,111,41,38,38,40,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,91,116,93,61,91,93,44,111,61,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,91,116,93,41,44,111,46,112,117,115,104,40,101,41,125,114,101,116,117,114,110,32,116,104,105,115,125,44,101,46,111,102,102,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,111,59,105,102,40,105,40,116,41,41,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,61,123,125,44,116,104,105,115,59,105,102,40,105,40,101,41,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,100,101,108,101,116,101,32,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,91,116,93,44,116,104,105,115,59,118,97,114,32,97,61,116,59,102,111,114,40,118,97,114,32,115,32,105,110,32,97,41,116,104,105,115,46,111,102,102,40,115,44,97,91,115,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,118,97,114,32,99,61,116,104,105,115,46,95,101,118,101,110,116,72,97,110,100,108,101,114,91,116,93,59,105,102,40,99,41,123,118,97,114,32,117,61,48,59,116,114,121,123,102,111,114,40,118,97,114,32,108,61,114,40,99,41,44,102,61,108,46,110,101,120,116,40,41,59,33,102,46,100,111,110,101,59,102,61,108,46,110,101,120,116,40,41,41,123,118,97,114,32,104,61,102,46,118,97,108,117,101,59,105,102,40,104,61,61,61,101,41,123,99,46,115,112,108,105,99,101,40,117,44,49,41,59,98,114,101,97,107,125,117,43,43,125,125,99,97,116,99,104,40,100,41,123,110,61,123,101,114,114,111,114,58,100,125,125,102,105,110,97,108,108,121,123,116,114,121,123,102,38,38,33,102,46,100,111,110,101,38,38,40,111,61,108,46,114,101,116,117,114,110,41,38,38,111,46,99,97,108,108,40,108,41,125,102,105,110,97,108,108,121,123,105,102,40,110,41,116,104,114,111,119,32,110,46,101,114,114,111,114,125,125,125,114,101,116,117,114,110,32,116,104,105,115,125,44,116,46,86,69,82,83,73,79,78,61,34,50,46,50,46,50,34,44,116,125,40,41,44,97,61,111,44,115,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,116,104,105,115,46,107,101,121,115,61,91,93,44,116,104,105,115,46,118,97,108,117,101,115,61,91,93,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,101,46,103,101,116,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,118,97,108,117,101,115,91,116,104,105,115,46,107,101,121,115,46,105,110,100,101,120,79,102,40,116,41,93,125,44,101,46,115,101,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,107,101,121,115,44,114,61,116,104,105,115,46,118,97,108,117,101,115,44,105,61,110,46,105,110,100,101,120,79,102,40,116,41,44,111,61,45,49,61,61,61,105,63,110,46,108,101,110,103,116,104,58,105,59,110,91,111,93,61,116,44,114,91,111,93,61,101,125,44,116,125,40,41,44,99,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,116,104,105,115,46,111,98,106,101,99,116,61,123,125,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,101,46,103,101,116,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,111,98,106,101,99,116,91,116,93,125,44,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,111,98,106,101,99,116,91,116,93,61,101,125,44,116,125,40,41,44,117,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,77,97,112,44,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,101,46,99,111,110,110,101,99,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,112,114,101,118,61,116,44,116,104,105,115,46,110,101,120,116,61,101,44,116,38,38,40,116,46,110,101,120,116,61,116,104,105,115,41,44,101,38,38,40,101,46,112,114,101,118,61,116,104,105,115,41,125,44,101,46,100,105,115,99,111,110,110,101,99,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,112,114,101,118,44,101,61,116,104,105,115,46,110,101,120,116,59,116,38,38,40,116,46,110,101,120,116,61,101,41,44,101,38,38,40,101,46,112,114,101,118,61,116,41,125,44,101,46,103,101,116,73,110,100,101,120,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,45,49,59,119,104,105,108,101,40,116,41,116,61,116,46,112,114,101,118,44,43,43,101,59,114,101,116,117,114,110,32,101,125,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,102,40,116,44,101,41,123,118,97,114,32,110,61,91,93,44,114,61,91,93,59,114,101,116,117,114,110,32,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,91,48,93,44,105,61,116,91,49,93,44,111,61,110,101,119,32,108,59,110,91,101,93,61,111,44,114,91,105,93,61,111,125,41,41,44,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,99,111,110,110,101,99,116,40,110,91,101,45,49,93,41,125,41,41,44,116,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,33,101,91,110,93,125,41,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,105,61,116,91,48,93,44,111,61,116,91,49,93,59,105,102,40,105,61,61,61,111,41,114,101,116,117,114,110,91,48,44,48,93,59,118,97,114,32,97,61,110,91,105,93,44,115,61,114,91,111,45,49,93,44,99,61,97,46,103,101,116,73,110,100,101,120,40,41,59,97,46,100,105,115,99,111,110,110,101,99,116,40,41,44,115,63,97,46,99,111,110,110,101,99,116,40,115,44,115,46,110,101,120,116,41,58,97,46,99,111,110,110,101,99,116,40,118,111,105,100,32,48,44,110,91,48,93,41,59,118,97,114,32,117,61,97,46,103,101,116,73,110,100,101,120,40,41,59,114,101,116,117,114,110,91,99,44,117,93,125,41,41,125,118,97,114,32,104,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,44,101,44,110,44,114,44,105,44,111,44,97,44,115,41,123,116,104,105,115,46,112,114,101,118,76,105,115,116,61,116,44,116,104,105,115,46,108,105,115,116,61,101,44,116,104,105,115,46,97,100,100,101,100,61,110,44,116,104,105,115,46,114,101,109,111,118,101,100,61,114,44,116,104,105,115,46,99,104,97,110,103,101,100,61,105,44,116,104,105,115,46,109,97,105,110,116,97,105,110,101,100,61,111,44,116,104,105,115,46,99,104,97,110,103,101,100,66,101,102,111,114,101,65,100,100,101,100,61,97,44,116,104,105,115,46,102,105,120,101,100,61,115,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,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,111,114,100,101,114,101,100,34,44,123,103,101,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,99,97,99,104,101,79,114,100,101,114,101,100,124,124,116,104,105,115,46,99,97,99,117,108,97,116,101,79,114,100,101,114,101,100,40,41,44,116,104,105,115,46,99,97,99,104,101,79,114,100,101,114,101,100,125,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,125,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,34,112,117,114,101,67,104,97,110,103,101,100,34,44,123,103,101,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,99,97,99,104,101,80,117,114,101,67,104,97,110,103,101,100,124,124,116,104,105,115,46,99,97,99,117,108,97,116,101,79,114,100,101,114,101,100,40,41,44,116,104,105,115,46,99,97,99,104,101,80,117,114,101,67,104,97,110,103,101,100,125,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,125,41,44,101,46,99,97,99,117,108,97,116,101,79,114,100,101,114,101,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,102,40,116,104,105,115,46,99,104,97,110,103,101,100,66,101,102,111,114,101,65,100,100,101,100,44,116,104,105,115,46,102,105,120,101,100,41,44,101,61,116,104,105,115,46,99,104,97,110,103,101,100,44,110,61,91,93,59,116,104,105,115,46,99,97,99,104,101,79,114,100,101,114,101,100,61,116,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,118,97,114,32,105,61,116,91,48,93,44,111,61,116,91,49,93,44,97,61,101,91,114,93,44,115,61,97,91,48,93,44,99,61,97,91,49,93,59,105,102,40,105,33,61,61,111,41,114,101,116,117,114,110,32,110,46,112,117,115,104,40,91,115,44,99,93,41,44,33,48,125,41,41,44,116,104,105,115,46,99,97,99,104,101,80,117,114,101,67,104,97,110,103,101,100,61,110,125,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,100,40,116,44,101,44,110,41,123,118,97,114,32,114,61,117,63,77,97,112,58,110,63,99,58,115,44,105,61,110,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,44,111,61,91,93,44,97,61,91,93,44,108,61,91,93,44,102,61,116,46,109,97,112,40,105,41,44,100,61,101,46,109,97,112,40,105,41,44,112,61,110,101,119,32,114,44,118,61,110,101,119,32,114,44,103,61,91,93,44,109,61,91,93,44,98,61,123,125,44,121,61,91,93,44,119,61,48,44,95,61,48,59,114,101,116,117,114,110,32,102,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,112,46,115,101,116,40,116,44,101,41,125,41,41,44,100,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,46,115,101,116,40,116,44,101,41,125,41,41,44,102,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,118,46,103,101,116,40,116,41,59,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,110,63,40,43,43,95,44,97,46,112,117,115,104,40,101,41,41,58,98,91,110,93,61,95,125,41,41,44,100,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,46,103,101,116,40,116,41,59,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,110,63,40,111,46,112,117,115,104,40,101,41,44,43,43,119,41,58,40,108,46,112,117,115,104,40,91,110,44,101,93,41,44,95,61,98,91,101,93,124,124,48,44,103,46,112,117,115,104,40,91,110,45,95,44,101,45,119,93,41,44,109,46,112,117,115,104,40,101,61,61,61,110,41,44,110,33,61,61,101,38,38,121,46,112,117,115,104,40,91,110,44,101,93,41,41,125,41,41,44,97,46,114,101,118,101,114,115,101,40,41,44,110,101,119,32,104,40,116,44,101,44,111,44,97,44,121,44,108,44,103,44,109,41,125,118,97,114,32,112,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,112,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,123,95,95,112,114,111,116,111,95,95,58,91,93,125,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,38,38,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,95,95,112,114,111,116,111,95,95,61,101,125,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,101,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,101,44,110,41,38,38,40,116,91,110,93,61,101,91,110,93,41,125,44,112,40,116,44,101,41,125,59,102,117,110,99,116,105,111,110,32,118,40,116,44,101,41,123,102,117,110,99,116,105,111,110,32,110,40,41,123,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,61,116,125,112,40,116,44,101,41,44,116,46,112,114,111,116,111,116,121,112,101,61,110,117,108,108,61,61,61,101,63,79,98,106,101,99,116,46,99,114,101,97,116,101,40,101,41,58,40,110,46,112,114,111,116,111,116,121,112,101,61,101,46,112,114,111,116,111,116,121,112,101,44,110,101,119,32,110,41,125,118,97,114,32,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,103,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,44,110,61,49,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,102,111,114,40,118,97,114,32,105,32,105,110,32,101,61,97,114,103,117,109,101,110,116,115,91,110,93,44,101,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,101,44,105,41,38,38,40,116,91,105,93,61,101,91,105,93,41,59,114,101,116,117,114,110,32,116,125,44,103,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,59,102,117,110,99,116,105,111,110,32,109,40,41,123,102,111,114,40,118,97,114,32,116,61,48,44,101,61,48,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,101,60,110,59,101,43,43,41,116,43,61,97,114,103,117,109,101,110,116,115,91,101,93,46,108,101,110,103,116,104,59,118,97,114,32,114,61,65,114,114,97,121,40,116,41,44,105,61,48,59,102,111,114,40,101,61,48,59,101,60,110,59,101,43,43,41,102,111,114,40,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,91,101,93,44,97,61,48,44,115,61,111,46,108,101,110,103,116,104,59,97,60,115,59,97,43,43,44,105,43,43,41,114,91,105,93,61,111,91,97,93,59,114,101,116,117,114,110,32,114,125,118,97,114,32,98,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,44,121,61,98,63,119,105,110,100,111,119,46,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,58,34,34,44,119,61,33,33,98,38,38,33,33,40,34,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,34,105,110,32,119,105,110,100,111,119,41,44,95,61,47,77,83,73,69,124,84,114,105,100,101,110,116,124,87,105,110,100,111,119,115,32,80,104,111,110,101,124,69,100,103,101,47,46,116,101,115,116,40,121,41,44,120,61,33,33,98,38,38,33,33,40,34,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,34,105,110,32,100,111,99,117,109,101,110,116,41,44,79,61,34,119,105,100,116,104,34,44,83,61,34,104,101,105,103,104,116,34,59,102,117,110,99,116,105,111,110,32,107,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,101,41,124,124,34,34,125,102,117,110,99,116,105,111,110,32,67,40,116,41,123,114,101,116,117,114,110,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,80,40,116,44,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,34,100,97,116,97,45,34,41,44,33,33,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,101,43,34,119,105,100,116,104,34,41,125,102,117,110,99,116,105,111,110,32,84,40,116,41,123,114,101,116,117,114,110,34,108,111,97,100,105,110,103,34,105,110,32,116,38,38,34,108,97,122,121,34,61,61,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,108,111,97,100,105,110,103,34,41,125,102,117,110,99,116,105,111,110,32,106,40,116,44,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,34,100,97,116,97,45,34,41,44,33,33,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,101,43,34,115,107,105,112,34,41,125,102,117,110,99,116,105,111,110,32,69,40,116,44,101,44,110,41,123,120,63,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,44,110,44,33,49,41,58,116,46,97,116,116,97,99,104,69,118,101,110,116,63,116,46,97,116,116,97,99,104,69,118,101,110,116,40,34,111,110,34,43,101,44,110,41,58,116,91,34,111,110,34,43,101,93,61,110,125,102,117,110,99,116,105,111,110,32,68,40,116,44,101,44,110,41,123,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,63,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,44,110,44,33,49,41,58,116,46,100,101,116,97,99,104,69,118,101,110,116,63,116,46,100,101,116,97,99,104,69,118,101,110,116,40,34,111,110,34,43,101,44,110,41,58,116,91,34,111,110,34,43,101,93,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,65,40,116,41,123,114,101,116,117,114,110,32,77,40,116,44,34,87,105,100,116,104,34,41,125,102,117,110,99,116,105,111,110,32,76,40,116,41,123,114,101,116,117,114,110,32,77,40,116,44,34,72,101,105,103,104,116,34,41,125,102,117,110,99,116,105,111,110,32,73,40,116,41,123,114,101,116,117,114,110,40,119,63,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,41,58,116,46,99,117,114,114,101,110,116,83,116,121,108,101,41,124,124,123,125,125,102,117,110,99,116,105,111,110,32,77,40,116,44,101,41,123,118,97,114,32,110,61,116,91,34,99,108,105,101,110,116,34,43,101,93,124,124,116,91,34,111,102,102,115,101,116,34,43,101,93,59,114,101,116,117,114,110,32,112,97,114,115,101,70,108,111,97,116,40,110,124,124,73,40,116,41,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,124,124,48,125,102,117,110,99,116,105,111,110,32,36,40,116,44,101,44,110,41,123,118,97,114,32,114,61,67,40,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,109,40,91,34,91,34,43,110,43,34,115,107,105,112,93,32,91,34,43,110,43,34,119,105,100,116,104,93,34,93,44,101,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,34,91,34,43,110,43,34,115,107,105,112,93,32,34,43,116,44,116,43,34,91,34,43,110,43,34,115,107,105,112,93,34,44,34,91,34,43,110,43,34,119,105,100,116,104,93,32,34,43,116,93,46,106,111,105,110,40,34,44,32,34,41,125,41,41,41,46,106,111,105,110,40,34,44,32,34,41,41,41,59,114,101,116,117,114,110,32,67,40,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,34,43,110,43,34,119,105,100,116,104,93,44,32,34,43,101,46,106,111,105,110,40,34,44,32,34,41,41,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,45,49,61,61,61,114,46,105,110,100,101,120,79,102,40,116,41,125,41,41,125,118,97,114,32,70,61,91,93,59,102,117,110,99,116,105,111,110,32,82,40,116,44,101,41,123,33,70,46,108,101,110,103,116,104,38,38,69,40,119,105,110,100,111,119,44,34,114,101,115,105,122,101,34,44,122,41,44,116,46,95,95,80,82,69,70,73,88,95,95,61,101,44,70,46,112,117,115,104,40,116,41,44,66,40,116,41,125,102,117,110,99,116,105,111,110,32,78,40,116,44,101,41,123,118,97,114,32,110,61,70,46,105,110,100,101,120,79,102,40,116,41,59,105,102,40,33,40,110,60,48,41,41,123,118,97,114,32,114,61,107,40,116,44,101,43,34,102,105,120,101,100,34,41,59,100,101,108,101,116,101,32,116,46,95,95,80,82,69,70,73,88,95,95,44,116,46,115,116,121,108,101,91,114,61,61,61,83,63,79,58,83,93,61,34,34,44,70,46,115,112,108,105,99,101,40,110,44,49,41,44,33,70,46,108,101,110,103,116,104,38,38,68,40,119,105,110,100,111,119,44,34,114,101,115,105,122,101,34,44,122,41,125,125,102,117,110,99,116,105,111,110,32,66,40,116,44,101,41,123,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,34,100,97,116,97,45,34,41,59,118,97,114,32,110,61,116,46,95,95,80,82,69,70,73,88,95,95,124,124,101,44,114,61,112,97,114,115,101,73,110,116,40,107,40,116,44,34,34,43,110,43,79,41,44,49,48,41,124,124,48,44,105,61,112,97,114,115,101,73,110,116,40,107,40,116,44,34,34,43,110,43,83,41,44,49,48,41,124,124,48,44,111,61,107,40,116,44,110,43,34,102,105,120,101,100,34,41,59,105,102,40,111,61,61,61,83,41,123,118,97,114,32,97,61,76,40,116,41,124,124,105,59,116,46,115,116,121,108,101,91,79,93,61,114,47,105,42,97,43,34,112,120,34,125,101,108,115,101,123,97,61,65,40,116,41,124,124,114,59,116,46,115,116,121,108,101,91,83,93,61,105,47,114,42,97,43,34,112,120,34,125,125,102,117,110,99,116,105,111,110,32,122,40,41,123,70,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,66,40,116,41,125,41,41,125,118,97,114,32,86,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,110,41,123,118,111,105,100,32,48,61,61,61,110,38,38,40,110,61,123,125,41,59,118,97,114,32,114,61,116,46,99,97,108,108,40,116,104,105,115,41,124,124,116,104,105,115,59,114,101,116,117,114,110,32,114,46,105,115,82,101,97,100,121,61,33,49,44,114,46,105,115,80,114,101,82,101,97,100,121,61,33,49,44,114,46,104,97,115,68,97,116,97,83,105,122,101,61,33,49,44,114,46,104,97,115,76,111,97,100,105,110,103,61,33,49,44,114,46,105,115,83,107,105,112,61,33,49,44,114,46,111,110,67,104,101,99,107,61,102,117,110,99,116,105,111,110,40,116,41,123,114,46,99,108,101,97,114,40,41,44,116,38,38,34,101,114,114,111,114,34,61,61,61,116,46,116,121,112,101,38,38,114,46,111,110,69,114,114,111,114,40,114,46,101,108,101,109,101,110,116,41,59,118,97,114,32,101,61,33,114,46,104,97,115,68,97,116,97,83,105,122,101,38,38,33,114,46,104,97,115,76,111,97,100,105,110,103,59,114,46,111,110,82,101,97,100,121,40,101,41,125,44,114,46,111,112,116,105,111,110,115,61,103,40,123,112,114,101,102,105,120,58,34,100,97,116,97,45,34,125,44,110,41,44,114,46,101,108,101,109,101,110,116,61,101,44,114,46,104,97,115,68,97,116,97,83,105,122,101,61,80,40,101,44,114,46,111,112,116,105,111,110,115,46,112,114,101,102,105,120,41,44,114,46,104,97,115,76,111,97,100,105,110,103,61,84,40,101,41,44,114,46,105,115,83,107,105,112,61,106,40,114,46,101,108,101,109,101,110,116,41,44,114,125,118,40,101,44,116,41,59,118,97,114,32,110,61,101,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,110,46,99,104,101,99,107,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,107,105,112,124,124,33,116,104,105,115,46,99,104,101,99,107,69,108,101,109,101,110,116,40,41,63,40,116,104,105,115,46,111,110,65,108,114,101,97,100,121,82,101,97,100,121,40,33,48,41,44,33,49,41,58,40,116,104,105,115,46,104,97,115,68,97,116,97,83,105,122,101,38,38,82,40,116,104,105,115,46,101,108,101,109,101,110,116,44,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,102,105,120,41,44,40,116,104,105,115,46,104,97,115,68,97,116,97,83,105,122,101,124,124,116,104,105,115,46,104,97,115,76,111,97,100,105,110,103,41,38,38,116,104,105,115,46,111,110,65,108,114,101,97,100,121,80,114,101,82,101,97,100,121,40,41,44,33,48,41,125,44,110,46,97,100,100,69,118,101,110,116,115,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,116,104,105,115,46,101,108,101,109,101,110,116,59,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,86,69,78,84,83,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,69,40,101,44,110,44,116,46,111,110,67,104,101,99,107,41,125,41,41,125,44,110,46,99,108,101,97,114,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,116,104,105,115,46,101,108,101,109,101,110,116,59,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,86,69,78,84,83,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,68,40,101,44,110,44,116,46,111,110,67,104,101,99,107,41,125,41,41,44,116,104,105,115,46,114,101,109,111,118,101,65,117,116,111,83,105,122,101,114,40,41,125,44,110,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,101,97,114,40,41,44,116,104,105,115,46,111,102,102,40,41,125,44,110,46,114,101,109,111,118,101,65,117,116,111,83,105,122,101,114,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,104,97,115,68,97,116,97,83,105,122,101,41,123,118,97,114,32,116,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,102,105,120,59,78,40,116,104,105,115,46,101,108,101,109,101,110,116,44,116,41,125,125,44,110,46,111,110,69,114,114,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,116,114,105,103,103,101,114,40,34,101,114,114,111,114,34,44,123,101,108,101,109,101,110,116,58,116,104,105,115,46,101,108,101,109,101,110,116,44,116,97,114,103,101,116,58,116,125,41,125,44,110,46,111,110,80,114,101,82,101,97,100,121,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,124,124,40,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,61,33,48,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,112,114,101,82,101,97,100,121,34,44,123,101,108,101,109,101,110,116,58,116,104,105,115,46,101,108,101,109,101,110,116,44,104,97,115,76,111,97,100,105,110,103,58,116,104,105,115,46,104,97,115,76,111,97,100,105,110,103,44,105,115,83,107,105,112,58,116,104,105,115,46,105,115,83,107,105,112,125,41,41,125,44,110,46,111,110,82,101,97,100,121,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,105,115,82,101,97,100,121,124,124,40,116,61,33,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,38,38,116,44,116,38,38,40,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,61,33,48,41,44,116,104,105,115,46,114,101,109,111,118,101,65,117,116,111,83,105,122,101,114,40,41,44,116,104,105,115,46,105,115,82,101,97,100,121,61,33,48,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,114,101,97,100,121,34,44,123,101,108,101,109,101,110,116,58,116,104,105,115,46,101,108,101,109,101,110,116,44,119,105,116,104,80,114,101,82,101,97,100,121,58,116,44,104,97,115,76,111,97,100,105,110,103,58,116,104,105,115,46,104,97,115,76,111,97,100,105,110,103,44,105,115,83,107,105,112,58,116,104,105,115,46,105,115,83,107,105,112,125,41,41,125,44,110,46,111,110,65,108,114,101,97,100,121,69,114,114,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,111,110,69,114,114,111,114,40,116,41,125,41,41,125,44,110,46,111,110,65,108,114,101,97,100,121,80,114,101,82,101,97,100,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,111,110,80,114,101,82,101,97,100,121,40,41,125,41,41,125,44,110,46,111,110,65,108,114,101,97,100,121,82,101,97,100,121,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,111,110,82,101,97,100,121,40,116,41,125,41,41,125,44,101,46,69,86,69,78,84,83,61,91,93,44,101,125,40,97,41,44,72,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,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,118,40,101,44,116,41,59,118,97,114,32,110,61,101,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,110,46,115,101,116,72,97,115,76,111,97,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,104,97,115,76,111,97,100,105,110,103,61,116,125,44,110,46,99,104,101,99,107,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,107,105,112,63,40,116,104,105,115,46,111,110,65,108,114,101,97,100,121,82,101,97,100,121,40,33,48,41,44,33,49,41,58,40,116,104,105,115,46,104,97,115,68,97,116,97,83,105,122,101,63,40,82,40,116,104,105,115,46,101,108,101,109,101,110,116,44,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,102,105,120,41,44,116,104,105,115,46,111,110,65,108,114,101,97,100,121,80,114,101,82,101,97,100,121,40,41,41,58,116,104,105,115,46,116,114,105,103,103,101,114,40,34,114,101,113,117,101,115,116,67,104,105,108,100,114,101,110,34,41,44,33,48,41,125,44,110,46,99,104,101,99,107,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,33,48,125,44,110,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,101,97,114,40,41,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,114,101,113,117,101,115,116,68,101,115,116,114,111,121,34,41,44,116,104,105,115,46,111,102,102,40,41,125,44,110,46,111,110,65,108,114,101,97,100,121,80,114,101,82,101,97,100,121,61,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,111,116,111,116,121,112,101,46,111,110,65,108,114,101,97,100,121,80,114,101,82,101,97,100,121,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,114,101,113,101,117,115,116,82,101,97,100,121,67,104,105,108,100,114,101,110,34,41,125,44,101,46,69,86,69,78,84,83,61,91,93,44,101,125,40,86,41,44,85,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,101,41,123,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,123,125,41,59,118,97,114,32,110,61,116,46,99,97,108,108,40,116,104,105,115,41,124,124,116,104,105,115,59,114,101,116,117,114,110,32,110,46,114,101,97,100,121,67,111,117,110,116,61,48,44,110,46,112,114,101,82,101,97,100,121,67,111,117,110,116,61,48,44,110,46,116,111,116,97,108,67,111,117,110,116,61,48,44,110,46,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,61,48,44,110,46,105,115,80,114,101,82,101,97,100,121,79,118,101,114,61,33,48,44,110,46,101,108,101,109,101,110,116,73,110,102,111,115,61,91,93,44,110,46,111,112,116,105,111,110,115,61,103,40,123,108,111,97,100,101,114,115,58,123,125,44,112,114,101,102,105,120,58,34,100,97,116,97,45,34,125,44,101,41,44,110,125,118,40,101,44,116,41,59,118,97,114,32,110,61,101,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,110,46,99,104,101,99,107,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,111,112,116,105,111,110,115,46,112,114,101,102,105,120,59,116,104,105,115,46,99,108,101,97,114,40,41,44,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,61,67,40,116,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,118,97,114,32,105,61,101,46,103,101,116,76,111,97,100,101,114,40,116,44,123,112,114,101,102,105,120,58,110,125,41,59,114,101,116,117,114,110,32,105,46,99,104,101,99,107,40,41,44,105,46,111,110,40,34,101,114,114,111,114,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,111,110,69,114,114,111,114,40,114,44,116,46,116,97,114,103,101,116,41,125,41,41,46,111,110,40,34,112,114,101,82,101,97,100,121,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,101,46,101,108,101,109,101,110,116,73,110,102,111,115,91,114,93,59,110,46,104,97,115,76,111,97,100,105,110,103,61,116,46,104,97,115,76,111,97,100,105,110,103,44,110,46,105,115,83,107,105,112,61,116,46,105,115,83,107,105,112,59,118,97,114,32,105,61,101,46,99,104,101,99,107,80,114,101,82,101,97,100,121,40,114,41,59,101,46,111,110,80,114,101,82,101,97,100,121,69,108,101,109,101,110,116,40,114,41,44,105,38,38,101,46,111,110,80,114,101,82,101,97,100,121,40,41,125,41,41,46,111,110,40,34,114,101,97,100,121,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,119,105,116,104,80,114,101,82,101,97,100,121,44,105,61,116,46,104,97,115,76,111,97,100,105,110,103,44,111,61,116,46,105,115,83,107,105,112,44,97,61,101,46,101,108,101,109,101,110,116,73,110,102,111,115,91,114,93,59,97,46,104,97,115,76,111,97,100,105,110,103,61,105,44,97,46,105,115,83,107,105,112,61,111,59,118,97,114,32,115,61,110,38,38,101,46,99,104,101,99,107,80,114,101,82,101,97,100,121,40,114,41,44,99,61,101,46,99,104,101,99,107,82,101,97,100,121,40,114,41,59,110,38,38,101,46,111,110,80,114,101,82,101,97,100,121,69,108,101,109,101,110,116,40,114,41,44,101,46,111,110,82,101,97,100,121,69,108,101,109,101,110,116,40,114,41,44,115,38,38,101,46,111,110,80,114,101,82,101,97,100,121,40,41,44,99,38,38,101,46,111,110,82,101,97,100,121,40,41,125,41,41,44,123,108,111,97,100,101,114,58,105,44,101,108,101,109,101,110,116,58,116,44,104,97,115,76,111,97,100,105,110,103,58,33,49,44,104,97,115,69,114,114,111,114,58,33,49,44,105,115,80,114,101,82,101,97,100,121,58,33,49,44,105,115,82,101,97,100,121,58,33,49,44,105,115,83,107,105,112,58,33,49,125,125,41,41,59,118,97,114,32,114,61,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,61,114,44,114,124,124,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,111,110,80,114,101,82,101,97,100,121,40,41,44,101,46,111,110,82,101,97,100,121,40,41,125,41,41,44,116,104,105,115,125,44,110,46,103,101,116,84,111,116,97,108,67,111,117,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,111,116,97,108,67,111,117,110,116,125,44,110,46,105,115,80,114,101,82,101,97,100,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,101,108,101,109,101,110,116,73,110,102,111,115,46,101,118,101,114,121,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,105,115,80,114,101,82,101,97,100,121,125,41,41,125,44,110,46,105,115,82,101,97,100,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,101,108,101,109,101,110,116,73,110,102,111,115,46,101,118,101,114,121,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,105,115,82,101,97,100,121,125,41,41,125,44,110,46,104,97,115,69,114,114,111,114,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,111,116,97,108,69,114,114,111,114,67,111,117,110,116,62,48,125,44,110,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,79,118,101,114,61,33,49,44,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,61,48,44,116,104,105,115,46,112,114,101,82,101,97,100,121,67,111,117,110,116,61,48,44,116,104,105,115,46,114,101,97,100,121,67,111,117,110,116,61,48,44,116,104,105,115,46,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,61,48,44,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,33,116,46,105,115,82,101,97,100,121,38,38,116,46,108,111,97,100,101,114,38,38,116,46,108,111,97,100,101,114,46,100,101,115,116,114,111,121,40,41,125,41,41,44,116,104,105,115,46,101,108,101,109,101,110,116,73,110,102,111,115,61,91,93,125,44,110,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,101,97,114,40,41,44,116,104,105,115,46,111,102,102,40,41,125,44,110,46,103,101,116,76,111,97,100,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,44,114,61,116,46,116,97,103,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,105,61,116,104,105,115,46,111,112,116,105,111,110,115,46,108,111,97,100,101,114,115,44,111,61,79,98,106,101,99,116,46,107,101,121,115,40,105,41,59,105,102,40,105,91,114,93,41,114,101,116,117,114,110,32,110,101,119,32,105,91,114,93,40,116,44,101,41,59,118,97,114,32,97,61,110,101,119,32,72,40,116,44,101,41,44,115,61,67,40,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,111,46,106,111,105,110,40,34,44,32,34,41,41,41,59,97,46,115,101,116,72,97,115,76,111,97,100,105,110,103,40,115,46,115,111,109,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,84,40,116,41,125,41,41,41,59,118,97,114,32,99,61,33,49,44,117,61,116,104,105,115,46,99,108,111,110,101,40,41,46,111,110,40,34,101,114,114,111,114,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,97,46,111,110,69,114,114,111,114,40,116,46,116,97,114,103,101,116,41,125,41,41,46,111,110,40,34,114,101,97,100,121,34,44,40,102,117,110,99,116,105,111,110,40,41,123,97,46,111,110,82,101,97,100,121,40,99,41,125,41,41,59,114,101,116,117,114,110,32,97,46,111,110,40,34,114,101,113,117,101,115,116,67,104,105,108,100,114,101,110,34,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,36,40,116,44,111,44,110,46,111,112,116,105,111,110,115,46,112,114,101,102,105,120,41,59,117,46,99,104,101,99,107,40,101,41,46,111,110,40,34,112,114,101,82,101,97,100,121,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,99,61,116,46,105,115,82,101,97,100,121,44,99,124,124,97,46,111,110,80,114,101,82,101,97,100,121,40,41,125,41,41,125,41,41,46,111,110,40,34,114,101,113,101,117,115,116,82,101,97,100,121,67,104,105,108,100,114,101,110,34,44,40,102,117,110,99,116,105,111,110,40,41,123,117,46,99,104,101,99,107,40,115,41,125,41,41,46,111,110,40,34,114,101,113,117,101,115,116,68,101,115,116,114,111,121,34,44,40,102,117,110,99,116,105,111,110,40,41,123,117,46,100,101,115,116,114,111,121,40,41,125,41,41,44,97,125,44,110,46,99,108,111,110,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,101,40,103,40,123,125,44,116,104,105,115,46,111,112,116,105,111,110,115,41,41,125,44,110,46,99,104,101,99,107,80,114,101,82,101,97,100,121,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,101,108,101,109,101,110,116,73,110,102,111,115,91,116,93,46,105,115,80,114,101,82,101,97,100,121,61,33,48,44,43,43,116,104,105,115,46,112,114,101,82,101,97,100,121,67,111,117,110,116,44,33,40,116,104,105,115,46,112,114,101,82,101,97,100,121,67,111,117,110,116,60,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,41,125,44,110,46,99,104,101,99,107,82,101,97,100,121,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,101,108,101,109,101,110,116,73,110,102,111,115,91,116,93,46,105,115,82,101,97,100,121,61,33,48,44,43,43,116,104,105,115,46,114,101,97,100,121,67,111,117,110,116,44,33,40,116,104,105,115,46,114,101,97,100,121,67,111,117,110,116,60,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,41,125,44,110,46,111,110,69,114,114,111,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,101,108,101,109,101,110,116,73,110,102,111,115,91,116,93,59,110,46,104,97,115,69,114,114,111,114,61,33,48,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,101,114,114,111,114,34,44,123,101,108,101,109,101,110,116,58,110,46,101,108,101,109,101,110,116,44,105,110,100,101,120,58,116,44,116,97,114,103,101,116,58,101,44,101,114,114,111,114,67,111,117,110,116,58,116,104,105,115,46,103,101,116,69,114,114,111,114,67,111,117,110,116,40,41,44,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,58,43,43,116,104,105,115,46,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,125,41,125,44,110,46,111,110,80,114,101,82,101,97,100,121,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,46,101,108,101,109,101,110,116,73,110,102,111,115,91,116,93,59,116,104,105,115,46,116,114,105,103,103,101,114,40,34,112,114,101,82,101,97,100,121,69,108,101,109,101,110,116,34,44,123,101,108,101,109,101,110,116,58,101,46,101,108,101,109,101,110,116,44,105,110,100,101,120,58,116,44,112,114,101,82,101,97,100,121,67,111,117,110,116,58,116,104,105,115,46,112,114,101,82,101,97,100,121,67,111,117,110,116,44,114,101,97,100,121,67,111,117,110,116,58,116,104,105,115,46,114,101,97,100,121,67,111,117,110,116,44,116,111,116,97,108,67,111,117,110,116,58,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,44,105,115,80,114,101,82,101,97,100,121,58,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,40,41,44,105,115,82,101,97,100,121,58,116,104,105,115,46,105,115,82,101,97,100,121,40,41,44,104,97,115,76,111,97,100,105,110,103,58,101,46,104,97,115,76,111,97,100,105,110,103,44,105,115,83,107,105,112,58,101,46,105,115,83,107,105,112,125,41,125,44,110,46,111,110,80,114,101,82,101,97,100,121,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,79,118,101,114,61,33,48,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,112,114,101,82,101,97,100,121,34,44,123,114,101,97,100,121,67,111,117,110,116,58,116,104,105,115,46,114,101,97,100,121,67,111,117,110,116,44,116,111,116,97,108,67,111,117,110,116,58,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,44,105,115,82,101,97,100,121,58,116,104,105,115,46,105,115,82,101,97,100,121,40,41,44,104,97,115,76,111,97,100,105,110,103,58,116,104,105,115,46,104,97,115,76,111,97,100,105,110,103,40,41,125,41,125,44,110,46,111,110,82,101,97,100,121,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,46,101,108,101,109,101,110,116,73,110,102,111,115,91,116,93,59,116,104,105,115,46,116,114,105,103,103,101,114,40,34,114,101,97,100,121,69,108,101,109,101,110,116,34,44,123,105,110,100,101,120,58,116,44,101,108,101,109,101,110,116,58,101,46,101,108,101,109,101,110,116,44,104,97,115,69,114,114,111,114,58,101,46,104,97,115,69,114,114,111,114,44,101,114,114,111,114,67,111,117,110,116,58,116,104,105,115,46,103,101,116,69,114,114,111,114,67,111,117,110,116,40,41,44,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,58,116,104,105,115,46,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,44,112,114,101,82,101,97,100,121,67,111,117,110,116,58,116,104,105,115,46,112,114,101,82,101,97,100,121,67,111,117,110,116,44,114,101,97,100,121,67,111,117,110,116,58,116,104,105,115,46,114,101,97,100,121,67,111,117,110,116,44,116,111,116,97,108,67,111,117,110,116,58,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,44,105,115,80,114,101,82,101,97,100,121,58,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,40,41,44,105,115,82,101,97,100,121,58,116,104,105,115,46,105,115,82,101,97,100,121,40,41,44,104,97,115,76,111,97,100,105,110,103,58,101,46,104,97,115,76,111,97,100,105,110,103,44,105,115,80,114,101,82,101,97,100,121,79,118,101,114,58,116,104,105,115,46,105,115,80,114,101,82,101,97,100,121,79,118,101,114,44,105,115,83,107,105,112,58,101,46,105,115,83,107,105,112,125,41,125,44,110,46,111,110,82,101,97,100,121,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,116,114,105,103,103,101,114,40,34,114,101,97,100,121,34,44,123,101,114,114,111,114,67,111,117,110,116,58,116,104,105,115,46,103,101,116,69,114,114,111,114,67,111,117,110,116,40,41,44,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,58,116,104,105,115,46,116,111,116,97,108,69,114,114,111,114,67,111,117,110,116,44,116,111,116,97,108,67,111,117,110,116,58,116,104,105,115,46,116,111,116,97,108,67,111,117,110,116,125,41,125,44,110,46,103,101,116,69,114,114,111,114,67,111,117,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,73,110,102,111,115,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,104,97,115,69,114,114,111,114,125,41,41,46,108,101,110,103,116,104,125,44,110,46,104,97,115,76,111,97,100,105,110,103,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,73,110,102,111,115,46,115,111,109,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,104,97,115,76,111,97,100,105,110,103,125,41,41,125,44,101,125,40,97,41,44,87,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,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,118,40,101,44,116,41,59,118,97,114,32,110,61,101,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,110,46,99,104,101,99,107,69,108,101,109,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,101,108,101,109,101,110,116,44,101,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,41,59,105,102,40,116,46,99,111,109,112,108,101,116,101,41,123,105,102,40,101,41,114,101,116,117,114,110,32,116,46,110,97,116,117,114,97,108,87,105,100,116,104,124,124,116,104,105,115,46,111,110,65,108,114,101,97,100,121,69,114,114,111,114,40,116,41,44,33,49,59,116,104,105,115,46,111,110,65,108,114,101,97,100,121,80,114,101,82,101,97,100,121,40,41,125,114,101,116,117,114,110,32,116,104,105,115,46,97,100,100,69,118,101,110,116,115,40,41,44,95,38,38,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,101,41,44,33,48,125,44,101,46,69,86,69,78,84,83,61,91,34,108,111,97,100,34,44,34,101,114,114,111,114,34,93,44,101,125,40,86,41,44,71,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,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,118,40,101,44,116,41,59,118,97,114,32,110,61,101,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,110,46,99,104,101,99,107,69,108,101,109,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,101,108,101,109,101,110,116,59,114,101,116,117,114,110,33,40,116,46,114,101,97,100,121,83,116,97,116,101,62,61,49,41,38,38,40,116,46,101,114,114,111,114,63,40,116,104,105,115,46,111,110,65,108,114,101,97,100,121,69,114,114,111,114,40,116,41,44,33,49,41,58,40,116,104,105,115,46,97,100,100,69,118,101,110,116,115,40,41,44,33,48,41,41,125,44,101,46,69,86,69,78,84,83,61,91,34,108,111,97,100,101,100,109,101,116,97,100,97,116,97,34,44,34,101,114,114,111,114,34,93,44,101,125,40,86,41,44,113,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,123,125,41,44,116,46,99,97,108,108,40,116,104,105,115,44,103,40,123,108,111,97,100,101,114,115,58,123,105,109,103,58,87,44,118,105,100,101,111,58,71,125,125,44,101,41,41,124,124,116,104,105,115,125,114,101,116,117,114,110,32,118,40,101,44,116,41,44,101,125,40,85,41,44,89,61,113,44,75,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,75,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,123,95,95,112,114,111,116,111,95,95,58,91,93,125,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,38,38,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,95,95,112,114,111,116,111,95,95,61,101,125,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,110,41,38,38,40,116,91,110,93,61,101,91,110,93,41,125,44,75,40,116,44,101,41,125,59,102,117,110,99,116,105,111,110,32,88,40,116,44,101,41,123,102,117,110,99,116,105,111,110,32,110,40,41,123,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,61,116,125,75,40,116,44,101,41,44,116,46,112,114,111,116,111,116,121,112,101,61,110,117,108,108,61,61,61,101,63,79,98,106,101,99,116,46,99,114,101,97,116,101,40,101,41,58,40,110,46,112,114,111,116,111,116,121,112,101,61,101,46,112,114,111,116,111,116,121,112,101,44,110,101,119,32,110,41,125,118,97,114,32,90,44,74,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,74,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,44,110,61,49,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,102,111,114,40,118,97,114,32,105,32,105,110,32,101,61,97,114,103,117,109,101,110,116,115,91,110,93,44,101,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,101,44,105,41,38,38,40,116,91,105,93,61,101,91,105,93,41,59,114,101,116,117,114,110,32,116,125,44,74,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,59,102,117,110,99,116,105,111,110,32,81,40,41,123,102,111,114,40,118,97,114,32,116,61,48,44,101,61,48,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,101,60,110,59,101,43,43,41,116,43,61,97,114,103,117,109,101,110,116,115,91,101,93,46,108,101,110,103,116,104,59,118,97,114,32,114,61,65,114,114,97,121,40,116,41,44,105,61,48,59,102,111,114,40,101,61,48,59,101,60,110,59,101,43,43,41,102,111,114,40,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,91,101,93,44,97,61,48,44,115,61,111,46,108,101,110,103,116,104,59,97,60,115,59,97,43,43,44,105,43,43,41,114,91,105,93,61,111,91,97,93,59,114,101,116,117,114,110,32,114,125,90,61,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,123,100,111,99,117,109,101,110,116,58,123,125,44,110,97,118,105,103,97,116,111,114,58,123,117,115,101,114,65,103,101,110,116,58,34,34,125,125,58,119,105,110,100,111,119,59,118,97,114,32,116,116,44,101,116,61,90,46,100,111,99,117,109,101,110,116,44,110,116,61,90,46,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,44,114,116,61,33,33,40,34,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,34,105,110,32,90,41,44,105,116,61,33,33,40,34,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,34,105,110,32,101,116,41,44,111,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,33,49,59,116,114,121,123,105,116,38,38,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,38,38,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,116,101,115,116,34,44,40,102,117,110,99,116,105,111,110,40,41,123,125,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,34,112,97,115,115,105,118,101,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,116,61,33,48,125,125,41,41,125,99,97,116,99,104,40,101,41,123,125,114,101,116,117,114,110,32,116,125,40,41,44,97,116,61,40,47,77,83,73,69,124,84,114,105,100,101,110,116,124,87,105,110,100,111,119,115,32,80,104,111,110,101,124,69,100,103,101,47,46,116,101,115,116,40,110,116,41,44,47,105,80,104,111,110,101,124,105,80,97,100,47,46,116,101,115,116,40,110,116,41,41,44,115,116,61,47,65,110,100,114,111,105,100,32,50,92,46,47,46,116,101,115,116,40,110,116,41,44,99,116,61,34,95,101,103,45,105,110,102,105,110,105,116,101,103,114,105,100,45,99,111,110,116,97,105,110,101,114,95,34,44,117,116,61,34,95,101,103,45,105,110,102,105,110,105,116,101,103,114,105,100,45,105,103,110,111,114,101,95,34,44,108,116,61,34,95,73,78,70,73,78,73,84,69,71,82,73,68,95,84,82,65,78,83,73,84,73,79,78,34,44,102,116,61,34,118,101,114,116,105,99,97,108,34,44,104,116,61,34,104,111,114,105,122,111,110,116,97,108,34,44,100,116,61,45,49,101,53,44,112,116,61,34,100,97,116,97,45,103,114,111,117,112,107,101,121,34,44,118,116,61,123,105,116,101,109,83,101,108,101,99,116,111,114,58,34,42,34,44,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,58,33,49,44,116,104,114,101,115,104,111,108,100,58,49,48,48,44,105,115,69,113,117,97,108,83,105,122,101,58,33,49,44,105,115,67,111,110,115,116,97,110,116,83,105,122,101,58,33,49,44,117,115,101,82,101,99,121,99,108,101,58,33,48,44,104,111,114,105,122,111,110,116,97,108,58,33,49,44,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,58,48,44,117,115,101,70,105,116,58,33,48,44,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,58,34,100,97,116,97,45,34,44,114,101,110,100,101,114,69,120,116,101,114,110,97,108,58,33,49,44,114,101,115,105,122,101,68,101,98,111,117,110,99,101,58,49,48,48,44,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,58,48,44,112,101,114,99,101,110,116,97,103,101,58,33,49,44,117,115,101,79,102,102,115,101,116,58,33,49,125,44,103,116,61,123,104,111,114,105,122,111,110,116,97,108,58,33,49,44,109,97,114,103,105,110,58,48,125,44,109,116,61,110,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,98,116,61,40,47,109,111,98,105,124,105,111,115,124,97,110,100,114,111,105,100,47,46,116,101,115,116,40,109,116,41,44,123,83,84,65,82,84,58,34,115,116,97,114,116,34,44,67,69,78,84,69,82,58,34,99,101,110,116,101,114,34,44,69,78,68,58,34,101,110,100,34,44,74,85,83,84,73,70,89,58,34,106,117,115,116,105,102,121,34,125,41,44,121,116,61,48,44,119,116,61,49,44,95,116,61,50,44,120,116,61,52,44,79,116,61,47,97,112,112,108,101,119,101,98,107,105,116,92,47,40,91,92,100,124,46,93,42,41,47,103,46,101,120,101,99,40,109,116,41,44,83,116,61,79,116,38,38,112,97,114,115,101,73,110,116,40,79,116,91,49,93,44,49,48,41,124,124,48,44,107,116,61,83,116,38,38,83,116,60,53,51,55,44,67,116,61,91,34,99,111,110,116,101,110,116,34,44,34,103,114,111,117,112,75,101,121,34,44,34,105,116,101,109,75,101,121,34,44,34,111,114,103,83,105,122,101,34,44,34,109,111,117,110,116,101,100,34,44,34,112,114,101,118,82,101,99,116,34,44,34,114,101,99,116,34,44,34,115,105,122,101,34,93,44,80,116,61,40,116,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,116,114,97,110,115,105,116,105,111,110,101,110,100,58,34,34,44,119,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,69,110,100,58,34,45,119,101,98,107,105,116,45,34,44,77,83,84,114,97,110,115,105,116,105,111,110,69,110,100,58,34,45,109,115,45,34,44,111,84,114,97,110,115,105,116,105,111,110,69,110,100,58,34,45,111,45,34,44,109,111,122,84,114,97,110,115,105,116,105,111,110,69,110,100,58,34,45,109,111,122,45,34,125,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,41,123,118,97,114,32,110,61,116,91,101,93,59,105,102,40,34,111,110,34,43,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,105,110,32,90,41,114,101,116,117,114,110,91,110,43,34,116,114,97,110,115,102,111,114,109,34,44,110,43,34,116,114,97,110,115,105,116,105,111,110,34,44,101,93,125,114,101,116,117,114,110,91,93,125,40,41,44,116,116,91,48,93,41,44,84,116,61,116,116,91,49,93,44,106,116,61,116,116,91,50,93,44,69,116,61,91,34,97,112,112,101,110,100,34,44,34,112,114,101,112,101,110,100,34,44,34,105,109,97,103,101,69,114,114,111,114,34,44,34,99,104,97,110,103,101,34,44,34,108,97,121,111,117,116,67,111,109,112,108,101,116,101,34,93,44,68,116,61,123,103,101,116,76,111,97,100,105,110,103,66,97,114,58,33,48,44,103,101,116,73,116,101,109,58,33,48,44,103,101,116,73,116,101,109,115,58,33,48,44,108,97,121,111,117,116,58,33,48,44,103,101,116,71,114,111,117,112,75,101,121,115,58,33,48,44,103,101,116,83,116,97,116,117,115,58,33,48,44,115,101,116,83,116,97,116,117,115,58,33,48,44,105,115,80,114,111,99,101,115,115,105,110,103,58,33,48,44,115,116,97,114,116,76,111,97,100,105,110,103,58,33,48,44,101,110,100,76,111,97,100,105,110,103,58,33,48,44,105,115,76,111,97,100,105,110,103,58,33,48,44,117,112,100,97,116,101,73,116,101,109,58,33,48,44,117,112,100,97,116,101,73,116,101,109,115,58,33,48,44,109,111,118,101,84,111,58,33,48,125,59,102,117,110,99,116,105,111,110,32,65,116,40,116,41,123,118,97,114,32,101,61,91,93,59,105,102,40,116,41,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,114,61,48,59,114,60,110,59,114,43,43,41,101,46,112,117,115,104,40,116,91,114,93,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,76,116,40,116,41,123,114,101,116,117,114,110,32,116,46,109,97,116,99,104,40,47,94,60,40,91,65,45,122,93,43,41,92,115,42,40,91,94,62,93,42,41,62,47,41,125,102,117,110,99,116,105,111,110,32,73,116,40,116,44,101,41,123,118,97,114,32,110,59,105,102,40,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,33,49,41,44,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,123,118,97,114,32,114,61,76,116,40,116,41,59,105,102,40,114,41,123,118,97,114,32,105,61,101,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,105,46,105,110,110,101,114,72,84,77,76,61,116,44,110,61,105,46,99,104,105,108,100,78,111,100,101,115,125,101,108,115,101,32,110,61,101,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,41,59,114,101,116,117,114,110,32,101,63,65,116,40,110,41,58,110,38,38,110,91,48,93,125,114,101,116,117,114,110,32,105,101,40,116,41,63,110,61,116,58,114,101,40,116,41,63,110,61,101,63,73,116,40,116,46,116,111,65,114,114,97,121,40,41,44,33,48,41,58,73,116,40,116,46,103,101,116,40,48,41,44,33,49,41,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,40,110,61,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,73,116,40,116,41,125,41,41,44,101,124,124,40,110,61,110,46,108,101,110,103,116,104,62,61,49,63,110,91,48,93,58,118,111,105,100,32,48,41,41,58,110,61,33,116,46,110,111,100,101,78,97,109,101,124,124,49,33,61,61,116,46,110,111,100,101,84,121,112,101,38,38,57,33,61,61,116,46,110,111,100,101,84,121,112,101,63,91,93,46,115,108,105,99,101,46,99,97,108,108,40,110,41,58,116,44,110,125,102,117,110,99,116,105,111,110,32,77,116,40,116,44,101,44,110,44,114,41,123,105,102,40,105,116,41,123,118,97,114,32,105,61,114,124,124,33,49,59,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,114,38,38,40,105,61,33,33,111,116,38,38,114,41,44,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,44,110,44,105,41,125,101,108,115,101,32,116,46,97,116,116,97,99,104,69,118,101,110,116,63,116,46,97,116,116,97,99,104,69,118,101,110,116,40,34,111,110,34,43,101,44,110,41,58,116,91,34,111,110,34,43,101,93,61,110,125,102,117,110,99,116,105,111,110,32,36,116,40,116,44,101,44,110,41,123,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,63,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,44,110,44,33,49,41,58,116,46,100,101,116,97,99,104,69,118,101,110,116,63,116,46,100,101,116,97,99,104,69,118,101,110,116,40,34,111,110,34,43,101,44,110,41,58,116,91,34,111,110,34,43,101,93,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,70,116,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,114,41,123,36,116,40,116,44,101,44,105,41,44,110,40,114,41,125,59,77,116,40,116,44,101,44,105,44,114,41,125,102,117,110,99,116,105,111,110,32,82,116,40,116,44,101,41,123,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,33,49,41,59,118,97,114,32,110,61,34,115,99,114,111,108,108,34,43,40,101,63,34,76,101,102,116,34,58,34,84,111,112,34,41,59,114,101,116,117,114,110,32,105,101,40,116,41,63,90,91,101,63,34,112,97,103,101,88,79,102,102,115,101,116,34,58,34,112,97,103,101,89,79,102,102,115,101,116,34,93,124,124,101,116,46,98,111,100,121,91,110,93,124,124,101,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,91,110,93,58,116,91,110,93,125,102,117,110,99,116,105,111,110,32,78,116,40,116,44,101,44,110,41,123,105,101,40,116,41,63,116,46,115,99,114,111,108,108,40,101,44,110,41,58,40,116,46,115,99,114,111,108,108,76,101,102,116,61,101,44,116,46,115,99,114,111,108,108,84,111,112,61,110,41,125,102,117,110,99,116,105,111,110,32,66,116,40,116,44,101,44,110,41,123,105,101,40,116,41,63,116,46,115,99,114,111,108,108,66,121,40,101,44,110,41,58,40,116,46,115,99,114,111,108,108,76,101,102,116,43,61,101,44,116,46,115,99,114,111,108,108,84,111,112,43,61,110,41,125,102,117,110,99,116,105,111,110,32,122,116,40,116,41,123,114,101,116,117,114,110,40,114,116,63,90,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,41,58,116,46,99,117,114,114,101,110,116,83,116,121,108,101,41,124,124,123,125,125,102,117,110,99,116,105,111,110,32,86,116,40,116,44,101,44,110,41,123,105,102,40,105,101,40,116,41,41,114,101,116,117,114,110,32,90,91,34,105,110,110,101,114,34,43,101,93,124,124,101,116,46,98,111,100,121,91,34,99,108,105,101,110,116,34,43,101,93,59,105,102,40,111,101,40,116,41,41,123,118,97,114,32,114,61,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,105,61,116,46,98,111,100,121,59,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,105,91,34,115,99,114,111,108,108,34,43,101,93,44,114,91,34,115,99,114,111,108,108,34,43,101,93,44,105,91,34,111,102,102,115,101,116,34,43,101,93,44,114,91,34,111,102,102,115,101,116,34,43,101,93,44,114,91,34,99,108,105,101,110,116,34,43,101,93,41,125,118,97,114,32,111,61,48,59,105,102,40,34,114,101,99,116,34,61,61,61,110,41,123,118,97,114,32,97,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,111,61,34,87,105,100,116,104,34,61,61,61,101,63,97,46,114,105,103,104,116,45,97,46,108,101,102,116,58,97,46,98,111,116,116,111,109,45,97,46,116,111,112,125,101,108,115,101,32,111,61,34,111,102,102,115,101,116,34,61,61,61,110,63,116,91,34,111,102,102,115,101,116,34,43,101,93,124,124,116,91,34,99,108,105,101,110,116,34,43,101,93,58,116,91,34,99,108,105,101,110,116,34,43,101,93,124,124,116,91,34,111,102,102,115,101,116,34,43,101,93,59,105,102,40,111,41,114,101,116,117,114,110,32,111,59,118,97,114,32,115,61,122,116,40,116,41,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,59,114,101,116,117,114,110,126,115,46,105,110,100,101,120,79,102,40,34,112,120,34,41,38,38,112,97,114,115,101,70,108,111,97,116,40,115,41,124,124,48,125,102,117,110,99,116,105,111,110,32,72,116,40,116,41,123,114,101,116,117,114,110,32,86,116,40,116,44,34,87,105,100,116,104,34,44,34,99,108,105,101,110,116,34,41,125,102,117,110,99,116,105,111,110,32,85,116,40,116,41,123,114,101,116,117,114,110,32,86,116,40,116,44,34,72,101,105,103,104,116,34,44,34,99,108,105,101,110,116,34,41,125,102,117,110,99,116,105,111,110,32,87,116,40,116,41,123,114,101,116,117,114,110,32,86,116,40,116,44,34,87,105,100,116,104,34,44,34,111,102,102,115,101,116,34,41,125,102,117,110,99,116,105,111,110,32,71,116,40,116,41,123,114,101,116,117,114,110,32,86,116,40,116,44,34,72,101,105,103,104,116,34,44,34,111,102,102,115,101,116,34,41,125,102,117,110,99,116,105,111,110,32,113,116,40,116,41,123,114,101,116,117,114,110,32,86,116,40,116,44,34,87,105,100,116,104,34,44,34,114,101,99,116,34,41,125,102,117,110,99,116,105,111,110,32,89,116,40,116,41,123,114,101,116,117,114,110,32,86,116,40,116,44,34,72,101,105,103,104,116,34,44,34,114,101,99,116,34,41,125,102,117,110,99,116,105,111,110,32,75,116,40,116,41,123,114,101,116,117,114,110,123,119,105,100,116,104,58,87,116,40,116,41,44,104,101,105,103,104,116,58,71,116,40,116,41,125,125,102,117,110,99,116,105,111,110,32,88,116,40,116,41,123,114,101,116,117,114,110,123,119,105,100,116,104,58,113,116,40,116,41,44,104,101,105,103,104,116,58,89,116,40,116,41,125,125,118,97,114,32,90,116,61,123,118,101,114,116,105,99,97,108,58,123,115,116,97,114,116,80,111,115,49,58,34,116,111,112,34,44,101,110,100,80,111,115,49,58,34,98,111,116,116,111,109,34,44,115,105,122,101,49,58,34,104,101,105,103,104,116,34,44,115,116,97,114,116,80,111,115,50,58,34,108,101,102,116,34,44,101,110,100,80,111,115,50,58,34,114,105,103,104,116,34,44,115,105,122,101,50,58,34,119,105,100,116,104,34,125,44,104,111,114,105,122,111,110,116,97,108,58,123,115,116,97,114,116,80,111,115,49,58,34,108,101,102,116,34,44,101,110,100,80,111,115,49,58,34,114,105,103,104,116,34,44,115,105,122,101,49,58,34,119,105,100,116,104,34,44,115,116,97,114,116,80,111,115,50,58,34,116,111,112,34,44,101,110,100,80,111,115,50,58,34,98,111,116,116,111,109,34,44,115,105,122,101,50,58,34,104,101,105,103,104,116,34,125,125,59,102,117,110,99,116,105,111,110,32,74,116,40,116,41,123,114,101,116,117,114,110,32,90,116,91,116,63,104,116,58,102,116,93,125,102,117,110,99,116,105,111,110,32,81,116,40,116,41,123,102,111,114,40,118,97,114,32,101,61,91,93,44,110,61,49,59,110,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,110,43,43,41,101,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,101,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,116,91,110,93,61,101,91,110,93,125,41,41,44,116,125,102,117,110,99,116,105,111,110,32,116,101,40,116,44,101,41,123,114,101,116,117,114,110,32,81,116,40,123,125,44,103,116,44,116,44,101,41,125,102,117,110,99,116,105,111,110,32,101,101,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,116,58,91,48,93,125,102,117,110,99,116,105,111,110,32,110,101,40,116,41,123,114,101,116,117,114,110,32,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,125,44,116,41,125,41,41,125,102,117,110,99,116,105,111,110,32,114,101,40,116,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,90,46,106,81,117,101,114,121,38,38,116,32,105,110,115,116,97,110,99,101,111,102,32,90,46,106,81,117,101,114,121,124,124,116,46,99,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,46,106,113,117,101,114,121,38,38,116,46,116,111,65,114,114,97,121,125,102,117,110,99,116,105,111,110,32,105,101,40,116,41,123,114,101,116,117,114,110,32,116,61,61,61,90,125,102,117,110,99,116,105,111,110,32,111,101,40,116,41,123,114,101,116,117,114,110,32,57,61,61,61,116,46,110,111,100,101,84,121,112,101,125,102,117,110,99,116,105,111,110,32,97,101,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,114,61,110,45,49,59,114,62,61,48,59,45,45,114,41,116,91,114,93,61,101,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,115,101,40,116,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,116,125,102,117,110,99,116,105,111,110,32,99,101,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,114,61,48,59,114,60,110,59,43,43,114,41,105,102,40,101,40,116,91,114,93,41,41,114,101,116,117,114,110,32,116,91,114,93,59,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,117,101,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,114,61,110,45,49,59,114,62,61,48,59,45,45,114,41,105,102,40,101,40,116,91,114,93,41,41,114,101,116,117,114,110,32,116,91,114,93,59,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,108,101,40,116,41,123,118,97,114,32,101,61,91,93,44,110,61,123,125,59,114,101,116,117,114,110,32,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,116,46,103,114,111,117,112,75,101,121,44,105,61,110,91,114,93,59,105,124,124,40,105,61,123,103,114,111,117,112,75,101,121,58,114,44,105,116,101,109,115,58,91,93,125,44,110,91,114,93,61,105,44,101,46,112,117,115,104,40,105,41,41,44,105,46,105,116,101,109,115,46,112,117,115,104,40,116,41,125,41,41,44,101,125,102,117,110,99,116,105,111,110,32,102,101,40,116,41,123,116,46,111,114,103,83,105,122,101,61,110,117,108,108,44,116,46,115,105,122,101,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,104,101,40,116,44,101,41,123,114,101,116,117,114,110,123,101,108,58,101,44,103,114,111,117,112,75,101,121,58,116,44,109,111,117,110,116,101,100,58,33,49,44,110,101,101,100,85,112,100,97,116,101,58,33,48,44,99,111,110,116,101,110,116,58,101,63,101,46,111,117,116,101,114,72,84,77,76,58,34,34,44,114,101,99,116,58,123,116,111,112,58,100,116,44,108,101,102,116,58,100,116,125,125,125,102,117,110,99,116,105,111,110,32,100,101,40,116,44,101,41,123,79,98,106,101,99,116,46,107,101,121,115,40,68,116,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,116,91,110,93,124,124,40,116,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,44,114,61,91,93,44,105,61,48,59,105,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,43,43,41,114,91,105,93,61,97,114,103,117,109,101,110,116,115,91,105,93,59,118,97,114,32,111,61,40,116,61,116,104,105,115,91,101,93,41,91,110,93,46,97,112,112,108,121,40,116,44,114,41,59,114,101,116,117,114,110,32,111,61,61,61,116,104,105,115,91,101,93,63,116,104,105,115,58,111,125,41,125,41,41,125,102,117,110,99,116,105,111,110,32,112,101,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,63,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,101,41,58,33,33,116,46,99,108,97,115,115,78,97,109,101,46,109,97,116,99,104,40,110,101,119,32,82,101,103,69,120,112,40,34,40,92,92,115,124,94,41,34,43,101,43,34,40,92,92,115,124,36,41,34,41,41,125,102,117,110,99,116,105,111,110,32,118,101,40,116,44,101,41,123,116,46,99,108,97,115,115,76,105,115,116,63,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,101,41,58,116,46,99,108,97,115,115,78,97,109,101,43,61,34,32,34,43,101,125,102,117,110,99,116,105,111,110,32,103,101,40,116,41,123,114,101,116,117,114,110,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,125,102,117,110,99,116,105,111,110,32,109,101,40,116,44,101,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,116,45,101,91,49,93,44,101,91,48,93,45,116,44,48,41,43,49,125,118,97,114,32,98,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,116,104,105,115,46,95,103,114,111,117,112,115,61,91,93,44,116,104,105,115,46,95,103,114,111,117,112,75,101,121,115,61,123,125,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,73,116,101,109,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,104,101,40,101,44,116,41,125,41,41,125,44,116,46,112,108,117,99,107,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,99,111,110,99,97,116,40,110,91,101,93,41,125,41,44,91,93,41,125,44,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,103,114,111,117,112,115,61,91,93,44,116,104,105,115,46,95,103,114,111,117,112,75,101,121,115,61,123,125,125,44,101,46,103,101,116,83,116,97,116,117,115,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,114,111,117,112,115,44,114,61,77,97,116,104,46,109,97,120,40,116,104,105,115,46,105,110,100,101,120,79,102,40,116,41,44,48,41,44,105,61,116,104,105,115,46,105,110,100,101,120,79,102,40,101,41,43,49,124,124,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,123,95,100,97,116,97,58,110,46,115,108,105,99,101,40,114,44,105,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,116,101,109,115,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,123,125,59,114,101,116,117,114,110,32,67,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,110,32,105,110,32,116,38,38,40,101,91,110,93,61,116,91,110,93,41,125,41,41,44,101,125,41,41,44,110,61,81,116,40,123,125,44,116,41,59,114,101,116,117,114,110,32,110,46,105,116,101,109,115,61,101,44,110,125,41,41,125,125,44,101,46,115,101,116,83,116,97,116,117,115,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,46,95,100,97,116,97,59,116,104,105,115,46,99,108,101,97,114,40,41,44,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,101,46,105,110,115,101,114,116,71,114,111,117,112,40,116,44,110,41,125,41,41,125,44,101,46,115,105,122,101,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,103,114,111,117,112,115,46,108,101,110,103,116,104,125,44,101,46,102,105,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,114,111,117,112,115,59,105,102,40,110,46,108,101,110,103,116,104,41,123,118,97,114,32,114,61,101,63,34,108,101,102,116,34,58,34,116,111,112,34,59,48,33,61,61,116,38,38,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,101,46,105,116,101,109,115,44,105,61,101,46,111,117,116,108,105,110,101,115,59,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,114,101,99,116,91,114,93,45,61,116,125,41,41,44,105,46,115,116,97,114,116,61,105,46,115,116,97,114,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,45,116,125,41,41,44,105,46,101,110,100,61,105,46,101,110,100,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,45,116,125,41,41,125,41,41,125,125,44,101,46,112,108,117,99,107,61,102,117,110,99,116,105,111,110,40,101,44,110,44,114,41,123,118,97,114,32,105,61,115,101,40,110,41,63,116,104,105,115,46,95,103,114,111,117,112,115,58,116,104,105,115,46,115,108,105,99,101,71,114,111,117,112,115,40,110,44,40,115,101,40,114,41,63,110,58,114,41,43,49,41,59,114,101,116,117,114,110,32,116,46,112,108,117,99,107,40,105,44,101,41,125,44,101,46,103,101,116,79,117,116,108,105,110,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,95,103,114,111,117,112,115,91,116,93,59,114,101,116,117,114,110,32,110,63,110,46,111,117,116,108,105,110,101,115,91,101,93,58,91,93,125,44,101,46,103,101,116,69,100,103,101,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,102,111,114,40,118,97,114,32,114,61,34,115,116,97,114,116,34,61,61,61,116,63,34,109,105,110,34,58,34,109,97,120,34,44,105,61,45,49,44,111,61,34,115,116,97,114,116,34,61,61,61,116,63,49,47,48,58,45,49,47,48,44,97,61,101,59,97,60,61,110,59,97,43,43,41,123,118,97,114,32,115,61,77,97,116,104,91,114,93,46,97,112,112,108,121,40,77,97,116,104,44,116,104,105,115,46,103,101,116,79,117,116,108,105,110,101,40,97,44,116,41,41,59,40,34,115,116,97,114,116,34,61,61,61,116,38,38,111,62,115,124,124,34,101,110,100,34,61,61,61,116,38,38,111,60,115,41,38,38,40,111,61,115,44,105,61,97,41,125,114,101,116,117,114,110,32,105,125,44,101,46,103,101,116,69,100,103,101,86,97,108,117,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,46,103,101,116,71,114,111,117,112,40,116,104,105,115,46,103,101,116,69,100,103,101,73,110,100,101,120,40,116,44,101,44,110,41,41,59,105,102,40,114,41,123,118,97,114,32,105,61,114,46,111,117,116,108,105,110,101,115,91,116,93,59,105,102,40,105,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,77,97,116,104,91,34,115,116,97,114,116,34,61,61,61,116,63,34,109,105,110,34,58,34,109,97,120,34,93,46,97,112,112,108,121,40,77,97,116,104,44,105,41,125,114,101,116,117,114,110,32,48,125,44,101,46,99,108,101,97,114,79,117,116,108,105,110,101,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,45,49,41,44,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,45,49,41,59,118,97,114,32,110,61,116,104,105,115,46,103,101,116,71,114,111,117,112,115,40,41,59,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,116,60,61,114,38,38,114,60,61,101,124,124,40,110,46,105,116,101,109,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,114,101,99,116,46,116,111,112,61,100,116,44,116,46,114,101,99,116,46,108,101,102,116,61,100,116,125,41,41,44,110,46,111,117,116,108,105,110,101,115,46,115,116,97,114,116,61,91,93,44,110,46,111,117,116,108,105,110,101,115,46,101,110,100,61,91,93,41,125,41,41,125,44,101,46,103,101,116,77,97,120,69,100,103,101,86,97,108,117,101,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,116,46,108,101,110,103,116,104,44,110,61,101,45,49,59,110,62,61,48,59,45,45,110,41,123,118,97,114,32,114,61,116,91,110,93,46,111,117,116,108,105,110,101,115,46,101,110,100,59,105,102,40,114,46,108,101,110,103,116,104,41,123,118,97,114,32,105,61,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,114,41,59,114,101,116,117,114,110,32,105,125,125,114,101,116,117,114,110,32,48,125,44,101,46,112,114,101,112,101,110,100,71,114,111,117,112,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,105,110,115,101,114,116,71,114,111,117,112,40,116,44,48,41,125,44,101,46,97,112,112,101,110,100,71,114,111,117,112,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,105,110,115,101,114,116,71,114,111,117,112,40,116,44,116,104,105,115,46,95,103,114,111,117,112,115,46,108,101,110,103,116,104,41,125,44,101,46,105,110,115,101,114,116,71,114,111,117,112,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,59,105,102,40,101,60,48,41,114,101,116,117,114,110,32,116,104,105,115,46,97,112,112,101,110,100,71,114,111,117,112,40,116,41,59,118,97,114,32,114,61,116,46,105,116,101,109,115,124,124,91,93,44,105,61,74,40,74,40,123,111,117,116,108,105,110,101,115,58,123,115,116,97,114,116,58,91,93,44,101,110,100,58,91,93,125,125,44,116,41,44,123,105,116,101,109,115,58,91,93,44,110,101,101,100,85,112,100,97,116,101,58,33,48,125,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,103,114,111,117,112,115,46,115,112,108,105,99,101,40,101,44,48,44,105,41,44,116,104,105,115,46,95,103,114,111,117,112,75,101,121,115,91,105,46,103,114,111,117,112,75,101,121,93,61,105,44,114,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,110,46,105,110,115,101,114,116,40,116,44,101,44,114,41,125,41,41,44,105,125,44,101,46,115,121,110,99,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,95,103,114,111,117,112,115,44,114,61,116,104,105,115,46,95,103,114,111,117,112,75,101,121,115,44,105,61,108,101,40,116,41,44,111,61,100,40,110,44,105,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,114,111,117,112,75,101,121,125,41,41,44,97,61,111,46,114,101,109,111,118,101,100,44,115,61,111,46,97,100,100,101,100,44,99,61,111,46,109,97,105,110,116,97,105,110,101,100,59,97,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,110,91,116,93,59,101,38,38,100,101,108,101,116,101,32,114,91,101,46,103,114,111,117,112,75,101,121,93,125,41,41,59,118,97,114,32,117,61,91,93,59,114,101,116,117,114,110,32,99,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,91,48,93,59,117,46,112,117,115,104,40,110,91,101,93,41,125,41,41,44,116,104,105,115,46,95,103,114,111,117,112,115,61,117,44,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,105,110,115,101,114,116,71,114,111,117,112,40,105,91,116,93,44,116,41,125,41,41,44,99,46,114,101,118,101,114,115,101,40,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,91,49,93,59,101,46,115,121,110,99,73,116,101,109,115,40,110,44,105,91,110,93,46,105,116,101,109,115,41,125,41,41,44,111,125,44,101,46,105,110,115,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,45,49,41,44,118,111,105,100,32,48,61,61,61,110,38,38,40,110,61,45,49,41,59,118,97,114,32,114,61,116,46,103,114,111,117,112,75,101,121,44,105,61,116,104,105,115,46,95,103,114,111,117,112,115,44,111,61,116,104,105,115,46,95,103,114,111,117,112,75,101,121,115,44,97,61,40,101,62,45,49,63,105,91,101,93,58,111,91,114,93,41,124,124,116,104,105,115,46,105,110,115,101,114,116,71,114,111,117,112,40,123,103,114,111,117,112,75,101,121,58,114,125,44,101,41,59,105,102,40,33,97,41,114,101,116,117,114,110,32,110,117,108,108,59,97,46,110,101,101,100,85,112,100,97,116,101,61,33,48,59,118,97,114,32,115,61,74,40,123,99,111,110,116,101,110,116,58,34,34,44,109,111,117,110,116,101,100,58,33,49,44,110,101,101,100,85,112,100,97,116,101,58,33,48,44,114,101,99,116,58,123,116,111,112,58,100,116,44,108,101,102,116,58,100,116,125,125,44,116,41,44,99,61,97,46,105,116,101,109,115,59,114,101,116,117,114,110,45,49,61,61,61,110,63,99,46,112,117,115,104,40,115,41,58,99,46,115,112,108,105,99,101,40,110,44,48,44,115,41,44,115,125,44,101,46,114,101,109,111,118,101,71,114,111,117,112,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,103,114,111,117,112,115,46,115,112,108,105,99,101,40,116,44,49,41,91,48,93,59,114,101,116,117,114,110,32,101,63,40,100,101,108,101,116,101,32,116,104,105,115,46,95,103,114,111,117,112,75,101,121,115,91,101,46,103,114,111,117,112,75,101,121,93,44,101,41,58,110,117,108,108,125,44,101,46,114,101,109,111,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,103,101,116,71,114,111,117,112,40,116,41,44,114,61,110,117,108,108,44,105,61,91,93,59,114,101,116,117,114,110,32,110,63,40,110,46,110,101,101,100,85,112,100,97,116,101,61,33,48,44,105,61,110,46,105,116,101,109,115,46,115,112,108,105,99,101,40,101,44,49,41,44,110,46,105,116,101,109,115,46,108,101,110,103,116,104,124,124,40,114,61,116,104,105,115,46,114,101,109,111,118,101,71,114,111,117,112,40,116,41,41,44,123,105,116,101,109,115,58,105,44,103,114,111,117,112,58,114,125,41,58,123,105,116,101,109,115,58,105,44,103,114,111,117,112,58,114,125,125,44,101,46,105,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,45,49,59,102,111,114,40,118,97,114,32,101,61,34,34,43,40,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,63,116,46,103,114,111,117,112,75,101,121,58,116,41,44,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,114,61,110,46,108,101,110,103,116,104,44,105,61,48,59,105,60,114,59,43,43,105,41,105,102,40,101,61,61,61,34,34,43,110,91,105,93,46,103,114,111,117,112,75,101,121,41,114,101,116,117,114,110,32,105,59,114,101,116,117,114,110,45,49,125,44,101,46,105,110,100,101,120,101,115,79,102,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,46,103,101,116,65,116,116,114,105,98,117,116,101,40,112,116,41,44,110,61,116,104,105,115,46,105,110,100,101,120,79,102,40,123,103,114,111,117,112,75,101,121,58,101,125,41,44,114,61,45,49,59,105,102,40,110,62,45,49,41,102,111,114,40,118,97,114,32,105,61,116,104,105,115,46,103,101,116,71,114,111,117,112,40,110,41,44,111,61,105,46,105,116,101,109,115,46,108,101,110,103,116,104,44,97,61,48,59,97,60,111,59,97,43,43,41,105,102,40,105,46,105,116,101,109,115,91,97,93,46,101,108,61,61,61,116,41,123,114,61,97,59,98,114,101,97,107,125,114,101,116,117,114,110,123,103,114,111,117,112,73,110,100,101,120,58,110,44,105,116,101,109,73,110,100,101,120,58,114,125,125,44,101,46,115,108,105,99,101,71,114,111,117,112,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,103,114,111,117,112,115,46,115,108,105,99,101,40,116,44,101,41,125,44,101,46,103,101,116,71,114,111,117,112,115,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,103,114,111,117,112,115,125,44,101,46,103,101,116,71,114,111,117,112,66,121,75,101,121,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,103,114,111,117,112,75,101,121,115,91,116,93,125,44,101,46,103,101,116,71,114,111,117,112,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,103,114,111,117,112,115,91,116,93,125,44,101,46,115,121,110,99,73,116,101,109,115,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,59,105,102,40,101,46,108,101,110,103,116,104,41,123,118,97,114,32,114,61,116,104,105,115,46,103,101,116,71,114,111,117,112,40,116,41,46,105,116,101,109,115,44,105,61,100,40,114,44,101,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,105,116,101,109,75,101,121,125,41,41,44,111,61,105,46,97,100,100,101,100,44,97,61,105,46,109,97,105,110,116,97,105,110,101,100,44,115,61,105,46,99,104,97,110,103,101,100,44,99,61,105,46,114,101,109,111,118,101,100,44,117,61,116,104,105,115,46,95,103,114,111,117,112,115,91,116,93,44,108,61,91,93,59,97,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,91,48,93,44,105,61,116,91,49,93,44,111,61,114,91,110,93,44,97,61,101,91,105,93,59,81,116,40,111,44,97,41,44,108,46,112,117,115,104,40,111,41,125,41,41,44,117,46,105,116,101,109,115,61,108,44,40,115,46,108,101,110,103,116,104,124,124,99,46,108,101,110,103,116,104,41,38,38,40,117,46,110,101,101,100,85,112,100,97,116,101,61,33,48,41,44,111,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,114,41,123,110,46,105,110,115,101,114,116,40,101,91,114,93,44,116,44,114,41,125,41,41,125,101,108,115,101,32,116,104,105,115,46,114,101,109,111,118,101,71,114,111,117,112,40,116,41,125,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,121,101,40,116,41,123,116,91,84,116,43,34,45,112,114,111,112,101,114,116,121,34,93,61,34,34,44,116,91,84,116,43,34,45,100,117,114,97,116,105,111,110,34,93,61,34,34,44,116,91,80,116,93,61,34,34,125,102,117,110,99,116,105,111,110,32,119,101,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,101,63,40,110,46,108,101,102,116,33,61,61,114,46,108,101,102,116,124,124,110,46,116,111,112,33,61,61,114,46,116,111,112,41,38,38,40,116,91,84,116,43,34,45,112,114,111,112,101,114,116,121,34,93,61,80,116,43,34,44,119,105,100,116,104,44,104,101,105,103,104,116,34,44,116,91,84,116,43,34,45,100,117,114,97,116,105,111,110,34,93,61,101,43,34,115,34,44,116,91,80,116,93,61,34,116,114,97,110,115,108,97,116,101,40,34,43,40,110,46,108,101,102,116,45,114,46,108,101,102,116,41,43,34,112,120,44,34,43,40,110,46,116,111,112,45,114,46,116,111,112,41,43,34,112,120,41,34,44,33,48,41,58,40,121,101,40,116,41,44,33,49,41,125,102,117,110,99,116,105,111,110,32,95,101,40,116,41,123,118,97,114,32,101,61,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,34,43,99,116,41,59,105,102,40,101,41,114,101,116,117,114,110,32,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,44,101,46,115,116,121,108,101,46,104,101,105,103,104,116,61,34,49,48,48,37,34,44,101,59,118,97,114,32,110,61,101,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,110,46,99,108,97,115,115,78,97,109,101,61,99,116,44,110,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,44,110,46,115,116,121,108,101,46,104,101,105,103,104,116,61,34,49,48,48,37,34,59,102,111,114,40,118,97,114,32,114,61,116,46,99,104,105,108,100,114,101,110,44,105,61,114,46,108,101,110,103,116,104,44,111,61,48,59,111,60,105,59,111,43,43,41,110,46,97,112,112,101,110,100,67,104,105,108,100,40,114,91,48,93,41,59,114,101,116,117,114,110,32,116,46,97,112,112,101,110,100,67,104,105,108,100,40,110,41,44,110,125,118,97,114,32,120,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,44,101,41,123,116,104,105,115,46,111,112,116,105,111,110,115,61,123,117,115,101,79,102,102,115,101,116,58,33,49,44,105,115,69,113,117,97,108,83,105,122,101,58,33,49,44,105,115,67,111,110,115,116,97,110,116,83,105,122,101,58,33,49,44,104,111,114,105,122,111,110,116,97,108,58,33,49,44,99,111,110,116,97,105,110,101,114,58,33,49,44,112,101,114,99,101,110,116,97,103,101,58,33,49,125,44,116,104,105,115,46,95,115,105,122,101,61,123,99,111,110,116,97,105,110,101,114,58,45,49,44,118,105,101,119,58,45,49,44,118,105,101,119,112,111,114,116,58,45,49,44,105,116,101,109,58,110,117,108,108,125,44,116,104,105,115,46,95,111,114,103,83,116,121,108,101,61,123,125,44,116,104,105,115,46,95,105,115,83,105,122,101,80,101,114,99,101,110,116,97,103,101,61,33,49,44,116,104,105,115,46,95,105,115,80,111,115,80,101,114,99,101,110,116,97,103,101,61,33,49,44,81,116,40,116,104,105,115,46,111,112,116,105,111,110,115,44,101,41,44,116,104,105,115,46,95,105,110,105,116,40,116,41,44,116,104,105,115,46,114,101,115,105,122,101,40,41,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,114,101,109,111,118,101,73,116,101,109,115,61,102,117,110,99,116,105,111,110,40,101,41,123,101,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,108,38,38,40,116,46,114,101,109,111,118,101,69,108,101,109,101,110,116,40,101,46,101,108,41,44,101,46,101,108,61,110,117,108,108,41,125,41,41,125,44,116,46,114,101,109,111,118,101,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,38,38,116,46,112,97,114,101,110,116,78,111,100,101,59,101,38,38,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,125,44,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,46,108,101,110,103,116,104,41,123,118,97,114,32,101,61,116,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,116,46,101,108,125,41,41,59,105,102,40,101,46,108,101,110,103,116,104,41,123,118,97,114,32,110,61,73,116,40,101,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,110,116,101,110,116,59,114,101,116,117,114,110,32,101,46,114,101,112,108,97,99,101,40,47,94,91,92,115,92,117,70,69,70,70,93,43,124,91,92,115,92,117,70,69,70,70,93,43,36,47,103,44,34,34,41,125,41,41,46,106,111,105,110,40,34,34,41,44,33,48,41,59,101,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,101,108,61,110,91,101,93,125,41,41,125,125,125,44,101,46,103,101,116,83,116,97,116,117,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,99,115,115,84,101,120,116,58,116,104,105,115,46,99,111,110,116,97,105,110,101,114,46,115,116,121,108,101,46,99,115,115,84,101,120,116,44,95,115,105,122,101,58,81,116,40,123,125,44,116,104,105,115,46,95,115,105,122,101,41,125,125,44,101,46,115,101,116,83,116,97,116,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,111,110,116,97,105,110,101,114,46,115,116,121,108,101,46,99,115,115,84,101,120,116,61,116,46,99,115,115,84,101,120,116,44,81,116,40,116,104,105,115,46,95,115,105,122,101,44,116,46,95,115,105,122,101,41,125,44,101,46,117,112,100,97,116,101,83,105,122,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,111,112,116,105,111,110,115,44,110,61,101,46,105,115,69,113,117,97,108,83,105,122,101,44,114,61,101,46,105,115,67,111,110,115,116,97,110,116,83,105,122,101,44,105,61,101,46,117,115,101,79,102,102,115,101,116,44,111,61,116,104,105,115,46,95,115,105,122,101,59,114,101,116,117,114,110,32,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,101,108,63,40,110,38,38,33,111,46,105,116,101,109,38,38,40,111,46,105,116,101,109,61,105,63,75,116,40,116,46,101,108,41,58,88,116,40,116,46,101,108,41,41,44,116,46,115,105,122,101,61,110,38,38,81,116,40,123,125,44,111,46,105,116,101,109,41,124,124,114,38,38,116,46,111,114,103,83,105,122,101,38,38,116,46,111,114,103,83,105,122,101,46,119,105,100,116,104,38,38,81,116,40,123,125,44,116,46,111,114,103,83,105,122,101,41,124,124,40,105,63,75,116,40,116,46,101,108,41,58,88,116,40,116,46,101,108,41,41,44,116,46,111,114,103,83,105,122,101,38,38,116,46,111,114,103,83,105,122,101,46,119,105,100,116,104,38,38,116,46,111,114,103,83,105,122,101,46,104,101,105,103,104,116,124,124,40,116,46,111,114,103,83,105,122,101,61,81,116,40,123,125,44,116,46,115,105,122,101,41,41,44,116,41,58,116,125,41,41,125,44,101,46,99,114,101,97,116,101,65,110,100,73,110,115,101,114,116,61,102,117,110,99,116,105,111,110,40,101,44,110,41,123,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,115,40,101,41,44,116,104,105,115,46,114,101,110,100,101,114,73,116,101,109,115,40,101,41,44,116,104,105,115,46,95,105,110,115,101,114,116,40,101,44,110,41,125,44,101,46,114,101,110,100,101,114,73,116,101,109,115,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,59,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,110,46,114,101,110,100,101,114,73,116,101,109,40,116,44,116,46,114,101,99,116,44,101,41,125,41,41,125,44,101,46,114,101,110,100,101,114,73,116,101,109,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,59,105,102,40,116,46,101,108,41,123,118,97,114,32,105,61,116,46,101,108,44,111,61,116,46,112,114,101,118,82,101,99,116,44,97,61,105,46,115,116,121,108,101,59,105,102,40,105,46,115,101,116,65,116,116,114,105,98,117,116,101,40,112,116,44,34,34,43,116,46,103,114,111,117,112,75,101,121,41,44,97,46,112,111,115,105,116,105,111,110,61,34,97,98,115,111,108,117,116,101,34,44,116,104,105,115,46,95,114,101,110,100,101,114,40,91,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,93,44,101,44,97,41,44,110,38,38,84,116,38,38,111,41,123,105,102,40,119,101,40,97,44,110,44,101,44,111,41,44,105,91,108,116,93,41,114,101,116,117,114,110,59,105,91,108,116,93,61,33,48,44,70,116,40,105,44,106,116,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,46,114,101,99,116,59,121,101,40,97,41,44,114,46,95,114,101,110,100,101,114,40,91,34,108,101,102,116,34,44,34,116,111,112,34,93,44,101,44,97,41,44,116,46,112,114,101,118,82,101,99,116,61,101,44,105,91,108,116,93,61,33,49,125,41,41,125,101,108,115,101,32,116,104,105,115,46,95,114,101,110,100,101,114,40,91,34,108,101,102,116,34,44,34,116,111,112,34,93,44,101,44,97,41,44,116,46,112,114,101,118,82,101,99,116,61,101,125,125,44,101,46,103,101,116,86,105,101,119,83,105,122,101,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,105,122,101,46,118,105,101,119,125,44,101,46,103,101,116,86,105,101,119,112,111,114,116,83,105,122,101,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,105,122,101,46,118,105,101,119,112,111,114,116,125,44,101,46,103,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,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,105,122,101,46,99,111,110,116,97,105,110,101,114,125,44,101,46,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,115,105,122,101,46,99,111,110,116,97,105,110,101,114,61,116,44,116,104,105,115,46,99,111,110,116,97,105,110,101,114,46,115,116,121,108,101,91,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,93,61,116,43,34,112,120,34,125,44,101,46,114,101,115,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,44,101,61,116,104,105,115,46,118,105,101,119,44,110,61,116,104,105,115,46,95,99,97,108,99,83,105,122,101,40,41,59,105,102,40,48,33,61,61,110,41,123,118,97,114,32,114,61,110,33,61,61,116,104,105,115,46,95,115,105,122,101,46,118,105,101,119,112,111,114,116,59,114,101,116,117,114,110,32,114,38,38,40,116,104,105,115,46,95,115,105,122,101,61,123,118,105,101,119,58,45,49,44,99,111,110,116,97,105,110,101,114,58,45,49,44,118,105,101,119,112,111,114,116,58,110,44,105,116,101,109,58,110,117,108,108,125,41,44,116,104,105,115,46,95,115,105,122,101,46,118,105,101,119,61,116,63,72,116,40,101,41,58,85,116,40,101,41,44,114,125,125,44,101,46,105,115,78,101,101,100,101,100,82,101,115,105,122,101,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,99,97,108,99,83,105,122,101,40,41,33,61,61,116,104,105,115,46,95,115,105,122,101,46,118,105,101,119,112,111,114,116,125,44,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,110,116,97,105,110,101,114,46,105,110,110,101,114,72,84,77,76,61,34,34,44,116,104,105,115,46,99,111,110,116,97,105,110,101,114,46,115,116,121,108,101,91,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,93,61,34,34,44,116,104,105,115,46,95,115,105,122,101,61,123,105,116,101,109,58,110,117,108,108,44,118,105,101,119,112,111,114,116,58,45,49,44,99,111,110,116,97,105,110,101,114,58,45,49,44,118,105,101,119,58,45,49,125,125,44,101,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,101,97,114,40,41,59,118,97,114,32,116,44,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,110,116,97,105,110,101,114,59,102,111,114,40,116,32,105,110,32,116,104,105,115,46,95,111,114,103,83,116,121,108,101,41,116,104,105,115,91,101,63,34,118,105,101,119,34,58,34,99,111,110,116,97,105,110,101,114,34,93,46,115,116,121,108,101,91,116,93,61,116,104,105,115,46,95,111,114,103,83,116,121,108,101,91,116,93,59,33,48,61,61,61,101,38,38,116,104,105,115,46,99,111,110,116,97,105,110,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,99,111,110,116,97,105,110,101,114,41,125,44,101,46,95,105,110,105,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,73,116,40,116,41,44,110,61,122,116,40,101,41,44,114,61,116,104,105,115,46,111,112,116,105,111,110,115,44,105,61,114,46,99,111,110,116,97,105,110,101,114,44,111,61,114,46,104,111,114,105,122,111,110,116,97,108,44,97,61,114,46,112,101,114,99,101,110,116,97,103,101,59,105,102,40,97,38,38,40,116,104,105,115,46,95,105,115,83,105,122,101,80,101,114,99,101,110,116,97,103,101,61,33,48,61,61,61,97,124,124,97,46,105,110,100,101,120,79,102,40,34,115,105,122,101,34,41,62,45,49,44,116,104,105,115,46,95,105,115,80,111,115,80,101,114,99,101,110,116,97,103,101,61,33,48,61,61,61,97,124,124,97,46,105,110,100,101,120,79,102,40,34,112,111,115,105,116,105,111,110,34,41,62,45,49,41,44,34,115,116,97,116,105,99,34,61,61,61,110,46,112,111,115,105,116,105,111,110,38,38,40,116,104,105,115,46,95,111,114,103,83,116,121,108,101,46,112,111,115,105,116,105,111,110,61,101,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,44,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,105,41,123,118,97,114,32,115,61,111,63,91,34,88,34,44,34,89,34,93,58,91,34,89,34,44,34,88,34,93,59,116,104,105,115,46,95,111,114,103,83,116,121,108,101,46,111,118,101,114,102,108,111,119,88,61,101,46,115,116,121,108,101,46,111,118,101,114,102,108,111,119,88,44,116,104,105,115,46,95,111,114,103,83,116,121,108,101,46,111,118,101,114,102,108,111,119,89,61,101,46,115,116,121,108,101,46,111,118,101,114,102,108,111,119,89,44,101,46,115,116,121,108,101,91,34,111,118,101,114,102,108,111,119,34,43,115,91,48,93,93,61,34,115,99,114,111,108,108,34,44,101,46,115,116,121,108,101,91,34,111,118,101,114,102,108,111,119,34,43,115,91,49,93,93,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,118,105,101,119,61,101,44,116,104,105,115,46,99,111,110,116,97,105,110,101,114,61,33,48,61,61,61,105,63,95,101,40,116,104,105,115,46,118,105,101,119,41,58,105,125,101,108,115,101,32,116,104,105,115,46,118,105,101,119,61,90,44,116,104,105,115,46,99,111,110,116,97,105,110,101,114,61,101,125,44,101,46,95,105,110,115,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,44,105,61,116,104,105,115,46,99,111,110,116,97,105,110,101,114,44,111,61,101,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,59,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,110,38,38,114,46,114,101,110,100,101,114,73,116,101,109,40,116,44,110,41,44,101,63,111,46,97,112,112,101,110,100,67,104,105,108,100,40,116,46,101,108,41,58,111,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,46,101,108,44,111,46,102,105,114,115,116,67,104,105,108,100,41,125,41,41,44,101,63,105,46,97,112,112,101,110,100,67,104,105,108,100,40,111,41,58,105,46,105,110,115,101,114,116,66,101,102,111,114,101,40,111,44,105,46,102,105,114,115,116,67,104,105,108,100,41,125,44,101,46,95,99,97,108,99,83,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,63,85,116,40,116,104,105,115,46,99,111,110,116,97,105,110,101,114,41,58,72,116,40,116,104,105,115,46,99,111,110,116,97,105,110,101,114,41,125,44,101,46,95,114,101,110,100,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,46,95,105,115,83,105,122,101,80,101,114,99,101,110,116,97,103,101,44,105,61,116,104,105,115,46,95,105,115,80,111,115,80,101,114,99,101,110,116,97,103,101,44,111,61,116,104,105,115,46,103,101,116,86,105,101,119,112,111,114,116,83,105,122,101,40,41,44,97,61,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,59,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,32,105,110,32,101,41,123,118,97,114,32,115,61,97,38,38,40,114,38,38,34,104,101,105,103,104,116,34,61,61,61,116,124,124,105,38,38,34,116,111,112,34,61,61,61,116,41,44,99,61,33,97,38,38,40,114,38,38,34,119,105,100,116,104,34,61,61,61,116,124,124,105,38,38,34,108,101,102,116,34,61,61,61,116,41,59,110,91,116,93,61,115,124,124,99,63,101,91,116,93,47,111,42,49,48,48,43,34,37,34,58,101,91,116,93,43,34,112,120,34,125,125,41,41,125,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,79,101,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,46,105,116,101,109,115,44,111,61,116,46,111,117,116,108,105,110,101,115,44,97,61,111,46,115,116,97,114,116,44,115,61,111,46,101,110,100,59,105,102,40,48,61,61,61,97,46,108,101,110,103,116,104,124,124,48,61,61,61,115,46,108,101,110,103,116,104,124,124,33,105,46,108,101,110,103,116,104,124,124,33,105,91,48,93,46,101,108,41,114,101,116,117,114,110,32,50,59,118,97,114,32,99,61,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,77,97,116,104,44,97,41,44,117,61,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,115,41,59,114,101,116,117,114,110,32,114,43,101,60,99,63,49,58,110,45,101,62,117,63,45,49,58,48,125,118,97,114,32,83,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,44,101,41,123,116,104,105,115,46,111,112,116,105,111,110,115,61,81,116,40,123,117,115,101,82,101,99,121,99,108,101,58,33,48,44,116,104,114,101,115,104,111,108,100,58,49,48,48,44,97,112,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,125,44,112,114,101,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,125,44,114,101,99,121,99,108,101,58,102,117,110,99,116,105,111,110,40,41,123,125,125,44,101,41,44,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,61,116,44,116,104,105,115,46,99,108,101,97,114,40,41,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,101,46,115,101,116,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,115,116,97,116,117,115,46,115,105,122,101,61,116,125,44,101,46,115,121,110,99,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,115,116,97,116,117,115,44,110,61,101,46,115,116,97,114,116,67,117,114,115,111,114,44,114,61,101,46,101,110,100,67,117,114,115,111,114,44,105,61,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,44,111,61,105,46,115,108,105,99,101,71,114,111,117,112,115,40,110,44,114,43,49,41,44,97,61,98,101,46,112,108,117,99,107,40,111,44,34,105,116,101,109,115,34,41,44,115,61,105,46,115,121,110,99,40,116,41,44,99,61,99,101,40,111,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,103,114,111,117,112,75,101,121,59,114,101,116,117,114,110,32,105,46,103,101,116,71,114,111,117,112,66,121,75,101,121,40,101,41,125,41,41,44,117,61,117,101,40,111,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,103,114,111,117,112,75,101,121,59,114,101,116,117,114,110,32,105,46,103,101,116,71,114,111,117,112,66,121,75,101,121,40,101,41,125,41,41,44,108,61,99,63,105,46,105,110,100,101,120,79,102,40,99,41,58,45,49,44,102,61,117,63,105,46,105,110,100,101,120,79,102,40,117,41,58,45,49,59,105,102,40,108,62,45,49,38,38,102,62,45,49,41,123,118,97,114,32,104,61,77,97,116,104,46,109,105,110,40,108,44,102,41,44,112,61,77,97,116,104,46,109,97,120,40,108,44,102,41,59,108,61,104,44,102,61,112,125,101,108,115,101,32,102,62,45,49,63,108,61,102,58,108,62,45,49,38,38,40,102,61,108,41,59,105,102,40,101,46,115,116,97,114,116,67,117,114,115,111,114,61,108,44,101,46,101,110,100,67,117,114,115,111,114,61,102,44,115,46,114,101,109,111,118,101,100,46,108,101,110,103,116,104,62,48,41,114,101,116,117,114,110,34,114,101,108,97,121,111,117,116,34,59,118,97,114,32,118,61,105,46,112,108,117,99,107,40,34,105,116,101,109,115,34,44,110,44,114,41,44,103,61,100,40,97,44,118,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,116,101,109,75,101,121,59,114,101,116,117,114,110,32,101,125,41,41,44,109,61,103,46,97,100,100,101,100,44,98,61,103,46,114,101,109,111,118,101,100,44,121,61,103,46,99,104,97,110,103,101,100,59,114,101,116,117,114,110,33,109,46,108,101,110,103,116,104,38,38,40,121,46,108,101,110,103,116,104,62,48,124,124,98,46,108,101,110,103,116,104,62,48,41,63,34,108,97,121,111,117,116,34,58,34,34,125,44,101,46,114,101,99,121,99,108,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,99,121,99,108,101,38,38,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,115,116,97,116,117,115,44,114,61,110,46,115,116,97,114,116,67,117,114,115,111,114,44,105,61,110,46,101,110,100,67,117,114,115,111,114,44,111,61,110,46,115,105,122,101,59,105,102,40,45,49,33,61,61,114,38,38,45,49,33,61,61,105,41,123,118,97,114,32,97,61,116,43,111,44,115,61,116,104,105,115,46,111,112,116,105,111,110,115,44,99,61,115,46,116,104,114,101,115,104,111,108,100,44,117,61,115,46,114,101,99,121,99,108,101,44,108,61,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,115,108,105,99,101,71,114,111,117,112,115,40,114,44,105,43,49,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,79,101,40,101,44,99,44,116,44,97,41,125,41,41,44,102,61,108,46,108,101,110,103,116,104,44,104,61,101,63,48,58,108,46,108,97,115,116,73,110,100,101,120,79,102,40,48,41,44,100,61,101,63,108,46,105,110,100,101,120,79,102,40,48,41,45,49,58,108,46,108,101,110,103,116,104,45,49,59,101,124,124,45,49,61,61,61,104,124,124,40,104,43,61,49,41,44,104,60,48,124,124,100,60,48,124,124,104,62,100,124,124,100,45,104,43,49,62,61,102,124,124,40,104,61,114,43,104,44,100,61,114,43,100,44,101,63,116,104,105,115,46,115,101,116,67,117,114,115,111,114,40,34,115,116,97,114,116,34,44,100,43,49,41,58,116,104,105,115,46,115,101,116,67,117,114,115,111,114,40,34,101,110,100,34,44,104,45,49,41,44,117,40,123,115,116,97,114,116,58,104,44,101,110,100,58,100,125,41,41,125,125,125,44,101,46,115,99,114,111,108,108,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,103,101,116,67,117,114,115,111,114,115,40,41,44,110,61,101,91,48,93,44,114,61,101,91,49,93,44,105,61,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,59,105,102,40,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,116,38,38,45,49,33,61,61,110,38,38,45,49,33,61,61,114,38,38,105,46,115,105,122,101,40,41,41,123,118,97,114,32,111,61,116,104,105,115,46,95,115,116,97,116,117,115,46,115,105,122,101,44,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,115,61,97,46,116,104,114,101,115,104,111,108,100,44,99,61,97,46,97,112,112,101,110,100,44,117,61,97,46,112,114,101,112,101,110,100,44,108,61,105,46,103,101,116,71,114,111,117,112,115,40,41,44,102,61,116,43,111,44,104,61,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,108,91,110,93,46,111,117,116,108,105,110,101,115,46,115,116,97,114,116,41,44,100,61,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,77,97,116,104,44,108,91,114,93,46,111,117,116,108,105,110,101,115,46,101,110,100,41,44,112,61,108,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,61,101,46,111,117,116,108,105,110,101,115,44,105,61,114,46,115,116,97,114,116,44,111,61,114,46,101,110,100,59,105,102,40,33,105,46,108,101,110,103,116,104,124,124,33,111,46,108,101,110,103,116,104,41,114,101,116,117,114,110,33,49,59,118,97,114,32,97,61,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,77,97,116,104,44,105,41,44,99,61,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,111,41,59,114,101,116,117,114,110,32,97,45,115,60,61,102,38,38,116,60,61,99,43,115,125,41,41,44,118,61,112,46,105,110,100,101,120,79,102,40,33,48,41,44,103,61,112,46,108,97,115,116,73,110,100,101,120,79,102,40,33,48,41,59,105,102,40,126,118,38,38,118,60,110,41,117,40,123,99,97,99,104,101,58,108,46,115,108,105,99,101,40,118,44,77,97,116,104,46,109,105,110,40,110,44,103,43,49,41,41,125,41,59,101,108,115,101,32,105,102,40,114,60,103,41,99,40,123,99,97,99,104,101,58,108,46,115,108,105,99,101,40,77,97,116,104,46,109,97,120,40,118,44,114,43,49,41,44,103,43,49,41,125,41,59,101,108,115,101,123,118,97,114,32,109,61,108,46,115,108,105,99,101,40,114,43,49,44,114,43,50,41,44,98,61,108,46,115,108,105,99,101,40,110,45,49,44,110,41,44,121,61,116,60,61,104,43,115,59,102,62,61,100,45,115,38,38,40,33,121,124,124,109,46,108,101,110,103,116,104,124,124,33,98,46,108,101,110,103,116,104,41,63,99,40,123,99,97,99,104,101,58,109,125,41,58,121,38,38,117,40,123,99,97,99,104,101,58,98,125,41,125,125,125,44,101,46,115,101,116,67,117,114,115,111,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,95,115,116,97,116,117,115,44,114,61,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,44,105,61,114,46,115,105,122,101,40,41,59,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,99,121,99,108,101,41,123,105,102,40,110,46,115,116,97,114,116,67,117,114,115,111,114,61,48,44,114,46,103,101,116,79,117,116,108,105,110,101,40,105,45,49,44,34,101,110,100,34,41,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,118,111,105,100,40,110,46,101,110,100,67,117,114,115,111,114,61,105,45,49,41,59,105,102,40,34,101,110,100,34,33,61,61,116,41,114,101,116,117,114,110,125,34,115,116,97,114,116,34,61,61,61,116,63,110,46,115,116,97,114,116,67,117,114,115,111,114,61,101,58,110,46,101,110,100,67,117,114,115,111,114,61,77,97,116,104,46,109,105,110,40,105,45,49,44,101,41,44,110,46,115,116,97,114,116,67,117,114,115,111,114,61,77,97,116,104,46,109,97,120,40,48,44,110,46,115,116,97,114,116,67,117,114,115,111,114,41,125,44,101,46,115,101,116,83,116,97,116,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,115,116,97,116,117,115,61,81,116,40,116,104,105,115,46,95,115,116,97,116,117,115,44,116,41,125,44,101,46,103,101,116,83,116,97,116,117,115,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,115,116,97,116,117,115,44,114,61,110,46,115,116,97,114,116,67,117,114,115,111,114,44,105,61,110,46,101,110,100,67,117,114,115,111,114,44,111,61,110,46,115,105,122,101,44,97,61,77,97,116,104,46,109,97,120,40,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,105,110,100,101,120,79,102,40,116,41,44,48,41,44,115,61,40,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,105,110,100,101,120,79,102,40,101,41,43,49,124,124,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,115,105,122,101,40,41,41,45,49,44,99,61,77,97,116,104,46,109,97,120,40,114,45,97,44,126,114,63,48,58,45,49,41,44,117,61,77,97,116,104,46,109,97,120,40,77,97,116,104,46,109,105,110,40,105,45,97,44,115,45,97,41,44,99,41,59,114,101,116,117,114,110,123,115,116,97,114,116,67,117,114,115,111,114,58,99,44,101,110,100,67,117,114,115,111,114,58,117,44,115,105,122,101,58,111,125,125,44,101,46,103,101,116,69,100,103,101,79,117,116,108,105,110,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,115,116,97,116,117,115,44,110,61,101,46,115,116,97,114,116,67,117,114,115,111,114,44,114,61,101,46,101,110,100,67,117,114,115,111,114,59,114,101,116,117,114,110,45,49,61,61,61,110,124,124,45,49,61,61,61,114,63,91,93,58,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,79,117,116,108,105,110,101,40,34,115,116,97,114,116,34,61,61,61,116,63,110,58,114,44,116,41,125,44,101,46,103,101,116,69,100,103,101,86,97,108,117,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,103,101,116,69,100,103,101,79,117,116,108,105,110,101,40,116,41,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,63,77,97,116,104,91,34,115,116,97,114,116,34,61,61,61,116,63,34,109,105,110,34,58,34,109,97,120,34,93,46,97,112,112,108,121,40,77,97,116,104,44,101,41,58,48,125,44,101,46,103,101,116,86,105,115,105,98,108,101,73,116,101,109,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,115,116,97,116,117,115,44,101,61,116,46,115,116,97,114,116,67,117,114,115,111,114,44,110,61,116,46,101,110,100,67,117,114,115,111,114,59,114,101,116,117,114,110,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,34,105,116,101,109,115,34,44,101,44,110,41,125,44,101,46,103,101,116,67,117,114,115,111,114,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,115,116,97,116,117,115,59,114,101,116,117,114,110,91,116,46,115,116,97,114,116,67,117,114,115,111,114,44,116,46,101,110,100,67,117,114,115,111,114,93,125,44,101,46,103,101,116,67,117,114,115,111,114,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,115,116,97,116,117,115,91,34,115,116,97,114,116,34,61,61,61,116,63,34,115,116,97,114,116,67,117,114,115,111,114,34,58,34,101,110,100,67,117,114,115,111,114,34,93,125,44,101,46,103,101,116,86,105,115,105,98,108,101,68,97,116,97,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,115,116,97,116,117,115,44,101,61,116,46,115,116,97,114,116,67,117,114,115,111,114,44,110,61,116,46,101,110,100,67,117,114,115,111,114,59,114,101,116,117,114,110,32,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,115,108,105,99,101,71,114,111,117,112,115,40,101,44,110,43,49,41,125,44,101,46,114,101,109,111,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,95,115,116,97,116,117,115,44,114,61,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,44,105,61,110,46,115,116,97,114,116,67,117,114,115,111,114,44,111,61,110,46,101,110,100,67,117,114,115,111,114,44,97,61,114,46,114,101,109,111,118,101,40,116,44,101,41,59,114,101,116,117,114,110,32,97,46,103,114,111,117,112,38,38,40,116,60,105,38,38,116,104,105,115,46,115,101,116,67,117,114,115,111,114,40,34,115,116,97,114,116,34,44,105,45,49,41,44,116,60,61,111,38,38,116,104,105,115,46,115,101,116,67,117,114,115,111,114,40,34,101,110,100,34,44,111,45,49,41,41,44,114,46,115,105,122,101,40,41,124,124,40,110,46,115,116,97,114,116,67,117,114,115,111,114,61,45,49,44,110,46,101,110,100,67,117,114,115,111,114,61,45,49,41,44,97,125,44,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,115,116,97,116,117,115,61,123,115,116,97,114,116,67,117,114,115,111,114,58,45,49,44,101,110,100,67,117,114,115,111,114,58,45,49,44,115,105,122,101,58,45,49,125,125,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,107,101,40,116,44,101,41,123,114,101,116,117,114,110,126,116,46,105,110,100,101,120,79,102,40,101,41,125,118,97,114,32,67,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,44,101,44,110,44,114,41,123,116,104,105,115,46,95,105,110,102,105,110,105,116,101,61,116,44,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,61,101,44,116,104,105,115,46,95,114,101,110,100,101,114,101,114,61,110,44,116,104,105,115,46,111,112,116,105,111,110,115,61,114,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,101,46,115,101,116,76,97,121,111,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,108,97,121,111,117,116,61,116,125,44,101,46,114,101,110,100,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,104,105,115,59,118,111,105,100,32,48,61,61,61,110,38,38,40,110,61,98,101,46,112,108,117,99,107,40,101,44,34,105,116,101,109,115,34,41,41,59,118,97,114,32,111,61,114,63,101,58,101,46,114,101,118,101,114,115,101,40,41,44,97,61,91,93,44,115,61,91,93,44,99,61,110,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,101,108,125,41,41,44,117,61,116,104,105,115,46,111,112,116,105,111,110,115,46,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,44,108,61,110,101,119,32,89,40,123,112,114,101,102,105,120,58,117,125,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,109,61,108,44,108,46,99,104,101,99,107,40,99,41,44,108,46,111,110,40,34,112,114,101,82,101,97,100,121,34,44,40,102,117,110,99,116,105,111,110,40,41,123,105,46,95,105,116,101,109,77,97,110,97,103,101,114,38,38,105,46,95,112,114,101,82,101,97,100,121,40,116,44,111,44,110,44,114,41,125,41,41,46,111,110,40,34,101,114,114,111,114,34,44,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,101,46,116,97,114,103,101,116,44,111,61,101,46,105,110,100,101,120,59,105,46,95,105,116,101,109,77,97,110,97,103,101,114,38,38,105,46,95,101,114,114,111,114,40,116,44,115,44,97,44,114,44,110,44,111,41,125,41,41,46,111,110,40,34,114,101,97,100,121,69,108,101,109,101,110,116,34,44,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,110,91,101,46,105,110,100,101,120,93,59,114,46,110,101,101,100,85,112,100,97,116,101,61,33,49,44,101,46,104,97,115,76,111,97,100,105,110,103,38,38,101,46,105,115,80,114,101,82,101,97,100,121,79,118,101,114,38,38,105,46,95,114,101,97,100,121,69,108,101,109,101,110,116,40,116,44,110,91,101,46,105,110,100,101,120,93,41,125,41,41,46,111,110,40,34,114,101,97,100,121,34,44,40,102,117,110,99,116,105,111,110,40,41,123,105,46,95,105,116,101,109,77,97,110,97,103,101,114,38,38,105,46,95,114,101,97,100,121,40,116,44,115,44,97,44,110,41,125,41,41,44,116,125,44,101,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,109,38,38,116,104,105,115,46,105,109,46,100,101,115,116,114,111,121,40,41,125,44,101,46,95,112,114,101,82,101,97,100,121,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,104,105,115,44,111,61,116,104,105,115,46,95,105,110,102,105,110,105,116,101,44,97,61,116,104,105,115,46,95,108,97,121,111,117,116,44,115,61,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,44,99,61,114,63,34,101,110,100,34,58,34,115,116,97,114,116,34,44,117,61,114,63,34,115,116,97,114,116,34,58,34,101,110,100,34,44,108,61,115,46,105,110,100,101,120,79,102,40,101,91,48,93,41,44,102,61,115,46,103,101,116,71,114,111,117,112,40,108,41,44,104,61,115,46,103,101,116,71,114,111,117,112,40,108,43,40,114,63,45,49,58,49,41,41,44,100,61,91,48,93,59,104,63,100,61,104,46,111,117,116,108,105,110,101,115,91,99,93,58,102,38,38,40,100,61,102,46,111,117,116,108,105,110,101,115,91,117,93,41,44,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,117,112,100,97,116,101,83,105,122,101,40,110,41,44,101,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,111,117,116,108,105,110,101,115,91,117,93,44,110,61,116,46,110,101,101,100,85,112,100,97,116,101,124,124,33,100,46,108,101,110,103,116,104,124,124,100,46,108,101,110,103,116,104,33,61,61,101,46,108,101,110,103,116,104,124,124,33,100,46,101,118,101,114,121,40,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,61,61,61,101,91,110,93,125,41,41,59,105,102,40,33,110,41,114,101,116,117,114,110,32,100,61,116,46,111,117,116,108,105,110,101,115,91,99,93,44,118,111,105,100,32,105,46,95,114,101,110,100,101,114,101,114,46,114,101,110,100,101,114,73,116,101,109,115,40,116,46,105,116,101,109,115,41,59,118,97,114,32,111,61,116,46,105,116,101,109,115,44,115,61,97,91,114,63,34,97,112,112,101,110,100,34,58,34,112,114,101,112,101,110,100,34,93,40,111,44,100,44,33,48,41,59,81,116,40,116,44,115,41,44,105,46,95,114,101,110,100,101,114,101,114,46,114,101,110,100,101,114,73,116,101,109,115,40,115,46,105,116,101,109,115,41,44,100,61,115,46,111,117,116,108,105,110,101,115,91,99,93,44,116,46,110,101,101,100,85,112,100,97,116,101,61,33,49,125,41,41,59,118,97,114,32,112,61,77,97,116,104,46,109,97,120,40,111,46,103,101,116,67,117,114,115,111,114,40,34,115,116,97,114,116,34,41,44,48,41,44,118,61,77,97,116,104,46,109,97,120,40,111,46,103,101,116,67,117,114,115,111,114,40,34,101,110,100,34,41,44,48,41,44,103,61,115,46,105,110,100,101,120,79,102,40,101,91,48,93,46,103,114,111,117,112,75,101,121,41,44,109,61,115,46,105,110,100,101,120,79,102,40,101,91,101,46,108,101,110,103,116,104,45,49,93,46,103,114,111,117,112,75,101,121,41,44,98,61,33,48,59,105,102,40,40,103,62,118,43,49,124,124,109,60,112,45,49,41,38,38,40,98,61,33,49,41,44,98,38,38,40,114,63,40,103,61,112,44,109,61,77,97,116,104,46,109,97,120,40,118,44,109,41,41,58,40,103,61,77,97,116,104,46,109,97,120,40,77,97,116,104,46,109,105,110,40,112,44,103,41,44,48,41,44,109,61,118,41,41,44,103,62,109,41,123,118,97,114,32,121,61,103,59,103,61,109,44,109,61,121,125,116,46,116,114,105,103,103,101,114,40,34,114,101,110,100,101,114,67,111,109,112,108,101,116,101,34,44,123,115,116,97,114,116,58,103,44,101,110,100,58,109,125,41,44,116,46,116,114,105,103,103,101,114,40,34,108,97,121,111,117,116,67,111,109,112,108,101,116,101,34,44,123,105,116,101,109,115,58,98,101,46,112,108,117,99,107,40,101,44,34,105,116,101,109,115,34,41,44,105,115,65,112,112,101,110,100,58,33,33,114,125,41,125,44,101,46,95,101,114,114,111,114,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,61,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,44,115,61,105,91,111,93,44,99,61,115,46,101,108,44,117,61,116,104,105,115,46,111,112,116,105,111,110,115,46,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,44,108,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,107,101,40,101,44,99,41,41,123,101,46,112,117,115,104,40,99,41,59,118,97,114,32,116,61,110,46,105,110,100,101,120,79,102,40,111,41,59,45,49,33,61,61,116,38,38,110,46,115,112,108,105,99,101,40,116,44,49,41,125,125,44,102,61,102,117,110,99,116,105,111,110,40,41,123,114,33,61,61,99,63,107,101,40,101,44,99,41,124,124,40,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,44,115,46,99,111,110,116,101,110,116,61,99,46,111,117,116,101,114,72,84,77,76,44,107,101,40,110,44,111,41,124,124,110,46,112,117,115,104,40,111,41,41,58,108,40,41,125,44,104,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,107,101,40,101,44,99,41,41,123,105,102,40,116,41,105,102,40,76,116,40,116,41,124,124,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,41,123,118,97,114,32,105,61,114,46,112,97,114,101,110,116,78,111,100,101,59,105,46,105,110,115,101,114,116,66,101,102,111,114,101,40,73,116,40,116,41,44,114,41,44,105,46,114,101,109,111,118,101,67,104,105,108,100,40,114,41,44,115,46,99,111,110,116,101,110,116,61,99,46,111,117,116,101,114,72,84,77,76,125,101,108,115,101,32,114,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,73,109,97,103,101,69,108,101,109,101,110,116,38,38,40,114,46,115,114,99,61,116,44,114,46,103,101,116,65,116,116,114,105,98,117,116,101,40,117,43,34,119,105,100,116,104,34,41,38,38,40,114,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,117,43,34,119,105,100,116,104,34,41,44,114,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,117,43,34,104,101,105,103,104,116,34,41,41,41,59,115,46,99,111,110,116,101,110,116,61,99,46,111,117,116,101,114,72,84,77,76,44,107,101,40,110,44,111,41,124,124,110,46,112,117,115,104,40,111,41,125,125,44,100,61,102,117,110,99,116,105,111,110,40,116,41,123,107,101,40,101,44,99,41,124,124,40,99,46,105,110,110,101,114,72,84,77,76,61,116,44,115,46,99,111,110,116,101,110,116,61,99,46,111,117,116,101,114,72,84,77,76,44,107,101,40,110,44,111,41,124,124,110,46,112,117,115,104,40,111,41,41,125,44,112,61,97,46,112,108,117,99,107,40,34,105,116,101,109,115,34,41,46,105,110,100,101,120,79,102,40,115,41,59,114,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,73,109,97,103,101,69,108,101,109,101,110,116,38,38,116,46,116,114,105,103,103,101,114,40,34,105,109,97,103,101,69,114,114,111,114,34,44,123,116,97,114,103,101,116,58,114,44,101,108,101,109,101,110,116,58,99,44,105,116,101,109,115,58,105,44,105,116,101,109,58,115,44,105,116,101,109,73,110,100,101,120,58,111,44,114,101,112,108,97,99,101,58,104,44,114,101,112,108,97,99,101,73,116,101,109,58,100,44,114,101,109,111,118,101,58,102,44,114,101,109,111,118,101,73,116,101,109,58,108,44,116,111,116,97,108,73,110,100,101,120,58,112,125,41,44,116,46,116,114,105,103,103,101,114,40,34,99,111,110,116,101,110,116,69,114,114,111,114,34,44,123,116,97,114,103,101,116,58,114,44,101,108,101,109,101,110,116,58,99,44,105,116,101,109,115,58,105,44,105,116,101,109,58,115,44,105,116,101,109,73,110,100,101,120,58,111,44,114,101,112,108,97,99,101,58,104,44,114,101,112,108,97,99,101,73,116,101,109,58,100,44,114,101,109,111,118,101,58,102,44,114,101,109,111,118,101,73,116,101,109,58,108,44,116,111,116,97,108,73,110,100,101,120,58,112,125,41,125,44,101,46,95,114,101,97,100,121,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,116,114,105,103,103,101,114,40,34,114,101,97,100,121,69,108,101,109,101,110,116,34,44,123,105,116,101,109,58,101,125,41,125,44,101,46,95,114,101,97,100,121,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,104,105,115,44,111,61,116,104,105,115,46,111,112,116,105,111,110,115,46,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,44,97,61,101,46,108,101,110,103,116,104,44,115,61,110,46,108,101,110,103,116,104,59,105,102,40,97,124,124,115,41,123,118,97,114,32,99,61,110,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,91,116,93,125,41,41,59,115,63,110,101,119,32,89,40,123,112,114,101,102,105,120,58,111,125,41,46,99,104,101,99,107,40,99,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,101,108,125,41,41,41,46,111,110,40,34,114,101,97,100,121,34,44,40,102,117,110,99,116,105,111,110,40,41,123,105,46,95,114,101,110,100,101,114,101,114,46,117,112,100,97,116,101,83,105,122,101,40,99,41,44,116,46,116,114,105,103,103,101,114,40,34,114,101,97,100,121,34,44,123,114,101,109,111,118,101,58,101,44,108,97,121,111,117,116,58,33,48,125,41,125,41,41,58,116,46,116,114,105,103,103,101,114,40,34,114,101,97,100,121,34,44,123,114,101,109,111,118,101,58,101,44,108,97,121,111,117,116,58,33,48,125,41,125,101,108,115,101,32,116,46,116,114,105,103,103,101,114,40,34,114,101,97,100,121,34,44,123,114,101,109,111,118,101,58,91,93,125,41,125,44,116,125,40,41,44,80,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,123,125,41,44,116,104,105,115,46,95,114,101,115,105,122,101,84,105,109,101,114,61,48,44,116,104,105,115,46,95,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,84,105,109,101,114,61,48,44,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,79,102,102,115,101,116,61,48,44,116,104,105,115,46,95,105,115,83,99,114,111,108,108,73,115,115,117,101,61,97,116,44,116,104,105,115,46,95,112,114,101,118,80,111,115,61,110,117,108,108,44,116,104,105,115,46,95,111,110,67,104,101,99,107,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,46,103,101,116,83,99,114,111,108,108,80,111,115,40,41,44,101,61,110,46,103,101,116,79,114,103,83,99,114,111,108,108,80,111,115,40,41,59,110,46,115,101,116,83,99,114,111,108,108,80,111,115,40,101,41,59,118,97,114,32,114,61,110,46,103,101,116,83,99,114,111,108,108,80,111,115,40,41,59,110,117,108,108,61,61,61,116,124,124,110,46,95,105,115,83,99,114,111,108,108,73,115,115,117,101,38,38,48,61,61,61,101,124,124,116,61,61,61,114,63,101,38,38,40,110,46,95,105,115,83,99,114,111,108,108,73,115,115,117,101,61,33,49,41,58,40,110,46,95,105,115,83,99,114,111,108,108,73,115,115,117,101,61,33,49,44,110,46,111,112,116,105,111,110,115,46,99,104,101,99,107,40,123,105,115,70,111,114,119,97,114,100,58,116,60,114,44,115,99,114,111,108,108,80,111,115,58,114,44,111,114,103,83,99,114,111,108,108,80,111,115,58,101,44,104,111,114,105,122,111,110,116,97,108,58,110,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,125,41,41,125,44,116,104,105,115,46,95,111,110,82,101,115,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,46,111,112,116,105,111,110,115,44,101,61,116,46,114,101,115,105,122,101,68,101,98,111,117,110,99,101,44,114,61,116,46,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,44,105,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,110,46,95,114,101,115,105,122,101,84,105,109,101,114,41,44,99,108,101,97,114,84,105,109,101,111,117,116,40,110,46,95,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,84,105,109,101,114,41,44,110,46,95,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,84,105,109,101,114,61,48,44,110,46,95,114,101,115,105,122,101,84,105,109,101,114,61,48,44,110,46,114,101,115,105,122,101,40,41,44,110,46,111,112,116,105,111,110,115,46,114,101,115,105,122,101,40,41,125,59,33,110,46,95,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,84,105,109,101,114,38,38,114,62,61,101,38,38,40,110,46,95,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,84,105,109,101,114,61,90,46,115,101,116,84,105,109,101,111,117,116,40,105,44,114,41,41,44,110,46,95,114,101,115,105,122,101,84,105,109,101,114,38,38,40,99,108,101,97,114,84,105,109,101,111,117,116,40,110,46,95,114,101,115,105,122,101,84,105,109,101,114,41,44,110,46,95,114,101,115,105,122,101,84,105,109,101,114,61,48,41,44,110,46,95,114,101,115,105,122,101,84,105,109,101,114,61,90,46,115,101,116,84,105,109,101,111,117,116,40,105,44,101,41,125,44,81,116,40,116,104,105,115,46,111,112,116,105,111,110,115,61,123,99,111,110,116,97,105,110,101,114,58,116,44,114,101,115,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,99,104,101,99,107,58,102,117,110,99,116,105,111,110,40,41,123,125,44,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,58,33,49,44,104,111,114,105,122,111,110,116,97,108,58,33,49,44,114,101,115,105,122,101,68,101,98,111,117,110,99,101,58,49,48,48,44,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,58,48,125,44,101,41,44,116,104,105,115,46,95,118,105,101,119,61,116,44,116,104,105,115,46,97,116,116,97,99,104,69,118,101,110,116,40,41,44,116,104,105,115,46,114,101,115,105,122,101,40,41,44,116,104,105,115,46,115,101,116,83,99,114,111,108,108,80,111,115,40,41,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,101,46,103,101,116,83,116,97,116,117,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,95,112,114,101,118,80,111,115,58,116,104,105,115,46,95,112,114,101,118,80,111,115,44,115,99,114,111,108,108,80,111,115,58,116,104,105,115,46,103,101,116,79,114,103,83,99,114,111,108,108,80,111,115,40,41,125,125,44,101,46,115,101,116,83,116,97,116,117,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,33,48,41,44,116,104,105,115,46,95,112,114,101,118,80,111,115,61,116,46,95,112,114,101,118,80,111,115,44,101,38,38,116,104,105,115,46,115,99,114,111,108,108,84,111,40,116,46,115,99,114,111,108,108,80,111,115,41,125,44,101,46,115,99,114,111,108,108,66,121,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,63,91,116,44,48,93,58,91,48,44,116,93,59,66,116,40,116,104,105,115,46,95,118,105,101,119,44,101,91,48,93,44,101,91,49,93,41,44,116,104,105,115,46,115,101,116,83,99,114,111,108,108,80,111,115,40,41,125,44,101,46,115,99,114,111,108,108,84,111,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,63,91,116,44,48,93,58,91,48,44,116,93,59,78,116,40,116,104,105,115,46,95,118,105,101,119,44,101,91,48,93,44,101,91,49,93,41,125,44,101,46,103,101,116,83,99,114,111,108,108,80,111,115,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,112,114,101,118,80,111,115,125,44,101,46,115,101,116,83,99,114,111,108,108,80,111,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,116,104,105,115,46,103,101,116,79,114,103,83,99,114,111,108,108,80,111,115,40,41,41,44,116,104,105,115,46,95,112,114,101,118,80,111,115,61,116,45,116,104,105,115,46,103,101,116,67,111,110,116,97,105,110,101,114,79,102,102,115,101,116,40,41,125,44,101,46,97,116,116,97,99,104,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,77,116,40,116,104,105,115,46,95,118,105,101,119,44,34,115,99,114,111,108,108,34,44,116,104,105,115,46,95,111,110,67,104,101,99,107,41,44,77,116,40,90,44,34,114,101,115,105,122,101,34,44,116,104,105,115,46,95,111,110,82,101,115,105,122,101,41,125,44,101,46,103,101,116,79,114,103,83,99,114,111,108,108,80,111,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,82,116,40,116,104,105,115,46,95,118,105,101,119,44,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,41,125,44,101,46,114,101,115,101,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,114,101,118,80,111,115,61,110,117,108,108,125,44,101,46,103,101,116,67,111,110,116,97,105,110,101,114,79,102,102,115,101,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,99,111,110,116,97,105,110,101,114,79,102,102,115,101,116,125,44,101,46,114,101,115,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,79,102,102,115,101,116,61,116,104,105,115,46,111,112,116,105,111,110,115,46,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,63,48,58,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,40,41,125,44,101,46,100,101,116,97,99,104,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,36,116,40,116,104,105,115,46,95,118,105,101,119,44,34,115,99,114,111,108,108,34,44,116,104,105,115,46,95,111,110,67,104,101,99,107,41,44,36,116,40,90,44,34,114,101,115,105,122,101,34,44,116,104,105,115,46,95,111,110,82,101,115,105,122,101,41,125,44,101,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,101,116,97,99,104,69,118,101,110,116,40,41,44,116,104,105,115,46,114,101,115,101,116,40,41,125,44,101,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,116,61,116,104,105,115,46,111,112,116,105,111,110,115,44,101,61,116,46,99,111,110,116,97,105,110,101,114,44,110,61,116,46,104,111,114,105,122,111,110,116,97,108,44,114,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,114,101,116,117,114,110,32,114,91,110,63,34,108,101,102,116,34,58,34,116,111,112,34,93,43,116,104,105,115,46,103,101,116,79,114,103,83,99,114,111,108,108,80,111,115,40,41,125,44,116,125,40,41,44,84,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,110,41,123,118,97,114,32,114,61,116,46,99,97,108,108,40,116,104,105,115,41,124,124,116,104,105,115,59,114,46,95,108,111,97,100,105,110,103,66,97,114,61,123,125,44,114,46,95,114,101,113,117,101,115,116,71,114,111,117,112,115,61,91,93,44,81,116,40,114,46,111,112,116,105,111,110,115,61,74,40,123,125,44,118,116,41,44,110,41,44,107,116,38,38,40,114,46,111,112,116,105,111,110,115,46,117,115,101,70,105,116,61,33,49,41,44,115,116,38,38,40,114,46,111,112,116,105,111,110,115,46,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,61,33,49,41,44,114,46,95,114,101,115,101,116,40,41,59,118,97,114,32,105,61,114,46,111,112,116,105,111,110,115,44,111,61,105,46,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,44,97,61,105,46,105,115,69,113,117,97,108,83,105,122,101,44,115,61,105,46,105,115,67,111,110,115,116,97,110,116,83,105,122,101,44,99,61,105,46,104,111,114,105,122,111,110,116,97,108,44,117,61,105,46,116,104,114,101,115,104,111,108,100,44,108,61,105,46,117,115,101,82,101,99,121,99,108,101,44,102,61,105,46,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,44,104,61,105,46,114,101,115,105,122,101,68,101,98,111,117,110,99,101,44,100,61,105,46,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,44,112,61,105,46,112,101,114,99,101,110,116,97,103,101,44,118,61,105,46,117,115,101,79,102,102,115,101,116,59,114,101,116,117,114,110,32,114,46,95,105,116,101,109,77,97,110,97,103,101,114,61,110,101,119,32,98,101,44,114,46,95,114,101,110,100,101,114,101,114,61,110,101,119,32,120,101,40,101,44,123,105,115,69,113,117,97,108,83,105,122,101,58,97,44,105,115,67,111,110,115,116,97,110,116,83,105,122,101,58,115,44,104,111,114,105,122,111,110,116,97,108,58,99,44,99,111,110,116,97,105,110,101,114,58,111,44,112,101,114,99,101,110,116,97,103,101,58,112,44,117,115,101,79,102,102,115,101,116,58,118,125,41,44,114,46,95,119,97,116,99,104,101,114,61,110,101,119,32,80,101,40,114,46,95,114,101,110,100,101,114,101,114,46,118,105,101,119,44,123,114,101,115,105,122,101,68,101,98,111,117,110,99,101,58,104,44,109,97,120,82,101,115,105,122,101,68,101,98,111,117,110,99,101,58,100,44,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,58,111,44,104,111,114,105,122,111,110,116,97,108,58,99,44,99,111,110,116,97,105,110,101,114,58,114,46,95,114,101,110,100,101,114,101,114,46,99,111,110,116,97,105,110,101,114,44,114,101,115,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,46,95,111,110,82,101,115,105,122,101,40,41,125,44,99,104,101,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,95,111,110,67,104,101,99,107,40,116,41,125,125,41,44,114,46,95,105,110,102,105,110,105,116,101,61,110,101,119,32,83,101,40,114,46,95,105,116,101,109,77,97,110,97,103,101,114,44,123,117,115,101,82,101,99,121,99,108,101,58,108,44,116,104,114,101,115,104,111,108,100,58,117,44,97,112,112,101,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,95,114,101,113,117,101,115,116,65,112,112,101,110,100,40,116,41,125,44,112,114,101,112,101,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,95,114,101,113,117,101,115,116,80,114,101,112,101,110,100,40,116,41,125,44,114,101,99,121,99,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,95,114,101,99,121,99,108,101,40,91,116,93,41,125,125,41,44,114,46,95,114,101,110,100,101,114,77,97,110,97,103,101,114,61,110,101,119,32,67,101,40,114,46,95,105,110,102,105,110,105,116,101,44,114,46,95,105,116,101,109,77,97,110,97,103,101,114,44,114,46,95,114,101,110,100,101,114,101,114,44,123,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,58,102,44,105,115,69,113,117,97,108,83,105,122,101,58,97,44,105,115,67,111,110,115,116,97,110,116,83,105,122,101,58,115,44,104,111,114,105,122,111,110,116,97,108,58,99,125,41,44,114,125,88,40,101,44,116,41,59,118,97,114,32,110,61,101,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,110,46,97,112,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,108,97,121,111,117,116,38,38,116,104,105,115,46,95,105,110,115,101,114,116,40,123,101,108,101,109,101,110,116,115,58,116,44,105,115,65,112,112,101,110,100,58,33,48,44,103,114,111,117,112,75,101,121,58,101,125,41,44,116,104,105,115,125,44,110,46,112,114,101,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,108,97,121,111,117,116,38,38,116,104,105,115,46,95,105,110,115,101,114,116,40,123,101,108,101,109,101,110,116,115,58,116,44,105,115,65,112,112,101,110,100,58,33,49,44,103,114,111,117,112,75,101,121,58,101,125,41,44,116,104,105,115,125,44,110,46,115,101,116,76,97,121,111,117,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,123,125,41,59,118,97,114,32,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,59,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,116,104,105,115,46,95,108,97,121,111,117,116,61,110,101,119,32,116,40,81,116,40,101,44,123,104,111,114,105,122,111,110,116,97,108,58,110,125,41,41,58,40,116,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,61,110,44,116,104,105,115,46,95,108,97,121,111,117,116,61,116,41,44,116,104,105,115,46,95,114,101,110,100,101,114,77,97,110,97,103,101,114,46,115,101,116,76,97,121,111,117,116,40,116,104,105,115,46,95,108,97,121,111,117,116,41,44,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,114,101,115,105,122,101,40,41,44,116,104,105,115,46,95,115,101,116,83,105,122,101,40,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,103,101,116,86,105,101,119,112,111,114,116,83,105,122,101,40,41,41,44,116,104,105,115,125,44,110,46,103,101,116,73,116,101,109,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,33,49,41,44,116,63,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,34,105,116,101,109,115,34,41,58,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,103,101,116,86,105,115,105,98,108,101,73,116,101,109,115,40,41,125,44,110,46,103,101,116,82,101,110,100,101,114,105,110,103,73,116,101,109,115,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,73,116,101,109,115,40,41,44,101,61,123,125,59,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,101,91,116,46,105,116,101,109,75,101,121,93,61,33,48,125,41,41,59,118,97,114,32,110,61,98,101,46,112,108,117,99,107,40,116,104,105,115,46,95,114,101,113,117,101,115,116,71,114,111,117,112,115,44,34,105,116,101,109,115,34,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,101,91,116,46,105,116,101,109,75,101,121,93,38,38,40,101,91,116,46,105,116,101,109,75,101,121,93,61,33,48,44,33,48,41,125,41,41,59,114,101,116,117,114,110,32,116,46,99,111,110,99,97,116,40,110,41,125,44,110,46,98,101,102,111,114,101,83,121,110,99,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,110,102,105,110,105,116,101,46,115,121,110,99,40,116,41,125,44,110,46,115,121,110,99,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,95,105,116,101,109,77,97,110,97,103,101,114,44,114,61,116,104,105,115,46,95,105,110,102,105,110,105,116,101,44,105,61,116,104,105,115,46,103,101,116,82,101,110,100,101,114,105,110,103,73,116,101,109,115,40,41,59,105,102,40,105,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,105,61,110,46,101,108,33,61,61,116,91,114,93,59,110,46,101,108,61,116,91,114,93,44,105,38,38,101,46,95,114,101,110,100,101,114,101,114,46,114,101,110,100,101,114,73,116,101,109,40,110,44,110,46,114,101,99,116,41,125,41,41,44,33,116,104,105,115,46,95,105,115,80,114,111,99,101,115,115,105,110,103,40,41,41,123,118,97,114,32,111,61,105,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,110,101,101,100,85,112,100,97,116,101,124,124,33,116,46,111,114,103,83,105,122,101,124,124,33,116,46,111,114,103,83,105,122,101,46,119,105,100,116,104,125,41,41,59,105,102,40,111,46,108,101,110,103,116,104,41,116,104,105,115,46,95,112,111,115,116,76,97,121,111,117,116,40,123,102,114,111,109,67,97,99,104,101,58,33,49,44,103,114,111,117,112,115,58,114,46,103,101,116,86,105,115,105,98,108,101,68,97,116,97,40,41,44,110,101,119,73,116,101,109,115,58,111,44,105,115,65,112,112,101,110,100,58,33,48,44,105,115,84,114,117,115,116,101,100,58,33,49,125,41,59,101,108,115,101,123,118,97,114,32,97,61,110,46,115,105,122,101,40,41,59,105,102,40,97,41,105,102,40,114,46,103,101,116,67,117,114,115,111,114,40,34,115,116,97,114,116,34,41,60,48,41,123,118,97,114,32,115,61,110,46,103,101,116,71,114,111,117,112,40,48,41,59,116,104,105,115,46,95,112,111,115,116,76,97,121,111,117,116,40,123,103,114,111,117,112,115,58,91,115,93,44,104,97,115,67,104,105,108,100,114,101,110,58,33,49,44,102,114,111,109,67,97,99,104,101,58,33,49,44,105,115,65,112,112,101,110,100,58,33,48,125,41,125,101,108,115,101,32,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,115,99,114,111,108,108,40,116,104,105,115,46,95,119,97,116,99,104,101,114,46,103,101,116,83,99,114,111,108,108,80,111,115,40,41,41,59,101,108,115,101,32,116,104,105,115,46,95,114,101,113,117,101,115,116,65,112,112,101,110,100,40,123,125,41,125,125,125,44,110,46,108,97,121,111,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,33,48,41,44,33,116,104,105,115,46,95,108,97,121,111,117,116,41,114,101,116,117,114,110,32,116,104,105,115,59,118,97,114,32,101,61,116,104,105,115,46,95,114,101,110,100,101,114,101,114,44,110,61,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,44,114,61,116,104,105,115,46,95,105,110,102,105,110,105,116,101,44,105,61,101,46,114,101,115,105,122,101,40,41,44,111,61,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,44,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,115,61,97,46,105,115,69,113,117,97,108,83,105,122,101,44,99,61,97,46,105,115,67,111,110,115,116,97,110,116,83,105,122,101,44,117,61,97,46,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,44,108,61,116,38,38,40,115,124,124,99,41,59,105,102,40,116,104,105,115,46,95,119,97,116,99,104,101,114,46,114,101,115,105,122,101,40,41,44,116,38,38,116,104,105,115,46,95,115,101,116,83,105,122,101,40,101,46,103,101,116,86,105,101,119,112,111,114,116,83,105,122,101,40,41,41,44,33,111,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,116,104,105,115,46,95,102,105,114,115,116,76,97,121,111,117,116,40,41,59,118,97,114,32,102,61,114,46,103,101,116,67,117,114,115,111,114,115,40,41,44,104,61,102,91,48,93,44,100,61,102,91,49,93,44,112,61,33,108,38,38,116,38,38,105,63,110,46,115,108,105,99,101,71,114,111,117,112,115,40,104,44,100,43,49,41,58,110,46,103,101,116,71,114,111,117,112,115,40,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,114,101,108,97,121,111,117,116,40,116,44,112,44,105,63,111,58,91,93,41,44,108,63,116,104,105,115,46,95,102,105,116,40,41,58,116,38,38,105,38,38,110,46,99,108,101,97,114,79,117,116,108,105,110,101,115,40,104,44,100,41,44,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,114,101,110,100,101,114,73,116,101,109,115,40,111,44,117,41,44,116,38,38,116,104,105,115,46,95,119,97,116,99,104,101,114,46,115,101,116,83,99,114,111,108,108,80,111,115,40,41,44,116,104,105,115,46,95,111,110,76,97,121,111,117,116,67,111,109,112,108,101,116,101,40,123,105,116,101,109,115,58,111,44,105,115,65,112,112,101,110,100,58,33,48,44,102,114,111,109,67,97,99,104,101,58,33,48,44,105,115,84,114,117,115,116,101,100,58,33,49,44,117,115,101,82,101,99,121,99,108,101,58,33,49,44,105,115,76,97,121,111,117,116,58,33,48,125,41,44,116,104,105,115,125,44,110,46,114,101,109,111,118,101,66,121,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,111,105,100,32,48,61,61,61,110,38,38,40,110,61,33,48,41,59,118,97,114,32,114,61,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,114,101,109,111,118,101,40,116,44,101,41,44,105,61,114,46,105,116,101,109,115,44,111,61,114,46,103,114,111,117,112,59,114,101,116,117,114,110,32,105,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,120,101,46,114,101,109,111,118,101,69,108,101,109,101,110,116,40,116,46,101,108,41,125,41,41,44,105,46,108,101,110,103,116,104,63,40,110,38,38,116,104,105,115,46,108,97,121,111,117,116,40,33,33,111,41,44,105,41,58,91,93,125,44,110,46,114,101,109,111,118,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,33,48,41,59,118,97,114,32,110,61,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,105,110,100,101,120,101,115,79,102,69,108,101,109,101,110,116,40,116,41,44,114,61,110,46,103,114,111,117,112,73,110,100,101,120,44,105,61,110,46,105,116,101,109,73,110,100,101,120,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,109,111,118,101,66,121,73,110,100,101,120,40,114,44,105,44,101,41,125,44,110,46,103,101,116,71,114,111,117,112,75,101,121,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,63,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,71,114,111,117,112,115,40,41,58,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,103,101,116,86,105,115,105,98,108,101,68,97,116,97,40,41,59,114,101,116,117,114,110,32,101,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,114,111,117,112,75,101,121,125,41,41,125,44,110,46,103,101,116,83,116,97,116,117,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,123,95,115,116,97,116,117,115,58,81,116,40,123,125,44,116,104,105,115,46,95,115,116,97,116,117,115,41,44,95,105,116,101,109,77,97,110,97,103,101,114,58,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,83,116,97,116,117,115,40,116,44,101,41,44,95,114,101,110,100,101,114,101,114,58,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,103,101,116,83,116,97,116,117,115,40,41,44,95,119,97,116,99,104,101,114,58,116,104,105,115,46,95,119,97,116,99,104,101,114,46,103,101,116,83,116,97,116,117,115,40,41,44,95,105,110,102,105,110,105,116,101,58,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,103,101,116,83,116,97,116,117,115,40,116,44,101,41,125,125,44,110,46,115,101,116,83,116,97,116,117,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,33,48,41,44,33,116,41,114,101,116,117,114,110,32,116,104,105,115,59,118,97,114,32,114,61,116,46,95,115,116,97,116,117,115,44,105,61,116,46,95,114,101,110,100,101,114,101,114,44,111,61,116,46,95,105,116,101,109,77,97,110,97,103,101,114,44,97,61,116,46,95,119,97,116,99,104,101,114,44,115,61,116,46,95,105,110,102,105,110,105,116,101,59,105,102,40,33,114,124,124,33,105,124,124,33,111,124,124,33,97,124,124,33,115,41,114,101,116,117,114,110,32,116,104,105,115,59,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,110,100,101,114,69,120,116,101,114,110,97,108,44,117,61,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,44,108,61,116,104,105,115,46,95,114,101,110,100,101,114,101,114,44,102,61,116,104,105,115,46,95,119,97,116,99,104,101,114,44,104,61,116,104,105,115,46,95,105,110,102,105,110,105,116,101,59,102,46,100,101,116,97,99,104,69,118,101,110,116,40,41,44,81,116,40,116,104,105,115,46,95,115,116,97,116,117,115,44,114,41,44,116,104,105,115,46,95,115,116,97,116,117,115,46,112,114,111,99,101,115,115,105,110,103,83,116,97,116,117,115,61,121,116,44,117,46,115,101,116,83,116,97,116,117,115,40,111,41,44,108,46,115,101,116,83,116,97,116,117,115,40,105,41,44,104,46,115,101,116,83,116,97,116,117,115,40,115,41,59,118,97,114,32,100,61,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,44,112,61,100,46,108,101,110,103,116,104,59,99,63,40,100,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,101,108,61,110,91,101,93,125,41,41,44,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,114,101,110,100,101,114,73,116,101,109,115,40,100,41,41,58,108,46,99,114,101,97,116,101,65,110,100,73,110,115,101,114,116,40,100,44,33,48,41,59,118,97,114,32,118,61,108,46,105,115,78,101,101,100,101,100,82,101,115,105,122,101,40,41,59,102,46,115,101,116,83,116,97,116,117,115,40,97,44,101,41,44,102,46,97,116,116,97,99,104,69,118,101,110,116,40,41,59,118,97,114,32,103,61,116,104,105,115,46,111,112,116,105,111,110,115,44,109,61,103,46,105,115,67,111,110,115,116,97,110,116,83,105,122,101,44,98,61,103,46,105,115,69,113,117,97,108,83,105,122,101,59,114,101,116,117,114,110,32,112,63,118,63,40,108,46,114,101,115,105,122,101,40,41,44,116,104,105,115,46,95,115,101,116,83,105,122,101,40,108,46,103,101,116,86,105,101,119,112,111,114,116,83,105,122,101,40,41,41,44,109,63,116,104,105,115,46,108,97,121,111,117,116,40,33,48,41,58,40,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,99,108,101,97,114,79,117,116,108,105,110,101,115,40,41,44,116,104,105,115,46,95,112,111,115,116,76,97,121,111,117,116,40,123,102,114,111,109,67,97,99,104,101,58,33,48,44,103,114,111,117,112,115,58,98,63,117,46,103,101,116,71,114,111,117,112,115,40,41,58,104,46,103,101,116,86,105,115,105,98,108,101,68,97,116,97,40,41,44,105,116,101,109,115,58,100,44,110,101,119,73,116,101,109,115,58,100,44,105,115,65,112,112,101,110,100,58,33,48,44,105,115,84,114,117,115,116,101,100,58,33,49,125,41,41,41,58,116,104,105,115,46,108,97,121,111,117,116,40,33,49,41,58,116,104,105,115,46,95,114,101,113,117,101,115,116,65,112,112,101,110,100,40,123,99,97,99,104,101,58,91,93,125,41,44,116,104,105,115,125,44,110,46,99,108,101,97,114,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,105,116,101,109,77,97,110,97,103,101,114,46,99,108,101,97,114,40,41,44,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,99,108,101,97,114,40,41,44,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,99,108,101,97,114,40,41,44,116,104,105,115,46,95,114,101,115,101,116,40,41,44,116,104,105,115,46,95,97,112,112,101,110,100,76,111,97,100,105,110,103,66,97,114,40,41,44,116,104,105,115,125,44,110,46,115,101,116,76,111,97,100,105,110,103,66,97,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,123,125,41,59,118,97,114,32,101,61,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,63,116,58,123,97,112,112,101,110,100,58,116,44,112,114,101,112,101,110,100,58,116,125,59,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,105,122,101,61,48,44,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,116,121,108,101,61,123,125,59,118,97,114,32,110,61,116,104,105,115,46,95,108,111,97,100,105,110,103,66,97,114,44,114,61,33,49,59,102,111,114,40,118,97,114,32,105,32,105,110,32,101,41,123,118,97,114,32,111,61,73,116,40,101,91,105,93,41,59,110,91,105,93,33,61,61,111,38,38,40,110,91,105,93,61,111,44,114,61,33,48,41,44,112,101,40,111,44,117,116,41,124,124,118,101,40,111,44,117,116,41,125,114,101,116,117,114,110,32,114,38,38,116,104,105,115,46,95,114,101,110,100,101,114,76,111,97,100,105,110,103,40,41,44,116,104,105,115,46,95,97,112,112,101,110,100,76,111,97,100,105,110,103,66,97,114,40,41,44,116,104,105,115,125,44,110,46,105,115,80,114,111,99,101,115,115,105,110,103,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,105,115,80,114,111,99,101,115,115,105,110,103,40,41,124,124,116,104,105,115,46,105,115,76,111,97,100,105,110,103,40,41,125,44,110,46,105,115,76,111,97,100,105,110,103,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,103,101,116,76,111,97,100,105,110,103,83,116,97,116,117,115,40,41,62,48,125,44,110,46,103,101,116,76,111,97,100,105,110,103,66,97,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,116,104,105,115,46,95,103,101,116,76,111,97,100,105,110,103,83,116,97,116,117,115,40,41,33,61,61,95,116,41,44,116,104,105,115,46,95,108,111,97,100,105,110,103,66,97,114,91,116,63,34,97,112,112,101,110,100,34,58,34,112,114,101,112,101,110,100,34,93,125,44,110,46,115,116,97,114,116,76,111,97,100,105,110,103,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,59,105,102,40,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,123,100,105,115,112,108,97,121,58,34,98,108,111,99,107,34,125,41,44,116,104,105,115,46,105,115,76,111,97,100,105,110,103,40,41,41,114,101,116,117,114,110,32,116,104,105,115,59,118,97,114,32,114,61,116,63,34,97,112,112,101,110,100,34,58,34,112,114,101,112,101,110,100,34,59,105,102,40,116,104,105,115,46,95,112,114,111,99,101,115,115,40,116,63,119,116,58,95,116,41,44,33,116,104,105,115,46,95,108,111,97,100,105,110,103,66,97,114,91,114,93,41,114,101,116,117,114,110,32,116,104,105,115,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,41,123,110,46,95,114,101,110,100,101,114,76,111,97,100,105,110,103,40,101,41,44,110,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,116,121,108,101,61,101,44,116,63,110,46,95,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,40,110,46,95,103,101,116,69,100,103,101,86,97,108,117,101,40,34,101,110,100,34,41,43,110,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,105,122,101,41,58,110,46,95,102,105,116,40,41,125,59,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,110,100,101,114,69,120,116,101,114,110,97,108,63,116,104,105,115,46,116,114,105,103,103,101,114,40,34,114,101,110,100,101,114,34,44,123,110,101,120,116,58,105,125,41,58,105,40,41,44,116,104,105,115,125,44,110,46,101,110,100,76,111,97,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,59,105,102,40,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,123,100,105,115,112,108,97,121,58,34,110,111,110,101,34,125,41,44,33,116,104,105,115,46,105,115,76,111,97,100,105,110,103,40,41,41,114,101,116,117,114,110,32,116,104,105,115,59,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,76,111,97,100,105,110,103,83,116,97,116,117,115,40,41,61,61,61,119,116,44,114,61,110,63,34,97,112,112,101,110,100,34,58,34,112,114,101,112,101,110,100,34,44,105,61,116,104,105,115,46,95,108,111,97,100,105,110,103,66,97,114,91,114,93,44,111,61,116,104,105,115,46,95,115,116,97,116,117,115,44,97,61,111,46,108,111,97,100,105,110,103,83,105,122,101,59,105,102,40,116,104,105,115,46,95,112,114,111,99,101,115,115,40,119,116,124,95,116,44,33,49,41,44,111,46,108,111,97,100,105,110,103,83,105,122,101,61,48,44,111,46,108,111,97,100,105,110,103,83,116,121,108,101,61,123,125,44,105,41,123,118,97,114,32,115,61,81,116,40,40,101,61,123,125,44,101,91,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,63,34,108,101,102,116,34,58,34,116,111,112,34,93,61,45,97,43,34,112,120,34,44,101,41,44,116,41,59,102,111,114,40,118,97,114,32,99,32,105,110,32,115,41,105,46,115,116,121,108,101,91,99,93,61,115,91,99,93,59,110,63,116,104,105,115,46,95,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,40,116,104,105,115,46,95,103,101,116,69,100,103,101,86,97,108,117,101,40,34,101,110,100,34,41,41,58,116,104,105,115,46,95,102,105,116,73,116,101,109,115,40,97,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,110,100,101,114,69,120,116,101,114,110,97,108,38,38,116,104,105,115,46,116,114,105,103,103,101,114,40,34,114,101,110,100,101,114,34,44,123,110,101,120,116,58,102,117,110,99,116,105,111,110,40,41,123,125,125,41,125,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,99,121,99,108,101,38,38,33,116,104,105,115,46,105,115,80,114,111,99,101,115,115,105,110,103,40,41,38,38,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,114,101,99,121,99,108,101,40,116,104,105,115,46,95,119,97,116,99,104,101,114,46,103,101,116,83,99,114,111,108,108,80,111,115,40,41,44,110,41,44,116,104,105,115,125,44,110,46,103,101,116,73,116,101,109,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,48,41,44,34,111,98,106,101,99,116,34,33,61,61,116,121,112,101,111,102,32,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,71,114,111,117,112,40,116,41,59,114,101,116,117,114,110,32,110,38,38,110,46,105,116,101,109,115,91,101,124,124,48,93,125,105,102,40,116,41,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,44,105,61,114,46,108,101,110,103,116,104,44,111,61,48,59,111,60,105,59,43,43,111,41,105,102,40,114,91,111,93,46,101,108,61,61,61,116,41,114,101,116,117,114,110,32,114,91,111,93,125,44,110,46,117,112,100,97,116,101,73,116,101,109,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,103,101,116,73,116,101,109,40,116,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,117,112,100,97,116,101,73,116,101,109,40,110,41,38,38,116,104,105,115,46,108,97,121,111,117,116,40,33,49,41,44,116,104,105,115,125,44,110,46,117,112,100,97,116,101,73,116,101,109,115,61,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,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,95,117,112,100,97,116,101,73,116,101,109,40,101,41,125,41,41,44,116,104,105,115,46,108,97,121,111,117,116,40,33,49,41,44,116,104,105,115,125,44,110,46,109,111,118,101,84,111,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,59,105,102,40,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,48,41,44,116,104,105,115,46,105,115,80,114,111,99,101,115,115,105,110,103,40,41,41,114,101,116,117,114,110,32,116,104,105,115,59,118,97,114,32,114,61,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,71,114,111,117,112,40,116,41,59,105,102,40,33,114,41,114,101,116,117,114,110,32,116,104,105,115,59,118,97,114,32,105,61,116,104,105,115,46,95,105,110,102,105,110,105,116,101,44,111,61,114,46,111,117,116,108,105,110,101,115,44,97,61,114,46,105,116,101,109,115,44,115,61,97,91,101,93,44,99,61,111,46,115,116,97,114,116,38,38,48,61,61,61,111,46,115,116,97,114,116,46,108,101,110,103,116,104,44,117,61,105,46,103,101,116,67,117,114,115,111,114,115,40,41,44,108,61,117,91,48,93,44,102,61,117,91,49,93,44,104,61,108,60,61,116,38,38,116,60,61,102,44,100,61,116,104,105,115,46,111,112,116,105,111,110,115,44,112,61,100,46,117,115,101,82,101,99,121,99,108,101,44,118,61,100,46,104,111,114,105,122,111,110,116,97,108,59,105,102,40,104,124,124,33,112,124,124,33,99,41,123,118,97,114,32,103,61,115,63,115,46,114,101,99,116,91,118,63,34,108,101,102,116,34,58,34,116,111,112,34,93,58,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,111,46,115,116,97,114,116,41,44,109,61,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,77,97,116,104,44,111,46,115,116,97,114,116,41,59,109,60,48,38,38,40,116,104,105,115,46,95,102,105,116,73,116,101,109,115,40,109,44,48,41,44,103,45,61,109,41,59,118,97,114,32,98,61,116,62,108,59,114,101,116,117,114,110,32,104,124,124,98,63,40,116,104,105,115,46,95,115,99,114,111,108,108,84,111,40,103,41,44,116,104,105,115,41,58,40,116,104,105,115,46,95,112,111,115,116,76,97,121,111,117,116,40,123,102,114,111,109,67,97,99,104,101,58,33,48,44,103,114,111,117,112,115,58,91,114,93,44,105,116,101,109,115,58,97,44,110,101,119,73,116,101,109,115,58,91,93,44,105,115,65,112,112,101,110,100,58,98,44,105,115,84,114,117,115,116,101,100,58,33,49,125,41,46,111,110,40,34,114,101,110,100,101,114,67,111,109,112,108,101,116,101,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,116,46,115,116,97,114,116,44,105,61,116,46,101,110,100,44,111,61,110,46,95,105,116,101,109,77,97,110,97,103,101,114,59,105,102,40,111,41,123,118,97,114,32,115,61,97,91,101,93,46,114,101,99,116,91,118,63,34,108,101,102,116,34,58,34,116,111,112,34,93,59,104,124,124,111,46,99,108,101,97,114,79,117,116,108,105,110,101,115,40,114,44,105,41,44,110,46,95,115,99,114,111,108,108,84,111,40,115,41,44,110,46,95,115,101,116,83,99,114,111,108,108,80,111,115,40,115,41,125,125,41,41,44,116,104,105,115,41,125,98,61,116,62,102,124,124,116,60,108,45,49,59,114,101,116,117,114,110,32,116,104,105,115,46,95,112,111,115,116,67,97,99,104,101,40,123,105,115,65,112,112,101,110,100,58,98,44,99,97,99,104,101,58,91,114,93,44,105,115,84,114,117,115,116,101,100,58,33,49,125,41,46,111,110,40,34,114,101,110,100,101,114,67,111,109,112,108,101,116,101,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,116,46,115,116,97,114,116,44,105,61,116,46,101,110,100,44,111,61,110,46,95,105,116,101,109,77,97,110,97,103,101,114,59,105,102,40,111,41,123,118,97,114,32,115,61,97,91,101,93,46,114,101,99,116,91,118,63,34,108,101,102,116,34,58,34,116,111,112,34,93,59,111,46,99,108,101,97,114,79,117,116,108,105,110,101,115,40,114,44,105,41,44,110,46,95,115,99,114,111,108,108,84,111,40,115,41,44,110,46,95,115,101,116,83,99,114,111,108,108,80,111,115,40,115,41,125,125,41,41,44,116,104,105,115,125,44,110,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,99,108,101,97,114,40,41,44,116,104,105,115,46,95,119,97,116,99,104,101,114,46,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,95,114,101,115,101,116,40,41,44,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,99,108,101,97,114,40,41,44,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,95,114,101,110,100,101,114,77,97,110,97,103,101,114,46,100,101,115,116,114,111,121,40,41,125,44,110,46,95,114,101,108,97,121,111,117,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,46,95,114,101,110,100,101,114,101,114,44,105,61,114,46,111,112,116,105,111,110,115,44,111,61,105,46,105,115,69,113,117,97,108,83,105,122,101,44,97,61,105,46,105,115,67,111,110,115,116,97,110,116,83,105,122,101,44,115,61,101,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,116,101,109,115,91,48,93,59,114,101,116,117,114,110,32,101,46,111,114,103,83,105,122,101,38,38,101,46,114,101,99,116,46,116,111,112,62,100,116,47,49,48,125,41,41,59,105,102,40,33,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,99,61,115,91,48,93,46,111,117,116,108,105,110,101,115,46,115,116,97,114,116,59,116,38,38,40,99,61,91,99,46,108,101,110,103,116,104,63,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,77,97,116,104,44,99,41,58,48,93,44,33,97,38,38,110,46,108,101,110,103,116,104,38,38,40,114,46,117,112,100,97,116,101,83,105,122,101,40,110,41,44,111,38,38,110,91,48,93,46,115,105,122,101,38,38,98,101,46,112,108,117,99,107,40,115,44,34,105,116,101,109,115,34,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,105,122,101,61,81,116,40,123,125,44,110,91,48,93,46,115,105,122,101,41,125,41,41,41,41,44,116,104,105,115,46,95,108,97,121,111,117,116,46,108,97,121,111,117,116,40,115,44,99,41,44,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,110,101,101,100,85,112,100,97,116,101,61,33,49,125,41,41,125,44,110,46,95,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,40,77,97,116,104,46,109,97,120,40,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,103,101,116,77,97,120,69,100,103,101,86,97,108,117,101,40,41,44,116,41,41,125,44,110,46,95,97,112,112,101,110,100,76,111,97,100,105,110,103,66,97,114,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,110,100,101,114,69,120,116,101,114,110,97,108,41,123,118,97,114,32,116,61,116,104,105,115,46,95,108,111,97,100,105,110,103,66,97,114,44,101,61,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,99,111,110,116,97,105,110,101,114,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,41,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,91,110,93,41,125,125,44,110,46,95,115,101,116,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,115,101,116,83,105,122,101,40,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,103,101,116,86,105,101,119,83,105,122,101,40,41,41,44,116,104,105,115,46,95,108,97,121,111,117,116,46,115,101,116,83,105,122,101,40,116,41,125,44,110,46,95,102,105,116,73,116,101,109,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,48,41,44,116,62,48,38,38,116,104,105,115,46,95,119,97,116,99,104,101,114,46,115,99,114,111,108,108,66,121,40,45,116,41,44,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,46,102,105,116,40,116,44,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,41,44,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,114,101,110,100,101,114,73,116,101,109,115,40,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,41,44,116,104,105,115,46,95,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,40,116,104,105,115,46,95,103,101,116,69,100,103,101,86,97,108,117,101,40,34,101,110,100,34,41,124,124,101,41,44,116,60,48,38,38,116,104,105,115,46,95,119,97,116,99,104,101,114,46,115,99,114,111,108,108,66,121,40,45,116,41,125,44,110,46,95,102,105,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,70,105,116,41,59,118,97,114,32,101,61,116,104,105,115,46,95,103,101,116,69,100,103,101,86,97,108,117,101,40,34,115,116,97,114,116,34,41,44,110,61,116,104,105,115,46,95,103,101,116,76,111,97,100,105,110,103,83,116,97,116,117,115,40,41,61,61,61,95,116,38,38,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,105,122,101,124,124,48,44,114,61,116,104,105,115,46,111,112,116,105,111,110,115,44,105,61,114,46,105,115,67,111,110,115,116,97,110,116,83,105,122,101,44,111,61,114,46,105,115,69,113,117,97,108,83,105,122,101,44,97,61,114,46,117,115,101,82,101,99,121,99,108,101,59,105,102,40,33,97,124,124,33,116,124,124,105,124,124,111,41,101,60,110,38,38,116,104,105,115,46,95,102,105,116,73,116,101,109,115,40,101,45,110,44,110,41,44,101,61,48,59,101,108,115,101,123,105,102,40,48,61,61,61,101,38,38,33,110,41,114,101,116,117,114,110,32,48,59,116,104,105,115,46,95,102,105,116,73,116,101,109,115,40,101,45,110,44,110,41,125,114,101,116,117,114,110,32,116,104,105,115,46,105,115,76,111,97,100,105,110,103,40,41,38,38,116,104,105,115,46,95,114,101,110,100,101,114,76,111,97,100,105,110,103,40,41,44,101,125,44,110,46,95,103,101,116,69,100,103,101,86,97,108,117,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,110,102,105,110,105,116,101,46,103,101,116,69,100,103,101,86,97,108,117,101,40,116,41,125,44,110,46,95,105,115,80,114,111,99,101,115,115,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,116,104,105,115,46,95,115,116,97,116,117,115,46,112,114,111,99,101,115,115,105,110,103,83,116,97,116,117,115,38,120,116,41,62,48,125,44,110,46,95,103,101,116,76,111,97,100,105,110,103,83,116,97,116,117,115,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,116,97,116,117,115,46,112,114,111,99,101,115,115,105,110,103,83,116,97,116,117,115,38,40,119,116,124,95,116,41,125,44,110,46,95,112,114,111,99,101,115,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,33,48,41,44,101,63,116,104,105,115,46,95,115,116,97,116,117,115,46,112,114,111,99,101,115,115,105,110,103,83,116,97,116,117,115,124,61,116,58,116,104,105,115,46,95,115,116,97,116,117,115,46,112,114,111,99,101,115,115,105,110,103,83,116,97,116,117,115,45,61,116,104,105,115,46,95,115,116,97,116,117,115,46,112,114,111,99,101,115,115,105,110,103,83,116,97,116,117,115,38,116,125,44,110,46,95,105,110,115,101,114,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,101,108,101,109,101,110,116,115,44,110,61,116,46,105,115,65,112,112,101,110,100,44,114,61,116,46,104,97,115,67,104,105,108,100,114,101,110,44,105,61,116,46,103,114,111,117,112,75,101,121,44,111,61,118,111,105,100,32,48,61,61,61,105,63,116,104,105,115,46,95,103,101,116,82,97,110,100,111,109,75,101,121,40,41,58,105,59,105,102,40,33,116,104,105,115,46,95,105,115,80,114,111,99,101,115,115,105,110,103,40,41,38,38,48,33,61,61,101,46,108,101,110,103,116,104,41,123,118,97,114,32,97,61,98,101,46,116,111,73,116,101,109,115,40,73,116,40,101,44,33,48,41,44,111,41,59,116,104,105,115,46,95,105,110,115,101,114,116,73,116,101,109,115,40,123,105,116,101,109,115,58,97,44,105,115,65,112,112,101,110,100,58,110,44,104,97,115,67,104,105,108,100,114,101,110,58,114,44,103,114,111,117,112,75,101,121,58,111,125,41,125,125,44,110,46,95,105,110,115,101,114,116,73,116,101,109,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,116,101,109,115,44,110,61,116,46,105,115,65,112,112,101,110,100,44,114,61,116,46,104,97,115,67,104,105,108,100,114,101,110,44,105,61,116,46,103,114,111,117,112,75,101,121,44,111,61,118,111,105,100,32,48,61,61,61,105,63,116,104,105,115,46,95,103,101,116,82,97,110,100,111,109,75,101,121,40,41,58,105,59,105,102,40,101,46,108,101,110,103,116,104,41,123,118,97,114,32,97,61,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,91,110,63,34,97,112,112,101,110,100,71,114,111,117,112,34,58,34,112,114,101,112,101,110,100,71,114,111,117,112,34,93,40,123,103,114,111,117,112,75,101,121,58,111,44,105,116,101,109,115,58,101,125,41,59,105,102,40,33,110,41,123,118,97,114,32,115,61,116,104,105,115,46,95,105,110,102,105,110,105,116,101,44,99,61,115,46,103,101,116,67,117,114,115,111,114,115,40,41,44,117,61,99,91,48,93,44,108,61,99,91,49,93,59,115,46,115,101,116,67,117,114,115,111,114,40,34,115,116,97,114,116,34,44,117,43,49,41,44,115,46,115,101,116,67,117,114,115,111,114,40,34,101,110,100,34,44,108,43,49,41,125,116,104,105,115,46,95,112,111,115,116,76,97,121,111,117,116,40,123,102,114,111,109,67,97,99,104,101,58,33,49,44,103,114,111,117,112,115,58,91,97,93,44,105,116,101,109,115,58,97,46,105,116,101,109,115,44,110,101,119,73,116,101,109,115,58,97,46,105,116,101,109,115,44,105,115,65,112,112,101,110,100,58,110,44,104,97,115,67,104,105,108,100,114,101,110,58,114,44,105,115,84,114,117,115,116,101,100,58,33,49,125,41,125,125,44,110,46,95,114,101,99,121,99,108,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,111,112,116,105,111,110,115,44,114,61,110,46,117,115,101,82,101,99,121,99,108,101,44,105,61,110,46,114,101,110,100,101,114,69,120,116,101,114,110,97,108,59,105,102,40,33,114,41,114,101,116,117,114,110,33,49,59,118,97,114,32,111,61,33,49,59,114,101,116,117,114,110,32,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,115,116,97,114,116,44,114,61,116,46,101,110,100,59,105,102,40,33,40,45,49,61,61,61,110,124,124,45,49,61,61,61,114,124,124,114,60,110,41,41,123,118,97,114,32,97,61,101,46,95,105,116,101,109,77,97,110,97,103,101,114,46,112,108,117,99,107,40,34,105,116,101,109,115,34,44,110,44,114,41,59,111,61,111,124,124,97,46,115,111,109,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,109,111,117,110,116,101,100,125,41,41,44,97,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,109,111,117,110,116,101,100,61,33,49,125,41,41,44,105,124,124,120,101,46,114,101,109,111,118,101,73,116,101,109,115,40,97,41,125,125,41,41,44,111,38,38,40,116,104,105,115,46,95,114,101,113,117,101,115,116,71,114,111,117,112,115,61,91,93,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,114,101,110,100,101,114,34,44,123,110,101,120,116,58,102,117,110,99,116,105,111,110,40,41,123,125,125,41,41,44,111,125,44,110,46,95,114,101,110,100,101,114,76,111,97,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,116,121,108,101,41,44,116,104,105,115,46,105,115,76,111,97,100,105,110,103,40,41,41,123,118,97,114,32,101,61,116,104,105,115,46,95,103,101,116,76,111,97,100,105,110,103,83,116,97,116,117,115,40,41,61,61,61,119,116,44,110,61,116,104,105,115,46,95,108,111,97,100,105,110,103,66,97,114,91,101,63,34,97,112,112,101,110,100,34,58,34,112,114,101,112,101,110,100,34,93,59,105,102,40,110,41,123,118,97,114,32,114,61,81,116,40,123,112,111,115,105,116,105,111,110,58,34,97,98,115,111,108,117,116,101,34,125,44,116,41,59,102,111,114,40,118,97,114,32,105,32,105,110,32,114,41,110,46,115,116,121,108,101,91,105,93,61,114,91,105,93,59,118,97,114,32,111,61,116,104,105,115,46,111,112,116,105,111,110,115,44,97,61,111,46,117,115,101,79,102,102,115,101,116,44,115,61,111,46,104,111,114,105,122,111,110,116,97,108,59,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,105,122,101,61,115,63,97,63,87,116,40,110,41,58,113,116,40,110,41,58,97,63,71,116,40,110,41,58,89,116,40,110,41,59,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,63,34,108,101,102,116,34,58,34,116,111,112,34,59,105,102,40,33,40,99,32,105,110,32,114,41,41,123,118,97,114,32,117,61,101,63,116,104,105,115,46,95,103,101,116,69,100,103,101,86,97,108,117,101,40,34,101,110,100,34,41,58,116,104,105,115,46,95,103,101,116,69,100,103,101,86,97,108,117,101,40,34,115,116,97,114,116,34,41,45,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,105,122,101,59,110,46,115,116,121,108,101,91,99,93,61,117,43,34,112,120,34,125,125,125,125,44,110,46,95,117,112,100,97,116,101,73,116,101,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,40,33,116,124,124,33,116,46,101,108,41,38,38,40,116,46,99,111,110,116,101,110,116,61,116,46,101,108,46,111,117,116,101,114,72,84,77,76,44,33,116,104,105,115,46,111,112,116,105,111,110,115,46,105,115,69,113,117,97,108,83,105,122,101,38,38,102,101,40,116,41,44,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,117,112,100,97,116,101,83,105,122,101,40,91,116,93,41,44,33,48,41,125,44,110,46,95,115,101,116,83,99,114,111,108,108,80,111,115,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,119,97,116,99,104,101,114,46,115,101,116,83,99,114,111,108,108,80,111,115,40,116,104,105,115,46,95,119,97,116,99,104,101,114,46,103,101,116,67,111,110,116,97,105,110,101,114,79,102,102,115,101,116,40,41,43,116,41,125,44,110,46,95,115,99,114,111,108,108,84,111,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,119,97,116,99,104,101,114,46,115,99,114,111,108,108,84,111,40,116,104,105,115,46,95,119,97,116,99,104,101,114,46,103,101,116,67,111,110,116,97,105,110,101,114,79,102,102,115,101,116,40,41,43,116,41,125,44,110,46,95,112,111,115,116,67,97,99,104,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,97,99,104,101,44,110,61,116,46,105,115,65,112,112,101,110,100,44,114,61,116,46,105,115,84,114,117,115,116,101,100,44,105,61,118,111,105,100,32,48,61,61,61,114,124,124,114,44,111,61,116,104,105,115,46,111,112,116,105,111,110,115,46,105,115,67,111,110,115,116,97,110,116,83,105,122,101,44,97,61,98,101,46,112,108,117,99,107,40,101,44,34,105,116,101,109,115,34,41,44,115,61,33,48,44,99,61,97,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,114,103,83,105,122,101,38,38,116,46,111,114,103,83,105,122,101,46,119,105,100,116,104,63,33,111,38,38,116,46,114,101,99,116,46,116,111,112,60,100,116,47,49,48,58,40,115,61,33,49,44,33,48,41,125,41,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,112,111,115,116,76,97,121,111,117,116,40,123,102,114,111,109,67,97,99,104,101,58,115,44,103,114,111,117,112,115,58,101,44,105,116,101,109,115,58,97,44,110,101,119,73,116,101,109,115,58,99,44,105,115,65,112,112,101,110,100,58,110,44,105,115,84,114,117,115,116,101,100,58,105,125,41,125,44,110,46,95,112,111,115,116,76,97,121,111,117,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,116,46,102,114,111,109,67,97,99,104,101,44,114,61,116,46,103,114,111,117,112,115,44,105,61,116,46,105,116,101,109,115,44,111,61,118,111,105,100,32,48,61,61,61,105,63,98,101,46,112,108,117,99,107,40,114,44,34,105,116,101,109,115,34,41,58,105,44,115,61,116,46,110,101,119,73,116,101,109,115,44,99,61,116,46,105,115,65,112,112,101,110,100,44,117,61,116,46,104,97,115,67,104,105,108,100,114,101,110,44,108,61,116,46,105,115,84,114,117,115,116,101,100,59,105,102,40,116,104,105,115,46,95,112,114,111,99,101,115,115,40,120,116,41,44,114,46,108,101,110,103,116,104,41,123,118,97,114,32,102,61,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,110,100,101,114,69,120,116,101,114,110,97,108,44,104,61,116,104,105,115,46,95,114,101,110,100,101,114,101,114,44,100,61,110,101,119,32,97,44,112,61,102,117,110,99,116,105,111,110,40,41,123,111,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,109,111,117,110,116,101,100,61,33,48,125,41,41,44,101,46,95,114,101,110,100,101,114,77,97,110,97,103,101,114,46,114,101,110,100,101,114,40,100,44,114,44,115,44,99,41,46,111,110,40,34,105,109,97,103,101,69,114,114,111,114,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,116,114,105,103,103,101,114,40,34,105,109,97,103,101,69,114,114,111,114,34,44,116,41,125,41,41,46,111,110,40,34,99,111,110,116,101,110,116,69,114,114,111,114,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,116,114,105,103,103,101,114,40,34,99,111,110,116,101,110,116,69,114,114,111,114,34,44,116,41,125,41,41,46,111,110,40,34,114,101,110,100,101,114,67,111,109,112,108,101,116,101,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,115,116,97,114,116,44,114,61,116,46,101,110,100,59,101,46,95,115,101,116,67,117,114,115,111,114,40,110,44,114,41,125,41,41,46,111,110,40,34,108,97,121,111,117,116,67,111,109,112,108,101,116,101,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,116,46,105,116,101,109,115,59,101,46,95,112,114,111,99,101,115,115,40,120,116,44,33,49,41,44,101,46,95,111,110,76,97,121,111,117,116,67,111,109,112,108,101,116,101,40,123,105,116,101,109,115,58,114,44,105,115,65,112,112,101,110,100,58,99,44,102,114,111,109,67,97,99,104,101,58,110,44,105,115,84,114,117,115,116,101,100,58,108,44,117,115,101,82,101,99,121,99,108,101,58,33,49,125,41,125,41,41,46,111,110,40,34,114,101,97,100,121,69,108,101,109,101,110,116,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,95,117,112,100,97,116,101,73,116,101,109,40,116,46,105,116,101,109,41,38,38,101,46,108,97,121,111,117,116,40,33,49,41,125,41,41,46,111,110,40,34,114,101,97,100,121,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,114,101,109,111,118,101,44,114,61,116,46,108,97,121,111,117,116,59,105,102,40,110,46,102,111,114,69,97,99,104,40,40,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,44,33,49,41,125,41,41,44,114,41,101,46,108,97,121,111,117,116,40,33,49,41,59,101,108,115,101,32,105,102,40,33,101,46,105,115,80,114,111,99,101,115,115,105,110,103,40,41,38,38,101,46,111,112,116,105,111,110,115,46,117,115,101,82,101,99,121,99,108,101,41,123,118,97,114,32,105,61,101,46,95,119,97,116,99,104,101,114,44,111,61,105,46,103,101,116,83,99,114,111,108,108,80,111,115,40,41,59,101,46,95,105,110,102,105,110,105,116,101,46,114,101,99,121,99,108,101,40,111,44,99,41,125,125,41,41,125,59,105,102,40,33,117,41,123,105,102,40,102,41,114,101,116,117,114,110,32,111,46,101,118,101,114,121,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,109,111,117,110,116,101,100,125,41,41,63,112,40,41,58,40,116,104,105,115,46,95,114,101,113,117,101,115,116,71,114,111,117,112,115,61,114,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,114,101,110,100,101,114,34,44,123,110,101,120,116,58,102,117,110,99,116,105,111,110,40,41,123,33,117,38,38,101,46,95,114,101,110,100,101,114,101,114,46,114,101,110,100,101,114,73,116,101,109,115,40,111,41,44,112,40,41,125,125,41,41,44,100,59,104,46,99,114,101,97,116,101,65,110,100,73,110,115,101,114,116,40,111,44,99,41,125,114,101,116,117,114,110,32,112,40,41,44,100,125,125,44,110,46,95,114,101,113,117,101,115,116,65,112,112,101,110,100,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,46,99,97,99,104,101,59,116,104,105,115,46,95,105,115,80,114,111,99,101,115,115,105,110,103,40,41,124,124,40,110,38,38,110,46,108,101,110,103,116,104,63,116,104,105,115,46,95,112,111,115,116,67,97,99,104,101,40,123,99,97,99,104,101,58,110,44,105,115,65,112,112,101,110,100,58,33,48,125,41,58,116,104,105,115,46,116,114,105,103,103,101,114,40,34,97,112,112,101,110,100,34,44,123,105,115,84,114,117,115,116,101,100,58,33,48,44,103,114,111,117,112,75,101,121,58,116,104,105,115,46,103,101,116,71,114,111,117,112,75,101,121,115,40,41,46,112,111,112,40,41,124,124,34,34,44,115,116,97,114,116,76,111,97,100,105,110,103,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,115,116,97,114,116,76,111,97,100,105,110,103,40,33,48,44,116,41,125,44,101,110,100,76,111,97,100,105,110,103,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,101,110,100,76,111,97,100,105,110,103,40,116,41,125,125,41,41,125,44,110,46,95,114,101,113,117,101,115,116,80,114,101,112,101,110,100,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,46,99,97,99,104,101,59,116,104,105,115,46,95,102,105,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,70,105,116,124,124,33,110,124,124,33,110,46,108,101,110,103,116,104,41,44,116,104,105,115,46,95,105,115,80,114,111,99,101,115,115,105,110,103,40,41,124,124,40,110,38,38,110,46,108,101,110,103,116,104,63,116,104,105,115,46,95,112,111,115,116,67,97,99,104,101,40,123,99,97,99,104,101,58,110,44,105,115,65,112,112,101,110,100,58,33,49,125,41,58,116,104,105,115,46,116,114,105,103,103,101,114,40,34,112,114,101,112,101,110,100,34,44,123,105,115,84,114,117,115,116,101,100,58,33,48,44,103,114,111,117,112,75,101,121,58,116,104,105,115,46,103,101,116,71,114,111,117,112,75,101,121,115,40,41,46,115,104,105,102,116,40,41,44,115,116,97,114,116,76,111,97,100,105,110,103,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,115,116,97,114,116,76,111,97,100,105,110,103,40,33,49,44,116,41,125,44,101,110,100,76,111,97,100,105,110,103,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,101,110,100,76,111,97,100,105,110,103,40,116,41,125,125,41,41,125,44,110,46,95,111,110,82,101,115,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,108,97,121,111,117,116,40,33,48,41,125,44,110,46,95,115,101,116,67,117,114,115,111,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,95,105,110,102,105,110,105,116,101,44,114,61,110,46,103,101,116,67,117,114,115,111,114,115,40,41,44,105,61,114,91,48,93,44,111,61,114,91,49,93,59,110,46,115,101,116,67,117,114,115,111,114,40,34,115,116,97,114,116,34,44,116,41,44,110,46,115,101,116,67,117,114,115,111,114,40,34,101,110,100,34,44,101,41,59,118,97,114,32,97,61,116,104,105,115,46,95,114,101,99,121,99,108,101,40,91,123,115,116,97,114,116,58,105,44,101,110,100,58,116,45,49,125,44,123,115,116,97,114,116,58,101,43,49,44,101,110,100,58,111,125,93,41,59,97,124,124,40,116,104,105,115,46,95,114,101,113,117,101,115,116,71,114,111,117,112,115,61,91,93,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,114,101,110,100,101,114,34,44,123,110,101,120,116,58,102,117,110,99,116,105,111,110,40,41,123,125,125,41,41,125,44,110,46,95,111,110,67,104,101,99,107,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,115,70,111,114,119,97,114,100,44,110,61,116,46,115,99,114,111,108,108,80,111,115,44,114,61,116,46,104,111,114,105,122,111,110,116,97,108,44,105,61,116,46,111,114,103,83,99,114,111,108,108,80,111,115,59,116,104,105,115,46,116,114,105,103,103,101,114,40,34,99,104,97,110,103,101,34,44,123,105,115,70,111,114,119,97,114,100,58,101,44,104,111,114,105,122,111,110,116,97,108,58,114,44,115,99,114,111,108,108,80,111,115,58,110,44,111,114,103,83,99,114,111,108,108,80,111,115,58,105,125,41,44,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,115,99,114,111,108,108,40,110,41,125,44,110,46,95,111,110,76,97,121,111,117,116,67,111,109,112,108,101,116,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,46,105,116,101,109,115,44,114,61,116,46,105,115,65,112,112,101,110,100,44,105,61,116,46,105,115,84,114,117,115,116,101,100,44,111,61,118,111,105,100,32,48,33,61,61,105,38,38,105,44,97,61,116,46,117,115,101,82,101,99,121,99,108,101,44,115,61,118,111,105,100,32,48,61,61,61,97,63,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,82,101,99,121,99,108,101,58,97,44,99,61,116,46,102,114,111,109,67,97,99,104,101,44,117,61,118,111,105,100,32,48,33,61,61,99,38,38,99,44,108,61,116,46,105,115,76,97,121,111,117,116,44,102,61,118,111,105,100,32,48,33,61,61,108,38,38,108,44,104,61,116,104,105,115,46,95,114,101,110,100,101,114,101,114,46,103,101,116,86,105,101,119,83,105,122,101,40,41,59,114,63,116,104,105,115,46,105,115,76,111,97,100,105,110,103,40,41,38,38,116,104,105,115,46,95,114,101,110,100,101,114,76,111,97,100,105,110,103,40,41,58,116,104,105,115,46,95,102,105,116,40,41,59,118,97,114,32,100,61,116,104,105,115,46,95,119,97,116,99,104,101,114,44,112,61,100,46,103,101,116,83,99,114,111,108,108,80,111,115,40,41,59,102,124,124,33,115,124,124,116,104,105,115,46,105,115,76,111,97,100,105,110,103,40,41,124,124,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,114,101,99,121,99,108,101,40,112,44,114,41,59,118,97,114,32,118,61,116,104,105,115,46,95,103,101,116,69,100,103,101,86,97,108,117,101,40,34,101,110,100,34,41,59,114,38,38,40,116,104,105,115,46,95,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,40,118,43,116,104,105,115,46,95,115,116,97,116,117,115,46,108,111,97,100,105,110,103,83,105,122,101,124,124,48,41,44,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,112,38,38,112,62,48,38,38,33,97,116,38,38,116,104,105,115,46,95,115,99,114,111,108,108,84,111,40,112,41,41,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,108,97,121,111,117,116,67,111,109,112,108,101,116,101,34,44,123,116,97,114,103,101,116,58,110,46,99,111,110,99,97,116,40,41,44,105,115,65,112,112,101,110,100,58,33,33,114,44,105,115,84,114,117,115,116,101,100,58,111,44,102,114,111,109,67,97,99,104,101,58,117,44,105,115,76,97,121,111,117,116,58,102,44,105,115,83,99,114,111,108,108,58,104,60,100,46,103,101,116,67,111,110,116,97,105,110,101,114,79,102,102,115,101,116,40,41,43,118,44,115,99,114,111,108,108,80,111,115,58,112,44,111,114,103,83,99,114,111,108,108,80,111,115,58,100,46,103,101,116,79,114,103,83,99,114,111,108,108,80,111,115,40,41,44,115,105,122,101,58,118,44,101,110,100,76,111,97,100,105,110,103,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,101,110,100,76,111,97,100,105,110,103,40,116,41,125,125,41,44,116,104,105,115,46,95,105,110,102,105,110,105,116,101,46,115,99,114,111,108,108,40,112,41,125,44,110,46,95,102,105,114,115,116,76,97,121,111,117,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,114,101,110,100,101,114,101,114,44,101,61,116,104,105,115,46,95,105,110,102,105,110,105,116,101,44,110,61,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,44,114,61,116,104,105,115,46,111,112,116,105,111,110,115,46,97,116,116,114,105,98,117,116,101,80,114,101,102,105,120,44,105,61,65,116,40,116,46,99,111,110,116,97,105,110,101,114,46,99,104,105,108,100,114,101,110,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,45,49,61,61,61,116,46,99,108,97,115,115,78,97,109,101,46,105,110,100,101,120,79,102,40,117,116,41,125,41,41,44,111,61,105,46,108,101,110,103,116,104,62,48,59,105,102,40,110,46,115,105,122,101,40,41,41,111,38,38,110,46,112,108,117,99,107,40,34,105,116,101,109,115,34,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,101,108,61,105,91,101,93,125,41,41,59,101,108,115,101,123,105,102,40,33,111,41,114,101,116,117,114,110,32,116,46,103,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,40,41,38,38,116,46,115,101,116,67,111,110,116,97,105,110,101,114,83,105,122,101,40,48,41,44,116,104,105,115,46,95,114,101,113,117,101,115,116,65,112,112,101,110,100,40,123,125,41,44,116,104,105,115,59,118,97,114,32,97,61,34,34,43,116,104,105,115,46,95,103,101,116,82,97,110,100,111,109,75,101,121,40,41,59,105,46,102,111,114,69,97,99,104,40,40,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,114,43,34,103,114,111,117,112,107,101,121,34,41,59,34,115,116,114,105,110,103,34,33,61,61,116,121,112,101,111,102,32,101,38,38,40,101,61,97,41,44,97,61,101,44,110,46,105,110,115,101,114,116,40,123,103,114,111,117,112,75,101,121,58,101,44,101,108,58,116,125,41,125,41,41,125,118,97,114,32,115,61,110,46,103,101,116,71,114,111,117,112,115,40,41,59,114,101,116,117,114,110,32,101,46,115,101,116,67,117,114,115,111,114,40,34,115,116,97,114,116,34,44,48,41,44,101,46,115,101,116,67,117,114,115,111,114,40,34,101,110,100,34,44,115,46,108,101,110,103,116,104,45,49,41,44,116,104,105,115,46,95,112,111,115,116,76,97,121,111,117,116,40,123,103,114,111,117,112,115,58,115,44,104,97,115,67,104,105,108,100,114,101,110,58,111,44,102,114,111,109,67,97,99,104,101,58,33,49,44,105,115,65,112,112,101,110,100,58,33,48,125,41,44,116,104,105,115,125,44,110,46,95,103,101,116,82,97,110,100,111,109,75,101,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,105,116,101,109,77,97,110,97,103,101,114,59,119,104,105,108,101,40,49,41,123,118,97,114,32,101,61,40,110,101,119,32,68,97,116,101,41,46,103,101,116,84,105,109,101,40,41,43,77,97,116,104,46,102,108,111,111,114,40,49,101,51,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,59,105,102,40,33,116,46,103,101,116,71,114,111,117,112,66,121,75,101,121,40,101,41,41,114,101,116,117,114,110,32,101,125,125,44,110,46,95,114,101,115,101,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,115,116,97,116,117,115,61,123,112,114,111,99,101,115,115,105,110,103,83,116,97,116,117,115,58,121,116,44,108,111,97,100,105,110,103,83,105,122,101,58,48,44,108,111,97,100,105,110,103,83,116,121,108,101,58,123,125,125,125,44,101,46,86,69,82,83,73,79,78,61,34,51,46,57,46,48,34,44,101,125,40,97,41,44,106,101,61,98,116,46,83,84,65,82,84,44,69,101,61,98,116,46,67,69,78,84,69,82,44,68,101,61,98,116,46,69,78,68,44,65,101,61,98,116,46,74,85,83,84,73,70,89,44,76,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,123,125,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,101,40,123,109,97,114,103,105,110,58,48,44,104,111,114,105,122,111,110,116,97,108,58,33,49,44,97,108,105,103,110,58,106,101,44,105,116,101,109,83,105,122,101,58,48,125,44,116,41,44,116,104,105,115,46,95,115,105,122,101,61,48,44,116,104,105,115,46,95,99,111,108,117,109,110,83,105,122,101,61,48,44,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,61,48,44,116,104,105,115,46,95,115,116,121,108,101,61,74,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,41,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,101,46,97,112,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,116,44,101,44,33,48,44,110,41,125,44,101,46,112,114,101,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,116,44,101,44,33,49,44,110,41,125,44,101,46,108,97,121,111,117,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,59,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,91,93,41,44,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,91,93,41,59,118,97,114,32,114,44,105,61,116,46,108,101,110,103,116,104,38,38,116,91,48,93,46,105,116,101,109,115,46,108,101,110,103,116,104,38,38,116,91,48,93,46,105,116,101,109,115,91,48,93,59,105,102,40,116,104,105,115,46,99,104,101,99,107,67,111,108,117,109,110,40,105,41,44,101,46,108,101,110,103,116,104,33,61,61,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,41,123,118,97,114,32,111,61,48,61,61,61,101,46,108,101,110,103,116,104,63,48,58,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,77,97,116,104,44,101,41,59,114,61,97,101,40,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,41,44,111,41,125,101,108,115,101,32,114,61,101,46,115,108,105,99,101,40,41,59,114,101,116,117,114,110,32,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,116,101,109,115,44,105,61,110,46,95,108,97,121,111,117,116,40,101,44,114,44,33,48,41,59,116,46,111,117,116,108,105,110,101,115,61,105,44,114,61,105,46,101,110,100,125,41,41,44,116,104,105,115,125,44,101,46,115,101,116,83,105,122,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,115,105,122,101,61,116,44,116,104,105,115,125,44,101,46,99,104,101,99,107,67,111,108,117,109,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,111,112,116,105,111,110,115,44,110,61,101,46,105,116,101,109,83,105,122,101,44,114,61,101,46,109,97,114,103,105,110,44,105,61,101,46,104,111,114,105,122,111,110,116,97,108,44,111,61,105,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,97,61,77,97,116,104,46,102,108,111,111,114,40,110,124,124,116,38,38,116,46,115,105,122,101,91,111,93,124,124,48,41,124,124,48,59,116,104,105,115,46,95,99,111,108,117,109,110,83,105,122,101,61,97,44,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,61,97,63,77,97,116,104,46,109,97,120,40,77,97,116,104,46,102,108,111,111,114,40,40,116,104,105,115,46,95,115,105,122,101,43,114,41,47,40,97,43,114,41,41,44,49,41,58,49,125,44,101,46,95,108,97,121,111,117,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,102,111,114,40,118,97,114,32,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,114,103,105,110,44,97,61,116,104,105,115,46,111,112,116,105,111,110,115,46,97,108,105,103,110,44,115,61,116,104,105,115,46,95,115,116,121,108,101,44,99,61,115,46,115,105,122,101,49,44,117,61,115,46,115,105,122,101,50,44,108,61,115,46,115,116,97,114,116,80,111,115,49,44,102,61,115,46,115,116,97,114,116,80,111,115,50,44,104,61,116,104,105,115,46,95,99,111,108,117,109,110,83,105,122,101,44,100,61,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,44,112,61,116,104,105,115,46,95,115,105,122,101,44,118,61,112,45,40,104,43,111,41,42,100,43,111,44,103,61,110,63,34,109,105,110,34,58,34,109,97,120,34,44,109,61,110,63,34,105,110,100,101,120,79,102,34,58,34,108,97,115,116,73,110,100,101,120,79,102,34,44,98,61,101,46,115,108,105,99,101,40,41,44,121,61,101,46,115,108,105,99,101,40,41,44,119,61,48,59,119,60,105,59,43,43,119,41,123,118,97,114,32,95,61,77,97,116,104,91,103,93,46,97,112,112,108,121,40,77,97,116,104,44,121,41,124,124,48,44,120,61,121,91,109,93,40,95,41,44,79,61,116,91,110,63,119,58,105,45,49,45,119,93,44,83,61,79,46,115,105,122,101,59,105,102,40,83,41,123,118,97,114,32,107,61,83,91,99,93,44,67,61,83,91,117,93,44,80,61,110,63,95,58,95,45,111,45,107,44,84,61,80,43,107,43,111,59,45,49,61,61,61,120,38,38,40,120,61,48,41,59,118,97,114,32,106,61,40,104,43,111,41,42,120,59,97,61,61,61,69,101,63,106,43,61,118,47,50,58,97,61,61,61,68,101,63,106,43,61,118,43,104,45,67,58,97,61,61,61,65,101,38,38,40,100,60,61,49,63,106,43,61,118,47,50,58,106,61,40,112,45,104,41,47,40,100,45,49,41,42,120,41,44,79,46,114,101,99,116,61,40,114,61,123,125,44,114,91,108,93,61,80,44,114,91,102,93,61,106,44,114,41,44,79,46,99,111,108,117,109,110,61,120,44,121,91,120,93,61,110,63,84,58,80,125,125,114,101,116,117,114,110,32,110,124,124,116,46,115,111,114,116,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,114,101,99,116,91,108,93,44,114,61,116,46,114,101,99,116,91,102,93,44,105,61,101,46,114,101,99,116,91,108,93,44,111,61,101,46,114,101,99,116,91,102,93,59,114,101,116,117,114,110,32,110,45,105,63,110,45,105,58,114,45,111,125,41,41,44,123,115,116,97,114,116,58,110,63,98,58,121,44,101,110,100,58,110,63,121,58,98,125,125,44,101,46,95,105,110,115,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,91,93,41,44,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,91,93,41,59,118,97,114,32,105,61,114,63,116,58,110,101,40,116,41,44,111,61,101,59,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,124,124,116,104,105,115,46,99,104,101,99,107,67,111,108,117,109,110,40,116,91,48,93,41,44,101,46,108,101,110,103,116,104,33,61,61,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,38,38,40,111,61,97,101,40,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,95,99,111,108,117,109,110,76,101,110,103,116,104,41,44,101,46,108,101,110,103,116,104,38,38,77,97,116,104,91,110,63,34,109,105,110,34,58,34,109,97,120,34,93,46,97,112,112,108,121,40,77,97,116,104,44,101,41,124,124,48,41,41,59,118,97,114,32,97,61,116,104,105,115,46,95,108,97,121,111,117,116,40,105,44,111,44,110,41,59,114,101,116,117,114,110,123,105,116,101,109,115,58,105,44,111,117,116,108,105,110,101,115,58,97,125,125,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,73,101,40,116,44,101,44,110,44,114,44,105,44,111,41,123,102,111,114,40,118,97,114,32,97,61,110,59,97,60,110,43,111,59,43,43,97,41,102,111,114,40,118,97,114,32,115,61,114,59,115,60,114,43,105,59,43,43,115,41,101,61,61,61,116,91,97,93,91,115,93,38,38,40,116,91,97,93,91,115,93,61,48,41,125,102,117,110,99,116,105,111,110,32,77,101,40,116,44,101,44,110,44,114,44,105,44,111,41,123,102,111,114,40,118,97,114,32,97,61,123,108,101,102,116,58,114,44,116,111,112,58,110,44,116,121,112,101,58,101,44,119,105,100,116,104,58,49,44,104,101,105,103,104,116,58,49,125,44,115,61,114,59,115,60,105,59,43,43,115,41,123,105,102,40,116,91,110,93,91,115,93,33,61,61,101,41,98,114,101,97,107,59,97,46,119,105,100,116,104,61,115,45,114,43,49,125,102,111,114,40,115,61,110,59,115,60,111,59,43,43,115,41,123,105,102,40,116,91,115,93,91,114,93,33,61,61,101,41,98,114,101,97,107,59,97,46,104,101,105,103,104,116,61,115,45,110,43,49,125,114,101,116,117,114,110,32,73,101,40,116,44,101,44,110,44,114,44,97,46,119,105,100,116,104,44,97,46,104,101,105,103,104,116,41,44,97,125,102,117,110,99,116,105,111,110,32,36,101,40,116,41,123,102,111,114,40,118,97,114,32,101,61,116,46,108,101,110,103,116,104,44,110,61,101,63,116,91,48,93,46,108,101,110,103,116,104,58,48,44,114,61,91,93,44,105,61,48,59,105,60,101,59,43,43,105,41,102,111,114,40,118,97,114,32,111,61,48,59,111,60,110,59,43,43,111,41,123,118,97,114,32,97,61,116,91,105,93,91,111,93,59,97,38,38,114,46,112,117,115,104,40,77,101,40,116,44,97,44,105,44,111,44,110,44,101,41,41,125,114,101,116,117,114,110,32,114,46,115,111,114,116,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,116,121,112,101,60,101,46,116,121,112,101,63,45,49,58,49,125,41,41,44,123,115,104,97,112,101,115,58,114,44,119,105,100,116,104,58,110,44,104,101,105,103,104,116,58,101,125,125,118,97,114,32,70,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,123,125,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,101,40,123,109,97,114,103,105,110,58,48,44,104,111,114,105,122,111,110,116,97,108,58,33,49,44,105,116,101,109,83,105,122,101,58,48,44,102,114,97,109,101,58,91,93,44,102,114,97,109,101,70,105,108,108,58,33,48,125,44,116,41,59,118,97,114,32,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,97,109,101,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,115,108,105,99,101,40,41,125,41,41,59,116,104,105,115,46,95,105,116,101,109,83,105,122,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,105,116,101,109,83,105,122,101,124,124,48,44,116,104,105,115,46,95,115,104,97,112,101,115,61,36,101,40,101,41,44,116,104,105,115,46,95,115,105,122,101,61,48,44,116,104,105,115,46,95,115,116,121,108,101,61,74,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,41,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,101,46,108,97,121,111,117,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,91,93,41,44,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,91,93,41,59,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,114,61,101,44,105,61,48,59,105,60,110,59,43,43,105,41,123,118,97,114,32,111,61,116,91,105,93,44,97,61,116,104,105,115,46,95,108,97,121,111,117,116,40,111,46,105,116,101,109,115,44,114,44,33,48,41,59,111,46,111,117,116,108,105,110,101,115,61,97,44,114,61,97,46,101,110,100,125,114,101,116,117,114,110,32,116,104,105,115,125,44,101,46,115,101,116,83,105,122,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,115,105,122,101,61,116,44,116,104,105,115,125,44,101,46,97,112,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,116,44,101,44,33,48,44,110,41,125,44,101,46,112,114,101,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,116,44,101,44,33,49,44,110,41,125,44,101,46,95,103,101,116,73,116,101,109,83,105,122,101,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,99,104,101,99,107,73,116,101,109,83,105,122,101,40,41,44,116,104,105,115,46,95,105,116,101,109,83,105,122,101,125,44,101,46,95,99,104,101,99,107,73,116,101,109,83,105,122,101,61,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,105,116,101,109,83,105,122,101,41,116,104,105,115,46,95,105,116,101,109,83,105,122,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,105,116,101,109,83,105,122,101,59,101,108,115,101,123,118,97,114,32,116,61,116,104,105,115,46,95,115,116,121,108,101,44,101,61,116,46,115,105,122,101,50,44,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,114,103,105,110,59,116,104,105,115,46,95,105,116,101,109,83,105,122,101,61,40,116,104,105,115,46,95,115,105,122,101,43,110,41,47,116,104,105,115,46,95,115,104,97,112,101,115,91,101,93,45,110,125,125,44,101,46,95,108,97,121,111,117,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,59,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,91,93,41,59,118,97,114,32,105,61,116,46,108,101,110,103,116,104,44,111,61,116,104,105,115,46,95,115,116,121,108,101,44,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,115,61,97,46,109,97,114,103,105,110,44,99,61,97,46,102,114,97,109,101,70,105,108,108,44,117,61,111,46,115,105,122,101,49,44,108,61,111,46,115,105,122,101,50,44,102,61,111,46,115,116,97,114,116,80,111,115,49,44,104,61,111,46,115,116,97,114,116,80,111,115,50,44,100,61,116,104,105,115,46,95,103,101,116,73,116,101,109,83,105,122,101,40,41,44,112,61,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,100,44,118,61,112,63,100,91,108,93,58,100,44,103,61,112,63,100,91,117,93,58,100,44,109,61,116,104,105,115,46,95,115,104,97,112,101,115,91,108,93,44,98,61,116,104,105,115,46,95,115,104,97,112,101,115,46,115,104,97,112,101,115,44,121,61,98,46,108,101,110,103,116,104,44,119,61,97,101,40,110,101,119,32,65,114,114,97,121,40,109,41,44,100,116,41,44,95,61,97,101,40,110,101,119,32,65,114,114,97,121,40,109,41,44,100,116,41,44,120,61,48,44,79,61,48,59,105,102,40,33,121,41,114,101,116,117,114,110,123,115,116,97,114,116,58,101,44,101,110,100,58,101,125,59,102,111,114,40,118,97,114,32,83,61,48,59,83,60,105,59,83,43,61,121,41,123,102,111,114,40,118,97,114,32,107,61,48,59,107,60,121,38,38,83,43,107,60,105,59,43,43,107,41,123,102,111,114,40,118,97,114,32,67,61,116,91,83,43,107,93,44,80,61,98,91,107,93,44,84,61,80,91,102,93,44,106,61,80,91,104,93,44,69,61,80,91,117,93,44,68,61,80,91,108,93,44,65,61,79,45,120,43,84,42,40,103,43,115,41,44,76,61,106,42,40,118,43,115,41,44,73,61,69,42,40,103,43,115,41,45,115,44,77,61,68,42,40,118,43,115,41,45,115,44,36,61,106,59,36,60,106,43,68,38,38,36,60,109,59,43,43,36,41,119,91,36,93,61,61,61,100,116,38,38,40,119,91,36,93,61,65,41,44,119,91,36,93,61,77,97,116,104,46,109,105,110,40,119,91,36,93,44,65,41,44,95,91,36,93,61,77,97,116,104,46,109,97,120,40,95,91,36,93,44,65,43,73,43,115,41,59,67,46,114,101,99,116,61,40,114,61,123,125,44,114,91,102,93,61,65,44,114,91,104,93,61,76,44,114,91,117,93,61,73,44,114,91,108,93,61,77,44,114,41,125,105,102,40,79,61,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,95,41,44,48,61,61,61,83,41,105,102,40,99,41,123,120,61,79,59,102,111,114,40,107,61,48,59,107,60,109,59,43,43,107,41,119,91,107,93,33,61,61,100,116,38,38,40,120,61,77,97,116,104,46,109,105,110,40,119,91,107,93,43,79,45,95,91,107,93,44,120,41,41,125,101,108,115,101,32,120,61,48,125,102,111,114,40,83,61,48,59,83,60,109,59,43,43,83,41,119,91,83,93,61,61,61,100,116,38,38,40,119,91,83,93,61,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,119,41,44,95,91,83,93,61,119,91,83,93,41,59,118,97,114,32,70,61,110,63,119,58,95,44,82,61,48,61,61,61,101,46,108,101,110,103,116,104,63,48,58,77,97,116,104,91,110,63,34,109,97,120,34,58,34,109,105,110,34,93,46,97,112,112,108,121,40,77,97,116,104,44,101,41,44,78,61,110,63,48,58,79,59,105,102,40,99,38,38,101,46,108,101,110,103,116,104,61,61,61,109,41,123,78,61,45,100,116,59,102,111,114,40,83,61,48,59,83,60,109,59,43,43,83,41,119,91,83,93,33,61,61,95,91,83,93,38,38,40,78,61,77,97,116,104,46,109,105,110,40,70,91,83,93,43,82,45,101,91,83,93,44,78,41,41,125,102,111,114,40,83,61,48,59,83,60,109,59,43,43,83,41,119,91,83,93,43,61,82,45,78,44,95,91,83,93,43,61,82,45,78,59,114,101,116,117,114,110,32,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,114,101,99,116,91,102,93,43,61,82,45,78,125,41,41,44,123,115,116,97,114,116,58,119,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,112,97,114,115,101,73,110,116,40,116,44,49,48,41,125,41,41,44,101,110,100,58,95,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,112,97,114,115,101,73,110,116,40,116,44,49,48,41,125,41,41,125,125,44,101,46,95,105,110,115,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,91,93,41,44,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,91,93,41,59,118,97,114,32,105,61,114,63,116,58,110,101,40,116,41,59,114,101,116,117,114,110,123,105,116,101,109,115,58,105,44,111,117,116,108,105,110,101,115,58,116,104,105,115,46,95,108,97,121,111,117,116,40,105,44,101,44,110,41,125,125,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,82,101,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,77,97,116,104,91,114,63,34,109,105,110,34,58,34,109,97,120,34,93,46,97,112,112,108,121,40,77,97,116,104,44,116,41,124,124,48,59,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,33,61,61,110,63,97,101,40,110,101,119,32,65,114,114,97,121,40,110,41,44,48,41,58,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,102,108,111,111,114,40,40,116,45,105,41,47,101,41,125,41,41,125,102,117,110,99,116,105,111,110,32,78,101,40,116,41,123,105,102,40,116,46,99,111,108,117,109,110,41,114,101,116,117,114,110,32,116,46,99,111,108,117,109,110,59,118,97,114,32,101,61,49,59,114,101,116,117,114,110,32,116,46,101,108,38,38,40,101,61,112,97,114,115,101,73,110,116,40,116,46,101,108,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,99,111,108,117,109,110,34,41,44,49,48,41,124,124,49,41,44,116,46,99,111,108,117,109,110,61,101,44,101,125,118,97,114,32,66,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,123,125,41,44,116,46,99,97,108,108,40,116,104,105,115,44,101,41,124,124,116,104,105,115,125,88,40,101,44,116,41,59,118,97,114,32,110,61,101,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,110,46,95,108,97,121,111,117,116,61,102,117,110,99,116,105,111,110,40,101,44,110,44,114,41,123,118,97,114,32,105,44,111,59,118,111,105,100,32,48,61,61,61,110,38,38,40,110,61,91,93,41,44,118,111,105,100,32,48,61,61,61,114,38,38,40,114,61,33,49,41,59,102,111,114,40,118,97,114,32,97,61,116,104,105,115,46,95,103,101,116,83,113,117,97,114,101,83,105,122,101,40,101,91,48,93,41,44,115,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,114,103,105,110,44,99,61,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,124,124,77,97,116,104,46,102,108,111,111,114,40,40,116,104,105,115,46,95,115,105,122,101,43,115,41,47,40,97,43,115,41,41,124,124,49,44,117,61,101,46,108,101,110,103,116,104,44,108,61,82,101,40,110,44,77,97,116,104,46,102,108,111,111,114,40,97,41,44,99,44,114,41,44,102,61,114,63,34,109,105,110,34,58,34,109,97,120,34,44,104,61,91,93,44,100,61,114,63,49,58,45,49,44,112,61,116,104,105,115,46,95,115,116,121,108,101,44,118,61,112,46,115,116,97,114,116,80,111,115,49,44,103,61,112,46,115,116,97,114,116,80,111,115,50,44,109,61,48,59,109,60,117,59,43,43,109,41,123,118,97,114,32,98,61,77,97,116,104,91,102,93,46,97,112,112,108,121,40,77,97,116,104,44,108,41,44,121,61,108,91,114,63,34,105,110,100,101,120,79,102,34,58,34,108,97,115,116,73,110,100,101,120,79,102,34,93,40,98,41,44,119,61,101,91,109,93,44,95,61,119,46,99,111,108,117,109,110,87,105,100,116,104,44,120,61,95,38,38,95,91,48,93,61,61,61,99,38,38,95,91,49,93,124,124,78,101,40,119,41,44,79,61,49,59,105,102,40,120,62,49,41,123,102,111,114,40,118,97,114,32,83,61,49,59,83,60,120,38,38,40,114,38,38,121,43,83,60,99,124,124,33,114,38,38,121,45,83,62,61,48,41,59,43,43,83,41,123,105,102,40,33,40,114,38,38,108,91,121,43,100,42,83,93,60,61,98,124,124,33,114,38,38,108,91,121,43,100,42,83,93,62,61,98,41,41,98,114,101,97,107,59,43,43,79,125,114,124,124,40,121,45,61,79,45,49,41,125,119,46,99,111,108,117,109,110,87,105,100,116,104,61,91,99,44,79,93,44,104,46,112,117,115,104,40,40,105,61,123,119,105,100,116,104,58,79,44,104,101,105,103,104,116,58,79,125,44,105,91,118,93,61,98,45,40,114,63,48,58,79,41,44,105,91,103,93,61,121,44,105,46,116,121,112,101,61,109,43,49,44,105,46,105,110,100,101,120,61,109,44,105,41,41,59,102,111,114,40,83,61,48,59,83,60,79,59,43,43,83,41,108,91,121,43,83,93,61,98,43,100,42,79,125,116,104,105,115,46,95,115,104,97,112,101,115,61,40,111,61,123,115,104,97,112,101,115,58,104,125,44,111,91,112,46,115,105,122,101,50,93,61,99,44,111,41,59,118,97,114,32,107,61,116,46,112,114,111,116,111,116,121,112,101,46,95,108,97,121,111,117,116,46,99,97,108,108,40,116,104,105,115,44,101,44,110,44,114,41,59,114,101,116,117,114,110,32,114,124,124,40,104,46,115,111,114,116,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,91,118,93,44,114,61,116,91,103,93,44,105,61,101,91,118,93,44,111,61,101,91,103,93,59,114,101,116,117,114,110,32,110,45,105,63,110,45,105,58,114,45,111,125,41,41,44,101,46,115,111,114,116,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,114,101,99,116,91,118,93,44,114,61,116,46,114,101,99,116,91,103,93,44,105,61,101,46,114,101,99,116,91,118,93,44,111,61,101,46,114,101,99,116,91,103,93,59,114,101,116,117,114,110,32,110,45,105,63,110,45,105,58,114,45,111,125,41,41,41,44,107,125,44,110,46,95,103,101,116,83,113,117,97,114,101,83,105,122,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,111,112,116,105,111,110,115,44,110,61,101,46,99,111,108,117,109,110,44,114,61,101,46,109,97,114,103,105,110,44,105,61,101,46,105,116,101,109,83,105,122,101,59,105,102,40,110,41,116,104,105,115,46,95,105,116,101,109,83,105,122,101,61,40,116,104,105,115,46,95,115,105,122,101,43,114,41,47,110,45,114,59,101,108,115,101,32,105,102,40,105,41,116,104,105,115,46,95,105,116,101,109,83,105,122,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,105,116,101,109,83,105,122,101,59,101,108,115,101,123,118,97,114,32,111,61,116,104,105,115,46,95,115,116,121,108,101,46,115,105,122,101,50,44,97,61,116,104,105,115,46,95,115,104,97,112,101,115,91,111,93,124,124,77,97,116,104,46,102,108,111,111,114,40,40,116,104,105,115,46,95,115,105,122,101,43,114,41,47,40,116,46,115,105,122,101,91,111,93,43,114,41,47,78,101,40,116,41,41,59,116,104,105,115,46,95,105,116,101,109,83,105,122,101,61,40,116,104,105,115,46,95,115,105,122,101,43,114,41,47,97,45,114,125,114,101,116,117,114,110,32,116,104,105,115,46,95,105,116,101,109,83,105,122,101,125,44,101,125,40,70,101,41,44,122,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,81,116,40,116,104,105,115,44,123,111,114,105,103,105,110,87,105,100,116,104,58,48,44,111,114,105,103,105,110,72,101,105,103,104,116,58,48,44,119,105,100,116,104,58,48,44,104,101,105,103,104,116,58,48,44,108,101,102,116,58,48,44,116,111,112,58,48,44,105,116,101,109,115,58,91,93,125,44,116,41,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,101,46,115,99,97,108,101,84,111,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,119,105,100,116,104,63,116,47,116,104,105,115,46,119,105,100,116,104,58,48,44,114,61,116,104,105,115,46,104,101,105,103,104,116,63,101,47,116,104,105,115,46,104,101,105,103,104,116,58,48,59,116,104,105,115,46,105,116,101,109,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,48,33,61,61,110,38,38,40,116,46,108,101,102,116,42,61,110,44,116,46,119,105,100,116,104,42,61,110,41,44,48,33,61,61,114,38,38,40,116,46,116,111,112,42,61,114,44,116,46,104,101,105,103,104,116,42,61,114,41,125,41,41,44,116,104,105,115,46,119,105,100,116,104,61,116,44,116,104,105,115,46,104,101,105,103,104,116,61,101,125,44,101,46,112,117,115,104,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,105,116,101,109,115,46,112,117,115,104,40,116,41,125,44,101,46,103,101,116,79,114,105,103,105,110,83,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,114,105,103,105,110,87,105,100,116,104,42,116,104,105,115,46,111,114,105,103,105,110,72,101,105,103,104,116,125,44,101,46,103,101,116,83,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,119,105,100,116,104,42,116,104,105,115,46,104,101,105,103,104,116,125,44,101,46,103,101,116,79,114,105,103,105,110,82,97,116,105,111,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,61,116,104,105,115,46,111,114,105,103,105,110,72,101,105,103,104,116,63,48,58,116,104,105,115,46,111,114,105,103,105,110,87,105,100,116,104,47,116,104,105,115,46,111,114,105,103,105,110,72,101,105,103,104,116,125,44,101,46,103,101,116,82,97,116,105,111,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,61,116,104,105,115,46,104,101,105,103,104,116,63,48,58,116,104,105,115,46,119,105,100,116,104,47,116,104,105,115,46,104,101,105,103,104,116,125,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,86,101,40,116,44,101,41,123,118,97,114,32,110,61,116,47,101,59,114,101,116,117,114,110,32,110,60,49,38,38,40,110,61,49,47,110,41,44,110,45,49,125,102,117,110,99,116,105,111,110,32,72,101,40,116,44,101,44,110,44,114,44,105,41,123,116,46,104,101,105,103,104,116,61,110,46,104,101,105,103,104,116,44,116,46,119,105,100,116,104,61,110,46,119,105,100,116,104,44,101,46,104,101,105,103,104,116,61,114,46,104,101,105,103,104,116,44,101,46,119,105,100,116,104,61,114,46,119,105,100,116,104,44,105,63,40,116,46,116,111,112,61,101,46,116,111,112,43,101,46,104,101,105,103,104,116,44,116,46,108,101,102,116,61,101,46,108,101,102,116,41,58,40,116,46,108,101,102,116,61,101,46,108,101,102,116,43,101,46,119,105,100,116,104,44,116,46,116,111,112,61,101,46,116,111,112,41,125,118,97,114,32,85,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,123,125,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,101,40,123,109,97,114,103,105,110,58,48,44,104,111,114,105,122,111,110,116,97,108,58,33,49,44,97,115,112,101,99,116,82,97,116,105,111,58,49,44,115,105,122,101,87,101,105,103,104,116,58,49,44,114,97,116,105,111,87,101,105,103,104,116,58,49,125,44,116,41,44,116,104,105,115,46,95,115,105,122,101,61,48,44,116,104,105,115,46,95,115,116,121,108,101,61,74,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,41,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,101,46,97,112,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,116,44,101,44,33,48,44,110,41,125,44,101,46,112,114,101,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,116,44,101,44,33,49,44,110,41,125,44,101,46,108,97,121,111,117,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,91,93,41,44,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,91,93,41,59,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,114,61,101,44,105,61,48,59,105,60,110,59,43,43,105,41,123,118,97,114,32,111,61,116,91,105,93,44,97,61,116,104,105,115,46,95,108,97,121,111,117,116,40,111,46,105,116,101,109,115,44,114,44,33,48,41,59,111,46,111,117,116,108,105,110,101,115,61,97,44,114,61,97,46,101,110,100,125,114,101,116,117,114,110,32,116,104,105,115,125,44,101,46,115,101,116,83,105,122,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,115,105,122,101,61,116,44,116,104,105,115,125,44,101,46,95,102,105,110,100,66,101,115,116,70,105,116,65,114,101,97,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,48,61,61,61,116,46,103,101,116,82,97,116,105,111,40,41,41,114,101,116,117,114,110,32,116,46,111,114,105,103,105,110,87,105,100,116,104,61,101,46,119,105,100,116,104,44,116,46,111,114,105,103,105,110,72,101,105,103,104,116,61,101,46,104,101,105,103,104,116,44,116,46,119,105,100,116,104,61,101,46,119,105,100,116,104,44,118,111,105,100,40,116,46,104,101,105,103,104,116,61,101,46,104,101,105,103,104,116,41,59,118,97,114,32,110,44,114,61,49,101,55,44,105,61,33,49,44,111,61,123,119,105,100,116,104,58,48,44,104,101,105,103,104,116,58,48,125,44,97,61,123,119,105,100,116,104,58,48,44,104,101,105,103,104,116,58,48,125,44,115,61,116,104,105,115,46,111,112,116,105,111,110,115,44,99,61,115,46,115,105,122,101,87,101,105,103,104,116,44,117,61,115,46,114,97,116,105,111,87,101,105,103,104,116,59,116,46,105,116,101,109,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,115,44,108,61,86,101,40,116,46,103,101,116,79,114,105,103,105,110,83,105,122,101,40,41,44,116,46,103,101,116,83,105,122,101,40,41,41,42,99,44,102,61,86,101,40,116,46,103,101,116,79,114,105,103,105,110,82,97,116,105,111,40,41,44,116,46,103,101,116,82,97,116,105,111,40,41,41,42,117,44,104,61,116,46,119,105,100,116,104,44,100,61,116,46,104,101,105,103,104,116,44,112,61,48,59,112,60,50,59,43,43,112,41,123,118,97,114,32,118,61,118,111,105,100,32,48,44,103,61,118,111,105,100,32,48,44,109,61,118,111,105,100,32,48,44,98,61,118,111,105,100,32,48,59,48,61,61,61,112,63,40,118,61,104,44,103,61,100,42,40,101,46,104,101,105,103,104,116,47,40,116,46,111,114,105,103,105,110,72,101,105,103,104,116,43,101,46,104,101,105,103,104,116,41,41,44,109,61,104,44,98,61,100,45,103,41,58,40,103,61,100,44,118,61,104,42,40,101,46,119,105,100,116,104,47,40,116,46,111,114,105,103,105,110,87,105,100,116,104,43,101,46,119,105,100,116,104,41,41,44,98,61,100,44,109,61,104,45,118,41,59,118,97,114,32,121,61,118,42,103,44,119,61,118,47,103,44,95,61,109,42,98,44,120,61,98,47,98,59,115,61,86,101,40,101,46,103,101,116,83,105,122,101,40,41,44,121,41,42,99,44,115,43,61,86,101,40,101,46,103,101,116,82,97,116,105,111,40,41,44,119,41,42,117,44,115,43,61,86,101,40,116,46,103,101,116,79,114,105,103,105,110,83,105,122,101,40,41,44,95,41,42,99,45,108,44,115,43,61,86,101,40,116,46,103,101,116,79,114,105,103,105,110,82,97,116,105,111,40,41,44,120,41,42,117,45,102,44,115,61,61,61,77,97,116,104,46,109,105,110,40,115,44,114,41,38,38,40,114,61,115,44,110,61,116,44,105,61,48,61,61,61,112,44,111,46,119,105,100,116,104,61,118,44,111,46,104,101,105,103,104,116,61,103,44,97,46,119,105,100,116,104,61,109,44,97,46,104,101,105,103,104,116,61,98,41,125,125,41,41,44,72,101,40,101,44,110,44,111,44,97,44,105,41,125,44,101,46,95,108,97,121,111,117,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,59,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,91,93,41,59,118,97,114,32,105,61,116,104,105,115,46,95,115,116,121,108,101,44,111,61,116,104,105,115,46,111,112,116,105,111,110,115,44,97,61,111,46,104,111,114,105,122,111,110,116,97,108,44,115,61,111,46,97,115,112,101,99,116,82,97,116,105,111,44,99,61,111,46,109,97,114,103,105,110,44,117,61,105,46,115,116,97,114,116,80,111,115,49,44,108,61,116,104,105,115,46,95,115,105,122,101,42,40,97,63,115,58,49,41,44,102,61,116,104,105,115,46,95,115,105,122,101,47,40,97,63,49,58,115,41,44,104,61,97,63,108,58,102,44,100,61,101,101,40,101,41,44,112,61,110,63,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,77,97,116,104,44,100,41,58,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,77,97,116,104,44,100,41,45,104,45,99,44,118,61,112,43,104,43,99,44,103,61,110,101,119,32,122,101,40,123,125,41,59,114,101,116,117,114,110,32,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,111,114,103,83,105,122,101,44,110,61,101,46,119,105,100,116,104,44,105,61,101,46,104,101,105,103,104,116,44,111,61,110,101,119,32,122,101,40,123,119,105,100,116,104,58,110,44,104,101,105,103,104,116,58,105,44,111,114,105,103,105,110,87,105,100,116,104,58,110,44,111,114,105,103,105,110,72,101,105,103,104,116,58,105,125,41,59,114,46,95,102,105,110,100,66,101,115,116,70,105,116,65,114,101,97,40,103,44,111,41,44,103,46,112,117,115,104,40,111,41,44,103,46,115,99,97,108,101,84,111,40,108,43,99,44,102,43,99,41,125,41,41,44,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,103,46,105,116,101,109,115,91,101,93,44,114,61,110,46,119,105,100,116,104,44,105,61,110,46,104,101,105,103,104,116,44,111,61,110,46,116,111,112,44,97,61,110,46,108,101,102,116,59,116,46,114,101,99,116,61,123,116,111,112,58,111,44,108,101,102,116,58,97,44,119,105,100,116,104,58,114,45,99,44,104,101,105,103,104,116,58,105,45,99,125,44,116,46,114,101,99,116,91,117,93,43,61,112,125,41,41,44,123,115,116,97,114,116,58,91,112,93,44,101,110,100,58,91,118,93,125,125,44,101,46,95,105,110,115,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,91,93,41,44,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,91,93,41,59,118,97,114,32,105,61,114,63,116,58,110,101,40,116,41,59,114,101,116,117,114,110,123,105,116,101,109,115,58,105,44,111,117,116,108,105,110,101,115,58,116,104,105,115,46,95,108,97,121,111,117,116,40,105,44,101,44,110,41,125,125,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,87,101,40,116,44,101,44,110,41,123,118,97,114,32,114,61,123,125,44,105,61,123,125,59,105,91,101,93,61,48,59,118,97,114,32,111,44,97,44,115,44,99,44,117,44,108,44,102,44,104,44,100,61,110,101,119,32,89,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,111,115,116,125,41,41,59,100,46,112,117,115,104,40,123,118,97,108,117,101,58,101,44,99,111,115,116,58,48,125,41,59,119,104,105,108,101,40,100,46,115,105,122,101,40,41,41,102,111,114,40,118,97,114,32,112,32,105,110,32,111,61,100,46,112,111,112,40,41,44,97,61,111,46,118,97,108,117,101,44,115,61,111,46,99,111,115,116,44,99,61,116,40,97,41,124,124,123,125,44,99,41,117,61,99,91,112,93,44,108,61,115,43,117,44,102,61,105,91,112,93,44,104,61,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,105,91,112,93,44,40,104,124,124,102,62,108,41,38,38,40,105,91,112,93,61,108,44,100,46,112,117,115,104,40,123,118,97,108,117,101,58,112,44,99,111,115,116,58,108,125,41,44,114,91,112,93,61,97,41,59,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,105,91,110,93,41,123,118,97,114,32,118,61,91,34,67,111,117,108,100,32,110,111,116,32,102,105,110,100,32,97,32,112,97,116,104,32,102,114,111,109,32,34,44,101,44,34,32,116,111,32,34,44,110,44,34,46,34,93,46,106,111,105,110,40,34,34,41,59,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,118,41,125,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,71,101,40,116,44,101,41,123,118,97,114,32,110,61,91,93,44,114,61,101,59,119,104,105,108,101,40,114,41,110,46,112,117,115,104,40,114,41,44,114,61,116,91,114,93,59,114,101,116,117,114,110,32,110,46,114,101,118,101,114,115,101,40,41,44,110,125,102,117,110,99,116,105,111,110,32,113,101,40,116,44,101,44,110,41,123,118,97,114,32,114,61,87,101,40,116,44,101,44,110,41,59,114,101,116,117,114,110,32,71,101,40,114,44,110,41,125,118,97,114,32,89,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,116,104,105,115,46,99,111,110,116,101,110,116,61,91,93,44,116,104,105,115,46,115,99,111,114,101,70,117,110,99,116,105,111,110,61,116,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,101,46,112,117,115,104,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,111,110,116,101,110,116,46,112,117,115,104,40,116,41,44,116,104,105,115,46,98,117,98,98,108,101,85,112,40,116,104,105,115,46,99,111,110,116,101,110,116,46,108,101,110,103,116,104,45,49,41,125,44,101,46,112,111,112,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,110,116,101,110,116,91,48,93,44,101,61,116,104,105,115,46,99,111,110,116,101,110,116,46,112,111,112,40,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,110,116,46,108,101,110,103,116,104,62,48,38,38,40,116,104,105,115,46,99,111,110,116,101,110,116,91,48,93,61,101,44,116,104,105,115,46,115,105,110,107,68,111,119,110,40,48,41,41,44,116,125,44,101,46,115,105,122,101,61,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,110,116,46,108,101,110,103,116,104,125,44,101,46,98,117,98,98,108,101,85,112,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,44,110,61,116,104,105,115,46,99,111,110,116,101,110,116,91,101,93,59,119,104,105,108,101,40,101,62,48,41,123,118,97,114,32,114,61,77,97,116,104,46,102,108,111,111,114,40,40,101,43,49,41,47,50,41,45,49,44,105,61,116,104,105,115,46,99,111,110,116,101,110,116,91,114,93,59,105,102,40,33,40,116,104,105,115,46,115,99,111,114,101,70,117,110,99,116,105,111,110,40,110,41,60,116,104,105,115,46,115,99,111,114,101,70,117,110,99,116,105,111,110,40,105,41,41,41,98,114,101,97,107,59,116,104,105,115,46,99,111,110,116,101,110,116,91,114,93,61,110,44,116,104,105,115,46,99,111,110,116,101,110,116,91,101,93,61,105,44,101,61,114,125,125,44,101,46,115,105,110,107,68,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,116,104,105,115,46,99,111,110,116,101,110,116,46,108,101,110,103,116,104,44,114,61,116,104,105,115,46,99,111,110,116,101,110,116,91,116,93,44,105,61,116,104,105,115,46,115,99,111,114,101,70,117,110,99,116,105,111,110,40,114,41,59,119,104,105,108,101,40,49,41,123,118,97,114,32,111,61,50,42,40,116,43,49,41,44,97,61,111,45,49,44,115,61,110,117,108,108,59,105,102,40,97,60,110,41,123,118,97,114,32,99,61,116,104,105,115,46,99,111,110,116,101,110,116,91,97,93,59,101,61,116,104,105,115,46,115,99,111,114,101,70,117,110,99,116,105,111,110,40,99,41,44,101,60,105,38,38,40,115,61,97,41,125,105,102,40,111,60,110,41,123,118,97,114,32,117,61,116,104,105,115,46,99,111,110,116,101,110,116,91,111,93,44,108,61,116,104,105,115,46,115,99,111,114,101,70,117,110,99,116,105,111,110,40,117,41,59,108,60,40,110,117,108,108,61,61,115,63,105,58,101,41,38,38,40,115,61,111,41,125,105,102,40,110,117,108,108,61,61,61,115,41,98,114,101,97,107,59,116,104,105,115,46,99,111,110,116,101,110,116,91,116,93,61,116,104,105,115,46,99,111,110,116,101,110,116,91,115,93,44,116,104,105,115,46,99,111,110,116,101,110,116,91,115,93,61,114,44,116,61,115,125,125,44,116,125,40,41,44,75,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,123,125,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,101,40,123,109,97,114,103,105,110,58,48,44,104,111,114,105,122,111,110,116,97,108,58,33,49,44,109,105,110,83,105,122,101,58,48,44,109,97,120,83,105,122,101,58,48,44,99,111,108,117,109,110,58,91,49,44,56,93,44,114,111,119,58,48,125,44,116,41,44,116,104,105,115,46,95,115,116,121,108,101,61,74,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,41,44,116,104,105,115,46,95,115,105,122,101,61,48,125,118,97,114,32,101,61,116,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,101,46,115,101,116,83,105,122,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,115,105,122,101,61,116,44,116,104,105,115,125,44,101,46,97,112,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,116,44,101,44,33,48,44,110,41,125,44,101,46,112,114,101,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,110,115,101,114,116,40,116,44,101,44,33,49,44,110,41,125,44,101,46,108,97,121,111,117,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,91,93,41,44,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,91,93,41,59,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,114,61,101,44,105,61,48,59,105,60,110,59,43,43,105,41,123,118,97,114,32,111,61,116,91,105,93,44,97,61,116,104,105,115,46,95,108,97,121,111,117,116,40,111,46,105,116,101,109,115,44,114,44,33,48,41,59,111,46,111,117,116,108,105,110,101,115,61,97,44,114,61,97,46,101,110,100,125,114,101,116,117,114,110,32,116,104,105,115,125,44,101,46,95,108,97,121,111,117,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,46,111,112,116,105,111,110,115,46,114,111,119,44,105,61,91,93,59,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,38,38,40,105,61,114,63,116,104,105,115,46,95,103,101,116,82,111,119,80,97,116,104,40,116,41,58,116,104,105,115,46,95,103,101,116,80,97,116,104,40,116,41,41,44,116,104,105,115,46,95,115,101,116,83,116,121,108,101,40,116,44,105,44,101,44,110,41,125,44,101,46,95,103,101,116,80,97,116,104,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,46,108,101,110,103,116,104,44,114,61,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,44,105,61,103,101,40,114,41,63,114,58,91,114,44,114,93,44,111,61,105,91,48,93,44,97,61,105,91,49,93,44,115,61,102,117,110,99,116,105,111,110,40,114,41,123,102,111,114,40,118,97,114,32,105,61,123,125,44,115,61,112,97,114,115,101,73,110,116,40,114,44,49,48,41,44,99,61,77,97,116,104,46,109,105,110,40,115,43,111,44,110,41,59,99,60,61,110,59,43,43,99,41,123,105,102,40,99,45,115,62,97,41,98,114,101,97,107,59,118,97,114,32,117,61,101,46,95,103,101,116,67,111,115,116,40,116,44,115,44,99,41,59,117,60,48,38,38,99,61,61,61,110,38,38,40,117,61,48,41,44,105,91,34,34,43,99,93,61,77,97,116,104,46,112,111,119,40,117,44,50,41,125,114,101,116,117,114,110,32,105,125,59,114,101,116,117,114,110,32,113,101,40,115,44,34,48,34,44,34,34,43,110,41,125,44,101,46,95,103,101,116,82,111,119,80,97,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,44,114,61,116,104,105,115,46,111,112,116,105,111,110,115,46,114,111,119,44,105,61,103,101,40,110,41,63,110,58,91,110,44,110,93,44,111,61,103,101,40,114,41,63,114,58,91,114,44,114,93,44,97,61,116,104,105,115,46,95,103,101,116,82,111,119,76,105,110,107,40,116,44,123,112,97,116,104,58,91,48,93,44,99,111,115,116,58,48,44,108,101,110,103,116,104,58,48,44,99,117,114,114,101,110,116,78,111,100,101,58,48,125,44,105,44,111,41,59,114,101,116,117,114,110,32,110,117,108,108,33,61,61,40,101,61,110,117,108,108,61,61,61,97,124,124,118,111,105,100,32,48,61,61,61,97,63,118,111,105,100,32,48,58,97,46,112,97,116,104,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,34,43,116,125,41,41,41,38,38,118,111,105,100,32,48,33,61,61,101,63,101,58,91,93,125,44,101,46,95,103,101,116,82,111,119,76,105,110,107,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,110,91,48,93,44,111,61,114,91,48,93,44,97,61,114,91,49,93,44,115,61,116,46,108,101,110,103,116,104,44,99,61,101,46,112,97,116,104,44,117,61,101,46,108,101,110,103,116,104,44,108,61,101,46,99,111,115,116,44,102,61,101,46,99,117,114,114,101,110,116,78,111,100,101,59,105,102,40,102,60,115,38,38,40,97,60,61,117,124,124,102,43,105,62,115,41,41,123,118,97,114,32,104,61,109,101,40,115,45,102,44,110,41,44,100,61,104,42,77,97,116,104,46,97,98,115,40,116,104,105,115,46,95,103,101,116,67,111,115,116,40,116,44,102,44,115,41,41,59,114,101,116,117,114,110,32,74,40,74,40,123,125,44,101,41,44,123,108,101,110,103,116,104,58,117,43,49,44,112,97,116,104,58,81,40,99,44,91,115,93,41,44,99,117,114,114,101,110,116,78,111,100,101,58,115,44,99,111,115,116,58,108,43,100,44,105,115,79,118,101,114,58,33,48,125,41,125,114,101,116,117,114,110,32,102,62,61,115,63,74,40,74,40,123,125,44,101,41,44,123,99,117,114,114,101,110,116,78,111,100,101,58,115,44,105,115,79,118,101,114,58,111,62,117,124,124,97,60,117,125,41,58,116,104,105,115,46,95,115,101,97,114,99,104,82,111,119,76,105,110,107,40,116,44,101,44,115,44,110,44,114,41,125,44,101,46,95,115,101,97,114,99,104,82,111,119,76,105,110,107,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,61,114,91,48,93,44,97,61,114,91,49,93,44,115,61,101,46,99,117,114,114,101,110,116,78,111,100,101,44,99,61,101,46,112,97,116,104,44,117,61,101,46,108,101,110,103,116,104,44,108,61,101,46,99,111,115,116,44,102,61,77,97,116,104,46,109,105,110,40,110,44,115,43,97,41,44,104,61,91,93,44,100,61,115,43,111,59,100,60,61,102,59,43,43,100,41,105,102,40,100,33,61,61,115,41,123,118,97,114,32,112,61,77,97,116,104,46,97,98,115,40,116,104,105,115,46,95,103,101,116,67,111,115,116,40,116,44,115,44,100,41,41,44,118,61,116,104,105,115,46,95,103,101,116,82,111,119,76,105,110,107,40,116,44,123,112,97,116,104,58,81,40,99,44,91,100,93,41,44,108,101,110,103,116,104,58,117,43,49,44,99,111,115,116,58,108,43,112,44,99,117,114,114,101,110,116,78,111,100,101,58,100,125,44,114,44,105,41,59,118,38,38,104,46,112,117,115,104,40,118,41,125,114,101,116,117,114,110,32,104,46,115,111,114,116,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,105,115,79,118,101,114,44,114,61,101,46,105,115,79,118,101,114,59,105,102,40,110,33,61,61,114,41,114,101,116,117,114,110,32,110,63,49,58,45,49,59,118,97,114,32,111,61,109,101,40,116,46,108,101,110,103,116,104,44,105,41,44,97,61,109,101,40,101,46,108,101,110,103,116,104,44,105,41,59,114,101,116,117,114,110,32,111,45,97,124,124,116,46,99,111,115,116,45,101,46,99,111,115,116,125,41,41,44,104,91,48,93,125,44,101,46,95,103,101,116,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,114,103,105,110,44,105,61,116,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,116,43,114,46,111,114,103,83,105,122,101,91,110,93,47,114,46,111,114,103,83,105,122,101,91,101,93,125,41,44,48,41,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,105,122,101,45,114,42,40,116,46,108,101,110,103,116,104,45,49,41,41,47,105,125,44,101,46,95,103,101,116,67,111,115,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,46,95,115,116,121,108,101,44,105,61,114,46,115,105,122,101,49,44,111,61,114,46,115,105,122,101,50,44,97,61,116,104,105,115,46,95,103,101,116,83,105,122,101,40,116,46,115,108,105,99,101,40,101,44,110,41,44,105,44,111,41,44,115,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,83,105,122,101,124,124,48,44,99,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,83,105,122,101,124,124,49,47,48,59,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,99,41,63,97,60,115,63,77,97,116,104,46,112,111,119,40,97,45,115,44,50,41,43,77,97,116,104,46,112,111,119,40,99,44,50,41,58,97,62,99,63,77,97,116,104,46,112,111,119,40,97,45,99,44,50,41,43,77,97,116,104,46,112,111,119,40,99,44,50,41,58,77,97,116,104,46,109,105,110,40,97,45,99,44,115,45,97,41,58,97,60,115,63,77,97,116,104,46,109,97,120,40,77,97,116,104,46,112,111,119,40,115,44,50,41,44,77,97,116,104,46,112,111,119,40,97,44,50,41,41,58,97,45,115,125,44,101,46,95,115,101,116,83,116,121,108,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,59,118,111,105,100,32,48,61,61,61,110,38,38,40,110,61,91,93,41,59,102,111,114,40,118,97,114,32,111,61,116,104,105,115,46,95,115,116,121,108,101,44,97,61,111,46,115,116,97,114,116,80,111,115,49,44,115,61,111,46,115,105,122,101,49,44,99,61,111,46,115,116,97,114,116,80,111,115,50,44,117,61,111,46,115,105,122,101,50,44,108,61,101,46,108,101,110,103,116,104,44,102,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,114,103,105,110,44,104,61,110,91,48,93,124,124,48,44,100,61,104,44,112,61,48,44,118,61,48,59,118,60,108,45,49,59,43,43,118,41,123,102,111,114,40,118,97,114,32,103,61,112,97,114,115,101,73,110,116,40,101,91,118,93,44,49,48,41,44,109,61,112,97,114,115,101,73,110,116,40,101,91,118,43,49,93,44,49,48,41,44,98,61,116,46,115,108,105,99,101,40,103,44,109,41,44,121,61,98,46,108,101,110,103,116,104,44,119,61,116,104,105,115,46,95,103,101,116,83,105,122,101,40,98,44,115,44,117,41,44,95,61,100,44,120,61,48,59,120,60,121,59,43,43,120,41,123,118,97,114,32,79,61,98,91,120,93,44,83,61,79,46,111,114,103,83,105,122,101,91,117,93,47,79,46,111,114,103,83,105,122,101,91,115,93,42,119,44,107,61,48,61,61,61,120,63,48,58,98,91,120,45,49,93,46,114,101,99,116,44,67,61,107,63,107,91,99,93,43,107,91,117,93,43,102,58,48,59,79,46,114,101,99,116,61,40,105,61,123,125,44,105,91,97,93,61,95,44,105,91,99,93,61,67,44,105,91,115,93,61,119,44,105,91,117,93,61,83,44,105,41,125,112,43,61,102,43,119,44,100,61,104,43,112,125,118,97,114,32,80,61,116,46,108,101,110,103,116,104,59,105,102,40,114,41,114,101,116,117,114,110,123,115,116,97,114,116,58,91,104,93,44,101,110,100,58,91,100,93,125,59,102,111,114,40,118,61,48,59,118,60,80,59,43,43,118,41,123,79,61,116,91,118,93,59,79,46,114,101,99,116,91,97,93,45,61,112,125,114,101,116,117,114,110,123,115,116,97,114,116,58,91,104,45,112,93,44,101,110,100,58,91,104,93,125,125,44,101,46,95,105,110,115,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,91,93,41,44,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,91,93,41,59,118,97,114,32,105,61,114,63,116,58,110,101,40,116,41,59,114,101,116,117,114,110,123,105,116,101,109,115,58,105,44,111,117,116,108,105,110,101,115,58,116,104,105,115,46,95,108,97,121,111,117,116,40,105,44,101,44,110,41,125,125,44,116,125,40,41,44,88,101,61,84,101,44,90,101,61,110,40,49,52,52,41,59,10,47,42,42,10,32,32,42,32,118,117,101,45,99,108,97,115,115,45,99,111,109,112,111,110,101,110,116,32,118,55,46,50,46,54,10,32,32,42,32,40,99,41,32,50,48,49,53,45,112,114,101,115,101,110,116,32,69,118,97,110,32,89,111,117,10,32,32,42,32,64,108,105,99,101,110,115,101,32,77,73,84,10,32,32,42,47,10,102,117,110,99,116,105,111,110,32,74,101,40,116,41,123,114,101,116,117,114,110,32,74,101,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,34,115,121,109,98,111,108,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,83,121,109,98,111,108,38,38,116,33,61,61,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,63,34,115,121,109,98,111,108,34,58,116,121,112,101,111,102,32,116,125,44,74,101,40,116,41,125,102,117,110,99,116,105,111,110,32,81,101,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,102,117,110,99,116,105,111,110,32,116,110,40,116,41,123,114,101,116,117,114,110,32,101,110,40,116,41,124,124,110,110,40,116,41,124,124,114,110,40,41,125,102,117,110,99,116,105,111,110,32,101,110,40,116,41,123,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,118,97,114,32,101,61,48,44,110,61,110,101,119,32,65,114,114,97,121,40,116,46,108,101,110,103,116,104,41,59,101,60,116,46,108,101,110,103,116,104,59,101,43,43,41,110,91,101,93,61,116,91,101,93,59,114,101,116,117,114,110,32,110,125,125,102,117,110,99,116,105,111,110,32,110,110,40,116,41,123,105,102,40,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,124,124,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,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,116,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,116,41,125,102,117,110,99,116,105,111,110,32,114,110,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,34,41,125,102,117,110,99,116,105,111,110,32,111,110,40,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,82,101,102,108,101,99,116,38,38,82,101,102,108,101,99,116,46,100,101,102,105,110,101,77,101,116,97,100,97,116,97,38,38,82,101,102,108,101,99,116,46,103,101,116,79,119,110,77,101,116,97,100,97,116,97,75,101,121,115,125,102,117,110,99,116,105,111,110,32,97,110,40,116,44,101,41,123,115,110,40,116,44,101,41,44,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,101,46,112,114,111,116,111,116,121,112,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,115,110,40,116,46,112,114,111,116,111,116,121,112,101,44,101,46,112,114,111,116,111,116,121,112,101,44,110,41,125,41,41,44,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,115,110,40,116,44,101,44,110,41,125,41,41,125,102,117,110,99,116,105,111,110,32,115,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,63,82,101,102,108,101,99,116,46,103,101,116,79,119,110,77,101,116,97,100,97,116,97,75,101,121,115,40,101,44,110,41,58,82,101,102,108,101,99,116,46,103,101,116,79,119,110,77,101,116,97,100,97,116,97,75,101,121,115,40,101,41,59,114,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,105,61,110,63,82,101,102,108,101,99,116,46,103,101,116,79,119,110,77,101,116,97,100,97,116,97,40,114,44,101,44,110,41,58,82,101,102,108,101,99,116,46,103,101,116,79,119,110,77,101,116,97,100,97,116,97,40,114,44,101,41,59,110,63,82,101,102,108,101,99,116,46,100,101,102,105,110,101,77,101,116,97,100,97,116,97,40,114,44,105,44,116,44,110,41,58,82,101,102,108,101,99,116,46,100,101,102,105,110,101,77,101,116,97,100,97,116,97,40,114,44,105,44,116,41,125,41,41,125,118,97,114,32,99,110,61,123,95,95,112,114,111,116,111,95,95,58,91,93,125,44,117,110,61,99,110,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,59,102,117,110,99,116,105,111,110,32,108,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,44,114,41,123,118,97,114,32,105,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,101,58,101,46,99,111,110,115,116,114,117,99,116,111,114,59,105,46,95,95,100,101,99,111,114,97,116,111,114,115,95,95,124,124,40,105,46,95,95,100,101,99,111,114,97,116,111,114,115,95,95,61,91,93,41,44,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,118,111,105,100,32,48,41,44,105,46,95,95,100,101,99,111,114,97,116,111,114,115,95,95,46,112,117,115,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,101,44,110,44,114,41,125,41,41,125,125,102,117,110,99,116,105,111,110,32,102,110,40,116,41,123,118,97,114,32,101,61,74,101,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,116,124,124,34,111,98,106,101,99,116,34,33,61,61,101,38,38,34,102,117,110,99,116,105,111,110,34,33,61,61,101,125,102,117,110,99,116,105,111,110,32,104,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,116,111,116,121,112,101,46,95,105,110,105,116,59,101,46,112,114,111,116,111,116,121,112,101,46,95,105,110,105,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,116,41,59,105,102,40,116,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,41,102,111,114,40,118,97,114,32,114,32,105,110,32,116,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,41,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,114,41,124,124,110,46,112,117,115,104,40,114,41,59,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,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,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,91,110,93,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,91,110,93,61,101,125,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,41,125,41,41,125,59,118,97,114,32,114,61,110,101,119,32,101,59,101,46,112,114,111,116,111,116,121,112,101,46,95,105,110,105,116,61,110,59,118,97,114,32,105,61,123,125,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,114,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,111,105,100,32,48,33,61,61,114,91,116,93,38,38,40,105,91,116,93,61,114,91,116,93,41,125,41,41,44,105,125,118,97,114,32,100,110,61,91,34,100,97,116,97,34,44,34,98,101,102,111,114,101,67,114,101,97,116,101,34,44,34,99,114,101,97,116,101,100,34,44,34,98,101,102,111,114,101,77,111,117,110,116,34,44,34,109,111,117,110,116,101,100,34,44,34,98,101,102,111,114,101,68,101,115,116,114,111,121,34,44,34,100,101,115,116,114,111,121,101,100,34,44,34,98,101,102,111,114,101,85,112,100,97,116,101,34,44,34,117,112,100,97,116,101,100,34,44,34,97,99,116,105,118,97,116,101,100,34,44,34,100,101,97,99,116,105,118,97,116,101,100,34,44,34,114,101,110,100,101,114,34,44,34,101,114,114,111,114,67,97,112,116,117,114,101,100,34,44,34,115,101,114,118,101,114,80,114,101,102,101,116,99,104,34,93,59,102,117,110,99,116,105,111,110,32,112,110,40,116,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,49,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,123,125,59,101,46,110,97,109,101,61,101,46,110,97,109,101,124,124,116,46,95,99,111,109,112,111,110,101,110,116,84,97,103,124,124,116,46,110,97,109,101,59,118,97,114,32,110,61,116,46,112,114,111,116,111,116,121,112,101,59,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,110,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,61,116,41,105,102,40,100,110,46,105,110,100,101,120,79,102,40,116,41,62,45,49,41,101,91,116,93,61,110,91,116,93,59,101,108,115,101,123,118,97,114,32,114,61,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,110,44,116,41,59,118,111,105,100,32,48,33,61,61,114,46,118,97,108,117,101,63,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,114,46,118,97,108,117,101,63,40,101,46,109,101,116,104,111,100,115,124,124,40,101,46,109,101,116,104,111,100,115,61,123,125,41,41,91,116,93,61,114,46,118,97,108,117,101,58,40,101,46,109,105,120,105,110,115,124,124,40,101,46,109,105,120,105,110,115,61,91,93,41,41,46,112,117,115,104,40,123,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,101,40,123,125,44,116,44,114,46,118,97,108,117,101,41,125,125,41,58,40,114,46,103,101,116,124,124,114,46,115,101,116,41,38,38,40,40,101,46,99,111,109,112,117,116,101,100,124,124,40,101,46,99,111,109,112,117,116,101,100,61,123,125,41,41,91,116,93,61,123,103,101,116,58,114,46,103,101,116,44,115,101,116,58,114,46,115,101,116,125,41,125,125,41,41,44,40,101,46,109,105,120,105,110,115,124,124,40,101,46,109,105,120,105,110,115,61,91,93,41,41,46,112,117,115,104,40,123,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,110,40,116,104,105,115,44,116,41,125,125,41,59,118,97,114,32,114,61,116,46,95,95,100,101,99,111,114,97,116,111,114,115,95,95,59,114,38,38,40,114,46,102,111,114,69,97,99,104,40,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,41,44,100,101,108,101,116,101,32,116,46,95,95,100,101,99,111,114,97,116,111,114,115,95,95,41,59,118,97,114,32,105,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,46,112,114,111,116,111,116,121,112,101,41,44,111,61,105,32,105,110,115,116,97,110,99,101,111,102,32,90,101,91,34,100,101,102,97,117,108,116,34,93,63,105,46,99,111,110,115,116,114,117,99,116,111,114,58,90,101,91,34,100,101,102,97,117,108,116,34,93,44,97,61,111,46,101,120,116,101,110,100,40,101,41,59,114,101,116,117,114,110,32,103,110,40,97,44,116,44,111,41,44,111,110,40,41,38,38,97,110,40,97,44,116,41,44,97,125,118,97,114,32,118,110,61,123,112,114,111,116,111,116,121,112,101,58,33,48,44,97,114,103,117,109,101,110,116,115,58,33,48,44,99,97,108,108,101,101,58,33,48,44,99,97,108,108,101,114,58,33,48,125,59,102,117,110,99,116,105,111,110,32,103,110,40,116,44,101,44,110,41,123,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,114,41,123,105,102,40,33,118,110,91,114,93,41,123,118,97,114,32,105,61,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,116,44,114,41,59,105,102,40,33,105,124,124,105,46,99,111,110,102,105,103,117,114,97,98,108,101,41,123,118,97,114,32,111,61,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,101,44,114,41,59,105,102,40,33,117,110,41,123,105,102,40,34,99,105,100,34,61,61,61,114,41,114,101,116,117,114,110,59,118,97,114,32,97,61,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,110,44,114,41,59,105,102,40,33,102,110,40,111,46,118,97,108,117,101,41,38,38,97,38,38,97,46,118,97,108,117,101,61,61,61,111,46,118,97,108,117,101,41,114,101,116,117,114,110,125,48,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,114,44,111,41,125,125,125,41,41,125,102,117,110,99,116,105,111,110,32,109,110,40,116,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,112,110,40,116,41,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,112,110,40,101,44,116,41,125,125,109,110,46,114,101,103,105,115,116,101,114,72,111,111,107,115,61,102,117,110,99,116,105,111,110,40,116,41,123,100,110,46,112,117,115,104,46,97,112,112,108,121,40,100,110,44,116,110,40,116,41,41,125,59,118,97,114,32,98,110,61,109,110,59,118,97,114,32,121,110,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,82,101,102,108,101,99,116,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,82,101,102,108,101,99,116,46,103,101,116,77,101,116,97,100,97,116,97,59,102,117,110,99,116,105,111,110,32,119,110,40,116,44,101,44,110,41,123,105,102,40,121,110,38,38,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,38,38,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,116,38,38,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,116,46,116,121,112,101,41,123,118,97,114,32,114,61,82,101,102,108,101,99,116,46,103,101,116,77,101,116,97,100,97,116,97,40,34,100,101,115,105,103,110,58,116,121,112,101,34,44,101,44,110,41,59,114,33,61,61,79,98,106,101,99,116,38,38,40,116,46,116,121,112,101,61,114,41,125,125,102,117,110,99,116,105,111,110,32,95,110,40,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,123,125,41,44,102,117,110,99,116,105,111,110,40,101,44,110,41,123,119,110,40,116,44,101,44,110,41,44,108,110,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,40,101,46,112,114,111,112,115,124,124,40,101,46,112,114,111,112,115,61,123,125,41,41,91,110,93,61,116,125,41,41,40,101,44,110,41,125,125,10,47,42,33,32,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,10,67,111,112,121,114,105,103,104,116,32,40,99,41,32,77,105,99,114,111,115,111,102,116,32,67,111,114,112,111,114,97,116,105,111,110,46,32,65,108,108,32,114,105,103,104,116,115,32,114,101,115,101,114,118,101,100,46,10,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,40,116,104,101,32,34,76,105,99,101,110,115,101,34,41,59,32,121,111,117,32,109,97,121,32,110,111,116,32,117,115,101,10,116,104,105,115,32,102,105,108,101,32,101,120,99,101,112,116,32,105,110,32,99,111,109,112,108,105,97,110,99,101,32,119,105,116,104,32,116,104,101,32,76,105,99,101,110,115,101,46,32,89,111,117,32,109,97,121,32,111,98,116,97,105,110,32,97,32,99,111,112,121,32,111,102,32,116,104,101,10,76,105,99,101,110,115,101,32,97,116,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,10,10,84,72,73,83,32,67,79,68,69,32,73,83,32,80,82,79,86,73,68,69,68,32,79,78,32,65,78,32,42,65,83,32,73,83,42,32,66,65,83,73,83,44,32,87,73,84,72,79,85,84,32,87,65,82,82,65,78,84,73,69,83,32,79,82,32,67,79,78,68,73,84,73,79,78,83,32,79,70,32,65,78,89,10,75,73,78,68,44,32,69,73,84,72,69,82,32,69,88,80,82,69,83,83,32,79,82,32,73,77,80,76,73,69,68,44,32,73,78,67,76,85,68,73,78,71,32,87,73,84,72,79,85,84,32,76,73,77,73,84,65,84,73,79,78,32,65,78,89,32,73,77,80,76,73,69,68,10,87,65,82,82,65,78,84,73,69,83,32,79,82,32,67,79,78,68,73,84,73,79,78,83,32,79,70,32,84,73,84,76,69,44,32,70,73,84,78,69,83,83,32,70,79,82,32,65,32,80,65,82,84,73,67,85,76,65,82,32,80,85,82,80,79,83,69,44,10,77,69,82,67,72,65,78,84,65,66,76,73,84,89,32,79,82,32,78,79,78,45,73,78,70,82,73,78,71,69,77,69,78,84,46,10,10,83,101,101,32,116,104,101,32,65,112,97,99,104,101,32,86,101,114,115,105,111,110,32,50,46,48,32,76,105,99,101,110,115,101,32,102,111,114,32,115,112,101,99,105,102,105,99,32,108,97,110,103,117,97,103,101,32,103,111,118,101,114,110,105,110,103,32,112,101,114,109,105,115,115,105,111,110,115,10,97,110,100,32,108,105,109,105,116,97,116,105,111,110,115,32,117,110,100,101,114,32,116,104,101,32,76,105,99,101,110,115,101,46,10,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,32,42,47,10,118,97,114,32,120,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,120,110,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,123,95,95,112,114,111,116,111,95,95,58,91,93,125,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,38,38,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,95,95,112,114,111,116,111,95,95,61,101,125,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,110,41,38,38,40,116,91,110,93,61,101,91,110,93,41,125,44,120,110,40,116,44,101,41,125,59,102,117,110,99,116,105,111,110,32,79,110,40,116,44,101,41,123,102,117,110,99,116,105,111,110,32,110,40,41,123,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,61,116,125,120,110,40,116,44,101,41,44,116,46,112,114,111,116,111,116,121,112,101,61,110,117,108,108,61,61,61,101,63,79,98,106,101,99,116,46,99,114,101,97,116,101,40,101,41,58,40,110,46,112,114,111,116,111,116,121,112,101,61,101,46,112,114,111,116,111,116,121,112,101,44,110,101,119,32,110,41,125,118,97,114,32,83,110,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,83,110,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,44,110,61,49,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,102,111,114,40,118,97,114,32,105,32,105,110,32,101,61,97,114,103,117,109,101,110,116,115,91,110,93,44,101,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,101,44,105,41,38,38,40,116,91,105,93,61,101,91,105,93,41,59,114,101,116,117,114,110,32,116,125,44,83,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,59,102,117,110,99,116,105,111,110,32,107,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,44,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,97,61,111,60,51,63,101,58,110,117,108,108,61,61,61,114,63,114,61,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,101,44,110,41,58,114,59,105,102,40,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,82,101,102,108,101,99,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,82,101,102,108,101,99,116,46,100,101,99,111,114,97,116,101,41,97,61,82,101,102,108,101,99,116,46,100,101,99,111,114,97,116,101,40,116,44,101,44,110,44,114,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,115,61,116,46,108,101,110,103,116,104,45,49,59,115,62,61,48,59,115,45,45,41,40,105,61,116,91,115,93,41,38,38,40,97,61,40,111,60,51,63,105,40,97,41,58,111,62,51,63,105,40,101,44,110,44,97,41,58,105,40,101,44,110,41,41,124,124,97,41,59,114,101,116,117,114,110,32,111,62,51,38,38,97,38,38,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,97,41,44,97,125,102,117,110,99,116,105,111,110,32,67,110,40,116,44,101,41,123,118,97,114,32,110,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,116,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,59,105,102,40,33,110,41,114,101,116,117,114,110,32,116,59,118,97,114,32,114,44,105,44,111,61,110,46,99,97,108,108,40,116,41,44,97,61,91,93,59,116,114,121,123,119,104,105,108,101,40,40,118,111,105,100,32,48,61,61,61,101,124,124,101,45,45,32,62,48,41,38,38,33,40,114,61,111,46,110,101,120,116,40,41,41,46,100,111,110,101,41,97,46,112,117,115,104,40,114,46,118,97,108,117,101,41,125,99,97,116,99,104,40,101,114,114,111,114,41,123,105,61,123,101,114,114,111,114,58,101,114,114,111,114,125,125,102,105,110,97,108,108,121,123,116,114,121,123,114,38,38,33,114,46,100,111,110,101,38,38,40,110,61,111,91,34,114,101,116,117,114,110,34,93,41,38,38,110,46,99,97,108,108,40,111,41,125,102,105,110,97,108,108,121,123,105,102,40,105,41,116,104,114,111,119,32,105,46,101,114,114,111,114,125,125,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,80,110,40,41,123,102,111,114,40,118,97,114,32,116,61,91,93,44,101,61,48,59,101,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,101,43,43,41,116,61,116,46,99,111,110,99,97,116,40,67,110,40,97,114,103,117,109,101,110,116,115,91,101,93,41,41,59,114,101,116,117,114,110,32,116,125,118,97,114,32,84,110,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,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,79,110,40,101,44,116,41,59,118,97,114,32,110,61,101,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,110,46,109,111,117,110,116,101,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,101,108,59,116,104,105,115,46,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,61,110,101,119,32,88,101,40,116,44,83,110,40,123,125,44,116,104,105,115,46,111,112,116,105,111,110,115,44,123,114,101,110,100,101,114,69,120,116,101,114,110,97,108,58,33,48,125,41,41,44,116,104,105,115,46,36,95,119,114,97,112,112,101,114,69,108,101,109,101,110,116,61,116,44,116,104,105,115,46,36,95,108,97,121,111,117,116,61,34,34,44,116,104,105,115,46,36,95,98,105,110,100,69,118,101,110,116,115,40,41,59,118,97,114,32,101,61,116,104,105,115,46,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,59,101,46,115,101,116,76,97,121,111,117,116,40,116,104,105,115,46,108,97,121,111,117,116,84,121,112,101,44,116,104,105,115,46,108,97,121,111,117,116,79,112,116,105,111,110,115,41,44,116,104,105,115,46,36,95,115,101,116,76,111,97,100,105,110,103,69,108,101,109,101,110,116,40,41,44,116,104,105,115,46,115,116,97,116,117,115,63,101,46,115,101,116,83,116,97,116,117,115,40,116,104,105,115,46,115,116,97,116,117,115,44,33,48,44,116,104,105,115,46,36,95,103,101,116,69,108,101,109,101,110,116,115,40,41,41,58,40,101,46,98,101,102,111,114,101,83,121,110,99,40,116,104,105,115,46,36,95,116,111,73,116,101,109,115,40,41,41,44,101,46,108,97,121,111,117,116,40,33,48,41,41,125,44,110,46,117,112,100,97,116,101,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,44,101,61,116,104,105,115,46,36,95,108,97,121,111,117,116,44,110,61,116,104,105,115,46,36,95,103,101,116,69,108,101,109,101,110,116,115,40,41,59,116,104,105,115,46,36,95,115,101,116,76,111,97,100,105,110,103,69,108,101,109,101,110,116,40,41,44,116,46,115,121,110,99,40,110,41,44,101,38,38,40,116,104,105,115,46,36,95,108,97,121,111,117,116,61,34,34,44,116,46,108,97,121,111,117,116,40,34,114,101,108,97,121,111,117,116,34,61,61,61,101,41,41,125,44,110,46,114,101,110,100,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,44,110,61,116,104,105,115,46,36,95,116,111,73,116,101,109,115,40,41,44,114,61,91,93,59,105,102,40,101,41,123,118,97,114,32,105,61,101,46,98,101,102,111,114,101,83,121,110,99,40,110,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,116,46,105,115,76,111,97,100,105,110,103,125,41,41,41,59,116,104,105,115,46,36,95,108,97,121,111,117,116,61,34,114,101,108,97,121,111,117,116,34,61,61,61,105,63,105,58,116,104,105,115,46,36,95,108,97,121,111,117,116,124,124,105,44,114,61,101,46,103,101,116,82,101,110,100,101,114,105,110,103,73,116,101,109,115,40,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,118,110,111,100,101,125,41,41,44,116,104,105,115,46,36,115,108,111,116,115,46,108,111,97,100,105,110,103,38,38,114,46,112,117,115,104,46,97,112,112,108,121,40,114,44,80,110,40,116,104,105,115,46,36,115,108,111,116,115,46,108,111,97,100,105,110,103,41,41,125,101,108,115,101,123,118,97,114,32,111,61,108,101,40,110,41,59,105,102,40,116,104,105,115,46,115,116,97,116,117,115,41,123,118,97,114,32,97,61,116,104,105,115,46,115,116,97,116,117,115,46,95,105,110,102,105,110,105,116,101,44,115,61,97,46,115,116,97,114,116,67,117,114,115,111,114,44,99,61,97,46,101,110,100,67,117,114,115,111,114,59,114,61,98,101,46,112,108,117,99,107,40,111,46,115,108,105,99,101,40,115,44,99,43,49,41,44,34,105,116,101,109,115,34,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,118,110,111,100,101,125,41,41,125,101,108,115,101,32,116,104,105,115,46,117,115,101,70,105,114,115,116,82,101,110,100,101,114,38,38,40,114,61,110,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,118,110,111,100,101,125,41,41,41,125,118,97,114,32,117,61,123,125,59,102,111,114,40,118,97,114,32,108,32,105,110,32,116,104,105,115,46,119,114,97,112,112,101,114,68,97,116,97,41,117,91,108,93,61,116,104,105,115,46,119,114,97,112,112,101,114,68,97,116,97,91,108,93,59,114,101,116,117,114,110,32,116,40,116,104,105,115,46,116,97,103,44,117,44,116,104,105,115,46,36,95,103,101,116,67,111,110,116,97,105,110,101,114,40,114,44,116,41,41,125,44,110,46,98,101,102,111,114,101,68,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,46,100,101,115,116,114,111,121,40,41,125,44,110,46,115,101,116,83,116,97,116,117,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,110,38,38,40,110,61,116,104,105,115,46,36,95,103,101,116,69,108,101,109,101,110,116,115,40,41,41,44,116,104,105,115,46,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,46,115,101,116,83,116,97,116,117,115,40,116,44,101,44,110,41,44,116,104,105,115,125,44,110,46,36,95,98,105,110,100,69,118,101,110,116,115,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,116,104,105,115,46,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,59,69,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,101,46,111,110,40,110,44,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,61,116,44,116,46,36,101,109,105,116,40,110,46,114,101,112,108,97,99,101,40,47,40,91,65,45,90,93,41,47,103,44,34,45,36,49,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,101,41,125,41,41,125,41,41,44,101,46,111,110,40,34,114,101,110,100,101,114,34,44,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,101,46,110,101,120,116,59,116,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,44,116,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,110,40,41,125,41,41,125,41,41,125,44,110,46,36,95,103,101,116,67,111,110,116,97,105,110,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,116,104,105,115,46,111,112,116,105,111,110,115,46,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,59,105,102,40,33,114,41,114,101,116,117,114,110,32,116,59,118,97,114,32,105,61,123,99,108,97,115,115,58,40,110,61,123,125,44,110,91,99,116,93,61,33,48,44,110,41,44,114,101,102,58,99,116,125,59,114,101,116,117,114,110,91,101,40,116,104,105,115,46,99,111,110,116,97,105,110,101,114,84,97,103,44,105,44,116,41,93,125,44,110,46,36,95,103,101,116,69,108,101,109,101,110,116,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,114,101,102,115,38,38,116,104,105,115,46,36,114,101,102,115,91,99,116,93,44,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,40,116,124,124,116,104,105,115,46,36,95,119,114,97,112,112,101,114,69,108,101,109,101,110,116,41,46,99,104,105,108,100,114,101,110,41,59,114,101,116,117,114,110,32,116,104,105,115,46,36,115,108,111,116,115,46,108,111,97,100,105,110,103,63,101,46,115,108,105,99,101,40,48,44,45,49,41,58,101,125,44,110,46,36,95,116,111,73,116,101,109,115,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,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,59,114,101,116,117,114,110,32,101,63,101,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,61,116,46,103,114,111,117,112,66,121,40,101,44,110,41,124,124,34,34,44,105,61,110,117,108,108,33,61,101,46,107,101,121,63,101,46,107,101,121,58,101,46,116,97,103,43,34,45,34,43,110,59,114,101,116,117,114,110,123,103,114,111,117,112,75,101,121,58,114,44,105,116,101,109,75,101,121,58,105,44,118,110,111,100,101,58,101,125,125,41,41,58,91,93,125,44,110,46,36,95,115,101,116,76,111,97,100,105,110,103,69,108,101,109,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,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,59,105,102,40,116,104,105,115,46,36,115,108,111,116,115,46,108,111,97,100,105,110,103,41,123,118,97,114,32,101,61,116,104,105,115,46,36,114,101,102,115,38,38,116,104,105,115,46,36,114,101,102,115,91,99,116,93,44,110,61,40,101,124,124,116,104,105,115,46,36,95,119,114,97,112,112,101,114,69,108,101,109,101,110,116,41,46,108,97,115,116,69,108,101,109,101,110,116,67,104,105,108,100,59,105,102,40,110,41,114,101,116,117,114,110,32,118,111,105,100,32,116,46,115,101,116,76,111,97,100,105,110,103,66,97,114,40,123,97,112,112,101,110,100,58,110,44,112,114,101,112,101,110,100,58,110,125,41,125,116,46,115,101,116,76,111,97,100,105,110,103,66,97,114,40,41,125,44,107,110,40,91,95,110,40,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,100,105,118,34,44,114,101,113,117,105,114,101,100,58,33,49,125,41,93,44,101,46,112,114,111,116,111,116,121,112,101,44,34,116,97,103,34,44,118,111,105,100,32,48,41,44,107,110,40,91,95,110,40,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,100,105,118,34,44,114,101,113,117,105,114,101,100,58,33,49,125,41,93,44,101,46,112,114,111,116,111,116,121,112,101,44,34,99,111,110,116,97,105,110,101,114,84,97,103,34,44,118,111,105,100,32,48,41,44,107,110,40,91,95,110,40,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,44,114,101,113,117,105,114,101,100,58,33,49,125,41,93,44,101,46,112,114,111,116,111,116,121,112,101,44,34,117,115,101,70,105,114,115,116,82,101,110,100,101,114,34,44,118,111,105,100,32,48,41,44,107,110,40,91,95,110,40,123,116,121,112,101,58,79,98,106,101,99,116,44,100,101,102,97,117,108,116,58,110,117,108,108,44,114,101,113,117,105,114,101,100,58,33,49,125,41,93,44,101,46,112,114,111,116,111,116,121,112,101,44,34,115,116,97,116,117,115,34,44,118,111,105,100,32,48,41,44,107,110,40,91,95,110,40,123,116,121,112,101,58,79,98,106,101,99,116,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,44,114,101,113,117,105,114,101,100,58,33,49,125,41,93,44,101,46,112,114,111,116,111,116,121,112,101,44,34,111,112,116,105,111,110,115,34,44,118,111,105,100,32,48,41,44,107,110,40,91,95,110,40,123,116,121,112,101,58,79,98,106,101,99,116,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,44,114,101,113,117,105,114,101,100,58,33,49,125,41,93,44,101,46,112,114,111,116,111,116,121,112,101,44,34,108,97,121,111,117,116,79,112,116,105,111,110,115,34,44,118,111,105,100,32,48,41,44,107,110,40,91,95,110,40,123,116,121,112,101,58,70,117,110,99,116,105,111,110,44,100,101,102,97,117,108,116,58,76,101,44,114,101,113,117,105,114,101,100,58,33,49,125,41,93,44,101,46,112,114,111,116,111,116,121,112,101,44,34,108,97,121,111,117,116,84,121,112,101,34,44,118,111,105,100,32,48,41,44,107,110,40,91,95,110,40,123,116,121,112,101,58,79,98,106,101,99,116,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,44,114,101,113,117,105,114,101,100,58,33,49,125,41,93,44,101,46,112,114,111,116,111,116,121,112,101,44,34,119,114,97,112,112,101,114,68,97,116,97,34,44,118,111,105,100,32,48,41,44,107,110,40,91,95,110,40,123,116,121,112,101,58,70,117,110,99,116,105,111,110,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,100,97,116,97,38,38,116,46,100,97,116,97,46,97,116,116,114,115,44,114,61,116,46,100,97,116,97,38,38,116,46,100,97,116,97,46,112,114,111,112,115,59,105,102,40,110,41,123,105,102,40,34,100,97,116,97,45,103,114,111,117,112,107,101,121,34,105,110,32,110,41,114,101,116,117,114,110,32,110,91,34,100,97,116,97,45,103,114,111,117,112,107,101,121,34,93,59,105,102,40,34,103,114,111,117,112,75,101,121,34,105,110,32,110,41,114,101,116,117,114,110,32,110,46,103,114,111,117,112,75,101,121,125,105,102,40,114,41,123,105,102,40,34,100,97,116,97,45,103,114,111,117,112,107,101,121,34,105,110,32,114,41,114,101,116,117,114,110,32,114,91,34,100,97,116,97,45,103,114,111,117,112,107,101,121,34,93,59,105,102,40,34,103,114,111,117,112,75,101,121,34,105,110,32,114,41,114,101,116,117,114,110,32,114,46,103,114,111,117,112,75,101,121,125,114,101,116,117,114,110,34,34,125,125,41,93,44,101,46,112,114,111,116,111,116,121,112,101,44,34,103,114,111,117,112,66,121,34,44,118,111,105,100,32,48,41,44,107,110,40,91,100,101,93,44,101,46,112,114,111,116,111,116,121,112,101,44,34,36,95,110,97,116,105,118,101,73,110,102,105,110,105,116,101,71,114,105,100,34,44,118,111,105,100,32,48,41,44,101,61,107,110,40,91,98,110,40,123,125,41,93,44,101,41,44,101,125,40,90,101,91,34,100,101,102,97,117,108,116,34,93,41,44,106,110,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,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,114,101,116,117,114,110,32,79,110,40,101,44,116,41,44,107,110,40,91,95,110,40,123,116,121,112,101,58,70,117,110,99,116,105,111,110,44,100,101,102,97,117,108,116,58,76,101,44,114,101,113,117,105,114,101,100,58,33,49,125,41,93,44,101,46,112,114,111,116,111,116,121,112,101,44,34,108,97,121,111,117,116,84,121,112,101,34,44,118,111,105,100,32,48,41,44,101,61,107,110,40,91,98,110,40,123,125,41,93,44,101,41,44,101,125,40,84,110,41,44,69,110,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,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,114,101,116,117,114,110,32,79,110,40,101,44,116,41,44,107,110,40,91,95,110,40,123,116,121,112,101,58,70,117,110,99,116,105,111,110,44,100,101,102,97,117,108,116,58,75,101,44,114,101,113,117,105,114,101,100,58,33,49,125,41,93,44,101,46,112,114,111,116,111,116,121,112,101,44,34,108,97,121,111,117,116,84,121,112,101,34,44,118,111,105,100,32,48,41,44,101,61,107,110,40,91,98,110,40,123,125,41,93,44,101,41,44,101,125,40,84,110,41,44,68,110,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,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,114,101,116,117,114,110,32,79,110,40,101,44,116,41,44,107,110,40,91,95,110,40,123,116,121,112,101,58,70,117,110,99,116,105,111,110,44,100,101,102,97,117,108,116,58,70,101,44,114,101,113,117,105,114,101,100,58,33,49,125,41,93,44,101,46,112,114,111,116,111,116,121,112,101,44,34,108,97,121,111,117,116,84,121,112,101,34,44,118,111,105,100,32,48,41,44,101,61,107,110,40,91,98,110,40,123,125,41,93,44,101,41,44,101,125,40,84,110,41,44,65,110,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,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,114,101,116,117,114,110,32,79,110,40,101,44,116,41,44,107,110,40,91,95,110,40,123,116,121,112,101,58,70,117,110,99,116,105,111,110,44,100,101,102,97,117,108,116,58,66,101,44,114,101,113,117,105,114,101,100,58,33,49,125,41,93,44,101,46,112,114,111,116,111,116,121,112,101,44,34,108,97,121,111,117,116,84,121,112,101,34,44,118,111,105,100,32,48,41,44,101,61,107,110,40,91,98,110,40,123,125,41,93,44,101,41,44,101,125,40,84,110,41,44,76,110,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,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,114,101,116,117,114,110,32,79,110,40,101,44,116,41,44,107,110,40,91,95,110,40,123,116,121,112,101,58,70,117,110,99,116,105,111,110,44,100,101,102,97,117,108,116,58,85,101,44,114,101,113,117,105,114,101,100,58,33,49,125,41,93,44,101,46,112,114,111,116,111,116,121,112,101,44,34,108,97,121,111,117,116,84,121,112,101,34,44,118,111,105,100,32,48,41,44,101,61,107,110,40,91,98,110,40,123,125,41,93,44,101,41,44,101,125,40,84,110,41,44,73,110,61,34,51,46,51,46,48,34,44,77,110,61,102,117,110,99,116,105,111,110,40,116,41,123,116,46,99,111,109,112,111,110,101,110,116,40,34,73,110,102,105,110,105,116,101,71,114,105,100,34,44,84,110,41,44,116,46,99,111,109,112,111,110,101,110,116,40,34,71,114,105,100,76,97,121,111,117,116,34,44,106,110,41,44,116,46,99,111,109,112,111,110,101,110,116,40,34,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,34,44,69,110,41,44,116,46,99,111,109,112,111,110,101,110,116,40,34,70,114,97,109,101,76,97,121,111,117,116,34,44,68,110,41,44,116,46,99,111,109,112,111,110,101,110,116,40,34,83,113,117,97,114,101,76,97,121,111,117,116,34,44,65,110,41,44,116,46,99,111,109,112,111,110,101,110,116,40,34,80,97,99,107,105,110,103,76,97,121,111,117,116,34,44,76,110,41,125,44,36,110,61,123,73,110,102,105,110,105,116,101,71,114,105,100,58,84,110,44,71,114,105,100,76,97,121,111,117,116,58,106,110,44,74,117,115,116,105,102,105,101,100,76,97,121,111,117,116,58,69,110,44,70,114,97,109,101,76,97,121,111,117,116,58,68,110,44,83,113,117,97,114,101,76,97,121,111,117,116,58,65,110,44,80,97,99,107,105,110,103,76,97,121,111,117,116,58,76,110,44,105,110,115,116,97,108,108,58,77,110,44,118,101,114,115,105,111,110,58,73,110,125,44,70,110,61,36,110,125,44,51,55,51,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,44,101,44,110,44,114,44,105,44,111,44,97,44,115,41,123,118,97,114,32,99,44,117,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,116,46,111,112,116,105,111,110,115,58,116,59,105,102,40,101,38,38,40,117,46,114,101,110,100,101,114,61,101,44,117,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,61,110,44,117,46,95,99,111,109,112,105,108,101,100,61,33,48,41,44,114,38,38,40,117,46,102,117,110,99,116,105,111,110,97,108,61,33,48,41,44,111,38,38,40,117,46,95,115,99,111,112,101,73,100,61,34,100,97,116,97,45,118,45,34,43,111,41,44,97,63,40,99,61,102,117,110,99,116,105,111,110,40,116,41,123,116,61,116,124,124,116,104,105,115,46,36,118,110,111,100,101,38,38,116,104,105,115,46,36,118,110,111,100,101,46,115,115,114,67,111,110,116,101,120,116,124,124,116,104,105,115,46,112,97,114,101,110,116,38,38,116,104,105,115,46,112,97,114,101,110,116,46,36,118,110,111,100,101,38,38,116,104,105,115,46,112,97,114,101,110,116,46,36,118,110,111,100,101,46,115,115,114,67,111,110,116,101,120,116,44,116,124,124,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,95,95,86,85,69,95,83,83,82,95,67,79,78,84,69,88,84,95,95,124,124,40,116,61,95,95,86,85,69,95,83,83,82,95,67,79,78,84,69,88,84,95,95,41,44,105,38,38,105,46,99,97,108,108,40,116,104,105,115,44,116,41,44,116,38,38,116,46,95,114,101,103,105,115,116,101,114,101,100,67,111,109,112,111,110,101,110,116,115,38,38,116,46,95,114,101,103,105,115,116,101,114,101,100,67,111,109,112,111,110,101,110,116,115,46,97,100,100,40,97,41,125,44,117,46,95,115,115,114,82,101,103,105,115,116,101,114,61,99,41,58,105,38,38,40,99,61,115,63,102,117,110,99,116,105,111,110,40,41,123,105,46,99,97,108,108,40,116,104,105,115,44,40,117,46,102,117,110,99,116,105,111,110,97,108,63,116,104,105,115,46,112,97,114,101,110,116,58,116,104,105,115,41,46,36,114,111,111,116,46,36,111,112,116,105,111,110,115,46,115,104,97,100,111,119,82,111,111,116,41,125,58,105,41,44,99,41,105,102,40,117,46,102,117,110,99,116,105,111,110,97,108,41,123,117,46,95,105,110,106,101,99,116,83,116,121,108,101,115,61,99,59,118,97,114,32,108,61,117,46,114,101,110,100,101,114,59,117,46,114,101,110,100,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,99,46,99,97,108,108,40,101,41,44,108,40,116,44,101,41,125,125,101,108,115,101,123,118,97,114,32,102,61,117,46,98,101,102,111,114,101,67,114,101,97,116,101,59,117,46,98,101,102,111,114,101,67,114,101,97,116,101,61,102,63,91,93,46,99,111,110,99,97,116,40,102,44,99,41,58,91,99,93,125,114,101,116,117,114,110,123,101,120,112,111,114,116,115,58,116,44,111,112,116,105,111,110,115,58,117,125,125,110,46,100,40,101,44,123,90,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,125,125,41,125,44,57,56,51,56,58,102,117,110,99,116,105,111,110,40,41,123,125,44,57,54,54,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,46,101,120,112,111,114,116,115,61,110,40,49,54,48,57,41,125,44,53,52,52,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,56,54,55,41,44,105,61,110,40,54,48,50,54,41,44,111,61,110,40,52,51,55,50,41,44,97,61,110,40,53,51,50,55,41,44,115,61,110,40,52,48,57,55,41,44,99,61,110,40,52,49,48,57,41,44,117,61,110,40,55,57,56,53,41,44,108,61,110,40,53,48,54,49,41,44,102,61,110,40,53,54,53,53,41,44,104,61,110,40,53,50,54,51,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,100,44,112,61,116,46,100,97,116,97,44,118,61,116,46,104,101,97,100,101,114,115,44,103,61,116,46,114,101,115,112,111,110,115,101,84,121,112,101,59,102,117,110,99,116,105,111,110,32,109,40,41,123,116,46,99,97,110,99,101,108,84,111,107,101,110,38,38,116,46,99,97,110,99,101,108,84,111,107,101,110,46,117,110,115,117,98,115,99,114,105,98,101,40,100,41,44,116,46,115,105,103,110,97,108,38,38,116,46,115,105,103,110,97,108,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,97,98,111,114,116,34,44,100,41,125,114,46,105,115,70,111,114,109,68,97,116,97,40,112,41,38,38,100,101,108,101,116,101,32,118,91,34,67,111,110,116,101,110,116,45,84,121,112,101,34,93,59,118,97,114,32,98,61,110,101,119,32,88,77,76,72,116,116,112,82,101,113,117,101,115,116,59,105,102,40,116,46,97,117,116,104,41,123,118,97,114,32,121,61,116,46,97,117,116,104,46,117,115,101,114,110,97,109,101,124,124,34,34,44,119,61,116,46,97,117,116,104,46,112,97,115,115,119,111,114,100,63,117,110,101,115,99,97,112,101,40,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,116,46,97,117,116,104,46,112,97,115,115,119,111,114,100,41,41,58,34,34,59,118,46,65,117,116,104,111,114,105,122,97,116,105,111,110,61,34,66,97,115,105,99,32,34,43,98,116,111,97,40,121,43,34,58,34,43,119,41,125,118,97,114,32,95,61,115,40,116,46,98,97,115,101,85,82,76,44,116,46,117,114,108,41,59,102,117,110,99,116,105,111,110,32,120,40,41,123,105,102,40,98,41,123,118,97,114,32,114,61,34,103,101,116,65,108,108,82,101,115,112,111,110,115,101,72,101,97,100,101,114,115,34,105,110,32,98,63,99,40,98,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,58,110,117,108,108,44,111,61,103,38,38,34,116,101,120,116,34,33,61,61,103,38,38,34,106,115,111,110,34,33,61,61,103,63,98,46,114,101,115,112,111,110,115,101,58,98,46,114,101,115,112,111,110,115,101,84,101,120,116,44,97,61,123,100,97,116,97,58,111,44,115,116,97,116,117,115,58,98,46,115,116,97,116,117,115,44,115,116,97,116,117,115,84,101,120,116,58,98,46,115,116,97,116,117,115,84,101,120,116,44,104,101,97,100,101,114,115,58,114,44,99,111,110,102,105,103,58,116,44,114,101,113,117,101,115,116,58,98,125,59,105,40,40,102,117,110,99,116,105,111,110,40,116,41,123,101,40,116,41,44,109,40,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,110,40,116,41,44,109,40,41,125,41,44,97,41,44,98,61,110,117,108,108,125,125,105,102,40,98,46,111,112,101,110,40,116,46,109,101,116,104,111,100,46,116,111,85,112,112,101,114,67,97,115,101,40,41,44,97,40,95,44,116,46,112,97,114,97,109,115,44,116,46,112,97,114,97,109,115,83,101,114,105,97,108,105,122,101,114,41,44,33,48,41,44,98,46,116,105,109,101,111,117,116,61,116,46,116,105,109,101,111,117,116,44,34,111,110,108,111,97,100,101,110,100,34,105,110,32,98,63,98,46,111,110,108,111,97,100,101,110,100,61,120,58,98,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,98,38,38,52,61,61,61,98,46,114,101,97,100,121,83,116,97,116,101,38,38,40,48,33,61,61,98,46,115,116,97,116,117,115,124,124,98,46,114,101,115,112,111,110,115,101,85,82,76,38,38,48,61,61,61,98,46,114,101,115,112,111,110,115,101,85,82,76,46,105,110,100,101,120,79,102,40,34,102,105,108,101,58,34,41,41,38,38,115,101,116,84,105,109,101,111,117,116,40,120,41,125,44,98,46,111,110,97,98,111,114,116,61,102,117,110,99,116,105,111,110,40,41,123,98,38,38,40,110,40,108,40,34,82,101,113,117,101,115,116,32,97,98,111,114,116,101,100,34,44,116,44,34,69,67,79,78,78,65,66,79,82,84,69,68,34,44,98,41,41,44,98,61,110,117,108,108,41,125,44,98,46,111,110,101,114,114,111,114,61,102,117,110,99,116,105,111,110,40,41,123,110,40,108,40,34,78,101,116,119,111,114,107,32,69,114,114,111,114,34,44,116,44,110,117,108,108,44,98,41,41,44,98,61,110,117,108,108,125,44,98,46,111,110,116,105,109,101,111,117,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,46,116,105,109,101,111,117,116,63,34,116,105,109,101,111,117,116,32,111,102,32,34,43,116,46,116,105,109,101,111,117,116,43,34,109,115,32,101,120,99,101,101,100,101,100,34,58,34,116,105,109,101,111,117,116,32,101,120,99,101,101,100,101,100,34,44,114,61,116,46,116,114,97,110,115,105,116,105,111,110,97,108,124,124,102,46,116,114,97,110,115,105,116,105,111,110,97,108,59,116,46,116,105,109,101,111,117,116,69,114,114,111,114,77,101,115,115,97,103,101,38,38,40,101,61,116,46,116,105,109,101,111,117,116,69,114,114,111,114,77,101,115,115,97,103,101,41,44,110,40,108,40,101,44,116,44,114,46,99,108,97,114,105,102,121,84,105,109,101,111,117,116,69,114,114,111,114,63,34,69,84,73,77,69,68,79,85,84,34,58,34,69,67,79,78,78,65,66,79,82,84,69,68,34,44,98,41,41,44,98,61,110,117,108,108,125,44,114,46,105,115,83,116,97,110,100,97,114,100,66,114,111,119,115,101,114,69,110,118,40,41,41,123,118,97,114,32,79,61,40,116,46,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,124,124,117,40,95,41,41,38,38,116,46,120,115,114,102,67,111,111,107,105,101,78,97,109,101,63,111,46,114,101,97,100,40,116,46,120,115,114,102,67,111,111,107,105,101,78,97,109,101,41,58,118,111,105,100,32,48,59,79,38,38,40,118,91,116,46,120,115,114,102,72,101,97,100,101,114,78,97,109,101,93,61,79,41,125,34,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,34,105,110,32,98,38,38,114,46,102,111,114,69,97,99,104,40,118,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,112,38,38,34,99,111,110,116,101,110,116,45,116,121,112,101,34,61,61,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,100,101,108,101,116,101,32,118,91,101,93,58,98,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,101,44,116,41,125,41,41,44,114,46,105,115,85,110,100,101,102,105,110,101,100,40,116,46,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,41,124,124,40,98,46,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,61,33,33,116,46,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,41,44,103,38,38,34,106,115,111,110,34,33,61,61,103,38,38,40,98,46,114,101,115,112,111,110,115,101,84,121,112,101,61,116,46,114,101,115,112,111,110,115,101,84,121,112,101,41,44,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,46,111,110,68,111,119,110,108,111,97,100,80,114,111,103,114,101,115,115,38,38,98,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,112,114,111,103,114,101,115,115,34,44,116,46,111,110,68,111,119,110,108,111,97,100,80,114,111,103,114,101,115,115,41,44,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,46,111,110,85,112,108,111,97,100,80,114,111,103,114,101,115,115,38,38,98,46,117,112,108,111,97,100,38,38,98,46,117,112,108,111,97,100,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,112,114,111,103,114,101,115,115,34,44,116,46,111,110,85,112,108,111,97,100,80,114,111,103,114,101,115,115,41,44,40,116,46,99,97,110,99,101,108,84,111,107,101,110,124,124,116,46,115,105,103,110,97,108,41,38,38,40,100,61,102,117,110,99,116,105,111,110,40,116,41,123,98,38,38,40,110,40,33,116,124,124,116,38,38,116,46,116,121,112,101,63,110,101,119,32,104,40,34,99,97,110,99,101,108,101,100,34,41,58,116,41,44,98,46,97,98,111,114,116,40,41,44,98,61,110,117,108,108,41,125,44,116,46,99,97,110,99,101,108,84,111,107,101,110,38,38,116,46,99,97,110,99,101,108,84,111,107,101,110,46,115,117,98,115,99,114,105,98,101,40,100,41,44,116,46,115,105,103,110,97,108,38,38,40,116,46,115,105,103,110,97,108,46,97,98,111,114,116,101,100,63,100,40,41,58,116,46,115,105,103,110,97,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,97,98,111,114,116,34,44,100,41,41,41,44,112,124,124,40,112,61,110,117,108,108,41,44,98,46,115,101,110,100,40,112,41,125,41,41,125,125,44,49,54,48,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,56,54,55,41,44,105,61,110,40,49,56,52,57,41,44,111,61,110,40,51,50,49,41,44,97,61,110,40,55,49,56,53,41,44,115,61,110,40,53,54,53,53,41,59,102,117,110,99,116,105,111,110,32,99,40,116,41,123,118,97,114,32,101,61,110,101,119,32,111,40,116,41,44,110,61,105,40,111,46,112,114,111,116,111,116,121,112,101,46,114,101,113,117,101,115,116,44,101,41,59,114,101,116,117,114,110,32,114,46,101,120,116,101,110,100,40,110,44,111,46,112,114,111,116,111,116,121,112,101,44,101,41,44,114,46,101,120,116,101,110,100,40,110,44,101,41,44,110,46,99,114,101,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,40,97,40,116,44,101,41,41,125,44,110,125,118,97,114,32,117,61,99,40,115,41,59,117,46,65,120,105,111,115,61,111,44,117,46,67,97,110,99,101,108,61,110,40,53,50,54,51,41,44,117,46,67,97,110,99,101,108,84,111,107,101,110,61,110,40,52,57,55,50,41,44,117,46,105,115,67,97,110,99,101,108,61,110,40,54,53,48,50,41,44,117,46,86,69,82,83,73,79,78,61,110,40,55,50,56,56,41,46,118,101,114,115,105,111,110,44,117,46,97,108,108,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,116,41,125,44,117,46,115,112,114,101,97,100,61,110,40,56,55,49,51,41,44,117,46,105,115,65,120,105,111,115,69,114,114,111,114,61,110,40,54,50,54,56,41,44,116,46,101,120,112,111,114,116,115,61,117,44,116,46,101,120,112,111,114,116,115,91,34,100,101,102,97,117,108,116,34,93,61,117,125,44,53,50,54,51,58,102,117,110,99,116,105,111,110,40,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,101,40,116,41,123,116,104,105,115,46,109,101,115,115,97,103,101,61,116,125,101,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,67,97,110,99,101,108,34,43,40,116,104,105,115,46,109,101,115,115,97,103,101,63,34,58,32,34,43,116,104,105,115,46,109,101,115,115,97,103,101,58,34,34,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,95,67,65,78,67,69,76,95,95,61,33,48,44,116,46,101,120,112,111,114,116,115,61,101,125,44,52,57,55,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,50,54,51,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,101,120,101,99,117,116,111,114,32,109,117,115,116,32,98,101,32,97,32,102,117,110,99,116,105,111,110,46,34,41,59,118,97,114,32,101,59,116,104,105,115,46,112,114,111,109,105,115,101,61,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,101,61,116,125,41,41,59,118,97,114,32,110,61,116,104,105,115,59,116,104,105,115,46,112,114,111,109,105,115,101,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,110,46,95,108,105,115,116,101,110,101,114,115,41,123,118,97,114,32,101,44,114,61,110,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,59,102,111,114,40,101,61,48,59,101,60,114,59,101,43,43,41,110,46,95,108,105,115,116,101,110,101,114,115,91,101,93,40,116,41,59,110,46,95,108,105,115,116,101,110,101,114,115,61,110,117,108,108,125,125,41,41,44,116,104,105,115,46,112,114,111,109,105,115,101,46,116,104,101,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,114,61,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,110,46,115,117,98,115,99,114,105,98,101,40,116,41,44,101,61,116,125,41,41,46,116,104,101,110,40,116,41,59,114,101,116,117,114,110,32,114,46,99,97,110,99,101,108,61,102,117,110,99,116,105,111,110,40,41,123,110,46,117,110,115,117,98,115,99,114,105,98,101,40,101,41,125,44,114,125,44,116,40,40,102,117,110,99,116,105,111,110,40,116,41,123,110,46,114,101,97,115,111,110,124,124,40,110,46,114,101,97,115,111,110,61,110,101,119,32,114,40,116,41,44,101,40,110,46,114,101,97,115,111,110,41,41,125,41,41,125,105,46,112,114,111,116,111,116,121,112,101,46,116,104,114,111,119,73,102,82,101,113,117,101,115,116,101,100,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,114,101,97,115,111,110,41,116,104,114,111,119,32,116,104,105,115,46,114,101,97,115,111,110,125,44,105,46,112,114,111,116,111,116,121,112,101,46,115,117,98,115,99,114,105,98,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,114,101,97,115,111,110,63,116,40,116,104,105,115,46,114,101,97,115,111,110,41,58,116,104,105,115,46,95,108,105,115,116,101,110,101,114,115,63,116,104,105,115,46,95,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,116,41,58,116,104,105,115,46,95,108,105,115,116,101,110,101,114,115,61,91,116,93,125,44,105,46,112,114,111,116,111,116,121,112,101,46,117,110,115,117,98,115,99,114,105,98,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,95,108,105,115,116,101,110,101,114,115,41,123,118,97,114,32,101,61,116,104,105,115,46,95,108,105,115,116,101,110,101,114,115,46,105,110,100,101,120,79,102,40,116,41,59,45,49,33,61,61,101,38,38,116,104,105,115,46,95,108,105,115,116,101,110,101,114,115,46,115,112,108,105,99,101,40,101,44,49,41,125,125,44,105,46,115,111,117,114,99,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,61,110,101,119,32,105,40,40,102,117,110,99,116,105,111,110,40,101,41,123,116,61,101,125,41,41,59,114,101,116,117,114,110,123,116,111,107,101,110,58,101,44,99,97,110,99,101,108,58,116,125,125,44,116,46,101,120,112,111,114,116,115,61,105,125,44,54,53,48,50,58,102,117,110,99,116,105,111,110,40,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,40,33,116,124,124,33,116,46,95,95,67,65,78,67,69,76,95,95,41,125,125,44,51,50,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,56,54,55,41,44,105,61,110,40,53,51,50,55,41,44,111,61,110,40,55,56,50,41,44,97,61,110,40,51,53,55,50,41,44,115,61,110,40,55,49,56,53,41,44,99,61,110,40,52,56,55,53,41,44,117,61,99,46,118,97,108,105,100,97,116,111,114,115,59,102,117,110,99,116,105,111,110,32,108,40,116,41,123,116,104,105,115,46,100,101,102,97,117,108,116,115,61,116,44,116,104,105,115,46,105,110,116,101,114,99,101,112,116,111,114,115,61,123,114,101,113,117,101,115,116,58,110,101,119,32,111,44,114,101,115,112,111,110,115,101,58,110,101,119,32,111,125,125,108,46,112,114,111,116,111,116,121,112,101,46,114,101,113,117,101,115,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,63,40,101,61,101,124,124,123,125,44,101,46,117,114,108,61,116,41,58,101,61,116,124,124,123,125,44,33,101,46,117,114,108,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,80,114,111,118,105,100,101,100,32,99,111,110,102,105,103,32,117,114,108,32,105,115,32,110,111,116,32,118,97,108,105,100,34,41,59,101,61,115,40,116,104,105,115,46,100,101,102,97,117,108,116,115,44,101,41,44,101,46,109,101,116,104,111,100,63,101,46,109,101,116,104,111,100,61,101,46,109,101,116,104,111,100,46,116,111,76,111,119,101,114,67,97,115,101,40,41,58,116,104,105,115,46,100,101,102,97,117,108,116,115,46,109,101,116,104,111,100,63,101,46,109,101,116,104,111,100,61,116,104,105,115,46,100,101,102,97,117,108,116,115,46,109,101,116,104,111,100,46,116,111,76,111,119,101,114,67,97,115,101,40,41,58,101,46,109,101,116,104,111,100,61,34,103,101,116,34,59,118,97,114,32,110,61,101,46,116,114,97,110,115,105,116,105,111,110,97,108,59,118,111,105,100,32,48,33,61,61,110,38,38,99,46,97,115,115,101,114,116,79,112,116,105,111,110,115,40,110,44,123,115,105,108,101,110,116,74,83,79,78,80,97,114,115,105,110,103,58,117,46,116,114,97,110,115,105,116,105,111,110,97,108,40,117,46,98,111,111,108,101,97,110,41,44,102,111,114,99,101,100,74,83,79,78,80,97,114,115,105,110,103,58,117,46,116,114,97,110,115,105,116,105,111,110,97,108,40,117,46,98,111,111,108,101,97,110,41,44,99,108,97,114,105,102,121,84,105,109,101,111,117,116,69,114,114,111,114,58,117,46,116,114,97,110,115,105,116,105,111,110,97,108,40,117,46,98,111,111,108,101,97,110,41,125,44,33,49,41,59,118,97,114,32,114,61,91,93,44,105,61,33,48,59,116,104,105,115,46,105,110,116,101,114,99,101,112,116,111,114,115,46,114,101,113,117,101,115,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,46,114,117,110,87,104,101,110,38,38,33,49,61,61,61,116,46,114,117,110,87,104,101,110,40,101,41,124,124,40,105,61,105,38,38,116,46,115,121,110,99,104,114,111,110,111,117,115,44,114,46,117,110,115,104,105,102,116,40,116,46,102,117,108,102,105,108,108,101,100,44,116,46,114,101,106,101,99,116,101,100,41,41,125,41,41,59,118,97,114,32,111,44,108,61,91,93,59,105,102,40,116,104,105,115,46,105,110,116,101,114,99,101,112,116,111,114,115,46,114,101,115,112,111,110,115,101,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,108,46,112,117,115,104,40,116,46,102,117,108,102,105,108,108,101,100,44,116,46,114,101,106,101,99,116,101,100,41,125,41,41,44,33,105,41,123,118,97,114,32,102,61,91,97,44,118,111,105,100,32,48,93,59,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,117,110,115,104,105,102,116,46,97,112,112,108,121,40,102,44,114,41,44,102,61,102,46,99,111,110,99,97,116,40,108,41,44,111,61,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,101,41,59,119,104,105,108,101,40,102,46,108,101,110,103,116,104,41,111,61,111,46,116,104,101,110,40,102,46,115,104,105,102,116,40,41,44,102,46,115,104,105,102,116,40,41,41,59,114,101,116,117,114,110,32,111,125,118,97,114,32,104,61,101,59,119,104,105,108,101,40,114,46,108,101,110,103,116,104,41,123,118,97,114,32,100,61,114,46,115,104,105,102,116,40,41,44,112,61,114,46,115,104,105,102,116,40,41,59,116,114,121,123,104,61,100,40,104,41,125,99,97,116,99,104,40,101,114,114,111,114,41,123,112,40,101,114,114,111,114,41,59,98,114,101,97,107,125,125,116,114,121,123,111,61,97,40,104,41,125,99,97,116,99,104,40,101,114,114,111,114,41,123,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,101,114,114,111,114,41,125,119,104,105,108,101,40,108,46,108,101,110,103,116,104,41,111,61,111,46,116,104,101,110,40,108,46,115,104,105,102,116,40,41,44,108,46,115,104,105,102,116,40,41,41,59,114,101,116,117,114,110,32,111,125,44,108,46,112,114,111,116,111,116,121,112,101,46,103,101,116,85,114,105,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,46,117,114,108,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,80,114,111,118,105,100,101,100,32,99,111,110,102,105,103,32,117,114,108,32,105,115,32,110,111,116,32,118,97,108,105,100,34,41,59,114,101,116,117,114,110,32,116,61,115,40,116,104,105,115,46,100,101,102,97,117,108,116,115,44,116,41,44,105,40,116,46,117,114,108,44,116,46,112,97,114,97,109,115,44,116,46,112,97,114,97,109,115,83,101,114,105,97,108,105,122,101,114,41,46,114,101,112,108,97,99,101,40,47,94,92,63,47,44,34,34,41,125,44,114,46,102,111,114,69,97,99,104,40,91,34,100,101,108,101,116,101,34,44,34,103,101,116,34,44,34,104,101,97,100,34,44,34,111,112,116,105,111,110,115,34,93,44,40,102,117,110,99,116,105,111,110,40,116,41,123,108,46,112,114,111,116,111,116,121,112,101,91,116,93,61,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,113,117,101,115,116,40,115,40,110,124,124,123,125,44,123,109,101,116,104,111,100,58,116,44,117,114,108,58,101,44,100,97,116,97,58,40,110,124,124,123,125,41,46,100,97,116,97,125,41,41,125,125,41,41,44,114,46,102,111,114,69,97,99,104,40,91,34,112,111,115,116,34,44,34,112,117,116,34,44,34,112,97,116,99,104,34,93,44,40,102,117,110,99,116,105,111,110,40,116,41,123,108,46,112,114,111,116,111,116,121,112,101,91,116,93,61,102,117,110,99,116,105,111,110,40,101,44,110,44,114,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,113,117,101,115,116,40,115,40,114,124,124,123,125,44,123,109,101,116,104,111,100,58,116,44,117,114,108,58,101,44,100,97,116,97,58,110,125,41,41,125,125,41,41,44,116,46,101,120,112,111,114,116,115,61,108,125,44,55,56,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,56,54,55,41,59,102,117,110,99,116,105,111,110,32,105,40,41,123,116,104,105,115,46,104,97,110,100,108,101,114,115,61,91,93,125,105,46,112,114,111,116,111,116,121,112,101,46,117,115,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,110,100,108,101,114,115,46,112,117,115,104,40,123,102,117,108,102,105,108,108,101,100,58,116,44,114,101,106,101,99,116,101,100,58,101,44,115,121,110,99,104,114,111,110,111,117,115,58,33,33,110,38,38,110,46,115,121,110,99,104,114,111,110,111,117,115,44,114,117,110,87,104,101,110,58,110,63,110,46,114,117,110,87,104,101,110,58,110,117,108,108,125,41,44,116,104,105,115,46,104,97,110,100,108,101,114,115,46,108,101,110,103,116,104,45,49,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,106,101,99,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,104,97,110,100,108,101,114,115,91,116,93,38,38,40,116,104,105,115,46,104,97,110,100,108,101,114,115,91,116,93,61,110,117,108,108,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,46,102,111,114,69,97,99,104,40,116,104,105,115,46,104,97,110,100,108,101,114,115,44,40,102,117,110,99,116,105,111,110,40,101,41,123,110,117,108,108,33,61,61,101,38,38,116,40,101,41,125,41,41,125,44,116,46,101,120,112,111,114,116,115,61,105,125,44,52,48,57,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,49,55,57,51,41,44,105,61,110,40,55,51,48,51,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,33,114,40,101,41,63,105,40,116,44,101,41,58,101,125,125,44,53,48,54,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,56,49,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,105,44,111,41,123,118,97,114,32,97,61,110,101,119,32,69,114,114,111,114,40,116,41,59,114,101,116,117,114,110,32,114,40,97,44,101,44,110,44,105,44,111,41,125,125,44,51,53,55,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,56,54,55,41,44,105,61,110,40,56,53,50,55,41,44,111,61,110,40,54,53,48,50,41,44,97,61,110,40,53,54,53,53,41,44,115,61,110,40,53,50,54,51,41,59,102,117,110,99,116,105,111,110,32,99,40,116,41,123,105,102,40,116,46,99,97,110,99,101,108,84,111,107,101,110,38,38,116,46,99,97,110,99,101,108,84,111,107,101,110,46,116,104,114,111,119,73,102,82,101,113,117,101,115,116,101,100,40,41,44,116,46,115,105,103,110,97,108,38,38,116,46,115,105,103,110,97,108,46,97,98,111,114,116,101,100,41,116,104,114,111,119,32,110,101,119,32,115,40,34,99,97,110,99,101,108,101,100,34,41,125,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,99,40,116,41,44,116,46,104,101,97,100,101,114,115,61,116,46,104,101,97,100,101,114,115,124,124,123,125,44,116,46,100,97,116,97,61,105,46,99,97,108,108,40,116,44,116,46,100,97,116,97,44,116,46,104,101,97,100,101,114,115,44,116,46,116,114,97,110,115,102,111,114,109,82,101,113,117,101,115,116,41,44,116,46,104,101,97,100,101,114,115,61,114,46,109,101,114,103,101,40,116,46,104,101,97,100,101,114,115,46,99,111,109,109,111,110,124,124,123,125,44,116,46,104,101,97,100,101,114,115,91,116,46,109,101,116,104,111,100,93,124,124,123,125,44,116,46,104,101,97,100,101,114,115,41,44,114,46,102,111,114,69,97,99,104,40,91,34,100,101,108,101,116,101,34,44,34,103,101,116,34,44,34,104,101,97,100,34,44,34,112,111,115,116,34,44,34,112,117,116,34,44,34,112,97,116,99,104,34,44,34,99,111,109,109,111,110,34,93,44,40,102,117,110,99,116,105,111,110,40,101,41,123,100,101,108,101,116,101,32,116,46,104,101,97,100,101,114,115,91,101,93,125,41,41,59,118,97,114,32,101,61,116,46,97,100,97,112,116,101,114,124,124,97,46,97,100,97,112,116,101,114,59,114,101,116,117,114,110,32,101,40,116,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,40,116,41,44,101,46,100,97,116,97,61,105,46,99,97,108,108,40,116,44,101,46,100,97,116,97,44,101,46,104,101,97,100,101,114,115,44,116,46,116,114,97,110,115,102,111,114,109,82,101,115,112,111,110,115,101,41,44,101,125,41,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,111,40,101,41,124,124,40,99,40,116,41,44,101,38,38,101,46,114,101,115,112,111,110,115,101,38,38,40,101,46,114,101,115,112,111,110,115,101,46,100,97,116,97,61,105,46,99,97,108,108,40,116,44,101,46,114,101,115,112,111,110,115,101,46,100,97,116,97,44,101,46,114,101,115,112,111,110,115,101,46,104,101,97,100,101,114,115,44,116,46,116,114,97,110,115,102,111,114,109,82,101,115,112,111,110,115,101,41,41,41,44,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,101,41,125,41,41,125,125,44,52,56,49,58,102,117,110,99,116,105,111,110,40,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,41,123,114,101,116,117,114,110,32,116,46,99,111,110,102,105,103,61,101,44,110,38,38,40,116,46,99,111,100,101,61,110,41,44,116,46,114,101,113,117,101,115,116,61,114,44,116,46,114,101,115,112,111,110,115,101,61,105,44,116,46,105,115,65,120,105,111,115,69,114,114,111,114,61,33,48,44,116,46,116,111,74,83,79,78,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,109,101,115,115,97,103,101,58,116,104,105,115,46,109,101,115,115,97,103,101,44,110,97,109,101,58,116,104,105,115,46,110,97,109,101,44,100,101,115,99,114,105,112,116,105,111,110,58,116,104,105,115,46,100,101,115,99,114,105,112,116,105,111,110,44,110,117,109,98,101,114,58,116,104,105,115,46,110,117,109,98,101,114,44,102,105,108,101,78,97,109,101,58,116,104,105,115,46,102,105,108,101,78,97,109,101,44,108,105,110,101,78,117,109,98,101,114,58,116,104,105,115,46,108,105,110,101,78,117,109,98,101,114,44,99,111,108,117,109,110,78,117,109,98,101,114,58,116,104,105,115,46,99,111,108,117,109,110,78,117,109,98,101,114,44,115,116,97,99,107,58,116,104,105,115,46,115,116,97,99,107,44,99,111,110,102,105,103,58,116,104,105,115,46,99,111,110,102,105,103,44,99,111,100,101,58,116,104,105,115,46,99,111,100,101,44,115,116,97,116,117,115,58,116,104,105,115,46,114,101,115,112,111,110,115,101,38,38,116,104,105,115,46,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,63,116,104,105,115,46,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,58,110,117,108,108,125,125,44,116,125,125,44,55,49,56,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,56,54,55,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,61,101,124,124,123,125,59,118,97,114,32,110,61,123,125,59,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,114,101,116,117,114,110,32,114,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,116,41,38,38,114,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,101,41,63,114,46,109,101,114,103,101,40,116,44,101,41,58,114,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,101,41,63,114,46,109,101,114,103,101,40,123,125,44,101,41,58,114,46,105,115,65,114,114,97,121,40,101,41,63,101,46,115,108,105,99,101,40,41,58,101,125,102,117,110,99,116,105,111,110,32,111,40,110,41,123,114,101,116,117,114,110,32,114,46,105,115,85,110,100,101,102,105,110,101,100,40,101,91,110,93,41,63,114,46,105,115,85,110,100,101,102,105,110,101,100,40,116,91,110,93,41,63,118,111,105,100,32,48,58,105,40,118,111,105,100,32,48,44,116,91,110,93,41,58,105,40,116,91,110,93,44,101,91,110,93,41,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,105,102,40,33,114,46,105,115,85,110,100,101,102,105,110,101,100,40,101,91,116,93,41,41,114,101,116,117,114,110,32,105,40,118,111,105,100,32,48,44,101,91,116,93,41,125,102,117,110,99,116,105,111,110,32,115,40,110,41,123,114,101,116,117,114,110,32,114,46,105,115,85,110,100,101,102,105,110,101,100,40,101,91,110,93,41,63,114,46,105,115,85,110,100,101,102,105,110,101,100,40,116,91,110,93,41,63,118,111,105,100,32,48,58,105,40,118,111,105,100,32,48,44,116,91,110,93,41,58,105,40,118,111,105,100,32,48,44,101,91,110,93,41,125,102,117,110,99,116,105,111,110,32,99,40,110,41,123,114,101,116,117,114,110,32,110,32,105,110,32,101,63,105,40,116,91,110,93,44,101,91,110,93,41,58,110,32,105,110,32,116,63,105,40,118,111,105,100,32,48,44,116,91,110,93,41,58,118,111,105,100,32,48,125,118,97,114,32,117,61,123,117,114,108,58,97,44,109,101,116,104,111,100,58,97,44,100,97,116,97,58,97,44,98,97,115,101,85,82,76,58,115,44,116,114,97,110,115,102,111,114,109,82,101,113,117,101,115,116,58,115,44,116,114,97,110,115,102,111,114,109,82,101,115,112,111,110,115,101,58,115,44,112,97,114,97,109,115,83,101,114,105,97,108,105,122,101,114,58,115,44,116,105,109,101,111,117,116,58,115,44,116,105,109,101,111,117,116,77,101,115,115,97,103,101,58,115,44,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,58,115,44,97,100,97,112,116,101,114,58,115,44,114,101,115,112,111,110,115,101,84,121,112,101,58,115,44,120,115,114,102,67,111,111,107,105,101,78,97,109,101,58,115,44,120,115,114,102,72,101,97,100,101,114,78,97,109,101,58,115,44,111,110,85,112,108,111,97,100,80,114,111,103,114,101,115,115,58,115,44,111,110,68,111,119,110,108,111,97,100,80,114,111,103,114,101,115,115,58,115,44,100,101,99,111,109,112,114,101,115,115,58,115,44,109,97,120,67,111,110,116,101,110,116,76,101,110,103,116,104,58,115,44,109,97,120,66,111,100,121,76,101,110,103,116,104,58,115,44,116,114,97,110,115,112,111,114,116,58,115,44,104,116,116,112,65,103,101,110,116,58,115,44,104,116,116,112,115,65,103,101,110,116,58,115,44,99,97,110,99,101,108,84,111,107,101,110,58,115,44,115,111,99,107,101,116,80,97,116,104,58,115,44,114,101,115,112,111,110,115,101,69,110,99,111,100,105,110,103,58,115,44,118,97,108,105,100,97,116,101,83,116,97,116,117,115,58,99,125,59,114,101,116,117,114,110,32,114,46,102,111,114,69,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,116,41,46,99,111,110,99,97,116,40,79,98,106,101,99,116,46,107,101,121,115,40,101,41,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,117,91,116,93,124,124,111,44,105,61,101,40,116,41,59,114,46,105,115,85,110,100,101,102,105,110,101,100,40,105,41,38,38,101,33,61,61,99,124,124,40,110,91,116,93,61,105,41,125,41,41,44,110,125,125,44,54,48,50,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,53,48,54,49,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,105,61,110,46,99,111,110,102,105,103,46,118,97,108,105,100,97,116,101,83,116,97,116,117,115,59,110,46,115,116,97,116,117,115,38,38,105,38,38,33,105,40,110,46,115,116,97,116,117,115,41,63,101,40,114,40,34,82,101,113,117,101,115,116,32,102,97,105,108,101,100,32,119,105,116,104,32,115,116,97,116,117,115,32,99,111,100,101,32,34,43,110,46,115,116,97,116,117,115,44,110,46,99,111,110,102,105,103,44,110,117,108,108,44,110,46,114,101,113,117,101,115,116,44,110,41,41,58,116,40,110,41,125,125,44,56,53,50,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,56,54,55,41,44,105,61,110,40,53,54,53,53,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,111,61,116,104,105,115,124,124,105,59,114,101,116,117,114,110,32,114,46,102,111,114,69,97,99,104,40,110,44,40,102,117,110,99,116,105,111,110,40,110,41,123,116,61,110,46,99,97,108,108,40,111,44,116,44,101,41,125,41,41,44,116,125,125,44,53,54,53,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,56,54,55,41,44,105,61,110,40,54,48,49,54,41,44,111,61,110,40,52,56,49,41,44,97,61,123,34,67,111,110,116,101,110,116,45,84,121,112,101,34,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,34,125,59,102,117,110,99,116,105,111,110,32,115,40,116,44,101,41,123,33,114,46,105,115,85,110,100,101,102,105,110,101,100,40,116,41,38,38,114,46,105,115,85,110,100,101,102,105,110,101,100,40,116,91,34,67,111,110,116,101,110,116,45,84,121,112,101,34,93,41,38,38,40,116,91,34,67,111,110,116,101,110,116,45,84,121,112,101,34,93,61,101,41,125,102,117,110,99,116,105,111,110,32,99,40,41,123,118,97,114,32,116,59,114,101,116,117,114,110,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,88,77,76,72,116,116,112,82,101,113,117,101,115,116,124,124,34,117,110,100,101,102,105,110,101,100,34,33,61,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,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,112,114,111,99,101,115,115,41,41,38,38,40,116,61,110,40,53,52,52,56,41,41,44,116,125,102,117,110,99,116,105,111,110,32,117,40,116,44,101,44,110,41,123,105,102,40,114,46,105,115,83,116,114,105,110,103,40,116,41,41,116,114,121,123,114,101,116,117,114,110,40,101,124,124,74,83,79,78,46,112,97,114,115,101,41,40,116,41,44,114,46,116,114,105,109,40,116,41,125,99,97,116,99,104,40,105,41,123,105,102,40,34,83,121,110,116,97,120,69,114,114,111,114,34,33,61,61,105,46,110,97,109,101,41,116,104,114,111,119,32,105,125,114,101,116,117,114,110,40,110,124,124,74,83,79,78,46,115,116,114,105,110,103,105,102,121,41,40,116,41,125,118,97,114,32,108,61,123,116,114,97,110,115,105,116,105,111,110,97,108,58,123,115,105,108,101,110,116,74,83,79,78,80,97,114,115,105,110,103,58,33,48,44,102,111,114,99,101,100,74,83,79,78,80,97,114,115,105,110,103,58,33,48,44,99,108,97,114,105,102,121,84,105,109,101,111,117,116,69,114,114,111,114,58,33,49,125,44,97,100,97,112,116,101,114,58,99,40,41,44,116,114,97,110,115,102,111,114,109,82,101,113,117,101,115,116,58,91,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,105,40,101,44,34,65,99,99,101,112,116,34,41,44,105,40,101,44,34,67,111,110,116,101,110,116,45,84,121,112,101,34,41,44,114,46,105,115,70,111,114,109,68,97,116,97,40,116,41,124,124,114,46,105,115,65,114,114,97,121,66,117,102,102,101,114,40,116,41,124,124,114,46,105,115,66,117,102,102,101,114,40,116,41,124,124,114,46,105,115,83,116,114,101,97,109,40,116,41,124,124,114,46,105,115,70,105,108,101,40,116,41,124,124,114,46,105,115,66,108,111,98,40,116,41,63,116,58,114,46,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,40,116,41,63,116,46,98,117,102,102,101,114,58,114,46,105,115,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,40,116,41,63,40,115,40,101,44,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,99,104,97,114,115,101,116,61,117,116,102,45,56,34,41,44,116,46,116,111,83,116,114,105,110,103,40,41,41,58,114,46,105,115,79,98,106,101,99,116,40,116,41,124,124,101,38,38,34,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,34,61,61,61,101,91,34,67,111,110,116,101,110,116,45,84,121,112,101,34,93,63,40,115,40,101,44,34,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,34,41,44,117,40,116,41,41,58,116,125,93,44,116,114,97,110,115,102,111,114,109,82,101,115,112,111,110,115,101,58,91,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,97,108,124,124,108,46,116,114,97,110,115,105,116,105,111,110,97,108,44,110,61,101,38,38,101,46,115,105,108,101,110,116,74,83,79,78,80,97,114,115,105,110,103,44,105,61,101,38,38,101,46,102,111,114,99,101,100,74,83,79,78,80,97,114,115,105,110,103,44,97,61,33,110,38,38,34,106,115,111,110,34,61,61,61,116,104,105,115,46,114,101,115,112,111,110,115,101,84,121,112,101,59,105,102,40,97,124,124,105,38,38,114,46,105,115,83,116,114,105,110,103,40,116,41,38,38,116,46,108,101,110,103,116,104,41,116,114,121,123,114,101,116,117,114,110,32,74,83,79,78,46,112,97,114,115,101,40,116,41,125,99,97,116,99,104,40,115,41,123,105,102,40,97,41,123,105,102,40,34,83,121,110,116,97,120,69,114,114,111,114,34,61,61,61,115,46,110,97,109,101,41,116,104,114,111,119,32,111,40,115,44,116,104,105,115,44,34,69,95,74,83,79,78,95,80,65,82,83,69,34,41,59,116,104,114,111,119,32,115,125,125,114,101,116,117,114,110,32,116,125,93,44,116,105,109,101,111,117,116,58,48,44,120,115,114,102,67,111,111,107,105,101,78,97,109,101,58,34,88,83,82,70,45,84,79,75,69,78,34,44,120,115,114,102,72,101,97,100,101,114,78,97,109,101,58,34,88,45,88,83,82,70,45,84,79,75,69,78,34,44,109,97,120,67,111,110,116,101,110,116,76,101,110,103,116,104,58,45,49,44,109,97,120,66,111,100,121,76,101,110,103,116,104,58,45,49,44,118,97,108,105,100,97,116,101,83,116,97,116,117,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,62,61,50,48,48,38,38,116,60,51,48,48,125,44,104,101,97,100,101,114,115,58,123,99,111,109,109,111,110,58,123,65,99,99,101,112,116,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,112,108,97,105,110,44,32,42,47,42,34,125,125,125,59,114,46,102,111,114,69,97,99,104,40,91,34,100,101,108,101,116,101,34,44,34,103,101,116,34,44,34,104,101,97,100,34,93,44,40,102,117,110,99,116,105,111,110,40,116,41,123,108,46,104,101,97,100,101,114,115,91,116,93,61,123,125,125,41,41,44,114,46,102,111,114,69,97,99,104,40,91,34,112,111,115,116,34,44,34,112,117,116,34,44,34,112,97,116,99,104,34,93,44,40,102,117,110,99,116,105,111,110,40,116,41,123,108,46,104,101,97,100,101,114,115,91,116,93,61,114,46,109,101,114,103,101,40,97,41,125,41,41,44,116,46,101,120,112,111,114,116,115,61,108,125,44,55,50,56,56,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,123,118,101,114,115,105,111,110,58,34,48,46,50,53,46,48,34,125,125,44,49,56,52,57,58,102,117,110,99,116,105,111,110,40,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,110,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,114,61,48,59,114,60,110,46,108,101,110,103,116,104,59,114,43,43,41,110,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,101,44,110,41,125,125,125,44,53,51,50,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,56,54,55,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,116,41,46,114,101,112,108,97,99,101,40,47,37,51,65,47,103,105,44,34,58,34,41,46,114,101,112,108,97,99,101,40,47,37,50,52,47,103,44,34,36,34,41,46,114,101,112,108,97,99,101,40,47,37,50,67,47,103,105,44,34,44,34,41,46,114,101,112,108,97,99,101,40,47,37,50,48,47,103,44,34,43,34,41,46,114,101,112,108,97,99,101,40,47,37,53,66,47,103,105,44,34,91,34,41,46,114,101,112,108,97,99,101,40,47,37,53,68,47,103,105,44,34,93,34,41,125,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,33,101,41,114,101,116,117,114,110,32,116,59,118,97,114,32,111,59,105,102,40,110,41,111,61,110,40,101,41,59,101,108,115,101,32,105,102,40,114,46,105,115,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,40,101,41,41,111,61,101,46,116,111,83,116,114,105,110,103,40,41,59,101,108,115,101,123,118,97,114,32,97,61,91,93,59,114,46,102,111,114,69,97,99,104,40,101,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,110,117,108,108,33,61,61,116,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,116,38,38,40,114,46,105,115,65,114,114,97,121,40,116,41,63,101,43,61,34,91,93,34,58,116,61,91,116,93,44,114,46,102,111,114,69,97,99,104,40,116,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,46,105,115,68,97,116,101,40,116,41,63,116,61,116,46,116,111,73,83,79,83,116,114,105,110,103,40,41,58,114,46,105,115,79,98,106,101,99,116,40,116,41,38,38,40,116,61,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,41,41,44,97,46,112,117,115,104,40,105,40,101,41,43,34,61,34,43,105,40,116,41,41,125,41,41,41,125,41,41,44,111,61,97,46,106,111,105,110,40,34,38,34,41,125,105,102,40,111,41,123,118,97,114,32,115,61,116,46,105,110,100,101,120,79,102,40,34,35,34,41,59,45,49,33,61,61,115,38,38,40,116,61,116,46,115,108,105,99,101,40,48,44,115,41,41,44,116,43,61,40,45,49,61,61,61,116,46,105,110,100,101,120,79,102,40,34,63,34,41,63,34,63,34,58,34,38,34,41,43,111,125,114,101,116,117,114,110,32,116,125,125,44,55,51,48,51,58,102,117,110,99,116,105,111,110,40,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,63,116,46,114,101,112,108,97,99,101,40,47,92,47,43,36,47,44,34,34,41,43,34,47,34,43,101,46,114,101,112,108,97,99,101,40,47,94,92,47,43,47,44,34,34,41,58,116,125,125,44,52,51,55,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,56,54,55,41,59,116,46,101,120,112,111,114,116,115,61,114,46,105,115,83,116,97,110,100,97,114,100,66,114,111,119,115,101,114,69,110,118,40,41,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,119,114,105,116,101,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,105,44,111,44,97,41,123,118,97,114,32,115,61,91,93,59,115,46,112,117,115,104,40,116,43,34,61,34,43,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,101,41,41,44,114,46,105,115,78,117,109,98,101,114,40,110,41,38,38,115,46,112,117,115,104,40,34,101,120,112,105,114,101,115,61,34,43,110,101,119,32,68,97,116,101,40,110,41,46,116,111,71,77,84,83,116,114,105,110,103,40,41,41,44,114,46,105,115,83,116,114,105,110,103,40,105,41,38,38,115,46,112,117,115,104,40,34,112,97,116,104,61,34,43,105,41,44,114,46,105,115,83,116,114,105,110,103,40,111,41,38,38,115,46,112,117,115,104,40,34,100,111,109,97,105,110,61,34,43,111,41,44,33,48,61,61,61,97,38,38,115,46,112,117,115,104,40,34,115,101,99,117,114,101,34,41,44,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,61,115,46,106,111,105,110,40,34,59,32,34,41,125,44,114,101,97,100,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,46,109,97,116,99,104,40,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,59,92,92,115,42,41,40,34,43,116,43,34,41,61,40,91,94,59,93,42,41,34,41,41,59,114,101,116,117,114,110,32,101,63,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,101,91,51,93,41,58,110,117,108,108,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,119,114,105,116,101,40,116,44,34,34,44,68,97,116,101,46,110,111,119,40,41,45,56,54,52,101,53,41,125,125,125,40,41,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,119,114,105,116,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,114,101,97,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,117,108,108,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,125,125,125,40,41,125,44,49,55,57,51,58,102,117,110,99,116,105,111,110,40,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,47,94,40,91,97,45,122,93,91,97,45,122,92,100,43,92,45,46,93,42,58,41,63,92,47,92,47,47,105,46,116,101,115,116,40,116,41,125,125,44,54,50,54,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,56,54,55,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,105,115,79,98,106,101,99,116,40,116,41,38,38,33,48,61,61,61,116,46,105,115,65,120,105,111,115,69,114,114,111,114,125,125,44,55,57,56,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,56,54,55,41,59,116,46,101,120,112,111,114,116,115,61,114,46,105,115,83,116,97,110,100,97,114,100,66,114,111,119,115,101,114,69,110,118,40,41,63,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,61,47,40,109,115,105,101,124,116,114,105,100,101,110,116,41,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,44,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,97,34,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,118,97,114,32,114,61,116,59,114,101,116,117,114,110,32,101,38,38,40,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,44,114,41,44,114,61,110,46,104,114,101,102,41,44,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,44,114,41,44,123,104,114,101,102,58,110,46,104,114,101,102,44,112,114,111,116,111,99,111,108,58,110,46,112,114,111,116,111,99,111,108,63,110,46,112,114,111,116,111,99,111,108,46,114,101,112,108,97,99,101,40,47,58,36,47,44,34,34,41,58,34,34,44,104,111,115,116,58,110,46,104,111,115,116,44,115,101,97,114,99,104,58,110,46,115,101,97,114,99,104,63,110,46,115,101,97,114,99,104,46,114,101,112,108,97,99,101,40,47,94,92,63,47,44,34,34,41,58,34,34,44,104,97,115,104,58,110,46,104,97,115,104,63,110,46,104,97,115,104,46,114,101,112,108,97,99,101,40,47,94,35,47,44,34,34,41,58,34,34,44,104,111,115,116,110,97,109,101,58,110,46,104,111,115,116,110,97,109,101,44,112,111,114,116,58,110,46,112,111,114,116,44,112,97,116,104,110,97,109,101,58,34,47,34,61,61,61,110,46,112,97,116,104,110,97,109,101,46,99,104,97,114,65,116,40,48,41,63,110,46,112,97,116,104,110,97,109,101,58,34,47,34,43,110,46,112,97,116,104,110,97,109,101,125,125,114,101,116,117,114,110,32,116,61,105,40,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,114,101,102,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,114,46,105,115,83,116,114,105,110,103,40,101,41,63,105,40,101,41,58,101,59,114,101,116,117,114,110,32,110,46,112,114,111,116,111,99,111,108,61,61,61,116,46,112,114,111,116,111,99,111,108,38,38,110,46,104,111,115,116,61,61,61,116,46,104,111,115,116,125,125,40,41,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,33,48,125,125,40,41,125,44,54,48,49,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,56,54,55,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,46,102,111,114,69,97,99,104,40,116,44,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,33,61,61,101,38,38,114,46,116,111,85,112,112,101,114,67,97,115,101,40,41,61,61,61,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,38,38,40,116,91,101,93,61,110,44,100,101,108,101,116,101,32,116,91,114,93,41,125,41,41,125,125,44,52,49,48,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,56,54,55,41,44,105,61,91,34,97,103,101,34,44,34,97,117,116,104,111,114,105,122,97,116,105,111,110,34,44,34,99,111,110,116,101,110,116,45,108,101,110,103,116,104,34,44,34,99,111,110,116,101,110,116,45,116,121,112,101,34,44,34,101,116,97,103,34,44,34,101,120,112,105,114,101,115,34,44,34,102,114,111,109,34,44,34,104,111,115,116,34,44,34,105,102,45,109,111,100,105,102,105,101,100,45,115,105,110,99,101,34,44,34,105,102,45,117,110,109,111,100,105,102,105,101,100,45,115,105,110,99,101,34,44,34,108,97,115,116,45,109,111,100,105,102,105,101,100,34,44,34,108,111,99,97,116,105,111,110,34,44,34,109,97,120,45,102,111,114,119,97,114,100,115,34,44,34,112,114,111,120,121,45,97,117,116,104,111,114,105,122,97,116,105,111,110,34,44,34,114,101,102,101,114,101,114,34,44,34,114,101,116,114,121,45,97,102,116,101,114,34,44,34,117,115,101,114,45,97,103,101,110,116,34,93,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,111,44,97,61,123,125,59,114,101,116,117,114,110,32,116,63,40,114,46,102,111,114,69,97,99,104,40,116,46,115,112,108,105,116,40,34,92,110,34,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,111,61,116,46,105,110,100,101,120,79,102,40,34,58,34,41,44,101,61,114,46,116,114,105,109,40,116,46,115,117,98,115,116,114,40,48,44,111,41,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,110,61,114,46,116,114,105,109,40,116,46,115,117,98,115,116,114,40,111,43,49,41,41,44,101,41,123,105,102,40,97,91,101,93,38,38,105,46,105,110,100,101,120,79,102,40,101,41,62,61,48,41,114,101,116,117,114,110,59,97,91,101,93,61,34,115,101,116,45,99,111,111,107,105,101,34,61,61,61,101,63,40,97,91,101,93,63,97,91,101,93,58,91,93,41,46,99,111,110,99,97,116,40,91,110,93,41,58,97,91,101,93,63,97,91,101,93,43,34,44,32,34,43,110,58,110,125,125,41,41,44,97,41,58,97,125,125,44,56,55,49,51,58,102,117,110,99,116,105,111,110,40,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,116,46,101,120,112,111,114,116,115,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,101,116,117,114,110,32,116,46,97,112,112,108,121,40,110,117,108,108,44,101,41,125,125,125,44,52,56,55,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,55,50,56,56,41,46,118,101,114,115,105,111,110,44,105,61,123,125,59,91,34,111,98,106,101,99,116,34,44,34,98,111,111,108,101,97,110,34,44,34,110,117,109,98,101,114,34,44,34,102,117,110,99,116,105,111,110,34,44,34,115,116,114,105,110,103,34,44,34,115,121,109,98,111,108,34,93,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,91,116,93,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,61,116,124,124,34,97,34,43,40,101,60,49,63,34,110,32,34,58,34,32,34,41,43,116,125,125,41,41,59,118,97,114,32,111,61,123,125,59,102,117,110,99,116,105,111,110,32,97,40,116,44,101,44,110,41,123,105,102,40,34,111,98,106,101,99,116,34,33,61,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,111,112,116,105,111,110,115,32,109,117,115,116,32,98,101,32,97,110,32,111,98,106,101,99,116,34,41,59,118,97,114,32,114,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,44,105,61,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,32,62,48,41,123,118,97,114,32,111,61,114,91,105,93,44,97,61,101,91,111,93,59,105,102,40,97,41,123,118,97,114,32,115,61,116,91,111,93,44,99,61,118,111,105,100,32,48,61,61,61,115,124,124,97,40,115,44,111,44,116,41,59,105,102,40,33,48,33,61,61,99,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,111,112,116,105,111,110,32,34,43,111,43,34,32,109,117,115,116,32,98,101,32,34,43,99,41,125,101,108,115,101,32,105,102,40,33,48,33,61,61,110,41,116,104,114,111,119,32,69,114,114,111,114,40,34,85,110,107,110,111,119,110,32,111,112,116,105,111,110,32,34,43,111,41,125,125,105,46,116,114,97,110,115,105,116,105,111,110,97,108,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,114,101,116,117,114,110,34,91,65,120,105,111,115,32,118,34,43,114,43,34,93,32,84,114,97,110,115,105,116,105,111,110,97,108,32,111,112,116,105,111,110,32,39,34,43,116,43,34,39,34,43,101,43,40,110,63,34,46,32,34,43,110,58,34,34,41,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,44,97,41,123,105,102,40,33,49,61,61,61,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,105,40,114,44,34,32,104,97,115,32,98,101,101,110,32,114,101,109,111,118,101,100,34,43,40,101,63,34,32,105,110,32,34,43,101,58,34,34,41,41,41,59,114,101,116,117,114,110,32,101,38,38,33,111,91,114,93,38,38,40,111,91,114,93,61,33,48,44,99,111,110,115,111,108,101,46,119,97,114,110,40,105,40,114,44,34,32,104,97,115,32,98,101,101,110,32,100,101,112,114,101,99,97,116,101,100,32,115,105,110,99,101,32,118,34,43,101,43,34,32,97,110,100,32,119,105,108,108,32,98,101,32,114,101,109,111,118,101,100,32,105,110,32,116,104,101,32,110,101,97,114,32,102,117,116,117,114,101,34,41,41,41,44,33,116,124,124,116,40,110,44,114,44,97,41,125,125,44,116,46,101,120,112,111,114,116,115,61,123,97,115,115,101,114,116,79,112,116,105,111,110,115,58,97,44,118,97,108,105,100,97,116,111,114,115,58,105,125,125,44,52,56,54,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,49,56,52,57,41,44,105,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,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,116,125,102,117,110,99,116,105,111,110,32,115,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,33,97,40,116,41,38,38,110,117,108,108,33,61,61,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,33,97,40,116,46,99,111,110,115,116,114,117,99,116,111,114,41,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,46,99,111,110,115,116,114,117,99,116,111,114,46,105,115,66,117,102,102,101,114,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,46,105,115,66,117,102,102,101,114,40,116,41,125,102,117,110,99,116,105,111,110,32,99,40,116,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,61,61,61,105,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,117,40,116,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,70,111,114,109,68,97,116,97,93,34,61,61,61,105,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,108,40,116,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,101,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,65,114,114,97,121,66,117,102,102,101,114,38,38,65,114,114,97,121,66,117,102,102,101,114,46,105,115,86,105,101,119,63,65,114,114,97,121,66,117,102,102,101,114,46,105,115,86,105,101,119,40,116,41,58,116,38,38,116,46,98,117,102,102,101,114,38,38,99,40,116,46,98,117,102,102,101,114,41,44,101,125,102,117,110,99,116,105,111,110,32,102,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,125,102,117,110,99,116,105,111,110,32,104,40,116,41,123,114,101,116,117,114,110,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,116,125,102,117,110,99,116,105,111,110,32,100,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,125,102,117,110,99,116,105,111,110,32,112,40,116,41,123,105,102,40,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,33,61,61,105,46,99,97,108,108,40,116,41,41,114,101,116,117,114,110,33,49,59,118,97,114,32,101,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,61,101,124,124,101,61,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,125,102,117,110,99,116,105,111,110,32,118,40,116,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,61,61,61,105,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,103,40,116,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,70,105,108,101,93,34,61,61,61,105,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,109,40,116,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,66,108,111,98,93,34,61,61,61,105,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,98,40,116,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,61,105,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,121,40,116,41,123,114,101,116,117,114,110,32,100,40,116,41,38,38,98,40,116,46,112,105,112,101,41,125,102,117,110,99,116,105,111,110,32,119,40,116,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,93,34,61,61,61,105,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,95,40,116,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,63,116,46,116,114,105,109,40,41,58,116,46,114,101,112,108,97,99,101,40,47,94,92,115,43,124,92,115,43,36,47,103,44,34,34,41,125,102,117,110,99,116,105,111,110,32,120,40,41,123,114,101,116,117,114,110,40,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,110,97,118,105,103,97,116,111,114,124,124,34,82,101,97,99,116,78,97,116,105,118,101,34,33,61,61,110,97,118,105,103,97,116,111,114,46,112,114,111,100,117,99,116,38,38,34,78,97,116,105,118,101,83,99,114,105,112,116,34,33,61,61,110,97,118,105,103,97,116,111,114,46,112,114,111,100,117,99,116,38,38,34,78,83,34,33,61,61,110,97,118,105,103,97,116,111,114,46,112,114,111,100,117,99,116,41,38,38,40,34,117,110,100,101,102,105,110,101,100,34,33,61,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,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,41,125,102,117,110,99,116,105,111,110,32,79,40,116,44,101,41,123,105,102,40,110,117,108,108,33,61,61,116,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,116,41,105,102,40,34,111,98,106,101,99,116,34,33,61,61,116,121,112,101,111,102,32,116,38,38,40,116,61,91,116,93,41,44,111,40,116,41,41,102,111,114,40,118,97,114,32,110,61,48,44,114,61,116,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,101,46,99,97,108,108,40,110,117,108,108,44,116,91,110,93,44,110,44,116,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,105,32,105,110,32,116,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,116,44,105,41,38,38,101,46,99,97,108,108,40,110,117,108,108,44,116,91,105,93,44,105,44,116,41,125,102,117,110,99,116,105,111,110,32,83,40,41,123,118,97,114,32,116,61,123,125,59,102,117,110,99,116,105,111,110,32,101,40,101,44,110,41,123,112,40,116,91,110,93,41,38,38,112,40,101,41,63,116,91,110,93,61,83,40,116,91,110,93,44,101,41,58,112,40,101,41,63,116,91,110,93,61,83,40,123,125,44,101,41,58,111,40,101,41,63,116,91,110,93,61,101,46,115,108,105,99,101,40,41,58,116,91,110,93,61,101,125,102,111,114,40,118,97,114,32,110,61,48,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,79,40,97,114,103,117,109,101,110,116,115,91,110,93,44,101,41,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,107,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,79,40,101,44,40,102,117,110,99,116,105,111,110,40,101,44,105,41,123,116,91,105,93,61,110,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,114,40,101,44,110,41,58,101,125,41,41,44,116,125,102,117,110,99,116,105,111,110,32,67,40,116,41,123,114,101,116,117,114,110,32,54,53,50,55,57,61,61,61,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,38,38,40,116,61,116,46,115,108,105,99,101,40,49,41,41,44,116,125,116,46,101,120,112,111,114,116,115,61,123,105,115,65,114,114,97,121,58,111,44,105,115,65,114,114,97,121,66,117,102,102,101,114,58,99,44,105,115,66,117,102,102,101,114,58,115,44,105,115,70,111,114,109,68,97,116,97,58,117,44,105,115,65,114,114,97,121,66,117,102,102,101,114,86,105,101,119,58,108,44,105,115,83,116,114,105,110,103,58,102,44,105,115,78,117,109,98,101,114,58,104,44,105,115,79,98,106,101,99,116,58,100,44,105,115,80,108,97,105,110,79,98,106,101,99,116,58,112,44,105,115,85,110,100,101,102,105,110,101,100,58,97,44,105,115,68,97,116,101,58,118,44,105,115,70,105,108,101,58,103,44,105,115,66,108,111,98,58,109,44,105,115,70,117,110,99,116,105,111,110,58,98,44,105,115,83,116,114,101,97,109,58,121,44,105,115,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,58,119,44,105,115,83,116,97,110,100,97,114,100,66,114,111,119,115,101,114,69,110,118,58,120,44,102,111,114,69,97,99,104,58,79,44,109,101,114,103,101,58,83,44,101,120,116,101,110,100,58,107,44,116,114,105,109,58,95,44,115,116,114,105,112,66,79,77,58,67,125,125,44,50,48,51,50,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,46,100,40,101,44,123,90,80,109,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,65,77,125,125,41,59,118,97,114,32,114,61,110,40,49,52,52,41,44,105,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,44,111,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,44,97,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,110,97,118,105,103,97,116,111,114,44,115,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,80,114,111,109,105,115,101,44,99,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,124,124,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,87,101,98,75,105,116,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,124,124,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,77,111,122,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,44,117,61,105,38,38,111,38,38,97,44,108,61,105,63,119,105,110,100,111,119,58,123,125,44,102,61,111,63,100,111,99,117,109,101,110,116,58,123,125,44,104,61,97,63,110,97,118,105,103,97,116,111,114,58,123,125,44,100,61,40,104,46,117,115,101,114,65,103,101,110,116,124,124,34,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,112,61,100,46,105,110,100,101,120,79,102,40,34,106,115,100,111,109,34,41,62,48,44,118,61,40,47,109,115,105,101,124,116,114,105,100,101,110,116,47,46,116,101,115,116,40,100,41,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,33,49,59,105,102,40,117,41,116,114,121,123,118,97,114,32,101,61,123,103,101,116,32,112,97,115,115,105,118,101,40,41,123,116,61,33,48,125,125,59,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,116,101,115,116,34,44,101,44,101,41,44,108,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,116,101,115,116,34,44,101,44,101,41,125,99,97,116,99,104,40,110,41,123,116,61,33,49,125,114,101,116,117,114,110,32,116,125,40,41,41,44,103,61,117,38,38,40,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,102,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,124,124,104,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,62,48,41,44,109,61,117,38,38,66,111,111,108,101,97,110,40,108,46,80,111,105,110,116,101,114,69,118,101,110,116,124,124,108,46,77,83,80,111,105,110,116,101,114,69,118,101,110,116,41,44,98,61,117,38,38,34,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,34,105,110,32,108,38,38,34,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,69,110,116,114,121,34,105,110,32,108,38,38,34,105,110,116,101,114,115,101,99,116,105,111,110,82,97,116,105,111,34,105,110,32,108,46,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,69,110,116,114,121,46,112,114,111,116,111,116,121,112,101,44,121,61,34,66,118,67,111,110,102,105,103,34,44,119,61,34,36,98,118,67,111,110,102,105,103,34,44,95,61,91,34,120,115,34,44,34,115,109,34,44,34,109,100,34,44,34,108,103,34,44,34,120,108,34,93,44,120,61,47,92,91,40,92,100,43,41,93,47,103,44,79,61,47,94,40,66,86,63,41,47,44,83,61,47,94,92,100,43,36,47,44,107,61,47,94,92,46,46,43,47,44,67,61,47,94,35,47,44,80,61,47,94,35,91,65,45,90,97,45,122,93,43,91,92,119,92,45,58,46,93,42,36,47,44,84,61,47,40,60,40,91,94,62,93,43,41,62,41,47,103,105,44,106,61,47,92,66,40,91,65,45,90,93,41,47,103,44,69,61,47,40,91,97,45,122,93,41,40,91,65,45,90,93,41,47,103,44,68,61,47,94,91,48,45,57,93,42,92,46,63,91,48,45,57,93,43,36,47,44,65,61,47,92,43,47,103,44,76,61,47,91,45,47,92,92,94,36,42,43,63,46,40,41,124,91,92,93,123,125,93,47,103,44,73,61,47,91,92,115,92,117,70,69,70,70,92,120,65,48,93,43,47,103,44,77,61,47,92,115,43,47,44,36,61,47,92,47,92,42,36,47,44,70,61,47,40,92,115,124,94,41,40,92,119,41,47,103,44,82,61,47,94,92,115,43,47,44,78,61,47,95,47,103,44,66,61,47,45,40,92,119,41,47,103,44,122,61,47,94,92,100,43,45,92,100,92,100,63,45,92,100,92,100,63,40,63,58,92,115,124,84,124,36,41,47,44,86,61,47,45,124,92,115,124,84,47,44,72,61,47,94,40,91,48,45,49,93,63,91,48,45,57,93,124,50,91,48,45,51,93,41,58,91,48,45,53,93,63,91,48,45,57,93,40,58,91,48,45,53,93,63,91,48,45,57,93,41,63,36,47,44,85,61,47,94,46,42,40,35,91,94,35,93,43,41,36,47,44,87,61,47,37,50,67,47,103,44,71,61,47,91,33,39,40,41,42,93,47,103,44,113,61,47,94,40,92,63,124,35,124,38,41,47,44,89,61,47,94,92,100,43,40,92,46,92,100,42,41,63,91,47,58,93,92,100,43,40,92,46,92,100,42,41,63,36,47,44,75,61,47,91,47,58,93,47,44,88,61,47,94,99,111,108,45,47,44,90,61,47,94,66,73,99,111,110,47,44,74,61,47,45,117,45,46,43,47,59,102,117,110,99,116,105,111,110,32,81,40,116,41,123,114,101,116,117,114,110,32,81,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,34,115,121,109,98,111,108,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,83,121,109,98,111,108,38,38,116,33,61,61,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,63,34,115,121,109,98,111,108,34,58,116,121,112,101,111,102,32,116,125,44,81,40,116,41,125,102,117,110,99,116,105,111,110,32,116,116,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,102,117,110,99,116,105,111,110,32,101,116,40,116,44,101,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,101,38,38,110,117,108,108,33,61,61,101,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,34,41,59,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,38,38,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,116,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,101,38,38,117,116,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,110,116,40,116,41,123,118,97,114,32,101,61,115,116,40,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,114,61,108,116,40,116,41,59,105,102,40,101,41,123,118,97,114,32,105,61,108,116,40,116,104,105,115,41,46,99,111,110,115,116,114,117,99,116,111,114,59,110,61,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,40,114,44,97,114,103,117,109,101,110,116,115,44,105,41,125,101,108,115,101,32,110,61,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,114,116,40,116,104,105,115,44,110,41,125,125,102,117,110,99,116,105,111,110,32,114,116,40,116,44,101,41,123,114,101,116,117,114,110,33,101,124,124,34,111,98,106,101,99,116,34,33,61,61,81,40,101,41,38,38,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,101,63,105,116,40,116,41,58,101,125,102,117,110,99,116,105,111,110,32,105,116,40,116,41,123,105,102,40,118,111,105,100,32,48,61,61,61,116,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,32,116,125,102,117,110,99,116,105,111,110,32,111,116,40,116,41,123,118,97,114,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,77,97,112,63,110,101,119,32,77,97,112,58,118,111,105,100,32,48,59,114,101,116,117,114,110,32,111,116,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,110,117,108,108,61,61,61,116,124,124,33,99,116,40,116,41,41,114,101,116,117,114,110,32,116,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,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,34,41,59,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,101,46,104,97,115,40,116,41,41,114,101,116,117,114,110,32,101,46,103,101,116,40,116,41,59,101,46,115,101,116,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,110,40,41,123,114,101,116,117,114,110,32,97,116,40,116,44,97,114,103,117,109,101,110,116,115,44,108,116,40,116,104,105,115,41,46,99,111,110,115,116,114,117,99,116,111,114,41,125,114,101,116,117,114,110,32,110,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,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,110,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,117,116,40,110,44,116,41,125,44,111,116,40,116,41,125,102,117,110,99,116,105,111,110,32,97,116,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,97,116,61,115,116,40,41,63,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,91,110,117,108,108,93,59,114,46,112,117,115,104,46,97,112,112,108,121,40,114,44,101,41,59,118,97,114,32,105,61,70,117,110,99,116,105,111,110,46,98,105,110,100,46,97,112,112,108,121,40,116,44,114,41,44,111,61,110,101,119,32,105,59,114,101,116,117,114,110,32,110,38,38,117,116,40,111,44,110,46,112,114,111,116,111,116,121,112,101,41,44,111,125,44,97,116,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,115,116,40,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,82,101,102,108,101,99,116,124,124,33,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,41,114,101,116,117,114,110,33,49,59,105,102,40,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,46,115,104,97,109,41,114,101,116,117,114,110,33,49,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,80,114,111,120,121,41,114,101,116,117,114,110,33,48,59,116,114,121,123,114,101,116,117,114,110,32,68,97,116,101,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,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,40,68,97,116,101,44,91,93,44,40,102,117,110,99,116,105,111,110,40,41,123,125,41,41,41,44,33,48,125,99,97,116,99,104,40,65,101,41,123,114,101,116,117,114,110,33,49,125,125,102,117,110,99,116,105,111,110,32,99,116,40,116,41,123,114,101,116,117,114,110,45,49,33,61,61,70,117,110,99,116,105,111,110,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,116,41,46,105,110,100,101,120,79,102,40,34,91,110,97,116,105,118,101,32,99,111,100,101,93,34,41,125,102,117,110,99,116,105,111,110,32,117,116,40,116,44,101,41,123,114,101,116,117,114,110,32,117,116,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,95,95,112,114,111,116,111,95,95,61,101,44,116,125,44,117,116,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,108,116,40,116,41,123,114,101,116,117,114,110,32,108,116,61,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,103,101,116,80,114,111,116,111,116,121,112,101,79,102,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,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,125,44,108,116,40,116,41,125,118,97,114,32,102,116,61,105,63,108,46,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,101,116,40,110,44,116,41,59,118,97,114,32,101,61,110,116,40,110,41,59,102,117,110,99,116,105,111,110,32,110,40,41,123,114,101,116,117,114,110,32,116,116,40,116,104,105,115,44,110,41,44,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,110,125,40,111,116,40,79,98,106,101,99,116,41,41,44,104,116,61,105,63,108,46,72,84,77,76,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,101,116,40,110,44,116,41,59,118,97,114,32,101,61,110,116,40,110,41,59,102,117,110,99,116,105,111,110,32,110,40,41,123,114,101,116,117,114,110,32,116,116,40,116,104,105,115,44,110,41,44,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,110,125,40,102,116,41,44,100,116,61,105,63,108,46,83,86,71,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,101,116,40,110,44,116,41,59,118,97,114,32,101,61,110,116,40,110,41,59,102,117,110,99,116,105,111,110,32,110,40,41,123,114,101,116,117,114,110,32,116,116,40,116,104,105,115,44,110,41,44,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,110,125,40,102,116,41,44,112,116,61,105,63,108,46,70,105,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,101,116,40,110,44,116,41,59,118,97,114,32,101,61,110,116,40,110,41,59,102,117,110,99,116,105,111,110,32,110,40,41,123,114,101,116,117,114,110,32,116,116,40,116,104,105,115,44,110,41,44,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,110,125,40,111,116,40,79,98,106,101,99,116,41,41,59,102,117,110,99,116,105,111,110,32,118,116,40,116,41,123,114,101,116,117,114,110,32,118,116,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,34,115,121,109,98,111,108,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,83,121,109,98,111,108,38,38,116,33,61,61,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,63,34,115,121,109,98,111,108,34,58,116,121,112,101,111,102,32,116,125,44,118,116,40,116,41,125,118,97,114,32,103,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,116,40,116,41,125,44,109,116,61,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,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,41,46,115,108,105,99,101,40,56,44,45,49,41,125,44,98,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,125,44,121,116,61,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,61,116,125,44,119,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,98,116,40,116,41,124,124,121,116,40,116,41,125,44,95,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,61,103,116,40,116,41,125,44,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,61,103,116,40,116,41,125,44,79,116,61,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,61,103,116,40,116,41,125,44,83,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,110,117,109,98,101,114,34,61,61,61,103,116,40,116,41,125,44,107,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,68,46,116,101,115,116,40,83,116,114,105,110,103,40,116,41,41,125,44,67,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,125,44,80,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,34,111,98,106,101,99,116,34,61,61,61,118,116,40,116,41,125,44,84,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,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,116,41,125,44,106,116,61,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,68,97,116,101,125,44,69,116,61,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,69,118,101,110,116,125,44,68,116,61,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,112,116,125,44,65,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,82,101,103,69,120,112,34,61,61,61,109,116,40,116,41,125,44,76,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,119,116,40,116,41,38,38,95,116,40,116,46,116,104,101,110,41,38,38,95,116,40,116,46,99,97,116,99,104,41,125,59,102,117,110,99,116,105,111,110,32,73,116,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,77,116,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,73,116,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,36,116,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,73,116,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,36,116,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,118,97,114,32,70,116,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,97,115,115,105,103,110,46,97,112,112,108,121,40,79,98,106,101,99,116,44,97,114,103,117,109,101,110,116,115,41,125,44,82,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,44,101,41,125,44,78,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,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,105,101,115,40,116,44,101,41,125,44,66,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,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,110,41,125,44,122,116,61,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,78,97,109,101,115,40,116,41,125,44,86,116,61,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,107,101,121,115,40,116,41,125,44,72,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,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,116,44,101,41,125,44,85,116,61,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,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,41,125,44,87,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,116,40,123,125,44,116,41,125,44,71,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,86,116,40,116,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,45,49,33,61,61,101,46,105,110,100,101,120,79,102,40,116,41,125,41,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,77,116,40,77,116,40,123,125,44,101,41,44,123,125,44,36,116,40,123,125,44,110,44,116,91,110,93,41,41,125,41,44,123,125,41,125,44,113,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,86,116,40,116,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,45,49,61,61,61,101,46,105,110,100,101,120,79,102,40,116,41,125,41,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,77,116,40,77,116,40,123,125,44,101,41,44,123,125,44,36,116,40,123,125,44,110,44,116,91,110,93,41,41,125,41,44,123,125,41,125,44,89,116,61,102,117,110,99,116,105,111,110,32,116,40,101,44,110,41,123,114,101,116,117,114,110,32,80,116,40,101,41,38,38,80,116,40,110,41,38,38,86,116,40,110,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,114,41,123,80,116,40,110,91,114,93,41,63,40,101,91,114,93,38,38,80,116,40,101,91,114,93,41,124,124,40,101,91,114,93,61,110,91,114,93,41,44,116,40,101,91,114,93,44,110,91,114,93,41,41,58,70,116,40,101,44,36,116,40,123,125,44,114,44,110,91,114,93,41,41,125,41,41,44,101,125,44,75,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,86,116,40,116,41,46,115,111,114,116,40,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,77,116,40,77,116,40,123,125,44,101,41,44,123,125,44,36,116,40,123,125,44,110,44,116,91,110,93,41,41,125,41,44,123,125,41,125,44,88,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,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,49,44,119,114,105,116,97,98,108,101,58,33,49,125,125,59,102,117,110,99,116,105,111,110,32,90,116,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,74,116,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,90,116,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,81,116,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,90,116,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,81,116,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,102,117,110,99,116,105,111,110,32,116,101,40,116,41,123,114,101,116,117,114,110,32,105,101,40,116,41,124,124,114,101,40,116,41,124,124,110,101,40,116,41,124,124,101,101,40,41,125,102,117,110,99,116,105,111,110,32,101,101,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,34,41,125,102,117,110,99,116,105,111,110,32,110,101,40,116,44,101,41,123,105,102,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,111,101,40,116,44,101,41,59,118,97,114,32,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,41,46,115,108,105,99,101,40,56,44,45,49,41,59,114,101,116,117,114,110,34,79,98,106,101,99,116,34,61,61,61,110,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,116,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,44,34,77,97,112,34,61,61,61,110,124,124,34,83,101,116,34,61,61,61,110,63,65,114,114,97,121,46,102,114,111,109,40,116,41,58,34,65,114,103,117,109,101,110,116,115,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,63,111,101,40,116,44,101,41,58,118,111,105,100,32,48,125,125,102,117,110,99,116,105,111,110,32,114,101,40,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,116,41,125,102,117,110,99,116,105,111,110,32,105,101,40,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,111,101,40,116,41,125,102,117,110,99,116,105,111,110,32,111,101,40,116,44,101,41,123,40,110,117,108,108,61,61,101,124,124,101,62,116,46,108,101,110,103,116,104,41,38,38,40,101,61,116,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,110,60,101,59,110,43,43,41,114,91,110,93,61,116,91,110,93,59,114,101,116,117,114,110,32,114,125,118,97,114,32,97,101,61,102,117,110,99,116,105,111,110,32,116,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,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,101,59,114,101,116,117,114,110,32,67,116,40,101,41,63,101,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,91,93,46,99,111,110,99,97,116,40,116,101,40,101,41,44,91,116,40,110,44,110,41,93,41,125,41,44,91,93,41,58,84,116,40,101,41,63,86,116,40,101,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,74,116,40,74,116,40,123,125,44,110,41,44,123,125,44,81,116,40,123,125,44,114,44,116,40,101,91,114,93,44,101,91,114,93,41,41,41,125,41,44,123,125,41,58,110,125,44,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,44,99,101,61,102,117,110,99,116,105,111,110,40,116,44,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,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,118,111,105,100,32,48,59,105,102,40,101,61,67,116,40,101,41,63,101,46,106,111,105,110,40,34,46,34,41,58,101,44,33,101,124,124,33,80,116,40,116,41,41,114,101,116,117,114,110,32,110,59,105,102,40,101,32,105,110,32,116,41,114,101,116,117,114,110,32,116,91,101,93,59,101,61,83,116,114,105,110,103,40,101,41,46,114,101,112,108,97,99,101,40,120,44,34,46,36,49,34,41,59,118,97,114,32,114,61,101,46,115,112,108,105,116,40,34,46,34,41,46,102,105,108,116,101,114,40,115,101,41,59,114,101,116,117,114,110,32,48,61,61,61,114,46,108,101,110,103,116,104,63,110,58,114,46,101,118,101,114,121,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,116,40,116,41,38,38,101,32,105,110,32,116,38,38,33,119,116,40,116,61,116,91,101,93,41,125,41,41,63,116,58,121,116,40,116,41,63,110,117,108,108,58,110,125,44,117,101,61,102,117,110,99,116,105,111,110,40,116,44,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,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,110,117,108,108,44,114,61,99,101,40,116,44,101,41,59,114,101,116,117,114,110,32,119,116,40,114,41,63,110,58,114,125,44,108,101,61,102,117,110,99,116,105,111,110,40,116,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,49,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,110,117,108,108,44,110,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,112,114,111,99,101,115,115,38,38,112,114,111,99,101,115,115,63,123,78,79,68,69,95,69,78,86,58,34,112,114,111,100,117,99,116,105,111,110,34,44,66,65,83,69,95,85,82,76,58,34,34,125,124,124,48,58,123,125,59,114,101,116,117,114,110,32,116,63,110,91,116,93,124,124,101,58,110,125,44,102,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,101,40,34,66,79,79,84,83,84,82,65,80,95,86,85,69,95,78,79,95,87,65,82,78,34,41,124,124,34,112,114,111,100,117,99,116,105,111,110,34,61,61,61,108,101,40,34,78,79,68,69,95,69,78,86,34,41,125,44,104,101,61,102,117,110,99,116,105,111,110,40,116,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,49,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,110,117,108,108,59,102,101,40,41,124,124,99,111,110,115,111,108,101,46,119,97,114,110,40,34,91,66,111,111,116,115,116,114,97,112,86,117,101,32,119,97,114,110,93,58,32,34,46,99,111,110,99,97,116,40,101,63,34,34,46,99,111,110,99,97,116,40,101,44,34,32,45,32,34,41,58,34,34,41,46,99,111,110,99,97,116,40,116,41,41,125,44,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,117,38,38,40,104,101,40,34,34,46,99,111,110,99,97,116,40,116,44,34,58,32,67,97,110,32,110,111,116,32,98,101,32,99,97,108,108,101,100,32,100,117,114,105,110,103,32,83,83,82,46,34,41,41,44,33,48,41,125,44,112,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,115,38,38,40,104,101,40,34,34,46,99,111,110,99,97,116,40,116,44,34,58,32,82,101,113,117,105,114,101,115,32,80,114,111,109,105,115,101,32,115,117,112,112,111,114,116,46,34,41,41,44,33,48,41,125,44,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,99,38,38,40,104,101,40,34,34,46,99,111,110,99,97,116,40,116,44,34,58,32,82,101,113,117,105,114,101,115,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,32,115,117,112,112,111,114,116,46,34,41,41,44,33,48,41,125,59,102,117,110,99,116,105,111,110,32,103,101,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,102,117,110,99,116,105,111,110,32,109,101,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,114,61,101,91,110,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,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,114,38,38,40,114,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,114,46,107,101,121,44,114,41,125,125,102,117,110,99,116,105,111,110,32,98,101,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,109,101,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,109,101,40,116,44,110,41,44,116,125,118,97,114,32,121,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,103,101,40,116,104,105,115,44,116,41,44,116,104,105,115,46,36,95,99,111,110,102,105,103,61,123,125,125,114,101,116,117,114,110,32,98,101,40,116,44,91,123,107,101,121,58,34,115,101,116,67,111,110,102,105,103,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,123,125,59,105,102,40,84,116,40,101,41,41,123,118,97,114,32,110,61,122,116,40,101,41,59,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,101,91,110,93,59,34,98,114,101,97,107,112,111,105,110,116,115,34,61,61,61,110,63,33,67,116,40,114,41,124,124,114,46,108,101,110,103,116,104,60,50,124,124,114,46,115,111,109,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,79,116,40,116,41,124,124,48,61,61,61,116,46,108,101,110,103,116,104,125,41,41,63,104,101,40,39,34,98,114,101,97,107,112,111,105,110,116,115,34,32,109,117,115,116,32,98,101,32,97,110,32,97,114,114,97,121,32,111,102,32,97,116,32,108,101,97,115,116,32,50,32,98,114,101,97,107,112,111,105,110,116,32,110,97,109,101,115,39,44,121,41,58,116,46,36,95,99,111,110,102,105,103,91,110,93,61,97,101,40,114,41,58,84,116,40,114,41,38,38,40,116,46,36,95,99,111,110,102,105,103,91,110,93,61,122,116,40,114,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,98,116,40,114,91,101,93,41,124,124,40,116,91,101,93,61,97,101,40,114,91,101,93,41,41,44,116,125,41,44,116,46,36,95,99,111,110,102,105,103,91,110,93,124,124,123,125,41,41,125,41,41,125,125,125,44,123,107,101,121,58,34,114,101,115,101,116,67,111,110,102,105,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,99,111,110,102,105,103,61,123,125,125,125,44,123,107,101,121,58,34,103,101,116,67,111,110,102,105,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,97,101,40,116,104,105,115,46,36,95,99,111,110,102,105,103,41,125,125,44,123,107,101,121,58,34,103,101,116,67,111,110,102,105,103,86,97,108,117,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,101,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,59,114,101,116,117,114,110,32,97,101,40,99,101,40,116,104,105,115,46,36,95,99,111,110,102,105,103,44,116,44,101,41,41,125,125,93,41,44,116,125,40,41,44,119,101,61,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,123,125,44,101,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,114,91,34,100,101,102,97,117,108,116,34,93,59,101,46,112,114,111,116,111,116,121,112,101,91,119,93,61,114,91,34,100,101,102,97,117,108,116,34,93,46,112,114,111,116,111,116,121,112,101,91,119,93,61,101,46,112,114,111,116,111,116,121,112,101,91,119,93,124,124,114,91,34,100,101,102,97,117,108,116,34,93,46,112,114,111,116,111,116,121,112,101,91,119,93,124,124,110,101,119,32,121,101,44,101,46,112,114,111,116,111,116,121,112,101,91,119,93,46,115,101,116,67,111,110,102,105,103,40,116,41,125,59,102,117,110,99,116,105,111,110,32,95,101,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,120,101,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,95,101,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,79,101,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,95,101,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,79,101,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,118,97,114,32,83,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,33,49,44,101,61,91,34,77,117,108,116,105,112,108,101,32,105,110,115,116,97,110,99,101,115,32,111,102,32,86,117,101,32,100,101,116,101,99,116,101,100,33,34,44,34,89,111,117,32,109,97,121,32,110,101,101,100,32,116,111,32,115,101,116,32,117,112,32,97,110,32,97,108,105,97,115,32,102,111,114,32,86,117,101,32,105,110,32,121,111,117,114,32,98,117,110,100,108,101,114,32,99,111,110,102,105,103,46,34,44,34,83,101,101,58,32,104,116,116,112,115,58,47,47,98,111,111,116,115,116,114,97,112,45,118,117,101,46,111,114,103,47,100,111,99,115,35,117,115,105,110,103,45,109,111,100,117,108,101,45,98,117,110,100,108,101,114,115,34,93,46,106,111,105,110,40,34,92,110,34,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,116,124,124,114,91,34,100,101,102,97,117,108,116,34,93,61,61,61,110,124,124,112,124,124,104,101,40,101,41,44,116,61,33,48,125,125,40,41,44,107,101,61,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,123,125,44,101,61,116,46,99,111,109,112,111,110,101,110,116,115,44,110,61,116,46,100,105,114,101,99,116,105,118,101,115,44,114,61,116,46,112,108,117,103,105,110,115,44,105,61,102,117,110,99,116,105,111,110,32,116,40,105,41,123,118,97,114,32,111,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,116,46,105,110,115,116,97,108,108,101,100,124,124,40,116,46,105,110,115,116,97,108,108,101,100,61,33,48,44,83,101,40,105,41,44,119,101,40,111,44,105,41,44,106,101,40,105,44,101,41,44,68,101,40,105,44,110,41,44,80,101,40,105,44,114,41,41,125,59,114,101,116,117,114,110,32,105,46,105,110,115,116,97,108,108,101,100,61,33,49,44,105,125,44,67,101,61,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,123,125,44,101,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,114,101,116,117,114,110,32,120,101,40,120,101,40,123,125,44,101,41,44,123,125,44,123,105,110,115,116,97,108,108,58,107,101,40,116,41,125,41,125,44,80,101,61,102,117,110,99,116,105,111,110,40,116,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,49,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,123,125,59,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,110,38,38,101,91,110,93,38,38,116,46,117,115,101,40,101,91,110,93,41,125,44,84,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,38,38,101,38,38,110,38,38,116,46,99,111,109,112,111,110,101,110,116,40,101,44,110,41,125,44,106,101,61,102,117,110,99,116,105,111,110,40,116,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,49,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,123,125,59,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,84,101,40,116,44,110,44,101,91,110,93,41,125,44,69,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,38,38,101,38,38,110,38,38,116,46,100,105,114,101,99,116,105,118,101,40,101,46,114,101,112,108,97,99,101,40,47,94,86,66,47,44,34,66,34,41,44,110,41,125,44,68,101,61,102,117,110,99,116,105,111,110,40,116,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,49,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,123,125,59,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,69,101,40,116,44,110,44,101,91,110,93,41,125,44,65,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,65,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,116,41,123,102,111,114,40,118,97,114,32,101,44,110,61,49,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,102,111,114,40,118,97,114,32,105,32,105,110,32,101,61,97,114,103,117,109,101,110,116,115,91,110,93,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,101,44,105,41,38,38,40,116,91,105,93,61,101,91,105,93,41,59,114,101,116,117,114,110,32,116,125,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,44,76,101,61,123,107,101,98,97,98,58,47,45,40,92,119,41,47,103,44,115,116,121,108,101,80,114,111,112,58,47,58,40,46,42,41,47,44,115,116,121,108,101,76,105,115,116,58,47,59,40,63,33,91,94,40,93,42,92,41,41,47,103,125,59,102,117,110,99,116,105,111,110,32,73,101,40,116,44,101,41,123,114,101,116,117,114,110,32,101,63,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,58,34,34,125,102,117,110,99,116,105,111,110,32,77,101,40,116,41,123,102,111,114,40,118,97,114,32,101,44,110,61,123,125,44,114,61,48,44,105,61,116,46,115,112,108,105,116,40,76,101,46,115,116,121,108,101,76,105,115,116,41,59,114,60,105,46,108,101,110,103,116,104,59,114,43,43,41,123,118,97,114,32,111,61,105,91,114,93,46,115,112,108,105,116,40,76,101,46,115,116,121,108,101,80,114,111,112,41,44,97,61,111,91,48,93,44,115,61,111,91,49,93,59,40,97,61,97,46,116,114,105,109,40,41,41,38,38,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,115,38,38,40,115,61,115,46,116,114,105,109,40,41,41,44,110,91,40,101,61,97,44,101,46,114,101,112,108,97,99,101,40,76,101,46,107,101,98,97,98,44,73,101,41,41,93,61,115,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,36,101,40,41,123,102,111,114,40,118,97,114,32,116,44,101,44,110,61,123,125,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,114,45,45,59,41,102,111,114,40,118,97,114,32,105,61,48,44,111,61,79,98,106,101,99,116,46,107,101,121,115,40,97,114,103,117,109,101,110,116,115,91,114,93,41,59,105,60,111,46,108,101,110,103,116,104,59,105,43,43,41,115,119,105,116,99,104,40,116,61,111,91,105,93,41,123,99,97,115,101,34,99,108,97,115,115,34,58,99,97,115,101,34,115,116,121,108,101,34,58,99,97,115,101,34,100,105,114,101,99,116,105,118,101,115,34,58,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,91,116,93,41,124,124,40,110,91,116,93,61,91,93,41,44,34,115,116,121,108,101,34,61,61,61,116,41,123,118,97,114,32,97,61,118,111,105,100,32,48,59,97,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,114,103,117,109,101,110,116,115,91,114,93,46,115,116,121,108,101,41,63,97,114,103,117,109,101,110,116,115,91,114,93,46,115,116,121,108,101,58,91,97,114,103,117,109,101,110,116,115,91,114,93,46,115,116,121,108,101,93,59,102,111,114,40,118,97,114,32,115,61,48,59,115,60,97,46,108,101,110,103,116,104,59,115,43,43,41,123,118,97,114,32,99,61,97,91,115,93,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,99,38,38,40,97,91,115,93,61,77,101,40,99,41,41,125,97,114,103,117,109,101,110,116,115,91,114,93,46,115,116,121,108,101,61,97,125,110,91,116,93,61,110,91,116,93,46,99,111,110,99,97,116,40,97,114,103,117,109,101,110,116,115,91,114,93,91,116,93,41,59,98,114,101,97,107,59,99,97,115,101,34,115,116,97,116,105,99,67,108,97,115,115,34,58,105,102,40,33,97,114,103,117,109,101,110,116,115,91,114,93,91,116,93,41,98,114,101,97,107,59,118,111,105,100,32,48,61,61,61,110,91,116,93,38,38,40,110,91,116,93,61,34,34,41,44,110,91,116,93,38,38,40,110,91,116,93,43,61,34,32,34,41,44,110,91,116,93,43,61,97,114,103,117,109,101,110,116,115,91,114,93,91,116,93,46,116,114,105,109,40,41,59,98,114,101,97,107,59,99,97,115,101,34,111,110,34,58,99,97,115,101,34,110,97,116,105,118,101,79,110,34,58,110,91,116,93,124,124,40,110,91,116,93,61,123,125,41,59,102,111,114,40,118,97,114,32,117,61,48,44,108,61,79,98,106,101,99,116,46,107,101,121,115,40,97,114,103,117,109,101,110,116,115,91,114,93,91,116,93,124,124,123,125,41,59,117,60,108,46,108,101,110,103,116,104,59,117,43,43,41,101,61,108,91,117,93,44,110,91,116,93,91,101,93,63,110,91,116,93,91,101,93,61,91,93,46,99,111,110,99,97,116,40,110,91,116,93,91,101,93,44,97,114,103,117,109,101,110,116,115,91,114,93,91,116,93,91,101,93,41,58,110,91,116,93,91,101,93,61,97,114,103,117,109,101,110,116,115,91,114,93,91,116,93,91,101,93,59,98,114,101,97,107,59,99,97,115,101,34,97,116,116,114,115,34,58,99,97,115,101,34,112,114,111,112,115,34,58,99,97,115,101,34,100,111,109,80,114,111,112,115,34,58,99,97,115,101,34,115,99,111,112,101,100,83,108,111,116,115,34,58,99,97,115,101,34,115,116,97,116,105,99,83,116,121,108,101,34,58,99,97,115,101,34,104,111,111,107,34,58,99,97,115,101,34,116,114,97,110,115,105,116,105,111,110,34,58,110,91,116,93,124,124,40,110,91,116,93,61,123,125,41,44,110,91,116,93,61,65,101,40,123,125,44,97,114,103,117,109,101,110,116,115,91,114,93,91,116,93,44,110,91,116,93,41,59,98,114,101,97,107,59,99,97,115,101,34,115,108,111,116,34,58,99,97,115,101,34,107,101,121,34,58,99,97,115,101,34,114,101,102,34,58,99,97,115,101,34,116,97,103,34,58,99,97,115,101,34,115,104,111,119,34,58,99,97,115,101,34,107,101,101,112,65,108,105,118,101,34,58,100,101,102,97,117,108,116,58,110,91,116,93,124,124,40,110,91,116,93,61,97,114,103,117,109,101,110,116,115,91,114,93,91,116,93,41,125,114,101,116,117,114,110,32,110,125,118,97,114,32,70,101,61,34,95,117,105,100,34,44,82,101,61,34,66,65,108,101,114,116,34,44,78,101,61,34,66,65,115,112,101,99,116,34,44,66,101,61,34,66,65,118,97,116,97,114,34,44,122,101,61,34,66,65,118,97,116,97,114,71,114,111,117,112,34,44,86,101,61,34,66,66,97,100,103,101,34,44,72,101,61,34,66,66,114,101,97,100,99,114,117,109,98,34,44,85,101,61,34,66,66,114,101,97,100,99,114,117,109,98,73,116,101,109,34,44,87,101,61,34,66,66,114,101,97,100,99,114,117,109,98,76,105,110,107,34,44,71,101,61,34,66,66,117,116,116,111,110,34,44,113,101,61,34,66,66,117,116,116,111,110,67,108,111,115,101,34,44,89,101,61,34,66,66,117,116,116,111,110,71,114,111,117,112,34,44,75,101,61,34,66,66,117,116,116,111,110,84,111,111,108,98,97,114,34,44,88,101,61,34,66,67,97,108,101,110,100,97,114,34,44,90,101,61,34,66,67,97,114,100,34,44,74,101,61,34,66,67,97,114,100,66,111,100,121,34,44,81,101,61,34,66,67,97,114,100,70,111,111,116,101,114,34,44,116,110,61,34,66,67,97,114,100,71,114,111,117,112,34,44,101,110,61,34,66,67,97,114,100,72,101,97,100,101,114,34,44,110,110,61,34,66,67,97,114,100,73,109,103,34,44,114,110,61,34,66,67,97,114,100,73,109,103,76,97,122,121,34,44,111,110,61,34,66,67,97,114,100,83,117,98,84,105,116,108,101,34,44,97,110,61,34,66,67,97,114,100,84,101,120,116,34,44,115,110,61,34,66,67,97,114,100,84,105,116,108,101,34,44,99,110,61,34,66,67,97,114,111,117,115,101,108,34,44,117,110,61,34,66,67,97,114,111,117,115,101,108,83,108,105,100,101,34,44,108,110,61,34,66,67,111,108,34,44,102,110,61,34,66,67,111,108,108,97,112,115,101,34,44,104,110,61,34,66,67,111,110,116,97,105,110,101,114,34,44,100,110,61,34,66,68,114,111,112,100,111,119,110,34,44,112,110,61,34,66,68,114,111,112,100,111,119,110,68,105,118,105,100,101,114,34,44,118,110,61,34,66,68,114,111,112,100,111,119,110,70,111,114,109,34,44,103,110,61,34,66,68,114,111,112,100,111,119,110,71,114,111,117,112,34,44,109,110,61,34,66,68,114,111,112,100,111,119,110,72,101,97,100,101,114,34,44,98,110,61,34,66,68,114,111,112,100,111,119,110,73,116,101,109,34,44,121,110,61,34,66,68,114,111,112,100,111,119,110,73,116,101,109,66,117,116,116,111,110,34,44,119,110,61,34,66,68,114,111,112,100,111,119,110,84,101,120,116,34,44,95,110,61,34,66,69,109,98,101,100,34,44,120,110,61,34,66,70,111,114,109,34,44,79,110,61,34,66,70,111,114,109,67,104,101,99,107,98,111,120,34,44,83,110,61,34,66,70,111,114,109,67,104,101,99,107,98,111,120,71,114,111,117,112,34,44,107,110,61,34,66,70,111,114,109,68,97,116,97,108,105,115,116,34,44,67,110,61,34,66,70,111,114,109,68,97,116,101,112,105,99,107,101,114,34,44,80,110,61,34,66,70,111,114,109,70,105,108,101,34,44,84,110,61,34,66,70,111,114,109,71,114,111,117,112,34,44,106,110,61,34,66,70,111,114,109,73,110,112,117,116,34,44,69,110,61,34,66,70,111,114,109,73,110,118,97,108,105,100,70,101,101,100,98,97,99,107,34,44,68,110,61,34,66,70,111,114,109,82,97,100,105,111,34,44,65,110,61,34,66,70,111,114,109,82,97,100,105,111,71,114,111,117,112,34,44,76,110,61,34,66,70,111,114,109,82,97,116,105,110,103,34,44,73,110,61,34,66,70,111,114,109,82,111,119,34,44,77,110,61,34,66,70,111,114,109,83,101,108,101,99,116,34,44,36,110,61,34,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,34,44,70,110,61,34,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,34,44,82,110,61,34,66,70,111,114,109,83,112,105,110,98,117,116,116,111,110,34,44,78,110,61,34,66,70,111,114,109,84,97,103,34,44,66,110,61,34,66,70,111,114,109,84,97,103,115,34,44,122,110,61,34,66,70,111,114,109,84,101,120,116,34,44,86,110,61,34,66,70,111,114,109,84,101,120,116,97,114,101,97,34,44,72,110,61,34,66,70,111,114,109,84,105,109,101,112,105,99,107,101,114,34,44,85,110,61,34,66,70,111,114,109,86,97,108,105,100,70,101,101,100,98,97,99,107,34,44,87,110,61,34,66,73,99,111,110,34,44,71,110,61,34,66,73,99,111,110,66,97,115,101,34,44,113,110,61,34,66,73,109,103,34,44,89,110,61,34,66,73,109,103,76,97,122,121,34,44,75,110,61,34,66,73,110,112,117,116,71,114,111,117,112,34,44,88,110,61,34,66,73,110,112,117,116,71,114,111,117,112,65,100,100,111,110,34,44,90,110,61,34,66,73,110,112,117,116,71,114,111,117,112,65,112,112,101,110,100,34,44,74,110,61,34,66,73,110,112,117,116,71,114,111,117,112,80,114,101,112,101,110,100,34,44,81,110,61,34,66,73,110,112,117,116,71,114,111,117,112,84,101,120,116,34,44,116,114,61,34,66,74,117,109,98,111,116,114,111,110,34,44,101,114,61,34,66,76,105,110,107,34,44,110,114,61,34,66,76,105,115,116,71,114,111,117,112,34,44,114,114,61,34,66,76,105,115,116,71,114,111,117,112,73,116,101,109,34,44,105,114,61,34,66,77,101,100,105,97,34,44,111,114,61,34,66,77,101,100,105,97,65,115,105,100,101,34,44,97,114,61,34,66,77,101,100,105,97,66,111,100,121,34,44,115,114,61,34,66,77,111,100,97,108,34,44,99,114,61,34,66,77,115,103,66,111,120,34,44,117,114,61,34,66,78,97,118,34,44,108,114,61,34,66,78,97,118,98,97,114,34,44,102,114,61,34,66,78,97,118,98,97,114,66,114,97,110,100,34,44,104,114,61,34,66,78,97,118,98,97,114,78,97,118,34,44,100,114,61,34,66,78,97,118,98,97,114,84,111,103,103,108,101,34,44,112,114,61,34,66,78,97,118,70,111,114,109,34,44,118,114,61,34,66,78,97,118,73,116,101,109,34,44,103,114,61,34,66,78,97,118,73,116,101,109,68,114,111,112,100,111,119,110,34,44,109,114,61,34,66,78,97,118,84,101,120,116,34,44,98,114,61,34,66,79,118,101,114,108,97,121,34,44,121,114,61,34,66,80,97,103,105,110,97,116,105,111,110,34,44,119,114,61,34,66,80,97,103,105,110,97,116,105,111,110,78,97,118,34,44,95,114,61,34,66,80,111,112,111,118,101,114,34,44,120,114,61,34,66,80,114,111,103,114,101,115,115,34,44,79,114,61,34,66,80,114,111,103,114,101,115,115,66,97,114,34,44,83,114,61,34,66,82,111,119,34,44,107,114,61,34,66,83,105,100,101,98,97,114,34,44,67,114,61,34,66,83,107,101,108,101,116,111,110,34,44,80,114,61,34,66,83,107,101,108,101,116,111,110,73,99,111,110,34,44,84,114,61,34,66,83,107,101,108,101,116,111,110,73,109,103,34,44,106,114,61,34,66,83,107,101,108,101,116,111,110,84,97,98,108,101,34,44,69,114,61,34,66,83,107,101,108,101,116,111,110,87,114,97,112,112,101,114,34,44,68,114,61,34,66,83,112,105,110,110,101,114,34,44,65,114,61,34,66,84,97,98,34,44,76,114,61,34,66,84,97,98,108,101,34,44,73,114,61,34,66,84,97,98,108,101,67,101,108,108,34,44,77,114,61,34,66,84,97,98,108,101,76,105,116,101,34,44,36,114,61,34,66,84,97,98,108,101,83,105,109,112,108,101,34,44,70,114,61,34,66,84,97,98,115,34,44,82,114,61,34,66,84,98,111,100,121,34,44,78,114,61,34,66,84,102,111,111,116,34,44,66,114,61,34,66,84,104,34,44,122,114,61,34,66,84,104,101,97,100,34,44,86,114,61,34,66,84,105,109,101,34,44,72,114,61,34,66,84,111,97,115,116,34,44,85,114,61,34,66,84,111,97,115,116,101,114,34,44,87,114,61,34,66,84,111,111,108,116,105,112,34,44,71,114,61,34,66,84,114,34,44,113,114,61,34,66,86,67,111,108,108,97,112,115,101,34,44,89,114,61,34,66,86,70,111,114,109,66,116,110,76,97,98,101,108,67,111,110,116,114,111,108,34,44,75,114,61,34,66,86,70,111,114,109,82,97,116,105,110,103,83,116,97,114,34,44,88,114,61,34,66,86,80,111,112,111,118,101,114,34,44,90,114,61,34,66,86,80,111,112,111,118,101,114,84,101,109,112,108,97,116,101,34,44,74,114,61,34,66,86,80,111,112,112,101,114,34,44,81,114,61,34,66,86,84,97,98,66,117,116,116,111,110,34,44,116,105,61,34,66,86,84,111,97,115,116,80,111,112,34,44,101,105,61,34,66,86,84,111,111,108,116,105,112,34,44,110,105,61,34,66,86,84,111,111,108,116,105,112,84,101,109,112,108,97,116,101,34,44,114,105,61,34,66,86,84,114,97,110,115,105,116,105,111,110,34,44,105,105,61,34,66,86,84,114,97,110,115,112,111,114,116,101,114,34,44,111,105,61,34,66,86,84,114,97,110,115,112,111,114,116,101,114,84,97,114,103,101,116,34,44,97,105,61,34,97,99,116,105,118,97,116,101,45,116,97,98,34,44,115,105,61,34,98,108,117,114,34,44,99,105,61,34,99,97,110,99,101,108,34,44,117,105,61,34,99,104,97,110,103,101,34,44,108,105,61,34,99,104,97,110,103,101,100,34,44,102,105,61,34,99,108,105,99,107,34,44,104,105,61,34,99,108,111,115,101,34,44,100,105,61,34,99,111,110,116,101,120,116,34,44,112,105,61,34,99,111,110,116,101,120,116,45,99,104,97,110,103,101,100,34,44,118,105,61,34,100,101,115,116,114,111,121,101,100,34,44,103,105,61,34,100,105,115,97,98,108,101,34,44,109,105,61,34,100,105,115,97,98,108,101,100,34,44,98,105,61,34,100,105,115,109,105,115,115,101,100,34,44,121,105,61,34,100,105,115,109,105,115,115,45,99,111,117,110,116,45,100,111,119,110,34,44,119,105,61,34,101,110,97,98,108,101,34,44,95,105,61,34,101,110,97,98,108,101,100,34,44,120,105,61,34,102,105,108,116,101,114,101,100,34,44,79,105,61,34,102,105,114,115,116,34,44,83,105,61,34,102,111,99,117,115,105,110,34,44,107,105,61,34,102,111,99,117,115,111,117,116,34,44,67,105,61,34,104,101,97,100,45,99,108,105,99,107,101,100,34,44,80,105,61,34,104,105,100,100,101,110,34,44,84,105,61,34,104,105,100,101,34,44,106,105,61,34,105,109,103,45,101,114,114,111,114,34,44,69,105,61,34,105,110,112,117,116,34,44,68,105,61,34,108,97,115,116,34,44,65,105,61,34,109,111,117,115,101,101,110,116,101,114,34,44,76,105,61,34,109,111,117,115,101,108,101,97,118,101,34,44,73,105,61,34,110,101,120,116,34,44,77,105,61,34,111,107,34,44,36,105,61,34,111,112,101,110,34,44,70,105,61,34,112,97,103,101,45,99,108,105,99,107,34,44,82,105,61,34,112,97,117,115,101,100,34,44,78,105,61,34,112,114,101,118,34,44,66,105,61,34,114,101,102,114,101,115,104,34,44,122,105,61,34,114,101,102,114,101,115,104,101,100,34,44,86,105,61,34,114,101,109,111,118,101,34,44,72,105,61,34,114,111,119,45,99,108,105,99,107,101,100,34,44,85,105,61,34,114,111,119,45,99,111,110,116,101,120,116,109,101,110,117,34,44,87,105,61,34,114,111,119,45,100,98,108,99,108,105,99,107,101,100,34,44,71,105,61,34,114,111,119,45,104,111,118,101,114,101,100,34,44,113,105,61,34,114,111,119,45,109,105,100,100,108,101,45,99,108,105,99,107,101,100,34,44,89,105,61,34,114,111,119,45,115,101,108,101,99,116,101,100,34,44,75,105,61,34,114,111,119,45,117,110,104,111,118,101,114,101,100,34,44,88,105,61,34,115,101,108,101,99,116,101,100,34,44,90,105,61,34,115,104,111,119,34,44,74,105,61,34,115,104,111,119,110,34,44,81,105,61,34,115,108,105,100,105,110,103,45,101,110,100,34,44,116,111,61,34,115,108,105,100,105,110,103,45,115,116,97,114,116,34,44,101,111,61,34,115,111,114,116,45,99,104,97,110,103,101,100,34,44,110,111,61,34,116,97,103,45,115,116,97,116,101,34,44,114,111,61,34,116,111,103,103,108,101,34,44,105,111,61,34,117,110,112,97,117,115,101,100,34,44,111,111,61,34,117,112,100,97,116,101,34,44,97,111,61,34,104,111,111,107,58,98,101,102,111,114,101,68,101,115,116,114,111,121,34,44,115,111,61,34,104,111,111,107,58,100,101,115,116,114,111,121,101,100,34,44,99,111,61,34,117,112,100,97,116,101,58,34,44,117,111,61,34,98,118,34,44,108,111,61,34,58,58,34,44,102,111,61,123,112,97,115,115,105,118,101,58,33,48,125,44,104,111,61,123,112,97,115,115,105,118,101,58,33,48,44,99,97,112,116,117,114,101,58,33,49,125,44,112,111,61,118,111,105,100,32,48,44,118,111,61,65,114,114,97,121,44,103,111,61,66,111,111,108,101,97,110,44,109,111,61,68,97,116,101,44,98,111,61,70,117,110,99,116,105,111,110,44,121,111,61,78,117,109,98,101,114,44,119,111,61,79,98,106,101,99,116,44,95,111,61,82,101,103,69,120,112,44,120,111,61,83,116,114,105,110,103,44,79,111,61,91,118,111,44,98,111,93,44,83,111,61,91,118,111,44,119,111,93,44,107,111,61,91,118,111,44,119,111,44,120,111,93,44,67,111,61,91,118,111,44,120,111,93,44,80,111,61,91,103,111,44,121,111,93,44,84,111,61,91,103,111,44,121,111,44,120,111,93,44,106,111,61,91,103,111,44,120,111,93,44,69,111,61,91,109,111,44,120,111,93,44,68,111,61,91,98,111,44,120,111,93,44,65,111,61,91,121,111,44,120,111,93,44,76,111,61,91,121,111,44,119,111,44,120,111,93,44,73,111,61,91,119,111,44,98,111,93,44,77,111,61,91,119,111,44,120,111,93,44,36,111,61,34,97,100,100,45,98,117,116,116,111,110,45,116,101,120,116,34,44,70,111,61,34,97,112,112,101,110,100,34,44,82,111,61,34,97,115,105,100,101,34,44,78,111,61,34,98,97,100,103,101,34,44,66,111,61,34,98,111,116,116,111,109,45,114,111,119,34,44,122,111,61,34,98,117,116,116,111,110,45,99,111,110,116,101,110,116,34,44,86,111,61,34,99,117,115,116,111,109,45,102,111,111,116,34,44,72,111,61,34,100,101,99,114,101,109,101,110,116,34,44,85,111,61,34,100,101,102,97,117,108,116,34,44,87,111,61,34,100,101,115,99,114,105,112,116,105,111,110,34,44,71,111,61,34,100,105,115,109,105,115,115,34,44,113,111,61,34,100,114,111,112,45,112,108,97,99,101,104,111,108,100,101,114,34,44,89,111,61,34,101,108,108,105,112,115,105,115,45,116,101,120,116,34,44,75,111,61,34,101,109,112,116,121,34,44,88,111,61,34,101,109,112,116,121,102,105,108,116,101,114,101,100,34,44,90,111,61,34,102,105,108,101,45,110,97,109,101,34,44,74,111,61,34,102,105,114,115,116,34,44,81,111,61,34,102,105,114,115,116,45,116,101,120,116,34,44,116,97,61,34,102,111,111,116,101,114,34,44,101,97,61,34,104,101,97,100,101,114,34,44,110,97,61,34,104,101,97,100,101,114,45,99,108,111,115,101,34,44,114,97,61,34,105,99,111,110,45,99,108,101,97,114,34,44,105,97,61,34,105,99,111,110,45,101,109,112,116,121,34,44,111,97,61,34,105,99,111,110,45,102,117,108,108,34,44,97,97,61,34,105,99,111,110,45,104,97,108,102,34,44,115,97,61,34,105,109,103,34,44,99,97,61,34,105,110,99,114,101,109,101,110,116,34,44,117,97,61,34,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,34,44,108,97,61,34,108,97,98,101,108,34,44,102,97,61,34,108,97,115,116,45,116,101,120,116,34,44,104,97,61,34,108,101,97,100,34,44,100,97,61,34,108,111,97,100,105,110,103,34,44,112,97,61,34,109,111,100,97,108,45,98,97,99,107,100,114,111,112,34,44,118,97,61,34,109,111,100,97,108,45,99,97,110,99,101,108,34,44,103,97,61,34,109,111,100,97,108,45,102,111,111,116,101,114,34,44,109,97,61,34,109,111,100,97,108,45,104,101,97,100,101,114,34,44,98,97,61,34,109,111,100,97,108,45,104,101,97,100,101,114,45,99,108,111,115,101,34,44,121,97,61,34,109,111,100,97,108,45,111,107,34,44,119,97,61,34,109,111,100,97,108,45,116,105,116,108,101,34,44,95,97,61,34,110,97,118,45,110,101,120,116,45,100,101,99,97,100,101,34,44,120,97,61,34,110,97,118,45,110,101,120,116,45,109,111,110,116,104,34,44,79,97,61,34,110,97,118,45,110,101,120,116,45,121,101,97,114,34,44,83,97,61,34,110,97,118,45,112,114,101,118,45,100,101,99,97,100,101,34,44,107,97,61,34,110,97,118,45,112,114,101,118,45,109,111,110,116,104,34,44,67,97,61,34,110,97,118,45,112,114,101,118,45,121,101,97,114,34,44,80,97,61,34,110,97,118,45,116,104,105,115,45,109,111,110,116,104,34,44,84,97,61,34,110,101,120,116,45,116,101,120,116,34,44,106,97,61,34,111,118,101,114,108,97,121,34,44,69,97,61,34,112,97,103,101,34,44,68,97,61,34,112,108,97,99,101,104,111,108,100,101,114,34,44,65,97,61,34,112,114,101,112,101,110,100,34,44,76,97,61,34,112,114,101,118,45,116,101,120,116,34,44,73,97,61,34,114,111,119,45,100,101,116,97,105,108,115,34,44,77,97,61,34,116,97,98,108,101,45,98,117,115,121,34,44,36,97,61,34,116,97,98,108,101,45,99,97,112,116,105,111,110,34,44,70,97,61,34,116,97,98,108,101,45,99,111,108,103,114,111,117,112,34,44,82,97,61,34,116,97,98,115,45,101,110,100,34,44,78,97,61,34,116,97,98,115,45,115,116,97,114,116,34,44,66,97,61,34,116,101,120,116,34,44,122,97,61,34,116,104,101,97,100,45,116,111,112,34,44,86,97,61,34,116,105,116,108,101,34,44,72,97,61,34,116,111,97,115,116,45,116,105,116,108,101,34,44,85,97,61,34,116,111,112,45,114,111,119,34,44,87,97,61,34,118,97,108,105,100,45,102,101,101,100,98,97,99,107,34,44,71,97,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,46,97,112,112,108,121,40,65,114,114,97,121,44,97,114,103,117,109,101,110,116,115,41,125,44,113,97,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,45,49,33,61,61,116,46,105,110,100,101,120,79,102,40,101,41,125,44,89,97,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,101,61,110,101,119,32,65,114,114,97,121,40,116,41,44,110,61,48,59,110,60,116,59,110,43,43,41,101,91,110,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,114,101,116,117,114,110,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,99,111,110,99,97,116,46,97,112,112,108,121,40,91,93,44,101,41,125,44,75,97,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,95,116,40,101,41,63,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,125,59,114,101,116,117,114,110,32,65,114,114,97,121,46,97,112,112,108,121,40,110,117,108,108,44,123,108,101,110,103,116,104,58,116,125,41,46,109,97,112,40,110,41,125,44,88,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,89,97,40,116,44,101,41,125,41,44,91,93,41,125,44,90,97,61,102,117,110,99,116,105,111,110,32,116,40,101,41,123,114,101,116,117,114,110,32,101,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,89,97,40,101,44,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,116,40,110,41,58,110,41,125,41,44,91,93,41,125,44,74,97,61,102,117,110,99,116,105,111,110,40,116,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,49,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,78,97,78,44,110,61,112,97,114,115,101,73,110,116,40,116,44,49,48,41,59,114,101,116,117,114,110,32,105,115,78,97,78,40,110,41,63,101,58,110,125,44,81,97,61,102,117,110,99,116,105,111,110,40,116,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,49,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,78,97,78,44,110,61,112,97,114,115,101,70,108,111,97,116,40,116,41,59,114,101,116,117,114,110,32,105,115,78,97,78,40,110,41,63,101,58,110,125,44,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,81,97,40,116,41,46,116,111,70,105,120,101,100,40,74,97,40,101,44,48,41,41,125,44,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,106,44,34,45,36,49,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,110,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,101,115,40,116,41,46,114,101,112,108,97,99,101,40,66,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,63,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,58,34,34,125,41,41,44,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,125,44,114,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,78,44,34,32,34,41,46,114,101,112,108,97,99,101,40,69,44,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,43,34,32,34,43,110,125,41,41,46,114,101,112,108,97,99,101,40,70,44,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,43,110,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,41,41,125,44,105,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,79,116,40,116,41,63,116,46,116,114,105,109,40,41,58,83,116,114,105,110,103,40,116,41,44,116,46,99,104,97,114,65,116,40,48,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,125,44,111,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,79,116,40,116,41,63,116,46,116,114,105,109,40,41,58,83,116,114,105,110,103,40,116,41,44,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,125,44,97,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,76,44,34,92,92,36,38,34,41,125,44,115,115,61,102,117,110,99,116,105,111,110,40,116,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,49,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,50,59,114,101,116,117,114,110,32,119,116,40,116,41,63,34,34,58,67,116,40,116,41,124,124,84,116,40,116,41,38,38,116,46,116,111,83,116,114,105,110,103,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,63,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,44,110,117,108,108,44,101,41,58,83,116,114,105,110,103,40,116,41,125,44,99,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,115,115,40,116,41,46,114,101,112,108,97,99,101,40,82,44,34,34,41,125,44,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,115,115,40,116,41,46,116,114,105,109,40,41,125,44,108,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,115,115,40,116,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,102,115,61,102,116,46,112,114,111,116,111,116,121,112,101,44,104,115,61,91,34,98,117,116,116,111,110,34,44,34,91,104,114,101,102,93,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,34,44,34,105,110,112,117,116,34,44,34,115,101,108,101,99,116,34,44,34,116,101,120,116,97,114,101,97,34,44,34,91,116,97,98,105,110,100,101,120,93,34,44,34,91,99,111,110,116,101,110,116,101,100,105,116,97,98,108,101,93,34,93,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,34,46,99,111,110,99,97,116,40,116,44,34,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,34,41,125,41,41,46,106,111,105,110,40,34,44,32,34,41,44,100,115,61,102,115,46,109,97,116,99,104,101,115,124,124,102,115,46,109,115,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,102,115,46,119,101,98,107,105,116,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,44,112,115,61,102,115,46,99,108,111,115,101,115,116,124,124,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,100,111,123,105,102,40,80,115,40,101,44,116,41,41,114,101,116,117,114,110,32,101,59,101,61,101,46,112,97,114,101,110,116,69,108,101,109,101,110,116,124,124,101,46,112,97,114,101,110,116,78,111,100,101,125,119,104,105,108,101,40,33,121,116,40,101,41,38,38,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,41,59,114,101,116,117,114,110,32,110,117,108,108,125,44,118,115,61,108,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,124,124,108,46,119,101,98,107,105,116,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,124,124,108,46,109,111,122,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,124,124,108,46,109,115,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,124,124,108,46,111,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,115,101,116,84,105,109,101,111,117,116,40,116,44,49,54,41,125,44,103,115,61,108,46,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,124,124,108,46,87,101,98,75,105,116,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,124,124,108,46,77,111,122,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,124,124,110,117,108,108,44,109,115,61,102,117,110,99,116,105,111,110,40,116,41,123,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,114,101,109,111,118,101,67,104,105,108,100,40,116,41,125,44,98,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,40,33,116,124,124,116,46,110,111,100,101,84,121,112,101,33,61,61,78,111,100,101,46,69,76,69,77,69,78,84,95,78,79,68,69,41,125,44,121,115,61,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,91,93,44,101,61,102,46,97,99,116,105,118,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,32,101,38,38,33,116,46,115,111,109,101,40,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,41,63,101,58,110,117,108,108,125,44,119,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,115,115,40,116,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,115,115,40,101,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,95,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,98,115,40,116,41,38,38,116,61,61,61,121,115,40,41,125,44,120,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,98,115,40,116,41,124,124,33,116,46,112,97,114,101,110,116,78,111,100,101,124,124,33,106,115,40,102,46,98,111,100,121,44,116,41,41,114,101,116,117,114,110,33,49,59,105,102,40,34,110,111,110,101,34,61,61,61,66,115,40,116,44,34,100,105,115,112,108,97,121,34,41,41,114,101,116,117,114,110,33,49,59,118,97,114,32,101,61,122,115,40,116,41,59,114,101,116,117,114,110,33,33,40,101,38,38,101,46,104,101,105,103,104,116,62,48,38,38,101,46,119,105,100,116,104,62,48,41,125,44,79,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,98,115,40,116,41,124,124,116,46,100,105,115,97,98,108,101,100,124,124,70,115,40,116,44,34,100,105,115,97,98,108,101,100,34,41,124,124,76,115,40,116,44,34,100,105,115,97,98,108,101,100,34,41,125,44,83,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,98,115,40,116,41,38,38,116,46,111,102,102,115,101,116,72,101,105,103,104,116,125,44,107,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,71,97,40,40,98,115,40,101,41,63,101,58,102,41,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,41,41,125,44,67,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,40,98,115,40,101,41,63,101,58,102,41,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,41,124,124,110,117,108,108,125,44,80,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,33,33,98,115,40,116,41,38,38,100,115,46,99,97,108,108,40,116,44,101,41,125,44,84,115,61,102,117,110,99,116,105,111,110,40,116,44,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,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,38,38,97,114,103,117,109,101,110,116,115,91,50,93,59,105,102,40,33,98,115,40,101,41,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,114,61,112,115,46,99,97,108,108,40,101,44,116,41,59,114,101,116,117,114,110,32,110,63,114,58,114,61,61,61,101,63,110,117,108,108,58,114,125,44,106,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,33,40,33,116,124,124,33,95,116,40,116,46,99,111,110,116,97,105,110,115,41,41,38,38,116,46,99,111,110,116,97,105,110,115,40,101,41,125,44,69,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,47,94,35,47,46,116,101,115,116,40,116,41,63,116,46,115,108,105,99,101,40,49,41,58,116,41,124,124,110,117,108,108,125,44,68,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,38,38,98,115,40,116,41,38,38,116,46,99,108,97,115,115,76,105,115,116,38,38,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,101,41,125,44,65,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,38,38,98,115,40,116,41,38,38,116,46,99,108,97,115,115,76,105,115,116,38,38,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,101,41,125,44,76,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,33,33,40,101,38,38,98,115,40,116,41,38,38,116,46,99,108,97,115,115,76,105,115,116,41,38,38,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,101,41,125,44,73,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,38,38,98,115,40,116,41,38,38,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,101,44,110,41,125,44,77,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,38,38,98,115,40,116,41,38,38,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,101,41,125,44,36,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,38,38,98,115,40,116,41,63,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,101,41,58,110,117,108,108,125,44,70,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,38,38,98,115,40,116,41,63,116,46,104,97,115,65,116,116,114,105,98,117,116,101,40,101,41,58,110,117,108,108,125,44,82,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,38,38,98,115,40,116,41,38,38,40,116,46,115,116,121,108,101,91,101,93,61,110,41,125,44,78,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,38,38,98,115,40,116,41,38,38,40,116,46,115,116,121,108,101,91,101,93,61,34,34,41,125,44,66,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,38,38,98,115,40,116,41,38,38,116,46,115,116,121,108,101,91,101,93,124,124,110,117,108,108,125,44,122,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,98,115,40,116,41,63,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,58,110,117,108,108,125,44,86,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,108,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,59,114,101,116,117,114,110,32,101,38,38,98,115,40,116,41,63,101,40,116,41,58,123,125,125,44,72,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,108,46,103,101,116,83,101,108,101,99,116,105,111,110,59,114,101,116,117,114,110,32,116,63,108,46,103,101,116,83,101,108,101,99,116,105,111,110,40,41,58,110,117,108,108,125,44,85,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,123,116,111,112,58,48,44,108,101,102,116,58,48,125,59,105,102,40,33,98,115,40,116,41,124,124,48,61,61,61,116,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,114,101,116,117,114,110,32,101,59,118,97,114,32,110,61,122,115,40,116,41,59,105,102,40,110,41,123,118,97,114,32,114,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,59,101,46,116,111,112,61,110,46,116,111,112,43,114,46,112,97,103,101,89,79,102,102,115,101,116,44,101,46,108,101,102,116,61,110,46,108,101,102,116,43,114,46,112,97,103,101,88,79,102,102,115,101,116,125,114,101,116,117,114,110,32,101,125,44,87,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,123,116,111,112,58,48,44,108,101,102,116,58,48,125,59,105,102,40,33,98,115,40,116,41,41,114,101,116,117,114,110,32,101,59,118,97,114,32,110,61,123,116,111,112,58,48,44,108,101,102,116,58,48,125,44,114,61,86,115,40,116,41,59,105,102,40,34,102,105,120,101,100,34,61,61,61,114,46,112,111,115,105,116,105,111,110,41,101,61,122,115,40,116,41,124,124,101,59,101,108,115,101,123,101,61,85,115,40,116,41,59,118,97,114,32,105,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,111,61,116,46,111,102,102,115,101,116,80,97,114,101,110,116,124,124,105,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,119,104,105,108,101,40,111,38,38,40,111,61,61,61,105,46,98,111,100,121,124,124,111,61,61,61,105,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,86,115,40,111,41,46,112,111,115,105,116,105,111,110,41,111,61,111,46,112,97,114,101,110,116,78,111,100,101,59,105,102,40,111,38,38,111,33,61,61,116,38,38,111,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,41,123,110,61,85,115,40,111,41,59,118,97,114,32,97,61,86,115,40,111,41,59,110,46,116,111,112,43,61,81,97,40,97,46,98,111,114,100,101,114,84,111,112,87,105,100,116,104,44,48,41,44,110,46,108,101,102,116,43,61,81,97,40,97,46,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,44,48,41,125,125,114,101,116,117,114,110,123,116,111,112,58,101,46,116,111,112,45,110,46,116,111,112,45,81,97,40,114,46,109,97,114,103,105,110,84,111,112,44,48,41,44,108,101,102,116,58,101,46,108,101,102,116,45,110,46,108,101,102,116,45,81,97,40,114,46,109,97,114,103,105,110,76,101,102,116,44,48,41,125,125,44,71,115,61,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,100,111,99,117,109,101,110,116,59,114,101,116,117,114,110,32,107,115,40,104,115,44,116,41,46,102,105,108,116,101,114,40,120,115,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,97,98,73,110,100,101,120,62,45,49,38,38,33,116,46,100,105,115,97,98,108,101,100,125,41,41,125,44,113,115,61,102,117,110,99,116,105,111,110,40,116,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,49,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,123,125,59,116,114,121,123,116,46,102,111,99,117,115,40,101,41,125,99,97,116,99,104,40,110,41,123,125,114,101,116,117,114,110,32,95,115,40,116,41,125,44,89,115,61,102,117,110,99,116,105,111,110,40,116,41,123,116,114,121,123,116,46,98,108,117,114,40,41,125,99,97,116,99,104,40,101,41,123,125,114,101,116,117,114,110,33,95,115,40,116,41,125,44,75,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,82,116,40,110,117,108,108,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,110,41,44,105,61,48,59,105,60,110,59,105,43,43,41,114,91,105,93,61,97,114,103,117,109,101,110,116,115,91,105,93,59,118,97,114,32,111,61,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,114,41,59,114,101,116,117,114,110,32,101,91,111,93,61,101,91,111,93,124,124,116,46,97,112,112,108,121,40,110,117,108,108,44,114,41,125,125,44,88,115,61,114,91,34,100,101,102,97,117,108,116,34,93,46,112,114,111,116,111,116,121,112,101,44,90,115,61,102,117,110,99,116,105,111,110,40,116,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,49,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,118,111,105,100,32,48,44,110,61,88,115,91,119,93,59,114,101,116,117,114,110,32,110,63,110,46,103,101,116,67,111,110,102,105,103,86,97,108,117,101,40,116,44,101,41,58,97,101,40,101,41,125,44,74,115,61,102,117,110,99,116,105,111,110,40,116,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,49,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,110,117,108,108,44,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,118,111,105,100,32,48,59,114,101,116,117,114,110,32,101,63,90,115,40,34,34,46,99,111,110,99,97,116,40,116,44,34,46,34,41,46,99,111,110,99,97,116,40,101,41,44,110,41,58,90,115,40,116,44,123,125,41,125,44,81,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,115,40,34,98,114,101,97,107,112,111,105,110,116,115,34,44,95,41,125,44,116,99,61,75,115,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,41,125,41,41,44,101,99,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,101,40,116,99,40,41,41,125,44,110,99,61,75,115,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,101,99,40,41,59,114,101,116,117,114,110,32,116,91,48,93,61,34,34,44,116,125,41,41,59,102,117,110,99,116,105,111,110,32,114,99,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,105,99,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,114,99,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,111,99,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,114,99,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,111,99,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,118,97,114,32,97,99,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,43,111,115,40,101,41,125,44,115,99,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,105,115,40,101,46,114,101,112,108,97,99,101,40,116,44,34,34,41,41,125,44,99,99,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,43,40,116,63,111,115,40,116,41,58,34,34,41,125,44,117,99,61,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,112,111,44,101,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,118,111,105,100,32,48,44,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,118,111,105,100,32,48,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,51,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,118,111,105,100,32,48,44,105,61,33,48,61,61,61,110,59,114,101,116,117,114,110,32,114,61,105,63,114,58,110,44,105,99,40,105,99,40,105,99,40,123,125,44,116,63,123,116,121,112,101,58,116,125,58,123,125,41,44,105,63,123,114,101,113,117,105,114,101,100,58,105,125,58,98,116,40,101,41,63,123,125,58,123,100,101,102,97,117,108,116,58,80,116,40,101,41,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,125,58,101,125,41,44,98,116,40,114,41,63,123,125,58,123,118,97,108,105,100,97,116,111,114,58,114,125,41,125,44,108,99,61,102,117,110,99,116,105,111,110,40,116,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,49,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,115,101,59,105,102,40,67,116,40,116,41,41,114,101,116,117,114,110,32,116,46,109,97,112,40,101,41,59,118,97,114,32,110,61,123,125,59,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,72,116,40,116,44,114,41,38,38,40,110,91,101,40,114,41,93,61,80,116,40,116,91,114,93,41,63,87,116,40,116,91,114,93,41,58,116,91,114,93,41,59,114,101,116,117,114,110,32,110,125,44,102,99,61,102,117,110,99,116,105,111,110,40,116,44,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,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,115,101,59,114,101,116,117,114,110,40,67,116,40,116,41,63,116,46,115,108,105,99,101,40,41,58,86,116,40,116,41,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,116,91,110,40,114,41,93,61,101,91,114,93,44,116,125,41,44,123,125,41,125,44,104,99,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,105,99,40,105,99,40,123,125,44,97,101,40,116,41,41,44,123,125,44,123,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,114,61,74,115,40,110,44,101,44,116,46,100,101,102,97,117,108,116,41,59,114,101,116,117,114,110,32,95,116,40,114,41,63,114,40,41,58,114,125,125,41,125,44,100,99,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,86,116,40,116,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,105,99,40,105,99,40,123,125,44,110,41,44,123,125,44,111,99,40,123,125,44,114,44,104,99,40,116,91,114,93,44,114,44,101,41,41,41,125,41,44,123,125,41,125,44,112,99,61,104,99,40,123,125,44,34,34,44,34,34,41,46,100,101,102,97,117,108,116,46,110,97,109,101,44,118,99,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,95,116,40,116,41,38,38,116,46,110,97,109,101,33,61,61,112,99,125,59,102,117,110,99,116,105,111,110,32,103,99,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,118,97,114,32,109,99,61,102,117,110,99,116,105,111,110,40,116,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,49,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,123,125,44,110,61,101,46,116,121,112,101,44,105,61,118,111,105,100,32,48,61,61,61,110,63,112,111,58,110,44,111,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,44,97,61,118,111,105,100,32,48,61,61,61,111,63,118,111,105,100,32,48,58,111,44,115,61,101,46,118,97,108,105,100,97,116,111,114,44,99,61,118,111,105,100,32,48,61,61,61,115,63,118,111,105,100,32,48,58,115,44,117,61,101,46,101,118,101,110,116,44,108,61,118,111,105,100,32,48,61,61,61,117,63,69,105,58,117,44,102,61,103,99,40,123,125,44,116,44,117,99,40,105,44,97,44,99,41,41,44,104,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,111,100,101,108,58,123,112,114,111,112,58,116,44,101,118,101,110,116,58,108,125,44,112,114,111,112,115,58,102,125,41,59,114,101,116,117,114,110,123,109,105,120,105,110,58,104,44,112,114,111,112,115,58,102,44,112,114,111,112,58,116,44,101,118,101,110,116,58,108,125,125,44,98,99,61,102,117,110,99,116,105,111,110,40,116,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,49,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,123,125,44,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,123,125,59,114,101,116,117,114,110,32,116,61,89,97,40,116,41,46,102,105,108,116,101,114,40,115,101,41,44,116,46,115,111,109,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,91,116,93,124,124,110,91,116,93,125,41,41,125,44,121,99,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,44,114,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,123,125,44,105,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,51,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,123,125,59,116,61,89,97,40,116,41,46,102,105,108,116,101,114,40,115,101,41,59,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,38,38,33,101,59,111,43,43,41,123,118,97,114,32,97,61,116,91,111,93,59,101,61,114,91,97,93,124,124,105,91,97,93,125,114,101,116,117,114,110,32,95,116,40,101,41,63,101,40,110,41,58,101,125,44,119,99,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,101,116,104,111,100,115,58,123,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,58,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,85,111,44,101,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,44,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,46,36,115,108,111,116,115,59,114,101,116,117,114,110,32,98,99,40,116,44,101,44,110,41,125,44,110,111,114,109,97,108,105,122,101,83,108,111,116,58,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,85,111,44,101,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,44,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,46,36,115,99,111,112,101,100,83,108,111,116,115,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,51,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,116,104,105,115,46,36,115,108,111,116,115,44,105,61,121,99,40,116,44,101,44,110,44,114,41,59,114,101,116,117,114,110,32,105,63,89,97,40,105,41,58,105,125,125,125,41,44,95,99,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,63,80,116,40,116,41,63,116,58,123,99,97,112,116,117,114,101,58,33,33,116,124,124,33,49,125,58,33,33,40,80,116,40,116,41,63,116,46,99,97,112,116,117,114,101,58,116,41,125,44,120,99,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,116,38,38,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,101,44,110,44,95,99,40,114,41,41,125,44,79,99,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,116,38,38,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,38,38,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,44,110,44,95,99,40,114,41,41,125,44,83,99,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,116,63,120,99,58,79,99,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,110,62,49,63,110,45,49,58,48,41,44,105,61,49,59,105,60,110,59,105,43,43,41,114,91,105,45,49,93,61,97,114,103,117,109,101,110,116,115,91,105,93,59,101,46,97,112,112,108,121,40,118,111,105,100,32,48,44,114,41,125,44,107,99,61,102,117,110,99,116,105,111,110,40,116,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,49,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,123,125,44,110,61,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,44,114,61,118,111,105,100,32,48,61,61,61,110,124,124,110,44,105,61,101,46,112,114,111,112,97,103,97,116,105,111,110,44,111,61,118,111,105,100,32,48,61,61,61,105,124,124,105,44,97,61,101,46,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,44,115,61,118,111,105,100,32,48,33,61,61,97,38,38,97,59,114,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,111,38,38,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,115,38,38,116,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,44,67,99,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,115,40,116,46,114,101,112,108,97,99,101,40,79,44,34,34,41,41,125,44,80,99,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,91,117,111,44,67,99,40,116,41,44,101,93,46,106,111,105,110,40,108,111,41,125,44,84,99,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,91,117,111,44,101,44,67,99,40,116,41,93,46,106,111,105,110,40,108,111,41,125,59,102,117,110,99,116,105,111,110,32,106,99,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,118,97,114,32,69,99,61,100,99,40,123,97,114,105,97,76,97,98,101,108,58,117,99,40,120,111,44,34,67,108,111,115,101,34,41,44,99,111,110,116,101,110,116,58,117,99,40,120,111,44,34,38,116,105,109,101,115,59,34,41,44,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,116,101,120,116,86,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,113,101,41,44,68,99,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,113,101,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,69,99,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,115,108,111,116,115,44,111,61,101,46,115,99,111,112,101,100,83,108,111,116,115,44,97,61,105,40,41,44,115,61,111,124,124,123,125,44,99,61,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,108,111,115,101,34,44,99,108,97,115,115,58,106,99,40,123,125,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,110,46,116,101,120,116,86,97,114,105,97,110,116,41,44,110,46,116,101,120,116,86,97,114,105,97,110,116,41,44,97,116,116,114,115,58,123,116,121,112,101,58,34,98,117,116,116,111,110,34,44,100,105,115,97,98,108,101,100,58,110,46,100,105,115,97,98,108,101,100,44,34,97,114,105,97,45,108,97,98,101,108,34,58,110,46,97,114,105,97,76,97,98,101,108,63,83,116,114,105,110,103,40,110,46,97,114,105,97,76,97,98,101,108,41,58,110,117,108,108,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,105,115,97,98,108,101,100,38,38,69,116,40,116,41,38,38,107,99,40,116,41,125,125,125,59,114,101,116,117,114,110,32,98,99,40,85,111,44,115,44,97,41,124,124,40,99,46,100,111,109,80,114,111,112,115,61,123,105,110,110,101,114,72,84,77,76,58,110,46,99,111,110,116,101,110,116,125,41,44,116,40,34,98,117,116,116,111,110,34,44,36,101,40,114,44,99,41,44,121,99,40,85,111,44,123,125,44,115,44,97,41,41,125,125,41,59,102,117,110,99,116,105,111,110,32,65,99,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,76,99,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,65,99,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,73,99,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,65,99,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,73,99,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,118,97,114,32,77,99,44,36,99,61,123,110,97,109,101,58,34,34,44,101,110,116,101,114,67,108,97,115,115,58,34,34,44,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,58,34,34,44,101,110,116,101,114,84,111,67,108,97,115,115,58,34,115,104,111,119,34,44,108,101,97,118,101,67,108,97,115,115,58,34,115,104,111,119,34,44,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,58,34,34,44,108,101,97,118,101,84,111,67,108,97,115,115,58,34,34,125,44,70,99,61,76,99,40,76,99,40,123,125,44,36,99,41,44,123,125,44,123,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,58,34,102,97,100,101,34,44,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,58,34,102,97,100,101,34,125,41,44,82,99,61,123,97,112,112,101,97,114,58,117,99,40,103,111,44,33,49,41,44,109,111,100,101,58,117,99,40,120,111,41,44,110,111,70,97,100,101,58,117,99,40,103,111,44,33,49,41,44,116,114,97,110,115,80,114,111,112,115,58,117,99,40,119,111,41,125,44,78,99,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,114,105,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,82,99,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,99,104,105,108,100,114,101,110,44,114,61,101,46,100,97,116,97,44,105,61,101,46,112,114,111,112,115,44,111,61,105,46,116,114,97,110,115,80,114,111,112,115,59,114,101,116,117,114,110,32,84,116,40,111,41,124,124,40,111,61,105,46,110,111,70,97,100,101,63,36,99,58,70,99,44,105,46,97,112,112,101,97,114,38,38,40,111,61,76,99,40,76,99,40,123,125,44,111,41,44,123,125,44,123,97,112,112,101,97,114,58,33,48,44,97,112,112,101,97,114,67,108,97,115,115,58,111,46,101,110,116,101,114,67,108,97,115,115,44,97,112,112,101,97,114,65,99,116,105,118,101,67,108,97,115,115,58,111,46,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,44,97,112,112,101,97,114,84,111,67,108,97,115,115,58,111,46,101,110,116,101,114,84,111,67,108,97,115,115,125,41,41,41,44,111,61,76,99,40,76,99,40,123,109,111,100,101,58,105,46,109,111,100,101,125,44,111,41,44,123,125,44,123,99,115,115,58,33,48,125,41,44,116,40,34,116,114,97,110,115,105,116,105,111,110,34,44,36,101,40,114,44,123,112,114,111,112,115,58,111,125,41,44,110,41,125,125,41,59,102,117,110,99,116,105,111,110,32,66,99,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,122,99,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,66,99,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,86,99,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,66,99,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,86,99,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,118,97,114,32,72,99,61,109,99,40,34,115,104,111,119,34,44,123,116,121,112,101,58,84,111,44,100,101,102,97,117,108,116,86,97,108,117,101,58,33,49,125,41,44,85,99,61,72,99,46,109,105,120,105,110,44,87,99,61,72,99,46,112,114,111,112,115,44,71,99,61,72,99,46,112,114,111,112,44,113,99,61,72,99,46,101,118,101,110,116,44,89,99,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,34,61,61,61,116,124,124,120,116,40,116,41,63,48,58,40,116,61,74,97,40,116,44,48,41,44,116,62,48,63,116,58,48,41,125,44,75,99,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,34,61,61,61,116,124,124,33,48,61,61,61,116,124,124,33,40,74,97,40,116,44,48,41,60,49,41,38,38,33,33,116,125,44,88,99,61,100,99,40,75,116,40,122,99,40,122,99,40,123,125,44,87,99,41,44,123,125,44,123,100,105,115,109,105,115,115,76,97,98,101,108,58,117,99,40,120,111,44,34,67,108,111,115,101,34,41,44,100,105,115,109,105,115,115,105,98,108,101,58,117,99,40,103,111,44,33,49,41,44,102,97,100,101,58,117,99,40,103,111,44,33,49,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,44,34,105,110,102,111,34,41,125,41,41,44,82,101,41,44,90,99,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,82,101,44,109,105,120,105,110,115,58,91,85,99,44,119,99,93,44,112,114,111,112,115,58,88,99,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,99,111,117,110,116,68,111,119,110,58,48,44,108,111,99,97,108,83,104,111,119,58,75,99,40,116,104,105,115,91,71,99,93,41,125,125,44,119,97,116,99,104,58,40,77,99,61,123,125,44,86,99,40,77,99,44,71,99,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,111,117,110,116,68,111,119,110,61,89,99,40,116,41,44,116,104,105,115,46,108,111,99,97,108,83,104,111,119,61,75,99,40,116,41,125,41,41,44,86,99,40,77,99,44,34,99,111,117,110,116,68,111,119,110,34,44,40,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,99,108,101,97,114,67,111,117,110,116,68,111,119,110,73,110,116,101,114,118,97,108,40,41,59,118,97,114,32,110,61,116,104,105,115,91,71,99,93,59,107,116,40,110,41,38,38,40,116,104,105,115,46,36,101,109,105,116,40,121,105,44,116,41,44,110,33,61,61,116,38,38,116,104,105,115,46,36,101,109,105,116,40,113,99,44,116,41,44,116,62,48,63,40,116,104,105,115,46,108,111,99,97,108,83,104,111,119,61,33,48,44,116,104,105,115,46,36,95,99,111,117,110,116,68,111,119,110,84,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,99,111,117,110,116,68,111,119,110,45,45,125,41,44,49,101,51,41,41,58,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,108,111,99,97,108,83,104,111,119,61,33,49,125,41,41,125,41,41,41,125,41,41,44,86,99,40,77,99,44,34,108,111,99,97,108,83,104,111,119,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,91,71,99,93,59,116,124,124,33,116,104,105,115,46,100,105,115,109,105,115,115,105,98,108,101,38,38,33,107,116,40,101,41,124,124,116,104,105,115,46,36,101,109,105,116,40,98,105,41,44,107,116,40,101,41,124,124,101,61,61,61,116,124,124,116,104,105,115,46,36,101,109,105,116,40,113,99,44,116,41,125,41,41,44,77,99,41,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,102,105,108,116,101,114,84,105,109,101,114,61,110,117,108,108,59,118,97,114,32,116,61,116,104,105,115,91,71,99,93,59,116,104,105,115,46,99,111,117,110,116,68,111,119,110,61,89,99,40,116,41,44,116,104,105,115,46,108,111,99,97,108,83,104,111,119,61,75,99,40,116,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,101,97,114,67,111,117,110,116,68,111,119,110,73,110,116,101,114,118,97,108,40,41,125,44,109,101,116,104,111,100,115,58,123,100,105,115,109,105,115,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,101,97,114,67,111,117,110,116,68,111,119,110,73,110,116,101,114,118,97,108,40,41,44,116,104,105,115,46,99,111,117,110,116,68,111,119,110,61,48,44,116,104,105,115,46,108,111,99,97,108,83,104,111,119,61,33,49,125,44,99,108,101,97,114,67,111,117,110,116,68,111,119,110,73,110,116,101,114,118,97,108,58,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,36,95,99,111,117,110,116,68,111,119,110,84,105,109,101,111,117,116,41,44,116,104,105,115,46,36,95,99,111,117,110,116,68,111,119,110,84,105,109,101,111,117,116,61,110,117,108,108,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,40,41,59,105,102,40,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,123,118,97,114,32,110,61,116,104,105,115,46,100,105,115,109,105,115,115,105,98,108,101,44,114,61,116,104,105,115,46,118,97,114,105,97,110,116,44,105,61,116,40,41,59,110,38,38,40,105,61,116,40,68,99,44,123,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,116,104,105,115,46,100,105,115,109,105,115,115,76,97,98,101,108,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,100,105,115,109,105,115,115,125,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,71,111,41,93,41,41,44,101,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,97,108,101,114,116,34,44,99,108,97,115,115,58,86,99,40,123,34,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,34,58,110,125,44,34,97,108,101,114,116,45,34,46,99,111,110,99,97,116,40,114,41,44,114,41,44,97,116,116,114,115,58,123,114,111,108,101,58,34,97,108,101,114,116,34,44,34,97,114,105,97,45,108,105,118,101,34,58,34,112,111,108,105,116,101,34,44,34,97,114,105,97,45,97,116,111,109,105,99,34,58,33,48,125,44,107,101,121,58,116,104,105,115,91,70,101,93,125,44,91,105,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,125,114,101,116,117,114,110,32,116,40,78,99,44,123,112,114,111,112,115,58,123,110,111,70,97,100,101,58,33,116,104,105,115,46,102,97,100,101,125,125,44,91,101,93,41,125,125,41,44,74,99,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,65,108,101,114,116,58,90,99,125,125,41,44,81,99,61,77,97,116,104,46,109,105,110,44,116,117,61,77,97,116,104,46,109,97,120,44,101,117,61,77,97,116,104,46,97,98,115,44,110,117,61,77,97,116,104,46,99,101,105,108,44,114,117,61,77,97,116,104,46,102,108,111,111,114,44,105,117,61,77,97,116,104,46,112,111,119,44,111,117,61,77,97,116,104,46,114,111,117,110,100,59,102,117,110,99,116,105,111,110,32,97,117,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,40,116,41,124,124,108,117,40,116,44,101,41,124,124,99,117,40,116,44,101,41,124,124,115,117,40,41,125,102,117,110,99,116,105,111,110,32,115,117,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,100,101,115,116,114,117,99,116,117,114,101,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,34,41,125,102,117,110,99,116,105,111,110,32,99,117,40,116,44,101,41,123,105,102,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,117,117,40,116,44,101,41,59,118,97,114,32,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,41,46,115,108,105,99,101,40,56,44,45,49,41,59,114,101,116,117,114,110,34,79,98,106,101,99,116,34,61,61,61,110,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,116,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,44,34,77,97,112,34,61,61,61,110,124,124,34,83,101,116,34,61,61,61,110,63,65,114,114,97,121,46,102,114,111,109,40,116,41,58,34,65,114,103,117,109,101,110,116,115,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,63,117,117,40,116,44,101,41,58,118,111,105,100,32,48,125,125,102,117,110,99,116,105,111,110,32,117,117,40,116,44,101,41,123,40,110,117,108,108,61,61,101,124,124,101,62,116,46,108,101,110,103,116,104,41,38,38,40,101,61,116,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,110,60,101,59,110,43,43,41,114,91,110,93,61,116,91,110,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,108,117,40,116,44,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,41,123,118,97,114,32,110,61,91,93,44,114,61,33,48,44,105,61,33,49,44,111,61,118,111,105,100,32,48,59,116,114,121,123,102,111,114,40,118,97,114,32,97,44,115,61,116,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,59,33,40,114,61,40,97,61,115,46,110,101,120,116,40,41,41,46,100,111,110,101,41,59,114,61,33,48,41,105,102,40,110,46,112,117,115,104,40,97,46,118,97,108,117,101,41,44,101,38,38,110,46,108,101,110,103,116,104,61,61,61,101,41,98,114,101,97,107,125,99,97,116,99,104,40,99,41,123,105,61,33,48,44,111,61,99,125,102,105,110,97,108,108,121,123,116,114,121,123,114,124,124,110,117,108,108,61,61,115,91,34,114,101,116,117,114,110,34,93,124,124,115,91,34,114,101,116,117,114,110,34,93,40,41,125,102,105,110,97,108,108,121,123,105,102,40,105,41,116,104,114,111,119,32,111,125,125,114,101,116,117,114,110,32,110,125,125,102,117,110,99,116,105,111,110,32,102,117,40,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,116,125,118,97,114,32,104,117,61,34,98,45,97,115,112,101,99,116,34,44,100,117,61,100,99,40,123,97,115,112,101,99,116,58,117,99,40,65,111,44,34,49,58,49,34,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,125,44,78,101,41,44,112,117,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,78,101,44,109,105,120,105,110,115,58,91,119,99,93,44,112,114,111,112,115,58,100,117,44,99,111,109,112,117,116,101,100,58,123,112,97,100,100,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,97,115,112,101,99,116,44,101,61,49,59,105,102,40,89,46,116,101,115,116,40,116,41,41,123,118,97,114,32,110,61,116,46,115,112,108,105,116,40,75,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,97,40,116,41,124,124,49,125,41,41,44,114,61,97,117,40,110,44,50,41,44,105,61,114,91,48,93,44,111,61,114,91,49,93,59,101,61,105,47,111,125,101,108,115,101,32,101,61,81,97,40,116,41,124,124,49,59,114,101,116,117,114,110,34,34,46,99,111,110,99,97,116,40,49,48,48,47,101,117,40,101,41,44,34,37,34,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,34,46,99,111,110,99,97,116,40,104,117,44,34,45,115,105,122,101,114,32,102,108,101,120,45,103,114,111,119,45,49,34,41,44,115,116,121,108,101,58,123,112,97,100,100,105,110,103,66,111,116,116,111,109,58,116,104,105,115,46,112,97,100,100,105,110,103,44,104,101,105,103,104,116,58,48,125,125,41,44,110,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,34,46,99,111,110,99,97,116,40,104,117,44,34,45,99,111,110,116,101,110,116,32,102,108,101,120,45,103,114,111,119,45,49,32,119,45,49,48,48,32,109,119,45,49,48,48,34,41,44,115,116,121,108,101,58,123,109,97,114,103,105,110,76,101,102,116,58,34,45,49,48,48,37,34,125,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,59,114,101,116,117,114,110,32,116,40,116,104,105,115,46,116,97,103,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,34,46,99,111,110,99,97,116,40,104,117,44,34,32,100,45,102,108,101,120,34,41,125,44,91,101,44,110,93,41,125,125,41,44,118,117,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,65,115,112,101,99,116,58,112,117,125,125,41,44,103,117,61,34,97,34,44,109,117,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,37,34,43,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,46,116,111,83,116,114,105,110,103,40,49,54,41,125,44,98,117,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,115,115,40,116,41,41,46,114,101,112,108,97,99,101,40,71,44,109,117,41,46,114,101,112,108,97,99,101,40,87,44,34,44,34,41,125,44,121,117,61,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,44,119,117,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,84,116,40,116,41,41,114,101,116,117,114,110,34,34,59,118,97,114,32,101,61,86,116,40,116,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,116,91,101,93,59,114,101,116,117,114,110,32,98,116,40,110,41,63,34,34,58,121,116,40,110,41,63,98,117,40,101,41,58,67,116,40,110,41,63,110,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,121,116,40,110,41,63,116,46,112,117,115,104,40,98,117,40,101,41,41,58,98,116,40,110,41,124,124,116,46,112,117,115,104,40,98,117,40,101,41,43,34,61,34,43,98,117,40,110,41,41,44,116,125,41,44,91,93,41,46,106,111,105,110,40,34,38,34,41,58,98,117,40,101,41,43,34,61,34,43,98,117,40,110,41,125,41,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,62,48,125,41,41,46,106,111,105,110,40,34,38,34,41,59,114,101,116,117,114,110,32,101,63,34,63,34,46,99,111,110,99,97,116,40,101,41,58,34,34,125,44,95,117,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,123,125,59,114,101,116,117,114,110,32,116,61,115,115,40,116,41,46,116,114,105,109,40,41,46,114,101,112,108,97,99,101,40,113,44,34,34,41,44,116,63,40,116,46,115,112,108,105,116,40,34,38,34,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,114,101,112,108,97,99,101,40,65,44,34,32,34,41,46,115,112,108,105,116,40,34,61,34,41,44,114,61,121,117,40,110,46,115,104,105,102,116,40,41,41,44,105,61,110,46,108,101,110,103,116,104,62,48,63,121,117,40,110,46,106,111,105,110,40,34,61,34,41,41,58,110,117,108,108,59,98,116,40,101,91,114,93,41,63,101,91,114,93,61,105,58,67,116,40,101,91,114,93,41,63,101,91,114,93,46,112,117,115,104,40,105,41,58,101,91,114,93,61,91,101,91,114,93,44,105,93,125,41,41,44,101,41,58,101,125,44,120,117,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,40,33,116,46,104,114,101,102,38,38,33,116,46,116,111,41,125,44,79,117,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,40,33,116,124,124,119,115,40,116,44,34,97,34,41,41,125,44,83,117,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,116,111,44,114,61,116,46,100,105,115,97,98,108,101,100,44,105,61,116,46,114,111,117,116,101,114,67,111,109,112,111,110,101,110,116,78,97,109,101,44,111,61,33,33,101,46,36,114,111,117,116,101,114,59,114,101,116,117,114,110,33,111,124,124,111,38,38,40,114,124,124,33,110,41,63,103,117,58,105,124,124,40,101,46,36,110,117,120,116,63,34,110,117,120,116,45,108,105,110,107,34,58,34,114,111,117,116,101,114,45,108,105,110,107,34,41,125,44,107,117,61,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,123,125,44,101,61,116,46,116,97,114,103,101,116,44,110,61,116,46,114,101,108,59,114,101,116,117,114,110,34,95,98,108,97,110,107,34,61,61,61,101,38,38,121,116,40,110,41,63,34,110,111,111,112,101,110,101,114,34,58,110,124,124,110,117,108,108,125,44,67,117,61,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,123,125,44,101,61,116,46,104,114,101,102,44,110,61,116,46,116,111,44,114,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,103,117,44,105,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,34,35,34,44,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,51,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,34,47,34,59,105,102,40,101,41,114,101,116,117,114,110,32,101,59,105,102,40,79,117,40,114,41,41,114,101,116,117,114,110,32,110,117,108,108,59,105,102,40,79,116,40,110,41,41,114,101,116,117,114,110,32,110,124,124,111,59,105,102,40,84,116,40,110,41,38,38,40,110,46,112,97,116,104,124,124,110,46,113,117,101,114,121,124,124,110,46,104,97,115,104,41,41,123,118,97,114,32,97,61,115,115,40,110,46,112,97,116,104,41,44,115,61,119,117,40,110,46,113,117,101,114,121,41,44,99,61,115,115,40,110,46,104,97,115,104,41,59,114,101,116,117,114,110,32,99,61,99,38,38,34,35,34,33,61,61,99,46,99,104,97,114,65,116,40,48,41,63,34,35,34,46,99,111,110,99,97,116,40,99,41,58,99,44,34,34,46,99,111,110,99,97,116,40,97,41,46,99,111,110,99,97,116,40,115,41,46,99,111,110,99,97,116,40,99,41,124,124,111,125,114,101,116,117,114,110,32,105,125,59,102,117,110,99,116,105,111,110,32,80,117,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,118,97,114,32,84,117,61,123,118,105,101,119,66,111,120,58,34,48,32,48,32,49,54,32,49,54,34,44,119,105,100,116,104,58,34,49,101,109,34,44,104,101,105,103,104,116,58,34,49,101,109,34,44,102,111,99,117,115,97,98,108,101,58,34,102,97,108,115,101,34,44,114,111,108,101,58,34,105,109,103,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,105,99,111,110,34,125,44,106,117,61,123,119,105,100,116,104,58,110,117,108,108,44,104,101,105,103,104,116,58,110,117,108,108,44,102,111,99,117,115,97,98,108,101,58,110,117,108,108,44,114,111,108,101,58,110,117,108,108,44,34,97,114,105,97,45,108,97,98,101,108,34,58,110,117,108,108,125,44,69,117,61,123,97,110,105,109,97,116,105,111,110,58,117,99,40,120,111,41,44,99,111,110,116,101,110,116,58,117,99,40,120,111,41,44,102,108,105,112,72,58,117,99,40,103,111,44,33,49,41,44,102,108,105,112,86,58,117,99,40,103,111,44,33,49,41,44,102,111,110,116,83,99,97,108,101,58,117,99,40,65,111,44,49,41,44,114,111,116,97,116,101,58,117,99,40,65,111,44,48,41,44,115,99,97,108,101,58,117,99,40,65,111,44,49,41,44,115,104,105,102,116,72,58,117,99,40,65,111,44,48,41,44,115,104,105,102,116,86,58,117,99,40,65,111,44,48,41,44,115,116,97,99,107,101,100,58,117,99,40,103,111,44,33,49,41,44,116,105,116,108,101,58,117,99,40,120,111,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,68,117,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,71,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,69,117,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,101,46,100,97,116,97,44,105,61,101,46,112,114,111,112,115,44,111,61,101,46,99,104,105,108,100,114,101,110,44,97,61,105,46,97,110,105,109,97,116,105,111,110,44,115,61,105,46,99,111,110,116,101,110,116,44,99,61,105,46,102,108,105,112,72,44,117,61,105,46,102,108,105,112,86,44,108,61,105,46,115,116,97,99,107,101,100,44,102,61,105,46,116,105,116,108,101,44,104,61,105,46,118,97,114,105,97,110,116,44,100,61,116,117,40,81,97,40,105,46,102,111,110,116,83,99,97,108,101,44,49,41,44,48,41,124,124,49,44,112,61,116,117,40,81,97,40,105,46,115,99,97,108,101,44,49,41,44,48,41,124,124,49,44,118,61,81,97,40,105,46,114,111,116,97,116,101,44,48,41,44,103,61,81,97,40,105,46,115,104,105,102,116,72,44,48,41,44,109,61,81,97,40,105,46,115,104,105,102,116,86,44,48,41,44,98,61,99,124,124,117,124,124,49,33,61,61,112,44,121,61,98,124,124,118,44,119,61,103,124,124,109,44,95,61,33,119,116,40,115,41,44,120,61,91,121,63,34,116,114,97,110,115,108,97,116,101,40,56,32,56,41,34,58,110,117,108,108,44,98,63,34,115,99,97,108,101,40,34,46,99,111,110,99,97,116,40,40,99,63,45,49,58,49,41,42,112,44,34,32,34,41,46,99,111,110,99,97,116,40,40,117,63,45,49,58,49,41,42,112,44,34,41,34,41,58,110,117,108,108,44,118,63,34,114,111,116,97,116,101,40,34,46,99,111,110,99,97,116,40,118,44,34,41,34,41,58,110,117,108,108,44,121,63,34,116,114,97,110,115,108,97,116,101,40,45,56,32,45,56,41,34,58,110,117,108,108,93,46,102,105,108,116,101,114,40,115,101,41,44,79,61,116,40,34,103,34,44,123,97,116,116,114,115,58,123,116,114,97,110,115,102,111,114,109,58,120,46,106,111,105,110,40,34,32,34,41,124,124,110,117,108,108,125,44,100,111,109,80,114,111,112,115,58,95,63,123,105,110,110,101,114,72,84,77,76,58,115,124,124,34,34,125,58,123,125,125,44,111,41,59,119,38,38,40,79,61,116,40,34,103,34,44,123,97,116,116,114,115,58,123,116,114,97,110,115,102,111,114,109,58,34,116,114,97,110,115,108,97,116,101,40,34,46,99,111,110,99,97,116,40,49,54,42,103,47,49,54,44,34,32,34,41,46,99,111,110,99,97,116,40,45,49,54,42,109,47,49,54,44,34,41,34,41,125,125,44,91,79,93,41,41,44,108,38,38,40,79,61,116,40,34,103,34,44,91,79,93,41,41,59,118,97,114,32,83,61,102,63,116,40,34,116,105,116,108,101,34,44,102,41,58,110,117,108,108,44,107,61,91,83,44,79,93,46,102,105,108,116,101,114,40,115,101,41,59,114,101,116,117,114,110,32,116,40,34,115,118,103,34,44,36,101,40,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,105,99,111,110,32,98,105,34,44,99,108,97,115,115,58,40,110,61,123,125,44,80,117,40,110,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,104,41,44,104,41,44,80,117,40,110,44,34,98,45,105,99,111,110,45,97,110,105,109,97,116,105,111,110,45,34,46,99,111,110,99,97,116,40,97,41,44,97,41,44,110,41,44,97,116,116,114,115,58,84,117,44,115,116,121,108,101,58,108,63,123,125,58,123,102,111,110,116,83,105,122,101,58,49,61,61,61,100,63,110,117,108,108,58,34,34,46,99,111,110,99,97,116,40,49,48,48,42,100,44,34,37,34,41,125,125,44,114,44,108,63,123,97,116,116,114,115,58,106,117,125,58,123,125,44,123,97,116,116,114,115,58,123,120,109,108,110,115,58,108,63,110,117,108,108,58,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,102,105,108,108,58,34,99,117,114,114,101,110,116,67,111,108,111,114,34,125,125,41,44,107,41,125,125,41,59,102,117,110,99,116,105,111,110,32,65,117,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,76,117,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,65,117,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,73,117,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,65,117,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,73,117,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,118,97,114,32,77,117,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,115,40,116,41,44,105,61,34,66,73,99,111,110,34,46,99,111,110,99,97,116,40,110,115,40,116,41,41,44,111,61,34,98,105,45,34,46,99,111,110,99,97,116,40,110,41,44,97,61,110,46,114,101,112,108,97,99,101,40,47,45,47,103,44,34,32,34,41,44,115,61,117,115,40,101,124,124,34,34,41,59,114,101,116,117,114,110,32,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,105,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,113,116,40,69,117,44,91,34,99,111,110,116,101,110,116,34,93,41,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,100,97,116,97,44,114,61,101,46,112,114,111,112,115,59,114,101,116,117,114,110,32,116,40,68,117,44,36,101,40,123,112,114,111,112,115,58,123,116,105,116,108,101,58,97,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,97,125,125,44,110,44,123,115,116,97,116,105,99,67,108,97,115,115,58,111,44,112,114,111,112,115,58,76,117,40,76,117,40,123,125,44,114,41,44,123,125,44,123,99,111,110,116,101,110,116,58,115,125,41,125,41,41,125,125,41,125,44,36,117,61,77,117,40,34,66,108,97,110,107,34,44,34,34,41,44,70,117,61,77,117,40,34,67,97,108,101,110,100,97,114,34,44,39,60,112,97,116,104,32,100,61,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,77,49,32,52,118,49,48,97,49,32,49,32,48,32,48,32,48,32,49,32,49,104,49,50,97,49,32,49,32,48,32,48,32,48,32,49,45,49,86,52,72,49,122,34,47,62,39,41,44,82,117,61,77,117,40,34,67,97,108,101,110,100,97,114,70,105,108,108,34,44,39,60,112,97,116,104,32,100,61,34,77,51,46,53,32,48,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,86,49,104,56,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,49,32,48,86,49,104,49,97,50,32,50,32,48,32,48,32,49,32,50,32,50,118,49,49,97,50,32,50,32,48,32,48,32,49,45,50,32,50,72,50,97,50,32,50,32,48,32,48,32,49,45,50,45,50,86,53,104,49,54,86,52,72,48,86,51,97,50,32,50,32,48,32,48,32,49,32,50,45,50,104,49,86,46,53,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,122,34,47,62,39,41,44,78,117,61,77,117,40,34,67,104,101,118,114,111,110,66,97,114,76,101,102,116,34,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,34,101,118,101,110,111,100,100,34,32,100,61,34,77,49,49,46,56,53,52,32,51,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,76,56,46,50,48,55,32,56,108,51,46,54,52,55,32,51,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,52,45,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,52,45,52,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,77,52,46,53,32,49,97,46,53,46,53,32,48,32,48,32,48,45,46,53,46,53,118,49,51,97,46,53,46,53,32,48,32,48,32,48,32,49,32,48,118,45,49,51,97,46,53,46,53,32,48,32,48,32,48,45,46,53,45,46,53,122,34,47,62,39,41,44,66,117,61,77,117,40,34,67,104,101,118,114,111,110,68,111,117,98,108,101,76,101,102,116,34,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,34,101,118,101,110,111,100,100,34,32,100,61,34,77,56,46,51,53,52,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,76,50,46,55,48,55,32,56,108,53,46,54,52,55,32,53,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,34,47,62,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,34,101,118,101,110,111,100,100,34,32,100,61,34,77,49,50,46,51,53,52,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,76,54,46,55,48,55,32,56,108,53,46,54,52,55,32,53,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,34,47,62,39,41,44,122,117,61,77,117,40,34,67,104,101,118,114,111,110,68,111,119,110,34,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,34,101,118,101,110,111,100,100,34,32,100,61,34,77,49,46,54,52,54,32,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,49,48,46,50,57,51,108,53,46,54,52,54,45,53,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,108,45,54,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,32,48,108,45,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,34,47,62,39,41,44,86,117,61,77,117,40,34,67,104,101,118,114,111,110,76,101,102,116,34,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,34,101,118,101,110,111,100,100,34,32,100,61,34,77,49,49,46,51,53,52,32,49,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,48,32,46,55,48,56,76,53,46,55,48,55,32,56,108,53,46,54,52,55,32,53,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,108,45,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,108,54,45,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,122,34,47,62,39,41,44,72,117,61,77,117,40,34,67,104,101,118,114,111,110,85,112,34,44,39,60,112,97,116,104,32,102,105,108,108,45,114,117,108,101,61,34,101,118,101,110,111,100,100,34,32,100,61,34,77,55,46,54,52,54,32,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,108,54,32,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,53,46,55,48,55,108,45,53,46,54,52,54,32,53,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,108,54,45,54,122,34,47,62,39,41,44,85,117,61,77,117,40,34,67,105,114,99,108,101,70,105,108,108,34,44,39,60,99,105,114,99,108,101,32,99,120,61,34,56,34,32,99,121,61,34,56,34,32,114,61,34,56,34,47,62,39,41,44,87,117,61,77,117,40,34,67,108,111,99,107,34,44,39,60,112,97,116,104,32,100,61,34,77,56,32,51,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,57,97,46,53,46,53,32,48,32,48,32,48,32,46,50,53,50,46,52,51,52,108,51,46,53,32,50,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,54,45,46,56,54,56,76,56,32,56,46,55,49,86,51,46,53,122,34,47,62,60,112,97,116,104,32,100,61,34,77,56,32,49,54,65,56,32,56,32,48,32,49,32,48,32,56,32,48,97,56,32,56,32,48,32,48,32,48,32,48,32,49,54,122,109,55,45,56,65,55,32,55,32,48,32,49,32,49,32,49,32,56,97,55,32,55,32,48,32,48,32,49,32,49,52,32,48,122,34,47,62,39,41,44,71,117,61,77,117,40,34,67,108,111,99,107,70,105,108,108,34,44,39,60,112,97,116,104,32,100,61,34,77,49,54,32,56,65,56,32,56,32,48,32,49,32,49,32,48,32,56,97,56,32,56,32,48,32,48,32,49,32,49,54,32,48,122,77,56,32,51,46,53,97,46,53,46,53,32,48,32,48,32,48,45,49,32,48,86,57,97,46,53,46,53,32,48,32,48,32,48,32,46,50,53,50,46,52,51,52,108,51,46,53,32,50,97,46,53,46,53,32,48,32,48,32,48,32,46,52,57,54,45,46,56,54,56,76,56,32,56,46,55,49,86,51,46,53,122,34,47,62,39,41,44,113,117,61,77,117,40,34,68,97,115,104,34,44,39,60,112,97,116,104,32,100,61,34,77,52,32,56,97,46,53,46,53,32,48,32,48,32,49,32,46,53,45,46,53,104,55,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,55,65,46,53,46,53,32,48,32,48,32,49,32,52,32,56,122,34,47,62,39,41,44,89,117,61,77,117,40,34,80,101,114,115,111,110,70,105,108,108,34,44,39,60,112,97,116,104,32,100,61,34,77,51,32,49,52,115,45,49,32,48,45,49,45,49,32,49,45,52,32,54,45,52,32,54,32,51,32,54,32,52,45,49,32,49,45,49,32,49,72,51,122,109,53,45,54,97,51,32,51,32,48,32,49,32,48,32,48,45,54,32,51,32,51,32,48,32,48,32,48,32,48,32,54,122,34,47,62,39,41,44,75,117,61,77,117,40,34,80,108,117,115,34,44,39,60,112,97,116,104,32,100,61,34,77,56,32,52,97,46,53,46,53,32,48,32,48,32,49,32,46,53,46,53,118,51,104,51,97,46,53,46,53,32,48,32,48,32,49,32,48,32,49,104,45,51,118,51,97,46,53,46,53,32,48,32,48,32,49,45,49,32,48,118,45,51,104,45,51,97,46,53,46,53,32,48,32,48,32,49,32,48,45,49,104,51,118,45,51,65,46,53,46,53,32,48,32,48,32,49,32,56,32,52,122,34,47,62,39,41,44,88,117,61,77,117,40,34,83,116,97,114,34,44,39,60,112,97,116,104,32,100,61,34,77,50,46,56,54,54,32,49,52,46,56,53,99,45,46,48,55,56,46,52,52,52,46,51,54,46,55,57,49,46,55,52,54,46,53,57,51,108,52,46,51,57,45,50,46,50,53,54,32,52,46,51,56,57,32,50,46,50,53,54,99,46,51,56,54,46,49,57,56,46,56,50,52,45,46,49,52,57,46,55,52,54,45,46,53,57,50,108,45,46,56,51,45,52,46,55,51,32,51,46,53,50,51,45,51,46,51,53,54,99,46,51,50,57,45,46,51,49,52,46,49,53,56,45,46,56,56,56,45,46,50,56,51,45,46,57,53,108,45,52,46,56,57,56,45,46,54,57,54,76,56,46,52,54,53,46,55,57,50,97,46,53,49,51,46,53,49,51,32,48,32,48,32,48,45,46,57,50,55,32,48,76,53,46,51,53,52,32,53,46,49,50,108,45,52,46,56,57,56,46,54,57,54,99,45,46,52,52,49,46,48,54,50,45,46,54,49,50,46,54,51,54,45,46,50,56,51,46,57,53,108,51,46,53,50,51,32,51,46,51,53,54,45,46,56,51,32,52,46,55,51,122,109,52,46,57,48,53,45,50,46,55,54,55,108,45,51,46,54,56,54,32,49,46,56,57,52,46,54,57,52,45,51,46,57,53,55,97,46,53,54,53,46,53,54,53,32,48,32,48,32,48,45,46,49,54,51,45,46,53,48,53,76,49,46,55,49,32,54,46,55,52,53,108,52,46,48,53,50,45,46,53,55,54,97,46,53,50,53,46,53,50,53,32,48,32,48,32,48,32,46,51,57,51,45,46,50,56,56,108,49,46,56,52,55,45,51,46,54,53,56,32,49,46,56,52,54,32,51,46,54,53,56,97,46,53,50,53,46,53,50,53,32,48,32,48,32,48,32,46,51,57,51,46,50,56,56,108,52,46,48,53,50,46,53,55,53,45,50,46,57,48,54,32,50,46,55,55,97,46,53,54,52,46,53,54,52,32,48,32,48,32,48,45,46,49,54,51,46,53,48,54,108,46,54,57,52,32,51,46,57,53,55,45,51,46,54,56,54,45,49,46,56,57,52,97,46,53,48,51,46,53,48,51,32,48,32,48,32,48,45,46,52,54,49,32,48,122,34,47,62,39,41,44,90,117,61,77,117,40,34,83,116,97,114,70,105,108,108,34,44,39,60,112,97,116,104,32,100,61,34,77,51,46,54,49,50,32,49,53,46,52,52,51,99,45,46,51,56,54,46,49,57,56,45,46,56,50,52,45,46,49,52,57,45,46,55,52,54,45,46,53,57,50,108,46,56,51,45,52,46,55,51,76,46,49,55,51,32,54,46,55,54,53,99,45,46,51,50,57,45,46,51,49,52,45,46,49,53,56,45,46,56,56,56,46,50,56,51,45,46,57,53,108,52,46,56,57,56,45,46,54,57,54,76,55,46,53,51,56,46,55,57,50,99,46,49,57,55,45,46,51,57,46,55,51,45,46,51,57,46,57,50,55,32,48,108,50,46,49,56,52,32,52,46,51,50,55,32,52,46,56,57,56,46,54,57,54,99,46,52,52,49,46,48,54,50,46,54,49,50,46,54,51,54,46,50,56,51,46,57,53,108,45,51,46,53,50,51,32,51,46,51,53,54,46,56,51,32,52,46,55,51,99,46,48,55,56,46,52,52,51,45,46,51,54,46,55,57,45,46,55,52,54,46,53,57,50,76,56,32,49,51,46,49,56,55,108,45,52,46,51,56,57,32,50,46,50,53,54,122,34,47,62,39,41,44,74,117,61,77,117,40,34,83,116,97,114,72,97,108,102,34,44,39,60,112,97,116,104,32,100,61,34,77,53,46,51,53,52,32,53,46,49,49,57,76,55,46,53,51,56,46,55,57,50,65,46,53,49,54,46,53,49,54,32,48,32,48,32,49,32,56,32,46,53,99,46,49,56,51,32,48,32,46,51,54,54,46,48,57,55,46,52,54,53,46,50,57,50,108,50,46,49,56,52,32,52,46,51,50,55,32,52,46,56,57,56,46,54,57,54,65,46,53,51,55,46,53,51,55,32,48,32,48,32,49,32,49,54,32,54,46,51,50,97,46,53,53,46,53,53,32,48,32,48,32,49,45,46,49,55,46,52,52,53,108,45,51,46,53,50,51,32,51,46,51,53,54,46,56,51,32,52,46,55,51,99,46,48,55,56,46,52,52,51,45,46,51,54,46,55,57,45,46,55,52,54,46,53,57,50,76,56,32,49,51,46,49,56,55,108,45,52,46,51,56,57,32,50,46,50,53,54,97,46,53,49,57,46,53,49,57,32,48,32,48,32,49,45,46,49,52,54,46,48,53,99,45,46,51,52,49,46,48,54,45,46,54,54,56,45,46,50,53,52,45,46,54,45,46,54,52,50,108,46,56,51,45,52,46,55,51,76,46,49,55,51,32,54,46,55,54,53,97,46,53,53,46,53,53,32,48,32,48,32,49,45,46,49,55,49,45,46,52,48,51,46,53,57,46,53,57,32,48,32,48,32,49,32,46,48,56,52,45,46,51,48,50,46,53,49,51,46,53,49,51,32,48,32,48,32,49,32,46,51,55,45,46,50,52,53,108,52,46,56,57,56,45,46,54,57,54,122,77,56,32,49,50,46,48,50,55,99,46,48,56,32,48,32,46,49,54,46,48,49,56,46,50,51,50,46,48,53,54,108,51,46,54,56,54,32,49,46,56,57,52,45,46,54,57,52,45,51,46,57,53,55,97,46,53,54,52,46,53,54,52,32,48,32,48,32,49,32,46,49,54,51,45,46,53,48,53,108,50,46,57,48,54,45,50,46,55,55,45,52,46,48,53,50,45,46,53,55,54,97,46,53,50,53,46,53,50,53,32,48,32,48,32,49,45,46,51,57,51,45,46,50,56,56,76,56,46,48,48,50,32,50,46,50,50,51,32,56,32,50,46,50,50,54,118,57,46,56,122,34,47,62,39,41,44,81,117,61,77,117,40,34,88,34,44,39,60,112,97,116,104,32,100,61,34,77,52,46,54,52,54,32,52,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,32,48,76,56,32,55,46,50,57,51,108,50,46,54,52,54,45,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,32,46,55,48,56,46,55,48,56,76,56,46,55,48,55,32,56,108,50,46,54,52,55,32,50,46,54,52,54,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,46,55,48,56,76,56,32,56,46,55,48,55,108,45,50,46,54,52,54,32,50,46,54,52,55,97,46,53,46,53,32,48,32,48,32,49,45,46,55,48,56,45,46,55,48,56,76,55,46,50,57,51,32,56,32,52,46,54,52,54,32,53,46,51,53,52,97,46,53,46,53,32,48,32,48,32,49,32,48,45,46,55,48,56,122,34,47,62,39,41,59,102,117,110,99,116,105,111,110,32,116,108,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,101,108,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,116,108,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,110,108,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,116,108,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,110,108,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,118,97,114,32,114,108,61,102,117,110,99,116,105,111,110,32,116,40,101,44,110,41,123,105,102,40,33,101,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,114,61,40,101,46,36,111,112,116,105,111,110,115,124,124,123,125,41,46,99,111,109,112,111,110,101,110,116,115,44,105,61,114,91,110,93,59,114,101,116,117,114,110,32,105,124,124,116,40,101,46,36,112,97,114,101,110,116,44,110,41,125,44,105,108,61,113,116,40,69,117,44,91,34,99,111,110,116,101,110,116,34,93,41,44,111,108,61,100,99,40,75,116,40,101,108,40,101,108,40,123,125,44,105,108,41,44,123,125,44,123,105,99,111,110,58,117,99,40,120,111,41,125,41,41,44,87,110,41,44,97,108,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,87,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,111,108,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,100,97,116,97,44,114,61,101,46,112,114,111,112,115,44,105,61,101,46,112,97,114,101,110,116,44,111,61,110,115,40,117,115,40,114,46,105,99,111,110,124,124,34,34,41,41,46,114,101,112,108,97,99,101,40,90,44,34,34,41,59,114,101,116,117,114,110,32,116,40,111,38,38,114,108,40,105,44,34,66,73,99,111,110,34,46,99,111,110,99,97,116,40,111,41,41,124,124,36,117,44,36,101,40,110,44,123,112,114,111,112,115,58,102,99,40,105,108,44,114,41,125,41,41,125,125,41,44,115,108,61,56,44,99,108,61,52,54,44,117,108,61,52,48,44,108,108,61,51,53,44,102,108,61,49,51,44,104,108,61,50,55,44,100,108,61,51,54,44,112,108,61,51,55,44,118,108,61,51,52,44,103,108,61,51,51,44,109,108,61,51,57,44,98,108,61,51,50,44,121,108,61,51,56,44,119,108,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,46,108,101,110,103,116,104,33,61,61,101,46,108,101,110,103,116,104,41,114,101,116,117,114,110,33,49,59,102,111,114,40,118,97,114,32,110,61,33,48,44,114,61,48,59,110,38,38,114,60,116,46,108,101,110,103,116,104,59,114,43,43,41,110,61,95,108,40,116,91,114,93,44,101,91,114,93,41,59,114,101,116,117,114,110,32,110,125,44,95,108,61,102,117,110,99,116,105,111,110,32,116,40,101,44,110,41,123,105,102,40,101,61,61,61,110,41,114,101,116,117,114,110,33,48,59,118,97,114,32,114,61,106,116,40,101,41,44,105,61,106,116,40,110,41,59,105,102,40,114,124,124,105,41,114,101,116,117,114,110,33,40,33,114,124,124,33,105,41,38,38,101,46,103,101,116,84,105,109,101,40,41,61,61,61,110,46,103,101,116,84,105,109,101,40,41,59,105,102,40,114,61,67,116,40,101,41,44,105,61,67,116,40,110,41,44,114,124,124,105,41,114,101,116,117,114,110,33,40,33,114,124,124,33,105,41,38,38,119,108,40,101,44,110,41,59,105,102,40,114,61,80,116,40,101,41,44,105,61,80,116,40,110,41,44,114,124,124,105,41,123,105,102,40,33,114,124,124,33,105,41,114,101,116,117,114,110,33,49,59,118,97,114,32,111,61,86,116,40,101,41,46,108,101,110,103,116,104,44,97,61,86,116,40,110,41,46,108,101,110,103,116,104,59,105,102,40,111,33,61,61,97,41,114,101,116,117,114,110,33,49,59,102,111,114,40,118,97,114,32,115,32,105,110,32,101,41,123,118,97,114,32,99,61,72,116,40,101,44,115,41,44,117,61,72,116,40,110,44,115,41,59,105,102,40,99,38,38,33,117,124,124,33,99,38,38,117,124,124,33,116,40,101,91,115,93,44,110,91,115,93,41,41,114,101,116,117,114,110,33,49,125,125,114,101,116,117,114,110,32,83,116,114,105,110,103,40,101,41,61,61,61,83,116,114,105,110,103,40,110,41,125,59,102,117,110,99,116,105,111,110,32,120,108,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,118,97,114,32,79,108,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,116,124,124,48,61,61,61,86,116,40,116,41,46,108,101,110,103,116,104,125,44,83,108,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,104,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,101,44,110,41,123,105,102,40,33,95,108,40,101,44,110,41,41,105,102,40,79,108,40,101,41,124,124,79,108,40,110,41,41,116,104,105,115,91,116,93,61,97,101,40,101,41,59,101,108,115,101,123,102,111,114,40,118,97,114,32,114,32,105,110,32,110,41,72,116,40,101,44,114,41,124,124,116,104,105,115,46,36,100,101,108,101,116,101,40,116,104,105,115,46,36,100,97,116,97,91,116,93,44,114,41,59,102,111,114,40,118,97,114,32,105,32,105,110,32,101,41,116,104,105,115,46,36,115,101,116,40,116,104,105,115,46,36,100,97,116,97,91,116,93,44,105,44,101,91,105,93,41,125,125,125,125,44,107,108,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,120,108,40,123,125,44,101,44,97,101,40,116,104,105,115,91,116,93,41,41,125,44,119,97,116,99,104,58,120,108,40,123,125,44,116,44,83,108,40,101,41,41,125,41,125,44,67,108,61,107,108,40,34,36,97,116,116,114,115,34,44,34,98,118,65,116,116,114,115,34,41,44,80,108,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,101,116,104,111,100,115,58,123,108,105,115,116,101,110,79,110,82,111,111,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,116,104,105,115,46,36,114,111,111,116,46,36,111,110,40,116,44,101,41,44,116,104,105,115,46,36,111,110,40,97,111,44,40,102,117,110,99,116,105,111,110,40,41,123,110,46,36,114,111,111,116,46,36,111,102,102,40,116,44,101,41,125,41,41,125,44,108,105,115,116,101,110,79,110,82,111,111,116,79,110,99,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,116,104,105,115,46,36,114,111,111,116,46,36,111,110,99,101,40,116,44,101,41,44,116,104,105,115,46,36,111,110,40,97,111,44,40,102,117,110,99,116,105,111,110,40,41,123,110,46,36,114,111,111,116,46,36,111,102,102,40,116,44,101,41,125,41,41,125,44,101,109,105,116,79,110,82,111,111,116,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,110,62,49,63,110,45,49,58,48,41,44,105,61,49,59,105,60,110,59,105,43,43,41,114,91,105,45,49,93,61,97,114,103,117,109,101,110,116,115,91,105,93,59,40,101,61,116,104,105,115,46,36,114,111,111,116,41,46,36,101,109,105,116,46,97,112,112,108,121,40,101,44,91,116,93,46,99,111,110,99,97,116,40,114,41,41,125,125,125,41,44,84,108,61,107,108,40,34,36,108,105,115,116,101,110,101,114,115,34,44,34,98,118,76,105,115,116,101,110,101,114,115,34,41,59,102,117,110,99,116,105,111,110,32,106,108,40,116,41,123,114,101,116,117,114,110,32,76,108,40,116,41,124,124,65,108,40,116,41,124,124,68,108,40,116,41,124,124,69,108,40,41,125,102,117,110,99,116,105,111,110,32,69,108,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,34,41,125,102,117,110,99,116,105,111,110,32,68,108,40,116,44,101,41,123,105,102,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,73,108,40,116,44,101,41,59,118,97,114,32,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,41,46,115,108,105,99,101,40,56,44,45,49,41,59,114,101,116,117,114,110,34,79,98,106,101,99,116,34,61,61,61,110,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,116,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,44,34,77,97,112,34,61,61,61,110,124,124,34,83,101,116,34,61,61,61,110,63,65,114,114,97,121,46,102,114,111,109,40,116,41,58,34,65,114,103,117,109,101,110,116,115,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,63,73,108,40,116,44,101,41,58,118,111,105,100,32,48,125,125,102,117,110,99,116,105,111,110,32,65,108,40,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,116,41,125,102,117,110,99,116,105,111,110,32,76,108,40,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,73,108,40,116,41,125,102,117,110,99,116,105,111,110,32,73,108,40,116,44,101,41,123,40,110,117,108,108,61,61,101,124,124,101,62,116,46,108,101,110,103,116,104,41,38,38,40,101,61,116,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,110,60,101,59,110,43,43,41,114,91,110,93,61,116,91,110,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,77,108,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,36,108,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,77,108,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,70,108,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,77,108,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,70,108,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,118,97,114,32,82,108,61,80,99,40,101,114,44,34,99,108,105,99,107,101,100,34,41,44,78,108,61,123,97,99,116,105,118,101,67,108,97,115,115,58,117,99,40,120,111,41,44,97,112,112,101,110,100,58,117,99,40,103,111,44,33,49,41,44,101,118,101,110,116,58,117,99,40,67,111,44,102,105,41,44,101,120,97,99,116,58,117,99,40,103,111,44,33,49,41,44,101,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,58,117,99,40,120,111,41,44,114,101,112,108,97,99,101,58,117,99,40,103,111,44,33,49,41,44,114,111,117,116,101,114,84,97,103,58,117,99,40,120,111,44,34,97,34,41,44,116,111,58,117,99,40,77,111,41,125,44,66,108,61,123,110,111,80,114,101,102,101,116,99,104,58,117,99,40,103,111,44,33,49,41,44,112,114,101,102,101,116,99,104,58,117,99,40,103,111,44,110,117,108,108,41,125,44,122,108,61,100,99,40,75,116,40,36,108,40,36,108,40,36,108,40,123,125,44,66,108,41,44,78,108,41,44,123,125,44,123,97,99,116,105,118,101,58,117,99,40,103,111,44,33,49,41,44,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,104,114,101,102,58,117,99,40,120,111,41,44,114,101,108,58,117,99,40,120,111,44,110,117,108,108,41,44,114,111,117,116,101,114,67,111,109,112,111,110,101,110,116,78,97,109,101,58,117,99,40,120,111,41,44,116,97,114,103,101,116,58,117,99,40,120,111,44,34,95,115,101,108,102,34,41,125,41,41,44,101,114,41,44,86,108,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,101,114,44,109,105,120,105,110,115,58,91,67,108,44,84,108,44,80,108,44,119,99,93,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,122,108,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,84,97,103,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,116,111,44,101,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,110,61,116,104,105,115,46,114,111,117,116,101,114,67,111,109,112,111,110,101,110,116,78,97,109,101,59,114,101,116,117,114,110,32,83,117,40,123,116,111,58,116,44,100,105,115,97,98,108,101,100,58,101,44,114,111,117,116,101,114,67,111,109,112,111,110,101,110,116,78,97,109,101,58,110,125,44,116,104,105,115,41,125,44,105,115,82,111,117,116,101,114,76,105,110,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,117,40,116,104,105,115,46,99,111,109,112,117,116,101,100,84,97,103,41,125,44,99,111,109,112,117,116,101,100,82,101,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,116,97,114,103,101,116,44,101,61,116,104,105,115,46,114,101,108,59,114,101,116,117,114,110,32,107,117,40,123,116,97,114,103,101,116,58,116,44,114,101,108,58,101,125,41,125,44,99,111,109,112,117,116,101,100,72,114,101,102,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,116,111,44,101,61,116,104,105,115,46,104,114,101,102,59,114,101,116,117,114,110,32,67,117,40,123,116,111,58,116,44,104,114,101,102,58,101,125,44,116,104,105,115,46,99,111,109,112,117,116,101,100,84,97,103,41,125,44,99,111,109,112,117,116,101,100,80,114,111,112,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,112,114,101,102,101,116,99,104,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,82,111,117,116,101,114,76,105,110,107,63,36,108,40,36,108,40,123,125,44,102,99,40,36,108,40,36,108,40,123,125,44,78,108,41,44,66,108,41,44,116,104,105,115,41,41,44,123,125,44,123,112,114,101,102,101,116,99,104,58,120,116,40,116,41,63,116,58,118,111,105,100,32,48,44,116,97,103,58,116,104,105,115,46,114,111,117,116,101,114,84,97,103,125,41,58,123,125,125,44,99,111,109,112,117,116,101,100,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,98,118,65,116,116,114,115,44,101,61,116,104,105,115,46,99,111,109,112,117,116,101,100,72,114,101,102,44,110,61,116,104,105,115,46,99,111,109,112,117,116,101,100,82,101,108,44,114,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,105,61,116,104,105,115,46,116,97,114,103,101,116,44,111,61,116,104,105,115,46,114,111,117,116,101,114,84,97,103,44,97,61,116,104,105,115,46,105,115,82,111,117,116,101,114,76,105,110,107,59,114,101,116,117,114,110,32,36,108,40,36,108,40,36,108,40,36,108,40,123,125,44,116,41,44,101,63,123,104,114,101,102,58,101,125,58,123,125,41,44,97,38,38,33,119,115,40,111,44,34,97,34,41,63,123,125,58,123,114,101,108,58,110,44,116,97,114,103,101,116,58,105,125,41,44,123,125,44,123,116,97,98,105,110,100,101,120,58,114,63,34,45,49,34,58,98,116,40,116,46,116,97,98,105,110,100,101,120,41,63,110,117,108,108,58,116,46,116,97,98,105,110,100,101,120,44,34,97,114,105,97,45,100,105,115,97,98,108,101,100,34,58,114,63,34,116,114,117,101,34,58,110,117,108,108,125,41,125,44,99,111,109,112,117,116,101,100,76,105,115,116,101,110,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,108,40,36,108,40,123,125,44,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,41,44,123,125,44,123,99,108,105,99,107,58,116,104,105,115,46,111,110,67,108,105,99,107,125,41,125,125,44,109,101,116,104,111,100,115,58,123,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,44,110,61,69,116,40,116,41,44,114,61,116,104,105,115,46,105,115,82,111,117,116,101,114,76,105,110,107,44,105,61,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,46,99,108,105,99,107,59,110,38,38,116,104,105,115,46,100,105,115,97,98,108,101,100,63,107,99,40,116,44,123,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,58,33,48,125,41,58,40,114,38,38,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,46,95,95,118,117,101,95,95,38,38,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,46,95,95,118,117,101,95,95,46,36,101,109,105,116,40,102,105,44,116,41,44,89,97,40,105,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,95,116,40,116,41,125,41,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,97,112,112,108,121,40,118,111,105,100,32,48,44,106,108,40,101,41,41,125,41,41,44,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,82,108,44,116,41,44,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,34,99,108,105,99,107,101,100,58,58,108,105,110,107,34,44,116,41,41,44,110,38,38,33,114,38,38,34,35,34,61,61,61,116,104,105,115,46,99,111,109,112,117,116,101,100,72,114,101,102,38,38,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,125,44,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,41,123,113,115,40,116,104,105,115,46,36,101,108,41,125,44,98,108,117,114,58,102,117,110,99,116,105,111,110,40,41,123,89,115,40,116,104,105,115,46,36,101,108,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,97,99,116,105,118,101,44,110,61,116,104,105,115,46,100,105,115,97,98,108,101,100,59,114,101,116,117,114,110,32,116,40,116,104,105,115,46,99,111,109,112,117,116,101,100,84,97,103,44,70,108,40,123,99,108,97,115,115,58,123,97,99,116,105,118,101,58,101,44,100,105,115,97,98,108,101,100,58,110,125,44,97,116,116,114,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,112,114,111,112,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,80,114,111,112,115,125,44,116,104,105,115,46,105,115,82,111,117,116,101,114,76,105,110,107,63,34,110,97,116,105,118,101,79,110,34,58,34,111,110,34,44,116,104,105,115,46,99,111,109,112,117,116,101,100,76,105,115,116,101,110,101,114,115,41,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,125,125,41,59,102,117,110,99,116,105,111,110,32,72,108,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,85,108,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,72,108,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,87,108,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,72,108,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,87,108,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,118,97,114,32,71,108,61,113,116,40,122,108,44,91,34,101,118,101,110,116,34,44,34,114,111,117,116,101,114,84,97,103,34,93,41,59,100,101,108,101,116,101,32,71,108,46,104,114,101,102,46,100,101,102,97,117,108,116,44,100,101,108,101,116,101,32,71,108,46,116,111,46,100,101,102,97,117,108,116,59,118,97,114,32,113,108,61,100,99,40,75,116,40,85,108,40,85,108,40,123,125,44,71,108,41,44,123,125,44,123,98,108,111,99,107,58,117,99,40,103,111,44,33,49,41,44,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,112,105,108,108,58,117,99,40,103,111,44,33,49,41,44,112,114,101,115,115,101,100,58,117,99,40,103,111,44,110,117,108,108,41,44,115,105,122,101,58,117,99,40,120,111,41,44,115,113,117,97,114,101,100,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,98,117,116,116,111,110,34,41,44,116,121,112,101,58,117,99,40,120,111,44,34,98,117,116,116,111,110,34,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,44,34,115,101,99,111,110,100,97,114,121,34,41,125,41,41,44,71,101,41,44,89,108,61,102,117,110,99,116,105,111,110,40,116,41,123,34,102,111,99,117,115,105,110,34,61,61,61,116,46,116,121,112,101,63,68,115,40,116,46,116,97,114,103,101,116,44,34,102,111,99,117,115,34,41,58,34,102,111,99,117,115,111,117,116,34,61,61,61,116,46,116,121,112,101,38,38,65,115,40,116,46,116,97,114,103,101,116,44,34,102,111,99,117,115,34,41,125,44,75,108,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,120,117,40,116,41,124,124,119,115,40,116,46,116,97,103,44,34,97,34,41,125,44,88,108,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,120,116,40,116,46,112,114,101,115,115,101,100,41,125,44,90,108,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,40,75,108,40,116,41,124,124,116,46,116,97,103,38,38,33,119,115,40,116,46,116,97,103,44,34,98,117,116,116,111,110,34,41,41,125,44,74,108,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,75,108,40,116,41,38,38,33,90,108,40,116,41,125,44,81,108,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,59,114,101,116,117,114,110,91,34,98,116,110,45,34,46,99,111,110,99,97,116,40,116,46,118,97,114,105,97,110,116,124,124,34,115,101,99,111,110,100,97,114,121,34,41,44,40,101,61,123,125,44,87,108,40,101,44,34,98,116,110,45,34,46,99,111,110,99,97,116,40,116,46,115,105,122,101,41,44,116,46,115,105,122,101,41,44,87,108,40,101,44,34,98,116,110,45,98,108,111,99,107,34,44,116,46,98,108,111,99,107,41,44,87,108,40,101,44,34,114,111,117,110,100,101,100,45,112,105,108,108,34,44,116,46,112,105,108,108,41,44,87,108,40,101,44,34,114,111,117,110,100,101,100,45,48,34,44,116,46,115,113,117,97,114,101,100,38,38,33,116,46,112,105,108,108,41,44,87,108,40,101,44,34,100,105,115,97,98,108,101,100,34,44,116,46,100,105,115,97,98,108,101,100,41,44,87,108,40,101,44,34,97,99,116,105,118,101,34,44,116,46,112,114,101,115,115,101,100,41,44,101,41,93,125,44,116,102,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,75,108,40,116,41,63,102,99,40,71,108,44,116,41,58,123,125,125,44,101,102,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,90,108,40,116,41,44,114,61,75,108,40,116,41,44,105,61,88,108,40,116,41,44,111,61,74,108,40,116,41,44,97,61,114,38,38,34,35,34,61,61,61,116,46,104,114,101,102,44,115,61,101,46,97,116,116,114,115,38,38,101,46,97,116,116,114,115,46,114,111,108,101,63,101,46,97,116,116,114,115,46,114,111,108,101,58,110,117,108,108,44,99,61,101,46,97,116,116,114,115,63,101,46,97,116,116,114,115,46,116,97,98,105,110,100,101,120,58,110,117,108,108,59,114,101,116,117,114,110,40,111,124,124,97,41,38,38,40,99,61,34,48,34,41,44,123,116,121,112,101,58,110,38,38,33,114,63,116,46,116,121,112,101,58,110,117,108,108,44,100,105,115,97,98,108,101,100,58,110,63,116,46,100,105,115,97,98,108,101,100,58,110,117,108,108,44,114,111,108,101,58,111,124,124,97,63,34,98,117,116,116,111,110,34,58,115,44,34,97,114,105,97,45,100,105,115,97,98,108,101,100,34,58,111,63,83,116,114,105,110,103,40,116,46,100,105,115,97,98,108,101,100,41,58,110,117,108,108,44,34,97,114,105,97,45,112,114,101,115,115,101,100,34,58,105,63,83,116,114,105,110,103,40,116,46,112,114,101,115,115,101,100,41,58,110,117,108,108,44,97,117,116,111,99,111,109,112,108,101,116,101,58,105,63,34,111,102,102,34,58,110,117,108,108,44,116,97,98,105,110,100,101,120,58,116,46,100,105,115,97,98,108,101,100,38,38,33,110,63,34,45,49,34,58,99,125,125,44,110,102,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,71,101,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,113,108,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,108,105,115,116,101,110,101,114,115,44,111,61,101,46,99,104,105,108,100,114,101,110,44,97,61,88,108,40,110,41,44,115,61,75,108,40,110,41,44,99,61,74,108,40,110,41,44,117,61,115,38,38,34,35,34,61,61,61,110,46,104,114,101,102,44,108,61,123,107,101,121,100,111,119,110,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,110,46,100,105,115,97,98,108,101,100,38,38,40,99,124,124,117,41,41,123,118,97,114,32,101,61,116,46,107,101,121,67,111,100,101,59,105,102,40,101,61,61,61,98,108,124,124,101,61,61,61,102,108,38,38,99,41,123,118,97,114,32,114,61,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,124,124,116,46,116,97,114,103,101,116,59,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,44,114,46,99,108,105,99,107,40,41,125,125,125,44,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,105,115,97,98,108,101,100,38,38,69,116,40,116,41,63,107,99,40,116,41,58,97,38,38,105,38,38,105,91,34,117,112,100,97,116,101,58,112,114,101,115,115,101,100,34,93,38,38,89,97,40,105,91,34,117,112,100,97,116,101,58,112,114,101,115,115,101,100,34,93,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,95,116,40,116,41,38,38,116,40,33,110,46,112,114,101,115,115,101,100,41,125,41,41,125,125,59,97,38,38,40,108,46,102,111,99,117,115,105,110,61,89,108,44,108,46,102,111,99,117,115,111,117,116,61,89,108,41,59,118,97,114,32,102,61,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,116,110,34,44,99,108,97,115,115,58,81,108,40,110,41,44,112,114,111,112,115,58,116,102,40,110,41,44,97,116,116,114,115,58,101,102,40,110,44,114,41,44,111,110,58,108,125,59,114,101,116,117,114,110,32,116,40,115,63,86,108,58,110,46,116,97,103,44,36,101,40,114,44,102,41,44,111,41,125,125,41,59,102,117,110,99,116,105,111,110,32,114,102,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,111,102,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,114,102,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,97,102,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,114,102,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,97,102,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,118,97,114,32,115,102,61,34,98,45,97,118,97,116,97,114,34,44,99,102,61,91,34,115,109,34,44,110,117,108,108,44,34,108,103,34,93,44,117,102,61,46,52,44,108,102,61,46,55,42,117,102,44,102,102,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,79,116,40,116,41,38,38,107,116,40,116,41,63,81,97,40,116,44,48,41,58,116,44,83,116,40,116,41,63,34,34,46,99,111,110,99,97,116,40,116,44,34,112,120,34,41,58,116,124,124,110,117,108,108,125,44,104,102,61,113,116,40,122,108,44,91,34,97,99,116,105,118,101,34,44,34,101,118,101,110,116,34,44,34,114,111,117,116,101,114,84,97,103,34,93,41,44,100,102,61,100,99,40,75,116,40,111,102,40,111,102,40,123,125,44,104,102,41,44,123,125,44,123,97,108,116,58,117,99,40,120,111,44,34,97,118,97,116,97,114,34,41,44,97,114,105,97,76,97,98,101,108,58,117,99,40,120,111,41,44,98,97,100,103,101,58,117,99,40,106,111,44,33,49,41,44,98,97,100,103,101,76,101,102,116,58,117,99,40,103,111,44,33,49,41,44,98,97,100,103,101,79,102,102,115,101,116,58,117,99,40,120,111,41,44,98,97,100,103,101,84,111,112,58,117,99,40,103,111,44,33,49,41,44,98,97,100,103,101,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,112,114,105,109,97,114,121,34,41,44,98,117,116,116,111,110,58,117,99,40,103,111,44,33,49,41,44,98,117,116,116,111,110,84,121,112,101,58,117,99,40,120,111,44,34,98,117,116,116,111,110,34,41,44,105,99,111,110,58,117,99,40,120,111,41,44,114,111,117,110,100,101,100,58,117,99,40,106,111,44,33,49,41,44,115,105,122,101,58,117,99,40,65,111,41,44,115,113,117,97,114,101,58,117,99,40,103,111,44,33,49,41,44,115,114,99,58,117,99,40,120,111,41,44,116,101,120,116,58,117,99,40,120,111,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,44,34,115,101,99,111,110,100,97,114,121,34,41,125,41,41,44,66,101,41,44,112,102,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,66,101,44,109,105,120,105,110,115,58,91,119,99,93,44,105,110,106,101,99,116,58,123,98,118,65,118,97,116,97,114,71,114,111,117,112,58,123,100,101,102,97,117,108,116,58,110,117,108,108,125,125,44,112,114,111,112,115,58,100,102,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,108,111,99,97,108,83,114,99,58,116,104,105,115,46,115,114,99,124,124,110,117,108,108,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,83,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,98,118,65,118,97,116,97,114,71,114,111,117,112,59,114,101,116,117,114,110,32,102,102,40,116,63,116,46,115,105,122,101,58,116,104,105,115,46,115,105,122,101,41,125,44,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,98,118,65,118,97,116,97,114,71,114,111,117,112,59,114,101,116,117,114,110,32,116,38,38,116,46,118,97,114,105,97,110,116,63,116,46,118,97,114,105,97,110,116,58,116,104,105,115,46,118,97,114,105,97,110,116,125,44,99,111,109,112,117,116,101,100,82,111,117,110,100,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,98,118,65,118,97,116,97,114,71,114,111,117,112,44,101,61,33,40,33,116,124,124,33,116,46,115,113,117,97,114,101,41,124,124,116,104,105,115,46,115,113,117,97,114,101,44,110,61,116,38,38,116,46,114,111,117,110,100,101,100,63,116,46,114,111,117,110,100,101,100,58,116,104,105,115,46,114,111,117,110,100,101,100,59,114,101,116,117,114,110,32,101,63,34,48,34,58,34,34,61,61,61,110,124,124,40,110,124,124,34,99,105,114,99,108,101,34,41,125,44,102,111,110,116,83,116,121,108,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,44,101,61,45,49,61,61,61,99,102,46,105,110,100,101,120,79,102,40,116,41,63,34,99,97,108,99,40,34,46,99,111,110,99,97,116,40,116,44,34,32,42,32,34,41,46,99,111,110,99,97,116,40,117,102,44,34,41,34,41,58,110,117,108,108,59,114,101,116,117,114,110,32,101,63,123,102,111,110,116,83,105,122,101,58,101,125,58,123,125,125,44,109,97,114,103,105,110,83,116,121,108,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,44,101,61,116,104,105,115,46,98,118,65,118,97,116,97,114,71,114,111,117,112,44,110,61,101,63,101,46,111,118,101,114,108,97,112,83,99,97,108,101,58,48,44,114,61,116,38,38,110,63,34,99,97,108,99,40,34,46,99,111,110,99,97,116,40,116,44,34,32,42,32,45,34,41,46,99,111,110,99,97,116,40,110,44,34,41,34,41,58,110,117,108,108,59,114,101,116,117,114,110,32,114,63,123,109,97,114,103,105,110,76,101,102,116,58,114,44,109,97,114,103,105,110,82,105,103,104,116,58,114,125,58,123,125,125,44,98,97,100,103,101,83,116,121,108,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,44,101,61,116,104,105,115,46,98,97,100,103,101,84,111,112,44,110,61,116,104,105,115,46,98,97,100,103,101,76,101,102,116,44,114,61,116,104,105,115,46,98,97,100,103,101,79,102,102,115,101,116,44,105,61,114,124,124,34,48,112,120,34,59,114,101,116,117,114,110,123,102,111,110,116,83,105,122,101,58,45,49,61,61,61,99,102,46,105,110,100,101,120,79,102,40,116,41,63,34,99,97,108,99,40,34,46,99,111,110,99,97,116,40,116,44,34,32,42,32,34,41,46,99,111,110,99,97,116,40,108,102,44,34,32,41,34,41,58,110,117,108,108,44,116,111,112,58,101,63,105,58,110,117,108,108,44,98,111,116,116,111,109,58,101,63,110,117,108,108,58,105,44,108,101,102,116,58,110,63,105,58,110,117,108,108,44,114,105,103,104,116,58,110,63,110,117,108,108,58,105,125,125,125,44,119,97,116,99,104,58,123,115,114,99,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,40,116,104,105,115,46,108,111,99,97,108,83,114,99,61,116,124,124,110,117,108,108,41,125,125,44,109,101,116,104,111,100,115,58,123,111,110,73,109,103,69,114,114,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,108,111,99,97,108,83,114,99,61,110,117,108,108,44,116,104,105,115,46,36,101,109,105,116,40,106,105,44,116,41,125,44,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,101,109,105,116,40,102,105,44,116,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,116,104,105,115,46,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,44,114,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,105,61,116,104,105,115,46,99,111,109,112,117,116,101,100,82,111,117,110,100,101,100,44,111,61,116,104,105,115,46,105,99,111,110,44,97,61,116,104,105,115,46,108,111,99,97,108,83,114,99,44,115,61,116,104,105,115,46,116,101,120,116,44,99,61,116,104,105,115,46,102,111,110,116,83,116,121,108,101,44,117,61,116,104,105,115,46,109,97,114,103,105,110,83,116,121,108,101,44,108,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,44,102,61,116,104,105,115,46,98,117,116,116,111,110,44,104,61,116,104,105,115,46,98,117,116,116,111,110,84,121,112,101,44,100,61,116,104,105,115,46,98,97,100,103,101,44,112,61,116,104,105,115,46,98,97,100,103,101,86,97,114,105,97,110,116,44,118,61,116,104,105,115,46,98,97,100,103,101,83,116,121,108,101,44,103,61,33,102,38,38,120,117,40,116,104,105,115,41,44,109,61,102,63,110,102,58,103,63,86,108,58,34,115,112,97,110,34,44,98,61,116,104,105,115,46,97,108,116,44,121,61,116,104,105,115,46,97,114,105,97,76,97,98,101,108,124,124,110,117,108,108,44,119,61,110,117,108,108,59,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,41,63,119,61,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,97,118,97,116,97,114,45,99,117,115,116,111,109,34,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,58,97,63,40,119,61,116,40,34,105,109,103,34,44,123,115,116,121,108,101,58,110,63,123,125,58,123,119,105,100,116,104,58,34,49,48,48,37,34,44,104,101,105,103,104,116,58,34,49,48,48,37,34,125,44,97,116,116,114,115,58,123,115,114,99,58,97,44,97,108,116,58,98,125,44,111,110,58,123,101,114,114,111,114,58,116,104,105,115,46,111,110,73,109,103,69,114,114,111,114,125,125,41,44,119,61,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,97,118,97,116,97,114,45,105,109,103,34,125,44,91,119,93,41,41,58,119,61,111,63,116,40,97,108,44,123,112,114,111,112,115,58,123,105,99,111,110,58,111,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,104,105,100,100,101,110,34,58,34,116,114,117,101,34,44,97,108,116,58,98,125,125,41,58,115,63,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,97,118,97,116,97,114,45,116,101,120,116,34,44,115,116,121,108,101,58,99,125,44,91,116,40,34,115,112,97,110,34,44,115,41,93,41,58,116,40,89,117,44,123,97,116,116,114,115,58,123,34,97,114,105,97,45,104,105,100,100,101,110,34,58,34,116,114,117,101,34,44,97,108,116,58,98,125,125,41,59,118,97,114,32,95,61,116,40,41,44,120,61,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,78,111,41,59,105,102,40,100,124,124,34,34,61,61,61,100,124,124,120,41,123,118,97,114,32,79,61,33,48,61,61,61,100,63,34,34,58,100,59,95,61,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,97,118,97,116,97,114,45,98,97,100,103,101,34,44,99,108,97,115,115,58,97,102,40,123,125,44,34,98,97,100,103,101,45,34,46,99,111,110,99,97,116,40,112,41,44,112,41,44,115,116,121,108,101,58,118,125,44,91,120,63,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,78,111,41,58,79,93,41,125,118,97,114,32,83,61,123,115,116,97,116,105,99,67,108,97,115,115,58,115,102,44,99,108,97,115,115,58,40,101,61,123,125,44,97,102,40,101,44,34,34,46,99,111,110,99,97,116,40,115,102,44,34,45,34,41,46,99,111,110,99,97,116,40,108,41,44,108,38,38,45,49,33,61,61,99,102,46,105,110,100,101,120,79,102,40,108,41,41,44,97,102,40,101,44,34,98,97,100,103,101,45,34,46,99,111,110,99,97,116,40,110,41,44,33,102,38,38,110,41,44,97,102,40,101,44,34,114,111,117,110,100,101,100,34,44,33,48,61,61,61,105,41,44,97,102,40,101,44,34,114,111,117,110,100,101,100,45,34,46,99,111,110,99,97,116,40,105,41,44,105,38,38,33,48,33,61,61,105,41,44,97,102,40,101,44,34,100,105,115,97,98,108,101,100,34,44,114,41,44,101,41,44,115,116,121,108,101,58,111,102,40,111,102,40,123,125,44,117,41,44,123,125,44,123,119,105,100,116,104,58,108,44,104,101,105,103,104,116,58,108,125,41,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,121,124,124,110,117,108,108,125,44,112,114,111,112,115,58,102,63,123,118,97,114,105,97,110,116,58,110,44,100,105,115,97,98,108,101,100,58,114,44,116,121,112,101,58,104,125,58,103,63,102,99,40,104,102,44,116,104,105,115,41,58,123,125,44,111,110,58,102,124,124,103,63,123,99,108,105,99,107,58,116,104,105,115,46,111,110,67,108,105,99,107,125,58,123,125,125,59,114,101,116,117,114,110,32,116,40,109,44,83,44,91,119,44,95,93,41,125,125,41,44,118,102,61,100,99,40,123,111,118,101,114,108,97,112,58,117,99,40,65,111,44,46,51,41,44,114,111,117,110,100,101,100,58,117,99,40,106,111,44,33,49,41,44,115,105,122,101,58,117,99,40,120,111,41,44,115,113,117,97,114,101,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,122,101,41,44,103,102,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,122,101,44,109,105,120,105,110,115,58,91,119,99,93,44,112,114,111,118,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,98,118,65,118,97,116,97,114,71,114,111,117,112,58,116,104,105,115,125,125,44,112,114,111,112,115,58,118,102,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,83,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,102,40,116,104,105,115,46,115,105,122,101,41,125,44,111,118,101,114,108,97,112,83,99,97,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,99,40,116,117,40,81,97,40,116,104,105,115,46,111,118,101,114,108,97,112,44,48,41,44,48,41,44,49,41,47,50,125,44,112,97,100,100,105,110,103,83,116,121,108,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,59,114,101,116,117,114,110,32,116,61,116,63,34,99,97,108,99,40,34,46,99,111,110,99,97,116,40,116,44,34,32,42,32,34,41,46,99,111,110,99,97,116,40,116,104,105,115,46,111,118,101,114,108,97,112,83,99,97,108,101,44,34,41,34,41,58,110,117,108,108,44,116,63,123,112,97,100,100,105,110,103,76,101,102,116,58,116,44,112,97,100,100,105,110,103,82,105,103,104,116,58,116,125,58,123,125,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,97,118,97,116,97,114,45,103,114,111,117,112,45,105,110,110,101,114,34,44,115,116,121,108,101,58,116,104,105,115,46,112,97,100,100,105,110,103,83,116,121,108,101,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,59,114,101,116,117,114,110,32,116,40,116,104,105,115,46,116,97,103,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,97,118,97,116,97,114,45,103,114,111,117,112,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,103,114,111,117,112,34,125,125,44,91,101,93,41,125,125,41,44,109,102,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,65,118,97,116,97,114,58,112,102,44,66,65,118,97,116,97,114,71,114,111,117,112,58,103,102,125,125,41,59,102,117,110,99,116,105,111,110,32,98,102,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,121,102,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,98,102,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,119,102,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,98,102,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,119,102,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,118,97,114,32,95,102,61,113,116,40,122,108,44,91,34,101,118,101,110,116,34,44,34,114,111,117,116,101,114,84,97,103,34,93,41,59,100,101,108,101,116,101,32,95,102,46,104,114,101,102,46,100,101,102,97,117,108,116,44,100,101,108,101,116,101,32,95,102,46,116,111,46,100,101,102,97,117,108,116,59,118,97,114,32,120,102,61,100,99,40,75,116,40,121,102,40,121,102,40,123,125,44,95,102,41,44,123,125,44,123,112,105,108,108,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,115,112,97,110,34,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,44,34,115,101,99,111,110,100,97,114,121,34,41,125,41,41,44,86,101,41,44,79,102,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,86,101,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,120,102,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,110,46,97,99,116,105,118,101,44,97,61,110,46,100,105,115,97,98,108,101,100,44,115,61,120,117,40,110,41,44,99,61,115,63,86,108,58,110,46,116,97,103,44,117,61,110,46,118,97,114,105,97,110,116,124,124,34,115,101,99,111,110,100,97,114,121,34,59,114,101,116,117,114,110,32,116,40,99,44,36,101,40,114,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,97,100,103,101,34,44,99,108,97,115,115,58,91,34,98,97,100,103,101,45,34,46,99,111,110,99,97,116,40,117,41,44,123,34,98,97,100,103,101,45,112,105,108,108,34,58,110,46,112,105,108,108,44,97,99,116,105,118,101,58,111,44,100,105,115,97,98,108,101,100,58,97,125,93,44,112,114,111,112,115,58,115,63,102,99,40,95,102,44,110,41,58,123,125,125,41,44,105,41,125,125,41,44,83,102,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,66,97,100,103,101,58,79,102,125,125,41,44,107,102,61,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,34,34,59,114,101,116,117,114,110,32,83,116,114,105,110,103,40,116,41,46,114,101,112,108,97,99,101,40,84,44,34,34,41,125,44,67,102,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,63,123,105,110,110,101,114,72,84,77,76,58,116,125,58,101,63,123,116,101,120,116,67,111,110,116,101,110,116,58,101,125,58,123,125,125,59,102,117,110,99,116,105,111,110,32,80,102,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,84,102,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,80,102,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,106,102,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,80,102,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,106,102,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,118,97,114,32,69,102,61,100,99,40,75,116,40,84,102,40,84,102,40,123,125,44,113,116,40,122,108,44,91,34,101,118,101,110,116,34,44,34,114,111,117,116,101,114,84,97,103,34,93,41,41,44,123,125,44,123,97,114,105,97,67,117,114,114,101,110,116,58,117,99,40,120,111,44,34,108,111,99,97,116,105,111,110,34,41,44,104,116,109,108,58,117,99,40,120,111,41,44,116,101,120,116,58,117,99,40,120,111,41,125,41,41,44,87,101,41,44,68,102,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,87,101,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,69,102,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,110,46,97,99,116,105,118,101,44,97,61,111,63,34,115,112,97,110,34,58,86,108,44,115,61,123,97,116,116,114,115,58,123,34,97,114,105,97,45,99,117,114,114,101,110,116,34,58,111,63,110,46,97,114,105,97,67,117,114,114,101,110,116,58,110,117,108,108,125,44,112,114,111,112,115,58,102,99,40,69,102,44,110,41,125,59,114,101,116,117,114,110,32,105,124,124,40,115,46,100,111,109,80,114,111,112,115,61,67,102,40,110,46,104,116,109,108,44,110,46,116,101,120,116,41,41,44,116,40,97,44,36,101,40,114,44,115,41,44,105,41,125,125,41,44,65,102,61,100,99,40,69,102,44,85,101,41,44,76,102,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,85,101,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,65,102,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,34,108,105,34,44,36,101,40,114,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,34,44,99,108,97,115,115,58,123,97,99,116,105,118,101,58,110,46,97,99,116,105,118,101,125,125,41,44,91,116,40,68,102,44,123,112,114,111,112,115,58,110,125,44,105,41,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,73,102,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,77,102,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,73,102,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,36,102,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,73,102,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,36,102,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,118,97,114,32,70,102,61,100,99,40,123,105,116,101,109,115,58,117,99,40,118,111,41,125,44,72,101,41,44,82,102,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,72,101,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,70,102,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,110,46,105,116,101,109,115,44,97,61,105,59,105,102,40,67,116,40,111,41,41,123,118,97,114,32,115,61,33,49,59,97,61,111,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,80,116,40,101,41,124,124,40,101,61,123,116,101,120,116,58,115,115,40,101,41,125,41,59,118,97,114,32,114,61,101,44,105,61,114,46,97,99,116,105,118,101,59,114,101,116,117,114,110,32,105,38,38,40,115,61,33,48,41,44,105,124,124,115,124,124,40,105,61,110,43,49,61,61,61,111,46,108,101,110,103,116,104,41,44,116,40,76,102,44,123,112,114,111,112,115,58,77,102,40,77,102,40,123,125,44,101,41,44,123,125,44,123,97,99,116,105,118,101,58,105,125,41,125,41,125,41,41,125,114,101,116,117,114,110,32,116,40,34,111,108,34,44,36,101,40,114,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,114,101,97,100,99,114,117,109,98,34,125,41,44,97,41,125,125,41,44,78,102,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,66,114,101,97,100,99,114,117,109,98,58,82,102,44,66,66,114,101,97,100,99,114,117,109,98,73,116,101,109,58,76,102,44,66,66,114,101,97,100,99,114,117,109,98,76,105,110,107,58,68,102,125,125,41,44,66,102,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,66,117,116,116,111,110,58,110,102,44,66,66,116,110,58,110,102,44,66,66,117,116,116,111,110,67,108,111,115,101,58,68,99,44,66,66,116,110,67,108,111,115,101,58,68,99,125,125,41,59,102,117,110,99,116,105,111,110,32,122,102,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,86,102,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,122,102,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,72,102,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,122,102,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,72,102,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,118,97,114,32,85,102,61,100,99,40,75,116,40,86,102,40,86,102,40,123,125,44,71,116,40,113,108,44,91,34,115,105,122,101,34,93,41,41,44,123,125,44,123,97,114,105,97,82,111,108,101,58,117,99,40,120,111,44,34,103,114,111,117,112,34,41,44,115,105,122,101,58,117,99,40,120,111,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,44,118,101,114,116,105,99,97,108,58,117,99,40,103,111,44,33,49,41,125,41,41,44,89,101,41,44,87,102,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,89,101,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,85,102,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,110,46,116,97,103,44,36,101,40,114,44,123,99,108,97,115,115,58,72,102,40,123,34,98,116,110,45,103,114,111,117,112,34,58,33,110,46,118,101,114,116,105,99,97,108,44,34,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,34,58,110,46,118,101,114,116,105,99,97,108,125,44,34,98,116,110,45,103,114,111,117,112,45,34,46,99,111,110,99,97,116,40,110,46,115,105,122,101,41,44,110,46,115,105,122,101,41,44,97,116,116,114,115,58,123,114,111,108,101,58,110,46,97,114,105,97,82,111,108,101,125,125,41,44,105,41,125,125,41,44,71,102,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,66,117,116,116,111,110,71,114,111,117,112,58,87,102,44,66,66,116,110,71,114,111,117,112,58,87,102,125,125,41,44,113,102,61,91,34,46,98,116,110,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,105,116,101,109,41,34,44,34,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,34,44,34,115,101,108,101,99,116,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,34,44,39,105,110,112,117,116,91,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,93,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,39,44,39,105,110,112,117,116,91,116,121,112,101,61,34,114,97,100,105,111,34,93,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,39,93,46,106,111,105,110,40,34,44,34,41,44,89,102,61,100,99,40,123,106,117,115,116,105,102,121,58,117,99,40,103,111,44,33,49,41,44,107,101,121,78,97,118,58,117,99,40,103,111,44,33,49,41,125,44,75,101,41,44,75,102,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,75,101,44,109,105,120,105,110,115,58,91,119,99,93,44,112,114,111,112,115,58,89,102,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,107,101,121,78,97,118,38,38,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,125,44,109,101,116,104,111,100,115,58,123,103,101,116,73,116,101,109,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,115,40,113,102,44,116,104,105,115,46,36,101,108,41,59,114,101,116,117,114,110,32,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,116,97,98,73,110,100,101,120,61,45,49,125,41,41,44,116,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,120,115,40,116,41,125,41,41,125,44,102,111,99,117,115,70,105,114,115,116,58,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,73,116,101,109,115,40,41,59,113,115,40,116,91,48,93,41,125,44,102,111,99,117,115,80,114,101,118,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,44,110,61,101,46,105,110,100,101,120,79,102,40,116,46,116,97,114,103,101,116,41,59,110,62,45,49,38,38,40,101,61,101,46,115,108,105,99,101,40,48,44,110,41,46,114,101,118,101,114,115,101,40,41,44,113,115,40,101,91,48,93,41,41,125,44,102,111,99,117,115,78,101,120,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,103,101,116,73,116,101,109,115,40,41,44,110,61,101,46,105,110,100,101,120,79,102,40,116,46,116,97,114,103,101,116,41,59,110,62,45,49,38,38,40,101,61,101,46,115,108,105,99,101,40,110,43,49,41,44,113,115,40,101,91,48,93,41,41,125,44,102,111,99,117,115,76,97,115,116,58,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,73,116,101,109,115,40,41,46,114,101,118,101,114,115,101,40,41,59,113,115,40,116,91,48,93,41,125,44,111,110,70,111,99,117,115,105,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,36,101,108,59,116,46,116,97,114,103,101,116,33,61,61,101,124,124,106,115,40,101,44,116,46,114,101,108,97,116,101,100,84,97,114,103,101,116,41,124,124,40,107,99,40,116,41,44,116,104,105,115,46,102,111,99,117,115,70,105,114,115,116,40,116,41,41,125,44,111,110,75,101,121,100,111,119,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,107,101,121,67,111,100,101,44,110,61,116,46,115,104,105,102,116,75,101,121,59,101,61,61,61,121,108,124,124,101,61,61,61,112,108,63,40,107,99,40,116,41,44,110,63,116,104,105,115,46,102,111,99,117,115,70,105,114,115,116,40,116,41,58,116,104,105,115,46,102,111,99,117,115,80,114,101,118,40,116,41,41,58,101,33,61,61,117,108,38,38,101,33,61,61,109,108,124,124,40,107,99,40,116,41,44,110,63,116,104,105,115,46,102,111,99,117,115,76,97,115,116,40,116,41,58,116,104,105,115,46,102,111,99,117,115,78,101,120,116,40,116,41,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,107,101,121,78,97,118,59,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,116,110,45,116,111,111,108,98,97,114,34,44,99,108,97,115,115,58,123,34,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,34,58,116,104,105,115,46,106,117,115,116,105,102,121,125,44,97,116,116,114,115,58,123,114,111,108,101,58,34,116,111,111,108,98,97,114,34,44,116,97,98,105,110,100,101,120,58,101,63,34,48,34,58,110,117,108,108,125,44,111,110,58,101,63,123,102,111,99,117,115,105,110,58,116,104,105,115,46,111,110,70,111,99,117,115,105,110,44,107,101,121,100,111,119,110,58,116,104,105,115,46,111,110,75,101,121,100,111,119,110,125,58,123,125,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,125,125,41,44,88,102,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,66,117,116,116,111,110,84,111,111,108,98,97,114,58,75,102,44,66,66,116,110,84,111,111,108,98,97,114,58,75,102,125,125,41,44,90,102,61,34,103,114,101,103,111,114,121,34,44,74,102,61,34,108,111,110,103,34,44,81,102,61,34,110,97,114,114,111,119,34,44,116,104,61,34,115,104,111,114,116,34,44,101,104,61,34,50,45,100,105,103,105,116,34,44,110,104,61,34,110,117,109,101,114,105,99,34,59,102,117,110,99,116,105,111,110,32,114,104,40,116,44,101,41,123,114,101,116,117,114,110,32,99,104,40,116,41,124,124,115,104,40,116,44,101,41,124,124,111,104,40,116,44,101,41,124,124,105,104,40,41,125,102,117,110,99,116,105,111,110,32,105,104,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,100,101,115,116,114,117,99,116,117,114,101,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,34,41,125,102,117,110,99,116,105,111,110,32,111,104,40,116,44,101,41,123,105,102,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,97,104,40,116,44,101,41,59,118,97,114,32,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,41,46,115,108,105,99,101,40,56,44,45,49,41,59,114,101,116,117,114,110,34,79,98,106,101,99,116,34,61,61,61,110,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,116,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,44,34,77,97,112,34,61,61,61,110,124,124,34,83,101,116,34,61,61,61,110,63,65,114,114,97,121,46,102,114,111,109,40,116,41,58,34,65,114,103,117,109,101,110,116,115,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,63,97,104,40,116,44,101,41,58,118,111,105,100,32,48,125,125,102,117,110,99,116,105,111,110,32,97,104,40,116,44,101,41,123,40,110,117,108,108,61,61,101,124,124,101,62,116,46,108,101,110,103,116,104,41,38,38,40,101,61,116,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,110,60,101,59,110,43,43,41,114,91,110,93,61,116,91,110,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,115,104,40,116,44,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,41,123,118,97,114,32,110,61,91,93,44,114,61,33,48,44,105,61,33,49,44,111,61,118,111,105,100,32,48,59,116,114,121,123,102,111,114,40,118,97,114,32,97,44,115,61,116,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,59,33,40,114,61,40,97,61,115,46,110,101,120,116,40,41,41,46,100,111,110,101,41,59,114,61,33,48,41,105,102,40,110,46,112,117,115,104,40,97,46,118,97,108,117,101,41,44,101,38,38,110,46,108,101,110,103,116,104,61,61,61,101,41,98,114,101,97,107,125,99,97,116,99,104,40,99,41,123,105,61,33,48,44,111,61,99,125,102,105,110,97,108,108,121,123,116,114,121,123,114,124,124,110,117,108,108,61,61,115,91,34,114,101,116,117,114,110,34,93,124,124,115,91,34,114,101,116,117,114,110,34,93,40,41,125,102,105,110,97,108,108,121,123,105,102,40,105,41,116,104,114,111,119,32,111,125,125,114,101,116,117,114,110,32,110,125,125,102,117,110,99,116,105,111,110,32,99,104,40,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,116,125,102,117,110,99,116,105,111,110,32,117,104,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,117,104,61,108,104,40,41,63,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,91,110,117,108,108,93,59,114,46,112,117,115,104,46,97,112,112,108,121,40,114,44,101,41,59,118,97,114,32,105,61,70,117,110,99,116,105,111,110,46,98,105,110,100,46,97,112,112,108,121,40,116,44,114,41,44,111,61,110,101,119,32,105,59,114,101,116,117,114,110,32,110,38,38,102,104,40,111,44,110,46,112,114,111,116,111,116,121,112,101,41,44,111,125,44,117,104,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,108,104,40,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,82,101,102,108,101,99,116,124,124,33,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,41,114,101,116,117,114,110,33,49,59,105,102,40,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,46,115,104,97,109,41,114,101,116,117,114,110,33,49,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,80,114,111,120,121,41,114,101,116,117,114,110,33,48,59,116,114,121,123,114,101,116,117,114,110,32,68,97,116,101,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,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,40,68,97,116,101,44,91,93,44,40,102,117,110,99,116,105,111,110,40,41,123,125,41,41,41,44,33,48,125,99,97,116,99,104,40,65,101,41,123,114,101,116,117,114,110,33,49,125,125,102,117,110,99,116,105,111,110,32,102,104,40,116,44,101,41,123,114,101,116,117,114,110,32,102,104,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,95,95,112,114,111,116,111,95,95,61,101,44,116,125,44,102,104,40,116,44,101,41,125,118,97,114,32,104,104,44,100,104,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,101,61,110,101,119,32,65,114,114,97,121,40,116,41,44,110,61,48,59,110,60,116,59,110,43,43,41,101,91,110,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,114,101,116,117,114,110,32,117,104,40,68,97,116,101,44,101,41,125,44,112,104,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,79,116,40,116,41,38,38,122,46,116,101,115,116,40,116,46,116,114,105,109,40,41,41,41,123,118,97,114,32,101,61,116,46,115,112,108,105,116,40,86,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,74,97,40,116,44,49,41,125,41,41,44,110,61,114,104,40,101,44,51,41,44,114,61,110,91,48,93,44,105,61,110,91,49,93,44,111,61,110,91,50,93,59,114,101,116,117,114,110,32,100,104,40,114,44,105,45,49,44,111,41,125,114,101,116,117,114,110,32,106,116,40,116,41,63,100,104,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,44,116,46,103,101,116,77,111,110,116,104,40,41,44,116,46,103,101,116,68,97,116,101,40,41,41,58,110,117,108,108,125,44,118,104,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,61,112,104,40,116,41,44,33,116,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,101,61,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,44,110,61,34,48,34,46,99,111,110,99,97,116,40,116,46,103,101,116,77,111,110,116,104,40,41,43,49,41,46,115,108,105,99,101,40,45,50,41,44,114,61,34,48,34,46,99,111,110,99,97,116,40,116,46,103,101,116,68,97,116,101,40,41,41,46,115,108,105,99,101,40,45,50,41,59,114,101,116,117,114,110,34,34,46,99,111,110,99,97,116,40,101,44,34,45,34,41,46,99,111,110,99,97,116,40,110,44,34,45,34,41,46,99,111,110,99,97,116,40,114,41,125,44,103,104,61,102,117,110,99,116,105,111,110,40,116,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,49,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,90,102,59,116,61,89,97,40,116,41,46,102,105,108,116,101,114,40,115,101,41,59,118,97,114,32,110,61,110,101,119,32,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,116,44,123,99,97,108,101,110,100,97,114,58,101,125,41,59,114,101,116,117,114,110,32,110,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,40,41,46,108,111,99,97,108,101,125,44,109,104,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,110,101,119,32,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,116,44,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,109,97,116,125,44,98,104,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,118,104,40,116,41,61,61,61,118,104,40,101,41,125,44,121,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,100,104,40,116,41,44,116,46,115,101,116,68,97,116,101,40,49,41,44,116,125,44,119,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,100,104,40,116,41,44,116,46,115,101,116,77,111,110,116,104,40,116,46,103,101,116,77,111,110,116,104,40,41,43,49,41,44,116,46,115,101,116,68,97,116,101,40,48,41,44,116,125,44,95,104,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,61,100,104,40,116,41,59,118,97,114,32,110,61,116,46,103,101,116,77,111,110,116,104,40,41,59,114,101,116,117,114,110,32,116,46,115,101,116,70,117,108,108,89,101,97,114,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,43,101,41,44,116,46,103,101,116,77,111,110,116,104,40,41,33,61,61,110,38,38,116,46,115,101,116,68,97,116,101,40,48,41,44,116,125,44,120,104,61,102,117,110,99,116,105,111,110,40,116,41,123,116,61,100,104,40,116,41,59,118,97,114,32,101,61,116,46,103,101,116,77,111,110,116,104,40,41,59,114,101,116,117,114,110,32,116,46,115,101,116,77,111,110,116,104,40,101,45,49,41,44,116,46,103,101,116,77,111,110,116,104,40,41,61,61,61,101,38,38,116,46,115,101,116,68,97,116,101,40,48,41,44,116,125,44,79,104,61,102,117,110,99,116,105,111,110,40,116,41,123,116,61,100,104,40,116,41,59,118,97,114,32,101,61,116,46,103,101,116,77,111,110,116,104,40,41,59,114,101,116,117,114,110,32,116,46,115,101,116,77,111,110,116,104,40,101,43,49,41,44,116,46,103,101,116,77,111,110,116,104,40,41,61,61,61,40,101,43,50,41,37,49,50,38,38,116,46,115,101,116,68,97,116,101,40,48,41,44,116,125,44,83,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,95,104,40,116,44,45,49,41,125,44,107,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,95,104,40,116,44,49,41,125,44,67,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,95,104,40,116,44,45,49,48,41,125,44,80,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,95,104,40,116,44,49,48,41,125,44,84,104,61,102,117,110,99,116,105,111,110,40,116,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,49,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,110,117,108,108,44,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,110,117,108,108,59,114,101,116,117,114,110,32,116,61,112,104,40,116,41,44,101,61,112,104,40,101,41,124,124,116,44,110,61,112,104,40,110,41,124,124,116,44,116,63,116,60,101,63,101,58,116,62,110,63,110,58,116,58,110,117,108,108,125,44,106,104,61,91,34,97,114,34,44,34,97,122,34,44,34,99,107,98,34,44,34,102,97,34,44,34,104,101,34,44,34,107,115,34,44,34,108,114,99,34,44,34,109,122,110,34,44,34,112,115,34,44,34,115,100,34,44,34,116,101,34,44,34,117,103,34,44,34,117,114,34,44,34,121,105,34,93,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,41,44,69,104,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,115,115,40,116,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,114,101,112,108,97,99,101,40,74,44,34,34,41,46,115,112,108,105,116,40,34,45,34,41,44,110,61,101,46,115,108,105,99,101,40,48,44,50,41,46,106,111,105,110,40,34,45,34,41,44,114,61,101,91,48,93,59,114,101,116,117,114,110,32,113,97,40,106,104,44,110,41,124,124,113,97,40,106,104,44,114,41,125,44,68,104,61,123,105,100,58,117,99,40,120,111,41,125,44,65,104,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,68,104,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,108,111,99,97,108,73,100,95,58,110,117,108,108,125,125,44,99,111,109,112,117,116,101,100,58,123,115,97,102,101,73,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,105,100,124,124,116,104,105,115,46,108,111,99,97,108,73,100,95,44,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,63,40,101,61,83,116,114,105,110,103,40,101,124,124,34,34,41,46,114,101,112,108,97,99,101,40,47,92,115,43,47,103,44,34,95,34,41,44,101,63,116,43,34,95,34,43,101,58,116,41,58,110,117,108,108,125,59,114,101,116,117,114,110,32,101,125,125,44,109,111,117,110,116,101,100,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,108,111,99,97,108,73,100,95,61,34,95,95,66,86,73,68,95,95,34,46,99,111,110,99,97,116,40,116,91,70,101,93,41,125,41,41,125,125,41,59,102,117,110,99,116,105,111,110,32,76,104,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,73,104,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,76,104,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,77,104,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,76,104,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,77,104,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,118,97,114,32,36,104,61,109,99,40,34,118,97,108,117,101,34,44,123,116,121,112,101,58,69,111,125,41,44,70,104,61,36,104,46,109,105,120,105,110,44,82,104,61,36,104,46,112,114,111,112,115,44,78,104,61,36,104,46,112,114,111,112,44,66,104,61,36,104,46,101,118,101,110,116,44,122,104,61,100,99,40,75,116,40,73,104,40,73,104,40,73,104,40,123,125,44,68,104,41,44,82,104,41,44,123,125,44,123,97,114,105,97,67,111,110,116,114,111,108,115,58,117,99,40,120,111,41,44,98,108,111,99,107,58,117,99,40,103,111,44,33,49,41,44,100,97,116,101,68,105,115,97,98,108,101,100,70,110,58,117,99,40,98,111,41,44,100,97,116,101,70,111,114,109,97,116,79,112,116,105,111,110,115,58,117,99,40,119,111,44,123,121,101,97,114,58,110,104,44,109,111,110,116,104,58,74,102,44,100,97,121,58,110,104,44,119,101,101,107,100,97,121,58,74,102,125,41,44,100,97,116,101,73,110,102,111,70,110,58,117,99,40,98,111,41,44,100,105,114,101,99,116,105,111,110,58,117,99,40,120,111,41,44,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,104,105,100,100,101,110,58,117,99,40,103,111,44,33,49,41,44,104,105,100,101,72,101,97,100,101,114,58,117,99,40,103,111,44,33,49,41,44,105,110,105,116,105,97,108,68,97,116,101,58,117,99,40,69,111,41,44,108,97,98,101,108,67,97,108,101,110,100,97,114,58,117,99,40,120,111,44,34,67,97,108,101,110,100,97,114,34,41,44,108,97,98,101,108,67,117,114,114,101,110,116,77,111,110,116,104,58,117,99,40,120,111,44,34,67,117,114,114,101,110,116,32,109,111,110,116,104,34,41,44,108,97,98,101,108,72,101,108,112,58,117,99,40,120,111,44,34,85,115,101,32,99,117,114,115,111,114,32,107,101,121,115,32,116,111,32,110,97,118,105,103,97,116,101,32,99,97,108,101,110,100,97,114,32,100,97,116,101,115,34,41,44,108,97,98,101,108,78,97,118,58,117,99,40,120,111,44,34,67,97,108,101,110,100,97,114,32,110,97,118,105,103,97,116,105,111,110,34,41,44,108,97,98,101,108,78,101,120,116,68,101,99,97,100,101,58,117,99,40,120,111,44,34,78,101,120,116,32,100,101,99,97,100,101,34,41,44,108,97,98,101,108,78,101,120,116,77,111,110,116,104,58,117,99,40,120,111,44,34,78,101,120,116,32,109,111,110,116,104,34,41,44,108,97,98,101,108,78,101,120,116,89,101,97,114,58,117,99,40,120,111,44,34,78,101,120,116,32,121,101,97,114,34,41,44,108,97,98,101,108,78,111,68,97,116,101,83,101,108,101,99,116,101,100,58,117,99,40,120,111,44,34,78,111,32,100,97,116,101,32,115,101,108,101,99,116,101,100,34,41,44,108,97,98,101,108,80,114,101,118,68,101,99,97,100,101,58,117,99,40,120,111,44,34,80,114,101,118,105,111,117,115,32,100,101,99,97,100,101,34,41,44,108,97,98,101,108,80,114,101,118,77,111,110,116,104,58,117,99,40,120,111,44,34,80,114,101,118,105,111,117,115,32,109,111,110,116,104,34,41,44,108,97,98,101,108,80,114,101,118,89,101,97,114,58,117,99,40,120,111,44,34,80,114,101,118,105,111,117,115,32,121,101,97,114,34,41,44,108,97,98,101,108,83,101,108,101,99,116,101,100,58,117,99,40,120,111,44,34,83,101,108,101,99,116,101,100,32,100,97,116,101,34,41,44,108,97,98,101,108,84,111,100,97,121,58,117,99,40,120,111,44,34,84,111,100,97,121,34,41,44,108,111,99,97,108,101,58,117,99,40,67,111,41,44,109,97,120,58,117,99,40,69,111,41,44,109,105,110,58,117,99,40,69,111,41,44,110,97,118,66,117,116,116,111,110,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,115,101,99,111,110,100,97,114,121,34,41,44,110,111,72,105,103,104,108,105,103,104,116,84,111,100,97,121,58,117,99,40,103,111,44,33,49,41,44,110,111,75,101,121,78,97,118,58,117,99,40,103,111,44,33,49,41,44,114,101,97,100,111,110,108,121,58,117,99,40,103,111,44,33,49,41,44,114,111,108,101,68,101,115,99,114,105,112,116,105,111,110,58,117,99,40,120,111,41,44,115,101,108,101,99,116,101,100,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,112,114,105,109,97,114,121,34,41,44,115,104,111,119,68,101,99,97,100,101,78,97,118,58,117,99,40,103,111,44,33,49,41,44,115,116,97,114,116,87,101,101,107,100,97,121,58,117,99,40,65,111,44,48,41,44,116,111,100,97,121,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,118,97,108,117,101,65,115,68,97,116,101,58,117,99,40,103,111,44,33,49,41,44,119,101,101,107,100,97,121,72,101,97,100,101,114,70,111,114,109,97,116,58,117,99,40,120,111,44,116,104,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,113,97,40,91,74,102,44,116,104,44,81,102,93,44,116,41,125,41,41,44,119,105,100,116,104,58,117,99,40,120,111,44,34,50,55,48,112,120,34,41,125,41,41,44,88,101,41,44,86,104,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,88,101,44,109,105,120,105,110,115,58,91,67,108,44,65,104,44,70,104,44,119,99,93,44,112,114,111,112,115,58,122,104,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,118,104,40,116,104,105,115,91,78,104,93,41,124,124,34,34,59,114,101,116,117,114,110,123,115,101,108,101,99,116,101,100,89,77,68,58,116,44,97,99,116,105,118,101,89,77,68,58,116,124,124,118,104,40,84,104,40,116,104,105,115,46,105,110,105,116,105,97,108,68,97,116,101,124,124,116,104,105,115,46,103,101,116,84,111,100,97,121,40,41,41,44,116,104,105,115,46,109,105,110,44,116,104,105,115,46,109,97,120,41,44,103,114,105,100,72,97,115,70,111,99,117,115,58,33,49,44,105,115,76,105,118,101,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,118,97,108,117,101,73,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,115,97,102,101,73,100,40,41,125,44,119,105,100,103,101,116,73,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,115,97,102,101,73,100,40,34,95,99,97,108,101,110,100,97,114,45,119,114,97,112,112,101,114,95,34,41,125,44,110,97,118,73,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,115,97,102,101,73,100,40,34,95,99,97,108,101,110,100,97,114,45,110,97,118,95,34,41,125,44,103,114,105,100,73,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,115,97,102,101,73,100,40,34,95,99,97,108,101,110,100,97,114,45,103,114,105,100,95,34,41,125,44,103,114,105,100,67,97,112,116,105,111,110,73,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,115,97,102,101,73,100,40,34,95,99,97,108,101,110,100,97,114,45,103,114,105,100,45,99,97,112,116,105,111,110,95,34,41,125,44,103,114,105,100,72,101,108,112,73,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,115,97,102,101,73,100,40,34,95,99,97,108,101,110,100,97,114,45,103,114,105,100,45,104,101,108,112,95,34,41,125,44,97,99,116,105,118,101,73,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,97,99,116,105,118,101,89,77,68,63,116,104,105,115,46,115,97,102,101,73,100,40,34,95,99,101,108,108,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,97,99,116,105,118,101,89,77,68,44,34,95,34,41,41,58,110,117,108,108,125,44,115,101,108,101,99,116,101,100,68,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,104,40,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,41,125,44,97,99,116,105,118,101,68,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,104,40,116,104,105,115,46,97,99,116,105,118,101,89,77,68,41,125,44,99,111,109,112,117,116,101,100,77,105,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,104,40,116,104,105,115,46,109,105,110,41,125,44,99,111,109,112,117,116,101,100,77,97,120,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,104,40,116,104,105,115,46,109,97,120,41,125,44,99,111,109,112,117,116,101,100,87,101,101,107,83,116,97,114,116,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,117,40,74,97,40,116,104,105,115,46,115,116,97,114,116,87,101,101,107,100,97,121,44,48,41,44,48,41,37,55,125,44,99,111,109,112,117,116,101,100,76,111,99,97,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,103,104,40,89,97,40,116,104,105,115,46,108,111,99,97,108,101,41,46,102,105,108,116,101,114,40,115,101,41,44,90,102,41,125,44,99,111,109,112,117,116,101,100,68,97,116,101,68,105,115,97,98,108,101,100,70,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,100,97,116,101,68,105,115,97,98,108,101,100,70,110,59,114,101,116,117,114,110,32,118,99,40,116,41,63,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,125,125,44,99,111,109,112,117,116,101,100,68,97,116,101,73,110,102,111,70,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,100,97,116,101,73,110,102,111,70,110,59,114,101,116,117,114,110,32,118,99,40,116,41,63,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,125,44,99,97,108,101,110,100,97,114,76,111,99,97,108,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,123,99,97,108,101,110,100,97,114,58,90,102,125,41,44,101,61,116,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,40,41,46,99,97,108,101,110,100,97,114,44,110,61,116,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,40,41,46,108,111,99,97,108,101,59,114,101,116,117,114,110,32,101,33,61,61,90,102,38,38,40,110,61,110,46,114,101,112,108,97,99,101,40,47,45,117,45,46,43,36,47,105,44,34,34,41,46,99,111,110,99,97,116,40,34,45,117,45,99,97,45,103,114,101,103,111,114,121,34,41,41,44,110,125,44,99,97,108,101,110,100,97,114,89,101,97,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,46,103,101,116,70,117,108,108,89,101,97,114,40,41,125,44,99,97,108,101,110,100,97,114,77,111,110,116,104,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,46,103,101,116,77,111,110,116,104,40,41,125,44,99,97,108,101,110,100,97,114,70,105,114,115,116,68,97,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,100,104,40,116,104,105,115,46,99,97,108,101,110,100,97,114,89,101,97,114,44,116,104,105,115,46,99,97,108,101,110,100,97,114,77,111,110,116,104,44,49,44,49,50,41,125,44,99,97,108,101,110,100,97,114,68,97,121,115,73,110,77,111,110,116,104,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,100,104,40,116,104,105,115,46,99,97,108,101,110,100,97,114,70,105,114,115,116,68,97,121,41,59,114,101,116,117,114,110,32,116,46,115,101,116,77,111,110,116,104,40,116,46,103,101,116,77,111,110,116,104,40,41,43,49,44,48,41,44,116,46,103,101,116,68,97,116,101,40,41,125,44,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,98,116,110,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,101,108,101,99,116,101,100,86,97,114,105,97,110,116,124,124,34,112,114,105,109,97,114,121,34,41,125,44,99,111,109,112,117,116,101,100,84,111,100,97,121,86,97,114,105,97,110,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,98,116,110,45,111,117,116,108,105,110,101,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,116,111,100,97,121,86,97,114,105,97,110,116,124,124,116,104,105,115,46,115,101,108,101,99,116,101,100,86,97,114,105,97,110,116,124,124,34,112,114,105,109,97,114,121,34,41,125,44,99,111,109,112,117,116,101,100,78,97,118,66,117,116,116,111,110,86,97,114,105,97,110,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,98,116,110,45,111,117,116,108,105,110,101,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,110,97,118,66,117,116,116,111,110,86,97,114,105,97,110,116,124,124,34,112,114,105,109,97,114,121,34,41,125,44,105,115,82,84,76,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,115,115,40,116,104,105,115,46,100,105,114,101,99,116,105,111,110,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,114,116,108,34,61,61,61,116,124,124,34,108,116,114,34,33,61,61,116,38,38,69,104,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,41,125,44,99,111,110,116,101,120,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,44,101,61,116,104,105,115,46,97,99,116,105,118,101,89,77,68,44,110,61,112,104,40,116,41,44,114,61,112,104,40,101,41,59,114,101,116,117,114,110,123,115,101,108,101,99,116,101,100,89,77,68,58,116,44,115,101,108,101,99,116,101,100,68,97,116,101,58,110,44,115,101,108,101,99,116,101,100,70,111,114,109,97,116,116,101,100,58,110,63,116,104,105,115,46,102,111,114,109,97,116,68,97,116,101,83,116,114,105,110,103,40,110,41,58,116,104,105,115,46,108,97,98,101,108,78,111,68,97,116,101,83,101,108,101,99,116,101,100,44,97,99,116,105,118,101,89,77,68,58,101,44,97,99,116,105,118,101,68,97,116,101,58,114,44,97,99,116,105,118,101,70,111,114,109,97,116,116,101,100,58,114,63,116,104,105,115,46,102,111,114,109,97,116,68,97,116,101,83,116,114,105,110,103,40,114,41,58,34,34,44,100,105,115,97,98,108,101,100,58,116,104,105,115,46,100,97,116,101,68,105,115,97,98,108,101,100,40,114,41,44,108,111,99,97,108,101,58,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,99,97,108,101,110,100,97,114,76,111,99,97,108,101,58,116,104,105,115,46,99,97,108,101,110,100,97,114,76,111,99,97,108,101,44,114,116,108,58,116,104,105,115,46,105,115,82,84,76,125,125,44,100,97,116,101,79,117,116,79,102,82,97,110,103,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,44,101,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,112,104,40,110,41,44,116,38,38,110,60,116,124,124,101,38,38,110,62,101,125,125,44,100,97,116,101,68,105,115,97,98,108,101,100,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,100,97,116,101,79,117,116,79,102,82,97,110,103,101,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,110,61,112,104,40,110,41,59,118,97,114,32,114,61,118,104,40,110,41,59,114,101,116,117,114,110,33,40,33,101,40,110,41,38,38,33,116,46,99,111,109,112,117,116,101,100,68,97,116,101,68,105,115,97,98,108,101,100,70,110,40,114,44,110,41,41,125,125,44,102,111,114,109,97,116,68,97,116,101,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,109,104,40,116,104,105,115,46,99,97,108,101,110,100,97,114,76,111,99,97,108,101,44,73,104,40,73,104,40,123,121,101,97,114,58,110,104,44,109,111,110,116,104,58,101,104,44,100,97,121,58,101,104,125,44,116,104,105,115,46,100,97,116,101,70,111,114,109,97,116,79,112,116,105,111,110,115,41,44,123,125,44,123,104,111,117,114,58,118,111,105,100,32,48,44,109,105,110,117,116,101,58,118,111,105,100,32,48,44,115,101,99,111,110,100,58,118,111,105,100,32,48,44,99,97,108,101,110,100,97,114,58,90,102,125,41,41,125,44,102,111,114,109,97,116,89,101,97,114,77,111,110,116,104,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,109,104,40,116,104,105,115,46,99,97,108,101,110,100,97,114,76,111,99,97,108,101,44,123,121,101,97,114,58,110,104,44,109,111,110,116,104,58,74,102,44,99,97,108,101,110,100,97,114,58,90,102,125,41,125,44,102,111,114,109,97,116,87,101,101,107,100,97,121,78,97,109,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,109,104,40,116,104,105,115,46,99,97,108,101,110,100,97,114,76,111,99,97,108,101,44,123,119,101,101,107,100,97,121,58,74,102,44,99,97,108,101,110,100,97,114,58,90,102,125,41,125,44,102,111,114,109,97,116,87,101,101,107,100,97,121,78,97,109,101,83,104,111,114,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,109,104,40,116,104,105,115,46,99,97,108,101,110,100,97,114,76,111,99,97,108,101,44,123,119,101,101,107,100,97,121,58,116,104,105,115,46,119,101,101,107,100,97,121,72,101,97,100,101,114,70,111,114,109,97,116,124,124,116,104,44,99,97,108,101,110,100,97,114,58,90,102,125,41,125,44,102,111,114,109,97,116,68,97,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,91,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,93,44,123,115,116,121,108,101,58,34,100,101,99,105,109,97,108,34,44,109,105,110,105,109,117,109,73,110,116,101,103,101,114,68,105,103,105,116,115,58,49,44,109,105,110,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,48,44,109,97,120,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,48,44,110,111,116,97,116,105,111,110,58,34,115,116,97,110,100,97,114,100,34,125,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,116,46,102,111,114,109,97,116,40,101,46,103,101,116,68,97,116,101,40,41,41,125,125,44,112,114,101,118,68,101,99,97,100,101,68,105,115,97,98,108,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,59,114,101,116,117,114,110,32,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,38,38,119,104,40,67,104,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,60,116,125,44,112,114,101,118,89,101,97,114,68,105,115,97,98,108,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,59,114,101,116,117,114,110,32,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,38,38,119,104,40,83,104,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,60,116,125,44,112,114,101,118,77,111,110,116,104,68,105,115,97,98,108,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,59,114,101,116,117,114,110,32,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,38,38,119,104,40,120,104,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,60,116,125,44,116,104,105,115,77,111,110,116,104,68,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,32,116,104,105,115,46,100,105,115,97,98,108,101,100,125,44,110,101,120,116,77,111,110,116,104,68,105,115,97,98,108,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,59,114,101,116,117,114,110,32,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,38,38,121,104,40,79,104,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,62,116,125,44,110,101,120,116,89,101,97,114,68,105,115,97,98,108,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,59,114,101,116,117,114,110,32,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,38,38,121,104,40,107,104,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,62,116,125,44,110,101,120,116,68,101,99,97,100,101,68,105,115,97,98,108,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,59,114,101,116,117,114,110,32,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,38,38,121,104,40,80,104,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,62,116,125,44,99,97,108,101,110,100,97,114,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,91,93,44,101,61,116,104,105,115,46,99,97,108,101,110,100,97,114,70,105,114,115,116,68,97,121,44,110,61,101,46,103,101,116,70,117,108,108,89,101,97,114,40,41,44,114,61,101,46,103,101,116,77,111,110,116,104,40,41,44,105,61,116,104,105,115,46,99,97,108,101,110,100,97,114,68,97,121,115,73,110,77,111,110,116,104,44,111,61,101,46,103,101,116,68,97,121,40,41,44,97,61,40,116,104,105,115,46,99,111,109,112,117,116,101,100,87,101,101,107,83,116,97,114,116,115,62,111,63,55,58,48,41,45,116,104,105,115,46,99,111,109,112,117,116,101,100,87,101,101,107,83,116,97,114,116,115,44,115,61,48,45,97,45,111,44,99,61,48,59,99,60,54,38,38,115,60,105,59,99,43,43,41,123,116,91,99,93,61,91,93,59,102,111,114,40,118,97,114,32,117,61,48,59,117,60,55,59,117,43,43,41,123,115,43,43,59,118,97,114,32,108,61,100,104,40,110,44,114,44,115,41,44,102,61,108,46,103,101,116,77,111,110,116,104,40,41,44,104,61,118,104,40,108,41,44,100,61,116,104,105,115,46,100,97,116,101,68,105,115,97,98,108,101,100,40,108,41,44,112,61,116,104,105,115,46,99,111,109,112,117,116,101,100,68,97,116,101,73,110,102,111,70,110,40,104,44,112,104,40,104,41,41,59,112,61,79,116,40,112,41,124,124,67,116,40,112,41,63,123,99,108,97,115,115,58,112,125,58,84,116,40,112,41,63,73,104,40,123,99,108,97,115,115,58,34,34,125,44,112,41,58,123,99,108,97,115,115,58,34,34,125,44,116,91,99,93,46,112,117,115,104,40,123,121,109,100,58,104,44,100,97,121,58,116,104,105,115,46,102,111,114,109,97,116,68,97,121,40,108,41,44,108,97,98,101,108,58,116,104,105,115,46,102,111,114,109,97,116,68,97,116,101,83,116,114,105,110,103,40,108,41,44,105,115,84,104,105,115,77,111,110,116,104,58,102,61,61,61,114,44,105,115,68,105,115,97,98,108,101,100,58,100,44,105,110,102,111,58,112,125,41,125,125,114,101,116,117,114,110,32,116,125,44,99,97,108,101,110,100,97,114,72,101,97,100,105,110,103,115,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,116,104,105,115,46,99,97,108,101,110,100,97,114,91,48,93,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,116,101,120,116,58,116,46,102,111,114,109,97,116,87,101,101,107,100,97,121,78,97,109,101,83,104,111,114,116,40,112,104,40,101,46,121,109,100,41,41,44,108,97,98,101,108,58,116,46,102,111,114,109,97,116,87,101,101,107,100,97,121,78,97,109,101,40,112,104,40,101,46,121,109,100,41,41,125,125,41,41,125,125,44,119,97,116,99,104,58,40,104,104,61,123,125,44,77,104,40,104,104,44,78,104,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,118,104,40,116,41,124,124,34,34,44,114,61,118,104,40,101,41,124,124,34,34,59,98,104,40,110,44,114,41,124,124,40,116,104,105,115,46,97,99,116,105,118,101,89,77,68,61,110,124,124,116,104,105,115,46,97,99,116,105,118,101,89,77,68,44,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,61,110,41,125,41,41,44,77,104,40,104,104,44,34,115,101,108,101,99,116,101,100,89,77,68,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,116,104,105,115,46,36,101,109,105,116,40,66,104,44,116,104,105,115,46,118,97,108,117,101,65,115,68,97,116,101,63,112,104,40,116,41,124,124,110,117,108,108,58,116,124,124,34,34,41,125,41,41,44,77,104,40,104,104,44,34,99,111,110,116,101,120,116,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,95,108,40,116,44,101,41,124,124,116,104,105,115,46,36,101,109,105,116,40,100,105,44,116,41,125,41,41,44,77,104,40,104,104,44,34,104,105,100,100,101,110,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,97,99,116,105,118,101,89,77,68,61,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,124,124,118,104,40,116,104,105,115,91,78,104,93,124,124,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,116,104,105,115,46,105,110,105,116,105,97,108,68,97,116,101,124,124,116,104,105,115,46,103,101,116,84,111,100,97,121,40,41,41,41,44,116,104,105,115,46,115,101,116,76,105,118,101,40,33,116,41,125,41,41,44,104,104,41,44,99,114,101,97,116,101,100,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,36,101,109,105,116,40,100,105,44,116,46,99,111,110,116,101,120,116,41,125,41,41,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,76,105,118,101,40,33,48,41,125,44,97,99,116,105,118,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,76,105,118,101,40,33,48,41,125,44,100,101,97,99,116,105,118,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,76,105,118,101,40,33,49,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,76,105,118,101,40,33,49,41,125,44,109,101,116,104,111,100,115,58,123,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,113,115,40,116,104,105,115,46,36,114,101,102,115,46,103,114,105,100,41,125,44,98,108,117,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,89,115,40,116,104,105,115,46,36,114,101,102,115,46,103,114,105,100,41,125,44,115,101,116,76,105,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,116,63,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,105,115,76,105,118,101,61,33,48,125,41,41,125,41,41,58,116,104,105,115,46,105,115,76,105,118,101,61,33,49,125,44,103,101,116,84,111,100,97,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,104,40,100,104,40,41,41,125,44,99,111,110,115,116,114,97,105,110,68,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,84,104,40,116,44,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,44,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,41,125,44,101,109,105,116,83,101,108,101,99,116,101,100,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,36,101,109,105,116,40,88,105,44,118,104,40,116,41,124,124,34,34,44,112,104,40,116,41,124,124,110,117,108,108,41,125,41,41,125,44,115,101,116,71,114,105,100,70,111,99,117,115,70,108,97,103,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,103,114,105,100,72,97,115,70,111,99,117,115,61,33,116,104,105,115,46,100,105,115,97,98,108,101,100,38,38,34,102,111,99,117,115,34,61,61,61,116,46,116,121,112,101,125,44,111,110,75,101,121,100,111,119,110,87,114,97,112,112,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,104,105,115,46,110,111,75,101,121,78,97,118,41,123,118,97,114,32,101,61,116,46,97,108,116,75,101,121,44,110,61,116,46,99,116,114,108,75,101,121,44,114,61,116,46,107,101,121,67,111,100,101,59,105,102,40,113,97,40,91,103,108,44,118,108,44,108,108,44,100,108,44,112,108,44,121,108,44,109,108,44,117,108,93,44,114,41,41,123,107,99,40,116,41,59,118,97,114,32,105,61,100,104,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,44,111,61,100,104,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,44,97,61,105,46,103,101,116,68,97,116,101,40,41,44,115,61,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,116,104,105,115,46,103,101,116,84,111,100,97,121,40,41,41,44,99,61,116,104,105,115,46,105,115,82,84,76,59,114,61,61,61,103,108,63,40,105,61,40,101,63,110,63,67,104,58,83,104,58,120,104,41,40,105,41,44,111,61,100,104,40,105,41,44,111,46,115,101,116,68,97,116,101,40,49,41,41,58,114,61,61,61,118,108,63,40,105,61,40,101,63,110,63,80,104,58,107,104,58,79,104,41,40,105,41,44,111,61,100,104,40,105,41,44,111,46,115,101,116,77,111,110,116,104,40,111,46,103,101,116,77,111,110,116,104,40,41,43,49,41,44,111,46,115,101,116,68,97,116,101,40,48,41,41,58,114,61,61,61,112,108,63,40,105,46,115,101,116,68,97,116,101,40,97,43,40,99,63,49,58,45,49,41,41,44,105,61,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,105,41,44,111,61,105,41,58,114,61,61,61,109,108,63,40,105,46,115,101,116,68,97,116,101,40,97,43,40,99,63,45,49,58,49,41,41,44,105,61,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,105,41,44,111,61,105,41,58,114,61,61,61,121,108,63,40,105,46,115,101,116,68,97,116,101,40,97,45,55,41,44,105,61,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,105,41,44,111,61,105,41,58,114,61,61,61,117,108,63,40,105,46,115,101,116,68,97,116,101,40,97,43,55,41,44,105,61,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,105,41,44,111,61,105,41,58,114,61,61,61,100,108,63,40,105,61,115,44,111,61,105,41,58,114,61,61,61,108,108,38,38,40,105,61,112,104,40,116,104,105,115,46,115,101,108,101,99,116,101,100,68,97,116,101,41,124,124,115,44,111,61,105,41,44,116,104,105,115,46,100,97,116,101,79,117,116,79,102,82,97,110,103,101,40,111,41,124,124,98,104,40,105,44,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,124,124,40,116,104,105,115,46,97,99,116,105,118,101,89,77,68,61,118,104,40,105,41,41,44,116,104,105,115,46,102,111,99,117,115,40,41,125,125,125,44,111,110,75,101,121,100,111,119,110,71,114,105,100,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,107,101,121,67,111,100,101,44,110,61,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,59,101,33,61,61,102,108,38,38,101,33,61,61,98,108,124,124,40,107,99,40,116,41,44,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,104,105,115,46,114,101,97,100,111,110,108,121,124,124,116,104,105,115,46,100,97,116,101,68,105,115,97,98,108,101,100,40,110,41,124,124,40,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,61,118,104,40,110,41,44,116,104,105,115,46,101,109,105,116,83,101,108,101,99,116,101,100,40,110,41,41,44,116,104,105,115,46,102,111,99,117,115,40,41,41,125,44,111,110,67,108,105,99,107,68,97,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,115,101,108,101,99,116,101,100,68,97,116,101,44,110,61,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,44,114,61,112,104,40,116,46,121,109,100,41,59,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,46,105,115,68,105,115,97,98,108,101,100,124,124,116,104,105,115,46,100,97,116,101,68,105,115,97,98,108,101,100,40,114,41,124,124,40,116,104,105,115,46,114,101,97,100,111,110,108,121,124,124,40,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,61,118,104,40,98,104,40,114,44,101,41,63,101,58,114,41,44,116,104,105,115,46,101,109,105,116,83,101,108,101,99,116,101,100,40,114,41,41,44,116,104,105,115,46,97,99,116,105,118,101,89,77,68,61,118,104,40,98,104,40,114,44,110,41,63,110,58,100,104,40,114,41,41,44,116,104,105,115,46,102,111,99,117,115,40,41,41,125,44,103,111,116,111,80,114,101,118,68,101,99,97,100,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,97,99,116,105,118,101,89,77,68,61,118,104,40,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,67,104,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,41,125,44,103,111,116,111,80,114,101,118,89,101,97,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,97,99,116,105,118,101,89,77,68,61,118,104,40,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,83,104,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,41,125,44,103,111,116,111,80,114,101,118,77,111,110,116,104,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,97,99,116,105,118,101,89,77,68,61,118,104,40,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,120,104,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,41,125,44,103,111,116,111,67,117,114,114,101,110,116,77,111,110,116,104,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,97,99,116,105,118,101,89,77,68,61,118,104,40,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,116,104,105,115,46,103,101,116,84,111,100,97,121,40,41,41,41,125,44,103,111,116,111,78,101,120,116,77,111,110,116,104,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,97,99,116,105,118,101,89,77,68,61,118,104,40,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,79,104,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,41,125,44,103,111,116,111,78,101,120,116,89,101,97,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,97,99,116,105,118,101,89,77,68,61,118,104,40,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,107,104,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,41,125,44,103,111,116,111,78,101,120,116,68,101,99,97,100,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,97,99,116,105,118,101,89,77,68,61,118,104,40,116,104,105,115,46,99,111,110,115,116,114,97,105,110,68,97,116,101,40,80,104,40,116,104,105,115,46,97,99,116,105,118,101,68,97,116,101,41,41,41,125,44,111,110,72,101,97,100,101,114,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,40,116,104,105,115,46,97,99,116,105,118,101,89,77,68,61,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,124,124,118,104,40,116,104,105,115,46,103,101,116,84,111,100,97,121,40,41,41,44,116,104,105,115,46,102,111,99,117,115,40,41,41,125,125,44,114,101,110,100,101,114,58,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,104,105,115,46,104,105,100,100,101,110,41,114,101,116,117,114,110,32,116,40,41,59,118,97,114,32,110,61,116,104,105,115,46,118,97,108,117,101,73,100,44,114,61,116,104,105,115,46,119,105,100,103,101,116,73,100,44,105,61,116,104,105,115,46,110,97,118,73,100,44,111,61,116,104,105,115,46,103,114,105,100,73,100,44,97,61,116,104,105,115,46,103,114,105,100,67,97,112,116,105,111,110,73,100,44,115,61,116,104,105,115,46,103,114,105,100,72,101,108,112,73,100,44,99,61,116,104,105,115,46,97,99,116,105,118,101,73,100,44,117,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,108,61,116,104,105,115,46,110,111,75,101,121,78,97,118,44,102,61,116,104,105,115,46,105,115,76,105,118,101,44,104,61,116,104,105,115,46,105,115,82,84,76,44,100,61,116,104,105,115,46,97,99,116,105,118,101,89,77,68,44,112,61,116,104,105,115,46,115,101,108,101,99,116,101,100,89,77,68,44,118,61,116,104,105,115,46,115,97,102,101,73,100,44,103,61,33,116,104,105,115,46,115,104,111,119,68,101,99,97,100,101,78,97,118,44,109,61,118,104,40,116,104,105,115,46,103,101,116,84,111,100,97,121,40,41,41,44,98,61,33,116,104,105,115,46,110,111,72,105,103,104,108,105,103,104,116,84,111,100,97,121,44,121,61,116,40,34,111,117,116,112,117,116,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,111,114,109,45,99,111,110,116,114,111,108,32,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,32,116,101,120,116,45,99,101,110,116,101,114,34,44,99,108,97,115,115,58,123,34,116,101,120,116,45,109,117,116,101,100,34,58,117,44,114,101,97,100,111,110,108,121,58,116,104,105,115,46,114,101,97,100,111,110,108,121,124,124,117,125,44,97,116,116,114,115,58,123,105,100,58,110,44,102,111,114,58,111,44,114,111,108,101,58,34,115,116,97,116,117,115,34,44,116,97,98,105,110,100,101,120,58,117,63,110,117,108,108,58,34,45,49,34,44,34,100,97,116,97,45,115,101,108,101,99,116,101,100,34,58,115,115,40,112,41,44,34,97,114,105,97,45,108,105,118,101,34,58,102,63,34,112,111,108,105,116,101,34,58,34,111,102,102,34,44,34,97,114,105,97,45,97,116,111,109,105,99,34,58,102,63,34,116,114,117,101,34,58,110,117,108,108,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,72,101,97,100,101,114,67,108,105,99,107,44,102,111,99,117,115,58,116,104,105,115,46,111,110,72,101,97,100,101,114,67,108,105,99,107,125,125,44,116,104,105,115,46,115,101,108,101,99,116,101,100,68,97,116,101,63,91,116,40,34,98,100,105,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,115,114,45,111,110,108,121,34,125,44,34,32,40,34,46,99,111,110,99,97,116,40,115,115,40,116,104,105,115,46,108,97,98,101,108,83,101,108,101,99,116,101,100,41,44,34,41,32,34,41,41,44,116,40,34,98,100,105,34,44,116,104,105,115,46,102,111,114,109,97,116,68,97,116,101,83,116,114,105,110,103,40,116,104,105,115,46,115,101,108,101,99,116,101,100,68,97,116,101,41,41,93,58,116,104,105,115,46,108,97,98,101,108,78,111,68,97,116,101,83,101,108,101,99,116,101,100,124,124,34,194,160,34,41,59,121,61,116,40,34,104,101,97,100,101,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,99,97,108,101,110,100,97,114,45,104,101,97,100,101,114,34,44,99,108,97,115,115,58,123,34,115,114,45,111,110,108,121,34,58,116,104,105,115,46,104,105,100,101,72,101,97,100,101,114,125,44,97,116,116,114,115,58,123,116,105,116,108,101,58,116,104,105,115,46,115,101,108,101,99,116,101,100,68,97,116,101,38,38,116,104,105,115,46,108,97,98,101,108,83,101,108,101,99,116,101,100,68,97,116,101,124,124,110,117,108,108,125,125,44,91,121,93,41,59,118,97,114,32,119,61,123,105,115,82,84,76,58,104,125,44,95,61,123,115,104,105,102,116,86,58,46,53,125,44,120,61,73,104,40,73,104,40,123,125,44,95,41,44,123,125,44,123,102,108,105,112,72,58,104,125,41,44,79,61,73,104,40,73,104,40,123,125,44,95,41,44,123,125,44,123,102,108,105,112,72,58,33,104,125,41,44,83,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,83,97,44,119,41,124,124,116,40,78,117,44,123,112,114,111,112,115,58,120,125,41,44,107,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,67,97,44,119,41,124,124,116,40,66,117,44,123,112,114,111,112,115,58,120,125,41,44,67,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,107,97,44,119,41,124,124,116,40,86,117,44,123,112,114,111,112,115,58,120,125,41,44,80,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,80,97,44,119,41,124,124,116,40,85,117,44,123,112,114,111,112,115,58,95,125,41,44,84,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,120,97,44,119,41,124,124,116,40,86,117,44,123,112,114,111,112,115,58,79,125,41,44,106,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,79,97,44,119,41,124,124,116,40,66,117,44,123,112,114,111,112,115,58,79,125,41,44,69,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,95,97,44,119,41,124,124,116,40,78,117,44,123,112,114,111,112,115,58,79,125,41,44,68,61,102,117,110,99,116,105,111,110,40,110,44,114,44,105,44,111,44,97,41,123,114,101,116,117,114,110,32,116,40,34,98,117,116,116,111,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,116,110,32,98,116,110,45,115,109,32,98,111,114,100,101,114,45,48,32,102,108,101,120,45,102,105,108,108,34,44,99,108,97,115,115,58,91,101,46,99,111,109,112,117,116,101,100,78,97,118,66,117,116,116,111,110,86,97,114,105,97,110,116,44,123,100,105,115,97,98,108,101,100,58,111,125,93,44,97,116,116,114,115,58,123,116,105,116,108,101,58,114,124,124,110,117,108,108,44,116,121,112,101,58,34,98,117,116,116,111,110,34,44,116,97,98,105,110,100,101,120,58,108,63,34,45,49,34,58,110,117,108,108,44,34,97,114,105,97,45,108,97,98,101,108,34,58,114,124,124,110,117,108,108,44,34,97,114,105,97,45,100,105,115,97,98,108,101,100,34,58,111,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,107,101,121,115,104,111,114,116,99,117,116,115,34,58,97,124,124,110,117,108,108,125,44,111,110,58,111,63,123,125,58,123,99,108,105,99,107,58,105,125,125,44,91,116,40,34,100,105,118,34,44,123,97,116,116,114,115,58,123,34,97,114,105,97,45,104,105,100,100,101,110,34,58,34,116,114,117,101,34,125,125,44,91,110,93,41,93,41,125,44,65,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,99,97,108,101,110,100,97,114,45,110,97,118,32,100,45,102,108,101,120,34,44,97,116,116,114,115,58,123,105,100,58,105,44,114,111,108,101,58,34,103,114,111,117,112,34,44,116,97,98,105,110,100,101,120,58,108,63,34,45,49,34,58,110,117,108,108,44,34,97,114,105,97,45,104,105,100,100,101,110,34,58,117,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,108,97,98,101,108,34,58,116,104,105,115,46,108,97,98,101,108,78,97,118,124,124,110,117,108,108,44,34,97,114,105,97,45,99,111,110,116,114,111,108,115,34,58,111,125,125,44,91,103,63,116,40,41,58,68,40,83,44,116,104,105,115,46,108,97,98,101,108,80,114,101,118,68,101,99,97,100,101,44,116,104,105,115,46,103,111,116,111,80,114,101,118,68,101,99,97,100,101,44,116,104,105,115,46,112,114,101,118,68,101,99,97,100,101,68,105,115,97,98,108,101,100,44,34,67,116,114,108,43,65,108,116,43,80,97,103,101,68,111,119,110,34,41,44,68,40,107,44,116,104,105,115,46,108,97,98,101,108,80,114,101,118,89,101,97,114,44,116,104,105,115,46,103,111,116,111,80,114,101,118,89,101,97,114,44,116,104,105,115,46,112,114,101,118,89,101,97,114,68,105,115,97,98,108,101,100,44,34,65,108,116,43,80,97,103,101,68,111,119,110,34,41,44,68,40,67,44,116,104,105,115,46,108,97,98,101,108,80,114,101,118,77,111,110,116,104,44,116,104,105,115,46,103,111,116,111,80,114,101,118,77,111,110,116,104,44,116,104,105,115,46,112,114,101,118,77,111,110,116,104,68,105,115,97,98,108,101,100,44,34,80,97,103,101,68,111,119,110,34,41,44,68,40,80,44,116,104,105,115,46,108,97,98,101,108,67,117,114,114,101,110,116,77,111,110,116,104,44,116,104,105,115,46,103,111,116,111,67,117,114,114,101,110,116,77,111,110,116,104,44,116,104,105,115,46,116,104,105,115,77,111,110,116,104,68,105,115,97,98,108,101,100,44,34,72,111,109,101,34,41,44,68,40,84,44,116,104,105,115,46,108,97,98,101,108,78,101,120,116,77,111,110,116,104,44,116,104,105,115,46,103,111,116,111,78,101,120,116,77,111,110,116,104,44,116,104,105,115,46,110,101,120,116,77,111,110,116,104,68,105,115,97,98,108,101,100,44,34,80,97,103,101,85,112,34,41,44,68,40,106,44,116,104,105,115,46,108,97,98,101,108,78,101,120,116,89,101,97,114,44,116,104,105,115,46,103,111,116,111,78,101,120,116,89,101,97,114,44,116,104,105,115,46,110,101,120,116,89,101,97,114,68,105,115,97,98,108,101,100,44,34,65,108,116,43,80,97,103,101,85,112,34,41,44,103,63,116,40,41,58,68,40,69,44,116,104,105,115,46,108,97,98,101,108,78,101,120,116,68,101,99,97,100,101,44,116,104,105,115,46,103,111,116,111,78,101,120,116,68,101,99,97,100,101,44,116,104,105,115,46,110,101,120,116,68,101,99,97,100,101,68,105,115,97,98,108,101,100,44,34,67,116,114,108,43,65,108,116,43,80,97,103,101,85,112,34,41,93,41,44,76,61,116,40,34,104,101,97,100,101,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,45,99,97,112,116,105,111,110,32,116,101,120,116,45,99,101,110,116,101,114,32,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,34,44,99,108,97,115,115,58,123,34,116,101,120,116,45,109,117,116,101,100,34,58,117,125,44,97,116,116,114,115,58,123,105,100,58,97,44,34,97,114,105,97,45,108,105,118,101,34,58,102,63,34,112,111,108,105,116,101,34,58,110,117,108,108,44,34,97,114,105,97,45,97,116,111,109,105,99,34,58,102,63,34,116,114,117,101,34,58,110,117,108,108,125,44,107,101,121,58,34,103,114,105,100,45,99,97,112,116,105,111,110,34,125,44,116,104,105,115,46,102,111,114,109,97,116,89,101,97,114,77,111,110,116,104,40,116,104,105,115,46,99,97,108,101,110,100,97,114,70,105,114,115,116,68,97,121,41,41,44,73,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,45,119,101,101,107,100,97,121,115,32,114,111,119,32,110,111,45,103,117,116,116,101,114,115,32,98,111,114,100,101,114,45,98,111,116,116,111,109,34,44,97,116,116,114,115,58,123,34,97,114,105,97,45,104,105,100,100,101,110,34,58,34,116,114,117,101,34,125,125,44,116,104,105,115,46,99,97,108,101,110,100,97,114,72,101,97,100,105,110,103,115,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,116,40,34,115,109,97,108,108,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,111,108,32,116,101,120,116,45,116,114,117,110,99,97,116,101,34,44,99,108,97,115,115,58,123,34,116,101,120,116,45,109,117,116,101,100,34,58,117,125,44,97,116,116,114,115,58,123,116,105,116,108,101,58,101,46,108,97,98,101,108,61,61,61,101,46,116,101,120,116,63,110,117,108,108,58,101,46,108,97,98,101,108,44,34,97,114,105,97,45,108,97,98,101,108,34,58,101,46,108,97,98,101,108,125,44,107,101,121,58,110,125,44,101,46,116,101,120,116,41,125,41,41,41,44,77,61,116,104,105,115,46,99,97,108,101,110,100,97,114,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,110,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,105,44,111,61,110,46,121,109,100,61,61,61,112,44,97,61,110,46,121,109,100,61,61,61,100,44,115,61,110,46,121,109,100,61,61,61,109,44,99,61,118,40,34,95,99,101,108,108,45,34,46,99,111,110,99,97,116,40,110,46,121,109,100,44,34,95,34,41,41,44,108,61,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,116,110,32,98,111,114,100,101,114,45,48,32,114,111,117,110,100,101,100,45,99,105,114,99,108,101,32,116,101,120,116,45,110,111,119,114,97,112,34,44,99,108,97,115,115,58,40,105,61,123,102,111,99,117,115,58,97,38,38,101,46,103,114,105,100,72,97,115,70,111,99,117,115,44,100,105,115,97,98,108,101,100,58,110,46,105,115,68,105,115,97,98,108,101,100,124,124,117,44,97,99,116,105,118,101,58,111,125,44,77,104,40,105,44,101,46,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,44,111,41,44,77,104,40,105,44,101,46,99,111,109,112,117,116,101,100,84,111,100,97,121,86,97,114,105,97,110,116,44,115,38,38,98,38,38,33,111,38,38,110,46,105,115,84,104,105,115,77,111,110,116,104,41,44,77,104,40,105,44,34,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,34,44,33,40,115,38,38,98,41,38,38,33,111,38,38,33,97,41,44,77,104,40,105,44,34,98,116,110,45,108,105,103,104,116,34,44,33,40,115,38,38,98,41,38,38,33,111,38,38,97,41,44,77,104,40,105,44,34,116,101,120,116,45,109,117,116,101,100,34,44,33,110,46,105,115,84,104,105,115,77,111,110,116,104,38,38,33,111,41,44,77,104,40,105,44,34,116,101,120,116,45,100,97,114,107,34,44,33,40,115,38,38,98,41,38,38,33,111,38,38,33,97,38,38,110,46,105,115,84,104,105,115,77,111,110,116,104,41,44,77,104,40,105,44,34,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,34,44,40,111,124,124,110,46,105,115,84,104,105,115,77,111,110,116,104,41,38,38,33,110,46,105,115,68,105,115,97,98,108,101,100,41,44,105,41,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,111,110,67,108,105,99,107,68,97,121,40,110,41,125,125,125,44,110,46,100,97,121,41,59,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,111,108,32,112,45,48,34,44,99,108,97,115,115,58,110,46,105,115,68,105,115,97,98,108,101,100,63,34,98,103,45,108,105,103,104,116,34,58,110,46,105,110,102,111,46,99,108,97,115,115,124,124,34,34,44,97,116,116,114,115,58,123,105,100,58,99,44,114,111,108,101,58,34,98,117,116,116,111,110,34,44,34,100,97,116,97,45,100,97,116,101,34,58,110,46,121,109,100,44,34,97,114,105,97,45,104,105,100,100,101,110,34,58,110,46,105,115,84,104,105,115,77,111,110,116,104,63,110,117,108,108,58,34,116,114,117,101,34,44,34,97,114,105,97,45,100,105,115,97,98,108,101,100,34,58,110,46,105,115,68,105,115,97,98,108,101,100,124,124,117,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,108,97,98,101,108,34,58,91,110,46,108,97,98,101,108,44,111,63,34,40,34,46,99,111,110,99,97,116,40,101,46,108,97,98,101,108,83,101,108,101,99,116,101,100,44,34,41,34,41,58,110,117,108,108,44,115,63,34,40,34,46,99,111,110,99,97,116,40,101,46,108,97,98,101,108,84,111,100,97,121,44,34,41,34,41,58,110,117,108,108,93,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,32,34,41,44,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,58,111,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,99,117,114,114,101,110,116,34,58,111,63,34,100,97,116,101,34,58,110,117,108,108,125,44,107,101,121,58,114,125,44,91,108,93,41,125,41,41,59,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,114,111,119,32,110,111,45,103,117,116,116,101,114,115,34,44,107,101,121,58,110,91,48,93,46,121,109,100,125,44,114,41,125,41,41,59,77,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,45,98,111,100,121,34,44,115,116,121,108,101,58,117,63,123,112,111,105,110,116,101,114,69,118,101,110,116,115,58,34,110,111,110,101,34,125,58,123,125,125,44,77,41,59,118,97,114,32,36,61,116,40,34,102,111,111,116,101,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,45,104,101,108,112,32,98,111,114,100,101,114,45,116,111,112,32,115,109,97,108,108,32,116,101,120,116,45,109,117,116,101,100,32,116,101,120,116,45,99,101,110,116,101,114,32,98,103,45,108,105,103,104,116,34,44,97,116,116,114,115,58,123,105,100,58,115,125,125,44,91,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,115,109,97,108,108,34,125,44,116,104,105,115,46,108,97,98,101,108,72,101,108,112,41,93,41,44,70,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,99,97,108,101,110,100,97,114,45,103,114,105,100,32,102,111,114,109,45,99,111,110,116,114,111,108,32,104,45,97,117,116,111,32,116,101,120,116,45,99,101,110,116,101,114,34,44,97,116,116,114,115,58,123,105,100,58,111,44,114,111,108,101,58,34,97,112,112,108,105,99,97,116,105,111,110,34,44,116,97,98,105,110,100,101,120,58,108,63,34,45,49,34,58,117,63,110,117,108,108,58,34,48,34,44,34,100,97,116,97,45,109,111,110,116,104,34,58,100,46,115,108,105,99,101,40,48,44,45,51,41,44,34,97,114,105,97,45,114,111,108,101,100,101,115,99,114,105,112,116,105,111,110,34,58,116,104,105,115,46,108,97,98,101,108,67,97,108,101,110,100,97,114,124,124,110,117,108,108,44,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,58,97,44,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,58,115,44,34,97,114,105,97,45,100,105,115,97,98,108,101,100,34,58,117,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,97,99,116,105,118,101,100,101,115,99,101,110,100,97,110,116,34,58,99,125,44,111,110,58,123,107,101,121,100,111,119,110,58,116,104,105,115,46,111,110,75,101,121,100,111,119,110,71,114,105,100,44,102,111,99,117,115,58,116,104,105,115,46,115,101,116,71,114,105,100,70,111,99,117,115,70,108,97,103,44,98,108,117,114,58,116,104,105,115,46,115,101,116,71,114,105,100,70,111,99,117,115,70,108,97,103,125,44,114,101,102,58,34,103,114,105,100,34,125,44,91,76,44,73,44,77,44,36,93,41,44,82,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,59,82,61,82,63,116,40,34,102,111,111,116,101,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,99,97,108,101,110,100,97,114,45,102,111,111,116,101,114,34,125,44,82,41,58,116,40,41,59,118,97,114,32,78,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,99,97,108,101,110,100,97,114,45,105,110,110,101,114,34,44,115,116,121,108,101,58,116,104,105,115,46,98,108,111,99,107,63,123,125,58,123,119,105,100,116,104,58,116,104,105,115,46,119,105,100,116,104,125,44,97,116,116,114,115,58,123,105,100,58,114,44,100,105,114,58,104,63,34,114,116,108,34,58,34,108,116,114,34,44,108,97,110,103,58,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,124,124,110,117,108,108,44,114,111,108,101,58,34,103,114,111,117,112,34,44,34,97,114,105,97,45,100,105,115,97,98,108,101,100,34,58,117,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,99,111,110,116,114,111,108,115,34,58,116,104,105,115,46,97,114,105,97,67,111,110,116,114,111,108,115,124,124,110,117,108,108,44,34,97,114,105,97,45,114,111,108,101,100,101,115,99,114,105,112,116,105,111,110,34,58,116,104,105,115,46,114,111,108,101,68,101,115,99,114,105,112,116,105,111,110,124,124,110,117,108,108,44,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,58,91,116,104,105,115,46,98,118,65,116,116,114,115,91,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,93,44,110,44,115,93,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,32,34,41,125,44,111,110,58,123,107,101,121,100,111,119,110,58,116,104,105,115,46,111,110,75,101,121,100,111,119,110,87,114,97,112,112,101,114,125,125,44,91,121,44,65,44,70,44,82,93,41,59,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,99,97,108,101,110,100,97,114,34,44,99,108,97,115,115,58,123,34,100,45,98,108,111,99,107,34,58,116,104,105,115,46,98,108,111,99,107,125,125,44,91,78,93,41,125,125,41,44,72,104,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,67,97,108,101,110,100,97,114,58,86,104,125,125,41,44,85,104,61,100,99,40,123,98,103,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,98,111,114,100,101,114,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,44,116,101,120,116,86,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,90,101,41,44,87,104,61,40,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,85,104,125,41,44,100,99,40,123,116,105,116,108,101,58,117,99,40,120,111,41,44,116,105,116,108,101,84,97,103,58,117,99,40,120,111,44,34,104,52,34,41,125,44,115,110,41,41,44,71,104,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,115,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,87,104,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,110,46,116,105,116,108,101,84,97,103,44,36,101,40,114,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,100,45,116,105,116,108,101,34,125,41,44,105,124,124,115,115,40,110,46,116,105,116,108,101,41,41,125,125,41,44,113,104,61,100,99,40,123,115,117,98,84,105,116,108,101,58,117,99,40,120,111,41,44,115,117,98,84,105,116,108,101,84,97,103,58,117,99,40,120,111,44,34,104,54,34,41,44,115,117,98,84,105,116,108,101,84,101,120,116,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,109,117,116,101,100,34,41,125,44,111,110,41,44,89,104,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,111,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,113,104,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,110,46,115,117,98,84,105,116,108,101,84,97,103,44,36,101,40,114,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,100,45,115,117,98,116,105,116,108,101,34,44,99,108,97,115,115,58,91,110,46,115,117,98,84,105,116,108,101,84,101,120,116,86,97,114,105,97,110,116,63,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,110,46,115,117,98,84,105,116,108,101,84,101,120,116,86,97,114,105,97,110,116,41,58,110,117,108,108,93,125,41,44,105,124,124,115,115,40,110,46,115,117,98,84,105,116,108,101,41,41,125,125,41,59,102,117,110,99,116,105,111,110,32,75,104,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,88,104,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,75,104,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,90,104,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,75,104,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,90,104,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,118,97,114,32,74,104,61,100,99,40,75,116,40,88,104,40,88,104,40,88,104,40,88,104,40,123,125,44,87,104,41,44,113,104,41,44,108,99,40,85,104,44,97,99,46,98,105,110,100,40,110,117,108,108,44,34,98,111,100,121,34,41,41,41,44,123,125,44,123,98,111,100,121,67,108,97,115,115,58,117,99,40,107,111,41,44,111,118,101,114,108,97,121,58,117,99,40,103,111,44,33,49,41,125,41,41,44,74,101,41,44,81,104,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,74,101,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,74,104,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,101,46,112,114,111,112,115,44,105,61,101,46,100,97,116,97,44,111,61,101,46,99,104,105,108,100,114,101,110,44,97,61,114,46,98,111,100,121,66,103,86,97,114,105,97,110,116,44,115,61,114,46,98,111,100,121,66,111,114,100,101,114,86,97,114,105,97,110,116,44,99,61,114,46,98,111,100,121,84,101,120,116,86,97,114,105,97,110,116,44,117,61,116,40,41,59,114,46,116,105,116,108,101,38,38,40,117,61,116,40,71,104,44,123,112,114,111,112,115,58,102,99,40,87,104,44,114,41,125,41,41,59,118,97,114,32,108,61,116,40,41,59,114,101,116,117,114,110,32,114,46,115,117,98,84,105,116,108,101,38,38,40,108,61,116,40,89,104,44,123,112,114,111,112,115,58,102,99,40,113,104,44,114,41,44,99,108,97,115,115,58,91,34,109,98,45,50,34,93,125,41,41,44,116,40,114,46,98,111,100,121,84,97,103,44,36,101,40,105,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,100,45,98,111,100,121,34,44,99,108,97,115,115,58,91,40,110,61,123,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,34,58,114,46,111,118,101,114,108,97,121,125,44,90,104,40,110,44,34,98,103,45,34,46,99,111,110,99,97,116,40,97,41,44,97,41,44,90,104,40,110,44,34,98,111,114,100,101,114,45,34,46,99,111,110,99,97,116,40,115,41,44,115,41,44,90,104,40,110,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,99,41,44,99,41,44,110,41,44,114,46,98,111,100,121,67,108,97,115,115,93,125,41,44,91,117,44,108,44,111,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,116,100,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,101,100,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,116,100,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,110,100,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,116,100,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,110,100,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,118,97,114,32,114,100,61,100,99,40,75,116,40,101,100,40,101,100,40,123,125,44,108,99,40,85,104,44,97,99,46,98,105,110,100,40,110,117,108,108,44,34,104,101,97,100,101,114,34,41,41,41,44,123,125,44,123,104,101,97,100,101,114,58,117,99,40,120,111,41,44,104,101,97,100,101,114,67,108,97,115,115,58,117,99,40,107,111,41,44,104,101,97,100,101,114,72,116,109,108,58,117,99,40,120,111,41,125,41,41,44,101,110,41,44,105,100,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,101,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,114,100,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,101,46,112,114,111,112,115,44,105,61,101,46,100,97,116,97,44,111,61,101,46,99,104,105,108,100,114,101,110,44,97,61,114,46,104,101,97,100,101,114,66,103,86,97,114,105,97,110,116,44,115,61,114,46,104,101,97,100,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,44,99,61,114,46,104,101,97,100,101,114,84,101,120,116,86,97,114,105,97,110,116,59,114,101,116,117,114,110,32,116,40,114,46,104,101,97,100,101,114,84,97,103,44,36,101,40,105,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,100,45,104,101,97,100,101,114,34,44,99,108,97,115,115,58,91,114,46,104,101,97,100,101,114,67,108,97,115,115,44,40,110,61,123,125,44,110,100,40,110,44,34,98,103,45,34,46,99,111,110,99,97,116,40,97,41,44,97,41,44,110,100,40,110,44,34,98,111,114,100,101,114,45,34,46,99,111,110,99,97,116,40,115,41,44,115,41,44,110,100,40,110,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,99,41,44,99,41,44,110,41,93,44,100,111,109,80,114,111,112,115,58,111,63,123,125,58,67,102,40,114,46,104,101,97,100,101,114,72,116,109,108,44,114,46,104,101,97,100,101,114,41,125,41,44,111,41,125,125,41,59,102,117,110,99,116,105,111,110,32,111,100,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,97,100,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,111,100,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,115,100,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,111,100,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,115,100,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,118,97,114,32,99,100,61,100,99,40,75,116,40,97,100,40,97,100,40,123,125,44,108,99,40,85,104,44,97,99,46,98,105,110,100,40,110,117,108,108,44,34,102,111,111,116,101,114,34,41,41,41,44,123,125,44,123,102,111,111,116,101,114,58,117,99,40,120,111,41,44,102,111,111,116,101,114,67,108,97,115,115,58,117,99,40,107,111,41,44,102,111,111,116,101,114,72,116,109,108,58,117,99,40,120,111,41,125,41,41,44,81,101,41,44,117,100,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,81,101,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,99,100,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,101,46,112,114,111,112,115,44,105,61,101,46,100,97,116,97,44,111,61,101,46,99,104,105,108,100,114,101,110,44,97,61,114,46,102,111,111,116,101,114,66,103,86,97,114,105,97,110,116,44,115,61,114,46,102,111,111,116,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,44,99,61,114,46,102,111,111,116,101,114,84,101,120,116,86,97,114,105,97,110,116,59,114,101,116,117,114,110,32,116,40,114,46,102,111,111,116,101,114,84,97,103,44,36,101,40,105,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,100,45,102,111,111,116,101,114,34,44,99,108,97,115,115,58,91,114,46,102,111,111,116,101,114,67,108,97,115,115,44,40,110,61,123,125,44,115,100,40,110,44,34,98,103,45,34,46,99,111,110,99,97,116,40,97,41,44,97,41,44,115,100,40,110,44,34,98,111,114,100,101,114,45,34,46,99,111,110,99,97,116,40,115,41,44,115,41,44,115,100,40,110,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,99,41,44,99,41,44,110,41,93,44,100,111,109,80,114,111,112,115,58,111,63,123,125,58,67,102,40,114,46,102,111,111,116,101,114,72,116,109,108,44,114,46,102,111,111,116,101,114,41,125,41,44,111,41,125,125,41,59,102,117,110,99,116,105,111,110,32,108,100,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,118,97,114,32,102,100,61,39,60,115,118,103,32,119,105,100,116,104,61,34,37,123,119,125,34,32,104,101,105,103,104,116,61,34,37,123,104,125,34,32,120,109,108,110,115,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,32,118,105,101,119,66,111,120,61,34,48,32,48,32,37,123,119,125,32,37,123,104,125,34,32,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,61,34,110,111,110,101,34,62,60,114,101,99,116,32,119,105,100,116,104,61,34,49,48,48,37,34,32,104,101,105,103,104,116,61,34,49,48,48,37,34,32,115,116,121,108,101,61,34,102,105,108,108,58,37,123,102,125,59,34,62,60,47,114,101,99,116,62,60,47,115,118,103,62,39,44,104,100,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,102,100,46,114,101,112,108,97,99,101,40,34,37,123,119,125,34,44,115,115,40,116,41,41,46,114,101,112,108,97,99,101,40,34,37,123,104,125,34,44,115,115,40,101,41,41,46,114,101,112,108,97,99,101,40,34,37,123,102,125,34,44,110,41,41,59,114,101,116,117,114,110,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,84,70,45,56,44,34,46,99,111,110,99,97,116,40,114,41,125,44,100,100,61,100,99,40,123,97,108,116,58,117,99,40,120,111,41,44,98,108,97,110,107,58,117,99,40,103,111,44,33,49,41,44,98,108,97,110,107,67,111,108,111,114,58,117,99,40,120,111,44,34,116,114,97,110,115,112,97,114,101,110,116,34,41,44,98,108,111,99,107,58,117,99,40,103,111,44,33,49,41,44,99,101,110,116,101,114,58,117,99,40,103,111,44,33,49,41,44,102,108,117,105,100,58,117,99,40,103,111,44,33,49,41,44,102,108,117,105,100,71,114,111,119,58,117,99,40,103,111,44,33,49,41,44,104,101,105,103,104,116,58,117,99,40,65,111,41,44,108,101,102,116,58,117,99,40,103,111,44,33,49,41,44,114,105,103,104,116,58,117,99,40,103,111,44,33,49,41,44,114,111,117,110,100,101,100,58,117,99,40,106,111,44,33,49,41,44,115,105,122,101,115,58,117,99,40,67,111,41,44,115,114,99,58,117,99,40,120,111,41,44,115,114,99,115,101,116,58,117,99,40,67,111,41,44,116,104,117,109,98,110,97,105,108,58,117,99,40,103,111,44,33,49,41,44,119,105,100,116,104,58,117,99,40,65,111,41,125,44,113,110,41,44,112,100,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,113,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,100,100,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,101,46,112,114,111,112,115,44,105,61,101,46,100,97,116,97,44,111,61,114,46,97,108,116,44,97,61,114,46,115,114,99,44,115,61,114,46,98,108,111,99,107,44,99,61,114,46,102,108,117,105,100,71,114,111,119,44,117,61,114,46,114,111,117,110,100,101,100,44,108,61,74,97,40,114,46,119,105,100,116,104,41,124,124,110,117,108,108,44,102,61,74,97,40,114,46,104,101,105,103,104,116,41,124,124,110,117,108,108,44,104,61,110,117,108,108,44,100,61,89,97,40,114,46,115,114,99,115,101,116,41,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,44,34,41,44,112,61,89,97,40,114,46,115,105,122,101,115,41,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,44,34,41,59,114,101,116,117,114,110,32,114,46,98,108,97,110,107,38,38,40,33,102,38,38,108,63,102,61,108,58,33,108,38,38,102,38,38,40,108,61,102,41,44,108,124,124,102,124,124,40,108,61,49,44,102,61,49,41,44,97,61,104,100,40,108,44,102,44,114,46,98,108,97,110,107,67,111,108,111,114,124,124,34,116,114,97,110,115,112,97,114,101,110,116,34,41,44,100,61,110,117,108,108,44,112,61,110,117,108,108,41,44,114,46,108,101,102,116,63,104,61,34,102,108,111,97,116,45,108,101,102,116,34,58,114,46,114,105,103,104,116,63,104,61,34,102,108,111,97,116,45,114,105,103,104,116,34,58,114,46,99,101,110,116,101,114,38,38,40,104,61,34,109,120,45,97,117,116,111,34,44,115,61,33,48,41,44,116,40,34,105,109,103,34,44,36,101,40,105,44,123,97,116,116,114,115,58,123,115,114,99,58,97,44,97,108,116,58,111,44,119,105,100,116,104,58,108,63,115,115,40,108,41,58,110,117,108,108,44,104,101,105,103,104,116,58,102,63,115,115,40,102,41,58,110,117,108,108,44,115,114,99,115,101,116,58,100,124,124,110,117,108,108,44,115,105,122,101,115,58,112,124,124,110,117,108,108,125,44,99,108,97,115,115,58,40,110,61,123,34,105,109,103,45,116,104,117,109,98,110,97,105,108,34,58,114,46,116,104,117,109,98,110,97,105,108,44,34,105,109,103,45,102,108,117,105,100,34,58,114,46,102,108,117,105,100,124,124,99,44,34,119,45,49,48,48,34,58,99,44,114,111,117,110,100,101,100,58,34,34,61,61,61,117,124,124,33,48,61,61,61,117,125,44,108,100,40,110,44,34,114,111,117,110,100,101,100,45,34,46,99,111,110,99,97,116,40,117,41,44,79,116,40,117,41,38,38,34,34,33,61,61,117,41,44,108,100,40,110,44,104,44,104,41,44,108,100,40,110,44,34,100,45,98,108,111,99,107,34,44,115,41,44,110,41,125,41,41,125,125,41,59,102,117,110,99,116,105,111,110,32,118,100,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,103,100,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,118,100,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,109,100,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,118,100,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,109,100,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,118,97,114,32,98,100,61,100,99,40,75,116,40,103,100,40,103,100,40,123,125,44,71,116,40,100,100,44,91,34,115,114,99,34,44,34,97,108,116,34,44,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,44,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,41,41,44,123,125,44,123,98,111,116,116,111,109,58,117,99,40,103,111,44,33,49,41,44,101,110,100,58,117,99,40,103,111,44,33,49,41,44,115,116,97,114,116,58,117,99,40,103,111,44,33,49,41,44,116,111,112,58,117,99,40,103,111,44,33,49,41,125,41,41,44,110,110,41,44,121,100,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,110,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,98,100,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,110,46,115,114,99,44,111,61,110,46,97,108,116,44,97,61,110,46,119,105,100,116,104,44,115,61,110,46,104,101,105,103,104,116,44,99,61,34,99,97,114,100,45,105,109,103,34,59,114,101,116,117,114,110,32,110,46,116,111,112,63,99,43,61,34,45,116,111,112,34,58,110,46,114,105,103,104,116,124,124,110,46,101,110,100,63,99,43,61,34,45,114,105,103,104,116,34,58,110,46,98,111,116,116,111,109,63,99,43,61,34,45,98,111,116,116,111,109,34,58,40,110,46,108,101,102,116,124,124,110,46,115,116,97,114,116,41,38,38,40,99,43,61,34,45,108,101,102,116,34,41,44,116,40,34,105,109,103,34,44,36,101,40,114,44,123,99,108,97,115,115,58,99,44,97,116,116,114,115,58,123,115,114,99,58,105,44,97,108,116,58,111,44,119,105,100,116,104,58,97,44,104,101,105,103,104,116,58,115,125,125,41,41,125,125,41,59,102,117,110,99,116,105,111,110,32,119,100,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,95,100,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,119,100,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,120,100,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,119,100,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,120,100,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,118,97,114,32,79,100,61,108,99,40,98,100,44,97,99,46,98,105,110,100,40,110,117,108,108,44,34,105,109,103,34,41,41,59,79,100,46,105,109,103,83,114,99,46,114,101,113,117,105,114,101,100,61,33,49,59,118,97,114,32,83,100,61,100,99,40,75,116,40,95,100,40,95,100,40,95,100,40,95,100,40,95,100,40,95,100,40,123,125,44,74,104,41,44,114,100,41,44,99,100,41,44,79,100,41,44,85,104,41,44,123,125,44,123,97,108,105,103,110,58,117,99,40,120,111,41,44,110,111,66,111,100,121,58,117,99,40,103,111,44,33,49,41,125,41,41,44,90,101,41,44,107,100,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,90,101,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,83,100,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,101,46,112,114,111,112,115,44,105,61,101,46,100,97,116,97,44,111,61,101,46,115,108,111,116,115,44,97,61,101,46,115,99,111,112,101,100,83,108,111,116,115,44,115,61,114,46,105,109,103,83,114,99,44,99,61,114,46,105,109,103,76,101,102,116,44,117,61,114,46,105,109,103,82,105,103,104,116,44,108,61,114,46,105,109,103,83,116,97,114,116,44,102,61,114,46,105,109,103,69,110,100,44,104,61,114,46,105,109,103,66,111,116,116,111,109,44,100,61,114,46,104,101,97,100,101,114,44,112,61,114,46,104,101,97,100,101,114,72,116,109,108,44,118,61,114,46,102,111,111,116,101,114,44,103,61,114,46,102,111,111,116,101,114,72,116,109,108,44,109,61,114,46,97,108,105,103,110,44,98,61,114,46,116,101,120,116,86,97,114,105,97,110,116,44,121,61,114,46,98,103,86,97,114,105,97,110,116,44,119,61,114,46,98,111,114,100,101,114,86,97,114,105,97,110,116,44,95,61,97,124,124,123,125,44,120,61,111,40,41,44,79,61,123,125,44,83,61,116,40,41,44,107,61,116,40,41,59,105,102,40,115,41,123,118,97,114,32,67,61,116,40,121,100,44,123,112,114,111,112,115,58,102,99,40,79,100,44,114,44,115,99,46,98,105,110,100,40,110,117,108,108,44,34,105,109,103,34,41,41,125,41,59,104,63,107,61,67,58,83,61,67,125,118,97,114,32,80,61,116,40,41,44,84,61,98,99,40,101,97,44,95,44,120,41,59,40,84,124,124,100,124,124,112,41,38,38,40,80,61,116,40,105,100,44,123,112,114,111,112,115,58,102,99,40,114,100,44,114,41,44,100,111,109,80,114,111,112,115,58,84,63,123,125,58,67,102,40,112,44,100,41,125,44,121,99,40,101,97,44,79,44,95,44,120,41,41,41,59,118,97,114,32,106,61,121,99,40,85,111,44,79,44,95,44,120,41,59,114,46,110,111,66,111,100,121,124,124,40,106,61,116,40,81,104,44,123,112,114,111,112,115,58,102,99,40,74,104,44,114,41,125,44,106,41,44,114,46,111,118,101,114,108,97,121,38,38,115,38,38,40,106,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,111,115,105,116,105,111,110,45,114,101,108,97,116,105,118,101,34,125,44,91,83,44,106,44,107,93,41,44,83,61,116,40,41,44,107,61,116,40,41,41,41,59,118,97,114,32,69,61,116,40,41,44,68,61,98,99,40,116,97,44,95,44,120,41,59,114,101,116,117,114,110,40,68,124,124,118,124,124,103,41,38,38,40,69,61,116,40,117,100,44,123,112,114,111,112,115,58,102,99,40,99,100,44,114,41,44,100,111,109,80,114,111,112,115,58,84,63,123,125,58,67,102,40,103,44,118,41,125,44,121,99,40,116,97,44,79,44,95,44,120,41,41,41,44,116,40,114,46,116,97,103,44,36,101,40,105,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,100,34,44,99,108,97,115,115,58,40,110,61,123,34,102,108,101,120,45,114,111,119,34,58,99,124,124,108,44,34,102,108,101,120,45,114,111,119,45,114,101,118,101,114,115,101,34,58,40,117,124,124,102,41,38,38,33,40,99,124,124,108,41,125,44,120,100,40,110,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,109,41,44,109,41,44,120,100,40,110,44,34,98,103,45,34,46,99,111,110,99,97,116,40,121,41,44,121,41,44,120,100,40,110,44,34,98,111,114,100,101,114,45,34,46,99,111,110,99,97,116,40,119,41,44,119,41,44,120,100,40,110,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,98,41,44,98,41,44,110,41,125,41,44,91,83,44,80,44,106,44,69,44,107,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,67,100,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,102,117,110,99,116,105,111,110,32,80,100,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,114,61,101,91,110,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,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,114,38,38,40,114,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,114,46,107,101,121,44,114,41,125,125,102,117,110,99,116,105,111,110,32,84,100,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,80,100,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,80,100,40,116,44,110,41,44,116,125,118,97,114,32,106,100,44,69,100,61,34,95,95,98,118,95,95,118,105,115,105,98,105,108,105,116,121,95,111,98,115,101,114,118,101,114,34,44,68,100,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,101,44,110,44,114,41,123,67,100,40,116,104,105,115,44,116,41,44,116,104,105,115,46,101,108,61,101,44,116,104,105,115,46,99,97,108,108,98,97,99,107,61,110,46,99,97,108,108,98,97,99,107,44,116,104,105,115,46,109,97,114,103,105,110,61,110,46,109,97,114,103,105,110,124,124,48,44,116,104,105,115,46,111,110,99,101,61,110,46,111,110,99,101,124,124,33,49,44,116,104,105,115,46,111,98,115,101,114,118,101,114,61,110,117,108,108,44,116,104,105,115,46,118,105,115,105,98,108,101,61,118,111,105,100,32,48,44,116,104,105,115,46,100,111,110,101,79,110,99,101,61,33,49,44,116,104,105,115,46,99,114,101,97,116,101,79,98,115,101,114,118,101,114,40,114,41,125,114,101,116,117,114,110,32,84,100,40,116,44,91,123,107,101,121,58,34,99,114,101,97,116,101,79,98,115,101,114,118,101,114,34,44,118,97,108,117,101,58,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,104,105,115,46,111,98,115,101,114,118,101,114,38,38,116,104,105,115,46,115,116,111,112,40,41,44,33,116,104,105,115,46,100,111,110,101,79,110,99,101,38,38,95,116,40,116,104,105,115,46,99,97,108,108,98,97,99,107,41,41,123,116,114,121,123,116,104,105,115,46,111,98,115,101,114,118,101,114,61,110,101,119,32,73,110,116,101,114,115,101,99,116,105,111,110,79,98,115,101,114,118,101,114,40,116,104,105,115,46,104,97,110,100,108,101,114,46,98,105,110,100,40,116,104,105,115,41,44,123,114,111,111,116,58,110,117,108,108,44,114,111,111,116,77,97,114,103,105,110,58,116,104,105,115,46,109,97,114,103,105,110,44,116,104,114,101,115,104,111,108,100,58,48,125,41,125,99,97,116,99,104,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,100,111,110,101,79,110,99,101,61,33,48,44,116,104,105,115,46,111,98,115,101,114,118,101,114,61,118,111,105,100,32,48,44,118,111,105,100,32,116,104,105,115,46,99,97,108,108,98,97,99,107,40,110,117,108,108,41,125,116,46,99,111,110,116,101,120,116,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,111,98,115,101,114,118,101,114,38,38,101,46,111,98,115,101,114,118,101,114,46,111,98,115,101,114,118,101,40,101,46,101,108,41,125,41,41,125,41,41,125,125,125,44,123,107,101,121,58,34,104,97,110,100,108,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,63,116,91,48,93,58,123,125,44,110,61,66,111,111,108,101,97,110,40,101,46,105,115,73,110,116,101,114,115,101,99,116,105,110,103,124,124,101,46,105,110,116,101,114,115,101,99,116,105,111,110,82,97,116,105,111,62,48,41,59,110,33,61,61,116,104,105,115,46,118,105,115,105,98,108,101,38,38,40,116,104,105,115,46,118,105,115,105,98,108,101,61,110,44,116,104,105,115,46,99,97,108,108,98,97,99,107,40,110,41,44,116,104,105,115,46,111,110,99,101,38,38,116,104,105,115,46,118,105,115,105,98,108,101,38,38,40,116,104,105,115,46,100,111,110,101,79,110,99,101,61,33,48,44,116,104,105,115,46,115,116,111,112,40,41,41,41,125,125,44,123,107,101,121,58,34,115,116,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,111,98,115,101,114,118,101,114,38,38,116,104,105,115,46,111,98,115,101,114,118,101,114,46,100,105,115,99,111,110,110,101,99,116,40,41,44,116,104,105,115,46,111,98,115,101,114,118,101,114,61,110,117,108,108,125,125,93,41,44,116,125,40,41,44,65,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,91,69,100,93,59,101,38,38,101,46,115,116,111,112,38,38,101,46,115,116,111,112,40,41,44,100,101,108,101,116,101,32,116,91,69,100,93,125,44,76,100,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,101,46,118,97,108,117,101,44,105,61,101,46,109,111,100,105,102,105,101,114,115,44,111,61,123,109,97,114,103,105,110,58,34,48,112,120,34,44,111,110,99,101,58,33,49,44,99,97,108,108,98,97,99,107,58,114,125,59,86,116,40,105,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,83,46,116,101,115,116,40,116,41,63,111,46,109,97,114,103,105,110,61,34,34,46,99,111,110,99,97,116,40,116,44,34,112,120,34,41,58,34,111,110,99,101,34,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,38,38,40,111,46,111,110,99,101,61,33,48,41,125,41,41,44,65,100,40,116,41,44,116,91,69,100,93,61,110,101,119,32,68,100,40,116,44,111,44,110,41,44,116,91,69,100,93,46,95,112,114,101,118,77,111,100,105,102,105,101,114,115,61,87,116,40,105,41,125,44,73,100,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,101,46,118,97,108,117,101,44,105,61,101,46,111,108,100,86,97,108,117,101,44,111,61,101,46,109,111,100,105,102,105,101,114,115,59,111,61,87,116,40,111,41,44,33,116,124,124,114,61,61,61,105,38,38,116,91,69,100,93,38,38,95,108,40,111,44,116,91,69,100,93,46,95,112,114,101,118,77,111,100,105,102,105,101,114,115,41,124,124,76,100,40,116,44,123,118,97,108,117,101,58,114,44,109,111,100,105,102,105,101,114,115,58,111,125,44,110,41,125,44,77,100,61,102,117,110,99,116,105,111,110,40,116,41,123,65,100,40,116,41,125,44,36,100,61,123,98,105,110,100,58,76,100,44,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,73,100,44,117,110,98,105,110,100,58,77,100,125,59,102,117,110,99,116,105,111,110,32,70,100,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,82,100,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,70,100,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,78,100,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,70,100,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,78,100,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,118,97,114,32,66,100,61,34,115,104,111,119,34,44,122,100,61,99,111,43,66,100,44,86,100,61,113,116,40,100,100,44,91,34,98,108,97,110,107,34,93,41,44,72,100,61,100,99,40,82,100,40,82,100,40,123,125,44,86,100,41,44,123,125,44,78,100,40,123,98,108,97,110,107,67,111,108,111,114,58,117,99,40,120,111,44,34,116,114,97,110,115,112,97,114,101,110,116,34,41,44,98,108,97,110,107,72,101,105,103,104,116,58,117,99,40,65,111,41,44,98,108,97,110,107,83,114,99,58,117,99,40,120,111,44,110,117,108,108,41,44,98,108,97,110,107,87,105,100,116,104,58,117,99,40,65,111,41,44,111,102,102,115,101,116,58,117,99,40,65,111,44,51,54,48,41,125,44,66,100,44,117,99,40,103,111,44,33,49,41,41,41,44,89,110,41,44,85,100,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,89,110,44,100,105,114,101,99,116,105,118,101,115,58,123,34,98,45,118,105,115,105,98,108,101,34,58,36,100,125,44,112,114,111,112,115,58,72,100,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,83,104,111,119,110,58,116,104,105,115,91,66,100,93,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,83,114,99,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,98,108,97,110,107,83,114,99,59,114,101,116,117,114,110,33,116,124,124,116,104,105,115,46,105,115,83,104,111,119,110,63,116,104,105,115,46,115,114,99,58,116,125,44,99,111,109,112,117,116,101,100,66,108,97,110,107,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,105,115,83,104,111,119,110,124,124,116,104,105,115,46,98,108,97,110,107,83,114,99,41,125,44,99,111,109,112,117,116,101,100,87,105,100,116,104,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,119,105,100,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,104,111,119,110,63,116,58,116,104,105,115,46,98,108,97,110,107,87,105,100,116,104,124,124,116,125,44,99,111,109,112,117,116,101,100,72,101,105,103,104,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,104,101,105,103,104,116,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,104,111,119,110,63,116,58,116,104,105,115,46,98,108,97,110,107,72,101,105,103,104,116,124,124,116,125,44,99,111,109,112,117,116,101,100,83,114,99,115,101,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,89,97,40,116,104,105,115,46,115,114,99,115,101,116,41,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,44,34,41,59,114,101,116,117,114,110,33,116,104,105,115,46,98,108,97,110,107,83,114,99,124,124,116,104,105,115,46,105,115,83,104,111,119,110,63,116,58,110,117,108,108,125,44,99,111,109,112,117,116,101,100,83,105,122,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,89,97,40,116,104,105,115,46,115,105,122,101,115,41,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,44,34,41,59,114,101,116,117,114,110,33,116,104,105,115,46,98,108,97,110,107,83,114,99,124,124,116,104,105,115,46,105,115,83,104,111,119,110,63,116,58,110,117,108,108,125,125,44,119,97,116,99,104,58,40,106,100,61,123,125,44,78,100,40,106,100,44,66,100,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,33,61,61,101,41,123,118,97,114,32,110,61,33,98,124,124,116,59,116,104,105,115,46,105,115,83,104,111,119,110,61,110,44,110,33,61,61,116,38,38,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,117,112,100,97,116,101,83,104,111,119,80,114,111,112,41,125,125,41,41,44,78,100,40,106,100,44,34,105,115,83,104,111,119,110,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,116,104,105,115,46,117,112,100,97,116,101,83,104,111,119,80,114,111,112,40,41,125,41,41,44,106,100,41,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,83,104,111,119,110,61,33,98,124,124,116,104,105,115,91,66,100,93,125,44,109,101,116,104,111,100,115,58,123,117,112,100,97,116,101,83,104,111,119,80,114,111,112,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,101,109,105,116,40,122,100,44,116,104,105,115,46,105,115,83,104,111,119,110,41,125,44,100,111,83,104,111,119,58,102,117,110,99,116,105,111,110,40,116,41,123,33,116,38,38,110,117,108,108,33,61,61,116,124,124,116,104,105,115,46,105,115,83,104,111,119,110,124,124,40,116,104,105,115,46,105,115,83,104,111,119,110,61,33,48,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,91,93,59,116,104,105,115,46,105,115,83,104,111,119,110,124,124,110,46,112,117,115,104,40,123,110,97,109,101,58,34,98,45,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,116,104,105,115,46,100,111,83,104,111,119,44,109,111,100,105,102,105,101,114,115,58,40,101,61,123,125,44,78,100,40,101,44,34,34,46,99,111,110,99,97,116,40,74,97,40,116,104,105,115,46,111,102,102,115,101,116,44,48,41,41,44,33,48,41,44,78,100,40,101,44,34,111,110,99,101,34,44,33,48,41,44,101,41,125,41,59,114,101,116,117,114,110,32,116,40,112,100,44,123,100,105,114,101,99,116,105,118,101,115,58,110,44,112,114,111,112,115,58,82,100,40,123,115,114,99,58,116,104,105,115,46,99,111,109,112,117,116,101,100,83,114,99,44,98,108,97,110,107,58,116,104,105,115,46,99,111,109,112,117,116,101,100,66,108,97,110,107,44,119,105,100,116,104,58,116,104,105,115,46,99,111,109,112,117,116,101,100,87,105,100,116,104,44,104,101,105,103,104,116,58,116,104,105,115,46,99,111,109,112,117,116,101,100,72,101,105,103,104,116,44,115,114,99,115,101,116,58,116,104,105,115,46,99,111,109,112,117,116,101,100,83,114,99,115,101,116,124,124,110,117,108,108,44,115,105,122,101,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,115,124,124,110,117,108,108,125,44,102,99,40,86,100,44,116,104,105,115,46,36,112,114,111,112,115,41,41,125,41,125,125,41,59,102,117,110,99,116,105,111,110,32,87,100,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,71,100,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,87,100,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,113,100,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,87,100,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,113,100,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,118,97,114,32,89,100,61,100,99,40,75,116,40,71,100,40,71,100,40,123,125,44,113,116,40,72,100,44,86,116,40,100,100,41,41,41,44,113,116,40,98,100,44,91,34,115,114,99,34,44,34,97,108,116,34,44,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,93,41,41,41,44,114,110,41,44,75,100,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,114,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,89,100,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,34,99,97,114,100,45,105,109,103,34,59,114,101,116,117,114,110,32,110,46,116,111,112,63,105,43,61,34,45,116,111,112,34,58,110,46,114,105,103,104,116,124,124,110,46,101,110,100,63,105,43,61,34,45,114,105,103,104,116,34,58,110,46,98,111,116,116,111,109,63,105,43,61,34,45,98,111,116,116,111,109,34,58,40,110,46,108,101,102,116,124,124,110,46,115,116,97,114,116,41,38,38,40,105,43,61,34,45,108,101,102,116,34,41,44,116,40,85,100,44,36,101,40,114,44,123,99,108,97,115,115,58,91,105,93,44,112,114,111,112,115,58,113,116,40,110,44,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,41,125,41,41,125,125,41,44,88,100,61,100,99,40,123,116,101,120,116,84,97,103,58,117,99,40,120,111,44,34,112,34,41,125,44,97,110,41,44,90,100,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,97,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,88,100,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,110,46,116,101,120,116,84,97,103,44,36,101,40,114,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,100,45,116,101,120,116,34,125,41,44,105,41,125,125,41,44,74,100,61,100,99,40,123,99,111,108,117,109,110,115,58,117,99,40,103,111,44,33,49,41,44,100,101,99,107,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,125,44,116,110,41,44,81,100,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,116,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,74,100,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,110,46,116,97,103,44,36,101,40,114,44,123,99,108,97,115,115,58,110,46,100,101,99,107,63,34,99,97,114,100,45,100,101,99,107,34,58,110,46,99,111,108,117,109,110,115,63,34,99,97,114,100,45,99,111,108,117,109,110,115,34,58,34,99,97,114,100,45,103,114,111,117,112,34,125,41,44,105,41,125,125,41,44,116,112,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,67,97,114,100,58,107,100,44,66,67,97,114,100,72,101,97,100,101,114,58,105,100,44,66,67,97,114,100,66,111,100,121,58,81,104,44,66,67,97,114,100,84,105,116,108,101,58,71,104,44,66,67,97,114,100,83,117,98,84,105,116,108,101,58,89,104,44,66,67,97,114,100,70,111,111,116,101,114,58,117,100,44,66,67,97,114,100,73,109,103,58,121,100,44,66,67,97,114,100,73,109,103,76,97,122,121,58,75,100,44,66,67,97,114,100,84,101,120,116,58,90,100,44,66,67,97,114,100,71,114,111,117,112,58,81,100,125,125,41,44,101,112,61,102,117,110,99,116,105,111,110,40,41,123,125,59,102,117,110,99,116,105,111,110,32,110,112,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,114,112,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,110,112,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,105,112,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,110,112,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,105,112,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,118,97,114,32,111,112,44,97,112,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,116,61,116,63,116,46,36,101,108,124,124,116,58,110,117,108,108,44,33,98,115,40,116,41,41,114,101,116,117,114,110,32,110,117,108,108,59,105,102,40,118,101,40,34,111,98,115,101,114,118,101,68,111,109,34,41,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,114,61,110,101,119,32,103,115,40,40,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,33,49,44,114,61,48,59,114,60,116,46,108,101,110,103,116,104,38,38,33,110,59,114,43,43,41,123,118,97,114,32,105,61,116,91,114,93,44,111,61,105,46,116,121,112,101,44,97,61,105,46,116,97,114,103,101,116,59,40,34,99,104,97,114,97,99,116,101,114,68,97,116,97,34,61,61,61,111,38,38,97,46,110,111,100,101,84,121,112,101,61,61,61,78,111,100,101,46,84,69,88,84,95,78,79,68,69,124,124,34,97,116,116,114,105,98,117,116,101,115,34,61,61,61,111,124,124,34,99,104,105,108,100,76,105,115,116,34,61,61,61,111,38,38,40,105,46,97,100,100,101,100,78,111,100,101,115,46,108,101,110,103,116,104,62,48,124,124,105,46,114,101,109,111,118,101,100,78,111,100,101,115,46,108,101,110,103,116,104,62,48,41,41,38,38,40,110,61,33,48,41,125,110,38,38,101,40,41,125,41,41,59,114,101,116,117,114,110,32,114,46,111,98,115,101,114,118,101,40,116,44,114,112,40,123,99,104,105,108,100,76,105,115,116,58,33,48,44,115,117,98,116,114,101,101,58,33,48,125,44,110,41,41,44,114,125,59,102,117,110,99,116,105,111,110,32,115,112,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,99,112,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,115,112,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,117,112,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,115,112,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,117,112,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,118,97,114,32,108,112,61,109,99,40,34,118,97,108,117,101,34,44,123,116,121,112,101,58,121,111,44,100,101,102,97,117,108,116,86,97,108,117,101,58,48,125,41,44,102,112,61,108,112,46,109,105,120,105,110,44,104,112,61,108,112,46,112,114,111,112,115,44,100,112,61,108,112,46,112,114,111,112,44,112,112,61,108,112,46,101,118,101,110,116,44,118,112,61,123,110,101,120,116,58,123,100,105,114,67,108,97,115,115,58,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,34,44,111,118,101,114,108,97,121,67,108,97,115,115,58,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,34,125,44,112,114,101,118,58,123,100,105,114,67,108,97,115,115,58,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,34,44,111,118,101,114,108,97,121,67,108,97,115,115,58,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,34,125,125,44,103,112,61,54,53,48,44,109,112,61,53,48,48,44,98,112,61,52,48,44,121,112,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,119,112,61,123,87,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,58,34,119,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,69,110,100,34,44,77,111,122,84,114,97,110,115,105,116,105,111,110,58,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,44,79,84,114,97,110,115,105,116,105,111,110,58,34,111,116,114,97,110,115,105,116,105,111,110,101,110,100,32,111,84,114,97,110,115,105,116,105,111,110,69,110,100,34,44,116,114,97,110,115,105,116,105,111,110,58,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,125,44,95,112,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,32,105,110,32,119,112,41,105,102,40,33,98,116,40,116,46,115,116,121,108,101,91,101,93,41,41,114,101,116,117,114,110,32,119,112,91,101,93,59,114,101,116,117,114,110,32,110,117,108,108,125,44,120,112,61,100,99,40,75,116,40,99,112,40,99,112,40,99,112,40,123,125,44,68,104,41,44,104,112,41,44,123,125,44,123,98,97,99,107,103,114,111,117,110,100,58,117,99,40,120,111,41,44,99,111,110,116,114,111,108,115,58,117,99,40,103,111,44,33,49,41,44,102,97,100,101,58,117,99,40,103,111,44,33,49,41,44,105,109,103,72,101,105,103,104,116,58,117,99,40,65,111,41,44,105,109,103,87,105,100,116,104,58,117,99,40,65,111,41,44,105,110,100,105,99,97,116,111,114,115,58,117,99,40,103,111,44,33,49,41,44,105,110,116,101,114,118,97,108,58,117,99,40,121,111,44,53,101,51,41,44,108,97,98,101,108,71,111,116,111,83,108,105,100,101,58,117,99,40,120,111,44,34,71,111,116,111,32,115,108,105,100,101,34,41,44,108,97,98,101,108,73,110,100,105,99,97,116,111,114,115,58,117,99,40,120,111,44,34,83,101,108,101,99,116,32,97,32,115,108,105,100,101,32,116,111,32,100,105,115,112,108,97,121,34,41,44,108,97,98,101,108,78,101,120,116,58,117,99,40,120,111,44,34,78,101,120,116,32,115,108,105,100,101,34,41,44,108,97,98,101,108,80,114,101,118,58,117,99,40,120,111,44,34,80,114,101,118,105,111,117,115,32,115,108,105,100,101,34,41,44,110,111,65,110,105,109,97,116,105,111,110,58,117,99,40,103,111,44,33,49,41,44,110,111,72,111,118,101,114,80,97,117,115,101,58,117,99,40,103,111,44,33,49,41,44,110,111,84,111,117,99,104,58,117,99,40,103,111,44,33,49,41,44,110,111,87,114,97,112,58,117,99,40,103,111,44,33,49,41,125,41,41,44,99,110,41,44,79,112,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,99,110,44,109,105,120,105,110,115,58,91,65,104,44,102,112,44,119,99,93,44,112,114,111,118,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,98,118,67,97,114,111,117,115,101,108,58,116,104,105,115,125,125,44,112,114,111,112,115,58,120,112,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,110,100,101,120,58,116,104,105,115,91,100,112,93,124,124,48,44,105,115,83,108,105,100,105,110,103,58,33,49,44,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,58,110,117,108,108,44,115,108,105,100,101,115,58,91,93,44,100,105,114,101,99,116,105,111,110,58,110,117,108,108,44,105,115,80,97,117,115,101,100,58,33,40,74,97,40,116,104,105,115,46,105,110,116,101,114,118,97,108,44,48,41,62,48,41,44,116,111,117,99,104,83,116,97,114,116,88,58,48,44,116,111,117,99,104,68,101,108,116,97,88,58,48,125,125,44,99,111,109,112,117,116,101,100,58,123,110,117,109,83,108,105,100,101,115,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,108,105,100,101,115,46,108,101,110,103,116,104,125,125,44,119,97,116,99,104,58,40,111,112,61,123,125,44,117,112,40,111,112,44,100,112,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,116,104,105,115,46,115,101,116,83,108,105,100,101,40,74,97,40,116,44,48,41,41,125,41,41,44,117,112,40,111,112,44,34,105,110,116,101,114,118,97,108,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,40,116,63,40,116,104,105,115,46,112,97,117,115,101,40,33,48,41,44,116,104,105,115,46,115,116,97,114,116,40,33,49,41,41,58,116,104,105,115,46,112,97,117,115,101,40,33,49,41,41,125,41,41,44,117,112,40,111,112,44,34,105,115,80,97,117,115,101,100,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,116,104,105,115,46,36,101,109,105,116,40,116,63,82,105,58,105,111,41,125,41,41,44,117,112,40,111,112,44,34,105,110,100,101,120,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,61,61,61,101,124,124,116,104,105,115,46,105,115,83,108,105,100,105,110,103,124,124,116,104,105,115,46,100,111,83,108,105,100,101,40,116,44,101,41,125,41,41,44,111,112,41,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,105,110,116,101,114,118,97,108,61,110,117,108,108,44,116,104,105,115,46,36,95,97,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,36,95,116,111,117,99,104,84,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,61,110,117,108,108,44,116,104,105,115,46,105,115,80,97,117,115,101,100,61,33,40,74,97,40,116,104,105,115,46,105,110,116,101,114,118,97,108,44,48,41,62,48,41,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,61,95,112,40,116,104,105,115,46,36,101,108,41,124,124,110,117,108,108,44,116,104,105,115,46,117,112,100,97,116,101,83,108,105,100,101,115,40,41,44,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,40,33,48,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,101,97,114,73,110,116,101,114,118,97,108,40,41,44,116,104,105,115,46,99,108,101,97,114,65,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,40,41,44,116,104,105,115,46,99,108,101,97,114,84,111,117,99,104,84,105,109,101,111,117,116,40,41,44,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,40,33,49,41,125,44,109,101,116,104,111,100,115,58,123,99,108,101,97,114,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,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,125,114,101,116,117,114,110,32,101,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,116,111,83,116,114,105,110,103,40,41,125,44,101,125,40,40,102,117,110,99,116,105,111,110,40,41,123,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,36,95,105,110,116,101,114,118,97,108,41,44,116,104,105,115,46,36,95,105,110,116,101,114,118,97,108,61,110,117,108,108,125,41,41,44,99,108,101,97,114,65,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,58,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,36,95,97,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,41,44,116,104,105,115,46,36,95,97,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,61,110,117,108,108,125,44,99,108,101,97,114,84,111,117,99,104,84,105,109,101,111,117,116,58,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,36,95,116,111,117,99,104,84,105,109,101,111,117,116,41,44,116,104,105,115,46,36,95,116,111,117,99,104,84,105,109,101,111,117,116,61,110,117,108,108,125,44,115,101,116,79,98,115,101,114,118,101,114,58,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,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,59,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,38,38,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,46,100,105,115,99,111,110,110,101,99,116,40,41,44,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,61,110,117,108,108,44,116,38,38,40,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,61,97,112,40,116,104,105,115,46,36,114,101,102,115,46,105,110,110,101,114,44,116,104,105,115,46,117,112,100,97,116,101,83,108,105,100,101,115,46,98,105,110,100,40,116,104,105,115,41,44,123,115,117,98,116,114,101,101,58,33,49,44,99,104,105,108,100,76,105,115,116,58,33,48,44,97,116,116,114,105,98,117,116,101,115,58,33,48,44,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,58,91,34,105,100,34,93,125,41,41,125,44,115,101,116,83,108,105,100,101,58,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,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,110,117,108,108,59,105,102,40,33,40,117,38,38,100,111,99,117,109,101,110,116,46,118,105,115,105,98,105,108,105,116,121,83,116,97,116,101,38,38,100,111,99,117,109,101,110,116,46,104,105,100,100,101,110,41,41,123,118,97,114,32,114,61,116,104,105,115,46,110,111,87,114,97,112,44,105,61,116,104,105,115,46,110,117,109,83,108,105,100,101,115,59,116,61,114,117,40,116,41,44,48,33,61,61,105,38,38,40,116,104,105,115,46,105,115,83,108,105,100,105,110,103,63,116,104,105,115,46,36,111,110,99,101,40,81,105,44,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,115,101,116,83,108,105,100,101,40,116,44,110,41,125,41,41,125,41,41,58,40,116,104,105,115,46,100,105,114,101,99,116,105,111,110,61,110,44,116,104,105,115,46,105,110,100,101,120,61,116,62,61,105,63,114,63,105,45,49,58,48,58,116,60,48,63,114,63,48,58,105,45,49,58,116,44,114,38,38,116,104,105,115,46,105,110,100,101,120,33,61,61,116,38,38,116,104,105,115,46,105,110,100,101,120,33,61,61,116,104,105,115,91,100,112,93,38,38,116,104,105,115,46,36,101,109,105,116,40,112,112,44,116,104,105,115,46,105,110,100,101,120,41,41,41,125,125,44,112,114,101,118,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,83,108,105,100,101,40,116,104,105,115,46,105,110,100,101,120,45,49,44,34,112,114,101,118,34,41,125,44,110,101,120,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,83,108,105,100,101,40,116,104,105,115,46,105,110,100,101,120,43,49,44,34,110,101,120,116,34,41,125,44,112,97,117,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,124,124,40,116,104,105,115,46,105,115,80,97,117,115,101,100,61,33,48,41,44,116,104,105,115,46,99,108,101,97,114,73,110,116,101,114,118,97,108,40,41,125,44,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,124,124,40,116,104,105,115,46,105,115,80,97,117,115,101,100,61,33,49,41,44,116,104,105,115,46,99,108,101,97,114,73,110,116,101,114,118,97,108,40,41,44,116,104,105,115,46,105,110,116,101,114,118,97,108,38,38,116,104,105,115,46,110,117,109,83,108,105,100,101,115,62,49,38,38,40,116,104,105,115,46,36,95,105,110,116,101,114,118,97,108,61,115,101,116,73,110,116,101,114,118,97,108,40,116,104,105,115,46,110,101,120,116,44,116,117,40,49,101,51,44,116,104,105,115,46,105,110,116,101,114,118,97,108,41,41,41,125,44,114,101,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,101,108,46,99,111,110,116,97,105,110,115,40,121,115,40,41,41,124,124,116,104,105,115,46,115,116,97,114,116,40,41,125,44,100,111,83,108,105,100,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,44,114,61,66,111,111,108,101,97,110,40,116,104,105,115,46,105,110,116,101,114,118,97,108,41,44,105,61,116,104,105,115,46,99,97,108,99,68,105,114,101,99,116,105,111,110,40,116,104,105,115,46,100,105,114,101,99,116,105,111,110,44,101,44,116,41,44,111,61,105,46,111,118,101,114,108,97,121,67,108,97,115,115,44,97,61,105,46,100,105,114,67,108,97,115,115,44,115,61,116,104,105,115,46,115,108,105,100,101,115,91,101,93,44,99,61,116,104,105,115,46,115,108,105,100,101,115,91,116,93,59,105,102,40,115,38,38,99,41,123,105,102,40,116,104,105,115,46,105,115,83,108,105,100,105,110,103,61,33,48,44,114,38,38,116,104,105,115,46,112,97,117,115,101,40,33,49,41,44,116,104,105,115,46,36,101,109,105,116,40,116,111,44,116,41,44,116,104,105,115,46,36,101,109,105,116,40,112,112,44,116,104,105,115,46,105,110,100,101,120,41,44,116,104,105,115,46,110,111,65,110,105,109,97,116,105,111,110,41,68,115,40,99,44,34,97,99,116,105,118,101,34,41,44,65,115,40,115,44,34,97,99,116,105,118,101,34,41,44,116,104,105,115,46,105,115,83,108,105,100,105,110,103,61,33,49,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,46,36,101,109,105,116,40,81,105,44,116,41,125,41,41,59,101,108,115,101,123,68,115,40,99,44,111,41,44,83,115,40,99,41,44,68,115,40,115,44,97,41,44,68,115,40,99,44,97,41,59,118,97,114,32,117,61,33,49,44,108,61,102,117,110,99,116,105,111,110,32,101,40,41,123,105,102,40,33,117,41,123,105,102,40,117,61,33,48,44,110,46,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,41,123,118,97,114,32,114,61,110,46,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,46,115,112,108,105,116,40,47,92,115,43,47,41,59,114,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,79,99,40,99,44,116,44,101,44,104,111,41,125,41,41,125,110,46,99,108,101,97,114,65,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,40,41,44,65,115,40,99,44,97,41,44,65,115,40,99,44,111,41,44,68,115,40,99,44,34,97,99,116,105,118,101,34,41,44,65,115,40,115,44,34,97,99,116,105,118,101,34,41,44,65,115,40,115,44,97,41,44,65,115,40,115,44,111,41,44,73,115,40,115,44,34,97,114,105,97,45,99,117,114,114,101,110,116,34,44,34,102,97,108,115,101,34,41,44,73,115,40,99,44,34,97,114,105,97,45,99,117,114,114,101,110,116,34,44,34,116,114,117,101,34,41,44,73,115,40,115,44,34,97,114,105,97,45,104,105,100,100,101,110,34,44,34,116,114,117,101,34,41,44,73,115,40,99,44,34,97,114,105,97,45,104,105,100,100,101,110,34,44,34,102,97,108,115,101,34,41,44,110,46,105,115,83,108,105,100,105,110,103,61,33,49,44,110,46,100,105,114,101,99,116,105,111,110,61,110,117,108,108,44,110,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,46,36,101,109,105,116,40,81,105,44,116,41,125,41,41,125,125,59,105,102,40,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,41,123,118,97,114,32,102,61,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,69,110,100,69,118,101,110,116,46,115,112,108,105,116,40,47,92,115,43,47,41,59,102,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,120,99,40,99,44,116,44,108,44,104,111,41,125,41,41,125,116,104,105,115,46,36,95,97,110,105,109,97,116,105,111,110,84,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,108,44,103,112,41,125,114,38,38,116,104,105,115,46,115,116,97,114,116,40,33,49,41,125,125,44,117,112,100,97,116,101,83,108,105,100,101,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,97,117,115,101,40,33,48,41,44,116,104,105,115,46,115,108,105,100,101,115,61,107,115,40,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,34,44,116,104,105,115,46,36,114,101,102,115,46,105,110,110,101,114,41,59,118,97,114,32,116,61,116,104,105,115,46,115,108,105,100,101,115,46,108,101,110,103,116,104,44,101,61,116,117,40,48,44,81,99,40,114,117,40,116,104,105,115,46,105,110,100,101,120,41,44,116,45,49,41,41,59,116,104,105,115,46,115,108,105,100,101,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,105,61,114,43,49,59,114,61,61,61,101,63,40,68,115,40,110,44,34,97,99,116,105,118,101,34,41,44,73,115,40,110,44,34,97,114,105,97,45,99,117,114,114,101,110,116,34,44,34,116,114,117,101,34,41,41,58,40,65,115,40,110,44,34,97,99,116,105,118,101,34,41,44,73,115,40,110,44,34,97,114,105,97,45,99,117,114,114,101,110,116,34,44,34,102,97,108,115,101,34,41,41,44,73,115,40,110,44,34,97,114,105,97,45,112,111,115,105,110,115,101,116,34,44,83,116,114,105,110,103,40,105,41,41,44,73,115,40,110,44,34,97,114,105,97,45,115,101,116,115,105,122,101,34,44,83,116,114,105,110,103,40,116,41,41,125,41,41,44,116,104,105,115,46,115,101,116,83,108,105,100,101,40,101,41,44,116,104,105,115,46,115,116,97,114,116,40,116,104,105,115,46,105,115,80,97,117,115,101,100,41,125,44,99,97,108,99,68,105,114,101,99,116,105,111,110,58,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,110,117,108,108,44,101,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,48,44,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,48,59,114,101,116,117,114,110,32,116,63,118,112,91,116,93,58,110,62,101,63,118,112,46,110,101,120,116,58,118,112,46,112,114,101,118,125,44,104,97,110,100,108,101,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,107,101,121,67,111,100,101,59,34,99,108,105,99,107,34,33,61,61,116,46,116,121,112,101,38,38,110,33,61,61,98,108,38,38,110,33,61,61,102,108,124,124,40,107,99,40,116,41,44,101,40,41,41,125,44,104,97,110,100,108,101,83,119,105,112,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,101,117,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,98,112,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,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,61,48,44,101,62,48,63,116,104,105,115,46,112,114,101,118,40,41,58,101,60,48,38,38,116,104,105,115,46,110,101,120,116,40,41,125,125,44,116,111,117,99,104,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,109,38,38,121,112,91,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,116,104,105,115,46,116,111,117,99,104,83,116,97,114,116,88,61,116,46,99,108,105,101,110,116,88,58,109,124,124,40,116,104,105,115,46,116,111,117,99,104,83,116,97,114,116,88,61,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,41,125,44,116,111,117,99,104,77,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,116,111,117,99,104,101,115,38,38,116,46,116,111,117,99,104,101,115,46,108,101,110,103,116,104,62,49,63,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,61,48,58,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,61,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,45,116,104,105,115,46,116,111,117,99,104,83,116,97,114,116,88,125,44,116,111,117,99,104,69,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,109,38,38,121,112,91,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,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,61,116,46,99,108,105,101,110,116,88,45,116,104,105,115,46,116,111,117,99,104,83,116,97,114,116,88,41,44,116,104,105,115,46,104,97,110,100,108,101,83,119,105,112,101,40,41,44,116,104,105,115,46,112,97,117,115,101,40,33,49,41,44,116,104,105,115,46,99,108,101,97,114,84,111,117,99,104,84,105,109,101,111,117,116,40,41,44,116,104,105,115,46,36,95,116,111,117,99,104,84,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,116,104,105,115,46,115,116,97,114,116,44,109,112,43,116,117,40,49,101,51,44,116,104,105,115,46,105,110,116,101,114,118,97,108,41,41,125,125,44,114,101,110,100,101,114,58,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,105,110,100,105,99,97,116,111,114,115,44,114,61,116,104,105,115,46,98,97,99,107,103,114,111,117,110,100,44,105,61,116,104,105,115,46,110,111,65,110,105,109,97,116,105,111,110,44,111,61,116,104,105,115,46,110,111,72,111,118,101,114,80,97,117,115,101,44,97,61,116,104,105,115,46,110,111,84,111,117,99,104,44,115,61,116,104,105,115,46,105,110,100,101,120,44,99,61,116,104,105,115,46,105,115,83,108,105,100,105,110,103,44,117,61,116,104,105,115,46,112,97,117,115,101,44,108,61,116,104,105,115,46,114,101,115,116,97,114,116,44,102,61,116,104,105,115,46,116,111,117,99,104,83,116,97,114,116,44,104,61,116,104,105,115,46,116,111,117,99,104,69,110,100,44,100,61,116,104,105,115,46,115,97,102,101,73,100,40,34,95,95,66,86,95,105,110,110,101,114,95,34,41,44,112,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,111,117,115,101,108,45,105,110,110,101,114,34,44,97,116,116,114,115,58,123,105,100,58,100,44,114,111,108,101,58,34,108,105,115,116,34,125,44,114,101,102,58,34,105,110,110,101,114,34,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,44,118,61,116,40,41,59,105,102,40,116,104,105,115,46,99,111,110,116,114,111,108,115,41,123,118,97,114,32,98,61,102,117,110,99,116,105,111,110,40,110,44,114,44,105,41,123,118,97,114,32,111,61,102,117,110,99,116,105,111,110,40,116,41,123,99,63,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,58,101,46,104,97,110,100,108,101,67,108,105,99,107,40,116,44,105,41,125,59,114,101,116,117,114,110,32,116,40,34,97,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,34,46,99,111,110,99,97,116,40,110,41,44,97,116,116,114,115,58,123,104,114,101,102,58,34,35,34,44,114,111,108,101,58,34,98,117,116,116,111,110,34,44,34,97,114,105,97,45,99,111,110,116,114,111,108,115,34,58,100,44,34,97,114,105,97,45,100,105,115,97,98,108,101,100,34,58,99,63,34,116,114,117,101,34,58,110,117,108,108,125,44,111,110,58,123,99,108,105,99,107,58,111,44,107,101,121,100,111,119,110,58,111,125,125,44,91,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,34,46,99,111,110,99,97,116,40,110,44,34,45,105,99,111,110,34,41,44,97,116,116,114,115,58,123,34,97,114,105,97,45,104,105,100,100,101,110,34,58,34,116,114,117,101,34,125,125,41,44,116,40,34,115,112,97,110,34,44,123,99,108,97,115,115,58,34,115,114,45,111,110,108,121,34,125,44,91,114,93,41,93,41,125,59,118,61,91,98,40,34,112,114,101,118,34,44,116,104,105,115,46,108,97,98,101,108,80,114,101,118,44,116,104,105,115,46,112,114,101,118,41,44,98,40,34,110,101,120,116,34,44,116,104,105,115,46,108,97,98,101,108,78,101,120,116,44,116,104,105,115,46,110,101,120,116,41,93,125,118,97,114,32,121,61,116,40,34,111,108,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,34,44,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,115,104,111,119,34,44,118,97,108,117,101,58,110,125,93,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,34,95,95,66,86,95,105,110,100,105,99,97,116,111,114,115,95,34,41,44,34,97,114,105,97,45,104,105,100,100,101,110,34,58,110,63,34,102,97,108,115,101,34,58,34,116,114,117,101,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,116,104,105,115,46,108,97,98,101,108,73,110,100,105,99,97,116,111,114,115,44,34,97,114,105,97,45,111,119,110,115,34,58,100,125,125,44,116,104,105,115,46,115,108,105,100,101,115,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,114,44,105,41,123,118,97,114,32,111,61,102,117,110,99,116,105,111,110,40,116,41,123,101,46,104,97,110,100,108,101,67,108,105,99,107,40,116,44,40,102,117,110,99,116,105,111,110,40,41,123,101,46,115,101,116,83,108,105,100,101,40,105,41,125,41,41,125,59,114,101,116,117,114,110,32,116,40,34,108,105,34,44,123,99,108,97,115,115,58,123,97,99,116,105,118,101,58,105,61,61,61,115,125,44,97,116,116,114,115,58,123,114,111,108,101,58,34,98,117,116,116,111,110,34,44,105,100,58,101,46,115,97,102,101,73,100,40,34,95,95,66,86,95,105,110,100,105,99,97,116,111,114,95,34,46,99,111,110,99,97,116,40,105,43,49,44,34,95,34,41,41,44,116,97,98,105,110,100,101,120,58,110,63,34,48,34,58,34,45,49,34,44,34,97,114,105,97,45,99,117,114,114,101,110,116,34,58,105,61,61,61,115,63,34,116,114,117,101,34,58,34,102,97,108,115,101,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,34,46,99,111,110,99,97,116,40,101,46,108,97,98,101,108,71,111,116,111,83,108,105,100,101,44,34,32,34,41,46,99,111,110,99,97,116,40,105,43,49,41,44,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,58,114,46,105,100,124,124,110,117,108,108,44,34,97,114,105,97,45,99,111,110,116,114,111,108,115,34,58,100,125,44,111,110,58,123,99,108,105,99,107,58,111,44,107,101,121,100,111,119,110,58,111,125,44,107,101,121,58,34,115,108,105,100,101,95,34,46,99,111,110,99,97,116,40,105,41,125,41,125,41,41,41,44,119,61,123,109,111,117,115,101,101,110,116,101,114,58,111,63,101,112,58,117,44,109,111,117,115,101,108,101,97,118,101,58,111,63,101,112,58,108,44,102,111,99,117,115,105,110,58,117,44,102,111,99,117,115,111,117,116,58,108,44,107,101,121,100,111,119,110,58,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,123,118,97,114,32,110,61,116,46,107,101,121,67,111,100,101,59,110,33,61,61,112,108,38,38,110,33,61,61,109,108,124,124,40,107,99,40,116,41,44,101,91,110,61,61,61,112,108,63,34,112,114,101,118,34,58,34,110,101,120,116,34,93,40,41,41,125,125,125,59,114,101,116,117,114,110,32,103,38,38,33,97,38,38,40,109,63,40,119,91,34,38,112,111,105,110,116,101,114,100,111,119,110,34,93,61,102,44,119,91,34,38,112,111,105,110,116,101,114,117,112,34,93,61,104,41,58,40,119,91,34,38,116,111,117,99,104,115,116,97,114,116,34,93,61,102,44,119,91,34,38,116,111,117,99,104,109,111,118,101,34,93,61,116,104,105,115,46,116,111,117,99,104,77,111,118,101,44,119,91,34,38,116,111,117,99,104,101,110,100,34,93,61,104,41,41,44,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,111,117,115,101,108,34,44,99,108,97,115,115,58,123,115,108,105,100,101,58,33,105,44,34,99,97,114,111,117,115,101,108,45,102,97,100,101,34,58,33,105,38,38,116,104,105,115,46,102,97,100,101,44,34,112,111,105,110,116,101,114,45,101,118,101,110,116,34,58,103,38,38,109,38,38,33,97,125,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,114,125,44,97,116,116,114,115,58,123,114,111,108,101,58,34,114,101,103,105,111,110,34,44,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,34,97,114,105,97,45,98,117,115,121,34,58,99,63,34,116,114,117,101,34,58,34,102,97,108,115,101,34,125,44,111,110,58,119,125,44,91,112,44,118,44,121,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,83,112,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,107,112,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,83,112,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,67,112,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,83,112,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,67,112,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,118,97,114,32,80,112,44,84,112,61,123,105,109,103,65,108,116,58,117,99,40,120,111,41,44,105,109,103,66,108,97,110,107,58,117,99,40,103,111,44,33,49,41,44,105,109,103,66,108,97,110,107,67,111,108,111,114,58,117,99,40,120,111,44,34,116,114,97,110,115,112,97,114,101,110,116,34,41,44,105,109,103,72,101,105,103,104,116,58,117,99,40,65,111,41,44,105,109,103,83,114,99,58,117,99,40,120,111,41,44,105,109,103,87,105,100,116,104,58,117,99,40,65,111,41,125,44,106,112,61,100,99,40,75,116,40,107,112,40,107,112,40,107,112,40,123,125,44,68,104,41,44,84,112,41,44,123,125,44,123,98,97,99,107,103,114,111,117,110,100,58,117,99,40,120,111,41,44,99,97,112,116,105,111,110,58,117,99,40,120,111,41,44,99,97,112,116,105,111,110,72,116,109,108,58,117,99,40,120,111,41,44,99,97,112,116,105,111,110,84,97,103,58,117,99,40,120,111,44,34,104,51,34,41,44,99,111,110,116,101,110,116,84,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,44,99,111,110,116,101,110,116,86,105,115,105,98,108,101,85,112,58,117,99,40,120,111,41,44,116,101,120,116,58,117,99,40,120,111,41,44,116,101,120,116,72,116,109,108,58,117,99,40,120,111,41,44,116,101,120,116,84,97,103,58,117,99,40,120,111,44,34,112,34,41,125,41,41,44,117,110,41,44,69,112,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,117,110,44,109,105,120,105,110,115,58,91,65,104,44,119,99,93,44,105,110,106,101,99,116,58,123,98,118,67,97,114,111,117,115,101,108,58,123,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,110,111,84,111,117,99,104,58,33,48,125,125,125,125,44,112,114,111,112,115,58,106,112,44,99,111,109,112,117,116,101,100,58,123,99,111,110,116,101,110,116,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,116,104,105,115,46,99,111,110,116,101,110,116,86,105,115,105,98,108,101,85,112,63,34,100,45,110,111,110,101,34,58,34,34,44,116,104,105,115,46,99,111,110,116,101,110,116,86,105,115,105,98,108,101,85,112,63,34,100,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,99,111,110,116,101,110,116,86,105,115,105,98,108,101,85,112,44,34,45,98,108,111,99,107,34,41,58,34,34,93,125,44,99,111,109,112,117,116,101,100,87,105,100,116,104,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,109,103,87,105,100,116,104,124,124,116,104,105,115,46,98,118,67,97,114,111,117,115,101,108,46,105,109,103,87,105,100,116,104,124,124,110,117,108,108,125,44,99,111,109,112,117,116,101,100,72,101,105,103,104,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,105,109,103,72,101,105,103,104,116,124,124,116,104,105,115,46,98,118,67,97,114,111,117,115,101,108,46,105,109,103,72,101,105,103,104,116,124,124,110,117,108,108,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,115,97,41,59,105,102,40,33,101,38,38,40,116,104,105,115,46,105,109,103,83,114,99,124,124,116,104,105,115,46,105,109,103,66,108,97,110,107,41,41,123,118,97,114,32,110,61,123,125,59,33,116,104,105,115,46,98,118,67,97,114,111,117,115,101,108,46,110,111,84,111,117,99,104,38,38,103,38,38,40,110,46,100,114,97,103,115,116,97,114,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,125,41,44,101,61,116,40,112,100,44,123,112,114,111,112,115,58,107,112,40,107,112,40,123,125,44,102,99,40,84,112,44,116,104,105,115,46,36,112,114,111,112,115,44,115,99,46,98,105,110,100,40,110,117,108,108,44,34,105,109,103,34,41,41,41,44,123,125,44,123,119,105,100,116,104,58,116,104,105,115,46,99,111,109,112,117,116,101,100,87,105,100,116,104,44,104,101,105,103,104,116,58,116,104,105,115,46,99,111,109,112,117,116,101,100,72,101,105,103,104,116,44,102,108,117,105,100,71,114,111,119,58,33,48,44,98,108,111,99,107,58,33,48,125,41,44,111,110,58,110,125,41,125,118,97,114,32,114,61,91,33,40,33,116,104,105,115,46,99,97,112,116,105,111,110,38,38,33,116,104,105,115,46,99,97,112,116,105,111,110,72,116,109,108,41,38,38,116,40,116,104,105,115,46,99,97,112,116,105,111,110,84,97,103,44,123,100,111,109,80,114,111,112,115,58,67,102,40,116,104,105,115,46,99,97,112,116,105,111,110,72,116,109,108,44,116,104,105,115,46,99,97,112,116,105,111,110,41,125,41,44,33,40,33,116,104,105,115,46,116,101,120,116,38,38,33,116,104,105,115,46,116,101,120,116,72,116,109,108,41,38,38,116,40,116,104,105,115,46,116,101,120,116,84,97,103,44,123,100,111,109,80,114,111,112,115,58,67,102,40,116,104,105,115,46,116,101,120,116,72,116,109,108,44,116,104,105,115,46,116,101,120,116,41,125,41,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,124,124,33,49,93,44,105,61,116,40,41,59,114,101,116,117,114,110,32,114,46,115,111,109,101,40,115,101,41,38,38,40,105,61,116,40,116,104,105,115,46,99,111,110,116,101,110,116,84,97,103,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,111,117,115,101,108,45,99,97,112,116,105,111,110,34,44,99,108,97,115,115,58,116,104,105,115,46,99,111,110,116,101,110,116,67,108,97,115,115,101,115,125,44,114,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,124,124,116,40,41,125,41,41,41,41,44,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,111,117,115,101,108,45,105,116,101,109,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,116,104,105,115,46,98,97,99,107,103,114,111,117,110,100,124,124,116,104,105,115,46,98,118,67,97,114,111,117,115,101,108,46,98,97,99,107,103,114,111,117,110,100,124,124,110,117,108,108,125,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,114,111,108,101,58,34,108,105,115,116,105,116,101,109,34,125,125,44,91,101,44,105,93,41,125,125,41,44,68,112,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,67,97,114,111,117,115,101,108,58,79,112,44,66,67,97,114,111,117,115,101,108,83,108,105,100,101,58,69,112,125,125,41,44,65,112,61,34,115,104,111,119,34,44,76,112,61,102,117,110,99,116,105,111,110,40,116,41,123,82,115,40,116,44,34,104,101,105,103,104,116,34,44,48,41,44,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,83,115,40,116,41,44,82,115,40,116,44,34,104,101,105,103,104,116,34,44,34,34,46,99,111,110,99,97,116,40,116,46,115,99,114,111,108,108,72,101,105,103,104,116,44,34,112,120,34,41,41,125,41,41,125,44,73,112,61,102,117,110,99,116,105,111,110,40,116,41,123,78,115,40,116,44,34,104,101,105,103,104,116,34,41,125,44,77,112,61,102,117,110,99,116,105,111,110,40,116,41,123,82,115,40,116,44,34,104,101,105,103,104,116,34,44,34,97,117,116,111,34,41,44,82,115,40,116,44,34,100,105,115,112,108,97,121,34,44,34,98,108,111,99,107,34,41,44,82,115,40,116,44,34,104,101,105,103,104,116,34,44,34,34,46,99,111,110,99,97,116,40,122,115,40,116,41,46,104,101,105,103,104,116,44,34,112,120,34,41,41,44,83,115,40,116,41,44,82,115,40,116,44,34,104,101,105,103,104,116,34,44,48,41,125,44,36,112,61,102,117,110,99,116,105,111,110,40,116,41,123,78,115,40,116,44,34,104,101,105,103,104,116,34,41,125,44,70,112,61,123,99,115,115,58,33,48,44,101,110,116,101,114,67,108,97,115,115,58,34,34,44,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,58,34,99,111,108,108,97,112,115,105,110,103,34,44,101,110,116,101,114,84,111,67,108,97,115,115,58,34,99,111,108,108,97,112,115,101,32,115,104,111,119,34,44,108,101,97,118,101,67,108,97,115,115,58,34,99,111,108,108,97,112,115,101,32,115,104,111,119,34,44,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,58,34,99,111,108,108,97,112,115,105,110,103,34,44,108,101,97,118,101,84,111,67,108,97,115,115,58,34,99,111,108,108,97,112,115,101,34,125,44,82,112,61,123,101,110,116,101,114,58,76,112,44,97,102,116,101,114,69,110,116,101,114,58,73,112,44,108,101,97,118,101,58,77,112,44,97,102,116,101,114,76,101,97,118,101,58,36,112,125,44,78,112,61,123,97,112,112,101,97,114,58,117,99,40,103,111,44,33,49,41,125,44,66,112,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,113,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,78,112,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,34,116,114,97,110,115,105,116,105,111,110,34,44,36,101,40,114,44,123,112,114,111,112,115,58,70,112,44,111,110,58,82,112,125,44,123,112,114,111,112,115,58,110,125,41,44,105,41,125,125,41,59,102,117,110,99,116,105,111,110,32,122,112,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,86,112,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,122,112,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,72,112,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,122,112,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,72,112,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,118,97,114,32,85,112,61,84,99,40,102,110,44,34,116,111,103,103,108,101,34,41,44,87,112,61,84,99,40,102,110,44,34,114,101,113,117,101,115,116,45,115,116,97,116,101,34,41,44,71,112,61,80,99,40,102,110,44,34,97,99,99,111,114,100,105,111,110,34,41,44,113,112,61,80,99,40,102,110,44,34,115,116,97,116,101,34,41,44,89,112,61,80,99,40,102,110,44,34,115,121,110,99,45,115,116,97,116,101,34,41,44,75,112,61,109,99,40,34,118,105,115,105,98,108,101,34,44,123,116,121,112,101,58,103,111,44,100,101,102,97,117,108,116,86,97,108,117,101,58,33,49,125,41,44,88,112,61,75,112,46,109,105,120,105,110,44,90,112,61,75,112,46,112,114,111,112,115,44,74,112,61,75,112,46,112,114,111,112,44,81,112,61,75,112,46,101,118,101,110,116,44,116,118,61,100,99,40,75,116,40,86,112,40,86,112,40,86,112,40,123,125,44,68,104,41,44,90,112,41,44,123,125,44,123,97,99,99,111,114,100,105,111,110,58,117,99,40,120,111,41,44,97,112,112,101,97,114,58,117,99,40,103,111,44,33,49,41,44,105,115,78,97,118,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,125,41,41,44,102,110,41,44,101,118,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,102,110,44,109,105,120,105,110,115,58,91,65,104,44,88,112,44,119,99,44,80,108,93,44,112,114,111,112,115,58,116,118,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,115,104,111,119,58,116,104,105,115,91,74,112,93,44,116,114,97,110,115,105,116,105,111,110,105,110,103,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,99,108,97,115,115,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,105,110,103,59,114,101,116,117,114,110,123,34,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,34,58,116,104,105,115,46,105,115,78,97,118,44,99,111,108,108,97,112,115,101,58,33,116,44,115,104,111,119,58,116,104,105,115,46,115,104,111,119,38,38,33,116,125,125,44,115,108,111,116,83,99,111,112,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,123,118,105,115,105,98,108,101,58,116,104,105,115,46,115,104,111,119,44,99,108,111,115,101,58,102,117,110,99,116,105,111,110,40,41,123,116,46,115,104,111,119,61,33,49,125,125,125,125,44,119,97,116,99,104,58,40,80,112,61,123,125,44,72,112,40,80,112,44,74,112,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,33,61,61,116,104,105,115,46,115,104,111,119,38,38,40,116,104,105,115,46,115,104,111,119,61,116,41,125,41,41,44,72,112,40,80,112,44,34,115,104,111,119,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,116,104,105,115,46,101,109,105,116,83,116,97,116,101,40,41,125,41,41,44,80,112,41,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,104,111,119,61,116,104,105,115,91,74,112,93,125,44,109,111,117,110,116,101,100,58,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,115,104,111,119,61,116,104,105,115,91,74,112,93,44,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,85,112,44,116,104,105,115,46,104,97,110,100,108,101,84,111,103,103,108,101,69,118,116,41,44,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,71,112,44,116,104,105,115,46,104,97,110,100,108,101,65,99,99,111,114,100,105,111,110,69,118,116,41,44,116,104,105,115,46,105,115,78,97,118,38,38,40,116,104,105,115,46,115,101,116,87,105,110,100,111,119,69,118,101,110,116,115,40,33,48,41,44,116,104,105,115,46,104,97,110,100,108,101,82,101,115,105,122,101,40,41,41,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,101,109,105,116,83,116,97,116,101,40,41,125,41,41,44,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,87,112,44,40,102,117,110,99,116,105,111,110,40,101,41,123,101,61,61,61,116,46,115,97,102,101,73,100,40,41,38,38,116,46,36,110,101,120,116,84,105,99,107,40,116,46,101,109,105,116,83,121,110,99,41,125,41,41,125,44,117,112,100,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,101,109,105,116,83,121,110,99,40,41,125,44,100,101,97,99,116,105,118,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,78,97,118,38,38,116,104,105,115,46,115,101,116,87,105,110,100,111,119,69,118,101,110,116,115,40,33,49,41,125,44,97,99,116,105,118,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,78,97,118,38,38,116,104,105,115,46,115,101,116,87,105,110,100,111,119,69,118,101,110,116,115,40,33,48,41,44,116,104,105,115,46,101,109,105,116,83,121,110,99,40,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,104,111,119,61,33,49,44,116,104,105,115,46,105,115,78,97,118,38,38,117,38,38,116,104,105,115,46,115,101,116,87,105,110,100,111,119,69,118,101,110,116,115,40,33,49,41,125,44,109,101,116,104,111,100,115,58,123,115,101,116,87,105,110,100,111,119,69,118,101,110,116,115,58,102,117,110,99,116,105,111,110,40,116,41,123,83,99,40,116,44,119,105,110,100,111,119,44,34,114,101,115,105,122,101,34,44,116,104,105,115,46,104,97,110,100,108,101,82,101,115,105,122,101,44,104,111,41,44,83,99,40,116,44,119,105,110,100,111,119,44,34,111,114,105,101,110,116,97,116,105,111,110,99,104,97,110,103,101,34,44,116,104,105,115,46,104,97,110,100,108,101,82,101,115,105,122,101,44,104,111,41,125,44,116,111,103,103,108,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,104,111,119,61,33,116,104,105,115,46,115,104,111,119,125,44,111,110,69,110,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,44,116,104,105,115,46,36,101,109,105,116,40,90,105,41,125,44,111,110,65,102,116,101,114,69,110,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,36,101,109,105,116,40,74,105,41,125,44,111,110,76,101,97,118,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,44,116,104,105,115,46,36,101,109,105,116,40,84,105,41,125,44,111,110,65,102,116,101,114,76,101,97,118,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,36,101,109,105,116,40,80,105,41,125,44,101,109,105,116,83,116,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,115,104,111,119,44,101,61,116,104,105,115,46,97,99,99,111,114,100,105,111,110,44,110,61,116,104,105,115,46,115,97,102,101,73,100,40,41,59,116,104,105,115,46,36,101,109,105,116,40,81,112,44,116,41,44,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,113,112,44,110,44,116,41,44,101,38,38,116,38,38,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,71,112,44,110,44,101,41,125,44,101,109,105,116,83,121,110,99,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,89,112,44,116,104,105,115,46,115,97,102,101,73,100,40,41,44,116,104,105,115,46,115,104,111,119,41,125,44,99,104,101,99,107,68,105,115,112,108,97,121,66,108,111,99,107,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,101,108,44,101,61,76,115,40,116,44,65,112,41,59,65,115,40,116,44,65,112,41,59,118,97,114,32,110,61,34,98,108,111,99,107,34,61,61,61,86,115,40,116,41,46,100,105,115,112,108,97,121,59,114,101,116,117,114,110,32,101,38,38,68,115,40,116,44,65,112,41,44,110,125,44,99,108,105,99,107,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,116,97,114,103,101,116,59,116,104,105,115,46,105,115,78,97,118,38,38,101,38,38,34,98,108,111,99,107,34,61,61,61,86,115,40,116,104,105,115,46,36,101,108,41,46,100,105,115,112,108,97,121,38,38,40,33,80,115,40,101,44,34,46,110,97,118,45,108,105,110,107,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,34,41,38,38,33,84,115,40,34,46,110,97,118,45,108,105,110,107,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,101,41,124,124,116,104,105,115,46,99,104,101,99,107,68,105,115,112,108,97,121,66,108,111,99,107,40,41,124,124,40,116,104,105,115,46,115,104,111,119,61,33,49,41,41,125,44,104,97,110,100,108,101,84,111,103,103,108,101,69,118,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,61,61,61,116,104,105,115,46,115,97,102,101,73,100,40,41,38,38,116,104,105,115,46,116,111,103,103,108,101,40,41,125,44,104,97,110,100,108,101,65,99,99,111,114,100,105,111,110,69,118,116,58,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,97,99,99,111,114,100,105,111,110,44,114,61,116,104,105,115,46,115,104,111,119,59,105,102,40,110,38,38,110,61,61,61,101,41,123,118,97,114,32,105,61,116,61,61,61,116,104,105,115,46,115,97,102,101,73,100,40,41,59,40,105,38,38,33,114,124,124,33,105,38,38,114,41,38,38,116,104,105,115,46,116,111,103,103,108,101,40,41,125,125,44,104,97,110,100,108,101,82,101,115,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,104,111,119,61,34,98,108,111,99,107,34,61,61,61,86,115,40,116,104,105,115,46,36,101,108,41,46,100,105,115,112,108,97,121,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,97,112,112,101,97,114,44,110,61,116,40,116,104,105,115,46,116,97,103,44,123,99,108,97,115,115,58,116,104,105,115,46,99,108,97,115,115,79,98,106,101,99,116,44,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,115,104,111,119,34,44,118,97,108,117,101,58,116,104,105,115,46,115,104,111,119,125,93,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,99,108,105,99,107,72,97,110,100,108,101,114,125,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,85,111,44,116,104,105,115,46,115,108,111,116,83,99,111,112,101,41,41,59,114,101,116,117,114,110,32,116,40,66,112,44,123,112,114,111,112,115,58,123,97,112,112,101,97,114,58,101,125,44,111,110,58,123,101,110,116,101,114,58,116,104,105,115,46,111,110,69,110,116,101,114,44,97,102,116,101,114,69,110,116,101,114,58,116,104,105,115,46,111,110,65,102,116,101,114,69,110,116,101,114,44,108,101,97,118,101,58,116,104,105,115,46,111,110,76,101,97,118,101,44,97,102,116,101,114,76,101,97,118,101,58,116,104,105,115,46,111,110,65,102,116,101,114,76,101,97,118,101,125,125,44,91,110,93,41,125,125,41,44,110,118,61,34,99,111,108,108,97,112,115,101,100,34,44,114,118,61,34,110,111,116,45,99,111,108,108,97,112,115,101,100,34,44,105,118,61,34,95,95,66,86,95,116,111,103,103,108,101,34,44,111,118,61,34,34,46,99,111,110,99,97,116,40,105,118,44,34,95,72,65,78,68,76,69,82,95,95,34,41,44,97,118,61,34,34,46,99,111,110,99,97,116,40,105,118,44,34,95,67,76,73,67,75,95,95,34,41,44,115,118,61,34,34,46,99,111,110,99,97,116,40,105,118,44,34,95,83,84,65,84,69,95,95,34,41,44,99,118,61,34,34,46,99,111,110,99,97,116,40,105,118,44,34,95,84,65,82,71,69,84,83,95,95,34,41,44,117,118,61,34,102,97,108,115,101,34,44,108,118,61,34,116,114,117,101,34,44,102,118,61,34,97,114,105,97,45,99,111,110,116,114,111,108,115,34,44,104,118,61,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,100,118,61,34,114,111,108,101,34,44,112,118,61,34,116,97,98,105,110,100,101,120,34,44,118,118,61,34,111,118,101,114,102,108,111,119,45,97,110,99,104,111,114,34,44,103,118,61,84,99,40,102,110,44,34,116,111,103,103,108,101,34,41,44,109,118,61,80,99,40,102,110,44,34,115,116,97,116,101,34,41,44,98,118,61,80,99,40,102,110,44,34,115,121,110,99,45,115,116,97,116,101,34,41,44,121,118,61,84,99,40,102,110,44,34,114,101,113,117,101,115,116,45,115,116,97,116,101,34,41,44,119,118,61,91,102,108,44,98,108,93,44,95,118,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,113,97,40,91,34,98,117,116,116,111,110,34,44,34,97,34,93,44,116,46,116,97,103,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,125,44,120,118,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,109,111,100,105,102,105,101,114,115,44,114,61,116,46,97,114,103,44,105,61,116,46,118,97,108,117,101,44,111,61,86,116,40,110,124,124,123,125,41,59,105,102,40,105,61,79,116,40,105,41,63,105,46,115,112,108,105,116,40,77,41,58,105,44,119,115,40,101,46,116,97,103,78,97,109,101,44,34,97,34,41,41,123,118,97,114,32,97,61,36,115,40,101,44,34,104,114,101,102,34,41,124,124,34,34,59,80,46,116,101,115,116,40,97,41,38,38,111,46,112,117,115,104,40,97,46,114,101,112,108,97,99,101,40,67,44,34,34,41,41,125,114,101,116,117,114,110,32,89,97,40,114,44,105,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,79,116,40,116,41,38,38,111,46,112,117,115,104,40,116,41,125,41,41,44,111,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,38,38,110,46,105,110,100,101,120,79,102,40,116,41,61,61,61,101,125,41,41,125,44,79,118,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,91,97,118,93,59,101,38,38,40,79,99,40,116,44,34,99,108,105,99,107,34,44,101,44,102,111,41,44,79,99,40,116,44,34,107,101,121,100,111,119,110,34,44,101,44,102,111,41,41,44,116,91,97,118,93,61,110,117,108,108,125,44,83,118,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,79,118,40,116,41,44,101,46,99,111,110,116,101,120,116,41,123,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,40,34,107,101,121,100,111,119,110,34,33,61,61,110,46,116,121,112,101,124,124,113,97,40,119,118,44,110,46,107,101,121,67,111,100,101,41,41,38,38,33,79,115,40,116,41,41,123,118,97,114,32,114,61,116,91,99,118,93,124,124,91,93,59,114,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,99,111,110,116,101,120,116,46,36,114,111,111,116,46,36,101,109,105,116,40,103,118,44,116,41,125,41,41,125,125,59,116,91,97,118,93,61,110,44,120,99,40,116,44,34,99,108,105,99,107,34,44,110,44,102,111,41,44,95,118,40,116,41,38,38,120,99,40,116,44,34,107,101,121,100,111,119,110,34,44,110,44,102,111,41,125,125,44,107,118,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,91,111,118,93,38,38,101,46,99,111,110,116,101,120,116,38,38,101,46,99,111,110,116,101,120,116,46,36,114,111,111,116,46,36,111,102,102,40,91,109,118,44,98,118,93,44,116,91,111,118,93,41,44,116,91,111,118,93,61,110,117,108,108,125,44,67,118,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,107,118,40,116,44,101,41,44,101,46,99,111,110,116,101,120,116,41,123,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,101,44,110,41,123,113,97,40,116,91,99,118,93,124,124,91,93,44,101,41,38,38,40,116,91,115,118,93,61,110,44,80,118,40,116,44,110,41,41,125,59,116,91,111,118,93,61,110,44,101,46,99,111,110,116,101,120,116,46,36,114,111,111,116,46,36,111,110,40,91,109,118,44,98,118,93,44,110,41,125,125,44,80,118,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,63,40,65,115,40,116,44,110,118,41,44,68,115,40,116,44,114,118,41,44,73,115,40,116,44,104,118,44,108,118,41,41,58,40,65,115,40,116,44,114,118,41,44,68,115,40,116,44,110,118,41,44,73,115,40,116,44,104,118,44,117,118,41,41,125,44,84,118,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,91,101,93,61,110,117,108,108,44,100,101,108,101,116,101,32,116,91,101,93,125,44,106,118,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,117,38,38,110,46,99,111,110,116,101,120,116,41,123,95,118,40,116,41,38,38,40,70,115,40,116,44,100,118,41,124,124,73,115,40,116,44,100,118,44,34,98,117,116,116,111,110,34,41,44,70,115,40,116,44,112,118,41,124,124,73,115,40,116,44,112,118,44,34,48,34,41,41,44,80,118,40,116,44,116,91,115,118,93,41,59,118,97,114,32,114,61,120,118,40,101,44,116,41,59,114,46,108,101,110,103,116,104,62,48,63,40,73,115,40,116,44,102,118,44,114,46,106,111,105,110,40,34,32,34,41,41,44,82,115,40,116,44,118,118,44,34,110,111,110,101,34,41,41,58,40,77,115,40,116,44,102,118,41,44,78,115,40,116,44,118,118,41,41,44,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,83,118,40,116,44,110,41,125,41,41,44,95,108,40,114,44,116,91,99,118,93,41,124,124,40,116,91,99,118,93,61,114,44,114,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,110,46,99,111,110,116,101,120,116,46,36,114,111,111,116,46,36,101,109,105,116,40,121,118,44,116,41,125,41,41,41,125,125,44,69,118,61,123,98,105,110,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,91,115,118,93,61,33,49,44,116,91,99,118,93,61,91,93,44,67,118,40,116,44,110,41,44,106,118,40,116,44,101,44,110,41,125,44,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,106,118,44,117,112,100,97,116,101,100,58,106,118,44,117,110,98,105,110,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,79,118,40,116,41,44,107,118,40,116,44,110,41,44,84,118,40,116,44,111,118,41,44,84,118,40,116,44,97,118,41,44,84,118,40,116,44,115,118,41,44,84,118,40,116,44,99,118,41,44,65,115,40,116,44,110,118,41,44,65,115,40,116,44,114,118,41,44,77,115,40,116,44,104,118,41,44,77,115,40,116,44,102,118,41,44,77,115,40,116,44,100,118,41,44,78,115,40,116,44,118,118,41,125,125,44,68,118,61,67,101,40,123,100,105,114,101,99,116,105,118,101,115,58,123,86,66,84,111,103,103,108,101,58,69,118,125,125,41,44,65,118,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,67,111,108,108,97,112,115,101,58,101,118,125,44,112,108,117,103,105,110,115,58,123,86,66,84,111,103,103,108,101,80,108,117,103,105,110,58,68,118,125,125,41,44,76,118,61,34,117,110,100,101,102,105,110,101,100,34,33,61,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,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,110,97,118,105,103,97,116,111,114,44,73,118,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,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,101,61,48,59,101,60,116,46,108,101,110,103,116,104,59,101,43,61,49,41,105,102,40,76,118,38,38,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,116,91,101,93,41,62,61,48,41,114,101,116,117,114,110,32,49,59,114,101,116,117,114,110,32,48,125,40,41,59,102,117,110,99,116,105,111,110,32,77,118,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,40,102,117,110,99,116,105,111,110,40,41,123,101,61,33,49,44,116,40,41,125,41,41,41,125,125,102,117,110,99,116,105,111,110,32,36,118,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,40,102,117,110,99,116,105,111,110,40,41,123,101,61,33,49,44,116,40,41,125,41,44,73,118,41,41,125,125,118,97,114,32,70,118,61,76,118,38,38,119,105,110,100,111,119,46,80,114,111,109,105,115,101,44,82,118,61,70,118,63,77,118,58,36,118,59,102,117,110,99,116,105,111,110,32,78,118,40,116,41,123,118,97,114,32,101,61,123,125,59,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,101,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,66,118,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,44,114,61,110,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,114,91,101,93,58,114,125,102,117,110,99,116,105,111,110,32,122,118,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,86,118,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,66,118,40,116,41,44,110,61,101,46,111,118,101,114,102,108,111,119,44,114,61,101,46,111,118,101,114,102,108,111,119,88,44,105,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,105,43,114,41,63,116,58,86,118,40,122,118,40,116,41,41,125,102,117,110,99,116,105,111,110,32,72,118,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,114,101,102,101,114,101,110,99,101,78,111,100,101,63,116,46,114,101,102,101,114,101,110,99,101,78,111,100,101,58,116,125,118,97,114,32,85,118,61,76,118,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,87,118,61,76,118,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,71,118,40,116,41,123,114,101,116,117,114,110,32,49,49,61,61,61,116,63,85,118,58,49,48,61,61,61,116,63,87,118,58,85,118,124,124,87,118,125,102,117,110,99,116,105,111,110,32,113,118,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,118,97,114,32,101,61,71,118,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,119,104,105,108,101,40,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,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,114,61,110,38,38,110,46,110,111,100,101,78,97,109,101,59,114,101,116,117,114,110,32,114,38,38,34,66,79,68,89,34,33,61,61,114,38,38,34,72,84,77,76,34,33,61,61,114,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,66,118,40,110,44,34,112,111,115,105,116,105,111,110,34,41,63,113,118,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,89,118,40,116,41,123,118,97,114,32,101,61,116,46,110,111,100,101,78,97,109,101,59,114,101,116,117,114,110,34,66,79,68,89,34,33,61,61,101,38,38,40,34,72,84,77,76,34,61,61,61,101,124,124,113,118,40,116,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,41,61,61,61,116,41,125,102,117,110,99,116,105,111,110,32,75,118,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,75,118,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,88,118,40,116,44,101,41,123,105,102,40,33,116,124,124,33,116,46,110,111,100,101,84,121,112,101,124,124,33,101,124,124,33,101,46,110,111,100,101,84,121,112,101,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,114,61,110,63,116,58,101,44,105,61,110,63,101,58,116,44,111,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,82,97,110,103,101,40,41,59,111,46,115,101,116,83,116,97,114,116,40,114,44,48,41,44,111,46,115,101,116,69,110,100,40,105,44,48,41,59,118,97,114,32,97,61,111,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,97,38,38,101,33,61,61,97,124,124,114,46,99,111,110,116,97,105,110,115,40,105,41,41,114,101,116,117,114,110,32,89,118,40,97,41,63,97,58,113,118,40,97,41,59,118,97,114,32,115,61,75,118,40,116,41,59,114,101,116,117,114,110,32,115,46,104,111,115,116,63,88,118,40,115,46,104,111,115,116,44,101,41,58,88,118,40,116,44,75,118,40,101,41,46,104,111,115,116,41,125,102,117,110,99,116,105,111,110,32,90,118,40,116,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,49,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,44,110,61,34,116,111,112,34,61,61,61,101,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,114,61,116,46,110,111,100,101,78,97,109,101,59,105,102,40,34,66,79,68,89,34,61,61,61,114,124,124,34,72,84,77,76,34,61,61,61,114,41,123,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,44,111,61,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,59,114,101,116,117,114,110,32,111,91,110,93,125,114,101,116,117,114,110,32,116,91,110,93,125,102,117,110,99,116,105,111,110,32,74,118,40,116,44,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,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,38,38,97,114,103,117,109,101,110,116,115,91,50,93,44,114,61,90,118,40,101,44,34,116,111,112,34,41,44,105,61,90,118,40,101,44,34,108,101,102,116,34,41,44,111,61,110,63,45,49,58,49,59,114,101,116,117,114,110,32,116,46,116,111,112,43,61,114,42,111,44,116,46,98,111,116,116,111,109,43,61,114,42,111,44,116,46,108,101,102,116,43,61,105,42,111,44,116,46,114,105,103,104,116,43,61,105,42,111,44,116,125,102,117,110,99,116,105,111,110,32,81,118,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,114,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,41,43,112,97,114,115,101,70,108,111,97,116,40,116,91,34,98,111,114,100,101,114,34,43,114,43,34,87,105,100,116,104,34,93,41,125,102,117,110,99,116,105,111,110,32,116,103,40,116,44,101,44,110,44,114,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,71,118,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,114,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,114,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,101,103,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,114,61,71,118,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,116,103,40,34,72,101,105,103,104,116,34,44,101,44,110,44,114,41,44,119,105,100,116,104,58,116,103,40,34,87,105,100,116,104,34,44,101,44,110,44,114,41,125,125,118,97,114,32,110,103,61,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,44,114,103,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,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,114,61,101,91,110,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,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,114,38,38,40,114,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,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,44,114,41,123,114,101,116,117,114,110,32,110,38,38,116,40,101,46,112,114,111,116,111,116,121,112,101,44,110,41,44,114,38,38,116,40,101,44,114,41,44,101,125,125,40,41,44,105,103,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,111,103,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,114,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,114,41,38,38,40,116,91,114,93,61,110,91,114,93,41,125,114,101,116,117,114,110,32,116,125,59,102,117,110,99,116,105,111,110,32,97,103,40,116,41,123,114,101,116,117,114,110,32,111,103,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,115,103,40,116,41,123,118,97,114,32,101,61,123,125,59,116,114,121,123,105,102,40,71,118,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,90,118,40,116,44,34,116,111,112,34,41,44,114,61,90,118,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,114,44,101,46,98,111,116,116,111,109,43,61,110,44,101,46,114,105,103,104,116,43,61,114,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,65,101,41,123,125,118,97,114,32,105,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,111,61,34,72,84,77,76,34,61,61,61,116,46,110,111,100,101,78,97,109,101,63,101,103,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,58,123,125,44,97,61,111,46,119,105,100,116,104,124,124,116,46,99,108,105,101,110,116,87,105,100,116,104,124,124,105,46,119,105,100,116,104,44,115,61,111,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,105,46,104,101,105,103,104,116,44,99,61,116,46,111,102,102,115,101,116,87,105,100,116,104,45,97,44,117,61,116,46,111,102,102,115,101,116,72,101,105,103,104,116,45,115,59,105,102,40,99,124,124,117,41,123,118,97,114,32,108,61,66,118,40,116,41,59,99,45,61,81,118,40,108,44,34,120,34,41,44,117,45,61,81,118,40,108,44,34,121,34,41,44,105,46,119,105,100,116,104,45,61,99,44,105,46,104,101,105,103,104,116,45,61,117,125,114,101,116,117,114,110,32,97,103,40,105,41,125,102,117,110,99,116,105,111,110,32,99,103,40,116,44,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,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,38,38,97,114,103,117,109,101,110,116,115,91,50,93,44,114,61,71,118,40,49,48,41,44,105,61,34,72,84,77,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,44,111,61,115,103,40,116,41,44,97,61,115,103,40,101,41,44,115,61,86,118,40,116,41,44,99,61,66,118,40,101,41,44,117,61,112,97,114,115,101,70,108,111,97,116,40,99,46,98,111,114,100,101,114,84,111,112,87,105,100,116,104,41,44,108,61,112,97,114,115,101,70,108,111,97,116,40,99,46,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,41,59,110,38,38,105,38,38,40,97,46,116,111,112,61,77,97,116,104,46,109,97,120,40,97,46,116,111,112,44,48,41,44,97,46,108,101,102,116,61,77,97,116,104,46,109,97,120,40,97,46,108,101,102,116,44,48,41,41,59,118,97,114,32,102,61,97,103,40,123,116,111,112,58,111,46,116,111,112,45,97,46,116,111,112,45,117,44,108,101,102,116,58,111,46,108,101,102,116,45,97,46,108,101,102,116,45,108,44,119,105,100,116,104,58,111,46,119,105,100,116,104,44,104,101,105,103,104,116,58,111,46,104,101,105,103,104,116,125,41,59,105,102,40,102,46,109,97,114,103,105,110,84,111,112,61,48,44,102,46,109,97,114,103,105,110,76,101,102,116,61,48,44,33,114,38,38,105,41,123,118,97,114,32,104,61,112,97,114,115,101,70,108,111,97,116,40,99,46,109,97,114,103,105,110,84,111,112,41,44,100,61,112,97,114,115,101,70,108,111,97,116,40,99,46,109,97,114,103,105,110,76,101,102,116,41,59,102,46,116,111,112,45,61,117,45,104,44,102,46,98,111,116,116,111,109,45,61,117,45,104,44,102,46,108,101,102,116,45,61,108,45,100,44,102,46,114,105,103,104,116,45,61,108,45,100,44,102,46,109,97,114,103,105,110,84,111,112,61,104,44,102,46,109,97,114,103,105,110,76,101,102,116,61,100,125,114,101,116,117,114,110,40,114,38,38,33,110,63,101,46,99,111,110,116,97,105,110,115,40,115,41,58,101,61,61,61,115,38,38,34,66,79,68,89,34,33,61,61,115,46,110,111,100,101,78,97,109,101,41,38,38,40,102,61,74,118,40,102,44,101,41,41,44,102,125,102,117,110,99,116,105,111,110,32,117,103,40,116,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,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,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,114,61,99,103,40,116,44,110,41,44,105,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,111,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,97,61,101,63,48,58,90,118,40,110,41,44,115,61,101,63,48,58,90,118,40,110,44,34,108,101,102,116,34,41,44,99,61,123,116,111,112,58,97,45,114,46,116,111,112,43,114,46,109,97,114,103,105,110,84,111,112,44,108,101,102,116,58,115,45,114,46,108,101,102,116,43,114,46,109,97,114,103,105,110,76,101,102,116,44,119,105,100,116,104,58,105,44,104,101,105,103,104,116,58,111,125,59,114,101,116,117,114,110,32,97,103,40,99,41,125,102,117,110,99,116,105,111,110,32,108,103,40,116,41,123,118,97,114,32,101,61,116,46,110,111,100,101,78,97,109,101,59,105,102,40,34,66,79,68,89,34,61,61,61,101,124,124,34,72,84,77,76,34,61,61,61,101,41,114,101,116,117,114,110,33,49,59,105,102,40,34,102,105,120,101,100,34,61,61,61,66,118,40,116,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,110,61,122,118,40,116,41,59,114,101,116,117,114,110,33,33,110,38,38,108,103,40,110,41,125,102,117,110,99,116,105,111,110,32,102,103,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,71,118,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,118,97,114,32,101,61,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,119,104,105,108,101,40,101,38,38,34,110,111,110,101,34,61,61,61,66,118,40,101,44,34,116,114,97,110,115,102,111,114,109,34,41,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,104,103,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,52,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,111,61,123,116,111,112,58,48,44,108,101,102,116,58,48,125,44,97,61,105,63,102,103,40,116,41,58,88,118,40,116,44,72,118,40,101,41,41,59,105,102,40,34,118,105,101,119,112,111,114,116,34,61,61,61,114,41,111,61,117,103,40,97,44,105,41,59,101,108,115,101,123,118,97,114,32,115,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,114,63,40,115,61,86,118,40,122,118,40,101,41,41,44,34,66,79,68,89,34,61,61,61,115,46,110,111,100,101,78,97,109,101,38,38,40,115,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,41,58,115,61,34,119,105,110,100,111,119,34,61,61,61,114,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,114,59,118,97,114,32,99,61,99,103,40,115,44,97,44,105,41,59,105,102,40,34,72,84,77,76,34,33,61,61,115,46,110,111,100,101,78,97,109,101,124,124,108,103,40,97,41,41,111,61,99,59,101,108,115,101,123,118,97,114,32,117,61,101,103,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,44,108,61,117,46,104,101,105,103,104,116,44,102,61,117,46,119,105,100,116,104,59,111,46,116,111,112,43,61,99,46,116,111,112,45,99,46,109,97,114,103,105,110,84,111,112,44,111,46,98,111,116,116,111,109,61,108,43,99,46,116,111,112,44,111,46,108,101,102,116,43,61,99,46,108,101,102,116,45,99,46,109,97,114,103,105,110,76,101,102,116,44,111,46,114,105,103,104,116,61,102,43,99,46,108,101,102,116,125,125,110,61,110,124,124,48,59,118,97,114,32,104,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,32,111,46,108,101,102,116,43,61,104,63,110,58,110,46,108,101,102,116,124,124,48,44,111,46,116,111,112,43,61,104,63,110,58,110,46,116,111,112,124,124,48,44,111,46,114,105,103,104,116,45,61,104,63,110,58,110,46,114,105,103,104,116,124,124,48,44,111,46,98,111,116,116,111,109,45,61,104,63,110,58,110,46,98,111,116,116,111,109,124,124,48,44,111,125,102,117,110,99,116,105,111,110,32,100,103,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,42,110,125,102,117,110,99,116,105,111,110,32,112,103,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,53,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,97,61,104,103,40,110,44,114,44,111,44,105,41,44,115,61,123,116,111,112,58,123,119,105,100,116,104,58,97,46,119,105,100,116,104,44,104,101,105,103,104,116,58,101,46,116,111,112,45,97,46,116,111,112,125,44,114,105,103,104,116,58,123,119,105,100,116,104,58,97,46,114,105,103,104,116,45,101,46,114,105,103,104,116,44,104,101,105,103,104,116,58,97,46,104,101,105,103,104,116,125,44,98,111,116,116,111,109,58,123,119,105,100,116,104,58,97,46,119,105,100,116,104,44,104,101,105,103,104,116,58,97,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,97,46,108,101,102,116,44,104,101,105,103,104,116,58,97,46,104,101,105,103,104,116,125,125,44,99,61,79,98,106,101,99,116,46,107,101,121,115,40,115,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,103,40,123,107,101,121,58,116,125,44,115,91,116,93,44,123,97,114,101,97,58,100,103,40,115,91,116,93,41,125,41,125,41,41,46,115,111,114,116,40,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,41,44,117,61,99,46,102,105,108,116,101,114,40,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,114,61,116,46,104,101,105,103,104,116,59,114,101,116,117,114,110,32,101,62,61,110,46,99,108,105,101,110,116,87,105,100,116,104,38,38,114,62,61,110,46,99,108,105,101,110,116,72,101,105,103,104,116,125,41,41,44,108,61,117,46,108,101,110,103,116,104,62,48,63,117,91,48,93,46,107,101,121,58,99,91,48,93,46,107,101,121,44,102,61,116,46,115,112,108,105,116,40,34,45,34,41,91,49,93,59,114,101,116,117,114,110,32,108,43,40,102,63,34,45,34,43,102,58,34,34,41,125,102,117,110,99,116,105,111,110,32,118,103,40,116,44,101,44,110,41,123,118,97,114,32,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,51,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,44,105,61,114,63,102,103,40,101,41,58,88,118,40,101,44,72,118,40,110,41,41,59,114,101,116,117,114,110,32,99,103,40,110,44,105,44,114,41,125,102,117,110,99,116,105,111,110,32,103,103,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,44,110,61,101,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,41,44,114,61,112,97,114,115,101,70,108,111,97,116,40,110,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,110,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,110,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,110,46,109,97,114,103,105,110,82,105,103,104,116,124,124,48,41,44,111,61,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,114,125,59,114,101,116,117,114,110,32,111,125,102,117,110,99,116,105,111,110,32,109,103,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,40,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,41,125,102,117,110,99,116,105,111,110,32,98,103,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,114,61,103,103,40,116,41,44,105,61,123,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,44,111,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,97,61,111,63,34,116,111,112,34,58,34,108,101,102,116,34,44,115,61,111,63,34,108,101,102,116,34,58,34,116,111,112,34,44,99,61,111,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,117,61,111,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,105,91,97,93,61,101,91,97,93,43,101,91,99,93,47,50,45,114,91,99,93,47,50,44,105,91,115,93,61,110,61,61,61,115,63,101,91,115,93,45,114,91,117,93,58,101,91,109,103,40,115,41,93,44,105,125,102,117,110,99,116,105,111,110,32,121,103,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,119,103,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,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,41,59,118,97,114,32,114,61,121,103,40,116,44,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,41,59,114,101,116,117,114,110,32,116,46,105,110,100,101,120,79,102,40,114,41,125,102,117,110,99,116,105,111,110,32,95,103,40,116,44,101,44,110,41,123,118,97,114,32,114,61,118,111,105,100,32,48,61,61,61,110,63,116,58,116,46,115,108,105,99,101,40,48,44,119,103,40,116,44,34,110,97,109,101,34,44,110,41,41,59,114,101,116,117,114,110,32,114,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,91,34,102,117,110,99,116,105,111,110,34,93,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,110,61,116,91,34,102,117,110,99,116,105,111,110,34,93,124,124,116,46,102,110,59,116,46,101,110,97,98,108,101,100,38,38,78,118,40,110,41,38,38,40,101,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,97,103,40,101,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,41,44,101,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,61,97,103,40,101,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,41,44,101,61,110,40,101,44,116,41,41,125,41,41,44,101,125,102,117,110,99,116,105,111,110,32,120,103,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,118,103,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,112,103,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,98,103,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,95,103,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,102,117,110,99,116,105,111,110,32,79,103,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,115,111,109,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,110,97,109,101,44,114,61,116,46,101,110,97,98,108,101,100,59,114,101,116,117,114,110,32,114,38,38,110,61,61,61,101,125,41,41,125,102,117,110,99,116,105,111,110,32,83,103,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,114,61,48,59,114,60,101,46,108,101,110,103,116,104,59,114,43,43,41,123,118,97,114,32,105,61,101,91,114,93,44,111,61,105,63,34,34,43,105,43,110,58,116,59,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,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,111,93,41,114,101,116,117,114,110,32,111,125,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,107,103,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,79,103,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,83,103,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,102,117,110,99,116,105,111,110,32,67,103,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,80,103,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,34,66,79,68,89,34,61,61,61,116,46,110,111,100,101,78,97,109,101,44,111,61,105,63,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,58,116,59,111,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,44,110,44,123,112,97,115,115,105,118,101,58,33,48,125,41,44,105,124,124,80,103,40,86,118,40,111,46,112,97,114,101,110,116,78,111,100,101,41,44,101,44,110,44,114,41,44,114,46,112,117,115,104,40,111,41,125,102,117,110,99,116,105,111,110,32,84,103,40,116,44,101,44,110,44,114,41,123,110,46,117,112,100,97,116,101,66,111,117,110,100,61,114,44,67,103,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,105,61,86,118,40,116,41,59,114,101,116,117,114,110,32,80,103,40,105,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,105,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,106,103,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,84,103,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,102,117,110,99,116,105,111,110,32,69,103,40,116,44,101,41,123,114,101,116,117,114,110,32,67,103,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,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,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,125,102,117,110,99,116,105,111,110,32,68,103,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,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,69,103,40,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,115,116,97,116,101,41,41,125,102,117,110,99,116,105,111,110,32,65,103,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,76,103,40,116,44,101,41,123,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,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,110,41,38,38,65,103,40,101,91,110,93,41,38,38,40,114,61,34,112,120,34,41,44,116,46,115,116,121,108,101,91,110,93,61,101,91,110,93,43,114,125,41,41,125,102,117,110,99,116,105,111,110,32,73,103,40,116,44,101,41,123,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,101,91,110,93,59,33,49,33,61,61,114,63,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,110,44,101,91,110,93,41,58,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,110,41,125,41,41,125,102,117,110,99,116,105,111,110,32,77,103,40,116,41,123,114,101,116,117,114,110,32,76,103,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,73,103,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,116,46,97,116,116,114,105,98,117,116,101,115,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,76,103,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,102,117,110,99,116,105,111,110,32,36,103,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,118,103,40,105,44,101,44,116,44,110,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,97,61,112,103,40,110,46,112,108,97,99,101,109,101,110,116,44,111,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,97,41,44,76,103,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,102,117,110,99,116,105,111,110,32,70,103,40,116,44,101,41,123,118,97,114,32,110,61,116,46,111,102,102,115,101,116,115,44,114,61,110,46,112,111,112,112,101,114,44,105,61,110,46,114,101,102,101,114,101,110,99,101,44,111,61,77,97,116,104,46,114,111,117,110,100,44,97,61,77,97,116,104,46,102,108,111,111,114,44,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,44,99,61,111,40,105,46,119,105,100,116,104,41,44,117,61,111,40,114,46,119,105,100,116,104,41,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,116,46,112,108,97,99,101,109,101,110,116,41,44,102,61,45,49,33,61,61,116,46,112,108,97,99,101,109,101,110,116,46,105,110,100,101,120,79,102,40,34,45,34,41,44,104,61,99,37,50,61,61,61,117,37,50,44,100,61,99,37,50,61,61,61,49,38,38,117,37,50,61,61,61,49,44,112,61,101,63,108,124,124,102,124,124,104,63,111,58,97,58,115,44,118,61,101,63,111,58,115,59,114,101,116,117,114,110,123,108,101,102,116,58,112,40,100,38,38,33,102,38,38,101,63,114,46,108,101,102,116,45,49,58,114,46,108,101,102,116,41,44,116,111,112,58,118,40,114,46,116,111,112,41,44,98,111,116,116,111,109,58,118,40,114,46,98,111,116,116,111,109,41,44,114,105,103,104,116,58,112,40,114,46,114,105,103,104,116,41,125,125,118,97,114,32,82,103,61,76,118,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,78,103,40,116,44,101,41,123,118,97,114,32,110,61,101,46,120,44,114,61,101,46,121,44,105,61,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,111,61,121,103,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,40,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,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,111,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,97,61,118,111,105,100,32,48,33,61,61,111,63,111,58,101,46,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,44,115,61,113,118,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,44,99,61,115,103,40,115,41,44,117,61,123,112,111,115,105,116,105,111,110,58,105,46,112,111,115,105,116,105,111,110,125,44,108,61,70,103,40,116,44,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,82,103,41,44,102,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,104,61,34,114,105,103,104,116,34,61,61,61,114,63,34,108,101,102,116,34,58,34,114,105,103,104,116,34,44,100,61,83,103,40,34,116,114,97,110,115,102,111,114,109,34,41,44,112,61,118,111,105,100,32,48,44,118,61,118,111,105,100,32,48,59,105,102,40,118,61,34,98,111,116,116,111,109,34,61,61,61,102,63,34,72,84,77,76,34,61,61,61,115,46,110,111,100,101,78,97,109,101,63,45,115,46,99,108,105,101,110,116,72,101,105,103,104,116,43,108,46,98,111,116,116,111,109,58,45,99,46,104,101,105,103,104,116,43,108,46,98,111,116,116,111,109,58,108,46,116,111,112,44,112,61,34,114,105,103,104,116,34,61,61,61,104,63,34,72,84,77,76,34,61,61,61,115,46,110,111,100,101,78,97,109,101,63,45,115,46,99,108,105,101,110,116,87,105,100,116,104,43,108,46,114,105,103,104,116,58,45,99,46,119,105,100,116,104,43,108,46,114,105,103,104,116,58,108,46,108,101,102,116,44,97,38,38,100,41,117,91,100,93,61,34,116,114,97,110,115,108,97,116,101,51,100,40,34,43,112,43,34,112,120,44,32,34,43,118,43,34,112,120,44,32,48,41,34,44,117,91,102,93,61,48,44,117,91,104,93,61,48,44,117,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,103,61,34,98,111,116,116,111,109,34,61,61,61,102,63,45,49,58,49,44,109,61,34,114,105,103,104,116,34,61,61,61,104,63,45,49,58,49,59,117,91,102,93,61,118,42,103,44,117,91,104,93,61,112,42,109,44,117,46,119,105,108,108,67,104,97,110,103,101,61,102,43,34,44,32,34,43,104,125,118,97,114,32,98,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,111,103,40,123,125,44,98,44,116,46,97,116,116,114,105,98,117,116,101,115,41,44,116,46,115,116,121,108,101,115,61,111,103,40,123,125,44,117,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,111,103,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,102,117,110,99,116,105,111,110,32,66,103,40,116,44,101,44,110,41,123,118,97,114,32,114,61,121,103,40,116,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,110,97,109,101,59,114,101,116,117,114,110,32,110,61,61,61,101,125,41,41,44,105,61,33,33,114,38,38,116,46,115,111,109,101,40,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,114,46,111,114,100,101,114,125,41,41,59,105,102,40,33,105,41,123,118,97,114,32,111,61,34,96,34,43,101,43,34,96,34,44,97,61,34,96,34,43,110,43,34,96,34,59,99,111,110,115,111,108,101,46,119,97,114,110,40,97,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,111,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,111,43,34,33,34,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,122,103,40,116,44,101,41,123,118,97,114,32,110,59,105,102,40,33,66,103,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,114,61,101,46,101,108,101,109,101,110,116,59,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,114,41,123,105,102,40,114,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,114,41,44,33,114,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,114,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,105,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,111,61,116,46,111,102,102,115,101,116,115,44,97,61,111,46,112,111,112,112,101,114,44,115,61,111,46,114,101,102,101,114,101,110,99,101,44,99,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,105,41,44,117,61,99,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,108,61,99,63,34,84,111,112,34,58,34,76,101,102,116,34,44,102,61,108,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,104,61,99,63,34,108,101,102,116,34,58,34,116,111,112,34,44,100,61,99,63,34,98,111,116,116,111,109,34,58,34,114,105,103,104,116,34,44,112,61,103,103,40,114,41,91,117,93,59,115,91,100,93,45,112,60,97,91,102,93,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,102,93,45,61,97,91,102,93,45,40,115,91,100,93,45,112,41,41,44,115,91,102,93,43,112,62,97,91,100,93,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,102,93,43,61,115,91,102,93,43,112,45,97,91,100,93,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,97,103,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,41,59,118,97,114,32,118,61,115,91,102,93,43,115,91,117,93,47,50,45,112,47,50,44,103,61,66,118,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,44,109,61,112,97,114,115,101,70,108,111,97,116,40,103,91,34,109,97,114,103,105,110,34,43,108,93,41,44,98,61,112,97,114,115,101,70,108,111,97,116,40,103,91,34,98,111,114,100,101,114,34,43,108,43,34,87,105,100,116,104,34,93,41,44,121,61,118,45,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,102,93,45,109,45,98,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,97,91,117,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,114,44,116,46,111,102,102,115,101,116,115,46,97,114,114,111,119,61,40,110,61,123,125,44,105,103,40,110,44,102,44,77,97,116,104,46,114,111,117,110,100,40,121,41,41,44,105,103,40,110,44,104,44,34,34,41,44,110,41,44,116,125,102,117,110,99,116,105,111,110,32,86,103,40,116,41,123,114,101,116,117,114,110,34,101,110,100,34,61,61,61,116,63,34,115,116,97,114,116,34,58,34,115,116,97,114,116,34,61,61,61,116,63,34,101,110,100,34,58,116,125,118,97,114,32,72,103,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,85,103,61,72,103,46,115,108,105,99,101,40,51,41,59,102,117,110,99,116,105,111,110,32,87,103,40,116,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,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,110,61,85,103,46,105,110,100,101,120,79,102,40,116,41,44,114,61,85,103,46,115,108,105,99,101,40,110,43,49,41,46,99,111,110,99,97,116,40,85,103,46,115,108,105,99,101,40,48,44,110,41,41,59,114,101,116,117,114,110,32,101,63,114,46,114,101,118,101,114,115,101,40,41,58,114,125,118,97,114,32,71,103,61,123,70,76,73,80,58,34,102,108,105,112,34,44,67,76,79,67,75,87,73,83,69,58,34,99,108,111,99,107,119,105,115,101,34,44,67,79,85,78,84,69,82,67,76,79,67,75,87,73,83,69,58,34,99,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,34,125,59,102,117,110,99,116,105,111,110,32,113,103,40,116,44,101,41,123,105,102,40,79,103,40,116,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,116,59,105,102,40,116,46,102,108,105,112,112,101,100,38,38,116,46,112,108,97,99,101,109,101,110,116,61,61,61,116,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,116,59,118,97,114,32,110,61,104,103,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,101,46,112,97,100,100,105,110,103,44,101,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,116,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,114,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,105,61,109,103,40,114,41,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,49,93,124,124,34,34,44,97,61,91,93,59,115,119,105,116,99,104,40,101,46,98,101,104,97,118,105,111,114,41,123,99,97,115,101,32,71,103,46,70,76,73,80,58,97,61,91,114,44,105,93,59,98,114,101,97,107,59,99,97,115,101,32,71,103,46,67,76,79,67,75,87,73,83,69,58,97,61,87,103,40,114,41,59,98,114,101,97,107,59,99,97,115,101,32,71,103,46,67,79,85,78,84,69,82,67,76,79,67,75,87,73,83,69,58,97,61,87,103,40,114,44,33,48,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,97,61,101,46,98,101,104,97,118,105,111,114,125,114,101,116,117,114,110,32,97,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,115,44,99,41,123,105,102,40,114,33,61,61,115,124,124,97,46,108,101,110,103,116,104,61,61,61,99,43,49,41,114,101,116,117,114,110,32,116,59,114,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,105,61,109,103,40,114,41,59,118,97,114,32,117,61,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,108,61,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,102,61,77,97,116,104,46,102,108,111,111,114,44,104,61,34,108,101,102,116,34,61,61,61,114,38,38,102,40,117,46,114,105,103,104,116,41,62,102,40,108,46,108,101,102,116,41,124,124,34,114,105,103,104,116,34,61,61,61,114,38,38,102,40,117,46,108,101,102,116,41,60,102,40,108,46,114,105,103,104,116,41,124,124,34,116,111,112,34,61,61,61,114,38,38,102,40,117,46,98,111,116,116,111,109,41,62,102,40,108,46,116,111,112,41,124,124,34,98,111,116,116,111,109,34,61,61,61,114,38,38,102,40,117,46,116,111,112,41,60,102,40,108,46,98,111,116,116,111,109,41,44,100,61,102,40,117,46,108,101,102,116,41,60,102,40,110,46,108,101,102,116,41,44,112,61,102,40,117,46,114,105,103,104,116,41,62,102,40,110,46,114,105,103,104,116,41,44,118,61,102,40,117,46,116,111,112,41,60,102,40,110,46,116,111,112,41,44,103,61,102,40,117,46,98,111,116,116,111,109,41,62,102,40,110,46,98,111,116,116,111,109,41,44,109,61,34,108,101,102,116,34,61,61,61,114,38,38,100,124,124,34,114,105,103,104,116,34,61,61,61,114,38,38,112,124,124,34,116,111,112,34,61,61,61,114,38,38,118,124,124,34,98,111,116,116,111,109,34,61,61,61,114,38,38,103,44,98,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,114,41,44,121,61,33,33,101,46,102,108,105,112,86,97,114,105,97,116,105,111,110,115,38,38,40,98,38,38,34,115,116,97,114,116,34,61,61,61,111,38,38,100,124,124,98,38,38,34,101,110,100,34,61,61,61,111,38,38,112,124,124,33,98,38,38,34,115,116,97,114,116,34,61,61,61,111,38,38,118,124,124,33,98,38,38,34,101,110,100,34,61,61,61,111,38,38,103,41,44,119,61,33,33,101,46,102,108,105,112,86,97,114,105,97,116,105,111,110,115,66,121,67,111,110,116,101,110,116,38,38,40,98,38,38,34,115,116,97,114,116,34,61,61,61,111,38,38,112,124,124,98,38,38,34,101,110,100,34,61,61,61,111,38,38,100,124,124,33,98,38,38,34,115,116,97,114,116,34,61,61,61,111,38,38,103,124,124,33,98,38,38,34,101,110,100,34,61,61,61,111,38,38,118,41,44,95,61,121,124,124,119,59,40,104,124,124,109,124,124,95,41,38,38,40,116,46,102,108,105,112,112,101,100,61,33,48,44,40,104,124,124,109,41,38,38,40,114,61,97,91,99,43,49,93,41,44,95,38,38,40,111,61,86,103,40,111,41,41,44,116,46,112,108,97,99,101,109,101,110,116,61,114,43,40,111,63,34,45,34,43,111,58,34,34,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,111,103,40,123,125,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,98,103,40,116,46,105,110,115,116,97,110,99,101,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,41,44,116,61,95,103,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,116,44,34,102,108,105,112,34,41,41,125,41,41,44,116,125,102,117,110,99,116,105,111,110,32,89,103,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,114,61,101,46,114,101,102,101,114,101,110,99,101,44,105,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,111,61,77,97,116,104,46,102,108,111,111,114,44,97,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,105,41,44,115,61,97,63,34,114,105,103,104,116,34,58,34,98,111,116,116,111,109,34,44,99,61,97,63,34,108,101,102,116,34,58,34,116,111,112,34,44,117,61,97,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,115,93,60,111,40,114,91,99,93,41,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,99,93,61,111,40,114,91,99,93,41,45,110,91,117,93,41,44,110,91,99,93,62,111,40,114,91,115,93,41,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,99,93,61,111,40,114,91,115,93,41,41,44,116,125,102,117,110,99,116,105,111,110,32,75,103,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,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,111,61,43,105,91,49,93,44,97,61,105,91,50,93,59,105,102,40,33,111,41,114,101,116,117,114,110,32,116,59,105,102,40,48,61,61,61,97,46,105,110,100,101,120,79,102,40,34,37,34,41,41,123,118,97,114,32,115,61,118,111,105,100,32,48,59,115,119,105,116,99,104,40,97,41,123,99,97,115,101,34,37,112,34,58,115,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,115,61,114,125,118,97,114,32,99,61,97,103,40,115,41,59,114,101,116,117,114,110,32,99,91,101,93,47,49,48,48,42,111,125,105,102,40,34,118,104,34,61,61,61,97,124,124,34,118,119,34,61,61,61,97,41,123,118,97,114,32,117,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,117,61,34,118,104,34,61,61,61,97,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,44,117,47,49,48,48,42,111,125,114,101,116,117,114,110,32,111,125,102,117,110,99,116,105,111,110,32,88,103,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,91,48,44,48,93,44,111,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,114,41,44,97,61,116,46,115,112,108,105,116,40,47,40,92,43,124,92,45,41,47,41,46,109,97,112,40,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,41,44,115,61,97,46,105,110,100,101,120,79,102,40,121,103,40,97,44,40,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,41,59,97,91,115,93,38,38,45,49,61,61,61,97,91,115,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,99,61,47,92,115,42,44,92,115,42,124,92,115,43,47,44,117,61,45,49,33,61,61,115,63,91,97,46,115,108,105,99,101,40,48,44,115,41,46,99,111,110,99,97,116,40,91,97,91,115,93,46,115,112,108,105,116,40,99,41,91,48,93,93,41,44,91,97,91,115,93,46,115,112,108,105,116,40,99,41,91,49,93,93,46,99,111,110,99,97,116,40,97,46,115,108,105,99,101,40,115,43,49,41,41,93,58,91,97,93,59,114,101,116,117,114,110,32,117,61,117,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,118,97,114,32,105,61,40,49,61,61,61,114,63,33,111,58,111,41,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,97,61,33,49,59,114,101,116,117,114,110,32,116,46,114,101,100,117,99,101,40,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,97,61,33,48,44,116,41,58,97,63,40,116,91,116,46,108,101,110,103,116,104,45,49,93,43,61,101,44,97,61,33,49,44,116,41,58,116,46,99,111,110,99,97,116,40,101,41,125,41,44,91,93,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,75,103,40,116,44,105,44,101,44,110,41,125,41,41,125,41,41,44,117,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,65,103,40,110,41,38,38,40,105,91,101,93,43,61,110,42,40,34,45,34,61,61,61,116,91,114,45,49,93,63,45,49,58,49,41,41,125,41,41,125,41,41,44,105,125,102,117,110,99,116,105,111,110,32,90,103,40,116,44,101,41,123,118,97,114,32,110,61,101,46,111,102,102,115,101,116,44,114,61,116,46,112,108,97,99,101,109,101,110,116,44,105,61,116,46,111,102,102,115,101,116,115,44,111,61,105,46,112,111,112,112,101,114,44,97,61,105,46,114,101,102,101,114,101,110,99,101,44,115,61,114,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,99,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,99,61,65,103,40,43,110,41,63,91,43,110,44,48,93,58,88,103,40,110,44,111,44,97,44,115,41,44,34,108,101,102,116,34,61,61,61,115,63,40,111,46,116,111,112,43,61,99,91,48,93,44,111,46,108,101,102,116,45,61,99,91,49,93,41,58,34,114,105,103,104,116,34,61,61,61,115,63,40,111,46,116,111,112,43,61,99,91,48,93,44,111,46,108,101,102,116,43,61,99,91,49,93,41,58,34,116,111,112,34,61,61,61,115,63,40,111,46,108,101,102,116,43,61,99,91,48,93,44,111,46,116,111,112,45,61,99,91,49,93,41,58,34,98,111,116,116,111,109,34,61,61,61,115,38,38,40,111,46,108,101,102,116,43,61,99,91,48,93,44,111,46,116,111,112,43,61,99,91,49,93,41,44,116,46,112,111,112,112,101,114,61,111,44,116,125,102,117,110,99,116,105,111,110,32,74,103,40,116,44,101,41,123,118,97,114,32,110,61,101,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,124,124,113,118,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,110,38,38,40,110,61,113,118,40,110,41,41,59,118,97,114,32,114,61,83,103,40,34,116,114,97,110,115,102,111,114,109,34,41,44,105,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,111,61,105,46,116,111,112,44,97,61,105,46,108,101,102,116,44,115,61,105,91,114,93,59,105,46,116,111,112,61,34,34,44,105,46,108,101,102,116,61,34,34,44,105,91,114,93,61,34,34,59,118,97,114,32,99,61,104,103,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,101,46,112,97,100,100,105,110,103,44,110,44,116,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,59,105,46,116,111,112,61,111,44,105,46,108,101,102,116,61,97,44,105,91,114,93,61,115,44,101,46,98,111,117,110,100,97,114,105,101,115,61,99,59,118,97,114,32,117,61,101,46,112,114,105,111,114,105,116,121,44,108,61,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,102,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,110,61,108,91,116,93,59,114,101,116,117,114,110,32,108,91,116,93,60,99,91,116,93,38,38,33,101,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,97,120,40,108,91,116,93,44,99,91,116,93,41,41,44,105,103,40,123,125,44,116,44,110,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,110,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,114,61,108,91,110,93,59,114,101,116,117,114,110,32,108,91,116,93,62,99,91,116,93,38,38,33,101,46,101,115,99,97,112,101,87,105,116,104,82,101,102,101,114,101,110,99,101,38,38,40,114,61,77,97,116,104,46,109,105,110,40,108,91,110,93,44,99,91,116,93,45,40,34,114,105,103,104,116,34,61,61,61,116,63,108,46,119,105,100,116,104,58,108,46,104,101,105,103,104,116,41,41,41,44,105,103,40,123,125,44,110,44,114,41,125,125,59,114,101,116,117,114,110,32,117,46,102,111,114,69,97,99,104,40,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,108,61,111,103,40,123,125,44,108,44,102,91,101,93,40,116,41,41,125,41,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,108,44,116,125,102,117,110,99,116,105,111,110,32,81,103,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,114,61,101,46,115,112,108,105,116,40,34,45,34,41,91,49,93,59,105,102,40,114,41,123,118,97,114,32,105,61,116,46,111,102,102,115,101,116,115,44,111,61,105,46,114,101,102,101,114,101,110,99,101,44,97,61,105,46,112,111,112,112,101,114,44,115,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,99,61,115,63,34,108,101,102,116,34,58,34,116,111,112,34,44,117,61,115,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,44,108,61,123,115,116,97,114,116,58,105,103,40,123,125,44,99,44,111,91,99,93,41,44,101,110,100,58,105,103,40,123,125,44,99,44,111,91,99,93,43,111,91,117,93,45,97,91,117,93,41,125,59,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,111,103,40,123,125,44,97,44,108,91,114,93,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,116,109,40,116,41,123,105,102,40,33,66,103,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,121,103,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,40,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,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,102,117,110,99,116,105,111,110,32,101,109,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,114,61,116,46,111,102,102,115,101,116,115,44,105,61,114,46,112,111,112,112,101,114,44,111,61,114,46,114,101,102,101,114,101,110,99,101,44,97,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,115,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,105,91,97,63,34,108,101,102,116,34,58,34,116,111,112,34,93,61,111,91,110,93,45,40,115,63,105,91,97,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,109,103,40,101,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,97,103,40,105,41,44,116,125,118,97,114,32,110,109,61,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,81,103,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,90,103,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,74,103,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,89,103,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,122,103,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,113,103,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,44,102,108,105,112,86,97,114,105,97,116,105,111,110,115,58,33,49,44,102,108,105,112,86,97,114,105,97,116,105,111,110,115,66,121,67,111,110,116,101,110,116,58,33,49,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,101,109,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,116,109,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,78,103,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,77,103,44,111,110,76,111,97,100,58,36,103,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,44,114,109,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,110,109,125,44,105,109,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,44,105,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,123,125,59,110,103,40,116,104,105,115,44,116,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,114,46,117,112,100,97,116,101,41,125,44,116,104,105,115,46,117,112,100,97,116,101,61,82,118,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,111,103,40,123,125,44,116,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,101,38,38,101,46,106,113,117,101,114,121,63,101,91,48,93,58,101,44,116,104,105,115,46,112,111,112,112,101,114,61,110,38,38,110,46,106,113,117,101,114,121,63,110,91,48,93,58,110,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,111,103,40,123,125,44,116,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,40,102,117,110,99,116,105,111,110,40,101,41,123,114,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,91,101,93,61,111,103,40,123,125,44,116,46,68,101,102,97,117,108,116,115,46,109,111,100,105,102,105,101,114,115,91,101,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,101,93,58,123,125,41,125,41,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,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,103,40,123,110,97,109,101,58,116,125,44,114,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,91,116,93,41,125,41,41,46,115,111,114,116,40,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,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,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,110,97,98,108,101,100,38,38,78,118,40,116,46,111,110,76,111,97,100,41,38,38,116,46,111,110,76,111,97,100,40,114,46,114,101,102,101,114,101,110,99,101,44,114,46,112,111,112,112,101,114,44,114,46,111,112,116,105,111,110,115,44,116,44,114,46,115,116,97,116,101,41,125,41,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,114,103,40,116,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,120,103,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,107,103,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,106,103,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,68,103,46,99,97,108,108,40,116,104,105,115,41,125,125,93,41,44,116,125,40,41,59,105,109,46,85,116,105,108,115,61,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,110,46,103,41,46,80,111,112,112,101,114,85,116,105,108,115,44,105,109,46,112,108,97,99,101,109,101,110,116,115,61,72,103,44,105,109,46,68,101,102,97,117,108,116,115,61,114,109,59,118,97,114,32,111,109,61,105,109,44,97,109,61,34,116,111,112,45,115,116,97,114,116,34,44,115,109,61,34,116,111,112,45,101,110,100,34,44,99,109,61,34,98,111,116,116,111,109,45,115,116,97,114,116,34,44,117,109,61,34,98,111,116,116,111,109,45,101,110,100,34,44,108,109,61,34,114,105,103,104,116,45,115,116,97,114,116,34,44,102,109,61,34,108,101,102,116,45,115,116,97,114,116,34,59,102,117,110,99,116,105,111,110,32,104,109,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,102,117,110,99,116,105,111,110,32,100,109,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,114,61,101,91,110,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,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,114,38,38,40,114,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,114,46,107,101,121,44,114,41,125,125,102,117,110,99,116,105,111,110,32,112,109,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,100,109,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,100,109,40,116,44,110,41,44,116,125,118,97,114,32,118,109,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,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,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,105,102,40,104,109,40,116,104,105,115,44,116,41,44,33,101,41,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,34,46,99,111,110,99,97,116,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,44,34,39,46,32,49,32,97,114,103,117,109,101,110,116,32,114,101,113,117,105,114,101,100,44,32,34,41,46,99,111,110,99,97,116,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,34,32,103,105,118,101,110,46,34,41,41,59,70,116,40,116,104,105,115,44,116,46,68,101,102,97,117,108,116,115,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,115,44,110,44,123,116,121,112,101,58,101,125,41,44,78,116,40,116,104,105,115,44,123,116,121,112,101,58,88,116,40,41,44,99,97,110,99,101,108,97,98,108,101,58,88,116,40,41,44,110,97,116,105,118,101,69,118,101,110,116,58,88,116,40,41,44,116,97,114,103,101,116,58,88,116,40,41,44,114,101,108,97,116,101,100,84,97,114,103,101,116,58,88,116,40,41,44,118,117,101,84,97,114,103,101,116,58,88,116,40,41,44,99,111,109,112,111,110,101,110,116,73,100,58,88,116,40,41,125,41,59,118,97,114,32,114,61,33,49,59,116,104,105,115,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,97,110,99,101,108,97,98,108,101,38,38,40,114,61,33,48,41,125,44,66,116,40,116,104,105,115,44,34,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,34,44,123,101,110,117,109,101,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,114,125,125,41,125,114,101,116,117,114,110,32,112,109,40,116,44,110,117,108,108,44,91,123,107,101,121,58,34,68,101,102,97,117,108,116,115,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,116,121,112,101,58,34,34,44,99,97,110,99,101,108,97,98,108,101,58,33,48,44,110,97,116,105,118,101,69,118,101,110,116,58,110,117,108,108,44,116,97,114,103,101,116,58,110,117,108,108,44,114,101,108,97,116,101,100,84,97,114,103,101,116,58,110,117,108,108,44,118,117,101,84,97,114,103,101,116,58,110,117,108,108,44,99,111,109,112,111,110,101,110,116,73,100,58,110,117,108,108,125,125,125,93,41,44,116,125,40,41,44,103,109,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,108,105,115,116,101,110,70,111,114,67,108,105,99,107,79,117,116,58,33,49,125,125,44,119,97,116,99,104,58,123,108,105,115,116,101,110,70,111,114,67,108,105,99,107,79,117,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,40,79,99,40,116,104,105,115,46,99,108,105,99,107,79,117,116,69,108,101,109,101,110,116,44,116,104,105,115,46,99,108,105,99,107,79,117,116,69,118,101,110,116,78,97,109,101,44,116,104,105,115,46,95,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,44,104,111,41,44,116,38,38,120,99,40,116,104,105,115,46,99,108,105,99,107,79,117,116,69,108,101,109,101,110,116,44,116,104,105,115,46,99,108,105,99,107,79,117,116,69,118,101,110,116,78,97,109,101,44,116,104,105,115,46,95,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,44,104,111,41,41,125,125,44,98,101,102,111,114,101,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,105,99,107,79,117,116,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,99,108,105,99,107,79,117,116,69,118,101,110,116,78,97,109,101,61,110,117,108,108,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,105,99,107,79,117,116,69,108,101,109,101,110,116,124,124,40,116,104,105,115,46,99,108,105,99,107,79,117,116,69,108,101,109,101,110,116,61,100,111,99,117,109,101,110,116,41,44,116,104,105,115,46,99,108,105,99,107,79,117,116,69,118,101,110,116,78,97,109,101,124,124,40,116,104,105,115,46,99,108,105,99,107,79,117,116,69,118,101,110,116,78,97,109,101,61,34,99,108,105,99,107,34,41,44,116,104,105,115,46,108,105,115,116,101,110,70,111,114,67,108,105,99,107,79,117,116,38,38,120,99,40,116,104,105,115,46,99,108,105,99,107,79,117,116,69,108,101,109,101,110,116,44,116,104,105,115,46,99,108,105,99,107,79,117,116,69,118,101,110,116,78,97,109,101,44,116,104,105,115,46,95,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,44,104,111,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,79,99,40,116,104,105,115,46,99,108,105,99,107,79,117,116,69,108,101,109,101,110,116,44,116,104,105,115,46,99,108,105,99,107,79,117,116,69,118,101,110,116,78,97,109,101,44,116,104,105,115,46,95,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,44,104,111,41,125,44,109,101,116,104,111,100,115,58,123,105,115,67,108,105,99,107,79,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,106,115,40,116,104,105,115,46,36,101,108,44,116,46,116,97,114,103,101,116,41,125,44,95,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,38,38,116,104,105,115,46,105,115,67,108,105,99,107,79,117,116,40,116,41,38,38,116,104,105,115,46,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,40,116,41,125,125,125,41,44,109,109,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,108,105,115,116,101,110,70,111,114,70,111,99,117,115,73,110,58,33,49,125,125,44,119,97,116,99,104,58,123,108,105,115,116,101,110,70,111,114,70,111,99,117,115,73,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,40,79,99,40,116,104,105,115,46,102,111,99,117,115,73,110,69,108,101,109,101,110,116,44,34,102,111,99,117,115,105,110,34,44,116,104,105,115,46,95,102,111,99,117,115,73,110,72,97,110,100,108,101,114,44,104,111,41,44,116,38,38,120,99,40,116,104,105,115,46,102,111,99,117,115,73,110,69,108,101,109,101,110,116,44,34,102,111,99,117,115,105,110,34,44,116,104,105,115,46,95,102,111,99,117,115,73,110,72,97,110,100,108,101,114,44,104,111,41,41,125,125,44,98,101,102,111,114,101,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,102,111,99,117,115,73,110,69,108,101,109,101,110,116,61,110,117,108,108,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,102,111,99,117,115,73,110,69,108,101,109,101,110,116,124,124,40,116,104,105,115,46,102,111,99,117,115,73,110,69,108,101,109,101,110,116,61,100,111,99,117,109,101,110,116,41,44,116,104,105,115,46,108,105,115,116,101,110,70,111,114,70,111,99,117,115,73,110,38,38,120,99,40,116,104,105,115,46,102,111,99,117,115,73,110,69,108,101,109,101,110,116,44,34,102,111,99,117,115,105,110,34,44,116,104,105,115,46,95,102,111,99,117,115,73,110,72,97,110,100,108,101,114,44,104,111,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,79,99,40,116,104,105,115,46,102,111,99,117,115,73,110,69,108,101,109,101,110,116,44,34,102,111,99,117,115,105,110,34,44,116,104,105,115,46,95,102,111,99,117,115,73,110,72,97,110,100,108,101,114,44,104,111,41,125,44,109,101,116,104,111,100,115,58,123,95,102,111,99,117,115,73,110,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,102,111,99,117,115,73,110,72,97,110,100,108,101,114,38,38,116,104,105,115,46,102,111,99,117,115,73,110,72,97,110,100,108,101,114,40,116,41,125,125,125,41,59,102,117,110,99,116,105,111,110,32,98,109,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,121,109,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,98,109,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,119,109,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,98,109,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,119,109,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,118,97,114,32,95,109,61,80,99,40,100,110,44,74,105,41,44,120,109,61,80,99,40,100,110,44,80,105,41,44,79,109,61,34,46,100,114,111,112,100,111,119,110,32,102,111,114,109,34,44,83,109,61,91,34,46,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,34,46,98,45,100,114,111,112,100,111,119,110,45,102,111,114,109,34,93,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,34,46,99,111,110,99,97,116,40,116,44,34,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,34,41,125,41,41,46,106,111,105,110,40,34,44,32,34,41,44,107,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,124,124,91,93,41,46,102,105,108,116,101,114,40,120,115,41,125,44,67,109,61,100,99,40,75,116,40,121,109,40,121,109,40,123,125,44,68,104,41,44,123,125,44,123,98,111,117,110,100,97,114,121,58,117,99,40,91,104,116,44,120,111,93,44,34,115,99,114,111,108,108,80,97,114,101,110,116,34,41,44,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,100,114,111,112,108,101,102,116,58,117,99,40,103,111,44,33,49,41,44,100,114,111,112,114,105,103,104,116,58,117,99,40,103,111,44,33,49,41,44,100,114,111,112,117,112,58,117,99,40,103,111,44,33,49,41,44,110,111,70,108,105,112,58,117,99,40,103,111,44,33,49,41,44,111,102,102,115,101,116,58,117,99,40,65,111,44,48,41,44,112,111,112,112,101,114,79,112,116,115,58,117,99,40,119,111,44,123,125,41,44,114,105,103,104,116,58,117,99,40,103,111,44,33,49,41,125,41,41,44,100,110,41,44,80,109,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,105,120,105,110,115,58,91,65,104,44,80,108,44,103,109,44,109,109,93,44,112,114,111,118,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,98,118,68,114,111,112,100,111,119,110,58,116,104,105,115,125,125,44,105,110,106,101,99,116,58,123,98,118,78,97,118,98,97,114,58,123,100,101,102,97,117,108,116,58,110,117,108,108,125,125,44,112,114,111,112,115,58,67,109,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,118,105,115,105,98,108,101,58,33,49,44,118,105,115,105,98,108,101,67,104,97,110,103,101,80,114,101,118,101,110,116,101,100,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,105,110,78,97,118,98,97,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,121,116,40,116,104,105,115,46,98,118,78,97,118,98,97,114,41,125,44,116,111,103,103,108,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,114,101,102,115,46,116,111,103,103,108,101,59,114,101,116,117,114,110,32,116,63,116,46,36,101,108,124,124,116,58,110,117,108,108,125,44,100,105,114,101,99,116,105,111,110,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,100,114,111,112,117,112,63,34,100,114,111,112,117,112,34,58,116,104,105,115,46,100,114,111,112,114,105,103,104,116,63,34,100,114,111,112,114,105,103,104,116,34,58,116,104,105,115,46,100,114,111,112,108,101,102,116,63,34,100,114,111,112,108,101,102,116,34,58,34,34,125,44,98,111,117,110,100,97,114,121,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,115,99,114,111,108,108,80,97,114,101,110,116,34,61,61,61,116,104,105,115,46,98,111,117,110,100,97,114,121,124,124,116,104,105,115,46,105,110,78,97,118,98,97,114,63,34,34,58,34,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,34,125,125,44,119,97,116,99,104,58,123,118,105,115,105,98,108,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,104,105,115,46,118,105,115,105,98,108,101,67,104,97,110,103,101,80,114,101,118,101,110,116,101,100,41,116,104,105,115,46,118,105,115,105,98,108,101,67,104,97,110,103,101,80,114,101,118,101,110,116,101,100,61,33,49,59,101,108,115,101,32,105,102,40,116,33,61,61,101,41,123,118,97,114,32,110,61,116,63,90,105,58,84,105,44,114,61,110,101,119,32,118,109,40,110,44,123,99,97,110,99,101,108,97,98,108,101,58,33,48,44,118,117,101,84,97,114,103,101,116,58,116,104,105,115,44,116,97,114,103,101,116,58,116,104,105,115,46,36,114,101,102,115,46,109,101,110,117,44,114,101,108,97,116,101,100,84,97,114,103,101,116,58,110,117,108,108,44,99,111,109,112,111,110,101,110,116,73,100,58,116,104,105,115,46,115,97,102,101,73,100,63,116,104,105,115,46,115,97,102,101,73,100,40,41,58,116,104,105,115,46,105,100,124,124,110,117,108,108,125,41,59,105,102,40,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,114,41,44,114,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,114,101,116,117,114,110,32,116,104,105,115,46,118,105,115,105,98,108,101,67,104,97,110,103,101,80,114,101,118,101,110,116,101,100,61,33,48,44,116,104,105,115,46,118,105,115,105,98,108,101,61,101,44,118,111,105,100,32,116,104,105,115,46,36,111,102,102,40,80,105,44,116,104,105,115,46,102,111,99,117,115,84,111,103,103,108,101,114,41,59,116,63,116,104,105,115,46,115,104,111,119,77,101,110,117,40,41,58,116,104,105,115,46,104,105,100,101,77,101,110,117,40,41,125,125,44,100,105,115,97,98,108,101,100,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,116,38,38,116,104,105,115,46,118,105,115,105,98,108,101,38,38,40,116,104,105,115,46,118,105,115,105,98,108,101,61,33,49,41,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,36,95,104,105,100,101,84,105,109,101,111,117,116,61,110,117,108,108,125,44,100,101,97,99,116,105,118,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,118,105,115,105,98,108,101,61,33,49,44,116,104,105,115,46,119,104,105,108,101,79,112,101,110,76,105,115,116,101,110,40,33,49,41,44,116,104,105,115,46,100,101,115,116,114,111,121,80,111,112,112,101,114,40,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,118,105,115,105,98,108,101,61,33,49,44,116,104,105,115,46,119,104,105,108,101,79,112,101,110,76,105,115,116,101,110,40,33,49,41,44,116,104,105,115,46,100,101,115,116,114,111,121,80,111,112,112,101,114,40,41,44,116,104,105,115,46,99,108,101,97,114,72,105,100,101,84,105,109,101,111,117,116,40,41,125,44,109,101,116,104,111,100,115,58,123,101,109,105,116,69,118,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,116,121,112,101,59,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,80,99,40,100,110,44,101,41,44,116,41,44,116,104,105,115,46,36,101,109,105,116,40,101,44,116,41,125,44,115,104,111,119,77,101,110,117,58,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,100,105,115,97,98,108,101,100,41,123,105,102,40,33,116,104,105,115,46,105,110,78,97,118,98,97,114,41,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,111,109,41,104,101,40,34,80,111,112,112,101,114,46,106,115,32,110,111,116,32,102,111,117,110,100,46,32,70,97,108,108,105,110,103,32,98,97,99,107,32,116,111,32,67,83,83,32,112,111,115,105,116,105,111,110,105,110,103,34,44,100,110,41,59,101,108,115,101,123,118,97,114,32,101,61,116,104,105,115,46,100,114,111,112,117,112,38,38,116,104,105,115,46,114,105,103,104,116,124,124,116,104,105,115,46,115,112,108,105,116,63,116,104,105,115,46,36,101,108,58,116,104,105,115,46,36,114,101,102,115,46,116,111,103,103,108,101,59,101,61,101,46,36,101,108,124,124,101,44,116,104,105,115,46,99,114,101,97,116,101,80,111,112,112,101,114,40,101,41,125,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,95,109,44,116,104,105,115,41,44,116,104,105,115,46,119,104,105,108,101,79,112,101,110,76,105,115,116,101,110,40,33,48,41,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,102,111,99,117,115,77,101,110,117,40,41,44,116,46,36,101,109,105,116,40,74,105,41,125,41,41,125,125,44,104,105,100,101,77,101,110,117,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,104,105,108,101,79,112,101,110,76,105,115,116,101,110,40,33,49,41,44,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,120,109,44,116,104,105,115,41,44,116,104,105,115,46,36,101,109,105,116,40,80,105,41,44,116,104,105,115,46,100,101,115,116,114,111,121,80,111,112,112,101,114,40,41,125,44,99,114,101,97,116,101,80,111,112,112,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,100,101,115,116,114,111,121,80,111,112,112,101,114,40,41,44,116,104,105,115,46,36,95,112,111,112,112,101,114,61,110,101,119,32,111,109,40,116,44,116,104,105,115,46,36,114,101,102,115,46,109,101,110,117,44,116,104,105,115,46,103,101,116,80,111,112,112,101,114,67,111,110,102,105,103,40,41,41,125,44,100,101,115,116,114,111,121,80,111,112,112,101,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,112,111,112,112,101,114,38,38,116,104,105,115,46,36,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,36,95,112,111,112,112,101,114,61,110,117,108,108,125,44,117,112,100,97,116,101,80,111,112,112,101,114,58,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,116,104,105,115,46,36,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,99,97,116,99,104,40,116,41,123,125,125,44,99,108,101,97,114,72,105,100,101,84,105,109,101,111,117,116,58,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,36,95,104,105,100,101,84,105,109,101,111,117,116,41,44,116,104,105,115,46,36,95,104,105,100,101,84,105,109,101,111,117,116,61,110,117,108,108,125,44,103,101,116,80,111,112,112,101,114,67,111,110,102,105,103,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,99,109,59,116,104,105,115,46,100,114,111,112,117,112,63,116,61,116,104,105,115,46,114,105,103,104,116,63,115,109,58,97,109,58,116,104,105,115,46,100,114,111,112,114,105,103,104,116,63,116,61,108,109,58,116,104,105,115,46,100,114,111,112,108,101,102,116,63,116,61,102,109,58,116,104,105,115,46,114,105,103,104,116,38,38,40,116,61,117,109,41,59,118,97,114,32,101,61,123,112,108,97,99,101,109,101,110,116,58,116,44,109,111,100,105,102,105,101,114,115,58,123,111,102,102,115,101,116,58,123,111,102,102,115,101,116,58,116,104,105,115,46,111,102,102,115,101,116,124,124,48,125,44,102,108,105,112,58,123,101,110,97,98,108,101,100,58,33,116,104,105,115,46,110,111,70,108,105,112,125,125,125,44,110,61,116,104,105,115,46,98,111,117,110,100,97,114,121,59,114,101,116,117,114,110,32,110,38,38,40,101,46,109,111,100,105,102,105,101,114,115,46,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,61,123,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,110,125,41,44,89,116,40,101,44,116,104,105,115,46,112,111,112,112,101,114,79,112,116,115,124,124,123,125,41,125,44,119,104,105,108,101,79,112,101,110,76,105,115,116,101,110,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,108,105,115,116,101,110,70,111,114,67,108,105,99,107,79,117,116,61,116,44,116,104,105,115,46,108,105,115,116,101,110,70,111,114,70,111,99,117,115,73,110,61,116,59,118,97,114,32,101,61,116,63,34,36,111,110,34,58,34,36,111,102,102,34,59,116,104,105,115,46,36,114,111,111,116,91,101,93,40,95,109,44,116,104,105,115,46,114,111,111,116,67,108,111,115,101,76,105,115,116,101,110,101,114,41,125,44,114,111,111,116,67,108,111,115,101,76,105,115,116,101,110,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,116,33,61,61,116,104,105,115,38,38,40,116,104,105,115,46,118,105,115,105,98,108,101,61,33,49,41,125,44,115,104,111,119,58,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,100,105,115,97,98,108,101,100,124,124,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,118,105,115,105,98,108,101,61,33,48,125,41,41,125,44,104,105,100,101,58,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,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,59,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,40,116,104,105,115,46,118,105,115,105,98,108,101,61,33,49,44,116,38,38,116,104,105,115,46,36,111,110,99,101,40,80,105,44,116,104,105,115,46,102,111,99,117,115,84,111,103,103,108,101,114,41,41,125,44,116,111,103,103,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,61,116,124,124,123,125,59,118,97,114,32,101,61,116,44,110,61,101,46,116,121,112,101,44,114,61,101,46,107,101,121,67,111,100,101,59,40,34,99,108,105,99,107,34,61,61,61,110,124,124,34,107,101,121,100,111,119,110,34,61,61,61,110,38,38,45,49,33,61,61,91,102,108,44,98,108,44,117,108,93,46,105,110,100,101,120,79,102,40,114,41,41,38,38,40,116,104,105,115,46,100,105,115,97,98,108,101,100,63,116,104,105,115,46,118,105,115,105,98,108,101,61,33,49,58,40,116,104,105,115,46,36,101,109,105,116,40,114,111,44,116,41,44,107,99,40,116,41,44,116,104,105,115,46,118,105,115,105,98,108,101,63,116,104,105,115,46,104,105,100,101,40,33,48,41,58,116,104,105,115,46,115,104,111,119,40,41,41,41,125,44,111,110,77,111,117,115,101,100,111,119,110,58,102,117,110,99,116,105,111,110,40,116,41,123,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,125,44,111,110,75,101,121,100,111,119,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,107,101,121,67,111,100,101,59,101,61,61,61,104,108,63,116,104,105,115,46,111,110,69,115,99,40,116,41,58,101,61,61,61,117,108,63,116,104,105,115,46,102,111,99,117,115,78,101,120,116,40,116,44,33,49,41,58,101,61,61,61,121,108,38,38,116,104,105,115,46,102,111,99,117,115,78,101,120,116,40,116,44,33,48,41,125,44,111,110,69,115,99,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,118,105,115,105,98,108,101,38,38,40,116,104,105,115,46,118,105,115,105,98,108,101,61,33,49,44,107,99,40,116,41,44,116,104,105,115,46,36,111,110,99,101,40,80,105,44,116,104,105,115,46,102,111,99,117,115,84,111,103,103,108,101,114,41,41,125,44,111,110,83,112,108,105,116,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,63,116,104,105,115,46,118,105,115,105,98,108,101,61,33,49,58,116,104,105,115,46,36,101,109,105,116,40,102,105,44,116,41,125,44,104,105,100,101,72,97,110,100,108,101,114,58,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,46,116,97,114,103,101,116,59,33,116,104,105,115,46,118,105,115,105,98,108,101,124,124,106,115,40,116,104,105,115,46,36,114,101,102,115,46,109,101,110,117,44,110,41,124,124,106,115,40,116,104,105,115,46,116,111,103,103,108,101,114,44,110,41,124,124,40,116,104,105,115,46,99,108,101,97,114,72,105,100,101,84,105,109,101,111,117,116,40,41,44,116,104,105,115,46,36,95,104,105,100,101,84,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,104,105,100,101,40,41,125,41,44,116,104,105,115,46,105,110,78,97,118,98,97,114,63,51,48,48,58,48,41,41,125,44,99,108,105,99,107,79,117,116,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,104,105,100,101,72,97,110,100,108,101,114,40,116,41,125,44,102,111,99,117,115,73,110,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,104,105,100,101,72,97,110,100,108,101,114,40,116,41,125,44,102,111,99,117,115,78,101,120,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,44,114,61,116,46,116,97,114,103,101,116,59,33,116,104,105,115,46,118,105,115,105,98,108,101,124,124,116,38,38,84,115,40,79,109,44,114,41,124,124,40,107,99,40,116,41,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,46,103,101,116,73,116,101,109,115,40,41,59,105,102,40,33,40,116,46,108,101,110,103,116,104,60,49,41,41,123,118,97,114,32,105,61,116,46,105,110,100,101,120,79,102,40,114,41,59,101,38,38,105,62,48,63,105,45,45,58,33,101,38,38,105,60,116,46,108,101,110,103,116,104,45,49,38,38,105,43,43,44,105,60,48,38,38,40,105,61,48,41,44,110,46,102,111,99,117,115,73,116,101,109,40,105,44,116,41,125,125,41,41,41,125,44,102,111,99,117,115,73,116,101,109,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,102,105,110,100,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,110,61,61,61,116,125,41,41,59,113,115,40,110,41,125,44,103,101,116,73,116,101,109,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,109,40,107,115,40,83,109,44,116,104,105,115,46,36,114,101,102,115,46,109,101,110,117,41,41,125,44,102,111,99,117,115,77,101,110,117,58,102,117,110,99,116,105,111,110,40,41,123,113,115,40,116,104,105,115,46,36,114,101,102,115,46,109,101,110,117,41,125,44,102,111,99,117,115,84,111,103,103,108,101,114,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,113,115,40,116,46,116,111,103,103,108,101,114,41,125,41,41,125,125,125,41,59,102,117,110,99,116,105,111,110,32,84,109,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,106,109,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,84,109,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,69,109,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,84,109,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,69,109,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,118,97,114,32,68,109,61,100,99,40,75,116,40,106,109,40,106,109,40,106,109,40,123,125,44,68,104,41,44,67,109,41,44,123,125,44,123,98,108,111,99,107,58,117,99,40,103,111,44,33,49,41,44,104,116,109,108,58,117,99,40,120,111,41,44,108,97,122,121,58,117,99,40,103,111,44,33,49,41,44,109,101,110,117,67,108,97,115,115,58,117,99,40,107,111,41,44,110,111,67,97,114,101,116,58,117,99,40,103,111,44,33,49,41,44,114,111,108,101,58,117,99,40,120,111,44,34,109,101,110,117,34,41,44,115,105,122,101,58,117,99,40,120,111,41,44,115,112,108,105,116,58,117,99,40,103,111,44,33,49,41,44,115,112,108,105,116,66,117,116,116,111,110,84,121,112,101,58,117,99,40,120,111,44,34,98,117,116,116,111,110,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,113,97,40,91,34,98,117,116,116,111,110,34,44,34,115,117,98,109,105,116,34,44,34,114,101,115,101,116,34,93,44,116,41,125,41,41,44,115,112,108,105,116,67,108,97,115,115,58,117,99,40,107,111,41,44,115,112,108,105,116,72,114,101,102,58,117,99,40,120,111,41,44,115,112,108,105,116,84,111,58,117,99,40,77,111,41,44,115,112,108,105,116,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,116,101,120,116,58,117,99,40,120,111,41,44,116,111,103,103,108,101,67,108,97,115,115,58,117,99,40,107,111,41,44,116,111,103,103,108,101,84,97,103,58,117,99,40,120,111,44,34,98,117,116,116,111,110,34,41,44,116,111,103,103,108,101,84,101,120,116,58,117,99,40,120,111,44,34,84,111,103,103,108,101,32,100,114,111,112,100,111,119,110,34,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,44,34,115,101,99,111,110,100,97,114,121,34,41,125,41,41,44,100,110,41,44,65,109,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,100,110,44,109,105,120,105,110,115,58,91,65,104,44,80,109,44,119,99,93,44,112,114,111,112,115,58,68,109,44,99,111,109,112,117,116,101,100,58,123,100,114,111,112,100,111,119,110,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,98,108,111,99,107,44,101,61,116,104,105,115,46,115,112,108,105,116,59,114,101,116,117,114,110,91,116,104,105,115,46,100,105,114,101,99,116,105,111,110,67,108,97,115,115,44,116,104,105,115,46,98,111,117,110,100,97,114,121,67,108,97,115,115,44,123,115,104,111,119,58,116,104,105,115,46,118,105,115,105,98,108,101,44,34,98,116,110,45,103,114,111,117,112,34,58,101,124,124,33,116,44,34,100,45,102,108,101,120,34,58,116,38,38,101,125,93,125,44,109,101,110,117,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,116,104,105,115,46,109,101,110,117,67,108,97,115,115,44,123,34,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,34,58,116,104,105,115,46,114,105,103,104,116,44,115,104,111,119,58,116,104,105,115,46,118,105,115,105,98,108,101,125,93,125,44,116,111,103,103,108,101,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,115,112,108,105,116,59,114,101,116,117,114,110,91,116,104,105,115,46,116,111,103,103,108,101,67,108,97,115,115,44,123,34,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,34,58,116,44,34,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,110,111,45,99,97,114,101,116,34,58,116,104,105,115,46,110,111,67,97,114,101,116,38,38,33,116,125,93,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,118,105,115,105,98,108,101,44,110,61,116,104,105,115,46,118,97,114,105,97,110,116,44,114,61,116,104,105,115,46,115,105,122,101,44,105,61,116,104,105,115,46,98,108,111,99,107,44,111,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,97,61,116,104,105,115,46,115,112,108,105,116,44,115,61,116,104,105,115,46,114,111,108,101,44,99,61,116,104,105,115,46,104,105,100,101,44,117,61,116,104,105,115,46,116,111,103,103,108,101,44,108,61,123,118,97,114,105,97,110,116,58,110,44,115,105,122,101,58,114,44,98,108,111,99,107,58,105,44,100,105,115,97,98,108,101,100,58,111,125,44,102,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,122,111,41,44,104,61,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,122,111,41,63,123,125,58,67,102,40,116,104,105,115,46,104,116,109,108,44,116,104,105,115,46,116,101,120,116,41,44,100,61,116,40,41,59,105,102,40,97,41,123,118,97,114,32,112,61,116,104,105,115,46,115,112,108,105,116,84,111,44,118,61,116,104,105,115,46,115,112,108,105,116,72,114,101,102,44,103,61,116,104,105,115,46,115,112,108,105,116,66,117,116,116,111,110,84,121,112,101,44,109,61,106,109,40,106,109,40,123,125,44,108,41,44,123,125,44,123,118,97,114,105,97,110,116,58,116,104,105,115,46,115,112,108,105,116,86,97,114,105,97,110,116,124,124,110,125,41,59,112,63,109,46,116,111,61,112,58,118,63,109,46,104,114,101,102,61,118,58,103,38,38,40,109,46,116,121,112,101,61,103,41,44,100,61,116,40,110,102,44,123,99,108,97,115,115,58,116,104,105,115,46,115,112,108,105,116,67,108,97,115,115,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,34,95,66,86,95,98,117,116,116,111,110,95,34,41,125,44,112,114,111,112,115,58,109,44,100,111,109,80,114,111,112,115,58,104,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,83,112,108,105,116,67,108,105,99,107,125,44,114,101,102,58,34,98,117,116,116,111,110,34,125,44,102,41,44,102,61,91,116,40,34,115,112,97,110,34,44,123,99,108,97,115,115,58,91,34,115,114,45,111,110,108,121,34,93,125,44,91,116,104,105,115,46,116,111,103,103,108,101,84,101,120,116,93,41,93,44,104,61,123,125,125,118,97,114,32,98,61,116,40,110,102,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,44,99,108,97,115,115,58,116,104,105,115,46,116,111,103,103,108,101,67,108,97,115,115,101,115,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,34,95,66,86,95,116,111,103,103,108,101,95,34,41,44,34,97,114,105,97,45,104,97,115,112,111,112,117,112,34,58,34,116,114,117,101,34,44,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,58,115,115,40,101,41,125,44,112,114,111,112,115,58,106,109,40,106,109,40,123,125,44,108,41,44,123,125,44,123,116,97,103,58,116,104,105,115,46,116,111,103,103,108,101,84,97,103,44,98,108,111,99,107,58,105,38,38,33,97,125,41,44,100,111,109,80,114,111,112,115,58,104,44,111,110,58,123,109,111,117,115,101,100,111,119,110,58,116,104,105,115,46,111,110,77,111,117,115,101,100,111,119,110,44,99,108,105,99,107,58,117,44,107,101,121,100,111,119,110,58,117,125,44,114,101,102,58,34,116,111,103,103,108,101,34,125,44,102,41,44,121,61,116,40,34,117,108,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,114,111,112,100,111,119,110,45,109,101,110,117,34,44,99,108,97,115,115,58,116,104,105,115,46,109,101,110,117,67,108,97,115,115,101,115,44,97,116,116,114,115,58,123,114,111,108,101,58,115,44,116,97,98,105,110,100,101,120,58,34,45,49,34,44,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,58,116,104,105,115,46,115,97,102,101,73,100,40,97,63,34,95,66,86,95,98,117,116,116,111,110,95,34,58,34,95,66,86,95,116,111,103,103,108,101,95,34,41,125,44,111,110,58,123,107,101,121,100,111,119,110,58,116,104,105,115,46,111,110,75,101,121,100,111,119,110,125,44,114,101,102,58,34,109,101,110,117,34,125,44,91,33,116,104,105,115,46,108,97,122,121,124,124,101,63,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,85,111,44,123,104,105,100,101,58,99,125,41,58,116,40,41,93,41,59,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,114,111,112,100,111,119,110,32,98,45,100,114,111,112,100,111,119,110,34,44,99,108,97,115,115,58,116,104,105,115,46,100,114,111,112,100,111,119,110,67,108,97,115,115,101,115,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,125,125,44,91,100,44,98,44,121,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,76,109,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,73,109,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,76,109,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,77,109,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,76,109,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,77,109,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,118,97,114,32,36,109,61,113,116,40,122,108,44,91,34,101,118,101,110,116,34,44,34,114,111,117,116,101,114,84,97,103,34,93,41,44,70,109,61,100,99,40,75,116,40,73,109,40,73,109,40,123,125,44,36,109,41,44,123,125,44,123,108,105,110,107,67,108,97,115,115,58,117,99,40,107,111,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,125,41,41,44,98,110,41,44,82,109,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,98,110,44,109,105,120,105,110,115,58,91,67,108,44,119,99,93,44,105,110,106,101,99,116,58,123,98,118,68,114,111,112,100,111,119,110,58,123,100,101,102,97,117,108,116,58,110,117,108,108,125,125,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,70,109,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,109,40,73,109,40,123,125,44,116,104,105,115,46,98,118,65,116,116,114,115,41,44,123,125,44,123,114,111,108,101,58,34,109,101,110,117,105,116,101,109,34,125,41,125,125,44,109,101,116,104,111,100,115,58,123,99,108,111,115,101,68,114,111,112,100,111,119,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,98,118,68,114,111,112,100,111,119,110,38,38,116,46,98,118,68,114,111,112,100,111,119,110,46,104,105,100,101,40,33,48,41,125,41,41,125,44,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,101,109,105,116,40,102,105,44,116,41,44,116,104,105,115,46,99,108,111,115,101,68,114,111,112,100,111,119,110,40,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,108,105,110,107,67,108,97,115,115,44,110,61,116,104,105,115,46,118,97,114,105,97,110,116,44,114,61,116,104,105,115,46,97,99,116,105,118,101,44,105,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,111,61,116,104,105,115,46,111,110,67,108,105,99,107,44,97,61,116,104,105,115,46,98,118,65,116,116,114,115,59,114,101,116,117,114,110,32,116,40,34,108,105,34,44,123,99,108,97,115,115,58,97,46,99,108,97,115,115,44,115,116,121,108,101,58,97,46,115,116,121,108,101,44,97,116,116,114,115,58,123,114,111,108,101,58,34,112,114,101,115,101,110,116,97,116,105,111,110,34,125,125,44,91,116,40,86,108,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,99,108,97,115,115,58,91,101,44,77,109,40,123,125,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,110,41,44,110,38,38,33,40,114,124,124,105,41,41,93,44,112,114,111,112,115,58,102,99,40,36,109,44,116,104,105,115,46,36,112,114,111,112,115,41,44,97,116,116,114,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,111,110,58,123,99,108,105,99,107,58,111,125,44,114,101,102,58,34,105,116,101,109,34,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,78,109,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,66,109,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,78,109,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,122,109,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,78,109,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,122,109,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,118,97,114,32,86,109,61,100,99,40,123,97,99,116,105,118,101,58,117,99,40,103,111,44,33,49,41,44,97,99,116,105,118,101,67,108,97,115,115,58,117,99,40,120,111,44,34,97,99,116,105,118,101,34,41,44,98,117,116,116,111,110,67,108,97,115,115,58,117,99,40,107,111,41,44,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,121,110,41,44,72,109,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,121,110,44,109,105,120,105,110,115,58,91,67,108,44,119,99,93,44,105,110,106,101,99,116,58,123,98,118,68,114,111,112,100,111,119,110,58,123,100,101,102,97,117,108,116,58,110,117,108,108,125,125,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,86,109,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,109,40,66,109,40,123,125,44,116,104,105,115,46,98,118,65,116,116,114,115,41,44,123,125,44,123,114,111,108,101,58,34,109,101,110,117,105,116,101,109,34,44,116,121,112,101,58,34,98,117,116,116,111,110,34,44,100,105,115,97,98,108,101,100,58,116,104,105,115,46,100,105,115,97,98,108,101,100,125,41,125,125,44,109,101,116,104,111,100,115,58,123,99,108,111,115,101,68,114,111,112,100,111,119,110,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,98,118,68,114,111,112,100,111,119,110,38,38,116,104,105,115,46,98,118,68,114,111,112,100,111,119,110,46,104,105,100,101,40,33,48,41,125,44,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,101,109,105,116,40,102,105,44,116,41,44,116,104,105,115,46,99,108,111,115,101,68,114,111,112,100,111,119,110,40,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,116,104,105,115,46,97,99,116,105,118,101,44,114,61,116,104,105,115,46,118,97,114,105,97,110,116,44,105,61,116,104,105,115,46,98,118,65,116,116,114,115,59,114,101,116,117,114,110,32,116,40,34,108,105,34,44,123,99,108,97,115,115,58,105,46,99,108,97,115,115,44,115,116,121,108,101,58,105,46,115,116,121,108,101,44,97,116,116,114,115,58,123,114,111,108,101,58,34,112,114,101,115,101,110,116,97,116,105,111,110,34,125,125,44,91,116,40,34,98,117,116,116,111,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,99,108,97,115,115,58,91,116,104,105,115,46,98,117,116,116,111,110,67,108,97,115,115,44,40,101,61,123,125,44,122,109,40,101,44,116,104,105,115,46,97,99,116,105,118,101,67,108,97,115,115,44,110,41,44,122,109,40,101,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,114,41,44,114,38,38,33,40,110,124,124,116,104,105,115,46,100,105,115,97,98,108,101,100,41,41,44,101,41,93,44,97,116,116,114,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,67,108,105,99,107,125,44,114,101,102,58,34,98,117,116,116,111,110,34,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,85,109,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,87,109,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,85,109,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,71,109,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,85,109,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,71,109,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,118,97,114,32,113,109,61,100,99,40,123,105,100,58,117,99,40,120,111,41,44,116,97,103,58,117,99,40,120,111,44,34,104,101,97,100,101,114,34,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,109,110,41,44,89,109,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,109,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,113,109,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,110,46,116,97,103,44,97,61,110,46,118,97,114,105,97,110,116,59,114,101,116,117,114,110,32,116,40,34,108,105,34,44,36,101,40,113,116,40,114,44,91,34,97,116,116,114,115,34,93,41,44,123,97,116,116,114,115,58,123,114,111,108,101,58,34,112,114,101,115,101,110,116,97,116,105,111,110,34,125,125,41,44,91,116,40,111,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,34,44,99,108,97,115,115,58,71,109,40,123,125,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,97,41,44,97,41,44,97,116,116,114,115,58,87,109,40,87,109,40,123,125,44,114,46,97,116,116,114,115,124,124,123,125,41,44,123,125,44,123,105,100,58,110,46,105,100,124,124,110,117,108,108,44,114,111,108,101,58,119,115,40,111,44,34,104,101,97,100,101,114,34,41,63,110,117,108,108,58,34,104,101,97,100,105,110,103,34,125,41,44,114,101,102,58,34,104,101,97,100,101,114,34,125,44,105,41,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,75,109,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,88,109,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,75,109,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,90,109,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,75,109,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,90,109,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,118,97,114,32,74,109,61,100,99,40,123,116,97,103,58,117,99,40,120,111,44,34,104,114,34,41,125,44,112,110,41,44,81,109,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,112,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,74,109,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,59,114,101,116,117,114,110,32,116,40,34,108,105,34,44,36,101,40,113,116,40,114,44,91,34,97,116,116,114,115,34,93,41,44,123,97,116,116,114,115,58,123,114,111,108,101,58,34,112,114,101,115,101,110,116,97,116,105,111,110,34,125,125,41,44,91,116,40,110,46,116,97,103,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,34,44,97,116,116,114,115,58,88,109,40,88,109,40,123,125,44,114,46,97,116,116,114,115,124,124,123,125,41,44,123,125,44,123,114,111,108,101,58,34,115,101,112,97,114,97,116,111,114,34,44,34,97,114,105,97,45,111,114,105,101,110,116,97,116,105,111,110,34,58,34,104,111,114,105,122,111,110,116,97,108,34,125,41,44,114,101,102,58,34,100,105,118,105,100,101,114,34,125,41,93,41,125,125,41,44,116,98,61,100,99,40,123,105,100,58,117,99,40,120,111,41,44,105,110,108,105,110,101,58,117,99,40,103,111,44,33,49,41,44,110,111,118,97,108,105,100,97,116,101,58,117,99,40,103,111,44,33,49,41,44,118,97,108,105,100,97,116,101,100,58,117,99,40,103,111,44,33,49,41,125,44,120,110,41,44,101,98,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,120,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,116,98,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,34,102,111,114,109,34,44,36,101,40,114,44,123,99,108,97,115,115,58,123,34,102,111,114,109,45,105,110,108,105,110,101,34,58,110,46,105,110,108,105,110,101,44,34,119,97,115,45,118,97,108,105,100,97,116,101,100,34,58,110,46,118,97,108,105,100,97,116,101,100,125,44,97,116,116,114,115,58,123,105,100,58,110,46,105,100,44,110,111,118,97,108,105,100,97,116,101,58,110,46,110,111,118,97,108,105,100,97,116,101,125,125,41,44,105,41,125,125,41,59,102,117,110,99,116,105,111,110,32,110,98,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,114,98,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,110,98,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,105,98,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,110,98,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,105,98,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,118,97,114,32,111,98,61,100,99,40,75,116,40,114,98,40,114,98,40,123,125,44,116,98,41,44,123,125,44,123,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,102,111,114,109,67,108,97,115,115,58,117,99,40,107,111,41,125,41,41,44,118,110,41,44,97,98,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,118,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,111,98,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,108,105,115,116,101,110,101,114,115,44,111,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,34,108,105,34,44,36,101,40,113,116,40,114,44,91,34,97,116,116,114,115,34,44,34,111,110,34,93,41,44,123,97,116,116,114,115,58,123,114,111,108,101,58,34,112,114,101,115,101,110,116,97,116,105,111,110,34,125,125,41,44,91,116,40,101,98,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,100,114,111,112,100,111,119,110,45,102,111,114,109,34,44,99,108,97,115,115,58,91,110,46,102,111,114,109,67,108,97,115,115,44,123,100,105,115,97,98,108,101,100,58,110,46,100,105,115,97,98,108,101,100,125,93,44,112,114,111,112,115,58,110,44,97,116,116,114,115,58,114,98,40,114,98,40,123,125,44,114,46,97,116,116,114,115,124,124,123,125,41,44,123,125,44,123,100,105,115,97,98,108,101,100,58,110,46,100,105,115,97,98,108,101,100,44,116,97,98,105,110,100,101,120,58,110,46,100,105,115,97,98,108,101,100,63,110,117,108,108,58,34,45,49,34,125,41,44,111,110,58,105,44,114,101,102,58,34,102,111,114,109,34,125,44,111,41,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,115,98,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,118,97,114,32,99,98,61,100,99,40,123,116,97,103,58,117,99,40,120,111,44,34,112,34,41,44,116,101,120,116,67,108,97,115,115,58,117,99,40,107,111,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,119,110,41,44,117,98,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,119,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,99,98,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,110,46,116,97,103,44,97,61,110,46,116,101,120,116,67,108,97,115,115,44,115,61,110,46,118,97,114,105,97,110,116,59,114,101,116,117,114,110,32,116,40,34,108,105,34,44,36,101,40,113,116,40,114,44,91,34,97,116,116,114,115,34,93,41,44,123,97,116,116,114,115,58,123,114,111,108,101,58,34,112,114,101,115,101,110,116,97,116,105,111,110,34,125,125,41,44,91,116,40,111,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,100,114,111,112,100,111,119,110,45,116,101,120,116,34,44,99,108,97,115,115,58,91,97,44,115,98,40,123,125,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,115,41,44,115,41,93,44,112,114,111,112,115,58,110,44,97,116,116,114,115,58,114,46,97,116,116,114,115,124,124,123,125,44,114,101,102,58,34,116,101,120,116,34,125,44,105,41,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,108,98,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,102,98,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,108,98,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,104,98,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,108,98,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,104,98,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,118,97,114,32,100,98,61,100,99,40,123,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,58,117,99,40,120,111,41,44,104,101,97,100,101,114,58,117,99,40,120,111,41,44,104,101,97,100,101,114,67,108,97,115,115,101,115,58,117,99,40,107,111,41,44,104,101,97,100,101,114,84,97,103,58,117,99,40,120,111,44,34,104,101,97,100,101,114,34,41,44,104,101,97,100,101,114,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,105,100,58,117,99,40,120,111,41,125,44,103,110,41,44,112,98,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,103,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,100,98,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,115,108,111,116,115,44,111,61,101,46,115,99,111,112,101,100,83,108,111,116,115,44,97,61,110,46,105,100,44,115,61,110,46,118,97,114,105,97,110,116,44,99,61,110,46,104,101,97,100,101,114,44,117,61,110,46,104,101,97,100,101,114,84,97,103,44,108,61,105,40,41,44,102,61,111,124,124,123,125,44,104,61,123,125,44,100,61,97,63,34,95,98,118,95,34,46,99,111,110,99,97,116,40,97,44,34,95,103,114,111,117,112,95,100,100,95,104,101,97,100,101,114,34,41,58,110,117,108,108,44,112,61,116,40,41,59,114,101,116,117,114,110,40,98,99,40,101,97,44,102,44,108,41,124,124,99,41,38,38,40,112,61,116,40,117,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,34,44,99,108,97,115,115,58,91,110,46,104,101,97,100,101,114,67,108,97,115,115,101,115,44,104,98,40,123,125,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,115,41,44,115,41,93,44,97,116,116,114,115,58,123,105,100,58,100,44,114,111,108,101,58,119,115,40,117,44,34,104,101,97,100,101,114,34,41,63,110,117,108,108,58,34,104,101,97,100,105,110,103,34,125,125,44,121,99,40,101,97,44,104,44,102,44,108,41,124,124,99,41,41,44,116,40,34,108,105,34,44,36,101,40,113,116,40,114,44,91,34,97,116,116,114,115,34,93,41,44,123,97,116,116,114,115,58,123,114,111,108,101,58,34,112,114,101,115,101,110,116,97,116,105,111,110,34,125,125,41,44,91,112,44,116,40,34,117,108,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,108,105,115,116,45,117,110,115,116,121,108,101,100,34,44,97,116,116,114,115,58,102,98,40,102,98,40,123,125,44,114,46,97,116,116,114,115,124,124,123,125,41,44,123,125,44,123,105,100,58,97,44,114,111,108,101,58,34,103,114,111,117,112,34,44,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,58,91,100,44,110,46,97,114,105,97,68,101,115,99,114,105,98,101,100,66,121,93,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,32,34,41,46,116,114,105,109,40,41,124,124,110,117,108,108,125,41,125,44,121,99,40,85,111,44,104,44,102,44,108,41,41,93,41,125,125,41,44,118,98,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,68,114,111,112,100,111,119,110,58,65,109,44,66,68,100,58,65,109,44,66,68,114,111,112,100,111,119,110,73,116,101,109,58,82,109,44,66,68,100,73,116,101,109,58,82,109,44,66,68,114,111,112,100,111,119,110,73,116,101,109,66,117,116,116,111,110,58,72,109,44,66,68,114,111,112,100,111,119,110,73,116,101,109,66,116,110,58,72,109,44,66,68,100,73,116,101,109,66,117,116,116,111,110,58,72,109,44,66,68,100,73,116,101,109,66,116,110,58,72,109,44,66,68,114,111,112,100,111,119,110,72,101,97,100,101,114,58,89,109,44,66,68,100,72,101,97,100,101,114,58,89,109,44,66,68,114,111,112,100,111,119,110,68,105,118,105,100,101,114,58,81,109,44,66,68,100,68,105,118,105,100,101,114,58,81,109,44,66,68,114,111,112,100,111,119,110,70,111,114,109,58,97,98,44,66,68,100,70,111,114,109,58,97,98,44,66,68,114,111,112,100,111,119,110,84,101,120,116,58,117,98,44,66,68,100,84,101,120,116,58,117,98,44,66,68,114,111,112,100,111,119,110,71,114,111,117,112,58,112,98,44,66,68,100,71,114,111,117,112,58,112,98,125,125,41,59,102,117,110,99,116,105,111,110,32,103,98,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,118,97,114,32,109,98,61,91,34,105,102,114,97,109,101,34,44,34,101,109,98,101,100,34,44,34,118,105,100,101,111,34,44,34,111,98,106,101,99,116,34,44,34,105,109,103,34,44,34,98,45,105,109,103,34,44,34,98,45,105,109,103,45,108,97,122,121,34,93,44,98,98,61,100,99,40,123,97,115,112,101,99,116,58,117,99,40,120,111,44,34,49,54,98,121,57,34,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,44,116,121,112,101,58,117,99,40,120,111,44,34,105,102,114,97,109,101,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,113,97,40,109,98,44,116,41,125,41,41,125,44,95,110,41,44,121,98,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,95,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,98,98,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,110,46,97,115,112,101,99,116,59,114,101,116,117,114,110,32,116,40,110,46,116,97,103,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,34,44,99,108,97,115,115,58,103,98,40,123,125,44,34,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,34,46,99,111,110,99,97,116,40,111,41,44,111,41,44,114,101,102,58,114,46,114,101,102,125,44,91,116,40,110,46,116,121,112,101,44,36,101,40,113,116,40,114,44,91,34,114,101,102,34,93,41,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,105,116,101,109,34,125,41,44,105,41,93,41,125,125,41,44,119,98,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,69,109,98,101,100,58,121,98,125,125,41,44,95,98,61,39,83,101,116,116,105,110,103,32,112,114,111,112,32,34,111,112,116,105,111,110,115,34,32,116,111,32,97,110,32,111,98,106,101,99,116,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,85,115,101,32,116,104,101,32,97,114,114,97,121,32,102,111,114,109,97,116,32,105,110,115,116,101,97,100,46,39,44,120,98,61,100,99,40,123,100,105,115,97,98,108,101,100,70,105,101,108,100,58,117,99,40,120,111,44,34,100,105,115,97,98,108,101,100,34,41,44,104,116,109,108,70,105,101,108,100,58,117,99,40,120,111,44,34,104,116,109,108,34,41,44,111,112,116,105,111,110,115,58,117,99,40,83,111,44,91,93,41,44,116,101,120,116,70,105,101,108,100,58,117,99,40,120,111,44,34,116,101,120,116,34,41,44,118,97,108,117,101,70,105,101,108,100,58,117,99,40,120,111,44,34,118,97,108,117,101,34,41,125,44,34,102,111,114,109,79,112,116,105,111,110,67,111,110,116,114,111,108,115,34,41,44,79,98,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,120,98,44,99,111,109,112,117,116,101,100,58,123,102,111,114,109,79,112,116,105,111,110,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,115,40,116,104,105,115,46,111,112,116,105,111,110,115,41,125,125,44,109,101,116,104,111,100,115,58,123,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,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,49,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,110,117,108,108,59,105,102,40,84,116,40,116,41,41,123,118,97,114,32,110,61,117,101,40,116,44,116,104,105,115,46,118,97,108,117,101,70,105,101,108,100,41,44,114,61,117,101,40,116,44,116,104,105,115,46,116,101,120,116,70,105,101,108,100,41,59,114,101,116,117,114,110,123,118,97,108,117,101,58,98,116,40,110,41,63,101,124,124,114,58,110,44,116,101,120,116,58,107,102,40,83,116,114,105,110,103,40,98,116,40,114,41,63,101,58,114,41,41,44,104,116,109,108,58,117,101,40,116,44,116,104,105,115,46,104,116,109,108,70,105,101,108,100,41,44,100,105,115,97,98,108,101,100,58,66,111,111,108,101,97,110,40,117,101,40,116,44,116,104,105,115,46,100,105,115,97,98,108,101,100,70,105,101,108,100,41,41,125,125,114,101,116,117,114,110,123,118,97,108,117,101,58,101,124,124,116,44,116,101,120,116,58,107,102,40,83,116,114,105,110,103,40,116,41,41,44,100,105,115,97,98,108,101,100,58,33,49,125,125,44,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,115,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,114,101,116,117,114,110,32,67,116,40,116,41,63,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,40,116,41,125,41,41,58,84,116,40,116,41,63,40,104,101,40,95,98,44,116,104,105,115,46,36,111,112,116,105,111,110,115,46,110,97,109,101,41,44,86,116,40,116,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,46,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,40,116,91,110,93,124,124,123,125,44,110,41,125,41,41,41,58,91,93,125,125,125,41,59,102,117,110,99,116,105,111,110,32,83,98,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,107,98,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,83,98,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,67,98,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,83,98,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,67,98,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,118,97,114,32,80,98,61,100,99,40,75,116,40,107,98,40,107,98,40,123,125,44,120,98,41,44,123,125,44,123,105,100,58,117,99,40,120,111,44,118,111,105,100,32,48,44,33,48,41,125,41,41,44,107,110,41,44,84,98,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,107,110,44,109,105,120,105,110,115,58,91,79,98,44,119,99,93,44,112,114,111,112,115,58,80,98,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,105,100,44,110,61,116,104,105,115,46,102,111,114,109,79,112,116,105,111,110,115,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,61,101,46,118,97,108,117,101,44,105,61,101,46,116,101,120,116,44,111,61,101,46,104,116,109,108,44,97,61,101,46,100,105,115,97,98,108,101,100,59,114,101,116,117,114,110,32,116,40,34,111,112,116,105,111,110,34,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,114,44,100,105,115,97,98,108,101,100,58,97,125,44,100,111,109,80,114,111,112,115,58,67,102,40,111,44,105,41,44,107,101,121,58,34,111,112,116,105,111,110,95,34,46,99,111,110,99,97,116,40,110,41,125,41,125,41,41,59,114,101,116,117,114,110,32,116,40,34,100,97,116,97,108,105,115,116,34,44,123,97,116,116,114,115,58,123,105,100,58,101,125,125,44,91,110,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,106,98,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,118,97,114,32,69,98,44,68,98,44,65,98,61,100,99,40,123,105,100,58,117,99,40,120,111,41,44,105,110,108,105,110,101,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,115,109,97,108,108,34,41,44,116,101,120,116,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,109,117,116,101,100,34,41,125,44,122,110,41,44,76,98,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,122,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,65,98,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,110,46,116,97,103,44,36,101,40,114,44,123,99,108,97,115,115,58,106,98,40,123,34,102,111,114,109,45,116,101,120,116,34,58,33,110,46,105,110,108,105,110,101,125,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,110,46,116,101,120,116,86,97,114,105,97,110,116,41,44,110,46,116,101,120,116,86,97,114,105,97,110,116,41,44,97,116,116,114,115,58,123,105,100,58,110,46,105,100,125,125,41,44,105,41,125,125,41,44,73,98,61,100,99,40,123,97,114,105,97,76,105,118,101,58,117,99,40,120,111,41,44,102,111,114,99,101,83,104,111,119,58,117,99,40,103,111,44,33,49,41,44,105,100,58,117,99,40,120,111,41,44,114,111,108,101,58,117,99,40,120,111,41,44,115,116,97,116,101,58,117,99,40,103,111,44,110,117,108,108,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,44,116,111,111,108,116,105,112,58,117,99,40,103,111,44,33,49,41,125,44,69,110,41,44,77,98,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,69,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,73,98,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,110,46,116,111,111,108,116,105,112,44,97,61,110,46,97,114,105,97,76,105,118,101,44,115,61,33,48,61,61,61,110,46,102,111,114,99,101,83,104,111,119,124,124,33,49,61,61,61,110,46,115,116,97,116,101,59,114,101,116,117,114,110,32,116,40,110,46,116,97,103,44,36,101,40,114,44,123,99,108,97,115,115,58,123,34,100,45,98,108,111,99,107,34,58,115,44,34,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,34,58,33,111,44,34,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,34,58,111,125,44,97,116,116,114,115,58,123,105,100,58,110,46,105,100,124,124,110,117,108,108,44,114,111,108,101,58,110,46,114,111,108,101,124,124,110,117,108,108,44,34,97,114,105,97,45,108,105,118,101,34,58,97,124,124,110,117,108,108,44,34,97,114,105,97,45,97,116,111,109,105,99,34,58,97,63,34,116,114,117,101,34,58,110,117,108,108,125,125,41,44,105,41,125,125,41,44,36,98,61,100,99,40,123,97,114,105,97,76,105,118,101,58,117,99,40,120,111,41,44,102,111,114,99,101,83,104,111,119,58,117,99,40,103,111,44,33,49,41,44,105,100,58,117,99,40,120,111,41,44,114,111,108,101,58,117,99,40,120,111,41,44,115,116,97,116,101,58,117,99,40,103,111,44,110,117,108,108,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,44,116,111,111,108,116,105,112,58,117,99,40,103,111,44,33,49,41,125,44,85,110,41,44,70,98,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,85,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,36,98,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,110,46,116,111,111,108,116,105,112,44,97,61,110,46,97,114,105,97,76,105,118,101,44,115,61,33,48,61,61,61,110,46,102,111,114,99,101,83,104,111,119,124,124,33,48,61,61,61,110,46,115,116,97,116,101,59,114,101,116,117,114,110,32,116,40,110,46,116,97,103,44,36,101,40,114,44,123,99,108,97,115,115,58,123,34,100,45,98,108,111,99,107,34,58,115,44,34,118,97,108,105,100,45,102,101,101,100,98,97,99,107,34,58,33,111,44,34,118,97,108,105,100,45,116,111,111,108,116,105,112,34,58,111,125,44,97,116,116,114,115,58,123,105,100,58,110,46,105,100,124,124,110,117,108,108,44,114,111,108,101,58,110,46,114,111,108,101,124,124,110,117,108,108,44,34,97,114,105,97,45,108,105,118,101,34,58,97,124,124,110,117,108,108,44,34,97,114,105,97,45,97,116,111,109,105,99,34,58,97,63,34,116,114,117,101,34,58,110,117,108,108,125,125,41,44,105,41,125,125,41,44,82,98,61,100,99,40,123,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,125,44,73,110,41,44,78,98,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,73,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,82,98,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,110,46,116,97,103,44,36,101,40,114,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,111,114,109,45,114,111,119,34,125,41,44,105,41,125,125,41,44,66,98,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,70,111,114,109,58,101,98,44,66,70,111,114,109,68,97,116,97,108,105,115,116,58,84,98,44,66,68,97,116,97,108,105,115,116,58,84,98,44,66,70,111,114,109,84,101,120,116,58,76,98,44,66,70,111,114,109,73,110,118,97,108,105,100,70,101,101,100,98,97,99,107,58,77,98,44,66,70,111,114,109,70,101,101,100,98,97,99,107,58,77,98,44,66,70,111,114,109,86,97,108,105,100,70,101,101,100,98,97,99,107,58,70,98,44,66,70,111,114,109,82,111,119,58,78,98,125,125,41,44,122,98,61,102,117,110,99,116,105,111,110,40,116,44,101,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,105,102,40,95,108,40,116,91,110,93,44,101,41,41,114,101,116,117,114,110,32,110,59,114,101,116,117,114,110,45,49,125,44,86,98,61,34,105,110,112,117,116,44,32,116,101,120,116,97,114,101,97,44,32,115,101,108,101,99,116,34,44,72,98,61,100,99,40,123,97,117,116,111,102,111,99,117,115,58,117,99,40,103,111,44,33,49,41,44,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,102,111,114,109,58,117,99,40,120,111,41,44,105,100,58,117,99,40,120,111,41,44,110,97,109,101,58,117,99,40,120,111,41,44,114,101,113,117,105,114,101,100,58,117,99,40,103,111,44,33,49,41,125,44,34,102,111,114,109,67,111,110,116,114,111,108,115,34,41,44,85,98,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,72,98,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,110,100,108,101,65,117,116,111,102,111,99,117,115,40,41,125,44,97,99,116,105,118,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,110,100,108,101,65,117,116,111,102,111,99,117,115,40,41,125,44,109,101,116,104,111,100,115,58,123,104,97,110,100,108,101,65,117,116,111,102,111,99,117,115,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,46,36,101,108,59,116,46,97,117,116,111,102,111,99,117,115,38,38,120,115,40,101,41,38,38,40,80,115,40,101,44,86,98,41,124,124,40,101,61,67,115,40,86,98,44,101,41,41,44,113,115,40,101,41,41,125,41,41,125,41,41,125,125,125,41,44,87,98,61,100,99,40,123,112,108,97,105,110,58,117,99,40,103,111,44,33,49,41,125,44,34,102,111,114,109,67,111,110,116,114,111,108,115,34,41,44,71,98,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,87,98,44,99,111,109,112,117,116,101,100,58,123,99,117,115,116,111,109,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,112,108,97,105,110,125,125,125,41,44,113,98,61,100,99,40,123,115,105,122,101,58,117,99,40,120,111,41,125,44,34,102,111,114,109,67,111,110,116,114,111,108,115,34,41,44,89,98,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,113,98,44,99,111,109,112,117,116,101,100,58,123,115,105,122,101,70,111,114,109,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,116,104,105,115,46,115,105,122,101,63,34,102,111,114,109,45,99,111,110,116,114,111,108,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,105,122,101,41,58,110,117,108,108,93,125,125,125,41,44,75,98,61,100,99,40,123,115,116,97,116,101,58,117,99,40,103,111,44,110,117,108,108,41,125,44,34,102,111,114,109,83,116,97,116,101,34,41,44,88,98,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,75,98,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,83,116,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,120,116,40,116,104,105,115,46,115,116,97,116,101,41,63,116,104,105,115,46,115,116,97,116,101,58,110,117,108,108,125,44,115,116,97,116,101,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,116,101,59,114,101,116,117,114,110,33,48,61,61,61,116,63,34,105,115,45,118,97,108,105,100,34,58,33,49,61,61,61,116,63,34,105,115,45,105,110,118,97,108,105,100,34,58,110,117,108,108,125,44,99,111,109,112,117,116,101,100,65,114,105,97,73,110,118,97,108,105,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,97,114,105,97,73,110,118,97,108,105,100,59,114,101,116,117,114,110,33,48,61,61,61,116,124,124,34,116,114,117,101,34,61,61,61,116,124,124,34,34,61,61,61,116,124,124,33,49,61,61,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,116,101,63,34,116,114,117,101,34,58,116,125,125,125,41,59,102,117,110,99,116,105,111,110,32,90,98,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,74,98,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,90,98,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,81,98,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,90,98,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,81,98,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,118,97,114,32,116,121,44,101,121,61,109,99,40,34,99,104,101,99,107,101,100,34,44,123,100,101,102,97,117,108,116,86,97,108,117,101,58,110,117,108,108,125,41,44,110,121,61,101,121,46,109,105,120,105,110,44,114,121,61,101,121,46,112,114,111,112,115,44,105,121,61,101,121,46,112,114,111,112,44,111,121,61,101,121,46,101,118,101,110,116,44,97,121,61,100,99,40,75,116,40,74,98,40,74,98,40,74,98,40,74,98,40,74,98,40,74,98,40,74,98,40,123,125,44,68,104,41,44,114,121,41,44,72,98,41,44,113,98,41,44,75,98,41,44,87,98,41,44,123,125,44,123,97,114,105,97,76,97,98,101,108,58,117,99,40,120,111,41,44,97,114,105,97,76,97,98,101,108,108,101,100,98,121,58,117,99,40,120,111,41,44,98,117,116,116,111,110,58,117,99,40,103,111,44,33,49,41,44,98,117,116,116,111,110,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,105,110,108,105,110,101,58,117,99,40,103,111,44,33,49,41,44,118,97,108,117,101,58,117,99,40,112,111,41,125,41,41,44,34,102,111,114,109,82,97,100,105,111,67,104,101,99,107,67,111,110,116,114,111,108,115,34,41,44,115,121,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,105,120,105,110,115,58,91,67,108,44,65,104,44,110,121,44,119,99,44,85,98,44,89,98,44,88,98,44,71,98,93,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,97,121,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,108,111,99,97,108,67,104,101,99,107,101,100,58,116,104,105,115,46,105,115,71,114,111,117,112,63,116,104,105,115,46,98,118,71,114,111,117,112,91,105,121,93,58,116,104,105,115,91,105,121,93,44,104,97,115,70,111,99,117,115,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,58,123,103,101,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,105,115,71,114,111,117,112,63,116,104,105,115,46,98,118,71,114,111,117,112,46,108,111,99,97,108,67,104,101,99,107,101,100,58,116,104,105,115,46,108,111,99,97,108,67,104,101,99,107,101,100,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,105,115,71,114,111,117,112,63,116,104,105,115,46,98,118,71,114,111,117,112,46,108,111,99,97,108,67,104,101,99,107,101,100,61,116,58,116,104,105,115,46,108,111,99,97,108,67,104,101,99,107,101,100,61,116,125,125,44,105,115,67,104,101,99,107,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,95,108,40,116,104,105,115,46,118,97,108,117,101,44,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,41,125,44,105,115,82,97,100,105,111,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,105,115,71,114,111,117,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,116,104,105,115,46,98,118,71,114,111,117,112,125,44,105,115,66,116,110,77,111,100,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,115,71,114,111,117,112,63,116,104,105,115,46,98,118,71,114,111,117,112,46,98,117,116,116,111,110,115,58,116,104,105,115,46,98,117,116,116,111,110,125,44,105,115,80,108,97,105,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,105,115,66,116,110,77,111,100,101,38,38,40,116,104,105,115,46,105,115,71,114,111,117,112,63,116,104,105,115,46,98,118,71,114,111,117,112,46,112,108,97,105,110,58,116,104,105,115,46,112,108,97,105,110,41,125,44,105,115,67,117,115,116,111,109,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,105,115,66,116,110,77,111,100,101,38,38,33,116,104,105,115,46,105,115,80,108,97,105,110,125,44,105,115,83,119,105,116,99,104,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,105,115,66,116,110,77,111,100,101,124,124,116,104,105,115,46,105,115,82,97,100,105,111,124,124,116,104,105,115,46,105,115,80,108,97,105,110,41,38,38,40,116,104,105,115,46,105,115,71,114,111,117,112,63,116,104,105,115,46,98,118,71,114,111,117,112,46,115,119,105,116,99,104,101,115,58,116,104,105,115,46,115,119,105,116,99,104,41,125,44,105,115,73,110,108,105,110,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,115,71,114,111,117,112,63,116,104,105,115,46,98,118,71,114,111,117,112,46,105,110,108,105,110,101,58,116,104,105,115,46,105,110,108,105,110,101,125,44,105,115,68,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,32,116,104,105,115,46,105,115,71,114,111,117,112,38,38,116,104,105,115,46,98,118,71,114,111,117,112,46,100,105,115,97,98,108,101,100,124,124,116,104,105,115,46,100,105,115,97,98,108,101,100,125,44,105,115,82,101,113,117,105,114,101,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,99,111,109,112,117,116,101,100,78,97,109,101,38,38,40,116,104,105,115,46,105,115,71,114,111,117,112,63,116,104,105,115,46,98,118,71,114,111,117,112,46,114,101,113,117,105,114,101,100,58,116,104,105,115,46,114,101,113,117,105,114,101,100,41,125,44,99,111,109,112,117,116,101,100,78,97,109,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,116,104,105,115,46,105,115,71,114,111,117,112,63,116,104,105,115,46,98,118,71,114,111,117,112,46,103,114,111,117,112,78,97,109,101,58,116,104,105,115,46,110,97,109,101,41,124,124,110,117,108,108,125,44,99,111,109,112,117,116,101,100,70,111,114,109,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,116,104,105,115,46,105,115,71,114,111,117,112,63,116,104,105,115,46,98,118,71,114,111,117,112,46,102,111,114,109,58,116,104,105,115,46,102,111,114,109,41,124,124,110,117,108,108,125,44,99,111,109,112,117,116,101,100,83,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,116,104,105,115,46,105,115,71,114,111,117,112,63,116,104,105,115,46,98,118,71,114,111,117,112,46,115,105,122,101,58,116,104,105,115,46,115,105,122,101,41,124,124,34,34,125,44,99,111,109,112,117,116,101,100,83,116,97,116,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,115,71,114,111,117,112,63,116,104,105,115,46,98,118,71,114,111,117,112,46,99,111,109,112,117,116,101,100,83,116,97,116,101,58,120,116,40,116,104,105,115,46,115,116,97,116,101,41,63,116,104,105,115,46,115,116,97,116,101,58,110,117,108,108,125,44,99,111,109,112,117,116,101,100,66,117,116,116,111,110,86,97,114,105,97,110,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,98,117,116,116,111,110,86,97,114,105,97,110,116,59,114,101,116,117,114,110,32,116,124,124,40,116,104,105,115,46,105,115,71,114,111,117,112,38,38,116,104,105,115,46,98,118,71,114,111,117,112,46,98,117,116,116,111,110,86,97,114,105,97,110,116,63,116,104,105,115,46,98,118,71,114,111,117,112,46,98,117,116,116,111,110,86,97,114,105,97,110,116,58,34,115,101,99,111,110,100,97,114,121,34,41,125,44,98,117,116,116,111,110,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,59,114,101,116,117,114,110,91,34,98,116,110,34,44,34,98,116,110,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,116,116,111,110,86,97,114,105,97,110,116,41,44,40,116,61,123,125,44,81,98,40,116,44,34,98,116,110,45,34,46,99,111,110,99,97,116,40,101,41,44,101,41,44,81,98,40,116,44,34,100,105,115,97,98,108,101,100,34,44,116,104,105,115,46,105,115,68,105,115,97,98,108,101,100,41,44,81,98,40,116,44,34,97,99,116,105,118,101,34,44,116,104,105,115,46,105,115,67,104,101,99,107,101,100,41,44,81,98,40,116,44,34,102,111,99,117,115,34,44,116,104,105,115,46,104,97,115,70,111,99,117,115,41,44,116,41,93,125,44,99,111,109,112,117,116,101,100,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,105,115,68,105,115,97,98,108,101,100,44,101,61,116,104,105,115,46,105,115,82,101,113,117,105,114,101,100,59,114,101,116,117,114,110,32,74,98,40,74,98,40,123,125,44,116,104,105,115,46,98,118,65,116,116,114,115,41,44,123,125,44,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,116,121,112,101,58,116,104,105,115,46,105,115,82,97,100,105,111,63,34,114,97,100,105,111,34,58,34,99,104,101,99,107,98,111,120,34,44,110,97,109,101,58,116,104,105,115,46,99,111,109,112,117,116,101,100,78,97,109,101,44,102,111,114,109,58,116,104,105,115,46,99,111,109,112,117,116,101,100,70,111,114,109,44,100,105,115,97,98,108,101,100,58,116,44,114,101,113,117,105,114,101,100,58,101,44,34,97,114,105,97,45,114,101,113,117,105,114,101,100,34,58,101,124,124,110,117,108,108,44,34,97,114,105,97,45,108,97,98,101,108,34,58,116,104,105,115,46,97,114,105,97,76,97,98,101,108,124,124,110,117,108,108,44,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,58,116,104,105,115,46,97,114,105,97,76,97,98,101,108,108,101,100,98,121,124,124,110,117,108,108,125,41,125,125,44,119,97,116,99,104,58,40,69,98,61,123,125,44,81,98,40,69,98,44,105,121,44,40,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,91,34,34,46,99,111,110,99,97,116,40,105,121,44,34,87,97,116,99,104,101,114,34,41,93,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,41,41,44,81,98,40,69,98,44,34,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,34,44,40,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,87,97,116,99,104,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,41,41,44,69,98,41,44,109,101,116,104,111,100,115,58,40,68,98,61,123,125,44,81,98,40,68,98,44,34,34,46,99,111,110,99,97,116,40,105,121,44,34,87,97,116,99,104,101,114,34,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,95,108,40,116,44,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,41,124,124,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,61,116,41,125,41,41,44,81,98,40,68,98,44,34,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,87,97,116,99,104,101,114,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,95,108,40,116,44,101,41,124,124,116,104,105,115,46,36,101,109,105,116,40,111,121,44,116,41,125,41,41,44,81,98,40,68,98,44,34,104,97,110,100,108,101,67,104,97,110,103,101,34,44,40,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,46,116,97,114,103,101,116,46,99,104,101,99,107,101,100,44,114,61,116,104,105,115,46,118,97,108,117,101,44,105,61,110,63,114,58,110,117,108,108,59,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,61,114,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,36,101,109,105,116,40,117,105,44,105,41,44,101,46,105,115,71,114,111,117,112,38,38,101,46,98,118,71,114,111,117,112,46,36,101,109,105,116,40,117,105,44,105,41,125,41,41,125,41,41,44,81,98,40,68,98,44,34,104,97,110,100,108,101,70,111,99,117,115,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,116,97,114,103,101,116,38,38,40,34,102,111,99,117,115,34,61,61,61,116,46,116,121,112,101,63,116,104,105,115,46,104,97,115,70,111,99,117,115,61,33,48,58,34,98,108,117,114,34,61,61,61,116,46,116,121,112,101,38,38,40,116,104,105,115,46,104,97,115,70,111,99,117,115,61,33,49,41,41,125,41,41,44,81,98,40,68,98,44,34,102,111,99,117,115,34,44,40,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,68,105,115,97,98,108,101,100,124,124,113,115,40,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,125,41,41,44,81,98,40,68,98,44,34,98,108,117,114,34,44,40,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,68,105,115,97,98,108,101,100,124,124,89,115,40,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,125,41,41,44,68,98,41,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,105,115,82,97,100,105,111,44,110,61,116,104,105,115,46,105,115,66,116,110,77,111,100,101,44,114,61,116,104,105,115,46,105,115,80,108,97,105,110,44,105,61,116,104,105,115,46,105,115,67,117,115,116,111,109,44,111,61,116,104,105,115,46,105,115,73,110,108,105,110,101,44,97,61,116,104,105,115,46,105,115,83,119,105,116,99,104,44,115,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,105,122,101,44,99,61,116,104,105,115,46,98,118,65,116,116,114,115,44,117,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,44,108,61,116,40,34,105,110,112,117,116,34,44,123,99,108,97,115,115,58,91,123,34,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,34,58,114,44,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,34,58,105,44,34,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,34,58,114,38,38,33,117,125,44,110,63,34,34,58,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,93,44,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,109,111,100,101,108,34,44,118,97,108,117,101,58,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,125,93,44,97,116,116,114,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,100,111,109,80,114,111,112,115,58,123,118,97,108,117,101,58,116,104,105,115,46,118,97,108,117,101,44,99,104,101,99,107,101,100,58,116,104,105,115,46,105,115,67,104,101,99,107,101,100,125,44,111,110,58,74,98,40,123,99,104,97,110,103,101,58,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,125,44,110,63,123,102,111,99,117,115,58,116,104,105,115,46,104,97,110,100,108,101,70,111,99,117,115,44,98,108,117,114,58,116,104,105,115,46,104,97,110,100,108,101,70,111,99,117,115,125,58,123,125,41,44,107,101,121,58,34,105,110,112,117,116,34,44,114,101,102,58,34,105,110,112,117,116,34,125,41,59,105,102,40,110,41,123,118,97,114,32,102,61,116,40,34,108,97,98,101,108,34,44,123,99,108,97,115,115,58,116,104,105,115,46,98,117,116,116,111,110,67,108,97,115,115,101,115,125,44,91,108,44,117,93,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,71,114,111,117,112,124,124,40,102,61,116,40,34,100,105,118,34,44,123,99,108,97,115,115,58,91,34,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,34,44,34,100,45,105,110,108,105,110,101,45,98,108,111,99,107,34,93,125,44,91,102,93,41,41,44,102,125,118,97,114,32,104,61,116,40,41,59,114,101,116,117,114,110,32,114,38,38,33,117,124,124,40,104,61,116,40,34,108,97,98,101,108,34,44,123,99,108,97,115,115,58,123,34,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,34,58,114,44,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,34,58,105,125,44,97,116,116,114,115,58,123,102,111,114,58,116,104,105,115,46,115,97,102,101,73,100,40,41,125,125,44,117,41,41,44,116,40,34,100,105,118,34,44,123,99,108,97,115,115,58,91,81,98,40,123,34,102,111,114,109,45,99,104,101,99,107,34,58,114,44,34,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,34,58,114,38,38,111,44,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,34,58,105,44,34,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,108,105,110,101,34,58,105,38,38,111,44,34,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,34,58,105,38,38,33,101,38,38,33,97,44,34,99,117,115,116,111,109,45,115,119,105,116,99,104,34,58,97,44,34,99,117,115,116,111,109,45,114,97,100,105,111,34,58,105,38,38,101,125,44,34,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,34,46,99,111,110,99,97,116,40,115,41,44,115,38,38,33,110,41,44,99,46,99,108,97,115,115,93,44,115,116,121,108,101,58,99,46,115,116,121,108,101,125,44,91,108,44,104,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,99,121,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,117,121,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,99,121,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,108,121,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,99,121,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,108,121,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,118,97,114,32,102,121,61,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,104,121,61,99,111,43,102,121,44,100,121,61,100,99,40,75,116,40,117,121,40,117,121,40,123,125,44,97,121,41,44,123,125,44,40,116,121,61,123,125,44,108,121,40,116,121,44,102,121,44,117,99,40,103,111,44,33,49,41,41,44,108,121,40,116,121,44,34,115,119,105,116,99,104,34,44,117,99,40,103,111,44,33,49,41,41,44,108,121,40,116,121,44,34,117,110,99,104,101,99,107,101,100,86,97,108,117,101,34,44,117,99,40,112,111,44,33,49,41,41,44,108,121,40,116,121,44,34,118,97,108,117,101,34,44,117,99,40,112,111,44,33,48,41,41,44,116,121,41,41,41,44,79,110,41,44,112,121,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,79,110,44,109,105,120,105,110,115,58,91,115,121,93,44,105,110,106,101,99,116,58,123,98,118,71,114,111,117,112,58,123,102,114,111,109,58,34,98,118,67,104,101,99,107,71,114,111,117,112,34,44,100,101,102,97,117,108,116,58,110,117,108,108,125,125,44,112,114,111,112,115,58,100,121,44,99,111,109,112,117,116,101,100,58,123,105,115,67,104,101,99,107,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,118,97,108,117,101,44,101,61,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,59,114,101,116,117,114,110,32,67,116,40,101,41,63,122,98,40,101,44,116,41,62,45,49,58,95,108,40,101,44,116,41,125,44,105,115,82,97,100,105,111,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,125,125,44,119,97,116,99,104,58,108,121,40,123,125,44,102,121,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,95,108,40,116,44,101,41,124,124,116,104,105,115,46,115,101,116,73,110,100,101,116,101,114,109,105,110,97,116,101,40,116,41,125,41,41,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,73,110,100,101,116,101,114,109,105,110,97,116,101,40,116,104,105,115,91,102,121,93,41,125,44,109,101,116,104,111,100,115,58,123,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,87,97,116,99,104,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,95,108,40,116,44,101,41,41,123,116,104,105,115,46,36,101,109,105,116,40,111,121,44,116,41,59,118,97,114,32,110,61,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,59,110,38,38,116,104,105,115,46,36,101,109,105,116,40,104,121,44,110,46,105,110,100,101,116,101,114,109,105,110,97,116,101,41,125,125,44,104,97,110,100,108,101,67,104,97,110,103,101,58,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,46,116,97,114,103,101,116,44,114,61,110,46,99,104,101,99,107,101,100,44,105,61,110,46,105,110,100,101,116,101,114,109,105,110,97,116,101,44,111,61,116,104,105,115,46,118,97,108,117,101,44,97,61,116,104,105,115,46,117,110,99,104,101,99,107,101,100,86,97,108,117,101,44,115,61,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,59,105,102,40,67,116,40,115,41,41,123,118,97,114,32,99,61,122,98,40,115,44,111,41,59,114,38,38,99,60,48,63,115,61,115,46,99,111,110,99,97,116,40,111,41,58,33,114,38,38,99,62,45,49,38,38,40,115,61,115,46,115,108,105,99,101,40,48,44,99,41,46,99,111,110,99,97,116,40,115,46,115,108,105,99,101,40,99,43,49,41,41,41,125,101,108,115,101,32,115,61,114,63,111,58,97,59,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,61,115,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,36,101,109,105,116,40,117,105,44,115,41,44,101,46,105,115,71,114,111,117,112,38,38,101,46,98,118,71,114,111,117,112,46,36,101,109,105,116,40,117,105,44,115,41,44,101,46,36,101,109,105,116,40,104,121,44,105,41,125,41,41,125,44,115,101,116,73,110,100,101,116,101,114,109,105,110,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,67,116,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,41,38,38,40,116,61,33,49,41,59,118,97,114,32,101,61,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,59,101,38,38,40,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,61,116,44,116,104,105,115,46,36,101,109,105,116,40,104,121,44,116,41,41,125,125,125,41,59,102,117,110,99,116,105,111,110,32,118,121,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,103,121,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,118,121,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,109,121,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,118,121,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,109,121,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,118,97,114,32,98,121,44,121,121,61,100,99,40,75,116,40,103,121,40,103,121,40,103,121,40,103,121,40,103,121,40,123,125,44,68,104,41,44,72,98,41,44,97,121,41,44,113,98,41,44,75,98,41,41,44,68,110,41,44,119,121,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,68,110,44,109,105,120,105,110,115,58,91,65,104,44,115,121,44,85,98,44,89,98,44,88,98,93,44,105,110,106,101,99,116,58,123,98,118,71,114,111,117,112,58,123,102,114,111,109,58,34,98,118,82,97,100,105,111,71,114,111,117,112,34,44,100,101,102,97,117,108,116,58,33,49,125,125,44,112,114,111,112,115,58,121,121,44,119,97,116,99,104,58,123,99,111,109,112,117,116,101,100,76,111,99,97,108,67,104,101,99,107,101,100,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,95,108,40,116,44,101,41,124,124,116,104,105,115,46,36,101,109,105,116,40,111,121,44,116,41,125,125,125,41,59,102,117,110,99,116,105,111,110,32,95,121,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,120,121,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,95,121,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,79,121,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,95,121,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,79,121,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,118,97,114,32,83,121,44,107,121,61,91,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,44,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,93,44,67,121,61,109,99,40,34,99,104,101,99,107,101,100,34,41,44,80,121,61,67,121,46,109,105,120,105,110,44,84,121,61,67,121,46,112,114,111,112,115,44,106,121,61,67,121,46,112,114,111,112,44,69,121,61,67,121,46,101,118,101,110,116,44,68,121,61,100,99,40,75,116,40,120,121,40,120,121,40,120,121,40,120,121,40,120,121,40,120,121,40,120,121,40,120,121,40,123,125,44,68,104,41,44,84,121,41,44,72,98,41,44,120,98,41,44,113,98,41,44,75,98,41,44,87,98,41,44,123,125,44,123,97,114,105,97,73,110,118,97,108,105,100,58,117,99,40,106,111,44,33,49,41,44,98,117,116,116,111,110,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,98,117,116,116,111,110,115,58,117,99,40,103,111,44,33,49,41,44,115,116,97,99,107,101,100,58,117,99,40,103,111,44,33,49,41,44,118,97,108,105,100,97,116,101,100,58,117,99,40,103,111,44,33,49,41,125,41,41,44,34,102,111,114,109,82,97,100,105,111,67,104,101,99,107,71,114,111,117,112,115,34,41,44,65,121,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,105,120,105,110,115,58,91,65,104,44,80,121,44,119,99,44,85,98,44,79,98,44,89,98,44,88,98,44,71,98,93,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,68,121,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,108,111,99,97,108,67,104,101,99,107,101,100,58,116,104,105,115,91,106,121,93,125,125,44,99,111,109,112,117,116,101,100,58,123,105,110,108,105,110,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,115,116,97,99,107,101,100,125,44,103,114,111,117,112,78,97,109,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,110,97,109,101,124,124,116,104,105,115,46,115,97,102,101,73,100,40,41,125,44,103,114,111,117,112,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,105,110,108,105,110,101,44,101,61,116,104,105,115,46,115,105,122,101,44,110,61,116,104,105,115,46,118,97,108,105,100,97,116,101,100,44,114,61,123,34,119,97,115,45,118,97,108,105,100,97,116,101,100,34,58,110,125,59,114,101,116,117,114,110,32,116,104,105,115,46,98,117,116,116,111,110,115,38,38,40,114,61,91,114,44,34,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,34,44,79,121,40,123,34,98,116,110,45,103,114,111,117,112,34,58,116,44,34,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,34,58,33,116,125,44,34,98,116,110,45,103,114,111,117,112,45,34,46,99,111,110,99,97,116,40,101,41,44,101,41,93,41,44,114,125,125,44,119,97,116,99,104,58,40,98,121,61,123,125,44,79,121,40,98,121,44,106,121,44,40,102,117,110,99,116,105,111,110,40,116,41,123,95,108,40,116,44,116,104,105,115,46,108,111,99,97,108,67,104,101,99,107,101,100,41,124,124,40,116,104,105,115,46,108,111,99,97,108,67,104,101,99,107,101,100,61,116,41,125,41,41,44,79,121,40,98,121,44,34,108,111,99,97,108,67,104,101,99,107,101,100,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,95,108,40,116,44,101,41,124,124,116,104,105,115,46,36,101,109,105,116,40,69,121,44,116,41,125,41,41,44,98,121,41,44,114,101,110,100,101,114,58,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,105,115,82,97,100,105,111,71,114,111,117,112,44,114,61,71,116,40,116,104,105,115,46,36,97,116,116,114,115,44,107,121,41,44,105,61,110,63,119,121,58,112,121,44,111,61,116,104,105,115,46,102,111,114,109,79,112,116,105,111,110,115,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,110,44,111,41,123,118,97,114,32,97,61,34,66,86,95,111,112,116,105,111,110,95,34,46,99,111,110,99,97,116,40,111,41,59,114,101,116,117,114,110,32,116,40,105,44,123,112,114,111,112,115,58,123,100,105,115,97,98,108,101,100,58,110,46,100,105,115,97,98,108,101,100,124,124,33,49,44,105,100,58,101,46,115,97,102,101,73,100,40,97,41,44,118,97,108,117,101,58,110,46,118,97,108,117,101,125,44,97,116,116,114,115,58,114,44,107,101,121,58,97,125,44,91,116,40,34,115,112,97,110,34,44,123,100,111,109,80,114,111,112,115,58,67,102,40,110,46,104,116,109,108,44,110,46,116,101,120,116,41,125,41,93,41,125,41,41,59,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,99,108,97,115,115,58,91,116,104,105,115,46,103,114,111,117,112,67,108,97,115,115,101,115,44,34,98,118,45,110,111,45,102,111,99,117,115,45,114,105,110,103,34,93,44,97,116,116,114,115,58,120,121,40,120,121,40,123,125,44,113,116,40,116,104,105,115,46,36,97,116,116,114,115,44,107,121,41,41,44,123,125,44,123,34,97,114,105,97,45,105,110,118,97,108,105,100,34,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,114,105,97,73,110,118,97,108,105,100,44,34,97,114,105,97,45,114,101,113,117,105,114,101,100,34,58,116,104,105,115,46,114,101,113,117,105,114,101,100,63,34,116,114,117,101,34,58,110,117,108,108,44,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,114,111,108,101,58,110,63,34,114,97,100,105,111,103,114,111,117,112,34,58,34,103,114,111,117,112,34,44,116,97,98,105,110,100,101,120,58,34,45,49,34,125,41,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,74,111,41,44,111,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,76,121,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,73,121,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,76,121,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,77,121,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,76,121,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,77,121,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,118,97,114,32,36,121,61,100,99,40,75,116,40,73,121,40,73,121,40,123,125,44,68,121,41,44,123,125,44,40,83,121,61,123,125,44,77,121,40,83,121,44,106,121,44,117,99,40,118,111,44,91,93,41,41,44,77,121,40,83,121,44,34,115,119,105,116,99,104,101,115,34,44,117,99,40,103,111,44,33,49,41,41,44,83,121,41,41,41,44,83,110,41,44,70,121,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,83,110,44,109,105,120,105,110,115,58,91,65,121,93,44,112,114,111,118,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,98,118,67,104,101,99,107,71,114,111,117,112,58,116,104,105,115,125,125,44,112,114,111,112,115,58,36,121,44,99,111,109,112,117,116,101,100,58,123,105,115,82,97,100,105,111,71,114,111,117,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,125,125,125,41,44,82,121,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,70,111,114,109,67,104,101,99,107,98,111,120,58,112,121,44,66,67,104,101,99,107,98,111,120,58,112,121,44,66,67,104,101,99,107,58,112,121,44,66,70,111,114,109,67,104,101,99,107,98,111,120,71,114,111,117,112,58,70,121,44,66,67,104,101,99,107,98,111,120,71,114,111,117,112,58,70,121,44,66,67,104,101,99,107,71,114,111,117,112,58,70,121,125,125,41,44,78,121,61,34,95,95,66,86,95,104,111,118,101,114,95,104,97,110,100,108,101,114,95,95,34,44,66,121,61,34,109,111,117,115,101,101,110,116,101,114,34,44,122,121,61,34,109,111,117,115,101,108,101,97,118,101,34,44,86,121,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,101,41,123,116,40,101,46,116,121,112,101,61,61,61,66,121,44,101,41,125,59,114,101,116,117,114,110,32,101,46,102,110,61,116,44,101,125,44,72,121,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,83,99,40,116,44,101,44,66,121,44,110,44,104,111,41,44,83,99,40,116,44,101,44,122,121,44,110,44,104,111,41,125,44,85,121,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,118,97,108,117,101,44,114,61,118,111,105,100,32,48,61,61,61,110,63,110,117,108,108,58,110,59,105,102,40,117,41,123,118,97,114,32,105,61,116,91,78,121,93,44,111,61,95,116,40,105,41,44,97,61,33,40,111,38,38,105,46,102,110,61,61,61,114,41,59,111,38,38,97,38,38,40,72,121,40,33,49,44,116,44,105,41,44,100,101,108,101,116,101,32,116,91,78,121,93,41,44,95,116,40,114,41,38,38,97,38,38,40,116,91,78,121,93,61,86,121,40,114,41,44,72,121,40,33,48,44,116,44,116,91,78,121,93,41,41,125,125,44,87,121,61,123,98,105,110,100,58,85,121,44,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,85,121,44,117,110,98,105,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,85,121,40,116,44,123,118,97,108,117,101,58,110,117,108,108,125,41,125,125,59,102,117,110,99,116,105,111,110,32,71,121,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,113,121,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,71,121,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,89,121,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,71,121,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,89,121,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,118,97,114,32,75,121,44,88,121,61,75,116,40,113,121,40,113,121,40,113,121,40,113,121,40,113,121,40,113,121,40,123,125,44,68,104,41,44,113,98,41,44,75,98,41,44,113,116,40,67,109,44,91,34,100,105,115,97,98,108,101,100,34,93,41,41,44,113,116,40,72,98,44,91,34,97,117,116,111,102,111,99,117,115,34,93,41,41,44,123,125,44,123,98,117,116,116,111,110,79,110,108,121,58,117,99,40,103,111,44,33,49,41,44,98,117,116,116,111,110,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,115,101,99,111,110,100,97,114,121,34,41,44,102,111,114,109,97,116,116,101,100,86,97,108,117,101,58,117,99,40,120,111,41,44,108,97,98,101,108,83,101,108,101,99,116,101,100,58,117,99,40,120,111,41,44,108,97,110,103,58,117,99,40,120,111,41,44,109,101,110,117,67,108,97,115,115,58,117,99,40,107,111,41,44,112,108,97,99,101,104,111,108,100,101,114,58,117,99,40,120,111,41,44,114,101,97,100,111,110,108,121,58,117,99,40,103,111,44,33,49,41,44,114,116,108,58,117,99,40,103,111,44,110,117,108,108,41,44,118,97,108,117,101,58,117,99,40,120,111,44,34,34,41,125,41,41,44,90,121,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,89,114,44,100,105,114,101,99,116,105,118,101,115,58,123,34,98,45,104,111,118,101,114,34,58,87,121,125,44,109,105,120,105,110,115,58,91,65,104,44,89,98,44,88,98,44,80,109,44,119,99,93,44,112,114,111,112,115,58,88,121,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,72,111,118,101,114,101,100,58,33,49,44,104,97,115,70,111,99,117,115,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,105,100,66,117,116,116,111,110,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,97,102,101,73,100,40,41,125,44,105,100,76,97,98,101,108,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,97,102,101,73,100,40,34,95,118,97,108,117,101,95,34,41,125,44,105,100,77,101,110,117,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,97,102,101,73,100,40,34,95,100,105,97,108,111,103,95,34,41,125,44,105,100,87,114,97,112,112,101,114,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,97,102,101,73,100,40,34,95,111,117,116,101,114,95,34,41,125,44,99,111,109,112,117,116,101,100,68,105,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,61,61,61,116,104,105,115,46,114,116,108,63,34,114,116,108,34,58,33,49,61,61,61,116,104,105,115,46,114,116,108,63,34,108,116,114,34,58,110,117,108,108,125,125,44,109,101,116,104,111,100,115,58,123,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,113,115,40,116,104,105,115,46,36,114,101,102,115,46,116,111,103,103,108,101,41,125,44,98,108,117,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,89,115,40,116,104,105,115,46,36,114,101,102,115,46,116,111,103,103,108,101,41,125,44,115,101,116,70,111,99,117,115,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,104,97,115,70,111,99,117,115,61,34,102,111,99,117,115,34,61,61,61,116,46,116,121,112,101,125,44,104,97,110,100,108,101,72,111,118,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,105,115,72,111,118,101,114,101,100,61,116,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,116,104,105,115,46,105,100,66,117,116,116,111,110,44,114,61,116,104,105,115,46,105,100,76,97,98,101,108,44,105,61,116,104,105,115,46,105,100,77,101,110,117,44,111,61,116,104,105,115,46,105,100,87,114,97,112,112,101,114,44,97,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,115,61,116,104,105,115,46,114,101,97,100,111,110,108,121,44,99,61,116,104,105,115,46,114,101,113,117,105,114,101,100,44,117,61,116,104,105,115,46,110,97,109,101,44,108,61,116,104,105,115,46,115,116,97,116,101,44,102,61,116,104,105,115,46,118,105,115,105,98,108,101,44,104,61,116,104,105,115,46,115,105,122,101,44,100,61,116,104,105,115,46,105,115,72,111,118,101,114,101,100,44,112,61,116,104,105,115,46,104,97,115,70,111,99,117,115,44,118,61,116,104,105,115,46,108,97,98,101,108,83,101,108,101,99,116,101,100,44,103,61,116,104,105,115,46,98,117,116,116,111,110,86,97,114,105,97,110,116,44,109,61,116,104,105,115,46,98,117,116,116,111,110,79,110,108,121,44,98,61,115,115,40,116,104,105,115,46,118,97,108,117,101,41,124,124,34,34,44,121,61,33,49,61,61,61,108,124,124,99,38,38,33,98,44,119,61,123,105,115,72,111,118,101,114,101,100,58,100,44,104,97,115,70,111,99,117,115,58,112,44,115,116,97,116,101,58,108,44,111,112,101,110,101,100,58,102,125,44,95,61,116,40,34,98,117,116,116,111,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,116,110,34,44,99,108,97,115,115,58,40,101,61,123,125,44,89,121,40,101,44,34,98,116,110,45,34,46,99,111,110,99,97,116,40,103,41,44,109,41,44,89,121,40,101,44,34,98,116,110,45,34,46,99,111,110,99,97,116,40,104,41,44,104,41,44,89,121,40,101,44,34,104,45,97,117,116,111,34,44,33,109,41,44,89,121,40,101,44,34,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,44,109,41,44,89,121,40,101,44,34,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,110,111,45,99,97,114,101,116,34,44,109,41,44,101,41,44,97,116,116,114,115,58,123,105,100,58,110,44,116,121,112,101,58,34,98,117,116,116,111,110,34,44,100,105,115,97,98,108,101,100,58,97,44,34,97,114,105,97,45,104,97,115,112,111,112,117,112,34,58,34,100,105,97,108,111,103,34,44,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,58,102,63,34,116,114,117,101,34,58,34,102,97,108,115,101,34,44,34,97,114,105,97,45,105,110,118,97,108,105,100,34,58,121,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,114,101,113,117,105,114,101,100,34,58,99,63,34,116,114,117,101,34,58,110,117,108,108,125,44,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,98,45,104,111,118,101,114,34,44,118,97,108,117,101,58,116,104,105,115,46,104,97,110,100,108,101,72,111,118,101,114,125,93,44,111,110,58,123,109,111,117,115,101,100,111,119,110,58,116,104,105,115,46,111,110,77,111,117,115,101,100,111,119,110,44,99,108,105,99,107,58,116,104,105,115,46,116,111,103,103,108,101,44,107,101,121,100,111,119,110,58,116,104,105,115,46,116,111,103,103,108,101,44,34,33,102,111,99,117,115,34,58,116,104,105,115,46,115,101,116,70,111,99,117,115,44,34,33,98,108,117,114,34,58,116,104,105,115,46,115,101,116,70,111,99,117,115,125,44,114,101,102,58,34,116,111,103,103,108,101,34,125,44,91,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,122,111,41,63,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,122,111,44,119,41,58,116,40,122,117,44,123,112,114,111,112,115,58,123,115,99,97,108,101,58,49,46,50,53,125,125,41,93,41,44,120,61,116,40,41,59,117,38,38,33,97,38,38,40,120,61,116,40,34,105,110,112,117,116,34,44,123,97,116,116,114,115,58,123,116,121,112,101,58,34,104,105,100,100,101,110,34,44,110,97,109,101,58,117,124,124,110,117,108,108,44,102,111,114,109,58,116,104,105,115,46,102,111,114,109,124,124,110,117,108,108,44,118,97,108,117,101,58,98,125,125,41,41,59,118,97,114,32,79,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,114,111,112,100,111,119,110,45,109,101,110,117,34,44,99,108,97,115,115,58,91,116,104,105,115,46,109,101,110,117,67,108,97,115,115,44,123,115,104,111,119,58,102,44,34,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,34,58,116,104,105,115,46,114,105,103,104,116,125,93,44,97,116,116,114,115,58,123,105,100,58,105,44,114,111,108,101,58,34,100,105,97,108,111,103,34,44,116,97,98,105,110,100,101,120,58,34,45,49,34,44,34,97,114,105,97,45,109,111,100,97,108,34,58,34,102,97,108,115,101,34,44,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,58,114,125,44,111,110,58,123,107,101,121,100,111,119,110,58,116,104,105,115,46,111,110,75,101,121,100,111,119,110,125,44,114,101,102,58,34,109,101,110,117,34,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,85,111,44,123,111,112,101,110,101,100,58,102,125,41,93,41,44,83,61,116,40,34,108,97,98,101,108,34,44,123,99,108,97,115,115,58,109,63,34,115,114,45,111,110,108,121,34,58,91,34,102,111,114,109,45,99,111,110,116,114,111,108,34,44,123,34,116,101,120,116,45,109,117,116,101,100,34,58,33,98,125,44,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,44,116,104,105,115,46,115,105,122,101,70,111,114,109,67,108,97,115,115,93,44,97,116,116,114,115,58,123,105,100,58,114,44,102,111,114,58,110,44,34,97,114,105,97,45,105,110,118,97,108,105,100,34,58,121,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,114,101,113,117,105,114,101,100,34,58,99,63,34,116,114,117,101,34,58,110,117,108,108,125,44,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,98,45,104,111,118,101,114,34,44,118,97,108,117,101,58,116,104,105,115,46,104,97,110,100,108,101,72,111,118,101,114,125,93,44,111,110,58,123,34,33,99,108,105,99,107,34,58,102,117,110,99,116,105,111,110,40,116,41,123,107,99,40,116,44,123,112,114,101,118,101,110,116,68,101,102,97,117,108,116,58,33,49,125,41,125,125,125,44,91,98,63,116,104,105,115,46,102,111,114,109,97,116,116,101,100,86,97,108,117,101,124,124,98,58,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,124,124,34,34,44,98,38,38,118,63,116,40,34,98,100,105,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,115,114,45,111,110,108,121,34,125,44,118,41,58,34,34,93,41,59,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,111,114,109,45,98,116,110,45,108,97,98,101,108,45,99,111,110,116,114,111,108,32,100,114,111,112,100,111,119,110,34,44,99,108,97,115,115,58,91,116,104,105,115,46,100,105,114,101,99,116,105,111,110,67,108,97,115,115,44,116,104,105,115,46,98,111,117,110,100,97,114,121,67,108,97,115,115,44,91,123,34,98,116,110,45,103,114,111,117,112,34,58,109,44,34,102,111,114,109,45,99,111,110,116,114,111,108,34,58,33,109,44,102,111,99,117,115,58,112,38,38,33,109,44,115,104,111,119,58,102,44,34,105,115,45,118,97,108,105,100,34,58,33,48,61,61,61,108,44,34,105,115,45,105,110,118,97,108,105,100,34,58,33,49,61,61,61,108,125,44,109,63,110,117,108,108,58,116,104,105,115,46,115,105,122,101,70,111,114,109,67,108,97,115,115,93,93,44,97,116,116,114,115,58,123,105,100,58,111,44,114,111,108,101,58,109,63,110,117,108,108,58,34,103,114,111,117,112,34,44,108,97,110,103,58,116,104,105,115,46,108,97,110,103,124,124,110,117,108,108,44,100,105,114,58,116,104,105,115,46,99,111,109,112,117,116,101,100,68,105,114,44,34,97,114,105,97,45,100,105,115,97,98,108,101,100,34,58,97,44,34,97,114,105,97,45,114,101,97,100,111,110,108,121,34,58,115,38,38,33,97,44,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,58,114,44,34,97,114,105,97,45,105,110,118,97,108,105,100,34,58,33,49,61,61,61,108,124,124,99,38,38,33,98,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,114,101,113,117,105,114,101,100,34,58,99,63,34,116,114,117,101,34,58,110,117,108,108,125,125,44,91,95,44,120,44,79,44,83,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,74,121,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,81,121,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,74,121,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,116,119,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,74,121,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,116,119,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,118,97,114,32,101,119,44,110,119,61,109,99,40,34,118,97,108,117,101,34,44,123,116,121,112,101,58,69,111,125,41,44,114,119,61,110,119,46,109,105,120,105,110,44,105,119,61,110,119,46,112,114,111,112,115,44,111,119,61,110,119,46,112,114,111,112,44,97,119,61,110,119,46,101,118,101,110,116,44,115,119,61,113,116,40,122,104,44,91,34,98,108,111,99,107,34,44,34,104,105,100,100,101,110,34,44,34,105,100,34,44,34,110,111,75,101,121,78,97,118,34,44,34,114,111,108,101,68,101,115,99,114,105,112,116,105,111,110,34,44,34,118,97,108,117,101,34,44,34,119,105,100,116,104,34,93,41,44,99,119,61,113,116,40,88,121,44,91,34,102,111,114,109,97,116,116,101,100,86,97,108,117,101,34,44,34,105,100,34,44,34,108,97,110,103,34,44,34,114,116,108,34,44,34,118,97,108,117,101,34,93,41,44,117,119,61,100,99,40,75,116,40,81,121,40,81,121,40,81,121,40,81,121,40,81,121,40,123,125,44,68,104,41,44,105,119,41,44,115,119,41,44,99,119,41,44,123,125,44,123,99,97,108,101,110,100,97,114,87,105,100,116,104,58,117,99,40,120,111,44,34,50,55,48,112,120,34,41,44,99,108,111,115,101,66,117,116,116,111,110,58,117,99,40,103,111,44,33,49,41,44,99,108,111,115,101,66,117,116,116,111,110,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,34,41,44,100,97,114,107,58,117,99,40,103,111,44,33,49,41,44,108,97,98,101,108,67,108,111,115,101,66,117,116,116,111,110,58,117,99,40,120,111,44,34,67,108,111,115,101,34,41,44,108,97,98,101,108,82,101,115,101,116,66,117,116,116,111,110,58,117,99,40,120,111,44,34,82,101,115,101,116,34,41,44,108,97,98,101,108,84,111,100,97,121,66,117,116,116,111,110,58,117,99,40,120,111,44,34,83,101,108,101,99,116,32,116,111,100,97,121,34,41,44,110,111,67,108,111,115,101,79,110,83,101,108,101,99,116,58,117,99,40,103,111,44,33,49,41,44,114,101,115,101,116,66,117,116,116,111,110,58,117,99,40,103,111,44,33,49,41,44,114,101,115,101,116,66,117,116,116,111,110,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,111,117,116,108,105,110,101,45,100,97,110,103,101,114,34,41,44,114,101,115,101,116,86,97,108,117,101,58,117,99,40,69,111,41,44,116,111,100,97,121,66,117,116,116,111,110,58,117,99,40,103,111,44,33,49,41,44,116,111,100,97,121,66,117,116,116,111,110,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,34,41,125,41,41,44,67,110,41,44,108,119,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,67,110,44,109,105,120,105,110,115,58,91,65,104,44,114,119,93,44,112,114,111,112,115,58,117,119,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,108,111,99,97,108,89,77,68,58,118,104,40,116,104,105,115,91,111,119,93,41,124,124,34,34,44,105,115,86,105,115,105,98,108,101,58,33,49,44,108,111,99,97,108,76,111,99,97,108,101,58,110,117,108,108,44,105,115,82,84,76,58,33,49,44,102,111,114,109,97,116,116,101,100,86,97,108,117,101,58,34,34,44,97,99,116,105,118,101,89,77,68,58,34,34,125,125,44,99,111,109,112,117,116,101,100,58,123,99,97,108,101,110,100,97,114,89,77,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,99,116,105,118,101,89,77,68,46,115,108,105,99,101,40,48,44,45,51,41,125,44,99,111,109,112,117,116,101,100,76,97,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,116,104,105,115,46,108,111,99,97,108,76,111,99,97,108,101,124,124,34,34,41,46,114,101,112,108,97,99,101,40,47,45,117,45,46,42,36,47,105,44,34,34,41,124,124,110,117,108,108,125,44,99,111,109,112,117,116,101,100,82,101,115,101,116,86,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,118,104,40,84,104,40,116,104,105,115,46,114,101,115,101,116,86,97,108,117,101,41,41,124,124,34,34,125,125,44,119,97,116,99,104,58,40,75,121,61,123,125,44,116,119,40,75,121,44,111,119,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,108,111,99,97,108,89,77,68,61,118,104,40,116,41,124,124,34,34,125,41,41,44,116,119,40,75,121,44,34,108,111,99,97,108,89,77,68,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,105,115,86,105,115,105,98,108,101,38,38,116,104,105,115,46,36,101,109,105,116,40,97,119,44,116,104,105,115,46,118,97,108,117,101,65,115,68,97,116,101,63,112,104,40,116,41,124,124,110,117,108,108,58,116,124,124,34,34,41,125,41,41,44,116,119,40,75,121,44,34,99,97,108,101,110,100,97,114,89,77,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,33,61,61,101,38,38,101,41,116,114,121,123,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,46,117,112,100,97,116,101,80,111,112,112,101,114,40,41,125,99,97,116,99,104,40,110,41,123,125,125,41,41,44,75,121,41,44,109,101,116,104,111,100,115,58,123,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,113,115,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,41,125,44,98,108,117,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,89,115,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,41,125,44,115,101,116,65,110,100,67,108,111,115,101,58,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,108,111,99,97,108,89,77,68,61,116,44,116,104,105,115,46,110,111,67,108,111,115,101,79,110,83,101,108,101,99,116,124,124,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,36,114,101,102,115,46,99,111,110,116,114,111,108,46,104,105,100,101,40,33,48,41,125,41,41,125,44,111,110,83,101,108,101,99,116,101,100,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,115,101,116,65,110,100,67,108,111,115,101,40,116,41,125,41,41,125,44,111,110,73,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,108,111,99,97,108,89,77,68,33,61,61,116,38,38,40,116,104,105,115,46,108,111,99,97,108,89,77,68,61,116,41,125,44,111,110,67,111,110,116,101,120,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,97,99,116,105,118,101,89,77,68,44,110,61,116,46,105,115,82,84,76,44,114,61,116,46,108,111,99,97,108,101,44,105,61,116,46,115,101,108,101,99,116,101,100,89,77,68,44,111,61,116,46,115,101,108,101,99,116,101,100,70,111,114,109,97,116,116,101,100,59,116,104,105,115,46,105,115,82,84,76,61,110,44,116,104,105,115,46,108,111,99,97,108,76,111,99,97,108,101,61,114,44,116,104,105,115,46,102,111,114,109,97,116,116,101,100,86,97,108,117,101,61,111,44,116,104,105,115,46,108,111,99,97,108,89,77,68,61,105,44,116,104,105,115,46,97,99,116,105,118,101,89,77,68,61,101,44,116,104,105,115,46,36,101,109,105,116,40,100,105,44,116,41,125,44,111,110,84,111,100,97,121,66,117,116,116,111,110,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,65,110,100,67,108,111,115,101,40,118,104,40,84,104,40,100,104,40,41,44,116,104,105,115,46,109,105,110,44,116,104,105,115,46,109,97,120,41,41,41,125,44,111,110,82,101,115,101,116,66,117,116,116,111,110,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,65,110,100,67,108,111,115,101,40,116,104,105,115,46,99,111,109,112,117,116,101,100,82,101,115,101,116,86,97,108,117,101,41,125,44,111,110,67,108,111,115,101,66,117,116,116,111,110,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,46,104,105,100,101,40,33,48,41,125,44,111,110,83,104,111,119,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,86,105,115,105,98,108,101,61,33,48,125,44,111,110,83,104,111,119,110,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,113,115,40,116,46,36,114,101,102,115,46,99,97,108,101,110,100,97,114,41,44,116,46,36,101,109,105,116,40,74,105,41,125,41,41,125,44,111,110,72,105,100,100,101,110,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,86,105,115,105,98,108,101,61,33,49,44,116,104,105,115,46,36,101,109,105,116,40,80,105,41,125,44,100,101,102,97,117,108,116,66,117,116,116,111,110,70,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,115,72,111,118,101,114,101,100,44,110,61,116,46,104,97,115,70,111,99,117,115,59,114,101,116,117,114,110,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,101,124,124,110,63,82,117,58,70,117,44,123,97,116,116,114,115,58,123,34,97,114,105,97,45,104,105,100,100,101,110,34,58,34,116,114,117,101,34,125,125,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,108,111,99,97,108,89,77,68,44,110,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,114,61,116,104,105,115,46,114,101,97,100,111,110,108,121,44,105,61,116,104,105,115,46,100,97,114,107,44,111,61,116,104,105,115,46,36,112,114,111,112,115,44,97,61,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,44,115,61,119,116,40,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,41,63,116,104,105,115,46,108,97,98,101,108,78,111,68,97,116,101,83,101,108,101,99,116,101,100,58,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,44,99,61,91,93,59,105,102,40,116,104,105,115,46,116,111,100,97,121,66,117,116,116,111,110,41,123,118,97,114,32,117,61,116,104,105,115,46,108,97,98,101,108,84,111,100,97,121,66,117,116,116,111,110,59,99,46,112,117,115,104,40,116,40,110,102,44,123,112,114,111,112,115,58,123,100,105,115,97,98,108,101,100,58,110,124,124,114,44,115,105,122,101,58,34,115,109,34,44,118,97,114,105,97,110,116,58,116,104,105,115,46,116,111,100,97,121,66,117,116,116,111,110,86,97,114,105,97,110,116,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,117,124,124,110,117,108,108,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,84,111,100,97,121,66,117,116,116,111,110,125,125,44,117,41,41,125,105,102,40,116,104,105,115,46,114,101,115,101,116,66,117,116,116,111,110,41,123,118,97,114,32,108,61,116,104,105,115,46,108,97,98,101,108,82,101,115,101,116,66,117,116,116,111,110,59,99,46,112,117,115,104,40,116,40,110,102,44,123,112,114,111,112,115,58,123,100,105,115,97,98,108,101,100,58,110,124,124,114,44,115,105,122,101,58,34,115,109,34,44,118,97,114,105,97,110,116,58,116,104,105,115,46,114,101,115,101,116,66,117,116,116,111,110,86,97,114,105,97,110,116,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,108,124,124,110,117,108,108,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,82,101,115,101,116,66,117,116,116,111,110,125,125,44,108,41,41,125,105,102,40,116,104,105,115,46,99,108,111,115,101,66,117,116,116,111,110,41,123,118,97,114,32,102,61,116,104,105,115,46,108,97,98,101,108,67,108,111,115,101,66,117,116,116,111,110,59,99,46,112,117,115,104,40,116,40,110,102,44,123,112,114,111,112,115,58,123,100,105,115,97,98,108,101,100,58,110,44,115,105,122,101,58,34,115,109,34,44,118,97,114,105,97,110,116,58,116,104,105,115,46,99,108,111,115,101,66,117,116,116,111,110,86,97,114,105,97,110,116,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,102,124,124,110,117,108,108,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,67,108,111,115,101,66,117,116,116,111,110,125,125,44,102,41,41,125,99,46,108,101,110,103,116,104,62,48,38,38,40,99,61,91,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,111,114,109,45,100,97,116,101,45,99,111,110,116,114,111,108,115,32,100,45,102,108,101,120,32,102,108,101,120,45,119,114,97,112,34,44,99,108,97,115,115,58,123,34,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,34,58,99,46,108,101,110,103,116,104,62,49,44,34,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,101,110,100,34,58,99,46,108,101,110,103,116,104,60,50,125,125,44,99,41,93,41,59,118,97,114,32,104,61,116,40,86,104,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,111,114,109,45,100,97,116,101,45,99,97,108,101,110,100,97,114,32,119,45,49,48,48,34,44,112,114,111,112,115,58,81,121,40,81,121,40,123,125,44,102,99,40,115,119,44,111,41,41,44,123,125,44,123,104,105,100,100,101,110,58,33,116,104,105,115,46,105,115,86,105,115,105,98,108,101,44,118,97,108,117,101,58,101,44,118,97,108,117,101,65,115,68,97,116,101,58,33,49,44,119,105,100,116,104,58,116,104,105,115,46,99,97,108,101,110,100,97,114,87,105,100,116,104,125,41,44,111,110,58,123,115,101,108,101,99,116,101,100,58,116,104,105,115,46,111,110,83,101,108,101,99,116,101,100,44,105,110,112,117,116,58,116,104,105,115,46,111,110,73,110,112,117,116,44,99,111,110,116,101,120,116,58,116,104,105,115,46,111,110,67,111,110,116,101,120,116,125,44,115,99,111,112,101,100,83,108,111,116,115,58,71,116,40,97,44,91,34,110,97,118,45,112,114,101,118,45,100,101,99,97,100,101,34,44,34,110,97,118,45,112,114,101,118,45,121,101,97,114,34,44,34,110,97,118,45,112,114,101,118,45,109,111,110,116,104,34,44,34,110,97,118,45,116,104,105,115,45,109,111,110,116,104,34,44,34,110,97,118,45,110,101,120,116,45,109,111,110,116,104,34,44,34,110,97,118,45,110,101,120,116,45,121,101,97,114,34,44,34,110,97,118,45,110,101,120,116,45,100,101,99,97,100,101,34,93,41,44,107,101,121,58,34,99,97,108,101,110,100,97,114,34,44,114,101,102,58,34,99,97,108,101,110,100,97,114,34,125,44,99,41,59,114,101,116,117,114,110,32,116,40,90,121,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,34,44,112,114,111,112,115,58,81,121,40,81,121,40,123,125,44,102,99,40,99,119,44,111,41,41,44,123,125,44,123,102,111,114,109,97,116,116,101,100,86,97,108,117,101,58,101,63,116,104,105,115,46,102,111,114,109,97,116,116,101,100,86,97,108,117,101,58,34,34,44,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,108,97,110,103,58,116,104,105,115,46,99,111,109,112,117,116,101,100,76,97,110,103,44,109,101,110,117,67,108,97,115,115,58,91,123,34,98,103,45,100,97,114,107,34,58,105,44,34,116,101,120,116,45,108,105,103,104,116,34,58,105,125,44,116,104,105,115,46,109,101,110,117,67,108,97,115,115,93,44,112,108,97,99,101,104,111,108,100,101,114,58,115,44,114,116,108,58,116,104,105,115,46,105,115,82,84,76,44,118,97,108,117,101,58,101,125,41,44,111,110,58,123,115,104,111,119,58,116,104,105,115,46,111,110,83,104,111,119,44,115,104,111,119,110,58,116,104,105,115,46,111,110,83,104,111,119,110,44,104,105,100,100,101,110,58,116,104,105,115,46,111,110,72,105,100,100,101,110,125,44,115,99,111,112,101,100,83,108,111,116,115,58,116,119,40,123,125,44,122,111,44,97,91,122,111,93,124,124,116,104,105,115,46,100,101,102,97,117,108,116,66,117,116,116,111,110,70,110,41,44,114,101,102,58,34,99,111,110,116,114,111,108,34,125,44,91,104,93,41,125,125,41,44,102,119,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,70,111,114,109,68,97,116,101,112,105,99,107,101,114,58,108,119,44,66,68,97,116,101,112,105,99,107,101,114,58,108,119,125,125,41,59,102,117,110,99,116,105,111,110,32,104,119,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,100,119,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,104,119,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,112,119,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,104,119,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,112,119,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,118,97,114,32,118,119,61,109,99,40,34,118,97,108,117,101,34,44,123,116,121,112,101,58,91,118,111,44,112,116,93,44,100,101,102,97,117,108,116,86,97,108,117,101,58,110,117,108,108,44,118,97,108,105,100,97,116,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,34,61,61,61,116,63,40,104,101,40,119,119,44,80,110,41,44,33,48,41,58,119,116,40,116,41,124,124,95,119,40,116,41,125,125,41,44,103,119,61,118,119,46,109,105,120,105,110,44,109,119,61,118,119,46,112,114,111,112,115,44,98,119,61,118,119,46,112,114,111,112,44,121,119,61,118,119,46,101,118,101,110,116,44,119,119,61,39,83,101,116,116,105,110,103,32,34,118,97,108,117,101,34,47,34,118,45,109,111,100,101,108,34,32,116,111,32,97,110,32,101,109,112,116,121,32,115,116,114,105,110,103,32,102,111,114,32,114,101,115,101,116,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,83,101,116,32,116,111,32,34,110,117,108,108,34,32,105,110,115,116,101,97,100,46,39,44,95,119,61,102,117,110,99,116,105,111,110,32,116,40,101,41,123,114,101,116,117,114,110,32,68,116,40,101,41,124,124,67,116,40,101,41,38,38,101,46,101,118,101,114,121,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,101,41,125,41,41,125,44,120,119,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,95,116,40,116,46,103,101,116,65,115,69,110,116,114,121,41,63,116,46,103,101,116,65,115,69,110,116,114,121,40,41,58,95,116,40,116,46,119,101,98,107,105,116,71,101,116,65,115,69,110,116,114,121,41,63,116,46,119,101,98,107,105,116,71,101,116,65,115,69,110,116,114,121,40,41,58,110,117,108,108,125,44,79,119,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,33,40,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,41,124,124,97,114,103,117,109,101,110,116,115,91,49,93,59,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,71,97,40,116,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,102,105,108,101,34,61,61,61,116,46,107,105,110,100,125,41,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,120,119,40,116,41,59,105,102,40,110,41,123,105,102,40,110,46,105,115,68,105,114,101,99,116,111,114,121,38,38,101,41,114,101,116,117,114,110,32,83,119,40,110,46,99,114,101,97,116,101,82,101,97,100,101,114,40,41,44,34,34,46,99,111,110,99,97,116,40,110,46,110,97,109,101,44,34,47,34,41,41,59,105,102,40,110,46,105,115,70,105,108,101,41,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,110,46,102,105,108,101,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,36,112,97,116,104,61,34,34,44,116,40,101,41,125,41,41,125,41,41,125,114,101,116,117,114,110,32,110,117,108,108,125,41,41,46,102,105,108,116,101,114,40,115,101,41,41,125,44,83,119,61,102,117,110,99,116,105,111,110,32,116,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,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,34,34,59,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,105,61,91,93,44,111,61,102,117,110,99,116,105,111,110,32,111,40,41,123,101,46,114,101,97,100,69,110,116,114,105,101,115,40,40,102,117,110,99,116,105,111,110,40,101,41,123,48,61,61,61,101,46,108,101,110,103,116,104,63,114,40,80,114,111,109,105,115,101,46,97,108,108,40,105,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,88,97,40,116,41,125,41,41,41,58,40,105,46,112,117,115,104,40,80,114,111,109,105,115,101,46,97,108,108,40,101,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,41,123,105,102,40,101,46,105,115,68,105,114,101,99,116,111,114,121,41,114,101,116,117,114,110,32,116,40,101,46,99,114,101,97,116,101,82,101,97,100,101,114,40,41,44,34,34,46,99,111,110,99,97,116,40,110,41,46,99,111,110,99,97,116,40,101,46,110,97,109,101,44,34,47,34,41,41,59,105,102,40,101,46,105,115,70,105,108,101,41,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,102,105,108,101,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,36,112,97,116,104,61,34,34,46,99,111,110,99,97,116,40,110,41,46,99,111,110,99,97,116,40,101,46,110,97,109,101,41,44,116,40,101,41,125,41,41,125,41,41,125,114,101,116,117,114,110,32,110,117,108,108,125,41,41,46,102,105,108,116,101,114,40,115,101,41,41,41,44,111,40,41,41,125,41,41,125,59,111,40,41,125,41,41,125,44,107,119,61,100,99,40,75,116,40,100,119,40,100,119,40,100,119,40,100,119,40,100,119,40,100,119,40,100,119,40,123,125,44,68,104,41,44,109,119,41,44,72,98,41,44,87,98,41,44,75,98,41,44,113,98,41,44,123,125,44,123,97,99,99,101,112,116,58,117,99,40,120,111,44,34,34,41,44,98,114,111,119,115,101,84,101,120,116,58,117,99,40,120,111,44,34,66,114,111,119,115,101,34,41,44,99,97,112,116,117,114,101,58,117,99,40,103,111,44,33,49,41,44,100,105,114,101,99,116,111,114,121,58,117,99,40,103,111,44,33,49,41,44,100,114,111,112,80,108,97,99,101,104,111,108,100,101,114,58,117,99,40,120,111,44,34,68,114,111,112,32,102,105,108,101,115,32,104,101,114,101,34,41,44,102,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,58,117,99,40,98,111,41,44,109,117,108,116,105,112,108,101,58,117,99,40,103,111,44,33,49,41,44,110,111,68,114,111,112,58,117,99,40,103,111,44,33,49,41,44,110,111,68,114,111,112,80,108,97,99,101,104,111,108,100,101,114,58,117,99,40,120,111,44,34,78,111,116,32,97,108,108,111,119,101,100,34,41,44,110,111,84,114,97,118,101,114,115,101,58,117,99,40,103,111,44,33,49,41,44,112,108,97,99,101,104,111,108,100,101,114,58,117,99,40,120,111,44,34,78,111,32,102,105,108,101,32,99,104,111,115,101,110,34,41,125,41,41,44,80,110,41,44,67,119,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,80,110,44,109,105,120,105,110,115,58,91,67,108,44,65,104,44,103,119,44,119,99,44,85,98,44,88,98,44,71,98,44,119,99,93,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,107,119,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,102,105,108,101,115,58,91,93,44,100,114,97,103,103,105,110,103,58,33,49,44,100,114,111,112,65,108,108,111,119,101,100,58,33,116,104,105,115,46,110,111,68,114,111,112,44,104,97,115,70,111,99,117,115,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,65,99,99,101,112,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,97,99,99,101,112,116,59,114,101,116,117,114,110,32,116,61,40,116,124,124,34,34,41,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,91,44,92,115,93,43,47,41,46,102,105,108,116,101,114,40,115,101,41,44,48,61,61,61,116,46,108,101,110,103,116,104,63,110,117,108,108,58,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,110,97,109,101,34,44,110,61,34,94,34,44,114,61,34,36,34,59,107,46,116,101,115,116,40,116,41,63,110,61,34,34,58,40,101,61,34,116,121,112,101,34,44,36,46,116,101,115,116,40,116,41,38,38,40,114,61,34,46,43,36,34,44,116,61,116,46,115,108,105,99,101,40,48,44,45,49,41,41,41,44,116,61,97,115,40,116,41,59,118,97,114,32,105,61,110,101,119,32,82,101,103,69,120,112,40,34,34,46,99,111,110,99,97,116,40,110,41,46,99,111,110,99,97,116,40,116,41,46,99,111,110,99,97,116,40,114,41,41,59,114,101,116,117,114,110,123,114,120,58,105,44,112,114,111,112,58,101,125,125,41,41,125,44,99,111,109,112,117,116,101,100,67,97,112,116,117,114,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,97,112,116,117,114,101,59,114,101,116,117,114,110,33,48,61,61,61,116,124,124,34,34,61,61,61,116,124,124,40,116,124,124,110,117,108,108,41,125,44,99,111,109,112,117,116,101,100,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,110,97,109,101,44,101,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,110,61,116,104,105,115,46,114,101,113,117,105,114,101,100,44,114,61,116,104,105,115,46,102,111,114,109,44,105,61,116,104,105,115,46,99,111,109,112,117,116,101,100,67,97,112,116,117,114,101,44,111,61,116,104,105,115,46,97,99,99,101,112,116,44,97,61,116,104,105,115,46,109,117,108,116,105,112,108,101,44,115,61,116,104,105,115,46,100,105,114,101,99,116,111,114,121,59,114,101,116,117,114,110,32,100,119,40,100,119,40,123,125,44,116,104,105,115,46,98,118,65,116,116,114,115,41,44,123,125,44,123,116,121,112,101,58,34,102,105,108,101,34,44,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,110,97,109,101,58,116,44,100,105,115,97,98,108,101,100,58,101,44,114,101,113,117,105,114,101,100,58,110,44,102,111,114,109,58,114,124,124,110,117,108,108,44,99,97,112,116,117,114,101,58,105,44,97,99,99,101,112,116,58,111,124,124,110,117,108,108,44,109,117,108,116,105,112,108,101,58,97,44,100,105,114,101,99,116,111,114,121,58,115,44,119,101,98,107,105,116,100,105,114,101,99,116,111,114,121,58,115,44,34,97,114,105,97,45,114,101,113,117,105,114,101,100,34,58,110,63,34,116,114,117,101,34,58,110,117,108,108,125,41,125,44,99,111,109,112,117,116,101,100,70,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,102,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,59,114,101,116,117,114,110,32,118,99,40,116,41,63,116,58,116,104,105,115,46,100,101,102,97,117,108,116,70,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,125,44,99,108,111,110,101,100,70,105,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,101,40,116,104,105,115,46,102,105,108,101,115,41,125,44,102,108,97,116,116,101,110,101,100,70,105,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,97,40,116,104,105,115,46,102,105,108,101,115,41,125,44,102,105,108,101,78,97,109,101,115,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,108,97,116,116,101,110,101,100,70,105,108,101,115,46,109,97,112,40,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,125,41,41,125,44,108,97,98,101,108,67,111,110,116,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,100,114,97,103,103,105,110,103,38,38,33,116,104,105,115,46,110,111,68,114,111,112,41,114,101,116,117,114,110,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,113,111,44,123,97,108,108,111,119,101,100,58,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,125,41,124,124,40,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,63,116,104,105,115,46,100,114,111,112,80,108,97,99,101,104,111,108,100,101,114,58,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,116,101,120,116,45,100,97,110,103,101,114,34,125,44,116,104,105,115,46,110,111,68,114,111,112,80,108,97,99,101,104,111,108,100,101,114,41,41,59,105,102,40,48,61,61,61,116,104,105,115,46,102,105,108,101,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,68,97,41,124,124,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,59,118,97,114,32,116,61,116,104,105,115,46,102,108,97,116,116,101,110,101,100,70,105,108,101,115,44,101,61,116,104,105,115,46,99,108,111,110,101,100,70,105,108,101,115,44,110,61,116,104,105,115,46,102,105,108,101,78,97,109,101,115,44,114,61,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,90,111,41,63,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,90,111,44,123,102,105,108,101,115,58,116,44,102,105,108,101,115,84,114,97,118,101,114,115,101,100,58,101,44,110,97,109,101,115,58,110,125,41,58,114,40,116,44,101,44,110,41,125,125,44,119,97,116,99,104,58,40,101,119,61,123,125,44,112,119,40,101,119,44,98,119,44,40,102,117,110,99,116,105,111,110,40,116,41,123,40,33,116,124,124,67,116,40,116,41,38,38,48,61,61,61,116,46,108,101,110,103,116,104,41,38,38,116,104,105,115,46,114,101,115,101,116,40,41,125,41,41,44,112,119,40,101,119,44,34,102,105,108,101,115,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,95,108,40,116,44,101,41,41,123,118,97,114,32,110,61,116,104,105,115,46,109,117,108,116,105,112,108,101,44,114,61,116,104,105,115,46,110,111,84,114,97,118,101,114,115,101,44,105,61,33,110,124,124,114,63,90,97,40,116,41,58,116,59,116,104,105,115,46,36,101,109,105,116,40,121,119,44,110,63,105,58,105,91,48,93,124,124,110,117,108,108,41,125,125,41,41,44,101,119,41,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,102,111,114,109,61,110,117,108,108,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,84,115,40,34,102,111,114,109,34,44,116,104,105,115,46,36,101,108,41,59,116,38,38,40,120,99,40,116,44,34,114,101,115,101,116,34,44,116,104,105,115,46,114,101,115,101,116,44,102,111,41,44,116,104,105,115,46,36,95,102,111,114,109,61,116,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,95,102,111,114,109,59,116,38,38,79,99,40,116,44,34,114,101,115,101,116,34,44,116,104,105,115,46,114,101,115,101,116,44,102,111,41,125,44,109,101,116,104,111,100,115,58,123,105,115,70,105,108,101,86,97,108,105,100,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,33,49,59,118,97,114,32,101,61,116,104,105,115,46,99,111,109,112,117,116,101,100,65,99,99,101,112,116,59,114,101,116,117,114,110,33,101,124,124,101,46,115,111,109,101,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,114,120,46,116,101,115,116,40,116,91,101,46,112,114,111,112,93,41,125,41,41,125,44,105,115,70,105,108,101,115,65,114,114,97,121,86,97,108,105,100,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,114,101,116,117,114,110,32,67,116,40,116,41,63,116,46,101,118,101,114,121,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,105,115,70,105,108,101,86,97,108,105,100,40,116,41,125,41,41,58,116,104,105,115,46,105,115,70,105,108,101,86,97,108,105,100,40,116,41,125,44,100,101,102,97,117,108,116,70,105,108,101,78,97,109,101,70,111,114,109,97,116,116,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,110,46,106,111,105,110,40,34,44,32,34,41,125,44,115,101,116,70,105,108,101,115,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,61,33,116,104,105,115,46,110,111,68,114,111,112,44,116,104,105,115,46,100,114,97,103,103,105,110,103,61,33,49,44,116,104,105,115,46,102,105,108,101,115,61,116,104,105,115,46,109,117,108,116,105,112,108,101,63,116,104,105,115,46,100,105,114,101,99,116,111,114,121,63,116,58,90,97,40,116,41,58,90,97,40,116,41,46,115,108,105,99,101,40,48,44,49,41,125,44,115,101,116,73,110,112,117,116,70,105,108,101,115,58,102,117,110,99,116,105,111,110,40,116,41,123,116,114,121,123,118,97,114,32,101,61,110,101,119,32,67,108,105,112,98,111,97,114,100,69,118,101,110,116,40,34,34,41,46,99,108,105,112,98,111,97,114,100,68,97,116,97,124,124,110,101,119,32,68,97,116,97,84,114,97,110,115,102,101,114,59,90,97,40,97,101,40,116,41,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,100,101,108,101,116,101,32,116,46,36,112,97,116,104,44,101,46,105,116,101,109,115,46,97,100,100,40,116,41,125,41,41,44,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,102,105,108,101,115,61,101,46,102,105,108,101,115,125,99,97,116,99,104,40,110,41,123,125,125,44,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,118,97,114,32,116,61,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,59,116,46,118,97,108,117,101,61,34,34,44,116,46,116,121,112,101,61,34,34,44,116,46,116,121,112,101,61,34,102,105,108,101,34,125,99,97,116,99,104,40,101,41,123,125,116,104,105,115,46,102,105,108,101,115,61,91,93,125,44,104,97,110,100,108,101,70,105,108,101,115,58,102,117,110,99,116,105,111,110,40,116,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,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,59,105,102,40,101,41,123,118,97,114,32,110,61,116,46,102,105,108,116,101,114,40,116,104,105,115,46,105,115,70,105,108,101,115,65,114,114,97,121,86,97,108,105,100,41,59,110,46,108,101,110,103,116,104,62,48,38,38,40,116,104,105,115,46,115,101,116,70,105,108,101,115,40,110,41,44,116,104,105,115,46,115,101,116,73,110,112,117,116,70,105,108,101,115,40,110,41,41,125,101,108,115,101,32,116,104,105,115,46,115,101,116,70,105,108,101,115,40,116,41,125,44,102,111,99,117,115,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,112,108,97,105,110,124,124,34,102,111,99,117,115,111,117,116,34,61,61,61,116,46,116,121,112,101,63,116,104,105,115,46,104,97,115,70,111,99,117,115,61,33,49,58,116,104,105,115,46,104,97,115,70,111,99,117,115,61,33,48,125,44,111,110,67,104,97,110,103,101,58,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,46,116,121,112,101,44,114,61,116,46,116,97,114,103,101,116,44,105,61,116,46,100,97,116,97,84,114,97,110,115,102,101,114,44,111,61,118,111,105,100,32,48,61,61,61,105,63,123,125,58,105,44,97,61,34,100,114,111,112,34,61,61,61,110,59,116,104,105,115,46,36,101,109,105,116,40,117,105,44,116,41,59,118,97,114,32,99,61,71,97,40,111,46,105,116,101,109,115,124,124,91,93,41,59,105,102,40,115,38,38,99,46,108,101,110,103,116,104,62,48,38,38,33,121,116,40,120,119,40,99,91,48,93,41,41,41,79,119,40,99,44,116,104,105,115,46,100,105,114,101,99,116,111,114,121,41,46,116,104,101,110,40,40,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,70,105,108,101,115,40,116,44,97,41,125,41,41,59,101,108,115,101,123,118,97,114,32,117,61,71,97,40,114,46,102,105,108,101,115,124,124,111,46,102,105,108,101,115,124,124,91,93,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,36,112,97,116,104,61,116,46,119,101,98,107,105,116,82,101,108,97,116,105,118,101,80,97,116,104,124,124,34,34,44,116,125,41,41,59,116,104,105,115,46,104,97,110,100,108,101,70,105,108,101,115,40,117,44,97,41,125,125,44,111,110,68,114,97,103,101,110,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,107,99,40,116,41,44,116,104,105,115,46,100,114,97,103,103,105,110,103,61,33,48,59,118,97,114,32,101,61,116,46,100,97,116,97,84,114,97,110,115,102,101,114,44,110,61,118,111,105,100,32,48,61,61,61,101,63,123,125,58,101,59,105,102,40,116,104,105,115,46,110,111,68,114,111,112,124,124,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,33,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,41,114,101,116,117,114,110,32,110,46,100,114,111,112,69,102,102,101,99,116,61,34,110,111,110,101,34,44,118,111,105,100,40,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,61,33,49,41,59,110,46,100,114,111,112,69,102,102,101,99,116,61,34,99,111,112,121,34,125,44,111,110,68,114,97,103,111,118,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,107,99,40,116,41,44,116,104,105,115,46,100,114,97,103,103,105,110,103,61,33,48,59,118,97,114,32,101,61,116,46,100,97,116,97,84,114,97,110,115,102,101,114,44,110,61,118,111,105,100,32,48,61,61,61,101,63,123,125,58,101,59,105,102,40,116,104,105,115,46,110,111,68,114,111,112,124,124,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,33,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,41,114,101,116,117,114,110,32,110,46,100,114,111,112,69,102,102,101,99,116,61,34,110,111,110,101,34,44,118,111,105,100,40,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,61,33,49,41,59,110,46,100,114,111,112,69,102,102,101,99,116,61,34,99,111,112,121,34,125,44,111,110,68,114,97,103,108,101,97,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,107,99,40,116,41,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,100,114,97,103,103,105,110,103,61,33,49,44,101,46,100,114,111,112,65,108,108,111,119,101,100,61,33,101,46,110,111,68,114,111,112,125,41,41,125,44,111,110,68,114,111,112,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,107,99,40,116,41,44,116,104,105,115,46,100,114,97,103,103,105,110,103,61,33,49,44,116,104,105,115,46,110,111,68,114,111,112,124,124,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,33,116,104,105,115,46,100,114,111,112,65,108,108,111,119,101,100,63,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,100,114,111,112,65,108,108,111,119,101,100,61,33,101,46,110,111,68,114,111,112,125,41,41,58,116,104,105,115,46,111,110,67,104,97,110,103,101,40,116,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,99,117,115,116,111,109,44,110,61,116,104,105,115,46,112,108,97,105,110,44,114,61,116,104,105,115,46,115,105,122,101,44,105,61,116,104,105,115,46,100,114,97,103,103,105,110,103,44,111,61,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,44,97,61,116,104,105,115,46,98,118,65,116,116,114,115,44,115,61,116,40,34,105,110,112,117,116,34,44,123,99,108,97,115,115,58,91,123,34,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,34,58,110,44,34,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,34,58,101,44,102,111,99,117,115,58,101,38,38,116,104,105,115,46,104,97,115,70,111,99,117,115,125,44,111,93,44,115,116,121,108,101,58,101,63,123,122,73,110,100,101,120,58,45,53,125,58,123,125,44,97,116,116,114,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,111,110,58,123,99,104,97,110,103,101,58,116,104,105,115,46,111,110,67,104,97,110,103,101,44,102,111,99,117,115,105,110,58,116,104,105,115,46,102,111,99,117,115,72,97,110,100,108,101,114,44,102,111,99,117,115,111,117,116,58,116,104,105,115,46,102,111,99,117,115,72,97,110,100,108,101,114,44,114,101,115,101,116,58,116,104,105,115,46,114,101,115,101,116,125,44,114,101,102,58,34,105,110,112,117,116,34,125,41,59,105,102,40,110,41,114,101,116,117,114,110,32,115,59,118,97,114,32,99,61,116,40,34,108,97,98,101,108,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,34,44,99,108,97,115,115,58,123,100,114,97,103,103,105,110,103,58,105,125,44,97,116,116,114,115,58,123,102,111,114,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,34,100,97,116,97,45,98,114,111,119,115,101,34,58,116,104,105,115,46,98,114,111,119,115,101,84,101,120,116,124,124,110,117,108,108,125,125,44,91,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,45,98,108,111,99,107,32,102,111,114,109,45,102,105,108,101,45,116,101,120,116,34,44,115,116,121,108,101,58,123,112,111,105,110,116,101,114,69,118,101,110,116,115,58,34,110,111,110,101,34,125,125,44,91,116,104,105,115,46,108,97,98,101,108,67,111,110,116,101,110,116,93,41,93,41,59,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,117,115,116,111,109,45,102,105,108,101,32,98,45,102,111,114,109,45,102,105,108,101,34,44,99,108,97,115,115,58,91,112,119,40,123,125,44,34,98,45,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,34,46,99,111,110,99,97,116,40,114,41,44,114,41,44,111,44,97,46,99,108,97,115,115,93,44,115,116,121,108,101,58,97,46,115,116,121,108,101,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,34,95,66,86,95,102,105,108,101,95,111,117,116,101,114,95,34,41,125,44,111,110,58,123,100,114,97,103,101,110,116,101,114,58,116,104,105,115,46,111,110,68,114,97,103,101,110,116,101,114,44,100,114,97,103,111,118,101,114,58,116,104,105,115,46,111,110,68,114,97,103,111,118,101,114,44,100,114,97,103,108,101,97,118,101,58,116,104,105,115,46,111,110,68,114,97,103,108,101,97,118,101,44,100,114,111,112,58,116,104,105,115,46,111,110,68,114,111,112,125,125,44,91,115,44,99,93,41,125,125,41,44,80,119,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,70,111,114,109,70,105,108,101,58,67,119,44,66,70,105,108,101,58,67,119,125,125,41,44,84,119,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,92,92,34,43,116,125,44,106,119,61,102,117,110,99,116,105,111,110,40,116,41,123,116,61,115,115,40,116,41,59,118,97,114,32,101,61,116,46,108,101,110,103,116,104,44,110,61,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,59,114,101,116,117,114,110,32,116,46,115,112,108,105,116,40,34,34,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,114,44,105,44,111,41,123,118,97,114,32,97,61,116,46,99,104,97,114,67,111,100,101,65,116,40,111,41,59,114,101,116,117,114,110,32,48,61,61,61,97,63,114,43,34,239,191,189,34,58,49,50,55,61,61,61,97,124,124,97,62,61,49,38,38,97,60,61,51,49,124,124,48,61,61,61,111,38,38,97,62,61,52,56,38,38,97,60,61,53,55,124,124,49,61,61,61,111,38,38,97,62,61,52,56,38,38,97,60,61,53,55,38,38,52,53,61,61,61,110,63,114,43,84,119,40,34,34,46,99,111,110,99,97,116,40,97,46,116,111,83,116,114,105,110,103,40,49,54,41,44,34,32,34,41,41,58,48,61,61,61,111,38,38,52,53,61,61,61,97,38,38,49,61,61,61,101,63,114,43,84,119,40,105,41,58,97,62,61,49,50,56,124,124,52,53,61,61,61,97,124,124,57,53,61,61,61,97,124,124,97,62,61,52,56,38,38,97,60,61,53,55,124,124,97,62,61,54,53,38,38,97,60,61,57,48,124,124,97,62,61,57,55,38,38,97,60,61,49,50,50,63,114,43,105,58,114,43,84,119,40,105,41,125,41,44,34,34,41,125,59,102,117,110,99,116,105,111,110,32,69,119,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,68,119,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,69,119,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,65,119,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,69,119,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,65,119,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,118,97,114,32,76,119,61,91,34,97,117,116,111,34,44,34,115,116,97,114,116,34,44,34,101,110,100,34,44,34,99,101,110,116,101,114,34,44,34,98,97,115,101,108,105,110,101,34,44,34,115,116,114,101,116,99,104,34,93,44,73,119,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,59,105,102,40,33,119,116,40,110,41,38,38,33,49,33,61,61,110,41,114,101,116,117,114,110,32,101,38,38,40,114,43,61,34,45,34,46,99,111,110,99,97,116,40,101,41,41,44,34,99,111,108,34,33,61,61,116,124,124,34,34,33,61,61,110,38,38,33,48,33,61,61,110,63,40,114,43,61,34,45,34,46,99,111,110,99,97,116,40,110,41,44,108,115,40,114,41,41,58,108,115,40,114,41,125,44,77,119,61,75,115,40,73,119,41,44,36,119,61,82,116,40,110,117,108,108,41,44,70,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,99,40,41,46,102,105,108,116,101,114,40,115,101,41,44,101,61,116,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,91,101,93,61,117,99,40,84,111,41,44,116,125,41,44,82,116,40,110,117,108,108,41,41,44,110,61,116,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,91,99,99,40,101,44,34,111,102,102,115,101,116,34,41,93,61,117,99,40,65,111,41,44,116,125,41,44,82,116,40,110,117,108,108,41,41,44,114,61,116,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,91,99,99,40,101,44,34,111,114,100,101,114,34,41,93,61,117,99,40,65,111,41,44,116,125,41,44,82,116,40,110,117,108,108,41,41,59,114,101,116,117,114,110,32,36,119,61,70,116,40,82,116,40,110,117,108,108,41,44,123,99,111,108,58,86,116,40,101,41,44,111,102,102,115,101,116,58,86,116,40,110,41,44,111,114,100,101,114,58,86,116,40,114,41,125,41,44,100,99,40,75,116,40,68,119,40,68,119,40,68,119,40,68,119,40,123,125,44,101,41,44,110,41,44,114,41,44,123,125,44,123,97,108,105,103,110,83,101,108,102,58,117,99,40,120,111,44,110,117,108,108,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,113,97,40,76,119,44,116,41,125,41,41,44,99,111,108,58,117,99,40,103,111,44,33,49,41,44,99,111,108,115,58,117,99,40,65,111,41,44,111,102,102,115,101,116,58,117,99,40,65,111,41,44,111,114,100,101,114,58,117,99,40,65,111,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,125,41,41,44,108,110,41,125,44,82,119,61,123,110,97,109,101,58,108,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,103,101,116,32,112,114,111,112,115,40,41,123,114,101,116,117,114,110,32,100,101,108,101,116,101,32,116,104,105,115,46,112,114,111,112,115,44,116,104,105,115,46,112,114,111,112,115,61,70,119,40,41,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,101,46,112,114,111,112,115,44,105,61,101,46,100,97,116,97,44,111,61,101,46,99,104,105,108,100,114,101,110,44,97,61,114,46,99,111,108,115,44,115,61,114,46,111,102,102,115,101,116,44,99,61,114,46,111,114,100,101,114,44,117,61,114,46,97,108,105,103,110,83,101,108,102,44,108,61,91,93,59,102,111,114,40,118,97,114,32,102,32,105,110,32,36,119,41,102,111,114,40,118,97,114,32,104,61,36,119,91,102,93,44,100,61,48,59,100,60,104,46,108,101,110,103,116,104,59,100,43,43,41,123,118,97,114,32,112,61,77,119,40,102,44,104,91,100,93,46,114,101,112,108,97,99,101,40,102,44,34,34,41,44,114,91,104,91,100,93,93,41,59,112,38,38,108,46,112,117,115,104,40,112,41,125,118,97,114,32,118,61,108,46,115,111,109,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,88,46,116,101,115,116,40,116,41,125,41,41,59,114,101,116,117,114,110,32,108,46,112,117,115,104,40,40,110,61,123,99,111,108,58,114,46,99,111,108,124,124,33,118,38,38,33,97,125,44,65,119,40,110,44,34,99,111,108,45,34,46,99,111,110,99,97,116,40,97,41,44,97,41,44,65,119,40,110,44,34,111,102,102,115,101,116,45,34,46,99,111,110,99,97,116,40,115,41,44,115,41,44,65,119,40,110,44,34,111,114,100,101,114,45,34,46,99,111,110,99,97,116,40,99,41,44,99,41,44,65,119,40,110,44,34,97,108,105,103,110,45,115,101,108,102,45,34,46,99,111,110,99,97,116,40,117,41,44,117,41,44,110,41,41,44,116,40,114,46,116,97,103,44,36,101,40,105,44,123,99,108,97,115,115,58,108,125,41,44,111,41,125,125,59,102,117,110,99,116,105,111,110,32,78,119,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,66,119,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,78,119,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,122,119,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,78,119,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,122,119,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,118,97,114,32,86,119,61,91,34,105,110,112,117,116,34,44,34,115,101,108,101,99,116,34,44,34,116,101,120,116,97,114,101,97,34,93,44,72,119,61,86,119,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,34,46,99,111,110,99,97,116,40,116,44,34,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,34,41,125,41,41,46,106,111,105,110,40,41,44,85,119,61,91,93,46,99,111,110,99,97,116,40,86,119,44,91,34,97,34,44,34,98,117,116,116,111,110,34,44,34,108,97,98,101,108,34,93,41,44,87,119,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,100,99,40,75,116,40,66,119,40,66,119,40,66,119,40,66,119,40,123,125,44,68,104,41,44,75,98,41,44,110,99,40,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,91,99,99,40,101,44,34,99,111,110,116,101,110,116,67,111,108,115,34,41,93,61,117,99,40,84,111,41,44,116,91,99,99,40,101,44,34,108,97,98,101,108,65,108,105,103,110,34,41,93,61,117,99,40,120,111,41,44,116,91,99,99,40,101,44,34,108,97,98,101,108,67,111,108,115,34,41,93,61,117,99,40,84,111,41,44,116,125,41,44,82,116,40,110,117,108,108,41,41,41,44,123,125,44,123,100,101,115,99,114,105,112,116,105,111,110,58,117,99,40,120,111,41,44,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,102,101,101,100,98,97,99,107,65,114,105,97,76,105,118,101,58,117,99,40,120,111,44,34,97,115,115,101,114,116,105,118,101,34,41,44,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,58,117,99,40,120,111,41,44,108,97,98,101,108,58,117,99,40,120,111,41,44,108,97,98,101,108,67,108,97,115,115,58,117,99,40,107,111,41,44,108,97,98,101,108,70,111,114,58,117,99,40,120,111,41,44,108,97,98,101,108,83,105,122,101,58,117,99,40,120,111,41,44,108,97,98,101,108,83,114,79,110,108,121,58,117,99,40,103,111,44,33,49,41,44,116,111,111,108,116,105,112,58,117,99,40,103,111,44,33,49,41,44,118,97,108,105,100,70,101,101,100,98,97,99,107,58,117,99,40,120,111,41,44,118,97,108,105,100,97,116,101,100,58,117,99,40,103,111,44,33,49,41,125,41,41,44,84,110,41,125,44,71,119,61,123,110,97,109,101,58,84,110,44,109,105,120,105,110,115,58,91,65,104,44,88,98,44,119,99,93,44,103,101,116,32,112,114,111,112,115,40,41,123,114,101,116,117,114,110,32,100,101,108,101,116,101,32,116,104,105,115,46,112,114,111,112,115,44,116,104,105,115,46,112,114,111,112,115,61,87,119,40,41,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,58,110,117,108,108,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,110,116,101,110,116,67,111,108,80,114,111,112,115,58,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,67,111,108,80,114,111,112,115,40,116,104,105,115,46,36,112,114,111,112,115,44,34,99,111,110,116,101,110,116,34,41,125,44,108,97,98,101,108,65,108,105,103,110,67,108,97,115,115,101,115,58,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,65,108,105,103,110,67,108,97,115,115,101,115,40,116,104,105,115,46,36,112,114,111,112,115,44,34,108,97,98,101,108,34,41,125,44,108,97,98,101,108,67,111,108,80,114,111,112,115,58,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,67,111,108,80,114,111,112,115,40,116,104,105,115,46,36,112,114,111,112,115,44,34,108,97,98,101,108,34,41,125,44,105,115,72,111,114,105,122,111,110,116,97,108,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,116,40,116,104,105,115,46,99,111,110,116,101,110,116,67,111,108,80,114,111,112,115,41,46,108,101,110,103,116,104,62,48,124,124,86,116,40,116,104,105,115,46,108,97,98,101,108,67,111,108,80,114,111,112,115,41,46,108,101,110,103,116,104,62,48,125,125,44,119,97,116,99,104,58,123,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,116,104,105,115,46,117,112,100,97,116,101,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,40,116,44,101,41,125,125,44,109,111,117,110,116,101,100,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,117,112,100,97,116,101,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,40,116,46,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,41,125,41,41,125,44,109,101,116,104,111,100,115,58,123,103,101,116,65,108,105,103,110,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,99,40,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,105,61,116,91,99,99,40,114,44,34,34,46,99,111,110,99,97,116,40,101,44,34,65,108,105,103,110,34,41,41,93,124,124,110,117,108,108,59,114,101,116,117,114,110,32,105,38,38,110,46,112,117,115,104,40,91,34,116,101,120,116,34,44,114,44,105,93,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,45,34,41,41,44,110,125,41,44,91,93,41,125,44,103,101,116,67,111,108,80,114,111,112,115,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,99,40,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,105,61,116,91,99,99,40,114,44,34,34,46,99,111,110,99,97,116,40,101,44,34,67,111,108,115,34,41,41,93,59,114,101,116,117,114,110,32,105,61,34,34,61,61,61,105,124,124,40,105,124,124,33,49,41,44,120,116,40,105,41,124,124,34,97,117,116,111,34,61,61,61,105,124,124,40,105,61,74,97,40,105,44,48,41,44,105,61,105,62,48,38,38,105,41,44,105,38,38,40,110,91,114,124,124,40,120,116,40,105,41,63,34,99,111,108,34,58,34,99,111,108,115,34,41,93,61,105,41,44,110,125,41,44,123,125,41,125,44,117,112,100,97,116,101,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,58,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,108,97,98,101,108,70,111,114,59,105,102,40,117,38,38,110,41,123,118,97,114,32,114,61,67,115,40,34,35,34,46,99,111,110,99,97,116,40,106,119,40,110,41,41,44,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,41,59,105,102,40,114,41,123,118,97,114,32,105,61,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,44,111,61,40,116,124,124,34,34,41,46,115,112,108,105,116,40,77,41,44,97,61,40,101,124,124,34,34,41,46,115,112,108,105,116,40,77,41,44,115,61,40,36,115,40,114,44,105,41,124,124,34,34,41,46,115,112,108,105,116,40,77,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,113,97,40,97,44,116,41,125,41,41,46,99,111,110,99,97,116,40,111,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,110,46,105,110,100,101,120,79,102,40,116,41,61,61,61,101,125,41,41,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,32,34,41,46,116,114,105,109,40,41,59,115,63,73,115,40,114,44,105,44,115,41,58,77,115,40,114,44,105,41,125,125,125,44,111,110,76,101,103,101,110,100,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,104,105,115,46,108,97,98,101,108,70,111,114,41,123,118,97,114,32,101,61,116,46,116,97,114,103,101,116,44,110,61,101,63,101,46,116,97,103,78,97,109,101,58,34,34,59,105,102,40,45,49,61,61,61,85,119,46,105,110,100,101,120,79,102,40,110,41,41,123,118,97,114,32,114,61,107,115,40,72,119,44,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,41,46,102,105,108,116,101,114,40,120,115,41,59,49,61,61,61,114,46,108,101,110,103,116,104,38,38,113,115,40,114,91,48,93,41,125,125,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,116,101,44,110,61,116,104,105,115,46,102,101,101,100,98,97,99,107,65,114,105,97,76,105,118,101,44,114,61,116,104,105,115,46,105,115,72,111,114,105,122,111,110,116,97,108,44,105,61,116,104,105,115,46,108,97,98,101,108,70,111,114,44,111,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,44,97,61,116,104,105,115,46,115,97,102,101,73,100,44,115,61,116,104,105,115,46,116,111,111,108,116,105,112,44,99,61,97,40,41,44,117,61,33,105,44,108,61,116,40,41,44,102,61,111,40,108,97,41,124,124,116,104,105,115,46,108,97,98,101,108,44,104,61,102,63,97,40,34,95,66,86,95,108,97,98,101,108,95,34,41,58,110,117,108,108,59,105,102,40,102,124,124,114,41,123,118,97,114,32,100,61,116,104,105,115,46,108,97,98,101,108,83,105,122,101,44,112,61,116,104,105,115,46,108,97,98,101,108,67,111,108,80,114,111,112,115,44,118,61,117,63,34,108,101,103,101,110,100,34,58,34,108,97,98,101,108,34,59,116,104,105,115,46,108,97,98,101,108,83,114,79,110,108,121,63,40,102,38,38,40,108,61,116,40,118,44,123,99,108,97,115,115,58,34,115,114,45,111,110,108,121,34,44,97,116,116,114,115,58,123,105,100,58,104,44,102,111,114,58,105,124,124,110,117,108,108,125,125,44,91,102,93,41,41,44,108,61,116,40,114,63,82,119,58,34,100,105,118,34,44,123,112,114,111,112,115,58,114,63,112,58,123,125,125,44,91,108,93,41,41,58,108,61,116,40,114,63,82,119,58,118,44,123,111,110,58,117,63,123,99,108,105,99,107,58,116,104,105,115,46,111,110,76,101,103,101,110,100,67,108,105,99,107,125,58,123,125,44,112,114,111,112,115,58,114,63,66,119,40,66,119,40,123,125,44,112,41,44,123,125,44,123,116,97,103,58,118,125,41,58,123,125,44,97,116,116,114,115,58,123,105,100,58,104,44,102,111,114,58,105,124,124,110,117,108,108,44,116,97,98,105,110,100,101,120,58,117,63,34,45,49,34,58,110,117,108,108,125,44,99,108,97,115,115,58,91,117,63,34,98,118,45,110,111,45,102,111,99,117,115,45,114,105,110,103,34,58,34,34,44,114,124,124,117,63,34,99,111,108,45,102,111,114,109,45,108,97,98,101,108,34,58,34,34,44,33,114,38,38,117,63,34,112,116,45,48,34,58,34,34,44,114,124,124,117,63,34,34,58,34,100,45,98,108,111,99,107,34,44,100,63,34,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,34,46,99,111,110,99,97,116,40,100,41,58,34,34,44,116,104,105,115,46,108,97,98,101,108,65,108,105,103,110,67,108,97,115,115,101,115,44,116,104,105,115,46,108,97,98,101,108,67,108,97,115,115,93,125,44,91,102,93,41,125,118,97,114,32,103,61,116,40,41,44,109,61,111,40,117,97,41,124,124,116,104,105,115,46,105,110,118,97,108,105,100,70,101,101,100,98,97,99,107,44,98,61,109,63,97,40,34,95,66,86,95,102,101,101,100,98,97,99,107,95,105,110,118,97,108,105,100,95,34,41,58,110,117,108,108,59,109,38,38,40,103,61,116,40,77,98,44,123,112,114,111,112,115,58,123,97,114,105,97,76,105,118,101,58,110,44,105,100,58,98,44,114,111,108,101,58,110,63,34,97,108,101,114,116,34,58,110,117,108,108,44,115,116,97,116,101,58,101,44,116,111,111,108,116,105,112,58,115,125,44,97,116,116,114,115,58,123,116,97,98,105,110,100,101,120,58,109,63,34,45,49,34,58,110,117,108,108,125,125,44,91,109,93,41,41,59,118,97,114,32,121,61,116,40,41,44,119,61,111,40,87,97,41,124,124,116,104,105,115,46,118,97,108,105,100,70,101,101,100,98,97,99,107,44,95,61,119,63,97,40,34,95,66,86,95,102,101,101,100,98,97,99,107,95,118,97,108,105,100,95,34,41,58,110,117,108,108,59,119,38,38,40,121,61,116,40,70,98,44,123,112,114,111,112,115,58,123,97,114,105,97,76,105,118,101,58,110,44,105,100,58,95,44,114,111,108,101,58,110,63,34,97,108,101,114,116,34,58,110,117,108,108,44,115,116,97,116,101,58,101,44,116,111,111,108,116,105,112,58,115,125,44,97,116,116,114,115,58,123,116,97,98,105,110,100,101,120,58,119,63,34,45,49,34,58,110,117,108,108,125,125,44,91,119,93,41,41,59,118,97,114,32,120,61,116,40,41,44,79,61,111,40,87,111,41,124,124,116,104,105,115,46,100,101,115,99,114,105,112,116,105,111,110,44,83,61,79,63,97,40,34,95,66,86,95,100,101,115,99,114,105,112,116,105,111,110,95,34,41,58,110,117,108,108,59,79,38,38,40,120,61,116,40,76,98,44,123,97,116,116,114,115,58,123,105,100,58,83,44,116,97,98,105,110,100,101,120,58,34,45,49,34,125,125,44,91,79,93,41,41,59,118,97,114,32,107,61,116,104,105,115,46,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,61,91,83,44,33,49,61,61,61,101,63,98,58,110,117,108,108,44,33,48,61,61,61,101,63,95,58,110,117,108,108,93,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,32,34,41,124,124,110,117,108,108,44,67,61,116,40,114,63,82,119,58,34,100,105,118,34,44,123,112,114,111,112,115,58,114,63,116,104,105,115,46,99,111,110,116,101,110,116,67,111,108,80,114,111,112,115,58,123,125,44,114,101,102,58,34,99,111,110,116,101,110,116,34,125,44,91,111,40,85,111,44,123,97,114,105,97,68,101,115,99,114,105,98,101,100,98,121,58,107,44,100,101,115,99,114,105,112,116,105,111,110,73,100,58,83,44,105,100,58,99,44,108,97,98,101,108,73,100,58,104,125,41,124,124,116,40,41,44,103,44,121,44,120,93,41,59,114,101,116,117,114,110,32,116,40,117,63,34,102,105,101,108,100,115,101,116,34,58,114,63,78,98,58,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,111,114,109,45,103,114,111,117,112,34,44,99,108,97,115,115,58,91,123,34,119,97,115,45,118,97,108,105,100,97,116,101,100,34,58,116,104,105,115,46,118,97,108,105,100,97,116,101,100,125,44,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,93,44,97,116,116,114,115,58,123,105,100,58,99,44,100,105,115,97,98,108,101,100,58,117,63,116,104,105,115,46,100,105,115,97,98,108,101,100,58,110,117,108,108,44,114,111,108,101,58,117,63,110,117,108,108,58,34,103,114,111,117,112,34,44,34,97,114,105,97,45,105,110,118,97,108,105,100,34,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,114,105,97,73,110,118,97,108,105,100,44,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,58,117,38,38,114,63,104,58,110,117,108,108,125,125,44,114,38,38,117,63,91,116,40,78,98,44,91,108,44,67,93,41,93,58,91,108,44,67,93,41,125,125,44,113,119,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,70,111,114,109,71,114,111,117,112,58,71,119,44,66,70,111,114,109,70,105,101,108,100,115,101,116,58,71,119,125,125,41,44,89,119,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,99,111,109,112,117,116,101,100,58,123,115,101,108,101,99,116,105,111,110,83,116,97,114,116,58,123,99,97,99,104,101,58,33,49,44,103,101,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,36,114,101,102,115,46,105,110,112,117,116,46,115,101,108,101,99,116,105,111,110,83,116,97,114,116,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,115,101,108,101,99,116,105,111,110,83,116,97,114,116,61,116,125,125,44,115,101,108,101,99,116,105,111,110,69,110,100,58,123,99,97,99,104,101,58,33,49,44,103,101,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,36,114,101,102,115,46,105,110,112,117,116,46,115,101,108,101,99,116,105,111,110,69,110,100,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,115,101,108,101,99,116,105,111,110,69,110,100,61,116,125,125,44,115,101,108,101,99,116,105,111,110,68,105,114,101,99,116,105,111,110,58,123,99,97,99,104,101,58,33,49,44,103,101,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,36,114,101,102,115,46,105,110,112,117,116,46,115,101,108,101,99,116,105,111,110,68,105,114,101,99,116,105,111,110,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,115,101,108,101,99,116,105,111,110,68,105,114,101,99,116,105,111,110,61,116,125,125,125,44,109,101,116,104,111,100,115,58,123,115,101,108,101,99,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,59,40,116,61,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,46,115,101,108,101,99,116,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,125,44,115,101,116,83,101,108,101,99,116,105,111,110,82,97,110,103,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,59,40,116,61,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,46,115,101,116,83,101,108,101,99,116,105,111,110,82,97,110,103,101,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,125,44,115,101,116,82,97,110,103,101,84,101,120,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,59,40,116,61,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,46,115,101,116,82,97,110,103,101,84,101,120,116,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,125,125,125,41,59,102,117,110,99,116,105,111,110,32,75,119,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,88,119,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,75,119,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,90,119,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,75,119,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,90,119,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,118,97,114,32,74,119,61,109,99,40,34,118,97,108,117,101,34,44,123,116,121,112,101,58,65,111,44,100,101,102,97,117,108,116,86,97,108,117,101,58,34,34,44,101,118,101,110,116,58,111,111,125,41,44,81,119,61,74,119,46,109,105,120,105,110,44,116,95,61,74,119,46,112,114,111,112,115,44,101,95,61,74,119,46,112,114,111,112,44,110,95,61,74,119,46,101,118,101,110,116,44,114,95,61,100,99,40,75,116,40,88,119,40,88,119,40,123,125,44,116,95,41,44,123,125,44,123,97,114,105,97,73,110,118,97,108,105,100,58,117,99,40,106,111,44,33,49,41,44,97,117,116,111,99,111,109,112,108,101,116,101,58,117,99,40,120,111,41,44,100,101,98,111,117,110,99,101,58,117,99,40,65,111,44,48,41,44,102,111,114,109,97,116,116,101,114,58,117,99,40,98,111,41,44,108,97,122,121,58,117,99,40,103,111,44,33,49,41,44,108,97,122,121,70,111,114,109,97,116,116,101,114,58,117,99,40,103,111,44,33,49,41,44,110,117,109,98,101,114,58,117,99,40,103,111,44,33,49,41,44,112,108,97,99,101,104,111,108,100,101,114,58,117,99,40,120,111,41,44,112,108,97,105,110,116,101,120,116,58,117,99,40,103,111,44,33,49,41,44,114,101,97,100,111,110,108,121,58,117,99,40,103,111,44,33,49,41,44,116,114,105,109,58,117,99,40,103,111,44,33,49,41,125,41,41,44,34,102,111,114,109,84,101,120,116,67,111,110,116,114,111,108,115,34,41,44,105,95,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,105,120,105,110,115,58,91,81,119,93,44,112,114,111,112,115,58,114,95,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,91,101,95,93,59,114,101,116,117,114,110,123,108,111,99,97,108,86,97,108,117,101,58,115,115,40,116,41,44,118,77,111,100,101,108,86,97,108,117,101,58,116,104,105,115,46,109,111,100,105,102,121,86,97,108,117,101,40,116,41,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,112,108,97,105,110,116,101,120,116,44,101,61,116,104,105,115,46,116,121,112,101,44,110,61,34,114,97,110,103,101,34,61,61,61,101,44,114,61,34,99,111,108,111,114,34,61,61,61,101,59,114,101,116,117,114,110,91,123,34,99,117,115,116,111,109,45,114,97,110,103,101,34,58,110,44,34,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,34,58,116,38,38,33,110,38,38,33,114,44,34,102,111,114,109,45,99,111,110,116,114,111,108,34,58,114,124,124,33,116,38,38,33,110,125,44,116,104,105,115,46,115,105,122,101,70,111,114,109,67,108,97,115,115,44,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,93,125,44,99,111,109,112,117,116,101,100,68,101,98,111,117,110,99,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,117,40,74,97,40,116,104,105,115,46,100,101,98,111,117,110,99,101,44,48,41,44,48,41,125,44,104,97,115,70,111,114,109,97,116,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,118,99,40,116,104,105,115,46,102,111,114,109,97,116,116,101,114,41,125,125,44,119,97,116,99,104,58,90,119,40,123,125,44,101,95,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,115,115,40,116,41,44,110,61,116,104,105,115,46,109,111,100,105,102,121,86,97,108,117,101,40,116,41,59,101,61,61,61,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,38,38,110,61,61,61,116,104,105,115,46,118,77,111,100,101,108,86,97,108,117,101,124,124,40,116,104,105,115,46,99,108,101,97,114,68,101,98,111,117,110,99,101,40,41,44,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,101,44,116,104,105,115,46,118,77,111,100,101,108,86,97,108,117,101,61,110,41,125,41,41,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,105,110,112,117,116,68,101,98,111,117,110,99,101,84,105,109,101,114,61,110,117,108,108,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,111,110,40,97,111,44,116,104,105,115,46,99,108,101,97,114,68,101,98,111,117,110,99,101,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,101,97,114,68,101,98,111,117,110,99,101,40,41,125,44,109,101,116,104,111,100,115,58,123,99,108,101,97,114,68,101,98,111,117,110,99,101,58,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,36,95,105,110,112,117,116,68,101,98,111,117,110,99,101,84,105,109,101,114,41,44,116,104,105,115,46,36,95,105,110,112,117,116,68,101,98,111,117,110,99,101,84,105,109,101,114,61,110,117,108,108,125,44,102,111,114,109,97,116,86,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,44,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,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,38,38,97,114,103,117,109,101,110,116,115,91,50,93,59,114,101,116,117,114,110,32,116,61,115,115,40,116,41,44,33,116,104,105,115,46,104,97,115,70,111,114,109,97,116,116,101,114,124,124,116,104,105,115,46,108,97,122,121,70,111,114,109,97,116,116,101,114,38,38,33,110,124,124,40,116,61,116,104,105,115,46,102,111,114,109,97,116,116,101,114,40,116,44,101,41,41,44,116,125,44,109,111,100,105,102,121,86,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,115,115,40,116,41,44,116,104,105,115,46,116,114,105,109,38,38,40,116,61,116,46,116,114,105,109,40,41,41,44,116,104,105,115,46,110,117,109,98,101,114,38,38,40,116,61,81,97,40,116,44,116,41,41,44,116,125,44,117,112,100,97,116,101,86,97,108,117,101,58,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,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,116,104,105,115,46,108,97,122,121,59,105,102,40,33,114,124,124,110,41,123,116,104,105,115,46,99,108,101,97,114,68,101,98,111,117,110,99,101,40,41,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,61,101,46,109,111,100,105,102,121,86,97,108,117,101,40,116,41,44,116,33,61,61,101,46,118,77,111,100,101,108,86,97,108,117,101,41,101,46,118,77,111,100,101,108,86,97,108,117,101,61,116,44,101,46,36,101,109,105,116,40,110,95,44,116,41,59,101,108,115,101,32,105,102,40,101,46,104,97,115,70,111,114,109,97,116,116,101,114,41,123,118,97,114,32,110,61,101,46,36,114,101,102,115,46,105,110,112,117,116,59,110,38,38,116,33,61,61,110,46,118,97,108,117,101,38,38,40,110,46,118,97,108,117,101,61,116,41,125,125,44,111,61,116,104,105,115,46,99,111,109,112,117,116,101,100,68,101,98,111,117,110,99,101,59,111,62,48,38,38,33,114,38,38,33,110,63,116,104,105,115,46,36,95,105,110,112,117,116,68,101,98,111,117,110,99,101,84,105,109,101,114,61,115,101,116,84,105,109,101,111,117,116,40,105,44,111,41,58,105,40,41,125,125,44,111,110,73,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,46,116,97,114,103,101,116,46,99,111,109,112,111,115,105,110,103,41,123,118,97,114,32,101,61,116,46,116,97,114,103,101,116,46,118,97,108,117,101,44,110,61,116,104,105,115,46,102,111,114,109,97,116,86,97,108,117,101,40,101,44,116,41,59,33,49,61,61,61,110,124,124,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,63,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,58,40,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,110,44,116,104,105,115,46,117,112,100,97,116,101,86,97,108,117,101,40,110,41,44,116,104,105,115,46,36,101,109,105,116,40,69,105,44,110,41,41,125,125,44,111,110,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,116,97,114,103,101,116,46,118,97,108,117,101,44,110,61,116,104,105,115,46,102,111,114,109,97,116,86,97,108,117,101,40,101,44,116,41,59,33,49,61,61,61,110,124,124,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,63,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,58,40,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,110,44,116,104,105,115,46,117,112,100,97,116,101,86,97,108,117,101,40,110,44,33,48,41,44,116,104,105,115,46,36,101,109,105,116,40,117,105,44,110,41,41,125,44,111,110,66,108,117,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,116,97,114,103,101,116,46,118,97,108,117,101,44,110,61,116,104,105,115,46,102,111,114,109,97,116,86,97,108,117,101,40,101,44,116,44,33,48,41,59,33,49,33,61,61,110,38,38,40,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,115,115,40,116,104,105,115,46,109,111,100,105,102,121,86,97,108,117,101,40,110,41,41,44,116,104,105,115,46,117,112,100,97,116,101,86,97,108,117,101,40,110,44,33,48,41,41,44,116,104,105,115,46,36,101,109,105,116,40,115,105,44,116,41,125,44,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,113,115,40,116,104,105,115,46,36,101,108,41,125,44,98,108,117,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,89,115,40,116,104,105,115,46,36,101,108,41,125,125,125,41,44,111,95,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,99,111,109,112,117,116,101,100,58,123,118,97,108,105,100,105,116,121,58,123,99,97,99,104,101,58,33,49,44,103,101,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,36,114,101,102,115,46,105,110,112,117,116,46,118,97,108,105,100,105,116,121,125,125,44,118,97,108,105,100,97,116,105,111,110,77,101,115,115,97,103,101,58,123,99,97,99,104,101,58,33,49,44,103,101,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,36,114,101,102,115,46,105,110,112,117,116,46,118,97,108,105,100,97,116,105,111,110,77,101,115,115,97,103,101,125,125,44,119,105,108,108,86,97,108,105,100,97,116,101,58,123,99,97,99,104,101,58,33,49,44,103,101,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,36,114,101,102,115,46,105,110,112,117,116,46,119,105,108,108,86,97,108,105,100,97,116,101,125,125,125,44,109,101,116,104,111,100,115,58,123,115,101,116,67,117,115,116,111,109,86,97,108,105,100,105,116,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,59,114,101,116,117,114,110,40,116,61,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,46,115,101,116,67,117,115,116,111,109,86,97,108,105,100,105,116,121,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,125,44,99,104,101,99,107,86,97,108,105,100,105,116,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,59,114,101,116,117,114,110,40,116,61,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,46,99,104,101,99,107,86,97,108,105,100,105,116,121,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,125,44,114,101,112,111,114,116,86,97,108,105,100,105,116,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,59,114,101,116,117,114,110,40,116,61,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,46,114,101,112,111,114,116,86,97,108,105,100,105,116,121,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,125,125,125,41,59,102,117,110,99,116,105,111,110,32,97,95,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,115,95,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,97,95,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,99,95,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,97,95,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,99,95,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,118,97,114,32,117,95,44,108,95,61,91,34,116,101,120,116,34,44,34,112,97,115,115,119,111,114,100,34,44,34,101,109,97,105,108,34,44,34,110,117,109,98,101,114,34,44,34,117,114,108,34,44,34,116,101,108,34,44,34,115,101,97,114,99,104,34,44,34,114,97,110,103,101,34,44,34,99,111,108,111,114,34,44,34,100,97,116,101,34,44,34,116,105,109,101,34,44,34,100,97,116,101,116,105,109,101,34,44,34,100,97,116,101,116,105,109,101,45,108,111,99,97,108,34,44,34,109,111,110,116,104,34,44,34,119,101,101,107,34,93,44,102,95,61,100,99,40,75,116,40,115,95,40,115,95,40,115,95,40,115,95,40,115,95,40,115,95,40,123,125,44,68,104,41,44,72,98,41,44,113,98,41,44,75,98,41,44,114,95,41,44,123,125,44,123,108,105,115,116,58,117,99,40,120,111,41,44,109,97,120,58,117,99,40,65,111,41,44,109,105,110,58,117,99,40,65,111,41,44,110,111,87,104,101,101,108,58,117,99,40,103,111,44,33,49,41,44,115,116,101,112,58,117,99,40,65,111,41,44,116,121,112,101,58,117,99,40,120,111,44,34,116,101,120,116,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,113,97,40,108,95,44,116,41,125,41,41,125,41,41,44,106,110,41,44,104,95,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,106,110,44,109,105,120,105,110,115,58,91,84,108,44,65,104,44,85,98,44,89,98,44,88,98,44,105,95,44,89,119,44,111,95,93,44,112,114,111,112,115,58,102,95,44,99,111,109,112,117,116,101,100,58,123,108,111,99,97,108,84,121,112,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,116,121,112,101,59,114,101,116,117,114,110,32,113,97,40,108,95,44,116,41,63,116,58,34,116,101,120,116,34,125,44,99,111,109,112,117,116,101,100,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,108,111,99,97,108,84,121,112,101,44,101,61,116,104,105,115,46,110,97,109,101,44,110,61,116,104,105,115,46,102,111,114,109,44,114,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,105,61,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,44,111,61,116,104,105,115,46,114,101,113,117,105,114,101,100,44,97,61,116,104,105,115,46,109,105,110,44,115,61,116,104,105,115,46,109,97,120,44,99,61,116,104,105,115,46,115,116,101,112,59,114,101,116,117,114,110,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,110,97,109,101,58,101,44,102,111,114,109,58,110,44,116,121,112,101,58,116,44,100,105,115,97,98,108,101,100,58,114,44,112,108,97,99,101,104,111,108,100,101,114,58,105,44,114,101,113,117,105,114,101,100,58,111,44,97,117,116,111,99,111,109,112,108,101,116,101,58,116,104,105,115,46,97,117,116,111,99,111,109,112,108,101,116,101,124,124,110,117,108,108,44,114,101,97,100,111,110,108,121,58,116,104,105,115,46,114,101,97,100,111,110,108,121,124,124,116,104,105,115,46,112,108,97,105,110,116,101,120,116,44,109,105,110,58,97,44,109,97,120,58,115,44,115,116,101,112,58,99,44,108,105,115,116,58,34,112,97,115,115,119,111,114,100,34,33,61,61,116,63,116,104,105,115,46,108,105,115,116,58,110,117,108,108,44,34,97,114,105,97,45,114,101,113,117,105,114,101,100,34,58,111,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,105,110,118,97,108,105,100,34,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,114,105,97,73,110,118,97,108,105,100,125,125,44,99,111,109,112,117,116,101,100,76,105,115,116,101,110,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,95,40,115,95,40,123,125,44,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,41,44,123,125,44,123,105,110,112,117,116,58,116,104,105,115,46,111,110,73,110,112,117,116,44,99,104,97,110,103,101,58,116,104,105,115,46,111,110,67,104,97,110,103,101,44,98,108,117,114,58,116,104,105,115,46,111,110,66,108,117,114,125,41,125,125,44,119,97,116,99,104,58,123,110,111,87,104,101,101,108,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,115,101,116,87,104,101,101,108,83,116,111,112,112,101,114,40,116,41,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,87,104,101,101,108,83,116,111,112,112,101,114,40,116,104,105,115,46,110,111,87,104,101,101,108,41,125,44,100,101,97,99,116,105,118,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,87,104,101,101,108,83,116,111,112,112,101,114,40,33,49,41,125,44,97,99,116,105,118,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,87,104,101,101,108,83,116,111,112,112,101,114,40,116,104,105,115,46,110,111,87,104,101,101,108,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,87,104,101,101,108,83,116,111,112,112,101,114,40,33,49,41,125,44,109,101,116,104,111,100,115,58,123,115,101,116,87,104,101,101,108,83,116,111,112,112,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,36,101,108,59,83,99,40,116,44,101,44,34,102,111,99,117,115,34,44,116,104,105,115,46,111,110,87,104,101,101,108,70,111,99,117,115,41,44,83,99,40,116,44,101,44,34,98,108,117,114,34,44,116,104,105,115,46,111,110,87,104,101,101,108,66,108,117,114,41,44,116,124,124,79,99,40,100,111,99,117,109,101,110,116,44,34,119,104,101,101,108,34,44,116,104,105,115,46,115,116,111,112,87,104,101,101,108,41,125,44,111,110,87,104,101,101,108,70,111,99,117,115,58,102,117,110,99,116,105,111,110,40,41,123,120,99,40,100,111,99,117,109,101,110,116,44,34,119,104,101,101,108,34,44,116,104,105,115,46,115,116,111,112,87,104,101,101,108,41,125,44,111,110,87,104,101,101,108,66,108,117,114,58,102,117,110,99,116,105,111,110,40,41,123,79,99,40,100,111,99,117,109,101,110,116,44,34,119,104,101,101,108,34,44,116,104,105,115,46,115,116,111,112,87,104,101,101,108,41,125,44,115,116,111,112,87,104,101,101,108,58,102,117,110,99,116,105,111,110,40,116,41,123,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,44,89,115,40,116,104,105,115,46,36,101,108,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,34,105,110,112,117,116,34,44,123,99,108,97,115,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,67,108,97,115,115,44,97,116,116,114,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,100,111,109,80,114,111,112,115,58,123,118,97,108,117,101,58,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,125,44,111,110,58,116,104,105,115,46,99,111,109,112,117,116,101,100,76,105,115,116,101,110,101,114,115,44,114,101,102,58,34,105,110,112,117,116,34,125,41,125,125,41,44,100,95,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,70,111,114,109,73,110,112,117,116,58,104,95,44,66,73,110,112,117,116,58,104,95,125,125,41,44,112,95,61,100,99,40,68,121,44,65,110,41,44,118,95,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,65,110,44,109,105,120,105,110,115,58,91,65,121,93,44,112,114,111,118,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,98,118,82,97,100,105,111,71,114,111,117,112,58,116,104,105,115,125,125,44,112,114,111,112,115,58,112,95,44,99,111,109,112,117,116,101,100,58,123,105,115,82,97,100,105,111,71,114,111,117,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,125,125,41,44,103,95,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,70,111,114,109,82,97,100,105,111,58,119,121,44,66,82,97,100,105,111,58,119,121,44,66,70,111,114,109,82,97,100,105,111,71,114,111,117,112,58,118,95,44,66,82,97,100,105,111,71,114,111,117,112,58,118,95,125,125,41,59,102,117,110,99,116,105,111,110,32,109,95,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,98,95,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,109,95,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,121,95,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,109,95,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,121,95,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,118,97,114,32,119,95,61,109,99,40,34,118,97,108,117,101,34,44,123,116,121,112,101,58,65,111,44,101,118,101,110,116,58,117,105,125,41,44,95,95,61,119,95,46,109,105,120,105,110,44,120,95,61,119,95,46,112,114,111,112,115,44,79,95,61,119,95,46,112,114,111,112,44,83,95,61,119,95,46,101,118,101,110,116,44,107,95,61,51,44,67,95,61,53,44,80,95,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,117,40,107,95,44,74,97,40,116,44,67,95,41,41,125,44,84,95,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,117,40,81,99,40,116,44,110,41,44,101,41,125,44,106,95,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,75,114,44,109,105,120,105,110,115,58,91,119,99,93,44,112,114,111,112,115,58,123,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,102,111,99,117,115,101,100,58,117,99,40,103,111,44,33,49,41,44,104,97,115,67,108,101,97,114,58,117,99,40,103,111,44,33,49,41,44,114,97,116,105,110,103,58,117,99,40,121,111,44,48,41,44,114,101,97,100,111,110,108,121,58,117,99,40,103,111,44,33,49,41,44,115,116,97,114,58,117,99,40,121,111,44,48,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,109,101,116,104,111,100,115,58,123,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,104,105,115,46,114,101,97,100,111,110,108,121,124,124,40,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,44,116,104,105,115,46,36,101,109,105,116,40,88,105,44,116,104,105,115,46,115,116,97,114,41,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,114,97,116,105,110,103,44,110,61,116,104,105,115,46,115,116,97,114,44,114,61,116,104,105,115,46,102,111,99,117,115,101,100,44,105,61,116,104,105,115,46,104,97,115,67,108,101,97,114,44,111,61,116,104,105,115,46,118,97,114,105,97,110,116,44,97,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,115,61,116,104,105,115,46,114,101,97,100,111,110,108,121,44,99,61,105,63,48,58,49,44,117,61,101,62,61,110,63,34,102,117,108,108,34,58,101,62,61,110,45,46,53,63,34,104,97,108,102,34,58,34,101,109,112,116,121,34,44,108,61,123,118,97,114,105,97,110,116,58,111,44,100,105,115,97,98,108,101,100,58,97,44,114,101,97,100,111,110,108,121,58,115,125,59,114,101,116,117,114,110,32,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,114,97,116,105,110,103,45,115,116,97,114,34,44,99,108,97,115,115,58,123,102,111,99,117,115,101,100,58,114,38,38,101,61,61,61,110,124,124,33,74,97,40,101,41,38,38,110,61,61,61,99,44,34,98,45,114,97,116,105,110,103,45,115,116,97,114,45,101,109,112,116,121,34,58,34,101,109,112,116,121,34,61,61,61,117,44,34,98,45,114,97,116,105,110,103,45,115,116,97,114,45,104,97,108,102,34,58,34,104,97,108,102,34,61,61,61,117,44,34,98,45,114,97,116,105,110,103,45,115,116,97,114,45,102,117,108,108,34,58,34,102,117,108,108,34,61,61,61,117,125,44,97,116,116,114,115,58,123,116,97,98,105,110,100,101,120,58,97,124,124,115,63,110,117,108,108,58,34,45,49,34,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,67,108,105,99,107,125,125,44,91,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,114,97,116,105,110,103,45,105,99,111,110,34,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,117,44,108,41,93,41,93,41,125,125,41,44,69,95,61,100,99,40,75,116,40,98,95,40,98,95,40,98,95,40,98,95,40,98,95,40,123,125,44,68,104,41,44,120,95,41,44,113,116,40,72,98,44,91,34,114,101,113,117,105,114,101,100,34,44,34,97,117,116,111,102,111,99,117,115,34,93,41,41,44,113,98,41,44,123,125,44,123,99,111,108,111,114,58,117,99,40,120,111,41,44,105,99,111,110,67,108,101,97,114,58,117,99,40,120,111,44,34,120,34,41,44,105,99,111,110,69,109,112,116,121,58,117,99,40,120,111,44,34,115,116,97,114,34,41,44,105,99,111,110,70,117,108,108,58,117,99,40,120,111,44,34,115,116,97,114,45,102,105,108,108,34,41,44,105,99,111,110,72,97,108,102,58,117,99,40,120,111,44,34,115,116,97,114,45,104,97,108,102,34,41,44,105,110,108,105,110,101,58,117,99,40,103,111,44,33,49,41,44,108,111,99,97,108,101,58,117,99,40,67,111,41,44,110,111,66,111,114,100,101,114,58,117,99,40,103,111,44,33,49,41,44,112,114,101,99,105,115,105,111,110,58,117,99,40,65,111,41,44,114,101,97,100,111,110,108,121,58,117,99,40,103,111,44,33,49,41,44,115,104,111,119,67,108,101,97,114,58,117,99,40,103,111,44,33,49,41,44,115,104,111,119,86,97,108,117,101,58,117,99,40,103,111,44,33,49,41,44,115,104,111,119,86,97,108,117,101,77,97,120,58,117,99,40,103,111,44,33,49,41,44,115,116,97,114,115,58,117,99,40,65,111,44,67,95,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,74,97,40,116,41,62,61,107,95,125,41,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,125,41,41,44,76,110,41,44,68,95,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,76,110,44,99,111,109,112,111,110,101,110,116,115,58,123,66,73,99,111,110,83,116,97,114,58,88,117,44,66,73,99,111,110,83,116,97,114,72,97,108,102,58,74,117,44,66,73,99,111,110,83,116,97,114,70,105,108,108,58,90,117,44,66,73,99,111,110,88,58,81,117,125,44,109,105,120,105,110,115,58,91,65,104,44,95,95,44,89,98,93,44,112,114,111,112,115,58,69,95,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,81,97,40,116,104,105,115,91,79,95,93,44,110,117,108,108,41,44,101,61,80,95,40,116,104,105,115,46,115,116,97,114,115,41,59,114,101,116,117,114,110,123,108,111,99,97,108,86,97,108,117,101,58,121,116,40,116,41,63,110,117,108,108,58,84,95,40,116,44,48,44,101,41,44,104,97,115,70,111,99,117,115,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,83,116,97,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,80,95,40,116,104,105,115,46,115,116,97,114,115,41,125,44,99,111,109,112,117,116,101,100,82,97,116,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,81,97,40,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,44,48,41,44,101,61,74,97,40,116,104,105,115,46,112,114,101,99,105,115,105,111,110,44,51,41,59,114,101,116,117,114,110,32,84,95,40,81,97,40,116,46,116,111,70,105,120,101,100,40,101,41,41,44,48,44,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,114,115,41,125,44,99,111,109,112,117,116,101,100,76,111,99,97,108,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,89,97,40,116,104,105,115,46,108,111,99,97,108,101,41,46,102,105,108,116,101,114,40,115,101,41,44,101,61,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,116,41,59,114,101,116,117,114,110,32,101,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,40,41,46,108,111,99,97,108,101,125,44,105,115,73,110,116,101,114,97,99,116,105,118,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,100,105,115,97,98,108,101,100,38,38,33,116,104,105,115,46,114,101,97,100,111,110,108,121,125,44,105,115,82,84,76,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,104,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,41,125,44,102,111,114,109,97,116,116,101,100,82,97,116,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,74,97,40,116,104,105,115,46,112,114,101,99,105,115,105,111,110,41,44,101,61,116,104,105,115,46,115,104,111,119,86,97,108,117,101,77,97,120,44,110,61,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,114,61,123,110,111,116,97,116,105,111,110,58,34,115,116,97,110,100,97,114,100,34,44,109,105,110,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,105,115,78,97,78,40,116,41,63,48,58,116,44,109,97,120,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,105,115,78,97,78,40,116,41,63,51,58,116,125,44,105,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,114,115,46,116,111,76,111,99,97,108,101,83,116,114,105,110,103,40,110,41,44,111,61,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,59,114,101,116,117,114,110,32,111,61,121,116,40,111,41,63,101,63,34,45,34,58,34,34,58,111,46,116,111,76,111,99,97,108,101,83,116,114,105,110,103,40,110,44,114,41,44,101,63,34,34,46,99,111,110,99,97,116,40,111,44,34,47,34,41,46,99,111,110,99,97,116,40,105,41,58,111,125,125,44,119,97,116,99,104,58,40,117,95,61,123,125,44,121,95,40,117,95,44,79,95,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,33,61,61,101,41,123,118,97,114,32,110,61,81,97,40,116,44,110,117,108,108,41,59,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,121,116,40,110,41,63,110,117,108,108,58,84,95,40,110,44,48,44,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,114,115,41,125,125,41,41,44,121,95,40,117,95,44,34,108,111,99,97,108,86,97,108,117,101,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,116,33,61,61,40,116,104,105,115,46,118,97,108,117,101,124,124,48,41,38,38,116,104,105,115,46,36,101,109,105,116,40,83,95,44,116,124,124,110,117,108,108,41,125,41,41,44,121,95,40,117,95,44,34,100,105,115,97,98,108,101,100,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,40,116,104,105,115,46,104,97,115,70,111,99,117,115,61,33,49,44,116,104,105,115,46,98,108,117,114,40,41,41,125,41,41,44,117,95,41,44,109,101,116,104,111,100,115,58,123,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,113,115,40,116,104,105,115,46,36,101,108,41,125,44,98,108,117,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,89,115,40,116,104,105,115,46,36,101,108,41,125,44,111,110,75,101,121,100,111,119,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,107,101,121,67,111,100,101,59,105,102,40,116,104,105,115,46,105,115,73,110,116,101,114,97,99,116,105,118,101,38,38,113,97,40,91,112,108,44,117,108,44,109,108,44,121,108,93,44,101,41,41,123,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,59,118,97,114,32,110,61,74,97,40,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,44,48,41,44,114,61,116,104,105,115,46,115,104,111,119,67,108,101,97,114,63,48,58,49,44,105,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,114,115,44,111,61,116,104,105,115,46,105,115,82,84,76,63,45,49,58,49,59,101,61,61,61,112,108,63,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,84,95,40,110,45,111,44,114,44,105,41,124,124,110,117,108,108,58,101,61,61,61,109,108,63,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,84,95,40,110,43,111,44,114,44,105,41,58,101,61,61,61,117,108,63,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,84,95,40,110,45,49,44,114,44,105,41,124,124,110,117,108,108,58,101,61,61,61,121,108,38,38,40,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,84,95,40,110,43,49,44,114,44,105,41,41,125,125,44,111,110,83,101,108,101,99,116,101,100,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,105,115,73,110,116,101,114,97,99,116,105,118,101,38,38,40,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,116,41,125,44,111,110,70,111,99,117,115,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,104,97,115,70,111,99,117,115,61,33,33,116,104,105,115,46,105,115,73,110,116,101,114,97,99,116,105,118,101,38,38,34,102,111,99,117,115,34,61,61,61,116,46,116,121,112,101,125,44,114,101,110,100,101,114,73,99,111,110,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,97,108,44,123,112,114,111,112,115,58,123,105,99,111,110,58,116,44,118,97,114,105,97,110,116,58,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,104,105,115,46,99,111,108,111,114,63,110,117,108,108,58,116,104,105,115,46,118,97,114,105,97,110,116,124,124,110,117,108,108,125,125,41,125,44,105,99,111,110,69,109,112,116,121,70,110,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,110,100,101,114,73,99,111,110,40,116,104,105,115,46,105,99,111,110,69,109,112,116,121,41,125,44,105,99,111,110,72,97,108,102,70,110,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,110,100,101,114,73,99,111,110,40,116,104,105,115,46,105,99,111,110,72,97,108,102,41,125,44,105,99,111,110,70,117,108,108,70,110,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,110,100,101,114,73,99,111,110,40,116,104,105,115,46,105,99,111,110,70,117,108,108,41,125,44,105,99,111,110,67,108,101,97,114,70,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,97,108,44,123,112,114,111,112,115,58,123,105,99,111,110,58,116,104,105,115,46,105,99,111,110,67,108,101,97,114,125,125,41,125,125,44,114,101,110,100,101,114,58,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,100,105,115,97,98,108,101,100,44,114,61,116,104,105,115,46,114,101,97,100,111,110,108,121,44,105,61,116,104,105,115,46,110,97,109,101,44,111,61,116,104,105,115,46,102,111,114,109,44,97,61,116,104,105,115,46,105,110,108,105,110,101,44,115,61,116,104,105,115,46,118,97,114,105,97,110,116,44,99,61,116,104,105,115,46,99,111,108,111,114,44,117,61,116,104,105,115,46,110,111,66,111,114,100,101,114,44,108,61,116,104,105,115,46,104,97,115,70,111,99,117,115,44,102,61,116,104,105,115,46,99,111,109,112,117,116,101,100,82,97,116,105,110,103,44,104,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,97,114,115,44,100,61,116,104,105,115,46,102,111,114,109,97,116,116,101,100,82,97,116,105,110,103,44,112,61,116,104,105,115,46,115,104,111,119,67,108,101,97,114,44,118,61,116,104,105,115,46,105,115,82,84,76,44,103,61,116,104,105,115,46,105,115,73,110,116,101,114,97,99,116,105,118,101,44,109,61,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,44,98,61,91,93,59,105,102,40,112,38,38,33,110,38,38,33,114,41,123,118,97,114,32,121,61,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,114,97,116,105,110,103,45,105,99,111,110,34,125,44,91,40,109,91,114,97,93,124,124,116,104,105,115,46,105,99,111,110,67,108,101,97,114,70,110,41,40,41,93,41,59,98,46,112,117,115,104,40,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,114,97,116,105,110,103,45,115,116,97,114,32,98,45,114,97,116,105,110,103,45,115,116,97,114,45,99,108,101,97,114,32,102,108,101,120,45,103,114,111,119,45,49,34,44,99,108,97,115,115,58,123,102,111,99,117,115,101,100,58,108,38,38,48,61,61,61,102,125,44,97,116,116,114,115,58,123,116,97,98,105,110,100,101,120,58,103,63,34,45,49,34,58,110,117,108,108,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,111,110,83,101,108,101,99,116,101,100,40,110,117,108,108,41,125,125,44,107,101,121,58,34,99,108,101,97,114,34,125,44,91,121,93,41,41,125,102,111,114,40,118,97,114,32,119,61,48,59,119,60,104,59,119,43,43,41,123,118,97,114,32,95,61,119,43,49,59,98,46,112,117,115,104,40,116,40,106,95,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,108,101,120,45,103,114,111,119,45,49,34,44,115,116,121,108,101,58,99,38,38,33,110,63,123,99,111,108,111,114,58,99,125,58,123,125,44,112,114,111,112,115,58,123,114,97,116,105,110,103,58,102,44,115,116,97,114,58,95,44,118,97,114,105,97,110,116,58,110,63,110,117,108,108,58,115,124,124,110,117,108,108,44,100,105,115,97,98,108,101,100,58,110,44,114,101,97,100,111,110,108,121,58,114,44,102,111,99,117,115,101,100,58,108,44,104,97,115,67,108,101,97,114,58,112,125,44,111,110,58,123,115,101,108,101,99,116,101,100,58,116,104,105,115,46,111,110,83,101,108,101,99,116,101,100,125,44,115,99,111,112,101,100,83,108,111,116,115,58,123,101,109,112,116,121,58,109,91,105,97,93,124,124,116,104,105,115,46,105,99,111,110,69,109,112,116,121,70,110,44,104,97,108,102,58,109,91,97,97,93,124,124,116,104,105,115,46,105,99,111,110,72,97,108,102,70,110,44,102,117,108,108,58,109,91,111,97,93,124,124,116,104,105,115,46,105,99,111,110,70,117,108,108,70,110,125,44,107,101,121,58,119,125,41,41,125,114,101,116,117,114,110,32,105,38,38,98,46,112,117,115,104,40,116,40,34,105,110,112,117,116,34,44,123,97,116,116,114,115,58,123,116,121,112,101,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,121,116,40,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,41,63,34,34,58,102,44,110,97,109,101,58,105,44,102,111,114,109,58,111,124,124,110,117,108,108,125,44,107,101,121,58,34,104,105,100,100,101,110,34,125,41,41,44,116,104,105,115,46,115,104,111,119,86,97,108,117,101,38,38,98,46,112,117,115,104,40,116,40,34,98,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,114,97,116,105,110,103,45,118,97,108,117,101,32,102,108,101,120,45,103,114,111,119,45,49,34,44,97,116,116,114,115,58,123,34,97,114,105,97,45,104,105,100,100,101,110,34,58,34,116,114,117,101,34,125,44,107,101,121,58,34,118,97,108,117,101,34,125,44,115,115,40,100,41,41,41,44,116,40,34,111,117,116,112,117,116,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,114,97,116,105,110,103,32,102,111,114,109,45,99,111,110,116,114,111,108,32,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,34,44,99,108,97,115,115,58,91,123,34,100,45,105,110,108,105,110,101,45,102,108,101,120,34,58,97,44,34,100,45,102,108,101,120,34,58,33,97,44,34,98,111,114,100,101,114,45,48,34,58,117,44,100,105,115,97,98,108,101,100,58,110,44,114,101,97,100,111,110,108,121,58,33,110,38,38,114,125,44,116,104,105,115,46,115,105,122,101,70,111,114,109,67,108,97,115,115,93,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,100,105,114,58,118,63,34,114,116,108,34,58,34,108,116,114,34,44,116,97,98,105,110,100,101,120,58,110,63,110,117,108,108,58,34,48,34,44,100,105,115,97,98,108,101,100,58,110,44,114,111,108,101,58,34,115,108,105,100,101,114,34,44,34,97,114,105,97,45,100,105,115,97,98,108,101,100,34,58,110,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,114,101,97,100,111,110,108,121,34,58,33,110,38,38,114,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,108,105,118,101,34,58,34,111,102,102,34,44,34,97,114,105,97,45,118,97,108,117,101,109,105,110,34,58,112,63,34,48,34,58,34,49,34,44,34,97,114,105,97,45,118,97,108,117,101,109,97,120,34,58,115,115,40,104,41,44,34,97,114,105,97,45,118,97,108,117,101,110,111,119,34,58,102,63,115,115,40,102,41,58,110,117,108,108,125,44,111,110,58,123,107,101,121,100,111,119,110,58,116,104,105,115,46,111,110,75,101,121,100,111,119,110,44,102,111,99,117,115,58,116,104,105,115,46,111,110,70,111,99,117,115,44,98,108,117,114,58,116,104,105,115,46,111,110,70,111,99,117,115,125,125,44,98,41,125,125,41,44,65,95,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,70,111,114,109,82,97,116,105,110,103,58,68,95,44,66,82,97,116,105,110,103,58,68,95,125,125,41,44,76,95,61,109,99,40,34,118,97,108,117,101,34,41,44,73,95,61,76,95,46,109,105,120,105,110,44,77,95,61,76,95,46,112,114,111,112,115,44,36,95,61,76,95,46,112,114,111,112,44,70,95,61,76,95,46,101,118,101,110,116,59,102,117,110,99,116,105,111,110,32,82,95,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,78,95,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,82,95,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,66,95,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,82,95,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,66,95,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,118,97,114,32,122,95,61,100,99,40,75,116,40,78,95,40,78,95,40,123,125,44,120,98,41,44,123,125,44,123,108,97,98,101,108,70,105,101,108,100,58,117,99,40,120,111,44,34,108,97,98,101,108,34,41,44,111,112,116,105,111,110,115,70,105,101,108,100,58,117,99,40,120,111,44,34,111,112,116,105,111,110,115,34,41,125,41,41,44,34,102,111,114,109,79,112,116,105,111,110,115,34,41,44,86,95,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,105,120,105,110,115,58,91,79,98,93,44,112,114,111,112,115,58,122,95,44,109,101,116,104,111,100,115,58,123,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,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,49,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,110,117,108,108,59,105,102,40,84,116,40,116,41,41,123,118,97,114,32,110,61,117,101,40,116,44,116,104,105,115,46,118,97,108,117,101,70,105,101,108,100,41,44,114,61,117,101,40,116,44,116,104,105,115,46,116,101,120,116,70,105,101,108,100,41,44,105,61,117,101,40,116,44,116,104,105,115,46,111,112,116,105,111,110,115,70,105,101,108,100,44,110,117,108,108,41,59,114,101,116,117,114,110,32,121,116,40,105,41,63,123,118,97,108,117,101,58,98,116,40,110,41,63,101,124,124,114,58,110,44,116,101,120,116,58,83,116,114,105,110,103,40,98,116,40,114,41,63,101,58,114,41,44,104,116,109,108,58,117,101,40,116,44,116,104,105,115,46,104,116,109,108,70,105,101,108,100,41,44,100,105,115,97,98,108,101,100,58,66,111,111,108,101,97,110,40,117,101,40,116,44,116,104,105,115,46,100,105,115,97,98,108,101,100,70,105,101,108,100,41,41,125,58,123,108,97,98,101,108,58,83,116,114,105,110,103,40,117,101,40,116,44,116,104,105,115,46,108,97,98,101,108,70,105,101,108,100,41,124,124,114,41,44,111,112,116,105,111,110,115,58,116,104,105,115,46,110,111,114,109,97,108,105,122,101,79,112,116,105,111,110,115,40,105,41,125,125,114,101,116,117,114,110,123,118,97,108,117,101,58,101,124,124,116,44,116,101,120,116,58,83,116,114,105,110,103,40,116,41,44,100,105,115,97,98,108,101,100,58,33,49,125,125,125,125,41,44,72,95,61,100,99,40,123,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,118,97,108,117,101,58,117,99,40,112,111,44,118,111,105,100,32,48,44,33,48,41,125,44,36,110,41,44,85,95,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,36,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,72,95,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,110,46,118,97,108,117,101,44,97,61,110,46,100,105,115,97,98,108,101,100,59,114,101,116,117,114,110,32,116,40,34,111,112,116,105,111,110,34,44,36,101,40,114,44,123,97,116,116,114,115,58,123,100,105,115,97,98,108,101,100,58,97,125,44,100,111,109,80,114,111,112,115,58,123,118,97,108,117,101,58,111,125,125,41,44,105,41,125,125,41,59,102,117,110,99,116,105,111,110,32,87,95,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,71,95,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,87,95,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,113,95,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,87,95,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,113,95,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,118,97,114,32,89,95,61,100,99,40,75,116,40,71,95,40,71,95,40,123,125,44,120,98,41,44,123,125,44,123,108,97,98,101,108,58,117,99,40,120,111,44,118,111,105,100,32,48,44,33,48,41,125,41,41,44,70,110,41,44,75,95,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,70,110,44,109,105,120,105,110,115,58,91,119,99,44,79,98,93,44,112,114,111,112,115,58,89,95,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,108,97,98,101,108,44,110,61,116,104,105,115,46,102,111,114,109,79,112,116,105,111,110,115,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,61,101,46,118,97,108,117,101,44,105,61,101,46,116,101,120,116,44,111,61,101,46,104,116,109,108,44,97,61,101,46,100,105,115,97,98,108,101,100,59,114,101,116,117,114,110,32,116,40,85,95,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,114,44,100,105,115,97,98,108,101,100,58,97,125,44,100,111,109,80,114,111,112,115,58,67,102,40,111,44,105,41,44,107,101,121,58,34,111,112,116,105,111,110,95,34,46,99,111,110,99,97,116,40,110,41,125,41,125,41,41,59,114,101,116,117,114,110,32,116,40,34,111,112,116,103,114,111,117,112,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,101,125,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,74,111,41,44,110,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,88,95,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,90,95,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,88,95,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,74,95,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,88,95,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,74,95,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,118,97,114,32,81,95,44,116,120,61,100,99,40,75,116,40,90,95,40,90,95,40,90,95,40,90,95,40,90,95,40,90,95,40,90,95,40,123,125,44,68,104,41,44,77,95,41,44,72,98,41,44,87,98,41,44,113,98,41,44,75,98,41,44,123,125,44,123,97,114,105,97,73,110,118,97,108,105,100,58,117,99,40,106,111,44,33,49,41,44,109,117,108,116,105,112,108,101,58,117,99,40,103,111,44,33,49,41,44,115,101,108,101,99,116,83,105,122,101,58,117,99,40,121,111,44,48,41,125,41,41,44,77,110,41,44,101,120,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,77,110,44,109,105,120,105,110,115,58,91,65,104,44,73,95,44,85,98,44,89,98,44,88,98,44,71,98,44,86,95,44,119,99,93,44,112,114,111,112,115,58,116,120,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,108,111,99,97,108,86,97,108,117,101,58,116,104,105,115,91,36,95,93,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,83,101,108,101,99,116,83,105,122,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,108,97,105,110,124,124,48,33,61,61,116,104,105,115,46,115,101,108,101,99,116,83,105,122,101,63,116,104,105,115,46,115,101,108,101,99,116,83,105,122,101,58,110,117,108,108,125,44,105,110,112,117,116,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,116,104,105,115,46,112,108,97,105,110,63,34,102,111,114,109,45,99,111,110,116,114,111,108,34,58,34,99,117,115,116,111,109,45,115,101,108,101,99,116,34,44,116,104,105,115,46,115,105,122,101,38,38,116,104,105,115,46,112,108,97,105,110,63,34,102,111,114,109,45,99,111,110,116,114,111,108,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,105,122,101,41,58,110,117,108,108,44,116,104,105,115,46,115,105,122,101,38,38,33,116,104,105,115,46,112,108,97,105,110,63,34,99,117,115,116,111,109,45,115,101,108,101,99,116,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,105,122,101,41,58,110,117,108,108,44,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,93,125,125,44,119,97,116,99,104,58,123,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,116,125,44,108,111,99,97,108,86,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,101,109,105,116,40,70,95,44,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,41,125,125,44,109,101,116,104,111,100,115,58,123,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,41,123,113,115,40,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,125,44,98,108,117,114,58,102,117,110,99,116,105,111,110,40,41,123,89,115,40,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,41,125,44,111,110,67,104,97,110,103,101,58,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,46,116,97,114,103,101,116,44,114,61,71,97,40,110,46,111,112,116,105,111,110,115,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,115,101,108,101,99,116,101,100,125,41,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,95,118,97,108,117,101,34,105,110,32,116,63,116,46,95,118,97,108,117,101,58,116,46,118,97,108,117,101,125,41,41,59,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,110,46,109,117,108,116,105,112,108,101,63,114,58,114,91,48,93,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,36,101,109,105,116,40,117,105,44,101,46,108,111,99,97,108,86,97,108,117,101,41,125,41,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,110,97,109,101,44,110,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,114,61,116,104,105,115,46,114,101,113,117,105,114,101,100,44,105,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,101,108,101,99,116,83,105,122,101,44,111,61,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,44,97,61,116,104,105,115,46,102,111,114,109,79,112,116,105,111,110,115,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,61,101,46,118,97,108,117,101,44,105,61,101,46,108,97,98,101,108,44,111,61,101,46,111,112,116,105,111,110,115,44,97,61,101,46,100,105,115,97,98,108,101,100,44,115,61,34,111,112,116,105,111,110,95,34,46,99,111,110,99,97,116,40,110,41,59,114,101,116,117,114,110,32,67,116,40,111,41,63,116,40,75,95,44,123,112,114,111,112,115,58,123,108,97,98,101,108,58,105,44,111,112,116,105,111,110,115,58,111,125,44,107,101,121,58,115,125,41,58,116,40,85,95,44,123,112,114,111,112,115,58,123,118,97,108,117,101,58,114,44,100,105,115,97,98,108,101,100,58,97,125,44,100,111,109,80,114,111,112,115,58,67,102,40,101,46,104,116,109,108,44,101,46,116,101,120,116,41,44,107,101,121,58,115,125,41,125,41,41,59,114,101,116,117,114,110,32,116,40,34,115,101,108,101,99,116,34,44,123,99,108,97,115,115,58,116,104,105,115,46,105,110,112,117,116,67,108,97,115,115,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,110,97,109,101,58,101,44,102,111,114,109,58,116,104,105,115,46,102,111,114,109,124,124,110,117,108,108,44,109,117,108,116,105,112,108,101,58,116,104,105,115,46,109,117,108,116,105,112,108,101,124,124,110,117,108,108,44,115,105,122,101,58,105,44,100,105,115,97,98,108,101,100,58,110,44,114,101,113,117,105,114,101,100,58,114,44,34,97,114,105,97,45,114,101,113,117,105,114,101,100,34,58,114,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,105,110,118,97,108,105,100,34,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,114,105,97,73,110,118,97,108,105,100,125,44,111,110,58,123,99,104,97,110,103,101,58,116,104,105,115,46,111,110,67,104,97,110,103,101,125,44,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,109,111,100,101,108,34,44,118,97,108,117,101,58,111,125,93,44,114,101,102,58,34,105,110,112,117,116,34,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,74,111,41,44,97,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,125,125,41,44,110,120,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,70,111,114,109,83,101,108,101,99,116,58,101,120,44,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,58,85,95,44,66,70,111,114,109,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,58,75,95,44,66,83,101,108,101,99,116,58,101,120,44,66,83,101,108,101,99,116,79,112,116,105,111,110,58,85,95,44,66,83,101,108,101,99,116,79,112,116,105,111,110,71,114,111,117,112,58,75,95,125,125,41,59,102,117,110,99,116,105,111,110,32,114,120,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,105,120,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,114,120,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,111,120,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,114,120,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,111,120,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,118,97,114,32,97,120,61,109,99,40,34,118,97,108,117,101,34,44,123,116,121,112,101,58,80,111,125,41,44,115,120,61,97,120,46,109,105,120,105,110,44,99,120,61,97,120,46,112,114,111,112,115,44,117,120,61,97,120,46,112,114,111,112,44,108,120,61,97,120,46,101,118,101,110,116,44,102,120,61,49,44,104,120,61,49,48,48,44,100,120,61,49,44,112,120,61,53,48,48,44,118,120,61,49,48,48,44,103,120,61,49,48,44,109,120,61,52,44,98,120,61,91,121,108,44,117,108,44,100,108,44,108,108,44,103,108,44,118,108,93,44,121,120,61,100,99,40,75,116,40,105,120,40,105,120,40,105,120,40,105,120,40,105,120,40,105,120,40,123,125,44,68,104,41,44,99,120,41,44,113,116,40,72,98,44,91,34,114,101,113,117,105,114,101,100,34,44,34,97,117,116,111,102,111,99,117,115,34,93,41,41,44,113,98,41,44,75,98,41,44,123,125,44,123,97,114,105,97,67,111,110,116,114,111,108,115,58,117,99,40,120,111,41,44,97,114,105,97,76,97,98,101,108,58,117,99,40,120,111,41,44,102,111,114,109,97,116,116,101,114,70,110,58,117,99,40,98,111,41,44,105,110,108,105,110,101,58,117,99,40,103,111,44,33,49,41,44,108,97,98,101,108,68,101,99,114,101,109,101,110,116,58,117,99,40,120,111,44,34,68,101,99,114,101,109,101,110,116,34,41,44,108,97,98,101,108,73,110,99,114,101,109,101,110,116,58,117,99,40,120,111,44,34,73,110,99,114,101,109,101,110,116,34,41,44,108,111,99,97,108,101,58,117,99,40,67,111,41,44,109,97,120,58,117,99,40,65,111,44,104,120,41,44,109,105,110,58,117,99,40,65,111,44,102,120,41,44,112,108,97,99,101,104,111,108,100,101,114,58,117,99,40,120,111,41,44,114,101,97,100,111,110,108,121,58,117,99,40,103,111,44,33,49,41,44,114,101,112,101,97,116,68,101,108,97,121,58,117,99,40,65,111,44,112,120,41,44,114,101,112,101,97,116,73,110,116,101,114,118,97,108,58,117,99,40,65,111,44,118,120,41,44,114,101,112,101,97,116,83,116,101,112,77,117,108,116,105,112,108,105,101,114,58,117,99,40,65,111,44,109,120,41,44,114,101,112,101,97,116,84,104,114,101,115,104,111,108,100,58,117,99,40,65,111,44,103,120,41,44,115,116,101,112,58,117,99,40,65,111,44,100,120,41,44,118,101,114,116,105,99,97,108,58,117,99,40,103,111,44,33,49,41,44,119,114,97,112,58,117,99,40,103,111,44,33,49,41,125,41,41,44,82,110,41,44,119,120,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,82,110,44,109,105,120,105,110,115,58,91,67,108,44,65,104,44,115,120,44,89,98,44,88,98,44,119,99,93,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,121,120,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,108,111,99,97,108,86,97,108,117,101,58,81,97,40,116,104,105,115,91,117,120,93,44,110,117,108,108,41,44,104,97,115,70,111,99,117,115,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,115,112,105,110,73,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,115,97,102,101,73,100,40,41,125,44,99,111,109,112,117,116,101,100,73,110,108,105,110,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,108,105,110,101,38,38,33,116,104,105,115,46,118,101,114,116,105,99,97,108,125,44,99,111,109,112,117,116,101,100,82,101,97,100,111,110,108,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,114,101,97,100,111,110,108,121,38,38,33,116,104,105,115,46,100,105,115,97,98,108,101,100,125,44,99,111,109,112,117,116,101,100,82,101,113,117,105,114,101,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,114,101,113,117,105,114,101,100,38,38,33,116,104,105,115,46,99,111,109,112,117,116,101,100,82,101,97,100,111,110,108,121,38,38,33,116,104,105,115,46,100,105,115,97,98,108,101,100,125,44,99,111,109,112,117,116,101,100,83,116,101,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,97,40,116,104,105,115,46,115,116,101,112,44,100,120,41,125,44,99,111,109,112,117,116,101,100,77,105,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,97,40,116,104,105,115,46,109,105,110,44,102,120,41,125,44,99,111,109,112,117,116,101,100,77,97,120,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,81,97,40,116,104,105,115,46,109,97,120,44,104,120,41,44,101,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,101,112,44,110,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,59,114,101,116,117,114,110,32,114,117,40,40,116,45,110,41,47,101,41,42,101,43,110,125,44,99,111,109,112,117,116,101,100,68,101,108,97,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,74,97,40,116,104,105,115,46,114,101,112,101,97,116,68,101,108,97,121,44,48,41,59,114,101,116,117,114,110,32,116,62,48,63,116,58,112,120,125,44,99,111,109,112,117,116,101,100,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,74,97,40,116,104,105,115,46,114,101,112,101,97,116,73,110,116,101,114,118,97,108,44,48,41,59,114,101,116,117,114,110,32,116,62,48,63,116,58,118,120,125,44,99,111,109,112,117,116,101,100,84,104,114,101,115,104,111,108,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,117,40,74,97,40,116,104,105,115,46,114,101,112,101,97,116,84,104,114,101,115,104,111,108,100,44,103,120,41,44,49,41,125,44,99,111,109,112,117,116,101,100,83,116,101,112,77,117,108,116,105,112,108,105,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,117,40,74,97,40,116,104,105,115,46,114,101,112,101,97,116,83,116,101,112,77,117,108,116,105,112,108,105,101,114,44,109,120,41,44,49,41,125,44,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,101,112,59,114,101,116,117,114,110,32,114,117,40,116,41,61,61,61,116,63,48,58,40,116,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,124,124,34,34,41,46,108,101,110,103,116,104,125,44,99,111,109,112,117,116,101,100,77,117,108,116,105,112,108,105,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,117,40,49,48,44,116,104,105,115,46,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,124,124,48,41,125,44,118,97,108,117,101,65,115,70,105,120,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,59,114,101,116,117,114,110,32,121,116,40,116,41,63,34,34,58,116,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,41,125,44,99,111,109,112,117,116,101,100,76,111,99,97,108,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,89,97,40,116,104,105,115,46,108,111,99,97,108,101,41,46,102,105,108,116,101,114,40,115,101,41,44,101,61,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,116,41,59,114,101,116,117,114,110,32,101,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,40,41,46,108,111,99,97,108,101,125,44,99,111,109,112,117,116,101,100,82,84,76,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,104,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,41,125,44,100,101,102,97,117,108,116,70,111,114,109,97,116,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,44,101,61,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,123,115,116,121,108,101,58,34,100,101,99,105,109,97,108,34,44,117,115,101,71,114,111,117,112,105,110,103,58,33,49,44,109,105,110,105,109,117,109,73,110,116,101,103,101,114,68,105,103,105,116,115,58,49,44,109,105,110,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,116,44,109,97,120,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,116,44,110,111,116,97,116,105,111,110,58,34,115,116,97,110,100,97,114,100,34,125,41,59,114,101,116,117,114,110,32,101,46,102,111,114,109,97,116,125,44,99,111,109,112,117,116,101,100,70,111,114,109,97,116,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,102,111,114,109,97,116,116,101,114,70,110,59,114,101,116,117,114,110,32,118,99,40,116,41,63,116,58,116,104,105,115,46,100,101,102,97,117,108,116,70,111,114,109,97,116,116,101,114,125,44,99,111,109,112,117,116,101,100,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,120,40,105,120,40,123,125,44,116,104,105,115,46,98,118,65,116,116,114,115,41,44,123,125,44,123,114,111,108,101,58,34,103,114,111,117,112,34,44,108,97,110,103,58,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,116,97,98,105,110,100,101,120,58,116,104,105,115,46,100,105,115,97,98,108,101,100,63,110,117,108,108,58,34,45,49,34,44,116,105,116,108,101,58,116,104,105,115,46,97,114,105,97,76,97,98,101,108,125,41,125,44,99,111,109,112,117,116,101,100,83,112,105,110,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,115,112,105,110,73,100,44,101,61,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,44,110,61,116,104,105,115,46,99,111,109,112,117,116,101,100,82,101,113,117,105,114,101,100,44,114,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,105,61,116,104,105,115,46,115,116,97,116,101,44,111,61,116,104,105,115,46,99,111,109,112,117,116,101,100,70,111,114,109,97,116,116,101,114,44,97,61,33,121,116,40,101,41,59,114,101,116,117,114,110,32,105,120,40,105,120,40,123,100,105,114,58,116,104,105,115,46,99,111,109,112,117,116,101,100,82,84,76,63,34,114,116,108,34,58,34,108,116,114,34,125,44,116,104,105,115,46,98,118,65,116,116,114,115,41,44,123,125,44,123,105,100,58,116,44,114,111,108,101,58,34,115,112,105,110,98,117,116,116,111,110,34,44,116,97,98,105,110,100,101,120,58,114,63,110,117,108,108,58,34,48,34,44,34,97,114,105,97,45,108,105,118,101,34,58,34,111,102,102,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,116,104,105,115,46,97,114,105,97,76,97,98,101,108,124,124,110,117,108,108,44,34,97,114,105,97,45,99,111,110,116,114,111,108,115,34,58,116,104,105,115,46,97,114,105,97,67,111,110,116,114,111,108,115,124,124,110,117,108,108,44,34,97,114,105,97,45,105,110,118,97,108,105,100,34,58,33,49,61,61,61,105,124,124,33,97,38,38,110,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,114,101,113,117,105,114,101,100,34,58,110,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,118,97,108,117,101,109,105,110,34,58,115,115,40,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,41,44,34,97,114,105,97,45,118,97,108,117,101,109,97,120,34,58,115,115,40,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,41,44,34,97,114,105,97,45,118,97,108,117,101,110,111,119,34,58,97,63,101,58,110,117,108,108,44,34,97,114,105,97,45,118,97,108,117,101,116,101,120,116,34,58,97,63,111,40,101,41,58,110,117,108,108,125,41,125,125,44,119,97,116,99,104,58,40,81,95,61,123,125,44,111,120,40,81,95,44,117,120,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,81,97,40,116,44,110,117,108,108,41,125,41,41,44,111,120,40,81,95,44,34,108,111,99,97,108,86,97,108,117,101,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,101,109,105,116,40,108,120,44,116,41,125,41,41,44,111,120,40,81,95,44,34,100,105,115,97,98,108,101,100,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,104,105,115,46,99,108,101,97,114,82,101,112,101,97,116,40,41,125,41,41,44,111,120,40,81,95,44,34,114,101,97,100,111,110,108,121,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,104,105,115,46,99,108,101,97,114,82,101,112,101,97,116,40,41,125,41,41,44,81,95,41,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,97,117,116,111,68,101,108,97,121,84,105,109,101,114,61,110,117,108,108,44,116,104,105,115,46,36,95,97,117,116,111,82,101,112,101,97,116,84,105,109,101,114,61,110,117,108,108,44,116,104,105,115,46,36,95,107,101,121,73,115,68,111,119,110,61,33,49,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,101,97,114,82,101,112,101,97,116,40,41,125,44,100,101,97,99,116,105,118,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,101,97,114,82,101,112,101,97,116,40,41,125,44,109,101,116,104,111,100,115,58,123,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,113,115,40,116,104,105,115,46,36,114,101,102,115,46,115,112,105,110,110,101,114,41,125,44,98,108,117,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,89,115,40,116,104,105,115,46,36,114,101,102,115,46,115,112,105,110,110,101,114,41,125,44,101,109,105,116,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,101,109,105,116,40,117,105,44,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,41,125,44,115,116,101,112,86,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,59,105,102,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,38,38,33,121,116,40,101,41,41,123,118,97,114,32,110,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,101,112,42,116,44,114,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,44,105,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,44,111,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,117,108,116,105,112,108,105,101,114,44,97,61,116,104,105,115,46,119,114,97,112,59,101,61,111,117,40,40,101,45,114,41,47,110,41,42,110,43,114,43,110,44,101,61,111,117,40,101,42,111,41,47,111,44,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,101,62,105,63,97,63,114,58,105,58,101,60,114,63,97,63,105,58,114,58,101,125,125,44,111,110,70,111,99,117,115,66,108,117,114,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,63,116,104,105,115,46,104,97,115,70,111,99,117,115,61,33,49,58,116,104,105,115,46,104,97,115,70,111,99,117,115,61,34,102,111,99,117,115,34,61,61,61,116,46,116,121,112,101,125,44,115,116,101,112,85,112,58,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,49,44,101,61,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,59,121,116,40,101,41,63,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,58,116,104,105,115,46,115,116,101,112,86,97,108,117,101,40,49,42,116,41,125,44,115,116,101,112,68,111,119,110,58,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,49,44,101,61,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,59,121,116,40,101,41,63,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,116,104,105,115,46,119,114,97,112,63,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,58,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,58,116,104,105,115,46,115,116,101,112,86,97,108,117,101,40,45,49,42,116,41,125,44,111,110,75,101,121,100,111,119,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,107,101,121,67,111,100,101,44,110,61,116,46,97,108,116,75,101,121,44,114,61,116,46,99,116,114,108,75,101,121,44,105,61,116,46,109,101,116,97,75,101,121,59,105,102,40,33,40,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,104,105,115,46,114,101,97,100,111,110,108,121,124,124,110,124,124,114,124,124,105,41,38,38,113,97,40,98,120,44,101,41,41,123,105,102,40,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,44,116,104,105,115,46,36,95,107,101,121,73,115,68,111,119,110,41,114,101,116,117,114,110,59,116,104,105,115,46,114,101,115,101,116,84,105,109,101,114,115,40,41,44,113,97,40,91,121,108,44,117,108,93,44,101,41,63,40,116,104,105,115,46,36,95,107,101,121,73,115,68,111,119,110,61,33,48,44,101,61,61,61,121,108,63,116,104,105,115,46,104,97,110,100,108,101,83,116,101,112,82,101,112,101,97,116,40,116,44,116,104,105,115,46,115,116,101,112,85,112,41,58,101,61,61,61,117,108,38,38,116,104,105,115,46,104,97,110,100,108,101,83,116,101,112,82,101,112,101,97,116,40,116,44,116,104,105,115,46,115,116,101,112,68,111,119,110,41,41,58,101,61,61,61,103,108,63,116,104,105,115,46,115,116,101,112,85,112,40,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,101,112,77,117,108,116,105,112,108,105,101,114,41,58,101,61,61,61,118,108,63,116,104,105,115,46,115,116,101,112,68,111,119,110,40,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,101,112,77,117,108,116,105,112,108,105,101,114,41,58,101,61,61,61,100,108,63,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,58,101,61,61,61,108,108,38,38,40,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,41,125,125,44,111,110,75,101,121,117,112,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,107,101,121,67,111,100,101,44,110,61,116,46,97,108,116,75,101,121,44,114,61,116,46,99,116,114,108,75,101,121,44,105,61,116,46,109,101,116,97,75,101,121,59,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,104,105,115,46,114,101,97,100,111,110,108,121,124,124,110,124,124,114,124,124,105,124,124,113,97,40,98,120,44,101,41,38,38,40,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,44,116,104,105,115,46,114,101,115,101,116,84,105,109,101,114,115,40,41,44,116,104,105,115,46,36,95,107,101,121,73,115,68,111,119,110,61,33,49,44,116,104,105,115,46,101,109,105,116,67,104,97,110,103,101,40,41,41,125,44,104,97,110,100,108,101,83,116,101,112,82,101,112,101,97,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,44,114,61,116,124,124,123,125,44,105,61,114,46,116,121,112,101,44,111,61,114,46,98,117,116,116,111,110,59,105,102,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,38,38,33,116,104,105,115,46,114,101,97,100,111,110,108,121,41,123,105,102,40,34,109,111,117,115,101,100,111,119,110,34,61,61,61,105,38,38,111,41,114,101,116,117,114,110,59,116,104,105,115,46,114,101,115,101,116,84,105,109,101,114,115,40,41,44,101,40,49,41,59,118,97,114,32,97,61,116,104,105,115,46,99,111,109,112,117,116,101,100,84,104,114,101,115,104,111,108,100,44,115,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,101,112,77,117,108,116,105,112,108,105,101,114,44,99,61,116,104,105,115,46,99,111,109,112,117,116,101,100,68,101,108,97,121,44,117,61,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,116,101,114,118,97,108,59,116,104,105,115,46,36,95,97,117,116,111,68,101,108,97,121,84,105,109,101,114,61,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,59,110,46,36,95,97,117,116,111,82,101,112,101,97,116,84,105,109,101,114,61,115,101,116,73,110,116,101,114,118,97,108,40,40,102,117,110,99,116,105,111,110,40,41,123,101,40,116,60,97,63,49,58,115,41,44,116,43,43,125,41,44,117,41,125,41,44,99,41,125,125,44,111,110,77,111,117,115,101,117,112,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,124,124,123,125,44,110,61,101,46,116,121,112,101,44,114,61,101,46,98,117,116,116,111,110,59,34,109,111,117,115,101,117,112,34,61,61,61,110,38,38,114,124,124,40,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,44,116,104,105,115,46,114,101,115,101,116,84,105,109,101,114,115,40,41,44,116,104,105,115,46,115,101,116,77,111,117,115,101,117,112,40,33,49,41,44,116,104,105,115,46,101,109,105,116,67,104,97,110,103,101,40,41,41,125,44,115,101,116,77,111,117,115,101,117,112,58,102,117,110,99,116,105,111,110,40,116,41,123,116,114,121,123,83,99,40,116,44,100,111,99,117,109,101,110,116,46,98,111,100,121,44,34,109,111,117,115,101,117,112,34,44,116,104,105,115,46,111,110,77,111,117,115,101,117,112,44,33,49,41,44,83,99,40,116,44,100,111,99,117,109,101,110,116,46,98,111,100,121,44,34,116,111,117,99,104,101,110,100,34,44,116,104,105,115,46,111,110,77,111,117,115,101,117,112,44,33,49,41,125,99,97,116,99,104,40,101,41,123,125,125,44,114,101,115,101,116,84,105,109,101,114,115,58,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,36,95,97,117,116,111,68,101,108,97,121,84,105,109,101,114,41,44,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,36,95,97,117,116,111,82,101,112,101,97,116,84,105,109,101,114,41,44,116,104,105,115,46,36,95,97,117,116,111,68,101,108,97,121,84,105,109,101,114,61,110,117,108,108,44,116,104,105,115,46,36,95,97,117,116,111,82,101,112,101,97,116,84,105,109,101,114,61,110,117,108,108,125,44,99,108,101,97,114,82,101,112,101,97,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,101,116,84,105,109,101,114,115,40,41,44,116,104,105,115,46,115,101,116,77,111,117,115,101,117,112,40,33,49,41,44,116,104,105,115,46,36,95,107,101,121,73,115,68,111,119,110,61,33,49,125,125,44,114,101,110,100,101,114,58,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,115,112,105,110,73,100,44,114,61,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,44,105,61,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,108,105,110,101,44,111,61,116,104,105,115,46,99,111,109,112,117,116,101,100,82,101,97,100,111,110,108,121,44,97,61,116,104,105,115,46,118,101,114,116,105,99,97,108,44,115,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,99,61,116,104,105,115,46,99,111,109,112,117,116,101,100,70,111,114,109,97,116,116,101,114,44,117,61,33,121,116,40,114,41,44,108,61,102,117,110,99,116,105,111,110,40,114,44,105,44,99,44,117,44,108,44,102,44,104,41,123,118,97,114,32,100,61,116,40,99,44,123,112,114,111,112,115,58,123,115,99,97,108,101,58,101,46,104,97,115,70,111,99,117,115,63,49,46,53,58,49,46,50,53,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,104,105,100,100,101,110,34,58,34,116,114,117,101,34,125,125,41,44,112,61,123,104,97,115,70,111,99,117,115,58,101,46,104,97,115,70,111,99,117,115,125,44,118,61,102,117,110,99,116,105,111,110,40,116,41,123,115,124,124,111,124,124,40,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,44,101,46,115,101,116,77,111,117,115,101,117,112,40,33,48,41,44,113,115,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,44,101,46,104,97,110,100,108,101,83,116,101,112,82,101,112,101,97,116,40,116,44,114,41,41,125,59,114,101,116,117,114,110,32,116,40,34,98,117,116,116,111,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,116,110,32,98,116,110,45,115,109,32,98,111,114,100,101,114,45,48,32,114,111,117,110,100,101,100,45,48,34,44,99,108,97,115,115,58,123,34,112,121,45,48,34,58,33,97,125,44,97,116,116,114,115,58,123,116,97,98,105,110,100,101,120,58,34,45,49,34,44,116,121,112,101,58,34,98,117,116,116,111,110,34,44,100,105,115,97,98,108,101,100,58,115,124,124,111,124,124,102,44,34,97,114,105,97,45,100,105,115,97,98,108,101,100,34,58,115,124,124,111,124,124,102,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,99,111,110,116,114,111,108,115,34,58,110,44,34,97,114,105,97,45,108,97,98,101,108,34,58,105,124,124,110,117,108,108,44,34,97,114,105,97,45,107,101,121,115,104,111,114,116,99,117,116,115,34,58,108,124,124,110,117,108,108,125,44,111,110,58,123,109,111,117,115,101,100,111,119,110,58,118,44,116,111,117,99,104,115,116,97,114,116,58,118,125,44,107,101,121,58,117,124,124,110,117,108,108,44,114,101,102,58,117,125,44,91,101,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,104,44,112,41,124,124,100,93,41,125,44,102,61,108,40,116,104,105,115,46,115,116,101,112,85,112,44,116,104,105,115,46,108,97,98,101,108,73,110,99,114,101,109,101,110,116,44,75,117,44,34,105,110,99,34,44,34,65,114,114,111,119,85,112,34,44,33,49,44,99,97,41,44,104,61,108,40,116,104,105,115,46,115,116,101,112,68,111,119,110,44,116,104,105,115,46,108,97,98,101,108,68,101,99,114,101,109,101,110,116,44,113,117,44,34,100,101,99,34,44,34,65,114,114,111,119,68,111,119,110,34,44,33,49,44,72,111,41,44,100,61,116,40,41,59,116,104,105,115,46,110,97,109,101,38,38,33,115,38,38,40,100,61,116,40,34,105,110,112,117,116,34,44,123,97,116,116,114,115,58,123,116,121,112,101,58,34,104,105,100,100,101,110,34,44,110,97,109,101,58,116,104,105,115,46,110,97,109,101,44,102,111,114,109,58,116,104,105,115,46,102,111,114,109,124,124,110,117,108,108,44,118,97,108,117,101,58,116,104,105,115,46,118,97,108,117,101,65,115,70,105,120,101,100,125,44,107,101,121,58,34,104,105,100,100,101,110,34,125,41,41,59,118,97,114,32,112,61,116,40,34,111,117,116,112,117,116,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,108,101,120,45,103,114,111,119,45,49,34,44,99,108,97,115,115,58,123,34,100,45,102,108,101,120,34,58,97,44,34,97,108,105,103,110,45,115,101,108,102,45,99,101,110,116,101,114,34,58,33,97,44,34,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,34,58,97,44,34,98,111,114,100,101,114,45,116,111,112,34,58,97,44,34,98,111,114,100,101,114,45,98,111,116,116,111,109,34,58,97,44,34,98,111,114,100,101,114,45,108,101,102,116,34,58,33,97,44,34,98,111,114,100,101,114,45,114,105,103,104,116,34,58,33,97,125,44,97,116,116,114,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,83,112,105,110,65,116,116,114,115,44,107,101,121,58,34,111,117,116,112,117,116,34,44,114,101,102,58,34,115,112,105,110,110,101,114,34,125,44,91,116,40,34,98,100,105,34,44,117,63,99,40,114,41,58,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,124,124,34,34,41,93,41,59,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,111,114,109,45,115,112,105,110,98,117,116,116,111,110,32,102,111,114,109,45,99,111,110,116,114,111,108,34,44,99,108,97,115,115,58,91,123,100,105,115,97,98,108,101,100,58,115,44,114,101,97,100,111,110,108,121,58,111,44,102,111,99,117,115,58,116,104,105,115,46,104,97,115,70,111,99,117,115,44,34,100,45,105,110,108,105,110,101,45,102,108,101,120,34,58,105,124,124,97,44,34,100,45,102,108,101,120,34,58,33,105,38,38,33,97,44,34,97,108,105,103,110,45,105,116,101,109,115,45,115,116,114,101,116,99,104,34,58,33,97,44,34,102,108,101,120,45,99,111,108,117,109,110,34,58,97,125,44,116,104,105,115,46,115,105,122,101,70,111,114,109,67,108,97,115,115,44,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,93,44,97,116,116,114,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,111,110,58,123,107,101,121,100,111,119,110,58,116,104,105,115,46,111,110,75,101,121,100,111,119,110,44,107,101,121,117,112,58,116,104,105,115,46,111,110,75,101,121,117,112,44,34,33,102,111,99,117,115,34,58,116,104,105,115,46,111,110,70,111,99,117,115,66,108,117,114,44,34,33,98,108,117,114,34,58,116,104,105,115,46,111,110,70,111,99,117,115,66,108,117,114,125,125,44,97,63,91,102,44,100,44,112,44,104,93,58,91,104,44,100,44,112,44,102,93,41,125,125,41,44,95,120,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,70,111,114,109,83,112,105,110,98,117,116,116,111,110,58,119,120,44,66,83,112,105,110,98,117,116,116,111,110,58,119,120,125,125,41,59,102,117,110,99,116,105,111,110,32,120,120,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,79,120,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,120,120,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,83,120,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,120,120,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,83,120,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,118,97,114,32,107,120,44,67,120,61,100,99,40,75,116,40,79,120,40,79,120,40,123,125,44,68,104,41,44,123,125,44,123,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,110,111,82,101,109,111,118,101,58,117,99,40,103,111,44,33,49,41,44,112,105,108,108,58,117,99,40,103,111,44,33,49,41,44,114,101,109,111,118,101,76,97,98,101,108,58,117,99,40,120,111,44,34,82,101,109,111,118,101,32,116,97,103,34,41,44,116,97,103,58,117,99,40,120,111,44,34,115,112,97,110,34,41,44,116,105,116,108,101,58,117,99,40,120,111,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,44,34,115,101,99,111,110,100,97,114,121,34,41,125,41,41,44,78,110,41,44,80,120,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,78,110,44,109,105,120,105,110,115,58,91,65,104,44,119,99,93,44,112,114,111,112,115,58,67,120,44,109,101,116,104,111,100,115,58,123,111,110,82,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,116,121,112,101,44,110,61,116,46,107,101,121,67,111,100,101,59,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,34,99,108,105,99,107,34,33,61,61,101,38,38,40,34,107,101,121,100,111,119,110,34,33,61,61,101,124,124,110,33,61,61,99,108,41,124,124,116,104,105,115,46,36,101,109,105,116,40,86,105,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,116,105,116,108,101,44,110,61,116,104,105,115,46,116,97,103,44,114,61,116,104,105,115,46,118,97,114,105,97,110,116,44,105,61,116,104,105,115,46,112,105,108,108,44,111,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,97,61,116,104,105,115,46,115,97,102,101,73,100,40,41,44,115,61,116,104,105,115,46,115,97,102,101,73,100,40,34,95,116,97,103,108,97,98,101,108,95,34,41,44,99,61,116,40,41,59,116,104,105,115,46,110,111,82,101,109,111,118,101,124,124,111,124,124,40,99,61,116,40,68,99,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,111,114,109,45,116,97,103,45,114,101,109,111,118,101,34,44,112,114,111,112,115,58,123,97,114,105,97,76,97,98,101,108,58,116,104,105,115,46,114,101,109,111,118,101,76,97,98,101,108,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,99,111,110,116,114,111,108,115,34,58,97,44,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,58,115,44,34,97,114,105,97,45,107,101,121,115,104,111,114,116,99,117,116,115,34,58,34,68,101,108,101,116,101,34,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,82,101,109,111,118,101,44,107,101,121,100,111,119,110,58,116,104,105,115,46,111,110,82,101,109,111,118,101,125,125,41,41,59,118,97,114,32,117,61,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,111,114,109,45,116,97,103,45,99,111,110,116,101,110,116,32,102,108,101,120,45,103,114,111,119,45,49,32,116,101,120,116,45,116,114,117,110,99,97,116,101,34,44,97,116,116,114,115,58,123,105,100,58,115,125,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,124,124,101,41,59,114,101,116,117,114,110,32,116,40,79,102,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,111,114,109,45,116,97,103,32,100,45,105,110,108,105,110,101,45,102,108,101,120,32,97,108,105,103,110,45,105,116,101,109,115,45,98,97,115,101,108,105,110,101,32,109,119,45,49,48,48,34,44,99,108,97,115,115,58,123,100,105,115,97,98,108,101,100,58,111,125,44,112,114,111,112,115,58,123,116,97,103,58,110,44,118,97,114,105,97,110,116,58,114,44,112,105,108,108,58,105,125,44,97,116,116,114,115,58,123,105,100,58,97,44,116,105,116,108,101,58,101,124,124,110,117,108,108,44,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,58,115,125,125,44,91,117,44,99,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,84,120,40,116,41,123,114,101,116,117,114,110,32,65,120,40,116,41,124,124,68,120,40,116,41,124,124,69,120,40,116,41,124,124,106,120,40,41,125,102,117,110,99,116,105,111,110,32,106,120,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,34,41,125,102,117,110,99,116,105,111,110,32,69,120,40,116,44,101,41,123,105,102,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,76,120,40,116,44,101,41,59,118,97,114,32,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,41,46,115,108,105,99,101,40,56,44,45,49,41,59,114,101,116,117,114,110,34,79,98,106,101,99,116,34,61,61,61,110,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,116,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,44,34,77,97,112,34,61,61,61,110,124,124,34,83,101,116,34,61,61,61,110,63,65,114,114,97,121,46,102,114,111,109,40,116,41,58,34,65,114,103,117,109,101,110,116,115,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,63,76,120,40,116,44,101,41,58,118,111,105,100,32,48,125,125,102,117,110,99,116,105,111,110,32,68,120,40,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,116,41,125,102,117,110,99,116,105,111,110,32,65,120,40,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,76,120,40,116,41,125,102,117,110,99,116,105,111,110,32,76,120,40,116,44,101,41,123,40,110,117,108,108,61,61,101,124,124,101,62,116,46,108,101,110,103,116,104,41,38,38,40,101,61,116,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,110,60,101,59,110,43,43,41,114,91,110,93,61,116,91,110,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,73,120,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,77,120,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,73,120,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,36,120,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,73,120,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,36,120,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,118,97,114,32,70,120,61,109,99,40,34,118,97,108,117,101,34,44,123,116,121,112,101,58,118,111,44,100,101,102,97,117,108,116,86,97,108,117,101,58,91,93,125,41,44,82,120,61,70,120,46,109,105,120,105,110,44,78,120,61,70,120,46,112,114,111,112,115,44,66,120,61,70,120,46,112,114,111,112,44,122,120,61,70,120,46,101,118,101,110,116,44,86,120,61,91,34,116,101,120,116,34,44,34,101,109,97,105,108,34,44,34,116,101,108,34,44,34,117,114,108,34,44,34,110,117,109,98,101,114,34,93,44,72,120,61,91,34,46,98,45,102,111,114,109,45,116,97,103,34,44,34,98,117,116,116,111,110,34,44,34,105,110,112,117,116,34,44,34,115,101,108,101,99,116,34,93,46,106,111,105,110,40,34,32,34,41,44,85,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,115,40,116,41,46,114,101,112,108,97,99,101,40,73,44,34,92,92,115,34,41,125,44,87,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,89,97,40,116,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,117,115,40,115,115,40,116,41,41,125,41,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,62,48,38,38,110,46,105,110,100,101,120,79,102,40,116,41,61,61,61,101,125,41,41,125,44,71,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,79,116,40,116,41,63,116,58,69,116,40,116,41,38,38,116,46,116,97,114,103,101,116,46,118,97,108,117,101,124,124,34,34,125,44,113,120,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,97,108,108,58,91,93,44,118,97,108,105,100,58,91,93,44,105,110,118,97,108,105,100,58,91,93,44,100,117,112,108,105,99,97,116,101,58,91,93,125,125,44,89,120,61,100,99,40,75,116,40,77,120,40,77,120,40,77,120,40,77,120,40,77,120,40,77,120,40,123,125,44,68,104,41,44,78,120,41,44,72,98,41,44,113,98,41,44,75,98,41,44,123,125,44,123,97,100,100,66,117,116,116,111,110,84,101,120,116,58,117,99,40,120,111,44,34,65,100,100,34,41,44,97,100,100,66,117,116,116,111,110,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,34,41,44,97,100,100,79,110,67,104,97,110,103,101,58,117,99,40,103,111,44,33,49,41,44,100,117,112,108,105,99,97,116,101,84,97,103,84,101,120,116,58,117,99,40,120,111,44,34,68,117,112,108,105,99,97,116,101,32,116,97,103,40,115,41,34,41,44,105,103,110,111,114,101,73,110,112,117,116,70,111,99,117,115,83,101,108,101,99,116,111,114,58,117,99,40,67,111,44,72,120,41,44,105,110,112,117,116,65,116,116,114,115,58,117,99,40,119,111,44,123,125,41,44,105,110,112,117,116,67,108,97,115,115,58,117,99,40,107,111,41,44,105,110,112,117,116,73,100,58,117,99,40,120,111,41,44,105,110,112,117,116,84,121,112,101,58,117,99,40,120,111,44,34,116,101,120,116,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,113,97,40,86,120,44,116,41,125,41,41,44,105,110,118,97,108,105,100,84,97,103,84,101,120,116,58,117,99,40,120,111,44,34,73,110,118,97,108,105,100,32,116,97,103,40,115,41,34,41,44,108,105,109,105,116,58,117,99,40,121,111,41,44,108,105,109,105,116,84,97,103,115,84,101,120,116,58,117,99,40,120,111,44,34,84,97,103,32,108,105,109,105,116,32,114,101,97,99,104,101,100,34,41,44,110,111,65,100,100,79,110,69,110,116,101,114,58,117,99,40,103,111,44,33,49,41,44,110,111,79,117,116,101,114,70,111,99,117,115,58,117,99,40,103,111,44,33,49,41,44,110,111,84,97,103,82,101,109,111,118,101,58,117,99,40,103,111,44,33,49,41,44,112,108,97,99,101,104,111,108,100,101,114,58,117,99,40,120,111,44,34,65,100,100,32,116,97,103,46,46,46,34,41,44,114,101,109,111,118,101,79,110,68,101,108,101,116,101,58,117,99,40,103,111,44,33,49,41,44,115,101,112,97,114,97,116,111,114,58,117,99,40,67,111,41,44,116,97,103,67,108,97,115,115,58,117,99,40,107,111,41,44,116,97,103,80,105,108,108,115,58,117,99,40,103,111,44,33,49,41,44,116,97,103,82,101,109,111,118,101,76,97,98,101,108,58,117,99,40,120,111,44,34,82,101,109,111,118,101,32,116,97,103,34,41,44,116,97,103,82,101,109,111,118,101,100,76,97,98,101,108,58,117,99,40,120,111,44,34,84,97,103,32,114,101,109,111,118,101,100,34,41,44,116,97,103,86,97,108,105,100,97,116,111,114,58,117,99,40,98,111,41,44,116,97,103,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,115,101,99,111,110,100,97,114,121,34,41,125,41,41,44,66,110,41,44,75,120,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,66,110,44,109,105,120,105,110,115,58,91,65,104,44,82,120,44,85,98,44,89,98,44,88,98,44,119,99,93,44,112,114,111,112,115,58,89,120,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,104,97,115,70,111,99,117,115,58,33,49,44,110,101,119,84,97,103,58,34,34,44,116,97,103,115,58,91,93,44,114,101,109,111,118,101,100,84,97,103,115,58,91,93,44,116,97,103,115,83,116,97,116,101,58,113,120,40,41,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,73,110,112,117,116,73,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,105,110,112,117,116,73,100,124,124,116,104,105,115,46,115,97,102,101,73,100,40,34,95,95,105,110,112,117,116,95,95,34,41,125,44,99,111,109,112,117,116,101,100,73,110,112,117,116,84,121,112,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,113,97,40,86,120,44,116,104,105,115,46,105,110,112,117,116,84,121,112,101,41,63,116,104,105,115,46,105,110,112,117,116,84,121,112,101,58,34,116,101,120,116,34,125,44,99,111,109,112,117,116,101,100,73,110,112,117,116,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,101,61,116,104,105,115,46,102,111,114,109,59,114,101,116,117,114,110,32,77,120,40,77,120,40,123,125,44,116,104,105,115,46,105,110,112,117,116,65,116,116,114,115,41,44,123,125,44,123,105,100,58,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,112,117,116,73,100,44,118,97,108,117,101,58,116,104,105,115,46,110,101,119,84,97,103,44,100,105,115,97,98,108,101,100,58,116,44,102,111,114,109,58,101,125,41,125,44,99,111,109,112,117,116,101,100,73,110,112,117,116,72,97,110,100,108,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,110,112,117,116,58,116,104,105,115,46,111,110,73,110,112,117,116,73,110,112,117,116,44,99,104,97,110,103,101,58,116,104,105,115,46,111,110,73,110,112,117,116,67,104,97,110,103,101,44,107,101,121,100,111,119,110,58,116,104,105,115,46,111,110,73,110,112,117,116,75,101,121,100,111,119,110,44,114,101,115,101,116,58,116,104,105,115,46,114,101,115,101,116,125,125,44,99,111,109,112,117,116,101,100,83,101,112,97,114,97,116,111,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,97,40,116,104,105,115,46,115,101,112,97,114,97,116,111,114,41,46,102,105,108,116,101,114,40,79,116,41,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,34,41,125,44,99,111,109,112,117,116,101,100,83,101,112,97,114,97,116,111,114,82,101,103,69,120,112,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,101,112,97,114,97,116,111,114,59,114,101,116,117,114,110,32,116,63,110,101,119,32,82,101,103,69,120,112,40,34,91,34,46,99,111,110,99,97,116,40,85,120,40,116,41,44,34,93,43,34,41,41,58,110,117,108,108,125,44,99,111,109,112,117,116,101,100,74,111,105,110,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,101,112,97,114,97,116,111,114,46,99,104,97,114,65,116,40,48,41,59,114,101,116,117,114,110,34,32,34,33,61,61,116,63,34,34,46,99,111,110,99,97,116,40,116,44,34,32,34,41,58,116,125,44,99,111,109,112,117,116,101,73,103,110,111,114,101,73,110,112,117,116,70,111,99,117,115,83,101,108,101,99,116,111,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,97,40,116,104,105,115,46,105,103,110,111,114,101,73,110,112,117,116,70,111,99,117,115,83,101,108,101,99,116,111,114,41,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,44,34,41,46,116,114,105,109,40,41,125,44,100,105,115,97,98,108,101,65,100,100,66,117,116,116,111,110,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,117,115,40,116,104,105,115,46,110,101,119,84,97,103,41,59,114,101,116,117,114,110,34,34,61,61,61,101,124,124,33,116,104,105,115,46,115,112,108,105,116,84,97,103,115,40,101,41,46,115,111,109,101,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,113,97,40,116,46,116,97,103,115,44,101,41,38,38,116,46,118,97,108,105,100,97,116,101,84,97,103,40,101,41,125,41,41,125,44,100,117,112,108,105,99,97,116,101,84,97,103,115,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,97,103,115,83,116,97,116,101,46,100,117,112,108,105,99,97,116,101,125,44,104,97,115,68,117,112,108,105,99,97,116,101,84,97,103,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,100,117,112,108,105,99,97,116,101,84,97,103,115,46,108,101,110,103,116,104,62,48,125,44,105,110,118,97,108,105,100,84,97,103,115,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,97,103,115,83,116,97,116,101,46,105,110,118,97,108,105,100,125,44,104,97,115,73,110,118,97,108,105,100,84,97,103,115,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,97,108,105,100,84,97,103,115,46,108,101,110,103,116,104,62,48,125,44,105,115,76,105,109,105,116,82,101,97,99,104,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,108,105,109,105,116,59,114,101,116,117,114,110,32,83,116,40,116,41,38,38,116,62,61,48,38,38,116,104,105,115,46,116,97,103,115,46,108,101,110,103,116,104,62,61,116,125,125,44,119,97,116,99,104,58,40,107,120,61,123,125,44,36,120,40,107,120,44,66,120,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,116,97,103,115,61,87,120,40,116,41,125,41,41,44,36,120,40,107,120,44,34,116,97,103,115,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,95,108,40,116,44,116,104,105,115,91,66,120,93,41,124,124,116,104,105,115,46,36,101,109,105,116,40,122,120,44,116,41,44,95,108,40,116,44,101,41,124,124,40,116,61,89,97,40,116,41,46,102,105,108,116,101,114,40,115,101,41,44,101,61,89,97,40,101,41,46,102,105,108,116,101,114,40,115,101,41,44,116,104,105,115,46,114,101,109,111,118,101,100,84,97,103,115,61,101,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,113,97,40,116,44,101,41,125,41,41,41,125,41,41,44,36,120,40,107,120,44,34,116,97,103,115,83,116,97,116,101,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,95,108,40,116,44,101,41,124,124,116,104,105,115,46,36,101,109,105,116,40,110,111,44,116,46,118,97,108,105,100,44,116,46,105,110,118,97,108,105,100,44,116,46,100,117,112,108,105,99,97,116,101,41,125,41,41,44,107,120,41,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,116,97,103,115,61,87,120,40,116,104,105,115,91,66,120,93,41,125,44,109,111,117,110,116,101,100,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,84,115,40,34,102,111,114,109,34,44,116,104,105,115,46,36,101,108,41,59,101,38,38,40,120,99,40,101,44,34,114,101,115,101,116,34,44,116,104,105,115,46,114,101,115,101,116,44,102,111,41,44,116,104,105,115,46,36,111,110,40,97,111,44,40,102,117,110,99,116,105,111,110,40,41,123,79,99,40,101,44,34,114,101,115,101,116,34,44,116,46,114,101,115,101,116,44,102,111,41,125,41,41,41,125,44,109,101,116,104,111,100,115,58,123,97,100,100,84,97,103,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,61,79,116,40,116,41,63,116,58,116,104,105,115,46,110,101,119,84,97,103,44,33,116,104,105,115,46,100,105,115,97,98,108,101,100,38,38,34,34,33,61,61,117,115,40,116,41,38,38,33,116,104,105,115,46,105,115,76,105,109,105,116,82,101,97,99,104,101,100,41,123,118,97,114,32,101,61,116,104,105,115,46,112,97,114,115,101,84,97,103,115,40,116,41,59,105,102,40,101,46,118,97,108,105,100,46,108,101,110,103,116,104,62,48,124,124,48,61,61,61,101,46,97,108,108,46,108,101,110,103,116,104,41,105,102,40,80,115,40,116,104,105,115,46,103,101,116,73,110,112,117,116,40,41,44,34,115,101,108,101,99,116,34,41,41,116,104,105,115,46,110,101,119,84,97,103,61,34,34,59,101,108,115,101,123,118,97,114,32,110,61,91,93,46,99,111,110,99,97,116,40,84,120,40,101,46,105,110,118,97,108,105,100,41,44,84,120,40,101,46,100,117,112,108,105,99,97,116,101,41,41,59,116,104,105,115,46,110,101,119,84,97,103,61,101,46,97,108,108,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,113,97,40,110,44,116,41,125,41,41,46,106,111,105,110,40,116,104,105,115,46,99,111,109,112,117,116,101,100,74,111,105,110,101,114,41,46,99,111,110,99,97,116,40,110,46,108,101,110,103,116,104,62,48,63,116,104,105,115,46,99,111,109,112,117,116,101,100,74,111,105,110,101,114,46,99,104,97,114,65,116,40,48,41,58,34,34,41,125,101,46,118,97,108,105,100,46,108,101,110,103,116,104,62,48,38,38,40,116,104,105,115,46,116,97,103,115,61,89,97,40,116,104,105,115,46,116,97,103,115,44,101,46,118,97,108,105,100,41,41,44,116,104,105,115,46,116,97,103,115,83,116,97,116,101,61,101,44,116,104,105,115,46,102,111,99,117,115,40,41,125,125,44,114,101,109,111,118,101,84,97,103,58,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,100,105,115,97,98,108,101,100,124,124,40,116,104,105,115,46,116,97,103,115,61,116,104,105,115,46,116,97,103,115,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,33,61,61,116,125,41,41,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,102,111,99,117,115,40,41,125,41,41,41,125,44,114,101,115,101,116,58,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,110,101,119,84,97,103,61,34,34,44,116,104,105,115,46,116,97,103,115,61,91,93,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,114,101,109,111,118,101,100,84,97,103,115,61,91,93,44,116,46,116,97,103,115,83,116,97,116,101,61,113,120,40,41,125,41,41,125,44,111,110,73,110,112,117,116,73,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,40,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,69,116,40,116,41,38,38,116,46,116,97,114,103,101,116,46,99,111,109,112,111,115,105,110,103,41,41,123,118,97,114,32,101,61,71,120,40,116,41,44,110,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,101,112,97,114,97,116,111,114,82,101,103,69,120,112,59,116,104,105,115,46,110,101,119,84,97,103,33,61,61,101,38,38,40,116,104,105,115,46,110,101,119,84,97,103,61,101,41,44,101,61,99,115,40,101,41,44,110,38,38,110,46,116,101,115,116,40,101,46,115,108,105,99,101,40,45,49,41,41,63,116,104,105,115,46,97,100,100,84,97,103,40,41,58,116,104,105,115,46,116,97,103,115,83,116,97,116,101,61,34,34,61,61,61,101,63,113,120,40,41,58,116,104,105,115,46,112,97,114,115,101,84,97,103,115,40,101,41,125,125,44,111,110,73,110,112,117,116,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,38,38,116,104,105,115,46,97,100,100,79,110,67,104,97,110,103,101,41,123,118,97,114,32,101,61,71,120,40,116,41,59,116,104,105,115,46,110,101,119,84,97,103,33,61,61,101,38,38,40,116,104,105,115,46,110,101,119,84,97,103,61,101,41,44,116,104,105,115,46,97,100,100,84,97,103,40,41,125,125,44,111,110,73,110,112,117,116,75,101,121,100,111,119,110,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,38,38,69,116,40,116,41,41,123,118,97,114,32,101,61,116,46,107,101,121,67,111,100,101,44,110,61,116,46,116,97,114,103,101,116,46,118,97,108,117,101,124,124,34,34,59,116,104,105,115,46,110,111,65,100,100,79,110,69,110,116,101,114,124,124,101,33,61,61,102,108,63,33,116,104,105,115,46,114,101,109,111,118,101,79,110,68,101,108,101,116,101,124,124,101,33,61,61,115,108,38,38,101,33,61,61,99,108,124,124,34,34,33,61,61,110,124,124,40,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,44,116,104,105,115,46,116,97,103,115,61,116,104,105,115,46,116,97,103,115,46,115,108,105,99,101,40,48,44,45,49,41,41,58,40,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,44,116,104,105,115,46,97,100,100,84,97,103,40,41,41,125,125,44,111,110,67,108,105,99,107,58,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,99,111,109,112,117,116,101,73,103,110,111,114,101,73,110,112,117,116,70,111,99,117,115,83,101,108,101,99,116,111,114,44,114,61,116,46,116,97,114,103,101,116,59,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,95,115,40,114,41,124,124,110,38,38,84,115,40,110,44,114,44,33,48,41,124,124,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,102,111,99,117,115,40,41,125,41,41,125,44,111,110,70,111,99,117,115,105,110,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,70,111,99,117,115,61,33,48,125,44,111,110,70,111,99,117,115,111,117,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,70,111,99,117,115,61,33,49,125,44,104,97,110,100,108,101,65,117,116,111,102,111,99,117,115,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,97,117,116,111,102,111,99,117,115,38,38,33,116,46,100,105,115,97,98,108,101,100,38,38,116,46,102,111,99,117,115,40,41,125,41,41,125,41,41,125,44,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,113,115,40,116,104,105,115,46,103,101,116,73,110,112,117,116,40,41,41,125,44,98,108,117,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,89,115,40,116,104,105,115,46,103,101,116,73,110,112,117,116,40,41,41,125,44,115,112,108,105,116,84,97,103,115,58,102,117,110,99,116,105,111,110,40,116,41,123,116,61,115,115,40,116,41,59,118,97,114,32,101,61,116,104,105,115,46,99,111,109,112,117,116,101,100,83,101,112,97,114,97,116,111,114,82,101,103,69,120,112,59,114,101,116,117,114,110,40,101,63,116,46,115,112,108,105,116,40,101,41,58,91,116,93,41,46,109,97,112,40,117,115,41,46,102,105,108,116,101,114,40,115,101,41,125,44,112,97,114,115,101,84,97,103,115,58,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,115,112,108,105,116,84,97,103,115,40,116,41,44,114,61,123,97,108,108,58,110,44,118,97,108,105,100,58,91,93,44,105,110,118,97,108,105,100,58,91,93,44,100,117,112,108,105,99,97,116,101,58,91,93,125,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,113,97,40,101,46,116,97,103,115,44,116,41,124,124,113,97,40,114,46,118,97,108,105,100,44,116,41,63,113,97,40,114,46,100,117,112,108,105,99,97,116,101,44,116,41,124,124,114,46,100,117,112,108,105,99,97,116,101,46,112,117,115,104,40,116,41,58,101,46,118,97,108,105,100,97,116,101,84,97,103,40,116,41,63,114,46,118,97,108,105,100,46,112,117,115,104,40,116,41,58,113,97,40,114,46,105,110,118,97,108,105,100,44,116,41,124,124,114,46,105,110,118,97,108,105,100,46,112,117,115,104,40,116,41,125,41,41,44,114,125,44,118,97,108,105,100,97,116,101,84,97,103,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,116,97,103,86,97,108,105,100,97,116,111,114,59,114,101,116,117,114,110,33,118,99,40,101,41,124,124,101,40,116,41,125,44,103,101,116,73,110,112,117,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,67,115,40,34,35,34,46,99,111,110,99,97,116,40,106,119,40,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,112,117,116,73,100,41,41,44,116,104,105,115,46,36,101,108,41,125,44,100,101,102,97,117,108,116,82,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,97,100,100,66,117,116,116,111,110,84,101,120,116,44,110,61,116,46,97,100,100,66,117,116,116,111,110,86,97,114,105,97,110,116,44,114,61,116,46,97,100,100,84,97,103,44,105,61,116,46,100,105,115,97,98,108,101,65,100,100,66,117,116,116,111,110,44,111,61,116,46,100,105,115,97,98,108,101,100,44,97,61,116,46,100,117,112,108,105,99,97,116,101,84,97,103,84,101,120,116,44,115,61,116,46,105,110,112,117,116,65,116,116,114,115,44,99,61,116,46,105,110,112,117,116,67,108,97,115,115,44,117,61,116,46,105,110,112,117,116,72,97,110,100,108,101,114,115,44,108,61,116,46,105,110,112,117,116,84,121,112,101,44,102,61,116,46,105,110,118,97,108,105,100,84,97,103,84,101,120,116,44,104,61,116,46,105,115,68,117,112,108,105,99,97,116,101,44,100,61,116,46,105,115,73,110,118,97,108,105,100,44,112,61,116,46,105,115,76,105,109,105,116,82,101,97,99,104,101,100,44,118,61,116,46,108,105,109,105,116,84,97,103,115,84,101,120,116,44,103,61,116,46,110,111,84,97,103,82,101,109,111,118,101,44,109,61,116,46,112,108,97,99,101,104,111,108,100,101,114,44,98,61,116,46,114,101,109,111,118,101,84,97,103,44,121,61,116,46,116,97,103,67,108,97,115,115,44,119,61,116,46,116,97,103,80,105,108,108,115,44,95,61,116,46,116,97,103,82,101,109,111,118,101,76,97,98,101,108,44,120,61,116,46,116,97,103,86,97,114,105,97,110,116,44,79,61,116,46,116,97,103,115,44,83,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,107,61,79,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,115,115,40,116,41,44,83,40,80,120,44,123,99,108,97,115,115,58,121,44,112,114,111,112,115,58,123,100,105,115,97,98,108,101,100,58,111,44,110,111,82,101,109,111,118,101,58,103,44,112,105,108,108,58,119,44,114,101,109,111,118,101,76,97,98,101,108,58,95,44,116,97,103,58,34,108,105,34,44,116,105,116,108,101,58,116,44,118,97,114,105,97,110,116,58,120,125,44,111,110,58,123,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,98,40,116,41,125,125,44,107,101,121,58,34,116,97,103,115,95,34,46,99,111,110,99,97,116,40,116,41,125,44,116,41,125,41,41,44,67,61,102,38,38,100,63,116,104,105,115,46,115,97,102,101,73,100,40,34,95,95,105,110,118,97,108,105,100,95,102,101,101,100,98,97,99,107,95,95,34,41,58,110,117,108,108,44,80,61,97,38,38,104,63,116,104,105,115,46,115,97,102,101,73,100,40,34,95,95,100,117,112,108,105,99,97,116,101,95,102,101,101,100,98,97,99,107,95,95,34,41,58,110,117,108,108,44,84,61,118,38,38,112,63,116,104,105,115,46,115,97,102,101,73,100,40,34,95,95,108,105,109,105,116,95,102,101,101,100,98,97,99,107,95,95,34,41,58,110,117,108,108,44,106,61,91,115,91,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,93,44,67,44,80,44,84,93,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,32,34,41,44,69,61,83,40,34,105,110,112,117,116,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,111,114,109,45,116,97,103,115,45,105,110,112,117,116,32,119,45,49,48,48,32,102,108,101,120,45,103,114,111,119,45,49,32,112,45,48,32,109,45,48,32,98,103,45,116,114,97,110,115,112,97,114,101,110,116,32,98,111,114,100,101,114,45,48,34,44,99,108,97,115,115,58,99,44,115,116,121,108,101,58,123,111,117,116,108,105,110,101,58,48,44,109,105,110,87,105,100,116,104,58,34,53,114,101,109,34,125,44,97,116,116,114,115,58,77,120,40,77,120,40,123,125,44,115,41,44,123,125,44,123,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,58,106,124,124,110,117,108,108,44,116,121,112,101,58,108,44,112,108,97,99,101,104,111,108,100,101,114,58,109,124,124,110,117,108,108,125,41,44,100,111,109,80,114,111,112,115,58,123,118,97,108,117,101,58,115,46,118,97,108,117,101,125,44,111,110,58,117,44,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,109,111,100,101,108,34,44,118,97,108,117,101,58,115,46,118,97,108,117,101,125,93,44,114,101,102,58,34,105,110,112,117,116,34,125,41,44,68,61,83,40,110,102,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,111,114,109,45,116,97,103,115,45,98,117,116,116,111,110,32,112,121,45,48,34,44,99,108,97,115,115,58,123,105,110,118,105,115,105,98,108,101,58,105,125,44,115,116,121,108,101,58,123,102,111,110,116,83,105,122,101,58,34,57,48,37,34,125,44,112,114,111,112,115,58,123,100,105,115,97,98,108,101,100,58,105,124,124,112,44,118,97,114,105,97,110,116,58,110,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,40,41,125,125,44,114,101,102,58,34,98,117,116,116,111,110,34,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,36,111,41,124,124,101,93,41,44,65,61,116,104,105,115,46,115,97,102,101,73,100,40,34,95,95,116,97,103,95,108,105,115,116,95,95,34,41,44,76,61,83,40,34,108,105,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,114,111,109,45,116,97,103,115,45,102,105,101,108,100,32,102,108,101,120,45,103,114,111,119,45,49,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,110,111,110,101,34,44,34,97,114,105,97,45,108,105,118,101,34,58,34,111,102,102,34,44,34,97,114,105,97,45,99,111,110,116,114,111,108,115,34,58,65,125,44,107,101,121,58,34,116,97,103,115,95,102,105,101,108,100,34,125,44,91,83,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,45,102,108,101,120,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,103,114,111,117,112,34,125,125,44,91,69,44,68,93,41,93,41,44,73,61,83,40,34,117,108,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,111,114,109,45,116,97,103,115,45,108,105,115,116,32,108,105,115,116,45,117,110,115,116,121,108,101,100,32,109,98,45,48,32,100,45,102,108,101,120,32,102,108,101,120,45,119,114,97,112,32,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,34,44,97,116,116,114,115,58,123,105,100,58,65,125,44,107,101,121,58,34,116,97,103,115,95,108,105,115,116,34,125,44,91,107,44,76,93,41,44,77,61,83,40,41,59,105,102,40,102,124,124,97,124,124,118,41,123,118,97,114,32,36,61,116,104,105,115,46,99,111,109,112,117,116,101,100,74,111,105,110,101,114,44,70,61,83,40,41,59,67,38,38,40,70,61,83,40,77,98,44,123,112,114,111,112,115,58,123,105,100,58,67,44,102,111,114,99,101,83,104,111,119,58,33,48,125,44,107,101,121,58,34,116,97,103,115,95,105,110,118,97,108,105,100,95,102,101,101,100,98,97,99,107,34,125,44,91,116,104,105,115,46,105,110,118,97,108,105,100,84,97,103,84,101,120,116,44,34,58,32,34,44,116,104,105,115,46,105,110,118,97,108,105,100,84,97,103,115,46,106,111,105,110,40,36,41,93,41,41,59,118,97,114,32,82,61,83,40,41,59,80,38,38,40,82,61,83,40,76,98,44,123,112,114,111,112,115,58,123,105,100,58,80,125,44,107,101,121,58,34,116,97,103,115,95,100,117,112,108,105,99,97,116,101,95,102,101,101,100,98,97,99,107,34,125,44,91,116,104,105,115,46,100,117,112,108,105,99,97,116,101,84,97,103,84,101,120,116,44,34,58,32,34,44,116,104,105,115,46,100,117,112,108,105,99,97,116,101,84,97,103,115,46,106,111,105,110,40,36,41,93,41,41,59,118,97,114,32,78,61,83,40,41,59,84,38,38,40,78,61,83,40,76,98,44,123,112,114,111,112,115,58,123,105,100,58,84,125,44,107,101,121,58,34,116,97,103,115,95,108,105,109,105,116,95,102,101,101,100,98,97,99,107,34,125,44,91,118,93,41,41,44,77,61,83,40,34,100,105,118,34,44,123,97,116,116,114,115,58,123,34,97,114,105,97,45,108,105,118,101,34,58,34,112,111,108,105,116,101,34,44,34,97,114,105,97,45,97,116,111,109,105,99,34,58,34,116,114,117,101,34,125,44,107,101,121,58,34,116,97,103,115,95,102,101,101,100,98,97,99,107,34,125,44,91,70,44,82,44,78,93,41,125,114,101,116,117,114,110,91,73,44,77,93,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,110,97,109,101,44,110,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,114,61,116,104,105,115,46,114,101,113,117,105,114,101,100,44,105,61,116,104,105,115,46,102,111,114,109,44,111,61,116,104,105,115,46,116,97,103,115,44,97,61,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,112,117,116,73,100,44,115,61,116,104,105,115,46,104,97,115,70,111,99,117,115,44,99,61,116,104,105,115,46,110,111,79,117,116,101,114,70,111,99,117,115,44,117,61,77,120,40,123,116,97,103,115,58,111,46,115,108,105,99,101,40,41,44,105,110,112,117,116,65,116,116,114,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,112,117,116,65,116,116,114,115,44,105,110,112,117,116,84,121,112,101,58,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,112,117,116,84,121,112,101,44,105,110,112,117,116,72,97,110,100,108,101,114,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,73,110,112,117,116,72,97,110,100,108,101,114,115,44,114,101,109,111,118,101,84,97,103,58,116,104,105,115,46,114,101,109,111,118,101,84,97,103,44,97,100,100,84,97,103,58,116,104,105,115,46,97,100,100,84,97,103,44,114,101,115,101,116,58,116,104,105,115,46,114,101,115,101,116,44,105,110,112,117,116,73,100,58,97,44,105,115,73,110,118,97,108,105,100,58,116,104,105,115,46,104,97,115,73,110,118,97,108,105,100,84,97,103,115,44,105,110,118,97,108,105,100,84,97,103,115,58,116,104,105,115,46,105,110,118,97,108,105,100,84,97,103,115,46,115,108,105,99,101,40,41,44,105,115,68,117,112,108,105,99,97,116,101,58,116,104,105,115,46,104,97,115,68,117,112,108,105,99,97,116,101,84,97,103,115,44,100,117,112,108,105,99,97,116,101,84,97,103,115,58,116,104,105,115,46,100,117,112,108,105,99,97,116,101,84,97,103,115,46,115,108,105,99,101,40,41,44,105,115,76,105,109,105,116,82,101,97,99,104,101,100,58,116,104,105,115,46,105,115,76,105,109,105,116,82,101,97,99,104,101,100,44,100,105,115,97,98,108,101,65,100,100,66,117,116,116,111,110,58,116,104,105,115,46,100,105,115,97,98,108,101,65,100,100,66,117,116,116,111,110,125,44,71,116,40,116,104,105,115,46,36,112,114,111,112,115,44,91,34,97,100,100,66,117,116,116,111,110,84,101,120,116,34,44,34,97,100,100,66,117,116,116,111,110,86,97,114,105,97,110,116,34,44,34,100,105,115,97,98,108,101,100,34,44,34,100,117,112,108,105,99,97,116,101,84,97,103,84,101,120,116,34,44,34,102,111,114,109,34,44,34,105,110,112,117,116,67,108,97,115,115,34,44,34,105,110,118,97,108,105,100,84,97,103,84,101,120,116,34,44,34,108,105,109,105,116,34,44,34,108,105,109,105,116,84,97,103,115,84,101,120,116,34,44,34,110,111,84,97,103,82,101,109,111,118,101,34,44,34,112,108,97,99,101,104,111,108,100,101,114,34,44,34,114,101,113,117,105,114,101,100,34,44,34,115,101,112,97,114,97,116,111,114,34,44,34,115,105,122,101,34,44,34,115,116,97,116,101,34,44,34,116,97,103,67,108,97,115,115,34,44,34,116,97,103,80,105,108,108,115,34,44,34,116,97,103,82,101,109,111,118,101,76,97,98,101,108,34,44,34,116,97,103,86,97,114,105,97,110,116,34,93,41,41,44,108,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,85,111,44,117,41,124,124,116,104,105,115,46,100,101,102,97,117,108,116,82,101,110,100,101,114,40,117,41,44,102,61,116,40,34,111,117,116,112,117,116,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,115,114,45,111,110,108,121,34,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,34,95,95,115,101,108,101,99,116,101,100,95,116,97,103,115,95,95,34,41,44,114,111,108,101,58,34,115,116,97,116,117,115,34,44,102,111,114,58,97,44,34,97,114,105,97,45,108,105,118,101,34,58,115,63,34,112,111,108,105,116,101,34,58,34,111,102,102,34,44,34,97,114,105,97,45,97,116,111,109,105,99,34,58,34,116,114,117,101,34,44,34,97,114,105,97,45,114,101,108,101,118,97,110,116,34,58,34,97,100,100,105,116,105,111,110,115,32,116,101,120,116,34,125,125,44,116,104,105,115,46,116,97,103,115,46,106,111,105,110,40,34,44,32,34,41,41,44,104,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,115,114,45,111,110,108,121,34,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,34,95,95,114,101,109,111,118,101,100,95,116,97,103,115,95,95,34,41,44,114,111,108,101,58,34,115,116,97,116,117,115,34,44,34,97,114,105,97,45,108,105,118,101,34,58,115,63,34,97,115,115,101,114,116,105,118,101,34,58,34,111,102,102,34,44,34,97,114,105,97,45,97,116,111,109,105,99,34,58,34,116,114,117,101,34,125,125,44,116,104,105,115,46,114,101,109,111,118,101,100,84,97,103,115,46,108,101,110,103,116,104,62,48,63,34,40,34,46,99,111,110,99,97,116,40,116,104,105,115,46,116,97,103,82,101,109,111,118,101,100,76,97,98,101,108,44,34,41,32,34,41,46,99,111,110,99,97,116,40,116,104,105,115,46,114,101,109,111,118,101,100,84,97,103,115,46,106,111,105,110,40,34,44,32,34,41,41,58,34,34,41,44,100,61,116,40,41,59,105,102,40,101,38,38,33,110,41,123,118,97,114,32,112,61,111,46,108,101,110,103,116,104,62,48,59,100,61,40,112,63,111,58,91,34,34,93,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,34,105,110,112,117,116,34,44,123,99,108,97,115,115,58,123,34,115,114,45,111,110,108,121,34,58,33,112,125,44,97,116,116,114,115,58,123,116,121,112,101,58,112,63,34,104,105,100,100,101,110,34,58,34,116,101,120,116,34,44,118,97,108,117,101,58,110,44,114,101,113,117,105,114,101,100,58,114,44,110,97,109,101,58,101,44,102,111,114,109,58,105,125,44,107,101,121,58,34,116,97,103,95,105,110,112,117,116,95,34,46,99,111,110,99,97,116,40,110,41,125,41,125,41,41,125,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,111,114,109,45,116,97,103,115,32,102,111,114,109,45,99,111,110,116,114,111,108,32,104,45,97,117,116,111,34,44,99,108,97,115,115,58,91,123,102,111,99,117,115,58,115,38,38,33,99,38,38,33,110,44,100,105,115,97,98,108,101,100,58,110,125,44,116,104,105,115,46,115,105,122,101,70,111,114,109,67,108,97,115,115,44,116,104,105,115,46,115,116,97,116,101,67,108,97,115,115,93,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,114,111,108,101,58,34,103,114,111,117,112,34,44,116,97,98,105,110,100,101,120,58,110,124,124,99,63,110,117,108,108,58,34,45,49,34,44,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,58,116,104,105,115,46,115,97,102,101,73,100,40,34,95,95,115,101,108,101,99,116,101,100,95,116,97,103,115,95,95,34,41,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,67,108,105,99,107,44,102,111,99,117,115,105,110,58,116,104,105,115,46,111,110,70,111,99,117,115,105,110,44,102,111,99,117,115,111,117,116,58,116,104,105,115,46,111,110,70,111,99,117,115,111,117,116,125,125,44,91,102,44,104,44,108,44,100,93,41,125,125,41,44,88,120,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,70,111,114,109,84,97,103,115,58,75,120,44,66,84,97,103,115,58,75,120,44,66,70,111,114,109,84,97,103,58,80,120,44,66,84,97,103,58,80,120,125,125,41,59,102,117,110,99,116,105,111,110,32,90,120,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,74,120,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,90,120,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,81,120,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,90,120,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,81,120,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,118,97,114,32,116,79,44,101,79,61,100,99,40,75,116,40,74,120,40,74,120,40,74,120,40,74,120,40,74,120,40,74,120,40,123,125,44,68,104,41,44,72,98,41,44,113,98,41,44,75,98,41,44,114,95,41,44,123,125,44,123,109,97,120,82,111,119,115,58,117,99,40,65,111,41,44,110,111,65,117,116,111,83,104,114,105,110,107,58,117,99,40,103,111,44,33,49,41,44,110,111,82,101,115,105,122,101,58,117,99,40,103,111,44,33,49,41,44,114,111,119,115,58,117,99,40,65,111,44,50,41,44,119,114,97,112,58,117,99,40,120,111,44,34,115,111,102,116,34,41,125,41,41,44,86,110,41,44,110,79,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,86,110,44,100,105,114,101,99,116,105,118,101,115,58,123,34,98,45,118,105,115,105,98,108,101,34,58,36,100,125,44,109,105,120,105,110,115,58,91,84,108,44,65,104,44,80,108,44,85,98,44,89,98,44,88,98,44,105,95,44,89,119,44,111,95,93,44,112,114,111,112,115,58,101,79,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,104,101,105,103,104,116,73,110,80,120,58,110,117,108,108,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,83,116,121,108,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,114,101,115,105,122,101,58,33,116,104,105,115,46,99,111,109,112,117,116,101,100,82,111,119,115,124,124,116,104,105,115,46,110,111,82,101,115,105,122,101,63,34,110,111,110,101,34,58,110,117,108,108,125,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,109,112,117,116,101,100,82,111,119,115,124,124,40,116,46,104,101,105,103,104,116,61,116,104,105,115,46,104,101,105,103,104,116,73,110,80,120,44,116,46,111,118,101,114,102,108,111,119,89,61,34,115,99,114,111,108,108,34,41,44,116,125,44,99,111,109,112,117,116,101,100,77,105,110,82,111,119,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,117,40,74,97,40,116,104,105,115,46,114,111,119,115,44,50,41,44,50,41,125,44,99,111,109,112,117,116,101,100,77,97,120,82,111,119,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,117,40,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,82,111,119,115,44,74,97,40,116,104,105,115,46,109,97,120,82,111,119,115,44,48,41,41,125,44,99,111,109,112,117,116,101,100,82,111,119,115,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,109,112,117,116,101,100,77,105,110,82,111,119,115,61,61,61,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,82,111,119,115,63,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,82,111,119,115,58,110,117,108,108,125,44,99,111,109,112,117,116,101,100,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,101,61,116,104,105,115,46,114,101,113,117,105,114,101,100,59,114,101,116,117,114,110,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,110,97,109,101,58,116,104,105,115,46,110,97,109,101,124,124,110,117,108,108,44,102,111,114,109,58,116,104,105,115,46,102,111,114,109,124,124,110,117,108,108,44,100,105,115,97,98,108,101,100,58,116,44,112,108,97,99,101,104,111,108,100,101,114,58,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,124,124,110,117,108,108,44,114,101,113,117,105,114,101,100,58,101,44,97,117,116,111,99,111,109,112,108,101,116,101,58,116,104,105,115,46,97,117,116,111,99,111,109,112,108,101,116,101,124,124,110,117,108,108,44,114,101,97,100,111,110,108,121,58,116,104,105,115,46,114,101,97,100,111,110,108,121,124,124,116,104,105,115,46,112,108,97,105,110,116,101,120,116,44,114,111,119,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,82,111,119,115,44,119,114,97,112,58,116,104,105,115,46,119,114,97,112,124,124,110,117,108,108,44,34,97,114,105,97,45,114,101,113,117,105,114,101,100,34,58,116,104,105,115,46,114,101,113,117,105,114,101,100,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,105,110,118,97,108,105,100,34,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,114,105,97,73,110,118,97,108,105,100,125,125,44,99,111,109,112,117,116,101,100,76,105,115,116,101,110,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,74,120,40,74,120,40,123,125,44,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,41,44,123,125,44,123,105,110,112,117,116,58,116,104,105,115,46,111,110,73,110,112,117,116,44,99,104,97,110,103,101,58,116,104,105,115,46,111,110,67,104,97,110,103,101,44,98,108,117,114,58,116,104,105,115,46,111,110,66,108,117,114,125,41,125,125,44,119,97,116,99,104,58,123,108,111,99,97,108,86,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,72,101,105,103,104,116,40,41,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,72,101,105,103,104,116,40,41,125,44,109,101,116,104,111,100,115,58,123,118,105,115,105,98,108,101,67,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,115,101,116,72,101,105,103,104,116,41,125,44,115,101,116,72,101,105,103,104,116,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,104,101,105,103,104,116,73,110,80,120,61,116,46,99,111,109,112,117,116,101,72,101,105,103,104,116,40,41,125,41,41,125,41,41,125,44,99,111,109,112,117,116,101,72,101,105,103,104,116,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,36,105,115,83,101,114,118,101,114,124,124,33,121,116,40,116,104,105,115,46,99,111,109,112,117,116,101,100,82,111,119,115,41,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,116,61,116,104,105,115,46,36,101,108,59,105,102,40,33,120,115,40,116,41,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,101,61,86,115,40,116,41,44,110,61,81,97,40,101,46,108,105,110,101,72,101,105,103,104,116,44,49,41,44,114,61,81,97,40,101,46,98,111,114,100,101,114,84,111,112,87,105,100,116,104,44,48,41,43,81,97,40,101,46,98,111,114,100,101,114,66,111,116,116,111,109,87,105,100,116,104,44,48,41,44,105,61,81,97,40,101,46,112,97,100,100,105,110,103,84,111,112,44,48,41,43,81,97,40,101,46,112,97,100,100,105,110,103,66,111,116,116,111,109,44,48,41,44,111,61,114,43,105,44,97,61,110,42,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,82,111,119,115,43,111,44,115,61,66,115,40,116,44,34,104,101,105,103,104,116,34,41,124,124,101,46,104,101,105,103,104,116,59,82,115,40,116,44,34,104,101,105,103,104,116,34,44,34,97,117,116,111,34,41,59,118,97,114,32,99,61,116,46,115,99,114,111,108,108,72,101,105,103,104,116,59,82,115,40,116,44,34,104,101,105,103,104,116,34,44,115,41,59,118,97,114,32,117,61,116,117,40,40,99,45,105,41,47,110,44,50,41,44,108,61,81,99,40,116,117,40,117,44,116,104,105,115,46,99,111,109,112,117,116,101,100,77,105,110,82,111,119,115,41,44,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,82,111,119,115,41,44,102,61,116,117,40,110,117,40,108,42,110,43,111,41,44,97,41,59,114,101,116,117,114,110,32,116,104,105,115,46,110,111,65,117,116,111,83,104,114,105,110,107,38,38,81,97,40,115,44,48,41,62,102,63,115,58,34,34,46,99,111,110,99,97,116,40,102,44,34,112,120,34,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,34,116,101,120,116,97,114,101,97,34,44,123,99,108,97,115,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,67,108,97,115,115,44,115,116,121,108,101,58,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,121,108,101,44,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,98,45,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,116,104,105,115,46,118,105,115,105,98,108,101,67,97,108,108,98,97,99,107,44,109,111,100,105,102,105,101,114,115,58,123,54,52,48,58,33,48,125,125,93,44,97,116,116,114,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,100,111,109,80,114,111,112,115,58,123,118,97,108,117,101,58,116,104,105,115,46,108,111,99,97,108,86,97,108,117,101,125,44,111,110,58,116,104,105,115,46,99,111,109,112,117,116,101,100,76,105,115,116,101,110,101,114,115,44,114,101,102,58,34,105,110,112,117,116,34,125,41,125,125,41,44,114,79,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,70,111,114,109,84,101,120,116,97,114,101,97,58,110,79,44,66,84,101,120,116,97,114,101,97,58,110,79,125,125,41,59,102,117,110,99,116,105,111,110,32,105,79,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,111,79,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,105,79,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,97,79,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,105,79,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,97,79,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,102,117,110,99,116,105,111,110,32,115,79,40,116,44,101,41,123,114,101,116,117,114,110,32,104,79,40,116,41,124,124,102,79,40,116,44,101,41,124,124,117,79,40,116,44,101,41,124,124,99,79,40,41,125,102,117,110,99,116,105,111,110,32,99,79,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,100,101,115,116,114,117,99,116,117,114,101,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,34,41,125,102,117,110,99,116,105,111,110,32,117,79,40,116,44,101,41,123,105,102,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,108,79,40,116,44,101,41,59,118,97,114,32,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,41,46,115,108,105,99,101,40,56,44,45,49,41,59,114,101,116,117,114,110,34,79,98,106,101,99,116,34,61,61,61,110,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,116,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,44,34,77,97,112,34,61,61,61,110,124,124,34,83,101,116,34,61,61,61,110,63,65,114,114,97,121,46,102,114,111,109,40,116,41,58,34,65,114,103,117,109,101,110,116,115,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,63,108,79,40,116,44,101,41,58,118,111,105,100,32,48,125,125,102,117,110,99,116,105,111,110,32,108,79,40,116,44,101,41,123,40,110,117,108,108,61,61,101,124,124,101,62,116,46,108,101,110,103,116,104,41,38,38,40,101,61,116,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,110,60,101,59,110,43,43,41,114,91,110,93,61,116,91,110,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,102,79,40,116,44,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,41,123,118,97,114,32,110,61,91,93,44,114,61,33,48,44,105,61,33,49,44,111,61,118,111,105,100,32,48,59,116,114,121,123,102,111,114,40,118,97,114,32,97,44,115,61,116,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,59,33,40,114,61,40,97,61,115,46,110,101,120,116,40,41,41,46,100,111,110,101,41,59,114,61,33,48,41,105,102,40,110,46,112,117,115,104,40,97,46,118,97,108,117,101,41,44,101,38,38,110,46,108,101,110,103,116,104,61,61,61,101,41,98,114,101,97,107,125,99,97,116,99,104,40,99,41,123,105,61,33,48,44,111,61,99,125,102,105,110,97,108,108,121,123,116,114,121,123,114,124,124,110,117,108,108,61,61,115,91,34,114,101,116,117,114,110,34,93,124,124,115,91,34,114,101,116,117,114,110,34,93,40,41,125,102,105,110,97,108,108,121,123,105,102,40,105,41,116,104,114,111,119,32,111,125,125,114,101,116,117,114,110,32,110,125,125,102,117,110,99,116,105,111,110,32,104,79,40,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,116,125,118,97,114,32,100,79,44,112,79,61,109,99,40,34,118,97,108,117,101,34,44,123,116,121,112,101,58,120,111,44,100,101,102,97,117,108,116,86,97,108,117,101,58,34,34,125,41,44,118,79,61,112,79,46,109,105,120,105,110,44,103,79,61,112,79,46,112,114,111,112,115,44,109,79,61,112,79,46,112,114,111,112,44,98,79,61,112,79,46,101,118,101,110,116,44,121,79,61,34,110,117,109,101,114,105,99,34,44,119,79,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,48,48,34,46,99,111,110,99,97,116,40,116,124,124,34,34,41,46,115,108,105,99,101,40,45,50,41,125,44,95,79,61,102,117,110,99,116,105,111,110,40,116,41,123,116,61,115,115,40,116,41,59,118,97,114,32,101,61,110,117,108,108,44,110,61,110,117,108,108,44,114,61,110,117,108,108,59,105,102,40,72,46,116,101,115,116,40,116,41,41,123,118,97,114,32,105,61,116,46,115,112,108,105,116,40,34,58,34,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,74,97,40,116,44,110,117,108,108,41,125,41,41,44,111,61,115,79,40,105,44,51,41,59,101,61,111,91,48,93,44,110,61,111,91,49,93,44,114,61,111,91,50,93,125,114,101,116,117,114,110,123,104,111,117,114,115,58,119,116,40,101,41,63,110,117,108,108,58,101,44,109,105,110,117,116,101,115,58,119,116,40,110,41,63,110,117,108,108,58,110,44,115,101,99,111,110,100,115,58,119,116,40,114,41,63,110,117,108,108,58,114,44,97,109,112,109,58,119,116,40,101,41,124,124,101,60,49,50,63,48,58,49,125,125,44,120,79,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,104,111,117,114,115,44,110,61,116,46,109,105,110,117,116,101,115,44,114,61,116,46,115,101,99,111,110,100,115,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,59,105,102,40,121,116,40,101,41,124,124,121,116,40,110,41,124,124,105,38,38,121,116,40,114,41,41,114,101,116,117,114,110,34,34,59,118,97,114,32,111,61,91,101,44,110,44,105,63,114,58,48,93,59,114,101,116,117,114,110,32,111,46,109,97,112,40,119,79,41,46,106,111,105,110,40,34,58,34,41,125,44,79,79,61,100,99,40,75,116,40,111,79,40,111,79,40,111,79,40,111,79,40,123,125,44,68,104,41,44,103,79,41,44,71,116,40,121,120,44,91,34,108,97,98,101,108,73,110,99,114,101,109,101,110,116,34,44,34,108,97,98,101,108,68,101,99,114,101,109,101,110,116,34,93,41,41,44,123,125,44,123,97,114,105,97,76,97,98,101,108,108,101,100,98,121,58,117,99,40,120,111,41,44,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,104,105,100,100,101,110,58,117,99,40,103,111,44,33,49,41,44,104,105,100,101,72,101,97,100,101,114,58,117,99,40,103,111,44,33,49,41,44,104,111,117,114,49,50,58,117,99,40,103,111,44,110,117,108,108,41,44,108,97,98,101,108,65,109,58,117,99,40,120,111,44,34,65,77,34,41,44,108,97,98,101,108,65,109,112,109,58,117,99,40,120,111,44,34,65,77,47,80,77,34,41,44,108,97,98,101,108,72,111,117,114,115,58,117,99,40,120,111,44,34,72,111,117,114,115,34,41,44,108,97,98,101,108,77,105,110,117,116,101,115,58,117,99,40,120,111,44,34,77,105,110,117,116,101,115,34,41,44,108,97,98,101,108,78,111,84,105,109,101,83,101,108,101,99,116,101,100,58,117,99,40,120,111,44,34,78,111,32,116,105,109,101,32,115,101,108,101,99,116,101,100,34,41,44,108,97,98,101,108,80,109,58,117,99,40,120,111,44,34,80,77,34,41,44,108,97,98,101,108,83,101,99,111,110,100,115,58,117,99,40,120,111,44,34,83,101,99,111,110,100,115,34,41,44,108,97,98,101,108,83,101,108,101,99,116,101,100,58,117,99,40,120,111,44,34,83,101,108,101,99,116,101,100,32,116,105,109,101,34,41,44,108,111,99,97,108,101,58,117,99,40,67,111,41,44,109,105,110,117,116,101,115,83,116,101,112,58,117,99,40,65,111,44,49,41,44,114,101,97,100,111,110,108,121,58,117,99,40,103,111,44,33,49,41,44,115,101,99,111,110,100,115,83,116,101,112,58,117,99,40,65,111,44,49,41,44,115,104,111,119,83,101,99,111,110,100,115,58,117,99,40,103,111,44,33,49,41,125,41,41,44,86,114,41,44,83,79,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,86,114,44,109,105,120,105,110,115,58,91,65,104,44,118,79,44,119,99,93,44,112,114,111,112,115,58,79,79,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,95,79,40,116,104,105,115,91,109,79,93,124,124,34,34,41,59,114,101,116,117,114,110,123,109,111,100,101,108,72,111,117,114,115,58,116,46,104,111,117,114,115,44,109,111,100,101,108,77,105,110,117,116,101,115,58,116,46,109,105,110,117,116,101,115,44,109,111,100,101,108,83,101,99,111,110,100,115,58,116,46,115,101,99,111,110,100,115,44,109,111,100,101,108,65,109,112,109,58,116,46,97,109,112,109,44,105,115,76,105,118,101,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,72,77,83,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,44,101,61,116,104,105,115,46,109,111,100,101,108,77,105,110,117,116,101,115,44,110,61,116,104,105,115,46,109,111,100,101,108,83,101,99,111,110,100,115,59,114,101,116,117,114,110,32,120,79,40,123,104,111,117,114,115,58,116,44,109,105,110,117,116,101,115,58,101,44,115,101,99,111,110,100,115,58,110,125,44,116,104,105,115,46,115,104,111,119,83,101,99,111,110,100,115,41,125,44,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,89,97,40,116,104,105,115,46,108,111,99,97,108,101,41,46,102,105,108,116,101,114,40,115,101,41,44,101,61,123,104,111,117,114,58,121,79,44,109,105,110,117,116,101,58,121,79,44,115,101,99,111,110,100,58,121,79,125,59,119,116,40,116,104,105,115,46,104,111,117,114,49,50,41,124,124,40,101,46,104,111,117,114,49,50,61,33,33,116,104,105,115,46,104,111,117,114,49,50,41,59,118,97,114,32,110,61,110,101,119,32,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,116,44,101,41,44,114,61,110,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,40,41,44,105,61,114,46,104,111,117,114,49,50,124,124,33,49,44,111,61,114,46,104,111,117,114,67,121,99,108,101,124,124,40,105,63,34,104,49,50,34,58,34,104,50,51,34,41,59,114,101,116,117,114,110,123,108,111,99,97,108,101,58,114,46,108,111,99,97,108,101,44,104,111,117,114,49,50,58,105,44,104,111,117,114,67,121,99,108,101,58,111,125,125,44,99,111,109,112,117,116,101,100,76,111,99,97,108,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,115,111,108,118,101,100,79,112,116,105,111,110,115,46,108,111,99,97,108,101,125,44,99,111,109,112,117,116,101,100,76,97,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,124,124,34,34,41,46,114,101,112,108,97,99,101,40,47,45,117,45,46,42,36,47,44,34,34,41,125,44,99,111,109,112,117,116,101,100,82,84,76,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,104,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,97,110,103,41,125,44,99,111,109,112,117,116,101,100,72,111,117,114,67,121,99,108,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,115,111,108,118,101,100,79,112,116,105,111,110,115,46,104,111,117,114,67,121,99,108,101,125,44,105,115,49,50,72,111,117,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,116,104,105,115,46,114,101,115,111,108,118,101,100,79,112,116,105,111,110,115,46,104,111,117,114,49,50,125,44,99,111,110,116,101,120,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,108,111,99,97,108,101,58,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,105,115,82,84,76,58,116,104,105,115,46,99,111,109,112,117,116,101,100,82,84,76,44,104,111,117,114,67,121,99,108,101,58,116,104,105,115,46,99,111,109,112,117,116,101,100,72,111,117,114,67,121,99,108,101,44,104,111,117,114,49,50,58,116,104,105,115,46,105,115,49,50,72,111,117,114,44,104,111,117,114,115,58,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,44,109,105,110,117,116,101,115,58,116,104,105,115,46,109,111,100,101,108,77,105,110,117,116,101,115,44,115,101,99,111,110,100,115,58,116,104,105,115,46,115,104,111,119,83,101,99,111,110,100,115,63,116,104,105,115,46,109,111,100,101,108,83,101,99,111,110,100,115,58,48,44,118,97,108,117,101,58,116,104,105,115,46,99,111,109,112,117,116,101,100,72,77,83,44,102,111,114,109,97,116,116,101,100,58,116,104,105,115,46,102,111,114,109,97,116,116,101,100,84,105,109,101,83,116,114,105,110,103,125,125,44,118,97,108,117,101,73,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,115,97,102,101,73,100,40,41,124,124,110,117,108,108,125,44,99,111,109,112,117,116,101,100,65,114,105,97,76,97,98,101,108,108,101,100,98,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,116,104,105,115,46,97,114,105,97,76,97,98,101,108,108,101,100,98,121,44,116,104,105,115,46,118,97,108,117,101,73,100,93,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,32,34,41,124,124,110,117,108,108,125,44,116,105,109,101,70,111,114,109,97,116,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,104,111,117,114,49,50,58,116,104,105,115,46,105,115,49,50,72,111,117,114,44,104,111,117,114,67,121,99,108,101,58,116,104,105,115,46,99,111,109,112,117,116,101,100,72,111,117,114,67,121,99,108,101,44,104,111,117,114,58,121,79,44,109,105,110,117,116,101,58,121,79,44,116,105,109,101,90,111,110,101,58,34,85,84,67,34,125,59,114,101,116,117,114,110,32,116,104,105,115,46,115,104,111,119,83,101,99,111,110,100,115,38,38,40,116,46,115,101,99,111,110,100,61,121,79,41,44,109,104,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,116,41,125,44,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,116,104,105,115,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,123,115,116,121,108,101,58,34,100,101,99,105,109,97,108,34,44,109,105,110,105,109,117,109,73,110,116,101,103,101,114,68,105,103,105,116,115,58,50,44,109,105,110,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,48,44,109,97,120,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,58,48,44,110,111,116,97,116,105,111,110,58,34,115,116,97,110,100,97,114,100,34,125,41,59,114,101,116,117,114,110,32,116,46,102,111,114,109,97,116,125,44,102,111,114,109,97,116,116,101,100,84,105,109,101,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,44,101,61,116,104,105,115,46,109,111,100,101,108,77,105,110,117,116,101,115,44,110,61,116,104,105,115,46,115,104,111,119,83,101,99,111,110,100,115,38,38,116,104,105,115,46,109,111,100,101,108,83,101,99,111,110,100,115,124,124,48,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,109,112,117,116,101,100,72,77,83,63,116,104,105,115,46,116,105,109,101,70,111,114,109,97,116,116,101,114,40,100,104,40,68,97,116,101,46,85,84,67,40,48,44,48,44,49,44,116,44,101,44,110,41,41,41,58,116,104,105,115,46,108,97,98,101,108,78,111,84,105,109,101,83,101,108,101,99,116,101,100,124,124,34,32,34,125,44,115,112,105,110,83,99,111,112,101,100,83,108,111,116,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,123,105,110,99,114,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,101,46,104,97,115,70,111,99,117,115,59,114,101,116,117,114,110,32,116,40,72,117,44,123,112,114,111,112,115,58,123,115,99,97,108,101,58,110,63,49,46,53,58,49,46,50,53,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,104,105,100,100,101,110,34,58,34,116,114,117,101,34,125,125,41,125,44,100,101,99,114,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,101,46,104,97,115,70,111,99,117,115,59,114,101,116,117,114,110,32,116,40,72,117,44,123,112,114,111,112,115,58,123,102,108,105,112,86,58,33,48,44,115,99,97,108,101,58,110,63,49,46,53,58,49,46,50,53,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,104,105,100,100,101,110,34,58,34,116,114,117,101,34,125,125,41,125,125,125,125,44,119,97,116,99,104,58,40,116,79,61,123,125,44,97,79,40,116,79,44,109,79,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,33,61,61,101,38,38,33,95,108,40,95,79,40,116,41,44,95,79,40,116,104,105,115,46,99,111,109,112,117,116,101,100,72,77,83,41,41,41,123,118,97,114,32,110,61,95,79,40,116,41,44,114,61,110,46,104,111,117,114,115,44,105,61,110,46,109,105,110,117,116,101,115,44,111,61,110,46,115,101,99,111,110,100,115,44,97,61,110,46,97,109,112,109,59,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,61,114,44,116,104,105,115,46,109,111,100,101,108,77,105,110,117,116,101,115,61,105,44,116,104,105,115,46,109,111,100,101,108,83,101,99,111,110,100,115,61,111,44,116,104,105,115,46,109,111,100,101,108,65,109,112,109,61,97,125,125,41,41,44,97,79,40,116,79,44,34,99,111,109,112,117,116,101,100,72,77,83,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,116,104,105,115,46,36,101,109,105,116,40,98,79,44,116,41,125,41,41,44,97,79,40,116,79,44,34,99,111,110,116,101,120,116,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,95,108,40,116,44,101,41,124,124,116,104,105,115,46,36,101,109,105,116,40,100,105,44,116,41,125,41,41,44,97,79,40,116,79,44,34,109,111,100,101,108,65,109,112,109,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,116,33,61,61,101,41,123,118,97,114,32,114,61,121,116,40,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,41,63,48,58,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,59,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,116,38,38,114,62,49,49,63,110,46,109,111,100,101,108,72,111,117,114,115,61,114,45,49,50,58,49,61,61,61,116,38,38,114,60,49,50,38,38,40,110,46,109,111,100,101,108,72,111,117,114,115,61,114,43,49,50,41,125,41,41,125,125,41,41,44,97,79,40,116,79,44,34,109,111,100,101,108,72,111,117,114,115,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,40,116,104,105,115,46,109,111,100,101,108,65,109,112,109,61,116,62,49,49,63,49,58,48,41,125,41,41,44,116,79,41,44,99,114,101,97,116,101,100,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,36,101,109,105,116,40,100,105,44,116,46,99,111,110,116,101,120,116,41,125,41,41,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,76,105,118,101,40,33,48,41,125,44,97,99,116,105,118,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,76,105,118,101,40,33,48,41,125,44,100,101,97,99,116,105,118,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,76,105,118,101,40,33,49,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,76,105,118,101,40,33,49,41,125,44,109,101,116,104,111,100,115,58,123,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,113,115,40,116,104,105,115,46,36,114,101,102,115,46,115,112,105,110,110,101,114,115,91,48,93,41,125,44,98,108,117,114,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,41,123,118,97,114,32,116,61,121,115,40,41,59,106,115,40,116,104,105,115,46,36,101,108,44,116,41,38,38,89,115,40,116,41,125,125,44,102,111,114,109,97,116,72,111,117,114,115,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,109,112,117,116,101,100,72,111,117,114,67,121,99,108,101,59,114,101,116,117,114,110,32,116,61,116,104,105,115,46,105,115,49,50,72,111,117,114,38,38,116,62,49,50,63,116,45,49,50,58,116,44,116,61,48,61,61,61,116,38,38,34,104,49,50,34,61,61,61,101,63,49,50,58,48,61,61,61,116,38,38,34,104,50,52,34,61,61,61,101,63,50,52,58,49,50,61,61,61,116,38,38,34,104,49,49,34,61,61,61,101,63,48,58,116,44,116,104,105,115,46,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,40,116,41,125,44,102,111,114,109,97,116,77,105,110,117,116,101,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,40,116,41,125,44,102,111,114,109,97,116,83,101,99,111,110,100,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,40,116,41,125,44,102,111,114,109,97,116,65,109,112,109,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,48,61,61,61,116,63,116,104,105,115,46,108,97,98,101,108,65,109,58,49,61,61,61,116,63,116,104,105,115,46,108,97,98,101,108,80,109,58,34,34,125,44,115,101,116,72,111,117,114,115,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,61,116,125,44,115,101,116,77,105,110,117,116,101,115,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,109,111,100,101,108,77,105,110,117,116,101,115,61,116,125,44,115,101,116,83,101,99,111,110,100,115,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,109,111,100,101,108,83,101,99,111,110,100,115,61,116,125,44,115,101,116,65,109,112,109,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,109,111,100,101,108,65,109,112,109,61,116,125,44,111,110,83,112,105,110,76,101,102,116,82,105,103,104,116,58,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,123,125,44,101,61,116,46,116,121,112,101,44,110,61,116,46,107,101,121,67,111,100,101,59,105,102,40,33,116,104,105,115,46,100,105,115,97,98,108,101,100,38,38,34,107,101,121,100,111,119,110,34,61,61,61,101,38,38,40,110,61,61,61,112,108,124,124,110,61,61,61,109,108,41,41,123,107,99,40,116,41,59,118,97,114,32,114,61,116,104,105,115,46,36,114,101,102,115,46,115,112,105,110,110,101,114,115,124,124,91,93,44,105,61,114,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,33,116,46,104,97,115,70,111,99,117,115,125,41,41,46,105,110,100,101,120,79,102,40,33,48,41,59,105,43,61,110,61,61,61,112,108,63,45,49,58,49,44,105,61,105,62,61,114,46,108,101,110,103,116,104,63,48,58,105,60,48,63,114,46,108,101,110,103,116,104,45,49,58,105,44,113,115,40,114,91,105,93,41,125,125,44,115,101,116,76,105,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,116,63,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,105,115,76,105,118,101,61,33,48,125,41,41,125,41,41,58,116,104,105,115,46,105,115,76,105,118,101,61,33,49,125,125,44,114,101,110,100,101,114,58,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,104,105,115,46,104,105,100,100,101,110,41,114,101,116,117,114,110,32,116,40,41,59,118,97,114,32,110,61,116,104,105,115,46,118,97,108,117,101,73,100,44,114,61,116,104,105,115,46,99,111,109,112,117,116,101,100,65,114,105,97,76,97,98,101,108,108,101,100,98,121,44,105,61,91,93,44,111,61,102,117,110,99,116,105,111,110,40,114,44,111,44,97,41,123,118,97,114,32,115,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,51,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,123,125,44,99,61,101,46,115,97,102,101,73,100,40,34,95,115,112,105,110,98,117,116,116,111,110,95,34,46,99,111,110,99,97,116,40,111,44,34,95,34,41,41,124,124,110,117,108,108,59,114,101,116,117,114,110,32,105,46,112,117,115,104,40,99,41,44,116,40,119,120,44,123,99,108,97,115,115,58,97,44,112,114,111,112,115,58,111,79,40,123,105,100,58,99,44,112,108,97,99,101,104,111,108,100,101,114,58,34,45,45,34,44,118,101,114,116,105,99,97,108,58,33,48,44,114,101,113,117,105,114,101,100,58,33,48,44,100,105,115,97,98,108,101,100,58,101,46,100,105,115,97,98,108,101,100,44,114,101,97,100,111,110,108,121,58,101,46,114,101,97,100,111,110,108,121,44,108,111,99,97,108,101,58,101,46,99,111,109,112,117,116,101,100,76,111,99,97,108,101,44,108,97,98,101,108,73,110,99,114,101,109,101,110,116,58,101,46,108,97,98,101,108,73,110,99,114,101,109,101,110,116,44,108,97,98,101,108,68,101,99,114,101,109,101,110,116,58,101,46,108,97,98,101,108,68,101,99,114,101,109,101,110,116,44,119,114,97,112,58,33,48,44,97,114,105,97,67,111,110,116,114,111,108,115,58,110,44,109,105,110,58,48,125,44,115,41,44,115,99,111,112,101,100,83,108,111,116,115,58,101,46,115,112,105,110,83,99,111,112,101,100,83,108,111,116,115,44,111,110,58,123,99,104,97,110,103,101,58,114,125,44,107,101,121,58,111,44,114,101,102,58,34,115,112,105,110,110,101,114,115,34,44,114,101,102,73,110,70,111,114,58,33,48,125,41,125,44,97,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,45,102,108,101,120,32,102,108,101,120,45,99,111,108,117,109,110,34,44,99,108,97,115,115,58,123,34,116,101,120,116,45,109,117,116,101,100,34,58,101,46,100,105,115,97,98,108,101,100,124,124,101,46,114,101,97,100,111,110,108,121,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,104,105,100,100,101,110,34,58,34,116,114,117,101,34,125,125,44,91,116,40,85,117,44,123,112,114,111,112,115,58,123,115,104,105,102,116,86,58,52,44,115,99,97,108,101,58,46,53,125,125,41,44,116,40,85,117,44,123,112,114,111,112,115,58,123,115,104,105,102,116,86,58,45,52,44,115,99,97,108,101,58,46,53,125,125,41,93,41,125,44,115,61,91,93,59,115,46,112,117,115,104,40,111,40,116,104,105,115,46,115,101,116,72,111,117,114,115,44,34,104,111,117,114,115,34,44,34,98,45,116,105,109,101,45,104,111,117,114,115,34,44,123,118,97,108,117,101,58,116,104,105,115,46,109,111,100,101,108,72,111,117,114,115,44,109,97,120,58,50,51,44,115,116,101,112,58,49,44,102,111,114,109,97,116,116,101,114,70,110,58,116,104,105,115,46,102,111,114,109,97,116,72,111,117,114,115,44,97,114,105,97,76,97,98,101,108,58,116,104,105,115,46,108,97,98,101,108,72,111,117,114,115,125,41,41,44,115,46,112,117,115,104,40,97,40,41,41,44,115,46,112,117,115,104,40,111,40,116,104,105,115,46,115,101,116,77,105,110,117,116,101,115,44,34,109,105,110,117,116,101,115,34,44,34,98,45,116,105,109,101,45,109,105,110,117,116,101,115,34,44,123,118,97,108,117,101,58,116,104,105,115,46,109,111,100,101,108,77,105,110,117,116,101,115,44,109,97,120,58,53,57,44,115,116,101,112,58,116,104,105,115,46,109,105,110,117,116,101,115,83,116,101,112,124,124,49,44,102,111,114,109,97,116,116,101,114,70,110,58,116,104,105,115,46,102,111,114,109,97,116,77,105,110,117,116,101,115,44,97,114,105,97,76,97,98,101,108,58,116,104,105,115,46,108,97,98,101,108,77,105,110,117,116,101,115,125,41,41,44,116,104,105,115,46,115,104,111,119,83,101,99,111,110,100,115,38,38,40,115,46,112,117,115,104,40,97,40,41,41,44,115,46,112,117,115,104,40,111,40,116,104,105,115,46,115,101,116,83,101,99,111,110,100,115,44,34,115,101,99,111,110,100,115,34,44,34,98,45,116,105,109,101,45,115,101,99,111,110,100,115,34,44,123,118,97,108,117,101,58,116,104,105,115,46,109,111,100,101,108,83,101,99,111,110,100,115,44,109,97,120,58,53,57,44,115,116,101,112,58,116,104,105,115,46,115,101,99,111,110,100,115,83,116,101,112,124,124,49,44,102,111,114,109,97,116,116,101,114,70,110,58,116,104,105,115,46,102,111,114,109,97,116,83,101,99,111,110,100,115,44,97,114,105,97,76,97,98,101,108,58,116,104,105,115,46,108,97,98,101,108,83,101,99,111,110,100,115,125,41,41,41,44,116,104,105,115,46,105,115,49,50,72,111,117,114,38,38,115,46,112,117,115,104,40,111,40,116,104,105,115,46,115,101,116,65,109,112,109,44,34,97,109,112,109,34,44,34,98,45,116,105,109,101,45,97,109,112,109,34,44,123,118,97,108,117,101,58,116,104,105,115,46,109,111,100,101,108,65,109,112,109,44,109,97,120,58,49,44,102,111,114,109,97,116,116,101,114,70,110,58,116,104,105,115,46,102,111,114,109,97,116,65,109,112,109,44,97,114,105,97,76,97,98,101,108,58,116,104,105,115,46,108,97,98,101,108,65,109,112,109,44,114,101,113,117,105,114,101,100,58,33,49,125,41,41,44,115,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,45,102,108,101,120,32,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,32,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,32,109,120,45,97,117,116,111,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,103,114,111,117,112,34,44,116,97,98,105,110,100,101,120,58,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,104,105,115,46,114,101,97,100,111,110,108,121,63,110,117,108,108,58,34,45,49,34,44,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,58,114,125,44,111,110,58,123,107,101,121,100,111,119,110,58,116,104,105,115,46,111,110,83,112,105,110,76,101,102,116,82,105,103,104,116,44,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,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,101,46,102,111,99,117,115,40,41,125,125,125,44,115,41,59,118,97,114,32,99,61,116,40,34,111,117,116,112,117,116,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,111,114,109,45,99,111,110,116,114,111,108,32,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,32,116,101,120,116,45,99,101,110,116,101,114,34,44,99,108,97,115,115,58,123,100,105,115,97,98,108,101,100,58,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,104,105,115,46,114,101,97,100,111,110,108,121,125,44,97,116,116,114,115,58,123,105,100,58,110,44,114,111,108,101,58,34,115,116,97,116,117,115,34,44,102,111,114,58,105,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,32,34,41,124,124,110,117,108,108,44,116,97,98,105,110,100,101,120,58,116,104,105,115,46,100,105,115,97,98,108,101,100,63,110,117,108,108,58,34,45,49,34,44,34,97,114,105,97,45,108,105,118,101,34,58,116,104,105,115,46,105,115,76,105,118,101,63,34,112,111,108,105,116,101,34,58,34,111,102,102,34,44,34,97,114,105,97,45,97,116,111,109,105,99,34,58,34,116,114,117,101,34,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,102,111,99,117,115,44,102,111,99,117,115,58,116,104,105,115,46,102,111,99,117,115,125,125,44,91,116,40,34,98,100,105,34,44,116,104,105,115,46,102,111,114,109,97,116,116,101,100,84,105,109,101,83,116,114,105,110,103,41,44,116,104,105,115,46,99,111,109,112,117,116,101,100,72,77,83,63,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,115,114,45,111,110,108,121,34,125,44,34,32,40,34,46,99,111,110,99,97,116,40,116,104,105,115,46,108,97,98,101,108,83,101,108,101,99,116,101,100,44,34,41,32,34,41,41,58,34,34,93,41,44,117,61,116,40,34,104,101,97,100,101,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,116,105,109,101,45,104,101,97,100,101,114,34,44,99,108,97,115,115,58,123,34,115,114,45,111,110,108,121,34,58,116,104,105,115,46,104,105,100,101,72,101,97,100,101,114,125,125,44,91,99,93,41,44,108,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,59,114,101,116,117,114,110,32,108,61,108,63,116,40,34,102,111,111,116,101,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,116,105,109,101,45,102,111,111,116,101,114,34,125,44,108,41,58,116,40,41,44,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,116,105,109,101,32,100,45,105,110,108,105,110,101,45,102,108,101,120,32,102,108,101,120,45,99,111,108,117,109,110,32,116,101,120,116,45,99,101,110,116,101,114,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,103,114,111,117,112,34,44,108,97,110,103,58,116,104,105,115,46,99,111,109,112,117,116,101,100,76,97,110,103,124,124,110,117,108,108,44,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,58,114,124,124,110,117,108,108,44,34,97,114,105,97,45,100,105,115,97,98,108,101,100,34,58,116,104,105,115,46,100,105,115,97,98,108,101,100,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,114,101,97,100,111,110,108,121,34,58,116,104,105,115,46,114,101,97,100,111,110,108,121,38,38,33,116,104,105,115,46,100,105,115,97,98,108,101,100,63,34,116,114,117,101,34,58,110,117,108,108,125,125,44,91,117,44,115,44,108,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,107,79,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,67,79,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,107,79,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,80,79,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,107,79,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,80,79,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,118,97,114,32,84,79,61,109,99,40,34,118,97,108,117,101,34,44,123,116,121,112,101,58,120,111,44,100,101,102,97,117,108,116,86,97,108,117,101,58,34,34,125,41,44,106,79,61,84,79,46,109,105,120,105,110,44,69,79,61,84,79,46,112,114,111,112,115,44,68,79,61,84,79,46,112,114,111,112,44,65,79,61,84,79,46,101,118,101,110,116,44,76,79,61,113,116,40,79,79,44,91,34,104,105,100,100,101,110,34,44,34,105,100,34,44,34,118,97,108,117,101,34,93,41,44,73,79,61,113,116,40,88,121,44,91,34,102,111,114,109,97,116,116,101,100,86,97,108,117,101,34,44,34,105,100,34,44,34,108,97,110,103,34,44,34,114,116,108,34,44,34,118,97,108,117,101,34,93,41,44,77,79,61,100,99,40,75,116,40,67,79,40,67,79,40,67,79,40,67,79,40,67,79,40,123,125,44,68,104,41,44,69,79,41,44,76,79,41,44,73,79,41,44,123,125,44,123,99,108,111,115,101,66,117,116,116,111,110,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,34,41,44,108,97,98,101,108,67,108,111,115,101,66,117,116,116,111,110,58,117,99,40,120,111,44,34,67,108,111,115,101,34,41,44,108,97,98,101,108,78,111,119,66,117,116,116,111,110,58,117,99,40,120,111,44,34,83,101,108,101,99,116,32,110,111,119,34,41,44,108,97,98,101,108,82,101,115,101,116,66,117,116,116,111,110,58,117,99,40,120,111,44,34,82,101,115,101,116,34,41,44,110,111,67,108,111,115,101,66,117,116,116,111,110,58,117,99,40,103,111,44,33,49,41,44,110,111,119,66,117,116,116,111,110,58,117,99,40,103,111,44,33,49,41,44,110,111,119,66,117,116,116,111,110,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,34,41,44,114,101,115,101,116,66,117,116,116,111,110,58,117,99,40,103,111,44,33,49,41,44,114,101,115,101,116,66,117,116,116,111,110,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,111,117,116,108,105,110,101,45,100,97,110,103,101,114,34,41,44,114,101,115,101,116,86,97,108,117,101,58,117,99,40,69,111,41,125,41,41,44,72,110,41,44,36,79,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,72,110,44,109,105,120,105,110,115,58,91,65,104,44,106,79,93,44,112,114,111,112,115,58,77,79,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,108,111,99,97,108,72,77,83,58,116,104,105,115,91,68,79,93,124,124,34,34,44,108,111,99,97,108,76,111,99,97,108,101,58,110,117,108,108,44,105,115,82,84,76,58,33,49,44,102,111,114,109,97,116,116,101,100,86,97,108,117,101,58,34,34,44,105,115,86,105,115,105,98,108,101,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,76,97,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,116,104,105,115,46,108,111,99,97,108,76,111,99,97,108,101,124,124,34,34,41,46,114,101,112,108,97,99,101,40,47,45,117,45,46,42,36,47,105,44,34,34,41,124,124,110,117,108,108,125,125,44,119,97,116,99,104,58,40,100,79,61,123,125,44,80,79,40,100,79,44,68,79,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,108,111,99,97,108,72,77,83,61,116,124,124,34,34,125,41,41,44,80,79,40,100,79,44,34,108,111,99,97,108,72,77,83,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,105,115,86,105,115,105,98,108,101,38,38,116,104,105,115,46,36,101,109,105,116,40,65,79,44,116,124,124,34,34,41,125,41,41,44,100,79,41,44,109,101,116,104,111,100,115,58,123,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,113,115,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,41,125,44,98,108,117,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,89,115,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,41,125,44,115,101,116,65,110,100,67,108,111,115,101,58,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,108,111,99,97,108,72,77,83,61,116,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,36,114,101,102,115,46,99,111,110,116,114,111,108,46,104,105,100,101,40,33,48,41,125,41,41,125,44,111,110,73,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,108,111,99,97,108,72,77,83,33,61,61,116,38,38,40,116,104,105,115,46,108,111,99,97,108,72,77,83,61,116,41,125,44,111,110,67,111,110,116,101,120,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,115,82,84,76,44,110,61,116,46,108,111,99,97,108,101,44,114,61,116,46,118,97,108,117,101,44,105,61,116,46,102,111,114,109,97,116,116,101,100,59,116,104,105,115,46,105,115,82,84,76,61,101,44,116,104,105,115,46,108,111,99,97,108,76,111,99,97,108,101,61,110,44,116,104,105,115,46,102,111,114,109,97,116,116,101,100,86,97,108,117,101,61,105,44,116,104,105,115,46,108,111,99,97,108,72,77,83,61,114,124,124,34,34,44,116,104,105,115,46,36,101,109,105,116,40,100,105,44,116,41,125,44,111,110,78,111,119,66,117,116,116,111,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,68,97,116,101,44,101,61,116,46,103,101,116,72,111,117,114,115,40,41,44,110,61,116,46,103,101,116,77,105,110,117,116,101,115,40,41,44,114,61,116,104,105,115,46,115,104,111,119,83,101,99,111,110,100,115,63,116,46,103,101,116,83,101,99,111,110,100,115,40,41,58,48,44,105,61,91,101,44,110,44,114,93,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,48,48,34,46,99,111,110,99,97,116,40,116,124,124,34,34,41,46,115,108,105,99,101,40,45,50,41,125,41,41,46,106,111,105,110,40,34,58,34,41,59,116,104,105,115,46,115,101,116,65,110,100,67,108,111,115,101,40,105,41,125,44,111,110,82,101,115,101,116,66,117,116,116,111,110,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,65,110,100,67,108,111,115,101,40,116,104,105,115,46,114,101,115,101,116,86,97,108,117,101,41,125,44,111,110,67,108,111,115,101,66,117,116,116,111,110,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,114,111,108,46,104,105,100,101,40,33,48,41,125,44,111,110,83,104,111,119,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,86,105,115,105,98,108,101,61,33,48,125,44,111,110,83,104,111,119,110,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,113,115,40,116,46,36,114,101,102,115,46,116,105,109,101,41,44,116,46,36,101,109,105,116,40,74,105,41,125,41,41,125,44,111,110,72,105,100,100,101,110,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,86,105,115,105,98,108,101,61,33,49,44,116,104,105,115,46,36,101,109,105,116,40,80,105,41,125,44,100,101,102,97,117,108,116,66,117,116,116,111,110,70,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,115,72,111,118,101,114,101,100,44,110,61,116,46,104,97,115,70,111,99,117,115,59,114,101,116,117,114,110,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,101,124,124,110,63,71,117,58,87,117,44,123,97,116,116,114,115,58,123,34,97,114,105,97,45,104,105,100,100,101,110,34,58,34,116,114,117,101,34,125,125,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,108,111,99,97,108,72,77,83,44,110,61,116,104,105,115,46,100,105,115,97,98,108,101,100,44,114,61,116,104,105,115,46,114,101,97,100,111,110,108,121,44,105,61,116,104,105,115,46,36,112,114,111,112,115,44,111,61,119,116,40,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,41,63,116,104,105,115,46,108,97,98,101,108,78,111,84,105,109,101,83,101,108,101,99,116,101,100,58,116,104,105,115,46,112,108,97,99,101,104,111,108,100,101,114,44,97,61,91,93,59,105,102,40,116,104,105,115,46,110,111,119,66,117,116,116,111,110,41,123,118,97,114,32,115,61,116,104,105,115,46,108,97,98,101,108,78,111,119,66,117,116,116,111,110,59,97,46,112,117,115,104,40,116,40,110,102,44,123,112,114,111,112,115,58,123,115,105,122,101,58,34,115,109,34,44,100,105,115,97,98,108,101,100,58,110,124,124,114,44,118,97,114,105,97,110,116,58,116,104,105,115,46,110,111,119,66,117,116,116,111,110,86,97,114,105,97,110,116,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,115,124,124,110,117,108,108,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,78,111,119,66,117,116,116,111,110,125,44,107,101,121,58,34,110,111,119,45,98,116,110,34,125,44,115,41,41,125,105,102,40,116,104,105,115,46,114,101,115,101,116,66,117,116,116,111,110,41,123,97,46,108,101,110,103,116,104,62,48,38,38,97,46,112,117,115,104,40,116,40,34,115,112,97,110,34,44,34,194,160,34,41,41,59,118,97,114,32,99,61,116,104,105,115,46,108,97,98,101,108,82,101,115,101,116,66,117,116,116,111,110,59,97,46,112,117,115,104,40,116,40,110,102,44,123,112,114,111,112,115,58,123,115,105,122,101,58,34,115,109,34,44,100,105,115,97,98,108,101,100,58,110,124,124,114,44,118,97,114,105,97,110,116,58,116,104,105,115,46,114,101,115,101,116,66,117,116,116,111,110,86,97,114,105,97,110,116,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,99,124,124,110,117,108,108,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,82,101,115,101,116,66,117,116,116,111,110,125,44,107,101,121,58,34,114,101,115,101,116,45,98,116,110,34,125,44,99,41,41,125,105,102,40,33,116,104,105,115,46,110,111,67,108,111,115,101,66,117,116,116,111,110,41,123,97,46,108,101,110,103,116,104,62,48,38,38,97,46,112,117,115,104,40,116,40,34,115,112,97,110,34,44,34,194,160,34,41,41,59,118,97,114,32,117,61,116,104,105,115,46,108,97,98,101,108,67,108,111,115,101,66,117,116,116,111,110,59,97,46,112,117,115,104,40,116,40,110,102,44,123,112,114,111,112,115,58,123,115,105,122,101,58,34,115,109,34,44,100,105,115,97,98,108,101,100,58,110,44,118,97,114,105,97,110,116,58,116,104,105,115,46,99,108,111,115,101,66,117,116,116,111,110,86,97,114,105,97,110,116,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,117,124,124,110,117,108,108,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,67,108,111,115,101,66,117,116,116,111,110,125,44,107,101,121,58,34,99,108,111,115,101,45,98,116,110,34,125,44,117,41,41,125,97,46,108,101,110,103,116,104,62,48,38,38,40,97,61,91,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,111,114,109,45,100,97,116,101,45,99,111,110,116,114,111,108,115,32,100,45,102,108,101,120,32,102,108,101,120,45,119,114,97,112,34,44,99,108,97,115,115,58,123,34,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,34,58,97,46,108,101,110,103,116,104,62,49,44,34,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,101,110,100,34,58,97,46,108,101,110,103,116,104,60,50,125,125,44,97,41,93,41,59,118,97,114,32,108,61,116,40,83,79,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,111,114,109,45,116,105,109,101,45,99,111,110,116,114,111,108,34,44,112,114,111,112,115,58,67,79,40,67,79,40,123,125,44,102,99,40,76,79,44,105,41,41,44,123,125,44,123,118,97,108,117,101,58,101,44,104,105,100,100,101,110,58,33,116,104,105,115,46,105,115,86,105,115,105,98,108,101,125,41,44,111,110,58,123,105,110,112,117,116,58,116,104,105,115,46,111,110,73,110,112,117,116,44,99,111,110,116,101,120,116,58,116,104,105,115,46,111,110,67,111,110,116,101,120,116,125,44,114,101,102,58,34,116,105,109,101,34,125,44,97,41,59,114,101,116,117,114,110,32,116,40,90,121,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,102,111,114,109,45,116,105,109,101,112,105,99,107,101,114,34,44,112,114,111,112,115,58,67,79,40,67,79,40,123,125,44,102,99,40,73,79,44,105,41,41,44,123,125,44,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,118,97,108,117,101,58,101,44,102,111,114,109,97,116,116,101,100,86,97,108,117,101,58,101,63,116,104,105,115,46,102,111,114,109,97,116,116,101,100,86,97,108,117,101,58,34,34,44,112,108,97,99,101,104,111,108,100,101,114,58,111,44,114,116,108,58,116,104,105,115,46,105,115,82,84,76,44,108,97,110,103,58,116,104,105,115,46,99,111,109,112,117,116,101,100,76,97,110,103,125,41,44,111,110,58,123,115,104,111,119,58,116,104,105,115,46,111,110,83,104,111,119,44,115,104,111,119,110,58,116,104,105,115,46,111,110,83,104,111,119,110,44,104,105,100,100,101,110,58,116,104,105,115,46,111,110,72,105,100,100,101,110,125,44,115,99,111,112,101,100,83,108,111,116,115,58,80,79,40,123,125,44,122,111,44,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,91,122,111,93,124,124,116,104,105,115,46,100,101,102,97,117,108,116,66,117,116,116,111,110,70,110,41,44,114,101,102,58,34,99,111,110,116,114,111,108,34,125,44,91,108,93,41,125,125,41,44,70,79,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,70,111,114,109,84,105,109,101,112,105,99,107,101,114,58,36,79,44,66,84,105,109,101,112,105,99,107,101,114,58,36,79,125,125,41,44,82,79,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,73,109,103,58,112,100,44,66,73,109,103,76,97,122,121,58,85,100,125,125,41,44,78,79,61,100,99,40,123,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,125,44,81,110,41,44,66,79,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,81,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,78,79,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,110,46,116,97,103,44,36,101,40,114,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,34,125,41,44,105,41,125,125,41,44,122,79,61,100,99,40,123,97,112,112,101,110,100,58,117,99,40,103,111,44,33,49,41,44,105,100,58,117,99,40,120,111,41,44,105,115,84,101,120,116,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,125,44,88,110,41,44,86,79,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,88,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,122,79,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,110,46,97,112,112,101,110,100,59,114,101,116,117,114,110,32,116,40,110,46,116,97,103,44,36,101,40,114,44,123,99,108,97,115,115,58,123,34,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,34,58,111,44,34,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,34,58,33,111,125,44,97,116,116,114,115,58,123,105,100,58,110,46,105,100,125,125,41,44,110,46,105,115,84,101,120,116,63,91,116,40,66,79,44,105,41,93,58,105,41,125,125,41,59,102,117,110,99,116,105,111,110,32,72,79,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,85,79,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,72,79,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,87,79,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,72,79,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,87,79,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,118,97,114,32,71,79,61,100,99,40,113,116,40,122,79,44,91,34,97,112,112,101,110,100,34,93,41,44,90,110,41,44,113,79,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,90,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,71,79,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,86,79,44,36,101,40,114,44,123,112,114,111,112,115,58,85,79,40,85,79,40,123,125,44,110,41,44,123,125,44,123,97,112,112,101,110,100,58,33,48,125,41,125,41,44,105,41,125,125,41,59,102,117,110,99,116,105,111,110,32,89,79,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,75,79,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,89,79,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,88,79,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,89,79,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,88,79,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,118,97,114,32,90,79,61,100,99,40,113,116,40,122,79,44,91,34,97,112,112,101,110,100,34,93,41,44,74,110,41,44,74,79,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,74,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,90,79,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,86,79,44,36,101,40,114,44,123,112,114,111,112,115,58,75,79,40,75,79,40,123,125,44,110,41,44,123,125,44,123,97,112,112,101,110,100,58,33,49,125,41,125,41,44,105,41,125,125,41,59,102,117,110,99,116,105,111,110,32,81,79,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,118,97,114,32,116,83,61,100,99,40,123,97,112,112,101,110,100,58,117,99,40,120,111,41,44,97,112,112,101,110,100,72,116,109,108,58,117,99,40,120,111,41,44,105,100,58,117,99,40,120,111,41,44,112,114,101,112,101,110,100,58,117,99,40,120,111,41,44,112,114,101,112,101,110,100,72,116,109,108,58,117,99,40,120,111,41,44,115,105,122,101,58,117,99,40,120,111,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,125,44,75,110,41,44,101,83,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,75,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,116,83,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,115,108,111,116,115,44,111,61,101,46,115,99,111,112,101,100,83,108,111,116,115,44,97,61,110,46,112,114,101,112,101,110,100,44,115,61,110,46,112,114,101,112,101,110,100,72,116,109,108,44,99,61,110,46,97,112,112,101,110,100,44,117,61,110,46,97,112,112,101,110,100,72,116,109,108,44,108,61,110,46,115,105,122,101,44,102,61,111,124,124,123,125,44,104,61,105,40,41,44,100,61,123,125,44,112,61,116,40,41,44,118,61,98,99,40,65,97,44,102,44,104,41,59,40,118,124,124,97,124,124,115,41,38,38,40,112,61,116,40,74,79,44,91,118,63,121,99,40,65,97,44,100,44,102,44,104,41,58,116,40,66,79,44,123,100,111,109,80,114,111,112,115,58,67,102,40,115,44,97,41,125,41,93,41,41,59,118,97,114,32,103,61,116,40,41,44,109,61,98,99,40,70,111,44,102,44,104,41,59,114,101,116,117,114,110,40,109,124,124,99,124,124,117,41,38,38,40,103,61,116,40,113,79,44,91,109,63,121,99,40,70,111,44,100,44,102,44,104,41,58,116,40,66,79,44,123,100,111,109,80,114,111,112,115,58,67,102,40,117,44,99,41,125,41,93,41,41,44,116,40,110,46,116,97,103,44,36,101,40,114,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,105,110,112,117,116,45,103,114,111,117,112,34,44,99,108,97,115,115,58,81,79,40,123,125,44,34,105,110,112,117,116,45,103,114,111,117,112,45,34,46,99,111,110,99,97,116,40,108,41,44,108,41,44,97,116,116,114,115,58,123,105,100,58,110,46,105,100,124,124,110,117,108,108,44,114,111,108,101,58,34,103,114,111,117,112,34,125,125,41,44,91,112,44,121,99,40,85,111,44,100,44,102,44,104,41,44,103,93,41,125,125,41,44,110,83,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,73,110,112,117,116,71,114,111,117,112,58,101,83,44,66,73,110,112,117,116,71,114,111,117,112,65,100,100,111,110,58,86,79,44,66,73,110,112,117,116,71,114,111,117,112,80,114,101,112,101,110,100,58,74,79,44,66,73,110,112,117,116,71,114,111,117,112,65,112,112,101,110,100,58,113,79,44,66,73,110,112,117,116,71,114,111,117,112,84,101,120,116,58,66,79,125,125,41,59,102,117,110,99,116,105,111,110,32,114,83,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,118,97,114,32,105,83,61,100,99,40,123,102,108,117,105,100,58,117,99,40,106,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,125,44,104,110,41,44,111,83,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,104,110,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,105,83,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,110,46,102,108,117,105,100,59,114,101,116,117,114,110,32,116,40,110,46,116,97,103,44,36,101,40,114,44,123,99,108,97,115,115,58,114,83,40,123,99,111,110,116,97,105,110,101,114,58,33,40,111,124,124,34,34,61,61,61,111,41,44,34,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,34,58,33,48,61,61,61,111,124,124,34,34,61,61,61,111,125,44,34,99,111,110,116,97,105,110,101,114,45,34,46,99,111,110,99,97,116,40,111,41,44,111,38,38,33,48,33,61,61,111,41,125,41,44,105,41,125,125,41,59,102,117,110,99,116,105,111,110,32,97,83,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,118,97,114,32,115,83,61,100,99,40,123,98,103,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,98,111,114,100,101,114,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,99,111,110,116,97,105,110,101,114,70,108,117,105,100,58,117,99,40,106,111,44,33,49,41,44,102,108,117,105,100,58,117,99,40,103,111,44,33,49,41,44,104,101,97,100,101,114,58,117,99,40,120,111,41,44,104,101,97,100,101,114,72,116,109,108,58,117,99,40,120,111,41,44,104,101,97,100,101,114,76,101,118,101,108,58,117,99,40,65,111,44,51,41,44,104,101,97,100,101,114,84,97,103,58,117,99,40,120,111,44,34,104,49,34,41,44,108,101,97,100,58,117,99,40,120,111,41,44,108,101,97,100,72,116,109,108,58,117,99,40,120,111,41,44,108,101,97,100,84,97,103,58,117,99,40,120,111,44,34,112,34,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,44,116,101,120,116,86,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,116,114,41,44,99,83,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,116,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,115,83,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,101,46,112,114,111,112,115,44,105,61,101,46,100,97,116,97,44,111,61,101,46,115,108,111,116,115,44,97,61,101,46,115,99,111,112,101,100,83,108,111,116,115,44,115,61,114,46,104,101,97,100,101,114,44,99,61,114,46,104,101,97,100,101,114,72,116,109,108,44,117,61,114,46,108,101,97,100,44,108,61,114,46,108,101,97,100,72,116,109,108,44,102,61,114,46,116,101,120,116,86,97,114,105,97,110,116,44,104,61,114,46,98,103,86,97,114,105,97,110,116,44,100,61,114,46,98,111,114,100,101,114,86,97,114,105,97,110,116,44,112,61,97,124,124,123,125,44,118,61,111,40,41,44,103,61,123,125,44,109,61,116,40,41,44,98,61,98,99,40,101,97,44,112,44,118,41,59,105,102,40,98,124,124,115,124,124,99,41,123,118,97,114,32,121,61,114,46,104,101,97,100,101,114,76,101,118,101,108,59,109,61,116,40,114,46,104,101,97,100,101,114,84,97,103,44,123,99,108,97,115,115,58,97,83,40,123,125,44,34,100,105,115,112,108,97,121,45,34,46,99,111,110,99,97,116,40,121,41,44,121,41,44,100,111,109,80,114,111,112,115,58,98,63,123,125,58,67,102,40,99,44,115,41,125,44,121,99,40,101,97,44,103,44,112,44,118,41,41,125,118,97,114,32,119,61,116,40,41,44,95,61,98,99,40,104,97,44,112,44,118,41,59,40,95,124,124,117,124,124,108,41,38,38,40,119,61,116,40,114,46,108,101,97,100,84,97,103,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,108,101,97,100,34,44,100,111,109,80,114,111,112,115,58,95,63,123,125,58,67,102,40,108,44,117,41,125,44,121,99,40,104,97,44,103,44,112,44,118,41,41,41,59,118,97,114,32,120,61,91,109,44,119,44,121,99,40,85,111,44,103,44,112,44,118,41,93,59,114,101,116,117,114,110,32,114,46,102,108,117,105,100,38,38,40,120,61,91,116,40,111,83,44,123,112,114,111,112,115,58,123,102,108,117,105,100,58,114,46,99,111,110,116,97,105,110,101,114,70,108,117,105,100,125,125,44,120,41,93,41,44,116,40,114,46,116,97,103,44,36,101,40,105,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,106,117,109,98,111,116,114,111,110,34,44,99,108,97,115,115,58,40,110,61,123,34,106,117,109,98,111,116,114,111,110,45,102,108,117,105,100,34,58,114,46,102,108,117,105,100,125,44,97,83,40,110,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,102,41,44,102,41,44,97,83,40,110,44,34,98,103,45,34,46,99,111,110,99,97,116,40,104,41,44,104,41,44,97,83,40,110,44,34,98,111,114,100,101,114,45,34,46,99,111,110,99,97,116,40,100,41,44,100,41,44,97,83,40,110,44,34,98,111,114,100,101,114,34,44,100,41,44,110,41,125,41,44,120,41,125,125,41,44,117,83,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,74,117,109,98,111,116,114,111,110,58,99,83,125,125,41,59,102,117,110,99,116,105,111,110,32,108,83,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,102,83,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,108,83,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,104,83,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,108,83,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,104,83,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,118,97,114,32,100,83,61,91,34,115,116,97,114,116,34,44,34,101,110,100,34,44,34,99,101,110,116,101,114,34,93,44,112,83,61,75,115,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,61,117,115,40,115,115,40,101,41,41,44,101,63,108,115,40,91,34,114,111,119,45,99,111,108,115,34,44,116,44,101,93,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,45,34,41,41,58,110,117,108,108,125,41,41,44,118,83,61,75,115,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,108,115,40,116,46,114,101,112,108,97,99,101,40,34,99,111,108,115,34,44,34,34,41,41,125,41,41,44,103,83,61,91,93,44,109,83,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,99,40,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,91,99,99,40,101,44,34,99,111,108,115,34,41,93,61,117,99,40,65,111,41,44,116,125,41,44,82,116,40,110,117,108,108,41,41,59,114,101,116,117,114,110,32,103,83,61,86,116,40,116,41,44,100,99,40,75,116,40,102,83,40,102,83,40,123,125,44,116,41,44,123,125,44,123,97,108,105,103,110,67,111,110,116,101,110,116,58,117,99,40,120,111,44,110,117,108,108,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,113,97,40,89,97,40,100,83,44,34,98,101,116,119,101,101,110,34,44,34,97,114,111,117,110,100,34,44,34,115,116,114,101,116,99,104,34,41,44,116,41,125,41,41,44,97,108,105,103,110,72,58,117,99,40,120,111,44,110,117,108,108,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,113,97,40,89,97,40,100,83,44,34,98,101,116,119,101,101,110,34,44,34,97,114,111,117,110,100,34,41,44,116,41,125,41,41,44,97,108,105,103,110,86,58,117,99,40,120,111,44,110,117,108,108,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,113,97,40,89,97,40,100,83,44,34,98,97,115,101,108,105,110,101,34,44,34,115,116,114,101,116,99,104,34,41,44,116,41,125,41,41,44,110,111,71,117,116,116,101,114,115,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,125,41,41,44,83,114,41,125,44,98,83,61,123,110,97,109,101,58,83,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,103,101,116,32,112,114,111,112,115,40,41,123,114,101,116,117,114,110,32,100,101,108,101,116,101,32,116,104,105,115,46,112,114,111,112,115,44,116,104,105,115,46,112,114,111,112,115,61,109,83,40,41,44,116,104,105,115,46,112,114,111,112,115,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,101,46,112,114,111,112,115,44,105,61,101,46,100,97,116,97,44,111,61,101,46,99,104,105,108,100,114,101,110,44,97,61,114,46,97,108,105,103,110,86,44,115,61,114,46,97,108,105,103,110,72,44,99,61,114,46,97,108,105,103,110,67,111,110,116,101,110,116,44,117,61,91,93,59,114,101,116,117,114,110,32,103,83,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,83,40,118,83,40,116,41,44,114,91,116,93,41,59,101,38,38,117,46,112,117,115,104,40,101,41,125,41,41,44,117,46,112,117,115,104,40,40,110,61,123,34,110,111,45,103,117,116,116,101,114,115,34,58,114,46,110,111,71,117,116,116,101,114,115,125,44,104,83,40,110,44,34,97,108,105,103,110,45,105,116,101,109,115,45,34,46,99,111,110,99,97,116,40,97,41,44,97,41,44,104,83,40,110,44,34,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,34,46,99,111,110,99,97,116,40,115,41,44,115,41,44,104,83,40,110,44,34,97,108,105,103,110,45,99,111,110,116,101,110,116,45,34,46,99,111,110,99,97,116,40,99,41,44,99,41,44,110,41,41,44,116,40,114,46,116,97,103,44,36,101,40,105,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,114,111,119,34,44,99,108,97,115,115,58,117,125,41,44,111,41,125,125,44,121,83,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,67,111,110,116,97,105,110,101,114,58,111,83,44,66,82,111,119,58,98,83,44,66,67,111,108,58,82,119,44,66,70,111,114,109,82,111,119,58,78,98,125,125,41,44,119,83,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,76,105,110,107,58,86,108,125,125,41,59,102,117,110,99,116,105,111,110,32,95,83,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,118,97,114,32,120,83,61,100,99,40,123,102,108,117,115,104,58,117,99,40,103,111,44,33,49,41,44,104,111,114,105,122,111,110,116,97,108,58,117,99,40,106,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,125,44,110,114,41,44,79,83,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,110,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,120,83,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,34,34,61,61,61,110,46,104,111,114,105,122,111,110,116,97,108,124,124,110,46,104,111,114,105,122,111,110,116,97,108,59,111,61,33,110,46,102,108,117,115,104,38,38,111,59,118,97,114,32,97,61,123,115,116,97,116,105,99,67,108,97,115,115,58,34,108,105,115,116,45,103,114,111,117,112,34,44,99,108,97,115,115,58,95,83,40,123,34,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,34,58,110,46,102,108,117,115,104,44,34,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,34,58,33,48,61,61,61,111,125,44,34,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,34,46,99,111,110,99,97,116,40,111,41,44,79,116,40,111,41,41,125,59,114,101,116,117,114,110,32,116,40,110,46,116,97,103,44,36,101,40,114,44,97,41,44,105,41,125,125,41,59,102,117,110,99,116,105,111,110,32,83,83,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,107,83,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,83,83,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,67,83,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,83,83,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,67,83,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,118,97,114,32,80,83,61,91,34,97,34,44,34,114,111,117,116,101,114,45,108,105,110,107,34,44,34,98,117,116,116,111,110,34,44,34,98,45,108,105,110,107,34,93,44,84,83,61,113,116,40,122,108,44,91,34,101,118,101,110,116,34,44,34,114,111,117,116,101,114,84,97,103,34,93,41,59,100,101,108,101,116,101,32,84,83,46,104,114,101,102,46,100,101,102,97,117,108,116,44,100,101,108,101,116,101,32,84,83,46,116,111,46,100,101,102,97,117,108,116,59,118,97,114,32,106,83,61,100,99,40,75,116,40,107,83,40,107,83,40,123,125,44,84,83,41,44,123,125,44,123,97,99,116,105,111,110,58,117,99,40,103,111,44,33,49,41,44,98,117,116,116,111,110,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,125,41,41,44,114,114,41,44,69,83,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,114,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,106,83,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,101,46,112,114,111,112,115,44,105,61,101,46,100,97,116,97,44,111,61,101,46,99,104,105,108,100,114,101,110,44,97,61,114,46,98,117,116,116,111,110,44,115,61,114,46,118,97,114,105,97,110,116,44,99,61,114,46,97,99,116,105,118,101,44,117,61,114,46,100,105,115,97,98,108,101,100,44,108,61,120,117,40,114,41,44,102,61,97,63,34,98,117,116,116,111,110,34,58,108,63,86,108,58,114,46,116,97,103,44,104,61,33,33,40,114,46,97,99,116,105,111,110,124,124,108,124,124,97,124,124,113,97,40,80,83,44,114,46,116,97,103,41,41,44,100,61,123,125,44,112,61,123,125,59,114,101,116,117,114,110,32,119,115,40,102,44,34,98,117,116,116,111,110,34,41,63,40,105,46,97,116,116,114,115,38,38,105,46,97,116,116,114,115,46,116,121,112,101,124,124,40,100,46,116,121,112,101,61,34,98,117,116,116,111,110,34,41,44,114,46,100,105,115,97,98,108,101,100,38,38,40,100,46,100,105,115,97,98,108,101,100,61,33,48,41,41,58,112,61,102,99,40,84,83,44,114,41,44,116,40,102,44,36,101,40,105,44,123,97,116,116,114,115,58,100,44,112,114,111,112,115,58,112,44,115,116,97,116,105,99,67,108,97,115,115,58,34,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,34,44,99,108,97,115,115,58,40,110,61,123,125,44,67,83,40,110,44,34,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,34,46,99,111,110,99,97,116,40,115,41,44,115,41,44,67,83,40,110,44,34,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,34,44,104,41,44,67,83,40,110,44,34,97,99,116,105,118,101,34,44,99,41,44,67,83,40,110,44,34,100,105,115,97,98,108,101,100,34,44,117,41,44,110,41,125,41,44,111,41,125,125,41,44,68,83,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,76,105,115,116,71,114,111,117,112,58,79,83,44,66,76,105,115,116,71,114,111,117,112,73,116,101,109,58,69,83,125,125,41,59,102,117,110,99,116,105,111,110,32,65,83,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,118,97,114,32,76,83,61,100,99,40,123,114,105,103,104,116,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,44,118,101,114,116,105,99,97,108,65,108,105,103,110,58,117,99,40,120,111,44,34,116,111,112,34,41,125,44,111,114,41,44,73,83,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,111,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,76,83,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,110,46,118,101,114,116,105,99,97,108,65,108,105,103,110,44,97,61,34,116,111,112,34,61,61,61,111,63,34,115,116,97,114,116,34,58,34,98,111,116,116,111,109,34,61,61,61,111,63,34,101,110,100,34,58,111,59,114,101,116,117,114,110,32,116,40,110,46,116,97,103,44,36,101,40,114,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,101,100,105,97,45,97,115,105,100,101,34,44,99,108,97,115,115,58,65,83,40,123,34,109,101,100,105,97,45,97,115,105,100,101,45,114,105,103,104,116,34,58,110,46,114,105,103,104,116,125,44,34,97,108,105,103,110,45,115,101,108,102,45,34,46,99,111,110,99,97,116,40,97,41,44,97,41,125,41,44,105,41,125,125,41,44,77,83,61,100,99,40,123,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,125,44,97,114,41,44,36,83,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,97,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,77,83,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,110,46,116,97,103,44,36,101,40,114,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,101,100,105,97,45,98,111,100,121,34,125,41,44,105,41,125,125,41,44,70,83,61,100,99,40,123,110,111,66,111,100,121,58,117,99,40,103,111,44,33,49,41,44,114,105,103,104,116,65,108,105,103,110,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,44,118,101,114,116,105,99,97,108,65,108,105,103,110,58,117,99,40,120,111,44,34,116,111,112,34,41,125,44,105,114,41,44,82,83,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,105,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,70,83,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,115,108,111,116,115,44,111,61,101,46,115,99,111,112,101,100,83,108,111,116,115,44,97,61,101,46,99,104,105,108,100,114,101,110,44,115,61,110,46,110,111,66,111,100,121,44,99,61,110,46,114,105,103,104,116,65,108,105,103,110,44,117,61,110,46,118,101,114,116,105,99,97,108,65,108,105,103,110,44,108,61,115,63,97,58,91,93,59,105,102,40,33,115,41,123,118,97,114,32,102,61,123,125,44,104,61,105,40,41,44,100,61,111,124,124,123,125,59,108,46,112,117,115,104,40,116,40,36,83,44,121,99,40,85,111,44,102,44,100,44,104,41,41,41,59,118,97,114,32,112,61,121,99,40,82,111,44,102,44,100,44,104,41,59,112,38,38,108,91,99,63,34,112,117,115,104,34,58,34,117,110,115,104,105,102,116,34,93,40,116,40,73,83,44,123,112,114,111,112,115,58,123,114,105,103,104,116,58,99,44,118,101,114,116,105,99,97,108,65,108,105,103,110,58,117,125,125,44,112,41,41,125,114,101,116,117,114,110,32,116,40,110,46,116,97,103,44,36,101,40,114,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,101,100,105,97,34,125,41,44,108,41,125,125,41,44,78,83,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,77,101,100,105,97,58,82,83,44,66,77,101,100,105,97,65,115,105,100,101,58,73,83,44,66,77,101,100,105,97,66,111,100,121,58,36,83,125,125,41,44,66,83,61,34,36,95,98,118,95,100,111,99,117,109,101,110,116,72,97,110,100,108,101,114,115,95,34,44,122,83,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,117,38,38,40,116,104,105,115,91,66,83,93,61,123,125,44,116,104,105,115,46,36,111,110,99,101,40,97,111,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,91,66,83,93,124,124,123,125,59,100,101,108,101,116,101,32,116,91,66,83,93,44,86,116,40,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,101,91,116,93,124,124,91,93,59,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,79,99,40,100,111,99,117,109,101,110,116,44,116,44,101,44,104,111,41,125,41,41,125,41,41,125,41,41,41,125,44,109,101,116,104,111,100,115,58,123,108,105,115,116,101,110,68,111,99,117,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,63,116,104,105,115,46,108,105,115,116,101,110,79,110,68,111,99,117,109,101,110,116,40,101,44,110,41,58,116,104,105,115,46,108,105,115,116,101,110,79,102,102,68,111,99,117,109,101,110,116,40,101,44,110,41,125,44,108,105,115,116,101,110,79,110,68,111,99,117,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,91,66,83,93,38,38,79,116,40,116,41,38,38,95,116,40,101,41,38,38,40,116,104,105,115,91,66,83,93,91,116,93,61,116,104,105,115,91,66,83,93,91,116,93,124,124,91,93,44,113,97,40,116,104,105,115,91,66,83,93,91,116,93,44,101,41,124,124,40,116,104,105,115,91,66,83,93,91,116,93,46,112,117,115,104,40,101,41,44,120,99,40,100,111,99,117,109,101,110,116,44,116,44,101,44,104,111,41,41,41,125,44,108,105,115,116,101,110,79,102,102,68,111,99,117,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,91,66,83,93,38,38,79,116,40,116,41,38,38,95,116,40,101,41,38,38,40,79,99,40,100,111,99,117,109,101,110,116,44,116,44,101,44,104,111,41,44,116,104,105,115,91,66,83,93,91,116,93,61,40,116,104,105,115,91,66,83,93,91,116,93,124,124,91,93,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,33,61,61,101,125,41,41,41,125,125,125,41,44,86,83,61,34,36,95,98,118,95,119,105,110,100,111,119,72,97,110,100,108,101,114,115,95,34,44,72,83,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,98,101,102,111,114,101,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,91,86,83,93,61,123,125,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,117,41,123,118,97,114,32,116,61,116,104,105,115,91,86,83,93,59,100,101,108,101,116,101,32,116,104,105,115,91,86,83,93,44,86,116,40,116,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,116,91,101,93,124,124,91,93,59,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,79,99,40,119,105,110,100,111,119,44,101,44,116,44,104,111,41,125,41,41,125,41,41,125,125,44,109,101,116,104,111,100,115,58,123,108,105,115,116,101,110,87,105,110,100,111,119,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,63,116,104,105,115,46,108,105,115,116,101,110,79,110,87,105,110,100,111,119,40,101,44,110,41,58,116,104,105,115,46,108,105,115,116,101,110,79,102,102,87,105,110,100,111,119,40,101,44,110,41,125,44,108,105,115,116,101,110,79,110,87,105,110,100,111,119,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,117,38,38,116,104,105,115,91,86,83,93,38,38,79,116,40,116,41,38,38,95,116,40,101,41,38,38,40,116,104,105,115,91,86,83,93,91,116,93,61,116,104,105,115,91,86,83,93,91,116,93,124,124,91,93,44,113,97,40,116,104,105,115,91,86,83,93,91,116,93,44,101,41,124,124,40,116,104,105,115,91,86,83,93,91,116,93,46,112,117,115,104,40,101,41,44,120,99,40,119,105,110,100,111,119,44,116,44,101,44,104,111,41,41,41,125,44,108,105,115,116,101,110,79,102,102,87,105,110,100,111,119,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,117,38,38,116,104,105,115,91,86,83,93,38,38,79,116,40,116,41,38,38,95,116,40,101,41,38,38,40,79,99,40,119,105,110,100,111,119,44,116,44,101,44,104,111,41,44,116,104,105,115,91,86,83,93,91,116,93,61,40,116,104,105,115,91,86,83,93,91,116,93,124,124,91,93,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,33,61,61,101,125,41,41,41,125,125,125,41,44,85,83,61,102,117,110,99,116,105,111,110,40,116,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,49,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,110,117,108,108,59,114,101,116,117,114,110,32,116,38,38,116,46,36,111,112,116,105,111,110,115,46,95,115,99,111,112,101,73,100,124,124,101,125,59,102,117,110,99,116,105,111,110,32,87,83,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,118,97,114,32,71,83,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,99,111,109,112,117,116,101,100,58,123,115,99,111,112,101,100,83,116,121,108,101,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,85,83,40,116,104,105,115,46,36,112,97,114,101,110,116,41,59,114,101,116,117,114,110,32,116,63,87,83,40,123,125,44,116,44,34,34,41,58,123,125,125,125,125,41,44,113,83,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,97,98,115,116,114,97,99,116,58,33,48,44,110,97,109,101,58,111,105,44,112,114,111,112,115,58,123,110,111,100,101,115,58,117,99,40,79,111,41,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,117,112,100,97,116,101,100,78,111,100,101,115,58,116,46,110,111,100,101,115,125,125,44,100,101,115,116,114,111,121,101,100,58,102,117,110,99,116,105,111,110,40,41,123,109,115,40,116,104,105,115,46,36,101,108,41,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,117,112,100,97,116,101,100,78,111,100,101,115,44,110,61,95,116,40,101,41,63,101,40,123,125,41,58,101,59,114,101,116,117,114,110,32,110,61,89,97,40,110,41,46,102,105,108,116,101,114,40,115,101,41,44,110,38,38,110,46,108,101,110,103,116,104,62,48,38,38,33,110,91,48,93,46,116,101,120,116,63,110,91,48,93,58,116,40,41,125,125,41,44,89,83,61,123,99,111,110,116,97,105,110,101,114,58,117,99,40,91,104,116,44,120,111,93,44,34,98,111,100,121,34,41,44,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,125,44,75,83,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,105,105,44,109,105,120,105,110,115,58,91,119,99,93,44,112,114,111,112,115,58,89,83,44,119,97,116,99,104,58,123,100,105,115,97,98,108,101,100,58,123,105,109,109,101,100,105,97,116,101,58,33,48,44,104,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,116,63,116,104,105,115,46,117,110,109,111,117,110,116,84,97,114,103,101,116,40,41,58,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,109,111,117,110,116,84,97,114,103,101,116,41,125,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,100,101,102,97,117,108,116,70,110,61,110,117,108,108,44,116,104,105,115,46,36,95,116,97,114,103,101,116,61,110,117,108,108,125,44,98,101,102,111,114,101,77,111,117,110,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,109,111,117,110,116,84,97,114,103,101,116,40,41,125,44,117,112,100,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,117,112,100,97,116,101,84,97,114,103,101,116,40,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,117,110,109,111,117,110,116,84,97,114,103,101,116,40,41,44,116,104,105,115,46,36,95,100,101,102,97,117,108,116,70,110,61,110,117,108,108,125,44,109,101,116,104,111,100,115,58,123,103,101,116,67,111,110,116,97,105,110,101,114,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,117,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,110,116,97,105,110,101,114,59,114,101,116,117,114,110,32,79,116,40,116,41,63,67,115,40,116,41,58,116,125,114,101,116,117,114,110,32,110,117,108,108,125,44,109,111,117,110,116,84,97,114,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,36,95,116,97,114,103,101,116,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,67,111,110,116,97,105,110,101,114,40,41,59,105,102,40,116,41,123,118,97,114,32,101,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,97,112,112,101,110,100,67,104,105,108,100,40,101,41,44,116,104,105,115,46,36,95,116,97,114,103,101,116,61,110,101,119,32,113,83,40,123,101,108,58,101,44,112,97,114,101,110,116,58,116,104,105,115,44,112,114,111,112,115,68,97,116,97,58,123,110,111,100,101,115,58,89,97,40,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,125,125,41,125,125,125,44,117,112,100,97,116,101,84,97,114,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,117,38,38,116,104,105,115,46,36,95,116,97,114,103,101,116,41,123,118,97,114,32,116,61,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,59,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,40,116,38,38,116,104,105,115,46,36,95,100,101,102,97,117,108,116,70,110,33,61,61,116,63,116,104,105,115,46,36,95,116,97,114,103,101,116,46,117,112,100,97,116,101,100,78,111,100,101,115,61,116,58,116,124,124,40,116,104,105,115,46,36,95,116,97,114,103,101,116,46,117,112,100,97,116,101,100,78,111,100,101,115,61,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,41,41,44,116,104,105,115,46,36,95,100,101,102,97,117,108,116,70,110,61,116,125,125,44,117,110,109,111,117,110,116,84,97,114,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,116,97,114,103,101,116,38,38,116,104,105,115,46,36,95,116,97,114,103,101,116,46,36,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,36,95,116,97,114,103,101,116,61,110,117,108,108,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,100,105,115,97,98,108,101,100,41,123,118,97,114,32,101,61,89,97,40,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,46,102,105,108,116,101,114,40,115,101,41,59,105,102,40,101,46,108,101,110,103,116,104,62,48,38,38,33,101,91,48,93,46,116,101,120,116,41,114,101,116,117,114,110,32,101,91,48,93,125,114,101,116,117,114,110,32,116,40,41,125,125,41,59,102,117,110,99,116,105,111,110,32,88,83,40,116,41,123,114,101,116,117,114,110,32,88,83,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,34,115,121,109,98,111,108,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,83,121,109,98,111,108,38,38,116,33,61,61,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,63,34,115,121,109,98,111,108,34,58,116,121,112,101,111,102,32,116,125,44,88,83,40,116,41,125,102,117,110,99,116,105,111,110,32,90,83,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,74,83,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,90,83,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,81,83,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,90,83,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,81,83,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,102,117,110,99,116,105,111,110,32,116,107,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,102,117,110,99,116,105,111,110,32,101,107,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,114,61,101,91,110,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,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,114,38,38,40,114,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,114,46,107,101,121,44,114,41,125,125,102,117,110,99,116,105,111,110,32,110,107,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,101,107,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,101,107,40,116,44,110,41,44,116,125,102,117,110,99,116,105,111,110,32,114,107,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,114,107,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,82,101,102,108,101,99,116,38,38,82,101,102,108,101,99,116,46,103,101,116,63,82,101,102,108,101,99,116,46,103,101,116,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,105,107,40,116,44,101,41,59,105,102,40,114,41,123,118,97,114,32,105,61,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,101,41,59,114,101,116,117,114,110,32,105,46,103,101,116,63,105,46,103,101,116,46,99,97,108,108,40,110,41,58,105,46,118,97,108,117,101,125,125,44,114,107,40,116,44,101,44,110,124,124,116,41,125,102,117,110,99,116,105,111,110,32,105,107,40,116,44,101,41,123,119,104,105,108,101,40,33,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,116,44,101,41,41,105,102,40,116,61,102,107,40,116,41,44,110,117,108,108,61,61,61,116,41,98,114,101,97,107,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,111,107,40,116,44,101,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,101,38,38,110,117,108,108,33,61,61,101,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,34,41,59,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,38,38,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,116,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,101,38,38,97,107,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,97,107,40,116,44,101,41,123,114,101,116,117,114,110,32,97,107,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,95,95,112,114,111,116,111,95,95,61,101,44,116,125,44,97,107,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,115,107,40,116,41,123,118,97,114,32,101,61,108,107,40,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,114,61,102,107,40,116,41,59,105,102,40,101,41,123,118,97,114,32,105,61,102,107,40,116,104,105,115,41,46,99,111,110,115,116,114,117,99,116,111,114,59,110,61,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,40,114,44,97,114,103,117,109,101,110,116,115,44,105,41,125,101,108,115,101,32,110,61,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,99,107,40,116,104,105,115,44,110,41,125,125,102,117,110,99,116,105,111,110,32,99,107,40,116,44,101,41,123,114,101,116,117,114,110,33,101,124,124,34,111,98,106,101,99,116,34,33,61,61,88,83,40,101,41,38,38,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,101,63,117,107,40,116,41,58,101,125,102,117,110,99,116,105,111,110,32,117,107,40,116,41,123,105,102,40,118,111,105,100,32,48,61,61,61,116,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,32,116,125,102,117,110,99,116,105,111,110,32,108,107,40,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,82,101,102,108,101,99,116,124,124,33,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,41,114,101,116,117,114,110,33,49,59,105,102,40,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,46,115,104,97,109,41,114,101,116,117,114,110,33,49,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,80,114,111,120,121,41,114,101,116,117,114,110,33,48,59,116,114,121,123,114,101,116,117,114,110,32,68,97,116,101,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,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,40,68,97,116,101,44,91,93,44,40,102,117,110,99,116,105,111,110,40,41,123,125,41,41,41,44,33,48,125,99,97,116,99,104,40,65,101,41,123,114,101,116,117,114,110,33,49,125,125,102,117,110,99,116,105,111,110,32,102,107,40,116,41,123,114,101,116,117,114,110,32,102,107,61,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,103,101,116,80,114,111,116,111,116,121,112,101,79,102,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,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,125,44,102,107,40,116,41,125,118,97,114,32,104,107,61,102,117,110,99,116,105,111,110,40,116,41,123,111,107,40,110,44,116,41,59,118,97,114,32,101,61,115,107,40,110,41,59,102,117,110,99,116,105,111,110,32,110,40,116,41,123,118,97,114,32,114,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,114,101,116,117,114,110,32,116,107,40,116,104,105,115,44,110,41,44,114,61,101,46,99,97,108,108,40,116,104,105,115,44,116,44,105,41,44,78,116,40,117,107,40,114,41,44,123,116,114,105,103,103,101,114,58,88,116,40,41,125,41,44,114,125,114,101,116,117,114,110,32,110,107,40,110,44,110,117,108,108,44,91,123,107,101,121,58,34,68,101,102,97,117,108,116,115,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,74,83,40,74,83,40,123,125,44,114,107,40,102,107,40,110,41,44,34,68,101,102,97,117,108,116,115,34,44,116,104,105,115,41,41,44,123,125,44,123,116,114,105,103,103,101,114,58,110,117,108,108,125,41,125,125,93,41,44,110,125,40,118,109,41,44,100,107,61,49,48,52,48,44,112,107,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,118,107,61,34,46,115,116,105,99,107,121,45,116,111,112,34,44,103,107,61,34,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,34,44,109,107,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,109,111,100,97,108,115,58,91,93,44,98,97,115,101,90,73,110,100,101,120,58,110,117,108,108,44,115,99,114,111,108,108,98,97,114,87,105,100,116,104,58,110,117,108,108,44,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,109,111,100,97,108,67,111,117,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,111,100,97,108,115,46,108,101,110,103,116,104,125,44,109,111,100,97,108,115,65,114,101,79,112,101,110,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,97,108,67,111,117,110,116,62,48,125,125,44,119,97,116,99,104,58,123,109,111,100,97,108,67,111,117,110,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,117,38,38,40,116,104,105,115,46,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,40,41,44,116,62,48,38,38,48,61,61,61,101,63,40,116,104,105,115,46,99,104,101,99,107,83,99,114,111,108,108,98,97,114,40,41,44,116,104,105,115,46,115,101,116,83,99,114,111,108,108,98,97,114,40,41,44,68,115,40,100,111,99,117,109,101,110,116,46,98,111,100,121,44,34,109,111,100,97,108,45,111,112,101,110,34,41,41,58,48,61,61,61,116,38,38,101,62,48,38,38,40,116,104,105,115,46,114,101,115,101,116,83,99,114,111,108,108,98,97,114,40,41,44,65,115,40,100,111,99,117,109,101,110,116,46,98,111,100,121,44,34,109,111,100,97,108,45,111,112,101,110,34,41,41,44,73,115,40,100,111,99,117,109,101,110,116,46,98,111,100,121,44,34,100,97,116,97,45,109,111,100,97,108,45,111,112,101,110,45,99,111,117,110,116,34,44,83,116,114,105,110,103,40,116,41,41,41,125,44,109,111,100,97,108,115,58,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,99,104,101,99,107,83,99,114,111,108,108,98,97,114,40,41,44,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,117,112,100,97,116,101,77,111,100,97,108,115,40,116,124,124,91,93,41,125,41,41,125,125,44,109,101,116,104,111,100,115,58,123,114,101,103,105,115,116,101,114,77,111,100,97,108,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,116,38,38,45,49,61,61,61,116,104,105,115,46,109,111,100,97,108,115,46,105,110,100,101,120,79,102,40,116,41,38,38,40,116,104,105,115,46,109,111,100,97,108,115,46,112,117,115,104,40,116,41,44,116,46,36,111,110,99,101,40,97,111,44,40,102,117,110,99,116,105,111,110,40,41,123,101,46,117,110,114,101,103,105,115,116,101,114,77,111,100,97,108,40,116,41,125,41,41,41,125,44,117,110,114,101,103,105,115,116,101,114,77,111,100,97,108,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,109,111,100,97,108,115,46,105,110,100,101,120,79,102,40,116,41,59,101,62,45,49,38,38,40,116,104,105,115,46,109,111,100,97,108,115,46,115,112,108,105,99,101,40,101,44,49,41,44,116,46,95,105,115,66,101,105,110,103,68,101,115,116,114,111,121,101,100,124,124,116,46,95,105,115,68,101,115,116,114,111,121,101,100,124,124,116,104,105,115,46,114,101,115,101,116,77,111,100,97,108,40,116,41,41,125,44,103,101,116,66,97,115,101,90,73,110,100,101,120,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,121,116,40,116,104,105,115,46,98,97,115,101,90,73,110,100,101,120,41,38,38,117,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,68,115,40,116,44,34,109,111,100,97,108,45,98,97,99,107,100,114,111,112,34,41,44,68,115,40,116,44,34,100,45,110,111,110,101,34,41,44,82,115,40,116,44,34,100,105,115,112,108,97,121,34,44,34,110,111,110,101,34,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,116,41,44,116,104,105,115,46,98,97,115,101,90,73,110,100,101,120,61,74,97,40,86,115,40,116,41,46,122,73,110,100,101,120,44,100,107,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,41,125,114,101,116,117,114,110,32,116,104,105,115,46,98,97,115,101,90,73,110,100,101,120,124,124,100,107,125,44,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,121,116,40,116,104,105,115,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,41,38,38,117,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,68,115,40,116,44,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,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,116,41,44,116,104,105,115,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,122,115,40,116,41,46,119,105,100,116,104,45,116,46,99,108,105,101,110,116,87,105,100,116,104,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,41,125,114,101,116,117,114,110,32,116,104,105,115,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,124,124,48,125,44,117,112,100,97,116,101,77,111,100,97,108,115,58,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,66,97,115,101,90,73,110,100,101,120,40,41,44,114,61,116,104,105,115,46,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,40,41,59,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,105,41,123,116,46,122,73,110,100,101,120,61,110,43,105,44,116,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,114,44,116,46,105,115,84,111,112,61,105,61,61,61,101,46,109,111,100,97,108,115,46,108,101,110,103,116,104,45,49,44,116,46,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,101,46,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,125,41,41,125,44,114,101,115,101,116,77,111,100,97,108,58,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,40,116,46,122,73,110,100,101,120,61,116,104,105,115,46,103,101,116,66,97,115,101,90,73,110,100,101,120,40,41,44,116,46,105,115,84,111,112,61,33,48,44,116,46,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,33,49,41,125,44,99,104,101,99,107,83,99,114,111,108,108,98,97,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,122,115,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,44,101,61,116,46,108,101,102,116,44,110,61,116,46,114,105,103,104,116,59,116,104,105,115,46,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,101,43,110,60,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,125,44,115,101,116,83,99,114,111,108,108,98,97,114,58,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,59,105,102,40,116,46,95,112,97,100,100,105,110,103,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,61,116,46,95,112,97,100,100,105,110,103,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,124,124,91,93,44,116,46,95,109,97,114,103,105,110,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,61,116,46,95,109,97,114,103,105,110,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,124,124,91,93,44,116,104,105,115,46,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,41,123,118,97,114,32,101,61,116,104,105,115,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,59,107,115,40,112,107,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,66,115,40,110,44,34,112,97,100,100,105,110,103,82,105,103,104,116,34,41,124,124,34,34,59,73,115,40,110,44,34,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,114,41,44,82,115,40,110,44,34,112,97,100,100,105,110,103,82,105,103,104,116,34,44,34,34,46,99,111,110,99,97,116,40,81,97,40,86,115,40,110,41,46,112,97,100,100,105,110,103,82,105,103,104,116,44,48,41,43,101,44,34,112,120,34,41,41,44,116,46,95,112,97,100,100,105,110,103,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,46,112,117,115,104,40,110,41,125,41,41,44,107,115,40,118,107,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,66,115,40,110,44,34,109,97,114,103,105,110,82,105,103,104,116,34,41,124,124,34,34,59,73,115,40,110,44,34,100,97,116,97,45,109,97,114,103,105,110,45,114,105,103,104,116,34,44,114,41,44,82,115,40,110,44,34,109,97,114,103,105,110,82,105,103,104,116,34,44,34,34,46,99,111,110,99,97,116,40,81,97,40,86,115,40,110,41,46,109,97,114,103,105,110,82,105,103,104,116,44,48,41,45,101,44,34,112,120,34,41,41,44,116,46,95,109,97,114,103,105,110,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,46,112,117,115,104,40,110,41,125,41,41,44,107,115,40,103,107,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,66,115,40,110,44,34,109,97,114,103,105,110,82,105,103,104,116,34,41,124,124,34,34,59,73,115,40,110,44,34,100,97,116,97,45,109,97,114,103,105,110,45,114,105,103,104,116,34,44,114,41,44,82,115,40,110,44,34,109,97,114,103,105,110,82,105,103,104,116,34,44,34,34,46,99,111,110,99,97,116,40,81,97,40,86,115,40,110,41,46,109,97,114,103,105,110,82,105,103,104,116,44,48,41,43,101,44,34,112,120,34,41,41,44,116,46,95,109,97,114,103,105,110,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,46,112,117,115,104,40,110,41,125,41,41,59,118,97,114,32,110,61,66,115,40,116,44,34,112,97,100,100,105,110,103,82,105,103,104,116,34,41,124,124,34,34,59,73,115,40,116,44,34,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,110,41,44,82,115,40,116,44,34,112,97,100,100,105,110,103,82,105,103,104,116,34,44,34,34,46,99,111,110,99,97,116,40,81,97,40,86,115,40,116,41,46,112,97,100,100,105,110,103,82,105,103,104,116,44,48,41,43,101,44,34,112,120,34,41,41,125,125,44,114,101,115,101,116,83,99,114,111,108,108,98,97,114,58,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,59,116,46,95,112,97,100,100,105,110,103,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,38,38,116,46,95,112,97,100,100,105,110,103,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,70,115,40,116,44,34,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,38,38,40,82,115,40,116,44,34,112,97,100,100,105,110,103,82,105,103,104,116,34,44,36,115,40,116,44,34,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,124,124,34,34,41,44,77,115,40,116,44,34,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,41,125,41,41,44,116,46,95,109,97,114,103,105,110,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,38,38,116,46,95,109,97,114,103,105,110,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,70,115,40,116,44,34,100,97,116,97,45,109,97,114,103,105,110,45,114,105,103,104,116,34,41,38,38,40,82,115,40,116,44,34,109,97,114,103,105,110,82,105,103,104,116,34,44,36,115,40,116,44,34,100,97,116,97,45,109,97,114,103,105,110,45,114,105,103,104,116,34,41,124,124,34,34,41,44,77,115,40,116,44,34,100,97,116,97,45,109,97,114,103,105,110,45,114,105,103,104,116,34,41,41,125,41,41,44,116,46,95,112,97,100,100,105,110,103,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,61,110,117,108,108,44,116,46,95,109,97,114,103,105,110,67,104,97,110,103,101,100,70,111,114,77,111,100,97,108,61,110,117,108,108,44,70,115,40,116,44,34,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,38,38,40,82,115,40,116,44,34,112,97,100,100,105,110,103,82,105,103,104,116,34,44,36,115,40,116,44,34,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,124,124,34,34,41,44,77,115,40,116,44,34,100,97,116,97,45,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,41,125,125,125,41,44,98,107,61,110,101,119,32,109,107,59,102,117,110,99,116,105,111,110,32,121,107,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,119,107,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,121,107,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,95,107,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,121,107,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,95,107,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,118,97,114,32,120,107,61,109,99,40,34,118,105,115,105,98,108,101,34,44,123,116,121,112,101,58,103,111,44,100,101,102,97,117,108,116,86,97,108,117,101,58,33,49,44,101,118,101,110,116,58,117,105,125,41,44,79,107,61,120,107,46,109,105,120,105,110,44,83,107,61,120,107,46,112,114,111,112,115,44,107,107,61,120,107,46,112,114,111,112,44,67,107,61,120,107,46,101,118,101,110,116,44,80,107,61,34,98,97,99,107,100,114,111,112,34,44,84,107,61,34,101,115,99,34,44,106,107,61,34,70,79,82,67,69,34,44,69,107,61,34,116,111,103,103,108,101,34,44,68,107,61,34,99,97,110,99,101,108,34,44,65,107,61,34,104,101,97,100,101,114,99,108,111,115,101,34,44,76,107,61,34,111,107,34,44,73,107,61,91,68,107,44,65,107,44,76,107,93,44,77,107,61,123,115,117,98,116,114,101,101,58,33,48,44,99,104,105,108,100,76,105,115,116,58,33,48,44,99,104,97,114,97,99,116,101,114,68,97,116,97,58,33,48,44,97,116,116,114,105,98,117,116,101,115,58,33,48,44,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,58,91,34,115,116,121,108,101,34,44,34,99,108,97,115,115,34,93,125,44,36,107,61,100,99,40,75,116,40,119,107,40,119,107,40,119,107,40,123,125,44,68,104,41,44,83,107,41,44,123,125,44,123,97,114,105,97,76,97,98,101,108,58,117,99,40,120,111,41,44,97,117,116,111,70,111,99,117,115,66,117,116,116,111,110,58,117,99,40,120,111,44,110,117,108,108,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,119,116,40,116,41,124,124,113,97,40,73,107,44,116,41,125,41,41,44,98,111,100,121,66,103,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,98,111,100,121,67,108,97,115,115,58,117,99,40,107,111,41,44,98,111,100,121,84,101,120,116,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,98,117,115,121,58,117,99,40,103,111,44,33,49,41,44,98,117,116,116,111,110,83,105,122,101,58,117,99,40,120,111,41,44,99,97,110,99,101,108,68,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,99,97,110,99,101,108,84,105,116,108,101,58,117,99,40,120,111,44,34,67,97,110,99,101,108,34,41,44,99,97,110,99,101,108,84,105,116,108,101,72,116,109,108,58,117,99,40,120,111,41,44,99,97,110,99,101,108,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,115,101,99,111,110,100,97,114,121,34,41,44,99,101,110,116,101,114,101,100,58,117,99,40,103,111,44,33,49,41,44,99,111,110,116,101,110,116,67,108,97,115,115,58,117,99,40,107,111,41,44,100,105,97,108,111,103,67,108,97,115,115,58,117,99,40,107,111,41,44,102,111,111,116,101,114,66,103,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,102,111,111,116,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,102,111,111,116,101,114,67,108,97,115,115,58,117,99,40,107,111,41,44,102,111,111,116,101,114,84,101,120,116,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,104,101,97,100,101,114,66,103,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,104,101,97,100,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,104,101,97,100,101,114,67,108,97,115,115,58,117,99,40,107,111,41,44,104,101,97,100,101,114,67,108,111,115,101,67,111,110,116,101,110,116,58,117,99,40,120,111,44,34,38,116,105,109,101,115,59,34,41,44,104,101,97,100,101,114,67,108,111,115,101,76,97,98,101,108,58,117,99,40,120,111,44,34,67,108,111,115,101,34,41,44,104,101,97,100,101,114,67,108,111,115,101,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,104,101,97,100,101,114,84,101,120,116,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,104,105,100,101,66,97,99,107,100,114,111,112,58,117,99,40,103,111,44,33,49,41,44,104,105,100,101,70,111,111,116,101,114,58,117,99,40,103,111,44,33,49,41,44,104,105,100,101,72,101,97,100,101,114,58,117,99,40,103,111,44,33,49,41,44,104,105,100,101,72,101,97,100,101,114,67,108,111,115,101,58,117,99,40,103,111,44,33,49,41,44,105,103,110,111,114,101,69,110,102,111,114,99,101,70,111,99,117,115,83,101,108,101,99,116,111,114,58,117,99,40,67,111,41,44,108,97,122,121,58,117,99,40,103,111,44,33,49,41,44,109,111,100,97,108,67,108,97,115,115,58,117,99,40,107,111,41,44,110,111,67,108,111,115,101,79,110,66,97,99,107,100,114,111,112,58,117,99,40,103,111,44,33,49,41,44,110,111,67,108,111,115,101,79,110,69,115,99,58,117,99,40,103,111,44,33,49,41,44,110,111,69,110,102,111,114,99,101,70,111,99,117,115,58,117,99,40,103,111,44,33,49,41,44,110,111,70,97,100,101,58,117,99,40,103,111,44,33,49,41,44,110,111,83,116,97,99,107,105,110,103,58,117,99,40,103,111,44,33,49,41,44,111,107,68,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,111,107,79,110,108,121,58,117,99,40,103,111,44,33,49,41,44,111,107,84,105,116,108,101,58,117,99,40,120,111,44,34,79,75,34,41,44,111,107,84,105,116,108,101,72,116,109,108,58,117,99,40,120,111,41,44,111,107,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,112,114,105,109,97,114,121,34,41,44,114,101,116,117,114,110,70,111,99,117,115,58,117,99,40,91,104,116,44,119,111,44,120,111,93,41,44,115,99,114,111,108,108,97,98,108,101,58,117,99,40,103,111,44,33,49,41,44,115,105,122,101,58,117,99,40,120,111,44,34,109,100,34,41,44,115,116,97,116,105,99,58,117,99,40,103,111,44,33,49,41,44,116,105,116,108,101,58,117,99,40,120,111,41,44,116,105,116,108,101,67,108,97,115,115,58,117,99,40,107,111,41,44,116,105,116,108,101,72,116,109,108,58,117,99,40,120,111,41,44,116,105,116,108,101,83,114,79,110,108,121,58,117,99,40,103,111,44,33,49,41,44,116,105,116,108,101,84,97,103,58,117,99,40,120,111,44,34,104,53,34,41,125,41,41,44,115,114,41,44,70,107,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,115,114,44,109,105,120,105,110,115,58,91,67,108,44,65,104,44,79,107,44,122,83,44,80,108,44,72,83,44,119,99,44,71,83,93,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,36,107,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,72,105,100,100,101,110,58,33,48,44,105,115,86,105,115,105,98,108,101,58,33,49,44,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,58,33,49,44,105,115,83,104,111,119,58,33,49,44,105,115,66,108,111,99,107,58,33,49,44,105,115,79,112,101,110,105,110,103,58,33,49,44,105,115,67,108,111,115,105,110,103,58,33,49,44,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,58,33,49,44,105,115,77,111,100,97,108,79,118,101,114,102,108,111,119,105,110,103,58,33,49,44,115,99,114,111,108,108,98,97,114,87,105,100,116,104,58,48,44,122,73,110,100,101,120,58,98,107,46,103,101,116,66,97,115,101,90,73,110,100,101,120,40,41,44,105,115,84,111,112,58,33,48,44,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,109,111,100,97,108,73,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,115,97,102,101,73,100,40,41,125,44,109,111,100,97,108,79,117,116,101,114,73,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,115,97,102,101,73,100,40,34,95,95,66,86,95,109,111,100,97,108,95,111,117,116,101,114,95,34,41,125,44,109,111,100,97,108,72,101,97,100,101,114,73,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,115,97,102,101,73,100,40,34,95,95,66,86,95,109,111,100,97,108,95,104,101,97,100,101,114,95,34,41,125,44,109,111,100,97,108,66,111,100,121,73,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,115,97,102,101,73,100,40,34,95,95,66,86,95,109,111,100,97,108,95,98,111,100,121,95,34,41,125,44,109,111,100,97,108,84,105,116,108,101,73,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,115,97,102,101,73,100,40,34,95,95,66,86,95,109,111,100,97,108,95,116,105,116,108,101,95,34,41,125,44,109,111,100,97,108,67,111,110,116,101,110,116,73,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,115,97,102,101,73,100,40,34,95,95,66,86,95,109,111,100,97,108,95,99,111,110,116,101,110,116,95,34,41,125,44,109,111,100,97,108,70,111,111,116,101,114,73,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,115,97,102,101,73,100,40,34,95,95,66,86,95,109,111,100,97,108,95,102,111,111,116,101,114,95,34,41,125,44,109,111,100,97,108,66,97,99,107,100,114,111,112,73,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,115,97,102,101,73,100,40,34,95,95,66,86,95,109,111,100,97,108,95,98,97,99,107,100,114,111,112,95,34,41,125,44,109,111,100,97,108,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,123,102,97,100,101,58,33,116,104,105,115,46,110,111,70,97,100,101,44,115,104,111,119,58,116,104,105,115,46,105,115,83,104,111,119,125,44,116,104,105,115,46,109,111,100,97,108,67,108,97,115,115,93,125,44,109,111,100,97,108,83,116,121,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,34,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,44,34,112,120,34,41,59,114,101,116,117,114,110,123,112,97,100,100,105,110,103,76,101,102,116,58,33,116,104,105,115,46,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,38,38,116,104,105,115,46,105,115,77,111,100,97,108,79,118,101,114,102,108,111,119,105,110,103,63,116,58,34,34,44,112,97,100,100,105,110,103,82,105,103,104,116,58,116,104,105,115,46,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,38,38,33,116,104,105,115,46,105,115,77,111,100,97,108,79,118,101,114,102,108,111,119,105,110,103,63,116,58,34,34,44,100,105,115,112,108,97,121,58,116,104,105,115,46,105,115,66,108,111,99,107,63,34,98,108,111,99,107,34,58,34,110,111,110,101,34,125,125,44,100,105,97,108,111,103,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,59,114,101,116,117,114,110,91,40,116,61,123,125,44,95,107,40,116,44,34,109,111,100,97,108,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,105,122,101,41,44,116,104,105,115,46,115,105,122,101,41,44,95,107,40,116,44,34,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,34,44,116,104,105,115,46,99,101,110,116,101,114,101,100,41,44,95,107,40,116,44,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,116,104,105,115,46,115,99,114,111,108,108,97,98,108,101,41,44,116,41,44,116,104,105,115,46,100,105,97,108,111,103,67,108,97,115,115,93,125,44,104,101,97,100,101,114,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,59,114,101,116,117,114,110,91,40,116,61,123,125,44,95,107,40,116,44,34,98,103,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,104,101,97,100,101,114,66,103,86,97,114,105,97,110,116,41,44,116,104,105,115,46,104,101,97,100,101,114,66,103,86,97,114,105,97,110,116,41,44,95,107,40,116,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,104,101,97,100,101,114,84,101,120,116,86,97,114,105,97,110,116,41,44,116,104,105,115,46,104,101,97,100,101,114,84,101,120,116,86,97,114,105,97,110,116,41,44,95,107,40,116,44,34,98,111,114,100,101,114,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,104,101,97,100,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,41,44,116,104,105,115,46,104,101,97,100,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,41,44,116,41,44,116,104,105,115,46,104,101,97,100,101,114,67,108,97,115,115,93,125,44,116,105,116,108,101,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,123,34,115,114,45,111,110,108,121,34,58,116,104,105,115,46,116,105,116,108,101,83,114,79,110,108,121,125,44,116,104,105,115,46,116,105,116,108,101,67,108,97,115,115,93,125,44,98,111,100,121,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,59,114,101,116,117,114,110,91,40,116,61,123,125,44,95,107,40,116,44,34,98,103,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,98,111,100,121,66,103,86,97,114,105,97,110,116,41,44,116,104,105,115,46,98,111,100,121,66,103,86,97,114,105,97,110,116,41,44,95,107,40,116,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,98,111,100,121,84,101,120,116,86,97,114,105,97,110,116,41,44,116,104,105,115,46,98,111,100,121,84,101,120,116,86,97,114,105,97,110,116,41,44,116,41,44,116,104,105,115,46,98,111,100,121,67,108,97,115,115,93,125,44,102,111,111,116,101,114,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,59,114,101,116,117,114,110,91,40,116,61,123,125,44,95,107,40,116,44,34,98,103,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,102,111,111,116,101,114,66,103,86,97,114,105,97,110,116,41,44,116,104,105,115,46,102,111,111,116,101,114,66,103,86,97,114,105,97,110,116,41,44,95,107,40,116,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,102,111,111,116,101,114,84,101,120,116,86,97,114,105,97,110,116,41,44,116,104,105,115,46,102,111,111,116,101,114,84,101,120,116,86,97,114,105,97,110,116,41,44,95,107,40,116,44,34,98,111,114,100,101,114,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,102,111,111,116,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,41,44,116,104,105,115,46,102,111,111,116,101,114,66,111,114,100,101,114,86,97,114,105,97,110,116,41,44,116,41,44,116,104,105,115,46,102,111,111,116,101,114,67,108,97,115,115,93,125,44,109,111,100,97,108,79,117,116,101,114,83,116,121,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,112,111,115,105,116,105,111,110,58,34,97,98,115,111,108,117,116,101,34,44,122,73,110,100,101,120,58,116,104,105,115,46,122,73,110,100,101,120,125,125,44,115,108,111,116,83,99,111,112,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,99,97,110,99,101,108,58,116,104,105,115,46,111,110,67,97,110,99,101,108,44,99,108,111,115,101,58,116,104,105,115,46,111,110,67,108,111,115,101,44,104,105,100,101,58,116,104,105,115,46,104,105,100,101,44,111,107,58,116,104,105,115,46,111,110,79,107,44,118,105,115,105,98,108,101,58,116,104,105,115,46,105,115,86,105,115,105,98,108,101,125,125,44,99,111,109,112,117,116,101,73,103,110,111,114,101,69,110,102,111,114,99,101,70,111,99,117,115,83,101,108,101,99,116,111,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,97,40,116,104,105,115,46,105,103,110,111,114,101,69,110,102,111,114,99,101,70,111,99,117,115,83,101,108,101,99,116,111,114,41,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,44,34,41,46,116,114,105,109,40,41,125,44,99,111,109,112,117,116,101,100,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,115,116,97,116,105,99,63,123,125,58,116,104,105,115,46,115,99,111,112,101,100,83,116,121,108,101,65,116,116,114,115,59,114,101,116,117,114,110,32,119,107,40,119,107,40,119,107,40,123,125,44,116,41,44,116,104,105,115,46,98,118,65,116,116,114,115,41,44,123,125,44,123,105,100,58,116,104,105,115,46,109,111,100,97,108,79,117,116,101,114,73,100,125,41,125,44,99,111,109,112,117,116,101,100,77,111,100,97,108,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,105,115,86,105,115,105,98,108,101,44,101,61,116,104,105,115,46,97,114,105,97,76,97,98,101,108,59,114,101,116,117,114,110,123,105,100,58,116,104,105,115,46,109,111,100,97,108,73,100,44,114,111,108,101,58,34,100,105,97,108,111,103,34,44,34,97,114,105,97,45,104,105,100,100,101,110,34,58,116,63,110,117,108,108,58,34,116,114,117,101,34,44,34,97,114,105,97,45,109,111,100,97,108,34,58,116,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,108,97,98,101,108,34,58,101,44,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,58,116,104,105,115,46,104,105,100,101,72,101,97,100,101,114,124,124,101,124,124,33,40,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,119,97,41,124,124,116,104,105,115,46,116,105,116,108,101,72,116,109,108,124,124,116,104,105,115,46,116,105,116,108,101,41,63,110,117,108,108,58,116,104,105,115,46,109,111,100,97,108,84,105,116,108,101,73,100,44,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,58,116,104,105,115,46,109,111,100,97,108,66,111,100,121,73,100,125,125,125,44,119,97,116,99,104,58,95,107,40,123,125,44,107,107,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,116,104,105,115,91,116,63,34,115,104,111,119,34,58,34,104,105,100,101,34,93,40,41,125,41,41,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,61,110,117,108,108,44,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,61,116,104,105,115,46,114,101,116,117,114,110,70,111,99,117,115,124,124,110,117,108,108,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,122,73,110,100,101,120,61,98,107,46,103,101,116,66,97,115,101,90,73,110,100,101,120,40,41,44,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,84,99,40,115,114,44,90,105,41,44,116,104,105,115,46,115,104,111,119,72,97,110,100,108,101,114,41,44,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,84,99,40,115,114,44,84,105,41,44,116,104,105,115,46,104,105,100,101,72,97,110,100,108,101,114,41,44,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,84,99,40,115,114,44,114,111,41,44,116,104,105,115,46,116,111,103,103,108,101,72,97,110,100,108,101,114,41,44,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,80,99,40,115,114,44,90,105,41,44,116,104,105,115,46,109,111,100,97,108,76,105,115,116,101,110,101,114,41,44,33,48,61,61,61,116,104,105,115,91,107,107,93,38,38,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,115,104,111,119,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,40,33,49,41,44,116,104,105,115,46,105,115,86,105,115,105,98,108,101,38,38,40,116,104,105,115,46,105,115,86,105,115,105,98,108,101,61,33,49,44,116,104,105,115,46,105,115,83,104,111,119,61,33,49,44,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,41,125,44,109,101,116,104,111,100,115,58,123,115,101,116,79,98,115,101,114,118,101,114,58,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,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,59,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,38,38,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,46,100,105,115,99,111,110,110,101,99,116,40,41,44,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,61,110,117,108,108,44,116,38,38,40,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,61,97,112,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,44,116,104,105,115,46,99,104,101,99,107,77,111,100,97,108,79,118,101,114,102,108,111,119,46,98,105,110,100,40,116,104,105,115,41,44,77,107,41,41,125,44,117,112,100,97,116,101,77,111,100,101,108,58,102,117,110,99,116,105,111,110,40,116,41,123,116,33,61,61,116,104,105,115,91,107,107,93,38,38,116,104,105,115,46,36,101,109,105,116,40,67,107,44,116,41,125,44,98,117,105,108,100,69,118,101,110,116,58,102,117,110,99,116,105,111,110,40,116,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,49,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,123,125,59,114,101,116,117,114,110,32,110,101,119,32,104,107,40,116,44,119,107,40,119,107,40,123,99,97,110,99,101,108,97,98,108,101,58,33,49,44,116,97,114,103,101,116,58,116,104,105,115,46,36,114,101,102,115,46,109,111,100,97,108,124,124,116,104,105,115,46,36,101,108,124,124,110,117,108,108,44,114,101,108,97,116,101,100,84,97,114,103,101,116,58,110,117,108,108,44,116,114,105,103,103,101,114,58,110,117,108,108,125,44,101,41,44,123,125,44,123,118,117,101,84,97,114,103,101,116,58,116,104,105,115,44,99,111,109,112,111,110,101,110,116,73,100,58,116,104,105,115,46,109,111,100,97,108,73,100,125,41,41,125,44,115,104,111,119,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,105,115,86,105,115,105,98,108,101,38,38,33,116,104,105,115,46,105,115,79,112,101,110,105,110,103,41,105,102,40,116,104,105,115,46,105,115,67,108,111,115,105,110,103,41,116,104,105,115,46,36,111,110,99,101,40,80,105,44,116,104,105,115,46,115,104,111,119,41,59,101,108,115,101,123,116,104,105,115,46,105,115,79,112,101,110,105,110,103,61,33,48,44,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,61,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,124,124,116,104,105,115,46,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,40,41,59,118,97,114,32,116,61,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,90,105,44,123,99,97,110,99,101,108,97,98,108,101,58,33,48,125,41,59,105,102,40,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,116,41,44,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,116,104,105,115,46,105,115,86,105,115,105,98,108,101,41,114,101,116,117,114,110,32,116,104,105,115,46,105,115,79,112,101,110,105,110,103,61,33,49,44,118,111,105,100,32,116,104,105,115,46,117,112,100,97,116,101,77,111,100,101,108,40,33,49,41,59,116,104,105,115,46,100,111,83,104,111,119,40,41,125,125,44,104,105,100,101,58,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,34,34,59,105,102,40,116,104,105,115,46,105,115,86,105,115,105,98,108,101,38,38,33,116,104,105,115,46,105,115,67,108,111,115,105,110,103,41,123,116,104,105,115,46,105,115,67,108,111,115,105,110,103,61,33,48,59,118,97,114,32,101,61,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,84,105,44,123,99,97,110,99,101,108,97,98,108,101,58,116,33,61,61,106,107,44,116,114,105,103,103,101,114,58,116,124,124,110,117,108,108,125,41,59,105,102,40,116,61,61,61,76,107,63,116,104,105,115,46,36,101,109,105,116,40,77,105,44,101,41,58,116,61,61,61,68,107,63,116,104,105,115,46,36,101,109,105,116,40,99,105,44,101,41,58,116,61,61,61,65,107,38,38,116,104,105,115,46,36,101,109,105,116,40,104,105,44,101,41,44,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,101,41,44,101,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,33,116,104,105,115,46,105,115,86,105,115,105,98,108,101,41,114,101,116,117,114,110,32,116,104,105,115,46,105,115,67,108,111,115,105,110,103,61,33,49,44,118,111,105,100,32,116,104,105,115,46,117,112,100,97,116,101,77,111,100,101,108,40,33,48,41,59,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,40,33,49,41,44,116,104,105,115,46,105,115,86,105,115,105,98,108,101,61,33,49,44,116,104,105,115,46,117,112,100,97,116,101,77,111,100,101,108,40,33,49,41,125,125,44,116,111,103,103,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,40,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,61,116,41,44,116,104,105,115,46,105,115,86,105,115,105,98,108,101,63,116,104,105,115,46,104,105,100,101,40,69,107,41,58,116,104,105,115,46,115,104,111,119,40,41,125,44,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,121,115,40,117,63,91,100,111,99,117,109,101,110,116,46,98,111,100,121,93,58,91,93,41,59,114,101,116,117,114,110,32,116,38,38,116,46,102,111,99,117,115,63,116,58,110,117,108,108,125,44,100,111,83,104,111,119,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,98,107,46,109,111,100,97,108,115,65,114,101,79,112,101,110,38,38,116,104,105,115,46,110,111,83,116,97,99,107,105,110,103,63,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,79,110,99,101,40,80,99,40,115,114,44,80,105,41,44,116,104,105,115,46,100,111,83,104,111,119,41,58,40,98,107,46,114,101,103,105,115,116,101,114,77,111,100,97,108,40,116,104,105,115,41,44,116,104,105,115,46,105,115,72,105,100,100,101,110,61,33,49,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,105,115,86,105,115,105,98,108,101,61,33,48,44,116,46,105,115,79,112,101,110,105,110,103,61,33,49,44,116,46,117,112,100,97,116,101,77,111,100,101,108,40,33,48,41,44,116,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,115,101,116,79,98,115,101,114,118,101,114,40,33,48,41,125,41,41,125,41,41,41,125,44,111,110,66,101,102,111,114,101,69,110,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,44,116,104,105,115,46,115,101,116,82,101,115,105,122,101,69,118,101,110,116,40,33,48,41,125,44,111,110,69,110,116,101,114,58,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,105,115,66,108,111,99,107,61,33,48,44,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,105,115,83,104,111,119,61,33,48,125,41,41,125,41,41,125,44,111,110,65,102,116,101,114,69,110,116,101,114,58,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,99,104,101,99,107,77,111,100,97,108,79,118,101,114,102,108,111,119,40,41,44,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,101,109,105,116,69,118,101,110,116,40,116,46,98,117,105,108,100,69,118,101,110,116,40,74,105,41,41,44,116,46,115,101,116,69,110,102,111,114,99,101,70,111,99,117,115,40,33,48,41,44,116,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,102,111,99,117,115,70,105,114,115,116,40,41,125,41,41,125,41,41,125,44,111,110,66,101,102,111,114,101,76,101,97,118,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,44,116,104,105,115,46,115,101,116,82,101,115,105,122,101,69,118,101,110,116,40,33,49,41,44,116,104,105,115,46,115,101,116,69,110,102,111,114,99,101,70,111,99,117,115,40,33,49,41,125,44,111,110,76,101,97,118,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,83,104,111,119,61,33,49,125,44,111,110,65,102,116,101,114,76,101,97,118,101,58,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,105,115,66,108,111,99,107,61,33,49,44,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,105,115,77,111,100,97,108,79,118,101,114,102,108,111,119,105,110,103,61,33,49,44,116,104,105,115,46,105,115,72,105,100,100,101,110,61,33,48,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,105,115,67,108,111,115,105,110,103,61,33,49,44,98,107,46,117,110,114,101,103,105,115,116,101,114,77,111,100,97,108,40,116,41,44,116,46,114,101,116,117,114,110,70,111,99,117,115,84,111,40,41,44,116,46,101,109,105,116,69,118,101,110,116,40,116,46,98,117,105,108,100,69,118,101,110,116,40,80,105,41,41,125,41,41,125,44,101,109,105,116,69,118,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,116,121,112,101,59,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,80,99,40,115,114,44,101,41,44,116,44,116,46,99,111,109,112,111,110,101,110,116,73,100,41,44,116,104,105,115,46,36,101,109,105,116,40,101,44,116,41,125,44,111,110,68,105,97,108,111,103,77,111,117,115,101,100,111,119,110,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,36,114,101,102,115,46,109,111,100,97,108,44,110,61,102,117,110,99,116,105,111,110,32,110,40,114,41,123,79,99,40,101,44,34,109,111,117,115,101,117,112,34,44,110,44,104,111,41,44,114,46,116,97,114,103,101,116,61,61,61,101,38,38,40,116,46,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,48,41,125,59,120,99,40,101,44,34,109,111,117,115,101,117,112,34,44,110,44,104,111,41,125,44,111,110,67,108,105,99,107,79,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,63,116,104,105,115,46,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,49,58,116,104,105,115,46,105,115,86,105,115,105,98,108,101,38,38,33,116,104,105,115,46,110,111,67,108,111,115,101,79,110,66,97,99,107,100,114,111,112,38,38,106,115,40,100,111,99,117,109,101,110,116,46,98,111,100,121,44,116,46,116,97,114,103,101,116,41,38,38,40,106,115,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,44,116,46,116,97,114,103,101,116,41,124,124,116,104,105,115,46,104,105,100,101,40,80,107,41,41,125,44,111,110,79,107,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,105,100,101,40,76,107,41,125,44,111,110,67,97,110,99,101,108,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,105,100,101,40,68,107,41,125,44,111,110,67,108,111,115,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,105,100,101,40,65,107,41,125,44,111,110,69,115,99,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,107,101,121,67,111,100,101,61,61,61,104,108,38,38,116,104,105,115,46,105,115,86,105,115,105,98,108,101,38,38,33,116,104,105,115,46,110,111,67,108,111,115,101,79,110,69,115,99,38,38,116,104,105,115,46,104,105,100,101,40,84,107,41,125,44,102,111,99,117,115,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,44,110,61,116,46,116,97,114,103,101,116,59,105,102,40,33,40,116,104,105,115,46,110,111,69,110,102,111,114,99,101,70,111,99,117,115,124,124,33,116,104,105,115,46,105,115,84,111,112,124,124,33,116,104,105,115,46,105,115,86,105,115,105,98,108,101,124,124,33,101,124,124,100,111,99,117,109,101,110,116,61,61,61,110,124,124,106,115,40,101,44,110,41,124,124,116,104,105,115,46,99,111,109,112,117,116,101,73,103,110,111,114,101,69,110,102,111,114,99,101,70,111,99,117,115,83,101,108,101,99,116,111,114,38,38,84,115,40,116,104,105,115,46,99,111,109,112,117,116,101,73,103,110,111,114,101,69,110,102,111,114,99,101,70,111,99,117,115,83,101,108,101,99,116,111,114,44,110,44,33,48,41,41,41,123,118,97,114,32,114,61,71,115,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,41,44,105,61,116,104,105,115,46,36,114,101,102,115,91,34,98,111,116,116,111,109,45,116,114,97,112,34,93,44,111,61,116,104,105,115,46,36,114,101,102,115,91,34,116,111,112,45,116,114,97,112,34,93,59,105,102,40,105,38,38,110,61,61,61,105,41,123,105,102,40,113,115,40,114,91,48,93,41,41,114,101,116,117,114,110,125,101,108,115,101,32,105,102,40,111,38,38,110,61,61,61,111,38,38,113,115,40,114,91,114,46,108,101,110,103,116,104,45,49,93,41,41,114,101,116,117,114,110,59,113,115,40,101,44,123,112,114,101,118,101,110,116,83,99,114,111,108,108,58,33,48,125,41,125,125,44,115,101,116,69,110,102,111,114,99,101,70,111,99,117,115,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,108,105,115,116,101,110,68,111,99,117,109,101,110,116,40,116,44,34,102,111,99,117,115,105,110,34,44,116,104,105,115,46,102,111,99,117,115,72,97,110,100,108,101,114,41,125,44,115,101,116,82,101,115,105,122,101,69,118,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,108,105,115,116,101,110,87,105,110,100,111,119,40,116,44,34,114,101,115,105,122,101,34,44,116,104,105,115,46,99,104,101,99,107,77,111,100,97,108,79,118,101,114,102,108,111,119,41,44,116,104,105,115,46,108,105,115,116,101,110,87,105,110,100,111,119,40,116,44,34,111,114,105,101,110,116,97,116,105,111,110,99,104,97,110,103,101,34,44,116,104,105,115,46,99,104,101,99,107,77,111,100,97,108,79,118,101,114,102,108,111,119,41,125,44,115,104,111,119,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,61,61,61,116,104,105,115,46,109,111,100,97,108,73,100,38,38,40,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,61,101,124,124,116,104,105,115,46,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,40,41,44,116,104,105,115,46,115,104,111,119,40,41,41,125,44,104,105,100,101,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,116,61,61,61,116,104,105,115,46,109,111,100,97,108,73,100,38,38,116,104,105,115,46,104,105,100,101,40,34,101,118,101,110,116,34,41,125,44,116,111,103,103,108,101,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,61,61,61,116,104,105,115,46,109,111,100,97,108,73,100,38,38,116,104,105,115,46,116,111,103,103,108,101,40,101,41,125,44,109,111,100,97,108,76,105,115,116,101,110,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,110,111,83,116,97,99,107,105,110,103,38,38,116,46,118,117,101,84,97,114,103,101,116,33,61,61,116,104,105,115,38,38,116,104,105,115,46,104,105,100,101,40,41,125,44,102,111,99,117,115,70,105,114,115,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,117,38,38,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,46,36,114,101,102,115,46,109,111,100,97,108,44,110,61,116,46,36,114,101,102,115,46,99,111,110,116,101,110,116,44,114,61,116,46,103,101,116,65,99,116,105,118,101,69,108,101,109,101,110,116,40,41,59,105,102,40,101,38,38,110,38,38,40,33,114,124,124,33,106,115,40,110,44,114,41,41,41,123,118,97,114,32,105,61,116,46,36,114,101,102,115,91,34,111,107,45,98,117,116,116,111,110,34,93,44,111,61,116,46,36,114,101,102,115,91,34,99,97,110,99,101,108,45,98,117,116,116,111,110,34,93,44,97,61,116,46,36,114,101,102,115,91,34,99,108,111,115,101,45,98,117,116,116,111,110,34,93,44,115,61,116,46,97,117,116,111,70,111,99,117,115,66,117,116,116,111,110,44,99,61,115,61,61,61,76,107,38,38,105,63,105,46,36,101,108,124,124,105,58,115,61,61,61,68,107,38,38,111,63,111,46,36,101,108,124,124,111,58,115,61,61,61,65,107,38,38,97,63,97,46,36,101,108,124,124,97,58,110,59,113,115,40,99,41,44,99,61,61,61,110,38,38,116,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,115,99,114,111,108,108,84,111,112,61,48,125,41,41,125,125,41,41,125,44,114,101,116,117,114,110,70,111,99,117,115,84,111,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,114,101,116,117,114,110,70,111,99,117,115,124,124,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,124,124,110,117,108,108,59,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,61,110,117,108,108,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,61,79,116,40,116,41,63,67,115,40,116,41,58,116,44,116,38,38,40,116,61,116,46,36,101,108,124,124,116,44,113,115,40,116,41,41,125,41,41,125,44,99,104,101,99,107,77,111,100,97,108,79,118,101,114,102,108,111,119,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,105,115,86,105,115,105,98,108,101,41,123,118,97,114,32,116,61,116,104,105,115,46,36,114,101,102,115,46,109,111,100,97,108,59,116,104,105,115,46,105,115,77,111,100,97,108,79,118,101,114,102,108,111,119,105,110,103,61,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,125,125,44,109,97,107,101,77,111,100,97,108,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,40,41,59,105,102,40,33,116,104,105,115,46,104,105,100,101,72,101,97,100,101,114,41,123,118,97,114,32,110,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,109,97,44,116,104,105,115,46,115,108,111,116,83,99,111,112,101,41,59,105,102,40,33,110,41,123,118,97,114,32,114,61,116,40,41,59,116,104,105,115,46,104,105,100,101,72,101,97,100,101,114,67,108,111,115,101,124,124,40,114,61,116,40,68,99,44,123,112,114,111,112,115,58,123,99,111,110,116,101,110,116,58,116,104,105,115,46,104,101,97,100,101,114,67,108,111,115,101,67,111,110,116,101,110,116,44,100,105,115,97,98,108,101,100,58,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,44,97,114,105,97,76,97,98,101,108,58,116,104,105,115,46,104,101,97,100,101,114,67,108,111,115,101,76,97,98,101,108,44,116,101,120,116,86,97,114,105,97,110,116,58,116,104,105,115,46,104,101,97,100,101,114,67,108,111,115,101,86,97,114,105,97,110,116,124,124,116,104,105,115,46,104,101,97,100,101,114,84,101,120,116,86,97,114,105,97,110,116,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,67,108,111,115,101,125,44,114,101,102,58,34,99,108,111,115,101,45,98,117,116,116,111,110,34,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,98,97,41,93,41,41,44,110,61,91,116,40,116,104,105,115,46,116,105,116,108,101,84,97,103,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,111,100,97,108,45,116,105,116,108,101,34,44,99,108,97,115,115,58,116,104,105,115,46,116,105,116,108,101,67,108,97,115,115,101,115,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,109,111,100,97,108,84,105,116,108,101,73,100,125,44,100,111,109,80,114,111,112,115,58,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,119,97,41,63,123,125,58,67,102,40,116,104,105,115,46,116,105,116,108,101,72,116,109,108,44,116,104,105,115,46,116,105,116,108,101,41,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,119,97,44,116,104,105,115,46,115,108,111,116,83,99,111,112,101,41,41,44,114,93,125,101,61,116,40,34,104,101,97,100,101,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,111,100,97,108,45,104,101,97,100,101,114,34,44,99,108,97,115,115,58,116,104,105,115,46,104,101,97,100,101,114,67,108,97,115,115,101,115,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,109,111,100,97,108,72,101,97,100,101,114,73,100,125,44,114,101,102,58,34,104,101,97,100,101,114,34,125,44,91,110,93,41,125,118,97,114,32,105,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,111,100,97,108,45,98,111,100,121,34,44,99,108,97,115,115,58,116,104,105,115,46,98,111,100,121,67,108,97,115,115,101,115,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,109,111,100,97,108,66,111,100,121,73,100,125,44,114,101,102,58,34,98,111,100,121,34,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,85,111,44,116,104,105,115,46,115,108,111,116,83,99,111,112,101,41,41,44,111,61,116,40,41,59,105,102,40,33,116,104,105,115,46,104,105,100,101,70,111,111,116,101,114,41,123,118,97,114,32,97,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,103,97,44,116,104,105,115,46,115,108,111,116,83,99,111,112,101,41,59,105,102,40,33,97,41,123,118,97,114,32,115,61,116,40,41,59,116,104,105,115,46,111,107,79,110,108,121,124,124,40,115,61,116,40,110,102,44,123,112,114,111,112,115,58,123,118,97,114,105,97,110,116,58,116,104,105,115,46,99,97,110,99,101,108,86,97,114,105,97,110,116,44,115,105,122,101,58,116,104,105,115,46,98,117,116,116,111,110,83,105,122,101,44,100,105,115,97,98,108,101,100,58,116,104,105,115,46,99,97,110,99,101,108,68,105,115,97,98,108,101,100,124,124,116,104,105,115,46,98,117,115,121,124,124,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,125,44,100,111,109,80,114,111,112,115,58,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,118,97,41,63,123,125,58,67,102,40,116,104,105,115,46,99,97,110,99,101,108,84,105,116,108,101,72,116,109,108,44,116,104,105,115,46,99,97,110,99,101,108,84,105,116,108,101,41,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,67,97,110,99,101,108,125,44,114,101,102,58,34,99,97,110,99,101,108,45,98,117,116,116,111,110,34,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,118,97,41,41,41,59,118,97,114,32,99,61,116,40,110,102,44,123,112,114,111,112,115,58,123,118,97,114,105,97,110,116,58,116,104,105,115,46,111,107,86,97,114,105,97,110,116,44,115,105,122,101,58,116,104,105,115,46,98,117,116,116,111,110,83,105,122,101,44,100,105,115,97,98,108,101,100,58,116,104,105,115,46,111,107,68,105,115,97,98,108,101,100,124,124,116,104,105,115,46,98,117,115,121,124,124,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,125,44,100,111,109,80,114,111,112,115,58,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,121,97,41,63,123,125,58,67,102,40,116,104,105,115,46,111,107,84,105,116,108,101,72,116,109,108,44,116,104,105,115,46,111,107,84,105,116,108,101,41,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,79,107,125,44,114,101,102,58,34,111,107,45,98,117,116,116,111,110,34,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,121,97,41,41,59,97,61,91,115,44,99,93,125,111,61,116,40,34,102,111,111,116,101,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,111,100,97,108,45,102,111,111,116,101,114,34,44,99,108,97,115,115,58,116,104,105,115,46,102,111,111,116,101,114,67,108,97,115,115,101,115,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,109,111,100,97,108,70,111,111,116,101,114,73,100,125,44,114,101,102,58,34,102,111,111,116,101,114,34,125,44,91,97,93,41,125,118,97,114,32,117,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,111,100,97,108,45,99,111,110,116,101,110,116,34,44,99,108,97,115,115,58,116,104,105,115,46,99,111,110,116,101,110,116,67,108,97,115,115,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,109,111,100,97,108,67,111,110,116,101,110,116,73,100,44,116,97,98,105,110,100,101,120,58,34,45,49,34,125,44,114,101,102,58,34,99,111,110,116,101,110,116,34,125,44,91,101,44,105,44,111,93,41,44,108,61,116,40,41,44,102,61,116,40,41,59,116,104,105,115,46,105,115,86,105,115,105,98,108,101,38,38,33,116,104,105,115,46,110,111,69,110,102,111,114,99,101,70,111,99,117,115,38,38,40,108,61,116,40,34,115,112,97,110,34,44,123,97,116,116,114,115,58,123,116,97,98,105,110,100,101,120,58,34,48,34,125,44,114,101,102,58,34,116,111,112,45,116,114,97,112,34,125,41,44,102,61,116,40,34,115,112,97,110,34,44,123,97,116,116,114,115,58,123,116,97,98,105,110,100,101,120,58,34,48,34,125,44,114,101,102,58,34,98,111,116,116,111,109,45,116,114,97,112,34,125,41,41,59,118,97,114,32,104,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,111,100,97,108,45,100,105,97,108,111,103,34,44,99,108,97,115,115,58,116,104,105,115,46,100,105,97,108,111,103,67,108,97,115,115,101,115,44,111,110,58,123,109,111,117,115,101,100,111,119,110,58,116,104,105,115,46,111,110,68,105,97,108,111,103,77,111,117,115,101,100,111,119,110,125,44,114,101,102,58,34,100,105,97,108,111,103,34,125,44,91,108,44,117,44,102,93,41,44,100,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,111,100,97,108,34,44,99,108,97,115,115,58,116,104,105,115,46,109,111,100,97,108,67,108,97,115,115,101,115,44,115,116,121,108,101,58,116,104,105,115,46,109,111,100,97,108,83,116,121,108,101,115,44,97,116,116,114,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,77,111,100,97,108,65,116,116,114,115,44,111,110,58,123,107,101,121,100,111,119,110,58,116,104,105,115,46,111,110,69,115,99,44,99,108,105,99,107,58,116,104,105,115,46,111,110,67,108,105,99,107,79,117,116,125,44,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,115,104,111,119,34,44,118,97,108,117,101,58,116,104,105,115,46,105,115,86,105,115,105,98,108,101,125,93,44,114,101,102,58,34,109,111,100,97,108,34,125,44,91,104,93,41,59,100,61,116,40,34,116,114,97,110,115,105,116,105,111,110,34,44,123,112,114,111,112,115,58,123,101,110,116,101,114,67,108,97,115,115,58,34,34,44,101,110,116,101,114,84,111,67,108,97,115,115,58,34,34,44,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,58,34,34,44,108,101,97,118,101,67,108,97,115,115,58,34,34,44,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,58,34,34,44,108,101,97,118,101,84,111,67,108,97,115,115,58,34,34,125,44,111,110,58,123,98,101,102,111,114,101,69,110,116,101,114,58,116,104,105,115,46,111,110,66,101,102,111,114,101,69,110,116,101,114,44,101,110,116,101,114,58,116,104,105,115,46,111,110,69,110,116,101,114,44,97,102,116,101,114,69,110,116,101,114,58,116,104,105,115,46,111,110,65,102,116,101,114,69,110,116,101,114,44,98,101,102,111,114,101,76,101,97,118,101,58,116,104,105,115,46,111,110,66,101,102,111,114,101,76,101,97,118,101,44,108,101,97,118,101,58,116,104,105,115,46,111,110,76,101,97,118,101,44,97,102,116,101,114,76,101,97,118,101,58,116,104,105,115,46,111,110,65,102,116,101,114,76,101,97,118,101,125,125,44,91,100,93,41,59,118,97,114,32,112,61,116,40,41,59,114,101,116,117,114,110,33,116,104,105,115,46,104,105,100,101,66,97,99,107,100,114,111,112,38,38,116,104,105,115,46,105,115,86,105,115,105,98,108,101,38,38,40,112,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,111,100,97,108,45,98,97,99,107,100,114,111,112,34,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,109,111,100,97,108,66,97,99,107,100,114,111,112,73,100,125,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,112,97,41,41,41,44,112,61,116,40,78,99,44,123,112,114,111,112,115,58,123,110,111,70,97,100,101,58,116,104,105,115,46,110,111,70,97,100,101,125,125,44,91,112,93,41,44,116,40,34,100,105,118,34,44,123,115,116,121,108,101,58,116,104,105,115,46,109,111,100,97,108,79,117,116,101,114,83,116,121,108,101,44,97,116,116,114,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,107,101,121,58,34,109,111,100,97,108,45,111,117,116,101,114,45,34,46,99,111,110,99,97,116,40,116,104,105,115,91,70,101,93,41,125,44,91,100,44,112,93,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,105,99,63,116,104,105,115,46,108,97,122,121,38,38,116,104,105,115,46,105,115,72,105,100,100,101,110,63,116,40,41,58,116,104,105,115,46,109,97,107,101,77,111,100,97,108,40,116,41,58,116,104,105,115,46,105,115,72,105,100,100,101,110,63,116,40,41,58,116,40,75,83,44,91,116,104,105,115,46,109,97,107,101,77,111,100,97,108,40,116,41,93,41,125,125,41,44,82,107,61,84,99,40,115,114,44,90,105,41,44,78,107,61,34,95,95,98,118,95,109,111,100,97,108,95,100,105,114,101,99,116,105,118,101,95,95,34,44,66,107,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,109,111,100,105,102,105,101,114,115,44,110,61,118,111,105,100,32,48,61,61,61,101,63,123,125,58,101,44,114,61,116,46,97,114,103,44,105,61,116,46,118,97,108,117,101,59,114,101,116,117,114,110,32,79,116,40,105,41,63,105,58,79,116,40,114,41,63,114,58,86,116,40,110,41,46,114,101,118,101,114,115,101,40,41,91,48,93,125,44,122,107,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,80,115,40,116,44,34,46,100,114,111,112,100,111,119,110,45,109,101,110,117,32,62,32,108,105,44,32,108,105,46,110,97,118,45,105,116,101,109,34,41,38,38,67,115,40,34,97,44,32,98,117,116,116,111,110,34,44,116,41,124,124,116,125,44,86,107,61,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,34,66,85,84,84,79,78,34,33,61,61,116,46,116,97,103,78,97,109,101,38,38,40,70,115,40,116,44,34,114,111,108,101,34,41,124,124,73,115,40,116,44,34,114,111,108,101,34,44,34,98,117,116,116,111,110,34,41,44,34,65,34,61,61,61,116,46,116,97,103,78,97,109,101,124,124,70,115,40,116,44,34,116,97,98,105,110,100,101,120,34,41,124,124,73,115,40,116,44,34,116,97,98,105,110,100,101,120,34,44,34,48,34,41,41,125,44,72,107,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,66,107,40,101,41,44,105,61,122,107,40,116,41,59,105,102,40,114,38,38,105,41,123,118,97,114,32,111,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,59,105,102,40,33,79,115,40,101,41,41,123,118,97,114,32,105,61,116,46,116,121,112,101,44,111,61,116,46,107,101,121,67,111,100,101,59,34,99,108,105,99,107,34,33,61,61,105,38,38,40,34,107,101,121,100,111,119,110,34,33,61,61,105,124,124,111,33,61,61,102,108,38,38,111,33,61,61,98,108,41,124,124,110,46,99,111,110,116,101,120,116,46,36,114,111,111,116,46,36,101,109,105,116,40,82,107,44,114,44,101,41,125,125,59,116,91,78,107,93,61,123,104,97,110,100,108,101,114,58,111,44,116,97,114,103,101,116,58,114,44,116,114,105,103,103,101,114,58,105,125,44,86,107,40,105,41,44,120,99,40,105,44,34,99,108,105,99,107,34,44,111,44,102,111,41,44,34,66,85,84,84,79,78,34,33,61,61,105,46,116,97,103,78,97,109,101,38,38,34,98,117,116,116,111,110,34,61,61,61,36,115,40,105,44,34,114,111,108,101,34,41,38,38,120,99,40,105,44,34,107,101,121,100,111,119,110,34,44,111,44,102,111,41,125,125,44,85,107,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,91,78,107,93,124,124,123,125,44,110,61,101,46,116,114,105,103,103,101,114,44,114,61,101,46,104,97,110,100,108,101,114,59,110,38,38,114,38,38,40,79,99,40,110,44,34,99,108,105,99,107,34,44,114,44,102,111,41,44,79,99,40,110,44,34,107,101,121,100,111,119,110,34,44,114,44,102,111,41,44,79,99,40,116,44,34,99,108,105,99,107,34,44,114,44,102,111,41,44,79,99,40,116,44,34,107,101,121,100,111,119,110,34,44,114,44,102,111,41,41,44,100,101,108,101,116,101,32,116,91,78,107,93,125,44,87,107,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,91,78,107,93,124,124,123,125,44,105,61,66,107,40,101,41,44,111,61,122,107,40,116,41,59,105,61,61,61,114,46,116,97,114,103,101,116,38,38,111,61,61,61,114,46,116,114,105,103,103,101,114,124,124,40,85,107,40,116,44,101,44,110,41,44,72,107,40,116,44,101,44,110,41,41,44,86,107,40,111,41,125,44,71,107,61,102,117,110,99,116,105,111,110,40,41,123,125,44,113,107,61,123,105,110,115,101,114,116,101,100,58,87,107,44,117,112,100,97,116,101,100,58,71,107,44,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,87,107,44,117,110,98,105,110,100,58,85,107,125,59,102,117,110,99,116,105,111,110,32,89,107,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,102,117,110,99,116,105,111,110,32,75,107,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,114,61,101,91,110,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,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,114,38,38,40,114,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,114,46,107,101,121,44,114,41,125,125,102,117,110,99,116,105,111,110,32,88,107,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,75,107,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,75,107,40,116,44,110,41,44,116,125,102,117,110,99,116,105,111,110,32,90,107,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,74,107,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,90,107,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,81,107,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,90,107,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,81,107,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,102,117,110,99,116,105,111,110,32,116,67,40,116,41,123,114,101,116,117,114,110,32,105,67,40,116,41,124,124,114,67,40,116,41,124,124,110,67,40,116,41,124,124,101,67,40,41,125,102,117,110,99,116,105,111,110,32,101,67,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,34,41,125,102,117,110,99,116,105,111,110,32,110,67,40,116,44,101,41,123,105,102,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,111,67,40,116,44,101,41,59,118,97,114,32,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,41,46,115,108,105,99,101,40,56,44,45,49,41,59,114,101,116,117,114,110,34,79,98,106,101,99,116,34,61,61,61,110,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,116,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,44,34,77,97,112,34,61,61,61,110,124,124,34,83,101,116,34,61,61,61,110,63,65,114,114,97,121,46,102,114,111,109,40,116,41,58,34,65,114,103,117,109,101,110,116,115,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,63,111,67,40,116,44,101,41,58,118,111,105,100,32,48,125,125,102,117,110,99,116,105,111,110,32,114,67,40,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,116,41,125,102,117,110,99,116,105,111,110,32,105,67,40,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,111,67,40,116,41,125,102,117,110,99,116,105,111,110,32,111,67,40,116,44,101,41,123,40,110,117,108,108,61,61,101,124,124,101,62,116,46,108,101,110,103,116,104,41,38,38,40,101,61,116,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,110,60,101,59,110,43,43,41,114,91,110,93,61,116,91,110,93,59,114,101,116,117,114,110,32,114,125,118,97,114,32,97,67,61,34,36,98,118,77,111,100,97,108,34,44,115,67,61,34,95,98,118,95,95,109,111,100,97,108,34,44,99,67,61,91,34,105,100,34,93,46,99,111,110,99,97,116,40,116,67,40,86,116,40,113,116,40,36,107,44,91,34,98,117,115,121,34,44,34,108,97,122,121,34,44,34,110,111,83,116,97,99,107,105,110,103,34,44,34,115,116,97,116,105,99,34,44,34,118,105,115,105,98,108,101,34,93,41,41,41,41,44,117,67,61,102,117,110,99,116,105,111,110,40,41,123,125,44,108,67,61,123,109,115,103,66,111,120,67,111,110,116,101,110,116,58,34,100,101,102,97,117,108,116,34,44,116,105,116,108,101,58,34,109,111,100,97,108,45,116,105,116,108,101,34,44,111,107,84,105,116,108,101,58,34,109,111,100,97,108,45,111,107,34,44,99,97,110,99,101,108,84,105,116,108,101,58,34,109,111,100,97,108,45,99,97,110,99,101,108,34,125,44,102,67,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,99,67,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,98,116,40,116,91,110,93,41,124,124,40,101,91,110,93,61,116,91,110,93,41,44,101,125,41,44,123,125,41,125,44,104,67,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,101,120,116,101,110,100,40,123,110,97,109,101,58,99,114,44,101,120,116,101,110,100,115,58,70,107,44,100,101,115,116,114,111,121,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,101,108,38,38,116,104,105,115,46,36,101,108,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,36,101,108,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,36,101,108,41,125,44,109,111,117,110,116,101,100,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,102,117,110,99,116,105,111,110,40,41,123,116,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,36,100,101,115,116,114,111,121,40,41,125,41,41,125,41,41,125,59,116,104,105,115,46,36,112,97,114,101,110,116,46,36,111,110,99,101,40,115,111,44,101,41,44,116,104,105,115,46,36,111,110,99,101,40,80,105,44,101,41,44,116,104,105,115,46,36,114,111,117,116,101,114,38,38,116,104,105,115,46,36,114,111,117,116,101,38,38,116,104,105,115,46,36,111,110,99,101,40,97,111,44,116,104,105,115,46,36,119,97,116,99,104,40,34,36,114,111,117,116,101,114,34,44,101,41,41,44,116,104,105,115,46,115,104,111,119,40,41,125,125,41,44,110,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,114,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,117,67,59,105,102,40,33,100,101,40,97,67,41,38,38,33,112,101,40,97,67,41,41,123,118,97,114,32,105,61,110,101,119,32,101,40,123,112,97,114,101,110,116,58,116,44,112,114,111,112,115,68,97,116,97,58,74,107,40,74,107,40,74,107,40,123,125,44,102,67,40,74,115,40,115,114,41,41,41,44,123,125,44,123,104,105,100,101,72,101,97,100,101,114,67,108,111,115,101,58,33,48,44,104,105,100,101,72,101,97,100,101,114,58,33,40,110,46,116,105,116,108,101,124,124,110,46,116,105,116,108,101,72,116,109,108,41,125,44,113,116,40,110,44,86,116,40,108,67,41,41,41,44,123,125,44,123,108,97,122,121,58,33,49,44,98,117,115,121,58,33,49,44,118,105,115,105,98,108,101,58,33,49,44,110,111,83,116,97,99,107,105,110,103,58,33,49,44,110,111,69,110,102,111,114,99,101,70,111,99,117,115,58,33,49,125,41,125,41,59,114,101,116,117,114,110,32,86,116,40,108,67,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,98,116,40,110,91,116,93,41,124,124,40,105,46,36,115,108,111,116,115,91,108,67,91,116,93,93,61,89,97,40,110,91,116,93,41,41,125,41,41,44,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,33,49,59,105,46,36,111,110,99,101,40,115,111,44,40,102,117,110,99,116,105,111,110,40,41,123,110,124,124,101,40,110,101,119,32,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,86,117,101,32,77,115,103,66,111,120,32,100,101,115,116,114,111,121,101,100,32,98,101,102,111,114,101,32,114,101,115,111,108,118,101,34,41,41,125,41,41,44,105,46,36,111,110,40,84,105,44,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,101,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,123,118,97,114,32,105,61,114,40,101,41,59,101,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,40,110,61,33,48,44,116,40,105,41,41,125,125,41,41,59,118,97,114,32,111,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,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,111,41,44,105,46,36,109,111,117,110,116,40,111,41,125,41,41,125,125,44,114,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,114,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,123,125,44,105,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,51,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,105,102,40,101,38,38,33,112,101,40,97,67,41,38,38,33,100,101,40,97,67,41,38,38,95,116,40,105,41,41,114,101,116,117,114,110,32,110,40,116,44,74,107,40,74,107,40,123,125,44,102,67,40,114,41,41,44,123,125,44,123,109,115,103,66,111,120,67,111,110,116,101,110,116,58,101,125,41,44,105,41,125,44,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,101,41,123,89,107,40,116,104,105,115,44,116,41,44,70,116,40,116,104,105,115,44,123,95,118,109,58,101,44,95,114,111,111,116,58,101,46,36,114,111,111,116,125,41,44,78,116,40,116,104,105,115,44,123,95,118,109,58,88,116,40,41,44,95,114,111,111,116,58,88,116,40,41,125,41,125,114,101,116,117,114,110,32,88,107,40,116,44,91,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,116,41,123,105,102,40,116,38,38,116,104,105,115,46,95,114,111,111,116,41,123,102,111,114,40,118,97,114,32,101,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,110,62,49,63,110,45,49,58,48,41,44,105,61,49,59,105,60,110,59,105,43,43,41,114,91,105,45,49,93,61,97,114,103,117,109,101,110,116,115,91,105,93,59,40,101,61,116,104,105,115,46,95,114,111,111,116,41,46,36,101,109,105,116,46,97,112,112,108,121,40,101,44,91,84,99,40,115,114,44,34,115,104,111,119,34,41,44,116,93,46,99,111,110,99,97,116,40,114,41,41,125,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,116,41,123,105,102,40,116,38,38,116,104,105,115,46,95,114,111,111,116,41,123,102,111,114,40,118,97,114,32,101,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,110,62,49,63,110,45,49,58,48,41,44,105,61,49,59,105,60,110,59,105,43,43,41,114,91,105,45,49,93,61,97,114,103,117,109,101,110,116,115,91,105,93,59,40,101,61,116,104,105,115,46,95,114,111,111,116,41,46,36,101,109,105,116,46,97,112,112,108,121,40,101,44,91,84,99,40,115,114,44,34,104,105,100,101,34,41,44,116,93,46,99,111,110,99,97,116,40,114,41,41,125,125,125,44,123,107,101,121,58,34,109,115,103,66,111,120,79,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,101,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,44,110,61,74,107,40,74,107,40,123,125,44,101,41,44,123,125,44,123,111,107,79,110,108,121,58,33,48,44,111,107,68,105,115,97,98,108,101,100,58,33,49,44,104,105,100,101,70,111,111,116,101,114,58,33,49,44,109,115,103,66,111,120,67,111,110,116,101,110,116,58,116,125,41,59,114,101,116,117,114,110,32,114,40,116,104,105,115,46,95,118,109,44,116,44,110,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,41,41,125,125,44,123,107,101,121,58,34,109,115,103,66,111,120,67,111,110,102,105,114,109,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,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,49,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,123,125,44,110,61,74,107,40,74,107,40,123,125,44,101,41,44,123,125,44,123,111,107,79,110,108,121,58,33,49,44,111,107,68,105,115,97,98,108,101,100,58,33,49,44,99,97,110,99,101,108,68,105,115,97,98,108,101,100,58,33,49,44,104,105,100,101,70,111,111,116,101,114,58,33,49,125,41,59,114,101,116,117,114,110,32,114,40,116,104,105,115,46,95,118,109,44,116,44,110,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,116,114,105,103,103,101,114,59,114,101,116,117,114,110,34,111,107,34,61,61,61,101,124,124,34,99,97,110,99,101,108,34,33,61,61,101,38,38,110,117,108,108,125,41,41,125,125,93,41,44,116,125,40,41,59,116,46,109,105,120,105,110,40,123,98,101,102,111,114,101,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,91,115,67,93,61,110,101,119,32,105,40,116,104,105,115,41,125,125,41,44,72,116,40,116,46,112,114,111,116,111,116,121,112,101,44,97,67,41,124,124,66,116,40,116,46,112,114,111,116,111,116,121,112,101,44,97,67,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,38,38,116,104,105,115,91,115,67,93,124,124,104,101,40,39,34,39,46,99,111,110,99,97,116,40,97,67,44,39,34,32,109,117,115,116,32,98,101,32,97,99,99,101,115,115,101,100,32,102,114,111,109,32,97,32,86,117,101,32,105,110,115,116,97,110,99,101,32,34,116,104,105,115,34,32,99,111,110,116,101,120,116,46,39,41,44,115,114,41,44,116,104,105,115,91,115,67,93,125,125,41,125,44,100,67,61,67,101,40,123,112,108,117,103,105,110,115,58,123,112,108,117,103,105,110,58,104,67,125,125,41,44,112,67,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,77,111,100,97,108,58,70,107,125,44,100,105,114,101,99,116,105,118,101,115,58,123,86,66,77,111,100,97,108,58,113,107,125,44,112,108,117,103,105,110,115,58,123,66,86,77,111,100,97,108,80,108,117,103,105,110,58,100,67,125,125,41,59,102,117,110,99,116,105,111,110,32,118,67,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,118,97,114,32,103,67,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,34,108,101,102,116,34,61,61,61,116,63,34,115,116,97,114,116,34,58,34,114,105,103,104,116,34,61,61,61,116,63,34,101,110,100,34,58,116,44,34,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,34,46,99,111,110,99,97,116,40,116,41,125,44,109,67,61,100,99,40,123,97,108,105,103,110,58,117,99,40,120,111,41,44,99,97,114,100,72,101,97,100,101,114,58,117,99,40,103,111,44,33,49,41,44,102,105,108,108,58,117,99,40,103,111,44,33,49,41,44,106,117,115,116,105,102,105,101,100,58,117,99,40,103,111,44,33,49,41,44,112,105,108,108,115,58,117,99,40,103,111,44,33,49,41,44,115,109,97,108,108,58,117,99,40,103,111,44,33,49,41,44,116,97,98,115,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,117,108,34,41,44,118,101,114,116,105,99,97,108,58,117,99,40,103,111,44,33,49,41,125,44,117,114,41,44,98,67,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,117,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,109,67,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,101,46,112,114,111,112,115,44,105,61,101,46,100,97,116,97,44,111,61,101,46,99,104,105,108,100,114,101,110,44,97,61,114,46,116,97,98,115,44,115,61,114,46,112,105,108,108,115,44,99,61,114,46,118,101,114,116,105,99,97,108,44,117,61,114,46,97,108,105,103,110,44,108,61,114,46,99,97,114,100,72,101,97,100,101,114,59,114,101,116,117,114,110,32,116,40,114,46,116,97,103,44,36,101,40,105,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,110,97,118,34,44,99,108,97,115,115,58,40,110,61,123,34,110,97,118,45,116,97,98,115,34,58,97,44,34,110,97,118,45,112,105,108,108,115,34,58,115,38,38,33,97,44,34,99,97,114,100,45,104,101,97,100,101,114,45,116,97,98,115,34,58,33,99,38,38,108,38,38,97,44,34,99,97,114,100,45,104,101,97,100,101,114,45,112,105,108,108,115,34,58,33,99,38,38,108,38,38,115,38,38,33,97,44,34,102,108,101,120,45,99,111,108,117,109,110,34,58,99,44,34,110,97,118,45,102,105,108,108,34,58,33,99,38,38,114,46,102,105,108,108,44,34,110,97,118,45,106,117,115,116,105,102,105,101,100,34,58,33,99,38,38,114,46,106,117,115,116,105,102,105,101,100,125,44,118,67,40,110,44,103,67,40,117,41,44,33,99,38,38,117,41,44,118,67,40,110,44,34,115,109,97,108,108,34,44,114,46,115,109,97,108,108,41,44,110,41,125,41,44,111,41,125,125,41,59,102,117,110,99,116,105,111,110,32,121,67,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,119,67,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,121,67,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,95,67,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,121,67,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,95,67,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,118,97,114,32,120,67,61,113,116,40,122,108,44,91,34,101,118,101,110,116,34,44,34,114,111,117,116,101,114,84,97,103,34,93,41,44,79,67,61,100,99,40,75,116,40,119,67,40,119,67,40,123,125,44,120,67,41,44,123,125,44,123,108,105,110,107,65,116,116,114,115,58,117,99,40,119,111,44,123,125,41,44,108,105,110,107,67,108,97,115,115,101,115,58,117,99,40,107,111,41,125,41,41,44,118,114,41,44,83,67,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,118,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,79,67,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,108,105,115,116,101,110,101,114,115,44,111,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,34,108,105,34,44,36,101,40,113,116,40,114,44,91,34,111,110,34,93,41,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,110,97,118,45,105,116,101,109,34,125,41,44,91,116,40,86,108,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,110,97,118,45,108,105,110,107,34,44,99,108,97,115,115,58,110,46,108,105,110,107,67,108,97,115,115,101,115,44,97,116,116,114,115,58,110,46,108,105,110,107,65,116,116,114,115,44,112,114,111,112,115,58,102,99,40,120,67,44,110,41,44,111,110,58,105,125,44,111,41,93,41,125,125,41,44,107,67,61,123,125,44,67,67,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,109,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,107,67,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,100,97,116,97,44,114,61,101,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,116,40,34,108,105,34,44,36,101,40,110,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,110,97,118,98,97,114,45,116,101,120,116,34,125,41,44,114,41,125,125,41,59,102,117,110,99,116,105,111,110,32,80,67,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,84,67,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,80,67,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,106,67,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,80,67,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,106,67,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,118,97,114,32,69,67,61,113,116,40,116,98,44,91,34,105,110,108,105,110,101,34,93,41,44,68,67,61,100,99,40,75,116,40,84,67,40,84,67,40,123,125,44,69,67,41,44,123,125,44,123,102,111,114,109,67,108,97,115,115,58,117,99,40,107,111,41,125,41,41,44,112,114,41,44,65,67,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,112,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,68,67,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,101,46,108,105,115,116,101,110,101,114,115,44,97,61,116,40,101,98,44,123,99,108,97,115,115,58,110,46,102,111,114,109,67,108,97,115,115,44,112,114,111,112,115,58,84,67,40,84,67,40,123,125,44,102,99,40,69,67,44,110,41,41,44,123,125,44,123,105,110,108,105,110,101,58,33,48,125,41,44,97,116,116,114,115,58,114,46,97,116,116,114,115,44,111,110,58,111,125,44,105,41,59,114,101,116,117,114,110,32,116,40,34,108,105,34,44,36,101,40,113,116,40,114,44,91,34,97,116,116,114,115,34,44,34,111,110,34,93,41,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,111,114,109,45,105,110,108,105,110,101,34,125,41,44,91,97,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,76,67,40,116,41,123,114,101,116,117,114,110,32,70,67,40,116,41,124,124,36,67,40,116,41,124,124,77,67,40,116,41,124,124,73,67,40,41,125,102,117,110,99,116,105,111,110,32,73,67,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,34,41,125,102,117,110,99,116,105,111,110,32,77,67,40,116,44,101,41,123,105,102,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,82,67,40,116,44,101,41,59,118,97,114,32,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,41,46,115,108,105,99,101,40,56,44,45,49,41,59,114,101,116,117,114,110,34,79,98,106,101,99,116,34,61,61,61,110,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,116,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,44,34,77,97,112,34,61,61,61,110,124,124,34,83,101,116,34,61,61,61,110,63,65,114,114,97,121,46,102,114,111,109,40,116,41,58,34,65,114,103,117,109,101,110,116,115,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,63,82,67,40,116,44,101,41,58,118,111,105,100,32,48,125,125,102,117,110,99,116,105,111,110,32,36,67,40,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,116,41,125,102,117,110,99,116,105,111,110,32,70,67,40,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,82,67,40,116,41,125,102,117,110,99,116,105,111,110,32,82,67,40,116,44,101,41,123,40,110,117,108,108,61,61,101,124,124,101,62,116,46,108,101,110,103,116,104,41,38,38,40,101,61,116,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,110,60,101,59,110,43,43,41,114,91,110,93,61,116,91,110,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,78,67,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,66,67,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,78,67,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,122,67,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,78,67,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,122,67,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,118,97,114,32,86,67,61,100,99,40,75,116,40,66,67,40,66,67,40,123,125,44,68,104,41,44,71,116,40,68,109,44,91,93,46,99,111,110,99,97,116,40,76,67,40,86,116,40,67,109,41,41,44,91,34,104,116,109,108,34,44,34,108,97,122,121,34,44,34,109,101,110,117,67,108,97,115,115,34,44,34,110,111,67,97,114,101,116,34,44,34,114,111,108,101,34,44,34,116,101,120,116,34,44,34,116,111,103,103,108,101,67,108,97,115,115,34,93,41,41,41,41,44,103,114,41,44,72,67,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,103,114,44,109,105,120,105,110,115,58,91,65,104,44,80,109,44,119,99,93,44,112,114,111,112,115,58,86,67,44,99,111,109,112,117,116,101,100,58,123,116,111,103,103,108,101,73,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,115,97,102,101,73,100,40,34,95,66,86,95,116,111,103,103,108,101,95,34,41,125,44,100,114,111,112,100,111,119,110,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,116,104,105,115,46,100,105,114,101,99,116,105,111,110,67,108,97,115,115,44,116,104,105,115,46,98,111,117,110,100,97,114,121,67,108,97,115,115,44,123,115,104,111,119,58,116,104,105,115,46,118,105,115,105,98,108,101,125,93,125,44,109,101,110,117,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,116,104,105,115,46,109,101,110,117,67,108,97,115,115,44,123,34,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,34,58,116,104,105,115,46,114,105,103,104,116,44,115,104,111,119,58,116,104,105,115,46,118,105,115,105,98,108,101,125,93,125,44,116,111,103,103,108,101,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,116,104,105,115,46,116,111,103,103,108,101,67,108,97,115,115,44,123,34,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,110,111,45,99,97,114,101,116,34,58,116,104,105,115,46,110,111,67,97,114,101,116,125,93,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,116,111,103,103,108,101,73,100,44,110,61,116,104,105,115,46,118,105,115,105,98,108,101,44,114,61,116,104,105,115,46,104,105,100,101,44,105,61,116,40,86,108,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,110,97,118,45,108,105,110,107,32,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,44,99,108,97,115,115,58,116,104,105,115,46,116,111,103,103,108,101,67,108,97,115,115,101,115,44,112,114,111,112,115,58,123,104,114,101,102,58,34,35,34,46,99,111,110,99,97,116,40,116,104,105,115,46,105,100,124,124,34,34,41,44,100,105,115,97,98,108,101,100,58,116,104,105,115,46,100,105,115,97,98,108,101,100,125,44,97,116,116,114,115,58,123,105,100,58,101,44,114,111,108,101,58,34,98,117,116,116,111,110,34,44,34,97,114,105,97,45,104,97,115,112,111,112,117,112,34,58,34,116,114,117,101,34,44,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,58,110,63,34,116,114,117,101,34,58,34,102,97,108,115,101,34,125,44,111,110,58,123,109,111,117,115,101,100,111,119,110,58,116,104,105,115,46,111,110,77,111,117,115,101,100,111,119,110,44,99,108,105,99,107,58,116,104,105,115,46,116,111,103,103,108,101,44,107,101,121,100,111,119,110,58,116,104,105,115,46,116,111,103,103,108,101,125,44,114,101,102,58,34,116,111,103,103,108,101,34,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,91,122,111,44,66,97,93,41,124,124,116,40,34,115,112,97,110,34,44,123,100,111,109,80,114,111,112,115,58,67,102,40,116,104,105,115,46,104,116,109,108,44,116,104,105,115,46,116,101,120,116,41,125,41,93,41,44,111,61,116,40,34,117,108,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,114,111,112,100,111,119,110,45,109,101,110,117,34,44,99,108,97,115,115,58,116,104,105,115,46,109,101,110,117,67,108,97,115,115,101,115,44,97,116,116,114,115,58,123,116,97,98,105,110,100,101,120,58,34,45,49,34,44,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,58,101,125,44,111,110,58,123,107,101,121,100,111,119,110,58,116,104,105,115,46,111,110,75,101,121,100,111,119,110,125,44,114,101,102,58,34,109,101,110,117,34,125,44,33,116,104,105,115,46,108,97,122,121,124,124,110,63,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,85,111,44,123,104,105,100,101,58,114,125,41,58,91,116,40,41,93,41,59,114,101,116,117,114,110,32,116,40,34,108,105,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,110,97,118,45,105,116,101,109,32,98,45,110,97,118,45,100,114,111,112,100,111,119,110,32,100,114,111,112,100,111,119,110,34,44,99,108,97,115,115,58,116,104,105,115,46,100,114,111,112,100,111,119,110,67,108,97,115,115,101,115,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,125,125,44,91,105,44,111,93,41,125,125,41,44,85,67,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,78,97,118,58,98,67,44,66,78,97,118,73,116,101,109,58,83,67,44,66,78,97,118,84,101,120,116,58,67,67,44,66,78,97,118,70,111,114,109,58,65,67,44,66,78,97,118,73,116,101,109,68,114,111,112,100,111,119,110,58,72,67,44,66,78,97,118,73,116,101,109,68,100,58,72,67,44,66,78,97,118,68,114,111,112,100,111,119,110,58,72,67,44,66,78,97,118,68,100,58,72,67,125,44,112,108,117,103,105,110,115,58,123,68,114,111,112,100,111,119,110,80,108,117,103,105,110,58,118,98,125,125,41,59,102,117,110,99,116,105,111,110,32,87,67,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,118,97,114,32,71,67,61,100,99,40,123,102,105,120,101,100,58,117,99,40,120,111,41,44,112,114,105,110,116,58,117,99,40,103,111,44,33,49,41,44,115,116,105,99,107,121,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,110,97,118,34,41,44,116,111,103,103,108,101,97,98,108,101,58,117,99,40,106,111,44,33,49,41,44,116,121,112,101,58,117,99,40,120,111,44,34,108,105,103,104,116,34,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,108,114,41,44,113,67,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,108,114,44,109,105,120,105,110,115,58,91,119,99,93,44,112,114,111,118,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,98,118,78,97,118,98,97,114,58,116,104,105,115,125,125,44,112,114,111,112,115,58,71,67,44,99,111,109,112,117,116,101,100,58,123,98,114,101,97,107,112,111,105,110,116,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,116,111,103,103,108,101,97,98,108,101,44,101,61,81,115,40,41,91,48,93,44,110,61,110,117,108,108,59,114,101,116,117,114,110,32,116,38,38,79,116,40,116,41,38,38,116,33,61,61,101,63,110,61,34,110,97,118,98,97,114,45,101,120,112,97,110,100,45,34,46,99,111,110,99,97,116,40,116,41,58,33,49,61,61,61,116,38,38,40,110,61,34,110,97,118,98,97,114,45,101,120,112,97,110,100,34,41,44,110,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,116,104,105,115,46,116,97,103,44,114,61,116,104,105,115,46,116,121,112,101,44,105,61,116,104,105,115,46,118,97,114,105,97,110,116,44,111,61,116,104,105,115,46,102,105,120,101,100,59,114,101,116,117,114,110,32,116,40,110,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,110,97,118,98,97,114,34,44,99,108,97,115,115,58,91,40,101,61,123,34,100,45,112,114,105,110,116,34,58,116,104,105,115,46,112,114,105,110,116,44,34,115,116,105,99,107,121,45,116,111,112,34,58,116,104,105,115,46,115,116,105,99,107,121,125,44,87,67,40,101,44,34,110,97,118,98,97,114,45,34,46,99,111,110,99,97,116,40,114,41,44,114,41,44,87,67,40,101,44,34,98,103,45,34,46,99,111,110,99,97,116,40,105,41,44,105,41,44,87,67,40,101,44,34,102,105,120,101,100,45,34,46,99,111,110,99,97,116,40,111,41,44,111,41,44,101,41,44,116,104,105,115,46,98,114,101,97,107,112,111,105,110,116,67,108,97,115,115,93,44,97,116,116,114,115,58,123,114,111,108,101,58,119,115,40,110,44,34,110,97,118,34,41,63,110,117,108,108,58,34,110,97,118,105,103,97,116,105,111,110,34,125,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,89,67,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,118,97,114,32,75,67,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,34,108,101,102,116,34,61,61,61,116,63,34,115,116,97,114,116,34,58,34,114,105,103,104,116,34,61,61,61,116,63,34,101,110,100,34,58,116,44,34,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,34,46,99,111,110,99,97,116,40,116,41,125,44,88,67,61,100,99,40,71,116,40,109,67,44,91,34,116,97,103,34,44,34,102,105,108,108,34,44,34,106,117,115,116,105,102,105,101,100,34,44,34,97,108,105,103,110,34,44,34,115,109,97,108,108,34,93,41,44,104,114,41,44,90,67,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,104,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,88,67,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,101,46,112,114,111,112,115,44,105,61,101,46,100,97,116,97,44,111,61,101,46,99,104,105,108,100,114,101,110,44,97,61,114,46,97,108,105,103,110,59,114,101,116,117,114,110,32,116,40,114,46,116,97,103,44,36,101,40,105,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,110,97,118,98,97,114,45,110,97,118,34,44,99,108,97,115,115,58,40,110,61,123,34,110,97,118,45,102,105,108,108,34,58,114,46,102,105,108,108,44,34,110,97,118,45,106,117,115,116,105,102,105,101,100,34,58,114,46,106,117,115,116,105,102,105,101,100,125,44,89,67,40,110,44,75,67,40,97,41,44,97,41,44,89,67,40,110,44,34,115,109,97,108,108,34,44,114,46,115,109,97,108,108,41,44,110,41,125,41,44,111,41,125,125,41,59,102,117,110,99,116,105,111,110,32,74,67,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,81,67,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,74,67,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,116,80,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,74,67,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,116,80,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,118,97,114,32,101,80,61,113,116,40,122,108,44,91,34,101,118,101,110,116,34,44,34,114,111,117,116,101,114,84,97,103,34,93,41,59,101,80,46,104,114,101,102,46,100,101,102,97,117,108,116,61,118,111,105,100,32,48,44,101,80,46,116,111,46,100,101,102,97,117,108,116,61,118,111,105,100,32,48,59,118,97,114,32,110,80,61,100,99,40,75,116,40,81,67,40,81,67,40,123,125,44,101,80,41,44,123,125,44,123,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,125,41,41,44,102,114,41,44,114,80,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,102,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,110,80,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,101,46,100,97,116,97,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,110,46,116,111,124,124,110,46,104,114,101,102,44,97,61,111,63,86,108,58,110,46,116,97,103,59,114,101,116,117,114,110,32,116,40,97,44,36,101,40,114,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,110,97,118,98,97,114,45,98,114,97,110,100,34,44,112,114,111,112,115,58,111,63,102,99,40,101,80,44,110,41,58,123,125,125,41,44,105,41,125,125,41,44,105,80,61,34,110,97,118,98,97,114,45,116,111,103,103,108,101,114,34,44,111,80,61,80,99,40,102,110,44,34,115,116,97,116,101,34,41,44,97,80,61,80,99,40,102,110,44,34,115,121,110,99,45,115,116,97,116,101,34,41,44,115,80,61,100,99,40,123,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,108,97,98,101,108,58,117,99,40,120,111,44,34,84,111,103,103,108,101,32,110,97,118,105,103,97,116,105,111,110,34,41,44,116,97,114,103,101,116,58,117,99,40,67,111,44,118,111,105,100,32,48,44,33,48,41,125,44,100,114,41,44,99,80,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,100,114,44,100,105,114,101,99,116,105,118,101,115,58,123,86,66,84,111,103,103,108,101,58,69,118,125,44,109,105,120,105,110,115,58,91,80,108,44,119,99,93,44,112,114,111,112,115,58,115,80,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,116,111,103,103,108,101,83,116,97,116,101,58,33,49,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,111,80,44,116,104,105,115,46,104,97,110,100,108,101,83,116,97,116,101,69,118,116,41,44,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,97,80,44,116,104,105,115,46,104,97,110,100,108,101,83,116,97,116,101,69,118,116,41,125,44,109,101,116,104,111,100,115,58,123,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,104,105,115,46,36,101,109,105,116,40,102,105,44,116,41,125,44,104,97,110,100,108,101,83,116,97,116,101,69,118,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,61,61,61,116,104,105,115,46,116,97,114,103,101,116,38,38,40,116,104,105,115,46,116,111,103,103,108,101,83,116,97,116,101,61,101,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,100,105,115,97,98,108,101,100,59,114,101,116,117,114,110,32,116,40,34,98,117,116,116,111,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,105,80,44,99,108,97,115,115,58,123,100,105,115,97,98,108,101,100,58,101,125,44,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,86,66,84,111,103,103,108,101,34,44,118,97,108,117,101,58,116,104,105,115,46,116,97,114,103,101,116,125,93,44,97,116,116,114,115,58,123,116,121,112,101,58,34,98,117,116,116,111,110,34,44,100,105,115,97,98,108,101,100,58,101,44,34,97,114,105,97,45,108,97,98,101,108,34,58,116,104,105,115,46,108,97,98,101,108,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,67,108,105,99,107,125,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,85,111,44,123,101,120,112,97,110,100,101,100,58,116,104,105,115,46,116,111,103,103,108,101,83,116,97,116,101,125,41,124,124,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,34,46,99,111,110,99,97,116,40,105,80,44,34,45,105,99,111,110,34,41,125,41,93,41,125,125,41,44,117,80,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,78,97,118,98,97,114,58,113,67,44,66,78,97,118,98,97,114,78,97,118,58,90,67,44,66,78,97,118,98,97,114,66,114,97,110,100,58,114,80,44,66,78,97,118,98,97,114,84,111,103,103,108,101,58,99,80,44,66,78,97,118,84,111,103,103,108,101,58,99,80,125,44,112,108,117,103,105,110,115,58,123,78,97,118,80,108,117,103,105,110,58,85,67,44,67,111,108,108,97,112,115,101,80,108,117,103,105,110,58,65,118,44,68,114,111,112,100,111,119,110,80,108,117,103,105,110,58,118,98,125,125,41,59,102,117,110,99,116,105,111,110,32,108,80,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,118,97,114,32,102,80,61,100,99,40,123,108,97,98,101,108,58,117,99,40,120,111,41,44,114,111,108,101,58,117,99,40,120,111,44,34,115,116,97,116,117,115,34,41,44,115,109,97,108,108,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,115,112,97,110,34,41,44,116,121,112,101,58,117,99,40,120,111,44,34,98,111,114,100,101,114,34,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,68,114,41,44,104,80,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,68,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,102,80,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,101,46,112,114,111,112,115,44,105,61,101,46,100,97,116,97,44,111,61,101,46,115,108,111,116,115,44,97,61,101,46,115,99,111,112,101,100,83,108,111,116,115,44,115,61,111,40,41,44,99,61,97,124,124,123,125,44,117,61,121,99,40,108,97,44,123,125,44,99,44,115,41,124,124,114,46,108,97,98,101,108,59,114,101,116,117,114,110,32,117,38,38,40,117,61,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,115,114,45,111,110,108,121,34,125,44,117,41,41,44,116,40,114,46,116,97,103,44,36,101,40,105,44,123,97,116,116,114,115,58,123,114,111,108,101,58,117,63,114,46,114,111,108,101,124,124,34,115,116,97,116,117,115,34,58,110,117,108,108,44,34,97,114,105,97,45,104,105,100,100,101,110,34,58,117,63,110,117,108,108,58,34,116,114,117,101,34,125,44,99,108,97,115,115,58,40,110,61,123,125,44,108,80,40,110,44,34,115,112,105,110,110,101,114,45,34,46,99,111,110,99,97,116,40,114,46,116,121,112,101,41,44,114,46,116,121,112,101,41,44,108,80,40,110,44,34,115,112,105,110,110,101,114,45,34,46,99,111,110,99,97,116,40,114,46,116,121,112,101,44,34,45,115,109,34,41,44,114,46,115,109,97,108,108,41,44,108,80,40,110,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,114,46,118,97,114,105,97,110,116,41,44,114,46,118,97,114,105,97,110,116,41,44,110,41,125,41,44,91,117,124,124,116,40,41,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,100,80,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,112,80,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,100,80,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,80,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,100,80,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,118,80,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,118,97,114,32,103,80,44,109,80,61,123,116,111,112,58,48,44,108,101,102,116,58,48,44,98,111,116,116,111,109,58,48,44,114,105,103,104,116,58,48,125,44,98,80,61,100,99,40,123,98,103,67,111,108,111,114,58,117,99,40,120,111,41,44,98,108,117,114,58,117,99,40,120,111,44,34,50,112,120,34,41,44,102,105,120,101,100,58,117,99,40,103,111,44,33,49,41,44,110,111,67,101,110,116,101,114,58,117,99,40,103,111,44,33,49,41,44,110,111,70,97,100,101,58,117,99,40,103,111,44,33,49,41,44,110,111,87,114,97,112,58,117,99,40,103,111,44,33,49,41,44,111,112,97,99,105,116,121,58,117,99,40,65,111,44,46,56,53,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,81,97,40,116,44,48,41,59,114,101,116,117,114,110,32,101,62,61,48,38,38,101,60,61,49,125,41,41,44,111,118,101,114,108,97,121,84,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,44,114,111,117,110,100,101,100,58,117,99,40,106,111,44,33,49,41,44,115,104,111,119,58,117,99,40,103,111,44,33,49,41,44,115,112,105,110,110,101,114,83,109,97,108,108,58,117,99,40,103,111,44,33,49,41,44,115,112,105,110,110,101,114,84,121,112,101,58,117,99,40,120,111,44,34,98,111,114,100,101,114,34,41,44,115,112,105,110,110,101,114,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,44,34,108,105,103,104,116,34,41,44,119,114,97,112,84,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,44,122,73,110,100,101,120,58,117,99,40,65,111,44,49,48,41,125,44,98,114,41,44,121,80,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,98,114,44,109,105,120,105,110,115,58,91,119,99,93,44,112,114,111,112,115,58,98,80,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,82,111,117,110,100,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,114,111,117,110,100,101,100,59,114,101,116,117,114,110,33,48,61,61,61,116,124,124,34,34,61,61,61,116,63,34,114,111,117,110,100,101,100,34,58,116,63,34,114,111,117,110,100,101,100,45,34,46,99,111,110,99,97,116,40,116,41,58,34,34,125,44,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,118,97,114,105,97,110,116,59,114,101,116,117,114,110,32,116,38,38,33,116,104,105,115,46,98,103,67,111,108,111,114,63,34,98,103,45,34,46,99,111,110,99,97,116,40,116,41,58,34,34,125,44,115,108,111,116,83,99,111,112,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,115,112,105,110,110,101,114,84,121,112,101,58,116,104,105,115,46,115,112,105,110,110,101,114,84,121,112,101,124,124,110,117,108,108,44,115,112,105,110,110,101,114,86,97,114,105,97,110,116,58,116,104,105,115,46,115,112,105,110,110,101,114,86,97,114,105,97,110,116,124,124,110,117,108,108,44,115,112,105,110,110,101,114,83,109,97,108,108,58,116,104,105,115,46,115,112,105,110,110,101,114,83,109,97,108,108,125,125,125,44,109,101,116,104,111,100,115,58,123,100,101,102,97,117,108,116,79,118,101,114,108,97,121,70,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,115,112,105,110,110,101,114,84,121,112,101,44,110,61,116,46,115,112,105,110,110,101,114,86,97,114,105,97,110,116,44,114,61,116,46,115,112,105,110,110,101,114,83,109,97,108,108,59,114,101,116,117,114,110,32,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,104,80,44,123,112,114,111,112,115,58,123,116,121,112,101,58,101,44,118,97,114,105,97,110,116,58,110,44,115,109,97,108,108,58,114,125,125,41,125,125,44,114,101,110,100,101,114,58,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,115,104,111,119,44,114,61,116,104,105,115,46,102,105,120,101,100,44,105,61,116,104,105,115,46,110,111,70,97,100,101,44,111,61,116,104,105,115,46,110,111,87,114,97,112,44,97,61,116,104,105,115,46,115,108,111,116,83,99,111,112,101,44,115,61,116,40,41,59,105,102,40,110,41,123,118,97,114,32,99,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,111,115,105,116,105,111,110,45,97,98,115,111,108,117,116,101,34,44,99,108,97,115,115,58,91,116,104,105,115,46,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,44,116,104,105,115,46,99,111,109,112,117,116,101,100,82,111,117,110,100,101,100,93,44,115,116,121,108,101,58,112,80,40,112,80,40,123,125,44,109,80,41,44,123,125,44,123,111,112,97,99,105,116,121,58,116,104,105,115,46,111,112,97,99,105,116,121,44,98,97,99,107,103,114,111,117,110,100,67,111,108,111,114,58,116,104,105,115,46,98,103,67,111,108,111,114,124,124,110,117,108,108,44,98,97,99,107,100,114,111,112,70,105,108,116,101,114,58,116,104,105,115,46,98,108,117,114,63,34,98,108,117,114,40,34,46,99,111,110,99,97,116,40,116,104,105,115,46,98,108,117,114,44,34,41,34,41,58,110,117,108,108,125,41,125,41,44,117,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,111,115,105,116,105,111,110,45,97,98,115,111,108,117,116,101,34,44,115,116,121,108,101,58,116,104,105,115,46,110,111,67,101,110,116,101,114,63,112,80,40,123,125,44,109,80,41,58,123,116,111,112,58,34,53,48,37,34,44,108,101,102,116,58,34,53,48,37,34,44,116,114,97,110,115,102,111,114,109,58,34,116,114,97,110,115,108,97,116,101,88,40,45,53,48,37,41,32,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,34,125,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,106,97,44,97,41,124,124,116,104,105,115,46,100,101,102,97,117,108,116,79,118,101,114,108,97,121,70,110,40,97,41,93,41,59,115,61,116,40,116,104,105,115,46,111,118,101,114,108,97,121,84,97,103,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,111,118,101,114,108,97,121,34,44,99,108,97,115,115,58,123,34,112,111,115,105,116,105,111,110,45,97,98,115,111,108,117,116,101,34,58,33,111,124,124,111,38,38,33,114,44,34,112,111,115,105,116,105,111,110,45,102,105,120,101,100,34,58,111,38,38,114,125,44,115,116,121,108,101,58,112,80,40,112,80,40,123,125,44,109,80,41,44,123,125,44,123,122,73,110,100,101,120,58,116,104,105,115,46,122,73,110,100,101,120,124,124,49,48,125,41,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,36,101,109,105,116,40,102,105,44,116,41,125,125,44,107,101,121,58,34,111,118,101,114,108,97,121,34,125,44,91,99,44,117,93,41,125,114,101,116,117,114,110,32,115,61,116,40,78,99,44,123,112,114,111,112,115,58,123,110,111,70,97,100,101,58,105,44,97,112,112,101,97,114,58,33,48,125,44,111,110,58,123,34,97,102,116,101,114,45,101,110,116,101,114,34,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,36,101,109,105,116,40,74,105,41,125,44,34,97,102,116,101,114,45,108,101,97,118,101,34,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,36,101,109,105,116,40,80,105,41,125,125,125,44,91,115,93,41,44,111,63,115,58,116,40,116,104,105,115,46,119,114,97,112,84,97,103,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,111,118,101,114,108,97,121,45,119,114,97,112,32,112,111,115,105,116,105,111,110,45,114,101,108,97,116,105,118,101,34,44,97,116,116,114,115,58,123,34,97,114,105,97,45,98,117,115,121,34,58,110,63,34,116,114,117,101,34,58,110,117,108,108,125,125,44,111,63,91,115,93,58,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,44,115,93,41,125,125,41,44,119,80,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,79,118,101,114,108,97,121,58,121,80,125,125,41,59,102,117,110,99,116,105,111,110,32,95,80,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,120,80,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,95,80,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,79,80,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,95,80,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,79,80,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,118,97,114,32,83,80,61,109,99,40,34,118,97,108,117,101,34,44,123,116,121,112,101,58,84,111,44,100,101,102,97,117,108,116,86,97,108,117,101,58,110,117,108,108,44,118,97,108,105,100,97,116,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,40,33,121,116,40,116,41,38,38,74,97,40,116,44,48,41,60,49,41,124,124,40,104,101,40,39,34,118,45,109,111,100,101,108,34,32,118,97,108,117,101,32,109,117,115,116,32,98,101,32,97,32,110,117,109,98,101,114,32,103,114,101,97,116,101,114,32,116,104,97,110,32,34,48,34,39,44,121,114,41,44,33,49,41,125,125,41,44,107,80,61,83,80,46,109,105,120,105,110,44,67,80,61,83,80,46,112,114,111,112,115,44,80,80,61,83,80,46,112,114,111,112,44,84,80,61,83,80,46,101,118,101,110,116,44,106,80,61,51,44,69,80,61,53,44,68,80,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,75,97,40,101,44,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,123,110,117,109,98,101,114,58,116,43,110,44,99,108,97,115,115,101,115,58,110,117,108,108,125,125,41,41,125,44,65,80,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,74,97,40,116,41,124,124,49,59,114,101,116,117,114,110,32,101,60,49,63,69,80,58,101,125,44,76,80,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,74,97,40,116,41,124,124,49,59,114,101,116,117,114,110,32,110,62,101,63,101,58,110,60,49,63,49,58,110,125,44,73,80,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,46,107,101,121,67,111,100,101,61,61,61,98,108,41,114,101,116,117,114,110,32,107,99,40,116,44,123,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,58,33,48,125,41,44,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,46,99,108,105,99,107,40,41,44,33,49,125,44,77,80,61,100,99,40,75,116,40,120,80,40,120,80,40,123,125,44,67,80,41,44,123,125,44,123,97,108,105,103,110,58,117,99,40,120,111,44,34,108,101,102,116,34,41,44,97,114,105,97,76,97,98,101,108,58,117,99,40,120,111,44,34,80,97,103,105,110,97,116,105,111,110,34,41,44,100,105,115,97,98,108,101,100,58,117,99,40,103,111,44,33,49,41,44,101,108,108,105,112,115,105,115,67,108,97,115,115,58,117,99,40,107,111,41,44,101,108,108,105,112,115,105,115,84,101,120,116,58,117,99,40,120,111,44,34,226,128,166,34,41,44,102,105,114,115,116,67,108,97,115,115,58,117,99,40,107,111,41,44,102,105,114,115,116,78,117,109,98,101,114,58,117,99,40,103,111,44,33,49,41,44,102,105,114,115,116,84,101,120,116,58,117,99,40,120,111,44,34,194,171,34,41,44,104,105,100,101,69,108,108,105,112,115,105,115,58,117,99,40,103,111,44,33,49,41,44,104,105,100,101,71,111,116,111,69,110,100,66,117,116,116,111,110,115,58,117,99,40,103,111,44,33,49,41,44,108,97,98,101,108,70,105,114,115,116,80,97,103,101,58,117,99,40,120,111,44,34,71,111,32,116,111,32,102,105,114,115,116,32,112,97,103,101,34,41,44,108,97,98,101,108,76,97,115,116,80,97,103,101,58,117,99,40,120,111,44,34,71,111,32,116,111,32,108,97,115,116,32,112,97,103,101,34,41,44,108,97,98,101,108,78,101,120,116,80,97,103,101,58,117,99,40,120,111,44,34,71,111,32,116,111,32,110,101,120,116,32,112,97,103,101,34,41,44,108,97,98,101,108,80,97,103,101,58,117,99,40,68,111,44,34,71,111,32,116,111,32,112,97,103,101,34,41,44,108,97,98,101,108,80,114,101,118,80,97,103,101,58,117,99,40,120,111,44,34,71,111,32,116,111,32,112,114,101,118,105,111,117,115,32,112,97,103,101,34,41,44,108,97,115,116,67,108,97,115,115,58,117,99,40,107,111,41,44,108,97,115,116,78,117,109,98,101,114,58,117,99,40,103,111,44,33,49,41,44,108,97,115,116,84,101,120,116,58,117,99,40,120,111,44,34,194,187,34,41,44,108,105,109,105,116,58,117,99,40,65,111,44,69,80,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,40,74,97,40,116,44,48,41,60,49,41,124,124,40,104,101,40,39,80,114,111,112,32,34,108,105,109,105,116,34,32,109,117,115,116,32,98,101,32,97,32,110,117,109,98,101,114,32,103,114,101,97,116,101,114,32,116,104,97,110,32,34,48,34,39,44,121,114,41,44,33,49,41,125,41,41,44,110,101,120,116,67,108,97,115,115,58,117,99,40,107,111,41,44,110,101,120,116,84,101,120,116,58,117,99,40,120,111,44,34,226,128,186,34,41,44,112,97,103,101,67,108,97,115,115,58,117,99,40,107,111,41,44,112,105,108,108,115,58,117,99,40,103,111,44,33,49,41,44,112,114,101,118,67,108,97,115,115,58,117,99,40,107,111,41,44,112,114,101,118,84,101,120,116,58,117,99,40,120,111,44,34,226,128,185,34,41,44,115,105,122,101,58,117,99,40,120,111,41,125,41,41,44,34,112,97,103,105,110,97,116,105,111,110,34,41,44,36,80,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,105,120,105,110,115,58,91,107,80,44,119,99,93,44,112,114,111,112,115,58,77,80,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,74,97,40,116,104,105,115,91,80,80,93,44,48,41,59,114,101,116,117,114,110,32,116,61,116,62,48,63,116,58,45,49,44,123,99,117,114,114,101,110,116,80,97,103,101,58,116,44,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,58,49,44,108,111,99,97,108,76,105,109,105,116,58,69,80,125,125,44,99,111,109,112,117,116,101,100,58,123,98,116,110,83,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,115,105,122,101,59,114,101,116,117,114,110,32,116,63,34,112,97,103,105,110,97,116,105,111,110,45,34,46,99,111,110,99,97,116,40,116,41,58,34,34,125,44,97,108,105,103,110,109,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,97,108,105,103,110,59,114,101,116,117,114,110,34,99,101,110,116,101,114,34,61,61,61,116,63,34,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,34,58,34,101,110,100,34,61,61,61,116,124,124,34,114,105,103,104,116,34,61,61,61,116,63,34,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,101,110,100,34,58,34,102,105,108,108,34,61,61,61,116,63,34,116,101,120,116,45,99,101,110,116,101,114,34,58,34,34,125,44,115,116,121,108,101,67,108,97,115,115,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,105,108,108,115,63,34,98,45,112,97,103,105,110,97,116,105,111,110,45,112,105,108,108,115,34,58,34,34,125,44,99,111,109,112,117,116,101,100,67,117,114,114,101,110,116,80,97,103,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,76,80,40,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,44,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,41,125,44,112,97,103,105,110,97,116,105,111,110,80,97,114,97,109,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,108,111,99,97,108,76,105,109,105,116,44,101,61,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,44,110,61,116,104,105,115,46,99,111,109,112,117,116,101,100,67,117,114,114,101,110,116,80,97,103,101,44,114,61,116,104,105,115,46,104,105,100,101,69,108,108,105,112,115,105,115,44,105,61,116,104,105,115,46,102,105,114,115,116,78,117,109,98,101,114,44,111,61,116,104,105,115,46,108,97,115,116,78,117,109,98,101,114,44,97,61,33,49,44,115,61,33,49,44,99,61,116,44,117,61,49,59,101,60,61,116,63,99,61,101,58,110,60,116,45,49,38,38,116,62,106,80,63,40,114,38,38,33,111,124,124,40,115,61,33,48,44,99,61,116,45,40,105,63,48,58,49,41,41,44,99,61,81,99,40,99,44,116,41,41,58,101,45,110,43,50,60,116,38,38,116,62,106,80,63,40,114,38,38,33,105,124,124,40,97,61,33,48,44,99,61,116,45,40,111,63,48,58,49,41,41,44,117,61,101,45,99,43,49,41,58,40,116,62,106,80,38,38,40,99,61,116,45,40,114,63,48,58,50,41,44,97,61,33,40,114,38,38,33,105,41,44,115,61,33,40,114,38,38,33,111,41,41,44,117,61,110,45,114,117,40,99,47,50,41,41,44,117,60,49,63,40,117,61,49,44,97,61,33,49,41,58,117,62,101,45,99,38,38,40,117,61,101,45,99,43,49,44,115,61,33,49,41,44,97,38,38,105,38,38,117,60,52,38,38,40,99,43,61,50,44,117,61,49,44,97,61,33,49,41,59,118,97,114,32,108,61,117,43,99,45,49,59,114,101,116,117,114,110,32,115,38,38,111,38,38,108,62,101,45,51,38,38,40,99,43,61,108,61,61,61,101,45,50,63,50,58,51,44,115,61,33,49,41,44,116,60,61,106,80,38,38,40,105,38,38,49,61,61,61,117,63,99,61,81,99,40,99,43,49,44,101,44,116,43,49,41,58,111,38,38,101,61,61,61,117,43,99,45,49,38,38,40,117,61,116,117,40,117,45,49,44,49,41,44,99,61,81,99,40,101,45,117,43,49,44,101,44,116,43,49,41,41,41,44,99,61,81,99,40,99,44,101,45,117,43,49,41,44,123,115,104,111,119,70,105,114,115,116,68,111,116,115,58,97,44,115,104,111,119,76,97,115,116,68,111,116,115,58,115,44,110,117,109,98,101,114,79,102,76,105,110,107,115,58,99,44,115,116,97,114,116,78,117,109,98,101,114,58,117,125,125,44,112,97,103,101,76,105,115,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,112,97,103,105,110,97,116,105,111,110,80,97,114,97,109,115,44,101,61,116,46,110,117,109,98,101,114,79,102,76,105,110,107,115,44,110,61,116,46,115,116,97,114,116,78,117,109,98,101,114,44,114,61,116,104,105,115,46,99,111,109,112,117,116,101,100,67,117,114,114,101,110,116,80,97,103,101,44,105,61,68,80,40,110,44,101,41,59,105,102,40,105,46,108,101,110,103,116,104,62,51,41,123,118,97,114,32,111,61,114,45,110,44,97,61,34,98,118,45,100,45,120,115,45,100,111,119,110,45,110,111,110,101,34,59,105,102,40,48,61,61,61,111,41,102,111,114,40,118,97,114,32,115,61,51,59,115,60,105,46,108,101,110,103,116,104,59,115,43,43,41,105,91,115,93,46,99,108,97,115,115,101,115,61,97,59,101,108,115,101,32,105,102,40,111,61,61,61,105,46,108,101,110,103,116,104,45,49,41,102,111,114,40,118,97,114,32,99,61,48,59,99,60,105,46,108,101,110,103,116,104,45,51,59,99,43,43,41,105,91,99,93,46,99,108,97,115,115,101,115,61,97,59,101,108,115,101,123,102,111,114,40,118,97,114,32,117,61,48,59,117,60,111,45,49,59,117,43,43,41,105,91,117,93,46,99,108,97,115,115,101,115,61,97,59,102,111,114,40,118,97,114,32,108,61,105,46,108,101,110,103,116,104,45,49,59,108,62,111,43,49,59,108,45,45,41,105,91,108,93,46,99,108,97,115,115,101,115,61,97,125,125,114,101,116,117,114,110,32,105,125,125,44,119,97,116,99,104,58,40,103,80,61,123,125,44,79,80,40,103,80,44,80,80,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,40,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,61,76,80,40,116,44,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,41,41,125,41,41,44,79,80,40,103,80,44,34,99,117,114,114,101,110,116,80,97,103,101,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,116,104,105,115,46,36,101,109,105,116,40,84,80,44,116,62,48,63,116,58,110,117,108,108,41,125,41,41,44,79,80,40,103,80,44,34,108,105,109,105,116,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,40,116,104,105,115,46,108,111,99,97,108,76,105,109,105,116,61,65,80,40,116,41,41,125,41,41,44,103,80,41,44,99,114,101,97,116,101,100,58,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,108,111,99,97,108,76,105,109,105,116,61,65,80,40,116,104,105,115,46,108,105,109,105,116,41,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,99,117,114,114,101,110,116,80,97,103,101,61,116,46,99,117,114,114,101,110,116,80,97,103,101,62,116,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,63,116,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,58,116,46,99,117,114,114,101,110,116,80,97,103,101,125,41,41,125,44,109,101,116,104,111,100,115,58,123,104,97,110,100,108,101,75,101,121,78,97,118,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,107,101,121,67,111,100,101,44,110,61,116,46,115,104,105,102,116,75,101,121,59,116,104,105,115,46,105,115,78,97,118,124,124,40,101,61,61,61,112,108,124,124,101,61,61,61,121,108,63,40,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,44,110,63,116,104,105,115,46,102,111,99,117,115,70,105,114,115,116,40,41,58,116,104,105,115,46,102,111,99,117,115,80,114,101,118,40,41,41,58,101,33,61,61,109,108,38,38,101,33,61,61,117,108,124,124,40,107,99,40,116,44,123,112,114,111,112,97,103,97,116,105,111,110,58,33,49,125,41,44,110,63,116,104,105,115,46,102,111,99,117,115,76,97,115,116,40,41,58,116,104,105,115,46,102,111,99,117,115,78,101,120,116,40,41,41,41,125,44,103,101,116,66,117,116,116,111,110,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,115,40,34,98,117,116,116,111,110,46,112,97,103,101,45,108,105,110,107,44,32,97,46,112,97,103,101,45,108,105,110,107,34,44,116,104,105,115,46,36,101,108,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,120,115,40,116,41,125,41,41,125,44,102,111,99,117,115,67,117,114,114,101,110,116,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,46,103,101,116,66,117,116,116,111,110,115,40,41,46,102,105,110,100,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,74,97,40,36,115,40,101,44,34,97,114,105,97,45,112,111,115,105,110,115,101,116,34,41,44,48,41,61,61,61,116,46,99,111,109,112,117,116,101,100,67,117,114,114,101,110,116,80,97,103,101,125,41,41,59,113,115,40,101,41,124,124,116,46,102,111,99,117,115,70,105,114,115,116,40,41,125,41,41,125,44,102,111,99,117,115,70,105,114,115,116,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,46,103,101,116,66,117,116,116,111,110,115,40,41,46,102,105,110,100,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,79,115,40,116,41,125,41,41,59,113,115,40,101,41,125,41,41,125,44,102,111,99,117,115,76,97,115,116,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,46,103,101,116,66,117,116,116,111,110,115,40,41,46,114,101,118,101,114,115,101,40,41,46,102,105,110,100,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,79,115,40,116,41,125,41,41,59,113,115,40,101,41,125,41,41,125,44,102,111,99,117,115,80,114,101,118,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,46,103,101,116,66,117,116,116,111,110,115,40,41,44,110,61,101,46,105,110,100,101,120,79,102,40,121,115,40,41,41,59,110,62,48,38,38,33,79,115,40,101,91,110,45,49,93,41,38,38,113,115,40,101,91,110,45,49,93,41,125,41,41,125,44,102,111,99,117,115,78,101,120,116,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,46,103,101,116,66,117,116,116,111,110,115,40,41,44,110,61,101,46,105,110,100,101,120,79,102,40,121,115,40,41,41,59,110,60,101,46,108,101,110,103,116,104,45,49,38,38,33,79,115,40,101,91,110,43,49,93,41,38,38,113,115,40,101,91,110,43,49,93,41,125,41,41,125,125,44,114,101,110,100,101,114,58,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,100,105,115,97,98,108,101,100,44,114,61,116,104,105,115,46,108,97,98,101,108,80,97,103,101,44,105,61,116,104,105,115,46,97,114,105,97,76,97,98,101,108,44,111,61,116,104,105,115,46,105,115,78,97,118,44,97,61,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,44,115,61,116,104,105,115,46,99,111,109,112,117,116,101,100,67,117,114,114,101,110,116,80,97,103,101,44,99,61,116,104,105,115,46,112,97,103,101,76,105,115,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,110,117,109,98,101,114,125,41,41,44,117,61,116,104,105,115,46,112,97,103,105,110,97,116,105,111,110,80,97,114,97,109,115,44,108,61,117,46,115,104,111,119,70,105,114,115,116,68,111,116,115,44,102,61,117,46,115,104,111,119,76,97,115,116,68,111,116,115,44,104,61,34,102,105,108,108,34,61,61,61,116,104,105,115,46,97,108,105,103,110,44,100,61,91,93,44,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,61,61,115,125,44,118,61,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,60,49,44,103,61,102,117,110,99,116,105,111,110,40,114,44,105,44,115,44,99,44,117,44,108,44,102,41,123,118,97,114,32,100,61,110,124,124,112,40,108,41,124,124,118,124,124,114,60,49,124,124,114,62,97,44,103,61,114,60,49,63,49,58,114,62,97,63,97,58,114,44,109,61,123,100,105,115,97,98,108,101,100,58,100,44,112,97,103,101,58,103,44,105,110,100,101,120,58,103,45,49,125,44,98,61,101,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,115,44,109,41,124,124,115,115,40,99,41,124,124,116,40,41,44,121,61,116,40,100,63,34,115,112,97,110,34,58,111,63,86,108,58,34,98,117,116,116,111,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,97,103,101,45,108,105,110,107,34,44,99,108,97,115,115,58,123,34,102,108,101,120,45,103,114,111,119,45,49,34,58,33,111,38,38,33,100,38,38,104,125,44,112,114,111,112,115,58,100,124,124,33,111,63,123,125,58,101,46,108,105,110,107,80,114,111,112,115,40,114,41,44,97,116,116,114,115,58,123,114,111,108,101,58,111,63,110,117,108,108,58,34,109,101,110,117,105,116,101,109,34,44,116,121,112,101,58,111,124,124,100,63,110,117,108,108,58,34,98,117,116,116,111,110,34,44,116,97,98,105,110,100,101,120,58,100,124,124,111,63,110,117,108,108,58,34,45,49,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,105,44,34,97,114,105,97,45,99,111,110,116,114,111,108,115,34,58,101,46,97,114,105,97,67,111,110,116,114,111,108,115,124,124,110,117,108,108,44,34,97,114,105,97,45,100,105,115,97,98,108,101,100,34,58,100,63,34,116,114,117,101,34,58,110,117,108,108,125,44,111,110,58,100,63,123,125,58,123,34,33,99,108,105,99,107,34,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,111,110,67,108,105,99,107,40,116,44,114,41,125,44,107,101,121,100,111,119,110,58,73,80,125,125,44,91,98,93,41,59,114,101,116,117,114,110,32,116,40,34,108,105,34,44,123,107,101,121,58,102,44,115,116,97,116,105,99,67,108,97,115,115,58,34,112,97,103,101,45,105,116,101,109,34,44,99,108,97,115,115,58,91,123,100,105,115,97,98,108,101,100,58,100,44,34,102,108,101,120,45,102,105,108,108,34,58,104,44,34,100,45,102,108,101,120,34,58,104,38,38,33,111,38,38,33,100,125,44,117,93,44,97,116,116,114,115,58,123,114,111,108,101,58,111,63,110,117,108,108,58,34,112,114,101,115,101,110,116,97,116,105,111,110,34,44,34,97,114,105,97,45,104,105,100,100,101,110,34,58,100,63,34,116,114,117,101,34,58,110,117,108,108,125,125,44,91,121,93,41,125,44,109,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,34,108,105,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,97,103,101,45,105,116,101,109,34,44,99,108,97,115,115,58,91,34,100,105,115,97,98,108,101,100,34,44,34,98,118,45,100,45,120,115,45,100,111,119,110,45,110,111,110,101,34,44,104,63,34,102,108,101,120,45,102,105,108,108,34,58,34,34,44,101,46,101,108,108,105,112,115,105,115,67,108,97,115,115,93,44,97,116,116,114,115,58,123,114,111,108,101,58,34,115,101,112,97,114,97,116,111,114,34,125,44,107,101,121,58,34,101,108,108,105,112,115,105,115,45,34,46,99,111,110,99,97,116,40,110,63,34,108,97,115,116,34,58,34,102,105,114,115,116,34,41,125,44,91,116,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,97,103,101,45,108,105,110,107,34,125,44,91,101,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,89,111,41,124,124,115,115,40,101,46,101,108,108,105,112,115,105,115,84,101,120,116,41,124,124,116,40,41,93,41,93,41,125,44,98,61,102,117,110,99,116,105,111,110,40,105,44,115,41,123,118,97,114,32,99,61,105,46,110,117,109,98,101,114,44,117,61,112,40,99,41,38,38,33,118,44,108,61,110,63,110,117,108,108,58,117,124,124,118,38,38,48,61,61,61,115,63,34,48,34,58,34,45,49,34,44,102,61,123,114,111,108,101,58,111,63,110,117,108,108,58,34,109,101,110,117,105,116,101,109,114,97,100,105,111,34,44,116,121,112,101,58,111,124,124,110,63,110,117,108,108,58,34,98,117,116,116,111,110,34,44,34,97,114,105,97,45,100,105,115,97,98,108,101,100,34,58,110,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,99,111,110,116,114,111,108,115,34,58,101,46,97,114,105,97,67,111,110,116,114,111,108,115,124,124,110,117,108,108,44,34,97,114,105,97,45,108,97,98,101,108,34,58,118,99,40,114,41,63,114,40,99,41,58,34,34,46,99,111,110,99,97,116,40,95,116,40,114,41,63,114,40,41,58,114,44,34,32,34,41,46,99,111,110,99,97,116,40,99,41,44,34,97,114,105,97,45,99,104,101,99,107,101,100,34,58,111,63,110,117,108,108,58,117,63,34,116,114,117,101,34,58,34,102,97,108,115,101,34,44,34,97,114,105,97,45,99,117,114,114,101,110,116,34,58,111,38,38,117,63,34,112,97,103,101,34,58,110,117,108,108,44,34,97,114,105,97,45,112,111,115,105,110,115,101,116,34,58,111,63,110,117,108,108,58,99,44,34,97,114,105,97,45,115,101,116,115,105,122,101,34,58,111,63,110,117,108,108,58,97,44,116,97,98,105,110,100,101,120,58,111,63,110,117,108,108,58,108,125,44,100,61,115,115,40,101,46,109,97,107,101,80,97,103,101,40,99,41,41,44,103,61,123,112,97,103,101,58,99,44,105,110,100,101,120,58,99,45,49,44,99,111,110,116,101,110,116,58,100,44,97,99,116,105,118,101,58,117,44,100,105,115,97,98,108,101,100,58,110,125,44,109,61,116,40,110,63,34,115,112,97,110,34,58,111,63,86,108,58,34,98,117,116,116,111,110,34,44,123,112,114,111,112,115,58,110,124,124,33,111,63,123,125,58,101,46,108,105,110,107,80,114,111,112,115,40,99,41,44,115,116,97,116,105,99,67,108,97,115,115,58,34,112,97,103,101,45,108,105,110,107,34,44,99,108,97,115,115,58,123,34,102,108,101,120,45,103,114,111,119,45,49,34,58,33,111,38,38,33,110,38,38,104,125,44,97,116,116,114,115,58,102,44,111,110,58,110,63,123,125,58,123,34,33,99,108,105,99,107,34,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,111,110,67,108,105,99,107,40,116,44,99,41,125,44,107,101,121,100,111,119,110,58,73,80,125,125,44,91,101,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,69,97,44,103,41,124,124,100,93,41,59,114,101,116,117,114,110,32,116,40,34,108,105,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,97,103,101,45,105,116,101,109,34,44,99,108,97,115,115,58,91,123,100,105,115,97,98,108,101,100,58,110,44,97,99,116,105,118,101,58,117,44,34,102,108,101,120,45,102,105,108,108,34,58,104,44,34,100,45,102,108,101,120,34,58,104,38,38,33,111,38,38,33,110,125,44,105,46,99,108,97,115,115,101,115,44,101,46,112,97,103,101,67,108,97,115,115,93,44,97,116,116,114,115,58,123,114,111,108,101,58,111,63,110,117,108,108,58,34,112,114,101,115,101,110,116,97,116,105,111,110,34,125,44,107,101,121,58,34,112,97,103,101,45,34,46,99,111,110,99,97,116,40,99,41,125,44,91,109,93,41,125,44,121,61,116,40,41,59,116,104,105,115,46,102,105,114,115,116,78,117,109,98,101,114,124,124,116,104,105,115,46,104,105,100,101,71,111,116,111,69,110,100,66,117,116,116,111,110,115,124,124,40,121,61,103,40,49,44,116,104,105,115,46,108,97,98,101,108,70,105,114,115,116,80,97,103,101,44,81,111,44,116,104,105,115,46,102,105,114,115,116,84,101,120,116,44,116,104,105,115,46,102,105,114,115,116,67,108,97,115,115,44,49,44,34,112,97,103,105,110,97,116,105,111,110,45,103,111,116,111,45,102,105,114,115,116,34,41,41,44,100,46,112,117,115,104,40,121,41,44,100,46,112,117,115,104,40,103,40,115,45,49,44,116,104,105,115,46,108,97,98,101,108,80,114,101,118,80,97,103,101,44,76,97,44,116,104,105,115,46,112,114,101,118,84,101,120,116,44,116,104,105,115,46,112,114,101,118,67,108,97,115,115,44,49,44,34,112,97,103,105,110,97,116,105,111,110,45,103,111,116,111,45,112,114,101,118,34,41,41,44,100,46,112,117,115,104,40,116,104,105,115,46,102,105,114,115,116,78,117,109,98,101,114,38,38,49,33,61,61,99,91,48,93,63,98,40,123,110,117,109,98,101,114,58,49,125,44,48,41,58,116,40,41,41,44,100,46,112,117,115,104,40,108,63,109,40,33,49,41,58,116,40,41,41,44,116,104,105,115,46,112,97,103,101,76,105,115,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,114,61,108,38,38,101,46,102,105,114,115,116,78,117,109,98,101,114,38,38,49,33,61,61,99,91,48,93,63,49,58,48,59,100,46,112,117,115,104,40,98,40,116,44,110,43,114,41,41,125,41,41,44,100,46,112,117,115,104,40,102,63,109,40,33,48,41,58,116,40,41,41,44,100,46,112,117,115,104,40,116,104,105,115,46,108,97,115,116,78,117,109,98,101,114,38,38,99,91,99,46,108,101,110,103,116,104,45,49,93,33,61,61,97,63,98,40,123,110,117,109,98,101,114,58,97,125,44,45,49,41,58,116,40,41,41,44,100,46,112,117,115,104,40,103,40,115,43,49,44,116,104,105,115,46,108,97,98,101,108,78,101,120,116,80,97,103,101,44,84,97,44,116,104,105,115,46,110,101,120,116,84,101,120,116,44,116,104,105,115,46,110,101,120,116,67,108,97,115,115,44,97,44,34,112,97,103,105,110,97,116,105,111,110,45,103,111,116,111,45,110,101,120,116,34,41,41,59,118,97,114,32,119,61,116,40,41,59,116,104,105,115,46,108,97,115,116,78,117,109,98,101,114,124,124,116,104,105,115,46,104,105,100,101,71,111,116,111,69,110,100,66,117,116,116,111,110,115,124,124,40,119,61,103,40,97,44,116,104,105,115,46,108,97,98,101,108,76,97,115,116,80,97,103,101,44,102,97,44,116,104,105,115,46,108,97,115,116,84,101,120,116,44,116,104,105,115,46,108,97,115,116,67,108,97,115,115,44,97,44,34,112,97,103,105,110,97,116,105,111,110,45,103,111,116,111,45,108,97,115,116,34,41,41,44,100,46,112,117,115,104,40,119,41,59,118,97,114,32,95,61,116,40,34,117,108,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,97,103,105,110,97,116,105,111,110,34,44,99,108,97,115,115,58,91,34,98,45,112,97,103,105,110,97,116,105,111,110,34,44,116,104,105,115,46,98,116,110,83,105,122,101,44,116,104,105,115,46,97,108,105,103,110,109,101,110,116,44,116,104,105,115,46,115,116,121,108,101,67,108,97,115,115,93,44,97,116,116,114,115,58,123,114,111,108,101,58,111,63,110,117,108,108,58,34,109,101,110,117,98,97,114,34,44,34,97,114,105,97,45,100,105,115,97,98,108,101,100,34,58,110,63,34,116,114,117,101,34,58,34,102,97,108,115,101,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,111,63,110,117,108,108,58,105,124,124,110,117,108,108,125,44,111,110,58,111,63,123,125,58,123,107,101,121,100,111,119,110,58,116,104,105,115,46,104,97,110,100,108,101,75,101,121,78,97,118,125,44,114,101,102,58,34,117,108,34,125,44,100,41,59,114,101,116,117,114,110,32,111,63,116,40,34,110,97,118,34,44,123,97,116,116,114,115,58,123,34,97,114,105,97,45,100,105,115,97,98,108,101,100,34,58,110,63,34,116,114,117,101,34,58,110,117,108,108,44,34,97,114,105,97,45,104,105,100,100,101,110,34,58,110,63,34,116,114,117,101,34,58,34,102,97,108,115,101,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,111,38,38,105,124,124,110,117,108,108,125,125,44,91,95,93,41,58,95,125,125,41,59,102,117,110,99,116,105,111,110,32,70,80,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,82,80,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,70,80,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,78,80,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,70,80,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,78,80,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,118,97,114,32,66,80,61,50,48,44,122,80,61,48,44,86,80,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,117,40,74,97,40,116,41,124,124,66,80,44,49,41,125,44,72,80,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,117,40,74,97,40,116,41,124,124,122,80,44,48,41,125,44,85,80,61,100,99,40,75,116,40,82,80,40,82,80,40,123,125,44,77,80,41,44,123,125,44,123,97,114,105,97,67,111,110,116,114,111,108,115,58,117,99,40,120,111,41,44,112,101,114,80,97,103,101,58,117,99,40,65,111,44,66,80,41,44,116,111,116,97,108,82,111,119,115,58,117,99,40,65,111,44,122,80,41,125,41,41,44,121,114,41,44,87,80,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,121,114,44,109,105,120,105,110,115,58,91,36,80,93,44,112,114,111,112,115,58,85,80,44,99,111,109,112,117,116,101,100,58,123,110,117,109,98,101,114,79,102,80,97,103,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,117,40,72,80,40,116,104,105,115,46,116,111,116,97,108,82,111,119,115,41,47,86,80,40,116,104,105,115,46,112,101,114,80,97,103,101,41,41,59,114,101,116,117,114,110,32,116,60,49,63,49,58,116,125,44,112,97,103,101,83,105,122,101,78,117,109,98,101,114,79,102,80,97,103,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,112,101,114,80,97,103,101,58,86,80,40,116,104,105,115,46,112,101,114,80,97,103,101,41,44,116,111,116,97,108,82,111,119,115,58,72,80,40,116,104,105,115,46,116,111,116,97,108,82,111,119,115,41,44,110,117,109,98,101,114,79,102,80,97,103,101,115,58,116,104,105,115,46,110,117,109,98,101,114,79,102,80,97,103,101,115,125,125,125,44,119,97,116,99,104,58,123,112,97,103,101,83,105,122,101,78,117,109,98,101,114,79,102,80,97,103,101,115,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,119,116,40,101,41,124,124,40,116,46,112,101,114,80,97,103,101,33,61,61,101,46,112,101,114,80,97,103,101,38,38,116,46,116,111,116,97,108,82,111,119,115,61,61,61,101,46,116,111,116,97,108,82,111,119,115,124,124,116,46,110,117,109,98,101,114,79,102,80,97,103,101,115,33,61,61,101,46,110,117,109,98,101,114,79,102,80,97,103,101,115,38,38,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,62,116,46,110,117,109,98,101,114,79,102,80,97,103,101,115,41,38,38,40,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,61,49,41,44,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,61,116,46,110,117,109,98,101,114,79,102,80,97,103,101,115,125,125,44,99,114,101,97,116,101,100,58,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,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,61,116,104,105,115,46,110,117,109,98,101,114,79,102,80,97,103,101,115,59,118,97,114,32,101,61,74,97,40,116,104,105,115,91,80,80,93,44,48,41,59,101,62,48,63,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,61,101,58,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,99,117,114,114,101,110,116,80,97,103,101,61,48,125,41,41,125,44,109,101,116,104,111,100,115,58,123,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,101,33,61,61,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,41,123,118,97,114,32,114,61,116,46,116,97,114,103,101,116,44,105,61,110,101,119,32,118,109,40,70,105,44,123,99,97,110,99,101,108,97,98,108,101,58,33,48,44,118,117,101,84,97,114,103,101,116,58,116,104,105,115,44,116,97,114,103,101,116,58,114,125,41,59,116,104,105,115,46,36,101,109,105,116,40,105,46,116,121,112,101,44,105,44,101,41,44,105,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,40,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,61,101,44,116,104,105,115,46,36,101,109,105,116,40,117,105,44,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,41,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,120,115,40,114,41,38,38,110,46,36,101,108,46,99,111,110,116,97,105,110,115,40,114,41,63,113,115,40,114,41,58,110,46,102,111,99,117,115,67,117,114,114,101,110,116,40,41,125,41,41,41,125,125,44,109,97,107,101,80,97,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,44,108,105,110,107,80,114,111,112,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,125,125,41,44,71,80,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,80,97,103,105,110,97,116,105,111,110,58,87,80,125,125,41,59,102,117,110,99,116,105,111,110,32,113,80,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,89,80,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,113,80,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,75,80,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,113,80,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,75,80,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,118,97,114,32,88,80,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,117,40,74,97,40,116,44,48,41,44,49,41,125,44,90,80,61,113,116,40,122,108,44,91,34,101,118,101,110,116,34,44,34,114,111,117,116,101,114,84,97,103,34,93,41,44,74,80,61,100,99,40,75,116,40,89,80,40,89,80,40,89,80,40,123,125,44,77,80,41,44,90,80,41,44,123,125,44,123,98,97,115,101,85,114,108,58,117,99,40,120,111,44,34,47,34,41,44,108,105,110,107,71,101,110,58,117,99,40,98,111,41,44,110,111,80,97,103,101,68,101,116,101,99,116,58,117,99,40,103,111,44,33,49,41,44,110,117,109,98,101,114,79,102,80,97,103,101,115,58,117,99,40,65,111,44,49,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,74,97,40,116,44,48,41,59,114,101,116,117,114,110,33,40,101,60,49,41,124,124,40,104,101,40,39,80,114,111,112,32,34,110,117,109,98,101,114,45,111,102,45,112,97,103,101,115,34,32,109,117,115,116,32,98,101,32,97,32,110,117,109,98,101,114,32,103,114,101,97,116,101,114,32,116,104,97,110,32,34,48,34,39,44,119,114,41,44,33,49,41,125,41,41,44,112,97,103,101,71,101,110,58,117,99,40,98,111,41,44,112,97,103,101,115,58,117,99,40,118,111,41,44,117,115,101,82,111,117,116,101,114,58,117,99,40,103,111,44,33,49,41,125,41,41,44,119,114,41,44,81,80,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,119,114,44,109,105,120,105,110,115,58,91,36,80,93,44,112,114,111,112,115,58,74,80,44,99,111,109,112,117,116,101,100,58,123,105,115,78,97,118,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,99,111,109,112,117,116,101,100,86,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,74,97,40,116,104,105,115,46,118,97,108,117,101,44,48,41,59,114,101,116,117,114,110,32,116,60,49,63,110,117,108,108,58,116,125,125,44,119,97,116,99,104,58,123,110,117,109,98,101,114,79,102,80,97,103,101,115,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,115,101,116,78,117,109,98,101,114,79,102,80,97,103,101,115,40,41,125,41,41,125,44,112,97,103,101,115,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,115,101,116,78,117,109,98,101,114,79,102,80,97,103,101,115,40,41,125,41,41,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,78,117,109,98,101,114,79,102,80,97,103,101,115,40,41,125,44,109,111,117,110,116,101,100,58,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,36,114,111,117,116,101,114,38,38,116,104,105,115,46,36,119,97,116,99,104,40,34,36,114,111,117,116,101,34,44,40,102,117,110,99,116,105,111,110,40,41,123,116,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,103,117,101,115,115,67,117,114,114,101,110,116,80,97,103,101,40,41,125,41,41,125,41,41,125,41,41,125,44,109,101,116,104,111,100,115,58,123,115,101,116,78,117,109,98,101,114,79,102,80,97,103,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,67,116,40,116,104,105,115,46,112,97,103,101,115,41,38,38,116,104,105,115,46,112,97,103,101,115,46,108,101,110,103,116,104,62,48,63,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,61,116,104,105,115,46,112,97,103,101,115,46,108,101,110,103,116,104,58,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,61,88,80,40,116,104,105,115,46,110,117,109,98,101,114,79,102,80,97,103,101,115,41,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,103,117,101,115,115,67,117,114,114,101,110,116,80,97,103,101,40,41,125,41,41,125,44,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,101,33,61,61,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,41,123,118,97,114,32,114,61,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,124,124,116,46,116,97,114,103,101,116,44,105,61,110,101,119,32,118,109,40,70,105,44,123,99,97,110,99,101,108,97,98,108,101,58,33,48,44,118,117,101,84,97,114,103,101,116,58,116,104,105,115,44,116,97,114,103,101,116,58,114,125,41,59,116,104,105,115,46,36,101,109,105,116,40,105,46,116,121,112,101,44,105,44,101,41,44,105,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,40,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,110,46,99,117,114,114,101,110,116,80,97,103,101,61,101,44,110,46,36,101,109,105,116,40,117,105,44,101,41,125,41,41,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,89,115,40,114,41,125,41,41,41,125,125,44,103,101,116,80,97,103,101,73,110,102,111,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,67,116,40,116,104,105,115,46,112,97,103,101,115,41,124,124,48,61,61,61,116,104,105,115,46,112,97,103,101,115,46,108,101,110,103,116,104,124,124,98,116,40,116,104,105,115,46,112,97,103,101,115,91,116,45,49,93,41,41,123,118,97,114,32,101,61,34,34,46,99,111,110,99,97,116,40,116,104,105,115,46,98,97,115,101,85,114,108,41,46,99,111,110,99,97,116,40,116,41,59,114,101,116,117,114,110,123,108,105,110,107,58,116,104,105,115,46,117,115,101,82,111,117,116,101,114,63,123,112,97,116,104,58,101,125,58,101,44,116,101,120,116,58,115,115,40,116,41,125,125,118,97,114,32,110,61,116,104,105,115,46,112,97,103,101,115,91,116,45,49,93,59,105,102,40,80,116,40,110,41,41,123,118,97,114,32,114,61,110,46,108,105,110,107,59,114,101,116,117,114,110,123,108,105,110,107,58,80,116,40,114,41,63,114,58,116,104,105,115,46,117,115,101,82,111,117,116,101,114,63,123,112,97,116,104,58,114,125,58,114,44,116,101,120,116,58,115,115,40,110,46,116,101,120,116,124,124,116,41,125,125,114,101,116,117,114,110,123,108,105,110,107,58,115,115,40,110,41,44,116,101,120,116,58,115,115,40,116,41,125,125,44,109,97,107,101,80,97,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,112,97,103,101,71,101,110,44,110,61,116,104,105,115,46,103,101,116,80,97,103,101,73,110,102,111,40,116,41,59,114,101,116,117,114,110,32,118,99,40,101,41,63,101,40,116,44,110,41,58,110,46,116,101,120,116,125,44,109,97,107,101,76,105,110,107,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,108,105,110,107,71,101,110,44,110,61,116,104,105,115,46,103,101,116,80,97,103,101,73,110,102,111,40,116,41,59,114,101,116,117,114,110,32,118,99,40,101,41,63,101,40,116,44,110,41,58,110,46,108,105,110,107,125,44,108,105,110,107,80,114,111,112,115,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,102,99,40,90,80,44,116,104,105,115,41,44,110,61,116,104,105,115,46,109,97,107,101,76,105,110,107,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,117,115,101,82,111,117,116,101,114,124,124,80,116,40,110,41,63,101,46,116,111,61,110,58,101,46,104,114,101,102,61,110,44,101,125,44,114,101,115,111,108,118,101,76,105,110,107,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,34,34,59,116,114,121,123,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,97,34,41,44,116,46,104,114,101,102,61,67,117,40,123,116,111,58,101,125,44,34,97,34,44,34,47,34,44,34,47,34,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,116,41,59,118,97,114,32,110,61,116,44,114,61,110,46,112,97,116,104,110,97,109,101,44,105,61,110,46,104,97,115,104,44,111,61,110,46,115,101,97,114,99,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,123,112,97,116,104,58,114,44,104,97,115,104,58,105,44,113,117,101,114,121,58,95,117,40,111,41,125,125,99,97,116,99,104,40,65,101,41,123,116,114,121,123,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,114,101,109,111,118,101,67,104,105,108,100,40,116,41,125,99,97,116,99,104,40,97,41,123,125,114,101,116,117,114,110,123,125,125,125,44,114,101,115,111,108,118,101,82,111,117,116,101,58,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,34,34,59,116,114,121,123,118,97,114,32,101,61,116,104,105,115,46,36,114,111,117,116,101,114,46,114,101,115,111,108,118,101,40,116,44,116,104,105,115,46,36,114,111,117,116,101,41,46,114,111,117,116,101,59,114,101,116,117,114,110,123,112,97,116,104,58,101,46,112,97,116,104,44,104,97,115,104,58,101,46,104,97,115,104,44,113,117,101,114,121,58,101,46,113,117,101,114,121,125,125,99,97,116,99,104,40,65,101,41,123,114,101,116,117,114,110,123,125,125,125,44,103,117,101,115,115,67,117,114,114,101,110,116,80,97,103,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,114,111,117,116,101,114,44,101,61,116,104,105,115,46,36,114,111,117,116,101,44,110,61,116,104,105,115,46,99,111,109,112,117,116,101,100,86,97,108,117,101,59,105,102,40,33,116,104,105,115,46,110,111,80,97,103,101,68,101,116,101,99,116,38,38,33,110,38,38,40,117,124,124,33,117,38,38,116,41,41,102,111,114,40,118,97,114,32,114,61,116,38,38,101,63,123,112,97,116,104,58,101,46,112,97,116,104,44,104,97,115,104,58,101,46,104,97,115,104,44,113,117,101,114,121,58,101,46,113,117,101,114,121,125,58,123,125,44,105,61,117,63,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,124,124,100,111,99,117,109,101,110,116,46,108,111,99,97,116,105,111,110,58,110,117,108,108,44,111,61,105,63,123,112,97,116,104,58,105,46,112,97,116,104,110,97,109,101,44,104,97,115,104,58,105,46,104,97,115,104,44,113,117,101,114,121,58,95,117,40,105,46,115,101,97,114,99,104,41,125,58,123,125,44,97,61,49,59,33,110,38,38,97,60,61,116,104,105,115,46,108,111,99,97,108,78,117,109,98,101,114,79,102,80,97,103,101,115,59,97,43,43,41,123,118,97,114,32,115,61,116,104,105,115,46,109,97,107,101,76,105,110,107,40,97,41,59,110,61,116,38,38,40,80,116,40,115,41,124,124,116,104,105,115,46,117,115,101,82,111,117,116,101,114,41,63,95,108,40,116,104,105,115,46,114,101,115,111,108,118,101,82,111,117,116,101,40,115,41,44,114,41,63,97,58,110,117,108,108,58,117,63,95,108,40,116,104,105,115,46,114,101,115,111,108,118,101,76,105,110,107,40,115,41,44,111,41,63,97,58,110,117,108,108,58,45,49,125,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,61,110,62,48,63,110,58,48,125,125,125,41,44,116,84,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,80,97,103,105,110,97,116,105,111,110,78,97,118,58,81,80,125,125,41,44,101,84,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,44,84,79,80,76,69,70,84,58,34,116,111,112,34,44,84,79,80,82,73,71,72,84,58,34,116,111,112,34,44,82,73,71,72,84,84,79,80,58,34,114,105,103,104,116,34,44,82,73,71,72,84,66,79,84,84,79,77,58,34,114,105,103,104,116,34,44,66,79,84,84,79,77,76,69,70,84,58,34,98,111,116,116,111,109,34,44,66,79,84,84,79,77,82,73,71,72,84,58,34,98,111,116,116,111,109,34,44,76,69,70,84,84,79,80,58,34,108,101,102,116,34,44,76,69,70,84,66,79,84,84,79,77,58,34,108,101,102,116,34,125,44,110,84,61,123,65,85,84,79,58,48,44,84,79,80,76,69,70,84,58,45,49,44,84,79,80,58,48,44,84,79,80,82,73,71,72,84,58,49,44,82,73,71,72,84,84,79,80,58,45,49,44,82,73,71,72,84,58,48,44,82,73,71,72,84,66,79,84,84,79,77,58,49,44,66,79,84,84,79,77,76,69,70,84,58,45,49,44,66,79,84,84,79,77,58,48,44,66,79,84,84,79,77,82,73,71,72,84,58,49,44,76,69,70,84,84,79,80,58,45,49,44,76,69,70,84,58,48,44,76,69,70,84,66,79,84,84,79,77,58,49,125,44,114,84,61,123,97,114,114,111,119,80,97,100,100,105,110,103,58,117,99,40,65,111,44,54,41,44,98,111,117,110,100,97,114,121,58,117,99,40,91,104,116,44,120,111,93,44,34,115,99,114,111,108,108,80,97,114,101,110,116,34,41,44,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,58,117,99,40,65,111,44,53,41,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,117,99,40,67,111,44,34,102,108,105,112,34,41,44,111,102,102,115,101,116,58,117,99,40,65,111,44,48,41,44,112,108,97,99,101,109,101,110,116,58,117,99,40,120,111,44,34,116,111,112,34,41,44,116,97,114,103,101,116,58,117,99,40,91,104,116,44,100,116,93,41,125,44,105,84,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,74,114,44,112,114,111,112,115,58,114,84,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,110,111,70,97,100,101,58,33,49,44,108,111,99,97,108,83,104,111,119,58,33,48,44,97,116,116,97,99,104,109,101,110,116,58,116,104,105,115,46,103,101,116,65,116,116,97,99,104,109,101,110,116,40,116,104,105,115,46,112,108,97,99,101,109,101,110,116,41,125,125,44,99,111,109,112,117,116,101,100,58,123,116,101,109,112,108,97,116,101,84,121,112,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,117,110,107,110,111,119,110,34,125,44,112,111,112,112,101,114,67,111,110,102,105,103,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,108,97,99,101,109,101,110,116,59,114,101,116,117,114,110,123,112,108,97,99,101,109,101,110,116,58,116,104,105,115,46,103,101,116,65,116,116,97,99,104,109,101,110,116,40,101,41,44,109,111,100,105,102,105,101,114,115,58,123,111,102,102,115,101,116,58,123,111,102,102,115,101,116,58,116,104,105,115,46,103,101,116,79,102,102,115,101,116,40,101,41,125,44,102,108,105,112,58,123,98,101,104,97,118,105,111,114,58,116,104,105,115,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,34,46,97,114,114,111,119,34,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,112,97,100,100,105,110,103,58,116,104,105,115,46,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,44,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,116,104,105,115,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,101,41,123,101,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,33,61,61,101,46,112,108,97,99,101,109,101,110,116,38,38,116,46,112,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,40,101,41,125,44,111,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,40,101,41,125,125,125,125,44,99,114,101,97,116,101,100,58,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,36,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,108,111,99,97,108,83,104,111,119,61,33,48,44,116,104,105,115,46,36,111,110,40,90,105,44,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,111,112,112,101,114,67,114,101,97,116,101,40,101,41,125,41,41,59,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,41,123,116,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,36,100,101,115,116,114,111,121,40,41,125,41,41,125,41,41,125,59,116,104,105,115,46,36,112,97,114,101,110,116,46,36,111,110,99,101,40,115,111,44,101,41,44,116,104,105,115,46,36,111,110,99,101,40,80,105,44,101,41,125,44,98,101,102,111,114,101,77,111,117,110,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,97,116,116,97,99,104,109,101,110,116,61,116,104,105,115,46,103,101,116,65,116,116,97,99,104,109,101,110,116,40,116,104,105,115,46,112,108,97,99,101,109,101,110,116,41,125,44,117,112,100,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,117,112,100,97,116,101,80,111,112,112,101,114,40,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,101,115,116,114,111,121,80,111,112,112,101,114,40,41,125,44,100,101,115,116,114,111,121,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,101,108,59,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,114,101,109,111,118,101,67,104,105,108,100,40,116,41,125,44,109,101,116,104,111,100,115,58,123,104,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,108,111,99,97,108,83,104,111,119,61,33,49,125,44,103,101,116,65,116,116,97,99,104,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,84,91,83,116,114,105,110,103,40,116,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,124,124,34,97,117,116,111,34,125,44,103,101,116,79,102,102,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,104,105,115,46,111,102,102,115,101,116,41,123,118,97,114,32,101,61,116,104,105,115,46,36,114,101,102,115,46,97,114,114,111,119,124,124,67,115,40,34,46,97,114,114,111,119,34,44,116,104,105,115,46,36,101,108,41,44,110,61,81,97,40,86,115,40,101,41,46,119,105,100,116,104,44,48,41,43,81,97,40,116,104,105,115,46,97,114,114,111,119,80,97,100,100,105,110,103,44,48,41,59,115,119,105,116,99,104,40,110,84,91,83,116,114,105,110,103,40,116,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,124,124,48,41,123,99,97,115,101,32,49,58,114,101,116,117,114,110,34,43,53,48,37,112,32,45,32,34,46,99,111,110,99,97,116,40,110,44,34,112,120,34,41,59,99,97,115,101,45,49,58,114,101,116,117,114,110,34,45,53,48,37,112,32,43,32,34,46,99,111,110,99,97,116,40,110,44,34,112,120,34,41,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,48,125,125,114,101,116,117,114,110,32,116,104,105,115,46,111,102,102,115,101,116,125,44,112,111,112,112,101,114,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,100,101,115,116,114,111,121,80,111,112,112,101,114,40,41,44,116,104,105,115,46,36,95,112,111,112,112,101,114,61,110,101,119,32,111,109,40,116,104,105,115,46,116,97,114,103,101,116,44,116,44,116,104,105,115,46,112,111,112,112,101,114,67,111,110,102,105,103,41,125,44,100,101,115,116,114,111,121,80,111,112,112,101,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,112,111,112,112,101,114,38,38,116,104,105,115,46,36,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,36,95,112,111,112,112,101,114,61,110,117,108,108,125,44,117,112,100,97,116,101,80,111,112,112,101,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,112,111,112,112,101,114,38,38,116,104,105,115,46,36,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,112,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,97,116,116,97,99,104,109,101,110,116,61,116,104,105,115,46,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,125,44,114,101,110,100,101,114,84,101,109,112,108,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,34,100,105,118,34,41,125,125,44,114,101,110,100,101,114,58,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,110,111,70,97,100,101,59,114,101,116,117,114,110,32,116,40,78,99,44,123,112,114,111,112,115,58,123,97,112,112,101,97,114,58,33,48,44,110,111,70,97,100,101,58,110,125,44,111,110,58,123,98,101,102,111,114,101,69,110,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,36,101,109,105,116,40,90,105,44,116,41,125,44,97,102,116,101,114,69,110,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,36,101,109,105,116,40,74,105,44,116,41,125,44,98,101,102,111,114,101,76,101,97,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,36,101,109,105,116,40,84,105,44,116,41,125,44,97,102,116,101,114,76,101,97,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,36,101,109,105,116,40,80,105,44,116,41,125,125,125,44,91,116,104,105,115,46,108,111,99,97,108,83,104,111,119,63,116,104,105,115,46,114,101,110,100,101,114,84,101,109,112,108,97,116,101,40,116,41,58,116,40,41,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,111,84,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,97,84,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,111,84,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,115,84,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,111,84,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,115,84,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,118,97,114,32,99,84,61,123,104,116,109,108,58,117,99,40,103,111,44,33,49,41,44,105,100,58,117,99,40,120,111,41,125,44,117,84,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,110,105,44,101,120,116,101,110,100,115,58,105,84,44,109,105,120,105,110,115,58,91,71,83,93,44,112,114,111,112,115,58,99,84,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,116,105,116,108,101,58,34,34,44,99,111,110,116,101,110,116,58,34,34,44,118,97,114,105,97,110,116,58,110,117,108,108,44,99,117,115,116,111,109,67,108,97,115,115,58,110,117,108,108,44,105,110,116,101,114,97,99,116,105,118,101,58,33,48,125,125,44,99,111,109,112,117,116,101,100,58,123,116,101,109,112,108,97,116,101,84,121,112,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,116,111,111,108,116,105,112,34,125,44,116,101,109,112,108,97,116,101,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,61,116,104,105,115,46,118,97,114,105,97,110,116,44,110,61,116,104,105,115,46,97,116,116,97,99,104,109,101,110,116,44,114,61,116,104,105,115,46,116,101,109,112,108,97,116,101,84,121,112,101,59,114,101,116,117,114,110,91,40,116,61,123,110,111,110,105,110,116,101,114,97,99,116,105,118,101,58,33,116,104,105,115,46,105,110,116,101,114,97,99,116,105,118,101,125,44,115,84,40,116,44,34,98,45,34,46,99,111,110,99,97,116,40,114,44,34,45,34,41,46,99,111,110,99,97,116,40,101,41,44,101,41,44,115,84,40,116,44,34,98,115,45,34,46,99,111,110,99,97,116,40,114,44,34,45,34,41,46,99,111,110,99,97,116,40,110,41,44,110,41,44,116,41,44,116,104,105,115,46,99,117,115,116,111,109,67,108,97,115,115,93,125,44,116,101,109,112,108,97,116,101,65,116,116,114,105,98,117,116,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,105,100,59,114,101,116,117,114,110,32,97,84,40,97,84,40,123,125,44,116,104,105,115,46,36,112,97,114,101,110,116,46,36,112,97,114,101,110,116,46,36,97,116,116,114,115,41,44,123,125,44,123,105,100,58,116,44,114,111,108,101,58,34,116,111,111,108,116,105,112,34,44,116,97,98,105,110,100,101,120,58,34,45,49,34,125,44,116,104,105,115,46,115,99,111,112,101,100,83,116,121,108,101,65,116,116,114,115,41,125,44,116,101,109,112,108,97,116,101,76,105,115,116,101,110,101,114,115,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,123,109,111,117,115,101,101,110,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,36,101,109,105,116,40,65,105,44,101,41,125,44,109,111,117,115,101,108,101,97,118,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,36,101,109,105,116,40,76,105,44,101,41,125,44,102,111,99,117,115,105,110,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,36,101,109,105,116,40,83,105,44,101,41,125,44,102,111,99,117,115,111,117,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,36,101,109,105,116,40,107,105,44,101,41,125,125,125,125,44,109,101,116,104,111,100,115,58,123,114,101,110,100,101,114,84,101,109,112,108,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,116,105,116,108,101,44,110,61,95,116,40,101,41,63,101,40,123,125,41,58,101,44,114,61,116,104,105,115,46,104,116,109,108,38,38,33,95,116,40,101,41,63,123,105,110,110,101,114,72,84,77,76,58,101,125,58,123,125,59,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,116,111,111,108,116,105,112,32,98,45,116,111,111,108,116,105,112,34,44,99,108,97,115,115,58,116,104,105,115,46,116,101,109,112,108,97,116,101,67,108,97,115,115,101,115,44,97,116,116,114,115,58,116,104,105,115,46,116,101,109,112,108,97,116,101,65,116,116,114,105,98,117,116,101,115,44,111,110,58,116,104,105,115,46,116,101,109,112,108,97,116,101,76,105,115,116,101,110,101,114,115,125,44,91,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,97,114,114,111,119,34,44,114,101,102,58,34,97,114,114,111,119,34,125,41,44,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,116,111,111,108,116,105,112,45,105,110,110,101,114,34,44,100,111,109,80,114,111,112,115,58,114,125,44,91,110,93,41,93,41,125,125,125,41,59,102,117,110,99,116,105,111,110,32,108,84,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,102,84,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,108,84,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,104,84,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,108,84,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,104,84,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,118,97,114,32,100,84,44,112,84,44,118,84,61,34,46,109,111,100,97,108,45,99,111,110,116,101,110,116,34,44,103,84,61,80,99,40,115,114,44,80,105,41,44,109,84,61,34,46,98,45,115,105,100,101,98,97,114,34,44,98,84,61,91,118,84,44,109,84,93,46,106,111,105,110,40,34,44,32,34,41,44,121,84,61,34,100,114,111,112,100,111,119,110,34,44,119,84,61,34,46,100,114,111,112,100,111,119,110,45,109,101,110,117,46,115,104,111,119,34,44,95,84,61,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,44,120,84,61,123,116,105,116,108,101,58,34,34,44,99,111,110,116,101,110,116,58,34,34,44,118,97,114,105,97,110,116,58,110,117,108,108,44,99,117,115,116,111,109,67,108,97,115,115,58,110,117,108,108,44,116,114,105,103,103,101,114,115,58,34,34,44,112,108,97,99,101,109,101,110,116,58,34,97,117,116,111,34,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,116,97,114,103,101,116,58,110,117,108,108,44,99,111,110,116,97,105,110,101,114,58,110,117,108,108,44,110,111,70,97,100,101,58,33,49,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,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,58,53,44,111,102,102,115,101,116,58,48,44,100,101,108,97,121,58,48,44,97,114,114,111,119,80,97,100,100,105,110,103,58,54,44,105,110,116,101,114,97,99,116,105,118,101,58,33,48,44,100,105,115,97,98,108,101,100,58,33,49,44,105,100,58,110,117,108,108,44,104,116,109,108,58,33,49,125,44,79,84,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,101,105,44,109,105,120,105,110,115,58,91,80,108,93,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,84,40,102,84,40,123,125,44,120,84,41,44,123,125,44,123,97,99,116,105,118,101,84,114,105,103,103,101,114,58,123,104,111,118,101,114,58,33,49,44,99,108,105,99,107,58,33,49,44,102,111,99,117,115,58,33,49,125,44,108,111,99,97,108,83,104,111,119,58,33,49,125,41,125,44,99,111,109,112,117,116,101,100,58,123,116,101,109,112,108,97,116,101,84,121,112,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,116,111,111,108,116,105,112,34,125,44,99,111,109,112,117,116,101,100,73,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,105,100,124,124,34,95,95,98,118,95,34,46,99,111,110,99,97,116,40,116,104,105,115,46,116,101,109,112,108,97,116,101,84,121,112,101,44,34,95,34,41,46,99,111,110,99,97,116,40,116,104,105,115,91,70,101,93,44,34,95,95,34,41,125,44,99,111,109,112,117,116,101,100,68,101,108,97,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,115,104,111,119,58,48,44,104,105,100,101,58,48,125,59,114,101,116,117,114,110,32,84,116,40,116,104,105,115,46,100,101,108,97,121,41,63,40,116,46,115,104,111,119,61,116,117,40,74,97,40,116,104,105,115,46,100,101,108,97,121,46,115,104,111,119,44,48,41,44,48,41,44,116,46,104,105,100,101,61,116,117,40,74,97,40,116,104,105,115,46,100,101,108,97,121,46,104,105,100,101,44,48,41,44,48,41,41,58,40,83,116,40,116,104,105,115,46,100,101,108,97,121,41,124,124,79,116,40,116,104,105,115,46,100,101,108,97,121,41,41,38,38,40,116,46,115,104,111,119,61,116,46,104,105,100,101,61,116,117,40,74,97,40,116,104,105,115,46,100,101,108,97,121,44,48,41,44,48,41,41,44,116,125,44,99,111,109,112,117,116,101,100,84,114,105,103,103,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,97,40,116,104,105,115,46,116,114,105,103,103,101,114,115,41,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,32,34,41,46,116,114,105,109,40,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,115,112,108,105,116,40,47,92,115,43,47,41,46,115,111,114,116,40,41,125,44,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,58,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,97,99,116,105,118,101,84,114,105,103,103,101,114,41,105,102,40,116,104,105,115,46,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,99,111,109,112,117,116,101,100,84,101,109,112,108,97,116,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,116,105,116,108,101,44,101,61,116,104,105,115,46,99,111,110,116,101,110,116,44,110,61,116,104,105,115,46,118,97,114,105,97,110,116,44,114,61,116,104,105,115,46,99,117,115,116,111,109,67,108,97,115,115,44,105,61,116,104,105,115,46,110,111,70,97,100,101,44,111,61,116,104,105,115,46,105,110,116,101,114,97,99,116,105,118,101,59,114,101,116,117,114,110,123,116,105,116,108,101,58,116,44,99,111,110,116,101,110,116,58,101,44,118,97,114,105,97,110,116,58,110,44,99,117,115,116,111,109,67,108,97,115,115,58,114,44,110,111,70,97,100,101,58,105,44,105,110,116,101,114,97,99,116,105,118,101,58,111,125,125,125,44,119,97,116,99,104,58,123,99,111,109,112,117,116,101,100,84,114,105,103,103,101,114,115,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,95,108,40,116,44,101,41,124,124,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,110,46,117,110,76,105,115,116,101,110,40,41,44,101,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,113,97,40,116,44,101,41,124,124,110,46,97,99,116,105,118,101,84,114,105,103,103,101,114,91,101,93,38,38,40,110,46,97,99,116,105,118,101,84,114,105,103,103,101,114,91,101,93,61,33,49,41,125,41,41,44,110,46,108,105,115,116,101,110,40,41,125,41,41,125,44,99,111,109,112,117,116,101,100,84,101,109,112,108,97,116,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,110,100,108,101,84,101,109,112,108,97,116,101,85,112,100,97,116,101,40,41,125,44,116,105,116,108,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,61,61,61,101,124,124,116,124,124,116,104,105,115,46,104,105,100,101,40,41,125,44,100,105,115,97,98,108,101,100,58,102,117,110,99,116,105,111,110,40,116,41,123,116,63,116,104,105,115,46,100,105,115,97,98,108,101,40,41,58,116,104,105,115,46,101,110,97,98,108,101,40,41,125,125,44,99,114,101,97,116,101,100,58,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,36,95,116,105,112,61,110,117,108,108,44,116,104,105,115,46,36,95,104,111,118,101,114,84,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,61,34,34,44,116,104,105,115,46,36,95,118,105,115,105,98,108,101,73,110,116,101,114,118,97,108,61,110,117,108,108,44,116,104,105,115,46,36,95,101,110,97,98,108,101,100,61,33,116,104,105,115,46,100,105,115,97,98,108,101,100,44,116,104,105,115,46,36,95,110,111,111,112,61,101,112,46,98,105,110,100,40,116,104,105,115,41,44,116,104,105,115,46,36,112,97,114,101,110,116,38,38,116,104,105,115,46,36,112,97,114,101,110,116,46,36,111,110,99,101,40,97,111,44,40,102,117,110,99,116,105,111,110,40,41,123,116,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,36,100,101,115,116,114,111,121,40,41,125,41,41,125,41,41,125,41,41,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,46,103,101,116,84,97,114,103,101,116,40,41,59,101,38,38,106,115,40,100,111,99,117,109,101,110,116,46,98,111,100,121,44,101,41,63,40,116,46,115,99,111,112,101,73,100,61,85,83,40,116,46,36,112,97,114,101,110,116,41,44,116,46,108,105,115,116,101,110,40,41,41,58,104,101,40,79,116,40,116,46,116,97,114,103,101,116,41,63,39,85,110,97,98,108,101,32,116,111,32,102,105,110,100,32,116,97,114,103,101,116,32,101,108,101,109,101,110,116,32,98,121,32,73,68,32,34,35,39,46,99,111,110,99,97,116,40,116,46,116,97,114,103,101,116,44,39,34,32,105,110,32,100,111,99,117,109,101,110,116,46,39,41,58,34,84,104,101,32,112,114,111,118,105,100,101,100,32,116,97,114,103,101,116,32,105,115,32,110,111,32,118,97,108,105,100,32,72,84,77,76,32,101,108,101,109,101,110,116,46,34,44,116,46,116,101,109,112,108,97,116,101,84,121,112,101,41,125,41,41,125,44,117,112,100,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,104,97,110,100,108,101,84,101,109,112,108,97,116,101,85,112,100,97,116,101,41,125,44,100,101,97,99,116,105,118,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,102,111,114,99,101,72,105,100,101,40,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,117,110,76,105,115,116,101,110,40,41,44,116,104,105,115,46,115,101,116,87,104,105,108,101,79,112,101,110,76,105,115,116,101,110,101,114,115,40,33,49,41,44,116,104,105,115,46,99,108,101,97,114,72,111,118,101,114,84,105,109,101,111,117,116,40,41,44,116,104,105,115,46,99,108,101,97,114,86,105,115,105,98,105,108,105,116,121,73,110,116,101,114,118,97,108,40,41,44,116,104,105,115,46,100,101,115,116,114,111,121,84,101,109,112,108,97,116,101,40,41,44,116,104,105,115,46,36,95,110,111,111,112,61,110,117,108,108,125,44,109,101,116,104,111,100,115,58,123,103,101,116,84,101,109,112,108,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,117,84,125,44,117,112,100,97,116,101,68,97,116,97,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,123,125,44,110,61,33,49,59,86,116,40,120,84,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,114,41,123,98,116,40,101,91,114,93,41,124,124,116,91,114,93,61,61,61,101,91,114,93,124,124,40,116,91,114,93,61,101,91,114,93,44,34,116,105,116,108,101,34,61,61,61,114,38,38,40,110,61,33,48,41,41,125,41,41,44,110,38,38,116,104,105,115,46,108,111,99,97,108,83,104,111,119,38,38,116,104,105,115,46,102,105,120,84,105,116,108,101,40,41,125,44,99,114,101,97,116,101,84,101,109,112,108,97,116,101,65,110,100,83,104,111,119,58,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,67,111,110,116,97,105,110,101,114,40,41,44,101,61,116,104,105,115,46,103,101,116,84,101,109,112,108,97,116,101,40,41,44,110,61,116,104,105,115,46,36,95,116,105,112,61,110,101,119,32,101,40,123,112,97,114,101,110,116,58,116,104,105,115,44,112,114,111,112,115,68,97,116,97,58,123,105,100,58,116,104,105,115,46,99,111,109,112,117,116,101,100,73,100,44,104,116,109,108,58,116,104,105,115,46,104,116,109,108,44,112,108,97,99,101,109,101,110,116,58,116,104,105,115,46,112,108,97,99,101,109,101,110,116,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,116,104,105,115,46,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,44,116,97,114,103,101,116,58,116,104,105,115,46,103,101,116,80,108,97,99,101,109,101,110,116,84,97,114,103,101,116,40,41,44,98,111,117,110,100,97,114,121,58,116,104,105,115,46,103,101,116,66,111,117,110,100,97,114,121,40,41,44,111,102,102,115,101,116,58,74,97,40,116,104,105,115,46,111,102,102,115,101,116,44,48,41,44,97,114,114,111,119,80,97,100,100,105,110,103,58,74,97,40,116,104,105,115,46,97,114,114,111,119,80,97,100,100,105,110,103,44,48,41,44,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,58,74,97,40,116,104,105,115,46,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,44,48,41,125,125,41,59,116,104,105,115,46,104,97,110,100,108,101,84,101,109,112,108,97,116,101,85,112,100,97,116,101,40,41,44,110,46,36,111,110,99,101,40,90,105,44,116,104,105,115,46,111,110,84,101,109,112,108,97,116,101,83,104,111,119,41,44,110,46,36,111,110,99,101,40,74,105,44,116,104,105,115,46,111,110,84,101,109,112,108,97,116,101,83,104,111,119,110,41,44,110,46,36,111,110,99,101,40,84,105,44,116,104,105,115,46,111,110,84,101,109,112,108,97,116,101,72,105,100,101,41,44,110,46,36,111,110,99,101,40,80,105,44,116,104,105,115,46,111,110,84,101,109,112,108,97,116,101,72,105,100,100,101,110,41,44,110,46,36,111,110,99,101,40,115,111,44,116,104,105,115,46,100,101,115,116,114,111,121,84,101,109,112,108,97,116,101,41,44,110,46,36,111,110,40,83,105,44,116,104,105,115,46,104,97,110,100,108,101,69,118,101,110,116,41,44,110,46,36,111,110,40,107,105,44,116,104,105,115,46,104,97,110,100,108,101,69,118,101,110,116,41,44,110,46,36,111,110,40,65,105,44,116,104,105,115,46,104,97,110,100,108,101,69,118,101,110,116,41,44,110,46,36,111,110,40,76,105,44,116,104,105,115,46,104,97,110,100,108,101,69,118,101,110,116,41,44,110,46,36,109,111,117,110,116,40,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,69,108,101,109,101,110,116,40,34,100,105,118,34,41,41,41,125,44,104,105,100,101,84,101,109,112,108,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,116,105,112,38,38,116,104,105,115,46,36,95,116,105,112,46,104,105,100,101,40,41,44,116,104,105,115,46,99,108,101,97,114,65,99,116,105,118,101,84,114,105,103,103,101,114,115,40,41,44,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,61,34,34,125,44,100,101,115,116,114,111,121,84,101,109,112,108,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,87,104,105,108,101,79,112,101,110,76,105,115,116,101,110,101,114,115,40,33,49,41,44,116,104,105,115,46,99,108,101,97,114,72,111,118,101,114,84,105,109,101,111,117,116,40,41,44,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,61,34,34,44,116,104,105,115,46,99,108,101,97,114,65,99,116,105,118,101,84,114,105,103,103,101,114,115,40,41,44,116,104,105,115,46,108,111,99,97,108,80,108,97,99,101,109,101,110,116,84,97,114,103,101,116,61,110,117,108,108,59,116,114,121,123,116,104,105,115,46,36,95,116,105,112,46,36,100,101,115,116,114,111,121,40,41,125,99,97,116,99,104,40,116,41,123,125,116,104,105,115,46,36,95,116,105,112,61,110,117,108,108,44,116,104,105,115,46,114,101,109,111,118,101,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,40,41,44,116,104,105,115,46,114,101,115,116,111,114,101,84,105,116,108,101,40,41,44,116,104,105,115,46,108,111,99,97,108,83,104,111,119,61,33,49,125,44,103,101,116,84,101,109,112,108,97,116,101,69,108,101,109,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,36,95,116,105,112,63,116,104,105,115,46,36,95,116,105,112,46,36,101,108,58,110,117,108,108,125,44,104,97,110,100,108,101,84,101,109,112,108,97,116,101,85,112,100,97,116,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,36,95,116,105,112,59,105,102,40,101,41,123,118,97,114,32,110,61,91,34,116,105,116,108,101,34,44,34,99,111,110,116,101,110,116,34,44,34,118,97,114,105,97,110,116,34,44,34,99,117,115,116,111,109,67,108,97,115,115,34,44,34,110,111,70,97,100,101,34,44,34,105,110,116,101,114,97,99,116,105,118,101,34,93,59,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,101,91,110,93,33,61,61,116,91,110,93,38,38,40,101,91,110,93,61,116,91,110,93,41,125,41,41,125,125,44,115,104,111,119,58,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,97,114,103,101,116,40,41,59,105,102,40,116,38,38,106,115,40,100,111,99,117,109,101,110,116,46,98,111,100,121,44,116,41,38,38,120,115,40,116,41,38,38,33,116,104,105,115,46,100,114,111,112,100,111,119,110,79,112,101,110,40,41,38,38,40,33,119,116,40,116,104,105,115,46,116,105,116,108,101,41,38,38,34,34,33,61,61,116,104,105,115,46,116,105,116,108,101,124,124,33,119,116,40,116,104,105,115,46,99,111,110,116,101,110,116,41,38,38,34,34,33,61,61,116,104,105,115,46,99,111,110,116,101,110,116,41,38,38,33,116,104,105,115,46,36,95,116,105,112,38,38,33,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,123,116,104,105,115,46,108,111,99,97,108,83,104,111,119,61,33,48,59,118,97,114,32,101,61,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,90,105,44,123,99,97,110,99,101,108,97,98,108,101,58,33,48,125,41,59,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,101,41,44,101,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,63,116,104,105,115,46,100,101,115,116,114,111,121,84,101,109,112,108,97,116,101,40,41,58,40,116,104,105,115,46,102,105,120,84,105,116,108,101,40,41,44,116,104,105,115,46,97,100,100,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,40,41,44,116,104,105,115,46,99,114,101,97,116,101,84,101,109,112,108,97,116,101,65,110,100,83,104,111,119,40,41,41,125,125,44,104,105,100,101,58,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,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,101,61,116,104,105,115,46,103,101,116,84,101,109,112,108,97,116,101,69,108,101,109,101,110,116,40,41,59,105,102,40,101,38,38,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,123,118,97,114,32,110,61,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,84,105,44,123,99,97,110,99,101,108,97,98,108,101,58,33,116,125,41,59,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,110,41,44,110,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,116,104,105,115,46,104,105,100,101,84,101,109,112,108,97,116,101,40,41,125,101,108,115,101,32,116,104,105,115,46,114,101,115,116,111,114,101,84,105,116,108,101,40,41,125,44,102,111,114,99,101,72,105,100,101,58,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,101,109,112,108,97,116,101,69,108,101,109,101,110,116,40,41,59,116,38,38,116,104,105,115,46,108,111,99,97,108,83,104,111,119,38,38,40,116,104,105,115,46,115,101,116,87,104,105,108,101,79,112,101,110,76,105,115,116,101,110,101,114,115,40,33,49,41,44,116,104,105,115,46,99,108,101,97,114,72,111,118,101,114,84,105,109,101,111,117,116,40,41,44,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,61,34,34,44,116,104,105,115,46,99,108,101,97,114,65,99,116,105,118,101,84,114,105,103,103,101,114,115,40,41,44,116,104,105,115,46,36,95,116,105,112,38,38,40,116,104,105,115,46,36,95,116,105,112,46,110,111,70,97,100,101,61,33,48,41,44,116,104,105,115,46,104,105,100,101,40,33,48,41,41,125,44,101,110,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,101,110,97,98,108,101,100,61,33,48,44,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,95,105,41,41,125,44,100,105,115,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,101,110,97,98,108,101,100,61,33,49,44,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,109,105,41,41,125,44,111,110,84,101,109,112,108,97,116,101,83,104,111,119,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,87,104,105,108,101,79,112,101,110,76,105,115,116,101,110,101,114,115,40,33,48,41,125,44,111,110,84,101,109,112,108,97,116,101,83,104,111,119,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,59,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,61,34,34,44,34,111,117,116,34,61,61,61,116,38,38,116,104,105,115,46,108,101,97,118,101,40,110,117,108,108,41,44,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,74,105,41,41,125,44,111,110,84,101,109,112,108,97,116,101,72,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,87,104,105,108,101,79,112,101,110,76,105,115,116,101,110,101,114,115,40,33,49,41,125,44,111,110,84,101,109,112,108,97,116,101,72,105,100,100,101,110,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,101,115,116,114,111,121,84,101,109,112,108,97,116,101,40,41,44,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,80,105,41,41,125,44,103,101,116,84,97,114,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,116,97,114,103,101,116,59,114,101,116,117,114,110,32,79,116,40,116,41,63,116,61,69,115,40,116,46,114,101,112,108,97,99,101,40,47,94,35,47,44,34,34,41,41,58,95,116,40,116,41,63,116,61,116,40,41,58,116,38,38,40,116,61,116,46,36,101,108,124,124,116,41,44,98,115,40,116,41,63,116,58,110,117,108,108,125,44,103,101,116,80,108,97,99,101,109,101,110,116,84,97,114,103,101,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,103,101,116,84,97,114,103,101,116,40,41,125,44,103,101,116,84,97,114,103,101,116,73,100,58,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,97,114,103,101,116,40,41,59,114,101,116,117,114,110,32,116,38,38,116,46,105,100,63,116,46,105,100,58,110,117,108,108,125,44,103,101,116,67,111,110,116,97,105,110,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,33,33,116,104,105,115,46,99,111,110,116,97,105,110,101,114,38,38,40,116,104,105,115,46,99,111,110,116,97,105,110,101,114,46,36,101,108,124,124,116,104,105,115,46,99,111,110,116,97,105,110,101,114,41,44,101,61,100,111,99,117,109,101,110,116,46,98,111,100,121,44,110,61,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,114,101,116,117,114,110,33,49,61,61,61,116,63,84,115,40,98,84,44,110,41,124,124,101,58,79,116,40,116,41,38,38,69,115,40,116,46,114,101,112,108,97,99,101,40,47,94,35,47,44,34,34,41,41,124,124,101,125,44,103,101,116,66,111,117,110,100,97,114,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,98,111,117,110,100,97,114,121,63,116,104,105,115,46,98,111,117,110,100,97,114,121,46,36,101,108,124,124,116,104,105,115,46,98,111,117,110,100,97,114,121,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,125,44,105,115,73,110,77,111,100,97,108,58,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,97,114,103,101,116,40,41,59,114,101,116,117,114,110,32,116,38,38,84,115,40,118,84,44,116,41,125,44,105,115,68,114,111,112,100,111,119,110,58,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,97,114,103,101,116,40,41,59,114,101,116,117,114,110,32,116,38,38,76,115,40,116,44,121,84,41,125,44,100,114,111,112,100,111,119,110,79,112,101,110,58,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,97,114,103,101,116,40,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,68,114,111,112,100,111,119,110,40,41,38,38,116,38,38,67,115,40,119,84,44,116,41,125,44,99,108,101,97,114,72,111,118,101,114,84,105,109,101,111,117,116,58,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,36,95,104,111,118,101,114,84,105,109,101,111,117,116,41,44,116,104,105,115,46,36,95,104,111,118,101,114,84,105,109,101,111,117,116,61,110,117,108,108,125,44,99,108,101,97,114,86,105,115,105,98,105,108,105,116,121,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,41,123,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,36,95,118,105,115,105,98,108,101,73,110,116,101,114,118,97,108,41,44,116,104,105,115,46,36,95,118,105,115,105,98,108,101,73,110,116,101,114,118,97,108,61,110,117,108,108,125,44,99,108,101,97,114,65,99,116,105,118,101,84,114,105,103,103,101,114,115,58,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,97,99,116,105,118,101,84,114,105,103,103,101,114,41,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,91,116,93,61,33,49,125,44,97,100,100,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,58,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,97,114,103,101,116,40,41,44,101,61,36,115,40,116,44,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,41,124,124,34,34,59,101,61,101,46,115,112,108,105,116,40,47,92,115,43,47,41,46,99,111,110,99,97,116,40,116,104,105,115,46,99,111,109,112,117,116,101,100,73,100,41,46,106,111,105,110,40,34,32,34,41,46,116,114,105,109,40,41,44,73,115,40,116,44,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,44,101,41,125,44,114,101,109,111,118,101,65,114,105,97,68,101,115,99,114,105,98,101,100,98,121,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,103,101,116,84,97,114,103,101,116,40,41,44,110,61,36,115,40,101,44,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,41,124,124,34,34,59,110,61,110,46,115,112,108,105,116,40,47,92,115,43,47,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,33,61,61,116,46,99,111,109,112,117,116,101,100,73,100,125,41,41,46,106,111,105,110,40,34,32,34,41,46,116,114,105,109,40,41,44,110,63,73,115,40,101,44,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,44,110,41,58,77,115,40,101,44,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,41,125,44,102,105,120,84,105,116,108,101,58,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,97,114,103,101,116,40,41,59,105,102,40,70,115,40,116,44,34,116,105,116,108,101,34,41,41,123,118,97,114,32,101,61,36,115,40,116,44,34,116,105,116,108,101,34,41,59,73,115,40,116,44,34,116,105,116,108,101,34,44,34,34,41,44,101,38,38,73,115,40,116,44,95,84,44,101,41,125,125,44,114,101,115,116,111,114,101,84,105,116,108,101,58,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,97,114,103,101,116,40,41,59,105,102,40,70,115,40,116,44,95,84,41,41,123,118,97,114,32,101,61,36,115,40,116,44,95,84,41,59,77,115,40,116,44,95,84,41,44,101,38,38,73,115,40,116,44,34,116,105,116,108,101,34,44,101,41,125,125,44,98,117,105,108,100,69,118,101,110,116,58,102,117,110,99,116,105,111,110,40,116,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,49,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,123,125,59,114,101,116,117,114,110,32,110,101,119,32,118,109,40,116,44,102,84,40,123,99,97,110,99,101,108,97,98,108,101,58,33,49,44,116,97,114,103,101,116,58,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,44,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,103,101,116,84,101,109,112,108,97,116,101,69,108,101,109,101,110,116,40,41,124,124,110,117,108,108,44,99,111,109,112,111,110,101,110,116,73,100,58,116,104,105,115,46,99,111,109,112,117,116,101,100,73,100,44,118,117,101,84,97,114,103,101,116,58,116,104,105,115,125,44,101,41,41,125,44,101,109,105,116,69,118,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,116,121,112,101,59,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,80,99,40,116,104,105,115,46,116,101,109,112,108,97,116,101,84,121,112,101,44,101,41,44,116,41,44,116,104,105,115,46,36,101,109,105,116,40,101,44,116,41,125,44,108,105,115,116,101,110,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,103,101,116,84,97,114,103,101,116,40,41,59,101,38,38,40,116,104,105,115,46,115,101,116,82,111,111,116,76,105,115,116,101,110,101,114,40,33,48,41,44,116,104,105,115,46,99,111,109,112,117,116,101,100,84,114,105,103,103,101,114,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,34,99,108,105,99,107,34,61,61,61,110,63,120,99,40,101,44,34,99,108,105,99,107,34,44,116,46,104,97,110,100,108,101,69,118,101,110,116,44,104,111,41,58,34,102,111,99,117,115,34,61,61,61,110,63,40,120,99,40,101,44,34,102,111,99,117,115,105,110,34,44,116,46,104,97,110,100,108,101,69,118,101,110,116,44,104,111,41,44,120,99,40,101,44,34,102,111,99,117,115,111,117,116,34,44,116,46,104,97,110,100,108,101,69,118,101,110,116,44,104,111,41,41,58,34,98,108,117,114,34,61,61,61,110,63,120,99,40,101,44,34,102,111,99,117,115,111,117,116,34,44,116,46,104,97,110,100,108,101,69,118,101,110,116,44,104,111,41,58,34,104,111,118,101,114,34,61,61,61,110,38,38,40,120,99,40,101,44,34,109,111,117,115,101,101,110,116,101,114,34,44,116,46,104,97,110,100,108,101,69,118,101,110,116,44,104,111,41,44,120,99,40,101,44,34,109,111,117,115,101,108,101,97,118,101,34,44,116,46,104,97,110,100,108,101,69,118,101,110,116,44,104,111,41,41,125,41,44,116,104,105,115,41,41,125,44,117,110,76,105,115,116,101,110,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,91,34,99,108,105,99,107,34,44,34,102,111,99,117,115,105,110,34,44,34,102,111,99,117,115,111,117,116,34,44,34,109,111,117,115,101,101,110,116,101,114,34,44,34,109,111,117,115,101,108,101,97,118,101,34,93,44,110,61,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,116,104,105,115,46,115,101,116,82,111,111,116,76,105,115,116,101,110,101,114,40,33,49,41,44,101,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,110,38,38,79,99,40,110,44,101,44,116,46,104,97,110,100,108,101,69,118,101,110,116,44,104,111,41,125,41,44,116,104,105,115,41,125,44,115,101,116,82,111,111,116,76,105,115,116,101,110,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,36,114,111,111,116,59,105,102,40,101,41,123,118,97,114,32,110,61,116,63,34,36,111,110,34,58,34,36,111,102,102,34,44,114,61,116,104,105,115,46,116,101,109,112,108,97,116,101,84,121,112,101,59,101,91,110,93,40,84,99,40,114,44,84,105,41,44,116,104,105,115,46,100,111,72,105,100,101,41,44,101,91,110,93,40,84,99,40,114,44,90,105,41,44,116,104,105,115,46,100,111,83,104,111,119,41,44,101,91,110,93,40,84,99,40,114,44,103,105,41,44,116,104,105,115,46,100,111,68,105,115,97,98,108,101,41,44,101,91,110,93,40,84,99,40,114,44,119,105,41,44,116,104,105,115,46,100,111,69,110,97,98,108,101,41,125,125,44,115,101,116,87,104,105,108,101,79,112,101,110,76,105,115,116,101,110,101,114,115,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,115,101,116,77,111,100,97,108,76,105,115,116,101,110,101,114,40,116,41,44,116,104,105,115,46,115,101,116,68,114,111,112,100,111,119,110,76,105,115,116,101,110,101,114,40,116,41,44,116,104,105,115,46,118,105,115,105,98,108,101,67,104,101,99,107,40,116,41,44,116,104,105,115,46,115,101,116,79,110,84,111,117,99,104,83,116,97,114,116,76,105,115,116,101,110,101,114,40,116,41,125,44,118,105,115,105,98,108,101,67,104,101,99,107,58,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,99,108,101,97,114,86,105,115,105,98,105,108,105,116,121,73,110,116,101,114,118,97,108,40,41,59,118,97,114,32,110,61,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,44,114,61,116,104,105,115,46,103,101,116,84,101,109,112,108,97,116,101,69,108,101,109,101,110,116,40,41,59,116,38,38,40,116,104,105,115,46,36,95,118,105,115,105,98,108,101,73,110,116,101,114,118,97,108,61,115,101,116,73,110,116,101,114,118,97,108,40,40,102,117,110,99,116,105,111,110,40,41,123,33,114,124,124,33,101,46,108,111,99,97,108,83,104,111,119,124,124,110,46,112,97,114,101,110,116,78,111,100,101,38,38,120,115,40,110,41,124,124,101,46,102,111,114,99,101,72,105,100,101,40,41,125,41,44,49,48,48,41,41,125,44,115,101,116,77,111,100,97,108,76,105,115,116,101,110,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,105,115,73,110,77,111,100,97,108,40,41,38,38,116,104,105,115,46,36,114,111,111,116,91,116,63,34,36,111,110,34,58,34,36,111,102,102,34,93,40,103,84,44,116,104,105,115,46,102,111,114,99,101,72,105,100,101,41,125,44,115,101,116,79,110,84,111,117,99,104,83,116,97,114,116,76,105,115,116,101,110,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,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,71,97,40,100,111,99,117,109,101,110,116,46,98,111,100,121,46,99,104,105,108,100,114,101,110,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,83,99,40,116,44,110,44,34,109,111,117,115,101,111,118,101,114,34,44,101,46,36,95,110,111,111,112,41,125,41,41,125,44,115,101,116,68,114,111,112,100,111,119,110,76,105,115,116,101,110,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,101,38,38,116,104,105,115,46,36,114,111,111,116,38,38,116,104,105,115,46,105,115,68,114,111,112,100,111,119,110,38,38,101,46,95,95,118,117,101,95,95,38,38,101,46,95,95,118,117,101,95,95,91,116,63,34,36,111,110,34,58,34,36,111,102,102,34,93,40,74,105,44,116,104,105,115,46,102,111,114,99,101,72,105,100,101,41,125,44,104,97,110,100,108,101,69,118,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,103,101,116,84,97,114,103,101,116,40,41,59,105,102,40,101,38,38,33,79,115,40,101,41,38,38,116,104,105,115,46,36,95,101,110,97,98,108,101,100,38,38,33,116,104,105,115,46,100,114,111,112,100,111,119,110,79,112,101,110,40,41,41,123,118,97,114,32,110,61,116,46,116,121,112,101,44,114,61,116,104,105,115,46,99,111,109,112,117,116,101,100,84,114,105,103,103,101,114,115,59,105,102,40,34,99,108,105,99,107,34,61,61,61,110,38,38,113,97,40,114,44,34,99,108,105,99,107,34,41,41,116,104,105,115,46,99,108,105,99,107,40,116,41,59,101,108,115,101,32,105,102,40,34,109,111,117,115,101,101,110,116,101,114,34,61,61,61,110,38,38,113,97,40,114,44,34,104,111,118,101,114,34,41,41,116,104,105,115,46,101,110,116,101,114,40,116,41,59,101,108,115,101,32,105,102,40,34,102,111,99,117,115,105,110,34,61,61,61,110,38,38,113,97,40,114,44,34,102,111,99,117,115,34,41,41,116,104,105,115,46,101,110,116,101,114,40,116,41,59,101,108,115,101,32,105,102,40,34,102,111,99,117,115,111,117,116,34,61,61,61,110,38,38,40,113,97,40,114,44,34,102,111,99,117,115,34,41,124,124,113,97,40,114,44,34,98,108,117,114,34,41,41,124,124,34,109,111,117,115,101,108,101,97,118,101,34,61,61,61,110,38,38,113,97,40,114,44,34,104,111,118,101,114,34,41,41,123,118,97,114,32,105,61,116,104,105,115,46,103,101,116,84,101,109,112,108,97,116,101,69,108,101,109,101,110,116,40,41,44,111,61,116,46,116,97,114,103,101,116,44,97,61,116,46,114,101,108,97,116,101,100,84,97,114,103,101,116,59,105,102,40,105,38,38,106,115,40,105,44,111,41,38,38,106,115,40,101,44,97,41,124,124,105,38,38,106,115,40,101,44,111,41,38,38,106,115,40,105,44,97,41,124,124,105,38,38,106,115,40,105,44,111,41,38,38,106,115,40,105,44,97,41,124,124,106,115,40,101,44,111,41,38,38,106,115,40,101,44,97,41,41,114,101,116,117,114,110,59,116,104,105,115,46,108,101,97,118,101,40,116,41,125,125,125,44,100,111,72,105,100,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,104,105,115,46,103,101,116,84,97,114,103,101,116,73,100,40,41,33,61,61,116,38,38,116,104,105,115,46,99,111,109,112,117,116,101,100,73,100,33,61,61,116,124,124,116,104,105,115,46,102,111,114,99,101,72,105,100,101,40,41,125,44,100,111,83,104,111,119,58,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,104,105,115,46,103,101,116,84,97,114,103,101,116,73,100,40,41,33,61,61,116,38,38,116,104,105,115,46,99,111,109,112,117,116,101,100,73,100,33,61,61,116,124,124,116,104,105,115,46,115,104,111,119,40,41,125,44,100,111,68,105,115,97,98,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,104,105,115,46,103,101,116,84,97,114,103,101,116,73,100,40,41,33,61,61,116,38,38,116,104,105,115,46,99,111,109,112,117,116,101,100,73,100,33,61,61,116,124,124,116,104,105,115,46,100,105,115,97,98,108,101,40,41,125,44,100,111,69,110,97,98,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,104,105,115,46,103,101,116,84,97,114,103,101,116,73,100,40,41,33,61,61,116,38,38,116,104,105,115,46,99,111,109,112,117,116,101,100,73,100,33,61,61,116,124,124,116,104,105,115,46,101,110,97,98,108,101,40,41,125,44,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,95,101,110,97,98,108,101,100,38,38,33,116,104,105,115,46,100,114,111,112,100,111,119,110,79,112,101,110,40,41,38,38,40,113,115,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,44,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,61,33,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,44,116,104,105,115,46,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,63,116,104,105,115,46,101,110,116,101,114,40,110,117,108,108,41,58,116,104,105,115,46,108,101,97,118,101,40,110,117,108,108,41,41,125,44,116,111,103,103,108,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,101,110,97,98,108,101,100,38,38,33,116,104,105,115,46,100,114,111,112,100,111,119,110,79,112,101,110,40,41,38,38,40,116,104,105,115,46,108,111,99,97,108,83,104,111,119,63,116,104,105,115,46,108,101,97,118,101,40,110,117,108,108,41,58,116,104,105,115,46,101,110,116,101,114,40,110,117,108,108,41,41,125,44,101,110,116,101,114,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,110,117,108,108,59,101,38,38,40,116,104,105,115,46,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,101,46,116,121,112,101,63,34,102,111,99,117,115,34,58,34,104,111,118,101,114,34,93,61,33,48,41,44,116,104,105,115,46,108,111,99,97,108,83,104,111,119,124,124,34,105,110,34,61,61,61,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,63,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,61,34,105,110,34,58,40,116,104,105,115,46,99,108,101,97,114,72,111,118,101,114,84,105,109,101,111,117,116,40,41,44,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,61,34,105,110,34,44,116,104,105,115,46,99,111,109,112,117,116,101,100,68,101,108,97,121,46,115,104,111,119,63,40,116,104,105,115,46,102,105,120,84,105,116,108,101,40,41,44,116,104,105,115,46,36,95,104,111,118,101,114,84,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,34,105,110,34,61,61,61,116,46,36,95,104,111,118,101,114,83,116,97,116,101,63,116,46,115,104,111,119,40,41,58,116,46,108,111,99,97,108,83,104,111,119,124,124,116,46,114,101,115,116,111,114,101,84,105,116,108,101,40,41,125,41,44,116,104,105,115,46,99,111,109,112,117,116,101,100,68,101,108,97,121,46,115,104,111,119,41,41,58,116,104,105,115,46,115,104,111,119,40,41,41,125,44,108,101,97,118,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,110,117,108,108,59,101,38,38,40,116,104,105,115,46,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,101,46,116,121,112,101,63,34,102,111,99,117,115,34,58,34,104,111,118,101,114,34,93,61,33,49,44,34,102,111,99,117,115,111,117,116,34,61,61,61,101,46,116,121,112,101,38,38,113,97,40,116,104,105,115,46,99,111,109,112,117,116,101,100,84,114,105,103,103,101,114,115,44,34,98,108,117,114,34,41,38,38,40,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,61,33,49,44,116,104,105,115,46,97,99,116,105,118,101,84,114,105,103,103,101,114,46,104,111,118,101,114,61,33,49,41,41,44,116,104,105,115,46,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,124,124,40,116,104,105,115,46,99,108,101,97,114,72,111,118,101,114,84,105,109,101,111,117,116,40,41,44,116,104,105,115,46,36,95,104,111,118,101,114,83,116,97,116,101,61,34,111,117,116,34,44,116,104,105,115,46,99,111,109,112,117,116,101,100,68,101,108,97,121,46,104,105,100,101,63,116,104,105,115,46,36,95,104,111,118,101,114,84,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,34,111,117,116,34,61,61,61,116,46,36,95,104,111,118,101,114,83,116,97,116,101,38,38,116,46,104,105,100,101,40,41,125,41,44,116,104,105,115,46,99,111,109,112,117,116,101,100,68,101,108,97,121,46,104,105,100,101,41,58,116,104,105,115,46,104,105,100,101,40,41,41,125,125,125,41,59,102,117,110,99,116,105,111,110,32,83,84,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,107,84,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,83,84,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,67,84,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,83,84,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,67,84,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,118,97,114,32,80,84,61,34,100,105,115,97,98,108,101,100,34,44,84,84,61,99,111,43,80,84,44,106,84,61,34,115,104,111,119,34,44,69,84,61,99,111,43,106,84,44,68,84,61,100,99,40,40,100,84,61,123,98,111,117,110,100,97,114,121,58,117,99,40,91,104,116,44,119,111,44,120,111,93,44,34,115,99,114,111,108,108,80,97,114,101,110,116,34,41,44,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,58,117,99,40,65,111,44,53,48,41,44,99,111,110,116,97,105,110,101,114,58,117,99,40,91,104,116,44,119,111,44,120,111,93,41,44,99,117,115,116,111,109,67,108,97,115,115,58,117,99,40,120,111,41,44,100,101,108,97,121,58,117,99,40,76,111,44,53,48,41,125,44,67,84,40,100,84,44,80,84,44,117,99,40,103,111,44,33,49,41,41,44,67,84,40,100,84,44,34,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,34,44,117,99,40,67,111,44,34,102,108,105,112,34,41,41,44,67,84,40,100,84,44,34,105,100,34,44,117,99,40,120,111,41,41,44,67,84,40,100,84,44,34,110,111,70,97,100,101,34,44,117,99,40,103,111,44,33,49,41,41,44,67,84,40,100,84,44,34,110,111,110,105,110,116,101,114,97,99,116,105,118,101,34,44,117,99,40,103,111,44,33,49,41,41,44,67,84,40,100,84,44,34,111,102,102,115,101,116,34,44,117,99,40,65,111,44,48,41,41,44,67,84,40,100,84,44,34,112,108,97,99,101,109,101,110,116,34,44,117,99,40,120,111,44,34,116,111,112,34,41,41,44,67,84,40,100,84,44,106,84,44,117,99,40,103,111,44,33,49,41,41,44,67,84,40,100,84,44,34,116,97,114,103,101,116,34,44,117,99,40,91,104,116,44,100,116,44,98,111,44,119,111,44,120,111,93,44,118,111,105,100,32,48,44,33,48,41,41,44,67,84,40,100,84,44,34,116,105,116,108,101,34,44,117,99,40,120,111,41,41,44,67,84,40,100,84,44,34,116,114,105,103,103,101,114,115,34,44,117,99,40,67,111,44,34,104,111,118,101,114,32,102,111,99,117,115,34,41,41,44,67,84,40,100,84,44,34,118,97,114,105,97,110,116,34,44,117,99,40,120,111,41,41,44,100,84,41,44,87,114,41,44,65,84,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,87,114,44,109,105,120,105,110,115,58,91,119,99,93,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,68,84,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,108,111,99,97,108,83,104,111,119,58,116,104,105,115,91,106,84,93,44,108,111,99,97,108,84,105,116,108,101,58,34,34,44,108,111,99,97,108,67,111,110,116,101,110,116,58,34,34,125,125,44,99,111,109,112,117,116,101,100,58,123,116,101,109,112,108,97,116,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,84,40,123,116,105,116,108,101,58,116,104,105,115,46,108,111,99,97,108,84,105,116,108,101,44,99,111,110,116,101,110,116,58,116,104,105,115,46,108,111,99,97,108,67,111,110,116,101,110,116,44,105,110,116,101,114,97,99,116,105,118,101,58,33,116,104,105,115,46,110,111,110,105,110,116,101,114,97,99,116,105,118,101,125,44,71,116,40,116,104,105,115,46,36,112,114,111,112,115,44,91,34,98,111,117,110,100,97,114,121,34,44,34,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,34,44,34,99,111,110,116,97,105,110,101,114,34,44,34,99,117,115,116,111,109,67,108,97,115,115,34,44,34,100,101,108,97,121,34,44,34,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,34,44,34,105,100,34,44,34,110,111,70,97,100,101,34,44,34,111,102,102,115,101,116,34,44,34,112,108,97,99,101,109,101,110,116,34,44,34,116,97,114,103,101,116,34,44,34,116,97,114,103,101,116,34,44,34,116,114,105,103,103,101,114,115,34,44,34,118,97,114,105,97,110,116,34,44,80,84,93,41,41,125,44,116,101,109,112,108,97,116,101,84,105,116,108,101,67,111,110,116,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,116,105,116,108,101,44,101,61,116,104,105,115,46,99,111,110,116,101,110,116,59,114,101,116,117,114,110,123,116,105,116,108,101,58,116,44,99,111,110,116,101,110,116,58,101,125,125,125,44,119,97,116,99,104,58,40,112,84,61,123,125,44,67,84,40,112,84,44,106,84,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,116,33,61,61,116,104,105,115,46,108,111,99,97,108,83,104,111,119,38,38,116,104,105,115,46,36,95,116,111,111,108,112,111,112,38,38,40,116,63,116,104,105,115,46,36,95,116,111,111,108,112,111,112,46,115,104,111,119,40,41,58,116,104,105,115,46,36,95,116,111,111,108,112,111,112,46,102,111,114,99,101,72,105,100,101,40,41,41,125,41,41,44,67,84,40,112,84,44,80,84,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,63,116,104,105,115,46,100,111,68,105,115,97,98,108,101,40,41,58,116,104,105,115,46,100,111,69,110,97,98,108,101,40,41,125,41,41,44,67,84,40,112,84,44,34,108,111,99,97,108,83,104,111,119,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,101,109,105,116,40,69,84,44,116,41,125,41,41,44,67,84,40,112,84,44,34,116,101,109,112,108,97,116,101,68,97,116,97,34,44,40,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,36,95,116,111,111,108,112,111,112,38,38,116,46,36,95,116,111,111,108,112,111,112,46,117,112,100,97,116,101,68,97,116,97,40,116,46,116,101,109,112,108,97,116,101,68,97,116,97,41,125,41,41,125,41,41,44,67,84,40,112,84,44,34,116,101,109,112,108,97,116,101,84,105,116,108,101,67,111,110,116,101,110,116,34,44,40,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,117,112,100,97,116,101,67,111,110,116,101,110,116,41,125,41,41,44,112,84,41,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,116,111,111,108,112,111,112,61,110,117,108,108,125,44,117,112,100,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,117,112,100,97,116,101,67,111,110,116,101,110,116,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,111,102,102,40,36,105,44,116,104,105,115,46,100,111,79,112,101,110,41,44,116,104,105,115,46,36,111,102,102,40,104,105,44,116,104,105,115,46,100,111,67,108,111,115,101,41,44,116,104,105,115,46,36,111,102,102,40,103,105,44,116,104,105,115,46,100,111,68,105,115,97,98,108,101,41,44,116,104,105,115,46,36,111,102,102,40,119,105,44,116,104,105,115,46,100,111,69,110,97,98,108,101,41,44,116,104,105,115,46,36,95,116,111,111,108,112,111,112,38,38,40,116,104,105,115,46,36,95,116,111,111,108,112,111,112,46,36,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,36,95,116,111,111,108,112,111,112,61,110,117,108,108,41,125,44,109,111,117,110,116,101,100,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,46,103,101,116,67,111,109,112,111,110,101,110,116,40,41,59,116,46,117,112,100,97,116,101,67,111,110,116,101,110,116,40,41,59,118,97,114,32,110,61,85,83,40,116,41,124,124,85,83,40,116,46,36,112,97,114,101,110,116,41,44,114,61,116,46,36,95,116,111,111,108,112,111,112,61,110,101,119,32,101,40,123,112,97,114,101,110,116,58,116,44,95,115,99,111,112,101,73,100,58,110,124,124,118,111,105,100,32,48,125,41,59,114,46,117,112,100,97,116,101,68,97,116,97,40,116,46,116,101,109,112,108,97,116,101,68,97,116,97,41,44,114,46,36,111,110,40,90,105,44,116,46,111,110,83,104,111,119,41,44,114,46,36,111,110,40,74,105,44,116,46,111,110,83,104,111,119,110,41,44,114,46,36,111,110,40,84,105,44,116,46,111,110,72,105,100,101,41,44,114,46,36,111,110,40,80,105,44,116,46,111,110,72,105,100,100,101,110,41,44,114,46,36,111,110,40,109,105,44,116,46,111,110,68,105,115,97,98,108,101,100,41,44,114,46,36,111,110,40,95,105,44,116,46,111,110,69,110,97,98,108,101,100,41,44,116,91,80,84,93,38,38,116,46,100,111,68,105,115,97,98,108,101,40,41,44,116,46,36,111,110,40,36,105,44,116,46,100,111,79,112,101,110,41,44,116,46,36,111,110,40,104,105,44,116,46,100,111,67,108,111,115,101,41,44,116,46,36,111,110,40,103,105,44,116,46,100,111,68,105,115,97,98,108,101,41,44,116,46,36,111,110,40,119,105,44,116,46,100,111,69,110,97,98,108,101,41,44,116,46,108,111,99,97,108,83,104,111,119,38,38,114,46,115,104,111,119,40,41,125,41,41,125,44,109,101,116,104,111,100,115,58,123,103,101,116,67,111,109,112,111,110,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,84,125,44,117,112,100,97,116,101,67,111,110,116,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,84,105,116,108,101,40,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,124,124,116,104,105,115,46,116,105,116,108,101,41,125,44,115,101,116,84,105,116,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,61,119,116,40,116,41,63,34,34,58,116,44,116,104,105,115,46,108,111,99,97,108,84,105,116,108,101,33,61,61,116,38,38,40,116,104,105,115,46,108,111,99,97,108,84,105,116,108,101,61,116,41,125,44,115,101,116,67,111,110,116,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,61,119,116,40,116,41,63,34,34,58,116,44,116,104,105,115,46,108,111,99,97,108,67,111,110,116,101,110,116,33,61,61,116,38,38,40,116,104,105,115,46,108,111,99,97,108,67,111,110,116,101,110,116,61,116,41,125,44,111,110,83,104,111,119,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,101,109,105,116,40,90,105,44,116,41,44,116,38,38,40,116,104,105,115,46,108,111,99,97,108,83,104,111,119,61,33,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,41,125,44,111,110,83,104,111,119,110,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,108,111,99,97,108,83,104,111,119,61,33,48,44,116,104,105,115,46,36,101,109,105,116,40,74,105,44,116,41,125,44,111,110,72,105,100,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,101,109,105,116,40,84,105,44,116,41,125,44,111,110,72,105,100,100,101,110,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,101,109,105,116,40,80,105,44,116,41,44,116,104,105,115,46,108,111,99,97,108,83,104,111,119,61,33,49,125,44,111,110,68,105,115,97,98,108,101,100,58,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,46,116,121,112,101,61,61,61,109,105,38,38,40,116,104,105,115,46,36,101,109,105,116,40,84,84,44,33,48,41,44,116,104,105,115,46,36,101,109,105,116,40,109,105,44,116,41,41,125,44,111,110,69,110,97,98,108,101,100,58,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,46,116,121,112,101,61,61,61,95,105,38,38,40,116,104,105,115,46,36,101,109,105,116,40,84,84,44,33,49,41,44,116,104,105,115,46,36,101,109,105,116,40,95,105,44,116,41,41,125,44,100,111,79,112,101,110,58,102,117,110,99,116,105,111,110,40,41,123,33,116,104,105,115,46,108,111,99,97,108,83,104,111,119,38,38,116,104,105,115,46,36,95,116,111,111,108,112,111,112,38,38,116,104,105,115,46,36,95,116,111,111,108,112,111,112,46,115,104,111,119,40,41,125,44,100,111,67,108,111,115,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,108,111,99,97,108,83,104,111,119,38,38,116,104,105,115,46,36,95,116,111,111,108,112,111,112,38,38,116,104,105,115,46,36,95,116,111,111,108,112,111,112,46,104,105,100,101,40,41,125,44,100,111,68,105,115,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,116,111,111,108,112,111,112,38,38,116,104,105,115,46,36,95,116,111,111,108,112,111,112,46,100,105,115,97,98,108,101,40,41,125,44,100,111,69,110,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,116,111,111,108,112,111,112,38,38,116,104,105,115,46,36,95,116,111,111,108,112,111,112,46,101,110,97,98,108,101,40,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,41,125,125,41,44,76,84,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,90,114,44,101,120,116,101,110,100,115,58,117,84,44,99,111,109,112,117,116,101,100,58,123,116,101,109,112,108,97,116,101,84,121,112,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,112,111,112,111,118,101,114,34,125,125,44,109,101,116,104,111,100,115,58,123,114,101,110,100,101,114,84,101,109,112,108,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,116,105,116,108,101,44,110,61,116,104,105,115,46,99,111,110,116,101,110,116,44,114,61,95,116,40,101,41,63,101,40,123,125,41,58,101,44,105,61,95,116,40,110,41,63,110,40,123,125,41,58,110,44,111,61,116,104,105,115,46,104,116,109,108,38,38,33,95,116,40,101,41,63,123,105,110,110,101,114,72,84,77,76,58,101,125,58,123,125,44,97,61,116,104,105,115,46,104,116,109,108,38,38,33,95,116,40,110,41,63,123,105,110,110,101,114,72,84,77,76,58,110,125,58,123,125,59,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,111,112,111,118,101,114,32,98,45,112,111,112,111,118,101,114,34,44,99,108,97,115,115,58,116,104,105,115,46,116,101,109,112,108,97,116,101,67,108,97,115,115,101,115,44,97,116,116,114,115,58,116,104,105,115,46,116,101,109,112,108,97,116,101,65,116,116,114,105,98,117,116,101,115,44,111,110,58,116,104,105,115,46,116,101,109,112,108,97,116,101,76,105,115,116,101,110,101,114,115,125,44,91,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,97,114,114,111,119,34,44,114,101,102,58,34,97,114,114,111,119,34,125,41,44,119,116,40,114,41,124,124,34,34,61,61,61,114,63,116,40,41,58,116,40,34,104,51,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,111,112,111,118,101,114,45,104,101,97,100,101,114,34,44,100,111,109,80,114,111,112,115,58,111,125,44,91,114,93,41,44,119,116,40,105,41,124,124,34,34,61,61,61,105,63,116,40,41,58,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,111,112,111,118,101,114,45,98,111,100,121,34,44,100,111,109,80,114,111,112,115,58,97,125,44,91,105,93,41,93,41,125,125,125,41,44,73,84,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,88,114,44,101,120,116,101,110,100,115,58,79,84,44,99,111,109,112,117,116,101,100,58,123,116,101,109,112,108,97,116,101,84,121,112,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,112,111,112,111,118,101,114,34,125,125,44,109,101,116,104,111,100,115,58,123,103,101,116,84,101,109,112,108,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,76,84,125,125,125,41,59,102,117,110,99,116,105,111,110,32,77,84,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,36,84,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,77,84,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,70,84,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,77,84,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,70,84,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,118,97,114,32,82,84,61,100,99,40,75,116,40,36,84,40,36,84,40,123,125,44,68,84,41,44,123,125,44,123,99,111,110,116,101,110,116,58,117,99,40,120,111,41,44,112,108,97,99,101,109,101,110,116,58,117,99,40,120,111,44,34,114,105,103,104,116,34,41,44,116,114,105,103,103,101,114,115,58,117,99,40,67,111,44,102,105,41,125,41,41,44,95,114,41,44,78,84,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,95,114,44,101,120,116,101,110,100,115,58,65,84,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,82,84,44,109,101,116,104,111,100,115,58,123,103,101,116,67,111,109,112,111,110,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,84,125,44,117,112,100,97,116,101,67,111,110,116,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,67,111,110,116,101,110,116,40,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,124,124,116,104,105,115,46,99,111,110,116,101,110,116,41,44,116,104,105,115,46,115,101,116,84,105,116,108,101,40,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,86,97,41,124,124,116,104,105,115,46,116,105,116,108,101,41,125,125,125,41,59,102,117,110,99,116,105,111,110,32,66,84,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,122,84,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,66,84,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,86,84,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,66,84,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,86,84,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,118,97,114,32,72,84,61,34,95,95,66,86,95,80,111,112,111,118,101,114,95,95,34,44,85,84,61,34,99,108,105,99,107,34,44,87,84,61,123,102,111,99,117,115,58,33,48,44,104,111,118,101,114,58,33,48,44,99,108,105,99,107,58,33,48,44,98,108,117,114,58,33,48,44,109,97,110,117,97,108,58,33,48,125,44,71,84,61,47,94,104,116,109,108,36,47,105,44,113,84,61,47,94,110,111,102,97,100,101,36,47,105,44,89,84,61,47,94,40,97,117,116,111,124,116,111,112,40,108,101,102,116,124,114,105,103,104,116,41,63,124,98,111,116,116,111,109,40,108,101,102,116,124,114,105,103,104,116,41,63,124,108,101,102,116,40,116,111,112,124,98,111,116,116,111,109,41,63,124,114,105,103,104,116,40,116,111,112,124,98,111,116,116,111,109,41,63,41,36,47,105,44,75,84,61,47,94,40,119,105,110,100,111,119,124,118,105,101,119,112,111,114,116,124,115,99,114,111,108,108,80,97,114,101,110,116,41,36,47,105,44,88,84,61,47,94,100,92,100,43,36,47,105,44,90,84,61,47,94,100,115,92,100,43,36,47,105,44,74,84,61,47,94,100,104,92,100,43,36,47,105,44,81,84,61,47,94,111,45,63,92,100,43,36,47,105,44,116,106,61,47,94,118,45,46,43,36,47,105,44,101,106,61,47,92,115,43,47,44,110,106,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,123,116,105,116,108,101,58,118,111,105,100,32,48,44,99,111,110,116,101,110,116,58,118,111,105,100,32,48,44,116,114,105,103,103,101,114,58,34,34,44,112,108,97,99,101,109,101,110,116,58,34,114,105,103,104,116,34,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,99,111,110,116,97,105,110,101,114,58,33,49,44,97,110,105,109,97,116,105,111,110,58,33,48,44,111,102,102,115,101,116,58,48,44,100,105,115,97,98,108,101,100,58,33,49,44,105,100,58,110,117,108,108,44,104,116,109,108,58,33,49,44,100,101,108,97,121,58,74,115,40,95,114,44,34,100,101,108,97,121,34,44,53,48,41,44,98,111,117,110,100,97,114,121,58,83,116,114,105,110,103,40,74,115,40,95,114,44,34,98,111,117,110,100,97,114,121,34,44,34,115,99,114,111,108,108,80,97,114,101,110,116,34,41,41,44,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,58,74,97,40,74,115,40,95,114,44,34,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,34,44,53,41,44,48,41,44,118,97,114,105,97,110,116,58,74,115,40,95,114,44,34,118,97,114,105,97,110,116,34,41,44,99,117,115,116,111,109,67,108,97,115,115,58,74,115,40,95,114,44,34,99,117,115,116,111,109,67,108,97,115,115,34,41,125,59,105,102,40,79,116,40,116,46,118,97,108,117,101,41,124,124,83,116,40,116,46,118,97,108,117,101,41,124,124,95,116,40,116,46,118,97,108,117,101,41,63,110,46,99,111,110,116,101,110,116,61,116,46,118,97,108,117,101,58,84,116,40,116,46,118,97,108,117,101,41,38,38,40,110,61,122,84,40,122,84,40,123,125,44,110,41,44,116,46,118,97,108,117,101,41,41,44,116,46,97,114,103,38,38,40,110,46,99,111,110,116,97,105,110,101,114,61,34,35,34,46,99,111,110,99,97,116,40,116,46,97,114,103,41,41,44,98,116,40,110,46,116,105,116,108,101,41,41,123,118,97,114,32,114,61,101,46,100,97,116,97,124,124,123,125,59,110,46,116,105,116,108,101,61,114,46,97,116,116,114,115,38,38,33,119,116,40,114,46,97,116,116,114,115,46,116,105,116,108,101,41,63,114,46,97,116,116,114,115,46,116,105,116,108,101,58,118,111,105,100,32,48,125,84,116,40,110,46,100,101,108,97,121,41,124,124,40,110,46,100,101,108,97,121,61,123,115,104,111,119,58,74,97,40,110,46,100,101,108,97,121,44,48,41,44,104,105,100,101,58,74,97,40,110,46,100,101,108,97,121,44,48,41,125,41,44,86,116,40,116,46,109,111,100,105,102,105,101,114,115,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,71,84,46,116,101,115,116,40,116,41,41,110,46,104,116,109,108,61,33,48,59,101,108,115,101,32,105,102,40,113,84,46,116,101,115,116,40,116,41,41,110,46,97,110,105,109,97,116,105,111,110,61,33,49,59,101,108,115,101,32,105,102,40,89,84,46,116,101,115,116,40,116,41,41,110,46,112,108,97,99,101,109,101,110,116,61,116,59,101,108,115,101,32,105,102,40,75,84,46,116,101,115,116,40,116,41,41,116,61,34,115,99,114,111,108,108,112,97,114,101,110,116,34,61,61,61,116,63,34,115,99,114,111,108,108,80,97,114,101,110,116,34,58,116,44,110,46,98,111,117,110,100,97,114,121,61,116,59,101,108,115,101,32,105,102,40,88,84,46,116,101,115,116,40,116,41,41,123,118,97,114,32,101,61,74,97,40,116,46,115,108,105,99,101,40,49,41,44,48,41,59,110,46,100,101,108,97,121,46,115,104,111,119,61,101,44,110,46,100,101,108,97,121,46,104,105,100,101,61,101,125,101,108,115,101,32,90,84,46,116,101,115,116,40,116,41,63,110,46,100,101,108,97,121,46,115,104,111,119,61,74,97,40,116,46,115,108,105,99,101,40,50,41,44,48,41,58,74,84,46,116,101,115,116,40,116,41,63,110,46,100,101,108,97,121,46,104,105,100,101,61,74,97,40,116,46,115,108,105,99,101,40,50,41,44,48,41,58,81,84,46,116,101,115,116,40,116,41,63,110,46,111,102,102,115,101,116,61,74,97,40,116,46,115,108,105,99,101,40,49,41,44,48,41,58,116,106,46,116,101,115,116,40,116,41,38,38,40,110,46,118,97,114,105,97,110,116,61,116,46,115,108,105,99,101,40,50,41,124,124,110,117,108,108,41,125,41,41,59,118,97,114,32,105,61,123,125,59,114,101,116,117,114,110,32,89,97,40,110,46,116,114,105,103,103,101,114,124,124,34,34,41,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,32,34,41,46,116,114,105,109,40,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,115,112,108,105,116,40,101,106,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,87,84,91,116,93,38,38,40,105,91,116,93,61,33,48,41,125,41,41,44,86,116,40,116,46,109,111,100,105,102,105,101,114,115,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,87,84,91,116,93,38,38,40,105,91,116,93,61,33,48,41,125,41,41,44,110,46,116,114,105,103,103,101,114,61,86,116,40,105,41,46,106,111,105,110,40,34,32,34,41,44,34,98,108,117,114,34,61,61,61,110,46,116,114,105,103,103,101,114,38,38,40,110,46,116,114,105,103,103,101,114,61,34,102,111,99,117,115,34,41,44,110,46,116,114,105,103,103,101,114,124,124,40,110,46,116,114,105,103,103,101,114,61,85,84,41,44,110,125,44,114,106,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,117,41,123,118,97,114,32,114,61,110,106,40,101,44,110,41,59,105,102,40,33,116,91,72,84,93,41,123,118,97,114,32,105,61,110,46,99,111,110,116,101,120,116,59,116,91,72,84,93,61,110,101,119,32,73,84,40,123,112,97,114,101,110,116,58,105,44,95,115,99,111,112,101,73,100,58,85,83,40,105,44,118,111,105,100,32,48,41,125,41,44,116,91,72,84,93,46,95,95,98,118,95,112,114,101,118,95,100,97,116,97,95,95,61,123,125,44,116,91,72,84,93,46,36,111,110,40,90,105,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,123,125,59,95,116,40,114,46,116,105,116,108,101,41,38,38,40,101,46,116,105,116,108,101,61,114,46,116,105,116,108,101,40,116,41,41,44,95,116,40,114,46,99,111,110,116,101,110,116,41,38,38,40,101,46,99,111,110,116,101,110,116,61,114,46,99,111,110,116,101,110,116,40,116,41,41,44,86,116,40,101,41,46,108,101,110,103,116,104,62,48,38,38,116,91,72,84,93,46,117,112,100,97,116,101,68,97,116,97,40,101,41,125,41,41,125,118,97,114,32,111,61,123,116,105,116,108,101,58,114,46,116,105,116,108,101,44,99,111,110,116,101,110,116,58,114,46,99,111,110,116,101,110,116,44,116,114,105,103,103,101,114,115,58,114,46,116,114,105,103,103,101,114,44,112,108,97,99,101,109,101,110,116,58,114,46,112,108,97,99,101,109,101,110,116,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,114,46,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,44,118,97,114,105,97,110,116,58,114,46,118,97,114,105,97,110,116,44,99,117,115,116,111,109,67,108,97,115,115,58,114,46,99,117,115,116,111,109,67,108,97,115,115,44,99,111,110,116,97,105,110,101,114,58,114,46,99,111,110,116,97,105,110,101,114,44,98,111,117,110,100,97,114,121,58,114,46,98,111,117,110,100,97,114,121,44,100,101,108,97,121,58,114,46,100,101,108,97,121,44,111,102,102,115,101,116,58,114,46,111,102,102,115,101,116,44,110,111,70,97,100,101,58,33,114,46,97,110,105,109,97,116,105,111,110,44,105,100,58,114,46,105,100,44,100,105,115,97,98,108,101,100,58,114,46,100,105,115,97,98,108,101,100,44,104,116,109,108,58,114,46,104,116,109,108,125,44,97,61,116,91,72,84,93,46,95,95,98,118,95,112,114,101,118,95,100,97,116,97,95,95,59,105,102,40,116,91,72,84,93,46,95,95,98,118,95,112,114,101,118,95,100,97,116,97,95,95,61,111,44,33,95,108,40,111,44,97,41,41,123,118,97,114,32,115,61,123,116,97,114,103,101,116,58,116,125,59,86,116,40,111,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,111,91,101,93,33,61,61,97,91,101,93,38,38,40,115,91,101,93,61,34,116,105,116,108,101,34,33,61,61,101,38,38,34,99,111,110,116,101,110,116,34,33,61,61,101,124,124,33,95,116,40,111,91,101,93,41,63,111,91,101,93,58,111,91,101,93,40,116,41,41,125,41,41,44,116,91,72,84,93,46,117,112,100,97,116,101,68,97,116,97,40,115,41,125,125,125,44,105,106,61,102,117,110,99,116,105,111,110,40,116,41,123,116,91,72,84,93,38,38,40,116,91,72,84,93,46,36,100,101,115,116,114,111,121,40,41,44,116,91,72,84,93,61,110,117,108,108,41,44,100,101,108,101,116,101,32,116,91,72,84,93,125,44,111,106,61,123,98,105,110,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,106,40,116,44,101,44,110,41,125,44,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,46,99,111,110,116,101,120,116,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,114,106,40,116,44,101,44,110,41,125,41,41,125,44,117,110,98,105,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,105,106,40,116,41,125,125,44,97,106,61,67,101,40,123,100,105,114,101,99,116,105,118,101,115,58,123,86,66,80,111,112,111,118,101,114,58,111,106,125,125,41,44,115,106,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,80,111,112,111,118,101,114,58,78,84,125,44,112,108,117,103,105,110,115,58,123,86,66,80,111,112,111,118,101,114,80,108,117,103,105,110,58,97,106,125,125,41,44,99,106,61,100,99,40,123,97,110,105,109,97,116,101,100,58,117,99,40,103,111,44,110,117,108,108,41,44,108,97,98,101,108,58,117,99,40,120,111,41,44,108,97,98,101,108,72,116,109,108,58,117,99,40,120,111,41,44,109,97,120,58,117,99,40,65,111,44,110,117,108,108,41,44,112,114,101,99,105,115,105,111,110,58,117,99,40,65,111,44,110,117,108,108,41,44,115,104,111,119,80,114,111,103,114,101,115,115,58,117,99,40,103,111,44,110,117,108,108,41,44,115,104,111,119,86,97,108,117,101,58,117,99,40,103,111,44,110,117,108,108,41,44,115,116,114,105,112,101,100,58,117,99,40,103,111,44,110,117,108,108,41,44,118,97,108,117,101,58,117,99,40,65,111,44,48,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,79,114,41,44,117,106,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,79,114,44,109,105,120,105,110,115,58,91,119,99,93,44,105,110,106,101,99,116,58,123,98,118,80,114,111,103,114,101,115,115,58,123,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,125,125,44,112,114,111,112,115,58,99,106,44,99,111,109,112,117,116,101,100,58,123,112,114,111,103,114,101,115,115,66,97,114,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,65,110,105,109,97,116,101,100,44,101,61,116,104,105,115,46,99,111,109,112,117,116,101,100,86,97,114,105,97,110,116,59,114,101,116,117,114,110,91,101,63,34,98,103,45,34,46,99,111,110,99,97,116,40,101,41,58,34,34,44,116,104,105,115,46,99,111,109,112,117,116,101,100,83,116,114,105,112,101,100,124,124,116,63,34,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,100,34,58,34,34,44,116,63,34,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,34,58,34,34,93,125,44,112,114,111,103,114,101,115,115,66,97,114,83,116,121,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,119,105,100,116,104,58,116,104,105,115,46,99,111,109,112,117,116,101,100,86,97,108,117,101,47,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,42,49,48,48,43,34,37,34,125,125,44,99,111,109,112,117,116,101,100,86,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,97,40,116,104,105,115,46,118,97,108,117,101,44,48,41,125,44,99,111,109,112,117,116,101,100,77,97,120,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,81,97,40,116,104,105,115,46,109,97,120,41,124,124,81,97,40,116,104,105,115,46,98,118,80,114,111,103,114,101,115,115,46,109,97,120,44,48,41,59,114,101,116,117,114,110,32,116,62,48,63,116,58,49,48,48,125,44,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,117,40,74,97,40,116,104,105,115,46,112,114,101,99,105,115,105,111,110,44,74,97,40,116,104,105,115,46,98,118,80,114,111,103,114,101,115,115,46,112,114,101,99,105,115,105,111,110,44,48,41,41,44,48,41,125,44,99,111,109,112,117,116,101,100,80,114,111,103,114,101,115,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,44,101,61,105,117,40,49,48,44,116,41,59,114,101,116,117,114,110,32,116,115,40,49,48,48,42,101,42,116,104,105,115,46,99,111,109,112,117,116,101,100,86,97,108,117,101,47,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,47,101,44,116,41,125,44,99,111,109,112,117,116,101,100,86,97,114,105,97,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,118,97,114,105,97,110,116,124,124,116,104,105,115,46,98,118,80,114,111,103,114,101,115,115,46,118,97,114,105,97,110,116,125,44,99,111,109,112,117,116,101,100,83,116,114,105,112,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,120,116,40,116,104,105,115,46,115,116,114,105,112,101,100,41,63,116,104,105,115,46,115,116,114,105,112,101,100,58,116,104,105,115,46,98,118,80,114,111,103,114,101,115,115,46,115,116,114,105,112,101,100,124,124,33,49,125,44,99,111,109,112,117,116,101,100,65,110,105,109,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,120,116,40,116,104,105,115,46,97,110,105,109,97,116,101,100,41,63,116,104,105,115,46,97,110,105,109,97,116,101,100,58,116,104,105,115,46,98,118,80,114,111,103,114,101,115,115,46,97,110,105,109,97,116,101,100,124,124,33,49,125,44,99,111,109,112,117,116,101,100,83,104,111,119,80,114,111,103,114,101,115,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,120,116,40,116,104,105,115,46,115,104,111,119,80,114,111,103,114,101,115,115,41,63,116,104,105,115,46,115,104,111,119,80,114,111,103,114,101,115,115,58,116,104,105,115,46,98,118,80,114,111,103,114,101,115,115,46,115,104,111,119,80,114,111,103,114,101,115,115,124,124,33,49,125,44,99,111,109,112,117,116,101,100,83,104,111,119,86,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,120,116,40,116,104,105,115,46,115,104,111,119,86,97,108,117,101,41,63,116,104,105,115,46,115,104,111,119,86,97,108,117,101,58,116,104,105,115,46,98,118,80,114,111,103,114,101,115,115,46,115,104,111,119,86,97,108,117,101,124,124,33,49,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,116,104,105,115,46,108,97,98,101,108,44,114,61,116,104,105,115,46,108,97,98,101,108,72,116,109,108,44,105,61,116,104,105,115,46,99,111,109,112,117,116,101,100,86,97,108,117,101,44,111,61,116,104,105,115,46,99,111,109,112,117,116,101,100,80,114,101,99,105,115,105,111,110,44,97,61,123,125,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,41,63,101,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,58,110,124,124,114,63,97,61,67,102,40,114,44,110,41,58,116,104,105,115,46,99,111,109,112,117,116,101,100,83,104,111,119,80,114,111,103,114,101,115,115,63,101,61,116,104,105,115,46,99,111,109,112,117,116,101,100,80,114,111,103,114,101,115,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,83,104,111,119,86,97,108,117,101,38,38,40,101,61,116,115,40,105,44,111,41,41,44,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,114,111,103,114,101,115,115,45,98,97,114,34,44,99,108,97,115,115,58,116,104,105,115,46,112,114,111,103,114,101,115,115,66,97,114,67,108,97,115,115,101,115,44,115,116,121,108,101,58,116,104,105,115,46,112,114,111,103,114,101,115,115,66,97,114,83,116,121,108,101,115,44,97,116,116,114,115,58,123,114,111,108,101,58,34,112,114,111,103,114,101,115,115,98,97,114,34,44,34,97,114,105,97,45,118,97,108,117,101,109,105,110,34,58,34,48,34,44,34,97,114,105,97,45,118,97,108,117,101,109,97,120,34,58,115,115,40,116,104,105,115,46,99,111,109,112,117,116,101,100,77,97,120,41,44,34,97,114,105,97,45,118,97,108,117,101,110,111,119,34,58,116,115,40,105,44,111,41,125,44,100,111,109,80,114,111,112,115,58,97,125,44,101,41,125,125,41,59,102,117,110,99,116,105,111,110,32,108,106,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,102,106,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,108,106,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,104,106,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,108,106,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,104,106,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,118,97,114,32,100,106,44,112,106,61,113,116,40,99,106,44,91,34,108,97,98,101,108,34,44,34,108,97,98,101,108,72,116,109,108,34,93,41,44,118,106,61,100,99,40,75,116,40,102,106,40,102,106,40,123,125,44,112,106,41,44,123,125,44,123,97,110,105,109,97,116,101,100,58,117,99,40,103,111,44,33,49,41,44,104,101,105,103,104,116,58,117,99,40,120,111,41,44,109,97,120,58,117,99,40,65,111,44,49,48,48,41,44,112,114,101,99,105,115,105,111,110,58,117,99,40,65,111,44,48,41,44,115,104,111,119,80,114,111,103,114,101,115,115,58,117,99,40,103,111,44,33,49,41,44,115,104,111,119,86,97,108,117,101,58,117,99,40,103,111,44,33,49,41,44,115,116,114,105,112,101,100,58,117,99,40,103,111,44,33,49,41,125,41,41,44,120,114,41,44,103,106,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,120,114,44,109,105,120,105,110,115,58,91,119,99,93,44,112,114,111,118,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,98,118,80,114,111,103,114,101,115,115,58,116,104,105,115,125,125,44,112,114,111,112,115,58,118,106,44,99,111,109,112,117,116,101,100,58,123,112,114,111,103,114,101,115,115,72,101,105,103,104,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,104,101,105,103,104,116,58,116,104,105,115,46,104,101,105,103,104,116,124,124,110,117,108,108,125,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,59,114,101,116,117,114,110,32,101,124,124,40,101,61,116,40,117,106,44,123,112,114,111,112,115,58,102,99,40,112,106,44,116,104,105,115,46,36,112,114,111,112,115,41,125,41,41,44,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,114,111,103,114,101,115,115,34,44,115,116,121,108,101,58,116,104,105,115,46,112,114,111,103,114,101,115,115,72,101,105,103,104,116,125,44,91,101,93,41,125,125,41,44,109,106,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,80,114,111,103,114,101,115,115,58,103,106,44,66,80,114,111,103,114,101,115,115,66,97,114,58,117,106,125,125,41,59,102,117,110,99,116,105,111,110,32,98,106,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,121,106,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,98,106,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,119,106,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,98,106,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,119,106,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,118,97,114,32,95,106,61,34,98,45,115,105,100,101,98,97,114,34,44,120,106,61,84,99,40,102,110,44,34,114,101,113,117,101,115,116,45,115,116,97,116,101,34,41,44,79,106,61,84,99,40,102,110,44,34,116,111,103,103,108,101,34,41,44,83,106,61,80,99,40,102,110,44,34,115,116,97,116,101,34,41,44,107,106,61,80,99,40,102,110,44,34,115,121,110,99,45,115,116,97,116,101,34,41,44,67,106,61,109,99,40,34,118,105,115,105,98,108,101,34,44,123,116,121,112,101,58,103,111,44,100,101,102,97,117,108,116,86,97,108,117,101,58,33,49,44,101,118,101,110,116,58,117,105,125,41,44,80,106,61,67,106,46,109,105,120,105,110,44,84,106,61,67,106,46,112,114,111,112,115,44,106,106,61,67,106,46,112,114,111,112,44,69,106,61,67,106,46,101,118,101,110,116,44,68,106,61,100,99,40,75,116,40,121,106,40,121,106,40,121,106,40,123,125,44,68,104,41,44,84,106,41,44,123,125,44,123,97,114,105,97,76,97,98,101,108,58,117,99,40,120,111,41,44,97,114,105,97,76,97,98,101,108,108,101,100,98,121,58,117,99,40,120,111,41,44,98,97,99,107,100,114,111,112,58,117,99,40,103,111,44,33,49,41,44,98,97,99,107,100,114,111,112,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,100,97,114,107,34,41,44,98,103,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,108,105,103,104,116,34,41,44,98,111,100,121,67,108,97,115,115,58,117,99,40,107,111,41,44,99,108,111,115,101,76,97,98,101,108,58,117,99,40,120,111,41,44,102,111,111,116,101,114,67,108,97,115,115,58,117,99,40,107,111,41,44,104,101,97,100,101,114,67,108,97,115,115,58,117,99,40,107,111,41,44,108,97,122,121,58,117,99,40,103,111,44,33,49,41,44,110,111,67,108,111,115,101,79,110,66,97,99,107,100,114,111,112,58,117,99,40,103,111,44,33,49,41,44,110,111,67,108,111,115,101,79,110,69,115,99,58,117,99,40,103,111,44,33,49,41,44,110,111,67,108,111,115,101,79,110,82,111,117,116,101,67,104,97,110,103,101,58,117,99,40,103,111,44,33,49,41,44,110,111,69,110,102,111,114,99,101,70,111,99,117,115,58,117,99,40,103,111,44,33,49,41,44,110,111,72,101,97,100,101,114,58,117,99,40,103,111,44,33,49,41,44,110,111,72,101,97,100,101,114,67,108,111,115,101,58,117,99,40,103,111,44,33,49,41,44,110,111,83,108,105,100,101,58,117,99,40,103,111,44,33,49,41,44,114,105,103,104,116,58,117,99,40,103,111,44,33,49,41,44,115,104,97,100,111,119,58,117,99,40,106,111,44,33,49,41,44,115,105,100,101,98,97,114,67,108,97,115,115,58,117,99,40,107,111,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,44,116,101,120,116,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,100,97,114,107,34,41,44,116,105,116,108,101,58,117,99,40,120,111,41,44,119,105,100,116,104,58,117,99,40,120,111,41,44,122,73,110,100,101,120,58,117,99,40,65,111,41,125,41,41,44,107,114,41,44,65,106,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,86,97,44,101,46,115,108,111,116,83,99,111,112,101,41,124,124,101,46,116,105,116,108,101,59,114,101,116,117,114,110,32,110,63,116,40,34,115,116,114,111,110,103,34,44,123,97,116,116,114,115,58,123,105,100,58,101,46,115,97,102,101,73,100,40,34,95,95,116,105,116,108,101,95,95,34,41,125,125,44,91,110,93,41,58,116,40,34,115,112,97,110,34,41,125,44,76,106,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,101,46,110,111,72,101,97,100,101,114,67,108,111,115,101,41,114,101,116,117,114,110,32,116,40,41,59,118,97,114,32,110,61,101,46,99,108,111,115,101,76,97,98,101,108,44,114,61,101,46,116,101,120,116,86,97,114,105,97,110,116,44,105,61,101,46,104,105,100,101,59,114,101,116,117,114,110,32,116,40,68,99,44,123,112,114,111,112,115,58,123,97,114,105,97,76,97,98,101,108,58,110,44,116,101,120,116,86,97,114,105,97,110,116,58,114,125,44,111,110,58,123,99,108,105,99,107,58,105,125,44,114,101,102,58,34,99,108,111,115,101,45,98,117,116,116,111,110,34,125,44,91,101,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,110,97,41,124,124,116,40,81,117,41,93,41,125,44,73,106,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,101,46,110,111,72,101,97,100,101,114,41,114,101,116,117,114,110,32,116,40,41,59,118,97,114,32,110,61,101,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,101,97,44,101,46,115,108,111,116,83,99,111,112,101,41,59,105,102,40,33,110,41,123,118,97,114,32,114,61,65,106,40,116,44,101,41,44,105,61,76,106,40,116,44,101,41,59,110,61,101,46,114,105,103,104,116,63,91,105,44,114,93,58,91,114,44,105,93,125,114,101,116,117,114,110,32,116,40,34,104,101,97,100,101,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,34,46,99,111,110,99,97,116,40,95,106,44,34,45,104,101,97,100,101,114,34,41,44,99,108,97,115,115,58,101,46,104,101,97,100,101,114,67,108,97,115,115,44,107,101,121,58,34,104,101,97,100,101,114,34,125,44,110,41,125,44,77,106,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,34,46,99,111,110,99,97,116,40,95,106,44,34,45,98,111,100,121,34,41,44,99,108,97,115,115,58,101,46,98,111,100,121,67,108,97,115,115,44,107,101,121,58,34,98,111,100,121,34,125,44,91,101,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,85,111,44,101,46,115,108,111,116,83,99,111,112,101,41,93,41,125,44,36,106,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,116,97,44,101,46,115,108,111,116,83,99,111,112,101,41,59,114,101,116,117,114,110,32,110,63,116,40,34,102,111,111,116,101,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,34,46,99,111,110,99,97,116,40,95,106,44,34,45,102,111,111,116,101,114,34,41,44,99,108,97,115,115,58,101,46,102,111,111,116,101,114,67,108,97,115,115,44,107,101,121,58,34,102,111,111,116,101,114,34,125,44,91,110,93,41,58,116,40,41,125,44,70,106,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,73,106,40,116,44,101,41,59,114,101,116,117,114,110,32,101,46,108,97,122,121,38,38,33,101,46,105,115,79,112,101,110,63,110,58,91,110,44,77,106,40,116,44,101,41,44,36,106,40,116,44,101,41,93,125,44,82,106,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,101,46,98,97,99,107,100,114,111,112,41,114,101,116,117,114,110,32,116,40,41,59,118,97,114,32,110,61,101,46,98,97,99,107,100,114,111,112,86,97,114,105,97,110,116,59,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,115,104,111,119,34,44,118,97,108,117,101,58,101,46,108,111,99,97,108,83,104,111,119,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,115,105,100,101,98,97,114,45,98,97,99,107,100,114,111,112,34,44,99,108,97,115,115,58,119,106,40,123,125,44,34,98,103,45,34,46,99,111,110,99,97,116,40,110,41,44,110,41,44,111,110,58,123,99,108,105,99,107,58,101,46,111,110,66,97,99,107,100,114,111,112,67,108,105,99,107,125,125,41,125,44,78,106,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,107,114,44,109,105,120,105,110,115,58,91,67,108,44,65,104,44,80,106,44,80,108,44,119,99,93,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,68,106,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,33,33,116,104,105,115,91,106,106,93,59,114,101,116,117,114,110,123,108,111,99,97,108,83,104,111,119,58,116,44,105,115,79,112,101,110,58,116,125,125,44,99,111,109,112,117,116,101,100,58,123,116,114,97,110,115,105,116,105,111,110,80,114,111,112,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,110,111,83,108,105,100,101,63,123,99,115,115,58,33,48,125,58,123,99,115,115,58,33,48,44,101,110,116,101,114,67,108,97,115,115,58,34,34,44,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,58,34,115,108,105,100,101,34,44,101,110,116,101,114,84,111,67,108,97,115,115,58,34,115,104,111,119,34,44,108,101,97,118,101,67,108,97,115,115,58,34,115,104,111,119,34,44,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,58,34,115,108,105,100,101,34,44,108,101,97,118,101,84,111,67,108,97,115,115,58,34,34,125,125,44,115,108,111,116,83,99,111,112,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,105,100,101,44,101,61,116,104,105,115,46,114,105,103,104,116,44,110,61,116,104,105,115,46,108,111,99,97,108,83,104,111,119,59,114,101,116,117,114,110,123,104,105,100,101,58,116,44,114,105,103,104,116,58,101,44,118,105,115,105,98,108,101,58,110,125,125,44,104,97,115,84,105,116,108,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,44,101,61,116,104,105,115,46,36,115,108,111,116,115,59,114,101,116,117,114,110,33,116,104,105,115,46,110,111,72,101,97,100,101,114,38,38,33,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,101,97,41,38,38,33,40,33,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,86,97,44,116,104,105,115,46,115,108,111,116,83,99,111,112,101,44,116,44,101,41,38,38,33,116,104,105,115,46,116,105,116,108,101,41,125,44,116,105,116,108,101,73,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,104,97,115,84,105,116,108,101,63,116,104,105,115,46,115,97,102,101,73,100,40,34,95,95,116,105,116,108,101,95,95,34,41,58,110,117,108,108,125,44,99,111,109,112,117,116,101,100,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,106,40,121,106,40,123,125,44,116,104,105,115,46,98,118,65,116,116,114,115,41,44,123,125,44,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,116,97,98,105,110,100,101,120,58,34,45,49,34,44,114,111,108,101,58,34,100,105,97,108,111,103,34,44,34,97,114,105,97,45,109,111,100,97,108,34,58,116,104,105,115,46,98,97,99,107,100,114,111,112,63,34,116,114,117,101,34,58,34,102,97,108,115,101,34,44,34,97,114,105,97,45,104,105,100,100,101,110,34,58,116,104,105,115,46,108,111,99,97,108,83,104,111,119,63,110,117,108,108,58,34,116,114,117,101,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,116,104,105,115,46,97,114,105,97,76,97,98,101,108,124,124,110,117,108,108,44,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,58,116,104,105,115,46,97,114,105,97,76,97,98,101,108,108,101,100,98,121,124,124,116,104,105,115,46,116,105,116,108,101,73,100,124,124,110,117,108,108,125,41,125,125,44,119,97,116,99,104,58,40,100,106,61,123,125,44,119,106,40,100,106,44,106,106,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,40,116,104,105,115,46,108,111,99,97,108,83,104,111,119,61,116,41,125,41,41,44,119,106,40,100,106,44,34,108,111,99,97,108,83,104,111,119,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,40,116,104,105,115,46,101,109,105,116,83,116,97,116,101,40,116,41,44,116,104,105,115,46,36,101,109,105,116,40,69,106,44,116,41,41,125,41,41,44,119,106,40,100,106,44,34,36,114,111,117,116,101,34,44,40,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,123,125,44,101,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,116,104,105,115,46,110,111,67,108,111,115,101,79,110,82,111,117,116,101,67,104,97,110,103,101,124,124,116,46,102,117,108,108,80,97,116,104,61,61,61,101,46,102,117,108,108,80,97,116,104,124,124,116,104,105,115,46,104,105,100,101,40,41,125,41,41,44,100,106,41,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,69,108,61,110,117,108,108,125,44,109,111,117,110,116,101,100,58,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,108,105,115,116,101,110,79,110,82,111,111,116,40,79,106,44,116,104,105,115,46,104,97,110,100,108,101,84,111,103,103,108,101,41,44,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,120,106,44,116,104,105,115,46,104,97,110,100,108,101,83,121,110,99,41,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,101,109,105,116,83,116,97,116,101,40,116,46,108,111,99,97,108,83,104,111,119,41,125,41,41,125,44,97,99,116,105,118,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,101,109,105,116,83,121,110,99,40,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,108,111,99,97,108,83,104,111,119,61,33,49,44,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,69,108,61,110,117,108,108,125,44,109,101,116,104,111,100,115,58,123,104,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,108,111,99,97,108,83,104,111,119,61,33,49,125,44,101,109,105,116,83,116,97,116,101,58,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,116,104,105,115,46,108,111,99,97,108,83,104,111,119,59,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,83,106,44,116,104,105,115,46,115,97,102,101,73,100,40,41,44,116,41,125,44,101,109,105,116,83,121,110,99,58,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,116,104,105,115,46,108,111,99,97,108,83,104,111,119,59,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,107,106,44,116,104,105,115,46,115,97,102,101,73,100,40,41,44,116,41,125,44,104,97,110,100,108,101,84,111,103,103,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,61,61,61,116,104,105,115,46,115,97,102,101,73,100,40,41,38,38,40,116,104,105,115,46,108,111,99,97,108,83,104,111,119,61,33,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,125,44,104,97,110,100,108,101,83,121,110,99,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,116,38,38,116,61,61,61,116,104,105,115,46,115,97,102,101,73,100,40,41,38,38,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,101,109,105,116,83,121,110,99,40,101,46,108,111,99,97,108,83,104,111,119,41,125,41,41,125,44,111,110,75,101,121,100,111,119,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,107,101,121,67,111,100,101,59,33,116,104,105,115,46,110,111,67,108,111,115,101,79,110,69,115,99,38,38,101,61,61,61,104,108,38,38,116,104,105,115,46,108,111,99,97,108,83,104,111,119,38,38,116,104,105,115,46,104,105,100,101,40,41,125,44,111,110,66,97,99,107,100,114,111,112,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,108,111,99,97,108,83,104,111,119,38,38,33,116,104,105,115,46,110,111,67,108,111,115,101,79,110,66,97,99,107,100,114,111,112,38,38,116,104,105,115,46,104,105,100,101,40,41,125,44,111,110,84,111,112,84,114,97,112,70,111,99,117,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,71,115,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,41,59,116,104,105,115,46,101,110,102,111,114,99,101,70,111,99,117,115,40,116,46,114,101,118,101,114,115,101,40,41,91,48,93,41,125,44,111,110,66,111,116,116,111,109,84,114,97,112,70,111,99,117,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,71,115,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,41,59,116,104,105,115,46,101,110,102,111,114,99,101,70,111,99,117,115,40,116,91,48,93,41,125,44,111,110,66,101,102,111,114,101,69,110,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,69,108,61,121,115,40,117,63,91,100,111,99,117,109,101,110,116,46,98,111,100,121,93,58,91,93,41,44,116,104,105,115,46,105,115,79,112,101,110,61,33,48,125,44,111,110,65,102,116,101,114,69,110,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,106,115,40,116,44,121,115,40,41,41,124,124,116,104,105,115,46,101,110,102,111,114,99,101,70,111,99,117,115,40,116,41,44,116,104,105,115,46,36,101,109,105,116,40,74,105,41,125,44,111,110,65,102,116,101,114,76,101,97,118,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,101,110,102,111,114,99,101,70,111,99,117,115,40,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,69,108,41,44,116,104,105,115,46,36,95,114,101,116,117,114,110,70,111,99,117,115,69,108,61,110,117,108,108,44,116,104,105,115,46,105,115,79,112,101,110,61,33,49,44,116,104,105,115,46,36,101,109,105,116,40,80,105,41,125,44,101,110,102,111,114,99,101,70,111,99,117,115,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,110,111,69,110,102,111,114,99,101,70,111,99,117,115,124,124,113,115,40,116,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,116,104,105,115,46,98,103,86,97,114,105,97,110,116,44,114,61,116,104,105,115,46,119,105,100,116,104,44,105,61,116,104,105,115,46,116,101,120,116,86,97,114,105,97,110,116,44,111,61,116,104,105,115,46,108,111,99,97,108,83,104,111,119,44,97,61,34,34,61,61,61,116,104,105,115,46,115,104,97,100,111,119,124,124,116,104,105,115,46,115,104,97,100,111,119,44,115,61,116,40,116,104,105,115,46,116,97,103,44,123,115,116,97,116,105,99,67,108,97,115,115,58,95,106,44,99,108,97,115,115,58,91,40,101,61,123,115,104,97,100,111,119,58,33,48,61,61,61,97,125,44,119,106,40,101,44,34,115,104,97,100,111,119,45,34,46,99,111,110,99,97,116,40,97,41,44,97,38,38,33,48,33,61,61,97,41,44,119,106,40,101,44,34,34,46,99,111,110,99,97,116,40,95,106,44,34,45,114,105,103,104,116,34,41,44,116,104,105,115,46,114,105,103,104,116,41,44,119,106,40,101,44,34,98,103,45,34,46,99,111,110,99,97,116,40,110,41,44,110,41,44,119,106,40,101,44,34,116,101,120,116,45,34,46,99,111,110,99,97,116,40,105,41,44,105,41,44,101,41,44,116,104,105,115,46,115,105,100,101,98,97,114,67,108,97,115,115,93,44,115,116,121,108,101,58,123,119,105,100,116,104,58,114,125,44,97,116,116,114,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,115,104,111,119,34,44,118,97,108,117,101,58,111,125,93,44,114,101,102,58,34,99,111,110,116,101,110,116,34,125,44,91,70,106,40,116,44,116,104,105,115,41,93,41,59,115,61,116,40,34,116,114,97,110,115,105,116,105,111,110,34,44,123,112,114,111,112,115,58,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,80,114,111,112,115,44,111,110,58,123,98,101,102,111,114,101,69,110,116,101,114,58,116,104,105,115,46,111,110,66,101,102,111,114,101,69,110,116,101,114,44,97,102,116,101,114,69,110,116,101,114,58,116,104,105,115,46,111,110,65,102,116,101,114,69,110,116,101,114,44,97,102,116,101,114,76,101,97,118,101,58,116,104,105,115,46,111,110,65,102,116,101,114,76,101,97,118,101,125,125,44,91,115,93,41,59,118,97,114,32,99,61,116,40,78,99,44,123,112,114,111,112,115,58,123,110,111,70,97,100,101,58,116,104,105,115,46,110,111,83,108,105,100,101,125,125,44,91,82,106,40,116,44,116,104,105,115,41,93,41,44,117,61,116,40,41,44,108,61,116,40,41,59,114,101,116,117,114,110,32,116,104,105,115,46,98,97,99,107,100,114,111,112,38,38,111,38,38,40,117,61,116,40,34,100,105,118,34,44,123,97,116,116,114,115,58,123,116,97,98,105,110,100,101,120,58,34,48,34,125,44,111,110,58,123,102,111,99,117,115,58,116,104,105,115,46,111,110,84,111,112,84,114,97,112,70,111,99,117,115,125,125,41,44,108,61,116,40,34,100,105,118,34,44,123,97,116,116,114,115,58,123,116,97,98,105,110,100,101,120,58,34,48,34,125,44,111,110,58,123,102,111,99,117,115,58,116,104,105,115,46,111,110,66,111,116,116,111,109,84,114,97,112,70,111,99,117,115,125,125,41,41,44,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,115,105,100,101,98,97,114,45,111,117,116,101,114,34,44,115,116,121,108,101,58,123,122,73,110,100,101,120,58,116,104,105,115,46,122,73,110,100,101,120,125,44,97,116,116,114,115,58,123,116,97,98,105,110,100,101,120,58,34,45,49,34,125,44,111,110,58,123,107,101,121,100,111,119,110,58,116,104,105,115,46,111,110,75,101,121,100,111,119,110,125,125,44,91,117,44,115,44,108,44,99,93,41,125,125,41,44,66,106,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,83,105,100,101,98,97,114,58,78,106,125,44,112,108,117,103,105,110,115,58,123,86,66,84,111,103,103,108,101,80,108,117,103,105,110,58,68,118,125,125,41,59,102,117,110,99,116,105,111,110,32,122,106,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,118,97,114,32,86,106,61,100,99,40,123,97,110,105,109,97,116,105,111,110,58,117,99,40,120,111,44,34,119,97,118,101,34,41,44,104,101,105,103,104,116,58,117,99,40,120,111,41,44,115,105,122,101,58,117,99,40,120,111,41,44,116,121,112,101,58,117,99,40,120,111,44,34,116,101,120,116,34,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,44,119,105,100,116,104,58,117,99,40,120,111,41,125,44,67,114,41,44,72,106,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,67,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,86,106,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,101,46,100,97,116,97,44,105,61,101,46,112,114,111,112,115,44,111,61,105,46,115,105,122,101,44,97,61,105,46,97,110,105,109,97,116,105,111,110,44,115,61,105,46,118,97,114,105,97,110,116,59,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,36,101,40,114,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,115,107,101,108,101,116,111,110,34,44,115,116,121,108,101,58,123,119,105,100,116,104,58,111,124,124,105,46,119,105,100,116,104,44,104,101,105,103,104,116,58,111,124,124,105,46,104,101,105,103,104,116,125,44,99,108,97,115,115,58,40,110,61,123,125,44,122,106,40,110,44,34,98,45,115,107,101,108,101,116,111,110,45,34,46,99,111,110,99,97,116,40,105,46,116,121,112,101,41,44,33,48,41,44,122,106,40,110,44,34,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,34,46,99,111,110,99,97,116,40,97,41,44,97,41,44,122,106,40,110,44,34,98,103,45,34,46,99,111,110,99,97,116,40,115,41,44,115,41,44,110,41,125,41,41,125,125,41,59,102,117,110,99,116,105,111,110,32,85,106,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,87,106,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,85,106,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,71,106,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,85,106,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,71,106,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,118,97,114,32,113,106,61,100,99,40,123,97,110,105,109,97,116,105,111,110,58,117,99,40,120,111,44,34,119,97,118,101,34,41,44,105,99,111,110,58,117,99,40,120,111,41,44,105,99,111,110,80,114,111,112,115,58,117,99,40,119,111,44,123,125,41,125,44,80,114,41,44,89,106,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,80,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,113,106,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,110,46,105,99,111,110,44,105,61,110,46,97,110,105,109,97,116,105,111,110,44,111,61,116,40,97,108,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,115,107,101,108,101,116,111,110,45,105,99,111,110,34,44,112,114,111,112,115,58,87,106,40,87,106,40,123,125,44,110,46,105,99,111,110,80,114,111,112,115,41,44,123,125,44,123,105,99,111,110,58,114,125,41,125,41,59,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,115,107,101,108,101,116,111,110,45,105,99,111,110,45,119,114,97,112,112,101,114,32,112,111,115,105,116,105,111,110,45,114,101,108,97,116,105,118,101,32,100,45,105,110,108,105,110,101,45,98,108,111,99,107,32,111,118,101,114,102,108,111,119,45,104,105,100,100,101,110,34,44,99,108,97,115,115,58,71,106,40,123,125,44,34,98,45,115,107,101,108,101,116,111,110,45,97,110,105,109,97,116,101,45,34,46,99,111,110,99,97,116,40,105,41,44,105,41,125,44,91,111,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,75,106,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,118,97,114,32,88,106,61,100,99,40,123,97,110,105,109,97,116,105,111,110,58,117,99,40,120,111,41,44,97,115,112,101,99,116,58,117,99,40,120,111,44,34,49,54,58,57,34,41,44,99,97,114,100,73,109,103,58,117,99,40,120,111,41,44,104,101,105,103,104,116,58,117,99,40,120,111,41,44,110,111,65,115,112,101,99,116,58,117,99,40,103,111,44,33,49,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,44,119,105,100,116,104,58,117,99,40,120,111,41,125,44,84,114,41,44,90,106,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,84,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,88,106,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,110,46,97,115,112,101,99,116,44,105,61,110,46,119,105,100,116,104,44,111,61,110,46,104,101,105,103,104,116,44,97,61,110,46,97,110,105,109,97,116,105,111,110,44,115,61,110,46,118,97,114,105,97,110,116,44,99,61,110,46,99,97,114,100,73,109,103,44,117,61,116,40,72,106,44,123,112,114,111,112,115,58,123,116,121,112,101,58,34,105,109,103,34,44,119,105,100,116,104,58,105,44,104,101,105,103,104,116,58,111,44,97,110,105,109,97,116,105,111,110,58,97,44,118,97,114,105,97,110,116,58,115,125,44,99,108,97,115,115,58,75,106,40,123,125,44,34,99,97,114,100,45,105,109,103,45,34,46,99,111,110,99,97,116,40,99,41,44,99,41,125,41,59,114,101,116,117,114,110,32,110,46,110,111,65,115,112,101,99,116,63,117,58,116,40,112,117,44,123,112,114,111,112,115,58,123,97,115,112,101,99,116,58,114,125,125,44,91,117,93,41,125,125,41,44,74,106,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,101,116,104,111,100,115,58,123,104,97,115,76,105,115,116,101,110,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,36,108,105,115,116,101,110,101,114,115,124,124,123,125,44,110,61,116,104,105,115,46,95,101,118,101,110,116,115,124,124,123,125,59,114,101,116,117,114,110,33,98,116,40,101,91,116,93,41,124,124,67,116,40,110,91,116,93,41,38,38,110,91,116,93,46,108,101,110,103,116,104,62,48,125,125,125,41,59,102,117,110,99,116,105,111,110,32,81,106,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,118,97,114,32,116,69,61,123,115,116,97,99,107,101,100,58,117,99,40,106,111,44,33,49,41,125,44,101,69,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,116,69,44,99,111,109,112,117,116,101,100,58,123,105,115,83,116,97,99,107,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,115,116,97,99,107,101,100,59,114,101,116,117,114,110,34,34,61,61,61,116,124,124,116,125,44,105,115,83,116,97,99,107,101,100,65,108,119,97,121,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,61,61,61,116,104,105,115,46,105,115,83,116,97,99,107,101,100,125,44,115,116,97,99,107,101,100,84,97,98,108,101,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,105,115,83,116,97,99,107,101,100,65,108,119,97,121,115,59,114,101,116,117,114,110,32,81,106,40,123,34,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,34,58,116,125,44,34,98,45,116,97,98,108,101,45,115,116,97,99,107,101,100,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,116,97,99,107,101,100,41,44,33,116,38,38,116,104,105,115,46,105,115,83,116,97,99,107,101,100,41,125,125,125,41,59,102,117,110,99,116,105,111,110,32,110,69,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,114,69,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,110,69,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,105,69,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,110,69,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,105,69,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,118,97,114,32,111,69,61,123,98,111,114,100,101,114,101,100,58,117,99,40,103,111,44,33,49,41,44,98,111,114,100,101,114,108,101,115,115,58,117,99,40,103,111,44,33,49,41,44,99,97,112,116,105,111,110,84,111,112,58,117,99,40,103,111,44,33,49,41,44,100,97,114,107,58,117,99,40,103,111,44,33,49,41,44,102,105,120,101,100,58,117,99,40,103,111,44,33,49,41,44,104,111,118,101,114,58,117,99,40,103,111,44,33,49,41,44,110,111,66,111,114,100,101,114,67,111,108,108,97,112,115,101,58,117,99,40,103,111,44,33,49,41,44,111,117,116,108,105,110,101,100,58,117,99,40,103,111,44,33,49,41,44,114,101,115,112,111,110,115,105,118,101,58,117,99,40,106,111,44,33,49,41,44,115,109,97,108,108,58,117,99,40,103,111,44,33,49,41,44,115,116,105,99,107,121,72,101,97,100,101,114,58,117,99,40,106,111,44,33,49,41,44,115,116,114,105,112,101,100,58,117,99,40,103,111,44,33,49,41,44,116,97,98,108,101,67,108,97,115,115,58,117,99,40,107,111,41,44,116,97,98,108,101,86,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,97,69,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,105,120,105,110,115,58,91,67,108,93,44,112,114,111,118,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,98,118,84,97,98,108,101,58,116,104,105,115,125,125,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,111,69,44,99,111,109,112,117,116,101,100,58,123,105,115,82,101,115,112,111,110,115,105,118,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,114,101,115,112,111,110,115,105,118,101,59,114,101,116,117,114,110,34,34,61,61,61,116,124,124,116,125,44,105,115,83,116,105,99,107,121,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,115,116,105,99,107,121,72,101,97,100,101,114,59,114,101,116,117,114,110,32,116,61,34,34,61,61,61,116,124,124,116,44,33,116,104,105,115,46,105,115,83,116,97,99,107,101,100,38,38,116,125,44,119,114,97,112,112,101,114,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,105,115,82,101,115,112,111,110,115,105,118,101,59,114,101,116,117,114,110,91,116,104,105,115,46,105,115,83,116,105,99,107,121,72,101,97,100,101,114,63,34,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,104,101,97,100,101,114,34,58,34,34,44,33,48,61,61,61,116,63,34,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,34,58,116,63,34,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,114,101,115,112,111,110,115,105,118,101,41,58,34,34,93,46,102,105,108,116,101,114,40,115,101,41,125,44,119,114,97,112,112,101,114,83,116,121,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,105,115,83,116,105,99,107,121,72,101,97,100,101,114,59,114,101,116,117,114,110,32,116,38,38,33,120,116,40,116,41,63,123,109,97,120,72,101,105,103,104,116,58,116,125,58,123,125,125,44,116,97,98,108,101,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,104,111,118,101,114,44,101,61,116,104,105,115,46,116,97,98,108,101,86,97,114,105,97,110,116,59,114,101,116,117,114,110,32,116,61,116,104,105,115,46,105,115,84,97,98,108,101,83,105,109,112,108,101,63,116,58,116,38,38,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,46,108,101,110,103,116,104,62,48,38,38,33,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,115,121,44,91,116,104,105,115,46,116,97,98,108,101,67,108,97,115,115,44,123,34,116,97,98,108,101,45,115,116,114,105,112,101,100,34,58,116,104,105,115,46,115,116,114,105,112,101,100,44,34,116,97,98,108,101,45,104,111,118,101,114,34,58,116,44,34,116,97,98,108,101,45,100,97,114,107,34,58,116,104,105,115,46,100,97,114,107,44,34,116,97,98,108,101,45,98,111,114,100,101,114,101,100,34,58,116,104,105,115,46,98,111,114,100,101,114,101,100,44,34,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,34,58,116,104,105,115,46,98,111,114,100,101,114,108,101,115,115,44,34,116,97,98,108,101,45,115,109,34,58,116,104,105,115,46,115,109,97,108,108,44,98,111,114,100,101,114,58,116,104,105,115,46,111,117,116,108,105,110,101,100,44,34,98,45,116,97,98,108,101,45,102,105,120,101,100,34,58,116,104,105,115,46,102,105,120,101,100,44,34,98,45,116,97,98,108,101,45,99,97,112,116,105,111,110,45,116,111,112,34,58,116,104,105,115,46,99,97,112,116,105,111,110,84,111,112,44,34,98,45,116,97,98,108,101,45,110,111,45,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,34,58,116,104,105,115,46,110,111,66,111,114,100,101,114,67,111,108,108,97,112,115,101,125,44,101,63,34,34,46,99,111,110,99,97,116,40,116,104,105,115,46,100,97,114,107,63,34,98,103,34,58,34,116,97,98,108,101,34,44,34,45,34,41,46,99,111,110,99,97,116,40,101,41,58,34,34,44,116,104,105,115,46,115,116,97,99,107,101,100,84,97,98,108,101,67,108,97,115,115,101,115,44,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,84,97,98,108,101,67,108,97,115,115,101,115,93,125,44,116,97,98,108,101,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,44,101,61,116,104,105,115,46,102,105,108,116,101,114,101,100,73,116,101,109,115,44,110,61,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,44,114,61,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,84,97,98,108,101,65,116,116,114,115,44,105,61,116,104,105,115,46,105,115,84,97,98,108,101,83,105,109,112,108,101,63,123,125,58,123,34,97,114,105,97,45,98,117,115,121,34,58,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,115,121,63,34,116,114,117,101,34,58,34,102,97,108,115,101,34,44,34,97,114,105,97,45,99,111,108,99,111,117,110,116,34,58,115,115,40,110,46,108,101,110,103,116,104,41,44,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,58,116,104,105,115,46,98,118,65,116,116,114,115,91,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,93,124,124,116,104,105,115,46,36,114,101,102,115,46,99,97,112,116,105,111,110,63,116,104,105,115,46,99,97,112,116,105,111,110,73,100,58,110,117,108,108,125,44,111,61,116,38,38,101,38,38,101,46,108,101,110,103,116,104,62,116,46,108,101,110,103,116,104,63,115,115,40,101,46,108,101,110,103,116,104,41,58,110,117,108,108,59,114,101,116,117,114,110,32,114,69,40,114,69,40,114,69,40,123,34,97,114,105,97,45,114,111,119,99,111,117,110,116,34,58,111,125,44,116,104,105,115,46,98,118,65,116,116,114,115,41,44,123,125,44,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,114,111,108,101,58,34,116,97,98,108,101,34,125,44,105,41,44,114,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,119,114,97,112,112,101,114,67,108,97,115,115,101,115,44,110,61,116,104,105,115,46,114,101,110,100,101,114,67,97,112,116,105,111,110,44,114,61,116,104,105,115,46,114,101,110,100,101,114,67,111,108,103,114,111,117,112,44,105,61,116,104,105,115,46,114,101,110,100,101,114,84,104,101,97,100,44,111,61,116,104,105,115,46,114,101,110,100,101,114,84,98,111,100,121,44,97,61,116,104,105,115,46,114,101,110,100,101,114,84,102,111,111,116,44,115,61,91,93,59,116,104,105,115,46,105,115,84,97,98,108,101,83,105,109,112,108,101,63,115,46,112,117,115,104,40,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,58,40,115,46,112,117,115,104,40,110,63,110,40,41,58,110,117,108,108,41,44,115,46,112,117,115,104,40,114,63,114,40,41,58,110,117,108,108,41,44,115,46,112,117,115,104,40,105,63,105,40,41,58,110,117,108,108,41,44,115,46,112,117,115,104,40,111,63,111,40,41,58,110,117,108,108,41,44,115,46,112,117,115,104,40,97,63,97,40,41,58,110,117,108,108,41,41,59,118,97,114,32,99,61,116,40,34,116,97,98,108,101,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,116,97,98,108,101,32,98,45,116,97,98,108,101,34,44,99,108,97,115,115,58,116,104,105,115,46,116,97,98,108,101,67,108,97,115,115,101,115,44,97,116,116,114,115,58,116,104,105,115,46,116,97,98,108,101,65,116,116,114,115,44,107,101,121,58,34,98,45,116,97,98,108,101,34,125,44,115,46,102,105,108,116,101,114,40,115,101,41,41,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,62,48,63,116,40,34,100,105,118,34,44,123,99,108,97,115,115,58,101,44,115,116,121,108,101,58,116,104,105,115,46,119,114,97,112,112,101,114,83,116,121,108,101,115,44,107,101,121,58,34,119,114,97,112,34,125,44,91,99,93,41,58,99,125,125,41,59,102,117,110,99,116,105,111,110,32,115,69,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,99,69,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,115,69,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,117,69,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,115,69,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,117,69,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,118,97,114,32,108,69,61,100,99,40,75,116,40,99,69,40,99,69,40,99,69,40,123,125,44,68,104,41,44,116,69,41,44,111,69,41,41,44,36,114,41,44,102,69,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,36,114,44,109,105,120,105,110,115,58,91,67,108,44,74,106,44,65,104,44,119,99,44,97,69,44,101,69,93,44,112,114,111,112,115,58,108,69,44,99,111,109,112,117,116,101,100,58,123,105,115,84,97,98,108,101,83,105,109,112,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,125,125,41,59,102,117,110,99,116,105,111,110,32,104,69,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,100,69,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,104,69,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,112,69,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,104,69,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,112,69,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,118,97,114,32,118,69,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,62,48,125,44,103,69,61,100,99,40,123,97,110,105,109,97,116,105,111,110,58,117,99,40,120,111,41,44,99,111,108,117,109,110,115,58,117,99,40,121,111,44,53,44,118,69,41,44,104,105,100,101,72,101,97,100,101,114,58,117,99,40,103,111,44,33,49,41,44,114,111,119,115,58,117,99,40,121,111,44,51,44,118,69,41,44,115,104,111,119,70,111,111,116,101,114,58,117,99,40,103,111,44,33,49,41,44,116,97,98,108,101,80,114,111,112,115,58,117,99,40,119,111,44,123,125,41,125,44,106,114,41,44,109,69,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,106,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,103,69,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,114,61,110,46,97,110,105,109,97,116,105,111,110,44,105,61,110,46,99,111,108,117,109,110,115,44,111,61,116,40,34,116,104,34,44,91,116,40,72,106,44,123,112,114,111,112,115,58,123,97,110,105,109,97,116,105,111,110,58,114,125,125,41,93,41,44,97,61,116,40,34,116,114,34,44,75,97,40,105,44,111,41,41,44,115,61,116,40,34,116,100,34,44,91,116,40,72,106,44,123,112,114,111,112,115,58,123,119,105,100,116,104,58,34,55,53,37,34,44,97,110,105,109,97,116,105,111,110,58,114,125,125,41,93,41,44,99,61,116,40,34,116,114,34,44,75,97,40,105,44,115,41,41,44,117,61,116,40,34,116,98,111,100,121,34,44,75,97,40,110,46,114,111,119,115,44,99,41,41,44,108,61,110,46,104,105,100,101,72,101,97,100,101,114,63,116,40,41,58,116,40,34,116,104,101,97,100,34,44,91,97,93,41,44,102,61,110,46,115,104,111,119,70,111,111,116,101,114,63,116,40,34,116,102,111,111,116,34,44,91,97,93,41,58,116,40,41,59,114,101,116,117,114,110,32,116,40,102,69,44,123,112,114,111,112,115,58,100,69,40,123,125,44,110,46,116,97,98,108,101,80,114,111,112,115,41,125,44,91,108,44,117,44,102,93,41,125,125,41,44,98,69,61,100,99,40,123,108,111,97,100,105,110,103,58,117,99,40,103,111,44,33,49,41,125,44,69,114,41,44,121,69,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,69,114,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,98,69,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,100,97,116,97,44,114,61,101,46,112,114,111,112,115,44,105,61,101,46,115,108,111,116,115,44,111,61,101,46,115,99,111,112,101,100,83,108,111,116,115,44,97,61,105,40,41,44,115,61,111,124,124,123,125,44,99,61,123,125,59,114,101,116,117,114,110,32,114,46,108,111,97,100,105,110,103,63,116,40,34,100,105,118,34,44,36,101,40,110,44,123,97,116,116,114,115,58,123,114,111,108,101,58,34,97,108,101,114,116,34,44,34,97,114,105,97,45,108,105,118,101,34,58,34,112,111,108,105,116,101,34,44,34,97,114,105,97,45,98,117,115,121,34,58,33,48,125,44,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,115,107,101,108,101,116,111,110,45,119,114,97,112,112,101,114,34,44,107,101,121,58,34,108,111,97,100,105,110,103,34,125,41,44,121,99,40,100,97,44,99,44,115,44,97,41,41,58,121,99,40,85,111,44,99,44,115,44,97,41,125,125,41,44,119,69,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,83,107,101,108,101,116,111,110,58,72,106,44,66,83,107,101,108,101,116,111,110,73,99,111,110,58,89,106,44,66,83,107,101,108,101,116,111,110,73,109,103,58,90,106,44,66,83,107,101,108,101,116,111,110,84,97,98,108,101,58,109,69,44,66,83,107,101,108,101,116,111,110,87,114,97,112,112,101,114,58,121,69,125,125,41,44,95,69,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,83,112,105,110,110,101,114,58,104,80,125,125,41,59,102,117,110,99,116,105,111,110,32,120,69,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,79,69,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,120,69,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,83,69,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,120,69,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,83,69,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,118,97,114,32,107,69,61,34,108,105,103,104,116,34,44,67,69,61,34,100,97,114,107,34,44,80,69,61,100,99,40,123,118,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,71,114,41,44,84,69,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,71,114,44,109,105,120,105,110,115,58,91,67,108,44,84,108,44,119,99,93,44,112,114,111,118,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,98,118,84,97,98,108,101,84,114,58,116,104,105,115,125,125,44,105,110,106,101,99,116,58,123,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,58,123,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,125,125,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,80,69,44,99,111,109,112,117,116,101,100,58,123,105,110,84,98,111,100,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,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,105,115,84,98,111,100,121,125,44,105,110,84,104,101,97,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,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,105,115,84,104,101,97,100,125,44,105,110,84,102,111,111,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,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,105,115,84,102,111,111,116,125,44,105,115,68,97,114,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,105,115,68,97,114,107,125,44,105,115,83,116,97,99,107,101,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,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,105,115,83,116,97,99,107,101,100,125,44,105,115,82,101,115,112,111,110,115,105,118,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,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,105,115,82,101,115,112,111,110,115,105,118,101,125,44,105,115,83,116,105,99,107,121,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,105,115,83,116,105,99,107,121,72,101,97,100,101,114,125,44,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,105,115,83,116,97,99,107,101,100,38,38,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,125,44,116,97,98,108,101,86,97,114,105,97,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,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,116,97,98,108,101,86,97,114,105,97,110,116,125,44,104,101,97,100,86,97,114,105,97,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,105,110,84,104,101,97,100,63,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,104,101,97,100,86,97,114,105,97,110,116,58,110,117,108,108,125,44,102,111,111,116,86,97,114,105,97,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,105,110,84,102,111,111,116,63,116,104,105,115,46,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,46,102,111,111,116,86,97,114,105,97,110,116,58,110,117,108,108,125,44,105,115,82,111,119,68,97,114,107,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,101,97,100,86,97,114,105,97,110,116,33,61,61,107,69,38,38,116,104,105,115,46,102,111,111,116,86,97,114,105,97,110,116,33,61,61,107,69,38,38,40,116,104,105,115,46,104,101,97,100,86,97,114,105,97,110,116,61,61,61,67,69,124,124,116,104,105,115,46,102,111,111,116,86,97,114,105,97,110,116,61,61,61,67,69,124,124,116,104,105,115,46,105,115,68,97,114,107,41,125,44,116,114,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,118,97,114,105,97,110,116,59,114,101,116,117,114,110,91,116,63,34,34,46,99,111,110,99,97,116,40,116,104,105,115,46,105,115,82,111,119,68,97,114,107,63,34,98,103,34,58,34,116,97,98,108,101,34,44,34,45,34,41,46,99,111,110,99,97,116,40,116,41,58,110,117,108,108,93,125,44,116,114,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,69,40,123,114,111,108,101,58,34,114,111,119,34,125,44,116,104,105,115,46,98,118,65,116,116,114,115,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,34,116,114,34,44,123,99,108,97,115,115,58,116,104,105,115,46,116,114,67,108,97,115,115,101,115,44,97,116,116,114,115,58,116,104,105,115,46,116,114,65,116,116,114,115,44,111,110,58,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,125,125,41,44,106,69,61,123,125,44,69,69,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,106,69,44,109,101,116,104,111,100,115,58,123,114,101,110,100,101,114,66,111,116,116,111,109,82,111,119,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,44,101,61,116,104,105,115,46,115,116,97,99,107,101,100,44,110,61,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,44,114,61,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,44,105,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,66,111,41,38,38,33,48,33,61,61,101,38,38,34,34,33,61,61,101,63,105,40,84,69,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,116,97,98,108,101,45,98,111,116,116,111,109,45,114,111,119,34,44,99,108,97,115,115,58,91,95,116,40,110,41,63,110,40,110,117,108,108,44,34,114,111,119,45,98,111,116,116,111,109,34,41,58,110,93,44,97,116,116,114,115,58,95,116,40,114,41,63,114,40,110,117,108,108,44,34,114,111,119,45,98,111,116,116,111,109,34,41,58,114,44,107,101,121,58,34,98,45,98,111,116,116,111,109,45,114,111,119,34,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,66,111,44,123,99,111,108,117,109,110,115,58,116,46,108,101,110,103,116,104,44,102,105,101,108,100,115,58,116,125,41,41,58,105,40,41,125,125,125,41,59,102,117,110,99,116,105,111,110,32,68,69,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,65,69,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,68,69,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,76,69,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,68,69,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,76,69,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,118,97,114,32,73,69,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,74,97,40,116,44,48,41,44,116,62,48,63,116,58,110,117,108,108,125,44,77,69,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,119,116,40,116,41,124,124,73,69,40,116,41,62,48,125,44,36,69,61,100,99,40,123,99,111,108,115,112,97,110,58,117,99,40,65,111,44,110,117,108,108,44,77,69,41,44,114,111,119,115,112,97,110,58,117,99,40,65,111,44,110,117,108,108,44,77,69,41,44,115,116,97,99,107,101,100,72,101,97,100,105,110,103,58,117,99,40,120,111,41,44,115,116,105,99,107,121,67,111,108,117,109,110,58,117,99,40,103,111,44,33,49,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,73,114,41,44,70,69,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,73,114,44,109,105,120,105,110,115,58,91,67,108,44,84,108,44,119,99,93,44,105,110,106,101,99,116,58,123,98,118,84,97,98,108,101,84,114,58,123,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,125,125,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,36,69,44,99,111,109,112,117,116,101,100,58,123,116,97,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,116,100,34,125,44,105,110,84,98,111,100,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,98,118,84,97,98,108,101,84,114,46,105,110,84,98,111,100,121,125,44,105,110,84,104,101,97,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,98,118,84,97,98,108,101,84,114,46,105,110,84,104,101,97,100,125,44,105,110,84,102,111,111,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,98,118,84,97,98,108,101,84,114,46,105,110,84,102,111,111,116,125,44,105,115,68,97,114,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,84,114,46,105,115,68,97,114,107,125,44,105,115,83,116,97,99,107,101,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,98,118,84,97,98,108,101,84,114,46,105,115,83,116,97,99,107,101,100,125,44,105,115,83,116,97,99,107,101,100,67,101,108,108,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,84,98,111,100,121,38,38,116,104,105,115,46,105,115,83,116,97,99,107,101,100,125,44,105,115,82,101,115,112,111,110,115,105,118,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,98,118,84,97,98,108,101,84,114,46,105,115,82,101,115,112,111,110,115,105,118,101,125,44,105,115,83,116,105,99,107,121,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,84,114,46,105,115,83,116,105,99,107,121,72,101,97,100,101,114,125,44,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,84,114,46,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,125,44,105,115,83,116,105,99,107,121,67,111,108,117,109,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,105,115,83,116,97,99,107,101,100,38,38,40,116,104,105,115,46,105,115,82,101,115,112,111,110,115,105,118,101,124,124,116,104,105,115,46,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,41,38,38,116,104,105,115,46,115,116,105,99,107,121,67,111,108,117,109,110,125,44,114,111,119,86,97,114,105,97,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,98,118,84,97,98,108,101,84,114,46,118,97,114,105,97,110,116,125,44,104,101,97,100,86,97,114,105,97,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,98,118,84,97,98,108,101,84,114,46,104,101,97,100,86,97,114,105,97,110,116,125,44,102,111,111,116,86,97,114,105,97,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,98,118,84,97,98,108,101,84,114,46,102,111,111,116,86,97,114,105,97,110,116,125,44,116,97,98,108,101,86,97,114,105,97,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,98,118,84,97,98,108,101,84,114,46,116,97,98,108,101,86,97,114,105,97,110,116,125,44,99,111,109,112,117,116,101,100,67,111,108,115,112,97,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,69,40,116,104,105,115,46,99,111,108,115,112,97,110,41,125,44,99,111,109,112,117,116,101,100,82,111,119,115,112,97,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,69,40,116,104,105,115,46,114,111,119,115,112,97,110,41,125,44,99,101,108,108,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,118,97,114,105,97,110,116,44,101,61,116,104,105,115,46,104,101,97,100,86,97,114,105,97,110,116,44,110,61,116,104,105,115,46,105,115,83,116,105,99,107,121,67,111,108,117,109,110,59,114,101,116,117,114,110,40,33,116,38,38,116,104,105,115,46,105,115,83,116,105,99,107,121,72,101,97,100,101,114,38,38,33,101,124,124,33,116,38,38,110,38,38,116,104,105,115,46,105,110,84,102,111,111,116,38,38,33,116,104,105,115,46,102,111,111,116,86,97,114,105,97,110,116,124,124,33,116,38,38,110,38,38,116,104,105,115,46,105,110,84,104,101,97,100,38,38,33,101,124,124,33,116,38,38,110,38,38,116,104,105,115,46,105,110,84,98,111,100,121,41,38,38,40,116,61,116,104,105,115,46,114,111,119,86,97,114,105,97,110,116,124,124,116,104,105,115,46,116,97,98,108,101,86,97,114,105,97,110,116,124,124,34,98,45,116,97,98,108,101,45,100,101,102,97,117,108,116,34,41,44,91,116,63,34,34,46,99,111,110,99,97,116,40,116,104,105,115,46,105,115,68,97,114,107,63,34,98,103,34,58,34,116,97,98,108,101,34,44,34,45,34,41,46,99,111,110,99,97,116,40,116,41,58,110,117,108,108,44,110,63,34,98,45,116,97,98,108,101,45,115,116,105,99,107,121,45,99,111,108,117,109,110,34,58,110,117,108,108,93,125,44,99,101,108,108,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,115,116,97,99,107,101,100,72,101,97,100,105,110,103,44,101,61,116,104,105,115,46,105,110,84,104,101,97,100,124,124,116,104,105,115,46,105,110,84,102,111,111,116,44,110,61,116,104,105,115,46,99,111,109,112,117,116,101,100,67,111,108,115,112,97,110,44,114,61,116,104,105,115,46,99,111,109,112,117,116,101,100,82,111,119,115,112,97,110,44,105,61,34,99,101,108,108,34,44,111,61,110,117,108,108,59,114,101,116,117,114,110,32,101,63,40,105,61,34,99,111,108,117,109,110,104,101,97,100,101,114,34,44,111,61,110,62,48,63,34,99,111,108,115,112,97,110,34,58,34,99,111,108,34,41,58,119,115,40,116,104,105,115,46,116,97,103,44,34,116,104,34,41,38,38,40,105,61,34,114,111,119,104,101,97,100,101,114,34,44,111,61,114,62,48,63,34,114,111,119,103,114,111,117,112,34,58,34,114,111,119,34,41,44,65,69,40,65,69,40,123,99,111,108,115,112,97,110,58,110,44,114,111,119,115,112,97,110,58,114,44,114,111,108,101,58,105,44,115,99,111,112,101,58,111,125,44,116,104,105,115,46,98,118,65,116,116,114,115,41,44,123,125,44,123,34,100,97,116,97,45,108,97,98,101,108,34,58,116,104,105,115,46,105,115,83,116,97,99,107,101,100,67,101,108,108,38,38,33,119,116,40,116,41,63,115,115,40,116,41,58,110,117,108,108,125,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,93,59,114,101,116,117,114,110,32,116,40,116,104,105,115,46,116,97,103,44,123,99,108,97,115,115,58,116,104,105,115,46,99,101,108,108,67,108,97,115,115,101,115,44,97,116,116,114,115,58,116,104,105,115,46,99,101,108,108,65,116,116,114,115,44,111,110,58,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,125,44,91,116,104,105,115,46,105,115,83,116,97,99,107,101,100,67,101,108,108,63,116,40,34,100,105,118,34,44,91,101,93,41,58,101,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,82,69,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,118,97,114,32,78,69,61,34,98,117,115,121,34,44,66,69,61,99,111,43,78,69,44,122,69,61,82,69,40,123,125,44,78,69,44,117,99,40,103,111,44,33,49,41,41,44,86,69,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,122,69,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,108,111,99,97,108,66,117,115,121,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,66,117,115,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,91,78,69,93,124,124,116,104,105,115,46,108,111,99,97,108,66,117,115,121,125,125,44,119,97,116,99,104,58,123,108,111,99,97,108,66,117,115,121,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,116,104,105,115,46,36,101,109,105,116,40,66,69,44,116,41,125,125,44,109,101,116,104,111,100,115,58,123,115,116,111,112,73,102,66,117,115,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,33,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,115,121,38,38,40,107,99,40,116,41,44,33,48,41,125,44,114,101,110,100,101,114,66,117,115,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,44,101,61,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,44,110,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,115,121,38,38,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,77,97,41,63,110,40,84,69,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,116,97,98,108,101,45,98,117,115,121,45,115,108,111,116,34,44,99,108,97,115,115,58,91,95,116,40,116,41,63,116,40,110,117,108,108,44,77,97,41,58,116,93,44,97,116,116,114,115,58,95,116,40,101,41,63,101,40,110,117,108,108,44,77,97,41,58,101,44,107,101,121,58,34,116,97,98,108,101,45,98,117,115,121,45,115,108,111,116,34,125,44,91,110,40,70,69,44,123,112,114,111,112,115,58,123,99,111,108,115,112,97,110,58,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,46,108,101,110,103,116,104,124,124,110,117,108,108,125,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,77,97,41,93,41,93,41,58,110,117,108,108,125,125,125,41,44,72,69,61,123,99,97,112,116,105,111,110,58,117,99,40,120,111,41,44,99,97,112,116,105,111,110,72,116,109,108,58,117,99,40,120,111,41,125,44,85,69,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,72,69,44,99,111,109,112,117,116,101,100,58,123,99,97,112,116,105,111,110,73,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,105,115,83,116,97,99,107,101,100,63,116,104,105,115,46,115,97,102,101,73,100,40,34,95,99,97,112,116,105,111,110,95,34,41,58,110,117,108,108,125,125,44,109,101,116,104,111,100,115,58,123,114,101,110,100,101,114,67,97,112,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,97,112,116,105,111,110,44,101,61,116,104,105,115,46,99,97,112,116,105,111,110,72,116,109,108,44,110,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,114,61,110,40,41,44,105,61,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,36,97,41,59,114,101,116,117,114,110,40,105,124,124,116,124,124,101,41,38,38,40,114,61,110,40,34,99,97,112,116,105,111,110,34,44,123,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,99,97,112,116,105,111,110,73,100,125,44,100,111,109,80,114,111,112,115,58,105,63,123,125,58,67,102,40,101,44,116,41,44,107,101,121,58,34,99,97,112,116,105,111,110,34,44,114,101,102,58,34,99,97,112,116,105,111,110,34,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,36,97,41,41,41,44,114,125,125,125,41,44,87,69,61,123,125,44,71,69,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,101,116,104,111,100,115,58,123,114,101,110,100,101,114,67,111,108,103,114,111,117,112,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,44,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,40,41,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,70,97,41,38,38,40,110,61,101,40,34,99,111,108,103,114,111,117,112,34,44,123,107,101,121,58,34,99,111,108,103,114,111,117,112,34,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,70,97,44,123,99,111,108,117,109,110,115,58,116,46,108,101,110,103,116,104,44,102,105,101,108,100,115,58,116,125,41,93,41,41,44,110,125,125,125,41,44,113,69,61,123,101,109,112,116,121,70,105,108,116,101,114,101,100,72,116,109,108,58,117,99,40,120,111,41,44,101,109,112,116,121,70,105,108,116,101,114,101,100,84,101,120,116,58,117,99,40,120,111,44,34,84,104,101,114,101,32,97,114,101,32,110,111,32,114,101,99,111,114,100,115,32,109,97,116,99,104,105,110,103,32,121,111,117,114,32,114,101,113,117,101,115,116,34,41,44,101,109,112,116,121,72,116,109,108,58,117,99,40,120,111,41,44,101,109,112,116,121,84,101,120,116,58,117,99,40,120,111,44,34,84,104,101,114,101,32,97,114,101,32,110,111,32,114,101,99,111,114,100,115,32,116,111,32,115,104,111,119,34,41,44,115,104,111,119,69,109,112,116,121,58,117,99,40,103,111,44,33,49,41,125,44,89,69,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,113,69,44,109,101,116,104,111,100,115,58,123,114,101,110,100,101,114,69,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,44,101,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,101,40,41,59,105,102,40,116,104,105,115,46,115,104,111,119,69,109,112,116,121,38,38,40,33,116,124,124,48,61,61,61,116,46,108,101,110,103,116,104,41,38,38,40,33,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,115,121,124,124,33,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,77,97,41,41,41,123,118,97,114,32,114,61,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,44,105,61,116,104,105,115,46,105,115,70,105,108,116,101,114,101,100,44,111,61,116,104,105,115,46,101,109,112,116,121,84,101,120,116,44,97,61,116,104,105,115,46,101,109,112,116,121,72,116,109,108,44,115,61,116,104,105,115,46,101,109,112,116,121,70,105,108,116,101,114,101,100,84,101,120,116,44,99,61,116,104,105,115,46,101,109,112,116,121,70,105,108,116,101,114,101,100,72,116,109,108,44,117,61,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,44,108,61,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,59,110,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,105,63,88,111,58,75,111,44,123,101,109,112,116,121,70,105,108,116,101,114,101,100,72,116,109,108,58,99,44,101,109,112,116,121,70,105,108,116,101,114,101,100,84,101,120,116,58,115,44,101,109,112,116,121,72,116,109,108,58,97,44,101,109,112,116,121,84,101,120,116,58,111,44,102,105,101,108,100,115,58,114,44,105,116,101,109,115,58,116,125,41,44,110,124,124,40,110,61,101,40,34,100,105,118,34,44,123,99,108,97,115,115,58,91,34,116,101,120,116,45,99,101,110,116,101,114,34,44,34,109,121,45,50,34,93,44,100,111,109,80,114,111,112,115,58,105,63,67,102,40,99,44,115,41,58,67,102,40,97,44,111,41,125,41,41,44,110,61,101,40,70,69,44,123,112,114,111,112,115,58,123,99,111,108,115,112,97,110,58,114,46,108,101,110,103,116,104,124,124,110,117,108,108,125,125,44,91,101,40,34,100,105,118,34,44,123,97,116,116,114,115,58,123,114,111,108,101,58,34,97,108,101,114,116,34,44,34,97,114,105,97,45,108,105,118,101,34,58,34,112,111,108,105,116,101,34,125,125,44,91,110,93,41,93,41,44,110,61,101,40,84,69,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,116,97,98,108,101,45,101,109,112,116,121,45,114,111,119,34,44,99,108,97,115,115,58,91,95,116,40,117,41,63,117,40,110,117,108,108,44,34,114,111,119,45,101,109,112,116,121,34,41,58,117,93,44,97,116,116,114,115,58,95,116,40,108,41,63,108,40,110,117,108,108,44,34,114,111,119,45,101,109,112,116,121,34,41,58,108,44,107,101,121,58,105,63,34,98,45,101,109,112,116,121,45,102,105,108,116,101,114,101,100,45,114,111,119,34,58,34,98,45,101,109,112,116,121,45,114,111,119,34,125,44,91,110,93,41,125,114,101,116,117,114,110,32,110,125,125,125,41,44,75,69,61,102,117,110,99,116,105,111,110,32,116,40,101,41,123,114,101,116,117,114,110,32,119,116,40,101,41,63,34,34,58,80,116,40,101,41,38,38,33,106,116,40,101,41,63,86,116,40,101,41,46,115,111,114,116,40,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,101,91,110,93,41,125,41,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,33,116,125,41,41,46,106,111,105,110,40,34,32,34,41,58,115,115,40,101,41,125,59,102,117,110,99,116,105,111,110,32,88,69,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,90,69,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,88,69,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,74,69,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,88,69,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,74,69,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,118,97,114,32,81,69,61,34,95,99,101,108,108,86,97,114,105,97,110,116,115,34,44,116,68,61,34,95,114,111,119,86,97,114,105,97,110,116,34,44,101,68,61,34,95,115,104,111,119,68,101,116,97,105,108,115,34,44,110,68,61,91,81,69,44,116,68,44,101,68,93,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,90,69,40,90,69,40,123,125,44,116,41,44,123,125,44,74,69,40,123,125,44,101,44,33,48,41,41,125,41,44,123,125,41,44,114,68,61,91,34,97,34,44,34,97,32,42,34,44,34,98,117,116,116,111,110,34,44,34,98,117,116,116,111,110,32,42,34,44,34,105,110,112,117,116,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,34,44,34,115,101,108,101,99,116,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,34,44,34,116,101,120,116,97,114,101,97,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,34,44,39,91,114,111,108,101,61,34,108,105,110,107,34,93,39,44,39,91,114,111,108,101,61,34,108,105,110,107,34,93,32,42,39,44,39,91,114,111,108,101,61,34,98,117,116,116,111,110,34,93,39,44,39,91,114,111,108,101,61,34,98,117,116,116,111,110,34,93,32,42,39,44,34,91,116,97,98,105,110,100,101,120,93,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,34,93,46,106,111,105,110,40,34,44,34,41,44,105,68,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,51,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,123,125,44,105,61,86,116,40,114,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,105,61,114,91,110,93,44,111,61,105,46,102,105,108,116,101,114,66,121,70,111,114,109,97,116,116,101,100,44,97,61,95,116,40,111,41,63,111,58,111,63,105,46,102,111,114,109,97,116,116,101,114,58,110,117,108,108,59,114,101,116,117,114,110,32,95,116,40,97,41,38,38,40,101,91,110,93,61,97,40,116,91,110,93,44,110,44,116,41,41,44,101,125,41,44,87,116,40,116,41,41,44,111,61,86,116,40,105,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,110,68,91,116,93,38,38,33,40,67,116,40,101,41,38,38,101,46,108,101,110,103,116,104,62,48,38,38,113,97,40,101,44,116,41,41,38,38,33,40,67,116,40,110,41,38,38,110,46,108,101,110,103,116,104,62,48,38,38,33,113,97,40,110,44,116,41,41,125,41,41,59,114,101,116,117,114,110,32,71,116,40,105,44,111,41,125,44,111,68,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,80,116,40,116,41,63,75,69,40,105,68,40,116,44,101,44,110,44,114,41,41,58,34,34,125,59,102,117,110,99,116,105,111,110,32,97,68,40,116,41,123,114,101,116,117,114,110,32,108,68,40,116,41,124,124,117,68,40,116,41,124,124,99,68,40,116,41,124,124,115,68,40,41,125,102,117,110,99,116,105,111,110,32,115,68,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,34,41,125,102,117,110,99,116,105,111,110,32,99,68,40,116,44,101,41,123,105,102,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,102,68,40,116,44,101,41,59,118,97,114,32,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,41,46,115,108,105,99,101,40,56,44,45,49,41,59,114,101,116,117,114,110,34,79,98,106,101,99,116,34,61,61,61,110,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,116,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,44,34,77,97,112,34,61,61,61,110,124,124,34,83,101,116,34,61,61,61,110,63,65,114,114,97,121,46,102,114,111,109,40,116,41,58,34,65,114,103,117,109,101,110,116,115,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,63,102,68,40,116,44,101,41,58,118,111,105,100,32,48,125,125,102,117,110,99,116,105,111,110,32,117,68,40,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,116,41,125,102,117,110,99,116,105,111,110,32,108,68,40,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,102,68,40,116,41,125,102,117,110,99,116,105,111,110,32,102,68,40,116,44,101,41,123,40,110,117,108,108,61,61,101,124,124,101,62,116,46,108,101,110,103,116,104,41,38,38,40,101,61,116,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,110,60,101,59,110,43,43,41,114,91,110,93,61,116,91,110,93,59,114,101,116,117,114,110,32,114,125,118,97,114,32,104,68,61,39,80,114,111,112,32,34,102,105,108,116,101,114,45,100,101,98,111,117,110,99,101,34,32,105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,85,115,101,32,116,104,101,32,100,101,98,111,117,110,99,101,32,102,101,97,116,117,114,101,32,111,102,32,34,60,98,45,102,111,114,109,45,105,110,112,117,116,62,34,32,105,110,115,116,101,97,100,46,39,44,100,68,61,123,102,105,108,116,101,114,58,117,99,40,91,93,46,99,111,110,99,97,116,40,97,68,40,107,111,41,44,91,95,111,93,41,41,44,102,105,108,116,101,114,68,101,98,111,117,110,99,101,58,117,99,40,65,111,44,48,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,83,46,116,101,115,116,40,83,116,114,105,110,103,40,116,41,41,125,41,41,44,102,105,108,116,101,114,70,117,110,99,116,105,111,110,58,117,99,40,98,111,41,44,102,105,108,116,101,114,73,103,110,111,114,101,100,70,105,101,108,100,115,58,117,99,40,118,111,44,91,93,41,44,102,105,108,116,101,114,73,110,99,108,117,100,101,100,70,105,101,108,100,115,58,117,99,40,118,111,44,91,93,41,125,44,112,68,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,100,68,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,70,105,108,116,101,114,101,100,58,33,49,44,108,111,99,97,108,70,105,108,116,101,114,58,116,104,105,115,46,102,105,108,116,101,114,83,97,110,105,116,105,122,101,40,116,104,105,115,46,102,105,108,116,101,114,41,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,70,105,108,116,101,114,73,103,110,111,114,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,97,40,116,104,105,115,46,102,105,108,116,101,114,73,103,110,111,114,101,100,70,105,101,108,100,115,124,124,91,93,41,46,102,105,108,116,101,114,40,115,101,41,125,44,99,111,109,112,117,116,101,100,70,105,108,116,101,114,73,110,99,108,117,100,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,97,40,116,104,105,115,46,102,105,108,116,101,114,73,110,99,108,117,100,101,100,70,105,101,108,100,115,124,124,91,93,41,46,102,105,108,116,101,114,40,115,101,41,125,44,99,111,109,112,117,116,101,100,70,105,108,116,101,114,68,101,98,111,117,110,99,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,74,97,40,116,104,105,115,46,102,105,108,116,101,114,68,101,98,111,117,110,99,101,44,48,41,59,114,101,116,117,114,110,32,116,62,48,38,38,104,101,40,104,68,44,76,114,41,44,116,125,44,108,111,99,97,108,70,105,108,116,101,114,105,110,103,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,97,115,80,114,111,118,105,100,101,114,124,124,33,33,116,104,105,115,46,110,111,80,114,111,118,105,100,101,114,70,105,108,116,101,114,105,110,103,125,44,102,105,108,116,101,114,101,100,67,104,101,99,107,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,102,105,108,116,101,114,101,100,73,116,101,109,115,44,101,61,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,44,110,61,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,59,114,101,116,117,114,110,123,102,105,108,116,101,114,101,100,73,116,101,109,115,58,116,44,108,111,99,97,108,73,116,101,109,115,58,101,44,108,111,99,97,108,70,105,108,116,101,114,58,110,125,125,44,108,111,99,97,108,70,105,108,116,101,114,70,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,102,105,108,116,101,114,70,117,110,99,116,105,111,110,59,114,101,116,117,114,110,32,118,99,40,116,41,63,116,58,110,117,108,108,125,44,102,105,108,116,101,114,101,100,73,116,101,109,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,44,101,61,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,44,110,61,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,105,110,103,63,116,104,105,115,46,102,105,108,116,101,114,70,110,70,97,99,116,111,114,121,40,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,70,110,44,101,41,124,124,116,104,105,115,46,100,101,102,97,117,108,116,70,105,108,116,101,114,70,110,70,97,99,116,111,114,121,40,101,41,58,110,117,108,108,59,114,101,116,117,114,110,32,110,38,38,116,46,108,101,110,103,116,104,62,48,63,116,46,102,105,108,116,101,114,40,110,41,58,116,125,125,44,119,97,116,99,104,58,123,99,111,109,112,117,116,101,100,70,105,108,116,101,114,68,101,98,111,117,110,99,101,58,102,117,110,99,116,105,111,110,40,116,41,123,33,116,38,38,116,104,105,115,46,36,95,102,105,108,116,101,114,84,105,109,101,114,38,38,40,116,104,105,115,46,99,108,101,97,114,70,105,108,116,101,114,84,105,109,101,114,40,41,44,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,61,116,104,105,115,46,102,105,108,116,101,114,83,97,110,105,116,105,122,101,40,116,104,105,115,46,102,105,108,116,101,114,41,41,125,44,102,105,108,116,101,114,58,123,100,101,101,112,58,33,48,44,104,97,110,100,108,101,114,58,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,99,111,109,112,117,116,101,100,70,105,108,116,101,114,68,101,98,111,117,110,99,101,59,116,104,105,115,46,99,108,101,97,114,70,105,108,116,101,114,84,105,109,101,114,40,41,44,110,38,38,110,62,48,63,116,104,105,115,46,36,95,102,105,108,116,101,114,84,105,109,101,114,61,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,108,111,99,97,108,70,105,108,116,101,114,61,101,46,102,105,108,116,101,114,83,97,110,105,116,105,122,101,40,116,41,125,41,44,110,41,58,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,61,116,104,105,115,46,102,105,108,116,101,114,83,97,110,105,116,105,122,101,40,116,41,125,125,44,102,105,108,116,101,114,101,100,67,104,101,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,102,105,108,116,101,114,101,100,73,116,101,109,115,44,110,61,116,46,108,111,99,97,108,70,105,108,116,101,114,44,114,61,33,49,59,110,63,95,108,40,110,44,91,93,41,124,124,95,108,40,110,44,123,125,41,63,114,61,33,49,58,110,38,38,40,114,61,33,48,41,58,114,61,33,49,44,114,38,38,116,104,105,115,46,36,101,109,105,116,40,120,105,44,101,44,101,46,108,101,110,103,116,104,41,44,116,104,105,115,46,105,115,70,105,108,116,101,114,101,100,61,114,125,44,105,115,70,105,108,116,101,114,101,100,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,49,61,61,61,116,38,38,33,48,61,61,61,101,41,123,118,97,114,32,110,61,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,59,116,104,105,115,46,36,101,109,105,116,40,120,105,44,110,44,110,46,108,101,110,103,116,104,41,125,125,125,44,99,114,101,97,116,101,100,58,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,36,95,102,105,108,116,101,114,84,105,109,101,114,61,110,117,108,108,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,105,115,70,105,108,116,101,114,101,100,61,66,111,111,108,101,97,110,40,116,46,108,111,99,97,108,70,105,108,116,101,114,41,125,41,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,101,97,114,70,105,108,116,101,114,84,105,109,101,114,40,41,125,44,109,101,116,104,111,100,115,58,123,99,108,101,97,114,70,105,108,116,101,114,84,105,109,101,114,58,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,36,95,102,105,108,116,101,114,84,105,109,101,114,41,44,116,104,105,115,46,36,95,102,105,108,116,101,114,84,105,109,101,114,61,110,117,108,108,125,44,102,105,108,116,101,114,83,97,110,105,116,105,122,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,105,110,103,124,124,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,70,110,124,124,79,116,40,116,41,124,124,65,116,40,116,41,63,97,101,40,116,41,58,34,34,125,44,102,105,108,116,101,114,70,110,70,97,99,116,111,114,121,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,116,124,124,33,95,116,40,116,41,124,124,33,101,124,124,95,108,40,101,44,91,93,41,124,124,95,108,40,101,44,123,125,41,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,44,101,41,125,59,114,101,116,117,114,110,32,110,125,44,100,101,102,97,117,108,116,70,105,108,116,101,114,70,110,70,97,99,116,111,114,121,58,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,124,124,33,79,116,40,116,41,38,38,33,65,116,40,116,41,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,110,61,116,59,105,102,40,79,116,40,110,41,41,123,118,97,114,32,114,61,97,115,40,116,41,46,114,101,112,108,97,99,101,40,73,44,34,92,92,115,43,34,41,59,110,61,110,101,119,32,82,101,103,69,120,112,40,34,46,42,34,46,99,111,110,99,97,116,40,114,44,34,46,42,34,41,44,34,105,34,41,125,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,108,97,115,116,73,110,100,101,120,61,48,44,110,46,116,101,115,116,40,111,68,40,116,44,101,46,99,111,109,112,117,116,101,100,70,105,108,116,101,114,73,103,110,111,114,101,100,44,101,46,99,111,109,112,117,116,101,100,70,105,108,116,101,114,73,110,99,108,117,100,101,100,44,101,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,79,98,106,41,41,125,59,114,101,116,117,114,110,32,105,125,125,125,41,44,118,68,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,110,117,108,108,59,114,101,116,117,114,110,32,79,116,40,101,41,63,110,61,123,107,101,121,58,116,44,108,97,98,101,108,58,101,125,58,95,116,40,101,41,63,110,61,123,107,101,121,58,116,44,102,111,114,109,97,116,116,101,114,58,101,125,58,80,116,40,101,41,63,40,110,61,87,116,40,101,41,44,110,46,107,101,121,61,110,46,107,101,121,124,124,116,41,58,33,49,33,61,61,101,38,38,40,110,61,123,107,101,121,58,116,125,41,44,110,125,44,103,68,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,91,93,59,105,102,40,67,116,40,116,41,38,38,116,46,102,105,108,116,101,114,40,115,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,79,116,40,116,41,41,110,46,112,117,115,104,40,123,107,101,121,58,116,44,108,97,98,101,108,58,114,115,40,116,41,125,41,59,101,108,115,101,32,105,102,40,80,116,40,116,41,38,38,116,46,107,101,121,38,38,79,116,40,116,46,107,101,121,41,41,110,46,112,117,115,104,40,87,116,40,116,41,41,59,101,108,115,101,32,105,102,40,80,116,40,116,41,38,38,49,61,61,61,86,116,40,116,41,46,108,101,110,103,116,104,41,123,118,97,114,32,101,61,86,116,40,116,41,91,48,93,44,114,61,118,68,40,101,44,116,91,101,93,41,59,114,38,38,110,46,112,117,115,104,40,114,41,125,125,41,41,44,48,61,61,61,110,46,108,101,110,103,116,104,38,38,67,116,40,101,41,38,38,101,46,108,101,110,103,116,104,62,48,41,123,118,97,114,32,114,61,101,91,48,93,59,86,116,40,114,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,110,68,91,116,93,124,124,110,46,112,117,115,104,40,123,107,101,121,58,116,44,108,97,98,101,108,58,114,115,40,116,41,125,41,125,41,41,125,118,97,114,32,105,61,123,125,59,114,101,116,117,114,110,32,110,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,105,91,116,46,107,101,121,93,38,38,40,105,91,116,46,107,101,121,93,61,33,48,44,116,46,108,97,98,101,108,61,79,116,40,116,46,108,97,98,101,108,41,63,116,46,108,97,98,101,108,58,114,115,40,116,46,107,101,121,41,44,33,48,41,125,41,41,125,59,102,117,110,99,116,105,111,110,32,109,68,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,98,68,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,109,68,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,121,68,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,109,68,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,121,68,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,118,97,114,32,119,68,61,109,99,40,34,118,97,108,117,101,34,44,123,116,121,112,101,58,118,111,44,100,101,102,97,117,108,116,86,97,108,117,101,58,91,93,125,41,44,95,68,61,119,68,46,109,105,120,105,110,44,120,68,61,119,68,46,112,114,111,112,115,44,79,68,61,119,68,46,112,114,111,112,44,83,68,61,119,68,46,101,118,101,110,116,44,107,68,61,75,116,40,98,68,40,98,68,40,123,125,44,120,68,41,44,123,125,44,121,68,40,123,102,105,101,108,100,115,58,117,99,40,118,111,44,110,117,108,108,41,44,105,116,101,109,115,58,117,99,40,118,111,44,91,93,41,44,112,114,105,109,97,114,121,75,101,121,58,117,99,40,120,111,41,125,44,79,68,44,117,99,40,118,111,44,91,93,41,41,41,41,44,67,68,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,105,120,105,110,115,58,91,95,68,93,44,112,114,111,112,115,58,107,68,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,105,116,101,109,115,59,114,101,116,117,114,110,123,108,111,99,97,108,73,116,101,109,115,58,67,116,40,116,41,63,116,46,115,108,105,99,101,40,41,58,91,93,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,109,112,117,116,101,100,70,105,101,108,100,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,103,68,40,116,104,105,115,46,102,105,101,108,100,115,44,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,41,125,44,99,111,109,112,117,116,101,100,70,105,101,108,100,115,79,98,106,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,112,97,114,101,110,116,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,105,102,40,101,91,110,46,107,101,121,93,61,87,116,40,110,41,44,110,46,102,111,114,109,97,116,116,101,114,41,123,118,97,114,32,114,61,110,46,102,111,114,109,97,116,116,101,114,59,79,116,40,114,41,38,38,95,116,40,116,91,114,93,41,63,114,61,116,91,114,93,58,95,116,40,114,41,124,124,40,114,61,118,111,105,100,32,48,41,44,101,91,110,46,107,101,121,93,46,102,111,114,109,97,116,116,101,114,61,114,125,114,101,116,117,114,110,32,101,125,41,44,123,125,41,125,44,99,111,109,112,117,116,101,100,73,116,101,109,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,116,104,105,115,46,112,97,103,105,110,97,116,101,100,73,116,101,109,115,124,124,116,104,105,115,46,115,111,114,116,101,100,73,116,101,109,115,124,124,116,104,105,115,46,102,105,108,116,101,114,101,100,73,116,101,109,115,124,124,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,124,124,91,93,41,46,115,108,105,99,101,40,41,125,44,99,111,110,116,101,120,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,102,105,108,116,101,114,58,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,44,115,111,114,116,66,121,58,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,44,115,111,114,116,68,101,115,99,58,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,44,112,101,114,80,97,103,101,58,116,117,40,74,97,40,116,104,105,115,46,112,101,114,80,97,103,101,44,48,41,44,48,41,44,99,117,114,114,101,110,116,80,97,103,101,58,116,117,40,74,97,40,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,44,48,41,44,49,41,44,97,112,105,85,114,108,58,116,104,105,115,46,97,112,105,85,114,108,125,125,125,44,119,97,116,99,104,58,123,105,116,101,109,115,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,61,67,116,40,116,41,63,116,46,115,108,105,99,101,40,41,58,91,93,125,44,99,111,109,112,117,116,101,100,73,116,101,109,115,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,95,108,40,116,44,101,41,124,124,116,104,105,115,46,36,101,109,105,116,40,83,68,44,116,41,125,44,99,111,110,116,101,120,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,95,108,40,116,44,101,41,124,124,116,104,105,115,46,36,101,109,105,116,40,112,105,44,116,41,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,101,109,105,116,40,83,68,44,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,41,125,44,109,101,116,104,111,100,115,58,123,103,101,116,70,105,101,108,100,70,111,114,109,97,116,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,79,98,106,91,116,93,59,114,101,116,117,114,110,32,101,63,101,46,102,111,114,109,97,116,116,101,114,58,118,111,105,100,32,48,125,125,125,41,44,80,68,61,123,99,117,114,114,101,110,116,80,97,103,101,58,117,99,40,65,111,44,49,41,44,112,101,114,80,97,103,101,58,117,99,40,65,111,44,48,41,125,44,84,68,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,80,68,44,99,111,109,112,117,116,101,100,58,123,108,111,99,97,108,80,97,103,105,110,103,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,97,115,80,114,111,118,105,100,101,114,124,124,33,33,116,104,105,115,46,110,111,80,114,111,118,105,100,101,114,80,97,103,105,110,103,125,44,112,97,103,105,110,97,116,101,100,73,116,101,109,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,115,111,114,116,101,100,73,116,101,109,115,124,124,116,104,105,115,46,102,105,108,116,101,114,101,100,73,116,101,109,115,124,124,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,124,124,91,93,44,101,61,116,117,40,74,97,40,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,44,49,41,44,49,41,44,110,61,116,117,40,74,97,40,116,104,105,115,46,112,101,114,80,97,103,101,44,48,41,44,48,41,59,114,101,116,117,114,110,32,116,104,105,115,46,108,111,99,97,108,80,97,103,105,110,103,38,38,110,38,38,40,116,61,116,46,115,108,105,99,101,40,40,101,45,49,41,42,110,44,101,42,110,41,41,44,116,125,125,125,41,44,106,68,61,80,99,40,76,114,44,122,105,41,44,69,68,61,84,99,40,76,114,44,66,105,41,44,68,68,61,123,97,112,105,85,114,108,58,117,99,40,120,111,41,44,105,116,101,109,115,58,117,99,40,79,111,44,91,93,41,44,110,111,80,114,111,118,105,100,101,114,70,105,108,116,101,114,105,110,103,58,117,99,40,103,111,44,33,49,41,44,110,111,80,114,111,118,105,100,101,114,80,97,103,105,110,103,58,117,99,40,103,111,44,33,49,41,44,110,111,80,114,111,118,105,100,101,114,83,111,114,116,105,110,103,58,117,99,40,103,111,44,33,49,41,125,44,65,68,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,105,120,105,110,115,58,91,80,108,93,44,112,114,111,112,115,58,68,68,44,99,111,109,112,117,116,101,100,58,123,104,97,115,80,114,111,118,105,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,95,116,40,116,104,105,115,46,105,116,101,109,115,41,125,44,112,114,111,118,105,100,101,114,84,114,105,103,103,101,114,67,111,110,116,101,120,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,97,112,105,85,114,108,58,116,104,105,115,46,97,112,105,85,114,108,44,102,105,108,116,101,114,58,110,117,108,108,44,115,111,114,116,66,121,58,110,117,108,108,44,115,111,114,116,68,101,115,99,58,110,117,108,108,44,112,101,114,80,97,103,101,58,110,117,108,108,44,99,117,114,114,101,110,116,80,97,103,101,58,110,117,108,108,125,59,114,101,116,117,114,110,32,116,104,105,115,46,110,111,80,114,111,118,105,100,101,114,70,105,108,116,101,114,105,110,103,124,124,40,116,46,102,105,108,116,101,114,61,116,104,105,115,46,108,111,99,97,108,70,105,108,116,101,114,41,44,116,104,105,115,46,110,111,80,114,111,118,105,100,101,114,83,111,114,116,105,110,103,124,124,40,116,46,115,111,114,116,66,121,61,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,44,116,46,115,111,114,116,68,101,115,99,61,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,41,44,116,104,105,115,46,110,111,80,114,111,118,105,100,101,114,80,97,103,105,110,103,124,124,40,116,46,112,101,114,80,97,103,101,61,116,104,105,115,46,112,101,114,80,97,103,101,44,116,46,99,117,114,114,101,110,116,80,97,103,101,61,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,41,44,87,116,40,116,41,125,125,44,119,97,116,99,104,58,123,105,116,101,109,115,58,102,117,110,99,116,105,111,110,40,116,41,123,40,116,104,105,115,46,104,97,115,80,114,111,118,105,100,101,114,124,124,95,116,40,116,41,41,38,38,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,95,112,114,111,118,105,100,101,114,85,112,100,97,116,101,41,125,44,112,114,111,118,105,100,101,114,84,114,105,103,103,101,114,67,111,110,116,101,120,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,95,108,40,116,44,101,41,124,124,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,95,112,114,111,118,105,100,101,114,85,112,100,97,116,101,41,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,33,116,104,105,115,46,104,97,115,80,114,111,118,105,100,101,114,124,124,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,38,38,48,33,61,61,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,46,108,101,110,103,116,104,124,124,116,104,105,115,46,95,112,114,111,118,105,100,101,114,85,112,100,97,116,101,40,41,44,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,69,68,44,40,102,117,110,99,116,105,111,110,40,101,41,123,101,33,61,61,116,46,105,100,38,38,101,33,61,61,116,124,124,116,46,114,101,102,114,101,115,104,40,41,125,41,41,125,44,109,101,116,104,111,100,115,58,123,114,101,102,114,101,115,104,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,105,116,101,109,115,44,101,61,116,104,105,115,46,114,101,102,114,101,115,104,59,116,104,105,115,46,36,111,102,102,40,122,105,44,101,41,44,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,115,121,63,116,104,105,115,46,108,111,99,97,108,66,117,115,121,38,38,116,104,105,115,46,104,97,115,80,114,111,118,105,100,101,114,38,38,116,104,105,115,46,36,111,110,40,122,105,44,101,41,58,40,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,40,41,44,116,104,105,115,46,104,97,115,80,114,111,118,105,100,101,114,63,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,95,112,114,111,118,105,100,101,114,85,112,100,97,116,101,41,58,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,61,67,116,40,116,41,63,116,46,115,108,105,99,101,40,41,58,91,93,41,125,44,95,112,114,111,118,105,100,101,114,83,101,116,76,111,99,97,108,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,61,67,116,40,116,41,63,116,46,115,108,105,99,101,40,41,58,91,93,44,116,104,105,115,46,108,111,99,97,108,66,117,115,121,61,33,49,44,116,104,105,115,46,36,101,109,105,116,40,122,105,41,44,116,104,105,115,46,105,100,38,38,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,106,68,44,116,104,105,115,46,105,100,41,125,44,95,112,114,111,118,105,100,101,114,85,112,100,97,116,101,58,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,104,97,115,80,114,111,118,105,100,101,114,38,38,40,116,104,105,115,46,99,111,109,112,117,116,101,100,66,117,115,121,63,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,114,101,102,114,101,115,104,41,58,40,116,104,105,115,46,108,111,99,97,108,66,117,115,121,61,33,48,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,118,97,114,32,101,61,116,46,105,116,101,109,115,40,116,46,99,111,110,116,101,120,116,44,116,46,95,112,114,111,118,105,100,101,114,83,101,116,76,111,99,97,108,41,59,76,116,40,101,41,63,101,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,95,112,114,111,118,105,100,101,114,83,101,116,76,111,99,97,108,40,101,41,125,41,41,58,67,116,40,101,41,63,116,46,95,112,114,111,118,105,100,101,114,83,101,116,76,111,99,97,108,40,101,41,58,50,33,61,61,116,46,105,116,101,109,115,46,108,101,110,103,116,104,38,38,40,104,101,40,34,80,114,111,118,105,100,101,114,32,102,117,110,99,116,105,111,110,32,100,105,100,110,39,116,32,114,101,113,117,101,115,116,32,99,97,108,108,98,97,99,107,32,97,110,100,32,100,105,100,32,110,111,116,32,114,101,116,117,114,110,32,97,32,112,114,111,109,105,115,101,32,111,114,32,100,97,116,97,46,34,44,76,114,41,44,116,46,108,111,99,97,108,66,117,115,121,61,33,49,41,125,99,97,116,99,104,40,65,101,41,123,104,101,40,34,80,114,111,118,105,100,101,114,32,102,117,110,99,116,105,111,110,32,101,114,114,111,114,32,91,34,46,99,111,110,99,97,116,40,65,101,46,110,97,109,101,44,34,93,32,34,41,46,99,111,110,99,97,116,40,65,101,46,109,101,115,115,97,103,101,44,34,46,34,41,44,76,114,41,44,116,46,108,111,99,97,108,66,117,115,121,61,33,49,44,116,46,36,111,102,102,40,122,105,44,116,46,114,101,102,114,101,115,104,41,125,125,41,41,41,41,125,125,125,41,59,102,117,110,99,116,105,111,110,32,76,68,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,118,97,114,32,73,68,44,77,68,44,36,68,61,91,34,114,97,110,103,101,34,44,34,109,117,108,116,105,34,44,34,115,105,110,103,108,101,34,93,44,70,68,61,123,110,111,83,101,108,101,99,116,79,110,67,108,105,99,107,58,117,99,40,103,111,44,33,49,41,44,115,101,108,101,99,116,77,111,100,101,58,117,99,40,120,111,44,34,109,117,108,116,105,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,113,97,40,36,68,44,116,41,125,41,41,44,115,101,108,101,99,116,97,98,108,101,58,117,99,40,103,111,44,33,49,41,44,115,101,108,101,99,116,101,100,86,97,114,105,97,110,116,58,117,99,40,120,111,44,34,97,99,116,105,118,101,34,41,125,44,82,68,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,70,68,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,115,101,108,101,99,116,101,100,82,111,119,115,58,91,93,44,115,101,108,101,99,116,101,100,76,97,115,116,82,111,119,58,45,49,125,125,44,99,111,109,112,117,116,101,100,58,123,105,115,83,101,108,101,99,116,97,98,108,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,97,98,108,101,38,38,116,104,105,115,46,115,101,108,101,99,116,77,111,100,101,125,44,104,97,115,83,101,108,101,99,116,97,98,108,101,82,111,119,67,108,105,99,107,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,115,83,101,108,101,99,116,97,98,108,101,38,38,33,116,104,105,115,46,110,111,83,101,108,101,99,116,79,110,67,108,105,99,107,125,44,115,117,112,112,111,114,116,115,83,101,108,101,99,116,97,98,108,101,82,111,119,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,115,101,108,101,99,116,97,98,108,101,72,97,115,83,101,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,38,38,116,38,38,116,46,108,101,110,103,116,104,62,48,38,38,116,46,115,111,109,101,40,115,101,41,125,44,115,101,108,101,99,116,97,98,108,101,73,115,77,117,108,116,105,83,101,108,101,99,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,105,115,83,101,108,101,99,116,97,98,108,101,38,38,113,97,40,91,34,114,97,110,103,101,34,44,34,109,117,108,116,105,34,93,44,116,104,105,115,46,115,101,108,101,99,116,77,111,100,101,41,125,44,115,101,108,101,99,116,97,98,108,101,84,97,98,108,101,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,61,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,59,114,101,116,117,114,110,32,116,61,123,34,98,45,116,97,98,108,101,45,115,101,108,101,99,116,97,98,108,101,34,58,101,125,44,76,68,40,116,44,34,98,45,116,97,98,108,101,45,115,101,108,101,99,116,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,115,101,108,101,99,116,77,111,100,101,41,44,101,41,44,76,68,40,116,44,34,98,45,116,97,98,108,101,45,115,101,108,101,99,116,105,110,103,34,44,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,72,97,115,83,101,108,101,99,116,105,111,110,41,44,76,68,40,116,44,34,98,45,116,97,98,108,101,45,115,101,108,101,99,116,97,98,108,101,45,110,111,45,99,108,105,99,107,34,44,101,38,38,33,116,104,105,115,46,104,97,115,83,101,108,101,99,116,97,98,108,101,82,111,119,67,108,105,99,107,41,44,116,125,44,115,101,108,101,99,116,97,98,108,101,84,97,98,108,101,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,34,97,114,105,97,45,109,117,108,116,105,115,101,108,101,99,116,97,98,108,101,34,58,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,63,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,73,115,77,117,108,116,105,83,101,108,101,99,116,63,34,116,114,117,101,34,58,34,102,97,108,115,101,34,58,110,117,108,108,125,125,125,44,119,97,116,99,104,58,123,99,111,109,112,117,116,101,100,73,116,101,109,115,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,33,49,59,105,102,40,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,38,38,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,46,108,101,110,103,116,104,62,48,41,123,110,61,67,116,40,116,41,38,38,67,116,40,101,41,38,38,116,46,108,101,110,103,116,104,61,61,61,101,46,108,101,110,103,116,104,59,102,111,114,40,118,97,114,32,114,61,48,59,110,38,38,114,60,116,46,108,101,110,103,116,104,59,114,43,43,41,110,61,95,108,40,105,68,40,116,91,114,93,41,44,105,68,40,101,91,114,93,41,41,125,110,124,124,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,40,41,125,44,115,101,108,101,99,116,97,98,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,40,41,44,116,104,105,115,46,115,101,116,83,101,108,101,99,116,105,111,110,72,97,110,100,108,101,114,115,40,116,41,125,44,115,101,108,101,99,116,77,111,100,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,40,41,125,44,104,97,115,83,101,108,101,99,116,97,98,108,101,82,111,119,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,40,41,44,116,104,105,115,46,115,101,116,83,101,108,101,99,116,105,111,110,72,97,110,100,108,101,114,115,40,33,116,41,125,44,115,101,108,101,99,116,101,100,82,111,119,115,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,38,38,33,95,108,40,116,44,101,41,41,123,118,97,114,32,114,61,91,93,59,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,38,38,114,46,112,117,115,104,40,110,46,99,111,109,112,117,116,101,100,73,116,101,109,115,91,101,93,41,125,41,41,44,116,104,105,115,46,36,101,109,105,116,40,89,105,44,114,41,125,125,125,44,98,101,102,111,114,101,77,111,117,110,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,38,38,116,104,105,115,46,115,101,116,83,101,108,101,99,116,105,111,110,72,97,110,100,108,101,114,115,40,33,48,41,125,44,109,101,116,104,111,100,115,58,123,115,101,108,101,99,116,82,111,119,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,38,38,83,116,40,116,41,38,38,116,62,61,48,38,38,116,60,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,46,108,101,110,103,116,104,38,38,33,116,104,105,115,46,105,115,82,111,119,83,101,108,101,99,116,101,100,40,116,41,41,123,118,97,114,32,101,61,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,73,115,77,117,108,116,105,83,101,108,101,99,116,63,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,46,115,108,105,99,101,40,41,58,91,93,59,101,91,116,93,61,33,48,44,116,104,105,115,46,115,101,108,101,99,116,101,100,76,97,115,116,67,108,105,99,107,101,100,61,45,49,44,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,61,101,125,125,44,117,110,115,101,108,101,99,116,82,111,119,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,38,38,83,116,40,116,41,38,38,116,104,105,115,46,105,115,82,111,119,83,101,108,101,99,116,101,100,40,116,41,41,123,118,97,114,32,101,61,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,46,115,108,105,99,101,40,41,59,101,91,116,93,61,33,49,44,116,104,105,115,46,115,101,108,101,99,116,101,100,76,97,115,116,67,108,105,99,107,101,100,61,45,49,44,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,61,101,125,125,44,115,101,108,101,99,116,65,108,108,82,111,119,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,46,108,101,110,103,116,104,59,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,38,38,116,62,48,38,38,40,116,104,105,115,46,115,101,108,101,99,116,101,100,76,97,115,116,67,108,105,99,107,101,100,61,45,49,44,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,61,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,73,115,77,117,108,116,105,83,101,108,101,99,116,63,75,97,40,116,44,33,48,41,58,91,33,48,93,41,125,44,105,115,82,111,119,83,101,108,101,99,116,101,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,40,33,83,116,40,116,41,124,124,33,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,91,116,93,41,125,44,99,108,101,97,114,83,101,108,101,99,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,108,101,99,116,101,100,76,97,115,116,67,108,105,99,107,101,100,61,45,49,44,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,61,91,93,125,44,115,101,108,101,99,116,97,98,108,101,82,111,119,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,38,38,116,104,105,115,46,105,115,82,111,119,83,101,108,101,99,116,101,100,40,116,41,41,123,118,97,114,32,101,61,116,104,105,115,46,115,101,108,101,99,116,101,100,86,97,114,105,97,110,116,59,114,101,116,117,114,110,32,76,68,40,123,34,98,45,116,97,98,108,101,45,114,111,119,45,115,101,108,101,99,116,101,100,34,58,33,48,125,44,34,34,46,99,111,110,99,97,116,40,116,104,105,115,46,100,97,114,107,63,34,98,103,34,58,34,116,97,98,108,101,34,44,34,45,34,41,46,99,111,110,99,97,116,40,101,41,44,101,41,125,114,101,116,117,114,110,123,125,125,44,115,101,108,101,99,116,97,98,108,101,82,111,119,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,58,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,63,116,104,105,115,46,105,115,82,111,119,83,101,108,101,99,116,101,100,40,116,41,63,34,116,114,117,101,34,58,34,102,97,108,115,101,34,58,110,117,108,108,125,125,44,115,101,116,83,101,108,101,99,116,105,111,110,72,97,110,100,108,101,114,115,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,38,38,33,116,104,105,115,46,110,111,83,101,108,101,99,116,79,110,67,108,105,99,107,63,34,36,111,110,34,58,34,36,111,102,102,34,59,116,104,105,115,91,101,93,40,72,105,44,116,104,105,115,46,115,101,108,101,99,116,105,111,110,72,97,110,100,108,101,114,41,44,116,104,105,115,91,101,93,40,120,105,44,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,41,44,116,104,105,115,91,101,93,40,112,105,44,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,41,125,44,115,101,108,101,99,116,105,111,110,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,38,38,33,116,104,105,115,46,110,111,83,101,108,101,99,116,79,110,67,108,105,99,107,41,123,118,97,114,32,114,61,116,104,105,115,46,115,101,108,101,99,116,77,111,100,101,44,105,61,116,104,105,115,46,115,101,108,101,99,116,101,100,76,97,115,116,82,111,119,44,111,61,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,46,115,108,105,99,101,40,41,44,97,61,33,111,91,101,93,59,105,102,40,34,115,105,110,103,108,101,34,61,61,61,114,41,111,61,91,93,59,101,108,115,101,32,105,102,40,34,114,97,110,103,101,34,61,61,61,114,41,105,102,40,105,62,45,49,38,38,110,46,115,104,105,102,116,75,101,121,41,123,102,111,114,40,118,97,114,32,115,61,81,99,40,105,44,101,41,59,115,60,61,116,117,40,105,44,101,41,59,115,43,43,41,111,91,115,93,61,33,48,59,97,61,33,48,125,101,108,115,101,32,110,46,99,116,114,108,75,101,121,124,124,110,46,109,101,116,97,75,101,121,124,124,40,111,61,91,93,44,97,61,33,48,41,44,116,104,105,115,46,115,101,108,101,99,116,101,100,76,97,115,116,82,111,119,61,97,63,101,58,45,49,59,111,91,101,93,61,97,44,116,104,105,115,46,115,101,108,101,99,116,101,100,82,111,119,115,61,111,125,101,108,115,101,32,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,40,41,125,125,125,41,44,78,68,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,91,101,44,116,93,125,41,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,104,105,115,40,116,91,49,93,44,101,91,49,93,41,124,124,116,91,48,93,45,101,91,48,93,125,46,98,105,110,100,40,101,41,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,49,93,125,41,41,125,44,66,68,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,119,116,40,116,41,63,34,34,58,107,116,40,116,41,63,81,97,40,116,44,116,41,58,116,125,44,122,68,61,102,117,110,99,116,105,111,110,40,116,44,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,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,123,125,44,114,61,110,46,115,111,114,116,66,121,44,105,61,118,111,105,100,32,48,61,61,61,114,63,110,117,108,108,58,114,44,111,61,110,46,102,111,114,109,97,116,116,101,114,44,97,61,118,111,105,100,32,48,61,61,61,111,63,110,117,108,108,58,111,44,115,61,110,46,108,111,99,97,108,101,44,99,61,118,111,105,100,32,48,61,61,61,115,63,118,111,105,100,32,48,58,115,44,117,61,110,46,108,111,99,97,108,101,79,112,116,105,111,110,115,44,108,61,118,111,105,100,32,48,61,61,61,117,63,123,125,58,117,44,102,61,110,46,110,117,108,108,76,97,115,116,44,104,61,118,111,105,100,32,48,33,61,61,102,38,38,102,44,100,61,117,101,40,116,44,105,44,110,117,108,108,41,44,112,61,117,101,40,101,44,105,44,110,117,108,108,41,59,114,101,116,117,114,110,32,95,116,40,97,41,38,38,40,100,61,97,40,100,44,105,44,116,41,44,112,61,97,40,112,44,105,44,101,41,41,44,100,61,66,68,40,100,41,44,112,61,66,68,40,112,41,44,106,116,40,100,41,38,38,106,116,40,112,41,124,124,83,116,40,100,41,38,38,83,116,40,112,41,63,100,60,112,63,45,49,58,100,62,112,63,49,58,48,58,104,38,38,34,34,61,61,61,100,38,38,34,34,33,61,61,112,63,49,58,104,38,38,34,34,33,61,61,100,38,38,34,34,61,61,61,112,63,45,49,58,75,69,40,100,41,46,108,111,99,97,108,101,67,111,109,112,97,114,101,40,75,69,40,112,41,44,99,44,108,41,125,59,102,117,110,99,116,105,111,110,32,86,68,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,72,68,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,86,68,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,85,68,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,86,68,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,85,68,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,118,97,114,32,87,68,61,34,115,111,114,116,66,121,34,44,71,68,61,99,111,43,87,68,44,113,68,61,34,115,111,114,116,68,101,115,99,34,44,89,68,61,99,111,43,113,68,44,75,68,61,34,97,115,99,34,44,88,68,61,34,100,101,115,99,34,44,90,68,61,34,108,97,115,116,34,44,74,68,61,91,75,68,44,88,68,44,90,68,93,44,81,68,61,40,73,68,61,123,108,97,98,101,108,83,111,114,116,65,115,99,58,117,99,40,120,111,44,34,67,108,105,99,107,32,116,111,32,115,111,114,116,32,65,115,99,101,110,100,105,110,103,34,41,44,108,97,98,101,108,83,111,114,116,67,108,101,97,114,58,117,99,40,120,111,44,34,67,108,105,99,107,32,116,111,32,99,108,101,97,114,32,115,111,114,116,105,110,103,34,41,44,108,97,98,101,108,83,111,114,116,68,101,115,99,58,117,99,40,120,111,44,34,67,108,105,99,107,32,116,111,32,115,111,114,116,32,68,101,115,99,101,110,100,105,110,103,34,41,44,110,111,70,111,111,116,101,114,83,111,114,116,105,110,103,58,117,99,40,103,111,44,33,49,41,44,110,111,76,111,99,97,108,83,111,114,116,105,110,103,58,117,99,40,103,111,44,33,49,41,44,110,111,83,111,114,116,82,101,115,101,116,58,117,99,40,103,111,44,33,49,41,125,44,85,68,40,73,68,44,87,68,44,117,99,40,120,111,41,41,44,85,68,40,73,68,44,34,115,111,114,116,67,111,109,112,97,114,101,34,44,117,99,40,98,111,41,41,44,85,68,40,73,68,44,34,115,111,114,116,67,111,109,112,97,114,101,76,111,99,97,108,101,34,44,117,99,40,67,111,41,41,44,85,68,40,73,68,44,34,115,111,114,116,67,111,109,112,97,114,101,79,112,116,105,111,110,115,34,44,117,99,40,119,111,44,123,110,117,109,101,114,105,99,58,33,48,125,41,41,44,85,68,40,73,68,44,113,68,44,117,99,40,103,111,44,33,49,41,41,44,85,68,40,73,68,44,34,115,111,114,116,68,105,114,101,99,116,105,111,110,34,44,117,99,40,120,111,44,75,68,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,113,97,40,74,68,44,116,41,125,41,41,41,44,85,68,40,73,68,44,34,115,111,114,116,73,99,111,110,76,101,102,116,34,44,117,99,40,103,111,44,33,49,41,41,44,85,68,40,73,68,44,34,115,111,114,116,78,117,108,108,76,97,115,116,34,44,117,99,40,103,111,44,33,49,41,41,44,73,68,41,44,116,65,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,81,68,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,108,111,99,97,108,83,111,114,116,66,121,58,116,104,105,115,91,87,68,93,124,124,34,34,44,108,111,99,97,108,83,111,114,116,68,101,115,99,58,116,104,105,115,91,113,68,93,124,124,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,108,111,99,97,108,83,111,114,116,105,110,103,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,114,111,118,105,100,101,114,63,33,33,116,104,105,115,46,110,111,80,114,111,118,105,100,101,114,83,111,114,116,105,110,103,58,33,116,104,105,115,46,110,111,76,111,99,97,108,83,111,114,116,105,110,103,125,44,105,115,83,111,114,116,97,98,108,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,109,112,117,116,101,100,70,105,101,108,100,115,46,115,111,109,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,115,111,114,116,97,98,108,101,125,41,41,125,44,115,111,114,116,101,100,73,116,101,109,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,44,101,61,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,44,110,61,116,104,105,115,46,115,111,114,116,67,111,109,112,97,114,101,76,111,99,97,108,101,44,114,61,116,104,105,115,46,115,111,114,116,78,117,108,108,76,97,115,116,44,105,61,116,104,105,115,46,115,111,114,116,67,111,109,112,97,114,101,44,111,61,116,104,105,115,46,108,111,99,97,108,83,111,114,116,105,110,103,44,97,61,40,116,104,105,115,46,102,105,108,116,101,114,101,100,73,116,101,109,115,124,124,116,104,105,115,46,108,111,99,97,108,73,116,101,109,115,124,124,91,93,41,46,115,108,105,99,101,40,41,44,115,61,72,68,40,72,68,40,123,125,44,116,104,105,115,46,115,111,114,116,67,111,109,112,97,114,101,79,112,116,105,111,110,115,41,44,123,125,44,123,117,115,97,103,101,58,34,115,111,114,116,34,125,41,59,105,102,40,116,38,38,111,41,123,118,97,114,32,99,61,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,79,98,106,91,116,93,124,124,123,125,44,117,61,99,46,115,111,114,116,66,121,70,111,114,109,97,116,116,101,100,44,108,61,95,116,40,117,41,63,117,58,117,63,116,104,105,115,46,103,101,116,70,105,101,108,100,70,111,114,109,97,116,116,101,114,40,116,41,58,118,111,105,100,32,48,59,114,101,116,117,114,110,32,78,68,40,97,44,40,102,117,110,99,116,105,111,110,40,111,44,97,41,123,118,97,114,32,99,61,110,117,108,108,59,114,101,116,117,114,110,32,95,116,40,105,41,38,38,40,99,61,105,40,111,44,97,44,116,44,101,44,108,44,115,44,110,41,41,44,40,119,116,40,99,41,124,124,33,49,61,61,61,99,41,38,38,40,99,61,122,68,40,111,44,97,44,123,115,111,114,116,66,121,58,116,44,102,111,114,109,97,116,116,101,114,58,108,44,108,111,99,97,108,101,58,110,44,108,111,99,97,108,101,79,112,116,105,111,110,115,58,115,44,110,117,108,108,76,97,115,116,58,114,125,41,41,44,40,99,124,124,48,41,42,40,101,63,45,49,58,49,41,125,41,41,125,114,101,116,117,114,110,32,97,125,125,44,119,97,116,99,104,58,40,77,68,61,123,105,115,83,111,114,116,97,98,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,63,116,104,105,115,46,105,115,83,111,114,116,97,98,108,101,38,38,116,104,105,115,46,36,111,110,40,67,105,44,116,104,105,115,46,104,97,110,100,108,101,83,111,114,116,41,58,116,104,105,115,46,36,111,102,102,40,67,105,44,116,104,105,115,46,104,97,110,100,108,101,83,111,114,116,41,125,125,44,85,68,40,77,68,44,113,68,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,33,61,61,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,38,38,40,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,61,116,124,124,33,49,41,125,41,41,44,85,68,40,77,68,44,87,68,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,33,61,61,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,38,38,40,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,61,116,124,124,34,34,41,125,41,41,44,85,68,40,77,68,44,34,108,111,99,97,108,83,111,114,116,68,101,115,99,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,116,104,105,115,46,36,101,109,105,116,40,89,68,44,116,41,125,41,41,44,85,68,40,77,68,44,34,108,111,99,97,108,83,111,114,116,66,121,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,116,104,105,115,46,36,101,109,105,116,40,71,68,44,116,41,125,41,41,44,77,68,41,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,83,111,114,116,97,98,108,101,38,38,116,104,105,115,46,36,111,110,40,67,105,44,116,104,105,115,46,104,97,110,100,108,101,83,111,114,116,41,125,44,109,101,116,104,111,100,115,58,123,104,97,110,100,108,101,83,111,114,116,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,116,104,105,115,59,105,102,40,116,104,105,115,46,105,115,83,111,114,116,97,98,108,101,38,38,40,33,114,124,124,33,116,104,105,115,46,110,111,70,111,111,116,101,114,83,111,114,116,105,110,103,41,41,123,118,97,114,32,111,61,33,49,44,97,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,101,46,115,111,114,116,68,105,114,101,99,116,105,111,110,124,124,105,46,115,111,114,116,68,105,114,101,99,116,105,111,110,59,116,61,61,61,75,68,63,105,46,108,111,99,97,108,83,111,114,116,68,101,115,99,61,33,49,58,116,61,61,61,88,68,38,38,40,105,46,108,111,99,97,108,83,111,114,116,68,101,115,99,61,33,48,41,125,59,105,102,40,101,46,115,111,114,116,97,98,108,101,41,123,118,97,114,32,115,61,33,116,104,105,115,46,108,111,99,97,108,83,111,114,116,105,110,103,38,38,101,46,115,111,114,116,75,101,121,63,101,46,115,111,114,116,75,101,121,58,116,59,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,61,61,61,115,63,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,61,33,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,58,40,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,61,115,44,97,40,41,41,44,111,61,33,48,125,101,108,115,101,32,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,38,38,33,116,104,105,115,46,110,111,83,111,114,116,82,101,115,101,116,38,38,40,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,61,34,34,44,97,40,41,44,111,61,33,48,41,59,111,38,38,116,104,105,115,46,36,101,109,105,116,40,101,111,44,116,104,105,115,46,99,111,110,116,101,120,116,41,125,125,44,115,111,114,116,84,104,101,97,100,84,104,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,123,34,98,45,116,97,98,108,101,45,115,111,114,116,45,105,99,111,110,45,108,101,102,116,34,58,101,46,115,111,114,116,97,98,108,101,38,38,116,104,105,115,46,115,111,114,116,73,99,111,110,76,101,102,116,38,38,33,40,110,38,38,116,104,105,115,46,110,111,70,111,111,116,101,114,83,111,114,116,105,110,103,41,125,125,44,115,111,114,116,84,104,101,97,100,84,104,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,33,116,104,105,115,46,105,115,83,111,114,116,97,98,108,101,124,124,110,38,38,116,104,105,115,46,110,111,70,111,111,116,101,114,83,111,114,116,105,110,103,41,114,101,116,117,114,110,123,125,59,118,97,114,32,114,61,101,46,115,111,114,116,97,98,108,101,44,105,61,114,38,38,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,61,61,61,116,63,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,63,34,100,101,115,99,101,110,100,105,110,103,34,58,34,97,115,99,101,110,100,105,110,103,34,58,114,63,34,110,111,110,101,34,58,110,117,108,108,59,114,101,116,117,114,110,123,34,97,114,105,97,45,115,111,114,116,34,58,105,125,125,44,115,111,114,116,84,104,101,97,100,84,104,76,97,98,101,108,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,33,116,104,105,115,46,105,115,83,111,114,116,97,98,108,101,124,124,110,38,38,116,104,105,115,46,110,111,70,111,111,116,101,114,83,111,114,116,105,110,103,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,114,61,101,46,115,111,114,116,97,98,108,101,44,105,61,34,34,59,105,102,40,114,41,105,102,40,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,61,61,61,116,41,105,61,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,63,116,104,105,115,46,108,97,98,101,108,83,111,114,116,65,115,99,58,116,104,105,115,46,108,97,98,101,108,83,111,114,116,68,101,115,99,59,101,108,115,101,123,105,61,116,104,105,115,46,108,111,99,97,108,83,111,114,116,68,101,115,99,63,116,104,105,115,46,108,97,98,101,108,83,111,114,116,68,101,115,99,58,116,104,105,115,46,108,97,98,101,108,83,111,114,116,65,115,99,59,118,97,114,32,111,61,116,104,105,115,46,115,111,114,116,68,105,114,101,99,116,105,111,110,124,124,101,46,115,111,114,116,68,105,114,101,99,116,105,111,110,59,111,61,61,61,75,68,63,105,61,116,104,105,115,46,108,97,98,101,108,83,111,114,116,65,115,99,58,111,61,61,61,88,68,38,38,40,105,61,116,104,105,115,46,108,97,98,101,108,83,111,114,116,68,101,115,99,41,125,101,108,115,101,32,116,104,105,115,46,110,111,83,111,114,116,82,101,115,101,116,124,124,40,105,61,116,104,105,115,46,108,111,99,97,108,83,111,114,116,66,121,63,116,104,105,115,46,108,97,98,101,108,83,111,114,116,67,108,101,97,114,58,34,34,41,59,114,101,116,117,114,110,32,117,115,40,105,41,124,124,110,117,108,108,125,125,125,41,59,102,117,110,99,116,105,111,110,32,101,65,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,110,65,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,101,65,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,65,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,101,65,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,114,65,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,118,97,114,32,105,65,61,100,99,40,123,116,98,111,100,121,84,114,97,110,115,105,116,105,111,110,72,97,110,100,108,101,114,115,58,117,99,40,119,111,41,44,116,98,111,100,121,84,114,97,110,115,105,116,105,111,110,80,114,111,112,115,58,117,99,40,119,111,41,125,44,82,114,41,44,111,65,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,82,114,44,109,105,120,105,110,115,58,91,67,108,44,84,108,44,119,99,93,44,112,114,111,118,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,58,116,104,105,115,125,125,44,105,110,106,101,99,116,58,123,98,118,84,97,98,108,101,58,123,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,125,125,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,105,65,44,99,111,109,112,117,116,101,100,58,123,105,115,84,98,111,100,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,105,115,68,97,114,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,46,100,97,114,107,125,44,105,115,83,116,97,99,107,101,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,98,118,84,97,98,108,101,46,105,115,83,116,97,99,107,101,100,125,44,105,115,82,101,115,112,111,110,115,105,118,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,98,118,84,97,98,108,101,46,105,115,82,101,115,112,111,110,115,105,118,101,125,44,105,115,83,116,105,99,107,121,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,125,44,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,105,115,83,116,97,99,107,101,100,38,38,116,104,105,115,46,98,118,84,97,98,108,101,46,115,116,105,99,107,121,72,101,97,100,101,114,125,44,116,97,98,108,101,86,97,114,105,97,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,98,118,84,97,98,108,101,46,116,97,98,108,101,86,97,114,105,97,110,116,125,44,105,115,84,114,97,110,115,105,116,105,111,110,71,114,111,117,112,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,98,111,100,121,84,114,97,110,115,105,116,105,111,110,80,114,111,112,115,124,124,116,104,105,115,46,116,98,111,100,121,84,114,97,110,115,105,116,105,111,110,72,97,110,100,108,101,114,115,125,44,116,98,111,100,121,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,65,40,123,114,111,108,101,58,34,114,111,119,103,114,111,117,112,34,125,44,116,104,105,115,46,98,118,65,116,116,114,115,41,125,44,116,98,111,100,121,80,114,111,112,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,116,98,111,100,121,84,114,97,110,115,105,116,105,111,110,80,114,111,112,115,59,114,101,116,117,114,110,32,116,63,110,65,40,110,65,40,123,125,44,116,41,44,123,125,44,123,116,97,103,58,34,116,98,111,100,121,34,125,41,58,123,125,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,123,112,114,111,112,115,58,116,104,105,115,46,116,98,111,100,121,80,114,111,112,115,44,97,116,116,114,115,58,116,104,105,115,46,116,98,111,100,121,65,116,116,114,115,125,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,71,114,111,117,112,63,40,101,46,111,110,61,116,104,105,115,46,116,98,111,100,121,84,114,97,110,115,105,116,105,111,110,72,97,110,100,108,101,114,115,124,124,123,125,44,101,46,110,97,116,105,118,101,79,110,61,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,41,58,101,46,111,110,61,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,44,116,40,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,71,114,111,117,112,63,34,116,114,97,110,115,105,116,105,111,110,45,103,114,111,117,112,34,58,34,116,98,111,100,121,34,44,101,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,125,125,41,44,97,65,61,91,34,84,68,34,44,34,84,72,34,44,34,84,82,34,93,44,115,65,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,124,124,33,116,46,116,97,114,103,101,116,41,114,101,116,117,114,110,33,49,59,118,97,114,32,101,61,116,46,116,97,114,103,101,116,59,105,102,40,101,46,100,105,115,97,98,108,101,100,124,124,45,49,33,61,61,97,65,46,105,110,100,101,120,79,102,40,101,46,116,97,103,78,97,109,101,41,41,114,101,116,117,114,110,33,49,59,105,102,40,84,115,40,34,46,100,114,111,112,100,111,119,110,45,109,101,110,117,34,44,101,41,41,114,101,116,117,114,110,33,48,59,118,97,114,32,110,61,34,76,65,66,69,76,34,61,61,61,101,46,116,97,103,78,97,109,101,63,101,58,84,115,40,34,108,97,98,101,108,34,44,101,41,59,105,102,40,110,41,123,118,97,114,32,114,61,36,115,40,110,44,34,102,111,114,34,41,44,105,61,114,63,69,115,40,114,41,58,67,115,40,34,105,110,112,117,116,44,32,115,101,108,101,99,116,44,32,116,101,120,116,97,114,101,97,34,44,110,41,59,105,102,40,105,38,38,33,105,46,100,105,115,97,98,108,101,100,41,114,101,116,117,114,110,33,48,125,114,101,116,117,114,110,32,80,115,40,101,44,114,68,41,125,44,99,65,61,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,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,100,111,99,117,109,101,110,116,44,101,61,72,115,40,41,59,114,101,116,117,114,110,33,33,40,101,38,38,34,34,33,61,61,101,46,116,111,83,116,114,105,110,103,40,41,46,116,114,105,109,40,41,38,38,101,46,99,111,110,116,97,105,110,115,78,111,100,101,38,38,98,115,40,116,41,41,38,38,101,46,99,111,110,116,97,105,110,115,78,111,100,101,40,116,44,33,48,41,125,44,117,65,61,100,99,40,36,69,44,66,114,41,44,108,65,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,66,114,44,101,120,116,101,110,100,115,58,70,69,44,112,114,111,112,115,58,117,65,44,99,111,109,112,117,116,101,100,58,123,116,97,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,116,104,34,125,125,125,41,59,102,117,110,99,116,105,111,110,32,102,65,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,104,65,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,102,65,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,100,65,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,102,65,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,100,65,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,102,117,110,99,116,105,111,110,32,112,65,40,116,41,123,114,101,116,117,114,110,32,98,65,40,116,41,124,124,109,65,40,116,41,124,124,103,65,40,116,41,124,124,118,65,40,41,125,102,117,110,99,116,105,111,110,32,118,65,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,34,41,125,102,117,110,99,116,105,111,110,32,103,65,40,116,44,101,41,123,105,102,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,121,65,40,116,44,101,41,59,118,97,114,32,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,41,46,115,108,105,99,101,40,56,44,45,49,41,59,114,101,116,117,114,110,34,79,98,106,101,99,116,34,61,61,61,110,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,116,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,44,34,77,97,112,34,61,61,61,110,124,124,34,83,101,116,34,61,61,61,110,63,65,114,114,97,121,46,102,114,111,109,40,116,41,58,34,65,114,103,117,109,101,110,116,115,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,63,121,65,40,116,44,101,41,58,118,111,105,100,32,48,125,125,102,117,110,99,116,105,111,110,32,109,65,40,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,116,41,125,102,117,110,99,116,105,111,110,32,98,65,40,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,121,65,40,116,41,125,102,117,110,99,116,105,111,110,32,121,65,40,116,44,101,41,123,40,110,117,108,108,61,61,101,124,124,101,62,116,46,108,101,110,103,116,104,41,38,38,40,101,61,116,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,110,60,101,59,110,43,43,41,114,91,110,93,61,116,91,110,93,59,114,101,116,117,114,110,32,114,125,118,97,114,32,119,65,61,123,100,101,116,97,105,108,115,84,100,67,108,97,115,115,58,117,99,40,107,111,41,44,116,98,111,100,121,84,114,65,116,116,114,58,117,99,40,73,111,41,44,116,98,111,100,121,84,114,67,108,97,115,115,58,117,99,40,91,93,46,99,111,110,99,97,116,40,112,65,40,107,111,41,44,91,98,111,93,41,41,125,44,95,65,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,119,65,44,109,101,116,104,111,100,115,58,123,103,101,116,84,100,86,97,108,117,101,115,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,116,104,105,115,46,36,112,97,114,101,110,116,59,105,102,40,110,41,123,118,97,114,32,111,61,117,101,40,116,44,101,44,34,34,41,59,114,101,116,117,114,110,32,95,116,40,110,41,63,110,40,111,44,101,44,116,41,58,79,116,40,110,41,38,38,95,116,40,105,91,110,93,41,63,105,91,110,93,40,111,44,101,44,116,41,58,110,125,114,101,116,117,114,110,32,114,125,44,103,101,116,84,104,86,97,108,117,101,115,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,61,116,104,105,115,46,36,112,97,114,101,110,116,59,105,102,40,110,41,123,118,97,114,32,97,61,117,101,40,116,44,101,44,34,34,41,59,114,101,116,117,114,110,32,95,116,40,110,41,63,110,40,97,44,101,44,116,44,114,41,58,79,116,40,110,41,38,38,95,116,40,111,91,110,93,41,63,111,91,110,93,40,97,44,101,44,116,44,114,41,58,110,125,114,101,116,117,114,110,32,105,125,44,103,101,116,70,111,114,109,97,116,116,101,100,86,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,107,101,121,44,114,61,116,104,105,115,46,103,101,116,70,105,101,108,100,70,111,114,109,97,116,116,101,114,40,110,41,44,105,61,117,101,40,116,44,110,44,110,117,108,108,41,59,114,101,116,117,114,110,32,95,116,40,114,41,38,38,40,105,61,114,40,105,44,110,44,116,41,41,44,119,116,40,105,41,63,34,34,58,105,125,44,116,111,103,103,108,101,68,101,116,97,105,108,115,70,97,99,116,111,114,121,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,38,38,110,46,36,115,101,116,40,101,44,101,68,44,33,101,91,101,68,93,41,125,125,44,114,111,119,72,111,118,101,114,101,100,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,40,116,41,124,124,116,104,105,115,46,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,40,71,105,44,116,41,125,44,114,111,119,85,110,104,111,118,101,114,101,100,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,40,116,41,124,124,116,104,105,115,46,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,40,75,105,44,116,41,125,44,114,101,110,100,101,114,84,98,111,100,121,82,111,119,67,101,108,108,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,116,104,105,115,44,111,61,116,104,105,115,46,105,115,83,116,97,99,107,101,100,44,97,61,116,46,107,101,121,44,115,61,116,46,108,97,98,101,108,44,99,61,116,46,105,115,82,111,119,72,101,97,100,101,114,44,117,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,108,61,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,73,97,41,44,102,61,116,104,105,115,46,103,101,116,70,111,114,109,97,116,116,101,100,86,97,108,117,101,40,110,44,116,41,44,104,61,33,111,38,38,40,116,104,105,115,46,105,115,82,101,115,112,111,110,115,105,118,101,124,124,116,104,105,115,46,115,116,105,99,107,121,72,101,97,100,101,114,41,38,38,116,46,115,116,105,99,107,121,67,111,108,117,109,110,44,100,61,104,63,99,63,108,65,58,70,69,58,99,63,34,116,104,34,58,34,116,100,34,44,112,61,110,91,81,69,93,38,38,110,91,81,69,93,91,97,93,63,110,91,81,69,93,91,97,93,58,116,46,118,97,114,105,97,110,116,124,124,110,117,108,108,44,118,61,123,99,108,97,115,115,58,91,116,46,99,108,97,115,115,63,116,46,99,108,97,115,115,58,34,34,44,116,104,105,115,46,103,101,116,84,100,86,97,108,117,101,115,40,110,44,97,44,116,46,116,100,67,108,97,115,115,44,34,34,41,93,44,112,114,111,112,115,58,123,125,44,97,116,116,114,115,58,104,65,40,123,34,97,114,105,97,45,99,111,108,105,110,100,101,120,34,58,83,116,114,105,110,103,40,101,43,49,41,125,44,99,63,116,104,105,115,46,103,101,116,84,104,86,97,108,117,101,115,40,110,44,97,44,116,46,116,104,65,116,116,114,44,34,114,111,119,34,44,123,125,41,58,116,104,105,115,46,103,101,116,84,100,86,97,108,117,101,115,40,110,44,97,44,116,46,116,100,65,116,116,114,44,123,125,41,41,44,107,101,121,58,34,114,111,119,45,34,46,99,111,110,99,97,116,40,114,44,34,45,99,101,108,108,45,34,41,46,99,111,110,99,97,116,40,101,44,34,45,34,41,46,99,111,110,99,97,116,40,97,41,125,59,104,63,118,46,112,114,111,112,115,61,123,115,116,97,99,107,101,100,72,101,97,100,105,110,103,58,111,63,115,58,110,117,108,108,44,115,116,105,99,107,121,67,111,108,117,109,110,58,33,48,44,118,97,114,105,97,110,116,58,112,125,58,40,118,46,97,116,116,114,115,91,34,100,97,116,97,45,108,97,98,101,108,34,93,61,111,38,38,33,119,116,40,115,41,63,115,115,40,115,41,58,110,117,108,108,44,118,46,97,116,116,114,115,46,114,111,108,101,61,99,63,34,114,111,119,104,101,97,100,101,114,34,58,34,99,101,108,108,34,44,118,46,97,116,116,114,115,46,115,99,111,112,101,61,99,63,34,114,111,119,34,58,110,117,108,108,44,112,38,38,118,46,99,108,97,115,115,46,112,117,115,104,40,34,34,46,99,111,110,99,97,116,40,116,104,105,115,46,100,97,114,107,63,34,98,103,34,58,34,116,97,98,108,101,34,44,34,45,34,41,46,99,111,110,99,97,116,40,112,41,41,41,59,118,97,114,32,103,61,123,105,116,101,109,58,110,44,105,110,100,101,120,58,114,44,102,105,101,108,100,58,116,44,117,110,102,111,114,109,97,116,116,101,100,58,117,101,40,110,44,97,44,34,34,41,44,118,97,108,117,101,58,102,44,116,111,103,103,108,101,68,101,116,97,105,108,115,58,116,104,105,115,46,116,111,103,103,108,101,68,101,116,97,105,108,115,70,97,99,116,111,114,121,40,108,44,110,41,44,100,101,116,97,105,108,115,83,104,111,119,105,110,103,58,66,111,111,108,101,97,110,40,110,91,101,68,93,41,125,59,116,104,105,115,46,115,117,112,112,111,114,116,115,83,101,108,101,99,116,97,98,108,101,82,111,119,115,38,38,40,103,46,114,111,119,83,101,108,101,99,116,101,100,61,116,104,105,115,46,105,115,82,111,119,83,101,108,101,99,116,101,100,40,114,41,44,103,46,115,101,108,101,99,116,82,111,119,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,46,115,101,108,101,99,116,82,111,119,40,114,41,125,44,103,46,117,110,115,101,108,101,99,116,82,111,119,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,46,117,110,115,101,108,101,99,116,82,111,119,40,114,41,125,41,59,118,97,114,32,109,61,116,104,105,115,46,36,95,98,111,100,121,70,105,101,108,100,83,108,111,116,78,97,109,101,67,97,99,104,101,91,97,93,44,98,61,109,63,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,109,44,103,41,58,115,115,40,102,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,116,97,99,107,101,100,38,38,40,98,61,91,117,40,34,100,105,118,34,44,91,98,93,41,93,41,44,117,40,100,44,118,44,91,98,93,41,125,44,114,101,110,100,101,114,84,98,111,100,121,82,111,119,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,44,114,61,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,44,105,61,116,104,105,115,46,115,116,114,105,112,101,100,44,111,61,116,104,105,115,46,112,114,105,109,97,114,121,75,101,121,44,97,61,116,104,105,115,46,99,117,114,114,101,110,116,80,97,103,101,44,115,61,116,104,105,115,46,112,101,114,80,97,103,101,44,99,61,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,44,117,61,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,44,108,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,102,61,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,73,97,41,44,104,61,116,91,101,68,93,38,38,102,44,100,61,116,104,105,115,46,36,108,105,115,116,101,110,101,114,115,91,72,105,93,124,124,116,104,105,115,46,104,97,115,83,101,108,101,99,116,97,98,108,101,82,111,119,67,108,105,99,107,44,112,61,91,93,44,118,61,104,63,116,104,105,115,46,115,97,102,101,73,100,40,34,95,100,101,116,97,105,108,115,95,34,46,99,111,110,99,97,116,40,101,44,34,95,34,41,41,58,110,117,108,108,44,103,61,114,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,114,44,105,41,123,114,101,116,117,114,110,32,110,46,114,101,110,100,101,114,84,98,111,100,121,82,111,119,67,101,108,108,40,114,44,105,44,116,44,101,41,125,41,41,44,109,61,110,117,108,108,59,97,38,38,115,38,38,115,62,48,38,38,40,109,61,83,116,114,105,110,103,40,40,97,45,49,41,42,115,43,101,43,49,41,41,59,118,97,114,32,98,61,115,115,40,117,101,40,116,44,111,41,41,124,124,110,117,108,108,44,121,61,98,124,124,115,115,40,101,41,44,119,61,98,63,116,104,105,115,46,115,97,102,101,73,100,40,34,95,114,111,119,95,34,46,99,111,110,99,97,116,40,98,41,41,58,110,117,108,108,44,95,61,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,82,111,119,67,108,97,115,115,101,115,63,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,82,111,119,67,108,97,115,115,101,115,40,101,41,58,123,125,44,120,61,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,82,111,119,65,116,116,114,115,63,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,82,111,119,65,116,116,114,115,40,101,41,58,123,125,44,79,61,95,116,40,99,41,63,99,40,116,44,34,114,111,119,34,41,58,99,44,83,61,95,116,40,117,41,63,117,40,116,44,34,114,111,119,34,41,58,117,59,105,102,40,112,46,112,117,115,104,40,108,40,84,69,44,123,99,108,97,115,115,58,91,79,44,95,44,104,63,34,98,45,116,97,98,108,101,45,104,97,115,45,100,101,116,97,105,108,115,34,58,34,34,93,44,112,114,111,112,115,58,123,118,97,114,105,97,110,116,58,116,91,116,68,93,124,124,110,117,108,108,125,44,97,116,116,114,115,58,104,65,40,104,65,40,123,105,100,58,119,125,44,83,41,44,123,125,44,123,116,97,98,105,110,100,101,120,58,100,63,34,48,34,58,110,117,108,108,44,34,100,97,116,97,45,112,107,34,58,98,124,124,110,117,108,108,44,34,97,114,105,97,45,100,101,116,97,105,108,115,34,58,118,44,34,97,114,105,97,45,111,119,110,115,34,58,118,44,34,97,114,105,97,45,114,111,119,105,110,100,101,120,34,58,109,125,44,120,41,44,111,110,58,123,109,111,117,115,101,101,110,116,101,114,58,116,104,105,115,46,114,111,119,72,111,118,101,114,101,100,44,109,111,117,115,101,108,101,97,118,101,58,116,104,105,115,46,114,111,119,85,110,104,111,118,101,114,101,100,125,44,107,101,121,58,34,95,95,98,45,116,97,98,108,101,45,114,111,119,45,34,46,99,111,110,99,97,116,40,121,44,34,95,95,34,41,44,114,101,102,58,34,105,116,101,109,45,114,111,119,115,34,44,114,101,102,73,110,70,111,114,58,33,48,125,44,103,41,41,44,104,41,123,118,97,114,32,107,61,123,105,116,101,109,58,116,44,105,110,100,101,120,58,101,44,102,105,101,108,100,115,58,114,44,116,111,103,103,108,101,68,101,116,97,105,108,115,58,116,104,105,115,46,116,111,103,103,108,101,68,101,116,97,105,108,115,70,97,99,116,111,114,121,40,102,44,116,41,125,59,116,104,105,115,46,115,117,112,112,111,114,116,115,83,101,108,101,99,116,97,98,108,101,82,111,119,115,38,38,40,107,46,114,111,119,83,101,108,101,99,116,101,100,61,116,104,105,115,46,105,115,82,111,119,83,101,108,101,99,116,101,100,40,101,41,44,107,46,115,101,108,101,99,116,82,111,119,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,46,115,101,108,101,99,116,82,111,119,40,101,41,125,44,107,46,117,110,115,101,108,101,99,116,82,111,119,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,46,117,110,115,101,108,101,99,116,82,111,119,40,101,41,125,41,59,118,97,114,32,67,61,108,40,70,69,44,123,112,114,111,112,115,58,123,99,111,108,115,112,97,110,58,114,46,108,101,110,103,116,104,125,44,99,108,97,115,115,58,116,104,105,115,46,100,101,116,97,105,108,115,84,100,67,108,97,115,115,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,73,97,44,107,41,93,41,59,105,38,38,112,46,112,117,115,104,40,108,40,34,116,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,45,110,111,110,101,34,44,97,116,116,114,115,58,123,34,97,114,105,97,45,104,105,100,100,101,110,34,58,34,116,114,117,101,34,44,114,111,108,101,58,34,112,114,101,115,101,110,116,97,116,105,111,110,34,125,44,107,101,121,58,34,95,95,98,45,116,97,98,108,101,45,100,101,116,97,105,108,115,45,115,116,114,105,112,101,95,95,34,46,99,111,110,99,97,116,40,121,41,125,41,41,59,118,97,114,32,80,61,95,116,40,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,41,63,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,40,116,44,73,97,41,58,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,44,84,61,95,116,40,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,41,63,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,40,116,44,73,97,41,58,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,59,112,46,112,117,115,104,40,108,40,84,69,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,116,97,98,108,101,45,100,101,116,97,105,108,115,34,44,99,108,97,115,115,58,91,80,93,44,112,114,111,112,115,58,123,118,97,114,105,97,110,116,58,116,91,116,68,93,124,124,110,117,108,108,125,44,97,116,116,114,115,58,104,65,40,104,65,40,123,125,44,84,41,44,123,125,44,123,105,100,58,118,44,116,97,98,105,110,100,101,120,58,34,45,49,34,125,41,44,107,101,121,58,34,95,95,98,45,116,97,98,108,101,45,100,101,116,97,105,108,115,95,95,34,46,99,111,110,99,97,116,40,121,41,125,44,91,67,93,41,41,125,101,108,115,101,32,102,38,38,40,112,46,112,117,115,104,40,108,40,41,41,44,105,38,38,112,46,112,117,115,104,40,108,40,41,41,41,59,114,101,116,117,114,110,32,112,125,125,125,41,59,102,117,110,99,116,105,111,110,32,120,65,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,79,65,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,120,65,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,83,65,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,120,65,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,83,65,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,118,97,114,32,107,65,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,99,101,108,108,40,34,46,99,111,110,99,97,116,40,116,124,124,34,34,44,34,41,34,41,125,44,67,65,61,75,116,40,79,65,40,79,65,40,79,65,40,123,125,44,105,65,41,44,119,65,41,44,123,125,44,123,116,98,111,100,121,67,108,97,115,115,58,117,99,40,107,111,41,125,41,41,44,80,65,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,105,120,105,110,115,58,91,95,65,93,44,112,114,111,112,115,58,67,65,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,98,111,100,121,70,105,101,108,100,83,108,111,116,78,97,109,101,67,97,99,104,101,61,110,117,108,108,125,44,109,101,116,104,111,100,115,58,123,103,101,116,84,98,111,100,121,84,114,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,114,101,102,115,44,101,61,116,46,116,98,111,100,121,63,116,46,116,98,111,100,121,46,36,101,108,124,124,116,46,116,98,111,100,121,58,110,117,108,108,44,110,61,40,116,91,34,105,116,101,109,45,114,111,119,115,34,93,124,124,91,93,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,36,101,108,124,124,116,125,41,41,59,114,101,116,117,114,110,32,101,38,38,101,46,99,104,105,108,100,114,101,110,38,38,101,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,62,48,38,38,110,38,38,110,46,108,101,110,103,116,104,62,48,63,71,97,40,101,46,99,104,105,108,100,114,101,110,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,113,97,40,110,44,116,41,125,41,41,58,91,93,125,44,103,101,116,84,98,111,100,121,84,114,73,110,100,101,120,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,98,115,40,116,41,41,114,101,116,117,114,110,45,49,59,118,97,114,32,101,61,34,84,82,34,61,61,61,116,46,116,97,103,78,97,109,101,63,116,58,84,115,40,34,116,114,34,44,116,44,33,48,41,59,114,101,116,117,114,110,32,101,63,116,104,105,115,46,103,101,116,84,98,111,100,121,84,114,115,40,41,46,105,110,100,101,120,79,102,40,101,41,58,45,49,125,44,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,38,38,116,104,105,115,46,104,97,115,76,105,115,116,101,110,101,114,40,116,41,38,38,101,38,38,101,46,116,97,114,103,101,116,41,123,118,97,114,32,110,61,116,104,105,115,46,103,101,116,84,98,111,100,121,84,114,73,110,100,101,120,40,101,46,116,97,114,103,101,116,41,59,105,102,40,110,62,45,49,41,123,118,97,114,32,114,61,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,91,110,93,59,116,104,105,115,46,36,101,109,105,116,40,116,44,114,44,110,44,101,41,125,125,125,44,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,111,112,73,102,66,117,115,121,38,38,116,104,105,115,46,115,116,111,112,73,102,66,117,115,121,40,116,41,125,44,111,110,84,98,111,100,121,82,111,119,75,101,121,100,111,119,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,116,97,114,103,101,116,44,110,61,116,46,107,101,121,67,111,100,101,59,105,102,40,33,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,40,116,41,38,38,34,84,82,34,61,61,61,101,46,116,97,103,78,97,109,101,38,38,95,115,40,101,41,38,38,48,61,61,61,101,46,116,97,98,73,110,100,101,120,41,105,102,40,113,97,40,91,102,108,44,98,108,93,44,110,41,41,107,99,40,116,41,44,116,104,105,115,46,111,110,84,66,111,100,121,82,111,119,67,108,105,99,107,101,100,40,116,41,59,101,108,115,101,32,105,102,40,113,97,40,91,121,108,44,117,108,44,100,108,44,108,108,93,44,110,41,41,123,118,97,114,32,114,61,116,104,105,115,46,103,101,116,84,98,111,100,121,84,114,73,110,100,101,120,40,101,41,59,105,102,40,114,62,45,49,41,123,107,99,40,116,41,59,118,97,114,32,105,61,116,104,105,115,46,103,101,116,84,98,111,100,121,84,114,115,40,41,44,111,61,116,46,115,104,105,102,116,75,101,121,59,110,61,61,61,100,108,124,124,111,38,38,110,61,61,61,121,108,63,113,115,40,105,91,48,93,41,58,110,61,61,61,108,108,124,124,111,38,38,110,61,61,61,117,108,63,113,115,40,105,91,105,46,108,101,110,103,116,104,45,49,93,41,58,110,61,61,61,121,108,38,38,114,62,48,63,113,115,40,105,91,114,45,49,93,41,58,110,61,61,61,117,108,38,38,114,60,105,46,108,101,110,103,116,104,45,49,38,38,113,115,40,105,91,114,43,49,93,41,125,125,125,44,111,110,84,66,111,100,121,82,111,119,67,108,105,99,107,101,100,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,40,116,41,124,124,115,65,40,116,41,124,124,99,65,40,116,104,105,115,46,36,101,108,41,124,124,116,104,105,115,46,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,40,72,105,44,116,41,125,44,111,110,84,98,111,100,121,82,111,119,77,105,100,100,108,101,77,111,117,115,101,82,111,119,67,108,105,99,107,101,100,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,40,116,41,124,124,50,33,61,61,116,46,119,104,105,99,104,124,124,116,104,105,115,46,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,40,113,105,44,116,41,125,44,111,110,84,98,111,100,121,82,111,119,67,111,110,116,101,120,116,109,101,110,117,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,40,116,41,124,124,116,104,105,115,46,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,40,85,105,44,116,41,125,44,111,110,84,98,111,100,121,82,111,119,68,98,108,67,108,105,99,107,101,100,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,116,98,111,100,121,82,111,119,69,118,116,83,116,111,112,112,101,100,40,116,41,124,124,115,65,40,116,41,124,124,116,104,105,115,46,101,109,105,116,84,98,111,100,121,82,111,119,69,118,101,110,116,40,87,105,44,116,41,125,44,114,101,110,100,101,114,84,98,111,100,121,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,99,111,109,112,117,116,101,100,73,116,101,109,115,44,110,61,116,104,105,115,46,114,101,110,100,101,114,66,117,115,121,44,114,61,116,104,105,115,46,114,101,110,100,101,114,84,111,112,82,111,119,44,105,61,116,104,105,115,46,114,101,110,100,101,114,69,109,112,116,121,44,111,61,116,104,105,115,46,114,101,110,100,101,114,66,111,116,116,111,109,82,111,119,44,97,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,116,104,105,115,46,104,97,115,76,105,115,116,101,110,101,114,40,72,105,41,124,124,116,104,105,115,46,104,97,115,83,101,108,101,99,116,97,98,108,101,82,111,119,67,108,105,99,107,44,99,61,91,93,44,117,61,110,63,110,40,41,58,110,117,108,108,59,105,102,40,117,41,99,46,112,117,115,104,40,117,41,59,101,108,115,101,123,118,97,114,32,108,61,123,125,44,102,61,107,65,40,41,59,102,61,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,102,41,63,102,58,110,117,108,108,44,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,101,46,107,101,121,44,114,61,107,65,40,110,41,44,105,61,107,65,40,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,59,108,91,110,93,61,116,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,114,41,63,114,58,116,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,105,41,63,105,58,102,125,41,41,44,116,104,105,115,46,36,95,98,111,100,121,70,105,101,108,100,83,108,111,116,78,97,109,101,67,97,99,104,101,61,108,44,99,46,112,117,115,104,40,114,63,114,40,41,58,97,40,41,41,44,101,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,99,46,112,117,115,104,40,116,46,114,101,110,100,101,114,84,98,111,100,121,82,111,119,40,101,44,110,41,41,125,41,41,44,99,46,112,117,115,104,40,105,63,105,40,41,58,97,40,41,41,44,99,46,112,117,115,104,40,111,63,111,40,41,58,97,40,41,41,125,118,97,114,32,104,61,123,97,117,120,99,108,105,99,107,58,116,104,105,115,46,111,110,84,98,111,100,121,82,111,119,77,105,100,100,108,101,77,111,117,115,101,82,111,119,67,108,105,99,107,101,100,44,99,111,110,116,101,120,116,109,101,110,117,58,116,104,105,115,46,111,110,84,98,111,100,121,82,111,119,67,111,110,116,101,120,116,109,101,110,117,44,100,98,108,99,108,105,99,107,58,116,104,105,115,46,111,110,84,98,111,100,121,82,111,119,68,98,108,67,108,105,99,107,101,100,125,59,115,38,38,40,104,46,99,108,105,99,107,61,116,104,105,115,46,111,110,84,66,111,100,121,82,111,119,67,108,105,99,107,101,100,44,104,46,107,101,121,100,111,119,110,61,116,104,105,115,46,111,110,84,98,111,100,121,82,111,119,75,101,121,100,111,119,110,41,59,118,97,114,32,100,61,97,40,111,65,44,123,99,108,97,115,115,58,116,104,105,115,46,116,98,111,100,121,67,108,97,115,115,124,124,110,117,108,108,44,112,114,111,112,115,58,102,99,40,105,65,44,116,104,105,115,46,36,112,114,111,112,115,41,44,111,110,58,104,44,114,101,102,58,34,116,98,111,100,121,34,125,44,99,41,59,114,101,116,117,114,110,32,100,125,125,125,41,59,102,117,110,99,116,105,111,110,32,84,65,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,106,65,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,84,65,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,69,65,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,84,65,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,69,65,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,118,97,114,32,68,65,61,100,99,40,123,102,111,111,116,86,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,78,114,41,44,65,65,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,78,114,44,109,105,120,105,110,115,58,91,67,108,44,84,108,44,119,99,93,44,112,114,111,118,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,58,116,104,105,115,125,125,44,105,110,106,101,99,116,58,123,98,118,84,97,98,108,101,58,123,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,125,125,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,68,65,44,99,111,109,112,117,116,101,100,58,123,105,115,84,102,111,111,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,105,115,68,97,114,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,46,100,97,114,107,125,44,105,115,83,116,97,99,107,101,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,98,118,84,97,98,108,101,46,105,115,83,116,97,99,107,101,100,125,44,105,115,82,101,115,112,111,110,115,105,118,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,98,118,84,97,98,108,101,46,105,115,82,101,115,112,111,110,115,105,118,101,125,44,105,115,83,116,105,99,107,121,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,125,44,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,105,115,83,116,97,99,107,101,100,38,38,116,104,105,115,46,98,118,84,97,98,108,101,46,115,116,105,99,107,121,72,101,97,100,101,114,125,44,116,97,98,108,101,86,97,114,105,97,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,98,118,84,97,98,108,101,46,116,97,98,108,101,86,97,114,105,97,110,116,125,44,116,102,111,111,116,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,116,104,105,115,46,102,111,111,116,86,97,114,105,97,110,116,63,34,116,104,101,97,100,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,102,111,111,116,86,97,114,105,97,110,116,41,58,110,117,108,108,93,125,44,116,102,111,111,116,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,65,40,106,65,40,123,125,44,116,104,105,115,46,98,118,65,116,116,114,115,41,44,123,125,44,123,114,111,108,101,58,34,114,111,119,103,114,111,117,112,34,125,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,34,116,102,111,111,116,34,44,123,99,108,97,115,115,58,116,104,105,115,46,116,102,111,111,116,67,108,97,115,115,101,115,44,97,116,116,114,115,58,116,104,105,115,46,116,102,111,111,116,65,116,116,114,115,44,111,110,58,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,125,125,41,44,76,65,61,123,102,111,111,116,67,108,111,110,101,58,117,99,40,103,111,44,33,49,41,44,102,111,111,116,82,111,119,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,102,111,111,116,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,116,102,111,111,116,67,108,97,115,115,58,117,99,40,107,111,41,44,116,102,111,111,116,84,114,67,108,97,115,115,58,117,99,40,107,111,41,125,44,73,65,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,76,65,44,109,101,116,104,111,100,115,58,123,114,101,110,100,101,114,84,70,111,111,116,67,117,115,116,111,109,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,86,111,41,63,116,40,65,65,44,123,99,108,97,115,115,58,116,104,105,115,46,116,102,111,111,116,67,108,97,115,115,124,124,110,117,108,108,44,112,114,111,112,115,58,123,102,111,111,116,86,97,114,105,97,110,116,58,116,104,105,115,46,102,111,111,116,86,97,114,105,97,110,116,124,124,116,104,105,115,46,104,101,97,100,86,97,114,105,97,110,116,124,124,110,117,108,108,125,44,107,101,121,58,34,98,118,45,116,102,111,111,116,45,99,117,115,116,111,109,34,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,86,111,44,123,105,116,101,109,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,73,116,101,109,115,46,115,108,105,99,101,40,41,44,102,105,101,108,100,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,46,115,108,105,99,101,40,41,44,99,111,108,117,109,110,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,46,108,101,110,103,116,104,125,41,41,58,116,40,41,125,44,114,101,110,100,101,114,84,102,111,111,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,102,111,111,116,67,108,111,110,101,63,116,104,105,115,46,114,101,110,100,101,114,84,104,101,97,100,40,33,48,41,58,116,104,105,115,46,114,101,110,100,101,114,84,70,111,111,116,67,117,115,116,111,109,40,41,125,125,125,41,59,102,117,110,99,116,105,111,110,32,77,65,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,36,65,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,77,65,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,70,65,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,77,65,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,70,65,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,118,97,114,32,82,65,61,100,99,40,123,104,101,97,100,86,97,114,105,97,110,116,58,117,99,40,120,111,41,125,44,122,114,41,44,78,65,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,122,114,44,109,105,120,105,110,115,58,91,67,108,44,84,108,44,119,99,93,44,112,114,111,118,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,98,118,84,97,98,108,101,82,111,119,71,114,111,117,112,58,116,104,105,115,125,125,44,105,110,106,101,99,116,58,123,98,118,84,97,98,108,101,58,123,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,125,125,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,82,65,44,99,111,109,112,117,116,101,100,58,123,105,115,84,104,101,97,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,105,115,68,97,114,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,98,118,84,97,98,108,101,46,100,97,114,107,125,44,105,115,83,116,97,99,107,101,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,98,118,84,97,98,108,101,46,105,115,83,116,97,99,107,101,100,125,44,105,115,82,101,115,112,111,110,115,105,118,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,98,118,84,97,98,108,101,46,105,115,82,101,115,112,111,110,115,105,118,101,125,44,105,115,83,116,105,99,107,121,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,105,115,83,116,97,99,107,101,100,38,38,116,104,105,115,46,98,118,84,97,98,108,101,46,115,116,105,99,107,121,72,101,97,100,101,114,125,44,104,97,115,83,116,105,99,107,121,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,105,115,83,116,97,99,107,101,100,38,38,116,104,105,115,46,98,118,84,97,98,108,101,46,115,116,105,99,107,121,72,101,97,100,101,114,125,44,116,97,98,108,101,86,97,114,105,97,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,98,118,84,97,98,108,101,46,116,97,98,108,101,86,97,114,105,97,110,116,125,44,116,104,101,97,100,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,116,104,105,115,46,104,101,97,100,86,97,114,105,97,110,116,63,34,116,104,101,97,100,45,34,46,99,111,110,99,97,116,40,116,104,105,115,46,104,101,97,100,86,97,114,105,97,110,116,41,58,110,117,108,108,93,125,44,116,104,101,97,100,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,65,40,123,114,111,108,101,58,34,114,111,119,103,114,111,117,112,34,125,44,116,104,105,115,46,98,118,65,116,116,114,115,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,34,116,104,101,97,100,34,44,123,99,108,97,115,115,58,116,104,105,115,46,116,104,101,97,100,67,108,97,115,115,101,115,44,97,116,116,114,115,58,116,104,105,115,46,116,104,101,97,100,65,116,116,114,115,44,111,110,58,116,104,105,115,46,98,118,76,105,115,116,101,110,101,114,115,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,125,125,41,59,102,117,110,99,116,105,111,110,32,66,65,40,116,41,123,114,101,116,117,114,110,32,85,65,40,116,41,124,124,72,65,40,116,41,124,124,86,65,40,116,41,124,124,122,65,40,41,125,102,117,110,99,116,105,111,110,32,122,65,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,34,41,125,102,117,110,99,116,105,111,110,32,86,65,40,116,44,101,41,123,105,102,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,87,65,40,116,44,101,41,59,118,97,114,32,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,41,46,115,108,105,99,101,40,56,44,45,49,41,59,114,101,116,117,114,110,34,79,98,106,101,99,116,34,61,61,61,110,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,116,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,44,34,77,97,112,34,61,61,61,110,124,124,34,83,101,116,34,61,61,61,110,63,65,114,114,97,121,46,102,114,111,109,40,116,41,58,34,65,114,103,117,109,101,110,116,115,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,63,87,65,40,116,44,101,41,58,118,111,105,100,32,48,125,125,102,117,110,99,116,105,111,110,32,72,65,40,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,116,41,125,102,117,110,99,116,105,111,110,32,85,65,40,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,87,65,40,116,41,125,102,117,110,99,116,105,111,110,32,87,65,40,116,44,101,41,123,40,110,117,108,108,61,61,101,124,124,101,62,116,46,108,101,110,103,116,104,41,38,38,40,101,61,116,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,110,60,101,59,110,43,43,41,114,91,110,93,61,116,91,110,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,71,65,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,113,65,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,71,65,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,89,65,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,71,65,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,89,65,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,118,97,114,32,75,65,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,104,101,97,100,40,34,46,99,111,110,99,97,116,40,116,124,124,34,34,44,34,41,34,41,125,44,88,65,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,102,111,111,116,40,34,46,99,111,110,99,97,116,40,116,124,124,34,34,44,34,41,34,41,125,44,90,65,61,123,104,101,97,100,82,111,119,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,104,101,97,100,86,97,114,105,97,110,116,58,117,99,40,120,111,41,44,116,104,101,97,100,67,108,97,115,115,58,117,99,40,107,111,41,44,116,104,101,97,100,84,114,67,108,97,115,115,58,117,99,40,107,111,41,125,44,74,65,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,90,65,44,109,101,116,104,111,100,115,58,123,102,105,101,108,100,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,116,46,99,108,97,115,115,63,116,46,99,108,97,115,115,58,34,34,44,116,46,116,104,67,108,97,115,115,63,116,46,116,104,67,108,97,115,115,58,34,34,93,125,44,104,101,97,100,67,108,105,99,107,101,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,104,105,115,46,115,116,111,112,73,102,66,117,115,121,38,38,116,104,105,115,46,115,116,111,112,73,102,66,117,115,121,40,116,41,124,124,115,65,40,116,41,124,124,99,65,40,116,104,105,115,46,36,101,108,41,124,124,40,107,99,40,116,41,44,116,104,105,115,46,36,101,109,105,116,40,67,105,44,101,46,107,101,121,44,101,44,116,44,110,41,41,125,44,114,101,110,100,101,114,84,104,101,97,100,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,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,110,61,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,44,114,61,116,104,105,115,46,105,115,83,111,114,116,97,98,108,101,44,105,61,116,104,105,115,46,105,115,83,101,108,101,99,116,97,98,108,101,44,111,61,116,104,105,115,46,104,101,97,100,86,97,114,105,97,110,116,44,97,61,116,104,105,115,46,102,111,111,116,86,97,114,105,97,110,116,44,115,61,116,104,105,115,46,104,101,97,100,82,111,119,86,97,114,105,97,110,116,44,99,61,116,104,105,115,46,102,111,111,116,82,111,119,86,97,114,105,97,110,116,44,117,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,105,102,40,116,104,105,115,46,105,115,83,116,97,99,107,101,100,65,108,119,97,121,115,124,124,48,61,61,61,110,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,117,40,41,59,118,97,114,32,108,61,114,124,124,116,104,105,115,46,104,97,115,76,105,115,116,101,110,101,114,40,67,105,41,44,102,61,105,63,116,104,105,115,46,115,101,108,101,99,116,65,108,108,82,111,119,115,58,101,112,44,104,61,105,63,116,104,105,115,46,99,108,101,97,114,83,101,108,101,99,116,101,100,58,101,112,44,100,61,102,117,110,99,116,105,111,110,40,110,44,105,41,123,118,97,114,32,111,61,110,46,108,97,98,101,108,44,97,61,110,46,108,97,98,101,108,72,116,109,108,44,115,61,110,46,118,97,114,105,97,110,116,44,99,61,110,46,115,116,105,99,107,121,67,111,108,117,109,110,44,100,61,110,46,107,101,121,44,112,61,110,117,108,108,59,110,46,108,97,98,101,108,46,116,114,105,109,40,41,124,124,110,46,104,101,97,100,101,114,84,105,116,108,101,124,124,40,112,61,114,115,40,110,46,107,101,121,41,41,59,118,97,114,32,118,61,123,125,59,108,38,38,40,118,46,99,108,105,99,107,61,102,117,110,99,116,105,111,110,40,114,41,123,116,46,104,101,97,100,67,108,105,99,107,101,100,40,114,44,110,44,101,41,125,44,118,46,107,101,121,100,111,119,110,61,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,105,61,114,46,107,101,121,67,111,100,101,59,105,33,61,61,102,108,38,38,105,33,61,61,98,108,124,124,116,46,104,101,97,100,67,108,105,99,107,101,100,40,114,44,110,44,101,41,125,41,59,118,97,114,32,103,61,114,63,116,46,115,111,114,116,84,104,101,97,100,84,104,65,116,116,114,115,40,100,44,110,44,101,41,58,123,125,44,109,61,114,63,116,46,115,111,114,116,84,104,101,97,100,84,104,67,108,97,115,115,101,115,40,100,44,110,44,101,41,58,110,117,108,108,44,98,61,114,63,116,46,115,111,114,116,84,104,101,97,100,84,104,76,97,98,101,108,40,100,44,110,44,101,41,58,110,117,108,108,44,121,61,123,99,108,97,115,115,58,91,116,46,102,105,101,108,100,67,108,97,115,115,101,115,40,110,41,44,109,93,44,112,114,111,112,115,58,123,118,97,114,105,97,110,116,58,115,44,115,116,105,99,107,121,67,111,108,117,109,110,58,99,125,44,115,116,121,108,101,58,110,46,116,104,83,116,121,108,101,124,124,123,125,44,97,116,116,114,115,58,113,65,40,113,65,40,123,116,97,98,105,110,100,101,120,58,108,38,38,110,46,115,111,114,116,97,98,108,101,63,34,48,34,58,110,117,108,108,44,97,98,98,114,58,110,46,104,101,97,100,101,114,65,98,98,114,124,124,110,117,108,108,44,116,105,116,108,101,58,110,46,104,101,97,100,101,114,84,105,116,108,101,124,124,110,117,108,108,44,34,97,114,105,97,45,99,111,108,105,110,100,101,120,34,58,105,43,49,44,34,97,114,105,97,45,108,97,98,101,108,34,58,112,125,44,116,46,103,101,116,84,104,86,97,108,117,101,115,40,110,117,108,108,44,100,44,110,46,116,104,65,116,116,114,44,101,63,34,102,111,111,116,34,58,34,104,101,97,100,34,44,123,125,41,41,44,103,41,44,111,110,58,118,44,107,101,121,58,100,125,44,119,61,91,75,65,40,100,41,44,75,65,40,100,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,44,75,65,40,41,93,59,101,38,38,40,119,61,91,88,65,40,100,41,44,88,65,40,100,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,44,88,65,40,41,93,46,99,111,110,99,97,116,40,66,65,40,119,41,41,41,59,118,97,114,32,95,61,123,108,97,98,101,108,58,111,44,99,111,108,117,109,110,58,100,44,102,105,101,108,100,58,110,44,105,115,70,111,111,116,58,101,44,115,101,108,101,99,116,65,108,108,82,111,119,115,58,102,44,99,108,101,97,114,83,101,108,101,99,116,101,100,58,104,125,44,120,61,116,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,119,44,95,41,124,124,117,40,34,100,105,118,34,44,123,100,111,109,80,114,111,112,115,58,67,102,40,97,44,111,41,125,41,44,79,61,98,63,117,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,115,114,45,111,110,108,121,34,125,44,34,32,40,34,46,99,111,110,99,97,116,40,98,44,34,41,34,41,41,58,110,117,108,108,59,114,101,116,117,114,110,32,117,40,108,65,44,121,44,91,120,44,79,93,46,102,105,108,116,101,114,40,115,101,41,41,125,44,112,61,110,46,109,97,112,40,100,41,46,102,105,108,116,101,114,40,115,101,41,44,118,61,91,93,59,105,102,40,101,41,118,46,112,117,115,104,40,117,40,84,69,44,123,99,108,97,115,115,58,116,104,105,115,46,116,102,111,111,116,84,114,67,108,97,115,115,44,112,114,111,112,115,58,123,118,97,114,105,97,110,116,58,119,116,40,99,41,63,115,58,99,125,125,44,112,41,41,59,101,108,115,101,123,118,97,114,32,103,61,123,99,111,108,117,109,110,115,58,110,46,108,101,110,103,116,104,44,102,105,101,108,100,115,58,110,44,115,101,108,101,99,116,65,108,108,82,111,119,115,58,102,44,99,108,101,97,114,83,101,108,101,99,116,101,100,58,104,125,59,118,46,112,117,115,104,40,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,122,97,44,103,41,124,124,117,40,41,41,44,118,46,112,117,115,104,40,117,40,84,69,44,123,99,108,97,115,115,58,116,104,105,115,46,116,104,101,97,100,84,114,67,108,97,115,115,44,112,114,111,112,115,58,123,118,97,114,105,97,110,116,58,115,125,125,44,112,41,41,125,114,101,116,117,114,110,32,117,40,101,63,65,65,58,78,65,44,123,99,108,97,115,115,58,40,101,63,116,104,105,115,46,116,102,111,111,116,67,108,97,115,115,58,116,104,105,115,46,116,104,101,97,100,67,108,97,115,115,41,124,124,110,117,108,108,44,112,114,111,112,115,58,101,63,123,102,111,111,116,86,97,114,105,97,110,116,58,97,124,124,111,124,124,110,117,108,108,125,58,123,104,101,97,100,86,97,114,105,97,110,116,58,111,124,124,110,117,108,108,125,44,107,101,121,58,101,63,34,98,118,45,116,102,111,111,116,34,58,34,98,118,45,116,104,101,97,100,34,125,44,118,41,125,125,125,41,44,81,65,61,123,125,44,116,76,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,101,116,104,111,100,115,58,123,114,101,110,100,101,114,84,111,112,82,111,119,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,70,105,101,108,100,115,44,101,61,116,104,105,115,46,115,116,97,99,107,101,100,44,110,61,116,104,105,115,46,116,98,111,100,121,84,114,67,108,97,115,115,44,114,61,116,104,105,115,46,116,98,111,100,121,84,114,65,116,116,114,44,105,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,85,97,41,38,38,33,48,33,61,61,101,38,38,34,34,33,61,61,101,63,105,40,84,69,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,116,97,98,108,101,45,116,111,112,45,114,111,119,34,44,99,108,97,115,115,58,91,95,116,40,110,41,63,110,40,110,117,108,108,44,34,114,111,119,45,116,111,112,34,41,58,110,93,44,97,116,116,114,115,58,95,116,40,114,41,63,114,40,110,117,108,108,44,34,114,111,119,45,116,111,112,34,41,58,114,44,107,101,121,58,34,98,45,116,111,112,45,114,111,119,34,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,85,97,44,123,99,111,108,117,109,110,115,58,116,46,108,101,110,103,116,104,44,102,105,101,108,100,115,58,116,125,41,93,41,58,105,40,41,125,125,125,41,59,102,117,110,99,116,105,111,110,32,101,76,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,110,76,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,101,76,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,76,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,101,76,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,114,76,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,118,97,114,32,105,76,61,100,99,40,75,116,40,110,76,40,110,76,40,110,76,40,110,76,40,110,76,40,110,76,40,110,76,40,110,76,40,110,76,40,110,76,40,110,76,40,110,76,40,110,76,40,110,76,40,110,76,40,110,76,40,110,76,40,110,76,40,123,125,44,68,104,41,44,106,69,41,44,122,69,41,44,72,69,41,44,87,69,41,44,113,69,41,44,100,68,41,44,107,68,41,44,80,68,41,44,68,68,41,44,70,68,41,44,81,68,41,44,116,69,41,44,111,69,41,44,67,65,41,44,76,65,41,44,90,65,41,44,81,65,41,41,44,76,114,41,44,111,76,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,76,114,44,109,105,120,105,110,115,58,91,67,108,44,74,106,44,65,104,44,119,99,44,67,68,44,97,69,44,101,69,44,74,65,44,73,65,44,80,65,44,101,69,44,112,68,44,116,65,44,84,68,44,85,69,44,71,69,44,82,68,44,89,69,44,116,76,44,69,69,44,86,69,44,65,68,93,44,112,114,111,112,115,58,105,76,125,41,59,102,117,110,99,116,105,111,110,32,97,76,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,115,76,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,97,76,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,99,76,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,97,76,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,99,76,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,118,97,114,32,117,76,44,108,76,61,100,99,40,75,116,40,115,76,40,115,76,40,115,76,40,115,76,40,115,76,40,115,76,40,115,76,40,115,76,40,115,76,40,123,125,44,68,104,41,44,72,69,41,44,87,69,41,44,107,68,41,44,116,69,41,44,111,69,41,44,67,65,41,44,76,65,41,44,90,65,41,41,44,77,114,41,44,102,76,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,77,114,44,109,105,120,105,110,115,58,91,67,108,44,74,106,44,65,104,44,119,99,44,67,68,44,97,69,44,101,69,44,74,65,44,73,65,44,80,65,44,85,69,44,71,69,93,44,112,114,111,112,115,58,108,76,125,41,44,104,76,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,84,97,98,108,101,76,105,116,101,58,102,76,125,125,41,44,100,76,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,84,97,98,108,101,83,105,109,112,108,101,58,102,69,44,66,84,98,111,100,121,58,111,65,44,66,84,104,101,97,100,58,78,65,44,66,84,102,111,111,116,58,65,65,44,66,84,114,58,84,69,44,66,84,100,58,70,69,44,66,84,104,58,108,65,125,125,41,44,112,76,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,84,97,98,108,101,58,111,76,125,44,112,108,117,103,105,110,115,58,123,84,97,98,108,101,76,105,116,101,80,108,117,103,105,110,58,104,76,44,84,97,98,108,101,83,105,109,112,108,101,80,108,117,103,105,110,58,100,76,125,125,41,59,102,117,110,99,116,105,111,110,32,118,76,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,103,76,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,118,76,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,109,76,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,118,76,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,109,76,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,118,97,114,32,98,76,44,121,76,44,119,76,61,109,99,40,34,118,97,108,117,101,34,44,123,116,121,112,101,58,121,111,125,41,44,95,76,61,119,76,46,109,105,120,105,110,44,120,76,61,119,76,46,112,114,111,112,115,44,79,76,61,119,76,46,112,114,111,112,44,83,76,61,119,76,46,101,118,101,110,116,44,107,76,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,116,46,100,105,115,97,98,108,101,100,125,44,67,76,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,81,114,44,105,110,106,101,99,116,58,123,98,118,84,97,98,115,58,123,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,125,125,44,112,114,111,112,115,58,123,99,111,110,116,114,111,108,115,58,117,99,40,120,111,41,44,105,100,58,117,99,40,120,111,41,44,110,111,75,101,121,78,97,118,58,117,99,40,103,111,44,33,49,41,44,112,111,115,73,110,83,101,116,58,117,99,40,121,111,41,44,115,101,116,83,105,122,101,58,117,99,40,121,111,41,44,116,97,98,58,117,99,40,41,44,116,97,98,73,110,100,101,120,58,117,99,40,121,111,41,125,44,109,101,116,104,111,100,115,58,123,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,41,123,113,115,40,116,104,105,115,46,36,114,101,102,115,46,108,105,110,107,41,125,44,104,97,110,100,108,101,69,118,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,104,105,115,46,116,97,98,46,100,105,115,97,98,108,101,100,41,123,118,97,114,32,101,61,116,46,116,121,112,101,44,110,61,116,46,107,101,121,67,111,100,101,44,114,61,116,46,115,104,105,102,116,75,101,121,59,34,99,108,105,99,107,34,61,61,61,101,124,124,34,107,101,121,100,111,119,110,34,61,61,61,101,38,38,110,61,61,61,98,108,63,40,107,99,40,116,41,44,116,104,105,115,46,36,101,109,105,116,40,102,105,44,116,41,41,58,34,107,101,121,100,111,119,110,34,33,61,61,101,124,124,116,104,105,115,46,110,111,75,101,121,78,97,118,124,124,40,45,49,33,61,61,91,121,108,44,112,108,44,100,108,93,46,105,110,100,101,120,79,102,40,110,41,63,40,107,99,40,116,41,44,114,124,124,110,61,61,61,100,108,63,116,104,105,115,46,36,101,109,105,116,40,79,105,44,116,41,58,116,104,105,115,46,36,101,109,105,116,40,78,105,44,116,41,41,58,45,49,33,61,61,91,117,108,44,109,108,44,108,108,93,46,105,110,100,101,120,79,102,40,110,41,38,38,40,107,99,40,116,41,44,114,124,124,110,61,61,61,108,108,63,116,104,105,115,46,36,101,109,105,116,40,68,105,44,116,41,58,116,104,105,115,46,36,101,109,105,116,40,73,105,44,116,41,41,41,125,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,105,100,44,110,61,116,104,105,115,46,116,97,98,73,110,100,101,120,44,114,61,116,104,105,115,46,115,101,116,83,105,122,101,44,105,61,116,104,105,115,46,112,111,115,73,110,83,101,116,44,111,61,116,104,105,115,46,99,111,110,116,114,111,108,115,44,97,61,116,104,105,115,46,104,97,110,100,108,101,69,118,116,44,115,61,116,104,105,115,46,116,97,98,44,99,61,115,46,116,105,116,108,101,44,117,61,115,46,108,111,99,97,108,65,99,116,105,118,101,44,108,61,115,46,100,105,115,97,98,108,101,100,44,102,61,115,46,116,105,116,108,101,73,116,101,109,67,108,97,115,115,44,104,61,115,46,116,105,116,108,101,76,105,110,107,67,108,97,115,115,44,100,61,115,46,116,105,116,108,101,76,105,110,107,65,116,116,114,105,98,117,116,101,115,44,112,61,116,40,86,108,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,110,97,118,45,108,105,110,107,34,44,99,108,97,115,115,58,91,123,97,99,116,105,118,101,58,117,38,38,33,108,44,100,105,115,97,98,108,101,100,58,108,125,44,104,44,117,63,116,104,105,115,46,98,118,84,97,98,115,46,97,99,116,105,118,101,78,97,118,73,116,101,109,67,108,97,115,115,58,110,117,108,108,93,44,112,114,111,112,115,58,123,100,105,115,97,98,108,101,100,58,108,125,44,97,116,116,114,115,58,103,76,40,103,76,40,123,125,44,100,41,44,123,125,44,123,105,100,58,101,44,114,111,108,101,58,34,116,97,98,34,44,116,97,98,105,110,100,101,120,58,110,44,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,58,117,38,38,33,108,63,34,116,114,117,101,34,58,34,102,97,108,115,101,34,44,34,97,114,105,97,45,115,101,116,115,105,122,101,34,58,114,44,34,97,114,105,97,45,112,111,115,105,110,115,101,116,34,58,105,44,34,97,114,105,97,45,99,111,110,116,114,111,108,115,34,58,111,125,41,44,111,110,58,123,99,108,105,99,107,58,97,44,107,101,121,100,111,119,110,58,97,125,44,114,101,102,58,34,108,105,110,107,34,125,44,91,116,104,105,115,46,116,97,98,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,86,97,41,124,124,99,93,41,59,114,101,116,117,114,110,32,116,40,34,108,105,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,110,97,118,45,105,116,101,109,34,44,99,108,97,115,115,58,91,102,93,44,97,116,116,114,115,58,123,114,111,108,101,58,34,112,114,101,115,101,110,116,97,116,105,111,110,34,125,125,44,91,112,93,41,125,125,41,44,80,76,61,113,116,40,109,67,44,91,34,116,97,98,115,34,44,34,105,115,78,97,118,66,97,114,34,44,34,99,97,114,100,72,101,97,100,101,114,34,93,41,44,84,76,61,100,99,40,75,116,40,103,76,40,103,76,40,103,76,40,103,76,40,123,125,44,68,104,41,44,120,76,41,44,80,76,41,44,123,125,44,123,97,99,116,105,118,101,78,97,118,73,116,101,109,67,108,97,115,115,58,117,99,40,107,111,41,44,97,99,116,105,118,101,84,97,98,67,108,97,115,115,58,117,99,40,107,111,41,44,99,97,114,100,58,117,99,40,103,111,44,33,49,41,44,99,111,110,116,101,110,116,67,108,97,115,115,58,117,99,40,107,111,41,44,101,110,100,58,117,99,40,103,111,44,33,49,41,44,108,97,122,121,58,117,99,40,103,111,44,33,49,41,44,110,97,118,67,108,97,115,115,58,117,99,40,107,111,41,44,110,97,118,87,114,97,112,112,101,114,67,108,97,115,115,58,117,99,40,107,111,41,44,110,111,70,97,100,101,58,117,99,40,103,111,44,33,49,41,44,110,111,75,101,121,78,97,118,58,117,99,40,103,111,44,33,49,41,44,110,111,78,97,118,83,116,121,108,101,58,117,99,40,103,111,44,33,49,41,44,116,97,103,58,117,99,40,120,111,44,34,100,105,118,34,41,125,41,41,44,70,114,41,44,106,76,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,70,114,44,109,105,120,105,110,115,58,91,65,104,44,95,76,44,119,99,93,44,112,114,111,118,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,98,118,84,97,98,115,58,116,104,105,115,125,125,44,112,114,111,112,115,58,84,76,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,99,117,114,114,101,110,116,84,97,98,58,74,97,40,116,104,105,115,91,79,76,93,44,45,49,41,44,116,97,98,115,58,91,93,44,114,101,103,105,115,116,101,114,101,100,84,97,98,115,58,91,93,125,125,44,99,111,109,112,117,116,101,100,58,123,102,97,100,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,110,111,70,97,100,101,125,44,108,111,99,97,108,78,97,118,67,108,97,115,115,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,99,97,114,100,38,38,116,104,105,115,46,118,101,114,116,105,99,97,108,38,38,116,46,112,117,115,104,40,34,99,97,114,100,45,104,101,97,100,101,114,34,44,34,104,45,49,48,48,34,44,34,98,111,114,100,101,114,45,98,111,116,116,111,109,45,48,34,44,34,114,111,117,110,100,101,100,45,48,34,41,44,91,93,46,99,111,110,99,97,116,40,116,44,91,116,104,105,115,46,110,97,118,67,108,97,115,115,93,41,125,125,44,119,97,116,99,104,58,40,117,76,61,123,125,44,109,76,40,117,76,44,79,76,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,33,61,61,101,41,123,116,61,74,97,40,116,44,45,49,41,44,101,61,74,97,40,101,44,48,41,59,118,97,114,32,110,61,116,104,105,115,46,116,97,98,115,91,116,93,59,110,38,38,33,110,46,100,105,115,97,98,108,101,100,63,116,104,105,115,46,97,99,116,105,118,97,116,101,84,97,98,40,110,41,58,116,60,101,63,116,104,105,115,46,112,114,101,118,105,111,117,115,84,97,98,40,41,58,116,104,105,115,46,110,101,120,116,84,97,98,40,41,125,125,41,41,44,109,76,40,117,76,44,34,99,117,114,114,101,110,116,84,97,98,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,45,49,59,116,104,105,115,46,116,97,98,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,33,61,61,116,124,124,110,46,100,105,115,97,98,108,101,100,63,110,46,108,111,99,97,108,65,99,116,105,118,101,61,33,49,58,40,110,46,108,111,99,97,108,65,99,116,105,118,101,61,33,48,44,101,61,114,41,125,41,41,44,116,104,105,115,46,36,101,109,105,116,40,83,76,44,101,41,125,41,41,44,109,76,40,117,76,44,34,116,97,98,115,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,95,108,40,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,70,101,93,125,41,41,44,101,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,70,101,93,125,41,41,41,124,124,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,110,46,36,101,109,105,116,40,108,105,44,116,46,115,108,105,99,101,40,41,44,101,46,115,108,105,99,101,40,41,41,125,41,41,125,41,41,44,109,76,40,117,76,44,34,114,101,103,105,115,116,101,114,101,100,84,97,98,115,34,44,40,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,117,112,100,97,116,101,84,97,98,115,40,41,125,41,41,44,117,76,41,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,61,110,117,108,108,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,40,33,48,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,40,33,49,41,44,116,104,105,115,46,116,97,98,115,61,91,93,125,44,109,101,116,104,111,100,115,58,123,114,101,103,105,115,116,101,114,84,97,98,58,102,117,110,99,116,105,111,110,40,116,41,123,113,97,40,116,104,105,115,46,114,101,103,105,115,116,101,114,101,100,84,97,98,115,44,116,41,124,124,116,104,105,115,46,114,101,103,105,115,116,101,114,101,100,84,97,98,115,46,112,117,115,104,40,116,41,125,44,117,110,114,101,103,105,115,116,101,114,84,97,98,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,114,101,103,105,115,116,101,114,101,100,84,97,98,115,61,116,104,105,115,46,114,101,103,105,115,116,101,114,101,100,84,97,98,115,46,115,108,105,99,101,40,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,33,61,61,116,125,41,41,125,44,115,101,116,79,98,115,101,114,118,101,114,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,33,40,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,41,124,124,97,114,103,117,109,101,110,116,115,91,48,93,59,105,102,40,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,38,38,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,46,100,105,115,99,111,110,110,101,99,116,40,41,44,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,61,110,117,108,108,44,101,41,123,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,116,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,117,112,100,97,116,101,84,97,98,115,40,41,125,41,41,125,41,41,125,59,116,104,105,115,46,36,95,111,98,115,101,114,118,101,114,61,97,112,40,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,101,110,116,44,110,44,123,99,104,105,108,100,76,105,115,116,58,33,48,44,115,117,98,116,114,101,101,58,33,49,44,97,116,116,114,105,98,117,116,101,115,58,33,48,44,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,58,91,34,105,100,34,93,125,41,125,125,44,103,101,116,84,97,98,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,114,101,103,105,115,116,101,114,101,100,84,97,98,115,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,48,61,61,61,116,46,36,99,104,105,108,100,114,101,110,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,95,105,115,84,97,98,125,41,41,46,108,101,110,103,116,104,125,41,41,44,101,61,91,93,59,105,102,40,117,38,38,116,46,108,101,110,103,116,104,62,48,41,123,118,97,114,32,110,61,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,35,34,46,99,111,110,99,97,116,40,116,46,115,97,102,101,73,100,40,41,41,125,41,41,46,106,111,105,110,40,34,44,32,34,41,59,101,61,107,115,40,110,44,116,104,105,115,46,36,101,108,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,105,100,125,41,41,46,102,105,108,116,101,114,40,115,101,41,125,114,101,116,117,114,110,32,78,68,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,101,46,105,110,100,101,120,79,102,40,116,46,115,97,102,101,73,100,40,41,41,45,101,46,105,110,100,101,120,79,102,40,110,46,115,97,102,101,73,100,40,41,41,125,41,41,125,44,117,112,100,97,116,101,84,97,98,115,58,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,97,98,115,40,41,44,101,61,116,46,105,110,100,101,120,79,102,40,116,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,46,102,105,110,100,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,108,111,99,97,108,65,99,116,105,118,101,38,38,33,116,46,100,105,115,97,98,108,101,100,125,41,41,41,59,105,102,40,101,60,48,41,123,118,97,114,32,110,61,116,104,105,115,46,99,117,114,114,101,110,116,84,97,98,59,110,62,61,116,46,108,101,110,103,116,104,63,101,61,116,46,105,110,100,101,120,79,102,40,116,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,46,102,105,110,100,40,107,76,41,41,58,116,91,110,93,38,38,33,116,91,110,93,46,100,105,115,97,98,108,101,100,38,38,40,101,61,110,41,125,101,60,48,38,38,40,101,61,116,46,105,110,100,101,120,79,102,40,116,46,102,105,110,100,40,107,76,41,41,41,44,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,108,111,99,97,108,65,99,116,105,118,101,61,110,61,61,61,101,125,41,41,44,116,104,105,115,46,116,97,98,115,61,116,44,116,104,105,115,46,99,117,114,114,101,110,116,84,97,98,61,101,125,44,103,101,116,66,117,116,116,111,110,70,111,114,84,97,98,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,104,105,115,46,36,114,101,102,115,46,98,117,116,116,111,110,115,124,124,91,93,41,46,102,105,110,100,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,116,97,98,61,61,61,116,125,41,41,125,44,117,112,100,97,116,101,66,117,116,116,111,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,103,101,116,66,117,116,116,111,110,70,111,114,84,97,98,40,116,41,59,101,38,38,101,46,36,102,111,114,99,101,85,112,100,97,116,101,38,38,101,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,125,44,97,99,116,105,118,97,116,101,84,97,98,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,99,117,114,114,101,110,116,84,97,98,44,110,61,116,104,105,115,46,116,97,98,115,44,114,61,33,49,59,105,102,40,116,41,123,118,97,114,32,105,61,110,46,105,110,100,101,120,79,102,40,116,41,59,105,102,40,105,33,61,61,101,38,38,105,62,45,49,38,38,33,116,46,100,105,115,97,98,108,101,100,41,123,118,97,114,32,111,61,110,101,119,32,118,109,40,97,105,44,123,99,97,110,99,101,108,97,98,108,101,58,33,48,44,118,117,101,84,97,114,103,101,116,58,116,104,105,115,44,99,111,109,112,111,110,101,110,116,73,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,125,41,59,116,104,105,115,46,36,101,109,105,116,40,111,46,116,121,112,101,44,105,44,101,44,111,41,44,111,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,40,116,104,105,115,46,99,117,114,114,101,110,116,84,97,98,61,105,44,114,61,33,48,41,125,125,114,101,116,117,114,110,32,114,124,124,116,104,105,115,91,79,76,93,61,61,61,101,124,124,116,104,105,115,46,36,101,109,105,116,40,83,76,44,101,41,44,114,125,44,100,101,97,99,116,105,118,97,116,101,84,97,98,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,33,116,38,38,116,104,105,115,46,97,99,116,105,118,97,116,101,84,97,98,40,116,104,105,115,46,116,97,98,115,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,33,61,61,116,125,41,41,46,102,105,110,100,40,107,76,41,41,125,44,102,111,99,117,115,66,117,116,116,111,110,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,113,115,40,101,46,103,101,116,66,117,116,116,111,110,70,111,114,84,97,98,40,116,41,41,125,41,41,125,44,101,109,105,116,84,97,98,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,69,116,40,101,41,38,38,116,38,38,116,46,36,101,109,105,116,38,38,33,116,46,100,105,115,97,98,108,101,100,38,38,116,46,36,101,109,105,116,40,102,105,44,101,41,125,44,99,108,105,99,107,84,97,98,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,97,99,116,105,118,97,116,101,84,97,98,40,116,41,44,116,104,105,115,46,101,109,105,116,84,97,98,67,108,105,99,107,40,116,44,101,41,125,44,102,105,114,115,116,84,97,98,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,116,97,98,115,46,102,105,110,100,40,107,76,41,59,116,104,105,115,46,97,99,116,105,118,97,116,101,84,97,98,40,101,41,38,38,116,38,38,40,116,104,105,115,46,102,111,99,117,115,66,117,116,116,111,110,40,101,41,44,116,104,105,115,46,101,109,105,116,84,97,98,67,108,105,99,107,40,101,44,116,41,41,125,44,112,114,101,118,105,111,117,115,84,97,98,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,117,40,116,104,105,115,46,99,117,114,114,101,110,116,84,97,98,44,48,41,44,110,61,116,104,105,115,46,116,97,98,115,46,115,108,105,99,101,40,48,44,101,41,46,114,101,118,101,114,115,101,40,41,46,102,105,110,100,40,107,76,41,59,116,104,105,115,46,97,99,116,105,118,97,116,101,84,97,98,40,110,41,38,38,116,38,38,40,116,104,105,115,46,102,111,99,117,115,66,117,116,116,111,110,40,110,41,44,116,104,105,115,46,101,109,105,116,84,97,98,67,108,105,99,107,40,110,44,116,41,41,125,44,110,101,120,116,84,97,98,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,117,40,116,104,105,115,46,99,117,114,114,101,110,116,84,97,98,44,45,49,41,44,110,61,116,104,105,115,46,116,97,98,115,46,115,108,105,99,101,40,101,43,49,41,46,102,105,110,100,40,107,76,41,59,116,104,105,115,46,97,99,116,105,118,97,116,101,84,97,98,40,110,41,38,38,116,38,38,40,116,104,105,115,46,102,111,99,117,115,66,117,116,116,111,110,40,110,41,44,116,104,105,115,46,101,109,105,116,84,97,98,67,108,105,99,107,40,110,44,116,41,41,125,44,108,97,115,116,84,97,98,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,116,97,98,115,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,46,102,105,110,100,40,107,76,41,59,116,104,105,115,46,97,99,116,105,118,97,116,101,84,97,98,40,101,41,38,38,116,38,38,40,116,104,105,115,46,102,111,99,117,115,66,117,116,116,111,110,40,101,41,44,116,104,105,115,46,101,109,105,116,84,97,98,67,108,105,99,107,40,101,44,116,41,41,125,125,44,114,101,110,100,101,114,58,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,97,108,105,103,110,44,114,61,116,104,105,115,46,99,97,114,100,44,105,61,116,104,105,115,46,101,110,100,44,111,61,116,104,105,115,46,102,105,108,108,44,97,61,116,104,105,115,46,102,105,114,115,116,84,97,98,44,115,61,116,104,105,115,46,106,117,115,116,105,102,105,101,100,44,99,61,116,104,105,115,46,108,97,115,116,84,97,98,44,117,61,116,104,105,115,46,110,101,120,116,84,97,98,44,108,61,116,104,105,115,46,110,111,75,101,121,78,97,118,44,102,61,116,104,105,115,46,110,111,78,97,118,83,116,121,108,101,44,104,61,116,104,105,115,46,112,105,108,108,115,44,100,61,116,104,105,115,46,112,114,101,118,105,111,117,115,84,97,98,44,112,61,116,104,105,115,46,115,109,97,108,108,44,118,61,116,104,105,115,46,116,97,98,115,44,103,61,116,104,105,115,46,118,101,114,116,105,99,97,108,44,109,61,118,46,102,105,110,100,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,108,111,99,97,108,65,99,116,105,118,101,38,38,33,116,46,100,105,115,97,98,108,101,100,125,41,41,44,98,61,118,46,102,105,110,100,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,116,46,100,105,115,97,98,108,101,100,125,41,41,44,121,61,118,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,105,44,111,61,110,46,115,97,102,101,73,100,44,115,61,110,117,108,108,59,114,101,116,117,114,110,32,108,124,124,40,115,61,45,49,44,40,110,61,61,61,109,124,124,33,109,38,38,110,61,61,61,98,41,38,38,40,115,61,110,117,108,108,41,41,44,116,40,67,76,44,123,112,114,111,112,115,58,123,99,111,110,116,114,111,108,115,58,111,63,111,40,41,58,110,117,108,108,44,105,100,58,110,46,99,111,110,116,114,111,108,108,101,100,66,121,124,124,40,111,63,111,40,34,95,66,86,95,116,97,98,95,98,117,116,116,111,110,95,34,41,58,110,117,108,108,41,44,110,111,75,101,121,78,97,118,58,108,44,112,111,115,73,110,83,101,116,58,114,43,49,44,115,101,116,83,105,122,101,58,118,46,108,101,110,103,116,104,44,116,97,98,58,110,44,116,97,98,73,110,100,101,120,58,115,125,44,111,110,58,40,105,61,123,125,44,109,76,40,105,44,102,105,44,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,99,108,105,99,107,84,97,98,40,110,44,116,41,125,41,41,44,109,76,40,105,44,79,105,44,97,41,44,109,76,40,105,44,78,105,44,100,41,44,109,76,40,105,44,73,105,44,117,41,44,109,76,40,105,44,68,105,44,99,41,44,105,41,44,107,101,121,58,110,91,70,101,93,124,124,114,44,114,101,102,58,34,98,117,116,116,111,110,115,34,44,114,101,102,73,110,70,111,114,58,33,48,125,41,125,41,41,44,119,61,116,40,98,67,44,123,99,108,97,115,115,58,116,104,105,115,46,108,111,99,97,108,78,97,118,67,108,97,115,115,44,97,116,116,114,115,58,123,114,111,108,101,58,34,116,97,98,108,105,115,116,34,44,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,34,95,66,86,95,116,97,98,95,99,111,110,116,114,111,108,115,95,34,41,125,44,112,114,111,112,115,58,123,102,105,108,108,58,111,44,106,117,115,116,105,102,105,101,100,58,115,44,97,108,105,103,110,58,110,44,116,97,98,115,58,33,102,38,38,33,104,44,112,105,108,108,115,58,33,102,38,38,104,44,118,101,114,116,105,99,97,108,58,103,44,115,109,97,108,108,58,112,44,99,97,114,100,72,101,97,100,101,114,58,114,38,38,33,103,125,44,114,101,102,58,34,110,97,118,34,125,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,78,97,41,124,124,116,40,41,44,121,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,82,97,41,124,124,116,40,41,93,41,59,119,61,116,40,34,100,105,118,34,44,123,99,108,97,115,115,58,91,123,34,99,97,114,100,45,104,101,97,100,101,114,34,58,114,38,38,33,103,38,38,33,105,44,34,99,97,114,100,45,102,111,111,116,101,114,34,58,114,38,38,33,103,38,38,105,44,34,99,111,108,45,97,117,116,111,34,58,103,125,44,116,104,105,115,46,110,97,118,87,114,97,112,112,101,114,67,108,97,115,115,93,44,107,101,121,58,34,98,118,45,116,97,98,115,45,110,97,118,34,125,44,91,119,93,41,59,118,97,114,32,95,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,124,124,91,93,44,120,61,116,40,41,59,48,61,61,61,95,46,108,101,110,103,116,104,38,38,40,120,61,116,40,34,100,105,118,34,44,123,99,108,97,115,115,58,91,34,116,97,98,45,112,97,110,101,34,44,34,97,99,116,105,118,101,34,44,123,34,99,97,114,100,45,98,111,100,121,34,58,114,125,93,44,107,101,121,58,34,98,118,45,101,109,112,116,121,45,116,97,98,34,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,75,111,41,41,41,59,118,97,114,32,79,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,116,97,98,45,99,111,110,116,101,110,116,34,44,99,108,97,115,115,58,91,123,99,111,108,58,103,125,44,116,104,105,115,46,99,111,110,116,101,110,116,67,108,97,115,115,93,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,34,95,66,86,95,116,97,98,95,99,111,110,116,97,105,110,101,114,95,34,41,125,44,107,101,121,58,34,98,118,45,99,111,110,116,101,110,116,34,44,114,101,102,58,34,99,111,110,116,101,110,116,34,125,44,91,95,44,120,93,41,59,114,101,116,117,114,110,32,116,40,116,104,105,115,46,116,97,103,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,116,97,98,115,34,44,99,108,97,115,115,58,123,114,111,119,58,103,44,34,110,111,45,103,117,116,116,101,114,115,34,58,103,38,38,114,125,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,125,125,44,91,105,63,79,58,116,40,41,44,119,44,105,63,116,40,41,58,79,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,69,76,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,68,76,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,69,76,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,65,76,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,69,76,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,65,76,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,118,97,114,32,76,76,44,73,76,61,34,97,99,116,105,118,101,34,44,77,76,61,99,111,43,73,76,44,36,76,61,100,99,40,75,116,40,68,76,40,68,76,40,123,125,44,68,104,41,44,123,125,44,40,98,76,61,123,125,44,65,76,40,98,76,44,73,76,44,117,99,40,103,111,44,33,49,41,41,44,65,76,40,98,76,44,34,98,117,116,116,111,110,73,100,34,44,117,99,40,120,111,41,41,44,65,76,40,98,76,44,34,100,105,115,97,98,108,101,100,34,44,117,99,40,103,111,44,33,49,41,41,44,65,76,40,98,76,44,34,108,97,122,121,34,44,117,99,40,103,111,44,33,49,41,41,44,65,76,40,98,76,44,34,110,111,66,111,100,121,34,44,117,99,40,103,111,44,33,49,41,41,44,65,76,40,98,76,44,34,116,97,103,34,44,117,99,40,120,111,44,34,100,105,118,34,41,41,44,65,76,40,98,76,44,34,116,105,116,108,101,34,44,117,99,40,120,111,41,41,44,65,76,40,98,76,44,34,116,105,116,108,101,73,116,101,109,67,108,97,115,115,34,44,117,99,40,107,111,41,41,44,65,76,40,98,76,44,34,116,105,116,108,101,76,105,110,107,65,116,116,114,105,98,117,116,101,115,34,44,117,99,40,119,111,41,41,44,65,76,40,98,76,44,34,116,105,116,108,101,76,105,110,107,67,108,97,115,115,34,44,117,99,40,107,111,41,41,44,98,76,41,41,41,44,65,114,41,44,70,76,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,65,114,44,109,105,120,105,110,115,58,91,65,104,44,119,99,93,44,105,110,106,101,99,116,58,123,98,118,84,97,98,115,58,123,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,125,125,44,112,114,111,112,115,58,36,76,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,108,111,99,97,108,65,99,116,105,118,101,58,116,104,105,115,91,73,76,93,38,38,33,116,104,105,115,46,100,105,115,97,98,108,101,100,125,125,44,99,111,109,112,117,116,101,100,58,123,95,105,115,84,97,98,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,116,97,98,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,108,111,99,97,108,65,99,116,105,118,101,44,101,61,116,104,105,115,46,100,105,115,97,98,108,101,100,59,114,101,116,117,114,110,91,123,97,99,116,105,118,101,58,116,44,100,105,115,97,98,108,101,100,58,101,44,34,99,97,114,100,45,98,111,100,121,34,58,116,104,105,115,46,98,118,84,97,98,115,46,99,97,114,100,38,38,33,116,104,105,115,46,110,111,66,111,100,121,125,44,116,63,116,104,105,115,46,98,118,84,97,98,115,46,97,99,116,105,118,101,84,97,98,67,108,97,115,115,58,110,117,108,108,93,125,44,99,111,110,116,114,111,108,108,101,100,66,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,98,117,116,116,111,110,73,100,124,124,116,104,105,115,46,115,97,102,101,73,100,40,34,95,95,66,86,95,116,97,98,95,98,117,116,116,111,110,95,95,34,41,125,44,99,111,109,112,117,116,101,100,78,111,70,97,100,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,98,118,84,97,98,115,46,102,97,100,101,125,44,99,111,109,112,117,116,101,100,76,97,122,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,98,118,84,97,98,115,46,108,97,122,121,124,124,116,104,105,115,46,108,97,122,121,125,125,44,119,97,116,99,104,58,40,121,76,61,123,125,44,65,76,40,121,76,44,73,76,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,33,61,61,101,38,38,40,116,63,116,104,105,115,46,97,99,116,105,118,97,116,101,40,41,58,116,104,105,115,46,100,101,97,99,116,105,118,97,116,101,40,41,124,124,116,104,105,115,46,36,101,109,105,116,40,77,76,44,116,104,105,115,46,108,111,99,97,108,65,99,116,105,118,101,41,41,125,41,41,44,65,76,40,121,76,44,34,100,105,115,97,98,108,101,100,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,33,61,61,101,41,123,118,97,114,32,110,61,116,104,105,115,46,98,118,84,97,98,115,46,102,105,114,115,116,84,97,98,59,116,38,38,116,104,105,115,46,108,111,99,97,108,65,99,116,105,118,101,38,38,110,38,38,40,116,104,105,115,46,108,111,99,97,108,65,99,116,105,118,101,61,33,49,44,110,40,41,41,125,125,41,41,44,65,76,40,121,76,44,34,108,111,99,97,108,65,99,116,105,118,101,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,101,109,105,116,40,77,76,44,116,41,125,41,41,44,121,76,41,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,103,105,115,116,101,114,84,97,98,40,41,125,44,117,112,100,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,98,118,84,97,98,115,46,117,112,100,97,116,101,66,117,116,116,111,110,59,116,38,38,116,104,105,115,46,104,97,115,78,111,114,109,97,108,105,122,101,100,83,108,111,116,40,86,97,41,38,38,116,40,116,104,105,115,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,117,110,114,101,103,105,115,116,101,114,84,97,98,40,41,125,44,109,101,116,104,111,100,115,58,123,114,101,103,105,115,116,101,114,84,97,98,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,98,118,84,97,98,115,46,114,101,103,105,115,116,101,114,84,97,98,59,116,38,38,116,40,116,104,105,115,41,125,44,117,110,114,101,103,105,115,116,101,114,84,97,98,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,98,118,84,97,98,115,46,117,110,114,101,103,105,115,116,101,114,84,97,98,59,116,38,38,116,40,116,104,105,115,41,125,44,97,99,116,105,118,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,98,118,84,97,98,115,46,97,99,116,105,118,97,116,101,84,97,98,59,114,101,116,117,114,110,33,40,33,116,124,124,116,104,105,115,46,100,105,115,97,98,108,101,100,41,38,38,116,40,116,104,105,115,41,125,44,100,101,97,99,116,105,118,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,98,118,84,97,98,115,46,100,101,97,99,116,105,118,97,116,101,84,97,98,59,114,101,116,117,114,110,33,40,33,116,124,124,33,116,104,105,115,46,108,111,99,97,108,65,99,116,105,118,101,41,38,38,116,40,116,104,105,115,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,108,111,99,97,108,65,99,116,105,118,101,44,110,61,116,40,116,104,105,115,46,116,97,103,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,116,97,98,45,112,97,110,101,34,44,99,108,97,115,115,58,116,104,105,115,46,116,97,98,67,108,97,115,115,101,115,44,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,115,104,111,119,34,44,118,97,108,117,101,58,101,125,93,44,97,116,116,114,115,58,123,114,111,108,101,58,34,116,97,98,112,97,110,101,108,34,44,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,34,97,114,105,97,45,104,105,100,100,101,110,34,58,101,63,34,102,97,108,115,101,34,58,34,116,114,117,101,34,44,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,58,116,104,105,115,46,99,111,110,116,114,111,108,108,101,100,66,121,124,124,110,117,108,108,125,44,114,101,102,58,34,112,97,110,101,108,34,125,44,91,101,124,124,33,116,104,105,115,46,99,111,109,112,117,116,101,100,76,97,122,121,63,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,58,116,40,41,93,41,59,114,101,116,117,114,110,32,116,40,78,99,44,123,112,114,111,112,115,58,123,109,111,100,101,58,34,111,117,116,45,105,110,34,44,110,111,70,97,100,101,58,116,104,105,115,46,99,111,109,112,117,116,101,100,78,111,70,97,100,101,125,125,44,91,110,93,41,125,125,41,44,82,76,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,84,97,98,115,58,106,76,44,66,84,97,98,58,70,76,125,125,41,44,78,76,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,84,105,109,101,58,83,79,125,125,41,44,66,76,61,110,40,50,52,51,51,41,44,122,76,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,109,105,120,105,110,115,58,91,119,99,93,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,110,97,109,101,58,34,98,45,116,111,97,115,116,101,114,34,125,125,44,109,101,116,104,111,100,115,58,123,111,110,65,102,116,101,114,69,110,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,65,115,40,116,44,34,34,46,99,111,110,99,97,116,40,101,46,110,97,109,101,44,34,45,101,110,116,101,114,45,116,111,34,41,41,125,41,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,34,116,114,97,110,115,105,116,105,111,110,45,103,114,111,117,112,34,44,123,112,114,111,112,115,58,123,116,97,103,58,34,100,105,118,34,44,110,97,109,101,58,116,104,105,115,46,110,97,109,101,125,44,111,110,58,123,97,102,116,101,114,69,110,116,101,114,58,116,104,105,115,46,111,110,65,102,116,101,114,69,110,116,101,114,125,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,41,41,125,125,41,44,86,76,61,100,99,40,123,97,114,105,97,65,116,111,109,105,99,58,117,99,40,120,111,41,44,97,114,105,97,76,105,118,101,58,117,99,40,120,111,41,44,110,97,109,101,58,117,99,40,120,111,44,118,111,105,100,32,48,44,33,48,41,44,114,111,108,101,58,117,99,40,120,111,41,125,44,85,114,41,44,72,76,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,85,114,44,109,105,120,105,110,115,58,91,80,108,93,44,112,114,111,112,115,58,86,76,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,100,111,82,101,110,100,101,114,58,33,49,44,100,101,97,100,58,33,49,44,115,116,97,116,105,99,78,97,109,101,58,116,104,105,115,46,110,97,109,101,125,125,44,98,101,102,111,114,101,77,111,117,110,116,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,110,97,109,101,59,116,104,105,115,46,115,116,97,116,105,99,78,97,109,101,61,101,44,66,76,46,68,102,46,104,97,115,84,97,114,103,101,116,40,101,41,63,40,104,101,40,39,65,32,34,60,112,111,114,116,97,108,45,116,97,114,103,101,116,62,34,32,119,105,116,104,32,110,97,109,101,32,34,39,46,99,111,110,99,97,116,40,101,44,39,34,32,97,108,114,101,97,100,121,32,101,120,105,115,116,115,32,105,110,32,116,104,101,32,100,111,99,117,109,101,110,116,46,39,41,44,85,114,41,44,116,104,105,115,46,100,101,97,100,61,33,48,41,58,40,116,104,105,115,46,100,111,82,101,110,100,101,114,61,33,48,44,116,104,105,115,46,36,111,110,99,101,40,97,111,44,40,102,117,110,99,116,105,111,110,40,41,123,116,46,101,109,105,116,79,110,82,111,111,116,40,80,99,40,85,114,44,118,105,41,44,101,41,125,41,41,41,125,44,100,101,115,116,114,111,121,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,101,108,59,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,114,101,109,111,118,101,67,104,105,108,100,40,116,41,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,40,34,100,105,118,34,44,123,99,108,97,115,115,58,91,34,100,45,110,111,110,101,34,44,123,34,98,45,100,101,97,100,45,116,111,97,115,116,101,114,34,58,116,104,105,115,46,100,101,97,100,125,93,125,41,59,105,102,40,116,104,105,115,46,100,111,82,101,110,100,101,114,41,123,118,97,114,32,110,61,116,40,66,76,46,89,67,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,116,111,97,115,116,101,114,45,115,108,111,116,34,44,112,114,111,112,115,58,123,110,97,109,101,58,116,104,105,115,46,115,116,97,116,105,99,78,97,109,101,44,109,117,108,116,105,112,108,101,58,33,48,44,116,97,103,58,34,100,105,118,34,44,115,108,105,109,58,33,49,44,116,114,97,110,115,105,116,105,111,110,58,122,76,125,125,41,59,101,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,116,111,97,115,116,101,114,34,44,99,108,97,115,115,58,91,116,104,105,115,46,115,116,97,116,105,99,78,97,109,101,93,44,97,116,116,114,115,58,123,105,100,58,116,104,105,115,46,115,116,97,116,105,99,78,97,109,101,44,114,111,108,101,58,116,104,105,115,46,114,111,108,101,124,124,110,117,108,108,44,34,97,114,105,97,45,108,105,118,101,34,58,116,104,105,115,46,97,114,105,97,76,105,118,101,44,34,97,114,105,97,45,97,116,111,109,105,99,34,58,116,104,105,115,46,97,114,105,97,65,116,111,109,105,99,125,125,44,91,110,93,41,125,114,101,116,117,114,110,32,101,125,125,41,59,102,117,110,99,116,105,111,110,32,85,76,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,87,76,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,85,76,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,71,76,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,85,76,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,71,76,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,118,97,114,32,113,76,61,109,99,40,34,118,105,115,105,98,108,101,34,44,123,116,121,112,101,58,103,111,44,100,101,102,97,117,108,116,86,97,108,117,101,58,33,49,44,101,118,101,110,116,58,117,105,125,41,44,89,76,61,113,76,46,109,105,120,105,110,44,75,76,61,113,76,46,112,114,111,112,115,44,88,76,61,113,76,46,112,114,111,112,44,90,76,61,113,76,46,101,118,101,110,116,44,74,76,61,49,101,51,44,81,76,61,71,116,40,122,108,44,91,34,104,114,101,102,34,44,34,116,111,34,93,41,44,116,73,61,100,99,40,75,116,40,87,76,40,87,76,40,87,76,40,87,76,40,123,125,44,68,104,41,44,75,76,41,44,81,76,41,44,123,125,44,123,97,112,112,101,110,100,84,111,97,115,116,58,117,99,40,103,111,44,33,49,41,44,97,117,116,111,72,105,100,101,68,101,108,97,121,58,117,99,40,65,111,44,53,101,51,41,44,98,111,100,121,67,108,97,115,115,58,117,99,40,107,111,41,44,104,101,97,100,101,114,67,108,97,115,115,58,117,99,40,107,111,41,44,105,115,83,116,97,116,117,115,58,117,99,40,103,111,44,33,49,41,44,110,111,65,117,116,111,72,105,100,101,58,117,99,40,103,111,44,33,49,41,44,110,111,67,108,111,115,101,66,117,116,116,111,110,58,117,99,40,103,111,44,33,49,41,44,110,111,70,97,100,101,58,117,99,40,103,111,44,33,49,41,44,110,111,72,111,118,101,114,80,97,117,115,101,58,117,99,40,103,111,44,33,49,41,44,115,111,108,105,100,58,117,99,40,103,111,44,33,49,41,44,115,116,97,116,105,99,58,117,99,40,103,111,44,33,49,41,44,116,105,116,108,101,58,117,99,40,120,111,41,44,116,111,97,115,116,67,108,97,115,115,58,117,99,40,107,111,41,44,116,111,97,115,116,101,114,58,117,99,40,120,111,44,34,98,45,116,111,97,115,116,101,114,45,116,111,112,45,114,105,103,104,116,34,41,44,118,97,114,105,97,110,116,58,117,99,40,120,111,41,125,41,41,44,72,114,41,44,101,73,61,114,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,72,114,44,109,105,120,105,110,115,58,91,67,108,44,65,104,44,89,76,44,80,108,44,119,99,44,71,83,93,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,116,73,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,77,111,117,110,116,101,100,58,33,49,44,100,111,82,101,110,100,101,114,58,33,49,44,108,111,99,97,108,83,104,111,119,58,33,49,44,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,58,33,49,44,105,115,72,105,100,105,110,103,58,33,49,44,111,114,100,101,114,58,48,44,100,105,115,109,105,115,115,83,116,97,114,116,101,100,58,48,44,114,101,115,117,109,101,68,105,115,109,105,115,115,58,48,125,125,44,99,111,109,112,117,116,101,100,58,123,116,111,97,115,116,67,108,97,115,115,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,97,112,112,101,110,100,84,111,97,115,116,44,101,61,116,104,105,115,46,118,97,114,105,97,110,116,59,114,101,116,117,114,110,32,71,76,40,123,34,98,45,116,111,97,115,116,45,115,111,108,105,100,34,58,116,104,105,115,46,115,111,108,105,100,44,34,98,45,116,111,97,115,116,45,97,112,112,101,110,100,34,58,116,44,34,98,45,116,111,97,115,116,45,112,114,101,112,101,110,100,34,58,33,116,125,44,34,98,45,116,111,97,115,116,45,34,46,99,111,110,99,97,116,40,101,41,44,101,41,125,44,115,108,111,116,83,99,111,112,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,105,100,101,59,114,101,116,117,114,110,123,104,105,100,101,58,116,125,125,44,99,111,109,112,117,116,101,100,68,117,114,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,117,40,74,97,40,116,104,105,115,46,97,117,116,111,72,105,100,101,68,101,108,97,121,44,48,41,44,74,76,41,125,44,99,111,109,112,117,116,101,100,84,111,97,115,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,83,116,114,105,110,103,40,116,104,105,115,46,116,111,97,115,116,101,114,41,125,44,116,114,97,110,115,105,116,105,111,110,72,97,110,100,108,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,98,101,102,111,114,101,69,110,116,101,114,58,116,104,105,115,46,111,110,66,101,102,111,114,101,69,110,116,101,114,44,97,102,116,101,114,69,110,116,101,114,58,116,104,105,115,46,111,110,65,102,116,101,114,69,110,116,101,114,44,98,101,102,111,114,101,76,101,97,118,101,58,116,104,105,115,46,111,110,66,101,102,111,114,101,76,101,97,118,101,44,97,102,116,101,114,76,101,97,118,101,58,116,104,105,115,46,111,110,65,102,116,101,114,76,101,97,118,101,125,125,44,99,111,109,112,117,116,101,100,65,116,116,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,87,76,40,87,76,40,123,125,44,116,104,105,115,46,98,118,65,116,116,114,115,41,44,123,125,44,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,44,116,97,98,105,110,100,101,120,58,34,48,34,125,41,125,125,44,119,97,116,99,104,58,40,76,76,61,123,125,44,71,76,40,76,76,44,88,76,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,91,116,63,34,115,104,111,119,34,58,34,104,105,100,101,34,93,40,41,125,41,41,44,71,76,40,76,76,44,34,108,111,99,97,108,83,104,111,119,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,33,61,61,116,104,105,115,91,88,76,93,38,38,116,104,105,115,46,36,101,109,105,116,40,90,76,44,116,41,125,41,41,44,71,76,40,76,76,44,34,116,111,97,115,116,101,114,34,44,40,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,116,104,105,115,46,101,110,115,117,114,101,84,111,97,115,116,101,114,41,125,41,41,44,71,76,40,76,76,44,34,115,116,97,116,105,99,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,104,105,115,46,108,111,99,97,108,83,104,111,119,38,38,116,104,105,115,46,101,110,115,117,114,101,84,111,97,115,116,101,114,40,41,125,41,41,44,76,76,41,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,95,100,105,115,109,105,115,115,84,105,109,101,114,61,110,117,108,108,125,44,109,111,117,110,116,101,100,58,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,105,115,77,111,117,110,116,101,100,61,33,48,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,91,88,76,93,38,38,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,115,104,111,119,40,41,125,41,41,125,41,41,44,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,84,99,40,72,114,44,90,105,41,44,40,102,117,110,99,116,105,111,110,40,101,41,123,101,61,61,61,116,46,115,97,102,101,73,100,40,41,38,38,116,46,115,104,111,119,40,41,125,41,41,44,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,84,99,40,72,114,44,84,105,41,44,40,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,33,61,61,116,46,115,97,102,101,73,100,40,41,124,124,116,46,104,105,100,101,40,41,125,41,41,44,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,80,99,40,85,114,44,118,105,41,44,40,102,117,110,99,116,105,111,110,40,101,41,123,101,61,61,61,116,46,99,111,109,112,117,116,101,100,84,111,97,115,116,101,114,38,38,116,46,104,105,100,101,40,41,125,41,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,101,97,114,68,105,115,109,105,115,115,84,105,109,101,114,40,41,125,44,109,101,116,104,111,100,115,58,123,115,104,111,119,58,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,108,111,99,97,108,83,104,111,119,41,123,116,104,105,115,46,101,110,115,117,114,101,84,111,97,115,116,101,114,40,41,59,118,97,114,32,101,61,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,90,105,41,59,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,101,41,44,116,104,105,115,46,100,105,115,109,105,115,115,83,116,97,114,116,101,100,61,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,61,48,44,116,104,105,115,46,111,114,100,101,114,61,68,97,116,101,46,110,111,119,40,41,42,40,116,104,105,115,46,97,112,112,101,110,100,84,111,97,115,116,63,49,58,45,49,41,44,116,104,105,115,46,105,115,72,105,100,105,110,103,61,33,49,44,116,104,105,115,46,100,111,82,101,110,100,101,114,61,33,48,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,108,111,99,97,108,83,104,111,119,61,33,48,125,41,41,125,41,41,125,125,44,104,105,100,101,58,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,116,104,105,115,46,108,111,99,97,108,83,104,111,119,41,123,118,97,114,32,101,61,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,84,105,41,59,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,101,41,44,116,104,105,115,46,115,101,116,72,111,118,101,114,72,97,110,100,108,101,114,40,33,49,41,44,116,104,105,115,46,100,105,115,109,105,115,115,83,116,97,114,116,101,100,61,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,61,48,44,116,104,105,115,46,99,108,101,97,114,68,105,115,109,105,115,115,84,105,109,101,114,40,41,44,116,104,105,115,46,105,115,72,105,100,105,110,103,61,33,48,44,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,108,111,99,97,108,83,104,111,119,61,33,49,125,41,41,125,125,44,98,117,105,108,100,69,118,101,110,116,58,102,117,110,99,116,105,111,110,40,116,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,49,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,123,125,59,114,101,116,117,114,110,32,110,101,119,32,118,109,40,116,44,87,76,40,87,76,40,123,99,97,110,99,101,108,97,98,108,101,58,33,49,44,116,97,114,103,101,116,58,116,104,105,115,46,36,101,108,124,124,110,117,108,108,44,114,101,108,97,116,101,100,84,97,114,103,101,116,58,110,117,108,108,125,44,101,41,44,123,125,44,123,118,117,101,84,97,114,103,101,116,58,116,104,105,115,44,99,111,109,112,111,110,101,110,116,73,100,58,116,104,105,115,46,115,97,102,101,73,100,40,41,125,41,41,125,44,101,109,105,116,69,118,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,116,121,112,101,59,116,104,105,115,46,101,109,105,116,79,110,82,111,111,116,40,80,99,40,72,114,44,101,41,44,116,41,44,116,104,105,115,46,36,101,109,105,116,40,101,44,116,41,125,44,101,110,115,117,114,101,84,111,97,115,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,115,116,97,116,105,99,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,109,112,117,116,101,100,84,111,97,115,116,101,114,59,105,102,40,33,66,76,46,68,102,46,104,97,115,84,97,114,103,101,116,40,116,41,41,123,118,97,114,32,101,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,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,101,41,59,118,97,114,32,110,61,110,101,119,32,72,76,40,123,112,97,114,101,110,116,58,116,104,105,115,46,36,114,111,111,116,44,112,114,111,112,115,68,97,116,97,58,123,110,97,109,101,58,116,125,125,41,59,110,46,36,109,111,117,110,116,40,101,41,125,125,125,44,115,116,97,114,116,68,105,115,109,105,115,115,84,105,109,101,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,108,101,97,114,68,105,115,109,105,115,115,84,105,109,101,114,40,41,44,116,104,105,115,46,110,111,65,117,116,111,72,105,100,101,124,124,40,116,104,105,115,46,36,95,100,105,115,109,105,115,115,84,105,109,101,114,61,115,101,116,84,105,109,101,111,117,116,40,116,104,105,115,46,104,105,100,101,44,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,124,124,116,104,105,115,46,99,111,109,112,117,116,101,100,68,117,114,97,116,105,111,110,41,44,116,104,105,115,46,100,105,115,109,105,115,115,83,116,97,114,116,101,100,61,68,97,116,101,46,110,111,119,40,41,44,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,61,48,41,125,44,99,108,101,97,114,68,105,115,109,105,115,115,84,105,109,101,114,58,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,36,95,100,105,115,109,105,115,115,84,105,109,101,114,41,44,116,104,105,115,46,36,95,100,105,115,109,105,115,115,84,105,109,101,114,61,110,117,108,108,125,44,115,101,116,72,111,118,101,114,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,36,114,101,102,115,91,34,98,45,116,111,97,115,116,34,93,59,83,99,40,116,44,101,44,34,109,111,117,115,101,101,110,116,101,114,34,44,116,104,105,115,46,111,110,80,97,117,115,101,44,104,111,41,44,83,99,40,116,44,101,44,34,109,111,117,115,101,108,101,97,118,101,34,44,116,104,105,115,46,111,110,85,110,80,97,117,115,101,44,104,111,41,125,44,111,110,80,97,117,115,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,110,111,65,117,116,111,72,105,100,101,38,38,33,116,104,105,115,46,110,111,72,111,118,101,114,80,97,117,115,101,38,38,116,104,105,115,46,36,95,100,105,115,109,105,115,115,84,105,109,101,114,38,38,33,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,41,123,118,97,114,32,116,61,68,97,116,101,46,110,111,119,40,41,45,116,104,105,115,46,100,105,115,109,105,115,115,83,116,97,114,116,101,100,59,116,62,48,38,38,40,116,104,105,115,46,99,108,101,97,114,68,105,115,109,105,115,115,84,105,109,101,114,40,41,44,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,61,116,117,40,116,104,105,115,46,99,111,109,112,117,116,101,100,68,117,114,97,116,105,111,110,45,116,44,74,76,41,41,125,125,44,111,110,85,110,80,97,117,115,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,110,111,65,117,116,111,72,105,100,101,124,124,116,104,105,115,46,110,111,72,111,118,101,114,80,97,117,115,101,124,124,33,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,63,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,61,116,104,105,115,46,100,105,115,109,105,115,115,83,116,97,114,116,101,100,61,48,58,116,104,105,115,46,115,116,97,114,116,68,105,115,109,105,115,115,84,105,109,101,114,40,41,125,44,111,110,76,105,110,107,67,108,105,99,107,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,104,105,100,101,40,41,125,41,41,125,41,41,125,44,111,110,66,101,102,111,114,101,69,110,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,125,44,111,110,65,102,116,101,114,69,110,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,59,118,97,114,32,116,61,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,74,105,41,59,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,116,41,44,116,104,105,115,46,115,116,97,114,116,68,105,115,109,105,115,115,84,105,109,101,114,40,41,44,116,104,105,115,46,115,101,116,72,111,118,101,114,72,97,110,100,108,101,114,40,33,48,41,125,44,111,110,66,101,102,111,114,101,76,101,97,118,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,125,44,111,110,65,102,116,101,114,76,101,97,118,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,111,114,100,101,114,61,48,44,116,104,105,115,46,114,101,115,117,109,101,68,105,115,109,105,115,115,61,116,104,105,115,46,100,105,115,109,105,115,115,83,116,97,114,116,101,100,61,48,59,118,97,114,32,116,61,116,104,105,115,46,98,117,105,108,100,69,118,101,110,116,40,80,105,41,59,116,104,105,115,46,101,109,105,116,69,118,101,110,116,40,116,41,44,116,104,105,115,46,100,111,82,101,110,100,101,114,61,33,49,125,44,109,97,107,101,84,111,97,115,116,58,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,116,105,116,108,101,44,114,61,116,104,105,115,46,115,108,111,116,83,99,111,112,101,44,105,61,120,117,40,116,104,105,115,41,44,111,61,91,93,44,97,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,72,97,44,114,41,59,97,63,111,46,112,117,115,104,40,97,41,58,110,38,38,111,46,112,117,115,104,40,116,40,34,115,116,114,111,110,103,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,114,45,50,34,125,44,110,41,41,44,116,104,105,115,46,110,111,67,108,111,115,101,66,117,116,116,111,110,124,124,111,46,112,117,115,104,40,116,40,68,99,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,108,45,97,117,116,111,32,109,98,45,49,34,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,41,123,101,46,104,105,100,101,40,41,125,125,125,41,41,59,118,97,114,32,115,61,116,40,41,59,111,46,108,101,110,103,116,104,62,48,38,38,40,115,61,116,40,34,104,101,97,100,101,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,116,111,97,115,116,45,104,101,97,100,101,114,34,44,99,108,97,115,115,58,116,104,105,115,46,104,101,97,100,101,114,67,108,97,115,115,125,44,111,41,41,59,118,97,114,32,99,61,116,40,105,63,86,108,58,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,116,111,97,115,116,45,98,111,100,121,34,44,99,108,97,115,115,58,116,104,105,115,46,98,111,100,121,67,108,97,115,115,44,112,114,111,112,115,58,105,63,102,99,40,81,76,44,116,104,105,115,41,58,123,125,44,111,110,58,105,63,123,99,108,105,99,107,58,116,104,105,115,46,111,110,76,105,110,107,67,108,105,99,107,125,58,123,125,125,44,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,40,85,111,44,114,41,41,59,114,101,116,117,114,110,32,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,116,111,97,115,116,34,44,99,108,97,115,115,58,116,104,105,115,46,116,111,97,115,116,67,108,97,115,115,44,97,116,116,114,115,58,116,104,105,115,46,99,111,109,112,117,116,101,100,65,116,116,114,115,44,107,101,121,58,34,116,111,97,115,116,45,34,46,99,111,110,99,97,116,40,116,104,105,115,91,70,101,93,41,44,114,101,102,58,34,116,111,97,115,116,34,125,44,91,115,44,99,93,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,104,105,115,46,100,111,82,101,110,100,101,114,124,124,33,116,104,105,115,46,105,115,77,111,117,110,116,101,100,41,114,101,116,117,114,110,32,116,40,41,59,118,97,114,32,101,61,116,104,105,115,46,111,114,100,101,114,44,110,61,116,104,105,115,46,115,116,97,116,105,99,44,114,61,116,104,105,115,46,105,115,72,105,100,105,110,103,44,105,61,116,104,105,115,46,105,115,83,116,97,116,117,115,44,111,61,34,98,45,116,111,97,115,116,45,34,46,99,111,110,99,97,116,40,116,104,105,115,91,70,101,93,41,44,97,61,116,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,45,116,111,97,115,116,34,44,99,108,97,115,115,58,116,104,105,115,46,116,111,97,115,116,67,108,97,115,115,101,115,44,97,116,116,114,115,58,87,76,40,87,76,40,123,125,44,110,63,123,125,58,116,104,105,115,46,115,99,111,112,101,100,83,116,121,108,101,65,116,116,114,115,41,44,123,125,44,123,105,100,58,116,104,105,115,46,115,97,102,101,73,100,40,34,95,116,111,97,115,116,95,111,117,116,101,114,34,41,44,114,111,108,101,58,114,63,110,117,108,108,58,105,63,34,115,116,97,116,117,115,34,58,34,97,108,101,114,116,34,44,34,97,114,105,97,45,108,105,118,101,34,58,114,63,110,117,108,108,58,105,63,34,112,111,108,105,116,101,34,58,34,97,115,115,101,114,116,105,118,101,34,44,34,97,114,105,97,45,97,116,111,109,105,99,34,58,114,63,110,117,108,108,58,34,116,114,117,101,34,125,41,44,107,101,121,58,111,44,114,101,102,58,34,98,45,116,111,97,115,116,34,125,44,91,116,40,78,99,44,123,112,114,111,112,115,58,123,110,111,70,97,100,101,58,116,104,105,115,46,110,111,70,97,100,101,125,44,111,110,58,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,72,97,110,100,108,101,114,115,125,44,91,116,104,105,115,46,108,111,99,97,108,83,104,111,119,63,116,104,105,115,46,109,97,107,101,84,111,97,115,116,40,116,41,58,116,40,41,93,41,93,41,59,114,101,116,117,114,110,32,116,40,66,76,46,104,95,44,123,112,114,111,112,115,58,123,110,97,109,101,58,111,44,116,111,58,116,104,105,115,46,99,111,109,112,117,116,101,100,84,111,97,115,116,101,114,44,111,114,100,101,114,58,101,44,115,108,105,109,58,33,48,44,100,105,115,97,98,108,101,100,58,110,125,125,44,91,97,93,41,125,125,41,59,102,117,110,99,116,105,111,110,32,110,73,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,102,117,110,99,116,105,111,110,32,114,73,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,114,61,101,91,110,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,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,114,38,38,40,114,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,114,46,107,101,121,44,114,41,125,125,102,117,110,99,116,105,111,110,32,105,73,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,114,73,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,114,73,40,116,44,110,41,44,116,125,102,117,110,99,116,105,111,110,32,111,73,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,97,73,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,111,73,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,115,73,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,111,73,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,115,73,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,102,117,110,99,116,105,111,110,32,99,73,40,116,41,123,114,101,116,117,114,110,32,104,73,40,116,41,124,124,102,73,40,116,41,124,124,108,73,40,116,41,124,124,117,73,40,41,125,102,117,110,99,116,105,111,110,32,117,73,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,34,41,125,102,117,110,99,116,105,111,110,32,108,73,40,116,44,101,41,123,105,102,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,100,73,40,116,44,101,41,59,118,97,114,32,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,41,46,115,108,105,99,101,40,56,44,45,49,41,59,114,101,116,117,114,110,34,79,98,106,101,99,116,34,61,61,61,110,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,116,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,44,34,77,97,112,34,61,61,61,110,124,124,34,83,101,116,34,61,61,61,110,63,65,114,114,97,121,46,102,114,111,109,40,116,41,58,34,65,114,103,117,109,101,110,116,115,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,63,100,73,40,116,44,101,41,58,118,111,105,100,32,48,125,125,102,117,110,99,116,105,111,110,32,102,73,40,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,116,41,125,102,117,110,99,116,105,111,110,32,104,73,40,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,100,73,40,116,41,125,102,117,110,99,116,105,111,110,32,100,73,40,116,44,101,41,123,40,110,117,108,108,61,61,101,124,124,101,62,116,46,108,101,110,103,116,104,41,38,38,40,101,61,116,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,110,60,101,59,110,43,43,41,114,91,110,93,61,116,91,110,93,59,114,101,116,117,114,110,32,114,125,118,97,114,32,112,73,61,34,36,98,118,84,111,97,115,116,34,44,118,73,61,34,95,98,118,95,95,116,111,97,115,116,34,44,103,73,61,91,34,105,100,34,93,46,99,111,110,99,97,116,40,99,73,40,86,116,40,113,116,40,116,73,44,91,34,115,116,97,116,105,99,34,44,34,118,105,115,105,98,108,101,34,93,41,41,41,41,44,109,73,61,123,116,111,97,115,116,67,111,110,116,101,110,116,58,34,100,101,102,97,117,108,116,34,44,116,105,116,108,101,58,34,116,111,97,115,116,45,116,105,116,108,101,34,125,44,98,73,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,103,73,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,98,116,40,116,91,110,93,41,124,124,40,101,91,110,93,61,116,91,110,93,41,44,101,125,41,44,123,125,41,125,44,121,73,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,101,120,116,101,110,100,40,123,110,97,109,101,58,116,105,44,101,120,116,101,110,100,115,58,101,73,44,100,101,115,116,114,111,121,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,101,108,59,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,114,101,109,111,118,101,67,104,105,108,100,40,116,41,125,44,109,111,117,110,116,101,100,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,102,117,110,99,116,105,111,110,40,41,123,116,46,108,111,99,97,108,83,104,111,119,61,33,49,44,116,46,100,111,82,101,110,100,101,114,61,33,49,44,116,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,36,100,101,115,116,114,111,121,40,41,125,41,41,125,41,41,125,41,41,125,59,116,104,105,115,46,36,112,97,114,101,110,116,46,36,111,110,99,101,40,115,111,44,101,41,44,116,104,105,115,46,36,111,110,99,101,40,80,105,44,101,41,44,116,104,105,115,46,108,105,115,116,101,110,79,110,82,111,111,116,40,80,99,40,85,114,44,118,105,41,44,40,102,117,110,99,116,105,111,110,40,110,41,123,110,61,61,61,116,46,116,111,97,115,116,101,114,38,38,101,40,41,125,41,41,125,125,41,44,110,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,33,100,101,40,112,73,41,41,123,118,97,114,32,114,61,110,101,119,32,101,40,123,112,97,114,101,110,116,58,110,44,112,114,111,112,115,68,97,116,97,58,97,73,40,97,73,40,97,73,40,123,125,44,98,73,40,74,115,40,72,114,41,41,41,44,113,116,40,116,44,86,116,40,109,73,41,41,41,44,123,125,44,123,115,116,97,116,105,99,58,33,49,44,118,105,115,105,98,108,101,58,33,48,125,41,125,41,59,86,116,40,109,73,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,105,61,116,91,101,93,59,98,116,40,105,41,124,124,40,34,116,105,116,108,101,34,61,61,61,101,38,38,79,116,40,105,41,38,38,40,105,61,91,110,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,116,114,111,110,103,34,44,123,99,108,97,115,115,58,34,109,114,45,50,34,125,44,105,41,93,41,44,114,46,36,115,108,111,116,115,91,109,73,91,101,93,93,61,89,97,40,105,41,41,125,41,41,59,118,97,114,32,105,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,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,41,44,114,46,36,109,111,117,110,116,40,105,41,125,125,44,114,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,101,41,123,110,73,40,116,104,105,115,44,116,41,44,70,116,40,116,104,105,115,44,123,95,118,109,58,101,44,95,114,111,111,116,58,101,46,36,114,111,111,116,125,41,44,78,116,40,116,104,105,115,44,123,95,118,109,58,88,116,40,41,44,95,114,111,111,116,58,88,116,40,41,125,41,125,114,101,116,117,114,110,32,105,73,40,116,44,91,123,107,101,121,58,34,116,111,97,115,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,101,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,116,38,38,33,100,101,40,112,73,41,38,38,110,40,97,73,40,97,73,40,123,125,44,98,73,40,101,41,41,44,123,125,44,123,116,111,97,115,116,67,111,110,116,101,110,116,58,116,125,41,44,116,104,105,115,46,95,118,109,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,116,41,123,116,38,38,116,104,105,115,46,95,114,111,111,116,46,36,101,109,105,116,40,84,99,40,72,114,44,90,105,41,44,116,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,118,97,114,32,116,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,63,97,114,103,117,109,101,110,116,115,91,48,93,58,110,117,108,108,59,116,104,105,115,46,95,114,111,111,116,46,36,101,109,105,116,40,84,99,40,72,114,44,84,105,41,44,116,41,125,125,93,41,44,116,125,40,41,59,116,46,109,105,120,105,110,40,123,98,101,102,111,114,101,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,91,118,73,93,61,110,101,119,32,114,40,116,104,105,115,41,125,125,41,44,72,116,40,116,46,112,114,111,116,111,116,121,112,101,44,112,73,41,124,124,66,116,40,116,46,112,114,111,116,111,116,121,112,101,44,112,73,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,38,38,116,104,105,115,91,118,73,93,124,124,104,101,40,39,34,39,46,99,111,110,99,97,116,40,112,73,44,39,34,32,109,117,115,116,32,98,101,32,97,99,99,101,115,115,101,100,32,102,114,111,109,32,97,32,86,117,101,32,105,110,115,116,97,110,99,101,32,34,116,104,105,115,34,32,99,111,110,116,101,120,116,46,39,41,44,72,114,41,44,116,104,105,115,91,118,73,93,125,125,41,125,44,119,73,61,67,101,40,123,112,108,117,103,105,110,115,58,123,112,108,117,103,105,110,58,121,73,125,125,41,44,95,73,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,84,111,97,115,116,58,101,73,44,66,84,111,97,115,116,101,114,58,72,76,125,44,112,108,117,103,105,110,115,58,123,66,86,84,111,97,115,116,80,108,117,103,105,110,58,119,73,125,125,41,59,102,117,110,99,116,105,111,110,32,120,73,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,79,73,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,120,73,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,83,73,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,120,73,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,83,73,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,118,97,114,32,107,73,61,34,95,95,66,86,95,84,111,111,108,116,105,112,95,95,34,44,67,73,61,34,104,111,118,101,114,32,102,111,99,117,115,34,44,80,73,61,123,102,111,99,117,115,58,33,48,44,104,111,118,101,114,58,33,48,44,99,108,105,99,107,58,33,48,44,98,108,117,114,58,33,48,44,109,97,110,117,97,108,58,33,48,125,44,84,73,61,47,94,104,116,109,108,36,47,105,44,106,73,61,47,94,110,111,110,105,110,116,101,114,97,99,116,105,118,101,36,47,105,44,69,73,61,47,94,110,111,102,97,100,101,36,47,105,44,68,73,61,47,94,40,97,117,116,111,124,116,111,112,40,108,101,102,116,124,114,105,103,104,116,41,63,124,98,111,116,116,111,109,40,108,101,102,116,124,114,105,103,104,116,41,63,124,108,101,102,116,40,116,111,112,124,98,111,116,116,111,109,41,63,124,114,105,103,104,116,40,116,111,112,124,98,111,116,116,111,109,41,63,41,36,47,105,44,65,73,61,47,94,40,119,105,110,100,111,119,124,118,105,101,119,112,111,114,116,124,115,99,114,111,108,108,80,97,114,101,110,116,41,36,47,105,44,76,73,61,47,94,100,92,100,43,36,47,105,44,73,73,61,47,94,100,115,92,100,43,36,47,105,44,77,73,61,47,94,100,104,92,100,43,36,47,105,44,36,73,61,47,94,111,45,63,92,100,43,36,47,105,44,70,73,61,47,94,118,45,46,43,36,47,105,44,82,73,61,47,92,115,43,47,44,78,73,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,123,116,105,116,108,101,58,118,111,105,100,32,48,44,116,114,105,103,103,101,114,58,34,34,44,112,108,97,99,101,109,101,110,116,58,34,116,111,112,34,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,99,111,110,116,97,105,110,101,114,58,33,49,44,97,110,105,109,97,116,105,111,110,58,33,48,44,111,102,102,115,101,116,58,48,44,105,100,58,110,117,108,108,44,104,116,109,108,58,33,49,44,105,110,116,101,114,97,99,116,105,118,101,58,33,48,44,100,105,115,97,98,108,101,100,58,33,49,44,100,101,108,97,121,58,74,115,40,87,114,44,34,100,101,108,97,121,34,44,53,48,41,44,98,111,117,110,100,97,114,121,58,83,116,114,105,110,103,40,74,115,40,87,114,44,34,98,111,117,110,100,97,114,121,34,44,34,115,99,114,111,108,108,80,97,114,101,110,116,34,41,41,44,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,58,74,97,40,74,115,40,87,114,44,34,98,111,117,110,100,97,114,121,80,97,100,100,105,110,103,34,44,53,41,44,48,41,44,118,97,114,105,97,110,116,58,74,115,40,87,114,44,34,118,97,114,105,97,110,116,34,41,44,99,117,115,116,111,109,67,108,97,115,115,58,74,115,40,87,114,44,34,99,117,115,116,111,109,67,108,97,115,115,34,41,125,59,105,102,40,79,116,40,116,46,118,97,108,117,101,41,124,124,83,116,40,116,46,118,97,108,117,101,41,124,124,95,116,40,116,46,118,97,108,117,101,41,63,110,46,116,105,116,108,101,61,116,46,118,97,108,117,101,58,84,116,40,116,46,118,97,108,117,101,41,38,38,40,110,61,79,73,40,79,73,40,123,125,44,110,41,44,116,46,118,97,108,117,101,41,41,44,98,116,40,110,46,116,105,116,108,101,41,41,123,118,97,114,32,114,61,101,46,100,97,116,97,124,124,123,125,59,110,46,116,105,116,108,101,61,114,46,97,116,116,114,115,38,38,33,119,116,40,114,46,97,116,116,114,115,46,116,105,116,108,101,41,63,114,46,97,116,116,114,115,46,116,105,116,108,101,58,118,111,105,100,32,48,125,84,116,40,110,46,100,101,108,97,121,41,124,124,40,110,46,100,101,108,97,121,61,123,115,104,111,119,58,74,97,40,110,46,100,101,108,97,121,44,48,41,44,104,105,100,101,58,74,97,40,110,46,100,101,108,97,121,44,48,41,125,41,44,116,46,97,114,103,38,38,40,110,46,99,111,110,116,97,105,110,101,114,61,34,35,34,46,99,111,110,99,97,116,40,116,46,97,114,103,41,41,44,86,116,40,116,46,109,111,100,105,102,105,101,114,115,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,84,73,46,116,101,115,116,40,116,41,41,110,46,104,116,109,108,61,33,48,59,101,108,115,101,32,105,102,40,106,73,46,116,101,115,116,40,116,41,41,110,46,105,110,116,101,114,97,99,116,105,118,101,61,33,49,59,101,108,115,101,32,105,102,40,69,73,46,116,101,115,116,40,116,41,41,110,46,97,110,105,109,97,116,105,111,110,61,33,49,59,101,108,115,101,32,105,102,40,68,73,46,116,101,115,116,40,116,41,41,110,46,112,108,97,99,101,109,101,110,116,61,116,59,101,108,115,101,32,105,102,40,65,73,46,116,101,115,116,40,116,41,41,116,61,34,115,99,114,111,108,108,112,97,114,101,110,116,34,61,61,61,116,63,34,115,99,114,111,108,108,80,97,114,101,110,116,34,58,116,44,110,46,98,111,117,110,100,97,114,121,61,116,59,101,108,115,101,32,105,102,40,76,73,46,116,101,115,116,40,116,41,41,123,118,97,114,32,101,61,74,97,40,116,46,115,108,105,99,101,40,49,41,44,48,41,59,110,46,100,101,108,97,121,46,115,104,111,119,61,101,44,110,46,100,101,108,97,121,46,104,105,100,101,61,101,125,101,108,115,101,32,73,73,46,116,101,115,116,40,116,41,63,110,46,100,101,108,97,121,46,115,104,111,119,61,74,97,40,116,46,115,108,105,99,101,40,50,41,44,48,41,58,77,73,46,116,101,115,116,40,116,41,63,110,46,100,101,108,97,121,46,104,105,100,101,61,74,97,40,116,46,115,108,105,99,101,40,50,41,44,48,41,58,36,73,46,116,101,115,116,40,116,41,63,110,46,111,102,102,115,101,116,61,74,97,40,116,46,115,108,105,99,101,40,49,41,44,48,41,58,70,73,46,116,101,115,116,40,116,41,38,38,40,110,46,118,97,114,105,97,110,116,61,116,46,115,108,105,99,101,40,50,41,124,124,110,117,108,108,41,125,41,41,59,118,97,114,32,105,61,123,125,59,114,101,116,117,114,110,32,89,97,40,110,46,116,114,105,103,103,101,114,124,124,34,34,41,46,102,105,108,116,101,114,40,115,101,41,46,106,111,105,110,40,34,32,34,41,46,116,114,105,109,40,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,115,112,108,105,116,40,82,73,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,80,73,91,116,93,38,38,40,105,91,116,93,61,33,48,41,125,41,41,44,86,116,40,116,46,109,111,100,105,102,105,101,114,115,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,80,73,91,116,93,38,38,40,105,91,116,93,61,33,48,41,125,41,41,44,110,46,116,114,105,103,103,101,114,61,86,116,40,105,41,46,106,111,105,110,40,34,32,34,41,44,34,98,108,117,114,34,61,61,61,110,46,116,114,105,103,103,101,114,38,38,40,110,46,116,114,105,103,103,101,114,61,34,102,111,99,117,115,34,41,44,110,46,116,114,105,103,103,101,114,124,124,40,110,46,116,114,105,103,103,101,114,61,67,73,41,44,110,125,44,66,73,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,117,41,123,118,97,114,32,114,61,78,73,40,101,44,110,41,59,105,102,40,33,116,91,107,73,93,41,123,118,97,114,32,105,61,110,46,99,111,110,116,101,120,116,59,116,91,107,73,93,61,110,101,119,32,79,84,40,123,112,97,114,101,110,116,58,105,44,95,115,99,111,112,101,73,100,58,85,83,40,105,44,118,111,105,100,32,48,41,125,41,44,116,91,107,73,93,46,95,95,98,118,95,112,114,101,118,95,100,97,116,97,95,95,61,123,125,44,116,91,107,73,93,46,36,111,110,40,90,105,44,40,102,117,110,99,116,105,111,110,40,41,123,95,116,40,114,46,116,105,116,108,101,41,38,38,116,91,107,73,93,46,117,112,100,97,116,101,68,97,116,97,40,123,116,105,116,108,101,58,114,46,116,105,116,108,101,40,116,41,125,41,125,41,41,125,118,97,114,32,111,61,123,116,105,116,108,101,58,114,46,116,105,116,108,101,44,116,114,105,103,103,101,114,115,58,114,46,116,114,105,103,103,101,114,44,112,108,97,99,101,109,101,110,116,58,114,46,112,108,97,99,101,109,101,110,116,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,114,46,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,44,118,97,114,105,97,110,116,58,114,46,118,97,114,105,97,110,116,44,99,117,115,116,111,109,67,108,97,115,115,58,114,46,99,117,115,116,111,109,67,108,97,115,115,44,99,111,110,116,97,105,110,101,114,58,114,46,99,111,110,116,97,105,110,101,114,44,98,111,117,110,100,97,114,121,58,114,46,98,111,117,110,100,97,114,121,44,100,101,108,97,121,58,114,46,100,101,108,97,121,44,111,102,102,115,101,116,58,114,46,111,102,102,115,101,116,44,110,111,70,97,100,101,58,33,114,46,97,110,105,109,97,116,105,111,110,44,105,100,58,114,46,105,100,44,105,110,116,101,114,97,99,116,105,118,101,58,114,46,105,110,116,101,114,97,99,116,105,118,101,44,100,105,115,97,98,108,101,100,58,114,46,100,105,115,97,98,108,101,100,44,104,116,109,108,58,114,46,104,116,109,108,125,44,97,61,116,91,107,73,93,46,95,95,98,118,95,112,114,101,118,95,100,97,116,97,95,95,59,105,102,40,116,91,107,73,93,46,95,95,98,118,95,112,114,101,118,95,100,97,116,97,95,95,61,111,44,33,95,108,40,111,44,97,41,41,123,118,97,114,32,115,61,123,116,97,114,103,101,116,58,116,125,59,86,116,40,111,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,111,91,101,93,33,61,61,97,91,101,93,38,38,40,115,91,101,93,61,34,116,105,116,108,101,34,61,61,61,101,38,38,95,116,40,111,91,101,93,41,63,111,91,101,93,40,116,41,58,111,91,101,93,41,125,41,41,44,116,91,107,73,93,46,117,112,100,97,116,101,68,97,116,97,40,115,41,125,125,125,44,122,73,61,102,117,110,99,116,105,111,110,40,116,41,123,116,91,107,73,93,38,38,40,116,91,107,73,93,46,36,100,101,115,116,114,111,121,40,41,44,116,91,107,73,93,61,110,117,108,108,41,44,100,101,108,101,116,101,32,116,91,107,73,93,125,44,86,73,61,123,98,105,110,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,66,73,40,116,44,101,44,110,41,125,44,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,46,99,111,110,116,101,120,116,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,66,73,40,116,44,101,44,110,41,125,41,41,125,44,117,110,98,105,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,122,73,40,116,41,125,125,44,72,73,61,67,101,40,123,100,105,114,101,99,116,105,118,101,115,58,123,86,66,84,111,111,108,116,105,112,58,86,73,125,125,41,44,85,73,61,67,101,40,123,99,111,109,112,111,110,101,110,116,115,58,123,66,84,111,111,108,116,105,112,58,65,84,125,44,112,108,117,103,105,110,115,58,123,86,66,84,111,111,108,116,105,112,80,108,117,103,105,110,58,72,73,125,125,41,44,87,73,61,67,101,40,123,112,108,117,103,105,110,115,58,123,65,108,101,114,116,80,108,117,103,105,110,58,74,99,44,65,115,112,101,99,116,80,108,117,103,105,110,58,118,117,44,65,118,97,116,97,114,80,108,117,103,105,110,58,109,102,44,66,97,100,103,101,80,108,117,103,105,110,58,83,102,44,66,114,101,97,100,99,114,117,109,98,80,108,117,103,105,110,58,78,102,44,66,117,116,116,111,110,80,108,117,103,105,110,58,66,102,44,66,117,116,116,111,110,71,114,111,117,112,80,108,117,103,105,110,58,71,102,44,66,117,116,116,111,110,84,111,111,108,98,97,114,80,108,117,103,105,110,58,88,102,44,67,97,108,101,110,100,97,114,80,108,117,103,105,110,58,72,104,44,67,97,114,100,80,108,117,103,105,110,58,116,112,44,67,97,114,111,117,115,101,108,80,108,117,103,105,110,58,68,112,44,67,111,108,108,97,112,115,101,80,108,117,103,105,110,58,65,118,44,68,114,111,112,100,111,119,110,80,108,117,103,105,110,58,118,98,44,69,109,98,101,100,80,108,117,103,105,110,58,119,98,44,70,111,114,109,80,108,117,103,105,110,58,66,98,44,70,111,114,109,67,104,101,99,107,98,111,120,80,108,117,103,105,110,58,82,121,44,70,111,114,109,68,97,116,101,112,105,99,107,101,114,80,108,117,103,105,110,58,102,119,44,70,111,114,109,70,105,108,101,80,108,117,103,105,110,58,80,119,44,70,111,114,109,71,114,111,117,112,80,108,117,103,105,110,58,113,119,44,70,111,114,109,73,110,112,117,116,80,108,117,103,105,110,58,100,95,44,70,111,114,109,82,97,100,105,111,80,108,117,103,105,110,58,103,95,44,70,111,114,109,82,97,116,105,110,103,80,108,117,103,105,110,58,65,95,44,70,111,114,109,83,101,108,101,99,116,80,108,117,103,105,110,58,110,120,44,70,111,114,109,83,112,105,110,98,117,116,116,111,110,80,108,117,103,105,110,58,95,120,44,70,111,114,109,84,97,103,115,80,108,117,103,105,110,58,88,120,44,70,111,114,109,84,101,120,116,97,114,101,97,80,108,117,103,105,110,58,114,79,44,70,111,114,109,84,105,109,101,112,105,99,107,101,114,80,108,117,103,105,110,58,70,79,44,73,109,97,103,101,80,108,117,103,105,110,58,82,79,44,73,110,112,117,116,71,114,111,117,112,80,108,117,103,105,110,58,110,83,44,74,117,109,98,111,116,114,111,110,80,108,117,103,105,110,58,117,83,44,76,97,121,111,117,116,80,108,117,103,105,110,58,121,83,44,76,105,110,107,80,108,117,103,105,110,58,119,83,44,76,105,115,116,71,114,111,117,112,80,108,117,103,105,110,58,68,83,44,77,101,100,105,97,80,108,117,103,105,110,58,78,83,44,77,111,100,97,108,80,108,117,103,105,110,58,112,67,44,78,97,118,80,108,117,103,105,110,58,85,67,44,78,97,118,98,97,114,80,108,117,103,105,110,58,117,80,44,79,118,101,114,108,97,121,80,108,117,103,105,110,58,119,80,44,80,97,103,105,110,97,116,105,111,110,80,108,117,103,105,110,58,71,80,44,80,97,103,105,110,97,116,105,111,110,78,97,118,80,108,117,103,105,110,58,116,84,44,80,111,112,111,118,101,114,80,108,117,103,105,110,58,115,106,44,80,114,111,103,114,101,115,115,80,108,117,103,105,110,58,109,106,44,83,105,100,101,98,97,114,80,108,117,103,105,110,58,66,106,44,83,107,101,108,101,116,111,110,80,108,117,103,105,110,58,119,69,44,83,112,105,110,110,101,114,80,108,117,103,105,110,58,95,69,44,84,97,98,108,101,80,108,117,103,105,110,58,112,76,44,84,97,98,115,80,108,117,103,105,110,58,82,76,44,84,105,109,101,80,108,117,103,105,110,58,78,76,44,84,111,97,115,116,80,108,117,103,105,110,58,95,73,44,84,111,111,108,116,105,112,80,108,117,103,105,110,58,85,73,125,125,41,44,71,73,61,67,101,40,123,100,105,114,101,99,116,105,118,101,115,58,123,86,66,72,111,118,101,114,58,87,121,125,125,41,44,113,73,61,67,101,40,123,100,105,114,101,99,116,105,118,101,115,58,123,86,66,77,111,100,97,108,58,113,107,125,125,41,59,102,117,110,99,116,105,111,110,32,89,73,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,105,102,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,41,123,118,97,114,32,114,61,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,116,41,59,101,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,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,116,44,101,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,110,46,112,117,115,104,46,97,112,112,108,121,40,110,44,114,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,75,73,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,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,101,93,63,97,114,103,117,109,101,110,116,115,91,101,93,58,123,125,59,101,37,50,63,89,73,40,79,98,106,101,99,116,40,110,41,44,33,48,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,88,73,40,116,44,101,44,110,91,101,93,41,125,41,41,58,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,115,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,116,44,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,115,40,110,41,41,58,89,73,40,79,98,106,101,99,116,40,110,41,41,46,102,111,114,69,97,99,104,40,40,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,44,101,44,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,110,44,101,41,41,125,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,88,73,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,102,117,110,99,116,105,111,110,32,90,73,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,102,117,110,99,116,105,111,110,32,74,73,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,114,61,101,91,110,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,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,114,38,38,40,114,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,114,46,107,101,121,44,114,41,125,125,102,117,110,99,116,105,111,110,32,81,73,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,74,73,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,74,73,40,116,44,110,41,44,116,125,118,97,114,32,116,77,61,34,118,45,98,45,115,99,114,111,108,108,115,112,121,34,44,101,77,61,34,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,110,77,61,34,97,99,116,105,118,101,34,44,114,77,61,34,46,110,97,118,44,32,46,108,105,115,116,45,103,114,111,117,112,34,44,105,77,61,34,46,110,97,118,45,108,105,110,107,34,44,111,77,61,34,46,110,97,118,45,105,116,101,109,34,44,97,77,61,34,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,34,44,115,77,61,34,46,100,114,111,112,100,111,119,110,44,32,46,100,114,111,112,117,112,34,44,99,77,61,34,46,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,117,77,61,34,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,44,108,77,61,80,99,40,34,66,86,83,99,114,111,108,108,115,112,121,34,44,34,97,99,116,105,118,97,116,101,34,41,44,102,77,61,34,111,102,102,115,101,116,34,44,104,77,61,34,112,111,115,105,116,105,111,110,34,44,100,77,61,123,101,108,101,109,101,110,116,58,34,98,111,100,121,34,44,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,104,114,111,116,116,108,101,58,55,53,125,44,112,77,61,123,101,108,101,109,101,110,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,99,111,109,112,111,110,101,110,116,41,34,44,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,104,114,111,116,116,108,101,58,34,110,117,109,98,101,114,34,125,44,118,77,61,91,34,119,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,69,110,100,34,44,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,44,34,111,116,114,97,110,115,105,116,105,111,110,101,110,100,34,44,34,111,84,114,97,110,115,105,116,105,111,110,69,110,100,34,93,44,103,77,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,85,116,40,116,41,46,109,97,116,99,104,40,47,92,115,40,91,97,45,122,65,45,90,93,43,41,47,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,109,77,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,102,111,114,40,118,97,114,32,114,32,105,110,32,110,41,105,102,40,72,116,40,110,44,114,41,41,123,118,97,114,32,105,61,110,91,114,93,44,111,61,101,91,114,93,44,97,61,111,38,38,98,115,40,111,41,63,34,101,108,101,109,101,110,116,34,58,103,77,40,111,41,59,97,61,111,38,38,111,46,95,105,115,86,117,101,63,34,99,111,109,112,111,110,101,110,116,34,58,97,44,110,101,119,32,82,101,103,69,120,112,40,105,41,46,116,101,115,116,40,97,41,124,124,104,101,40,34,34,46,99,111,110,99,97,116,40,116,44,39,58,32,79,112,116,105,111,110,32,34,39,41,46,99,111,110,99,97,116,40,114,44,39,34,32,112,114,111,118,105,100,101,100,32,116,121,112,101,32,34,39,41,46,99,111,110,99,97,116,40,97,44,39,34,32,98,117,116,32,101,120,112,101,99,116,101,100,32,116,121,112,101,32,34,39,41,46,99,111,110,99,97,116,40,105,44,39,34,39,41,41,125,125,44,98,77,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,101,44,110,44,114,41,123,90,73,40,116,104,105,115,44,116,41,44,116,104,105,115,46,36,101,108,61,101,44,116,104,105,115,46,36,115,99,114,111,108,108,101,114,61,110,117,108,108,44,116,104,105,115,46,36,115,101,108,101,99,116,111,114,61,91,105,77,44,97,77,44,99,77,93,46,106,111,105,110,40,34,44,34,41,44,116,104,105,115,46,36,111,102,102,115,101,116,115,61,91,93,44,116,104,105,115,46,36,116,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,36,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,116,104,105,115,46,36,115,99,114,111,108,108,72,101,105,103,104,116,61,48,44,116,104,105,115,46,36,114,101,115,105,122,101,84,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,36,115,99,114,111,108,108,101,114,79,98,115,101,114,118,101,114,61,110,117,108,108,44,116,104,105,115,46,36,116,97,114,103,101,116,115,79,98,115,101,114,118,101,114,61,110,117,108,108,44,116,104,105,115,46,36,114,111,111,116,61,114,124,124,110,117,108,108,44,116,104,105,115,46,36,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,117,112,100,97,116,101,67,111,110,102,105,103,40,110,41,125,114,101,116,117,114,110,32,81,73,40,116,44,91,123,107,101,121,58,34,117,112,100,97,116,101,67,111,110,102,105,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,36,115,99,114,111,108,108,101,114,38,38,40,116,104,105,115,46,117,110,108,105,115,116,101,110,40,41,44,116,104,105,115,46,36,115,99,114,111,108,108,101,114,61,110,117,108,108,41,59,118,97,114,32,110,61,75,73,40,75,73,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,41,44,116,41,59,105,102,40,101,38,38,40,116,104,105,115,46,36,114,111,111,116,61,101,41,44,109,77,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,78,97,109,101,44,110,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,104,105,115,46,36,99,111,110,102,105,103,61,110,44,116,104,105,115,46,36,114,111,111,116,41,123,118,97,114,32,114,61,116,104,105,115,59,116,104,105,115,46,36,114,111,111,116,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,114,46,108,105,115,116,101,110,40,41,125,41,41,125,101,108,115,101,32,116,104,105,115,46,108,105,115,116,101,110,40,41,125,125,44,123,107,101,121,58,34,100,105,115,112,111,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,117,110,108,105,115,116,101,110,40,41,44,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,36,114,101,115,105,122,101,84,105,109,101,111,117,116,41,44,116,104,105,115,46,36,114,101,115,105,122,101,84,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,36,101,108,61,110,117,108,108,44,116,104,105,115,46,36,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,36,115,99,114,111,108,108,101,114,61,110,117,108,108,44,116,104,105,115,46,36,115,101,108,101,99,116,111,114,61,110,117,108,108,44,116,104,105,115,46,36,111,102,102,115,101,116,115,61,110,117,108,108,44,116,104,105,115,46,36,116,97,114,103,101,116,115,61,110,117,108,108,44,116,104,105,115,46,36,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,116,104,105,115,46,36,115,99,114,111,108,108,72,101,105,103,104,116,61,110,117,108,108,125,125,44,123,107,101,121,58,34,108,105,115,116,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,44,101,61,116,104,105,115,46,103,101,116,83,99,114,111,108,108,101,114,40,41,59,101,38,38,34,66,79,68,89,34,33,61,61,101,46,116,97,103,78,97,109,101,38,38,120,99,40,101,44,34,115,99,114,111,108,108,34,44,116,104,105,115,44,104,111,41,44,120,99,40,119,105,110,100,111,119,44,34,115,99,114,111,108,108,34,44,116,104,105,115,44,104,111,41,44,120,99,40,119,105,110,100,111,119,44,34,114,101,115,105,122,101,34,44,116,104,105,115,44,104,111,41,44,120,99,40,119,105,110,100,111,119,44,34,111,114,105,101,110,116,97,116,105,111,110,99,104,97,110,103,101,34,44,116,104,105,115,44,104,111,41,44,118,77,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,120,99,40,119,105,110,100,111,119,44,101,44,116,44,104,111,41,125,41,41,44,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,115,40,33,48,41,44,116,104,105,115,46,104,97,110,100,108,101,69,118,101,110,116,40,34,114,101,102,114,101,115,104,34,41,125,125,44,123,107,101,121,58,34,117,110,108,105,115,116,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,44,101,61,116,104,105,115,46,103,101,116,83,99,114,111,108,108,101,114,40,41,59,116,104,105,115,46,115,101,116,79,98,115,101,114,118,101,114,115,40,33,49,41,44,101,38,38,34,66,79,68,89,34,33,61,61,101,46,116,97,103,78,97,109,101,38,38,79,99,40,101,44,34,115,99,114,111,108,108,34,44,116,104,105,115,44,104,111,41,44,79,99,40,119,105,110,100,111,119,44,34,115,99,114,111,108,108,34,44,116,104,105,115,44,104,111,41,44,79,99,40,119,105,110,100,111,119,44,34,114,101,115,105,122,101,34,44,116,104,105,115,44,104,111,41,44,79,99,40,119,105,110,100,111,119,44,34,111,114,105,101,110,116,97,116,105,111,110,99,104,97,110,103,101,34,44,116,104,105,115,44,104,111,41,44,118,77,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,79,99,40,119,105,110,100,111,119,44,101,44,116,44,104,111,41,125,41,41,125,125,44,123,107,101,121,58,34,115,101,116,79,98,115,101,114,118,101,114,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,101,61,116,104,105,115,59,116,104,105,115,46,36,115,99,114,111,108,108,101,114,79,98,115,101,114,118,101,114,38,38,116,104,105,115,46,36,115,99,114,111,108,108,101,114,79,98,115,101,114,118,101,114,46,100,105,115,99,111,110,110,101,99,116,40,41,44,116,104,105,115,46,36,116,97,114,103,101,116,115,79,98,115,101,114,118,101,114,38,38,116,104,105,115,46,36,116,97,114,103,101,116,115,79,98,115,101,114,118,101,114,46,100,105,115,99,111,110,110,101,99,116,40,41,44,116,104,105,115,46,36,115,99,114,111,108,108,101,114,79,98,115,101,114,118,101,114,61,110,117,108,108,44,116,104,105,115,46,36,116,97,114,103,101,116,115,79,98,115,101,114,118,101,114,61,110,117,108,108,44,116,38,38,40,116,104,105,115,46,36,116,97,114,103,101,116,115,79,98,115,101,114,118,101,114,61,97,112,40,116,104,105,115,46,36,101,108,44,40,102,117,110,99,116,105,111,110,40,41,123,101,46,104,97,110,100,108,101,69,118,101,110,116,40,34,109,117,116,97,116,105,111,110,34,41,125,41,44,123,115,117,98,116,114,101,101,58,33,48,44,99,104,105,108,100,76,105,115,116,58,33,48,44,97,116,116,114,105,98,117,116,101,115,58,33,48,44,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,58,91,34,104,114,101,102,34,93,125,41,44,116,104,105,115,46,36,115,99,114,111,108,108,101,114,79,98,115,101,114,118,101,114,61,97,112,40,116,104,105,115,46,103,101,116,83,99,114,111,108,108,101,114,40,41,44,40,102,117,110,99,116,105,111,110,40,41,123,101,46,104,97,110,100,108,101,69,118,101,110,116,40,34,109,117,116,97,116,105,111,110,34,41,125,41,44,123,115,117,98,116,114,101,101,58,33,48,44,99,104,105,108,100,76,105,115,116,58,33,48,44,99,104,97,114,97,99,116,101,114,68,97,116,97,58,33,48,44,97,116,116,114,105,98,117,116,101,115,58,33,48,44,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,58,91,34,105,100,34,44,34,115,116,121,108,101,34,44,34,99,108,97,115,115,34,93,125,41,41,125,125,44,123,107,101,121,58,34,104,97,110,100,108,101,69,118,101,110,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,101,61,79,116,40,116,41,63,116,58,116,46,116,121,112,101,44,110,61,116,104,105,115,44,114,61,102,117,110,99,116,105,111,110,40,41,123,110,46,36,114,101,115,105,122,101,84,105,109,101,111,117,116,124,124,40,110,46,36,114,101,115,105,122,101,84,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,110,46,114,101,102,114,101,115,104,40,41,44,110,46,112,114,111,99,101,115,115,40,41,44,110,46,36,114,101,115,105,122,101,84,105,109,101,111,117,116,61,110,117,108,108,125,41,44,110,46,36,99,111,110,102,105,103,46,116,104,114,111,116,116,108,101,41,41,125,59,34,115,99,114,111,108,108,34,61,61,61,101,63,40,116,104,105,115,46,36,115,99,114,111,108,108,101,114,79,98,115,101,114,118,101,114,124,124,116,104,105,115,46,108,105,115,116,101,110,40,41,44,116,104,105,115,46,112,114,111,99,101,115,115,40,41,41,58,47,40,114,101,115,105,122,101,124,111,114,105,101,110,116,97,116,105,111,110,99,104,97,110,103,101,124,109,117,116,97,116,105,111,110,124,114,101,102,114,101,115,104,41,47,46,116,101,115,116,40,101,41,38,38,114,40,41,125,125,44,123,107,101,121,58,34,114,101,102,114,101,115,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,116,104,105,115,44,101,61,116,104,105,115,46,103,101,116,83,99,114,111,108,108,101,114,40,41,59,105,102,40,101,41,123,118,97,114,32,110,61,101,33,61,61,101,46,119,105,110,100,111,119,63,104,77,58,102,77,44,114,61,34,97,117,116,111,34,61,61,61,116,104,105,115,46,36,99,111,110,102,105,103,46,109,101,116,104,111,100,63,110,58,116,104,105,115,46,36,99,111,110,102,105,103,46,109,101,116,104,111,100,44,105,61,114,61,61,61,104,77,63,87,115,58,85,115,44,111,61,114,61,61,61,104,77,63,116,104,105,115,46,103,101,116,83,99,114,111,108,108,84,111,112,40,41,58,48,59,114,101,116,117,114,110,32,116,104,105,115,46,36,111,102,102,115,101,116,115,61,91,93,44,116,104,105,115,46,36,116,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,36,115,99,114,111,108,108,72,101,105,103,104,116,61,116,104,105,115,46,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,40,41,44,107,115,40,116,104,105,115,46,36,115,101,108,101,99,116,111,114,44,116,104,105,115,46,36,101,108,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,36,115,40,116,44,34,104,114,101,102,34,41,125,41,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,85,46,116,101,115,116,40,116,124,124,34,34,41,125,41,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,114,101,112,108,97,99,101,40,85,44,34,36,49,34,41,46,116,114,105,109,40,41,59,105,102,40,33,110,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,114,61,67,115,40,110,44,101,41,59,114,101,116,117,114,110,32,114,38,38,120,115,40,114,41,63,123,111,102,102,115,101,116,58,74,97,40,105,40,114,41,46,116,111,112,44,48,41,43,111,44,116,97,114,103,101,116,58,110,125,58,110,117,108,108,125,41,41,46,102,105,108,116,101,114,40,115,101,41,46,115,111,114,116,40,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,102,102,115,101,116,45,101,46,111,102,102,115,101,116,125,41,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,101,91,110,46,116,97,114,103,101,116,93,124,124,40,116,46,36,111,102,102,115,101,116,115,46,112,117,115,104,40,110,46,111,102,102,115,101,116,41,44,116,46,36,116,97,114,103,101,116,115,46,112,117,115,104,40,110,46,116,97,114,103,101,116,41,44,101,91,110,46,116,97,114,103,101,116,93,61,33,48,41,44,101,125,41,44,123,125,41,44,116,104,105,115,125,125,125,44,123,107,101,121,58,34,112,114,111,99,101,115,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,116,104,105,115,46,103,101,116,83,99,114,111,108,108,84,111,112,40,41,43,116,104,105,115,46,36,99,111,110,102,105,103,46,111,102,102,115,101,116,44,101,61,116,104,105,115,46,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,36,99,111,110,102,105,103,46,111,102,102,115,101,116,43,101,45,116,104,105,115,46,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,36,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,116,62,61,110,41,123,118,97,114,32,114,61,116,104,105,115,46,36,116,97,114,103,101,116,115,91,116,104,105,115,46,36,116,97,114,103,101,116,115,46,108,101,110,103,116,104,45,49,93,59,116,104,105,115,46,36,97,99,116,105,118,101,84,97,114,103,101,116,33,61,61,114,38,38,116,104,105,115,46,97,99,116,105,118,97,116,101,40,114,41,125,101,108,115,101,123,105,102,40,116,104,105,115,46,36,97,99,116,105,118,101,84,97,114,103,101,116,38,38,116,60,116,104,105,115,46,36,111,102,102,115,101,116,115,91,48,93,38,38,116,104,105,115,46,36,111,102,102,115,101,116,115,91,48,93,62,48,41,114,101,116,117,114,110,32,116,104,105,115,46,36,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,99,108,101,97,114,40,41,59,102,111,114,40,118,97,114,32,105,61,116,104,105,115,46,36,111,102,102,115,101,116,115,46,108,101,110,103,116,104,59,105,45,45,59,41,123,118,97,114,32,111,61,116,104,105,115,46,36,97,99,116,105,118,101,84,97,114,103,101,116,33,61,61,116,104,105,115,46,36,116,97,114,103,101,116,115,91,105,93,38,38,116,62,61,116,104,105,115,46,36,111,102,102,115,101,116,115,91,105,93,38,38,40,98,116,40,116,104,105,115,46,36,111,102,102,115,101,116,115,91,105,43,49,93,41,124,124,116,60,116,104,105,115,46,36,111,102,102,115,101,116,115,91,105,43,49,93,41,59,111,38,38,116,104,105,115,46,97,99,116,105,118,97,116,101,40,116,104,105,115,46,36,116,97,114,103,101,116,115,91,105,93,41,125,125,125,125,44,123,107,101,121,58,34,103,101,116,83,99,114,111,108,108,101,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,36,115,99,114,111,108,108,101,114,41,114,101,116,117,114,110,32,116,104,105,115,46,36,115,99,114,111,108,108,101,114,59,118,97,114,32,116,61,116,104,105,115,46,36,99,111,110,102,105,103,46,101,108,101,109,101,110,116,59,114,101,116,117,114,110,32,116,63,40,98,115,40,116,46,36,101,108,41,63,116,61,116,46,36,101,108,58,79,116,40,116,41,38,38,40,116,61,67,115,40,116,41,41,44,116,63,40,116,104,105,115,46,36,115,99,114,111,108,108,101,114,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,36,115,99,114,111,108,108,101,114,41,58,110,117,108,108,41,58,110,117,108,108,125,125,44,123,107,101,121,58,34,103,101,116,83,99,114,111,108,108,84,111,112,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,103,101,116,83,99,114,111,108,108,101,114,40,41,59,114,101,116,117,114,110,32,116,61,61,61,119,105,110,100,111,119,63,116,46,112,97,103,101,89,79,102,102,115,101,116,58,116,46,115,99,114,111,108,108,84,111,112,125,125,44,123,107,101,121,58,34,103,101,116,83,99,114,111,108,108,72,101,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,116,104,105,115,46,103,101,116,83,99,114,111,108,108,101,114,40,41,46,115,99,114,111,108,108,72,101,105,103,104,116,124,124,116,117,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,125,44,123,107,101,121,58,34,103,101,116,79,102,102,115,101,116,72,101,105,103,104,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,46,103,101,116,83,99,114,111,108,108,101,114,40,41,59,114,101,116,117,114,110,32,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,122,115,40,116,41,46,104,101,105,103,104,116,125,125,44,123,107,101,121,58,34,97,99,116,105,118,97,116,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,101,61,116,104,105,115,59,116,104,105,115,46,36,97,99,116,105,118,101,84,97,114,103,101,116,61,116,44,116,104,105,115,46,99,108,101,97,114,40,41,59,118,97,114,32,110,61,107,115,40,116,104,105,115,46,36,115,101,108,101,99,116,111,114,46,115,112,108,105,116,40,34,44,34,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,34,46,99,111,110,99,97,116,40,101,44,39,91,104,114,101,102,36,61,34,39,41,46,99,111,110,99,97,116,40,116,44,39,34,93,39,41,125,41,41,46,106,111,105,110,40,34,44,34,41,44,116,104,105,115,46,36,101,108,41,59,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,76,115,40,116,44,101,77,41,41,123,118,97,114,32,110,61,84,115,40,115,77,44,116,41,59,110,38,38,101,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,67,115,40,117,77,44,110,41,44,33,48,41,44,101,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,116,44,33,48,41,125,101,108,115,101,123,101,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,116,44,33,48,41,44,80,115,40,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,44,111,77,41,38,38,101,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,44,33,48,41,59,118,97,114,32,114,61,116,59,119,104,105,108,101,40,114,41,123,114,61,84,115,40,114,77,44,114,41,59,118,97,114,32,105,61,114,63,114,46,112,114,101,118,105,111,117,115,69,108,101,109,101,110,116,83,105,98,108,105,110,103,58,110,117,108,108,59,105,38,38,80,115,40,105,44,34,34,46,99,111,110,99,97,116,40,105,77,44,34,44,32,34,41,46,99,111,110,99,97,116,40,97,77,41,41,38,38,101,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,105,44,33,48,41,44,105,38,38,80,115,40,105,44,111,77,41,38,38,40,101,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,67,115,40,105,77,44,105,41,44,33,48,41,44,101,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,105,44,33,48,41,41,125,125,125,41,41,44,110,38,38,110,46,108,101,110,103,116,104,62,48,38,38,116,104,105,115,46,36,114,111,111,116,38,38,116,104,105,115,46,36,114,111,111,116,46,36,101,109,105,116,40,108,77,44,116,44,110,41,125,125,44,123,107,101,121,58,34,99,108,101,97,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,107,115,40,34,34,46,99,111,110,99,97,116,40,116,104,105,115,46,36,115,101,108,101,99,116,111,114,44,34,44,32,34,41,46,99,111,110,99,97,116,40,111,77,41,44,116,104,105,115,46,36,101,108,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,76,115,40,116,44,110,77,41,125,41,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,115,101,116,65,99,116,105,118,101,83,116,97,116,101,40,101,44,33,49,41,125,41,41,125,125,44,123,107,101,121,58,34,115,101,116,65,99,116,105,118,101,83,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,38,38,40,101,63,68,115,40,116,44,110,77,41,58,65,115,40,116,44,110,77,41,41,125,125,93,44,91,123,107,101,121,58,34,78,97,109,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,116,77,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,100,77,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,112,77,125,125,93,41,44,116,125,40,41,44,121,77,61,34,95,95,66,86,95,83,99,114,111,108,108,83,112,121,95,95,34,44,119,77,61,47,94,92,100,43,36,47,44,95,77,61,47,94,40,97,117,116,111,124,112,111,115,105,116,105,111,110,124,111,102,102,115,101,116,41,36,47,44,120,77,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,123,125,59,114,101,116,117,114,110,32,116,46,97,114,103,38,38,40,101,46,101,108,101,109,101,110,116,61,34,35,34,46,99,111,110,99,97,116,40,116,46,97,114,103,41,41,44,86,116,40,116,46,109,111,100,105,102,105,101,114,115,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,119,77,46,116,101,115,116,40,116,41,63,101,46,111,102,102,115,101,116,61,74,97,40,116,44,48,41,58,95,77,46,116,101,115,116,40,116,41,38,38,40,101,46,109,101,116,104,111,100,61,116,41,125,41,41,44,79,116,40,116,46,118,97,108,117,101,41,63,101,46,101,108,101,109,101,110,116,61,116,46,118,97,108,117,101,58,83,116,40,116,46,118,97,108,117,101,41,63,101,46,111,102,102,115,101,116,61,111,117,40,116,46,118,97,108,117,101,41,58,80,116,40,116,46,118,97,108,117,101,41,38,38,86,116,40,116,46,118,97,108,117,101,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,33,98,77,46,68,101,102,97,117,108,116,84,121,112,101,91,116,93,125,41,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,101,91,110,93,61,116,46,118,97,108,117,101,91,110,93,125,41,41,44,101,125,44,79,77,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,117,41,123,118,97,114,32,114,61,120,77,40,101,41,59,116,91,121,77,93,63,116,91,121,77,93,46,117,112,100,97,116,101,67,111,110,102,105,103,40,114,44,110,46,99,111,110,116,101,120,116,46,36,114,111,111,116,41,58,116,91,121,77,93,61,110,101,119,32,98,77,40,116,44,114,44,110,46,99,111,110,116,101,120,116,46,36,114,111,111,116,41,125,125,44,83,77,61,102,117,110,99,116,105,111,110,40,116,41,123,116,91,121,77,93,38,38,40,116,91,121,77,93,46,100,105,115,112,111,115,101,40,41,44,116,91,121,77,93,61,110,117,108,108,44,100,101,108,101,116,101,32,116,91,121,77,93,41,125,44,107,77,61,123,98,105,110,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,79,77,40,116,44,101,44,110,41,125,44,105,110,115,101,114,116,101,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,79,77,40,116,44,101,44,110,41,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,46,118,97,108,117,101,33,61,61,101,46,111,108,100,86,97,108,117,101,38,38,79,77,40,116,44,101,44,110,41,125,44,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,46,118,97,108,117,101,33,61,61,101,46,111,108,100,86,97,108,117,101,38,38,79,77,40,116,44,101,44,110,41,125,44,117,110,98,105,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,83,77,40,116,41,125,125,44,67,77,61,67,101,40,123,100,105,114,101,99,116,105,118,101,115,58,123,86,66,83,99,114,111,108,108,115,112,121,58,107,77,125,125,41,44,80,77,61,67,101,40,123,100,105,114,101,99,116,105,118,101,115,58,123,86,66,86,105,115,105,98,108,101,58,36,100,125,125,41,44,84,77,61,67,101,40,123,112,108,117,103,105,110,115,58,123,86,66,72,111,118,101,114,80,108,117,103,105,110,58,71,73,44,86,66,77,111,100,97,108,80,108,117,103,105,110,58,113,73,44,86,66,80,111,112,111,118,101,114,80,108,117,103,105,110,58,97,106,44,86,66,83,99,114,111,108,108,115,112,121,80,108,117,103,105,110,58,67,77,44,86,66,84,111,103,103,108,101,80,108,117,103,105,110,58,68,118,44,86,66,84,111,111,108,116,105,112,80,108,117,103,105,110,58,72,73,44,86,66,86,105,115,105,98,108,101,80,108,117,103,105,110,58,80,77,125,125,41,44,106,77,61,34,66,111,111,116,115,116,114,97,112,86,117,101,34,44,69,77,61,107,101,40,123,112,108,117,103,105,110,115,58,123,99,111,109,112,111,110,101,110,116,115,80,108,117,103,105,110,58,87,73,44,100,105,114,101,99,116,105,118,101,115,80,108,117,103,105,110,58,84,77,125,125,41,44,68,77,61,123,105,110,115,116,97,108,108,58,69,77,44,78,65,77,69,58,106,77,125,44,65,77,61,68,77,125,44,55,50,53,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,46,100,40,101,44,123,106,50,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,125,44,76,76,117,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,77,125,44,121,52,79,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,125,44,70,53,113,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,125,44,103,121,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,103,111,125,44,87,101,109,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,117,125,44,87,85,90,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,65,111,125,44,98,84,57,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,111,125,44,89,109,55,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,114,125,44,115,78,57,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,119,115,125,44,71,105,105,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,115,125,44,105,65,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,95,115,125,44,71,77,99,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,115,125,44,83,55,86,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,115,125,44,99,85,87,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,115,125,44,95,66,74,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,103,115,125,44,86,97,102,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,98,115,125,44,97,69,90,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,115,125,44,72,116,78,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,117,115,125,44,89,95,120,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,100,115,125,44,99,106,74,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,118,115,125,44,70,112,55,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,109,125,44,98,49,66,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,122,105,125,44,86,82,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,125,44,119,54,72,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,119,125,44,116,105,65,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,97,125,44,66,89,85,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,75,97,125,44,80,75,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,83,97,125,44,99,74,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,74,97,125,44,67,110,49,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,115,125,44,89,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,120,115,125,44,105,36,90,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,99,125,44,112,78,73,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,97,125,44,119,76,80,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,100,97,125,44,76,81,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,97,125,44,75,109,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,97,125,44,69,95,48,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,97,125,44,111,36,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,97,125,44,119,112,57,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,99,125,125,41,59,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,114,101,116,117,114,110,32,116,60,101,63,45,49,58,116,62,101,63,49,58,116,62,61,101,63,48,58,78,97,78,125,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,49,61,61,61,116,46,108,101,110,103,116,104,38,38,40,116,61,111,40,116,41,41,44,123,108,101,102,116,58,102,117,110,99,116,105,111,110,40,101,44,110,44,114,44,105,41,123,110,117,108,108,61,61,114,38,38,40,114,61,48,41,44,110,117,108,108,61,61,105,38,38,40,105,61,101,46,108,101,110,103,116,104,41,59,119,104,105,108,101,40,114,60,105,41,123,118,97,114,32,111,61,114,43,105,62,62,62,49,59,116,40,101,91,111,93,44,110,41,60,48,63,114,61,111,43,49,58,105,61,111,125,114,101,116,117,114,110,32,114,125,44,114,105,103,104,116,58,102,117,110,99,116,105,111,110,40,101,44,110,44,114,44,105,41,123,110,117,108,108,61,61,114,38,38,40,114,61,48,41,44,110,117,108,108,61,61,105,38,38,40,105,61,101,46,108,101,110,103,116,104,41,59,119,104,105,108,101,40,114,60,105,41,123,118,97,114,32,111,61,114,43,105,62,62,62,49,59,116,40,101,91,111,93,44,110,41,62,48,63,105,61,111,58,114,61,111,43,49,125,114,101,116,117,114,110,32,114,125,125,125,102,117,110,99,116,105,111,110,32,111,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,114,40,116,40,101,41,44,110,41,125,125,118,97,114,32,97,61,105,40,114,41,44,115,61,97,46,114,105,103,104,116,44,99,61,40,97,46,108,101,102,116,44,115,41,59,102,117,110,99,116,105,111,110,32,117,40,116,44,101,41,123,118,97,114,32,110,44,114,44,105,44,111,61,116,46,108,101,110,103,116,104,44,97,61,45,49,59,105,102,40,110,117,108,108,61,61,101,41,123,119,104,105,108,101,40,43,43,97,60,111,41,105,102,40,110,117,108,108,33,61,40,110,61,116,91,97,93,41,38,38,110,62,61,110,41,123,114,61,105,61,110,59,119,104,105,108,101,40,43,43,97,60,111,41,110,117,108,108,33,61,40,110,61,116,91,97,93,41,38,38,40,114,62,110,38,38,40,114,61,110,41,44,105,60,110,38,38,40,105,61,110,41,41,125,125,101,108,115,101,32,119,104,105,108,101,40,43,43,97,60,111,41,105,102,40,110,117,108,108,33,61,40,110,61,101,40,116,91,97,93,44,97,44,116,41,41,38,38,110,62,61,110,41,123,114,61,105,61,110,59,119,104,105,108,101,40,43,43,97,60,111,41,110,117,108,108,33,61,40,110,61,101,40,116,91,97,93,44,97,44,116,41,41,38,38,40,114,62,110,38,38,40,114,61,110,41,44,105,60,110,38,38,40,105,61,110,41,41,125,114,101,116,117,114,110,91,114,44,105,93,125,118,97,114,32,108,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,44,102,61,40,108,46,115,108,105,99,101,44,108,46,109,97,112,44,77,97,116,104,46,115,113,114,116,40,53,48,41,41,44,104,61,77,97,116,104,46,115,113,114,116,40,49,48,41,44,100,61,77,97,116,104,46,115,113,114,116,40,50,41,59,102,117,110,99,116,105,111,110,32,112,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,61,45,49,59,105,102,40,101,61,43,101,44,116,61,43,116,44,110,61,43,110,44,116,61,61,61,101,38,38,110,62,48,41,114,101,116,117,114,110,91,116,93,59,105,102,40,40,114,61,101,60,116,41,38,38,40,105,61,116,44,116,61,101,44,101,61,105,41,44,48,61,61,61,40,97,61,118,40,116,44,101,44,110,41,41,124,124,33,105,115,70,105,110,105,116,101,40,97,41,41,114,101,116,117,114,110,91,93,59,105,102,40,97,62,48,41,123,116,61,77,97,116,104,46,99,101,105,108,40,116,47,97,41,44,101,61,77,97,116,104,46,102,108,111,111,114,40,101,47,97,41,44,111,61,110,101,119,32,65,114,114,97,121,40,105,61,77,97,116,104,46,99,101,105,108,40,101,45,116,43,49,41,41,59,119,104,105,108,101,40,43,43,115,60,105,41,111,91,115,93,61,40,116,43,115,41,42,97,125,101,108,115,101,123,116,61,77,97,116,104,46,102,108,111,111,114,40,116,42,97,41,44,101,61,77,97,116,104,46,99,101,105,108,40,101,42,97,41,44,111,61,110,101,119,32,65,114,114,97,121,40,105,61,77,97,116,104,46,99,101,105,108,40,116,45,101,43,49,41,41,59,119,104,105,108,101,40,43,43,115,60,105,41,111,91,115,93,61,40,116,45,115,41,47,97,125,114,101,116,117,114,110,32,114,38,38,111,46,114,101,118,101,114,115,101,40,41,44,111,125,102,117,110,99,116,105,111,110,32,118,40,116,44,101,44,110,41,123,118,97,114,32,114,61,40,101,45,116,41,47,77,97,116,104,46,109,97,120,40,48,44,110,41,44,105,61,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,114,41,47,77,97,116,104,46,76,78,49,48,41,44,111,61,114,47,77,97,116,104,46,112,111,119,40,49,48,44,105,41,59,114,101,116,117,114,110,32,105,62,61,48,63,40,111,62,61,102,63,49,48,58,111,62,61,104,63,53,58,111,62,61,100,63,50,58,49,41,42,77,97,116,104,46,112,111,119,40,49,48,44,105,41,58,45,77,97,116,104,46,112,111,119,40,49,48,44,45,105,41,47,40,111,62,61,102,63,49,48,58,111,62,61,104,63,53,58,111,62,61,100,63,50,58,49,41,125,102,117,110,99,116,105,111,110,32,103,40,116,44,101,44,110,41,123,118,97,114,32,114,61,77,97,116,104,46,97,98,115,40,101,45,116,41,47,77,97,116,104,46,109,97,120,40,48,44,110,41,44,105,61,77,97,116,104,46,112,111,119,40,49,48,44,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,114,41,47,77,97,116,104,46,76,78,49,48,41,41,44,111,61,114,47,105,59,114,101,116,117,114,110,32,111,62,61,102,63,105,42,61,49,48,58,111,62,61,104,63,105,42,61,53,58,111,62,61,100,38,38,40,105,42,61,50,41,44,101,60,116,63,45,105,58,105,125,102,117,110,99,116,105,111,110,32,109,40,116,44,101,41,123,118,97,114,32,110,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,59,105,102,40,110,117,108,108,61,61,101,41,123,119,104,105,108,101,40,43,43,111,60,105,41,105,102,40,110,117,108,108,33,61,40,110,61,116,91,111,93,41,38,38,110,62,61,110,41,123,114,61,110,59,119,104,105,108,101,40,43,43,111,60,105,41,110,117,108,108,33,61,40,110,61,116,91,111,93,41,38,38,110,62,114,38,38,40,114,61,110,41,125,125,101,108,115,101,32,119,104,105,108,101,40,43,43,111,60,105,41,105,102,40,110,117,108,108,33,61,40,110,61,101,40,116,91,111,93,44,111,44,116,41,41,38,38,110,62,61,110,41,123,114,61,110,59,119,104,105,108,101,40,43,43,111,60,105,41,110,117,108,108,33,61,40,110,61,101,40,116,91,111,93,44,111,44,116,41,41,38,38,110,62,114,38,38,40,114,61,110,41,125,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,98,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,116,63,78,97,78,58,43,116,125,102,117,110,99,116,105,111,110,32,121,40,116,44,101,44,110,41,123,105,102,40,110,117,108,108,61,61,110,38,38,40,110,61,98,41,44,114,61,116,46,108,101,110,103,116,104,41,123,105,102,40,40,101,61,43,101,41,60,61,48,124,124,114,60,50,41,114,101,116,117,114,110,43,110,40,116,91,48,93,44,48,44,116,41,59,105,102,40,101,62,61,49,41,114,101,116,117,114,110,43,110,40,116,91,114,45,49,93,44,114,45,49,44,116,41,59,118,97,114,32,114,44,105,61,40,114,45,49,41,42,101,44,111,61,77,97,116,104,46,102,108,111,111,114,40,105,41,44,97,61,43,110,40,116,91,111,93,44,111,44,116,41,44,115,61,43,110,40,116,91,111,43,49,93,44,111,43,49,44,116,41,59,114,101,116,117,114,110,32,97,43,40,115,45,97,41,42,40,105,45,111,41,125,125,102,117,110,99,116,105,111,110,32,119,40,116,44,101,44,110,41,123,116,61,43,116,44,101,61,43,101,44,110,61,40,105,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,60,50,63,40,101,61,116,44,116,61,48,44,49,41,58,105,60,51,63,49,58,43,110,59,118,97,114,32,114,61,45,49,44,105,61,48,124,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,99,101,105,108,40,40,101,45,116,41,47,110,41,41,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,59,119,104,105,108,101,40,43,43,114,60,105,41,111,91,114,93,61,116,43,114,42,110,59,114,101,116,117,114,110,32,111,125,118,97,114,32,95,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,120,40,116,41,123,114,101,116,117,114,110,32,116,125,118,97,114,32,79,61,49,44,83,61,50,44,107,61,51,44,67,61,52,44,80,61,49,101,45,54,59,102,117,110,99,116,105,111,110,32,84,40,116,41,123,114,101,116,117,114,110,34,116,114,97,110,115,108,97,116,101,40,34,43,40,116,43,46,53,41,43,34,44,48,41,34,125,102,117,110,99,116,105,111,110,32,106,40,116,41,123,114,101,116,117,114,110,34,116,114,97,110,115,108,97,116,101,40,48,44,34,43,40,116,43,46,53,41,43,34,41,34,125,102,117,110,99,116,105,111,110,32,69,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,43,116,40,101,41,125,125,102,117,110,99,116,105,111,110,32,68,40,116,41,123,118,97,114,32,101,61,77,97,116,104,46,109,97,120,40,48,44,116,46,98,97,110,100,119,105,100,116,104,40,41,45,49,41,47,50,59,114,101,116,117,114,110,32,116,46,114,111,117,110,100,40,41,38,38,40,101,61,77,97,116,104,46,114,111,117,110,100,40,101,41,41,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,43,116,40,110,41,43,101,125,125,102,117,110,99,116,105,111,110,32,65,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,95,95,97,120,105,115,125,102,117,110,99,116,105,111,110,32,76,40,116,44,101,41,123,118,97,114,32,110,61,91,93,44,114,61,110,117,108,108,44,105,61,110,117,108,108,44,111,61,54,44,97,61,54,44,115,61,51,44,99,61,116,61,61,61,79,124,124,116,61,61,61,67,63,45,49,58,49,44,117,61,116,61,61,61,67,124,124,116,61,61,61,83,63,34,120,34,58,34,121,34,44,108,61,116,61,61,61,79,124,124,116,61,61,61,107,63,84,58,106,59,102,117,110,99,116,105,111,110,32,102,40,102,41,123,118,97,114,32,104,61,110,117,108,108,61,61,114,63,101,46,116,105,99,107,115,63,101,46,116,105,99,107,115,46,97,112,112,108,121,40,101,44,110,41,58,101,46,100,111,109,97,105,110,40,41,58,114,44,100,61,110,117,108,108,61,61,105,63,101,46,116,105,99,107,70,111,114,109,97,116,63,101,46,116,105,99,107,70,111,114,109,97,116,46,97,112,112,108,121,40,101,44,110,41,58,120,58,105,44,112,61,77,97,116,104,46,109,97,120,40,111,44,48,41,43,115,44,118,61,101,46,114,97,110,103,101,40,41,44,103,61,43,118,91,48,93,43,46,53,44,109,61,43,118,91,118,46,108,101,110,103,116,104,45,49,93,43,46,53,44,98,61,40,101,46,98,97,110,100,119,105,100,116,104,63,68,58,69,41,40,101,46,99,111,112,121,40,41,41,44,121,61,102,46,115,101,108,101,99,116,105,111,110,63,102,46,115,101,108,101,99,116,105,111,110,40,41,58,102,44,119,61,121,46,115,101,108,101,99,116,65,108,108,40,34,46,100,111,109,97,105,110,34,41,46,100,97,116,97,40,91,110,117,108,108,93,41,44,95,61,121,46,115,101,108,101,99,116,65,108,108,40,34,46,116,105,99,107,34,41,46,100,97,116,97,40,104,44,101,41,46,111,114,100,101,114,40,41,44,84,61,95,46,101,120,105,116,40,41,44,106,61,95,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,116,105,99,107,34,41,44,76,61,95,46,115,101,108,101,99,116,40,34,108,105,110,101,34,41,44,73,61,95,46,115,101,108,101,99,116,40,34,116,101,120,116,34,41,59,119,61,119,46,109,101,114,103,101,40,119,46,101,110,116,101,114,40,41,46,105,110,115,101,114,116,40,34,112,97,116,104,34,44,34,46,116,105,99,107,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,100,111,109,97,105,110,34,41,46,97,116,116,114,40,34,115,116,114,111,107,101,34,44,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,41,44,95,61,95,46,109,101,114,103,101,40,106,41,44,76,61,76,46,109,101,114,103,101,40,106,46,97,112,112,101,110,100,40,34,108,105,110,101,34,41,46,97,116,116,114,40,34,115,116,114,111,107,101,34,44,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,46,97,116,116,114,40,117,43,34,50,34,44,99,42,111,41,41,44,73,61,73,46,109,101,114,103,101,40,106,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,46,97,116,116,114,40,117,44,99,42,112,41,46,97,116,116,114,40,34,100,121,34,44,116,61,61,61,79,63,34,48,101,109,34,58,116,61,61,61,107,63,34,48,46,55,49,101,109,34,58,34,48,46,51,50,101,109,34,41,41,44,102,33,61,61,121,38,38,40,119,61,119,46,116,114,97,110,115,105,116,105,111,110,40,102,41,44,95,61,95,46,116,114,97,110,115,105,116,105,111,110,40,102,41,44,76,61,76,46,116,114,97,110,115,105,116,105,111,110,40,102,41,44,73,61,73,46,116,114,97,110,115,105,116,105,111,110,40,102,41,44,84,61,84,46,116,114,97,110,115,105,116,105,111,110,40,102,41,46,97,116,116,114,40,34,111,112,97,99,105,116,121,34,44,80,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,61,98,40,116,41,41,63,108,40,116,41,58,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,114,97,110,115,102,111,114,109,34,41,125,41,41,44,106,46,97,116,116,114,40,34,111,112,97,99,105,116,121,34,44,80,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,95,95,97,120,105,115,59,114,101,116,117,114,110,32,108,40,101,38,38,105,115,70,105,110,105,116,101,40,101,61,101,40,116,41,41,63,101,58,98,40,116,41,41,125,41,41,41,44,84,46,114,101,109,111,118,101,40,41,44,119,46,97,116,116,114,40,34,100,34,44,116,61,61,61,67,124,124,116,61,61,83,63,97,63,34,77,34,43,99,42,97,43,34,44,34,43,103,43,34,72,48,46,53,86,34,43,109,43,34,72,34,43,99,42,97,58,34,77,48,46,53,44,34,43,103,43,34,86,34,43,109,58,97,63,34,77,34,43,103,43,34,44,34,43,99,42,97,43,34,86,48,46,53,72,34,43,109,43,34,86,34,43,99,42,97,58,34,77,34,43,103,43,34,44,48,46,53,72,34,43,109,41,44,95,46,97,116,116,114,40,34,111,112,97,99,105,116,121,34,44,49,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,108,40,98,40,116,41,41,125,41,41,44,76,46,97,116,116,114,40,117,43,34,50,34,44,99,42,111,41,44,73,46,97,116,116,114,40,117,44,99,42,112,41,46,116,101,120,116,40,100,41,44,121,46,102,105,108,116,101,114,40,65,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,110,111,110,101,34,41,46,97,116,116,114,40,34,102,111,110,116,45,115,105,122,101,34,44,49,48,41,46,97,116,116,114,40,34,102,111,110,116,45,102,97,109,105,108,121,34,44,34,115,97,110,115,45,115,101,114,105,102,34,41,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,116,61,61,61,83,63,34,115,116,97,114,116,34,58,116,61,61,61,67,63,34,101,110,100,34,58,34,109,105,100,100,108,101,34,41,44,121,46,101,97,99,104,40,40,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,97,120,105,115,61,98,125,41,41,125,114,101,116,117,114,110,32,102,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,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,101,61,116,44,102,41,58,101,125,44,102,46,116,105,99,107,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,61,95,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,102,125,44,102,46,116,105,99,107,65,114,103,117,109,101,110,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,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,110,61,110,117,108,108,61,61,116,63,91,93,58,95,46,99,97,108,108,40,116,41,44,102,41,58,110,46,115,108,105,99,101,40,41,125,44,102,46,116,105,99,107,86,97,108,117,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,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,114,61,110,117,108,108,61,61,116,63,110,117,108,108,58,95,46,99,97,108,108,40,116,41,44,102,41,58,114,38,38,114,46,115,108,105,99,101,40,41,125,44,102,46,116,105,99,107,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,41,123,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,116,44,102,41,58,105,125,44,102,46,116,105,99,107,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,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,111,61,97,61,43,116,44,102,41,58,111,125,44,102,46,116,105,99,107,83,105,122,101,73,110,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,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,111,61,43,116,44,102,41,58,111,125,44,102,46,116,105,99,107,83,105,122,101,79,117,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,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,97,61,43,116,44,102,41,58,97,125,44,102,46,116,105,99,107,80,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,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,115,61,43,116,44,102,41,58,115,125,44,102,125,102,117,110,99,116,105,111,110,32,73,40,116,41,123,114,101,116,117,114,110,32,76,40,79,44,116,41,125,102,117,110,99,116,105,111,110,32,77,40,116,41,123,114,101,116,117,114,110,32,76,40,107,44,116,41,125,102,117,110,99,116,105,111,110,32,36,40,116,41,123,114,101,116,117,114,110,32,76,40,67,44,116,41,125,102,117,110,99,116,105,111,110,32,70,40,41,123,125,102,117,110,99,116,105,111,110,32,82,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,70,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,41,125,125,102,117,110,99,116,105,111,110,32,78,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,116,38,38,40,116,61,82,40,116,41,41,59,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,95,103,114,111,117,112,115,44,110,61,101,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,110,41,44,105,61,48,59,105,60,110,59,43,43,105,41,102,111,114,40,118,97,114,32,111,44,97,44,115,61,101,91,105,93,44,99,61,115,46,108,101,110,103,116,104,44,117,61,114,91,105,93,61,110,101,119,32,65,114,114,97,121,40,99,41,44,108,61,48,59,108,60,99,59,43,43,108,41,40,111,61,115,91,108,93,41,38,38,40,97,61,116,46,99,97,108,108,40,111,44,111,46,95,95,100,97,116,97,95,95,44,108,44,115,41,41,38,38,40,34,95,95,100,97,116,97,95,95,34,105,110,32,111,38,38,40,97,46,95,95,100,97,116,97,95,95,61,111,46,95,95,100,97,116,97,95,95,41,44,117,91,108,93,61,97,41,59,114,101,116,117,114,110,32,110,101,119,32,83,101,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,66,40,41,123,114,101,116,117,114,110,91,93,125,102,117,110,99,116,105,111,110,32,122,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,66,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,41,125,125,102,117,110,99,116,105,111,110,32,86,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,116,38,38,40,116,61,122,40,116,41,41,59,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,95,103,114,111,117,112,115,44,110,61,101,46,108,101,110,103,116,104,44,114,61,91,93,44,105,61,91,93,44,111,61,48,59,111,60,110,59,43,43,111,41,102,111,114,40,118,97,114,32,97,44,115,61,101,91,111,93,44,99,61,115,46,108,101,110,103,116,104,44,117,61,48,59,117,60,99,59,43,43,117,41,40,97,61,115,91,117,93,41,38,38,40,114,46,112,117,115,104,40,116,46,99,97,108,108,40,97,44,97,46,95,95,100,97,116,97,95,95,44,117,44,115,41,41,44,105,46,112,117,115,104,40,97,41,41,59,114,101,116,117,114,110,32,110,101,119,32,83,101,40,114,44,105,41,125,102,117,110,99,116,105,111,110,32,72,40,116,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,109,97,116,99,104,101,115,40,116,41,125,125,102,117,110,99,116,105,111,110,32,85,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,116,38,38,40,116,61,72,40,116,41,41,59,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,95,103,114,111,117,112,115,44,110,61,101,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,110,41,44,105,61,48,59,105,60,110,59,43,43,105,41,102,111,114,40,118,97,114,32,111,44,97,61,101,91,105,93,44,115,61,97,46,108,101,110,103,116,104,44,99,61,114,91,105,93,61,91,93,44,117,61,48,59,117,60,115,59,43,43,117,41,40,111,61,97,91,117,93,41,38,38,116,46,99,97,108,108,40,111,44,111,46,95,95,100,97,116,97,95,95,44,117,44,97,41,38,38,99,46,112,117,115,104,40,111,41,59,114,101,116,117,114,110,32,110,101,119,32,83,101,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,87,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,65,114,114,97,121,40,116,46,108,101,110,103,116,104,41,125,102,117,110,99,116,105,111,110,32,71,40,41,123,114,101,116,117,114,110,32,110,101,119,32,83,101,40,116,104,105,115,46,95,101,110,116,101,114,124,124,116,104,105,115,46,95,103,114,111,117,112,115,46,109,97,112,40,87,41,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,113,40,116,44,101,41,123,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,116,104,105,115,46,110,97,109,101,115,112,97,99,101,85,82,73,61,116,46,110,97,109,101,115,112,97,99,101,85,82,73,44,116,104,105,115,46,95,110,101,120,116,61,110,117,108,108,44,116,104,105,115,46,95,112,97,114,101,110,116,61,116,44,116,104,105,115,46,95,95,100,97,116,97,95,95,61,101,125,102,117,110,99,116,105,111,110,32,89,40,116,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,125,125,113,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,113,44,97,112,112,101,110,100,67,104,105,108,100,58,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,112,97,114,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,116,104,105,115,46,95,110,101,120,116,41,125,44,105,110,115,101,114,116,66,101,102,111,114,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,114,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,101,41,125,44,113,117,101,114,121,83,101,108,101,99,116,111,114,58,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,112,97,114,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,41,125,44,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,58,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,112,97,114,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,41,125,125,59,118,97,114,32,75,61,34,36,34,59,102,117,110,99,116,105,111,110,32,88,40,116,44,101,44,110,44,114,44,105,44,111,41,123,102,111,114,40,118,97,114,32,97,44,115,61,48,44,99,61,101,46,108,101,110,103,116,104,44,117,61,111,46,108,101,110,103,116,104,59,115,60,117,59,43,43,115,41,40,97,61,101,91,115,93,41,63,40,97,46,95,95,100,97,116,97,95,95,61,111,91,115,93,44,114,91,115,93,61,97,41,58,110,91,115,93,61,110,101,119,32,113,40,116,44,111,91,115,93,41,59,102,111,114,40,59,115,60,99,59,43,43,115,41,40,97,61,101,91,115,93,41,38,38,40,105,91,115,93,61,97,41,125,102,117,110,99,116,105,111,110,32,90,40,116,44,101,44,110,44,114,44,105,44,111,44,97,41,123,118,97,114,32,115,44,99,44,117,44,108,61,123,125,44,102,61,101,46,108,101,110,103,116,104,44,104,61,111,46,108,101,110,103,116,104,44,100,61,110,101,119,32,65,114,114,97,121,40,102,41,59,102,111,114,40,115,61,48,59,115,60,102,59,43,43,115,41,40,99,61,101,91,115,93,41,38,38,40,100,91,115,93,61,117,61,75,43,97,46,99,97,108,108,40,99,44,99,46,95,95,100,97,116,97,95,95,44,115,44,101,41,44,117,32,105,110,32,108,63,105,91,115,93,61,99,58,108,91,117,93,61,99,41,59,102,111,114,40,115,61,48,59,115,60,104,59,43,43,115,41,117,61,75,43,97,46,99,97,108,108,40,116,44,111,91,115,93,44,115,44,111,41,44,40,99,61,108,91,117,93,41,63,40,114,91,115,93,61,99,44,99,46,95,95,100,97,116,97,95,95,61,111,91,115,93,44,108,91,117,93,61,110,117,108,108,41,58,110,91,115,93,61,110,101,119,32,113,40,116,44,111,91,115,93,41,59,102,111,114,40,115,61,48,59,115,60,102,59,43,43,115,41,40,99,61,101,91,115,93,41,38,38,108,91,100,91,115,93,93,61,61,61,99,38,38,40,105,91,115,93,61,99,41,125,102,117,110,99,116,105,111,110,32,74,40,116,44,101,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,100,61,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,115,105,122,101,40,41,41,44,117,61,45,49,44,116,104,105,115,46,101,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,100,91,43,43,117,93,61,116,125,41,41,44,100,59,118,97,114,32,110,61,101,63,90,58,88,44,114,61,116,104,105,115,46,95,112,97,114,101,110,116,115,44,105,61,116,104,105,115,46,95,103,114,111,117,112,115,59,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,116,38,38,40,116,61,89,40,116,41,41,59,102,111,114,40,118,97,114,32,111,61,105,46,108,101,110,103,116,104,44,97,61,110,101,119,32,65,114,114,97,121,40,111,41,44,115,61,110,101,119,32,65,114,114,97,121,40,111,41,44,99,61,110,101,119,32,65,114,114,97,121,40,111,41,44,117,61,48,59,117,60,111,59,43,43,117,41,123,118,97,114,32,108,61,114,91,117,93,44,102,61,105,91,117,93,44,104,61,102,46,108,101,110,103,116,104,44,100,61,116,46,99,97,108,108,40,108,44,108,38,38,108,46,95,95,100,97,116,97,95,95,44,117,44,114,41,44,112,61,100,46,108,101,110,103,116,104,44,118,61,115,91,117,93,61,110,101,119,32,65,114,114,97,121,40,112,41,44,103,61,97,91,117,93,61,110,101,119,32,65,114,114,97,121,40,112,41,44,109,61,99,91,117,93,61,110,101,119,32,65,114,114,97,121,40,104,41,59,110,40,108,44,102,44,118,44,103,44,109,44,100,44,101,41,59,102,111,114,40,118,97,114,32,98,44,121,44,119,61,48,44,95,61,48,59,119,60,112,59,43,43,119,41,105,102,40,98,61,118,91,119,93,41,123,119,62,61,95,38,38,40,95,61,119,43,49,41,59,119,104,105,108,101,40,33,40,121,61,103,91,95,93,41,38,38,43,43,95,60,112,41,59,98,46,95,110,101,120,116,61,121,124,124,110,117,108,108,125,125,114,101,116,117,114,110,32,97,61,110,101,119,32,83,101,40,97,44,114,41,44,97,46,95,101,110,116,101,114,61,115,44,97,46,95,101,120,105,116,61,99,44,97,125,102,117,110,99,116,105,111,110,32,81,40,41,123,114,101,116,117,114,110,32,110,101,119,32,83,101,40,116,104,105,115,46,95,101,120,105,116,124,124,116,104,105,115,46,95,103,114,111,117,112,115,46,109,97,112,40,87,41,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,116,116,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,46,101,110,116,101,114,40,41,44,105,61,116,104,105,115,44,111,61,116,104,105,115,46,101,120,105,116,40,41,59,114,101,116,117,114,110,32,114,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,116,40,114,41,58,114,46,97,112,112,101,110,100,40,116,43,34,34,41,44,110,117,108,108,33,61,101,38,38,40,105,61,101,40,105,41,41,44,110,117,108,108,61,61,110,63,111,46,114,101,109,111,118,101,40,41,58,110,40,111,41,44,114,38,38,105,63,114,46,109,101,114,103,101,40,105,41,46,111,114,100,101,114,40,41,58,105,125,102,117,110,99,116,105,111,110,32,101,116,40,116,41,123,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,95,103,114,111,117,112,115,44,110,61,116,46,95,103,114,111,117,112,115,44,114,61,101,46,108,101,110,103,116,104,44,105,61,110,46,108,101,110,103,116,104,44,111,61,77,97,116,104,46,109,105,110,40,114,44,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,44,115,61,48,59,115,60,111,59,43,43,115,41,102,111,114,40,118,97,114,32,99,44,117,61,101,91,115,93,44,108,61,110,91,115,93,44,102,61,117,46,108,101,110,103,116,104,44,104,61,97,91,115,93,61,110,101,119,32,65,114,114,97,121,40,102,41,44,100,61,48,59,100,60,102,59,43,43,100,41,40,99,61,117,91,100,93,124,124,108,91,100,93,41,38,38,40,104,91,100,93,61,99,41,59,102,111,114,40,59,115,60,114,59,43,43,115,41,97,91,115,93,61,101,91,115,93,59,114,101,116,117,114,110,32,110,101,119,32,83,101,40,97,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,110,116,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,45,49,44,110,61,116,46,108,101,110,103,116,104,59,43,43,101,60,110,59,41,102,111,114,40,118,97,114,32,114,44,105,61,116,91,101,93,44,111,61,105,46,108,101,110,103,116,104,45,49,44,97,61,105,91,111,93,59,45,45,111,62,61,48,59,41,40,114,61,105,91,111,93,41,38,38,40,97,38,38,52,94,114,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,97,41,38,38,97,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,114,44,97,41,44,97,61,114,41,59,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,114,116,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,110,63,116,40,101,46,95,95,100,97,116,97,95,95,44,110,46,95,95,100,97,116,97,95,95,41,58,33,101,45,33,110,125,116,124,124,40,116,61,105,116,41,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,114,61,110,46,108,101,110,103,116,104,44,105,61,110,101,119,32,65,114,114,97,121,40,114,41,44,111,61,48,59,111,60,114,59,43,43,111,41,123,102,111,114,40,118,97,114,32,97,44,115,61,110,91,111,93,44,99,61,115,46,108,101,110,103,116,104,44,117,61,105,91,111,93,61,110,101,119,32,65,114,114,97,121,40,99,41,44,108,61,48,59,108,60,99,59,43,43,108,41,40,97,61,115,91,108,93,41,38,38,40,117,91,108,93,61,97,41,59,117,46,115,111,114,116,40,101,41,125,114,101,116,117,114,110,32,110,101,119,32,83,101,40,105,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,46,111,114,100,101,114,40,41,125,102,117,110,99,116,105,111,110,32,105,116,40,116,44,101,41,123,114,101,116,117,114,110,32,116,60,101,63,45,49,58,116,62,101,63,49,58,116,62,61,101,63,48,58,78,97,78,125,102,117,110,99,116,105,111,110,32,111,116,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,91,48,93,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,91,48,93,61,116,104,105,115,44,116,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,102,117,110,99,116,105,111,110,32,97,116,40,41,123,118,97,114,32,116,61,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,115,105,122,101,40,41,41,44,101,61,45,49,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,102,117,110,99,116,105,111,110,40,41,123,116,91,43,43,101,93,61,116,104,105,115,125,41,41,44,116,125,102,117,110,99,116,105,111,110,32,115,116,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,48,44,110,61,116,46,108,101,110,103,116,104,59,101,60,110,59,43,43,101,41,102,111,114,40,118,97,114,32,114,61,116,91,101,93,44,105,61,48,44,111,61,114,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,123,118,97,114,32,97,61,114,91,105,93,59,105,102,40,97,41,114,101,116,117,114,110,32,97,125,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,99,116,40,41,123,118,97,114,32,116,61,48,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,102,117,110,99,116,105,111,110,40,41,123,43,43,116,125,41,41,44,116,125,102,117,110,99,116,105,111,110,32,117,116,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,110,111,100,101,40,41,125,102,117,110,99,116,105,111,110,32,108,116,40,116,41,123,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,95,103,114,111,117,112,115,44,110,61,48,44,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,43,43,110,41,102,111,114,40,118,97,114,32,105,44,111,61,101,91,110,93,44,97,61,48,44,115,61,111,46,108,101,110,103,116,104,59,97,60,115,59,43,43,97,41,40,105,61,111,91,97,93,41,38,38,116,46,99,97,108,108,40,105,44,105,46,95,95,100,97,116,97,95,95,44,97,44,111,41,59,114,101,116,117,114,110,32,116,104,105,115,125,118,97,114,32,102,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,104,116,109,108,34,44,104,116,61,123,115,118,103,58,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,120,104,116,109,108,58,102,116,44,120,108,105,110,107,58,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,120,109,108,58,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,120,109,108,110,115,58,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,120,109,108,110,115,47,34,125,59,102,117,110,99,116,105,111,110,32,100,116,40,116,41,123,118,97,114,32,101,61,116,43,61,34,34,44,110,61,101,46,105,110,100,101,120,79,102,40,34,58,34,41,59,114,101,116,117,114,110,32,110,62,61,48,38,38,34,120,109,108,110,115,34,33,61,61,40,101,61,116,46,115,108,105,99,101,40,48,44,110,41,41,38,38,40,116,61,116,46,115,108,105,99,101,40,110,43,49,41,41,44,104,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,101,41,63,123,115,112,97,99,101,58,104,116,91,101,93,44,108,111,99,97,108,58,116,125,58,116,125,102,117,110,99,116,105,111,110,32,112,116,40,116,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,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,125,102,117,110,99,116,105,111,110,32,118,116,40,116,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,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,102,117,110,99,116,105,111,110,32,103,116,40,116,44,101,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,101,116,65,116,116,114,105,98,117,116,101,40,116,44,101,41,125,125,102,117,110,99,116,105,111,110,32,109,116,40,116,44,101,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,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,44,101,41,125,125,102,117,110,99,116,105,111,110,32,98,116,40,116,44,101,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,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,110,63,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,58,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,41,125,125,102,117,110,99,116,105,111,110,32,121,116,40,116,44,101,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,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,110,63,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,58,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,44,110,41,125,125,102,117,110,99,116,105,111,110,32,119,116,40,116,44,101,41,123,118,97,114,32,110,61,100,116,40,116,41,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,123,118,97,114,32,114,61,116,104,105,115,46,110,111,100,101,40,41,59,114,101,116,117,114,110,32,110,46,108,111,99,97,108,63,114,46,103,101,116,65,116,116,114,105,98,117,116,101,78,83,40,110,46,115,112,97,99,101,44,110,46,108,111,99,97,108,41,58,114,46,103,101,116,65,116,116,114,105,98,117,116,101,40,110,41,125,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,101,63,110,46,108,111,99,97,108,63,118,116,58,112,116,58,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,110,46,108,111,99,97,108,63,121,116,58,98,116,58,110,46,108,111,99,97,108,63,109,116,58,103,116,41,40,110,44,101,41,41,125,102,117,110,99,116,105,111,110,32,95,116,40,116,41,123,114,101,116,117,114,110,32,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,38,38,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,124,124,116,46,100,111,99,117,109,101,110,116,38,38,116,124,124,116,46,100,101,102,97,117,108,116,86,105,101,119,125,102,117,110,99,116,105,111,110,32,120,116,40,116,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,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,125,125,102,117,110,99,116,105,111,110,32,79,116,40,116,44,101,44,110,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,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,101,44,110,41,125,125,102,117,110,99,116,105,111,110,32,83,116,40,116,44,101,44,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,114,61,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,114,63,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,58,116,104,105,115,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,114,44,110,41,125,125,102,117,110,99,116,105,111,110,32,107,116,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,101,63,120,116,58,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,83,116,58,79,116,41,40,116,44,101,44,110,117,108,108,61,61,110,63,34,34,58,110,41,41,58,67,116,40,116,104,105,115,46,110,111,100,101,40,41,44,116,41,125,102,117,110,99,116,105,111,110,32,67,116,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,101,41,124,124,95,116,40,116,41,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,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,101,41,125,102,117,110,99,116,105,111,110,32,80,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,100,101,108,101,116,101,32,116,104,105,115,91,116,93,125,125,102,117,110,99,116,105,111,110,32,84,116,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,91,116,93,61,101,125,125,102,117,110,99,116,105,111,110,32,106,116,40,116,44,101,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,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,110,63,100,101,108,101,116,101,32,116,104,105,115,91,116,93,58,116,104,105,115,91,116,93,61,110,125,125,102,117,110,99,116,105,111,110,32,69,116,40,116,44,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,101,63,80,116,58,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,106,116,58,84,116,41,40,116,44,101,41,41,58,116,104,105,115,46,110,111,100,101,40,41,91,116,93,125,102,117,110,99,116,105,111,110,32,68,116,40,116,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,125,102,117,110,99,116,105,111,110,32,65,116,40,116,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,124,124,110,101,119,32,76,116,40,116,41,125,102,117,110,99,116,105,111,110,32,76,116,40,116,41,123,116,104,105,115,46,95,110,111,100,101,61,116,44,116,104,105,115,46,95,110,97,109,101,115,61,68,116,40,116,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,102,117,110,99,116,105,111,110,32,73,116,40,116,44,101,41,123,118,97,114,32,110,61,65,116,40,116,41,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,114,60,105,41,110,46,97,100,100,40,101,91,114,93,41,125,102,117,110,99,116,105,111,110,32,77,116,40,116,44,101,41,123,118,97,114,32,110,61,65,116,40,116,41,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,114,60,105,41,110,46,114,101,109,111,118,101,40,101,91,114,93,41,125,102,117,110,99,116,105,111,110,32,36,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,73,116,40,116,104,105,115,44,116,41,125,125,102,117,110,99,116,105,111,110,32,70,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,77,116,40,116,104,105,115,44,116,41,125,125,102,117,110,99,116,105,111,110,32,82,116,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,40,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,63,73,116,58,77,116,41,40,116,104,105,115,44,116,41,125,125,102,117,110,99,116,105,111,110,32,78,116,40,116,44,101,41,123,118,97,114,32,110,61,68,116,40,116,43,34,34,41,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,123,118,97,114,32,114,61,65,116,40,116,104,105,115,46,110,111,100,101,40,41,41,44,105,61,45,49,44,111,61,110,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,105,60,111,41,105,102,40,33,114,46,99,111,110,116,97,105,110,115,40,110,91,105,93,41,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,82,116,58,101,63,36,116,58,70,116,41,40,110,44,101,41,41,125,102,117,110,99,116,105,111,110,32,66,116,40,41,123,116,104,105,115,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,122,116,40,116,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,116,101,120,116,67,111,110,116,101,110,116,61,116,125,125,102,117,110,99,116,105,111,110,32,86,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,110,117,108,108,61,61,101,63,34,34,58,101,125,125,102,117,110,99,116,105,111,110,32,72,116,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,110,117,108,108,61,61,116,63,66,116,58,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,86,116,58,122,116,41,40,116,41,41,58,116,104,105,115,46,110,111,100,101,40,41,46,116,101,120,116,67,111,110,116,101,110,116,125,102,117,110,99,116,105,111,110,32,85,116,40,41,123,116,104,105,115,46,105,110,110,101,114,72,84,77,76,61,34,34,125,102,117,110,99,116,105,111,110,32,87,116,40,116,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,105,110,110,101,114,72,84,77,76,61,116,125,125,102,117,110,99,116,105,111,110,32,71,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,116,104,105,115,46,105,110,110,101,114,72,84,77,76,61,110,117,108,108,61,61,101,63,34,34,58,101,125,125,102,117,110,99,116,105,111,110,32,113,116,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,110,117,108,108,61,61,116,63,85,116,58,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,71,116,58,87,116,41,40,116,41,41,58,116,104,105,115,46,110,111,100,101,40,41,46,105,110,110,101,114,72,84,77,76,125,102,117,110,99,116,105,111,110,32,89,116,40,41,123,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,105,115,41,125,102,117,110,99,116,105,111,110,32,75,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,89,116,41,125,102,117,110,99,116,105,111,110,32,88,116,40,41,123,116,104,105,115,46,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,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,116,104,105,115,44,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,102,105,114,115,116,67,104,105,108,100,41,125,102,117,110,99,116,105,111,110,32,90,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,88,116,41,125,102,117,110,99,116,105,111,110,32,74,116,40,116,41,123,114,101,116,117,114,110,32,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,44,110,61,116,104,105,115,46,110,97,109,101,115,112,97,99,101,85,82,73,59,114,101,116,117,114,110,32,110,61,61,61,102,116,38,38,101,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,110,97,109,101,115,112,97,99,101,85,82,73,61,61,61,102,116,63,101,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,116,41,58,101,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,81,116,40,116,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,111,119,110,101,114,68,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,102,117,110,99,116,105,111,110,32,116,101,40,116,41,123,118,97,114,32,101,61,100,116,40,116,41,59,114,101,116,117,114,110,40,101,46,108,111,99,97,108,63,81,116,58,74,116,41,40,101,41,125,102,117,110,99,116,105,111,110,32,101,101,40,116,41,123,118,97,114,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,116,58,116,101,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,112,112,101,110,100,67,104,105,108,100,40,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,41,41,125,102,117,110,99,116,105,111,110,32,110,101,40,41,123,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,114,101,40,116,44,101,41,123,118,97,114,32,110,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,116,58,116,101,40,116,41,44,114,61,110,117,108,108,61,61,101,63,110,101,58,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,101,58,82,40,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,40,40,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,115,101,114,116,66,101,102,111,114,101,40,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,124,124,110,117,108,108,41,125,41,41,125,102,117,110,99,116,105,111,110,32,105,101,40,41,123,118,97,114,32,116,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,116,38,38,116,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,41,125,102,117,110,99,116,105,111,110,32,111,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,105,101,41,125,102,117,110,99,116,105,111,110,32,97,101,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,108,111,110,101,78,111,100,101,40,33,49,41,44,101,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,101,63,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,58,116,125,102,117,110,99,116,105,111,110,32,115,101,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,108,111,110,101,78,111,100,101,40,33,48,41,44,101,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,101,63,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,58,116,125,102,117,110,99,116,105,111,110,32,99,101,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,40,116,63,115,101,58,97,101,41,125,102,117,110,99,116,105,111,110,32,117,101,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,112,114,111,112,101,114,116,121,40,34,95,95,100,97,116,97,95,95,34,44,116,41,58,116,104,105,115,46,110,111,100,101,40,41,46,95,95,100,97,116,97,95,95,125,76,116,46,112,114,111,116,111,116,121,112,101,61,123,97,100,100,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,110,97,109,101,115,46,105,110,100,101,120,79,102,40,116,41,59,101,60,48,38,38,40,116,104,105,115,46,95,110,97,109,101,115,46,112,117,115,104,40,116,41,44,116,104,105,115,46,95,110,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,116,104,105,115,46,95,110,97,109,101,115,46,106,111,105,110,40,34,32,34,41,41,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,110,97,109,101,115,46,105,110,100,101,120,79,102,40,116,41,59,101,62,61,48,38,38,40,116,104,105,115,46,95,110,97,109,101,115,46,115,112,108,105,99,101,40,101,44,49,41,44,116,104,105,115,46,95,110,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,116,104,105,115,46,95,110,97,109,101,115,46,106,111,105,110,40,34,32,34,41,41,41,125,44,99,111,110,116,97,105,110,115,58,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,110,97,109,101,115,46,105,110,100,101,120,79,102,40,116,41,62,61,48,125,125,59,118,97,114,32,108,101,61,123,125,44,102,101,61,110,117,108,108,59,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,41,123,118,97,114,32,104,101,61,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,34,111,110,109,111,117,115,101,101,110,116,101,114,34,105,110,32,104,101,124,124,40,108,101,61,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,125,41,125,102,117,110,99,116,105,111,110,32,100,101,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,61,112,101,40,116,44,101,44,110,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,101,46,114,101,108,97,116,101,100,84,97,114,103,101,116,59,110,38,38,40,110,61,61,61,116,104,105,115,124,124,56,38,110,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,104,105,115,41,41,124,124,116,46,99,97,108,108,40,116,104,105,115,44,101,41,125,125,102,117,110,99,116,105,111,110,32,112,101,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,105,61,102,101,59,102,101,61,114,59,116,114,121,123,116,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,46,95,95,100,97,116,97,95,95,44,101,44,110,41,125,102,105,110,97,108,108,121,123,102,101,61,105,125,125,125,102,117,110,99,116,105,111,110,32,118,101,40,116,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,34,44,110,61,116,46,105,110,100,101,120,79,102,40,34,46,34,41,59,114,101,116,117,114,110,32,110,62,61,48,38,38,40,101,61,116,46,115,108,105,99,101,40,110,43,49,41,44,116,61,116,46,115,108,105,99,101,40,48,44,110,41,41,44,123,116,121,112,101,58,116,44,110,97,109,101,58,101,125,125,41,41,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,41,123,118,97,114,32,101,61,116,104,105,115,46,95,95,111,110,59,105,102,40,101,41,123,102,111,114,40,118,97,114,32,110,44,114,61,48,44,105,61,45,49,44,111,61,101,46,108,101,110,103,116,104,59,114,60,111,59,43,43,114,41,110,61,101,91,114,93,44,116,46,116,121,112,101,38,38,110,46,116,121,112,101,33,61,61,116,46,116,121,112,101,124,124,110,46,110,97,109,101,33,61,61,116,46,110,97,109,101,63,101,91,43,43,105,93,61,110,58,116,104,105,115,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,46,116,121,112,101,44,110,46,108,105,115,116,101,110,101,114,44,110,46,99,97,112,116,117,114,101,41,59,43,43,105,63,101,46,108,101,110,103,116,104,61,105,58,100,101,108,101,116,101,32,116,104,105,115,46,95,95,111,110,125,125,125,102,117,110,99,116,105,111,110,32,109,101,40,116,44,101,44,110,41,123,118,97,114,32,114,61,108,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,63,100,101,58,112,101,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,105,44,111,44,97,41,123,118,97,114,32,115,44,99,61,116,104,105,115,46,95,95,111,110,44,117,61,114,40,101,44,111,44,97,41,59,105,102,40,99,41,102,111,114,40,118,97,114,32,108,61,48,44,102,61,99,46,108,101,110,103,116,104,59,108,60,102,59,43,43,108,41,105,102,40,40,115,61,99,91,108,93,41,46,116,121,112,101,61,61,61,116,46,116,121,112,101,38,38,115,46,110,97,109,101,61,61,61,116,46,110,97,109,101,41,114,101,116,117,114,110,32,116,104,105,115,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,115,46,116,121,112,101,44,115,46,108,105,115,116,101,110,101,114,44,115,46,99,97,112,116,117,114,101,41,44,116,104,105,115,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,115,46,116,121,112,101,44,115,46,108,105,115,116,101,110,101,114,61,117,44,115,46,99,97,112,116,117,114,101,61,110,41,44,118,111,105,100,40,115,46,118,97,108,117,101,61,101,41,59,116,104,105,115,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,46,116,121,112,101,44,117,44,110,41,44,115,61,123,116,121,112,101,58,116,46,116,121,112,101,44,110,97,109,101,58,116,46,110,97,109,101,44,118,97,108,117,101,58,101,44,108,105,115,116,101,110,101,114,58,117,44,99,97,112,116,117,114,101,58,110,125,44,99,63,99,46,112,117,115,104,40,115,41,58,116,104,105,115,46,95,95,111,110,61,91,115,93,125,125,102,117,110,99,116,105,111,110,32,98,101,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,111,61,118,101,40,116,43,34,34,41,44,97,61,111,46,108,101,110,103,116,104,59,105,102,40,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,41,123,102,111,114,40,115,61,101,63,109,101,58,103,101,44,110,117,108,108,61,61,110,38,38,40,110,61,33,49,41,44,114,61,48,59,114,60,97,59,43,43,114,41,116,104,105,115,46,101,97,99,104,40,115,40,111,91,114,93,44,101,44,110,41,41,59,114,101,116,117,114,110,32,116,104,105,115,125,118,97,114,32,115,61,116,104,105,115,46,110,111,100,101,40,41,46,95,95,111,110,59,105,102,40,115,41,102,111,114,40,118,97,114,32,99,44,117,61,48,44,108,61,115,46,108,101,110,103,116,104,59,117,60,108,59,43,43,117,41,102,111,114,40,114,61,48,44,99,61,115,91,117,93,59,114,60,97,59,43,43,114,41,105,102,40,40,105,61,111,91,114,93,41,46,116,121,112,101,61,61,61,99,46,116,121,112,101,38,38,105,46,110,97,109,101,61,61,61,99,46,110,97,109,101,41,114,101,116,117,114,110,32,99,46,118,97,108,117,101,125,102,117,110,99,116,105,111,110,32,121,101,40,116,44,101,44,110,41,123,118,97,114,32,114,61,95,116,40,116,41,44,105,61,114,46,67,117,115,116,111,109,69,118,101,110,116,59,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,105,63,105,61,110,101,119,32,105,40,101,44,110,41,58,40,105,61,114,46,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,118,101,110,116,40,34,69,118,101,110,116,34,41,44,110,63,40,105,46,105,110,105,116,69,118,101,110,116,40,101,44,110,46,98,117,98,98,108,101,115,44,110,46,99,97,110,99,101,108,97,98,108,101,41,44,105,46,100,101,116,97,105,108,61,110,46,100,101,116,97,105,108,41,58,105,46,105,110,105,116,69,118,101,110,116,40,101,44,33,49,44,33,49,41,41,44,116,46,100,105,115,112,97,116,99,104,69,118,101,110,116,40,105,41,125,102,117,110,99,116,105,111,110,32,119,101,40,116,44,101,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,121,101,40,116,104,105,115,44,116,44,101,41,125,125,102,117,110,99,116,105,111,110,32,95,101,40,116,44,101,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,121,101,40,116,104,105,115,44,116,44,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,125,102,117,110,99,116,105,111,110,32,120,101,40,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,95,101,58,119,101,41,40,116,44,101,41,41,125,118,97,114,32,79,101,61,91,110,117,108,108,93,59,102,117,110,99,116,105,111,110,32,83,101,40,116,44,101,41,123,116,104,105,115,46,95,103,114,111,117,112,115,61,116,44,116,104,105,115,46,95,112,97,114,101,110,116,115,61,101,125,102,117,110,99,116,105,111,110,32,107,101,40,41,123,114,101,116,117,114,110,32,110,101,119,32,83,101,40,91,91,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,93,93,44,79,101,41,125,83,101,46,112,114,111,116,111,116,121,112,101,61,107,101,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,83,101,44,115,101,108,101,99,116,58,78,44,115,101,108,101,99,116,65,108,108,58,86,44,102,105,108,116,101,114,58,85,44,100,97,116,97,58,74,44,101,110,116,101,114,58,71,44,101,120,105,116,58,81,44,106,111,105,110,58,116,116,44,109,101,114,103,101,58,101,116,44,111,114,100,101,114,58,110,116,44,115,111,114,116,58,114,116,44,99,97,108,108,58,111,116,44,110,111,100,101,115,58,97,116,44,110,111,100,101,58,115,116,44,115,105,122,101,58,99,116,44,101,109,112,116,121,58,117,116,44,101,97,99,104,58,108,116,44,97,116,116,114,58,119,116,44,115,116,121,108,101,58,107,116,44,112,114,111,112,101,114,116,121,58,69,116,44,99,108,97,115,115,101,100,58,78,116,44,116,101,120,116,58,72,116,44,104,116,109,108,58,113,116,44,114,97,105,115,101,58,75,116,44,108,111,119,101,114,58,90,116,44,97,112,112,101,110,100,58,101,101,44,105,110,115,101,114,116,58,114,101,44,114,101,109,111,118,101,58,111,101,44,99,108,111,110,101,58,99,101,44,100,97,116,117,109,58,117,101,44,111,110,58,98,101,44,100,105,115,112,97,116,99,104,58,120,101,125,59,118,97,114,32,67,101,61,107,101,44,80,101,61,123,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,125,125,59,102,117,110,99,116,105,111,110,32,84,101,40,41,123,102,111,114,40,118,97,114,32,116,44,101,61,48,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,114,61,123,125,59,101,60,110,59,43,43,101,41,123,105,102,40,33,40,116,61,97,114,103,117,109,101,110,116,115,91,101,93,43,34,34,41,124,124,116,32,105,110,32,114,124,124,47,91,92,115,46,93,47,46,116,101,115,116,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,108,108,101,103,97,108,32,116,121,112,101,58,32,34,43,116,41,59,114,91,116,93,61,91,93,125,114,101,116,117,114,110,32,110,101,119,32,106,101,40,114,41,125,102,117,110,99,116,105,111,110,32,106,101,40,116,41,123,116,104,105,115,46,95,61,116,125,102,117,110,99,116,105,111,110,32,69,101,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,34,34,44,114,61,116,46,105,110,100,101,120,79,102,40,34,46,34,41,59,105,102,40,114,62,61,48,38,38,40,110,61,116,46,115,108,105,99,101,40,114,43,49,41,44,116,61,116,46,115,108,105,99,101,40,48,44,114,41,41,44,116,38,38,33,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,117,110,107,110,111,119,110,32,116,121,112,101,58,32,34,43,116,41,59,114,101,116,117,114,110,123,116,121,112,101,58,116,44,110,97,109,101,58,110,125,125,41,41,125,102,117,110,99,116,105,111,110,32,68,101,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,44,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,60,105,59,43,43,114,41,105,102,40,40,110,61,116,91,114,93,41,46,110,97,109,101,61,61,61,101,41,114,101,116,117,114,110,32,110,46,118,97,108,117,101,125,102,117,110,99,116,105,111,110,32,65,101,40,116,44,101,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,43,43,114,41,105,102,40,116,91,114,93,46,110,97,109,101,61,61,61,101,41,123,116,91,114,93,61,80,101,44,116,61,116,46,115,108,105,99,101,40,48,44,114,41,46,99,111,110,99,97,116,40,116,46,115,108,105,99,101,40,114,43,49,41,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,116,46,112,117,115,104,40,123,110,97,109,101,58,101,44,118,97,108,117,101,58,110,125,41,44,116,125,106,101,46,112,114,111,116,111,116,121,112,101,61,84,101,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,106,101,44,111,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,116,104,105,115,46,95,44,105,61,69,101,40,116,43,34,34,44,114,41,44,111,61,45,49,44,97,61,105,46,108,101,110,103,116,104,59,105,102,40,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,41,123,105,102,40,110,117,108,108,33,61,101,38,38,34,102,117,110,99,116,105,111,110,34,33,61,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,105,110,118,97,108,105,100,32,99,97,108,108,98,97,99,107,58,32,34,43,101,41,59,119,104,105,108,101,40,43,43,111,60,97,41,105,102,40,110,61,40,116,61,105,91,111,93,41,46,116,121,112,101,41,114,91,110,93,61,65,101,40,114,91,110,93,44,116,46,110,97,109,101,44,101,41,59,101,108,115,101,32,105,102,40,110,117,108,108,61,61,101,41,102,111,114,40,110,32,105,110,32,114,41,114,91,110,93,61,65,101,40,114,91,110,93,44,116,46,110,97,109,101,44,110,117,108,108,41,59,114,101,116,117,114,110,32,116,104,105,115,125,119,104,105,108,101,40,43,43,111,60,97,41,105,102,40,40,110,61,40,116,61,105,91,111,93,41,46,116,121,112,101,41,38,38,40,110,61,68,101,40,114,91,110,93,44,116,46,110,97,109,101,41,41,41,114,101,116,117,114,110,32,110,125,44,99,111,112,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,125,44,101,61,116,104,105,115,46,95,59,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,116,91,110,93,61,101,91,110,93,46,115,108,105,99,101,40,41,59,114,101,116,117,114,110,32,110,101,119,32,106,101,40,116,41,125,44,99,97,108,108,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,40,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,50,41,62,48,41,102,111,114,40,118,97,114,32,110,44,114,44,105,61,110,101,119,32,65,114,114,97,121,40,110,41,44,111,61,48,59,111,60,110,59,43,43,111,41,105,91,111,93,61,97,114,103,117,109,101,110,116,115,91,111,43,50,93,59,105,102,40,33,116,104,105,115,46,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,117,110,107,110,111,119,110,32,116,121,112,101,58,32,34,43,116,41,59,102,111,114,40,114,61,116,104,105,115,46,95,91,116,93,44,111,61,48,44,110,61,114,46,108,101,110,103,116,104,59,111,60,110,59,43,43,111,41,114,91,111,93,46,118,97,108,117,101,46,97,112,112,108,121,40,101,44,105,41,125,44,97,112,112,108,121,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,33,116,104,105,115,46,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,117,110,107,110,111,119,110,32,116,121,112,101,58,32,34,43,116,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,91,116,93,44,105,61,48,44,111,61,114,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,114,91,105,93,46,118,97,108,117,101,46,97,112,112,108,121,40,101,44,110,41,125,125,59,118,97,114,32,76,101,44,73,101,44,77,101,61,84,101,44,36,101,61,48,44,70,101,61,48,44,82,101,61,48,44,78,101,61,49,101,51,44,66,101,61,48,44,122,101,61,48,44,86,101,61,48,44,72,101,61,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,112,101,114,102,111,114,109,97,110,99,101,38,38,112,101,114,102,111,114,109,97,110,99,101,46,110,111,119,63,112,101,114,102,111,114,109,97,110,99,101,58,68,97,116,101,44,85,101,61,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,119,105,110,100,111,119,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,63,119,105,110,100,111,119,46,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,58,102,117,110,99,116,105,111,110,40,116,41,123,115,101,116,84,105,109,101,111,117,116,40,116,44,49,55,41,125,59,102,117,110,99,116,105,111,110,32,87,101,40,41,123,114,101,116,117,114,110,32,122,101,124,124,40,85,101,40,71,101,41,44,122,101,61,72,101,46,110,111,119,40,41,43,86,101,41,125,102,117,110,99,116,105,111,110,32,71,101,40,41,123,122,101,61,48,125,102,117,110,99,116,105,111,110,32,113,101,40,41,123,116,104,105,115,46,95,99,97,108,108,61,116,104,105,115,46,95,116,105,109,101,61,116,104,105,115,46,95,110,101,120,116,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,89,101,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,101,119,32,113,101,59,114,101,116,117,114,110,32,114,46,114,101,115,116,97,114,116,40,116,44,101,44,110,41,44,114,125,102,117,110,99,116,105,111,110,32,75,101,40,41,123,87,101,40,41,44,43,43,36,101,59,118,97,114,32,116,44,101,61,76,101,59,119,104,105,108,101,40,101,41,40,116,61,122,101,45,101,46,95,116,105,109,101,41,62,61,48,38,38,101,46,95,99,97,108,108,46,99,97,108,108,40,110,117,108,108,44,116,41,44,101,61,101,46,95,110,101,120,116,59,45,45,36,101,125,102,117,110,99,116,105,111,110,32,88,101,40,41,123,122,101,61,40,66,101,61,72,101,46,110,111,119,40,41,41,43,86,101,44,36,101,61,70,101,61,48,59,116,114,121,123,75,101,40,41,125,102,105,110,97,108,108,121,123,36,101,61,48,44,74,101,40,41,44,122,101,61,48,125,125,102,117,110,99,116,105,111,110,32,90,101,40,41,123,118,97,114,32,116,61,72,101,46,110,111,119,40,41,44,101,61,116,45,66,101,59,101,62,78,101,38,38,40,86,101,45,61,101,44,66,101,61,116,41,125,102,117,110,99,116,105,111,110,32,74,101,40,41,123,118,97,114,32,116,44,101,44,110,61,76,101,44,114,61,49,47,48,59,119,104,105,108,101,40,110,41,110,46,95,99,97,108,108,63,40,114,62,110,46,95,116,105,109,101,38,38,40,114,61,110,46,95,116,105,109,101,41,44,116,61,110,44,110,61,110,46,95,110,101,120,116,41,58,40,101,61,110,46,95,110,101,120,116,44,110,46,95,110,101,120,116,61,110,117,108,108,44,110,61,116,63,116,46,95,110,101,120,116,61,101,58,76,101,61,101,41,59,73,101,61,116,44,81,101,40,114,41,125,102,117,110,99,116,105,111,110,32,81,101,40,116,41,123,105,102,40,33,36,101,41,123,70,101,38,38,40,70,101,61,99,108,101,97,114,84,105,109,101,111,117,116,40,70,101,41,41,59,118,97,114,32,101,61,116,45,122,101,59,101,62,50,52,63,40,116,60,49,47,48,38,38,40,70,101,61,115,101,116,84,105,109,101,111,117,116,40,88,101,44,116,45,72,101,46,110,111,119,40,41,45,86,101,41,41,44,82,101,38,38,40,82,101,61,99,108,101,97,114,73,110,116,101,114,118,97,108,40,82,101,41,41,41,58,40,82,101,124,124,40,66,101,61,72,101,46,110,111,119,40,41,44,82,101,61,115,101,116,73,110,116,101,114,118,97,108,40,90,101,44,78,101,41,41,44,36,101,61,49,44,85,101,40,88,101,41,41,125,125,102,117,110,99,116,105,111,110,32,116,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,101,119,32,113,101,59,114,101,116,117,114,110,32,101,61,110,117,108,108,61,61,101,63,48,58,43,101,44,114,46,114,101,115,116,97,114,116,40,40,102,117,110,99,116,105,111,110,40,110,41,123,114,46,115,116,111,112,40,41,44,116,40,110,43,101,41,125,41,44,101,44,110,41,44,114,125,113,101,46,112,114,111,116,111,116,121,112,101,61,89,101,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,113,101,44,114,101,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,99,97,108,108,98,97,99,107,32,105,115,32,110,111,116,32,97,32,102,117,110,99,116,105,111,110,34,41,59,110,61,40,110,117,108,108,61,61,110,63,87,101,40,41,58,43,110,41,43,40,110,117,108,108,61,61,101,63,48,58,43,101,41,44,116,104,105,115,46,95,110,101,120,116,124,124,73,101,61,61,61,116,104,105,115,124,124,40,73,101,63,73,101,46,95,110,101,120,116,61,116,104,105,115,58,76,101,61,116,104,105,115,44,73,101,61,116,104,105,115,41,44,116,104,105,115,46,95,99,97,108,108,61,116,44,116,104,105,115,46,95,116,105,109,101,61,110,44,81,101,40,41,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,97,108,108,38,38,40,116,104,105,115,46,95,99,97,108,108,61,110,117,108,108,44,116,104,105,115,46,95,116,105,109,101,61,49,47,48,44,81,101,40,41,41,125,125,59,118,97,114,32,101,110,61,77,101,40,34,115,116,97,114,116,34,44,34,101,110,100,34,44,34,99,97,110,99,101,108,34,44,34,105,110,116,101,114,114,117,112,116,34,41,44,110,110,61,91,93,44,114,110,61,48,44,111,110,61,49,44,97,110,61,50,44,115,110,61,51,44,99,110,61,52,44,117,110,61,53,44,108,110,61,54,59,102,117,110,99,116,105,111,110,32,102,110,40,116,44,101,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,59,105,102,40,97,41,123,105,102,40,110,32,105,110,32,97,41,114,101,116,117,114,110,125,101,108,115,101,32,116,46,95,95,116,114,97,110,115,105,116,105,111,110,61,123,125,59,118,110,40,116,44,110,44,123,110,97,109,101,58,101,44,105,110,100,101,120,58,114,44,103,114,111,117,112,58,105,44,111,110,58,101,110,44,116,119,101,101,110,58,110,110,44,116,105,109,101,58,111,46,116,105,109,101,44,100,101,108,97,121,58,111,46,100,101,108,97,121,44,100,117,114,97,116,105,111,110,58,111,46,100,117,114,97,116,105,111,110,44,101,97,115,101,58,111,46,101,97,115,101,44,116,105,109,101,114,58,110,117,108,108,44,115,116,97,116,101,58,114,110,125,41,125,102,117,110,99,116,105,111,110,32,104,110,40,116,44,101,41,123,118,97,114,32,110,61,112,110,40,116,44,101,41,59,105,102,40,110,46,115,116,97,116,101,62,114,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,116,111,111,32,108,97,116,101,59,32,97,108,114,101,97,100,121,32,115,99,104,101,100,117,108,101,100,34,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,100,110,40,116,44,101,41,123,118,97,114,32,110,61,112,110,40,116,44,101,41,59,105,102,40,110,46,115,116,97,116,101,62,115,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,116,111,111,32,108,97,116,101,59,32,97,108,114,101,97,100,121,32,114,117,110,110,105,110,103,34,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,112,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,59,105,102,40,33,110,124,124,33,40,110,61,110,91,101,93,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,116,114,97,110,115,105,116,105,111,110,32,110,111,116,32,102,111,117,110,100,34,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,118,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,110,46,115,116,97,116,101,61,111,110,44,110,46,116,105,109,101,114,46,114,101,115,116,97,114,116,40,97,44,110,46,100,101,108,97,121,44,110,46,116,105,109,101,41,44,110,46,100,101,108,97,121,60,61,116,38,38,97,40,116,45,110,46,100,101,108,97,121,41,125,102,117,110,99,116,105,111,110,32,97,40,111,41,123,118,97,114,32,117,44,108,44,102,44,104,59,105,102,40,110,46,115,116,97,116,101,33,61,61,111,110,41,114,101,116,117,114,110,32,99,40,41,59,102,111,114,40,117,32,105,110,32,105,41,105,102,40,104,61,105,91,117,93,44,104,46,110,97,109,101,61,61,61,110,46,110,97,109,101,41,123,105,102,40,104,46,115,116,97,116,101,61,61,61,115,110,41,114,101,116,117,114,110,32,116,110,40,97,41,59,104,46,115,116,97,116,101,61,61,61,99,110,63,40,104,46,115,116,97,116,101,61,108,110,44,104,46,116,105,109,101,114,46,115,116,111,112,40,41,44,104,46,111,110,46,99,97,108,108,40,34,105,110,116,101,114,114,117,112,116,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,104,46,105,110,100,101,120,44,104,46,103,114,111,117,112,41,44,100,101,108,101,116,101,32,105,91,117,93,41,58,43,117,60,101,38,38,40,104,46,115,116,97,116,101,61,108,110,44,104,46,116,105,109,101,114,46,115,116,111,112,40,41,44,104,46,111,110,46,99,97,108,108,40,34,99,97,110,99,101,108,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,104,46,105,110,100,101,120,44,104,46,103,114,111,117,112,41,44,100,101,108,101,116,101,32,105,91,117,93,41,125,105,102,40,116,110,40,40,102,117,110,99,116,105,111,110,40,41,123,110,46,115,116,97,116,101,61,61,61,115,110,38,38,40,110,46,115,116,97,116,101,61,99,110,44,110,46,116,105,109,101,114,46,114,101,115,116,97,114,116,40,115,44,110,46,100,101,108,97,121,44,110,46,116,105,109,101,41,44,115,40,111,41,41,125,41,41,44,110,46,115,116,97,116,101,61,97,110,44,110,46,111,110,46,99,97,108,108,40,34,115,116,97,114,116,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,110,46,105,110,100,101,120,44,110,46,103,114,111,117,112,41,44,110,46,115,116,97,116,101,61,61,61,97,110,41,123,102,111,114,40,110,46,115,116,97,116,101,61,115,110,44,114,61,110,101,119,32,65,114,114,97,121,40,102,61,110,46,116,119,101,101,110,46,108,101,110,103,116,104,41,44,117,61,48,44,108,61,45,49,59,117,60,102,59,43,43,117,41,40,104,61,110,46,116,119,101,101,110,91,117,93,46,118,97,108,117,101,46,99,97,108,108,40,116,44,116,46,95,95,100,97,116,97,95,95,44,110,46,105,110,100,101,120,44,110,46,103,114,111,117,112,41,41,38,38,40,114,91,43,43,108,93,61,104,41,59,114,46,108,101,110,103,116,104,61,108,43,49,125,125,102,117,110,99,116,105,111,110,32,115,40,101,41,123,118,97,114,32,105,61,101,60,110,46,100,117,114,97,116,105,111,110,63,110,46,101,97,115,101,46,99,97,108,108,40,110,117,108,108,44,101,47,110,46,100,117,114,97,116,105,111,110,41,58,40,110,46,116,105,109,101,114,46,114,101,115,116,97,114,116,40,99,41,44,110,46,115,116,97,116,101,61,117,110,44,49,41,44,111,61,45,49,44,97,61,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,111,60,97,41,114,91,111,93,46,99,97,108,108,40,116,44,105,41,59,110,46,115,116,97,116,101,61,61,61,117,110,38,38,40,110,46,111,110,46,99,97,108,108,40,34,101,110,100,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,110,46,105,110,100,101,120,44,110,46,103,114,111,117,112,41,44,99,40,41,41,125,102,117,110,99,116,105,111,110,32,99,40,41,123,102,111,114,40,118,97,114,32,114,32,105,110,32,110,46,115,116,97,116,101,61,108,110,44,110,46,116,105,109,101,114,46,115,116,111,112,40,41,44,100,101,108,101,116,101,32,105,91,101,93,44,105,41,114,101,116,117,114,110,59,100,101,108,101,116,101,32,116,46,95,95,116,114,97,110,115,105,116,105,111,110,125,105,91,101,93,61,110,44,110,46,116,105,109,101,114,61,89,101,40,111,44,48,44,110,46,116,105,109,101,41,125,102,117,110,99,116,105,111,110,32,103,110,40,116,44,101,41,123,118,97,114,32,110,44,114,44,105,44,111,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,44,97,61,33,48,59,105,102,40,111,41,123,102,111,114,40,105,32,105,110,32,101,61,110,117,108,108,61,61,101,63,110,117,108,108,58,101,43,34,34,44,111,41,40,110,61,111,91,105,93,41,46,110,97,109,101,61,61,61,101,63,40,114,61,110,46,115,116,97,116,101,62,97,110,38,38,110,46,115,116,97,116,101,60,117,110,44,110,46,115,116,97,116,101,61,108,110,44,110,46,116,105,109,101,114,46,115,116,111,112,40,41,44,110,46,111,110,46,99,97,108,108,40,114,63,34,105,110,116,101,114,114,117,112,116,34,58,34,99,97,110,99,101,108,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,110,46,105,110,100,101,120,44,110,46,103,114,111,117,112,41,44,100,101,108,101,116,101,32,111,91,105,93,41,58,97,61,33,49,59,97,38,38,100,101,108,101,116,101,32,116,46,95,95,116,114,97,110,115,105,116,105,111,110,125,125,102,117,110,99,116,105,111,110,32,109,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,102,117,110,99,116,105,111,110,40,41,123,103,110,40,116,104,105,115,44,116,41,125,41,41,125,102,117,110,99,116,105,111,110,32,98,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,43,116,44,101,61,43,101,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,42,40,49,45,110,41,43,101,42,110,125,125,118,97,114,32,121,110,44,119,110,44,95,110,44,120,110,44,79,110,61,49,56,48,47,77,97,116,104,46,80,73,44,83,110,61,123,116,114,97,110,115,108,97,116,101,88,58,48,44,116,114,97,110,115,108,97,116,101,89,58,48,44,114,111,116,97,116,101,58,48,44,115,107,101,119,88,58,48,44,115,99,97,108,101,88,58,49,44,115,99,97,108,101,89,58,49,125,59,102,117,110,99,116,105,111,110,32,107,110,40,116,44,101,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,44,115,44,99,59,114,101,116,117,114,110,40,97,61,77,97,116,104,46,115,113,114,116,40,116,42,116,43,101,42,101,41,41,38,38,40,116,47,61,97,44,101,47,61,97,41,44,40,99,61,116,42,110,43,101,42,114,41,38,38,40,110,45,61,116,42,99,44,114,45,61,101,42,99,41,44,40,115,61,77,97,116,104,46,115,113,114,116,40,110,42,110,43,114,42,114,41,41,38,38,40,110,47,61,115,44,114,47,61,115,44,99,47,61,115,41,44,116,42,114,60,101,42,110,38,38,40,116,61,45,116,44,101,61,45,101,44,99,61,45,99,44,97,61,45,97,41,44,123,116,114,97,110,115,108,97,116,101,88,58,105,44,116,114,97,110,115,108,97,116,101,89,58,111,44,114,111,116,97,116,101,58,77,97,116,104,46,97,116,97,110,50,40,101,44,116,41,42,79,110,44,115,107,101,119,88,58,77,97,116,104,46,97,116,97,110,40,99,41,42,79,110,44,115,99,97,108,101,88,58,97,44,115,99,97,108,101,89,58,115,125,125,102,117,110,99,116,105,111,110,32,67,110,40,116,41,123,114,101,116,117,114,110,34,110,111,110,101,34,61,61,61,116,63,83,110,58,40,121,110,124,124,40,121,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,68,73,86,34,41,44,119,110,61,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,95,110,61,100,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,41,44,121,110,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,116,44,116,61,95,110,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,119,110,46,97,112,112,101,110,100,67,104,105,108,100,40,121,110,41,44,110,117,108,108,41,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,116,114,97,110,115,102,111,114,109,34,41,44,119,110,46,114,101,109,111,118,101,67,104,105,108,100,40,121,110,41,44,116,61,116,46,115,108,105,99,101,40,55,44,45,49,41,46,115,112,108,105,116,40,34,44,34,41,44,107,110,40,43,116,91,48,93,44,43,116,91,49,93,44,43,116,91,50,93,44,43,116,91,51,93,44,43,116,91,52,93,44,43,116,91,53,93,41,41,125,102,117,110,99,116,105,111,110,32,80,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,83,110,58,40,120,110,124,124,40,120,110,61,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,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,34,103,34,41,41,44,120,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,114,97,110,115,102,111,114,109,34,44,116,41,44,40,116,61,120,110,46,116,114,97,110,115,102,111,114,109,46,98,97,115,101,86,97,108,46,99,111,110,115,111,108,105,100,97,116,101,40,41,41,63,40,116,61,116,46,109,97,116,114,105,120,44,107,110,40,116,46,97,44,116,46,98,44,116,46,99,44,116,46,100,44,116,46,101,44,116,46,102,41,41,58,83,110,41,125,102,117,110,99,116,105,111,110,32,84,110,40,116,44,101,44,110,44,114,41,123,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,63,116,46,112,111,112,40,41,43,34,32,34,58,34,34,125,102,117,110,99,116,105,111,110,32,111,40,116,44,114,44,105,44,111,44,97,44,115,41,123,105,102,40,116,33,61,61,105,124,124,114,33,61,61,111,41,123,118,97,114,32,99,61,97,46,112,117,115,104,40,34,116,114,97,110,115,108,97,116,101,40,34,44,110,117,108,108,44,101,44,110,117,108,108,44,110,41,59,115,46,112,117,115,104,40,123,105,58,99,45,52,44,120,58,98,110,40,116,44,105,41,125,44,123,105,58,99,45,50,44,120,58,98,110,40,114,44,111,41,125,41,125,101,108,115,101,40,105,124,124,111,41,38,38,97,46,112,117,115,104,40,34,116,114,97,110,115,108,97,116,101,40,34,43,105,43,101,43,111,43,110,41,125,102,117,110,99,116,105,111,110,32,97,40,116,44,101,44,110,44,111,41,123,116,33,61,61,101,63,40,116,45,101,62,49,56,48,63,101,43,61,51,54,48,58,101,45,116,62,49,56,48,38,38,40,116,43,61,51,54,48,41,44,111,46,112,117,115,104,40,123,105,58,110,46,112,117,115,104,40,105,40,110,41,43,34,114,111,116,97,116,101,40,34,44,110,117,108,108,44,114,41,45,50,44,120,58,98,110,40,116,44,101,41,125,41,41,58,101,38,38,110,46,112,117,115,104,40,105,40,110,41,43,34,114,111,116,97,116,101,40,34,43,101,43,114,41,125,102,117,110,99,116,105,111,110,32,115,40,116,44,101,44,110,44,111,41,123,116,33,61,61,101,63,111,46,112,117,115,104,40,123,105,58,110,46,112,117,115,104,40,105,40,110,41,43,34,115,107,101,119,88,40,34,44,110,117,108,108,44,114,41,45,50,44,120,58,98,110,40,116,44,101,41,125,41,58,101,38,38,110,46,112,117,115,104,40,105,40,110,41,43,34,115,107,101,119,88,40,34,43,101,43,114,41,125,102,117,110,99,116,105,111,110,32,99,40,116,44,101,44,110,44,114,44,111,44,97,41,123,105,102,40,116,33,61,61,110,124,124,101,33,61,61,114,41,123,118,97,114,32,115,61,111,46,112,117,115,104,40,105,40,111,41,43,34,115,99,97,108,101,40,34,44,110,117,108,108,44,34,44,34,44,110,117,108,108,44,34,41,34,41,59,97,46,112,117,115,104,40,123,105,58,115,45,52,44,120,58,98,110,40,116,44,110,41,125,44,123,105,58,115,45,50,44,120,58,98,110,40,101,44,114,41,125,41,125,101,108,115,101,32,49,61,61,61,110,38,38,49,61,61,61,114,124,124,111,46,112,117,115,104,40,105,40,111,41,43,34,115,99,97,108,101,40,34,43,110,43,34,44,34,43,114,43,34,41,34,41,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,61,91,93,44,105,61,91,93,59,114,101,116,117,114,110,32,101,61,116,40,101,41,44,110,61,116,40,110,41,44,111,40,101,46,116,114,97,110,115,108,97,116,101,88,44,101,46,116,114,97,110,115,108,97,116,101,89,44,110,46,116,114,97,110,115,108,97,116,101,88,44,110,46,116,114,97,110,115,108,97,116,101,89,44,114,44,105,41,44,97,40,101,46,114,111,116,97,116,101,44,110,46,114,111,116,97,116,101,44,114,44,105,41,44,115,40,101,46,115,107,101,119,88,44,110,46,115,107,101,119,88,44,114,44,105,41,44,99,40,101,46,115,99,97,108,101,88,44,101,46,115,99,97,108,101,89,44,110,46,115,99,97,108,101,88,44,110,46,115,99,97,108,101,89,44,114,44,105,41,44,101,61,110,61,110,117,108,108,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,45,49,44,111,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,110,60,111,41,114,91,40,101,61,105,91,110,93,41,46,105,93,61,101,46,120,40,116,41,59,114,101,116,117,114,110,32,114,46,106,111,105,110,40,34,34,41,125,125,125,118,97,114,32,106,110,61,84,110,40,67,110,44,34,112,120,44,32,34,44,34,112,120,41,34,44,34,100,101,103,41,34,41,44,69,110,61,84,110,40,80,110,44,34,44,32,34,44,34,41,34,44,34,41,34,41,59,102,117,110,99,116,105,111,110,32,68,110,40,116,44,101,41,123,118,97,114,32,110,44,114,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,100,110,40,116,104,105,115,44,116,41,44,111,61,105,46,116,119,101,101,110,59,105,102,40,111,33,61,61,110,41,123,114,61,110,61,111,59,102,111,114,40,118,97,114,32,97,61,48,44,115,61,114,46,108,101,110,103,116,104,59,97,60,115,59,43,43,97,41,105,102,40,114,91,97,93,46,110,97,109,101,61,61,61,101,41,123,114,61,114,46,115,108,105,99,101,40,41,44,114,46,115,112,108,105,99,101,40,97,44,49,41,59,98,114,101,97,107,125,125,105,46,116,119,101,101,110,61,114,125,125,102,117,110,99,116,105,111,110,32,65,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,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,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,100,110,40,116,104,105,115,44,116,41,44,97,61,111,46,116,119,101,101,110,59,105,102,40,97,33,61,61,114,41,123,105,61,40,114,61,97,41,46,115,108,105,99,101,40,41,59,102,111,114,40,118,97,114,32,115,61,123,110,97,109,101,58,101,44,118,97,108,117,101,58,110,125,44,99,61,48,44,117,61,105,46,108,101,110,103,116,104,59,99,60,117,59,43,43,99,41,105,102,40,105,91,99,93,46,110,97,109,101,61,61,61,101,41,123,105,91,99,93,61,115,59,98,114,101,97,107,125,99,61,61,61,117,38,38,105,46,112,117,115,104,40,115,41,125,111,46,116,119,101,101,110,61,105,125,125,102,117,110,99,116,105,111,110,32,76,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,100,59,105,102,40,116,43,61,34,34,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,123,102,111,114,40,118,97,114,32,114,44,105,61,112,110,40,116,104,105,115,46,110,111,100,101,40,41,44,110,41,46,116,119,101,101,110,44,111,61,48,44,97,61,105,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,105,102,40,40,114,61,105,91,111,93,41,46,110,97,109,101,61,61,61,116,41,114,101,116,117,114,110,32,114,46,118,97,108,117,101,59,114,101,116,117,114,110,32,110,117,108,108,125,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,101,63,68,110,58,65,110,41,40,110,44,116,44,101,41,41,125,102,117,110,99,116,105,111,110,32,73,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,95,105,100,59,114,101,116,117,114,110,32,116,46,101,97,99,104,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,100,110,40,116,104,105,115,44,114,41,59,40,116,46,118,97,108,117,101,124,124,40,116,46,118,97,108,117,101,61,123,125,41,41,91,101,93,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,41,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,112,110,40,116,44,114,41,46,118,97,108,117,101,91,101,93,125,125,102,117,110,99,116,105,111,110,32,77,110,40,116,44,101,44,110,41,123,116,46,112,114,111,116,111,116,121,112,101,61,101,46,112,114,111,116,111,116,121,112,101,61,110,44,110,46,99,111,110,115,116,114,117,99,116,111,114,61,116,125,102,117,110,99,116,105,111,110,32,36,110,40,116,44,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,46,112,114,111,116,111,116,121,112,101,41,59,102,111,114,40,118,97,114,32,114,32,105,110,32,101,41,110,91,114,93,61,101,91,114,93,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,70,110,40,41,123,125,118,97,114,32,82,110,61,46,55,44,78,110,61,49,47,82,110,44,66,110,61,34,92,92,115,42,40,91,43,45,93,63,92,92,100,43,41,92,92,115,42,34,44,122,110,61,34,92,92,115,42,40,91,43,45,93,63,92,92,100,42,92,92,46,63,92,92,100,43,40,63,58,91,101,69,93,91,43,45,93,63,92,92,100,43,41,63,41,92,92,115,42,34,44,86,110,61,34,92,92,115,42,40,91,43,45,93,63,92,92,100,42,92,92,46,63,92,92,100,43,40,63,58,91,101,69,93,91,43,45,93,63,92,92,100,43,41,63,41,37,92,92,115,42,34,44,72,110,61,47,94,35,40,91,48,45,57,97,45,102,93,123,51,44,56,125,41,36,47,44,85,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,92,92,40,34,43,91,66,110,44,66,110,44,66,110,93,43,34,92,92,41,36,34,41,44,87,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,92,92,40,34,43,91,86,110,44,86,110,44,86,110,93,43,34,92,92,41,36,34,41,44,71,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,97,92,92,40,34,43,91,66,110,44,66,110,44,66,110,44,122,110,93,43,34,92,92,41,36,34,41,44,113,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,97,92,92,40,34,43,91,86,110,44,86,110,44,86,110,44,122,110,93,43,34,92,92,41,36,34,41,44,89,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,104,115,108,92,92,40,34,43,91,122,110,44,86,110,44,86,110,93,43,34,92,92,41,36,34,41,44,75,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,104,115,108,97,92,92,40,34,43,91,122,110,44,86,110,44,86,110,44,122,110,93,43,34,92,92,41,36,34,41,44,88,110,61,123,97,108,105,99,101,98,108,117,101,58,49,53,55,57,50,51,56,51,44,97,110,116,105,113,117,101,119,104,105,116,101,58,49,54,52,52,52,51,55,53,44,97,113,117,97,58,54,53,53,51,53,44,97,113,117,97,109,97,114,105,110,101,58,56,51,56,56,53,54,52,44,97,122,117,114,101,58,49,53,55,57,52,49,55,53,44,98,101,105,103,101,58,49,54,49,49,57,50,54,48,44,98,105,115,113,117,101,58,49,54,55,55,48,50,52,52,44,98,108,97,99,107,58,48,44,98,108,97,110,99,104,101,100,97,108,109,111,110,100,58,49,54,55,55,50,48,52,53,44,98,108,117,101,58,50,53,53,44,98,108,117,101,118,105,111,108,101,116,58,57,48,53,53,50,48,50,44,98,114,111,119,110,58,49,48,56,50,52,50,51,52,44,98,117,114,108,121,119,111,111,100,58,49,52,53,57,54,50,51,49,44,99,97,100,101,116,98,108,117,101,58,54,50,54,54,53,50,56,44,99,104,97,114,116,114,101,117,115,101,58,56,51,56,56,51,53,50,44,99,104,111,99,111,108,97,116,101,58,49,51,55,56,57,52,55,48,44,99,111,114,97,108,58,49,54,55,52,52,50,55,50,44,99,111,114,110,102,108,111,119,101,114,98,108,117,101,58,54,53,57,49,57,56,49,44,99,111,114,110,115,105,108,107,58,49,54,55,55,53,51,56,56,44,99,114,105,109,115,111,110,58,49,52,52,50,51,49,48,48,44,99,121,97,110,58,54,53,53,51,53,44,100,97,114,107,98,108,117,101,58,49,51,57,44,100,97,114,107,99,121,97,110,58,51,53,55,50,51,44,100,97,114,107,103,111,108,100,101,110,114,111,100,58,49,50,48,57,50,57,51,57,44,100,97,114,107,103,114,97,121,58,49,49,49,49,57,48,49,55,44,100,97,114,107,103,114,101,101,110,58,50,53,54,48,48,44,100,97,114,107,103,114,101,121,58,49,49,49,49,57,48,49,55,44,100,97,114,107,107,104,97,107,105,58,49,50,52,51,51,50,53,57,44,100,97,114,107,109,97,103,101,110,116,97,58,57,49,48,57,54,52,51,44,100,97,114,107,111,108,105,118,101,103,114,101,101,110,58,53,53,57,55,57,57,57,44,100,97,114,107,111,114,97,110,103,101,58,49,54,55,52,55,53,50,48,44,100,97,114,107,111,114,99,104,105,100,58,49,48,48,52,48,48,49,50,44,100,97,114,107,114,101,100,58,57,49,48,57,53,48,52,44,100,97,114,107,115,97,108,109,111,110,58,49,53,51,48,56,52,49,48,44,100,97,114,107,115,101,97,103,114,101,101,110,58,57,52,49,57,57,49,57,44,100,97,114,107,115,108,97,116,101,98,108,117,101,58,52,55,51,52,51,52,55,44,100,97,114,107,115,108,97,116,101,103,114,97,121,58,51,49,48,48,52,57,53,44,100,97,114,107,115,108,97,116,101,103,114,101,121,58,51,49,48,48,52,57,53,44,100,97,114,107,116,117,114,113,117,111,105,115,101,58,53,50,57,52,53,44,100,97,114,107,118,105,111,108,101,116,58,57,54,57,57,53,51,57,44,100,101,101,112,112,105,110,107,58,49,54,55,49,54,57,52,55,44,100,101,101,112,115,107,121,98,108,117,101,58,52,57,49,53,49,44,100,105,109,103,114,97,121,58,54,57,48,56,50,54,53,44,100,105,109,103,114,101,121,58,54,57,48,56,50,54,53,44,100,111,100,103,101,114,98,108,117,101,58,50,48,48,51,49,57,57,44,102,105,114,101,98,114,105,99,107,58,49,49,54,55,52,49,52,54,44,102,108,111,114,97,108,119,104,105,116,101,58,49,54,55,55,53,57,50,48,44,102,111,114,101,115,116,103,114,101,101,110,58,50,50,54,51,56,52,50,44,102,117,99,104,115,105,97,58,49,54,55,49,49,57,51,53,44,103,97,105,110,115,98,111,114,111,58,49,52,52,55,52,52,54,48,44,103,104,111,115,116,119,104,105,116,101,58,49,54,51,49,54,54,55,49,44,103,111,108,100,58,49,54,55,54,54,55,50,48,44,103,111,108,100,101,110,114,111,100,58,49,52,51,50,57,49,50,48,44,103,114,97,121,58,56,52,50,49,53,48,52,44,103,114,101,101,110,58,51,50,55,54,56,44,103,114,101,101,110,121,101,108,108,111,119,58,49,49,52,48,51,48,53,53,44,103,114,101,121,58,56,52,50,49,53,48,52,44,104,111,110,101,121,100,101,119,58,49,53,55,57,52,49,54,48,44,104,111,116,112,105,110,107,58,49,54,55,51,56,55,52,48,44,105,110,100,105,97,110,114,101,100,58,49,51,52,53,56,53,50,52,44,105,110,100,105,103,111,58,52,57,49,53,51,51,48,44,105,118,111,114,121,58,49,54,55,55,55,50,48,48,44,107,104,97,107,105,58,49,53,55,56,55,54,54,48,44,108,97,118,101,110,100,101,114,58,49,53,49,51,50,52,49,48,44,108,97,118,101,110,100,101,114,98,108,117,115,104,58,49,54,55,55,51,51,54,53,44,108,97,119,110,103,114,101,101,110,58,56,49,57,48,57,55,54,44,108,101,109,111,110,99,104,105,102,102,111,110,58,49,54,55,55,53,56,56,53,44,108,105,103,104,116,98,108,117,101,58,49,49,51,57,51,50,53,52,44,108,105,103,104,116,99,111,114,97,108,58,49,53,55,54,49,53,51,54,44,108,105,103,104,116,99,121,97,110,58,49,52,55,52,53,53,57,57,44,108,105,103,104,116,103,111,108,100,101,110,114,111,100,121,101,108,108,111,119,58,49,54,52,52,56,50,49,48,44,108,105,103,104,116,103,114,97,121,58,49,51,56,56,50,51,50,51,44,108,105,103,104,116,103,114,101,101,110,58,57,52,57,56,50,53,54,44,108,105,103,104,116,103,114,101,121,58,49,51,56,56,50,51,50,51,44,108,105,103,104,116,112,105,110,107,58,49,54,55,53,56,52,54,53,44,108,105,103,104,116,115,97,108,109,111,110,58,49,54,55,53,50,55,54,50,44,108,105,103,104,116,115,101,97,103,114,101,101,110,58,50,49,52,50,56,57,48,44,108,105,103,104,116,115,107,121,98,108,117,101,58,56,57,48,48,51,52,54,44,108,105,103,104,116,115,108,97,116,101,103,114,97,121,58,55,56,51,51,55,53,51,44,108,105,103,104,116,115,108,97,116,101,103,114,101,121,58,55,56,51,51,55,53,51,44,108,105,103,104,116,115,116,101,101,108,98,108,117,101,58,49,49,53,56,52,55,51,52,44,108,105,103,104,116,121,101,108,108,111,119,58,49,54,55,55,55,49,56,52,44,108,105,109,101,58,54,53,50,56,48,44,108,105,109,101,103,114,101,101,110,58,51,51,50,57,51,51,48,44,108,105,110,101,110,58,49,54,52,52,53,54,55,48,44,109,97,103,101,110,116,97,58,49,54,55,49,49,57,51,53,44,109,97,114,111,111,110,58,56,51,56,56,54,48,56,44,109,101,100,105,117,109,97,113,117,97,109,97,114,105,110,101,58,54,55,51,55,51,50,50,44,109,101,100,105,117,109,98,108,117,101,58,50,48,53,44,109,101,100,105,117,109,111,114,99,104,105,100,58,49,50,50,49,49,54,54,55,44,109,101,100,105,117,109,112,117,114,112,108,101,58,57,54,54,50,54,56,51,44,109,101,100,105,117,109,115,101,97,103,114,101,101,110,58,51,57,55,56,48,57,55,44,109,101,100,105,117,109,115,108,97,116,101,98,108,117,101,58,56,48,56,55,55,57,48,44,109,101,100,105,117,109,115,112,114,105,110,103,103,114,101,101,110,58,54,52,49,53,52,44,109,101,100,105,117,109,116,117,114,113,117,111,105,115,101,58,52,55,55,50,51,48,48,44,109,101,100,105,117,109,118,105,111,108,101,116,114,101,100,58,49,51,48,52,55,49,55,51,44,109,105,100,110,105,103,104,116,98,108,117,101,58,49,54,52,52,57,49,50,44,109,105,110,116,99,114,101,97,109,58,49,54,49,50,49,56,53,48,44,109,105,115,116,121,114,111,115,101,58,49,54,55,55,48,50,55,51,44,109,111,99,99,97,115,105,110,58,49,54,55,55,48,50,50,57,44,110,97,118,97,106,111,119,104,105,116,101,58,49,54,55,54,56,54,56,53,44,110,97,118,121,58,49,50,56,44,111,108,100,108,97,99,101,58,49,54,54,52,51,53,53,56,44,111,108,105,118,101,58,56,52,50,49,51,55,54,44,111,108,105,118,101,100,114,97,98,58,55,48,52,56,55,51,57,44,111,114,97,110,103,101,58,49,54,55,53,51,57,50,48,44,111,114,97,110,103,101,114,101,100,58,49,54,55,50,57,51,52,52,44,111,114,99,104,105,100,58,49,52,51,49,53,55,51,52,44,112,97,108,101,103,111,108,100,101,110,114,111,100,58,49,53,54,53,55,49,51,48,44,112,97,108,101,103,114,101,101,110,58,49,48,48,50,53,56,56,48,44,112,97,108,101,116,117,114,113,117,111,105,115,101,58,49,49,53,50,57,57,54,54,44,112,97,108,101,118,105,111,108,101,116,114,101,100,58,49,52,51,56,49,50,48,51,44,112,97,112,97,121,97,119,104,105,112,58,49,54,55,55,51,48,55,55,44,112,101,97,99,104,112,117,102,102,58,49,54,55,54,55,54,55,51,44,112,101,114,117,58,49,51,52,54,56,57,57,49,44,112,105,110,107,58,49,54,55,54,49,48,51,53,44,112,108,117,109,58,49,52,53,50,52,54,51,55,44,112,111,119,100,101,114,98,108,117,101,58,49,49,53,57,49,57,49,48,44,112,117,114,112,108,101,58,56,51,56,56,55,51,54,44,114,101,98,101,99,99,97,112,117,114,112,108,101,58,54,54,57,55,56,56,49,44,114,101,100,58,49,54,55,49,49,54,56,48,44,114,111,115,121,98,114,111,119,110,58,49,50,51,53,55,53,49,57,44,114,111,121,97,108,98,108,117,101,58,52,50,56,54,57,52,53,44,115,97,100,100,108,101,98,114,111,119,110,58,57,49,50,55,49,56,55,44,115,97,108,109,111,110,58,49,54,52,49,54,56,56,50,44,115,97,110,100,121,98,114,111,119,110,58,49,54,48,51,50,56,54,52,44,115,101,97,103,114,101,101,110,58,51,48,53,48,51,50,55,44,115,101,97,115,104,101,108,108,58,49,54,55,55,52,54,51,56,44,115,105,101,110,110,97,58,49,48,53,48,54,55,57,55,44,115,105,108,118,101,114,58,49,50,54,51,50,50,53,54,44,115,107,121,98,108,117,101,58,56,57,48,48,51,51,49,44,115,108,97,116,101,98,108,117,101,58,54,57,55,48,48,54,49,44,115,108,97,116,101,103,114,97,121,58,55,51,55,50,57,52,52,44,115,108,97,116,101,103,114,101,121,58,55,51,55,50,57,52,52,44,115,110,111,119,58,49,54,55,55,53,57,51,48,44,115,112,114,105,110,103,103,114,101,101,110,58,54,53,52,48,55,44,115,116,101,101,108,98,108,117,101,58,52,54,50,48,57,56,48,44,116,97,110,58,49,51,56,48,56,55,56,48,44,116,101,97,108,58,51,50,56,57,54,44,116,104,105,115,116,108,101,58,49,52,50,48,52,56,56,56,44,116,111,109,97,116,111,58,49,54,55,51,55,48,57,53,44,116,117,114,113,117,111,105,115,101,58,52,50,53,49,56,53,54,44,118,105,111,108,101,116,58,49,53,54,51,49,48,56,54,44,119,104,101,97,116,58,49,54,49,49,51,51,51,49,44,119,104,105,116,101,58,49,54,55,55,55,50,49,53,44,119,104,105,116,101,115,109,111,107,101,58,49,54,49,49,57,50,56,53,44,121,101,108,108,111,119,58,49,54,55,55,54,57,54,48,44,121,101,108,108,111,119,103,114,101,101,110,58,49,48,49,52,53,48,55,52,125,59,102,117,110,99,116,105,111,110,32,90,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,103,98,40,41,46,102,111,114,109,97,116,72,101,120,40,41,125,102,117,110,99,116,105,111,110,32,74,110,40,41,123,114,101,116,117,114,110,32,108,114,40,116,104,105,115,41,46,102,111,114,109,97,116,72,115,108,40,41,125,102,117,110,99,116,105,111,110,32,81,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,103,98,40,41,46,102,111,114,109,97,116,82,103,98,40,41,125,102,117,110,99,116,105,111,110,32,116,114,40,116,41,123,118,97,114,32,101,44,110,59,114,101,116,117,114,110,32,116,61,40,116,43,34,34,41,46,116,114,105,109,40,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,40,101,61,72,110,46,101,120,101,99,40,116,41,41,63,40,110,61,101,91,49,93,46,108,101,110,103,116,104,44,101,61,112,97,114,115,101,73,110,116,40,101,91,49,93,44,49,54,41,44,54,61,61,61,110,63,101,114,40,101,41,58,51,61,61,61,110,63,110,101,119,32,111,114,40,101,62,62,56,38,49,53,124,101,62,62,52,38,50,52,48,44,101,62,62,52,38,49,53,124,50,52,48,38,101,44,40,49,53,38,101,41,60,60,52,124,49,53,38,101,44,49,41,58,56,61,61,61,110,63,110,114,40,101,62,62,50,52,38,50,53,53,44,101,62,62,49,54,38,50,53,53,44,101,62,62,56,38,50,53,53,44,40,50,53,53,38,101,41,47,50,53,53,41,58,52,61,61,61,110,63,110,114,40,101,62,62,49,50,38,49,53,124,101,62,62,56,38,50,52,48,44,101,62,62,56,38,49,53,124,101,62,62,52,38,50,52,48,44,101,62,62,52,38,49,53,124,50,52,48,38,101,44,40,40,49,53,38,101,41,60,60,52,124,49,53,38,101,41,47,50,53,53,41,58,110,117,108,108,41,58,40,101,61,85,110,46,101,120,101,99,40,116,41,41,63,110,101,119,32,111,114,40,101,91,49,93,44,101,91,50,93,44,101,91,51,93,44,49,41,58,40,101,61,87,110,46,101,120,101,99,40,116,41,41,63,110,101,119,32,111,114,40,50,53,53,42,101,91,49,93,47,49,48,48,44,50,53,53,42,101,91,50,93,47,49,48,48,44,50,53,53,42,101,91,51,93,47,49,48,48,44,49,41,58,40,101,61,71,110,46,101,120,101,99,40,116,41,41,63,110,114,40,101,91,49,93,44,101,91,50,93,44,101,91,51,93,44,101,91,52,93,41,58,40,101,61,113,110,46,101,120,101,99,40,116,41,41,63,110,114,40,50,53,53,42,101,91,49,93,47,49,48,48,44,50,53,53,42,101,91,50,93,47,49,48,48,44,50,53,53,42,101,91,51,93,47,49,48,48,44,101,91,52,93,41,58,40,101,61,89,110,46,101,120,101,99,40,116,41,41,63,117,114,40,101,91,49,93,44,101,91,50,93,47,49,48,48,44,101,91,51,93,47,49,48,48,44,49,41,58,40,101,61,75,110,46,101,120,101,99,40,116,41,41,63,117,114,40,101,91,49,93,44,101,91,50,93,47,49,48,48,44,101,91,51,93,47,49,48,48,44,101,91,52,93,41,58,88,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,63,101,114,40,88,110,91,116,93,41,58,34,116,114,97,110,115,112,97,114,101,110,116,34,61,61,61,116,63,110,101,119,32,111,114,40,78,97,78,44,78,97,78,44,78,97,78,44,48,41,58,110,117,108,108,125,102,117,110,99,116,105,111,110,32,101,114,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,111,114,40,116,62,62,49,54,38,50,53,53,44,116,62,62,56,38,50,53,53,44,50,53,53,38,116,44,49,41,125,102,117,110,99,116,105,111,110,32,110,114,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,114,60,61,48,38,38,40,116,61,101,61,110,61,78,97,78,41,44,110,101,119,32,111,114,40,116,44,101,44,110,44,114,41,125,102,117,110,99,116,105,111,110,32,114,114,40,116,41,123,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,70,110,124,124,40,116,61,116,114,40,116,41,41,44,116,63,40,116,61,116,46,114,103,98,40,41,44,110,101,119,32,111,114,40,116,46,114,44,116,46,103,44,116,46,98,44,116,46,111,112,97,99,105,116,121,41,41,58,110,101,119,32,111,114,125,102,117,110,99,116,105,111,110,32,105,114,40,116,44,101,44,110,44,114,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,114,114,40,116,41,58,110,101,119,32,111,114,40,116,44,101,44,110,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,111,114,40,116,44,101,44,110,44,114,41,123,116,104,105,115,46,114,61,43,116,44,116,104,105,115,46,103,61,43,101,44,116,104,105,115,46,98,61,43,110,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,97,114,40,41,123,114,101,116,117,114,110,34,35,34,43,99,114,40,116,104,105,115,46,114,41,43,99,114,40,116,104,105,115,46,103,41,43,99,114,40,116,104,105,115,46,98,41,125,102,117,110,99,116,105,111,110,32,115,114,40,41,123,118,97,114,32,116,61,116,104,105,115,46,111,112,97,99,105,116,121,59,114,101,116,117,114,110,32,116,61,105,115,78,97,78,40,116,41,63,49,58,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,44,40,49,61,61,61,116,63,34,114,103,98,40,34,58,34,114,103,98,97,40,34,41,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,114,41,124,124,48,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,103,41,124,124,48,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,98,41,124,124,48,41,41,43,40,49,61,61,61,116,63,34,41,34,58,34,44,32,34,43,116,43,34,41,34,41,125,102,117,110,99,116,105,111,110,32,99,114,40,116,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,41,124,124,48,41,41,44,40,116,60,49,54,63,34,48,34,58,34,34,41,43,116,46,116,111,83,116,114,105,110,103,40,49,54,41,125,102,117,110,99,116,105,111,110,32,117,114,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,114,60,61,48,63,116,61,101,61,110,61,78,97,78,58,110,60,61,48,124,124,110,62,61,49,63,116,61,101,61,78,97,78,58,101,60,61,48,38,38,40,116,61,78,97,78,41,44,110,101,119,32,104,114,40,116,44,101,44,110,44,114,41,125,102,117,110,99,116,105,111,110,32,108,114,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,104,114,41,114,101,116,117,114,110,32,110,101,119,32,104,114,40,116,46,104,44,116,46,115,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,70,110,124,124,40,116,61,116,114,40,116,41,41,44,33,116,41,114,101,116,117,114,110,32,110,101,119,32,104,114,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,104,114,41,114,101,116,117,114,110,32,116,59,116,61,116,46,114,103,98,40,41,59,118,97,114,32,101,61,116,46,114,47,50,53,53,44,110,61,116,46,103,47,50,53,53,44,114,61,116,46,98,47,50,53,53,44,105,61,77,97,116,104,46,109,105,110,40,101,44,110,44,114,41,44,111,61,77,97,116,104,46,109,97,120,40,101,44,110,44,114,41,44,97,61,78,97,78,44,115,61,111,45,105,44,99,61,40,111,43,105,41,47,50,59,114,101,116,117,114,110,32,115,63,40,97,61,101,61,61,61,111,63,40,110,45,114,41,47,115,43,54,42,40,110,60,114,41,58,110,61,61,61,111,63,40,114,45,101,41,47,115,43,50,58,40,101,45,110,41,47,115,43,52,44,115,47,61,99,60,46,53,63,111,43,105,58,50,45,111,45,105,44,97,42,61,54,48,41,58,115,61,99,62,48,38,38,99,60,49,63,48,58,97,44,110,101,119,32,104,114,40,97,44,115,44,99,44,116,46,111,112,97,99,105,116,121,41,125,102,117,110,99,116,105,111,110,32,102,114,40,116,44,101,44,110,44,114,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,108,114,40,116,41,58,110,101,119,32,104,114,40,116,44,101,44,110,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,104,114,40,116,44,101,44,110,44,114,41,123,116,104,105,115,46,104,61,43,116,44,116,104,105,115,46,115,61,43,101,44,116,104,105,115,46,108,61,43,110,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,100,114,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,50,53,53,42,40,116,60,54,48,63,101,43,40,110,45,101,41,42,116,47,54,48,58,116,60,49,56,48,63,110,58,116,60,50,52,48,63,101,43,40,110,45,101,41,42,40,50,52,48,45,116,41,47,54,48,58,101,41,125,102,117,110,99,116,105,111,110,32,112,114,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,116,42,116,44,97,61,111,42,116,59,114,101,116,117,114,110,40,40,49,45,51,42,116,43,51,42,111,45,97,41,42,101,43,40,52,45,54,42,111,43,51,42,97,41,42,110,43,40,49,43,51,42,116,43,51,42,111,45,51,42,97,41,42,114,43,97,42,105,41,47,54,125,102,117,110,99,116,105,111,110,32,118,114,40,116,41,123,118,97,114,32,101,61,116,46,108,101,110,103,116,104,45,49,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,110,60,61,48,63,110,61,48,58,110,62,61,49,63,40,110,61,49,44,101,45,49,41,58,77,97,116,104,46,102,108,111,111,114,40,110,42,101,41,44,105,61,116,91,114,93,44,111,61,116,91,114,43,49,93,44,97,61,114,62,48,63,116,91,114,45,49,93,58,50,42,105,45,111,44,115,61,114,60,101,45,49,63,116,91,114,43,50,93,58,50,42,111,45,105,59,114,101,116,117,114,110,32,112,114,40,40,110,45,114,47,101,41,42,101,44,97,44,105,44,111,44,115,41,125,125,102,117,110,99,116,105,111,110,32,103,114,40,116,41,123,118,97,114,32,101,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,77,97,116,104,46,102,108,111,111,114,40,40,40,110,37,61,49,41,60,48,63,43,43,110,58,110,41,42,101,41,44,105,61,116,91,40,114,43,101,45,49,41,37,101,93,44,111,61,116,91,114,37,101,93,44,97,61,116,91,40,114,43,49,41,37,101,93,44,115,61,116,91,40,114,43,50,41,37,101,93,59,114,101,116,117,114,110,32,112,114,40,40,110,45,114,47,101,41,42,101,44,105,44,111,44,97,44,115,41,125,125,102,117,110,99,116,105,111,110,32,109,114,40,116,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,125,125,102,117,110,99,116,105,111,110,32,98,114,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,43,110,42,101,125,125,102,117,110,99,116,105,111,110,32,121,114,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,112,111,119,40,116,44,110,41,44,101,61,77,97,116,104,46,112,111,119,40,101,44,110,41,45,116,44,110,61,49,47,110,44,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,116,43,114,42,101,44,110,41,125,125,102,117,110,99,116,105,111,110,32,119,114,40,116,41,123,114,101,116,117,114,110,32,49,61,61,61,40,116,61,43,116,41,63,95,114,58,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,110,45,101,63,121,114,40,101,44,110,44,116,41,58,109,114,40,105,115,78,97,78,40,101,41,63,110,58,101,41,125,125,102,117,110,99,116,105,111,110,32,95,114,40,116,44,101,41,123,118,97,114,32,110,61,101,45,116,59,114,101,116,117,114,110,32,110,63,98,114,40,116,44,110,41,58,109,114,40,105,115,78,97,78,40,116,41,63,101,58,116,41,125,77,110,40,70,110,44,116,114,44,123,99,111,112,121,58,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,97,115,115,105,103,110,40,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,44,116,104,105,115,44,116,41,125,44,100,105,115,112,108,97,121,97,98,108,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,103,98,40,41,46,100,105,115,112,108,97,121,97,98,108,101,40,41,125,44,104,101,120,58,90,110,44,102,111,114,109,97,116,72,101,120,58,90,110,44,102,111,114,109,97,116,72,115,108,58,74,110,44,102,111,114,109,97,116,82,103,98,58,81,110,44,116,111,83,116,114,105,110,103,58,81,110,125,41,44,77,110,40,111,114,44,105,114,44,36,110,40,70,110,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,78,110,58,77,97,116,104,46,112,111,119,40,78,110,44,116,41,44,110,101,119,32,111,114,40,116,104,105,115,46,114,42,116,44,116,104,105,115,46,103,42,116,44,116,104,105,115,46,98,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,82,110,58,77,97,116,104,46,112,111,119,40,82,110,44,116,41,44,110,101,119,32,111,114,40,116,104,105,115,46,114,42,116,44,116,104,105,115,46,103,42,116,44,116,104,105,115,46,98,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,44,100,105,115,112,108,97,121,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,45,46,53,60,61,116,104,105,115,46,114,38,38,116,104,105,115,46,114,60,50,53,53,46,53,38,38,45,46,53,60,61,116,104,105,115,46,103,38,38,116,104,105,115,46,103,60,50,53,53,46,53,38,38,45,46,53,60,61,116,104,105,115,46,98,38,38,116,104,105,115,46,98,60,50,53,53,46,53,38,38,48,60,61,116,104,105,115,46,111,112,97,99,105,116,121,38,38,116,104,105,115,46,111,112,97,99,105,116,121,60,61,49,125,44,104,101,120,58,97,114,44,102,111,114,109,97,116,72,101,120,58,97,114,44,102,111,114,109,97,116,82,103,98,58,115,114,44,116,111,83,116,114,105,110,103,58,115,114,125,41,41,44,77,110,40,104,114,44,102,114,44,36,110,40,70,110,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,78,110,58,77,97,116,104,46,112,111,119,40,78,110,44,116,41,44,110,101,119,32,104,114,40,116,104,105,115,46,104,44,116,104,105,115,46,115,44,116,104,105,115,46,108,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,82,110,58,77,97,116,104,46,112,111,119,40,82,110,44,116,41,44,110,101,119,32,104,114,40,116,104,105,115,46,104,44,116,104,105,115,46,115,44,116,104,105,115,46,108,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,104,37,51,54,48,43,51,54,48,42,40,116,104,105,115,46,104,60,48,41,44,101,61,105,115,78,97,78,40,116,41,124,124,105,115,78,97,78,40,116,104,105,115,46,115,41,63,48,58,116,104,105,115,46,115,44,110,61,116,104,105,115,46,108,44,114,61,110,43,40,110,60,46,53,63,110,58,49,45,110,41,42,101,44,105,61,50,42,110,45,114,59,114,101,116,117,114,110,32,110,101,119,32,111,114,40,100,114,40,116,62,61,50,52,48,63,116,45,50,52,48,58,116,43,49,50,48,44,105,44,114,41,44,100,114,40,116,44,105,44,114,41,44,100,114,40,116,60,49,50,48,63,116,43,50,52,48,58,116,45,49,50,48,44,105,44,114,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,105,115,112,108,97,121,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,48,60,61,116,104,105,115,46,115,38,38,116,104,105,115,46,115,60,61,49,124,124,105,115,78,97,78,40,116,104,105,115,46,115,41,41,38,38,48,60,61,116,104,105,115,46,108,38,38,116,104,105,115,46,108,60,61,49,38,38,48,60,61,116,104,105,115,46,111,112,97,99,105,116,121,38,38,116,104,105,115,46,111,112,97,99,105,116,121,60,61,49,125,44,102,111,114,109,97,116,72,115,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,111,112,97,99,105,116,121,59,114,101,116,117,114,110,32,116,61,105,115,78,97,78,40,116,41,63,49,58,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,44,40,49,61,61,61,116,63,34,104,115,108,40,34,58,34,104,115,108,97,40,34,41,43,40,116,104,105,115,46,104,124,124,48,41,43,34,44,32,34,43,49,48,48,42,40,116,104,105,115,46,115,124,124,48,41,43,34,37,44,32,34,43,49,48,48,42,40,116,104,105,115,46,108,124,124,48,41,43,34,37,34,43,40,49,61,61,61,116,63,34,41,34,58,34,44,32,34,43,116,43,34,41,34,41,125,125,41,41,59,118,97,114,32,120,114,61,102,117,110,99,116,105,111,110,32,116,40,101,41,123,118,97,114,32,110,61,119,114,40,101,41,59,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,118,97,114,32,114,61,110,40,40,116,61,105,114,40,116,41,41,46,114,44,40,101,61,105,114,40,101,41,41,46,114,41,44,105,61,110,40,116,46,103,44,101,46,103,41,44,111,61,110,40,116,46,98,44,101,46,98,41,44,97,61,95,114,40,116,46,111,112,97,99,105,116,121,44,101,46,111,112,97,99,105,116,121,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,116,46,114,61,114,40,101,41,44,116,46,103,61,105,40,101,41,44,116,46,98,61,111,40,101,41,44,116,46,111,112,97,99,105,116,121,61,97,40,101,41,44,116,43,34,34,125,125,114,101,116,117,114,110,32,114,46,103,97,109,109,97,61,116,44,114,125,40,49,41,59,102,117,110,99,116,105,111,110,32,79,114,40,116,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,110,44,114,44,105,61,101,46,108,101,110,103,116,104,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,105,41,44,115,61,110,101,119,32,65,114,114,97,121,40,105,41,59,102,111,114,40,110,61,48,59,110,60,105,59,43,43,110,41,114,61,105,114,40,101,91,110,93,41,44,111,91,110,93,61,114,46,114,124,124,48,44,97,91,110,93,61,114,46,103,124,124,48,44,115,91,110,93,61,114,46,98,124,124,48,59,114,101,116,117,114,110,32,111,61,116,40,111,41,44,97,61,116,40,97,41,44,115,61,116,40,115,41,44,114,46,111,112,97,99,105,116,121,61,49,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,114,61,111,40,116,41,44,114,46,103,61,97,40,116,41,44,114,46,98,61,115,40,116,41,44,114,43,34,34,125,125,125,118,97,114,32,83,114,61,79,114,40,118,114,41,44,107,114,61,40,79,114,40,103,114,41,44,47,91,45,43,93,63,40,63,58,92,100,43,92,46,63,92,100,42,124,92,46,63,92,100,43,41,40,63,58,91,101,69,93,91,45,43,93,63,92,100,43,41,63,47,103,41,44,67,114,61,110,101,119,32,82,101,103,69,120,112,40,107,114,46,115,111,117,114,99,101,44,34,103,34,41,59,102,117,110,99,116,105,111,110,32,80,114,40,116,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,125,125,102,117,110,99,116,105,111,110,32,84,114,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,116,40,101,41,43,34,34,125,125,102,117,110,99,116,105,111,110,32,106,114,40,116,44,101,41,123,118,97,114,32,110,44,114,44,105,44,111,61,107,114,46,108,97,115,116,73,110,100,101,120,61,67,114,46,108,97,115,116,73,110,100,101,120,61,48,44,97,61,45,49,44,115,61,91,93,44,99,61,91,93,59,116,43,61,34,34,44,101,43,61,34,34,59,119,104,105,108,101,40,40,110,61,107,114,46,101,120,101,99,40,116,41,41,38,38,40,114,61,67,114,46,101,120,101,99,40,101,41,41,41,40,105,61,114,46,105,110,100,101,120,41,62,111,38,38,40,105,61,101,46,115,108,105,99,101,40,111,44,105,41,44,115,91,97,93,63,115,91,97,93,43,61,105,58,115,91,43,43,97,93,61,105,41,44,40,110,61,110,91,48,93,41,61,61,61,40,114,61,114,91,48,93,41,63,115,91,97,93,63,115,91,97,93,43,61,114,58,115,91,43,43,97,93,61,114,58,40,115,91,43,43,97,93,61,110,117,108,108,44,99,46,112,117,115,104,40,123,105,58,97,44,120,58,98,110,40,110,44,114,41,125,41,41,44,111,61,67,114,46,108,97,115,116,73,110,100,101,120,59,114,101,116,117,114,110,32,111,60,101,46,108,101,110,103,116,104,38,38,40,105,61,101,46,115,108,105,99,101,40,111,41,44,115,91,97,93,63,115,91,97,93,43,61,105,58,115,91,43,43,97,93,61,105,41,44,115,46,108,101,110,103,116,104,60,50,63,99,91,48,93,63,84,114,40,99,91,48,93,46,120,41,58,80,114,40,101,41,58,40,101,61,99,46,108,101,110,103,116,104,44,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,114,61,48,59,114,60,101,59,43,43,114,41,115,91,40,110,61,99,91,114,93,41,46,105,93,61,110,46,120,40,116,41,59,114,101,116,117,114,110,32,115,46,106,111,105,110,40,34,34,41,125,41,125,102,117,110,99,116,105,111,110,32,69,114,40,116,44,101,41,123,118,97,114,32,110,59,114,101,116,117,114,110,40,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,101,63,98,110,58,101,32,105,110,115,116,97,110,99,101,111,102,32,116,114,63,120,114,58,40,110,61,116,114,40,101,41,41,63,40,101,61,110,44,120,114,41,58,106,114,41,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,68,114,40,116,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,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,125,102,117,110,99,116,105,111,110,32,65,114,40,116,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,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,102,117,110,99,116,105,111,110,32,76,114,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,111,61,110,43,34,34,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,41,59,114,101,116,117,114,110,32,97,61,61,61,111,63,110,117,108,108,58,97,61,61,61,114,63,105,58,105,61,101,40,114,61,97,44,110,41,125,125,102,117,110,99,116,105,111,110,32,73,114,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,111,61,110,43,34,34,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,59,114,101,116,117,114,110,32,97,61,61,61,111,63,110,117,108,108,58,97,61,61,61,114,63,105,58,105,61,101,40,114,61,97,44,110,41,125,125,102,117,110,99,116,105,111,110,32,77,114,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,111,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,44,115,44,99,61,110,40,116,104,105,115,41,59,105,102,40,110,117,108,108,33,61,99,41,114,101,116,117,114,110,32,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,41,44,115,61,99,43,34,34,44,97,61,61,61,115,63,110,117,108,108,58,97,61,61,61,114,38,38,115,61,61,61,105,63,111,58,40,105,61,115,44,111,61,101,40,114,61,97,44,99,41,41,59,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,125,102,117,110,99,116,105,111,110,32,36,114,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,111,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,44,115,44,99,61,110,40,116,104,105,115,41,59,105,102,40,110,117,108,108,33,61,99,41,114,101,116,117,114,110,32,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,44,115,61,99,43,34,34,44,97,61,61,61,115,63,110,117,108,108,58,97,61,61,61,114,38,38,115,61,61,61,105,63,111,58,40,105,61,115,44,111,61,101,40,114,61,97,44,99,41,41,59,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,102,117,110,99,116,105,111,110,32,70,114,40,116,44,101,41,123,118,97,114,32,110,61,100,116,40,116,41,44,114,61,34,116,114,97,110,115,102,111,114,109,34,61,61,61,110,63,69,110,58,69,114,59,114,101,116,117,114,110,32,116,104,105,115,46,97,116,116,114,84,119,101,101,110,40,116,44,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,40,110,46,108,111,99,97,108,63,36,114,58,77,114,41,40,110,44,114,44,73,110,40,116,104,105,115,44,34,97,116,116,114,46,34,43,116,44,101,41,41,58,110,117,108,108,61,61,101,63,40,110,46,108,111,99,97,108,63,65,114,58,68,114,41,40,110,41,58,40,110,46,108,111,99,97,108,63,73,114,58,76,114,41,40,110,44,114,44,101,41,41,125,102,117,110,99,116,105,111,110,32,82,114,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,101,46,99,97,108,108,40,116,104,105,115,44,110,41,41,125,125,102,117,110,99,116,105,111,110,32,78,114,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,44,101,46,99,97,108,108,40,116,104,105,115,44,110,41,41,125,125,102,117,110,99,116,105,111,110,32,66,114,40,116,44,101,41,123,118,97,114,32,110,44,114,59,102,117,110,99,116,105,111,110,32,105,40,41,123,118,97,114,32,105,61,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,105,33,61,61,114,38,38,40,110,61,40,114,61,105,41,38,38,78,114,40,116,44,105,41,41,44,110,125,114,101,116,117,114,110,32,105,46,95,118,97,108,117,101,61,101,44,105,125,102,117,110,99,116,105,111,110,32,122,114,40,116,44,101,41,123,118,97,114,32,110,44,114,59,102,117,110,99,116,105,111,110,32,105,40,41,123,118,97,114,32,105,61,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,105,33,61,61,114,38,38,40,110,61,40,114,61,105,41,38,38,82,114,40,116,44,105,41,41,44,110,125,114,101,116,117,114,110,32,105,46,95,118,97,108,117,101,61,101,44,105,125,102,117,110,99,116,105,111,110,32,86,114,40,116,44,101,41,123,118,97,114,32,110,61,34,97,116,116,114,46,34,43,116,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,114,101,116,117,114,110,40,110,61,116,104,105,115,46,116,119,101,101,110,40,110,41,41,38,38,110,46,95,118,97,108,117,101,59,105,102,40,110,117,108,108,61,61,101,41,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,110,44,110,117,108,108,41,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,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,59,118,97,114,32,114,61,100,116,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,110,44,40,114,46,108,111,99,97,108,63,66,114,58,122,114,41,40,114,44,101,41,41,125,102,117,110,99,116,105,111,110,32,72,114,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,104,110,40,116,104,105,115,44,116,41,46,100,101,108,97,121,61,43,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,102,117,110,99,116,105,111,110,32,85,114,40,116,44,101,41,123,114,101,116,117,114,110,32,101,61,43,101,44,102,117,110,99,116,105,111,110,40,41,123,104,110,40,116,104,105,115,44,116,41,46,100,101,108,97,121,61,101,125,125,102,117,110,99,116,105,111,110,32,87,114,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,105,100,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,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,72,114,58,85,114,41,40,101,44,116,41,41,58,112,110,40,116,104,105,115,46,110,111,100,101,40,41,44,101,41,46,100,101,108,97,121,125,102,117,110,99,116,105,111,110,32,71,114,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,100,110,40,116,104,105,115,44,116,41,46,100,117,114,97,116,105,111,110,61,43,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,102,117,110,99,116,105,111,110,32,113,114,40,116,44,101,41,123,114,101,116,117,114,110,32,101,61,43,101,44,102,117,110,99,116,105,111,110,40,41,123,100,110,40,116,104,105,115,44,116,41,46,100,117,114,97,116,105,111,110,61,101,125,125,102,117,110,99,116,105,111,110,32,89,114,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,105,100,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,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,71,114,58,113,114,41,40,101,44,116,41,41,58,112,110,40,116,104,105,115,46,110,111,100,101,40,41,44,101,41,46,100,117,114,97,116,105,111,110,125,102,117,110,99,116,105,111,110,32,75,114,40,116,44,101,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,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,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,100,110,40,116,104,105,115,44,116,41,46,101,97,115,101,61,101,125,125,102,117,110,99,116,105,111,110,32,88,114,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,105,100,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,116,104,105,115,46,101,97,99,104,40,75,114,40,101,44,116,41,41,58,112,110,40,116,104,105,115,46,110,111,100,101,40,41,44,101,41,46,101,97,115,101,125,102,117,110,99,116,105,111,110,32,90,114,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,116,38,38,40,116,61,72,40,116,41,41,59,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,95,103,114,111,117,112,115,44,110,61,101,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,110,41,44,105,61,48,59,105,60,110,59,43,43,105,41,102,111,114,40,118,97,114,32,111,44,97,61,101,91,105,93,44,115,61,97,46,108,101,110,103,116,104,44,99,61,114,91,105,93,61,91,93,44,117,61,48,59,117,60,115,59,43,43,117,41,40,111,61,97,91,117,93,41,38,38,116,46,99,97,108,108,40,111,44,111,46,95,95,100,97,116,97,95,95,44,117,44,97,41,38,38,99,46,112,117,115,104,40,111,41,59,114,101,116,117,114,110,32,110,101,119,32,67,105,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,104,105,115,46,95,110,97,109,101,44,116,104,105,115,46,95,105,100,41,125,102,117,110,99,116,105,111,110,32,74,114,40,116,41,123,105,102,40,116,46,95,105,100,33,61,61,116,104,105,115,46,95,105,100,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,95,103,114,111,117,112,115,44,110,61,116,46,95,103,114,111,117,112,115,44,114,61,101,46,108,101,110,103,116,104,44,105,61,110,46,108,101,110,103,116,104,44,111,61,77,97,116,104,46,109,105,110,40,114,44,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,44,115,61,48,59,115,60,111,59,43,43,115,41,102,111,114,40,118,97,114,32,99,44,117,61,101,91,115,93,44,108,61,110,91,115,93,44,102,61,117,46,108,101,110,103,116,104,44,104,61,97,91,115,93,61,110,101,119,32,65,114,114,97,121,40,102,41,44,100,61,48,59,100,60,102,59,43,43,100,41,40,99,61,117,91,100,93,124,124,108,91,100,93,41,38,38,40,104,91,100,93,61,99,41,59,102,111,114,40,59,115,60,114,59,43,43,115,41,97,91,115,93,61,101,91,115,93,59,114,101,116,117,114,110,32,110,101,119,32,67,105,40,97,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,104,105,115,46,95,110,97,109,101,44,116,104,105,115,46,95,105,100,41,125,102,117,110,99,116,105,111,110,32,81,114,40,116,41,123,114,101,116,117,114,110,40,116,43,34,34,41,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,46,101,118,101,114,121,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,110,100,101,120,79,102,40,34,46,34,41,59,114,101,116,117,114,110,32,101,62,61,48,38,38,40,116,61,116,46,115,108,105,99,101,40,48,44,101,41,41,44,33,116,124,124,34,115,116,97,114,116,34,61,61,61,116,125,41,41,125,102,117,110,99,116,105,111,110,32,116,105,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,111,61,81,114,40,101,41,63,104,110,58,100,110,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,111,40,116,104,105,115,44,116,41,44,115,61,97,46,111,110,59,115,33,61,61,114,38,38,40,105,61,40,114,61,115,41,46,99,111,112,121,40,41,41,46,111,110,40,101,44,110,41,44,97,46,111,110,61,105,125,125,102,117,110,99,116,105,111,110,32,101,105,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,100,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,63,112,110,40,116,104,105,115,46,110,111,100,101,40,41,44,110,41,46,111,110,46,111,110,40,116,41,58,116,104,105,115,46,101,97,99,104,40,116,105,40,110,44,116,44,101,41,41,125,102,117,110,99,116,105,111,110,32,110,105,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,46,95,95,116,114,97,110,115,105,116,105,111,110,41,105,102,40,43,110,33,61,61,116,41,114,101,116,117,114,110,59,101,38,38,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,41,125,125,102,117,110,99,116,105,111,110,32,114,105,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,34,101,110,100,46,114,101,109,111,118,101,34,44,110,105,40,116,104,105,115,46,95,105,100,41,41,125,102,117,110,99,116,105,111,110,32,105,105,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,110,97,109,101,44,110,61,116,104,105,115,46,95,105,100,59,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,116,38,38,40,116,61,82,40,116,41,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,44,97,61,48,59,97,60,105,59,43,43,97,41,102,111,114,40,118,97,114,32,115,44,99,44,117,61,114,91,97,93,44,108,61,117,46,108,101,110,103,116,104,44,102,61,111,91,97,93,61,110,101,119,32,65,114,114,97,121,40,108,41,44,104,61,48,59,104,60,108,59,43,43,104,41,40,115,61,117,91,104,93,41,38,38,40,99,61,116,46,99,97,108,108,40,115,44,115,46,95,95,100,97,116,97,95,95,44,104,44,117,41,41,38,38,40,34,95,95,100,97,116,97,95,95,34,105,110,32,115,38,38,40,99,46,95,95,100,97,116,97,95,95,61,115,46,95,95,100,97,116,97,95,95,41,44,102,91,104,93,61,99,44,102,110,40,102,91,104,93,44,101,44,110,44,104,44,102,44,112,110,40,115,44,110,41,41,41,59,114,101,116,117,114,110,32,110,101,119,32,67,105,40,111,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,101,44,110,41,125,102,117,110,99,116,105,111,110,32,111,105,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,110,97,109,101,44,110,61,116,104,105,115,46,95,105,100,59,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,116,38,38,40,116,61,122,40,116,41,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,91,93,44,97,61,91,93,44,115,61,48,59,115,60,105,59,43,43,115,41,102,111,114,40,118,97,114,32,99,44,117,61,114,91,115,93,44,108,61,117,46,108,101,110,103,116,104,44,102,61,48,59,102,60,108,59,43,43,102,41,105,102,40,99,61,117,91,102,93,41,123,102,111,114,40,118,97,114,32,104,44,100,61,116,46,99,97,108,108,40,99,44,99,46,95,95,100,97,116,97,95,95,44,102,44,117,41,44,112,61,112,110,40,99,44,110,41,44,118,61,48,44,103,61,100,46,108,101,110,103,116,104,59,118,60,103,59,43,43,118,41,40,104,61,100,91,118,93,41,38,38,102,110,40,104,44,101,44,110,44,118,44,100,44,112,41,59,111,46,112,117,115,104,40,100,41,44,97,46,112,117,115,104,40,99,41,125,114,101,116,117,114,110,32,110,101,119,32,67,105,40,111,44,97,44,101,44,110,41,125,118,97,114,32,97,105,61,67,101,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,59,102,117,110,99,116,105,111,110,32,115,105,40,41,123,114,101,116,117,114,110,32,110,101,119,32,97,105,40,116,104,105,115,46,95,103,114,111,117,112,115,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,99,105,40,116,44,101,41,123,118,97,114,32,110,44,114,44,105,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,67,116,40,116,104,105,115,44,116,41,44,97,61,40,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,44,67,116,40,116,104,105,115,44,116,41,41,59,114,101,116,117,114,110,32,111,61,61,61,97,63,110,117,108,108,58,111,61,61,61,110,38,38,97,61,61,61,114,63,105,58,105,61,101,40,110,61,111,44,114,61,97,41,125,125,102,117,110,99,116,105,111,110,32,117,105,40,116,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,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,125,125,102,117,110,99,116,105,111,110,32,108,105,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,111,61,110,43,34,34,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,67,116,40,116,104,105,115,44,116,41,59,114,101,116,117,114,110,32,97,61,61,61,111,63,110,117,108,108,58,97,61,61,61,114,63,105,58,105,61,101,40,114,61,97,44,110,41,125,125,102,117,110,99,116,105,111,110,32,102,105,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,111,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,67,116,40,116,104,105,115,44,116,41,44,115,61,110,40,116,104,105,115,41,44,99,61,115,43,34,34,59,114,101,116,117,114,110,32,110,117,108,108,61,61,115,38,38,40,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,44,99,61,115,61,67,116,40,116,104,105,115,44,116,41,41,44,97,61,61,61,99,63,110,117,108,108,58,97,61,61,61,114,38,38,99,61,61,61,105,63,111,58,40,105,61,99,44,111,61,101,40,114,61,97,44,115,41,41,125,125,102,117,110,99,116,105,111,110,32,104,105,40,116,44,101,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,61,34,115,116,121,108,101,46,34,43,101,44,115,61,34,101,110,100,46,34,43,97,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,99,61,100,110,40,116,104,105,115,44,116,41,44,117,61,99,46,111,110,44,108,61,110,117,108,108,61,61,99,46,118,97,108,117,101,91,97,93,63,111,124,124,40,111,61,117,105,40,101,41,41,58,118,111,105,100,32,48,59,117,61,61,61,110,38,38,105,61,61,61,108,124,124,40,114,61,40,110,61,117,41,46,99,111,112,121,40,41,41,46,111,110,40,115,44,105,61,108,41,44,99,46,111,110,61,114,125,125,102,117,110,99,116,105,111,110,32,100,105,40,116,44,101,44,110,41,123,118,97,114,32,114,61,34,116,114,97,110,115,102,111,114,109,34,61,61,61,40,116,43,61,34,34,41,63,106,110,58,69,114,59,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,116,104,105,115,46,115,116,121,108,101,84,119,101,101,110,40,116,44,99,105,40,116,44,114,41,41,46,111,110,40,34,101,110,100,46,115,116,121,108,101,46,34,43,116,44,117,105,40,116,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,116,104,105,115,46,115,116,121,108,101,84,119,101,101,110,40,116,44,102,105,40,116,44,114,44,73,110,40,116,104,105,115,44,34,115,116,121,108,101,46,34,43,116,44,101,41,41,41,46,101,97,99,104,40,104,105,40,116,104,105,115,46,95,105,100,44,116,41,41,58,116,104,105,115,46,115,116,121,108,101,84,119,101,101,110,40,116,44,108,105,40,116,44,114,44,101,41,44,110,41,46,111,110,40,34,101,110,100,46,115,116,121,108,101,46,34,43,116,44,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,112,105,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,116,104,105,115,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,101,46,99,97,108,108,40,116,104,105,115,44,114,41,44,110,41,125,125,102,117,110,99,116,105,111,110,32,118,105,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,59,102,117,110,99,116,105,111,110,32,111,40,41,123,118,97,114,32,111,61,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,111,33,61,61,105,38,38,40,114,61,40,105,61,111,41,38,38,112,105,40,116,44,111,44,110,41,41,44,114,125,114,101,116,117,114,110,32,111,46,95,118,97,108,117,101,61,101,44,111,125,102,117,110,99,116,105,111,110,32,103,105,40,116,44,101,44,110,41,123,118,97,114,32,114,61,34,115,116,121,108,101,46,34,43,40,116,43,61,34,34,41,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,114,101,116,117,114,110,40,114,61,116,104,105,115,46,116,119,101,101,110,40,114,41,41,38,38,114,46,95,118,97,108,117,101,59,105,102,40,110,117,108,108,61,61,101,41,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,114,44,110,117,108,108,41,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,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,59,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,114,44,118,105,40,116,44,101,44,110,117,108,108,61,61,110,63,34,34,58,110,41,41,125,102,117,110,99,116,105,111,110,32,109,105,40,116,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,116,101,120,116,67,111,110,116,101,110,116,61,116,125,125,102,117,110,99,116,105,111,110,32,98,105,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,40,116,104,105,115,41,59,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,110,117,108,108,61,61,101,63,34,34,58,101,125,125,102,117,110,99,116,105,111,110,32,121,105,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,34,116,101,120,116,34,44,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,98,105,40,73,110,40,116,104,105,115,44,34,116,101,120,116,34,44,116,41,41,58,109,105,40,110,117,108,108,61,61,116,63,34,34,58,116,43,34,34,41,41,125,102,117,110,99,116,105,111,110,32,119,105,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,116,46,99,97,108,108,40,116,104,105,115,44,101,41,125,125,102,117,110,99,116,105,111,110,32,95,105,40,116,41,123,118,97,114,32,101,44,110,59,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,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,59,114,101,116,117,114,110,32,114,33,61,61,110,38,38,40,101,61,40,110,61,114,41,38,38,119,105,40,114,41,41,44,101,125,114,101,116,117,114,110,32,114,46,95,118,97,108,117,101,61,116,44,114,125,102,117,110,99,116,105,111,110,32,120,105,40,116,41,123,118,97,114,32,101,61,34,116,101,120,116,34,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,49,41,114,101,116,117,114,110,40,101,61,116,104,105,115,46,116,119,101,101,110,40,101,41,41,38,38,101,46,95,118,97,108,117,101,59,105,102,40,110,117,108,108,61,61,116,41,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,101,44,110,117,108,108,41,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,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,59,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,101,44,95,105,40,116,41,41,125,102,117,110,99,116,105,111,110,32,79,105,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,95,110,97,109,101,44,101,61,116,104,105,115,46,95,105,100,44,110,61,84,105,40,41,44,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,48,59,111,60,105,59,43,43,111,41,102,111,114,40,118,97,114,32,97,44,115,61,114,91,111,93,44,99,61,115,46,108,101,110,103,116,104,44,117,61,48,59,117,60,99,59,43,43,117,41,105,102,40,97,61,115,91,117,93,41,123,118,97,114,32,108,61,112,110,40,97,44,101,41,59,102,110,40,97,44,116,44,110,44,117,44,115,44,123,116,105,109,101,58,108,46,116,105,109,101,43,108,46,100,101,108,97,121,43,108,46,100,117,114,97,116,105,111,110,44,100,101,108,97,121,58,48,44,100,117,114,97,116,105,111,110,58,108,46,100,117,114,97,116,105,111,110,44,101,97,115,101,58,108,46,101,97,115,101,125,41,125,114,101,116,117,114,110,32,110,101,119,32,67,105,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,44,110,41,125,102,117,110,99,116,105,111,110,32,83,105,40,41,123,118,97,114,32,116,44,101,44,110,61,116,104,105,115,44,114,61,110,46,95,105,100,44,105,61,110,46,115,105,122,101,40,41,59,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,111,44,97,41,123,118,97,114,32,115,61,123,118,97,108,117,101,58,97,125,44,99,61,123,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,45,45,105,38,38,111,40,41,125,125,59,110,46,101,97,99,104,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,100,110,40,116,104,105,115,44,114,41,44,105,61,110,46,111,110,59,105,33,61,61,116,38,38,40,101,61,40,116,61,105,41,46,99,111,112,121,40,41,44,101,46,95,46,99,97,110,99,101,108,46,112,117,115,104,40,115,41,44,101,46,95,46,105,110,116,101,114,114,117,112,116,46,112,117,115,104,40,115,41,44,101,46,95,46,101,110,100,46,112,117,115,104,40,99,41,41,44,110,46,111,110,61,101,125,41,41,125,41,41,125,118,97,114,32,107,105,61,48,59,102,117,110,99,116,105,111,110,32,67,105,40,116,44,101,44,110,44,114,41,123,116,104,105,115,46,95,103,114,111,117,112,115,61,116,44,116,104,105,115,46,95,112,97,114,101,110,116,115,61,101,44,116,104,105,115,46,95,110,97,109,101,61,110,44,116,104,105,115,46,95,105,100,61,114,125,102,117,110,99,116,105,111,110,32,80,105,40,116,41,123,114,101,116,117,114,110,32,67,101,40,41,46,116,114,97,110,115,105,116,105,111,110,40,116,41,125,102,117,110,99,116,105,111,110,32,84,105,40,41,123,114,101,116,117,114,110,43,43,107,105,125,118,97,114,32,106,105,61,67,101,46,112,114,111,116,111,116,121,112,101,59,102,117,110,99,116,105,111,110,32,69,105,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,116,42,116,42,116,58,40,116,45,61,50,41,42,116,42,116,43,50,41,47,50,125,67,105,46,112,114,111,116,111,116,121,112,101,61,80,105,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,67,105,44,115,101,108,101,99,116,58,105,105,44,115,101,108,101,99,116,65,108,108,58,111,105,44,102,105,108,116,101,114,58,90,114,44,109,101,114,103,101,58,74,114,44,115,101,108,101,99,116,105,111,110,58,115,105,44,116,114,97,110,115,105,116,105,111,110,58,79,105,44,99,97,108,108,58,106,105,46,99,97,108,108,44,110,111,100,101,115,58,106,105,46,110,111,100,101,115,44,110,111,100,101,58,106,105,46,110,111,100,101,44,115,105,122,101,58,106,105,46,115,105,122,101,44,101,109,112,116,121,58,106,105,46,101,109,112,116,121,44,101,97,99,104,58,106,105,46,101,97,99,104,44,111,110,58,101,105,44,97,116,116,114,58,70,114,44,97,116,116,114,84,119,101,101,110,58,86,114,44,115,116,121,108,101,58,100,105,44,115,116,121,108,101,84,119,101,101,110,58,103,105,44,116,101,120,116,58,121,105,44,116,101,120,116,84,119,101,101,110,58,120,105,44,114,101,109,111,118,101,58,114,105,44,116,119,101,101,110,58,76,110,44,100,101,108,97,121,58,87,114,44,100,117,114,97,116,105,111,110,58,89,114,44,101,97,115,101,58,88,114,44,101,110,100,58,83,105,125,59,118,97,114,32,68,105,61,123,116,105,109,101,58,110,117,108,108,44,100,101,108,97,121,58,48,44,100,117,114,97,116,105,111,110,58,50,53,48,44,101,97,115,101,58,69,105,125,59,102,117,110,99,116,105,111,110,32,65,105,40,116,44,101,41,123,118,97,114,32,110,59,119,104,105,108,101,40,33,40,110,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,41,124,124,33,40,110,61,110,91,101,93,41,41,105,102,40,33,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,41,114,101,116,117,114,110,32,68,105,46,116,105,109,101,61,87,101,40,41,44,68,105,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,76,105,40,116,41,123,118,97,114,32,101,44,110,59,116,32,105,110,115,116,97,110,99,101,111,102,32,67,105,63,40,101,61,116,46,95,105,100,44,116,61,116,46,95,110,97,109,101,41,58,40,101,61,84,105,40,41,44,40,110,61,68,105,41,46,116,105,109,101,61,87,101,40,41,44,116,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,43,34,34,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,48,59,111,60,105,59,43,43,111,41,102,111,114,40,118,97,114,32,97,44,115,61,114,91,111,93,44,99,61,115,46,108,101,110,103,116,104,44,117,61,48,59,117,60,99,59,43,43,117,41,40,97,61,115,91,117,93,41,38,38,102,110,40,97,44,116,44,101,44,117,44,115,44,110,124,124,65,105,40,97,44,101,41,41,59,114,101,116,117,114,110,32,110,101,119,32,67,105,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,44,101,41,125,67,101,46,112,114,111,116,111,116,121,112,101,46,105,110,116,101,114,114,117,112,116,61,109,110,44,67,101,46,112,114,111,116,111,116,121,112,101,46,116,114,97,110,115,105,116,105,111,110,61,76,105,59,102,117,110,99,116,105,111,110,32,73,105,40,116,41,123,114,101,116,117,114,110,91,43,116,91,48,93,44,43,116,91,49,93,93,125,102,117,110,99,116,105,111,110,32,77,105,40,116,41,123,114,101,116,117,114,110,91,73,105,40,116,91,48,93,41,44,73,105,40,116,91,49,93,41,93,125,91,34,119,34,44,34,101,34,93,46,109,97,112,40,36,105,41,44,91,34,110,34,44,34,115,34,93,46,109,97,112,40,36,105,41,44,91,34,110,34,44,34,119,34,44,34,101,34,44,34,115,34,44,34,110,119,34,44,34,110,101,34,44,34,115,119,34,44,34,115,101,34,93,46,109,97,112,40,36,105,41,59,102,117,110,99,116,105,111,110,32,36,105,40,116,41,123,114,101,116,117,114,110,123,116,121,112,101,58,116,125,125,77,97,116,104,46,99,111,115,44,77,97,116,104,46,115,105,110,44,77,97,116,104,46,80,73,44,77,97,116,104,46,109,97,120,59,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,118,97,114,32,70,105,61,34,36,34,59,102,117,110,99,116,105,111,110,32,82,105,40,41,123,125,102,117,110,99,116,105,111,110,32,78,105,40,116,44,101,41,123,118,97,114,32,110,61,110,101,119,32,82,105,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,82,105,41,116,46,101,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,110,46,115,101,116,40,101,44,116,41,125,41,41,59,101,108,115,101,32,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,123,118,97,114,32,114,44,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,59,105,102,40,110,117,108,108,61,61,101,41,119,104,105,108,101,40,43,43,105,60,111,41,110,46,115,101,116,40,105,44,116,91,105,93,41,59,101,108,115,101,32,119,104,105,108,101,40,43,43,105,60,111,41,110,46,115,101,116,40,101,40,114,61,116,91,105,93,44,105,44,116,41,44,114,41,125,101,108,115,101,32,105,102,40,116,41,102,111,114,40,118,97,114,32,97,32,105,110,32,116,41,110,46,115,101,116,40,97,44,116,91,97,93,41,59,114,101,116,117,114,110,32,110,125,82,105,46,112,114,111,116,111,116,121,112,101,61,78,105,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,82,105,44,104,97,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,70,105,43,116,32,105,110,32,116,104,105,115,125,44,103,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,91,70,105,43,116,93,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,91,70,105,43,116,93,61,101,44,116,104,105,115,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,70,105,43,116,59,114,101,116,117,114,110,32,101,32,105,110,32,116,104,105,115,38,38,100,101,108,101,116,101,32,116,104,105,115,91,101,93,125,44,99,108,101,97,114,58,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,41,116,91,48,93,61,61,61,70,105,38,38,100,101,108,101,116,101,32,116,104,105,115,91,116,93,125,44,107,101,121,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,104,105,115,41,101,91,48,93,61,61,61,70,105,38,38,116,46,112,117,115,104,40,101,46,115,108,105,99,101,40,49,41,41,59,114,101,116,117,114,110,32,116,125,44,118,97,108,117,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,104,105,115,41,101,91,48,93,61,61,61,70,105,38,38,116,46,112,117,115,104,40,116,104,105,115,91,101,93,41,59,114,101,116,117,114,110,32,116,125,44,101,110,116,114,105,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,104,105,115,41,101,91,48,93,61,61,61,70,105,38,38,116,46,112,117,115,104,40,123,107,101,121,58,101,46,115,108,105,99,101,40,49,41,44,118,97,108,117,101,58,116,104,105,115,91,101,93,125,41,59,114,101,116,117,114,110,32,116,125,44,115,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,104,105,115,41,101,91,48,93,61,61,61,70,105,38,38,43,43,116,59,114,101,116,117,114,110,32,116,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,116,32,105,110,32,116,104,105,115,41,105,102,40,116,91,48,93,61,61,61,70,105,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,32,105,110,32,116,104,105,115,41,101,91,48,93,61,61,61,70,105,38,38,116,40,116,104,105,115,91,101,93,44,101,46,115,108,105,99,101,40,49,41,44,116,104,105,115,41,125,125,59,118,97,114,32,66,105,61,78,105,59,102,117,110,99,116,105,111,110,32,122,105,40,41,123,118,97,114,32,116,44,101,44,110,44,114,61,91,93,44,105,61,91,93,59,102,117,110,99,116,105,111,110,32,111,40,110,44,105,44,97,44,115,41,123,105,102,40,105,62,61,114,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,117,108,108,33,61,116,38,38,110,46,115,111,114,116,40,116,41,44,110,117,108,108,33,61,101,63,101,40,110,41,58,110,59,118,97,114,32,99,44,117,44,108,44,102,61,45,49,44,104,61,110,46,108,101,110,103,116,104,44,100,61,114,91,105,43,43,93,44,112,61,66,105,40,41,44,118,61,97,40,41,59,119,104,105,108,101,40,43,43,102,60,104,41,40,108,61,112,46,103,101,116,40,99,61,100,40,117,61,110,91,102,93,41,43,34,34,41,41,63,108,46,112,117,115,104,40,117,41,58,112,46,115,101,116,40,99,44,91,117,93,41,59,114,101,116,117,114,110,32,112,46,101,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,115,40,118,44,101,44,111,40,116,44,105,44,97,44,115,41,41,125,41,41,44,118,125,102,117,110,99,116,105,111,110,32,97,40,116,44,110,41,123,105,102,40,43,43,110,62,114,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,116,59,118,97,114,32,111,44,115,61,105,91,110,45,49,93,59,114,101,116,117,114,110,32,110,117,108,108,33,61,101,38,38,110,62,61,114,46,108,101,110,103,116,104,63,111,61,116,46,101,110,116,114,105,101,115,40,41,58,40,111,61,91,93,44,116,46,101,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,111,46,112,117,115,104,40,123,107,101,121,58,101,44,118,97,108,117,101,115,58,97,40,116,44,110,41,125,41,125,41,41,41,44,110,117,108,108,33,61,115,63,111,46,115,111,114,116,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,115,40,116,46,107,101,121,44,101,46,107,101,121,41,125,41,41,58,111,125,114,101,116,117,114,110,32,110,61,123,111,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,40,116,44,48,44,86,105,44,72,105,41,125,44,109,97,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,40,116,44,48,44,85,105,44,87,105,41,125,44,101,110,116,114,105,101,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,40,111,40,116,44,48,44,85,105,44,87,105,41,44,48,41,125,44,107,101,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,112,117,115,104,40,116,41,44,110,125,44,115,111,114,116,75,101,121,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,91,114,46,108,101,110,103,116,104,45,49,93,61,116,44,110,125,44,115,111,114,116,86,97,108,117,101,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,61,101,44,110,125,44,114,111,108,108,117,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,61,116,44,110,125,125,125,102,117,110,99,116,105,111,110,32,86,105,40,41,123,114,101,116,117,114,110,123,125,125,102,117,110,99,116,105,111,110,32,72,105,40,116,44,101,44,110,41,123,116,91,101,93,61,110,125,102,117,110,99,116,105,111,110,32,85,105,40,41,123,114,101,116,117,114,110,32,66,105,40,41,125,102,117,110,99,116,105,111,110,32,87,105,40,116,44,101,44,110,41,123,116,46,115,101,116,40,101,44,110,41,125,102,117,110,99,116,105,111,110,32,71,105,40,41,123,125,118,97,114,32,113,105,61,66,105,46,112,114,111,116,111,116,121,112,101,59,102,117,110,99,116,105,111,110,32,89,105,40,116,44,101,41,123,118,97,114,32,110,61,110,101,119,32,71,105,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,71,105,41,116,46,101,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,110,46,97,100,100,40,116,41,125,41,41,59,101,108,115,101,32,105,102,40,116,41,123,118,97,114,32,114,61,45,49,44,105,61,116,46,108,101,110,103,116,104,59,105,102,40,110,117,108,108,61,61,101,41,119,104,105,108,101,40,43,43,114,60,105,41,110,46,97,100,100,40,116,91,114,93,41,59,101,108,115,101,32,119,104,105,108,101,40,43,43,114,60,105,41,110,46,97,100,100,40,101,40,116,91,114,93,44,114,44,116,41,41,125,114,101,116,117,114,110,32,110,125,71,105,46,112,114,111,116,111,116,121,112,101,61,89,105,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,71,105,44,104,97,115,58,113,105,46,104,97,115,44,97,100,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,43,61,34,34,44,116,104,105,115,91,70,105,43,116,93,61,116,44,116,104,105,115,125,44,114,101,109,111,118,101,58,113,105,46,114,101,109,111,118,101,44,99,108,101,97,114,58,113,105,46,99,108,101,97,114,44,118,97,108,117,101,115,58,113,105,46,107,101,121,115,44,115,105,122,101,58,113,105,46,115,105,122,101,44,101,109,112,116,121,58,113,105,46,101,109,112,116,121,44,101,97,99,104,58,113,105,46,101,97,99,104,125,59,118,97,114,32,75,105,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,59,75,105,46,115,108,105,99,101,59,118,97,114,32,88,105,61,123,125,44,90,105,61,123,125,44,74,105,61,51,52,44,81,105,61,49,48,44,116,111,61,49,51,59,102,117,110,99,116,105,111,110,32,101,111,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,70,117,110,99,116,105,111,110,40,34,100,34,44,34,114,101,116,117,114,110,32,123,34,43,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,41,43,34,58,32,100,91,34,43,101,43,39,93,32,124,124,32,34,34,39,125,41,41,46,106,111,105,110,40,34,44,34,41,43,34,125,34,41,125,102,117,110,99,116,105,111,110,32,110,111,40,116,44,101,41,123,118,97,114,32,110,61,101,111,40,116,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,105,41,123,114,101,116,117,114,110,32,101,40,110,40,114,41,44,105,44,116,41,125,125,102,117,110,99,116,105,111,110,32,114,111,40,116,41,123,118,97,114,32,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,110,61,91,93,59,114,101,116,117,114,110,32,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,114,32,105,110,32,101,124,124,110,46,112,117,115,104,40,101,91,114,93,61,114,41,125,41,41,44,110,125,102,117,110,99,116,105,111,110,32,105,111,40,116,44,101,41,123,118,97,114,32,110,61,116,43,34,34,44,114,61,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,60,101,63,110,101,119,32,65,114,114,97,121,40,101,45,114,43,49,41,46,106,111,105,110,40,48,41,43,110,58,110,125,102,117,110,99,116,105,111,110,32,111,111,40,116,41,123,114,101,116,117,114,110,32,116,60,48,63,34,45,34,43,105,111,40,45,116,44,54,41,58,116,62,57,57,57,57,63,34,43,34,43,105,111,40,116,44,54,41,58,105,111,40,116,44,52,41,125,102,117,110,99,116,105,111,110,32,97,111,40,116,41,123,118,97,114,32,101,61,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,44,110,61,116,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,44,114,61,116,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,44,105,61,116,46,103,101,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,41,59,114,101,116,117,114,110,32,105,115,78,97,78,40,116,41,63,34,73,110,118,97,108,105,100,32,68,97,116,101,34,58,111,111,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,44,52,41,43,34,45,34,43,105,111,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,49,44,50,41,43,34,45,34,43,105,111,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,44,50,41,43,40,105,63,34,84,34,43,105,111,40,101,44,50,41,43,34,58,34,43,105,111,40,110,44,50,41,43,34,58,34,43,105,111,40,114,44,50,41,43,34,46,34,43,105,111,40,105,44,51,41,43,34,90,34,58,114,63,34,84,34,43,105,111,40,101,44,50,41,43,34,58,34,43,105,111,40,110,44,50,41,43,34,58,34,43,105,111,40,114,44,50,41,43,34,90,34,58,110,124,124,101,63,34,84,34,43,105,111,40,101,44,50,41,43,34,58,34,43,105,111,40,110,44,50,41,43,34,90,34,58,34,34,41,125,102,117,110,99,116,105,111,110,32,115,111,40,116,41,123,118,97,114,32,101,61,110,101,119,32,82,101,103,69,120,112,40,39,91,34,39,43,116,43,34,92,110,92,114,93,34,41,44,110,61,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,59,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,118,97,114,32,110,44,114,44,111,61,105,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,105,41,123,105,102,40,110,41,114,101,116,117,114,110,32,110,40,116,44,105,45,49,41,59,114,61,116,44,110,61,101,63,110,111,40,116,44,101,41,58,101,111,40,116,41,125,41,41,59,114,101,116,117,114,110,32,111,46,99,111,108,117,109,110,115,61,114,124,124,91,93,44,111,125,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,118,97,114,32,114,44,105,61,91,93,44,111,61,116,46,108,101,110,103,116,104,44,97,61,48,44,115,61,48,44,99,61,111,60,61,48,44,117,61,33,49,59,102,117,110,99,116,105,111,110,32,108,40,41,123,105,102,40,99,41,114,101,116,117,114,110,32,90,105,59,105,102,40,117,41,114,101,116,117,114,110,32,117,61,33,49,44,88,105,59,118,97,114,32,101,44,114,44,105,61,97,59,105,102,40,116,46,99,104,97,114,67,111,100,101,65,116,40,105,41,61,61,61,74,105,41,123,119,104,105,108,101,40,97,43,43,60,111,38,38,116,46,99,104,97,114,67,111,100,101,65,116,40,97,41,33,61,61,74,105,124,124,116,46,99,104,97,114,67,111,100,101,65,116,40,43,43,97,41,61,61,61,74,105,41,59,114,101,116,117,114,110,40,101,61,97,41,62,61,111,63,99,61,33,48,58,40,114,61,116,46,99,104,97,114,67,111,100,101,65,116,40,97,43,43,41,41,61,61,61,81,105,63,117,61,33,48,58,114,61,61,61,116,111,38,38,40,117,61,33,48,44,116,46,99,104,97,114,67,111,100,101,65,116,40,97,41,61,61,61,81,105,38,38,43,43,97,41,44,116,46,115,108,105,99,101,40,105,43,49,44,101,45,49,41,46,114,101,112,108,97,99,101,40,47,34,34,47,103,44,39,34,39,41,125,119,104,105,108,101,40,97,60,111,41,123,105,102,40,40,114,61,116,46,99,104,97,114,67,111,100,101,65,116,40,101,61,97,43,43,41,41,61,61,61,81,105,41,117,61,33,48,59,101,108,115,101,32,105,102,40,114,61,61,61,116,111,41,117,61,33,48,44,116,46,99,104,97,114,67,111,100,101,65,116,40,97,41,61,61,61,81,105,38,38,43,43,97,59,101,108,115,101,32,105,102,40,114,33,61,61,110,41,99,111,110,116,105,110,117,101,59,114,101,116,117,114,110,32,116,46,115,108,105,99,101,40,105,44,101,41,125,114,101,116,117,114,110,32,99,61,33,48,44,116,46,115,108,105,99,101,40,105,44,111,41,125,116,46,99,104,97,114,67,111,100,101,65,116,40,111,45,49,41,61,61,61,81,105,38,38,45,45,111,44,116,46,99,104,97,114,67,111,100,101,65,116,40,111,45,49,41,61,61,61,116,111,38,38,45,45,111,59,119,104,105,108,101,40,40,114,61,108,40,41,41,33,61,61,90,105,41,123,118,97,114,32,102,61,91,93,59,119,104,105,108,101,40,114,33,61,61,88,105,38,38,114,33,61,61,90,105,41,102,46,112,117,115,104,40,114,41,44,114,61,108,40,41,59,101,38,38,110,117,108,108,61,61,40,102,61,101,40,102,44,115,43,43,41,41,124,124,105,46,112,117,115,104,40,102,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,111,40,101,44,110,41,123,114,101,116,117,114,110,32,101,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,108,40,101,91,116,93,41,125,41,41,46,106,111,105,110,40,116,41,125,41,41,125,102,117,110,99,116,105,111,110,32,97,40,101,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,38,38,40,110,61,114,111,40,101,41,41,44,91,110,46,109,97,112,40,108,41,46,106,111,105,110,40,116,41,93,46,99,111,110,99,97,116,40,111,40,101,44,110,41,41,46,106,111,105,110,40,34,92,110,34,41,125,102,117,110,99,116,105,111,110,32,115,40,116,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,38,38,40,101,61,114,111,40,116,41,41,44,111,40,116,44,101,41,46,106,111,105,110,40,34,92,110,34,41,125,102,117,110,99,116,105,111,110,32,99,40,116,41,123,114,101,116,117,114,110,32,116,46,109,97,112,40,117,41,46,106,111,105,110,40,34,92,110,34,41,125,102,117,110,99,116,105,111,110,32,117,40,101,41,123,114,101,116,117,114,110,32,101,46,109,97,112,40,108,41,46,106,111,105,110,40,116,41,125,102,117,110,99,116,105,111,110,32,108,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,34,34,58,116,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,63,97,111,40,116,41,58,101,46,116,101,115,116,40,116,43,61,34,34,41,63,39,34,39,43,116,46,114,101,112,108,97,99,101,40,47,34,47,103,44,39,34,34,39,41,43,39,34,39,58,116,125,114,101,116,117,114,110,123,112,97,114,115,101,58,114,44,112,97,114,115,101,82,111,119,115,58,105,44,102,111,114,109,97,116,58,97,44,102,111,114,109,97,116,66,111,100,121,58,115,44,102,111,114,109,97,116,82,111,119,115,58,99,44,102,111,114,109,97,116,82,111,119,58,117,44,102,111,114,109,97,116,86,97,108,117,101,58,108,125,125,118,97,114,32,99,111,61,115,111,40,34,44,34,41,44,117,111,61,99,111,46,112,97,114,115,101,44,108,111,61,40,99,111,46,112,97,114,115,101,82,111,119,115,44,99,111,46,102,111,114,109,97,116,44,99,111,46,102,111,114,109,97,116,66,111,100,121,44,99,111,46,102,111,114,109,97,116,82,111,119,115,44,99,111,46,102,111,114,109,97,116,82,111,119,44,99,111,46,102,111,114,109,97,116,86,97,108,117,101,44,115,111,40,34,92,116,34,41,41,44,102,111,61,108,111,46,112,97,114,115,101,59,108,111,46,112,97,114,115,101,82,111,119,115,44,108,111,46,102,111,114,109,97,116,44,108,111,46,102,111,114,109,97,116,66,111,100,121,44,108,111,46,102,111,114,109,97,116,82,111,119,115,44,108,111,46,102,111,114,109,97,116,82,111,119,44,108,111,46,102,111,114,109,97,116,86,97,108,117,101,59,102,117,110,99,116,105,111,110,32,104,111,40,116,41,123,105,102,40,33,116,46,111,107,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,115,116,97,116,117,115,43,34,32,34,43,116,46,115,116,97,116,117,115,84,101,120,116,41,59,114,101,116,117,114,110,32,116,46,116,101,120,116,40,41,125,102,117,110,99,116,105,111,110,32,112,111,40,116,44,101,41,123,114,101,116,117,114,110,32,102,101,116,99,104,40,116,44,101,41,46,116,104,101,110,40,104,111,41,125,102,117,110,99,116,105,111,110,32,118,111,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,44,114,41,123,114,101,116,117,114,110,32,50,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,110,38,38,40,114,61,110,44,110,61,118,111,105,100,32,48,41,44,112,111,40,101,44,110,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,101,44,114,41,125,41,41,125,125,118,97,114,32,103,111,61,118,111,40,117,111,41,59,118,111,40,102,111,41,59,77,97,116,104,46,80,73,44,77,97,116,104,46,115,113,114,116,40,53,41,59,102,117,110,99,116,105,111,110,32,109,111,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,97,98,115,40,116,61,77,97,116,104,46,114,111,117,110,100,40,116,41,41,62,61,49,101,50,49,63,116,46,116,111,76,111,99,97,108,101,83,116,114,105,110,103,40,34,101,110,34,41,46,114,101,112,108,97,99,101,40,47,44,47,103,44,34,34,41,58,116,46,116,111,83,116,114,105,110,103,40,49,48,41,125,102,117,110,99,116,105,111,110,32,98,111,40,116,44,101,41,123,105,102,40,40,110,61,40,116,61,101,63,116,46,116,111,69,120,112,111,110,101,110,116,105,97,108,40,101,45,49,41,58,116,46,116,111,69,120,112,111,110,101,110,116,105,97,108,40,41,41,46,105,110,100,101,120,79,102,40,34,101,34,41,41,60,48,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,110,44,114,61,116,46,115,108,105,99,101,40,48,44,110,41,59,114,101,116,117,114,110,91,114,46,108,101,110,103,116,104,62,49,63,114,91,48,93,43,114,46,115,108,105,99,101,40,50,41,58,114,44,43,116,46,115,108,105,99,101,40,110,43,49,41,93,125,102,117,110,99,116,105,111,110,32,121,111,40,116,41,123,114,101,116,117,114,110,32,116,61,98,111,40,77,97,116,104,46,97,98,115,40,116,41,41,44,116,63,116,91,49,93,58,78,97,78,125,102,117,110,99,116,105,111,110,32,119,111,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,105,61,110,46,108,101,110,103,116,104,44,111,61,91,93,44,97,61,48,44,115,61,116,91,48,93,44,99,61,48,59,119,104,105,108,101,40,105,62,48,38,38,115,62,48,41,123,105,102,40,99,43,115,43,49,62,114,38,38,40,115,61,77,97,116,104,46,109,97,120,40,49,44,114,45,99,41,41,44,111,46,112,117,115,104,40,110,46,115,117,98,115,116,114,105,110,103,40,105,45,61,115,44,105,43,115,41,41,44,40,99,43,61,115,43,49,41,62,114,41,98,114,101,97,107,59,115,61,116,91,97,61,40,97,43,49,41,37,116,46,108,101,110,103,116,104,93,125,114,101,116,117,114,110,32,111,46,114,101,118,101,114,115,101,40,41,46,106,111,105,110,40,101,41,125,125,102,117,110,99,116,105,111,110,32,95,111,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,101,46,114,101,112,108,97,99,101,40,47,91,48,45,57,93,47,103,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,91,43,101,93,125,41,41,125,125,118,97,114,32,120,111,44,79,111,61,47,94,40,63,58,40,46,41,63,40,91,60,62,61,94,93,41,41,63,40,91,43,92,45,40,32,93,41,63,40,91,36,35,93,41,63,40,48,41,63,40,92,100,43,41,63,40,44,41,63,40,92,46,92,100,43,41,63,40,126,41,63,40,91,97,45,122,37,93,41,63,36,47,105,59,102,117,110,99,116,105,111,110,32,83,111,40,116,41,123,105,102,40,33,40,101,61,79,111,46,101,120,101,99,40,116,41,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,102,111,114,109,97,116,58,32,34,43,116,41,59,118,97,114,32,101,59,114,101,116,117,114,110,32,110,101,119,32,107,111,40,123,102,105,108,108,58,101,91,49,93,44,97,108,105,103,110,58,101,91,50,93,44,115,105,103,110,58,101,91,51,93,44,115,121,109,98,111,108,58,101,91,52,93,44,122,101,114,111,58,101,91,53,93,44,119,105,100,116,104,58,101,91,54,93,44,99,111,109,109,97,58,101,91,55,93,44,112,114,101,99,105,115,105,111,110,58,101,91,56,93,38,38,101,91,56,93,46,115,108,105,99,101,40,49,41,44,116,114,105,109,58,101,91,57,93,44,116,121,112,101,58,101,91,49,48,93,125,41,125,102,117,110,99,116,105,111,110,32,107,111,40,116,41,123,116,104,105,115,46,102,105,108,108,61,118,111,105,100,32,48,61,61,61,116,46,102,105,108,108,63,34,32,34,58,116,46,102,105,108,108,43,34,34,44,116,104,105,115,46,97,108,105,103,110,61,118,111,105,100,32,48,61,61,61,116,46,97,108,105,103,110,63,34,62,34,58,116,46,97,108,105,103,110,43,34,34,44,116,104,105,115,46,115,105,103,110,61,118,111,105,100,32,48,61,61,61,116,46,115,105,103,110,63,34,45,34,58,116,46,115,105,103,110,43,34,34,44,116,104,105,115,46,115,121,109,98,111,108,61,118,111,105,100,32,48,61,61,61,116,46,115,121,109,98,111,108,63,34,34,58,116,46,115,121,109,98,111,108,43,34,34,44,116,104,105,115,46,122,101,114,111,61,33,33,116,46,122,101,114,111,44,116,104,105,115,46,119,105,100,116,104,61,118,111,105,100,32,48,61,61,61,116,46,119,105,100,116,104,63,118,111,105,100,32,48,58,43,116,46,119,105,100,116,104,44,116,104,105,115,46,99,111,109,109,97,61,33,33,116,46,99,111,109,109,97,44,116,104,105,115,46,112,114,101,99,105,115,105,111,110,61,118,111,105,100,32,48,61,61,61,116,46,112,114,101,99,105,115,105,111,110,63,118,111,105,100,32,48,58,43,116,46,112,114,101,99,105,115,105,111,110,44,116,104,105,115,46,116,114,105,109,61,33,33,116,46,116,114,105,109,44,116,104,105,115,46,116,121,112,101,61,118,111,105,100,32,48,61,61,61,116,46,116,121,112,101,63,34,34,58,116,46,116,121,112,101,43,34,34,125,102,117,110,99,116,105,111,110,32,67,111,40,116,41,123,116,58,102,111,114,40,118,97,114,32,101,44,110,61,116,46,108,101,110,103,116,104,44,114,61,49,44,105,61,45,49,59,114,60,110,59,43,43,114,41,115,119,105,116,99,104,40,116,91,114,93,41,123,99,97,115,101,34,46,34,58,105,61,101,61,114,59,98,114,101,97,107,59,99,97,115,101,34,48,34,58,48,61,61,61,105,38,38,40,105,61,114,41,44,101,61,114,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,105,102,40,33,43,116,91,114,93,41,98,114,101,97,107,32,116,59,105,62,48,38,38,40,105,61,48,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,105,62,48,63,116,46,115,108,105,99,101,40,48,44,105,41,43,116,46,115,108,105,99,101,40,101,43,49,41,58,116,125,102,117,110,99,116,105,111,110,32,80,111,40,116,44,101,41,123,118,97,114,32,110,61,98,111,40,116,44,101,41,59,105,102,40,33,110,41,114,101,116,117,114,110,32,116,43,34,34,59,118,97,114,32,114,61,110,91,48,93,44,105,61,110,91,49,93,44,111,61,105,45,40,120,111,61,51,42,77,97,116,104,46,109,97,120,40,45,56,44,77,97,116,104,46,109,105,110,40,56,44,77,97,116,104,46,102,108,111,111,114,40,105,47,51,41,41,41,41,43,49,44,97,61,114,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,111,61,61,61,97,63,114,58,111,62,97,63,114,43,110,101,119,32,65,114,114,97,121,40,111,45,97,43,49,41,46,106,111,105,110,40,34,48,34,41,58,111,62,48,63,114,46,115,108,105,99,101,40,48,44,111,41,43,34,46,34,43,114,46,115,108,105,99,101,40,111,41,58,34,48,46,34,43,110,101,119,32,65,114,114,97,121,40,49,45,111,41,46,106,111,105,110,40,34,48,34,41,43,98,111,40,116,44,77,97,116,104,46,109,97,120,40,48,44,101,43,111,45,49,41,41,91,48,93,125,102,117,110,99,116,105,111,110,32,84,111,40,116,44,101,41,123,118,97,114,32,110,61,98,111,40,116,44,101,41,59,105,102,40,33,110,41,114,101,116,117,114,110,32,116,43,34,34,59,118,97,114,32,114,61,110,91,48,93,44,105,61,110,91,49,93,59,114,101,116,117,114,110,32,105,60,48,63,34,48,46,34,43,110,101,119,32,65,114,114,97,121,40,45,105,41,46,106,111,105,110,40,34,48,34,41,43,114,58,114,46,108,101,110,103,116,104,62,105,43,49,63,114,46,115,108,105,99,101,40,48,44,105,43,49,41,43,34,46,34,43,114,46,115,108,105,99,101,40,105,43,49,41,58,114,43,110,101,119,32,65,114,114,97,121,40,105,45,114,46,108,101,110,103,116,104,43,50,41,46,106,111,105,110,40,34,48,34,41,125,83,111,46,112,114,111,116,111,116,121,112,101,61,107,111,46,112,114,111,116,111,116,121,112,101,44,107,111,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,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,108,43,116,104,105,115,46,97,108,105,103,110,43,116,104,105,115,46,115,105,103,110,43,116,104,105,115,46,115,121,109,98,111,108,43,40,116,104,105,115,46,122,101,114,111,63,34,48,34,58,34,34,41,43,40,118,111,105,100,32,48,61,61,61,116,104,105,115,46,119,105,100,116,104,63,34,34,58,77,97,116,104,46,109,97,120,40,49,44,48,124,116,104,105,115,46,119,105,100,116,104,41,41,43,40,116,104,105,115,46,99,111,109,109,97,63,34,44,34,58,34,34,41,43,40,118,111,105,100,32,48,61,61,61,116,104,105,115,46,112,114,101,99,105,115,105,111,110,63,34,34,58,34,46,34,43,77,97,116,104,46,109,97,120,40,48,44,48,124,116,104,105,115,46,112,114,101,99,105,115,105,111,110,41,41,43,40,116,104,105,115,46,116,114,105,109,63,34,126,34,58,34,34,41,43,116,104,105,115,46,116,121,112,101,125,59,118,97,114,32,106,111,61,123,34,37,34,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,40,49,48,48,42,116,41,46,116,111,70,105,120,101,100,40,101,41,125,44,98,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,50,41,125,44,99,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,43,34,34,125,44,100,58,109,111,44,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,116,111,69,120,112,111,110,101,110,116,105,97,108,40,101,41,125,44,102,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,116,111,70,105,120,101,100,40,101,41,125,44,103,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,116,111,80,114,101,99,105,115,105,111,110,40,101,41,125,44,111,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,56,41,125,44,112,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,84,111,40,49,48,48,42,116,44,101,41,125,44,114,58,84,111,44,115,58,80,111,44,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,49,54,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,44,120,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,49,54,41,125,125,59,102,117,110,99,116,105,111,110,32,69,111,40,116,41,123,114,101,116,117,114,110,32,116,125,118,97,114,32,68,111,44,65,111,44,76,111,44,73,111,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,109,97,112,44,77,111,61,91,34,121,34,44,34,122,34,44,34,97,34,44,34,102,34,44,34,112,34,44,34,110,34,44,34,194,181,34,44,34,109,34,44,34,34,44,34,107,34,44,34,77,34,44,34,71,34,44,34,84,34,44,34,80,34,44,34,69,34,44,34,90,34,44,34,89,34,93,59,102,117,110,99,116,105,111,110,32,36,111,40,116,41,123,118,97,114,32,101,61,118,111,105,100,32,48,61,61,61,116,46,103,114,111,117,112,105,110,103,124,124,118,111,105,100,32,48,61,61,61,116,46,116,104,111,117,115,97,110,100,115,63,69,111,58,119,111,40,73,111,46,99,97,108,108,40,116,46,103,114,111,117,112,105,110,103,44,78,117,109,98,101,114,41,44,116,46,116,104,111,117,115,97,110,100,115,43,34,34,41,44,110,61,118,111,105,100,32,48,61,61,61,116,46,99,117,114,114,101,110,99,121,63,34,34,58,116,46,99,117,114,114,101,110,99,121,91,48,93,43,34,34,44,114,61,118,111,105,100,32,48,61,61,61,116,46,99,117,114,114,101,110,99,121,63,34,34,58,116,46,99,117,114,114,101,110,99,121,91,49,93,43,34,34,44,105,61,118,111,105,100,32,48,61,61,61,116,46,100,101,99,105,109,97,108,63,34,46,34,58,116,46,100,101,99,105,109,97,108,43,34,34,44,111,61,118,111,105,100,32,48,61,61,61,116,46,110,117,109,101,114,97,108,115,63,69,111,58,95,111,40,73,111,46,99,97,108,108,40,116,46,110,117,109,101,114,97,108,115,44,83,116,114,105,110,103,41,41,44,97,61,118,111,105,100,32,48,61,61,61,116,46,112,101,114,99,101,110,116,63,34,37,34,58,116,46,112,101,114,99,101,110,116,43,34,34,44,115,61,118,111,105,100,32,48,61,61,61,116,46,109,105,110,117,115,63,34,45,34,58,116,46,109,105,110,117,115,43,34,34,44,99,61,118,111,105,100,32,48,61,61,61,116,46,110,97,110,63,34,78,97,78,34,58,116,46,110,97,110,43,34,34,59,102,117,110,99,116,105,111,110,32,117,40,116,41,123,116,61,83,111,40,116,41,59,118,97,114,32,117,61,116,46,102,105,108,108,44,108,61,116,46,97,108,105,103,110,44,102,61,116,46,115,105,103,110,44,104,61,116,46,115,121,109,98,111,108,44,100,61,116,46,122,101,114,111,44,112,61,116,46,119,105,100,116,104,44,118,61,116,46,99,111,109,109,97,44,103,61,116,46,112,114,101,99,105,115,105,111,110,44,109,61,116,46,116,114,105,109,44,98,61,116,46,116,121,112,101,59,34,110,34,61,61,61,98,63,40,118,61,33,48,44,98,61,34,103,34,41,58,106,111,91,98,93,124,124,40,118,111,105,100,32,48,61,61,61,103,38,38,40,103,61,49,50,41,44,109,61,33,48,44,98,61,34,103,34,41,44,40,100,124,124,34,48,34,61,61,61,117,38,38,34,61,34,61,61,61,108,41,38,38,40,100,61,33,48,44,117,61,34,48,34,44,108,61,34,61,34,41,59,118,97,114,32,121,61,34,36,34,61,61,61,104,63,110,58,34,35,34,61,61,61,104,38,38,47,91,98,111,120,88,93,47,46,116,101,115,116,40,98,41,63,34,48,34,43,98,46,116,111,76,111,119,101,114,67,97,115,101,40,41,58,34,34,44,119,61,34,36,34,61,61,61,104,63,114,58,47,91,37,112,93,47,46,116,101,115,116,40,98,41,63,97,58,34,34,44,95,61,106,111,91,98,93,44,120,61,47,91,100,101,102,103,112,114,115,37,93,47,46,116,101,115,116,40,98,41,59,102,117,110,99,116,105,111,110,32,79,40,116,41,123,118,97,114,32,110,44,114,44,97,44,104,61,121,44,79,61,119,59,105,102,40,34,99,34,61,61,61,98,41,79,61,95,40,116,41,43,79,44,116,61,34,34,59,101,108,115,101,123,116,61,43,116,59,118,97,114,32,83,61,116,60,48,124,124,49,47,116,60,48,59,105,102,40,116,61,105,115,78,97,78,40,116,41,63,99,58,95,40,77,97,116,104,46,97,98,115,40,116,41,44,103,41,44,109,38,38,40,116,61,67,111,40,116,41,41,44,83,38,38,48,61,61,61,43,116,38,38,34,43,34,33,61,61,102,38,38,40,83,61,33,49,41,44,104,61,40,83,63,34,40,34,61,61,61,102,63,102,58,115,58,34,45,34,61,61,61,102,124,124,34,40,34,61,61,61,102,63,34,34,58,102,41,43,104,44,79,61,40,34,115,34,61,61,61,98,63,77,111,91,56,43,120,111,47,51,93,58,34,34,41,43,79,43,40,83,38,38,34,40,34,61,61,61,102,63,34,41,34,58,34,34,41,44,120,41,123,110,61,45,49,44,114,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,110,60,114,41,105,102,40,97,61,116,46,99,104,97,114,67,111,100,101,65,116,40,110,41,44,52,56,62,97,124,124,97,62,53,55,41,123,79,61,40,52,54,61,61,61,97,63,105,43,116,46,115,108,105,99,101,40,110,43,49,41,58,116,46,115,108,105,99,101,40,110,41,41,43,79,44,116,61,116,46,115,108,105,99,101,40,48,44,110,41,59,98,114,101,97,107,125,125,125,118,38,38,33,100,38,38,40,116,61,101,40,116,44,49,47,48,41,41,59,118,97,114,32,107,61,104,46,108,101,110,103,116,104,43,116,46,108,101,110,103,116,104,43,79,46,108,101,110,103,116,104,44,67,61,107,60,112,63,110,101,119,32,65,114,114,97,121,40,112,45,107,43,49,41,46,106,111,105,110,40,117,41,58,34,34,59,115,119,105,116,99,104,40,118,38,38,100,38,38,40,116,61,101,40,67,43,116,44,67,46,108,101,110,103,116,104,63,112,45,79,46,108,101,110,103,116,104,58,49,47,48,41,44,67,61,34,34,41,44,108,41,123,99,97,115,101,34,60,34,58,116,61,104,43,116,43,79,43,67,59,98,114,101,97,107,59,99,97,115,101,34,61,34,58,116,61,104,43,67,43,116,43,79,59,98,114,101,97,107,59,99,97,115,101,34,94,34,58,116,61,67,46,115,108,105,99,101,40,48,44,107,61,67,46,108,101,110,103,116,104,62,62,49,41,43,104,43,116,43,79,43,67,46,115,108,105,99,101,40,107,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,61,67,43,104,43,116,43,79,59,98,114,101,97,107,125,114,101,116,117,114,110,32,111,40,116,41,125,114,101,116,117,114,110,32,103,61,118,111,105,100,32,48,61,61,61,103,63,54,58,47,91,103,112,114,115,93,47,46,116,101,115,116,40,98,41,63,77,97,116,104,46,109,97,120,40,49,44,77,97,116,104,46,109,105,110,40,50,49,44,103,41,41,58,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,48,44,103,41,41,44,79,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,43,34,34,125,44,79,125,102,117,110,99,116,105,111,110,32,108,40,116,44,101,41,123,118,97,114,32,110,61,117,40,40,116,61,83,111,40,116,41,44,116,46,116,121,112,101,61,34,102,34,44,116,41,41,44,114,61,51,42,77,97,116,104,46,109,97,120,40,45,56,44,77,97,116,104,46,109,105,110,40,56,44,77,97,116,104,46,102,108,111,111,114,40,121,111,40,101,41,47,51,41,41,41,44,105,61,77,97,116,104,46,112,111,119,40,49,48,44,45,114,41,44,111,61,77,111,91,56,43,114,47,51,93,59,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,105,42,116,41,43,111,125,125,114,101,116,117,114,110,123,102,111,114,109,97,116,58,117,44,102,111,114,109,97,116,80,114,101,102,105,120,58,108,125,125,102,117,110,99,116,105,111,110,32,70,111,40,116,41,123,114,101,116,117,114,110,32,68,111,61,36,111,40,116,41,44,65,111,61,68,111,46,102,111,114,109,97,116,44,76,111,61,68,111,46,102,111,114,109,97,116,80,114,101,102,105,120,44,68,111,125,102,117,110,99,116,105,111,110,32,82,111,40,116,41,123,118,97,114,32,101,61,48,44,110,61,116,46,99,104,105,108,100,114,101,110,44,114,61,110,38,38,110,46,108,101,110,103,116,104,59,105,102,40,114,41,119,104,105,108,101,40,45,45,114,62,61,48,41,101,43,61,110,91,114,93,46,118,97,108,117,101,59,101,108,115,101,32,101,61,49,59,116,46,118,97,108,117,101,61,101,125,102,117,110,99,116,105,111,110,32,78,111,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,65,102,116,101,114,40,82,111,41,125,102,117,110,99,116,105,111,110,32,66,111,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,44,111,61,116,104,105,115,44,97,61,91,111,93,59,100,111,123,101,61,97,46,114,101,118,101,114,115,101,40,41,44,97,61,91,93,59,119,104,105,108,101,40,111,61,101,46,112,111,112,40,41,41,105,102,40,116,40,111,41,44,110,61,111,46,99,104,105,108,100,114,101,110,44,110,41,102,111,114,40,114,61,48,44,105,61,110,46,108,101,110,103,116,104,59,114,60,105,59,43,43,114,41,97,46,112,117,115,104,40,110,91,114,93,41,125,119,104,105,108,101,40,97,46,108,101,110,103,116,104,41,59,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,122,111,40,116,41,123,118,97,114,32,101,44,110,44,114,61,116,104,105,115,44,105,61,91,114,93,59,119,104,105,108,101,40,114,61,105,46,112,111,112,40,41,41,105,102,40,116,40,114,41,44,101,61,114,46,99,104,105,108,100,114,101,110,44,101,41,102,111,114,40,110,61,101,46,108,101,110,103,116,104,45,49,59,110,62,61,48,59,45,45,110,41,105,46,112,117,115,104,40,101,91,110,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,86,111,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,61,116,104,105,115,44,111,61,91,105,93,44,97,61,91,93,59,119,104,105,108,101,40,105,61,111,46,112,111,112,40,41,41,105,102,40,97,46,112,117,115,104,40,105,41,44,101,61,105,46,99,104,105,108,100,114,101,110,44,101,41,102,111,114,40,110,61,48,44,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,43,43,110,41,111,46,112,117,115,104,40,101,91,110,93,41,59,119,104,105,108,101,40,105,61,97,46,112,111,112,40,41,41,116,40,105,41,59,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,72,111,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,65,102,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,43,116,40,101,46,100,97,116,97,41,124,124,48,44,114,61,101,46,99,104,105,108,100,114,101,110,44,105,61,114,38,38,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,45,45,105,62,61,48,41,110,43,61,114,91,105,93,46,118,97,108,117,101,59,101,46,118,97,108,117,101,61,110,125,41,41,125,102,117,110,99,116,105,111,110,32,85,111,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,66,101,102,111,114,101,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,105,108,100,114,101,110,38,38,101,46,99,104,105,108,100,114,101,110,46,115,111,114,116,40,116,41,125,41,41,125,102,117,110,99,116,105,111,110,32,87,111,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,71,111,40,101,44,116,41,44,114,61,91,101,93,59,119,104,105,108,101,40,101,33,61,61,110,41,101,61,101,46,112,97,114,101,110,116,44,114,46,112,117,115,104,40,101,41,59,118,97,114,32,105,61,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,116,33,61,61,110,41,114,46,115,112,108,105,99,101,40,105,44,48,44,116,41,44,116,61,116,46,112,97,114,101,110,116,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,71,111,40,116,44,101,41,123,105,102,40,116,61,61,61,101,41,114,101,116,117,114,110,32,116,59,118,97,114,32,110,61,116,46,97,110,99,101,115,116,111,114,115,40,41,44,114,61,101,46,97,110,99,101,115,116,111,114,115,40,41,44,105,61,110,117,108,108,59,116,61,110,46,112,111,112,40,41,44,101,61,114,46,112,111,112,40,41,59,119,104,105,108,101,40,116,61,61,61,101,41,105,61,116,44,116,61,110,46,112,111,112,40,41,44,101,61,114,46,112,111,112,40,41,59,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,113,111,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,91,116,93,59,119,104,105,108,101,40,116,61,116,46,112,97,114,101,110,116,41,101,46,112,117,115,104,40,116,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,89,111,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,101,41,125,41,41,44,116,125,102,117,110,99,116,105,111,110,32,75,111,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,66,101,102,111,114,101,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,105,108,100,114,101,110,124,124,116,46,112,117,115,104,40,101,41,125,41,41,44,116,125,102,117,110,99,116,105,111,110,32,88,111,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,91,93,59,114,101,116,117,114,110,32,116,46,101,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,110,33,61,61,116,38,38,101,46,112,117,115,104,40,123,115,111,117,114,99,101,58,110,46,112,97,114,101,110,116,44,116,97,114,103,101,116,58,110,125,41,125,41,41,44,101,125,102,117,110,99,116,105,111,110,32,90,111,40,116,44,101,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,61,110,101,119,32,110,97,40,116,41,44,99,61,43,116,46,118,97,108,117,101,38,38,40,115,46,118,97,108,117,101,61,116,46,118,97,108,117,101,41,44,117,61,91,115,93,59,110,117,108,108,61,61,101,38,38,40,101,61,81,111,41,59,119,104,105,108,101,40,110,61,117,46,112,111,112,40,41,41,105,102,40,99,38,38,40,110,46,118,97,108,117,101,61,43,110,46,100,97,116,97,46,118,97,108,117,101,41,44,40,105,61,101,40,110,46,100,97,116,97,41,41,38,38,40,97,61,105,46,108,101,110,103,116,104,41,41,102,111,114,40,110,46,99,104,105,108,100,114,101,110,61,110,101,119,32,65,114,114,97,121,40,97,41,44,111,61,97,45,49,59,111,62,61,48,59,45,45,111,41,117,46,112,117,115,104,40,114,61,110,46,99,104,105,108,100,114,101,110,91,111,93,61,110,101,119,32,110,97,40,105,91,111,93,41,41,44,114,46,112,97,114,101,110,116,61,110,44,114,46,100,101,112,116,104,61,110,46,100,101,112,116,104,43,49,59,114,101,116,117,114,110,32,115,46,101,97,99,104,66,101,102,111,114,101,40,101,97,41,125,102,117,110,99,116,105,111,110,32,74,111,40,41,123,114,101,116,117,114,110,32,90,111,40,116,104,105,115,41,46,101,97,99,104,66,101,102,111,114,101,40,116,97,41,125,102,117,110,99,116,105,111,110,32,81,111,40,116,41,123,114,101,116,117,114,110,32,116,46,99,104,105,108,100,114,101,110,125,102,117,110,99,116,105,111,110,32,116,97,40,116,41,123,116,46,100,97,116,97,61,116,46,100,97,116,97,46,100,97,116,97,125,102,117,110,99,116,105,111,110,32,101,97,40,116,41,123,118,97,114,32,101,61,48,59,100,111,123,116,46,104,101,105,103,104,116,61,101,125,119,104,105,108,101,40,40,116,61,116,46,112,97,114,101,110,116,41,38,38,116,46,104,101,105,103,104,116,60,43,43,101,41,125,102,117,110,99,116,105,111,110,32,110,97,40,116,41,123,116,104,105,115,46,100,97,116,97,61,116,44,116,104,105,115,46,100,101,112,116,104,61,116,104,105,115,46,104,101,105,103,104,116,61,48,44,116,104,105,115,46,112,97,114,101,110,116,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,114,97,40,116,41,123,116,46,120,48,61,77,97,116,104,46,114,111,117,110,100,40,116,46,120,48,41,44,116,46,121,48,61,77,97,116,104,46,114,111,117,110,100,40,116,46,121,48,41,44,116,46,120,49,61,77,97,116,104,46,114,111,117,110,100,40,116,46,120,49,41,44,116,46,121,49,61,77,97,116,104,46,114,111,117,110,100,40,116,46,121,49,41,125,102,117,110,99,116,105,111,110,32,105,97,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,61,116,46,99,104,105,108,100,114,101,110,44,115,61,45,49,44,99,61,97,46,108,101,110,103,116,104,44,117,61,116,46,118,97,108,117,101,38,38,40,114,45,101,41,47,116,46,118,97,108,117,101,59,119,104,105,108,101,40,43,43,115,60,99,41,111,61,97,91,115,93,44,111,46,121,48,61,110,44,111,46,121,49,61,105,44,111,46,120,48,61,101,44,111,46,120,49,61,101,43,61,111,46,118,97,108,117,101,42,117,125,102,117,110,99,116,105,111,110,32,111,97,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,61,116,46,99,104,105,108,100,114,101,110,44,115,61,45,49,44,99,61,97,46,108,101,110,103,116,104,44,117,61,116,46,118,97,108,117,101,38,38,40,105,45,110,41,47,116,46,118,97,108,117,101,59,119,104,105,108,101,40,43,43,115,60,99,41,111,61,97,91,115,93,44,111,46,120,48,61,101,44,111,46,120,49,61,114,44,111,46,121,48,61,110,44,111,46,121,49,61,110,43,61,111,46,118,97,108,117,101,42,117,125,70,111,40,123,100,101,99,105,109,97,108,58,34,46,34,44,116,104,111,117,115,97,110,100,115,58,34,44,34,44,103,114,111,117,112,105,110,103,58,91,51,93,44,99,117,114,114,101,110,99,121,58,91,34,36,34,44,34,34,93,44,109,105,110,117,115,58,34,45,34,125,41,44,110,97,46,112,114,111,116,111,116,121,112,101,61,90,111,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,97,44,99,111,117,110,116,58,78,111,44,101,97,99,104,58,66,111,44,101,97,99,104,65,102,116,101,114,58,86,111,44,101,97,99,104,66,101,102,111,114,101,58,122,111,44,115,117,109,58,72,111,44,115,111,114,116,58,85,111,44,112,97,116,104,58,87,111,44,97,110,99,101,115,116,111,114,115,58,113,111,44,100,101,115,99,101,110,100,97,110,116,115,58,89,111,44,108,101,97,118,101,115,58,75,111,44,108,105,110,107,115,58,88,111,44,99,111,112,121,58,74,111,125,59,118,97,114,32,97,97,61,40,49,43,77,97,116,104,46,115,113,114,116,40,53,41,41,47,50,59,102,117,110,99,116,105,111,110,32,115,97,40,116,44,101,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,44,115,44,99,44,117,44,108,44,102,44,104,44,100,44,112,44,118,44,103,44,109,61,91,93,44,98,61,101,46,99,104,105,108,100,114,101,110,44,121,61,48,44,119,61,48,44,95,61,98,46,108,101,110,103,116,104,44,120,61,101,46,118,97,108,117,101,59,119,104,105,108,101,40,121,60,95,41,123,99,61,105,45,110,44,117,61,111,45,114,59,100,111,123,108,61,98,91,119,43,43,93,46,118,97,108,117,101,125,119,104,105,108,101,40,33,108,38,38,119,60,95,41,59,102,111,114,40,102,61,104,61,108,44,118,61,77,97,116,104,46,109,97,120,40,117,47,99,44,99,47,117,41,47,40,120,42,116,41,44,103,61,108,42,108,42,118,44,112,61,77,97,116,104,46,109,97,120,40,104,47,103,44,103,47,102,41,59,119,60,95,59,43,43,119,41,123,105,102,40,108,43,61,115,61,98,91,119,93,46,118,97,108,117,101,44,115,60,102,38,38,40,102,61,115,41,44,115,62,104,38,38,40,104,61,115,41,44,103,61,108,42,108,42,118,44,100,61,77,97,116,104,46,109,97,120,40,104,47,103,44,103,47,102,41,44,100,62,112,41,123,108,45,61,115,59,98,114,101,97,107,125,112,61,100,125,109,46,112,117,115,104,40,97,61,123,118,97,108,117,101,58,108,44,100,105,99,101,58,99,60,117,44,99,104,105,108,100,114,101,110,58,98,46,115,108,105,99,101,40,121,44,119,41,125,41,44,97,46,100,105,99,101,63,105,97,40,97,44,110,44,114,44,105,44,120,63,114,43,61,117,42,108,47,120,58,111,41,58,111,97,40,97,44,110,44,114,44,120,63,110,43,61,99,42,108,47,120,58,105,44,111,41,44,120,45,61,108,44,121,61,119,125,114,101,116,117,114,110,32,109,125,118,97,114,32,99,97,61,102,117,110,99,116,105,111,110,32,116,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,116,44,110,44,114,44,105,44,111,41,123,115,97,40,101,44,116,44,110,44,114,44,105,44,111,41,125,114,101,116,117,114,110,32,110,46,114,97,116,105,111,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,40,101,61,43,101,41,62,49,63,101,58,49,41,125,44,110,125,40,97,97,41,59,102,117,110,99,116,105,111,110,32,117,97,40,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,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,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,108,97,40,41,123,114,101,116,117,114,110,32,48,125,102,117,110,99,116,105,111,110,32,102,97,40,116,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,125,125,102,117,110,99,116,105,111,110,32,104,97,40,41,123,118,97,114,32,116,61,99,97,44,101,61,33,49,44,110,61,49,44,114,61,49,44,105,61,91,48,93,44,111,61,108,97,44,97,61,108,97,44,115,61,108,97,44,99,61,108,97,44,117,61,108,97,59,102,117,110,99,116,105,111,110,32,108,40,116,41,123,114,101,116,117,114,110,32,116,46,120,48,61,116,46,121,48,61,48,44,116,46,120,49,61,110,44,116,46,121,49,61,114,44,116,46,101,97,99,104,66,101,102,111,114,101,40,102,41,44,105,61,91,48,93,44,101,38,38,116,46,101,97,99,104,66,101,102,111,114,101,40,114,97,41,44,116,125,102,117,110,99,116,105,111,110,32,102,40,101,41,123,118,97,114,32,110,61,105,91,101,46,100,101,112,116,104,93,44,114,61,101,46,120,48,43,110,44,108,61,101,46,121,48,43,110,44,102,61,101,46,120,49,45,110,44,104,61,101,46,121,49,45,110,59,102,60,114,38,38,40,114,61,102,61,40,114,43,102,41,47,50,41,44,104,60,108,38,38,40,108,61,104,61,40,108,43,104,41,47,50,41,44,101,46,120,48,61,114,44,101,46,121,48,61,108,44,101,46,120,49,61,102,44,101,46,121,49,61,104,44,101,46,99,104,105,108,100,114,101,110,38,38,40,110,61,105,91,101,46,100,101,112,116,104,43,49,93,61,111,40,101,41,47,50,44,114,43,61,117,40,101,41,45,110,44,108,43,61,97,40,101,41,45,110,44,102,45,61,115,40,101,41,45,110,44,104,45,61,99,40,101,41,45,110,44,102,60,114,38,38,40,114,61,102,61,40,114,43,102,41,47,50,41,44,104,60,108,38,38,40,108,61,104,61,40,108,43,104,41,47,50,41,44,116,40,101,44,114,44,108,44,102,44,104,41,41,125,114,101,116,117,114,110,32,108,46,114,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,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,101,61,33,33,116,44,108,41,58,101,125,44,108,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,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,110,61,43,116,91,48,93,44,114,61,43,116,91,49,93,44,108,41,58,91,110,44,114,93,125,44,108,46,116,105,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,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,116,61,117,97,40,101,41,44,108,41,58,116,125,44,108,46,112,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,108,46,112,97,100,100,105,110,103,73,110,110,101,114,40,116,41,46,112,97,100,100,105,110,103,79,117,116,101,114,40,116,41,58,108,46,112,97,100,100,105,110,103,73,110,110,101,114,40,41,125,44,108,46,112,97,100,100,105,110,103,73,110,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,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,111,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,116,58,102,97,40,43,116,41,44,108,41,58,111,125,44,108,46,112,97,100,100,105,110,103,79,117,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,108,46,112,97,100,100,105,110,103,84,111,112,40,116,41,46,112,97,100,100,105,110,103,82,105,103,104,116,40,116,41,46,112,97,100,100,105,110,103,66,111,116,116,111,109,40,116,41,46,112,97,100,100,105,110,103,76,101,102,116,40,116,41,58,108,46,112,97,100,100,105,110,103,84,111,112,40,41,125,44,108,46,112,97,100,100,105,110,103,84,111,112,61,102,117,110,99,116,105,111,110,40,116,41,123,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,97,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,116,58,102,97,40,43,116,41,44,108,41,58,97,125,44,108,46,112,97,100,100,105,110,103,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,41,123,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,115,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,116,58,102,97,40,43,116,41,44,108,41,58,115,125,44,108,46,112,97,100,100,105,110,103,66,111,116,116,111,109,61,102,117,110,99,116,105,111,110,40,116,41,123,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,99,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,116,58,102,97,40,43,116,41,44,108,41,58,99,125,44,108,46,112,97,100,100,105,110,103,76,101,102,116,61,102,117,110,99,116,105,111,110,40,116,41,123,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,117,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,116,58,102,97,40,43,116,41,44,108,41,58,117,125,44,108,125,102,117,110,99,116,105,111,110,32,100,97,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,61,116,46,99,104,105,108,100,114,101,110,44,99,61,115,46,108,101,110,103,116,104,44,117,61,110,101,119,32,65,114,114,97,121,40,99,43,49,41,59,102,111,114,40,117,91,48,93,61,97,61,111,61,48,59,111,60,99,59,43,43,111,41,117,91,111,43,49,93,61,97,43,61,115,91,111,93,46,118,97,108,117,101,59,102,117,110,99,116,105,111,110,32,108,40,116,44,101,44,110,44,114,44,105,44,111,44,97,41,123,105,102,40,116,62,61,101,45,49,41,123,118,97,114,32,99,61,115,91,116,93,59,114,101,116,117,114,110,32,99,46,120,48,61,114,44,99,46,121,48,61,105,44,99,46,120,49,61,111,44,118,111,105,100,40,99,46,121,49,61,97,41,125,118,97,114,32,102,61,117,91,116,93,44,104,61,110,47,50,43,102,44,100,61,116,43,49,44,112,61,101,45,49,59,119,104,105,108,101,40,100,60,112,41,123,118,97,114,32,118,61,100,43,112,62,62,62,49,59,117,91,118,93,60,104,63,100,61,118,43,49,58,112,61,118,125,104,45,117,91,100,45,49,93,60,117,91,100,93,45,104,38,38,116,43,49,60,100,38,38,45,45,100,59,118,97,114,32,103,61,117,91,100,93,45,102,44,109,61,110,45,103,59,105,102,40,111,45,114,62,97,45,105,41,123,118,97,114,32,98,61,40,114,42,109,43,111,42,103,41,47,110,59,108,40,116,44,100,44,103,44,114,44,105,44,98,44,97,41,44,108,40,100,44,101,44,109,44,98,44,105,44,111,44,97,41,125,101,108,115,101,123,118,97,114,32,121,61,40,105,42,109,43,97,42,103,41,47,110,59,108,40,116,44,100,44,103,44,114,44,105,44,111,44,121,41,44,108,40,100,44,101,44,109,44,114,44,121,44,111,44,97,41,125,125,108,40,48,44,99,44,116,46,118,97,108,117,101,44,101,44,110,44,114,44,105,41,125,102,117,110,99,116,105,111,110,32,112,97,40,116,44,101,44,110,44,114,44,105,41,123,40,49,38,116,46,100,101,112,116,104,63,111,97,58,105,97,41,40,116,44,101,44,110,44,114,44,105,41,125,102,117,110,99,116,105,111,110,32,118,97,40,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,97,110,100,111,109,40,41,125,40,102,117,110,99,116,105,111,110,32,116,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,48,58,43,116,44,110,61,110,117,108,108,61,61,110,63,49,58,43,110,44,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,116,61,48,41,58,110,45,61,116,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,42,110,43,116,125,125,114,101,116,117,114,110,32,110,46,115,111,117,114,99,101,61,116,44,110,125,41,40,118,97,41,59,118,97,114,32,103,97,61,102,117,110,99,116,105,111,110,32,116,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,116,44,110,41,123,118,97,114,32,114,44,105,59,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,48,58,43,116,44,110,61,110,117,108,108,61,61,110,63,49,58,43,110,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,59,105,102,40,110,117,108,108,33,61,114,41,111,61,114,44,114,61,110,117,108,108,59,101,108,115,101,32,100,111,123,114,61,50,42,101,40,41,45,49,44,111,61,50,42,101,40,41,45,49,44,105,61,114,42,114,43,111,42,111,125,119,104,105,108,101,40,33,105,124,124,105,62,49,41,59,114,101,116,117,114,110,32,116,43,110,42,111,42,77,97,116,104,46,115,113,114,116,40,45,50,42,77,97,116,104,46,108,111,103,40,105,41,47,105,41,125,125,114,101,116,117,114,110,32,110,46,115,111,117,114,99,101,61,116,44,110,125,40,118,97,41,44,109,97,61,40,102,117,110,99,116,105,111,110,32,116,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,41,123,118,97,114,32,116,61,103,97,46,115,111,117,114,99,101,40,101,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,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,77,97,116,104,46,101,120,112,40,116,40,41,41,125,125,114,101,116,117,114,110,32,110,46,115,111,117,114,99,101,61,116,44,110,125,40,118,97,41,44,102,117,110,99,116,105,111,110,32,116,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,110,61,48,44,114,61,48,59,114,60,116,59,43,43,114,41,110,43,61,101,40,41,59,114,101,116,117,114,110,32,110,125,125,114,101,116,117,114,110,32,110,46,115,111,117,114,99,101,61,116,44,110,125,40,118,97,41,41,59,40,102,117,110,99,116,105,111,110,32,116,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,116,41,123,118,97,114,32,110,61,109,97,46,115,111,117,114,99,101,40,101,41,40,116,41,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,110,40,41,47,116,125,125,114,101,116,117,114,110,32,110,46,115,111,117,114,99,101,61,116,44,110,125,41,40,118,97,41,44,102,117,110,99,116,105,111,110,32,116,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,116,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,45,77,97,116,104,46,108,111,103,40,49,45,101,40,41,41,47,116,125,125,114,101,116,117,114,110,32,110,46,115,111,117,114,99,101,61,116,44,110,125,40,118,97,41,59,102,117,110,99,116,105,111,110,32,98,97,40,116,44,101,41,123,115,119,105,116,99,104,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,114,97,110,103,101,40,116,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,104,105,115,46,114,97,110,103,101,40,101,41,46,100,111,109,97,105,110,40,116,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,121,97,40,116,44,101,41,123,115,119,105,116,99,104,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,105,110,116,101,114,112,111,108,97,116,111,114,40,116,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,104,105,115,46,105,110,116,101,114,112,111,108,97,116,111,114,40,101,41,46,100,111,109,97,105,110,40,116,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,116,104,105,115,125,118,97,114,32,119,97,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,44,95,97,61,119,97,46,109,97,112,44,120,97,61,119,97,46,115,108,105,99,101,44,79,97,61,123,110,97,109,101,58,34,105,109,112,108,105,99,105,116,34,125,59,102,117,110,99,116,105,111,110,32,83,97,40,41,123,118,97,114,32,116,61,66,105,40,41,44,101,61,91,93,44,110,61,91,93,44,114,61,79,97,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,61,105,43,34,34,44,97,61,116,46,103,101,116,40,111,41,59,105,102,40,33,97,41,123,105,102,40,114,33,61,61,79,97,41,114,101,116,117,114,110,32,114,59,116,46,115,101,116,40,111,44,97,61,101,46,112,117,115,104,40,105,41,41,125,114,101,116,117,114,110,32,110,91,40,97,45,49,41,37,110,46,108,101,110,103,116,104,93,125,114,101,116,117,114,110,32,105,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,110,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,32,101,46,115,108,105,99,101,40,41,59,101,61,91,93,44,116,61,66,105,40,41,59,118,97,114,32,114,44,111,44,97,61,45,49,44,115,61,110,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,97,60,115,41,116,46,104,97,115,40,111,61,40,114,61,110,91,97,93,41,43,34,34,41,124,124,116,46,115,101,116,40,111,44,101,46,112,117,115,104,40,114,41,41,59,114,101,116,117,114,110,32,105,125,44,105,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,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,110,61,120,97,46,99,97,108,108,40,116,41,44,105,41,58,110,46,115,108,105,99,101,40,41,125,44,105,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,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,114,61,116,44,105,41,58,114,125,44,105,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,83,97,40,101,44,110,41,46,117,110,107,110,111,119,110,40,114,41,125,44,98,97,46,97,112,112,108,121,40,105,44,97,114,103,117,109,101,110,116,115,41,44,105,125,102,117,110,99,116,105,111,110,32,107,97,40,41,123,118,97,114,32,116,44,101,44,110,61,83,97,40,41,46,117,110,107,110,111,119,110,40,118,111,105,100,32,48,41,44,114,61,110,46,100,111,109,97,105,110,44,105,61,110,46,114,97,110,103,101,44,111,61,91,48,44,49,93,44,97,61,33,49,44,115,61,48,44,99,61,48,44,117,61,46,53,59,102,117,110,99,116,105,111,110,32,108,40,41,123,118,97,114,32,110,61,114,40,41,46,108,101,110,103,116,104,44,108,61,111,91,49,93,60,111,91,48,93,44,102,61,111,91,108,45,48,93,44,104,61,111,91,49,45,108,93,59,116,61,40,104,45,102,41,47,77,97,116,104,46,109,97,120,40,49,44,110,45,115,43,50,42,99,41,44,97,38,38,40,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,44,102,43,61,40,104,45,102,45,116,42,40,110,45,115,41,41,42,117,44,101,61,116,42,40,49,45,115,41,44,97,38,38,40,102,61,77,97,116,104,46,114,111,117,110,100,40,102,41,44,101,61,77,97,116,104,46,114,111,117,110,100,40,101,41,41,59,118,97,114,32,100,61,119,40,110,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,43,116,42,101,125,41,41,59,114,101,116,117,114,110,32,105,40,108,63,100,46,114,101,118,101,114,115,101,40,41,58,100,41,125,114,101,116,117,114,110,32,100,101,108,101,116,101,32,110,46,117,110,107,110,111,119,110,44,110,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,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,114,40,116,41,44,108,40,41,41,58,114,40,41,125,44,110,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,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,111,61,91,43,116,91,48,93,44,43,116,91,49,93,93,44,108,40,41,41,58,111,46,115,108,105,99,101,40,41,125,44,110,46,114,97,110,103,101,82,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,61,91,43,116,91,48,93,44,43,116,91,49,93,93,44,97,61,33,48,44,108,40,41,125,44,110,46,98,97,110,100,119,105,100,116,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,125,44,110,46,115,116,101,112,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,110,46,114,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,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,97,61,33,33,116,44,108,40,41,41,58,97,125,44,110,46,112,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,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,115,61,77,97,116,104,46,109,105,110,40,49,44,99,61,43,116,41,44,108,40,41,41,58,115,125,44,110,46,112,97,100,100,105,110,103,73,110,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,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,115,61,77,97,116,104,46,109,105,110,40,49,44,116,41,44,108,40,41,41,58,115,125,44,110,46,112,97,100,100,105,110,103,79,117,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,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,99,61,43,116,44,108,40,41,41,58,99,125,44,110,46,97,108,105,103,110,61,102,117,110,99,116,105,111,110,40,116,41,123,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,117,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,44,108,40,41,41,58,117,125,44,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,97,40,114,40,41,44,111,41,46,114,111,117,110,100,40,97,41,46,112,97,100,100,105,110,103,73,110,110,101,114,40,115,41,46,112,97,100,100,105,110,103,79,117,116,101,114,40,99,41,46,97,108,105,103,110,40,117,41,125,44,98,97,46,97,112,112,108,121,40,108,40,41,44,97,114,103,117,109,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,67,97,40,116,44,101,41,123,118,97,114,32,110,44,114,61,101,63,101,46,108,101,110,103,116,104,58,48,44,105,61,116,63,77,97,116,104,46,109,105,110,40,114,44,116,46,108,101,110,103,116,104,41,58,48,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,59,102,111,114,40,110,61,48,59,110,60,105,59,43,43,110,41,111,91,110,93,61,68,97,40,116,91,110,93,44,101,91,110,93,41,59,102,111,114,40,59,110,60,114,59,43,43,110,41,97,91,110,93,61,101,91,110,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,110,61,48,59,110,60,105,59,43,43,110,41,97,91,110,93,61,111,91,110,93,40,116,41,59,114,101,116,117,114,110,32,97,125,125,102,117,110,99,116,105,111,110,32,80,97,40,116,44,101,41,123,118,97,114,32,110,61,110,101,119,32,68,97,116,101,59,114,101,116,117,114,110,32,116,61,43,116,44,101,61,43,101,44,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,110,46,115,101,116,84,105,109,101,40,116,42,40,49,45,114,41,43,101,42,114,41,44,110,125,125,102,117,110,99,116,105,111,110,32,84,97,40,116,44,101,41,123,118,97,114,32,110,44,114,61,123,125,44,105,61,123,125,59,102,111,114,40,110,32,105,110,32,110,117,108,108,33,61,61,116,38,38,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,124,124,40,116,61,123,125,41,44,110,117,108,108,33,61,61,101,38,38,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,101,124,124,40,101,61,123,125,41,44,101,41,110,32,105,110,32,116,63,114,91,110,93,61,68,97,40,116,91,110,93,44,101,91,110,93,41,58,105,91,110,93,61,101,91,110,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,110,32,105,110,32,114,41,105,91,110,93,61,114,91,110,93,40,116,41,59,114,101,116,117,114,110,32,105,125,125,102,117,110,99,116,105,111,110,32,106,97,40,116,44,101,41,123,101,124,124,40,101,61,91,93,41,59,118,97,114,32,110,44,114,61,116,63,77,97,116,104,46,109,105,110,40,101,46,108,101,110,103,116,104,44,116,46,108,101,110,103,116,104,41,58,48,44,105,61,101,46,115,108,105,99,101,40,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,41,123,102,111,114,40,110,61,48,59,110,60,114,59,43,43,110,41,105,91,110,93,61,116,91,110,93,42,40,49,45,111,41,43,101,91,110,93,42,111,59,114,101,116,117,114,110,32,105,125,125,102,117,110,99,116,105,111,110,32,69,97,40,116,41,123,114,101,116,117,114,110,32,65,114,114,97,121,66,117,102,102,101,114,46,105,115,86,105,101,119,40,116,41,38,38,33,40,116,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,97,86,105,101,119,41,125,102,117,110,99,116,105,111,110,32,68,97,40,116,44,101,41,123,118,97,114,32,110,44,114,61,116,121,112,101,111,102,32,101,59,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,61,114,63,109,114,40,101,41,58,40,34,110,117,109,98,101,114,34,61,61,61,114,63,98,110,58,34,115,116,114,105,110,103,34,61,61,61,114,63,40,110,61,116,114,40,101,41,41,63,40,101,61,110,44,120,114,41,58,106,114,58,101,32,105,110,115,116,97,110,99,101,111,102,32,116,114,63,120,114,58,101,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,63,80,97,58,69,97,40,101,41,63,106,97,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,63,67,97,58,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,101,46,118,97,108,117,101,79,102,38,38,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,101,46,116,111,83,116,114,105,110,103,124,124,105,115,78,97,78,40,101,41,63,84,97,58,98,110,41,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,65,97,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,43,116,44,101,61,43,101,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,42,40,49,45,110,41,43,101,42,110,41,125,125,102,117,110,99,116,105,111,110,32,76,97,40,116,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,125,125,102,117,110,99,116,105,111,110,32,73,97,40,116,41,123,114,101,116,117,114,110,43,116,125,118,97,114,32,77,97,61,91,48,44,49,93,59,102,117,110,99,116,105,111,110,32,36,97,40,116,41,123,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,70,97,40,116,44,101,41,123,114,101,116,117,114,110,40,101,45,61,116,61,43,116,41,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,101,125,58,76,97,40,105,115,78,97,78,40,101,41,63,78,97,78,58,46,53,41,125,102,117,110,99,116,105,111,110,32,82,97,40,116,41,123,118,97,114,32,101,44,110,61,116,91,48,93,44,114,61,116,91,116,46,108,101,110,103,116,104,45,49,93,59,114,101,116,117,114,110,32,110,62,114,38,38,40,101,61,110,44,110,61,114,44,114,61,101,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,110,44,77,97,116,104,46,109,105,110,40,114,44,116,41,41,125,125,102,117,110,99,116,105,111,110,32,78,97,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,91,48,93,44,105,61,116,91,49,93,44,111,61,101,91,48,93,44,97,61,101,91,49,93,59,114,101,116,117,114,110,32,105,60,114,63,40,114,61,70,97,40,105,44,114,41,44,111,61,110,40,97,44,111,41,41,58,40,114,61,70,97,40,114,44,105,41,44,111,61,110,40,111,44,97,41,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,40,114,40,116,41,41,125,125,102,117,110,99,116,105,111,110,32,66,97,40,116,44,101,44,110,41,123,118,97,114,32,114,61,77,97,116,104,46,109,105,110,40,116,46,108,101,110,103,116,104,44,101,46,108,101,110,103,116,104,41,45,49,44,105,61,110,101,119,32,65,114,114,97,121,40,114,41,44,111,61,110,101,119,32,65,114,114,97,121,40,114,41,44,97,61,45,49,59,116,91,114,93,60,116,91,48,93,38,38,40,116,61,116,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,44,101,61,101,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,41,59,119,104,105,108,101,40,43,43,97,60,114,41,105,91,97,93,61,70,97,40,116,91,97,93,44,116,91,97,43,49,93,41,44,111,91,97,93,61,110,40,101,91,97,93,44,101,91,97,43,49,93,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,110,61,99,40,116,44,101,44,49,44,114,41,45,49,59,114,101,116,117,114,110,32,111,91,110,93,40,105,91,110,93,40,101,41,41,125,125,102,117,110,99,116,105,111,110,32,122,97,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,100,111,109,97,105,110,40,116,46,100,111,109,97,105,110,40,41,41,46,114,97,110,103,101,40,116,46,114,97,110,103,101,40,41,41,46,105,110,116,101,114,112,111,108,97,116,101,40,116,46,105,110,116,101,114,112,111,108,97,116,101,40,41,41,46,99,108,97,109,112,40,116,46,99,108,97,109,112,40,41,41,46,117,110,107,110,111,119,110,40,116,46,117,110,107,110,111,119,110,40,41,41,125,102,117,110,99,116,105,111,110,32,86,97,40,41,123,118,97,114,32,116,44,101,44,110,44,114,44,105,44,111,44,97,61,77,97,44,115,61,77,97,44,99,61,68,97,44,117,61,36,97,59,102,117,110,99,116,105,111,110,32,108,40,41,123,114,101,116,117,114,110,32,114,61,77,97,116,104,46,109,105,110,40,97,46,108,101,110,103,116,104,44,115,46,108,101,110,103,116,104,41,62,50,63,66,97,58,78,97,44,105,61,111,61,110,117,108,108,44,102,125,102,117,110,99,116,105,111,110,32,102,40,101,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,101,61,43,101,41,63,110,58,40,105,124,124,40,105,61,114,40,97,46,109,97,112,40,116,41,44,115,44,99,41,41,41,40,116,40,117,40,101,41,41,41,125,114,101,116,117,114,110,32,102,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,117,40,101,40,40,111,124,124,40,111,61,114,40,115,44,97,46,109,97,112,40,116,41,44,98,110,41,41,41,40,110,41,41,41,125,44,102,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,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,97,61,95,97,46,99,97,108,108,40,116,44,73,97,41,44,117,61,61,61,36,97,124,124,40,117,61,82,97,40,97,41,41,44,108,40,41,41,58,97,46,115,108,105,99,101,40,41,125,44,102,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,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,115,61,120,97,46,99,97,108,108,40,116,41,44,108,40,41,41,58,115,46,115,108,105,99,101,40,41,125,44,102,46,114,97,110,103,101,82,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,115,61,120,97,46,99,97,108,108,40,116,41,44,99,61,65,97,44,108,40,41,125,44,102,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,116,41,123,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,117,61,116,63,82,97,40,97,41,58,36,97,44,102,41,58,117,33,61,61,36,97,125,44,102,46,105,110,116,101,114,112,111,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,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,99,61,116,44,108,40,41,41,58,99,125,44,102,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,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,110,61,116,44,102,41,58,110,125,44,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,116,61,110,44,101,61,114,44,108,40,41,125,125,102,117,110,99,116,105,111,110,32,72,97,40,116,44,101,41,123,114,101,116,117,114,110,32,86,97,40,41,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,85,97,40,116,44,101,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,48,44,51,42,77,97,116,104,46,109,97,120,40,45,56,44,77,97,116,104,46,109,105,110,40,56,44,77,97,116,104,46,102,108,111,111,114,40,121,111,40,101,41,47,51,41,41,41,45,121,111,40,77,97,116,104,46,97,98,115,40,116,41,41,41,125,102,117,110,99,116,105,111,110,32,87,97,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,97,98,115,40,116,41,44,101,61,77,97,116,104,46,97,98,115,40,101,41,45,116,44,77,97,116,104,46,109,97,120,40,48,44,121,111,40,101,41,45,121,111,40,116,41,41,43,49,125,102,117,110,99,116,105,111,110,32,71,97,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,48,44,45,121,111,40,77,97,116,104,46,97,98,115,40,116,41,41,41,125,102,117,110,99,116,105,111,110,32,113,97,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,44,111,61,103,40,116,44,101,44,110,41,59,115,119,105,116,99,104,40,114,61,83,111,40,110,117,108,108,61,61,114,63,34,44,102,34,58,114,41,44,114,46,116,121,112,101,41,123,99,97,115,101,34,115,34,58,118,97,114,32,97,61,77,97,116,104,46,109,97,120,40,77,97,116,104,46,97,98,115,40,116,41,44,77,97,116,104,46,97,98,115,40,101,41,41,59,114,101,116,117,114,110,32,110,117,108,108,33,61,114,46,112,114,101,99,105,115,105,111,110,124,124,105,115,78,97,78,40,105,61,85,97,40,111,44,97,41,41,124,124,40,114,46,112,114,101,99,105,115,105,111,110,61,105,41,44,76,111,40,114,44,97,41,59,99,97,115,101,34,34,58,99,97,115,101,34,101,34,58,99,97,115,101,34,103,34,58,99,97,115,101,34,112,34,58,99,97,115,101,34,114,34,58,110,117,108,108,33,61,114,46,112,114,101,99,105,115,105,111,110,124,124,105,115,78,97,78,40,105,61,87,97,40,111,44,77,97,116,104,46,109,97,120,40,77,97,116,104,46,97,98,115,40,116,41,44,77,97,116,104,46,97,98,115,40,101,41,41,41,41,124,124,40,114,46,112,114,101,99,105,115,105,111,110,61,105,45,40,34,101,34,61,61,61,114,46,116,121,112,101,41,41,59,98,114,101,97,107,59,99,97,115,101,34,102,34,58,99,97,115,101,34,37,34,58,110,117,108,108,33,61,114,46,112,114,101,99,105,115,105,111,110,124,124,105,115,78,97,78,40,105,61,71,97,40,111,41,41,124,124,40,114,46,112,114,101,99,105,115,105,111,110,61,105,45,50,42,40,34,37,34,61,61,61,114,46,116,121,112,101,41,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,65,111,40,114,41,125,102,117,110,99,116,105,111,110,32,89,97,40,116,41,123,118,97,114,32,101,61,116,46,100,111,109,97,105,110,59,114,101,116,117,114,110,32,116,46,116,105,99,107,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,101,40,41,59,114,101,116,117,114,110,32,112,40,110,91,48,93,44,110,91,110,46,108,101,110,103,116,104,45,49,93,44,110,117,108,108,61,61,116,63,49,48,58,116,41,125,44,116,46,116,105,99,107,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,114,61,101,40,41,59,114,101,116,117,114,110,32,113,97,40,114,91,48,93,44,114,91,114,46,108,101,110,103,116,104,45,49,93,44,110,117,108,108,61,61,116,63,49,48,58,116,44,110,41,125,44,116,46,110,105,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,110,117,108,108,61,61,110,38,38,40,110,61,49,48,41,59,118,97,114,32,114,44,105,61,101,40,41,44,111,61,48,44,97,61,105,46,108,101,110,103,116,104,45,49,44,115,61,105,91,111,93,44,99,61,105,91,97,93,59,114,101,116,117,114,110,32,99,60,115,38,38,40,114,61,115,44,115,61,99,44,99,61,114,44,114,61,111,44,111,61,97,44,97,61,114,41,44,114,61,118,40,115,44,99,44,110,41,44,114,62,48,63,40,115,61,77,97,116,104,46,102,108,111,111,114,40,115,47,114,41,42,114,44,99,61,77,97,116,104,46,99,101,105,108,40,99,47,114,41,42,114,44,114,61,118,40,115,44,99,44,110,41,41,58,114,60,48,38,38,40,115,61,77,97,116,104,46,99,101,105,108,40,115,42,114,41,47,114,44,99,61,77,97,116,104,46,102,108,111,111,114,40,99,42,114,41,47,114,44,114,61,118,40,115,44,99,44,110,41,41,44,114,62,48,63,40,105,91,111,93,61,77,97,116,104,46,102,108,111,111,114,40,115,47,114,41,42,114,44,105,91,97,93,61,77,97,116,104,46,99,101,105,108,40,99,47,114,41,42,114,44,101,40,105,41,41,58,114,60,48,38,38,40,105,91,111,93,61,77,97,116,104,46,99,101,105,108,40,115,42,114,41,47,114,44,105,91,97,93,61,77,97,116,104,46,102,108,111,111,114,40,99,42,114,41,47,114,44,101,40,105,41,41,44,116,125,44,116,125,102,117,110,99,116,105,111,110,32,75,97,40,41,123,118,97,114,32,116,61,72,97,40,36,97,44,36,97,41,59,114,101,116,117,114,110,32,116,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,122,97,40,116,44,75,97,40,41,41,125,44,98,97,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,44,89,97,40,116,41,125,102,117,110,99,116,105,111,110,32,88,97,40,41,123,118,97,114,32,116,44,101,44,110,44,114,44,105,44,111,61,48,44,97,61,49,44,115,61,36,97,44,99,61,33,49,59,102,117,110,99,116,105,111,110,32,117,40,101,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,101,61,43,101,41,63,105,58,115,40,48,61,61,61,110,63,46,53,58,40,101,61,40,114,40,101,41,45,116,41,42,110,44,99,63,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,101,41,41,58,101,41,41,125,114,101,116,117,114,110,32,117,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,105,41,123,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,116,61,114,40,111,61,43,105,91,48,93,41,44,101,61,114,40,97,61,43,105,91,49,93,41,44,110,61,116,61,61,61,101,63,48,58,49,47,40,101,45,116,41,44,117,41,58,91,111,44,97,93,125,44,117,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,116,41,123,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,99,61,33,33,116,44,117,41,58,99,125,44,117,46,105,110,116,101,114,112,111,108,97,116,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,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,115,61,116,44,117,41,58,115,125,44,117,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,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,116,44,117,41,58,105,125,44,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,114,61,105,44,116,61,105,40,111,41,44,101,61,105,40,97,41,44,110,61,116,61,61,61,101,63,48,58,49,47,40,101,45,116,41,44,117,125,125,102,117,110,99,116,105,111,110,32,90,97,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,100,111,109,97,105,110,40,116,46,100,111,109,97,105,110,40,41,41,46,105,110,116,101,114,112,111,108,97,116,111,114,40,116,46,105,110,116,101,114,112,111,108,97,116,111,114,40,41,41,46,99,108,97,109,112,40,116,46,99,108,97,109,112,40,41,41,46,117,110,107,110,111,119,110,40,116,46,117,110,107,110,111,119,110,40,41,41,125,102,117,110,99,116,105,111,110,32,74,97,40,41,123,118,97,114,32,116,61,89,97,40,88,97,40,41,40,36,97,41,41,59,114,101,116,117,114,110,32,116,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,97,40,116,44,74,97,40,41,41,125,44,121,97,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,81,97,40,116,41,123,118,97,114,32,101,61,116,46,108,101,110,103,116,104,47,54,124,48,44,110,61,110,101,119,32,65,114,114,97,121,40,101,41,44,114,61,48,59,119,104,105,108,101,40,114,60,101,41,110,91,114,93,61,34,35,34,43,116,46,115,108,105,99,101,40,54,42,114,44,54,42,43,43,114,41,59,114,101,116,117,114,110,32,110,125,118,97,114,32,116,115,61,81,97,40,34,49,102,55,55,98,52,102,102,55,102,48,101,50,99,97,48,50,99,100,54,50,55,50,56,57,52,54,55,98,100,56,99,53,54,52,98,101,51,55,55,99,50,55,102,55,102,55,102,98,99,98,100,50,50,49,55,98,101,99,102,34,41,59,102,117,110,99,116,105,111,110,32,101,115,40,116,41,123,114,101,116,117,114,110,32,83,114,40,116,91,116,46,108,101,110,103,116,104,45,49,93,41,125,118,97,114,32,110,115,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,99,101,50,102,48,97,54,98,100,100,98,49,99,57,48,57,57,34,44,34,102,54,101,102,102,55,98,100,99,57,101,49,54,55,97,57,99,102,48,50,56,49,56,97,34,44,34,102,54,101,102,102,55,98,100,99,57,101,49,54,55,97,57,99,102,49,99,57,48,57,57,48,49,54,99,53,57,34,44,34,102,54,101,102,102,55,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,49,99,57,48,57,57,48,49,54,99,53,57,34,44,34,102,54,101,102,102,55,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,51,54,57,48,99,48,48,50,56,49,56,97,48,49,54,52,53,48,34,44,34,102,102,102,55,102,98,101,99,101,50,102,48,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,51,54,57,48,99,48,48,50,56,49,56,97,48,49,54,52,53,48,34,44,34,102,102,102,55,102,98,101,99,101,50,102,48,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,51,54,57,48,99,48,48,50,56,49,56,97,48,49,54,99,53,57,48,49,52,54,51,54,34,41,46,109,97,112,40,81,97,41,44,114,115,61,101,115,40,110,115,41,44,105,115,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,99,101,55,102,50,97,54,98,100,100,98,50,98,56,99,98,101,34,44,34,102,49,101,101,102,54,98,100,99,57,101,49,55,52,97,57,99,102,48,53,55,48,98,48,34,44,34,102,49,101,101,102,54,98,100,99,57,101,49,55,52,97,57,99,102,50,98,56,99,98,101,48,52,53,97,56,100,34,44,34,102,49,101,101,102,54,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,50,98,56,99,98,101,48,52,53,97,56,100,34,44,34,102,49,101,101,102,54,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,51,54,57,48,99,48,48,53,55,48,98,48,48,51,52,101,55,98,34,44,34,102,102,102,55,102,98,101,99,101,55,102,50,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,51,54,57,48,99,48,48,53,55,48,98,48,48,51,52,101,55,98,34,44,34,102,102,102,55,102,98,101,99,101,55,102,50,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,51,54,57,48,99,48,48,53,55,48,98,48,48,52,53,97,56,100,48,50,51,56,53,56,34,41,46,109,97,112,40,81,97,41,44,111,115,61,101,115,40,105,115,41,44,97,115,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,55,101,49,101,102,99,57,57,52,99,55,100,100,49,99,55,55,34,44,34,102,49,101,101,102,54,100,55,98,53,100,56,100,102,54,53,98,48,99,101,49,50,53,54,34,44,34,102,49,101,101,102,54,100,55,98,53,100,56,100,102,54,53,98,48,100,100,49,99,55,55,57,56,48,48,52,51,34,44,34,102,49,101,101,102,54,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,100,100,49,99,55,55,57,56,48,48,52,51,34,44,34,102,49,101,101,102,54,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,101,55,50,57,56,97,99,101,49,50,53,54,57,49,48,48,51,102,34,44,34,102,55,102,52,102,57,101,55,101,49,101,102,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,101,55,50,57,56,97,99,101,49,50,53,54,57,49,48,48,51,102,34,44,34,102,55,102,52,102,57,101,55,101,49,101,102,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,101,55,50,57,56,97,99,101,49,50,53,54,57,56,48,48,52,51,54,55,48,48,49,102,34,41,46,109,97,112,40,81,97,41,44,115,115,61,101,115,40,97,115,41,44,99,115,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,100,102,56,98,49,55,102,99,100,98,98,50,99,55,102,98,56,34,44,34,102,102,102,102,99,99,97,49,100,97,98,52,52,49,98,54,99,52,50,50,53,101,97,56,34,44,34,102,102,102,102,99,99,97,49,100,97,98,52,52,49,98,54,99,52,50,99,55,102,98,56,50,53,51,52,57,52,34,44,34,102,102,102,102,99,99,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,50,99,55,102,98,56,50,53,51,52,57,52,34,44,34,102,102,102,102,99,99,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,49,100,57,49,99,48,50,50,53,101,97,56,48,99,50,99,56,52,34,44,34,102,102,102,102,100,57,101,100,102,56,98,49,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,49,100,57,49,99,48,50,50,53,101,97,56,48,99,50,99,56,52,34,44,34,102,102,102,102,100,57,101,100,102,56,98,49,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,49,100,57,49,99,48,50,50,53,101,97,56,50,53,51,52,57,52,48,56,49,100,53,56,34,41,46,109,97,112,40,81,97,41,44,117,115,61,101,115,40,99,115,41,44,108,115,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,55,102,99,98,57,97,100,100,100,56,101,51,49,97,51,53,52,34,44,34,102,102,102,102,99,99,99,50,101,54,57,57,55,56,99,54,55,57,50,51,56,52,52,51,34,44,34,102,102,102,102,99,99,99,50,101,54,57,57,55,56,99,54,55,57,51,49,97,51,53,52,48,48,54,56,51,55,34,44,34,102,102,102,102,99,99,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,51,49,97,51,53,52,48,48,54,56,51,55,34,44,34,102,102,102,102,99,99,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,52,49,97,98,53,100,50,51,56,52,52,51,48,48,53,97,51,50,34,44,34,102,102,102,102,101,53,102,55,102,99,98,57,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,52,49,97,98,53,100,50,51,56,52,52,51,48,48,53,97,51,50,34,44,34,102,102,102,102,101,53,102,55,102,99,98,57,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,52,49,97,98,53,100,50,51,56,52,52,51,48,48,54,56,51,55,48,48,52,53,50,57,34,41,46,109,97,112,40,81,97,41,44,102,115,61,101,115,40,108,115,41,44,104,115,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,102,102,55,98,99,102,101,99,52,52,102,100,57,53,102,48,101,34,44,34,102,102,102,102,100,52,102,101,100,57,56,101,102,101,57,57,50,57,99,99,52,99,48,50,34,44,34,102,102,102,102,100,52,102,101,100,57,56,101,102,101,57,57,50,57,100,57,53,102,48,101,57,57,51,52,48,52,34,44,34,102,102,102,102,100,52,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,100,57,53,102,48,101,57,57,51,52,48,52,34,44,34,102,102,102,102,100,52,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,101,99,55,48,49,52,99,99,52,99,48,50,56,99,50,100,48,52,34,44,34,102,102,102,102,101,53,102,102,102,55,98,99,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,101,99,55,48,49,52,99,99,52,99,48,50,56,99,50,100,48,52,34,44,34,102,102,102,102,101,53,102,102,102,55,98,99,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,101,99,55,48,49,52,99,99,52,99,48,50,57,57,51,52,48,52,54,54,50,53,48,54,34,41,46,109,97,112,40,81,97,41,44,100,115,61,101,115,40,104,115,41,44,112,115,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,102,101,100,97,48,102,101,98,50,52,99,102,48,51,98,50,48,34,44,34,102,102,102,102,98,50,102,101,99,99,53,99,102,100,56,100,51,99,101,51,49,97,49,99,34,44,34,102,102,102,102,98,50,102,101,99,99,53,99,102,100,56,100,51,99,102,48,51,98,50,48,98,100,48,48,50,54,34,44,34,102,102,102,102,98,50,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,48,51,98,50,48,98,100,48,48,50,54,34,44,34,102,102,102,102,98,50,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,99,52,101,50,97,101,51,49,97,49,99,98,49,48,48,50,54,34,44,34,102,102,102,102,99,99,102,102,101,100,97,48,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,99,52,101,50,97,101,51,49,97,49,99,98,49,48,48,50,54,34,44,34,102,102,102,102,99,99,102,102,101,100,97,48,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,99,52,101,50,97,101,51,49,97,49,99,98,100,48,48,50,54,56,48,48,48,50,54,34,41,46,109,97,112,40,81,97,41,44,118,115,61,101,115,40,112,115,41,59,102,117,110,99,116,105,111,110,32,103,115,40,116,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,44,34,114,103,98,40,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,51,52,46,54,49,43,116,42,40,49,49,55,50,46,51,51,45,116,42,40,49,48,55,57,51,46,53,54,45,116,42,40,51,51,51,48,48,46,49,50,45,116,42,40,51,56,51,57,52,46,52,57,45,49,52,56,50,53,46,48,53,42,116,41,41,41,41,41,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,50,51,46,51,49,43,116,42,40,53,53,55,46,51,51,43,116,42,40,49,50,50,53,46,51,51,45,116,42,40,51,53,55,52,46,57,54,45,116,42,40,49,48,55,51,46,55,55,43,55,48,55,46,53,54,42,116,41,41,41,41,41,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,50,55,46,50,43,116,42,40,51,50,49,49,46,49,45,116,42,40,49,53,51,50,55,46,57,55,45,116,42,40,50,55,56,49,52,45,116,42,40,50,50,53,54,57,46,49,56,45,54,56,51,56,46,54,54,42,116,41,41,41,41,41,41,41,43,34,41,34,125,102,117,110,99,116,105,111,110,32,109,115,40,116,41,123,118,97,114,32,101,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,91,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,101,45,49,44,77,97,116,104,46,102,108,111,111,114,40,110,42,101,41,41,41,93,125,125,118,97,114,32,98,115,61,109,115,40,81,97,40,34,52,52,48,49,53,52,52,52,48,50,53,54,52,53,48,52,53,55,52,53,48,53,53,57,52,54,48,55,53,97,52,54,48,56,53,99,52,54,48,97,53,100,52,54,48,98,53,101,52,55,48,100,54,48,52,55,48,101,54,49,52,55,49,48,54,51,52,55,49,49,54,52,52,55,49,51,54,53,52,56,49,52,54,55,52,56,49,54,54,56,52,56,49,55,54,57,52,56,49,56,54,97,52,56,49,97,54,99,52,56,49,98,54,100,52,56,49,99,54,101,52,56,49,100,54,102,52,56,49,102,55,48,52,56,50,48,55,49,52,56,50,49,55,51,52,56,50,51,55,52,52,56,50,52,55,53,52,56,50,53,55,54,52,56,50,54,55,55,52,56,50,56,55,56,52,56,50,57,55,57,52,55,50,97,55,97,52,55,50,99,55,97,52,55,50,100,55,98,52,55,50,101,55,99,52,55,50,102,55,100,52,54,51,48,55,101,52,54,51,50,55,101,52,54,51,51,55,102,52,54,51,52,56,48,52,53,51,53,56,49,52,53,51,55,56,49,52,53,51,56,56,50,52,52,51,57,56,51,52,52,51,97,56,51,52,52,51,98,56,52,52,51,51,100,56,52,52,51,51,101,56,53,52,50,51,102,56,53,52,50,52,48,56,54,52,50,52,49,56,54,52,49,52,50,56,55,52,49,52,52,56,55,52,48,52,53,56,56,52,48,52,54,56,56,51,102,52,55,56,56,51,102,52,56,56,57,51,101,52,57,56,57,51,101,52,97,56,57,51,101,52,99,56,97,51,100,52,100,56,97,51,100,52,101,56,97,51,99,52,102,56,97,51,99,53,48,56,98,51,98,53,49,56,98,51,98,53,50,56,98,51,97,53,51,56,98,51,97,53,52,56,99,51,57,53,53,56,99,51,57,53,54,56,99,51,56,53,56,56,99,51,56,53,57,56,99,51,55,53,97,56,99,51,55,53,98,56,100,51,54,53,99,56,100,51,54,53,100,56,100,51,53,53,101,56,100,51,53,53,102,56,100,51,52,54,48,56,100,51,52,54,49,56,100,51,51,54,50,56,100,51,51,54,51,56,100,51,50,54,52,56,101,51,50,54,53,56,101,51,49,54,54,56,101,51,49,54,55,56,101,51,49,54,56,56,101,51,48,54,57,56,101,51,48,54,97,56,101,50,102,54,98,56,101,50,102,54,99,56,101,50,101,54,100,56,101,50,101,54,101,56,101,50,101,54,102,56,101,50,100,55,48,56,101,50,100,55,49,56,101,50,99,55,49,56,101,50,99,55,50,56,101,50,99,55,51,56,101,50,98,55,52,56,101,50,98,55,53,56,101,50,97,55,54,56,101,50,97,55,55,56,101,50,97,55,56,56,101,50,57,55,57,56,101,50,57,55,97,56,101,50,57,55,98,56,101,50,56,55,99,56,101,50,56,55,100,56,101,50,55,55,101,56,101,50,55,55,102,56,101,50,55,56,48,56,101,50,54,56,49,56,101,50,54,56,50,56,101,50,54,56,50,56,101,50,53,56,51,56,101,50,53,56,52,56,101,50,53,56,53,56,101,50,52,56,54,56,101,50,52,56,55,56,101,50,51,56,56,56,101,50,51,56,57,56,101,50,51,56,97,56,100,50,50,56,98,56,100,50,50,56,99,56,100,50,50,56,100,56,100,50,49,56,101,56,100,50,49,56,102,56,100,50,49,57,48,56,100,50,49,57,49,56,99,50,48,57,50,56,99,50,48,57,50,56,99,50,48,57,51,56,99,49,102,57,52,56,99,49,102,57,53,56,98,49,102,57,54,56,98,49,102,57,55,56,98,49,102,57,56,56,98,49,102,57,57,56,97,49,102,57,97,56,97,49,101,57,98,56,97,49,101,57,99,56,57,49,101,57,100,56,57,49,102,57,101,56,57,49,102,57,102,56,56,49,102,97,48,56,56,49,102,97,49,56,56,49,102,97,49,56,55,49,102,97,50,56,55,50,48,97,51,56,54,50,48,97,52,56,54,50,49,97,53,56,53,50,49,97,54,56,53,50,50,97,55,56,53,50,50,97,56,56,52,50,51,97,57,56,51,50,52,97,97,56,51,50,53,97,98,56,50,50,53,97,99,56,50,50,54,97,100,56,49,50,55,97,100,56,49,50,56,97,101,56,48,50,57,97,102,55,102,50,97,98,48,55,102,50,99,98,49,55,101,50,100,98,50,55,100,50,101,98,51,55,99,50,102,98,52,55,99,51,49,98,53,55,98,51,50,98,54,55,97,51,52,98,54,55,57,51,53,98,55,55,57,51,55,98,56,55,56,51,56,98,57,55,55,51,97,98,97,55,54,51,98,98,98,55,53,51,100,98,99,55,52,51,102,98,99,55,51,52,48,98,100,55,50,52,50,98,101,55,49,52,52,98,102,55,48,52,54,99,48,54,102,52,56,99,49,54,101,52,97,99,49,54,100,52,99,99,50,54,99,52,101,99,51,54,98,53,48,99,52,54,97,53,50,99,53,54,57,53,52,99,53,54,56,53,54,99,54,54,55,53,56,99,55,54,53,53,97,99,56,54,52,53,99,99,56,54,51,53,101,99,57,54,50,54,48,99,97,54,48,54,51,99,98,53,102,54,53,99,98,53,101,54,55,99,99,53,99,54,57,99,100,53,98,54,99,99,100,53,97,54,101,99,101,53,56,55,48,99,102,53,55,55,51,100,48,53,54,55,53,100,48,53,52,55,55,100,49,53,51,55,97,100,49,53,49,55,99,100,50,53,48,55,102,100,51,52,101,56,49,100,51,52,100,56,52,100,52,52,98,56,54,100,53,52,57,56,57,100,53,52,56,56,98,100,54,52,54,56,101,100,54,52,53,57,48,100,55,52,51,57,51,100,55,52,49,57,53,100,56,52,48,57,56,100,56,51,101,57,98,100,57,51,99,57,100,100,57,51,98,97,48,100,97,51,57,97,50,100,97,51,55,97,53,100,98,51,54,97,56,100,98,51,52,97,97,100,99,51,50,97,100,100,99,51,48,98,48,100,100,50,102,98,50,100,100,50,100,98,53,100,101,50,98,98,56,100,101,50,57,98,97,100,101,50,56,98,100,100,102,50,54,99,48,100,102,50,53,99,50,100,102,50,51,99,53,101,48,50,49,99,56,101,48,50,48,99,97,101,49,49,102,99,100,101,49,49,100,100,48,101,49,49,99,100,50,101,50,49,98,100,53,101,50,49,97,100,56,101,50,49,57,100,97,101,51,49,57,100,100,101,51,49,56,100,102,101,51,49,56,101,50,101,52,49,56,101,53,101,52,49,57,101,55,101,52,49,57,101,97,101,53,49,97,101,99,101,53,49,98,101,102,101,53,49,99,102,49,101,53,49,100,102,52,101,54,49,101,102,54,101,54,50,48,102,56,101,54,50,49,102,98,101,55,50,51,102,100,101,55,50,53,34,41,41,44,121,115,61,109,115,40,81,97,40,34,48,48,48,48,48,52,48,49,48,48,48,53,48,49,48,49,48,54,48,49,48,49,48,56,48,50,48,49,48,57,48,50,48,50,48,98,48,50,48,50,48,100,48,51,48,51,48,102,48,51,48,51,49,50,48,52,48,52,49,52,48,53,48,52,49,54,48,54,48,53,49,56,48,54,48,53,49,97,48,55,48,54,49,99,48,56,48,55,49,101,48,57,48,55,50,48,48,97,48,56,50,50,48,98,48,57,50,52,48,99,48,57,50,54,48,100,48,97,50,57,48,101,48,98,50,98,49,48,48,98,50,100,49,49,48,99,50,102,49,50,48,100,51,49,49,51,48,100,51,52,49,52,48,101,51,54,49,53,48,101,51,56,49,54,48,102,51,98,49,56,48,102,51,100,49,57,49,48,51,102,49,97,49,48,52,50,49,99,49,48,52,52,49,100,49,49,52,55,49,101,49,49,52,57,50,48,49,49,52,98,50,49,49,49,52,101,50,50,49,49,53,48,50,52,49,50,53,51,50,53,49,50,53,53,50,55,49,50,53,56,50,57,49,49,53,97,50,97,49,49,53,99,50,99,49,49,53,102,50,100,49,49,54,49,50,102,49,49,54,51,51,49,49,49,54,53,51,51,49,48,54,55,51,52,49,48,54,57,51,54,49,48,54,98,51,56,49,48,54,99,51,57,48,102,54,101,51,98,48,102,55,48,51,100,48,102,55,49,51,102,48,102,55,50,52,48,48,102,55,52,52,50,48,102,55,53,52,52,48,102,55,54,52,53,49,48,55,55,52,55,49,48,55,56,52,57,49,48,55,56,52,97,49,48,55,57,52,99,49,49,55,97,52,101,49,49,55,98,52,102,49,50,55,98,53,49,49,50,55,99,53,50,49,51,55,99,53,52,49,51,55,100,53,54,49,52,55,100,53,55,49,53,55,101,53,57,49,53,55,101,53,97,49,54,55,101,53,99,49,54,55,102,53,100,49,55,55,102,53,102,49,56,55,102,54,48,49,56,56,48,54,50,49,57,56,48,54,52,49,97,56,48,54,53,49,97,56,48,54,55,49,98,56,48,54,56,49,99,56,49,54,97,49,99,56,49,54,98,49,100,56,49,54,100,49,100,56,49,54,101,49,101,56,49,55,48,49,102,56,49,55,50,49,102,56,49,55,51,50,48,56,49,55,53,50,49,56,49,55,54,50,49,56,49,55,56,50,50,56,49,55,57,50,50,56,50,55,98,50,51,56,50,55,99,50,51,56,50,55,101,50,52,56,50,56,48,50,53,56,50,56,49,50,53,56,49,56,51,50,54,56,49,56,52,50,54,56,49,56,54,50,55,56,49,56,56,50,55,56,49,56,57,50,56,56,49,56,98,50,57,56,49,56,99,50,57,56,49,56,101,50,97,56,49,57,48,50,97,56,49,57,49,50,98,56,49,57,51,50,98,56,48,57,52,50,99,56,48,57,54,50,99,56,48,57,56,50,100,56,48,57,57,50,100,56,48,57,98,50,101,55,102,57,99,50,101,55,102,57,101,50,102,55,102,97,48,50,102,55,102,97,49,51,48,55,101,97,51,51,48,55,101,97,53,51,49,55,101,97,54,51,49,55,100,97,56,51,50,55,100,97,97,51,51,55,100,97,98,51,51,55,99,97,100,51,52,55,99,97,101,51,52,55,98,98,48,51,53,55,98,98,50,51,53,55,98,98,51,51,54,55,97,98,53,51,54,55,97,98,55,51,55,55,57,98,56,51,55,55,57,98,97,51,56,55,56,98,99,51,57,55,56,98,100,51,57,55,55,98,102,51,97,55,55,99,48,51,97,55,54,99,50,51,98,55,53,99,52,51,99,55,53,99,53,51,99,55,52,99,55,51,100,55,51,99,56,51,101,55,51,99,97,51,101,55,50,99,99,51,102,55,49,99,100,52,48,55,49,99,102,52,48,55,48,100,48,52,49,54,102,100,50,52,50,54,102,100,51,52,51,54,101,100,53,52,52,54,100,100,54,52,53,54,99,100,56,52,53,54,99,100,57,52,54,54,98,100,98,52,55,54,97,100,99,52,56,54,57,100,101,52,57,54,56,100,102,52,97,54,56,101,48,52,99,54,55,101,50,52,100,54,54,101,51,52,101,54,53,101,52,52,102,54,52,101,53,53,48,54,52,101,55,53,50,54,51,101,56,53,51,54,50,101,57,53,52,54,50,101,97,53,54,54,49,101,98,53,55,54,48,101,99,53,56,54,48,101,100,53,97,53,102,101,101,53,98,53,101,101,102,53,100,53,101,102,48,53,102,53,101,102,49,54,48,53,100,102,50,54,50,53,100,102,50,54,52,53,99,102,51,54,53,53,99,102,52,54,55,53,99,102,52,54,57,53,99,102,53,54,98,53,99,102,54,54,99,53,99,102,54,54,101,53,99,102,55,55,48,53,99,102,55,55,50,53,99,102,56,55,52,53,99,102,56,55,54,53,99,102,57,55,56,53,100,102,57,55,57,53,100,102,57,55,98,53,100,102,97,55,100,53,101,102,97,55,102,53,101,102,97,56,49,53,102,102,98,56,51,53,102,102,98,56,53,54,48,102,98,56,55,54,49,102,99,56,57,54,49,102,99,56,97,54,50,102,99,56,99,54,51,102,99,56,101,54,52,102,99,57,48,54,53,102,100,57,50,54,54,102,100,57,52,54,55,102,100,57,54,54,56,102,100,57,56,54,57,102,100,57,97,54,97,102,100,57,98,54,98,102,101,57,100,54,99,102,101,57,102,54,100,102,101,97,49,54,101,102,101,97,51,54,102,102,101,97,53,55,49,102,101,97,55,55,50,102,101,97,57,55,51,102,101,97,97,55,52,102,101,97,99,55,54,102,101,97,101,55,55,102,101,98,48,55,56,102,101,98,50,55,97,102,101,98,52,55,98,102,101,98,54,55,99,102,101,98,55,55,101,102,101,98,57,55,102,102,101,98,98,56,49,102,101,98,100,56,50,102,101,98,102,56,52,102,101,99,49,56,53,102,101,99,50,56,55,102,101,99,52,56,56,102,101,99,54,56,97,102,101,99,56,56,99,102,101,99,97,56,100,102,101,99,99,56,102,102,101,99,100,57,48,102,101,99,102,57,50,102,101,100,49,57,52,102,101,100,51,57,53,102,101,100,53,57,55,102,101,100,55,57,57,102,101,100,56,57,97,102,100,100,97,57,99,102,100,100,99,57,101,102,100,100,101,97,48,102,100,101,48,97,49,102,100,101,50,97,51,102,100,101,51,97,53,102,100,101,53,97,55,102,100,101,55,97,57,102,100,101,57,97,97,102,100,101,98,97,99,102,99,101,99,97,101,102,99,101,101,98,48,102,99,102,48,98,50,102,99,102,50,98,52,102,99,102,52,98,54,102,99,102,54,98,56,102,99,102,55,98,57,102,99,102,57,98,98,102,99,102,98,98,100,102,99,102,100,98,102,34,41,41,44,119,115,61,109,115,40,81,97,40,34,48,48,48,48,48,52,48,49,48,48,48,53,48,49,48,49,48,54,48,49,48,49,48,56,48,50,48,49,48,97,48,50,48,50,48,99,48,50,48,50,48,101,48,51,48,50,49,48,48,52,48,51,49,50,48,52,48,51,49,52,48,53,48,52,49,55,48,54,48,52,49,57,48,55,48,53,49,98,48,56,48,53,49,100,48,57,48,54,49,102,48,97,48,55,50,50,48,98,48,55,50,52,48,99,48,56,50,54,48,100,48,56,50,57,48,101,48,57,50,98,49,48,48,57,50,100,49,49,48,97,51,48,49,50,48,97,51,50,49,52,48,98,51,52,49,53,48,98,51,55,49,54,48,98,51,57,49,56,48,99,51,99,49,57,48,99,51,101,49,98,48,99,52,49,49,99,48,99,52,51,49,101,48,99,52,53,49,102,48,99,52,56,50,49,48,99,52,97,50,51,48,99,52,99,50,52,48,99,52,102,50,54,48,99,53,49,50,56,48,98,53,51,50,57,48,98,53,53,50,98,48,98,53,55,50,100,48,98,53,57,50,102,48,97,53,98,51,49,48,97,53,99,51,50,48,97,53,101,51,52,48,97,53,102,51,54,48,57,54,49,51,56,48,57,54,50,51,57,48,57,54,51,51,98,48,57,54,52,51,100,48,57,54,53,51,101,48,57,54,54,52,48,48,97,54,55,52,50,48,97,54,56,52,52,48,97,54,56,52,53,48,97,54,57,52,55,48,98,54,97,52,57,48,98,54,97,52,97,48,99,54,98,52,99,48,99,54,98,52,100,48,100,54,99,52,102,48,100,54,99,53,49,48,101,54,99,53,50,48,101,54,100,53,52,48,102,54,100,53,53,48,102,54,100,53,55,49,48,54,101,53,57,49,48,54,101,53,97,49,49,54,101,53,99,49,50,54,101,53,100,49,50,54,101,53,102,49,51,54,101,54,49,49,51,54,101,54,50,49,52,54,101,54,52,49,53,54,101,54,53,49,53,54,101,54,55,49,54,54,101,54,57,49,54,54,101,54,97,49,55,54,101,54,99,49,56,54,101,54,100,49,56,54,101,54,102,49,57,54,101,55,49,49,57,54,101,55,50,49,97,54,101,55,52,49,97,54,101,55,53,49,98,54,101,55,55,49,99,54,100,55,56,49,99,54,100,55,97,49,100,54,100,55,99,49,100,54,100,55,100,49,101,54,100,55,102,49,101,54,99,56,48,49,102,54,99,56,50,50,48,54,99,56,52,50,48,54,98,56,53,50,49,54,98,56,55,50,49,54,98,56,56,50,50,54,97,56,97,50,50,54,97,56,99,50,51,54,57,56,100,50,51,54,57,56,102,50,52,54,57,57,48,50,53,54,56,57,50,50,53,54,56,57,51,50,54,54,55,57,53,50,54,54,55,57,55,50,55,54,54,57,56,50,55,54,54,57,97,50,56,54,53,57,98,50,57,54,52,57,100,50,57,54,52,57,102,50,97,54,51,97,48,50,97,54,51,97,50,50,98,54,50,97,51,50,99,54,49,97,53,50,99,54,48,97,54,50,100,54,48,97,56,50,101,53,102,97,57,50,101,53,101,97,98,50,102,53,101,97,100,51,48,53,100,97,101,51,48,53,99,98,48,51,49,53,98,98,49,51,50,53,97,98,51,51,50,53,97,98,52,51,51,53,57,98,54,51,52,53,56,98,55,51,53,53,55,98,57,51,53,53,54,98,97,51,54,53,53,98,99,51,55,53,52,98,100,51,56,53,51,98,102,51,57,53,50,99,48,51,97,53,49,99,49,51,97,53,48,99,51,51,98,52,102,99,52,51,99,52,101,99,54,51,100,52,100,99,55,51,101,52,99,99,56,51,102,52,98,99,97,52,48,52,97,99,98,52,49,52,57,99,99,52,50,52,56,99,101,52,51,52,55,99,102,52,52,52,54,100,48,52,53,52,53,100,50,52,54,52,52,100,51,52,55,52,51,100,52,52,56,52,50,100,53,52,97,52,49,100,55,52,98,51,102,100,56,52,99,51,101,100,57,52,100,51,100,100,97,52,101,51,99,100,98,53,48,51,98,100,100,53,49,51,97,100,101,53,50,51,56,100,102,53,51,51,55,101,48,53,53,51,54,101,49,53,54,51,53,101,50,53,55,51,52,101,51,53,57,51,51,101,52,53,97,51,49,101,53,53,99,51,48,101,54,53,100,50,102,101,55,53,101,50,101,101,56,54,48,50,100,101,57,54,49,50,98,101,97,54,51,50,97,101,98,54,52,50,57,101,98,54,54,50,56,101,99,54,55,50,54,101,100,54,57,50,53,101,101,54,97,50,52,101,102,54,99,50,51,101,102,54,101,50,49,102,48,54,102,50,48,102,49,55,49,49,102,102,49,55,51,49,100,102,50,55,52,49,99,102,51,55,54,49,98,102,51,55,56,49,57,102,52,55,57,49,56,102,53,55,98,49,55,102,53,55,100,49,53,102,54,55,101,49,52,102,54,56,48,49,51,102,55,56,50,49,50,102,55,56,52,49,48,102,56,56,53,48,102,102,56,56,55,48,101,102,56,56,57,48,99,102,57,56,98,48,98,102,57,56,99,48,97,102,57,56,101,48,57,102,97,57,48,48,56,102,97,57,50,48,55,102,97,57,52,48,55,102,98,57,54,48,54,102,98,57,55,48,54,102,98,57,57,48,54,102,98,57,98,48,54,102,98,57,100,48,55,102,99,57,102,48,55,102,99,97,49,48,56,102,99,97,51,48,57,102,99,97,53,48,97,102,99,97,54,48,99,102,99,97,56,48,100,102,99,97,97,48,102,102,99,97,99,49,49,102,99,97,101,49,50,102,99,98,48,49,52,102,99,98,50,49,54,102,99,98,52,49,56,102,98,98,54,49,97,102,98,98,56,49,100,102,98,98,97,49,102,102,98,98,99,50,49,102,98,98,101,50,51,102,97,99,48,50,54,102,97,99,50,50,56,102,97,99,52,50,97,102,97,99,54,50,100,102,57,99,55,50,102,102,57,99,57,51,50,102,57,99,98,51,53,102,56,99,100,51,55,102,56,99,102,51,97,102,55,100,49,51,100,102,55,100,51,52,48,102,54,100,53,52,51,102,54,100,55,52,54,102,53,100,57,52,57,102,53,100,98,52,99,102,52,100,100,52,102,102,52,100,102,53,51,102,52,101,49,53,54,102,51,101,51,53,97,102,51,101,53,53,100,102,50,101,54,54,49,102,50,101,56,54,53,102,50,101,97,54,57,102,49,101,99,54,100,102,49,101,100,55,49,102,49,101,102,55,53,102,49,102,49,55,57,102,50,102,50,55,100,102,50,102,52,56,50,102,51,102,53,56,54,102,51,102,54,56,97,102,52,102,56,56,101,102,53,102,57,57,50,102,54,102,97,57,54,102,56,102,98,57,97,102,57,102,99,57,100,102,97,102,100,97,49,102,99,102,102,97,52,34,41,41,44,95,115,61,109,115,40,81,97,40,34,48,100,48,56,56,55,49,48,48,55,56,56,49,51,48,55,56,57,49,54,48,55,56,97,49,57,48,54,56,99,49,98,48,54,56,100,49,100,48,54,56,101,50,48,48,54,56,102,50,50,48,54,57,48,50,52,48,54,57,49,50,54,48,53,57,49,50,56,48,53,57,50,50,97,48,53,57,51,50,99,48,53,57,52,50,101,48,53,57,53,50,102,48,53,57,54,51,49,48,53,57,55,51,51,48,53,57,55,51,53,48,52,57,56,51,55,48,52,57,57,51,56,48,52,57,97,51,97,48,52,57,97,51,99,48,52,57,98,51,101,48,52,57,99,51,102,48,52,57,99,52,49,48,52,57,100,52,51,48,51,57,101,52,52,48,51,57,101,52,54,48,51,57,102,52,56,48,51,57,102,52,57,48,51,97,48,52,98,48,51,97,49,52,99,48,50,97,49,52,101,48,50,97,50,53,48,48,50,97,50,53,49,48,50,97,51,53,51,48,50,97,51,53,53,48,50,97,52,53,54,48,49,97,52,53,56,48,49,97,52,53,57,48,49,97,53,53,98,48,49,97,53,53,99,48,49,97,54,53,101,48,49,97,54,54,48,48,49,97,54,54,49,48,48,97,55,54,51,48,48,97,55,54,52,48,48,97,55,54,54,48,48,97,55,54,55,48,48,97,56,54,57,48,48,97,56,54,97,48,48,97,56,54,99,48,48,97,56,54,101,48,48,97,56,54,102,48,48,97,56,55,49,48,48,97,56,55,50,48,49,97,56,55,52,48,49,97,56,55,53,48,49,97,56,55,55,48,49,97,56,55,56,48,49,97,56,55,97,48,50,97,56,55,98,48,50,97,56,55,100,48,51,97,56,55,101,48,51,97,56,56,48,48,52,97,56,56,49,48,52,97,55,56,51,48,53,97,55,56,52,48,53,97,55,56,54,48,54,97,54,56,55,48,55,97,54,56,56,48,56,97,54,56,97,48,57,97,53,56,98,48,97,97,53,56,100,48,98,97,53,56,101,48,99,97,52,56,102,48,100,97,52,57,49,48,101,97,51,57,50,48,102,97,51,57,52,49,48,97,50,57,53,49,49,97,49,57,54,49,51,97,49,57,56,49,52,97,48,57,57,49,53,57,102,57,97,49,54,57,102,57,99,49,55,57,101,57,100,49,56,57,100,57,101,49,57,57,100,97,48,49,97,57,99,97,49,49,98,57,98,97,50,49,100,57,97,97,51,49,101,57,97,97,53,49,102,57,57,97,54,50,48,57,56,97,55,50,49,57,55,97,56,50,50,57,54,97,97,50,51,57,53,97,98,50,52,57,52,97,99,50,54,57,52,97,100,50,55,57,51,97,101,50,56,57,50,98,48,50,57,57,49,98,49,50,97,57,48,98,50,50,98,56,102,98,51,50,99,56,101,98,52,50,101,56,100,98,53,50,102,56,99,98,54,51,48,56,98,98,55,51,49,56,97,98,56,51,50,56,57,98,97,51,51,56,56,98,98,51,52,56,56,98,99,51,53,56,55,98,100,51,55,56,54,98,101,51,56,56,53,98,102,51,57,56,52,99,48,51,97,56,51,99,49,51,98,56,50,99,50,51,99,56,49,99,51,51,100,56,48,99,52,51,101,55,102,99,53,52,48,55,101,99,54,52,49,55,100,99,55,52,50,55,99,99,56,52,51,55,98,99,57,52,52,55,97,99,97,52,53,55,97,99,98,52,54,55,57,99,99,52,55,55,56,99,99,52,57,55,55,99,100,52,97,55,54,99,101,52,98,55,53,99,102,52,99,55,52,100,48,52,100,55,51,100,49,52,101,55,50,100,50,52,102,55,49,100,51,53,49,55,49,100,52,53,50,55,48,100,53,53,51,54,102,100,53,53,52,54,101,100,54,53,53,54,100,100,55,53,54,54,99,100,56,53,55,54,98,100,57,53,56,54,97,100,97,53,97,54,97,100,97,53,98,54,57,100,98,53,99,54,56,100,99,53,100,54,55,100,100,53,101,54,54,100,101,53,102,54,53,100,101,54,49,54,52,100,102,54,50,54,51,101,48,54,51,54,51,101,49,54,52,54,50,101,50,54,53,54,49,101,50,54,54,54,48,101,51,54,56,53,102,101,52,54,57,53,101,101,53,54,97,53,100,101,53,54,98,53,100,101,54,54,99,53,99,101,55,54,101,53,98,101,55,54,102,53,97,101,56,55,48,53,57,101,57,55,49,53,56,101,57,55,50,53,55,101,97,55,52,53,55,101,98,55,53,53,54,101,98,55,54,53,53,101,99,55,55,53,52,101,100,55,57,53,51,101,100,55,97,53,50,101,101,55,98,53,49,101,102,55,99,53,49,101,102,55,101,53,48,102,48,55,102,52,102,102,48,56,48,52,101,102,49,56,49,52,100,102,49,56,51,52,99,102,50,56,52,52,98,102,51,56,53,52,98,102,51,56,55,52,97,102,52,56,56,52,57,102,52,56,57,52,56,102,53,56,98,52,55,102,53,56,99,52,54,102,54,56,100,52,53,102,54,56,102,52,52,102,55,57,48,52,52,102,55,57,49,52,51,102,55,57,51,52,50,102,56,57,52,52,49,102,56,57,53,52,48,102,57,57,55,51,102,102,57,57,56,51,101,102,57,57,97,51,101,102,97,57,98,51,100,102,97,57,99,51,99,102,97,57,101,51,98,102,98,57,102,51,97,102,98,97,49,51,57,102,98,97,50,51,56,102,99,97,51,51,56,102,99,97,53,51,55,102,99,97,54,51,54,102,99,97,56,51,53,102,99,97,57,51,52,102,100,97,98,51,51,102,100,97,99,51,51,102,100,97,101,51,50,102,100,97,102,51,49,102,100,98,49,51,48,102,100,98,50,50,102,102,100,98,52,50,102,102,100,98,53,50,101,102,101,98,55,50,100,102,101,98,56,50,99,102,101,98,97,50,99,102,101,98,98,50,98,102,101,98,100,50,97,102,101,98,101,50,97,102,101,99,48,50,57,102,100,99,50,50,57,102,100,99,51,50,56,102,100,99,53,50,55,102,100,99,54,50,55,102,100,99,56,50,55,102,100,99,97,50,54,102,100,99,98,50,54,102,99,99,100,50,53,102,99,99,101,50,53,102,99,100,48,50,53,102,99,100,50,50,53,102,98,100,51,50,52,102,98,100,53,50,52,102,98,100,55,50,52,102,97,100,56,50,52,102,97,100,97,50,52,102,57,100,99,50,52,102,57,100,100,50,53,102,56,100,102,50,53,102,56,101,49,50,53,102,55,101,50,50,53,102,55,101,52,50,53,102,54,101,54,50,54,102,54,101,56,50,54,102,53,101,57,50,54,102,53,101,98,50,55,102,52,101,100,50,55,102,51,101,101,50,55,102,51,102,48,50,55,102,50,102,50,50,55,102,49,102,52,50,54,102,49,102,53,50,53,102,48,102,55,50,52,102,48,102,57,50,49,34,41,41,59,102,117,110,99,116,105,111,110,32,120,115,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,63,110,101,119,32,83,101,40,91,91,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,41,93,93,44,91,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,93,41,58,110,101,119,32,83,101,40,91,91,116,93,93,44,79,101,41,125,118,97,114,32,79,115,61,110,101,119,32,68,97,116,101,44,83,115,61,110,101,119,32,68,97,116,101,59,102,117,110,99,116,105,111,110,32,107,115,40,116,44,101,44,110,44,114,41,123,102,117,110,99,116,105,111,110,32,105,40,101,41,123,114,101,116,117,114,110,32,116,40,101,61,48,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,101,119,32,68,97,116,101,58,110,101,119,32,68,97,116,101,40,43,101,41,41,44,101,125,114,101,116,117,114,110,32,105,46,102,108,111,111,114,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,101,61,110,101,119,32,68,97,116,101,40,43,101,41,41,44,101,125,44,105,46,99,101,105,108,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,61,110,101,119,32,68,97,116,101,40,110,45,49,41,41,44,101,40,110,44,49,41,44,116,40,110,41,44,110,125,44,105,46,114,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,105,40,116,41,44,110,61,105,46,99,101,105,108,40,116,41,59,114,101,116,117,114,110,32,116,45,101,60,110,45,116,63,101,58,110,125,44,105,46,111,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,101,40,116,61,110,101,119,32,68,97,116,101,40,43,116,41,44,110,117,108,108,61,61,110,63,49,58,77,97,116,104,46,102,108,111,111,114,40,110,41,41,44,116,125,44,105,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,110,44,114,44,111,41,123,118,97,114,32,97,44,115,61,91,93,59,105,102,40,110,61,105,46,99,101,105,108,40,110,41,44,111,61,110,117,108,108,61,61,111,63,49,58,77,97,116,104,46,102,108,111,111,114,40,111,41,44,33,40,110,60,114,41,124,124,33,40,111,62,48,41,41,114,101,116,117,114,110,32,115,59,100,111,123,115,46,112,117,115,104,40,97,61,110,101,119,32,68,97,116,101,40,43,110,41,41,44,101,40,110,44,111,41,44,116,40,110,41,125,119,104,105,108,101,40,97,60,110,38,38,110,60,114,41,59,114,101,116,117,114,110,32,115,125,44,105,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,107,115,40,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,62,61,101,41,119,104,105,108,101,40,116,40,101,41,44,33,110,40,101,41,41,101,46,115,101,116,84,105,109,101,40,101,45,49,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,105,102,40,116,62,61,116,41,105,102,40,114,60,48,41,119,104,105,108,101,40,43,43,114,60,61,48,41,119,104,105,108,101,40,101,40,116,44,45,49,41,44,33,110,40,116,41,41,59,101,108,115,101,32,119,104,105,108,101,40,45,45,114,62,61,48,41,119,104,105,108,101,40,101,40,116,44,49,41,44,33,110,40,116,41,41,59,125,41,41,125,44,110,38,38,40,105,46,99,111,117,110,116,61,102,117,110,99,116,105,111,110,40,101,44,114,41,123,114,101,116,117,114,110,32,79,115,46,115,101,116,84,105,109,101,40,43,101,41,44,83,115,46,115,101,116,84,105,109,101,40,43,114,41,44,116,40,79,115,41,44,116,40,83,115,41,44,77,97,116,104,46,102,108,111,111,114,40,110,40,79,115,44,83,115,41,41,125,44,105,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,44,105,115,70,105,110,105,116,101,40,116,41,38,38,116,62,48,63,116,62,49,63,105,46,102,105,108,116,101,114,40,114,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,114,40,101,41,37,116,61,61,61,48,125,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,105,46,99,111,117,110,116,40,48,44,101,41,37,116,61,61,61,48,125,41,58,105,58,110,117,108,108,125,41,44,105,125,118,97,114,32,67,115,61,54,101,52,44,80,115,61,56,54,52,101,53,44,84,115,61,54,48,52,56,101,53,59,102,117,110,99,116,105,111,110,32,106,115,40,116,41,123,114,101,116,117,114,110,32,107,115,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,101,116,85,84,67,68,97,116,101,40,101,46,103,101,116,85,84,67,68,97,116,101,40,41,45,40,101,46,103,101,116,85,84,67,68,97,121,40,41,43,55,45,116,41,37,55,41,44,101,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,115,101,116,85,84,67,68,97,116,101,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,43,55,42,101,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,40,101,45,116,41,47,84,115,125,41,41,125,118,97,114,32,69,115,61,106,115,40,48,41,44,68,115,61,106,115,40,49,41,44,65,115,61,106,115,40,50,41,44,76,115,61,106,115,40,51,41,44,73,115,61,106,115,40,52,41,44,77,115,61,106,115,40,53,41,44,36,115,61,106,115,40,54,41,44,70,115,61,40,69,115,46,114,97,110,103,101,44,68,115,46,114,97,110,103,101,44,65,115,46,114,97,110,103,101,44,76,115,46,114,97,110,103,101,44,73,115,46,114,97,110,103,101,44,77,115,46,114,97,110,103,101,44,36,115,46,114,97,110,103,101,44,107,115,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,115,101,116,85,84,67,68,97,116,101,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,43,101,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,40,101,45,116,41,47,80,115,125,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,68,97,116,101,40,41,45,49,125,41,41,41,44,82,115,61,70,115,59,70,115,46,114,97,110,103,101,59,102,117,110,99,116,105,111,110,32,78,115,40,116,41,123,114,101,116,117,114,110,32,107,115,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,101,116,68,97,116,101,40,101,46,103,101,116,68,97,116,101,40,41,45,40,101,46,103,101,116,68,97,121,40,41,43,55,45,116,41,37,55,41,44,101,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,115,101,116,68,97,116,101,40,116,46,103,101,116,68,97,116,101,40,41,43,55,42,101,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,40,101,45,116,45,40,101,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,45,116,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,41,42,67,115,41,47,84,115,125,41,41,125,118,97,114,32,66,115,61,78,115,40,48,41,44,122,115,61,78,115,40,49,41,44,86,115,61,78,115,40,50,41,44,72,115,61,78,115,40,51,41,44,85,115,61,78,115,40,52,41,44,87,115,61,78,115,40,53,41,44,71,115,61,78,115,40,54,41,44,113,115,61,40,66,115,46,114,97,110,103,101,44,122,115,46,114,97,110,103,101,44,86,115,46,114,97,110,103,101,44,72,115,46,114,97,110,103,101,44,85,115,46,114,97,110,103,101,44,87,115,46,114,97,110,103,101,44,71,115,46,114,97,110,103,101,44,107,115,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,115,101,116,68,97,116,101,40,116,46,103,101,116,68,97,116,101,40,41,43,101,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,40,101,45,116,45,40,101,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,45,116,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,41,42,67,115,41,47,80,115,125,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,68,97,116,101,40,41,45,49,125,41,41,41,44,89,115,61,113,115,44,75,115,61,40,113,115,46,114,97,110,103,101,44,107,115,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,77,111,110,116,104,40,48,44,49,41,44,116,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,115,101,116,70,117,108,108,89,101,97,114,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,43,101,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,103,101,116,70,117,108,108,89,101,97,114,40,41,45,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,125,41,41,41,59,75,115,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,38,38,116,62,48,63,107,115,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,101,116,70,117,108,108,89,101,97,114,40,77,97,116,104,46,102,108,111,111,114,40,101,46,103,101,116,70,117,108,108,89,101,97,114,40,41,47,116,41,42,116,41,44,101,46,115,101,116,77,111,110,116,104,40,48,44,49,41,44,101,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,41,44,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,101,46,115,101,116,70,117,108,108,89,101,97,114,40,101,46,103,101,116,70,117,108,108,89,101,97,114,40,41,43,110,42,116,41,125,41,41,58,110,117,108,108,125,59,118,97,114,32,88,115,61,75,115,44,90,115,61,40,75,115,46,114,97,110,103,101,44,107,115,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,77,111,110,116,104,40,48,44,49,41,44,116,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,43,101,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,45,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,125,41,41,41,59,90,115,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,38,38,116,62,48,63,107,115,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,77,97,116,104,46,102,108,111,111,114,40,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,47,116,41,42,116,41,44,101,46,115,101,116,85,84,67,77,111,110,116,104,40,48,44,49,41,44,101,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,41,44,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,101,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,43,110,42,116,41,125,41,41,58,110,117,108,108,125,59,118,97,114,32,74,115,61,90,115,59,90,115,46,114,97,110,103,101,59,102,117,110,99,116,105,111,110,32,81,115,40,116,41,123,105,102,40,48,60,61,116,46,121,38,38,116,46,121,60,49,48,48,41,123,118,97,114,32,101,61,110,101,119,32,68,97,116,101,40,45,49,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,59,114,101,116,117,114,110,32,101,46,115,101,116,70,117,108,108,89,101,97,114,40,116,46,121,41,44,101,125,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,116,46,121,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,125,102,117,110,99,116,105,111,110,32,116,99,40,116,41,123,105,102,40,48,60,61,116,46,121,38,38,116,46,121,60,49,48,48,41,123,118,97,114,32,101,61,110,101,119,32,68,97,116,101,40,68,97,116,101,46,85,84,67,40,45,49,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,41,59,114,101,116,117,114,110,32,101,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,116,46,121,41,44,101,125,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,68,97,116,101,46,85,84,67,40,116,46,121,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,41,125,102,117,110,99,116,105,111,110,32,101,99,40,116,44,101,44,110,41,123,114,101,116,117,114,110,123,121,58,116,44,109,58,101,44,100,58,110,44,72,58,48,44,77,58,48,44,83,58,48,44,76,58,48,125,125,102,117,110,99,116,105,111,110,32,110,99,40,116,41,123,118,97,114,32,101,61,116,46,100,97,116,101,84,105,109,101,44,110,61,116,46,100,97,116,101,44,114,61,116,46,116,105,109,101,44,105,61,116,46,112,101,114,105,111,100,115,44,111,61,116,46,100,97,121,115,44,97,61,116,46,115,104,111,114,116,68,97,121,115,44,115,61,116,46,109,111,110,116,104,115,44,99,61,116,46,115,104,111,114,116,77,111,110,116,104,115,44,117,61,104,99,40,105,41,44,108,61,100,99,40,105,41,44,102,61,104,99,40,111,41,44,104,61,100,99,40,111,41,44,100,61,104,99,40,97,41,44,112,61,100,99,40,97,41,44,118,61,104,99,40,115,41,44,103,61,100,99,40,115,41,44,109,61,104,99,40,99,41,44,98,61,100,99,40,99,41,44,121,61,123,97,58,76,44,65,58,73,44,98,58,77,44,66,58,36,44,99,58,110,117,108,108,44,100,58,73,99,44,101,58,73,99,44,102,58,78,99,44,103,58,88,99,44,71,58,74,99,44,72,58,77,99,44,73,58,36,99,44,106,58,70,99,44,76,58,82,99,44,109,58,66,99,44,77,58,122,99,44,112,58,70,44,113,58,82,44,81,58,95,117,44,115,58,120,117,44,83,58,86,99,44,117,58,72,99,44,85,58,85,99,44,86,58,71,99,44,119,58,113,99,44,87,58,89,99,44,120,58,110,117,108,108,44,88,58,110,117,108,108,44,121,58,75,99,44,89,58,90,99,44,90,58,81,99,44,34,37,34,58,119,117,125,44,119,61,123,97,58,78,44,65,58,66,44,98,58,122,44,66,58,86,44,99,58,110,117,108,108,44,100,58,116,117,44,101,58,116,117,44,102,58,111,117,44,103,58,103,117,44,71,58,98,117,44,72,58,101,117,44,73,58,110,117,44,106,58,114,117,44,76,58,105,117,44,109,58,97,117,44,77,58,115,117,44,112,58,72,44,113,58,85,44,81,58,95,117,44,115,58,120,117,44,83,58,99,117,44,117,58,117,117,44,85,58,108,117,44,86,58,104,117,44,119,58,100,117,44,87,58,112,117,44,120,58,110,117,108,108,44,88,58,110,117,108,108,44,121,58,118,117,44,89,58,109,117,44,90,58,121,117,44,34,37,34,58,119,117,125,44,95,61,123,97,58,67,44,65,58,80,44,98,58,84,44,66,58,106,44,99,58,69,44,100,58,83,99,44,101,58,83,99,44,102,58,69,99,44,103,58,119,99,44,71,58,121,99,44,72,58,67,99,44,73,58,67,99,44,106,58,107,99,44,76,58,106,99,44,109,58,79,99,44,77,58,80,99,44,112,58,107,44,113,58,120,99,44,81,58,65,99,44,115,58,76,99,44,83,58,84,99,44,117,58,118,99,44,85,58,103,99,44,86,58,109,99,44,119,58,112,99,44,87,58,98,99,44,120,58,68,44,88,58,65,44,121,58,119,99,44,89,58,121,99,44,90,58,95,99,44,34,37,34,58,68,99,125,59,102,117,110,99,116,105,111,110,32,120,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,91,93,44,115,61,45,49,44,99,61,48,44,117,61,116,46,108,101,110,103,116,104,59,110,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,124,124,40,110,61,110,101,119,32,68,97,116,101,40,43,110,41,41,59,119,104,105,108,101,40,43,43,115,60,117,41,51,55,61,61,61,116,46,99,104,97,114,67,111,100,101,65,116,40,115,41,38,38,40,97,46,112,117,115,104,40,116,46,115,108,105,99,101,40,99,44,115,41,41,44,110,117,108,108,33,61,40,105,61,97,99,91,114,61,116,46,99,104,97,114,65,116,40,43,43,115,41,93,41,63,114,61,116,46,99,104,97,114,65,116,40,43,43,115,41,58,105,61,34,101,34,61,61,61,114,63,34,32,34,58,34,48,34,44,40,111,61,101,91,114,93,41,38,38,40,114,61,111,40,110,44,105,41,41,44,97,46,112,117,115,104,40,114,41,44,99,61,115,43,49,41,59,114,101,116,117,114,110,32,97,46,112,117,115,104,40,116,46,115,108,105,99,101,40,99,44,115,41,41,44,97,46,106,111,105,110,40,34,34,41,125,125,102,117,110,99,116,105,111,110,32,79,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,105,44,111,61,101,99,40,49,57,48,48,44,118,111,105,100,32,48,44,49,41,44,97,61,83,40,111,44,116,44,110,43,61,34,34,44,48,41,59,105,102,40,97,33,61,110,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,117,108,108,59,105,102,40,34,81,34,105,110,32,111,41,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,111,46,81,41,59,105,102,40,34,115,34,105,110,32,111,41,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,49,101,51,42,111,46,115,43,40,34,76,34,105,110,32,111,63,111,46,76,58,48,41,41,59,105,102,40,101,38,38,33,40,34,90,34,105,110,32,111,41,38,38,40,111,46,90,61,48,41,44,34,112,34,105,110,32,111,38,38,40,111,46,72,61,111,46,72,37,49,50,43,49,50,42,111,46,112,41,44,118,111,105,100,32,48,61,61,61,111,46,109,38,38,40,111,46,109,61,34,113,34,105,110,32,111,63,111,46,113,58,48,41,44,34,86,34,105,110,32,111,41,123,105,102,40,111,46,86,60,49,124,124,111,46,86,62,53,51,41,114,101,116,117,114,110,32,110,117,108,108,59,34,119,34,105,110,32,111,124,124,40,111,46,119,61,49,41,44,34,90,34,105,110,32,111,63,40,114,61,116,99,40,101,99,40,111,46,121,44,48,44,49,41,41,44,105,61,114,46,103,101,116,85,84,67,68,97,121,40,41,44,114,61,105,62,52,124,124,48,61,61,61,105,63,68,115,46,99,101,105,108,40,114,41,58,68,115,40,114,41,44,114,61,82,115,46,111,102,102,115,101,116,40,114,44,55,42,40,111,46,86,45,49,41,41,44,111,46,121,61,114,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,44,111,46,109,61,114,46,103,101,116,85,84,67,77,111,110,116,104,40,41,44,111,46,100,61,114,46,103,101,116,85,84,67,68,97,116,101,40,41,43,40,111,46,119,43,54,41,37,55,41,58,40,114,61,81,115,40,101,99,40,111,46,121,44,48,44,49,41,41,44,105,61,114,46,103,101,116,68,97,121,40,41,44,114,61,105,62,52,124,124,48,61,61,61,105,63,122,115,46,99,101,105,108,40,114,41,58,122,115,40,114,41,44,114,61,89,115,46,111,102,102,115,101,116,40,114,44,55,42,40,111,46,86,45,49,41,41,44,111,46,121,61,114,46,103,101,116,70,117,108,108,89,101,97,114,40,41,44,111,46,109,61,114,46,103,101,116,77,111,110,116,104,40,41,44,111,46,100,61,114,46,103,101,116,68,97,116,101,40,41,43,40,111,46,119,43,54,41,37,55,41,125,101,108,115,101,40,34,87,34,105,110,32,111,124,124,34,85,34,105,110,32,111,41,38,38,40,34,119,34,105,110,32,111,124,124,40,111,46,119,61,34,117,34,105,110,32,111,63,111,46,117,37,55,58,34,87,34,105,110,32,111,63,49,58,48,41,44,105,61,34,90,34,105,110,32,111,63,116,99,40,101,99,40,111,46,121,44,48,44,49,41,41,46,103,101,116,85,84,67,68,97,121,40,41,58,81,115,40,101,99,40,111,46,121,44,48,44,49,41,41,46,103,101,116,68,97,121,40,41,44,111,46,109,61,48,44,111,46,100,61,34,87,34,105,110,32,111,63,40,111,46,119,43,54,41,37,55,43,55,42,111,46,87,45,40,105,43,53,41,37,55,58,111,46,119,43,55,42,111,46,85,45,40,105,43,54,41,37,55,41,59,114,101,116,117,114,110,34,90,34,105,110,32,111,63,40,111,46,72,43,61,111,46,90,47,49,48,48,124,48,44,111,46,77,43,61,111,46,90,37,49,48,48,44,116,99,40,111,41,41,58,81,115,40,111,41,125,125,102,117,110,99,116,105,111,110,32,83,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,61,48,44,115,61,101,46,108,101,110,103,116,104,44,99,61,110,46,108,101,110,103,116,104,59,119,104,105,108,101,40,97,60,115,41,123,105,102,40,114,62,61,99,41,114,101,116,117,114,110,45,49,59,105,102,40,105,61,101,46,99,104,97,114,67,111,100,101,65,116,40,97,43,43,41,44,51,55,61,61,61,105,41,123,105,102,40,105,61,101,46,99,104,97,114,65,116,40,97,43,43,41,44,111,61,95,91,105,32,105,110,32,97,99,63,101,46,99,104,97,114,65,116,40,97,43,43,41,58,105,93,44,33,111,124,124,40,114,61,111,40,116,44,110,44,114,41,41,60,48,41,114,101,116,117,114,110,45,49,125,101,108,115,101,32,105,102,40,105,33,61,110,46,99,104,97,114,67,111,100,101,65,116,40,114,43,43,41,41,114,101,116,117,114,110,45,49,125,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,107,40,116,44,101,44,110,41,123,118,97,114,32,114,61,117,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,112,61,108,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,67,40,116,44,101,44,110,41,123,118,97,114,32,114,61,100,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,119,61,112,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,80,40,116,44,101,44,110,41,123,118,97,114,32,114,61,102,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,119,61,104,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,84,40,116,44,101,44,110,41,123,118,97,114,32,114,61,109,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,98,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,106,40,116,44,101,44,110,41,123,118,97,114,32,114,61,118,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,103,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,69,40,116,44,110,44,114,41,123,114,101,116,117,114,110,32,83,40,116,44,101,44,110,44,114,41,125,102,117,110,99,116,105,111,110,32,68,40,116,44,101,44,114,41,123,114,101,116,117,114,110,32,83,40,116,44,110,44,101,44,114,41,125,102,117,110,99,116,105,111,110,32,65,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,83,40,116,44,114,44,101,44,110,41,125,102,117,110,99,116,105,111,110,32,76,40,116,41,123,114,101,116,117,114,110,32,97,91,116,46,103,101,116,68,97,121,40,41,93,125,102,117,110,99,116,105,111,110,32,73,40,116,41,123,114,101,116,117,114,110,32,111,91,116,46,103,101,116,68,97,121,40,41,93,125,102,117,110,99,116,105,111,110,32,77,40,116,41,123,114,101,116,117,114,110,32,99,91,116,46,103,101,116,77,111,110,116,104,40,41,93,125,102,117,110,99,116,105,111,110,32,36,40,116,41,123,114,101,116,117,114,110,32,115,91,116,46,103,101,116,77,111,110,116,104,40,41,93,125,102,117,110,99,116,105,111,110,32,70,40,116,41,123,114,101,116,117,114,110,32,105,91,43,40,116,46,103,101,116,72,111,117,114,115,40,41,62,61,49,50,41,93,125,102,117,110,99,116,105,111,110,32,82,40,116,41,123,114,101,116,117,114,110,32,49,43,126,126,40,116,46,103,101,116,77,111,110,116,104,40,41,47,51,41,125,102,117,110,99,116,105,111,110,32,78,40,116,41,123,114,101,116,117,114,110,32,97,91,116,46,103,101,116,85,84,67,68,97,121,40,41,93,125,102,117,110,99,116,105,111,110,32,66,40,116,41,123,114,101,116,117,114,110,32,111,91,116,46,103,101,116,85,84,67,68,97,121,40,41,93,125,102,117,110,99,116,105,111,110,32,122,40,116,41,123,114,101,116,117,114,110,32,99,91,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,93,125,102,117,110,99,116,105,111,110,32,86,40,116,41,123,114,101,116,117,114,110,32,115,91,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,93,125,102,117,110,99,116,105,111,110,32,72,40,116,41,123,114,101,116,117,114,110,32,105,91,43,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,62,61,49,50,41,93,125,102,117,110,99,116,105,111,110,32,85,40,116,41,123,114,101,116,117,114,110,32,49,43,126,126,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,47,51,41,125,114,101,116,117,114,110,32,121,46,120,61,120,40,110,44,121,41,44,121,46,88,61,120,40,114,44,121,41,44,121,46,99,61,120,40,101,44,121,41,44,119,46,120,61,120,40,110,44,119,41,44,119,46,88,61,120,40,114,44,119,41,44,119,46,99,61,120,40,101,44,119,41,44,123,102,111,114,109,97,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,120,40,116,43,61,34,34,44,121,41,59,114,101,116,117,114,110,32,101,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,101,125,44,112,97,114,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,79,40,116,43,61,34,34,44,33,49,41,59,114,101,116,117,114,110,32,101,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,101,125,44,117,116,99,70,111,114,109,97,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,120,40,116,43,61,34,34,44,119,41,59,114,101,116,117,114,110,32,101,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,101,125,44,117,116,99,80,97,114,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,79,40,116,43,61,34,34,44,33,48,41,59,114,101,116,117,114,110,32,101,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,101,125,125,125,118,97,114,32,114,99,44,105,99,44,111,99,44,97,99,61,123,34,45,34,58,34,34,44,95,58,34,32,34,44,48,58,34,48,34,125,44,115,99,61,47,94,92,115,42,92,100,43,47,44,99,99,61,47,94,37,47,44,117,99,61,47,91,92,92,94,36,42,43,63,124,91,92,93,40,41,46,123,125,93,47,103,59,102,117,110,99,116,105,111,110,32,108,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,60,48,63,34,45,34,58,34,34,44,105,61,40,114,63,45,116,58,116,41,43,34,34,44,111,61,105,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,43,40,111,60,110,63,110,101,119,32,65,114,114,97,121,40,110,45,111,43,49,41,46,106,111,105,110,40,101,41,43,105,58,105,41,125,102,117,110,99,116,105,111,110,32,102,99,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,117,99,44,34,92,92,36,38,34,41,125,102,117,110,99,116,105,111,110,32,104,99,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,82,101,103,69,120,112,40,34,94,40,63,58,34,43,116,46,109,97,112,40,102,99,41,46,106,111,105,110,40,34,124,34,41,43,34,41,34,44,34,105,34,41,125,102,117,110,99,116,105,111,110,32,100,99,40,116,41,123,118,97,114,32,101,61,123,125,44,110,61,45,49,44,114,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,110,60,114,41,101,91,116,91,110,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,110,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,112,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,49,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,119,61,43,114,91,48,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,118,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,49,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,117,61,43,114,91,48,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,103,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,85,61,43,114,91,48,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,109,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,86,61,43,114,91,48,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,98,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,87,61,43,114,91,48,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,121,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,52,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,121,61,43,114,91,48,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,119,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,121,61,43,114,91,48,93,43,40,43,114,91,48,93,62,54,56,63,49,57,48,48,58,50,101,51,41,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,95,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,47,94,40,90,41,124,40,91,43,45,93,92,100,92,100,41,40,63,58,58,63,40,92,100,92,100,41,41,63,47,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,54,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,90,61,114,91,49,93,63,48,58,45,40,114,91,50,93,43,40,114,91,51,93,124,124,34,48,48,34,41,41,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,120,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,49,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,113,61,51,42,114,91,48,93,45,51,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,79,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,114,91,48,93,45,49,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,83,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,100,61,43,114,91,48,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,107,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,51,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,48,44,116,46,100,61,43,114,91,48,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,67,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,72,61,43,114,91,48,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,80,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,77,61,43,114,91,48,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,84,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,83,61,43,114,91,48,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,106,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,51,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,76,61,43,114,91,48,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,69,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,54,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,76,61,77,97,116,104,46,102,108,111,111,114,40,114,91,48,93,47,49,101,51,41,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,68,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,99,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,44,110,43,49,41,41,59,114,101,116,117,114,110,32,114,63,110,43,114,91,48,93,46,108,101,110,103,116,104,58,45,49,125,102,117,110,99,116,105,111,110,32,65,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,81,61,43,114,91,48,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,76,99,40,116,44,101,44,110,41,123,118,97,114,32,114,61,115,99,46,101,120,101,99,40,101,46,115,108,105,99,101,40,110,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,115,61,43,114,91,48,93,44,110,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,73,99,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,68,97,116,101,40,41,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,77,99,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,72,111,117,114,115,40,41,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,36,99,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,72,111,117,114,115,40,41,37,49,50,124,124,49,50,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,70,99,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,49,43,89,115,46,99,111,117,110,116,40,88,115,40,116,41,44,116,41,44,101,44,51,41,125,102,117,110,99,116,105,111,110,32,82,99,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,44,101,44,51,41,125,102,117,110,99,116,105,111,110,32,78,99,40,116,44,101,41,123,114,101,116,117,114,110,32,82,99,40,116,44,101,41,43,34,48,48,48,34,125,102,117,110,99,116,105,111,110,32,66,99,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,77,111,110,116,104,40,41,43,49,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,122,99,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,77,105,110,117,116,101,115,40,41,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,86,99,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,83,101,99,111,110,100,115,40,41,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,72,99,40,116,41,123,118,97,114,32,101,61,116,46,103,101,116,68,97,121,40,41,59,114,101,116,117,114,110,32,48,61,61,61,101,63,55,58,101,125,102,117,110,99,116,105,111,110,32,85,99,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,66,115,46,99,111,117,110,116,40,88,115,40,116,41,45,49,44,116,41,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,87,99,40,116,41,123,118,97,114,32,101,61,116,46,103,101,116,68,97,121,40,41,59,114,101,116,117,114,110,32,101,62,61,52,124,124,48,61,61,61,101,63,85,115,40,116,41,58,85,115,46,99,101,105,108,40,116,41,125,102,117,110,99,116,105,111,110,32,71,99,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,87,99,40,116,41,44,108,99,40,85,115,46,99,111,117,110,116,40,88,115,40,116,41,44,116,41,43,40,52,61,61,61,88,115,40,116,41,46,103,101,116,68,97,121,40,41,41,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,113,99,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,68,97,121,40,41,125,102,117,110,99,116,105,111,110,32,89,99,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,122,115,46,99,111,117,110,116,40,88,115,40,116,41,45,49,44,116,41,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,75,99,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,37,49,48,48,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,88,99,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,87,99,40,116,41,44,108,99,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,37,49,48,48,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,90,99,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,37,49,101,52,44,101,44,52,41,125,102,117,110,99,116,105,111,110,32,74,99,40,116,44,101,41,123,118,97,114,32,110,61,116,46,103,101,116,68,97,121,40,41,59,114,101,116,117,114,110,32,116,61,110,62,61,52,124,124,48,61,61,61,110,63,85,115,40,116,41,58,85,115,46,99,101,105,108,40,116,41,44,108,99,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,37,49,101,52,44,101,44,52,41,125,102,117,110,99,116,105,111,110,32,81,99,40,116,41,123,118,97,114,32,101,61,116,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,59,114,101,116,117,114,110,40,101,62,48,63,34,45,34,58,40,101,42,61,45,49,44,34,43,34,41,41,43,108,99,40,101,47,54,48,124,48,44,34,48,34,44,50,41,43,108,99,40,101,37,54,48,44,34,48,34,44,50,41,125,102,117,110,99,116,105,111,110,32,116,117,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,101,117,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,110,117,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,37,49,50,124,124,49,50,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,114,117,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,49,43,82,115,46,99,111,117,110,116,40,74,115,40,116,41,44,116,41,44,101,44,51,41,125,102,117,110,99,116,105,111,110,32,105,117,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,41,44,101,44,51,41,125,102,117,110,99,116,105,111,110,32,111,117,40,116,44,101,41,123,114,101,116,117,114,110,32,105,117,40,116,44,101,41,43,34,48,48,48,34,125,102,117,110,99,116,105,111,110,32,97,117,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,49,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,115,117,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,99,117,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,117,117,40,116,41,123,118,97,114,32,101,61,116,46,103,101,116,85,84,67,68,97,121,40,41,59,114,101,116,117,114,110,32,48,61,61,61,101,63,55,58,101,125,102,117,110,99,116,105,111,110,32,108,117,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,69,115,46,99,111,117,110,116,40,74,115,40,116,41,45,49,44,116,41,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,102,117,40,116,41,123,118,97,114,32,101,61,116,46,103,101,116,85,84,67,68,97,121,40,41,59,114,101,116,117,114,110,32,101,62,61,52,124,124,48,61,61,61,101,63,73,115,40,116,41,58,73,115,46,99,101,105,108,40,116,41,125,102,117,110,99,116,105,111,110,32,104,117,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,102,117,40,116,41,44,108,99,40,73,115,46,99,111,117,110,116,40,74,115,40,116,41,44,116,41,43,40,52,61,61,61,74,115,40,116,41,46,103,101,116,85,84,67,68,97,121,40,41,41,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,100,117,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,68,97,121,40,41,125,102,117,110,99,116,105,111,110,32,112,117,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,68,115,46,99,111,117,110,116,40,74,115,40,116,41,45,49,44,116,41,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,118,117,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,37,49,48,48,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,103,117,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,102,117,40,116,41,44,108,99,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,37,49,48,48,44,101,44,50,41,125,102,117,110,99,116,105,111,110,32,109,117,40,116,44,101,41,123,114,101,116,117,114,110,32,108,99,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,37,49,101,52,44,101,44,52,41,125,102,117,110,99,116,105,111,110,32,98,117,40,116,44,101,41,123,118,97,114,32,110,61,116,46,103,101,116,85,84,67,68,97,121,40,41,59,114,101,116,117,114,110,32,116,61,110,62,61,52,124,124,48,61,61,61,110,63,73,115,40,116,41,58,73,115,46,99,101,105,108,40,116,41,44,108,99,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,37,49,101,52,44,101,44,52,41,125,102,117,110,99,116,105,111,110,32,121,117,40,41,123,114,101,116,117,114,110,34,43,48,48,48,48,34,125,102,117,110,99,116,105,111,110,32,119,117,40,41,123,114,101,116,117,114,110,34,37,34,125,102,117,110,99,116,105,111,110,32,95,117,40,116,41,123,114,101,116,117,114,110,43,116,125,102,117,110,99,116,105,111,110,32,120,117,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,102,108,111,111,114,40,43,116,47,49,101,51,41,125,102,117,110,99,116,105,111,110,32,79,117,40,116,41,123,114,101,116,117,114,110,32,114,99,61,110,99,40,116,41,44,105,99,61,114,99,46,102,111,114,109,97,116,44,114,99,46,112,97,114,115,101,44,114,99,46,117,116,99,70,111,114,109,97,116,44,111,99,61,114,99,46,117,116,99,80,97,114,115,101,44,114,99,125,102,117,110,99,116,105,111,110,32,83,117,40,41,123,116,104,105,115,46,95,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,107,117,40,116,41,123,116,46,85,61,116,46,67,61,116,46,76,61,116,46,82,61,116,46,80,61,116,46,78,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,67,117,40,116,44,101,41,123,118,97,114,32,110,61,101,44,114,61,101,46,82,44,105,61,110,46,85,59,105,63,105,46,76,61,61,61,110,63,105,46,76,61,114,58,105,46,82,61,114,58,116,46,95,61,114,44,114,46,85,61,105,44,110,46,85,61,114,44,110,46,82,61,114,46,76,44,110,46,82,38,38,40,110,46,82,46,85,61,110,41,44,114,46,76,61,110,125,102,117,110,99,116,105,111,110,32,80,117,40,116,44,101,41,123,118,97,114,32,110,61,101,44,114,61,101,46,76,44,105,61,110,46,85,59,105,63,105,46,76,61,61,61,110,63,105,46,76,61,114,58,105,46,82,61,114,58,116,46,95,61,114,44,114,46,85,61,105,44,110,46,85,61,114,44,110,46,76,61,114,46,82,44,110,46,76,38,38,40,110,46,76,46,85,61,110,41,44,114,46,82,61,110,125,102,117,110,99,116,105,111,110,32,84,117,40,116,41,123,119,104,105,108,101,40,116,46,76,41,116,61,116,46,76,59,114,101,116,117,114,110,32,116,125,79,117,40,123,100,97,116,101,84,105,109,101,58,34,37,120,44,32,37,88,34,44,100,97,116,101,58,34,37,45,109,47,37,45,100,47,37,89,34,44,116,105,109,101,58,34,37,45,73,58,37,77,58,37,83,32,37,112,34,44,112,101,114,105,111,100,115,58,91,34,65,77,34,44,34,80,77,34,93,44,100,97,121,115,58,91,34,83,117,110,100,97,121,34,44,34,77,111,110,100,97,121,34,44,34,84,117,101,115,100,97,121,34,44,34,87,101,100,110,101,115,100,97,121,34,44,34,84,104,117,114,115,100,97,121,34,44,34,70,114,105,100,97,121,34,44,34,83,97,116,117,114,100,97,121,34,93,44,115,104,111,114,116,68,97,121,115,58,91,34,83,117,110,34,44,34,77,111,110,34,44,34,84,117,101,34,44,34,87,101,100,34,44,34,84,104,117,34,44,34,70,114,105,34,44,34,83,97,116,34,93,44,109,111,110,116,104,115,58,91,34,74,97,110,117,97,114,121,34,44,34,70,101,98,114,117,97,114,121,34,44,34,77,97,114,99,104,34,44,34,65,112,114,105,108,34,44,34,77,97,121,34,44,34,74,117,110,101,34,44,34,74,117,108,121,34,44,34,65,117,103,117,115,116,34,44,34,83,101,112,116,101,109,98,101,114,34,44,34,79,99,116,111,98,101,114,34,44,34,78,111,118,101,109,98,101,114,34,44,34,68,101,99,101,109,98,101,114,34,93,44,115,104,111,114,116,77,111,110,116,104,115,58,91,34,74,97,110,34,44,34,70,101,98,34,44,34,77,97,114,34,44,34,65,112,114,34,44,34,77,97,121,34,44,34,74,117,110,34,44,34,74,117,108,34,44,34,65,117,103,34,44,34,83,101,112,34,44,34,79,99,116,34,44,34,78,111,118,34,44,34,68,101,99,34,93,125,41,44,83,117,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,83,117,44,105,110,115,101,114,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,44,105,59,105,102,40,116,41,123,105,102,40,101,46,80,61,116,44,101,46,78,61,116,46,78,44,116,46,78,38,38,40,116,46,78,46,80,61,101,41,44,116,46,78,61,101,44,116,46,82,41,123,116,61,116,46,82,59,119,104,105,108,101,40,116,46,76,41,116,61,116,46,76,59,116,46,76,61,101,125,101,108,115,101,32,116,46,82,61,101,59,110,61,116,125,101,108,115,101,32,116,104,105,115,46,95,63,40,116,61,84,117,40,116,104,105,115,46,95,41,44,101,46,80,61,110,117,108,108,44,101,46,78,61,116,44,116,46,80,61,116,46,76,61,101,44,110,61,116,41,58,40,101,46,80,61,101,46,78,61,110,117,108,108,44,116,104,105,115,46,95,61,101,44,110,61,110,117,108,108,41,59,101,46,76,61,101,46,82,61,110,117,108,108,44,101,46,85,61,110,44,101,46,67,61,33,48,44,116,61,101,59,119,104,105,108,101,40,110,38,38,110,46,67,41,114,61,110,46,85,44,110,61,61,61,114,46,76,63,40,105,61,114,46,82,44,105,38,38,105,46,67,63,40,110,46,67,61,105,46,67,61,33,49,44,114,46,67,61,33,48,44,116,61,114,41,58,40,116,61,61,61,110,46,82,38,38,40,67,117,40,116,104,105,115,44,110,41,44,116,61,110,44,110,61,116,46,85,41,44,110,46,67,61,33,49,44,114,46,67,61,33,48,44,80,117,40,116,104,105,115,44,114,41,41,41,58,40,105,61,114,46,76,44,105,38,38,105,46,67,63,40,110,46,67,61,105,46,67,61,33,49,44,114,46,67,61,33,48,44,116,61,114,41,58,40,116,61,61,61,110,46,76,38,38,40,80,117,40,116,104,105,115,44,110,41,44,116,61,110,44,110,61,116,46,85,41,44,110,46,67,61,33,49,44,114,46,67,61,33,48,44,67,117,40,116,104,105,115,44,114,41,41,41,44,110,61,116,46,85,59,116,104,105,115,46,95,46,67,61,33,49,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,78,38,38,40,116,46,78,46,80,61,116,46,80,41,44,116,46,80,38,38,40,116,46,80,46,78,61,116,46,78,41,44,116,46,78,61,116,46,80,61,110,117,108,108,59,118,97,114,32,101,44,110,44,114,44,105,61,116,46,85,44,111,61,116,46,76,44,97,61,116,46,82,59,105,102,40,110,61,111,63,97,63,84,117,40,97,41,58,111,58,97,44,105,63,105,46,76,61,61,61,116,63,105,46,76,61,110,58,105,46,82,61,110,58,116,104,105,115,46,95,61,110,44,111,38,38,97,63,40,114,61,110,46,67,44,110,46,67,61,116,46,67,44,110,46,76,61,111,44,111,46,85,61,110,44,110,33,61,61,97,63,40,105,61,110,46,85,44,110,46,85,61,116,46,85,44,116,61,110,46,82,44,105,46,76,61,116,44,110,46,82,61,97,44,97,46,85,61,110,41,58,40,110,46,85,61,105,44,105,61,110,44,116,61,110,46,82,41,41,58,40,114,61,116,46,67,44,116,61,110,41,44,116,38,38,40,116,46,85,61,105,41,44,33,114,41,105,102,40,116,38,38,116,46,67,41,116,46,67,61,33,49,59,101,108,115,101,123,100,111,123,105,102,40,116,61,61,61,116,104,105,115,46,95,41,98,114,101,97,107,59,105,102,40,116,61,61,61,105,46,76,41,123,105,102,40,101,61,105,46,82,44,101,46,67,38,38,40,101,46,67,61,33,49,44,105,46,67,61,33,48,44,67,117,40,116,104,105,115,44,105,41,44,101,61,105,46,82,41,44,101,46,76,38,38,101,46,76,46,67,124,124,101,46,82,38,38,101,46,82,46,67,41,123,101,46,82,38,38,101,46,82,46,67,124,124,40,101,46,76,46,67,61,33,49,44,101,46,67,61,33,48,44,80,117,40,116,104,105,115,44,101,41,44,101,61,105,46,82,41,44,101,46,67,61,105,46,67,44,105,46,67,61,101,46,82,46,67,61,33,49,44,67,117,40,116,104,105,115,44,105,41,44,116,61,116,104,105,115,46,95,59,98,114,101,97,107,125,125,101,108,115,101,32,105,102,40,101,61,105,46,76,44,101,46,67,38,38,40,101,46,67,61,33,49,44,105,46,67,61,33,48,44,80,117,40,116,104,105,115,44,105,41,44,101,61,105,46,76,41,44,101,46,76,38,38,101,46,76,46,67,124,124,101,46,82,38,38,101,46,82,46,67,41,123,101,46,76,38,38,101,46,76,46,67,124,124,40,101,46,82,46,67,61,33,49,44,101,46,67,61,33,48,44,67,117,40,116,104,105,115,44,101,41,44,101,61,105,46,76,41,44,101,46,67,61,105,46,67,44,105,46,67,61,101,46,76,46,67,61,33,49,44,80,117,40,116,104,105,115,44,105,41,44,116,61,116,104,105,115,46,95,59,98,114,101,97,107,125,101,46,67,61,33,48,44,116,61,105,44,105,61,105,46,85,125,119,104,105,108,101,40,33,116,46,67,41,59,116,38,38,40,116,46,67,61,33,49,41,125,125,125,59,118,97,114,32,106,117,61,83,117,59,102,117,110,99,116,105,111,110,32,69,117,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,91,110,117,108,108,44,110,117,108,108,93,44,111,61,105,108,46,112,117,115,104,40,105,41,45,49,59,114,101,116,117,114,110,32,105,46,108,101,102,116,61,116,44,105,46,114,105,103,104,116,61,101,44,110,38,38,65,117,40,105,44,116,44,101,44,110,41,44,114,38,38,65,117,40,105,44,101,44,116,44,114,41,44,110,108,91,116,46,105,110,100,101,120,93,46,104,97,108,102,101,100,103,101,115,46,112,117,115,104,40,111,41,44,110,108,91,101,46,105,110,100,101,120,93,46,104,97,108,102,101,100,103,101,115,46,112,117,115,104,40,111,41,44,105,125,102,117,110,99,116,105,111,110,32,68,117,40,116,44,101,44,110,41,123,118,97,114,32,114,61,91,101,44,110,93,59,114,101,116,117,114,110,32,114,46,108,101,102,116,61,116,44,114,125,102,117,110,99,116,105,111,110,32,65,117,40,116,44,101,44,110,44,114,41,123,116,91,48,93,124,124,116,91,49,93,63,116,46,108,101,102,116,61,61,61,110,63,116,91,49,93,61,114,58,116,91,48,93,61,114,58,40,116,91,48,93,61,114,44,116,46,108,101,102,116,61,101,44,116,46,114,105,103,104,116,61,110,41,125,102,117,110,99,116,105,111,110,32,76,117,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,61,116,91,48,93,44,115,61,116,91,49,93,44,99,61,97,91,48,93,44,117,61,97,91,49,93,44,108,61,115,91,48,93,44,102,61,115,91,49,93,44,104,61,48,44,100,61,49,44,112,61,108,45,99,44,118,61,102,45,117,59,105,102,40,111,61,101,45,99,44,112,124,124,33,40,111,62,48,41,41,123,105,102,40,111,47,61,112,44,112,60,48,41,123,105,102,40,111,60,104,41,114,101,116,117,114,110,59,111,60,100,38,38,40,100,61,111,41,125,101,108,115,101,32,105,102,40,112,62,48,41,123,105,102,40,111,62,100,41,114,101,116,117,114,110,59,111,62,104,38,38,40,104,61,111,41,125,105,102,40,111,61,114,45,99,44,112,124,124,33,40,111,60,48,41,41,123,105,102,40,111,47,61,112,44,112,60,48,41,123,105,102,40,111,62,100,41,114,101,116,117,114,110,59,111,62,104,38,38,40,104,61,111,41,125,101,108,115,101,32,105,102,40,112,62,48,41,123,105,102,40,111,60,104,41,114,101,116,117,114,110,59,111,60,100,38,38,40,100,61,111,41,125,105,102,40,111,61,110,45,117,44,118,124,124,33,40,111,62,48,41,41,123,105,102,40,111,47,61,118,44,118,60,48,41,123,105,102,40,111,60,104,41,114,101,116,117,114,110,59,111,60,100,38,38,40,100,61,111,41,125,101,108,115,101,32,105,102,40,118,62,48,41,123,105,102,40,111,62,100,41,114,101,116,117,114,110,59,111,62,104,38,38,40,104,61,111,41,125,105,102,40,111,61,105,45,117,44,118,124,124,33,40,111,60,48,41,41,123,105,102,40,111,47,61,118,44,118,60,48,41,123,105,102,40,111,62,100,41,114,101,116,117,114,110,59,111,62,104,38,38,40,104,61,111,41,125,101,108,115,101,32,105,102,40,118,62,48,41,123,105,102,40,111,60,104,41,114,101,116,117,114,110,59,111,60,100,38,38,40,100,61,111,41,125,114,101,116,117,114,110,33,40,104,62,48,124,124,100,60,49,41,124,124,40,104,62,48,38,38,40,116,91,48,93,61,91,99,43,104,42,112,44,117,43,104,42,118,93,41,44,100,60,49,38,38,40,116,91,49,93,61,91,99,43,100,42,112,44,117,43,100,42,118,93,41,44,33,48,41,125,125,125,125,125,102,117,110,99,116,105,111,110,32,73,117,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,116,91,49,93,59,105,102,40,111,41,114,101,116,117,114,110,33,48,59,118,97,114,32,97,44,115,44,99,61,116,91,48,93,44,117,61,116,46,108,101,102,116,44,108,61,116,46,114,105,103,104,116,44,102,61,117,91,48,93,44,104,61,117,91,49,93,44,100,61,108,91,48,93,44,112,61,108,91,49,93,44,118,61,40,102,43,100,41,47,50,44,103,61,40,104,43,112,41,47,50,59,105,102,40,112,61,61,61,104,41,123,105,102,40,118,60,101,124,124,118,62,61,114,41,114,101,116,117,114,110,59,105,102,40,102,62,100,41,123,105,102,40,99,41,123,105,102,40,99,91,49,93,62,61,105,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,118,44,110,93,59,111,61,91,118,44,105,93,125,101,108,115,101,123,105,102,40,99,41,123,105,102,40,99,91,49,93,60,110,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,118,44,105,93,59,111,61,91,118,44,110,93,125,125,101,108,115,101,32,105,102,40,97,61,40,102,45,100,41,47,40,112,45,104,41,44,115,61,103,45,97,42,118,44,97,60,45,49,124,124,97,62,49,41,105,102,40,102,62,100,41,123,105,102,40,99,41,123,105,102,40,99,91,49,93,62,61,105,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,40,110,45,115,41,47,97,44,110,93,59,111,61,91,40,105,45,115,41,47,97,44,105,93,125,101,108,115,101,123,105,102,40,99,41,123,105,102,40,99,91,49,93,60,110,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,40,105,45,115,41,47,97,44,105,93,59,111,61,91,40,110,45,115,41,47,97,44,110,93,125,101,108,115,101,32,105,102,40,104,60,112,41,123,105,102,40,99,41,123,105,102,40,99,91,48,93,62,61,114,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,101,44,97,42,101,43,115,93,59,111,61,91,114,44,97,42,114,43,115,93,125,101,108,115,101,123,105,102,40,99,41,123,105,102,40,99,91,48,93,60,101,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,114,44,97,42,114,43,115,93,59,111,61,91,101,44,97,42,101,43,115,93,125,114,101,116,117,114,110,32,116,91,48,93,61,99,44,116,91,49,93,61,111,44,33,48,125,102,117,110,99,116,105,111,110,32,77,117,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,44,111,61,105,108,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,73,117,40,105,61,105,108,91,111,93,44,116,44,101,44,110,44,114,41,38,38,76,117,40,105,44,116,44,101,44,110,44,114,41,38,38,40,77,97,116,104,46,97,98,115,40,105,91,48,93,91,48,93,45,105,91,49,93,91,48,93,41,62,111,108,124,124,77,97,116,104,46,97,98,115,40,105,91,48,93,91,49,93,45,105,91,49,93,91,49,93,41,62,111,108,41,124,124,100,101,108,101,116,101,32,105,108,91,111,93,125,102,117,110,99,116,105,111,110,32,36,117,40,116,41,123,114,101,116,117,114,110,32,110,108,91,116,46,105,110,100,101,120,93,61,123,115,105,116,101,58,116,44,104,97,108,102,101,100,103,101,115,58,91,93,125,125,102,117,110,99,116,105,111,110,32,70,117,40,116,44,101,41,123,118,97,114,32,110,61,116,46,115,105,116,101,44,114,61,101,46,108,101,102,116,44,105,61,101,46,114,105,103,104,116,59,114,101,116,117,114,110,32,110,61,61,61,105,38,38,40,105,61,114,44,114,61,110,41,44,105,63,77,97,116,104,46,97,116,97,110,50,40,105,91,49,93,45,114,91,49,93,44,105,91,48,93,45,114,91,48,93,41,58,40,110,61,61,61,114,63,40,114,61,101,91,49,93,44,105,61,101,91,48,93,41,58,40,114,61,101,91,48,93,44,105,61,101,91,49,93,41,44,77,97,116,104,46,97,116,97,110,50,40,114,91,48,93,45,105,91,48,93,44,105,91,49,93,45,114,91,49,93,41,41,125,102,117,110,99,116,105,111,110,32,82,117,40,116,44,101,41,123,114,101,116,117,114,110,32,101,91,43,40,101,46,108,101,102,116,33,61,61,116,46,115,105,116,101,41,93,125,102,117,110,99,116,105,111,110,32,78,117,40,116,44,101,41,123,114,101,116,117,114,110,32,101,91,43,40,101,46,108,101,102,116,61,61,61,116,46,115,105,116,101,41,93,125,102,117,110,99,116,105,111,110,32,66,117,40,41,123,102,111,114,40,118,97,114,32,116,44,101,44,110,44,114,44,105,61,48,44,111,61,110,108,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,105,102,40,40,116,61,110,108,91,105,93,41,38,38,40,114,61,40,101,61,116,46,104,97,108,102,101,100,103,101,115,41,46,108,101,110,103,116,104,41,41,123,118,97,114,32,97,61,110,101,119,32,65,114,114,97,121,40,114,41,44,115,61,110,101,119,32,65,114,114,97,121,40,114,41,59,102,111,114,40,110,61,48,59,110,60,114,59,43,43,110,41,97,91,110,93,61,110,44,115,91,110,93,61,70,117,40,116,44,105,108,91,101,91,110,93,93,41,59,102,111,114,40,97,46,115,111,114,116,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,115,91,101,93,45,115,91,116,93,125,41,41,44,110,61,48,59,110,60,114,59,43,43,110,41,115,91,110,93,61,101,91,97,91,110,93,93,59,102,111,114,40,110,61,48,59,110,60,114,59,43,43,110,41,101,91,110,93,61,115,91,110,93,125,125,102,117,110,99,116,105,111,110,32,122,117,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,99,44,117,44,108,44,102,44,104,44,100,44,112,44,118,44,103,61,110,108,46,108,101,110,103,116,104,44,109,61,33,48,59,102,111,114,40,105,61,48,59,105,60,103,59,43,43,105,41,105,102,40,111,61,110,108,91,105,93,41,123,97,61,111,46,115,105,116,101,44,99,61,111,46,104,97,108,102,101,100,103,101,115,44,115,61,99,46,108,101,110,103,116,104,59,119,104,105,108,101,40,115,45,45,41,105,108,91,99,91,115,93,93,124,124,99,46,115,112,108,105,99,101,40,115,44,49,41,59,115,61,48,44,117,61,99,46,108,101,110,103,116,104,59,119,104,105,108,101,40,115,60,117,41,100,61,78,117,40,111,44,105,108,91,99,91,115,93,93,41,44,112,61,100,91,48,93,44,118,61,100,91,49,93,44,108,61,82,117,40,111,44,105,108,91,99,91,43,43,115,37,117,93,93,41,44,102,61,108,91,48,93,44,104,61,108,91,49,93,44,40,77,97,116,104,46,97,98,115,40,112,45,102,41,62,111,108,124,124,77,97,116,104,46,97,98,115,40,118,45,104,41,62,111,108,41,38,38,40,99,46,115,112,108,105,99,101,40,115,44,48,44,105,108,46,112,117,115,104,40,68,117,40,97,44,100,44,77,97,116,104,46,97,98,115,40,112,45,116,41,60,111,108,38,38,114,45,118,62,111,108,63,91,116,44,77,97,116,104,46,97,98,115,40,102,45,116,41,60,111,108,63,104,58,114,93,58,77,97,116,104,46,97,98,115,40,118,45,114,41,60,111,108,38,38,110,45,112,62,111,108,63,91,77,97,116,104,46,97,98,115,40,104,45,114,41,60,111,108,63,102,58,110,44,114,93,58,77,97,116,104,46,97,98,115,40,112,45,110,41,60,111,108,38,38,118,45,101,62,111,108,63,91,110,44,77,97,116,104,46,97,98,115,40,102,45,110,41,60,111,108,63,104,58,101,93,58,77,97,116,104,46,97,98,115,40,118,45,101,41,60,111,108,38,38,112,45,116,62,111,108,63,91,77,97,116,104,46,97,98,115,40,104,45,101,41,60,111,108,63,102,58,116,44,101,93,58,110,117,108,108,41,41,45,49,41,44,43,43,117,41,59,117,38,38,40,109,61,33,49,41,125,105,102,40,109,41,123,118,97,114,32,98,44,121,44,119,44,95,61,49,47,48,59,102,111,114,40,105,61,48,44,109,61,110,117,108,108,59,105,60,103,59,43,43,105,41,40,111,61,110,108,91,105,93,41,38,38,40,97,61,111,46,115,105,116,101,44,98,61,97,91,48,93,45,116,44,121,61,97,91,49,93,45,101,44,119,61,98,42,98,43,121,42,121,44,119,60,95,38,38,40,95,61,119,44,109,61,111,41,41,59,105,102,40,109,41,123,118,97,114,32,120,61,91,116,44,101,93,44,79,61,91,116,44,114,93,44,83,61,91,110,44,114,93,44,107,61,91,110,44,101,93,59,109,46,104,97,108,102,101,100,103,101,115,46,112,117,115,104,40,105,108,46,112,117,115,104,40,68,117,40,97,61,109,46,115,105,116,101,44,120,44,79,41,41,45,49,44,105,108,46,112,117,115,104,40,68,117,40,97,44,79,44,83,41,41,45,49,44,105,108,46,112,117,115,104,40,68,117,40,97,44,83,44,107,41,41,45,49,44,105,108,46,112,117,115,104,40,68,117,40,97,44,107,44,120,41,41,45,49,41,125,125,102,111,114,40,105,61,48,59,105,60,103,59,43,43,105,41,40,111,61,110,108,91,105,93,41,38,38,40,111,46,104,97,108,102,101,100,103,101,115,46,108,101,110,103,116,104,124,124,100,101,108,101,116,101,32,110,108,91,105,93,41,125,118,97,114,32,86,117,44,72,117,61,91,93,59,102,117,110,99,116,105,111,110,32,85,117,40,41,123,107,117,40,116,104,105,115,41,44,116,104,105,115,46,120,61,116,104,105,115,46,121,61,116,104,105,115,46,97,114,99,61,116,104,105,115,46,115,105,116,101,61,116,104,105,115,46,99,121,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,87,117,40,116,41,123,118,97,114,32,101,61,116,46,80,44,110,61,116,46,78,59,105,102,40,101,38,38,110,41,123,118,97,114,32,114,61,101,46,115,105,116,101,44,105,61,116,46,115,105,116,101,44,111,61,110,46,115,105,116,101,59,105,102,40,114,33,61,61,111,41,123,118,97,114,32,97,61,105,91,48,93,44,115,61,105,91,49,93,44,99,61,114,91,48,93,45,97,44,117,61,114,91,49,93,45,115,44,108,61,111,91,48,93,45,97,44,102,61,111,91,49,93,45,115,44,104,61,50,42,40,99,42,102,45,117,42,108,41,59,105,102,40,33,40,104,62,61,45,97,108,41,41,123,118,97,114,32,100,61,99,42,99,43,117,42,117,44,112,61,108,42,108,43,102,42,102,44,118,61,40,102,42,100,45,117,42,112,41,47,104,44,103,61,40,99,42,112,45,108,42,100,41,47,104,44,109,61,72,117,46,112,111,112,40,41,124,124,110,101,119,32,85,117,59,109,46,97,114,99,61,116,44,109,46,115,105,116,101,61,105,44,109,46,120,61,118,43,97,44,109,46,121,61,40,109,46,99,121,61,103,43,115,41,43,77,97,116,104,46,115,113,114,116,40,118,42,118,43,103,42,103,41,44,116,46,99,105,114,99,108,101,61,109,59,118,97,114,32,98,61,110,117,108,108,44,121,61,114,108,46,95,59,119,104,105,108,101,40,121,41,105,102,40,109,46,121,60,121,46,121,124,124,109,46,121,61,61,61,121,46,121,38,38,109,46,120,60,61,121,46,120,41,123,105,102,40,33,121,46,76,41,123,98,61,121,46,80,59,98,114,101,97,107,125,121,61,121,46,76,125,101,108,115,101,123,105,102,40,33,121,46,82,41,123,98,61,121,59,98,114,101,97,107,125,121,61,121,46,82,125,114,108,46,105,110,115,101,114,116,40,98,44,109,41,44,98,124,124,40,86,117,61,109,41,125,125,125,125,102,117,110,99,116,105,111,110,32,71,117,40,116,41,123,118,97,114,32,101,61,116,46,99,105,114,99,108,101,59,101,38,38,40,101,46,80,124,124,40,86,117,61,101,46,78,41,44,114,108,46,114,101,109,111,118,101,40,101,41,44,72,117,46,112,117,115,104,40,101,41,44,107,117,40,101,41,44,116,46,99,105,114,99,108,101,61,110,117,108,108,41,125,118,97,114,32,113,117,61,91,93,59,102,117,110,99,116,105,111,110,32,89,117,40,41,123,107,117,40,116,104,105,115,41,44,116,104,105,115,46,101,100,103,101,61,116,104,105,115,46,115,105,116,101,61,116,104,105,115,46,99,105,114,99,108,101,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,75,117,40,116,41,123,118,97,114,32,101,61,113,117,46,112,111,112,40,41,124,124,110,101,119,32,89,117,59,114,101,116,117,114,110,32,101,46,115,105,116,101,61,116,44,101,125,102,117,110,99,116,105,111,110,32,88,117,40,116,41,123,71,117,40,116,41,44,101,108,46,114,101,109,111,118,101,40,116,41,44,113,117,46,112,117,115,104,40,116,41,44,107,117,40,116,41,125,102,117,110,99,116,105,111,110,32,90,117,40,116,41,123,118,97,114,32,101,61,116,46,99,105,114,99,108,101,44,110,61,101,46,120,44,114,61,101,46,99,121,44,105,61,91,110,44,114,93,44,111,61,116,46,80,44,97,61,116,46,78,44,115,61,91,116,93,59,88,117,40,116,41,59,118,97,114,32,99,61,111,59,119,104,105,108,101,40,99,46,99,105,114,99,108,101,38,38,77,97,116,104,46,97,98,115,40,110,45,99,46,99,105,114,99,108,101,46,120,41,60,111,108,38,38,77,97,116,104,46,97,98,115,40,114,45,99,46,99,105,114,99,108,101,46,99,121,41,60,111,108,41,111,61,99,46,80,44,115,46,117,110,115,104,105,102,116,40,99,41,44,88,117,40,99,41,44,99,61,111,59,115,46,117,110,115,104,105,102,116,40,99,41,44,71,117,40,99,41,59,118,97,114,32,117,61,97,59,119,104,105,108,101,40,117,46,99,105,114,99,108,101,38,38,77,97,116,104,46,97,98,115,40,110,45,117,46,99,105,114,99,108,101,46,120,41,60,111,108,38,38,77,97,116,104,46,97,98,115,40,114,45,117,46,99,105,114,99,108,101,46,99,121,41,60,111,108,41,97,61,117,46,78,44,115,46,112,117,115,104,40,117,41,44,88,117,40,117,41,44,117,61,97,59,115,46,112,117,115,104,40,117,41,44,71,117,40,117,41,59,118,97,114,32,108,44,102,61,115,46,108,101,110,103,116,104,59,102,111,114,40,108,61,49,59,108,60,102,59,43,43,108,41,117,61,115,91,108,93,44,99,61,115,91,108,45,49,93,44,65,117,40,117,46,101,100,103,101,44,99,46,115,105,116,101,44,117,46,115,105,116,101,44,105,41,59,99,61,115,91,48,93,44,117,61,115,91,102,45,49,93,44,117,46,101,100,103,101,61,69,117,40,99,46,115,105,116,101,44,117,46,115,105,116,101,44,110,117,108,108,44,105,41,44,87,117,40,99,41,44,87,117,40,117,41,125,102,117,110,99,116,105,111,110,32,74,117,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,44,111,61,116,91,48,93,44,97,61,116,91,49,93,44,115,61,101,108,46,95,59,119,104,105,108,101,40,115,41,105,102,40,114,61,81,117,40,115,44,97,41,45,111,44,114,62,111,108,41,115,61,115,46,76,59,101,108,115,101,123,105,102,40,105,61,111,45,116,108,40,115,44,97,41,44,33,40,105,62,111,108,41,41,123,114,62,45,111,108,63,40,101,61,115,46,80,44,110,61,115,41,58,105,62,45,111,108,63,40,101,61,115,44,110,61,115,46,78,41,58,101,61,110,61,115,59,98,114,101,97,107,125,105,102,40,33,115,46,82,41,123,101,61,115,59,98,114,101,97,107,125,115,61,115,46,82,125,36,117,40,116,41,59,118,97,114,32,99,61,75,117,40,116,41,59,105,102,40,101,108,46,105,110,115,101,114,116,40,101,44,99,41,44,101,124,124,110,41,123,105,102,40,101,61,61,61,110,41,114,101,116,117,114,110,32,71,117,40,101,41,44,110,61,75,117,40,101,46,115,105,116,101,41,44,101,108,46,105,110,115,101,114,116,40,99,44,110,41,44,99,46,101,100,103,101,61,110,46,101,100,103,101,61,69,117,40,101,46,115,105,116,101,44,99,46,115,105,116,101,41,44,87,117,40,101,41,44,118,111,105,100,32,87,117,40,110,41,59,105,102,40,110,41,123,71,117,40,101,41,44,71,117,40,110,41,59,118,97,114,32,117,61,101,46,115,105,116,101,44,108,61,117,91,48,93,44,102,61,117,91,49,93,44,104,61,116,91,48,93,45,108,44,100,61,116,91,49,93,45,102,44,112,61,110,46,115,105,116,101,44,118,61,112,91,48,93,45,108,44,103,61,112,91,49,93,45,102,44,109,61,50,42,40,104,42,103,45,100,42,118,41,44,98,61,104,42,104,43,100,42,100,44,121,61,118,42,118,43,103,42,103,44,119,61,91,40,103,42,98,45,100,42,121,41,47,109,43,108,44,40,104,42,121,45,118,42,98,41,47,109,43,102,93,59,65,117,40,110,46,101,100,103,101,44,117,44,112,44,119,41,44,99,46,101,100,103,101,61,69,117,40,117,44,116,44,110,117,108,108,44,119,41,44,110,46,101,100,103,101,61,69,117,40,116,44,112,44,110,117,108,108,44,119,41,44,87,117,40,101,41,44,87,117,40,110,41,125,101,108,115,101,32,99,46,101,100,103,101,61,69,117,40,101,46,115,105,116,101,44,99,46,115,105,116,101,41,125,125,102,117,110,99,116,105,111,110,32,81,117,40,116,44,101,41,123,118,97,114,32,110,61,116,46,115,105,116,101,44,114,61,110,91,48,93,44,105,61,110,91,49,93,44,111,61,105,45,101,59,105,102,40,33,111,41,114,101,116,117,114,110,32,114,59,118,97,114,32,97,61,116,46,80,59,105,102,40,33,97,41,114,101,116,117,114,110,45,49,47,48,59,110,61,97,46,115,105,116,101,59,118,97,114,32,115,61,110,91,48,93,44,99,61,110,91,49,93,44,117,61,99,45,101,59,105,102,40,33,117,41,114,101,116,117,114,110,32,115,59,118,97,114,32,108,61,115,45,114,44,102,61,49,47,111,45,49,47,117,44,104,61,108,47,117,59,114,101,116,117,114,110,32,102,63,40,45,104,43,77,97,116,104,46,115,113,114,116,40,104,42,104,45,50,42,102,42,40,108,42,108,47,40,45,50,42,117,41,45,99,43,117,47,50,43,105,45,111,47,50,41,41,41,47,102,43,114,58,40,114,43,115,41,47,50,125,102,117,110,99,116,105,111,110,32,116,108,40,116,44,101,41,123,118,97,114,32,110,61,116,46,78,59,105,102,40,110,41,114,101,116,117,114,110,32,81,117,40,110,44,101,41,59,118,97,114,32,114,61,116,46,115,105,116,101,59,114,101,116,117,114,110,32,114,91,49,93,61,61,61,101,63,114,91,48,93,58,49,47,48,125,118,97,114,32,101,108,44,110,108,44,114,108,44,105,108,44,111,108,61,49,101,45,54,44,97,108,61,49,101,45,49,50,59,102,117,110,99,116,105,111,110,32,115,108,40,116,44,101,44,110,41,123,114,101,116,117,114,110,40,116,91,48,93,45,110,91,48,93,41,42,40,101,91,49,93,45,116,91,49,93,41,45,40,116,91,48,93,45,101,91,48,93,41,42,40,110,91,49,93,45,116,91,49,93,41,125,102,117,110,99,116,105,111,110,32,99,108,40,116,44,101,41,123,114,101,116,117,114,110,32,101,91,49,93,45,116,91,49,93,124,124,101,91,48,93,45,116,91,48,93,125,102,117,110,99,116,105,111,110,32,117,108,40,116,44,101,41,123,118,97,114,32,110,44,114,44,105,44,111,61,116,46,115,111,114,116,40,99,108,41,46,112,111,112,40,41,59,105,108,61,91,93,44,110,108,61,110,101,119,32,65,114,114,97,121,40,116,46,108,101,110,103,116,104,41,44,101,108,61,110,101,119,32,106,117,44,114,108,61,110,101,119,32,106,117,59,119,104,105,108,101,40,49,41,105,102,40,105,61,86,117,44,111,38,38,40,33,105,124,124,111,91,49,93,60,105,46,121,124,124,111,91,49,93,61,61,61,105,46,121,38,38,111,91,48,93,60,105,46,120,41,41,111,91,48,93,61,61,61,110,38,38,111,91,49,93,61,61,61,114,124,124,40,74,117,40,111,41,44,110,61,111,91,48,93,44,114,61,111,91,49,93,41,44,111,61,116,46,112,111,112,40,41,59,101,108,115,101,123,105,102,40,33,105,41,98,114,101,97,107,59,90,117,40,105,46,97,114,99,41,125,105,102,40,66,117,40,41,44,101,41,123,118,97,114,32,97,61,43,101,91,48,93,91,48,93,44,115,61,43,101,91,48,93,91,49,93,44,99,61,43,101,91,49,93,91,48,93,44,117,61,43,101,91,49,93,91,49,93,59,77,117,40,97,44,115,44,99,44,117,41,44,122,117,40,97,44,115,44,99,44,117,41,125,116,104,105,115,46,101,100,103,101,115,61,105,108,44,116,104,105,115,46,99,101,108,108,115,61,110,108,44,101,108,61,114,108,61,105,108,61,110,108,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,108,108,40,116,44,101,44,110,41,123,116,104,105,115,46,107,61,116,44,116,104,105,115,46,120,61,101,44,116,104,105,115,46,121,61,110,125,117,108,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,117,108,44,112,111,108,121,103,111,110,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,101,100,103,101,115,59,114,101,116,117,114,110,32,116,104,105,115,46,99,101,108,108,115,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,101,46,104,97,108,102,101,100,103,101,115,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,82,117,40,101,44,116,91,110,93,41,125,41,41,59,114,101,116,117,114,110,32,110,46,100,97,116,97,61,101,46,115,105,116,101,46,100,97,116,97,44,110,125,41,41,125,44,116,114,105,97,110,103,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,44,101,61,116,104,105,115,46,101,100,103,101,115,59,114,101,116,117,114,110,32,116,104,105,115,46,99,101,108,108,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,105,102,40,111,61,40,105,61,110,46,104,97,108,102,101,100,103,101,115,41,46,108,101,110,103,116,104,41,123,118,97,114,32,105,44,111,44,97,44,115,61,110,46,115,105,116,101,44,99,61,45,49,44,117,61,101,91,105,91,111,45,49,93,93,44,108,61,117,46,108,101,102,116,61,61,61,115,63,117,46,114,105,103,104,116,58,117,46,108,101,102,116,59,119,104,105,108,101,40,43,43,99,60,111,41,97,61,108,44,117,61,101,91,105,91,99,93,93,44,108,61,117,46,108,101,102,116,61,61,61,115,63,117,46,114,105,103,104,116,58,117,46,108,101,102,116,44,97,38,38,108,38,38,114,60,97,46,105,110,100,101,120,38,38,114,60,108,46,105,110,100,101,120,38,38,115,108,40,115,44,97,44,108,41,60,48,38,38,116,46,112,117,115,104,40,91,115,46,100,97,116,97,44,97,46,100,97,116,97,44,108,46,100,97,116,97,93,41,125,125,41,41,44,116,125,44,108,105,110,107,115,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,100,103,101,115,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,114,105,103,104,116,125,41,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,115,111,117,114,99,101,58,116,46,108,101,102,116,46,100,97,116,97,44,116,97,114,103,101,116,58,116,46,114,105,103,104,116,46,100,97,116,97,125,125,41,41,125,44,102,105,110,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,111,61,116,104,105,115,44,97,61,111,46,95,102,111,117,110,100,124,124,48,44,115,61,111,46,99,101,108,108,115,46,108,101,110,103,116,104,59,119,104,105,108,101,40,33,40,105,61,111,46,99,101,108,108,115,91,97,93,41,41,105,102,40,43,43,97,62,61,115,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,99,61,116,45,105,46,115,105,116,101,91,48,93,44,117,61,101,45,105,46,115,105,116,101,91,49,93,44,108,61,99,42,99,43,117,42,117,59,100,111,123,105,61,111,46,99,101,108,108,115,91,114,61,97,93,44,97,61,110,117,108,108,44,105,46,104,97,108,102,101,100,103,101,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,111,46,101,100,103,101,115,91,110,93,44,115,61,114,46,108,101,102,116,59,105,102,40,115,33,61,61,105,46,115,105,116,101,38,38,115,124,124,40,115,61,114,46,114,105,103,104,116,41,41,123,118,97,114,32,99,61,116,45,115,91,48,93,44,117,61,101,45,115,91,49,93,44,102,61,99,42,99,43,117,42,117,59,102,60,108,38,38,40,108,61,102,44,97,61,115,46,105,110,100,101,120,41,125,125,41,41,125,119,104,105,108,101,40,110,117,108,108,33,61,61,97,41,59,114,101,116,117,114,110,32,111,46,95,102,111,117,110,100,61,114,44,110,117,108,108,61,61,110,124,124,108,60,61,110,42,110,63,105,46,115,105,116,101,58,110,117,108,108,125,125,44,108,108,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,108,108,44,115,99,97,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,61,61,61,116,63,116,104,105,115,58,110,101,119,32,108,108,40,116,104,105,115,46,107,42,116,44,116,104,105,115,46,120,44,116,104,105,115,46,121,41,125,44,116,114,97,110,115,108,97,116,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,48,61,61,61,116,38,48,61,61,61,101,63,116,104,105,115,58,110,101,119,32,108,108,40,116,104,105,115,46,107,44,116,104,105,115,46,120,43,116,104,105,115,46,107,42,116,44,116,104,105,115,46,121,43,116,104,105,115,46,107,42,101,41,125,44,97,112,112,108,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,116,91,48,93,42,116,104,105,115,46,107,43,116,104,105,115,46,120,44,116,91,49,93,42,116,104,105,115,46,107,43,116,104,105,115,46,121,93,125,44,97,112,112,108,121,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,116,104,105,115,46,107,43,116,104,105,115,46,120,125,44,97,112,112,108,121,89,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,116,104,105,115,46,107,43,116,104,105,115,46,121,125,44,105,110,118,101,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,40,116,91,48,93,45,116,104,105,115,46,120,41,47,116,104,105,115,46,107,44,40,116,91,49,93,45,116,104,105,115,46,121,41,47,116,104,105,115,46,107,93,125,44,105,110,118,101,114,116,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,45,116,104,105,115,46,120,41,47,116,104,105,115,46,107,125,44,105,110,118,101,114,116,89,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,45,116,104,105,115,46,121,41,47,116,104,105,115,46,107,125,44,114,101,115,99,97,108,101,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,111,112,121,40,41,46,100,111,109,97,105,110,40,116,46,114,97,110,103,101,40,41,46,109,97,112,40,116,104,105,115,46,105,110,118,101,114,116,88,44,116,104,105,115,41,46,109,97,112,40,116,46,105,110,118,101,114,116,44,116,41,41,125,44,114,101,115,99,97,108,101,89,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,111,112,121,40,41,46,100,111,109,97,105,110,40,116,46,114,97,110,103,101,40,41,46,109,97,112,40,116,104,105,115,46,105,110,118,101,114,116,89,44,116,104,105,115,41,46,109,97,112,40,116,46,105,110,118,101,114,116,44,116,41,41,125,44,116,111,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,116,114,97,110,115,108,97,116,101,40,34,43,116,104,105,115,46,120,43,34,44,34,43,116,104,105,115,46,121,43,34,41,32,115,99,97,108,101,40,34,43,116,104,105,115,46,107,43,34,41,34,125,125,59,118,97,114,32,102,108,61,110,101,119,32,108,108,40,49,44,48,44,48,41,59,102,117,110,99,116,105,111,110,32,104,108,40,116,41,123,119,104,105,108,101,40,33,116,46,95,95,122,111,111,109,41,105,102,40,33,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,41,114,101,116,117,114,110,32,102,108,59,114,101,116,117,114,110,32,116,46,95,95,122,111,111,109,125,104,108,46,112,114,111,116,111,116,121,112,101,61,108,108,46,112,114,111,116,111,116,121,112,101,125,44,49,48,49,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,105,102,40,101,46,108,101,110,103,116,104,60,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,116,43,34,32,97,114,103,117,109,101,110,116,34,43,40,116,62,49,63,34,115,34,58,34,34,41,43,34,32,114,101,113,117,105,114,101,100,44,32,98,117,116,32,111,110,108,121,32,34,43,101,46,108,101,110,103,116,104,43,34,32,112,114,101,115,101,110,116,34,41,125,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,40,49,44,97,114,103,117,109,101,110,116,115,41,59,118,97,114,32,101,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,41,59,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,124,124,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,38,38,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,61,61,61,101,63,110,101,119,32,68,97,116,101,40,116,46,103,101,116,84,105,109,101,40,41,41,58,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,116,124,124,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,61,61,61,101,63,110,101,119,32,68,97,116,101,40,116,41,58,40,34,115,116,114,105,110,103,34,33,61,61,116,121,112,101,111,102,32,116,38,38,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,33,61,61,101,124,124,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,99,111,110,115,111,108,101,124,124,40,99,111,110,115,111,108,101,46,119,97,114,110,40,34,83,116,97,114,116,105,110,103,32,119,105,116,104,32,118,50,46,48,46,48,45,98,101,116,97,46,49,32,100,97,116,101,45,102,110,115,32,100,111,101,115,110,39,116,32,97,99,99,101,112,116,32,115,116,114,105,110,103,115,32,97,115,32,100,97,116,101,32,97,114,103,117,109,101,110,116,115,46,32,80,108,101,97,115,101,32,117,115,101,32,96,112,97,114,115,101,73,83,79,96,32,116,111,32,112,97,114,115,101,32,115,116,114,105,110,103,115,46,32,83,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,106,117,108,101,34,41,44,99,111,110,115,111,108,101,46,119,97,114,110,40,40,110,101,119,32,69,114,114,111,114,41,46,115,116,97,99,107,41,41,44,110,101,119,32,68,97,116,101,40,78,97,78,41,41,125,102,117,110,99,116,105,111,110,32,111,40,116,41,123,114,40,49,44,97,114,103,117,109,101,110,116,115,41,59,118,97,114,32,101,61,105,40,116,41,59,114,101,116,117,114,110,33,105,115,78,97,78,40,101,41,125,110,46,100,40,101,44,123,90,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,65,116,125,125,41,59,118,97,114,32,97,61,123,108,101,115,115,84,104,97,110,88,83,101,99,111,110,100,115,58,123,111,110,101,58,34,108,101,115,115,32,116,104,97,110,32,97,32,115,101,99,111,110,100,34,44,111,116,104,101,114,58,34,108,101,115,115,32,116,104,97,110,32,123,123,99,111,117,110,116,125,125,32,115,101,99,111,110,100,115,34,125,44,120,83,101,99,111,110,100,115,58,123,111,110,101,58,34,49,32,115,101,99,111,110,100,34,44,111,116,104,101,114,58,34,123,123,99,111,117,110,116,125,125,32,115,101,99,111,110,100,115,34,125,44,104,97,108,102,65,77,105,110,117,116,101,58,34,104,97,108,102,32,97,32,109,105,110,117,116,101,34,44,108,101,115,115,84,104,97,110,88,77,105,110,117,116,101,115,58,123,111,110,101,58,34,108,101,115,115,32,116,104,97,110,32,97,32,109,105,110,117,116,101,34,44,111,116,104,101,114,58,34,108,101,115,115,32,116,104,97,110,32,123,123,99,111,117,110,116,125,125,32,109,105,110,117,116,101,115,34,125,44,120,77,105,110,117,116,101,115,58,123,111,110,101,58,34,49,32,109,105,110,117,116,101,34,44,111,116,104,101,114,58,34,123,123,99,111,117,110,116,125,125,32,109,105,110,117,116,101,115,34,125,44,97,98,111,117,116,88,72,111,117,114,115,58,123,111,110,101,58,34,97,98,111,117,116,32,49,32,104,111,117,114,34,44,111,116,104,101,114,58,34,97,98,111,117,116,32,123,123,99,111,117,110,116,125,125,32,104,111,117,114,115,34,125,44,120,72,111,117,114,115,58,123,111,110,101,58,34,49,32,104,111,117,114,34,44,111,116,104,101,114,58,34,123,123,99,111,117,110,116,125,125,32,104,111,117,114,115,34,125,44,120,68,97,121,115,58,123,111,110,101,58,34,49,32,100,97,121,34,44,111,116,104,101,114,58,34,123,123,99,111,117,110,116,125,125,32,100,97,121,115,34,125,44,97,98,111,117,116,88,87,101,101,107,115,58,123,111,110,101,58,34,97,98,111,117,116,32,49,32,119,101,101,107,34,44,111,116,104,101,114,58,34,97,98,111,117,116,32,123,123,99,111,117,110,116,125,125,32,119,101,101,107,115,34,125,44,120,87,101,101,107,115,58,123,111,110,101,58,34,49,32,119,101,101,107,34,44,111,116,104,101,114,58,34,123,123,99,111,117,110,116,125,125,32,119,101,101,107,115,34,125,44,97,98,111,117,116,88,77,111,110,116,104,115,58,123,111,110,101,58,34,97,98,111,117,116,32,49,32,109,111,110,116,104,34,44,111,116,104,101,114,58,34,97,98,111,117,116,32,123,123,99,111,117,110,116,125,125,32,109,111,110,116,104,115,34,125,44,120,77,111,110,116,104,115,58,123,111,110,101,58,34,49,32,109,111,110,116,104,34,44,111,116,104,101,114,58,34,123,123,99,111,117,110,116,125,125,32,109,111,110,116,104,115,34,125,44,97,98,111,117,116,88,89,101,97,114,115,58,123,111,110,101,58,34,97,98,111,117,116,32,49,32,121,101,97,114,34,44,111,116,104,101,114,58,34,97,98,111,117,116,32,123,123,99,111,117,110,116,125,125,32,121,101,97,114,115,34,125,44,120,89,101,97,114,115,58,123,111,110,101,58,34,49,32,121,101,97,114,34,44,111,116,104,101,114,58,34,123,123,99,111,117,110,116,125,125,32,121,101,97,114,115,34,125,44,111,118,101,114,88,89,101,97,114,115,58,123,111,110,101,58,34,111,118,101,114,32,49,32,121,101,97,114,34,44,111,116,104,101,114,58,34,111,118,101,114,32,123,123,99,111,117,110,116,125,125,32,121,101,97,114,115,34,125,44,97,108,109,111,115,116,88,89,101,97,114,115,58,123,111,110,101,58,34,97,108,109,111,115,116,32,49,32,121,101,97,114,34,44,111,116,104,101,114,58,34,97,108,109,111,115,116,32,123,123,99,111,117,110,116,125,125,32,121,101,97,114,115,34,125,125,59,102,117,110,99,116,105,111,110,32,115,40,116,44,101,44,110,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,110,61,110,124,124,123,125,44,114,61,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,91,116,93,63,97,91,116,93,58,49,61,61,61,101,63,97,91,116,93,46,111,110,101,58,97,91,116,93,46,111,116,104,101,114,46,114,101,112,108,97,99,101,40,34,123,123,99,111,117,110,116,125,125,34,44,101,41,44,110,46,97,100,100,83,117,102,102,105,120,63,110,46,99,111,109,112,97,114,105,115,111,110,62,48,63,34,105,110,32,34,43,114,58,114,43,34,32,97,103,111,34,58,114,125,102,117,110,99,116,105,111,110,32,99,40,116,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,110,61,101,124,124,123,125,44,114,61,110,46,119,105,100,116,104,63,83,116,114,105,110,103,40,110,46,119,105,100,116,104,41,58,116,46,100,101,102,97,117,108,116,87,105,100,116,104,44,105,61,116,46,102,111,114,109,97,116,115,91,114,93,124,124,116,46,102,111,114,109,97,116,115,91,116,46,100,101,102,97,117,108,116,87,105,100,116,104,93,59,114,101,116,117,114,110,32,105,125,125,118,97,114,32,117,61,123,102,117,108,108,58,34,69,69,69,69,44,32,77,77,77,77,32,100,111,44,32,121,34,44,108,111,110,103,58,34,77,77,77,77,32,100,111,44,32,121,34,44,109,101,100,105,117,109,58,34,77,77,77,32,100,44,32,121,34,44,115,104,111,114,116,58,34,77,77,47,100,100,47,121,121,121,121,34,125,44,108,61,123,102,117,108,108,58,34,104,58,109,109,58,115,115,32,97,32,122,122,122,122,34,44,108,111,110,103,58,34,104,58,109,109,58,115,115,32,97,32,122,34,44,109,101,100,105,117,109,58,34,104,58,109,109,58,115,115,32,97,34,44,115,104,111,114,116,58,34,104,58,109,109,32,97,34,125,44,102,61,123,102,117,108,108,58,34,123,123,100,97,116,101,125,125,32,39,97,116,39,32,123,123,116,105,109,101,125,125,34,44,108,111,110,103,58,34,123,123,100,97,116,101,125,125,32,39,97,116,39,32,123,123,116,105,109,101,125,125,34,44,109,101,100,105,117,109,58,34,123,123,100,97,116,101,125,125,44,32,123,123,116,105,109,101,125,125,34,44,115,104,111,114,116,58,34,123,123,100,97,116,101,125,125,44,32,123,123,116,105,109,101,125,125,34,125,44,104,61,123,100,97,116,101,58,99,40,123,102,111,114,109,97,116,115,58,117,44,100,101,102,97,117,108,116,87,105,100,116,104,58,34,102,117,108,108,34,125,41,44,116,105,109,101,58,99,40,123,102,111,114,109,97,116,115,58,108,44,100,101,102,97,117,108,116,87,105,100,116,104,58,34,102,117,108,108,34,125,41,44,100,97,116,101,84,105,109,101,58,99,40,123,102,111,114,109,97,116,115,58,102,44,100,101,102,97,117,108,116,87,105,100,116,104,58,34,102,117,108,108,34,125,41,125,44,100,61,104,44,112,61,123,108,97,115,116,87,101,101,107,58,34,39,108,97,115,116,39,32,101,101,101,101,32,39,97,116,39,32,112,34,44,121,101,115,116,101,114,100,97,121,58,34,39,121,101,115,116,101,114,100,97,121,32,97,116,39,32,112,34,44,116,111,100,97,121,58,34,39,116,111,100,97,121,32,97,116,39,32,112,34,44,116,111,109,111,114,114,111,119,58,34,39,116,111,109,111,114,114,111,119,32,97,116,39,32,112,34,44,110,101,120,116,87,101,101,107,58,34,101,101,101,101,32,39,97,116,39,32,112,34,44,111,116,104,101,114,58,34,80,34,125,59,102,117,110,99,116,105,111,110,32,118,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,112,91,116,93,125,102,117,110,99,116,105,111,110,32,103,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,44,105,61,110,124,124,123,125,44,111,61,105,46,99,111,110,116,101,120,116,63,83,116,114,105,110,103,40,105,46,99,111,110,116,101,120,116,41,58,34,115,116,97,110,100,97,108,111,110,101,34,59,105,102,40,34,102,111,114,109,97,116,116,105,110,103,34,61,61,61,111,38,38,116,46,102,111,114,109,97,116,116,105,110,103,86,97,108,117,101,115,41,123,118,97,114,32,97,61,116,46,100,101,102,97,117,108,116,70,111,114,109,97,116,116,105,110,103,87,105,100,116,104,124,124,116,46,100,101,102,97,117,108,116,87,105,100,116,104,44,115,61,105,46,119,105,100,116,104,63,83,116,114,105,110,103,40,105,46,119,105,100,116,104,41,58,97,59,114,61,116,46,102,111,114,109,97,116,116,105,110,103,86,97,108,117,101,115,91,115,93,124,124,116,46,102,111,114,109,97,116,116,105,110,103,86,97,108,117,101,115,91,97,93,125,101,108,115,101,123,118,97,114,32,99,61,116,46,100,101,102,97,117,108,116,87,105,100,116,104,44,117,61,105,46,119,105,100,116,104,63,83,116,114,105,110,103,40,105,46,119,105,100,116,104,41,58,116,46,100,101,102,97,117,108,116,87,105,100,116,104,59,114,61,116,46,118,97,108,117,101,115,91,117,93,124,124,116,46,118,97,108,117,101,115,91,99,93,125,118,97,114,32,108,61,116,46,97,114,103,117,109,101,110,116,67,97,108,108,98,97,99,107,63,116,46,97,114,103,117,109,101,110,116,67,97,108,108,98,97,99,107,40,101,41,58,101,59,114,101,116,117,114,110,32,114,91,108,93,125,125,118,97,114,32,109,61,123,110,97,114,114,111,119,58,91,34,66,34,44,34,65,34,93,44,97,98,98,114,101,118,105,97,116,101,100,58,91,34,66,67,34,44,34,65,68,34,93,44,119,105,100,101,58,91,34,66,101,102,111,114,101,32,67,104,114,105,115,116,34,44,34,65,110,110,111,32,68,111,109,105,110,105,34,93,125,44,98,61,123,110,97,114,114,111,119,58,91,34,49,34,44,34,50,34,44,34,51,34,44,34,52,34,93,44,97,98,98,114,101,118,105,97,116,101,100,58,91,34,81,49,34,44,34,81,50,34,44,34,81,51,34,44,34,81,52,34,93,44,119,105,100,101,58,91,34,49,115,116,32,113,117,97,114,116,101,114,34,44,34,50,110,100,32,113,117,97,114,116,101,114,34,44,34,51,114,100,32,113,117,97,114,116,101,114,34,44,34,52,116,104,32,113,117,97,114,116,101,114,34,93,125,44,121,61,123,110,97,114,114,111,119,58,91,34,74,34,44,34,70,34,44,34,77,34,44,34,65,34,44,34,77,34,44,34,74,34,44,34,74,34,44,34,65,34,44,34,83,34,44,34,79,34,44,34,78,34,44,34,68,34,93,44,97,98,98,114,101,118,105,97,116,101,100,58,91,34,74,97,110,34,44,34,70,101,98,34,44,34,77,97,114,34,44,34,65,112,114,34,44,34,77,97,121,34,44,34,74,117,110,34,44,34,74,117,108,34,44,34,65,117,103,34,44,34,83,101,112,34,44,34,79,99,116,34,44,34,78,111,118,34,44,34,68,101,99,34,93,44,119,105,100,101,58,91,34,74,97,110,117,97,114,121,34,44,34,70,101,98,114,117,97,114,121,34,44,34,77,97,114,99,104,34,44,34,65,112,114,105,108,34,44,34,77,97,121,34,44,34,74,117,110,101,34,44,34,74,117,108,121,34,44,34,65,117,103,117,115,116,34,44,34,83,101,112,116,101,109,98,101,114,34,44,34,79,99,116,111,98,101,114,34,44,34,78,111,118,101,109,98,101,114,34,44,34,68,101,99,101,109,98,101,114,34,93,125,44,119,61,123,110,97,114,114,111,119,58,91,34,83,34,44,34,77,34,44,34,84,34,44,34,87,34,44,34,84,34,44,34,70,34,44,34,83,34,93,44,115,104,111,114,116,58,91,34,83,117,34,44,34,77,111,34,44,34,84,117,34,44,34,87,101,34,44,34,84,104,34,44,34,70,114,34,44,34,83,97,34,93,44,97,98,98,114,101,118,105,97,116,101,100,58,91,34,83,117,110,34,44,34,77,111,110,34,44,34,84,117,101,34,44,34,87,101,100,34,44,34,84,104,117,34,44,34,70,114,105,34,44,34,83,97,116,34,93,44,119,105,100,101,58,91,34,83,117,110,100,97,121,34,44,34,77,111,110,100,97,121,34,44,34,84,117,101,115,100,97,121,34,44,34,87,101,100,110,101,115,100,97,121,34,44,34,84,104,117,114,115,100,97,121,34,44,34,70,114,105,100,97,121,34,44,34,83,97,116,117,114,100,97,121,34,93,125,44,95,61,123,110,97,114,114,111,119,58,123,97,109,58,34,97,34,44,112,109,58,34,112,34,44,109,105,100,110,105,103,104,116,58,34,109,105,34,44,110,111,111,110,58,34,110,34,44,109,111,114,110,105,110,103,58,34,109,111,114,110,105,110,103,34,44,97,102,116,101,114,110,111,111,110,58,34,97,102,116,101,114,110,111,111,110,34,44,101,118,101,110,105,110,103,58,34,101,118,101,110,105,110,103,34,44,110,105,103,104,116,58,34,110,105,103,104,116,34,125,44,97,98,98,114,101,118,105,97,116,101,100,58,123,97,109,58,34,65,77,34,44,112,109,58,34,80,77,34,44,109,105,100,110,105,103,104,116,58,34,109,105,100,110,105,103,104,116,34,44,110,111,111,110,58,34,110,111,111,110,34,44,109,111,114,110,105,110,103,58,34,109,111,114,110,105,110,103,34,44,97,102,116,101,114,110,111,111,110,58,34,97,102,116,101,114,110,111,111,110,34,44,101,118,101,110,105,110,103,58,34,101,118,101,110,105,110,103,34,44,110,105,103,104,116,58,34,110,105,103,104,116,34,125,44,119,105,100,101,58,123,97,109,58,34,97,46,109,46,34,44,112,109,58,34,112,46,109,46,34,44,109,105,100,110,105,103,104,116,58,34,109,105,100,110,105,103,104,116,34,44,110,111,111,110,58,34,110,111,111,110,34,44,109,111,114,110,105,110,103,58,34,109,111,114,110,105,110,103,34,44,97,102,116,101,114,110,111,111,110,58,34,97,102,116,101,114,110,111,111,110,34,44,101,118,101,110,105,110,103,58,34,101,118,101,110,105,110,103,34,44,110,105,103,104,116,58,34,110,105,103,104,116,34,125,125,44,120,61,123,110,97,114,114,111,119,58,123,97,109,58,34,97,34,44,112,109,58,34,112,34,44,109,105,100,110,105,103,104,116,58,34,109,105,34,44,110,111,111,110,58,34,110,34,44,109,111,114,110,105,110,103,58,34,105,110,32,116,104,101,32,109,111,114,110,105,110,103,34,44,97,102,116,101,114,110,111,111,110,58,34,105,110,32,116,104,101,32,97,102,116,101,114,110,111,111,110,34,44,101,118,101,110,105,110,103,58,34,105,110,32,116,104,101,32,101,118,101,110,105,110,103,34,44,110,105,103,104,116,58,34,97,116,32,110,105,103,104,116,34,125,44,97,98,98,114,101,118,105,97,116,101,100,58,123,97,109,58,34,65,77,34,44,112,109,58,34,80,77,34,44,109,105,100,110,105,103,104,116,58,34,109,105,100,110,105,103,104,116,34,44,110,111,111,110,58,34,110,111,111,110,34,44,109,111,114,110,105,110,103,58,34,105,110,32,116,104,101,32,109,111,114,110,105,110,103,34,44,97,102,116,101,114,110,111,111,110,58,34,105,110,32,116,104,101,32,97,102,116,101,114,110,111,111,110,34,44,101,118,101,110,105,110,103,58,34,105,110,32,116,104,101,32,101,118,101,110,105,110,103,34,44,110,105,103,104,116,58,34,97,116,32,110,105,103,104,116,34,125,44,119,105,100,101,58,123,97,109,58,34,97,46,109,46,34,44,112,109,58,34,112,46,109,46,34,44,109,105,100,110,105,103,104,116,58,34,109,105,100,110,105,103,104,116,34,44,110,111,111,110,58,34,110,111,111,110,34,44,109,111,114,110,105,110,103,58,34,105,110,32,116,104,101,32,109,111,114,110,105,110,103,34,44,97,102,116,101,114,110,111,111,110,58,34,105,110,32,116,104,101,32,97,102,116,101,114,110,111,111,110,34,44,101,118,101,110,105,110,103,58,34,105,110,32,116,104,101,32,101,118,101,110,105,110,103,34,44,110,105,103,104,116,58,34,97,116,32,110,105,103,104,116,34,125,125,59,102,117,110,99,116,105,111,110,32,79,40,116,44,101,41,123,118,97,114,32,110,61,78,117,109,98,101,114,40,116,41,44,114,61,110,37,49,48,48,59,105,102,40,114,62,50,48,124,124,114,60,49,48,41,115,119,105,116,99,104,40,114,37,49,48,41,123,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,43,34,115,116,34,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,43,34,110,100,34,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,110,43,34,114,100,34,125,114,101,116,117,114,110,32,110,43,34,116,104,34,125,118,97,114,32,83,61,123,111,114,100,105,110,97,108,78,117,109,98,101,114,58,79,44,101,114,97,58,103,40,123,118,97,108,117,101,115,58,109,44,100,101,102,97,117,108,116,87,105,100,116,104,58,34,119,105,100,101,34,125,41,44,113,117,97,114,116,101,114,58,103,40,123,118,97,108,117,101,115,58,98,44,100,101,102,97,117,108,116,87,105,100,116,104,58,34,119,105,100,101,34,44,97,114,103,117,109,101,110,116,67,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,78,117,109,98,101,114,40,116,41,45,49,125,125,41,44,109,111,110,116,104,58,103,40,123,118,97,108,117,101,115,58,121,44,100,101,102,97,117,108,116,87,105,100,116,104,58,34,119,105,100,101,34,125,41,44,100,97,121,58,103,40,123,118,97,108,117,101,115,58,119,44,100,101,102,97,117,108,116,87,105,100,116,104,58,34,119,105,100,101,34,125,41,44,100,97,121,80,101,114,105,111,100,58,103,40,123,118,97,108,117,101,115,58,95,44,100,101,102,97,117,108,116,87,105,100,116,104,58,34,119,105,100,101,34,44,102,111,114,109,97,116,116,105,110,103,86,97,108,117,101,115,58,120,44,100,101,102,97,117,108,116,70,111,114,109,97,116,116,105,110,103,87,105,100,116,104,58,34,119,105,100,101,34,125,41,125,44,107,61,83,59,102,117,110,99,116,105,111,110,32,67,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,61,83,116,114,105,110,103,40,101,41,44,105,61,110,124,124,123,125,44,111,61,114,46,109,97,116,99,104,40,116,46,109,97,116,99,104,80,97,116,116,101,114,110,41,59,105,102,40,33,111,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,97,61,111,91,48,93,44,115,61,114,46,109,97,116,99,104,40,116,46,112,97,114,115,101,80,97,116,116,101,114,110,41,59,105,102,40,33,115,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,99,61,116,46,118,97,108,117,101,67,97,108,108,98,97,99,107,63,116,46,118,97,108,117,101,67,97,108,108,98,97,99,107,40,115,91,48,93,41,58,115,91,48,93,59,114,101,116,117,114,110,32,99,61,105,46,118,97,108,117,101,67,97,108,108,98,97,99,107,63,105,46,118,97,108,117,101,67,97,108,108,98,97,99,107,40,99,41,58,99,44,123,118,97,108,117,101,58,99,44,114,101,115,116,58,114,46,115,108,105,99,101,40,97,46,108,101,110,103,116,104,41,125,125,125,102,117,110,99,116,105,111,110,32,80,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,61,83,116,114,105,110,103,40,101,41,44,105,61,110,124,124,123,125,44,111,61,105,46,119,105,100,116,104,44,97,61,111,38,38,116,46,109,97,116,99,104,80,97,116,116,101,114,110,115,91,111,93,124,124,116,46,109,97,116,99,104,80,97,116,116,101,114,110,115,91,116,46,100,101,102,97,117,108,116,77,97,116,99,104,87,105,100,116,104,93,44,115,61,114,46,109,97,116,99,104,40,97,41,59,105,102,40,33,115,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,99,44,117,61,115,91,48,93,44,108,61,111,38,38,116,46,112,97,114,115,101,80,97,116,116,101,114,110,115,91,111,93,124,124,116,46,112,97,114,115,101,80,97,116,116,101,114,110,115,91,116,46,100,101,102,97,117,108,116,80,97,114,115,101,87,105,100,116,104,93,59,114,101,116,117,114,110,32,99,61,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,108,41,63,106,40,108,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,101,115,116,40,117,41,125,41,41,58,84,40,108,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,101,115,116,40,117,41,125,41,41,44,99,61,116,46,118,97,108,117,101,67,97,108,108,98,97,99,107,63,116,46,118,97,108,117,101,67,97,108,108,98,97,99,107,40,99,41,58,99,44,99,61,105,46,118,97,108,117,101,67,97,108,108,98,97,99,107,63,105,46,118,97,108,117,101,67,97,108,108,98,97,99,107,40,99,41,58,99,44,123,118,97,108,117,101,58,99,44,114,101,115,116,58,114,46,115,108,105,99,101,40,117,46,108,101,110,103,116,104,41,125,125,125,102,117,110,99,116,105,111,110,32,84,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,116,41,105,102,40,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,110,41,38,38,101,40,116,91,110,93,41,41,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,106,40,116,44,101,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,105,102,40,101,40,116,91,110,93,41,41,114,101,116,117,114,110,32,110,125,118,97,114,32,69,61,47,94,40,92,100,43,41,40,116,104,124,115,116,124,110,100,124,114,100,41,63,47,105,44,68,61,47,92,100,43,47,105,44,65,61,123,110,97,114,114,111,119,58,47,94,40,98,124,97,41,47,105,44,97,98,98,114,101,118,105,97,116,101,100,58,47,94,40,98,92,46,63,92,115,63,99,92,46,63,124,98,92,46,63,92,115,63,99,92,46,63,92,115,63,101,92,46,63,124,97,92,46,63,92,115,63,100,92,46,63,124,99,92,46,63,92,115,63,101,92,46,63,41,47,105,44,119,105,100,101,58,47,94,40,98,101,102,111,114,101,32,99,104,114,105,115,116,124,98,101,102,111,114,101,32,99,111,109,109,111,110,32,101,114,97,124,97,110,110,111,32,100,111,109,105,110,105,124,99,111,109,109,111,110,32,101,114,97,41,47,105,125,44,76,61,123,97,110,121,58,91,47,94,98,47,105,44,47,94,40,97,124,99,41,47,105,93,125,44,73,61,123,110,97,114,114,111,119,58,47,94,91,49,50,51,52,93,47,105,44,97,98,98,114,101,118,105,97,116,101,100,58,47,94,113,91,49,50,51,52,93,47,105,44,119,105,100,101,58,47,94,91,49,50,51,52,93,40,116,104,124,115,116,124,110,100,124,114,100,41,63,32,113,117,97,114,116,101,114,47,105,125,44,77,61,123,97,110,121,58,91,47,49,47,105,44,47,50,47,105,44,47,51,47,105,44,47,52,47,105,93,125,44,36,61,123,110,97,114,114,111,119,58,47,94,91,106,102,109,97,115,111,110,100,93,47,105,44,97,98,98,114,101,118,105,97,116,101,100,58,47,94,40,106,97,110,124,102,101,98,124,109,97,114,124,97,112,114,124,109,97,121,124,106,117,110,124,106,117,108,124,97,117,103,124,115,101,112,124,111,99,116,124,110,111,118,124,100,101,99,41,47,105,44,119,105,100,101,58,47,94,40,106,97,110,117,97,114,121,124,102,101,98,114,117,97,114,121,124,109,97,114,99,104,124,97,112,114,105,108,124,109,97,121,124,106,117,110,101,124,106,117,108,121,124,97,117,103,117,115,116,124,115,101,112,116,101,109,98,101,114,124,111,99,116,111,98,101,114,124,110,111,118,101,109,98,101,114,124,100,101,99,101,109,98,101,114,41,47,105,125,44,70,61,123,110,97,114,114,111,119,58,91,47,94,106,47,105,44,47,94,102,47,105,44,47,94,109,47,105,44,47,94,97,47,105,44,47,94,109,47,105,44,47,94,106,47,105,44,47,94,106,47,105,44,47,94,97,47,105,44,47,94,115,47,105,44,47,94,111,47,105,44,47,94,110,47,105,44,47,94,100,47,105,93,44,97,110,121,58,91,47,94,106,97,47,105,44,47,94,102,47,105,44,47,94,109,97,114,47,105,44,47,94,97,112,47,105,44,47,94,109,97,121,47,105,44,47,94,106,117,110,47,105,44,47,94,106,117,108,47,105,44,47,94,97,117,47,105,44,47,94,115,47,105,44,47,94,111,47,105,44,47,94,110,47,105,44,47,94,100,47,105,93,125,44,82,61,123,110,97,114,114,111,119,58,47,94,91,115,109,116,119,102,93,47,105,44,115,104,111,114,116,58,47,94,40,115,117,124,109,111,124,116,117,124,119,101,124,116,104,124,102,114,124,115,97,41,47,105,44,97,98,98,114,101,118,105,97,116,101,100,58,47,94,40,115,117,110,124,109,111,110,124,116,117,101,124,119,101,100,124,116,104,117,124,102,114,105,124,115,97,116,41,47,105,44,119,105,100,101,58,47,94,40,115,117,110,100,97,121,124,109,111,110,100,97,121,124,116,117,101,115,100,97,121,124,119,101,100,110,101,115,100,97,121,124,116,104,117,114,115,100,97,121,124,102,114,105,100,97,121,124,115,97,116,117,114,100,97,121,41,47,105,125,44,78,61,123,110,97,114,114,111,119,58,91,47,94,115,47,105,44,47,94,109,47,105,44,47,94,116,47,105,44,47,94,119,47,105,44,47,94,116,47,105,44,47,94,102,47,105,44,47,94,115,47,105,93,44,97,110,121,58,91,47,94,115,117,47,105,44,47,94,109,47,105,44,47,94,116,117,47,105,44,47,94,119,47,105,44,47,94,116,104,47,105,44,47,94,102,47,105,44,47,94,115,97,47,105,93,125,44,66,61,123,110,97,114,114,111,119,58,47,94,40,97,124,112,124,109,105,124,110,124,40,105,110,32,116,104,101,124,97,116,41,32,40,109,111,114,110,105,110,103,124,97,102,116,101,114,110,111,111,110,124,101,118,101,110,105,110,103,124,110,105,103,104,116,41,41,47,105,44,97,110,121,58,47,94,40,91,97,112,93,92,46,63,92,115,63,109,92,46,63,124,109,105,100,110,105,103,104,116,124,110,111,111,110,124,40,105,110,32,116,104,101,124,97,116,41,32,40,109,111,114,110,105,110,103,124,97,102,116,101,114,110,111,111,110,124,101,118,101,110,105,110,103,124,110,105,103,104,116,41,41,47,105,125,44,122,61,123,97,110,121,58,123,97,109,58,47,94,97,47,105,44,112,109,58,47,94,112,47,105,44,109,105,100,110,105,103,104,116,58,47,94,109,105,47,105,44,110,111,111,110,58,47,94,110,111,47,105,44,109,111,114,110,105,110,103,58,47,109,111,114,110,105,110,103,47,105,44,97,102,116,101,114,110,111,111,110,58,47,97,102,116,101,114,110,111,111,110,47,105,44,101,118,101,110,105,110,103,58,47,101,118,101,110,105,110,103,47,105,44,110,105,103,104,116,58,47,110,105,103,104,116,47,105,125,125,44,86,61,123,111,114,100,105,110,97,108,78,117,109,98,101,114,58,67,40,123,109,97,116,99,104,80,97,116,116,101,114,110,58,69,44,112,97,114,115,101,80,97,116,116,101,114,110,58,68,44,118,97,108,117,101,67,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,112,97,114,115,101,73,110,116,40,116,44,49,48,41,125,125,41,44,101,114,97,58,80,40,123,109,97,116,99,104,80,97,116,116,101,114,110,115,58,65,44,100,101,102,97,117,108,116,77,97,116,99,104,87,105,100,116,104,58,34,119,105,100,101,34,44,112,97,114,115,101,80,97,116,116,101,114,110,115,58,76,44,100,101,102,97,117,108,116,80,97,114,115,101,87,105,100,116,104,58,34,97,110,121,34,125,41,44,113,117,97,114,116,101,114,58,80,40,123,109,97,116,99,104,80,97,116,116,101,114,110,115,58,73,44,100,101,102,97,117,108,116,77,97,116,99,104,87,105,100,116,104,58,34,119,105,100,101,34,44,112,97,114,115,101,80,97,116,116,101,114,110,115,58,77,44,100,101,102,97,117,108,116,80,97,114,115,101,87,105,100,116,104,58,34,97,110,121,34,44,118,97,108,117,101,67,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,43,49,125,125,41,44,109,111,110,116,104,58,80,40,123,109,97,116,99,104,80,97,116,116,101,114,110,115,58,36,44,100,101,102,97,117,108,116,77,97,116,99,104,87,105,100,116,104,58,34,119,105,100,101,34,44,112,97,114,115,101,80,97,116,116,101,114,110,115,58,70,44,100,101,102,97,117,108,116,80,97,114,115,101,87,105,100,116,104,58,34,97,110,121,34,125,41,44,100,97,121,58,80,40,123,109,97,116,99,104,80,97,116,116,101,114,110,115,58,82,44,100,101,102,97,117,108,116,77,97,116,99,104,87,105,100,116,104,58,34,119,105,100,101,34,44,112,97,114,115,101,80,97,116,116,101,114,110,115,58,78,44,100,101,102,97,117,108,116,80,97,114,115,101,87,105,100,116,104,58,34,97,110,121,34,125,41,44,100,97,121,80,101,114,105,111,100,58,80,40,123,109,97,116,99,104,80,97,116,116,101,114,110,115,58,66,44,100,101,102,97,117,108,116,77,97,116,99,104,87,105,100,116,104,58,34,97,110,121,34,44,112,97,114,115,101,80,97,116,116,101,114,110,115,58,122,44,100,101,102,97,117,108,116,80,97,114,115,101,87,105,100,116,104,58,34,97,110,121,34,125,41,125,44,72,61,86,44,85,61,123,99,111,100,101,58,34,101,110,45,85,83,34,44,102,111,114,109,97,116,68,105,115,116,97,110,99,101,58,115,44,102,111,114,109,97,116,76,111,110,103,58,100,44,102,111,114,109,97,116,82,101,108,97,116,105,118,101,58,118,44,108,111,99,97,108,105,122,101,58,107,44,109,97,116,99,104,58,72,44,111,112,116,105,111,110,115,58,123,119,101,101,107,83,116,97,114,116,115,79,110,58,48,44,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,58,49,125,125,44,87,61,85,59,102,117,110,99,116,105,111,110,32,71,40,116,41,123,105,102,40,110,117,108,108,61,61,61,116,124,124,33,48,61,61,61,116,124,124,33,49,61,61,61,116,41,114,101,116,117,114,110,32,78,97,78,59,118,97,114,32,101,61,78,117,109,98,101,114,40,116,41,59,114,101,116,117,114,110,32,105,115,78,97,78,40,101,41,63,101,58,101,60,48,63,77,97,116,104,46,99,101,105,108,40,101,41,58,77,97,116,104,46,102,108,111,111,114,40,101,41,125,102,117,110,99,116,105,111,110,32,113,40,116,44,101,41,123,114,40,50,44,97,114,103,117,109,101,110,116,115,41,59,118,97,114,32,110,61,105,40,116,41,46,103,101,116,84,105,109,101,40,41,44,111,61,71,40,101,41,59,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,110,43,111,41,125,102,117,110,99,116,105,111,110,32,89,40,116,44,101,41,123,114,40,50,44,97,114,103,117,109,101,110,116,115,41,59,118,97,114,32,110,61,71,40,101,41,59,114,101,116,117,114,110,32,113,40,116,44,45,110,41,125,102,117,110,99,116,105,111,110,32,75,40,116,44,101,41,123,118,97,114,32,110,61,116,60,48,63,34,45,34,58,34,34,44,114,61,77,97,116,104,46,97,98,115,40,116,41,46,116,111,83,116,114,105,110,103,40,41,59,119,104,105,108,101,40,114,46,108,101,110,103,116,104,60,101,41,114,61,34,48,34,43,114,59,114,101,116,117,114,110,32,110,43,114,125,118,97,114,32,88,61,123,121,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,44,114,61,110,62,48,63,110,58,49,45,110,59,114,101,116,117,114,110,32,75,40,34,121,121,34,61,61,61,101,63,114,37,49,48,48,58,114,44,101,46,108,101,110,103,116,104,41,125,44,77,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,59,114,101,116,117,114,110,34,77,34,61,61,61,101,63,83,116,114,105,110,103,40,110,43,49,41,58,75,40,110,43,49,44,50,41,125,44,100,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,75,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,44,101,46,108,101,110,103,116,104,41,125,44,97,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,47,49,50,62,61,49,63,34,112,109,34,58,34,97,109,34,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,97,34,58,99,97,115,101,34,97,97,34,58,114,101,116,117,114,110,32,110,46,116,111,85,112,112,101,114,67,97,115,101,40,41,59,99,97,115,101,34,97,97,97,34,58,114,101,116,117,114,110,32,110,59,99,97,115,101,34,97,97,97,97,97,34,58,114,101,116,117,114,110,32,110,91,48,93,59,99,97,115,101,34,97,97,97,97,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,34,97,109,34,61,61,61,110,63,34,97,46,109,46,34,58,34,112,46,109,46,34,125,125,44,104,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,75,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,37,49,50,124,124,49,50,44,101,46,108,101,110,103,116,104,41,125,44,72,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,75,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,44,101,46,108,101,110,103,116,104,41,125,44,109,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,75,40,116,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,44,101,46,108,101,110,103,116,104,41,125,44,115,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,75,40,116,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,44,101,46,108,101,110,103,116,104,41,125,44,83,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,108,101,110,103,116,104,44,114,61,116,46,103,101,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,41,44,105,61,77,97,116,104,46,102,108,111,111,114,40,114,42,77,97,116,104,46,112,111,119,40,49,48,44,110,45,51,41,41,59,114,101,116,117,114,110,32,75,40,105,44,101,46,108,101,110,103,116,104,41,125,125,44,90,61,88,44,74,61,56,54,52,101,53,59,102,117,110,99,116,105,111,110,32,81,40,116,41,123,114,40,49,44,97,114,103,117,109,101,110,116,115,41,59,118,97,114,32,101,61,105,40,116,41,44,110,61,101,46,103,101,116,84,105,109,101,40,41,59,101,46,115,101,116,85,84,67,77,111,110,116,104,40,48,44,49,41,44,101,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,59,118,97,114,32,111,61,101,46,103,101,116,84,105,109,101,40,41,44,97,61,110,45,111,59,114,101,116,117,114,110,32,77,97,116,104,46,102,108,111,111,114,40,97,47,74,41,43,49,125,102,117,110,99,116,105,111,110,32,116,116,40,116,41,123,114,40,49,44,97,114,103,117,109,101,110,116,115,41,59,118,97,114,32,101,61,49,44,110,61,105,40,116,41,44,111,61,110,46,103,101,116,85,84,67,68,97,121,40,41,44,97,61,40,111,60,101,63,55,58,48,41,43,111,45,101,59,114,101,116,117,114,110,32,110,46,115,101,116,85,84,67,68,97,116,101,40,110,46,103,101,116,85,84,67,68,97,116,101,40,41,45,97,41,44,110,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,44,110,125,102,117,110,99,116,105,111,110,32,101,116,40,116,41,123,114,40,49,44,97,114,103,117,109,101,110,116,115,41,59,118,97,114,32,101,61,105,40,116,41,44,110,61,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,44,111,61,110,101,119,32,68,97,116,101,40,48,41,59,111,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,110,43,49,44,48,44,52,41,44,111,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,59,118,97,114,32,97,61,116,116,40,111,41,44,115,61,110,101,119,32,68,97,116,101,40,48,41,59,115,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,110,44,48,44,52,41,44,115,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,59,118,97,114,32,99,61,116,116,40,115,41,59,114,101,116,117,114,110,32,101,46,103,101,116,84,105,109,101,40,41,62,61,97,46,103,101,116,84,105,109,101,40,41,63,110,43,49,58,101,46,103,101,116,84,105,109,101,40,41,62,61,99,46,103,101,116,84,105,109,101,40,41,63,110,58,110,45,49,125,102,117,110,99,116,105,111,110,32,110,116,40,116,41,123,114,40,49,44,97,114,103,117,109,101,110,116,115,41,59,118,97,114,32,101,61,101,116,40,116,41,44,110,61,110,101,119,32,68,97,116,101,40,48,41,59,110,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,101,44,48,44,52,41,44,110,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,59,118,97,114,32,105,61,116,116,40,110,41,59,114,101,116,117,114,110,32,105,125,118,97,114,32,114,116,61,54,48,52,56,101,53,59,102,117,110,99,116,105,111,110,32,105,116,40,116,41,123,114,40,49,44,97,114,103,117,109,101,110,116,115,41,59,118,97,114,32,101,61,105,40,116,41,44,110,61,116,116,40,101,41,46,103,101,116,84,105,109,101,40,41,45,110,116,40,101,41,46,103,101,116,84,105,109,101,40,41,59,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,110,47,114,116,41,43,49,125,102,117,110,99,116,105,111,110,32,111,116,40,116,44,101,41,123,114,40,49,44,97,114,103,117,109,101,110,116,115,41,59,118,97,114,32,110,61,101,124,124,123,125,44,111,61,110,46,108,111,99,97,108,101,44,97,61,111,38,38,111,46,111,112,116,105,111,110,115,38,38,111,46,111,112,116,105,111,110,115,46,119,101,101,107,83,116,97,114,116,115,79,110,44,115,61,110,117,108,108,61,61,97,63,48,58,71,40,97,41,44,99,61,110,117,108,108,61,61,110,46,119,101,101,107,83,116,97,114,116,115,79,110,63,115,58,71,40,110,46,119,101,101,107,83,116,97,114,116,115,79,110,41,59,105,102,40,33,40,99,62,61,48,38,38,99,60,61,54,41,41,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,34,119,101,101,107,83,116,97,114,116,115,79,110,32,109,117,115,116,32,98,101,32,98,101,116,119,101,101,110,32,48,32,97,110,100,32,54,32,105,110,99,108,117,115,105,118,101,108,121,34,41,59,118,97,114,32,117,61,105,40,116,41,44,108,61,117,46,103,101,116,85,84,67,68,97,121,40,41,44,102,61,40,108,60,99,63,55,58,48,41,43,108,45,99,59,114,101,116,117,114,110,32,117,46,115,101,116,85,84,67,68,97,116,101,40,117,46,103,101,116,85,84,67,68,97,116,101,40,41,45,102,41,44,117,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,44,117,125,102,117,110,99,116,105,111,110,32,97,116,40,116,44,101,41,123,114,40,49,44,97,114,103,117,109,101,110,116,115,41,59,118,97,114,32,110,61,105,40,116,44,101,41,44,111,61,110,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,44,97,61,101,124,124,123,125,44,115,61,97,46,108,111,99,97,108,101,44,99,61,115,38,38,115,46,111,112,116,105,111,110,115,38,38,115,46,111,112,116,105,111,110,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,44,117,61,110,117,108,108,61,61,99,63,49,58,71,40,99,41,44,108,61,110,117,108,108,61,61,97,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,63,117,58,71,40,97,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,41,59,105,102,40,33,40,108,62,61,49,38,38,108,60,61,55,41,41,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,34,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,109,117,115,116,32,98,101,32,98,101,116,119,101,101,110,32,49,32,97,110,100,32,55,32,105,110,99,108,117,115,105,118,101,108,121,34,41,59,118,97,114,32,102,61,110,101,119,32,68,97,116,101,40,48,41,59,102,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,111,43,49,44,48,44,108,41,44,102,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,59,118,97,114,32,104,61,111,116,40,102,44,101,41,44,100,61,110,101,119,32,68,97,116,101,40,48,41,59,100,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,111,44,48,44,108,41,44,100,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,59,118,97,114,32,112,61,111,116,40,100,44,101,41,59,114,101,116,117,114,110,32,110,46,103,101,116,84,105,109,101,40,41,62,61,104,46,103,101,116,84,105,109,101,40,41,63,111,43,49,58,110,46,103,101,116,84,105,109,101,40,41,62,61,112,46,103,101,116,84,105,109,101,40,41,63,111,58,111,45,49,125,102,117,110,99,116,105,111,110,32,115,116,40,116,44,101,41,123,114,40,49,44,97,114,103,117,109,101,110,116,115,41,59,118,97,114,32,110,61,101,124,124,123,125,44,105,61,110,46,108,111,99,97,108,101,44,111,61,105,38,38,105,46,111,112,116,105,111,110,115,38,38,105,46,111,112,116,105,111,110,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,44,97,61,110,117,108,108,61,61,111,63,49,58,71,40,111,41,44,115,61,110,117,108,108,61,61,110,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,63,97,58,71,40,110,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,41,44,99,61,97,116,40,116,44,101,41,44,117,61,110,101,119,32,68,97,116,101,40,48,41,59,117,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,99,44,48,44,115,41,44,117,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,59,118,97,114,32,108,61,111,116,40,117,44,101,41,59,114,101,116,117,114,110,32,108,125,118,97,114,32,99,116,61,54,48,52,56,101,53,59,102,117,110,99,116,105,111,110,32,117,116,40,116,44,101,41,123,114,40,49,44,97,114,103,117,109,101,110,116,115,41,59,118,97,114,32,110,61,105,40,116,41,44,111,61,111,116,40,110,44,101,41,46,103,101,116,84,105,109,101,40,41,45,115,116,40,110,44,101,41,46,103,101,116,84,105,109,101,40,41,59,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,111,47,99,116,41,43,49,125,118,97,114,32,108,116,61,123,97,109,58,34,97,109,34,44,112,109,58,34,112,109,34,44,109,105,100,110,105,103,104,116,58,34,109,105,100,110,105,103,104,116,34,44,110,111,111,110,58,34,110,111,111,110,34,44,109,111,114,110,105,110,103,58,34,109,111,114,110,105,110,103,34,44,97,102,116,101,114,110,111,111,110,58,34,97,102,116,101,114,110,111,111,110,34,44,101,118,101,110,105,110,103,58,34,101,118,101,110,105,110,103,34,44,110,105,103,104,116,58,34,110,105,103,104,116,34,125,44,102,116,61,123,71,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,62,48,63,49,58,48,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,71,34,58,99,97,115,101,34,71,71,34,58,99,97,115,101,34,71,71,71,34,58,114,101,116,117,114,110,32,110,46,101,114,97,40,114,44,123,119,105,100,116,104,58,34,97,98,98,114,101,118,105,97,116,101,100,34,125,41,59,99,97,115,101,34,71,71,71,71,71,34,58,114,101,116,117,114,110,32,110,46,101,114,97,40,114,44,123,119,105,100,116,104,58,34,110,97,114,114,111,119,34,125,41,59,99,97,115,101,34,71,71,71,71,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,110,46,101,114,97,40,114,44,123,119,105,100,116,104,58,34,119,105,100,101,34,125,41,125,125,44,121,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,34,121,111,34,61,61,61,101,41,123,118,97,114,32,114,61,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,44,105,61,114,62,48,63,114,58,49,45,114,59,114,101,116,117,114,110,32,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,105,44,123,117,110,105,116,58,34,121,101,97,114,34,125,41,125,114,101,116,117,114,110,32,90,46,121,40,116,44,101,41,125,44,89,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,97,116,40,116,44,114,41,44,111,61,105,62,48,63,105,58,49,45,105,59,105,102,40,34,89,89,34,61,61,61,101,41,123,118,97,114,32,97,61,111,37,49,48,48,59,114,101,116,117,114,110,32,75,40,97,44,50,41,125,114,101,116,117,114,110,34,89,111,34,61,61,61,101,63,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,111,44,123,117,110,105,116,58,34,121,101,97,114,34,125,41,58,75,40,111,44,101,46,108,101,110,103,116,104,41,125,44,82,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,116,40,116,41,59,114,101,116,117,114,110,32,75,40,110,44,101,46,108,101,110,103,116,104,41,125,44,117,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,59,114,101,116,117,114,110,32,75,40,110,44,101,46,108,101,110,103,116,104,41,125,44,81,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,77,97,116,104,46,99,101,105,108,40,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,49,41,47,51,41,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,81,34,58,114,101,116,117,114,110,32,83,116,114,105,110,103,40,114,41,59,99,97,115,101,34,81,81,34,58,114,101,116,117,114,110,32,75,40,114,44,50,41,59,99,97,115,101,34,81,111,34,58,114,101,116,117,114,110,32,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,114,44,123,117,110,105,116,58,34,113,117,97,114,116,101,114,34,125,41,59,99,97,115,101,34,81,81,81,34,58,114,101,116,117,114,110,32,110,46,113,117,97,114,116,101,114,40,114,44,123,119,105,100,116,104,58,34,97,98,98,114,101,118,105,97,116,101,100,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,81,81,81,81,81,34,58,114,101,116,117,114,110,32,110,46,113,117,97,114,116,101,114,40,114,44,123,119,105,100,116,104,58,34,110,97,114,114,111,119,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,81,81,81,81,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,110,46,113,117,97,114,116,101,114,40,114,44,123,119,105,100,116,104,58,34,119,105,100,101,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,125,125,44,113,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,77,97,116,104,46,99,101,105,108,40,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,49,41,47,51,41,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,113,34,58,114,101,116,117,114,110,32,83,116,114,105,110,103,40,114,41,59,99,97,115,101,34,113,113,34,58,114,101,116,117,114,110,32,75,40,114,44,50,41,59,99,97,115,101,34,113,111,34,58,114,101,116,117,114,110,32,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,114,44,123,117,110,105,116,58,34,113,117,97,114,116,101,114,34,125,41,59,99,97,115,101,34,113,113,113,34,58,114,101,116,117,114,110,32,110,46,113,117,97,114,116,101,114,40,114,44,123,119,105,100,116,104,58,34,97,98,98,114,101,118,105,97,116,101,100,34,44,99,111,110,116,101,120,116,58,34,115,116,97,110,100,97,108,111,110,101,34,125,41,59,99,97,115,101,34,113,113,113,113,113,34,58,114,101,116,117,114,110,32,110,46,113,117,97,114,116,101,114,40,114,44,123,119,105,100,116,104,58,34,110,97,114,114,111,119,34,44,99,111,110,116,101,120,116,58,34,115,116,97,110,100,97,108,111,110,101,34,125,41,59,99,97,115,101,34,113,113,113,113,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,110,46,113,117,97,114,116,101,114,40,114,44,123,119,105,100,116,104,58,34,119,105,100,101,34,44,99,111,110,116,101,120,116,58,34,115,116,97,110,100,97,108,111,110,101,34,125,41,125,125,44,77,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,77,34,58,99,97,115,101,34,77,77,34,58,114,101,116,117,114,110,32,90,46,77,40,116,44,101,41,59,99,97,115,101,34,77,111,34,58,114,101,116,117,114,110,32,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,114,43,49,44,123,117,110,105,116,58,34,109,111,110,116,104,34,125,41,59,99,97,115,101,34,77,77,77,34,58,114,101,116,117,114,110,32,110,46,109,111,110,116,104,40,114,44,123,119,105,100,116,104,58,34,97,98,98,114,101,118,105,97,116,101,100,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,77,77,77,77,77,34,58,114,101,116,117,114,110,32,110,46,109,111,110,116,104,40,114,44,123,119,105,100,116,104,58,34,110,97,114,114,111,119,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,77,77,77,77,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,110,46,109,111,110,116,104,40,114,44,123,119,105,100,116,104,58,34,119,105,100,101,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,125,125,44,76,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,76,34,58,114,101,116,117,114,110,32,83,116,114,105,110,103,40,114,43,49,41,59,99,97,115,101,34,76,76,34,58,114,101,116,117,114,110,32,75,40,114,43,49,44,50,41,59,99,97,115,101,34,76,111,34,58,114,101,116,117,114,110,32,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,114,43,49,44,123,117,110,105,116,58,34,109,111,110,116,104,34,125,41,59,99,97,115,101,34,76,76,76,34,58,114,101,116,117,114,110,32,110,46,109,111,110,116,104,40,114,44,123,119,105,100,116,104,58,34,97,98,98,114,101,118,105,97,116,101,100,34,44,99,111,110,116,101,120,116,58,34,115,116,97,110,100,97,108,111,110,101,34,125,41,59,99,97,115,101,34,76,76,76,76,76,34,58,114,101,116,117,114,110,32,110,46,109,111,110,116,104,40,114,44,123,119,105,100,116,104,58,34,110,97,114,114,111,119,34,44,99,111,110,116,101,120,116,58,34,115,116,97,110,100,97,108,111,110,101,34,125,41,59,99,97,115,101,34,76,76,76,76,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,110,46,109,111,110,116,104,40,114,44,123,119,105,100,116,104,58,34,119,105,100,101,34,44,99,111,110,116,101,120,116,58,34,115,116,97,110,100,97,108,111,110,101,34,125,41,125,125,44,119,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,117,116,40,116,44,114,41,59,114,101,116,117,114,110,34,119,111,34,61,61,61,101,63,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,105,44,123,117,110,105,116,58,34,119,101,101,107,34,125,41,58,75,40,105,44,101,46,108,101,110,103,116,104,41,125,44,73,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,105,116,40,116,41,59,114,101,116,117,114,110,34,73,111,34,61,61,61,101,63,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,114,44,123,117,110,105,116,58,34,119,101,101,107,34,125,41,58,75,40,114,44,101,46,108,101,110,103,116,104,41,125,44,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,34,100,111,34,61,61,61,101,63,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,44,123,117,110,105,116,58,34,100,97,116,101,34,125,41,58,90,46,100,40,116,44,101,41,125,44,68,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,81,40,116,41,59,114,101,116,117,114,110,34,68,111,34,61,61,61,101,63,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,114,44,123,117,110,105,116,58,34,100,97,121,79,102,89,101,97,114,34,125,41,58,75,40,114,44,101,46,108,101,110,103,116,104,41,125,44,69,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,103,101,116,85,84,67,68,97,121,40,41,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,69,34,58,99,97,115,101,34,69,69,34,58,99,97,115,101,34,69,69,69,34,58,114,101,116,117,114,110,32,110,46,100,97,121,40,114,44,123,119,105,100,116,104,58,34,97,98,98,114,101,118,105,97,116,101,100,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,69,69,69,69,69,34,58,114,101,116,117,114,110,32,110,46,100,97,121,40,114,44,123,119,105,100,116,104,58,34,110,97,114,114,111,119,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,69,69,69,69,69,69,34,58,114,101,116,117,114,110,32,110,46,100,97,121,40,114,44,123,119,105,100,116,104,58,34,115,104,111,114,116,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,69,69,69,69,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,110,46,100,97,121,40,114,44,123,119,105,100,116,104,58,34,119,105,100,101,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,125,125,44,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,116,46,103,101,116,85,84,67,68,97,121,40,41,44,111,61,40,105,45,114,46,119,101,101,107,83,116,97,114,116,115,79,110,43,56,41,37,55,124,124,55,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,101,34,58,114,101,116,117,114,110,32,83,116,114,105,110,103,40,111,41,59,99,97,115,101,34,101,101,34,58,114,101,116,117,114,110,32,75,40,111,44,50,41,59,99,97,115,101,34,101,111,34,58,114,101,116,117,114,110,32,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,111,44,123,117,110,105,116,58,34,100,97,121,34,125,41,59,99,97,115,101,34,101,101,101,34,58,114,101,116,117,114,110,32,110,46,100,97,121,40,105,44,123,119,105,100,116,104,58,34,97,98,98,114,101,118,105,97,116,101,100,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,101,101,101,101,101,34,58,114,101,116,117,114,110,32,110,46,100,97,121,40,105,44,123,119,105,100,116,104,58,34,110,97,114,114,111,119,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,101,101,101,101,101,101,34,58,114,101,116,117,114,110,32,110,46,100,97,121,40,105,44,123,119,105,100,116,104,58,34,115,104,111,114,116,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,101,101,101,101,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,110,46,100,97,121,40,105,44,123,119,105,100,116,104,58,34,119,105,100,101,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,125,125,44,99,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,116,46,103,101,116,85,84,67,68,97,121,40,41,44,111,61,40,105,45,114,46,119,101,101,107,83,116,97,114,116,115,79,110,43,56,41,37,55,124,124,55,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,99,34,58,114,101,116,117,114,110,32,83,116,114,105,110,103,40,111,41,59,99,97,115,101,34,99,99,34,58,114,101,116,117,114,110,32,75,40,111,44,101,46,108,101,110,103,116,104,41,59,99,97,115,101,34,99,111,34,58,114,101,116,117,114,110,32,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,111,44,123,117,110,105,116,58,34,100,97,121,34,125,41,59,99,97,115,101,34,99,99,99,34,58,114,101,116,117,114,110,32,110,46,100,97,121,40,105,44,123,119,105,100,116,104,58,34,97,98,98,114,101,118,105,97,116,101,100,34,44,99,111,110,116,101,120,116,58,34,115,116,97,110,100,97,108,111,110,101,34,125,41,59,99,97,115,101,34,99,99,99,99,99,34,58,114,101,116,117,114,110,32,110,46,100,97,121,40,105,44,123,119,105,100,116,104,58,34,110,97,114,114,111,119,34,44,99,111,110,116,101,120,116,58,34,115,116,97,110,100,97,108,111,110,101,34,125,41,59,99,97,115,101,34,99,99,99,99,99,99,34,58,114,101,116,117,114,110,32,110,46,100,97,121,40,105,44,123,119,105,100,116,104,58,34,115,104,111,114,116,34,44,99,111,110,116,101,120,116,58,34,115,116,97,110,100,97,108,111,110,101,34,125,41,59,99,97,115,101,34,99,99,99,99,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,110,46,100,97,121,40,105,44,123,119,105,100,116,104,58,34,119,105,100,101,34,44,99,111,110,116,101,120,116,58,34,115,116,97,110,100,97,108,111,110,101,34,125,41,125,125,44,105,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,103,101,116,85,84,67,68,97,121,40,41,44,105,61,48,61,61,61,114,63,55,58,114,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,105,34,58,114,101,116,117,114,110,32,83,116,114,105,110,103,40,105,41,59,99,97,115,101,34,105,105,34,58,114,101,116,117,114,110,32,75,40,105,44,101,46,108,101,110,103,116,104,41,59,99,97,115,101,34,105,111,34,58,114,101,116,117,114,110,32,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,105,44,123,117,110,105,116,58,34,100,97,121,34,125,41,59,99,97,115,101,34,105,105,105,34,58,114,101,116,117,114,110,32,110,46,100,97,121,40,114,44,123,119,105,100,116,104,58,34,97,98,98,114,101,118,105,97,116,101,100,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,105,105,105,105,105,34,58,114,101,116,117,114,110,32,110,46,100,97,121,40,114,44,123,119,105,100,116,104,58,34,110,97,114,114,111,119,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,105,105,105,105,105,105,34,58,114,101,116,117,114,110,32,110,46,100,97,121,40,114,44,123,119,105,100,116,104,58,34,115,104,111,114,116,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,105,105,105,105,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,110,46,100,97,121,40,114,44,123,119,105,100,116,104,58,34,119,105,100,101,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,125,125,44,97,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,44,105,61,114,47,49,50,62,61,49,63,34,112,109,34,58,34,97,109,34,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,97,34,58,99,97,115,101,34,97,97,34,58,114,101,116,117,114,110,32,110,46,100,97,121,80,101,114,105,111,100,40,105,44,123,119,105,100,116,104,58,34,97,98,98,114,101,118,105,97,116,101,100,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,97,97,97,34,58,114,101,116,117,114,110,32,110,46,100,97,121,80,101,114,105,111,100,40,105,44,123,119,105,100,116,104,58,34,97,98,98,114,101,118,105,97,116,101,100,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,99,97,115,101,34,97,97,97,97,97,34,58,114,101,116,117,114,110,32,110,46,100,97,121,80,101,114,105,111,100,40,105,44,123,119,105,100,116,104,58,34,110,97,114,114,111,119,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,97,97,97,97,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,110,46,100,97,121,80,101,114,105,111,100,40,105,44,123,119,105,100,116,104,58,34,119,105,100,101,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,125,125,44,98,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,61,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,59,115,119,105,116,99,104,40,114,61,49,50,61,61,61,105,63,108,116,46,110,111,111,110,58,48,61,61,61,105,63,108,116,46,109,105,100,110,105,103,104,116,58,105,47,49,50,62,61,49,63,34,112,109,34,58,34,97,109,34,44,101,41,123,99,97,115,101,34,98,34,58,99,97,115,101,34,98,98,34,58,114,101,116,117,114,110,32,110,46,100,97,121,80,101,114,105,111,100,40,114,44,123,119,105,100,116,104,58,34,97,98,98,114,101,118,105,97,116,101,100,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,98,98,98,34,58,114,101,116,117,114,110,32,110,46,100,97,121,80,101,114,105,111,100,40,114,44,123,119,105,100,116,104,58,34,97,98,98,114,101,118,105,97,116,101,100,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,99,97,115,101,34,98,98,98,98,98,34,58,114,101,116,117,114,110,32,110,46,100,97,121,80,101,114,105,111,100,40,114,44,123,119,105,100,116,104,58,34,110,97,114,114,111,119,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,98,98,98,98,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,110,46,100,97,121,80,101,114,105,111,100,40,114,44,123,119,105,100,116,104,58,34,119,105,100,101,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,125,125,44,66,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,61,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,59,115,119,105,116,99,104,40,114,61,105,62,61,49,55,63,108,116,46,101,118,101,110,105,110,103,58,105,62,61,49,50,63,108,116,46,97,102,116,101,114,110,111,111,110,58,105,62,61,52,63,108,116,46,109,111,114,110,105,110,103,58,108,116,46,110,105,103,104,116,44,101,41,123,99,97,115,101,34,66,34,58,99,97,115,101,34,66,66,34,58,99,97,115,101,34,66,66,66,34,58,114,101,116,117,114,110,32,110,46,100,97,121,80,101,114,105,111,100,40,114,44,123,119,105,100,116,104,58,34,97,98,98,114,101,118,105,97,116,101,100,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,66,66,66,66,66,34,58,114,101,116,117,114,110,32,110,46,100,97,121,80,101,114,105,111,100,40,114,44,123,119,105,100,116,104,58,34,110,97,114,114,111,119,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,59,99,97,115,101,34,66,66,66,66,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,110,46,100,97,121,80,101,114,105,111,100,40,114,44,123,119,105,100,116,104,58,34,119,105,100,101,34,44,99,111,110,116,101,120,116,58,34,102,111,114,109,97,116,116,105,110,103,34,125,41,125,125,44,104,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,34,104,111,34,61,61,61,101,41,123,118,97,114,32,114,61,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,37,49,50,59,114,101,116,117,114,110,32,48,61,61,61,114,38,38,40,114,61,49,50,41,44,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,114,44,123,117,110,105,116,58,34,104,111,117,114,34,125,41,125,114,101,116,117,114,110,32,90,46,104,40,116,44,101,41,125,44,72,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,34,72,111,34,61,61,61,101,63,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,44,123,117,110,105,116,58,34,104,111,117,114,34,125,41,58,90,46,72,40,116,44,101,41,125,44,75,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,37,49,50,59,114,101,116,117,114,110,34,75,111,34,61,61,61,101,63,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,114,44,123,117,110,105,116,58,34,104,111,117,114,34,125,41,58,75,40,114,44,101,46,108,101,110,103,116,104,41,125,44,107,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,59,114,101,116,117,114,110,32,48,61,61,61,114,38,38,40,114,61,50,52,41,44,34,107,111,34,61,61,61,101,63,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,114,44,123,117,110,105,116,58,34,104,111,117,114,34,125,41,58,75,40,114,44,101,46,108,101,110,103,116,104,41,125,44,109,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,34,109,111,34,61,61,61,101,63,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,116,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,44,123,117,110,105,116,58,34,109,105,110,117,116,101,34,125,41,58,90,46,109,40,116,44,101,41,125,44,115,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,34,115,111,34,61,61,61,101,63,110,46,111,114,100,105,110,97,108,78,117,109,98,101,114,40,116,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,44,123,117,110,105,116,58,34,115,101,99,111,110,100,34,125,41,58,90,46,115,40,116,44,101,41,125,44,83,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,90,46,83,40,116,44,101,41,125,44,88,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,114,46,95,111,114,105,103,105,110,97,108,68,97,116,101,124,124,116,44,111,61,105,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,59,105,102,40,48,61,61,61,111,41,114,101,116,117,114,110,34,90,34,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,88,34,58,114,101,116,117,114,110,32,100,116,40,111,41,59,99,97,115,101,34,88,88,88,88,34,58,99,97,115,101,34,88,88,34,58,114,101,116,117,114,110,32,112,116,40,111,41,59,99,97,115,101,34,88,88,88,88,88,34,58,99,97,115,101,34,88,88,88,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,112,116,40,111,44,34,58,34,41,125,125,44,120,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,114,46,95,111,114,105,103,105,110,97,108,68,97,116,101,124,124,116,44,111,61,105,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,120,34,58,114,101,116,117,114,110,32,100,116,40,111,41,59,99,97,115,101,34,120,120,120,120,34,58,99,97,115,101,34,120,120,34,58,114,101,116,117,114,110,32,112,116,40,111,41,59,99,97,115,101,34,120,120,120,120,120,34,58,99,97,115,101,34,120,120,120,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,112,116,40,111,44,34,58,34,41,125,125,44,79,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,114,46,95,111,114,105,103,105,110,97,108,68,97,116,101,124,124,116,44,111,61,105,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,79,34,58,99,97,115,101,34,79,79,34,58,99,97,115,101,34,79,79,79,34,58,114,101,116,117,114,110,34,71,77,84,34,43,104,116,40,111,44,34,58,34,41,59,99,97,115,101,34,79,79,79,79,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,34,71,77,84,34,43,112,116,40,111,44,34,58,34,41,125,125,44,122,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,114,46,95,111,114,105,103,105,110,97,108,68,97,116,101,124,124,116,44,111,61,105,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,122,34,58,99,97,115,101,34,122,122,34,58,99,97,115,101,34,122,122,122,34,58,114,101,116,117,114,110,34,71,77,84,34,43,104,116,40,111,44,34,58,34,41,59,99,97,115,101,34,122,122,122,122,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,34,71,77,84,34,43,112,116,40,111,44,34,58,34,41,125,125,44,116,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,114,46,95,111,114,105,103,105,110,97,108,68,97,116,101,124,124,116,44,111,61,77,97,116,104,46,102,108,111,111,114,40,105,46,103,101,116,84,105,109,101,40,41,47,49,101,51,41,59,114,101,116,117,114,110,32,75,40,111,44,101,46,108,101,110,103,116,104,41,125,44,84,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,114,46,95,111,114,105,103,105,110,97,108,68,97,116,101,124,124,116,44,111,61,105,46,103,101,116,84,105,109,101,40,41,59,114,101,116,117,114,110,32,75,40,111,44,101,46,108,101,110,103,116,104,41,125,125,59,102,117,110,99,116,105,111,110,32,104,116,40,116,44,101,41,123,118,97,114,32,110,61,116,62,48,63,34,45,34,58,34,43,34,44,114,61,77,97,116,104,46,97,98,115,40,116,41,44,105,61,77,97,116,104,46,102,108,111,111,114,40,114,47,54,48,41,44,111,61,114,37,54,48,59,105,102,40,48,61,61,61,111,41,114,101,116,117,114,110,32,110,43,83,116,114,105,110,103,40,105,41,59,118,97,114,32,97,61,101,124,124,34,34,59,114,101,116,117,114,110,32,110,43,83,116,114,105,110,103,40,105,41,43,97,43,75,40,111,44,50,41,125,102,117,110,99,116,105,111,110,32,100,116,40,116,44,101,41,123,105,102,40,116,37,54,48,61,61,61,48,41,123,118,97,114,32,110,61,116,62,48,63,34,45,34,58,34,43,34,59,114,101,116,117,114,110,32,110,43,75,40,77,97,116,104,46,97,98,115,40,116,41,47,54,48,44,50,41,125,114,101,116,117,114,110,32,112,116,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,112,116,40,116,44,101,41,123,118,97,114,32,110,61,101,124,124,34,34,44,114,61,116,62,48,63,34,45,34,58,34,43,34,44,105,61,77,97,116,104,46,97,98,115,40,116,41,44,111,61,75,40,77,97,116,104,46,102,108,111,111,114,40,105,47,54,48,41,44,50,41,44,97,61,75,40,105,37,54,48,44,50,41,59,114,101,116,117,114,110,32,114,43,111,43,110,43,97,125,118,97,114,32,118,116,61,102,116,59,102,117,110,99,116,105,111,110,32,103,116,40,116,44,101,41,123,115,119,105,116,99,104,40,116,41,123,99,97,115,101,34,80,34,58,114,101,116,117,114,110,32,101,46,100,97,116,101,40,123,119,105,100,116,104,58,34,115,104,111,114,116,34,125,41,59,99,97,115,101,34,80,80,34,58,114,101,116,117,114,110,32,101,46,100,97,116,101,40,123,119,105,100,116,104,58,34,109,101,100,105,117,109,34,125,41,59,99,97,115,101,34,80,80,80,34,58,114,101,116,117,114,110,32,101,46,100,97,116,101,40,123,119,105,100,116,104,58,34,108,111,110,103,34,125,41,59,99,97,115,101,34,80,80,80,80,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,101,46,100,97,116,101,40,123,119,105,100,116,104,58,34,102,117,108,108,34,125,41,125,125,102,117,110,99,116,105,111,110,32,109,116,40,116,44,101,41,123,115,119,105,116,99,104,40,116,41,123,99,97,115,101,34,112,34,58,114,101,116,117,114,110,32,101,46,116,105,109,101,40,123,119,105,100,116,104,58,34,115,104,111,114,116,34,125,41,59,99,97,115,101,34,112,112,34,58,114,101,116,117,114,110,32,101,46,116,105,109,101,40,123,119,105,100,116,104,58,34,109,101,100,105,117,109,34,125,41,59,99,97,115,101,34,112,112,112,34,58,114,101,116,117,114,110,32,101,46,116,105,109,101,40,123,119,105,100,116,104,58,34,108,111,110,103,34,125,41,59,99,97,115,101,34,112,112,112,112,34,58,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,101,46,116,105,109,101,40,123,119,105,100,116,104,58,34,102,117,108,108,34,125,41,125,125,102,117,110,99,116,105,111,110,32,98,116,40,116,44,101,41,123,118,97,114,32,110,44,114,61,116,46,109,97,116,99,104,40,47,40,80,43,41,40,112,43,41,63,47,41,44,105,61,114,91,49,93,44,111,61,114,91,50,93,59,105,102,40,33,111,41,114,101,116,117,114,110,32,103,116,40,116,44,101,41,59,115,119,105,116,99,104,40,105,41,123,99,97,115,101,34,80,34,58,110,61,101,46,100,97,116,101,84,105,109,101,40,123,119,105,100,116,104,58,34,115,104,111,114,116,34,125,41,59,98,114,101,97,107,59,99,97,115,101,34,80,80,34,58,110,61,101,46,100,97,116,101,84,105,109,101,40,123,119,105,100,116,104,58,34,109,101,100,105,117,109,34,125,41,59,98,114,101,97,107,59,99,97,115,101,34,80,80,80,34,58,110,61,101,46,100,97,116,101,84,105,109,101,40,123,119,105,100,116,104,58,34,108,111,110,103,34,125,41,59,98,114,101,97,107,59,99,97,115,101,34,80,80,80,80,34,58,100,101,102,97,117,108,116,58,110,61,101,46,100,97,116,101,84,105,109,101,40,123,119,105,100,116,104,58,34,102,117,108,108,34,125,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,110,46,114,101,112,108,97,99,101,40,34,123,123,100,97,116,101,125,125,34,44,103,116,40,105,44,101,41,41,46,114,101,112,108,97,99,101,40,34,123,123,116,105,109,101,125,125,34,44,109,116,40,111,44,101,41,41,125,118,97,114,32,121,116,61,123,112,58,109,116,44,80,58,98,116,125,44,119,116,61,121,116,59,102,117,110,99,116,105,111,110,32,95,116,40,116,41,123,118,97,114,32,101,61,110,101,119,32,68,97,116,101,40,68,97,116,101,46,85,84,67,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,44,116,46,103,101,116,77,111,110,116,104,40,41,44,116,46,103,101,116,68,97,116,101,40,41,44,116,46,103,101,116,72,111,117,114,115,40,41,44,116,46,103,101,116,77,105,110,117,116,101,115,40,41,44,116,46,103,101,116,83,101,99,111,110,100,115,40,41,44,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,41,41,59,114,101,116,117,114,110,32,101,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,41,44,116,46,103,101,116,84,105,109,101,40,41,45,101,46,103,101,116,84,105,109,101,40,41,125,118,97,114,32,120,116,61,91,34,68,34,44,34,68,68,34,93,44,79,116,61,91,34,89,89,34,44,34,89,89,89,89,34,93,59,102,117,110,99,116,105,111,110,32,83,116,40,116,41,123,114,101,116,117,114,110,45,49,33,61,61,120,116,46,105,110,100,101,120,79,102,40,116,41,125,102,117,110,99,116,105,111,110,32,107,116,40,116,41,123,114,101,116,117,114,110,45,49,33,61,61,79,116,46,105,110,100,101,120,79,102,40,116,41,125,102,117,110,99,116,105,111,110,32,67,116,40,116,44,101,44,110,41,123,105,102,40,34,89,89,89,89,34,61,61,61,116,41,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,34,85,115,101,32,96,121,121,121,121,96,32,105,110,115,116,101,97,100,32,111,102,32,96,89,89,89,89,96,32,40,105,110,32,96,34,46,99,111,110,99,97,116,40,101,44,34,96,41,32,102,111,114,32,102,111,114,109,97,116,116,105,110,103,32,121,101,97,114,115,32,116,111,32,116,104,101,32,105,110,112,117,116,32,96,34,41,46,99,111,110,99,97,116,40,110,44,34,96,59,32,115,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,34,41,41,59,105,102,40,34,89,89,34,61,61,61,116,41,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,34,85,115,101,32,96,121,121,96,32,105,110,115,116,101,97,100,32,111,102,32,96,89,89,96,32,40,105,110,32,96,34,46,99,111,110,99,97,116,40,101,44,34,96,41,32,102,111,114,32,102,111,114,109,97,116,116,105,110,103,32,121,101,97,114,115,32,116,111,32,116,104,101,32,105,110,112,117,116,32,96,34,41,46,99,111,110,99,97,116,40,110,44,34,96,59,32,115,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,34,41,41,59,105,102,40,34,68,34,61,61,61,116,41,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,34,85,115,101,32,96,100,96,32,105,110,115,116,101,97,100,32,111,102,32,96,68,96,32,40,105,110,32,96,34,46,99,111,110,99,97,116,40,101,44,34,96,41,32,102,111,114,32,102,111,114,109,97,116,116,105,110,103,32,100,97,121,115,32,111,102,32,116,104,101,32,109,111,110,116,104,32,116,111,32,116,104,101,32,105,110,112,117,116,32,96,34,41,46,99,111,110,99,97,116,40,110,44,34,96,59,32,115,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,34,41,41,59,105,102,40,34,68,68,34,61,61,61,116,41,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,34,85,115,101,32,96,100,100,96,32,105,110,115,116,101,97,100,32,111,102,32,96,68,68,96,32,40,105,110,32,96,34,46,99,111,110,99,97,116,40,101,44,34,96,41,32,102,111,114,32,102,111,114,109,97,116,116,105,110,103,32,100,97,121,115,32,111,102,32,116,104,101,32,109,111,110,116,104,32,116,111,32,116,104,101,32,105,110,112,117,116,32,96,34,41,46,99,111,110,99,97,116,40,110,44,34,96,59,32,115,101,101,58,32,104,116,116,112,115,58,47,47,103,105,116,46,105,111,47,102,120,67,121,114,34,41,41,125,118,97,114,32,80,116,61,47,91,121,89,81,113,77,76,119,73,100,68,101,99,105,104,72,75,107,109,115,93,111,124,40,92,119,41,92,49,42,124,39,39,124,39,40,39,39,124,91,94,39,93,41,43,40,39,124,36,41,124,46,47,103,44,84,116,61,47,80,43,112,43,124,80,43,124,112,43,124,39,39,124,39,40,39,39,124,91,94,39,93,41,43,40,39,124,36,41,124,46,47,103,44,106,116,61,47,94,39,40,91,94,93,42,63,41,39,63,36,47,44,69,116,61,47,39,39,47,103,44,68,116,61,47,91,97,45,122,65,45,90,93,47,59,102,117,110,99,116,105,111,110,32,65,116,40,116,44,101,44,110,41,123,114,40,50,44,97,114,103,117,109,101,110,116,115,41,59,118,97,114,32,97,61,83,116,114,105,110,103,40,101,41,44,115,61,110,124,124,123,125,44,99,61,115,46,108,111,99,97,108,101,124,124,87,44,117,61,99,46,111,112,116,105,111,110,115,38,38,99,46,111,112,116,105,111,110,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,44,108,61,110,117,108,108,61,61,117,63,49,58,71,40,117,41,44,102,61,110,117,108,108,61,61,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,63,108,58,71,40,115,46,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,41,59,105,102,40,33,40,102,62,61,49,38,38,102,60,61,55,41,41,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,34,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,32,109,117,115,116,32,98,101,32,98,101,116,119,101,101,110,32,49,32,97,110,100,32,55,32,105,110,99,108,117,115,105,118,101,108,121,34,41,59,118,97,114,32,104,61,99,46,111,112,116,105,111,110,115,38,38,99,46,111,112,116,105,111,110,115,46,119,101,101,107,83,116,97,114,116,115,79,110,44,100,61,110,117,108,108,61,61,104,63,48,58,71,40,104,41,44,112,61,110,117,108,108,61,61,115,46,119,101,101,107,83,116,97,114,116,115,79,110,63,100,58,71,40,115,46,119,101,101,107,83,116,97,114,116,115,79,110,41,59,105,102,40,33,40,112,62,61,48,38,38,112,60,61,54,41,41,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,34,119,101,101,107,83,116,97,114,116,115,79,110,32,109,117,115,116,32,98,101,32,98,101,116,119,101,101,110,32,48,32,97,110,100,32,54,32,105,110,99,108,117,115,105,118,101,108,121,34,41,59,105,102,40,33,99,46,108,111,99,97,108,105,122,101,41,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,34,108,111,99,97,108,101,32,109,117,115,116,32,99,111,110,116,97,105,110,32,108,111,99,97,108,105,122,101,32,112,114,111,112,101,114,116,121,34,41,59,105,102,40,33,99,46,102,111,114,109,97,116,76,111,110,103,41,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,34,108,111,99,97,108,101,32,109,117,115,116,32,99,111,110,116,97,105,110,32,102,111,114,109,97,116,76,111,110,103,32,112,114,111,112,101,114,116,121,34,41,59,118,97,114,32,118,61,105,40,116,41,59,105,102,40,33,111,40,118,41,41,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,116,105,109,101,32,118,97,108,117,101,34,41,59,118,97,114,32,103,61,95,116,40,118,41,44,109,61,89,40,118,44,103,41,44,98,61,123,102,105,114,115,116,87,101,101,107,67,111,110,116,97,105,110,115,68,97,116,101,58,102,44,119,101,101,107,83,116,97,114,116,115,79,110,58,112,44,108,111,99,97,108,101,58,99,44,95,111,114,105,103,105,110,97,108,68,97,116,101,58,118,125,44,121,61,97,46,109,97,116,99,104,40,84,116,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,91,48,93,59,105,102,40,34,112,34,61,61,61,101,124,124,34,80,34,61,61,61,101,41,123,118,97,114,32,110,61,119,116,91,101,93,59,114,101,116,117,114,110,32,110,40,116,44,99,46,102,111,114,109,97,116,76,111,110,103,44,98,41,125,114,101,116,117,114,110,32,116,125,41,41,46,106,111,105,110,40,34,34,41,46,109,97,116,99,104,40,80,116,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,34,39,39,34,61,61,61,110,41,114,101,116,117,114,110,34,39,34,59,118,97,114,32,114,61,110,91,48,93,59,105,102,40,34,39,34,61,61,61,114,41,114,101,116,117,114,110,32,76,116,40,110,41,59,118,97,114,32,105,61,118,116,91,114,93,59,105,102,40,105,41,114,101,116,117,114,110,33,115,46,117,115,101,65,100,100,105,116,105,111,110,97,108,87,101,101,107,89,101,97,114,84,111,107,101,110,115,38,38,107,116,40,110,41,38,38,67,116,40,110,44,101,44,116,41,44,33,115,46,117,115,101,65,100,100,105,116,105,111,110,97,108,68,97,121,79,102,89,101,97,114,84,111,107,101,110,115,38,38,83,116,40,110,41,38,38,67,116,40,110,44,101,44,116,41,44,105,40,109,44,110,44,99,46,108,111,99,97,108,105,122,101,44,98,41,59,105,102,40,114,46,109,97,116,99,104,40,68,116,41,41,116,104,114,111,119,32,110,101,119,32,82,97,110,103,101,69,114,114,111,114,40,34,70,111,114,109,97,116,32,115,116,114,105,110,103,32,99,111,110,116,97,105,110,115,32,97,110,32,117,110,101,115,99,97,112,101,100,32,108,97,116,105,110,32,97,108,112,104,97,98,101,116,32,99,104,97,114,97,99,116,101,114,32,96,34,43,114,43,34,96,34,41,59,114,101,116,117,114,110,32,110,125,41,41,46,106,111,105,110,40,34,34,41,59,114,101,116,117,114,110,32,121,125,102,117,110,99,116,105,111,110,32,76,116,40,116,41,123,114,101,116,117,114,110,32,116,46,109,97,116,99,104,40,106,116,41,91,49,93,46,114,101,112,108,97,99,101,40,69,116,44,34,39,34,41,125,125,44,57,51,48,54,58,102,117,110,99,116,105,111,110,40,116,41,123,40,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,118,97,114,32,110,61,121,40,41,44,114,61,119,40,41,44,105,61,95,40,41,44,111,61,120,40,41,44,97,61,123,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,58,118,111,105,100,32,48,44,99,97,99,104,101,66,117,115,116,58,33,49,125,44,115,61,123,116,111,83,118,103,58,99,44,116,111,80,110,103,58,108,44,116,111,74,112,101,103,58,102,44,116,111,66,108,111,98,58,104,44,116,111,80,105,120,101,108,68,97,116,97,58,117,44,105,109,112,108,58,123,102,111,110,116,70,97,99,101,115,58,105,44,105,109,97,103,101,115,58,111,44,117,116,105,108,58,110,44,105,110,108,105,110,101,114,58,114,44,111,112,116,105,111,110,115,58,123,125,125,125,59,102,117,110,99,116,105,111,110,32,99,40,116,44,101,41,123,114,101,116,117,114,110,32,101,61,101,124,124,123,125,44,100,40,101,41,44,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,116,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,40,116,44,101,46,102,105,108,116,101,114,44,33,48,41,125,41,41,46,116,104,101,110,40,103,41,46,116,104,101,110,40,109,41,46,116,104,101,110,40,114,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,98,40,114,44,101,46,119,105,100,116,104,124,124,110,46,119,105,100,116,104,40,116,41,44,101,46,104,101,105,103,104,116,124,124,110,46,104,101,105,103,104,116,40,116,41,41,125,41,41,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,101,46,98,103,99,111,108,111,114,38,38,40,116,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,111,108,111,114,61,101,46,98,103,99,111,108,111,114,41,44,101,46,119,105,100,116,104,38,38,40,116,46,115,116,121,108,101,46,119,105,100,116,104,61,101,46,119,105,100,116,104,43,34,112,120,34,41,44,101,46,104,101,105,103,104,116,38,38,40,116,46,115,116,121,108,101,46,104,101,105,103,104,116,61,101,46,104,101,105,103,104,116,43,34,112,120,34,41,44,101,46,115,116,121,108,101,38,38,79,98,106,101,99,116,46,107,101,121,115,40,101,46,115,116,121,108,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,116,46,115,116,121,108,101,91,110,93,61,101,46,115,116,121,108,101,91,110,93,125,41,41,44,116,125,125,102,117,110,99,116,105,111,110,32,117,40,116,44,101,41,123,114,101,116,117,114,110,32,112,40,116,44,101,124,124,123,125,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,103,101,116,67,111,110,116,101,120,116,40,34,50,100,34,41,46,103,101,116,73,109,97,103,101,68,97,116,97,40,48,44,48,44,110,46,119,105,100,116,104,40,116,41,44,110,46,104,101,105,103,104,116,40,116,41,41,46,100,97,116,97,125,41,41,125,102,117,110,99,116,105,111,110,32,108,40,116,44,101,41,123,114,101,116,117,114,110,32,112,40,116,44,101,124,124,123,125,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,111,68,97,116,97,85,82,76,40,41,125,41,41,125,102,117,110,99,116,105,111,110,32,102,40,116,44,101,41,123,114,101,116,117,114,110,32,101,61,101,124,124,123,125,44,112,40,116,44,101,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,111,68,97,116,97,85,82,76,40,34,105,109,97,103,101,47,106,112,101,103,34,44,101,46,113,117,97,108,105,116,121,124,124,49,41,125,41,41,125,102,117,110,99,116,105,111,110,32,104,40,116,44,101,41,123,114,101,116,117,114,110,32,112,40,116,44,101,124,124,123,125,41,46,116,104,101,110,40,110,46,99,97,110,118,97,115,84,111,66,108,111,98,41,125,102,117,110,99,116,105,111,110,32,100,40,116,41,123,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,116,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,63,115,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,61,97,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,58,115,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,61,116,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,44,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,116,46,99,97,99,104,101,66,117,115,116,63,115,46,105,109,112,108,46,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,61,97,46,99,97,99,104,101,66,117,115,116,58,115,46,105,109,112,108,46,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,61,116,46,99,97,99,104,101,66,117,115,116,125,102,117,110,99,116,105,111,110,32,112,40,116,44,101,41,123,114,101,116,117,114,110,32,99,40,116,44,101,41,46,116,104,101,110,40,110,46,109,97,107,101,73,109,97,103,101,41,46,116,104,101,110,40,110,46,100,101,108,97,121,40,49,48,48,41,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,114,40,116,41,59,114,101,116,117,114,110,32,110,46,103,101,116,67,111,110,116,101,120,116,40,34,50,100,34,41,46,100,114,97,119,73,109,97,103,101,40,101,44,48,44,48,41,44,110,125,41,41,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,118,97,114,32,114,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,99,97,110,118,97,115,34,41,59,105,102,40,114,46,119,105,100,116,104,61,101,46,119,105,100,116,104,124,124,110,46,119,105,100,116,104,40,116,41,44,114,46,104,101,105,103,104,116,61,101,46,104,101,105,103,104,116,124,124,110,46,104,101,105,103,104,116,40,116,41,44,101,46,98,103,99,111,108,111,114,41,123,118,97,114,32,105,61,114,46,103,101,116,67,111,110,116,101,120,116,40,34,50,100,34,41,59,105,46,102,105,108,108,83,116,121,108,101,61,101,46,98,103,99,111,108,111,114,44,105,46,102,105,108,108,82,101,99,116,40,48,44,48,44,114,46,119,105,100,116,104,44,114,46,104,101,105,103,104,116,41,125,114,101,116,117,114,110,32,114,125,125,102,117,110,99,116,105,111,110,32,118,40,116,44,101,44,114,41,123,114,101,116,117,114,110,32,114,124,124,33,101,124,124,101,40,116,41,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,116,41,46,116,104,101,110,40,105,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,111,40,116,44,110,44,101,41,125,41,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,40,116,44,101,41,125,41,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,67,97,110,118,97,115,69,108,101,109,101,110,116,63,110,46,109,97,107,101,73,109,97,103,101,40,116,46,116,111,68,97,116,97,85,82,76,40,41,41,58,116,46,99,108,111,110,101,78,111,100,101,40,33,49,41,125,102,117,110,99,116,105,111,110,32,111,40,116,44,101,44,114,41,123,118,97,114,32,105,61,116,46,99,104,105,108,100,78,111,100,101,115,59,114,101,116,117,114,110,32,48,61,61,61,105,46,108,101,110,103,116,104,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,101,41,58,111,40,101,44,110,46,97,115,65,114,114,97,121,40,105,41,44,114,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,125,41,41,59,102,117,110,99,116,105,111,110,32,111,40,116,44,101,44,110,41,123,118,97,114,32,114,61,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,59,114,101,116,117,114,110,32,101,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,61,114,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,118,40,101,44,110,41,125,41,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,116,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,125,41,41,125,41,41,44,114,125,125,102,117,110,99,116,105,111,110,32,97,40,116,44,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,46,116,104,101,110,40,114,41,46,116,104,101,110,40,105,41,46,116,104,101,110,40,111,41,46,116,104,101,110,40,97,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,125,41,41,58,101,59,102,117,110,99,116,105,111,110,32,114,40,41,123,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,110,46,97,115,65,114,114,97,121,40,116,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,101,46,115,101,116,80,114,111,112,101,114,116,121,40,110,44,116,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,110,41,44,116,46,103,101,116,80,114,111,112,101,114,116,121,80,114,105,111,114,105,116,121,40,110,41,41,125,41,41,125,116,46,99,115,115,84,101,120,116,63,101,46,99,115,115,84,101,120,116,61,116,46,99,115,115,84,101,120,116,58,114,40,116,44,101,41,125,114,40,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,41,44,101,46,115,116,121,108,101,41,125,102,117,110,99,116,105,111,110,32,105,40,41,123,102,117,110,99,116,105,111,110,32,114,40,114,41,123,118,97,114,32,105,61,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,44,114,41,44,111,61,105,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,99,111,110,116,101,110,116,34,41,59,105,102,40,34,34,33,61,61,111,38,38,34,110,111,110,101,34,33,61,61,111,41,123,118,97,114,32,97,61,110,46,117,105,100,40,41,59,101,46,99,108,97,115,115,78,97,109,101,61,101,46,99,108,97,115,115,78,97,109,101,43,34,32,34,43,97,59,118,97,114,32,115,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,115,116,121,108,101,34,41,59,115,46,97,112,112,101,110,100,67,104,105,108,100,40,99,40,97,44,114,44,105,41,41,44,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,41,125,102,117,110,99,116,105,111,110,32,99,40,116,44,101,44,114,41,123,118,97,114,32,105,61,34,46,34,43,116,43,34,58,34,43,101,44,111,61,114,46,99,115,115,84,101,120,116,63,97,40,114,41,58,115,40,114,41,59,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,105,43,34,123,34,43,111,43,34,125,34,41,59,102,117,110,99,116,105,111,110,32,97,40,116,41,123,118,97,114,32,101,61,116,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,99,111,110,116,101,110,116,34,41,59,114,101,116,117,114,110,32,116,46,99,115,115,84,101,120,116,43,34,32,99,111,110,116,101,110,116,58,32,34,43,101,43,34,59,34,125,102,117,110,99,116,105,111,110,32,115,40,116,41,123,114,101,116,117,114,110,32,110,46,97,115,65,114,114,97,121,40,116,41,46,109,97,112,40,101,41,46,106,111,105,110,40,34,59,32,34,41,43,34,59,34,59,102,117,110,99,116,105,111,110,32,101,40,101,41,123,114,101,116,117,114,110,32,101,43,34,58,32,34,43,116,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,101,41,43,40,116,46,103,101,116,80,114,111,112,101,114,116,121,80,114,105,111,114,105,116,121,40,101,41,63,34,32,33,105,109,112,111,114,116,97,110,116,34,58,34,34,41,125,125,125,125,91,34,58,98,101,102,111,114,101,34,44,34,58,97,102,116,101,114,34,93,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,40,116,41,125,41,41,125,102,117,110,99,116,105,111,110,32,111,40,41,123,116,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,84,101,120,116,65,114,101,97,69,108,101,109,101,110,116,38,38,40,101,46,105,110,110,101,114,72,84,77,76,61,116,46,118,97,108,117,101,41,44,116,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,73,110,112,117,116,69,108,101,109,101,110,116,38,38,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,44,116,46,118,97,108,117,101,41,125,102,117,110,99,116,105,111,110,32,97,40,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,83,86,71,69,108,101,109,101,110,116,38,38,40,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,120,109,108,110,115,34,44,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,41,44,101,32,105,110,115,116,97,110,99,101,111,102,32,83,86,71,82,101,99,116,69,108,101,109,101,110,116,38,38,91,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,93,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,41,59,110,38,38,101,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,110,41,125,41,41,41,125,125,125,102,117,110,99,116,105,111,110,32,103,40,116,41,123,114,101,116,117,114,110,32,105,46,114,101,115,111,108,118,101,65,108,108,40,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,101,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,115,116,121,108,101,34,41,59,114,101,116,117,114,110,32,116,46,97,112,112,101,110,100,67,104,105,108,100,40,110,41,44,110,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,101,41,41,44,116,125,41,41,125,102,117,110,99,116,105,111,110,32,109,40,116,41,123,114,101,116,117,114,110,32,111,46,105,110,108,105,110,101,65,108,108,40,116,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,41,41,125,102,117,110,99,116,105,111,110,32,98,40,116,44,101,44,114,41,123,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,116,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,120,109,108,110,115,34,44,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,104,116,109,108,34,41,44,40,110,101,119,32,88,77,76,83,101,114,105,97,108,105,122,101,114,41,46,115,101,114,105,97,108,105,122,101,84,111,83,116,114,105,110,103,40,116,41,125,41,41,46,116,104,101,110,40,110,46,101,115,99,97,112,101,88,104,116,109,108,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,39,60,102,111,114,101,105,103,110,79,98,106,101,99,116,32,120,61,34,48,34,32,121,61,34,48,34,32,119,105,100,116,104,61,34,49,48,48,37,34,32,104,101,105,103,104,116,61,34,49,48,48,37,34,62,39,43,116,43,34,60,47,102,111,114,101,105,103,110,79,98,106,101,99,116,62,34,125,41,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,39,60,115,118,103,32,120,109,108,110,115,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,32,119,105,100,116,104,61,34,39,43,101,43,39,34,32,104,101,105,103,104,116,61,34,39,43,114,43,39,34,62,39,43,116,43,34,60,47,115,118,103,62,34,125,41,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,34,43,116,125,41,41,125,102,117,110,99,116,105,111,110,32,121,40,41,123,114,101,116,117,114,110,123,101,115,99,97,112,101,58,104,44,112,97,114,115,101,69,120,116,101,110,115,105,111,110,58,101,44,109,105,109,101,84,121,112,101,58,110,44,100,97,116,97,65,115,85,114,108,58,102,44,105,115,68,97,116,97,85,114,108,58,114,44,99,97,110,118,97,115,84,111,66,108,111,98,58,111,44,114,101,115,111,108,118,101,85,114,108,58,97,44,103,101,116,65,110,100,69,110,99,111,100,101,58,108,44,117,105,100,58,99,40,41,44,100,101,108,97,121,58,100,44,97,115,65,114,114,97,121,58,112,44,101,115,99,97,112,101,88,104,116,109,108,58,118,44,109,97,107,101,73,109,97,103,101,58,117,44,119,105,100,116,104,58,103,44,104,101,105,103,104,116,58,109,125,59,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,116,61,34,97,112,112,108,105,99,97,116,105,111,110,47,102,111,110,116,45,119,111,102,102,34,44,101,61,34,105,109,97,103,101,47,106,112,101,103,34,59,114,101,116,117,114,110,123,119,111,102,102,58,116,44,119,111,102,102,50,58,116,44,116,116,102,58,34,97,112,112,108,105,99,97,116,105,111,110,47,102,111,110,116,45,116,114,117,101,116,121,112,101,34,44,101,111,116,58,34,97,112,112,108,105,99,97,116,105,111,110,47,118,110,100,46,109,115,45,102,111,110,116,111,98,106,101,99,116,34,44,112,110,103,58,34,105,109,97,103,101,47,112,110,103,34,44,106,112,103,58,101,44,106,112,101,103,58,101,44,103,105,102,58,34,105,109,97,103,101,47,103,105,102,34,44,116,105,102,102,58,34,105,109,97,103,101,47,116,105,102,102,34,44,115,118,103,58,34,105,109,97,103,101,47,115,118,103,43,120,109,108,34,125,125,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,101,61,47,92,46,40,91,94,92,46,92,47,93,42,63,41,36,47,103,46,101,120,101,99,40,116,41,59,114,101,116,117,114,110,32,101,63,101,91,49,93,58,34,34,125,102,117,110,99,116,105,111,110,32,110,40,110,41,123,118,97,114,32,114,61,101,40,110,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,32,116,40,41,91,114,93,124,124,34,34,125,102,117,110,99,116,105,111,110,32,114,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,94,40,100,97,116,97,58,41,47,41,125,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,110,61,119,105,110,100,111,119,46,97,116,111,98,40,116,46,116,111,68,97,116,97,85,82,76,40,41,46,115,112,108,105,116,40,34,44,34,41,91,49,93,41,44,114,61,110,46,108,101,110,103,116,104,44,105,61,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,114,41,44,111,61,48,59,111,60,114,59,111,43,43,41,105,91,111,93,61,110,46,99,104,97,114,67,111,100,101,65,116,40,111,41,59,101,40,110,101,119,32,66,108,111,98,40,91,105,93,44,123,116,121,112,101,58,34,105,109,97,103,101,47,112,110,103,34,125,41,41,125,41,41,125,102,117,110,99,116,105,111,110,32,111,40,116,41,123,114,101,116,117,114,110,32,116,46,116,111,66,108,111,98,63,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,116,111,66,108,111,98,40,101,41,125,41,41,58,105,40,116,41,125,102,117,110,99,116,105,111,110,32,97,40,116,44,101,41,123,118,97,114,32,110,61,100,111,99,117,109,101,110,116,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,41,44,114,61,110,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,98,97,115,101,34,41,59,110,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,114,41,59,118,97,114,32,105,61,110,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,114,101,116,117,114,110,32,110,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,105,41,44,114,46,104,114,101,102,61,101,44,105,46,104,114,101,102,61,116,44,105,46,104,114,101,102,125,102,117,110,99,116,105,111,110,32,99,40,41,123,118,97,114,32,116,61,48,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,34,117,34,43,101,40,41,43,116,43,43,59,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,40,34,48,48,48,48,34,43,40,77,97,116,104,46,114,97,110,100,111,109,40,41,42,77,97,116,104,46,112,111,119,40,51,54,44,52,41,60,60,48,41,46,116,111,83,116,114,105,110,103,40,51,54,41,41,46,115,108,105,99,101,40,45,52,41,125,125,125,102,117,110,99,116,105,111,110,32,117,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,61,110,101,119,32,73,109,97,103,101,59,114,46,111,110,108,111,97,100,61,102,117,110,99,116,105,111,110,40,41,123,101,40,114,41,125,44,114,46,111,110,101,114,114,111,114,61,110,44,114,46,115,114,99,61,116,125,41,41,125,102,117,110,99,116,105,111,110,32,108,40,116,41,123,118,97,114,32,101,61,51,101,52,59,114,101,116,117,114,110,32,115,46,105,109,112,108,46,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,38,38,40,116,43,61,40,47,92,63,47,46,116,101,115,116,40,116,41,63,34,38,34,58,34,63,34,41,43,40,110,101,119,32,68,97,116,101,41,46,103,101,116,84,105,109,101,40,41,41,44,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,105,61,110,101,119,32,88,77,76,72,116,116,112,82,101,113,117,101,115,116,59,105,102,40,105,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,97,44,105,46,111,110,116,105,109,101,111,117,116,61,99,44,105,46,114,101,115,112,111,110,115,101,84,121,112,101,61,34,98,108,111,98,34,44,105,46,116,105,109,101,111,117,116,61,101,44,105,46,111,112,101,110,40,34,71,69,84,34,44,116,44,33,48,41,44,105,46,115,101,110,100,40,41,44,115,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,41,123,118,97,114,32,111,61,115,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,46,115,112,108,105,116,40,47,44,47,41,59,111,38,38,111,91,49,93,38,38,40,114,61,111,91,49,93,41,125,102,117,110,99,116,105,111,110,32,97,40,41,123,105,102,40,52,61,61,61,105,46,114,101,97,100,121,83,116,97,116,101,41,105,102,40,50,48,48,61,61,61,105,46,115,116,97,116,117,115,41,123,118,97,114,32,101,61,110,101,119,32,70,105,108,101,82,101,97,100,101,114,59,101,46,111,110,108,111,97,100,101,110,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,101,46,114,101,115,117,108,116,46,115,112,108,105,116,40,47,44,47,41,91,49,93,59,110,40,116,41,125,44,101,46,114,101,97,100,65,115,68,97,116,97,85,82,76,40,105,46,114,101,115,112,111,110,115,101,41,125,101,108,115,101,32,114,63,110,40,114,41,58,117,40,34,99,97,110,110,111,116,32,102,101,116,99,104,32,114,101,115,111,117,114,99,101,58,32,34,43,116,43,34,44,32,115,116,97,116,117,115,58,32,34,43,105,46,115,116,97,116,117,115,41,125,102,117,110,99,116,105,111,110,32,99,40,41,123,114,63,110,40,114,41,58,117,40,34,116,105,109,101,111,117,116,32,111,102,32,34,43,101,43,34,109,115,32,111,99,99,117,114,101,100,32,119,104,105,108,101,32,102,101,116,99,104,105,110,103,32,114,101,115,111,117,114,99,101,58,32,34,43,116,41,125,102,117,110,99,116,105,111,110,32,117,40,116,41,123,99,111,110,115,111,108,101,46,101,114,114,111,114,40,116,41,44,110,40,34,34,41,125,125,41,41,125,102,117,110,99,116,105,111,110,32,102,40,116,44,101,41,123,114,101,116,117,114,110,34,100,97,116,97,58,34,43,101,43,34,59,98,97,115,101,54,52,44,34,43,116,125,102,117,110,99,116,105,111,110,32,104,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,47,40,91,46,42,43,63,94,36,123,125,40,41,124,92,91,92,93,92,47,92,92,93,41,47,103,44,34,92,92,36,49,34,41,125,102,117,110,99,116,105,111,110,32,100,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,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,110,41,123,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,110,40,101,41,125,41,44,116,41,125,41,41,125,125,102,117,110,99,116,105,111,110,32,112,40,116,41,123,102,111,114,40,118,97,114,32,101,61,91,93,44,110,61,116,46,108,101,110,103,116,104,44,114,61,48,59,114,60,110,59,114,43,43,41,101,46,112,117,115,104,40,116,91,114,93,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,118,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,47,35,47,103,44,34,37,50,51,34,41,46,114,101,112,108,97,99,101,40,47,92,110,47,103,44,34,37,48,65,34,41,125,102,117,110,99,116,105,111,110,32,103,40,116,41,123,118,97,114,32,101,61,98,40,116,44,34,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,34,41,44,110,61,98,40,116,44,34,98,111,114,100,101,114,45,114,105,103,104,116,45,119,105,100,116,104,34,41,59,114,101,116,117,114,110,32,116,46,115,99,114,111,108,108,87,105,100,116,104,43,101,43,110,125,102,117,110,99,116,105,111,110,32,109,40,116,41,123,118,97,114,32,101,61,98,40,116,44,34,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,34,41,44,110,61,98,40,116,44,34,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,34,41,59,114,101,116,117,114,110,32,116,46,115,99,114,111,108,108,72,101,105,103,104,116,43,101,43,110,125,102,117,110,99,116,105,111,110,32,98,40,116,44,101,41,123,118,97,114,32,110,61,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,41,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,101,41,59,114,101,116,117,114,110,32,112,97,114,115,101,70,108,111,97,116,40,110,46,114,101,112,108,97,99,101,40,34,112,120,34,44,34,34,41,41,125,125,102,117,110,99,116,105,111,110,32,119,40,41,123,118,97,114,32,116,61,47,117,114,108,92,40,91,39,34,93,63,40,91,94,39,34,93,43,63,41,91,39,34,93,63,92,41,47,103,59,114,101,116,117,114,110,123,105,110,108,105,110,101,65,108,108,58,111,44,115,104,111,117,108,100,80,114,111,99,101,115,115,58,101,44,105,109,112,108,58,123,114,101,97,100,85,114,108,115,58,114,44,105,110,108,105,110,101,58,105,125,125,59,102,117,110,99,116,105,111,110,32,101,40,101,41,123,114,101,116,117,114,110,45,49,33,61,61,101,46,115,101,97,114,99,104,40,116,41,125,102,117,110,99,116,105,111,110,32,114,40,101,41,123,118,97,114,32,114,44,105,61,91,93,59,119,104,105,108,101,40,110,117,108,108,33,61,61,40,114,61,116,46,101,120,101,99,40,101,41,41,41,105,46,112,117,115,104,40,114,91,49,93,41,59,114,101,116,117,114,110,32,105,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,110,46,105,115,68,97,116,97,85,114,108,40,116,41,125,41,41,125,102,117,110,99,116,105,111,110,32,105,40,116,44,101,44,114,44,105,41,123,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,101,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,63,110,46,114,101,115,111,108,118,101,85,114,108,40,116,44,114,41,58,116,125,41,41,46,116,104,101,110,40,105,124,124,110,46,103,101,116,65,110,100,69,110,99,111,100,101,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,100,97,116,97,65,115,85,114,108,40,116,44,110,46,109,105,109,101,84,121,112,101,40,101,41,41,125,41,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,111,40,101,41,44,34,36,49,34,43,110,43,34,36,51,34,41,125,41,41,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,82,101,103,69,120,112,40,34,40,117,114,108,92,92,40,91,39,92,34,93,63,41,40,34,43,110,46,101,115,99,97,112,101,40,116,41,43,34,41,40,91,39,92,34,93,63,92,92,41,41,34,44,34,103,34,41,125,125,102,117,110,99,116,105,111,110,32,111,40,116,44,110,44,111,41,123,114,101,116,117,114,110,32,97,40,41,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,116,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,116,41,46,116,104,101,110,40,114,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,116,41,59,114,101,116,117,114,110,32,101,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,61,114,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,105,40,101,44,116,44,110,44,111,41,125,41,41,125,41,41,44,114,125,41,41,59,102,117,110,99,116,105,111,110,32,97,40,41,123,114,101,116,117,114,110,33,101,40,116,41,125,125,125,102,117,110,99,116,105,111,110,32,95,40,41,123,114,101,116,117,114,110,123,114,101,115,111,108,118,101,65,108,108,58,116,44,105,109,112,108,58,123,114,101,97,100,65,108,108,58,101,125,125,59,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,101,40,100,111,99,117,109,101,110,116,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,115,111,108,118,101,40,41,125,41,41,41,125,41,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,106,111,105,110,40,34,92,110,34,41,125,41,41,125,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,110,46,97,115,65,114,114,97,121,40,100,111,99,117,109,101,110,116,46,115,116,121,108,101,83,104,101,101,116,115,41,41,46,116,104,101,110,40,101,41,46,116,104,101,110,40,116,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,109,97,112,40,105,41,125,41,41,59,102,117,110,99,116,105,111,110,32,116,40,116,41,123,114,101,116,117,114,110,32,116,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,121,112,101,61,61,61,67,83,83,82,117,108,101,46,70,79,78,84,95,70,65,67,69,95,82,85,76,69,125,41,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,115,104,111,117,108,100,80,114,111,99,101,115,115,40,116,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,115,114,99,34,41,41,125,41,41,125,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,101,61,91,93,59,114,101,116,117,114,110,32,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,114,121,123,110,46,97,115,65,114,114,97,121,40,116,46,99,115,115,82,117,108,101,115,124,124,91,93,41,46,102,111,114,69,97,99,104,40,101,46,112,117,115,104,46,98,105,110,100,40,101,41,41,125,99,97,116,99,104,40,114,41,123,99,111,110,115,111,108,101,46,108,111,103,40,34,69,114,114,111,114,32,119,104,105,108,101,32,114,101,97,100,105,110,103,32,67,83,83,32,114,117,108,101,115,32,102,114,111,109,32,34,43,116,46,104,114,101,102,44,114,46,116,111,83,116,114,105,110,103,40,41,41,125,125,41,41,44,101,125,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,123,114,101,115,111,108,118,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,40,116,46,112,97,114,101,110,116,83,116,121,108,101,83,104,101,101,116,124,124,123,125,41,46,104,114,101,102,59,114,101,116,117,114,110,32,114,46,105,110,108,105,110,101,65,108,108,40,116,46,99,115,115,84,101,120,116,44,101,41,125,44,115,114,99,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,115,114,99,34,41,125,125,125,125,125,102,117,110,99,116,105,111,110,32,120,40,41,123,114,101,116,117,114,110,123,105,110,108,105,110,101,65,108,108,58,101,44,105,109,112,108,58,123,110,101,119,73,109,97,103,101,58,116,125,125,59,102,117,110,99,116,105,111,110,32,116,40,116,41,123,114,101,116,117,114,110,123,105,110,108,105,110,101,58,101,125,59,102,117,110,99,116,105,111,110,32,101,40,101,41,123,114,101,116,117,114,110,32,110,46,105,115,68,97,116,97,85,114,108,40,116,46,115,114,99,41,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,116,46,115,114,99,41,46,116,104,101,110,40,101,124,124,110,46,103,101,116,65,110,100,69,110,99,111,100,101,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,100,97,116,97,65,115,85,114,108,40,101,44,110,46,109,105,109,101,84,121,112,101,40,116,46,115,114,99,41,41,125,41,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,116,46,111,110,108,111,97,100,61,110,44,116,46,111,110,101,114,114,111,114,61,114,44,116,46,115,114,99,61,101,125,41,41,125,41,41,125,125,102,117,110,99,116,105,111,110,32,101,40,105,41,123,114,101,116,117,114,110,32,105,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,63,111,40,105,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,73,109,97,103,101,69,108,101,109,101,110,116,63,116,40,105,41,46,105,110,108,105,110,101,40,41,58,80,114,111,109,105,115,101,46,97,108,108,40,110,46,97,115,65,114,114,97,121,40,105,46,99,104,105,108,100,78,111,100,101,115,41,46,109,97,112,40,40,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,41,41,125,41,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,105,41,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,118,97,114,32,101,61,116,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,98,97,99,107,103,114,111,117,110,100,34,41,59,114,101,116,117,114,110,32,101,63,114,46,105,110,108,105,110,101,65,108,108,40,101,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,34,98,97,99,107,103,114,111,117,110,100,34,44,101,44,116,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,80,114,105,111,114,105,116,121,40,34,98,97,99,107,103,114,111,117,110,100,34,41,41,125,41,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,41,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,116,41,125,125,125,116,46,101,120,112,111,114,116,115,61,115,125,41,40,41,125,44,56,50,53,54,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,123,125,59,102,117,110,99,116,105,111,110,32,110,40,114,41,123,105,102,40,101,91,114,93,41,114,101,116,117,114,110,32,101,91,114,93,46,101,120,112,111,114,116,115,59,118,97,114,32,105,61,101,91,114,93,61,123,105,58,114,44,108,58,33,49,44,101,120,112,111,114,116,115,58,123,125,125,59,114,101,116,117,114,110,32,116,91,114,93,46,99,97,108,108,40,105,46,101,120,112,111,114,116,115,44,105,44,105,46,101,120,112,111,114,116,115,44,110,41,44,105,46,108,61,33,48,44,105,46,101,120,112,111,114,116,115,125,114,101,116,117,114,110,32,110,46,109,61,116,44,110,46,99,61,101,44,110,46,100,61,102,117,110,99,116,105,111,110,40,116,44,101,44,114,41,123,110,46,111,40,116,44,101,41,124,124,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,101,110,117,109,101,114,97,98,108,101,58,33,48,44,103,101,116,58,114,125,41,125,44,110,46,114,61,102,117,110,99,116,105,111,110,40,116,41,123,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,38,38,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,44,123,118,97,108,117,101,58,34,77,111,100,117,108,101,34,125,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,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,44,110,46,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,49,38,101,38,38,40,116,61,110,40,116,41,41,44,56,38,101,41,114,101,116,117,114,110,32,116,59,105,102,40,52,38,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,41,114,101,116,117,114,110,32,116,59,118,97,114,32,114,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,105,102,40,110,46,114,40,114,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,114,44,34,100,101,102,97,117,108,116,34,44,123,101,110,117,109,101,114,97,98,108,101,58,33,48,44,118,97,108,117,101,58,116,125,41,44,50,38,101,38,38,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,116,41,102,111,114,40,118,97,114,32,105,32,105,110,32,116,41,110,46,100,40,114,44,105,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,91,101,93,125,46,98,105,110,100,40,110,117,108,108,44,105,41,41,59,114,101,116,117,114,110,32,114,125,44,110,46,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,100,101,102,97,117,108,116,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,59,114,101,116,117,114,110,32,110,46,100,40,101,44,34,97,34,44,101,41,44,101,125,44,110,46,111,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,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,116,44,101,41,125,44,110,46,112,61,34,34,44,110,40,110,46,115,61,48,41,125,40,91,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,46,114,40,101,41,59,118,97,114,32,114,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,46,105,115,79,112,101,110,63,110,40,34,100,105,118,34,44,123,114,101,102,58,34,99,111,110,116,97,105,110,101,114,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,99,111,110,116,97,105,110,101,114,32,102,115,108,105,103,104,116,98,111,120,45,102,117,108,108,45,100,105,109,101,110,115,105,111,110,32,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,45,115,116,114,111,110,103,34,125,44,91,110,40,34,67,97,112,116,105,111,110,115,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,78,97,118,101,114,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,83,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,83,108,105,100,101,66,117,116,116,111,110,115,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,83,108,105,100,101,115,104,111,119,66,97,114,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,116,46,95,118,40,34,32,34,41,44,116,46,102,115,76,105,103,104,116,98,111,120,83,116,111,114,101,91,116,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,112,114,111,112,115,46,100,105,115,97,98,108,101,84,104,117,109,98,115,63,116,46,95,101,40,41,58,110,40,34,84,104,117,109,98,115,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,93,44,49,41,58,116,46,95,101,40,41,125,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,105,61,34,102,115,108,105,103,104,116,98,111,120,45,34,44,111,61,34,34,46,99,111,110,99,97,116,40,105,44,34,115,116,121,108,101,115,34,41,44,97,61,34,34,46,99,111,110,99,97,116,40,105,44,34,99,117,114,115,111,114,45,103,114,97,98,98,105,110,103,34,41,44,115,61,34,34,46,99,111,110,99,97,116,40,105,44,34,102,108,101,120,45,99,101,110,116,101,114,101,100,34,41,44,99,61,34,34,46,99,111,110,99,97,116,40,105,44,34,111,112,101,110,34,41,44,117,61,34,34,46,99,111,110,99,97,116,40,105,44,34,116,114,97,110,115,102,111,114,109,45,116,114,97,110,115,105,116,105,111,110,34,41,44,108,61,34,34,46,99,111,110,99,97,116,40,105,44,34,102,97,100,101,45,105,110,34,41,44,102,61,34,34,46,99,111,110,99,97,116,40,105,44,34,102,97,100,101,45,111,117,116,34,41,44,104,61,108,43,34,45,115,116,114,111,110,103,34,44,100,61,102,43,34,45,115,116,114,111,110,103,34,44,112,61,34,34,46,99,111,110,99,97,116,40,105,44,34,99,97,112,116,105,111,110,34,41,43,34,45,97,99,116,105,118,101,34,44,118,61,34,34,46,99,111,110,99,97,116,40,105,44,34,111,112,97,99,105,116,121,45,34,41,44,103,61,34,34,46,99,111,110,99,97,116,40,118,44,34,48,34,41,44,109,61,34,34,46,99,111,110,99,97,116,40,118,44,34,49,34,41,44,98,61,34,34,46,99,111,110,99,97,116,40,105,44,34,115,111,117,114,99,101,34,41,44,121,61,34,34,46,99,111,110,99,97,116,40,98,44,34,45,119,114,97,112,112,101,114,115,45,99,111,110,116,97,105,110,101,114,45,112,105,110,99,104,105,110,103,34,41,44,119,61,34,34,46,99,111,110,99,97,116,40,105,44,34,116,104,117,109,98,34,41,44,95,61,119,43,34,115,45,97,99,116,105,118,101,34,44,120,61,119,43,34,45,97,99,116,105,118,101,34,59,102,117,110,99,116,105,111,110,32,79,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,115,116,121,108,101,34,41,59,116,46,99,108,97,115,115,78,97,109,101,61,111,44,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,34,46,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,123,97,110,105,109,97,116,105,111,110,58,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,32,46,51,115,32,99,117,98,105,99,45,98,101,122,105,101,114,40,48,44,48,44,46,55,44,49,41,125,46,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,111,117,116,123,97,110,105,109,97,116,105,111,110,58,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,111,117,116,32,46,51,115,32,101,97,115,101,125,46,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,45,115,116,114,111,110,103,123,97,110,105,109,97,116,105,111,110,58,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,45,115,116,114,111,110,103,32,46,51,115,32,99,117,98,105,99,45,98,101,122,105,101,114,40,48,44,48,44,46,55,44,49,41,125,46,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,111,117,116,45,115,116,114,111,110,103,123,97,110,105,109,97,116,105,111,110,58,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,111,117,116,45,115,116,114,111,110,103,32,46,51,115,32,101,97,115,101,125,64,107,101,121,102,114,97,109,101,115,32,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,123,102,114,111,109,123,111,112,97,99,105,116,121,58,46,54,53,125,116,111,123,111,112,97,99,105,116,121,58,49,125,125,64,107,101,121,102,114,97,109,101,115,32,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,111,117,116,123,102,114,111,109,123,111,112,97,99,105,116,121,58,46,51,53,125,116,111,123,111,112,97,99,105,116,121,58,48,125,125,64,107,101,121,102,114,97,109,101,115,32,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,105,110,45,115,116,114,111,110,103,123,102,114,111,109,123,111,112,97,99,105,116,121,58,46,51,125,116,111,123,111,112,97,99,105,116,121,58,49,125,125,64,107,101,121,102,114,97,109,101,115,32,102,115,108,105,103,104,116,98,111,120,45,102,97,100,101,45,111,117,116,45,115,116,114,111,110,103,123,102,114,111,109,123,111,112,97,99,105,116,121,58,49,125,116,111,123,111,112,97,99,105,116,121,58,48,125,125,46,102,115,108,105,103,104,116,98,111,120,45,115,99,97,108,101,45,105,110,123,97,110,105,109,97,116,105,111,110,58,102,115,108,105,103,104,116,98,111,120,45,115,99,97,108,101,45,105,110,32,46,53,115,32,101,97,115,101,125,64,107,101,121,102,114,97,109,101,115,32,102,115,108,105,103,104,116,98,111,120,45,115,99,97,108,101,45,105,110,123,102,114,111,109,123,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,53,41,125,116,111,123,111,112,97,99,105,116,121,58,49,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,125,125,46,102,115,108,105,103,104,116,98,111,120,45,97,98,115,111,108,117,116,101,100,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,125,46,102,115,108,105,103,104,116,98,111,120,45,99,117,114,115,111,114,45,103,114,97,98,98,105,110,103,123,99,117,114,115,111,114,58,103,114,97,98,98,105,110,103,33,105,109,112,111,114,116,97,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,102,117,108,108,45,100,105,109,101,110,115,105,111,110,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,125,46,102,115,108,105,103,104,116,98,111,120,45,111,112,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,104,101,105,103,104,116,58,49,48,48,37,125,46,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,123,100,105,115,112,108,97,121,58,102,108,101,120,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,102,115,108,105,103,104,116,98,111,120,45,111,112,97,99,105,116,121,45,48,123,111,112,97,99,105,116,121,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,111,112,97,99,105,116,121,45,49,123,111,112,97,99,105,116,121,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,115,99,114,111,108,108,98,97,114,102,105,120,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,55,112,120,125,46,102,115,108,105,103,104,116,98,111,120,45,116,114,97,110,115,102,111,114,109,45,116,114,97,110,115,105,116,105,111,110,123,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,125,46,102,115,108,105,103,104,116,98,111,120,45,99,111,110,116,97,105,110,101,114,123,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,115,97,110,115,45,115,101,114,105,102,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,114,103,98,97,40,51,48,44,51,48,44,51,48,44,46,57,41,44,35,48,48,48,32,49,56,49,48,37,41,59,122,45,105,110,100,101,120,58,49,48,48,48,48,48,48,48,48,48,59,116,111,117,99,104,45,97,99,116,105,111,110,58,110,111,110,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,99,111,110,116,97,105,110,101,114,32,42,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,102,115,108,105,103,104,116,98,111,120,45,115,118,103,45,112,97,116,104,123,116,114,97,110,115,105,116,105,111,110,58,102,105,108,108,32,46,49,53,115,32,101,97,115,101,59,102,105,108,108,58,35,100,49,100,50,100,50,125,46,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,58,97,117,116,111,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,108,101,102,116,58,53,48,37,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,45,53,48,37,41,59,119,105,100,116,104,58,54,55,112,120,59,104,101,105,103,104,116,58,54,55,112,120,125,46,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,32,100,105,118,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,53,52,112,120,59,104,101,105,103,104,116,58,53,52,112,120,59,109,97,114,103,105,110,58,54,112,120,59,98,111,114,100,101,114,58,53,112,120,32,115,111,108,105,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,57,57,57,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,97,110,105,109,97,116,105,111,110,58,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,32,49,46,50,115,32,99,117,98,105,99,45,98,101,122,105,101,114,40,46,53,44,48,44,46,53,44,49,41,32,105,110,102,105,110,105,116,101,125,46,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,32,100,105,118,58,110,116,104,45,99,104,105,108,100,40,49,41,123,97,110,105,109,97,116,105,111,110,45,100,101,108,97,121,58,45,46,52,53,115,125,46,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,32,100,105,118,58,110,116,104,45,99,104,105,108,100,40,50,41,123,97,110,105,109,97,116,105,111,110,45,100,101,108,97,121,58,45,46,51,115,125,46,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,32,100,105,118,58,110,116,104,45,99,104,105,108,100,40,51,41,123,97,110,105,109,97,116,105,111,110,45,100,101,108,97,121,58,45,46,49,53,115,125,64,107,101,121,102,114,97,109,101,115,32,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,123,48,37,123,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,48,41,125,49,48,48,37,123,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,125,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,108,111,97,100,101,114,123,119,105,100,116,104,58,53,52,112,120,33,105,109,112,111,114,116,97,110,116,59,104,101,105,103,104,116,58,53,52,112,120,33,105,109,112,111,114,116,97,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,108,111,97,100,101,114,32,100,105,118,123,98,111,114,100,101,114,45,119,105,100,116,104,58,52,112,120,33,105,109,112,111,114,116,97,110,116,59,119,105,100,116,104,58,52,52,112,120,33,105,109,112,111,114,116,97,110,116,59,104,101,105,103,104,116,58,52,52,112,120,33,105,109,112,111,114,116,97,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,110,97,118,123,104,101,105,103,104,116,58,52,53,112,120,59,119,105,100,116,104,58,49,48,48,37,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,110,117,109,98,101,114,45,99,111,110,116,97,105,110,101,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,104,101,105,103,104,116,58,49,48,48,37,59,102,111,110,116,45,115,105,122,101,58,49,53,112,120,59,99,111,108,111,114,58,35,100,55,100,55,100,55,59,122,45,105,110,100,101,120,58,48,59,109,97,120,45,119,105,100,116,104,58,53,53,112,120,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,110,117,109,98,101,114,45,99,111,110,116,97,105,110,101,114,32,46,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,123,104,101,105,103,104,116,58,49,48,48,37,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,97,115,104,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,58,48,32,53,112,120,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,49,50,112,120,59,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,49,53,100,101,103,41,59,98,97,99,107,103,114,111,117,110,100,58,35,102,102,102,125,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,51,59,114,105,103,104,116,58,48,59,116,111,112,58,48,59,104,101,105,103,104,116,58,52,53,112,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,51,53,44,51,53,44,51,53,44,46,54,53,41,125,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,123,104,101,105,103,104,116,58,49,48,48,37,59,119,105,100,116,104,58,52,53,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,58,104,111,118,101,114,32,46,102,115,108,105,103,104,116,98,111,120,45,115,118,103,45,112,97,116,104,123,102,105,108,108,58,35,102,102,102,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,123,100,105,115,112,108,97,121,58,102,108,101,120,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,49,50,112,120,32,49,50,112,120,32,49,50,112,120,32,54,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,122,45,105,110,100,101,120,58,51,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,52,55,54,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,123,112,97,100,100,105,110,103,58,50,50,112,120,32,50,50,112,120,32,50,50,112,120,32,54,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,123,112,97,100,100,105,110,103,58,51,48,112,120,32,51,48,112,120,32,51,48,112,120,32,54,112,120,125,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,58,104,111,118,101,114,32,46,102,115,108,105,103,104,116,98,111,120,45,115,118,103,45,112,97,116,104,123,102,105,108,108,58,35,102,49,102,49,102,49,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,123,112,97,100,100,105,110,103,58,57,112,120,59,102,111,110,116,45,115,105,122,101,58,50,54,112,120,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,51,53,44,51,53,44,51,53,44,46,54,53,41,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,123,112,97,100,100,105,110,103,58,49,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,54,48,48,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,123,112,97,100,100,105,110,103,58,49,49,112,120,125,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,45,112,114,101,118,105,111,117,115,123,108,101,102,116,58,48,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,52,55,53,46,57,57,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,45,112,114,101,118,105,111,117,115,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,112,120,125,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,45,110,101,120,116,123,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,50,112,120,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,52,55,54,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,45,110,101,120,116,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,50,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,45,110,101,120,116,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,52,55,54,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,45,110,101,120,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,54,112,120,125,125,46,102,115,108,105,103,104,116,98,111,120,45,100,111,119,110,45,101,118,101,110,116,45,100,101,116,101,99,116,111,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,115,119,105,112,105,110,103,45,104,111,118,101,114,101,114,123,122,45,105,110,100,101,120,58,52,125,46,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,115,104,111,119,45,98,97,114,123,119,105,100,116,104,58,48,59,104,101,105,103,104,116,58,50,112,120,59,122,45,105,110,100,101,120,58,52,59,111,112,97,99,105,116,121,58,48,59,98,97,99,107,103,114,111,117,110,100,58,35,102,102,102,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,52,115,125,46,102,115,108,105,103,104,116,98,111,120,45,105,110,118,97,108,105,100,45,102,105,108,101,45,119,114,97,112,112,101,114,123,102,111,110,116,45,115,105,122,101,58,50,52,112,120,59,99,111,108,111,114,58,35,101,97,101,98,101,98,59,109,97,114,103,105,110,58,97,117,116,111,125,46,102,115,108,105,103,104,116,98,111,120,45,118,105,100,101,111,123,111,98,106,101,99,116,45,102,105,116,58,99,111,118,101,114,125,46,102,115,108,105,103,104,116,98,111,120,45,121,111,117,116,117,98,101,45,105,102,114,97,109,101,123,98,111,114,100,101,114,58,48,125,46,102,115,108,105,103,104,116,98,111,120,45,115,111,117,114,99,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,90,40,48,41,59,109,97,114,103,105,110,58,97,117,116,111,59,99,117,114,115,111,114,58,122,111,111,109,45,105,110,59,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,125,46,102,115,108,105,103,104,116,98,111,120,45,115,111,117,114,99,101,45,119,114,97,112,112,101,114,115,45,99,111,110,116,97,105,110,101,114,123,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,50,115,32,108,105,110,101,97,114,59,122,45,105,110,100,101,120,58,50,125,46,102,115,108,105,103,104,116,98,111,120,45,115,111,117,114,99,101,45,119,114,97,112,112,101,114,115,45,99,111,110,116,97,105,110,101,114,45,112,105,110,99,104,105,110,103,123,116,114,97,110,115,105,116,105,111,110,45,100,117,114,97,116,105,111,110,58,46,49,115,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,122,45,105,110,100,101,120,58,45,49,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,49,56,48,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,48,41,44,35,49,101,49,101,49,101,32,49,48,48,37,41,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,50,115,59,112,97,100,100,105,110,103,58,48,32,53,112,120,32,49,50,112,120,32,53,112,120,59,104,101,105,103,104,116,58,49,49,52,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,51,112,120,59,104,101,105,103,104,116,58,49,50,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,54,48,48,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,52,112,120,59,104,101,105,103,104,116,58,49,50,54,112,120,125,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,97,99,116,105,118,101,123,111,112,97,99,105,116,121,58,49,59,122,45,105,110,100,101,120,58,51,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,105,110,110,101,114,123,104,101,105,103,104,116,58,49,48,48,37,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,119,114,97,112,112,101,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,104,101,105,103,104,116,58,49,48,48,37,59,109,97,114,103,105,110,58,48,32,52,112,120,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,119,114,97,112,112,101,114,32,115,118,103,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,108,101,102,116,58,53,48,37,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,45,53,48,37,41,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,122,45,105,110,100,101,120,58,49,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,119,114,97,112,112,101,114,32,112,97,116,104,123,102,105,108,108,58,35,102,102,102,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,119,114,97,112,112,101,114,45,100,97,114,107,101,110,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,50,112,120,59,108,101,102,116,58,50,112,120,59,119,105,100,116,104,58,99,97,108,99,40,49,48,48,37,32,45,32,52,112,120,41,59,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,52,112,120,41,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,46,52,41,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,112,120,59,104,101,105,103,104,116,58,49,48,48,37,59,119,105,100,116,104,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,58,50,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,97,99,116,105,118,101,123,98,111,114,100,101,114,58,50,112,120,32,115,111,108,105,100,32,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,105,110,118,97,108,105,100,123,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,98,111,116,116,111,109,44,35,48,102,48,102,48,102,44,114,103,98,97,40,49,53,44,49,53,44,49,53,44,46,53,41,41,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,105,110,45,119,105,100,116,104,58,49,53,53,112,120,125,46,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,99,117,114,115,111,114,101,114,123,122,45,105,110,100,101,120,58,52,59,99,117,114,115,111,114,58,103,114,97,98,98,105,110,103,125,46,102,115,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,53,48,37,59,119,105,100,116,104,58,49,48,48,37,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,49,56,48,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,48,41,44,35,49,101,49,101,49,101,32,49,48,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,53,48,37,41,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,50,115,59,122,45,105,110,100,101,120,58,45,49,125,46,102,115,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,45,105,110,110,101,114,123,112,97,100,100,105,110,103,58,50,53,112,120,59,109,97,120,45,119,105,100,116,104,58,49,50,48,48,112,120,59,99,111,108,111,114,58,35,101,101,101,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,115,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,45,105,110,110,101,114,123,112,97,100,100,105,110,103,58,51,48,112,120,32,50,53,112,120,125,125,46,102,115,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,45,97,99,116,105,118,101,123,111,112,97,99,105,116,121,58,49,59,122,45,105,110,100,101,120,58,51,125,34,41,41,44,100,111,99,117,109,101,110,116,46,104,101,97,100,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,83,40,116,41,123,114,101,116,117,114,110,40,83,61,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,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,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,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,83,121,109,98,111,108,38,38,116,33,61,61,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,63,34,115,121,109,98,111,108,34,58,116,121,112,101,111,102,32,116,125,41,40,116,41,125,34,111,98,106,101,99,116,34,61,61,61,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,63,34,117,110,100,101,102,105,110,101,100,34,58,83,40,100,111,99,117,109,101,110,116,41,41,38,38,79,40,41,59,118,97,114,32,107,61,91,93,44,67,61,123,116,104,117,109,98,115,58,123,119,105,100,116,104,58,34,49,55,112,120,34,44,104,101,105,103,104,116,58,34,49,55,112,120,34,44,118,105,101,119,66,111,120,58,34,48,32,48,32,50,50,32,50,50,34,44,100,58,34,77,32,51,32,50,32,67,32,50,46,52,52,56,32,50,32,50,32,50,46,52,52,56,32,50,32,51,32,76,32,50,32,54,32,67,32,50,32,54,46,53,53,50,32,50,46,52,52,56,32,55,32,51,32,55,32,76,32,54,32,55,32,67,32,54,46,53,53,50,32,55,32,55,32,54,46,53,53,50,32,55,32,54,32,76,32,55,32,51,32,67,32,55,32,50,46,52,52,56,32,54,46,53,53,50,32,50,32,54,32,50,32,76,32,51,32,50,32,122,32,77,32,49,48,32,50,32,67,32,57,46,52,52,56,32,50,32,57,32,50,46,52,52,56,32,57,32,51,32,76,32,57,32,54,32,67,32,57,32,54,46,53,53,50,32,57,46,52,52,56,32,55,32,49,48,32,55,32,76,32,49,51,32,55,32,67,32,49,51,46,53,53,50,32,55,32,49,52,32,54,46,53,53,50,32,49,52,32,54,32,76,32,49,52,32,51,32,67,32,49,52,32,50,46,52,52,56,32,49,51,46,53,53,50,32,50,32,49,51,32,50,32,76,32,49,48,32,50,32,122,32,77,32,49,55,32,50,32,67,32,49,54,46,52,52,56,32,50,32,49,54,32,50,46,52,52,56,32,49,54,32,51,32,76,32,49,54,32,54,32,67,32,49,54,32,54,46,53,53,50,32,49,54,46,52,52,56,32,55,32,49,55,32,55,32,76,32,50,48,32,55,32,67,32,50,48,46,53,53,50,32,55,32,50,49,32,54,46,53,53,50,32,50,49,32,54,32,76,32,50,49,32,51,32,67,32,50,49,32,50,46,52,52,56,32,50,48,46,53,53,50,32,50,32,50,48,32,50,32,76,32,49,55,32,50,32,122,32,77,32,51,32,57,32,67,32,50,46,52,52,56,32,57,32,50,32,57,46,52,52,56,32,50,32,49,48,32,76,32,50,32,49,51,32,67,32,50,32,49,51,46,53,53,50,32,50,46,52,52,56,32,49,52,32,51,32,49,52,32,76,32,54,32,49,52,32,67,32,54,46,53,53,50,32,49,52,32,55,32,49,51,46,53,53,50,32,55,32,49,51,32,76,32,55,32,49,48,32,67,32,55,32,57,46,52,52,56,32,54,46,53,53,50,32,57,32,54,32,57,32,76,32,51,32,57,32,122,32,77,32,49,48,32,57,32,67,32,57,46,52,52,56,32,57,32,57,32,57,46,52,52,56,32,57,32,49,48,32,76,32,57,32,49,51,32,67,32,57,32,49,51,46,53,53,50,32,57,46,52,52,56,32,49,52,32,49,48,32,49,52,32,76,32,49,51,32,49,52,32,67,32,49,51,46,53,53,50,32,49,52,32,49,52,32,49,51,46,53,53,50,32,49,52,32,49,51,32,76,32,49,52,32,49,48,32,67,32,49,52,32,57,46,52,52,56,32,49,51,46,53,53,50,32,57,32,49,51,32,57,32,76,32,49,48,32,57,32,122,32,77,32,49,55,32,57,32,67,32,49,54,46,52,52,56,32,57,32,49,54,32,57,46,52,52,56,32,49,54,32,49,48,32,76,32,49,54,32,49,51,32,67,32,49,54,32,49,51,46,53,53,50,32,49,54,46,52,52,56,32,49,52,32,49,55,32,49,52,32,76,32,50,48,32,49,52,32,67,32,50,48,46,53,53,50,32,49,52,32,50,49,32,49,51,46,53,53,50,32,50,49,32,49,51,32,76,32,50,49,32,49,48,32,67,32,50,49,32,57,46,52,52,56,32,50,48,46,53,53,50,32,57,32,50,48,32,57,32,76,32,49,55,32,57,32,122,32,77,32,51,32,49,54,32,67,32,50,46,52,52,56,32,49,54,32,50,32,49,54,46,52,52,56,32,50,32,49,55,32,76,32,50,32,50,48,32,67,32,50,32,50,48,46,53,53,50,32,50,46,52,52,56,32,50,49,32,51,32,50,49,32,76,32,54,32,50,49,32,67,32,54,46,53,53,50,32,50,49,32,55,32,50,48,46,53,53,50,32,55,32,50,48,32,76,32,55,32,49,55,32,67,32,55,32,49,54,46,52,52,56,32,54,46,53,53,50,32,49,54,32,54,32,49,54,32,76,32,51,32,49,54,32,122,32,77,32,49,48,32,49,54,32,67,32,57,46,52,52,56,32,49,54,32,57,32,49,54,46,52,52,56,32,57,32,49,55,32,76,32,57,32,50,48,32,67,32,57,32,50,48,46,53,53,50,32,57,46,52,52,56,32,50,49,32,49,48,32,50,49,32,76,32,49,51,32,50,49,32,67,32,49,51,46,53,53,50,32,50,49,32,49,52,32,50,48,46,53,53,50,32,49,52,32,50,48,32,76,32,49,52,32,49,55,32,67,32,49,52,32,49,54,46,52,52,56,32,49,51,46,53,53,50,32,49,54,32,49,51,32,49,54,32,76,32,49,48,32,49,54,32,122,32,77,32,49,55,32,49,54,32,67,32,49,54,46,52,52,56,32,49,54,32,49,54,32,49,54,46,52,52,56,32,49,54,32,49,55,32,76,32,49,54,32,50,48,32,67,32,49,54,32,50,48,46,53,53,50,32,49,54,46,52,52,56,32,50,49,32,49,55,32,50,49,32,76,32,50,48,32,50,49,32,67,32,50,48,46,53,53,50,32,50,49,32,50,49,32,50,48,46,53,53,50,32,50,49,32,50,48,32,76,32,50,49,32,49,55,32,67,32,50,49,32,49,54,46,52,52,56,32,50,48,46,53,53,50,32,49,54,32,50,48,32,49,54,32,76,32,49,55,32,49,54,32,122,34,44,116,105,116,108,101,58,34,84,104,117,109,98,110,97,105,108,115,34,125,44,122,111,111,109,73,110,58,123,119,105,100,116,104,58,34,50,48,112,120,34,44,104,101,105,103,104,116,58,34,50,48,112,120,34,44,118,105,101,119,66,111,120,58,34,48,32,48,32,51,48,32,51,48,34,44,100,58,34,77,32,49,51,32,51,32,67,32,55,46,52,56,56,57,57,55,49,32,51,32,51,32,55,46,52,56,56,57,57,55,49,32,51,32,49,51,32,67,32,51,32,49,56,46,53,49,49,48,48,51,32,55,46,52,56,56,57,57,55,49,32,50,51,32,49,51,32,50,51,32,67,32,49,53,46,51,57,54,53,48,56,32,50,51,32,49,55,46,53,57,55,51,56,53,32,50,50,46,49,52,56,57,56,54,32,49,57,46,51,50,50,50,54,54,32,50,48,46,55,51,54,51,50,56,32,76,32,50,53,46,50,57,50,57,54,57,32,50,54,46,55,48,55,48,51,49,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,49,32,48,32,50,54,46,55,48,55,48,51,49,32,50,53,46,50,57,50,57,54,57,32,76,32,50,48,46,55,51,54,51,50,56,32,49,57,46,51,50,50,50,54,54,32,67,32,50,50,46,49,52,56,57,56,54,32,49,55,46,53,57,55,51,56,53,32,50,51,32,49,53,46,51,57,54,53,48,56,32,50,51,32,49,51,32,67,32,50,51,32,55,46,52,56,56,57,57,55,49,32,49,56,46,53,49,49,48,48,51,32,51,32,49,51,32,51,32,122,32,77,32,49,51,32,53,32,67,32,49,55,46,52,51,48,49,50,51,32,53,32,50,49,32,56,46,53,54,57,56,55,55,52,32,50,49,32,49,51,32,67,32,50,49,32,49,55,46,52,51,48,49,50,51,32,49,55,46,52,51,48,49,50,51,32,50,49,32,49,51,32,50,49,32,67,32,56,46,53,54,57,56,55,55,52,32,50,49,32,53,32,49,55,46,52,51,48,49,50,51,32,53,32,49,51,32,67,32,53,32,56,46,53,54,57,56,55,55,52,32,56,46,53,54,57,56,55,55,52,32,53,32,49,51,32,53,32,122,32,77,32,49,50,46,57,56,52,51,55,53,32,55,46,57,56,54,51,50,56,49,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,48,32,48,32,49,50,32,57,32,76,32,49,50,32,49,50,32,76,32,57,32,49,50,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,49,32,48,32,57,32,49,52,32,76,32,49,50,32,49,52,32,76,32,49,50,32,49,55,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,49,32,48,32,49,52,32,49,55,32,76,32,49,52,32,49,52,32,76,32,49,55,32,49,52,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,49,32,48,32,49,55,32,49,50,32,76,32,49,52,32,49,50,32,76,32,49,52,32,57,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,48,32,48,32,49,50,46,57,56,52,51,55,53,32,55,46,57,56,54,51,50,56,49,32,122,34,44,116,105,116,108,101,58,34,90,111,111,109,32,73,110,34,125,44,122,111,111,109,79,117,116,58,123,119,105,100,116,104,58,34,50,48,112,120,34,44,104,101,105,103,104,116,58,34,50,48,112,120,34,44,118,105,101,119,66,111,120,58,34,48,32,48,32,51,48,32,51,48,34,44,100,58,34,77,32,49,51,32,51,32,67,32,55,46,52,56,56,57,57,55,49,32,51,32,51,32,55,46,52,56,56,57,57,55,49,32,51,32,49,51,32,67,32,51,32,49,56,46,53,49,49,48,48,51,32,55,46,52,56,56,57,57,55,49,32,50,51,32,49,51,32,50,51,32,67,32,49,53,46,51,57,54,53,48,56,32,50,51,32,49,55,46,53,57,55,51,56,53,32,50,50,46,49,52,56,57,56,54,32,49,57,46,51,50,50,50,54,54,32,50,48,46,55,51,54,51,50,56,32,76,32,50,53,46,50,57,50,57,54,57,32,50,54,46,55,48,55,48,51,49,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,49,32,48,32,50,54,46,55,48,55,48,51,49,32,50,53,46,50,57,50,57,54,57,32,76,32,50,48,46,55,51,54,51,50,56,32,49,57,46,51,50,50,50,54,54,32,67,32,50,50,46,49,52,56,57,56,54,32,49,55,46,53,57,55,51,56,53,32,50,51,32,49,53,46,51,57,54,53,48,56,32,50,51,32,49,51,32,67,32,50,51,32,55,46,52,56,56,57,57,55,49,32,49,56,46,53,49,49,48,48,51,32,51,32,49,51,32,51,32,122,32,77,32,49,51,32,53,32,67,32,49,55,46,52,51,48,49,50,51,32,53,32,50,49,32,56,46,53,54,57,56,55,55,52,32,50,49,32,49,51,32,67,32,50,49,32,49,55,46,52,51,48,49,50,51,32,49,55,46,52,51,48,49,50,51,32,50,49,32,49,51,32,50,49,32,67,32,56,46,53,54,57,56,55,55,52,32,50,49,32,53,32,49,55,46,52,51,48,49,50,51,32,53,32,49,51,32,67,32,53,32,56,46,53,54,57,56,55,55,52,32,56,46,53,54,57,56,55,55,52,32,53,32,49,51,32,53,32,122,32,77,32,57,32,49,50,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,49,32,48,32,57,32,49,52,32,76,32,49,55,32,49,52,32,65,32,49,46,48,48,48,49,32,49,46,48,48,48,49,32,48,32,49,32,48,32,49,55,32,49,50,32,76,32,57,32,49,50,32,122,34,44,116,105,116,108,101,58,34,90,111,111,109,32,79,117,116,34,125,44,115,108,105,100,101,115,104,111,119,58,123,115,116,97,114,116,58,123,119,105,100,116,104,58,34,49,54,112,120,34,44,104,101,105,103,104,116,58,34,49,54,112,120,34,44,118,105,101,119,66,111,120,58,34,48,32,48,32,51,48,32,51,48,34,44,100,58,34,77,32,54,32,51,32,65,32,49,32,49,32,48,32,48,32,48,32,53,32,52,32,65,32,49,32,49,32,48,32,48,32,48,32,53,32,52,46,48,48,51,57,48,54,50,32,76,32,53,32,49,53,32,76,32,53,32,50,53,46,57,57,54,48,57,52,32,65,32,49,32,49,32,48,32,48,32,48,32,53,32,50,54,32,65,32,49,32,49,32,48,32,48,32,48,32,54,32,50,55,32,65,32,49,32,49,32,48,32,48,32,48,32,54,46,53,56,48,48,55,56,49,32,50,54,46,56,49,50,53,32,76,32,54,46,53,56,50,48,51,49,50,32,50,54,46,56,49,52,52,53,51,32,76,32,50,54,46,52,49,54,48,49,54,32,49,53,46,57,48,56,50,48,51,32,65,32,49,32,49,32,48,32,48,32,48,32,50,55,32,49,53,32,65,32,49,32,49,32,48,32,48,32,48,32,50,54,46,51,56,56,54,55,50,32,49,52,46,48,55,56,49,50,53,32,76,32,54,46,53,56,50,48,51,49,50,32,51,46,49,56,53,53,52,54,57,32,76,32,54,46,53,56,48,48,55,56,49,32,51,46,49,56,53,53,52,54,57,32,65,32,49,32,49,32,48,32,48,32,48,32,54,32,51,32,122,34,44,116,105,116,108,101,58,34,84,117,114,110,32,111,110,32,115,108,105,100,101,115,104,111,119,34,125,44,112,97,117,115,101,58,123,119,105,100,116,104,58,34,49,52,112,120,34,44,104,101,105,103,104,116,58,34,49,52,112,120,34,44,118,105,101,119,66,111,120,58,34,48,32,48,32,51,53,54,46,49,57,32,51,53,54,46,49,57,34,44,100,58,34,77,49,50,49,44,48,99,49,56,44,48,44,51,51,44,49,53,44,51,51,44,51,51,118,51,55,50,99,48,44,49,56,45,49,53,44,51,51,45,51,51,44,51,51,115,45,51,50,45,49,53,45,51,50,45,51,51,86,51,51,67,56,57,44,49,53,44,49,48,51,44,48,44,49,50,49,44,48,122,77,51,49,55,44,48,99,49,56,44,48,44,51,50,44,49,53,44,51,50,44,51,51,118,51,55,50,99,48,44,49,56,45,49,52,44,51,51,45,51,50,44,51,51,115,45,51,51,45,49,53,45,51,51,45,51,51,86,51,51,67,50,56,52,44,49,53,44,50,57,57,44,48,44,51,49,55,44,48,122,34,44,116,105,116,108,101,58,34,84,117,114,110,32,111,102,102,32,115,108,105,100,101,115,104,111,119,34,125,125,44,102,117,108,108,115,99,114,101,101,110,58,123,101,110,116,101,114,58,123,119,105,100,116,104,58,34,50,48,112,120,34,44,104,101,105,103,104,116,58,34,50,48,112,120,34,44,118,105,101,119,66,111,120,58,34,48,32,48,32,49,56,32,49,56,34,44,100,58,34,77,52,46,53,32,49,49,72,51,118,52,104,52,118,45,49,46,53,72,52,46,53,86,49,49,122,77,51,32,55,104,49,46,53,86,52,46,53,72,55,86,51,72,51,118,52,122,109,49,48,46,53,32,54,46,53,72,49,49,86,49,53,104,52,118,45,52,104,45,49,46,53,118,50,46,53,122,77,49,49,32,51,118,49,46,53,104,50,46,53,86,55,72,49,53,86,51,104,45,52,122,34,44,116,105,116,108,101,58,34,69,110,116,101,114,32,102,117,108,108,115,99,114,101,101,110,34,125,44,101,120,105,116,58,123,119,105,100,116,104,58,34,50,52,112,120,34,44,104,101,105,103,104,116,58,34,50,52,112,120,34,44,118,105,101,119,66,111,120,58,34,48,32,48,32,57,53,48,32,49,48,50,52,34,44,100,58,34,77,54,56,50,32,51,52,50,104,49,50,56,118,56,52,104,45,50,49,50,118,45,50,49,50,104,56,52,118,49,50,56,122,77,53,57,56,32,56,49,48,118,45,50,49,50,104,50,49,50,118,56,52,104,45,49,50,56,118,49,50,56,104,45,56,52,122,77,51,52,50,32,51,52,50,118,45,49,50,56,104,56,52,118,50,49,50,104,45,50,49,50,118,45,56,52,104,49,50,56,122,77,50,49,52,32,54,56,50,118,45,56,52,104,50,49,50,118,50,49,50,104,45,56,52,118,45,49,50,56,104,45,49,50,56,122,34,44,116,105,116,108,101,58,34,69,120,105,116,32,102,117,108,108,115,99,114,101,101,110,34,125,125,44,99,108,111,115,101,58,123,119,105,100,116,104,58,34,50,48,112,120,34,44,104,101,105,103,104,116,58,34,50,48,112,120,34,44,118,105,101,119,66,111,120,58,34,48,32,48,32,50,52,32,50,52,34,44,100,58,34,77,32,52,46,55,48,55,48,51,49,50,32,51,46,50,57,50,57,54,56,56,32,76,32,51,46,50,57,50,57,54,56,56,32,52,46,55,48,55,48,51,49,50,32,76,32,49,48,46,53,56,53,57,51,56,32,49,50,32,76,32,51,46,50,57,50,57,54,56,56,32,49,57,46,50,57,50,57,54,57,32,76,32,52,46,55,48,55,48,51,49,50,32,50,48,46,55,48,55,48,51,49,32,76,32,49,50,32,49,51,46,52,49,52,48,54,50,32,76,32,49,57,46,50,57,50,57,54,57,32,50,48,46,55,48,55,48,51,49,32,76,32,50,48,46,55,48,55,48,51,49,32,49,57,46,50,57,50,57,54,57,32,76,32,49,51,46,52,49,52,48,54,50,32,49,50,32,76,32,50,48,46,55,48,55,48,51,49,32,52,46,55,48,55,48,51,49,50,32,76,32,49,57,46,50,57,50,57,54,57,32,51,46,50,57,50,57,54,56,56,32,76,32,49,50,32,49,48,46,53,56,53,57,51,56,32,76,32,52,46,55,48,55,48,51,49,50,32,51,46,50,57,50,57,54,56,56,32,122,34,44,116,105,116,108,101,58,34,67,108,111,115,101,34,125,125,44,80,61,123,112,114,101,118,105,111,117,115,58,123,119,105,100,116,104,58,34,50,48,112,120,34,44,104,101,105,103,104,116,58,34,50,48,112,120,34,44,118,105,101,119,66,111,120,58,34,48,32,48,32,50,48,32,50,48,34,44,100,58,34,77,49,56,46,50,55,49,44,57,46,50,49,50,72,51,46,54,49,53,108,52,46,49,56,52,45,52,46,49,56,52,99,48,46,51,48,54,45,48,46,51,48,54,44,48,46,51,48,54,45,48,46,56,48,49,44,48,45,49,46,49,48,55,99,45,48,46,51,48,54,45,48,46,51,48,54,45,48,46,56,48,49,45,48,46,51,48,54,45,49,46,49,48,55,44,48,76,49,46,50,49,44,57,46,52,48,51,67,49,46,49,57,52,44,57,46,52,49,55,44,49,46,49,55,52,44,57,46,52,50,49,44,49,46,49,53,56,44,57,46,52,51,55,99,45,48,46,49,56,49,44,48,46,49,56,49,45,48,46,50,52,50,44,48,46,52,50,53,45,48,46,50,48,57,44,48,46,54,54,99,48,46,48,48,53,44,48,46,48,51,56,44,48,46,48,49,50,44,48,46,48,55,49,44,48,46,48,50,50,44,48,46,49,48,57,99,48,46,48,50,56,44,48,46,48,57,56,44,48,46,48,55,53,44,48,46,49,56,56,44,48,46,49,52,50,44,48,46,50,55,49,99,48,46,48,50,49,44,48,46,48,50,54,44,48,46,48,50,49,44,48,46,48,54,49,44,48,46,48,52,53,44,48,46,48,56,53,99,48,46,48,49,53,44,48,46,48,49,54,44,48,46,48,51,52,44,48,46,48,50,44,48,46,48,53,44,48,46,48,51,51,108,53,46,52,56,52,44,53,46,52,56,51,99,48,46,51,48,54,44,48,46,51,48,55,44,48,46,56,48,49,44,48,46,51,48,55,44,49,46,49,48,55,44,48,99,48,46,51,48,54,45,48,46,51,48,53,44,48,46,51,48,54,45,48,46,56,48,49,44,48,45,49,46,49,48,53,108,45,52,46,49,56,52,45,52,46,49,56,53,104,49,52,46,54,53,54,99,48,46,52,51,54,44,48,44,48,46,55,56,56,45,48,46,51,53,51,44,48,46,55,56,56,45,48,46,55,56,56,83,49,56,46,55,48,55,44,57,46,50,49,50,44,49,56,46,50,55,49,44,57,46,50,49,50,122,34,44,116,105,116,108,101,58,34,80,114,101,118,105,111,117,115,34,125,44,110,101,120,116,58,123,119,105,100,116,104,58,34,50,48,112,120,34,44,104,101,105,103,104,116,58,34,50,48,112,120,34,44,118,105,101,119,66,111,120,58,34,48,32,48,32,50,48,32,50,48,34,44,100,58,34,77,49,46,55,50,57,44,57,46,50,49,50,104,49,52,46,54,53,54,108,45,52,46,49,56,52,45,52,46,49,56,52,99,45,48,46,51,48,55,45,48,46,51,48,54,45,48,46,51,48,55,45,48,46,56,48,49,44,48,45,49,46,49,48,55,99,48,46,51,48,53,45,48,46,51,48,54,44,48,46,56,48,49,45,48,46,51,48,54,44,49,46,49,48,54,44,48,108,53,46,52,56,49,44,53,46,52,56,50,99,48,46,48,49,56,44,48,46,48,49,52,44,48,46,48,51,55,44,48,46,48,49,57,44,48,46,48,53,51,44,48,46,48,51,52,99,48,46,49,56,49,44,48,46,49,56,49,44,48,46,50,52,50,44,48,46,52,50,53,44,48,46,50,48,57,44,48,46,54,54,99,45,48,46,48,48,52,44,48,46,48,51,56,45,48,46,48,49,50,44,48,46,48,55,49,45,48,46,48,50,49,44,48,46,49,48,57,99,45,48,46,48,50,56,44,48,46,48,57,56,45,48,46,48,55,53,44,48,46,49,56,56,45,48,46,49,52,51,44,48,46,50,55,49,99,45,48,46,48,50,49,44,48,46,48,50,54,45,48,46,48,50,49,44,48,46,48,54,49,45,48,46,48,52,53,44,48,46,48,56,53,99,45,48,46,48,49,53,44,48,46,48,49,54,45,48,46,48,51,52,44,48,46,48,50,45,48,46,48,53,49,44,48,46,48,51,51,108,45,53,46,52,56,51,44,53,46,52,56,51,99,45,48,46,51,48,54,44,48,46,51,48,55,45,48,46,56,48,50,44,48,46,51,48,55,45,49,46,49,48,54,44,48,99,45,48,46,51,48,55,45,48,46,51,48,53,45,48,46,51,48,55,45,48,46,56,48,49,44,48,45,49,46,49,48,53,108,52,46,49,56,52,45,52,46,49,56,53,72,49,46,55,50,57,99,45,48,46,52,51,54,44,48,45,48,46,55,56,56,45,48,46,51,53,51,45,48,46,55,56,56,45,48,46,55,56,56,83,49,46,50,57,51,44,57,46,50,49,50,44,49,46,55,50,57,44,57,46,50,49,50,122,34,44,116,105,116,108,101,58,34,78,101,120,116,34,125,125,59,102,117,110,99,116,105,111,110,32,84,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,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,106,40,116,41,125,40,116,41,124,124,102,117,110,99,116,105,111,110,40,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,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,116,41,125,40,116,41,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,106,40,116,44,101,41,59,118,97,114,32,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,41,46,115,108,105,99,101,40,56,44,45,49,41,59,114,101,116,117,114,110,34,79,98,106,101,99,116,34,61,61,61,110,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,116,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,44,34,77,97,112,34,61,61,61,110,124,124,34,83,101,116,34,61,61,61,110,63,65,114,114,97,121,46,102,114,111,109,40,116,41,58,34,65,114,103,117,109,101,110,116,115,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,63,106,40,116,44,101,41,58,118,111,105,100,32,48,125,125,40,116,41,124,124,102,117,110,99,116,105,111,110,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,34,41,125,40,41,125,102,117,110,99,116,105,111,110,32,106,40,116,44,101,41,123,40,110,117,108,108,61,61,101,124,124,101,62,116,46,108,101,110,103,116,104,41,38,38,40,101,61,116,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,110,60,101,59,110,43,43,41,114,91,110,93,61,116,91,110,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,69,40,116,44,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,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,91,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,105,61,110,101,119,32,65,114,114,97,121,40,114,41,44,111,61,48,59,111,60,114,59,111,43,43,41,105,91,111,93,61,97,114,103,117,109,101,110,116,115,91,111,93,59,101,46,97,112,112,108,121,40,118,111,105,100,32,48,44,84,40,110,46,99,111,110,99,97,116,40,105,41,41,41,38,38,116,46,97,112,112,108,121,40,118,111,105,100,32,48,44,105,41,125,125,102,117,110,99,116,105,111,110,32,68,40,116,41,123,118,97,114,32,101,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,44,110,61,116,46,99,111,114,101,46,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,44,114,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,59,116,104,105,115,46,114,117,110,67,117,114,114,101,110,116,83,116,97,103,101,73,110,100,101,120,85,112,100,97,116,101,65,99,116,105,111,110,115,70,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,116,33,61,61,114,46,99,117,114,114,101,110,116,38,38,40,101,46,103,101,116,40,41,63,110,46,106,117,109,112,84,111,40,116,41,58,114,46,99,117,114,114,101,110,116,61,116,41,125,125,102,117,110,99,116,105,111,110,32,65,40,116,41,123,118,97,114,32,101,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,44,110,61,116,46,99,111,114,101,44,114,61,110,46,108,105,103,104,116,98,111,120,67,108,111,115,101,114,44,105,61,110,46,108,105,103,104,116,98,111,120,79,112,101,110,101,114,44,111,61,110,46,108,105,103,104,116,98,111,120,85,112,100,97,116,101,114,44,97,61,116,46,100,97,116,97,44,115,61,40,48,44,116,46,114,101,115,111,108,118,101,41,40,68,41,59,111,46,104,97,110,100,108,101,83,108,105,100,101,80,114,111,112,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,46,112,114,111,112,115,59,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,46,115,111,117,114,99,101,73,110,100,101,120,63,115,46,114,117,110,67,117,114,114,101,110,116,83,116,97,103,101,73,110,100,101,120,85,112,100,97,116,101,65,99,116,105,111,110,115,70,111,114,40,101,46,115,111,117,114,99,101,73,110,100,101,120,41,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,115,111,117,114,99,101,63,115,46,114,117,110,67,117,114,114,101,110,116,83,116,97,103,101,73,110,100,101,120,85,112,100,97,116,101,65,99,116,105,111,110,115,70,111,114,40,101,46,115,111,117,114,99,101,115,46,105,110,100,101,120,79,102,40,101,46,115,111,117,114,99,101,41,41,58,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,46,115,108,105,100,101,38,38,115,46,114,117,110,67,117,114,114,101,110,116,83,116,97,103,101,73,110,100,101,120,85,112,100,97,116,101,65,99,116,105,111,110,115,70,111,114,40,101,46,115,108,105,100,101,45,49,41,125,44,111,46,104,97,110,100,108,101,84,111,103,103,108,101,114,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,101,46,103,101,116,40,41,63,114,46,99,108,111,115,101,76,105,103,104,116,98,111,120,40,41,58,97,46,105,115,73,110,105,116,105,97,108,105,122,101,100,63,105,46,111,112,101,110,76,105,103,104,116,98,111,120,40,41,58,105,46,105,110,105,116,105,97,108,105,122,101,65,110,100,79,112,101,110,76,105,103,104,116,98,111,120,40,41,125,125,102,117,110,99,116,105,111,110,32,76,40,116,44,101,41,123,118,97,114,32,110,61,116,46,99,108,97,115,115,76,105,115,116,59,110,46,99,111,110,116,97,105,110,115,40,101,41,38,38,110,46,114,101,109,111,118,101,40,101,41,125,102,117,110,99,116,105,111,110,32,73,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,114,61,110,46,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,77,97,110,97,103,101,114,44,105,61,110,46,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,44,111,61,116,46,99,111,114,101,44,97,61,111,46,101,118,101,110,116,115,68,105,115,112,97,116,99,104,101,114,44,115,61,111,46,102,117,108,108,115,99,114,101,101,110,84,111,103,103,108,101,114,44,117,61,111,46,103,108,111,98,97,108,69,118,101,110,116,115,67,111,110,116,114,111,108,108,101,114,44,108,61,111,46,115,99,114,111,108,108,98,97,114,82,101,99,111,109,112,101,110,115,111,114,44,102,61,111,46,115,108,105,100,101,115,104,111,119,77,97,110,97,103,101,114,44,104,61,111,46,122,111,111,109,101,114,44,112,61,116,46,101,108,101,109,101,110,116,115,44,118,61,116,46,112,114,111,112,115,44,103,61,116,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,109,61,116,46,116,105,109,101,111,117,116,44,98,61,116,46,116,104,117,109,98,115,83,119,105,112,105,110,103,80,114,111,112,115,59,116,104,105,115,46,105,115,76,105,103,104,116,98,111,120,70,97,100,105,110,103,79,117,116,61,33,49,44,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,101,46,105,115,76,105,103,104,116,98,111,120,70,97,100,105,110,103,79,117,116,61,33,48,44,112,46,99,111,110,116,97,105,110,101,114,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,100,41,44,117,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,115,40,41,44,104,46,105,102,90,111,111,109,105,110,103,82,101,115,101,116,90,111,111,109,40,41,44,102,46,114,101,115,101,116,83,108,105,100,101,115,104,111,119,40,41,44,118,46,101,120,105,116,70,117,108,108,115,99,114,101,101,110,79,110,67,108,111,115,101,38,38,114,46,103,101,116,40,41,38,38,115,46,101,120,105,116,70,117,108,108,115,99,114,101,101,110,40,41,44,109,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,105,115,76,105,103,104,116,98,111,120,70,97,100,105,110,103,79,117,116,61,33,49,44,103,46,105,115,80,111,105,110,116,101,114,105,110,103,61,33,49,44,98,38,38,40,98,46,105,115,80,111,105,110,116,101,114,105,110,103,61,33,49,41,44,112,46,99,111,110,116,97,105,110,101,114,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,100,41,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,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,99,41,44,108,46,114,101,109,111,118,101,82,101,99,111,109,112,101,110,115,101,40,41,44,105,46,115,101,116,40,33,49,41,44,97,46,100,105,115,112,97,116,99,104,40,34,111,110,67,108,111,115,101,34,41,125,41,44,50,50,48,41,125,125,102,117,110,99,116,105,111,110,32,77,40,116,41,123,118,97,114,32,101,61,116,46,101,108,101,109,101,110,116,115,46,99,97,112,116,105,111,110,115,59,116,104,105,115,46,114,117,110,83,108,105,100,101,67,104,97,110,103,101,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,110,40,116,44,34,114,101,109,111,118,101,34,41,44,110,40,101,44,34,97,100,100,34,41,125,59,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,101,91,116,93,38,38,101,91,116,93,46,99,108,97,115,115,76,105,115,116,91,110,93,40,112,41,125,125,102,117,110,99,116,105,111,110,32,36,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,44,110,61,101,46,99,108,105,99,107,90,111,111,109,101,114,44,114,61,101,46,108,105,103,104,116,98,111,120,67,108,111,115,101,114,44,105,61,101,46,102,117,108,108,115,99,114,101,101,110,84,111,103,103,108,101,114,44,111,61,101,46,115,108,105,100,101,67,104,97,110,103,101,70,97,99,97,100,101,44,97,61,101,46,115,108,105,100,101,115,104,111,119,77,97,110,97,103,101,114,44,115,61,101,46,116,104,117,109,98,115,84,111,103,103,108,101,114,44,99,61,116,46,112,114,111,112,115,59,116,104,105,115,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,83,112,97,99,101,34,33,61,61,116,46,99,111,100,101,41,115,119,105,116,99,104,40,116,46,107,101,121,41,123,99,97,115,101,34,69,115,99,97,112,101,34,58,114,46,99,108,111,115,101,76,105,103,104,116,98,111,120,40,41,59,98,114,101,97,107,59,99,97,115,101,34,65,114,114,111,119,76,101,102,116,34,58,111,46,99,104,97,110,103,101,84,111,80,114,101,118,105,111,117,115,40,41,59,98,114,101,97,107,59,99,97,115,101,34,65,114,114,111,119,82,105,103,104,116,34,58,111,46,99,104,97,110,103,101,84,111,78,101,120,116,40,41,59,98,114,101,97,107,59,99,97,115,101,34,116,34,58,99,46,100,105,115,97,98,108,101,84,104,117,109,98,115,124,124,115,46,116,111,103,103,108,101,84,104,117,109,98,115,40,41,59,98,114,101,97,107,59,99,97,115,101,34,43,34,58,110,46,122,111,111,109,73,110,40,41,59,98,114,101,97,107,59,99,97,115,101,34,45,34,58,110,46,122,111,111,109,79,117,116,40,41,59,98,114,101,97,107,59,99,97,115,101,34,70,49,49,34,58,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,105,46,101,110,116,101,114,70,117,108,108,115,99,114,101,101,110,40,41,125,101,108,115,101,32,97,46,116,111,103,103,108,101,83,108,105,100,101,115,104,111,119,40,41,125,125,102,117,110,99,116,105,111,110,32,70,40,116,41,123,114,101,116,117,114,110,32,116,46,116,111,117,99,104,101,115,63,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,89,58,116,46,99,108,105,101,110,116,89,125,102,117,110,99,116,105,111,110,32,82,40,116,41,123,118,97,114,32,101,61,116,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,44,110,61,116,46,99,111,114,101,46,122,111,111,109,101,114,44,114,61,116,46,100,97,116,97,44,105,61,116,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,59,116,104,105,115,46,114,117,110,90,111,111,109,105,110,103,80,105,110,99,104,65,99,116,105,111,110,115,70,111,114,72,121,112,111,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,45,105,46,112,105,110,99,104,101,100,72,121,112,111,116,44,111,61,114,46,122,111,111,109,43,101,47,77,97,116,104,46,104,121,112,111,116,40,105,110,110,101,114,87,105,100,116,104,44,105,110,110,101,114,72,101,105,103,104,116,41,42,49,48,59,111,60,46,57,38,38,40,111,61,46,57,41,44,110,46,122,111,111,109,84,111,40,111,41,44,105,46,112,105,110,99,104,101,100,72,121,112,111,116,61,116,125,44,116,104,105,115,46,116,114,97,110,115,108,97,116,101,83,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,65,116,73,110,100,101,120,85,115,105,110,103,77,101,116,104,111,100,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,101,91,116,93,46,116,114,97,110,115,108,97,116,101,40,105,46,115,119,105,112,101,100,88,41,91,110,93,40,41,125,125,102,117,110,99,116,105,111,110,32,78,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,104,121,112,111,116,40,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,45,116,46,116,111,117,99,104,101,115,91,49,93,46,112,97,103,101,88,44,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,89,45,116,46,116,111,117,99,104,101,115,91,49,93,46,112,97,103,101,89,41,125,102,117,110,99,116,105,111,110,32,66,40,116,41,123,114,101,116,117,114,110,32,116,46,116,111,117,99,104,101,115,63,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,58,116,46,99,108,105,101,110,116,88,125,102,117,110,99,116,105,111,110,32,122,40,116,41,123,118,97,114,32,101,61,116,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,44,110,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,114,61,116,46,99,111,114,101,46,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,44,105,61,116,46,100,97,116,97,44,111,61,116,46,114,101,115,111,108,118,101,44,97,61,116,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,115,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,44,99,61,111,40,82,41,59,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,46,114,117,110,83,119,105,112,105,110,103,77,111,118,101,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,40,97,44,116,41,44,110,46,115,104,111,119,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,73,102,78,111,116,89,101,116,40,41,125,44,116,104,105,115,46,114,117,110,80,105,110,99,104,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,78,40,116,41,59,97,46,112,105,110,99,104,101,100,72,121,112,111,116,63,99,46,114,117,110,90,111,111,109,105,110,103,80,105,110,99,104,65,99,116,105,111,110,115,70,111,114,72,121,112,111,116,40,101,41,58,97,46,112,105,110,99,104,101,100,72,121,112,111,116,61,101,125,44,116,104,105,115,46,114,117,110,78,111,114,109,97,108,83,119,105,112,101,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,99,46,116,114,97,110,115,108,97,116,101,83,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,65,116,73,110,100,101,120,85,115,105,110,103,77,101,116,104,111,100,40,115,46,99,117,114,114,101,110,116,44,34,122,101,114,111,34,41,44,118,111,105,100,32,48,33,61,61,115,46,112,114,101,118,105,111,117,115,38,38,97,46,115,119,105,112,101,100,88,62,48,63,99,46,116,114,97,110,115,108,97,116,101,83,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,65,116,73,110,100,101,120,85,115,105,110,103,77,101,116,104,111,100,40,115,46,112,114,101,118,105,111,117,115,44,34,110,101,103,97,116,105,118,101,34,41,58,118,111,105,100,32,48,33,61,61,115,46,110,101,120,116,38,38,97,46,115,119,105,112,101,100,88,60,48,38,38,99,46,116,114,97,110,115,108,97,116,101,83,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,65,116,73,110,100,101,120,85,115,105,110,103,77,101,116,104,111,100,40,115,46,110,101,120,116,44,34,112,111,115,105,116,105,118,101,34,41,125,44,116,104,105,115,46,114,117,110,90,111,111,109,83,119,105,112,101,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,116,41,123,97,46,115,119,105,112,101,100,88,61,40,66,40,116,41,45,97,46,100,111,119,110,67,108,105,101,110,116,88,41,47,105,46,122,111,111,109,44,97,46,115,119,105,112,101,100,89,61,40,70,40,116,41,45,97,46,100,111,119,110,67,108,105,101,110,116,89,41,47,105,46,122,111,111,109,44,101,91,115,46,99,117,114,114,101,110,116,93,46,116,114,97,110,115,108,97,116,101,40,97,46,117,112,83,119,105,112,101,100,88,43,97,46,115,119,105,112,101,100,88,44,97,46,117,112,83,119,105,112,101,100,89,43,97,46,115,119,105,112,101,100,89,41,46,122,101,114,111,40,41,125,125,102,117,110,99,116,105,111,110,32,86,40,41,123,118,97,114,32,116,61,33,49,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,33,116,38,38,40,116,61,33,48,44,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,40,102,117,110,99,116,105,111,110,40,41,123,116,61,33,49,125,41,41,44,33,48,41,125,125,102,117,110,99,116,105,111,110,32,72,40,116,41,123,118,97,114,32,101,61,86,40,41,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,116,46,105,115,80,111,105,110,116,101,114,105,110,103,38,38,101,40,41,125,125,102,117,110,99,116,105,111,110,32,85,40,116,41,123,114,101,116,117,114,110,32,116,46,116,111,117,99,104,101,115,63,116,46,116,111,117,99,104,101,115,46,108,101,110,103,116,104,58,48,125,102,117,110,99,116,105,111,110,32,87,40,116,41,123,118,97,114,32,101,61,116,46,100,97,116,97,44,110,61,116,46,112,114,111,112,115,44,114,61,116,46,114,101,115,111,108,118,101,44,105,61,116,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,111,61,72,40,105,41,44,97,61,114,40,122,41,59,116,104,105,115,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,111,40,41,38,38,40,97,46,114,117,110,65,99,116,105,111,110,115,40,116,41,44,85,40,116,41,38,38,105,46,105,115,80,105,110,99,104,105,110,103,63,97,46,114,117,110,80,105,110,99,104,65,99,116,105,111,110,115,40,116,41,58,49,61,61,61,101,46,122,111,111,109,63,49,61,61,61,110,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,63,105,46,115,119,105,112,101,100,88,61,49,58,97,46,114,117,110,78,111,114,109,97,108,83,119,105,112,101,65,99,116,105,111,110,115,40,116,41,58,97,46,114,117,110,90,111,111,109,83,119,105,112,101,65,99,116,105,111,110,115,40,116,41,41,125,125,102,117,110,99,116,105,111,110,32,71,40,116,41,123,118,97,114,32,101,61,116,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,44,110,61,116,46,99,111,114,101,44,114,61,110,46,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,44,105,61,110,46,99,108,105,99,107,90,111,111,109,101,114,44,111,61,116,46,100,97,116,97,44,97,61,116,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,44,115,61,116,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,99,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,59,116,104,105,115,46,114,117,110,80,111,115,105,116,105,118,101,83,119,105,112,101,100,88,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,118,111,105,100,32,48,61,61,61,99,46,112,114,101,118,105,111,117,115,124,124,40,108,40,34,112,111,115,105,116,105,118,101,34,41,44,114,46,99,104,97,110,103,101,84,111,40,99,46,112,114,101,118,105,111,117,115,41,41,44,108,40,34,122,101,114,111,34,41,125,44,116,104,105,115,46,114,117,110,78,101,103,97,116,105,118,101,83,119,105,112,101,100,88,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,118,111,105,100,32,48,61,61,61,99,46,110,101,120,116,124,124,40,108,40,34,110,101,103,97,116,105,118,101,34,41,44,114,46,99,104,97,110,103,101,84,111,40,99,46,110,101,120,116,41,41,44,108,40,34,122,101,114,111,34,41,125,44,116,104,105,115,46,115,97,118,101,67,117,114,114,101,110,116,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,80,111,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,115,46,117,112,83,119,105,112,101,100,88,61,101,91,99,46,99,117,114,114,101,110,116,93,46,103,101,116,84,114,97,110,115,108,97,116,101,88,40,41,44,115,46,117,112,83,119,105,112,101,100,89,61,101,91,99,46,99,117,114,114,101,110,116,93,46,103,101,116,84,114,97,110,115,108,97,116,101,89,40,41,125,44,116,104,105,115,46,114,117,110,83,111,117,114,99,101,68,111,119,110,69,118,101,110,116,84,97,114,103,101,116,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,111,46,122,111,111,109,60,61,49,63,105,46,122,111,111,109,73,110,40,41,58,105,46,122,111,111,109,79,117,116,40,41,125,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,116,41,123,97,91,99,46,99,117,114,114,101,110,116,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,117,41,44,101,91,99,46,99,117,114,114,101,110,116,93,91,116,93,40,41,125,125,102,117,110,99,116,105,111,110,32,113,40,116,41,123,118,97,114,32,101,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,110,61,116,46,99,111,114,101,44,114,61,110,46,108,105,103,104,116,98,111,120,67,108,111,115,101,114,44,105,61,110,46,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,44,111,61,116,46,100,97,116,97,44,97,61,116,46,101,108,101,109,101,110,116,115,44,115,61,116,46,114,101,115,111,108,118,101,44,99,61,116,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,117,61,115,40,71,41,59,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,101,46,104,105,100,101,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,40,41,44,99,46,105,115,80,105,110,99,104,105,110,103,61,33,49,44,99,46,112,105,110,99,104,101,100,72,121,112,111,116,61,48,44,105,46,114,117,110,83,119,105,112,105,110,103,84,111,112,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,40,99,41,44,76,40,97,46,115,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,44,121,41,125,44,116,104,105,115,46,114,117,110,83,119,105,112,101,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,49,61,61,61,111,46,122,111,111,109,63,99,46,115,119,105,112,101,100,88,62,48,63,117,46,114,117,110,80,111,115,105,116,105,118,101,83,119,105,112,101,100,88,65,99,116,105,111,110,115,40,41,58,117,46,114,117,110,78,101,103,97,116,105,118,101,83,119,105,112,101,100,88,65,99,116,105,111,110,115,40,41,58,117,46,115,97,118,101,67,117,114,114,101,110,116,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,80,111,115,105,116,105,111,110,40,41,125,44,116,104,105,115,46,114,117,110,78,111,83,119,105,112,101,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,99,46,105,115,83,111,117,114,99,101,68,111,119,110,69,118,101,110,116,84,97,114,103,101,116,63,117,46,114,117,110,83,111,117,114,99,101,68,111,119,110,69,118,101,110,116,84,97,114,103,101,116,65,99,116,105,111,110,115,40,41,58,114,46,99,108,111,115,101,76,105,103,104,116,98,111,120,40,41,125,125,102,117,110,99,116,105,111,110,32,89,40,116,41,123,118,97,114,32,101,61,116,46,100,97,116,97,44,110,61,116,46,114,101,115,111,108,118,101,44,114,61,116,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,105,61,116,46,99,111,114,101,46,122,111,111,109,101,114,44,111,61,110,40,113,41,59,116,104,105,115,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,46,105,115,80,111,105,110,116,101,114,105,110,103,38,38,40,114,46,105,115,80,105,110,99,104,105,110,103,124,124,40,114,46,115,119,105,112,101,100,88,63,111,46,114,117,110,83,119,105,112,101,65,99,116,105,111,110,115,40,41,58,111,46,114,117,110,78,111,83,119,105,112,101,65,99,116,105,111,110,115,40,41,41,44,111,46,114,117,110,65,99,116,105,111,110,115,40,116,41,44,101,46,122,111,111,109,60,49,38,38,40,105,46,122,111,111,109,84,111,40,49,41,44,105,46,115,116,111,112,90,111,111,109,105,110,103,40,41,41,41,125,125,102,117,110,99,116,105,111,110,32,75,40,116,41,123,118,97,114,32,101,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,110,61,116,46,99,111,114,101,46,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,44,114,61,116,46,100,97,116,97,44,105,61,116,46,101,108,101,109,101,110,116,115,44,111,61,116,46,116,104,117,109,98,115,83,119,105,112,105,110,103,80,114,111,112,115,59,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,114,117,110,83,119,105,112,105,110,103,77,111,118,101,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,40,111,44,116,41,44,105,46,116,104,117,109,98,115,73,110,110,101,114,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,34,116,114,97,110,115,108,97,116,101,88,40,34,46,99,111,110,99,97,116,40,114,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,43,111,46,115,119,105,112,101,100,88,44,34,112,120,41,34,41,44,101,46,115,104,111,119,84,104,117,109,98,115,67,117,114,115,111,114,101,114,73,102,78,111,116,89,101,116,40,41,125,125,102,117,110,99,116,105,111,110,32,88,40,116,41,123,118,97,114,32,101,61,116,46,100,97,116,97,44,110,61,116,46,114,101,115,111,108,118,101,44,114,61,72,40,116,46,116,104,117,109,98,115,83,119,105,112,105,110,103,80,114,111,112,115,41,44,105,61,110,40,75,41,59,116,104,105,115,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,101,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,62,105,110,110,101,114,87,105,100,116,104,38,38,114,40,41,38,38,105,46,114,117,110,65,99,116,105,111,110,115,40,116,41,125,125,102,117,110,99,116,105,111,110,32,90,40,116,41,123,118,97,114,32,101,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,110,61,116,46,100,97,116,97,44,114,61,116,46,99,111,114,101,44,105,61,114,46,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,44,111,61,114,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,84,114,97,110,115,105,116,105,111,110,101,114,44,97,61,114,46,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,44,115,61,116,46,101,108,101,109,101,110,116,115,44,99,61,116,46,116,104,117,109,98,115,83,119,105,112,105,110,103,80,114,111,112,115,44,117,61,115,46,116,104,117,109,98,115,87,114,97,112,112,101,114,115,59,116,104,105,115,46,114,117,110,78,111,83,119,105,112,101,65,99,116,105,111,110,115,70,111,114,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,99,46,105,115,80,111,105,110,116,101,114,105,110,103,61,33,49,59,102,111,114,40,118,97,114,32,101,61,48,59,101,60,115,46,116,104,117,109,98,115,87,114,97,112,112,101,114,115,46,108,101,110,103,116,104,59,101,43,43,41,105,102,40,117,91,101,93,38,38,117,91,101,93,46,99,111,110,116,97,105,110,115,40,116,46,116,97,114,103,101,116,41,41,114,101,116,117,114,110,32,118,111,105,100,32,105,46,106,117,109,112,84,111,40,101,41,125,44,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,101,46,104,105,100,101,84,104,117,109,98,115,67,117,114,115,111,114,101,114,40,41,44,110,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,43,61,99,46,115,119,105,112,101,100,88,44,97,46,114,117,110,83,119,105,112,105,110,103,84,111,112,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,40,99,41,44,110,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,62,48,41,114,101,116,117,114,110,32,108,40,48,41,59,110,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,60,105,110,110,101,114,87,105,100,116,104,45,110,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,45,57,38,38,108,40,105,110,110,101,114,87,105,100,116,104,45,110,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,45,57,41,125,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,61,116,44,111,46,99,97,108,108,65,99,116,105,111,110,87,105,116,104,84,114,97,110,115,105,116,105,111,110,40,40,102,117,110,99,116,105,111,110,40,41,123,115,46,116,104,117,109,98,115,73,110,110,101,114,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,34,116,114,97,110,115,108,97,116,101,88,40,34,46,99,111,110,99,97,116,40,116,44,34,112,120,41,34,41,125,41,41,125,125,102,117,110,99,116,105,111,110,32,74,40,116,41,123,118,97,114,32,101,61,116,46,114,101,115,111,108,118,101,44,110,61,116,46,116,104,117,109,98,115,83,119,105,112,105,110,103,80,114,111,112,115,44,114,61,101,40,90,41,59,116,104,105,115,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,105,115,80,111,105,110,116,101,114,105,110,103,38,38,40,110,46,115,119,105,112,101,100,88,63,114,46,114,117,110,65,99,116,105,111,110,115,40,41,58,114,46,114,117,110,78,111,83,119,105,112,101,65,99,116,105,111,110,115,70,111,114,69,118,101,110,116,40,116,41,41,125,125,102,117,110,99,116,105,111,110,32,81,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,46,105,110,97,99,116,105,118,101,114,44,110,61,116,46,112,114,111,112,115,44,114,61,116,46,114,101,115,111,108,118,101,44,105,61,114,40,87,41,44,111,61,114,40,89,41,44,97,61,114,40,88,41,44,115,61,114,40,74,41,59,116,104,105,115,46,109,111,118,101,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,101,46,108,105,115,116,101,110,101,114,40,116,41,44,105,46,108,105,115,116,101,110,101,114,40,116,41,44,110,46,100,105,115,97,98,108,101,84,104,117,109,98,115,124,124,97,46,108,105,115,116,101,110,101,114,40,116,41,125,44,116,104,105,115,46,117,112,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,111,46,108,105,115,116,101,110,101,114,40,116,41,44,110,46,100,105,115,97,98,108,101,84,104,117,109,98,115,124,124,115,46,108,105,115,116,101,110,101,114,40,116,41,125,125,102,117,110,99,116,105,111,110,32,116,116,40,41,123,114,101,116,117,114,110,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,119,105,110,100,111,119,124,124,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,62,48,124,124,110,97,118,105,103,97,116,111,114,46,109,115,77,97,120,84,111,117,99,104,80,111,105,110,116,115,62,48,125,102,117,110,99,116,105,111,110,32,101,116,40,116,41,123,114,101,116,117,114,110,33,116,46,116,111,117,99,104,101,115,124,124,116,46,116,111,117,99,104,101,115,46,108,101,110,103,116,104,60,61,50,125,102,117,110,99,116,105,111,110,32,110,116,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,46,122,111,111,109,101,114,44,110,61,116,46,100,97,116,97,59,116,104,105,115,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,49,61,61,61,110,46,122,111,111,109,41,123,105,102,40,116,46,100,101,108,116,97,89,62,48,41,114,101,116,117,114,110,59,101,46,115,116,97,114,116,90,111,111,109,105,110,103,40,41,125,118,97,114,32,114,61,46,49,42,110,46,122,111,111,109,44,105,61,110,46,122,111,111,109,59,116,46,100,101,108,116,97,89,60,48,63,105,43,61,114,58,40,105,45,61,114,41,60,49,38,38,40,105,61,49,41,44,101,46,122,111,111,109,84,111,40,105,41,44,49,61,61,61,105,38,38,101,46,115,116,111,112,90,111,111,109,105,110,103,40,41,125,125,102,117,110,99,116,105,111,110,32,114,116,40,116,41,123,114,101,116,117,114,110,33,116,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,46,105,115,80,111,105,110,116,101,114,105,110,103,125,102,117,110,99,116,105,111,110,32,105,116,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,44,110,61,101,46,115,108,105,100,101,115,104,111,119,77,97,110,97,103,101,114,44,114,61,101,46,115,108,105,100,101,67,104,97,110,103,101,70,97,99,97,100,101,44,105,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,111,61,116,46,101,108,101,109,101,110,116,115,44,97,61,116,46,112,114,111,112,115,44,115,61,48,44,99,61,33,49,59,102,117,110,99,116,105,111,110,32,117,40,41,123,111,46,115,108,105,100,101,115,104,111,119,66,97,114,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,109,41,44,105,46,115,116,111,112,83,108,105,100,101,115,104,111,119,40,41,44,99,61,33,49,125,102,117,110,99,116,105,111,110,32,108,40,41,123,118,97,114,32,116,61,40,115,43,61,49,54,46,54,55,41,47,97,46,115,108,105,100,101,115,104,111,119,84,105,109,101,59,111,46,115,108,105,100,101,115,104,111,119,66,97,114,46,115,116,121,108,101,46,119,105,100,116,104,61,116,42,105,110,110,101,114,87,105,100,116,104,43,34,112,120,34,44,116,62,61,49,38,38,40,115,61,48,44,114,46,99,104,97,110,103,101,84,111,78,101,120,116,40,41,41,44,99,38,38,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,108,41,125,110,46,116,111,103,103,108,101,83,108,105,100,101,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,99,63,117,40,41,58,40,99,61,33,48,44,111,46,115,108,105,100,101,115,104,111,119,66,97,114,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,109,41,44,105,46,115,116,97,114,116,83,108,105,100,101,115,104,111,119,40,41,44,108,40,41,41,125,44,110,46,114,101,115,101,116,83,108,105,100,101,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,115,61,48,44,99,38,38,117,40,41,125,125,102,117,110,99,116,105,111,110,32,111,116,40,116,41,123,118,97,114,32,101,61,116,46,100,97,116,97,44,110,61,116,46,101,108,101,109,101,110,116,115,44,114,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,59,116,104,105,115,46,114,117,110,79,112,97,99,105,116,121,48,65,99,116,105,111,110,85,115,105,110,103,77,101,116,104,111,100,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,115,108,105,100,101,66,117,116,116,111,110,80,114,101,118,105,111,117,115,38,38,40,110,46,115,108,105,100,101,66,117,116,116,111,110,80,114,101,118,105,111,117,115,46,99,108,97,115,115,76,105,115,116,91,116,93,40,103,41,44,110,46,115,108,105,100,101,66,117,116,116,111,110,78,101,120,116,46,99,108,97,115,115,76,105,115,116,91,116,93,40,103,41,41,125,44,116,104,105,115,46,114,117,110,65,99,116,105,118,101,69,110,104,97,110,99,101,109,101,110,116,65,99,116,105,111,110,85,115,105,110,103,77,101,116,104,111,100,61,102,117,110,99,116,105,111,110,40,116,41,123,101,46,105,115,84,104,117,109,98,105,110,103,63,110,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,46,99,108,97,115,115,76,105,115,116,91,116,93,40,95,41,58,110,46,99,97,112,116,105,111,110,115,91,114,46,99,117,114,114,101,110,116,93,38,38,110,46,99,97,112,116,105,111,110,115,91,114,46,99,117,114,114,101,110,116,93,46,99,108,97,115,115,76,105,115,116,91,116,93,40,112,41,125,125,102,117,110,99,116,105,111,110,32,97,116,40,116,44,101,41,123,118,97,114,32,110,61,116,46,99,108,97,115,115,76,105,115,116,59,110,46,99,111,110,116,97,105,110,115,40,101,41,124,124,110,46,97,100,100,40,101,41,125,102,117,110,99,116,105,111,110,32,115,116,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,46,122,111,111,109,101,114,44,110,61,116,46,100,97,116,97,44,114,61,116,46,101,108,101,109,101,110,116,115,44,105,61,116,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,59,116,104,105,115,46,114,117,110,80,105,110,99,104,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,46,105,115,80,105,110,99,104,105,110,103,61,33,48,44,105,46,112,105,110,99,104,101,100,72,121,112,111,116,61,78,40,116,41,44,97,116,40,114,46,115,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,44,121,41,44,49,61,61,61,110,46,122,111,111,109,38,38,101,46,115,116,97,114,116,90,111,111,109,105,110,103,40,41,125,125,102,117,110,99,116,105,111,110,32,99,116,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,61,116,46,100,97,116,97,44,111,61,116,46,101,108,101,109,101,110,116,115,44,97,61,105,46,99,97,112,116,105,111,110,72,101,105,103,104,116,115,44,115,61,105,46,110,111,116,84,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,83,99,97,108,101,115,44,99,61,105,46,110,111,116,84,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,108,97,116,101,115,89,44,117,61,111,46,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,44,108,61,111,46,115,111,117,114,99,101,115,59,116,104,105,115,46,115,101,116,85,112,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,61,102,117,110,99,116,105,111,110,40,41,123,101,61,111,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,46,111,102,102,115,101,116,72,101,105,103,104,116,44,110,61,105,46,116,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,108,97,116,101,89,44,114,61,34,116,114,97,110,115,108,97,116,101,89,40,34,46,99,111,110,99,97,116,40,110,44,34,112,120,41,32,115,99,97,108,101,40,34,41,46,99,111,110,99,97,116,40,105,46,116,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,83,99,97,108,101,44,34,41,34,41,125,44,116,104,105,115,46,115,101,116,85,112,78,111,116,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,65,116,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,41,123,101,61,97,91,116,93,44,110,61,99,91,116,93,44,114,61,34,116,114,97,110,115,108,97,116,101,89,40,34,46,99,111,110,99,97,116,40,110,44,34,112,120,41,32,115,99,97,108,101,40,34,41,46,99,111,110,99,97,116,40,115,91,116,93,44,34,41,34,41,125,44,116,104,105,115,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,41,123,108,91,116,93,38,38,40,105,110,110,101,114,87,105,100,116,104,60,105,110,110,101,114,72,101,105,103,104,116,38,38,108,91,116,93,46,111,102,102,115,101,116,87,105,100,116,104,62,108,91,116,93,46,111,102,102,115,101,116,72,101,105,103,104,116,43,101,63,117,91,116,93,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,34,116,114,97,110,115,108,97,116,101,89,40,34,46,99,111,110,99,97,116,40,110,47,50,44,34,112,120,41,32,115,99,97,108,101,40,49,41,34,41,58,117,91,116,93,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,114,41,125,125,102,117,110,99,116,105,111,110,32,117,116,40,116,41,123,118,97,114,32,101,44,110,44,114,59,110,61,40,101,61,116,41,46,99,111,114,101,46,99,108,97,115,115,70,97,99,97,100,101,44,114,61,101,46,101,108,101,109,101,110,116,115,44,110,46,114,101,109,111,118,101,70,114,111,109,69,97,99,104,69,108,101,109,101,110,116,67,108,97,115,115,73,102,67,111,110,116,97,105,110,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,114,91,116,93,46,108,101,110,103,116,104,59,110,43,43,41,76,40,114,91,116,93,91,110,93,44,101,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,44,110,61,101,46,99,108,105,99,107,90,111,111,109,101,114,44,114,61,101,46,122,111,111,109,101,114,44,105,61,116,46,100,97,116,97,44,111,61,116,46,101,108,101,109,101,110,116,115,44,97,61,116,46,103,101,116,81,117,101,117,101,100,65,99,116,105,111,110,44,115,61,116,46,112,114,111,112,115,46,122,111,111,109,73,110,99,114,101,109,101,110,116,44,99,61,97,40,40,102,117,110,99,116,105,111,110,40,41,123,76,40,111,46,115,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,44,117,41,125,41,44,51,48,48,41,59,110,46,122,111,111,109,73,110,61,102,117,110,99,116,105,111,110,40,41,123,108,40,41,44,102,40,105,46,122,111,111,109,43,115,41,125,44,110,46,122,111,111,109,79,117,116,61,102,117,110,99,116,105,111,110,40,41,123,105,46,122,111,111,109,45,115,60,61,49,63,49,33,61,61,105,46,122,111,111,109,38,38,40,102,40,49,41,44,114,46,115,116,111,112,90,111,111,109,105,110,103,40,41,41,58,40,108,40,41,44,102,40,105,46,122,111,111,109,45,115,41,44,49,61,61,61,105,46,122,111,111,109,38,38,114,46,115,116,111,112,90,111,111,109,105,110,103,40,41,41,125,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,41,123,49,61,61,61,105,46,122,111,111,109,38,38,114,46,115,116,97,114,116,90,111,111,109,105,110,103,40,41,125,44,102,61,102,117,110,99,116,105,111,110,40,116,41,123,97,116,40,111,46,115,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,44,117,41,44,114,46,122,111,111,109,84,111,40,116,41,44,99,40,41,125,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,46,101,118,101,110,116,115,68,105,115,112,97,116,99,104,101,114,44,110,61,116,46,112,114,111,112,115,59,101,46,100,105,115,112,97,116,99,104,61,102,117,110,99,116,105,111,110,40,101,41,123,110,91,101,93,38,38,110,91,101,93,40,116,41,125,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,77,97,110,97,103,101,114,44,110,61,116,46,99,111,114,101,46,102,117,108,108,115,99,114,101,101,110,84,111,103,103,108,101,114,59,110,46,101,110,116,101,114,70,117,108,108,115,99,114,101,101,110,61,102,117,110,99,116,105,111,110,40,41,123,101,46,115,101,116,40,33,48,41,59,118,97,114,32,116,61,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,116,46,114,101,113,117,101,115,116,70,117,108,108,115,99,114,101,101,110,63,116,46,114,101,113,117,101,115,116,70,117,108,108,115,99,114,101,101,110,40,41,58,116,46,109,111,122,82,101,113,117,101,115,116,70,117,108,108,83,99,114,101,101,110,63,116,46,109,111,122,82,101,113,117,101,115,116,70,117,108,108,83,99,114,101,101,110,40,41,58,116,46,119,101,98,107,105,116,82,101,113,117,101,115,116,70,117,108,108,115,99,114,101,101,110,63,116,46,119,101,98,107,105,116,82,101,113,117,101,115,116,70,117,108,108,115,99,114,101,101,110,40,41,58,116,46,109,115,82,101,113,117,101,115,116,70,117,108,108,115,99,114,101,101,110,38,38,116,46,109,115,82,101,113,117,101,115,116,70,117,108,108,115,99,114,101,101,110,40,41,125,44,110,46,101,120,105,116,70,117,108,108,115,99,114,101,101,110,61,102,117,110,99,116,105,111,110,40,41,123,101,46,115,101,116,40,33,49,41,44,100,111,99,117,109,101,110,116,46,101,120,105,116,70,117,108,108,115,99,114,101,101,110,63,100,111,99,117,109,101,110,116,46,101,120,105,116,70,117,108,108,115,99,114,101,101,110,40,41,58,100,111,99,117,109,101,110,116,46,109,111,122,67,97,110,99,101,108,70,117,108,108,83,99,114,101,101,110,63,100,111,99,117,109,101,110,116,46,109,111,122,67,97,110,99,101,108,70,117,108,108,83,99,114,101,101,110,40,41,58,100,111,99,117,109,101,110,116,46,119,101,98,107,105,116,69,120,105,116,70,117,108,108,115,99,114,101,101,110,63,100,111,99,117,109,101,110,116,46,119,101,98,107,105,116,69,120,105,116,70,117,108,108,115,99,114,101,101,110,40,41,58,100,111,99,117,109,101,110,116,46,109,115,69,120,105,116,70,117,108,108,115,99,114,101,101,110,38,38,100,111,99,117,109,101,110,116,46,109,115,69,120,105,116,70,117,108,108,115,99,114,101,101,110,40,41,125,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,61,116,46,99,111,114,101,44,111,61,105,46,105,110,97,99,116,105,118,101,114,44,97,61,105,46,103,108,111,98,97,108,69,118,101,110,116,115,67,111,110,116,114,111,108,108,101,114,44,115,61,105,46,119,105,110,100,111,119,82,101,115,105,122,101,65,99,116,105,111,110,101,114,44,99,61,116,46,109,105,100,100,108,101,119,97,114,101,44,117,61,116,46,114,101,115,111,108,118,101,44,108,61,117,40,81,41,44,102,61,117,40,36,41,44,104,61,117,40,110,116,41,59,97,46,97,100,100,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,116,116,40,41,63,40,101,61,69,40,108,46,109,111,118,101,76,105,115,116,101,110,101,114,44,101,116,41,44,110,61,69,40,108,46,117,112,76,105,115,116,101,110,101,114,44,101,116,41,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,34,116,111,117,99,104,115,116,97,114,116,34,44,111,46,108,105,115,116,101,110,101,114,44,123,112,97,115,115,105,118,101,58,33,48,125,41,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,34,116,111,117,99,104,109,111,118,101,34,44,101,44,123,112,97,115,115,105,118,101,58,33,48,125,41,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,34,116,111,117,99,104,101,110,100,34,44,110,41,41,58,40,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,34,109,111,117,115,101,100,111,119,110,34,44,111,46,108,105,115,116,101,110,101,114,41,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,34,109,111,117,115,101,109,111,118,101,34,44,108,46,109,111,118,101,76,105,115,116,101,110,101,114,41,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,34,109,111,117,115,101,117,112,34,44,108,46,117,112,76,105,115,116,101,110,101,114,41,41,44,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,115,46,114,117,110,65,99,116,105,111,110,115,41,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,34,107,101,121,100,111,119,110,34,44,102,46,108,105,115,116,101,110,101,114,41,59,118,97,114,32,116,61,86,40,41,59,114,61,99,40,114,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,41,38,38,104,46,108,105,115,116,101,110,101,114,40,101,41,125,44,114,116,41,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,34,119,104,101,101,108,34,44,114,41,125,44,97,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,116,116,40,41,63,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,34,116,111,117,99,104,115,116,97,114,116,34,44,111,46,108,105,115,116,101,110,101,114,41,44,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,34,116,111,117,99,104,109,111,118,101,34,44,101,41,44,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,34,116,111,117,99,104,101,110,100,34,44,110,41,41,58,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,34,109,111,117,115,101,100,111,119,110,34,44,111,46,108,105,115,116,101,110,101,114,41,44,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,34,109,111,117,115,101,109,111,118,101,34,44,108,46,109,111,118,101,76,105,115,116,101,110,101,114,41,44,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,34,109,111,117,115,101,117,112,34,44,108,46,117,112,76,105,115,116,101,110,101,114,41,41,44,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,115,46,114,117,110,65,99,116,105,111,110,115,41,44,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,34,107,101,121,100,111,119,110,34,44,102,46,108,105,115,116,101,110,101,114,41,44,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,34,119,104,101,101,108,34,44,114,41,125,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,46,105,110,97,99,116,105,118,101,114,44,110,61,116,46,100,97,116,97,44,114,61,116,46,101,108,101,109,101,110,116,115,44,105,61,116,46,103,101,116,81,117,101,117,101,100,65,99,116,105,111,110,44,111,61,116,46,112,114,111,112,115,46,85,73,70,97,100,101,79,117,116,84,105,109,101,44,97,61,33,49,44,115,61,105,40,40,102,117,110,99,116,105,111,110,40,41,123,97,61,33,48,44,99,40,117,41,125,41,44,111,41,59,101,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,41,123,115,40,41,44,97,38,38,40,99,40,108,41,44,97,61,33,49,41,125,59,118,97,114,32,99,61,102,117,110,99,116,105,111,110,40,116,41,123,116,40,114,46,110,97,118,41,44,49,61,61,61,110,46,122,111,111,109,38,38,114,46,115,108,105,100,101,66,117,116,116,111,110,80,114,101,118,105,111,117,115,38,38,40,116,40,114,46,115,108,105,100,101,66,117,116,116,111,110,80,114,101,118,105,111,117,115,41,44,116,40,114,46,115,108,105,100,101,66,117,116,116,111,110,78,101,120,116,41,41,44,110,46,105,115,84,104,117,109,98,105,110,103,38,38,116,40,114,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,41,125,44,117,61,102,117,110,99,116,105,111,110,40,116,41,123,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,103,41,125,44,108,61,102,117,110,99,116,105,111,110,40,116,41,123,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,103,41,125,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,46,108,105,103,104,116,98,111,120,67,108,111,115,101,114,44,110,61,40,48,44,116,46,114,101,115,111,108,118,101,41,40,73,41,59,101,46,99,108,111,115,101,76,105,103,104,116,98,111,120,61,102,117,110,99,116,105,111,110,40,41,123,110,46,105,115,76,105,103,104,116,98,111,120,70,97,100,105,110,103,79,117,116,124,124,110,46,114,117,110,65,99,116,105,111,110,115,40,41,125,125,40,116,41,44,107,116,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,44,110,61,116,46,99,111,114,101,44,114,61,110,46,101,118,101,110,116,115,68,105,115,112,97,116,99,104,101,114,44,105,61,110,46,108,105,103,104,116,98,111,120,79,112,101,110,65,99,116,105,111,110,101,114,44,111,61,110,46,103,108,111,98,97,108,69,118,101,110,116,115,67,111,110,116,114,111,108,108,101,114,44,97,61,110,46,115,99,114,111,108,108,98,97,114,82,101,99,111,109,112,101,110,115,111,114,44,115,61,110,46,115,111,117,114,99,101,68,105,115,112,108,97,121,70,97,99,97,100,101,44,117,61,110,46,115,116,97,103,101,77,97,110,97,103,101,114,44,108,61,110,46,119,105,110,100,111,119,82,101,115,105,122,101,65,99,116,105,111,110,101,114,44,102,61,116,46,100,97,116,97,44,104,61,116,46,112,114,111,112,115,46,115,111,117,114,99,101,115,44,100,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,59,105,46,114,117,110,66,101,102,111,114,101,82,101,110,100,101,114,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,102,46,117,110,108,111,97,100,101,100,84,104,117,109,98,115,67,111,117,110,116,61,104,46,108,101,110,103,116,104,125,44,105,46,114,117,110,65,102,116,101,114,82,101,110,100,101,114,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,102,46,105,115,70,117,108,108,121,82,101,110,100,101,114,101,100,61,33,48,44,117,46,117,112,100,97,116,101,83,116,97,103,101,73,110,100,101,120,101,115,40,41,44,115,46,100,105,115,112,108,97,121,83,111,117,114,99,101,115,87,104,105,99,104,83,104,111,117,108,100,66,101,68,105,115,112,108,97,121,101,100,40,41,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,99,108,97,115,115,76,105,115,116,46,97,100,100,40,99,41,44,97,46,97,100,100,82,101,99,111,109,112,101,110,115,101,40,41,44,111,46,97,100,100,76,105,115,116,101,110,101,114,115,40,41,44,108,46,114,117,110,65,99,116,105,111,110,115,40,41,44,101,91,100,46,99,117,114,114,101,110,116,93,46,122,101,114,111,40,41,44,114,46,100,105,115,112,97,116,99,104,40,34,111,110,79,112,101,110,34,41,125,125,40,116,41,44,65,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,100,97,116,97,44,110,61,116,46,99,111,114,101,46,115,99,114,111,108,108,98,97,114,82,101,99,111,109,112,101,110,115,111,114,59,110,46,97,100,100,82,101,99,111,109,112,101,110,115,101,61,102,117,110,99,116,105,111,110,40,41,123,34,99,111,109,112,108,101,116,101,34,61,61,61,100,111,99,117,109,101,110,116,46,114,101,97,100,121,83,116,97,116,101,63,114,40,41,58,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,108,111,97,100,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,40,41,44,110,46,97,100,100,82,101,99,111,109,112,101,110,115,101,61,114,125,41,41,125,59,118,97,114,32,114,61,102,117,110,99,116,105,111,110,40,41,123,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,62,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,38,38,40,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,46,109,97,114,103,105,110,82,105,103,104,116,61,101,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,59,110,46,114,101,109,111,118,101,82,101,99,111,109,112,101,110,115,101,61,102,117,110,99,116,105,111,110,40,41,123,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,125,125,40,116,41,44,105,116,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,44,110,61,101,46,115,108,105,100,101,67,104,97,110,103,101,70,97,99,97,100,101,44,114,61,101,46,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,44,105,61,101,46,115,116,97,103,101,77,97,110,97,103,101,114,59,116,46,112,114,111,112,115,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,62,49,63,40,110,46,99,104,97,110,103,101,84,111,80,114,101,118,105,111,117,115,61,102,117,110,99,116,105,111,110,40,41,123,114,46,106,117,109,112,84,111,40,105,46,103,101,116,80,114,101,118,105,111,117,115,83,108,105,100,101,73,110,100,101,120,40,41,41,125,44,110,46,99,104,97,110,103,101,84,111,78,101,120,116,61,102,117,110,99,116,105,111,110,40,41,123,114,46,106,117,109,112,84,111,40,105,46,103,101,116,78,101,120,116,83,108,105,100,101,73,110,100,101,120,40,41,41,125,41,58,40,110,46,99,104,97,110,103,101,84,111,80,114,101,118,105,111,117,115,61,102,117,110,99,116,105,111,110,40,41,123,125,44,110,46,99,104,97,110,103,101,84,111,78,101,120,116,61,102,117,110,99,116,105,111,110,40,41,123,125,41,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,44,110,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,114,61,116,46,99,111,114,101,44,105,61,114,46,99,108,97,115,115,70,97,99,97,100,101,44,111,61,114,46,101,118,101,110,116,115,68,105,115,112,97,116,99,104,101,114,44,97,61,114,46,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,44,115,61,114,46,115,111,117,114,99,101,68,105,115,112,108,97,121,70,97,99,97,100,101,44,99,61,114,46,115,116,97,103,101,77,97,110,97,103,101,114,44,108,61,114,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,101,114,44,104,61,114,46,122,111,111,109,101,114,44,100,61,116,46,100,97,116,97,44,112,61,116,46,101,108,101,109,101,110,116,115,44,118,61,112,46,115,111,117,114,99,101,65,110,105,109,97,116,105,111,110,87,114,97,112,112,101,114,115,44,103,61,112,46,116,104,117,109,98,115,44,109,61,116,46,103,101,116,81,117,101,117,101,100,65,99,116,105,111,110,44,98,61,116,46,112,114,111,112,115,44,121,61,98,46,100,105,115,97,98,108,101,84,104,117,109,98,115,44,119,61,98,46,105,110,105,116,105,97,108,65,110,105,109,97,116,105,111,110,44,95,61,98,46,115,108,105,100,101,67,104,97,110,103,101,65,110,105,109,97,116,105,111,110,44,79,61,116,46,114,101,115,111,108,118,101,44,83,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,44,107,61,116,46,116,105,109,101,111,117,116,44,67,61,79,40,77,41,44,80,61,109,40,40,102,117,110,99,116,105,111,110,40,41,123,105,46,114,101,109,111,118,101,70,114,111,109,69,97,99,104,69,108,101,109,101,110,116,67,108,97,115,115,73,102,67,111,110,116,97,105,110,115,40,34,115,111,117,114,99,101,65,110,105,109,97,116,105,111,110,87,114,97,112,112,101,114,115,34,44,102,41,125,41,44,50,53,48,41,59,97,46,99,104,97,110,103,101,84,111,61,102,117,110,99,116,105,111,110,40,116,41,123,121,124,124,40,103,91,83,46,99,117,114,114,101,110,116,93,38,38,103,91,83,46,99,117,114,114,101,110,116,93,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,120,41,44,103,91,116,93,38,38,103,91,116,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,120,41,41,44,104,46,105,102,90,111,111,109,105,110,103,82,101,115,101,116,90,111,111,109,40,41,44,100,46,105,115,84,104,117,109,98,105,110,103,124,124,67,46,114,117,110,83,108,105,100,101,67,104,97,110,103,101,65,99,116,105,111,110,115,40,83,46,99,117,114,114,101,110,116,44,116,41,44,83,46,99,117,114,114,101,110,116,61,116,44,99,46,117,112,100,97,116,101,83,116,97,103,101,73,110,100,101,120,101,115,40,41,44,33,121,38,38,103,91,83,46,99,117,114,114,101,110,116,93,38,38,108,46,116,114,97,110,115,102,111,114,109,84,111,67,117,114,114,101,110,116,87,105,116,104,84,114,97,110,115,105,116,105,111,110,40,41,44,110,46,115,101,116,83,108,105,100,101,78,117,109,98,101,114,40,116,43,49,41,44,115,46,100,105,115,112,108,97,121,83,111,117,114,99,101,115,87,104,105,99,104,83,104,111,117,108,100,66,101,68,105,115,112,108,97,121,101,100,40,41,44,111,46,100,105,115,112,97,116,99,104,40,34,111,110,83,108,105,100,101,67,104,97,110,103,101,34,41,125,44,97,46,106,117,109,112,84,111,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,83,46,99,117,114,114,101,110,116,59,97,46,99,104,97,110,103,101,84,111,40,116,41,44,105,46,114,101,109,111,118,101,70,114,111,109,69,97,99,104,69,108,101,109,101,110,116,67,108,97,115,115,73,102,67,111,110,116,97,105,110,115,40,34,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,34,44,117,41,44,76,40,118,91,110,93,44,119,41,44,76,40,118,91,110,93,44,95,41,44,118,91,110,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,102,41,44,76,40,118,91,116,93,44,119,41,44,76,40,118,91,116,93,44,102,41,44,118,91,116,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,95,41,44,80,40,41,44,101,91,116,93,46,122,101,114,111,40,41,44,107,40,40,102,117,110,99,116,105,111,110,40,41,123,110,33,61,61,83,46,99,117,114,114,101,110,116,38,38,101,91,110,93,46,110,101,103,97,116,105,118,101,40,41,125,41,44,50,50,48,41,125,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,46,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,84,114,97,110,115,102,111,114,109,101,114,44,110,61,116,46,100,97,116,97,44,114,61,40,48,44,116,46,114,101,115,111,108,118,101,41,40,99,116,41,59,101,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,105,115,84,104,117,109,98,105,110,103,63,114,46,115,101,116,85,112,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,40,41,58,114,46,115,101,116,85,112,78,111,116,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,65,116,73,110,100,101,120,40,116,41,44,114,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,40,116,41,125,44,101,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,46,115,101,116,85,112,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,40,116,41,44,114,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,40,116,41,125,44,101,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,78,111,116,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,46,115,101,116,85,112,78,111,116,84,104,117,109,98,101,100,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,65,116,73,110,100,101,120,40,116,41,44,114,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,40,116,41,125,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,46,115,111,117,114,99,101,68,105,115,112,108,97,121,70,97,99,97,100,101,44,110,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,117,112,100,97,116,101,83,111,117,114,99,101,68,105,114,101,99,116,87,114,97,112,112,101,114,67,111,108,108,101,99,116,105,111,110,44,114,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,44,105,61,116,46,112,114,111,112,115,46,108,111,97,100,79,110,108,121,67,117,114,114,101,110,116,83,111,117,114,99,101,59,101,46,100,105,115,112,108,97,121,83,111,117,114,99,101,115,87,104,105,99,104,83,104,111,117,108,100,66,101,68,105,115,112,108,97,121,101,100,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,105,41,110,91,114,46,99,117,114,114,101,110,116,93,40,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,116,32,105,110,32,114,41,118,111,105,100,32,48,33,61,61,114,91,116,93,38,38,110,91,114,91,116,93,93,40,41,125,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,44,110,61,101,46,99,108,97,115,115,70,97,99,97,100,101,44,114,61,101,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,68,111,119,110,44,105,61,101,46,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,44,111,61,116,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,115,44,97,61,116,46,114,101,115,111,108,118,101,44,115,61,116,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,99,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,44,108,61,97,40,115,116,41,59,114,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,34,86,73,68,69,79,34,61,61,61,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,124,124,116,46,116,111,117,99,104,101,115,124,124,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,105,46,114,117,110,83,119,105,112,105,110,103,68,111,119,110,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,40,115,44,116,41,44,115,46,105,115,77,111,118,101,67,97,108,108,70,105,114,115,116,61,33,48,44,115,46,100,111,119,110,67,108,105,101,110,116,89,61,70,40,116,41,44,50,61,61,61,85,40,116,41,63,108,46,114,117,110,80,105,110,99,104,65,99,116,105,111,110,115,40,116,41,58,110,46,114,101,109,111,118,101,70,114,111,109,69,97,99,104,69,108,101,109,101,110,116,67,108,97,115,115,73,102,67,111,110,116,97,105,110,115,40,34,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,34,44,117,41,59,118,97,114,32,101,61,111,91,99,46,99,117,114,114,101,110,116,93,59,101,38,38,101,46,99,111,110,116,97,105,110,115,40,116,46,116,97,114,103,101,116,41,63,115,46,105,115,83,111,117,114,99,101,68,111,119,110,69,118,101,110,116,84,97,114,103,101,116,61,33,48,58,115,46,105,115,83,111,117,114,99,101,68,111,119,110,69,118,101,110,116,84,97,114,103,101,116,61,33,49,125,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,44,110,61,116,46,99,111,114,101,46,115,116,97,103,101,77,97,110,97,103,101,114,44,114,61,116,46,112,114,111,112,115,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,45,49,59,110,46,103,101,116,80,114,101,118,105,111,117,115,83,108,105,100,101,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,61,101,46,99,117,114,114,101,110,116,63,114,58,101,46,99,117,114,114,101,110,116,45,49,125,44,110,46,103,101,116,78,101,120,116,83,108,105,100,101,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,99,117,114,114,101,110,116,61,61,61,114,63,48,58,101,46,99,117,114,114,101,110,116,43,49,125,44,110,46,117,112,100,97,116,101,83,116,97,103,101,73,110,100,101,120,101,115,61,48,61,61,61,114,63,102,117,110,99,116,105,111,110,40,41,123,125,58,49,61,61,61,114,63,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,101,46,99,117,114,114,101,110,116,63,40,101,46,110,101,120,116,61,49,44,100,101,108,101,116,101,32,101,46,112,114,101,118,105,111,117,115,41,58,40,101,46,112,114,101,118,105,111,117,115,61,48,44,100,101,108,101,116,101,32,101,46,110,101,120,116,41,125,58,102,117,110,99,116,105,111,110,40,41,123,101,46,112,114,101,118,105,111,117,115,61,110,46,103,101,116,80,114,101,118,105,111,117,115,83,108,105,100,101,73,110,100,101,120,40,41,44,101,46,110,101,120,116,61,110,46,103,101,116,78,101,120,116,83,108,105,100,101,73,110,100,101,120,40,41,125,44,110,46,105,115,83,111,117,114,99,101,73,110,83,116,97,103,101,61,114,60,61,50,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,116,41,123,118,97,114,32,110,61,101,46,99,117,114,114,101,110,116,59,105,102,40,48,61,61,61,110,38,38,116,61,61,61,114,124,124,110,61,61,61,114,38,38,48,61,61,61,116,41,114,101,116,117,114,110,33,48,59,118,97,114,32,105,61,110,45,116,59,114,101,116,117,114,110,45,49,61,61,61,105,124,124,48,61,61,61,105,124,124,49,61,61,61,105,125,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,46,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,44,110,61,116,46,101,108,101,109,101,110,116,115,59,101,46,114,117,110,83,119,105,112,105,110,103,68,111,119,110,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,105,115,80,111,105,110,116,101,114,105,110,103,61,33,48,44,116,46,100,111,119,110,67,108,105,101,110,116,88,61,66,40,101,41,44,116,46,115,119,105,112,101,100,88,61,48,125,44,101,46,114,117,110,83,119,105,112,105,110,103,77,111,118,101,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,97,116,40,110,46,99,111,110,116,97,105,110,101,114,44,97,41,44,116,46,115,119,105,112,101,100,88,61,66,40,101,41,45,116,46,100,111,119,110,67,108,105,101,110,116,88,125,44,101,46,114,117,110,83,119,105,112,105,110,103,84,111,112,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,76,40,110,46,99,111,110,116,97,105,110,101,114,44,97,41,44,116,46,105,115,80,111,105,110,116,101,114,105,110,103,61,33,49,125,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,108,108,101,99,116,105,111,110,115,44,110,61,101,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,44,114,61,101,46,115,111,117,114,99,101,83,105,122,101,114,115,44,105,61,116,46,99,111,114,101,44,111,61,105,46,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,84,114,97,110,115,102,111,114,109,101,114,44,97,61,105,46,119,105,110,100,111,119,82,101,115,105,122,101,65,99,116,105,111,110,101,114,44,115,61,105,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,101,114,44,99,61,116,46,100,97,116,97,44,108,61,116,46,101,108,101,109,101,110,116,115,44,102,61,116,46,112,114,111,112,115,44,104,61,102,46,100,105,115,97,98,108,101,84,104,117,109,98,115,44,100,61,102,46,115,111,117,114,99,101,115,44,112,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,44,118,61,99,46,99,97,112,116,105,111,110,72,101,105,103,104,116,115,44,103,61,99,46,110,111,116,84,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,83,99,97,108,101,115,44,109,61,99,46,110,111,116,84,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,108,97,116,101,115,89,44,98,61,108,46,99,97,112,116,105,111,110,115,44,121,61,108,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,44,119,61,108,46,116,104,117,109,98,115,59,97,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,105,110,110,101,114,87,105,100,116,104,60,57,57,50,63,99,46,109,97,120,83,111,117,114,99,101,87,105,100,116,104,61,105,110,110,101,114,87,105,100,116,104,58,99,46,109,97,120,83,111,117,114,99,101,87,105,100,116,104,61,46,57,42,105,110,110,101,114,87,105,100,116,104,44,99,46,109,97,120,83,111,117,114,99,101,72,101,105,103,104,116,61,46,57,42,105,110,110,101,114,72,101,105,103,104,116,44,104,124,124,40,99,46,116,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,83,99,97,108,101,61,49,45,108,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,46,111,102,102,115,101,116,72,101,105,103,104,116,47,105,110,110,101,114,72,101,105,103,104,116,44,99,46,116,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,108,97,116,101,89,61,45,108,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,46,111,102,102,115,101,116,72,101,105,103,104,116,47,50,41,44,48,61,61,61,99,46,117,110,108,111,97,100,101,100,84,104,117,109,98,115,67,111,117,110,116,38,38,97,46,114,117,110,84,104,117,109,98,115,65,99,116,105,111,110,115,40,41,59,102,111,114,40,118,97,114,32,116,61,48,59,116,60,100,46,108,101,110,103,116,104,59,116,43,43,41,123,105,102,40,98,91,116,93,41,123,118,91,116,93,61,98,91,116,93,46,111,102,102,115,101,116,72,101,105,103,104,116,59,118,97,114,32,101,61,118,91,116,93,45,50,53,59,103,91,116,93,61,49,45,101,47,105,110,110,101,114,72,101,105,103,104,116,44,109,91,116,93,61,45,101,47,50,125,101,108,115,101,32,103,91,116,93,61,49,44,109,91,116,93,61,48,59,76,40,121,91,116,93,44,117,41,44,111,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,40,116,41,44,116,33,61,61,112,46,99,117,114,114,101,110,116,38,38,110,91,116,93,46,110,101,103,97,116,105,118,101,40,41,44,114,91,116,93,38,38,114,91,116,93,46,97,100,106,117,115,116,83,105,122,101,40,41,125,125,44,97,46,114,117,110,84,104,117,109,98,115,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,99,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,61,48,59,102,111,114,40,118,97,114,32,116,61,48,59,116,60,100,46,108,101,110,103,116,104,59,116,43,43,41,99,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,43,61,119,91,116,93,46,111,102,102,115,101,116,87,105,100,116,104,43,56,59,115,46,116,114,97,110,115,102,111,114,109,84,111,67,117,114,114,101,110,116,40,41,125,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,44,110,61,116,46,99,111,114,101,46,122,111,111,109,101,114,44,114,61,116,46,100,97,116,97,44,105,61,116,46,101,108,101,109,101,110,116,115,44,111,61,116,46,114,101,115,111,108,118,101,44,97,61,116,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,44,115,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,44,99,61,105,46,115,111,117,114,99,101,115,44,108,61,105,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,44,102,61,111,40,111,116,41,59,110,46,122,111,111,109,84,111,61,102,117,110,99,116,105,111,110,40,116,41,123,114,46,122,111,111,109,61,100,40,116,41,44,105,46,115,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,34,115,99,97,108,101,40,34,46,99,111,110,99,97,116,40,114,46,122,111,111,109,44,34,41,34,41,125,44,110,46,105,102,90,111,111,109,105,110,103,82,101,115,101,116,90,111,111,109,61,102,117,110,99,116,105,111,110,40,41,123,49,33,61,61,114,46,122,111,111,109,38,38,40,110,46,122,111,111,109,84,111,40,49,41,44,110,46,115,116,111,112,90,111,111,109,105,110,103,40,41,41,125,44,110,46,115,116,97,114,116,90,111,111,109,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,104,40,34,103,114,97,98,34,41,44,102,46,114,117,110,79,112,97,99,105,116,121,48,65,99,116,105,111,110,85,115,105,110,103,77,101,116,104,111,100,40,34,97,100,100,34,41,44,102,46,114,117,110,65,99,116,105,118,101,69,110,104,97,110,99,101,109,101,110,116,65,99,116,105,111,110,85,115,105,110,103,77,101,116,104,111,100,40,34,114,101,109,111,118,101,34,41,125,44,110,46,115,116,111,112,90,111,111,109,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,104,40,34,122,111,111,109,45,105,110,34,41,44,102,46,114,117,110,79,112,97,99,105,116,121,48,65,99,116,105,111,110,85,115,105,110,103,77,101,116,104,111,100,40,34,114,101,109,111,118,101,34,41,44,102,46,114,117,110,65,99,116,105,118,101,69,110,104,97,110,99,101,109,101,110,116,65,99,116,105,111,110,85,115,105,110,103,77,101,116,104,111,100,40,34,97,100,100,34,41,44,108,91,115,46,99,117,114,114,101,110,116,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,117,41,44,101,91,115,46,99,117,114,114,101,110,116,93,46,116,114,97,110,115,108,97,116,101,40,48,44,48,41,46,122,101,114,111,40,41,44,97,46,117,112,83,119,105,112,101,100,88,61,48,44,97,46,117,112,83,119,105,112,101,100,89,61,48,125,59,118,97,114,32,104,61,102,117,110,99,116,105,111,110,40,116,41,123,99,91,115,46,99,117,114,114,101,110,116,93,38,38,40,99,91,115,46,99,117,114,114,101,110,116,93,46,115,116,121,108,101,46,99,117,114,115,111,114,61,116,41,125,44,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,112,97,114,115,101,70,108,111,97,116,40,116,46,116,111,80,114,101,99,105,115,105,111,110,40,49,50,41,41,125,125,40,116,41,125,102,117,110,99,116,105,111,110,32,108,116,40,116,41,123,118,97,114,32,101,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,110,61,116,46,99,111,114,101,44,114,61,110,46,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,84,114,97,110,115,102,111,114,109,101,114,44,105,61,110,46,122,111,111,109,101,114,44,111,61,116,46,100,97,116,97,44,97,61,116,46,101,108,101,109,101,110,116,115,44,115,61,116,46,112,114,111,112,115,46,115,111,117,114,99,101,115,44,99,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,59,116,104,105,115,46,111,112,101,110,84,104,117,109,98,115,61,102,117,110,99,116,105,111,110,40,41,123,105,46,105,102,90,111,111,109,105,110,103,82,101,115,101,116,90,111,111,109,40,41,44,97,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,95,41,44,117,40,34,114,101,109,111,118,101,34,41,44,111,46,105,115,84,104,117,109,98,105,110,103,61,33,48,44,108,40,41,44,111,46,117,110,108,111,97,100,101,100,84,104,117,109,98,115,67,111,117,110,116,38,38,101,46,117,112,100,97,116,101,84,104,117,109,98,115,73,110,110,101,114,40,41,125,44,116,104,105,115,46,99,108,111,115,101,84,104,117,109,98,115,61,102,117,110,99,116,105,111,110,40,41,123,105,46,105,102,90,111,111,109,105,110,103,82,101,115,101,116,90,111,111,109,40,41,44,97,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,95,41,44,117,40,34,97,100,100,34,41,44,111,46,105,115,84,104,117,109,98,105,110,103,61,33,49,44,108,40,41,125,59,118,97,114,32,117,61,102,117,110,99,116,105,111,110,40,116,41,123,97,46,99,97,112,116,105,111,110,115,91,99,46,99,117,114,114,101,110,116,93,38,38,97,46,99,97,112,116,105,111,110,115,91,99,46,99,117,114,114,101,110,116,93,46,99,108,97,115,115,76,105,115,116,91,116,93,40,112,41,125,44,108,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,48,59,116,60,115,46,108,101,110,103,116,104,59,116,43,43,41,114,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,40,116,41,125,125,102,117,110,99,116,105,111,110,32,102,116,40,116,41,123,118,97,114,32,101,61,116,46,100,97,116,97,44,110,61,116,46,101,108,101,109,101,110,116,115,44,114,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,59,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,76,40,110,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,44,115,41,59,118,97,114,32,116,61,105,110,110,101,114,87,105,100,116,104,47,50,44,111,61,110,46,116,104,117,109,98,115,87,114,97,112,112,101,114,115,91,114,46,99,117,114,114,101,110,116,93,44,97,61,111,46,111,102,102,115,101,116,76,101,102,116,43,111,46,111,102,102,115,101,116,87,105,100,116,104,47,50,44,99,61,101,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,45,97,59,97,62,116,38,38,99,62,116,63,105,40,116,45,97,41,58,97,62,116,63,105,40,105,110,110,101,114,87,105,100,116,104,45,101,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,45,57,41,58,99,62,116,38,38,105,40,48,41,125,44,116,104,105,115,46,114,117,110,84,111,84,104,105,110,84,104,117,109,98,115,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,41,123,97,116,40,110,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,44,115,41,44,105,40,48,41,125,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,116,41,123,101,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,61,116,44,110,46,116,104,117,109,98,115,73,110,110,101,114,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,34,116,114,97,110,115,108,97,116,101,88,40,34,46,99,111,110,99,97,116,40,116,44,34,112,120,41,34,41,125,125,102,117,110,99,116,105,111,110,32,104,116,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,44,111,44,97,61,116,46,99,111,114,101,44,115,61,116,46,99,111,108,108,101,99,116,105,111,110,115,44,99,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,108,61,116,46,100,97,116,97,44,102,61,116,46,101,108,101,109,101,110,116,115,44,104,61,116,46,112,114,111,112,115,59,99,46,115,104,111,119,84,104,117,109,98,115,67,117,114,115,111,114,101,114,73,102,78,111,116,89,101,116,61,110,117,108,108,44,99,46,104,105,100,101,84,104,117,109,98,115,76,111,97,100,101,114,61,110,117,108,108,44,99,46,104,105,100,101,84,104,117,109,98,115,67,117,114,115,111,114,101,114,61,110,117,108,108,44,108,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,61,110,117,108,108,44,108,46,117,110,108,111,97,100,101,100,84,104,117,109,98,115,67,111,117,110,116,61,104,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,44,108,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,61,48,44,108,46,105,115,84,104,117,109,98,105,110,103,61,104,46,115,104,111,119,84,104,117,109,98,115,79,110,77,111,117,110,116,44,108,46,116,104,117,109,98,101,100,83,111,117,114,99,101,115,79,117,116,101,114,115,83,99,97,108,101,61,110,117,108,108,44,116,46,116,104,117,109,98,115,83,119,105,112,105,110,103,80,114,111,112,115,61,123,105,115,80,111,105,110,116,101,114,105,110,103,58,33,49,44,100,111,119,110,67,108,105,101,110,116,88,58,110,117,108,108,44,115,119,105,112,101,100,88,58,110,117,108,108,125,44,115,46,116,104,117,109,98,115,82,101,110,100,101,114,70,117,110,99,116,105,111,110,115,61,91,93,44,97,46,116,104,117,109,98,76,111,97,100,72,97,110,100,108,101,114,61,123,125,44,97,46,116,104,117,109,98,115,79,112,101,110,105,110,103,65,99,116,105,111,110,115,61,123,125,44,97,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,101,114,61,123,125,44,97,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,84,114,97,110,115,105,116,105,111,110,101,114,61,123,125,44,97,46,116,104,117,109,98,115,84,111,103,103,108,101,114,61,123,125,44,97,46,116,104,117,109,98,115,83,119,105,112,105,110,103,68,111,119,110,61,123,125,44,102,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,61,110,117,108,108,44,102,46,116,104,117,109,98,115,61,91,93,44,102,46,116,104,117,109,98,115,87,114,97,112,112,101,114,115,61,91,93,44,102,46,116,104,117,109,98,115,80,114,111,112,101,100,67,111,109,112,111,110,101,110,116,115,61,91,93,44,102,46,116,104,117,109,98,115,73,110,110,101,114,61,110,117,108,108,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,44,110,61,101,46,116,104,117,109,98,76,111,97,100,72,97,110,100,108,101,114,44,114,61,101,46,119,105,110,100,111,119,82,101,115,105,122,101,65,99,116,105,111,110,101,114,44,105,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,111,61,116,46,100,97,116,97,44,97,61,116,46,101,108,101,109,101,110,116,115,46,116,104,117,109,98,115,87,114,97,112,112,101,114,115,59,110,46,104,97,110,100,108,101,76,111,97,100,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,111,46,117,110,108,111,97,100,101,100,84,104,117,109,98,115,67,111,117,110,116,45,45,44,48,61,61,61,111,46,117,110,108,111,97,100,101,100,84,104,117,109,98,115,67,111,117,110,116,41,123,102,111,114,40,118,97,114,32,116,61,48,59,116,60,97,46,108,101,110,103,116,104,59,116,43,43,41,97,91,116,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,109,41,59,114,46,114,117,110,84,104,117,109,98,115,65,99,116,105,111,110,115,40,41,44,105,46,104,105,100,101,84,104,117,109,98,115,76,111,97,100,101,114,40,41,125,125,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,46,116,104,117,109,98,115,84,111,103,103,108,101,114,44,110,61,116,46,100,97,116,97,44,114,61,40,48,44,116,46,114,101,115,111,108,118,101,41,40,108,116,41,59,101,46,116,111,103,103,108,101,84,104,117,109,98,115,61,102,117,110,99,116,105,111,110,40,41,123,110,46,105,115,84,104,117,109,98,105,110,103,63,114,46,99,108,111,115,101,84,104,117,109,98,115,40,41,58,114,46,111,112,101,110,84,104,117,109,98,115,40,41,125,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,44,110,61,101,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,101,114,44,114,61,101,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,84,114,97,110,115,105,116,105,111,110,101,114,44,105,61,116,46,100,97,116,97,44,111,61,40,48,44,116,46,114,101,115,111,108,118,101,41,40,102,116,41,59,110,46,116,114,97,110,115,102,111,114,109,84,111,67,117,114,114,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,105,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,62,105,110,110,101,114,87,105,100,116,104,63,111,46,114,117,110,65,99,116,105,111,110,115,40,41,58,111,46,114,117,110,84,111,84,104,105,110,84,104,117,109,98,115,65,99,116,105,111,110,115,40,41,125,44,110,46,116,114,97,110,115,102,111,114,109,84,111,67,117,114,114,101,110,116,87,105,116,104,84,114,97,110,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,105,46,116,104,117,109,98,115,73,110,110,101,114,87,105,100,116,104,62,105,110,110,101,114,87,105,100,116,104,38,38,114,46,99,97,108,108,65,99,116,105,111,110,87,105,116,104,84,114,97,110,115,105,116,105,111,110,40,111,46,114,117,110,65,99,116,105,111,110,115,41,125,125,40,116,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,46,116,104,117,109,98,115,84,114,97,110,115,102,111,114,109,84,114,97,110,115,105,116,105,111,110,101,114,44,110,61,116,46,101,108,101,109,101,110,116,115,44,114,61,40,48,44,116,46,103,101,116,81,117,101,117,101,100,65,99,116,105,111,110,41,40,40,102,117,110,99,116,105,111,110,40,41,123,110,46,116,104,117,109,98,115,73,110,110,101,114,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,117,41,125,41,44,50,53,48,41,59,101,46,99,97,108,108,65,99,116,105,111,110,87,105,116,104,84,114,97,110,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,116,104,117,109,98,115,73,110,110,101,114,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,117,41,44,116,40,41,44,114,40,41,125,125,40,116,41,44,110,61,40,101,61,116,41,46,99,111,114,101,44,114,61,110,46,116,104,117,109,98,115,83,119,105,112,105,110,103,68,111,119,110,44,105,61,110,46,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,44,111,61,101,46,116,104,117,109,98,115,83,119,105,112,105,110,103,80,114,111,112,115,44,114,46,108,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,105,46,114,117,110,83,119,105,112,105,110,103,68,111,119,110,65,99,116,105,111,110,115,70,111,114,80,114,111,112,115,65,110,100,69,118,101,110,116,40,111,44,116,41,44,116,46,116,111,117,99,104,101,115,124,124,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,125,102,117,110,99,116,105,111,110,32,100,116,40,116,41,123,114,101,116,117,114,110,40,100,116,61,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,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,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,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,83,121,109,98,111,108,38,38,116,33,61,61,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,63,34,115,121,109,98,111,108,34,58,116,121,112,101,111,102,32,116,125,41,40,116,41,125,102,117,110,99,116,105,111,110,32,112,116,40,116,44,101,41,123,105,102,40,34,111,98,106,101,99,116,34,61,61,61,100,116,40,101,41,41,102,111,114,40,118,97,114,32,110,32,105,110,32,116,41,34,111,98,106,101,99,116,34,61,61,61,100,116,40,101,91,110,93,41,63,112,116,40,116,91,110,93,44,101,91,110,93,41,58,101,91,110,93,38,38,40,116,91,110,93,61,101,91,110,93,41,125,102,117,110,99,116,105,111,110,32,118,116,40,116,41,123,118,97,114,32,101,44,110,61,116,46,112,114,111,112,115,44,114,61,48,44,105,61,123,125,59,116,104,105,115,46,103,101,116,83,111,117,114,99,101,84,121,112,101,70,114,111,109,76,111,99,97,108,83,116,111,114,97,103,101,66,121,85,114,108,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,91,116,93,63,101,91,116,93,58,111,40,116,41,125,44,116,104,105,115,46,104,97,110,100,108,101,82,101,99,101,105,118,101,100,83,111,117,114,99,101,84,121,112,101,70,111,114,85,114,108,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,33,49,61,61,61,105,91,110,93,38,38,40,114,45,45,44,34,105,110,118,97,108,105,100,34,33,61,61,116,63,105,91,110,93,61,116,58,100,101,108,101,116,101,32,105,91,110,93,44,48,61,61,61,114,38,38,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,116,91,110,93,61,101,91,110,93,125,40,101,44,105,41,44,108,111,99,97,108,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,34,102,115,108,105,103,104,116,98,111,120,45,116,121,112,101,115,34,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,101,41,41,41,41,125,59,118,97,114,32,111,61,102,117,110,99,116,105,111,110,40,116,41,123,114,43,43,44,105,91,116,93,61,33,49,125,59,110,46,100,105,115,97,98,108,101,76,111,99,97,108,83,116,111,114,97,103,101,63,40,116,104,105,115,46,103,101,116,83,111,117,114,99,101,84,121,112,101,70,114,111,109,76,111,99,97,108,83,116,111,114,97,103,101,66,121,85,114,108,61,102,117,110,99,116,105,111,110,40,41,123,125,44,116,104,105,115,46,104,97,110,100,108,101,82,101,99,101,105,118,101,100,83,111,117,114,99,101,84,121,112,101,70,111,114,85,114,108,61,102,117,110,99,116,105,111,110,40,41,123,125,41,58,40,101,61,74,83,79,78,46,112,97,114,115,101,40,108,111,99,97,108,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,34,102,115,108,105,103,104,116,98,111,120,45,116,121,112,101,115,34,41,41,41,124,124,40,101,61,123,125,44,116,104,105,115,46,103,101,116,83,111,117,114,99,101,84,121,112,101,70,114,111,109,76,111,99,97,108,83,116,111,114,97,103,101,66,121,85,114,108,61,111,41,125,102,117,110,99,116,105,111,110,32,103,116,40,116,41,123,118,97,114,32,101,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,110,61,116,46,100,97,116,97,44,114,61,116,46,101,108,101,109,101,110,116,115,46,116,104,117,109,98,115,80,114,111,112,101,100,67,111,109,112,111,110,101,110,116,115,44,105,61,116,46,112,114,111,112,115,44,111,61,105,46,115,104,111,119,84,104,117,109,98,115,79,110,77,111,117,110,116,44,97,61,105,46,115,111,117,114,99,101,115,44,115,61,105,46,116,104,117,109,98,115,59,116,104,105,115,46,98,117,105,108,100,84,104,117,109,98,70,111,114,84,121,112,101,65,110,100,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,44,105,41,123,115,38,38,115,91,105,93,63,114,91,105,93,61,123,99,111,109,112,111,110,101,110,116,58,34,84,104,117,109,98,34,44,112,114,111,112,115,58,123,105,58,105,44,115,114,99,58,115,91,105,93,125,125,58,114,91,105,93,61,34,105,109,97,103,101,34,61,61,61,116,63,123,99,111,109,112,111,110,101,110,116,58,34,84,104,117,109,98,34,44,112,114,111,112,115,58,123,105,58,105,44,115,114,99,58,97,91,105,93,125,125,58,123,99,111,109,112,111,110,101,110,116,58,34,73,110,118,97,108,105,100,84,104,117,109,98,34,44,112,114,111,112,115,58,123,105,58,105,125,125,44,101,46,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,46,103,101,116,40,41,38,38,40,111,124,124,110,46,105,115,84,104,117,109,98,105,110,103,41,38,38,101,46,117,112,100,97,116,101,84,104,117,109,98,115,73,110,110,101,114,40,41,125,125,102,117,110,99,116,105,111,110,32,109,116,40,116,41,123,118,97,114,32,101,44,110,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,44,114,61,110,46,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,44,105,61,110,46,117,112,100,97,116,101,83,111,117,114,99,101,68,105,114,101,99,116,87,114,97,112,112,101,114,67,111,108,108,101,99,116,105,111,110,44,111,61,116,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,67,111,109,112,111,110,101,110,116,115,44,97,61,116,46,112,114,111,112,115,46,100,105,115,97,98,108,101,84,104,117,109,98,115,44,115,61,116,46,114,101,115,111,108,118,101,59,97,124,124,40,101,61,115,40,103,116,41,41,44,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,70,111,114,83,111,117,114,99,101,84,121,112,101,65,110,100,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,115,59,115,119,105,116,99,104,40,116,41,123,99,97,115,101,34,105,109,97,103,101,34,58,115,61,34,73,109,97,103,101,114,34,59,98,114,101,97,107,59,99,97,115,101,34,118,105,100,101,111,34,58,115,61,34,86,105,100,101,111,114,34,59,98,114,101,97,107,59,99,97,115,101,34,121,111,117,116,117,98,101,34,58,115,61,34,89,111,117,116,117,98,101,114,34,59,98,114,101,97,107,59,99,97,115,101,34,99,117,115,116,111,109,34,58,115,61,34,67,117,115,116,111,109,101,114,34,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,115,61,34,73,110,118,97,108,105,100,101,114,34,125,111,91,110,93,61,115,44,114,46,103,101,116,40,41,38,38,105,91,110,93,40,41,44,97,124,124,101,46,98,117,105,108,100,84,104,117,109,98,70,111,114,84,121,112,101,65,110,100,73,110,100,101,120,40,116,44,110,41,125,125,102,117,110,99,116,105,111,110,32,98,116,40,41,123,118,97,114,32,116,44,101,44,110,44,114,61,123,105,115,85,114,108,89,111,117,116,117,98,101,79,110,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,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,97,34,41,59,114,101,116,117,114,110,32,101,46,104,114,101,102,61,116,44,34,119,119,119,46,121,111,117,116,117,98,101,46,99,111,109,34,61,61,61,101,46,104,111,115,116,110,97,109,101,125,44,103,101,116,84,121,112,101,70,114,111,109,82,101,115,112,111,110,115,101,67,111,110,116,101,110,116,84,121,112,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,115,108,105,99,101,40,48,44,116,46,105,110,100,101,120,79,102,40,34,47,34,41,41,125,125,59,102,117,110,99,116,105,111,110,32,105,40,41,123,105,102,40,52,33,61,61,110,46,114,101,97,100,121,83,116,97,116,101,41,123,105,102,40,50,61,61,61,110,46,114,101,97,100,121,83,116,97,116,101,41,123,118,97,114,32,116,59,115,119,105,116,99,104,40,114,46,103,101,116,84,121,112,101,70,114,111,109,82,101,115,112,111,110,115,101,67,111,110,116,101,110,116,84,121,112,101,40,110,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,99,111,110,116,101,110,116,45,116,121,112,101,34,41,41,41,123,99,97,115,101,34,105,109,97,103,101,34,58,116,61,34,105,109,97,103,101,34,59,98,114,101,97,107,59,99,97,115,101,34,118,105,100,101,111,34,58,116,61,34,118,105,100,101,111,34,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,61,34,105,110,118,97,108,105,100,34,125,110,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,110,46,97,98,111,114,116,40,41,44,101,40,116,41,125,125,101,108,115,101,32,101,40,34,105,110,118,97,108,105,100,34,41,125,116,104,105,115,46,115,101,116,85,114,108,84,111,67,104,101,99,107,61,102,117,110,99,116,105,111,110,40,101,41,123,116,61,101,125,44,116,104,105,115,46,103,101,116,83,111,117,114,99,101,84,121,112,101,61,102,117,110,99,116,105,111,110,40,111,41,123,105,102,40,114,46,105,115,85,114,108,89,111,117,116,117,98,101,79,110,101,40,116,41,41,114,101,116,117,114,110,32,111,40,34,121,111,117,116,117,98,101,34,41,59,101,61,111,44,40,110,61,110,101,119,32,88,77,76,72,116,116,112,82,101,113,117,101,115,116,41,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,105,44,110,46,111,112,101,110,40,34,71,69,84,34,44,116,44,33,48,41,44,110,46,115,101,110,100,40,41,125,125,102,117,110,99,116,105,111,110,32,121,116,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,112,114,111,112,115,44,105,61,114,46,116,121,112,101,115,44,111,61,114,46,116,121,112,101,44,97,61,114,46,115,111,117,114,99,101,115,44,115,61,116,46,114,101,115,111,108,118,101,59,116,104,105,115,46,103,101,116,84,121,112,101,83,101,116,66,121,67,108,105,101,110,116,70,111,114,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,105,38,38,105,91,116,93,63,101,61,105,91,116,93,58,111,38,38,40,101,61,111,41,44,101,125,44,116,104,105,115,46,114,101,116,114,105,101,118,101,84,121,112,101,87,105,116,104,88,104,114,70,111,114,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,115,40,98,116,41,59,114,46,115,101,116,85,114,108,84,111,67,104,101,99,107,40,97,91,116,93,41,44,114,46,103,101,116,83,111,117,114,99,101,84,121,112,101,40,40,102,117,110,99,116,105,111,110,40,114,41,123,101,46,104,97,110,100,108,101,82,101,99,101,105,118,101,100,83,111,117,114,99,101,84,121,112,101,70,111,114,85,114,108,40,114,44,97,91,116,93,41,44,110,46,114,117,110,65,99,116,105,111,110,115,70,111,114,83,111,117,114,99,101,84,121,112,101,65,110,100,73,110,100,101,120,40,114,44,116,41,125,41,41,125,125,102,117,110,99,116,105,111,110,32,119,116,40,116,44,101,44,110,41,123,102,111,114,40,118,97,114,32,114,61,48,59,114,60,116,46,112,114,111,112,115,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,59,114,43,43,41,116,46,99,111,108,108,101,99,116,105,111,110,115,91,101,93,91,114,93,61,116,46,114,101,115,111,108,118,101,40,110,44,91,114,93,41,125,102,117,110,99,116,105,111,110,32,95,116,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,46,100,97,116,97,44,111,61,116,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,115,44,97,61,110,47,114,44,115,61,48,59,116,104,105,115,46,97,100,106,117,115,116,83,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,40,115,61,105,46,109,97,120,83,111,117,114,99,101,87,105,100,116,104,47,97,41,60,105,46,109,97,120,83,111,117,114,99,101,72,101,105,103,104,116,41,114,101,116,117,114,110,32,110,60,105,46,109,97,120,83,111,117,114,99,101,87,105,100,116,104,38,38,40,115,61,114,41,44,99,40,41,59,115,61,114,62,105,46,109,97,120,83,111,117,114,99,101,72,101,105,103,104,116,63,105,46,109,97,120,83,111,117,114,99,101,72,101,105,103,104,116,58,114,44,99,40,41,125,59,118,97,114,32,99,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,111,91,101,93,46,115,116,121,108,101,59,116,46,119,105,100,116,104,61,115,42,97,43,34,112,120,34,44,116,46,104,101,105,103,104,116,61,115,43,34,112,120,34,125,125,102,117,110,99,116,105,111,110,32,120,116,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,44,114,61,116,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,83,105,122,101,114,115,44,105,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,104,105,100,101,83,111,117,114,99,101,76,111,97,100,101,114,67,111,108,108,101,99,116,105,111,110,44,111,61,116,46,99,111,114,101,46,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,84,114,97,110,115,102,111,114,109,101,114,44,97,61,116,46,101,108,101,109,101,110,116,115,44,115,61,97,46,115,111,117,114,99,101,65,110,105,109,97,116,105,111,110,87,114,97,112,112,101,114,115,44,99,61,97,46,115,111,117,114,99,101,115,44,117,61,116,46,114,101,115,111,108,118,101,59,102,117,110,99,116,105,111,110,32,108,40,116,44,110,41,123,114,91,101,93,61,117,40,95,116,44,91,101,44,116,44,110,93,41,44,114,91,101,93,46,97,100,106,117,115,116,83,105,122,101,40,41,125,116,104,105,115,46,114,117,110,65,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,116,44,114,41,123,99,91,101,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,109,41,44,115,91,101,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,104,41,44,105,91,101,93,40,41,44,111,46,105,102,83,111,117,114,99,101,73,115,76,111,97,100,101,100,84,114,97,110,115,102,111,114,109,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,65,116,73,110,100,101,120,40,101,41,44,108,40,116,44,114,41,44,110,46,114,117,110,65,99,116,105,111,110,115,61,108,125,125,102,117,110,99,116,105,111,110,32,79,116,40,116,44,101,41,123,118,97,114,32,110,44,114,61,116,104,105,115,44,105,61,116,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,115,44,111,61,116,46,112,114,111,112,115,44,97,61,116,46,114,101,115,111,108,118,101,44,115,61,116,46,116,105,109,101,111,117,116,44,99,61,97,40,120,116,44,91,101,93,41,59,116,104,105,115,46,104,97,110,100,108,101,73,109,97,103,101,76,111,97,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,116,97,114,103,101,116,44,110,61,101,46,110,97,116,117,114,97,108,87,105,100,116,104,44,114,61,101,46,110,97,116,117,114,97,108,72,101,105,103,104,116,59,99,46,114,117,110,65,99,116,105,111,110,115,40,110,44,114,41,125,44,116,104,105,115,46,104,97,110,100,108,101,86,105,100,101,111,76,111,97,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,116,97,114,103,101,116,44,114,61,101,46,118,105,100,101,111,87,105,100,116,104,44,105,61,101,46,118,105,100,101,111,72,101,105,103,104,116,59,110,61,33,48,44,99,46,114,117,110,65,99,116,105,111,110,115,40,114,44,105,41,125,44,116,104,105,115,46,104,97,110,100,108,101,78,111,116,77,101,116,97,68,97,116,101,100,86,105,100,101,111,76,111,97,100,61,102,117,110,99,116,105,111,110,40,41,123,110,124,124,114,46,104,97,110,100,108,101,89,111,117,116,117,98,101,76,111,97,100,40,41,125,44,116,104,105,115,46,104,97,110,100,108,101,89,111,117,116,117,98,101,76,111,97,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,49,57,50,48,44,101,61,49,48,56,48,59,111,46,109,97,120,89,111,117,116,117,98,101,86,105,100,101,111,68,105,109,101,110,115,105,111,110,115,38,38,40,116,61,111,46,109,97,120,89,111,117,116,117,98,101,86,105,100,101,111,68,105,109,101,110,115,105,111,110,115,46,119,105,100,116,104,44,101,61,111,46,109,97,120,89,111,117,116,117,98,101,86,105,100,101,111,68,105,109,101,110,115,105,111,110,115,46,104,101,105,103,104,116,41,44,99,46,114,117,110,65,99,116,105,111,110,115,40,116,44,101,41,125,44,116,104,105,115,46,104,97,110,100,108,101,67,117,115,116,111,109,76,111,97,100,61,102,117,110,99,116,105,111,110,40,41,123,115,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,105,91,101,93,59,99,46,114,117,110,65,99,116,105,111,110,115,40,116,46,111,102,102,115,101,116,87,105,100,116,104,44,116,46,111,102,102,115,101,116,72,101,105,103,104,116,41,125,41,41,125,125,102,117,110,99,116,105,111,110,32,83,116,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,44,114,61,116,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,44,105,61,116,46,112,114,111,112,115,44,111,61,48,44,97,61,48,44,115,61,48,59,116,104,105,115,46,116,114,97,110,115,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,97,61,116,44,118,111,105,100,32,48,33,61,61,101,38,38,40,115,61,101,41,44,110,125,44,116,104,105,115,46,103,101,116,84,114,97,110,115,108,97,116,101,88,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,125,44,116,104,105,115,46,103,101,116,84,114,97,110,115,108,97,116,101,89,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,125,44,116,104,105,115,46,110,101,103,97,116,105,118,101,61,102,117,110,99,116,105,111,110,40,41,123,99,40,45,40,49,43,105,46,115,108,105,100,101,68,105,115,116,97,110,99,101,41,42,105,110,110,101,114,87,105,100,116,104,41,125,44,116,104,105,115,46,122,101,114,111,61,102,117,110,99,116,105,111,110,40,41,123,99,40,48,41,125,44,116,104,105,115,46,112,111,115,105,116,105,118,101,61,102,117,110,99,116,105,111,110,40,41,123,99,40,40,49,43,105,46,115,108,105,100,101,68,105,115,116,97,110,99,101,41,42,105,110,110,101,114,87,105,100,116,104,41,125,59,118,97,114,32,99,61,102,117,110,99,116,105,111,110,40,116,41,123,111,61,116,43,97,44,117,40,41,44,97,61,48,125,44,117,61,102,117,110,99,116,105,111,110,40,41,123,114,91,101,93,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,34,116,114,97,110,115,108,97,116,101,40,34,46,99,111,110,99,97,116,40,111,44,34,112,120,44,32,34,41,46,99,111,110,99,97,116,40,115,44,34,112,120,41,34,41,125,125,102,117,110,99,116,105,111,110,32,107,116,40,116,41,123,118,97,114,32,101,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,44,110,61,116,46,99,111,114,101,44,114,61,110,46,101,118,101,110,116,115,68,105,115,112,97,116,99,104,101,114,44,105,61,110,46,108,105,103,104,116,98,111,120,79,112,101,110,101,114,44,111,61,110,46,108,105,103,104,116,98,111,120,79,112,101,110,65,99,116,105,111,110,101,114,44,97,61,116,46,100,97,116,97,44,115,61,116,46,112,114,111,112,115,59,105,46,111,112,101,110,76,105,103,104,116,98,111,120,61,102,117,110,99,116,105,111,110,40,41,123,111,46,114,117,110,66,101,102,111,114,101,82,101,110,100,101,114,65,99,116,105,111,110,115,40,41,44,119,116,40,116,44,34,115,111,117,114,99,101,76,111,97,100,72,97,110,100,108,101,114,115,34,44,79,116,41,44,114,46,100,105,115,112,97,116,99,104,40,34,111,110,83,104,111,119,34,41,44,101,46,115,101,116,40,33,48,44,111,46,114,117,110,65,102,116,101,114,82,101,110,100,101,114,65,99,116,105,111,110,115,41,125,44,105,46,105,110,105,116,105,97,108,105,122,101,65,110,100,79,112,101,110,76,105,103,104,116,98,111,120,61,102,117,110,99,116,105,111,110,40,41,123,97,46,105,115,73,110,105,116,105,97,108,105,122,101,100,61,33,48,44,119,116,40,116,44,34,115,111,117,114,99,101,76,111,97,100,72,97,110,100,108,101,114,115,34,44,79,116,41,44,119,116,40,116,44,34,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,34,44,83,116,41,44,112,116,40,97,46,115,108,105,100,101,66,117,116,116,111,110,115,44,115,46,115,108,105,100,101,66,117,116,116,111,110,115,41,44,112,116,40,97,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,44,115,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,41,44,115,46,100,105,115,97,98,108,101,84,104,117,109,98,115,124,124,104,116,40,116,41,44,117,116,40,116,41,44,114,46,100,105,115,112,97,116,99,104,40,34,111,110,73,110,105,116,34,41,44,101,46,115,101,116,40,33,48,44,40,102,117,110,99,116,105,111,110,40,41,123,111,46,114,117,110,65,102,116,101,114,82,101,110,100,101,114,65,99,116,105,111,110,115,40,41,44,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,116,46,112,114,111,112,115,46,115,111,117,114,99,101,115,44,110,61,116,46,114,101,115,111,108,118,101,44,114,61,110,40,118,116,41,44,105,61,110,40,109,116,41,44,111,61,110,40,121,116,44,91,114,44,105,93,41,44,97,61,48,59,97,60,101,46,108,101,110,103,116,104,59,97,43,43,41,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,91,97,93,41,123,118,97,114,32,115,61,111,46,103,101,116,84,121,112,101,83,101,116,66,121,67,108,105,101,110,116,70,111,114,73,110,100,101,120,40,97,41,59,105,102,40,115,41,105,46,114,117,110,65,99,116,105,111,110,115,70,111,114,83,111,117,114,99,101,84,121,112,101,65,110,100,73,110,100,101,120,40,115,44,97,41,59,101,108,115,101,123,118,97,114,32,99,61,114,46,103,101,116,83,111,117,114,99,101,84,121,112,101,70,114,111,109,76,111,99,97,108,83,116,111,114,97,103,101,66,121,85,114,108,40,101,91,97,93,41,59,99,63,105,46,114,117,110,65,99,116,105,111,110,115,70,111,114,83,111,117,114,99,101,84,121,112,101,65,110,100,73,110,100,101,120,40,99,44,97,41,58,111,46,114,101,116,114,105,101,118,101,84,121,112,101,87,105,116,104,88,104,114,70,111,114,73,110,100,101,120,40,97,41,125,125,101,108,115,101,32,105,46,114,117,110,65,99,116,105,111,110,115,70,111,114,83,111,117,114,99,101,84,121,112,101,65,110,100,73,110,100,101,120,40,34,99,117,115,116,111,109,34,44,97,41,125,40,116,41,125,41,41,125,125,102,117,110,99,116,105,111,110,32,67,116,40,116,44,101,44,110,41,123,114,101,116,117,114,110,40,67,116,61,80,116,40,41,63,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,91,110,117,108,108,93,59,114,46,112,117,115,104,46,97,112,112,108,121,40,114,44,101,41,59,118,97,114,32,105,61,110,101,119,40,70,117,110,99,116,105,111,110,46,98,105,110,100,46,97,112,112,108,121,40,116,44,114,41,41,59,114,101,116,117,114,110,32,110,38,38,84,116,40,105,44,110,46,112,114,111,116,111,116,121,112,101,41,44,105,125,41,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,80,116,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,82,101,102,108,101,99,116,124,124,33,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,41,114,101,116,117,114,110,33,49,59,105,102,40,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,46,115,104,97,109,41,114,101,116,117,114,110,33,49,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,80,114,111,120,121,41,114,101,116,117,114,110,33,48,59,116,114,121,123,114,101,116,117,114,110,32,68,97,116,101,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,82,101,102,108,101,99,116,46,99,111,110,115,116,114,117,99,116,40,68,97,116,101,44,91,93,44,40,102,117,110,99,116,105,111,110,40,41,123,125,41,41,41,44,33,48,125,99,97,116,99,104,40,116,41,123,114,101,116,117,114,110,33,49,125,125,102,117,110,99,116,105,111,110,32,84,116,40,116,44,101,41,123,114,101,116,117,114,110,40,84,116,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,95,95,112,114,111,116,111,95,95,61,101,44,116,125,41,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,106,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,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,69,116,40,116,41,125,40,116,41,124,124,102,117,110,99,116,105,111,110,40,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,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,116,41,125,40,116,41,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,69,116,40,116,44,101,41,59,118,97,114,32,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,41,46,115,108,105,99,101,40,56,44,45,49,41,59,114,101,116,117,114,110,34,79,98,106,101,99,116,34,61,61,61,110,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,40,110,61,116,46,99,111,110,115,116,114,117,99,116,111,114,46,110,97,109,101,41,44,34,77,97,112,34,61,61,61,110,124,124,34,83,101,116,34,61,61,61,110,63,65,114,114,97,121,46,102,114,111,109,40,116,41,58,34,65,114,103,117,109,101,110,116,115,34,61,61,61,110,124,124,47,94,40,63,58,85,105,124,73,41,110,116,40,63,58,56,124,49,54,124,51,50,41,40,63,58,67,108,97,109,112,101,100,41,63,65,114,114,97,121,36,47,46,116,101,115,116,40,110,41,63,69,116,40,116,44,101,41,58,118,111,105,100,32,48,125,125,40,116,41,124,124,102,117,110,99,116,105,111,110,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,46,92,110,73,110,32,111,114,100,101,114,32,116,111,32,98,101,32,105,116,101,114,97,98,108,101,44,32,110,111,110,45,97,114,114,97,121,32,111,98,106,101,99,116,115,32,109,117,115,116,32,104,97,118,101,32,97,32,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,32,109,101,116,104,111,100,46,34,41,125,40,41,125,102,117,110,99,116,105,111,110,32,69,116,40,116,44,101,41,123,40,110,117,108,108,61,61,101,124,124,101,62,116,46,108,101,110,103,116,104,41,38,38,40,101,61,116,46,108,101,110,103,116,104,41,59,102,111,114,40,118,97,114,32,110,61,48,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,110,60,101,59,110,43,43,41,114,91,110,93,61,116,91,110,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,68,116,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,112,114,111,112,115,61,116,44,116,104,105,115,46,100,97,116,97,61,123,105,115,73,110,105,116,105,97,108,105,122,101,100,58,33,49,44,105,115,70,117,108,108,121,82,101,110,100,101,114,101,100,58,33,49,44,109,97,120,83,111,117,114,99,101,87,105,100,116,104,58,48,44,109,97,120,83,111,117,114,99,101,72,101,105,103,104,116,58,48,44,115,99,114,111,108,108,98,97,114,87,105,100,116,104,58,48,44,116,111,111,108,98,97,114,66,117,116,116,111,110,115,58,67,44,115,108,105,100,101,66,117,116,116,111,110,115,58,80,44,99,97,112,116,105,111,110,72,101,105,103,104,116,115,58,91,93,44,110,111,116,84,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,83,99,97,108,101,115,58,91,93,44,110,111,116,84,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,108,97,116,101,115,89,58,91,93,44,116,104,117,109,98,101,100,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,84,114,97,110,115,108,97,116,101,89,58,110,117,108,108,44,122,111,111,109,58,49,125,44,116,104,105,115,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,80,114,111,112,115,61,123,105,115,80,111,105,110,116,101,114,105,110,103,58,33,49,44,100,111,119,110,67,108,105,101,110,116,88,58,110,117,108,108,44,100,111,119,110,67,108,105,101,110,116,89,58,110,117,108,108,44,105,115,83,111,117,114,99,101,68,111,119,110,69,118,101,110,116,84,97,114,103,101,116,58,33,49,44,105,115,77,111,118,101,67,97,108,108,70,105,114,115,116,58,33,49,44,115,119,105,112,101,100,88,58,48,44,115,119,105,112,101,100,89,58,48,44,117,112,83,119,105,112,101,100,88,58,48,44,117,112,83,119,105,112,101,100,89,58,48,44,112,105,110,99,104,101,100,72,121,112,111,116,58,48,125,44,116,104,105,115,46,115,116,97,103,101,73,110,100,101,120,101,115,61,123,99,117,114,114,101,110,116,58,48,125,44,116,104,105,115,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,61,123,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,58,123,125,44,115,101,116,83,108,105,100,101,78,117,109,98,101,114,58,110,117,108,108,44,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,77,97,110,97,103,101,114,58,123,125,44,104,105,100,101,83,111,117,114,99,101,76,111,97,100,101,114,67,111,108,108,101,99,116,105,111,110,58,91,93,44,117,112,100,97,116,101,83,111,117,114,99,101,68,105,114,101,99,116,87,114,97,112,112,101,114,67,111,108,108,101,99,116,105,111,110,58,91,93,44,115,104,111,119,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,73,102,78,111,116,89,101,116,58,110,117,108,108,44,104,105,100,101,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,58,110,117,108,108,44,115,116,97,114,116,83,108,105,100,101,115,104,111,119,58,110,117,108,108,44,115,116,111,112,83,108,105,100,101,115,104,111,119,58,110,117,108,108,125,44,116,104,105,115,46,101,108,101,109,101,110,116,115,61,123,99,97,112,116,105,111,110,115,58,91,93,44,99,111,110,116,97,105,110,101,114,58,110,117,108,108,44,110,97,118,58,110,117,108,108,44,115,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,58,110,117,108,108,44,115,108,105,100,101,115,104,111,119,66,97,114,58,110,117,108,108,44,115,111,117,114,99,101,65,110,105,109,97,116,105,111,110,87,114,97,112,112,101,114,115,58,91,93,44,115,111,117,114,99,101,67,111,109,112,111,110,101,110,116,115,58,91,93,44,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,58,91,93,44,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,58,91,93,44,115,111,117,114,99,101,115,58,91,93,125,44,116,104,105,115,46,99,111,108,108,101,99,116,105,111,110,115,61,123,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,84,114,97,110,115,102,111,114,109,101,114,115,58,91,93,44,115,111,117,114,99,101,76,111,97,100,72,97,110,100,108,101,114,115,58,91,93,44,115,111,117,114,99,101,83,105,122,101,114,115,58,91,93,44,120,104,114,115,58,91,93,125,44,116,104,105,115,46,99,111,114,101,61,123,99,108,97,115,115,70,97,99,97,100,101,58,123,125,44,99,108,105,99,107,90,111,111,109,101,114,58,123,125,44,101,118,101,110,116,115,68,105,115,112,97,116,99,104,101,114,58,123,125,44,102,117,108,108,115,99,114,101,101,110,84,111,103,103,108,101,114,58,123,125,44,103,108,111,98,97,108,69,118,101,110,116,115,67,111,110,116,114,111,108,108,101,114,58,123,125,44,105,110,97,99,116,105,118,101,114,58,123,125,44,108,105,103,104,116,98,111,120,67,108,111,115,101,114,58,123,125,44,108,105,103,104,116,98,111,120,79,112,101,110,101,114,58,123,125,44,108,105,103,104,116,98,111,120,79,112,101,110,65,99,116,105,111,110,101,114,58,123,125,44,108,105,103,104,116,98,111,120,85,112,100,97,116,101,114,58,123,125,44,115,99,114,111,108,108,98,97,114,82,101,99,111,109,112,101,110,115,111,114,58,123,125,44,115,108,105,100,101,115,104,111,119,77,97,110,97,103,101,114,58,123,125,44,115,108,105,100,101,67,104,97,110,103,101,70,97,99,97,100,101,58,123,125,44,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,58,123,125,44,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,84,114,97,110,115,102,111,114,109,101,114,58,123,125,44,115,111,117,114,99,101,68,105,115,112,108,97,121,70,97,99,97,100,101,58,123,125,44,115,111,117,114,99,101,115,80,111,105,110,116,101,114,68,111,119,110,58,123,125,44,115,116,97,103,101,77,97,110,97,103,101,114,58,123,125,44,112,111,105,110,116,101,114,105,110,103,66,117,99,107,101,116,58,123,125,44,119,105,110,100,111,119,82,101,115,105,122,101,65,99,116,105,111,110,101,114,58,123,125,44,122,111,111,109,101,114,58,123,125,125,44,116,104,105,115,46,103,101,116,81,117,101,117,101,100,65,99,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,44,110,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,40,41,123,114,46,112,117,115,104,40,33,48,41,44,101,46,116,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,114,46,112,111,112,40,41,44,114,46,108,101,110,103,116,104,124,124,116,40,41,125,41,44,110,41,125,125,44,116,104,105,115,46,109,105,100,100,108,101,119,97,114,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,69,40,116,44,110,44,91,101,93,41,125,44,116,104,105,115,46,114,101,115,111,108,118,101,61,102,117,110,99,116,105,111,110,40,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,49,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,91,93,59,114,101,116,117,114,110,32,110,46,117,110,115,104,105,102,116,40,101,41,44,67,116,40,116,44,106,116,40,110,41,41,125,44,116,104,105,115,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,116,41,123,119,105,110,100,111,119,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,101,108,101,109,101,110,116,115,46,99,111,110,116,97,105,110,101,114,46,99,117,114,114,101,110,116,38,38,116,40,41,125,41,41,125,44,116,104,105,115,46,116,105,109,101,111,117,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,101,108,101,109,101,110,116,115,46,99,111,110,116,97,105,110,101,114,38,38,116,40,41,125,41,44,110,41,125,44,65,40,116,104,105,115,41,44,107,116,40,116,104,105,115,41,125,118,97,114,32,65,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,101,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,40,34,100,105,118,34,44,123,114,101,102,58,34,110,97,118,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,110,97,118,34,125,44,91,101,40,34,84,111,111,108,98,97,114,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,116,104,105,115,46,95,118,40,34,32,34,41,44,116,104,105,115,46,104,97,115,77,111,114,101,84,104,97,110,83,111,117,114,99,101,63,101,40,34,83,108,105,100,101,78,117,109,98,101,114,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,58,116,104,105,115,46,95,101,40,41,93,44,49,41,125,59,65,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,76,116,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,34,125,44,91,116,46,95,108,40,116,46,99,117,115,116,111,109,84,111,111,108,98,97,114,66,117,116,116,111,110,115,44,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,114,101,116,117,114,110,32,116,46,99,117,115,116,111,109,84,111,111,108,98,97,114,66,117,116,116,111,110,115,63,110,40,34,79,110,101,83,116,97,116,101,66,117,116,116,111,110,34,44,123,107,101,121,58,114,44,97,116,116,114,115,58,123,34,98,117,116,116,111,110,45,100,97,116,97,34,58,101,44,34,111,110,45,99,108,105,99,107,34,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,111,110,67,108,105,99,107,40,116,46,102,115,76,105,103,104,116,98,111,120,41,125,125,125,41,58,116,46,95,101,40,41,125,41,41,44,116,46,95,118,40,34,32,34,41,44,116,46,100,105,115,97,98,108,101,84,104,117,109,98,115,63,116,46,95,101,40,41,58,110,40,34,79,110,101,83,116,97,116,101,66,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,34,98,117,116,116,111,110,45,100,97,116,97,34,58,116,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,68,97,116,97,46,116,104,117,109,98,115,44,34,111,110,45,99,108,105,99,107,34,58,116,46,116,111,103,103,108,101,84,104,117,109,98,115,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,79,110,101,83,116,97,116,101,66,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,34,98,117,116,116,111,110,45,100,97,116,97,34,58,116,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,68,97,116,97,46,122,111,111,109,73,110,44,34,111,110,45,99,108,105,99,107,34,58,116,46,122,111,111,109,73,110,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,79,110,101,83,116,97,116,101,66,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,34,98,117,116,116,111,110,45,100,97,116,97,34,58,116,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,68,97,116,97,46,122,111,111,109,79,117,116,44,34,111,110,45,99,108,105,99,107,34,58,116,46,122,111,111,109,79,117,116,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,83,108,105,100,101,115,104,111,119,66,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,70,117,108,108,115,99,114,101,101,110,66,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,79,110,101,83,116,97,116,101,66,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,34,98,117,116,116,111,110,45,100,97,116,97,34,58,116,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,68,97,116,97,46,99,108,111,115,101,44,34,111,110,45,99,108,105,99,107,34,58,116,46,99,108,111,115,101,76,105,103,104,116,98,111,120,125,125,41,93,44,50,41,125,59,76,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,73,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,41,40,34,84,111,111,108,98,97,114,66,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,34,111,110,45,99,108,105,99,107,34,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,34,111,110,67,108,105,99,107,34,41,44,34,118,105,101,119,45,98,111,120,34,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,34,118,105,101,119,66,111,120,34,41,44,119,105,100,116,104,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,34,119,105,100,116,104,34,41,44,104,101,105,103,104,116,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,34,104,101,105,103,104,116,34,41,44,100,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,34,100,34,41,44,116,105,116,108,101,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,34,116,105,116,108,101,34,41,125,125,41,125,59,73,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,77,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,101,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,32,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,34,44,97,116,116,114,115,58,123,116,105,116,108,101,58,116,104,105,115,46,116,105,116,108,101,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,67,108,105,99,107,125,125,44,91,101,40,34,83,118,103,101,114,34,44,123,97,116,116,114,115,58,123,34,118,105,101,119,45,98,111,120,34,58,116,104,105,115,46,118,105,101,119,66,111,120,44,119,105,100,116,104,58,116,104,105,115,46,119,105,100,116,104,44,104,101,105,103,104,116,58,116,104,105,115,46,104,101,105,103,104,116,44,100,58,116,104,105,115,46,100,125,125,41,93,44,49,41,125,59,77,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,36,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,101,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,119,105,100,116,104,58,116,104,105,115,46,119,105,100,116,104,44,104,101,105,103,104,116,58,116,104,105,115,46,104,101,105,103,104,116,44,118,105,101,119,66,111,120,58,116,104,105,115,46,118,105,101,119,66,111,120,44,120,109,108,110,115,58,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,125,125,44,91,101,40,34,112,97,116,104,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,115,118,103,45,112,97,116,104,34,44,97,116,116,114,115,58,123,100,58,116,104,105,115,46,100,125,125,41,93,41,125,59,102,117,110,99,116,105,111,110,32,70,116,40,116,44,101,44,110,44,114,44,105,44,111,44,97,44,115,41,123,118,97,114,32,99,44,117,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,46,111,112,116,105,111,110,115,58,116,59,105,102,40,101,38,38,40,117,46,114,101,110,100,101,114,61,101,44,117,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,61,110,44,117,46,95,99,111,109,112,105,108,101,100,61,33,48,41,44,114,38,38,40,117,46,102,117,110,99,116,105,111,110,97,108,61,33,48,41,44,111,38,38,40,117,46,95,115,99,111,112,101,73,100,61,34,100,97,116,97,45,118,45,34,43,111,41,44,97,63,40,99,61,102,117,110,99,116,105,111,110,40,116,41,123,40,116,61,116,124,124,116,104,105,115,46,36,118,110,111,100,101,38,38,116,104,105,115,46,36,118,110,111,100,101,46,115,115,114,67,111,110,116,101,120,116,124,124,116,104,105,115,46,112,97,114,101,110,116,38,38,116,104,105,115,46,112,97,114,101,110,116,46,36,118,110,111,100,101,38,38,116,104,105,115,46,112,97,114,101,110,116,46,36,118,110,111,100,101,46,115,115,114,67,111,110,116,101,120,116,41,124,124,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,95,95,86,85,69,95,83,83,82,95,67,79,78,84,69,88,84,95,95,124,124,40,116,61,95,95,86,85,69,95,83,83,82,95,67,79,78,84,69,88,84,95,95,41,44,105,38,38,105,46,99,97,108,108,40,116,104,105,115,44,116,41,44,116,38,38,116,46,95,114,101,103,105,115,116,101,114,101,100,67,111,109,112,111,110,101,110,116,115,38,38,116,46,95,114,101,103,105,115,116,101,114,101,100,67,111,109,112,111,110,101,110,116,115,46,97,100,100,40,97,41,125,44,117,46,95,115,115,114,82,101,103,105,115,116,101,114,61,99,41,58,105,38,38,40,99,61,115,63,102,117,110,99,116,105,111,110,40,41,123,105,46,99,97,108,108,40,116,104,105,115,44,40,117,46,102,117,110,99,116,105,111,110,97,108,63,116,104,105,115,46,112,97,114,101,110,116,58,116,104,105,115,41,46,36,114,111,111,116,46,36,111,112,116,105,111,110,115,46,115,104,97,100,111,119,82,111,111,116,41,125,58,105,41,44,99,41,105,102,40,117,46,102,117,110,99,116,105,111,110,97,108,41,123,117,46,95,105,110,106,101,99,116,83,116,121,108,101,115,61,99,59,118,97,114,32,108,61,117,46,114,101,110,100,101,114,59,117,46,114,101,110,100,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,99,46,99,97,108,108,40,101,41,44,108,40,116,44,101,41,125,125,101,108,115,101,123,118,97,114,32,102,61,117,46,98,101,102,111,114,101,67,114,101,97,116,101,59,117,46,98,101,102,111,114,101,67,114,101,97,116,101,61,102,63,91,93,46,99,111,110,99,97,116,40,102,44,99,41,58,91,99,93,125,114,101,116,117,114,110,123,101,120,112,111,114,116,115,58,116,44,111,112,116,105,111,110,115,58,117,125,125,36,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,82,116,61,70,116,40,123,112,114,111,112,115,58,123,119,105,100,116,104,58,83,116,114,105,110,103,44,104,101,105,103,104,116,58,83,116,114,105,110,103,44,118,105,101,119,66,111,120,58,83,116,114,105,110,103,44,100,58,83,116,114,105,110,103,125,125,44,36,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,82,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,104,101,108,112,101,114,115,47,83,118,103,101,114,46,118,117,101,34,59,118,97,114,32,78,116,61,82,116,46,101,120,112,111,114,116,115,44,66,116,61,70,116,40,123,99,111,109,112,111,110,101,110,116,115,58,123,83,118,103,101,114,58,78,116,125,44,112,114,111,112,115,58,123,111,110,67,108,105,99,107,58,70,117,110,99,116,105,111,110,44,119,105,100,116,104,58,83,116,114,105,110,103,44,104,101,105,103,104,116,58,83,116,114,105,110,103,44,118,105,101,119,66,111,120,58,83,116,114,105,110,103,44,100,58,83,116,114,105,110,103,44,116,105,116,108,101,58,83,116,114,105,110,103,125,125,44,77,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,66,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,116,111,111,108,98,97,114,47,84,111,111,108,98,97,114,66,117,116,116,111,110,46,118,117,101,34,59,118,97,114,32,122,116,61,66,116,46,101,120,112,111,114,116,115,59,102,117,110,99,116,105,111,110,32,86,116,40,116,44,101,41,123,114,101,116,117,114,110,123,111,110,67,108,105,99,107,58,101,44,118,105,101,119,66,111,120,58,116,46,118,105,101,119,66,111,120,44,119,105,100,116,104,58,116,46,119,105,100,116,104,44,104,101,105,103,104,116,58,116,46,104,101,105,103,104,116,44,100,58,116,46,100,44,116,105,116,108,101,58,116,46,116,105,116,108,101,125,125,118,97,114,32,72,116,61,70,116,40,123,99,111,109,112,111,110,101,110,116,115,58,123,84,111,111,108,98,97,114,66,117,116,116,111,110,58,122,116,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,58,33,49,125,125,44,109,101,116,104,111,100,115,58,123,103,101,116,66,117,116,116,111,110,68,97,116,97,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,110,61,101,46,99,111,114,101,46,102,117,108,108,115,99,114,101,101,110,84,111,103,103,108,101,114,44,114,61,110,46,101,120,105,116,70,117,108,108,115,99,114,101,101,110,44,105,61,110,46,101,110,116,101,114,70,117,108,108,115,99,114,101,101,110,44,111,61,101,46,100,97,116,97,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,46,102,117,108,108,115,99,114,101,101,110,44,97,61,111,46,101,110,116,101,114,44,115,61,111,46,101,120,105,116,59,114,101,116,117,114,110,40,116,104,105,115,46,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,63,86,116,40,115,44,114,41,58,86,116,40,97,44,105,41,41,91,116,93,125,125,44,99,114,101,97,116,101,100,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,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,77,97,110,97,103,101,114,59,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,125,44,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,105,115,70,117,108,108,115,99,114,101,101,110,79,112,101,110,61,101,125,125,125,44,73,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,72,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,116,111,111,108,98,97,114,47,116,111,111,108,98,97,114,45,98,117,116,116,111,110,115,47,70,117,108,108,115,99,114,101,101,110,66,117,116,116,111,110,46,118,117,101,34,59,118,97,114,32,85,116,61,72,116,46,101,120,112,111,114,116,115,44,87,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,41,40,34,84,111,111,108,98,97,114,66,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,34,111,110,45,99,108,105,99,107,34,58,116,104,105,115,46,111,110,67,108,105,99,107,44,34,118,105,101,119,45,98,111,120,34,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,118,105,101,119,66,111,120,44,119,105,100,116,104,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,119,105,100,116,104,44,104,101,105,103,104,116,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,104,101,105,103,104,116,44,100,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,100,44,116,105,116,108,101,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,116,105,116,108,101,125,125,41,125,59,87,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,71,116,61,70,116,40,123,112,114,111,112,115,58,123,98,117,116,116,111,110,68,97,116,97,58,79,98,106,101,99,116,44,111,110,67,108,105,99,107,58,70,117,110,99,116,105,111,110,125,44,99,111,109,112,111,110,101,110,116,115,58,123,84,111,111,108,98,97,114,66,117,116,116,111,110,58,122,116,125,125,44,87,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,71,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,116,111,111,108,98,97,114,47,116,111,111,108,98,97,114,45,98,117,116,116,111,110,115,47,79,110,101,83,116,97,116,101,66,117,116,116,111,110,46,118,117,101,34,59,118,97,114,32,113,116,61,71,116,46,101,120,112,111,114,116,115,44,89,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,41,40,34,84,111,111,108,98,97,114,66,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,34,111,110,45,99,108,105,99,107,34,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,34,111,110,67,108,105,99,107,34,41,44,34,118,105,101,119,45,98,111,120,34,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,34,118,105,101,119,66,111,120,34,41,44,119,105,100,116,104,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,34,119,105,100,116,104,34,41,44,104,101,105,103,104,116,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,34,104,101,105,103,104,116,34,41,44,100,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,34,100,34,41,44,116,105,116,108,101,58,116,104,105,115,46,103,101,116,66,117,116,116,111,110,68,97,116,97,40,34,116,105,116,108,101,34,41,125,125,41,125,59,89,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,75,116,61,70,116,40,123,99,111,109,112,111,110,101,110,116,115,58,123,84,111,111,108,98,97,114,66,117,116,116,111,110,58,122,116,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,83,108,105,100,101,115,104,111,119,79,110,58,33,49,125,125,44,109,101,116,104,111,100,115,58,123,103,101,116,66,117,116,116,111,110,68,97,116,97,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,110,61,101,46,99,111,114,101,46,115,108,105,100,101,115,104,111,119,77,97,110,97,103,101,114,46,116,111,103,103,108,101,83,108,105,100,101,115,104,111,119,44,114,61,101,46,100,97,116,97,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,46,115,108,105,100,101,115,104,111,119,44,105,61,114,46,115,116,97,114,116,44,111,61,114,46,112,97,117,115,101,59,114,101,116,117,114,110,40,116,104,105,115,46,105,115,83,108,105,100,101,115,104,111,119,79,110,63,86,116,40,111,44,110,41,58,86,116,40,105,44,110,41,41,91,116,93,125,125,44,99,114,101,97,116,101,100,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,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,59,101,46,115,116,97,114,116,83,108,105,100,101,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,105,115,83,108,105,100,101,115,104,111,119,79,110,61,33,48,125,44,101,46,115,116,111,112,83,108,105,100,101,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,105,115,83,108,105,100,101,115,104,111,119,79,110,61,33,49,125,125,125,44,89,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,75,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,116,111,111,108,98,97,114,47,116,111,111,108,98,97,114,45,98,117,116,116,111,110,115,47,83,108,105,100,101,115,104,111,119,66,117,116,116,111,110,46,118,117,101,34,59,118,97,114,32,88,116,61,70,116,40,123,99,111,109,112,111,110,101,110,116,115,58,123,83,108,105,100,101,115,104,111,119,66,117,116,116,111,110,58,75,116,46,101,120,112,111,114,116,115,44,79,110,101,83,116,97,116,101,66,117,116,116,111,110,58,113,116,44,70,117,108,108,115,99,114,101,101,110,66,117,116,116,111,110,58,85,116,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,101,61,116,46,99,111,114,101,44,110,61,101,46,99,108,105,99,107,90,111,111,109,101,114,44,114,61,110,46,122,111,111,109,73,110,44,105,61,110,46,122,111,111,109,79,117,116,44,111,61,101,46,108,105,103,104,116,98,111,120,67,108,111,115,101,114,46,99,108,111,115,101,76,105,103,104,116,98,111,120,44,97,61,116,46,100,97,116,97,46,116,111,111,108,98,97,114,66,117,116,116,111,110,115,44,115,61,116,46,112,114,111,112,115,44,99,61,115,46,100,105,115,97,98,108,101,84,104,117,109,98,115,44,117,61,115,46,99,117,115,116,111,109,84,111,111,108,98,97,114,66,117,116,116,111,110,115,44,108,61,123,102,115,76,105,103,104,116,98,111,120,58,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,116,111,111,108,98,97,114,66,117,116,116,111,110,115,68,97,116,97,58,97,44,99,117,115,116,111,109,84,111,111,108,98,97,114,66,117,116,116,111,110,115,58,117,44,99,108,111,115,101,76,105,103,104,116,98,111,120,58,111,44,122,111,111,109,73,110,58,114,44,122,111,111,109,79,117,116,58,105,44,100,105,115,97,98,108,101,84,104,117,109,98,115,58,99,125,59,114,101,116,117,114,110,32,99,124,124,40,108,46,116,111,103,103,108,101,84,104,117,109,98,115,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,114,101,46,116,104,117,109,98,115,84,111,103,103,108,101,114,46,116,111,103,103,108,101,84,104,117,109,98,115,41,44,108,125,125,44,76,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,88,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,116,111,111,108,98,97,114,47,84,111,111,108,98,97,114,46,118,117,101,34,59,118,97,114,32,90,116,61,88,116,46,101,120,112,111,114,116,115,44,74,116,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,114,101,102,58,34,115,111,117,114,99,101,45,110,117,109,98,101,114,45,111,117,116,101,114,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,110,117,109,98,101,114,45,99,111,110,116,97,105,110,101,114,34,125,44,91,110,40,34,100,105,118,34,44,123,114,101,102,58,34,115,111,117,114,99,101,45,110,117,109,98,101,114,45,105,110,110,101,114,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,34,125,44,91,110,40,34,115,112,97,110,34,44,123,97,116,116,114,115,58,123,34,100,97,116,97,45,116,101,115,116,45,105,100,34,58,34,115,108,105,100,101,45,110,117,109,98,101,114,34,125,125,44,91,116,46,95,118,40,116,46,95,115,40,116,46,115,108,105,100,101,41,41,93,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,115,108,97,115,104,34,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,115,112,97,110,34,44,91,116,46,95,118,40,116,46,95,115,40,116,46,115,111,117,114,99,101,115,67,111,117,110,116,41,41,93,41,93,41,93,41,125,59,74,116,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,81,116,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,115,108,105,100,101,58,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,115,116,97,103,101,73,110,100,101,120,101,115,46,99,117,114,114,101,110,116,43,49,44,115,111,117,114,99,101,115,67,111,117,110,116,58,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,112,114,111,112,115,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,115,101,116,83,108,105,100,101,78,117,109,98,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,115,108,105,100,101,61,101,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,114,101,102,115,91,34,115,111,117,114,99,101,45,110,117,109,98,101,114,45,105,110,110,101,114,34,93,46,111,102,102,115,101,116,87,105,100,116,104,62,53,53,38,38,40,116,104,105,115,46,36,114,101,102,115,91,34,115,111,117,114,99,101,45,110,117,109,98,101,114,45,111,117,116,101,114,34,93,46,115,116,121,108,101,46,106,117,115,116,105,102,121,67,111,110,116,101,110,116,61,34,102,108,101,120,45,115,116,97,114,116,34,41,125,125,44,74,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,81,116,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,83,108,105,100,101,78,117,109,98,101,114,46,118,117,101,34,59,118,97,114,32,116,101,61,70,116,40,123,99,111,109,112,111,110,101,110,116,115,58,123,83,108,105,100,101,78,117,109,98,101,114,58,81,116,46,101,120,112,111,114,116,115,44,84,111,111,108,98,97,114,58,90,116,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,104,97,115,77,111,114,101,84,104,97,110,83,111,117,114,99,101,58,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,112,114,111,112,115,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,62,49,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,110,97,118,61,116,104,105,115,46,36,114,101,102,115,46,110,97,118,125,125,44,65,116,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,116,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,110,97,118,47,78,97,118,101,114,46,118,117,101,34,59,118,97,114,32,101,101,61,116,101,46,101,120,112,111,114,116,115,44,110,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,114,101,102,58,34,114,101,102,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,115,111,117,114,99,101,45,119,114,97,112,112,101,114,115,45,99,111,110,116,97,105,110,101,114,32,102,115,108,105,103,104,116,98,111,120,45,97,98,115,111,108,117,116,101,100,32,102,115,108,105,103,104,116,98,111,120,45,102,117,108,108,45,100,105,109,101,110,115,105,111,110,34,44,97,116,116,114,115,58,123,34,100,97,116,97,45,116,101,115,116,45,105,100,34,58,34,115,111,117,114,99,101,45,119,114,97,112,112,101,114,115,45,99,111,110,116,97,105,110,101,114,34,125,125,44,116,46,95,108,40,116,46,115,111,117,114,99,101,115,76,101,110,103,116,104,44,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,114,101,116,117,114,110,32,110,40,34,83,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,34,44,123,107,101,121,58,114,44,97,116,116,114,115,58,123,105,58,114,44,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,125,41,41,44,49,41,125,59,110,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,114,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,101,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,40,34,100,105,118,34,44,123,114,101,102,58,34,114,101,102,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,97,98,115,111,108,117,116,101,100,32,102,115,108,105,103,104,116,98,111,120,45,102,117,108,108,45,100,105,109,101,110,115,105,111,110,32,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,34,44,97,116,116,114,115,58,123,34,100,97,116,97,45,116,101,115,116,45,99,108,97,115,115,34,58,34,115,111,117,114,99,101,45,109,97,105,110,45,119,114,97,112,112,101,114,34,125,125,44,91,101,40,34,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,44,105,58,116,104,105,115,46,105,125,125,41,44,116,104,105,115,46,95,118,40,34,32,34,41,44,116,104,105,115,46,105,115,83,111,117,114,99,101,76,111,97,100,101,100,63,116,104,105,115,46,95,101,40,41,58,101,40,34,76,111,97,100,101,114,34,41,93,44,49,41,125,59,114,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,105,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,101,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,40,34,100,105,118,34,44,123,114,101,102,58,34,114,101,102,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,116,114,97,110,115,102,111,114,109,45,116,114,97,110,115,105,116,105,111,110,34,44,97,116,116,114,115,58,123,34,100,97,116,97,45,116,101,115,116,45,99,108,97,115,115,34,58,34,115,111,117,114,99,101,45,101,110,104,97,110,99,101,109,101,110,116,45,119,114,97,112,112,101,114,34,125,125,44,91,101,40,34,115,111,117,114,99,101,45,97,110,105,109,97,116,105,111,110,45,119,114,97,112,112,101,114,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,44,105,58,116,104,105,115,46,105,125,125,41,93,44,49,41,125,59,105,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,101,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,40,34,100,105,118,34,44,123,114,101,102,58,34,114,101,102,34,125,44,91,116,104,105,115,46,115,111,117,114,99,101,67,111,109,112,111,110,101,110,116,38,38,116,104,105,115,46,115,104,111,117,108,100,83,111,117,114,99,101,66,101,82,101,110,100,101,114,101,100,63,101,40,116,104,105,115,46,115,111,117,114,99,101,67,111,109,112,111,110,101,110,116,44,123,116,97,103,58,34,99,111,109,112,111,110,101,110,116,34,44,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,44,105,58,116,104,105,115,46,105,125,125,41,58,116,104,105,115,46,95,101,40,41,93,44,49,41,125,59,111,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,97,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,41,40,34,105,109,103,34,44,116,104,105,115,46,95,98,40,123,114,101,102,58,34,114,101,102,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,115,111,117,114,99,101,34,44,97,116,116,114,115,58,123,115,114,99,58,116,104,105,115,46,115,114,99,125,44,111,110,58,123,108,111,97,100,58,116,104,105,115,46,111,110,76,111,97,100,125,125,44,34,105,109,103,34,44,116,104,105,115,46,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,44,33,49,41,41,125,59,97,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,115,101,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,101,61,116,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,76,111,97,100,72,97,110,100,108,101,114,115,44,110,61,116,46,112,114,111,112,115,44,114,61,110,46,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,44,105,61,110,46,115,111,117,114,99,101,115,59,114,101,116,117,114,110,123,111,110,76,111,97,100,58,101,91,116,104,105,115,46,105,93,46,104,97,110,100,108,101,73,109,97,103,101,76,111,97,100,44,115,114,99,58,105,91,116,104,105,115,46,105,93,44,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,58,114,38,38,114,91,116,104,105,115,46,105,93,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,115,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,125,44,97,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,115,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,112,114,111,112,101,114,45,115,111,117,114,99,101,115,47,73,109,97,103,101,114,46,118,117,101,34,59,118,97,114,32,99,101,61,115,101,46,101,120,112,111,114,116,115,44,117,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,101,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,40,34,118,105,100,101,111,34,44,116,104,105,115,46,95,98,40,123,114,101,102,58,34,114,101,102,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,115,111,117,114,99,101,32,102,115,108,105,103,104,116,98,111,120,45,118,105,100,101,111,34,44,97,116,116,114,115,58,123,99,111,110,116,114,111,108,115,58,34,34,125,44,111,110,58,123,108,111,97,100,101,100,109,101,116,97,100,97,116,97,58,116,104,105,115,46,111,110,76,111,97,100,125,125,44,34,118,105,100,101,111,34,44,116,104,105,115,46,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,44,33,49,41,44,91,101,40,34,115,111,117,114,99,101,34,44,123,97,116,116,114,115,58,123,115,114,99,58,116,104,105,115,46,115,114,99,125,125,41,93,41,125,59,117,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,108,101,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,101,61,116,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,76,111,97,100,72,97,110,100,108,101,114,115,44,110,61,116,46,112,114,111,112,115,44,114,61,110,46,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,44,105,61,110,46,115,111,117,114,99,101,115,59,114,101,116,117,114,110,123,111,110,76,111,97,100,58,101,91,116,104,105,115,46,105,93,46,104,97,110,100,108,101,86,105,100,101,111,76,111,97,100,44,115,114,99,58,105,91,116,104,105,115,46,105,93,44,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,58,114,38,38,114,91,116,104,105,115,46,105,93,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,115,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,125,44,117,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,108,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,112,114,111,112,101,114,45,115,111,117,114,99,101,115,47,86,105,100,101,111,114,46,118,117,101,34,59,118,97,114,32,102,101,61,108,101,46,101,120,112,111,114,116,115,44,104,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,41,40,34,105,102,114,97,109,101,34,44,116,104,105,115,46,95,98,40,123,114,101,102,58,34,114,101,102,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,115,111,117,114,99,101,32,102,115,108,105,103,104,116,98,111,120,45,121,111,117,116,117,98,101,45,105,102,114,97,109,101,34,44,97,116,116,114,115,58,123,115,114,99,58,116,104,105,115,46,115,114,99,44,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,58,34,34,125,125,44,34,105,102,114,97,109,101,34,44,116,104,105,115,46,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,44,33,49,41,41,125,59,104,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,100,101,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,112,114,111,112,115,44,110,61,101,46,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,44,114,61,101,46,115,111,117,114,99,101,115,59,114,101,116,117,114,110,123,115,114,99,58,34,104,116,116,112,115,58,47,47,119,119,119,46,121,111,117,116,117,98,101,46,99,111,109,47,101,109,98,101,100,47,34,46,99,111,110,99,97,116,40,40,116,61,114,91,116,104,105,115,46,105,93,44,116,46,109,97,116,99,104,40,47,94,46,42,40,121,111,117,116,117,46,98,101,92,47,124,118,92,47,124,117,92,47,92,119,92,47,124,101,109,98,101,100,92,47,124,119,97,116,99,104,92,63,118,61,124,92,38,118,61,41,40,91,94,35,92,38,92,63,93,42,41,46,42,47,41,91,50,93,41,41,44,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,58,110,38,38,110,91,116,104,105,115,46,105,93,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,101,61,116,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,76,111,97,100,72,97,110,100,108,101,114,115,59,116,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,115,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,44,101,91,116,104,105,115,46,105,93,46,104,97,110,100,108,101,89,111,117,116,117,98,101,76,111,97,100,40,41,125,125,44,104,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,100,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,112,114,111,112,101,114,45,115,111,117,114,99,101,115,47,89,111,117,116,117,98,101,114,46,118,117,101,34,59,118,97,114,32,112,101,61,100,101,46,101,120,112,111,114,116,115,44,118,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,41,40,116,104,105,115,46,99,111,109,112,111,110,101,110,116,44,116,104,105,115,46,95,98,40,123,114,101,102,58,34,114,101,102,34,44,116,97,103,58,34,99,111,109,112,111,110,101,110,116,34,125,44,34,99,111,109,112,111,110,101,110,116,34,44,116,104,105,115,46,99,111,109,112,111,110,101,110,116,80,114,111,112,115,44,33,49,41,41,125,59,102,117,110,99,116,105,111,110,32,103,101,40,116,41,123,118,97,114,32,101,61,123,99,111,109,112,111,110,101,110,116,58,116,44,99,111,109,112,111,110,101,110,116,80,114,111,112,115,58,123,125,125,59,114,101,116,117,114,110,32,116,46,99,111,109,112,111,110,101,110,116,38,38,40,101,46,99,111,109,112,111,110,101,110,116,61,116,46,99,111,109,112,111,110,101,110,116,44,101,46,99,111,109,112,111,110,101,110,116,80,114,111,112,115,61,116,46,112,114,111,112,115,41,44,101,125,118,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,109,101,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,103,101,40,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,112,114,111,112,115,46,115,111,117,114,99,101,115,91,116,104,105,115,46,105,93,41,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,101,61,116,46,99,111,108,108,101,99,116,105,111,110,115,46,115,111,117,114,99,101,76,111,97,100,72,97,110,100,108,101,114,115,44,110,61,116,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,115,59,110,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,46,36,101,108,44,110,91,116,104,105,115,46,105,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,98,41,44,101,91,116,104,105,115,46,105,93,46,104,97,110,100,108,101,67,117,115,116,111,109,76,111,97,100,40,41,125,125,44,118,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,109,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,112,114,111,112,101,114,45,115,111,117,114,99,101,115,47,67,117,115,116,111,109,101,114,46,118,117,101,34,59,118,97,114,32,98,101,61,109,101,46,101,120,112,111,114,116,115,44,121,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,41,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,105,110,118,97,108,105,100,45,102,105,108,101,45,119,114,97,112,112,101,114,32,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,34,125,44,91,116,104,105,115,46,95,118,40,34,92,110,32,32,32,32,73,110,118,97,108,105,100,32,115,111,117,114,99,101,92,110,34,41,93,41,125,59,121,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,119,101,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,101,61,116,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,104,105,100,101,83,111,117,114,99,101,76,111,97,100,101,114,67,111,108,108,101,99,116,105,111,110,44,110,61,116,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,59,101,91,116,104,105,115,46,105,93,40,41,44,110,91,116,104,105,115,46,105,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,104,41,125,125,44,121,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,119,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,112,114,111,112,101,114,45,115,111,117,114,99,101,115,47,73,110,118,97,108,105,100,101,114,46,118,117,101,34,59,118,97,114,32,95,101,61,119,101,46,101,120,112,111,114,116,115,44,120,101,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,99,111,109,112,111,110,101,110,116,115,58,123,73,109,97,103,101,114,58,99,101,44,86,105,100,101,111,114,58,102,101,44,89,111,117,116,117,98,101,114,58,112,101,44,67,117,115,116,111,109,101,114,58,98,101,44,73,110,118,97,108,105,100,101,114,58,95,101,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,125,59,114,101,116,117,114,110,32,116,104,105,115,46,97,116,116,97,99,104,67,111,109,112,111,110,101,110,116,68,97,116,97,84,111,79,98,106,101,99,116,40,116,41,44,116,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,117,112,100,97,116,101,83,111,117,114,99,101,68,105,114,101,99,116,87,114,97,112,112,101,114,67,111,108,108,101,99,116,105,111,110,91,116,104,105,115,46,105,93,61,102,117,110,99,116,105,111,110,40,41,123,116,46,97,116,116,97,99,104,67,111,109,112,111,110,101,110,116,68,97,116,97,84,111,79,98,106,101,99,116,40,116,41,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,65,110,105,109,97,116,105,111,110,87,114,97,112,112,101,114,115,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,44,109,101,116,104,111,100,115,58,123,97,116,116,97,99,104,67,111,109,112,111,110,101,110,116,68,97,116,97,84,111,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,110,61,101,46,99,111,114,101,46,115,116,97,103,101,77,97,110,97,103,101,114,44,114,61,101,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,67,111,109,112,111,110,101,110,116,115,44,105,61,101,46,112,114,111,112,115,46,108,111,97,100,79,110,108,121,67,117,114,114,101,110,116,83,111,117,114,99,101,44,111,61,101,46,115,116,97,103,101,73,110,100,101,120,101,115,59,116,46,115,111,117,114,99,101,67,111,109,112,111,110,101,110,116,61,114,91,116,104,105,115,46,105,93,44,116,46,115,104,111,117,108,100,83,111,117,114,99,101,66,101,82,101,110,100,101,114,101,100,61,116,104,105,115,46,105,61,61,61,111,46,99,117,114,114,101,110,116,124,124,33,105,38,38,110,46,105,115,83,111,117,114,99,101,73,110,83,116,97,103,101,40,116,104,105,115,46,105,41,125,125,125,44,111,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,120,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,83,111,117,114,99,101,65,110,105,109,97,116,105,111,110,87,114,97,112,112,101,114,46,118,117,101,34,59,118,97,114,32,79,101,61,120,101,46,101,120,112,111,114,116,115,44,83,101,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,99,111,109,112,111,110,101,110,116,115,58,123,83,111,117,114,99,101,65,110,105,109,97,116,105,111,110,87,114,97,112,112,101,114,58,79,101,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,115,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,125,44,105,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,83,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,46,118,117,101,34,59,118,97,114,32,107,101,61,83,101,46,101,120,112,111,114,116,115,44,67,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,101,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,40,34,100,105,118,34,44,123,99,108,97,115,115,58,116,104,105,115,46,99,108,97,115,115,78,97,109,101,44,97,116,116,114,115,58,123,34,100,97,116,97,45,116,101,115,116,45,105,100,34,58,116,104,105,115,46,116,101,115,116,73,100,125,125,44,91,101,40,34,100,105,118,34,41,44,116,104,105,115,46,95,118,40,34,32,34,41,44,101,40,34,100,105,118,34,41,44,116,104,105,115,46,95,118,40,34,32,34,41,44,101,40,34,100,105,118,34,41,44,116,104,105,115,46,95,118,40,34,32,34,41,44,101,40,34,100,105,118,34,41,93,41,125,59,67,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,80,101,61,70,116,40,123,112,114,111,112,115,58,123,97,100,100,105,116,105,111,110,97,108,67,108,97,115,115,78,97,109,101,58,83,116,114,105,110,103,44,116,101,115,116,73,100,58,83,116,114,105,110,103,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,34,102,115,108,105,103,104,116,98,111,120,45,108,111,97,100,101,114,34,59,114,101,116,117,114,110,32,116,104,105,115,46,97,100,100,105,116,105,111,110,97,108,67,108,97,115,115,78,97,109,101,38,38,40,116,43,61,34,32,34,46,99,111,110,99,97,116,40,116,104,105,115,46,97,100,100,105,116,105,111,110,97,108,67,108,97,115,115,78,97,109,101,41,41,44,123,99,108,97,115,115,78,97,109,101,58,116,125,125,125,44,67,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,80,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,104,101,108,112,101,114,115,47,76,111,97,100,101,114,46,118,117,101,34,59,118,97,114,32,84,101,61,80,101,46,101,120,112,111,114,116,115,44,106,101,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,99,111,109,112,111,110,101,110,116,115,58,123,83,111,117,114,99,101,69,110,104,97,110,99,101,109,101,110,116,87,114,97,112,112,101,114,58,107,101,44,76,111,97,100,101,114,58,84,101,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,83,111,117,114,99,101,76,111,97,100,101,100,58,33,49,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,104,105,100,101,83,111,117,114,99,101,76,111,97,100,101,114,67,111,108,108,101,99,116,105,111,110,91,116,104,105,115,46,105,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,105,115,83,111,117,114,99,101,76,111,97,100,101,100,61,33,48,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,115,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,125,44,114,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,106,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,83,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,46,118,117,101,34,59,118,97,114,32,69,101,61,106,101,46,101,120,112,111,114,116,115,59,102,117,110,99,116,105,111,110,32,68,101,40,41,123,116,104,105,115,46,103,101,116,77,111,117,115,101,68,111,119,110,76,105,115,116,101,110,101,114,70,117,110,99,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,116,40,41,63,118,111,105,100,32,48,58,69,40,116,44,101,116,41,125,44,116,104,105,115,46,103,101,116,84,111,117,99,104,83,116,97,114,116,76,105,115,116,101,110,101,114,70,111,114,70,117,110,99,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,116,40,41,63,69,40,116,44,101,116,41,58,118,111,105,100,32,48,125,125,118,97,114,32,65,101,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,99,111,109,112,111,110,101,110,116,115,58,123,83,111,117,114,99,101,77,97,105,110,87,114,97,112,112,101,114,58,69,101,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,115,111,117,114,99,101,115,76,101,110,103,116,104,58,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,112,114,111,112,115,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,101,61,116,46,99,111,114,101,46,115,111,117,114,99,101,115,80,111,105,110,116,101,114,68,111,119,110,46,108,105,115,116,101,110,101,114,59,116,46,101,108,101,109,101,110,116,115,46,115,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,59,118,97,114,32,110,61,110,101,119,32,68,101,59,116,104,105,115,46,36,114,101,102,115,46,114,101,102,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,100,111,119,110,34,44,110,46,103,101,116,77,111,117,115,101,68,111,119,110,76,105,115,116,101,110,101,114,70,117,110,99,40,101,41,41,44,116,104,105,115,46,36,114,101,102,115,46,114,101,102,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,116,111,117,99,104,115,116,97,114,116,34,44,110,46,103,101,116,84,111,117,99,104,83,116,97,114,116,76,105,115,116,101,110,101,114,70,111,114,70,117,110,99,40,101,41,41,125,125,44,110,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,65,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,115,111,117,114,99,101,115,47,83,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,46,118,117,101,34,59,118,97,114,32,76,101,61,65,101,46,101,120,112,111,114,116,115,44,73,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,116,46,115,111,117,114,99,101,115,76,101,110,103,116,104,62,49,63,110,40,34,100,105,118,34,44,91,110,40,34,83,108,105,100,101,66,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,44,34,111,110,45,99,108,105,99,107,34,58,116,46,99,104,97,110,103,101,84,111,80,114,101,118,105,111,117,115,44,34,98,117,116,116,111,110,45,100,97,116,97,34,58,116,46,112,114,101,118,105,111,117,115,66,117,116,116,111,110,68,97,116,97,44,110,97,109,101,58,34,112,114,101,118,105,111,117,115,34,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,83,108,105,100,101,66,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,44,34,111,110,45,99,108,105,99,107,34,58,116,46,99,104,97,110,103,101,84,111,78,101,120,116,44,34,98,117,116,116,111,110,45,100,97,116,97,34,58,116,46,110,101,120,116,66,117,116,116,111,110,68,97,116,97,44,110,97,109,101,58,34,110,101,120,116,34,125,125,41,93,44,49,41,58,116,46,95,101,40,41,125,59,73,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,77,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,101,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,40,34,100,105,118,34,44,123,114,101,102,58,34,114,101,102,34,44,99,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,32,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,45,99,111,110,116,97,105,110,101,114,45,34,43,116,104,105,115,46,110,97,109,101,44,97,116,116,114,115,58,123,116,105,116,108,101,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,116,105,116,108,101,125,44,111,110,58,123,99,108,105,99,107,58,116,104,105,115,46,111,110,67,108,105,99,107,125,125,44,91,101,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,98,116,110,32,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,34,125,44,91,101,40,34,83,118,103,101,114,34,44,123,97,116,116,114,115,58,123,34,118,105,101,119,45,98,111,120,34,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,118,105,101,119,66,111,120,44,119,105,100,116,104,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,119,105,100,116,104,44,104,101,105,103,104,116,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,104,101,105,103,104,116,44,100,58,116,104,105,115,46,98,117,116,116,111,110,68,97,116,97,46,100,125,125,41,93,44,49,41,93,41,125,59,77,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,36,101,61,70,116,40,123,99,111,109,112,111,110,101,110,116,115,58,123,83,118,103,101,114,58,78,116,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,111,110,67,108,105,99,107,58,70,117,110,99,116,105,111,110,44,98,117,116,116,111,110,68,97,116,97,58,79,98,106,101,99,116,44,110,97,109,101,58,83,116,114,105,110,103,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,91,34,115,108,105,100,101,66,117,116,116,111,110,34,46,99,111,110,99,97,116,40,116,104,105,115,46,110,97,109,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,46,115,117,98,115,116,114,40,48,44,49,41,43,116,104,105,115,46,110,97,109,101,46,115,117,98,115,116,114,40,49,41,41,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,125,44,77,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,36,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,108,105,100,101,66,117,116,116,111,110,46,118,117,101,34,59,118,97,114,32,70,101,61,36,101,46,101,120,112,111,114,116,115,44,82,101,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,99,111,109,112,111,110,101,110,116,115,58,123,83,108,105,100,101,66,117,116,116,111,110,58,70,101,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,101,61,116,46,99,111,114,101,46,115,108,105,100,101,67,104,97,110,103,101,70,97,99,97,100,101,44,110,61,101,46,99,104,97,110,103,101,84,111,80,114,101,118,105,111,117,115,44,114,61,101,46,99,104,97,110,103,101,84,111,78,101,120,116,44,105,61,116,46,100,97,116,97,46,115,108,105,100,101,66,117,116,116,111,110,115,44,111,61,105,46,112,114,101,118,105,111,117,115,44,97,61,105,46,110,101,120,116,59,114,101,116,117,114,110,123,115,111,117,114,99,101,115,76,101,110,103,116,104,58,116,46,112,114,111,112,115,46,115,111,117,114,99,101,115,46,108,101,110,103,116,104,44,99,104,97,110,103,101,84,111,80,114,101,118,105,111,117,115,58,110,44,99,104,97,110,103,101,84,111,78,101,120,116,58,114,44,112,114,101,118,105,111,117,115,66,117,116,116,111,110,68,97,116,97,58,111,44,110,101,120,116,66,117,116,116,111,110,68,97,116,97,58,97,125,125,125,44,73,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,82,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,108,105,100,101,66,117,116,116,111,110,115,46,118,117,101,34,59,118,97,114,32,78,101,61,82,101,46,101,120,112,111,114,116,115,44,66,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,101,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,83,104,111,119,110,63,101,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,45,115,119,105,112,105,110,103,45,104,111,118,101,114,101,114,32,102,115,108,105,103,104,116,98,111,120,45,102,117,108,108,45,100,105,109,101,110,115,105,111,110,32,102,115,108,105,103,104,116,98,111,120,45,97,98,115,111,108,117,116,101,100,34,125,41,58,116,104,105,115,46,95,101,40,41,125,59,66,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,122,101,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,83,104,111,119,110,58,33,49,125,125,44,99,114,101,97,116,101,100,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,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,59,101,46,115,104,111,119,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,73,102,78,111,116,89,101,116,61,102,117,110,99,116,105,111,110,40,41,123,116,46,105,115,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,83,104,111,119,110,124,124,40,116,46,105,115,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,83,104,111,119,110,61,33,48,41,125,44,101,46,104,105,100,101,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,61,102,117,110,99,116,105,111,110,40,41,123,116,46,105,115,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,83,104,111,119,110,61,33,49,125,125,125,44,66,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,122,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,46,118,117,101,34,59,118,97,114,32,86,101,61,122,101,46,101,120,112,111,114,116,115,44,72,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,41,40,34,100,105,118,34,44,123,114,101,102,58,34,114,101,102,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,115,108,105,100,101,115,104,111,119,45,98,97,114,32,102,115,108,105,103,104,116,98,111,120,45,97,98,115,111,108,117,116,101,100,34,125,41,125,59,72,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,85,101,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,115,108,105,100,101,115,104,111,119,66,97,114,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,125,44,72,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,85,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,108,105,100,101,115,104,111,119,66,97,114,46,118,117,101,34,59,118,97,114,32,87,101,61,85,101,46,101,120,112,111,114,116,115,59,102,117,110,99,116,105,111,110,32,71,101,40,116,41,123,118,97,114,32,101,61,116,46,112,114,111,112,115,46,100,105,115,97,98,108,101,76,111,99,97,108,83,116,111,114,97,103,101,59,105,102,40,33,101,41,123,118,97,114,32,110,61,108,111,99,97,108,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,34,102,115,108,105,103,104,116,98,111,120,45,115,99,114,111,108,108,98,97,114,45,119,105,100,116,104,34,41,59,105,102,40,110,41,114,101,116,117,114,110,32,110,125,118,97,114,32,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,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,101,61,116,46,115,116,121,108,101,59,114,101,116,117,114,110,32,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,101,46,119,105,100,116,104,61,34,49,48,48,112,120,34,44,101,46,109,115,79,118,101,114,102,108,111,119,83,116,121,108,101,61,34,115,99,114,111,108,108,98,97,114,34,44,101,46,111,118,101,114,102,108,111,119,61,34,115,99,114,111,108,108,34,44,116,125,40,41,44,105,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,114,101,116,117,114,110,32,116,46,115,116,121,108,101,46,119,105,100,116,104,61,34,49,48,48,37,34,44,116,125,40,41,59,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,114,41,59,118,97,114,32,111,61,114,46,111,102,102,115,101,116,87,105,100,116,104,59,114,46,97,112,112,101,110,100,67,104,105,108,100,40,105,41,59,118,97,114,32,97,61,105,46,111,102,102,115,101,116,87,105,100,116,104,59,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,114,41,59,118,97,114,32,115,61,111,45,97,59,114,101,116,117,114,110,32,101,124,124,108,111,99,97,108,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,34,102,115,108,105,103,104,116,98,111,120,45,115,99,114,111,108,108,98,97,114,45,119,105,100,116,104,34,44,115,46,116,111,83,116,114,105,110,103,40,41,41,44,115,125,102,117,110,99,116,105,111,110,32,113,101,40,116,41,123,118,97,114,32,101,61,116,46,99,111,114,101,46,108,105,103,104,116,98,111,120,79,112,101,110,101,114,44,110,61,116,46,100,97,116,97,44,114,61,116,46,112,114,111,112,115,46,111,112,101,110,79,110,77,111,117,110,116,59,100,111,99,117,109,101,110,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,111,41,46,108,101,110,103,116,104,124,124,79,40,41,44,110,46,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,71,101,40,116,41,44,114,38,38,101,46,105,110,105,116,105,97,108,105,122,101,65,110,100,79,112,101,110,76,105,103,104,116,98,111,120,40,41,125,118,97,114,32,89,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,116,46,95,108,40,116,46,99,97,112,116,105,111,110,115,44,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,114,101,116,117,114,110,32,101,63,110,40,34,67,97,112,116,105,111,110,34,44,123,107,101,121,58,114,44,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,44,105,58,114,125,125,41,58,116,46,95,101,40,41,125,41,41,44,49,41,125,59,89,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,75,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,101,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,40,34,100,105,118,34,44,123,114,101,102,58,34,114,101,102,34,44,99,108,97,115,115,58,116,104,105,115,46,99,108,97,115,115,78,97,109,101,125,44,91,101,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,45,105,110,110,101,114,34,125,44,91,101,40,116,104,105,115,46,99,111,109,112,111,110,101,110,116,44,116,104,105,115,46,95,98,40,123,116,97,103,58,34,99,111,109,112,111,110,101,110,116,34,125,44,34,99,111,109,112,111,110,101,110,116,34,44,116,104,105,115,46,99,111,109,112,111,110,101,110,116,80,114,111,112,115,44,33,49,41,41,93,44,49,41,93,41,125,59,75,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,88,101,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,101,61,116,46,100,97,116,97,46,105,115,84,104,117,109,98,105,110,103,44,110,61,116,46,112,114,111,112,115,46,99,97,112,116,105,111,110,115,44,114,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,44,105,61,103,101,40,110,91,116,104,105,115,46,105,93,41,59,114,101,116,117,114,110,32,105,46,99,108,97,115,115,78,97,109,101,61,34,102,115,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,32,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,34,44,114,46,99,117,114,114,101,110,116,33,61,61,116,104,105,115,46,105,124,124,101,124,124,40,105,46,99,108,97,115,115,78,97,109,101,43,61,34,32,102,115,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,45,97,99,116,105,118,101,34,41,44,105,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,99,97,112,116,105,111,110,115,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,125,125,44,75,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,88,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,99,97,112,116,105,111,110,115,47,67,97,112,116,105,111,110,46,118,117,101,34,59,118,97,114,32,90,101,61,70,116,40,123,99,111,109,112,111,110,101,110,116,115,58,123,67,97,112,116,105,111,110,58,88,101,46,101,120,112,111,114,116,115,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,99,97,112,116,105,111,110,115,58,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,112,114,111,112,115,46,99,97,112,116,105,111,110,115,125,125,125,44,89,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,90,101,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,99,97,112,116,105,111,110,115,47,67,97,112,116,105,111,110,115,46,118,117,101,34,59,118,97,114,32,74,101,61,90,101,46,101,120,112,111,114,116,115,44,81,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,101,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,40,34,100,105,118,34,44,123,114,101,102,58,34,114,101,102,34,44,99,108,97,115,115,58,116,104,105,115,46,99,108,97,115,115,78,97,109,101,125,44,91,101,40,34,84,104,117,109,98,115,67,117,114,115,111,114,101,114,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,116,104,105,115,46,95,118,40,34,32,34,41,44,101,40,34,84,104,117,109,98,115,73,110,110,101,114,34,44,123,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,41,44,116,104,105,115,46,95,118,40,34,32,34,41,44,116,104,105,115,46,97,114,101,84,104,117,109,98,115,76,111,97,100,105,110,103,63,101,40,34,76,111,97,100,101,114,34,44,123,97,116,116,114,115,58,123,116,101,115,116,73,100,58,34,116,104,117,109,98,115,45,108,111,97,100,101,114,34,44,34,97,100,100,105,116,105,111,110,97,108,45,99,108,97,115,115,45,110,97,109,101,34,58,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,108,111,97,100,101,114,34,125,125,41,58,116,104,105,115,46,95,101,40,41,93,44,49,41,125,59,81,101,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,116,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,101,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,84,104,117,109,98,115,67,117,114,115,111,114,101,114,83,104,111,119,110,63,101,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,99,117,114,115,111,114,101,114,32,102,115,108,105,103,104,116,98,111,120,45,102,117,108,108,45,100,105,109,101,110,115,105,111,110,32,102,115,108,105,103,104,116,98,111,120,45,97,98,115,111,108,117,116,101,100,34,125,41,58,116,104,105,115,46,95,101,40,41,125,59,116,110,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,101,110,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,84,104,117,109,98,115,67,117,114,115,111,114,101,114,83,104,111,119,110,58,33,49,125,125,44,99,114,101,97,116,101,100,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,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,59,101,46,115,104,111,119,84,104,117,109,98,115,67,117,114,115,111,114,101,114,73,102,78,111,116,89,101,116,61,102,117,110,99,116,105,111,110,40,41,123,116,46,105,115,84,104,117,109,98,115,67,117,114,115,111,114,101,114,83,104,111,119,110,124,124,40,116,46,105,115,84,104,117,109,98,115,67,117,114,115,111,114,101,114,83,104,111,119,110,61,33,48,41,125,44,101,46,104,105,100,101,84,104,117,109,98,115,67,117,114,115,111,114,101,114,61,102,117,110,99,116,105,111,110,40,41,123,116,46,105,115,84,104,117,109,98,115,67,117,114,115,111,114,101,114,83,104,111,119,110,61,33,49,125,125,125,44,116,110,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,101,110,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,116,104,117,109,98,115,47,84,104,117,109,98,115,67,117,114,115,111,114,101,114,46,118,117,101,34,59,118,97,114,32,110,110,61,101,110,46,101,120,112,111,114,116,115,44,114,110,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,114,101,102,58,34,114,101,102,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,105,110,110,101,114,34,44,97,116,116,114,115,58,123,34,100,97,116,97,45,116,101,115,116,45,105,100,34,58,34,116,104,117,109,98,115,45,105,110,110,101,114,34,125,125,44,116,46,95,108,40,116,46,99,104,105,108,100,114,101,110,44,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,114,101,116,117,114,110,32,101,63,110,40,101,46,99,111,109,112,111,110,101,110,116,44,116,46,95,98,40,123,107,101,121,58,114,44,116,97,103,58,34,99,111,109,112,111,110,101,110,116,34,44,97,116,116,114,115,58,123,34,102,115,45,108,105,103,104,116,98,111,120,45,105,110,100,101,120,34,58,116,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,125,125,44,34,99,111,109,112,111,110,101,110,116,34,44,101,46,112,114,111,112,115,44,33,49,41,41,58,116,46,95,101,40,41,125,41,41,44,49,41,125,59,114,110,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,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,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,101,61,116,104,105,115,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,40,34,100,105,118,34,44,123,114,101,102,58,34,116,104,117,109,98,45,119,114,97,112,112,101,114,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,105,110,118,97,108,105,100,32,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,119,114,97,112,112,101,114,34,125,44,91,101,40,34,100,105,118,34,44,123,114,101,102,58,34,116,104,117,109,98,34,44,99,108,97,115,115,58,116,104,105,115,46,116,104,117,109,98,67,108,97,115,115,78,97,109,101,125,44,91,101,40,34,83,118,103,101,114,34,44,123,97,116,116,114,115,58,123,119,105,100,116,104,58,34,50,50,112,120,34,44,104,101,105,103,104,116,58,34,50,50,112,120,34,44,34,118,105,101,119,45,98,111,120,34,58,34,48,32,48,32,51,48,32,51,48,34,44,100,58,34,77,49,53,44,51,67,56,46,51,55,51,44,51,44,51,44,56,46,51,55,51,44,51,44,49,53,99,48,44,54,46,54,50,55,44,53,46,51,55,51,44,49,50,44,49,50,44,49,50,115,49,50,45,53,46,51,55,51,44,49,50,45,49,50,67,50,55,44,56,46,51,55,51,44,50,49,46,54,50,55,44,51,44,49,53,44,51,122,32,77,49,54,46,50,49,50,44,56,108,45,48,46,50,44,57,104,45,50,46,48,50,52,108,45,48,46,50,45,57,32,72,49,54,46,50,49,50,122,32,77,49,53,46,48,48,51,44,50,50,46,49,56,57,99,45,48,46,56,50,56,44,48,45,49,46,51,50,51,45,48,46,52,52,49,45,49,46,51,50,51,45,49,46,49,56,50,99,48,45,48,46,55,53,53,44,48,46,52,57,52,45,49,46,49,57,54,44,49,46,51,50,51,45,49,46,49,57,54,99,48,46,56,50,50,44,48,44,49,46,51,49,54,44,48,46,52,52,49,44,49,46,51,49,54,44,49,46,49,57,54,32,67,49,54,46,51,49,57,44,50,49,46,55,52,56,44,49,53,46,56,50,53,44,50,50,46,49,56,57,44,49,53,46,48,48,51,44,50,50,46,49,56,57,122,34,125,125,41,93,44,49,41,93,41,125,59,111,110,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,97,110,61,70,116,40,123,99,111,109,112,111,110,101,110,116,115,58,123,83,118,103,101,114,58,78,116,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,116,104,117,109,98,67,108,97,115,115,78,97,109,101,58,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,32,102,115,108,105,103,104,116,98,111,120,45,102,108,101,120,45,99,101,110,116,101,114,101,100,34,125,59,114,101,116,117,114,110,32,116,104,105,115,46,105,61,61,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,115,116,97,103,101,73,110,100,101,120,101,115,46,99,117,114,114,101,110,116,38,38,40,116,46,116,104,117,109,98,67,108,97,115,115,78,97,109,101,43,61,34,32,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,97,99,116,105,118,101,34,41,44,116,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,101,61,116,46,99,111,114,101,46,116,104,117,109,98,76,111,97,100,72,97,110,100,108,101,114,46,104,97,110,100,108,101,76,111,97,100,44,110,61,116,46,101,108,101,109,101,110,116,115,44,114,61,110,46,116,104,117,109,98,115,87,114,97,112,112,101,114,115,44,105,61,110,46,116,104,117,109,98,115,59,114,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,91,34,116,104,117,109,98,45,119,114,97,112,112,101,114,34,93,44,105,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,116,104,117,109,98,44,101,40,41,125,125,44,111,110,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,97,110,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,116,104,117,109,98,115,47,73,110,118,97,108,105,100,84,104,117,109,98,46,118,117,101,34,59,118,97,114,32,115,110,61,97,110,46,101,120,112,111,114,116,115,44,99,110,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,114,101,102,58,34,116,104,117,109,98,45,119,114,97,112,112,101,114,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,119,114,97,112,112,101,114,34,125,44,91,116,46,116,104,117,109,98,73,99,111,110,63,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,119,114,97,112,112,101,114,45,100,97,114,107,101,110,101,114,34,125,41,58,116,46,95,101,40,41,44,116,46,95,118,40,34,32,34,41,44,116,46,116,104,117,109,98,73,99,111,110,63,110,40,116,46,116,104,117,109,98,73,99,111,110,46,99,111,109,112,111,110,101,110,116,44,116,46,95,98,40,123,116,97,103,58,34,99,111,109,112,111,110,101,110,116,34,125,44,34,99,111,109,112,111,110,101,110,116,34,44,116,46,116,104,117,109,98,73,99,111,110,46,99,111,109,112,111,110,101,110,116,80,114,111,112,115,44,33,49,41,41,58,116,46,95,101,40,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,105,109,103,34,44,123,114,101,102,58,34,116,104,117,109,98,34,44,99,108,97,115,115,58,116,46,116,104,117,109,98,67,108,97,115,115,78,97,109,101,44,97,116,116,114,115,58,123,115,114,99,58,116,46,115,114,99,44,97,108,116,58,116,46,115,114,99,125,44,111,110,58,123,108,111,97,100,58,116,46,111,110,76,111,97,100,125,125,41,93,44,49,41,125,59,99,110,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,117,110,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,44,105,58,78,117,109,98,101,114,44,115,114,99,58,83,116,114,105,110,103,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,101,61,116,46,99,111,114,101,46,116,104,117,109,98,76,111,97,100,72,97,110,100,108,101,114,46,104,97,110,100,108,101,76,111,97,100,44,110,61,116,46,112,114,111,112,115,46,116,104,117,109,98,115,73,99,111,110,115,44,114,61,116,46,115,116,97,103,101,73,110,100,101,120,101,115,44,105,61,123,116,104,117,109,98,73,99,111,110,58,110,117,108,108,125,44,111,61,110,38,38,110,91,116,104,105,115,46,105,93,59,114,101,116,117,114,110,32,111,38,38,40,105,46,116,104,117,109,98,73,99,111,110,61,103,101,40,111,41,41,44,105,46,111,110,76,111,97,100,61,101,44,105,46,116,104,117,109,98,67,108,97,115,115,78,97,109,101,61,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,34,44,116,104,105,115,46,105,61,61,61,114,46,99,117,114,114,101,110,116,38,38,40,105,46,116,104,117,109,98,67,108,97,115,115,78,97,109,101,43,61,34,32,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,45,97,99,116,105,118,101,34,41,44,105,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,44,101,61,116,46,116,104,117,109,98,115,87,114,97,112,112,101,114,115,44,110,61,116,46,116,104,117,109,98,115,59,101,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,91,34,116,104,117,109,98,45,119,114,97,112,112,101,114,34,93,44,110,91,116,104,105,115,46,105,93,61,116,104,105,115,46,36,114,101,102,115,46,116,104,117,109,98,125,125,44,99,110,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,117,110,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,116,104,117,109,98,115,47,84,104,117,109,98,46,118,117,101,34,59,118,97,114,32,108,110,61,117,110,46,101,120,112,111,114,116,115,44,102,110,61,70,116,40,123,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,99,111,109,112,111,110,101,110,116,115,58,123,76,111,97,100,101,114,58,84,101,44,84,104,117,109,98,58,108,110,44,73,110,118,97,108,105,100,84,104,117,109,98,58,115,110,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,99,104,105,108,100,114,101,110,58,116,104,105,115,46,103,101,116,67,104,105,108,100,114,101,110,40,41,46,115,108,105,99,101,40,41,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,117,112,100,97,116,101,84,104,117,109,98,115,73,110,110,101,114,61,102,117,110,99,116,105,111,110,40,41,123,116,46,99,104,105,108,100,114,101,110,61,116,46,103,101,116,67,104,105,108,100,114,101,110,40,41,46,115,108,105,99,101,40,41,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,44,101,61,116,46,99,111,114,101,46,116,104,117,109,98,115,83,119,105,112,105,110,103,68,111,119,110,46,108,105,115,116,101,110,101,114,59,116,46,101,108,101,109,101,110,116,115,46,116,104,117,109,98,115,73,110,110,101,114,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,59,118,97,114,32,110,61,110,101,119,32,68,101,59,116,104,105,115,46,36,114,101,102,115,46,114,101,102,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,100,111,119,110,34,44,110,46,103,101,116,77,111,117,115,101,68,111,119,110,76,105,115,116,101,110,101,114,70,117,110,99,40,101,41,41,44,116,104,105,115,46,36,114,101,102,115,46,114,101,102,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,116,111,117,99,104,115,116,97,114,116,34,44,110,46,103,101,116,84,111,117,99,104,83,116,97,114,116,76,105,115,116,101,110,101,114,70,111,114,70,117,110,99,40,101,41,41,125,44,109,101,116,104,111,100,115,58,123,103,101,116,67,104,105,108,100,114,101,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,116,104,117,109,98,115,80,114,111,112,101,100,67,111,109,112,111,110,101,110,116,115,125,125,125,44,114,110,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,102,110,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,116,104,117,109,98,115,47,84,104,117,109,98,115,73,110,110,101,114,46,118,117,101,34,59,118,97,114,32,104,110,61,70,116,40,123,99,111,109,112,111,110,101,110,116,115,58,123,76,111,97,100,101,114,58,84,101,44,84,104,117,109,98,115,73,110,110,101,114,58,102,110,46,101,120,112,111,114,116,115,44,84,104,117,109,98,115,67,117,114,115,111,114,101,114,58,110,110,125,44,112,114,111,112,115,58,123,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,58,78,117,109,98,101,114,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,97,114,101,84,104,117,109,98,115,76,111,97,100,105,110,103,58,33,48,44,99,108,97,115,115,78,97,109,101,58,34,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,34,125,59,114,101,116,117,114,110,32,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,100,97,116,97,46,105,115,84,104,117,109,98,105,110,103,38,38,40,116,46,99,108,97,115,115,78,97,109,101,43,61,34,32,102,115,108,105,103,104,116,98,111,120,45,116,104,117,109,98,115,45,97,99,116,105,118,101,34,41,44,116,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,116,104,117,109,98,115,67,111,110,116,97,105,110,101,114,61,116,104,105,115,46,36,114,101,102,115,46,114,101,102,44,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,104,105,100,101,84,104,117,109,98,115,76,111,97,100,101,114,61,102,117,110,99,116,105,111,110,40,41,123,116,46,97,114,101,84,104,117,109,98,115,76,111,97,100,105,110,103,61,33,49,125,125,125,44,81,101,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,104,110,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,116,104,117,109,98,115,47,84,104,117,109,98,115,46,118,117,101,34,59,118,97,114,32,100,110,61,104,110,46,101,120,112,111,114,116,115,44,112,110,61,70,116,40,123,112,114,111,112,115,58,123,116,111,103,103,108,101,114,58,66,111,111,108,101,97,110,44,115,111,117,114,99,101,115,58,65,114,114,97,121,44,105,110,105,116,105,97,108,65,110,105,109,97,116,105,111,110,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,104,125,44,115,108,105,100,101,67,104,97,110,103,101,65,110,105,109,97,116,105,111,110,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,108,125,44,99,97,112,116,105,111,110,115,58,65,114,114,97,121,44,111,110,79,112,101,110,58,70,117,110,99,116,105,111,110,44,111,110,67,108,111,115,101,58,70,117,110,99,116,105,111,110,44,111,110,73,110,105,116,58,70,117,110,99,116,105,111,110,44,111,110,83,104,111,119,58,70,117,110,99,116,105,111,110,44,111,110,83,108,105,100,101,67,104,97,110,103,101,58,70,117,110,99,116,105,111,110,44,115,108,105,100,101,58,78,117,109,98,101,114,44,115,111,117,114,99,101,58,83,116,114,105,110,103,44,115,111,117,114,99,101,73,110,100,101,120,58,78,117,109,98,101,114,44,99,117,115,116,111,109,65,116,116,114,105,98,117,116,101,115,58,65,114,114,97,121,44,109,97,120,89,111,117,116,117,98,101,86,105,100,101,111,68,105,109,101,110,115,105,111,110,115,58,79,98,106,101,99,116,44,115,108,105,100,101,66,117,116,116,111,110,115,58,79,98,106,101,99,116,44,116,111,111,108,98,97,114,66,117,116,116,111,110,115,58,79,98,106,101,99,116,44,100,105,115,97,98,108,101,76,111,99,97,108,83,116,111,114,97,103,101,58,66,111,111,108,101,97,110,44,116,121,112,101,115,58,65,114,114,97,121,44,116,121,112,101,58,83,116,114,105,110,103,44,116,104,117,109,98,115,58,65,114,114,97,121,44,100,105,115,97,98,108,101,84,104,117,109,98,115,58,66,111,111,108,101,97,110,44,115,104,111,119,84,104,117,109,98,115,79,110,77,111,117,110,116,58,66,111,111,108,101,97,110,44,116,104,117,109,98,115,73,99,111,110,115,58,65,114,114,97,121,44,99,117,115,116,111,109,84,111,111,108,98,97,114,66,117,116,116,111,110,115,58,65,114,114,97,121,44,101,120,105,116,70,117,108,108,115,99,114,101,101,110,79,110,67,108,111,115,101,58,66,111,111,108,101,97,110,44,108,111,97,100,79,110,108,121,67,117,114,114,101,110,116,83,111,117,114,99,101,58,66,111,111,108,101,97,110,44,111,112,101,110,79,110,77,111,117,110,116,58,66,111,111,108,101,97,110,44,115,108,105,100,101,68,105,115,116,97,110,99,101,58,123,116,121,112,101,58,78,117,109,98,101,114,44,100,101,102,97,117,108,116,58,46,51,125,44,115,108,105,100,101,115,104,111,119,84,105,109,101,58,123,116,121,112,101,58,78,117,109,98,101,114,44,100,101,102,97,117,108,116,58,56,101,51,125,44,85,73,70,97,100,101,79,117,116,84,105,109,101,58,123,116,121,112,101,58,78,117,109,98,101,114,44,100,101,102,97,117,108,116,58,56,101,51,125,44,122,111,111,109,73,110,99,114,101,109,101,110,116,58,123,116,121,112,101,58,78,117,109,98,101,114,44,100,101,102,97,117,108,116,58,46,50,53,125,125,44,99,111,109,112,111,110,101,110,116,115,58,123,84,104,117,109,98,115,58,100,110,44,67,97,112,116,105,111,110,115,58,74,101,44,78,97,118,101,114,58,101,101,44,83,108,105,100,101,66,117,116,116,111,110,115,58,78,101,44,83,108,105,100,101,115,104,111,119,66,97,114,58,87,101,44,83,108,105,100,101,83,119,105,112,105,110,103,72,111,118,101,114,101,114,58,86,101,44,83,111,117,114,99,101,87,114,97,112,112,101,114,115,67,111,110,116,97,105,110,101,114,58,76,101,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,105,115,79,112,101,110,58,33,49,44,102,115,76,105,103,104,116,98,111,120,83,116,111,114,101,58,107,125,125,44,119,97,116,99,104,58,123,115,108,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,114,101,46,108,105,103,104,116,98,111,120,85,112,100,97,116,101,114,46,104,97,110,100,108,101,83,108,105,100,101,80,114,111,112,40,41,125,44,115,111,117,114,99,101,73,110,100,101,120,58,102,117,110,99,116,105,111,110,40,41,123,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,114,101,46,108,105,103,104,116,98,111,120,85,112,100,97,116,101,114,46,104,97,110,100,108,101,83,108,105,100,101,80,114,111,112,40,41,125,44,115,111,117,114,99,101,58,102,117,110,99,116,105,111,110,40,41,123,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,114,101,46,108,105,103,104,116,98,111,120,85,112,100,97,116,101,114,46,104,97,110,100,108,101,83,108,105,100,101,80,114,111,112,40,41,125,44,116,111,103,103,108,101,114,58,102,117,110,99,116,105,111,110,40,41,123,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,114,101,46,108,105,103,104,116,98,111,120,85,112,100,97,116,101,114,46,104,97,110,100,108,101,83,108,105,100,101,80,114,111,112,40,41,44,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,114,101,46,108,105,103,104,116,98,111,120,85,112,100,97,116,101,114,46,104,97,110,100,108,101,84,111,103,103,108,101,114,85,112,100,97,116,101,40,41,125,125,44,99,114,101,97,116,101,100,58,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,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,61,107,46,112,117,115,104,40,110,101,119,32,68,116,40,116,104,105,115,41,41,45,49,59,118,97,114,32,101,61,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,99,111,109,112,111,110,101,110,116,115,83,101,114,118,105,99,101,115,46,105,115,76,105,103,104,116,98,111,120,79,112,101,110,77,97,110,97,103,101,114,59,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,105,115,79,112,101,110,125,44,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,101,44,110,41,123,116,46,105,115,79,112,101,110,61,101,44,110,38,38,40,116,46,117,112,100,97,116,101,100,67,97,108,108,98,97,99,107,61,110,41,125,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,99,111,110,116,97,105,110,101,114,61,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,97,105,110,101,114,44,113,101,40,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,41,125,44,117,112,100,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,107,91,116,104,105,115,46,102,115,76,105,103,104,116,98,111,120,73,110,100,101,120,93,46,101,108,101,109,101,110,116,115,46,99,111,110,116,97,105,110,101,114,61,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,97,105,110,101,114,44,116,104,105,115,46,117,112,100,97,116,101,100,67,97,108,108,98,97,99,107,38,38,116,104,105,115,46,117,112,100,97,116,101,100,67,97,108,108,98,97,99,107,40,41,44,116,104,105,115,46,117,112,100,97,116,101,100,67,97,108,108,98,97,99,107,61,110,117,108,108,125,125,44,114,44,91,93,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,59,112,110,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,70,115,76,105,103,104,116,98,111,120,46,118,117,101,34,59,118,97,114,32,118,110,61,112,110,46,101,120,112,111,114,116,115,59,101,46,100,101,102,97,117,108,116,61,118,110,125,93,41,125,44,53,55,55,48,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,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,10,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,116,46,101,120,112,111,114,116,115,61,114,40,110,40,54,52,56,54,41,44,110,40,49,51,55,55,41,41,125,41,40,48,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,101,61,101,38,38,101,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,101,91,34,100,101,102,97,117,108,116,34,93,58,101,59,118,97,114,32,110,61,34,36,78,79,95,79,80,34,44,114,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,105,61,33,40,34,117,110,100,101,102,105,110,101,100,34,61,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,111,61,65,114,114,97,121,46,105,115,65,114,114,97,121,59,102,117,110,99,116,105,111,110,32,97,40,116,41,123,118,97,114,32,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,61,101,124,124,34,110,117,109,98,101,114,34,61,61,61,101,125,102,117,110,99,116,105,111,110,32,115,40,116,41,123,114,101,116,117,114,110,32,112,40,116,41,124,124,104,40,116,41,125,102,117,110,99,116,105,111,110,32,99,40,116,41,123,114,101,116,117,114,110,32,104,40,116,41,124,124,33,49,61,61,61,116,124,124,100,40,116,41,124,124,112,40,116,41,125,102,117,110,99,116,105,111,110,32,117,40,116,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,125,102,117,110,99,116,105,111,110,32,108,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,125,102,117,110,99,116,105,111,110,32,102,40,116,41,123,114,101,116,117,114,110,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,116,125,102,117,110,99,116,105,111,110,32,104,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,116,125,102,117,110,99,116,105,111,110,32,100,40,116,41,123,114,101,116,117,114,110,33,48,61,61,61,116,125,102,117,110,99,116,105,111,110,32,112,40,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,125,102,117,110,99,116,105,111,110,32,118,40,116,41,123,116,104,114,111,119,32,116,124,124,40,116,61,114,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,116,41,125,102,117,110,99,116,105,111,110,32,103,40,116,44,101,41,123,118,97,114,32,110,61,123,125,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,105,102,40,101,41,102,111,114,40,118,97,114,32,105,32,105,110,32,101,41,110,91,105,93,61,101,91,105,93,59,114,101,116,117,114,110,32,110,125,118,97,114,32,109,61,34,36,34,59,102,117,110,99,116,105,111,110,32,98,40,116,44,101,44,110,44,114,44,105,44,111,44,97,44,115,41,123,114,101,116,117,114,110,123,99,104,105,108,100,70,108,97,103,115,58,116,44,99,104,105,108,100,114,101,110,58,101,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,114,44,107,101,121,58,118,111,105,100,32,48,61,61,61,105,63,110,117,108,108,58,105,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,111,63,110,117,108,108,58,111,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,121,40,116,44,101,44,110,44,114,44,105,44,111,44,97,44,115,41,123,118,97,114,32,99,61,118,111,105,100,32,48,61,61,61,105,63,49,58,105,44,117,61,98,40,99,44,114,44,110,44,116,44,97,44,111,44,115,44,101,41,59,114,101,116,117,114,110,32,48,61,61,61,99,38,38,67,40,117,44,117,46,99,104,105,108,100,114,101,110,41,44,117,125,102,117,110,99,116,105,111,110,32,119,40,116,44,101,44,110,44,114,44,105,41,123,40,50,38,116,41,62,48,38,38,40,116,61,101,46,112,114,111,116,111,116,121,112,101,38,38,117,40,101,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,111,61,101,46,100,101,102,97,117,108,116,80,114,111,112,115,59,105,102,40,33,115,40,111,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,111,41,112,40,110,91,97,93,41,38,38,40,110,91,97,93,61,111,91,97,93,41,59,105,102,40,40,56,38,116,41,62,48,41,123,118,97,114,32,99,61,101,46,100,101,102,97,117,108,116,72,111,111,107,115,59,105,102,40,33,115,40,99,41,41,105,102,40,105,41,102,111,114,40,118,97,114,32,108,32,105,110,32,99,41,112,40,105,91,108,93,41,38,38,40,105,91,108,93,61,99,91,108,93,41,59,101,108,115,101,32,105,61,99,125,118,97,114,32,102,61,98,40,49,44,110,117,108,108,44,110,117,108,108,44,116,44,114,44,110,44,105,44,101,41,44,104,61,80,46,99,114,101,97,116,101,86,78,111,100,101,59,114,101,116,117,114,110,32,117,40,104,41,38,38,104,40,102,41,44,102,125,102,117,110,99,116,105,111,110,32,95,40,116,44,101,41,123,114,101,116,117,114,110,32,98,40,49,44,115,40,116,41,63,34,34,58,116,44,110,117,108,108,44,49,54,44,101,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,120,40,116,41,123,118,97,114,32,101,61,116,46,112,114,111,112,115,59,105,102,40,101,41,123,118,97,114,32,110,61,116,46,102,108,97,103,115,59,52,56,49,38,110,38,38,40,118,111,105,100,32,48,33,61,61,101,46,99,104,105,108,100,114,101,110,38,38,115,40,116,46,99,104,105,108,100,114,101,110,41,38,38,67,40,116,44,101,46,99,104,105,108,100,114,101,110,41,44,118,111,105,100,32,48,33,61,61,101,46,99,108,97,115,115,78,97,109,101,38,38,40,116,46,99,108,97,115,115,78,97,109,101,61,101,46,99,108,97,115,115,78,97,109,101,124,124,110,117,108,108,44,101,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,101,46,107,101,121,38,38,40,116,46,107,101,121,61,101,46,107,101,121,44,101,46,107,101,121,61,118,111,105,100,32,48,41,44,118,111,105,100,32,48,33,61,61,101,46,114,101,102,38,38,40,116,46,114,101,102,61,56,38,110,63,103,40,116,46,114,101,102,44,101,46,114,101,102,41,58,101,46,114,101,102,44,101,46,114,101,102,61,118,111,105,100,32,48,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,79,40,116,41,123,118,97,114,32,101,44,110,61,116,46,102,108,97,103,115,59,105,102,40,49,52,38,110,41,123,118,97,114,32,114,44,105,61,116,46,112,114,111,112,115,59,105,102,40,33,104,40,105,41,41,102,111,114,40,118,97,114,32,111,32,105,110,32,114,61,123,125,44,105,41,114,91,111,93,61,105,91,111,93,59,101,61,119,40,110,44,116,46,116,121,112,101,44,114,44,116,46,107,101,121,44,116,46,114,101,102,41,125,101,108,115,101,32,52,56,49,38,110,63,101,61,121,40,110,44,116,46,116,121,112,101,44,116,46,99,108,97,115,115,78,97,109,101,44,116,46,99,104,105,108,100,114,101,110,44,116,46,99,104,105,108,100,70,108,97,103,115,44,116,46,112,114,111,112,115,44,116,46,107,101,121,44,116,46,114,101,102,41,58,49,54,38,110,63,101,61,95,40,116,46,99,104,105,108,100,114,101,110,44,116,46,107,101,121,41,58,49,48,50,52,38,110,38,38,40,101,61,116,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,83,40,41,123,114,101,116,117,114,110,32,95,40,34,34,44,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,107,40,116,44,101,44,110,44,114,41,123,102,111,114,40,118,97,114,32,105,61,116,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,123,118,97,114,32,115,61,116,91,110,93,59,105,102,40,33,99,40,115,41,41,123,118,97,114,32,117,61,114,43,109,43,110,59,105,102,40,111,40,115,41,41,107,40,115,44,101,44,48,44,117,41,59,101,108,115,101,123,105,102,40,97,40,115,41,41,115,61,95,40,115,44,117,41,59,101,108,115,101,123,118,97,114,32,102,61,115,46,107,101,121,44,100,61,108,40,102,41,38,38,102,91,48,93,61,61,61,109,59,104,40,115,46,100,111,109,41,38,38,33,100,124,124,40,115,61,79,40,115,41,41,44,104,40,102,41,124,124,100,63,115,46,107,101,121,61,117,58,115,46,107,101,121,61,114,43,102,125,101,46,112,117,115,104,40,115,41,125,125,125,125,102,117,110,99,116,105,111,110,32,67,40,116,44,101,41,123,118,97,114,32,110,44,114,61,49,59,105,102,40,99,40,101,41,41,110,61,101,59,101,108,115,101,32,105,102,40,108,40,101,41,41,114,61,50,44,110,61,95,40,101,41,59,101,108,115,101,32,105,102,40,102,40,101,41,41,114,61,50,44,110,61,95,40,101,43,34,34,41,59,101,108,115,101,32,105,102,40,111,40,101,41,41,123,118,97,114,32,105,61,101,46,108,101,110,103,116,104,59,105,102,40,48,61,61,61,105,41,110,61,110,117,108,108,44,114,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,101,41,124,124,33,48,61,61,61,101,91,34,36,34,93,41,38,38,40,101,61,101,46,115,108,105,99,101,40,41,41,44,114,61,56,59,102,111,114,40,118,97,114,32,115,61,48,59,115,60,105,59,115,43,43,41,123,118,97,114,32,117,61,101,91,115,93,59,105,102,40,99,40,117,41,124,124,111,40,117,41,41,123,110,61,110,124,124,101,46,115,108,105,99,101,40,48,44,115,41,44,107,40,101,44,110,44,115,44,34,34,41,59,98,114,101,97,107,125,105,102,40,97,40,117,41,41,110,61,110,124,124,101,46,115,108,105,99,101,40,48,44,115,41,44,110,46,112,117,115,104,40,95,40,117,44,109,43,115,41,41,59,101,108,115,101,123,118,97,114,32,100,61,117,46,107,101,121,44,112,61,104,40,117,46,100,111,109,41,44,118,61,104,40,100,41,44,103,61,33,118,38,38,100,91,48,93,61,61,61,109,59,33,112,124,124,118,124,124,103,63,40,110,61,110,124,124,101,46,115,108,105,99,101,40,48,44,115,41,44,112,38,38,33,103,124,124,40,117,61,79,40,117,41,41,44,40,118,124,124,103,41,38,38,40,117,46,107,101,121,61,109,43,115,41,44,110,46,112,117,115,104,40,117,41,41,58,110,38,38,110,46,112,117,115,104,40,117,41,125,125,110,61,110,124,124,101,44,110,46,36,61,33,48,125,125,101,108,115,101,32,110,61,101,44,104,40,101,46,100,111,109,41,124,124,40,110,61,79,40,101,41,41,44,114,61,50,59,114,101,116,117,114,110,32,116,46,99,104,105,108,100,114,101,110,61,110,44,116,46,99,104,105,108,100,70,108,97,103,115,61,114,44,116,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,84,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,106,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,69,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,68,61,123,34,120,108,105,110,107,58,97,99,116,117,97,116,101,34,58,84,44,34,120,108,105,110,107,58,97,114,99,114,111,108,101,34,58,84,44,34,120,108,105,110,107,58,104,114,101,102,34,58,84,44,34,120,108,105,110,107,58,114,111,108,101,34,58,84,44,34,120,108,105,110,107,58,115,104,111,119,34,58,84,44,34,120,108,105,110,107,58,116,105,116,108,101,34,58,84,44,34,120,108,105,110,107,58,116,121,112,101,34,58,84,44,34,120,109,108,58,98,97,115,101,34,58,106,44,34,120,109,108,58,108,97,110,103,34,58,106,44,34,120,109,108,58,115,112,97,99,101,34,58,106,125,44,65,61,123,125,44,76,61,91,93,59,102,117,110,99,116,105,111,110,32,73,40,116,44,101,41,123,116,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,125,102,117,110,99,116,105,111,110,32,77,40,116,44,101,44,110,41,123,115,40,110,41,63,73,40,116,44,101,41,58,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,110,41,125,102,117,110,99,116,105,111,110,32,36,40,116,44,101,41,123,114,101,116,117,114,110,33,48,61,61,61,101,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,69,44,116,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,116,41,125,102,117,110,99,116,105,111,110,32,70,40,116,44,101,44,110,41,123,116,46,114,101,112,108,97,99,101,67,104,105,108,100,40,101,44,110,41,125,102,117,110,99,116,105,111,110,32,82,40,116,44,101,41,123,116,46,114,101,109,111,118,101,67,104,105,108,100,40,101,41,125,102,117,110,99,116,105,111,110,32,78,40,116,41,123,118,97,114,32,101,59,119,104,105,108,101,40,118,111,105,100,32,48,33,61,61,40,101,61,116,46,115,104,105,102,116,40,41,41,41,101,40,41,125,118,97,114,32,66,61,123,125,44,122,61,123,125,59,102,117,110,99,116,105,111,110,32,86,40,116,44,101,44,110,41,123,118,97,114,32,114,61,66,91,116,93,44,105,61,110,46,36,69,86,59,101,63,40,114,124,124,40,122,91,116,93,61,71,40,116,41,44,66,91,116,93,61,48,41,44,105,124,124,40,105,61,110,46,36,69,86,61,123,125,41,44,105,91,116,93,124,124,66,91,116,93,43,43,44,105,91,116,93,61,101,41,58,105,38,38,105,91,116,93,38,38,40,66,91,116,93,45,45,44,49,61,61,61,114,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,85,40,116,41,44,122,91,116,93,41,44,122,91,116,93,61,110,117,108,108,41,44,105,91,116,93,61,101,41,125,102,117,110,99,116,105,111,110,32,72,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,101,59,119,104,105,108,101,40,33,104,40,111,41,41,123,105,102,40,110,38,38,111,46,100,105,115,97,98,108,101,100,41,114,101,116,117,114,110,59,118,97,114,32,97,61,111,46,36,69,86,59,105,102,40,97,41,123,118,97,114,32,115,61,97,91,114,93,59,105,102,40,115,38,38,40,105,46,100,111,109,61,111,44,115,46,101,118,101,110,116,63,115,46,101,118,101,110,116,40,115,46,100,97,116,97,44,116,41,58,115,40,116,41,44,116,46,99,97,110,99,101,108,66,117,98,98,108,101,41,41,114,101,116,117,114,110,125,111,61,111,46,112,97,114,101,110,116,78,111,100,101,125,125,102,117,110,99,116,105,111,110,32,85,40,116,41,123,114,101,116,117,114,110,32,116,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,87,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,71,40,116,41,123,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,101,46,116,121,112,101,44,114,61,34,99,108,105,99,107,34,61,61,61,110,124,124,34,100,98,108,99,108,105,99,107,34,61,61,61,110,59,105,102,40,114,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,87,59,118,97,114,32,105,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,105,46,100,111,109,125,125,41,44,72,40,101,44,101,46,116,97,114,103,101,116,44,114,44,116,44,105,41,125,59,114,101,116,117,114,110,32,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,85,40,116,41,44,101,41,44,101,125,102,117,110,99,116,105,111,110,32,113,40,116,44,101,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,101,44,110,46,105,110,110,101,114,72,84,77,76,61,61,61,116,46,105,110,110,101,114,72,84,77,76,125,102,117,110,99,116,105,111,110,32,89,40,116,44,101,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,101,38,38,101,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,101,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,113,40,116,44,101,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,125,102,117,110,99,116,105,111,110,32,75,40,116,44,101,44,110,41,123,105,102,40,116,91,101,93,41,123,118,97,114,32,114,61,116,91,101,93,59,114,46,101,118,101,110,116,63,114,46,101,118,101,110,116,40,114,46,100,97,116,97,44,110,41,58,114,40,110,41,125,101,108,115,101,123,118,97,114,32,105,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,116,91,105,93,38,38,116,91,105,93,40,110,41,125,125,102,117,110,99,116,105,111,110,32,88,40,116,44,101,41,123,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,114,61,116,104,105,115,46,36,86,59,105,102,40,114,41,123,118,97,114,32,105,61,114,46,112,114,111,112,115,124,124,65,44,111,61,114,46,100,111,109,59,105,102,40,108,40,116,41,41,75,40,105,44,116,44,110,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,97,61,48,59,97,60,116,46,108,101,110,103,116,104,59,97,43,43,41,75,40,105,44,116,91,97,93,44,110,41,59,105,102,40,117,40,101,41,41,123,118,97,114,32,115,61,116,104,105,115,46,36,86,44,99,61,115,46,112,114,111,112,115,124,124,65,59,101,40,99,44,111,44,33,49,44,115,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,110,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,110,125,102,117,110,99,116,105,111,110,32,90,40,116,41,123,114,101,116,117,114,110,34,99,104,101,99,107,98,111,120,34,61,61,61,116,124,124,34,114,97,100,105,111,34,61,61,61,116,125,118,97,114,32,74,61,88,40,34,111,110,73,110,112,117,116,34,44,110,116,41,44,81,61,88,40,91,34,111,110,67,108,105,99,107,34,44,34,111,110,67,104,97,110,103,101,34,93,44,110,116,41,59,102,117,110,99,116,105,111,110,32,116,116,40,116,41,123,116,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,101,116,40,116,44,101,41,123,90,40,101,46,116,121,112,101,41,63,40,116,46,111,110,99,104,97,110,103,101,61,81,44,116,46,111,110,99,108,105,99,107,61,116,116,41,58,116,46,111,110,105,110,112,117,116,61,74,125,102,117,110,99,116,105,111,110,32,110,116,40,116,44,101,41,123,118,97,114,32,110,61,116,46,116,121,112,101,44,114,61,116,46,118,97,108,117,101,44,105,61,116,46,99,104,101,99,107,101,100,44,111,61,116,46,109,117,108,116,105,112,108,101,44,97,61,116,46,100,101,102,97,117,108,116,86,97,108,117,101,44,99,61,33,115,40,114,41,59,110,38,38,110,33,61,61,101,46,116,121,112,101,38,38,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,110,41,44,115,40,111,41,124,124,111,61,61,61,101,46,109,117,108,116,105,112,108,101,124,124,40,101,46,109,117,108,116,105,112,108,101,61,111,41,44,115,40,97,41,124,124,99,124,124,40,101,46,100,101,102,97,117,108,116,86,97,108,117,101,61,97,43,34,34,41,44,90,40,110,41,63,40,99,38,38,40,101,46,118,97,108,117,101,61,114,41,44,115,40,105,41,124,124,40,101,46,99,104,101,99,107,101,100,61,105,41,41,58,99,38,38,101,46,118,97,108,117,101,33,61,61,114,63,40,101,46,100,101,102,97,117,108,116,86,97,108,117,101,61,114,44,101,46,118,97,108,117,101,61,114,41,58,115,40,105,41,124,124,40,101,46,99,104,101,99,107,101,100,61,105,41,125,102,117,110,99,116,105,111,110,32,114,116,40,116,44,101,41,123,118,97,114,32,110,61,116,46,116,121,112,101,59,105,102,40,34,111,112,116,103,114,111,117,112,34,61,61,61,110,41,123,118,97,114,32,114,61,116,46,99,104,105,108,100,114,101,110,44,105,61,116,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,49,50,38,105,41,102,111,114,40,118,97,114,32,111,61,48,44,97,61,114,46,108,101,110,103,116,104,59,111,60,97,59,111,43,43,41,105,116,40,114,91,111,93,44,101,41,59,101,108,115,101,32,50,61,61,61,105,38,38,105,116,40,114,44,101,41,125,101,108,115,101,32,105,116,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,105,116,40,116,44,101,41,123,118,97,114,32,110,61,116,46,112,114,111,112,115,124,124,65,44,114,61,116,46,100,111,109,59,114,46,118,97,108,117,101,61,110,46,118,97,108,117,101,44,111,40,101,41,38,38,45,49,33,61,61,101,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,101,63,114,46,115,101,108,101,99,116,101,100,61,33,48,58,115,40,101,41,38,38,115,40,110,46,115,101,108,101,99,116,101,100,41,124,124,40,114,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,116,116,46,119,114,97,112,112,101,100,61,33,48,59,118,97,114,32,111,116,61,88,40,34,111,110,67,104,97,110,103,101,34,44,115,116,41,59,102,117,110,99,116,105,111,110,32,97,116,40,116,41,123,116,46,111,110,99,104,97,110,103,101,61,111,116,125,102,117,110,99,116,105,111,110,32,115,116,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,66,111,111,108,101,97,110,40,116,46,109,117,108,116,105,112,108,101,41,59,115,40,116,46,109,117,108,116,105,112,108,101,41,124,124,105,61,61,61,101,46,109,117,108,116,105,112,108,101,124,124,40,101,46,109,117,108,116,105,112,108,101,61,105,41,59,118,97,114,32,111,61,114,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,48,61,61,61,40,49,38,111,41,41,123,118,97,114,32,97,61,114,46,99,104,105,108,100,114,101,110,44,99,61,116,46,118,97,108,117,101,59,105,102,40,110,38,38,115,40,99,41,38,38,40,99,61,116,46,100,101,102,97,117,108,116,86,97,108,117,101,41,44,49,50,38,111,41,102,111,114,40,118,97,114,32,117,61,48,44,108,61,97,46,108,101,110,103,116,104,59,117,60,108,59,117,43,43,41,114,116,40,97,91,117,93,44,99,41,59,101,108,115,101,32,50,61,61,61,111,38,38,114,116,40,97,44,99,41,125,125,118,97,114,32,99,116,61,88,40,34,111,110,73,110,112,117,116,34,44,102,116,41,44,117,116,61,88,40,34,111,110,67,104,97,110,103,101,34,41,59,102,117,110,99,116,105,111,110,32,108,116,40,116,44,101,41,123,116,46,111,110,105,110,112,117,116,61,99,116,44,101,46,111,110,67,104,97,110,103,101,38,38,40,116,46,111,110,99,104,97,110,103,101,61,117,116,41,125,102,117,110,99,116,105,111,110,32,102,116,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,118,97,108,117,101,44,105,61,101,46,118,97,108,117,101,59,105,102,40,115,40,114,41,41,123,105,102,40,110,41,123,118,97,114,32,111,61,116,46,100,101,102,97,117,108,116,86,97,108,117,101,59,115,40,111,41,124,124,111,61,61,61,105,124,124,40,101,46,100,101,102,97,117,108,116,86,97,108,117,101,61,111,44,101,46,118,97,108,117,101,61,111,41,125,125,101,108,115,101,32,105,33,61,61,114,38,38,40,101,46,100,101,102,97,117,108,116,86,97,108,117,101,61,114,44,101,46,118,97,108,117,101,61,114,41,125,102,117,110,99,116,105,111,110,32,104,116,40,116,44,101,44,110,44,114,44,105,44,111,41,123,54,52,38,116,63,110,116,40,114,44,110,41,58,50,53,54,38,116,63,115,116,40,114,44,110,44,105,44,101,41,58,49,50,56,38,116,38,38,102,116,40,114,44,110,44,105,41,44,111,38,38,40,110,46,36,86,61,101,41,125,102,117,110,99,116,105,111,110,32,100,116,40,116,44,101,44,110,41,123,54,52,38,116,63,101,116,40,101,44,110,41,58,50,53,54,38,116,63,97,116,40,101,41,58,49,50,56,38,116,38,38,108,116,40,101,44,110,41,125,102,117,110,99,116,105,111,110,32,112,116,40,116,41,123,114,101,116,117,114,110,32,116,46,116,121,112,101,38,38,90,40,116,46,116,121,112,101,41,63,33,115,40,116,46,99,104,101,99,107,101,100,41,58,33,115,40,116,46,118,97,108,117,101,41,125,102,117,110,99,116,105,111,110,32,118,116,40,116,44,101,41,123,103,116,40,116,41,44,101,38,38,116,46,100,111,109,38,38,40,82,40,101,44,116,46,100,111,109,41,44,116,46,100,111,109,61,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,103,116,40,116,41,123,118,97,114,32,101,61,116,46,102,108,97,103,115,59,105,102,40,52,56,49,38,101,41,123,118,97,114,32,110,61,116,46,114,101,102,44,114,61,116,46,112,114,111,112,115,59,117,40,110,41,38,38,110,40,110,117,108,108,41,59,118,97,114,32,105,61,116,46,99,104,105,108,100,114,101,110,44,111,61,116,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,49,50,38,111,63,109,116,40,105,41,58,50,61,61,61,111,38,38,103,116,40,105,41,44,33,104,40,114,41,41,102,111,114,40,118,97,114,32,97,32,105,110,32,114,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,86,40,97,44,110,117,108,108,44,116,46,100,111,109,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,98,114,101,97,107,125,125,101,108,115,101,123,118,97,114,32,99,61,116,46,99,104,105,108,100,114,101,110,59,105,102,40,99,41,105,102,40,49,52,38,101,41,123,118,97,114,32,108,61,116,46,114,101,102,59,52,38,101,63,40,117,40,99,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,41,38,38,99,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,40,41,44,117,40,108,41,38,38,108,40,110,117,108,108,41,44,99,46,36,85,78,61,33,48,44,99,46,36,76,73,38,38,103,116,40,99,46,36,76,73,41,41,58,40,33,115,40,108,41,38,38,117,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,116,46,100,111,109,44,116,46,112,114,111,112,115,124,124,65,41,44,103,116,40,99,41,41,125,101,108,115,101,32,49,48,50,52,38,101,38,38,118,116,40,99,44,116,46,116,121,112,101,41,125,125,102,117,110,99,116,105,111,110,32,109,116,40,116,41,123,102,111,114,40,118,97,114,32,101,61,48,44,110,61,116,46,108,101,110,103,116,104,59,101,60,110,59,101,43,43,41,103,116,40,116,91,101,93,41,125,102,117,110,99,116,105,111,110,32,98,116,40,116,44,101,41,123,109,116,40,101,41,44,116,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,121,116,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,116,40,101,46,100,97,116,97,44,110,41,125,125,102,117,110,99,116,105,111,110,32,119,116,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,117,40,110,41,124,124,115,40,110,41,41,123,118,97,114,32,111,61,114,91,105,93,59,111,38,38,111,46,119,114,97,112,112,101,100,124,124,40,114,91,105,93,61,110,41,125,101,108,115,101,123,118,97,114,32,97,61,110,46,101,118,101,110,116,59,97,38,38,117,40,97,41,38,38,40,114,91,105,93,61,121,116,40,97,44,110,41,41,125,125,102,117,110,99,116,105,111,110,32,95,116,40,116,44,101,41,123,115,119,105,116,99,104,40,116,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,101,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,101,43,34,112,120,34,125,125,102,117,110,99,116,105,111,110,32,120,116,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,111,61,110,46,115,116,121,108,101,59,105,102,40,108,40,101,41,41,111,46,99,115,115,84,101,120,116,61,101,59,101,108,115,101,32,105,102,40,115,40,116,41,124,124,108,40,116,41,41,102,111,114,40,114,32,105,110,32,101,41,105,61,101,91,114,93,44,111,91,114,93,61,102,40,105,41,63,95,116,40,114,44,105,41,58,105,59,101,108,115,101,123,102,111,114,40,114,32,105,110,32,101,41,105,61,101,91,114,93,44,105,33,61,61,116,91,114,93,38,38,40,111,91,114,93,61,102,40,105,41,63,95,116,40,114,44,105,41,58,105,41,59,102,111,114,40,114,32,105,110,32,116,41,115,40,101,91,114,93,41,38,38,40,111,91,114,93,61,34,34,41,125,125,102,117,110,99,116,105,111,110,32,79,116,40,116,44,101,44,110,44,114,44,105,44,111,44,97,41,123,115,119,105,116,99,104,40,116,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,86,40,116,44,110,44,114,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,114,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,114,91,116,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,111,38,38,34,118,97,108,117,101,34,61,61,61,116,41,114,101,116,117,114,110,59,118,97,114,32,99,61,115,40,110,41,63,34,34,58,110,59,114,91,116,93,33,61,61,99,38,38,40,114,91,116,93,61,99,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,117,61,101,38,38,101,46,95,95,104,116,109,108,124,124,34,34,44,108,61,110,38,38,110,46,95,95,104,116,109,108,124,124,34,34,59,117,33,61,61,108,38,38,40,115,40,108,41,124,124,113,40,114,44,108,41,124,124,40,104,40,97,41,124,124,40,49,50,38,97,46,99,104,105,108,100,70,108,97,103,115,63,109,116,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,103,116,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,114,46,105,110,110,101,114,72,84,77,76,61,108,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,34,111,34,61,61,61,116,91,48,93,38,38,34,110,34,61,61,61,116,91,49,93,63,119,116,40,116,44,101,44,110,44,114,41,58,115,40,110,41,63,114,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,58,34,115,116,121,108,101,34,61,61,61,116,63,120,116,40,101,44,110,44,114,41,58,105,38,38,68,91,116,93,63,114,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,68,91,116,93,44,116,44,110,41,58,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,41,59,98,114,101,97,107,125,125,102,117,110,99,116,105,111,110,32,83,116,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,33,49,44,97,61,40,52,52,56,38,101,41,62,48,59,102,111,114,40,118,97,114,32,115,32,105,110,32,97,38,38,40,111,61,112,116,40,110,41,44,111,38,38,100,116,40,101,44,114,44,110,41,41,44,110,41,79,116,40,115,44,110,117,108,108,44,110,91,115,93,44,114,44,105,44,111,44,110,117,108,108,41,59,97,38,38,104,116,40,101,44,116,44,114,44,110,44,33,48,44,111,41,125,102,117,110,99,116,105,111,110,32,107,116,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,110,101,119,32,101,40,110,44,114,41,59,105,102,40,116,46,99,104,105,108,100,114,101,110,61,105,44,105,46,36,86,61,116,44,105,46,36,66,83,61,33,49,44,105,46,99,111,110,116,101,120,116,61,114,44,105,46,112,114,111,112,115,61,61,61,65,38,38,40,105,46,112,114,111,112,115,61,110,41,44,105,46,36,85,78,61,33,49,44,117,40,105,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,105,46,36,66,82,61,33,48,44,105,46,99,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,40,41,44,105,46,36,80,83,83,41,123,118,97,114,32,111,61,105,46,115,116,97,116,101,44,97,61,105,46,36,80,83,59,105,102,40,104,40,111,41,41,105,46,115,116,97,116,101,61,97,59,101,108,115,101,32,102,111,114,40,118,97,114,32,99,32,105,110,32,97,41,111,91,99,93,61,97,91,99,93,59,105,46,36,80,83,83,61,33,49,44,105,46,36,80,83,61,110,117,108,108,125,105,46,36,66,82,61,33,49,125,117,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,105,41,59,118,97,114,32,108,44,102,61,67,116,40,105,46,114,101,110,100,101,114,40,110,44,105,46,115,116,97,116,101,44,114,41,44,116,41,59,114,101,116,117,114,110,32,117,40,105,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,41,38,38,40,108,61,105,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,40,41,41,44,115,40,108,41,63,105,46,36,67,88,61,114,58,105,46,36,67,88,61,103,40,114,44,108,41,44,117,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,105,41,44,105,46,36,76,73,61,102,44,105,125,102,117,110,99,116,105,111,110,32,67,116,40,116,44,101,41,123,114,101,116,117,114,110,32,99,40,116,41,63,116,61,83,40,41,58,97,40,116,41,63,116,61,95,40,116,44,110,117,108,108,41,58,40,116,46,100,111,109,38,38,40,116,61,79,40,116,41,41,44,49,52,38,116,46,102,108,97,103,115,38,38,40,116,46,112,97,114,101,110,116,86,78,111,100,101,61,101,41,41,44,116,125,102,117,110,99,116,105,111,110,32,80,116,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,46,102,108,97,103,115,59,114,101,116,117,114,110,32,52,56,49,38,105,63,106,116,40,116,44,101,44,110,44,114,41,58,49,52,38,105,63,68,116,40,116,44,101,44,110,44,114,44,40,52,38,105,41,62,48,41,58,53,49,50,38,105,124,124,49,54,38,105,63,84,116,40,116,44,101,41,58,49,48,50,52,38,105,63,40,80,116,40,116,46,99,104,105,108,100,114,101,110,44,116,46,116,121,112,101,44,110,44,33,49,41,44,116,46,100,111,109,61,84,116,40,83,40,41,44,101,41,41,58,118,111,105,100,32,48,125,102,117,110,99,116,105,111,110,32,84,116,40,116,44,101,41,123,118,97,114,32,110,61,116,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,116,46,99,104,105,108,100,114,101,110,41,59,114,101,116,117,114,110,32,104,40,101,41,124,124,73,40,101,44,110,41,44,110,125,102,117,110,99,116,105,111,110,32,106,116,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,46,102,108,97,103,115,44,111,61,116,46,99,104,105,108,100,114,101,110,44,97,61,116,46,112,114,111,112,115,44,99,61,116,46,99,108,97,115,115,78,97,109,101,44,108,61,116,46,114,101,102,44,102,61,116,46,99,104,105,108,100,70,108,97,103,115,59,114,61,114,124,124,40,51,50,38,105,41,62,48,59,118,97,114,32,100,61,36,40,116,46,116,121,112,101,44,114,41,59,105,102,40,116,46,100,111,109,61,100,44,115,40,99,41,124,124,34,34,61,61,61,99,124,124,40,114,63,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,99,41,58,100,46,99,108,97,115,115,78,97,109,101,61,99,41,44,104,40,101,41,124,124,73,40,101,44,100,41,44,48,61,61,61,40,49,38,102,41,41,123,118,97,114,32,112,61,33,48,61,61,61,114,38,38,34,102,111,114,101,105,103,110,79,98,106,101,99,116,34,33,61,61,116,46,116,121,112,101,59,50,61,61,61,102,63,80,116,40,111,44,100,44,110,44,112,41,58,49,50,38,102,38,38,69,116,40,111,44,100,44,110,44,112,41,125,114,101,116,117,114,110,32,104,40,97,41,124,124,83,116,40,116,44,105,44,97,44,100,44,114,41,44,117,40,108,41,38,38,36,116,40,100,44,108,41,44,100,125,102,117,110,99,116,105,111,110,32,69,116,40,116,44,101,44,110,44,114,41,123,102,111,114,40,118,97,114,32,105,61,48,44,111,61,116,46,108,101,110,103,116,104,59,105,60,111,59,105,43,43,41,123,118,97,114,32,97,61,116,91,105,93,59,104,40,97,46,100,111,109,41,124,124,40,116,91,105,93,61,97,61,79,40,97,41,41,44,80,116,40,97,44,101,44,110,44,114,41,125,125,102,117,110,99,116,105,111,110,32,68,116,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,61,116,46,116,121,112,101,44,115,61,116,46,112,114,111,112,115,124,124,65,44,99,61,116,46,114,101,102,59,105,102,40,105,41,123,118,97,114,32,117,61,107,116,40,116,44,97,44,115,44,110,41,59,116,46,100,111,109,61,111,61,80,116,40,117,46,36,76,73,44,110,117,108,108,44,117,46,36,67,88,44,114,41,44,76,116,40,116,44,99,44,117,41,44,117,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,108,61,67,116,40,97,40,115,44,110,41,44,116,41,59,116,46,99,104,105,108,100,114,101,110,61,108,44,116,46,100,111,109,61,111,61,80,116,40,108,44,110,117,108,108,44,110,44,114,41,44,77,116,40,115,44,99,44,111,41,125,114,101,116,117,114,110,32,104,40,101,41,124,124,73,40,101,44,111,41,44,111,125,102,117,110,99,116,105,111,110,32,65,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,46,99,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,40,41,125,125,102,117,110,99,116,105,111,110,32,76,116,40,116,44,101,44,110,41,123,117,40,101,41,38,38,101,40,110,41,44,117,40,110,46,99,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,41,38,38,76,46,112,117,115,104,40,65,116,40,110,41,41,125,102,117,110,99,116,105,111,110,32,73,116,40,116,44,101,44,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,116,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,40,101,44,110,41,125,125,102,117,110,99,116,105,111,110,32,77,116,40,116,44,101,44,110,41,123,115,40,101,41,124,124,40,117,40,101,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,41,38,38,101,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,40,116,41,44,117,40,101,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,41,38,38,76,46,112,117,115,104,40,73,116,40,101,44,110,44,116,41,41,41,125,102,117,110,99,116,105,111,110,32,36,116,40,116,44,101,41,123,76,46,112,117,115,104,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,41,125,102,117,110,99,116,105,111,110,32,70,116,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,116,46,116,121,112,101,44,97,61,116,46,114,101,102,44,115,61,116,46,112,114,111,112,115,124,124,65,59,105,102,40,105,41,123,118,97,114,32,99,61,107,116,40,116,44,111,44,115,44,110,41,44,117,61,99,46,36,76,73,59,66,116,40,117,44,101,44,99,46,36,67,88,44,114,41,44,116,46,100,111,109,61,117,46,100,111,109,44,76,116,40,116,44,97,44,99,41,44,99,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,108,61,67,116,40,111,40,115,44,110,41,44,116,41,59,66,116,40,108,44,101,44,110,44,114,41,44,116,46,99,104,105,108,100,114,101,110,61,108,44,116,46,100,111,109,61,108,46,100,111,109,44,77,116,40,115,44,97,44,101,41,125,125,102,117,110,99,116,105,111,110,32,82,116,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,46,99,104,105,108,100,114,101,110,44,111,61,116,46,112,114,111,112,115,44,97,61,116,46,99,108,97,115,115,78,97,109,101,44,99,61,116,46,102,108,97,103,115,44,108,61,116,46,114,101,102,59,105,102,40,114,61,114,124,124,40,51,50,38,99,41,62,48,44,49,33,61,61,101,46,110,111,100,101,84,121,112,101,124,124,101,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,116,46,116,121,112,101,41,123,118,97,114,32,102,61,106,116,40,116,44,110,117,108,108,44,110,44,114,41,59,116,46,100,111,109,61,102,44,70,40,101,46,112,97,114,101,110,116,78,111,100,101,44,102,44,101,41,125,101,108,115,101,123,116,46,100,111,109,61,101,59,118,97,114,32,100,61,101,46,102,105,114,115,116,67,104,105,108,100,44,112,61,116,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,48,61,61,61,40,49,38,112,41,41,123,118,97,114,32,118,61,110,117,108,108,59,119,104,105,108,101,40,100,41,118,61,100,46,110,101,120,116,83,105,98,108,105,110,103,44,56,61,61,61,100,46,110,111,100,101,84,121,112,101,38,38,40,34,33,34,61,61,61,100,46,100,97,116,97,63,101,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,100,41,58,101,46,114,101,109,111,118,101,67,104,105,108,100,40,100,41,41,44,100,61,118,59,105,102,40,100,61,101,46,102,105,114,115,116,67,104,105,108,100,44,50,61,61,61,112,41,104,40,100,41,63,80,116,40,105,44,101,44,110,44,114,41,58,40,118,61,100,46,110,101,120,116,83,105,98,108,105,110,103,44,66,116,40,105,44,100,44,110,44,114,41,44,100,61,118,41,59,101,108,115,101,32,105,102,40,49,50,38,112,41,102,111,114,40,118,97,114,32,103,61,48,44,109,61,105,46,108,101,110,103,116,104,59,103,60,109,59,103,43,43,41,123,118,97,114,32,98,61,105,91,103,93,59,104,40,100,41,63,80,116,40,98,44,101,44,110,44,114,41,58,40,118,61,100,46,110,101,120,116,83,105,98,108,105,110,103,44,66,116,40,98,44,100,44,110,44,114,41,44,100,61,118,41,125,119,104,105,108,101,40,100,41,118,61,100,46,110,101,120,116,83,105,98,108,105,110,103,44,101,46,114,101,109,111,118,101,67,104,105,108,100,40,100,41,44,100,61,118,125,101,108,115,101,32,104,40,101,46,102,105,114,115,116,67,104,105,108,100,41,124,124,89,40,101,44,111,41,124,124,40,101,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,44,52,52,56,38,99,38,38,40,101,46,100,101,102,97,117,108,116,86,97,108,117,101,61,34,34,41,41,59,104,40,111,41,124,124,83,116,40,116,44,99,44,111,44,101,44,114,41,44,115,40,97,41,63,34,34,33,61,61,101,46,99,108,97,115,115,78,97,109,101,38,38,101,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,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,97,41,58,101,46,99,108,97,115,115,78,97,109,101,61,97,44,117,40,108,41,38,38,36,116,40,101,44,108,41,125,125,102,117,110,99,116,105,111,110,32,78,116,40,116,44,101,41,123,105,102,40,51,33,61,61,101,46,110,111,100,101,84,121,112,101,41,123,118,97,114,32,110,61,84,116,40,116,44,110,117,108,108,41,59,116,46,100,111,109,61,110,44,70,40,101,46,112,97,114,101,110,116,78,111,100,101,44,110,44,101,41,125,101,108,115,101,123,118,97,114,32,114,61,116,46,99,104,105,108,100,114,101,110,59,101,46,110,111,100,101,86,97,108,117,101,33,61,61,114,38,38,40,101,46,110,111,100,101,86,97,108,117,101,61,114,41,44,116,46,100,111,109,61,101,125,125,102,117,110,99,116,105,111,110,32,66,116,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,46,102,108,97,103,115,59,49,52,38,105,63,70,116,40,116,44,101,44,110,44,114,44,40,52,38,105,41,62,48,41,58,52,56,49,38,105,63,82,116,40,116,44,101,44,110,44,114,41,58,49,54,38,105,63,78,116,40,116,44,101,41,58,53,49,50,38,105,63,116,46,100,111,109,61,101,58,118,40,41,125,102,117,110,99,116,105,111,110,32,122,116,40,116,44,101,44,110,41,123,118,97,114,32,114,61,101,46,102,105,114,115,116,67,104,105,108,100,59,105,102,40,33,104,40,114,41,41,123,99,40,116,41,124,124,66,116,40,116,44,114,44,65,44,33,49,41,44,114,61,101,46,102,105,114,115,116,67,104,105,108,100,59,119,104,105,108,101,40,114,61,114,46,110,101,120,116,83,105,98,108,105,110,103,41,101,46,114,101,109,111,118,101,67,104,105,108,100,40,114,41,125,76,46,108,101,110,103,116,104,62,48,38,38,78,40,76,41,44,101,46,36,86,61,116,44,117,40,110,41,38,38,110,40,41,125,102,117,110,99,116,105,111,110,32,86,116,40,116,44,101,44,110,44,114,44,105,41,123,103,116,40,116,41,44,70,40,110,44,80,116,40,101,44,110,117,108,108,44,114,44,105,41,44,116,46,100,111,109,41,125,102,117,110,99,116,105,111,110,32,72,116,40,116,44,101,44,110,44,114,44,105,41,123,105,102,40,116,33,61,61,101,41,123,118,97,114,32,111,61,48,124,101,46,102,108,97,103,115,59,116,46,102,108,97,103,115,33,61,61,111,124,124,50,48,52,56,38,111,63,86,116,40,116,44,101,44,110,44,114,44,105,41,58,52,56,49,38,111,63,87,116,40,116,44,101,44,110,44,114,44,105,41,58,49,52,38,111,63,89,116,40,116,44,101,44,110,44,114,44,105,44,40,52,38,111,41,62,48,41,58,49,54,38,111,63,75,116,40,116,44,101,44,110,41,58,53,49,50,38,111,63,101,46,100,111,109,61,116,46,100,111,109,58,85,116,40,116,44,101,44,114,41,125,125,102,117,110,99,116,105,111,110,32,85,116,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,116,121,112,101,44,105,61,101,46,116,121,112,101,44,111,61,101,46,99,104,105,108,100,114,101,110,59,105,102,40,71,116,40,116,46,99,104,105,108,100,70,108,97,103,115,44,101,46,99,104,105,108,100,70,108,97,103,115,44,116,46,99,104,105,108,100,114,101,110,44,111,44,114,44,110,44,33,49,41,44,101,46,100,111,109,61,116,46,100,111,109,44,114,33,61,61,105,38,38,33,99,40,111,41,41,123,118,97,114,32,97,61,111,46,100,111,109,59,114,46,114,101,109,111,118,101,67,104,105,108,100,40,97,41,44,105,46,97,112,112,101,110,100,67,104,105,108,100,40,97,41,125,125,102,117,110,99,116,105,111,110,32,87,116,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,101,46,116,121,112,101,59,105,102,40,116,46,116,121,112,101,33,61,61,111,41,86,116,40,116,44,101,44,110,44,114,44,105,41,59,101,108,115,101,123,118,97,114,32,97,44,99,61,116,46,100,111,109,44,108,61,101,46,102,108,97,103,115,44,102,61,116,46,112,114,111,112,115,44,104,61,101,46,112,114,111,112,115,44,100,61,33,49,44,112,61,33,49,59,105,102,40,101,46,100,111,109,61,99,44,105,61,105,124,124,40,51,50,38,108,41,62,48,44,102,33,61,61,104,41,123,118,97,114,32,118,61,102,124,124,65,59,105,102,40,97,61,104,124,124,65,44,97,33,61,61,65,41,102,111,114,40,118,97,114,32,103,32,105,110,32,100,61,40,52,52,56,38,108,41,62,48,44,100,38,38,40,112,61,112,116,40,97,41,41,44,97,41,123,118,97,114,32,109,61,118,91,103,93,44,98,61,97,91,103,93,59,109,33,61,61,98,38,38,79,116,40,103,44,109,44,98,44,99,44,105,44,112,44,116,41,125,105,102,40,118,33,61,61,65,41,102,111,114,40,118,97,114,32,121,32,105,110,32,118,41,97,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,121,41,124,124,115,40,118,91,121,93,41,124,124,79,116,40,121,44,118,91,121,93,44,110,117,108,108,44,99,44,105,44,112,44,116,41,125,118,97,114,32,119,61,116,46,99,104,105,108,100,114,101,110,44,95,61,101,46,99,104,105,108,100,114,101,110,44,120,61,101,46,114,101,102,44,79,61,116,46,99,108,97,115,115,78,97,109,101,44,83,61,101,46,99,108,97,115,115,78,97,109,101,59,119,33,61,61,95,38,38,71,116,40,116,46,99,104,105,108,100,70,108,97,103,115,44,101,46,99,104,105,108,100,70,108,97,103,115,44,119,44,95,44,99,44,114,44,105,38,38,34,102,111,114,101,105,103,110,79,98,106,101,99,116,34,33,61,61,111,41,44,100,38,38,104,116,40,108,44,101,44,99,44,97,44,33,49,44,112,41,44,79,33,61,61,83,38,38,40,115,40,83,41,63,99,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,105,63,99,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,83,41,58,99,46,99,108,97,115,115,78,97,109,101,61,83,41,44,117,40,120,41,38,38,116,46,114,101,102,33,61,61,120,38,38,36,116,40,99,44,120,41,125,125,102,117,110,99,116,105,111,110,32,71,116,40,116,44,101,44,110,44,114,44,105,44,111,44,97,41,123,115,119,105,116,99,104,40,116,41,123,99,97,115,101,32,50,58,115,119,105,116,99,104,40,101,41,123,99,97,115,101,32,50,58,72,116,40,110,44,114,44,105,44,111,44,97,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,118,116,40,110,44,105,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,118,116,40,110,44,105,41,44,69,116,40,114,44,105,44,111,44,97,41,59,98,114,101,97,107,125,98,114,101,97,107,59,99,97,115,101,32,49,58,115,119,105,116,99,104,40,101,41,123,99,97,115,101,32,50,58,80,116,40,114,44,105,44,111,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,69,116,40,114,44,105,44,111,44,97,41,59,98,114,101,97,107,125,98,114,101,97,107,59,100,101,102,97,117,108,116,58,105,102,40,49,50,38,101,41,123,118,97,114,32,115,61,110,46,108,101,110,103,116,104,44,99,61,114,46,108,101,110,103,116,104,59,48,61,61,61,115,63,99,62,48,38,38,69,116,40,114,44,105,44,111,44,97,41,58,48,61,61,61,99,63,98,116,40,105,44,110,41,58,56,61,61,61,101,38,38,56,61,61,61,116,63,90,116,40,110,44,114,44,105,44,111,44,97,44,115,44,99,41,58,88,116,40,110,44,114,44,105,44,111,44,97,44,115,44,99,41,125,101,108,115,101,32,49,61,61,61,101,63,98,116,40,105,44,110,41,58,40,98,116,40,105,44,110,41,44,80,116,40,114,44,105,44,111,44,97,41,41,59,98,114,101,97,107,125,125,102,117,110,99,116,105,111,110,32,113,116,40,116,44,101,44,114,44,105,44,111,44,97,44,99,44,108,44,102,41,123,118,97,114,32,104,44,100,61,116,46,115,116,97,116,101,44,112,61,116,46,112,114,111,112,115,59,105,102,40,114,46,99,104,105,108,100,114,101,110,61,116,44,33,116,46,36,85,78,41,123,105,102,40,112,33,61,61,105,124,124,105,61,61,61,65,41,123,105,102,40,33,102,38,38,117,40,116,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,116,46,36,66,82,61,33,48,44,116,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,105,44,97,41,44,116,46,36,85,78,41,114,101,116,117,114,110,59,116,46,36,66,82,61,33,49,125,116,46,36,80,83,83,38,38,40,101,61,103,40,101,44,116,46,36,80,83,41,44,116,46,36,80,83,83,61,33,49,44,116,46,36,80,83,61,110,117,108,108,41,125,118,97,114,32,118,61,66,111,111,108,101,97,110,40,116,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,108,124,124,33,118,124,124,118,38,38,116,46,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,40,105,44,101,44,97,41,41,123,117,40,116,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,41,38,38,40,116,46,36,66,83,61,33,48,44,116,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,40,105,44,101,44,97,41,44,116,46,36,66,83,61,33,49,41,44,116,46,112,114,111,112,115,61,105,44,116,46,115,116,97,116,101,61,101,44,116,46,99,111,110,116,101,120,116,61,97,44,117,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,116,41,44,104,61,116,46,114,101,110,100,101,114,40,105,44,101,44,97,41,44,117,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,116,41,59,118,97,114,32,109,44,98,61,104,33,61,61,110,59,105,102,40,117,40,116,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,41,38,38,40,109,61,116,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,40,41,41,44,109,61,115,40,109,41,63,97,58,103,40,97,44,109,41,44,116,46,36,67,88,61,109,44,98,41,123,118,97,114,32,121,61,116,46,36,76,73,44,119,61,116,46,36,76,73,61,67,116,40,104,44,114,41,59,72,116,40,121,44,119,44,111,44,109,44,99,41,44,117,40,116,46,99,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,41,38,38,116,46,99,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,40,112,44,100,41,125,125,101,108,115,101,32,116,46,112,114,111,112,115,61,105,44,116,46,115,116,97,116,101,61,101,44,116,46,99,111,110,116,101,120,116,61,97,59,114,46,100,111,109,61,116,46,36,76,73,46,100,111,109,125,125,102,117,110,99,116,105,111,110,32,89,116,40,116,44,101,44,114,44,105,44,111,44,97,41,123,118,97,114,32,99,61,101,46,116,121,112,101,44,108,61,116,46,107,101,121,44,102,61,101,46,107,101,121,59,105,102,40,116,46,116,121,112,101,33,61,61,99,124,124,108,33,61,61,102,41,86,116,40,116,44,101,44,114,44,105,44,111,41,59,101,108,115,101,123,118,97,114,32,104,61,101,46,112,114,111,112,115,124,124,65,59,105,102,40,97,41,123,118,97,114,32,100,61,116,46,99,104,105,108,100,114,101,110,59,100,46,36,85,80,68,61,33,48,44,100,46,36,86,61,101,44,113,116,40,100,44,100,46,115,116,97,116,101,44,101,44,104,44,114,44,105,44,111,44,33,49,44,33,49,41,44,100,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,112,61,33,48,44,118,61,116,46,112,114,111,112,115,44,103,61,101,46,114,101,102,44,109,61,33,115,40,103,41,44,98,61,116,46,99,104,105,108,100,114,101,110,59,105,102,40,101,46,100,111,109,61,116,46,100,111,109,44,101,46,99,104,105,108,100,114,101,110,61,98,44,109,38,38,117,40,103,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,112,61,103,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,118,44,104,41,41,44,33,49,33,61,61,112,41,123,109,38,38,117,40,103,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,103,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,40,118,44,104,41,59,118,97,114,32,121,61,99,40,104,44,105,41,59,121,33,61,61,110,38,38,40,121,61,67,116,40,121,44,101,41,44,72,116,40,98,44,121,44,114,44,105,44,111,41,44,101,46,99,104,105,108,100,114,101,110,61,121,44,101,46,100,111,109,61,121,46,100,111,109,44,109,38,38,117,40,103,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,41,38,38,103,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,40,118,44,104,41,41,125,101,108,115,101,32,49,52,38,98,46,102,108,97,103,115,38,38,40,98,46,112,97,114,101,110,116,86,78,111,100,101,61,101,41,125,125,125,102,117,110,99,116,105,111,110,32,75,116,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,110,46,102,105,114,115,116,67,104,105,108,100,59,104,40,111,41,63,40,110,46,116,101,120,116,67,111,110,116,101,110,116,61,105,44,114,61,110,46,102,105,114,115,116,67,104,105,108,100,41,58,40,114,61,116,46,100,111,109,44,105,33,61,61,116,46,99,104,105,108,100,114,101,110,38,38,40,114,46,110,111,100,101,86,97,108,117,101,61,105,41,41,44,101,46,100,111,109,61,114,125,102,117,110,99,116,105,111,110,32,88,116,40,116,44,101,44,110,44,114,44,105,44,111,44,97,41,123,102,111,114,40,118,97,114,32,115,44,99,44,117,61,111,62,97,63,97,58,111,44,108,61,48,59,108,60,117,59,108,43,43,41,115,61,101,91,108,93,44,99,61,116,91,108,93,44,115,46,100,111,109,38,38,40,115,61,101,91,108,93,61,79,40,115,41,41,44,72,116,40,99,44,115,44,110,44,114,44,105,41,44,116,91,108,93,61,115,59,105,102,40,111,60,97,41,102,111,114,40,108,61,117,59,108,60,97,59,108,43,43,41,115,61,101,91,108,93,44,115,46,100,111,109,38,38,40,115,61,101,91,108,93,61,79,40,115,41,41,44,80,116,40,115,44,110,44,114,44,105,41,59,101,108,115,101,32,105,102,40,111,62,97,41,102,111,114,40,108,61,117,59,108,60,111,59,108,43,43,41,118,116,40,116,91,108,93,44,110,41,125,102,117,110,99,116,105,111,110,32,90,116,40,116,44,101,44,110,44,114,44,105,44,111,44,97,41,123,118,97,114,32,115,44,99,44,117,61,111,45,49,44,108,61,97,45,49,44,102,61,48,44,104,61,116,91,102,93,44,100,61,101,91,102,93,59,116,58,123,119,104,105,108,101,40,104,46,107,101,121,61,61,61,100,46,107,101,121,41,123,105,102,40,100,46,100,111,109,38,38,40,101,91,102,93,61,100,61,79,40,100,41,41,44,72,116,40,104,44,100,44,110,44,114,44,105,41,44,116,91,102,93,61,100,44,102,43,43,44,102,62,117,124,124,102,62,108,41,98,114,101,97,107,32,116,59,104,61,116,91,102,93,44,100,61,101,91,102,93,125,104,61,116,91,117,93,44,100,61,101,91,108,93,59,119,104,105,108,101,40,104,46,107,101,121,61,61,61,100,46,107,101,121,41,123,105,102,40,100,46,100,111,109,38,38,40,101,91,108,93,61,100,61,79,40,100,41,41,44,72,116,40,104,44,100,44,110,44,114,44,105,41,44,116,91,117,93,61,100,44,117,45,45,44,108,45,45,44,102,62,117,124,124,102,62,108,41,98,114,101,97,107,32,116,59,104,61,116,91,117,93,44,100,61,101,91,108,93,125,125,105,102,40,102,62,117,41,123,105,102,40,102,60,61,108,41,123,99,61,108,43,49,59,118,97,114,32,112,61,99,60,97,63,101,91,99,93,46,100,111,109,58,110,117,108,108,59,119,104,105,108,101,40,102,60,61,108,41,100,61,101,91,102,93,44,100,46,100,111,109,38,38,40,101,91,102,93,61,100,61,79,40,100,41,41,44,102,43,43,44,77,40,110,44,80,116,40,100,44,110,117,108,108,44,114,44,105,41,44,112,41,125,125,101,108,115,101,32,105,102,40,102,62,108,41,119,104,105,108,101,40,102,60,61,117,41,118,116,40,116,91,102,43,43,93,44,110,41,59,101,108,115,101,123,118,97,114,32,118,61,102,44,103,61,102,44,109,61,117,45,102,43,49,44,98,61,108,45,102,43,49,44,121,61,91,93,59,102,111,114,40,115,61,48,59,115,60,98,59,115,43,43,41,121,46,112,117,115,104,40,48,41,59,118,97,114,32,119,61,109,61,61,61,111,44,95,61,33,49,44,120,61,48,44,83,61,48,59,105,102,40,97,60,52,124,124,40,109,124,98,41,60,51,50,41,102,111,114,40,115,61,118,59,115,60,61,117,59,115,43,43,41,105,102,40,104,61,116,91,115,93,44,83,60,98,41,123,102,111,114,40,102,61,103,59,102,60,61,108,59,102,43,43,41,105,102,40,100,61,101,91,102,93,44,104,46,107,101,121,61,61,61,100,46,107,101,121,41,123,105,102,40,121,91,102,45,103,93,61,115,43,49,44,119,41,123,119,61,33,49,59,119,104,105,108,101,40,115,62,118,41,118,116,40,116,91,118,43,43,93,44,110,41,125,120,62,102,63,95,61,33,48,58,120,61,102,44,100,46,100,111,109,38,38,40,101,91,102,93,61,100,61,79,40,100,41,41,44,72,116,40,104,44,100,44,110,44,114,44,105,41,44,83,43,43,59,98,114,101,97,107,125,33,119,38,38,102,62,108,38,38,118,116,40,104,44,110,41,125,101,108,115,101,32,119,124,124,118,116,40,104,44,110,41,59,101,108,115,101,123,118,97,114,32,107,61,123,125,59,102,111,114,40,115,61,103,59,115,60,61,108,59,115,43,43,41,107,91,101,91,115,93,46,107,101,121,93,61,115,59,102,111,114,40,115,61,118,59,115,60,61,117,59,115,43,43,41,105,102,40,104,61,116,91,115,93,44,83,60,98,41,105,102,40,102,61,107,91,104,46,107,101,121,93,44,118,111,105,100,32,48,33,61,61,102,41,123,105,102,40,119,41,123,119,61,33,49,59,119,104,105,108,101,40,115,62,118,41,118,116,40,116,91,118,43,43,93,44,110,41,125,100,61,101,91,102,93,44,121,91,102,45,103,93,61,115,43,49,44,120,62,102,63,95,61,33,48,58,120,61,102,44,100,46,100,111,109,38,38,40,101,91,102,93,61,100,61,79,40,100,41,41,44,72,116,40,104,44,100,44,110,44,114,44,105,41,44,83,43,43,125,101,108,115,101,32,119,124,124,118,116,40,104,44,110,41,59,101,108,115,101,32,119,124,124,118,116,40,104,44,110,41,125,105,102,40,119,41,98,116,40,110,44,116,41,44,69,116,40,101,44,110,44,114,44,105,41,59,101,108,115,101,32,105,102,40,95,41,123,118,97,114,32,67,61,74,116,40,121,41,59,102,111,114,40,102,61,67,46,108,101,110,103,116,104,45,49,44,115,61,98,45,49,59,115,62,61,48,59,115,45,45,41,48,61,61,61,121,91,115,93,63,40,120,61,115,43,103,44,100,61,101,91,120,93,44,100,46,100,111,109,38,38,40,101,91,120,93,61,100,61,79,40,100,41,41,44,99,61,120,43,49,44,77,40,110,44,80,116,40,100,44,110,117,108,108,44,114,44,105,41,44,99,60,97,63,101,91,99,93,46,100,111,109,58,110,117,108,108,41,41,58,102,60,48,124,124,115,33,61,61,67,91,102,93,63,40,120,61,115,43,103,44,100,61,101,91,120,93,44,99,61,120,43,49,44,77,40,110,44,100,46,100,111,109,44,99,60,97,63,101,91,99,93,46,100,111,109,58,110,117,108,108,41,41,58,102,45,45,125,101,108,115,101,32,105,102,40,83,33,61,61,98,41,102,111,114,40,115,61,98,45,49,59,115,62,61,48,59,115,45,45,41,48,61,61,61,121,91,115,93,38,38,40,120,61,115,43,103,44,100,61,101,91,120,93,44,100,46,100,111,109,38,38,40,101,91,120,93,61,100,61,79,40,100,41,41,44,99,61,120,43,49,44,77,40,110,44,80,116,40,100,44,110,117,108,108,44,114,44,105,41,44,99,60,97,63,101,91,99,93,46,100,111,109,58,110,117,108,108,41,41,125,125,102,117,110,99,116,105,111,110,32,74,116,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,44,111,44,97,61,116,46,115,108,105,99,101,40,41,44,115,61,91,48,93,44,99,61,116,46,108,101,110,103,116,104,59,102,111,114,40,101,61,48,59,101,60,99,59,101,43,43,41,123,118,97,114,32,117,61,116,91,101,93,59,105,102,40,48,33,61,61,117,41,123,105,102,40,110,61,115,91,115,46,108,101,110,103,116,104,45,49,93,44,116,91,110,93,60,117,41,123,97,91,101,93,61,110,44,115,46,112,117,115,104,40,101,41,59,99,111,110,116,105,110,117,101,125,114,61,48,44,105,61,115,46,108,101,110,103,116,104,45,49,59,119,104,105,108,101,40,114,60,105,41,111,61,40,114,43,105,41,47,50,124,48,44,116,91,115,91,111,93,93,60,117,63,114,61,111,43,49,58,105,61,111,59,117,60,116,91,115,91,114,93,93,38,38,40,114,62,48,38,38,40,97,91,101,93,61,115,91,114,45,49,93,41,44,115,91,114,93,61,101,41,125,125,114,61,115,46,108,101,110,103,116,104,44,105,61,115,91,114,45,49,93,59,119,104,105,108,101,40,114,45,45,32,62,48,41,115,91,114,93,61,105,44,105,61,97,91,105,93,59,114,101,116,117,114,110,32,115,125,105,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,81,116,40,116,44,101,44,114,41,123,105,102,40,116,33,61,61,110,41,123,118,97,114,32,105,61,101,46,36,86,59,114,101,116,117,114,110,32,115,40,105,41,63,99,40,116,41,124,124,40,116,46,100,111,109,38,38,40,116,61,79,40,116,41,41,44,104,40,101,46,102,105,114,115,116,67,104,105,108,100,41,63,40,80,116,40,116,44,101,44,65,44,33,49,41,44,101,46,36,86,61,116,41,58,122,116,40,116,44,101,41,44,105,61,116,41,58,115,40,116,41,63,40,118,116,40,105,44,101,41,44,101,46,36,86,61,110,117,108,108,41,58,40,116,46,100,111,109,38,38,40,116,61,79,40,116,41,41,44,72,116,40,105,44,116,44,101,44,65,44,33,49,41,44,105,61,101,46,36,86,61,116,41,44,76,46,108,101,110,103,116,104,62,48,38,38,78,40,76,41,44,117,40,114,41,38,38,114,40,41,44,117,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,105,41,44,105,38,38,49,52,38,105,46,102,108,97,103,115,63,105,46,99,104,105,108,100,114,101,110,58,118,111,105,100,32,48,125,125,118,97,114,32,116,101,61,34,117,110,100,101,102,105,110,101,100,34,61,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,101,101,61,34,117,110,100,101,102,105,110,101,100,34,61,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,110,101,40,116,41,123,114,101,116,117,114,110,32,116,101,63,116,101,46,116,104,101,110,40,116,41,58,101,101,40,116,41,125,102,117,110,99,116,105,111,110,32,114,101,40,116,44,101,44,110,44,114,41,123,117,40,101,41,38,38,40,101,61,101,40,116,46,115,116,97,116,101,44,116,46,112,114,111,112,115,44,116,46,99,111,110,116,101,120,116,41,41,59,118,97,114,32,105,61,116,46,36,80,83,59,105,102,40,115,40,105,41,41,116,46,36,80,83,61,101,59,101,108,115,101,32,102,111,114,40,118,97,114,32,111,32,105,110,32,101,41,105,91,111,93,61,101,91,111,93,59,105,102,40,116,46,36,80,83,83,124,124,116,46,36,66,82,41,116,46,36,80,83,83,61,33,48,44,116,46,36,66,82,38,38,117,40,110,41,38,38,76,46,112,117,115,104,40,110,46,98,105,110,100,40,116,41,41,59,101,108,115,101,32,105,102,40,116,46,36,85,80,68,41,123,118,97,114,32,97,61,116,46,36,81,85,59,104,40,97,41,38,38,40,97,61,116,46,36,81,85,61,91,93,44,110,101,40,105,101,40,116,44,97,41,41,41,44,117,40,110,41,38,38,97,46,112,117,115,104,40,110,41,125,101,108,115,101,32,116,46,36,80,83,83,61,33,48,44,116,46,36,85,80,68,61,33,48,44,111,101,40,116,44,114,44,110,41,44,116,46,36,85,80,68,61,33,49,125,102,117,110,99,116,105,111,110,32,105,101,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,46,36,81,85,61,110,117,108,108,44,116,46,36,85,80,68,61,33,48,44,111,101,40,116,44,33,49,44,40,102,117,110,99,116,105,111,110,40,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,101,91,110,93,46,99,97,108,108,40,116,41,125,41,41,44,116,46,36,85,80,68,61,33,49,125,125,102,117,110,99,116,105,111,110,32,111,101,40,116,44,101,44,110,41,123,105,102,40,33,116,46,36,85,78,41,123,105,102,40,101,124,124,33,116,46,36,66,82,41,123,116,46,36,80,83,83,61,33,49,59,118,97,114,32,114,61,116,46,36,80,83,44,105,61,116,46,115,116,97,116,101,44,111,61,103,40,105,44,114,41,44,97,61,116,46,112,114,111,112,115,44,115,61,116,46,99,111,110,116,101,120,116,59,116,46,36,80,83,61,110,117,108,108,59,118,97,114,32,99,61,116,46,36,86,44,108,61,116,46,36,76,73,44,102,61,108,46,100,111,109,38,38,108,46,100,111,109,46,112,97,114,101,110,116,78,111,100,101,59,105,102,40,113,116,40,116,44,111,44,99,44,97,44,102,44,115,44,40,51,50,38,99,46,102,108,97,103,115,41,62,48,44,101,44,33,48,41,44,116,46,36,85,78,41,114,101,116,117,114,110,59,105,102,40,48,61,61,61,40,49,48,50,52,38,116,46,36,76,73,46,102,108,97,103,115,41,41,123,118,97,114,32,100,61,116,46,36,76,73,46,100,111,109,59,119,104,105,108,101,40,33,104,40,99,61,99,46,112,97,114,101,110,116,86,78,111,100,101,41,41,40,49,52,38,99,46,102,108,97,103,115,41,62,48,38,38,40,99,46,100,111,109,61,100,41,125,76,46,108,101,110,103,116,104,62,48,38,38,78,40,76,41,125,101,108,115,101,32,116,46,115,116,97,116,101,61,116,46,36,80,83,44,116,46,36,80,83,61,110,117,108,108,59,117,40,110,41,38,38,110,46,99,97,108,108,40,116,41,125,125,118,97,114,32,97,101,61,102,117,110,99,116,105,111,110,40,116,44,101,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,116,124,124,65,44,116,104,105,115,46,99,111,110,116,101,120,116,61,101,124,124,65,125,59,97,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,116,41,123,116,104,105,115,46,36,85,78,124,124,114,101,40,116,104,105,115,44,123,125,44,116,44,33,48,41,125,44,97,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,116,44,101,41,123,116,104,105,115,46,36,85,78,124,124,116,104,105,115,46,36,66,83,124,124,114,101,40,116,104,105,115,44,116,44,101,44,33,49,41,125,44,97,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,116,44,101,44,110,41,123,125,59,118,97,114,32,115,101,61,49,50,44,99,101,61,51,55,44,117,101,61,51,56,44,108,101,61,51,57,44,102,101,61,52,48,59,102,117,110,99,116,105,111,110,32,104,101,40,41,123,114,101,116,117,114,110,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,125,118,97,114,32,100,101,61,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,44,112,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,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,114,61,101,91,110,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,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,114,38,38,40,114,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,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,44,114,41,123,114,101,116,117,114,110,32,110,38,38,116,40,101,46,112,114,111,116,111,116,121,112,101,44,110,41,44,114,38,38,116,40,101,44,114,41,44,101,125,125,40,41,44,118,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,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,114,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,114,41,38,38,40,116,91,114,93,61,110,91,114,93,41,125,114,101,116,117,114,110,32,116,125,44,103,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,101,38,38,110,117,108,108,33,61,61,101,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,101,41,59,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,38,38,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,116,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,101,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,116,44,101,41,58,116,46,95,95,112,114,111,116,111,95,95,61,101,41,125,44,109,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,116,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,101,124,124,34,111,98,106,101,99,116,34,33,61,61,116,121,112,101,111,102,32,101,38,38,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,101,63,116,58,101,125,44,98,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,32,100,101,40,116,104,105,115,44,101,41,44,109,101,40,116,104,105,115,44,40,101,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,101,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,103,101,40,101,44,116,41,44,112,101,40,101,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,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,102,117,110,99,116,105,111,110,40,41,123,101,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,116,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,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,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,121,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,101,125,40,97,101,41,44,121,101,61,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,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,63,97,114,103,117,109,101,110,116,115,91,49,93,58,34,108,105,34,44,114,61,101,46,105,116,114,101,101,91,110,93,46,97,116,116,114,105,98,117,116,101,115,44,105,61,91,93,44,111,61,114,46,99,108,97,115,115,124,124,114,46,99,108,97,115,115,78,97,109,101,59,114,101,116,117,114,110,32,116,46,105,115,70,117,110,99,116,105,111,110,40,111,41,38,38,40,111,61,111,40,101,41,41,44,116,46,105,115,69,109,112,116,121,40,111,41,124,124,40,116,46,105,115,83,116,114,105,110,103,40,111,41,63,105,61,105,46,99,111,110,99,97,116,40,111,46,115,112,108,105,116,40,47,91,92,115,92,46,93,43,47,41,41,58,116,46,105,115,65,114,114,97,121,40,111,41,38,38,40,105,61,105,46,99,111,110,99,97,116,40,111,41,41,41,44,105,125,44,119,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,32,100,101,40,116,104,105,115,44,101,41,44,109,101,40,116,104,105,115,44,40,101,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,101,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,103,101,40,101,44,116,41,44,112,101,40,101,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,116,41,123,116,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,104,101,40,41,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,116,41,123,116,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,116,41,123,116,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,116,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,116,46,112,117,115,104,40,121,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,116,46,112,117,115,104,40,121,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,116,46,112,117,115,104,40,121,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,121,40,49,44,34,115,112,97,110,34,44,34,98,116,110,45,103,114,111,117,112,34,44,116,44,48,41,125,125,93,41,44,101,125,40,97,101,41,44,95,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,32,100,101,40,116,104,105,115,44,101,41,44,109,101,40,116,104,105,115,44,40,101,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,101,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,103,101,40,101,44,116,41,44,112,101,40,101,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,121,40,49,44,34,111,108,34,44,110,117,108,108,44,121,40,49,44,34,108,105,34,44,34,108,101,97,102,34,44,121,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,101,125,40,97,101,41,59,102,117,110,99,116,105,111,110,32,120,101,40,101,44,110,41,123,118,97,114,32,114,61,110,46,100,105,114,116,121,124,124,33,49,59,114,101,116,117,114,110,32,114,124,124,116,46,101,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,110,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,100,105,114,116,121,34,33,61,61,116,38,38,110,91,116,93,33,61,61,101,91,116,93,41,114,101,116,117,114,110,32,114,61,33,48,44,33,49,125,41,41,44,114,125,118,97,114,32,79,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,100,101,40,116,104,105,115,44,101,41,59,118,97,114,32,110,61,109,101,40,116,104,105,115,44,40,101,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,101,41,41,46,99,97,108,108,40,116,104,105,115,44,116,41,41,59,114,101,116,117,114,110,32,110,46,115,116,97,116,101,61,110,46,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,40,116,46,110,111,100,101,41,44,110,125,114,101,116,117,114,110,32,103,101,40,101,44,116,41,44,112,101,40,101,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,116,41,123,114,101,116,117,114,110,123,116,101,120,116,58,116,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,116,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,116,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,116,44,101,41,123,114,101,116,117,114,110,32,120,101,40,116,104,105,115,46,115,116,97,116,101,44,101,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,101,61,116,104,105,115,44,110,61,102,117,110,99,116,105,111,110,40,41,123,101,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,116,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,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,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,116,41,123,105,102,40,116,46,119,104,105,99,104,61,61,61,115,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,116,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,123,116,101,120,116,58,116,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,116,41,123,116,38,38,116,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,116,41,123,116,38,38,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,101,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,101,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,101,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,121,40,49,44,34,102,111,114,109,34,44,110,117,108,108,44,91,121,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,116,41,123,114,101,116,117,114,110,32,116,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,40,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,41,44,121,40,49,44,34,115,112,97,110,34,44,34,98,116,110,45,103,114,111,117,112,34,44,91,121,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,121,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,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,125,125,41,125,125,93,41,44,101,125,40,97,101,41,44,83,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,41,123,114,101,116,117,114,110,32,100,101,40,116,104,105,115,44,110,41,44,109,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,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,103,101,40,110,44,101,41,44,112,101,40,110,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,101,61,116,104,105,115,44,110,61,116,104,105,115,46,112,114,111,112,115,44,114,61,110,46,110,111,100,101,44,105,61,110,46,100,111,109,44,111,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,101,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,105,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,105,46,99,108,101,97,114,83,101,108,101,99,116,105,111,110,40,41,59,118,97,114,32,110,61,105,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,110,38,38,105,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,105,46,95,116,114,101,101,44,105,46,95,116,114,101,101,46,98,111,117,110,100,105,110,103,78,111,100,101,115,40,110,44,114,41,41,125,114,46,115,101,108,101,99,116,101,100,40,41,63,105,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,114,46,100,101,115,101,108,101,99,116,40,41,58,114,46,115,101,108,101,99,116,40,41,44,105,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,105,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,114,44,111,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,111,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,116,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,44,110,61,101,46,110,111,100,101,44,114,61,101,46,100,111,109,59,114,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,116,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,116,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,44,110,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,114,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,114,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,116,44,110,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,102,111,99,117,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,102,111,99,117,115,40,116,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,110,61,116,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,110,46,116,97,98,105,110,100,101,120,61,49,44,110,46,117,110,115,101,108,101,99,116,97,98,108,101,61,34,111,110,34,59,118,97,114,32,114,61,121,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,105,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,114,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,105,58,34,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,34,41,41,125,110,46,99,108,97,115,115,61,110,46,99,108,97,115,115,78,97,109,101,61,114,46,106,111,105,110,40,34,32,34,41,59,118,97,114,32,111,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,111,61,119,40,50,44,79,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,120,40,121,40,49,44,34,97,34,44,110,117,108,108,44,111,44,48,44,118,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,110,41,41,41,125,125,93,41,44,110,125,40,97,101,41,44,107,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,32,100,101,40,116,104,105,115,44,101,41,44,109,101,40,116,104,105,115,44,40,101,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,101,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,103,101,40,101,44,116,41,44,112,101,40,101,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,121,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,101,125,40,97,101,41,44,67,101,61,102,117,110,99,116,105,111,110,40,110,41,123,102,117,110,99,116,105,111,110,32,114,40,116,41,123,100,101,40,116,104,105,115,44,114,41,59,118,97,114,32,101,61,109,101,40,116,104,105,115,44,40,114,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,114,41,41,46,99,97,108,108,40,116,104,105,115,44,116,41,41,59,114,101,116,117,114,110,32,101,46,115,116,97,116,101,61,101,46,115,116,97,116,101,70,114,111,109,78,111,100,101,40,116,46,110,111,100,101,41,44,101,125,114,101,116,117,114,110,32,103,101,40,114,44,110,41,44,112,101,40,114,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,116,41,123,114,101,116,117,114,110,123,100,105,114,116,121,58,116,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,116,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,116,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,116,44,101,41,123,114,101,116,117,114,110,32,101,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,110,61,116,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,110,46,99,108,97,115,115,61,110,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,110,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,110,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,110,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,110,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,110,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,110,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,110,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,110,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,110,46,111,110,68,114,97,103,79,118,101,114,61,110,117,108,108,44,110,46,111,110,68,114,111,112,61,110,117,108,108,41,41,44,110,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,110,61,101,46,105,116,114,101,101,46,115,116,97,116,101,44,114,61,121,101,40,101,41,59,114,101,116,117,114,110,32,116,46,101,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,110,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,110,91,116,93,38,38,114,46,112,117,115,104,40,116,41,125,41,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,114,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,114,46,112,117,115,104,40,34,101,120,112,97,110,100,101,100,34,41,44,114,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,114,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,116,44,101,41,123,118,97,114,32,110,61,116,46,99,108,105,101,110,116,89,44,114,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,44,105,61,114,46,116,111,112,43,114,46,104,101,105,103,104,116,47,51,44,111,61,114,46,98,111,116,116,111,109,45,114,46,104,101,105,103,104,116,47,51,44,97,61,48,59,114,101,116,117,114,110,32,110,60,61,105,63,97,61,45,49,58,110,62,61,111,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,110,41,123,110,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,110,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,110,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,114,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,114,44,110,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,114,46,116,114,101,101,40,41,46,105,100,41,44,110,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,114,46,105,100,41,44,114,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,114,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,114,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,105,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,111,61,116,46,105,115,70,117,110,99,116,105,111,110,40,105,41,44,97,61,102,117,110,99,116,105,111,110,32,110,40,114,44,105,41,123,101,46,105,115,84,114,101,101,78,111,100,101,115,40,114,41,63,116,46,101,97,99,104,40,114,44,40,102,117,110,99,116,105,111,110,40,116,41,123,110,40,116,44,105,41,125,41,41,58,101,46,105,115,84,114,101,101,78,111,100,101,40,114,41,38,38,33,49,33,61,61,105,40,114,41,38,38,114,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,110,40,114,46,99,104,105,108,100,114,101,110,44,105,41,125,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,97,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,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,100,33,61,61,114,46,105,100,59,114,101,116,117,114,110,32,101,38,38,40,101,61,33,116,46,104,97,115,65,110,99,101,115,116,111,114,40,114,41,41,44,101,38,38,111,38,38,40,101,61,105,40,114,44,116,41,41,44,116,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,101,41,44,101,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,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,110,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,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,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,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,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,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,116,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,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,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,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,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,110,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,114,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,105,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,114,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,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,97,61,116,46,105,115,70,117,110,99,116,105,111,110,40,111,41,44,115,61,110,46,105,100,33,61,61,114,46,105,100,59,105,102,40,115,38,38,40,115,61,33,114,46,104,97,115,65,110,99,101,115,116,111,114,40,110,41,41,44,115,38,38,97,38,38,40,115,61,111,40,110,44,114,44,105,41,41,44,114,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,115,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,115,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,114,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,114,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,105,41,44,114,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,105,41,44,114,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,105,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,105,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,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,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,101,61,116,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,116,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,114,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,105,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,116,44,116,46,116,97,114,103,101,116,41,44,111,61,118,111,105,100,32,48,59,101,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,111,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,58,101,38,38,40,111,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,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,111,41,123,118,97,114,32,99,61,111,46,110,111,100,101,40,110,41,59,99,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,117,61,99,46,114,101,109,111,118,101,40,33,48,41,44,108,61,114,46,99,111,110,116,101,120,116,40,41,46,105,110,100,101,120,79,102,40,114,41,59,48,61,61,61,105,63,40,97,61,114,46,97,100,100,67,104,105,108,100,40,117,41,44,115,61,114,46,99,104,105,108,100,114,101,110,46,105,110,100,101,120,79,102,40,97,41,44,114,46,101,120,112,97,110,100,40,41,41,58,40,115,61,49,61,61,61,105,63,43,43,108,58,108,44,97,61,114,46,99,111,110,116,101,120,116,40,41,46,105,110,115,101,114,116,65,116,40,115,44,117,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,116,44,97,44,114,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,116,41,123,40,116,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,116,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,119,40,50,44,98,101,44,123,99,104,101,99,107,101,100,58,116,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,116,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,44,110,111,100,101,58,116,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,116,61,116,104,105,115,46,112,114,111,112,115,44,101,61,116,46,110,111,100,101,44,110,61,116,46,100,111,109,59,105,102,40,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,123,118,97,114,32,114,61,101,46,99,104,105,108,100,114,101,110,44,105,61,110,46,108,111,97,100,105,110,103,44,111,61,114,46,112,97,103,105,110,97,116,105,111,110,40,41,59,114,101,116,117,114,110,32,119,40,50,44,80,101,44,123,99,111,110,116,101,120,116,58,101,44,100,111,109,58,110,44,108,105,109,105,116,58,111,46,108,105,109,105,116,44,108,111,97,100,105,110,103,58,105,44,110,111,100,101,115,58,114,44,116,111,116,97,108,58,111,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,101,46,99,104,105,108,100,114,101,110,41,114,101,116,117,114,110,32,101,46,104,97,115,76,111,97,100,101,100,67,104,105,108,100,114,101,110,40,41,63,119,40,50,44,95,101,44,123,116,101,120,116,58,34,78,111,32,82,101,115,117,108,116,115,34,125,41,58,119,40,50,44,95,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,119,40,50,44,119,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,116,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,101,61,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,116,46,99,104,105,108,100,114,101,110,41,58,116,46,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,40,41,59,105,102,40,101,41,114,101,116,117,114,110,32,119,40,50,44,107,101,44,123,99,111,108,108,97,112,115,101,100,58,116,46,99,111,108,108,97,112,115,101,100,40,41,44,110,111,100,101,58,116,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,120,40,121,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,121,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,119,40,50,44,83,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,121,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,118,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,40,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,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,114,125,40,97,101,41,44,80,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,41,123,114,101,116,117,114,110,32,100,101,40,116,104,105,115,44,110,41,44,109,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,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,103,101,40,110,44,101,41,44,112,101,40,110,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,116,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,120,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,116,41,123,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,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,116,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,116,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,121,40,49,44,34,108,105,34,44,34,108,101,97,102,32,100,101,116,97,99,104,101,100,34,44,121,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,95,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,121,40,49,44,34,108,105,34,44,34,108,101,97,102,34,44,121,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,95,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,101,61,116,104,105,115,44,110,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,115,44,114,61,110,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,105,61,48,59,110,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,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,33,40,116,46,104,105,100,100,101,110,40,41,124,124,116,46,114,101,109,111,118,101,100,40,41,41,59,114,101,116,117,114,110,32,101,38,38,105,43,43,44,105,60,61,114,46,108,105,109,105,116,38,38,101,125,41,41,125,118,97,114,32,111,61,116,46,109,97,112,40,110,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,119,40,50,44,67,101,44,123,100,111,109,58,101,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,116,125,44,116,46,105,100,41,125,41,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,114,46,108,105,109,105,116,60,114,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,111,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,111,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,121,40,49,44,34,111,108,34,44,110,117,108,108,44,91,111,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,110,125,40,97,101,41,44,84,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,32,100,101,40,116,104,105,115,44,101,41,44,109,101,40,116,104,105,115,44,40,101,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,101,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,103,101,40,101,44,116,41,44,112,101,40,101,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,104,101,40,41,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,121,40,49,44,34,108,105,34,44,110,117,108,108,44,121,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,116,61,116,104,105,115,46,112,114,111,112,115,44,101,61,116,46,100,111,109,44,110,61,116,46,110,111,100,101,115,44,114,61,101,46,108,111,97,100,105,110,103,44,105,61,110,46,112,97,103,105,110,97,116,105,111,110,40,41,59,114,101,116,117,114,110,32,119,40,50,44,80,101,44,123,100,111,109,58,101,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,110,44,116,111,116,97,108,58,105,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,101,125,40,97,101,41,44,106,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,114,44,105,41,123,118,97,114,32,111,61,116,104,105,115,59,105,102,40,100,101,40,116,104,105,115,44,110,41,44,33,40,114,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,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,114,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,105,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,114,46,117,115,101,115,78,97,116,105,118,101,68,79,77,61,33,48,59,118,97,114,32,97,61,123,101,110,97,98,108,101,100,58,33,49,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,116,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,105,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,97,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,105,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,97,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,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,124,124,116,46,105,115,66,111,111,108,101,97,110,40,116,46,103,101,116,40,105,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,116,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,115,61,33,48,59,114,46,111,110,40,34,99,104,97,110,103,101,115,46,97,112,112,108,105,101,100,34,44,40,102,117,110,99,116,105,111,110,40,41,123,111,46,114,101,110,100,101,114,78,111,100,101,115,40,41,44,115,38,38,40,111,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,115,61,33,49,41,125,41,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,112,101,40,110,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,116,46,101,97,99,104,40,116,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,116,46,105,100,101,110,116,105,116,121,41,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,110,46,112,117,115,104,40,34,101,100,105,116,97,98,108,101,45,34,43,101,41,125,41,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,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,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,101,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,101,46,102,111,99,117,115,40,41,125,41,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,114,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,114,62,48,63,114,58,116,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,116,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,110,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,110,61,101,59,101,108,115,101,32,105,102,40,116,46,105,115,79,98,106,101,99,116,40,101,41,38,38,116,46,105,115,79,98,106,101,99,116,40,101,91,48,93,41,41,110,61,101,91,48,93,59,101,108,115,101,32,105,102,40,116,46,105,115,83,116,114,105,110,103,40,101,41,41,123,118,97,114,32,114,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,114,38,38,40,110,61,114,41,125,114,101,116,117,114,110,32,110,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,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,41,123,118,97,114,32,101,61,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,41,59,34,97,117,116,111,34,33,61,61,101,46,111,118,101,114,102,108,111,119,38,38,116,46,112,97,114,101,110,116,78,111,100,101,38,38,40,116,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,46,112,97,114,101,110,116,78,111,100,101,41,41,125,114,101,116,117,114,110,32,116,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,116,41,123,105,102,40,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,40,91,102,101,44,115,101,44,99,101,44,108,101,44,117,101,93,46,105,110,100,101,120,79,102,40,116,46,119,104,105,99,104,41,60,48,41,41,123,118,97,114,32,101,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,101,46,108,101,110,103,116,104,41,115,119,105,116,99,104,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,119,104,105,99,104,41,123,99,97,115,101,32,102,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,101,91,48,93,41,59,98,114,101,97,107,59,99,97,115,101,32,115,101,58,101,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,99,101,58,101,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,108,101,58,101,91,48,93,46,101,120,112,97,110,100,40,41,59,98,114,101,97,107,59,99,97,115,101,32,117,101,58,116,104,105,115,46,109,111,118,101,70,111,99,117,115,85,112,70,114,111,109,40,101,91,48,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,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,116,41,123,118,97,114,32,101,61,116,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,101,38,38,101,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,116,41,123,118,97,114,32,101,61,116,46,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,78,111,100,101,40,41,59,101,38,38,101,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,116,41,123,118,97,114,32,101,61,116,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,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,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,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,116,41,123,116,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,116,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,116,41,123,116,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,116,41,123,116,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,116,46,116,97,114,103,101,116,41,59,118,97,114,32,101,61,116,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,114,61,116,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,105,61,110,46,103,101,116,84,114,101,101,66,121,73,100,40,101,41,44,111,61,105,46,110,111,100,101,40,114,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,97,61,111,46,114,101,109,111,118,101,40,33,48,41,44,115,61,116,104,105,115,46,95,116,114,101,101,46,97,100,100,78,111,100,101,40,97,41,44,99,61,116,104,105,115,46,95,116,114,101,101,46,105,110,100,101,120,79,102,40,115,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,116,44,115,44,110,117,108,108,44,99,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,116,41,123,81,116,40,119,40,50,44,84,101,44,123,100,111,109,58,116,104,105,115,44,110,111,100,101,115,58,116,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,101,41,123,118,97,114,32,110,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,114,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,105,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,116,46,101,97,99,104,40,105,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,105,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,111,61,33,40,114,46,114,105,103,104,116,60,105,46,108,101,102,116,124,124,114,46,108,101,102,116,62,105,46,114,105,103,104,116,124,124,114,46,98,111,116,116,111,109,60,105,46,116,111,112,124,124,114,46,116,111,112,62,105,46,98,111,116,116,111,109,41,59,105,102,40,111,41,123,118,97,114,32,97,61,118,111,105,100,32,48,44,115,61,116,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,115,46,116,97,103,78,97,109,101,38,38,40,97,61,110,46,95,116,114,101,101,46,110,111,100,101,40,115,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,110,46,95,116,114,101,101,46,108,111,97,100,77,111,114,101,40,97,44,101,41,125,125,41,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,116,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,116,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,116,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,116,41,123,116,38,38,116,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,116,41,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,39,91,100,97,116,97,45,117,105,100,61,34,39,43,116,43,39,34,93,39,41,59,105,102,40,101,41,114,101,116,117,114,110,32,101,46,105,110,115,112,105,114,101,84,114,101,101,125,125,93,41,44,110,125,40,41,59,114,101,116,117,114,110,32,106,101,125,41,41,125,44,49,51,55,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,10,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,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,116,46,101,120,112,111,114,116,115,61,114,40,110,40,54,52,56,54,41,41,125,41,40,48,44,40,102,117,110,99,116,105,111,110,40,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,101,61,34,117,110,100,101,102,105,110,101,100,34,33,61,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,61,116,121,112,101,111,102,32,110,46,103,63,110,46,103,58,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,115,101,108,102,63,115,101,108,102,58,123,125,59,102,117,110,99,116,105,111,110,32,114,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,105,40,116,44,101,41,123,114,101,116,117,114,110,32,101,61,123,101,120,112,111,114,116,115,58,123,125,125,44,116,40,101,44,101,46,101,120,112,111,114,116,115,41,44,101,46,101,120,112,111,114,116,115,125,102,111,114,40,118,97,114,32,111,61,105,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,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,101,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,116,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,101,40,110,41,44,110,125,125,101,108,115,101,123,118,97,114,32,114,61,110,101,119,32,65,114,114,97,121,40,49,54,41,59,116,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,116,44,101,61,48,59,101,60,49,54,59,101,43,43,41,48,61,61,61,40,51,38,101,41,38,38,40,116,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,114,91,101,93,61,116,62,62,62,40,40,51,38,101,41,60,60,51,41,38,50,53,53,59,114,101,116,117,114,110,32,114,125,125,125,41,41,44,97,61,91,93,44,115,61,48,59,115,60,50,53,54,59,43,43,115,41,97,91,115,93,61,40,115,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,102,117,110,99,116,105,111,110,32,99,40,116,44,101,41,123,118,97,114,32,110,61,101,124,124,48,44,114,61,97,59,114,101,116,117,114,110,32,114,91,116,91,110,43,43,93,93,43,114,91,116,91,110,43,43,93,93,43,114,91,116,91,110,43,43,93,93,43,114,91,116,91,110,43,43,93,93,43,34,45,34,43,114,91,116,91,110,43,43,93,93,43,114,91,116,91,110,43,43,93,93,43,34,45,34,43,114,91,116,91,110,43,43,93,93,43,114,91,116,91,110,43,43,93,93,43,34,45,34,43,114,91,116,91,110,43,43,93,93,43,114,91,116,91,110,43,43,93,93,43,34,45,34,43,114,91,116,91,110,43,43,93,93,43,114,91,116,91,110,43,43,93,93,43,114,91,116,91,110,43,43,93,93,43,114,91,116,91,110,43,43,93,93,43,114,91,116,91,110,43,43,93,93,43,114,91,116,91,110,43,43,93,93,125,118,97,114,32,117,61,99,59,102,117,110,99,116,105,111,110,32,108,40,116,44,101,44,110,41,123,118,97,114,32,114,61,101,38,38,110,124,124,48,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,40,101,61,34,98,105,110,97,114,121,34,61,61,61,116,63,110,101,119,32,65,114,114,97,121,40,49,54,41,58,110,117,108,108,44,116,61,110,117,108,108,41,44,116,61,116,124,124,123,125,59,118,97,114,32,105,61,116,46,114,97,110,100,111,109,124,124,40,116,46,114,110,103,124,124,111,41,40,41,59,105,102,40,105,91,54,93,61,49,53,38,105,91,54,93,124,54,52,44,105,91,56,93,61,54,51,38,105,91,56,93,124,49,50,56,44,101,41,102,111,114,40,118,97,114,32,97,61,48,59,97,60,49,54,59,43,43,97,41,101,91,114,43,97,93,61,105,91,97,93,59,114,101,116,117,114,110,32,101,124,124,117,40,105,41,125,118,97,114,32,102,61,108,59,102,117,110,99,116,105,111,110,32,104,40,101,41,123,114,101,116,117,114,110,32,116,46,101,97,99,104,40,101,46,95,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,44,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,101,46,115,116,97,116,101,40,110,44,116,41,125,41,41,44,101,125,102,117,110,99,116,105,111,110,32,100,40,116,44,101,44,110,44,114,44,105,41,123,114,101,116,117,114,110,32,114,46,115,116,97,116,101,40,116,41,33,61,61,101,38,38,40,114,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,114,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,104,40,114,41,44,114,46,115,116,97,116,101,40,116,44,101,41,44,114,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,34,43,110,44,114,44,33,49,41,44,105,38,38,114,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,114,46,99,104,105,108,100,114,101,110,46,114,101,99,117,114,115,101,68,111,119,110,40,40,102,117,110,99,116,105,111,110,40,114,41,123,100,40,116,44,101,44,110,44,114,41,125,41,41,44,114,46,109,97,114,107,68,105,114,116,121,40,41,44,114,46,95,116,114,101,101,46,101,110,100,40,41,41,44,114,125,118,97,114,32,112,61,105,40,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,10,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,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,116,46,101,120,112,111,114,116,115,61,110,40,41,125,41,40,48,44,40,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,118,97,114,32,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,40,34,111,98,106,101,99,116,34,61,61,61,101,124,124,34,102,117,110,99,116,105,111,110,34,61,61,61,101,41,125,102,117,110,99,116,105,111,110,32,110,40,116,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,125,118,97,114,32,105,61,118,111,105,100,32,48,59,105,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,116,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,116,41,125,59,118,97,114,32,111,61,105,44,97,61,48,44,115,61,118,111,105,100,32,48,44,99,61,118,111,105,100,32,48,44,117,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,120,91,97,93,61,116,44,120,91,97,43,49,93,61,101,44,97,43,61,50,44,50,61,61,61,97,38,38,40,99,63,99,40,79,41,58,107,40,41,41,125,59,102,117,110,99,116,105,111,110,32,108,40,116,41,123,99,61,116,125,102,117,110,99,116,105,111,110,32,102,40,116,41,123,117,61,116,125,118,97,114,32,104,61,34,117,110,100,101,102,105,110,101,100,34,33,61,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,100,61,104,124,124,123,125,44,112,61,100,46,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,124,124,100,46,87,101,98,75,105,116,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,44,118,61,34,117,110,100,101,102,105,110,101,100,34,61,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,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,103,61,34,117,110,100,101,102,105,110,101,100,34,33,61,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,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,61,116,121,112,101,111,102,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,59,102,117,110,99,116,105,111,110,32,109,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,79,41,125,125,102,117,110,99,116,105,111,110,32,98,40,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,115,63,102,117,110,99,116,105,111,110,40,41,123,115,40,79,41,125,58,95,40,41,125,102,117,110,99,116,105,111,110,32,121,40,41,123,118,97,114,32,116,61,48,44,101,61,110,101,119,32,112,40,79,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,101,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,116,61,43,43,116,37,50,125,125,102,117,110,99,116,105,111,110,32,119,40,41,123,118,97,114,32,116,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,116,46,112,111,114,116,49,46,111,110,109,101,115,115,97,103,101,61,79,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,112,111,114,116,50,46,112,111,115,116,77,101,115,115,97,103,101,40,48,41,125,125,102,117,110,99,116,105,111,110,32,95,40,41,123,118,97,114,32,116,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,116,40,79,44,49,41,125,125,118,97,114,32,120,61,110,101,119,32,65,114,114,97,121,40,49,101,51,41,59,102,117,110,99,116,105,111,110,32,79,40,41,123,102,111,114,40,118,97,114,32,116,61,48,59,116,60,97,59,116,43,61,50,41,123,118,97,114,32,101,61,120,91,116,93,44,110,61,120,91,116,43,49,93,59,101,40,110,41,44,120,91,116,93,61,118,111,105,100,32,48,44,120,91,116,43,49,93,61,118,111,105,100,32,48,125,97,61,48,125,102,117,110,99,116,105,111,110,32,83,40,41,123,116,114,121,123,118,97,114,32,116,61,114,44,101,61,116,40,34,118,101,114,116,120,34,41,59,114,101,116,117,114,110,32,115,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,98,40,41,125,99,97,116,99,104,40,110,41,123,114,101,116,117,114,110,32,95,40,41,125,125,118,97,114,32,107,61,118,111,105,100,32,48,59,102,117,110,99,116,105,111,110,32,67,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,44,114,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,106,41,59,118,111,105,100,32,48,61,61,61,114,91,84,93,38,38,116,116,40,114,41,59,118,97,114,32,105,61,110,46,95,115,116,97,116,101,59,105,102,40,105,41,123,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,91,105,45,49,93,59,117,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,88,40,105,44,114,44,111,44,110,46,95,114,101,115,117,108,116,41,125,41,41,125,101,108,115,101,32,87,40,110,44,114,44,116,44,101,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,80,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,116,38,38,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,101,41,114,101,116,117,114,110,32,116,59,118,97,114,32,110,61,110,101,119,32,101,40,106,41,59,114,101,116,117,114,110,32,122,40,110,44,116,41,44,110,125,107,61,118,63,109,40,41,58,112,63,121,40,41,58,103,63,119,40,41,58,118,111,105,100,32,48,61,61,61,104,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,114,63,83,40,41,58,95,40,41,59,118,97,114,32,84,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,59,102,117,110,99,116,105,111,110,32,106,40,41,123,125,118,97,114,32,69,61,118,111,105,100,32,48,44,68,61,49,44,65,61,50,44,76,61,110,101,119,32,113,59,102,117,110,99,116,105,111,110,32,73,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,77,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,36,40,116,41,123,116,114,121,123,114,101,116,117,114,110,32,116,46,116,104,101,110,125,99,97,116,99,104,40,101,114,114,111,114,41,123,114,101,116,117,114,110,32,76,46,101,114,114,111,114,61,101,114,114,111,114,44,76,125,125,102,117,110,99,116,105,111,110,32,70,40,116,44,101,44,110,44,114,41,123,116,114,121,123,116,46,99,97,108,108,40,101,44,110,44,114,41,125,99,97,116,99,104,40,105,41,123,114,101,116,117,114,110,32,105,125,125,102,117,110,99,116,105,111,110,32,82,40,116,44,101,44,110,41,123,117,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,33,49,44,105,61,70,40,110,44,101,44,40,102,117,110,99,116,105,111,110,40,110,41,123,114,124,124,40,114,61,33,48,44,101,33,61,61,110,63,122,40,116,44,110,41,58,72,40,116,44,110,41,41,125,41,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,124,124,40,114,61,33,48,44,85,40,116,44,101,41,41,125,41,44,34,83,101,116,116,108,101,58,32,34,43,40,116,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,114,38,38,105,38,38,40,114,61,33,48,44,85,40,116,44,105,41,41,125,41,44,116,41,125,102,117,110,99,116,105,111,110,32,78,40,116,44,101,41,123,101,46,95,115,116,97,116,101,61,61,61,68,63,72,40,116,44,101,46,95,114,101,115,117,108,116,41,58,101,46,95,115,116,97,116,101,61,61,61,65,63,85,40,116,44,101,46,95,114,101,115,117,108,116,41,58,87,40,101,44,118,111,105,100,32,48,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,122,40,116,44,101,41,125,41,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,85,40,116,44,101,41,125,41,41,125,102,117,110,99,116,105,111,110,32,66,40,116,44,101,44,114,41,123,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,114,61,61,61,67,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,46,114,101,115,111,108,118,101,61,61,61,80,63,78,40,116,44,101,41,58,114,61,61,61,76,63,40,85,40,116,44,76,46,101,114,114,111,114,41,44,76,46,101,114,114,111,114,61,110,117,108,108,41,58,118,111,105,100,32,48,61,61,61,114,63,72,40,116,44,101,41,58,110,40,114,41,63,82,40,116,44,101,44,114,41,58,72,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,122,40,101,44,110,41,123,101,61,61,61,110,63,85,40,101,44,73,40,41,41,58,116,40,110,41,63,66,40,101,44,110,44,36,40,110,41,41,58,72,40,101,44,110,41,125,102,117,110,99,116,105,111,110,32,86,40,116,41,123,116,46,95,111,110,101,114,114,111,114,38,38,116,46,95,111,110,101,114,114,111,114,40,116,46,95,114,101,115,117,108,116,41,44,71,40,116,41,125,102,117,110,99,116,105,111,110,32,72,40,116,44,101,41,123,116,46,95,115,116,97,116,101,61,61,61,69,38,38,40,116,46,95,114,101,115,117,108,116,61,101,44,116,46,95,115,116,97,116,101,61,68,44,48,33,61,61,116,46,95,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,38,38,117,40,71,44,116,41,41,125,102,117,110,99,116,105,111,110,32,85,40,116,44,101,41,123,116,46,95,115,116,97,116,101,61,61,61,69,38,38,40,116,46,95,115,116,97,116,101,61,65,44,116,46,95,114,101,115,117,108,116,61,101,44,117,40,86,44,116,41,41,125,102,117,110,99,116,105,111,110,32,87,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,46,95,115,117,98,115,99,114,105,98,101,114,115,44,111,61,105,46,108,101,110,103,116,104,59,116,46,95,111,110,101,114,114,111,114,61,110,117,108,108,44,105,91,111,93,61,101,44,105,91,111,43,68,93,61,110,44,105,91,111,43,65,93,61,114,44,48,61,61,61,111,38,38,116,46,95,115,116,97,116,101,38,38,117,40,71,44,116,41,125,102,117,110,99,116,105,111,110,32,71,40,116,41,123,118,97,114,32,101,61,116,46,95,115,117,98,115,99,114,105,98,101,114,115,44,110,61,116,46,95,115,116,97,116,101,59,105,102,40,48,33,61,61,101,46,108,101,110,103,116,104,41,123,102,111,114,40,118,97,114,32,114,61,118,111,105,100,32,48,44,105,61,118,111,105,100,32,48,44,111,61,116,46,95,114,101,115,117,108,116,44,97,61,48,59,97,60,101,46,108,101,110,103,116,104,59,97,43,61,51,41,114,61,101,91,97,93,44,105,61,101,91,97,43,110,93,44,114,63,88,40,110,44,114,44,105,44,111,41,58,105,40,111,41,59,116,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,113,40,41,123,116,104,105,115,46,101,114,114,111,114,61,110,117,108,108,125,118,97,114,32,89,61,110,101,119,32,113,59,102,117,110,99,116,105,111,110,32,75,40,116,44,101,41,123,116,114,121,123,114,101,116,117,114,110,32,116,40,101,41,125,99,97,116,99,104,40,110,41,123,114,101,116,117,114,110,32,89,46,101,114,114,111,114,61,110,44,89,125,125,102,117,110,99,116,105,111,110,32,88,40,116,44,101,44,114,44,105,41,123,118,97,114,32,111,61,110,40,114,41,44,97,61,118,111,105,100,32,48,44,115,61,118,111,105,100,32,48,44,99,61,118,111,105,100,32,48,44,117,61,118,111,105,100,32,48,59,105,102,40,111,41,123,105,102,40,97,61,75,40,114,44,105,41,44,97,61,61,61,89,63,40,117,61,33,48,44,115,61,97,46,101,114,114,111,114,44,97,46,101,114,114,111,114,61,110,117,108,108,41,58,99,61,33,48,44,101,61,61,61,97,41,114,101,116,117,114,110,32,118,111,105,100,32,85,40,101,44,77,40,41,41,125,101,108,115,101,32,97,61,105,44,99,61,33,48,59,101,46,95,115,116,97,116,101,33,61,61,69,124,124,40,111,38,38,99,63,122,40,101,44,97,41,58,117,63,85,40,101,44,115,41,58,116,61,61,61,68,63,72,40,101,44,97,41,58,116,61,61,61,65,38,38,85,40,101,44,97,41,41,125,102,117,110,99,116,105,111,110,32,90,40,116,44,101,41,123,116,114,121,123,101,40,40,102,117,110,99,116,105,111,110,40,101,41,123,122,40,116,44,101,41,125,41,44,40,102,117,110,99,116,105,111,110,40,101,41,123,85,40,116,44,101,41,125,41,41,125,99,97,116,99,104,40,110,41,123,85,40,116,44,110,41,125,125,118,97,114,32,74,61,48,59,102,117,110,99,116,105,111,110,32,81,40,41,123,114,101,116,117,114,110,32,74,43,43,125,102,117,110,99,116,105,111,110,32,116,116,40,116,41,123,116,91,84,93,61,74,43,43,44,116,46,95,115,116,97,116,101,61,118,111,105,100,32,48,44,116,46,95,114,101,115,117,108,116,61,118,111,105,100,32,48,44,116,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,101,116,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,118,97,114,32,110,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,44,101,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,116,44,116,104,105,115,46,112,114,111,109,105,115,101,61,110,101,119,32,116,40,106,41,44,116,104,105,115,46,112,114,111,109,105,115,101,91,84,93,124,124,116,116,40,116,104,105,115,46,112,114,111,109,105,115,101,41,44,111,40,101,41,63,40,116,104,105,115,46,108,101,110,103,116,104,61,101,46,108,101,110,103,116,104,44,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,61,101,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,72,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,101,41,44,48,61,61,61,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,38,38,72,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,85,40,116,104,105,115,46,112,114,111,109,105,115,101,44,101,116,40,41,41,125,114,101,116,117,114,110,32,116,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,116,41,123,102,111,114,40,118,97,114,32,101,61,48,59,116,104,105,115,46,95,115,116,97,116,101,61,61,61,69,38,38,101,60,116,46,108,101,110,103,116,104,59,101,43,43,41,116,104,105,115,46,95,101,97,99,104,69,110,116,114,121,40,116,91,101,93,44,101,41,125,44,116,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,116,44,101,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,114,61,110,46,114,101,115,111,108,118,101,59,105,102,40,114,61,61,61,80,41,123,118,97,114,32,105,61,36,40,116,41,59,105,102,40,105,61,61,61,67,38,38,116,46,95,115,116,97,116,101,33,61,61,69,41,116,104,105,115,46,95,115,101,116,116,108,101,100,65,116,40,116,46,95,115,116,97,116,101,44,101,44,116,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,61,116,121,112,101,111,102,32,105,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,101,93,61,116,59,101,108,115,101,32,105,102,40,110,61,61,61,99,116,41,123,118,97,114,32,111,61,110,101,119,32,110,40,106,41,59,66,40,111,44,116,44,105,41,44,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,111,44,101,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,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,41,44,101,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,114,40,116,41,44,101,41,125,44,116,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,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,46,112,114,111,109,105,115,101,59,114,46,95,115,116,97,116,101,61,61,61,69,38,38,40,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,45,45,44,116,61,61,61,65,63,85,40,114,44,110,41,58,116,104,105,115,46,95,114,101,115,117,108,116,91,101,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,72,40,114,44,116,104,105,115,46,95,114,101,115,117,108,116,41,125,44,116,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,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,87,40,116,44,118,111,105,100,32,48,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,95,115,101,116,116,108,101,100,65,116,40,68,44,101,44,116,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,95,115,101,116,116,108,101,100,65,116,40,65,44,101,44,116,41,125,41,41,125,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,114,116,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,110,116,40,116,104,105,115,44,116,41,46,112,114,111,109,105,115,101,125,102,117,110,99,116,105,111,110,32,105,116,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,114,101,116,117,114,110,32,111,40,116,41,63,110,101,119,32,101,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,102,111,114,40,118,97,114,32,105,61,116,46,108,101,110,103,116,104,44,111,61,48,59,111,60,105,59,111,43,43,41,101,46,114,101,115,111,108,118,101,40,116,91,111,93,41,46,116,104,101,110,40,110,44,114,41,125,41,41,58,110,101,119,32,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,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,41,125,102,117,110,99,116,105,111,110,32,111,116,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,110,101,119,32,101,40,106,41,59,114,101,116,117,114,110,32,85,40,110,44,116,41,44,110,125,102,117,110,99,116,105,111,110,32,97,116,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,115,116,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,118,97,114,32,99,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,101,41,123,116,104,105,115,91,84,93,61,81,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,106,33,61,61,101,38,38,40,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,101,38,38,97,116,40,41,44,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,116,63,90,40,116,104,105,115,44,101,41,58,115,116,40,41,41,125,114,101,116,117,114,110,32,116,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,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,104,101,110,40,110,117,108,108,44,116,41,125,44,116,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,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,101,46,99,111,110,115,116,114,117,99,116,111,114,59,114,101,116,117,114,110,32,101,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,114,101,115,111,108,118,101,40,116,40,41,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,125,41,41,125,41,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,114,101,115,111,108,118,101,40,116,40,41,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,101,125,41,41,125,41,41,125,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,117,116,40,41,123,118,97,114,32,116,61,118,111,105,100,32,48,59,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,101,41,116,61,101,59,101,108,115,101,32,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,115,101,108,102,41,116,61,115,101,108,102,59,101,108,115,101,32,116,114,121,123,116,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,105,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,110,61,116,46,80,114,111,109,105,115,101,59,105,102,40,110,41,123,118,97,114,32,114,61,110,117,108,108,59,116,114,121,123,114,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,110,46,114,101,115,111,108,118,101,40,41,41,125,99,97,116,99,104,40,105,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,114,38,38,33,110,46,99,97,115,116,41,114,101,116,117,114,110,125,116,46,80,114,111,109,105,115,101,61,99,116,125,114,101,116,117,114,110,32,99,116,46,112,114,111,116,111,116,121,112,101,46,116,104,101,110,61,67,44,99,116,46,97,108,108,61,114,116,44,99,116,46,114,97,99,101,61,105,116,44,99,116,46,114,101,115,111,108,118,101,61,80,44,99,116,46,114,101,106,101,99,116,61,111,116,44,99,116,46,95,115,101,116,83,99,104,101,100,117,108,101,114,61,108,44,99,116,46,95,115,101,116,65,115,97,112,61,102,44,99,116,46,95,97,115,97,112,61,117,44,99,116,46,112,111,108,121,102,105,108,108,61,117,116,44,99,116,46,80,114,111,109,105,115,101,61,99,116,44,99,116,125,41,41,125,41,41,44,118,61,112,46,80,114,111,109,105,115,101,44,103,61,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,44,109,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,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,114,61,101,91,110,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,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,114,38,38,40,114,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,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,44,114,41,123,114,101,116,117,114,110,32,110,38,38,116,40,101,46,112,114,111,116,111,116,121,112,101,44,110,41,44,114,38,38,116,40,101,44,114,41,44,101,125,125,40,41,44,98,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,101,38,38,110,117,108,108,33,61,61,101,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,101,41,59,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,38,38,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,116,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,101,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,116,44,101,41,58,116,46,95,95,112,114,111,116,111,95,95,61,101,41,125,44,121,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,116,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,101,124,124,34,111,98,106,101,99,116,34,33,61,61,116,121,112,101,111,102,32,101,38,38,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,101,63,116,58,101,125,44,119,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,116,58,65,114,114,97,121,46,102,114,111,109,40,116,41,125,59,102,117,110,99,116,105,111,110,32,95,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,116,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,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,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,116,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,101,44,116,41,58,101,46,95,95,112,114,111,116,111,95,95,61,116,44,101,125,102,117,110,99,116,105,111,110,32,120,40,116,44,101,41,123,105,102,40,101,41,114,101,116,117,114,110,32,116,104,105,115,46,101,120,116,114,97,99,116,40,116,41,59,118,97,114,32,110,61,83,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,102,108,97,116,116,101,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,34,114,101,109,111,118,101,100,34,61,61,61,116,124,124,33,101,46,114,101,109,111,118,101,100,40,41,41,38,38,110,40,101,41,125,41,41,125,102,117,110,99,116,105,111,110,32,79,40,101,44,110,44,114,44,105,41,123,114,101,116,117,114,110,32,110,61,116,46,99,97,115,116,65,114,114,97,121,40,110,41,44,101,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,101,91,105,63,34,114,101,99,117,114,115,101,68,111,119,110,34,58,34,101,97,99,104,34,93,40,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,101,97,99,104,40,110,44,40,102,117,110,99,116,105,111,110,40,110,41,123,116,46,105,115,70,117,110,99,116,105,111,110,40,101,91,110,93,41,38,38,101,91,110,93,46,97,112,112,108,121,40,101,44,114,41,125,41,41,125,41,41,44,101,46,95,116,114,101,101,46,101,110,100,40,41,44,101,125,102,117,110,99,116,105,111,110,32,83,40,101,41,123,118,97,114,32,110,61,101,59,114,101,116,117,114,110,32,116,46,105,115,83,116,114,105,110,103,40,101,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,116,46,105,115,70,117,110,99,116,105,111,110,40,110,91,101,93,41,63,110,91,101,93,40,41,58,110,91,101,93,125,41,44,110,125,118,97,114,32,107,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,44,114,41,123,103,40,116,104,105,115,44,110,41,59,118,97,114,32,105,61,121,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,116,46,105,115,70,117,110,99,116,105,111,110,40,116,46,103,101,116,40,101,44,34,105,115,84,114,101,101,34,41,41,38,38,33,101,46,105,115,84,114,101,101,40,101,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,105,46,95,116,114,101,101,61,101,44,105,46,108,101,110,103,116,104,61,48,44,105,46,95,112,97,103,105,110,97,116,105,111,110,61,123,108,105,109,105,116,58,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,111,116,97,108,58,48,125,44,40,116,46,105,115,65,114,114,97,121,40,114,41,124,124,114,32,105,110,115,116,97,110,99,101,111,102,32,110,41,38,38,116,46,101,97,99,104,40,114,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,32,105,110,115,116,97,110,99,101,111,102,32,106,63,105,46,112,117,115,104,40,116,46,99,108,111,110,101,40,41,41,58,105,46,97,100,100,78,111,100,101,40,116,41,125,41,41,44,105,125,114,101,116,117,114,110,32,98,40,110,44,101,41,44,109,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,101,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,116,46,115,111,114,116,101,100,73,110,100,101,120,66,121,40,116,104,105,115,44,101,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,101,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,116,41,123,114,101,116,117,114,110,32,120,46,99,97,108,108,40,116,104,105,115,44,34,97,118,97,105,108,97,98,108,101,34,44,116,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,116,41,123,114,101,116,117,114,110,32,120,46,99,97,108,108,40,116,104,105,115,44,34,99,104,101,99,107,101,100,34,44,116,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,116,41,123,114,101,116,117,114,110,32,120,46,99,97,108,108,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,100,34,44,116,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,101,41,123,118,97,114,32,114,61,110,101,119,32,110,40,116,104,105,115,46,95,116,114,101,101,41,59,114,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,105,61,102,117,110,99,116,105,111,110,40,116,41,123,116,32,105,110,115,116,97,110,99,101,111,102,32,106,38,38,114,46,112,117,115,104,40,116,41,125,59,114,101,116,117,114,110,32,116,46,101,97,99,104,40,116,104,105,115,44,105,41,44,116,46,101,97,99,104,40,101,44,105,41,44,114,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,114,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,101,41,123,118,97,114,32,114,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,105,41,123,105,102,40,33,116,46,105,115,70,117,110,99,116,105,111,110,40,105,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,111,61,110,101,119,32,110,40,114,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,116,46,101,97,99,104,40,114,44,40,102,117,110,99,116,105,111,110,40,116,41,123,111,46,112,117,115,104,40,116,46,99,111,112,121,40,101,41,46,116,111,40,105,41,41,125,41,41,44,111,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,116,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,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,105,108,100,114,101,110,124,124,116,46,112,117,115,104,40,101,41,125,41,41,44,116,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,101,41,123,114,101,116,117,114,110,32,116,46,101,97,99,104,40,116,104,105,115,44,101,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,116,41,123,114,101,116,117,114,110,32,120,46,99,97,108,108,40,116,104,105,115,44,34,101,100,105,116,97,98,108,101,34,44,116,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,116,41,123,114,101,116,117,114,110,32,120,46,99,97,108,108,40,116,104,105,115,44,34,101,100,105,116,105,110,103,34,44,116,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,116,41,123,114,101,116,117,114,110,32,120,46,99,97,108,108,40,116,104,105,115,44,34,101,120,112,97,110,100,101,100,34,44,116,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,116,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,118,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,48,44,114,61,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,45,45,110,38,38,101,40,116,41,125,59,116,46,114,101,99,117,114,115,101,68,111,119,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,110,43,43,44,116,46,99,104,105,108,100,114,101,110,63,116,46,101,120,112,97,110,100,40,41,46,99,97,116,99,104,40,114,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,41,123,116,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,114,41,46,116,104,101,110,40,114,41,125,41,41,58,114,40,41,125,41,41,125,41,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,101,41,123,118,97,114,32,114,61,116,104,105,115,46,102,108,97,116,116,101,110,40,101,41,44,105,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,46,101,97,99,104,40,114,44,40,102,117,110,99,116,105,111,110,40,116,41,123,105,46,97,100,100,78,111,100,101,40,116,46,99,111,112,121,72,105,101,114,97,114,99,104,121,40,41,41,125,41,41,44,105,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,101,41,123,118,97,114,32,114,61,83,40,101,41,44,105,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,46,101,97,99,104,40,116,104,105,115,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,40,116,41,38,38,105,46,112,117,115,104,40,116,41,125,41,41,44,105,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,116,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,44,114,61,83,40,116,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,40,102,117,110,99,116,105,111,110,40,116,41,123,114,40,116,41,38,38,101,46,112,117,115,104,40,116,41,125,41,41,44,101,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,116,41,123,114,101,116,117,114,110,32,120,46,99,97,108,108,40,116,104,105,115,44,34,102,111,99,117,115,101,100,34,44,116,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,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,116,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,116,41,123,114,101,116,117,114,110,32,116,104,105,115,91,116,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,116,41,123,114,101,116,117,114,110,32,120,46,99,97,108,108,40,116,104,105,115,44,34,104,105,100,100,101,110,34,44,116,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,116,41,123,114,101,116,117,114,110,32,120,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,116,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,101,44,114,41,123,105,102,40,114,46,105,100,41,123,118,97,114,32,105,61,116,104,105,115,46,110,111,100,101,40,114,46,105,100,41,59,105,102,40,105,41,114,101,116,117,114,110,32,105,46,114,101,115,116,111,114,101,40,41,46,115,104,111,119,40,41,44,116,46,105,115,65,114,114,97,121,76,105,107,101,40,114,46,99,104,105,108,100,114,101,110,41,63,40,116,46,105,115,65,114,114,97,121,76,105,107,101,40,105,46,99,104,105,108,100,114,101,110,41,124,124,40,105,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,105,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,105,41,44,116,46,101,97,99,104,40,114,46,99,104,105,108,100,114,101,110,44,40,102,117,110,99,116,105,111,110,40,116,41,123,105,46,99,104,105,108,100,114,101,110,46,97,100,100,78,111,100,101,40,116,41,125,41,41,41,58,114,46,99,104,105,108,100,114,101,110,38,38,116,46,105,115,66,111,111,108,101,97,110,40,105,46,99,104,105,108,100,114,101,110,41,38,38,40,105,46,99,104,105,108,100,114,101,110,61,114,46,99,104,105,108,100,114,101,110,41,44,105,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,105,125,118,97,114,32,111,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,114,41,63,114,58,69,40,116,104,105,115,46,95,116,114,101,101,44,114,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,112,108,105,99,101,40,101,44,48,44,111,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,38,38,40,111,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,111,41,44,111,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,101,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,111,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,116,44,101,41,123,114,101,116,117,114,110,32,79,40,116,104,105,115,44,116,44,101,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,116,44,101,41,123,114,101,116,117,114,110,32,79,40,116,104,105,115,44,116,44,101,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,116,41,123,114,101,116,117,114,110,32,120,46,99,97,108,108,40,116,104,105,115,44,34,108,111,97,100,105,110,103,34,44,116,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,101,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,118,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,114,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,118,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,116,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,101,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,114,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,114,61,118,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,114,46,116,104,101,110,40,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,41,46,99,97,116,99,104,40,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,41,44,114,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,116,41,123,114,101,116,117,114,110,32,120,46,99,97,108,108,40,116,104,105,115,44,34,109,97,116,99,104,101,100,34,44,116,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,116,44,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,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,114,61,116,104,105,115,91,116,93,46,114,101,109,111,118,101,40,41,44,105,61,110,46,105,110,115,101,114,116,65,116,40,101,44,114,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,105,44,116,104,105,115,44,116,44,110,44,101,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,110,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,101,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,40,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,110,46,105,100,61,61,61,116,41,114,101,116,117,114,110,32,101,61,110,44,33,49,125,41,41,44,101,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,101,41,123,118,97,114,32,114,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,116,46,105,115,65,114,114,97,121,40,101,41,38,38,40,114,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,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,105,110,100,101,120,79,102,40,116,46,105,100,41,62,45,49,38,38,114,46,112,117,115,104,40,116,41,125,41,41,41,44,116,46,105,115,65,114,114,97,121,40,101,41,63,114,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,116,41,123,114,101,116,117,114,110,32,67,40,116,104,105,115,44,116,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,101,41,123,114,101,116,117,114,110,32,116,46,114,101,109,111,118,101,40,116,104,105,115,44,123,105,100,58,101,46,105,100,125,41,44,116,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,116,41,123,114,101,116,117,114,110,32,120,46,99,97,108,108,40,116,104,105,115,44,34,114,101,109,111,118,101,100,34,44,116,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,116,41,123,114,101,116,117,114,110,32,120,46,99,97,108,108,40,116,104,105,115,44,34,115,101,108,101,99,116,97,98,108,101,34,44,116,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,116,41,123,114,101,116,117,114,110,32,120,46,99,97,108,108,40,116,104,105,115,44,34,115,101,108,101,99,116,101,100,34,44,116,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,101,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,101,61,101,124,124,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,44,101,41,123,118,97,114,32,114,61,116,46,115,111,114,116,66,121,40,116,104,105,115,44,101,41,59,116,104,105,115,46,108,101,110,103,116,104,61,48,44,116,46,101,97,99,104,40,114,44,40,102,117,110,99,116,105,111,110,40,116,41,123,110,46,112,117,115,104,40,116,41,125,41,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,116,44,101,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,116,46,99,111,110,116,101,120,116,40,41,44,114,61,101,46,99,111,110,116,101,120,116,40,41,44,105,61,110,46,105,110,100,101,120,79,102,40,116,41,44,111,61,114,46,105,110,100,101,120,79,102,40,101,41,59,114,101,116,117,114,110,32,110,61,61,61,114,63,40,116,104,105,115,91,105,93,61,101,44,116,104,105,115,91,111,93,61,116,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,110,44,105,44,114,44,111,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,101,44,114,44,111,44,110,44,105,41,41,58,40,110,46,109,111,118,101,40,105,44,114,46,105,110,100,101,120,79,102,40,101,41,44,114,41,44,114,46,109,111,118,101,40,114,46,105,110,100,101,120,79,102,40,101,41,44,105,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,116,44,110,44,105,44,101,44,114,44,111,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,101,61,91,93,59,114,101,116,117,114,110,32,116,46,101,97,99,104,40,116,104,105,115,44,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,112,117,115,104,40,116,46,116,111,79,98,106,101,99,116,40,41,41,125,41,41,44,101,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,116,41,123,114,101,116,117,114,110,32,120,46,99,97,108,108,40,116,104,105,115,44,34,118,105,115,105,98,108,101,34,44,116,41,125,125,93,41,44,110,125,40,95,40,65,114,114,97,121,41,41,59,102,117,110,99,116,105,111,110,32,67,40,101,44,110,41,123,118,97,114,32,114,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,107,63,116,46,101,97,99,104,40,101,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,61,67,40,116,44,110,41,44,114,125,41,41,58,101,32,105,110,115,116,97,110,99,101,111,102,32,106,38,38,40,114,61,110,40,101,41,44,33,49,33,61,61,114,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,114,61,67,40,101,46,99,104,105,108,100,114,101,110,44,110,41,41,41,44,114,125,102,117,110,99,116,105,111,110,32,80,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,118,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,105,102,40,33,116,46,105,115,79,98,106,101,99,116,40,101,41,41,114,101,116,117,114,110,32,114,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,116,46,105,115,70,117,110,99,116,105,111,110,40,101,46,116,104,101,110,41,38,38,101,46,116,104,101,110,40,110,41,44,116,46,105,115,70,117,110,99,116,105,111,110,40,101,46,101,114,114,111,114,41,63,101,46,101,114,114,111,114,40,114,41,58,116,46,105,115,70,117,110,99,116,105,111,110,40,101,46,99,97,116,99,104,41,38,38,101,46,99,97,116,99,104,40,114,41,125,41,41,125,102,117,110,99,116,105,111,110,32,84,40,101,44,110,41,123,118,97,114,32,114,61,123,125,59,114,101,116,117,114,110,32,110,61,116,46,99,97,115,116,65,114,114,97,121,40,110,41,44,110,46,112,117,115,104,40,34,114,101,102,34,41,44,116,46,101,97,99,104,40,101,44,40,102,117,110,99,116,105,111,110,40,101,44,105,41,123,116,46,105,110,99,108,117,100,101,115,40,110,44,105,41,124,124,40,114,91,105,93,61,116,46,99,108,111,110,101,68,101,101,112,40,101,41,41,125,41,41,44,114,125,118,97,114,32,106,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,110,44,114,44,105,41,123,118,97,114,32,111,61,116,104,105,115,59,103,40,116,104,105,115,44,101,41,44,116,104,105,115,46,95,116,114,101,101,61,110,44,114,32,105,110,115,116,97,110,99,101,111,102,32,101,38,38,40,105,61,116,46,99,97,115,116,65,114,114,97,121,40,105,41,44,105,46,112,117,115,104,40,34,95,116,114,101,101,34,41,44,116,46,101,97,99,104,40,114,44,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,116,46,105,110,99,108,117,100,101,115,40,105,44,110,41,124,124,40,116,46,105,115,79,98,106,101,99,116,40,101,41,63,111,91,110,93,61,101,32,105,110,115,116,97,110,99,101,111,102,32,107,63,101,46,99,108,111,110,101,40,41,58,34,105,116,114,101,101,34,61,61,61,110,63,84,40,101,41,58,116,46,99,108,111,110,101,68,101,101,112,40,101,41,58,111,91,110,93,61,101,41,125,41,41,41,125,114,101,116,117,114,110,32,109,40,101,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,101,41,123,114,101,116,117,114,110,33,116,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,116,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,107,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,101,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,101,41,123,118,97,114,32,110,61,116,104,105,115,44,114,61,110,101,119,32,107,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,116,46,101,97,99,104,40,101,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,46,112,117,115,104,40,110,46,97,100,100,67,104,105,108,100,40,116,41,41,125,41,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,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,116,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,100,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,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,101,61,33,116,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,59,114,101,116,117,114,110,32,100,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,101,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,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,46,104,97,115,80,97,114,101,110,116,40,41,41,123,118,97,114,32,101,61,116,46,103,101,116,80,97,114,101,110,116,40,41,59,101,46,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,40,41,124,124,101,46,104,105,100,101,40,41,125,125,41,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,116,41,123,114,101,116,117,114,110,32,110,101,119,32,101,40,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,44,116,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,100,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,101,41,123,118,97,114,32,110,61,116,104,105,115,59,114,101,116,117,114,110,32,101,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,101,41,123,105,102,40,33,116,46,105,115,70,117,110,99,116,105,111,110,40,101,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,101,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,101,41,123,118,97,114,32,110,61,91,93,44,114,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,115,40,41,59,105,102,40,116,46,101,97,99,104,40,114,44,40,102,117,110,99,116,105,111,110,40,116,41,123,110,46,112,117,115,104,40,116,46,116,111,79,98,106,101,99,116,40,101,41,41,125,41,41,44,114,61,110,46,114,101,118,101,114,115,101,40,41,44,33,101,41,123,118,97,114,32,105,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,105,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,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,116,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,41,125,41,41,46,116,111,65,114,114,97,121,40,41,44,105,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,105,41,44,110,46,112,117,115,104,40,105,41,125,118,97,114,32,111,61,110,91,48,93,44,97,61,111,44,115,61,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,46,101,97,99,104,40,110,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,114,61,91,93,59,101,43,49,60,115,38,38,40,114,46,112,117,115,104,40,110,91,101,43,49,93,41,44,97,46,99,104,105,108,100,114,101,110,61,114,44,97,61,97,46,99,104,105,108,100,114,101,110,91,48,93,41,125,41,41,44,69,40,116,104,105,115,46,95,116,114,101,101,44,111,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,116,41,123,105,102,40,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,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,101,61,33,116,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,59,100,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,101,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,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,116,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,118,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,61,116,46,104,97,115,67,104,105,108,100,114,101,110,40,41,124,124,116,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,33,48,61,61,61,116,46,99,104,105,108,100,114,101,110,59,114,38,38,40,116,46,99,111,108,108,97,112,115,101,100,40,41,124,124,116,46,104,105,100,100,101,110,40,41,41,63,40,116,46,115,116,97,116,101,40,34,99,111,108,108,97,112,115,101,100,34,44,33,49,41,44,116,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,44,33,49,41,44,116,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,116,41,44,116,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,33,48,61,61,61,116,46,99,104,105,108,100,114,101,110,63,116,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,110,41,58,40,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,101,40,116,41,41,41,58,101,40,116,41,125,41,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,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,120,112,97,110,100,40,41,125,41,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,107,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,116,61,110,101,119,32,107,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,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,101,41,125,41,41,44,116,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,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,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,117,110,115,104,105,102,116,40,101,46,116,101,120,116,41,125,41,41,44,116,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,116,41,123,118,97,114,32,101,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,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,33,40,101,61,110,46,105,100,61,61,61,116,46,105,100,41,125,41,41,44,101,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,116,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,116,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,116,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,116,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,116,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,116,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,116,61,100,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,116,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,116,46,99,104,105,108,100,114,101,110,46,104,105,100,101,40,41,44,116,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,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,40,102,117,110,99,116,105,111,110,40,110,41,123,101,46,112,117,115,104,40,116,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,41,44,101,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,101,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,101,61,116,46,102,105,110,100,76,97,115,116,40,116,104,105,115,46,99,104,105,108,100,114,101,110,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,118,105,115,105,98,108,101,40,41,125,41,41,59,118,97,114,32,110,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,59,110,38,38,40,101,61,110,41,125,114,101,116,117,114,110,32,101,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,101,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,118,40,40,102,117,110,99,116,105,111,110,40,110,44,114,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,114,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,101,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,48,41,44,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,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,105,44,111,41,123,105,102,40,33,116,46,105,115,65,114,114,97,121,76,105,107,101,40,105,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,101,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,101,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,97,61,68,40,101,46,95,116,114,101,101,44,105,44,101,41,59,116,46,105,115,65,114,114,97,121,76,105,107,101,40,101,46,99,104,105,108,100,114,101,110,41,63,101,46,99,104,105,108,100,114,101,110,61,101,46,99,104,105,108,100,114,101,110,46,99,111,110,99,97,116,40,97,41,58,101,46,99,104,105,108,100,114,101,110,61,97,44,116,46,112,97,114,115,101,73,110,116,40,111,41,62,105,46,108,101,110,103,116,104,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,116,46,112,97,114,115,101,73,110,116,40,111,41,41,44,34,99,104,101,99,107,98,111,120,34,61,61,61,101,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,101,46,115,101,108,101,99,116,101,100,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,115,101,108,101,99,116,40,41,44,101,46,109,97,114,107,68,105,114,116,121,40,41,44,101,46,95,116,114,101,101,46,101,110,100,40,41,44,110,40,101,46,99,104,105,108,100,114,101,110,41,44,101,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,101,41,125,44,111,61,102,117,110,99,116,105,111,110,40,116,41,123,101,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,49,41,44,101,46,99,104,105,108,100,114,101,110,61,110,101,119,32,107,40,101,46,95,116,114,101,101,41,44,101,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,101,44,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,114,40,116,41,44,101,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,116,41,125,44,97,61,101,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,101,46,99,104,105,108,100,114,101,110,41,63,101,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,115,61,101,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,40,101,44,105,44,111,44,97,41,59,116,46,105,115,79,98,106,101,99,116,40,115,41,38,38,80,40,115,41,46,116,104,101,110,40,105,41,46,99,97,116,99,104,40,111,41,125,41,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,118,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,116,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,101,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,59,116,61,101,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,44,116,124,124,40,116,61,101,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,116,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,101,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,101,61,116,46,102,105,110,100,40,116,104,105,115,46,99,104,105,108,100,114,101,110,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,118,105,115,105,98,108,101,40,41,125,41,41,41,44,101,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,116,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,116,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,44,116,124,124,40,116,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,116,124,124,40,116,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,116,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,101,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,116,46,102,105,110,100,73,110,100,101,120,40,101,44,123,105,100,58,116,104,105,115,46,105,100,125,41,59,114,101,116,117,114,110,32,116,46,102,105,110,100,40,116,46,115,108,105,99,101,40,101,44,110,43,49,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,118,105,115,105,98,108,101,40,41,125,41,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,116,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,116,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,116,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,44,116,38,38,116,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,33,116,46,99,111,108,108,97,112,115,101,100,40,41,38,38,40,116,61,116,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,116,38,38,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,40,116,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,41,44,116,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,101,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,116,46,102,105,110,100,73,110,100,101,120,40,101,44,123,105,100,58,116,104,105,115,46,105,100,125,41,59,114,101,116,117,114,110,32,116,46,102,105,110,100,76,97,115,116,40,116,46,115,108,105,99,101,40,101,44,48,44,110,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,118,105,115,105,98,108,101,40,41,125,41,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,116,41,123,114,101,116,117,114,110,32,67,40,116,104,105,115,44,116,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,116,41,123,118,97,114,32,101,61,116,40,116,104,105,115,41,59,114,101,116,117,114,110,33,49,33,61,61,101,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,116,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,116,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,101,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,114,61,48,59,116,104,105,115,46,99,104,105,108,100,114,101,110,46,101,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,99,104,101,99,107,101,100,40,41,38,38,114,43,43,44,116,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,38,38,110,43,43,125,41,41,44,114,61,61,61,101,63,100,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,100,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,101,62,48,38,38,114,62,48,38,38,114,60,101,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,116,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,116,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,118,40,40,102,117,110,99,116,105,111,110,40,101,44,110,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,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,116,46,99,104,105,108,100,114,101,110,61,33,48,44,116,46,99,111,108,108,97,112,115,101,40,41,44,116,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,110,41,125,41,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,116,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,101,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,101,38,38,40,101,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,46,109,97,114,107,68,105,114,116,121,40,41,41,59,118,97,114,32,110,61,101,63,101,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,59,110,46,116,111,116,97,108,45,45,59,118,97,114,32,114,61,116,104,105,115,46,116,111,79,98,106,101,99,116,40,33,49,44,116,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,114,44,101,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,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,100,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,116,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,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,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,101,125,118,97,114,32,110,61,33,116,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,59,100,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,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,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,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,61,116,121,112,101,111,102,32,116,63,116,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,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,91,116,93,61,101,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,100,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,116,44,101,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,116,93,59,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,101,38,38,110,33,61,61,101,38,38,40,116,104,105,115,46,105,116,114,101,101,46,115,116,97,116,101,91,116,93,61,101,44,34,114,101,110,100,101,114,101,100,34,33,61,61,116,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,116,44,110,44,101,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,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,44,105,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,116,46,101,97,99,104,40,101,44,40,102,117,110,99,116,105,111,110,40,116,41,123,105,46,112,117,115,104,40,114,46,115,116,97,116,101,40,116,44,110,41,41,125,41,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,115,119,97,112,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,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,116,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,100,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,101,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,114,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,105,61,123,125,44,111,61,116,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,116,46,101,97,99,104,40,111,44,40,102,117,110,99,116,105,111,110,40,116,41,123,105,91,116,93,61,101,91,116,93,125,41,41,59,118,97,114,32,97,61,105,46,105,116,114,101,101,61,123,125,59,114,101,116,117,114,110,32,97,46,97,61,116,104,105,115,46,105,116,114,101,101,46,97,44,97,46,105,99,111,110,61,116,104,105,115,46,105,116,114,101,101,46,105,99,111,110,44,97,46,108,105,61,116,104,105,115,46,105,116,114,101,101,46,108,105,44,114,38,38,40,97,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,116,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,105,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,105,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,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,101,61,33,116,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,59,114,101,116,117,114,110,32,100,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,101,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,118,97,114,32,116,61,33,48,59,114,101,116,117,114,110,32,116,61,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,44,116,125,125,93,41,44,101,125,40,41,59,102,117,110,99,116,105,111,110,32,69,40,101,44,110,44,114,41,123,110,46,105,100,61,110,46,105,100,124,124,102,40,41,44,34,115,116,114,105,110,103,34,33,61,61,116,121,112,101,111,102,32,110,46,105,100,38,38,34,110,117,109,98,101,114,34,33,61,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,105,61,110,46,105,116,114,101,101,61,110,46,105,116,114,101,101,124,124,123,125,59,105,46,105,99,111,110,61,105,46,105,99,111,110,124,124,33,49,44,105,46,100,105,114,116,121,61,33,49,59,118,97,114,32,111,61,105,46,108,105,61,105,46,108,105,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,105,46,97,61,105,46,97,124,124,123,125,59,97,46,97,116,116,114,105,98,117,116,101,115,61,97,46,97,116,116,114,105,98,117,116,101,115,124,124,123,125,59,118,97,114,32,115,61,105,46,115,116,97,116,101,61,105,46,115,116,97,116,101,124,124,123,125,59,114,101,116,117,114,110,32,115,46,99,111,108,108,97,112,115,101,100,61,34,98,111,111,108,101,97,110,34,61,61,61,116,121,112,101,111,102,32,115,46,99,111,108,108,97,112,115,101,100,63,115,46,99,111,108,108,97,112,115,101,100,58,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,99,111,108,108,97,112,115,101,100,44,115,46,115,101,108,101,99,116,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,61,116,121,112,101,111,102,32,115,46,115,101,108,101,99,116,97,98,108,101,63,115,46,115,101,108,101,99,116,97,98,108,101,58,101,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,115,46,100,114,97,103,103,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,61,116,121,112,101,111,102,32,115,46,100,114,97,103,103,97,98,108,101,63,115,46,100,114,97,103,103,97,98,108,101,58,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,100,114,97,103,103,97,98,108,101,44,115,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,61,116,121,112,101,111,102,32,115,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,63,115,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,58,101,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,115,46,99,104,101,99,107,101,100,61,34,98,111,111,108,101,97,110,34,61,61,61,116,121,112,101,111,102,32,115,46,99,104,101,99,107,101,100,38,38,115,46,99,104,101,99,107,101,100,44,115,46,101,100,105,116,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,61,116,121,112,101,111,102,32,115,46,101,100,105,116,97,98,108,101,63,115,46,101,100,105,116,97,98,108,101,58,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,101,100,105,116,97,98,108,101,44,115,46,101,100,105,116,105,110,103,61,34,98,111,111,108,101,97,110,34,61,61,61,116,121,112,101,111,102,32,115,46,101,100,105,116,105,110,103,63,115,46,101,100,105,116,105,110,103,58,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,101,100,105,116,105,110,103,44,115,46,102,111,99,117,115,101,100,61,115,46,102,111,99,117,115,101,100,124,124,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,102,111,99,117,115,101,100,44,115,46,104,105,100,100,101,110,61,115,46,104,105,100,100,101,110,124,124,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,104,105,100,100,101,110,44,115,46,105,110,100,101,116,101,114,109,105,110,97,116,101,61,115,46,105,110,100,101,116,101,114,109,105,110,97,116,101,124,124,101,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,115,46,108,111,97,100,105,110,103,61,115,46,108,111,97,100,105,110,103,124,124,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,108,111,97,100,105,110,103,44,115,46,114,101,109,111,118,101,100,61,115,46,114,101,109,111,118,101,100,124,124,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,114,101,109,111,118,101,100,44,115,46,114,101,110,100,101,114,101,100,61,115,46,114,101,110,100,101,114,101,100,124,124,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,114,101,110,100,101,114,101,100,44,115,46,115,101,108,101,99,116,101,100,61,115,46,115,101,108,101,99,116,101,100,124,124,101,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,114,44,110,61,116,46,97,115,115,105,103,110,40,110,101,119,32,106,40,101,41,44,110,41,44,116,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,68,40,101,44,110,46,99,104,105,108,100,114,101,110,44,110,41,41,44,101,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,38,38,116,46,101,97,99,104,40,101,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,44,40,102,117,110,99,116,105,111,110,40,116,41,123,115,91,116,93,38,38,101,46,101,109,105,116,40,34,110,111,100,101,46,34,43,116,44,110,44,33,48,41,125,41,41,44,110,125,102,117,110,99,116,105,111,110,32,68,40,101,44,110,44,114,41,123,118,97,114,32,105,61,110,101,119,32,107,40,101,41,59,114,101,116,117,114,110,32,101,46,99,111,110,102,105,103,46,115,111,114,116,38,38,40,110,61,116,46,115,111,114,116,66,121,40,110,44,101,46,99,111,110,102,105,103,46,115,111,114,116,41,41,44,116,46,101,97,99,104,40,110,44,40,102,117,110,99,116,105,111,110,40,116,41,123,105,46,112,117,115,104,40,69,40,101,44,116,44,114,41,41,125,41,41,44,105,46,95,99,111,110,116,101,120,116,61,114,44,105,125,118,97,114,32,65,61,105,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,10,47,42,33,10,32,42,32,69,118,101,110,116,69,109,105,116,116,101,114,50,10,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,105,106,49,110,120,47,69,118,101,110,116,69,109,105,116,116,101,114,50,10,32,42,10,32,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,51,32,104,105,106,49,110,120,10,32,42,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,46,10,32,42,47,10,33,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,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,116,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,116,41,125,44,114,61,49,48,59,102,117,110,99,116,105,111,110,32,105,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,111,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,111,40,116,41,123,116,63,40,116,104,105,115,46,95,99,111,110,102,61,116,44,116,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,116,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,116,46,109,97,120,76,105,115,116,101,110,101,114,115,33,61,61,101,63,116,46,109,97,120,76,105,115,116,101,110,101,114,115,58,114,44,116,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,116,46,119,105,108,100,99,97,114,100,41,44,116,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,116,46,110,101,119,76,105,115,116,101,110,101,114,41,44,116,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,116,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,44,116,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,116,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,114,125,102,117,110,99,116,105,111,110,32,97,40,116,44,101,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,116,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,101,43,34,46,34,41,44,34,117,110,100,101,102,105,110,101,100,34,33,61,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,114,61,110,101,119,32,69,114,114,111,114,40,110,41,59,114,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,114,46,101,109,105,116,116,101,114,61,116,104,105,115,44,114,46,99,111,117,110,116,61,116,44,112,114,111,99,101,115,115,46,101,109,105,116,87,97,114,110,105,110,103,40,114,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,116,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,111,46,99,97,108,108,40,116,104,105,115,44,116,41,125,102,117,110,99,116,105,111,110,32,99,40,116,44,101,44,110,44,114,41,123,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,44,102,44,104,61,91,93,44,100,61,101,46,108,101,110,103,116,104,44,112,61,101,91,114,93,44,118,61,101,91,114,43,49,93,59,105,102,40,114,61,61,61,100,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,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,116,38,38,116,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,105,61,48,44,111,61,110,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,59,105,60,111,59,105,43,43,41,116,38,38,116,46,112,117,115,104,40,110,46,95,108,105,115,116,101,110,101,114,115,91,105,93,41,59,114,101,116,117,114,110,91,110,93,125,105,102,40,34,42,34,61,61,61,112,124,124,34,42,42,34,61,61,61,112,124,124,110,91,112,93,41,123,105,102,40,34,42,34,61,61,61,112,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,104,61,104,46,99,111,110,99,97,116,40,99,40,116,44,101,44,110,91,97,93,44,114,43,49,41,41,41,59,114,101,116,117,114,110,32,104,125,105,102,40,34,42,42,34,61,61,61,112,41,123,102,111,114,40,97,32,105,110,32,102,61,114,43,49,61,61,61,100,124,124,114,43,50,61,61,61,100,38,38,34,42,34,61,61,61,118,44,102,38,38,110,46,95,108,105,115,116,101,110,101,114,115,38,38,40,104,61,104,46,99,111,110,99,97,116,40,99,40,116,44,101,44,110,44,100,41,41,41,44,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,102,38,38,40,104,61,104,46,99,111,110,99,97,116,40,99,40,116,44,101,44,110,91,97,93,44,100,41,41,41,44,104,61,104,46,99,111,110,99,97,116,40,99,40,116,44,101,44,110,91,97,93,44,114,41,41,41,58,104,61,97,61,61,61,118,63,104,46,99,111,110,99,97,116,40,99,40,116,44,101,44,110,91,97,93,44,114,43,50,41,41,58,104,46,99,111,110,99,97,116,40,99,40,116,44,101,44,110,91,97,93,44,114,41,41,41,59,114,101,116,117,114,110,32,104,125,104,61,104,46,99,111,110,99,97,116,40,99,40,116,44,101,44,110,91,112,93,44,114,43,49,41,41,125,105,102,40,115,61,110,91,34,42,34,93,44,115,38,38,99,40,116,44,101,44,115,44,114,43,49,41,44,117,61,110,91,34,42,42,34,93,44,117,41,105,102,40,114,60,100,41,102,111,114,40,97,32,105,110,32,117,46,95,108,105,115,116,101,110,101,114,115,38,38,99,40,116,44,101,44,117,44,100,41,44,117,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,97,38,38,117,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,118,63,99,40,116,44,101,44,117,91,97,93,44,114,43,50,41,58,97,61,61,61,112,63,99,40,116,44,101,44,117,91,97,93,44,114,43,49,41,58,40,108,61,123,125,44,108,91,97,93,61,117,91,97,93,44,99,40,116,44,101,44,123,34,42,42,34,58,108,125,44,114,43,49,41,41,41,59,101,108,115,101,32,117,46,95,108,105,115,116,101,110,101,114,115,63,99,40,116,44,101,44,117,44,100,41,58,117,91,34,42,34,93,38,38,117,91,34,42,34,93,46,95,108,105,115,116,101,110,101,114,115,38,38,99,40,116,44,101,44,117,91,34,42,34,93,44,100,41,59,114,101,116,117,114,110,32,104,125,102,117,110,99,116,105,111,110,32,117,40,116,44,110,41,123,116,61,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,63,116,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,116,46,115,108,105,99,101,40,41,59,102,111,114,40,118,97,114,32,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,43,49,60,105,59,114,43,43,41,105,102,40,34,42,42,34,61,61,61,116,91,114,93,38,38,34,42,42,34,61,61,61,116,91,114,43,49,93,41,114,101,116,117,114,110,59,118,97,114,32,111,61,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,115,61,116,46,115,104,105,102,116,40,41,59,119,104,105,108,101,40,115,33,61,61,101,41,123,105,102,40,111,91,115,93,124,124,40,111,91,115,93,61,123,125,41,44,111,61,111,91,115,93,44,48,61,61,61,116,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,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,97,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,115,41,41,41,58,111,46,95,108,105,115,116,101,110,101,114,115,61,110,44,33,48,59,115,61,116,46,115,104,105,102,116,40,41,125,114,101,116,117,114,110,33,48,125,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,116,41,123,116,33,61,61,101,38,38,40,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,116,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,116,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,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,99,101,40,116,44,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,79,110,99,101,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,99,101,40,116,44,101,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,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,116,44,49,44,101,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,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,116,44,101,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,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,116,44,101,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,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,104,105,115,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,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,102,117,110,99,116,105,111,110,32,111,40,41,123,114,101,116,117,114,110,32,48,61,61,61,45,45,101,38,38,105,46,111,102,102,40,116,44,111,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,114,101,116,117,114,110,32,111,46,95,111,114,105,103,105,110,61,110,44,116,104,105,115,46,95,111,110,40,116,44,111,44,114,41,44,105,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,105,46,99,97,108,108,40,116,104,105,115,41,59,118,97,114,32,116,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,116,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,101,44,110,44,114,44,111,44,97,44,115,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,115,62,51,41,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,115,41,44,111,61,48,59,111,60,115,59,111,43,43,41,101,91,111,93,61,97,114,103,117,109,101,110,116,115,91,111,93,59,102,111,114,40,114,61,48,44,110,61,97,46,108,101,110,103,116,104,59,114,60,110,59,114,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,116,44,115,41,123,99,97,115,101,32,49,58,97,91,114,93,46,99,97,108,108,40,116,104,105,115,44,116,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,116,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,116,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,101,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,117,61,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,63,116,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,116,46,115,108,105,99,101,40,41,59,99,46,99,97,108,108,40,116,104,105,115,44,97,44,117,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,97,61,116,104,105,115,46,95,101,118,101,110,116,115,91,116,93,44,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,97,41,123,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,116,44,115,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,101,61,110,101,119,32,65,114,114,97,121,40,115,45,49,41,44,111,61,49,59,111,60,115,59,111,43,43,41,101,91,111,45,49,93,61,97,114,103,117,109,101,110,116,115,91,111,93,59,97,46,97,112,112,108,121,40,116,104,105,115,44,101,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,115,62,51,41,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,115,45,49,41,44,111,61,49,59,111,60,115,59,111,43,43,41,101,91,111,45,49,93,61,97,114,103,117,109,101,110,116,115,91,111,93,59,102,111,114,40,114,61,48,44,110,61,97,46,108,101,110,103,116,104,59,114,60,110,59,114,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,116,44,115,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,101,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,116,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,105,46,99,97,108,108,40,116,104,105,115,41,59,118,97,114,32,116,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,116,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,101,44,110,44,114,44,111,44,97,44,115,61,91,93,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,41,123,105,102,40,117,62,51,41,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,117,41,44,111,61,49,59,111,60,117,59,111,43,43,41,101,91,111,93,61,97,114,103,117,109,101,110,116,115,91,111,93,59,102,111,114,40,114,61,48,44,110,61,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,59,114,60,110,59,114,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,116,44,117,41,123,99,97,115,101,32,49,58,115,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,116,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,115,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,116,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,115,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,116,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,115,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,101,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,61,116,121,112,101,111,102,32,116,63,116,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,116,46,115,108,105,99,101,40,41,59,99,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,116,93,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,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,116,44,117,41,123,99,97,115,101,32,49,58,115,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,115,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,115,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,101,61,110,101,119,32,65,114,114,97,121,40,117,45,49,41,44,111,61,49,59,111,60,117,59,111,43,43,41,101,91,111,45,49,93,61,97,114,103,117,109,101,110,116,115,91,111,93,59,115,46,112,117,115,104,40,97,46,97,112,112,108,121,40,116,104,105,115,44,101,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,117,62,51,41,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,117,45,49,41,44,111,61,49,59,111,60,117,59,111,43,43,41,101,91,111,45,49,93,61,97,114,103,117,109,101,110,116,115,91,111,93,59,102,111,114,40,114,61,48,44,110,61,97,46,108,101,110,103,116,104,59,114,60,110,59,114,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,116,44,117,41,123,99,97,115,101,32,49,58,115,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,115,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,115,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,115,46,112,117,115,104,40,97,91,114,93,46,97,112,112,108,121,40,116,104,105,115,44,101,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,116,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,115,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,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,40,116,44,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,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,40,116,44,101,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,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,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,65,110,121,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,111,110,65,110,121,40,116,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,116,44,101,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,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,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,101,63,116,104,105,115,46,95,97,108,108,46,117,110,115,104,105,102,116,40,116,41,58,116,104,105,115,46,95,97,108,108,46,112,117,115,104,40,116,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,116,44,101,44,110,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,116,44,101,41,44,116,104,105,115,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,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,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,105,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,116,44,101,41,44,116,104,105,115,46,119,105,108,100,99,97,114,100,63,40,117,46,99,97,108,108,40,116,104,105,115,44,116,44,101,41,44,116,104,105,115,41,58,40,116,104,105,115,46,95,101,118,101,110,116,115,91,116,93,63,40,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,95,101,118,101,110,116,115,91,116,93,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,116,93,61,91,116,104,105,115,46,95,101,118,101,110,116,115,91,116,93,93,41,44,110,63,116,104,105,115,46,95,101,118,101,110,116,115,91,116,93,46,117,110,115,104,105,102,116,40,101,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,116,93,46,112,117,115,104,40,101,41,44,33,116,104,105,115,46,95,101,118,101,110,116,115,91,116,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,116,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,116,93,46,119,97,114,110,101,100,61,33,48,44,97,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,46,95,101,118,101,110,116,115,91,116,93,46,108,101,110,103,116,104,44,116,41,41,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,116,93,61,101,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,116,44,114,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,114,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,105,44,111,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,61,116,121,112,101,111,102,32,116,63,116,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,116,46,115,108,105,99,101,40,41,59,111,61,99,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,116,93,41,114,101,116,117,114,110,32,116,104,105,115,59,105,61,116,104,105,115,46,95,101,118,101,110,116,115,91,116,93,44,111,46,112,117,115,104,40,123,95,108,105,115,116,101,110,101,114,115,58,105,125,41,125,102,111,114,40,118,97,114,32,115,61,48,59,115,60,111,46,108,101,110,103,116,104,59,115,43,43,41,123,118,97,114,32,117,61,111,91,115,93,59,105,102,40,105,61,117,46,95,108,105,115,116,101,110,101,114,115,44,110,40,105,41,41,123,102,111,114,40,118,97,114,32,108,61,45,49,44,102,61,48,44,104,61,105,46,108,101,110,103,116,104,59,102,60,104,59,102,43,43,41,105,102,40,105,91,102,93,61,61,61,114,124,124,105,91,102,93,46,108,105,115,116,101,110,101,114,38,38,105,91,102,93,46,108,105,115,116,101,110,101,114,61,61,61,114,124,124,105,91,102,93,46,95,111,114,105,103,105,110,38,38,105,91,102,93,46,95,111,114,105,103,105,110,61,61,61,114,41,123,108,61,102,59,98,114,101,97,107,125,105,102,40,108,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,117,46,95,108,105,115,116,101,110,101,114,115,46,115,112,108,105,99,101,40,108,44,49,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,116,93,46,115,112,108,105,99,101,40,108,44,49,41,44,48,61,61,61,105,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,117,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,116,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,116,44,114,41,44,116,104,105,115,125,40,105,61,61,61,114,124,124,105,46,108,105,115,116,101,110,101,114,38,38,105,46,108,105,115,116,101,110,101,114,61,61,61,114,124,124,105,46,95,111,114,105,103,105,110,38,38,105,46,95,111,114,105,103,105,110,61,61,61,114,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,117,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,116,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,116,44,114,41,41,125,102,117,110,99,116,105,111,110,32,100,40,116,41,123,105,102,40,116,33,61,61,101,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,102,111,114,40,118,97,114,32,114,32,105,110,32,110,41,123,118,97,114,32,105,61,110,91,114,93,44,111,61,116,91,105,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,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,100,40,116,91,105,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,116,91,105,93,41,125,125,125,114,101,116,117,114,110,32,100,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,116,41,123,118,97,114,32,101,44,110,61,48,44,114,61,48,59,105,102,40,116,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,101,61,116,104,105,115,46,95,97,108,108,44,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,116,61,61,61,101,91,110,93,41,114,101,116,117,114,110,32,101,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,116,41,44,116,104,105,115,125,101,108,115,101,123,105,102,40,101,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,114,61,101,46,108,101,110,103,116,104,59,110,60,114,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,101,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,116,41,123,105,102,40,116,61,61,61,101,41,114,101,116,117,114,110,33,116,104,105,115,46,95,101,118,101,110,116,115,124,124,105,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,110,61,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,63,116,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,116,46,115,108,105,99,101,40,41,44,114,61,99,46,99,97,108,108,40,116,104,105,115,44,110,117,108,108,44,110,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,44,111,61,48,59,111,60,114,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,97,61,114,91,111,93,59,97,46,95,108,105,115,116,101,110,101,114,115,61,110,117,108,108,125,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,116,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,116,41,123,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,118,97,114,32,101,61,91,93,44,114,61,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,63,116,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,116,46,115,108,105,99,101,40,41,59,114,101,116,117,114,110,32,99,46,99,97,108,108,40,116,104,105,115,44,101,44,114,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,44,101,125,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,124,124,105,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,116,93,124,124,40,116,104,105,115,46,95,101,118,101,110,116,115,91,116,93,61,91,93,41,44,110,40,116,104,105,115,46,95,101,118,101,110,116,115,91,116,93,41,124,124,40,116,104,105,115,46,95,101,118,101,110,116,115,91,116,93,61,91,116,104,105,115,46,95,101,118,101,110,116,115,91,116,93,93,41,44,116,104,105,115,46,95,101,118,101,110,116,115,91,116,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,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,108,105,115,116,101,110,101,114,115,40,116,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,116,46,101,120,112,111,114,116,115,61,115,125,40,41,125,41,41,44,76,61,65,46,69,118,101,110,116,69,109,105,116,116,101,114,50,59,102,117,110,99,116,105,111,110,32,73,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,46,109,111,100,101,108,91,101,93,46,97,112,112,108,121,40,116,46,109,111,100,101,108,44,110,41,125,118,97,114,32,77,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,103,40,116,104,105,115,44,110,41,59,118,97,114,32,114,61,121,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,105,61,114,59,105,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,44,105,46,95,109,117,116,101,100,61,33,49,44,105,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,61,33,49,44,105,46,98,97,116,99,104,105,110,103,61,48,44,105,46,105,100,61,102,40,41,44,105,46,105,110,105,116,105,97,108,105,122,101,100,61,33,49,44,105,46,105,115,68,121,110,97,109,105,99,61,33,49,44,105,46,111,112,116,115,61,101,44,105,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,49,44,105,46,99,111,110,102,105,103,61,116,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,101,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,116,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,105,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,105,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,105,46,111,110,40,34,110,111,100,101,46,99,104,101,99,107,101,100,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,108,101,99,116,101,100,40,41,124,124,116,46,115,101,108,101,99,116,40,33,48,41,125,41,41,44,105,46,111,110,40,34,110,111,100,101,46,115,101,108,101,99,116,101,100,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,99,104,101,99,107,101,100,40,41,124,124,116,46,99,104,101,99,107,40,33,48,41,125,41,41,44,105,46,111,110,40,34,110,111,100,101,46,117,110,99,104,101,99,107,101,100,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,108,101,99,116,101,100,40,41,38,38,116,46,100,101,115,101,108,101,99,116,40,33,48,41,125,41,41,44,105,46,111,110,40,34,110,111,100,101,46,100,101,115,101,108,101,99,116,101,100,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,99,104,101,99,107,101,100,40,41,38,38,116,46,117,110,99,104,101,99,107,40,33,48,41,125,41,41,41,44,105,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,105,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,105,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,101,46,101,100,105,116,97,98,108,101,38,38,33,101,46,101,100,105,116,105,110,103,38,38,40,105,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,61,33,48,44,105,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,61,33,48,44,105,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,116,46,105,115,70,117,110,99,116,105,111,110,40,101,46,115,101,97,114,99,104,41,38,38,40,105,46,99,111,110,102,105,103,46,115,101,97,114,99,104,61,123,109,97,116,99,104,101,114,58,101,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,105,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,116,46,103,101,116,40,105,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,105,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,61,116,46,105,115,65,114,114,97,121,40,105,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,105,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,105,46,105,115,68,121,110,97,109,105,99,61,116,46,105,115,70,117,110,99,116,105,111,110,40,105,46,99,111,110,102,105,103,46,100,97,116,97,41,59,118,97,114,32,111,61,105,46,101,109,105,116,59,114,101,116,117,114,110,32,105,46,101,109,105,116,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,105,46,105,115,69,118,101,110,116,77,117,116,101,100,40,101,41,41,123,105,102,40,116,46,105,115,70,117,110,99,116,105,111,110,40,116,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,111,46,97,112,112,108,121,40,105,44,97,114,103,117,109,101,110,116,115,41,125,125,44,105,46,109,111,100,101,108,61,110,101,119,32,107,40,105,41,44,105,46,99,111,110,102,105,103,46,100,97,116,97,38,38,105,46,108,111,97,100,40,105,46,99,111,110,102,105,103,46,100,97,116,97,41,44,105,46,105,110,105,116,105,97,108,105,122,101,100,61,33,48,44,114,125,114,101,116,117,114,110,32,98,40,110,44,101,41,44,109,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,73,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,101,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,114,61,110,101,119,32,107,40,116,104,105,115,41,59,114,101,116,117,114,110,32,116,46,101,97,99,104,40,101,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,46,112,117,115,104,40,110,46,97,100,100,78,111,100,101,40,116,41,41,125,41,41,44,116,104,105,115,46,101,110,100,40,41,44,114,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,73,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,73,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,73,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,101,61,116,46,116,114,97,110,115,102,111,114,109,40,97,114,103,117,109,101,110,116,115,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,91,101,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,101,125,41,44,123,125,41,44,110,61,116,46,115,111,114,116,66,121,40,79,98,106,101,99,116,46,107,101,121,115,40,101,41,41,44,114,61,119,40,110,41,44,105,61,114,91,48,93,44,111,61,114,46,115,108,105,99,101,40,49,41,59,114,101,116,117,114,110,91,116,46,103,101,116,40,101,44,105,41,44,116,46,103,101,116,40,101,44,111,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,116,41,123,114,101,116,117,114,110,32,110,46,105,115,84,114,101,101,78,111,100,101,40,116,41,63,116,58,69,40,116,104,105,115,44,116,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,116,104,105,115,46,98,97,116,99,104,105,110,103,45,45,44,48,61,61,61,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,101,41,123,114,101,116,117,114,110,32,116,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,116,46,105,110,99,108,117,100,101,115,40,116,104,105,115,46,109,117,116,101,100,40,41,44,101,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,116,41,123,114,101,116,117,114,110,32,116,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,73,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,101,41,123,118,97,114,32,110,61,116,104,105,115,44,114,61,110,101,119,32,118,40,40,102,117,110,99,116,105,111,110,40,114,44,105,41,123,118,97,114,32,111,61,102,117,110,99,116,105,111,110,40,101,44,111,41,123,105,102,40,33,116,46,105,115,65,114,114,97,121,76,105,107,101,40,101,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,33,110,46,105,110,105,116,105,97,108,105,122,101,100,38,38,116,46,105,115,65,114,114,97,121,76,105,107,101,40,101,41,63,115,101,116,84,105,109,101,111,117,116,40,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,101,41,125,41,41,58,110,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,100,34,44,101,41,59,118,97,114,32,97,61,68,40,110,44,101,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,97,41,58,110,46,109,111,100,101,108,61,97,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,101,46,108,101,110,103,116,104,44,116,46,112,97,114,115,101,73,110,116,40,111,41,62,101,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,116,46,112,97,114,115,101,73,110,116,40,111,41,41,44,111,124,124,110,46,109,111,100,101,108,46,114,101,99,117,114,115,101,68,111,119,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,104,97,115,67,104,105,108,100,114,101,110,40,41,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,116,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,41,125,41,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,115,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,114,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,116,46,105,115,65,114,114,97,121,40,101,41,63,115,101,116,84,105,109,101,111,117,116,40,115,41,58,115,40,41,125,59,105,102,40,116,46,105,115,65,114,114,97,121,76,105,107,101,40,101,41,41,111,40,101,41,59,101,108,115,101,32,105,102,40,116,46,105,115,70,117,110,99,116,105,111,110,40,101,41,41,123,118,97,114,32,97,61,101,40,110,117,108,108,44,111,44,105,44,110,46,112,97,103,105,110,97,116,105,111,110,40,41,41,59,97,38,38,40,101,61,97,41,125,116,46,105,115,79,98,106,101,99,116,40,101,41,63,80,40,101,41,46,116,104,101,110,40,111,41,46,99,97,116,99,104,40,105,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,41,59,114,101,116,117,114,110,32,114,46,99,97,116,99,104,40,40,102,117,110,99,116,105,111,110,40,116,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,116,41,125,41,41,44,116,104,105,115,46,95,108,111,97,100,101,114,61,123,112,114,111,109,105,115,101,58,114,125,44,114,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,73,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,73,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,73,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,73,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,73,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,101,41,123,114,101,116,117,114,110,32,116,46,105,115,83,116,114,105,110,103,40,101,41,124,124,116,46,105,115,65,114,114,97,121,40,101,41,63,116,104,105,115,46,95,109,117,116,101,100,61,116,46,99,97,115,116,65,114,114,97,121,40,101,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,107,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,73,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,73,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,73,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,73,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,101,41,123,118,97,114,32,114,61,116,104,105,115,44,105,61,116,104,105,115,46,99,111,110,102,105,103,46,115,101,97,114,99,104,44,111,61,105,46,109,97,116,99,104,101,114,44,97,61,105,46,109,97,116,99,104,80,114,111,99,101,115,115,111,114,59,114,101,116,117,114,110,33,101,124,124,116,46,105,115,83,116,114,105,110,103,40,101,41,38,38,116,46,105,115,69,109,112,116,121,40,101,41,63,118,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,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,44,33,48,41,44,116,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,49,41,125,41,41,44,116,104,105,115,46,101,110,100,40,41,44,111,61,116,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,44,110,41,123,118,97,114,32,105,61,110,101,119,32,107,40,114,41,59,116,46,105,115,83,116,114,105,110,103,40,101,41,38,38,40,101,61,110,101,119,32,82,101,103,69,120,112,40,101,44,34,105,34,41,41,59,118,97,114,32,111,61,118,111,105,100,32,48,59,111,61,116,46,105,115,82,101,103,69,120,112,40,101,41,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,116,101,115,116,40,116,46,116,101,120,116,41,125,58,101,44,114,46,109,111,100,101,108,46,114,101,99,117,114,115,101,68,111,119,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,114,101,109,111,118,101,100,40,41,124,124,111,40,116,41,38,38,105,46,112,117,115,104,40,116,41,125,41,41,44,110,40,105,41,125,44,97,61,116,46,105,115,70,117,110,99,116,105,111,110,40,97,41,63,97,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,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,116,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,116,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,116,46,99,104,105,108,100,114,101,110,46,115,104,111,119,68,101,101,112,40,41,125,41,41,125,44,110,101,119,32,118,40,40,102,117,110,99,116,105,111,110,40,105,44,115,41,123,111,40,101,44,40,102,117,110,99,116,105,111,110,40,101,41,123,110,46,105,115,84,114,101,101,78,111,100,101,115,40,101,41,124,124,40,101,61,114,46,110,111,100,101,115,40,116,46,109,97,112,40,101,44,34,105,100,34,41,41,41,44,114,46,98,97,116,99,104,40,41,44,97,40,101,41,44,114,46,101,110,100,40,41,44,105,40,101,41,125,41,44,115,41,125,41,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,73,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,73,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,116,44,101,41,123,116,104,105,115,46,98,97,116,99,104,40,41,59,118,97,114,32,110,61,116,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,119,104,105,108,101,40,110,46,105,100,33,61,61,101,46,105,100,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,73,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,73,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,116,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,116,38,38,116,46,115,101,108,101,99,116,40,41,44,116,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,73,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,101,41,123,114,101,116,117,114,110,32,116,46,105,115,83,116,114,105,110,103,40,101,41,124,124,116,46,105,115,65,114,114,97,121,40,101,41,63,40,116,104,105,115,46,95,109,117,116,101,100,61,116,46,100,105,102,102,101,114,101,110,99,101,40,116,104,105,115,46,95,109,117,116,101,100,44,116,46,99,97,115,116,65,114,114,97,121,40,101,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,73,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,73,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,116,41,123,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,106,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,116,41,123,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,107,125,125,93,41,44,110,125,40,76,41,59,114,101,116,117,114,110,32,77,125,41,41,125,44,50,55,48,53,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,54,51,57,41,44,105,61,114,46,83,121,109,98,111,108,59,116,46,101,120,112,111,114,116,115,61,105,125,44,52,50,51,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,50,55,48,53,41,44,105,61,110,40,57,54,48,55,41,44,111,61,110,40,50,51,51,51,41,44,97,61,34,91,111,98,106,101,99,116,32,78,117,108,108,93,34,44,115,61,34,91,111,98,106,101,99,116,32,85,110,100,101,102,105,110,101,100,93,34,44,99,61,114,63,114,46,116,111,83,116,114,105,110,103,84,97,103,58,118,111,105,100,32,48,59,102,117,110,99,116,105,111,110,32,117,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,118,111,105,100,32,48,61,61,61,116,63,115,58,97,58,99,38,38,99,32,105,110,32,79,98,106,101,99,116,40,116,41,63,105,40,116,41,58,111,40,116,41,125,116,46,101,120,112,111,114,116,115,61,117,125,44,55,53,54,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,57,57,48,41,44,105,61,47,94,92,115,43,47,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,114,101,116,117,114,110,32,116,63,116,46,115,108,105,99,101,40,48,44,114,40,116,41,43,49,41,46,114,101,112,108,97,99,101,40,105,44,34,34,41,58,116,125,116,46,101,120,112,111,114,116,115,61,111,125,44,49,57,53,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,46,103,38,38,110,46,103,38,38,110,46,103,46,79,98,106,101,99,116,61,61,61,79,98,106,101,99,116,38,38,110,46,103,59,116,46,101,120,112,111,114,116,115,61,114,125,44,57,54,48,55,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,50,55,48,53,41,44,105,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,44,111,61,105,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,97,61,105,46,116,111,83,116,114,105,110,103,44,115,61,114,63,114,46,116,111,83,116,114,105,110,103,84,97,103,58,118,111,105,100,32,48,59,102,117,110,99,116,105,111,110,32,99,40,116,41,123,118,97,114,32,101,61,111,46,99,97,108,108,40,116,44,115,41,44,110,61,116,91,115,93,59,116,114,121,123,116,91,115,93,61,118,111,105,100,32,48,59,118,97,114,32,114,61,33,48,125,99,97,116,99,104,40,99,41,123,125,118,97,114,32,105,61,97,46,99,97,108,108,40,116,41,59,114,101,116,117,114,110,32,114,38,38,40,101,63,116,91,115,93,61,110,58,100,101,108,101,116,101,32,116,91,115,93,41,44,105,125,116,46,101,120,112,111,114,116,115,61,99,125,44,50,51,51,51,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,44,110,61,101,46,116,111,83,116,114,105,110,103,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,41,125,116,46,101,120,112,111,114,116,115,61,114,125,44,53,54,51,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,57,53,55,41,44,105,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,115,101,108,102,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,111,61,114,124,124,105,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,59,116,46,101,120,112,111,114,116,115,61,111,125,44,55,57,57,48,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,47,92,115,47,59,102,117,110,99,116,105,111,110,32,110,40,116,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,38,38,101,46,116,101,115,116,40,116,46,99,104,97,114,65,116,40,110,41,41,41,59,114,101,116,117,114,110,32,110,125,116,46,101,120,112,111,114,116,115,61,110,125,44,51,50,55,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,51,50,49,56,41,44,105,61,110,40,55,55,55,49,41,44,111,61,110,40,52,56,52,49,41,44,97,61,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,44,115,61,77,97,116,104,46,109,97,120,44,99,61,77,97,116,104,46,109,105,110,59,102,117,110,99,116,105,111,110,32,117,40,116,44,101,44,110,41,123,118,97,114,32,117,44,108,44,102,44,104,44,100,44,112,44,118,61,48,44,103,61,33,49,44,109,61,33,49,44,98,61,33,48,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,84,121,112,101,69,114,114,111,114,40,97,41,59,102,117,110,99,116,105,111,110,32,121,40,101,41,123,118,97,114,32,110,61,117,44,114,61,108,59,114,101,116,117,114,110,32,117,61,108,61,118,111,105,100,32,48,44,118,61,101,44,104,61,116,46,97,112,112,108,121,40,114,44,110,41,44,104,125,102,117,110,99,116,105,111,110,32,119,40,116,41,123,114,101,116,117,114,110,32,118,61,116,44,100,61,115,101,116,84,105,109,101,111,117,116,40,79,44,101,41,44,103,63,121,40,116,41,58,104,125,102,117,110,99,116,105,111,110,32,95,40,116,41,123,118,97,114,32,110,61,116,45,112,44,114,61,116,45,118,44,105,61,101,45,110,59,114,101,116,117,114,110,32,109,63,99,40,105,44,102,45,114,41,58,105,125,102,117,110,99,116,105,111,110,32,120,40,116,41,123,118,97,114,32,110,61,116,45,112,44,114,61,116,45,118,59,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,112,124,124,110,62,61,101,124,124,110,60,48,124,124,109,38,38,114,62,61,102,125,102,117,110,99,116,105,111,110,32,79,40,41,123,118,97,114,32,116,61,105,40,41,59,105,102,40,120,40,116,41,41,114,101,116,117,114,110,32,83,40,116,41,59,100,61,115,101,116,84,105,109,101,111,117,116,40,79,44,95,40,116,41,41,125,102,117,110,99,116,105,111,110,32,83,40,116,41,123,114,101,116,117,114,110,32,100,61,118,111,105,100,32,48,44,98,38,38,117,63,121,40,116,41,58,40,117,61,108,61,118,111,105,100,32,48,44,104,41,125,102,117,110,99,116,105,111,110,32,107,40,41,123,118,111,105,100,32,48,33,61,61,100,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,100,41,44,118,61,48,44,117,61,112,61,108,61,100,61,118,111,105,100,32,48,125,102,117,110,99,116,105,111,110,32,67,40,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,100,63,104,58,83,40,105,40,41,41,125,102,117,110,99,116,105,111,110,32,80,40,41,123,118,97,114,32,116,61,105,40,41,44,110,61,120,40,116,41,59,105,102,40,117,61,97,114,103,117,109,101,110,116,115,44,108,61,116,104,105,115,44,112,61,116,44,110,41,123,105,102,40,118,111,105,100,32,48,61,61,61,100,41,114,101,116,117,114,110,32,119,40,112,41,59,105,102,40,109,41,114,101,116,117,114,110,32,99,108,101,97,114,84,105,109,101,111,117,116,40,100,41,44,100,61,115,101,116,84,105,109,101,111,117,116,40,79,44,101,41,44,121,40,112,41,125,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,100,38,38,40,100,61,115,101,116,84,105,109,101,111,117,116,40,79,44,101,41,41,44,104,125,114,101,116,117,114,110,32,101,61,111,40,101,41,124,124,48,44,114,40,110,41,38,38,40,103,61,33,33,110,46,108,101,97,100,105,110,103,44,109,61,34,109,97,120,87,97,105,116,34,105,110,32,110,44,102,61,109,63,115,40,111,40,110,46,109,97,120,87,97,105,116,41,124,124,48,44,101,41,58,102,44,98,61,34,116,114,97,105,108,105,110,103,34,105,110,32,110,63,33,33,110,46,116,114,97,105,108,105,110,103,58,98,41,44,80,46,99,97,110,99,101,108,61,107,44,80,46,102,108,117,115,104,61,67,44,80,125,116,46,101,120,112,111,114,116,115,61,117,125,44,51,50,49,56,58,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,32,110,117,108,108,33,61,116,38,38,40,34,111,98,106,101,99,116,34,61,61,101,124,124,34,102,117,110,99,116,105,111,110,34,61,61,101,41,125,116,46,101,120,112,111,114,116,115,61,101,125,44,55,48,48,53,58,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,116,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,125,116,46,101,120,112,111,114,116,115,61,101,125,44,51,52,52,56,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,50,51,57,41,44,105,61,110,40,55,48,48,53,41,44,111,61,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,59,102,117,110,99,116,105,111,110,32,97,40,116,41,123,114,101,116,117,114,110,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,116,124,124,105,40,116,41,38,38,114,40,116,41,61,61,111,125,116,46,101,120,112,111,114,116,115,61,97,125,44,54,52,56,54,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,59,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,60,104,116,116,112,115,58,47,47,108,111,100,97,115,104,46,99,111,109,47,62,10,32,42,32,67,111,112,121,114,105,103,104,116,32,79,112,101,110,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,60,104,116,116,112,115,58,47,47,111,112,101,110,106,115,102,46,111,114,103,47,62,10,32,42,32,82,101,108,101,97,115,101,100,32,117,110,100,101,114,32,77,73,84,32,108,105,99,101,110,115,101,32,60,104,116,116,112,115,58,47,47,108,111,100,97,115,104,46,99,111,109,47,108,105,99,101,110,115,101,62,10,32,42,32,66,97,115,101,100,32,111,110,32,85,110,100,101,114,115,99,111,114,101,46,106,115,32,49,46,56,46,51,32,60,104,116,116,112,58,47,47,117,110,100,101,114,115,99,111,114,101,106,115,46,111,114,103,47,76,73,67,69,78,83,69,62,10,32,42,32,67,111,112,121,114,105,103,104,116,32,74,101,114,101,109,121,32,65,115,104,107,101,110,97,115,44,32,68,111,99,117,109,101,110,116,67,108,111,117,100,32,97,110,100,32,73,110,118,101,115,116,105,103,97,116,105,118,101,32,82,101,112,111,114,116,101,114,115,32,38,32,69,100,105,116,111,114,115,10,32,42,47,116,61,110,46,110,109,100,40,116,41,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,44,111,61,34,52,46,49,55,46,50,49,34,44,97,61,50,48,48,44,115,61,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,44,99,61,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,44,117,61,34,73,110,118,97,108,105,100,32,96,118,97,114,105,97,98,108,101,96,32,111,112,116,105,111,110,32,112,97,115,115,101,100,32,105,110,116,111,32,96,95,46,116,101,109,112,108,97,116,101,96,34,44,108,61,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,44,102,61,53,48,48,44,104,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,100,61,49,44,112,61,50,44,118,61,52,44,103,61,49,44,109,61,50,44,98,61,49,44,121,61,50,44,119,61,52,44,95,61,56,44,120,61,49,54,44,79,61,51,50,44,83,61,54,52,44,107,61,49,50,56,44,67,61,50,53,54,44,80,61,53,49,50,44,84,61,51,48,44,106,61,34,46,46,46,34,44,69,61,56,48,48,44,68,61,49,54,44,65,61,49,44,76,61,50,44,73,61,51,44,77,61,49,47,48,44,36,61,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,44,70,61,49,55,57,55,54,57,51,49,51,52,56,54,50,51,49,53,55,101,50,57,50,44,82,61,78,97,78,44,78,61,52,50,57,52,57,54,55,50,57,53,44,66,61,78,45,49,44,122,61,78,62,62,62,49,44,86,61,91,91,34,97,114,121,34,44,107,93,44,91,34,98,105,110,100,34,44,98,93,44,91,34,98,105,110,100,75,101,121,34,44,121,93,44,91,34,99,117,114,114,121,34,44,95,93,44,91,34,99,117,114,114,121,82,105,103,104,116,34,44,120,93,44,91,34,102,108,105,112,34,44,80,93,44,91,34,112,97,114,116,105,97,108,34,44,79,93,44,91,34,112,97,114,116,105,97,108,82,105,103,104,116,34,44,83,93,44,91,34,114,101,97,114,103,34,44,67,93,93,44,72,61,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,44,85,61,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,44,87,61,34,91,111,98,106,101,99,116,32,65,115,121,110,99,70,117,110,99,116,105,111,110,93,34,44,71,61,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,44,113,61,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,44,89,61,34,91,111,98,106,101,99,116,32,68,79,77,69,120,99,101,112,116,105,111,110,93,34,44,75,61,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,44,88,61,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,44,90,61,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,44,74,61,34,91,111,98,106,101,99,116,32,77,97,112,93,34,44,81,61,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,44,116,116,61,34,91,111,98,106,101,99,116,32,78,117,108,108,93,34,44,101,116,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,44,110,116,61,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,44,114,116,61,34,91,111,98,106,101,99,116,32,80,114,111,120,121,93,34,44,105,116,61,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,44,111,116,61,34,91,111,98,106,101,99,116,32,83,101,116,93,34,44,97,116,61,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,44,115,116,61,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,44,99,116,61,34,91,111,98,106,101,99,116,32,85,110,100,101,102,105,110,101,100,93,34,44,117,116,61,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,44,108,116,61,34,91,111,98,106,101,99,116,32,87,101,97,107,83,101,116,93,34,44,102,116,61,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,44,104,116,61,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,44,100,116,61,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,44,112,116,61,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,44,118,116,61,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,44,103,116,61,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,44,109,116,61,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,44,98,116,61,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,44,121,116,61,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,44,119,116,61,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,44,95,116,61,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,44,120,116,61,47,92,98,95,95,112,32,92,43,61,32,39,39,59,47,103,44,79,116,61,47,92,98,40,95,95,112,32,92,43,61,41,32,39,39,32,92,43,47,103,44,83,116,61,47,40,95,95,101,92,40,46,42,63,92,41,124,92,98,95,95,116,92,41,41,32,92,43,92,110,39,39,59,47,103,44,107,116,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,67,116,61,47,91,38,60,62,34,39,93,47,103,44,80,116,61,82,101,103,69,120,112,40,107,116,46,115,111,117,114,99,101,41,44,84,116,61,82,101,103,69,120,112,40,67,116,46,115,111,117,114,99,101,41,44,106,116,61,47,60,37,45,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,69,116,61,47,60,37,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,68,116,61,47,60,37,61,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,65,116,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,76,116,61,47,94,92,119,42,36,47,44,73,116,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,77,116,61,47,91,92,92,94,36,46,42,43,63,40,41,91,92,93,123,125,124,93,47,103,44,36,116,61,82,101,103,69,120,112,40,77,116,46,115,111,117,114,99,101,41,44,70,116,61,47,94,92,115,43,47,44,82,116,61,47,92,115,47,44,78,116,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,66,116,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,122,116,61,47,44,63,32,38,32,47,44,86,116,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,72,116,61,47,91,40,41,61,44,123,125,92,91,92,93,92,47,92,115,93,47,44,85,116,61,47,92,92,40,92,92,41,63,47,103,44,87,116,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,71,116,61,47,92,119,42,36,47,44,113,116,61,47,94,91,45,43,93,48,120,91,48,45,57,97,45,102,93,43,36,47,105,44,89,116,61,47,94,48,98,91,48,49,93,43,36,47,105,44,75,116,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,88,116,61,47,94,48,111,91,48,45,55,93,43,36,47,105,44,90,116,61,47,94,40,63,58,48,124,91,49,45,57,93,92,100,42,41,36,47,44,74,116,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,81,116,61,47,40,36,94,41,47,44,116,101,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,101,101,61,34,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,34,44,110,101,61,34,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,34,44,114,101,61,34,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,34,44,105,101,61,34,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,34,44,111,101,61,110,101,43,114,101,43,105,101,44,97,101,61,34,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,34,44,115,101,61,34,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,34,44,99,101,61,34,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,34,44,117,101,61,34,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,34,44,108,101,61,34,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,34,44,102,101,61,34,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,34,44,104,101,61,34,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,34,44,100,101,61,34,92,92,117,102,101,48,101,92,92,117,102,101,48,102,34,44,112,101,61,99,101,43,117,101,43,108,101,43,102,101,44,118,101,61,34,91,39,226,128,153,93,34,44,103,101,61,34,91,34,43,101,101,43,34,93,34,44,109,101,61,34,91,34,43,112,101,43,34,93,34,44,98,101,61,34,91,34,43,111,101,43,34,93,34,44,121,101,61,34,92,92,100,43,34,44,119,101,61,34,91,34,43,97,101,43,34,93,34,44,95,101,61,34,91,34,43,115,101,43,34,93,34,44,120,101,61,34,91,94,34,43,101,101,43,112,101,43,121,101,43,97,101,43,115,101,43,104,101,43,34,93,34,44,79,101,61,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,34,44,83,101,61,34,40,63,58,34,43,98,101,43,34,124,34,43,79,101,43,34,41,34,44,107,101,61,34,91,94,34,43,101,101,43,34,93,34,44,67,101,61,34,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,34,44,80,101,61,34,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,34,44,84,101,61,34,91,34,43,104,101,43,34,93,34,44,106,101,61,34,92,92,117,50,48,48,100,34,44,69,101,61,34,40,63,58,34,43,95,101,43,34,124,34,43,120,101,43,34,41,34,44,68,101,61,34,40,63,58,34,43,84,101,43,34,124,34,43,120,101,43,34,41,34,44,65,101,61,34,40,63,58,34,43,118,101,43,34,40,63,58,100,124,108,108,124,109,124,114,101,124,115,124,116,124,118,101,41,41,63,34,44,76,101,61,34,40,63,58,34,43,118,101,43,34,40,63,58,68,124,76,76,124,77,124,82,69,124,83,124,84,124,86,69,41,41,63,34,44,73,101,61,83,101,43,34,63,34,44,77,101,61,34,91,34,43,100,101,43,34,93,63,34,44,36,101,61,34,40,63,58,34,43,106,101,43,34,40,63,58,34,43,91,107,101,44,67,101,44,80,101,93,46,106,111,105,110,40,34,124,34,41,43,34,41,34,43,77,101,43,73,101,43,34,41,42,34,44,70,101,61,34,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,34,44,82,101,61,34,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,34,44,78,101,61,77,101,43,73,101,43,36,101,44,66,101,61,34,40,63,58,34,43,91,119,101,44,67,101,44,80,101,93,46,106,111,105,110,40,34,124,34,41,43,34,41,34,43,78,101,44,122,101,61,34,40,63,58,34,43,91,107,101,43,98,101,43,34,63,34,44,98,101,44,67,101,44,80,101,44,103,101,93,46,106,111,105,110,40,34,124,34,41,43,34,41,34,44,86,101,61,82,101,103,69,120,112,40,118,101,44,34,103,34,41,44,72,101,61,82,101,103,69,120,112,40,98,101,44,34,103,34,41,44,85,101,61,82,101,103,69,120,112,40,79,101,43,34,40,63,61,34,43,79,101,43,34,41,124,34,43,122,101,43,78,101,44,34,103,34,41,44,87,101,61,82,101,103,69,120,112,40,91,84,101,43,34,63,34,43,95,101,43,34,43,34,43,65,101,43,34,40,63,61,34,43,91,109,101,44,84,101,44,34,36,34,93,46,106,111,105,110,40,34,124,34,41,43,34,41,34,44,68,101,43,34,43,34,43,76,101,43,34,40,63,61,34,43,91,109,101,44,84,101,43,69,101,44,34,36,34,93,46,106,111,105,110,40,34,124,34,41,43,34,41,34,44,84,101,43,34,63,34,43,69,101,43,34,43,34,43,65,101,44,84,101,43,34,43,34,43,76,101,44,82,101,44,70,101,44,121,101,44,66,101,93,46,106,111,105,110,40,34,124,34,41,44,34,103,34,41,44,71,101,61,82,101,103,69,120,112,40,34,91,34,43,106,101,43,101,101,43,111,101,43,100,101,43,34,93,34,41,44,113,101,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,89,101,61,91,34,65,114,114,97,121,34,44,34,66,117,102,102,101,114,34,44,34,68,97,116,97,86,105,101,119,34,44,34,68,97,116,101,34,44,34,69,114,114,111,114,34,44,34,70,108,111,97,116,51,50,65,114,114,97,121,34,44,34,70,108,111,97,116,54,52,65,114,114,97,121,34,44,34,70,117,110,99,116,105,111,110,34,44,34,73,110,116,56,65,114,114,97,121,34,44,34,73,110,116,49,54,65,114,114,97,121,34,44,34,73,110,116,51,50,65,114,114,97,121,34,44,34,77,97,112,34,44,34,77,97,116,104,34,44,34,79,98,106,101,99,116,34,44,34,80,114,111,109,105,115,101,34,44,34,82,101,103,69,120,112,34,44,34,83,101,116,34,44,34,83,116,114,105,110,103,34,44,34,83,121,109,98,111,108,34,44,34,84,121,112,101,69,114,114,111,114,34,44,34,85,105,110,116,56,65,114,114,97,121,34,44,34,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,34,44,34,85,105,110,116,49,54,65,114,114,97,121,34,44,34,85,105,110,116,51,50,65,114,114,97,121,34,44,34,87,101,97,107,77,97,112,34,44,34,95,34,44,34,99,108,101,97,114,84,105,109,101,111,117,116,34,44,34,105,115,70,105,110,105,116,101,34,44,34,112,97,114,115,101,73,110,116,34,44,34,115,101,116,84,105,109,101,111,117,116,34,93,44,75,101,61,45,49,44,88,101,61,123,125,59,88,101,91,100,116,93,61,88,101,91,112,116,93,61,88,101,91,118,116,93,61,88,101,91,103,116,93,61,88,101,91,109,116,93,61,88,101,91,98,116,93,61,88,101,91,121,116,93,61,88,101,91,119,116,93,61,88,101,91,95,116,93,61,33,48,44,88,101,91,72,93,61,88,101,91,85,93,61,88,101,91,102,116,93,61,88,101,91,71,93,61,88,101,91,104,116,93,61,88,101,91,113,93,61,88,101,91,75,93,61,88,101,91,88,93,61,88,101,91,74,93,61,88,101,91,81,93,61,88,101,91,101,116,93,61,88,101,91,105,116,93,61,88,101,91,111,116,93,61,88,101,91,97,116,93,61,88,101,91,117,116,93,61,33,49,59,118,97,114,32,90,101,61,123,125,59,90,101,91,72,93,61,90,101,91,85,93,61,90,101,91,102,116,93,61,90,101,91,104,116,93,61,90,101,91,71,93,61,90,101,91,113,93,61,90,101,91,100,116,93,61,90,101,91,112,116,93,61,90,101,91,118,116,93,61,90,101,91,103,116,93,61,90,101,91,109,116,93,61,90,101,91,74,93,61,90,101,91,81,93,61,90,101,91,101,116,93,61,90,101,91,105,116,93,61,90,101,91,111,116,93,61,90,101,91,97,116,93,61,90,101,91,115,116,93,61,90,101,91,98,116,93,61,90,101,91,121,116,93,61,90,101,91,119,116,93,61,90,101,91,95,116,93,61,33,48,44,90,101,91,75,93,61,90,101,91,88,93,61,90,101,91,117,116,93,61,33,49,59,118,97,114,32,74,101,61,123,34,195,128,34,58,34,65,34,44,34,195,129,34,58,34,65,34,44,34,195,130,34,58,34,65,34,44,34,195,131,34,58,34,65,34,44,34,195,132,34,58,34,65,34,44,34,195,133,34,58,34,65,34,44,34,195,160,34,58,34,97,34,44,34,195,161,34,58,34,97,34,44,34,195,162,34,58,34,97,34,44,34,195,163,34,58,34,97,34,44,34,195,164,34,58,34,97,34,44,34,195,165,34,58,34,97,34,44,34,195,135,34,58,34,67,34,44,34,195,167,34,58,34,99,34,44,34,195,144,34,58,34,68,34,44,34,195,176,34,58,34,100,34,44,34,195,136,34,58,34,69,34,44,34,195,137,34,58,34,69,34,44,34,195,138,34,58,34,69,34,44,34,195,139,34,58,34,69,34,44,34,195,168,34,58,34,101,34,44,34,195,169,34,58,34,101,34,44,34,195,170,34,58,34,101,34,44,34,195,171,34,58,34,101,34,44,34,195,140,34,58,34,73,34,44,34,195,141,34,58,34,73,34,44,34,195,142,34,58,34,73,34,44,34,195,143,34,58,34,73,34,44,34,195,172,34,58,34,105,34,44,34,195,173,34,58,34,105,34,44,34,195,174,34,58,34,105,34,44,34,195,175,34,58,34,105,34,44,34,195,145,34,58,34,78,34,44,34,195,177,34,58,34,110,34,44,34,195,146,34,58,34,79,34,44,34,195,147,34,58,34,79,34,44,34,195,148,34,58,34,79,34,44,34,195,149,34,58,34,79,34,44,34,195,150,34,58,34,79,34,44,34,195,152,34,58,34,79,34,44,34,195,178,34,58,34,111,34,44,34,195,179,34,58,34,111,34,44,34,195,180,34,58,34,111,34,44,34,195,181,34,58,34,111,34,44,34,195,182,34,58,34,111,34,44,34,195,184,34,58,34,111,34,44,34,195,153,34,58,34,85,34,44,34,195,154,34,58,34,85,34,44,34,195,155,34,58,34,85,34,44,34,195,156,34,58,34,85,34,44,34,195,185,34,58,34,117,34,44,34,195,186,34,58,34,117,34,44,34,195,187,34,58,34,117,34,44,34,195,188,34,58,34,117,34,44,34,195,157,34,58,34,89,34,44,34,195,189,34,58,34,121,34,44,34,195,191,34,58,34,121,34,44,34,195,134,34,58,34,65,101,34,44,34,195,166,34,58,34,97,101,34,44,34,195,158,34,58,34,84,104,34,44,34,195,190,34,58,34,116,104,34,44,34,195,159,34,58,34,115,115,34,44,34,196,128,34,58,34,65,34,44,34,196,130,34,58,34,65,34,44,34,196,132,34,58,34,65,34,44,34,196,129,34,58,34,97,34,44,34,196,131,34,58,34,97,34,44,34,196,133,34,58,34,97,34,44,34,196,134,34,58,34,67,34,44,34,196,136,34,58,34,67,34,44,34,196,138,34,58,34,67,34,44,34,196,140,34,58,34,67,34,44,34,196,135,34,58,34,99,34,44,34,196,137,34,58,34,99,34,44,34,196,139,34,58,34,99,34,44,34,196,141,34,58,34,99,34,44,34,196,142,34,58,34,68,34,44,34,196,144,34,58,34,68,34,44,34,196,143,34,58,34,100,34,44,34,196,145,34,58,34,100,34,44,34,196,146,34,58,34,69,34,44,34,196,148,34,58,34,69,34,44,34,196,150,34,58,34,69,34,44,34,196,152,34,58,34,69,34,44,34,196,154,34,58,34,69,34,44,34,196,147,34,58,34,101,34,44,34,196,149,34,58,34,101,34,44,34,196,151,34,58,34,101,34,44,34,196,153,34,58,34,101,34,44,34,196,155,34,58,34,101,34,44,34,196,156,34,58,34,71,34,44,34,196,158,34,58,34,71,34,44,34,196,160,34,58,34,71,34,44,34,196,162,34,58,34,71,34,44,34,196,157,34,58,34,103,34,44,34,196,159,34,58,34,103,34,44,34,196,161,34,58,34,103,34,44,34,196,163,34,58,34,103,34,44,34,196,164,34,58,34,72,34,44,34,196,166,34,58,34,72,34,44,34,196,165,34,58,34,104,34,44,34,196,167,34,58,34,104,34,44,34,196,168,34,58,34,73,34,44,34,196,170,34,58,34,73,34,44,34,196,172,34,58,34,73,34,44,34,196,174,34,58,34,73,34,44,34,196,176,34,58,34,73,34,44,34,196,169,34,58,34,105,34,44,34,196,171,34,58,34,105,34,44,34,196,173,34,58,34,105,34,44,34,196,175,34,58,34,105,34,44,34,196,177,34,58,34,105,34,44,34,196,180,34,58,34,74,34,44,34,196,181,34,58,34,106,34,44,34,196,182,34,58,34,75,34,44,34,196,183,34,58,34,107,34,44,34,196,184,34,58,34,107,34,44,34,196,185,34,58,34,76,34,44,34,196,187,34,58,34,76,34,44,34,196,189,34,58,34,76,34,44,34,196,191,34,58,34,76,34,44,34,197,129,34,58,34,76,34,44,34,196,186,34,58,34,108,34,44,34,196,188,34,58,34,108,34,44,34,196,190,34,58,34,108,34,44,34,197,128,34,58,34,108,34,44,34,197,130,34,58,34,108,34,44,34,197,131,34,58,34,78,34,44,34,197,133,34,58,34,78,34,44,34,197,135,34,58,34,78,34,44,34,197,138,34,58,34,78,34,44,34,197,132,34,58,34,110,34,44,34,197,134,34,58,34,110,34,44,34,197,136,34,58,34,110,34,44,34,197,139,34,58,34,110,34,44,34,197,140,34,58,34,79,34,44,34,197,142,34,58,34,79,34,44,34,197,144,34,58,34,79,34,44,34,197,141,34,58,34,111,34,44,34,197,143,34,58,34,111,34,44,34,197,145,34,58,34,111,34,44,34,197,148,34,58,34,82,34,44,34,197,150,34,58,34,82,34,44,34,197,152,34,58,34,82,34,44,34,197,149,34,58,34,114,34,44,34,197,151,34,58,34,114,34,44,34,197,153,34,58,34,114,34,44,34,197,154,34,58,34,83,34,44,34,197,156,34,58,34,83,34,44,34,197,158,34,58,34,83,34,44,34,197,160,34,58,34,83,34,44,34,197,155,34,58,34,115,34,44,34,197,157,34,58,34,115,34,44,34,197,159,34,58,34,115,34,44,34,197,161,34,58,34,115,34,44,34,197,162,34,58,34,84,34,44,34,197,164,34,58,34,84,34,44,34,197,166,34,58,34,84,34,44,34,197,163,34,58,34,116,34,44,34,197,165,34,58,34,116,34,44,34,197,167,34,58,34,116,34,44,34,197,168,34,58,34,85,34,44,34,197,170,34,58,34,85,34,44,34,197,172,34,58,34,85,34,44,34,197,174,34,58,34,85,34,44,34,197,176,34,58,34,85,34,44,34,197,178,34,58,34,85,34,44,34,197,169,34,58,34,117,34,44,34,197,171,34,58,34,117,34,44,34,197,173,34,58,34,117,34,44,34,197,175,34,58,34,117,34,44,34,197,177,34,58,34,117,34,44,34,197,179,34,58,34,117,34,44,34,197,180,34,58,34,87,34,44,34,197,181,34,58,34,119,34,44,34,197,182,34,58,34,89,34,44,34,197,183,34,58,34,121,34,44,34,197,184,34,58,34,89,34,44,34,197,185,34,58,34,90,34,44,34,197,187,34,58,34,90,34,44,34,197,189,34,58,34,90,34,44,34,197,186,34,58,34,122,34,44,34,197,188,34,58,34,122,34,44,34,197,190,34,58,34,122,34,44,34,196,178,34,58,34,73,74,34,44,34,196,179,34,58,34,105,106,34,44,34,197,146,34,58,34,79,101,34,44,34,197,147,34,58,34,111,101,34,44,34,197,137,34,58,34,39,110,34,44,34,197,191,34,58,34,115,34,125,44,81,101,61,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,44,116,110,61,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,44,101,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,110,110,61,112,97,114,115,101,70,108,111,97,116,44,114,110,61,112,97,114,115,101,73,110,116,44,111,110,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,46,103,38,38,110,46,103,38,38,110,46,103,46,79,98,106,101,99,116,61,61,61,79,98,106,101,99,116,38,38,110,46,103,44,97,110,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,115,101,108,102,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,115,110,61,111,110,124,124,97,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,99,110,61,101,38,38,33,101,46,110,111,100,101,84,121,112,101,38,38,101,44,117,110,61,99,110,38,38,116,38,38,33,116,46,110,111,100,101,84,121,112,101,38,38,116,44,108,110,61,117,110,38,38,117,110,46,101,120,112,111,114,116,115,61,61,61,99,110,44,102,110,61,108,110,38,38,111,110,46,112,114,111,99,101,115,115,44,104,110,61,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,118,97,114,32,116,61,117,110,38,38,117,110,46,114,101,113,117,105,114,101,38,38,117,110,46,114,101,113,117,105,114,101,40,34,117,116,105,108,34,41,46,116,121,112,101,115,59,114,101,116,117,114,110,32,116,124,124,102,110,38,38,102,110,46,98,105,110,100,105,110,103,38,38,102,110,46,98,105,110,100,105,110,103,40,34,117,116,105,108,34,41,125,99,97,116,99,104,40,101,41,123,125,125,40,41,44,100,110,61,104,110,38,38,104,110,46,105,115,65,114,114,97,121,66,117,102,102,101,114,44,112,110,61,104,110,38,38,104,110,46,105,115,68,97,116,101,44,118,110,61,104,110,38,38,104,110,46,105,115,77,97,112,44,103,110,61,104,110,38,38,104,110,46,105,115,82,101,103,69,120,112,44,109,110,61,104,110,38,38,104,110,46,105,115,83,101,116,44,98,110,61,104,110,38,38,104,110,46,105,115,84,121,112,101,100,65,114,114,97,121,59,102,117,110,99,116,105,111,110,32,121,110,40,116,44,101,44,110,41,123,115,119,105,116,99,104,40,110,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,32,116,46,99,97,108,108,40,101,41,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,116,46,99,97,108,108,40,101,44,110,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,116,46,99,97,108,108,40,101,44,110,91,48,93,44,110,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,116,46,99,97,108,108,40,101,44,110,91,48,93,44,110,91,49,93,44,110,91,50,93,41,125,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,101,44,110,41,125,102,117,110,99,116,105,111,110,32,119,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,45,49,44,111,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,105,60,111,41,123,118,97,114,32,97,61,116,91,105,93,59,101,40,114,44,97,44,110,40,97,41,44,116,41,125,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,95,110,40,116,44,101,41,123,118,97,114,32,110,61,45,49,44,114,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,110,60,114,41,105,102,40,33,49,61,61,61,101,40,116,91,110,93,44,110,44,116,41,41,98,114,101,97,107,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,120,110,40,116,44,101,41,123,118,97,114,32,110,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,105,102,40,33,49,61,61,61,101,40,116,91,110,93,44,110,44,116,41,41,98,114,101,97,107,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,79,110,40,116,44,101,41,123,118,97,114,32,110,61,45,49,44,114,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,110,60,114,41,105,102,40,33,101,40,116,91,110,93,44,110,44,116,41,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,83,110,40,116,44,101,41,123,118,97,114,32,110,61,45,49,44,114,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,44,105,61,48,44,111,61,91,93,59,119,104,105,108,101,40,43,43,110,60,114,41,123,118,97,114,32,97,61,116,91,110,93,59,101,40,97,44,110,44,116,41,38,38,40,111,91,105,43,43,93,61,97,41,125,114,101,116,117,114,110,32,111,125,102,117,110,99,116,105,111,110,32,107,110,40,116,44,101,41,123,118,97,114,32,110,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,33,33,110,38,38,70,110,40,116,44,101,44,48,41,62,45,49,125,102,117,110,99,116,105,111,110,32,67,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,45,49,44,105,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,114,60,105,41,105,102,40,110,40,101,44,116,91,114,93,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,102,117,110,99,116,105,111,110,32,80,110,40,116,44,101,41,123,118,97,114,32,110,61,45,49,44,114,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,44,105,61,65,114,114,97,121,40,114,41,59,119,104,105,108,101,40,43,43,110,60,114,41,105,91,110,93,61,101,40,116,91,110,93,44,110,44,116,41,59,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,84,110,40,116,44,101,41,123,118,97,114,32,110,61,45,49,44,114,61,101,46,108,101,110,103,116,104,44,105,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,110,60,114,41,116,91,105,43,110,93,61,101,91,110,93,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,106,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,45,49,44,111,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,114,38,38,111,38,38,40,110,61,116,91,43,43,105,93,41,59,119,104,105,108,101,40,43,43,105,60,111,41,110,61,101,40,110,44,116,91,105,93,44,105,44,116,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,69,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,114,38,38,105,38,38,40,110,61,116,91,45,45,105,93,41,59,119,104,105,108,101,40,105,45,45,41,110,61,101,40,110,44,116,91,105,93,44,105,44,116,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,68,110,40,116,44,101,41,123,118,97,114,32,110,61,45,49,44,114,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,110,60,114,41,105,102,40,101,40,116,91,110,93,44,110,44,116,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,118,97,114,32,65,110,61,122,110,40,34,108,101,110,103,116,104,34,41,59,102,117,110,99,116,105,111,110,32,76,110,40,116,41,123,114,101,116,117,114,110,32,116,46,115,112,108,105,116,40,34,34,41,125,102,117,110,99,116,105,111,110,32,73,110,40,116,41,123,114,101,116,117,114,110,32,116,46,109,97,116,99,104,40,86,116,41,124,124,91,93,125,102,117,110,99,116,105,111,110,32,77,110,40,116,44,101,44,110,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,110,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,110,44,105,41,123,105,102,40,101,40,116,44,110,44,105,41,41,114,101,116,117,114,110,32,114,61,110,44,33,49,125,41,41,44,114,125,102,117,110,99,116,105,111,110,32,36,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,46,108,101,110,103,116,104,44,111,61,110,43,40,114,63,49,58,45,49,41,59,119,104,105,108,101,40,114,63,111,45,45,58,43,43,111,60,105,41,105,102,40,101,40,116,91,111,93,44,111,44,116,41,41,114,101,116,117,114,110,32,111,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,70,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,61,61,61,101,63,100,114,40,116,44,101,44,110,41,58,36,110,40,116,44,78,110,44,110,41,125,102,117,110,99,116,105,111,110,32,82,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,110,45,49,44,111,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,105,60,111,41,105,102,40,114,40,116,91,105,93,44,101,41,41,114,101,116,117,114,110,32,105,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,78,110,40,116,41,123,114,101,116,117,114,110,32,116,33,61,61,116,125,102,117,110,99,116,105,111,110,32,66,110,40,116,44,101,41,123,118,97,114,32,110,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,110,63,87,110,40,116,44,101,41,47,110,58,82,125,102,117,110,99,116,105,111,110,32,122,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,110,117,108,108,61,61,101,63,105,58,101,91,116,93,125,125,102,117,110,99,116,105,111,110,32,86,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,110,117,108,108,61,61,116,63,105,58,116,91,101,93,125,125,102,117,110,99,116,105,111,110,32,72,110,40,116,44,101,44,110,44,114,44,105,41,123,114,101,116,117,114,110,32,105,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,105,44,111,41,123,110,61,114,63,40,114,61,33,49,44,116,41,58,101,40,110,44,116,44,105,44,111,41,125,41,41,44,110,125,102,117,110,99,116,105,111,110,32,85,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,59,116,46,115,111,114,116,40,101,41,59,119,104,105,108,101,40,110,45,45,41,116,91,110,93,61,116,91,110,93,46,118,97,108,117,101,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,87,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,45,49,44,111,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,114,60,111,41,123,118,97,114,32,97,61,101,40,116,91,114,93,41,59,97,33,61,61,105,38,38,40,110,61,110,61,61,61,105,63,97,58,110,43,97,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,71,110,40,116,44,101,41,123,118,97,114,32,110,61,45,49,44,114,61,65,114,114,97,121,40,116,41,59,119,104,105,108,101,40,43,43,110,60,116,41,114,91,110,93,61,101,40,110,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,113,110,40,116,44,101,41,123,114,101,116,117,114,110,32,80,110,40,101,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,101,44,116,91,101,93,93,125,41,41,125,102,117,110,99,116,105,111,110,32,89,110,40,116,41,123,114,101,116,117,114,110,32,116,63,116,46,115,108,105,99,101,40,48,44,109,114,40,116,41,43,49,41,46,114,101,112,108,97,99,101,40,70,116,44,34,34,41,58,116,125,102,117,110,99,116,105,111,110,32,75,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,116,40,101,41,125,125,102,117,110,99,116,105,111,110,32,88,110,40,116,44,101,41,123,114,101,116,117,114,110,32,80,110,40,101,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,91,101,93,125,41,41,125,102,117,110,99,116,105,111,110,32,90,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,104,97,115,40,101,41,125,102,117,110,99,116,105,111,110,32,74,110,40,116,44,101,41,123,118,97,114,32,110,61,45,49,44,114,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,110,60,114,38,38,70,110,40,101,44,116,91,110,93,44,48,41,62,45,49,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,81,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,38,38,70,110,40,101,44,116,91,110,93,44,48,41,62,45,49,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,116,114,40,116,44,101,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,114,61,48,59,119,104,105,108,101,40,110,45,45,41,116,91,110,93,61,61,61,101,38,38,43,43,114,59,114,101,116,117,114,110,32,114,125,118,97,114,32,101,114,61,86,110,40,74,101,41,44,110,114,61,86,110,40,81,101,41,59,102,117,110,99,116,105,111,110,32,114,114,40,116,41,123,114,101,116,117,114,110,34,92,92,34,43,101,110,91,116,93,125,102,117,110,99,116,105,111,110,32,105,114,40,116,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,105,58,116,91,101,93,125,102,117,110,99,116,105,111,110,32,111,114,40,116,41,123,114,101,116,117,114,110,32,71,101,46,116,101,115,116,40,116,41,125,102,117,110,99,116,105,111,110,32,97,114,40,116,41,123,114,101,116,117,114,110,32,113,101,46,116,101,115,116,40,116,41,125,102,117,110,99,116,105,111,110,32,115,114,40,116,41,123,118,97,114,32,101,44,110,61,91,93,59,119,104,105,108,101,40,33,40,101,61,116,46,110,101,120,116,40,41,41,46,100,111,110,101,41,110,46,112,117,115,104,40,101,46,118,97,108,117,101,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,99,114,40,116,41,123,118,97,114,32,101,61,45,49,44,110,61,65,114,114,97,121,40,116,46,115,105,122,101,41,59,114,101,116,117,114,110,32,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,110,91,43,43,101,93,61,91,114,44,116,93,125,41,41,44,110,125,102,117,110,99,116,105,111,110,32,117,114,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,101,40,110,41,41,125,125,102,117,110,99,116,105,111,110,32,108,114,40,116,44,101,41,123,118,97,114,32,110,61,45,49,44,114,61,116,46,108,101,110,103,116,104,44,105,61,48,44,111,61,91,93,59,119,104,105,108,101,40,43,43,110,60,114,41,123,118,97,114,32,97,61,116,91,110,93,59,97,33,61,61,101,38,38,97,33,61,61,104,124,124,40,116,91,110,93,61,104,44,111,91,105,43,43,93,61,110,41,125,114,101,116,117,114,110,32,111,125,102,117,110,99,116,105,111,110,32,102,114,40,116,41,123,118,97,114,32,101,61,45,49,44,110,61,65,114,114,97,121,40,116,46,115,105,122,101,41,59,114,101,116,117,114,110,32,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,110,91,43,43,101,93,61,116,125,41,41,44,110,125,102,117,110,99,116,105,111,110,32,104,114,40,116,41,123,118,97,114,32,101,61,45,49,44,110,61,65,114,114,97,121,40,116,46,115,105,122,101,41,59,114,101,116,117,114,110,32,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,110,91,43,43,101,93,61,91,116,44,116,93,125,41,41,44,110,125,102,117,110,99,116,105,111,110,32,100,114,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,45,49,44,105,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,114,60,105,41,105,102,40,116,91,114,93,61,61,61,101,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,112,114,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,43,49,59,119,104,105,108,101,40,114,45,45,41,105,102,40,116,91,114,93,61,61,61,101,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,118,114,40,116,41,123,114,101,116,117,114,110,32,111,114,40,116,41,63,121,114,40,116,41,58,65,110,40,116,41,125,102,117,110,99,116,105,111,110,32,103,114,40,116,41,123,114,101,116,117,114,110,32,111,114,40,116,41,63,119,114,40,116,41,58,76,110,40,116,41,125,102,117,110,99,116,105,111,110,32,109,114,40,116,41,123,118,97,114,32,101,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,101,45,45,38,38,82,116,46,116,101,115,116,40,116,46,99,104,97,114,65,116,40,101,41,41,41,59,114,101,116,117,114,110,32,101,125,118,97,114,32,98,114,61,86,110,40,116,110,41,59,102,117,110,99,116,105,111,110,32,121,114,40,116,41,123,118,97,114,32,101,61,85,101,46,108,97,115,116,73,110,100,101,120,61,48,59,119,104,105,108,101,40,85,101,46,116,101,115,116,40,116,41,41,43,43,101,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,119,114,40,116,41,123,114,101,116,117,114,110,32,116,46,109,97,116,99,104,40,85,101,41,124,124,91,93,125,102,117,110,99,116,105,111,110,32,95,114,40,116,41,123,114,101,116,117,114,110,32,116,46,109,97,116,99,104,40,87,101,41,124,124,91,93,125,118,97,114,32,120,114,61,102,117,110,99,116,105,111,110,32,116,40,101,41,123,101,61,110,117,108,108,61,61,101,63,115,110,58,79,114,46,100,101,102,97,117,108,116,115,40,115,110,46,79,98,106,101,99,116,40,41,44,101,44,79,114,46,112,105,99,107,40,115,110,44,89,101,41,41,59,118,97,114,32,110,61,101,46,65,114,114,97,121,44,114,61,101,46,68,97,116,101,44,82,116,61,101,46,69,114,114,111,114,44,86,116,61,101,46,70,117,110,99,116,105,111,110,44,101,101,61,101,46,77,97,116,104,44,110,101,61,101,46,79,98,106,101,99,116,44,114,101,61,101,46,82,101,103,69,120,112,44,105,101,61,101,46,83,116,114,105,110,103,44,111,101,61,101,46,84,121,112,101,69,114,114,111,114,44,97,101,61,110,46,112,114,111,116,111,116,121,112,101,44,115,101,61,86,116,46,112,114,111,116,111,116,121,112,101,44,99,101,61,110,101,46,112,114,111,116,111,116,121,112,101,44,117,101,61,101,91,34,95,95,99,111,114,101,45,106,115,95,115,104,97,114,101,100,95,95,34,93,44,108,101,61,115,101,46,116,111,83,116,114,105,110,103,44,102,101,61,99,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,104,101,61,48,44,100,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,47,91,94,46,93,43,36,47,46,101,120,101,99,40,117,101,38,38,117,101,46,107,101,121,115,38,38,117,101,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,116,63,34,83,121,109,98,111,108,40,115,114,99,41,95,49,46,34,43,116,58,34,34,125,40,41,44,112,101,61,99,101,46,116,111,83,116,114,105,110,103,44,118,101,61,108,101,46,99,97,108,108,40,110,101,41,44,103,101,61,115,110,46,95,44,109,101,61,114,101,40,34,94,34,43,108,101,46,99,97,108,108,40,102,101,41,46,114,101,112,108,97,99,101,40,77,116,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,98,101,61,108,110,63,101,46,66,117,102,102,101,114,58,105,44,121,101,61,101,46,83,121,109,98,111,108,44,119,101,61,101,46,85,105,110,116,56,65,114,114,97,121,44,95,101,61,98,101,63,98,101,46,97,108,108,111,99,85,110,115,97,102,101,58,105,44,120,101,61,117,114,40,110,101,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,44,110,101,41,44,79,101,61,110,101,46,99,114,101,97,116,101,44,83,101,61,99,101,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,44,107,101,61,97,101,46,115,112,108,105,99,101,44,67,101,61,121,101,63,121,101,46,105,115,67,111,110,99,97,116,83,112,114,101,97,100,97,98,108,101,58,105,44,80,101,61,121,101,63,121,101,46,105,116,101,114,97,116,111,114,58,105,44,84,101,61,121,101,63,121,101,46,116,111,83,116,114,105,110,103,84,97,103,58,105,44,106,101,61,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,118,97,114,32,116,61,113,97,40,110,101,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,116,40,123,125,44,34,34,44,123,125,41,44,116,125,99,97,116,99,104,40,101,41,123,125,125,40,41,44,69,101,61,101,46,99,108,101,97,114,84,105,109,101,111,117,116,33,61,61,115,110,46,99,108,101,97,114,84,105,109,101,111,117,116,38,38,101,46,99,108,101,97,114,84,105,109,101,111,117,116,44,68,101,61,114,38,38,114,46,110,111,119,33,61,61,115,110,46,68,97,116,101,46,110,111,119,38,38,114,46,110,111,119,44,65,101,61,101,46,115,101,116,84,105,109,101,111,117,116,33,61,61,115,110,46,115,101,116,84,105,109,101,111,117,116,38,38,101,46,115,101,116,84,105,109,101,111,117,116,44,76,101,61,101,101,46,99,101,105,108,44,73,101,61,101,101,46,102,108,111,111,114,44,77,101,61,110,101,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,44,36,101,61,98,101,63,98,101,46,105,115,66,117,102,102,101,114,58,105,44,70,101,61,101,46,105,115,70,105,110,105,116,101,44,82,101,61,97,101,46,106,111,105,110,44,78,101,61,117,114,40,110,101,46,107,101,121,115,44,110,101,41,44,66,101,61,101,101,46,109,97,120,44,122,101,61,101,101,46,109,105,110,44,85,101,61,114,46,110,111,119,44,87,101,61,101,46,112,97,114,115,101,73,110,116,44,71,101,61,101,101,46,114,97,110,100,111,109,44,113,101,61,97,101,46,114,101,118,101,114,115,101,44,74,101,61,113,97,40,101,44,34,68,97,116,97,86,105,101,119,34,41,44,81,101,61,113,97,40,101,44,34,77,97,112,34,41,44,116,110,61,113,97,40,101,44,34,80,114,111,109,105,115,101,34,41,44,101,110,61,113,97,40,101,44,34,83,101,116,34,41,44,111,110,61,113,97,40,101,44,34,87,101,97,107,77,97,112,34,41,44,97,110,61,113,97,40,110,101,44,34,99,114,101,97,116,101,34,41,44,99,110,61,111,110,38,38,110,101,119,32,111,110,44,117,110,61,123,125,44,102,110,61,65,115,40,74,101,41,44,104,110,61,65,115,40,81,101,41,44,65,110,61,65,115,40,116,110,41,44,76,110,61,65,115,40,101,110,41,44,86,110,61,65,115,40,111,110,41,44,100,114,61,121,101,63,121,101,46,112,114,111,116,111,116,121,112,101,58,105,44,121,114,61,100,114,63,100,114,46,118,97,108,117,101,79,102,58,105,44,119,114,61,100,114,63,100,114,46,116,111,83,116,114,105,110,103,58,105,59,102,117,110,99,116,105,111,110,32,120,114,40,116,41,123,105,102,40,107,108,40,116,41,38,38,33,99,108,40,116,41,38,38,33,40,116,32,105,110,115,116,97,110,99,101,111,102,32,80,114,41,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,67,114,41,114,101,116,117,114,110,32,116,59,105,102,40,102,101,46,99,97,108,108,40,116,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,41,114,101,116,117,114,110,32,73,115,40,116,41,125,114,101,116,117,114,110,32,110,101,119,32,67,114,40,116,41,125,118,97,114,32,83,114,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,83,108,40,101,41,41,114,101,116,117,114,110,123,125,59,105,102,40,79,101,41,114,101,116,117,114,110,32,79,101,40,101,41,59,116,46,112,114,111,116,111,116,121,112,101,61,101,59,118,97,114,32,110,61,110,101,119,32,116,59,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,61,105,44,110,125,125,40,41,59,102,117,110,99,116,105,111,110,32,107,114,40,41,123,125,102,117,110,99,116,105,111,110,32,67,114,40,116,44,101,41,123,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,61,116,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,101,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,105,125,102,117,110,99,116,105,111,110,32,80,114,40,116,41,123,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,61,116,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,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,33,49,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,78,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,84,114,40,41,123,118,97,114,32,116,61,110,101,119,32,80,114,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,116,46,95,95,97,99,116,105,111,110,115,95,95,61,105,97,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,44,116,46,95,95,100,105,114,95,95,61,116,104,105,115,46,95,95,100,105,114,95,95,44,116,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,116,46,95,95,105,116,101,114,97,116,101,101,115,95,95,61,105,97,40,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,41,44,116,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,116,46,95,95,118,105,101,119,115,95,95,61,105,97,40,116,104,105,115,46,95,95,118,105,101,119,115,95,95,41,44,116,125,102,117,110,99,116,105,111,110,32,106,114,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,116,61,110,101,119,32,80,114,40,116,104,105,115,41,59,116,46,95,95,100,105,114,95,95,61,45,49,44,116,46,95,95,102,105,108,116,101,114,101,100,95,95,61,33,48,125,101,108,115,101,32,116,61,116,104,105,115,46,99,108,111,110,101,40,41,44,116,46,95,95,100,105,114,95,95,42,61,45,49,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,69,114,40,41,123,118,97,114,32,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,101,61,116,104,105,115,46,95,95,100,105,114,95,95,44,110,61,99,108,40,116,41,44,114,61,101,60,48,44,105,61,110,63,116,46,108,101,110,103,116,104,58,48,44,111,61,74,97,40,48,44,105,44,116,104,105,115,46,95,95,118,105,101,119,115,95,95,41,44,97,61,111,46,115,116,97,114,116,44,115,61,111,46,101,110,100,44,99,61,115,45,97,44,117,61,114,63,115,58,97,45,49,44,108,61,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,44,102,61,108,46,108,101,110,103,116,104,44,104,61,48,44,100,61,122,101,40,99,44,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,41,59,105,102,40,33,110,124,124,33,114,38,38,105,61,61,99,38,38,100,61,61,99,41,114,101,116,117,114,110,32,78,111,40,116,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,59,118,97,114,32,112,61,91,93,59,116,58,119,104,105,108,101,40,99,45,45,38,38,104,60,100,41,123,117,43,61,101,59,118,97,114,32,118,61,45,49,44,103,61,116,91,117,93,59,119,104,105,108,101,40,43,43,118,60,102,41,123,118,97,114,32,109,61,108,91,118,93,44,98,61,109,46,105,116,101,114,97,116,101,101,44,121,61,109,46,116,121,112,101,44,119,61,98,40,103,41,59,105,102,40,121,61,61,76,41,103,61,119,59,101,108,115,101,32,105,102,40,33,119,41,123,105,102,40,121,61,61,65,41,99,111,110,116,105,110,117,101,32,116,59,98,114,101,97,107,32,116,125,125,112,91,104,43,43,93,61,103,125,114,101,116,117,114,110,32,112,125,102,117,110,99,116,105,111,110,32,68,114,40,116,41,123,118,97,114,32,101,61,45,49,44,110,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,116,104,105,115,46,99,108,101,97,114,40,41,59,119,104,105,108,101,40,43,43,101,60,110,41,123,118,97,114,32,114,61,116,91,101,93,59,116,104,105,115,46,115,101,116,40,114,91,48,93,44,114,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,65,114,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,97,110,63,97,110,40,110,117,108,108,41,58,123,125,44,116,104,105,115,46,115,105,122,101,61,48,125,102,117,110,99,116,105,111,110,32,76,114,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,104,97,115,40,116,41,38,38,100,101,108,101,116,101,32,116,104,105,115,46,95,95,100,97,116,97,95,95,91,116,93,59,114,101,116,117,114,110,32,116,104,105,115,46,115,105,122,101,45,61,101,63,49,58,48,44,101,125,102,117,110,99,116,105,111,110,32,73,114,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,105,102,40,97,110,41,123,118,97,114,32,110,61,101,91,116,93,59,114,101,116,117,114,110,32,110,61,61,61,108,63,105,58,110,125,114,101,116,117,114,110,32,102,101,46,99,97,108,108,40,101,44,116,41,63,101,91,116,93,58,105,125,102,117,110,99,116,105,111,110,32,77,114,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,97,110,63,101,91,116,93,33,61,61,105,58,102,101,46,99,97,108,108,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,36,114,40,116,44,101,41,123,118,97,114,32,110,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,116,41,63,48,58,49,44,110,91,116,93,61,97,110,38,38,101,61,61,61,105,63,108,58,101,44,116,104,105,115,125,102,117,110,99,116,105,111,110,32,70,114,40,116,41,123,118,97,114,32,101,61,45,49,44,110,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,116,104,105,115,46,99,108,101,97,114,40,41,59,119,104,105,108,101,40,43,43,101,60,110,41,123,118,97,114,32,114,61,116,91,101,93,59,116,104,105,115,46,115,101,116,40,114,91,48,93,44,114,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,82,114,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,102,117,110,99,116,105,111,110,32,78,114,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,95,100,97,116,97,95,95,44,110,61,108,105,40,101,44,116,41,59,105,102,40,110,60,48,41,114,101,116,117,114,110,33,49,59,118,97,114,32,114,61,101,46,108,101,110,103,116,104,45,49,59,114,101,116,117,114,110,32,110,61,61,114,63,101,46,112,111,112,40,41,58,107,101,46,99,97,108,108,40,101,44,110,44,49,41,44,45,45,116,104,105,115,46,115,105,122,101,44,33,48,125,102,117,110,99,116,105,111,110,32,66,114,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,95,100,97,116,97,95,95,44,110,61,108,105,40,101,44,116,41,59,114,101,116,117,114,110,32,110,60,48,63,105,58,101,91,110,93,91,49,93,125,102,117,110,99,116,105,111,110,32,122,114,40,116,41,123,114,101,116,117,114,110,32,108,105,40,116,104,105,115,46,95,95,100,97,116,97,95,95,44,116,41,62,45,49,125,102,117,110,99,116,105,111,110,32,86,114,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,95,95,100,97,116,97,95,95,44,114,61,108,105,40,110,44,116,41,59,114,101,116,117,114,110,32,114,60,48,63,40,43,43,116,104,105,115,46,115,105,122,101,44,110,46,112,117,115,104,40,91,116,44,101,93,41,41,58,110,91,114,93,91,49,93,61,101,44,116,104,105,115,125,102,117,110,99,116,105,111,110,32,72,114,40,116,41,123,118,97,114,32,101,61,45,49,44,110,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,116,104,105,115,46,99,108,101,97,114,40,41,59,119,104,105,108,101,40,43,43,101,60,110,41,123,118,97,114,32,114,61,116,91,101,93,59,116,104,105,115,46,115,101,116,40,114,91,48,93,44,114,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,85,114,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,68,114,44,109,97,112,58,110,101,119,40,81,101,124,124,70,114,41,44,115,116,114,105,110,103,58,110,101,119,32,68,114,125,125,102,117,110,99,116,105,111,110,32,87,114,40,116,41,123,118,97,114,32,101,61,87,97,40,116,104,105,115,44,116,41,91,34,100,101,108,101,116,101,34,93,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,105,122,101,45,61,101,63,49,58,48,44,101,125,102,117,110,99,116,105,111,110,32,71,114,40,116,41,123,114,101,116,117,114,110,32,87,97,40,116,104,105,115,44,116,41,46,103,101,116,40,116,41,125,102,117,110,99,116,105,111,110,32,113,114,40,116,41,123,114,101,116,117,114,110,32,87,97,40,116,104,105,115,44,116,41,46,104,97,115,40,116,41,125,102,117,110,99,116,105,111,110,32,89,114,40,116,44,101,41,123,118,97,114,32,110,61,87,97,40,116,104,105,115,44,116,41,44,114,61,110,46,115,105,122,101,59,114,101,116,117,114,110,32,110,46,115,101,116,40,116,44,101,41,44,116,104,105,115,46,115,105,122,101,43,61,110,46,115,105,122,101,61,61,114,63,48,58,49,44,116,104,105,115,125,102,117,110,99,116,105,111,110,32,75,114,40,116,41,123,118,97,114,32,101,61,45,49,44,110,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,72,114,59,119,104,105,108,101,40,43,43,101,60,110,41,116,104,105,115,46,97,100,100,40,116,91,101,93,41,125,102,117,110,99,116,105,111,110,32,88,114,40,116,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,116,44,108,41,44,116,104,105,115,125,102,117,110,99,116,105,111,110,32,90,114,40,116,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,116,41,125,102,117,110,99,116,105,111,110,32,74,114,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,70,114,40,116,41,59,116,104,105,115,46,115,105,122,101,61,101,46,115,105,122,101,125,102,117,110,99,116,105,111,110,32,81,114,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,70,114,44,116,104,105,115,46,115,105,122,101,61,48,125,102,117,110,99,116,105,111,110,32,116,105,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,95,100,97,116,97,95,95,44,110,61,101,91,34,100,101,108,101,116,101,34,93,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,105,122,101,61,101,46,115,105,122,101,44,110,125,102,117,110,99,116,105,111,110,32,101,105,40,116,41,123,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,116,41,125,102,117,110,99,116,105,111,110,32,110,105,40,116,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,116,41,125,102,117,110,99,116,105,111,110,32,114,105,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,105,102,40,110,32,105,110,115,116,97,110,99,101,111,102,32,70,114,41,123,118,97,114,32,114,61,110,46,95,95,100,97,116,97,95,95,59,105,102,40,33,81,101,124,124,114,46,108,101,110,103,116,104,60,97,45,49,41,114,101,116,117,114,110,32,114,46,112,117,115,104,40,91,116,44,101,93,41,44,116,104,105,115,46,115,105,122,101,61,43,43,110,46,115,105,122,101,44,116,104,105,115,59,110,61,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,72,114,40,114,41,125,114,101,116,117,114,110,32,110,46,115,101,116,40,116,44,101,41,44,116,104,105,115,46,115,105,122,101,61,110,46,115,105,122,101,44,116,104,105,115,125,102,117,110,99,116,105,111,110,32,105,105,40,116,44,101,41,123,118,97,114,32,110,61,99,108,40,116,41,44,114,61,33,110,38,38,115,108,40,116,41,44,105,61,33,110,38,38,33,114,38,38,100,108,40,116,41,44,111,61,33,110,38,38,33,114,38,38,33,105,38,38,66,108,40,116,41,44,97,61,110,124,124,114,124,124,105,124,124,111,44,115,61,97,63,71,110,40,116,46,108,101,110,103,116,104,44,105,101,41,58,91,93,44,99,61,115,46,108,101,110,103,116,104,59,102,111,114,40,118,97,114,32,117,32,105,110,32,116,41,33,101,38,38,33,102,101,46,99,97,108,108,40,116,44,117,41,124,124,97,38,38,40,34,108,101,110,103,116,104,34,61,61,117,124,124,105,38,38,40,34,111,102,102,115,101,116,34,61,61,117,124,124,34,112,97,114,101,110,116,34,61,61,117,41,124,124,111,38,38,40,34,98,117,102,102,101,114,34,61,61,117,124,124,34,98,121,116,101,76,101,110,103,116,104,34,61,61,117,124,124,34,98,121,116,101,79,102,102,115,101,116,34,61,61,117,41,124,124,97,115,40,117,44,99,41,41,124,124,115,46,112,117,115,104,40,117,41,59,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,111,105,40,116,41,123,118,97,114,32,101,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,116,91,98,111,40,48,44,101,45,49,41,93,58,105,125,102,117,110,99,116,105,111,110,32,97,105,40,116,44,101,41,123,114,101,116,117,114,110,32,106,115,40,105,97,40,116,41,44,103,105,40,101,44,48,44,116,46,108,101,110,103,116,104,41,41,125,102,117,110,99,116,105,111,110,32,115,105,40,116,41,123,114,101,116,117,114,110,32,106,115,40,105,97,40,116,41,41,125,102,117,110,99,116,105,111,110,32,99,105,40,116,44,101,44,110,41,123,40,110,33,61,61,105,38,38,33,105,108,40,116,91,101,93,44,110,41,124,124,110,61,61,61,105,38,38,33,40,101,32,105,110,32,116,41,41,38,38,112,105,40,116,44,101,44,110,41,125,102,117,110,99,116,105,111,110,32,117,105,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,91,101,93,59,102,101,46,99,97,108,108,40,116,44,101,41,38,38,105,108,40,114,44,110,41,38,38,40,110,33,61,61,105,124,124,101,32,105,110,32,116,41,124,124,112,105,40,116,44,101,44,110,41,125,102,117,110,99,116,105,111,110,32,108,105,40,116,44,101,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,105,102,40,105,108,40,116,91,110,93,91,48,93,44,101,41,41,114,101,116,117,114,110,32,110,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,102,105,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,120,105,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,105,44,111,41,123,101,40,114,44,116,44,110,40,116,41,44,111,41,125,41,41,44,114,125,102,117,110,99,116,105,111,110,32,104,105,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,111,97,40,101,44,79,102,40,101,41,44,116,41,125,102,117,110,99,116,105,111,110,32,100,105,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,111,97,40,101,44,83,102,40,101,41,44,116,41,125,102,117,110,99,116,105,111,110,32,112,105,40,116,44,101,44,110,41,123,34,95,95,112,114,111,116,111,95,95,34,61,61,101,38,38,106,101,63,106,101,40,116,44,101,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,101,110,117,109,101,114,97,98,108,101,58,33,48,44,118,97,108,117,101,58,110,44,119,114,105,116,97,98,108,101,58,33,48,125,41,58,116,91,101,93,61,110,125,102,117,110,99,116,105,111,110,32,118,105,40,116,44,101,41,123,118,97,114,32,114,61,45,49,44,111,61,101,46,108,101,110,103,116,104,44,97,61,110,40,111,41,44,115,61,110,117,108,108,61,61,116,59,119,104,105,108,101,40,43,43,114,60,111,41,97,91,114,93,61,115,63,105,58,109,102,40,116,44,101,91,114,93,41,59,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,103,105,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,61,61,61,116,38,38,40,110,33,61,61,105,38,38,40,116,61,116,60,61,110,63,116,58,110,41,44,101,33,61,61,105,38,38,40,116,61,116,62,61,101,63,116,58,101,41,41,44,116,125,102,117,110,99,116,105,111,110,32,109,105,40,116,44,101,44,110,44,114,44,111,44,97,41,123,118,97,114,32,115,44,99,61,101,38,100,44,117,61,101,38,112,44,108,61,101,38,118,59,105,102,40,110,38,38,40,115,61,111,63,110,40,116,44,114,44,111,44,97,41,58,110,40,116,41,41,44,115,33,61,61,105,41,114,101,116,117,114,110,32,115,59,105,102,40,33,83,108,40,116,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,102,61,99,108,40,116,41,59,105,102,40,102,41,123,105,102,40,115,61,101,115,40,116,41,44,33,99,41,114,101,116,117,114,110,32,105,97,40,116,44,115,41,125,101,108,115,101,123,118,97,114,32,104,61,90,97,40,116,41,44,103,61,104,61,61,88,124,124,104,61,61,90,59,105,102,40,100,108,40,116,41,41,114,101,116,117,114,110,32,89,111,40,116,44,99,41,59,105,102,40,104,61,61,101,116,124,124,104,61,61,72,124,124,103,38,38,33,111,41,123,105,102,40,115,61,117,124,124,103,63,123,125,58,110,115,40,116,41,44,33,99,41,114,101,116,117,114,110,32,117,63,115,97,40,116,44,100,105,40,115,44,116,41,41,58,97,97,40,116,44,104,105,40,115,44,116,41,41,125,101,108,115,101,123,105,102,40,33,90,101,91,104,93,41,114,101,116,117,114,110,32,111,63,116,58,123,125,59,115,61,114,115,40,116,44,104,44,99,41,125,125,97,124,124,40,97,61,110,101,119,32,74,114,41,59,118,97,114,32,109,61,97,46,103,101,116,40,116,41,59,105,102,40,109,41,114,101,116,117,114,110,32,109,59,97,46,115,101,116,40,116,44,115,41,44,70,108,40,116,41,63,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,114,41,123,115,46,97,100,100,40,109,105,40,114,44,101,44,110,44,114,44,116,44,97,41,41,125,41,41,58,67,108,40,116,41,38,38,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,114,44,105,41,123,115,46,115,101,116,40,105,44,109,105,40,114,44,101,44,110,44,105,44,116,44,97,41,41,125,41,41,59,118,97,114,32,98,61,108,63,117,63,66,97,58,78,97,58,117,63,83,102,58,79,102,44,121,61,102,63,105,58,98,40,116,41,59,114,101,116,117,114,110,32,95,110,40,121,124,124,116,44,40,102,117,110,99,116,105,111,110,40,114,44,105,41,123,121,38,38,40,105,61,114,44,114,61,116,91,105,93,41,44,117,105,40,115,44,105,44,109,105,40,114,44,101,44,110,44,105,44,116,44,97,41,41,125,41,41,44,115,125,102,117,110,99,116,105,111,110,32,98,105,40,116,41,123,118,97,114,32,101,61,79,102,40,116,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,105,40,110,44,116,44,101,41,125,125,102,117,110,99,116,105,111,110,32,121,105,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,105,102,40,110,117,108,108,61,61,116,41,114,101,116,117,114,110,33,114,59,116,61,110,101,40,116,41,59,119,104,105,108,101,40,114,45,45,41,123,118,97,114,32,111,61,110,91,114,93,44,97,61,101,91,111,93,44,115,61,116,91,111,93,59,105,102,40,115,61,61,61,105,38,38,33,40,111,32,105,110,32,116,41,124,124,33,97,40,115,41,41,114,101,116,117,114,110,33,49,125,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,119,105,40,116,44,101,44,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,116,41,116,104,114,111,119,32,110,101,119,32,111,101,40,99,41,59,114,101,116,117,114,110,32,107,115,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,97,112,112,108,121,40,105,44,110,41,125,41,44,101,41,125,102,117,110,99,116,105,111,110,32,95,105,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,45,49,44,111,61,107,110,44,115,61,33,48,44,99,61,116,46,108,101,110,103,116,104,44,117,61,91,93,44,108,61,101,46,108,101,110,103,116,104,59,105,102,40,33,99,41,114,101,116,117,114,110,32,117,59,110,38,38,40,101,61,80,110,40,101,44,75,110,40,110,41,41,41,44,114,63,40,111,61,67,110,44,115,61,33,49,41,58,101,46,108,101,110,103,116,104,62,61,97,38,38,40,111,61,90,110,44,115,61,33,49,44,101,61,110,101,119,32,75,114,40,101,41,41,59,116,58,119,104,105,108,101,40,43,43,105,60,99,41,123,118,97,114,32,102,61,116,91,105,93,44,104,61,110,117,108,108,61,61,110,63,102,58,110,40,102,41,59,105,102,40,102,61,114,124,124,48,33,61,61,102,63,102,58,48,44,115,38,38,104,61,61,61,104,41,123,118,97,114,32,100,61,108,59,119,104,105,108,101,40,100,45,45,41,105,102,40,101,91,100,93,61,61,61,104,41,99,111,110,116,105,110,117,101,32,116,59,117,46,112,117,115,104,40,102,41,125,101,108,115,101,32,111,40,101,44,104,44,114,41,124,124,117,46,112,117,115,104,40,102,41,125,114,101,116,117,114,110,32,117,125,120,114,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,106,116,44,101,118,97,108,117,97,116,101,58,69,116,44,105,110,116,101,114,112,111,108,97,116,101,58,68,116,44,118,97,114,105,97,98,108,101,58,34,34,44,105,109,112,111,114,116,115,58,123,95,58,120,114,125,125,44,120,114,46,112,114,111,116,111,116,121,112,101,61,107,114,46,112,114,111,116,111,116,121,112,101,44,120,114,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,120,114,44,67,114,46,112,114,111,116,111,116,121,112,101,61,83,114,40,107,114,46,112,114,111,116,111,116,121,112,101,41,44,67,114,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,67,114,44,80,114,46,112,114,111,116,111,116,121,112,101,61,83,114,40,107,114,46,112,114,111,116,111,116,121,112,101,41,44,80,114,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,80,114,44,68,114,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,65,114,44,68,114,46,112,114,111,116,111,116,121,112,101,91,34,100,101,108,101,116,101,34,93,61,76,114,44,68,114,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,73,114,44,68,114,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,77,114,44,68,114,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,36,114,44,70,114,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,82,114,44,70,114,46,112,114,111,116,111,116,121,112,101,91,34,100,101,108,101,116,101,34,93,61,78,114,44,70,114,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,66,114,44,70,114,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,122,114,44,70,114,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,86,114,44,72,114,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,85,114,44,72,114,46,112,114,111,116,111,116,121,112,101,91,34,100,101,108,101,116,101,34,93,61,87,114,44,72,114,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,71,114,44,72,114,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,113,114,44,72,114,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,89,114,44,75,114,46,112,114,111,116,111,116,121,112,101,46,97,100,100,61,75,114,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,61,88,114,44,75,114,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,90,114,44,74,114,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,81,114,44,74,114,46,112,114,111,116,111,116,121,112,101,91,34,100,101,108,101,116,101,34,93,61,116,105,44,74,114,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,101,105,44,74,114,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,110,105,44,74,114,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,114,105,59,118,97,114,32,120,105,61,108,97,40,68,105,41,44,79,105,61,108,97,40,65,105,44,33,48,41,59,102,117,110,99,116,105,111,110,32,83,105,40,116,44,101,41,123,118,97,114,32,110,61,33,48,59,114,101,116,117,114,110,32,120,105,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,114,44,105,41,123,114,101,116,117,114,110,32,110,61,33,33,101,40,116,44,114,44,105,41,44,110,125,41,41,44,110,125,102,117,110,99,116,105,111,110,32,107,105,40,116,44,101,44,110,41,123,118,97,114,32,114,61,45,49,44,111,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,114,60,111,41,123,118,97,114,32,97,61,116,91,114,93,44,115,61,101,40,97,41,59,105,102,40,110,117,108,108,33,61,115,38,38,40,99,61,61,61,105,63,115,61,61,61,115,38,38,33,78,108,40,115,41,58,110,40,115,44,99,41,41,41,118,97,114,32,99,61,115,44,117,61,97,125,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,67,105,40,116,44,101,44,110,44,114,41,123,118,97,114,32,111,61,116,46,108,101,110,103,116,104,59,110,61,89,108,40,110,41,44,110,60,48,38,38,40,110,61,45,110,62,111,63,48,58,111,43,110,41,44,114,61,114,61,61,61,105,124,124,114,62,111,63,111,58,89,108,40,114,41,44,114,60,48,38,38,40,114,43,61,111,41,44,114,61,110,62,114,63,48,58,75,108,40,114,41,59,119,104,105,108,101,40,110,60,114,41,116,91,110,43,43,93,61,101,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,80,105,40,116,44,101,41,123,118,97,114,32,110,61,91,93,59,114,101,116,117,114,110,32,120,105,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,114,44,105,41,123,101,40,116,44,114,44,105,41,38,38,110,46,112,117,115,104,40,116,41,125,41,41,44,110,125,102,117,110,99,116,105,111,110,32,84,105,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,45,49,44,97,61,116,46,108,101,110,103,116,104,59,110,124,124,40,110,61,111,115,41,44,105,124,124,40,105,61,91,93,41,59,119,104,105,108,101,40,43,43,111,60,97,41,123,118,97,114,32,115,61,116,91,111,93,59,101,62,48,38,38,110,40,115,41,63,101,62,49,63,84,105,40,115,44,101,45,49,44,110,44,114,44,105,41,58,84,110,40,105,44,115,41,58,114,124,124,40,105,91,105,46,108,101,110,103,116,104,93,61,115,41,125,114,101,116,117,114,110,32,105,125,118,97,114,32,106,105,61,102,97,40,41,44,69,105,61,102,97,40,33,48,41,59,102,117,110,99,116,105,111,110,32,68,105,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,106,105,40,116,44,101,44,79,102,41,125,102,117,110,99,116,105,111,110,32,65,105,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,69,105,40,116,44,101,44,79,102,41,125,102,117,110,99,116,105,111,110,32,76,105,40,116,44,101,41,123,114,101,116,117,114,110,32,83,110,40,101,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,108,40,116,91,101,93,41,125,41,41,125,102,117,110,99,116,105,111,110,32,73,105,40,116,44,101,41,123,101,61,85,111,40,101,44,116,41,59,118,97,114,32,110,61,48,44,114,61,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,117,108,108,33,61,116,38,38,110,60,114,41,116,61,116,91,68,115,40,101,91,110,43,43,93,41,93,59,114,101,116,117,114,110,32,110,38,38,110,61,61,114,63,116,58,105,125,102,117,110,99,116,105,111,110,32,77,105,40,116,44,101,44,110,41,123,118,97,114,32,114,61,101,40,116,41,59,114,101,116,117,114,110,32,99,108,40,116,41,63,114,58,84,110,40,114,44,110,40,116,41,41,125,102,117,110,99,116,105,111,110,32,36,105,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,116,61,61,61,105,63,99,116,58,116,116,58,84,101,38,38,84,101,32,105,110,32,110,101,40,116,41,63,89,97,40,116,41,58,121,115,40,116,41,125,102,117,110,99,116,105,111,110,32,70,105,40,116,44,101,41,123,114,101,116,117,114,110,32,116,62,101,125,102,117,110,99,116,105,111,110,32,82,105,40,116,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,116,38,38,102,101,46,99,97,108,108,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,78,105,40,116,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,116,38,38,101,32,105,110,32,110,101,40,116,41,125,102,117,110,99,116,105,111,110,32,66,105,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,62,61,122,101,40,101,44,110,41,38,38,116,60,66,101,40,101,44,110,41,125,102,117,110,99,116,105,111,110,32,122,105,40,116,44,101,44,114,41,123,118,97,114,32,111,61,114,63,67,110,58,107,110,44,97,61,116,91,48,93,46,108,101,110,103,116,104,44,115,61,116,46,108,101,110,103,116,104,44,99,61,115,44,117,61,110,40,115,41,44,108,61,49,47,48,44,102,61,91,93,59,119,104,105,108,101,40,99,45,45,41,123,118,97,114,32,104,61,116,91,99,93,59,99,38,38,101,38,38,40,104,61,80,110,40,104,44,75,110,40,101,41,41,41,44,108,61,122,101,40,104,46,108,101,110,103,116,104,44,108,41,44,117,91,99,93,61,33,114,38,38,40,101,124,124,97,62,61,49,50,48,38,38,104,46,108,101,110,103,116,104,62,61,49,50,48,41,63,110,101,119,32,75,114,40,99,38,38,104,41,58,105,125,104,61,116,91,48,93,59,118,97,114,32,100,61,45,49,44,112,61,117,91,48,93,59,116,58,119,104,105,108,101,40,43,43,100,60,97,38,38,102,46,108,101,110,103,116,104,60,108,41,123,118,97,114,32,118,61,104,91,100,93,44,103,61,101,63,101,40,118,41,58,118,59,105,102,40,118,61,114,124,124,48,33,61,61,118,63,118,58,48,44,33,40,112,63,90,110,40,112,44,103,41,58,111,40,102,44,103,44,114,41,41,41,123,99,61,115,59,119,104,105,108,101,40,45,45,99,41,123,118,97,114,32,109,61,117,91,99,93,59,105,102,40,33,40,109,63,90,110,40,109,44,103,41,58,111,40,116,91,99,93,44,103,44,114,41,41,41,99,111,110,116,105,110,117,101,32,116,125,112,38,38,112,46,112,117,115,104,40,103,41,44,102,46,112,117,115,104,40,118,41,125,125,114,101,116,117,114,110,32,102,125,102,117,110,99,116,105,111,110,32,86,105,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,68,105,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,105,44,111,41,123,101,40,114,44,110,40,116,41,44,105,44,111,41,125,41,41,44,114,125,102,117,110,99,116,105,111,110,32,72,105,40,116,44,101,44,110,41,123,101,61,85,111,40,101,44,116,41,44,116,61,95,115,40,116,44,101,41,59,118,97,114,32,114,61,110,117,108,108,61,61,116,63,116,58,116,91,68,115,40,111,99,40,101,41,41,93,59,114,101,116,117,114,110,32,110,117,108,108,61,61,114,63,105,58,121,110,40,114,44,116,44,110,41,125,102,117,110,99,116,105,111,110,32,85,105,40,116,41,123,114,101,116,117,114,110,32,107,108,40,116,41,38,38,36,105,40,116,41,61,61,72,125,102,117,110,99,116,105,111,110,32,87,105,40,116,41,123,114,101,116,117,114,110,32,107,108,40,116,41,38,38,36,105,40,116,41,61,61,102,116,125,102,117,110,99,116,105,111,110,32,71,105,40,116,41,123,114,101,116,117,114,110,32,107,108,40,116,41,38,38,36,105,40,116,41,61,61,113,125,102,117,110,99,116,105,111,110,32,113,105,40,116,44,101,44,110,44,114,44,105,41,123,114,101,116,117,114,110,32,116,61,61,61,101,124,124,40,110,117,108,108,61,61,116,124,124,110,117,108,108,61,61,101,124,124,33,107,108,40,116,41,38,38,33,107,108,40,101,41,63,116,33,61,61,116,38,38,101,33,61,61,101,58,89,105,40,116,44,101,44,110,44,114,44,113,105,44,105,41,41,125,102,117,110,99,116,105,111,110,32,89,105,40,116,44,101,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,61,99,108,40,116,41,44,115,61,99,108,40,101,41,44,99,61,97,63,85,58,90,97,40,116,41,44,117,61,115,63,85,58,90,97,40,101,41,59,99,61,99,61,61,72,63,101,116,58,99,44,117,61,117,61,61,72,63,101,116,58,117,59,118,97,114,32,108,61,99,61,61,101,116,44,102,61,117,61,61,101,116,44,104,61,99,61,61,117,59,105,102,40,104,38,38,100,108,40,116,41,41,123,105,102,40,33,100,108,40,101,41,41,114,101,116,117,114,110,33,49,59,97,61,33,48,44,108,61,33,49,125,105,102,40,104,38,38,33,108,41,114,101,116,117,114,110,32,111,124,124,40,111,61,110,101,119,32,74,114,41,44,97,124,124,66,108,40,116,41,63,77,97,40,116,44,101,44,110,44,114,44,105,44,111,41,58,36,97,40,116,44,101,44,99,44,110,44,114,44,105,44,111,41,59,105,102,40,33,40,110,38,103,41,41,123,118,97,114,32,100,61,108,38,38,102,101,46,99,97,108,108,40,116,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,44,112,61,102,38,38,102,101,46,99,97,108,108,40,101,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,59,105,102,40,100,124,124,112,41,123,118,97,114,32,118,61,100,63,116,46,118,97,108,117,101,40,41,58,116,44,109,61,112,63,101,46,118,97,108,117,101,40,41,58,101,59,114,101,116,117,114,110,32,111,124,124,40,111,61,110,101,119,32,74,114,41,44,105,40,118,44,109,44,110,44,114,44,111,41,125,125,114,101,116,117,114,110,33,33,104,38,38,40,111,124,124,40,111,61,110,101,119,32,74,114,41,44,70,97,40,116,44,101,44,110,44,114,44,105,44,111,41,41,125,102,117,110,99,116,105,111,110,32,75,105,40,116,41,123,114,101,116,117,114,110,32,107,108,40,116,41,38,38,90,97,40,116,41,61,61,74,125,102,117,110,99,116,105,111,110,32,88,105,40,116,44,101,44,110,44,114,41,123,118,97,114,32,111,61,110,46,108,101,110,103,116,104,44,97,61,111,44,115,61,33,114,59,105,102,40,110,117,108,108,61,61,116,41,114,101,116,117,114,110,33,97,59,116,61,110,101,40,116,41,59,119,104,105,108,101,40,111,45,45,41,123,118,97,114,32,99,61,110,91,111,93,59,105,102,40,115,38,38,99,91,50,93,63,99,91,49,93,33,61,61,116,91,99,91,48,93,93,58,33,40,99,91,48,93,105,110,32,116,41,41,114,101,116,117,114,110,33,49,125,119,104,105,108,101,40,43,43,111,60,97,41,123,99,61,110,91,111,93,59,118,97,114,32,117,61,99,91,48,93,44,108,61,116,91,117,93,44,102,61,99,91,49,93,59,105,102,40,115,38,38,99,91,50,93,41,123,105,102,40,108,61,61,61,105,38,38,33,40,117,32,105,110,32,116,41,41,114,101,116,117,114,110,33,49,125,101,108,115,101,123,118,97,114,32,104,61,110,101,119,32,74,114,59,105,102,40,114,41,118,97,114,32,100,61,114,40,108,44,102,44,117,44,116,44,101,44,104,41,59,105,102,40,33,40,100,61,61,61,105,63,113,105,40,102,44,108,44,103,124,109,44,114,44,104,41,58,100,41,41,114,101,116,117,114,110,33,49,125,125,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,90,105,40,116,41,123,105,102,40,33,83,108,40,116,41,124,124,102,115,40,116,41,41,114,101,116,117,114,110,33,49,59,118,97,114,32,101,61,95,108,40,116,41,63,109,101,58,75,116,59,114,101,116,117,114,110,32,101,46,116,101,115,116,40,65,115,40,116,41,41,125,102,117,110,99,116,105,111,110,32,74,105,40,116,41,123,114,101,116,117,114,110,32,107,108,40,116,41,38,38,36,105,40,116,41,61,61,105,116,125,102,117,110,99,116,105,111,110,32,81,105,40,116,41,123,114,101,116,117,114,110,32,107,108,40,116,41,38,38,90,97,40,116,41,61,61,111,116,125,102,117,110,99,116,105,111,110,32,116,111,40,116,41,123,114,101,116,117,114,110,32,107,108,40,116,41,38,38,79,108,40,116,46,108,101,110,103,116,104,41,38,38,33,33,88,101,91,36,105,40,116,41,93,125,102,117,110,99,116,105,111,110,32,101,111,40,116,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,116,63,116,58,110,117,108,108,61,61,116,63,68,104,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,63,99,108,40,116,41,63,115,111,40,116,91,48,93,44,116,91,49,93,41,58,97,111,40,116,41,58,85,104,40,116,41,125,102,117,110,99,116,105,111,110,32,110,111,40,116,41,123,105,102,40,33,100,115,40,116,41,41,114,101,116,117,114,110,32,78,101,40,116,41,59,118,97,114,32,101,61,91,93,59,102,111,114,40,118,97,114,32,110,32,105,110,32,110,101,40,116,41,41,102,101,46,99,97,108,108,40,116,44,110,41,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,110,38,38,101,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,114,111,40,116,41,123,105,102,40,33,83,108,40,116,41,41,114,101,116,117,114,110,32,98,115,40,116,41,59,118,97,114,32,101,61,100,115,40,116,41,44,110,61,91,93,59,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,40,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,114,124,124,33,101,38,38,102,101,46,99,97,108,108,40,116,44,114,41,41,38,38,110,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,105,111,40,116,44,101,41,123,114,101,116,117,114,110,32,116,60,101,125,102,117,110,99,116,105,111,110,32,111,111,40,116,44,101,41,123,118,97,114,32,114,61,45,49,44,105,61,108,108,40,116,41,63,110,40,116,46,108,101,110,103,116,104,41,58,91,93,59,114,101,116,117,114,110,32,120,105,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,110,44,111,41,123,105,91,43,43,114,93,61,101,40,116,44,110,44,111,41,125,41,41,44,105,125,102,117,110,99,116,105,111,110,32,97,111,40,116,41,123,118,97,114,32,101,61,71,97,40,116,41,59,114,101,116,117,114,110,32,49,61,61,101,46,108,101,110,103,116,104,38,38,101,91,48,93,91,50,93,63,118,115,40,101,91,48,93,91,48,93,44,101,91,48,93,91,49,93,41,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,61,61,116,124,124,88,105,40,110,44,116,44,101,41,125,125,102,117,110,99,116,105,111,110,32,115,111,40,116,44,101,41,123,114,101,116,117,114,110,32,99,115,40,116,41,38,38,112,115,40,101,41,63,118,115,40,68,115,40,116,41,44,101,41,58,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,109,102,40,110,44,116,41,59,114,101,116,117,114,110,32,114,61,61,61,105,38,38,114,61,61,61,101,63,121,102,40,110,44,116,41,58,113,105,40,101,44,114,44,103,124,109,41,125,125,102,117,110,99,116,105,111,110,32,99,111,40,116,44,101,44,110,44,114,44,111,41,123,116,33,61,61,101,38,38,106,105,40,101,44,40,102,117,110,99,116,105,111,110,40,97,44,115,41,123,105,102,40,111,124,124,40,111,61,110,101,119,32,74,114,41,44,83,108,40,97,41,41,117,111,40,116,44,101,44,115,44,110,44,99,111,44,114,44,111,41,59,101,108,115,101,123,118,97,114,32,99,61,114,63,114,40,79,115,40,116,44,115,41,44,97,44,115,43,34,34,44,116,44,101,44,111,41,58,105,59,99,61,61,61,105,38,38,40,99,61,97,41,44,99,105,40,116,44,115,44,99,41,125,125,41,44,83,102,41,125,102,117,110,99,116,105,111,110,32,117,111,40,116,44,101,44,110,44,114,44,111,44,97,44,115,41,123,118,97,114,32,99,61,79,115,40,116,44,110,41,44,117,61,79,115,40,101,44,110,41,44,108,61,115,46,103,101,116,40,117,41,59,105,102,40,108,41,99,105,40,116,44,110,44,108,41,59,101,108,115,101,123,118,97,114,32,102,61,97,63,97,40,99,44,117,44,110,43,34,34,44,116,44,101,44,115,41,58,105,44,104,61,102,61,61,61,105,59,105,102,40,104,41,123,118,97,114,32,100,61,99,108,40,117,41,44,112,61,33,100,38,38,100,108,40,117,41,44,118,61,33,100,38,38,33,112,38,38,66,108,40,117,41,59,102,61,117,44,100,124,124,112,124,124,118,63,99,108,40,99,41,63,102,61,99,58,102,108,40,99,41,63,102,61,105,97,40,99,41,58,112,63,40,104,61,33,49,44,102,61,89,111,40,117,44,33,48,41,41,58,118,63,40,104,61,33,49,44,102,61,81,111,40,117,44,33,48,41,41,58,102,61,91,93,58,73,108,40,117,41,124,124,115,108,40,117,41,63,40,102,61,99,44,115,108,40,99,41,63,102,61,90,108,40,99,41,58,83,108,40,99,41,38,38,33,95,108,40,99,41,124,124,40,102,61,110,115,40,117,41,41,41,58,104,61,33,49,125,104,38,38,40,115,46,115,101,116,40,117,44,102,41,44,111,40,102,44,117,44,114,44,97,44,115,41,44,115,91,34,100,101,108,101,116,101,34,93,40,117,41,41,44,99,105,40,116,44,110,44,102,41,125,125,102,117,110,99,116,105,111,110,32,108,111,40,116,44,101,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,59,105,102,40,110,41,114,101,116,117,114,110,32,101,43,61,101,60,48,63,110,58,48,44,97,115,40,101,44,110,41,63,116,91,101,93,58,105,125,102,117,110,99,116,105,111,110,32,102,111,40,116,44,101,44,110,41,123,101,61,101,46,108,101,110,103,116,104,63,80,110,40,101,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,99,108,40,116,41,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,73,105,40,101,44,49,61,61,61,116,46,108,101,110,103,116,104,63,116,91,48,93,58,116,41,125,58,116,125,41,41,58,91,68,104,93,59,118,97,114,32,114,61,45,49,59,101,61,80,110,40,101,44,75,110,40,85,97,40,41,41,41,59,118,97,114,32,105,61,111,111,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,110,44,105,41,123,118,97,114,32,111,61,80,110,40,101,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,41,59,114,101,116,117,114,110,123,99,114,105,116,101,114,105,97,58,111,44,105,110,100,101,120,58,43,43,114,44,118,97,108,117,101,58,116,125,125,41,41,59,114,101,116,117,114,110,32,85,110,40,105,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,97,40,116,44,101,44,110,41,125,41,41,125,102,117,110,99,116,105,111,110,32,104,111,40,116,44,101,41,123,114,101,116,117,114,110,32,112,111,40,116,44,101,44,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,121,102,40,116,44,110,41,125,41,41,125,102,117,110,99,116,105,111,110,32,112,111,40,116,44,101,44,110,41,123,118,97,114,32,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,44,111,61,123,125,59,119,104,105,108,101,40,43,43,114,60,105,41,123,118,97,114,32,97,61,101,91,114,93,44,115,61,73,105,40,116,44,97,41,59,110,40,115,44,97,41,38,38,83,111,40,111,44,85,111,40,97,44,116,41,44,115,41,125,114,101,116,117,114,110,32,111,125,102,117,110,99,116,105,111,110,32,118,111,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,73,105,40,101,44,116,41,125,125,102,117,110,99,116,105,111,110,32,103,111,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,114,63,82,110,58,70,110,44,111,61,45,49,44,97,61,101,46,108,101,110,103,116,104,44,115,61,116,59,116,61,61,61,101,38,38,40,101,61,105,97,40,101,41,41,44,110,38,38,40,115,61,80,110,40,116,44,75,110,40,110,41,41,41,59,119,104,105,108,101,40,43,43,111,60,97,41,123,118,97,114,32,99,61,48,44,117,61,101,91,111,93,44,108,61,110,63,110,40,117,41,58,117,59,119,104,105,108,101,40,40,99,61,105,40,115,44,108,44,99,44,114,41,41,62,45,49,41,115,33,61,61,116,38,38,107,101,46,99,97,108,108,40,115,44,99,44,49,41,44,107,101,46,99,97,108,108,40,116,44,99,44,49,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,109,111,40,116,44,101,41,123,118,97,114,32,110,61,116,63,101,46,108,101,110,103,116,104,58,48,44,114,61,110,45,49,59,119,104,105,108,101,40,110,45,45,41,123,118,97,114,32,105,61,101,91,110,93,59,105,102,40,110,61,61,114,124,124,105,33,61,61,111,41,123,118,97,114,32,111,61,105,59,97,115,40,105,41,63,107,101,46,99,97,108,108,40,116,44,105,44,49,41,58,36,111,40,116,44,105,41,125,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,98,111,40,116,44,101,41,123,114,101,116,117,114,110,32,116,43,73,101,40,71,101,40,41,42,40,101,45,116,43,49,41,41,125,102,117,110,99,116,105,111,110,32,121,111,40,116,44,101,44,114,44,105,41,123,118,97,114,32,111,61,45,49,44,97,61,66,101,40,76,101,40,40,101,45,116,41,47,40,114,124,124,49,41,41,44,48,41,44,115,61,110,40,97,41,59,119,104,105,108,101,40,97,45,45,41,115,91,105,63,97,58,43,43,111,93,61,116,44,116,43,61,114,59,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,119,111,40,116,44,101,41,123,118,97,114,32,110,61,34,34,59,105,102,40,33,116,124,124,101,60,49,124,124,101,62,36,41,114,101,116,117,114,110,32,110,59,100,111,123,101,37,50,38,38,40,110,43,61,116,41,44,101,61,73,101,40,101,47,50,41,44,101,38,38,40,116,43,61,116,41,125,119,104,105,108,101,40,101,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,95,111,40,116,44,101,41,123,114,101,116,117,114,110,32,67,115,40,119,115,40,116,44,101,44,68,104,41,44,116,43,34,34,41,125,102,117,110,99,116,105,111,110,32,120,111,40,116,41,123,114,101,116,117,114,110,32,111,105,40,86,102,40,116,41,41,125,102,117,110,99,116,105,111,110,32,79,111,40,116,44,101,41,123,118,97,114,32,110,61,86,102,40,116,41,59,114,101,116,117,114,110,32,106,115,40,110,44,103,105,40,101,44,48,44,110,46,108,101,110,103,116,104,41,41,125,102,117,110,99,116,105,111,110,32,83,111,40,116,44,101,44,110,44,114,41,123,105,102,40,33,83,108,40,116,41,41,114,101,116,117,114,110,32,116,59,101,61,85,111,40,101,44,116,41,59,118,97,114,32,111,61,45,49,44,97,61,101,46,108,101,110,103,116,104,44,115,61,97,45,49,44,99,61,116,59,119,104,105,108,101,40,110,117,108,108,33,61,99,38,38,43,43,111,60,97,41,123,118,97,114,32,117,61,68,115,40,101,91,111,93,41,44,108,61,110,59,105,102,40,34,95,95,112,114,111,116,111,95,95,34,61,61,61,117,124,124,34,99,111,110,115,116,114,117,99,116,111,114,34,61,61,61,117,124,124,34,112,114,111,116,111,116,121,112,101,34,61,61,61,117,41,114,101,116,117,114,110,32,116,59,105,102,40,111,33,61,115,41,123,118,97,114,32,102,61,99,91,117,93,59,108,61,114,63,114,40,102,44,117,44,99,41,58,105,44,108,61,61,61,105,38,38,40,108,61,83,108,40,102,41,63,102,58,97,115,40,101,91,111,43,49,93,41,63,91,93,58,123,125,41,125,117,105,40,99,44,117,44,108,41,44,99,61,99,91,117,93,125,114,101,116,117,114,110,32,116,125,118,97,114,32,107,111,61,99,110,63,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,99,110,46,115,101,116,40,116,44,101,41,44,116,125,58,68,104,44,67,111,61,106,101,63,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,106,101,40,116,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,33,48,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,118,97,108,117,101,58,80,104,40,101,41,44,119,114,105,116,97,98,108,101,58,33,48,125,41,125,58,68,104,59,102,117,110,99,116,105,111,110,32,80,111,40,116,41,123,114,101,116,117,114,110,32,106,115,40,86,102,40,116,41,41,125,102,117,110,99,116,105,111,110,32,84,111,40,116,44,101,44,114,41,123,118,97,114,32,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,59,101,60,48,38,38,40,101,61,45,101,62,111,63,48,58,111,43,101,41,44,114,61,114,62,111,63,111,58,114,44,114,60,48,38,38,40,114,43,61,111,41,44,111,61,101,62,114,63,48,58,114,45,101,62,62,62,48,44,101,62,62,62,61,48,59,118,97,114,32,97,61,110,40,111,41,59,119,104,105,108,101,40,43,43,105,60,111,41,97,91,105,93,61,116,91,105,43,101,93,59,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,106,111,40,116,44,101,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,120,105,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,114,44,105,41,123,114,101,116,117,114,110,32,110,61,101,40,116,44,114,44,105,41,44,33,110,125,41,41,44,33,33,110,125,102,117,110,99,116,105,111,110,32,69,111,40,116,44,101,44,110,41,123,118,97,114,32,114,61,48,44,105,61,110,117,108,108,61,61,116,63,114,58,116,46,108,101,110,103,116,104,59,105,102,40,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,38,38,101,61,61,61,101,38,38,105,60,61,122,41,123,119,104,105,108,101,40,114,60,105,41,123,118,97,114,32,111,61,114,43,105,62,62,62,49,44,97,61,116,91,111,93,59,110,117,108,108,33,61,61,97,38,38,33,78,108,40,97,41,38,38,40,110,63,97,60,61,101,58,97,60,101,41,63,114,61,111,43,49,58,105,61,111,125,114,101,116,117,114,110,32,105,125,114,101,116,117,114,110,32,68,111,40,116,44,101,44,68,104,44,110,41,125,102,117,110,99,116,105,111,110,32,68,111,40,116,44,101,44,110,44,114,41,123,118,97,114,32,111,61,48,44,97,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,105,102,40,48,61,61,61,97,41,114,101,116,117,114,110,32,48,59,101,61,110,40,101,41,59,118,97,114,32,115,61,101,33,61,61,101,44,99,61,110,117,108,108,61,61,61,101,44,117,61,78,108,40,101,41,44,108,61,101,61,61,61,105,59,119,104,105,108,101,40,111,60,97,41,123,118,97,114,32,102,61,73,101,40,40,111,43,97,41,47,50,41,44,104,61,110,40,116,91,102,93,41,44,100,61,104,33,61,61,105,44,112,61,110,117,108,108,61,61,61,104,44,118,61,104,61,61,61,104,44,103,61,78,108,40,104,41,59,105,102,40,115,41,118,97,114,32,109,61,114,124,124,118,59,101,108,115,101,32,109,61,108,63,118,38,38,40,114,124,124,100,41,58,99,63,118,38,38,100,38,38,40,114,124,124,33,112,41,58,117,63,118,38,38,100,38,38,33,112,38,38,40,114,124,124,33,103,41,58,33,112,38,38,33,103,38,38,40,114,63,104,60,61,101,58,104,60,101,41,59,109,63,111,61,102,43,49,58,97,61,102,125,114,101,116,117,114,110,32,122,101,40,97,44,66,41,125,102,117,110,99,116,105,111,110,32,65,111,40,116,44,101,41,123,118,97,114,32,110,61,45,49,44,114,61,116,46,108,101,110,103,116,104,44,105,61,48,44,111,61,91,93,59,119,104,105,108,101,40,43,43,110,60,114,41,123,118,97,114,32,97,61,116,91,110,93,44,115,61,101,63,101,40,97,41,58,97,59,105,102,40,33,110,124,124,33,105,108,40,115,44,99,41,41,123,118,97,114,32,99,61,115,59,111,91,105,43,43,93,61,48,61,61,61,97,63,48,58,97,125,125,114,101,116,117,114,110,32,111,125,102,117,110,99,116,105,111,110,32,76,111,40,116,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,116,63,116,58,78,108,40,116,41,63,82,58,43,116,125,102,117,110,99,116,105,111,110,32,73,111,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,116,59,105,102,40,99,108,40,116,41,41,114,101,116,117,114,110,32,80,110,40,116,44,73,111,41,43,34,34,59,105,102,40,78,108,40,116,41,41,114,101,116,117,114,110,32,119,114,63,119,114,46,99,97,108,108,40,116,41,58,34,34,59,118,97,114,32,101,61,116,43,34,34,59,114,101,116,117,114,110,34,48,34,61,61,101,38,38,49,47,116,61,61,45,77,63,34,45,48,34,58,101,125,102,117,110,99,116,105,111,110,32,77,111,40,116,44,101,44,110,41,123,118,97,114,32,114,61,45,49,44,105,61,107,110,44,111,61,116,46,108,101,110,103,116,104,44,115,61,33,48,44,99,61,91,93,44,117,61,99,59,105,102,40,110,41,115,61,33,49,44,105,61,67,110,59,101,108,115,101,32,105,102,40,111,62,61,97,41,123,118,97,114,32,108,61,101,63,110,117,108,108,58,106,97,40,116,41,59,105,102,40,108,41,114,101,116,117,114,110,32,102,114,40,108,41,59,115,61,33,49,44,105,61,90,110,44,117,61,110,101,119,32,75,114,125,101,108,115,101,32,117,61,101,63,91,93,58,99,59,116,58,119,104,105,108,101,40,43,43,114,60,111,41,123,118,97,114,32,102,61,116,91,114,93,44,104,61,101,63,101,40,102,41,58,102,59,105,102,40,102,61,110,124,124,48,33,61,61,102,63,102,58,48,44,115,38,38,104,61,61,61,104,41,123,118,97,114,32,100,61,117,46,108,101,110,103,116,104,59,119,104,105,108,101,40,100,45,45,41,105,102,40,117,91,100,93,61,61,61,104,41,99,111,110,116,105,110,117,101,32,116,59,101,38,38,117,46,112,117,115,104,40,104,41,44,99,46,112,117,115,104,40,102,41,125,101,108,115,101,32,105,40,117,44,104,44,110,41,124,124,40,117,33,61,61,99,38,38,117,46,112,117,115,104,40,104,41,44,99,46,112,117,115,104,40,102,41,41,125,114,101,116,117,114,110,32,99,125,102,117,110,99,116,105,111,110,32,36,111,40,116,44,101,41,123,114,101,116,117,114,110,32,101,61,85,111,40,101,44,116,41,44,116,61,95,115,40,116,44,101,41,44,110,117,108,108,61,61,116,124,124,100,101,108,101,116,101,32,116,91,68,115,40,111,99,40,101,41,41,93,125,102,117,110,99,116,105,111,110,32,70,111,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,83,111,40,116,44,101,44,110,40,73,105,40,116,44,101,41,41,44,114,41,125,102,117,110,99,116,105,111,110,32,82,111,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,46,108,101,110,103,116,104,44,111,61,114,63,105,58,45,49,59,119,104,105,108,101,40,40,114,63,111,45,45,58,43,43,111,60,105,41,38,38,101,40,116,91,111,93,44,111,44,116,41,41,59,114,101,116,117,114,110,32,110,63,84,111,40,116,44,114,63,48,58,111,44,114,63,111,43,49,58,105,41,58,84,111,40,116,44,114,63,111,43,49,58,48,44,114,63,105,58,111,41,125,102,117,110,99,116,105,111,110,32,78,111,40,116,44,101,41,123,118,97,114,32,110,61,116,59,114,101,116,117,114,110,32,110,32,105,110,115,116,97,110,99,101,111,102,32,80,114,38,38,40,110,61,110,46,118,97,108,117,101,40,41,41,44,106,110,40,101,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,102,117,110,99,46,97,112,112,108,121,40,101,46,116,104,105,115,65,114,103,44,84,110,40,91,116,93,44,101,46,97,114,103,115,41,41,125,41,44,110,41,125,102,117,110,99,116,105,111,110,32,66,111,40,116,44,101,44,114,41,123,118,97,114,32,105,61,116,46,108,101,110,103,116,104,59,105,102,40,105,60,50,41,114,101,116,117,114,110,32,105,63,77,111,40,116,91,48,93,41,58,91,93,59,118,97,114,32,111,61,45,49,44,97,61,110,40,105,41,59,119,104,105,108,101,40,43,43,111,60,105,41,123,118,97,114,32,115,61,116,91,111,93,44,99,61,45,49,59,119,104,105,108,101,40,43,43,99,60,105,41,99,33,61,111,38,38,40,97,91,111,93,61,95,105,40,97,91,111,93,124,124,115,44,116,91,99,93,44,101,44,114,41,41,125,114,101,116,117,114,110,32,77,111,40,84,105,40,97,44,49,41,44,101,44,114,41,125,102,117,110,99,116,105,111,110,32,122,111,40,116,44,101,44,110,41,123,118,97,114,32,114,61,45,49,44,111,61,116,46,108,101,110,103,116,104,44,97,61,101,46,108,101,110,103,116,104,44,115,61,123,125,59,119,104,105,108,101,40,43,43,114,60,111,41,123,118,97,114,32,99,61,114,60,97,63,101,91,114,93,58,105,59,110,40,115,44,116,91,114,93,44,99,41,125,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,86,111,40,116,41,123,114,101,116,117,114,110,32,102,108,40,116,41,63,116,58,91,93,125,102,117,110,99,116,105,111,110,32,72,111,40,116,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,116,63,116,58,68,104,125,102,117,110,99,116,105,111,110,32,85,111,40,116,44,101,41,123,114,101,116,117,114,110,32,99,108,40,116,41,63,116,58,99,115,40,116,44,101,41,63,91,116,93,58,69,115,40,81,108,40,116,41,41,125,118,97,114,32,87,111,61,95,111,59,102,117,110,99,116,105,111,110,32,71,111,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,110,61,110,61,61,61,105,63,114,58,110,44,33,101,38,38,110,62,61,114,63,116,58,84,111,40,116,44,101,44,110,41,125,118,97,114,32,113,111,61,69,101,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,115,110,46,99,108,101,97,114,84,105,109,101,111,117,116,40,116,41,125,59,102,117,110,99,116,105,111,110,32,89,111,40,116,44,101,41,123,105,102,40,101,41,114,101,116,117,114,110,32,116,46,115,108,105,99,101,40,41,59,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,114,61,95,101,63,95,101,40,110,41,58,110,101,119,32,116,46,99,111,110,115,116,114,117,99,116,111,114,40,110,41,59,114,101,116,117,114,110,32,116,46,99,111,112,121,40,114,41,44,114,125,102,117,110,99,116,105,111,110,32,75,111,40,116,41,123,118,97,114,32,101,61,110,101,119,32,116,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,98,121,116,101,76,101,110,103,116,104,41,59,114,101,116,117,114,110,32,110,101,119,32,119,101,40,101,41,46,115,101,116,40,110,101,119,32,119,101,40,116,41,41,44,101,125,102,117,110,99,116,105,111,110,32,88,111,40,116,44,101,41,123,118,97,114,32,110,61,101,63,75,111,40,116,46,98,117,102,102,101,114,41,58,116,46,98,117,102,102,101,114,59,114,101,116,117,114,110,32,110,101,119,32,116,46,99,111,110,115,116,114,117,99,116,111,114,40,110,44,116,46,98,121,116,101,79,102,102,115,101,116,44,116,46,98,121,116,101,76,101,110,103,116,104,41,125,102,117,110,99,116,105,111,110,32,90,111,40,116,41,123,118,97,114,32,101,61,110,101,119,32,116,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,115,111,117,114,99,101,44,71,116,46,101,120,101,99,40,116,41,41,59,114,101,116,117,114,110,32,101,46,108,97,115,116,73,110,100,101,120,61,116,46,108,97,115,116,73,110,100,101,120,44,101,125,102,117,110,99,116,105,111,110,32,74,111,40,116,41,123,114,101,116,117,114,110,32,121,114,63,110,101,40,121,114,46,99,97,108,108,40,116,41,41,58,123,125,125,102,117,110,99,116,105,111,110,32,81,111,40,116,44,101,41,123,118,97,114,32,110,61,101,63,75,111,40,116,46,98,117,102,102,101,114,41,58,116,46,98,117,102,102,101,114,59,114,101,116,117,114,110,32,110,101,119,32,116,46,99,111,110,115,116,114,117,99,116,111,114,40,110,44,116,46,98,121,116,101,79,102,102,115,101,116,44,116,46,108,101,110,103,116,104,41,125,102,117,110,99,116,105,111,110,32,116,97,40,116,44,101,41,123,105,102,40,116,33,61,61,101,41,123,118,97,114,32,110,61,116,33,61,61,105,44,114,61,110,117,108,108,61,61,61,116,44,111,61,116,61,61,61,116,44,97,61,78,108,40,116,41,44,115,61,101,33,61,61,105,44,99,61,110,117,108,108,61,61,61,101,44,117,61,101,61,61,61,101,44,108,61,78,108,40,101,41,59,105,102,40,33,99,38,38,33,108,38,38,33,97,38,38,116,62,101,124,124,97,38,38,115,38,38,117,38,38,33,99,38,38,33,108,124,124,114,38,38,115,38,38,117,124,124,33,110,38,38,117,124,124,33,111,41,114,101,116,117,114,110,32,49,59,105,102,40,33,114,38,38,33,97,38,38,33,108,38,38,116,60,101,124,124,108,38,38,110,38,38,111,38,38,33,114,38,38,33,97,124,124,99,38,38,110,38,38,111,124,124,33,115,38,38,111,124,124,33,117,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,101,97,40,116,44,101,44,110,41,123,118,97,114,32,114,61,45,49,44,105,61,116,46,99,114,105,116,101,114,105,97,44,111,61,101,46,99,114,105,116,101,114,105,97,44,97,61,105,46,108,101,110,103,116,104,44,115,61,110,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,114,60,97,41,123,118,97,114,32,99,61,116,97,40,105,91,114,93,44,111,91,114,93,41,59,105,102,40,99,41,123,105,102,40,114,62,61,115,41,114,101,116,117,114,110,32,99,59,118,97,114,32,117,61,110,91,114,93,59,114,101,116,117,114,110,32,99,42,40,34,100,101,115,99,34,61,61,117,63,45,49,58,49,41,125,125,114,101,116,117,114,110,32,116,46,105,110,100,101,120,45,101,46,105,110,100,101,120,125,102,117,110,99,116,105,111,110,32,110,97,40,116,44,101,44,114,44,105,41,123,118,97,114,32,111,61,45,49,44,97,61,116,46,108,101,110,103,116,104,44,115,61,114,46,108,101,110,103,116,104,44,99,61,45,49,44,117,61,101,46,108,101,110,103,116,104,44,108,61,66,101,40,97,45,115,44,48,41,44,102,61,110,40,117,43,108,41,44,104,61,33,105,59,119,104,105,108,101,40,43,43,99,60,117,41,102,91,99,93,61,101,91,99,93,59,119,104,105,108,101,40,43,43,111,60,115,41,40,104,124,124,111,60,97,41,38,38,40,102,91,114,91,111,93,93,61,116,91,111,93,41,59,119,104,105,108,101,40,108,45,45,41,102,91,99,43,43,93,61,116,91,111,43,43,93,59,114,101,116,117,114,110,32,102,125,102,117,110,99,116,105,111,110,32,114,97,40,116,44,101,44,114,44,105,41,123,118,97,114,32,111,61,45,49,44,97,61,116,46,108,101,110,103,116,104,44,115,61,45,49,44,99,61,114,46,108,101,110,103,116,104,44,117,61,45,49,44,108,61,101,46,108,101,110,103,116,104,44,102,61,66,101,40,97,45,99,44,48,41,44,104,61,110,40,102,43,108,41,44,100,61,33,105,59,119,104,105,108,101,40,43,43,111,60,102,41,104,91,111,93,61,116,91,111,93,59,118,97,114,32,112,61,111,59,119,104,105,108,101,40,43,43,117,60,108,41,104,91,112,43,117,93,61,101,91,117,93,59,119,104,105,108,101,40,43,43,115,60,99,41,40,100,124,124,111,60,97,41,38,38,40,104,91,112,43,114,91,115,93,93,61,116,91,111,43,43,93,41,59,114,101,116,117,114,110,32,104,125,102,117,110,99,116,105,111,110,32,105,97,40,116,44,101,41,123,118,97,114,32,114,61,45,49,44,105,61,116,46,108,101,110,103,116,104,59,101,124,124,40,101,61,110,40,105,41,41,59,119,104,105,108,101,40,43,43,114,60,105,41,101,91,114,93,61,116,91,114,93,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,111,97,40,116,44,101,44,110,44,114,41,123,118,97,114,32,111,61,33,110,59,110,124,124,40,110,61,123,125,41,59,118,97,114,32,97,61,45,49,44,115,61,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,97,60,115,41,123,118,97,114,32,99,61,101,91,97,93,44,117,61,114,63,114,40,110,91,99,93,44,116,91,99,93,44,99,44,110,44,116,41,58,105,59,117,61,61,61,105,38,38,40,117,61,116,91,99,93,41,44,111,63,112,105,40,110,44,99,44,117,41,58,117,105,40,110,44,99,44,117,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,97,97,40,116,44,101,41,123,114,101,116,117,114,110,32,111,97,40,116,44,75,97,40,116,41,44,101,41,125,102,117,110,99,116,105,111,110,32,115,97,40,116,44,101,41,123,114,101,116,117,114,110,32,111,97,40,116,44,88,97,40,116,41,44,101,41,125,102,117,110,99,116,105,111,110,32,99,97,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,105,61,99,108,40,110,41,63,119,110,58,102,105,44,111,61,101,63,101,40,41,58,123,125,59,114,101,116,117,114,110,32,105,40,110,44,116,44,85,97,40,114,44,50,41,44,111,41,125,125,102,117,110,99,116,105,111,110,32,117,97,40,116,41,123,114,101,116,117,114,110,32,95,111,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,61,45,49,44,111,61,110,46,108,101,110,103,116,104,44,97,61,111,62,49,63,110,91,111,45,49,93,58,105,44,115,61,111,62,50,63,110,91,50,93,58,105,59,97,61,116,46,108,101,110,103,116,104,62,51,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,97,63,40,111,45,45,44,97,41,58,105,44,115,38,38,115,115,40,110,91,48,93,44,110,91,49,93,44,115,41,38,38,40,97,61,111,60,51,63,105,58,97,44,111,61,49,41,44,101,61,110,101,40,101,41,59,119,104,105,108,101,40,43,43,114,60,111,41,123,118,97,114,32,99,61,110,91,114,93,59,99,38,38,116,40,101,44,99,44,114,44,97,41,125,114,101,116,117,114,110,32,101,125,41,41,125,102,117,110,99,116,105,111,110,32,108,97,40,116,44,101,41,123,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,117,108,108,61,61,110,41,114,101,116,117,114,110,32,110,59,105,102,40,33,108,108,40,110,41,41,114,101,116,117,114,110,32,116,40,110,44,114,41,59,118,97,114,32,105,61,110,46,108,101,110,103,116,104,44,111,61,101,63,105,58,45,49,44,97,61,110,101,40,110,41,59,119,104,105,108,101,40,101,63,111,45,45,58,43,43,111,60,105,41,105,102,40,33,49,61,61,61,114,40,97,91,111,93,44,111,44,97,41,41,98,114,101,97,107,59,114,101,116,117,114,110,32,110,125,125,102,117,110,99,116,105,111,110,32,102,97,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,44,114,41,123,118,97,114,32,105,61,45,49,44,111,61,110,101,40,101,41,44,97,61,114,40,101,41,44,115,61,97,46,108,101,110,103,116,104,59,119,104,105,108,101,40,115,45,45,41,123,118,97,114,32,99,61,97,91,116,63,115,58,43,43,105,93,59,105,102,40,33,49,61,61,61,110,40,111,91,99,93,44,99,44,111,41,41,98,114,101,97,107,125,114,101,116,117,114,110,32,101,125,125,102,117,110,99,116,105,111,110,32,104,97,40,116,44,101,44,110,41,123,118,97,114,32,114,61,101,38,98,44,105,61,118,97,40,116,41,59,102,117,110,99,116,105,111,110,32,111,40,41,123,118,97,114,32,101,61,116,104,105,115,38,38,116,104,105,115,33,61,61,115,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,111,63,105,58,116,59,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,114,63,110,58,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,111,125,102,117,110,99,116,105,111,110,32,100,97,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,101,61,81,108,40,101,41,59,118,97,114,32,110,61,111,114,40,101,41,63,103,114,40,101,41,58,105,44,114,61,110,63,110,91,48,93,58,101,46,99,104,97,114,65,116,40,48,41,44,111,61,110,63,71,111,40,110,44,49,41,46,106,111,105,110,40,34,34,41,58,101,46,115,108,105,99,101,40,49,41,59,114,101,116,117,114,110,32,114,91,116,93,40,41,43,111,125,125,102,117,110,99,116,105,111,110,32,112,97,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,106,110,40,120,104,40,75,102,40,101,41,46,114,101,112,108,97,99,101,40,86,101,44,34,34,41,41,44,116,44,34,34,41,125,125,102,117,110,99,116,105,111,110,32,118,97,40,116,41,123,114,101,116,117,114,110,32,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,59,115,119,105,116,99,104,40,101,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,101,119,32,116,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,101,119,32,116,40,101,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,101,119,32,116,40,101,91,48,93,44,101,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,110,101,119,32,116,40,101,91,48,93,44,101,91,49,93,44,101,91,50,93,41,59,99,97,115,101,32,52,58,114,101,116,117,114,110,32,110,101,119,32,116,40,101,91,48,93,44,101,91,49,93,44,101,91,50,93,44,101,91,51,93,41,59,99,97,115,101,32,53,58,114,101,116,117,114,110,32,110,101,119,32,116,40,101,91,48,93,44,101,91,49,93,44,101,91,50,93,44,101,91,51,93,44,101,91,52,93,41,59,99,97,115,101,32,54,58,114,101,116,117,114,110,32,110,101,119,32,116,40,101,91,48,93,44,101,91,49,93,44,101,91,50,93,44,101,91,51,93,44,101,91,52,93,44,101,91,53,93,41,59,99,97,115,101,32,55,58,114,101,116,117,114,110,32,110,101,119,32,116,40,101,91,48,93,44,101,91,49,93,44,101,91,50,93,44,101,91,51,93,44,101,91,52,93,44,101,91,53,93,44,101,91,54,93,41,125,118,97,114,32,110,61,83,114,40,116,46,112,114,111,116,111,116,121,112,101,41,44,114,61,116,46,97,112,112,108,121,40,110,44,101,41,59,114,101,116,117,114,110,32,83,108,40,114,41,63,114,58,110,125,125,102,117,110,99,116,105,111,110,32,103,97,40,116,44,101,44,114,41,123,118,97,114,32,111,61,118,97,40,116,41,59,102,117,110,99,116,105,111,110,32,97,40,41,123,118,97,114,32,115,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,99,61,110,40,115,41,44,117,61,115,44,108,61,72,97,40,97,41,59,119,104,105,108,101,40,117,45,45,41,99,91,117,93,61,97,114,103,117,109,101,110,116,115,91,117,93,59,118,97,114,32,102,61,115,60,51,38,38,99,91,48,93,33,61,61,108,38,38,99,91,115,45,49,93,33,61,61,108,63,91,93,58,108,114,40,99,44,108,41,59,105,102,40,115,45,61,102,46,108,101,110,103,116,104,44,115,60,114,41,114,101,116,117,114,110,32,80,97,40,116,44,101,44,121,97,44,97,46,112,108,97,99,101,104,111,108,100,101,114,44,105,44,99,44,102,44,105,44,105,44,114,45,115,41,59,118,97,114,32,104,61,116,104,105,115,38,38,116,104,105,115,33,61,61,115,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,97,63,111,58,116,59,114,101,116,117,114,110,32,121,110,40,104,44,116,104,105,115,44,99,41,125,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,109,97,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,44,114,41,123,118,97,114,32,111,61,110,101,40,101,41,59,105,102,40,33,108,108,40,101,41,41,123,118,97,114,32,97,61,85,97,40,110,44,51,41,59,101,61,79,102,40,101,41,44,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,40,111,91,116,93,44,116,44,111,41,125,125,118,97,114,32,115,61,116,40,101,44,110,44,114,41,59,114,101,116,117,114,110,32,115,62,45,49,63,111,91,97,63,101,91,115,93,58,115,93,58,105,125,125,102,117,110,99,116,105,111,110,32,98,97,40,116,41,123,114,101,116,117,114,110,32,82,97,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,101,46,108,101,110,103,116,104,44,114,61,110,44,111,61,67,114,46,112,114,111,116,111,116,121,112,101,46,116,104,114,117,59,116,38,38,101,46,114,101,118,101,114,115,101,40,41,59,119,104,105,108,101,40,114,45,45,41,123,118,97,114,32,97,61,101,91,114,93,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,97,41,116,104,114,111,119,32,110,101,119,32,111,101,40,99,41,59,105,102,40,111,38,38,33,115,38,38,34,119,114,97,112,112,101,114,34,61,61,86,97,40,97,41,41,118,97,114,32,115,61,110,101,119,32,67,114,40,91,93,44,33,48,41,125,114,61,115,63,114,58,110,59,119,104,105,108,101,40,43,43,114,60,110,41,123,97,61,101,91,114,93,59,118,97,114,32,117,61,86,97,40,97,41,44,108,61,34,119,114,97,112,112,101,114,34,61,61,117,63,122,97,40,97,41,58,105,59,115,61,108,38,38,108,115,40,108,91,48,93,41,38,38,108,91,49,93,61,61,40,107,124,95,124,79,124,67,41,38,38,33,108,91,52,93,46,108,101,110,103,116,104,38,38,49,61,61,108,91,57,93,63,115,91,86,97,40,108,91,48,93,41,93,46,97,112,112,108,121,40,115,44,108,91,51,93,41,58,49,61,61,97,46,108,101,110,103,116,104,38,38,108,115,40,97,41,63,115,91,117,93,40,41,58,115,46,116,104,114,117,40,97,41,125,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,44,114,61,116,91,48,93,59,105,102,40,115,38,38,49,61,61,116,46,108,101,110,103,116,104,38,38,99,108,40,114,41,41,114,101,116,117,114,110,32,115,46,112,108,97,110,116,40,114,41,46,118,97,108,117,101,40,41,59,118,97,114,32,105,61,48,44,111,61,110,63,101,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,58,114,59,119,104,105,108,101,40,43,43,105,60,110,41,111,61,101,91,105,93,46,99,97,108,108,40,116,104,105,115,44,111,41,59,114,101,116,117,114,110,32,111,125,125,41,41,125,102,117,110,99,116,105,111,110,32,121,97,40,116,44,101,44,114,44,111,44,97,44,115,44,99,44,117,44,108,44,102,41,123,118,97,114,32,104,61,101,38,107,44,100,61,101,38,98,44,112,61,101,38,121,44,118,61,101,38,40,95,124,120,41,44,103,61,101,38,80,44,109,61,112,63,105,58,118,97,40,116,41,59,102,117,110,99,116,105,111,110,32,119,40,41,123,118,97,114,32,105,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,98,61,110,40,105,41,44,121,61,105,59,119,104,105,108,101,40,121,45,45,41,98,91,121,93,61,97,114,103,117,109,101,110,116,115,91,121,93,59,105,102,40,118,41,118,97,114,32,95,61,72,97,40,119,41,44,120,61,116,114,40,98,44,95,41,59,105,102,40,111,38,38,40,98,61,110,97,40,98,44,111,44,97,44,118,41,41,44,115,38,38,40,98,61,114,97,40,98,44,115,44,99,44,118,41,41,44,105,45,61,120,44,118,38,38,105,60,102,41,123,118,97,114,32,79,61,108,114,40,98,44,95,41,59,114,101,116,117,114,110,32,80,97,40,116,44,101,44,121,97,44,119,46,112,108,97,99,101,104,111,108,100,101,114,44,114,44,98,44,79,44,117,44,108,44,102,45,105,41,125,118,97,114,32,83,61,100,63,114,58,116,104,105,115,44,107,61,112,63,83,91,116,93,58,116,59,114,101,116,117,114,110,32,105,61,98,46,108,101,110,103,116,104,44,117,63,98,61,120,115,40,98,44,117,41,58,103,38,38,105,62,49,38,38,98,46,114,101,118,101,114,115,101,40,41,44,104,38,38,108,60,105,38,38,40,98,46,108,101,110,103,116,104,61,108,41,44,116,104,105,115,38,38,116,104,105,115,33,61,61,115,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,119,38,38,40,107,61,109,124,124,118,97,40,107,41,41,44,107,46,97,112,112,108,121,40,83,44,98,41,125,114,101,116,117,114,110,32,119,125,102,117,110,99,116,105,111,110,32,119,97,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,86,105,40,110,44,116,44,101,40,114,41,44,123,125,41,125,125,102,117,110,99,116,105,111,110,32,95,97,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,111,59,105,102,40,110,61,61,61,105,38,38,114,61,61,61,105,41,114,101,116,117,114,110,32,101,59,105,102,40,110,33,61,61,105,38,38,40,111,61,110,41,44,114,33,61,61,105,41,123,105,102,40,111,61,61,61,105,41,114,101,116,117,114,110,32,114,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,124,124,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,63,40,110,61,73,111,40,110,41,44,114,61,73,111,40,114,41,41,58,40,110,61,76,111,40,110,41,44,114,61,76,111,40,114,41,41,44,111,61,116,40,110,44,114,41,125,114,101,116,117,114,110,32,111,125,125,102,117,110,99,116,105,111,110,32,120,97,40,116,41,123,114,101,116,117,114,110,32,82,97,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,80,110,40,101,44,75,110,40,85,97,40,41,41,41,44,95,111,40,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,116,104,105,115,59,114,101,116,117,114,110,32,116,40,101,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,121,110,40,116,44,114,44,110,41,125,41,41,125,41,41,125,41,41,125,102,117,110,99,116,105,111,110,32,79,97,40,116,44,101,41,123,101,61,101,61,61,61,105,63,34,32,34,58,73,111,40,101,41,59,118,97,114,32,110,61,101,46,108,101,110,103,116,104,59,105,102,40,110,60,50,41,114,101,116,117,114,110,32,110,63,119,111,40,101,44,116,41,58,101,59,118,97,114,32,114,61,119,111,40,101,44,76,101,40,116,47,118,114,40,101,41,41,41,59,114,101,116,117,114,110,32,111,114,40,101,41,63,71,111,40,103,114,40,114,41,44,48,44,116,41,46,106,111,105,110,40,34,34,41,58,114,46,115,108,105,99,101,40,48,44,116,41,125,102,117,110,99,116,105,111,110,32,83,97,40,116,44,101,44,114,44,105,41,123,118,97,114,32,111,61,101,38,98,44,97,61,118,97,40,116,41,59,102,117,110,99,116,105,111,110,32,115,40,41,123,118,97,114,32,101,61,45,49,44,99,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,117,61,45,49,44,108,61,105,46,108,101,110,103,116,104,44,102,61,110,40,108,43,99,41,44,104,61,116,104,105,115,38,38,116,104,105,115,33,61,61,115,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,115,63,97,58,116,59,119,104,105,108,101,40,43,43,117,60,108,41,102,91,117,93,61,105,91,117,93,59,119,104,105,108,101,40,99,45,45,41,102,91,117,43,43,93,61,97,114,103,117,109,101,110,116,115,91,43,43,101,93,59,114,101,116,117,114,110,32,121,110,40,104,44,111,63,114,58,116,104,105,115,44,102,41,125,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,107,97,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,44,114,41,123,114,101,116,117,114,110,32,114,38,38,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,114,38,38,115,115,40,101,44,110,44,114,41,38,38,40,110,61,114,61,105,41,44,101,61,113,108,40,101,41,44,110,61,61,61,105,63,40,110,61,101,44,101,61,48,41,58,110,61,113,108,40,110,41,44,114,61,114,61,61,61,105,63,101,60,110,63,49,58,45,49,58,113,108,40,114,41,44,121,111,40,101,44,110,44,114,44,116,41,125,125,102,117,110,99,116,105,111,110,32,67,97,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,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,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,124,124,40,101,61,88,108,40,101,41,44,110,61,88,108,40,110,41,41,44,116,40,101,44,110,41,125,125,102,117,110,99,116,105,111,110,32,80,97,40,116,44,101,44,110,44,114,44,111,44,97,44,115,44,99,44,117,44,108,41,123,118,97,114,32,102,61,101,38,95,44,104,61,102,63,115,58,105,44,100,61,102,63,105,58,115,44,112,61,102,63,97,58,105,44,118,61,102,63,105,58,97,59,101,124,61,102,63,79,58,83,44,101,38,61,126,40,102,63,83,58,79,41,44,101,38,119,124,124,40,101,38,61,126,40,98,124,121,41,41,59,118,97,114,32,103,61,91,116,44,101,44,111,44,112,44,104,44,118,44,100,44,99,44,117,44,108,93,44,109,61,110,46,97,112,112,108,121,40,105,44,103,41,59,114,101,116,117,114,110,32,108,115,40,116,41,38,38,83,115,40,109,44,103,41,44,109,46,112,108,97,99,101,104,111,108,100,101,114,61,114,44,80,115,40,109,44,116,44,101,41,125,102,117,110,99,116,105,111,110,32,84,97,40,116,41,123,118,97,114,32,101,61,101,101,91,116,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,116,61,88,108,40,116,41,44,110,61,110,117,108,108,61,61,110,63,48,58,122,101,40,89,108,40,110,41,44,50,57,50,41,44,110,38,38,70,101,40,116,41,41,123,118,97,114,32,114,61,40,81,108,40,116,41,43,34,101,34,41,46,115,112,108,105,116,40,34,101,34,41,44,105,61,101,40,114,91,48,93,43,34,101,34,43,40,43,114,91,49,93,43,110,41,41,59,114,101,116,117,114,110,32,114,61,40,81,108,40,105,41,43,34,101,34,41,46,115,112,108,105,116,40,34,101,34,41,44,43,40,114,91,48,93,43,34,101,34,43,40,43,114,91,49,93,45,110,41,41,125,114,101,116,117,114,110,32,101,40,116,41,125,125,118,97,114,32,106,97,61,101,110,38,38,49,47,102,114,40,110,101,119,32,101,110,40,91,44,45,48,93,41,41,91,49,93,61,61,77,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,101,110,40,116,41,125,58,78,104,59,102,117,110,99,116,105,111,110,32,69,97,40,116,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,110,61,90,97,40,101,41,59,114,101,116,117,114,110,32,110,61,61,74,63,99,114,40,101,41,58,110,61,61,111,116,63,104,114,40,101,41,58,113,110,40,101,44,116,40,101,41,41,125,125,102,117,110,99,116,105,111,110,32,68,97,40,116,44,101,44,110,44,114,44,111,44,97,44,115,44,117,41,123,118,97,114,32,108,61,101,38,121,59,105,102,40,33,108,38,38,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,111,101,40,99,41,59,118,97,114,32,102,61,114,63,114,46,108,101,110,103,116,104,58,48,59,105,102,40,102,124,124,40,101,38,61,126,40,79,124,83,41,44,114,61,111,61,105,41,44,115,61,115,61,61,61,105,63,115,58,66,101,40,89,108,40,115,41,44,48,41,44,117,61,117,61,61,61,105,63,117,58,89,108,40,117,41,44,102,45,61,111,63,111,46,108,101,110,103,116,104,58,48,44,101,38,83,41,123,118,97,114,32,104,61,114,44,100,61,111,59,114,61,111,61,105,125,118,97,114,32,112,61,108,63,105,58,122,97,40,116,41,44,118,61,91,116,44,101,44,110,44,114,44,111,44,104,44,100,44,97,44,115,44,117,93,59,105,102,40,112,38,38,109,115,40,118,44,112,41,44,116,61,118,91,48,93,44,101,61,118,91,49,93,44,110,61,118,91,50,93,44,114,61,118,91,51,93,44,111,61,118,91,52,93,44,117,61,118,91,57,93,61,118,91,57,93,61,61,61,105,63,108,63,48,58,116,46,108,101,110,103,116,104,58,66,101,40,118,91,57,93,45,102,44,48,41,44,33,117,38,38,101,38,40,95,124,120,41,38,38,40,101,38,61,126,40,95,124,120,41,41,44,101,38,38,101,33,61,98,41,103,61,101,61,61,95,124,124,101,61,61,120,63,103,97,40,116,44,101,44,117,41,58,101,33,61,79,38,38,101,33,61,40,98,124,79,41,124,124,111,46,108,101,110,103,116,104,63,121,97,46,97,112,112,108,121,40,105,44,118,41,58,83,97,40,116,44,101,44,110,44,114,41,59,101,108,115,101,32,118,97,114,32,103,61,104,97,40,116,44,101,44,110,41,59,118,97,114,32,109,61,112,63,107,111,58,83,115,59,114,101,116,117,114,110,32,80,115,40,109,40,103,44,118,41,44,116,44,101,41,125,102,117,110,99,116,105,111,110,32,65,97,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,116,61,61,61,105,124,124,105,108,40,116,44,99,101,91,110,93,41,38,38,33,102,101,46,99,97,108,108,40,114,44,110,41,63,101,58,116,125,102,117,110,99,116,105,111,110,32,76,97,40,116,44,101,44,110,44,114,44,111,44,97,41,123,114,101,116,117,114,110,32,83,108,40,116,41,38,38,83,108,40,101,41,38,38,40,97,46,115,101,116,40,101,44,116,41,44,99,111,40,116,44,101,44,105,44,76,97,44,97,41,44,97,91,34,100,101,108,101,116,101,34,93,40,101,41,41,44,116,125,102,117,110,99,116,105,111,110,32,73,97,40,116,41,123,114,101,116,117,114,110,32,73,108,40,116,41,63,105,58,116,125,102,117,110,99,116,105,111,110,32,77,97,40,116,44,101,44,110,44,114,44,111,44,97,41,123,118,97,114,32,115,61,110,38,103,44,99,61,116,46,108,101,110,103,116,104,44,117,61,101,46,108,101,110,103,116,104,59,105,102,40,99,33,61,117,38,38,33,40,115,38,38,117,62,99,41,41,114,101,116,117,114,110,33,49,59,118,97,114,32,108,61,97,46,103,101,116,40,116,41,44,102,61,97,46,103,101,116,40,101,41,59,105,102,40,108,38,38,102,41,114,101,116,117,114,110,32,108,61,61,101,38,38,102,61,61,116,59,118,97,114,32,104,61,45,49,44,100,61,33,48,44,112,61,110,38,109,63,110,101,119,32,75,114,58,105,59,97,46,115,101,116,40,116,44,101,41,44,97,46,115,101,116,40,101,44,116,41,59,119,104,105,108,101,40,43,43,104,60,99,41,123,118,97,114,32,118,61,116,91,104,93,44,98,61,101,91,104,93,59,105,102,40,114,41,118,97,114,32,121,61,115,63,114,40,98,44,118,44,104,44,101,44,116,44,97,41,58,114,40,118,44,98,44,104,44,116,44,101,44,97,41,59,105,102,40,121,33,61,61,105,41,123,105,102,40,121,41,99,111,110,116,105,110,117,101,59,100,61,33,49,59,98,114,101,97,107,125,105,102,40,112,41,123,105,102,40,33,68,110,40,101,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,90,110,40,112,44,101,41,38,38,40,118,61,61,61,116,124,124,111,40,118,44,116,44,110,44,114,44,97,41,41,41,114,101,116,117,114,110,32,112,46,112,117,115,104,40,101,41,125,41,41,41,123,100,61,33,49,59,98,114,101,97,107,125,125,101,108,115,101,32,105,102,40,118,33,61,61,98,38,38,33,111,40,118,44,98,44,110,44,114,44,97,41,41,123,100,61,33,49,59,98,114,101,97,107,125,125,114,101,116,117,114,110,32,97,91,34,100,101,108,101,116,101,34,93,40,116,41,44,97,91,34,100,101,108,101,116,101,34,93,40,101,41,44,100,125,102,117,110,99,116,105,111,110,32,36,97,40,116,44,101,44,110,44,114,44,105,44,111,44,97,41,123,115,119,105,116,99,104,40,110,41,123,99,97,115,101,32,104,116,58,105,102,40,116,46,98,121,116,101,76,101,110,103,116,104,33,61,101,46,98,121,116,101,76,101,110,103,116,104,124,124,116,46,98,121,116,101,79,102,102,115,101,116,33,61,101,46,98,121,116,101,79,102,102,115,101,116,41,114,101,116,117,114,110,33,49,59,116,61,116,46,98,117,102,102,101,114,44,101,61,101,46,98,117,102,102,101,114,59,99,97,115,101,32,102,116,58,114,101,116,117,114,110,33,40,116,46,98,121,116,101,76,101,110,103,116,104,33,61,101,46,98,121,116,101,76,101,110,103,116,104,124,124,33,111,40,110,101,119,32,119,101,40,116,41,44,110,101,119,32,119,101,40,101,41,41,41,59,99,97,115,101,32,71,58,99,97,115,101,32,113,58,99,97,115,101,32,81,58,114,101,116,117,114,110,32,105,108,40,43,116,44,43,101,41,59,99,97,115,101,32,75,58,114,101,116,117,114,110,32,116,46,110,97,109,101,61,61,101,46,110,97,109,101,38,38,116,46,109,101,115,115,97,103,101,61,61,101,46,109,101,115,115,97,103,101,59,99,97,115,101,32,105,116,58,99,97,115,101,32,97,116,58,114,101,116,117,114,110,32,116,61,61,101,43,34,34,59,99,97,115,101,32,74,58,118,97,114,32,115,61,99,114,59,99,97,115,101,32,111,116,58,118,97,114,32,99,61,114,38,103,59,105,102,40,115,124,124,40,115,61,102,114,41,44,116,46,115,105,122,101,33,61,101,46,115,105,122,101,38,38,33,99,41,114,101,116,117,114,110,33,49,59,118,97,114,32,117,61,97,46,103,101,116,40,116,41,59,105,102,40,117,41,114,101,116,117,114,110,32,117,61,61,101,59,114,124,61,109,44,97,46,115,101,116,40,116,44,101,41,59,118,97,114,32,108,61,77,97,40,115,40,116,41,44,115,40,101,41,44,114,44,105,44,111,44,97,41,59,114,101,116,117,114,110,32,97,91,34,100,101,108,101,116,101,34,93,40,116,41,44,108,59,99,97,115,101,32,115,116,58,105,102,40,121,114,41,114,101,116,117,114,110,32,121,114,46,99,97,108,108,40,116,41,61,61,121,114,46,99,97,108,108,40,101,41,125,114,101,116,117,114,110,33,49,125,102,117,110,99,116,105,111,110,32,70,97,40,116,44,101,44,110,44,114,44,111,44,97,41,123,118,97,114,32,115,61,110,38,103,44,99,61,78,97,40,116,41,44,117,61,99,46,108,101,110,103,116,104,44,108,61,78,97,40,101,41,44,102,61,108,46,108,101,110,103,116,104,59,105,102,40,117,33,61,102,38,38,33,115,41,114,101,116,117,114,110,33,49,59,118,97,114,32,104,61,117,59,119,104,105,108,101,40,104,45,45,41,123,118,97,114,32,100,61,99,91,104,93,59,105,102,40,33,40,115,63,100,32,105,110,32,101,58,102,101,46,99,97,108,108,40,101,44,100,41,41,41,114,101,116,117,114,110,33,49,125,118,97,114,32,112,61,97,46,103,101,116,40,116,41,44,118,61,97,46,103,101,116,40,101,41,59,105,102,40,112,38,38,118,41,114,101,116,117,114,110,32,112,61,61,101,38,38,118,61,61,116,59,118,97,114,32,109,61,33,48,59,97,46,115,101,116,40,116,44,101,41,44,97,46,115,101,116,40,101,44,116,41,59,118,97,114,32,98,61,115,59,119,104,105,108,101,40,43,43,104,60,117,41,123,100,61,99,91,104,93,59,118,97,114,32,121,61,116,91,100,93,44,119,61,101,91,100,93,59,105,102,40,114,41,118,97,114,32,95,61,115,63,114,40,119,44,121,44,100,44,101,44,116,44,97,41,58,114,40,121,44,119,44,100,44,116,44,101,44,97,41,59,105,102,40,33,40,95,61,61,61,105,63,121,61,61,61,119,124,124,111,40,121,44,119,44,110,44,114,44,97,41,58,95,41,41,123,109,61,33,49,59,98,114,101,97,107,125,98,124,124,40,98,61,34,99,111,110,115,116,114,117,99,116,111,114,34,61,61,100,41,125,105,102,40,109,38,38,33,98,41,123,118,97,114,32,120,61,116,46,99,111,110,115,116,114,117,99,116,111,114,44,79,61,101,46,99,111,110,115,116,114,117,99,116,111,114,59,120,61,61,79,124,124,33,40,34,99,111,110,115,116,114,117,99,116,111,114,34,105,110,32,116,41,124,124,33,40,34,99,111,110,115,116,114,117,99,116,111,114,34,105,110,32,101,41,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,120,38,38,120,32,105,110,115,116,97,110,99,101,111,102,32,120,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,79,38,38,79,32,105,110,115,116,97,110,99,101,111,102,32,79,124,124,40,109,61,33,49,41,125,114,101,116,117,114,110,32,97,91,34,100,101,108,101,116,101,34,93,40,116,41,44,97,91,34,100,101,108,101,116,101,34,93,40,101,41,44,109,125,102,117,110,99,116,105,111,110,32,82,97,40,116,41,123,114,101,116,117,114,110,32,67,115,40,119,115,40,116,44,105,44,89,115,41,44,116,43,34,34,41,125,102,117,110,99,116,105,111,110,32,78,97,40,116,41,123,114,101,116,117,114,110,32,77,105,40,116,44,79,102,44,75,97,41,125,102,117,110,99,116,105,111,110,32,66,97,40,116,41,123,114,101,116,117,114,110,32,77,105,40,116,44,83,102,44,88,97,41,125,118,97,114,32,122,97,61,99,110,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,99,110,46,103,101,116,40,116,41,125,58,78,104,59,102,117,110,99,116,105,111,110,32,86,97,40,116,41,123,118,97,114,32,101,61,116,46,110,97,109,101,43,34,34,44,110,61,117,110,91,101,93,44,114,61,102,101,46,99,97,108,108,40,117,110,44,101,41,63,110,46,108,101,110,103,116,104,58,48,59,119,104,105,108,101,40,114,45,45,41,123,118,97,114,32,105,61,110,91,114,93,44,111,61,105,46,102,117,110,99,59,105,102,40,110,117,108,108,61,61,111,124,124,111,61,61,116,41,114,101,116,117,114,110,32,105,46,110,97,109,101,125,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,72,97,40,116,41,123,118,97,114,32,101,61,102,101,46,99,97,108,108,40,120,114,44,34,112,108,97,99,101,104,111,108,100,101,114,34,41,63,120,114,58,116,59,114,101,116,117,114,110,32,101,46,112,108,97,99,101,104,111,108,100,101,114,125,102,117,110,99,116,105,111,110,32,85,97,40,41,123,118,97,114,32,116,61,120,114,46,105,116,101,114,97,116,101,101,124,124,65,104,59,114,101,116,117,114,110,32,116,61,116,61,61,61,65,104,63,101,111,58,116,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,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,116,125,102,117,110,99,116,105,111,110,32,87,97,40,116,44,101,41,123,118,97,114,32,110,61,116,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,117,115,40,101,41,63,110,91,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,34,115,116,114,105,110,103,34,58,34,104,97,115,104,34,93,58,110,46,109,97,112,125,102,117,110,99,116,105,111,110,32,71,97,40,116,41,123,118,97,114,32,101,61,79,102,40,116,41,44,110,61,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,123,118,97,114,32,114,61,101,91,110,93,44,105,61,116,91,114,93,59,101,91,110,93,61,91,114,44,105,44,112,115,40,105,41,93,125,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,113,97,40,116,44,101,41,123,118,97,114,32,110,61,105,114,40,116,44,101,41,59,114,101,116,117,114,110,32,90,105,40,110,41,63,110,58,105,125,102,117,110,99,116,105,111,110,32,89,97,40,116,41,123,118,97,114,32,101,61,102,101,46,99,97,108,108,40,116,44,84,101,41,44,110,61,116,91,84,101,93,59,116,114,121,123,116,91,84,101,93,61,105,59,118,97,114,32,114,61,33,48,125,99,97,116,99,104,40,97,41,123,125,118,97,114,32,111,61,112,101,46,99,97,108,108,40,116,41,59,114,101,116,117,114,110,32,114,38,38,40,101,63,116,91,84,101,93,61,110,58,100,101,108,101,116,101,32,116,91,84,101,93,41,44,111,125,118,97,114,32,75,97,61,77,101,63,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,91,93,58,40,116,61,110,101,40,116,41,44,83,110,40,77,101,40,116,41,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,83,101,46,99,97,108,108,40,116,44,101,41,125,41,41,41,125,58,89,104,44,88,97,61,77,101,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,91,93,59,119,104,105,108,101,40,116,41,84,110,40,101,44,75,97,40,116,41,41,44,116,61,120,101,40,116,41,59,114,101,116,117,114,110,32,101,125,58,89,104,44,90,97,61,36,105,59,102,117,110,99,116,105,111,110,32,74,97,40,116,44,101,44,110,41,123,118,97,114,32,114,61,45,49,44,105,61,110,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,114,60,105,41,123,118,97,114,32,111,61,110,91,114,93,44,97,61,111,46,115,105,122,101,59,115,119,105,116,99,104,40,111,46,116,121,112,101,41,123,99,97,115,101,34,100,114,111,112,34,58,116,43,61,97,59,98,114,101,97,107,59,99,97,115,101,34,100,114,111,112,82,105,103,104,116,34,58,101,45,61,97,59,98,114,101,97,107,59,99,97,115,101,34,116,97,107,101,34,58,101,61,122,101,40,101,44,116,43,97,41,59,98,114,101,97,107,59,99,97,115,101,34,116,97,107,101,82,105,103,104,116,34,58,116,61,66,101,40,116,44,101,45,97,41,59,98,114,101,97,107,125,125,114,101,116,117,114,110,123,115,116,97,114,116,58,116,44,101,110,100,58,101,125,125,102,117,110,99,116,105,111,110,32,81,97,40,116,41,123,118,97,114,32,101,61,116,46,109,97,116,99,104,40,66,116,41,59,114,101,116,117,114,110,32,101,63,101,91,49,93,46,115,112,108,105,116,40,122,116,41,58,91,93,125,102,117,110,99,116,105,111,110,32,116,115,40,116,44,101,44,110,41,123,101,61,85,111,40,101,44,116,41,59,118,97,114,32,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,44,111,61,33,49,59,119,104,105,108,101,40,43,43,114,60,105,41,123,118,97,114,32,97,61,68,115,40,101,91,114,93,41,59,105,102,40,33,40,111,61,110,117,108,108,33,61,116,38,38,110,40,116,44,97,41,41,41,98,114,101,97,107,59,116,61,116,91,97,93,125,114,101,116,117,114,110,32,111,124,124,43,43,114,33,61,105,63,111,58,40,105,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,44,33,33,105,38,38,79,108,40,105,41,38,38,97,115,40,97,44,105,41,38,38,40,99,108,40,116,41,124,124,115,108,40,116,41,41,41,125,102,117,110,99,116,105,111,110,32,101,115,40,116,41,123,118,97,114,32,101,61,116,46,108,101,110,103,116,104,44,110,61,110,101,119,32,116,46,99,111,110,115,116,114,117,99,116,111,114,40,101,41,59,114,101,116,117,114,110,32,101,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,91,48,93,38,38,102,101,46,99,97,108,108,40,116,44,34,105,110,100,101,120,34,41,38,38,40,110,46,105,110,100,101,120,61,116,46,105,110,100,101,120,44,110,46,105,110,112,117,116,61,116,46,105,110,112,117,116,41,44,110,125,102,117,110,99,116,105,111,110,32,110,115,40,116,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,46,99,111,110,115,116,114,117,99,116,111,114,124,124,100,115,40,116,41,63,123,125,58,83,114,40,120,101,40,116,41,41,125,102,117,110,99,116,105,111,110,32,114,115,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,99,111,110,115,116,114,117,99,116,111,114,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,32,102,116,58,114,101,116,117,114,110,32,75,111,40,116,41,59,99,97,115,101,32,71,58,99,97,115,101,32,113,58,114,101,116,117,114,110,32,110,101,119,32,114,40,43,116,41,59,99,97,115,101,32,104,116,58,114,101,116,117,114,110,32,88,111,40,116,44,110,41,59,99,97,115,101,32,100,116,58,99,97,115,101,32,112,116,58,99,97,115,101,32,118,116,58,99,97,115,101,32,103,116,58,99,97,115,101,32,109,116,58,99,97,115,101,32,98,116,58,99,97,115,101,32,121,116,58,99,97,115,101,32,119,116,58,99,97,115,101,32,95,116,58,114,101,116,117,114,110,32,81,111,40,116,44,110,41,59,99,97,115,101,32,74,58,114,101,116,117,114,110,32,110,101,119,32,114,59,99,97,115,101,32,81,58,99,97,115,101,32,97,116,58,114,101,116,117,114,110,32,110,101,119,32,114,40,116,41,59,99,97,115,101,32,105,116,58,114,101,116,117,114,110,32,90,111,40,116,41,59,99,97,115,101,32,111,116,58,114,101,116,117,114,110,32,110,101,119,32,114,59,99,97,115,101,32,115,116,58,114,101,116,117,114,110,32,74,111,40,116,41,125,125,102,117,110,99,116,105,111,110,32,105,115,40,116,44,101,41,123,118,97,114,32,110,61,101,46,108,101,110,103,116,104,59,105,102,40,33,110,41,114,101,116,117,114,110,32,116,59,118,97,114,32,114,61,110,45,49,59,114,101,116,117,114,110,32,101,91,114,93,61,40,110,62,49,63,34,38,32,34,58,34,34,41,43,101,91,114,93,44,101,61,101,46,106,111,105,110,40,110,62,50,63,34,44,32,34,58,34,32,34,41,44,116,46,114,101,112,108,97,99,101,40,78,116,44,34,123,92,110,47,42,32,91,119,114,97,112,112,101,100,32,119,105,116,104,32,34,43,101,43,34,93,32,42,47,92,110,34,41,125,102,117,110,99,116,105,111,110,32,111,115,40,116,41,123,114,101,116,117,114,110,32,99,108,40,116,41,124,124,115,108,40,116,41,124,124,33,33,40,67,101,38,38,116,38,38,116,91,67,101,93,41,125,102,117,110,99,116,105,111,110,32,97,115,40,116,44,101,41,123,118,97,114,32,110,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,32,101,61,110,117,108,108,61,61,101,63,36,58,101,44,33,33,101,38,38,40,34,110,117,109,98,101,114,34,61,61,110,124,124,34,115,121,109,98,111,108,34,33,61,110,38,38,90,116,46,116,101,115,116,40,116,41,41,38,38,116,62,45,49,38,38,116,37,49,61,61,48,38,38,116,60,101,125,102,117,110,99,116,105,111,110,32,115,115,40,116,44,101,44,110,41,123,105,102,40,33,83,108,40,110,41,41,114,101,116,117,114,110,33,49,59,118,97,114,32,114,61,116,121,112,101,111,102,32,101,59,114,101,116,117,114,110,33,33,40,34,110,117,109,98,101,114,34,61,61,114,63,108,108,40,110,41,38,38,97,115,40,101,44,110,46,108,101,110,103,116,104,41,58,34,115,116,114,105,110,103,34,61,61,114,38,38,101,32,105,110,32,110,41,38,38,105,108,40,110,91,101,93,44,116,41,125,102,117,110,99,116,105,111,110,32,99,115,40,116,44,101,41,123,105,102,40,99,108,40,116,41,41,114,101,116,117,114,110,33,49,59,118,97,114,32,110,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,33,40,34,110,117,109,98,101,114,34,33,61,110,38,38,34,115,121,109,98,111,108,34,33,61,110,38,38,34,98,111,111,108,101,97,110,34,33,61,110,38,38,110,117,108,108,33,61,116,38,38,33,78,108,40,116,41,41,124,124,40,76,116,46,116,101,115,116,40,116,41,124,124,33,65,116,46,116,101,115,116,40,116,41,124,124,110,117,108,108,33,61,101,38,38,116,32,105,110,32,110,101,40,101,41,41,125,102,117,110,99,116,105,111,110,32,117,115,40,116,41,123,118,97,114,32,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,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,125,102,117,110,99,116,105,111,110,32,108,115,40,116,41,123,118,97,114,32,101,61,86,97,40,116,41,44,110,61,120,114,91,101,93,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,124,124,33,40,101,32,105,110,32,80,114,46,112,114,111,116,111,116,121,112,101,41,41,114,101,116,117,114,110,33,49,59,105,102,40,116,61,61,61,110,41,114,101,116,117,114,110,33,48,59,118,97,114,32,114,61,122,97,40,110,41,59,114,101,116,117,114,110,33,33,114,38,38,116,61,61,61,114,91,48,93,125,102,117,110,99,116,105,111,110,32,102,115,40,116,41,123,114,101,116,117,114,110,33,33,100,101,38,38,100,101,32,105,110,32,116,125,40,74,101,38,38,90,97,40,110,101,119,32,74,101,40,110,101,119,32,65,114,114,97,121,66,117,102,102,101,114,40,49,41,41,41,33,61,104,116,124,124,81,101,38,38,90,97,40,110,101,119,32,81,101,41,33,61,74,124,124,116,110,38,38,90,97,40,116,110,46,114,101,115,111,108,118,101,40,41,41,33,61,110,116,124,124,101,110,38,38,90,97,40,110,101,119,32,101,110,41,33,61,111,116,124,124,111,110,38,38,90,97,40,110,101,119,32,111,110,41,33,61,117,116,41,38,38,40,90,97,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,36,105,40,116,41,44,110,61,101,61,61,101,116,63,116,46,99,111,110,115,116,114,117,99,116,111,114,58,105,44,114,61,110,63,65,115,40,110,41,58,34,34,59,105,102,40,114,41,115,119,105,116,99,104,40,114,41,123,99,97,115,101,32,102,110,58,114,101,116,117,114,110,32,104,116,59,99,97,115,101,32,104,110,58,114,101,116,117,114,110,32,74,59,99,97,115,101,32,65,110,58,114,101,116,117,114,110,32,110,116,59,99,97,115,101,32,76,110,58,114,101,116,117,114,110,32,111,116,59,99,97,115,101,32,86,110,58,114,101,116,117,114,110,32,117,116,125,114,101,116,117,114,110,32,101,125,41,59,118,97,114,32,104,115,61,117,101,63,95,108,58,75,104,59,102,117,110,99,116,105,111,110,32,100,115,40,116,41,123,118,97,114,32,101,61,116,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,44,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,112,114,111,116,111,116,121,112,101,124,124,99,101,59,114,101,116,117,114,110,32,116,61,61,61,110,125,102,117,110,99,116,105,111,110,32,112,115,40,116,41,123,114,101,116,117,114,110,32,116,61,61,61,116,38,38,33,83,108,40,116,41,125,102,117,110,99,116,105,111,110,32,118,115,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,40,110,91,116,93,61,61,61,101,38,38,40,101,33,61,61,105,124,124,116,32,105,110,32,110,101,40,110,41,41,41,125,125,102,117,110,99,116,105,111,110,32,103,115,40,116,41,123,118,97,114,32,101,61,66,117,40,116,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,115,105,122,101,61,61,61,102,38,38,110,46,99,108,101,97,114,40,41,44,116,125,41,41,44,110,61,101,46,99,97,99,104,101,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,109,115,40,116,44,101,41,123,118,97,114,32,110,61,116,91,49,93,44,114,61,101,91,49,93,44,105,61,110,124,114,44,111,61,105,60,40,98,124,121,124,107,41,44,97,61,114,61,61,107,38,38,110,61,61,95,124,124,114,61,61,107,38,38,110,61,61,67,38,38,116,91,55,93,46,108,101,110,103,116,104,60,61,101,91,56,93,124,124,114,61,61,40,107,124,67,41,38,38,101,91,55,93,46,108,101,110,103,116,104,60,61,101,91,56,93,38,38,110,61,61,95,59,105,102,40,33,111,38,38,33,97,41,114,101,116,117,114,110,32,116,59,114,38,98,38,38,40,116,91,50,93,61,101,91,50,93,44,105,124,61,110,38,98,63,48,58,119,41,59,118,97,114,32,115,61,101,91,51,93,59,105,102,40,115,41,123,118,97,114,32,99,61,116,91,51,93,59,116,91,51,93,61,99,63,110,97,40,99,44,115,44,101,91,52,93,41,58,115,44,116,91,52,93,61,99,63,108,114,40,116,91,51,93,44,104,41,58,101,91,52,93,125,114,101,116,117,114,110,32,115,61,101,91,53,93,44,115,38,38,40,99,61,116,91,53,93,44,116,91,53,93,61,99,63,114,97,40,99,44,115,44,101,91,54,93,41,58,115,44,116,91,54,93,61,99,63,108,114,40,116,91,53,93,44,104,41,58,101,91,54,93,41,44,115,61,101,91,55,93,44,115,38,38,40,116,91,55,93,61,115,41,44,114,38,107,38,38,40,116,91,56,93,61,110,117,108,108,61,61,116,91,56,93,63,101,91,56,93,58,122,101,40,116,91,56,93,44,101,91,56,93,41,41,44,110,117,108,108,61,61,116,91,57,93,38,38,40,116,91,57,93,61,101,91,57,93,41,44,116,91,48,93,61,101,91,48,93,44,116,91,49,93,61,105,44,116,125,102,117,110,99,116,105,111,110,32,98,115,40,116,41,123,118,97,114,32,101,61,91,93,59,105,102,40,110,117,108,108,33,61,116,41,102,111,114,40,118,97,114,32,110,32,105,110,32,110,101,40,116,41,41,101,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,121,115,40,116,41,123,114,101,116,117,114,110,32,112,101,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,119,115,40,116,44,101,44,114,41,123,114,101,116,117,114,110,32,101,61,66,101,40,101,61,61,61,105,63,116,46,108,101,110,103,116,104,45,49,58,101,44,48,41,44,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,44,111,61,45,49,44,97,61,66,101,40,105,46,108,101,110,103,116,104,45,101,44,48,41,44,115,61,110,40,97,41,59,119,104,105,108,101,40,43,43,111,60,97,41,115,91,111,93,61,105,91,101,43,111,93,59,111,61,45,49,59,118,97,114,32,99,61,110,40,101,43,49,41,59,119,104,105,108,101,40,43,43,111,60,101,41,99,91,111,93,61,105,91,111,93,59,114,101,116,117,114,110,32,99,91,101,93,61,114,40,115,41,44,121,110,40,116,44,116,104,105,115,44,99,41,125,125,102,117,110,99,116,105,111,110,32,95,115,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,60,50,63,116,58,73,105,40,116,44,84,111,40,101,44,48,44,45,49,41,41,125,102,117,110,99,116,105,111,110,32,120,115,40,116,44,101,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,114,61,122,101,40,101,46,108,101,110,103,116,104,44,110,41,44,111,61,105,97,40,116,41,59,119,104,105,108,101,40,114,45,45,41,123,118,97,114,32,97,61,101,91,114,93,59,116,91,114,93,61,97,115,40,97,44,110,41,63,111,91,97,93,58,105,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,79,115,40,116,44,101,41,123,105,102,40,40,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,61,101,124,124,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,116,91,101,93,41,38,38,34,95,95,112,114,111,116,111,95,95,34,33,61,101,41,114,101,116,117,114,110,32,116,91,101,93,125,118,97,114,32,83,115,61,84,115,40,107,111,41,44,107,115,61,65,101,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,115,110,46,115,101,116,84,105,109,101,111,117,116,40,116,44,101,41,125,44,67,115,61,84,115,40,67,111,41,59,102,117,110,99,116,105,111,110,32,80,115,40,116,44,101,44,110,41,123,118,97,114,32,114,61,101,43,34,34,59,114,101,116,117,114,110,32,67,115,40,116,44,105,115,40,114,44,76,115,40,81,97,40,114,41,44,110,41,41,41,125,102,117,110,99,116,105,111,110,32,84,115,40,116,41,123,118,97,114,32,101,61,48,44,110,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,114,61,85,101,40,41,44,111,61,68,45,40,114,45,110,41,59,105,102,40,110,61,114,44,111,62,48,41,123,105,102,40,43,43,101,62,61,69,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,101,61,48,59,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,105,44,97,114,103,117,109,101,110,116,115,41,125,125,102,117,110,99,116,105,111,110,32,106,115,40,116,44,101,41,123,118,97,114,32,110,61,45,49,44,114,61,116,46,108,101,110,103,116,104,44,111,61,114,45,49,59,101,61,101,61,61,61,105,63,114,58,101,59,119,104,105,108,101,40,43,43,110,60,101,41,123,118,97,114,32,97,61,98,111,40,110,44,111,41,44,115,61,116,91,97,93,59,116,91,97,93,61,116,91,110,93,44,116,91,110,93,61,115,125,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,61,101,44,116,125,118,97,114,32,69,115,61,103,115,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,91,93,59,114,101,116,117,114,110,32,52,54,61,61,61,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,38,38,101,46,112,117,115,104,40,34,34,41,44,116,46,114,101,112,108,97,99,101,40,73,116,44,40,102,117,110,99,116,105,111,110,40,116,44,110,44,114,44,105,41,123,101,46,112,117,115,104,40,114,63,105,46,114,101,112,108,97,99,101,40,85,116,44,34,36,49,34,41,58,110,124,124,116,41,125,41,41,44,101,125,41,41,59,102,117,110,99,116,105,111,110,32,68,115,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,124,124,78,108,40,116,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,101,61,116,43,34,34,59,114,101,116,117,114,110,34,48,34,61,61,101,38,38,49,47,116,61,61,45,77,63,34,45,48,34,58,101,125,102,117,110,99,116,105,111,110,32,65,115,40,116,41,123,105,102,40,110,117,108,108,33,61,116,41,123,116,114,121,123,114,101,116,117,114,110,32,108,101,46,99,97,108,108,40,116,41,125,99,97,116,99,104,40,101,41,123,125,116,114,121,123,114,101,116,117,114,110,32,116,43,34,34,125,99,97,116,99,104,40,101,41,123,125,125,114,101,116,117,114,110,34,34,125,102,117,110,99,116,105,111,110,32,76,115,40,116,44,101,41,123,114,101,116,117,114,110,32,95,110,40,86,44,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,34,95,46,34,43,110,91,48,93,59,101,38,110,91,49,93,38,38,33,107,110,40,116,44,114,41,38,38,116,46,112,117,115,104,40,114,41,125,41,41,44,116,46,115,111,114,116,40,41,125,102,117,110,99,116,105,111,110,32,73,115,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,80,114,41,114,101,116,117,114,110,32,116,46,99,108,111,110,101,40,41,59,118,97,114,32,101,61,110,101,119,32,67,114,40,116,46,95,95,119,114,97,112,112,101,100,95,95,44,116,46,95,95,99,104,97,105,110,95,95,41,59,114,101,116,117,114,110,32,101,46,95,95,97,99,116,105,111,110,115,95,95,61,105,97,40,116,46,95,95,97,99,116,105,111,110,115,95,95,41,44,101,46,95,95,105,110,100,101,120,95,95,61,116,46,95,95,105,110,100,101,120,95,95,44,101,46,95,95,118,97,108,117,101,115,95,95,61,116,46,95,95,118,97,108,117,101,115,95,95,44,101,125,102,117,110,99,116,105,111,110,32,77,115,40,116,44,101,44,114,41,123,101,61,40,114,63,115,115,40,116,44,101,44,114,41,58,101,61,61,61,105,41,63,49,58,66,101,40,89,108,40,101,41,44,48,41,59,118,97,114,32,111,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,105,102,40,33,111,124,124,101,60,49,41,114,101,116,117,114,110,91,93,59,118,97,114,32,97,61,48,44,115,61,48,44,99,61,110,40,76,101,40,111,47,101,41,41,59,119,104,105,108,101,40,97,60,111,41,99,91,115,43,43,93,61,84,111,40,116,44,97,44,97,43,61,101,41,59,114,101,116,117,114,110,32,99,125,102,117,110,99,116,105,111,110,32,36,115,40,116,41,123,118,97,114,32,101,61,45,49,44,110,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,44,114,61,48,44,105,61,91,93,59,119,104,105,108,101,40,43,43,101,60,110,41,123,118,97,114,32,111,61,116,91,101,93,59,111,38,38,40,105,91,114,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,70,115,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,33,116,41,114,101,116,117,114,110,91,93,59,118,97,114,32,101,61,110,40,116,45,49,41,44,114,61,97,114,103,117,109,101,110,116,115,91,48,93,44,105,61,116,59,119,104,105,108,101,40,105,45,45,41,101,91,105,45,49,93,61,97,114,103,117,109,101,110,116,115,91,105,93,59,114,101,116,117,114,110,32,84,110,40,99,108,40,114,41,63,105,97,40,114,41,58,91,114,93,44,84,105,40,101,44,49,41,41,125,118,97,114,32,82,115,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,102,108,40,116,41,63,95,105,40,116,44,84,105,40,101,44,49,44,102,108,44,33,48,41,41,58,91,93,125,41,41,44,78,115,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,111,99,40,101,41,59,114,101,116,117,114,110,32,102,108,40,110,41,38,38,40,110,61,105,41,44,102,108,40,116,41,63,95,105,40,116,44,84,105,40,101,44,49,44,102,108,44,33,48,41,44,85,97,40,110,44,50,41,41,58,91,93,125,41,41,44,66,115,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,111,99,40,101,41,59,114,101,116,117,114,110,32,102,108,40,110,41,38,38,40,110,61,105,41,44,102,108,40,116,41,63,95,105,40,116,44,84,105,40,101,44,49,44,102,108,44,33,48,41,44,105,44,110,41,58,91,93,125,41,41,59,102,117,110,99,116,105,111,110,32,122,115,40,116,44,101,44,110,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,59,114,101,116,117,114,110,32,114,63,40,101,61,110,124,124,101,61,61,61,105,63,49,58,89,108,40,101,41,44,84,111,40,116,44,101,60,48,63,48,58,101,44,114,41,41,58,91,93,125,102,117,110,99,116,105,111,110,32,86,115,40,116,44,101,44,110,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,59,114,101,116,117,114,110,32,114,63,40,101,61,110,124,124,101,61,61,61,105,63,49,58,89,108,40,101,41,44,101,61,114,45,101,44,84,111,40,116,44,48,44,101,60,48,63,48,58,101,41,41,58,91,93,125,102,117,110,99,116,105,111,110,32,72,115,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,82,111,40,116,44,85,97,40,101,44,51,41,44,33,48,44,33,48,41,58,91,93,125,102,117,110,99,116,105,111,110,32,85,115,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,82,111,40,116,44,85,97,40,101,44,51,41,44,33,48,41,58,91,93,125,102,117,110,99,116,105,111,110,32,87,115,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,105,63,40,110,38,38,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,110,38,38,115,115,40,116,44,101,44,110,41,38,38,40,110,61,48,44,114,61,105,41,44,67,105,40,116,44,101,44,110,44,114,41,41,58,91,93,125,102,117,110,99,116,105,111,110,32,71,115,40,116,44,101,44,110,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,59,105,102,40,33,114,41,114,101,116,117,114,110,45,49,59,118,97,114,32,105,61,110,117,108,108,61,61,110,63,48,58,89,108,40,110,41,59,114,101,116,117,114,110,32,105,60,48,38,38,40,105,61,66,101,40,114,43,105,44,48,41,41,44,36,110,40,116,44,85,97,40,101,44,51,41,44,105,41,125,102,117,110,99,116,105,111,110,32,113,115,40,116,44,101,44,110,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,59,105,102,40,33,114,41,114,101,116,117,114,110,45,49,59,118,97,114,32,111,61,114,45,49,59,114,101,116,117,114,110,32,110,33,61,61,105,38,38,40,111,61,89,108,40,110,41,44,111,61,110,60,48,63,66,101,40,114,43,111,44,48,41,58,122,101,40,111,44,114,45,49,41,41,44,36,110,40,116,44,85,97,40,101,44,51,41,44,111,44,33,48,41,125,102,117,110,99,116,105,111,110,32,89,115,40,116,41,123,118,97,114,32,101,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,84,105,40,116,44,49,41,58,91,93,125,102,117,110,99,116,105,111,110,32,75,115,40,116,41,123,118,97,114,32,101,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,84,105,40,116,44,77,41,58,91,93,125,102,117,110,99,116,105,111,110,32,88,115,40,116,44,101,41,123,118,97,114,32,110,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,110,63,40,101,61,101,61,61,61,105,63,49,58,89,108,40,101,41,44,84,105,40,116,44,101,41,41,58,91,93,125,102,117,110,99,116,105,111,110,32,90,115,40,116,41,123,118,97,114,32,101,61,45,49,44,110,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,44,114,61,123,125,59,119,104,105,108,101,40,43,43,101,60,110,41,123,118,97,114,32,105,61,116,91,101,93,59,114,91,105,91,48,93,93,61,105,91,49,93,125,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,74,115,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,116,91,48,93,58,105,125,102,117,110,99,116,105,111,110,32,81,115,40,116,44,101,44,110,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,59,105,102,40,33,114,41,114,101,116,117,114,110,45,49,59,118,97,114,32,105,61,110,117,108,108,61,61,110,63,48,58,89,108,40,110,41,59,114,101,116,117,114,110,32,105,60,48,38,38,40,105,61,66,101,40,114,43,105,44,48,41,41,44,70,110,40,116,44,101,44,105,41,125,102,117,110,99,116,105,111,110,32,116,99,40,116,41,123,118,97,114,32,101,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,84,111,40,116,44,48,44,45,49,41,58,91,93,125,118,97,114,32,101,99,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,80,110,40,116,44,86,111,41,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,38,38,101,91,48,93,61,61,61,116,91,48,93,63,122,105,40,101,41,58,91,93,125,41,41,44,110,99,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,111,99,40,116,41,44,110,61,80,110,40,116,44,86,111,41,59,114,101,116,117,114,110,32,101,61,61,61,111,99,40,110,41,63,101,61,105,58,110,46,112,111,112,40,41,44,110,46,108,101,110,103,116,104,38,38,110,91,48,93,61,61,61,116,91,48,93,63,122,105,40,110,44,85,97,40,101,44,50,41,41,58,91,93,125,41,41,44,114,99,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,111,99,40,116,41,44,110,61,80,110,40,116,44,86,111,41,59,114,101,116,117,114,110,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,58,105,44,101,38,38,110,46,112,111,112,40,41,44,110,46,108,101,110,103,116,104,38,38,110,91,48,93,61,61,61,116,91,48,93,63,122,105,40,110,44,105,44,101,41,58,91,93,125,41,41,59,102,117,110,99,116,105,111,110,32,105,99,40,116,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,34,34,58,82,101,46,99,97,108,108,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,111,99,40,116,41,123,118,97,114,32,101,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,116,91,101,45,49,93,58,105,125,102,117,110,99,116,105,111,110,32,97,99,40,116,44,101,44,110,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,59,105,102,40,33,114,41,114,101,116,117,114,110,45,49,59,118,97,114,32,111,61,114,59,114,101,116,117,114,110,32,110,33,61,61,105,38,38,40,111,61,89,108,40,110,41,44,111,61,111,60,48,63,66,101,40,114,43,111,44,48,41,58,122,101,40,111,44,114,45,49,41,41,44,101,61,61,61,101,63,112,114,40,116,44,101,44,111,41,58,36,110,40,116,44,78,110,44,111,44,33,48,41,125,102,117,110,99,116,105,111,110,32,115,99,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,108,111,40,116,44,89,108,40,101,41,41,58,105,125,118,97,114,32,99,99,61,95,111,40,117,99,41,59,102,117,110,99,116,105,111,110,32,117,99,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,38,38,101,38,38,101,46,108,101,110,103,116,104,63,103,111,40,116,44,101,41,58,116,125,102,117,110,99,116,105,111,110,32,108,99,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,38,38,101,38,38,101,46,108,101,110,103,116,104,63,103,111,40,116,44,101,44,85,97,40,110,44,50,41,41,58,116,125,102,117,110,99,116,105,111,110,32,102,99,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,38,38,101,38,38,101,46,108,101,110,103,116,104,63,103,111,40,116,44,101,44,105,44,110,41,58,116,125,118,97,114,32,104,99,61,82,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,44,114,61,118,105,40,116,44,101,41,59,114,101,116,117,114,110,32,109,111,40,116,44,80,110,40,101,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,115,40,116,44,110,41,63,43,116,58,116,125,41,41,46,115,111,114,116,40,116,97,41,41,44,114,125,41,41,59,102,117,110,99,116,105,111,110,32,100,99,40,116,44,101,41,123,118,97,114,32,110,61,91,93,59,105,102,40,33,116,124,124,33,116,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,59,118,97,114,32,114,61,45,49,44,105,61,91,93,44,111,61,116,46,108,101,110,103,116,104,59,101,61,85,97,40,101,44,51,41,59,119,104,105,108,101,40,43,43,114,60,111,41,123,118,97,114,32,97,61,116,91,114,93,59,101,40,97,44,114,44,116,41,38,38,40,110,46,112,117,115,104,40,97,41,44,105,46,112,117,115,104,40,114,41,41,125,114,101,116,117,114,110,32,109,111,40,116,44,105,41,44,110,125,102,117,110,99,116,105,111,110,32,112,99,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,116,58,113,101,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,118,99,40,116,44,101,44,110,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,59,114,101,116,117,114,110,32,114,63,40,110,38,38,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,110,38,38,115,115,40,116,44,101,44,110,41,63,40,101,61,48,44,110,61,114,41,58,40,101,61,110,117,108,108,61,61,101,63,48,58,89,108,40,101,41,44,110,61,110,61,61,61,105,63,114,58,89,108,40,110,41,41,44,84,111,40,116,44,101,44,110,41,41,58,91,93,125,102,117,110,99,116,105,111,110,32,103,99,40,116,44,101,41,123,114,101,116,117,114,110,32,69,111,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,109,99,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,68,111,40,116,44,101,44,85,97,40,110,44,50,41,41,125,102,117,110,99,116,105,111,110,32,98,99,40,116,44,101,41,123,118,97,114,32,110,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,105,102,40,110,41,123,118,97,114,32,114,61,69,111,40,116,44,101,41,59,105,102,40,114,60,110,38,38,105,108,40,116,91,114,93,44,101,41,41,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,121,99,40,116,44,101,41,123,114,101,116,117,114,110,32,69,111,40,116,44,101,44,33,48,41,125,102,117,110,99,116,105,111,110,32,119,99,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,68,111,40,116,44,101,44,85,97,40,110,44,50,41,44,33,48,41,125,102,117,110,99,116,105,111,110,32,95,99,40,116,44,101,41,123,118,97,114,32,110,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,105,102,40,110,41,123,118,97,114,32,114,61,69,111,40,116,44,101,44,33,48,41,45,49,59,105,102,40,105,108,40,116,91,114,93,44,101,41,41,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,120,99,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,65,111,40,116,41,58,91,93,125,102,117,110,99,116,105,111,110,32,79,99,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,65,111,40,116,44,85,97,40,101,44,50,41,41,58,91,93,125,102,117,110,99,116,105,111,110,32,83,99,40,116,41,123,118,97,114,32,101,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,84,111,40,116,44,49,44,101,41,58,91,93,125,102,117,110,99,116,105,111,110,32,107,99,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,40,101,61,110,124,124,101,61,61,61,105,63,49,58,89,108,40,101,41,44,84,111,40,116,44,48,44,101,60,48,63,48,58,101,41,41,58,91,93,125,102,117,110,99,116,105,111,110,32,67,99,40,116,44,101,44,110,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,59,114,101,116,117,114,110,32,114,63,40,101,61,110,124,124,101,61,61,61,105,63,49,58,89,108,40,101,41,44,101,61,114,45,101,44,84,111,40,116,44,101,60,48,63,48,58,101,44,114,41,41,58,91,93,125,102,117,110,99,116,105,111,110,32,80,99,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,82,111,40,116,44,85,97,40,101,44,51,41,44,33,49,44,33,48,41,58,91,93,125,102,117,110,99,116,105,111,110,32,84,99,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,82,111,40,116,44,85,97,40,101,44,51,41,41,58,91,93,125,118,97,114,32,106,99,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,111,40,84,105,40,116,44,49,44,102,108,44,33,48,41,41,125,41,41,44,69,99,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,111,99,40,116,41,59,114,101,116,117,114,110,32,102,108,40,101,41,38,38,40,101,61,105,41,44,77,111,40,84,105,40,116,44,49,44,102,108,44,33,48,41,44,85,97,40,101,44,50,41,41,125,41,41,44,68,99,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,111,99,40,116,41,59,114,101,116,117,114,110,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,58,105,44,77,111,40,84,105,40,116,44,49,44,102,108,44,33,48,41,44,105,44,101,41,125,41,41,59,102,117,110,99,116,105,111,110,32,65,99,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,77,111,40,116,41,58,91,93,125,102,117,110,99,116,105,111,110,32,76,99,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,77,111,40,116,44,85,97,40,101,44,50,41,41,58,91,93,125,102,117,110,99,116,105,111,110,32,73,99,40,116,44,101,41,123,114,101,116,117,114,110,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,58,105,44,116,38,38,116,46,108,101,110,103,116,104,63,77,111,40,116,44,105,44,101,41,58,91,93,125,102,117,110,99,116,105,111,110,32,77,99,40,116,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,48,59,114,101,116,117,114,110,32,116,61,83,110,40,116,44,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,102,108,40,116,41,41,114,101,116,117,114,110,32,101,61,66,101,40,116,46,108,101,110,103,116,104,44,101,41,44,33,48,125,41,41,44,71,110,40,101,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,110,40,116,44,122,110,40,101,41,41,125,41,41,125,102,117,110,99,116,105,111,110,32,36,99,40,116,44,101,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,110,61,77,99,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,110,58,80,110,40,110,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,121,110,40,101,44,105,44,116,41,125,41,41,125,118,97,114,32,70,99,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,102,108,40,116,41,63,95,105,40,116,44,101,41,58,91,93,125,41,41,44,82,99,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,66,111,40,83,110,40,116,44,102,108,41,41,125,41,41,44,78,99,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,111,99,40,116,41,59,114,101,116,117,114,110,32,102,108,40,101,41,38,38,40,101,61,105,41,44,66,111,40,83,110,40,116,44,102,108,41,44,85,97,40,101,44,50,41,41,125,41,41,44,66,99,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,111,99,40,116,41,59,114,101,116,117,114,110,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,58,105,44,66,111,40,83,110,40,116,44,102,108,41,44,105,44,101,41,125,41,41,44,122,99,61,95,111,40,77,99,41,59,102,117,110,99,116,105,111,110,32,86,99,40,116,44,101,41,123,114,101,116,117,114,110,32,122,111,40,116,124,124,91,93,44,101,124,124,91,93,44,117,105,41,125,102,117,110,99,116,105,111,110,32,72,99,40,116,44,101,41,123,114,101,116,117,114,110,32,122,111,40,116,124,124,91,93,44,101,124,124,91,93,44,83,111,41,125,118,97,114,32,85,99,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,108,101,110,103,116,104,44,110,61,101,62,49,63,116,91,101,45,49,93,58,105,59,114,101,116,117,114,110,32,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,40,116,46,112,111,112,40,41,44,110,41,58,105,44,36,99,40,116,44,110,41,125,41,41,59,102,117,110,99,116,105,111,110,32,87,99,40,116,41,123,118,97,114,32,101,61,120,114,40,116,41,59,114,101,116,117,114,110,32,101,46,95,95,99,104,97,105,110,95,95,61,33,48,44,101,125,102,117,110,99,116,105,111,110,32,71,99,40,116,44,101,41,123,114,101,116,117,114,110,32,101,40,116,41,44,116,125,102,117,110,99,116,105,111,110,32,113,99,40,116,44,101,41,123,114,101,116,117,114,110,32,101,40,116,41,125,118,97,114,32,89,99,61,82,97,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,108,101,110,103,116,104,44,110,61,101,63,116,91,48,93,58,48,44,114,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,44,111,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,118,105,40,101,44,116,41,125,59,114,101,116,117,114,110,33,40,101,62,49,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,114,32,105,110,115,116,97,110,99,101,111,102,32,80,114,38,38,97,115,40,110,41,63,40,114,61,114,46,115,108,105,99,101,40,110,44,43,110,43,40,101,63,49,58,48,41,41,44,114,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,113,99,44,97,114,103,115,58,91,111,93,44,116,104,105,115,65,114,103,58,105,125,41,44,110,101,119,32,67,114,40,114,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,46,116,104,114,117,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,38,38,33,116,46,108,101,110,103,116,104,38,38,116,46,112,117,115,104,40,105,41,44,116,125,41,41,41,58,116,104,105,115,46,116,104,114,117,40,111,41,125,41,41,59,102,117,110,99,116,105,111,110,32,75,99,40,41,123,114,101,116,117,114,110,32,87,99,40,116,104,105,115,41,125,102,117,110,99,116,105,111,110,32,88,99,40,41,123,114,101,116,117,114,110,32,110,101,119,32,67,114,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,102,117,110,99,116,105,111,110,32,90,99,40,41,123,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,61,61,105,38,38,40,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,71,108,40,116,104,105,115,46,118,97,108,117,101,40,41,41,41,59,118,97,114,32,116,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,44,101,61,116,63,105,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,59,114,101,116,117,114,110,123,100,111,110,101,58,116,44,118,97,108,117,101,58,101,125,125,102,117,110,99,116,105,111,110,32,74,99,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,81,99,40,116,41,123,118,97,114,32,101,44,110,61,116,104,105,115,59,119,104,105,108,101,40,110,32,105,110,115,116,97,110,99,101,111,102,32,107,114,41,123,118,97,114,32,114,61,73,115,40,110,41,59,114,46,95,95,105,110,100,101,120,95,95,61,48,44,114,46,95,95,118,97,108,117,101,115,95,95,61,105,44,101,63,111,46,95,95,119,114,97,112,112,101,100,95,95,61,114,58,101,61,114,59,118,97,114,32,111,61,114,59,110,61,110,46,95,95,119,114,97,112,112,101,100,95,95,125,114,101,116,117,114,110,32,111,46,95,95,119,114,97,112,112,101,100,95,95,61,116,44,101,125,102,117,110,99,116,105,111,110,32,116,117,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,80,114,41,123,118,97,114,32,101,61,116,59,114,101,116,117,114,110,32,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,101,61,110,101,119,32,80,114,40,116,104,105,115,41,41,44,101,61,101,46,114,101,118,101,114,115,101,40,41,44,101,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,113,99,44,97,114,103,115,58,91,112,99,93,44,116,104,105,115,65,114,103,58,105,125,41,44,110,101,119,32,67,114,40,101,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,125,114,101,116,117,114,110,32,116,104,105,115,46,116,104,114,117,40,112,99,41,125,102,117,110,99,116,105,111,110,32,101,117,40,41,123,114,101,116,117,114,110,32,78,111,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,118,97,114,32,110,117,61,99,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,102,101,46,99,97,108,108,40,116,44,110,41,63,43,43,116,91,110,93,58,112,105,40,116,44,110,44,49,41,125,41,41,59,102,117,110,99,116,105,111,110,32,114,117,40,116,44,101,44,110,41,123,118,97,114,32,114,61,99,108,40,116,41,63,79,110,58,83,105,59,114,101,116,117,114,110,32,110,38,38,115,115,40,116,44,101,44,110,41,38,38,40,101,61,105,41,44,114,40,116,44,85,97,40,101,44,51,41,41,125,102,117,110,99,116,105,111,110,32,105,117,40,116,44,101,41,123,118,97,114,32,110,61,99,108,40,116,41,63,83,110,58,80,105,59,114,101,116,117,114,110,32,110,40,116,44,85,97,40,101,44,51,41,41,125,118,97,114,32,111,117,61,109,97,40,71,115,41,44,97,117,61,109,97,40,113,115,41,59,102,117,110,99,116,105,111,110,32,115,117,40,116,44,101,41,123,114,101,116,117,114,110,32,84,105,40,103,117,40,116,44,101,41,44,49,41,125,102,117,110,99,116,105,111,110,32,99,117,40,116,44,101,41,123,114,101,116,117,114,110,32,84,105,40,103,117,40,116,44,101,41,44,77,41,125,102,117,110,99,116,105,111,110,32,117,117,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,110,61,110,61,61,61,105,63,49,58,89,108,40,110,41,44,84,105,40,103,117,40,116,44,101,41,44,110,41,125,102,117,110,99,116,105,111,110,32,108,117,40,116,44,101,41,123,118,97,114,32,110,61,99,108,40,116,41,63,95,110,58,120,105,59,114,101,116,117,114,110,32,110,40,116,44,85,97,40,101,44,51,41,41,125,102,117,110,99,116,105,111,110,32,102,117,40,116,44,101,41,123,118,97,114,32,110,61,99,108,40,116,41,63,120,110,58,79,105,59,114,101,116,117,114,110,32,110,40,116,44,85,97,40,101,44,51,41,41,125,118,97,114,32,104,117,61,99,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,102,101,46,99,97,108,108,40,116,44,110,41,63,116,91,110,93,46,112,117,115,104,40,101,41,58,112,105,40,116,44,110,44,91,101,93,41,125,41,41,59,102,117,110,99,116,105,111,110,32,100,117,40,116,44,101,44,110,44,114,41,123,116,61,108,108,40,116,41,63,116,58,86,102,40,116,41,44,110,61,110,38,38,33,114,63,89,108,40,110,41,58,48,59,118,97,114,32,105,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,110,60,48,38,38,40,110,61,66,101,40,105,43,110,44,48,41,41,44,82,108,40,116,41,63,110,60,61,105,38,38,116,46,105,110,100,101,120,79,102,40,101,44,110,41,62,45,49,58,33,33,105,38,38,70,110,40,116,44,101,44,110,41,62,45,49,125,118,97,114,32,112,117,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,114,41,123,118,97,114,32,105,61,45,49,44,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,44,97,61,108,108,40,116,41,63,110,40,116,46,108,101,110,103,116,104,41,58,91,93,59,114,101,116,117,114,110,32,120,105,40,116,44,40,102,117,110,99,116,105,111,110,40,116,41,123,97,91,43,43,105,93,61,111,63,121,110,40,101,44,116,44,114,41,58,72,105,40,116,44,101,44,114,41,125,41,41,44,97,125,41,41,44,118,117,61,99,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,112,105,40,116,44,110,44,101,41,125,41,41,59,102,117,110,99,116,105,111,110,32,103,117,40,116,44,101,41,123,118,97,114,32,110,61,99,108,40,116,41,63,80,110,58,111,111,59,114,101,116,117,114,110,32,110,40,116,44,85,97,40,101,44,51,41,41,125,102,117,110,99,116,105,111,110,32,109,117,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,91,93,58,40,99,108,40,101,41,124,124,40,101,61,110,117,108,108,61,61,101,63,91,93,58,91,101,93,41,44,110,61,114,63,105,58,110,44,99,108,40,110,41,124,124,40,110,61,110,117,108,108,61,61,110,63,91,93,58,91,110,93,41,44,102,111,40,116,44,101,44,110,41,41,125,118,97,114,32,98,117,61,99,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,91,110,63,48,58,49,93,46,112,117,115,104,40,101,41,125,41,44,40,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,41,59,102,117,110,99,116,105,111,110,32,121,117,40,116,44,101,44,110,41,123,118,97,114,32,114,61,99,108,40,116,41,63,106,110,58,72,110,44,105,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,51,59,114,101,116,117,114,110,32,114,40,116,44,85,97,40,101,44,52,41,44,110,44,105,44,120,105,41,125,102,117,110,99,116,105,111,110,32,119,117,40,116,44,101,44,110,41,123,118,97,114,32,114,61,99,108,40,116,41,63,69,110,58,72,110,44,105,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,51,59,114,101,116,117,114,110,32,114,40,116,44,85,97,40,101,44,52,41,44,110,44,105,44,79,105,41,125,102,117,110,99,116,105,111,110,32,95,117,40,116,44,101,41,123,118,97,114,32,110,61,99,108,40,116,41,63,83,110,58,80,105,59,114,101,116,117,114,110,32,110,40,116,44,122,117,40,85,97,40,101,44,51,41,41,41,125,102,117,110,99,116,105,111,110,32,120,117,40,116,41,123,118,97,114,32,101,61,99,108,40,116,41,63,111,105,58,120,111,59,114,101,116,117,114,110,32,101,40,116,41,125,102,117,110,99,116,105,111,110,32,79,117,40,116,44,101,44,110,41,123,101,61,40,110,63,115,115,40,116,44,101,44,110,41,58,101,61,61,61,105,41,63,49,58,89,108,40,101,41,59,118,97,114,32,114,61,99,108,40,116,41,63,97,105,58,79,111,59,114,101,116,117,114,110,32,114,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,83,117,40,116,41,123,118,97,114,32,101,61,99,108,40,116,41,63,115,105,58,80,111,59,114,101,116,117,114,110,32,101,40,116,41,125,102,117,110,99,116,105,111,110,32,107,117,40,116,41,123,105,102,40,110,117,108,108,61,61,116,41,114,101,116,117,114,110,32,48,59,105,102,40,108,108,40,116,41,41,114,101,116,117,114,110,32,82,108,40,116,41,63,118,114,40,116,41,58,116,46,108,101,110,103,116,104,59,118,97,114,32,101,61,90,97,40,116,41,59,114,101,116,117,114,110,32,101,61,61,74,124,124,101,61,61,111,116,63,116,46,115,105,122,101,58,110,111,40,116,41,46,108,101,110,103,116,104,125,102,117,110,99,116,105,111,110,32,67,117,40,116,44,101,44,110,41,123,118,97,114,32,114,61,99,108,40,116,41,63,68,110,58,106,111,59,114,101,116,117,114,110,32,110,38,38,115,115,40,116,44,101,44,110,41,38,38,40,101,61,105,41,44,114,40,116,44,85,97,40,101,44,51,41,41,125,118,97,114,32,80,117,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,110,117,108,108,61,61,116,41,114,101,116,117,114,110,91,93,59,118,97,114,32,110,61,101,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,110,62,49,38,38,115,115,40,116,44,101,91,48,93,44,101,91,49,93,41,63,101,61,91,93,58,110,62,50,38,38,115,115,40,101,91,48,93,44,101,91,49,93,44,101,91,50,93,41,38,38,40,101,61,91,101,91,48,93,93,41,44,102,111,40,116,44,84,105,40,101,44,49,41,44,91,93,41,125,41,41,44,84,117,61,68,101,124,124,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,110,46,68,97,116,101,46,110,111,119,40,41,125,59,102,117,110,99,116,105,111,110,32,106,117,40,116,44,101,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,111,101,40,99,41,59,114,101,116,117,114,110,32,116,61,89,108,40,116,41,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,45,45,116,60,49,41,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,102,117,110,99,116,105,111,110,32,69,117,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,61,110,63,105,58,101,44,101,61,116,38,38,110,117,108,108,61,61,101,63,116,46,108,101,110,103,116,104,58,101,44,68,97,40,116,44,107,44,105,44,105,44,105,44,105,44,101,41,125,102,117,110,99,116,105,111,110,32,68,117,40,116,44,101,41,123,118,97,114,32,110,59,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,111,101,40,99,41,59,114,101,116,117,114,110,32,116,61,89,108,40,116,41,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,45,45,116,62,48,38,38,40,110,61,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,116,60,61,49,38,38,40,101,61,105,41,44,110,125,125,118,97,114,32,65,117,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,98,59,105,102,40,110,46,108,101,110,103,116,104,41,123,118,97,114,32,105,61,108,114,40,110,44,72,97,40,65,117,41,41,59,114,124,61,79,125,114,101,116,117,114,110,32,68,97,40,116,44,114,44,101,44,110,44,105,41,125,41,41,44,76,117,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,98,124,121,59,105,102,40,110,46,108,101,110,103,116,104,41,123,118,97,114,32,105,61,108,114,40,110,44,72,97,40,76,117,41,41,59,114,124,61,79,125,114,101,116,117,114,110,32,68,97,40,101,44,114,44,116,44,110,44,105,41,125,41,41,59,102,117,110,99,116,105,111,110,32,73,117,40,116,44,101,44,110,41,123,101,61,110,63,105,58,101,59,118,97,114,32,114,61,68,97,40,116,44,95,44,105,44,105,44,105,44,105,44,105,44,101,41,59,114,101,116,117,114,110,32,114,46,112,108,97,99,101,104,111,108,100,101,114,61,73,117,46,112,108,97,99,101,104,111,108,100,101,114,44,114,125,102,117,110,99,116,105,111,110,32,77,117,40,116,44,101,44,110,41,123,101,61,110,63,105,58,101,59,118,97,114,32,114,61,68,97,40,116,44,120,44,105,44,105,44,105,44,105,44,105,44,101,41,59,114,101,116,117,114,110,32,114,46,112,108,97,99,101,104,111,108,100,101,114,61,77,117,46,112,108,97,99,101,104,111,108,100,101,114,44,114,125,102,117,110,99,116,105,111,110,32,36,117,40,116,44,101,44,110,41,123,118,97,114,32,114,44,111,44,97,44,115,44,117,44,108,44,102,61,48,44,104,61,33,49,44,100,61,33,49,44,112,61,33,48,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,111,101,40,99,41,59,102,117,110,99,116,105,111,110,32,118,40,101,41,123,118,97,114,32,110,61,114,44,97,61,111,59,114,101,116,117,114,110,32,114,61,111,61,105,44,102,61,101,44,115,61,116,46,97,112,112,108,121,40,97,44,110,41,44,115,125,102,117,110,99,116,105,111,110,32,103,40,116,41,123,114,101,116,117,114,110,32,102,61,116,44,117,61,107,115,40,121,44,101,41,44,104,63,118,40,116,41,58,115,125,102,117,110,99,116,105,111,110,32,109,40,116,41,123,118,97,114,32,110,61,116,45,108,44,114,61,116,45,102,44,105,61,101,45,110,59,114,101,116,117,114,110,32,100,63,122,101,40,105,44,97,45,114,41,58,105,125,102,117,110,99,116,105,111,110,32,98,40,116,41,123,118,97,114,32,110,61,116,45,108,44,114,61,116,45,102,59,114,101,116,117,114,110,32,108,61,61,61,105,124,124,110,62,61,101,124,124,110,60,48,124,124,100,38,38,114,62,61,97,125,102,117,110,99,116,105,111,110,32,121,40,41,123,118,97,114,32,116,61,84,117,40,41,59,105,102,40,98,40,116,41,41,114,101,116,117,114,110,32,119,40,116,41,59,117,61,107,115,40,121,44,109,40,116,41,41,125,102,117,110,99,116,105,111,110,32,119,40,116,41,123,114,101,116,117,114,110,32,117,61,105,44,112,38,38,114,63,118,40,116,41,58,40,114,61,111,61,105,44,115,41,125,102,117,110,99,116,105,111,110,32,95,40,41,123,117,33,61,61,105,38,38,113,111,40,117,41,44,102,61,48,44,114,61,108,61,111,61,117,61,105,125,102,117,110,99,116,105,111,110,32,120,40,41,123,114,101,116,117,114,110,32,117,61,61,61,105,63,115,58,119,40,84,117,40,41,41,125,102,117,110,99,116,105,111,110,32,79,40,41,123,118,97,114,32,116,61,84,117,40,41,44,110,61,98,40,116,41,59,105,102,40,114,61,97,114,103,117,109,101,110,116,115,44,111,61,116,104,105,115,44,108,61,116,44,110,41,123,105,102,40,117,61,61,61,105,41,114,101,116,117,114,110,32,103,40,108,41,59,105,102,40,100,41,114,101,116,117,114,110,32,113,111,40,117,41,44,117,61,107,115,40,121,44,101,41,44,118,40,108,41,125,114,101,116,117,114,110,32,117,61,61,61,105,38,38,40,117,61,107,115,40,121,44,101,41,41,44,115,125,114,101,116,117,114,110,32,101,61,88,108,40,101,41,124,124,48,44,83,108,40,110,41,38,38,40,104,61,33,33,110,46,108,101,97,100,105,110,103,44,100,61,34,109,97,120,87,97,105,116,34,105,110,32,110,44,97,61,100,63,66,101,40,88,108,40,110,46,109,97,120,87,97,105,116,41,124,124,48,44,101,41,58,97,44,112,61,34,116,114,97,105,108,105,110,103,34,105,110,32,110,63,33,33,110,46,116,114,97,105,108,105,110,103,58,112,41,44,79,46,99,97,110,99,101,108,61,95,44,79,46,102,108,117,115,104,61,120,44,79,125,118,97,114,32,70,117,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,119,105,40,116,44,49,44,101,41,125,41,41,44,82,117,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,119,105,40,116,44,88,108,40,101,41,124,124,48,44,110,41,125,41,41,59,102,117,110,99,116,105,111,110,32,78,117,40,116,41,123,114,101,116,117,114,110,32,68,97,40,116,44,80,41,125,102,117,110,99,116,105,111,110,32,66,117,40,116,44,101,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,124,124,110,117,108,108,33,61,101,38,38,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,111,101,40,99,41,59,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,114,61,97,114,103,117,109,101,110,116,115,44,105,61,101,63,101,46,97,112,112,108,121,40,116,104,105,115,44,114,41,58,114,91,48,93,44,111,61,110,46,99,97,99,104,101,59,105,102,40,111,46,104,97,115,40,105,41,41,114,101,116,117,114,110,32,111,46,103,101,116,40,105,41,59,118,97,114,32,97,61,116,46,97,112,112,108,121,40,116,104,105,115,44,114,41,59,114,101,116,117,114,110,32,110,46,99,97,99,104,101,61,111,46,115,101,116,40,105,44,97,41,124,124,111,44,97,125,59,114,101,116,117,114,110,32,110,46,99,97,99,104,101,61,110,101,119,40,66,117,46,67,97,99,104,101,124,124,72,114,41,44,110,125,102,117,110,99,116,105,111,110,32,122,117,40,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,41,116,104,114,111,119,32,110,101,119,32,111,101,40,99,41,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,97,114,103,117,109,101,110,116,115,59,115,119,105,116,99,104,40,101,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,33,116,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,116,46,99,97,108,108,40,116,104,105,115,44,101,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,33,116,46,99,97,108,108,40,116,104,105,115,44,101,91,48,93,44,101,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,33,116,46,99,97,108,108,40,116,104,105,115,44,101,91,48,93,44,101,91,49,93,44,101,91,50,93,41,125,114,101,116,117,114,110,33,116,46,97,112,112,108,121,40,116,104,105,115,44,101,41,125,125,102,117,110,99,116,105,111,110,32,86,117,40,116,41,123,114,101,116,117,114,110,32,68,117,40,50,44,116,41,125,66,117,46,67,97,99,104,101,61,72,114,59,118,97,114,32,72,117,61,87,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,61,49,61,61,101,46,108,101,110,103,116,104,38,38,99,108,40,101,91,48,93,41,63,80,110,40,101,91,48,93,44,75,110,40,85,97,40,41,41,41,58,80,110,40,84,105,40,101,44,49,41,44,75,110,40,85,97,40,41,41,41,59,118,97,114,32,110,61,101,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,95,111,40,40,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,105,61,45,49,44,111,61,122,101,40,114,46,108,101,110,103,116,104,44,110,41,59,119,104,105,108,101,40,43,43,105,60,111,41,114,91,105,93,61,101,91,105,93,46,99,97,108,108,40,116,104,105,115,44,114,91,105,93,41,59,114,101,116,117,114,110,32,121,110,40,116,44,116,104,105,115,44,114,41,125,41,41,125,41,41,44,85,117,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,108,114,40,101,44,72,97,40,85,117,41,41,59,114,101,116,117,114,110,32,68,97,40,116,44,79,44,105,44,101,44,110,41,125,41,41,44,87,117,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,108,114,40,101,44,72,97,40,87,117,41,41,59,114,101,116,117,114,110,32,68,97,40,116,44,83,44,105,44,101,44,110,41,125,41,41,44,71,117,61,82,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,68,97,40,116,44,67,44,105,44,105,44,105,44,101,41,125,41,41,59,102,117,110,99,116,105,111,110,32,113,117,40,116,44,101,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,41,116,104,114,111,119,32,110,101,119,32,111,101,40,99,41,59,114,101,116,117,114,110,32,101,61,101,61,61,61,105,63,101,58,89,108,40,101,41,44,95,111,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,89,117,40,116,44,101,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,41,116,104,114,111,119,32,110,101,119,32,111,101,40,99,41,59,114,101,116,117,114,110,32,101,61,110,117,108,108,61,61,101,63,48,58,66,101,40,89,108,40,101,41,44,48,41,44,95,111,40,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,110,91,101,93,44,105,61,71,111,40,110,44,48,44,101,41,59,114,101,116,117,114,110,32,114,38,38,84,110,40,105,44,114,41,44,121,110,40,116,44,116,104,105,115,44,105,41,125,41,41,125,102,117,110,99,116,105,111,110,32,75,117,40,116,44,101,44,110,41,123,118,97,114,32,114,61,33,48,44,105,61,33,48,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,111,101,40,99,41,59,114,101,116,117,114,110,32,83,108,40,110,41,38,38,40,114,61,34,108,101,97,100,105,110,103,34,105,110,32,110,63,33,33,110,46,108,101,97,100,105,110,103,58,114,44,105,61,34,116,114,97,105,108,105,110,103,34,105,110,32,110,63,33,33,110,46,116,114,97,105,108,105,110,103,58,105,41,44,36,117,40,116,44,101,44,123,108,101,97,100,105,110,103,58,114,44,109,97,120,87,97,105,116,58,101,44,116,114,97,105,108,105,110,103,58,105,125,41,125,102,117,110,99,116,105,111,110,32,88,117,40,116,41,123,114,101,116,117,114,110,32,69,117,40,116,44,49,41,125,102,117,110,99,116,105,111,110,32,90,117,40,116,44,101,41,123,114,101,116,117,114,110,32,85,117,40,72,111,40,101,41,44,116,41,125,102,117,110,99,116,105,111,110,32,74,117,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,116,61,97,114,103,117,109,101,110,116,115,91,48,93,59,114,101,116,117,114,110,32,99,108,40,116,41,63,116,58,91,116,93,125,102,117,110,99,116,105,111,110,32,81,117,40,116,41,123,114,101,116,117,114,110,32,109,105,40,116,44,118,41,125,102,117,110,99,116,105,111,110,32,116,108,40,116,44,101,41,123,114,101,116,117,114,110,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,58,105,44,109,105,40,116,44,118,44,101,41,125,102,117,110,99,116,105,111,110,32,101,108,40,116,41,123,114,101,116,117,114,110,32,109,105,40,116,44,100,124,118,41,125,102,117,110,99,116,105,111,110,32,110,108,40,116,44,101,41,123,114,101,116,117,114,110,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,58,105,44,109,105,40,116,44,100,124,118,44,101,41,125,102,117,110,99,116,105,111,110,32,114,108,40,116,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,124,124,121,105,40,116,44,101,44,79,102,40,101,41,41,125,102,117,110,99,116,105,111,110,32,105,108,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,61,61,101,124,124,116,33,61,61,116,38,38,101,33,61,61,101,125,118,97,114,32,111,108,61,67,97,40,70,105,41,44,97,108,61,67,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,62,61,101,125,41,41,44,115,108,61,85,105,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,105,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,107,108,40,116,41,38,38,102,101,46,99,97,108,108,40,116,44,34,99,97,108,108,101,101,34,41,38,38,33,83,101,46,99,97,108,108,40,116,44,34,99,97,108,108,101,101,34,41,125,44,99,108,61,110,46,105,115,65,114,114,97,121,44,117,108,61,100,110,63,75,110,40,100,110,41,58,87,105,59,102,117,110,99,116,105,111,110,32,108,108,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,116,38,38,79,108,40,116,46,108,101,110,103,116,104,41,38,38,33,95,108,40,116,41,125,102,117,110,99,116,105,111,110,32,102,108,40,116,41,123,114,101,116,117,114,110,32,107,108,40,116,41,38,38,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,104,108,40,116,41,123,114,101,116,117,114,110,33,48,61,61,61,116,124,124,33,49,61,61,61,116,124,124,107,108,40,116,41,38,38,36,105,40,116,41,61,61,71,125,118,97,114,32,100,108,61,36,101,124,124,75,104,44,112,108,61,112,110,63,75,110,40,112,110,41,58,71,105,59,102,117,110,99,116,105,111,110,32,118,108,40,116,41,123,114,101,116,117,114,110,32,107,108,40,116,41,38,38,49,61,61,61,116,46,110,111,100,101,84,121,112,101,38,38,33,73,108,40,116,41,125,102,117,110,99,116,105,111,110,32,103,108,40,116,41,123,105,102,40,110,117,108,108,61,61,116,41,114,101,116,117,114,110,33,48,59,105,102,40,108,108,40,116,41,38,38,40,99,108,40,116,41,124,124,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,46,115,112,108,105,99,101,124,124,100,108,40,116,41,124,124,66,108,40,116,41,124,124,115,108,40,116,41,41,41,114,101,116,117,114,110,33,116,46,108,101,110,103,116,104,59,118,97,114,32,101,61,90,97,40,116,41,59,105,102,40,101,61,61,74,124,124,101,61,61,111,116,41,114,101,116,117,114,110,33,116,46,115,105,122,101,59,105,102,40,100,115,40,116,41,41,114,101,116,117,114,110,33,110,111,40,116,41,46,108,101,110,103,116,104,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,41,105,102,40,102,101,46,99,97,108,108,40,116,44,110,41,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,109,108,40,116,44,101,41,123,114,101,116,117,114,110,32,113,105,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,98,108,40,116,44,101,44,110,41,123,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,105,59,118,97,114,32,114,61,110,63,110,40,116,44,101,41,58,105,59,114,101,116,117,114,110,32,114,61,61,61,105,63,113,105,40,116,44,101,44,105,44,110,41,58,33,33,114,125,102,117,110,99,116,105,111,110,32,121,108,40,116,41,123,105,102,40,33,107,108,40,116,41,41,114,101,116,117,114,110,33,49,59,118,97,114,32,101,61,36,105,40,116,41,59,114,101,116,117,114,110,32,101,61,61,75,124,124,101,61,61,89,124,124,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,46,109,101,115,115,97,103,101,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,46,110,97,109,101,38,38,33,73,108,40,116,41,125,102,117,110,99,116,105,111,110,32,119,108,40,116,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,116,38,38,70,101,40,116,41,125,102,117,110,99,116,105,111,110,32,95,108,40,116,41,123,105,102,40,33,83,108,40,116,41,41,114,101,116,117,114,110,33,49,59,118,97,114,32,101,61,36,105,40,116,41,59,114,101,116,117,114,110,32,101,61,61,88,124,124,101,61,61,90,124,124,101,61,61,87,124,124,101,61,61,114,116,125,102,117,110,99,116,105,111,110,32,120,108,40,116,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,116,38,38,116,61,61,89,108,40,116,41,125,102,117,110,99,116,105,111,110,32,79,108,40,116,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,116,38,38,116,62,45,49,38,38,116,37,49,61,61,48,38,38,116,60,61,36,125,102,117,110,99,116,105,111,110,32,83,108,40,116,41,123,118,97,114,32,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,32,110,117,108,108,33,61,116,38,38,40,34,111,98,106,101,99,116,34,61,61,101,124,124,34,102,117,110,99,116,105,111,110,34,61,61,101,41,125,102,117,110,99,116,105,111,110,32,107,108,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,116,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,125,118,97,114,32,67,108,61,118,110,63,75,110,40,118,110,41,58,75,105,59,102,117,110,99,116,105,111,110,32,80,108,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,61,61,101,124,124,88,105,40,116,44,101,44,71,97,40,101,41,41,125,102,117,110,99,116,105,111,110,32,84,108,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,105,44,88,105,40,116,44,101,44,71,97,40,101,41,44,110,41,125,102,117,110,99,116,105,111,110,32,106,108,40,116,41,123,114,101,116,117,114,110,32,76,108,40,116,41,38,38,116,33,61,43,116,125,102,117,110,99,116,105,111,110,32,69,108,40,116,41,123,105,102,40,104,115,40,116,41,41,116,104,114,111,119,32,110,101,119,32,82,116,40,115,41,59,114,101,116,117,114,110,32,90,105,40,116,41,125,102,117,110,99,116,105,111,110,32,68,108,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,116,125,102,117,110,99,116,105,111,110,32,65,108,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,125,102,117,110,99,116,105,111,110,32,76,108,40,116,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,116,124,124,107,108,40,116,41,38,38,36,105,40,116,41,61,61,81,125,102,117,110,99,116,105,111,110,32,73,108,40,116,41,123,105,102,40,33,107,108,40,116,41,124,124,36,105,40,116,41,33,61,101,116,41,114,101,116,117,114,110,33,49,59,118,97,114,32,101,61,120,101,40,116,41,59,105,102,40,110,117,108,108,61,61,61,101,41,114,101,116,117,114,110,33,48,59,118,97,114,32,110,61,102,101,46,99,97,108,108,40,101,44,34,99,111,110,115,116,114,117,99,116,111,114,34,41,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,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,110,38,38,110,32,105,110,115,116,97,110,99,101,111,102,32,110,38,38,108,101,46,99,97,108,108,40,110,41,61,61,118,101,125,118,97,114,32,77,108,61,103,110,63,75,110,40,103,110,41,58,74,105,59,102,117,110,99,116,105,111,110,32,36,108,40,116,41,123,114,101,116,117,114,110,32,120,108,40,116,41,38,38,116,62,61,45,36,38,38,116,60,61,36,125,118,97,114,32,70,108,61,109,110,63,75,110,40,109,110,41,58,81,105,59,102,117,110,99,116,105,111,110,32,82,108,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,116,124,124,33,99,108,40,116,41,38,38,107,108,40,116,41,38,38,36,105,40,116,41,61,61,97,116,125,102,117,110,99,116,105,111,110,32,78,108,40,116,41,123,114,101,116,117,114,110,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,116,124,124,107,108,40,116,41,38,38,36,105,40,116,41,61,61,115,116,125,118,97,114,32,66,108,61,98,110,63,75,110,40,98,110,41,58,116,111,59,102,117,110,99,116,105,111,110,32,122,108,40,116,41,123,114,101,116,117,114,110,32,116,61,61,61,105,125,102,117,110,99,116,105,111,110,32,86,108,40,116,41,123,114,101,116,117,114,110,32,107,108,40,116,41,38,38,90,97,40,116,41,61,61,117,116,125,102,117,110,99,116,105,111,110,32,72,108,40,116,41,123,114,101,116,117,114,110,32,107,108,40,116,41,38,38,36,105,40,116,41,61,61,108,116,125,118,97,114,32,85,108,61,67,97,40,105,111,41,44,87,108,61,67,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,60,61,101,125,41,41,59,102,117,110,99,116,105,111,110,32,71,108,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,91,93,59,105,102,40,108,108,40,116,41,41,114,101,116,117,114,110,32,82,108,40,116,41,63,103,114,40,116,41,58,105,97,40,116,41,59,105,102,40,80,101,38,38,116,91,80,101,93,41,114,101,116,117,114,110,32,115,114,40,116,91,80,101,93,40,41,41,59,118,97,114,32,101,61,90,97,40,116,41,44,110,61,101,61,61,74,63,99,114,58,101,61,61,111,116,63,102,114,58,86,102,59,114,101,116,117,114,110,32,110,40,116,41,125,102,117,110,99,116,105,111,110,32,113,108,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,48,61,61,61,116,63,116,58,48,59,105,102,40,116,61,88,108,40,116,41,44,116,61,61,61,77,124,124,116,61,61,61,45,77,41,123,118,97,114,32,101,61,116,60,48,63,45,49,58,49,59,114,101,116,117,114,110,32,101,42,70,125,114,101,116,117,114,110,32,116,61,61,61,116,63,116,58,48,125,102,117,110,99,116,105,111,110,32,89,108,40,116,41,123,118,97,114,32,101,61,113,108,40,116,41,44,110,61,101,37,49,59,114,101,116,117,114,110,32,101,61,61,61,101,63,110,63,101,45,110,58,101,58,48,125,102,117,110,99,116,105,111,110,32,75,108,40,116,41,123,114,101,116,117,114,110,32,116,63,103,105,40,89,108,40,116,41,44,48,44,78,41,58,48,125,102,117,110,99,116,105,111,110,32,88,108,40,116,41,123,105,102,40,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,116,59,105,102,40,78,108,40,116,41,41,114,101,116,117,114,110,32,82,59,105,102,40,83,108,40,116,41,41,123,118,97,114,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,46,118,97,108,117,101,79,102,63,116,46,118,97,108,117,101,79,102,40,41,58,116,59,116,61,83,108,40,101,41,63,101,43,34,34,58,101,125,105,102,40,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,48,61,61,61,116,63,116,58,43,116,59,116,61,89,110,40,116,41,59,118,97,114,32,110,61,89,116,46,116,101,115,116,40,116,41,59,114,101,116,117,114,110,32,110,124,124,88,116,46,116,101,115,116,40,116,41,63,114,110,40,116,46,115,108,105,99,101,40,50,41,44,110,63,50,58,56,41,58,113,116,46,116,101,115,116,40,116,41,63,82,58,43,116,125,102,117,110,99,116,105,111,110,32,90,108,40,116,41,123,114,101,116,117,114,110,32,111,97,40,116,44,83,102,40,116,41,41,125,102,117,110,99,116,105,111,110,32,74,108,40,116,41,123,114,101,116,117,114,110,32,116,63,103,105,40,89,108,40,116,41,44,45,36,44,36,41,58,48,61,61,61,116,63,116,58,48,125,102,117,110,99,116,105,111,110,32,81,108,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,34,34,58,73,111,40,116,41,125,118,97,114,32,116,102,61,117,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,100,115,40,101,41,124,124,108,108,40,101,41,41,111,97,40,101,44,79,102,40,101,41,44,116,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,102,101,46,99,97,108,108,40,101,44,110,41,38,38,117,105,40,116,44,110,44,101,91,110,93,41,125,41,41,44,101,102,61,117,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,111,97,40,101,44,83,102,40,101,41,44,116,41,125,41,41,44,110,102,61,117,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,111,97,40,101,44,83,102,40,101,41,44,116,44,114,41,125,41,41,44,114,102,61,117,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,111,97,40,101,44,79,102,40,101,41,44,116,44,114,41,125,41,41,44,111,102,61,82,97,40,118,105,41,59,102,117,110,99,116,105,111,110,32,97,102,40,116,44,101,41,123,118,97,114,32,110,61,83,114,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,110,58,104,105,40,110,44,101,41,125,118,97,114,32,115,102,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,61,110,101,40,116,41,59,118,97,114,32,110,61,45,49,44,114,61,101,46,108,101,110,103,116,104,44,111,61,114,62,50,63,101,91,50,93,58,105,59,111,38,38,115,115,40,101,91,48,93,44,101,91,49,93,44,111,41,38,38,40,114,61,49,41,59,119,104,105,108,101,40,43,43,110,60,114,41,123,118,97,114,32,97,61,101,91,110,93,44,115,61,83,102,40,97,41,44,99,61,45,49,44,117,61,115,46,108,101,110,103,116,104,59,119,104,105,108,101,40,43,43,99,60,117,41,123,118,97,114,32,108,61,115,91,99,93,44,102,61,116,91,108,93,59,40,102,61,61,61,105,124,124,105,108,40,102,44,99,101,91,108,93,41,38,38,33,102,101,46,99,97,108,108,40,116,44,108,41,41,38,38,40,116,91,108,93,61,97,91,108,93,41,125,125,114,101,116,117,114,110,32,116,125,41,41,44,99,102,61,95,111,40,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,105,44,76,97,41,44,121,110,40,84,102,44,105,44,116,41,125,41,41,59,102,117,110,99,116,105,111,110,32,117,102,40,116,44,101,41,123,114,101,116,117,114,110,32,77,110,40,116,44,85,97,40,101,44,51,41,44,68,105,41,125,102,117,110,99,116,105,111,110,32,108,102,40,116,44,101,41,123,114,101,116,117,114,110,32,77,110,40,116,44,85,97,40,101,44,51,41,44,65,105,41,125,102,117,110,99,116,105,111,110,32,102,102,40,116,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,116,58,106,105,40,116,44,85,97,40,101,44,51,41,44,83,102,41,125,102,117,110,99,116,105,111,110,32,104,102,40,116,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,116,58,69,105,40,116,44,85,97,40,101,44,51,41,44,83,102,41,125,102,117,110,99,116,105,111,110,32,100,102,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,68,105,40,116,44,85,97,40,101,44,51,41,41,125,102,117,110,99,116,105,111,110,32,112,102,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,65,105,40,116,44,85,97,40,101,44,51,41,41,125,102,117,110,99,116,105,111,110,32,118,102,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,91,93,58,76,105,40,116,44,79,102,40,116,41,41,125,102,117,110,99,116,105,111,110,32,103,102,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,91,93,58,76,105,40,116,44,83,102,40,116,41,41,125,102,117,110,99,116,105,111,110,32,109,102,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,117,108,108,61,61,116,63,105,58,73,105,40,116,44,101,41,59,114,101,116,117,114,110,32,114,61,61,61,105,63,110,58,114,125,102,117,110,99,116,105,111,110,32,98,102,40,116,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,116,38,38,116,115,40,116,44,101,44,82,105,41,125,102,117,110,99,116,105,111,110,32,121,102,40,116,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,116,38,38,116,115,40,116,44,101,44,78,105,41,125,118,97,114,32,119,102,61,119,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,117,108,108,33,61,101,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,101,46,116,111,83,116,114,105,110,103,38,38,40,101,61,112,101,46,99,97,108,108,40,101,41,41,44,116,91,101,93,61,110,125,41,44,80,104,40,68,104,41,41,44,95,102,61,119,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,117,108,108,33,61,101,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,101,46,116,111,83,116,114,105,110,103,38,38,40,101,61,112,101,46,99,97,108,108,40,101,41,41,44,102,101,46,99,97,108,108,40,116,44,101,41,63,116,91,101,93,46,112,117,115,104,40,110,41,58,116,91,101,93,61,91,110,93,125,41,44,85,97,41,44,120,102,61,95,111,40,72,105,41,59,102,117,110,99,116,105,111,110,32,79,102,40,116,41,123,114,101,116,117,114,110,32,108,108,40,116,41,63,105,105,40,116,41,58,110,111,40,116,41,125,102,117,110,99,116,105,111,110,32,83,102,40,116,41,123,114,101,116,117,114,110,32,108,108,40,116,41,63,105,105,40,116,44,33,48,41,58,114,111,40,116,41,125,102,117,110,99,116,105,111,110,32,107,102,40,116,44,101,41,123,118,97,114,32,110,61,123,125,59,114,101,116,117,114,110,32,101,61,85,97,40,101,44,51,41,44,68,105,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,114,44,105,41,123,112,105,40,110,44,101,40,116,44,114,44,105,41,44,116,41,125,41,41,44,110,125,102,117,110,99,116,105,111,110,32,67,102,40,116,44,101,41,123,118,97,114,32,110,61,123,125,59,114,101,116,117,114,110,32,101,61,85,97,40,101,44,51,41,44,68,105,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,114,44,105,41,123,112,105,40,110,44,114,44,101,40,116,44,114,44,105,41,41,125,41,41,44,110,125,118,97,114,32,80,102,61,117,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,99,111,40,116,44,101,44,110,41,125,41,41,44,84,102,61,117,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,99,111,40,116,44,101,44,110,44,114,41,125,41,41,44,106,102,61,82,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,123,125,59,105,102,40,110,117,108,108,61,61,116,41,114,101,116,117,114,110,32,110,59,118,97,114,32,114,61,33,49,59,101,61,80,110,40,101,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,85,111,40,101,44,116,41,44,114,124,124,40,114,61,101,46,108,101,110,103,116,104,62,49,41,44,101,125,41,41,44,111,97,40,116,44,66,97,40,116,41,44,110,41,44,114,38,38,40,110,61,109,105,40,110,44,100,124,112,124,118,44,73,97,41,41,59,118,97,114,32,105,61,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,36,111,40,110,44,101,91,105,93,41,59,114,101,116,117,114,110,32,110,125,41,41,59,102,117,110,99,116,105,111,110,32,69,102,40,116,44,101,41,123,114,101,116,117,114,110,32,65,102,40,116,44,122,117,40,85,97,40,101,41,41,41,125,118,97,114,32,68,102,61,82,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,123,125,58,104,111,40,116,44,101,41,125,41,41,59,102,117,110,99,116,105,111,110,32,65,102,40,116,44,101,41,123,105,102,40,110,117,108,108,61,61,116,41,114,101,116,117,114,110,123,125,59,118,97,114,32,110,61,80,110,40,66,97,40,116,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,116,93,125,41,41,59,114,101,116,117,114,110,32,101,61,85,97,40,101,41,44,112,111,40,116,44,110,44,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,101,40,116,44,110,91,48,93,41,125,41,41,125,102,117,110,99,116,105,111,110,32,76,102,40,116,44,101,44,110,41,123,101,61,85,111,40,101,44,116,41,59,118,97,114,32,114,61,45,49,44,111,61,101,46,108,101,110,103,116,104,59,111,124,124,40,111,61,49,44,116,61,105,41,59,119,104,105,108,101,40,43,43,114,60,111,41,123,118,97,114,32,97,61,110,117,108,108,61,61,116,63,105,58,116,91,68,115,40,101,91,114,93,41,93,59,97,61,61,61,105,38,38,40,114,61,111,44,97,61,110,41,44,116,61,95,108,40,97,41,63,97,46,99,97,108,108,40,116,41,58,97,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,73,102,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,116,58,83,111,40,116,44,101,44,110,41,125,102,117,110,99,116,105,111,110,32,77,102,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,63,114,58,105,44,110,117,108,108,61,61,116,63,116,58,83,111,40,116,44,101,44,110,44,114,41,125,118,97,114,32,36,102,61,69,97,40,79,102,41,44,70,102,61,69,97,40,83,102,41,59,102,117,110,99,116,105,111,110,32,82,102,40,116,44,101,44,110,41,123,118,97,114,32,114,61,99,108,40,116,41,44,105,61,114,124,124,100,108,40,116,41,124,124,66,108,40,116,41,59,105,102,40,101,61,85,97,40,101,44,52,41,44,110,117,108,108,61,61,110,41,123,118,97,114,32,111,61,116,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,59,110,61,105,63,114,63,110,101,119,32,111,58,91,93,58,83,108,40,116,41,38,38,95,108,40,111,41,63,83,114,40,120,101,40,116,41,41,58,123,125,125,114,101,116,117,114,110,40,105,63,95,110,58,68,105,41,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,114,44,105,41,123,114,101,116,117,114,110,32,101,40,110,44,116,44,114,44,105,41,125,41,41,44,110,125,102,117,110,99,116,105,111,110,32,78,102,40,116,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,124,124,36,111,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,66,102,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,116,58,70,111,40,116,44,101,44,72,111,40,110,41,41,125,102,117,110,99,116,105,111,110,32,122,102,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,63,114,58,105,44,110,117,108,108,61,61,116,63,116,58,70,111,40,116,44,101,44,72,111,40,110,41,44,114,41,125,102,117,110,99,116,105,111,110,32,86,102,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,91,93,58,88,110,40,116,44,79,102,40,116,41,41,125,102,117,110,99,116,105,111,110,32,72,102,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,91,93,58,88,110,40,116,44,83,102,40,116,41,41,125,102,117,110,99,116,105,111,110,32,85,102,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,110,61,61,61,105,38,38,40,110,61,101,44,101,61,105,41,44,110,33,61,61,105,38,38,40,110,61,88,108,40,110,41,44,110,61,110,61,61,61,110,63,110,58,48,41,44,101,33,61,61,105,38,38,40,101,61,88,108,40,101,41,44,101,61,101,61,61,61,101,63,101,58,48,41,44,103,105,40,88,108,40,116,41,44,101,44,110,41,125,102,117,110,99,116,105,111,110,32,87,102,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,61,113,108,40,101,41,44,110,61,61,61,105,63,40,110,61,101,44,101,61,48,41,58,110,61,113,108,40,110,41,44,116,61,88,108,40,116,41,44,66,105,40,116,44,101,44,110,41,125,102,117,110,99,116,105,111,110,32,71,102,40,116,44,101,44,110,41,123,105,102,40,110,38,38,34,98,111,111,108,101,97,110,34,33,61,116,121,112,101,111,102,32,110,38,38,115,115,40,116,44,101,44,110,41,38,38,40,101,61,110,61,105,41,44,110,61,61,61,105,38,38,40,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,40,110,61,101,44,101,61,105,41,58,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,105,41,41,44,116,61,61,61,105,38,38,101,61,61,61,105,63,40,116,61,48,44,101,61,49,41,58,40,116,61,113,108,40,116,41,44,101,61,61,61,105,63,40,101,61,116,44,116,61,48,41,58,101,61,113,108,40,101,41,41,44,116,62,101,41,123,118,97,114,32,114,61,116,59,116,61,101,44,101,61,114,125,105,102,40,110,124,124,116,37,49,124,124,101,37,49,41,123,118,97,114,32,111,61,71,101,40,41,59,114,101,116,117,114,110,32,122,101,40,116,43,111,42,40,101,45,116,43,110,110,40,34,49,101,45,34,43,40,40,111,43,34,34,41,46,108,101,110,103,116,104,45,49,41,41,41,44,101,41,125,114,101,116,117,114,110,32,98,111,40,116,44,101,41,125,118,97,114,32,113,102,61,112,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,116,43,40,110,63,89,102,40,101,41,58,101,41,125,41,41,59,102,117,110,99,116,105,111,110,32,89,102,40,116,41,123,114,101,116,117,114,110,32,95,104,40,81,108,40,116,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,75,102,40,116,41,123,114,101,116,117,114,110,32,116,61,81,108,40,116,41,44,116,38,38,116,46,114,101,112,108,97,99,101,40,74,116,44,101,114,41,46,114,101,112,108,97,99,101,40,72,101,44,34,34,41,125,102,117,110,99,116,105,111,110,32,88,102,40,116,44,101,44,110,41,123,116,61,81,108,40,116,41,44,101,61,73,111,40,101,41,59,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,110,61,110,61,61,61,105,63,114,58,103,105,40,89,108,40,110,41,44,48,44,114,41,59,118,97,114,32,111,61,110,59,114,101,116,117,114,110,32,110,45,61,101,46,108,101,110,103,116,104,44,110,62,61,48,38,38,116,46,115,108,105,99,101,40,110,44,111,41,61,61,101,125,102,117,110,99,116,105,111,110,32,90,102,40,116,41,123,114,101,116,117,114,110,32,116,61,81,108,40,116,41,44,116,38,38,84,116,46,116,101,115,116,40,116,41,63,116,46,114,101,112,108,97,99,101,40,67,116,44,110,114,41,58,116,125,102,117,110,99,116,105,111,110,32,74,102,40,116,41,123,114,101,116,117,114,110,32,116,61,81,108,40,116,41,44,116,38,38,36,116,46,116,101,115,116,40,116,41,63,116,46,114,101,112,108,97,99,101,40,77,116,44,34,92,92,36,38,34,41,58,116,125,118,97,114,32,81,102,61,112,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,43,40,110,63,34,45,34,58,34,34,41,43,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,41,44,116,104,61,112,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,43,40,110,63,34,32,34,58,34,34,41,43,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,41,44,101,104,61,100,97,40,34,116,111,76,111,119,101,114,67,97,115,101,34,41,59,102,117,110,99,116,105,111,110,32,110,104,40,116,44,101,44,110,41,123,116,61,81,108,40,116,41,44,101,61,89,108,40,101,41,59,118,97,114,32,114,61,101,63,118,114,40,116,41,58,48,59,105,102,40,33,101,124,124,114,62,61,101,41,114,101,116,117,114,110,32,116,59,118,97,114,32,105,61,40,101,45,114,41,47,50,59,114,101,116,117,114,110,32,79,97,40,73,101,40,105,41,44,110,41,43,116,43,79,97,40,76,101,40,105,41,44,110,41,125,102,117,110,99,116,105,111,110,32,114,104,40,116,44,101,44,110,41,123,116,61,81,108,40,116,41,44,101,61,89,108,40,101,41,59,118,97,114,32,114,61,101,63,118,114,40,116,41,58,48,59,114,101,116,117,114,110,32,101,38,38,114,60,101,63,116,43,79,97,40,101,45,114,44,110,41,58,116,125,102,117,110,99,116,105,111,110,32,105,104,40,116,44,101,44,110,41,123,116,61,81,108,40,116,41,44,101,61,89,108,40,101,41,59,118,97,114,32,114,61,101,63,118,114,40,116,41,58,48,59,114,101,116,117,114,110,32,101,38,38,114,60,101,63,79,97,40,101,45,114,44,110,41,43,116,58,116,125,102,117,110,99,116,105,111,110,32,111,104,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,110,124,124,110,117,108,108,61,61,101,63,101,61,48,58,101,38,38,40,101,61,43,101,41,44,87,101,40,81,108,40,116,41,46,114,101,112,108,97,99,101,40,70,116,44,34,34,41,44,101,124,124,48,41,125,102,117,110,99,116,105,111,110,32,97,104,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,61,40,110,63,115,115,40,116,44,101,44,110,41,58,101,61,61,61,105,41,63,49,58,89,108,40,101,41,44,119,111,40,81,108,40,116,41,44,101,41,125,102,117,110,99,116,105,111,110,32,115,104,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,44,101,61,81,108,40,116,91,48,93,41,59,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,60,51,63,101,58,101,46,114,101,112,108,97,99,101,40,116,91,49,93,44,116,91,50,93,41,125,118,97,114,32,99,104,61,112,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,43,40,110,63,34,95,34,58,34,34,41,43,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,41,59,102,117,110,99,116,105,111,110,32,117,104,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,110,38,38,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,110,38,38,115,115,40,116,44,101,44,110,41,38,38,40,101,61,110,61,105,41,44,110,61,110,61,61,61,105,63,78,58,110,62,62,62,48,44,110,63,40,116,61,81,108,40,116,41,44,116,38,38,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,124,124,110,117,108,108,33,61,101,38,38,33,77,108,40,101,41,41,38,38,40,101,61,73,111,40,101,41,44,33,101,38,38,111,114,40,116,41,41,63,71,111,40,103,114,40,116,41,44,48,44,110,41,58,116,46,115,112,108,105,116,40,101,44,110,41,41,58,91,93,125,118,97,114,32,108,104,61,112,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,43,40,110,63,34,32,34,58,34,34,41,43,95,104,40,101,41,125,41,41,59,102,117,110,99,116,105,111,110,32,102,104,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,61,81,108,40,116,41,44,110,61,110,117,108,108,61,61,110,63,48,58,103,105,40,89,108,40,110,41,44,48,44,116,46,108,101,110,103,116,104,41,44,101,61,73,111,40,101,41,44,116,46,115,108,105,99,101,40,110,44,110,43,101,46,108,101,110,103,116,104,41,61,61,101,125,102,117,110,99,116,105,111,110,32,104,104,40,116,44,101,44,110,41,123,118,97,114,32,114,61,120,114,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,59,110,38,38,115,115,40,116,44,101,44,110,41,38,38,40,101,61,105,41,44,116,61,81,108,40,116,41,44,101,61,110,102,40,123,125,44,101,44,114,44,65,97,41,59,118,97,114,32,111,44,97,44,115,61,110,102,40,123,125,44,101,46,105,109,112,111,114,116,115,44,114,46,105,109,112,111,114,116,115,44,65,97,41,44,99,61,79,102,40,115,41,44,108,61,88,110,40,115,44,99,41,44,102,61,48,44,104,61,101,46,105,110,116,101,114,112,111,108,97,116,101,124,124,81,116,44,100,61,34,95,95,112,32,43,61,32,39,34,44,112,61,114,101,40,40,101,46,101,115,99,97,112,101,124,124,81,116,41,46,115,111,117,114,99,101,43,34,124,34,43,104,46,115,111,117,114,99,101,43,34,124,34,43,40,104,61,61,61,68,116,63,87,116,58,81,116,41,46,115,111,117,114,99,101,43,34,124,34,43,40,101,46,101,118,97,108,117,97,116,101,124,124,81,116,41,46,115,111,117,114,99,101,43,34,124,36,34,44,34,103,34,41,44,118,61,34,47,47,35,32,115,111,117,114,99,101,85,82,76,61,34,43,40,102,101,46,99,97,108,108,40,101,44,34,115,111,117,114,99,101,85,82,76,34,41,63,40,101,46,115,111,117,114,99,101,85,82,76,43,34,34,41,46,114,101,112,108,97,99,101,40,47,92,115,47,103,44,34,32,34,41,58,34,108,111,100,97,115,104,46,116,101,109,112,108,97,116,101,83,111,117,114,99,101,115,91,34,43,32,43,43,75,101,43,34,93,34,41,43,34,92,110,34,59,116,46,114,101,112,108,97,99,101,40,112,44,40,102,117,110,99,116,105,111,110,40,101,44,110,44,114,44,105,44,115,44,99,41,123,114,101,116,117,114,110,32,114,124,124,40,114,61,105,41,44,100,43,61,116,46,115,108,105,99,101,40,102,44,99,41,46,114,101,112,108,97,99,101,40,116,101,44,114,114,41,44,110,38,38,40,111,61,33,48,44,100,43,61,34,39,32,43,92,110,95,95,101,40,34,43,110,43,34,41,32,43,92,110,39,34,41,44,115,38,38,40,97,61,33,48,44,100,43,61,34,39,59,92,110,34,43,115,43,34,59,92,110,95,95,112,32,43,61,32,39,34,41,44,114,38,38,40,100,43,61,34,39,32,43,92,110,40,40,95,95,116,32,61,32,40,34,43,114,43,34,41,41,32,61,61,32,110,117,108,108,32,63,32,39,39,32,58,32,95,95,116,41,32,43,92,110,39,34,41,44,102,61,99,43,101,46,108,101,110,103,116,104,44,101,125,41,41,44,100,43,61,34,39,59,92,110,34,59,118,97,114,32,103,61,102,101,46,99,97,108,108,40,101,44,34,118,97,114,105,97,98,108,101,34,41,38,38,101,46,118,97,114,105,97,98,108,101,59,105,102,40,103,41,123,105,102,40,72,116,46,116,101,115,116,40,103,41,41,116,104,114,111,119,32,110,101,119,32,82,116,40,117,41,125,101,108,115,101,32,100,61,34,119,105,116,104,32,40,111,98,106,41,32,123,92,110,34,43,100,43,34,92,110,125,92,110,34,59,100,61,40,97,63,100,46,114,101,112,108,97,99,101,40,120,116,44,34,34,41,58,100,41,46,114,101,112,108,97,99,101,40,79,116,44,34,36,49,34,41,46,114,101,112,108,97,99,101,40,83,116,44,34,36,49,59,34,41,44,100,61,34,102,117,110,99,116,105,111,110,40,34,43,40,103,124,124,34,111,98,106,34,41,43,34,41,32,123,92,110,34,43,40,103,63,34,34,58,34,111,98,106,32,124,124,32,40,111,98,106,32,61,32,123,125,41,59,92,110,34,41,43,34,118,97,114,32,95,95,116,44,32,95,95,112,32,61,32,39,39,34,43,40,111,63,34,44,32,95,95,101,32,61,32,95,46,101,115,99,97,112,101,34,58,34,34,41,43,40,97,63,34,44,32,95,95,106,32,61,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,106,111,105,110,59,92,110,102,117,110,99,116,105,111,110,32,112,114,105,110,116,40,41,32,123,32,95,95,112,32,43,61,32,95,95,106,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,32,39,39,41,32,125,92,110,34,58,34,59,92,110,34,41,43,100,43,34,114,101,116,117,114,110,32,95,95,112,92,110,125,34,59,118,97,114,32,109,61,79,104,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,116,40,99,44,118,43,34,114,101,116,117,114,110,32,34,43,100,41,46,97,112,112,108,121,40,105,44,108,41,125,41,41,59,105,102,40,109,46,115,111,117,114,99,101,61,100,44,121,108,40,109,41,41,116,104,114,111,119,32,109,59,114,101,116,117,114,110,32,109,125,102,117,110,99,116,105,111,110,32,100,104,40,116,41,123,114,101,116,117,114,110,32,81,108,40,116,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,112,104,40,116,41,123,114,101,116,117,114,110,32,81,108,40,116,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,102,117,110,99,116,105,111,110,32,118,104,40,116,44,101,44,110,41,123,105,102,40,116,61,81,108,40,116,41,44,116,38,38,40,110,124,124,101,61,61,61,105,41,41,114,101,116,117,114,110,32,89,110,40,116,41,59,105,102,40,33,116,124,124,33,40,101,61,73,111,40,101,41,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,114,61,103,114,40,116,41,44,111,61,103,114,40,101,41,44,97,61,74,110,40,114,44,111,41,44,115,61,81,110,40,114,44,111,41,43,49,59,114,101,116,117,114,110,32,71,111,40,114,44,97,44,115,41,46,106,111,105,110,40,34,34,41,125,102,117,110,99,116,105,111,110,32,103,104,40,116,44,101,44,110,41,123,105,102,40,116,61,81,108,40,116,41,44,116,38,38,40,110,124,124,101,61,61,61,105,41,41,114,101,116,117,114,110,32,116,46,115,108,105,99,101,40,48,44,109,114,40,116,41,43,49,41,59,105,102,40,33,116,124,124,33,40,101,61,73,111,40,101,41,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,114,61,103,114,40,116,41,44,111,61,81,110,40,114,44,103,114,40,101,41,41,43,49,59,114,101,116,117,114,110,32,71,111,40,114,44,48,44,111,41,46,106,111,105,110,40,34,34,41,125,102,117,110,99,116,105,111,110,32,109,104,40,116,44,101,44,110,41,123,105,102,40,116,61,81,108,40,116,41,44,116,38,38,40,110,124,124,101,61,61,61,105,41,41,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,70,116,44,34,34,41,59,105,102,40,33,116,124,124,33,40,101,61,73,111,40,101,41,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,114,61,103,114,40,116,41,44,111,61,74,110,40,114,44,103,114,40,101,41,41,59,114,101,116,117,114,110,32,71,111,40,114,44,111,41,46,106,111,105,110,40,34,34,41,125,102,117,110,99,116,105,111,110,32,98,104,40,116,44,101,41,123,118,97,114,32,110,61,84,44,114,61,106,59,105,102,40,83,108,40,101,41,41,123,118,97,114,32,111,61,34,115,101,112,97,114,97,116,111,114,34,105,110,32,101,63,101,46,115,101,112,97,114,97,116,111,114,58,111,59,110,61,34,108,101,110,103,116,104,34,105,110,32,101,63,89,108,40,101,46,108,101,110,103,116,104,41,58,110,44,114,61,34,111,109,105,115,115,105,111,110,34,105,110,32,101,63,73,111,40,101,46,111,109,105,115,115,105,111,110,41,58,114,125,116,61,81,108,40,116,41,59,118,97,114,32,97,61,116,46,108,101,110,103,116,104,59,105,102,40,111,114,40,116,41,41,123,118,97,114,32,115,61,103,114,40,116,41,59,97,61,115,46,108,101,110,103,116,104,125,105,102,40,110,62,61,97,41,114,101,116,117,114,110,32,116,59,118,97,114,32,99,61,110,45,118,114,40,114,41,59,105,102,40,99,60,49,41,114,101,116,117,114,110,32,114,59,118,97,114,32,117,61,115,63,71,111,40,115,44,48,44,99,41,46,106,111,105,110,40,34,34,41,58,116,46,115,108,105,99,101,40,48,44,99,41,59,105,102,40,111,61,61,61,105,41,114,101,116,117,114,110,32,117,43,114,59,105,102,40,115,38,38,40,99,43,61,117,46,108,101,110,103,116,104,45,99,41,44,77,108,40,111,41,41,123,105,102,40,116,46,115,108,105,99,101,40,99,41,46,115,101,97,114,99,104,40,111,41,41,123,118,97,114,32,108,44,102,61,117,59,111,46,103,108,111,98,97,108,124,124,40,111,61,114,101,40,111,46,115,111,117,114,99,101,44,81,108,40,71,116,46,101,120,101,99,40,111,41,41,43,34,103,34,41,41,44,111,46,108,97,115,116,73,110,100,101,120,61,48,59,119,104,105,108,101,40,108,61,111,46,101,120,101,99,40,102,41,41,118,97,114,32,104,61,108,46,105,110,100,101,120,59,117,61,117,46,115,108,105,99,101,40,48,44,104,61,61,61,105,63,99,58,104,41,125,125,101,108,115,101,32,105,102,40,116,46,105,110,100,101,120,79,102,40,73,111,40,111,41,44,99,41,33,61,99,41,123,118,97,114,32,100,61,117,46,108,97,115,116,73,110,100,101,120,79,102,40,111,41,59,100,62,45,49,38,38,40,117,61,117,46,115,108,105,99,101,40,48,44,100,41,41,125,114,101,116,117,114,110,32,117,43,114,125,102,117,110,99,116,105,111,110,32,121,104,40,116,41,123,114,101,116,117,114,110,32,116,61,81,108,40,116,41,44,116,38,38,80,116,46,116,101,115,116,40,116,41,63,116,46,114,101,112,108,97,99,101,40,107,116,44,98,114,41,58,116,125,118,97,114,32,119,104,61,112,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,43,40,110,63,34,32,34,58,34,34,41,43,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,41,41,44,95,104,61,100,97,40,34,116,111,85,112,112,101,114,67,97,115,101,34,41,59,102,117,110,99,116,105,111,110,32,120,104,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,61,81,108,40,116,41,44,101,61,110,63,105,58,101,44,101,61,61,61,105,63,97,114,40,116,41,63,95,114,40,116,41,58,73,110,40,116,41,58,116,46,109,97,116,99,104,40,101,41,124,124,91,93,125,118,97,114,32,79,104,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,114,121,123,114,101,116,117,114,110,32,121,110,40,116,44,105,44,101,41,125,99,97,116,99,104,40,110,41,123,114,101,116,117,114,110,32,121,108,40,110,41,63,110,58,110,101,119,32,82,116,40,110,41,125,125,41,41,44,83,104,61,82,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,95,110,40,101,44,40,102,117,110,99,116,105,111,110,40,101,41,123,101,61,68,115,40,101,41,44,112,105,40,116,44,101,44,65,117,40,116,91,101,93,44,116,41,41,125,41,41,44,116,125,41,41,59,102,117,110,99,116,105,111,110,32,107,104,40,116,41,123,118,97,114,32,101,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,44,110,61,85,97,40,41,59,114,101,116,117,114,110,32,116,61,101,63,80,110,40,116,44,40,102,117,110,99,116,105,111,110,40,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,91,49,93,41,116,104,114,111,119,32,110,101,119,32,111,101,40,99,41,59,114,101,116,117,114,110,91,110,40,116,91,48,93,41,44,116,91,49,93,93,125,41,41,58,91,93,44,95,111,40,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,45,49,59,119,104,105,108,101,40,43,43,114,60,101,41,123,118,97,114,32,105,61,116,91,114,93,59,105,102,40,121,110,40,105,91,48,93,44,116,104,105,115,44,110,41,41,114,101,116,117,114,110,32,121,110,40,105,91,49,93,44,116,104,105,115,44,110,41,125,125,41,41,125,102,117,110,99,116,105,111,110,32,67,104,40,116,41,123,114,101,116,117,114,110,32,98,105,40,109,105,40,116,44,100,41,41,125,102,117,110,99,116,105,111,110,32,80,104,40,116,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,125,125,102,117,110,99,116,105,111,110,32,84,104,40,116,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,124,124,116,33,61,61,116,63,101,58,116,125,118,97,114,32,106,104,61,98,97,40,41,44,69,104,61,98,97,40,33,48,41,59,102,117,110,99,116,105,111,110,32,68,104,40,116,41,123,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,65,104,40,116,41,123,114,101,116,117,114,110,32,101,111,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,105,40,116,44,100,41,41,125,102,117,110,99,116,105,111,110,32,76,104,40,116,41,123,114,101,116,117,114,110,32,97,111,40,109,105,40,116,44,100,41,41,125,102,117,110,99,116,105,111,110,32,73,104,40,116,44,101,41,123,114,101,116,117,114,110,32,115,111,40,116,44,109,105,40,101,44,100,41,41,125,118,97,114,32,77,104,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,72,105,40,110,44,116,44,101,41,125,125,41,41,44,36,104,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,72,105,40,116,44,110,44,101,41,125,125,41,41,59,102,117,110,99,116,105,111,110,32,70,104,40,116,44,101,44,110,41,123,118,97,114,32,114,61,79,102,40,101,41,44,105,61,76,105,40,101,44,114,41,59,110,117,108,108,33,61,110,124,124,83,108,40,101,41,38,38,40,105,46,108,101,110,103,116,104,124,124,33,114,46,108,101,110,103,116,104,41,124,124,40,110,61,101,44,101,61,116,44,116,61,116,104,105,115,44,105,61,76,105,40,101,44,79,102,40,101,41,41,41,59,118,97,114,32,111,61,33,40,83,108,40,110,41,38,38,34,99,104,97,105,110,34,105,110,32,110,41,124,124,33,33,110,46,99,104,97,105,110,44,97,61,95,108,40,116,41,59,114,101,116,117,114,110,32,95,110,40,105,44,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,101,91,110,93,59,116,91,110,93,61,114,44,97,38,38,40,116,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,101,61,116,104,105,115,46,95,95,99,104,97,105,110,95,95,59,105,102,40,111,124,124,101,41,123,118,97,114,32,110,61,116,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,41,44,105,61,110,46,95,95,97,99,116,105,111,110,115,95,95,61,105,97,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,59,114,101,116,117,114,110,32,105,46,112,117,115,104,40,123,102,117,110,99,58,114,44,97,114,103,115,58,97,114,103,117,109,101,110,116,115,44,116,104,105,115,65,114,103,58,116,125,41,44,110,46,95,95,99,104,97,105,110,95,95,61,101,44,110,125,114,101,116,117,114,110,32,114,46,97,112,112,108,121,40,116,44,84,110,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,41,44,116,125,102,117,110,99,116,105,111,110,32,82,104,40,41,123,114,101,116,117,114,110,32,115,110,46,95,61,61,61,116,104,105,115,38,38,40,115,110,46,95,61,103,101,41,44,116,104,105,115,125,102,117,110,99,116,105,111,110,32,78,104,40,41,123,125,102,117,110,99,116,105,111,110,32,66,104,40,116,41,123,114,101,116,117,114,110,32,116,61,89,108,40,116,41,44,95,111,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,108,111,40,101,44,116,41,125,41,41,125,118,97,114,32,122,104,61,120,97,40,80,110,41,44,86,104,61,120,97,40,79,110,41,44,72,104,61,120,97,40,68,110,41,59,102,117,110,99,116,105,111,110,32,85,104,40,116,41,123,114,101,116,117,114,110,32,99,115,40,116,41,63,122,110,40,68,115,40,116,41,41,58,118,111,40,116,41,125,102,117,110,99,116,105,111,110,32,87,104,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,110,117,108,108,61,61,116,63,105,58,73,105,40,116,44,101,41,125,125,118,97,114,32,71,104,61,107,97,40,41,44,113,104,61,107,97,40,33,48,41,59,102,117,110,99,116,105,111,110,32,89,104,40,41,123,114,101,116,117,114,110,91,93,125,102,117,110,99,116,105,111,110,32,75,104,40,41,123,114,101,116,117,114,110,33,49,125,102,117,110,99,116,105,111,110,32,88,104,40,41,123,114,101,116,117,114,110,123,125,125,102,117,110,99,116,105,111,110,32,90,104,40,41,123,114,101,116,117,114,110,34,34,125,102,117,110,99,116,105,111,110,32,74,104,40,41,123,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,81,104,40,116,44,101,41,123,105,102,40,116,61,89,108,40,116,41,44,116,60,49,124,124,116,62,36,41,114,101,116,117,114,110,91,93,59,118,97,114,32,110,61,78,44,114,61,122,101,40,116,44,78,41,59,101,61,85,97,40,101,41,44,116,45,61,78,59,118,97,114,32,105,61,71,110,40,114,44,101,41,59,119,104,105,108,101,40,43,43,110,60,116,41,101,40,110,41,59,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,116,100,40,116,41,123,114,101,116,117,114,110,32,99,108,40,116,41,63,80,110,40,116,44,68,115,41,58,78,108,40,116,41,63,91,116,93,58,105,97,40,69,115,40,81,108,40,116,41,41,41,125,102,117,110,99,116,105,111,110,32,101,100,40,116,41,123,118,97,114,32,101,61,43,43,104,101,59,114,101,116,117,114,110,32,81,108,40,116,41,43,101,125,118,97,114,32,110,100,61,95,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,43,101,125,41,44,48,41,44,114,100,61,84,97,40,34,99,101,105,108,34,41,44,105,100,61,95,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,47,101,125,41,44,49,41,44,111,100,61,84,97,40,34,102,108,111,111,114,34,41,59,102,117,110,99,116,105,111,110,32,97,100,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,107,105,40,116,44,68,104,44,70,105,41,58,105,125,102,117,110,99,116,105,111,110,32,115,100,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,107,105,40,116,44,85,97,40,101,44,50,41,44,70,105,41,58,105,125,102,117,110,99,116,105,111,110,32,99,100,40,116,41,123,114,101,116,117,114,110,32,66,110,40,116,44,68,104,41,125,102,117,110,99,116,105,111,110,32,117,100,40,116,44,101,41,123,114,101,116,117,114,110,32,66,110,40,116,44,85,97,40,101,44,50,41,41,125,102,117,110,99,116,105,111,110,32,108,100,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,107,105,40,116,44,68,104,44,105,111,41,58,105,125,102,117,110,99,116,105,111,110,32,102,100,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,107,105,40,116,44,85,97,40,101,44,50,41,44,105,111,41,58,105,125,118,97,114,32,104,100,61,95,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,42,101,125,41,44,49,41,44,100,100,61,84,97,40,34,114,111,117,110,100,34,41,44,112,100,61,95,97,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,45,101,125,41,44,48,41,59,102,117,110,99,116,105,111,110,32,118,100,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,87,110,40,116,44,68,104,41,58,48,125,102,117,110,99,116,105,111,110,32,103,100,40,116,44,101,41,123,114,101,116,117,114,110,32,116,38,38,116,46,108,101,110,103,116,104,63,87,110,40,116,44,85,97,40,101,44,50,41,41,58,48,125,114,101,116,117,114,110,32,120,114,46,97,102,116,101,114,61,106,117,44,120,114,46,97,114,121,61,69,117,44,120,114,46,97,115,115,105,103,110,61,116,102,44,120,114,46,97,115,115,105,103,110,73,110,61,101,102,44,120,114,46,97,115,115,105,103,110,73,110,87,105,116,104,61,110,102,44,120,114,46,97,115,115,105,103,110,87,105,116,104,61,114,102,44,120,114,46,97,116,61,111,102,44,120,114,46,98,101,102,111,114,101,61,68,117,44,120,114,46,98,105,110,100,61,65,117,44,120,114,46,98,105,110,100,65,108,108,61,83,104,44,120,114,46,98,105,110,100,75,101,121,61,76,117,44,120,114,46,99,97,115,116,65,114,114,97,121,61,74,117,44,120,114,46,99,104,97,105,110,61,87,99,44,120,114,46,99,104,117,110,107,61,77,115,44,120,114,46,99,111,109,112,97,99,116,61,36,115,44,120,114,46,99,111,110,99,97,116,61,70,115,44,120,114,46,99,111,110,100,61,107,104,44,120,114,46,99,111,110,102,111,114,109,115,61,67,104,44,120,114,46,99,111,110,115,116,97,110,116,61,80,104,44,120,114,46,99,111,117,110,116,66,121,61,110,117,44,120,114,46,99,114,101,97,116,101,61,97,102,44,120,114,46,99,117,114,114,121,61,73,117,44,120,114,46,99,117,114,114,121,82,105,103,104,116,61,77,117,44,120,114,46,100,101,98,111,117,110,99,101,61,36,117,44,120,114,46,100,101,102,97,117,108,116,115,61,115,102,44,120,114,46,100,101,102,97,117,108,116,115,68,101,101,112,61,99,102,44,120,114,46,100,101,102,101,114,61,70,117,44,120,114,46,100,101,108,97,121,61,82,117,44,120,114,46,100,105,102,102,101,114,101,110,99,101,61,82,115,44,120,114,46,100,105,102,102,101,114,101,110,99,101,66,121,61,78,115,44,120,114,46,100,105,102,102,101,114,101,110,99,101,87,105,116,104,61,66,115,44,120,114,46,100,114,111,112,61,122,115,44,120,114,46,100,114,111,112,82,105,103,104,116,61,86,115,44,120,114,46,100,114,111,112,82,105,103,104,116,87,104,105,108,101,61,72,115,44,120,114,46,100,114,111,112,87,104,105,108,101,61,85,115,44,120,114,46,102,105,108,108,61,87,115,44,120,114,46,102,105,108,116,101,114,61,105,117,44,120,114,46,102,108,97,116,77,97,112,61,115,117,44,120,114,46,102,108,97,116,77,97,112,68,101,101,112,61,99,117,44,120,114,46,102,108,97,116,77,97,112,68,101,112,116,104,61,117,117,44,120,114,46,102,108,97,116,116,101,110,61,89,115,44,120,114,46,102,108,97,116,116,101,110,68,101,101,112,61,75,115,44,120,114,46,102,108,97,116,116,101,110,68,101,112,116,104,61,88,115,44,120,114,46,102,108,105,112,61,78,117,44,120,114,46,102,108,111,119,61,106,104,44,120,114,46,102,108,111,119,82,105,103,104,116,61,69,104,44,120,114,46,102,114,111,109,80,97,105,114,115,61,90,115,44,120,114,46,102,117,110,99,116,105,111,110,115,61,118,102,44,120,114,46,102,117,110,99,116,105,111,110,115,73,110,61,103,102,44,120,114,46,103,114,111,117,112,66,121,61,104,117,44,120,114,46,105,110,105,116,105,97,108,61,116,99,44,120,114,46,105,110,116,101,114,115,101,99,116,105,111,110,61,101,99,44,120,114,46,105,110,116,101,114,115,101,99,116,105,111,110,66,121,61,110,99,44,120,114,46,105,110,116,101,114,115,101,99,116,105,111,110,87,105,116,104,61,114,99,44,120,114,46,105,110,118,101,114,116,61,119,102,44,120,114,46,105,110,118,101,114,116,66,121,61,95,102,44,120,114,46,105,110,118,111,107,101,77,97,112,61,112,117,44,120,114,46,105,116,101,114,97,116,101,101,61,65,104,44,120,114,46,107,101,121,66,121,61,118,117,44,120,114,46,107,101,121,115,61,79,102,44,120,114,46,107,101,121,115,73,110,61,83,102,44,120,114,46,109,97,112,61,103,117,44,120,114,46,109,97,112,75,101,121,115,61,107,102,44,120,114,46,109,97,112,86,97,108,117,101,115,61,67,102,44,120,114,46,109,97,116,99,104,101,115,61,76,104,44,120,114,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,61,73,104,44,120,114,46,109,101,109,111,105,122,101,61,66,117,44,120,114,46,109,101,114,103,101,61,80,102,44,120,114,46,109,101,114,103,101,87,105,116,104,61,84,102,44,120,114,46,109,101,116,104,111,100,61,77,104,44,120,114,46,109,101,116,104,111,100,79,102,61,36,104,44,120,114,46,109,105,120,105,110,61,70,104,44,120,114,46,110,101,103,97,116,101,61,122,117,44,120,114,46,110,116,104,65,114,103,61,66,104,44,120,114,46,111,109,105,116,61,106,102,44,120,114,46,111,109,105,116,66,121,61,69,102,44,120,114,46,111,110,99,101,61,86,117,44,120,114,46,111,114,100,101,114,66,121,61,109,117,44,120,114,46,111,118,101,114,61,122,104,44,120,114,46,111,118,101,114,65,114,103,115,61,72,117,44,120,114,46,111,118,101,114,69,118,101,114,121,61,86,104,44,120,114,46,111,118,101,114,83,111,109,101,61,72,104,44,120,114,46,112,97,114,116,105,97,108,61,85,117,44,120,114,46,112,97,114,116,105,97,108,82,105,103,104,116,61,87,117,44,120,114,46,112,97,114,116,105,116,105,111,110,61,98,117,44,120,114,46,112,105,99,107,61,68,102,44,120,114,46,112,105,99,107,66,121,61,65,102,44,120,114,46,112,114,111,112,101,114,116,121,61,85,104,44,120,114,46,112,114,111,112,101,114,116,121,79,102,61,87,104,44,120,114,46,112,117,108,108,61,99,99,44,120,114,46,112,117,108,108,65,108,108,61,117,99,44,120,114,46,112,117,108,108,65,108,108,66,121,61,108,99,44,120,114,46,112,117,108,108,65,108,108,87,105,116,104,61,102,99,44,120,114,46,112,117,108,108,65,116,61,104,99,44,120,114,46,114,97,110,103,101,61,71,104,44,120,114,46,114,97,110,103,101,82,105,103,104,116,61,113,104,44,120,114,46,114,101,97,114,103,61,71,117,44,120,114,46,114,101,106,101,99,116,61,95,117,44,120,114,46,114,101,109,111,118,101,61,100,99,44,120,114,46,114,101,115,116,61,113,117,44,120,114,46,114,101,118,101,114,115,101,61,112,99,44,120,114,46,115,97,109,112,108,101,83,105,122,101,61,79,117,44,120,114,46,115,101,116,61,73,102,44,120,114,46,115,101,116,87,105,116,104,61,77,102,44,120,114,46,115,104,117,102,102,108,101,61,83,117,44,120,114,46,115,108,105,99,101,61,118,99,44,120,114,46,115,111,114,116,66,121,61,80,117,44,120,114,46,115,111,114,116,101,100,85,110,105,113,61,120,99,44,120,114,46,115,111,114,116,101,100,85,110,105,113,66,121,61,79,99,44,120,114,46,115,112,108,105,116,61,117,104,44,120,114,46,115,112,114,101,97,100,61,89,117,44,120,114,46,116,97,105,108,61,83,99,44,120,114,46,116,97,107,101,61,107,99,44,120,114,46,116,97,107,101,82,105,103,104,116,61,67,99,44,120,114,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,61,80,99,44,120,114,46,116,97,107,101,87,104,105,108,101,61,84,99,44,120,114,46,116,97,112,61,71,99,44,120,114,46,116,104,114,111,116,116,108,101,61,75,117,44,120,114,46,116,104,114,117,61,113,99,44,120,114,46,116,111,65,114,114,97,121,61,71,108,44,120,114,46,116,111,80,97,105,114,115,61,36,102,44,120,114,46,116,111,80,97,105,114,115,73,110,61,70,102,44,120,114,46,116,111,80,97,116,104,61,116,100,44,120,114,46,116,111,80,108,97,105,110,79,98,106,101,99,116,61,90,108,44,120,114,46,116,114,97,110,115,102,111,114,109,61,82,102,44,120,114,46,117,110,97,114,121,61,88,117,44,120,114,46,117,110,105,111,110,61,106,99,44,120,114,46,117,110,105,111,110,66,121,61,69,99,44,120,114,46,117,110,105,111,110,87,105,116,104,61,68,99,44,120,114,46,117,110,105,113,61,65,99,44,120,114,46,117,110,105,113,66,121,61,76,99,44,120,114,46,117,110,105,113,87,105,116,104,61,73,99,44,120,114,46,117,110,115,101,116,61,78,102,44,120,114,46,117,110,122,105,112,61,77,99,44,120,114,46,117,110,122,105,112,87,105,116,104,61,36,99,44,120,114,46,117,112,100,97,116,101,61,66,102,44,120,114,46,117,112,100,97,116,101,87,105,116,104,61,122,102,44,120,114,46,118,97,108,117,101,115,61,86,102,44,120,114,46,118,97,108,117,101,115,73,110,61,72,102,44,120,114,46,119,105,116,104,111,117,116,61,70,99,44,120,114,46,119,111,114,100,115,61,120,104,44,120,114,46,119,114,97,112,61,90,117,44,120,114,46,120,111,114,61,82,99,44,120,114,46,120,111,114,66,121,61,78,99,44,120,114,46,120,111,114,87,105,116,104,61,66,99,44,120,114,46,122,105,112,61,122,99,44,120,114,46,122,105,112,79,98,106,101,99,116,61,86,99,44,120,114,46,122,105,112,79,98,106,101,99,116,68,101,101,112,61,72,99,44,120,114,46,122,105,112,87,105,116,104,61,85,99,44,120,114,46,101,110,116,114,105,101,115,61,36,102,44,120,114,46,101,110,116,114,105,101,115,73,110,61,70,102,44,120,114,46,101,120,116,101,110,100,61,101,102,44,120,114,46,101,120,116,101,110,100,87,105,116,104,61,110,102,44,70,104,40,120,114,44,120,114,41,44,120,114,46,97,100,100,61,110,100,44,120,114,46,97,116,116,101,109,112,116,61,79,104,44,120,114,46,99,97,109,101,108,67,97,115,101,61,113,102,44,120,114,46,99,97,112,105,116,97,108,105,122,101,61,89,102,44,120,114,46,99,101,105,108,61,114,100,44,120,114,46,99,108,97,109,112,61,85,102,44,120,114,46,99,108,111,110,101,61,81,117,44,120,114,46,99,108,111,110,101,68,101,101,112,61,101,108,44,120,114,46,99,108,111,110,101,68,101,101,112,87,105,116,104,61,110,108,44,120,114,46,99,108,111,110,101,87,105,116,104,61,116,108,44,120,114,46,99,111,110,102,111,114,109,115,84,111,61,114,108,44,120,114,46,100,101,98,117,114,114,61,75,102,44,120,114,46,100,101,102,97,117,108,116,84,111,61,84,104,44,120,114,46,100,105,118,105,100,101,61,105,100,44,120,114,46,101,110,100,115,87,105,116,104,61,88,102,44,120,114,46,101,113,61,105,108,44,120,114,46,101,115,99,97,112,101,61,90,102,44,120,114,46,101,115,99,97,112,101,82,101,103,69,120,112,61,74,102,44,120,114,46,101,118,101,114,121,61,114,117,44,120,114,46,102,105,110,100,61,111,117,44,120,114,46,102,105,110,100,73,110,100,101,120,61,71,115,44,120,114,46,102,105,110,100,75,101,121,61,117,102,44,120,114,46,102,105,110,100,76,97,115,116,61,97,117,44,120,114,46,102,105,110,100,76,97,115,116,73,110,100,101,120,61,113,115,44,120,114,46,102,105,110,100,76,97,115,116,75,101,121,61,108,102,44,120,114,46,102,108,111,111,114,61,111,100,44,120,114,46,102,111,114,69,97,99,104,61,108,117,44,120,114,46,102,111,114,69,97,99,104,82,105,103,104,116,61,102,117,44,120,114,46,102,111,114,73,110,61,102,102,44,120,114,46,102,111,114,73,110,82,105,103,104,116,61,104,102,44,120,114,46,102,111,114,79,119,110,61,100,102,44,120,114,46,102,111,114,79,119,110,82,105,103,104,116,61,112,102,44,120,114,46,103,101,116,61,109,102,44,120,114,46,103,116,61,111,108,44,120,114,46,103,116,101,61,97,108,44,120,114,46,104,97,115,61,98,102,44,120,114,46,104,97,115,73,110,61,121,102,44,120,114,46,104,101,97,100,61,74,115,44,120,114,46,105,100,101,110,116,105,116,121,61,68,104,44,120,114,46,105,110,99,108,117,100,101,115,61,100,117,44,120,114,46,105,110,100,101,120,79,102,61,81,115,44,120,114,46,105,110,82,97,110,103,101,61,87,102,44,120,114,46,105,110,118,111,107,101,61,120,102,44,120,114,46,105,115,65,114,103,117,109,101,110,116,115,61,115,108,44,120,114,46,105,115,65,114,114,97,121,61,99,108,44,120,114,46,105,115,65,114,114,97,121,66,117,102,102,101,114,61,117,108,44,120,114,46,105,115,65,114,114,97,121,76,105,107,101,61,108,108,44,120,114,46,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,61,102,108,44,120,114,46,105,115,66,111,111,108,101,97,110,61,104,108,44,120,114,46,105,115,66,117,102,102,101,114,61,100,108,44,120,114,46,105,115,68,97,116,101,61,112,108,44,120,114,46,105,115,69,108,101,109,101,110,116,61,118,108,44,120,114,46,105,115,69,109,112,116,121,61,103,108,44,120,114,46,105,115,69,113,117,97,108,61,109,108,44,120,114,46,105,115,69,113,117,97,108,87,105,116,104,61,98,108,44,120,114,46,105,115,69,114,114,111,114,61,121,108,44,120,114,46,105,115,70,105,110,105,116,101,61,119,108,44,120,114,46,105,115,70,117,110,99,116,105,111,110,61,95,108,44,120,114,46,105,115,73,110,116,101,103,101,114,61,120,108,44,120,114,46,105,115,76,101,110,103,116,104,61,79,108,44,120,114,46,105,115,77,97,112,61,67,108,44,120,114,46,105,115,77,97,116,99,104,61,80,108,44,120,114,46,105,115,77,97,116,99,104,87,105,116,104,61,84,108,44,120,114,46,105,115,78,97,78,61,106,108,44,120,114,46,105,115,78,97,116,105,118,101,61,69,108,44,120,114,46,105,115,78,105,108,61,65,108,44,120,114,46,105,115,78,117,108,108,61,68,108,44,120,114,46,105,115,78,117,109,98,101,114,61,76,108,44,120,114,46,105,115,79,98,106,101,99,116,61,83,108,44,120,114,46,105,115,79,98,106,101,99,116,76,105,107,101,61,107,108,44,120,114,46,105,115,80,108,97,105,110,79,98,106,101,99,116,61,73,108,44,120,114,46,105,115,82,101,103,69,120,112,61,77,108,44,120,114,46,105,115,83,97,102,101,73,110,116,101,103,101,114,61,36,108,44,120,114,46,105,115,83,101,116,61,70,108,44,120,114,46,105,115,83,116,114,105,110,103,61,82,108,44,120,114,46,105,115,83,121,109,98,111,108,61,78,108,44,120,114,46,105,115,84,121,112,101,100,65,114,114,97,121,61,66,108,44,120,114,46,105,115,85,110,100,101,102,105,110,101,100,61,122,108,44,120,114,46,105,115,87,101,97,107,77,97,112,61,86,108,44,120,114,46,105,115,87,101,97,107,83,101,116,61,72,108,44,120,114,46,106,111,105,110,61,105,99,44,120,114,46,107,101,98,97,98,67,97,115,101,61,81,102,44,120,114,46,108,97,115,116,61,111,99,44,120,114,46,108,97,115,116,73,110,100,101,120,79,102,61,97,99,44,120,114,46,108,111,119,101,114,67,97,115,101,61,116,104,44,120,114,46,108,111,119,101,114,70,105,114,115,116,61,101,104,44,120,114,46,108,116,61,85,108,44,120,114,46,108,116,101,61,87,108,44,120,114,46,109,97,120,61,97,100,44,120,114,46,109,97,120,66,121,61,115,100,44,120,114,46,109,101,97,110,61,99,100,44,120,114,46,109,101,97,110,66,121,61,117,100,44,120,114,46,109,105,110,61,108,100,44,120,114,46,109,105,110,66,121,61,102,100,44,120,114,46,115,116,117,98,65,114,114,97,121,61,89,104,44,120,114,46,115,116,117,98,70,97,108,115,101,61,75,104,44,120,114,46,115,116,117,98,79,98,106,101,99,116,61,88,104,44,120,114,46,115,116,117,98,83,116,114,105,110,103,61,90,104,44,120,114,46,115,116,117,98,84,114,117,101,61,74,104,44,120,114,46,109,117,108,116,105,112,108,121,61,104,100,44,120,114,46,110,116,104,61,115,99,44,120,114,46,110,111,67,111,110,102,108,105,99,116,61,82,104,44,120,114,46,110,111,111,112,61,78,104,44,120,114,46,110,111,119,61,84,117,44,120,114,46,112,97,100,61,110,104,44,120,114,46,112,97,100,69,110,100,61,114,104,44,120,114,46,112,97,100,83,116,97,114,116,61,105,104,44,120,114,46,112,97,114,115,101,73,110,116,61,111,104,44,120,114,46,114,97,110,100,111,109,61,71,102,44,120,114,46,114,101,100,117,99,101,61,121,117,44,120,114,46,114,101,100,117,99,101,82,105,103,104,116,61,119,117,44,120,114,46,114,101,112,101,97,116,61,97,104,44,120,114,46,114,101,112,108,97,99,101,61,115,104,44,120,114,46,114,101,115,117,108,116,61,76,102,44,120,114,46,114,111,117,110,100,61,100,100,44,120,114,46,114,117,110,73,110,67,111,110,116,101,120,116,61,116,44,120,114,46,115,97,109,112,108,101,61,120,117,44,120,114,46,115,105,122,101,61,107,117,44,120,114,46,115,110,97,107,101,67,97,115,101,61,99,104,44,120,114,46,115,111,109,101,61,67,117,44,120,114,46,115,111,114,116,101,100,73,110,100,101,120,61,103,99,44,120,114,46,115,111,114,116,101,100,73,110,100,101,120,66,121,61,109,99,44,120,114,46,115,111,114,116,101,100,73,110,100,101,120,79,102,61,98,99,44,120,114,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,61,121,99,44,120,114,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,66,121,61,119,99,44,120,114,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,79,102,61,95,99,44,120,114,46,115,116,97,114,116,67,97,115,101,61,108,104,44,120,114,46,115,116,97,114,116,115,87,105,116,104,61,102,104,44,120,114,46,115,117,98,116,114,97,99,116,61,112,100,44,120,114,46,115,117,109,61,118,100,44,120,114,46,115,117,109,66,121,61,103,100,44,120,114,46,116,101,109,112,108,97,116,101,61,104,104,44,120,114,46,116,105,109,101,115,61,81,104,44,120,114,46,116,111,70,105,110,105,116,101,61,113,108,44,120,114,46,116,111,73,110,116,101,103,101,114,61,89,108,44,120,114,46,116,111,76,101,110,103,116,104,61,75,108,44,120,114,46,116,111,76,111,119,101,114,61,100,104,44,120,114,46,116,111,78,117,109,98,101,114,61,88,108,44,120,114,46,116,111,83,97,102,101,73,110,116,101,103,101,114,61,74,108,44,120,114,46,116,111,83,116,114,105,110,103,61,81,108,44,120,114,46,116,111,85,112,112,101,114,61,112,104,44,120,114,46,116,114,105,109,61,118,104,44,120,114,46,116,114,105,109,69,110,100,61,103,104,44,120,114,46,116,114,105,109,83,116,97,114,116,61,109,104,44,120,114,46,116,114,117,110,99,97,116,101,61,98,104,44,120,114,46,117,110,101,115,99,97,112,101,61,121,104,44,120,114,46,117,110,105,113,117,101,73,100,61,101,100,44,120,114,46,117,112,112,101,114,67,97,115,101,61,119,104,44,120,114,46,117,112,112,101,114,70,105,114,115,116,61,95,104,44,120,114,46,101,97,99,104,61,108,117,44,120,114,46,101,97,99,104,82,105,103,104,116,61,102,117,44,120,114,46,102,105,114,115,116,61,74,115,44,70,104,40,120,114,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,125,59,114,101,116,117,114,110,32,68,105,40,120,114,44,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,102,101,46,99,97,108,108,40,120,114,46,112,114,111,116,111,116,121,112,101,44,110,41,124,124,40,116,91,110,93,61,101,41,125,41,41,44,116,125,40,41,44,123,99,104,97,105,110,58,33,49,125,41,44,120,114,46,86,69,82,83,73,79,78,61,111,44,95,110,40,91,34,98,105,110,100,34,44,34,98,105,110,100,75,101,121,34,44,34,99,117,114,114,121,34,44,34,99,117,114,114,121,82,105,103,104,116,34,44,34,112,97,114,116,105,97,108,34,44,34,112,97,114,116,105,97,108,82,105,103,104,116,34,93,44,40,102,117,110,99,116,105,111,110,40,116,41,123,120,114,91,116,93,46,112,108,97,99,101,104,111,108,100,101,114,61,120,114,125,41,41,44,95,110,40,91,34,100,114,111,112,34,44,34,116,97,107,101,34,93,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,80,114,46,112,114,111,116,111,116,121,112,101,91,116,93,61,102,117,110,99,116,105,111,110,40,110,41,123,110,61,110,61,61,61,105,63,49,58,66,101,40,89,108,40,110,41,44,48,41,59,118,97,114,32,114,61,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,38,38,33,101,63,110,101,119,32,80,114,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,114,46,95,95,102,105,108,116,101,114,101,100,95,95,63,114,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,122,101,40,110,44,114,46,95,95,116,97,107,101,67,111,117,110,116,95,95,41,58,114,46,95,95,118,105,101,119,115,95,95,46,112,117,115,104,40,123,115,105,122,101,58,122,101,40,110,44,78,41,44,116,121,112,101,58,116,43,40,114,46,95,95,100,105,114,95,95,60,48,63,34,82,105,103,104,116,34,58,34,34,41,125,41,44,114,125,44,80,114,46,112,114,111,116,111,116,121,112,101,91,116,43,34,82,105,103,104,116,34,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,114,101,118,101,114,115,101,40,41,91,116,93,40,101,41,46,114,101,118,101,114,115,101,40,41,125,125,41,41,44,95,110,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,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,43,49,44,114,61,110,61,61,65,124,124,110,61,61,73,59,80,114,46,112,114,111,116,111,116,121,112,101,91,116,93,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,99,108,111,110,101,40,41,59,114,101,116,117,114,110,32,101,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,85,97,40,116,44,51,41,44,116,121,112,101,58,110,125,41,44,101,46,95,95,102,105,108,116,101,114,101,100,95,95,61,101,46,95,95,102,105,108,116,101,114,101,100,95,95,124,124,114,44,101,125,125,41,41,44,95,110,40,91,34,104,101,97,100,34,44,34,108,97,115,116,34,93,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,34,116,97,107,101,34,43,40,101,63,34,82,105,103,104,116,34,58,34,34,41,59,80,114,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,114,101,116,117,114,110,32,116,104,105,115,91,110,93,40,49,41,46,118,97,108,117,101,40,41,91,48,93,125,125,41,41,44,95,110,40,91,34,105,110,105,116,105,97,108,34,44,34,116,97,105,108,34,93,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,34,100,114,111,112,34,43,40,101,63,34,34,58,34,82,105,103,104,116,34,41,59,80,114,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,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,80,114,40,116,104,105,115,41,58,116,104,105,115,91,110,93,40,49,41,125,125,41,41,44,80,114,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,68,104,41,125,44,80,114,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,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,116,41,46,104,101,97,100,40,41,125,44,80,114,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,116,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,116,41,125,44,80,114,46,112,114,111,116,111,116,121,112,101,46,105,110,118,111,107,101,77,97,112,61,95,111,40,40,102,117,110,99,116,105,111,110,40,116,44,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,116,63,110,101,119,32,80,114,40,116,104,105,115,41,58,116,104,105,115,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,72,105,40,110,44,116,44,101,41,125,41,41,125,41,41,44,80,114,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,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,122,117,40,85,97,40,116,41,41,41,125,44,80,114,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,116,44,101,41,123,116,61,89,108,40,116,41,59,118,97,114,32,110,61,116,104,105,115,59,114,101,116,117,114,110,32,110,46,95,95,102,105,108,116,101,114,101,100,95,95,38,38,40,116,62,48,124,124,101,60,48,41,63,110,101,119,32,80,114,40,110,41,58,40,116,60,48,63,110,61,110,46,116,97,107,101,82,105,103,104,116,40,45,116,41,58,116,38,38,40,110,61,110,46,100,114,111,112,40,116,41,41,44,101,33,61,61,105,38,38,40,101,61,89,108,40,101,41,44,110,61,101,60,48,63,110,46,100,114,111,112,82,105,103,104,116,40,45,101,41,58,110,46,116,97,107,101,40,101,45,116,41,41,44,110,41,125,44,80,114,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,116,41,123,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,116,41,46,114,101,118,101,114,115,101,40,41,125,44,80,114,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,78,41,125,44,68,105,40,80,114,46,112,114,111,116,111,116,121,112,101,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,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,101,41,44,114,61,47,94,40,63,58,104,101,97,100,124,108,97,115,116,41,36,47,46,116,101,115,116,40,101,41,44,111,61,120,114,91,114,63,34,116,97,107,101,34,43,40,34,108,97,115,116,34,61,61,101,63,34,82,105,103,104,116,34,58,34,34,41,58,101,93,44,97,61,114,124,124,47,94,102,105,110,100,47,46,116,101,115,116,40,101,41,59,111,38,38,40,120,114,46,112,114,111,116,111,116,121,112,101,91,101,93,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,44,115,61,114,63,91,49,93,58,97,114,103,117,109,101,110,116,115,44,99,61,101,32,105,110,115,116,97,110,99,101,111,102,32,80,114,44,117,61,115,91,48,93,44,108,61,99,124,124,99,108,40,101,41,44,102,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,111,46,97,112,112,108,121,40,120,114,44,84,110,40,91,116,93,44,115,41,41,59,114,101,116,117,114,110,32,114,38,38,104,63,101,91,48,93,58,101,125,59,108,38,38,110,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,117,38,38,49,33,61,117,46,108,101,110,103,116,104,38,38,40,99,61,108,61,33,49,41,59,118,97,114,32,104,61,116,104,105,115,46,95,95,99,104,97,105,110,95,95,44,100,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,112,61,97,38,38,33,104,44,118,61,99,38,38,33,100,59,105,102,40,33,97,38,38,108,41,123,101,61,118,63,101,58,110,101,119,32,80,114,40,116,104,105,115,41,59,118,97,114,32,103,61,116,46,97,112,112,108,121,40,101,44,115,41,59,114,101,116,117,114,110,32,103,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,113,99,44,97,114,103,115,58,91,102,93,44,116,104,105,115,65,114,103,58,105,125,41,44,110,101,119,32,67,114,40,103,44,104,41,125,114,101,116,117,114,110,32,112,38,38,118,63,116,46,97,112,112,108,121,40,116,104,105,115,44,115,41,58,40,103,61,116,104,105,115,46,116,104,114,117,40,102,41,44,112,63,114,63,103,46,118,97,108,117,101,40,41,91,48,93,58,103,46,118,97,108,117,101,40,41,58,103,41,125,41,125,41,41,44,95,110,40,91,34,112,111,112,34,44,34,112,117,115,104,34,44,34,115,104,105,102,116,34,44,34,115,111,114,116,34,44,34,115,112,108,105,99,101,34,44,34,117,110,115,104,105,102,116,34,93,44,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,97,101,91,116,93,44,110,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,116,41,63,34,116,97,112,34,58,34,116,104,114,117,34,44,114,61,47,94,40,63,58,112,111,112,124,115,104,105,102,116,41,36,47,46,116,101,115,116,40,116,41,59,120,114,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,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,59,105,102,40,114,38,38,33,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,123,118,97,114,32,105,61,116,104,105,115,46,118,97,108,117,101,40,41,59,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,99,108,40,105,41,63,105,58,91,93,44,116,41,125,114,101,116,117,114,110,32,116,104,105,115,91,110,93,40,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,99,108,40,110,41,63,110,58,91,93,44,116,41,125,41,41,125,125,41,41,44,68,105,40,80,114,46,112,114,111,116,111,116,121,112,101,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,120,114,91,101,93,59,105,102,40,110,41,123,118,97,114,32,114,61,110,46,110,97,109,101,43,34,34,59,102,101,46,99,97,108,108,40,117,110,44,114,41,124,124,40,117,110,91,114,93,61,91,93,41,44,117,110,91,114,93,46,112,117,115,104,40,123,110,97,109,101,58,101,44,102,117,110,99,58,110,125,41,125,125,41,41,44,117,110,91,121,97,40,105,44,121,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,105,125,93,44,80,114,46,112,114,111,116,111,116,121,112,101,46,99,108,111,110,101,61,84,114,44,80,114,46,112,114,111,116,111,116,121,112,101,46,114,101,118,101,114,115,101,61,106,114,44,80,114,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,61,69,114,44,120,114,46,112,114,111,116,111,116,121,112,101,46,97,116,61,89,99,44,120,114,46,112,114,111,116,111,116,121,112,101,46,99,104,97,105,110,61,75,99,44,120,114,46,112,114,111,116,111,116,121,112,101,46,99,111,109,109,105,116,61,88,99,44,120,114,46,112,114,111,116,111,116,121,112,101,46,110,101,120,116,61,90,99,44,120,114,46,112,114,111,116,111,116,121,112,101,46,112,108,97,110,116,61,81,99,44,120,114,46,112,114,111,116,111,116,121,112,101,46,114,101,118,101,114,115,101,61,116,117,44,120,114,46,112,114,111,116,111,116,121,112,101,46,116,111,74,83,79,78,61,120,114,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,79,102,61,120,114,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,61,101,117,44,120,114,46,112,114,111,116,111,116,121,112,101,46,102,105,114,115,116,61,120,114,46,112,114,111,116,111,116,121,112,101,46,104,101,97,100,44,80,101,38,38,40,120,114,46,112,114,111,116,111,116,121,112,101,91,80,101,93,61,74,99,41,44,120,114,125,44,79,114,61,120,114,40,41,59,115,110,46,95,61,79,114,44,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,114,125,46,99,97,108,108,40,101,44,110,44,101,44,116,41,44,114,61,61,61,105,124,124,40,116,46,101,120,112,111,114,116,115,61,114,41,125,46,99,97,108,108,40,116,104,105,115,41,125,44,55,55,55,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,53,54,51,57,41,44,105,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,46,68,97,116,101,46,110,111,119,40,41,125,59,116,46,101,120,112,111,114,116,115,61,105,125,44,52,56,52,49,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,53,54,49,41,44,105,61,110,40,51,50,49,56,41,44,111,61,110,40,51,52,52,56,41,44,97,61,78,97,78,44,115,61,47,94,91,45,43,93,48,120,91,48,45,57,97,45,102,93,43,36,47,105,44,99,61,47,94,48,98,91,48,49,93,43,36,47,105,44,117,61,47,94,48,111,91,48,45,55,93,43,36,47,105,44,108,61,112,97,114,115,101,73,110,116,59,102,117,110,99,116,105,111,110,32,102,40,116,41,123,105,102,40,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,116,59,105,102,40,111,40,116,41,41,114,101,116,117,114,110,32,97,59,105,102,40,105,40,116,41,41,123,118,97,114,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,46,118,97,108,117,101,79,102,63,116,46,118,97,108,117,101,79,102,40,41,58,116,59,116,61,105,40,101,41,63,101,43,34,34,58,101,125,105,102,40,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,48,61,61,61,116,63,116,58,43,116,59,116,61,114,40,116,41,59,118,97,114,32,110,61,99,46,116,101,115,116,40,116,41,59,114,101,116,117,114,110,32,110,124,124,117,46,116,101,115,116,40,116,41,63,108,40,116,46,115,108,105,99,101,40,50,41,44,110,63,50,58,56,41,58,115,46,116,101,115,116,40,116,41,63,97,58,43,116,125,116,46,101,120,112,111,114,116,115,61,102,125,44,53,51,55,58,102,117,110,99,116,105,111,110,40,41,123,119,105,110,100,111,119,46,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,124,124,40,119,105,110,100,111,119,46,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,116,104,105,115,46,105,61,91,93,44,116,104,105,115,46,109,61,116,125,102,117,110,99,116,105,111,110,32,110,40,116,41,123,40,102,117,110,99,116,105,111,110,32,110,40,41,123,118,97,114,32,114,61,116,46,116,97,107,101,82,101,99,111,114,100,115,40,41,59,114,46,108,101,110,103,116,104,38,38,116,46,109,40,114,44,116,41,44,116,46,104,61,115,101,116,84,105,109,101,111,117,116,40,110,44,101,46,95,112,101,114,105,111,100,41,125,41,40,41,125,102,117,110,99,116,105,111,110,32,114,40,101,41,123,118,97,114,32,110,44,114,61,123,116,121,112,101,58,110,117,108,108,44,116,97,114,103,101,116,58,110,117,108,108,44,97,100,100,101,100,78,111,100,101,115,58,91,93,44,114,101,109,111,118,101,100,78,111,100,101,115,58,91,93,44,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,58,110,117,108,108,44,110,101,120,116,83,105,98,108,105,110,103,58,110,117,108,108,44,97,116,116,114,105,98,117,116,101,78,97,109,101,58,110,117,108,108,44,97,116,116,114,105,98,117,116,101,78,97,109,101,115,112,97,99,101,58,110,117,108,108,44,111,108,100,86,97,108,117,101,58,110,117,108,108,125,59,102,111,114,40,110,32,105,110,32,101,41,114,91,110,93,33,61,61,116,38,38,101,91,110,93,33,61,61,116,38,38,40,114,91,110,93,61,101,91,110,93,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,118,97,114,32,110,61,117,40,116,44,101,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,111,61,105,46,108,101,110,103,116,104,59,105,102,40,101,46,97,38,38,51,61,61,61,116,46,110,111,100,101,84,121,112,101,38,38,116,46,110,111,100,101,86,97,108,117,101,33,61,61,110,46,97,38,38,105,46,112,117,115,104,40,110,101,119,32,114,40,123,116,121,112,101,58,34,99,104,97,114,97,99,116,101,114,68,97,116,97,34,44,116,97,114,103,101,116,58,116,44,111,108,100,86,97,108,117,101,58,110,46,97,125,41,41,44,101,46,98,38,38,110,46,98,38,38,115,40,105,44,116,44,110,46,98,44,101,46,102,41,44,101,46,99,124,124,101,46,103,41,118,97,114,32,97,61,99,40,105,44,116,44,110,44,101,41,59,40,97,124,124,105,46,108,101,110,103,116,104,33,61,61,111,41,38,38,40,110,61,117,40,116,44,101,41,41,125,125,102,117,110,99,116,105,111,110,32,111,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,118,97,108,117,101,125,102,117,110,99,116,105,111,110,32,97,40,116,44,101,41,123,114,101,116,117,114,110,34,115,116,121,108,101,34,33,61,61,101,46,110,97,109,101,63,101,46,118,97,108,117,101,58,116,46,115,116,121,108,101,46,99,115,115,84,101,120,116,125,102,117,110,99,116,105,111,110,32,115,40,101,44,110,44,105,44,111,41,123,102,111,114,40,118,97,114,32,97,44,115,44,99,61,123,125,44,117,61,110,46,97,116,116,114,105,98,117,116,101,115,44,108,61,117,46,108,101,110,103,116,104,59,108,45,45,59,41,97,61,117,91,108,93,44,115,61,97,46,110,97,109,101,44,111,38,38,111,91,115,93,61,61,61,116,124,124,40,118,40,110,44,97,41,33,61,61,105,91,115,93,38,38,101,46,112,117,115,104,40,114,40,123,116,121,112,101,58,34,97,116,116,114,105,98,117,116,101,115,34,44,116,97,114,103,101,116,58,110,44,97,116,116,114,105,98,117,116,101,78,97,109,101,58,115,44,111,108,100,86,97,108,117,101,58,105,91,115,93,44,97,116,116,114,105,98,117,116,101,78,97,109,101,115,112,97,99,101,58,97,46,110,97,109,101,115,112,97,99,101,85,82,73,125,41,41,44,99,91,115,93,61,33,48,41,59,102,111,114,40,115,32,105,110,32,105,41,99,91,115,93,124,124,101,46,112,117,115,104,40,114,40,123,116,97,114,103,101,116,58,110,44,116,121,112,101,58,34,97,116,116,114,105,98,117,116,101,115,34,44,97,116,116,114,105,98,117,116,101,78,97,109,101,58,115,44,111,108,100,86,97,108,117,101,58,105,91,115,93,125,41,41,125,102,117,110,99,116,105,111,110,32,99,40,101,44,110,44,105,44,111,41,123,102,117,110,99,116,105,111,110,32,97,40,116,44,110,44,105,44,97,44,117,41,123,118,97,114,32,108,44,102,44,104,44,100,61,116,46,108,101,110,103,116,104,45,49,59,102,111,114,40,117,61,45,126,40,40,100,45,117,41,47,50,41,59,104,61,116,46,112,111,112,40,41,59,41,108,61,105,91,104,46,106,93,44,102,61,97,91,104,46,108,93,44,111,46,99,38,38,117,38,38,77,97,116,104,46,97,98,115,40,104,46,106,45,104,46,108,41,62,61,100,38,38,40,101,46,112,117,115,104,40,114,40,123,116,121,112,101,58,34,99,104,105,108,100,76,105,115,116,34,44,116,97,114,103,101,116,58,110,44,97,100,100,101,100,78,111,100,101,115,58,91,108,93,44,114,101,109,111,118,101,100,78,111,100,101,115,58,91,108,93,44,110,101,120,116,83,105,98,108,105,110,103,58,108,46,110,101,120,116,83,105,98,108,105,110,103,44,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,58,108,46,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,125,41,41,44,117,45,45,41,44,111,46,98,38,38,102,46,98,38,38,115,40,101,44,108,44,102,46,98,44,111,46,102,41,44,111,46,97,38,38,51,61,61,61,108,46,110,111,100,101,84,121,112,101,38,38,108,46,110,111,100,101,86,97,108,117,101,33,61,61,102,46,97,38,38,101,46,112,117,115,104,40,114,40,123,116,121,112,101,58,34,99,104,97,114,97,99,116,101,114,68,97,116,97,34,44,116,97,114,103,101,116,58,108,44,111,108,100,86,97,108,117,101,58,102,46,97,125,41,41,44,111,46,103,38,38,99,40,108,44,102,41,125,102,117,110,99,116,105,111,110,32,99,40,110,44,105,41,123,102,111,114,40,118,97,114,32,102,44,104,44,112,44,118,44,103,44,109,61,110,46,99,104,105,108,100,78,111,100,101,115,44,98,61,105,46,99,44,121,61,109,46,108,101,110,103,116,104,44,119,61,98,63,98,46,108,101,110,103,116,104,58,48,44,95,61,48,44,120,61,48,44,79,61,48,59,120,60,121,124,124,79,60,119,59,41,118,61,109,91,120,93,44,103,61,40,112,61,98,91,79,93,41,38,38,112,46,110,111,100,101,44,118,61,61,61,103,63,40,111,46,98,38,38,112,46,98,38,38,115,40,101,44,118,44,112,46,98,44,111,46,102,41,44,111,46,97,38,38,112,46,97,33,61,61,116,38,38,118,46,110,111,100,101,86,97,108,117,101,33,61,61,112,46,97,38,38,101,46,112,117,115,104,40,114,40,123,116,121,112,101,58,34,99,104,97,114,97,99,116,101,114,68,97,116,97,34,44,116,97,114,103,101,116,58,118,44,111,108,100,86,97,108,117,101,58,112,46,97,125,41,41,44,104,38,38,97,40,104,44,110,44,109,44,98,44,95,41,44,111,46,103,38,38,40,118,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,124,124,112,46,99,38,38,112,46,99,46,108,101,110,103,116,104,41,38,38,99,40,118,44,112,41,44,120,43,43,44,79,43,43,41,58,40,117,61,33,48,44,102,124,124,40,102,61,123,125,44,104,61,91,93,41,44,118,38,38,40,102,91,112,61,108,40,118,41,93,124,124,40,102,91,112,93,61,33,48,44,45,49,61,61,61,40,112,61,100,40,98,44,118,44,79,44,34,110,111,100,101,34,41,41,63,111,46,99,38,38,40,101,46,112,117,115,104,40,114,40,123,116,121,112,101,58,34,99,104,105,108,100,76,105,115,116,34,44,116,97,114,103,101,116,58,110,44,97,100,100,101,100,78,111,100,101,115,58,91,118,93,44,110,101,120,116,83,105,98,108,105,110,103,58,118,46,110,101,120,116,83,105,98,108,105,110,103,44,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,58,118,46,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,125,41,41,44,95,43,43,41,58,104,46,112,117,115,104,40,123,106,58,120,44,108,58,112,125,41,41,44,120,43,43,41,44,103,38,38,103,33,61,61,109,91,120,93,38,38,40,102,91,112,61,108,40,103,41,93,124,124,40,102,91,112,93,61,33,48,44,45,49,61,61,61,40,112,61,100,40,109,44,103,44,120,41,41,63,111,46,99,38,38,40,101,46,112,117,115,104,40,114,40,123,116,121,112,101,58,34,99,104,105,108,100,76,105,115,116,34,44,116,97,114,103,101,116,58,105,46,110,111,100,101,44,114,101,109,111,118,101,100,78,111,100,101,115,58,91,103,93,44,110,101,120,116,83,105,98,108,105,110,103,58,98,91,79,43,49,93,44,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,58,98,91,79,45,49,93,125,41,41,44,95,45,45,41,58,104,46,112,117,115,104,40,123,106,58,112,44,108,58,79,125,41,41,44,79,43,43,41,41,59,104,38,38,97,40,104,44,110,44,109,44,98,44,95,41,125,118,97,114,32,117,59,114,101,116,117,114,110,32,99,40,110,44,105,41,44,117,125,102,117,110,99,116,105,111,110,32,117,40,116,44,101,41,123,118,97,114,32,110,61,33,48,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,40,114,41,123,118,97,114,32,105,61,123,110,111,100,101,58,114,125,59,114,101,116,117,114,110,33,101,46,97,124,124,51,33,61,61,114,46,110,111,100,101,84,121,112,101,38,38,56,33,61,61,114,46,110,111,100,101,84,121,112,101,63,40,101,46,98,38,38,110,38,38,49,61,61,61,114,46,110,111,100,101,84,121,112,101,38,38,40,105,46,98,61,104,40,114,46,97,116,116,114,105,98,117,116,101,115,44,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,101,46,102,38,38,33,101,46,102,91,110,46,110,97,109,101,93,124,124,40,116,91,110,46,110,97,109,101,93,61,118,40,114,44,110,41,41,44,116,125,41,44,123,125,41,41,44,110,38,38,40,101,46,99,124,124,101,46,97,124,124,101,46,98,38,38,101,46,103,41,38,38,40,105,46,99,61,102,40,114,46,99,104,105,108,100,78,111,100,101,115,44,116,41,41,44,110,61,101,46,103,41,58,105,46,97,61,114,46,110,111,100,101,86,97,108,117,101,44,105,125,40,116,41,125,102,117,110,99,116,105,111,110,32,108,40,116,41,123,116,114,121,123,114,101,116,117,114,110,32,116,46,105,100,124,124,40,116,46,109,111,95,105,100,61,116,46,109,111,95,105,100,124,124,103,43,43,41,125,99,97,116,99,104,40,101,41,123,116,114,121,123,114,101,116,117,114,110,32,116,46,110,111,100,101,86,97,108,117,101,125,99,97,116,99,104,40,110,41,123,114,101,116,117,114,110,32,103,43,43,125,125,125,102,117,110,99,116,105,111,110,32,102,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,91,93,44,114,61,48,59,114,60,116,46,108,101,110,103,116,104,59,114,43,43,41,110,91,114,93,61,101,40,116,91,114,93,44,114,44,116,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,104,40,116,44,101,44,110,41,123,102,111,114,40,118,97,114,32,114,61,48,59,114,60,116,46,108,101,110,103,116,104,59,114,43,43,41,110,61,101,40,110,44,116,91,114,93,44,114,44,116,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,100,40,116,44,101,44,110,44,114,41,123,102,111,114,40,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,105,102,40,40,114,63,116,91,110,93,91,114,93,58,116,91,110,93,41,61,61,61,101,41,114,101,116,117,114,110,32,110,59,114,101,116,117,114,110,45,49,125,101,46,95,112,101,114,105,111,100,61,51,48,44,101,46,112,114,111,116,111,116,121,112,101,61,123,111,98,115,101,114,118,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,111,114,40,118,97,114,32,114,61,123,98,58,33,33,40,101,46,97,116,116,114,105,98,117,116,101,115,124,124,101,46,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,124,124,101,46,97,116,116,114,105,98,117,116,101,79,108,100,86,97,108,117,101,41,44,99,58,33,33,101,46,99,104,105,108,100,76,105,115,116,44,103,58,33,33,101,46,115,117,98,116,114,101,101,44,97,58,33,40,33,101,46,99,104,97,114,97,99,116,101,114,68,97,116,97,38,38,33,101,46,99,104,97,114,97,99,116,101,114,68,97,116,97,79,108,100,86,97,108,117,101,41,125,44,111,61,116,104,105,115,46,105,44,97,61,48,59,97,60,111,46,108,101,110,103,116,104,59,97,43,43,41,111,91,97,93,46,115,61,61,61,116,38,38,111,46,115,112,108,105,99,101,40,97,44,49,41,59,101,46,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,38,38,40,114,46,102,61,104,40,101,46,97,116,116,114,105,98,117,116,101,70,105,108,116,101,114,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,91,101,93,61,33,48,44,116,125,41,44,123,125,41,41,44,111,46,112,117,115,104,40,123,115,58,116,44,111,58,105,40,116,44,114,41,125,41,44,116,104,105,115,46,104,124,124,110,40,116,104,105,115,41,125,44,116,97,107,101,82,101,99,111,114,100,115,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,91,93,44,101,61,116,104,105,115,46,105,44,110,61,48,59,110,60,101,46,108,101,110,103,116,104,59,110,43,43,41,101,91,110,93,46,111,40,116,41,59,114,101,116,117,114,110,32,116,125,44,100,105,115,99,111,110,110,101,99,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,61,91,93,44,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,104,41,44,116,104,105,115,46,104,61,110,117,108,108,125,125,59,118,97,114,32,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,105,34,41,59,112,46,115,116,121,108,101,46,116,111,112,61,48,59,118,97,114,32,118,61,40,112,61,34,110,117,108,108,34,33,61,112,46,97,116,116,114,105,98,117,116,101,115,46,115,116,121,108,101,46,118,97,108,117,101,41,63,111,58,97,44,103,61,49,59,114,101,116,117,114,110,32,101,125,40,118,111,105,100,32,48,41,41,125,44,52,50,49,49,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,110,40,101,41,125,41,40,48,44,40,102,117,110,99,116,105,111,110,40,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,40,116,41,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,46,102,114,111,109,125,102,117,110,99,116,105,111,110,32,110,40,116,41,123,114,101,116,117,114,110,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,46,116,111,125,102,117,110,99,116,105,111,110,32,114,40,116,41,123,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,125,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,118,111,105,100,32,48,33,61,61,116,125,102,117,110,99,116,105,111,110,32,111,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,114,101,116,117,114,110,32,116,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,116,104,105,115,91,116,93,38,38,40,116,104,105,115,91,116,93,61,33,48,41,125,41,44,123,125,41,125,102,117,110,99,116,105,111,110,32,115,40,116,44,101,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,47,101,41,42,101,125,102,117,110,99,116,105,111,110,32,99,40,116,44,101,41,123,118,97,114,32,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,44,114,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,105,61,114,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,111,61,109,40,114,41,59,114,101,116,117,114,110,47,119,101,98,107,105,116,46,42,67,104,114,111,109,101,46,42,77,111,98,105,108,101,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,38,38,40,111,46,120,61,48,41,44,101,63,110,46,116,111,112,43,111,46,121,45,105,46,99,108,105,101,110,116,84,111,112,58,110,46,108,101,102,116,43,111,46,120,45,105,46,99,108,105,101,110,116,76,101,102,116,125,102,117,110,99,116,105,111,110,32,117,40,116,41,123,114,101,116,117,114,110,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,116,38,38,33,105,115,78,97,78,40,116,41,38,38,105,115,70,105,110,105,116,101,40,116,41,125,102,117,110,99,116,105,111,110,32,108,40,116,44,101,44,110,41,123,110,62,48,38,38,40,112,40,116,44,101,41,44,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,118,40,116,44,101,41,125,41,44,110,41,41,125,102,117,110,99,116,105,111,110,32,102,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,77,97,116,104,46,109,105,110,40,116,44,49,48,48,41,44,48,41,125,102,117,110,99,116,105,111,110,32,104,40,116,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,116,58,91,116,93,125,102,117,110,99,116,105,111,110,32,100,40,116,41,123,116,61,83,116,114,105,110,103,40,116,41,59,118,97,114,32,101,61,116,46,115,112,108,105,116,40,34,46,34,41,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,62,49,63,101,91,49,93,46,108,101,110,103,116,104,58,48,125,102,117,110,99,116,105,111,110,32,112,40,116,44,101,41,123,116,46,99,108,97,115,115,76,105,115,116,38,38,33,47,92,115,47,46,116,101,115,116,40,101,41,63,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,101,41,58,116,46,99,108,97,115,115,78,97,109,101,43,61,34,32,34,43,101,125,102,117,110,99,116,105,111,110,32,118,40,116,44,101,41,123,116,46,99,108,97,115,115,76,105,115,116,38,38,33,47,92,115,47,46,116,101,115,116,40,101,41,63,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,101,41,58,116,46,99,108,97,115,115,78,97,109,101,61,116,46,99,108,97,115,115,78,97,109,101,46,114,101,112,108,97,99,101,40,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,98,41,34,43,101,46,115,112,108,105,116,40,34,32,34,41,46,106,111,105,110,40,34,124,34,41,43,34,40,92,92,98,124,36,41,34,44,34,103,105,34,41,44,34,32,34,41,125,102,117,110,99,116,105,111,110,32,103,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,63,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,101,41,58,110,101,119,32,82,101,103,69,120,112,40,34,92,92,98,34,43,101,43,34,92,92,98,34,41,46,116,101,115,116,40,116,46,99,108,97,115,115,78,97,109,101,41,125,102,117,110,99,116,105,111,110,32,109,40,116,41,123,118,97,114,32,101,61,118,111,105,100,32,48,33,61,61,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,44,110,61,34,67,83,83,49,67,111,109,112,97,116,34,61,61,61,40,116,46,99,111,109,112,97,116,77,111,100,101,124,124,34,34,41,44,114,61,101,63,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,58,110,63,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,58,116,46,98,111,100,121,46,115,99,114,111,108,108,76,101,102,116,44,105,61,101,63,119,105,110,100,111,119,46,112,97,103,101,89,79,102,102,115,101,116,58,110,63,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,58,116,46,98,111,100,121,46,115,99,114,111,108,108,84,111,112,59,114,101,116,117,114,110,123,120,58,114,44,121,58,105,125,125,102,117,110,99,116,105,111,110,32,98,40,41,123,114,101,116,117,114,110,32,119,105,110,100,111,119,46,110,97,118,105,103,97,116,111,114,46,112,111,105,110,116,101,114,69,110,97,98,108,101,100,63,123,115,116,97,114,116,58,34,112,111,105,110,116,101,114,100,111,119,110,34,44,109,111,118,101,58,34,112,111,105,110,116,101,114,109,111,118,101,34,44,101,110,100,58,34,112,111,105,110,116,101,114,117,112,34,125,58,119,105,110,100,111,119,46,110,97,118,105,103,97,116,111,114,46,109,115,80,111,105,110,116,101,114,69,110,97,98,108,101,100,63,123,115,116,97,114,116,58,34,77,83,80,111,105,110,116,101,114,68,111,119,110,34,44,109,111,118,101,58,34,77,83,80,111,105,110,116,101,114,77,111,118,101,34,44,101,110,100,58,34,77,83,80,111,105,110,116,101,114,85,112,34,125,58,123,115,116,97,114,116,58,34,109,111,117,115,101,100,111,119,110,32,116,111,117,99,104,115,116,97,114,116,34,44,109,111,118,101,58,34,109,111,117,115,101,109,111,118,101,32,116,111,117,99,104,109,111,118,101,34,44,101,110,100,58,34,109,111,117,115,101,117,112,32,116,111,117,99,104,101,110,100,34,125,125,102,117,110,99,116,105,111,110,32,121,40,41,123,118,97,114,32,116,61,33,49,59,116,114,121,123,118,97,114,32,101,61,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,34,112,97,115,115,105,118,101,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,116,61,33,48,125,125,41,59,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,116,101,115,116,34,44,110,117,108,108,44,101,41,125,99,97,116,99,104,40,110,41,123,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,119,40,41,123,114,101,116,117,114,110,32,119,105,110,100,111,119,46,67,83,83,38,38,67,83,83,46,115,117,112,112,111,114,116,115,38,38,67,83,83,46,115,117,112,112,111,114,116,115,40,34,116,111,117,99,104,45,97,99,116,105,111,110,34,44,34,110,111,110,101,34,41,125,102,117,110,99,116,105,111,110,32,95,40,116,44,101,41,123,114,101,116,117,114,110,32,49,48,48,47,40,101,45,116,41,125,102,117,110,99,116,105,111,110,32,120,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,49,48,48,42,101,47,40,116,91,110,43,49,93,45,116,91,110,93,41,125,102,117,110,99,116,105,111,110,32,79,40,116,44,101,41,123,114,101,116,117,114,110,32,120,40,116,44,116,91,48,93,60,48,63,101,43,77,97,116,104,46,97,98,115,40,116,91,48,93,41,58,101,45,116,91,48,93,44,48,41,125,102,117,110,99,116,105,111,110,32,83,40,116,44,101,41,123,114,101,116,117,114,110,32,101,42,40,116,91,49,93,45,116,91,48,93,41,47,49,48,48,43,116,91,48,93,125,102,117,110,99,116,105,111,110,32,107,40,116,44,101,41,123,118,97,114,32,110,61,49,59,119,104,105,108,101,40,116,62,61,101,91,110,93,41,110,43,61,49,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,67,40,116,44,101,44,110,41,123,105,102,40,110,62,61,116,46,115,108,105,99,101,40,45,49,41,91,48,93,41,114,101,116,117,114,110,32,49,48,48,59,118,97,114,32,114,61,107,40,110,44,116,41,44,105,61,116,91,114,45,49,93,44,111,61,116,91,114,93,44,97,61,101,91,114,45,49,93,44,115,61,101,91,114,93,59,114,101,116,117,114,110,32,97,43,79,40,91,105,44,111,93,44,110,41,47,95,40,97,44,115,41,125,102,117,110,99,116,105,111,110,32,80,40,116,44,101,44,110,41,123,105,102,40,110,62,61,49,48,48,41,114,101,116,117,114,110,32,116,46,115,108,105,99,101,40,45,49,41,91,48,93,59,118,97,114,32,114,61,107,40,110,44,101,41,44,105,61,116,91,114,45,49,93,44,111,61,116,91,114,93,44,97,61,101,91,114,45,49,93,44,115,61,101,91,114,93,59,114,101,116,117,114,110,32,83,40,91,105,44,111,93,44,40,110,45,97,41,42,95,40,97,44,115,41,41,125,102,117,110,99,116,105,111,110,32,84,40,116,44,101,44,110,44,114,41,123,105,102,40,49,48,48,61,61,61,114,41,114,101,116,117,114,110,32,114,59,118,97,114,32,105,61,107,40,114,44,116,41,44,111,61,116,91,105,45,49,93,44,97,61,116,91,105,93,59,114,101,116,117,114,110,32,110,63,114,45,111,62,40,97,45,111,41,47,50,63,97,58,111,58,101,91,105,45,49,93,63,116,91,105,45,49,93,43,115,40,114,45,116,91,105,45,49,93,44,101,91,105,45,49,93,41,58,114,125,116,46,80,105,112,115,77,111,100,101,61,118,111,105,100,32,48,44,102,117,110,99,116,105,111,110,40,116,41,123,116,91,34,82,97,110,103,101,34,93,61,34,114,97,110,103,101,34,44,116,91,34,83,116,101,112,115,34,93,61,34,115,116,101,112,115,34,44,116,91,34,80,111,115,105,116,105,111,110,115,34,93,61,34,112,111,115,105,116,105,111,110,115,34,44,116,91,34,67,111,117,110,116,34,93,61,34,99,111,117,110,116,34,44,116,91,34,86,97,108,117,101,115,34,93,61,34,118,97,108,117,101,115,34,125,40,116,46,80,105,112,115,77,111,100,101,124,124,40,116,46,80,105,112,115,77,111,100,101,61,123,125,41,41,44,116,46,80,105,112,115,84,121,112,101,61,118,111,105,100,32,48,44,102,117,110,99,116,105,111,110,40,116,41,123,116,91,116,91,34,78,111,110,101,34,93,61,45,49,93,61,34,78,111,110,101,34,44,116,91,116,91,34,78,111,86,97,108,117,101,34,93,61,48,93,61,34,78,111,86,97,108,117,101,34,44,116,91,116,91,34,76,97,114,103,101,86,97,108,117,101,34,93,61,49,93,61,34,76,97,114,103,101,86,97,108,117,101,34,44,116,91,116,91,34,83,109,97,108,108,86,97,108,117,101,34,93,61,50,93,61,34,83,109,97,108,108,86,97,108,117,101,34,125,40,116,46,80,105,112,115,84,121,112,101,124,124,40,116,46,80,105,112,115,84,121,112,101,61,123,125,41,41,59,118,97,114,32,106,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,44,101,44,110,41,123,118,97,114,32,114,59,116,104,105,115,46,120,80,99,116,61,91,93,44,116,104,105,115,46,120,86,97,108,61,91,93,44,116,104,105,115,46,120,83,116,101,112,115,61,91,93,44,116,104,105,115,46,120,78,117,109,83,116,101,112,115,61,91,93,44,116,104,105,115,46,120,72,105,103,104,101,115,116,67,111,109,112,108,101,116,101,83,116,101,112,61,91,93,44,116,104,105,115,46,120,83,116,101,112,115,61,91,110,124,124,33,49,93,44,116,104,105,115,46,120,78,117,109,83,116,101,112,115,61,91,33,49,93,44,116,104,105,115,46,115,110,97,112,61,101,59,118,97,114,32,105,61,91,93,59,102,111,114,40,79,98,106,101,99,116,46,107,101,121,115,40,116,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,105,46,112,117,115,104,40,91,104,40,116,91,101,93,41,44,101,93,41,125,41,41,44,105,46,115,111,114,116,40,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,91,48,93,45,101,91,48,93,91,48,93,125,41,41,44,114,61,48,59,114,60,105,46,108,101,110,103,116,104,59,114,43,43,41,116,104,105,115,46,104,97,110,100,108,101,69,110,116,114,121,80,111,105,110,116,40,105,91,114,93,91,49,93,44,105,91,114,93,91,48,93,41,59,102,111,114,40,116,104,105,115,46,120,78,117,109,83,116,101,112,115,61,116,104,105,115,46,120,83,116,101,112,115,46,115,108,105,99,101,40,48,41,44,114,61,48,59,114,60,116,104,105,115,46,120,78,117,109,83,116,101,112,115,46,108,101,110,103,116,104,59,114,43,43,41,116,104,105,115,46,104,97,110,100,108,101,83,116,101,112,80,111,105,110,116,40,114,44,116,104,105,115,46,120,78,117,109,83,116,101,112,115,91,114,93,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,68,105,115,116,97,110,99,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,91,93,59,102,111,114,40,101,61,48,59,101,60,116,104,105,115,46,120,78,117,109,83,116,101,112,115,46,108,101,110,103,116,104,45,49,59,101,43,43,41,123,118,97,114,32,114,61,116,104,105,115,46,120,78,117,109,83,116,101,112,115,91,101,93,59,105,102,40,114,38,38,116,47,114,37,49,33,61,61,48,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,108,105,109,105,116,39,44,32,39,109,97,114,103,105,110,39,32,97,110,100,32,39,112,97,100,100,105,110,103,39,32,111,102,32,34,43,116,104,105,115,46,120,80,99,116,91,101,93,43,34,37,32,114,97,110,103,101,32,109,117,115,116,32,98,101,32,100,105,118,105,115,105,98,108,101,32,98,121,32,115,116,101,112,46,34,41,59,110,91,101,93,61,120,40,116,104,105,115,46,120,86,97,108,44,116,44,101,41,125,114,101,116,117,114,110,32,110,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,65,98,115,111,108,117,116,101,68,105,115,116,97,110,99,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,61,48,59,105,102,40,116,60,116,104,105,115,46,120,80,99,116,91,116,104,105,115,46,120,80,99,116,46,108,101,110,103,116,104,45,49,93,41,119,104,105,108,101,40,116,62,116,104,105,115,46,120,80,99,116,91,105,43,49,93,41,105,43,43,59,101,108,115,101,32,116,61,61,61,116,104,105,115,46,120,80,99,116,91,116,104,105,115,46,120,80,99,116,46,108,101,110,103,116,104,45,49,93,38,38,40,105,61,116,104,105,115,46,120,80,99,116,46,108,101,110,103,116,104,45,50,41,59,110,124,124,116,33,61,61,116,104,105,115,46,120,80,99,116,91,105,43,49,93,124,124,105,43,43,44,110,117,108,108,61,61,61,101,38,38,40,101,61,91,93,41,59,118,97,114,32,111,61,49,44,97,61,101,91,105,93,44,115,61,48,44,99,61,48,44,117,61,48,44,108,61,48,59,114,61,110,63,40,116,45,116,104,105,115,46,120,80,99,116,91,105,93,41,47,40,116,104,105,115,46,120,80,99,116,91,105,43,49,93,45,116,104,105,115,46,120,80,99,116,91,105,93,41,58,40,116,104,105,115,46,120,80,99,116,91,105,43,49,93,45,116,41,47,40,116,104,105,115,46,120,80,99,116,91,105,43,49,93,45,116,104,105,115,46,120,80,99,116,91,105,93,41,59,119,104,105,108,101,40,97,62,48,41,115,61,116,104,105,115,46,120,80,99,116,91,105,43,49,43,108,93,45,116,104,105,115,46,120,80,99,116,91,105,43,108,93,44,101,91,105,43,108,93,42,111,43,49,48,48,45,49,48,48,42,114,62,49,48,48,63,40,99,61,115,42,114,44,111,61,40,97,45,49,48,48,42,114,41,47,101,91,105,43,108,93,44,114,61,49,41,58,40,99,61,101,91,105,43,108,93,42,115,47,49,48,48,42,111,44,111,61,48,41,44,110,63,40,117,45,61,99,44,116,104,105,115,46,120,80,99,116,46,108,101,110,103,116,104,43,108,62,61,49,38,38,108,45,45,41,58,40,117,43,61,99,44,116,104,105,115,46,120,80,99,116,46,108,101,110,103,116,104,45,108,62,61,49,38,38,108,43,43,41,44,97,61,101,91,105,43,108,93,42,111,59,114,101,116,117,114,110,32,116,43,117,125,44,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,101,112,112,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,67,40,116,104,105,115,46,120,86,97,108,44,116,104,105,115,46,120,80,99,116,44,116,41,44,116,125,44,116,46,112,114,111,116,111,116,121,112,101,46,102,114,111,109,83,116,101,112,112,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,80,40,116,104,105,115,46,120,86,97,108,44,116,104,105,115,46,120,80,99,116,44,116,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,83,116,101,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,84,40,116,104,105,115,46,120,80,99,116,44,116,104,105,115,46,120,83,116,101,112,115,44,116,104,105,115,46,115,110,97,112,44,116,41,44,116,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,68,101,102,97,117,108,116,83,116,101,112,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,107,40,116,44,116,104,105,115,46,120,80,99,116,41,59,114,101,116,117,114,110,40,49,48,48,61,61,61,116,124,124,101,38,38,116,61,61,61,116,104,105,115,46,120,80,99,116,91,114,45,49,93,41,38,38,40,114,61,77,97,116,104,46,109,97,120,40,114,45,49,44,49,41,41,44,40,116,104,105,115,46,120,86,97,108,91,114,93,45,116,104,105,115,46,120,86,97,108,91,114,45,49,93,41,47,110,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,78,101,97,114,98,121,83,116,101,112,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,107,40,116,44,116,104,105,115,46,120,80,99,116,41,59,114,101,116,117,114,110,123,115,116,101,112,66,101,102,111,114,101,58,123,115,116,97,114,116,86,97,108,117,101,58,116,104,105,115,46,120,86,97,108,91,101,45,50,93,44,115,116,101,112,58,116,104,105,115,46,120,78,117,109,83,116,101,112,115,91,101,45,50,93,44,104,105,103,104,101,115,116,83,116,101,112,58,116,104,105,115,46,120,72,105,103,104,101,115,116,67,111,109,112,108,101,116,101,83,116,101,112,91,101,45,50,93,125,44,116,104,105,115,83,116,101,112,58,123,115,116,97,114,116,86,97,108,117,101,58,116,104,105,115,46,120,86,97,108,91,101,45,49,93,44,115,116,101,112,58,116,104,105,115,46,120,78,117,109,83,116,101,112,115,91,101,45,49,93,44,104,105,103,104,101,115,116,83,116,101,112,58,116,104,105,115,46,120,72,105,103,104,101,115,116,67,111,109,112,108,101,116,101,83,116,101,112,91,101,45,49,93,125,44,115,116,101,112,65,102,116,101,114,58,123,115,116,97,114,116,86,97,108,117,101,58,116,104,105,115,46,120,86,97,108,91,101,93,44,115,116,101,112,58,116,104,105,115,46,120,78,117,109,83,116,101,112,115,91,101,93,44,104,105,103,104,101,115,116,83,116,101,112,58,116,104,105,115,46,120,72,105,103,104,101,115,116,67,111,109,112,108,101,116,101,83,116,101,112,91,101,93,125,125,125,44,116,46,112,114,111,116,111,116,121,112,101,46,99,111,117,110,116,83,116,101,112,68,101,99,105,109,97,108,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,120,78,117,109,83,116,101,112,115,46,109,97,112,40,100,41,59,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,110,117,108,108,44,116,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,99,111,110,118,101,114,116,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,103,101,116,83,116,101,112,40,116,104,105,115,46,116,111,83,116,101,112,112,105,110,103,40,116,41,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,104,97,110,100,108,101,69,110,116,114,121,80,111,105,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,59,105,102,40,110,61,34,109,105,110,34,61,61,61,116,63,48,58,34,109,97,120,34,61,61,61,116,63,49,48,48,58,112,97,114,115,101,70,108,111,97,116,40,116,41,44,33,117,40,110,41,124,124,33,117,40,101,91,48,93,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,114,97,110,103,101,39,32,118,97,108,117,101,32,105,115,110,39,116,32,110,117,109,101,114,105,99,46,34,41,59,116,104,105,115,46,120,80,99,116,46,112,117,115,104,40,110,41,44,116,104,105,115,46,120,86,97,108,46,112,117,115,104,40,101,91,48,93,41,59,118,97,114,32,114,61,78,117,109,98,101,114,40,101,91,49,93,41,59,110,63,116,104,105,115,46,120,83,116,101,112,115,46,112,117,115,104,40,33,105,115,78,97,78,40,114,41,38,38,114,41,58,105,115,78,97,78,40,114,41,124,124,40,116,104,105,115,46,120,83,116,101,112,115,91,48,93,61,114,41,44,116,104,105,115,46,120,72,105,103,104,101,115,116,67,111,109,112,108,101,116,101,83,116,101,112,46,112,117,115,104,40,48,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,104,97,110,100,108,101,83,116,101,112,80,111,105,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,101,41,105,102,40,116,104,105,115,46,120,86,97,108,91,116,93,33,61,61,116,104,105,115,46,120,86,97,108,91,116,43,49,93,41,123,116,104,105,115,46,120,83,116,101,112,115,91,116,93,61,120,40,91,116,104,105,115,46,120,86,97,108,91,116,93,44,116,104,105,115,46,120,86,97,108,91,116,43,49,93,93,44,101,44,48,41,47,95,40,116,104,105,115,46,120,80,99,116,91,116,93,44,116,104,105,115,46,120,80,99,116,91,116,43,49,93,41,59,118,97,114,32,110,61,40,116,104,105,115,46,120,86,97,108,91,116,43,49,93,45,116,104,105,115,46,120,86,97,108,91,116,93,41,47,116,104,105,115,46,120,78,117,109,83,116,101,112,115,91,116,93,44,114,61,77,97,116,104,46,99,101,105,108,40,78,117,109,98,101,114,40,110,46,116,111,70,105,120,101,100,40,51,41,41,45,49,41,44,105,61,116,104,105,115,46,120,86,97,108,91,116,93,43,116,104,105,115,46,120,78,117,109,83,116,101,112,115,91,116,93,42,114,59,116,104,105,115,46,120,72,105,103,104,101,115,116,67,111,109,112,108,101,116,101,83,116,101,112,91,116,93,61,105,125,101,108,115,101,32,116,104,105,115,46,120,83,116,101,112,115,91,116,93,61,116,104,105,115,46,120,72,105,103,104,101,115,116,67,111,109,112,108,101,116,101,83,116,101,112,91,116,93,61,116,104,105,115,46,120,86,97,108,91,116,93,125,44,116,125,40,41,44,69,61,123,116,111,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,34,34,58,116,46,116,111,70,105,120,101,100,40,50,41,125,44,102,114,111,109,58,78,117,109,98,101,114,125,44,68,61,123,116,97,114,103,101,116,58,34,116,97,114,103,101,116,34,44,98,97,115,101,58,34,98,97,115,101,34,44,111,114,105,103,105,110,58,34,111,114,105,103,105,110,34,44,104,97,110,100,108,101,58,34,104,97,110,100,108,101,34,44,104,97,110,100,108,101,76,111,119,101,114,58,34,104,97,110,100,108,101,45,108,111,119,101,114,34,44,104,97,110,100,108,101,85,112,112,101,114,58,34,104,97,110,100,108,101,45,117,112,112,101,114,34,44,116,111,117,99,104,65,114,101,97,58,34,116,111,117,99,104,45,97,114,101,97,34,44,104,111,114,105,122,111,110,116,97,108,58,34,104,111,114,105,122,111,110,116,97,108,34,44,118,101,114,116,105,99,97,108,58,34,118,101,114,116,105,99,97,108,34,44,98,97,99,107,103,114,111,117,110,100,58,34,98,97,99,107,103,114,111,117,110,100,34,44,99,111,110,110,101,99,116,58,34,99,111,110,110,101,99,116,34,44,99,111,110,110,101,99,116,115,58,34,99,111,110,110,101,99,116,115,34,44,108,116,114,58,34,108,116,114,34,44,114,116,108,58,34,114,116,108,34,44,116,101,120,116,68,105,114,101,99,116,105,111,110,76,116,114,58,34,116,120,116,45,100,105,114,45,108,116,114,34,44,116,101,120,116,68,105,114,101,99,116,105,111,110,82,116,108,58,34,116,120,116,45,100,105,114,45,114,116,108,34,44,100,114,97,103,103,97,98,108,101,58,34,100,114,97,103,103,97,98,108,101,34,44,100,114,97,103,58,34,115,116,97,116,101,45,100,114,97,103,34,44,116,97,112,58,34,115,116,97,116,101,45,116,97,112,34,44,97,99,116,105,118,101,58,34,97,99,116,105,118,101,34,44,116,111,111,108,116,105,112,58,34,116,111,111,108,116,105,112,34,44,112,105,112,115,58,34,112,105,112,115,34,44,112,105,112,115,72,111,114,105,122,111,110,116,97,108,58,34,112,105,112,115,45,104,111,114,105,122,111,110,116,97,108,34,44,112,105,112,115,86,101,114,116,105,99,97,108,58,34,112,105,112,115,45,118,101,114,116,105,99,97,108,34,44,109,97,114,107,101,114,58,34,109,97,114,107,101,114,34,44,109,97,114,107,101,114,72,111,114,105,122,111,110,116,97,108,58,34,109,97,114,107,101,114,45,104,111,114,105,122,111,110,116,97,108,34,44,109,97,114,107,101,114,86,101,114,116,105,99,97,108,58,34,109,97,114,107,101,114,45,118,101,114,116,105,99,97,108,34,44,109,97,114,107,101,114,78,111,114,109,97,108,58,34,109,97,114,107,101,114,45,110,111,114,109,97,108,34,44,109,97,114,107,101,114,76,97,114,103,101,58,34,109,97,114,107,101,114,45,108,97,114,103,101,34,44,109,97,114,107,101,114,83,117,98,58,34,109,97,114,107,101,114,45,115,117,98,34,44,118,97,108,117,101,58,34,118,97,108,117,101,34,44,118,97,108,117,101,72,111,114,105,122,111,110,116,97,108,58,34,118,97,108,117,101,45,104,111,114,105,122,111,110,116,97,108,34,44,118,97,108,117,101,86,101,114,116,105,99,97,108,58,34,118,97,108,117,101,45,118,101,114,116,105,99,97,108,34,44,118,97,108,117,101,78,111,114,109,97,108,58,34,118,97,108,117,101,45,110,111,114,109,97,108,34,44,118,97,108,117,101,76,97,114,103,101,58,34,118,97,108,117,101,45,108,97,114,103,101,34,44,118,97,108,117,101,83,117,98,58,34,118,97,108,117,101,45,115,117,98,34,125,44,65,61,123,116,111,111,108,116,105,112,115,58,34,46,95,95,116,111,111,108,116,105,112,115,34,44,97,114,105,97,58,34,46,95,95,97,114,105,97,34,125,59,102,117,110,99,116,105,111,110,32,76,40,116,44,101,41,123,105,102,40,33,117,40,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,115,116,101,112,39,32,105,115,32,110,111,116,32,110,117,109,101,114,105,99,46,34,41,59,116,46,115,105,110,103,108,101,83,116,101,112,61,101,125,102,117,110,99,116,105,111,110,32,73,40,116,44,101,41,123,105,102,40,33,117,40,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,107,101,121,98,111,97,114,100,80,97,103,101,77,117,108,116,105,112,108,105,101,114,39,32,105,115,32,110,111,116,32,110,117,109,101,114,105,99,46,34,41,59,116,46,107,101,121,98,111,97,114,100,80,97,103,101,77,117,108,116,105,112,108,105,101,114,61,101,125,102,117,110,99,116,105,111,110,32,77,40,116,44,101,41,123,105,102,40,33,117,40,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,107,101,121,98,111,97,114,100,68,101,102,97,117,108,116,83,116,101,112,39,32,105,115,32,110,111,116,32,110,117,109,101,114,105,99,46,34,41,59,116,46,107,101,121,98,111,97,114,100,68,101,102,97,117,108,116,83,116,101,112,61,101,125,102,117,110,99,116,105,111,110,32,36,40,116,44,101,41,123,105,102,40,34,111,98,106,101,99,116,34,33,61,61,116,121,112,101,111,102,32,101,124,124,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,114,97,110,103,101,39,32,105,115,32,110,111,116,32,97,110,32,111,98,106,101,99,116,46,34,41,59,105,102,40,118,111,105,100,32,48,61,61,61,101,46,109,105,110,124,124,118,111,105,100,32,48,61,61,61,101,46,109,97,120,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,77,105,115,115,105,110,103,32,39,109,105,110,39,32,111,114,32,39,109,97,120,39,32,105,110,32,39,114,97,110,103,101,39,46,34,41,59,105,102,40,101,46,109,105,110,61,61,61,101,46,109,97,120,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,114,97,110,103,101,39,32,39,109,105,110,39,32,97,110,100,32,39,109,97,120,39,32,99,97,110,110,111,116,32,98,101,32,101,113,117,97,108,46,34,41,59,116,46,115,112,101,99,116,114,117,109,61,110,101,119,32,106,40,101,44,116,46,115,110,97,112,124,124,33,49,44,116,46,115,105,110,103,108,101,83,116,101,112,41,125,102,117,110,99,116,105,111,110,32,70,40,116,44,101,41,123,105,102,40,101,61,104,40,101,41,44,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,124,124,33,101,46,108,101,110,103,116,104,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,115,116,97,114,116,39,32,111,112,116,105,111,110,32,105,115,32,105,110,99,111,114,114,101,99,116,46,34,41,59,116,46,104,97,110,100,108,101,115,61,101,46,108,101,110,103,116,104,44,116,46,115,116,97,114,116,61,101,125,102,117,110,99,116,105,111,110,32,82,40,116,44,101,41,123,105,102,40,34,98,111,111,108,101,97,110,34,33,61,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,110,111,85,105,83,108,105,100,101,114,58,32,39,115,110,97,112,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,97,32,98,111,111,108,101,97,110,46,34,41,59,116,46,115,110,97,112,61,101,125,102,117,110,99,116,105,111,110,32,78,40,116,44,101,41,123,105,102,40,34,98,111,111,108,101,97,110,34,33,61,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,110,111,85,105,83,108,105,100,101,114,58,32,39,97,110,105,109,97,116,101,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,97,32,98,111,111,108,101,97,110,46,34,41,59,116,46,97,110,105,109,97,116,101,61,101,125,102,117,110,99,116,105,111,110,32,66,40,116,44,101,41,123,105,102,40,34,110,117,109,98,101,114,34,33,61,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,110,111,85,105,83,108,105,100,101,114,58,32,39,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,97,32,110,117,109,98,101,114,46,34,41,59,116,46,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,61,101,125,102,117,110,99,116,105,111,110,32,122,40,116,44,101,41,123,118,97,114,32,110,44,114,61,91,33,49,93,59,105,102,40,34,108,111,119,101,114,34,61,61,61,101,63,101,61,91,33,48,44,33,49,93,58,34,117,112,112,101,114,34,61,61,61,101,38,38,40,101,61,91,33,49,44,33,48,93,41,44,33,48,61,61,61,101,124,124,33,49,61,61,61,101,41,123,102,111,114,40,110,61,49,59,110,60,116,46,104,97,110,100,108,101,115,59,110,43,43,41,114,46,112,117,115,104,40,101,41,59,114,46,112,117,115,104,40,33,49,41,125,101,108,115,101,123,105,102,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,124,124,33,101,46,108,101,110,103,116,104,124,124,101,46,108,101,110,103,116,104,33,61,61,116,46,104,97,110,100,108,101,115,43,49,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,99,111,110,110,101,99,116,39,32,111,112,116,105,111,110,32,100,111,101,115,110,39,116,32,109,97,116,99,104,32,104,97,110,100,108,101,32,99,111,117,110,116,46,34,41,59,114,61,101,125,116,46,99,111,110,110,101,99,116,61,114,125,102,117,110,99,116,105,111,110,32,86,40,116,44,101,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,104,111,114,105,122,111,110,116,97,108,34,58,116,46,111,114,116,61,48,59,98,114,101,97,107,59,99,97,115,101,34,118,101,114,116,105,99,97,108,34,58,116,46,111,114,116,61,49,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,111,114,105,101,110,116,97,116,105,111,110,39,32,111,112,116,105,111,110,32,105,115,32,105,110,118,97,108,105,100,46,34,41,125,125,102,117,110,99,116,105,111,110,32,72,40,116,44,101,41,123,105,102,40,33,117,40,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,109,97,114,103,105,110,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,110,117,109,101,114,105,99,46,34,41,59,48,33,61,61,101,38,38,40,116,46,109,97,114,103,105,110,61,116,46,115,112,101,99,116,114,117,109,46,103,101,116,68,105,115,116,97,110,99,101,40,101,41,41,125,102,117,110,99,116,105,111,110,32,85,40,116,44,101,41,123,105,102,40,33,117,40,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,108,105,109,105,116,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,110,117,109,101,114,105,99,46,34,41,59,105,102,40,116,46,108,105,109,105,116,61,116,46,115,112,101,99,116,114,117,109,46,103,101,116,68,105,115,116,97,110,99,101,40,101,41,44,33,116,46,108,105,109,105,116,124,124,116,46,104,97,110,100,108,101,115,60,50,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,108,105,109,105,116,39,32,111,112,116,105,111,110,32,105,115,32,111,110,108,121,32,115,117,112,112,111,114,116,101,100,32,111,110,32,108,105,110,101,97,114,32,115,108,105,100,101,114,115,32,119,105,116,104,32,50,32,111,114,32,109,111,114,101,32,104,97,110,100,108,101,115,46,34,41,125,102,117,110,99,116,105,111,110,32,87,40,116,44,101,41,123,118,97,114,32,110,59,105,102,40,33,117,40,101,41,38,38,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,112,97,100,100,105,110,103,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,110,117,109,101,114,105,99,32,111,114,32,97,114,114,97,121,32,111,102,32,101,120,97,99,116,108,121,32,50,32,110,117,109,98,101,114,115,46,34,41,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,38,38,50,33,61,61,101,46,108,101,110,103,116,104,38,38,33,117,40,101,91,48,93,41,38,38,33,117,40,101,91,49,93,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,112,97,100,100,105,110,103,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,110,117,109,101,114,105,99,32,111,114,32,97,114,114,97,121,32,111,102,32,101,120,97,99,116,108,121,32,50,32,110,117,109,98,101,114,115,46,34,41,59,105,102,40,48,33,61,61,101,41,123,102,111,114,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,124,124,40,101,61,91,101,44,101,93,41,44,116,46,112,97,100,100,105,110,103,61,91,116,46,115,112,101,99,116,114,117,109,46,103,101,116,68,105,115,116,97,110,99,101,40,101,91,48,93,41,44,116,46,115,112,101,99,116,114,117,109,46,103,101,116,68,105,115,116,97,110,99,101,40,101,91,49,93,41,93,44,110,61,48,59,110,60,116,46,115,112,101,99,116,114,117,109,46,120,78,117,109,83,116,101,112,115,46,108,101,110,103,116,104,45,49,59,110,43,43,41,105,102,40,116,46,112,97,100,100,105,110,103,91,48,93,91,110,93,60,48,124,124,116,46,112,97,100,100,105,110,103,91,49,93,91,110,93,60,48,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,112,97,100,100,105,110,103,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,97,32,112,111,115,105,116,105,118,101,32,110,117,109,98,101,114,40,115,41,46,34,41,59,118,97,114,32,114,61,101,91,48,93,43,101,91,49,93,44,105,61,116,46,115,112,101,99,116,114,117,109,46,120,86,97,108,91,48,93,44,111,61,116,46,115,112,101,99,116,114,117,109,46,120,86,97,108,91,116,46,115,112,101,99,116,114,117,109,46,120,86,97,108,46,108,101,110,103,116,104,45,49,93,59,105,102,40,114,47,40,111,45,105,41,62,49,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,112,97,100,100,105,110,103,39,32,111,112,116,105,111,110,32,109,117,115,116,32,110,111,116,32,101,120,99,101,101,100,32,49,48,48,37,32,111,102,32,116,104,101,32,114,97,110,103,101,46,34,41,125,125,102,117,110,99,116,105,111,110,32,71,40,116,44,101,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,108,116,114,34,58,116,46,100,105,114,61,48,59,98,114,101,97,107,59,99,97,115,101,34,114,116,108,34,58,116,46,100,105,114,61,49,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,100,105,114,101,99,116,105,111,110,39,32,111,112,116,105,111,110,32,119,97,115,32,110,111,116,32,114,101,99,111,103,110,105,122,101,100,46,34,41,125,125,102,117,110,99,116,105,111,110,32,113,40,116,44,101,41,123,105,102,40,34,115,116,114,105,110,103,34,33,61,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,110,111,85,105,83,108,105,100,101,114,58,32,39,98,101,104,97,118,105,111,117,114,39,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,99,111,110,116,97,105,110,105,110,103,32,111,112,116,105,111,110,115,46,34,41,59,118,97,114,32,110,61,101,46,105,110,100,101,120,79,102,40,34,116,97,112,34,41,62,61,48,44,114,61,101,46,105,110,100,101,120,79,102,40,34,100,114,97,103,34,41,62,61,48,44,105,61,101,46,105,110,100,101,120,79,102,40,34,102,105,120,101,100,34,41,62,61,48,44,111,61,101,46,105,110,100,101,120,79,102,40,34,115,110,97,112,34,41,62,61,48,44,97,61,101,46,105,110,100,101,120,79,102,40,34,104,111,118,101,114,34,41,62,61,48,44,115,61,101,46,105,110,100,101,120,79,102,40,34,117,110,99,111,110,115,116,114,97,105,110,101,100,34,41,62,61,48,59,105,102,40,105,41,123,105,102,40,50,33,61,61,116,46,104,97,110,100,108,101,115,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,102,105,120,101,100,39,32,98,101,104,97,118,105,111,117,114,32,109,117,115,116,32,98,101,32,117,115,101,100,32,119,105,116,104,32,50,32,104,97,110,100,108,101,115,34,41,59,72,40,116,44,116,46,115,116,97,114,116,91,49,93,45,116,46,115,116,97,114,116,91,48,93,41,125,105,102,40,115,38,38,40,116,46,109,97,114,103,105,110,124,124,116,46,108,105,109,105,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,117,110,99,111,110,115,116,114,97,105,110,101,100,39,32,98,101,104,97,118,105,111,117,114,32,99,97,110,110,111,116,32,98,101,32,117,115,101,100,32,119,105,116,104,32,109,97,114,103,105,110,32,111,114,32,108,105,109,105,116,34,41,59,116,46,101,118,101,110,116,115,61,123,116,97,112,58,110,124,124,111,44,100,114,97,103,58,114,44,102,105,120,101,100,58,105,44,115,110,97,112,58,111,44,104,111,118,101,114,58,97,44,117,110,99,111,110,115,116,114,97,105,110,101,100,58,115,125,125,102,117,110,99,116,105,111,110,32,89,40,116,44,101,41,123,105,102,40,33,49,33,61,61,101,41,105,102,40,33,48,61,61,61,101,124,124,110,40,101,41,41,123,116,46,116,111,111,108,116,105,112,115,61,91,93,59,102,111,114,40,118,97,114,32,114,61,48,59,114,60,116,46,104,97,110,100,108,101,115,59,114,43,43,41,116,46,116,111,111,108,116,105,112,115,46,112,117,115,104,40,101,41,125,101,108,115,101,123,105,102,40,101,61,104,40,101,41,44,101,46,108,101,110,103,116,104,33,61,61,116,46,104,97,110,100,108,101,115,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,109,117,115,116,32,112,97,115,115,32,97,32,102,111,114,109,97,116,116,101,114,32,102,111,114,32,97,108,108,32,104,97,110,100,108,101,115,46,34,41,59,101,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,98,111,111,108,101,97,110,34,33,61,61,116,121,112,101,111,102,32,116,38,38,33,110,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,116,111,111,108,116,105,112,115,39,32,109,117,115,116,32,98,101,32,112,97,115,115,101,100,32,97,32,102,111,114,109,97,116,116,101,114,32,111,114,32,39,102,97,108,115,101,39,46,34,41,125,41,41,44,116,46,116,111,111,108,116,105,112,115,61,101,125,125,102,117,110,99,116,105,111,110,32,75,40,116,44,101,41,123,105,102,40,33,110,40,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,97,114,105,97,70,111,114,109,97,116,39,32,114,101,113,117,105,114,101,115,32,39,116,111,39,32,109,101,116,104,111,100,46,34,41,59,116,46,97,114,105,97,70,111,114,109,97,116,61,101,125,102,117,110,99,116,105,111,110,32,88,40,116,44,110,41,123,105,102,40,33,101,40,110,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,102,111,114,109,97,116,39,32,114,101,113,117,105,114,101,115,32,39,116,111,39,32,97,110,100,32,39,102,114,111,109,39,32,109,101,116,104,111,100,115,46,34,41,59,116,46,102,111,114,109,97,116,61,110,125,102,117,110,99,116,105,111,110,32,90,40,116,44,101,41,123,105,102,40,34,98,111,111,108,101,97,110,34,33,61,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,110,111,85,105,83,108,105,100,101,114,58,32,39,107,101,121,98,111,97,114,100,83,117,112,112,111,114,116,39,32,111,112,116,105,111,110,32,109,117,115,116,32,98,101,32,97,32,98,111,111,108,101,97,110,46,34,41,59,116,46,107,101,121,98,111,97,114,100,83,117,112,112,111,114,116,61,101,125,102,117,110,99,116,105,111,110,32,74,40,116,44,101,41,123,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,61,101,125,102,117,110,99,116,105,111,110,32,81,40,116,44,101,41,123,105,102,40,34,115,116,114,105,110,103,34,33,61,61,116,121,112,101,111,102,32,101,38,38,33,49,33,61,61,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,99,115,115,80,114,101,102,105,120,39,32,109,117,115,116,32,98,101,32,97,32,115,116,114,105,110,103,32,111,114,32,96,102,97,108,115,101,96,46,34,41,59,116,46,99,115,115,80,114,101,102,105,120,61,101,125,102,117,110,99,116,105,111,110,32,116,116,40,116,44,101,41,123,105,102,40,34,111,98,106,101,99,116,34,33,61,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,110,111,85,105,83,108,105,100,101,114,58,32,39,99,115,115,67,108,97,115,115,101,115,39,32,109,117,115,116,32,98,101,32,97,110,32,111,98,106,101,99,116,46,34,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,46,99,115,115,80,114,101,102,105,120,63,40,116,46,99,115,115,67,108,97,115,115,101,115,61,123,125,44,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,116,46,99,115,115,67,108,97,115,115,101,115,91,110,93,61,116,46,99,115,115,80,114,101,102,105,120,43,101,91,110,93,125,41,41,41,58,116,46,99,115,115,67,108,97,115,115,101,115,61,101,125,102,117,110,99,116,105,111,110,32,101,116,40,116,41,123,118,97,114,32,101,61,123,109,97,114,103,105,110,58,110,117,108,108,44,108,105,109,105,116,58,110,117,108,108,44,112,97,100,100,105,110,103,58,110,117,108,108,44,97,110,105,109,97,116,101,58,33,48,44,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,58,51,48,48,44,97,114,105,97,70,111,114,109,97,116,58,69,44,102,111,114,109,97,116,58,69,125,44,110,61,123,115,116,101,112,58,123,114,58,33,49,44,116,58,76,125,44,107,101,121,98,111,97,114,100,80,97,103,101,77,117,108,116,105,112,108,105,101,114,58,123,114,58,33,49,44,116,58,73,125,44,107,101,121,98,111,97,114,100,68,101,102,97,117,108,116,83,116,101,112,58,123,114,58,33,49,44,116,58,77,125,44,115,116,97,114,116,58,123,114,58,33,48,44,116,58,70,125,44,99,111,110,110,101,99,116,58,123,114,58,33,48,44,116,58,122,125,44,100,105,114,101,99,116,105,111,110,58,123,114,58,33,48,44,116,58,71,125,44,115,110,97,112,58,123,114,58,33,49,44,116,58,82,125,44,97,110,105,109,97,116,101,58,123,114,58,33,49,44,116,58,78,125,44,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,58,123,114,58,33,49,44,116,58,66,125,44,114,97,110,103,101,58,123,114,58,33,48,44,116,58,36,125,44,111,114,105,101,110,116,97,116,105,111,110,58,123,114,58,33,49,44,116,58,86,125,44,109,97,114,103,105,110,58,123,114,58,33,49,44,116,58,72,125,44,108,105,109,105,116,58,123,114,58,33,49,44,116,58,85,125,44,112,97,100,100,105,110,103,58,123,114,58,33,49,44,116,58,87,125,44,98,101,104,97,118,105,111,117,114,58,123,114,58,33,48,44,116,58,113,125,44,97,114,105,97,70,111,114,109,97,116,58,123,114,58,33,49,44,116,58,75,125,44,102,111,114,109,97,116,58,123,114,58,33,49,44,116,58,88,125,44,116,111,111,108,116,105,112,115,58,123,114,58,33,49,44,116,58,89,125,44,107,101,121,98,111,97,114,100,83,117,112,112,111,114,116,58,123,114,58,33,48,44,116,58,90,125,44,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,123,114,58,33,49,44,116,58,74,125,44,99,115,115,80,114,101,102,105,120,58,123,114,58,33,48,44,116,58,81,125,44,99,115,115,67,108,97,115,115,101,115,58,123,114,58,33,48,44,116,58,116,116,125,125,44,114,61,123,99,111,110,110,101,99,116,58,33,49,44,100,105,114,101,99,116,105,111,110,58,34,108,116,114,34,44,98,101,104,97,118,105,111,117,114,58,34,116,97,112,34,44,111,114,105,101,110,116,97,116,105,111,110,58,34,104,111,114,105,122,111,110,116,97,108,34,44,107,101,121,98,111,97,114,100,83,117,112,112,111,114,116,58,33,48,44,99,115,115,80,114,101,102,105,120,58,34,110,111,85,105,45,34,44,99,115,115,67,108,97,115,115,101,115,58,68,44,107,101,121,98,111,97,114,100,80,97,103,101,77,117,108,116,105,112,108,105,101,114,58,53,44,107,101,121,98,111,97,114,100,68,101,102,97,117,108,116,83,116,101,112,58,49,48,125,59,116,46,102,111,114,109,97,116,38,38,33,116,46,97,114,105,97,70,111,114,109,97,116,38,38,40,116,46,97,114,105,97,70,111,114,109,97,116,61,116,46,102,111,114,109,97,116,41,44,79,98,106,101,99,116,46,107,101,121,115,40,110,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,111,41,123,105,102,40,105,40,116,91,111,93,41,124,124,118,111,105,100,32,48,33,61,61,114,91,111,93,41,110,91,111,93,46,116,40,101,44,105,40,116,91,111,93,41,63,116,91,111,93,58,114,91,111,93,41,59,101,108,115,101,32,105,102,40,110,91,111,93,46,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,34,43,111,43,34,39,32,105,115,32,114,101,113,117,105,114,101,100,46,34,41,125,41,41,44,101,46,112,105,112,115,61,116,46,112,105,112,115,59,118,97,114,32,111,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,97,61,118,111,105,100,32,48,33,61,61,111,46,115,116,121,108,101,46,109,115,84,114,97,110,115,102,111,114,109,44,115,61,118,111,105,100,32,48,33,61,61,111,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,59,101,46,116,114,97,110,115,102,111,114,109,82,117,108,101,61,115,63,34,116,114,97,110,115,102,111,114,109,34,58,97,63,34,109,115,84,114,97,110,115,102,111,114,109,34,58,34,119,101,98,107,105,116,84,114,97,110,115,102,111,114,109,34,59,118,97,114,32,99,61,91,91,34,108,101,102,116,34,44,34,116,111,112,34,93,44,91,34,114,105,103,104,116,34,44,34,98,111,116,116,111,109,34,93,93,59,114,101,116,117,114,110,32,101,46,115,116,121,108,101,61,99,91,101,46,100,105,114,93,91,101,46,111,114,116,93,44,101,125,102,117,110,99,116,105,111,110,32,110,116,40,101,44,110,44,115,41,123,118,97,114,32,117,44,100,44,95,44,120,44,79,44,83,61,98,40,41,44,107,61,119,40,41,44,67,61,107,38,38,121,40,41,44,80,61,101,44,84,61,110,46,115,112,101,99,116,114,117,109,44,106,61,91,93,44,69,61,91,93,44,68,61,91,93,44,76,61,48,44,73,61,123,125,44,77,61,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,36,61,110,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,124,124,77,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,70,61,77,46,98,111,100,121,44,82,61,34,114,116,108,34,61,61,61,77,46,100,105,114,124,124,49,61,61,61,110,46,111,114,116,63,48,58,49,48,48,59,102,117,110,99,116,105,111,110,32,78,40,116,44,101,41,123,118,97,114,32,110,61,77,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,114,101,116,117,114,110,32,101,38,38,112,40,110,44,101,41,44,116,46,97,112,112,101,110,100,67,104,105,108,100,40,110,41,44,110,125,102,117,110,99,116,105,111,110,32,66,40,116,44,101,41,123,118,97,114,32,114,61,78,40,116,44,110,46,99,115,115,67,108,97,115,115,101,115,46,111,114,105,103,105,110,41,44,105,61,78,40,114,44,110,46,99,115,115,67,108,97,115,115,101,115,46,104,97,110,100,108,101,41,59,114,101,116,117,114,110,32,78,40,105,44,110,46,99,115,115,67,108,97,115,115,101,115,46,116,111,117,99,104,65,114,101,97,41,44,105,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,104,97,110,100,108,101,34,44,83,116,114,105,110,103,40,101,41,41,44,110,46,107,101,121,98,111,97,114,100,83,117,112,112,111,114,116,38,38,40,105,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,34,48,34,41,44,105,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,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,112,116,40,116,44,101,41,125,41,41,41,44,105,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,114,111,108,101,34,44,34,115,108,105,100,101,114,34,41,44,105,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,111,114,105,101,110,116,97,116,105,111,110,34,44,110,46,111,114,116,63,34,118,101,114,116,105,99,97,108,34,58,34,104,111,114,105,122,111,110,116,97,108,34,41,44,48,61,61,61,101,63,112,40,105,44,110,46,99,115,115,67,108,97,115,115,101,115,46,104,97,110,100,108,101,76,111,119,101,114,41,58,101,61,61,61,110,46,104,97,110,100,108,101,115,45,49,38,38,112,40,105,44,110,46,99,115,115,67,108,97,115,115,101,115,46,104,97,110,100,108,101,85,112,112,101,114,41,44,114,125,102,117,110,99,116,105,111,110,32,122,40,116,44,101,41,123,114,101,116,117,114,110,33,33,101,38,38,78,40,116,44,110,46,99,115,115,67,108,97,115,115,101,115,46,99,111,110,110,101,99,116,41,125,102,117,110,99,116,105,111,110,32,86,40,116,44,101,41,123,118,97,114,32,114,61,78,40,101,44,110,46,99,115,115,67,108,97,115,115,101,115,46,99,111,110,110,101,99,116,115,41,59,100,61,91,93,44,95,61,91,93,44,95,46,112,117,115,104,40,122,40,114,44,116,91,48,93,41,41,59,102,111,114,40,118,97,114,32,105,61,48,59,105,60,110,46,104,97,110,100,108,101,115,59,105,43,43,41,100,46,112,117,115,104,40,66,40,101,44,105,41,41,44,68,91,105,93,61,105,44,95,46,112,117,115,104,40,122,40,114,44,116,91,105,43,49,93,41,41,125,102,117,110,99,116,105,111,110,32,72,40,116,41,123,112,40,116,44,110,46,99,115,115,67,108,97,115,115,101,115,46,116,97,114,103,101,116,41,44,48,61,61,61,110,46,100,105,114,63,112,40,116,44,110,46,99,115,115,67,108,97,115,115,101,115,46,108,116,114,41,58,112,40,116,44,110,46,99,115,115,67,108,97,115,115,101,115,46,114,116,108,41,44,48,61,61,61,110,46,111,114,116,63,112,40,116,44,110,46,99,115,115,67,108,97,115,115,101,115,46,104,111,114,105,122,111,110,116,97,108,41,58,112,40,116,44,110,46,99,115,115,67,108,97,115,115,101,115,46,118,101,114,116,105,99,97,108,41,59,118,97,114,32,101,61,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,41,46,100,105,114,101,99,116,105,111,110,59,114,101,116,117,114,110,32,112,40,116,44,34,114,116,108,34,61,61,61,101,63,110,46,99,115,115,67,108,97,115,115,101,115,46,116,101,120,116,68,105,114,101,99,116,105,111,110,82,116,108,58,110,46,99,115,115,67,108,97,115,115,101,115,46,116,101,120,116,68,105,114,101,99,116,105,111,110,76,116,114,41,44,78,40,116,44,110,46,99,115,115,67,108,97,115,115,101,115,46,98,97,115,101,41,125,102,117,110,99,116,105,111,110,32,85,40,116,44,101,41,123,114,101,116,117,114,110,33,40,33,110,46,116,111,111,108,116,105,112,115,124,124,33,110,46,116,111,111,108,116,105,112,115,91,101,93,41,38,38,78,40,116,46,102,105,114,115,116,67,104,105,108,100,44,110,46,99,115,115,67,108,97,115,115,101,115,46,116,111,111,108,116,105,112,41,125,102,117,110,99,116,105,111,110,32,87,40,41,123,114,101,116,117,114,110,32,80,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,125,102,117,110,99,116,105,111,110,32,71,40,116,41,123,118,97,114,32,101,61,100,91,116,93,59,114,101,116,117,114,110,32,101,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,125,102,117,110,99,116,105,111,110,32,113,40,41,123,79,38,38,40,98,116,40,34,117,112,100,97,116,101,34,43,65,46,116,111,111,108,116,105,112,115,41,44,79,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,114,40,116,41,125,41,41,44,79,61,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,89,40,41,123,113,40,41,44,79,61,100,46,109,97,112,40,85,41,44,103,116,40,34,117,112,100,97,116,101,34,43,65,46,116,111,111,108,116,105,112,115,44,40,102,117,110,99,116,105,111,110,40,116,44,101,44,114,41,123,105,102,40,79,38,38,110,46,116,111,111,108,116,105,112,115,38,38,33,49,33,61,61,79,91,101,93,41,123,118,97,114,32,105,61,116,91,101,93,59,33,48,33,61,61,110,46,116,111,111,108,116,105,112,115,91,101,93,38,38,40,105,61,110,46,116,111,111,108,116,105,112,115,91,101,93,46,116,111,40,114,91,101,93,41,41,44,79,91,101,93,46,105,110,110,101,114,72,84,77,76,61,105,125,125,41,41,125,102,117,110,99,116,105,111,110,32,75,40,41,123,98,116,40,34,117,112,100,97,116,101,34,43,65,46,97,114,105,97,41,44,103,116,40,34,117,112,100,97,116,101,34,43,65,46,97,114,105,97,44,40,102,117,110,99,116,105,111,110,40,116,44,101,44,114,44,105,44,111,41,123,68,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,100,91,116,93,44,105,61,119,116,40,69,44,116,44,48,44,33,48,44,33,48,44,33,48,41,44,97,61,119,116,40,69,44,116,44,49,48,48,44,33,48,44,33,48,44,33,48,41,44,115,61,111,91,116,93,44,99,61,83,116,114,105,110,103,40,110,46,97,114,105,97,70,111,114,109,97,116,46,116,111,40,114,91,116,93,41,41,59,105,61,84,46,102,114,111,109,83,116,101,112,112,105,110,103,40,105,41,46,116,111,70,105,120,101,100,40,49,41,44,97,61,84,46,102,114,111,109,83,116,101,112,112,105,110,103,40,97,41,46,116,111,70,105,120,101,100,40,49,41,44,115,61,84,46,102,114,111,109,83,116,101,112,112,105,110,103,40,115,41,46,116,111,70,105,120,101,100,40,49,41,44,101,46,99,104,105,108,100,114,101,110,91,48,93,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,118,97,108,117,101,109,105,110,34,44,105,41,44,101,46,99,104,105,108,100,114,101,110,91,48,93,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,118,97,108,117,101,109,97,120,34,44,97,41,44,101,46,99,104,105,108,100,114,101,110,91,48,93,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,118,97,108,117,101,110,111,119,34,44,115,41,44,101,46,99,104,105,108,100,114,101,110,91,48,93,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,118,97,108,117,101,116,101,120,116,34,44,99,41,125,41,41,125,41,41,125,102,117,110,99,116,105,111,110,32,88,40,101,41,123,105,102,40,101,46,109,111,100,101,61,61,61,116,46,80,105,112,115,77,111,100,101,46,82,97,110,103,101,124,124,101,46,109,111,100,101,61,61,61,116,46,80,105,112,115,77,111,100,101,46,83,116,101,112,115,41,114,101,116,117,114,110,32,84,46,120,86,97,108,59,105,102,40,101,46,109,111,100,101,61,61,61,116,46,80,105,112,115,77,111,100,101,46,67,111,117,110,116,41,123,105,102,40,101,46,118,97,108,117,101,115,60,50,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,39,118,97,108,117,101,115,39,32,40,62,61,32,50,41,32,114,101,113,117,105,114,101,100,32,102,111,114,32,109,111,100,101,32,39,99,111,117,110,116,39,46,34,41,59,118,97,114,32,110,61,101,46,118,97,108,117,101,115,45,49,44,114,61,49,48,48,47,110,44,105,61,91,93,59,119,104,105,108,101,40,110,45,45,41,105,91,110,93,61,110,42,114,59,114,101,116,117,114,110,32,105,46,112,117,115,104,40,49,48,48,41,44,90,40,105,44,101,46,115,116,101,112,112,101,100,41,125,114,101,116,117,114,110,32,101,46,109,111,100,101,61,61,61,116,46,80,105,112,115,77,111,100,101,46,80,111,115,105,116,105,111,110,115,63,90,40,101,46,118,97,108,117,101,115,44,101,46,115,116,101,112,112,101,100,41,58,101,46,109,111,100,101,61,61,61,116,46,80,105,112,115,77,111,100,101,46,86,97,108,117,101,115,63,101,46,115,116,101,112,112,101,100,63,101,46,118,97,108,117,101,115,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,84,46,102,114,111,109,83,116,101,112,112,105,110,103,40,84,46,103,101,116,83,116,101,112,40,84,46,116,111,83,116,101,112,112,105,110,103,40,116,41,41,41,125,41,41,58,101,46,118,97,108,117,101,115,58,91,93,125,102,117,110,99,116,105,111,110,32,90,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,84,46,102,114,111,109,83,116,101,112,112,105,110,103,40,101,63,84,46,103,101,116,83,116,101,112,40,116,41,58,116,41,125,41,41,125,102,117,110,99,116,105,111,110,32,74,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,116,44,101,41,123,114,101,116,117,114,110,32,78,117,109,98,101,114,40,40,116,43,101,41,46,116,111,70,105,120,101,100,40,55,41,41,125,118,97,114,32,114,61,88,40,101,41,44,105,61,123,125,44,111,61,84,46,120,86,97,108,91,48,93,44,115,61,84,46,120,86,97,108,91,84,46,120,86,97,108,46,108,101,110,103,116,104,45,49,93,44,99,61,33,49,44,117,61,33,49,44,108,61,48,59,114,101,116,117,114,110,32,114,61,97,40,114,46,115,108,105,99,101,40,41,46,115,111,114,116,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,45,101,125,41,41,41,44,114,91,48,93,33,61,61,111,38,38,40,114,46,117,110,115,104,105,102,116,40,111,41,44,99,61,33,48,41,44,114,91,114,46,108,101,110,103,116,104,45,49,93,33,61,61,115,38,38,40,114,46,112,117,115,104,40,115,41,44,117,61,33,48,41,44,114,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,111,44,97,41,123,118,97,114,32,115,44,102,44,104,44,100,44,112,44,118,44,103,44,109,44,98,44,121,44,119,61,111,44,95,61,114,91,97,43,49,93,44,120,61,101,46,109,111,100,101,61,61,61,116,46,80,105,112,115,77,111,100,101,46,83,116,101,112,115,59,102,111,114,40,120,38,38,40,115,61,84,46,120,78,117,109,83,116,101,112,115,91,97,93,41,44,115,124,124,40,115,61,95,45,119,41,44,118,111,105,100,32,48,61,61,61,95,38,38,40,95,61,119,41,44,115,61,77,97,116,104,46,109,97,120,40,115,44,49,101,45,55,41,44,102,61,119,59,102,60,61,95,59,102,61,110,40,102,44,115,41,41,123,102,111,114,40,100,61,84,46,116,111,83,116,101,112,112,105,110,103,40,102,41,44,112,61,100,45,108,44,109,61,112,47,40,101,46,100,101,110,115,105,116,121,124,124,49,41,44,98,61,77,97,116,104,46,114,111,117,110,100,40,109,41,44,121,61,112,47,98,44,104,61,49,59,104,60,61,98,59,104,43,61,49,41,118,61,108,43,104,42,121,44,105,91,118,46,116,111,70,105,120,101,100,40,53,41,93,61,91,84,46,102,114,111,109,83,116,101,112,112,105,110,103,40,118,41,44,48,93,59,103,61,114,46,105,110,100,101,120,79,102,40,102,41,62,45,49,63,116,46,80,105,112,115,84,121,112,101,46,76,97,114,103,101,86,97,108,117,101,58,120,63,116,46,80,105,112,115,84,121,112,101,46,83,109,97,108,108,86,97,108,117,101,58,116,46,80,105,112,115,84,121,112,101,46,78,111,86,97,108,117,101,44,33,97,38,38,99,38,38,102,33,61,61,95,38,38,40,103,61,48,41,44,102,61,61,61,95,38,38,117,124,124,40,105,91,100,46,116,111,70,105,120,101,100,40,53,41,93,61,91,102,44,103,93,41,44,108,61,100,125,125,41,41,44,105,125,102,117,110,99,116,105,111,110,32,81,40,101,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,61,77,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,99,61,40,111,61,123,125,44,111,91,116,46,80,105,112,115,84,121,112,101,46,78,111,110,101,93,61,34,34,44,111,91,116,46,80,105,112,115,84,121,112,101,46,78,111,86,97,108,117,101,93,61,110,46,99,115,115,67,108,97,115,115,101,115,46,118,97,108,117,101,78,111,114,109,97,108,44,111,91,116,46,80,105,112,115,84,121,112,101,46,76,97,114,103,101,86,97,108,117,101,93,61,110,46,99,115,115,67,108,97,115,115,101,115,46,118,97,108,117,101,76,97,114,103,101,44,111,91,116,46,80,105,112,115,84,121,112,101,46,83,109,97,108,108,86,97,108,117,101,93,61,110,46,99,115,115,67,108,97,115,115,101,115,46,118,97,108,117,101,83,117,98,44,111,41,44,117,61,40,97,61,123,125,44,97,91,116,46,80,105,112,115,84,121,112,101,46,78,111,110,101,93,61,34,34,44,97,91,116,46,80,105,112,115,84,121,112,101,46,78,111,86,97,108,117,101,93,61,110,46,99,115,115,67,108,97,115,115,101,115,46,109,97,114,107,101,114,78,111,114,109,97,108,44,97,91,116,46,80,105,112,115,84,121,112,101,46,76,97,114,103,101,86,97,108,117,101,93,61,110,46,99,115,115,67,108,97,115,115,101,115,46,109,97,114,107,101,114,76,97,114,103,101,44,97,91,116,46,80,105,112,115,84,121,112,101,46,83,109,97,108,108,86,97,108,117,101,93,61,110,46,99,115,115,67,108,97,115,115,101,115,46,109,97,114,107,101,114,83,117,98,44,97,41,44,108,61,91,110,46,99,115,115,67,108,97,115,115,101,115,46,118,97,108,117,101,72,111,114,105,122,111,110,116,97,108,44,110,46,99,115,115,67,108,97,115,115,101,115,46,118,97,108,117,101,86,101,114,116,105,99,97,108,93,44,102,61,91,110,46,99,115,115,67,108,97,115,115,101,115,46,109,97,114,107,101,114,72,111,114,105,122,111,110,116,97,108,44,110,46,99,115,115,67,108,97,115,115,101,115,46,109,97,114,107,101,114,86,101,114,116,105,99,97,108,93,59,102,117,110,99,116,105,111,110,32,104,40,116,44,101,41,123,118,97,114,32,114,61,101,61,61,61,110,46,99,115,115,67,108,97,115,115,101,115,46,118,97,108,117,101,44,105,61,114,63,108,58,102,44,111,61,114,63,99,58,117,59,114,101,116,117,114,110,32,101,43,34,32,34,43,105,91,110,46,111,114,116,93,43,34,32,34,43,111,91,116,93,125,102,117,110,99,116,105,111,110,32,100,40,101,44,111,44,97,41,123,105,102,40,97,61,114,63,114,40,111,44,97,41,58,97,44,97,33,61,61,116,46,80,105,112,115,84,121,112,101,46,78,111,110,101,41,123,118,97,114,32,99,61,78,40,115,44,33,49,41,59,99,46,99,108,97,115,115,78,97,109,101,61,104,40,97,44,110,46,99,115,115,67,108,97,115,115,101,115,46,109,97,114,107,101,114,41,44,99,46,115,116,121,108,101,91,110,46,115,116,121,108,101,93,61,101,43,34,37,34,44,97,62,116,46,80,105,112,115,84,121,112,101,46,78,111,86,97,108,117,101,38,38,40,99,61,78,40,115,44,33,49,41,44,99,46,99,108,97,115,115,78,97,109,101,61,104,40,97,44,110,46,99,115,115,67,108,97,115,115,101,115,46,118,97,108,117,101,41,44,99,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,118,97,108,117,101,34,44,83,116,114,105,110,103,40,111,41,41,44,99,46,115,116,121,108,101,91,110,46,115,116,121,108,101,93,61,101,43,34,37,34,44,99,46,105,110,110,101,114,72,84,77,76,61,83,116,114,105,110,103,40,105,46,116,111,40,111,41,41,41,125,125,114,101,116,117,114,110,32,112,40,115,44,110,46,99,115,115,67,108,97,115,115,101,115,46,112,105,112,115,41,44,112,40,115,44,48,61,61,61,110,46,111,114,116,63,110,46,99,115,115,67,108,97,115,115,101,115,46,112,105,112,115,72,111,114,105,122,111,110,116,97,108,58,110,46,99,115,115,67,108,97,115,115,101,115,46,112,105,112,115,86,101,114,116,105,99,97,108,41,44,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,100,40,116,44,101,91,116,93,91,48,93,44,101,91,116,93,91,49,93,41,125,41,41,44,115,125,102,117,110,99,116,105,111,110,32,116,116,40,41,123,120,38,38,40,114,40,120,41,44,120,61,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,110,116,40,116,41,123,116,116,40,41,59,118,97,114,32,101,61,74,40,116,41,44,110,61,116,46,102,105,108,116,101,114,44,114,61,116,46,102,111,114,109,97,116,124,124,123,116,111,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,83,116,114,105,110,103,40,77,97,116,104,46,114,111,117,110,100,40,116,41,41,125,125,59,114,101,116,117,114,110,32,120,61,80,46,97,112,112,101,110,100,67,104,105,108,100,40,81,40,101,44,110,44,114,41,41,44,120,125,102,117,110,99,116,105,111,110,32,114,116,40,41,123,118,97,114,32,116,61,117,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,34,111,102,102,115,101,116,34,43,91,34,87,105,100,116,104,34,44,34,72,101,105,103,104,116,34,93,91,110,46,111,114,116,93,59,114,101,116,117,114,110,32,48,61,61,61,110,46,111,114,116,63,116,46,119,105,100,116,104,124,124,117,91,101,93,58,116,46,104,101,105,103,104,116,124,124,117,91,101,93,125,102,117,110,99,116,105,111,110,32,105,116,40,116,44,101,44,114,44,105,41,123,118,97,114,32,111,61,102,117,110,99,116,105,111,110,40,111,41,123,118,97,114,32,97,61,111,116,40,111,44,105,46,112,97,103,101,79,102,102,115,101,116,44,105,46,116,97,114,103,101,116,124,124,101,41,59,114,101,116,117,114,110,33,33,97,38,38,40,33,40,87,40,41,38,38,33,105,46,100,111,78,111,116,82,101,106,101,99,116,41,38,38,40,33,40,103,40,80,44,110,46,99,115,115,67,108,97,115,115,101,115,46,116,97,112,41,38,38,33,105,46,100,111,78,111,116,82,101,106,101,99,116,41,38,38,40,33,40,116,61,61,61,83,46,115,116,97,114,116,38,38,118,111,105,100,32,48,33,61,61,97,46,98,117,116,116,111,110,115,38,38,97,46,98,117,116,116,111,110,115,62,49,41,38,38,40,40,33,105,46,104,111,118,101,114,124,124,33,97,46,98,117,116,116,111,110,115,41,38,38,40,67,124,124,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,97,46,99,97,108,99,80,111,105,110,116,61,97,46,112,111,105,110,116,115,91,110,46,111,114,116,93,44,118,111,105,100,32,114,40,97,44,105,41,41,41,41,41,41,125,44,97,61,91,93,59,114,101,116,117,114,110,32,116,46,115,112,108,105,116,40,34,32,34,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,44,111,44,33,33,67,38,38,123,112,97,115,115,105,118,101,58,33,48,125,41,44,97,46,112,117,115,104,40,91,116,44,111,93,41,125,41,41,44,97,125,102,117,110,99,116,105,111,110,32,111,116,40,116,44,101,44,110,41,123,118,97,114,32,114,61,48,61,61,61,116,46,116,121,112,101,46,105,110,100,101,120,79,102,40,34,116,111,117,99,104,34,41,44,105,61,48,61,61,61,116,46,116,121,112,101,46,105,110,100,101,120,79,102,40,34,109,111,117,115,101,34,41,44,111,61,48,61,61,61,116,46,116,121,112,101,46,105,110,100,101,120,79,102,40,34,112,111,105,110,116,101,114,34,41,44,97,61,48,44,115,61,48,59,105,102,40,48,61,61,61,116,46,116,121,112,101,46,105,110,100,101,120,79,102,40,34,77,83,80,111,105,110,116,101,114,34,41,38,38,40,111,61,33,48,41,44,34,109,111,117,115,101,100,111,119,110,34,61,61,61,116,46,116,121,112,101,38,38,33,116,46,98,117,116,116,111,110,115,38,38,33,116,46,116,111,117,99,104,101,115,41,114,101,116,117,114,110,33,49,59,105,102,40,114,41,123,118,97,114,32,99,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,101,46,116,97,114,103,101,116,59,114,101,116,117,114,110,32,114,61,61,61,110,124,124,110,46,99,111,110,116,97,105,110,115,40,114,41,124,124,116,46,99,111,109,112,111,115,101,100,38,38,116,46,99,111,109,112,111,115,101,100,80,97,116,104,40,41,46,115,104,105,102,116,40,41,61,61,61,110,125,59,105,102,40,34,116,111,117,99,104,115,116,97,114,116,34,61,61,61,116,46,116,121,112,101,41,123,118,97,114,32,117,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,108,116,101,114,46,99,97,108,108,40,116,46,116,111,117,99,104,101,115,44,99,41,59,105,102,40,117,46,108,101,110,103,116,104,62,49,41,114,101,116,117,114,110,33,49,59,97,61,117,91,48,93,46,112,97,103,101,88,44,115,61,117,91,48,93,46,112,97,103,101,89,125,101,108,115,101,123,118,97,114,32,108,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,46,99,97,108,108,40,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,99,41,59,105,102,40,33,108,41,114,101,116,117,114,110,33,49,59,97,61,108,46,112,97,103,101,88,44,115,61,108,46,112,97,103,101,89,125,125,114,101,116,117,114,110,32,101,61,101,124,124,109,40,77,41,44,40,105,124,124,111,41,38,38,40,97,61,116,46,99,108,105,101,110,116,88,43,101,46,120,44,115,61,116,46,99,108,105,101,110,116,89,43,101,46,121,41,44,116,46,112,97,103,101,79,102,102,115,101,116,61,101,44,116,46,112,111,105,110,116,115,61,91,97,44,115,93,44,116,46,99,117,114,115,111,114,61,105,124,124,111,44,116,125,102,117,110,99,116,105,111,110,32,97,116,40,116,41,123,118,97,114,32,101,61,116,45,99,40,117,44,110,46,111,114,116,41,44,114,61,49,48,48,42,101,47,114,116,40,41,59,114,101,116,117,114,110,32,114,61,102,40,114,41,44,110,46,100,105,114,63,49,48,48,45,114,58,114,125,102,117,110,99,116,105,111,110,32,115,116,40,116,41,123,118,97,114,32,101,61,49,48,48,44,110,61,33,49,59,114,101,116,117,114,110,32,100,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,114,44,105,41,123,105,102,40,33,71,40,105,41,41,123,118,97,114,32,111,61,69,91,105,93,44,97,61,77,97,116,104,46,97,98,115,40,111,45,116,41,44,115,61,49,48,48,61,61,61,97,38,38,49,48,48,61,61,61,101,44,99,61,97,60,101,44,117,61,97,60,61,101,38,38,116,62,111,59,40,99,124,124,117,124,124,115,41,38,38,40,110,61,105,44,101,61,97,41,125,125,41,41,44,110,125,102,117,110,99,116,105,111,110,32,99,116,40,116,44,101,41,123,34,109,111,117,115,101,111,117,116,34,61,61,61,116,46,116,121,112,101,38,38,34,72,84,77,76,34,61,61,61,116,46,116,97,114,103,101,116,46,110,111,100,101,78,97,109,101,38,38,110,117,108,108,61,61,61,116,46,114,101,108,97,116,101,100,84,97,114,103,101,116,38,38,108,116,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,117,116,40,116,44,101,41,123,105,102,40,45,49,61,61,61,110,97,118,105,103,97,116,111,114,46,97,112,112,86,101,114,115,105,111,110,46,105,110,100,101,120,79,102,40,34,77,83,73,69,32,57,34,41,38,38,48,61,61,61,116,46,98,117,116,116,111,110,115,38,38,48,33,61,61,101,46,98,117,116,116,111,110,115,80,114,111,112,101,114,116,121,41,114,101,116,117,114,110,32,108,116,40,116,44,101,41,59,118,97,114,32,114,61,40,110,46,100,105,114,63,45,49,58,49,41,42,40,116,46,99,97,108,99,80,111,105,110,116,45,101,46,115,116,97,114,116,67,97,108,99,80,111,105,110,116,41,44,105,61,49,48,48,42,114,47,101,46,98,97,115,101,83,105,122,101,59,120,116,40,114,62,48,44,105,44,101,46,108,111,99,97,116,105,111,110,115,44,101,46,104,97,110,100,108,101,78,117,109,98,101,114,115,44,101,46,99,111,110,110,101,99,116,41,125,102,117,110,99,116,105,111,110,32,108,116,40,116,44,101,41,123,101,46,104,97,110,100,108,101,38,38,40,118,40,101,46,104,97,110,100,108,101,44,110,46,99,115,115,67,108,97,115,115,101,115,46,97,99,116,105,118,101,41,44,76,45,61,49,41,44,101,46,108,105,115,116,101,110,101,114,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,36,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,91,48,93,44,116,91,49,93,41,125,41,41,44,48,61,61,61,76,38,38,40,118,40,80,44,110,46,99,115,115,67,108,97,115,115,101,115,46,100,114,97,103,41,44,107,116,40,41,44,116,46,99,117,114,115,111,114,38,38,40,70,46,115,116,121,108,101,46,99,117,114,115,111,114,61,34,34,44,70,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,101,108,101,99,116,115,116,97,114,116,34,44,111,41,41,41,44,101,46,104,97,110,100,108,101,78,117,109,98,101,114,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,121,116,40,34,99,104,97,110,103,101,34,44,116,41,44,121,116,40,34,115,101,116,34,44,116,41,44,121,116,40,34,101,110,100,34,44,116,41,125,41,41,125,102,117,110,99,116,105,111,110,32,102,116,40,116,44,101,41,123,105,102,40,33,101,46,104,97,110,100,108,101,78,117,109,98,101,114,115,46,115,111,109,101,40,71,41,41,123,118,97,114,32,114,59,105,102,40,49,61,61,61,101,46,104,97,110,100,108,101,78,117,109,98,101,114,115,46,108,101,110,103,116,104,41,123,118,97,114,32,105,61,100,91,101,46,104,97,110,100,108,101,78,117,109,98,101,114,115,91,48,93,93,59,114,61,105,46,99,104,105,108,100,114,101,110,91,48,93,44,76,43,61,49,44,112,40,114,44,110,46,99,115,115,67,108,97,115,115,101,115,46,97,99,116,105,118,101,41,125,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,97,61,91,93,44,115,61,105,116,40,83,46,109,111,118,101,44,36,44,117,116,44,123,116,97,114,103,101,116,58,116,46,116,97,114,103,101,116,44,104,97,110,100,108,101,58,114,44,99,111,110,110,101,99,116,58,101,46,99,111,110,110,101,99,116,44,108,105,115,116,101,110,101,114,115,58,97,44,115,116,97,114,116,67,97,108,99,80,111,105,110,116,58,116,46,99,97,108,99,80,111,105,110,116,44,98,97,115,101,83,105,122,101,58,114,116,40,41,44,112,97,103,101,79,102,102,115,101,116,58,116,46,112,97,103,101,79,102,102,115,101,116,44,104,97,110,100,108,101,78,117,109,98,101,114,115,58,101,46,104,97,110,100,108,101,78,117,109,98,101,114,115,44,98,117,116,116,111,110,115,80,114,111,112,101,114,116,121,58,116,46,98,117,116,116,111,110,115,44,108,111,99,97,116,105,111,110,115,58,69,46,115,108,105,99,101,40,41,125,41,44,99,61,105,116,40,83,46,101,110,100,44,36,44,108,116,44,123,116,97,114,103,101,116,58,116,46,116,97,114,103,101,116,44,104,97,110,100,108,101,58,114,44,108,105,115,116,101,110,101,114,115,58,97,44,100,111,78,111,116,82,101,106,101,99,116,58,33,48,44,104,97,110,100,108,101,78,117,109,98,101,114,115,58,101,46,104,97,110,100,108,101,78,117,109,98,101,114,115,125,41,44,117,61,105,116,40,34,109,111,117,115,101,111,117,116,34,44,36,44,99,116,44,123,116,97,114,103,101,116,58,116,46,116,97,114,103,101,116,44,104,97,110,100,108,101,58,114,44,108,105,115,116,101,110,101,114,115,58,97,44,100,111,78,111,116,82,101,106,101,99,116,58,33,48,44,104,97,110,100,108,101,78,117,109,98,101,114,115,58,101,46,104,97,110,100,108,101,78,117,109,98,101,114,115,125,41,59,97,46,112,117,115,104,46,97,112,112,108,121,40,97,44,115,46,99,111,110,99,97,116,40,99,44,117,41,41,44,116,46,99,117,114,115,111,114,38,38,40,70,46,115,116,121,108,101,46,99,117,114,115,111,114,61,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,46,116,97,114,103,101,116,41,46,99,117,114,115,111,114,44,100,46,108,101,110,103,116,104,62,49,38,38,112,40,80,44,110,46,99,115,115,67,108,97,115,115,101,115,46,100,114,97,103,41,44,70,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,101,108,101,99,116,115,116,97,114,116,34,44,111,44,33,49,41,41,44,101,46,104,97,110,100,108,101,78,117,109,98,101,114,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,121,116,40,34,115,116,97,114,116,34,44,116,41,125,41,41,125,125,102,117,110,99,116,105,111,110,32,104,116,40,116,41,123,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,101,61,97,116,40,116,46,99,97,108,99,80,111,105,110,116,41,44,114,61,115,116,40,101,41,59,33,49,33,61,61,114,38,38,40,110,46,101,118,101,110,116,115,46,115,110,97,112,124,124,108,40,80,44,110,46,99,115,115,67,108,97,115,115,101,115,46,116,97,112,44,110,46,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,41,44,67,116,40,114,44,101,44,33,48,44,33,48,41,44,107,116,40,41,44,121,116,40,34,115,108,105,100,101,34,44,114,44,33,48,41,44,121,116,40,34,117,112,100,97,116,101,34,44,114,44,33,48,41,44,121,116,40,34,99,104,97,110,103,101,34,44,114,44,33,48,41,44,121,116,40,34,115,101,116,34,44,114,44,33,48,41,44,110,46,101,118,101,110,116,115,46,115,110,97,112,38,38,102,116,40,116,44,123,104,97,110,100,108,101,78,117,109,98,101,114,115,58,91,114,93,125,41,41,125,102,117,110,99,116,105,111,110,32,100,116,40,116,41,123,118,97,114,32,101,61,97,116,40,116,46,99,97,108,99,80,111,105,110,116,41,44,110,61,84,46,103,101,116,83,116,101,112,40,101,41,44,114,61,84,46,102,114,111,109,83,116,101,112,112,105,110,103,40,110,41,59,79,98,106,101,99,116,46,107,101,121,115,40,73,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,34,104,111,118,101,114,34,61,61,61,116,46,115,112,108,105,116,40,34,46,34,41,91,48,93,38,38,73,91,116,93,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,99,97,108,108,40,82,116,44,114,41,125,41,41,125,41,41,125,102,117,110,99,116,105,111,110,32,112,116,40,116,44,101,41,123,105,102,40,87,40,41,124,124,71,40,101,41,41,114,101,116,117,114,110,33,49,59,118,97,114,32,114,61,91,34,76,101,102,116,34,44,34,82,105,103,104,116,34,93,44,105,61,91,34,68,111,119,110,34,44,34,85,112,34,93,44,111,61,91,34,80,97,103,101,68,111,119,110,34,44,34,80,97,103,101,85,112,34,93,44,97,61,91,34,72,111,109,101,34,44,34,69,110,100,34,93,59,110,46,100,105,114,38,38,33,110,46,111,114,116,63,114,46,114,101,118,101,114,115,101,40,41,58,110,46,111,114,116,38,38,33,110,46,100,105,114,38,38,40,105,46,114,101,118,101,114,115,101,40,41,44,111,46,114,101,118,101,114,115,101,40,41,41,59,118,97,114,32,115,44,99,61,116,46,107,101,121,46,114,101,112,108,97,99,101,40,34,65,114,114,111,119,34,44,34,34,41,44,117,61,99,61,61,61,111,91,48,93,44,108,61,99,61,61,61,111,91,49,93,44,102,61,99,61,61,61,105,91,48,93,124,124,99,61,61,61,114,91,48,93,124,124,117,44,104,61,99,61,61,61,105,91,49,93,124,124,99,61,61,61,114,91,49,93,124,124,108,44,100,61,99,61,61,61,97,91,48,93,44,112,61,99,61,61,61,97,91,49,93,59,105,102,40,33,102,38,38,33,104,38,38,33,100,38,38,33,112,41,114,101,116,117,114,110,33,48,59,105,102,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,104,124,124,102,41,123,118,97,114,32,118,61,110,46,107,101,121,98,111,97,114,100,80,97,103,101,77,117,108,116,105,112,108,105,101,114,44,103,61,102,63,48,58,49,44,109,61,73,116,40,101,41,44,98,61,109,91,103,93,59,105,102,40,110,117,108,108,61,61,61,98,41,114,101,116,117,114,110,33,49,59,33,49,61,61,61,98,38,38,40,98,61,84,46,103,101,116,68,101,102,97,117,108,116,83,116,101,112,40,69,91,101,93,44,102,44,110,46,107,101,121,98,111,97,114,100,68,101,102,97,117,108,116,83,116,101,112,41,41,44,40,108,124,124,117,41,38,38,40,98,42,61,118,41,44,98,61,77,97,116,104,46,109,97,120,40,98,44,49,101,45,55,41,44,98,42,61,102,63,45,49,58,49,44,115,61,106,91,101,93,43,98,125,101,108,115,101,32,115,61,112,63,110,46,115,112,101,99,116,114,117,109,46,120,86,97,108,91,110,46,115,112,101,99,116,114,117,109,46,120,86,97,108,46,108,101,110,103,116,104,45,49,93,58,110,46,115,112,101,99,116,114,117,109,46,120,86,97,108,91,48,93,59,114,101,116,117,114,110,32,67,116,40,101,44,84,46,116,111,83,116,101,112,112,105,110,103,40,115,41,44,33,48,44,33,48,41,44,121,116,40,34,115,108,105,100,101,34,44,101,41,44,121,116,40,34,117,112,100,97,116,101,34,44,101,41,44,121,116,40,34,99,104,97,110,103,101,34,44,101,41,44,121,116,40,34,115,101,116,34,44,101,41,44,33,49,125,102,117,110,99,116,105,111,110,32,118,116,40,116,41,123,116,46,102,105,120,101,100,124,124,100,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,116,40,83,46,115,116,97,114,116,44,116,46,99,104,105,108,100,114,101,110,91,48,93,44,102,116,44,123,104,97,110,100,108,101,78,117,109,98,101,114,115,58,91,101,93,125,41,125,41,41,44,116,46,116,97,112,38,38,105,116,40,83,46,115,116,97,114,116,44,117,44,104,116,44,123,125,41,44,116,46,104,111,118,101,114,38,38,105,116,40,83,46,109,111,118,101,44,117,44,100,116,44,123,104,111,118,101,114,58,33,48,125,41,44,116,46,100,114,97,103,38,38,95,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,105,102,40,33,49,33,61,61,101,38,38,48,33,61,61,114,38,38,114,33,61,61,95,46,108,101,110,103,116,104,45,49,41,123,118,97,114,32,105,61,100,91,114,45,49,93,44,111,61,100,91,114,93,44,97,61,91,101,93,59,112,40,101,44,110,46,99,115,115,67,108,97,115,115,101,115,46,100,114,97,103,103,97,98,108,101,41,44,116,46,102,105,120,101,100,38,38,40,97,46,112,117,115,104,40,105,46,99,104,105,108,100,114,101,110,91,48,93,41,44,97,46,112,117,115,104,40,111,46,99,104,105,108,100,114,101,110,91,48,93,41,41,44,97,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,105,116,40,83,46,115,116,97,114,116,44,116,44,102,116,44,123,104,97,110,100,108,101,115,58,91,105,44,111,93,44,104,97,110,100,108,101,78,117,109,98,101,114,115,58,91,114,45,49,44,114,93,44,99,111,110,110,101,99,116,58,101,125,41,125,41,41,125,125,41,41,125,102,117,110,99,116,105,111,110,32,103,116,40,116,44,101,41,123,73,91,116,93,61,73,91,116,93,124,124,91,93,44,73,91,116,93,46,112,117,115,104,40,101,41,44,34,117,112,100,97,116,101,34,61,61,61,116,46,115,112,108,105,116,40,34,46,34,41,91,48,93,38,38,100,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,121,116,40,34,117,112,100,97,116,101,34,44,101,41,125,41,41,125,102,117,110,99,116,105,111,110,32,109,116,40,116,41,123,114,101,116,117,114,110,32,116,61,61,61,65,46,97,114,105,97,124,124,116,61,61,61,65,46,116,111,111,108,116,105,112,115,125,102,117,110,99,116,105,111,110,32,98,116,40,116,41,123,118,97,114,32,101,61,116,38,38,116,46,115,112,108,105,116,40,34,46,34,41,91,48,93,44,110,61,101,63,116,46,115,117,98,115,116,114,105,110,103,40,101,46,108,101,110,103,116,104,41,58,116,59,79,98,106,101,99,116,46,107,101,121,115,40,73,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,116,46,115,112,108,105,116,40,34,46,34,41,91,48,93,44,105,61,116,46,115,117,98,115,116,114,105,110,103,40,114,46,108,101,110,103,116,104,41,59,101,38,38,101,33,61,61,114,124,124,110,38,38,110,33,61,61,105,124,124,109,116,40,105,41,38,38,110,33,61,61,105,124,124,100,101,108,101,116,101,32,73,91,116,93,125,41,41,125,102,117,110,99,116,105,111,110,32,121,116,40,116,44,101,44,114,41,123,79,98,106,101,99,116,46,107,101,121,115,40,73,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,111,61,105,46,115,112,108,105,116,40,34,46,34,41,91,48,93,59,116,61,61,61,111,38,38,73,91,105,93,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,99,97,108,108,40,82,116,44,106,46,109,97,112,40,110,46,102,111,114,109,97,116,46,116,111,41,44,101,44,106,46,115,108,105,99,101,40,41,44,114,124,124,33,49,44,69,46,115,108,105,99,101,40,41,44,82,116,41,125,41,41,125,41,41,125,102,117,110,99,116,105,111,110,32,119,116,40,116,44,101,44,114,44,105,44,111,44,97,41,123,118,97,114,32,115,59,114,101,116,117,114,110,32,100,46,108,101,110,103,116,104,62,49,38,38,33,110,46,101,118,101,110,116,115,46,117,110,99,111,110,115,116,114,97,105,110,101,100,38,38,40,105,38,38,101,62,48,38,38,40,115,61,84,46,103,101,116,65,98,115,111,108,117,116,101,68,105,115,116,97,110,99,101,40,116,91,101,45,49,93,44,110,46,109,97,114,103,105,110,44,33,49,41,44,114,61,77,97,116,104,46,109,97,120,40,114,44,115,41,41,44,111,38,38,101,60,100,46,108,101,110,103,116,104,45,49,38,38,40,115,61,84,46,103,101,116,65,98,115,111,108,117,116,101,68,105,115,116,97,110,99,101,40,116,91,101,43,49,93,44,110,46,109,97,114,103,105,110,44,33,48,41,44,114,61,77,97,116,104,46,109,105,110,40,114,44,115,41,41,41,44,100,46,108,101,110,103,116,104,62,49,38,38,110,46,108,105,109,105,116,38,38,40,105,38,38,101,62,48,38,38,40,115,61,84,46,103,101,116,65,98,115,111,108,117,116,101,68,105,115,116,97,110,99,101,40,116,91,101,45,49,93,44,110,46,108,105,109,105,116,44,33,49,41,44,114,61,77,97,116,104,46,109,105,110,40,114,44,115,41,41,44,111,38,38,101,60,100,46,108,101,110,103,116,104,45,49,38,38,40,115,61,84,46,103,101,116,65,98,115,111,108,117,116,101,68,105,115,116,97,110,99,101,40,116,91,101,43,49,93,44,110,46,108,105,109,105,116,44,33,48,41,44,114,61,77,97,116,104,46,109,97,120,40,114,44,115,41,41,41,44,110,46,112,97,100,100,105,110,103,38,38,40,48,61,61,61,101,38,38,40,115,61,84,46,103,101,116,65,98,115,111,108,117,116,101,68,105,115,116,97,110,99,101,40,48,44,110,46,112,97,100,100,105,110,103,91,48,93,44,33,49,41,44,114,61,77,97,116,104,46,109,97,120,40,114,44,115,41,41,44,101,61,61,61,100,46,108,101,110,103,116,104,45,49,38,38,40,115,61,84,46,103,101,116,65,98,115,111,108,117,116,101,68,105,115,116,97,110,99,101,40,49,48,48,44,110,46,112,97,100,100,105,110,103,91,49,93,44,33,48,41,44,114,61,77,97,116,104,46,109,105,110,40,114,44,115,41,41,41,44,114,61,84,46,103,101,116,83,116,101,112,40,114,41,44,114,61,102,40,114,41,44,33,40,114,61,61,61,116,91,101,93,38,38,33,97,41,38,38,114,125,102,117,110,99,116,105,111,110,32,95,116,40,116,44,101,41,123,118,97,114,32,114,61,110,46,111,114,116,59,114,101,116,117,114,110,40,114,63,101,58,116,41,43,34,44,32,34,43,40,114,63,116,58,101,41,125,102,117,110,99,116,105,111,110,32,120,116,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,110,46,115,108,105,99,101,40,41,44,97,61,114,91,48,93,44,115,61,91,33,116,44,116,93,44,99,61,91,116,44,33,116,93,59,114,61,114,46,115,108,105,99,101,40,41,44,116,38,38,114,46,114,101,118,101,114,115,101,40,41,44,114,46,108,101,110,103,116,104,62,49,63,114,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,114,61,119,116,40,111,44,116,44,111,91,116,93,43,101,44,115,91,110,93,44,99,91,110,93,44,33,49,41,59,33,49,61,61,61,114,63,101,61,48,58,40,101,61,114,45,111,91,116,93,44,111,91,116,93,61,114,41,125,41,41,58,115,61,99,61,91,33,48,93,59,118,97,114,32,117,61,33,49,59,114,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,117,61,67,116,40,116,44,110,91,116,93,43,101,44,115,91,114,93,44,99,91,114,93,41,124,124,117,125,41,41,44,117,38,38,40,114,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,121,116,40,34,117,112,100,97,116,101,34,44,116,41,44,121,116,40,34,115,108,105,100,101,34,44,116,41,125,41,41,44,118,111,105,100,32,48,33,61,105,38,38,121,116,40,34,100,114,97,103,34,44,97,41,41,125,102,117,110,99,116,105,111,110,32,79,116,40,116,44,101,41,123,114,101,116,117,114,110,32,110,46,100,105,114,63,49,48,48,45,116,45,101,58,116,125,102,117,110,99,116,105,111,110,32,83,116,40,116,44,101,41,123,69,91,116,93,61,101,44,106,91,116,93,61,84,46,102,114,111,109,83,116,101,112,112,105,110,103,40,101,41,59,118,97,114,32,114,61,49,48,42,40,79,116,40,101,44,48,41,45,82,41,44,105,61,34,116,114,97,110,115,108,97,116,101,40,34,43,95,116,40,114,43,34,37,34,44,34,48,34,41,43,34,41,34,59,100,91,116,93,46,115,116,121,108,101,91,110,46,116,114,97,110,115,102,111,114,109,82,117,108,101,93,61,105,44,80,116,40,116,41,44,80,116,40,116,43,49,41,125,102,117,110,99,116,105,111,110,32,107,116,40,41,123,68,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,69,91,116,93,62,53,48,63,45,49,58,49,44,110,61,51,43,40,100,46,108,101,110,103,116,104,43,101,42,116,41,59,100,91,116,93,46,115,116,121,108,101,46,122,73,110,100,101,120,61,83,116,114,105,110,103,40,110,41,125,41,41,125,102,117,110,99,116,105,111,110,32,67,116,40,116,44,101,44,110,44,114,44,105,41,123,114,101,116,117,114,110,32,105,124,124,40,101,61,119,116,40,69,44,116,44,101,44,110,44,114,44,33,49,41,41,44,33,49,33,61,61,101,38,38,40,83,116,40,116,44,101,41,44,33,48,41,125,102,117,110,99,116,105,111,110,32,80,116,40,116,41,123,105,102,40,95,91,116,93,41,123,118,97,114,32,101,61,48,44,114,61,49,48,48,59,48,33,61,61,116,38,38,40,101,61,69,91,116,45,49,93,41,44,116,33,61,61,95,46,108,101,110,103,116,104,45,49,38,38,40,114,61,69,91,116,93,41,59,118,97,114,32,105,61,114,45,101,44,111,61,34,116,114,97,110,115,108,97,116,101,40,34,43,95,116,40,79,116,40,101,44,105,41,43,34,37,34,44,34,48,34,41,43,34,41,34,44,97,61,34,115,99,97,108,101,40,34,43,95,116,40,105,47,49,48,48,44,34,49,34,41,43,34,41,34,59,95,91,116,93,46,115,116,121,108,101,91,110,46,116,114,97,110,115,102,111,114,109,82,117,108,101,93,61,111,43,34,32,34,43,97,125,125,102,117,110,99,116,105,111,110,32,84,116,40,116,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,116,124,124,33,49,61,61,61,116,124,124,118,111,105,100,32,48,61,61,61,116,63,69,91,101,93,58,40,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,116,38,38,40,116,61,83,116,114,105,110,103,40,116,41,41,44,116,61,110,46,102,111,114,109,97,116,46,102,114,111,109,40,116,41,44,33,49,33,61,61,116,38,38,40,116,61,84,46,116,111,83,116,101,112,112,105,110,103,40,116,41,41,44,33,49,61,61,61,116,124,124,105,115,78,97,78,40,116,41,63,69,91,101,93,58,116,41,125,102,117,110,99,116,105,111,110,32,106,116,40,116,44,101,44,114,41,123,118,97,114,32,105,61,104,40,116,41,44,111,61,118,111,105,100,32,48,61,61,61,69,91,48,93,59,101,61,118,111,105,100,32,48,61,61,61,101,124,124,101,44,110,46,97,110,105,109,97,116,101,38,38,33,111,38,38,108,40,80,44,110,46,99,115,115,67,108,97,115,115,101,115,46,116,97,112,44,110,46,97,110,105,109,97,116,105,111,110,68,117,114,97,116,105,111,110,41,44,68,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,67,116,40,116,44,84,116,40,105,91,116,93,44,116,41,44,33,48,44,33,49,44,114,41,125,41,41,59,102,111,114,40,118,97,114,32,97,61,49,61,61,61,68,46,108,101,110,103,116,104,63,48,58,49,59,97,60,68,46,108,101,110,103,116,104,59,43,43,97,41,68,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,67,116,40,116,44,69,91,116,93,44,33,48,44,33,48,44,114,41,125,41,41,59,107,116,40,41,44,68,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,121,116,40,34,117,112,100,97,116,101,34,44,116,41,44,110,117,108,108,33,61,61,105,91,116,93,38,38,101,38,38,121,116,40,34,115,101,116,34,44,116,41,125,41,41,125,102,117,110,99,116,105,111,110,32,69,116,40,116,41,123,106,116,40,110,46,115,116,97,114,116,44,116,41,125,102,117,110,99,116,105,111,110,32,68,116,40,116,44,101,44,110,44,114,41,123,105,102,40,116,61,78,117,109,98,101,114,40,116,41,44,33,40,116,62,61,48,38,38,116,60,68,46,108,101,110,103,116,104,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,105,110,118,97,108,105,100,32,104,97,110,100,108,101,32,110,117,109,98,101,114,44,32,103,111,116,58,32,34,43,116,41,59,67,116,40,116,44,84,116,40,101,44,116,41,44,33,48,44,33,48,44,114,41,44,121,116,40,34,117,112,100,97,116,101,34,44,116,41,44,110,38,38,121,116,40,34,115,101,116,34,44,116,41,125,102,117,110,99,116,105,111,110,32,65,116,40,116,41,123,105,102,40,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,33,49,41,44,116,41,114,101,116,117,114,110,32,49,61,61,61,106,46,108,101,110,103,116,104,63,106,91,48,93,58,106,46,115,108,105,99,101,40,48,41,59,118,97,114,32,101,61,106,46,109,97,112,40,110,46,102,111,114,109,97,116,46,116,111,41,59,114,101,116,117,114,110,32,49,61,61,61,101,46,108,101,110,103,116,104,63,101,91,48,93,58,101,125,102,117,110,99,116,105,111,110,32,76,116,40,41,123,98,116,40,65,46,97,114,105,97,41,44,98,116,40,65,46,116,111,111,108,116,105,112,115,41,44,79,98,106,101,99,116,46,107,101,121,115,40,110,46,99,115,115,67,108,97,115,115,101,115,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,40,80,44,110,46,99,115,115,67,108,97,115,115,101,115,91,116,93,41,125,41,41,59,119,104,105,108,101,40,80,46,102,105,114,115,116,67,104,105,108,100,41,80,46,114,101,109,111,118,101,67,104,105,108,100,40,80,46,102,105,114,115,116,67,104,105,108,100,41,59,100,101,108,101,116,101,32,80,46,110,111,85,105,83,108,105,100,101,114,125,102,117,110,99,116,105,111,110,32,73,116,40,116,41,123,118,97,114,32,101,61,69,91,116,93,44,114,61,84,46,103,101,116,78,101,97,114,98,121,83,116,101,112,115,40,101,41,44,105,61,106,91,116,93,44,111,61,114,46,116,104,105,115,83,116,101,112,46,115,116,101,112,44,97,61,110,117,108,108,59,105,102,40,110,46,115,110,97,112,41,114,101,116,117,114,110,91,105,45,114,46,115,116,101,112,66,101,102,111,114,101,46,115,116,97,114,116,86,97,108,117,101,124,124,110,117,108,108,44,114,46,115,116,101,112,65,102,116,101,114,46,115,116,97,114,116,86,97,108,117,101,45,105,124,124,110,117,108,108,93,59,33,49,33,61,61,111,38,38,105,43,111,62,114,46,115,116,101,112,65,102,116,101,114,46,115,116,97,114,116,86,97,108,117,101,38,38,40,111,61,114,46,115,116,101,112,65,102,116,101,114,46,115,116,97,114,116,86,97,108,117,101,45,105,41,44,97,61,105,62,114,46,116,104,105,115,83,116,101,112,46,115,116,97,114,116,86,97,108,117,101,63,114,46,116,104,105,115,83,116,101,112,46,115,116,101,112,58,33,49,33,61,61,114,46,115,116,101,112,66,101,102,111,114,101,46,115,116,101,112,38,38,105,45,114,46,115,116,101,112,66,101,102,111,114,101,46,104,105,103,104,101,115,116,83,116,101,112,44,49,48,48,61,61,61,101,63,111,61,110,117,108,108,58,48,61,61,61,101,38,38,40,97,61,110,117,108,108,41,59,118,97,114,32,115,61,84,46,99,111,117,110,116,83,116,101,112,68,101,99,105,109,97,108,115,40,41,59,114,101,116,117,114,110,32,110,117,108,108,33,61,61,111,38,38,33,49,33,61,61,111,38,38,40,111,61,78,117,109,98,101,114,40,111,46,116,111,70,105,120,101,100,40,115,41,41,41,44,110,117,108,108,33,61,61,97,38,38,33,49,33,61,61,97,38,38,40,97,61,78,117,109,98,101,114,40,97,46,116,111,70,105,120,101,100,40,115,41,41,41,44,91,97,44,111,93,125,102,117,110,99,116,105,111,110,32,77,116,40,41,123,114,101,116,117,114,110,32,68,46,109,97,112,40,73,116,41,125,102,117,110,99,116,105,111,110,32,36,116,40,116,44,101,41,123,118,97,114,32,114,61,65,116,40,41,44,111,61,91,34,109,97,114,103,105,110,34,44,34,108,105,109,105,116,34,44,34,112,97,100,100,105,110,103,34,44,34,114,97,110,103,101,34,44,34,97,110,105,109,97,116,101,34,44,34,115,110,97,112,34,44,34,115,116,101,112,34,44,34,102,111,114,109,97,116,34,44,34,112,105,112,115,34,44,34,116,111,111,108,116,105,112,115,34,93,59,111,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,111,105,100,32,48,33,61,61,116,91,101,93,38,38,40,115,91,101,93,61,116,91,101,93,41,125,41,41,59,118,97,114,32,97,61,101,116,40,115,41,59,111,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,111,105,100,32,48,33,61,61,116,91,101,93,38,38,40,110,91,101,93,61,97,91,101,93,41,125,41,41,44,84,61,97,46,115,112,101,99,116,114,117,109,44,110,46,109,97,114,103,105,110,61,97,46,109,97,114,103,105,110,44,110,46,108,105,109,105,116,61,97,46,108,105,109,105,116,44,110,46,112,97,100,100,105,110,103,61,97,46,112,97,100,100,105,110,103,44,110,46,112,105,112,115,63,110,116,40,110,46,112,105,112,115,41,58,116,116,40,41,44,110,46,116,111,111,108,116,105,112,115,63,89,40,41,58,113,40,41,44,69,61,91,93,44,106,116,40,105,40,116,46,115,116,97,114,116,41,63,116,46,115,116,97,114,116,58,114,44,101,41,125,102,117,110,99,116,105,111,110,32,70,116,40,41,123,117,61,72,40,80,41,44,86,40,110,46,99,111,110,110,101,99,116,44,117,41,44,118,116,40,110,46,101,118,101,110,116,115,41,44,106,116,40,110,46,115,116,97,114,116,41,44,110,46,112,105,112,115,38,38,110,116,40,110,46,112,105,112,115,41,44,110,46,116,111,111,108,116,105,112,115,38,38,89,40,41,44,75,40,41,125,70,116,40,41,59,118,97,114,32,82,116,61,123,100,101,115,116,114,111,121,58,76,116,44,115,116,101,112,115,58,77,116,44,111,110,58,103,116,44,111,102,102,58,98,116,44,103,101,116,58,65,116,44,115,101,116,58,106,116,44,115,101,116,72,97,110,100,108,101,58,68,116,44,114,101,115,101,116,58,69,116,44,95,95,109,111,118,101,72,97,110,100,108,101,115,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,120,116,40,116,44,101,44,69,44,110,41,125,44,111,112,116,105,111,110,115,58,115,44,117,112,100,97,116,101,79,112,116,105,111,110,115,58,36,116,44,116,97,114,103,101,116,58,80,44,114,101,109,111,118,101,80,105,112,115,58,116,116,44,114,101,109,111,118,101,84,111,111,108,116,105,112,115,58,113,44,103,101,116,84,111,111,108,116,105,112,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,125,44,103,101,116,79,114,105,103,105,110,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,100,125,44,112,105,112,115,58,110,116,125,59,114,101,116,117,114,110,32,82,116,125,102,117,110,99,116,105,111,110,32,114,116,40,116,44,101,41,123,105,102,40,33,116,124,124,33,116,46,110,111,100,101,78,97,109,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,99,114,101,97,116,101,32,114,101,113,117,105,114,101,115,32,97,32,115,105,110,103,108,101,32,101,108,101,109,101,110,116,44,32,103,111,116,58,32,34,43,116,41,59,105,102,40,116,46,110,111,85,105,83,108,105,100,101,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,85,105,83,108,105,100,101,114,58,32,83,108,105,100,101,114,32,119,97,115,32,97,108,114,101,97,100,121,32,105,110,105,116,105,97,108,105,122,101,100,46,34,41,59,118,97,114,32,110,61,101,116,40,101,41,44,114,61,110,116,40,116,44,110,44,101,41,59,114,101,116,117,114,110,32,116,46,110,111,85,105,83,108,105,100,101,114,61,114,44,114,125,118,97,114,32,105,116,61,123,95,95,115,112,101,99,116,114,117,109,58,106,44,99,115,115,67,108,97,115,115,101,115,58,68,44,99,114,101,97,116,101,58,114,116,125,59,116,46,99,114,101,97,116,101,61,114,116,44,116,46,99,115,115,67,108,97,115,115,101,115,61,68,44,116,46,100,101,102,97,117,108,116,61,105,116,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,41,125,44,50,52,51,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,116,38,38,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,38,38,34,100,101,102,97,117,108,116,34,105,110,32,116,63,116,91,34,100,101,102,97,117,108,116,34,93,58,116,125,118,97,114,32,105,61,114,40,110,40,49,52,52,41,41,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,114,101,116,117,114,110,32,111,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,34,115,121,109,98,111,108,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,83,121,109,98,111,108,38,38,116,33,61,61,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,63,34,115,121,109,98,111,108,34,58,116,121,112,101,111,102,32,116,125,44,111,40,116,41,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,114,101,116,117,114,110,32,115,40,116,41,124,124,99,40,116,41,124,124,117,40,41,125,102,117,110,99,116,105,111,110,32,115,40,116,41,123,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,118,97,114,32,101,61,48,44,110,61,110,101,119,32,65,114,114,97,121,40,116,46,108,101,110,103,116,104,41,59,101,60,116,46,108,101,110,103,116,104,59,101,43,43,41,110,91,101,93,61,116,91,101,93,59,114,101,116,117,114,110,32,110,125,125,102,117,110,99,116,105,111,110,32,99,40,116,41,123,105,102,40,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,116,41,124,124,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,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,116,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,116,41,125,102,117,110,99,116,105,111,110,32,117,40,41,123,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,97,116,116,101,109,112,116,32,116,111,32,115,112,114,101,97,100,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,34,41,125,118,97,114,32,108,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,59,102,117,110,99,116,105,111,110,32,102,40,116,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,124,124,34,111,98,106,101,99,116,34,61,61,61,111,40,116,41,63,79,98,106,101,99,116,46,102,114,101,101,122,101,40,116,41,58,116,125,102,117,110,99,116,105,111,110,32,104,40,116,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,49,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,123,125,59,114,101,116,117,114,110,32,116,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,114,61,110,46,112,97,115,115,101,110,103,101,114,115,91,48,93,44,105,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,114,63,114,40,101,41,58,110,46,112,97,115,115,101,110,103,101,114,115,59,114,101,116,117,114,110,32,116,46,99,111,110,99,97,116,40,105,41,125,41,44,91,93,41,125,102,117,110,99,116,105,111,110,32,100,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,91,101,44,116,93,125,41,41,46,115,111,114,116,40,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,101,40,116,91,49,93,44,110,91,49,93,41,124,124,116,91,48,93,45,110,91,48,93,125,41,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,49,93,125,41,41,125,102,117,110,99,116,105,111,110,32,112,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,110,41,38,38,40,101,91,110,93,61,116,91,110,93,41,44,101,125,41,44,123,125,41,125,118,97,114,32,118,61,123,125,44,103,61,123,125,44,109,61,123,125,44,98,61,105,46,101,120,116,101,110,100,40,123,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,116,114,97,110,115,112,111,114,116,115,58,118,44,116,97,114,103,101,116,115,58,103,44,115,111,117,114,99,101,115,58,109,44,116,114,97,99,107,73,110,115,116,97,110,99,101,115,58,108,125,125,44,109,101,116,104,111,100,115,58,123,111,112,101,110,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,108,41,123,118,97,114,32,101,61,116,46,116,111,44,110,61,116,46,102,114,111,109,44,114,61,116,46,112,97,115,115,101,110,103,101,114,115,44,111,61,116,46,111,114,100,101,114,44,97,61,118,111,105,100,32,48,61,61,61,111,63,49,47,48,58,111,59,105,102,40,101,38,38,110,38,38,114,41,123,118,97,114,32,115,61,123,116,111,58,101,44,102,114,111,109,58,110,44,112,97,115,115,101,110,103,101,114,115,58,102,40,114,41,44,111,114,100,101,114,58,97,125,44,99,61,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,41,59,45,49,61,61,61,99,46,105,110,100,101,120,79,102,40,101,41,38,38,105,46,115,101,116,40,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,44,101,44,91,93,41,59,118,97,114,32,117,61,116,104,105,115,46,36,95,103,101,116,84,114,97,110,115,112,111,114,116,73,110,100,101,120,40,115,41,44,104,61,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,101,93,46,115,108,105,99,101,40,48,41,59,45,49,61,61,61,117,63,104,46,112,117,115,104,40,115,41,58,104,91,117,93,61,115,44,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,101,93,61,100,40,104,44,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,41,125,125,125,44,99,108,111,115,101,58,102,117,110,99,116,105,111,110,40,116,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,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,110,61,116,46,116,111,44,114,61,116,46,102,114,111,109,59,105,102,40,110,38,38,40,114,124,124,33,49,33,61,61,101,41,38,38,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,110,93,41,105,102,40,101,41,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,110,93,61,91,93,59,101,108,115,101,123,118,97,114,32,105,61,116,104,105,115,46,36,95,103,101,116,84,114,97,110,115,112,111,114,116,73,110,100,101,120,40,116,41,59,105,102,40,105,62,61,48,41,123,118,97,114,32,111,61,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,110,93,46,115,108,105,99,101,40,48,41,59,111,46,115,112,108,105,99,101,40,105,44,49,41,44,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,110,93,61,111,125,125,125,44,114,101,103,105,115,116,101,114,84,97,114,103,101,116,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,108,38,38,40,116,104,105,115,46,116,114,97,99,107,73,110,115,116,97,110,99,101,115,38,38,33,110,38,38,116,104,105,115,46,116,97,114,103,101,116,115,91,116,93,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,91,112,111,114,116,97,108,45,118,117,101,93,58,32,84,97,114,103,101,116,32,34,46,99,111,110,99,97,116,40,116,44,34,32,97,108,114,101,97,100,121,32,101,120,105,115,116,115,34,41,41,44,116,104,105,115,46,36,115,101,116,40,116,104,105,115,46,116,97,114,103,101,116,115,44,116,44,79,98,106,101,99,116,46,102,114,101,101,122,101,40,91,101,93,41,41,41,125,44,117,110,114,101,103,105,115,116,101,114,84,97,114,103,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,100,101,108,101,116,101,40,116,104,105,115,46,116,97,114,103,101,116,115,44,116,41,125,44,114,101,103,105,115,116,101,114,83,111,117,114,99,101,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,108,38,38,40,116,104,105,115,46,116,114,97,99,107,73,110,115,116,97,110,99,101,115,38,38,33,110,38,38,116,104,105,115,46,115,111,117,114,99,101,115,91,116,93,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,91,112,111,114,116,97,108,45,118,117,101,93,58,32,115,111,117,114,99,101,32,34,46,99,111,110,99,97,116,40,116,44,34,32,97,108,114,101,97,100,121,32,101,120,105,115,116,115,34,41,41,44,116,104,105,115,46,36,115,101,116,40,116,104,105,115,46,115,111,117,114,99,101,115,44,116,44,79,98,106,101,99,116,46,102,114,101,101,122,101,40,91,101,93,41,41,41,125,44,117,110,114,101,103,105,115,116,101,114,83,111,117,114,99,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,100,101,108,101,116,101,40,116,104,105,115,46,115,111,117,114,99,101,115,44,116,41,125,44,104,97,115,84,97,114,103,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,40,33,116,104,105,115,46,116,97,114,103,101,116,115,91,116,93,124,124,33,116,104,105,115,46,116,97,114,103,101,116,115,91,116,93,91,48,93,41,125,44,104,97,115,83,111,117,114,99,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,40,33,116,104,105,115,46,115,111,117,114,99,101,115,91,116,93,124,124,33,116,104,105,115,46,115,111,117,114,99,101,115,91,116,93,91,48,93,41,125,44,104,97,115,67,111,110,116,101,110,116,70,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,33,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,116,93,38,38,33,33,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,116,93,46,108,101,110,103,116,104,125,44,36,95,103,101,116,84,114,97,110,115,112,111,114,116,73,110,100,101,120,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,116,111,44,110,61,116,46,102,114,111,109,59,102,111,114,40,118,97,114,32,114,32,105,110,32,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,101,93,41,105,102,40,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,101,93,91,114,93,46,102,114,111,109,61,61,61,110,41,114,101,116,117,114,110,43,114,59,114,101,116,117,114,110,45,49,125,125,125,41,44,121,61,110,101,119,32,98,40,118,41,44,119,61,49,44,95,61,105,46,101,120,116,101,110,100,40,123,110,97,109,101,58,34,112,111,114,116,97,108,34,44,112,114,111,112,115,58,123,100,105,115,97,98,108,101,100,58,123,116,121,112,101,58,66,111,111,108,101,97,110,125,44,110,97,109,101,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,83,116,114,105,110,103,40,119,43,43,41,125,125,44,111,114,100,101,114,58,123,116,121,112,101,58,78,117,109,98,101,114,44,100,101,102,97,117,108,116,58,48,125,44,115,108,105,109,58,123,116,121,112,101,58,66,111,111,108,101,97,110,125,44,115,108,111,116,80,114,111,112,115,58,123,116,121,112,101,58,79,98,106,101,99,116,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,125,44,116,97,103,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,68,73,86,34,125,44,116,111,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,83,116,114,105,110,103,40,77,97,116,104,46,114,111,117,110,100,40,49,101,55,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,41,125,125,125,44,99,114,101,97,116,101,100,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,121,46,114,101,103,105,115,116,101,114,83,111,117,114,99,101,40,116,46,110,97,109,101,44,116,41,125,41,41,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,124,124,116,104,105,115,46,115,101,110,100,85,112,100,97,116,101,40,41,125,44,117,112,100,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,105,115,97,98,108,101,100,63,116,104,105,115,46,99,108,101,97,114,40,41,58,116,104,105,115,46,115,101,110,100,85,112,100,97,116,101,40,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,121,46,117,110,114,101,103,105,115,116,101,114,83,111,117,114,99,101,40,116,104,105,115,46,110,97,109,101,41,44,116,104,105,115,46,99,108,101,97,114,40,41,125,44,119,97,116,99,104,58,123,116,111,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,38,38,101,33,61,61,116,38,38,116,104,105,115,46,99,108,101,97,114,40,101,41,44,116,104,105,115,46,115,101,110,100,85,112,100,97,116,101,40,41,125,125,44,109,101,116,104,111,100,115,58,123,99,108,101,97,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,123,102,114,111,109,58,116,104,105,115,46,110,97,109,101,44,116,111,58,116,124,124,116,104,105,115,46,116,111,125,59,121,46,99,108,111,115,101,40,101,41,125,44,110,111,114,109,97,108,105,122,101,83,108,111,116,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,63,91,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,93,58,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,125,44,110,111,114,109,97,108,105,122,101,79,119,110,67,104,105,108,100,114,101,110,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,116,40,116,104,105,115,46,115,108,111,116,80,114,111,112,115,41,58,116,125,44,115,101,110,100,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,110,111,114,109,97,108,105,122,101,83,108,111,116,115,40,41,59,105,102,40,116,41,123,118,97,114,32,101,61,123,102,114,111,109,58,116,104,105,115,46,110,97,109,101,44,116,111,58,116,104,105,115,46,116,111,44,112,97,115,115,101,110,103,101,114,115,58,97,40,116,41,44,111,114,100,101,114,58,116,104,105,115,46,111,114,100,101,114,125,59,121,46,111,112,101,110,40,101,41,125,101,108,115,101,32,116,104,105,115,46,99,108,101,97,114,40,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,124,124,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,124,124,91,93,44,110,61,116,104,105,115,46,116,97,103,59,114,101,116,117,114,110,32,101,38,38,116,104,105,115,46,100,105,115,97,98,108,101,100,63,101,46,108,101,110,103,116,104,60,61,49,38,38,116,104,105,115,46,115,108,105,109,63,116,104,105,115,46,110,111,114,109,97,108,105,122,101,79,119,110,67,104,105,108,100,114,101,110,40,101,41,91,48,93,58,116,40,110,44,91,116,104,105,115,46,110,111,114,109,97,108,105,122,101,79,119,110,67,104,105,108,100,114,101,110,40,101,41,93,41,58,116,104,105,115,46,115,108,105,109,63,116,40,41,58,116,40,110,44,123,99,108,97,115,115,58,123,34,118,45,112,111,114,116,97,108,34,58,33,48,125,44,115,116,121,108,101,58,123,100,105,115,112,108,97,121,58,34,110,111,110,101,34,125,44,107,101,121,58,34,118,45,112,111,114,116,97,108,45,112,108,97,99,101,104,111,108,100,101,114,34,125,41,125,125,41,44,120,61,105,46,101,120,116,101,110,100,40,123,110,97,109,101,58,34,112,111,114,116,97,108,84,97,114,103,101,116,34,44,112,114,111,112,115,58,123,109,117,108,116,105,112,108,101,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,44,110,97,109,101,58,123,116,121,112,101,58,83,116,114,105,110,103,44,114,101,113,117,105,114,101,100,58,33,48,125,44,115,108,105,109,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,44,115,108,111,116,80,114,111,112,115,58,123,116,121,112,101,58,79,98,106,101,99,116,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,125,44,116,97,103,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,100,105,118,34,125,44,116,114,97,110,115,105,116,105,111,110,58,123,116,121,112,101,58,91,83,116,114,105,110,103,44,79,98,106,101,99,116,44,70,117,110,99,116,105,111,110,93,125,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,116,114,97,110,115,112,111,114,116,115,58,121,46,116,114,97,110,115,112,111,114,116,115,44,102,105,114,115,116,82,101,110,100,101,114,58,33,48,125,125,44,99,114,101,97,116,101,100,58,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,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,121,46,114,101,103,105,115,116,101,114,84,97,114,103,101,116,40,116,46,110,97,109,101,44,116,41,125,41,41,125,44,119,97,116,99,104,58,123,111,119,110,84,114,97,110,115,112,111,114,116,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,101,109,105,116,40,34,99,104,97,110,103,101,34,44,116,104,105,115,46,99,104,105,108,100,114,101,110,40,41,46,108,101,110,103,116,104,62,48,41,125,44,110,97,109,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,121,46,117,110,114,101,103,105,115,116,101,114,84,97,114,103,101,116,40,101,41,44,121,46,114,101,103,105,115,116,101,114,84,97,114,103,101,116,40,116,44,116,104,105,115,41,125,125,44,109,111,117,110,116,101,100,58,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,116,114,97,110,115,105,116,105,111,110,38,38,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,102,105,114,115,116,82,101,110,100,101,114,61,33,49,125,41,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,121,46,117,110,114,101,103,105,115,116,101,114,84,97,114,103,101,116,40,116,104,105,115,46,110,97,109,101,41,125,44,99,111,109,112,117,116,101,100,58,123,111,119,110,84,114,97,110,115,112,111,114,116,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,116,114,97,110,115,112,111,114,116,115,91,116,104,105,115,46,110,97,109,101,93,124,124,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,109,117,108,116,105,112,108,101,63,116,58,48,61,61,61,116,46,108,101,110,103,116,104,63,91,93,58,91,116,91,116,46,108,101,110,103,116,104,45,49,93,93,125,44,112,97,115,115,101,110,103,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,40,116,104,105,115,46,111,119,110,84,114,97,110,115,112,111,114,116,115,44,116,104,105,115,46,115,108,111,116,80,114,111,112,115,41,125,125,44,109,101,116,104,111,100,115,58,123,99,104,105,108,100,114,101,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,33,61,61,116,104,105,115,46,112,97,115,115,101,110,103,101,114,115,46,108,101,110,103,116,104,63,116,104,105,115,46,112,97,115,115,101,110,103,101,114,115,58,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,63,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,40,116,104,105,115,46,115,108,111,116,80,114,111,112,115,41,58,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,124,124,91,93,125,44,110,111,87,114,97,112,112,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,115,108,105,109,38,38,33,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,59,114,101,116,117,114,110,32,116,38,38,116,104,105,115,46,99,104,105,108,100,114,101,110,40,41,46,108,101,110,103,116,104,62,49,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,91,112,111,114,116,97,108,45,118,117,101,93,58,32,80,111,114,116,97,108,84,97,114,103,101,116,32,119,105,116,104,32,96,115,108,105,109,96,32,111,112,116,105,111,110,32,114,101,99,101,105,118,101,100,32,109,111,114,101,32,116,104,97,110,32,111,110,101,32,99,104,105,108,100,32,101,108,101,109,101,110,116,46,34,41,44,116,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,110,111,87,114,97,112,112,101,114,40,41,44,110,61,116,104,105,115,46,99,104,105,108,100,114,101,110,40,41,44,114,61,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,124,124,116,104,105,115,46,116,97,103,59,114,101,116,117,114,110,32,101,63,110,91,48,93,58,116,104,105,115,46,115,108,105,109,38,38,33,114,63,116,40,41,58,116,40,114,44,123,112,114,111,112,115,58,123,116,97,103,58,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,38,38,116,104,105,115,46,116,97,103,63,116,104,105,115,46,116,97,103,58,118,111,105,100,32,48,125,44,99,108,97,115,115,58,123,34,118,117,101,45,112,111,114,116,97,108,45,116,97,114,103,101,116,34,58,33,48,125,125,44,110,41,125,125,41,44,79,61,48,44,83,61,91,34,100,105,115,97,98,108,101,100,34,44,34,110,97,109,101,34,44,34,111,114,100,101,114,34,44,34,115,108,105,109,34,44,34,115,108,111,116,80,114,111,112,115,34,44,34,116,97,103,34,44,34,116,111,34,93,44,107,61,91,34,109,117,108,116,105,112,108,101,34,44,34,116,114,97,110,115,105,116,105,111,110,34,93,44,67,61,105,46,101,120,116,101,110,100,40,123,110,97,109,101,58,34,77,111,117,110,116,105,110,103,80,111,114,116,97,108,34,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,112,114,111,112,115,58,123,97,112,112,101,110,100,58,123,116,121,112,101,58,91,66,111,111,108,101,97,110,44,83,116,114,105,110,103,93,125,44,98,97,105,108,58,123,116,121,112,101,58,66,111,111,108,101,97,110,125,44,109,111,117,110,116,84,111,58,123,116,121,112,101,58,83,116,114,105,110,103,44,114,101,113,117,105,114,101,100,58,33,48,125,44,100,105,115,97,98,108,101,100,58,123,116,121,112,101,58,66,111,111,108,101,97,110,125,44,110,97,109,101,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,109,111,117,110,116,101,100,95,34,43,83,116,114,105,110,103,40,79,43,43,41,125,125,44,111,114,100,101,114,58,123,116,121,112,101,58,78,117,109,98,101,114,44,100,101,102,97,117,108,116,58,48,125,44,115,108,105,109,58,123,116,121,112,101,58,66,111,111,108,101,97,110,125,44,115,108,111,116,80,114,111,112,115,58,123,116,121,112,101,58,79,98,106,101,99,116,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,125,44,116,97,103,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,68,73,86,34,125,44,116,111,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,83,116,114,105,110,103,40,77,97,116,104,46,114,111,117,110,100,40,49,101,55,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,41,125,125,44,109,117,108,116,105,112,108,101,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,44,116,97,114,103,101,116,83,108,105,109,58,123,116,121,112,101,58,66,111,111,108,101,97,110,125,44,116,97,114,103,101,116,83,108,111,116,80,114,111,112,115,58,123,116,121,112,101,58,79,98,106,101,99,116,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,125,44,116,97,114,103,101,116,84,97,103,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,100,105,118,34,125,44,116,114,97,110,115,105,116,105,111,110,58,123,116,121,112,101,58,91,83,116,114,105,110,103,44,79,98,106,101,99,116,44,70,117,110,99,116,105,111,110,93,125,125,44,99,114,101,97,116,101,100,58,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,33,61,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,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,116,104,105,115,46,109,111,117,110,116,84,111,41,59,105,102,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,36,112,114,111,112,115,59,105,102,40,121,46,116,97,114,103,101,116,115,91,101,46,110,97,109,101,93,41,101,46,98,97,105,108,63,99,111,110,115,111,108,101,46,119,97,114,110,40,34,91,112,111,114,116,97,108,45,118,117,101,93,58,32,84,97,114,103,101,116,32,34,46,99,111,110,99,97,116,40,101,46,110,97,109,101,44,34,32,105,115,32,97,108,114,101,97,100,121,32,109,111,117,110,116,101,100,46,92,110,32,32,32,32,32,32,32,32,65,98,111,114,116,105,110,103,32,98,101,99,97,117,115,101,32,39,98,97,105,108,58,32,116,114,117,101,39,32,105,115,32,115,101,116,34,41,41,58,116,104,105,115,46,112,111,114,116,97,108,84,97,114,103,101,116,61,121,46,116,97,114,103,101,116,115,91,101,46,110,97,109,101,93,59,101,108,115,101,123,118,97,114,32,110,61,101,46,97,112,112,101,110,100,59,105,102,40,110,41,123,118,97,114,32,114,61,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,110,63,110,58,34,68,73,86,34,44,105,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,114,41,59,116,46,97,112,112,101,110,100,67,104,105,108,100,40,105,41,44,116,61,105,125,118,97,114,32,111,61,112,40,116,104,105,115,46,36,112,114,111,112,115,44,107,41,59,111,46,115,108,105,109,61,116,104,105,115,46,116,97,114,103,101,116,83,108,105,109,44,111,46,116,97,103,61,116,104,105,115,46,116,97,114,103,101,116,84,97,103,44,111,46,115,108,111,116,80,114,111,112,115,61,116,104,105,115,46,116,97,114,103,101,116,83,108,111,116,80,114,111,112,115,44,111,46,110,97,109,101,61,116,104,105,115,46,116,111,44,116,104,105,115,46,112,111,114,116,97,108,84,97,114,103,101,116,61,110,101,119,32,120,40,123,101,108,58,116,44,112,97,114,101,110,116,58,116,104,105,115,46,36,112,97,114,101,110,116,124,124,116,104,105,115,44,112,114,111,112,115,68,97,116,97,58,111,125,41,125,125,101,108,115,101,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,34,91,112,111,114,116,97,108,45,118,117,101,93,58,32,77,111,117,110,116,32,80,111,105,110,116,32,39,34,46,99,111,110,99,97,116,40,116,104,105,115,46,109,111,117,110,116,84,111,44,34,39,32,110,111,116,32,102,111,117,110,100,32,105,110,32,100,111,99,117,109,101,110,116,34,41,41,125,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,112,111,114,116,97,108,84,97,114,103,101,116,59,105,102,40,116,104,105,115,46,97,112,112,101,110,100,41,123,118,97,114,32,101,61,116,46,36,101,108,59,101,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,101,41,125,116,46,36,100,101,115,116,114,111,121,40,41,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,104,105,115,46,112,111,114,116,97,108,84,97,114,103,101,116,41,114,101,116,117,114,110,32,99,111,110,115,111,108,101,46,119,97,114,110,40,34,91,112,111,114,116,97,108,45,118,117,101,93,32,84,97,114,103,101,116,32,119,97,115,110,39,116,32,109,111,117,110,116,101,100,34,41,44,116,40,41,59,105,102,40,33,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,109,97,110,117,97,108,41,123,118,97,114,32,101,61,112,40,116,104,105,115,46,36,112,114,111,112,115,44,83,41,59,114,101,116,117,114,110,32,116,40,95,44,123,112,114,111,112,115,58,101,44,97,116,116,114,115,58,116,104,105,115,46,36,97,116,116,114,115,44,111,110,58,116,104,105,115,46,36,108,105,115,116,101,110,101,114,115,44,115,99,111,112,101,100,83,108,111,116,115,58,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,125,44,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,41,125,118,97,114,32,110,61,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,109,97,110,117,97,108,40,123,116,111,58,116,104,105,115,46,116,111,125,41,59,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,38,38,40,110,61,110,91,48,93,41,44,110,124,124,116,40,41,125,125,41,59,102,117,110,99,116,105,111,110,32,80,40,116,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,49,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,123,125,59,116,46,99,111,109,112,111,110,101,110,116,40,101,46,112,111,114,116,97,108,78,97,109,101,124,124,34,80,111,114,116,97,108,34,44,95,41,44,116,46,99,111,109,112,111,110,101,110,116,40,101,46,112,111,114,116,97,108,84,97,114,103,101,116,78,97,109,101,124,124,34,80,111,114,116,97,108,84,97,114,103,101,116,34,44,120,41,44,116,46,99,111,109,112,111,110,101,110,116,40,101,46,77,111,117,110,116,105,110,103,80,111,114,116,97,108,78,97,109,101,124,124,34,77,111,117,110,116,105,110,103,80,111,114,116,97,108,34,44,67,41,125,118,97,114,32,84,61,123,105,110,115,116,97,108,108,58,80,125,59,101,46,104,95,61,95,44,101,46,89,67,61,120,44,101,46,68,102,61,121,125,44,53,54,54,54,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,101,44,110,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,44,114,61,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,105,61,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,124,124,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,91,101,93,61,110,46,118,97,108,117,101,125,44,111,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,63,83,121,109,98,111,108,58,123,125,44,97,61,111,46,105,116,101,114,97,116,111,114,124,124,34,64,64,105,116,101,114,97,116,111,114,34,44,115,61,111,46,97,115,121,110,99,73,116,101,114,97,116,111,114,124,124,34,64,64,97,115,121,110,99,73,116,101,114,97,116,111,114,34,44,99,61,111,46,116,111,83,116,114,105,110,103,84,97,103,124,124,34,64,64,116,111,83,116,114,105,110,103,84,97,103,34,59,102,117,110,99,116,105,111,110,32,117,40,116,44,101,44,110,41,123,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,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,44,116,91,101,93,125,116,114,121,123,117,40,123,125,44,34,34,41,125,99,97,116,99,104,40,76,41,123,117,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,91,101,93,61,110,125,125,102,117,110,99,116,105,111,110,32,108,40,116,44,101,44,110,44,114,41,123,118,97,114,32,111,61,101,38,38,101,46,112,114,111,116,111,116,121,112,101,32,105,110,115,116,97,110,99,101,111,102,32,109,63,101,58,109,44,97,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,111,46,112,114,111,116,111,116,121,112,101,41,44,115,61,110,101,119,32,69,40,114,124,124,91,93,41,59,114,101,116,117,114,110,32,105,40,97,44,34,95,105,110,118,111,107,101,34,44,123,118,97,108,117,101,58,67,40,116,44,110,44,115,41,125,41,44,97,125,102,117,110,99,116,105,111,110,32,102,40,116,44,101,44,110,41,123,116,114,121,123,114,101,116,117,114,110,123,116,121,112,101,58,34,110,111,114,109,97,108,34,44,97,114,103,58,116,46,99,97,108,108,40,101,44,110,41,125,125,99,97,116,99,104,40,76,41,123,114,101,116,117,114,110,123,116,121,112,101,58,34,116,104,114,111,119,34,44,97,114,103,58,76,125,125,125,116,46,119,114,97,112,61,108,59,118,97,114,32,104,61,34,115,117,115,112,101,110,100,101,100,83,116,97,114,116,34,44,100,61,34,115,117,115,112,101,110,100,101,100,89,105,101,108,100,34,44,112,61,34,101,120,101,99,117,116,105,110,103,34,44,118,61,34,99,111,109,112,108,101,116,101,100,34,44,103,61,123,125,59,102,117,110,99,116,105,111,110,32,109,40,41,123,125,102,117,110,99,116,105,111,110,32,98,40,41,123,125,102,117,110,99,116,105,111,110,32,121,40,41,123,125,118,97,114,32,119,61,123,125,59,117,40,119,44,97,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,41,41,59,118,97,114,32,95,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,44,120,61,95,38,38,95,40,95,40,68,40,91,93,41,41,41,59,120,38,38,120,33,61,61,110,38,38,114,46,99,97,108,108,40,120,44,97,41,38,38,40,119,61,120,41,59,118,97,114,32,79,61,121,46,112,114,111,116,111,116,121,112,101,61,109,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,119,41,59,102,117,110,99,116,105,111,110,32,83,40,116,41,123,91,34,110,101,120,116,34,44,34,116,104,114,111,119,34,44,34,114,101,116,117,114,110,34,93,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,117,40,116,44,101,44,40,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,110,118,111,107,101,40,101,44,116,41,125,41,41,125,41,41,125,102,117,110,99,116,105,111,110,32,107,40,116,44,101,41,123,102,117,110,99,116,105,111,110,32,110,40,105,44,111,44,97,44,115,41,123,118,97,114,32,99,61,102,40,116,91,105,93,44,116,44,111,41,59,105,102,40,34,116,104,114,111,119,34,33,61,61,99,46,116,121,112,101,41,123,118,97,114,32,117,61,99,46,97,114,103,44,108,61,117,46,118,97,108,117,101,59,114,101,116,117,114,110,32,108,38,38,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,108,38,38,114,46,99,97,108,108,40,108,44,34,95,95,97,119,97,105,116,34,41,63,101,46,114,101,115,111,108,118,101,40,108,46,95,95,97,119,97,105,116,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,110,40,34,110,101,120,116,34,44,116,44,97,44,115,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,110,40,34,116,104,114,111,119,34,44,116,44,97,44,115,41,125,41,41,58,101,46,114,101,115,111,108,118,101,40,108,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,117,46,118,97,108,117,101,61,116,44,97,40,117,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,34,116,104,114,111,119,34,44,116,44,97,44,115,41,125,41,41,125,115,40,99,46,97,114,103,41,125,118,97,114,32,111,59,102,117,110,99,116,105,111,110,32,97,40,116,44,114,41,123,102,117,110,99,116,105,111,110,32,105,40,41,123,114,101,116,117,114,110,32,110,101,119,32,101,40,40,102,117,110,99,116,105,111,110,40,101,44,105,41,123,110,40,116,44,114,44,101,44,105,41,125,41,41,125,114,101,116,117,114,110,32,111,61,111,63,111,46,116,104,101,110,40,105,44,105,41,58,105,40,41,125,105,40,116,104,105,115,44,34,95,105,110,118,111,107,101,34,44,123,118,97,108,117,101,58,97,125,41,125,102,117,110,99,116,105,111,110,32,67,40,116,44,101,44,110,41,123,118,97,114,32,114,61,104,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,105,44,111,41,123,105,102,40,114,61,61,61,112,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,71,101,110,101,114,97,116,111,114,32,105,115,32,97,108,114,101,97,100,121,32,114,117,110,110,105,110,103,34,41,59,105,102,40,114,61,61,61,118,41,123,105,102,40,34,116,104,114,111,119,34,61,61,61,105,41,116,104,114,111,119,32,111,59,114,101,116,117,114,110,32,65,40,41,125,110,46,109,101,116,104,111,100,61,105,44,110,46,97,114,103,61,111,59,119,104,105,108,101,40,49,41,123,118,97,114,32,97,61,110,46,100,101,108,101,103,97,116,101,59,105,102,40,97,41,123,118,97,114,32,115,61,80,40,97,44,110,41,59,105,102,40,115,41,123,105,102,40,115,61,61,61,103,41,99,111,110,116,105,110,117,101,59,114,101,116,117,114,110,32,115,125,125,105,102,40,34,110,101,120,116,34,61,61,61,110,46,109,101,116,104,111,100,41,110,46,115,101,110,116,61,110,46,95,115,101,110,116,61,110,46,97,114,103,59,101,108,115,101,32,105,102,40,34,116,104,114,111,119,34,61,61,61,110,46,109,101,116,104,111,100,41,123,105,102,40,114,61,61,61,104,41,116,104,114,111,119,32,114,61,118,44,110,46,97,114,103,59,110,46,100,105,115,112,97,116,99,104,69,120,99,101,112,116,105,111,110,40,110,46,97,114,103,41,125,101,108,115,101,34,114,101,116,117,114,110,34,61,61,61,110,46,109,101,116,104,111,100,38,38,110,46,97,98,114,117,112,116,40,34,114,101,116,117,114,110,34,44,110,46,97,114,103,41,59,114,61,112,59,118,97,114,32,99,61,102,40,116,44,101,44,110,41,59,105,102,40,34,110,111,114,109,97,108,34,61,61,61,99,46,116,121,112,101,41,123,105,102,40,114,61,110,46,100,111,110,101,63,118,58,100,44,99,46,97,114,103,61,61,61,103,41,99,111,110,116,105,110,117,101,59,114,101,116,117,114,110,123,118,97,108,117,101,58,99,46,97,114,103,44,100,111,110,101,58,110,46,100,111,110,101,125,125,34,116,104,114,111,119,34,61,61,61,99,46,116,121,112,101,38,38,40,114,61,118,44,110,46,109,101,116,104,111,100,61,34,116,104,114,111,119,34,44,110,46,97,114,103,61,99,46,97,114,103,41,125,125,125,102,117,110,99,116,105,111,110,32,80,40,116,44,110,41,123,118,97,114,32,114,61,110,46,109,101,116,104,111,100,44,105,61,116,46,105,116,101,114,97,116,111,114,91,114,93,59,105,102,40,105,61,61,61,101,41,114,101,116,117,114,110,32,110,46,100,101,108,101,103,97,116,101,61,110,117,108,108,44,34,116,104,114,111,119,34,61,61,61,114,38,38,116,46,105,116,101,114,97,116,111,114,91,34,114,101,116,117,114,110,34,93,38,38,40,110,46,109,101,116,104,111,100,61,34,114,101,116,117,114,110,34,44,110,46,97,114,103,61,101,44,80,40,116,44,110,41,44,34,116,104,114,111,119,34,61,61,61,110,46,109,101,116,104,111,100,41,124,124,34,114,101,116,117,114,110,34,33,61,61,114,38,38,40,110,46,109,101,116,104,111,100,61,34,116,104,114,111,119,34,44,110,46,97,114,103,61,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,84,104,101,32,105,116,101,114,97,116,111,114,32,100,111,101,115,32,110,111,116,32,112,114,111,118,105,100,101,32,97,32,39,34,43,114,43,34,39,32,109,101,116,104,111,100,34,41,41,44,103,59,118,97,114,32,111,61,102,40,105,44,116,46,105,116,101,114,97,116,111,114,44,110,46,97,114,103,41,59,105,102,40,34,116,104,114,111,119,34,61,61,61,111,46,116,121,112,101,41,114,101,116,117,114,110,32,110,46,109,101,116,104,111,100,61,34,116,104,114,111,119,34,44,110,46,97,114,103,61,111,46,97,114,103,44,110,46,100,101,108,101,103,97,116,101,61,110,117,108,108,44,103,59,118,97,114,32,97,61,111,46,97,114,103,59,114,101,116,117,114,110,32,97,63,97,46,100,111,110,101,63,40,110,91,116,46,114,101,115,117,108,116,78,97,109,101,93,61,97,46,118,97,108,117,101,44,110,46,110,101,120,116,61,116,46,110,101,120,116,76,111,99,44,34,114,101,116,117,114,110,34,33,61,61,110,46,109,101,116,104,111,100,38,38,40,110,46,109,101,116,104,111,100,61,34,110,101,120,116,34,44,110,46,97,114,103,61,101,41,44,110,46,100,101,108,101,103,97,116,101,61,110,117,108,108,44,103,41,58,97,58,40,110,46,109,101,116,104,111,100,61,34,116,104,114,111,119,34,44,110,46,97,114,103,61,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,105,116,101,114,97,116,111,114,32,114,101,115,117,108,116,32,105,115,32,110,111,116,32,97,110,32,111,98,106,101,99,116,34,41,44,110,46,100,101,108,101,103,97,116,101,61,110,117,108,108,44,103,41,125,102,117,110,99,116,105,111,110,32,84,40,116,41,123,118,97,114,32,101,61,123,116,114,121,76,111,99,58,116,91,48,93,125,59,49,32,105,110,32,116,38,38,40,101,46,99,97,116,99,104,76,111,99,61,116,91,49,93,41,44,50,32,105,110,32,116,38,38,40,101,46,102,105,110,97,108,108,121,76,111,99,61,116,91,50,93,44,101,46,97,102,116,101,114,76,111,99,61,116,91,51,93,41,44,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,46,112,117,115,104,40,101,41,125,102,117,110,99,116,105,111,110,32,106,40,116,41,123,118,97,114,32,101,61,116,46,99,111,109,112,108,101,116,105,111,110,124,124,123,125,59,101,46,116,121,112,101,61,34,110,111,114,109,97,108,34,44,100,101,108,101,116,101,32,101,46,97,114,103,44,116,46,99,111,109,112,108,101,116,105,111,110,61,101,125,102,117,110,99,116,105,111,110,32,69,40,116,41,123,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,61,91,123,116,114,121,76,111,99,58,34,114,111,111,116,34,125,93,44,116,46,102,111,114,69,97,99,104,40,84,44,116,104,105,115,41,44,116,104,105,115,46,114,101,115,101,116,40,33,48,41,125,102,117,110,99,116,105,111,110,32,68,40,116,41,123,105,102,40,116,41,123,118,97,114,32,110,61,116,91,97,93,59,105,102,40,110,41,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,41,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,46,110,101,120,116,41,114,101,116,117,114,110,32,116,59,105,102,40,33,105,115,78,97,78,40,116,46,108,101,110,103,116,104,41,41,123,118,97,114,32,105,61,45,49,44,111,61,102,117,110,99,116,105,111,110,32,110,40,41,123,119,104,105,108,101,40,43,43,105,60,116,46,108,101,110,103,116,104,41,105,102,40,114,46,99,97,108,108,40,116,44,105,41,41,114,101,116,117,114,110,32,110,46,118,97,108,117,101,61,116,91,105,93,44,110,46,100,111,110,101,61,33,49,44,110,59,114,101,116,117,114,110,32,110,46,118,97,108,117,101,61,101,44,110,46,100,111,110,101,61,33,48,44,110,125,59,114,101,116,117,114,110,32,111,46,110,101,120,116,61,111,125,125,114,101,116,117,114,110,123,110,101,120,116,58,65,125,125,102,117,110,99,116,105,111,110,32,65,40,41,123,114,101,116,117,114,110,123,118,97,108,117,101,58,101,44,100,111,110,101,58,33,48,125,125,114,101,116,117,114,110,32,98,46,112,114,111,116,111,116,121,112,101,61,121,44,105,40,79,44,34,99,111,110,115,116,114,117,99,116,111,114,34,44,123,118,97,108,117,101,58,121,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,41,44,105,40,121,44,34,99,111,110,115,116,114,117,99,116,111,114,34,44,123,118,97,108,117,101,58,98,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,41,44,98,46,100,105,115,112,108,97,121,78,97,109,101,61,117,40,121,44,99,44,34,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,34,41,44,116,46,105,115,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,59,114,101,116,117,114,110,33,33,101,38,38,40,101,61,61,61,98,124,124,34,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,34,61,61,61,40,101,46,100,105,115,112,108,97,121,78,97,109,101,124,124,101,46,110,97,109,101,41,41,125,44,116,46,109,97,114,107,61,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,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,121,41,58,40,116,46,95,95,112,114,111,116,111,95,95,61,121,44,117,40,116,44,99,44,34,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,34,41,41,44,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,79,41,44,116,125,44,116,46,97,119,114,97,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,95,95,97,119,97,105,116,58,116,125,125,44,83,40,107,46,112,114,111,116,111,116,121,112,101,41,44,117,40,107,46,112,114,111,116,111,116,121,112,101,44,115,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,41,41,44,116,46,65,115,121,110,99,73,116,101,114,97,116,111,114,61,107,44,116,46,97,115,121,110,99,61,102,117,110,99,116,105,111,110,40,101,44,110,44,114,44,105,44,111,41,123,118,111,105,100,32,48,61,61,61,111,38,38,40,111,61,80,114,111,109,105,115,101,41,59,118,97,114,32,97,61,110,101,119,32,107,40,108,40,101,44,110,44,114,44,105,41,44,111,41,59,114,101,116,117,114,110,32,116,46,105,115,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,40,110,41,63,97,58,97,46,110,101,120,116,40,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,100,111,110,101,63,116,46,118,97,108,117,101,58,97,46,110,101,120,116,40,41,125,41,41,125,44,83,40,79,41,44,117,40,79,44,99,44,34,71,101,110,101,114,97,116,111,114,34,41,44,117,40,79,44,97,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,41,41,44,117,40,79,44,34,116,111,83,116,114,105,110,103,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,71,101,110,101,114,97,116,111,114,93,34,125,41,41,44,116,46,107,101,121,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,79,98,106,101,99,116,40,116,41,44,110,61,91,93,59,102,111,114,40,118,97,114,32,114,32,105,110,32,101,41,110,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,110,46,114,101,118,101,114,115,101,40,41,44,102,117,110,99,116,105,111,110,32,116,40,41,123,119,104,105,108,101,40,110,46,108,101,110,103,116,104,41,123,118,97,114,32,114,61,110,46,112,111,112,40,41,59,105,102,40,114,32,105,110,32,101,41,114,101,116,117,114,110,32,116,46,118,97,108,117,101,61,114,44,116,46,100,111,110,101,61,33,49,44,116,125,114,101,116,117,114,110,32,116,46,100,111,110,101,61,33,48,44,116,125,125,44,116,46,118,97,108,117,101,115,61,68,44,69,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,69,44,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,112,114,101,118,61,48,44,116,104,105,115,46,110,101,120,116,61,48,44,116,104,105,115,46,115,101,110,116,61,116,104,105,115,46,95,115,101,110,116,61,101,44,116,104,105,115,46,100,111,110,101,61,33,49,44,116,104,105,115,46,100,101,108,101,103,97,116,101,61,110,117,108,108,44,116,104,105,115,46,109,101,116,104,111,100,61,34,110,101,120,116,34,44,116,104,105,115,46,97,114,103,61,101,44,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,46,102,111,114,69,97,99,104,40,106,41,44,33,116,41,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,116,34,61,61,61,110,46,99,104,97,114,65,116,40,48,41,38,38,114,46,99,97,108,108,40,116,104,105,115,44,110,41,38,38,33,105,115,78,97,78,40,43,110,46,115,108,105,99,101,40,49,41,41,38,38,40,116,104,105,115,91,110,93,61,101,41,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,100,111,110,101,61,33,48,59,118,97,114,32,116,61,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,91,48,93,44,101,61,116,46,99,111,109,112,108,101,116,105,111,110,59,105,102,40,34,116,104,114,111,119,34,61,61,61,101,46,116,121,112,101,41,116,104,114,111,119,32,101,46,97,114,103,59,114,101,116,117,114,110,32,116,104,105,115,46,114,118,97,108,125,44,100,105,115,112,97,116,99,104,69,120,99,101,112,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,100,111,110,101,41,116,104,114,111,119,32,116,59,118,97,114,32,110,61,116,104,105,115,59,102,117,110,99,116,105,111,110,32,105,40,114,44,105,41,123,114,101,116,117,114,110,32,115,46,116,121,112,101,61,34,116,104,114,111,119,34,44,115,46,97,114,103,61,116,44,110,46,110,101,120,116,61,114,44,105,38,38,40,110,46,109,101,116,104,111,100,61,34,110,101,120,116,34,44,110,46,97,114,103,61,101,41,44,33,33,105,125,102,111,114,40,118,97,114,32,111,61,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,46,108,101,110,103,116,104,45,49,59,111,62,61,48,59,45,45,111,41,123,118,97,114,32,97,61,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,91,111,93,44,115,61,97,46,99,111,109,112,108,101,116,105,111,110,59,105,102,40,34,114,111,111,116,34,61,61,61,97,46,116,114,121,76,111,99,41,114,101,116,117,114,110,32,105,40,34,101,110,100,34,41,59,105,102,40,97,46,116,114,121,76,111,99,60,61,116,104,105,115,46,112,114,101,118,41,123,118,97,114,32,99,61,114,46,99,97,108,108,40,97,44,34,99,97,116,99,104,76,111,99,34,41,44,117,61,114,46,99,97,108,108,40,97,44,34,102,105,110,97,108,108,121,76,111,99,34,41,59,105,102,40,99,38,38,117,41,123,105,102,40,116,104,105,115,46,112,114,101,118,60,97,46,99,97,116,99,104,76,111,99,41,114,101,116,117,114,110,32,105,40,97,46,99,97,116,99,104,76,111,99,44,33,48,41,59,105,102,40,116,104,105,115,46,112,114,101,118,60,97,46,102,105,110,97,108,108,121,76,111,99,41,114,101,116,117,114,110,32,105,40,97,46,102,105,110,97,108,108,121,76,111,99,41,125,101,108,115,101,32,105,102,40,99,41,123,105,102,40,116,104,105,115,46,112,114,101,118,60,97,46,99,97,116,99,104,76,111,99,41,114,101,116,117,114,110,32,105,40,97,46,99,97,116,99,104,76,111,99,44,33,48,41,125,101,108,115,101,123,105,102,40,33,117,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,116,114,121,32,115,116,97,116,101,109,101,110,116,32,119,105,116,104,111,117,116,32,99,97,116,99,104,32,111,114,32,102,105,110,97,108,108,121,34,41,59,105,102,40,116,104,105,115,46,112,114,101,118,60,97,46,102,105,110,97,108,108,121,76,111,99,41,114,101,116,117,114,110,32,105,40,97,46,102,105,110,97,108,108,121,76,111,99,41,125,125,125,125,44,97,98,114,117,112,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,46,108,101,110,103,116,104,45,49,59,110,62,61,48,59,45,45,110,41,123,118,97,114,32,105,61,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,91,110,93,59,105,102,40,105,46,116,114,121,76,111,99,60,61,116,104,105,115,46,112,114,101,118,38,38,114,46,99,97,108,108,40,105,44,34,102,105,110,97,108,108,121,76,111,99,34,41,38,38,116,104,105,115,46,112,114,101,118,60,105,46,102,105,110,97,108,108,121,76,111,99,41,123,118,97,114,32,111,61,105,59,98,114,101,97,107,125,125,111,38,38,40,34,98,114,101,97,107,34,61,61,61,116,124,124,34,99,111,110,116,105,110,117,101,34,61,61,61,116,41,38,38,111,46,116,114,121,76,111,99,60,61,101,38,38,101,60,61,111,46,102,105,110,97,108,108,121,76,111,99,38,38,40,111,61,110,117,108,108,41,59,118,97,114,32,97,61,111,63,111,46,99,111,109,112,108,101,116,105,111,110,58,123,125,59,114,101,116,117,114,110,32,97,46,116,121,112,101,61,116,44,97,46,97,114,103,61,101,44,111,63,40,116,104,105,115,46,109,101,116,104,111,100,61,34,110,101,120,116,34,44,116,104,105,115,46,110,101,120,116,61,111,46,102,105,110,97,108,108,121,76,111,99,44,103,41,58,116,104,105,115,46,99,111,109,112,108,101,116,101,40,97,41,125,44,99,111,109,112,108,101,116,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,34,116,104,114,111,119,34,61,61,61,116,46,116,121,112,101,41,116,104,114,111,119,32,116,46,97,114,103,59,114,101,116,117,114,110,34,98,114,101,97,107,34,61,61,61,116,46,116,121,112,101,124,124,34,99,111,110,116,105,110,117,101,34,61,61,61,116,46,116,121,112,101,63,116,104,105,115,46,110,101,120,116,61,116,46,97,114,103,58,34,114,101,116,117,114,110,34,61,61,61,116,46,116,121,112,101,63,40,116,104,105,115,46,114,118,97,108,61,116,104,105,115,46,97,114,103,61,116,46,97,114,103,44,116,104,105,115,46,109,101,116,104,111,100,61,34,114,101,116,117,114,110,34,44,116,104,105,115,46,110,101,120,116,61,34,101,110,100,34,41,58,34,110,111,114,109,97,108,34,61,61,61,116,46,116,121,112,101,38,38,101,38,38,40,116,104,105,115,46,110,101,120,116,61,101,41,44,103,125,44,102,105,110,105,115,104,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,46,108,101,110,103,116,104,45,49,59,101,62,61,48,59,45,45,101,41,123,118,97,114,32,110,61,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,91,101,93,59,105,102,40,110,46,102,105,110,97,108,108,121,76,111,99,61,61,61,116,41,114,101,116,117,114,110,32,116,104,105,115,46,99,111,109,112,108,101,116,101,40,110,46,99,111,109,112,108,101,116,105,111,110,44,110,46,97,102,116,101,114,76,111,99,41,44,106,40,110,41,44,103,125,125,44,99,97,116,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,46,108,101,110,103,116,104,45,49,59,101,62,61,48,59,45,45,101,41,123,118,97,114,32,110,61,116,104,105,115,46,116,114,121,69,110,116,114,105,101,115,91,101,93,59,105,102,40,110,46,116,114,121,76,111,99,61,61,61,116,41,123,118,97,114,32,114,61,110,46,99,111,109,112,108,101,116,105,111,110,59,105,102,40,34,116,104,114,111,119,34,61,61,61,114,46,116,121,112,101,41,123,118,97,114,32,105,61,114,46,97,114,103,59,106,40,110,41,125,114,101,116,117,114,110,32,105,125,125,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,108,108,101,103,97,108,32,99,97,116,99,104,32,97,116,116,101,109,112,116,34,41,125,44,100,101,108,101,103,97,116,101,89,105,101,108,100,58,102,117,110,99,116,105,111,110,40,116,44,110,44,114,41,123,114,101,116,117,114,110,32,116,104,105,115,46,100,101,108,101,103,97,116,101,61,123,105,116,101,114,97,116,111,114,58,68,40,116,41,44,114,101,115,117,108,116,78,97,109,101,58,110,44,110,101,120,116,76,111,99,58,114,125,44,34,110,101,120,116,34,61,61,61,116,104,105,115,46,109,101,116,104,111,100,38,38,40,116,104,105,115,46,97,114,103,61,101,41,44,103,125,125,44,116,125,40,116,46,101,120,112,111,114,116,115,41,59,116,114,121,123,114,101,103,101,110,101,114,97,116,111,114,82,117,110,116,105,109,101,61,101,125,99,97,116,99,104,40,110,41,123,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,103,108,111,98,97,108,84,104,105,115,63,103,108,111,98,97,108,84,104,105,115,46,114,101,103,101,110,101,114,97,116,111,114,82,117,110,116,105,109,101,61,101,58,70,117,110,99,116,105,111,110,40,34,114,34,44,34,114,101,103,101,110,101,114,97,116,111,114,82,117,110,116,105,109,101,32,61,32,114,34,41,40,101,41,125,125,44,52,48,50,51,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,33,102,117,110,99,116,105,111,110,40,101,44,110,41,123,116,46,101,120,112,111,114,116,115,61,110,40,41,125,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,38,38,115,101,108,102,44,40,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,116,41,123,102,117,110,99,116,105,111,110,32,101,40,114,41,123,105,102,40,110,91,114,93,41,114,101,116,117,114,110,32,110,91,114,93,46,101,120,112,111,114,116,115,59,118,97,114,32,105,61,110,91,114,93,61,123,105,58,114,44,108,58,33,49,44,101,120,112,111,114,116,115,58,123,125,125,59,114,101,116,117,114,110,32,116,91,114,93,46,99,97,108,108,40,105,46,101,120,112,111,114,116,115,44,105,44,105,46,101,120,112,111,114,116,115,44,101,41,44,105,46,108,61,33,48,44,105,46,101,120,112,111,114,116,115,125,118,97,114,32,110,61,123,125,59,114,101,116,117,114,110,32,101,46,109,61,116,44,101,46,99,61,110,44,101,46,100,61,102,117,110,99,116,105,111,110,40,116,44,110,44,114,41,123,101,46,111,40,116,44,110,41,124,124,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,110,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,48,44,103,101,116,58,114,125,41,125,44,101,46,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,100,101,102,97,117,108,116,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,59,114,101,116,117,114,110,32,101,46,100,40,110,44,34,97,34,44,110,41,44,110,125,44,101,46,111,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,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,116,44,101,41,125,44,101,46,112,61,34,34,44,101,40,101,46,115,61,54,48,41,125,40,91,102,117,110,99,116,105,111,110,40,116,44,101,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,91,49,93,124,124,34,34,44,105,61,116,91,51,93,59,105,102,40,33,105,41,114,101,116,117,114,110,32,110,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,98,116,111,97,41,123,118,97,114,32,111,61,114,40,105,41,59,114,101,116,117,114,110,91,110,93,46,99,111,110,99,97,116,40,105,46,115,111,117,114,99,101,115,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,47,42,35,32,115,111,117,114,99,101,85,82,76,61,34,43,105,46,115,111,117,114,99,101,82,111,111,116,43,116,43,34,32,42,47,34,125,41,41,41,46,99,111,110,99,97,116,40,91,111,93,41,46,106,111,105,110,40,34,92,110,34,41,125,114,101,116,117,114,110,91,110,93,46,106,111,105,110,40,34,92,110,34,41,125,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,34,47,42,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,100,97,116,97,58,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,59,99,104,97,114,115,101,116,61,117,116,102,45,56,59,98,97,115,101,54,52,44,34,43,98,116,111,97,40,117,110,101,115,99,97,112,101,40,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,41,41,41,41,43,34,32,42,47,34,125,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,91,93,59,114,101,116,117,114,110,32,101,46,116,111,83,116,114,105,110,103,61,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,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,110,40,101,44,116,41,59,114,101,116,117,114,110,32,101,91,50,93,63,34,64,109,101,100,105,97,32,34,43,101,91,50,93,43,34,123,34,43,114,43,34,125,34,58,114,125,41,41,46,106,111,105,110,40,34,34,41,125,44,101,46,105,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,40,116,61,91,91,110,117,108,108,44,116,44,34,34,93,93,41,59,102,111,114,40,118,97,114,32,114,61,123,125,44,105,61,48,59,105,60,116,104,105,115,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,111,61,116,104,105,115,91,105,93,91,48,93,59,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,111,38,38,40,114,91,111,93,61,33,48,41,125,102,111,114,40,105,61,48,59,105,60,116,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,97,61,116,91,105,93,59,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,97,91,48,93,38,38,114,91,97,91,48,93,93,124,124,40,110,38,38,33,97,91,50,93,63,97,91,50,93,61,110,58,110,38,38,40,97,91,50,93,61,34,40,34,43,97,91,50,93,43,34,41,32,97,110,100,32,40,34,43,110,43,34,41,34,41,44,101,46,112,117,115,104,40,97,41,41,125,125,44,101,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,102,117,110,99,116,105,111,110,32,114,40,116,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,116,46,108,101,110,103,116,104,59,101,43,43,41,123,118,97,114,32,110,61,116,91,101,93,44,114,61,108,91,110,46,105,100,93,59,105,102,40,114,41,123,114,46,114,101,102,115,43,43,59,102,111,114,40,118,97,114,32,105,61,48,59,105,60,114,46,112,97,114,116,115,46,108,101,110,103,116,104,59,105,43,43,41,114,46,112,97,114,116,115,91,105,93,40,110,46,112,97,114,116,115,91,105,93,41,59,102,111,114,40,59,105,60,110,46,112,97,114,116,115,46,108,101,110,103,116,104,59,105,43,43,41,114,46,112,97,114,116,115,46,112,117,115,104,40,111,40,110,46,112,97,114,116,115,91,105,93,41,41,59,114,46,112,97,114,116,115,46,108,101,110,103,116,104,62,110,46,112,97,114,116,115,46,108,101,110,103,116,104,38,38,40,114,46,112,97,114,116,115,46,108,101,110,103,116,104,61,110,46,112,97,114,116,115,46,108,101,110,103,116,104,41,125,101,108,115,101,123,118,97,114,32,97,61,91,93,59,102,111,114,40,105,61,48,59,105,60,110,46,112,97,114,116,115,46,108,101,110,103,116,104,59,105,43,43,41,97,46,112,117,115,104,40,111,40,110,46,112,97,114,116,115,91,105,93,41,41,59,108,91,110,46,105,100,93,61,123,105,100,58,110,46,105,100,44,114,101,102,115,58,49,44,112,97,114,116,115,58,97,125,125,125,125,102,117,110,99,116,105,111,110,32,105,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,115,116,121,108,101,34,41,59,114,101,116,117,114,110,32,116,46,116,121,112,101,61,34,116,101,120,116,47,99,115,115,34,44,102,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,44,116,125,102,117,110,99,116,105,111,110,32,111,40,116,41,123,118,97,114,32,101,44,110,44,114,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,115,116,121,108,101,91,34,43,109,43,39,126,61,34,39,43,116,46,105,100,43,39,34,93,39,41,59,105,102,40,114,41,123,105,102,40,112,41,114,101,116,117,114,110,32,118,59,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,125,105,102,40,98,41,123,118,97,114,32,111,61,100,43,43,59,114,61,104,124,124,40,104,61,105,40,41,41,44,101,61,97,46,98,105,110,100,40,110,117,108,108,44,114,44,111,44,33,49,41,44,110,61,97,46,98,105,110,100,40,110,117,108,108,44,114,44,111,44,33,48,41,125,101,108,115,101,32,114,61,105,40,41,44,101,61,115,46,98,105,110,100,40,110,117,108,108,44,114,41,44,110,61,102,117,110,99,116,105,111,110,40,41,123,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,125,59,114,101,116,117,114,110,32,101,40,116,41,44,102,117,110,99,116,105,111,110,40,114,41,123,105,102,40,114,41,123,105,102,40,114,46,99,115,115,61,61,61,116,46,99,115,115,38,38,114,46,109,101,100,105,97,61,61,61,116,46,109,101,100,105,97,38,38,114,46,115,111,117,114,99,101,77,97,112,61,61,61,116,46,115,111,117,114,99,101,77,97,112,41,114,101,116,117,114,110,59,101,40,116,61,114,41,125,101,108,115,101,32,110,40,41,125,125,102,117,110,99,116,105,111,110,32,97,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,110,63,34,34,58,114,46,99,115,115,59,105,102,40,116,46,115,116,121,108,101,83,104,101,101,116,41,116,46,115,116,121,108,101,83,104,101,101,116,46,99,115,115,84,101,120,116,61,121,40,101,44,105,41,59,101,108,115,101,123,118,97,114,32,111,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,105,41,44,97,61,116,46,99,104,105,108,100,78,111,100,101,115,59,97,91,101,93,38,38,116,46,114,101,109,111,118,101,67,104,105,108,100,40,97,91,101,93,41,44,97,46,108,101,110,103,116,104,63,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,111,44,97,91,101,93,41,58,116,46,97,112,112,101,110,100,67,104,105,108,100,40,111,41,125,125,102,117,110,99,116,105,111,110,32,115,40,116,44,101,41,123,118,97,114,32,110,61,101,46,99,115,115,44,114,61,101,46,109,101,100,105,97,44,105,61,101,46,115,111,117,114,99,101,77,97,112,59,105,102,40,114,38,38,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,109,101,100,105,97,34,44,114,41,44,103,46,115,115,114,73,100,38,38,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,109,44,101,46,105,100,41,44,105,38,38,40,110,43,61,34,92,110,47,42,35,32,115,111,117,114,99,101,85,82,76,61,34,43,105,46,115,111,117,114,99,101,115,91,48,93,43,34,32,42,47,34,44,110,43,61,34,92,110,47,42,35,32,115,111,117,114,99,101,77,97,112,112,105,110,103,85,82,76,61,100,97,116,97,58,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,59,98,97,115,101,54,52,44,34,43,98,116,111,97,40,117,110,101,115,99,97,112,101,40,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,105,41,41,41,41,43,34,32,42,47,34,41,44,116,46,115,116,121,108,101,83,104,101,101,116,41,116,46,115,116,121,108,101,83,104,101,101,116,46,99,115,115,84,101,120,116,61,110,59,101,108,115,101,123,102,111,114,40,59,116,46,102,105,114,115,116,67,104,105,108,100,59,41,116,46,114,101,109,111,118,101,67,104,105,108,100,40,116,46,102,105,114,115,116,67,104,105,108,100,41,59,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,110,41,41,125,125,118,97,114,32,99,61,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,59,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,68,69,66,85,71,38,38,68,69,66,85,71,38,38,33,99,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,118,117,101,45,115,116,121,108,101,45,108,111,97,100,101,114,32,99,97,110,110,111,116,32,98,101,32,117,115,101,100,32,105,110,32,97,32,110,111,110,45,98,114,111,119,115,101,114,32,101,110,118,105,114,111,110,109,101,110,116,46,32,85,115,101,32,123,32,116,97,114,103,101,116,58,32,39,110,111,100,101,39,32,125,32,105,110,32,121,111,117,114,32,87,101,98,112,97,99,107,32,99,111,110,102,105,103,32,116,111,32,105,110,100,105,99,97,116,101,32,97,32,115,101,114,118,101,114,45,114,101,110,100,101,114,105,110,103,32,101,110,118,105,114,111,110,109,101,110,116,46,34,41,59,118,97,114,32,117,61,110,40,54,52,41,44,108,61,123,125,44,102,61,99,38,38,40,100,111,99,117,109,101,110,116,46,104,101,97,100,124,124,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,34,104,101,97,100,34,41,91,48,93,41,44,104,61,110,117,108,108,44,100,61,48,44,112,61,33,49,44,118,61,102,117,110,99,116,105,111,110,40,41,123,125,44,103,61,110,117,108,108,44,109,61,34,100,97,116,97,45,118,117,101,45,115,115,114,45,105,100,34,44,98,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,110,97,118,105,103,97,116,111,114,38,38,47,109,115,105,101,32,91,54,45,57,93,92,98,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,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,105,41,123,112,61,110,44,103,61,105,124,124,123,125,59,118,97,114,32,111,61,117,40,116,44,101,41,59,114,101,116,117,114,110,32,114,40,111,41,44,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,110,61,91,93,44,105,61,48,59,105,60,111,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,97,61,111,91,105,93,44,115,61,108,91,97,46,105,100,93,59,115,46,114,101,102,115,45,45,44,110,46,112,117,115,104,40,115,41,125,101,63,40,111,61,117,40,116,44,101,41,44,114,40,111,41,41,58,111,61,91,93,59,102,111,114,40,105,61,48,59,105,60,110,46,108,101,110,103,116,104,59,105,43,43,41,123,115,61,110,91,105,93,59,105,102,40,48,61,61,61,115,46,114,101,102,115,41,123,102,111,114,40,118,97,114,32,99,61,48,59,99,60,115,46,112,97,114,116,115,46,108,101,110,103,116,104,59,99,43,43,41,115,46,112,97,114,116,115,91,99,93,40,41,59,100,101,108,101,116,101,32,108,91,115,46,105,100,93,125,125,125,125,59,118,97,114,32,121,61,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,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,116,91,101,93,61,110,44,116,46,102,105,108,116,101,114,40,66,111,111,108,101,97,110,41,46,106,111,105,110,40,34,92,110,34,41,125,125,40,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,44,115,61,116,61,116,124,124,123,125,44,99,61,116,121,112,101,111,102,32,116,46,100,101,102,97,117,108,116,59,34,111,98,106,101,99,116,34,33,61,61,99,38,38,34,102,117,110,99,116,105,111,110,34,33,61,61,99,124,124,40,97,61,116,44,115,61,116,46,100,101,102,97,117,108,116,41,59,118,97,114,32,117,44,108,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,115,63,115,46,111,112,116,105,111,110,115,58,115,59,105,102,40,101,38,38,40,108,46,114,101,110,100,101,114,61,101,46,114,101,110,100,101,114,44,108,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,61,101,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,44,108,46,95,99,111,109,112,105,108,101,100,61,33,48,41,44,110,38,38,40,108,46,102,117,110,99,116,105,111,110,97,108,61,33,48,41,44,105,38,38,40,108,46,95,115,99,111,112,101,73,100,61,105,41,44,111,63,40,117,61,102,117,110,99,116,105,111,110,40,116,41,123,116,61,116,124,124,116,104,105,115,46,36,118,110,111,100,101,38,38,116,104,105,115,46,36,118,110,111,100,101,46,115,115,114,67,111,110,116,101,120,116,124,124,116,104,105,115,46,112,97,114,101,110,116,38,38,116,104,105,115,46,112,97,114,101,110,116,46,36,118,110,111,100,101,38,38,116,104,105,115,46,112,97,114,101,110,116,46,36,118,110,111,100,101,46,115,115,114,67,111,110,116,101,120,116,44,116,124,124,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,95,95,86,85,69,95,83,83,82,95,67,79,78,84,69,88,84,95,95,124,124,40,116,61,95,95,86,85,69,95,83,83,82,95,67,79,78,84,69,88,84,95,95,41,44,114,38,38,114,46,99,97,108,108,40,116,104,105,115,44,116,41,44,116,38,38,116,46,95,114,101,103,105,115,116,101,114,101,100,67,111,109,112,111,110,101,110,116,115,38,38,116,46,95,114,101,103,105,115,116,101,114,101,100,67,111,109,112,111,110,101,110,116,115,46,97,100,100,40,111,41,125,44,108,46,95,115,115,114,82,101,103,105,115,116,101,114,61,117,41,58,114,38,38,40,117,61,114,41,44,117,41,123,118,97,114,32,102,61,108,46,102,117,110,99,116,105,111,110,97,108,44,104,61,102,63,108,46,114,101,110,100,101,114,58,108,46,98,101,102,111,114,101,67,114,101,97,116,101,59,102,63,40,108,46,95,105,110,106,101,99,116,83,116,121,108,101,115,61,117,44,108,46,114,101,110,100,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,117,46,99,97,108,108,40,101,41,44,104,40,116,44,101,41,125,41,58,108,46,98,101,102,111,114,101,67,114,101,97,116,101,61,104,63,91,93,46,99,111,110,99,97,116,40,104,44,117,41,58,91,117,93,125,114,101,116,117,114,110,123,101,115,77,111,100,117,108,101,58,97,44,101,120,112,111,114,116,115,58,115,44,111,112,116,105,111,110,115,58,108,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,118,97,114,32,110,44,114,61,116,38,38,116,46,97,59,33,40,110,61,116,38,38,116,46,104,115,108,63,40,48,44,111,46,100,101,102,97,117,108,116,41,40,116,46,104,115,108,41,58,116,38,38,116,46,104,101,120,38,38,116,46,104,101,120,46,108,101,110,103,116,104,62,48,63,40,48,44,111,46,100,101,102,97,117,108,116,41,40,116,46,104,101,120,41,58,116,38,38,116,46,104,115,118,63,40,48,44,111,46,100,101,102,97,117,108,116,41,40,116,46,104,115,118,41,58,116,38,38,116,46,114,103,98,97,63,40,48,44,111,46,100,101,102,97,117,108,116,41,40,116,46,114,103,98,97,41,58,116,38,38,116,46,114,103,98,63,40,48,44,111,46,100,101,102,97,117,108,116,41,40,116,46,114,103,98,41,58,40,48,44,111,46,100,101,102,97,117,108,116,41,40,116,41,41,124,124,118,111,105,100,32,48,33,61,61,110,46,95,97,38,38,110,117,108,108,33,61,61,110,46,95,97,124,124,110,46,115,101,116,65,108,112,104,97,40,114,124,124,49,41,59,118,97,114,32,105,61,110,46,116,111,72,115,108,40,41,44,97,61,110,46,116,111,72,115,118,40,41,59,114,101,116,117,114,110,32,48,61,61,61,105,46,115,38,38,40,97,46,104,61,105,46,104,61,116,46,104,124,124,116,46,104,115,108,38,38,116,46,104,115,108,46,104,124,124,101,124,124,48,41,44,123,104,115,108,58,105,44,104,101,120,58,110,46,116,111,72,101,120,83,116,114,105,110,103,40,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,44,104,101,120,56,58,110,46,116,111,72,101,120,56,83,116,114,105,110,103,40,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,44,114,103,98,97,58,110,46,116,111,82,103,98,40,41,44,104,115,118,58,97,44,111,108,100,72,117,101,58,116,46,104,124,124,101,124,124,105,46,104,44,115,111,117,114,99,101,58,116,46,115,111,117,114,99,101,44,97,58,116,46,97,124,124,110,46,103,101,116,65,108,112,104,97,40,41,125,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,54,53,41,44,111,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,116,58,123,100,101,102,97,117,108,116,58,116,125,125,40,105,41,59,101,46,100,101,102,97,117,108,116,61,123,112,114,111,112,115,58,91,34,118,97,108,117,101,34,93,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,118,97,108,58,114,40,116,104,105,115,46,118,97,108,117,101,41,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,108,111,114,115,58,123,103,101,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,118,97,108,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,118,97,108,61,116,44,116,104,105,115,46,36,101,109,105,116,40,34,105,110,112,117,116,34,44,116,41,125,125,125,44,119,97,116,99,104,58,123,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,118,97,108,61,114,40,116,41,125,125,44,109,101,116,104,111,100,115,58,123,99,111,108,111,114,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,111,108,100,72,117,101,61,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,44,116,104,105,115,46,99,111,108,111,114,115,61,114,40,116,44,101,124,124,116,104,105,115,46,111,108,100,72,117,101,41,125,44,105,115,86,97,108,105,100,72,101,120,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,48,44,111,46,100,101,102,97,117,108,116,41,40,116,41,46,105,115,86,97,108,105,100,40,41,125,44,115,105,109,112,108,101,67,104,101,99,107,70,111,114,86,97,108,105,100,67,111,108,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,91,34,114,34,44,34,103,34,44,34,98,34,44,34,97,34,44,34,104,34,44,34,115,34,44,34,108,34,44,34,118,34,93,44,110,61,48,44,114,61,48,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,59,116,91,111,93,38,38,40,110,43,43,44,105,115,78,97,78,40,116,91,111,93,41,124,124,114,43,43,41,125,105,102,40,110,61,61,61,114,41,114,101,116,117,114,110,32,116,125,44,112,97,108,101,116,116,101,85,112,112,101,114,67,97,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,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,41,41,125,44,105,115,84,114,97,110,115,112,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,48,61,61,61,40,48,44,111,46,100,101,102,97,117,108,116,41,40,116,41,46,103,101,116,65,108,112,104,97,40,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,101,120,112,111,114,116,115,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,119,105,110,100,111,119,46,77,97,116,104,61,61,77,97,116,104,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,115,101,108,102,38,38,115,101,108,102,46,77,97,116,104,61,61,77,97,116,104,63,115,101,108,102,58,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,59,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,95,95,103,38,38,40,95,95,103,61,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,99,124,124,110,40,54,54,41,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,54,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,34,100,101,102,97,117,108,116,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,40,101,44,116,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,116,93,125,41,41,125,40,97,41,59,118,97,114,32,115,61,110,40,54,56,41,44,99,61,33,49,44,117,61,110,40,50,41,44,108,61,114,44,102,61,117,40,111,46,97,44,115,46,97,44,33,49,44,108,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,99,111,109,109,111,110,47,69,100,105,116,97,98,108,101,73,110,112,117,116,46,118,117,101,34,44,101,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,123,125,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,101,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,56,41,44,105,61,110,40,49,56,41,59,116,46,101,120,112,111,114,116,115,61,110,40,57,41,63,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,114,46,102,40,116,44,101,44,105,40,49,44,110,41,41,125,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,91,101,93,61,110,44,116,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,54,41,44,105,61,110,40,52,50,41,44,111,61,110,40,50,53,41,44,97,61,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,59,101,46,102,61,110,40,57,41,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,114,40,116,41,44,101,61,111,40,101,44,33,48,41,44,114,40,110,41,44,105,41,116,114,121,123,114,101,116,117,114,110,32,97,40,116,44,101,44,110,41,125,99,97,116,99,104,40,116,41,123,125,105,102,40,34,103,101,116,34,105,110,32,110,124,124,34,115,101,116,34,105,110,32,110,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,34,65,99,99,101,115,115,111,114,115,32,110,111,116,32,115,117,112,112,111,114,116,101,100,33,34,41,59,114,101,116,117,114,110,34,118,97,108,117,101,34,105,110,32,110,38,38,40,116,91,101,93,61,110,46,118,97,108,117,101,41,44,116,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,46,101,120,112,111,114,116,115,61,33,110,40,49,55,41,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,33,61,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,123,125,44,34,97,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,125,125,41,46,97,125,41,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,57,48,41,44,105,61,110,40,50,52,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,105,40,116,41,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,50,57,41,40,34,119,107,115,34,41,44,105,61,110,40,49,57,41,44,111,61,110,40,52,41,46,83,121,109,98,111,108,44,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,111,59,40,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,91,116,93,124,124,40,114,91,116,93,61,97,38,38,111,91,116,93,124,124,40,97,63,111,58,105,41,40,34,83,121,109,98,111,108,46,34,43,116,41,41,125,41,46,115,116,111,114,101,61,114,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,63,110,117,108,108,33,61,61,116,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,99,124,124,110,40,49,49,49,41,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,49,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,34,100,101,102,97,117,108,116,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,40,101,44,116,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,116,93,125,41,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,49,51,41,44,99,61,33,49,44,117,61,110,40,50,41,44,108,61,114,44,102,61,117,40,111,46,97,44,115,46,97,44,33,49,44,108,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,99,111,109,109,111,110,47,72,117,101,46,118,117,101,34,44,101,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,101,120,112,111,114,116,115,61,33,48,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,101,120,112,111,114,116,115,61,123,118,101,114,115,105,111,110,58,34,50,46,54,46,49,49,34,125,59,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,95,95,101,38,38,40,95,95,101,61,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,50,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,114,40,116,41,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,116,43,34,32,105,115,32,110,111,116,32,97,110,32,111,98,106,101,99,116,33,34,41,59,114,101,116,117,114,110,32,116,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,116,114,121,123,114,101,116,117,114,110,33,33,116,40,41,125,99,97,116,99,104,40,116,41,123,114,101,116,117,114,110,33,48,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,123,101,110,117,109,101,114,97,98,108,101,58,33,40,49,38,116,41,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,40,50,38,116,41,44,119,114,105,116,97,98,108,101,58,33,40,52,38,116,41,44,118,97,108,117,101,58,101,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,48,44,114,61,77,97,116,104,46,114,97,110,100,111,109,40,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,83,121,109,98,111,108,40,34,46,99,111,110,99,97,116,40,118,111,105,100,32,48,61,61,61,116,63,34,34,58,116,44,34,41,95,34,44,40,43,43,110,43,114,41,46,116,111,83,116,114,105,110,103,40,51,54,41,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,99,124,124,110,40,49,50,51,41,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,52,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,34,100,101,102,97,117,108,116,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,40,101,44,116,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,116,93,125,41,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,50,55,41,44,99,61,33,49,44,117,61,110,40,50,41,44,108,61,114,44,102,61,117,40,111,46,97,44,115,46,97,44,33,49,44,108,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,99,111,109,109,111,110,47,83,97,116,117,114,97,116,105,111,110,46,118,117,101,34,44,101,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,99,124,124,110,40,49,50,56,41,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,53,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,34,100,101,102,97,117,108,116,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,40,101,44,116,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,116,93,125,41,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,51,51,41,44,99,61,33,49,44,117,61,110,40,50,41,44,108,61,114,44,102,61,117,40,111,46,97,44,115,46,97,44,33,49,44,108,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,99,111,109,109,111,110,47,65,108,112,104,97,46,118,117,101,34,44,101,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,99,124,124,110,40,49,51,48,41,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,54,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,34,100,101,102,97,117,108,116,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,40,101,44,116,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,116,93,125,41,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,51,50,41,44,99,61,33,49,44,117,61,110,40,50,41,44,108,61,114,44,102,61,117,40,111,46,97,44,115,46,97,44,33,49,44,108,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,99,111,109,109,111,110,47,67,104,101,99,107,98,111,97,114,100,46,118,117,101,34,44,101,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,77,97,116,104,46,99,101,105,108,44,114,61,77,97,116,104,46,102,108,111,111,114,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,116,61,43,116,41,63,48,58,40,116,62,48,63,114,58,110,41,40,116,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,118,111,105,100,32,48,61,61,116,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,39,116,32,99,97,108,108,32,109,101,116,104,111,100,32,111,110,32,32,34,43,116,41,59,114,101,116,117,114,110,32,116,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,50,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,114,40,116,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,110,44,105,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,40,110,61,116,46,116,111,83,116,114,105,110,103,41,38,38,33,114,40,105,61,110,46,99,97,108,108,40,116,41,41,41,114,101,116,117,114,110,32,105,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,110,61,116,46,118,97,108,117,101,79,102,41,38,38,33,114,40,105,61,110,46,99,97,108,108,40,116,41,41,41,114,101,116,117,114,110,32,105,59,105,102,40,33,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,110,61,116,46,116,111,83,116,114,105,110,103,41,38,38,33,114,40,105,61,110,46,99,97,108,108,40,116,41,41,41,114,101,116,117,114,110,32,105,59,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,39,116,32,99,111,110,118,101,114,116,32,111,98,106,101,99,116,32,116,111,32,112,114,105,109,105,116,105,118,101,32,118,97,108,117,101,34,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,101,120,112,111,114,116,115,61,123,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,54,41,44,105,61,110,40,51,48,41,59,116,46,101,120,112,111,114,116,115,61,79,98,106,101,99,116,46,107,101,121,115,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,116,44,105,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,50,57,41,40,34,107,101,121,115,34,41,44,105,61,110,40,49,57,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,91,116,93,124,124,40,114,91,116,93,61,105,40,116,41,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,53,41,44,105,61,110,40,52,41,44,111,61,105,91,34,95,95,99,111,114,101,45,106,115,95,115,104,97,114,101,100,95,95,34,93,124,124,40,105,91,34,95,95,99,111,114,101,45,106,115,95,115,104,97,114,101,100,95,95,34,93,61,123,125,41,59,40,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,111,91,116,93,124,124,40,111,91,116,93,61,118,111,105,100,32,48,33,61,61,101,63,101,58,123,125,41,125,41,40,34,118,101,114,115,105,111,110,115,34,44,91,93,41,46,112,117,115,104,40,123,118,101,114,115,105,111,110,58,114,46,118,101,114,115,105,111,110,44,109,111,100,101,58,110,40,49,52,41,63,34,112,117,114,101,34,58,34,103,108,111,98,97,108,34,44,99,111,112,121,114,105,103,104,116,58,34,194,169,32,50,48,49,57,32,68,101,110,105,115,32,80,117,115,104,107,97,114,101,118,32,40,122,108,111,105,114,111,99,107,46,114,117,41,34,125,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,101,120,112,111,114,116,115,61,34,99,111,110,115,116,114,117,99,116,111,114,44,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,105,115,80,114,111,116,111,116,121,112,101,79,102,44,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,44,116,111,76,111,99,97,108,101,83,116,114,105,110,103,44,116,111,83,116,114,105,110,103,44,118,97,108,117,101,79,102,34,46,115,112,108,105,116,40,34,44,34,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,56,41,46,102,44,105,61,110,40,54,41,44,111,61,110,40,49,49,41,40,34,116,111,83,116,114,105,110,103,84,97,103,34,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,38,38,33,105,40,116,61,110,63,116,58,116,46,112,114,111,116,111,116,121,112,101,44,111,41,38,38,114,40,116,44,111,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,118,97,108,117,101,58,101,125,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,46,102,61,110,40,49,49,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,41,44,105,61,110,40,49,53,41,44,111,61,110,40,49,52,41,44,97,61,110,40,51,50,41,44,115,61,110,40,56,41,46,102,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,105,46,83,121,109,98,111,108,124,124,40,105,46,83,121,109,98,111,108,61,111,63,123,125,58,114,46,83,121,109,98,111,108,124,124,123,125,41,59,34,95,34,61,61,116,46,99,104,97,114,65,116,40,48,41,124,124,116,32,105,110,32,101,124,124,115,40,101,44,116,44,123,118,97,108,117,101,58,97,46,102,40,116,41,125,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,46,102,61,123,125,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,116,58,123,100,101,102,97,117,108,116,58,116,125,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,41,44,111,61,114,40,105,41,44,97,61,110,40,53,41,44,115,61,114,40,97,41,44,99,61,91,34,35,52,68,52,68,52,68,34,44,34,35,57,57,57,57,57,57,34,44,34,35,70,70,70,70,70,70,34,44,34,35,70,52,52,69,51,66,34,44,34,35,70,69,57,50,48,48,34,44,34,35,70,67,68,67,48,48,34,44,34,35,68,66,68,70,48,48,34,44,34,35,65,52,68,68,48,48,34,44,34,35,54,56,67,67,67,65,34,44,34,35,55,51,68,56,70,70,34,44,34,35,65,69,65,49,70,70,34,44,34,35,70,68,65,49,70,70,34,44,34,35,51,51,51,51,51,51,34,44,34,35,56,48,56,48,56,48,34,44,34,35,67,67,67,67,67,67,34,44,34,35,68,51,51,49,49,53,34,44,34,35,69,50,55,51,48,48,34,44,34,35,70,67,67,52,48,48,34,44,34,35,66,48,66,67,48,48,34,44,34,35,54,56,66,67,48,48,34,44,34,35,49,54,65,53,65,53,34,44,34,35,48,48,57,67,69,48,34,44,34,35,55,66,54,52,70,70,34,44,34,35,70,65,50,56,70,70,34,44,34,35,48,48,48,48,48,48,34,44,34,35,54,54,54,54,54,54,34,44,34,35,66,51,66,51,66,51,34,44,34,35,57,70,48,53,48,48,34,44,34,35,67,52,53,49,48,48,34,44,34,35,70,66,57,69,48,48,34,44,34,35,56,48,56,57,48,48,34,44,34,35,49,57,52,68,51,51,34,44,34,35,48,67,55,57,55,68,34,44,34,35,48,48,54,50,66,49,34,44,34,35,54,53,51,50,57,52,34,44,34,35,65,66,49,52,57,69,34,93,59,101,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,34,67,111,109,112,97,99,116,34,44,109,105,120,105,110,115,58,91,111,46,100,101,102,97,117,108,116,93,44,112,114,111,112,115,58,123,112,97,108,101,116,116,101,58,123,116,121,112,101,58,65,114,114,97,121,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,125,125,125,44,99,111,109,112,111,110,101,110,116,115,58,123,34,101,100,45,105,110,34,58,115,46,100,101,102,97,117,108,116,125,44,99,111,109,112,117,116,101,100,58,123,112,105,99,107,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,111,114,115,46,104,101,120,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,125,44,109,101,116,104,111,100,115,58,123,104,97,110,100,108,101,114,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,116,44,115,111,117,114,99,101,58,34,104,101,120,34,125,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,44,101,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,34,101,100,105,116,97,98,108,101,73,110,112,117,116,34,44,112,114,111,112,115,58,123,108,97,98,101,108,58,83,116,114,105,110,103,44,108,97,98,101,108,84,101,120,116,58,83,116,114,105,110,103,44,100,101,115,99,58,83,116,114,105,110,103,44,118,97,108,117,101,58,91,83,116,114,105,110,103,44,78,117,109,98,101,114,93,44,109,97,120,58,78,117,109,98,101,114,44,109,105,110,58,78,117,109,98,101,114,44,97,114,114,111,119,79,102,102,115,101,116,58,123,116,121,112,101,58,78,117,109,98,101,114,44,100,101,102,97,117,108,116,58,49,125,125,44,99,111,109,112,117,116,101,100,58,123,118,97,108,58,123,103,101,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,118,97,108,117,101,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,40,118,111,105,100,32,48,33,61,61,116,104,105,115,46,109,97,120,38,38,43,116,62,116,104,105,115,46,109,97,120,41,41,114,101,116,117,114,110,32,116,59,116,104,105,115,46,36,114,101,102,115,46,105,110,112,117,116,46,118,97,108,117,101,61,116,104,105,115,46,109,97,120,125,125,44,108,97,98,101,108,73,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,105,110,112,117,116,95,95,108,97,98,101,108,95,95,34,43,116,104,105,115,46,108,97,98,101,108,43,34,95,95,34,43,77,97,116,104,46,114,97,110,100,111,109,40,41,46,116,111,83,116,114,105,110,103,40,41,46,115,108,105,99,101,40,50,44,53,41,125,44,108,97,98,101,108,83,112,97,110,84,101,120,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,108,97,98,101,108,84,101,120,116,124,124,116,104,105,115,46,108,97,98,101,108,125,125,44,109,101,116,104,111,100,115,58,123,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,40,116,46,116,97,114,103,101,116,46,118,97,108,117,101,41,125,44,104,97,110,100,108,101,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,123,125,59,101,91,116,104,105,115,46,108,97,98,101,108,93,61,116,44,40,118,111,105,100,32,48,61,61,61,101,46,104,101,120,38,38,118,111,105,100,32,48,61,61,61,101,91,34,35,34,93,124,124,116,46,108,101,110,103,116,104,62,53,41,38,38,116,104,105,115,46,36,101,109,105,116,40,34,99,104,97,110,103,101,34,44,101,41,125,44,104,97,110,100,108,101,75,101,121,68,111,119,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,118,97,108,44,110,61,78,117,109,98,101,114,40,101,41,59,105,102,40,110,41,123,118,97,114,32,114,61,116,104,105,115,46,97,114,114,111,119,79,102,102,115,101,116,124,124,49,59,51,56,61,61,61,116,46,107,101,121,67,111,100,101,38,38,40,101,61,110,43,114,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,40,101,41,44,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,44,52,48,61,61,61,116,46,107,101,121,67,111,100,101,38,38,40,101,61,110,45,114,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,40,101,41,44,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,125,125,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,114,61,110,40,51,41,44,105,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,116,58,123,100,101,102,97,117,108,116,58,116,125,125,40,114,41,44,111,61,91,34,35,70,70,70,70,70,70,34,44,34,35,70,50,70,50,70,50,34,44,34,35,69,54,69,54,69,54,34,44,34,35,68,57,68,57,68,57,34,44,34,35,67,67,67,67,67,67,34,44,34,35,66,70,66,70,66,70,34,44,34,35,66,51,66,51,66,51,34,44,34,35,65,54,65,54,65,54,34,44,34,35,57,57,57,57,57,57,34,44,34,35,56,67,56,67,56,67,34,44,34,35,56,48,56,48,56,48,34,44,34,35,55,51,55,51,55,51,34,44,34,35,54,54,54,54,54,54,34,44,34,35,53,57,53,57,53,57,34,44,34,35,52,68,52,68,52,68,34,44,34,35,52,48,52,48,52,48,34,44,34,35,51,51,51,51,51,51,34,44,34,35,50,54,50,54,50,54,34,44,34,35,48,68,48,68,48,68,34,44,34,35,48,48,48,48,48,48,34,93,59,101,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,34,71,114,97,121,115,99,97,108,101,34,44,109,105,120,105,110,115,58,91,105,46,100,101,102,97,117,108,116,93,44,112,114,111,112,115,58,123,112,97,108,101,116,116,101,58,123,116,121,112,101,58,65,114,114,97,121,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,125,125,125,44,99,111,109,112,111,110,101,110,116,115,58,123,125,44,99,111,109,112,117,116,101,100,58,123,112,105,99,107,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,111,114,115,46,104,101,120,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,125,44,109,101,116,104,111,100,115,58,123,104,97,110,100,108,101,114,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,116,44,115,111,117,114,99,101,58,34,104,101,120,34,125,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,116,58,123,100,101,102,97,117,108,116,58,116,125,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,41,44,111,61,114,40,105,41,44,97,61,110,40,51,41,44,115,61,114,40,97,41,59,101,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,34,77,97,116,101,114,105,97,108,34,44,109,105,120,105,110,115,58,91,115,46,100,101,102,97,117,108,116,93,44,99,111,109,112,111,110,101,110,116,115,58,123,34,101,100,45,105,110,34,58,111,46,100,101,102,97,117,108,116,125,44,109,101,116,104,111,100,115,58,123,111,110,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,40,116,46,104,101,120,63,116,104,105,115,46,105,115,86,97,108,105,100,72,101,120,40,116,46,104,101,120,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,116,46,104,101,120,44,115,111,117,114,99,101,58,34,104,101,120,34,125,41,58,40,116,46,114,124,124,116,46,103,124,124,116,46,98,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,114,58,116,46,114,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,114,44,103,58,116,46,103,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,103,44,98,58,116,46,98,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,98,44,97,58,116,46,97,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,97,44,115,111,117,114,99,101,58,34,114,103,98,97,34,125,41,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,116,58,123,100,101,102,97,117,108,116,58,116,125,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,56,49,41,44,111,61,114,40,105,41,44,97,61,110,40,51,41,44,115,61,114,40,97,41,44,99,61,110,40,49,51,41,44,117,61,114,40,99,41,59,101,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,34,83,108,105,100,101,114,34,44,109,105,120,105,110,115,58,91,115,46,100,101,102,97,117,108,116,93,44,112,114,111,112,115,58,123,115,119,97,116,99,104,101,115,58,123,116,121,112,101,58,65,114,114,97,121,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,123,115,58,46,53,44,108,58,46,56,125,44,123,115,58,46,53,44,108,58,46,54,53,125,44,123,115,58,46,53,44,108,58,46,53,125,44,123,115,58,46,53,44,108,58,46,51,53,125,44,123,115,58,46,53,44,108,58,46,50,125,93,125,125,125,44,99,111,109,112,111,110,101,110,116,115,58,123,104,117,101,58,117,46,100,101,102,97,117,108,116,125,44,99,111,109,112,117,116,101,100,58,123,110,111,114,109,97,108,105,122,101,100,83,119,97,116,99,104,101,115,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,119,97,116,99,104,101,115,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,111,98,106,101,99,116,34,33,61,61,40,118,111,105,100,32,48,61,61,61,116,63,34,117,110,100,101,102,105,110,101,100,34,58,40,48,44,111,46,100,101,102,97,117,108,116,41,40,116,41,41,63,123,115,58,46,53,44,108,58,116,125,58,116,125,41,41,125,125,44,109,101,116,104,111,100,115,58,123,105,115,65,99,116,105,118,101,58,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,108,111,114,115,46,104,115,108,59,114,101,116,117,114,110,32,49,61,61,61,110,46,108,38,38,49,61,61,61,116,46,108,124,124,48,61,61,61,110,46,108,38,38,48,61,61,61,116,46,108,124,124,77,97,116,104,46,97,98,115,40,110,46,108,45,116,46,108,41,60,46,48,49,38,38,77,97,116,104,46,97,98,115,40,110,46,115,45,116,46,115,41,60,46,48,49,125,44,104,117,101,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,116,41,125,44,104,97,110,100,108,101,83,119,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,44,115,58,101,46,115,44,108,58,101,46,108,44,115,111,117,114,99,101,58,34,104,115,108,34,125,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,49,52,41,44,105,61,110,40,52,49,41,44,111,61,110,40,52,52,41,44,97,61,110,40,55,41,44,115,61,110,40,50,54,41,44,99,61,110,40,56,56,41,44,117,61,110,40,51,49,41,44,108,61,110,40,57,53,41,44,102,61,110,40,49,49,41,40,34,105,116,101,114,97,116,111,114,34,41,44,104,61,33,40,91,93,46,107,101,121,115,38,38,34,110,101,120,116,34,105,110,91,93,46,107,101,121,115,40,41,41,44,100,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,112,44,118,44,103,44,109,41,123,99,40,110,44,101,44,112,41,59,118,97,114,32,98,44,121,44,119,44,95,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,104,38,38,116,32,105,110,32,107,41,114,101,116,117,114,110,32,107,91,116,93,59,115,119,105,116,99,104,40,116,41,123,99,97,115,101,34,107,101,121,115,34,58,99,97,115,101,34,118,97,108,117,101,115,34,58,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,101,119,32,110,40,116,104,105,115,44,116,41,125,125,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,101,119,32,110,40,116,104,105,115,44,116,41,125,125,44,120,61,101,43,34,32,73,116,101,114,97,116,111,114,34,44,79,61,34,118,97,108,117,101,115,34,61,61,118,44,83,61,33,49,44,107,61,116,46,112,114,111,116,111,116,121,112,101,44,67,61,107,91,102,93,124,124,107,91,34,64,64,105,116,101,114,97,116,111,114,34,93,124,124,118,38,38,107,91,118,93,44,80,61,67,124,124,95,40,118,41,44,84,61,118,63,79,63,95,40,34,101,110,116,114,105,101,115,34,41,58,80,58,118,111,105,100,32,48,44,106,61,34,65,114,114,97,121,34,61,61,101,38,38,107,46,101,110,116,114,105,101,115,124,124,67,59,105,102,40,106,38,38,40,119,61,108,40,106,46,99,97,108,108,40,110,101,119,32,116,41,41,41,33,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,38,38,119,46,110,101,120,116,38,38,40,117,40,119,44,120,44,33,48,41,44,114,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,119,91,102,93,124,124,97,40,119,44,102,44,100,41,41,44,79,38,38,67,38,38,34,118,97,108,117,101,115,34,33,61,61,67,46,110,97,109,101,38,38,40,83,61,33,48,44,80,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,67,46,99,97,108,108,40,116,104,105,115,41,125,41,44,114,38,38,33,109,124,124,33,104,38,38,33,83,38,38,107,91,102,93,124,124,97,40,107,44,102,44,80,41,44,115,91,101,93,61,80,44,115,91,120,93,61,100,44,118,41,105,102,40,98,61,123,118,97,108,117,101,115,58,79,63,80,58,95,40,34,118,97,108,117,101,115,34,41,44,107,101,121,115,58,103,63,80,58,95,40,34,107,101,121,115,34,41,44,101,110,116,114,105,101,115,58,84,125,44,109,41,102,111,114,40,121,32,105,110,32,98,41,121,32,105,110,32,107,124,124,111,40,107,44,121,44,98,91,121,93,41,59,101,108,115,101,32,105,40,105,46,80,43,105,46,70,42,40,104,124,124,83,41,44,101,44,98,41,59,114,101,116,117,114,110,32,98,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,41,44,105,61,110,40,49,53,41,44,111,61,110,40,56,54,41,44,97,61,110,40,55,41,44,115,61,110,40,54,41,44,99,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,117,44,108,44,102,44,104,61,116,38,99,46,70,44,100,61,116,38,99,46,71,44,112,61,116,38,99,46,83,44,118,61,116,38,99,46,80,44,103,61,116,38,99,46,66,44,109,61,116,38,99,46,87,44,98,61,100,63,105,58,105,91,101,93,124,124,40,105,91,101,93,61,123,125,41,44,121,61,98,46,112,114,111,116,111,116,121,112,101,44,119,61,100,63,114,58,112,63,114,91,101,93,58,40,114,91,101,93,124,124,123,125,41,46,112,114,111,116,111,116,121,112,101,59,102,111,114,40,117,32,105,110,32,100,38,38,40,110,61,101,41,44,110,41,40,108,61,33,104,38,38,119,38,38,118,111,105,100,32,48,33,61,61,119,91,117,93,41,38,38,115,40,98,44,117,41,124,124,40,102,61,108,63,119,91,117,93,58,110,91,117,93,44,98,91,117,93,61,100,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,119,91,117,93,63,110,91,117,93,58,103,38,38,108,63,111,40,102,44,114,41,58,109,38,38,119,91,117,93,61,61,102,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,101,44,110,44,114,41,123,105,102,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,116,41,123,115,119,105,116,99,104,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,101,119,32,116,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,101,119,32,116,40,101,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,101,119,32,116,40,101,44,110,41,125,114,101,116,117,114,110,32,110,101,119,32,116,40,101,44,110,44,114,41,125,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,59,114,101,116,117,114,110,32,101,46,112,114,111,116,111,116,121,112,101,61,116,46,112,114,111,116,111,116,121,112,101,44,101,125,40,102,41,58,118,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,102,63,111,40,70,117,110,99,116,105,111,110,46,99,97,108,108,44,102,41,58,102,44,118,38,38,40,40,98,46,118,105,114,116,117,97,108,124,124,40,98,46,118,105,114,116,117,97,108,61,123,125,41,41,91,117,93,61,102,44,116,38,99,46,82,38,38,121,38,38,33,121,91,117,93,38,38,97,40,121,44,117,44,102,41,41,41,125,59,99,46,70,61,49,44,99,46,71,61,50,44,99,46,83,61,52,44,99,46,80,61,56,44,99,46,66,61,49,54,44,99,46,87,61,51,50,44,99,46,85,61,54,52,44,99,46,82,61,49,50,56,44,116,46,101,120,112,111,114,116,115,61,99,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,46,101,120,112,111,114,116,115,61,33,110,40,57,41,38,38,33,110,40,49,55,41,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,33,61,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,110,40,52,51,41,40,34,100,105,118,34,41,44,34,97,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,125,125,41,46,97,125,41,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,50,41,44,105,61,110,40,52,41,46,100,111,99,117,109,101,110,116,44,111,61,114,40,105,41,38,38,114,40,105,46,99,114,101,97,116,101,69,108,101,109,101,110,116,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,63,105,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,116,41,58,123,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,46,101,120,112,111,114,116,115,61,110,40,55,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,54,41,44,105,61,110,40,56,57,41,44,111,61,110,40,51,48,41,44,97,61,110,40,50,56,41,40,34,73,69,95,80,82,79,84,79,34,41,44,115,61,102,117,110,99,116,105,111,110,40,41,123,125,44,99,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,61,110,40,52,51,41,40,34,105,102,114,97,109,101,34,41,44,114,61,111,46,108,101,110,103,116,104,59,102,111,114,40,101,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,110,40,57,52,41,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,44,101,46,115,114,99,61,34,106,97,118,97,115,99,114,105,112,116,58,34,44,116,61,101,46,99,111,110,116,101,110,116,87,105,110,100,111,119,46,100,111,99,117,109,101,110,116,44,116,46,111,112,101,110,40,41,44,116,46,119,114,105,116,101,40,34,60,115,99,114,105,112,116,62,100,111,99,117,109,101,110,116,46,70,61,79,98,106,101,99,116,60,92,47,115,99,114,105,112,116,62,34,41,44,116,46,99,108,111,115,101,40,41,44,99,61,116,46,70,59,114,45,45,59,41,100,101,108,101,116,101,32,99,46,112,114,111,116,111,116,121,112,101,91,111,91,114,93,93,59,114,101,116,117,114,110,32,99,40,41,125,59,116,46,101,120,112,111,114,116,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,63,40,115,46,112,114,111,116,111,116,121,112,101,61,114,40,116,41,44,110,61,110,101,119,32,115,44,115,46,112,114,111,116,111,116,121,112,101,61,110,117,108,108,44,110,91,97,93,61,116,41,58,110,61,99,40,41,44,118,111,105,100,32,48,61,61,61,101,63,110,58,105,40,110,44,101,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,54,41,44,105,61,110,40,49,48,41,44,111,61,110,40,57,49,41,40,33,49,41,44,97,61,110,40,50,56,41,40,34,73,69,95,80,82,79,84,79,34,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,115,61,105,40,116,41,44,99,61,48,44,117,61,91,93,59,102,111,114,40,110,32,105,110,32,115,41,110,33,61,97,38,38,114,40,115,44,110,41,38,38,117,46,112,117,115,104,40,110,41,59,102,111,114,40,59,101,46,108,101,110,103,116,104,62,99,59,41,114,40,115,44,110,61,101,91,99,43,43,93,41,38,38,40,126,111,40,117,44,110,41,124,124,117,46,112,117,115,104,40,110,41,41,59,114,101,116,117,114,110,32,117,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,123,125,46,116,111,83,116,114,105,110,103,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,41,46,115,108,105,99,101,40,56,44,45,49,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,50,52,41,59,116,46,101,120,112,111,114,116,115,61,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,40,114,40,116,41,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,46,102,61,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,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,54,41,44,105,61,110,40,51,48,41,46,99,111,110,99,97,116,40,34,108,101,110,103,116,104,34,44,34,112,114,111,116,111,116,121,112,101,34,41,59,101,46,102,61,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,116,44,105,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,44,101,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,34,72,117,101,34,44,112,114,111,112,115,58,123,118,97,108,117,101,58,79,98,106,101,99,116,44,100,105,114,101,99,116,105,111,110,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,104,111,114,105,122,111,110,116,97,108,34,125,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,111,108,100,72,117,101,58,48,44,112,117,108,108,68,105,114,101,99,116,105,111,110,58,34,34,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,108,111,114,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,118,97,108,117,101,46,104,115,108,46,104,59,114,101,116,117,114,110,32,48,33,61,61,116,38,38,116,45,116,104,105,115,46,111,108,100,72,117,101,62,48,38,38,40,116,104,105,115,46,112,117,108,108,68,105,114,101,99,116,105,111,110,61,34,114,105,103,104,116,34,41,44,48,33,61,61,116,38,38,116,45,116,104,105,115,46,111,108,100,72,117,101,60,48,38,38,40,116,104,105,115,46,112,117,108,108,68,105,114,101,99,116,105,111,110,61,34,108,101,102,116,34,41,44,116,104,105,115,46,111,108,100,72,117,101,61,116,44,116,104,105,115,46,118,97,108,117,101,125,44,100,105,114,101,99,116,105,111,110,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,34,118,99,45,104,117,101,45,45,104,111,114,105,122,111,110,116,97,108,34,58,34,104,111,114,105,122,111,110,116,97,108,34,61,61,61,116,104,105,115,46,100,105,114,101,99,116,105,111,110,44,34,118,99,45,104,117,101,45,45,118,101,114,116,105,99,97,108,34,58,34,118,101,114,116,105,99,97,108,34,61,61,61,116,104,105,115,46,100,105,114,101,99,116,105,111,110,125,125,44,112,111,105,110,116,101,114,84,111,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,118,101,114,116,105,99,97,108,34,61,61,61,116,104,105,115,46,100,105,114,101,99,116,105,111,110,63,48,61,61,61,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,38,38,34,114,105,103,104,116,34,61,61,61,116,104,105,115,46,112,117,108,108,68,105,114,101,99,116,105,111,110,63,48,58,45,49,48,48,42,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,47,51,54,48,43,49,48,48,43,34,37,34,58,48,125,44,112,111,105,110,116,101,114,76,101,102,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,118,101,114,116,105,99,97,108,34,61,61,61,116,104,105,115,46,100,105,114,101,99,116,105,111,110,63,48,58,48,61,61,61,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,38,38,34,114,105,103,104,116,34,61,61,61,116,104,105,115,46,112,117,108,108,68,105,114,101,99,116,105,111,110,63,34,49,48,48,37,34,58,49,48,48,42,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,47,51,54,48,43,34,37,34,125,125,44,109,101,116,104,111,100,115,58,123,104,97,110,100,108,101,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,33,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,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,97,105,110,101,114,59,105,102,40,110,41,123,118,97,114,32,114,44,105,44,111,61,110,46,99,108,105,101,110,116,87,105,100,116,104,44,97,61,110,46,99,108,105,101,110,116,72,101,105,103,104,116,44,115,61,110,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,43,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,44,99,61,110,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,43,119,105,110,100,111,119,46,112,97,103,101,89,79,102,102,115,101,116,44,117,61,116,46,112,97,103,101,88,124,124,40,116,46,116,111,117,99,104,101,115,63,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,58,48,41,44,108,61,116,46,112,97,103,101,89,124,124,40,116,46,116,111,117,99,104,101,115,63,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,89,58,48,41,44,102,61,117,45,115,44,104,61,108,45,99,59,34,118,101,114,116,105,99,97,108,34,61,61,61,116,104,105,115,46,100,105,114,101,99,116,105,111,110,63,40,104,60,48,63,114,61,51,54,48,58,104,62,97,63,114,61,48,58,40,105,61,45,49,48,48,42,104,47,97,43,49,48,48,44,114,61,51,54,48,42,105,47,49,48,48,41,44,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,33,61,61,114,38,38,116,104,105,115,46,36,101,109,105,116,40,34,99,104,97,110,103,101,34,44,123,104,58,114,44,115,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,115,44,108,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,108,44,97,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,97,44,115,111,117,114,99,101,58,34,104,115,108,34,125,41,41,58,40,102,60,48,63,114,61,48,58,102,62,111,63,114,61,51,54,48,58,40,105,61,49,48,48,42,102,47,111,44,114,61,51,54,48,42,105,47,49,48,48,41,44,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,33,61,61,114,38,38,116,104,105,115,46,36,101,109,105,116,40,34,99,104,97,110,103,101,34,44,123,104,58,114,44,115,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,115,44,108,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,108,44,97,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,97,44,115,111,117,114,99,101,58,34,104,115,108,34,125,41,41,125,125,44,104,97,110,100,108,101,77,111,117,115,101,68,111,119,110,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,40,116,44,33,48,41,44,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,109,111,117,115,101,109,111,118,101,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,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,109,111,117,115,101,117,112,34,44,116,104,105,115,46,104,97,110,100,108,101,77,111,117,115,101,85,112,41,125,44,104,97,110,100,108,101,77,111,117,115,101,85,112,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,117,110,98,105,110,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,44,117,110,98,105,110,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,109,111,118,101,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,117,112,34,44,116,104,105,115,46,104,97,110,100,108,101,77,111,117,115,101,85,112,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,116,58,123,100,101,102,97,117,108,116,58,116,125,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,49,49,56,41,44,111,61,114,40,105,41,44,97,61,110,40,51,41,44,115,61,114,40,97,41,44,99,61,91,34,114,101,100,34,44,34,112,105,110,107,34,44,34,112,117,114,112,108,101,34,44,34,100,101,101,112,80,117,114,112,108,101,34,44,34,105,110,100,105,103,111,34,44,34,98,108,117,101,34,44,34,108,105,103,104,116,66,108,117,101,34,44,34,99,121,97,110,34,44,34,116,101,97,108,34,44,34,103,114,101,101,110,34,44,34,108,105,103,104,116,71,114,101,101,110,34,44,34,108,105,109,101,34,44,34,121,101,108,108,111,119,34,44,34,97,109,98,101,114,34,44,34,111,114,97,110,103,101,34,44,34,100,101,101,112,79,114,97,110,103,101,34,44,34,98,114,111,119,110,34,44,34,98,108,117,101,71,114,101,121,34,44,34,98,108,97,99,107,34,93,44,117,61,91,34,57,48,48,34,44,34,55,48,48,34,44,34,53,48,48,34,44,34,51,48,48,34,44,34,49,48,48,34,93,44,108,61,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,99,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,91,93,59,34,98,108,97,99,107,34,61,61,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,124,124,34,119,104,105,116,101,34,61,61,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,110,61,110,46,99,111,110,99,97,116,40,91,34,35,48,48,48,48,48,48,34,44,34,35,70,70,70,70,70,70,34,93,41,58,117,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,111,46,100,101,102,97,117,108,116,91,101,93,91,116,93,59,110,46,112,117,115,104,40,114,46,116,111,85,112,112,101,114,67,97,115,101,40,41,41,125,41,41,44,116,46,112,117,115,104,40,110,41,125,41,41,44,116,125,40,41,59,101,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,34,83,119,97,116,99,104,101,115,34,44,109,105,120,105,110,115,58,91,115,46,100,101,102,97,117,108,116,93,44,112,114,111,112,115,58,123,112,97,108,101,116,116,101,58,123,116,121,112,101,58,65,114,114,97,121,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,125,125,125,44,99,111,109,112,117,116,101,100,58,123,112,105,99,107,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,111,114,115,46,104,101,120,125,125,44,109,101,116,104,111,100,115,58,123,101,113,117,97,108,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,116,104,105,115,46,99,111,108,111,114,115,46,104,101,120,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,104,97,110,100,108,101,114,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,116,44,115,111,117,114,99,101,58,34,104,101,120,34,125,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,116,58,123,100,101,102,97,117,108,116,58,116,125,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,41,44,111,61,114,40,105,41,44,97,61,110,40,53,41,44,115,61,114,40,97,41,44,99,61,110,40,50,48,41,44,117,61,114,40,99,41,44,108,61,110,40,49,51,41,44,102,61,114,40,108,41,44,104,61,110,40,50,49,41,44,100,61,114,40,104,41,59,101,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,34,80,104,111,116,111,115,104,111,112,34,44,109,105,120,105,110,115,58,91,111,46,100,101,102,97,117,108,116,93,44,112,114,111,112,115,58,123,104,101,97,100,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,67,111,108,111,114,32,80,105,99,107,101,114,34,125,44,100,105,115,97,98,108,101,70,105,101,108,100,115,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,44,104,97,115,82,101,115,101,116,66,117,116,116,111,110,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,44,97,99,99,101,112,116,76,97,98,101,108,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,79,75,34,125,44,99,97,110,99,101,108,76,97,98,101,108,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,67,97,110,99,101,108,34,125,44,114,101,115,101,116,76,97,98,101,108,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,82,101,115,101,116,34,125,44,110,101,119,76,97,98,101,108,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,110,101,119,34,125,44,99,117,114,114,101,110,116,76,97,98,101,108,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,99,117,114,114,101,110,116,34,125,125,44,99,111,109,112,111,110,101,110,116,115,58,123,115,97,116,117,114,97,116,105,111,110,58,117,46,100,101,102,97,117,108,116,44,104,117,101,58,102,46,100,101,102,97,117,108,116,44,97,108,112,104,97,58,100,46,100,101,102,97,117,108,116,44,34,101,100,45,105,110,34,58,115,46,100,101,102,97,117,108,116,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,99,117,114,114,101,110,116,67,111,108,111,114,58,34,35,70,70,70,34,125,125,44,99,111,109,112,117,116,101,100,58,123,104,115,118,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,59,114,101,116,117,114,110,123,104,58,116,46,104,46,116,111,70,105,120,101,100,40,41,44,115,58,40,49,48,48,42,116,46,115,41,46,116,111,70,105,120,101,100,40,41,44,118,58,40,49,48,48,42,116,46,118,41,46,116,111,70,105,120,101,100,40,41,125,125,44,104,101,120,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,111,114,115,46,104,101,120,59,114,101,116,117,114,110,32,116,38,38,116,46,114,101,112,108,97,99,101,40,34,35,34,44,34,34,41,125,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,117,114,114,101,110,116,67,111,108,111,114,61,116,104,105,115,46,99,111,108,111,114,115,46,104,101,120,125,44,109,101,116,104,111,100,115,58,123,99,104,105,108,100,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,116,41,125,44,105,110,112,117,116,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,40,116,91,34,35,34,93,63,116,104,105,115,46,105,115,86,97,108,105,100,72,101,120,40,116,91,34,35,34,93,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,116,91,34,35,34,93,44,115,111,117,114,99,101,58,34,104,101,120,34,125,41,58,116,46,114,124,124,116,46,103,124,124,116,46,98,124,124,116,46,97,63,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,114,58,116,46,114,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,114,44,103,58,116,46,103,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,103,44,98,58,116,46,98,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,98,44,97,58,116,46,97,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,97,44,115,111,117,114,99,101,58,34,114,103,98,97,34,125,41,58,40,116,46,104,124,124,116,46,115,124,124,116,46,118,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,58,116,46,104,124,124,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,104,44,115,58,116,46,115,47,49,48,48,124,124,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,115,44,118,58,116,46,118,47,49,48,48,124,124,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,118,44,115,111,117,114,99,101,58,34,104,115,118,34,125,41,41,125,44,99,108,105,99,107,67,117,114,114,101,110,116,67,111,108,111,114,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,116,104,105,115,46,99,117,114,114,101,110,116,67,111,108,111,114,44,115,111,117,114,99,101,58,34,104,101,120,34,125,41,125,44,104,97,110,100,108,101,65,99,99,101,112,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,101,109,105,116,40,34,111,107,34,41,125,44,104,97,110,100,108,101,67,97,110,99,101,108,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,101,109,105,116,40,34,99,97,110,99,101,108,34,41,125,44,104,97,110,100,108,101,82,101,115,101,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,101,109,105,116,40,34,114,101,115,101,116,34,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,116,58,123,100,101,102,97,117,108,116,58,116,125,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,49,50,53,41,44,111,61,114,40,105,41,44,97,61,110,40,49,50,54,41,44,115,61,114,40,97,41,59,101,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,34,83,97,116,117,114,97,116,105,111,110,34,44,112,114,111,112,115,58,123,118,97,108,117,101,58,79,98,106,101,99,116,125,44,99,111,109,112,117,116,101,100,58,123,99,111,108,111,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,118,97,108,117,101,125,44,98,103,67,111,108,111,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,104,115,108,40,34,43,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,104,43,34,44,32,49,48,48,37,44,32,53,48,37,41,34,125,44,112,111,105,110,116,101,114,84,111,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,45,49,48,48,42,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,118,43,49,43,49,48,48,43,34,37,34,125,44,112,111,105,110,116,101,114,76,101,102,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,48,48,42,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,115,43,34,37,34,125,125,44,109,101,116,104,111,100,115,58,123,116,104,114,111,116,116,108,101,58,40,48,44,115,46,100,101,102,97,117,108,116,41,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,40,101,41,125,41,44,50,48,44,123,108,101,97,100,105,110,103,58,33,48,44,116,114,97,105,108,105,110,103,58,33,49,125,41,44,104,97,110,100,108,101,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,33,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,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,97,105,110,101,114,59,105,102,40,110,41,123,118,97,114,32,114,61,110,46,99,108,105,101,110,116,87,105,100,116,104,44,105,61,110,46,99,108,105,101,110,116,72,101,105,103,104,116,44,97,61,110,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,43,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,44,115,61,110,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,43,119,105,110,100,111,119,46,112,97,103,101,89,79,102,102,115,101,116,44,99,61,116,46,112,97,103,101,88,124,124,40,116,46,116,111,117,99,104,101,115,63,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,58,48,41,44,117,61,116,46,112,97,103,101,89,124,124,40,116,46,116,111,117,99,104,101,115,63,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,89,58,48,41,44,108,61,40,48,44,111,46,100,101,102,97,117,108,116,41,40,99,45,97,44,48,44,114,41,44,102,61,40,48,44,111,46,100,101,102,97,117,108,116,41,40,117,45,115,44,48,44,105,41,44,104,61,108,47,114,44,100,61,40,48,44,111,46,100,101,102,97,117,108,116,41,40,45,102,47,105,43,49,44,48,44,49,41,59,116,104,105,115,46,116,104,114,111,116,116,108,101,40,116,104,105,115,46,111,110,67,104,97,110,103,101,44,123,104,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,104,44,115,58,104,44,118,58,100,44,97,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,97,44,115,111,117,114,99,101,58,34,104,115,118,97,34,125,41,125,125,44,111,110,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,36,101,109,105,116,40,34,99,104,97,110,103,101,34,44,116,41,125,44,104,97,110,100,108,101,77,111,117,115,101,68,111,119,110,58,102,117,110,99,116,105,111,110,40,116,41,123,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,109,111,117,115,101,109,111,118,101,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,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,109,111,117,115,101,117,112,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,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,109,111,117,115,101,117,112,34,44,116,104,105,115,46,104,97,110,100,108,101,77,111,117,115,101,85,112,41,125,44,104,97,110,100,108,101,77,111,117,115,101,85,112,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,117,110,98,105,110,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,44,117,110,98,105,110,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,109,111,118,101,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,117,112,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,117,112,34,44,116,104,105,115,46,104,97,110,100,108,101,77,111,117,115,101,85,112,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,114,61,110,40,50,50,41,44,105,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,116,58,123,100,101,102,97,117,108,116,58,116,125,125,40,114,41,59,101,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,34,65,108,112,104,97,34,44,112,114,111,112,115,58,123,118,97,108,117,101,58,79,98,106,101,99,116,44,111,110,67,104,97,110,103,101,58,70,117,110,99,116,105,111,110,125,44,99,111,109,112,111,110,101,110,116,115,58,123,99,104,101,99,107,98,111,97,114,100,58,105,46,100,101,102,97,117,108,116,125,44,99,111,109,112,117,116,101,100,58,123,99,111,108,111,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,118,97,108,117,101,125,44,103,114,97,100,105,101,110,116,67,111,108,111,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,44,101,61,91,116,46,114,44,116,46,103,44,116,46,98,93,46,106,111,105,110,40,34,44,34,41,59,114,101,116,117,114,110,34,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,114,105,103,104,116,44,32,114,103,98,97,40,34,43,101,43,34,44,32,48,41,32,48,37,44,32,114,103,98,97,40,34,43,101,43,34,44,32,49,41,32,49,48,48,37,41,34,125,125,44,109,101,116,104,111,100,115,58,123,104,97,110,100,108,101,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,33,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,116,104,105,115,46,36,114,101,102,115,46,99,111,110,116,97,105,110,101,114,59,105,102,40,110,41,123,118,97,114,32,114,44,105,61,110,46,99,108,105,101,110,116,87,105,100,116,104,44,111,61,110,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,43,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,44,97,61,116,46,112,97,103,101,88,124,124,40,116,46,116,111,117,99,104,101,115,63,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,58,48,41,44,115,61,97,45,111,59,114,61,115,60,48,63,48,58,115,62,105,63,49,58,77,97,116,104,46,114,111,117,110,100,40,49,48,48,42,115,47,105,41,47,49,48,48,44,116,104,105,115,46,99,111,108,111,114,115,46,97,33,61,61,114,38,38,116,104,105,115,46,36,101,109,105,116,40,34,99,104,97,110,103,101,34,44,123,104,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,44,115,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,115,44,108,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,108,44,97,58,114,44,115,111,117,114,99,101,58,34,114,103,98,97,34,125,41,125,125,44,104,97,110,100,108,101,77,111,117,115,101,68,111,119,110,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,40,116,44,33,48,41,44,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,109,111,117,115,101,109,111,118,101,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,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,109,111,117,115,101,117,112,34,44,116,104,105,115,46,104,97,110,100,108,101,77,111,117,115,101,85,112,41,125,44,104,97,110,100,108,101,77,111,117,115,101,85,112,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,117,110,98,105,110,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,44,117,110,98,105,110,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,109,111,118,101,34,44,116,104,105,115,46,104,97,110,100,108,101,67,104,97,110,103,101,41,44,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,117,112,34,44,116,104,105,115,46,104,97,110,100,108,101,77,111,117,115,101,85,112,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,44,101,44,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,100,111,99,117,109,101,110,116,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,114,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,99,97,110,118,97,115,34,41,59,114,46,119,105,100,116,104,61,114,46,104,101,105,103,104,116,61,50,42,110,59,118,97,114,32,105,61,114,46,103,101,116,67,111,110,116,101,120,116,40,34,50,100,34,41,59,114,101,116,117,114,110,32,105,63,40,105,46,102,105,108,108,83,116,121,108,101,61,116,44,105,46,102,105,108,108,82,101,99,116,40,48,44,48,44,114,46,119,105,100,116,104,44,114,46,104,101,105,103,104,116,41,44,105,46,102,105,108,108,83,116,121,108,101,61,101,44,105,46,102,105,108,108,82,101,99,116,40,48,44,48,44,110,44,110,41,44,105,46,116,114,97,110,115,108,97,116,101,40,110,44,110,41,44,105,46,102,105,108,108,82,101,99,116,40,48,44,48,44,110,44,110,41,44,114,46,116,111,68,97,116,97,85,82,76,40,41,41,58,110,117,108,108,125,102,117,110,99,116,105,111,110,32,105,40,116,44,101,44,110,41,123,118,97,114,32,105,61,116,43,34,44,34,43,101,43,34,44,34,43,110,59,105,102,40,111,91,105,93,41,114,101,116,117,114,110,32,111,91,105,93,59,118,97,114,32,97,61,114,40,116,44,101,44,110,41,59,114,101,116,117,114,110,32,111,91,105,93,61,97,44,97,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,111,61,123,125,59,101,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,34,67,104,101,99,107,98,111,97,114,100,34,44,112,114,111,112,115,58,123,115,105,122,101,58,123,116,121,112,101,58,91,78,117,109,98,101,114,44,83,116,114,105,110,103,93,44,100,101,102,97,117,108,116,58,56,125,44,119,104,105,116,101,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,35,102,102,102,34,125,44,103,114,101,121,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,35,101,54,101,54,101,54,34,125,125,44,99,111,109,112,117,116,101,100,58,123,98,103,83,116,121,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,34,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,34,58,34,117,114,108,40,34,43,105,40,116,104,105,115,46,119,104,105,116,101,44,116,104,105,115,46,103,114,101,121,44,116,104,105,115,46,115,105,122,101,41,43,34,41,34,125,125,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,116,58,123,100,101,102,97,117,108,116,58,116,125,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,41,44,111,61,114,40,105,41,44,97,61,110,40,53,41,44,115,61,114,40,97,41,44,99,61,110,40,50,48,41,44,117,61,114,40,99,41,44,108,61,110,40,49,51,41,44,102,61,114,40,108,41,44,104,61,110,40,50,49,41,44,100,61,114,40,104,41,44,112,61,110,40,50,50,41,44,118,61,114,40,112,41,44,103,61,91,34,35,68,48,48,50,49,66,34,44,34,35,70,53,65,54,50,51,34,44,34,35,70,56,69,55,49,67,34,44,34,35,56,66,53,55,50,65,34,44,34,35,55,69,68,51,50,49,34,44,34,35,52,49,55,53,48,53,34,44,34,35,66,68,49,48,69,48,34,44,34,35,57,48,49,51,70,69,34,44,34,35,52,65,57,48,69,50,34,44,34,35,53,48,69,51,67,50,34,44,34,35,66,56,69,57,56,54,34,44,34,35,48,48,48,48,48,48,34,44,34,35,52,65,52,65,52,65,34,44,34,35,57,66,57,66,57,66,34,44,34,35,70,70,70,70,70,70,34,44,34,114,103,98,97,40,48,44,48,44,48,44,48,41,34,93,59,101,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,34,83,107,101,116,99,104,34,44,109,105,120,105,110,115,58,91,111,46,100,101,102,97,117,108,116,93,44,99,111,109,112,111,110,101,110,116,115,58,123,115,97,116,117,114,97,116,105,111,110,58,117,46,100,101,102,97,117,108,116,44,104,117,101,58,102,46,100,101,102,97,117,108,116,44,97,108,112,104,97,58,100,46,100,101,102,97,117,108,116,44,34,101,100,45,105,110,34,58,115,46,100,101,102,97,117,108,116,44,99,104,101,99,107,98,111,97,114,100,58,118,46,100,101,102,97,117,108,116,125,44,112,114,111,112,115,58,123,112,114,101,115,101,116,67,111,108,111,114,115,58,123,116,121,112,101,58,65,114,114,97,121,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,103,125,125,44,100,105,115,97,98,108,101,65,108,112,104,97,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,44,100,105,115,97,98,108,101,70,105,101,108,100,115,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,104,101,120,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,61,116,104,105,115,46,99,111,108,111,114,115,46,97,60,49,63,116,104,105,115,46,99,111,108,111,114,115,46,104,101,120,56,58,116,104,105,115,46,99,111,108,111,114,115,46,104,101,120,44,116,46,114,101,112,108,97,99,101,40,34,35,34,44,34,34,41,125,44,97,99,116,105,118,101,67,111,108,111,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,59,114,101,116,117,114,110,34,114,103,98,97,40,34,43,91,116,46,114,44,116,46,103,44,116,46,98,44,116,46,97,93,46,106,111,105,110,40,34,44,34,41,43,34,41,34,125,125,44,109,101,116,104,111,100,115,58,123,104,97,110,100,108,101,80,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,116,44,115,111,117,114,99,101,58,34,104,101,120,34,125,41,125,44,99,104,105,108,100,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,116,41,125,44,105,110,112,117,116,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,40,116,46,104,101,120,63,116,104,105,115,46,105,115,86,97,108,105,100,72,101,120,40,116,46,104,101,120,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,116,46,104,101,120,44,115,111,117,114,99,101,58,34,104,101,120,34,125,41,58,40,116,46,114,124,124,116,46,103,124,124,116,46,98,124,124,116,46,97,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,114,58,116,46,114,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,114,44,103,58,116,46,103,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,103,44,98,58,116,46,98,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,98,44,97,58,116,46,97,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,97,44,115,111,117,114,99,101,58,34,114,103,98,97,34,125,41,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,116,58,123,100,101,102,97,117,108,116,58,116,125,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,41,44,111,61,114,40,105,41,44,97,61,110,40,53,41,44,115,61,114,40,97,41,44,99,61,110,40,50,48,41,44,117,61,114,40,99,41,44,108,61,110,40,49,51,41,44,102,61,114,40,108,41,44,104,61,110,40,50,49,41,44,100,61,114,40,104,41,44,112,61,110,40,50,50,41,44,118,61,114,40,112,41,59,101,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,34,67,104,114,111,109,101,34,44,109,105,120,105,110,115,58,91,111,46,100,101,102,97,117,108,116,93,44,112,114,111,112,115,58,123,100,105,115,97,98,108,101,65,108,112,104,97,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,44,100,105,115,97,98,108,101,70,105,101,108,100,115,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,125,44,99,111,109,112,111,110,101,110,116,115,58,123,115,97,116,117,114,97,116,105,111,110,58,117,46,100,101,102,97,117,108,116,44,104,117,101,58,102,46,100,101,102,97,117,108,116,44,97,108,112,104,97,58,100,46,100,101,102,97,117,108,116,44,34,101,100,45,105,110,34,58,115,46,100,101,102,97,117,108,116,44,99,104,101,99,107,98,111,97,114,100,58,118,46,100,101,102,97,117,108,116,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,102,105,101,108,100,115,73,110,100,101,120,58,48,44,104,105,103,104,108,105,103,104,116,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,104,115,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,44,101,61,116,46,104,44,110,61,116,46,115,44,114,61,116,46,108,59,114,101,116,117,114,110,123,104,58,101,46,116,111,70,105,120,101,100,40,41,44,115,58,40,49,48,48,42,110,41,46,116,111,70,105,120,101,100,40,41,43,34,37,34,44,108,58,40,49,48,48,42,114,41,46,116,111,70,105,120,101,100,40,41,43,34,37,34,125,125,44,97,99,116,105,118,101,67,111,108,111,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,59,114,101,116,117,114,110,34,114,103,98,97,40,34,43,91,116,46,114,44,116,46,103,44,116,46,98,44,116,46,97,93,46,106,111,105,110,40,34,44,34,41,43,34,41,34,125,44,104,97,115,65,108,112,104,97,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,111,114,115,46,97,60,49,125,125,44,109,101,116,104,111,100,115,58,123,99,104,105,108,100,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,116,41,125,44,105,110,112,117,116,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,41,105,102,40,116,46,104,101,120,41,116,104,105,115,46,105,115,86,97,108,105,100,72,101,120,40,116,46,104,101,120,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,116,46,104,101,120,44,115,111,117,114,99,101,58,34,104,101,120,34,125,41,59,101,108,115,101,32,105,102,40,116,46,114,124,124,116,46,103,124,124,116,46,98,124,124,116,46,97,41,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,114,58,116,46,114,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,114,44,103,58,116,46,103,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,103,44,98,58,116,46,98,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,98,44,97,58,116,46,97,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,97,44,115,111,117,114,99,101,58,34,114,103,98,97,34,125,41,59,101,108,115,101,32,105,102,40,116,46,104,124,124,116,46,115,124,124,116,46,108,41,123,118,97,114,32,101,61,116,46,115,63,116,46,115,46,114,101,112,108,97,99,101,40,34,37,34,44,34,34,41,47,49,48,48,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,115,44,110,61,116,46,108,63,116,46,108,46,114,101,112,108,97,99,101,40,34,37,34,44,34,34,41,47,49,48,48,58,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,108,59,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,58,116,46,104,124,124,116,104,105,115,46,99,111,108,111,114,115,46,104,115,108,46,104,44,115,58,101,44,108,58,110,44,115,111,117,114,99,101,58,34,104,115,108,34,125,41,125,125,44,116,111,103,103,108,101,86,105,101,119,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,102,105,101,108,100,115,73,110,100,101,120,62,61,50,63,116,104,105,115,46,102,105,101,108,100,115,73,110,100,101,120,61,48,58,116,104,105,115,46,102,105,101,108,100,115,73,110,100,101,120,43,43,125,44,115,104,111,119,72,105,103,104,108,105,103,104,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,105,103,104,108,105,103,104,116,61,33,48,125,44,104,105,100,101,72,105,103,104,108,105,103,104,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,105,103,104,108,105,103,104,116,61,33,49,125,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,116,58,123,100,101,102,97,117,108,116,58,116,125,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,41,44,111,61,114,40,105,41,44,97,61,110,40,51,41,44,115,61,114,40,97,41,44,99,61,91,34,35,70,70,54,57,48,48,34,44,34,35,70,67,66,57,48,48,34,44,34,35,55,66,68,67,66,53,34,44,34,35,48,48,68,48,56,52,34,44,34,35,56,69,68,49,70,67,34,44,34,35,48,54,57,51,69,51,34,44,34,35,65,66,66,56,67,51,34,44,34,35,69,66,49,52,52,67,34,44,34,35,70,55,56,68,65,55,34,44,34,35,57,57,48,48,69,70,34,93,59,101,46,100,101,102,97,117,108,116,61,123,110,97,109,101,58,34,84,119,105,116,116,101,114,34,44,109,105,120,105,110,115,58,91,115,46,100,101,102,97,117,108,116,93,44,99,111,109,112,111,110,101,110,116,115,58,123,101,100,105,116,97,98,108,101,73,110,112,117,116,58,111,46,100,101,102,97,117,108,116,125,44,112,114,111,112,115,58,123,119,105,100,116,104,58,123,116,121,112,101,58,91,83,116,114,105,110,103,44,78,117,109,98,101,114,93,44,100,101,102,97,117,108,116,58,50,55,54,125,44,100,101,102,97,117,108,116,67,111,108,111,114,115,58,123,116,121,112,101,58,65,114,114,97,121,44,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,125,125,44,116,114,105,97,110,103,108,101,58,123,100,101,102,97,117,108,116,58,34,116,111,112,45,108,101,102,116,34,44,118,97,108,105,100,97,116,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,34,104,105,100,101,34,44,34,116,111,112,45,108,101,102,116,34,44,34,116,111,112,45,114,105,103,104,116,34,93,46,105,110,99,108,117,100,101,115,40,116,41,125,125,125,44,99,111,109,112,117,116,101,100,58,123,104,115,118,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,59,114,101,116,117,114,110,123,104,58,116,46,104,46,116,111,70,105,120,101,100,40,41,44,115,58,40,49,48,48,42,116,46,115,41,46,116,111,70,105,120,101,100,40,41,44,118,58,40,49,48,48,42,116,46,118,41,46,116,111,70,105,120,101,100,40,41,125,125,44,104,101,120,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,111,114,115,46,104,101,120,59,114,101,116,117,114,110,32,116,38,38,116,46,114,101,112,108,97,99,101,40,34,35,34,44,34,34,41,125,125,44,109,101,116,104,111,100,115,58,123,101,113,117,97,108,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,116,104,105,115,46,99,111,108,111,114,115,46,104,101,120,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,104,97,110,100,108,101,114,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,116,44,115,111,117,114,99,101,58,34,104,101,120,34,125,41,125,44,105,110,112,117,116,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,40,116,91,34,35,34,93,63,116,104,105,115,46,105,115,86,97,108,105,100,72,101,120,40,116,91,34,35,34,93,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,101,120,58,116,91,34,35,34,93,44,115,111,117,114,99,101,58,34,104,101,120,34,125,41,58,116,46,114,124,124,116,46,103,124,124,116,46,98,124,124,116,46,97,63,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,114,58,116,46,114,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,114,44,103,58,116,46,103,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,103,44,98,58,116,46,98,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,98,44,97,58,116,46,97,124,124,116,104,105,115,46,99,111,108,111,114,115,46,114,103,98,97,46,97,44,115,111,117,114,99,101,58,34,114,103,98,97,34,125,41,58,40,116,46,104,124,124,116,46,115,124,124,116,46,118,41,38,38,116,104,105,115,46,99,111,108,111,114,67,104,97,110,103,101,40,123,104,58,116,46,104,124,124,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,104,44,115,58,116,46,115,47,49,48,48,124,124,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,115,44,118,58,116,46,118,47,49,48,48,124,124,116,104,105,115,46,99,111,108,111,114,115,46,104,115,118,46,118,44,115,111,117,114,99,101,58,34,104,115,118,34,125,41,41,125,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,116,58,123,100,101,102,97,117,108,116,58,116,125,125,118,97,114,32,105,61,110,40,54,49,41,44,111,61,114,40,105,41,44,97,61,110,40,55,48,41,44,115,61,114,40,97,41,44,99,61,110,40,55,52,41,44,117,61,114,40,99,41,44,108,61,110,40,55,56,41,44,102,61,114,40,108,41,44,104,61,110,40,49,49,53,41,44,100,61,114,40,104,41,44,112,61,110,40,49,50,48,41,44,118,61,114,40,112,41,44,103,61,110,40,49,51,53,41,44,109,61,114,40,103,41,44,98,61,110,40,49,51,57,41,44,121,61,114,40,98,41,44,119,61,110,40,49,52,51,41,44,95,61,114,40,119,41,44,120,61,110,40,50,49,41,44,79,61,114,40,120,41,44,83,61,110,40,50,50,41,44,107,61,114,40,83,41,44,67,61,110,40,53,41,44,80,61,114,40,67,41,44,84,61,110,40,49,51,41,44,106,61,114,40,84,41,44,69,61,110,40,50,48,41,44,68,61,114,40,69,41,44,65,61,110,40,51,41,44,76,61,114,40,65,41,44,73,61,123,118,101,114,115,105,111,110,58,34,50,46,56,46,49,34,44,67,111,109,112,97,99,116,58,111,46,100,101,102,97,117,108,116,44,71,114,97,121,115,99,97,108,101,58,115,46,100,101,102,97,117,108,116,44,84,119,105,116,116,101,114,58,95,46,100,101,102,97,117,108,116,44,77,97,116,101,114,105,97,108,58,117,46,100,101,102,97,117,108,116,44,83,108,105,100,101,114,58,102,46,100,101,102,97,117,108,116,44,83,119,97,116,99,104,101,115,58,100,46,100,101,102,97,117,108,116,44,80,104,111,116,111,115,104,111,112,58,118,46,100,101,102,97,117,108,116,44,83,107,101,116,99,104,58,109,46,100,101,102,97,117,108,116,44,67,104,114,111,109,101,58,121,46,100,101,102,97,117,108,116,44,65,108,112,104,97,58,79,46,100,101,102,97,117,108,116,44,67,104,101,99,107,98,111,97,114,100,58,107,46,100,101,102,97,117,108,116,44,69,100,105,116,97,98,108,101,73,110,112,117,116,58,80,46,100,101,102,97,117,108,116,44,72,117,101,58,106,46,100,101,102,97,117,108,116,44,83,97,116,117,114,97,116,105,111,110,58,68,46,100,101,102,97,117,108,116,44,67,111,108,111,114,77,105,120,105,110,58,76,46,100,101,102,97,117,108,116,125,59,116,46,101,120,112,111,114,116,115,61,73,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,99,124,124,110,40,54,50,41,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,53,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,34,100,101,102,97,117,108,116,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,40,101,44,116,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,116,93,125,41,41,125,40,97,41,59,118,97,114,32,115,61,110,40,54,57,41,44,99,61,33,49,44,117,61,110,40,50,41,44,108,61,114,44,102,61,117,40,111,46,97,44,115,46,97,44,33,49,44,108,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,111,109,112,97,99,116,46,118,117,101,34,44,101,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,54,51,41,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,116,46,105,44,114,44,34,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,116,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,44,110,40,49,41,40,34,54,99,101,56,97,53,97,56,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,61,116,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,101,46,112,117,115,104,40,91,116,46,105,44,34,92,110,46,118,99,45,99,111,109,112,97,99,116,32,123,92,110,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,53,112,120,59,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,53,112,120,59,92,110,32,32,119,105,100,116,104,58,32,50,52,53,112,120,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,110,32,32,98,111,120,45,115,105,122,105,110,103,58,32,98,111,114,100,101,114,45,98,111,120,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,50,112,120,32,49,48,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,41,44,32,48,32,50,112,120,32,53,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,54,41,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,102,102,59,92,110,125,92,110,46,118,99,45,99,111,109,112,97,99,116,45,99,111,108,111,114,115,32,123,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,110,32,32,112,97,100,100,105,110,103,58,32,48,59,92,110,32,32,109,97,114,103,105,110,58,32,48,59,92,110,125,92,110,46,118,99,45,99,111,109,112,97,99,116,45,99,111,108,111,114,45,105,116,101,109,32,123,92,110,32,32,108,105,115,116,45,115,116,121,108,101,58,32,110,111,110,101,59,92,110,32,32,119,105,100,116,104,58,32,49,53,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,49,53,112,120,59,92,110,32,32,102,108,111,97,116,58,32,108,101,102,116,59,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,53,112,120,59,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,53,112,120,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,110,125,92,110,46,118,99,45,99,111,109,112,97,99,116,45,99,111,108,111,114,45,105,116,101,109,45,45,119,104,105,116,101,32,123,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,35,100,100,100,59,92,110,125,92,110,46,118,99,45,99,111,109,112,97,99,116,45,99,111,108,111,114,45,105,116,101,109,45,45,119,104,105,116,101,32,46,118,99,45,99,111,109,112,97,99,116,45,100,111,116,32,123,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,48,48,48,59,92,110,125,92,110,46,118,99,45,99,111,109,112,97,99,116,45,100,111,116,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,32,32,116,111,112,58,32,53,112,120,59,92,110,32,32,114,105,103,104,116,58,32,53,112,120,59,92,110,32,32,98,111,116,116,111,109,58,32,53,112,120,59,92,110,32,32,108,101,102,116,58,32,53,112,120,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,53,48,37,59,92,110,32,32,111,112,97,99,105,116,121,58,32,49,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,92,110,125,92,110,34,44,34,34,93,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,91,93,44,114,61,123,125,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,97,61,111,91,48,93,44,115,61,111,91,49,93,44,99,61,111,91,50,93,44,117,61,111,91,51,93,44,108,61,123,105,100,58,116,43,34,58,34,43,105,44,99,115,115,58,115,44,109,101,100,105,97,58,99,44,115,111,117,114,99,101,77,97,112,58,117,125,59,114,91,97,93,63,114,91,97,93,46,112,97,114,116,115,46,112,117,115,104,40,108,41,58,110,46,112,117,115,104,40,114,91,97,93,61,123,105,100,58,97,44,112,97,114,116,115,58,91,108,93,125,41,125,114,101,116,117,114,110,32,110,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,59,33,102,117,110,99,116,105,111,110,40,105,41,123,102,117,110,99,116,105,111,110,32,111,40,116,44,101,41,123,105,102,40,116,61,116,124,124,34,34,44,101,61,101,124,124,123,125,44,116,32,105,110,115,116,97,110,99,101,111,102,32,111,41,114,101,116,117,114,110,32,116,59,105,102,40,33,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,111,41,41,114,101,116,117,114,110,32,110,101,119,32,111,40,116,44,101,41,59,118,97,114,32,110,61,97,40,116,41,59,116,104,105,115,46,95,111,114,105,103,105,110,97,108,73,110,112,117,116,61,116,44,116,104,105,115,46,95,114,61,110,46,114,44,116,104,105,115,46,95,103,61,110,46,103,44,116,104,105,115,46,95,98,61,110,46,98,44,116,104,105,115,46,95,97,61,110,46,97,44,116,104,105,115,46,95,114,111,117,110,100,65,61,85,40,49,48,48,42,116,104,105,115,46,95,97,41,47,49,48,48,44,116,104,105,115,46,95,102,111,114,109,97,116,61,101,46,102,111,114,109,97,116,124,124,110,46,102,111,114,109,97,116,44,116,104,105,115,46,95,103,114,97,100,105,101,110,116,84,121,112,101,61,101,46,103,114,97,100,105,101,110,116,84,121,112,101,44,116,104,105,115,46,95,114,60,49,38,38,40,116,104,105,115,46,95,114,61,85,40,116,104,105,115,46,95,114,41,41,44,116,104,105,115,46,95,103,60,49,38,38,40,116,104,105,115,46,95,103,61,85,40,116,104,105,115,46,95,103,41,41,44,116,104,105,115,46,95,98,60,49,38,38,40,116,104,105,115,46,95,98,61,85,40,116,104,105,115,46,95,98,41,41,44,116,104,105,115,46,95,111,107,61,110,46,111,107,44,116,104,105,115,46,95,116,99,95,105,100,61,72,43,43,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,118,97,114,32,101,61,123,114,58,48,44,103,58,48,44,98,58,48,125,44,110,61,49,44,114,61,110,117,108,108,44,105,61,110,117,108,108,44,111,61,110,117,108,108,44,97,61,33,49,44,99,61,33,49,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,40,116,61,78,40,116,41,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,40,82,40,116,46,114,41,38,38,82,40,116,46,103,41,38,38,82,40,116,46,98,41,63,40,101,61,115,40,116,46,114,44,116,46,103,44,116,46,98,41,44,97,61,33,48,44,99,61,34,37,34,61,61,61,83,116,114,105,110,103,40,116,46,114,41,46,115,117,98,115,116,114,40,45,49,41,63,34,112,114,103,98,34,58,34,114,103,98,34,41,58,82,40,116,46,104,41,38,38,82,40,116,46,115,41,38,38,82,40,116,46,118,41,63,40,114,61,77,40,116,46,115,41,44,105,61,77,40,116,46,118,41,44,101,61,102,40,116,46,104,44,114,44,105,41,44,97,61,33,48,44,99,61,34,104,115,118,34,41,58,82,40,116,46,104,41,38,38,82,40,116,46,115,41,38,38,82,40,116,46,108,41,38,38,40,114,61,77,40,116,46,115,41,44,111,61,77,40,116,46,108,41,44,101,61,117,40,116,46,104,44,114,44,111,41,44,97,61,33,48,44,99,61,34,104,115,108,34,41,44,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,97,34,41,38,38,40,110,61,116,46,97,41,41,44,110,61,84,40,110,41,44,123,111,107,58,97,44,102,111,114,109,97,116,58,116,46,102,111,114,109,97,116,124,124,99,44,114,58,87,40,50,53,53,44,71,40,101,46,114,44,48,41,41,44,103,58,87,40,50,53,53,44,71,40,101,46,103,44,48,41,41,44,98,58,87,40,50,53,53,44,71,40,101,46,98,44,48,41,41,44,97,58,110,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,123,114,58,50,53,53,42,106,40,116,44,50,53,53,41,44,103,58,50,53,53,42,106,40,101,44,50,53,53,41,44,98,58,50,53,53,42,106,40,110,44,50,53,53,41,125,125,102,117,110,99,116,105,111,110,32,99,40,116,44,101,44,110,41,123,116,61,106,40,116,44,50,53,53,41,44,101,61,106,40,101,44,50,53,53,41,44,110,61,106,40,110,44,50,53,53,41,59,118,97,114,32,114,44,105,44,111,61,71,40,116,44,101,44,110,41,44,97,61,87,40,116,44,101,44,110,41,44,115,61,40,111,43,97,41,47,50,59,105,102,40,111,61,61,97,41,114,61,105,61,48,59,101,108,115,101,123,118,97,114,32,99,61,111,45,97,59,115,119,105,116,99,104,40,105,61,115,62,46,53,63,99,47,40,50,45,111,45,97,41,58,99,47,40,111,43,97,41,44,111,41,123,99,97,115,101,32,116,58,114,61,40,101,45,110,41,47,99,43,40,101,60,110,63,54,58,48,41,59,98,114,101,97,107,59,99,97,115,101,32,101,58,114,61,40,110,45,116,41,47,99,43,50,59,98,114,101,97,107,59,99,97,115,101,32,110,58,114,61,40,116,45,101,41,47,99,43,52,125,114,47,61,54,125,114,101,116,117,114,110,123,104,58,114,44,115,58,105,44,108,58,115,125,125,102,117,110,99,116,105,111,110,32,117,40,116,44,101,44,110,41,123,102,117,110,99,116,105,111,110,32,114,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,110,60,48,38,38,40,110,43,61,49,41,44,110,62,49,38,38,40,110,45,61,49,41,44,110,60,49,47,54,63,116,43,54,42,40,101,45,116,41,42,110,58,110,60,46,53,63,101,58,110,60,50,47,51,63,116,43,40,101,45,116,41,42,40,50,47,51,45,110,41,42,54,58,116,125,118,97,114,32,105,44,111,44,97,59,105,102,40,116,61,106,40,116,44,51,54,48,41,44,101,61,106,40,101,44,49,48,48,41,44,110,61,106,40,110,44,49,48,48,41,44,48,61,61,61,101,41,105,61,111,61,97,61,110,59,101,108,115,101,123,118,97,114,32,115,61,110,60,46,53,63,110,42,40,49,43,101,41,58,110,43,101,45,110,42,101,44,99,61,50,42,110,45,115,59,105,61,114,40,99,44,115,44,116,43,49,47,51,41,44,111,61,114,40,99,44,115,44,116,41,44,97,61,114,40,99,44,115,44,116,45,49,47,51,41,125,114,101,116,117,114,110,123,114,58,50,53,53,42,105,44,103,58,50,53,53,42,111,44,98,58,50,53,53,42,97,125,125,102,117,110,99,116,105,111,110,32,108,40,116,44,101,44,110,41,123,116,61,106,40,116,44,50,53,53,41,44,101,61,106,40,101,44,50,53,53,41,44,110,61,106,40,110,44,50,53,53,41,59,118,97,114,32,114,44,105,44,111,61,71,40,116,44,101,44,110,41,44,97,61,87,40,116,44,101,44,110,41,44,115,61,111,44,99,61,111,45,97,59,105,102,40,105,61,48,61,61,61,111,63,48,58,99,47,111,44,111,61,61,97,41,114,61,48,59,101,108,115,101,123,115,119,105,116,99,104,40,111,41,123,99,97,115,101,32,116,58,114,61,40,101,45,110,41,47,99,43,40,101,60,110,63,54,58,48,41,59,98,114,101,97,107,59,99,97,115,101,32,101,58,114,61,40,110,45,116,41,47,99,43,50,59,98,114,101,97,107,59,99,97,115,101,32,110,58,114,61,40,116,45,101,41,47,99,43,52,125,114,47,61,54,125,114,101,116,117,114,110,123,104,58,114,44,115,58,105,44,118,58,115,125,125,102,117,110,99,116,105,111,110,32,102,40,116,44,101,44,110,41,123,116,61,54,42,106,40,116,44,51,54,48,41,44,101,61,106,40,101,44,49,48,48,41,44,110,61,106,40,110,44,49,48,48,41,59,118,97,114,32,114,61,105,46,102,108,111,111,114,40,116,41,44,111,61,116,45,114,44,97,61,110,42,40,49,45,101,41,44,115,61,110,42,40,49,45,111,42,101,41,44,99,61,110,42,40,49,45,40,49,45,111,41,42,101,41,44,117,61,114,37,54,59,114,101,116,117,114,110,123,114,58,50,53,53,42,91,110,44,115,44,97,44,97,44,99,44,110,93,91,117,93,44,103,58,50,53,53,42,91,99,44,110,44,110,44,115,44,97,44,97,93,91,117,93,44,98,58,50,53,53,42,91,97,44,97,44,99,44,110,44,110,44,115,93,91,117,93,125,125,102,117,110,99,116,105,111,110,32,104,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,91,73,40,85,40,116,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,44,73,40,85,40,101,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,44,73,40,85,40,110,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,93,59,114,101,116,117,114,110,32,114,38,38,105,91,48,93,46,99,104,97,114,65,116,40,48,41,61,61,105,91,48,93,46,99,104,97,114,65,116,40,49,41,38,38,105,91,49,93,46,99,104,97,114,65,116,40,48,41,61,61,105,91,49,93,46,99,104,97,114,65,116,40,49,41,38,38,105,91,50,93,46,99,104,97,114,65,116,40,48,41,61,61,105,91,50,93,46,99,104,97,114,65,116,40,49,41,63,105,91,48,93,46,99,104,97,114,65,116,40,48,41,43,105,91,49,93,46,99,104,97,114,65,116,40,48,41,43,105,91,50,93,46,99,104,97,114,65,116,40,48,41,58,105,46,106,111,105,110,40,34,34,41,125,102,117,110,99,116,105,111,110,32,100,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,91,73,40,85,40,116,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,44,73,40,85,40,101,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,44,73,40,85,40,110,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,44,73,40,36,40,114,41,41,93,59,114,101,116,117,114,110,32,105,38,38,111,91,48,93,46,99,104,97,114,65,116,40,48,41,61,61,111,91,48,93,46,99,104,97,114,65,116,40,49,41,38,38,111,91,49,93,46,99,104,97,114,65,116,40,48,41,61,61,111,91,49,93,46,99,104,97,114,65,116,40,49,41,38,38,111,91,50,93,46,99,104,97,114,65,116,40,48,41,61,61,111,91,50,93,46,99,104,97,114,65,116,40,49,41,38,38,111,91,51,93,46,99,104,97,114,65,116,40,48,41,61,61,111,91,51,93,46,99,104,97,114,65,116,40,49,41,63,111,91,48,93,46,99,104,97,114,65,116,40,48,41,43,111,91,49,93,46,99,104,97,114,65,116,40,48,41,43,111,91,50,93,46,99,104,97,114,65,116,40,48,41,43,111,91,51,93,46,99,104,97,114,65,116,40,48,41,58,111,46,106,111,105,110,40,34,34,41,125,102,117,110,99,116,105,111,110,32,112,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,91,73,40,36,40,114,41,41,44,73,40,85,40,116,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,44,73,40,85,40,101,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,44,73,40,85,40,110,41,46,116,111,83,116,114,105,110,103,40,49,54,41,41,93,46,106,111,105,110,40,34,34,41,125,102,117,110,99,116,105,111,110,32,118,40,116,44,101,41,123,101,61,48,61,61,61,101,63,48,58,101,124,124,49,48,59,118,97,114,32,110,61,111,40,116,41,46,116,111,72,115,108,40,41,59,114,101,116,117,114,110,32,110,46,115,45,61,101,47,49,48,48,44,110,46,115,61,69,40,110,46,115,41,44,111,40,110,41,125,102,117,110,99,116,105,111,110,32,103,40,116,44,101,41,123,101,61,48,61,61,61,101,63,48,58,101,124,124,49,48,59,118,97,114,32,110,61,111,40,116,41,46,116,111,72,115,108,40,41,59,114,101,116,117,114,110,32,110,46,115,43,61,101,47,49,48,48,44,110,46,115,61,69,40,110,46,115,41,44,111,40,110,41,125,102,117,110,99,116,105,111,110,32,109,40,116,41,123,114,101,116,117,114,110,32,111,40,116,41,46,100,101,115,97,116,117,114,97,116,101,40,49,48,48,41,125,102,117,110,99,116,105,111,110,32,98,40,116,44,101,41,123,101,61,48,61,61,61,101,63,48,58,101,124,124,49,48,59,118,97,114,32,110,61,111,40,116,41,46,116,111,72,115,108,40,41,59,114,101,116,117,114,110,32,110,46,108,43,61,101,47,49,48,48,44,110,46,108,61,69,40,110,46,108,41,44,111,40,110,41,125,102,117,110,99,116,105,111,110,32,121,40,116,44,101,41,123,101,61,48,61,61,61,101,63,48,58,101,124,124,49,48,59,118,97,114,32,110,61,111,40,116,41,46,116,111,82,103,98,40,41,59,114,101,116,117,114,110,32,110,46,114,61,71,40,48,44,87,40,50,53,53,44,110,46,114,45,85,40,45,101,47,49,48,48,42,50,53,53,41,41,41,44,110,46,103,61,71,40,48,44,87,40,50,53,53,44,110,46,103,45,85,40,45,101,47,49,48,48,42,50,53,53,41,41,41,44,110,46,98,61,71,40,48,44,87,40,50,53,53,44,110,46,98,45,85,40,45,101,47,49,48,48,42,50,53,53,41,41,41,44,111,40,110,41,125,102,117,110,99,116,105,111,110,32,119,40,116,44,101,41,123,101,61,48,61,61,61,101,63,48,58,101,124,124,49,48,59,118,97,114,32,110,61,111,40,116,41,46,116,111,72,115,108,40,41,59,114,101,116,117,114,110,32,110,46,108,45,61,101,47,49,48,48,44,110,46,108,61,69,40,110,46,108,41,44,111,40,110,41,125,102,117,110,99,116,105,111,110,32,95,40,116,44,101,41,123,118,97,114,32,110,61,111,40,116,41,46,116,111,72,115,108,40,41,44,114,61,40,110,46,104,43,101,41,37,51,54,48,59,114,101,116,117,114,110,32,110,46,104,61,114,60,48,63,51,54,48,43,114,58,114,44,111,40,110,41,125,102,117,110,99,116,105,111,110,32,120,40,116,41,123,118,97,114,32,101,61,111,40,116,41,46,116,111,72,115,108,40,41,59,114,101,116,117,114,110,32,101,46,104,61,40,101,46,104,43,49,56,48,41,37,51,54,48,44,111,40,101,41,125,102,117,110,99,116,105,111,110,32,79,40,116,41,123,118,97,114,32,101,61,111,40,116,41,46,116,111,72,115,108,40,41,44,110,61,101,46,104,59,114,101,116,117,114,110,91,111,40,116,41,44,111,40,123,104,58,40,110,43,49,50,48,41,37,51,54,48,44,115,58,101,46,115,44,108,58,101,46,108,125,41,44,111,40,123,104,58,40,110,43,50,52,48,41,37,51,54,48,44,115,58,101,46,115,44,108,58,101,46,108,125,41,93,125,102,117,110,99,116,105,111,110,32,83,40,116,41,123,118,97,114,32,101,61,111,40,116,41,46,116,111,72,115,108,40,41,44,110,61,101,46,104,59,114,101,116,117,114,110,91,111,40,116,41,44,111,40,123,104,58,40,110,43,57,48,41,37,51,54,48,44,115,58,101,46,115,44,108,58,101,46,108,125,41,44,111,40,123,104,58,40,110,43,49,56,48,41,37,51,54,48,44,115,58,101,46,115,44,108,58,101,46,108,125,41,44,111,40,123,104,58,40,110,43,50,55,48,41,37,51,54,48,44,115,58,101,46,115,44,108,58,101,46,108,125,41,93,125,102,117,110,99,116,105,111,110,32,107,40,116,41,123,118,97,114,32,101,61,111,40,116,41,46,116,111,72,115,108,40,41,44,110,61,101,46,104,59,114,101,116,117,114,110,91,111,40,116,41,44,111,40,123,104,58,40,110,43,55,50,41,37,51,54,48,44,115,58,101,46,115,44,108,58,101,46,108,125,41,44,111,40,123,104,58,40,110,43,50,49,54,41,37,51,54,48,44,115,58,101,46,115,44,108,58,101,46,108,125,41,93,125,102,117,110,99,116,105,111,110,32,67,40,116,44,101,44,110,41,123,101,61,101,124,124,54,44,110,61,110,124,124,51,48,59,118,97,114,32,114,61,111,40,116,41,46,116,111,72,115,108,40,41,44,105,61,51,54,48,47,110,44,97,61,91,111,40,116,41,93,59,102,111,114,40,114,46,104,61,40,114,46,104,45,40,105,42,101,62,62,49,41,43,55,50,48,41,37,51,54,48,59,45,45,101,59,41,114,46,104,61,40,114,46,104,43,105,41,37,51,54,48,44,97,46,112,117,115,104,40,111,40,114,41,41,59,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,80,40,116,44,101,41,123,101,61,101,124,124,54,59,102,111,114,40,118,97,114,32,110,61,111,40,116,41,46,116,111,72,115,118,40,41,44,114,61,110,46,104,44,105,61,110,46,115,44,97,61,110,46,118,44,115,61,91,93,44,99,61,49,47,101,59,101,45,45,59,41,115,46,112,117,115,104,40,111,40,123,104,58,114,44,115,58,105,44,118,58,97,125,41,41,44,97,61,40,97,43,99,41,37,49,59,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,84,40,116,41,123,114,101,116,117,114,110,32,116,61,112,97,114,115,101,70,108,111,97,116,40,116,41,44,40,105,115,78,97,78,40,116,41,124,124,116,60,48,124,124,116,62,49,41,38,38,40,116,61,49,41,44,116,125,102,117,110,99,116,105,111,110,32,106,40,116,44,101,41,123,65,40,116,41,38,38,40,116,61,34,49,48,48,37,34,41,59,118,97,114,32,110,61,76,40,116,41,59,114,101,116,117,114,110,32,116,61,87,40,101,44,71,40,48,44,112,97,114,115,101,70,108,111,97,116,40,116,41,41,41,44,110,38,38,40,116,61,112,97,114,115,101,73,110,116,40,116,42,101,44,49,48,41,47,49,48,48,41,44,105,46,97,98,115,40,116,45,101,41,60,49,101,45,54,63,49,58,116,37,101,47,112,97,114,115,101,70,108,111,97,116,40,101,41,125,102,117,110,99,116,105,111,110,32,69,40,116,41,123,114,101,116,117,114,110,32,87,40,49,44,71,40,48,44,116,41,41,125,102,117,110,99,116,105,111,110,32,68,40,116,41,123,114,101,116,117,114,110,32,112,97,114,115,101,73,110,116,40,116,44,49,54,41,125,102,117,110,99,116,105,111,110,32,65,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,116,38,38,45,49,33,61,116,46,105,110,100,101,120,79,102,40,34,46,34,41,38,38,49,61,61,61,112,97,114,115,101,70,108,111,97,116,40,116,41,125,102,117,110,99,116,105,111,110,32,76,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,116,38,38,45,49,33,61,116,46,105,110,100,101,120,79,102,40,34,37,34,41,125,102,117,110,99,116,105,111,110,32,73,40,116,41,123,114,101,116,117,114,110,32,49,61,61,116,46,108,101,110,103,116,104,63,34,48,34,43,116,58,34,34,43,116,125,102,117,110,99,116,105,111,110,32,77,40,116,41,123,114,101,116,117,114,110,32,116,60,61,49,38,38,40,116,61,49,48,48,42,116,43,34,37,34,41,44,116,125,102,117,110,99,116,105,111,110,32,36,40,116,41,123,114,101,116,117,114,110,32,105,46,114,111,117,110,100,40,50,53,53,42,112,97,114,115,101,70,108,111,97,116,40,116,41,41,46,116,111,83,116,114,105,110,103,40,49,54,41,125,102,117,110,99,116,105,111,110,32,70,40,116,41,123,114,101,116,117,114,110,32,68,40,116,41,47,50,53,53,125,102,117,110,99,116,105,111,110,32,82,40,116,41,123,114,101,116,117,114,110,33,33,88,46,67,83,83,95,85,78,73,84,46,101,120,101,99,40,116,41,125,102,117,110,99,116,105,111,110,32,78,40,116,41,123,116,61,116,46,114,101,112,108,97,99,101,40,122,44,34,34,41,46,114,101,112,108,97,99,101,40,86,44,34,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,118,97,114,32,101,44,110,61,33,49,59,105,102,40,89,91,116,93,41,116,61,89,91,116,93,44,110,61,33,48,59,101,108,115,101,32,105,102,40,34,116,114,97,110,115,112,97,114,101,110,116,34,61,61,116,41,114,101,116,117,114,110,123,114,58,48,44,103,58,48,44,98,58,48,44,97,58,48,44,102,111,114,109,97,116,58,34,110,97,109,101,34,125,59,114,101,116,117,114,110,40,101,61,88,46,114,103,98,46,101,120,101,99,40,116,41,41,63,123,114,58,101,91,49,93,44,103,58,101,91,50,93,44,98,58,101,91,51,93,125,58,40,101,61,88,46,114,103,98,97,46,101,120,101,99,40,116,41,41,63,123,114,58,101,91,49,93,44,103,58,101,91,50,93,44,98,58,101,91,51,93,44,97,58,101,91,52,93,125,58,40,101,61,88,46,104,115,108,46,101,120,101,99,40,116,41,41,63,123,104,58,101,91,49,93,44,115,58,101,91,50,93,44,108,58,101,91,51,93,125,58,40,101,61,88,46,104,115,108,97,46,101,120,101,99,40,116,41,41,63,123,104,58,101,91,49,93,44,115,58,101,91,50,93,44,108,58,101,91,51,93,44,97,58,101,91,52,93,125,58,40,101,61,88,46,104,115,118,46,101,120,101,99,40,116,41,41,63,123,104,58,101,91,49,93,44,115,58,101,91,50,93,44,118,58,101,91,51,93,125,58,40,101,61,88,46,104,115,118,97,46,101,120,101,99,40,116,41,41,63,123,104,58,101,91,49,93,44,115,58,101,91,50,93,44,118,58,101,91,51,93,44,97,58,101,91,52,93,125,58,40,101,61,88,46,104,101,120,56,46,101,120,101,99,40,116,41,41,63,123,114,58,68,40,101,91,49,93,41,44,103,58,68,40,101,91,50,93,41,44,98,58,68,40,101,91,51,93,41,44,97,58,70,40,101,91,52,93,41,44,102,111,114,109,97,116,58,110,63,34,110,97,109,101,34,58,34,104,101,120,56,34,125,58,40,101,61,88,46,104,101,120,54,46,101,120,101,99,40,116,41,41,63,123,114,58,68,40,101,91,49,93,41,44,103,58,68,40,101,91,50,93,41,44,98,58,68,40,101,91,51,93,41,44,102,111,114,109,97,116,58,110,63,34,110,97,109,101,34,58,34,104,101,120,34,125,58,40,101,61,88,46,104,101,120,52,46,101,120,101,99,40,116,41,41,63,123,114,58,68,40,101,91,49,93,43,34,34,43,101,91,49,93,41,44,103,58,68,40,101,91,50,93,43,34,34,43,101,91,50,93,41,44,98,58,68,40,101,91,51,93,43,34,34,43,101,91,51,93,41,44,97,58,70,40,101,91,52,93,43,34,34,43,101,91,52,93,41,44,102,111,114,109,97,116,58,110,63,34,110,97,109,101,34,58,34,104,101,120,56,34,125,58,33,33,40,101,61,88,46,104,101,120,51,46,101,120,101,99,40,116,41,41,38,38,123,114,58,68,40,101,91,49,93,43,34,34,43,101,91,49,93,41,44,103,58,68,40,101,91,50,93,43,34,34,43,101,91,50,93,41,44,98,58,68,40,101,91,51,93,43,34,34,43,101,91,51,93,41,44,102,111,114,109,97,116,58,110,63,34,110,97,109,101,34,58,34,104,101,120,34,125,125,102,117,110,99,116,105,111,110,32,66,40,116,41,123,118,97,114,32,101,44,110,59,114,101,116,117,114,110,32,116,61,116,124,124,123,108,101,118,101,108,58,34,65,65,34,44,115,105,122,101,58,34,115,109,97,108,108,34,125,44,101,61,40,116,46,108,101,118,101,108,124,124,34,65,65,34,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,44,110,61,40,116,46,115,105,122,101,124,124,34,115,109,97,108,108,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,34,65,65,34,33,61,61,101,38,38,34,65,65,65,34,33,61,61,101,38,38,40,101,61,34,65,65,34,41,44,34,115,109,97,108,108,34,33,61,61,110,38,38,34,108,97,114,103,101,34,33,61,61,110,38,38,40,110,61,34,115,109,97,108,108,34,41,44,123,108,101,118,101,108,58,101,44,115,105,122,101,58,110,125,125,118,97,114,32,122,61,47,94,92,115,43,47,44,86,61,47,92,115,43,36,47,44,72,61,48,44,85,61,105,46,114,111,117,110,100,44,87,61,105,46,109,105,110,44,71,61,105,46,109,97,120,44,113,61,105,46,114,97,110,100,111,109,59,111,46,112,114,111,116,111,116,121,112,101,61,123,105,115,68,97,114,107,58,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,66,114,105,103,104,116,110,101,115,115,40,41,60,49,50,56,125,44,105,115,76,105,103,104,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,105,115,68,97,114,107,40,41,125,44,105,115,86,97,108,105,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,95,111,107,125,44,103,101,116,79,114,105,103,105,110,97,108,73,110,112,117,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,95,111,114,105,103,105,110,97,108,73,110,112,117,116,125,44,103,101,116,70,111,114,109,97,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,95,102,111,114,109,97,116,125,44,103,101,116,65,108,112,104,97,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,97,125,44,103,101,116,66,114,105,103,104,116,110,101,115,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,116,111,82,103,98,40,41,59,114,101,116,117,114,110,40,50,57,57,42,116,46,114,43,53,56,55,42,116,46,103,43,49,49,52,42,116,46,98,41,47,49,101,51,125,44,103,101,116,76,117,109,105,110,97,110,99,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,44,110,44,114,44,111,44,97,44,115,61,116,104,105,115,46,116,111,82,103,98,40,41,59,114,101,116,117,114,110,32,116,61,115,46,114,47,50,53,53,44,101,61,115,46,103,47,50,53,53,44,110,61,115,46,98,47,50,53,53,44,114,61,116,60,61,46,48,51,57,50,56,63,116,47,49,50,46,57,50,58,105,46,112,111,119,40,40,116,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,44,111,61,101,60,61,46,48,51,57,50,56,63,101,47,49,50,46,57,50,58,105,46,112,111,119,40,40,101,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,44,97,61,110,60,61,46,48,51,57,50,56,63,110,47,49,50,46,57,50,58,105,46,112,111,119,40,40,110,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,44,46,50,49,50,54,42,114,43,46,55,49,53,50,42,111,43,46,48,55,50,50,42,97,125,44,115,101,116,65,108,112,104,97,58,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,97,61,84,40,116,41,44,116,104,105,115,46,95,114,111,117,110,100,65,61,85,40,49,48,48,42,116,104,105,115,46,95,97,41,47,49,48,48,44,116,104,105,115,125,44,116,111,72,115,118,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,108,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,41,59,114,101,116,117,114,110,123,104,58,51,54,48,42,116,46,104,44,115,58,116,46,115,44,118,58,116,46,118,44,97,58,116,104,105,115,46,95,97,125,125,44,116,111,72,115,118,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,108,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,41,44,101,61,85,40,51,54,48,42,116,46,104,41,44,110,61,85,40,49,48,48,42,116,46,115,41,44,114,61,85,40,49,48,48,42,116,46,118,41,59,114,101,116,117,114,110,32,49,61,61,116,104,105,115,46,95,97,63,34,104,115,118,40,34,43,101,43,34,44,32,34,43,110,43,34,37,44,32,34,43,114,43,34,37,41,34,58,34,104,115,118,97,40,34,43,101,43,34,44,32,34,43,110,43,34,37,44,32,34,43,114,43,34,37,44,32,34,43,116,104,105,115,46,95,114,111,117,110,100,65,43,34,41,34,125,44,116,111,72,115,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,99,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,41,59,114,101,116,117,114,110,123,104,58,51,54,48,42,116,46,104,44,115,58,116,46,115,44,108,58,116,46,108,44,97,58,116,104,105,115,46,95,97,125,125,44,116,111,72,115,108,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,99,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,41,44,101,61,85,40,51,54,48,42,116,46,104,41,44,110,61,85,40,49,48,48,42,116,46,115,41,44,114,61,85,40,49,48,48,42,116,46,108,41,59,114,101,116,117,114,110,32,49,61,61,116,104,105,115,46,95,97,63,34,104,115,108,40,34,43,101,43,34,44,32,34,43,110,43,34,37,44,32,34,43,114,43,34,37,41,34,58,34,104,115,108,97,40,34,43,101,43,34,44,32,34,43,110,43,34,37,44,32,34,43,114,43,34,37,44,32,34,43,116,104,105,115,46,95,114,111,117,110,100,65,43,34,41,34,125,44,116,111,72,101,120,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,104,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,44,116,41,125,44,116,111,72,101,120,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,35,34,43,116,104,105,115,46,116,111,72,101,120,40,116,41,125,44,116,111,72,101,120,56,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,100,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,44,116,104,105,115,46,95,97,44,116,41,125,44,116,111,72,101,120,56,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,35,34,43,116,104,105,115,46,116,111,72,101,120,56,40,116,41,125,44,116,111,82,103,98,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,114,58,85,40,116,104,105,115,46,95,114,41,44,103,58,85,40,116,104,105,115,46,95,103,41,44,98,58,85,40,116,104,105,115,46,95,98,41,44,97,58,116,104,105,115,46,95,97,125,125,44,116,111,82,103,98,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,61,61,116,104,105,115,46,95,97,63,34,114,103,98,40,34,43,85,40,116,104,105,115,46,95,114,41,43,34,44,32,34,43,85,40,116,104,105,115,46,95,103,41,43,34,44,32,34,43,85,40,116,104,105,115,46,95,98,41,43,34,41,34,58,34,114,103,98,97,40,34,43,85,40,116,104,105,115,46,95,114,41,43,34,44,32,34,43,85,40,116,104,105,115,46,95,103,41,43,34,44,32,34,43,85,40,116,104,105,115,46,95,98,41,43,34,44,32,34,43,116,104,105,115,46,95,114,111,117,110,100,65,43,34,41,34,125,44,116,111,80,101,114,99,101,110,116,97,103,101,82,103,98,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,114,58,85,40,49,48,48,42,106,40,116,104,105,115,46,95,114,44,50,53,53,41,41,43,34,37,34,44,103,58,85,40,49,48,48,42,106,40,116,104,105,115,46,95,103,44,50,53,53,41,41,43,34,37,34,44,98,58,85,40,49,48,48,42,106,40,116,104,105,115,46,95,98,44,50,53,53,41,41,43,34,37,34,44,97,58,116,104,105,115,46,95,97,125,125,44,116,111,80,101,114,99,101,110,116,97,103,101,82,103,98,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,61,61,116,104,105,115,46,95,97,63,34,114,103,98,40,34,43,85,40,49,48,48,42,106,40,116,104,105,115,46,95,114,44,50,53,53,41,41,43,34,37,44,32,34,43,85,40,49,48,48,42,106,40,116,104,105,115,46,95,103,44,50,53,53,41,41,43,34,37,44,32,34,43,85,40,49,48,48,42,106,40,116,104,105,115,46,95,98,44,50,53,53,41,41,43,34,37,41,34,58,34,114,103,98,97,40,34,43,85,40,49,48,48,42,106,40,116,104,105,115,46,95,114,44,50,53,53,41,41,43,34,37,44,32,34,43,85,40,49,48,48,42,106,40,116,104,105,115,46,95,103,44,50,53,53,41,41,43,34,37,44,32,34,43,85,40,49,48,48,42,106,40,116,104,105,115,46,95,98,44,50,53,53,41,41,43,34,37,44,32,34,43,116,104,105,115,46,95,114,111,117,110,100,65,43,34,41,34,125,44,116,111,78,97,109,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,61,116,104,105,115,46,95,97,63,34,116,114,97,110,115,112,97,114,101,110,116,34,58,33,40,116,104,105,115,46,95,97,60,49,41,38,38,40,75,91,104,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,44,33,48,41,93,124,124,33,49,41,125,44,116,111,70,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,35,34,43,112,40,116,104,105,115,46,95,114,44,116,104,105,115,46,95,103,44,116,104,105,115,46,95,98,44,116,104,105,115,46,95,97,41,44,110,61,101,44,114,61,116,104,105,115,46,95,103,114,97,100,105,101,110,116,84,121,112,101,63,34,71,114,97,100,105,101,110,116,84,121,112,101,32,61,32,49,44,32,34,58,34,34,59,105,102,40,116,41,123,118,97,114,32,105,61,111,40,116,41,59,110,61,34,35,34,43,112,40,105,46,95,114,44,105,46,95,103,44,105,46,95,98,44,105,46,95,97,41,125,114,101,116,117,114,110,34,112,114,111,103,105,100,58,68,88,73,109,97,103,101,84,114,97,110,115,102,111,114,109,46,77,105,99,114,111,115,111,102,116,46,103,114,97,100,105,101,110,116,40,34,43,114,43,34,115,116,97,114,116,67,111,108,111,114,115,116,114,61,34,43,101,43,34,44,101,110,100,67,111,108,111,114,115,116,114,61,34,43,110,43,34,41,34,125,44,116,111,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,33,33,116,59,116,61,116,124,124,116,104,105,115,46,95,102,111,114,109,97,116,59,118,97,114,32,110,61,33,49,44,114,61,116,104,105,115,46,95,97,60,49,38,38,116,104,105,115,46,95,97,62,61,48,59,114,101,116,117,114,110,32,101,124,124,33,114,124,124,34,104,101,120,34,33,61,61,116,38,38,34,104,101,120,54,34,33,61,61,116,38,38,34,104,101,120,51,34,33,61,61,116,38,38,34,104,101,120,52,34,33,61,61,116,38,38,34,104,101,120,56,34,33,61,61,116,38,38,34,110,97,109,101,34,33,61,61,116,63,40,34,114,103,98,34,61,61,61,116,38,38,40,110,61,116,104,105,115,46,116,111,82,103,98,83,116,114,105,110,103,40,41,41,44,34,112,114,103,98,34,61,61,61,116,38,38,40,110,61,116,104,105,115,46,116,111,80,101,114,99,101,110,116,97,103,101,82,103,98,83,116,114,105,110,103,40,41,41,44,34,104,101,120,34,33,61,61,116,38,38,34,104,101,120,54,34,33,61,61,116,124,124,40,110,61,116,104,105,115,46,116,111,72,101,120,83,116,114,105,110,103,40,41,41,44,34,104,101,120,51,34,61,61,61,116,38,38,40,110,61,116,104,105,115,46,116,111,72,101,120,83,116,114,105,110,103,40,33,48,41,41,44,34,104,101,120,52,34,61,61,61,116,38,38,40,110,61,116,104,105,115,46,116,111,72,101,120,56,83,116,114,105,110,103,40,33,48,41,41,44,34,104,101,120,56,34,61,61,61,116,38,38,40,110,61,116,104,105,115,46,116,111,72,101,120,56,83,116,114,105,110,103,40,41,41,44,34,110,97,109,101,34,61,61,61,116,38,38,40,110,61,116,104,105,115,46,116,111,78,97,109,101,40,41,41,44,34,104,115,108,34,61,61,61,116,38,38,40,110,61,116,104,105,115,46,116,111,72,115,108,83,116,114,105,110,103,40,41,41,44,34,104,115,118,34,61,61,61,116,38,38,40,110,61,116,104,105,115,46,116,111,72,115,118,83,116,114,105,110,103,40,41,41,44,110,124,124,116,104,105,115,46,116,111,72,101,120,83,116,114,105,110,103,40,41,41,58,34,110,97,109,101,34,61,61,61,116,38,38,48,61,61,61,116,104,105,115,46,95,97,63,116,104,105,115,46,116,111,78,97,109,101,40,41,58,116,104,105,115,46,116,111,82,103,98,83,116,114,105,110,103,40,41,125,44,99,108,111,110,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,116,104,105,115,46,116,111,83,116,114,105,110,103,40,41,41,125,44,95,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,97,112,112,108,121,40,110,117,108,108,44,91,116,104,105,115,93,46,99,111,110,99,97,116,40,91,93,46,115,108,105,99,101,46,99,97,108,108,40,101,41,41,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,114,61,110,46,95,114,44,116,104,105,115,46,95,103,61,110,46,95,103,44,116,104,105,115,46,95,98,61,110,46,95,98,44,116,104,105,115,46,115,101,116,65,108,112,104,97,40,110,46,95,97,41,44,116,104,105,115,125,44,108,105,103,104,116,101,110,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,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,40,98,44,97,114,103,117,109,101,110,116,115,41,125,44,98,114,105,103,104,116,101,110,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,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,40,121,44,97,114,103,117,109,101,110,116,115,41,125,44,100,97,114,107,101,110,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,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,40,119,44,97,114,103,117,109,101,110,116,115,41,125,44,100,101,115,97,116,117,114,97,116,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,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,40,118,44,97,114,103,117,109,101,110,116,115,41,125,44,115,97,116,117,114,97,116,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,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,40,103,44,97,114,103,117,109,101,110,116,115,41,125,44,103,114,101,121,115,99,97,108,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,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,40,109,44,97,114,103,117,109,101,110,116,115,41,125,44,115,112,105,110,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,97,112,112,108,121,77,111,100,105,102,105,99,97,116,105,111,110,40,95,44,97,114,103,117,109,101,110,116,115,41,125,44,95,97,112,112,108,121,67,111,109,98,105,110,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,110,117,108,108,44,91,116,104,105,115,93,46,99,111,110,99,97,116,40,91,93,46,115,108,105,99,101,46,99,97,108,108,40,101,41,41,41,125,44,97,110,97,108,111,103,111,117,115,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,97,112,112,108,121,67,111,109,98,105,110,97,116,105,111,110,40,67,44,97,114,103,117,109,101,110,116,115,41,125,44,99,111,109,112,108,101,109,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,95,97,112,112,108,121,67,111,109,98,105,110,97,116,105,111,110,40,120,44,97,114,103,117,109,101,110,116,115,41,125,44,109,111,110,111,99,104,114,111,109,97,116,105,99,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,97,112,112,108,121,67,111,109,98,105,110,97,116,105,111,110,40,80,44,97,114,103,117,109,101,110,116,115,41,125,44,115,112,108,105,116,99,111,109,112,108,101,109,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,95,97,112,112,108,121,67,111,109,98,105,110,97,116,105,111,110,40,107,44,97,114,103,117,109,101,110,116,115,41,125,44,116,114,105,97,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,95,97,112,112,108,121,67,111,109,98,105,110,97,116,105,111,110,40,79,44,97,114,103,117,109,101,110,116,115,41,125,44,116,101,116,114,97,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,95,97,112,112,108,121,67,111,109,98,105,110,97,116,105,111,110,40,83,44,97,114,103,117,109,101,110,116,115,41,125,125,44,111,46,102,114,111,109,82,97,116,105,111,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,41,123,118,97,114,32,110,61,123,125,59,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,114,41,38,38,40,110,91,114,93,61,34,97,34,61,61,61,114,63,116,91,114,93,58,77,40,116,91,114,93,41,41,59,116,61,110,125,114,101,116,117,114,110,32,111,40,116,44,101,41,125,44,111,46,101,113,117,97,108,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,33,40,33,116,124,124,33,101,41,38,38,111,40,116,41,46,116,111,82,103,98,83,116,114,105,110,103,40,41,61,61,111,40,101,41,46,116,111,82,103,98,83,116,114,105,110,103,40,41,125,44,111,46,114,97,110,100,111,109,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,46,102,114,111,109,82,97,116,105,111,40,123,114,58,113,40,41,44,103,58,113,40,41,44,98,58,113,40,41,125,41,125,44,111,46,109,105,120,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,61,48,61,61,61,110,63,48,58,110,124,124,53,48,59,118,97,114,32,114,61,111,40,116,41,46,116,111,82,103,98,40,41,44,105,61,111,40,101,41,46,116,111,82,103,98,40,41,44,97,61,110,47,49,48,48,59,114,101,116,117,114,110,32,111,40,123,114,58,40,105,46,114,45,114,46,114,41,42,97,43,114,46,114,44,103,58,40,105,46,103,45,114,46,103,41,42,97,43,114,46,103,44,98,58,40,105,46,98,45,114,46,98,41,42,97,43,114,46,98,44,97,58,40,105,46,97,45,114,46,97,41,42,97,43,114,46,97,125,41,125,44,111,46,114,101,97,100,97,98,105,108,105,116,121,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,111,40,116,41,44,114,61,111,40,101,41,59,114,101,116,117,114,110,40,105,46,109,97,120,40,110,46,103,101,116,76,117,109,105,110,97,110,99,101,40,41,44,114,46,103,101,116,76,117,109,105,110,97,110,99,101,40,41,41,43,46,48,53,41,47,40,105,46,109,105,110,40,110,46,103,101,116,76,117,109,105,110,97,110,99,101,40,41,44,114,46,103,101,116,76,117,109,105,110,97,110,99,101,40,41,41,43,46,48,53,41,125,44,111,46,105,115,82,101,97,100,97,98,108,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,97,61,111,46,114,101,97,100,97,98,105,108,105,116,121,40,116,44,101,41,59,115,119,105,116,99,104,40,105,61,33,49,44,114,61,66,40,110,41,44,114,46,108,101,118,101,108,43,114,46,115,105,122,101,41,123,99,97,115,101,34,65,65,115,109,97,108,108,34,58,99,97,115,101,34,65,65,65,108,97,114,103,101,34,58,105,61,97,62,61,52,46,53,59,98,114,101,97,107,59,99,97,115,101,34,65,65,108,97,114,103,101,34,58,105,61,97,62,61,51,59,98,114,101,97,107,59,99,97,115,101,34,65,65,65,115,109,97,108,108,34,58,105,61,97,62,61,55,125,114,101,116,117,114,110,32,105,125,44,111,46,109,111,115,116,82,101,97,100,97,98,108,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,97,44,115,44,99,61,110,117,108,108,44,117,61,48,59,110,61,110,124,124,123,125,44,105,61,110,46,105,110,99,108,117,100,101,70,97,108,108,98,97,99,107,67,111,108,111,114,115,44,97,61,110,46,108,101,118,101,108,44,115,61,110,46,115,105,122,101,59,102,111,114,40,118,97,114,32,108,61,48,59,108,60,101,46,108,101,110,103,116,104,59,108,43,43,41,40,114,61,111,46,114,101,97,100,97,98,105,108,105,116,121,40,116,44,101,91,108,93,41,41,62,117,38,38,40,117,61,114,44,99,61,111,40,101,91,108,93,41,41,59,114,101,116,117,114,110,32,111,46,105,115,82,101,97,100,97,98,108,101,40,116,44,99,44,123,108,101,118,101,108,58,97,44,115,105,122,101,58,115,125,41,124,124,33,105,63,99,58,40,110,46,105,110,99,108,117,100,101,70,97,108,108,98,97,99,107,67,111,108,111,114,115,61,33,49,44,111,46,109,111,115,116,82,101,97,100,97,98,108,101,40,116,44,91,34,35,102,102,102,34,44,34,35,48,48,48,34,93,44,110,41,41,125,59,118,97,114,32,89,61,111,46,110,97,109,101,115,61,123,97,108,105,99,101,98,108,117,101,58,34,102,48,102,56,102,102,34,44,97,110,116,105,113,117,101,119,104,105,116,101,58,34,102,97,101,98,100,55,34,44,97,113,117,97,58,34,48,102,102,34,44,97,113,117,97,109,97,114,105,110,101,58,34,55,102,102,102,100,52,34,44,97,122,117,114,101,58,34,102,48,102,102,102,102,34,44,98,101,105,103,101,58,34,102,53,102,53,100,99,34,44,98,105,115,113,117,101,58,34,102,102,101,52,99,52,34,44,98,108,97,99,107,58,34,48,48,48,34,44,98,108,97,110,99,104,101,100,97,108,109,111,110,100,58,34,102,102,101,98,99,100,34,44,98,108,117,101,58,34,48,48,102,34,44,98,108,117,101,118,105,111,108,101,116,58,34,56,97,50,98,101,50,34,44,98,114,111,119,110,58,34,97,53,50,97,50,97,34,44,98,117,114,108,121,119,111,111,100,58,34,100,101,98,56,56,55,34,44,98,117,114,110,116,115,105,101,110,110,97,58,34,101,97,55,101,53,100,34,44,99,97,100,101,116,98,108,117,101,58,34,53,102,57,101,97,48,34,44,99,104,97,114,116,114,101,117,115,101,58,34,55,102,102,102,48,48,34,44,99,104,111,99,111,108,97,116,101,58,34,100,50,54,57,49,101,34,44,99,111,114,97,108,58,34,102,102,55,102,53,48,34,44,99,111,114,110,102,108,111,119,101,114,98,108,117,101,58,34,54,52,57,53,101,100,34,44,99,111,114,110,115,105,108,107,58,34,102,102,102,56,100,99,34,44,99,114,105,109,115,111,110,58,34,100,99,49,52,51,99,34,44,99,121,97,110,58,34,48,102,102,34,44,100,97,114,107,98,108,117,101,58,34,48,48,48,48,56,98,34,44,100,97,114,107,99,121,97,110,58,34,48,48,56,98,56,98,34,44,100,97,114,107,103,111,108,100,101,110,114,111,100,58,34,98,56,56,54,48,98,34,44,100,97,114,107,103,114,97,121,58,34,97,57,97,57,97,57,34,44,100,97,114,107,103,114,101,101,110,58,34,48,48,54,52,48,48,34,44,100,97,114,107,103,114,101,121,58,34,97,57,97,57,97,57,34,44,100,97,114,107,107,104,97,107,105,58,34,98,100,98,55,54,98,34,44,100,97,114,107,109,97,103,101,110,116,97,58,34,56,98,48,48,56,98,34,44,100,97,114,107,111,108,105,118,101,103,114,101,101,110,58,34,53,53,54,98,50,102,34,44,100,97,114,107,111,114,97,110,103,101,58,34,102,102,56,99,48,48,34,44,100,97,114,107,111,114,99,104,105,100,58,34,57,57,51,50,99,99,34,44,100,97,114,107,114,101,100,58,34,56,98,48,48,48,48,34,44,100,97,114,107,115,97,108,109,111,110,58,34,101,57,57,54,55,97,34,44,100,97,114,107,115,101,97,103,114,101,101,110,58,34,56,102,98,99,56,102,34,44,100,97,114,107,115,108,97,116,101,98,108,117,101,58,34,52,56,51,100,56,98,34,44,100,97,114,107,115,108,97,116,101,103,114,97,121,58,34,50,102,52,102,52,102,34,44,100,97,114,107,115,108,97,116,101,103,114,101,121,58,34,50,102,52,102,52,102,34,44,100,97,114,107,116,117,114,113,117,111,105,115,101,58,34,48,48,99,101,100,49,34,44,100,97,114,107,118,105,111,108,101,116,58,34,57,52,48,48,100,51,34,44,100,101,101,112,112,105,110,107,58,34,102,102,49,52,57,51,34,44,100,101,101,112,115,107,121,98,108,117,101,58,34,48,48,98,102,102,102,34,44,100,105,109,103,114,97,121,58,34,54,57,54,57,54,57,34,44,100,105,109,103,114,101,121,58,34,54,57,54,57,54,57,34,44,100,111,100,103,101,114,98,108,117,101,58,34,49,101,57,48,102,102,34,44,102,105,114,101,98,114,105,99,107,58,34,98,50,50,50,50,50,34,44,102,108,111,114,97,108,119,104,105,116,101,58,34,102,102,102,97,102,48,34,44,102,111,114,101,115,116,103,114,101,101,110,58,34,50,50,56,98,50,50,34,44,102,117,99,104,115,105,97,58,34,102,48,102,34,44,103,97,105,110,115,98,111,114,111,58,34,100,99,100,99,100,99,34,44,103,104,111,115,116,119,104,105,116,101,58,34,102,56,102,56,102,102,34,44,103,111,108,100,58,34,102,102,100,55,48,48,34,44,103,111,108,100,101,110,114,111,100,58,34,100,97,97,53,50,48,34,44,103,114,97,121,58,34,56,48,56,48,56,48,34,44,103,114,101,101,110,58,34,48,48,56,48,48,48,34,44,103,114,101,101,110,121,101,108,108,111,119,58,34,97,100,102,102,50,102,34,44,103,114,101,121,58,34,56,48,56,48,56,48,34,44,104,111,110,101,121,100,101,119,58,34,102,48,102,102,102,48,34,44,104,111,116,112,105,110,107,58,34,102,102,54,57,98,52,34,44,105,110,100,105,97,110,114,101,100,58,34,99,100,53,99,53,99,34,44,105,110,100,105,103,111,58,34,52,98,48,48,56,50,34,44,105,118,111,114,121,58,34,102,102,102,102,102,48,34,44,107,104,97,107,105,58,34,102,48,101,54,56,99,34,44,108,97,118,101,110,100,101,114,58,34,101,54,101,54,102,97,34,44,108,97,118,101,110,100,101,114,98,108,117,115,104,58,34,102,102,102,48,102,53,34,44,108,97,119,110,103,114,101,101,110,58,34,55,99,102,99,48,48,34,44,108,101,109,111,110,99,104,105,102,102,111,110,58,34,102,102,102,97,99,100,34,44,108,105,103,104,116,98,108,117,101,58,34,97,100,100,56,101,54,34,44,108,105,103,104,116,99,111,114,97,108,58,34,102,48,56,48,56,48,34,44,108,105,103,104,116,99,121,97,110,58,34,101,48,102,102,102,102,34,44,108,105,103,104,116,103,111,108,100,101,110,114,111,100,121,101,108,108,111,119,58,34,102,97,102,97,100,50,34,44,108,105,103,104,116,103,114,97,121,58,34,100,51,100,51,100,51,34,44,108,105,103,104,116,103,114,101,101,110,58,34,57,48,101,101,57,48,34,44,108,105,103,104,116,103,114,101,121,58,34,100,51,100,51,100,51,34,44,108,105,103,104,116,112,105,110,107,58,34,102,102,98,54,99,49,34,44,108,105,103,104,116,115,97,108,109,111,110,58,34,102,102,97,48,55,97,34,44,108,105,103,104,116,115,101,97,103,114,101,101,110,58,34,50,48,98,50,97,97,34,44,108,105,103,104,116,115,107,121,98,108,117,101,58,34,56,55,99,101,102,97,34,44,108,105,103,104,116,115,108,97,116,101,103,114,97,121,58,34,55,56,57,34,44,108,105,103,104,116,115,108,97,116,101,103,114,101,121,58,34,55,56,57,34,44,108,105,103,104,116,115,116,101,101,108,98,108,117,101,58,34,98,48,99,52,100,101,34,44,108,105,103,104,116,121,101,108,108,111,119,58,34,102,102,102,102,101,48,34,44,108,105,109,101,58,34,48,102,48,34,44,108,105,109,101,103,114,101,101,110,58,34,51,50,99,100,51,50,34,44,108,105,110,101,110,58,34,102,97,102,48,101,54,34,44,109,97,103,101,110,116,97,58,34,102,48,102,34,44,109,97,114,111,111,110,58,34,56,48,48,48,48,48,34,44,109,101,100,105,117,109,97,113,117,97,109,97,114,105,110,101,58,34,54,54,99,100,97,97,34,44,109,101,100,105,117,109,98,108,117,101,58,34,48,48,48,48,99,100,34,44,109,101,100,105,117,109,111,114,99,104,105,100,58,34,98,97,53,53,100,51,34,44,109,101,100,105,117,109,112,117,114,112,108,101,58,34,57,51,55,48,100,98,34,44,109,101,100,105,117,109,115,101,97,103,114,101,101,110,58,34,51,99,98,51,55,49,34,44,109,101,100,105,117,109,115,108,97,116,101,98,108,117,101,58,34,55,98,54,56,101,101,34,44,109,101,100,105,117,109,115,112,114,105,110,103,103,114,101,101,110,58,34,48,48,102,97,57,97,34,44,109,101,100,105,117,109,116,117,114,113,117,111,105,115,101,58,34,52,56,100,49,99,99,34,44,109,101,100,105,117,109,118,105,111,108,101,116,114,101,100,58,34,99,55,49,53,56,53,34,44,109,105,100,110,105,103,104,116,98,108,117,101,58,34,49,57,49,57,55,48,34,44,109,105,110,116,99,114,101,97,109,58,34,102,53,102,102,102,97,34,44,109,105,115,116,121,114,111,115,101,58,34,102,102,101,52,101,49,34,44,109,111,99,99,97,115,105,110,58,34,102,102,101,52,98,53,34,44,110,97,118,97,106,111,119,104,105,116,101,58,34,102,102,100,101,97,100,34,44,110,97,118,121,58,34,48,48,48,48,56,48,34,44,111,108,100,108,97,99,101,58,34,102,100,102,53,101,54,34,44,111,108,105,118,101,58,34,56,48,56,48,48,48,34,44,111,108,105,118,101,100,114,97,98,58,34,54,98,56,101,50,51,34,44,111,114,97,110,103,101,58,34,102,102,97,53,48,48,34,44,111,114,97,110,103,101,114,101,100,58,34,102,102,52,53,48,48,34,44,111,114,99,104,105,100,58,34,100,97,55,48,100,54,34,44,112,97,108,101,103,111,108,100,101,110,114,111,100,58,34,101,101,101,56,97,97,34,44,112,97,108,101,103,114,101,101,110,58,34,57,56,102,98,57,56,34,44,112,97,108,101,116,117,114,113,117,111,105,115,101,58,34,97,102,101,101,101,101,34,44,112,97,108,101,118,105,111,108,101,116,114,101,100,58,34,100,98,55,48,57,51,34,44,112,97,112,97,121,97,119,104,105,112,58,34,102,102,101,102,100,53,34,44,112,101,97,99,104,112,117,102,102,58,34,102,102,100,97,98,57,34,44,112,101,114,117,58,34,99,100,56,53,51,102,34,44,112,105,110,107,58,34,102,102,99,48,99,98,34,44,112,108,117,109,58,34,100,100,97,48,100,100,34,44,112,111,119,100,101,114,98,108,117,101,58,34,98,48,101,48,101,54,34,44,112,117,114,112,108,101,58,34,56,48,48,48,56,48,34,44,114,101,98,101,99,99,97,112,117,114,112,108,101,58,34,54,54,51,51,57,57,34,44,114,101,100,58,34,102,48,48,34,44,114,111,115,121,98,114,111,119,110,58,34,98,99,56,102,56,102,34,44,114,111,121,97,108,98,108,117,101,58,34,52,49,54,57,101,49,34,44,115,97,100,100,108,101,98,114,111,119,110,58,34,56,98,52,53,49,51,34,44,115,97,108,109,111,110,58,34,102,97,56,48,55,50,34,44,115,97,110,100,121,98,114,111,119,110,58,34,102,52,97,52,54,48,34,44,115,101,97,103,114,101,101,110,58,34,50,101,56,98,53,55,34,44,115,101,97,115,104,101,108,108,58,34,102,102,102,53,101,101,34,44,115,105,101,110,110,97,58,34,97,48,53,50,50,100,34,44,115,105,108,118,101,114,58,34,99,48,99,48,99,48,34,44,115,107,121,98,108,117,101,58,34,56,55,99,101,101,98,34,44,115,108,97,116,101,98,108,117,101,58,34,54,97,53,97,99,100,34,44,115,108,97,116,101,103,114,97,121,58,34,55,48,56,48,57,48,34,44,115,108,97,116,101,103,114,101,121,58,34,55,48,56,48,57,48,34,44,115,110,111,119,58,34,102,102,102,97,102,97,34,44,115,112,114,105,110,103,103,114,101,101,110,58,34,48,48,102,102,55,102,34,44,115,116,101,101,108,98,108,117,101,58,34,52,54,56,50,98,52,34,44,116,97,110,58,34,100,50,98,52,56,99,34,44,116,101,97,108,58,34,48,48,56,48,56,48,34,44,116,104,105,115,116,108,101,58,34,100,56,98,102,100,56,34,44,116,111,109,97,116,111,58,34,102,102,54,51,52,55,34,44,116,117,114,113,117,111,105,115,101,58,34,52,48,101,48,100,48,34,44,118,105,111,108,101,116,58,34,101,101,56,50,101,101,34,44,119,104,101,97,116,58,34,102,53,100,101,98,51,34,44,119,104,105,116,101,58,34,102,102,102,34,44,119,104,105,116,101,115,109,111,107,101,58,34,102,53,102,53,102,53,34,44,121,101,108,108,111,119,58,34,102,102,48,34,44,121,101,108,108,111,119,103,114,101,101,110,58,34,57,97,99,100,51,50,34,125,44,75,61,111,46,104,101,120,78,97,109,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,123,125,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,41,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,110,41,38,38,40,101,91,116,91,110,93,93,61,110,41,59,114,101,116,117,114,110,32,101,125,40,89,41,44,88,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,34,40,63,58,91,45,92,92,43,93,63,92,92,100,42,92,92,46,92,92,100,43,37,63,41,124,40,63,58,91,45,92,92,43,93,63,92,92,100,43,37,63,41,34,44,101,61,34,91,92,92,115,124,92,92,40,93,43,40,34,43,116,43,34,41,91,44,124,92,92,115,93,43,40,34,43,116,43,34,41,91,44,124,92,92,115,93,43,40,34,43,116,43,34,41,92,92,115,42,92,92,41,63,34,44,110,61,34,91,92,92,115,124,92,92,40,93,43,40,34,43,116,43,34,41,91,44,124,92,92,115,93,43,40,34,43,116,43,34,41,91,44,124,92,92,115,93,43,40,34,43,116,43,34,41,91,44,124,92,92,115,93,43,40,34,43,116,43,34,41,92,92,115,42,92,92,41,63,34,59,114,101,116,117,114,110,123,67,83,83,95,85,78,73,84,58,110,101,119,32,82,101,103,69,120,112,40,116,41,44,114,103,98,58,110,101,119,32,82,101,103,69,120,112,40,34,114,103,98,34,43,101,41,44,114,103,98,97,58,110,101,119,32,82,101,103,69,120,112,40,34,114,103,98,97,34,43,110,41,44,104,115,108,58,110,101,119,32,82,101,103,69,120,112,40,34,104,115,108,34,43,101,41,44,104,115,108,97,58,110,101,119,32,82,101,103,69,120,112,40,34,104,115,108,97,34,43,110,41,44,104,115,118,58,110,101,119,32,82,101,103,69,120,112,40,34,104,115,118,34,43,101,41,44,104,115,118,97,58,110,101,119,32,82,101,103,69,120,112,40,34,104,115,118,97,34,43,110,41,44,104,101,120,51,58,47,94,35,63,40,91,48,45,57,97,45,102,65,45,70,93,123,49,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,49,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,49,125,41,36,47,44,104,101,120,54,58,47,94,35,63,40,91,48,45,57,97,45,102,65,45,70,93,123,50,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,50,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,50,125,41,36,47,44,104,101,120,52,58,47,94,35,63,40,91,48,45,57,97,45,102,65,45,70,93,123,49,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,49,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,49,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,49,125,41,36,47,44,104,101,120,56,58,47,94,35,63,40,91,48,45,57,97,45,102,65,45,70,93,123,50,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,50,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,50,125,41,40,91,48,45,57,97,45,102,65,45,70,93,123,50,125,41,36,47,125,125,40,41,59,118,111,105,100,32,48,33,61,61,116,38,38,116,46,101,120,112,111,114,116,115,63,116,46,101,120,112,111,114,116,115,61,111,58,118,111,105,100,32,48,33,61,61,40,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,125,46,99,97,108,108,40,101,44,110,44,101,44,116,41,41,38,38,40,116,46,101,120,112,111,114,116,115,61,114,41,125,40,77,97,116,104,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,54,55,41,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,116,46,105,44,114,44,34,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,116,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,44,110,40,49,41,40,34,48,102,55,51,101,55,51,99,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,61,116,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,101,46,112,117,115,104,40,91,116,46,105,44,34,92,110,46,118,99,45,101,100,105,116,97,98,108,101,45,105,110,112,117,116,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,125,92,110,46,118,99,45,105,110,112,117,116,95,95,105,110,112,117,116,32,123,92,110,32,32,112,97,100,100,105,110,103,58,32,48,59,92,110,32,32,98,111,114,100,101,114,58,32,48,59,92,110,32,32,111,117,116,108,105,110,101,58,32,110,111,110,101,59,92,110,125,92,110,46,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,32,123,92,110,32,32,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,32,99,97,112,105,116,97,108,105,122,101,59,92,110,125,92,110,34,44,34,34,93,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,101,100,105,116,97,98,108,101,45,105,110,112,117,116,34,125,44,91,110,40,34,105,110,112,117,116,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,109,111,100,101,108,34,44,114,97,119,78,97,109,101,58,34,118,45,109,111,100,101,108,34,44,118,97,108,117,101,58,116,46,118,97,108,44,101,120,112,114,101,115,115,105,111,110,58,34,118,97,108,34,125,93,44,114,101,102,58,34,105,110,112,117,116,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,105,110,112,117,116,95,95,105,110,112,117,116,34,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,58,116,46,108,97,98,101,108,73,100,125,44,100,111,109,80,114,111,112,115,58,123,118,97,108,117,101,58,116,46,118,97,108,125,44,111,110,58,123,107,101,121,100,111,119,110,58,116,46,104,97,110,100,108,101,75,101,121,68,111,119,110,44,105,110,112,117,116,58,91,102,117,110,99,116,105,111,110,40,101,41,123,101,46,116,97,114,103,101,116,46,99,111,109,112,111,115,105,110,103,124,124,40,116,46,118,97,108,61,101,46,116,97,114,103,101,116,46,118,97,108,117,101,41,125,44,116,46,117,112,100,97,116,101,93,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,34,44,97,116,116,114,115,58,123,102,111,114,58,116,46,108,97,98,101,108,44,105,100,58,116,46,108,97,98,101,108,73,100,125,125,44,91,116,46,95,118,40,116,46,95,115,40,116,46,108,97,98,101,108,83,112,97,110,84,101,120,116,41,41,93,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,105,110,112,117,116,95,95,100,101,115,99,34,125,44,91,116,46,95,118,40,116,46,95,115,40,116,46,100,101,115,99,41,41,93,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,101,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,111,109,112,97,99,116,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,97,112,112,108,105,99,97,116,105,111,110,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,67,111,109,112,97,99,116,32,99,111,108,111,114,32,112,105,99,107,101,114,34,125,125,44,91,110,40,34,117,108,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,111,109,112,97,99,116,45,99,111,108,111,114,115,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,108,105,115,116,98,111,120,34,125,125,44,116,46,95,108,40,116,46,112,97,108,101,116,116,101,85,112,112,101,114,67,97,115,101,40,116,46,112,97,108,101,116,116,101,41,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,40,34,108,105,34,44,123,107,101,121,58,101,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,111,109,112,97,99,116,45,99,111,108,111,114,45,105,116,101,109,34,44,99,108,97,115,115,58,123,34,118,99,45,99,111,109,112,97,99,116,45,99,111,108,111,114,45,105,116,101,109,45,45,119,104,105,116,101,34,58,34,35,70,70,70,70,70,70,34,61,61,61,101,125,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,101,125,44,97,116,116,114,115,58,123,114,111,108,101,58,34,111,112,116,105,111,110,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,99,111,108,111,114,58,34,43,101,44,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,58,101,61,61,61,116,46,112,105,99,107,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,104,97,110,100,108,101,114,67,108,105,99,107,40,101,41,125,125,125,44,91,110,40,34,100,105,118,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,115,104,111,119,34,44,114,97,119,78,97,109,101,58,34,118,45,115,104,111,119,34,44,118,97,108,117,101,58,101,61,61,61,116,46,112,105,99,107,44,101,120,112,114,101,115,115,105,111,110,58,34,99,32,61,61,61,32,112,105,99,107,34,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,111,109,112,97,99,116,45,100,111,116,34,125,41,93,41,125,41,41,44,48,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,101,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,99,124,124,110,40,55,49,41,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,55,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,34,100,101,102,97,117,108,116,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,40,101,44,116,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,116,93,125,41,41,125,40,97,41,59,118,97,114,32,115,61,110,40,55,51,41,44,99,61,33,49,44,117,61,110,40,50,41,44,108,61,114,44,102,61,117,40,111,46,97,44,115,46,97,44,33,49,44,108,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,71,114,97,121,115,99,97,108,101,46,118,117,101,34,44,101,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,50,41,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,116,46,105,44,114,44,34,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,116,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,44,110,40,49,41,40,34,50,49,100,100,98,98,55,52,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,61,116,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,101,46,112,117,115,104,40,91,116,46,105,44,34,92,110,46,118,99,45,103,114,97,121,115,99,97,108,101,32,123,92,110,32,32,119,105,100,116,104,58,32,49,50,53,112,120,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,50,112,120,32,49,53,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,41,44,32,48,32,50,112,120,32,49,48,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,54,41,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,102,102,59,92,110,125,92,110,46,118,99,45,103,114,97,121,115,99,97,108,101,45,99,111,108,111,114,115,32,123,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,110,32,32,112,97,100,100,105,110,103,58,32,48,59,92,110,32,32,109,97,114,103,105,110,58,32,48,59,92,110,125,92,110,46,118,99,45,103,114,97,121,115,99,97,108,101,45,99,111,108,111,114,45,105,116,101,109,32,123,92,110,32,32,108,105,115,116,45,115,116,121,108,101,58,32,110,111,110,101,59,92,110,32,32,119,105,100,116,104,58,32,50,53,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,50,53,112,120,59,92,110,32,32,102,108,111,97,116,58,32,108,101,102,116,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,110,125,92,110,46,118,99,45,103,114,97,121,115,99,97,108,101,45,99,111,108,111,114,45,105,116,101,109,45,45,119,104,105,116,101,32,46,118,99,45,103,114,97,121,115,99,97,108,101,45,100,111,116,32,123,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,48,48,48,59,92,110,125,92,110,46,118,99,45,103,114,97,121,115,99,97,108,101,45,100,111,116,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,32,32,116,111,112,58,32,53,48,37,59,92,110,32,32,108,101,102,116,58,32,53,48,37,59,92,110,32,32,119,105,100,116,104,58,32,54,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,54,112,120,59,92,110,32,32,109,97,114,103,105,110,58,32,45,51,112,120,32,48,32,48,32,45,50,112,120,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,53,48,37,59,92,110,32,32,111,112,97,99,105,116,121,58,32,49,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,92,110,125,92,110,34,44,34,34,93,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,103,114,97,121,115,99,97,108,101,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,97,112,112,108,105,99,97,116,105,111,110,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,71,114,97,121,115,99,97,108,101,32,99,111,108,111,114,32,112,105,99,107,101,114,34,125,125,44,91,110,40,34,117,108,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,103,114,97,121,115,99,97,108,101,45,99,111,108,111,114,115,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,108,105,115,116,98,111,120,34,125,125,44,116,46,95,108,40,116,46,112,97,108,101,116,116,101,85,112,112,101,114,67,97,115,101,40,116,46,112,97,108,101,116,116,101,41,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,40,34,108,105,34,44,123,107,101,121,58,101,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,103,114,97,121,115,99,97,108,101,45,99,111,108,111,114,45,105,116,101,109,34,44,99,108,97,115,115,58,123,34,118,99,45,103,114,97,121,115,99,97,108,101,45,99,111,108,111,114,45,105,116,101,109,45,45,119,104,105,116,101,34,58,34,35,70,70,70,70,70,70,34,61,61,101,125,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,101,125,44,97,116,116,114,115,58,123,114,111,108,101,58,34,111,112,116,105,111,110,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,67,111,108,111,114,58,34,43,101,44,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,58,101,61,61,61,116,46,112,105,99,107,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,104,97,110,100,108,101,114,67,108,105,99,107,40,101,41,125,125,125,44,91,110,40,34,100,105,118,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,115,104,111,119,34,44,114,97,119,78,97,109,101,58,34,118,45,115,104,111,119,34,44,118,97,108,117,101,58,101,61,61,61,116,46,112,105,99,107,44,101,120,112,114,101,115,115,105,111,110,58,34,99,32,61,61,61,32,112,105,99,107,34,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,103,114,97,121,115,99,97,108,101,45,100,111,116,34,125,41,93,41,125,41,41,44,48,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,101,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,99,124,124,110,40,55,53,41,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,56,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,34,100,101,102,97,117,108,116,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,40,101,44,116,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,116,93,125,41,41,125,40,97,41,59,118,97,114,32,115,61,110,40,55,55,41,44,99,61,33,49,44,117,61,110,40,50,41,44,108,61,114,44,102,61,117,40,111,46,97,44,115,46,97,44,33,49,44,108,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,77,97,116,101,114,105,97,108,46,118,117,101,34,44,101,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,55,54,41,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,116,46,105,44,114,44,34,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,116,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,44,110,40,49,41,40,34,49,102,102,51,97,102,55,51,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,61,116,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,101,46,112,117,115,104,40,91,116,46,105,44,39,92,110,46,118,99,45,109,97,116,101,114,105,97,108,32,123,92,110,32,32,119,105,100,116,104,58,32,57,56,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,57,56,112,120,59,92,110,32,32,112,97,100,100,105,110,103,58,32,49,54,112,120,59,92,110,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,34,82,111,98,111,116,111,34,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,50,112,120,32,49,48,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,41,44,32,48,32,50,112,120,32,53,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,54,41,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,102,102,59,92,110,125,92,110,46,118,99,45,109,97,116,101,114,105,97,108,32,46,118,99,45,105,110,112,117,116,95,95,105,110,112,117,116,32,123,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,50,112,120,59,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,53,112,120,59,92,110,32,32,99,111,108,111,114,58,32,35,51,51,51,59,92,110,32,32,104,101,105,103,104,116,58,32,51,48,112,120,59,92,110,125,92,110,46,118,99,45,109,97,116,101,114,105,97,108,32,46,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,32,32,116,111,112,58,32,48,59,92,110,32,32,108,101,102,116,58,32,48,59,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,49,112,120,59,92,110,32,32,99,111,108,111,114,58,32,35,57,57,57,59,92,110,32,32,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,32,99,97,112,105,116,97,108,105,122,101,59,92,110,125,92,110,46,118,99,45,109,97,116,101,114,105,97,108,45,104,101,120,32,123,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,58,32,50,112,120,59,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,45,115,116,121,108,101,58,32,115,111,108,105,100,59,92,110,125,92,110,46,118,99,45,109,97,116,101,114,105,97,108,45,115,112,108,105,116,32,123,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,45,49,48,112,120,59,92,110,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,49,49,112,120,59,92,110,125,92,110,46,118,99,45,109,97,116,101,114,105,97,108,45,116,104,105,114,100,32,123,92,110,32,32,102,108,101,120,58,32,49,59,92,110,32,32,112,97,100,100,105,110,103,45,114,105,103,104,116,58,32,49,48,112,120,59,92,110,125,92,110,39,44,34,34,93,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,109,97,116,101,114,105,97,108,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,97,112,112,108,105,99,97,116,105,111,110,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,77,97,116,101,114,105,97,108,32,99,111,108,111,114,32,112,105,99,107,101,114,34,125,125,44,91,110,40,34,101,100,45,105,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,109,97,116,101,114,105,97,108,45,104,101,120,34,44,115,116,121,108,101,58,123,98,111,114,100,101,114,67,111,108,111,114,58,116,46,99,111,108,111,114,115,46,104,101,120,125,44,97,116,116,114,115,58,123,108,97,98,101,108,58,34,104,101,120,34,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,111,110,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,104,101,120,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,36,115,101,116,40,116,46,99,111,108,111,114,115,44,34,104,101,120,34,44,101,41,125,44,101,120,112,114,101,115,115,105,111,110,58,34,99,111,108,111,114,115,46,104,101,120,34,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,109,97,116,101,114,105,97,108,45,115,112,108,105,116,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,109,97,116,101,114,105,97,108,45,116,104,105,114,100,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,114,34,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,111,110,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,114,103,98,97,46,114,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,36,115,101,116,40,116,46,99,111,108,111,114,115,46,114,103,98,97,44,34,114,34,44,101,41,125,44,101,120,112,114,101,115,115,105,111,110,58,34,99,111,108,111,114,115,46,114,103,98,97,46,114,34,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,109,97,116,101,114,105,97,108,45,116,104,105,114,100,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,103,34,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,111,110,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,114,103,98,97,46,103,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,36,115,101,116,40,116,46,99,111,108,111,114,115,46,114,103,98,97,44,34,103,34,44,101,41,125,44,101,120,112,114,101,115,115,105,111,110,58,34,99,111,108,111,114,115,46,114,103,98,97,46,103,34,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,109,97,116,101,114,105,97,108,45,116,104,105,114,100,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,98,34,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,111,110,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,114,103,98,97,46,98,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,36,115,101,116,40,116,46,99,111,108,111,114,115,46,114,103,98,97,44,34,98,34,44,101,41,125,44,101,120,112,114,101,115,115,105,111,110,58,34,99,111,108,111,114,115,46,114,103,98,97,46,98,34,125,125,41,93,44,49,41,93,41,93,44,49,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,101,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,99,124,124,110,40,55,57,41,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,51,57,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,34,100,101,102,97,117,108,116,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,40,101,44,116,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,116,93,125,41,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,49,52,41,44,99,61,33,49,44,117,61,110,40,50,41,44,108,61,114,44,102,61,117,40,111,46,97,44,115,46,97,44,33,49,44,108,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,108,105,100,101,114,46,118,117,101,34,44,101,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,56,48,41,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,116,46,105,44,114,44,34,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,116,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,44,110,40,49,41,40,34,55,57,56,50,97,97,52,51,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,61,116,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,101,46,112,117,115,104,40,91,116,46,105,44,34,92,110,46,118,99,45,115,108,105,100,101,114,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,119,105,100,116,104,58,32,52,49,48,112,120,59,92,110,125,92,110,46,118,99,45,115,108,105,100,101,114,45,104,117,101,45,119,97,114,112,32,123,92,110,32,32,104,101,105,103,104,116,58,32,49,50,112,120,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,125,92,110,46,118,99,45,115,108,105,100,101,114,45,104,117,101,45,119,97,114,112,32,46,118,99,45,104,117,101,45,112,105,99,107,101,114,32,123,92,110,32,32,119,105,100,116,104,58,32,49,52,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,49,52,112,120,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,54,112,120,59,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,55,112,120,44,32,45,50,112,120,41,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,50,52,56,44,32,50,52,56,44,32,50,52,56,41,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,49,112,120,32,52,112,120,32,48,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,51,55,41,59,92,110,125,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,101,115,32,123,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,50,48,112,120,59,92,110,125,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,32,123,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,49,112,120,59,92,110,32,32,102,108,101,120,58,32,49,59,92,110,32,32,119,105,100,116,104,58,32,50,48,37,59,92,110,125,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,58,102,105,114,115,116,45,99,104,105,108,100,32,123,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,49,112,120,59,92,110,125,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,58,102,105,114,115,116,45,99,104,105,108,100,32,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,32,123,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,32,48,112,120,32,48,112,120,32,50,112,120,59,92,110,125,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,58,108,97,115,116,45,99,104,105,108,100,32,123,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,48,59,92,110,125,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,58,108,97,115,116,45,99,104,105,108,100,32,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,32,123,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,112,120,32,50,112,120,32,50,112,120,32,48,112,120,59,92,110,125,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,32,123,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,110,32,32,104,101,105,103,104,116,58,32,49,50,112,120,59,92,110,125,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,58,110,116,104,45,99,104,105,108,100,40,110,41,32,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,45,45,97,99,116,105,118,101,32,123,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,115,99,97,108,101,89,40,49,46,56,41,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,51,46,54,112,120,47,50,112,120,59,92,110,125,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,45,45,119,104,105,116,101,32,123,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,35,100,100,100,59,92,110,125,92,110,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,45,45,97,99,116,105,118,101,46,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,45,45,119,104,105,116,101,32,123,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,48,46,54,112,120,32,35,100,100,100,59,92,110,125,92,110,34,44,34,34,93,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,95,95,101,115,77,111,100,117,108,101,63,116,58,123,100,101,102,97,117,108,116,58,116,125,125,101,46,95,95,101,115,77,111,100,117,108,101,61,33,48,59,118,97,114,32,105,61,110,40,56,50,41,44,111,61,114,40,105,41,44,97,61,110,40,49,48,48,41,44,115,61,114,40,97,41,44,99,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,115,46,100,101,102,97,117,108,116,38,38,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,111,46,100,101,102,97,117,108,116,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,115,46,100,101,102,97,117,108,116,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,115,46,100,101,102,97,117,108,116,38,38,116,33,61,61,115,46,100,101,102,97,117,108,116,46,112,114,111,116,111,116,121,112,101,63,34,115,121,109,98,111,108,34,58,116,121,112,101,111,102,32,116,125,59,101,46,100,101,102,97,117,108,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,115,46,100,101,102,97,117,108,116,38,38,34,115,121,109,98,111,108,34,61,61,61,99,40,111,46,100,101,102,97,117,108,116,41,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,34,117,110,100,101,102,105,110,101,100,34,58,99,40,116,41,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,115,46,100,101,102,97,117,108,116,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,115,46,100,101,102,97,117,108,116,38,38,116,33,61,61,115,46,100,101,102,97,117,108,116,46,112,114,111,116,111,116,121,112,101,63,34,115,121,109,98,111,108,34,58,118,111,105,100,32,48,61,61,61,116,63,34,117,110,100,101,102,105,110,101,100,34,58,99,40,116,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,46,101,120,112,111,114,116,115,61,123,100,101,102,97,117,108,116,58,110,40,56,51,41,44,95,95,101,115,77,111,100,117,108,101,58,33,48,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,56,52,41,44,110,40,57,54,41,44,116,46,101,120,112,111,114,116,115,61,110,40,51,50,41,46,102,40,34,105,116,101,114,97,116,111,114,34,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,56,53,41,40,33,48,41,59,110,40,52,48,41,40,83,116,114,105,110,103,44,34,83,116,114,105,110,103,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,116,61,83,116,114,105,110,103,40,116,41,44,116,104,105,115,46,95,105,61,48,125,41,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,61,116,104,105,115,46,95,116,44,110,61,116,104,105,115,46,95,105,59,114,101,116,117,114,110,32,110,62,61,101,46,108,101,110,103,116,104,63,123,118,97,108,117,101,58,118,111,105,100,32,48,44,100,111,110,101,58,33,48,125,58,40,116,61,114,40,101,44,110,41,44,116,104,105,115,46,95,105,43,61,116,46,108,101,110,103,116,104,44,123,118,97,108,117,101,58,116,44,100,111,110,101,58,33,49,125,41,125,41,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,50,51,41,44,105,61,110,40,50,52,41,59,116,46,101,120,112,111,114,116,115,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,44,110,41,123,118,97,114,32,111,44,97,44,115,61,83,116,114,105,110,103,40,105,40,101,41,41,44,99,61,114,40,110,41,44,117,61,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,99,60,48,124,124,99,62,61,117,63,116,63,34,34,58,118,111,105,100,32,48,58,40,111,61,115,46,99,104,97,114,67,111,100,101,65,116,40,99,41,44,111,60,53,53,50,57,54,124,124,111,62,53,54,51,49,57,124,124,99,43,49,61,61,61,117,124,124,40,97,61,115,46,99,104,97,114,67,111,100,101,65,116,40,99,43,49,41,41,60,53,54,51,50,48,124,124,97,62,53,55,51,52,51,63,116,63,115,46,99,104,97,114,65,116,40,99,41,58,111,58,116,63,115,46,115,108,105,99,101,40,99,44,99,43,50,41,58,97,45,53,54,51,50,48,43,40,111,45,53,53,50,57,54,60,60,49,48,41,43,54,53,53,51,54,41,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,56,55,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,114,40,116,41,44,118,111,105,100,32,48,61,61,61,101,41,114,101,116,117,114,110,32,116,59,115,119,105,116,99,104,40,110,41,123,99,97,115,101,32,49,58,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,99,97,108,108,40,101,44,110,41,125,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,116,46,99,97,108,108,40,101,44,110,44,114,41,125,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,44,105,41,123,114,101,116,117,114,110,32,116,46,99,97,108,108,40,101,44,110,44,114,44,105,41,125,125,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,46,97,112,112,108,121,40,101,44,97,114,103,117,109,101,110,116,115,41,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,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,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,116,43,34,32,105,115,32,110,111,116,32,97,32,102,117,110,99,116,105,111,110,33,34,41,59,114,101,116,117,114,110,32,116,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,53,41,44,105,61,110,40,49,56,41,44,111,61,110,40,51,49,41,44,97,61,123,125,59,110,40,55,41,40,97,44,110,40,49,49,41,40,34,105,116,101,114,97,116,111,114,34,41,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,41,41,44,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,46,112,114,111,116,111,116,121,112,101,61,114,40,97,44,123,110,101,120,116,58,105,40,49,44,110,41,125,41,44,111,40,116,44,101,43,34,32,73,116,101,114,97,116,111,114,34,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,56,41,44,105,61,110,40,49,54,41,44,111,61,110,40,50,55,41,59,116,46,101,120,112,111,114,116,115,61,110,40,57,41,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,40,116,41,59,102,111,114,40,118,97,114,32,110,44,97,61,111,40,101,41,44,115,61,97,46,108,101,110,103,116,104,44,99,61,48,59,115,62,99,59,41,114,46,102,40,116,44,110,61,97,91,99,43,43,93,44,101,91,110,93,41,59,114,101,116,117,114,110,32,116,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,55,41,59,116,46,101,120,112,111,114,116,115,61,79,98,106,101,99,116,40,34,122,34,41,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,40,48,41,63,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,83,116,114,105,110,103,34,61,61,114,40,116,41,63,116,46,115,112,108,105,116,40,34,34,41,58,79,98,106,101,99,116,40,116,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,48,41,44,105,61,110,40,57,50,41,44,111,61,110,40,57,51,41,59,116,46,101,120,112,111,114,116,115,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,44,110,44,97,41,123,118,97,114,32,115,44,99,61,114,40,101,41,44,117,61,105,40,99,46,108,101,110,103,116,104,41,44,108,61,111,40,97,44,117,41,59,105,102,40,116,38,38,110,33,61,110,41,123,102,111,114,40,59,117,62,108,59,41,105,102,40,40,115,61,99,91,108,43,43,93,41,33,61,115,41,114,101,116,117,114,110,33,48,125,101,108,115,101,32,102,111,114,40,59,117,62,108,59,108,43,43,41,105,102,40,40,116,124,124,108,32,105,110,32,99,41,38,38,99,91,108,93,61,61,61,110,41,114,101,116,117,114,110,32,116,124,124,108,124,124,48,59,114,101,116,117,114,110,33,116,38,38,45,49,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,50,51,41,44,105,61,77,97,116,104,46,109,105,110,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,62,48,63,105,40,114,40,116,41,44,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,41,58,48,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,50,51,41,44,105,61,77,97,116,104,46,109,97,120,44,111,61,77,97,116,104,46,109,105,110,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,114,40,116,41,44,116,60,48,63,105,40,116,43,101,44,48,41,58,111,40,116,44,101,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,41,46,100,111,99,117,109,101,110,116,59,116,46,101,120,112,111,114,116,115,61,114,38,38,114,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,54,41,44,105,61,110,40,52,56,41,44,111,61,110,40,50,56,41,40,34,73,69,95,80,82,79,84,79,34,41,44,97,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,59,116,46,101,120,112,111,114,116,115,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,105,40,116,41,44,114,40,116,44,111,41,63,116,91,111,93,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,46,99,111,110,115,116,114,117,99,116,111,114,38,38,116,32,105,110,115,116,97,110,99,101,111,102,32,116,46,99,111,110,115,116,114,117,99,116,111,114,63,116,46,99,111,110,115,116,114,117,99,116,111,114,46,112,114,111,116,111,116,121,112,101,58,116,32,105,110,115,116,97,110,99,101,111,102,32,79,98,106,101,99,116,63,97,58,110,117,108,108,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,57,55,41,59,102,111,114,40,118,97,114,32,114,61,110,40,52,41,44,105,61,110,40,55,41,44,111,61,110,40,50,54,41,44,97,61,110,40,49,49,41,40,34,116,111,83,116,114,105,110,103,84,97,103,34,41,44,115,61,34,67,83,83,82,117,108,101,76,105,115,116,44,67,83,83,83,116,121,108,101,68,101,99,108,97,114,97,116,105,111,110,44,67,83,83,86,97,108,117,101,76,105,115,116,44,67,108,105,101,110,116,82,101,99,116,76,105,115,116,44,68,79,77,82,101,99,116,76,105,115,116,44,68,79,77,83,116,114,105,110,103,76,105,115,116,44,68,79,77,84,111,107,101,110,76,105,115,116,44,68,97,116,97,84,114,97,110,115,102,101,114,73,116,101,109,76,105,115,116,44,70,105,108,101,76,105,115,116,44,72,84,77,76,65,108,108,67,111,108,108,101,99,116,105,111,110,44,72,84,77,76,67,111,108,108,101,99,116,105,111,110,44,72,84,77,76,70,111,114,109,69,108,101,109,101,110,116,44,72,84,77,76,83,101,108,101,99,116,69,108,101,109,101,110,116,44,77,101,100,105,97,76,105,115,116,44,77,105,109,101,84,121,112,101,65,114,114,97,121,44,78,97,109,101,100,78,111,100,101,77,97,112,44,78,111,100,101,76,105,115,116,44,80,97,105,110,116,82,101,113,117,101,115,116,76,105,115,116,44,80,108,117,103,105,110,44,80,108,117,103,105,110,65,114,114,97,121,44,83,86,71,76,101,110,103,116,104,76,105,115,116,44,83,86,71,78,117,109,98,101,114,76,105,115,116,44,83,86,71,80,97,116,104,83,101,103,76,105,115,116,44,83,86,71,80,111,105,110,116,76,105,115,116,44,83,86,71,83,116,114,105,110,103,76,105,115,116,44,83,86,71,84,114,97,110,115,102,111,114,109,76,105,115,116,44,83,111,117,114,99,101,66,117,102,102,101,114,76,105,115,116,44,83,116,121,108,101,83,104,101,101,116,76,105,115,116,44,84,101,120,116,84,114,97,99,107,67,117,101,76,105,115,116,44,84,101,120,116,84,114,97,99,107,76,105,115,116,44,84,111,117,99,104,76,105,115,116,34,46,115,112,108,105,116,40,34,44,34,41,44,99,61,48,59,99,60,115,46,108,101,110,103,116,104,59,99,43,43,41,123,118,97,114,32,117,61,115,91,99,93,44,108,61,114,91,117,93,44,102,61,108,38,38,108,46,112,114,111,116,111,116,121,112,101,59,102,38,38,33,102,91,97,93,38,38,105,40,102,44,97,44,117,41,44,111,91,117,93,61,111,46,65,114,114,97,121,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,57,56,41,44,105,61,110,40,57,57,41,44,111,61,110,40,50,54,41,44,97,61,110,40,49,48,41,59,116,46,101,120,112,111,114,116,115,61,110,40,52,48,41,40,65,114,114,97,121,44,34,65,114,114,97,121,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,95,116,61,97,40,116,41,44,116,104,105,115,46,95,105,61,48,44,116,104,105,115,46,95,107,61,101,125,41,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,44,101,61,116,104,105,115,46,95,107,44,110,61,116,104,105,115,46,95,105,43,43,59,114,101,116,117,114,110,33,116,124,124,110,62,61,116,46,108,101,110,103,116,104,63,40,116,104,105,115,46,95,116,61,118,111,105,100,32,48,44,105,40,49,41,41,58,105,40,48,44,34,107,101,121,115,34,61,61,101,63,110,58,34,118,97,108,117,101,115,34,61,61,101,63,116,91,110,93,58,91,110,44,116,91,110,93,93,41,125,41,44,34,118,97,108,117,101,115,34,41,44,111,46,65,114,103,117,109,101,110,116,115,61,111,46,65,114,114,97,121,44,114,40,34,107,101,121,115,34,41,44,114,40,34,118,97,108,117,101,115,34,41,44,114,40,34,101,110,116,114,105,101,115,34,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,123,118,97,108,117,101,58,101,44,100,111,110,101,58,33,33,116,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,116,46,101,120,112,111,114,116,115,61,123,100,101,102,97,117,108,116,58,110,40,49,48,49,41,44,95,95,101,115,77,111,100,117,108,101,58,33,48,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,49,48,50,41,44,110,40,49,48,56,41,44,110,40,49,48,57,41,44,110,40,49,49,48,41,44,116,46,101,120,112,111,114,116,115,61,110,40,49,53,41,46,83,121,109,98,111,108,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,110,40,52,41,44,105,61,110,40,54,41,44,111,61,110,40,57,41,44,97,61,110,40,52,49,41,44,115,61,110,40,52,52,41,44,99,61,110,40,49,48,51,41,46,75,69,89,44,117,61,110,40,49,55,41,44,108,61,110,40,50,57,41,44,102,61,110,40,51,49,41,44,104,61,110,40,49,57,41,44,100,61,110,40,49,49,41,44,112,61,110,40,51,50,41,44,118,61,110,40,51,51,41,44,103,61,110,40,49,48,52,41,44,109,61,110,40,49,48,53,41,44,98,61,110,40,49,54,41,44,121,61,110,40,49,50,41,44,119,61,110,40,52,56,41,44,95,61,110,40,49,48,41,44,120,61,110,40,50,53,41,44,79,61,110,40,49,56,41,44,83,61,110,40,52,53,41,44,107,61,110,40,49,48,54,41,44,67,61,110,40,49,48,55,41,44,80,61,110,40,52,57,41,44,84,61,110,40,56,41,44,106,61,110,40,50,55,41,44,69,61,67,46,102,44,68,61,84,46,102,44,65,61,107,46,102,44,76,61,114,46,83,121,109,98,111,108,44,73,61,114,46,74,83,79,78,44,77,61,73,38,38,73,46,115,116,114,105,110,103,105,102,121,44,36,61,100,40,34,95,104,105,100,100,101,110,34,41,44,70,61,100,40,34,116,111,80,114,105,109,105,116,105,118,101,34,41,44,82,61,123,125,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,44,78,61,108,40,34,115,121,109,98,111,108,45,114,101,103,105,115,116,114,121,34,41,44,66,61,108,40,34,115,121,109,98,111,108,115,34,41,44,122,61,108,40,34,111,112,45,115,121,109,98,111,108,115,34,41,44,86,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,44,72,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,76,38,38,33,33,80,46,102,44,85,61,114,46,81,79,98,106,101,99,116,44,87,61,33,85,124,124,33,85,46,112,114,111,116,111,116,121,112,101,124,124,33,85,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,67,104,105,108,100,44,71,61,111,38,38,117,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,55,33,61,83,40,68,40,123,125,44,34,97,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,68,40,116,104,105,115,44,34,97,34,44,123,118,97,108,117,101,58,55,125,41,46,97,125,125,41,41,46,97,125,41,41,63,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,69,40,86,44,101,41,59,114,38,38,100,101,108,101,116,101,32,86,91,101,93,44,68,40,116,44,101,44,110,41,44,114,38,38,116,33,61,61,86,38,38,68,40,86,44,101,44,114,41,125,58,68,44,113,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,66,91,116,93,61,83,40,76,46,112,114,111,116,111,116,121,112,101,41,59,114,101,116,117,114,110,32,101,46,95,107,61,116,44,101,125,44,89,61,72,38,38,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,76,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,116,125,58,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,76,125,44,75,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,61,61,61,86,38,38,75,40,122,44,101,44,110,41,44,98,40,116,41,44,101,61,120,40,101,44,33,48,41,44,98,40,110,41,44,105,40,66,44,101,41,63,40,110,46,101,110,117,109,101,114,97,98,108,101,63,40,105,40,116,44,36,41,38,38,116,91,36,93,91,101,93,38,38,40,116,91,36,93,91,101,93,61,33,49,41,44,110,61,83,40,110,44,123,101,110,117,109,101,114,97,98,108,101,58,79,40,48,44,33,49,41,125,41,41,58,40,105,40,116,44,36,41,124,124,68,40,116,44,36,44,79,40,49,44,123,125,41,41,44,116,91,36,93,91,101,93,61,33,48,41,44,71,40,116,44,101,44,110,41,41,58,68,40,116,44,101,44,110,41,125,44,88,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,98,40,116,41,59,102,111,114,40,118,97,114,32,110,44,114,61,103,40,101,61,95,40,101,41,41,44,105,61,48,44,111,61,114,46,108,101,110,103,116,104,59,111,62,105,59,41,75,40,116,44,110,61,114,91,105,43,43,93,44,101,91,110,93,41,59,114,101,116,117,114,110,32,116,125,44,90,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,63,83,40,116,41,58,88,40,83,40,116,41,44,101,41,125,44,74,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,82,46,99,97,108,108,40,116,104,105,115,44,116,61,120,40,116,44,33,48,41,41,59,114,101,116,117,114,110,33,40,116,104,105,115,61,61,61,86,38,38,105,40,66,44,116,41,38,38,33,105,40,122,44,116,41,41,38,38,40,33,40,101,124,124,33,105,40,116,104,105,115,44,116,41,124,124,33,105,40,66,44,116,41,124,124,105,40,116,104,105,115,44,36,41,38,38,116,104,105,115,91,36,93,91,116,93,41,124,124,101,41,125,44,81,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,61,95,40,116,41,44,101,61,120,40,101,44,33,48,41,44,116,33,61,61,86,124,124,33,105,40,66,44,101,41,124,124,105,40,122,44,101,41,41,123,118,97,114,32,110,61,69,40,116,44,101,41,59,114,101,116,117,114,110,33,110,124,124,33,105,40,66,44,101,41,124,124,105,40,116,44,36,41,38,38,116,91,36,93,91,101,93,124,124,40,110,46,101,110,117,109,101,114,97,98,108,101,61,33,48,41,44,110,125,125,44,116,116,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,44,110,61,65,40,95,40,116,41,41,44,114,61,91,93,44,111,61,48,59,110,46,108,101,110,103,116,104,62,111,59,41,105,40,66,44,101,61,110,91,111,43,43,93,41,124,124,101,61,61,36,124,124,101,61,61,99,124,124,114,46,112,117,115,104,40,101,41,59,114,101,116,117,114,110,32,114,125,44,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,44,110,61,116,61,61,61,86,44,114,61,65,40,110,63,122,58,95,40,116,41,41,44,111,61,91,93,44,97,61,48,59,114,46,108,101,110,103,116,104,62,97,59,41,33,105,40,66,44,101,61,114,91,97,43,43,93,41,124,124,110,38,38,33,105,40,86,44,101,41,124,124,111,46,112,117,115,104,40,66,91,101,93,41,59,114,101,116,117,114,110,32,111,125,59,72,124,124,40,76,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,76,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,34,83,121,109,98,111,108,32,105,115,32,110,111,116,32,97,32,99,111,110,115,116,114,117,99,116,111,114,33,34,41,59,118,97,114,32,116,61,104,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,63,97,114,103,117,109,101,110,116,115,91,48,93,58,118,111,105,100,32,48,41,44,101,61,102,117,110,99,116,105,111,110,40,110,41,123,116,104,105,115,61,61,61,86,38,38,101,46,99,97,108,108,40,122,44,110,41,44,105,40,116,104,105,115,44,36,41,38,38,105,40,116,104,105,115,91,36,93,44,116,41,38,38,40,116,104,105,115,91,36,93,91,116,93,61,33,49,41,44,71,40,116,104,105,115,44,116,44,79,40,49,44,110,41,41,125,59,114,101,116,117,114,110,32,111,38,38,87,38,38,71,40,86,44,116,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,115,101,116,58,101,125,41,44,113,40,116,41,125,44,115,40,76,46,112,114,111,116,111,116,121,112,101,44,34,116,111,83,116,114,105,110,103,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,107,125,41,41,44,67,46,102,61,81,44,84,46,102,61,75,44,110,40,53,48,41,46,102,61,107,46,102,61,116,116,44,110,40,51,52,41,46,102,61,74,44,80,46,102,61,101,116,44,111,38,38,33,110,40,49,52,41,38,38,115,40,86,44,34,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,34,44,74,44,33,48,41,44,112,46,102,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,113,40,100,40,116,41,41,125,41,44,97,40,97,46,71,43,97,46,87,43,97,46,70,42,33,72,44,123,83,121,109,98,111,108,58,76,125,41,59,102,111,114,40,118,97,114,32,110,116,61,34,104,97,115,73,110,115,116,97,110,99,101,44,105,115,67,111,110,99,97,116,83,112,114,101,97,100,97,98,108,101,44,105,116,101,114,97,116,111,114,44,109,97,116,99,104,44,114,101,112,108,97,99,101,44,115,101,97,114,99,104,44,115,112,101,99,105,101,115,44,115,112,108,105,116,44,116,111,80,114,105,109,105,116,105,118,101,44,116,111,83,116,114,105,110,103,84,97,103,44,117,110,115,99,111,112,97,98,108,101,115,34,46,115,112,108,105,116,40,34,44,34,41,44,114,116,61,48,59,110,116,46,108,101,110,103,116,104,62,114,116,59,41,100,40,110,116,91,114,116,43,43,93,41,59,102,111,114,40,118,97,114,32,105,116,61,106,40,100,46,115,116,111,114,101,41,44,111,116,61,48,59,105,116,46,108,101,110,103,116,104,62,111,116,59,41,118,40,105,116,91,111,116,43,43,93,41,59,97,40,97,46,83,43,97,46,70,42,33,72,44,34,83,121,109,98,111,108,34,44,123,102,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,78,44,116,43,61,34,34,41,63,78,91,116,93,58,78,91,116,93,61,76,40,116,41,125,44,107,101,121,70,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,89,40,116,41,41,116,104,114,111,119,32,84,121,112,101,69,114,114,111,114,40,116,43,34,32,105,115,32,110,111,116,32,97,32,115,121,109,98,111,108,33,34,41,59,102,111,114,40,118,97,114,32,101,32,105,110,32,78,41,105,102,40,78,91,101,93,61,61,61,116,41,114,101,116,117,114,110,32,101,125,44,117,115,101,83,101,116,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,87,61,33,48,125,44,117,115,101,83,105,109,112,108,101,58,102,117,110,99,116,105,111,110,40,41,123,87,61,33,49,125,125,41,44,97,40,97,46,83,43,97,46,70,42,33,72,44,34,79,98,106,101,99,116,34,44,123,99,114,101,97,116,101,58,90,44,100,101,102,105,110,101,80,114,111,112,101,114,116,121,58,75,44,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,58,88,44,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,58,81,44,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,58,116,116,44,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,58,101,116,125,41,59,118,97,114,32,97,116,61,117,40,40,102,117,110,99,116,105,111,110,40,41,123,80,46,102,40,49,41,125,41,41,59,97,40,97,46,83,43,97,46,70,42,97,116,44,34,79,98,106,101,99,116,34,44,123,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,80,46,102,40,119,40,116,41,41,125,125,41,44,73,38,38,97,40,97,46,83,43,97,46,70,42,40,33,72,124,124,117,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,76,40,41,59,114,101,116,117,114,110,34,91,110,117,108,108,93,34,33,61,77,40,91,116,93,41,124,124,34,123,125,34,33,61,77,40,123,97,58,116,125,41,124,124,34,123,125,34,33,61,77,40,79,98,106,101,99,116,40,116,41,41,125,41,41,41,44,34,74,83,79,78,34,44,123,115,116,114,105,110,103,105,102,121,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,44,110,44,114,61,91,116,93,44,105,61,49,59,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,105,59,41,114,46,112,117,115,104,40,97,114,103,117,109,101,110,116,115,91,105,43,43,93,41,59,105,102,40,110,61,101,61,114,91,49,93,44,40,121,40,101,41,124,124,118,111,105,100,32,48,33,61,61,116,41,38,38,33,89,40,116,41,41,114,101,116,117,114,110,32,109,40,101,41,124,124,40,101,61,102,117,110,99,116,105,111,110,40,116,44,101,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,38,38,40,101,61,110,46,99,97,108,108,40,116,104,105,115,44,116,44,101,41,41,44,33,89,40,101,41,41,114,101,116,117,114,110,32,101,125,41,44,114,91,49,93,61,101,44,77,46,97,112,112,108,121,40,73,44,114,41,125,125,41,44,76,46,112,114,111,116,111,116,121,112,101,91,70,93,124,124,110,40,55,41,40,76,46,112,114,111,116,111,116,121,112,101,44,70,44,76,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,79,102,41,44,102,40,76,44,34,83,121,109,98,111,108,34,41,44,102,40,77,97,116,104,44,34,77,97,116,104,34,44,33,48,41,44,102,40,114,46,74,83,79,78,44,34,74,83,79,78,34,44,33,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,57,41,40,34,109,101,116,97,34,41,44,105,61,110,40,49,50,41,44,111,61,110,40,54,41,44,97,61,110,40,56,41,46,102,44,115,61,48,44,99,61,79,98,106,101,99,116,46,105,115,69,120,116,101,110,115,105,98,108,101,124,124,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,117,61,33,110,40,49,55,41,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,40,79,98,106,101,99,116,46,112,114,101,118,101,110,116,69,120,116,101,110,115,105,111,110,115,40,123,125,41,41,125,41,41,44,108,61,102,117,110,99,116,105,111,110,40,116,41,123,97,40,116,44,114,44,123,118,97,108,117,101,58,123,105,58,34,79,34,43,32,43,43,115,44,119,58,123,125,125,125,41,125,44,102,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,105,40,116,41,41,114,101,116,117,114,110,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,116,63,116,58,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,63,34,83,34,58,34,80,34,41,43,116,59,105,102,40,33,111,40,116,44,114,41,41,123,105,102,40,33,99,40,116,41,41,114,101,116,117,114,110,34,70,34,59,105,102,40,33,101,41,114,101,116,117,114,110,34,69,34,59,108,40,116,41,125,114,101,116,117,114,110,32,116,91,114,93,46,105,125,44,104,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,111,40,116,44,114,41,41,123,105,102,40,33,99,40,116,41,41,114,101,116,117,114,110,33,48,59,105,102,40,33,101,41,114,101,116,117,114,110,33,49,59,108,40,116,41,125,114,101,116,117,114,110,32,116,91,114,93,46,119,125,44,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,117,38,38,112,46,78,69,69,68,38,38,99,40,116,41,38,38,33,111,40,116,44,114,41,38,38,108,40,116,41,44,116,125,44,112,61,116,46,101,120,112,111,114,116,115,61,123,75,69,89,58,114,44,78,69,69,68,58,33,49,44,102,97,115,116,75,101,121,58,102,44,103,101,116,87,101,97,107,58,104,44,111,110,70,114,101,101,122,101,58,100,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,50,55,41,44,105,61,110,40,52,57,41,44,111,61,110,40,51,52,41,59,116,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,114,40,116,41,44,110,61,105,46,102,59,105,102,40,110,41,102,111,114,40,118,97,114,32,97,44,115,61,110,40,116,41,44,99,61,111,46,102,44,117,61,48,59,115,46,108,101,110,103,116,104,62,117,59,41,99,46,99,97,108,108,40,116,44,97,61,115,91,117,43,43,93,41,38,38,101,46,112,117,115,104,40,97,41,59,114,101,116,117,114,110,32,101,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,52,55,41,59,116,46,101,120,112,111,114,116,115,61,65,114,114,97,121,46,105,115,65,114,114,97,121,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,65,114,114,97,121,34,61,61,114,40,116,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,48,41,44,105,61,110,40,53,48,41,46,102,44,111,61,123,125,46,116,111,83,116,114,105,110,103,44,97,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,119,105,110,100,111,119,38,38,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,63,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,119,105,110,100,111,119,41,58,91,93,44,115,61,102,117,110,99,116,105,111,110,40,116,41,123,116,114,121,123,114,101,116,117,114,110,32,105,40,116,41,125,99,97,116,99,104,40,116,41,123,114,101,116,117,114,110,32,97,46,115,108,105,99,101,40,41,125,125,59,116,46,101,120,112,111,114,116,115,46,102,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,38,38,34,91,111,98,106,101,99,116,32,87,105,110,100,111,119,93,34,61,61,111,46,99,97,108,108,40,116,41,63,115,40,116,41,58,105,40,114,40,116,41,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,51,52,41,44,105,61,110,40,49,56,41,44,111,61,110,40,49,48,41,44,97,61,110,40,50,53,41,44,115,61,110,40,54,41,44,99,61,110,40,52,50,41,44,117,61,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,59,101,46,102,61,110,40,57,41,63,117,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,61,111,40,116,41,44,101,61,97,40,101,44,33,48,41,44,99,41,116,114,121,123,114,101,116,117,114,110,32,117,40,116,44,101,41,125,99,97,116,99,104,40,116,41,123,125,105,102,40,115,40,116,44,101,41,41,114,101,116,117,114,110,32,105,40,33,114,46,102,46,99,97,108,108,40,116,44,101,41,44,116,91,101,93,41,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,51,51,41,40,34,97,115,121,110,99,73,116,101,114,97,116,111,114,34,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,110,40,51,51,41,40,34,111,98,115,101,114,118,97,98,108,101,34,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,49,50,41,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,116,46,105,44,114,44,34,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,116,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,44,110,40,49,41,40,34,55,99,53,102,49,97,49,99,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,61,116,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,101,46,112,117,115,104,40,91,116,46,105,44,34,92,110,46,118,99,45,104,117,101,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,32,32,116,111,112,58,32,48,112,120,59,92,110,32,32,114,105,103,104,116,58,32,48,112,120,59,92,110,32,32,98,111,116,116,111,109,58,32,48,112,120,59,92,110,32,32,108,101,102,116,58,32,48,112,120,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,110,125,92,110,46,118,99,45,104,117,101,45,45,104,111,114,105,122,111,110,116,97,108,32,123,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,114,105,103,104,116,44,32,35,102,48,48,32,48,37,44,32,35,102,102,48,32,49,55,37,44,32,35,48,102,48,32,51,51,37,44,32,35,48,102,102,32,53,48,37,44,32,35,48,48,102,32,54,55,37,44,32,35,102,48,102,32,56,51,37,44,32,35,102,48,48,32,49,48,48,37,41,59,92,110,125,92,110,46,118,99,45,104,117,101,45,45,118,101,114,116,105,99,97,108,32,123,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,116,111,112,44,32,35,102,48,48,32,48,37,44,32,35,102,102,48,32,49,55,37,44,32,35,48,102,48,32,51,51,37,44,32,35,48,102,102,32,53,48,37,44,32,35,48,48,102,32,54,55,37,44,32,35,102,48,102,32,56,51,37,44,32,35,102,48,48,32,49,48,48,37,41,59,92,110,125,92,110,46,118,99,45,104,117,101,45,99,111,110,116,97,105,110,101,114,32,123,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,110,32,32,109,97,114,103,105,110,58,32,48,32,50,112,120,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,104,101,105,103,104,116,58,32,49,48,48,37,59,92,110,125,92,110,46,118,99,45,104,117,101,45,112,111,105,110,116,101,114,32,123,92,110,32,32,122,45,105,110,100,101,120,58,32,50,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,125,92,110,46,118,99,45,104,117,101,45,112,105,99,107,101,114,32,123,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,112,120,59,92,110,32,32,119,105,100,116,104,58,32,52,112,120,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,56,112,120,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,50,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,54,41,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,88,40,45,50,112,120,41,32,59,92,110,125,92,110,34,44,34,34,93,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,99,108,97,115,115,58,91,34,118,99,45,104,117,101,34,44,116,46,100,105,114,101,99,116,105,111,110,67,108,97,115,115,93,125,44,91,110,40,34,100,105,118,34,44,123,114,101,102,58,34,99,111,110,116,97,105,110,101,114,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,104,117,101,45,99,111,110,116,97,105,110,101,114,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,115,108,105,100,101,114,34,44,34,97,114,105,97,45,118,97,108,117,101,110,111,119,34,58,116,46,99,111,108,111,114,115,46,104,115,108,46,104,44,34,97,114,105,97,45,118,97,108,117,101,109,105,110,34,58,34,48,34,44,34,97,114,105,97,45,118,97,108,117,101,109,97,120,34,58,34,51,54,48,34,125,44,111,110,58,123,109,111,117,115,101,100,111,119,110,58,116,46,104,97,110,100,108,101,77,111,117,115,101,68,111,119,110,44,116,111,117,99,104,109,111,118,101,58,116,46,104,97,110,100,108,101,67,104,97,110,103,101,44,116,111,117,99,104,115,116,97,114,116,58,116,46,104,97,110,100,108,101,67,104,97,110,103,101,125,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,104,117,101,45,112,111,105,110,116,101,114,34,44,115,116,121,108,101,58,123,116,111,112,58,116,46,112,111,105,110,116,101,114,84,111,112,44,108,101,102,116,58,116,46,112,111,105,110,116,101,114,76,101,102,116,125,44,97,116,116,114,115,58,123,114,111,108,101,58,34,112,114,101,115,101,110,116,97,116,105,111,110,34,125,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,104,117,101,45,112,105,99,107,101,114,34,125,41,93,41,93,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,101,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,108,105,100,101,114,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,97,112,112,108,105,99,97,116,105,111,110,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,83,108,105,100,101,114,32,99,111,108,111,114,32,112,105,99,107,101,114,34,125,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,108,105,100,101,114,45,104,117,101,45,119,97,114,112,34,125,44,91,110,40,34,104,117,101,34,44,123,111,110,58,123,99,104,97,110,103,101,58,116,46,104,117,101,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,116,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,99,111,108,111,114,115,61,101,125,44,101,120,112,114,101,115,115,105,111,110,58,34,99,111,108,111,114,115,34,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,101,115,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,103,114,111,117,112,34,125,125,44,116,46,95,108,40,116,46,110,111,114,109,97,108,105,122,101,100,83,119,97,116,99,104,101,115,44,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,107,101,121,58,114,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,34,44,97,116,116,114,115,58,123,34,100,97,116,97,45,105,110,100,101,120,34,58,114,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,99,111,108,111,114,58,34,43,116,46,99,111,108,111,114,115,46,104,101,120,44,114,111,108,101,58,34,98,117,116,116,111,110,34,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,104,97,110,100,108,101,83,119,67,108,105,99,107,40,114,44,101,41,125,125,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,34,44,99,108,97,115,115,58,123,34,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,45,45,97,99,116,105,118,101,34,58,116,46,105,115,65,99,116,105,118,101,40,101,44,114,41,44,34,118,99,45,115,108,105,100,101,114,45,115,119,97,116,99,104,45,112,105,99,107,101,114,45,45,119,104,105,116,101,34,58,49,61,61,61,101,46,108,125,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,34,104,115,108,40,34,43,116,46,99,111,108,111,114,115,46,104,115,108,46,104,43,34,44,32,34,43,49,48,48,42,101,46,115,43,34,37,44,32,34,43,49,48,48,42,101,46,108,43,34,37,41,34,125,125,41,93,41,125,41,41,44,48,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,101,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,99,124,124,110,40,49,49,54,41,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,50,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,34,100,101,102,97,117,108,116,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,40,101,44,116,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,116,93,125,41,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,49,57,41,44,99,61,33,49,44,117,61,110,40,50,41,44,108,61,114,44,102,61,117,40,111,46,97,44,115,46,97,44,33,49,44,108,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,119,97,116,99,104,101,115,46,118,117,101,34,44,101,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,49,55,41,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,116,46,105,44,114,44,34,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,116,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,44,110,40,49,41,40,34,49,48,102,56,51,57,97,50,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,61,116,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,101,46,112,117,115,104,40,91,116,46,105,44,34,92,110,46,118,99,45,115,119,97,116,99,104,101,115,32,123,92,110,32,32,119,105,100,116,104,58,32,51,50,48,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,50,52,48,112,120,59,92,110,32,32,111,118,101,114,102,108,111,119,45,121,58,32,115,99,114,111,108,108,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,102,102,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,50,112,120,32,49,48,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,41,44,32,48,32,50,112,120,32,53,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,54,41,59,92,110,125,92,110,46,118,99,45,115,119,97,116,99,104,101,115,45,98,111,120,32,123,92,110,32,32,112,97,100,100,105,110,103,58,32,49,54,112,120,32,48,32,54,112,120,32,49,54,112,120,59,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,110,125,92,110,46,118,99,45,115,119,97,116,99,104,101,115,45,99,111,108,111,114,45,103,114,111,117,112,32,123,92,110,32,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,49,48,112,120,59,92,110,32,32,119,105,100,116,104,58,32,52,48,112,120,59,92,110,32,32,102,108,111,97,116,58,32,108,101,102,116,59,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,49,48,112,120,59,92,110,125,92,110,46,118,99,45,115,119,97,116,99,104,101,115,45,99,111,108,111,114,45,105,116,32,123,92,110,32,32,98,111,120,45,115,105,122,105,110,103,58,32,98,111,114,100,101,114,45,98,111,120,59,92,110,32,32,119,105,100,116,104,58,32,52,48,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,50,52,112,120,59,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,56,56,48,101,52,102,59,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,49,112,120,59,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,110,32,32,45,109,115,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,32,50,112,120,32,48,32,48,59,92,110,32,32,45,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,32,50,112,120,32,48,32,48,59,92,110,32,32,45,111,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,32,50,112,120,32,48,32,48,59,92,110,32,32,45,119,101,98,107,105,116,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,32,50,112,120,32,48,32,48,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,32,50,112,120,32,48,32,48,59,92,110,125,92,110,46,118,99,45,115,119,97,116,99,104,101,115,45,99,111,108,111,114,45,45,119,104,105,116,101,32,123,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,68,68,68,59,92,110,125,92,110,46,118,99,45,115,119,97,116,99,104,101,115,45,112,105,99,107,32,123,92,110,32,32,102,105,108,108,58,32,114,103,98,40,50,53,53,44,32,50,53,53,44,32,50,53,53,41,59,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,56,112,120,59,92,110,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,92,110,125,92,110,46,118,99,45,115,119,97,116,99,104,101,115,45,99,111,108,111,114,45,45,119,104,105,116,101,32,46,118,99,45,115,119,97,116,99,104,101,115,45,112,105,99,107,32,123,92,110,32,32,102,105,108,108,58,32,114,103,98,40,53,49,44,32,53,49,44,32,53,49,41,59,92,110,125,92,110,34,44,34,34,93,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,44,110,46,100,40,101,44,34,114,101,100,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,125,41,41,44,110,46,100,40,101,44,34,112,105,110,107,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,125,41,41,44,110,46,100,40,101,44,34,112,117,114,112,108,101,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,125,41,41,44,110,46,100,40,101,44,34,100,101,101,112,80,117,114,112,108,101,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,125,41,41,44,110,46,100,40,101,44,34,105,110,100,105,103,111,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,125,41,41,44,110,46,100,40,101,44,34,98,108,117,101,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,125,41,41,44,110,46,100,40,101,44,34,108,105,103,104,116,66,108,117,101,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,117,125,41,41,44,110,46,100,40,101,44,34,99,121,97,110,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,125,41,41,44,110,46,100,40,101,44,34,116,101,97,108,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,125,41,41,44,110,46,100,40,101,44,34,103,114,101,101,110,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,125,41,41,44,110,46,100,40,101,44,34,108,105,103,104,116,71,114,101,101,110,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,100,125,41,41,44,110,46,100,40,101,44,34,108,105,109,101,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,125,41,41,44,110,46,100,40,101,44,34,121,101,108,108,111,119,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,118,125,41,41,44,110,46,100,40,101,44,34,97,109,98,101,114,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,103,125,41,41,44,110,46,100,40,101,44,34,111,114,97,110,103,101,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,109,125,41,41,44,110,46,100,40,101,44,34,100,101,101,112,79,114,97,110,103,101,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,98,125,41,41,44,110,46,100,40,101,44,34,98,114,111,119,110,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,125,41,41,44,110,46,100,40,101,44,34,103,114,101,121,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,119,125,41,41,44,110,46,100,40,101,44,34,98,108,117,101,71,114,101,121,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,95,125,41,41,44,110,46,100,40,101,44,34,100,97,114,107,84,101,120,116,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,120,125,41,41,44,110,46,100,40,101,44,34,108,105,103,104,116,84,101,120,116,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,125,41,41,44,110,46,100,40,101,44,34,100,97,114,107,73,99,111,110,115,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,83,125,41,41,44,110,46,100,40,101,44,34,108,105,103,104,116,73,99,111,110,115,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,125,41,41,44,110,46,100,40,101,44,34,119,104,105,116,101,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,67,125,41,41,44,110,46,100,40,101,44,34,98,108,97,99,107,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,80,125,41,41,59,118,97,114,32,114,61,123,53,48,58,34,35,102,102,101,98,101,101,34,44,49,48,48,58,34,35,102,102,99,100,100,50,34,44,50,48,48,58,34,35,101,102,57,97,57,97,34,44,51,48,48,58,34,35,101,53,55,51,55,51,34,44,52,48,48,58,34,35,101,102,53,51,53,48,34,44,53,48,48,58,34,35,102,52,52,51,51,54,34,44,54,48,48,58,34,35,101,53,51,57,51,53,34,44,55,48,48,58,34,35,100,51,50,102,50,102,34,44,56,48,48,58,34,35,99,54,50,56,50,56,34,44,57,48,48,58,34,35,98,55,49,99,49,99,34,44,97,49,48,48,58,34,35,102,102,56,97,56,48,34,44,97,50,48,48,58,34,35,102,102,53,50,53,50,34,44,97,52,48,48,58,34,35,102,102,49,55,52,52,34,44,97,55,48,48,58,34,35,100,53,48,48,48,48,34,125,44,105,61,123,53,48,58,34,35,102,99,101,52,101,99,34,44,49,48,48,58,34,35,102,56,98,98,100,48,34,44,50,48,48,58,34,35,102,52,56,102,98,49,34,44,51,48,48,58,34,35,102,48,54,50,57,50,34,44,52,48,48,58,34,35,101,99,52,48,55,97,34,44,53,48,48,58,34,35,101,57,49,101,54,51,34,44,54,48,48,58,34,35,100,56,49,98,54,48,34,44,55,48,48,58,34,35,99,50,49,56,53,98,34,44,56,48,48,58,34,35,97,100,49,52,53,55,34,44,57,48,48,58,34,35,56,56,48,101,52,102,34,44,97,49,48,48,58,34,35,102,102,56,48,97,98,34,44,97,50,48,48,58,34,35,102,102,52,48,56,49,34,44,97,52,48,48,58,34,35,102,53,48,48,53,55,34,44,97,55,48,48,58,34,35,99,53,49,49,54,50,34,125,44,111,61,123,53,48,58,34,35,102,51,101,53,102,53,34,44,49,48,48,58,34,35,101,49,98,101,101,55,34,44,50,48,48,58,34,35,99,101,57,51,100,56,34,44,51,48,48,58,34,35,98,97,54,56,99,56,34,44,52,48,48,58,34,35,97,98,52,55,98,99,34,44,53,48,48,58,34,35,57,99,50,55,98,48,34,44,54,48,48,58,34,35,56,101,50,52,97,97,34,44,55,48,48,58,34,35,55,98,49,102,97,50,34,44,56,48,48,58,34,35,54,97,49,98,57,97,34,44,57,48,48,58,34,35,52,97,49,52,56,99,34,44,97,49,48,48,58,34,35,101,97,56,48,102,99,34,44,97,50,48,48,58,34,35,101,48,52,48,102,98,34,44,97,52,48,48,58,34,35,100,53,48,48,102,57,34,44,97,55,48,48,58,34,35,97,97,48,48,102,102,34,125,44,97,61,123,53,48,58,34,35,101,100,101,55,102,54,34,44,49,48,48,58,34,35,100,49,99,52,101,57,34,44,50,48,48,58,34,35,98,51,57,100,100,98,34,44,51,48,48,58,34,35,57,53,55,53,99,100,34,44,52,48,48,58,34,35,55,101,53,55,99,50,34,44,53,48,48,58,34,35,54,55,51,97,98,55,34,44,54,48,48,58,34,35,53,101,51,53,98,49,34,44,55,48,48,58,34,35,53,49,50,100,97,56,34,44,56,48,48,58,34,35,52,53,50,55,97,48,34,44,57,48,48,58,34,35,51,49,49,98,57,50,34,44,97,49,48,48,58,34,35,98,51,56,56,102,102,34,44,97,50,48,48,58,34,35,55,99,52,100,102,102,34,44,97,52,48,48,58,34,35,54,53,49,102,102,102,34,44,97,55,48,48,58,34,35,54,50,48,48,101,97,34,125,44,115,61,123,53,48,58,34,35,101,56,101,97,102,54,34,44,49,48,48,58,34,35,99,53,99,97,101,57,34,44,50,48,48,58,34,35,57,102,97,56,100,97,34,44,51,48,48,58,34,35,55,57,56,54,99,98,34,44,52,48,48,58,34,35,53,99,54,98,99,48,34,44,53,48,48,58,34,35,51,102,53,49,98,53,34,44,54,48,48,58,34,35,51,57,52,57,97,98,34,44,55,48,48,58,34,35,51,48,51,102,57,102,34,44,56,48,48,58,34,35,50,56,51,53,57,51,34,44,57,48,48,58,34,35,49,97,50,51,55,101,34,44,97,49,48,48,58,34,35,56,99,57,101,102,102,34,44,97,50,48,48,58,34,35,53,51,54,100,102,101,34,44,97,52,48,48,58,34,35,51,100,53,97,102,101,34,44,97,55,48,48,58,34,35,51,48,52,102,102,101,34,125,44,99,61,123,53,48,58,34,35,101,51,102,50,102,100,34,44,49,48,48,58,34,35,98,98,100,101,102,98,34,44,50,48,48,58,34,35,57,48,99,97,102,57,34,44,51,48,48,58,34,35,54,52,98,53,102,54,34,44,52,48,48,58,34,35,52,50,97,53,102,53,34,44,53,48,48,58,34,35,50,49,57,54,102,51,34,44,54,48,48,58,34,35,49,101,56,56,101,53,34,44,55,48,48,58,34,35,49,57,55,54,100,50,34,44,56,48,48,58,34,35,49,53,54,53,99,48,34,44,57,48,48,58,34,35,48,100,52,55,97,49,34,44,97,49,48,48,58,34,35,56,50,98,49,102,102,34,44,97,50,48,48,58,34,35,52,52,56,97,102,102,34,44,97,52,48,48,58,34,35,50,57,55,57,102,102,34,44,97,55,48,48,58,34,35,50,57,54,50,102,102,34,125,44,117,61,123,53,48,58,34,35,101,49,102,53,102,101,34,44,49,48,48,58,34,35,98,51,101,53,102,99,34,44,50,48,48,58,34,35,56,49,100,52,102,97,34,44,51,48,48,58,34,35,52,102,99,51,102,55,34,44,52,48,48,58,34,35,50,57,98,54,102,54,34,44,53,48,48,58,34,35,48,51,97,57,102,52,34,44,54,48,48,58,34,35,48,51,57,98,101,53,34,44,55,48,48,58,34,35,48,50,56,56,100,49,34,44,56,48,48,58,34,35,48,50,55,55,98,100,34,44,57,48,48,58,34,35,48,49,53,55,57,98,34,44,97,49,48,48,58,34,35,56,48,100,56,102,102,34,44,97,50,48,48,58,34,35,52,48,99,52,102,102,34,44,97,52,48,48,58,34,35,48,48,98,48,102,102,34,44,97,55,48,48,58,34,35,48,48,57,49,101,97,34,125,44,108,61,123,53,48,58,34,35,101,48,102,55,102,97,34,44,49,48,48,58,34,35,98,50,101,98,102,50,34,44,50,48,48,58,34,35,56,48,100,101,101,97,34,44,51,48,48,58,34,35,52,100,100,48,101,49,34,44,52,48,48,58,34,35,50,54,99,54,100,97,34,44,53,48,48,58,34,35,48,48,98,99,100,52,34,44,54,48,48,58,34,35,48,48,97,99,99,49,34,44,55,48,48,58,34,35,48,48,57,55,97,55,34,44,56,48,48,58,34,35,48,48,56,51,56,102,34,44,57,48,48,58,34,35,48,48,54,48,54,52,34,44,97,49,48,48,58,34,35,56,52,102,102,102,102,34,44,97,50,48,48,58,34,35,49,56,102,102,102,102,34,44,97,52,48,48,58,34,35,48,48,101,53,102,102,34,44,97,55,48,48,58,34,35,48,48,98,56,100,52,34,125,44,102,61,123,53,48,58,34,35,101,48,102,50,102,49,34,44,49,48,48,58,34,35,98,50,100,102,100,98,34,44,50,48,48,58,34,35,56,48,99,98,99,52,34,44,51,48,48,58,34,35,52,100,98,54,97,99,34,44,52,48,48,58,34,35,50,54,97,54,57,97,34,44,53,48,48,58,34,35,48,48,57,54,56,56,34,44,54,48,48,58,34,35,48,48,56,57,55,98,34,44,55,48,48,58,34,35,48,48,55,57,54,98,34,44,56,48,48,58,34,35,48,48,54,57,53,99,34,44,57,48,48,58,34,35,48,48,52,100,52,48,34,44,97,49,48,48,58,34,35,97,55,102,102,101,98,34,44,97,50,48,48,58,34,35,54,52,102,102,100,97,34,44,97,52,48,48,58,34,35,49,100,101,57,98,54,34,44,97,55,48,48,58,34,35,48,48,98,102,97,53,34,125,44,104,61,123,53,48,58,34,35,101,56,102,53,101,57,34,44,49,48,48,58,34,35,99,56,101,54,99,57,34,44,50,48,48,58,34,35,97,53,100,54,97,55,34,44,51,48,48,58,34,35,56,49,99,55,56,52,34,44,52,48,48,58,34,35,54,54,98,98,54,97,34,44,53,48,48,58,34,35,52,99,97,102,53,48,34,44,54,48,48,58,34,35,52,51,97,48,52,55,34,44,55,48,48,58,34,35,51,56,56,101,51,99,34,44,56,48,48,58,34,35,50,101,55,100,51,50,34,44,57,48,48,58,34,35,49,98,53,101,50,48,34,44,97,49,48,48,58,34,35,98,57,102,54,99,97,34,44,97,50,48,48,58,34,35,54,57,102,48,97,101,34,44,97,52,48,48,58,34,35,48,48,101,54,55,54,34,44,97,55,48,48,58,34,35,48,48,99,56,53,51,34,125,44,100,61,123,53,48,58,34,35,102,49,102,56,101,57,34,44,49,48,48,58,34,35,100,99,101,100,99,56,34,44,50,48,48,58,34,35,99,53,101,49,97,53,34,44,51,48,48,58,34,35,97,101,100,53,56,49,34,44,52,48,48,58,34,35,57,99,99,99,54,53,34,44,53,48,48,58,34,35,56,98,99,51,52,97,34,44,54,48,48,58,34,35,55,99,98,51,52,50,34,44,55,48,48,58,34,35,54,56,57,102,51,56,34,44,56,48,48,58,34,35,53,53,56,98,50,102,34,44,57,48,48,58,34,35,51,51,54,57,49,101,34,44,97,49,48,48,58,34,35,99,99,102,102,57,48,34,44,97,50,48,48,58,34,35,98,50,102,102,53,57,34,44,97,52,48,48,58,34,35,55,54,102,102,48,51,34,44,97,55,48,48,58,34,35,54,52,100,100,49,55,34,125,44,112,61,123,53,48,58,34,35,102,57,102,98,101,55,34,44,49,48,48,58,34,35,102,48,102,52,99,51,34,44,50,48,48,58,34,35,101,54,101,101,57,99,34,44,51,48,48,58,34,35,100,99,101,55,55,53,34,44,52,48,48,58,34,35,100,52,101,49,53,55,34,44,53,48,48,58,34,35,99,100,100,99,51,57,34,44,54,48,48,58,34,35,99,48,99,97,51,51,34,44,55,48,48,58,34,35,97,102,98,52,50,98,34,44,56,48,48,58,34,35,57,101,57,100,50,52,34,44,57,48,48,58,34,35,56,50,55,55,49,55,34,44,97,49,48,48,58,34,35,102,52,102,102,56,49,34,44,97,50,48,48,58,34,35,101,101,102,102,52,49,34,44,97,52,48,48,58,34,35,99,54,102,102,48,48,34,44,97,55,48,48,58,34,35,97,101,101,97,48,48,34,125,44,118,61,123,53,48,58,34,35,102,102,102,100,101,55,34,44,49,48,48,58,34,35,102,102,102,57,99,52,34,44,50,48,48,58,34,35,102,102,102,53,57,100,34,44,51,48,48,58,34,35,102,102,102,49,55,54,34,44,52,48,48,58,34,35,102,102,101,101,53,56,34,44,53,48,48,58,34,35,102,102,101,98,51,98,34,44,54,48,48,58,34,35,102,100,100,56,51,53,34,44,55,48,48,58,34,35,102,98,99,48,50,100,34,44,56,48,48,58,34,35,102,57,97,56,50,53,34,44,57,48,48,58,34,35,102,53,55,102,49,55,34,44,97,49,48,48,58,34,35,102,102,102,102,56,100,34,44,97,50,48,48,58,34,35,102,102,102,102,48,48,34,44,97,52,48,48,58,34,35,102,102,101,97,48,48,34,44,97,55,48,48,58,34,35,102,102,100,54,48,48,34,125,44,103,61,123,53,48,58,34,35,102,102,102,56,101,49,34,44,49,48,48,58,34,35,102,102,101,99,98,51,34,44,50,48,48,58,34,35,102,102,101,48,56,50,34,44,51,48,48,58,34,35,102,102,100,53,52,102,34,44,52,48,48,58,34,35,102,102,99,97,50,56,34,44,53,48,48,58,34,35,102,102,99,49,48,55,34,44,54,48,48,58,34,35,102,102,98,51,48,48,34,44,55,48,48,58,34,35,102,102,97,48,48,48,34,44,56,48,48,58,34,35,102,102,56,102,48,48,34,44,57,48,48,58,34,35,102,102,54,102,48,48,34,44,97,49,48,48,58,34,35,102,102,101,53,55,102,34,44,97,50,48,48,58,34,35,102,102,100,55,52,48,34,44,97,52,48,48,58,34,35,102,102,99,52,48,48,34,44,97,55,48,48,58,34,35,102,102,97,98,48,48,34,125,44,109,61,123,53,48,58,34,35,102,102,102,51,101,48,34,44,49,48,48,58,34,35,102,102,101,48,98,50,34,44,50,48,48,58,34,35,102,102,99,99,56,48,34,44,51,48,48,58,34,35,102,102,98,55,52,100,34,44,52,48,48,58,34,35,102,102,97,55,50,54,34,44,53,48,48,58,34,35,102,102,57,56,48,48,34,44,54,48,48,58,34,35,102,98,56,99,48,48,34,44,55,48,48,58,34,35,102,53,55,99,48,48,34,44,56,48,48,58,34,35,101,102,54,99,48,48,34,44,57,48,48,58,34,35,101,54,53,49,48,48,34,44,97,49,48,48,58,34,35,102,102,100,49,56,48,34,44,97,50,48,48,58,34,35,102,102,97,98,52,48,34,44,97,52,48,48,58,34,35,102,102,57,49,48,48,34,44,97,55,48,48,58,34,35,102,102,54,100,48,48,34,125,44,98,61,123,53,48,58,34,35,102,98,101,57,101,55,34,44,49,48,48,58,34,35,102,102,99,99,98,99,34,44,50,48,48,58,34,35,102,102,97,98,57,49,34,44,51,48,48,58,34,35,102,102,56,97,54,53,34,44,52,48,48,58,34,35,102,102,55,48,52,51,34,44,53,48,48,58,34,35,102,102,53,55,50,50,34,44,54,48,48,58,34,35,102,52,53,49,49,101,34,44,55,48,48,58,34,35,101,54,52,97,49,57,34,44,56,48,48,58,34,35,100,56,52,51,49,53,34,44,57,48,48,58,34,35,98,102,51,54,48,99,34,44,97,49,48,48,58,34,35,102,102,57,101,56,48,34,44,97,50,48,48,58,34,35,102,102,54,101,52,48,34,44,97,52,48,48,58,34,35,102,102,51,100,48,48,34,44,97,55,48,48,58,34,35,100,100,50,99,48,48,34,125,44,121,61,123,53,48,58,34,35,101,102,101,98,101,57,34,44,49,48,48,58,34,35,100,55,99,99,99,56,34,44,50,48,48,58,34,35,98,99,97,97,97,52,34,44,51,48,48,58,34,35,97,49,56,56,55,102,34,44,52,48,48,58,34,35,56,100,54,101,54,51,34,44,53,48,48,58,34,35,55,57,53,53,52,56,34,44,54,48,48,58,34,35,54,100,52,99,52,49,34,44,55,48,48,58,34,35,53,100,52,48,51,55,34,44,56,48,48,58,34,35,52,101,51,52,50,101,34,44,57,48,48,58,34,35,51,101,50,55,50,51,34,125,44,119,61,123,53,48,58,34,35,102,97,102,97,102,97,34,44,49,48,48,58,34,35,102,53,102,53,102,53,34,44,50,48,48,58,34,35,101,101,101,101,101,101,34,44,51,48,48,58,34,35,101,48,101,48,101,48,34,44,52,48,48,58,34,35,98,100,98,100,98,100,34,44,53,48,48,58,34,35,57,101,57,101,57,101,34,44,54,48,48,58,34,35,55,53,55,53,55,53,34,44,55,48,48,58,34,35,54,49,54,49,54,49,34,44,56,48,48,58,34,35,52,50,52,50,52,50,34,44,57,48,48,58,34,35,50,49,50,49,50,49,34,125,44,95,61,123,53,48,58,34,35,101,99,101,102,102,49,34,44,49,48,48,58,34,35,99,102,100,56,100,99,34,44,50,48,48,58,34,35,98,48,98,101,99,53,34,44,51,48,48,58,34,35,57,48,97,52,97,101,34,44,52,48,48,58,34,35,55,56,57,48,57,99,34,44,53,48,48,58,34,35,54,48,55,100,56,98,34,44,54,48,48,58,34,35,53,52,54,101,55,97,34,44,55,48,48,58,34,35,52,53,53,97,54,52,34,44,56,48,48,58,34,35,51,55,52,55,52,102,34,44,57,48,48,58,34,35,50,54,51,50,51,56,34,125,44,120,61,123,112,114,105,109,97,114,121,58,34,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,56,55,41,34,44,115,101,99,111,110,100,97,114,121,58,34,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,53,52,41,34,44,100,105,115,97,98,108,101,100,58,34,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,51,56,41,34,44,100,105,118,105,100,101,114,115,58,34,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,50,41,34,125,44,79,61,123,112,114,105,109,97,114,121,58,34,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,49,41,34,44,115,101,99,111,110,100,97,114,121,58,34,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,55,41,34,44,100,105,115,97,98,108,101,100,58,34,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,41,34,44,100,105,118,105,100,101,114,115,58,34,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,49,50,41,34,125,44,83,61,123,97,99,116,105,118,101,58,34,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,53,52,41,34,44,105,110,97,99,116,105,118,101,58,34,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,51,56,41,34,125,44,107,61,123,97,99,116,105,118,101,58,34,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,49,41,34,44,105,110,97,99,116,105,118,101,58,34,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,41,34,125,44,67,61,34,35,102,102,102,102,102,102,34,44,80,61,34,35,48,48,48,48,48,48,34,59,101,46,100,101,102,97,117,108,116,61,123,114,101,100,58,114,44,112,105,110,107,58,105,44,112,117,114,112,108,101,58,111,44,100,101,101,112,80,117,114,112,108,101,58,97,44,105,110,100,105,103,111,58,115,44,98,108,117,101,58,99,44,108,105,103,104,116,66,108,117,101,58,117,44,99,121,97,110,58,108,44,116,101,97,108,58,102,44,103,114,101,101,110,58,104,44,108,105,103,104,116,71,114,101,101,110,58,100,44,108,105,109,101,58,112,44,121,101,108,108,111,119,58,118,44,97,109,98,101,114,58,103,44,111,114,97,110,103,101,58,109,44,100,101,101,112,79,114,97,110,103,101,58,98,44,98,114,111,119,110,58,121,44,103,114,101,121,58,119,44,98,108,117,101,71,114,101,121,58,95,44,100,97,114,107,84,101,120,116,58,120,44,108,105,103,104,116,84,101,120,116,58,79,44,100,97,114,107,73,99,111,110,115,58,83,44,108,105,103,104,116,73,99,111,110,115,58,107,44,119,104,105,116,101,58,67,44,98,108,97,99,107,58,80,125,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,119,97,116,99,104,101,115,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,97,112,112,108,105,99,97,116,105,111,110,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,83,119,97,116,99,104,101,115,32,99,111,108,111,114,32,112,105,99,107,101,114,34,44,34,100,97,116,97,45,112,105,99,107,34,58,116,46,112,105,99,107,125,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,119,97,116,99,104,101,115,45,98,111,120,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,108,105,115,116,98,111,120,34,125,125,44,116,46,95,108,40,116,46,112,97,108,101,116,116,101,44,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,107,101,121,58,114,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,119,97,116,99,104,101,115,45,99,111,108,111,114,45,103,114,111,117,112,34,125,44,116,46,95,108,40,101,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,107,101,121,58,101,44,99,108,97,115,115,58,91,34,118,99,45,115,119,97,116,99,104,101,115,45,99,111,108,111,114,45,105,116,34,44,123,34,118,99,45,115,119,97,116,99,104,101,115,45,99,111,108,111,114,45,45,119,104,105,116,101,34,58,34,35,70,70,70,70,70,70,34,61,61,61,101,125,93,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,101,125,44,97,116,116,114,115,58,123,114,111,108,101,58,34,111,112,116,105,111,110,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,67,111,108,111,114,58,34,43,101,44,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,58,116,46,101,113,117,97,108,40,101,41,44,34,100,97,116,97,45,99,111,108,111,114,34,58,101,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,104,97,110,100,108,101,114,67,108,105,99,107,40,101,41,125,125,125,44,91,110,40,34,100,105,118,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,115,104,111,119,34,44,114,97,119,78,97,109,101,58,34,118,45,115,104,111,119,34,44,118,97,108,117,101,58,116,46,101,113,117,97,108,40,101,41,44,101,120,112,114,101,115,115,105,111,110,58,34,101,113,117,97,108,40,99,41,34,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,119,97,116,99,104,101,115,45,112,105,99,107,34,125,44,91,110,40,34,115,118,103,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,119,105,100,116,104,58,34,50,52,112,120,34,44,104,101,105,103,104,116,58,34,50,52,112,120,34,125,44,97,116,116,114,115,58,123,118,105,101,119,66,111,120,58,34,48,32,48,32,50,52,32,50,52,34,125,125,44,91,110,40,34,112,97,116,104,34,44,123,97,116,116,114,115,58,123,100,58,34,77,50,49,44,55,76,57,44,49,57,76,51,46,53,44,49,51,46,53,76,52,46,57,49,44,49,50,46,48,57,76,57,44,49,54,46,49,55,76,49,57,46,53,57,44,53,46,53,57,76,50,49,44,55,90,34,125,125,41,93,41,93,41,93,41,125,41,41,44,48,41,125,41,41,44,48,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,101,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,99,124,124,110,40,49,50,49,41,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,51,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,34,100,101,102,97,117,108,116,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,40,101,44,116,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,116,93,125,41,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,51,52,41,44,99,61,33,49,44,117,61,110,40,50,41,44,108,61,114,44,102,61,117,40,111,46,97,44,115,46,97,44,33,49,44,108,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,80,104,111,116,111,115,104,111,112,46,118,117,101,34,44,101,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,50,50,41,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,116,46,105,44,114,44,34,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,116,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,44,110,40,49,41,40,34,48,56,48,51,54,53,100,52,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,61,116,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,101,46,112,117,115,104,40,91,116,46,105,44,39,92,110,46,118,99,45,112,104,111,116,111,115,104,111,112,32,123,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,68,67,68,67,68,67,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,44,32,48,32,56,112,120,32,49,54,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,59,92,110,32,32,98,111,120,45,115,105,122,105,110,103,58,32,105,110,105,116,105,97,108,59,92,110,32,32,119,105,100,116,104,58,32,53,49,51,112,120,59,92,110,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,82,111,98,111,116,111,59,92,110,125,92,110,46,118,99,45,112,104,111,116,111,115,104,111,112,95,95,100,105,115,97,98,108,101,45,102,105,101,108,100,115,32,123,92,110,32,32,119,105,100,116,104,58,32,51,57,48,112,120,59,92,110,125,92,110,46,118,99,45,112,115,45,104,101,97,100,32,123,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,32,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,45,49,56,48,100,101,103,44,32,35,70,48,70,48,70,48,32,48,37,44,32,35,68,52,68,52,68,52,32,49,48,48,37,41,59,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,49,112,120,32,115,111,108,105,100,32,35,66,49,66,49,66,49,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,49,112,120,32,48,32,48,32,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,50,41,44,32,105,110,115,101,116,32,48,32,45,49,112,120,32,48,32,48,32,114,103,98,97,40,48,44,48,44,48,44,46,48,50,41,59,92,110,32,32,104,101,105,103,104,116,58,32,50,51,112,120,59,92,110,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,50,52,112,120,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,32,52,112,120,32,48,32,48,59,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,92,110,32,32,99,111,108,111,114,58,32,35,52,68,52,68,52,68,59,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,110,125,92,110,46,118,99,45,112,115,45,98,111,100,121,32,123,92,110,32,32,112,97,100,100,105,110,103,58,32,49,53,112,120,59,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,110,125,92,110,46,118,99,45,112,115,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,32,123,92,110,32,32,119,105,100,116,104,58,32,50,53,54,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,50,53,54,112,120,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,98,111,114,100,101,114,58,32,50,112,120,32,115,111,108,105,100,32,35,66,51,66,51,66,51,59,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,50,112,120,32,115,111,108,105,100,32,35,70,48,70,48,70,48,59,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,110,125,92,110,46,118,99,45,112,115,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,32,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,99,105,114,99,108,101,32,123,92,110,32,32,119,105,100,116,104,58,32,49,50,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,49,50,112,120,59,92,110,125,92,110,46,118,99,45,112,115,45,104,117,101,45,119,114,97,112,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,104,101,105,103,104,116,58,32,50,53,54,112,120,59,92,110,32,32,119,105,100,116,104,58,32,49,57,112,120,59,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,49,48,112,120,59,92,110,32,32,98,111,114,100,101,114,58,32,50,112,120,32,115,111,108,105,100,32,35,66,51,66,51,66,51,59,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,50,112,120,32,115,111,108,105,100,32,35,70,48,70,48,70,48,59,92,110,125,92,110,46,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,125,92,110,46,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,108,101,102,116,44,92,110,46,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,114,105,103,104,116,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,32,32,119,105,100,116,104,58,32,48,59,92,110,32,32,104,101,105,103,104,116,58,32,48,59,92,110,32,32,98,111,114,100,101,114,45,115,116,121,108,101,58,32,115,111,108,105,100,59,92,110,32,32,98,111,114,100,101,114,45,119,105,100,116,104,58,32,53,112,120,32,48,32,53,112,120,32,56,112,120,59,92,110,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,32,35,53,53,53,59,92,110,125,92,110,46,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,108,101,102,116,58,97,102,116,101,114,44,92,110,46,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,114,105,103,104,116,58,97,102,116,101,114,32,123,92,110,32,32,99,111,110,116,101,110,116,58,32,34,34,59,92,110,32,32,119,105,100,116,104,58,32,48,59,92,110,32,32,104,101,105,103,104,116,58,32,48,59,92,110,32,32,98,111,114,100,101,114,45,115,116,121,108,101,58,32,115,111,108,105,100,59,92,110,32,32,98,111,114,100,101,114,45,119,105,100,116,104,58,32,52,112,120,32,48,32,52,112,120,32,54,112,120,59,92,110,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,32,35,102,102,102,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,32,32,116,111,112,58,32,49,112,120,59,92,110,32,32,108,101,102,116,58,32,49,112,120,59,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,56,112,120,44,32,45,53,112,120,41,59,92,110,125,92,110,46,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,108,101,102,116,32,123,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,49,51,112,120,44,32,45,52,112,120,41,59,92,110,125,92,110,46,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,114,105,103,104,116,32,123,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,50,48,112,120,44,32,45,52,112,120,41,32,114,111,116,97,116,101,40,49,56,48,100,101,103,41,59,92,110,125,92,110,46,118,99,45,112,115,45,99,111,110,116,114,111,108,115,32,123,92,110,32,32,119,105,100,116,104,58,32,49,56,48,112,120,59,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,49,48,112,120,59,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,110,125,92,110,46,118,99,45,112,115,45,99,111,110,116,114,111,108,115,95,95,100,105,115,97,98,108,101,45,102,105,101,108,100,115,32,123,92,110,32,32,119,105,100,116,104,58,32,97,117,116,111,59,92,110,125,92,110,46,118,99,45,112,115,45,97,99,116,105,111,110,115,32,123,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,50,48,112,120,59,92,110,32,32,102,108,101,120,58,32,49,59,92,110,125,92,110,46,118,99,45,112,115,45,97,99,45,98,116,110,32,123,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,32,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,45,49,56,48,100,101,103,44,32,35,70,70,70,70,70,70,32,48,37,44,32,35,69,54,69,54,69,54,32,49,48,48,37,41,59,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,56,55,56,55,56,55,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,50,48,112,120,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,49,112,120,32,48,32,48,32,35,69,65,69,65,69,65,59,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,52,112,120,59,92,110,32,32,99,111,108,111,114,58,32,35,48,48,48,59,92,110,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,50,48,112,120,59,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,49,48,112,120,59,92,110,125,92,110,46,118,99,45,112,115,45,112,114,101,118,105,101,119,115,32,123,92,110,32,32,119,105,100,116,104,58,32,54,48,112,120,59,92,110,125,92,110,46,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,115,119,97,116,99,104,101,115,32,123,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,66,51,66,51,66,51,59,92,110,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,49,112,120,32,115,111,108,105,100,32,35,70,48,70,48,70,48,59,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,50,112,120,59,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,112,120,59,92,110,125,92,110,46,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,112,114,45,99,111,108,111,114,32,123,92,110,32,32,104,101,105,103,104,116,58,32,51,52,112,120,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,49,112,120,32,48,32,48,32,35,48,48,48,44,32,105,110,115,101,116,32,45,49,112,120,32,48,32,48,32,35,48,48,48,44,32,105,110,115,101,116,32,48,32,49,112,120,32,48,32,35,48,48,48,59,92,110,125,92,110,46,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,108,97,98,101,108,32,123,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,52,112,120,59,92,110,32,32,99,111,108,111,114,58,32,35,48,48,48,59,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,110,125,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,32,123,92,110,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,53,112,120,59,92,110,32,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,57,112,120,59,92,110,32,32,119,105,100,116,104,58,32,56,48,112,120,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,125,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,32,46,118,99,45,105,110,112,117,116,95,95,105,110,112,117,116,32,123,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,52,48,37,59,92,110,32,32,119,105,100,116,104,58,32,52,48,37,59,92,110,32,32,104,101,105,103,104,116,58,32,49,56,112,120,59,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,56,56,56,56,56,56,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,49,112,120,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,44,32,48,32,49,112,120,32,48,32,48,32,35,69,67,69,67,69,67,59,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,53,112,120,59,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,51,112,120,59,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,49,48,112,120,59,92,110,125,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,32,46,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,44,32,46,118,99,45,112,115,45,102,105,101,108,100,115,32,46,118,99,45,105,110,112,117,116,95,95,100,101,115,99,32,123,92,110,32,32,116,111,112,58,32,48,59,92,110,32,32,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,32,117,112,112,101,114,99,97,115,101,59,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,49,56,112,120,59,92,110,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,50,50,112,120,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,125,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,32,46,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,32,123,92,110,32,32,108,101,102,116,58,32,48,59,92,110,32,32,119,105,100,116,104,58,32,51,52,112,120,59,92,110,125,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,32,46,118,99,45,105,110,112,117,116,95,95,100,101,115,99,32,123,92,110,32,32,114,105,103,104,116,58,32,48,59,92,110,32,32,119,105,100,116,104,58,32,48,59,92,110,125,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,95,95,100,105,118,105,100,101,114,32,123,92,110,32,32,104,101,105,103,104,116,58,32,53,112,120,59,92,110,125,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,95,95,104,101,120,32,46,118,99,45,105,110,112,117,116,95,95,105,110,112,117,116,32,123,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,50,48,37,59,92,110,32,32,119,105,100,116,104,58,32,56,48,37,59,92,110,32,32,104,101,105,103,104,116,58,32,49,56,112,120,59,92,110,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,56,56,56,56,56,56,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,49,112,120,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,44,32,48,32,49,112,120,32,48,32,48,32,35,69,67,69,67,69,67,59,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,54,112,120,59,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,51,112,120,59,92,110,125,92,110,46,118,99,45,112,115,45,102,105,101,108,100,115,95,95,104,101,120,32,46,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,32,32,116,111,112,58,32,48,59,92,110,32,32,108,101,102,116,58,32,48,59,92,110,32,32,119,105,100,116,104,58,32,49,52,112,120,59,92,110,32,32,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,32,117,112,112,101,114,99,97,115,101,59,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,49,56,112,120,59,92,110,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,50,50,112,120,59,92,110,125,92,110,39,44,34,34,93,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,50,52,41,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,116,46,105,44,114,44,34,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,116,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,44,110,40,49,41,40,34,98,53,51,56,48,101,53,50,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,61,116,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,101,46,112,117,115,104,40,91,116,46,105,44,34,92,110,46,118,99,45,115,97,116,117,114,97,116,105,111,110,44,92,110,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,45,119,104,105,116,101,44,92,110,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,45,98,108,97,99,107,32,123,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,32,32,116,111,112,58,32,48,59,92,110,32,32,108,101,102,116,58,32,48,59,92,110,32,32,114,105,103,104,116,58,32,48,59,92,110,32,32,98,111,116,116,111,109,58,32,48,59,92,110,125,92,110,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,45,119,104,105,116,101,32,123,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,114,105,103,104,116,44,32,35,102,102,102,44,32,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,48,41,41,59,92,110,125,92,110,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,45,98,108,97,99,107,32,123,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,116,111,112,44,32,35,48,48,48,44,32,114,103,98,97,40,48,44,48,44,48,44,48,41,41,59,92,110,125,92,110,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,112,111,105,110,116,101,114,32,123,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,125,92,110,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,99,105,114,99,108,101,32,123,92,110,32,32,99,117,114,115,111,114,58,32,104,101,97,100,59,92,110,32,32,119,105,100,116,104,58,32,52,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,52,112,120,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,48,32,49,46,53,112,120,32,35,102,102,102,44,32,105,110,115,101,116,32,48,32,48,32,49,112,120,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,51,41,44,32,48,32,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,52,41,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,53,48,37,59,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,50,112,120,44,32,45,50,112,120,41,59,92,110,125,92,110,34,44,34,34,93,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,117,110,99,116,105,111,110,32,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,60,110,63,116,60,101,63,101,58,116,62,110,63,110,58,116,58,116,60,110,63,110,58,116,62,101,63,101,58,116,125,116,46,101,120,112,111,114,116,115,61,110,125,44,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,117,110,99,116,105,111,110,32,114,40,116,44,101,44,110,41,123,102,117,110,99,116,105,111,110,32,114,40,101,41,123,118,97,114,32,110,61,118,44,114,61,103,59,114,101,116,117,114,110,32,118,61,103,61,118,111,105,100,32,48,44,95,61,101,44,98,61,116,46,97,112,112,108,121,40,114,44,110,41,125,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,95,61,116,44,121,61,115,101,116,84,105,109,101,111,117,116,40,108,44,101,41,44,107,63,114,40,116,41,58,98,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,118,97,114,32,110,61,116,45,119,44,114,61,116,45,95,44,105,61,101,45,110,59,114,101,116,117,114,110,32,67,63,79,40,105,44,109,45,114,41,58,105,125,102,117,110,99,116,105,111,110,32,115,40,116,41,123,118,97,114,32,110,61,116,45,119,44,114,61,116,45,95,59,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,119,124,124,110,62,61,101,124,124,110,60,48,124,124,67,38,38,114,62,61,109,125,102,117,110,99,116,105,111,110,32,108,40,41,123,118,97,114,32,116,61,83,40,41,59,105,102,40,115,40,116,41,41,114,101,116,117,114,110,32,102,40,116,41,59,121,61,115,101,116,84,105,109,101,111,117,116,40,108,44,97,40,116,41,41,125,102,117,110,99,116,105,111,110,32,102,40,116,41,123,114,101,116,117,114,110,32,121,61,118,111,105,100,32,48,44,80,38,38,118,63,114,40,116,41,58,40,118,61,103,61,118,111,105,100,32,48,44,98,41,125,102,117,110,99,116,105,111,110,32,104,40,41,123,118,111,105,100,32,48,33,61,61,121,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,121,41,44,95,61,48,44,118,61,119,61,103,61,121,61,118,111,105,100,32,48,125,102,117,110,99,116,105,111,110,32,100,40,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,121,63,98,58,102,40,83,40,41,41,125,102,117,110,99,116,105,111,110,32,112,40,41,123,118,97,114,32,116,61,83,40,41,44,110,61,115,40,116,41,59,105,102,40,118,61,97,114,103,117,109,101,110,116,115,44,103,61,116,104,105,115,44,119,61,116,44,110,41,123,105,102,40,118,111,105,100,32,48,61,61,61,121,41,114,101,116,117,114,110,32,105,40,119,41,59,105,102,40,67,41,114,101,116,117,114,110,32,121,61,115,101,116,84,105,109,101,111,117,116,40,108,44,101,41,44,114,40,119,41,125,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,121,38,38,40,121,61,115,101,116,84,105,109,101,111,117,116,40,108,44,101,41,41,44,98,125,118,97,114,32,118,44,103,44,109,44,98,44,121,44,119,44,95,61,48,44,107,61,33,49,44,67,61,33,49,44,80,61,33,48,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,84,121,112,101,69,114,114,111,114,40,117,41,59,114,101,116,117,114,110,32,101,61,99,40,101,41,124,124,48,44,111,40,110,41,38,38,40,107,61,33,33,110,46,108,101,97,100,105,110,103,44,67,61,34,109,97,120,87,97,105,116,34,105,110,32,110,44,109,61,67,63,120,40,99,40,110,46,109,97,120,87,97,105,116,41,124,124,48,44,101,41,58,109,44,80,61,34,116,114,97,105,108,105,110,103,34,105,110,32,110,63,33,33,110,46,116,114,97,105,108,105,110,103,58,80,41,44,112,46,99,97,110,99,101,108,61,104,44,112,46,102,108,117,115,104,61,100,44,112,125,102,117,110,99,116,105,111,110,32,105,40,116,44,101,44,110,41,123,118,97,114,32,105,61,33,48,44,97,61,33,48,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,84,121,112,101,69,114,114,111,114,40,117,41,59,114,101,116,117,114,110,32,111,40,110,41,38,38,40,105,61,34,108,101,97,100,105,110,103,34,105,110,32,110,63,33,33,110,46,108,101,97,100,105,110,103,58,105,44,97,61,34,116,114,97,105,108,105,110,103,34,105,110,32,110,63,33,33,110,46,116,114,97,105,108,105,110,103,58,97,41,44,114,40,116,44,101,44,123,108,101,97,100,105,110,103,58,105,44,109,97,120,87,97,105,116,58,101,44,116,114,97,105,108,105,110,103,58,97,125,41,125,102,117,110,99,116,105,111,110,32,111,40,116,41,123,118,97,114,32,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,33,33,116,38,38,40,34,111,98,106,101,99,116,34,61,61,101,124,124,34,102,117,110,99,116,105,111,110,34,61,61,101,41,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,114,101,116,117,114,110,33,33,116,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,125,102,117,110,99,116,105,111,110,32,115,40,116,41,123,114,101,116,117,114,110,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,116,124,124,97,40,116,41,38,38,95,46,99,97,108,108,40,116,41,61,61,102,125,102,117,110,99,116,105,111,110,32,99,40,116,41,123,105,102,40,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,116,59,105,102,40,115,40,116,41,41,114,101,116,117,114,110,32,108,59,105,102,40,111,40,116,41,41,123,118,97,114,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,46,118,97,108,117,101,79,102,63,116,46,118,97,108,117,101,79,102,40,41,58,116,59,116,61,111,40,101,41,63,101,43,34,34,58,101,125,105,102,40,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,48,61,61,61,116,63,116,58,43,116,59,116,61,116,46,114,101,112,108,97,99,101,40,104,44,34,34,41,59,118,97,114,32,110,61,112,46,116,101,115,116,40,116,41,59,114,101,116,117,114,110,32,110,124,124,118,46,116,101,115,116,40,116,41,63,103,40,116,46,115,108,105,99,101,40,50,41,44,110,63,50,58,56,41,58,100,46,116,101,115,116,40,116,41,63,108,58,43,116,125,118,97,114,32,117,61,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,44,108,61,78,97,78,44,102,61,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,44,104,61,47,94,92,115,43,124,92,115,43,36,47,103,44,100,61,47,94,91,45,43,93,48,120,91,48,45,57,97,45,102,93,43,36,47,105,44,112,61,47,94,48,98,91,48,49,93,43,36,47,105,44,118,61,47,94,48,111,91,48,45,55,93,43,36,47,105,44,103,61,112,97,114,115,101,73,110,116,44,109,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,46,103,38,38,110,46,103,38,38,110,46,103,46,79,98,106,101,99,116,61,61,61,79,98,106,101,99,116,38,38,110,46,103,44,98,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,115,101,108,102,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,121,61,109,124,124,98,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,119,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,44,95,61,119,46,116,111,83,116,114,105,110,103,44,120,61,77,97,116,104,46,109,97,120,44,79,61,77,97,116,104,46,109,105,110,44,83,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,46,68,97,116,101,46,110,111,119,40,41,125,59,116,46,101,120,112,111,114,116,115,61,105,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,114,101,102,58,34,99,111,110,116,97,105,110,101,114,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,97,116,117,114,97,116,105,111,110,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,116,46,98,103,67,111,108,111,114,125,44,111,110,58,123,109,111,117,115,101,100,111,119,110,58,116,46,104,97,110,100,108,101,77,111,117,115,101,68,111,119,110,44,116,111,117,99,104,109,111,118,101,58,116,46,104,97,110,100,108,101,67,104,97,110,103,101,44,116,111,117,99,104,115,116,97,114,116,58,116,46,104,97,110,100,108,101,67,104,97,110,103,101,125,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,97,116,117,114,97,116,105,111,110,45,45,119,104,105,116,101,34,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,97,116,117,114,97,116,105,111,110,45,45,98,108,97,99,107,34,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,97,116,117,114,97,116,105,111,110,45,112,111,105,110,116,101,114,34,44,115,116,121,108,101,58,123,116,111,112,58,116,46,112,111,105,110,116,101,114,84,111,112,44,108,101,102,116,58,116,46,112,111,105,110,116,101,114,76,101,102,116,125,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,97,116,117,114,97,116,105,111,110,45,99,105,114,99,108,101,34,125,41,93,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,101,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,50,57,41,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,116,46,105,44,114,44,34,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,116,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,44,110,40,49,41,40,34,52,100,99,49,98,48,56,54,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,61,116,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,101,46,112,117,115,104,40,91,116,46,105,44,34,92,110,46,118,99,45,97,108,112,104,97,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,32,32,116,111,112,58,32,48,112,120,59,92,110,32,32,114,105,103,104,116,58,32,48,112,120,59,92,110,32,32,98,111,116,116,111,109,58,32,48,112,120,59,92,110,32,32,108,101,102,116,58,32,48,112,120,59,92,110,125,92,110,46,118,99,45,97,108,112,104,97,45,99,104,101,99,107,98,111,97,114,100,45,119,114,97,112,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,32,32,116,111,112,58,32,48,112,120,59,92,110,32,32,114,105,103,104,116,58,32,48,112,120,59,92,110,32,32,98,111,116,116,111,109,58,32,48,112,120,59,92,110,32,32,108,101,102,116,58,32,48,112,120,59,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,110,125,92,110,46,118,99,45,97,108,112,104,97,45,103,114,97,100,105,101,110,116,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,32,32,116,111,112,58,32,48,112,120,59,92,110,32,32,114,105,103,104,116,58,32,48,112,120,59,92,110,32,32,98,111,116,116,111,109,58,32,48,112,120,59,92,110,32,32,108,101,102,116,58,32,48,112,120,59,92,110,125,92,110,46,118,99,45,97,108,112,104,97,45,99,111,110,116,97,105,110,101,114,32,123,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,122,45,105,110,100,101,120,58,32,50,59,92,110,32,32,104,101,105,103,104,116,58,32,49,48,48,37,59,92,110,32,32,109,97,114,103,105,110,58,32,48,32,51,112,120,59,92,110,125,92,110,46,118,99,45,97,108,112,104,97,45,112,111,105,110,116,101,114,32,123,92,110,32,32,122,45,105,110,100,101,120,58,32,50,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,125,92,110,46,118,99,45,97,108,112,104,97,45,112,105,99,107,101,114,32,123,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,110,32,32,119,105,100,116,104,58,32,52,112,120,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,56,112,120,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,50,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,54,41,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,112,120,59,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,88,40,45,50,112,120,41,59,92,110,125,92,110,34,44,34,34,93,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,51,49,41,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,116,46,105,44,114,44,34,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,116,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,44,110,40,49,41,40,34,55,101,49,53,99,48,53,98,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,61,116,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,101,46,112,117,115,104,40,91,116,46,105,44,34,92,110,46,118,99,45,99,104,101,99,107,101,114,98,111,97,114,100,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,32,32,116,111,112,58,32,48,112,120,59,92,110,32,32,114,105,103,104,116,58,32,48,112,120,59,92,110,32,32,98,111,116,116,111,109,58,32,48,112,120,59,92,110,32,32,108,101,102,116,58,32,48,112,120,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,32,99,111,110,116,97,105,110,59,92,110,125,92,110,34,44,34,34,93,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,46,95,115,101,108,102,46,95,99,124,124,101,41,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,101,99,107,101,114,98,111,97,114,100,34,44,115,116,121,108,101,58,116,46,98,103,83,116,121,108,101,125,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,101,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,97,108,112,104,97,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,97,108,112,104,97,45,99,104,101,99,107,98,111,97,114,100,45,119,114,97,112,34,125,44,91,110,40,34,99,104,101,99,107,98,111,97,114,100,34,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,97,108,112,104,97,45,103,114,97,100,105,101,110,116,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,116,46,103,114,97,100,105,101,110,116,67,111,108,111,114,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,114,101,102,58,34,99,111,110,116,97,105,110,101,114,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,97,108,112,104,97,45,99,111,110,116,97,105,110,101,114,34,44,111,110,58,123,109,111,117,115,101,100,111,119,110,58,116,46,104,97,110,100,108,101,77,111,117,115,101,68,111,119,110,44,116,111,117,99,104,109,111,118,101,58,116,46,104,97,110,100,108,101,67,104,97,110,103,101,44,116,111,117,99,104,115,116,97,114,116,58,116,46,104,97,110,100,108,101,67,104,97,110,103,101,125,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,97,108,112,104,97,45,112,111,105,110,116,101,114,34,44,115,116,121,108,101,58,123,108,101,102,116,58,49,48,48,42,116,46,99,111,108,111,114,115,46,97,43,34,37,34,125,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,97,108,112,104,97,45,112,105,99,107,101,114,34,125,41,93,41,93,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,101,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,99,108,97,115,115,58,91,34,118,99,45,112,104,111,116,111,115,104,111,112,34,44,116,46,100,105,115,97,98,108,101,70,105,101,108,100,115,63,34,118,99,45,112,104,111,116,111,115,104,111,112,95,95,100,105,115,97,98,108,101,45,102,105,101,108,100,115,34,58,34,34,93,44,97,116,116,114,115,58,123,114,111,108,101,58,34,97,112,112,108,105,99,97,116,105,111,110,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,80,104,111,116,111,83,104,111,112,32,99,111,108,111,114,32,112,105,99,107,101,114,34,125,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,104,101,97,100,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,104,101,97,100,105,110,103,34,125,125,44,91,116,46,95,118,40,116,46,95,115,40,116,46,104,101,97,100,41,41,93,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,98,111,100,121,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,34,125,44,91,110,40,34,115,97,116,117,114,97,116,105,111,110,34,44,123,111,110,58,123,99,104,97,110,103,101,58,116,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,116,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,99,111,108,111,114,115,61,101,125,44,101,120,112,114,101,115,115,105,111,110,58,34,99,111,108,111,114,115,34,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,104,117,101,45,119,114,97,112,34,125,44,91,110,40,34,104,117,101,34,44,123,97,116,116,114,115,58,123,100,105,114,101,99,116,105,111,110,58,34,118,101,114,116,105,99,97,108,34,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,116,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,99,111,108,111,114,115,61,101,125,44,101,120,112,114,101,115,115,105,111,110,58,34,99,111,108,111,114,115,34,125,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,34,125,44,91,110,40,34,105,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,108,101,102,116,34,125,41,44,110,40,34,105,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,104,117,101,45,112,111,105,110,116,101,114,45,45,114,105,103,104,116,34,125,41,93,41,93,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,99,108,97,115,115,58,91,34,118,99,45,112,115,45,99,111,110,116,114,111,108,115,34,44,116,46,100,105,115,97,98,108,101,70,105,101,108,100,115,63,34,118,99,45,112,115,45,99,111,110,116,114,111,108,115,95,95,100,105,115,97,98,108,101,45,102,105,101,108,100,115,34,58,34,34,93,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,112,114,101,118,105,101,119,115,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,108,97,98,101,108,34,125,44,91,116,46,95,118,40,116,46,95,115,40,116,46,110,101,119,76,97,98,101,108,41,41,93,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,115,119,97,116,99,104,101,115,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,112,114,45,99,111,108,111,114,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,116,46,99,111,108,111,114,115,46,104,101,120,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,34,78,101,119,32,99,111,108,111,114,32,105,115,32,34,43,116,46,99,111,108,111,114,115,46,104,101,120,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,112,114,45,99,111,108,111,114,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,116,46,99,117,114,114,101,110,116,67,111,108,111,114,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,34,67,117,114,114,101,110,116,32,99,111,108,111,114,32,105,115,32,34,43,116,46,99,117,114,114,101,110,116,67,111,108,111,114,125,44,111,110,58,123,99,108,105,99,107,58,116,46,99,108,105,99,107,67,117,114,114,101,110,116,67,111,108,111,114,125,125,41,93,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,112,114,101,118,105,101,119,115,95,95,108,97,98,101,108,34,125,44,91,116,46,95,118,40,116,46,95,115,40,116,46,99,117,114,114,101,110,116,76,97,98,101,108,41,41,93,41,93,41,44,116,46,95,118,40,34,32,34,41,44,116,46,100,105,115,97,98,108,101,70,105,101,108,100,115,63,116,46,95,101,40,41,58,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,97,99,116,105,111,110,115,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,97,99,45,98,116,110,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,98,117,116,116,111,110,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,116,46,97,99,99,101,112,116,76,97,98,101,108,125,44,111,110,58,123,99,108,105,99,107,58,116,46,104,97,110,100,108,101,65,99,99,101,112,116,125,125,44,91,116,46,95,118,40,116,46,95,115,40,116,46,97,99,99,101,112,116,76,97,98,101,108,41,41,93,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,97,99,45,98,116,110,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,98,117,116,116,111,110,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,116,46,99,97,110,99,101,108,76,97,98,101,108,125,44,111,110,58,123,99,108,105,99,107,58,116,46,104,97,110,100,108,101,67,97,110,99,101,108,125,125,44,91,116,46,95,118,40,116,46,95,115,40,116,46,99,97,110,99,101,108,76,97,98,101,108,41,41,93,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,102,105,101,108,100,115,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,104,34,44,100,101,115,99,58,34,194,176,34,44,118,97,108,117,101,58,116,46,104,115,118,46,104,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,115,34,44,100,101,115,99,58,34,37,34,44,118,97,108,117,101,58,116,46,104,115,118,46,115,44,109,97,120,58,49,48,48,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,118,34,44,100,101,115,99,58,34,37,34,44,118,97,108,117,101,58,116,46,104,115,118,46,118,44,109,97,120,58,49,48,48,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,102,105,101,108,100,115,95,95,100,105,118,105,100,101,114,34,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,114,34,44,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,114,103,98,97,46,114,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,103,34,44,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,114,103,98,97,46,103,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,98,34,44,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,114,103,98,97,46,98,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,102,105,101,108,100,115,95,95,100,105,118,105,100,101,114,34,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,101,100,45,105,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,102,105,101,108,100,115,95,95,104,101,120,34,44,97,116,116,114,115,58,123,108,97,98,101,108,58,34,35,34,44,118,97,108,117,101,58,116,46,104,101,120,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,116,46,104,97,115,82,101,115,101,116,66,117,116,116,111,110,63,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,112,115,45,97,99,45,98,116,110,34,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,34,114,101,115,101,116,34,125,44,111,110,58,123,99,108,105,99,107,58,116,46,104,97,110,100,108,101,82,101,115,101,116,125,125,44,91,116,46,95,118,40,116,46,95,115,40,116,46,114,101,115,101,116,76,97,98,101,108,41,41,93,41,58,116,46,95,101,40,41,93,41,93,41,93,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,101,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,99,124,124,110,40,49,51,54,41,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,55,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,34,100,101,102,97,117,108,116,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,40,101,44,116,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,116,93,125,41,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,51,56,41,44,99,61,33,49,44,117,61,110,40,50,41,44,108,61,114,44,102,61,117,40,111,46,97,44,115,46,97,44,33,49,44,108,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,83,107,101,116,99,104,46,118,117,101,34,44,101,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,51,55,41,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,116,46,105,44,114,44,34,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,116,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,44,110,40,49,41,40,34,54,49,50,99,54,54,48,52,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,61,116,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,101,46,112,117,115,104,40,91,116,46,105,44,34,92,110,46,118,99,45,115,107,101,116,99,104,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,119,105,100,116,104,58,32,50,48,48,112,120,59,92,110,32,32,112,97,100,100,105,110,103,58,32,49,48,112,120,32,49,48,112,120,32,48,59,92,110,32,32,98,111,120,45,115,105,122,105,110,103,58,32,105,110,105,116,105,97,108,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,49,53,41,44,32,48,32,56,112,120,32,49,54,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,49,53,41,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,32,123,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,110,32,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,55,53,37,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,99,111,110,116,114,111,108,115,32,123,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,115,108,105,100,101,114,115,32,123,92,110,32,32,112,97,100,100,105,110,103,58,32,52,112,120,32,48,59,92,110,32,32,102,108,101,120,58,32,49,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,115,108,105,100,101,114,115,32,46,118,99,45,104,117,101,44,92,110,46,118,99,45,115,107,101,116,99,104,45,115,108,105,100,101,114,115,32,46,118,99,45,97,108,112,104,97,45,103,114,97,100,105,101,110,116,32,123,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,104,117,101,45,119,114,97,112,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,104,101,105,103,104,116,58,32,49,48,112,120,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,97,108,112,104,97,45,119,114,97,112,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,104,101,105,103,104,116,58,32,49,48,112,120,59,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,52,112,120,59,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,99,111,108,111,114,45,119,114,97,112,32,123,92,110,32,32,119,105,100,116,104,58,32,50,52,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,50,52,112,120,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,52,112,120,59,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,52,112,120,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,51,112,120,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,97,99,116,105,118,101,45,99,111,108,111,114,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,32,32,116,111,112,58,32,48,59,92,110,32,32,108,101,102,116,58,32,48,59,92,110,32,32,114,105,103,104,116,58,32,48,59,92,110,32,32,98,111,116,116,111,109,58,32,48,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,49,53,41,44,32,105,110,115,101,116,32,48,32,48,32,52,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,50,53,41,59,92,110,32,32,122,45,105,110,100,101,120,58,32,50,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,99,111,108,111,114,45,119,114,97,112,32,46,118,99,45,99,104,101,99,107,101,114,98,111,97,114,100,32,123,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,32,97,117,116,111,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,32,123,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,110,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,52,112,120,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,32,46,118,99,45,105,110,112,117,116,95,95,105,110,112,117,116,32,123,92,110,32,32,119,105,100,116,104,58,32,57,48,37,59,92,110,32,32,112,97,100,100,105,110,103,58,32,52,112,120,32,48,32,51,112,120,32,49,48,37,59,92,110,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,35,99,99,99,59,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,48,112,120,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,32,46,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,32,123,92,110,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,49,112,120,59,92,110,32,32,99,111,108,111,114,58,32,35,50,50,50,59,92,110,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,51,112,120,59,92,110,32,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,52,112,120,59,92,110,32,32,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,32,99,97,112,105,116,97,108,105,122,101,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,45,45,115,105,110,103,108,101,32,123,92,110,32,32,102,108,101,120,58,32,49,59,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,54,112,120,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,45,45,100,111,117,98,108,101,32,123,92,110,32,32,102,108,101,120,58,32,50,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,112,114,101,115,101,116,115,32,123,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,45,49,48,112,120,59,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,45,49,48,112,120,59,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,49,48,112,120,59,92,110,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,49,48,112,120,59,92,110,32,32,98,111,114,100,101,114,45,116,111,112,58,32,49,112,120,32,115,111,108,105,100,32,35,101,101,101,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,112,114,101,115,101,116,115,45,99,111,108,111,114,32,123,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,51,112,120,59,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,45,98,108,111,99,107,59,92,110,32,32,109,97,114,103,105,110,58,32,48,32,49,48,112,120,32,49,48,112,120,32,48,59,92,110,32,32,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,32,116,111,112,59,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,110,32,32,119,105,100,116,104,58,32,49,54,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,49,54,112,120,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,49,53,41,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,45,112,114,101,115,101,116,115,45,99,111,108,111,114,32,46,118,99,45,99,104,101,99,107,101,114,98,111,97,114,100,32,123,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,49,53,41,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,51,112,120,59,92,110,125,92,110,46,118,99,45,115,107,101,116,99,104,95,95,100,105,115,97,98,108,101,45,97,108,112,104,97,32,46,118,99,45,115,107,101,116,99,104,45,99,111,108,111,114,45,119,114,97,112,32,123,92,110,32,32,104,101,105,103,104,116,58,32,49,48,112,120,59,92,110,125,92,110,34,44,34,34,93,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,99,108,97,115,115,58,91,34,118,99,45,115,107,101,116,99,104,34,44,116,46,100,105,115,97,98,108,101,65,108,112,104,97,63,34,118,99,45,115,107,101,116,99,104,95,95,100,105,115,97,98,108,101,45,97,108,112,104,97,34,58,34,34,93,44,97,116,116,114,115,58,123,114,111,108,101,58,34,97,112,112,108,105,99,97,116,105,111,110,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,83,107,101,116,99,104,32,99,111,108,111,114,32,112,105,99,107,101,114,34,125,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,34,125,44,91,110,40,34,115,97,116,117,114,97,116,105,111,110,34,44,123,111,110,58,123,99,104,97,110,103,101,58,116,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,116,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,99,111,108,111,114,115,61,101,125,44,101,120,112,114,101,115,115,105,111,110,58,34,99,111,108,111,114,115,34,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,99,111,110,116,114,111,108,115,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,115,108,105,100,101,114,115,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,104,117,101,45,119,114,97,112,34,125,44,91,110,40,34,104,117,101,34,44,123,111,110,58,123,99,104,97,110,103,101,58,116,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,116,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,99,111,108,111,114,115,61,101,125,44,101,120,112,114,101,115,115,105,111,110,58,34,99,111,108,111,114,115,34,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,116,46,100,105,115,97,98,108,101,65,108,112,104,97,63,116,46,95,101,40,41,58,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,97,108,112,104,97,45,119,114,97,112,34,125,44,91,110,40,34,97,108,112,104,97,34,44,123,111,110,58,123,99,104,97,110,103,101,58,116,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,116,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,99,111,108,111,114,115,61,101,125,44,101,120,112,114,101,115,115,105,111,110,58,34,99,111,108,111,114,115,34,125,125,41,93,44,49,41,93,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,99,111,108,111,114,45,119,114,97,112,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,97,99,116,105,118,101,45,99,111,108,111,114,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,116,46,97,99,116,105,118,101,67,111,108,111,114,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,34,67,117,114,114,101,110,116,32,99,111,108,111,114,32,105,115,32,34,43,116,46,97,99,116,105,118,101,67,111,108,111,114,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,99,104,101,99,107,98,111,97,114,100,34,41,93,44,49,41,93,41,44,116,46,95,118,40,34,32,34,41,44,116,46,100,105,115,97,98,108,101,70,105,101,108,100,115,63,116,46,95,101,40,41,58,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,45,45,100,111,117,98,108,101,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,104,101,120,34,44,118,97,108,117,101,58,116,46,104,101,120,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,45,45,115,105,110,103,108,101,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,114,34,44,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,114,103,98,97,46,114,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,45,45,115,105,110,103,108,101,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,103,34,44,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,114,103,98,97,46,103,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,45,45,115,105,110,103,108,101,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,98,34,44,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,114,103,98,97,46,98,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,116,46,100,105,115,97,98,108,101,65,108,112,104,97,63,116,46,95,101,40,41,58,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,102,105,101,108,100,45,45,115,105,110,103,108,101,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,97,34,44,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,97,44,34,97,114,114,111,119,45,111,102,102,115,101,116,34,58,46,48,49,44,109,97,120,58,49,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,93,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,112,114,101,115,101,116,115,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,103,114,111,117,112,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,65,32,99,111,108,111,114,32,112,114,101,115,101,116,44,32,112,105,99,107,32,111,110,101,32,116,111,32,115,101,116,32,97,115,32,99,117,114,114,101,110,116,32,99,111,108,111,114,34,125,125,44,91,116,46,95,108,40,116,46,112,114,101,115,101,116,67,111,108,111,114,115,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,116,46,105,115,84,114,97,110,115,112,97,114,101,110,116,40,101,41,63,110,40,34,100,105,118,34,44,123,107,101,121,58,101,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,112,114,101,115,101,116,115,45,99,111,108,111,114,34,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,34,67,111,108,111,114,58,34,43,101,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,104,97,110,100,108,101,80,114,101,115,101,116,40,101,41,125,125,125,44,91,110,40,34,99,104,101,99,107,98,111,97,114,100,34,41,93,44,49,41,58,110,40,34,100,105,118,34,44,123,107,101,121,58,101,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,115,107,101,116,99,104,45,112,114,101,115,101,116,115,45,99,111,108,111,114,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,101,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,34,67,111,108,111,114,58,34,43,101,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,104,97,110,100,108,101,80,114,101,115,101,116,40,101,41,125,125,125,41,93,125,41,41,93,44,50,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,101,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,99,124,124,110,40,49,52,48,41,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,56,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,34,100,101,102,97,117,108,116,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,40,101,44,116,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,116,93,125,41,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,52,50,41,44,99,61,33,49,44,117,61,110,40,50,41,44,108,61,114,44,102,61,117,40,111,46,97,44,115,46,97,44,33,49,44,108,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,67,104,114,111,109,101,46,118,117,101,34,44,101,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,52,49,41,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,116,46,105,44,114,44,34,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,116,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,44,110,40,49,41,40,34,49,99,100,49,54,48,52,56,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,61,116,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,101,46,112,117,115,104,40,91,116,46,105,44,34,92,110,46,118,99,45,99,104,114,111,109,101,32,123,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,51,41,44,32,48,32,52,112,120,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,51,41,59,92,110,32,32,98,111,120,45,115,105,122,105,110,103,58,32,105,110,105,116,105,97,108,59,92,110,32,32,119,105,100,116,104,58,32,50,50,53,112,120,59,92,110,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,77,101,110,108,111,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,102,102,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,99,111,110,116,114,111,108,115,32,123,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,99,111,108,111,114,45,119,114,97,112,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,119,105,100,116,104,58,32,51,54,112,120,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,97,99,116,105,118,101,45,99,111,108,111,114,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,119,105,100,116,104,58,32,51,48,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,51,48,112,120,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,53,112,120,59,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,110,32,32,122,45,105,110,100,101,120,58,32,49,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,99,111,108,111,114,45,119,114,97,112,32,46,118,99,45,99,104,101,99,107,101,114,98,111,97,114,100,32,123,92,110,32,32,119,105,100,116,104,58,32,51,48,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,51,48,112,120,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,53,112,120,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,32,97,117,116,111,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,115,108,105,100,101,114,115,32,123,92,110,32,32,102,108,101,120,58,32,49,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,45,119,114,97,112,32,123,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,110,32,32,112,97,100,100,105,110,103,45,116,111,112,58,32,49,54,112,120,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,32,123,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,110,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,45,54,112,120,59,92,110,32,32,102,108,101,120,58,32,49,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,32,123,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,54,112,120,59,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,116,111,103,103,108,101,45,98,116,110,32,123,92,110,32,32,119,105,100,116,104,58,32,51,50,112,120,59,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,114,105,103,104,116,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,116,111,103,103,108,101,45,105,99,111,110,32,123,92,110,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,45,52,112,120,59,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,50,112,120,59,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,122,45,105,110,100,101,120,58,32,50,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,116,111,103,103,108,101,45,105,99,111,110,45,104,105,103,104,108,105,103,104,116,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,32,32,119,105,100,116,104,58,32,50,52,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,50,56,112,120,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,101,101,101,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,92,110,32,32,116,111,112,58,32,49,48,112,120,59,92,110,32,32,108,101,102,116,58,32,49,50,112,120,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,104,117,101,45,119,114,97,112,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,104,101,105,103,104,116,58,32,49,48,112,120,59,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,56,112,120,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,97,108,112,104,97,45,119,114,97,112,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,104,101,105,103,104,116,58,32,49,48,112,120,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,104,117,101,45,119,114,97,112,32,46,118,99,45,104,117,101,32,123,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,97,108,112,104,97,45,119,114,97,112,32,46,118,99,45,97,108,112,104,97,45,103,114,97,100,105,101,110,116,32,123,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,104,117,101,45,119,114,97,112,32,46,118,99,45,104,117,101,45,112,105,99,107,101,114,44,32,46,118,99,45,99,104,114,111,109,101,45,97,108,112,104,97,45,119,114,97,112,32,46,118,99,45,97,108,112,104,97,45,112,105,99,107,101,114,32,123,92,110,32,32,119,105,100,116,104,58,32,49,50,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,49,50,112,120,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,54,112,120,59,92,110,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,54,112,120,44,32,45,50,112,120,41,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,114,103,98,40,50,52,56,44,32,50,52,56,44,32,50,52,56,41,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,49,112,120,32,52,112,120,32,48,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,51,55,41,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,98,111,100,121,32,123,92,110,32,32,112,97,100,100,105,110,103,58,32,49,54,112,120,32,49,54,112,120,32,49,50,112,120,59,92,110,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,102,102,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,32,123,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,110,32,32,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,32,53,53,37,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,32,50,112,120,32,48,32,48,59,92,110,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,32,46,118,99,45,115,97,116,117,114,97,116,105,111,110,45,99,105,114,99,108,101,32,123,92,110,32,32,119,105,100,116,104,58,32,49,50,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,49,50,112,120,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,32,46,118,99,45,105,110,112,117,116,95,95,105,110,112,117,116,32,123,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,49,112,120,59,92,110,32,32,99,111,108,111,114,58,32,35,51,51,51,59,92,110,32,32,119,105,100,116,104,58,32,49,48,48,37,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,50,112,120,59,92,110,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,35,100,97,100,97,100,97,59,92,110,32,32,104,101,105,103,104,116,58,32,50,49,112,120,59,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,32,46,118,99,45,105,110,112,117,116,95,95,108,97,98,101,108,32,123,92,110,32,32,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,32,117,112,112,101,114,99,97,115,101,59,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,49,112,120,59,92,110,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,49,112,120,59,92,110,32,32,99,111,108,111,114,58,32,35,57,54,57,54,57,54,59,92,110,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,92,110,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,50,112,120,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,95,95,100,105,115,97,98,108,101,45,97,108,112,104,97,32,46,118,99,45,99,104,114,111,109,101,45,97,99,116,105,118,101,45,99,111,108,111,114,32,123,92,110,32,32,119,105,100,116,104,58,32,49,56,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,49,56,112,120,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,95,95,100,105,115,97,98,108,101,45,97,108,112,104,97,32,46,118,99,45,99,104,114,111,109,101,45,99,111,108,111,114,45,119,114,97,112,32,123,92,110,32,32,119,105,100,116,104,58,32,51,48,112,120,59,92,110,125,92,110,46,118,99,45,99,104,114,111,109,101,95,95,100,105,115,97,98,108,101,45,97,108,112,104,97,32,46,118,99,45,99,104,114,111,109,101,45,104,117,101,45,119,114,97,112,32,123,92,110,32,32,109,97,114,103,105,110,45,116,111,112,58,32,52,112,120,59,92,110,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,52,112,120,59,92,110,125,92,110,34,44,34,34,93,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,99,108,97,115,115,58,91,34,118,99,45,99,104,114,111,109,101,34,44,116,46,100,105,115,97,98,108,101,65,108,112,104,97,63,34,118,99,45,99,104,114,111,109,101,95,95,100,105,115,97,98,108,101,45,97,108,112,104,97,34,58,34,34,93,44,97,116,116,114,115,58,123,114,111,108,101,58,34,97,112,112,108,105,99,97,116,105,111,110,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,67,104,114,111,109,101,32,99,111,108,111,114,32,112,105,99,107,101,114,34,125,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,115,97,116,117,114,97,116,105,111,110,45,119,114,97,112,34,125,44,91,110,40,34,115,97,116,117,114,97,116,105,111,110,34,44,123,111,110,58,123,99,104,97,110,103,101,58,116,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,116,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,99,111,108,111,114,115,61,101,125,44,101,120,112,114,101,115,115,105,111,110,58,34,99,111,108,111,114,115,34,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,98,111,100,121,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,99,111,110,116,114,111,108,115,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,99,111,108,111,114,45,119,114,97,112,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,97,99,116,105,118,101,45,99,111,108,111,114,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,116,46,97,99,116,105,118,101,67,111,108,111,114,125,44,97,116,116,114,115,58,123,34,97,114,105,97,45,108,97,98,101,108,34,58,34,99,117,114,114,101,110,116,32,99,111,108,111,114,32,105,115,32,34,43,116,46,99,111,108,111,114,115,46,104,101,120,125,125,41,44,116,46,95,118,40,34,32,34,41,44,116,46,100,105,115,97,98,108,101,65,108,112,104,97,63,116,46,95,101,40,41,58,110,40,34,99,104,101,99,107,98,111,97,114,100,34,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,115,108,105,100,101,114,115,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,104,117,101,45,119,114,97,112,34,125,44,91,110,40,34,104,117,101,34,44,123,111,110,58,123,99,104,97,110,103,101,58,116,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,116,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,99,111,108,111,114,115,61,101,125,44,101,120,112,114,101,115,115,105,111,110,58,34,99,111,108,111,114,115,34,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,116,46,100,105,115,97,98,108,101,65,108,112,104,97,63,116,46,95,101,40,41,58,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,97,108,112,104,97,45,119,114,97,112,34,125,44,91,110,40,34,97,108,112,104,97,34,44,123,111,110,58,123,99,104,97,110,103,101,58,116,46,99,104,105,108,100,67,104,97,110,103,101,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,116,46,99,111,108,111,114,115,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,116,46,99,111,108,111,114,115,61,101,125,44,101,120,112,114,101,115,115,105,111,110,58,34,99,111,108,111,114,115,34,125,125,41,93,44,49,41,93,41,93,41,44,116,46,95,118,40,34,32,34,41,44,116,46,100,105,115,97,98,108,101,70,105,101,108,100,115,63,116,46,95,101,40,41,58,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,45,119,114,97,112,34,125,44,91,110,40,34,100,105,118,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,115,104,111,119,34,44,114,97,119,78,97,109,101,58,34,118,45,115,104,111,119,34,44,118,97,108,117,101,58,48,61,61,61,116,46,102,105,101,108,100,115,73,110,100,101,120,44,101,120,112,114,101,115,115,105,111,110,58,34,102,105,101,108,100,115,73,110,100,101,120,32,61,61,61,32,48,34,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,34,125,44,91,116,46,104,97,115,65,108,112,104,97,63,116,46,95,101,40,41,58,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,104,101,120,34,44,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,104,101,120,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,116,46,95,118,40,34,32,34,41,44,116,46,104,97,115,65,108,112,104,97,63,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,104,101,120,34,44,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,104,101,120,56,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,58,116,46,95,101,40,41,93,44,49,41,93,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,115,104,111,119,34,44,114,97,119,78,97,109,101,58,34,118,45,115,104,111,119,34,44,118,97,108,117,101,58,49,61,61,61,116,46,102,105,101,108,100,115,73,110,100,101,120,44,101,120,112,114,101,115,115,105,111,110,58,34,102,105,101,108,100,115,73,110,100,101,120,32,61,61,61,32,49,34,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,114,34,44,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,114,103,98,97,46,114,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,103,34,44,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,114,103,98,97,46,103,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,98,34,44,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,114,103,98,97,46,98,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,116,46,100,105,115,97,98,108,101,65,108,112,104,97,63,116,46,95,101,40,41,58,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,97,34,44,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,97,44,34,97,114,114,111,119,45,111,102,102,115,101,116,34,58,46,48,49,44,109,97,120,58,49,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,93,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,115,104,111,119,34,44,114,97,119,78,97,109,101,58,34,118,45,115,104,111,119,34,44,118,97,108,117,101,58,50,61,61,61,116,46,102,105,101,108,100,115,73,110,100,101,120,44,101,120,112,114,101,115,115,105,111,110,58,34,102,105,101,108,100,115,73,110,100,101,120,32,61,61,61,32,50,34,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,115,34,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,104,34,44,118,97,108,117,101,58,116,46,104,115,108,46,104,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,115,34,44,118,97,108,117,101,58,116,46,104,115,108,46,115,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,108,34,44,118,97,108,117,101,58,116,46,104,115,108,46,108,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,44,116,46,95,118,40,34,32,34,41,44,116,46,100,105,115,97,98,108,101,65,108,112,104,97,63,116,46,95,101,40,41,58,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,102,105,101,108,100,34,125,44,91,110,40,34,101,100,45,105,110,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,97,34,44,118,97,108,117,101,58,116,46,99,111,108,111,114,115,46,97,44,34,97,114,114,111,119,45,111,102,102,115,101,116,34,58,46,48,49,44,109,97,120,58,49,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,93,44,49,41,93,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,116,111,103,103,108,101,45,98,116,110,34,44,97,116,116,114,115,58,123,114,111,108,101,58,34,98,117,116,116,111,110,34,44,34,97,114,105,97,45,108,97,98,101,108,34,58,34,67,104,97,110,103,101,32,97,110,111,116,104,101,114,32,99,111,108,111,114,32,100,101,102,105,110,105,116,105,111,110,34,125,44,111,110,58,123,99,108,105,99,107,58,116,46,116,111,103,103,108,101,86,105,101,119,115,125,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,116,111,103,103,108,101,45,105,99,111,110,34,125,44,91,110,40,34,115,118,103,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,119,105,100,116,104,58,34,50,52,112,120,34,44,104,101,105,103,104,116,58,34,50,52,112,120,34,125,44,97,116,116,114,115,58,123,118,105,101,119,66,111,120,58,34,48,32,48,32,50,52,32,50,52,34,125,44,111,110,58,123,109,111,117,115,101,111,118,101,114,58,116,46,115,104,111,119,72,105,103,104,108,105,103,104,116,44,109,111,117,115,101,101,110,116,101,114,58,116,46,115,104,111,119,72,105,103,104,108,105,103,104,116,44,109,111,117,115,101,111,117,116,58,116,46,104,105,100,101,72,105,103,104,108,105,103,104,116,125,125,44,91,110,40,34,112,97,116,104,34,44,123,97,116,116,114,115,58,123,102,105,108,108,58,34,35,51,51,51,34,44,100,58,34,77,49,50,44,49,56,46,49,55,76,56,46,56,51,44,49,53,76,55,46,52,50,44,49,54,46,52,49,76,49,50,44,50,49,76,49,54,46,53,57,44,49,54,46,52,49,76,49,53,46,49,55,44,49,53,77,49,50,44,53,46,56,51,76,49,53,46,49,55,44,57,76,49,54,46,53,56,44,55,46,53,57,76,49,50,44,51,76,55,46,52,49,44,55,46,53,57,76,56,46,56,51,44,57,76,49,50,44,53,46,56,51,90,34,125,125,41,93,41,93,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,115,104,111,119,34,44,114,97,119,78,97,109,101,58,34,118,45,115,104,111,119,34,44,118,97,108,117,101,58,116,46,104,105,103,104,108,105,103,104,116,44,101,120,112,114,101,115,115,105,111,110,58,34,104,105,103,104,108,105,103,104,116,34,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,99,104,114,111,109,101,45,116,111,103,103,108,101,45,105,99,111,110,45,104,105,103,104,108,105,103,104,116,34,125,41,93,41,93,41,93,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,101,46,97,61,111,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,99,124,124,110,40,49,52,52,41,125,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,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,110,40,53,57,41,44,111,61,110,46,110,40,105,41,59,102,111,114,40,118,97,114,32,97,32,105,110,32,105,41,34,100,101,102,97,117,108,116,34,33,61,61,97,38,38,102,117,110,99,116,105,111,110,40,116,41,123,110,46,100,40,101,44,116,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,91,116,93,125,41,41,125,40,97,41,59,118,97,114,32,115,61,110,40,49,52,54,41,44,99,61,33,49,44,117,61,110,40,50,41,44,108,61,114,44,102,61,117,40,111,46,97,44,115,46,97,44,33,49,44,108,44,110,117,108,108,44,110,117,108,108,41,59,102,46,111,112,116,105,111,110,115,46,95,95,102,105,108,101,61,34,115,114,99,47,99,111,109,112,111,110,101,110,116,115,47,84,119,105,116,116,101,114,46,118,117,101,34,44,101,46,100,101,102,97,117,108,116,61,102,46,101,120,112,111,114,116,115,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,40,49,52,53,41,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,38,38,40,114,61,91,91,116,46,105,44,114,44,34,34,93,93,41,44,114,46,108,111,99,97,108,115,38,38,40,116,46,101,120,112,111,114,116,115,61,114,46,108,111,99,97,108,115,41,44,110,40,49,41,40,34,54,54,57,97,52,56,97,53,34,44,114,44,33,49,44,123,125,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,61,116,46,101,120,112,111,114,116,115,61,110,40,48,41,40,33,49,41,44,101,46,112,117,115,104,40,91,116,46,105,44,34,92,110,46,118,99,45,116,119,105,116,116,101,114,32,123,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,92,110,32,32,98,111,114,100,101,114,58,32,48,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,48,46,50,53,41,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,49,112,120,32,52,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,50,53,41,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,125,92,110,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,32,123,92,110,32,32,119,105,100,116,104,58,32,48,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,48,112,120,59,92,110,32,32,98,111,114,100,101,114,45,115,116,121,108,101,58,32,115,111,108,105,100,59,92,110,32,32,98,111,114,100,101,114,45,119,105,100,116,104,58,32,48,32,57,112,120,32,49,48,112,120,32,57,112,120,59,92,110,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,32,35,102,102,102,32,116,114,97,110,115,112,97,114,101,110,116,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,125,92,110,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,45,115,104,97,100,111,119,32,123,92,110,32,32,119,105,100,116,104,58,32,48,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,48,112,120,59,92,110,32,32,98,111,114,100,101,114,45,115,116,121,108,101,58,32,115,111,108,105,100,59,92,110,32,32,98,111,114,100,101,114,45,119,105,100,116,104,58,32,48,32,57,112,120,32,49,48,112,120,32,57,112,120,59,92,110,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,116,114,97,110,115,112,97,114,101,110,116,32,116,114,97,110,115,112,97,114,101,110,116,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,49,41,32,116,114,97,110,115,112,97,114,101,110,116,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,92,110,125,92,110,46,118,99,45,116,119,105,116,116,101,114,45,98,111,100,121,32,123,92,110,32,32,112,97,100,100,105,110,103,58,32,49,53,112,120,32,57,112,120,32,57,112,120,32,49,53,112,120,59,92,110,125,92,110,46,118,99,45,116,119,105,116,116,101,114,32,46,118,99,45,101,100,105,116,97,98,108,101,45,105,110,112,117,116,32,123,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,125,92,110,46,118,99,45,116,119,105,116,116,101,114,32,46,118,99,45,101,100,105,116,97,98,108,101,45,105,110,112,117,116,32,105,110,112,117,116,32,123,92,110,32,32,119,105,100,116,104,58,32,49,48,48,112,120,59,92,110,32,32,102,111,110,116,45,115,105,122,101,58,32,49,52,112,120,59,92,110,32,32,99,111,108,111,114,58,32,35,54,54,54,59,92,110,32,32,98,111,114,100,101,114,58,32,48,112,120,59,92,110,32,32,111,117,116,108,105,110,101,58,32,110,111,110,101,59,92,110,32,32,104,101,105,103,104,116,58,32,50,56,112,120,59,92,110,32,32,98,111,120,45,115,104,97,100,111,119,58,32,105,110,115,101,116,32,48,32,48,32,48,32,49,112,120,32,35,70,48,70,48,70,48,59,92,110,32,32,98,111,120,45,115,105,122,105,110,103,58,32,99,111,110,116,101,110,116,45,98,111,120,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,32,52,112,120,32,52,112,120,32,48,59,92,110,32,32,102,108,111,97,116,58,32,108,101,102,116,59,92,110,32,32,112,97,100,100,105,110,103,58,32,49,112,120,59,92,110,32,32,112,97,100,100,105,110,103,45,108,101,102,116,58,32,56,112,120,59,92,110,125,92,110,46,118,99,45,116,119,105,116,116,101,114,32,46,118,99,45,101,100,105,116,97,98,108,101,45,105,110,112,117,116,32,115,112,97,110,32,123,92,110,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,92,110,125,92,110,46,118,99,45,116,119,105,116,116,101,114,45,104,97,115,104,32,123,92,110,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,70,48,70,48,70,48,59,92,110,32,32,104,101,105,103,104,116,58,32,51,48,112,120,59,92,110,32,32,119,105,100,116,104,58,32,51,48,112,120,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,32,48,32,48,32,52,112,120,59,92,110,32,32,102,108,111,97,116,58,32,108,101,102,116,59,92,110,32,32,99,111,108,111,114,58,32,35,57,56,65,49,65,52,59,92,110,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,92,110,32,32,97,108,105,103,110,45,105,116,101,109,115,58,32,99,101,110,116,101,114,59,92,110,32,32,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,32,99,101,110,116,101,114,59,92,110,125,92,110,46,118,99,45,116,119,105,116,116,101,114,45,115,119,97,116,99,104,32,123,92,110,32,32,119,105,100,116,104,58,32,51,48,112,120,59,92,110,32,32,104,101,105,103,104,116,58,32,51,48,112,120,59,92,110,32,32,102,108,111,97,116,58,32,108,101,102,116,59,92,110,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,92,110,32,32,109,97,114,103,105,110,58,32,48,32,54,112,120,32,54,112,120,32,48,59,92,110,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,92,110,32,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,92,110,32,32,111,117,116,108,105,110,101,58,32,110,111,110,101,59,92,110,125,92,110,46,118,99,45,116,119,105,116,116,101,114,45,99,108,101,97,114,32,123,92,110,32,32,99,108,101,97,114,58,32,98,111,116,104,59,92,110,125,92,110,46,118,99,45,116,119,105,116,116,101,114,45,104,105,100,101,45,116,114,105,97,110,103,108,101,32,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,32,123,92,110,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,92,110,125,92,110,46,118,99,45,116,119,105,116,116,101,114,45,104,105,100,101,45,116,114,105,97,110,103,108,101,32,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,45,115,104,97,100,111,119,32,123,92,110,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,92,110,125,92,110,46,118,99,45,116,119,105,116,116,101,114,45,116,111,112,45,108,101,102,116,45,116,114,105,97,110,103,108,101,32,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,123,92,110,32,32,116,111,112,58,32,45,49,48,112,120,59,92,110,32,32,108,101,102,116,58,32,49,50,112,120,59,92,110,125,92,110,46,118,99,45,116,119,105,116,116,101,114,45,116,111,112,45,108,101,102,116,45,116,114,105,97,110,103,108,101,32,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,45,115,104,97,100,111,119,123,92,110,32,32,116,111,112,58,32,45,49,49,112,120,59,92,110,32,32,108,101,102,116,58,32,49,50,112,120,59,92,110,125,92,110,46,118,99,45,116,119,105,116,116,101,114,45,116,111,112,45,114,105,103,104,116,45,116,114,105,97,110,103,108,101,32,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,123,92,110,32,32,116,111,112,58,32,45,49,48,112,120,59,92,110,32,32,114,105,103,104,116,58,32,49,50,112,120,59,92,110,125,92,110,46,118,99,45,116,119,105,116,116,101,114,45,116,111,112,45,114,105,103,104,116,45,116,114,105,97,110,103,108,101,32,46,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,45,115,104,97,100,111,119,123,92,110,32,32,116,111,112,58,32,45,49,49,112,120,59,92,110,32,32,114,105,103,104,116,58,32,49,50,112,120,59,92,110,125,92,110,34,44,34,34,93,41,125,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,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,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,116,119,105,116,116,101,114,34,44,99,108,97,115,115,58,123,34,118,99,45,116,119,105,116,116,101,114,45,104,105,100,101,45,116,114,105,97,110,103,108,101,32,34,58,34,104,105,100,101,34,61,61,61,116,46,116,114,105,97,110,103,108,101,44,34,118,99,45,116,119,105,116,116,101,114,45,116,111,112,45,108,101,102,116,45,116,114,105,97,110,103,108,101,32,34,58,34,116,111,112,45,108,101,102,116,34,61,61,61,116,46,116,114,105,97,110,103,108,101,44,34,118,99,45,116,119,105,116,116,101,114,45,116,111,112,45,114,105,103,104,116,45,116,114,105,97,110,103,108,101,32,34,58,34,116,111,112,45,114,105,103,104,116,34,61,61,61,116,46,116,114,105,97,110,103,108,101,125,44,115,116,121,108,101,58,123,119,105,100,116,104,58,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,46,119,105,100,116,104,63,116,46,119,105,100,116,104,43,34,112,120,34,58,116,46,119,105,100,116,104,125,125,44,91,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,45,115,104,97,100,111,119,34,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,116,119,105,116,116,101,114,45,116,114,105,97,110,103,108,101,34,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,116,119,105,116,116,101,114,45,98,111,100,121,34,125,44,91,116,46,95,108,40,116,46,100,101,102,97,117,108,116,67,111,108,111,114,115,44,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,114,101,116,117,114,110,32,110,40,34,115,112,97,110,34,44,123,107,101,121,58,114,44,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,116,119,105,116,116,101,114,45,115,119,97,116,99,104,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,101,44,98,111,120,83,104,97,100,111,119,58,34,48,32,48,32,52,112,120,32,34,43,40,116,46,101,113,117,97,108,40,101,41,63,101,58,34,116,114,97,110,115,112,97,114,101,110,116,34,41,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,104,97,110,100,108,101,114,67,108,105,99,107,40,101,41,125,125,125,41,125,41,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,116,119,105,116,116,101,114,45,104,97,115,104,34,125,44,91,116,46,95,118,40,34,35,34,41,93,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,101,100,105,116,97,98,108,101,45,105,110,112,117,116,34,44,123,97,116,116,114,115,58,123,108,97,98,101,108,58,34,35,34,44,118,97,108,117,101,58,116,46,104,101,120,125,44,111,110,58,123,99,104,97,110,103,101,58,116,46,105,110,112,117,116,67,104,97,110,103,101,125,125,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,99,45,116,119,105,116,116,101,114,45,99,108,101,97,114,34,125,41,93,44,50,41,93,41,125,44,105,61,91,93,59,114,46,95,119,105,116,104,83,116,114,105,112,112,101,100,61,33,48,59,118,97,114,32,111,61,123,114,101,110,100,101,114,58,114,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,105,125,59,101,46,97,61,111,125,93,41,125,41,41,125,44,55,49,53,50,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,10,47,42,33,10,32,42,32,118,117,101,45,105,49,56,110,32,118,56,46,50,52,46,52,32,10,32,42,32,40,99,41,32,50,48,50,49,32,107,97,122,117,121,97,32,107,97,119,97,103,117,99,104,105,10,32,42,32,82,101,108,101,97,115,101,100,32,117,110,100,101,114,32,116,104,101,32,77,73,84,32,76,105,99,101,110,115,101,46,10,32,42,47,118,97,114,32,110,61,91,34,99,111,109,112,97,99,116,68,105,115,112,108,97,121,34,44,34,99,117,114,114,101,110,99,121,34,44,34,99,117,114,114,101,110,99,121,68,105,115,112,108,97,121,34,44,34,99,117,114,114,101,110,99,121,83,105,103,110,34,44,34,108,111,99,97,108,101,77,97,116,99,104,101,114,34,44,34,110,111,116,97,116,105,111,110,34,44,34,110,117,109,98,101,114,105,110,103,83,121,115,116,101,109,34,44,34,115,105,103,110,68,105,115,112,108,97,121,34,44,34,115,116,121,108,101,34,44,34,117,110,105,116,34,44,34,117,110,105,116,68,105,115,112,108,97,121,34,44,34,117,115,101,71,114,111,117,112,105,110,103,34,44,34,109,105,110,105,109,117,109,73,110,116,101,103,101,114,68,105,103,105,116,115,34,44,34,109,105,110,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,34,44,34,109,97,120,105,109,117,109,70,114,97,99,116,105,111,110,68,105,103,105,116,115,34,44,34,109,105,110,105,109,117,109,83,105,103,110,105,102,105,99,97,110,116,68,105,103,105,116,115,34,44,34,109,97,120,105,109,117,109,83,105,103,110,105,102,105,99,97,110,116,68,105,103,105,116,115,34,93,59,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,99,111,110,115,111,108,101,38,38,40,99,111,110,115,111,108,101,46,119,97,114,110,40,34,91,118,117,101,45,105,49,56,110,93,32,34,43,116,41,44,101,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,101,46,115,116,97,99,107,41,41,125,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,99,111,110,115,111,108,101,38,38,40,99,111,110,115,111,108,101,46,101,114,114,111,114,40,34,91,118,117,101,45,105,49,56,110,93,32,34,43,116,41,44,101,38,38,99,111,110,115,111,108,101,46,101,114,114,111,114,40,101,46,115,116,97,99,107,41,41,125,118,97,114,32,111,61,65,114,114,97,121,46,105,115,65,114,114,97,121,59,102,117,110,99,116,105,111,110,32,97,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,125,102,117,110,99,116,105,111,110,32,115,40,116,41,123,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,61,116,121,112,101,111,102,32,116,125,102,117,110,99,116,105,111,110,32,99,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,125,118,97,114,32,117,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,44,108,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,59,102,117,110,99,116,105,111,110,32,102,40,116,41,123,114,101,116,117,114,110,32,117,46,99,97,108,108,40,116,41,61,61,61,108,125,102,117,110,99,116,105,111,110,32,104,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,116,124,124,118,111,105,100,32,48,61,61,61,116,125,102,117,110,99,116,105,111,110,32,100,40,116,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,125,102,117,110,99,116,105,111,110,32,112,40,41,123,118,97,114,32,116,61,91,93,44,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,119,104,105,108,101,40,101,45,45,41,116,91,101,93,61,97,114,103,117,109,101,110,116,115,91,101,93,59,118,97,114,32,110,61,110,117,108,108,44,114,61,110,117,108,108,59,114,101,116,117,114,110,32,49,61,61,61,116,46,108,101,110,103,116,104,63,97,40,116,91,48,93,41,124,124,111,40,116,91,48,93,41,63,114,61,116,91,48,93,58,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,91,48,93,38,38,40,110,61,116,91,48,93,41,58,50,61,61,61,116,46,108,101,110,103,116,104,38,38,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,91,48,93,38,38,40,110,61,116,91,48,93,41,44,40,97,40,116,91,49,93,41,124,124,111,40,116,91,49,93,41,41,38,38,40,114,61,116,91,49,93,41,41,44,123,108,111,99,97,108,101,58,110,44,112,97,114,97,109,115,58,114,125,125,102,117,110,99,116,105,111,110,32,118,40,116,41,123,114,101,116,117,114,110,32,74,83,79,78,46,112,97,114,115,101,40,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,41,41,125,102,117,110,99,116,105,111,110,32,103,40,116,44,101,41,123,105,102,40,116,46,100,101,108,101,116,101,40,101,41,41,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,109,40,116,44,101,41,123,114,101,116,117,114,110,33,33,126,116,46,105,110,100,101,120,79,102,40,101,41,125,118,97,114,32,98,61,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,59,102,117,110,99,116,105,111,110,32,121,40,116,44,101,41,123,114,101,116,117,114,110,32,98,46,99,97,108,108,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,119,40,116,41,123,102,111,114,40,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,44,110,61,79,98,106,101,99,116,40,116,41,44,114,61,49,59,114,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,114,43,43,41,123,118,97,114,32,105,61,101,91,114,93,59,105,102,40,118,111,105,100,32,48,33,61,61,105,38,38,110,117,108,108,33,61,61,105,41,123,118,97,114,32,111,61,118,111,105,100,32,48,59,102,111,114,40,111,32,105,110,32,105,41,121,40,105,44,111,41,38,38,40,97,40,105,91,111,93,41,63,110,91,111,93,61,119,40,110,91,111,93,44,105,91,111,93,41,58,110,91,111,93,61,105,91,111,93,41,125,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,95,40,116,44,101,41,123,105,102,40,116,61,61,61,101,41,114,101,116,117,114,110,33,48,59,118,97,114,32,110,61,97,40,116,41,44,114,61,97,40,101,41,59,105,102,40,33,110,124,124,33,114,41,114,101,116,117,114,110,33,110,38,38,33,114,38,38,83,116,114,105,110,103,40,116,41,61,61,61,83,116,114,105,110,103,40,101,41,59,116,114,121,123,118,97,114,32,105,61,111,40,116,41,44,115,61,111,40,101,41,59,105,102,40,105,38,38,115,41,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,61,61,61,101,46,108,101,110,103,116,104,38,38,116,46,101,118,101,114,121,40,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,95,40,116,44,101,91,110,93,41,125,41,41,59,105,102,40,105,124,124,115,41,114,101,116,117,114,110,33,49,59,118,97,114,32,99,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,44,117,61,79,98,106,101,99,116,46,107,101,121,115,40,101,41,59,114,101,116,117,114,110,32,99,46,108,101,110,103,116,104,61,61,61,117,46,108,101,110,103,116,104,38,38,99,46,101,118,101,114,121,40,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,95,40,116,91,110,93,44,101,91,110,93,41,125,41,41,125,99,97,116,99,104,40,108,41,123,114,101,116,117,114,110,33,49,125,125,102,117,110,99,116,105,111,110,32,120,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,47,60,47,103,44,34,38,108,116,59,34,41,46,114,101,112,108,97,99,101,40,47,62,47,103,44,34,38,103,116,59,34,41,46,114,101,112,108,97,99,101,40,47,34,47,103,44,34,38,113,117,111,116,59,34,41,46,114,101,112,108,97,99,101,40,47,39,47,103,44,34,38,97,112,111,115,59,34,41,125,102,117,110,99,116,105,111,110,32,79,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,116,38,38,79,98,106,101,99,116,46,107,101,121,115,40,116,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,91,101,93,38,38,40,116,91,101,93,61,120,40,116,91,101,93,41,41,125,41,41,44,116,125,102,117,110,99,116,105,111,110,32,83,40,116,41,123,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,40,34,36,105,49,56,110,34,41,124,124,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,46,112,114,111,116,111,116,121,112,101,44,34,36,105,49,56,110,34,44,123,103,101,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,95,105,49,56,110,125,125,41,44,116,46,112,114,111,116,111,116,121,112,101,46,36,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,91,93,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,49,59,119,104,105,108,101,40,110,45,45,32,62,48,41,101,91,110,93,61,97,114,103,117,109,101,110,116,115,91,110,43,49,93,59,118,97,114,32,114,61,116,104,105,115,46,36,105,49,56,110,59,114,101,116,117,114,110,32,114,46,95,116,46,97,112,112,108,121,40,114,44,91,116,44,114,46,108,111,99,97,108,101,44,114,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,116,104,105,115,93,46,99,111,110,99,97,116,40,101,41,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,36,116,99,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,91,93,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,50,59,119,104,105,108,101,40,114,45,45,32,62,48,41,110,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,43,50,93,59,118,97,114,32,105,61,116,104,105,115,46,36,105,49,56,110,59,114,101,116,117,114,110,32,105,46,95,116,99,46,97,112,112,108,121,40,105,44,91,116,44,105,46,108,111,99,97,108,101,44,105,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,116,104,105,115,44,101,93,46,99,111,110,99,97,116,40,110,41,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,36,116,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,36,105,49,56,110,59,114,101,116,117,114,110,32,110,46,95,116,101,40,116,44,110,46,108,111,99,97,108,101,44,110,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,36,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,91,93,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,49,59,119,104,105,108,101,40,114,45,45,32,62,48,41,110,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,43,49,93,59,114,101,116,117,114,110,40,101,61,116,104,105,115,46,36,105,49,56,110,41,46,100,46,97,112,112,108,121,40,101,44,91,116,93,46,99,111,110,99,97,116,40,110,41,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,36,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,91,93,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,49,59,119,104,105,108,101,40,114,45,45,32,62,48,41,110,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,43,49,93,59,114,101,116,117,114,110,40,101,61,116,104,105,115,46,36,105,49,56,110,41,46,110,46,97,112,112,108,121,40,101,44,91,116,93,46,99,111,110,99,97,116,40,110,41,41,125,125,118,97,114,32,107,61,123,98,101,102,111,114,101,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,111,112,116,105,111,110,115,59,105,102,40,116,46,105,49,56,110,61,116,46,105,49,56,110,124,124,40,116,46,95,95,105,49,56,110,63,123,125,58,110,117,108,108,41,44,116,46,105,49,56,110,41,105,102,40,116,46,105,49,56,110,32,105,110,115,116,97,110,99,101,111,102,32,79,116,41,123,105,102,40,116,46,95,95,105,49,56,110,41,116,114,121,123,118,97,114,32,101,61,116,46,105,49,56,110,38,38,116,46,105,49,56,110,46,109,101,115,115,97,103,101,115,63,116,46,105,49,56,110,46,109,101,115,115,97,103,101,115,58,123,125,59,116,46,95,95,105,49,56,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,101,61,119,40,101,44,74,83,79,78,46,112,97,114,115,101,40,116,41,41,125,41,41,44,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,116,46,105,49,56,110,46,109,101,114,103,101,76,111,99,97,108,101,77,101,115,115,97,103,101,40,110,44,101,91,110,93,41,125,41,41,125,99,97,116,99,104,40,97,41,123,48,125,116,104,105,115,46,95,105,49,56,110,61,116,46,105,49,56,110,44,116,104,105,115,46,95,105,49,56,110,87,97,116,99,104,101,114,61,116,104,105,115,46,95,105,49,56,110,46,119,97,116,99,104,73,49,56,110,68,97,116,97,40,41,125,101,108,115,101,32,105,102,40,102,40,116,46,105,49,56,110,41,41,123,118,97,114,32,110,61,116,104,105,115,46,36,114,111,111,116,38,38,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,38,38,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,32,105,110,115,116,97,110,99,101,111,102,32,79,116,63,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,58,110,117,108,108,59,105,102,40,110,38,38,40,116,46,105,49,56,110,46,114,111,111,116,61,116,104,105,115,46,36,114,111,111,116,44,116,46,105,49,56,110,46,102,111,114,109,97,116,116,101,114,61,110,46,102,111,114,109,97,116,116,101,114,44,116,46,105,49,56,110,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,61,110,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,44,116,46,105,49,56,110,46,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,61,110,46,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,44,116,46,105,49,56,110,46,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,61,110,46,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,44,116,46,105,49,56,110,46,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,61,110,46,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,44,116,46,105,49,56,110,46,112,108,117,114,97,108,105,122,97,116,105,111,110,82,117,108,101,115,61,110,46,112,108,117,114,97,108,105,122,97,116,105,111,110,82,117,108,101,115,44,116,46,105,49,56,110,46,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,61,110,46,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,41,44,116,46,95,95,105,49,56,110,41,116,114,121,123,118,97,114,32,114,61,116,46,105,49,56,110,38,38,116,46,105,49,56,110,46,109,101,115,115,97,103,101,115,63,116,46,105,49,56,110,46,109,101,115,115,97,103,101,115,58,123,125,59,116,46,95,95,105,49,56,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,61,119,40,114,44,74,83,79,78,46,112,97,114,115,101,40,116,41,41,125,41,41,44,116,46,105,49,56,110,46,109,101,115,115,97,103,101,115,61,114,125,99,97,116,99,104,40,97,41,123,48,125,118,97,114,32,105,61,116,46,105,49,56,110,44,111,61,105,46,115,104,97,114,101,100,77,101,115,115,97,103,101,115,59,111,38,38,102,40,111,41,38,38,40,116,46,105,49,56,110,46,109,101,115,115,97,103,101,115,61,119,40,116,46,105,49,56,110,46,109,101,115,115,97,103,101,115,44,111,41,41,44,116,104,105,115,46,95,105,49,56,110,61,110,101,119,32,79,116,40,116,46,105,49,56,110,41,44,116,104,105,115,46,95,105,49,56,110,87,97,116,99,104,101,114,61,116,104,105,115,46,95,105,49,56,110,46,119,97,116,99,104,73,49,56,110,68,97,116,97,40,41,44,40,118,111,105,100,32,48,61,61,61,116,46,105,49,56,110,46,115,121,110,99,124,124,116,46,105,49,56,110,46,115,121,110,99,41,38,38,40,116,104,105,115,46,95,108,111,99,97,108,101,87,97,116,99,104,101,114,61,116,104,105,115,46,36,105,49,56,110,46,119,97,116,99,104,76,111,99,97,108,101,40,41,41,44,110,38,38,110,46,111,110,67,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,67,114,101,97,116,101,100,40,116,104,105,115,46,95,105,49,56,110,41,125,101,108,115,101,32,48,59,101,108,115,101,32,116,104,105,115,46,36,114,111,111,116,38,38,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,38,38,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,32,105,110,115,116,97,110,99,101,111,102,32,79,116,63,116,104,105,115,46,95,105,49,56,110,61,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,58,116,46,112,97,114,101,110,116,38,38,116,46,112,97,114,101,110,116,46,36,105,49,56,110,38,38,116,46,112,97,114,101,110,116,46,36,105,49,56,110,32,105,110,115,116,97,110,99,101,111,102,32,79,116,38,38,40,116,104,105,115,46,95,105,49,56,110,61,116,46,112,97,114,101,110,116,46,36,105,49,56,110,41,125,44,98,101,102,111,114,101,77,111,117,110,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,111,112,116,105,111,110,115,59,116,46,105,49,56,110,61,116,46,105,49,56,110,124,124,40,116,46,95,95,105,49,56,110,63,123,125,58,110,117,108,108,41,44,116,46,105,49,56,110,63,40,116,46,105,49,56,110,32,105,110,115,116,97,110,99,101,111,102,32,79,116,124,124,102,40,116,46,105,49,56,110,41,41,38,38,40,116,104,105,115,46,95,105,49,56,110,46,115,117,98,115,99,114,105,98,101,68,97,116,97,67,104,97,110,103,105,110,103,40,116,104,105,115,41,44,116,104,105,115,46,95,115,117,98,115,99,114,105,98,105,110,103,61,33,48,41,58,40,116,104,105,115,46,36,114,111,111,116,38,38,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,38,38,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,32,105,110,115,116,97,110,99,101,111,102,32,79,116,124,124,116,46,112,97,114,101,110,116,38,38,116,46,112,97,114,101,110,116,46,36,105,49,56,110,38,38,116,46,112,97,114,101,110,116,46,36,105,49,56,110,32,105,110,115,116,97,110,99,101,111,102,32,79,116,41,38,38,40,116,104,105,115,46,95,105,49,56,110,46,115,117,98,115,99,114,105,98,101,68,97,116,97,67,104,97,110,103,105,110,103,40,116,104,105,115,41,44,116,104,105,115,46,95,115,117,98,115,99,114,105,98,105,110,103,61,33,48,41,125,44,109,111,117,110,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,33,61,61,116,104,105,115,46,36,114,111,111,116,38,38,116,104,105,115,46,36,111,112,116,105,111,110,115,46,95,95,73,78,84,76,73,70,89,95,77,69,84,65,95,95,38,38,116,104,105,115,46,36,101,108,38,38,116,104,105,115,46,36,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,105,110,116,108,105,102,121,34,44,116,104,105,115,46,36,111,112,116,105,111,110,115,46,95,95,73,78,84,76,73,70,89,95,77,69,84,65,95,95,41,125,44,98,101,102,111,114,101,68,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,95,105,49,56,110,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,115,117,98,115,99,114,105,98,105,110,103,38,38,40,116,46,95,105,49,56,110,46,117,110,115,117,98,115,99,114,105,98,101,68,97,116,97,67,104,97,110,103,105,110,103,40,116,41,44,100,101,108,101,116,101,32,116,46,95,115,117,98,115,99,114,105,98,105,110,103,41,44,116,46,95,105,49,56,110,87,97,116,99,104,101,114,38,38,40,116,46,95,105,49,56,110,87,97,116,99,104,101,114,40,41,44,116,46,95,105,49,56,110,46,100,101,115,116,114,111,121,86,77,40,41,44,100,101,108,101,116,101,32,116,46,95,105,49,56,110,87,97,116,99,104,101,114,41,44,116,46,95,108,111,99,97,108,101,87,97,116,99,104,101,114,38,38,40,116,46,95,108,111,99,97,108,101,87,97,116,99,104,101,114,40,41,44,100,101,108,101,116,101,32,116,46,95,108,111,99,97,108,101,87,97,116,99,104,101,114,41,125,41,41,125,125,125,44,67,61,123,110,97,109,101,58,34,105,49,56,110,34,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,123,116,97,103,58,123,116,121,112,101,58,91,83,116,114,105,110,103,44,66,111,111,108,101,97,110,44,79,98,106,101,99,116,93,44,100,101,102,97,117,108,116,58,34,115,112,97,110,34,125,44,112,97,116,104,58,123,116,121,112,101,58,83,116,114,105,110,103,44,114,101,113,117,105,114,101,100,58,33,48,125,44,108,111,99,97,108,101,58,123,116,121,112,101,58,83,116,114,105,110,103,125,44,112,108,97,99,101,115,58,123,116,121,112,101,58,91,65,114,114,97,121,44,79,98,106,101,99,116,93,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,100,97,116,97,44,114,61,101,46,112,97,114,101,110,116,44,105,61,101,46,112,114,111,112,115,44,111,61,101,46,115,108,111,116,115,44,97,61,114,46,36,105,49,56,110,59,105,102,40,97,41,123,118,97,114,32,115,61,105,46,112,97,116,104,44,99,61,105,46,108,111,99,97,108,101,44,117,61,105,46,112,108,97,99,101,115,44,108,61,111,40,41,44,102,61,97,46,105,40,115,44,99,44,80,40,108,41,124,124,117,63,84,40,108,46,100,101,102,97,117,108,116,44,117,41,58,108,41,44,104,61,105,46,116,97,103,38,38,33,48,33,61,61,105,46,116,97,103,124,124,33,49,61,61,61,105,46,116,97,103,63,105,46,116,97,103,58,34,115,112,97,110,34,59,114,101,116,117,114,110,32,104,63,116,40,104,44,110,44,102,41,58,102,125,125,125,59,102,117,110,99,116,105,111,110,32,80,40,116,41,123,118,97,114,32,101,59,102,111,114,40,101,32,105,110,32,116,41,105,102,40,34,100,101,102,97,117,108,116,34,33,61,61,101,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,101,41,125,102,117,110,99,116,105,111,110,32,84,40,116,44,101,41,123,118,97,114,32,110,61,101,63,106,40,101,41,58,123,125,59,105,102,40,33,116,41,114,101,116,117,114,110,32,110,59,116,61,116,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,97,103,124,124,34,34,33,61,61,116,46,116,101,120,116,46,116,114,105,109,40,41,125,41,41,59,118,97,114,32,114,61,116,46,101,118,101,114,121,40,65,41,59,114,101,116,117,114,110,32,116,46,114,101,100,117,99,101,40,114,63,69,58,68,44,110,41,125,102,117,110,99,116,105,111,110,32,106,40,116,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,116,46,114,101,100,117,99,101,40,68,44,123,125,41,58,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,41,125,102,117,110,99,116,105,111,110,32,69,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,100,97,116,97,38,38,101,46,100,97,116,97,46,97,116,116,114,115,38,38,101,46,100,97,116,97,46,97,116,116,114,115,46,112,108,97,99,101,38,38,40,116,91,101,46,100,97,116,97,46,97,116,116,114,115,46,112,108,97,99,101,93,61,101,41,44,116,125,102,117,110,99,116,105,111,110,32,68,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,91,110,93,61,101,44,116,125,102,117,110,99,116,105,111,110,32,65,40,116,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,116,46,100,97,116,97,38,38,116,46,100,97,116,97,46,97,116,116,114,115,38,38,116,46,100,97,116,97,46,97,116,116,114,115,46,112,108,97,99,101,41,125,118,97,114,32,76,44,73,61,123,110,97,109,101,58,34,105,49,56,110,45,110,34,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,123,116,97,103,58,123,116,121,112,101,58,91,83,116,114,105,110,103,44,66,111,111,108,101,97,110,44,79,98,106,101,99,116,93,44,100,101,102,97,117,108,116,58,34,115,112,97,110,34,125,44,118,97,108,117,101,58,123,116,121,112,101,58,78,117,109,98,101,114,44,114,101,113,117,105,114,101,100,58,33,48,125,44,102,111,114,109,97,116,58,123,116,121,112,101,58,91,83,116,114,105,110,103,44,79,98,106,101,99,116,93,125,44,108,111,99,97,108,101,58,123,116,121,112,101,58,83,116,114,105,110,103,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,114,61,101,46,112,114,111,112,115,44,105,61,101,46,112,97,114,101,110,116,44,111,61,101,46,100,97,116,97,44,115,61,105,46,36,105,49,56,110,59,105,102,40,33,115,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,117,61,110,117,108,108,44,108,61,110,117,108,108,59,99,40,114,46,102,111,114,109,97,116,41,63,117,61,114,46,102,111,114,109,97,116,58,97,40,114,46,102,111,114,109,97,116,41,38,38,40,114,46,102,111,114,109,97,116,46,107,101,121,38,38,40,117,61,114,46,102,111,114,109,97,116,46,107,101,121,41,44,108,61,79,98,106,101,99,116,46,107,101,121,115,40,114,46,102,111,114,109,97,116,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,105,59,114,101,116,117,114,110,32,109,40,110,44,101,41,63,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,44,40,105,61,123,125,44,105,91,101,93,61,114,46,102,111,114,109,97,116,91,101,93,44,105,41,41,58,116,125,41,44,110,117,108,108,41,41,59,118,97,114,32,102,61,114,46,108,111,99,97,108,101,124,124,115,46,108,111,99,97,108,101,44,104,61,115,46,95,110,116,112,40,114,46,118,97,108,117,101,44,102,44,117,44,108,41,44,100,61,104,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,111,46,115,99,111,112,101,100,83,108,111,116,115,38,38,111,46,115,99,111,112,101,100,83,108,111,116,115,91,116,46,116,121,112,101,93,59,114,101,116,117,114,110,32,114,63,114,40,40,110,61,123,125,44,110,91,116,46,116,121,112,101,93,61,116,46,118,97,108,117,101,44,110,46,105,110,100,101,120,61,101,44,110,46,112,97,114,116,115,61,104,44,110,41,41,58,116,46,118,97,108,117,101,125,41,41,44,112,61,114,46,116,97,103,38,38,33,48,33,61,61,114,46,116,97,103,124,124,33,49,61,61,61,114,46,116,97,103,63,114,46,116,97,103,58,34,115,112,97,110,34,59,114,101,116,117,114,110,32,112,63,116,40,112,44,123,97,116,116,114,115,58,111,46,97,116,116,114,115,44,99,108,97,115,115,58,111,91,34,99,108,97,115,115,34,93,44,115,116,97,116,105,99,67,108,97,115,115,58,111,46,115,116,97,116,105,99,67,108,97,115,115,125,44,100,41,58,100,125,125,59,102,117,110,99,116,105,111,110,32,77,40,116,44,101,44,110,41,123,82,40,116,44,110,41,38,38,66,40,116,44,101,44,110,41,125,102,117,110,99,116,105,111,110,32,36,40,116,44,101,44,110,44,114,41,123,105,102,40,82,40,116,44,110,41,41,123,118,97,114,32,105,61,110,46,99,111,110,116,101,120,116,46,36,105,49,56,110,59,78,40,116,44,110,41,38,38,95,40,101,46,118,97,108,117,101,44,101,46,111,108,100,86,97,108,117,101,41,38,38,95,40,116,46,95,108,111,99,97,108,101,77,101,115,115,97,103,101,44,105,46,103,101,116,76,111,99,97,108,101,77,101,115,115,97,103,101,40,105,46,108,111,99,97,108,101,41,41,124,124,66,40,116,44,101,44,110,41,125,125,102,117,110,99,116,105,111,110,32,70,40,116,44,101,44,110,44,105,41,123,118,97,114,32,111,61,110,46,99,111,110,116,101,120,116,59,105,102,40,111,41,123,118,97,114,32,97,61,110,46,99,111,110,116,101,120,116,46,36,105,49,56,110,124,124,123,125,59,101,46,109,111,100,105,102,105,101,114,115,46,112,114,101,115,101,114,118,101,124,124,97,46,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,124,124,40,116,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,41,44,116,46,95,118,116,61,118,111,105,100,32,48,44,100,101,108,101,116,101,32,116,91,34,95,118,116,34,93,44,116,46,95,108,111,99,97,108,101,61,118,111,105,100,32,48,44,100,101,108,101,116,101,32,116,91,34,95,108,111,99,97,108,101,34,93,44,116,46,95,108,111,99,97,108,101,77,101,115,115,97,103,101,61,118,111,105,100,32,48,44,100,101,108,101,116,101,32,116,91,34,95,108,111,99,97,108,101,77,101,115,115,97,103,101,34,93,125,101,108,115,101,32,114,40,34,86,117,101,32,105,110,115,116,97,110,99,101,32,100,111,101,115,32,110,111,116,32,101,120,105,115,116,115,32,105,110,32,86,78,111,100,101,32,99,111,110,116,101,120,116,34,41,125,102,117,110,99,116,105,111,110,32,82,40,116,44,101,41,123,118,97,114,32,110,61,101,46,99,111,110,116,101,120,116,59,114,101,116,117,114,110,32,110,63,33,33,110,46,36,105,49,56,110,124,124,40,114,40,34,86,117,101,73,49,56,110,32,105,110,115,116,97,110,99,101,32,100,111,101,115,32,110,111,116,32,101,120,105,115,116,115,32,105,110,32,86,117,101,32,105,110,115,116,97,110,99,101,34,41,44,33,49,41,58,40,114,40,34,86,117,101,32,105,110,115,116,97,110,99,101,32,100,111,101,115,32,110,111,116,32,101,120,105,115,116,115,32,105,110,32,86,78,111,100,101,32,99,111,110,116,101,120,116,34,41,44,33,49,41,125,102,117,110,99,116,105,111,110,32,78,40,116,44,101,41,123,118,97,114,32,110,61,101,46,99,111,110,116,101,120,116,59,114,101,116,117,114,110,32,116,46,95,108,111,99,97,108,101,61,61,61,110,46,36,105,49,56,110,46,108,111,99,97,108,101,125,102,117,110,99,116,105,111,110,32,66,40,116,44,101,44,110,41,123,118,97,114,32,105,44,111,44,97,61,101,46,118,97,108,117,101,44,115,61,122,40,97,41,44,99,61,115,46,112,97,116,104,44,117,61,115,46,108,111,99,97,108,101,44,108,61,115,46,97,114,103,115,44,102,61,115,46,99,104,111,105,99,101,59,105,102,40,99,124,124,117,124,124,108,41,105,102,40,99,41,123,118,97,114,32,104,61,110,46,99,111,110,116,101,120,116,59,116,46,95,118,116,61,116,46,116,101,120,116,67,111,110,116,101,110,116,61,110,117,108,108,33,61,102,63,40,105,61,104,46,36,105,49,56,110,41,46,116,99,46,97,112,112,108,121,40,105,44,91,99,44,102,93,46,99,111,110,99,97,116,40,86,40,117,44,108,41,41,41,58,40,111,61,104,46,36,105,49,56,110,41,46,116,46,97,112,112,108,121,40,111,44,91,99,93,46,99,111,110,99,97,116,40,86,40,117,44,108,41,41,41,44,116,46,95,108,111,99,97,108,101,61,104,46,36,105,49,56,110,46,108,111,99,97,108,101,44,116,46,95,108,111,99,97,108,101,77,101,115,115,97,103,101,61,104,46,36,105,49,56,110,46,103,101,116,76,111,99,97,108,101,77,101,115,115,97,103,101,40,104,46,36,105,49,56,110,46,108,111,99,97,108,101,41,125,101,108,115,101,32,114,40,34,96,112,97,116,104,96,32,105,115,32,114,101,113,117,105,114,101,100,32,105,110,32,118,45,116,32,100,105,114,101,99,116,105,118,101,34,41,59,101,108,115,101,32,114,40,34,118,97,108,117,101,32,116,121,112,101,32,110,111,116,32,115,117,112,112,111,114,116,101,100,34,41,125,102,117,110,99,116,105,111,110,32,122,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,59,114,101,116,117,114,110,32,99,40,116,41,63,101,61,116,58,102,40,116,41,38,38,40,101,61,116,46,112,97,116,104,44,110,61,116,46,108,111,99,97,108,101,44,114,61,116,46,97,114,103,115,44,105,61,116,46,99,104,111,105,99,101,41,44,123,112,97,116,104,58,101,44,108,111,99,97,108,101,58,110,44,97,114,103,115,58,114,44,99,104,111,105,99,101,58,105,125,125,102,117,110,99,116,105,111,110,32,86,40,116,44,101,41,123,118,97,114,32,110,61,91,93,59,114,101,116,117,114,110,32,116,38,38,110,46,112,117,115,104,40,116,41,44,101,38,38,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,124,124,102,40,101,41,41,38,38,110,46,112,117,115,104,40,101,41,44,110,125,102,117,110,99,116,105,111,110,32,72,40,116,41,123,72,46,105,110,115,116,97,108,108,101,100,61,33,48,44,76,61,116,59,76,46,118,101,114,115,105,111,110,38,38,78,117,109,98,101,114,40,76,46,118,101,114,115,105,111,110,46,115,112,108,105,116,40,34,46,34,41,91,48,93,41,59,83,40,76,41,44,76,46,109,105,120,105,110,40,107,41,44,76,46,100,105,114,101,99,116,105,118,101,40,34,116,34,44,123,98,105,110,100,58,77,44,117,112,100,97,116,101,58,36,44,117,110,98,105,110,100,58,70,125,41,44,76,46,99,111,109,112,111,110,101,110,116,40,67,46,110,97,109,101,44,67,41,44,76,46,99,111,109,112,111,110,101,110,116,40,73,46,110,97,109,101,44,73,41,59,118,97,114,32,101,61,76,46,99,111,110,102,105,103,46,111,112,116,105,111,110,77,101,114,103,101,83,116,114,97,116,101,103,105,101,115,59,101,46,105,49,56,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,63,116,58,101,125,125,118,97,114,32,85,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,97,99,104,101,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,125,59,85,46,112,114,111,116,111,116,121,112,101,46,105,110,116,101,114,112,111,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,101,41,114,101,116,117,114,110,91,116,93,59,118,97,114,32,110,61,116,104,105,115,46,95,99,97,99,104,101,115,91,116,93,59,114,101,116,117,114,110,32,110,124,124,40,110,61,113,40,116,41,44,116,104,105,115,46,95,99,97,99,104,101,115,91,116,93,61,110,41,44,89,40,110,44,101,41,125,59,118,97,114,32,87,61,47,94,40,63,58,92,100,41,43,47,44,71,61,47,94,40,63,58,92,119,41,43,47,59,102,117,110,99,116,105,111,110,32,113,40,116,41,123,118,97,114,32,101,61,91,93,44,110,61,48,44,114,61,34,34,59,119,104,105,108,101,40,110,60,116,46,108,101,110,103,116,104,41,123,118,97,114,32,105,61,116,91,110,43,43,93,59,105,102,40,34,123,34,61,61,61,105,41,123,114,38,38,101,46,112,117,115,104,40,123,116,121,112,101,58,34,116,101,120,116,34,44,118,97,108,117,101,58,114,125,41,44,114,61,34,34,59,118,97,114,32,111,61,34,34,59,105,61,116,91,110,43,43,93,59,119,104,105,108,101,40,118,111,105,100,32,48,33,61,61,105,38,38,34,125,34,33,61,61,105,41,111,43,61,105,44,105,61,116,91,110,43,43,93,59,118,97,114,32,97,61,34,125,34,61,61,61,105,44,115,61,87,46,116,101,115,116,40,111,41,63,34,108,105,115,116,34,58,97,38,38,71,46,116,101,115,116,40,111,41,63,34,110,97,109,101,100,34,58,34,117,110,107,110,111,119,110,34,59,101,46,112,117,115,104,40,123,118,97,108,117,101,58,111,44,116,121,112,101,58,115,125,41,125,101,108,115,101,34,37,34,61,61,61,105,63,34,123,34,33,61,61,116,91,110,93,38,38,40,114,43,61,105,41,58,114,43,61,105,125,114,101,116,117,114,110,32,114,38,38,101,46,112,117,115,104,40,123,116,121,112,101,58,34,116,101,120,116,34,44,118,97,108,117,101,58,114,125,41,44,101,125,102,117,110,99,116,105,111,110,32,89,40,116,44,101,41,123,118,97,114,32,110,61,91,93,44,114,61,48,44,105,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,63,34,108,105,115,116,34,58,97,40,101,41,63,34,110,97,109,101,100,34,58,34,117,110,107,110,111,119,110,34,59,105,102,40,34,117,110,107,110,111,119,110,34,61,61,61,105,41,114,101,116,117,114,110,32,110,59,119,104,105,108,101,40,114,60,116,46,108,101,110,103,116,104,41,123,118,97,114,32,111,61,116,91,114,93,59,115,119,105,116,99,104,40,111,46,116,121,112,101,41,123,99,97,115,101,34,116,101,120,116,34,58,110,46,112,117,115,104,40,111,46,118,97,108,117,101,41,59,98,114,101,97,107,59,99,97,115,101,34,108,105,115,116,34,58,110,46,112,117,115,104,40,101,91,112,97,114,115,101,73,110,116,40,111,46,118,97,108,117,101,44,49,48,41,93,41,59,98,114,101,97,107,59,99,97,115,101,34,110,97,109,101,100,34,58,34,110,97,109,101,100,34,61,61,61,105,38,38,110,46,112,117,115,104,40,101,91,111,46,118,97,108,117,101,93,41,59,98,114,101,97,107,59,99,97,115,101,34,117,110,107,110,111,119,110,34,58,48,59,98,114,101,97,107,125,114,43,43,125,114,101,116,117,114,110,32,110,125,118,97,114,32,75,61,48,44,88,61,49,44,90,61,50,44,74,61,51,44,81,61,48,44,116,116,61,49,44,101,116,61,50,44,110,116,61,51,44,114,116,61,52,44,105,116,61,53,44,111,116,61,54,44,97,116,61,55,44,115,116,61,56,44,99,116,61,91,93,59,99,116,91,81,93,61,123,119,115,58,91,81,93,44,105,100,101,110,116,58,91,110,116,44,75,93,44,34,91,34,58,91,114,116,93,44,101,111,102,58,91,97,116,93,125,44,99,116,91,116,116,93,61,123,119,115,58,91,116,116,93,44,34,46,34,58,91,101,116,93,44,34,91,34,58,91,114,116,93,44,101,111,102,58,91,97,116,93,125,44,99,116,91,101,116,93,61,123,119,115,58,91,101,116,93,44,105,100,101,110,116,58,91,110,116,44,75,93,44,48,58,91,110,116,44,75,93,44,110,117,109,98,101,114,58,91,110,116,44,75,93,125,44,99,116,91,110,116,93,61,123,105,100,101,110,116,58,91,110,116,44,75,93,44,48,58,91,110,116,44,75,93,44,110,117,109,98,101,114,58,91,110,116,44,75,93,44,119,115,58,91,116,116,44,88,93,44,34,46,34,58,91,101,116,44,88,93,44,34,91,34,58,91,114,116,44,88,93,44,101,111,102,58,91,97,116,44,88,93,125,44,99,116,91,114,116,93,61,123,34,39,34,58,91,105,116,44,75,93,44,39,34,39,58,91,111,116,44,75,93,44,34,91,34,58,91,114,116,44,90,93,44,34,93,34,58,91,116,116,44,74,93,44,101,111,102,58,115,116,44,101,108,115,101,58,91,114,116,44,75,93,125,44,99,116,91,105,116,93,61,123,34,39,34,58,91,114,116,44,75,93,44,101,111,102,58,115,116,44,101,108,115,101,58,91,105,116,44,75,93,125,44,99,116,91,111,116,93,61,123,39,34,39,58,91,114,116,44,75,93,44,101,111,102,58,115,116,44,101,108,115,101,58,91,111,116,44,75,93,125,59,118,97,114,32,117,116,61,47,94,92,115,63,40,63,58,116,114,117,101,124,102,97,108,115,101,124,45,63,91,92,100,46,93,43,124,39,91,94,39,93,42,39,124,34,91,94,34,93,42,34,41,92,115,63,36,47,59,102,117,110,99,116,105,111,110,32,108,116,40,116,41,123,114,101,116,117,114,110,32,117,116,46,116,101,115,116,40,116,41,125,102,117,110,99,116,105,111,110,32,102,116,40,116,41,123,118,97,114,32,101,61,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,44,110,61,116,46,99,104,97,114,67,111,100,101,65,116,40,116,46,108,101,110,103,116,104,45,49,41,59,114,101,116,117,114,110,32,101,33,61,61,110,124,124,51,52,33,61,61,101,38,38,51,57,33,61,61,101,63,116,58,116,46,115,108,105,99,101,40,49,44,45,49,41,125,102,117,110,99,116,105,111,110,32,104,116,40,116,41,123,105,102,40,118,111,105,100,32,48,61,61,61,116,124,124,110,117,108,108,61,61,61,116,41,114,101,116,117,114,110,34,101,111,102,34,59,118,97,114,32,101,61,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,59,115,119,105,116,99,104,40,101,41,123,99,97,115,101,32,57,49,58,99,97,115,101,32,57,51,58,99,97,115,101,32,52,54,58,99,97,115,101,32,51,52,58,99,97,115,101,32,51,57,58,114,101,116,117,114,110,32,116,59,99,97,115,101,32,57,53,58,99,97,115,101,32,51,54,58,99,97,115,101,32,52,53,58,114,101,116,117,114,110,34,105,100,101,110,116,34,59,99,97,115,101,32,57,58,99,97,115,101,32,49,48,58,99,97,115,101,32,49,51,58,99,97,115,101,32,49,54,48,58,99,97,115,101,32,54,53,50,55,57,58,99,97,115,101,32,56,50,51,50,58,99,97,115,101,32,56,50,51,51,58,114,101,116,117,114,110,34,119,115,34,125,114,101,116,117,114,110,34,105,100,101,110,116,34,125,102,117,110,99,116,105,111,110,32,100,116,40,116,41,123,118,97,114,32,101,61,116,46,116,114,105,109,40,41,59,114,101,116,117,114,110,40,34,48,34,33,61,61,116,46,99,104,97,114,65,116,40,48,41,124,124,33,105,115,78,97,78,40,116,41,41,38,38,40,108,116,40,101,41,63,102,116,40,101,41,58,34,42,34,43,101,41,125,102,117,110,99,116,105,111,110,32,112,116,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,44,111,44,97,44,115,44,99,61,91,93,44,117,61,45,49,44,108,61,81,44,102,61,48,44,104,61,91,93,59,102,117,110,99,116,105,111,110,32,100,40,41,123,118,97,114,32,101,61,116,91,117,43,49,93,59,105,102,40,108,61,61,61,105,116,38,38,34,39,34,61,61,61,101,124,124,108,61,61,61,111,116,38,38,39,34,39,61,61,61,101,41,114,101,116,117,114,110,32,117,43,43,44,114,61,34,92,92,34,43,101,44,104,91,75,93,40,41,44,33,48,125,104,91,88,93,61,102,117,110,99,116,105,111,110,40,41,123,118,111,105,100,32,48,33,61,61,110,38,38,40,99,46,112,117,115,104,40,110,41,44,110,61,118,111,105,100,32,48,41,125,44,104,91,75,93,61,102,117,110,99,116,105,111,110,40,41,123,118,111,105,100,32,48,61,61,61,110,63,110,61,114,58,110,43,61,114,125,44,104,91,90,93,61,102,117,110,99,116,105,111,110,40,41,123,104,91,75,93,40,41,44,102,43,43,125,44,104,91,74,93,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,102,62,48,41,102,45,45,44,108,61,114,116,44,104,91,75,93,40,41,59,101,108,115,101,123,105,102,40,102,61,48,44,118,111,105,100,32,48,61,61,61,110,41,114,101,116,117,114,110,33,49,59,105,102,40,110,61,100,116,40,110,41,44,33,49,61,61,61,110,41,114,101,116,117,114,110,33,49,59,104,91,88,93,40,41,125,125,59,119,104,105,108,101,40,110,117,108,108,33,61,61,108,41,105,102,40,117,43,43,44,101,61,116,91,117,93,44,34,92,92,34,33,61,61,101,124,124,33,100,40,41,41,123,105,102,40,105,61,104,116,40,101,41,44,115,61,99,116,91,108,93,44,111,61,115,91,105,93,124,124,115,91,34,101,108,115,101,34,93,124,124,115,116,44,111,61,61,61,115,116,41,114,101,116,117,114,110,59,105,102,40,108,61,111,91,48,93,44,97,61,104,91,111,91,49,93,93,44,97,38,38,40,114,61,111,91,50,93,44,114,61,118,111,105,100,32,48,61,61,61,114,63,101,58,114,44,33,49,61,61,61,97,40,41,41,41,114,101,116,117,114,110,59,105,102,40,108,61,61,61,97,116,41,114,101,116,117,114,110,32,99,125,125,118,97,114,32,118,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,97,99,104,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,125,59,118,116,46,112,114,111,116,111,116,121,112,101,46,112,97,114,115,101,80,97,116,104,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,99,97,99,104,101,91,116,93,59,114,101,116,117,114,110,32,101,124,124,40,101,61,112,116,40,116,41,44,101,38,38,40,116,104,105,115,46,95,99,97,99,104,101,91,116,93,61,101,41,41,44,101,124,124,91,93,125,44,118,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,80,97,116,104,86,97,108,117,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,97,40,116,41,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,110,61,116,104,105,115,46,112,97,114,115,101,80,97,116,104,40,101,41,59,105,102,40,48,61,61,61,110,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,114,61,110,46,108,101,110,103,116,104,44,105,61,116,44,111,61,48,59,119,104,105,108,101,40,111,60,114,41,123,118,97,114,32,115,61,105,91,110,91,111,93,93,59,105,102,40,118,111,105,100,32,48,61,61,61,115,124,124,110,117,108,108,61,61,61,115,41,114,101,116,117,114,110,32,110,117,108,108,59,105,61,115,44,111,43,43,125,114,101,116,117,114,110,32,105,125,59,118,97,114,32,103,116,44,109,116,61,47,60,92,47,63,91,92,119,92,115,61,34,47,46,39,58,59,35,45,92,47,93,43,62,47,44,98,116,61,47,40,63,58,64,40,63,58,92,46,91,97,45,122,93,43,41,63,58,40,63,58,91,92,119,92,45,95,124,46,93,43,124,92,40,91,92,119,92,45,95,124,46,93,43,92,41,41,41,47,103,44,121,116,61,47,94,64,40,63,58,92,46,40,91,97,45,122,93,43,41,41,63,58,47,44,119,116,61,47,91,40,41,93,47,103,44,95,116,61,123,117,112,112,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,111,76,111,99,97,108,101,85,112,112,101,114,67,97,115,101,40,41,125,44,108,111,119,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,111,76,111,99,97,108,101,76,111,119,101,114,67,97,115,101,40,41,125,44,99,97,112,105,116,97,108,105,122,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,34,43,116,46,99,104,97,114,65,116,40,48,41,46,116,111,76,111,99,97,108,101,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,117,98,115,116,114,40,49,41,125,125,44,120,116,61,110,101,119,32,85,44,79,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,123,125,41,44,33,76,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,119,105,110,100,111,119,46,86,117,101,38,38,72,40,119,105,110,100,111,119,46,86,117,101,41,59,118,97,114,32,110,61,116,46,108,111,99,97,108,101,124,124,34,101,110,45,85,83,34,44,114,61,33,49,33,61,61,116,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,38,38,40,116,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,124,124,34,101,110,45,85,83,34,41,44,105,61,116,46,109,101,115,115,97,103,101,115,124,124,123,125,44,111,61,116,46,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,124,124,123,125,44,97,61,116,46,110,117,109,98,101,114,70,111,114,109,97,116,115,124,124,123,125,59,116,104,105,115,46,95,118,109,61,110,117,108,108,44,116,104,105,115,46,95,102,111,114,109,97,116,116,101,114,61,116,46,102,111,114,109,97,116,116,101,114,124,124,120,116,44,116,104,105,115,46,95,109,111,100,105,102,105,101,114,115,61,116,46,109,111,100,105,102,105,101,114,115,124,124,123,125,44,116,104,105,115,46,95,109,105,115,115,105,110,103,61,116,46,109,105,115,115,105,110,103,124,124,110,117,108,108,44,116,104,105,115,46,95,114,111,111,116,61,116,46,114,111,111,116,124,124,110,117,108,108,44,116,104,105,115,46,95,115,121,110,99,61,118,111,105,100,32,48,61,61,61,116,46,115,121,110,99,124,124,33,33,116,46,115,121,110,99,44,116,104,105,115,46,95,102,97,108,108,98,97,99,107,82,111,111,116,61,118,111,105,100,32,48,61,61,61,116,46,102,97,108,108,98,97,99,107,82,111,111,116,124,124,33,33,116,46,102,97,108,108,98,97,99,107,82,111,111,116,44,116,104,105,115,46,95,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,61,118,111,105,100,32,48,33,61,61,116,46,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,38,38,33,33,116,46,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,44,116,104,105,115,46,95,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,61,118,111,105,100,32,48,33,61,61,116,46,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,38,38,116,46,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,44,116,104,105,115,46,95,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,61,118,111,105,100,32,48,33,61,61,116,46,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,38,38,33,33,116,46,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,44,116,104,105,115,46,95,100,97,116,101,84,105,109,101,70,111,114,109,97,116,116,101,114,115,61,123,125,44,116,104,105,115,46,95,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,115,61,123,125,44,116,104,105,115,46,95,112,97,116,104,61,110,101,119,32,118,116,44,116,104,105,115,46,95,100,97,116,97,76,105,115,116,101,110,101,114,115,61,110,101,119,32,83,101,116,44,116,104,105,115,46,95,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,67,114,101,97,116,101,100,76,105,115,116,101,110,101,114,61,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,67,114,101,97,116,101,100,76,105,115,116,101,110,101,114,124,124,110,117,108,108,44,116,104,105,115,46,95,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,61,118,111,105,100,32,48,33,61,61,116,46,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,38,38,33,33,116,46,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,44,116,104,105,115,46,112,108,117,114,97,108,105,122,97,116,105,111,110,82,117,108,101,115,61,116,46,112,108,117,114,97,108,105,122,97,116,105,111,110,82,117,108,101,115,124,124,123,125,44,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,61,116,46,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,124,124,34,111,102,102,34,44,116,104,105,115,46,95,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,61,116,46,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,124,124,110,117,108,108,44,116,104,105,115,46,95,101,115,99,97,112,101,80,97,114,97,109,101,116,101,114,72,116,109,108,61,116,46,101,115,99,97,112,101,80,97,114,97,109,101,116,101,114,72,116,109,108,124,124,33,49,44,116,104,105,115,46,103,101,116,67,104,111,105,99,101,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,114,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,41,59,105,102,40,114,38,38,114,46,103,101,116,67,104,111,105,99,101,73,110,100,101,120,41,123,118,97,114,32,105,61,114,46,103,101,116,67,104,111,105,99,101,73,110,100,101,120,59,114,101,116,117,114,110,32,105,46,99,97,108,108,40,101,44,116,44,110,41,125,118,97,114,32,111,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,97,98,115,40,116,41,44,50,61,61,61,101,63,116,63,116,62,49,63,49,58,48,58,49,58,116,63,77,97,116,104,46,109,105,110,40,116,44,50,41,58,48,125,59,114,101,116,117,114,110,32,101,46,108,111,99,97,108,101,32,105,110,32,101,46,112,108,117,114,97,108,105,122,97,116,105,111,110,82,117,108,101,115,63,101,46,112,108,117,114,97,108,105,122,97,116,105,111,110,82,117,108,101,115,91,101,46,108,111,99,97,108,101,93,46,97,112,112,108,121,40,101,44,91,116,44,110,93,41,58,111,40,116,44,110,41,125,44,116,104,105,115,46,95,101,120,105,115,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,33,40,33,116,124,124,33,110,41,38,38,40,33,104,40,101,46,95,112,97,116,104,46,103,101,116,80,97,116,104,86,97,108,117,101,40,116,44,110,41,41,124,124,33,33,116,91,110,93,41,125,44,34,119,97,114,110,34,33,61,61,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,38,38,34,101,114,114,111,114,34,33,61,61,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,124,124,79,98,106,101,99,116,46,107,101,121,115,40,105,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,95,99,104,101,99,107,76,111,99,97,108,101,77,101,115,115,97,103,101,40,116,44,101,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,44,105,91,116,93,41,125,41,41,44,116,104,105,115,46,95,105,110,105,116,86,77,40,123,108,111,99,97,108,101,58,110,44,102,97,108,108,98,97,99,107,76,111,99,97,108,101,58,114,44,109,101,115,115,97,103,101,115,58,105,44,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,58,111,44,110,117,109,98,101,114,70,111,114,109,97,116,115,58,97,125,41,125,44,83,116,61,123,118,109,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,44,109,101,115,115,97,103,101,115,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,44,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,44,110,117,109,98,101,114,70,111,114,109,97,116,115,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,44,97,118,97,105,108,97,98,108,101,76,111,99,97,108,101,115,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,44,108,111,99,97,108,101,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,44,102,97,108,108,98,97,99,107,76,111,99,97,108,101,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,44,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,44,109,105,115,115,105,110,103,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,44,102,111,114,109,97,116,116,101,114,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,44,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,44,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,44,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,44,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,44,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,59,79,116,46,112,114,111,116,111,116,121,112,101,46,95,99,104,101,99,107,76,111,99,97,108,101,77,101,115,115,97,103,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,97,61,91,93,44,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,97,41,123,105,102,40,102,40,110,41,41,79,98,106,101,99,116,46,107,101,121,115,40,110,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,105,61,110,91,114,93,59,102,40,105,41,63,40,97,46,112,117,115,104,40,114,41,44,97,46,112,117,115,104,40,34,46,34,41,44,115,40,116,44,101,44,105,44,97,41,44,97,46,112,111,112,40,41,44,97,46,112,111,112,40,41,41,58,40,97,46,112,117,115,104,40,114,41,44,115,40,116,44,101,44,105,44,97,41,44,97,46,112,111,112,40,41,41,125,41,41,59,101,108,115,101,32,105,102,40,111,40,110,41,41,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,44,114,41,123,102,40,110,41,63,40,97,46,112,117,115,104,40,34,91,34,43,114,43,34,93,34,41,44,97,46,112,117,115,104,40,34,46,34,41,44,115,40,116,44,101,44,110,44,97,41,44,97,46,112,111,112,40,41,44,97,46,112,111,112,40,41,41,58,40,97,46,112,117,115,104,40,34,91,34,43,114,43,34,93,34,41,44,115,40,116,44,101,44,110,44,97,41,44,97,46,112,111,112,40,41,41,125,41,41,59,101,108,115,101,32,105,102,40,99,40,110,41,41,123,118,97,114,32,117,61,109,116,46,116,101,115,116,40,110,41,59,105,102,40,117,41,123,118,97,114,32,108,61,34,68,101,116,101,99,116,101,100,32,72,84,77,76,32,105,110,32,109,101,115,115,97,103,101,32,39,34,43,110,43,34,39,32,111,102,32,107,101,121,112,97,116,104,32,39,34,43,97,46,106,111,105,110,40,34,34,41,43,34,39,32,97,116,32,39,34,43,101,43,34,39,46,32,67,111,110,115,105,100,101,114,32,99,111,109,112,111,110,101,110,116,32,105,110,116,101,114,112,111,108,97,116,105,111,110,32,119,105,116,104,32,39,60,105,49,56,110,62,39,32,116,111,32,97,118,111,105,100,32,88,83,83,46,32,83,101,101,32,104,116,116,112,115,58,47,47,98,105,116,46,108,121,47,50,90,113,74,122,107,112,34,59,34,119,97,114,110,34,61,61,61,116,63,114,40,108,41,58,34,101,114,114,111,114,34,61,61,61,116,38,38,105,40,108,41,125,125,125,59,115,40,101,44,116,44,110,44,97,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,105,110,105,116,86,77,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,76,46,99,111,110,102,105,103,46,115,105,108,101,110,116,59,76,46,99,111,110,102,105,103,46,115,105,108,101,110,116,61,33,48,44,116,104,105,115,46,95,118,109,61,110,101,119,32,76,40,123,100,97,116,97,58,116,125,41,44,76,46,99,111,110,102,105,103,46,115,105,108,101,110,116,61,101,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,100,101,115,116,114,111,121,86,77,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,118,109,46,36,100,101,115,116,114,111,121,40,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,115,117,98,115,99,114,105,98,101,68,97,116,97,67,104,97,110,103,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,100,97,116,97,76,105,115,116,101,110,101,114,115,46,97,100,100,40,116,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,117,110,115,117,98,115,99,114,105,98,101,68,97,116,97,67,104,97,110,103,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,103,40,116,104,105,115,46,95,100,97,116,97,76,105,115,116,101,110,101,114,115,44,116,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,119,97,116,99,104,73,49,56,110,68,97,116,97,61,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,116,104,105,115,46,95,118,109,46,36,119,97,116,99,104,40,34,36,100,97,116,97,34,44,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,100,97,116,97,76,105,115,116,101,110,101,114,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,76,46,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,116,38,38,116,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,125,41,41,125,41,41,125,41,44,123,100,101,101,112,58,33,48,125,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,119,97,116,99,104,76,111,99,97,108,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,115,121,110,99,124,124,33,116,104,105,115,46,95,114,111,111,116,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,116,61,116,104,105,115,46,95,118,109,59,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,111,116,46,36,105,49,56,110,46,118,109,46,36,119,97,116,99,104,40,34,108,111,99,97,108,101,34,44,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,36,115,101,116,40,116,44,34,108,111,99,97,108,101,34,44,101,41,44,116,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,125,41,44,123,105,109,109,101,100,105,97,116,101,58,33,48,125,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,111,110,67,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,67,114,101,97,116,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,67,114,101,97,116,101,100,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,95,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,67,114,101,97,116,101,100,76,105,115,116,101,110,101,114,40,116,44,116,104,105,115,41,125,44,83,116,46,118,109,46,103,101,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,118,109,125,44,83,116,46,109,101,115,115,97,103,101,115,46,103,101,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,118,40,116,104,105,115,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,41,125,44,83,116,46,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,46,103,101,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,118,40,116,104,105,115,46,95,103,101,116,68,97,116,101,84,105,109,101,70,111,114,109,97,116,115,40,41,41,125,44,83,116,46,110,117,109,98,101,114,70,111,114,109,97,116,115,46,103,101,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,118,40,116,104,105,115,46,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,115,40,41,41,125,44,83,116,46,97,118,97,105,108,97,98,108,101,76,111,99,97,108,101,115,46,103,101,116,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,109,101,115,115,97,103,101,115,41,46,115,111,114,116,40,41,125,44,83,116,46,108,111,99,97,108,101,46,103,101,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,118,109,46,108,111,99,97,108,101,125,44,83,116,46,108,111,99,97,108,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,44,34,108,111,99,97,108,101,34,44,116,41,125,44,83,116,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,46,103,101,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,118,109,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,125,44,83,116,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,108,111,99,97,108,101,67,104,97,105,110,67,97,99,104,101,61,123,125,44,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,44,34,102,97,108,108,98,97,99,107,76,111,99,97,108,101,34,44,116,41,125,44,83,116,46,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,46,103,101,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,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,125,44,83,116,46,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,46,115,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,61,116,125,44,83,116,46,109,105,115,115,105,110,103,46,103,101,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,109,105,115,115,105,110,103,125,44,83,116,46,109,105,115,115,105,110,103,46,115,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,109,105,115,115,105,110,103,61,116,125,44,83,116,46,102,111,114,109,97,116,116,101,114,46,103,101,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,102,111,114,109,97,116,116,101,114,125,44,83,116,46,102,111,114,109,97,116,116,101,114,46,115,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,102,111,114,109,97,116,116,101,114,61,116,125,44,83,116,46,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,46,103,101,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,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,125,44,83,116,46,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,46,115,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,61,116,125,44,83,116,46,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,46,103,101,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,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,125,44,83,116,46,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,46,115,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,61,116,125,44,83,116,46,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,46,103,101,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,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,125,44,83,116,46,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,46,115,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,112,114,101,115,101,114,118,101,68,105,114,101,99,116,105,118,101,67,111,110,116,101,110,116,61,116,125,44,83,116,46,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,46,103,101,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,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,125,44,83,116,46,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,46,115,101,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,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,59,105,102,40,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,61,116,44,110,33,61,61,116,38,38,40,34,119,97,114,110,34,61,61,61,116,124,124,34,101,114,114,111,114,34,61,61,61,116,41,41,123,118,97,114,32,114,61,116,104,105,115,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,59,79,98,106,101,99,116,46,107,101,121,115,40,114,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,95,99,104,101,99,107,76,111,99,97,108,101,77,101,115,115,97,103,101,40,116,44,101,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,44,114,91,116,93,41,125,41,41,125,125,44,83,116,46,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,46,103,101,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,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,125,44,83,116,46,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,46,115,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,61,116,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,103,101,116,77,101,115,115,97,103,101,115,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,118,109,46,109,101,115,115,97,103,101,115,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,103,101,116,68,97,116,101,84,105,109,101,70,111,114,109,97,116,115,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,118,109,46,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,115,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,118,109,46,110,117,109,98,101,114,70,111,114,109,97,116,115,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,119,97,114,110,68,101,102,97,117,108,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,44,111,41,123,105,102,40,33,104,40,110,41,41,114,101,116,117,114,110,32,110,59,105,102,40,116,104,105,115,46,95,109,105,115,115,105,110,103,41,123,118,97,114,32,97,61,116,104,105,115,46,95,109,105,115,115,105,110,103,46,97,112,112,108,121,40,110,117,108,108,44,91,116,44,101,44,114,44,105,93,41,59,105,102,40,99,40,97,41,41,114,101,116,117,114,110,32,97,125,101,108,115,101,32,48,59,105,102,40,116,104,105,115,46,95,102,111,114,109,97,116,70,97,108,108,98,97,99,107,77,101,115,115,97,103,101,115,41,123,118,97,114,32,115,61,112,46,97,112,112,108,121,40,118,111,105,100,32,48,44,105,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,114,101,110,100,101,114,40,101,44,111,44,115,46,112,97,114,97,109,115,44,101,41,125,114,101,116,117,114,110,32,101,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,116,38,38,33,104,40,116,104,105,115,46,95,114,111,111,116,41,38,38,116,104,105,115,46,95,102,97,108,108,98,97,99,107,82,111,111,116,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,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,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,32,105,110,115,116,97,110,99,101,111,102,32,82,101,103,69,120,112,63,116,104,105,115,46,95,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,46,116,101,115,116,40,116,41,58,116,104,105,115,46,95,115,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,115,83,105,108,101,110,116,70,97,108,108,98,97,99,107,87,97,114,110,40,101,41,38,38,40,116,104,105,115,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,40,41,124,124,116,33,61,61,116,104,105,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,105,115,83,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,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,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,32,105,110,115,116,97,110,99,101,111,102,32,82,101,103,69,120,112,63,116,104,105,115,46,95,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,46,116,101,115,116,40,116,41,58,116,104,105,115,46,95,115,105,108,101,110,116,84,114,97,110,115,108,97,116,105,111,110,87,97,114,110,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,105,110,116,101,114,112,111,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,44,97,44,115,41,123,105,102,40,33,101,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,117,44,108,61,116,104,105,115,46,95,112,97,116,104,46,103,101,116,80,97,116,104,86,97,108,117,101,40,101,44,110,41,59,105,102,40,111,40,108,41,124,124,102,40,108,41,41,114,101,116,117,114,110,32,108,59,105,102,40,104,40,108,41,41,123,105,102,40,33,102,40,101,41,41,114,101,116,117,114,110,32,110,117,108,108,59,105,102,40,117,61,101,91,110,93,44,33,99,40,117,41,38,38,33,100,40,117,41,41,114,101,116,117,114,110,32,110,117,108,108,125,101,108,115,101,123,105,102,40,33,99,40,108,41,38,38,33,100,40,108,41,41,114,101,116,117,114,110,32,110,117,108,108,59,117,61,108,125,114,101,116,117,114,110,32,99,40,117,41,38,38,40,117,46,105,110,100,101,120,79,102,40,34,64,58,34,41,62,61,48,124,124,117,46,105,110,100,101,120,79,102,40,34,64,46,34,41,62,61,48,41,38,38,40,117,61,116,104,105,115,46,95,108,105,110,107,40,116,44,101,44,117,44,114,44,34,114,97,119,34,44,97,44,115,41,41,44,116,104,105,115,46,95,114,101,110,100,101,114,40,117,44,105,44,97,44,110,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,108,105,110,107,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,44,97,44,115,41,123,118,97,114,32,99,61,110,44,117,61,99,46,109,97,116,99,104,40,98,116,41,59,102,111,114,40,118,97,114,32,108,32,105,110,32,117,41,105,102,40,117,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,108,41,41,123,118,97,114,32,102,61,117,91,108,93,44,104,61,102,46,109,97,116,99,104,40,121,116,41,44,100,61,104,91,48,93,44,112,61,104,91,49,93,44,118,61,102,46,114,101,112,108,97,99,101,40,100,44,34,34,41,46,114,101,112,108,97,99,101,40,119,116,44,34,34,41,59,105,102,40,109,40,115,44,118,41,41,114,101,116,117,114,110,32,99,59,115,46,112,117,115,104,40,118,41,59,118,97,114,32,103,61,116,104,105,115,46,95,105,110,116,101,114,112,111,108,97,116,101,40,116,44,101,44,118,44,114,44,34,114,97,119,34,61,61,61,105,63,34,115,116,114,105,110,103,34,58,105,44,34,114,97,119,34,61,61,61,105,63,118,111,105,100,32,48,58,97,44,115,41,59,105,102,40,116,104,105,115,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,40,103,41,41,123,105,102,40,33,116,104,105,115,46,95,114,111,111,116,41,116,104,114,111,119,32,69,114,114,111,114,40,34,117,110,101,120,112,101,99,116,101,100,32,101,114,114,111,114,34,41,59,118,97,114,32,98,61,116,104,105,115,46,95,114,111,111,116,46,36,105,49,56,110,59,103,61,98,46,95,116,114,97,110,115,108,97,116,101,40,98,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,98,46,108,111,99,97,108,101,44,98,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,44,118,44,114,44,105,44,97,41,125,103,61,116,104,105,115,46,95,119,97,114,110,68,101,102,97,117,108,116,40,116,44,118,44,103,44,114,44,111,40,97,41,63,97,58,91,97,93,44,105,41,44,116,104,105,115,46,95,109,111,100,105,102,105,101,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,112,41,63,103,61,116,104,105,115,46,95,109,111,100,105,102,105,101,114,115,91,112,93,40,103,41,58,95,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,112,41,38,38,40,103,61,95,116,91,112,93,40,103,41,41,44,115,46,112,111,112,40,41,44,99,61,103,63,99,46,114,101,112,108,97,99,101,40,102,44,103,41,58,99,125,114,101,116,117,114,110,32,99,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,99,114,101,97,116,101,77,101,115,115,97,103,101,67,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,111,40,116,41,63,116,58,91,93,44,110,61,97,40,116,41,63,116,58,123,125,44,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,91,116,93,125,44,105,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,91,116,93,125,59,114,101,116,117,114,110,123,108,105,115,116,58,114,44,110,97,109,101,100,58,105,125,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,114,101,110,100,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,105,102,40,100,40,116,41,41,114,101,116,117,114,110,32,116,40,116,104,105,115,46,95,99,114,101,97,116,101,77,101,115,115,97,103,101,67,111,110,116,101,120,116,40,110,41,41,59,118,97,114,32,105,61,116,104,105,115,46,95,102,111,114,109,97,116,116,101,114,46,105,110,116,101,114,112,111,108,97,116,101,40,116,44,110,44,114,41,59,114,101,116,117,114,110,32,105,124,124,40,105,61,120,116,46,105,110,116,101,114,112,111,108,97,116,101,40,116,44,110,44,114,41,41,44,34,115,116,114,105,110,103,34,33,61,61,101,124,124,99,40,105,41,63,105,58,105,46,106,111,105,110,40,34,34,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,97,112,112,101,110,100,73,116,101,109,84,111,67,104,97,105,110,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,33,49,59,114,101,116,117,114,110,32,109,40,116,44,101,41,124,124,40,114,61,33,48,44,101,38,38,40,114,61,34,33,34,33,61,61,101,91,101,46,108,101,110,103,116,104,45,49,93,44,101,61,101,46,114,101,112,108,97,99,101,40,47,33,47,103,44,34,34,41,44,116,46,112,117,115,104,40,101,41,44,110,38,38,110,91,101,93,38,38,40,114,61,110,91,101,93,41,41,41,44,114,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,97,112,112,101,110,100,76,111,99,97,108,101,84,111,67,104,97,105,110,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,61,101,46,115,112,108,105,116,40,34,45,34,41,59,100,111,123,118,97,114,32,111,61,105,46,106,111,105,110,40,34,45,34,41,59,114,61,116,104,105,115,46,95,97,112,112,101,110,100,73,116,101,109,84,111,67,104,97,105,110,40,116,44,111,44,110,41,44,105,46,115,112,108,105,99,101,40,45,49,44,49,41,125,119,104,105,108,101,40,105,46,108,101,110,103,116,104,38,38,33,48,61,61,61,114,41,59,114,101,116,117,114,110,32,114,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,97,112,112,101,110,100,66,108,111,99,107,84,111,67,104,97,105,110,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,102,111,114,40,118,97,114,32,114,61,33,48,44,105,61,48,59,105,60,101,46,108,101,110,103,116,104,38,38,115,40,114,41,59,105,43,43,41,123,118,97,114,32,111,61,101,91,105,93,59,99,40,111,41,38,38,40,114,61,116,104,105,115,46,95,97,112,112,101,110,100,76,111,99,97,108,101,84,111,67,104,97,105,110,40,116,44,111,44,110,41,41,125,114,101,116,117,114,110,32,114,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,103,101,116,76,111,99,97,108,101,67,104,97,105,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,34,34,61,61,61,116,41,114,101,116,117,114,110,91,93,59,116,104,105,115,46,95,108,111,99,97,108,101,67,104,97,105,110,67,97,99,104,101,124,124,40,116,104,105,115,46,95,108,111,99,97,108,101,67,104,97,105,110,67,97,99,104,101,61,123,125,41,59,118,97,114,32,110,61,116,104,105,115,46,95,108,111,99,97,108,101,67,104,97,105,110,67,97,99,104,101,91,116,93,59,105,102,40,33,110,41,123,101,124,124,40,101,61,116,104,105,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,41,44,110,61,91,93,59,118,97,114,32,114,44,105,61,91,116,93,59,119,104,105,108,101,40,111,40,105,41,41,105,61,116,104,105,115,46,95,97,112,112,101,110,100,66,108,111,99,107,84,111,67,104,97,105,110,40,110,44,105,44,101,41,59,114,61,111,40,101,41,63,101,58,97,40,101,41,63,101,91,34,100,101,102,97,117,108,116,34,93,63,101,91,34,100,101,102,97,117,108,116,34,93,58,110,117,108,108,58,101,44,105,61,99,40,114,41,63,91,114,93,58,114,44,105,38,38,116,104,105,115,46,95,97,112,112,101,110,100,66,108,111,99,107,84,111,67,104,97,105,110,40,110,44,105,44,110,117,108,108,41,44,116,104,105,115,46,95,108,111,99,97,108,101,67,104,97,105,110,67,97,99,104,101,91,116,93,61,110,125,114,101,116,117,114,110,32,110,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,116,114,97,110,115,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,44,111,44,97,41,123,102,111,114,40,118,97,114,32,115,44,99,61,116,104,105,115,46,95,103,101,116,76,111,99,97,108,101,67,104,97,105,110,40,101,44,110,41,44,117,61,48,59,117,60,99,46,108,101,110,103,116,104,59,117,43,43,41,123,118,97,114,32,108,61,99,91,117,93,59,105,102,40,115,61,116,104,105,115,46,95,105,110,116,101,114,112,111,108,97,116,101,40,108,44,116,91,108,93,44,114,44,105,44,111,44,97,44,91,114,93,41,44,33,104,40,115,41,41,114,101,116,117,114,110,32,115,125,114,101,116,117,114,110,32,110,117,108,108,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,44,111,61,91,93,44,97,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,52,59,119,104,105,108,101,40,97,45,45,32,62,48,41,111,91,97,93,61,97,114,103,117,109,101,110,116,115,91,97,43,52,93,59,105,102,40,33,116,41,114,101,116,117,114,110,34,34,59,118,97,114,32,115,61,112,46,97,112,112,108,121,40,118,111,105,100,32,48,44,111,41,59,116,104,105,115,46,95,101,115,99,97,112,101,80,97,114,97,109,101,116,101,114,72,116,109,108,38,38,40,115,46,112,97,114,97,109,115,61,79,40,115,46,112,97,114,97,109,115,41,41,59,118,97,114,32,99,61,115,46,108,111,99,97,108,101,124,124,101,44,117,61,116,104,105,115,46,95,116,114,97,110,115,108,97,116,101,40,110,44,99,44,116,104,105,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,44,116,44,114,44,34,115,116,114,105,110,103,34,44,115,46,112,97,114,97,109,115,41,59,105,102,40,116,104,105,115,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,40,117,41,41,123,105,102,40,33,116,104,105,115,46,95,114,111,111,116,41,116,104,114,111,119,32,69,114,114,111,114,40,34,117,110,101,120,112,101,99,116,101,100,32,101,114,114,111,114,34,41,59,114,101,116,117,114,110,40,105,61,116,104,105,115,46,95,114,111,111,116,41,46,36,116,46,97,112,112,108,121,40,105,44,91,116,93,46,99,111,110,99,97,116,40,111,41,41,125,114,101,116,117,114,110,32,117,61,116,104,105,115,46,95,119,97,114,110,68,101,102,97,117,108,116,40,99,44,116,44,117,44,114,44,111,44,34,115,116,114,105,110,103,34,41,44,116,104,105,115,46,95,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,38,38,110,117,108,108,33,61,61,117,38,38,118,111,105,100,32,48,33,61,61,117,38,38,40,117,61,116,104,105,115,46,95,112,111,115,116,84,114,97,110,115,108,97,116,105,111,110,40,117,44,116,41,41,44,117,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,91,93,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,49,59,119,104,105,108,101,40,114,45,45,32,62,48,41,110,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,43,49,93,59,114,101,116,117,114,110,40,101,61,116,104,105,115,41,46,95,116,46,97,112,112,108,121,40,101,44,91,116,44,116,104,105,115,46,108,111,99,97,108,101,44,116,104,105,115,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,110,117,108,108,93,46,99,111,110,99,97,116,40,110,41,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,105,61,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,61,116,104,105,115,46,95,116,114,97,110,115,108,97,116,101,40,110,44,101,44,116,104,105,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,44,116,44,114,44,34,114,97,119,34,44,105,41,59,105,102,40,116,104,105,115,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,40,111,41,41,123,105,102,40,33,116,104,105,115,46,95,114,111,111,116,41,116,104,114,111,119,32,69,114,114,111,114,40,34,117,110,101,120,112,101,99,116,101,100,32,101,114,114,111,114,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,111,116,46,36,105,49,56,110,46,105,40,116,44,101,44,105,41,125,114,101,116,117,114,110,32,116,104,105,115,46,95,119,97,114,110,68,101,102,97,117,108,116,40,101,44,116,44,111,44,114,44,91,105,93,44,34,114,97,119,34,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,105,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,63,40,99,40,101,41,124,124,40,101,61,116,104,105,115,46,108,111,99,97,108,101,41,44,116,104,105,115,46,95,105,40,116,44,101,44,116,104,105,115,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,110,117,108,108,44,110,41,41,58,34,34,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,116,99,61,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,61,91,93,44,115,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,53,59,119,104,105,108,101,40,115,45,45,32,62,48,41,97,91,115,93,61,97,114,103,117,109,101,110,116,115,91,115,43,53,93,59,105,102,40,33,116,41,114,101,116,117,114,110,34,34,59,118,111,105,100,32,48,61,61,61,105,38,38,40,105,61,49,41,59,118,97,114,32,99,61,123,99,111,117,110,116,58,105,44,110,58,105,125,44,117,61,112,46,97,112,112,108,121,40,118,111,105,100,32,48,44,97,41,59,114,101,116,117,114,110,32,117,46,112,97,114,97,109,115,61,79,98,106,101,99,116,46,97,115,115,105,103,110,40,99,44,117,46,112,97,114,97,109,115,41,44,97,61,110,117,108,108,61,61,61,117,46,108,111,99,97,108,101,63,91,117,46,112,97,114,97,109,115,93,58,91,117,46,108,111,99,97,108,101,44,117,46,112,97,114,97,109,115,93,44,116,104,105,115,46,102,101,116,99,104,67,104,111,105,99,101,40,40,111,61,116,104,105,115,41,46,95,116,46,97,112,112,108,121,40,111,44,91,116,44,101,44,110,44,114,93,46,99,111,110,99,97,116,40,97,41,41,44,105,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,102,101,116,99,104,67,104,111,105,99,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,116,124,124,33,99,40,116,41,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,110,61,116,46,115,112,108,105,116,40,34,124,34,41,59,114,101,116,117,114,110,32,101,61,116,104,105,115,46,103,101,116,67,104,111,105,99,101,73,110,100,101,120,40,101,44,110,46,108,101,110,103,116,104,41,44,110,91,101,93,63,110,91,101,93,46,116,114,105,109,40,41,58,116,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,116,99,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,114,61,91,93,44,105,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,50,59,119,104,105,108,101,40,105,45,45,32,62,48,41,114,91,105,93,61,97,114,103,117,109,101,110,116,115,91,105,43,50,93,59,114,101,116,117,114,110,40,110,61,116,104,105,115,41,46,95,116,99,46,97,112,112,108,121,40,110,44,91,116,44,116,104,105,115,46,108,111,99,97,108,101,44,116,104,105,115,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,110,117,108,108,44,101,93,46,99,111,110,99,97,116,40,114,41,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,91,93,44,105,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,51,59,119,104,105,108,101,40,105,45,45,32,62,48,41,114,91,105,93,61,97,114,103,117,109,101,110,116,115,91,105,43,51,93,59,118,97,114,32,111,61,112,46,97,112,112,108,121,40,118,111,105,100,32,48,44,114,41,46,108,111,99,97,108,101,124,124,101,59,114,101,116,117,114,110,32,116,104,105,115,46,95,101,120,105,115,116,40,110,91,111,93,44,116,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,101,40,116,44,116,104,105,115,46,108,111,99,97,108,101,44,116,104,105,115,46,95,103,101,116,77,101,115,115,97,103,101,115,40,41,44,101,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,76,111,99,97,108,101,77,101,115,115,97,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,40,116,104,105,115,46,95,118,109,46,109,101,115,115,97,103,101,115,91,116,93,124,124,123,125,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,115,101,116,76,111,99,97,108,101,77,101,115,115,97,103,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,119,97,114,110,34,33,61,61,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,38,38,34,101,114,114,111,114,34,33,61,61,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,124,124,116,104,105,115,46,95,99,104,101,99,107,76,111,99,97,108,101,77,101,115,115,97,103,101,40,116,44,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,44,101,41,44,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,46,109,101,115,115,97,103,101,115,44,116,44,101,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,109,101,114,103,101,76,111,99,97,108,101,77,101,115,115,97,103,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,119,97,114,110,34,33,61,61,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,38,38,34,101,114,114,111,114,34,33,61,61,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,124,124,116,104,105,115,46,95,99,104,101,99,107,76,111,99,97,108,101,77,101,115,115,97,103,101,40,116,44,116,104,105,115,46,95,119,97,114,110,72,116,109,108,73,110,77,101,115,115,97,103,101,44,101,41,44,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,46,109,101,115,115,97,103,101,115,44,116,44,119,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,118,109,46,109,101,115,115,97,103,101,115,91,116,93,38,38,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,95,118,109,46,109,101,115,115,97,103,101,115,91,116,93,41,46,108,101,110,103,116,104,63,116,104,105,115,46,95,118,109,46,109,101,115,115,97,103,101,115,91,116,93,58,123,125,44,101,41,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,68,97,116,101,84,105,109,101,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,40,116,104,105,115,46,95,118,109,46,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,91,116,93,124,124,123,125,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,115,101,116,68,97,116,101,84,105,109,101,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,46,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,44,116,44,101,41,44,116,104,105,115,46,95,99,108,101,97,114,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,116,44,101,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,109,101,114,103,101,68,97,116,101,84,105,109,101,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,46,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,44,116,44,119,40,116,104,105,115,46,95,118,109,46,100,97,116,101,84,105,109,101,70,111,114,109,97,116,115,91,116,93,124,124,123,125,44,101,41,41,44,116,104,105,115,46,95,99,108,101,97,114,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,116,44,101,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,99,108,101,97,114,68,97,116,101,84,105,109,101,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,123,118,97,114,32,114,61,116,43,34,95,95,34,43,110,59,116,104,105,115,46,95,100,97,116,101,84,105,109,101,70,111,114,109,97,116,116,101,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,114,41,38,38,100,101,108,101,116,101,32,116,104,105,115,46,95,100,97,116,101,84,105,109,101,70,111,114,109,97,116,116,101,114,115,91,114,93,125,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,108,111,99,97,108,105,122,101,68,97,116,101,84,105,109,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,61,101,44,97,61,114,91,111,93,44,115,61,116,104,105,115,46,95,103,101,116,76,111,99,97,108,101,67,104,97,105,110,40,101,44,110,41,44,99,61,48,59,99,60,115,46,108,101,110,103,116,104,59,99,43,43,41,123,118,97,114,32,117,61,115,91,99,93,59,105,102,40,97,61,114,91,117,93,44,111,61,117,44,33,104,40,97,41,38,38,33,104,40,97,91,105,93,41,41,98,114,101,97,107,125,105,102,40,104,40,97,41,124,124,104,40,97,91,105,93,41,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,108,61,97,91,105,93,44,102,61,111,43,34,95,95,34,43,105,44,100,61,116,104,105,115,46,95,100,97,116,101,84,105,109,101,70,111,114,109,97,116,116,101,114,115,91,102,93,59,114,101,116,117,114,110,32,100,124,124,40,100,61,116,104,105,115,46,95,100,97,116,101,84,105,109,101,70,111,114,109,97,116,116,101,114,115,91,102,93,61,110,101,119,32,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,111,44,108,41,41,44,100,46,102,111,114,109,97,116,40,116,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,100,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,33,110,41,114,101,116,117,114,110,32,110,101,119,32,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,40,101,41,46,102,111,114,109,97,116,40,116,41,59,118,97,114,32,114,61,116,104,105,115,46,95,108,111,99,97,108,105,122,101,68,97,116,101,84,105,109,101,40,116,44,101,44,116,104,105,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,44,116,104,105,115,46,95,103,101,116,68,97,116,101,84,105,109,101,70,111,114,109,97,116,115,40,41,44,110,41,59,105,102,40,116,104,105,115,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,40,114,41,41,123,105,102,40,33,116,104,105,115,46,95,114,111,111,116,41,116,104,114,111,119,32,69,114,114,111,114,40,34,117,110,101,120,112,101,99,116,101,100,32,101,114,114,111,114,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,111,116,46,36,105,49,56,110,46,100,40,116,44,110,44,101,41,125,114,101,116,117,114,110,32,114,124,124,34,34,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,91,93,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,49,59,119,104,105,108,101,40,110,45,45,32,62,48,41,101,91,110,93,61,97,114,103,117,109,101,110,116,115,91,110,43,49,93,59,118,97,114,32,114,61,116,104,105,115,46,108,111,99,97,108,101,44,105,61,110,117,108,108,59,114,101,116,117,114,110,32,49,61,61,61,101,46,108,101,110,103,116,104,63,99,40,101,91,48,93,41,63,105,61,101,91,48,93,58,97,40,101,91,48,93,41,38,38,40,101,91,48,93,46,108,111,99,97,108,101,38,38,40,114,61,101,91,48,93,46,108,111,99,97,108,101,41,44,101,91,48,93,46,107,101,121,38,38,40,105,61,101,91,48,93,46,107,101,121,41,41,58,50,61,61,61,101,46,108,101,110,103,116,104,38,38,40,99,40,101,91,48,93,41,38,38,40,105,61,101,91,48,93,41,44,99,40,101,91,49,93,41,38,38,40,114,61,101,91,49,93,41,41,44,116,104,105,115,46,95,100,40,116,44,114,44,105,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,40,116,104,105,115,46,95,118,109,46,110,117,109,98,101,114,70,111,114,109,97,116,115,91,116,93,124,124,123,125,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,115,101,116,78,117,109,98,101,114,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,46,110,117,109,98,101,114,70,111,114,109,97,116,115,44,116,44,101,41,44,116,104,105,115,46,95,99,108,101,97,114,78,117,109,98,101,114,70,111,114,109,97,116,40,116,44,101,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,109,101,114,103,101,78,117,109,98,101,114,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,95,118,109,46,36,115,101,116,40,116,104,105,115,46,95,118,109,46,110,117,109,98,101,114,70,111,114,109,97,116,115,44,116,44,119,40,116,104,105,115,46,95,118,109,46,110,117,109,98,101,114,70,111,114,109,97,116,115,91,116,93,124,124,123,125,44,101,41,41,44,116,104,105,115,46,95,99,108,101,97,114,78,117,109,98,101,114,70,111,114,109,97,116,40,116,44,101,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,99,108,101,97,114,78,117,109,98,101,114,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,123,118,97,114,32,114,61,116,43,34,95,95,34,43,110,59,116,104,105,115,46,95,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,114,41,38,38,100,101,108,101,116,101,32,116,104,105,115,46,95,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,115,91,114,93,125,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,116,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,44,111,41,123,102,111,114,40,118,97,114,32,97,61,101,44,115,61,114,91,97,93,44,99,61,116,104,105,115,46,95,103,101,116,76,111,99,97,108,101,67,104,97,105,110,40,101,44,110,41,44,117,61,48,59,117,60,99,46,108,101,110,103,116,104,59,117,43,43,41,123,118,97,114,32,108,61,99,91,117,93,59,105,102,40,115,61,114,91,108,93,44,97,61,108,44,33,104,40,115,41,38,38,33,104,40,115,91,105,93,41,41,98,114,101,97,107,125,105,102,40,104,40,115,41,124,124,104,40,115,91,105,93,41,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,102,44,100,61,115,91,105,93,59,105,102,40,111,41,102,61,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,97,44,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,100,44,111,41,41,59,101,108,115,101,123,118,97,114,32,112,61,97,43,34,95,95,34,43,105,59,102,61,116,104,105,115,46,95,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,115,91,112,93,44,102,124,124,40,102,61,116,104,105,115,46,95,110,117,109,98,101,114,70,111,114,109,97,116,116,101,114,115,91,112,93,61,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,97,44,100,41,41,125,114,101,116,117,114,110,32,102,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,110,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,105,102,40,33,79,116,46,97,118,97,105,108,97,98,105,108,105,116,105,101,115,46,110,117,109,98,101,114,70,111,114,109,97,116,41,114,101,116,117,114,110,34,34,59,105,102,40,33,110,41,123,118,97,114,32,105,61,114,63,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,101,44,114,41,58,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,101,41,59,114,101,116,117,114,110,32,105,46,102,111,114,109,97,116,40,116,41,125,118,97,114,32,111,61,116,104,105,115,46,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,116,101,114,40,116,44,101,44,116,104,105,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,44,116,104,105,115,46,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,115,40,41,44,110,44,114,41,44,97,61,111,38,38,111,46,102,111,114,109,97,116,40,116,41,59,105,102,40,116,104,105,115,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,40,97,41,41,123,105,102,40,33,116,104,105,115,46,95,114,111,111,116,41,116,104,114,111,119,32,69,114,114,111,114,40,34,117,110,101,120,112,101,99,116,101,100,32,101,114,114,111,114,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,111,116,46,36,105,49,56,110,46,110,40,116,44,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,123,107,101,121,58,110,44,108,111,99,97,108,101,58,101,125,44,114,41,41,125,114,101,116,117,114,110,32,97,124,124,34,34,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,91,93,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,49,59,119,104,105,108,101,40,114,45,45,32,62,48,41,101,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,43,49,93,59,118,97,114,32,105,61,116,104,105,115,46,108,111,99,97,108,101,44,111,61,110,117,108,108,44,115,61,110,117,108,108,59,114,101,116,117,114,110,32,49,61,61,61,101,46,108,101,110,103,116,104,63,99,40,101,91,48,93,41,63,111,61,101,91,48,93,58,97,40,101,91,48,93,41,38,38,40,101,91,48,93,46,108,111,99,97,108,101,38,38,40,105,61,101,91,48,93,46,108,111,99,97,108,101,41,44,101,91,48,93,46,107,101,121,38,38,40,111,61,101,91,48,93,46,107,101,121,41,44,115,61,79,98,106,101,99,116,46,107,101,121,115,40,101,91,48,93,41,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,118,97,114,32,105,59,114,101,116,117,114,110,32,109,40,110,44,114,41,63,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,116,44,40,105,61,123,125,44,105,91,114,93,61,101,91,48,93,91,114,93,44,105,41,41,58,116,125,41,44,110,117,108,108,41,41,58,50,61,61,61,101,46,108,101,110,103,116,104,38,38,40,99,40,101,91,48,93,41,38,38,40,111,61,101,91,48,93,41,44,99,40,101,91,49,93,41,38,38,40,105,61,101,91,49,93,41,41,44,116,104,105,115,46,95,110,40,116,44,105,44,111,44,115,41,125,44,79,116,46,112,114,111,116,111,116,121,112,101,46,95,110,116,112,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,105,102,40,33,79,116,46,97,118,97,105,108,97,98,105,108,105,116,105,101,115,46,110,117,109,98,101,114,70,111,114,109,97,116,41,114,101,116,117,114,110,91,93,59,105,102,40,33,110,41,123,118,97,114,32,105,61,114,63,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,101,44,114,41,58,110,101,119,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,40,101,41,59,114,101,116,117,114,110,32,105,46,102,111,114,109,97,116,84,111,80,97,114,116,115,40,116,41,125,118,97,114,32,111,61,116,104,105,115,46,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,116,101,114,40,116,44,101,44,116,104,105,115,46,102,97,108,108,98,97,99,107,76,111,99,97,108,101,44,116,104,105,115,46,95,103,101,116,78,117,109,98,101,114,70,111,114,109,97,116,115,40,41,44,110,44,114,41,44,97,61,111,38,38,111,46,102,111,114,109,97,116,84,111,80,97,114,116,115,40,116,41,59,105,102,40,116,104,105,115,46,95,105,115,70,97,108,108,98,97,99,107,82,111,111,116,40,97,41,41,123,105,102,40,33,116,104,105,115,46,95,114,111,111,116,41,116,104,114,111,119,32,69,114,114,111,114,40,34,117,110,101,120,112,101,99,116,101,100,32,101,114,114,111,114,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,111,116,46,36,105,49,56,110,46,95,110,116,112,40,116,44,101,44,110,44,114,41,125,114,101,116,117,114,110,32,97,124,124,91,93,125,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,79,116,46,112,114,111,116,111,116,121,112,101,44,83,116,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,79,116,44,34,97,118,97,105,108,97,98,105,108,105,116,105,101,115,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,103,116,41,123,118,97,114,32,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,73,110,116,108,59,103,116,61,123,100,97,116,101,84,105,109,101,70,111,114,109,97,116,58,116,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,73,110,116,108,46,68,97,116,101,84,105,109,101,70,111,114,109,97,116,44,110,117,109,98,101,114,70,111,114,109,97,116,58,116,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,73,110,116,108,46,78,117,109,98,101,114,70,111,114,109,97,116,125,125,114,101,116,117,114,110,32,103,116,125,125,41,44,79,116,46,105,110,115,116,97,108,108,61,72,44,79,116,46,118,101,114,115,105,111,110,61,34,56,46,50,52,46,52,34,44,101,91,34,90,34,93,61,79,116,125,44,56,51,52,53,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,10,47,42,33,10,32,32,42,32,118,117,101,45,114,111,117,116,101,114,32,118,51,46,53,46,49,10,32,32,42,32,40,99,41,32,50,48,50,49,32,69,118,97,110,32,89,111,117,10,32,32,42,32,64,108,105,99,101,110,115,101,32,77,73,84,10,32,32,42,47,102,117,110,99,116,105,111,110,32,110,40,116,44,101,41,123,48,125,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,116,91,110,93,61,101,91,110,93,59,114,101,116,117,114,110,32,116,125,118,97,114,32,105,61,47,91,33,39,40,41,42,93,47,103,44,111,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,37,34,43,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,46,116,111,83,116,114,105,110,103,40,49,54,41,125,44,97,61,47,37,50,67,47,103,44,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,116,41,46,114,101,112,108,97,99,101,40,105,44,111,41,46,114,101,112,108,97,99,101,40,97,44,34,44,34,41,125,59,102,117,110,99,116,105,111,110,32,99,40,116,41,123,116,114,121,123,114,101,116,117,114,110,32,100,101,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,116,41,125,99,97,116,99,104,40,101,41,123,48,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,117,40,116,44,101,44,110,41,123,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,123,125,41,59,118,97,114,32,114,44,105,61,110,124,124,102,59,116,114,121,123,114,61,105,40,116,124,124,34,34,41,125,99,97,116,99,104,40,115,41,123,114,61,123,125,125,102,111,114,40,118,97,114,32,111,32,105,110,32,101,41,123,118,97,114,32,97,61,101,91,111,93,59,114,91,111,93,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,41,63,97,46,109,97,112,40,108,41,58,108,40,97,41,125,114,101,116,117,114,110,32,114,125,118,97,114,32,108,61,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,124,124,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,63,116,58,83,116,114,105,110,103,40,116,41,125,59,102,117,110,99,116,105,111,110,32,102,40,116,41,123,118,97,114,32,101,61,123,125,59,114,101,116,117,114,110,32,116,61,116,46,116,114,105,109,40,41,46,114,101,112,108,97,99,101,40,47,94,40,92,63,124,35,124,38,41,47,44,34,34,41,44,116,63,40,116,46,115,112,108,105,116,40,34,38,34,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,114,101,112,108,97,99,101,40,47,92,43,47,103,44,34,32,34,41,46,115,112,108,105,116,40,34,61,34,41,44,114,61,99,40,110,46,115,104,105,102,116,40,41,41,44,105,61,110,46,108,101,110,103,116,104,62,48,63,99,40,110,46,106,111,105,110,40,34,61,34,41,41,58,110,117,108,108,59,118,111,105,100,32,48,61,61,61,101,91,114,93,63,101,91,114,93,61,105,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,91,114,93,41,63,101,91,114,93,46,112,117,115,104,40,105,41,58,101,91,114,93,61,91,101,91,114,93,44,105,93,125,41,41,44,101,41,58,101,125,102,117,110,99,116,105,111,110,32,104,40,116,41,123,118,97,114,32,101,61,116,63,79,98,106,101,99,116,46,107,101,121,115,40,116,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,116,91,101,93,59,105,102,40,118,111,105,100,32,48,61,61,61,110,41,114,101,116,117,114,110,34,34,59,105,102,40,110,117,108,108,61,61,61,110,41,114,101,116,117,114,110,32,115,40,101,41,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,41,123,118,97,114,32,114,61,91,93,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,111,105,100,32,48,33,61,61,116,38,38,40,110,117,108,108,61,61,61,116,63,114,46,112,117,115,104,40,115,40,101,41,41,58,114,46,112,117,115,104,40,115,40,101,41,43,34,61,34,43,115,40,116,41,41,41,125,41,41,44,114,46,106,111,105,110,40,34,38,34,41,125,114,101,116,117,114,110,32,115,40,101,41,43,34,61,34,43,115,40,110,41,125,41,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,62,48,125,41,41,46,106,111,105,110,40,34,38,34,41,58,110,117,108,108,59,114,101,116,117,114,110,32,101,63,34,63,34,43,101,58,34,34,125,118,97,114,32,100,61,47,92,47,63,36,47,59,102,117,110,99,116,105,111,110,32,112,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,114,38,38,114,46,111,112,116,105,111,110,115,46,115,116,114,105,110,103,105,102,121,81,117,101,114,121,44,111,61,101,46,113,117,101,114,121,124,124,123,125,59,116,114,121,123,111,61,118,40,111,41,125,99,97,116,99,104,40,115,41,123,125,118,97,114,32,97,61,123,110,97,109,101,58,101,46,110,97,109,101,124,124,116,38,38,116,46,110,97,109,101,44,109,101,116,97,58,116,38,38,116,46,109,101,116,97,124,124,123,125,44,112,97,116,104,58,101,46,112,97,116,104,124,124,34,47,34,44,104,97,115,104,58,101,46,104,97,115,104,124,124,34,34,44,113,117,101,114,121,58,111,44,112,97,114,97,109,115,58,101,46,112,97,114,97,109,115,124,124,123,125,44,102,117,108,108,80,97,116,104,58,98,40,101,44,105,41,44,109,97,116,99,104,101,100,58,116,63,109,40,116,41,58,91,93,125,59,114,101,116,117,114,110,32,110,38,38,40,97,46,114,101,100,105,114,101,99,116,101,100,70,114,111,109,61,98,40,110,44,105,41,41,44,79,98,106,101,99,116,46,102,114,101,101,122,101,40,97,41,125,102,117,110,99,116,105,111,110,32,118,40,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,116,46,109,97,112,40,118,41,59,105,102,40,116,38,38,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,41,123,118,97,114,32,101,61,123,125,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,41,101,91,110,93,61,118,40,116,91,110,93,41,59,114,101,116,117,114,110,32,101,125,114,101,116,117,114,110,32,116,125,118,97,114,32,103,61,112,40,110,117,108,108,44,123,112,97,116,104,58,34,47,34,125,41,59,102,117,110,99,116,105,111,110,32,109,40,116,41,123,118,97,114,32,101,61,91,93,59,119,104,105,108,101,40,116,41,101,46,117,110,115,104,105,102,116,40,116,41,44,116,61,116,46,112,97,114,101,110,116,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,98,40,116,44,101,41,123,118,97,114,32,110,61,116,46,112,97,116,104,44,114,61,116,46,113,117,101,114,121,59,118,111,105,100,32,48,61,61,61,114,38,38,40,114,61,123,125,41,59,118,97,114,32,105,61,116,46,104,97,115,104,59,118,111,105,100,32,48,61,61,61,105,38,38,40,105,61,34,34,41,59,118,97,114,32,111,61,101,124,124,104,59,114,101,116,117,114,110,40,110,124,124,34,47,34,41,43,111,40,114,41,43,105,125,102,117,110,99,116,105,111,110,32,121,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,61,61,61,103,63,116,61,61,61,101,58,33,33,101,38,38,40,116,46,112,97,116,104,38,38,101,46,112,97,116,104,63,116,46,112,97,116,104,46,114,101,112,108,97,99,101,40,100,44,34,34,41,61,61,61,101,46,112,97,116,104,46,114,101,112,108,97,99,101,40,100,44,34,34,41,38,38,40,110,124,124,116,46,104,97,115,104,61,61,61,101,46,104,97,115,104,38,38,119,40,116,46,113,117,101,114,121,44,101,46,113,117,101,114,121,41,41,58,33,40,33,116,46,110,97,109,101,124,124,33,101,46,110,97,109,101,41,38,38,40,116,46,110,97,109,101,61,61,61,101,46,110,97,109,101,38,38,40,110,124,124,116,46,104,97,115,104,61,61,61,101,46,104,97,115,104,38,38,119,40,116,46,113,117,101,114,121,44,101,46,113,117,101,114,121,41,38,38,119,40,116,46,112,97,114,97,109,115,44,101,46,112,97,114,97,109,115,41,41,41,41,125,102,117,110,99,116,105,111,110,32,119,40,116,44,101,41,123,105,102,40,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,123,125,41,44,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,123,125,41,44,33,116,124,124,33,101,41,114,101,116,117,114,110,32,116,61,61,61,101,59,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,46,115,111,114,116,40,41,44,114,61,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,115,111,114,116,40,41,59,114,101,116,117,114,110,32,110,46,108,101,110,103,116,104,61,61,61,114,46,108,101,110,103,116,104,38,38,110,46,101,118,101,114,121,40,40,102,117,110,99,116,105,111,110,40,110,44,105,41,123,118,97,114,32,111,61,116,91,110,93,44,97,61,114,91,105,93,59,105,102,40,97,33,61,61,110,41,114,101,116,117,114,110,33,49,59,118,97,114,32,115,61,101,91,110,93,59,114,101,116,117,114,110,32,110,117,108,108,61,61,111,124,124,110,117,108,108,61,61,115,63,111,61,61,61,115,58,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,111,38,38,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,115,63,119,40,111,44,115,41,58,83,116,114,105,110,103,40,111,41,61,61,61,83,116,114,105,110,103,40,115,41,125,41,41,125,102,117,110,99,116,105,111,110,32,95,40,116,44,101,41,123,114,101,116,117,114,110,32,48,61,61,61,116,46,112,97,116,104,46,114,101,112,108,97,99,101,40,100,44,34,47,34,41,46,105,110,100,101,120,79,102,40,101,46,112,97,116,104,46,114,101,112,108,97,99,101,40,100,44,34,47,34,41,41,38,38,40,33,101,46,104,97,115,104,124,124,116,46,104,97,115,104,61,61,61,101,46,104,97,115,104,41,38,38,120,40,116,46,113,117,101,114,121,44,101,46,113,117,101,114,121,41,125,102,117,110,99,116,105,111,110,32,120,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,105,102,40,33,40,110,32,105,110,32,116,41,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,79,40,116,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,116,46,109,97,116,99,104,101,100,46,108,101,110,103,116,104,59,101,43,43,41,123,118,97,114,32,110,61,116,46,109,97,116,99,104,101,100,91,101,93,59,102,111,114,40,118,97,114,32,114,32,105,110,32,110,46,105,110,115,116,97,110,99,101,115,41,123,118,97,114,32,105,61,110,46,105,110,115,116,97,110,99,101,115,91,114,93,44,111,61,110,46,101,110,116,101,114,101,100,67,98,115,91,114,93,59,105,102,40,105,38,38,111,41,123,100,101,108,101,116,101,32,110,46,101,110,116,101,114,101,100,67,98,115,91,114,93,59,102,111,114,40,118,97,114,32,97,61,48,59,97,60,111,46,108,101,110,103,116,104,59,97,43,43,41,105,46,95,105,115,66,101,105,110,103,68,101,115,116,114,111,121,101,100,124,124,111,91,97,93,40,105,41,125,125,125,125,118,97,114,32,83,61,123,110,97,109,101,58,34,82,111,117,116,101,114,86,105,101,119,34,44,102,117,110,99,116,105,111,110,97,108,58,33,48,44,112,114,111,112,115,58,123,110,97,109,101,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,100,101,102,97,117,108,116,34,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,44,105,61,101,46,99,104,105,108,100,114,101,110,44,111,61,101,46,112,97,114,101,110,116,44,97,61,101,46,100,97,116,97,59,97,46,114,111,117,116,101,114,86,105,101,119,61,33,48,59,118,97,114,32,115,61,111,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,99,61,110,46,110,97,109,101,44,117,61,111,46,36,114,111,117,116,101,44,108,61,111,46,95,114,111,117,116,101,114,86,105,101,119,67,97,99,104,101,124,124,40,111,46,95,114,111,117,116,101,114,86,105,101,119,67,97,99,104,101,61,123,125,41,44,102,61,48,44,104,61,33,49,59,119,104,105,108,101,40,111,38,38,111,46,95,114,111,117,116,101,114,82,111,111,116,33,61,61,111,41,123,118,97,114,32,100,61,111,46,36,118,110,111,100,101,63,111,46,36,118,110,111,100,101,46,100,97,116,97,58,123,125,59,100,46,114,111,117,116,101,114,86,105,101,119,38,38,102,43,43,44,100,46,107,101,101,112,65,108,105,118,101,38,38,111,46,95,100,105,114,101,99,116,73,110,97,99,116,105,118,101,38,38,111,46,95,105,110,97,99,116,105,118,101,38,38,40,104,61,33,48,41,44,111,61,111,46,36,112,97,114,101,110,116,125,105,102,40,97,46,114,111,117,116,101,114,86,105,101,119,68,101,112,116,104,61,102,44,104,41,123,118,97,114,32,112,61,108,91,99,93,44,118,61,112,38,38,112,46,99,111,109,112,111,110,101,110,116,59,114,101,116,117,114,110,32,118,63,40,112,46,99,111,110,102,105,103,80,114,111,112,115,38,38,107,40,118,44,97,44,112,46,114,111,117,116,101,44,112,46,99,111,110,102,105,103,80,114,111,112,115,41,44,115,40,118,44,97,44,105,41,41,58,115,40,41,125,118,97,114,32,103,61,117,46,109,97,116,99,104,101,100,91,102,93,44,109,61,103,38,38,103,46,99,111,109,112,111,110,101,110,116,115,91,99,93,59,105,102,40,33,103,124,124,33,109,41,114,101,116,117,114,110,32,108,91,99,93,61,110,117,108,108,44,115,40,41,59,108,91,99,93,61,123,99,111,109,112,111,110,101,110,116,58,109,125,44,97,46,114,101,103,105,115,116,101,114,82,111,117,116,101,73,110,115,116,97,110,99,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,103,46,105,110,115,116,97,110,99,101,115,91,99,93,59,40,101,38,38,110,33,61,61,116,124,124,33,101,38,38,110,61,61,61,116,41,38,38,40,103,46,105,110,115,116,97,110,99,101,115,91,99,93,61,101,41,125,44,40,97,46,104,111,111,107,124,124,40,97,46,104,111,111,107,61,123,125,41,41,46,112,114,101,112,97,116,99,104,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,103,46,105,110,115,116,97,110,99,101,115,91,99,93,61,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,125,44,97,46,104,111,111,107,46,105,110,105,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,46,100,97,116,97,46,107,101,101,112,65,108,105,118,101,38,38,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,38,38,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,33,61,61,103,46,105,110,115,116,97,110,99,101,115,91,99,93,38,38,40,103,46,105,110,115,116,97,110,99,101,115,91,99,93,61,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,44,79,40,117,41,125,59,118,97,114,32,98,61,103,46,112,114,111,112,115,38,38,103,46,112,114,111,112,115,91,99,93,59,114,101,116,117,114,110,32,98,38,38,40,114,40,108,91,99,93,44,123,114,111,117,116,101,58,117,44,99,111,110,102,105,103,80,114,111,112,115,58,98,125,41,44,107,40,109,44,97,44,117,44,98,41,41,44,115,40,109,44,97,44,105,41,125,125,59,102,117,110,99,116,105,111,110,32,107,40,116,44,101,44,110,44,105,41,123,118,97,114,32,111,61,101,46,112,114,111,112,115,61,67,40,110,44,105,41,59,105,102,40,111,41,123,111,61,101,46,112,114,111,112,115,61,114,40,123,125,44,111,41,59,118,97,114,32,97,61,101,46,97,116,116,114,115,61,101,46,97,116,116,114,115,124,124,123,125,59,102,111,114,40,118,97,114,32,115,32,105,110,32,111,41,116,46,112,114,111,112,115,38,38,115,32,105,110,32,116,46,112,114,111,112,115,124,124,40,97,91,115,93,61,111,91,115,93,44,100,101,108,101,116,101,32,111,91,115,93,41,125,125,102,117,110,99,116,105,111,110,32,67,40,116,44,101,41,123,115,119,105,116,99,104,40,116,121,112,101,111,102,32,101,41,123,99,97,115,101,34,117,110,100,101,102,105,110,101,100,34,58,114,101,116,117,114,110,59,99,97,115,101,34,111,98,106,101,99,116,34,58,114,101,116,117,114,110,32,101,59,99,97,115,101,34,102,117,110,99,116,105,111,110,34,58,114,101,116,117,114,110,32,101,40,116,41,59,99,97,115,101,34,98,111,111,108,101,97,110,34,58,114,101,116,117,114,110,32,101,63,116,46,112,97,114,97,109,115,58,118,111,105,100,32,48,59,100,101,102,97,117,108,116,58,48,125,125,102,117,110,99,116,105,111,110,32,80,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,99,104,97,114,65,116,40,48,41,59,105,102,40,34,47,34,61,61,61,114,41,114,101,116,117,114,110,32,116,59,105,102,40,34,63,34,61,61,61,114,124,124,34,35,34,61,61,61,114,41,114,101,116,117,114,110,32,101,43,116,59,118,97,114,32,105,61,101,46,115,112,108,105,116,40,34,47,34,41,59,110,38,38,105,91,105,46,108,101,110,103,116,104,45,49,93,124,124,105,46,112,111,112,40,41,59,102,111,114,40,118,97,114,32,111,61,116,46,114,101,112,108,97,99,101,40,47,94,92,47,47,44,34,34,41,46,115,112,108,105,116,40,34,47,34,41,44,97,61,48,59,97,60,111,46,108,101,110,103,116,104,59,97,43,43,41,123,118,97,114,32,115,61,111,91,97,93,59,34,46,46,34,61,61,61,115,63,105,46,112,111,112,40,41,58,34,46,34,33,61,61,115,38,38,105,46,112,117,115,104,40,115,41,125,114,101,116,117,114,110,34,34,33,61,61,105,91,48,93,38,38,105,46,117,110,115,104,105,102,116,40,34,34,41,44,105,46,106,111,105,110,40,34,47,34,41,125,102,117,110,99,116,105,111,110,32,84,40,116,41,123,118,97,114,32,101,61,34,34,44,110,61,34,34,44,114,61,116,46,105,110,100,101,120,79,102,40,34,35,34,41,59,114,62,61,48,38,38,40,101,61,116,46,115,108,105,99,101,40,114,41,44,116,61,116,46,115,108,105,99,101,40,48,44,114,41,41,59,118,97,114,32,105,61,116,46,105,110,100,101,120,79,102,40,34,63,34,41,59,114,101,116,117,114,110,32,105,62,61,48,38,38,40,110,61,116,46,115,108,105,99,101,40,105,43,49,41,44,116,61,116,46,115,108,105,99,101,40,48,44,105,41,41,44,123,112,97,116,104,58,116,44,113,117,101,114,121,58,110,44,104,97,115,104,58,101,125,125,102,117,110,99,116,105,111,110,32,106,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,47,92,47,92,47,47,103,44,34,47,34,41,125,118,97,114,32,69,61,65,114,114,97,121,46,105,115,65,114,114,97,121,124,124,102,117,110,99,116,105,111,110,40,116,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,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,41,125,44,68,61,88,44,65,61,70,44,76,61,82,44,73,61,122,44,77,61,75,44,36,61,110,101,119,32,82,101,103,69,120,112,40,91,34,40,92,92,92,92,46,41,34,44,34,40,91,92,92,47,46,93,41,63,40,63,58,40,63,58,92,92,58,40,92,92,119,43,41,40,63,58,92,92,40,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,40,41,93,41,43,41,92,92,41,41,63,124,92,92,40,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,40,41,93,41,43,41,92,92,41,41,40,91,43,42,63,93,41,63,124,40,92,92,42,41,41,34,93,46,106,111,105,110,40,34,124,34,41,44,34,103,34,41,59,102,117,110,99,116,105,111,110,32,70,40,116,44,101,41,123,118,97,114,32,110,44,114,61,91,93,44,105,61,48,44,111,61,48,44,97,61,34,34,44,115,61,101,38,38,101,46,100,101,108,105,109,105,116,101,114,124,124,34,47,34,59,119,104,105,108,101,40,110,117,108,108,33,61,40,110,61,36,46,101,120,101,99,40,116,41,41,41,123,118,97,114,32,99,61,110,91,48,93,44,117,61,110,91,49,93,44,108,61,110,46,105,110,100,101,120,59,105,102,40,97,43,61,116,46,115,108,105,99,101,40,111,44,108,41,44,111,61,108,43,99,46,108,101,110,103,116,104,44,117,41,97,43,61,117,91,49,93,59,101,108,115,101,123,118,97,114,32,102,61,116,91,111,93,44,104,61,110,91,50,93,44,100,61,110,91,51,93,44,112,61,110,91,52,93,44,118,61,110,91,53,93,44,103,61,110,91,54,93,44,109,61,110,91,55,93,59,97,38,38,40,114,46,112,117,115,104,40,97,41,44,97,61,34,34,41,59,118,97,114,32,98,61,110,117,108,108,33,61,104,38,38,110,117,108,108,33,61,102,38,38,102,33,61,61,104,44,121,61,34,43,34,61,61,61,103,124,124,34,42,34,61,61,61,103,44,119,61,34,63,34,61,61,61,103,124,124,34,42,34,61,61,61,103,44,95,61,110,91,50,93,124,124,115,44,120,61,112,124,124,118,59,114,46,112,117,115,104,40,123,110,97,109,101,58,100,124,124,105,43,43,44,112,114,101,102,105,120,58,104,124,124,34,34,44,100,101,108,105,109,105,116,101,114,58,95,44,111,112,116,105,111,110,97,108,58,119,44,114,101,112,101,97,116,58,121,44,112,97,114,116,105,97,108,58,98,44,97,115,116,101,114,105,115,107,58,33,33,109,44,112,97,116,116,101,114,110,58,120,63,72,40,120,41,58,109,63,34,46,42,34,58,34,91,94,34,43,86,40,95,41,43,34,93,43,63,34,125,41,125,125,114,101,116,117,114,110,32,111,60,116,46,108,101,110,103,116,104,38,38,40,97,43,61,116,46,115,117,98,115,116,114,40,111,41,41,44,97,38,38,114,46,112,117,115,104,40,97,41,44,114,125,102,117,110,99,116,105,111,110,32,82,40,116,44,101,41,123,114,101,116,117,114,110,32,122,40,70,40,116,44,101,41,44,101,41,125,102,117,110,99,116,105,111,110,32,78,40,116,41,123,114,101,116,117,114,110,32,101,110,99,111,100,101,85,82,73,40,116,41,46,114,101,112,108,97,99,101,40,47,91,92,47,63,35,93,47,103,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,37,34,43,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,46,116,111,83,116,114,105,110,103,40,49,54,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,41,41,125,102,117,110,99,116,105,111,110,32,66,40,116,41,123,114,101,116,117,114,110,32,101,110,99,111,100,101,85,82,73,40,116,41,46,114,101,112,108,97,99,101,40,47,91,63,35,93,47,103,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,37,34,43,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,46,116,111,83,116,114,105,110,103,40,49,54,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,41,41,125,102,117,110,99,116,105,111,110,32,122,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,110,101,119,32,65,114,114,97,121,40,116,46,108,101,110,103,116,104,41,44,114,61,48,59,114,60,116,46,108,101,110,103,116,104,59,114,43,43,41,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,91,114,93,38,38,40,110,91,114,93,61,110,101,119,32,82,101,103,69,120,112,40,34,94,40,63,58,34,43,116,91,114,93,46,112,97,116,116,101,114,110,43,34,41,36,34,44,87,40,101,41,41,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,114,41,123,102,111,114,40,118,97,114,32,105,61,34,34,44,111,61,101,124,124,123,125,44,97,61,114,124,124,123,125,44,115,61,97,46,112,114,101,116,116,121,63,78,58,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,44,99,61,48,59,99,60,116,46,108,101,110,103,116,104,59,99,43,43,41,123,118,97,114,32,117,61,116,91,99,93,59,105,102,40,34,115,116,114,105,110,103,34,33,61,61,116,121,112,101,111,102,32,117,41,123,118,97,114,32,108,44,102,61,111,91,117,46,110,97,109,101,93,59,105,102,40,110,117,108,108,61,61,102,41,123,105,102,40,117,46,111,112,116,105,111,110,97,108,41,123,117,46,112,97,114,116,105,97,108,38,38,40,105,43,61,117,46,112,114,101,102,105,120,41,59,99,111,110,116,105,110,117,101,125,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,69,120,112,101,99,116,101,100,32,34,39,43,117,46,110,97,109,101,43,39,34,32,116,111,32,98,101,32,100,101,102,105,110,101,100,39,41,125,105,102,40,69,40,102,41,41,123,105,102,40,33,117,46,114,101,112,101,97,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,69,120,112,101,99,116,101,100,32,34,39,43,117,46,110,97,109,101,43,39,34,32,116,111,32,110,111,116,32,114,101,112,101,97,116,44,32,98,117,116,32,114,101,99,101,105,118,101,100,32,96,39,43,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,102,41,43,34,96,34,41,59,105,102,40,48,61,61,61,102,46,108,101,110,103,116,104,41,123,105,102,40,117,46,111,112,116,105,111,110,97,108,41,99,111,110,116,105,110,117,101,59,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,69,120,112,101,99,116,101,100,32,34,39,43,117,46,110,97,109,101,43,39,34,32,116,111,32,110,111,116,32,98,101,32,101,109,112,116,121,39,41,125,102,111,114,40,118,97,114,32,104,61,48,59,104,60,102,46,108,101,110,103,116,104,59,104,43,43,41,123,105,102,40,108,61,115,40,102,91,104,93,41,44,33,110,91,99,93,46,116,101,115,116,40,108,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,69,120,112,101,99,116,101,100,32,97,108,108,32,34,39,43,117,46,110,97,109,101,43,39,34,32,116,111,32,109,97,116,99,104,32,34,39,43,117,46,112,97,116,116,101,114,110,43,39,34,44,32,98,117,116,32,114,101,99,101,105,118,101,100,32,96,39,43,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,108,41,43,34,96,34,41,59,105,43,61,40,48,61,61,61,104,63,117,46,112,114,101,102,105,120,58,117,46,100,101,108,105,109,105,116,101,114,41,43,108,125,125,101,108,115,101,123,105,102,40,108,61,117,46,97,115,116,101,114,105,115,107,63,66,40,102,41,58,115,40,102,41,44,33,110,91,99,93,46,116,101,115,116,40,108,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,69,120,112,101,99,116,101,100,32,34,39,43,117,46,110,97,109,101,43,39,34,32,116,111,32,109,97,116,99,104,32,34,39,43,117,46,112,97,116,116,101,114,110,43,39,34,44,32,98,117,116,32,114,101,99,101,105,118,101,100,32,34,39,43,108,43,39,34,39,41,59,105,43,61,117,46,112,114,101,102,105,120,43,108,125,125,101,108,115,101,32,105,43,61,117,125,114,101,116,117,114,110,32,105,125,125,102,117,110,99,116,105,111,110,32,86,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,47,40,91,46,43,42,63,61,94,33,58,36,123,125,40,41,91,92,93,124,92,47,92,92,93,41,47,103,44,34,92,92,36,49,34,41,125,102,117,110,99,116,105,111,110,32,72,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,47,40,91,61,33,58,36,92,47,40,41,93,41,47,103,44,34,92,92,36,49,34,41,125,102,117,110,99,116,105,111,110,32,85,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,107,101,121,115,61,101,44,116,125,102,117,110,99,116,105,111,110,32,87,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,115,101,110,115,105,116,105,118,101,63,34,34,58,34,105,34,125,102,117,110,99,116,105,111,110,32,71,40,116,44,101,41,123,118,97,114,32,110,61,116,46,115,111,117,114,99,101,46,109,97,116,99,104,40,47,92,40,40,63,33,92,63,41,47,103,41,59,105,102,40,110,41,102,111,114,40,118,97,114,32,114,61,48,59,114,60,110,46,108,101,110,103,116,104,59,114,43,43,41,101,46,112,117,115,104,40,123,110,97,109,101,58,114,44,112,114,101,102,105,120,58,110,117,108,108,44,100,101,108,105,109,105,116,101,114,58,110,117,108,108,44,111,112,116,105,111,110,97,108,58,33,49,44,114,101,112,101,97,116,58,33,49,44,112,97,114,116,105,97,108,58,33,49,44,97,115,116,101,114,105,115,107,58,33,49,44,112,97,116,116,101,114,110,58,110,117,108,108,125,41,59,114,101,116,117,114,110,32,85,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,113,40,116,44,101,44,110,41,123,102,111,114,40,118,97,114,32,114,61,91,93,44,105,61,48,59,105,60,116,46,108,101,110,103,116,104,59,105,43,43,41,114,46,112,117,115,104,40,88,40,116,91,105,93,44,101,44,110,41,46,115,111,117,114,99,101,41,59,118,97,114,32,111,61,110,101,119,32,82,101,103,69,120,112,40,34,40,63,58,34,43,114,46,106,111,105,110,40,34,124,34,41,43,34,41,34,44,87,40,110,41,41,59,114,101,116,117,114,110,32,85,40,111,44,101,41,125,102,117,110,99,116,105,111,110,32,89,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,75,40,70,40,116,44,110,41,44,101,44,110,41,125,102,117,110,99,116,105,111,110,32,75,40,116,44,101,44,110,41,123,69,40,101,41,124,124,40,110,61,101,124,124,110,44,101,61,91,93,41,44,110,61,110,124,124,123,125,59,102,111,114,40,118,97,114,32,114,61,110,46,115,116,114,105,99,116,44,105,61,33,49,33,61,61,110,46,101,110,100,44,111,61,34,34,44,97,61,48,59,97,60,116,46,108,101,110,103,116,104,59,97,43,43,41,123,118,97,114,32,115,61,116,91,97,93,59,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,115,41,111,43,61,86,40,115,41,59,101,108,115,101,123,118,97,114,32,99,61,86,40,115,46,112,114,101,102,105,120,41,44,117,61,34,40,63,58,34,43,115,46,112,97,116,116,101,114,110,43,34,41,34,59,101,46,112,117,115,104,40,115,41,44,115,46,114,101,112,101,97,116,38,38,40,117,43,61,34,40,63,58,34,43,99,43,117,43,34,41,42,34,41,44,117,61,115,46,111,112,116,105,111,110,97,108,63,115,46,112,97,114,116,105,97,108,63,99,43,34,40,34,43,117,43,34,41,63,34,58,34,40,63,58,34,43,99,43,34,40,34,43,117,43,34,41,41,63,34,58,99,43,34,40,34,43,117,43,34,41,34,44,111,43,61,117,125,125,118,97,114,32,108,61,86,40,110,46,100,101,108,105,109,105,116,101,114,124,124,34,47,34,41,44,102,61,111,46,115,108,105,99,101,40,45,108,46,108,101,110,103,116,104,41,61,61,61,108,59,114,101,116,117,114,110,32,114,124,124,40,111,61,40,102,63,111,46,115,108,105,99,101,40,48,44,45,108,46,108,101,110,103,116,104,41,58,111,41,43,34,40,63,58,34,43,108,43,34,40,63,61,36,41,41,63,34,41,44,111,43,61,105,63,34,36,34,58,114,38,38,102,63,34,34,58,34,40,63,61,34,43,108,43,34,124,36,41,34,44,85,40,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,111,44,87,40,110,41,41,44,101,41,125,102,117,110,99,116,105,111,110,32,88,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,69,40,101,41,124,124,40,110,61,101,124,124,110,44,101,61,91,93,41,44,110,61,110,124,124,123,125,44,116,32,105,110,115,116,97,110,99,101,111,102,32,82,101,103,69,120,112,63,71,40,116,44,101,41,58,69,40,116,41,63,113,40,116,44,101,44,110,41,58,89,40,116,44,101,44,110,41,125,68,46,112,97,114,115,101,61,65,44,68,46,99,111,109,112,105,108,101,61,76,44,68,46,116,111,107,101,110,115,84,111,70,117,110,99,116,105,111,110,61,73,44,68,46,116,111,107,101,110,115,84,111,82,101,103,69,120,112,61,77,59,118,97,114,32,90,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,102,117,110,99,116,105,111,110,32,74,40,116,44,101,44,110,41,123,101,61,101,124,124,123,125,59,116,114,121,123,118,97,114,32,114,61,90,91,116,93,124,124,40,90,91,116,93,61,68,46,99,111,109,112,105,108,101,40,116,41,41,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,101,46,112,97,116,104,77,97,116,99,104,38,38,40,101,91,48,93,61,101,46,112,97,116,104,77,97,116,99,104,41,44,114,40,101,44,123,112,114,101,116,116,121,58,33,48,125,41,125,99,97,116,99,104,40,105,41,123,114,101,116,117,114,110,34,34,125,102,105,110,97,108,108,121,123,100,101,108,101,116,101,32,101,91,48,93,125,125,102,117,110,99,116,105,111,110,32,81,40,116,44,101,44,110,44,105,41,123,118,97,114,32,111,61,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,63,123,112,97,116,104,58,116,125,58,116,59,105,102,40,111,46,95,110,111,114,109,97,108,105,122,101,100,41,114,101,116,117,114,110,32,111,59,105,102,40,111,46,110,97,109,101,41,123,111,61,114,40,123,125,44,116,41,59,118,97,114,32,97,61,111,46,112,97,114,97,109,115,59,114,101,116,117,114,110,32,97,38,38,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,97,38,38,40,111,46,112,97,114,97,109,115,61,114,40,123,125,44,97,41,41,44,111,125,105,102,40,33,111,46,112,97,116,104,38,38,111,46,112,97,114,97,109,115,38,38,101,41,123,111,61,114,40,123,125,44,111,41,44,111,46,95,110,111,114,109,97,108,105,122,101,100,61,33,48,59,118,97,114,32,115,61,114,40,114,40,123,125,44,101,46,112,97,114,97,109,115,41,44,111,46,112,97,114,97,109,115,41,59,105,102,40,101,46,110,97,109,101,41,111,46,110,97,109,101,61,101,46,110,97,109,101,44,111,46,112,97,114,97,109,115,61,115,59,101,108,115,101,32,105,102,40,101,46,109,97,116,99,104,101,100,46,108,101,110,103,116,104,41,123,118,97,114,32,99,61,101,46,109,97,116,99,104,101,100,91,101,46,109,97,116,99,104,101,100,46,108,101,110,103,116,104,45,49,93,46,112,97,116,104,59,111,46,112,97,116,104,61,74,40,99,44,115,44,34,112,97,116,104,32,34,43,101,46,112,97,116,104,41,125,101,108,115,101,32,48,59,114,101,116,117,114,110,32,111,125,118,97,114,32,108,61,84,40,111,46,112,97,116,104,124,124,34,34,41,44,102,61,101,38,38,101,46,112,97,116,104,124,124,34,47,34,44,104,61,108,46,112,97,116,104,63,80,40,108,46,112,97,116,104,44,102,44,110,124,124,111,46,97,112,112,101,110,100,41,58,102,44,100,61,117,40,108,46,113,117,101,114,121,44,111,46,113,117,101,114,121,44,105,38,38,105,46,111,112,116,105,111,110,115,46,112,97,114,115,101,81,117,101,114,121,41,44,112,61,111,46,104,97,115,104,124,124,108,46,104,97,115,104,59,114,101,116,117,114,110,32,112,38,38,34,35,34,33,61,61,112,46,99,104,97,114,65,116,40,48,41,38,38,40,112,61,34,35,34,43,112,41,44,123,95,110,111,114,109,97,108,105,122,101,100,58,33,48,44,112,97,116,104,58,104,44,113,117,101,114,121,58,100,44,104,97,115,104,58,112,125,125,118,97,114,32,116,116,44,101,116,61,91,83,116,114,105,110,103,44,79,98,106,101,99,116,93,44,110,116,61,91,83,116,114,105,110,103,44,65,114,114,97,121,93,44,114,116,61,102,117,110,99,116,105,111,110,40,41,123,125,44,105,116,61,123,110,97,109,101,58,34,82,111,117,116,101,114,76,105,110,107,34,44,112,114,111,112,115,58,123,116,111,58,123,116,121,112,101,58,101,116,44,114,101,113,117,105,114,101,100,58,33,48,125,44,116,97,103,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,97,34,125,44,99,117,115,116,111,109,58,66,111,111,108,101,97,110,44,101,120,97,99,116,58,66,111,111,108,101,97,110,44,101,120,97,99,116,80,97,116,104,58,66,111,111,108,101,97,110,44,97,112,112,101,110,100,58,66,111,111,108,101,97,110,44,114,101,112,108,97,99,101,58,66,111,111,108,101,97,110,44,97,99,116,105,118,101,67,108,97,115,115,58,83,116,114,105,110,103,44,101,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,58,83,116,114,105,110,103,44,97,114,105,97,67,117,114,114,101,110,116,86,97,108,117,101,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,112,97,103,101,34,125,44,101,118,101,110,116,58,123,116,121,112,101,58,110,116,44,100,101,102,97,117,108,116,58,34,99,108,105,99,107,34,125,125,44,114,101,110,100,101,114,58,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,36,114,111,117,116,101,114,44,105,61,116,104,105,115,46,36,114,111,117,116,101,44,111,61,110,46,114,101,115,111,108,118,101,40,116,104,105,115,46,116,111,44,105,44,116,104,105,115,46,97,112,112,101,110,100,41,44,97,61,111,46,108,111,99,97,116,105,111,110,44,115,61,111,46,114,111,117,116,101,44,99,61,111,46,104,114,101,102,44,117,61,123,125,44,108,61,110,46,111,112,116,105,111,110,115,46,108,105,110,107,65,99,116,105,118,101,67,108,97,115,115,44,102,61,110,46,111,112,116,105,111,110,115,46,108,105,110,107,69,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,44,104,61,110,117,108,108,61,61,108,63,34,114,111,117,116,101,114,45,108,105,110,107,45,97,99,116,105,118,101,34,58,108,44,100,61,110,117,108,108,61,61,102,63,34,114,111,117,116,101,114,45,108,105,110,107,45,101,120,97,99,116,45,97,99,116,105,118,101,34,58,102,44,118,61,110,117,108,108,61,61,116,104,105,115,46,97,99,116,105,118,101,67,108,97,115,115,63,104,58,116,104,105,115,46,97,99,116,105,118,101,67,108,97,115,115,44,103,61,110,117,108,108,61,61,116,104,105,115,46,101,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,63,100,58,116,104,105,115,46,101,120,97,99,116,65,99,116,105,118,101,67,108,97,115,115,44,109,61,115,46,114,101,100,105,114,101,99,116,101,100,70,114,111,109,63,112,40,110,117,108,108,44,81,40,115,46,114,101,100,105,114,101,99,116,101,100,70,114,111,109,41,44,110,117,108,108,44,110,41,58,115,59,117,91,103,93,61,121,40,105,44,109,44,116,104,105,115,46,101,120,97,99,116,80,97,116,104,41,44,117,91,118,93,61,116,104,105,115,46,101,120,97,99,116,124,124,116,104,105,115,46,101,120,97,99,116,80,97,116,104,63,117,91,103,93,58,95,40,105,44,109,41,59,118,97,114,32,98,61,117,91,103,93,63,116,104,105,115,46,97,114,105,97,67,117,114,114,101,110,116,86,97,108,117,101,58,110,117,108,108,44,119,61,102,117,110,99,116,105,111,110,40,116,41,123,111,116,40,116,41,38,38,40,101,46,114,101,112,108,97,99,101,63,110,46,114,101,112,108,97,99,101,40,97,44,114,116,41,58,110,46,112,117,115,104,40,97,44,114,116,41,41,125,44,120,61,123,99,108,105,99,107,58,111,116,125,59,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,104,105,115,46,101,118,101,110,116,41,63,116,104,105,115,46,101,118,101,110,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,120,91,116,93,61,119,125,41,41,58,120,91,116,104,105,115,46,101,118,101,110,116,93,61,119,59,118,97,114,32,79,61,123,99,108,97,115,115,58,117,125,44,83,61,33,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,36,104,97,115,78,111,114,109,97,108,38,38,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,38,38,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,46,100,101,102,97,117,108,116,40,123,104,114,101,102,58,99,44,114,111,117,116,101,58,115,44,110,97,118,105,103,97,116,101,58,119,44,105,115,65,99,116,105,118,101,58,117,91,118,93,44,105,115,69,120,97,99,116,65,99,116,105,118,101,58,117,91,103,93,125,41,59,105,102,40,83,41,123,105,102,40,49,61,61,61,83,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,83,91,48,93,59,105,102,40,83,46,108,101,110,103,116,104,62,49,124,124,33,83,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,48,61,61,61,83,46,108,101,110,103,116,104,63,116,40,41,58,116,40,34,115,112,97,110,34,44,123,125,44,83,41,125,105,102,40,34,97,34,61,61,61,116,104,105,115,46,116,97,103,41,79,46,111,110,61,120,44,79,46,97,116,116,114,115,61,123,104,114,101,102,58,99,44,34,97,114,105,97,45,99,117,114,114,101,110,116,34,58,98,125,59,101,108,115,101,123,118,97,114,32,107,61,97,116,40,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,41,59,105,102,40,107,41,123,107,46,105,115,83,116,97,116,105,99,61,33,49,59,118,97,114,32,67,61,107,46,100,97,116,97,61,114,40,123,125,44,107,46,100,97,116,97,41,59,102,111,114,40,118,97,114,32,80,32,105,110,32,67,46,111,110,61,67,46,111,110,124,124,123,125,44,67,46,111,110,41,123,118,97,114,32,84,61,67,46,111,110,91,80,93,59,80,32,105,110,32,120,38,38,40,67,46,111,110,91,80,93,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,84,41,63,84,58,91,84,93,41,125,102,111,114,40,118,97,114,32,106,32,105,110,32,120,41,106,32,105,110,32,67,46,111,110,63,67,46,111,110,91,106,93,46,112,117,115,104,40,120,91,106,93,41,58,67,46,111,110,91,106,93,61,119,59,118,97,114,32,69,61,107,46,100,97,116,97,46,97,116,116,114,115,61,114,40,123,125,44,107,46,100,97,116,97,46,97,116,116,114,115,41,59,69,46,104,114,101,102,61,99,44,69,91,34,97,114,105,97,45,99,117,114,114,101,110,116,34,93,61,98,125,101,108,115,101,32,79,46,111,110,61,120,125,114,101,116,117,114,110,32,116,40,116,104,105,115,46,116,97,103,44,79,44,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,41,125,125,59,102,117,110,99,116,105,111,110,32,111,116,40,116,41,123,105,102,40,33,40,116,46,109,101,116,97,75,101,121,124,124,116,46,97,108,116,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,33,116,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,38,38,40,118,111,105,100,32,48,61,61,61,116,46,98,117,116,116,111,110,124,124,48,61,61,61,116,46,98,117,116,116,111,110,41,41,123,105,102,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,38,38,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,46,103,101,116,65,116,116,114,105,98,117,116,101,41,123,118,97,114,32,101,61,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,114,103,101,116,34,41,59,105,102,40,47,92,98,95,98,108,97,110,107,92,98,47,105,46,116,101,115,116,40,101,41,41,114,101,116,117,114,110,125,114,101,116,117,114,110,32,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,33,48,125,125,102,117,110,99,116,105,111,110,32,97,116,40,116,41,123,105,102,40,116,41,102,111,114,40,118,97,114,32,101,44,110,61,48,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,123,105,102,40,101,61,116,91,110,93,44,34,97,34,61,61,61,101,46,116,97,103,41,114,101,116,117,114,110,32,101,59,105,102,40,101,46,99,104,105,108,100,114,101,110,38,38,40,101,61,97,116,40,101,46,99,104,105,108,100,114,101,110,41,41,41,114,101,116,117,114,110,32,101,125,125,102,117,110,99,116,105,111,110,32,115,116,40,116,41,123,105,102,40,33,115,116,46,105,110,115,116,97,108,108,101,100,124,124,116,116,33,61,61,116,41,123,115,116,46,105,110,115,116,97,108,108,101,100,61,33,48,44,116,116,61,116,59,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,116,125,44,110,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,114,61,116,46,36,111,112,116,105,111,110,115,46,95,112,97,114,101,110,116,86,110,111,100,101,59,101,40,114,41,38,38,101,40,114,61,114,46,100,97,116,97,41,38,38,101,40,114,61,114,46,114,101,103,105,115,116,101,114,82,111,117,116,101,73,110,115,116,97,110,99,101,41,38,38,114,40,116,44,110,41,125,59,116,46,109,105,120,105,110,40,123,98,101,102,111,114,101,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,101,40,116,104,105,115,46,36,111,112,116,105,111,110,115,46,114,111,117,116,101,114,41,63,40,116,104,105,115,46,95,114,111,117,116,101,114,82,111,111,116,61,116,104,105,115,44,116,104,105,115,46,95,114,111,117,116,101,114,61,116,104,105,115,46,36,111,112,116,105,111,110,115,46,114,111,117,116,101,114,44,116,104,105,115,46,95,114,111,117,116,101,114,46,105,110,105,116,40,116,104,105,115,41,44,116,46,117,116,105,108,46,100,101,102,105,110,101,82,101,97,99,116,105,118,101,40,116,104,105,115,44,34,95,114,111,117,116,101,34,44,116,104,105,115,46,95,114,111,117,116,101,114,46,104,105,115,116,111,114,121,46,99,117,114,114,101,110,116,41,41,58,116,104,105,115,46,95,114,111,117,116,101,114,82,111,111,116,61,116,104,105,115,46,36,112,97,114,101,110,116,38,38,116,104,105,115,46,36,112,97,114,101,110,116,46,95,114,111,117,116,101,114,82,111,111,116,124,124,116,104,105,115,44,110,40,116,104,105,115,44,116,104,105,115,41,125,44,100,101,115,116,114,111,121,101,100,58,102,117,110,99,116,105,111,110,40,41,123,110,40,116,104,105,115,41,125,125,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,46,112,114,111,116,111,116,121,112,101,44,34,36,114,111,117,116,101,114,34,44,123,103,101,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,95,114,111,117,116,101,114,82,111,111,116,46,95,114,111,117,116,101,114,125,125,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,46,112,114,111,116,111,116,121,112,101,44,34,36,114,111,117,116,101,34,44,123,103,101,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,95,114,111,117,116,101,114,82,111,111,116,46,95,114,111,117,116,101,125,125,41,44,116,46,99,111,109,112,111,110,101,110,116,40,34,82,111,117,116,101,114,86,105,101,119,34,44,83,41,44,116,46,99,111,109,112,111,110,101,110,116,40,34,82,111,117,116,101,114,76,105,110,107,34,44,105,116,41,59,118,97,114,32,114,61,116,46,99,111,110,102,105,103,46,111,112,116,105,111,110,77,101,114,103,101,83,116,114,97,116,101,103,105,101,115,59,114,46,98,101,102,111,114,101,82,111,117,116,101,69,110,116,101,114,61,114,46,98,101,102,111,114,101,82,111,117,116,101,76,101,97,118,101,61,114,46,98,101,102,111,114,101,82,111,117,116,101,85,112,100,97,116,101,61,114,46,99,114,101,97,116,101,100,125,125,118,97,114,32,99,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,59,102,117,110,99,116,105,111,110,32,117,116,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,101,124,124,91,93,44,97,61,110,124,124,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,115,61,114,124,124,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,108,116,40,111,44,97,44,115,44,116,44,105,41,125,41,41,59,102,111,114,40,118,97,114,32,99,61,48,44,117,61,111,46,108,101,110,103,116,104,59,99,60,117,59,99,43,43,41,34,42,34,61,61,61,111,91,99,93,38,38,40,111,46,112,117,115,104,40,111,46,115,112,108,105,99,101,40,99,44,49,41,91,48,93,41,44,117,45,45,44,99,45,45,41,59,114,101,116,117,114,110,123,112,97,116,104,76,105,115,116,58,111,44,112,97,116,104,77,97,112,58,97,44,110,97,109,101,77,97,112,58,115,125,125,102,117,110,99,116,105,111,110,32,108,116,40,116,44,101,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,61,114,46,112,97,116,104,44,115,61,114,46,110,97,109,101,59,118,97,114,32,99,61,114,46,112,97,116,104,84,111,82,101,103,101,120,112,79,112,116,105,111,110,115,124,124,123,125,44,117,61,104,116,40,97,44,105,44,99,46,115,116,114,105,99,116,41,59,34,98,111,111,108,101,97,110,34,61,61,61,116,121,112,101,111,102,32,114,46,99,97,115,101,83,101,110,115,105,116,105,118,101,38,38,40,99,46,115,101,110,115,105,116,105,118,101,61,114,46,99,97,115,101,83,101,110,115,105,116,105,118,101,41,59,118,97,114,32,108,61,123,112,97,116,104,58,117,44,114,101,103,101,120,58,102,116,40,117,44,99,41,44,99,111,109,112,111,110,101,110,116,115,58,114,46,99,111,109,112,111,110,101,110,116,115,124,124,123,100,101,102,97,117,108,116,58,114,46,99,111,109,112,111,110,101,110,116,125,44,97,108,105,97,115,58,114,46,97,108,105,97,115,63,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,114,46,97,108,105,97,115,63,91,114,46,97,108,105,97,115,93,58,114,46,97,108,105,97,115,58,91,93,44,105,110,115,116,97,110,99,101,115,58,123,125,44,101,110,116,101,114,101,100,67,98,115,58,123,125,44,110,97,109,101,58,115,44,112,97,114,101,110,116,58,105,44,109,97,116,99,104,65,115,58,111,44,114,101,100,105,114,101,99,116,58,114,46,114,101,100,105,114,101,99,116,44,98,101,102,111,114,101,69,110,116,101,114,58,114,46,98,101,102,111,114,101,69,110,116,101,114,44,109,101,116,97,58,114,46,109,101,116,97,124,124,123,125,44,112,114,111,112,115,58,110,117,108,108,61,61,114,46,112,114,111,112,115,63,123,125,58,114,46,99,111,109,112,111,110,101,110,116,115,63,114,46,112,114,111,112,115,58,123,100,101,102,97,117,108,116,58,114,46,112,114,111,112,115,125,125,59,105,102,40,114,46,99,104,105,108,100,114,101,110,38,38,114,46,99,104,105,108,100,114,101,110,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,105,61,111,63,106,40,111,43,34,47,34,43,114,46,112,97,116,104,41,58,118,111,105,100,32,48,59,108,116,40,116,44,101,44,110,44,114,44,108,44,105,41,125,41,41,44,101,91,108,46,112,97,116,104,93,124,124,40,116,46,112,117,115,104,40,108,46,112,97,116,104,41,44,101,91,108,46,112,97,116,104,93,61,108,41,44,118,111,105,100,32,48,33,61,61,114,46,97,108,105,97,115,41,102,111,114,40,118,97,114,32,102,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,46,97,108,105,97,115,41,63,114,46,97,108,105,97,115,58,91,114,46,97,108,105,97,115,93,44,104,61,48,59,104,60,102,46,108,101,110,103,116,104,59,43,43,104,41,123,118,97,114,32,100,61,102,91,104,93,59,48,59,118,97,114,32,112,61,123,112,97,116,104,58,100,44,99,104,105,108,100,114,101,110,58,114,46,99,104,105,108,100,114,101,110,125,59,108,116,40,116,44,101,44,110,44,112,44,105,44,108,46,112,97,116,104,124,124,34,47,34,41,125,115,38,38,40,110,91,115,93,124,124,40,110,91,115,93,61,108,41,41,125,102,117,110,99,116,105,111,110,32,102,116,40,116,44,101,41,123,118,97,114,32,110,61,68,40,116,44,91,93,44,101,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,104,116,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,110,124,124,40,116,61,116,46,114,101,112,108,97,99,101,40,47,92,47,36,47,44,34,34,41,41,44,34,47,34,61,61,61,116,91,48,93,124,124,110,117,108,108,61,61,101,63,116,58,106,40,101,46,112,97,116,104,43,34,47,34,43,116,41,125,102,117,110,99,116,105,111,110,32,100,116,40,116,44,101,41,123,118,97,114,32,110,61,117,116,40,116,41,44,114,61,110,46,112,97,116,104,76,105,115,116,44,105,61,110,46,112,97,116,104,77,97,112,44,111,61,110,46,110,97,109,101,77,97,112,59,102,117,110,99,116,105,111,110,32,97,40,116,41,123,117,116,40,116,44,114,44,105,44,111,41,125,102,117,110,99,116,105,111,110,32,115,40,116,44,101,41,123,118,97,114,32,110,61,34,111,98,106,101,99,116,34,33,61,61,116,121,112,101,111,102,32,116,63,111,91,116,93,58,118,111,105,100,32,48,59,117,116,40,91,101,124,124,116,93,44,114,44,105,44,111,44,110,41,44,110,38,38,117,116,40,110,46,97,108,105,97,115,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,112,97,116,104,58,116,44,99,104,105,108,100,114,101,110,58,91,101,93,125,125,41,41,44,114,44,105,44,111,44,110,41,125,102,117,110,99,116,105,111,110,32,99,40,41,123,114,101,116,117,114,110,32,114,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,91,116,93,125,41,41,125,102,117,110,99,116,105,111,110,32,117,40,116,44,110,44,97,41,123,118,97,114,32,115,61,81,40,116,44,110,44,33,49,44,101,41,44,99,61,115,46,110,97,109,101,59,105,102,40,99,41,123,118,97,114,32,117,61,111,91,99,93,59,105,102,40,33,117,41,114,101,116,117,114,110,32,104,40,110,117,108,108,44,115,41,59,118,97,114,32,108,61,117,46,114,101,103,101,120,46,107,101,121,115,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,116,46,111,112,116,105,111,110,97,108,125,41,41,46,109,97,112,40,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,125,41,41,59,105,102,40,34,111,98,106,101,99,116,34,33,61,61,116,121,112,101,111,102,32,115,46,112,97,114,97,109,115,38,38,40,115,46,112,97,114,97,109,115,61,123,125,41,44,110,38,38,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,110,46,112,97,114,97,109,115,41,102,111,114,40,118,97,114,32,102,32,105,110,32,110,46,112,97,114,97,109,115,41,33,40,102,32,105,110,32,115,46,112,97,114,97,109,115,41,38,38,108,46,105,110,100,101,120,79,102,40,102,41,62,45,49,38,38,40,115,46,112,97,114,97,109,115,91,102,93,61,110,46,112,97,114,97,109,115,91,102,93,41,59,114,101,116,117,114,110,32,115,46,112,97,116,104,61,74,40,117,46,112,97,116,104,44,115,46,112,97,114,97,109,115,44,39,110,97,109,101,100,32,114,111,117,116,101,32,34,39,43,99,43,39,34,39,41,44,104,40,117,44,115,44,97,41,125,105,102,40,115,46,112,97,116,104,41,123,115,46,112,97,114,97,109,115,61,123,125,59,102,111,114,40,118,97,114,32,100,61,48,59,100,60,114,46,108,101,110,103,116,104,59,100,43,43,41,123,118,97,114,32,112,61,114,91,100,93,44,118,61,105,91,112,93,59,105,102,40,112,116,40,118,46,114,101,103,101,120,44,115,46,112,97,116,104,44,115,46,112,97,114,97,109,115,41,41,114,101,116,117,114,110,32,104,40,118,44,115,44,97,41,125,125,114,101,116,117,114,110,32,104,40,110,117,108,108,44,115,41,125,102,117,110,99,116,105,111,110,32,108,40,116,44,110,41,123,118,97,114,32,114,61,116,46,114,101,100,105,114,101,99,116,44,105,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,114,63,114,40,112,40,116,44,110,44,110,117,108,108,44,101,41,41,58,114,59,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,105,38,38,40,105,61,123,112,97,116,104,58,105,125,41,44,33,105,124,124,34,111,98,106,101,99,116,34,33,61,61,116,121,112,101,111,102,32,105,41,114,101,116,117,114,110,32,104,40,110,117,108,108,44,110,41,59,118,97,114,32,97,61,105,44,115,61,97,46,110,97,109,101,44,99,61,97,46,112,97,116,104,44,108,61,110,46,113,117,101,114,121,44,102,61,110,46,104,97,115,104,44,100,61,110,46,112,97,114,97,109,115,59,105,102,40,108,61,97,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,113,117,101,114,121,34,41,63,97,46,113,117,101,114,121,58,108,44,102,61,97,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,104,97,115,104,34,41,63,97,46,104,97,115,104,58,102,44,100,61,97,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,114,97,109,115,34,41,63,97,46,112,97,114,97,109,115,58,100,44,115,41,123,111,91,115,93,59,114,101,116,117,114,110,32,117,40,123,95,110,111,114,109,97,108,105,122,101,100,58,33,48,44,110,97,109,101,58,115,44,113,117,101,114,121,58,108,44,104,97,115,104,58,102,44,112,97,114,97,109,115,58,100,125,44,118,111,105,100,32,48,44,110,41,125,105,102,40,99,41,123,118,97,114,32,118,61,118,116,40,99,44,116,41,44,103,61,74,40,118,44,100,44,39,114,101,100,105,114,101,99,116,32,114,111,117,116,101,32,119,105,116,104,32,112,97,116,104,32,34,39,43,118,43,39,34,39,41,59,114,101,116,117,114,110,32,117,40,123,95,110,111,114,109,97,108,105,122,101,100,58,33,48,44,112,97,116,104,58,103,44,113,117,101,114,121,58,108,44,104,97,115,104,58,102,125,44,118,111,105,100,32,48,44,110,41,125,114,101,116,117,114,110,32,104,40,110,117,108,108,44,110,41,125,102,117,110,99,116,105,111,110,32,102,40,116,44,101,44,110,41,123,118,97,114,32,114,61,74,40,110,44,101,46,112,97,114,97,109,115,44,39,97,108,105,97,115,101,100,32,114,111,117,116,101,32,119,105,116,104,32,112,97,116,104,32,34,39,43,110,43,39,34,39,41,44,105,61,117,40,123,95,110,111,114,109,97,108,105,122,101,100,58,33,48,44,112,97,116,104,58,114,125,41,59,105,102,40,105,41,123,118,97,114,32,111,61,105,46,109,97,116,99,104,101,100,44,97,61,111,91,111,46,108,101,110,103,116,104,45,49,93,59,114,101,116,117,114,110,32,101,46,112,97,114,97,109,115,61,105,46,112,97,114,97,109,115,44,104,40,97,44,101,41,125,114,101,116,117,114,110,32,104,40,110,117,108,108,44,101,41,125,102,117,110,99,116,105,111,110,32,104,40,116,44,110,44,114,41,123,114,101,116,117,114,110,32,116,38,38,116,46,114,101,100,105,114,101,99,116,63,108,40,116,44,114,124,124,110,41,58,116,38,38,116,46,109,97,116,99,104,65,115,63,102,40,116,44,110,44,116,46,109,97,116,99,104,65,115,41,58,112,40,116,44,110,44,114,44,101,41,125,114,101,116,117,114,110,123,109,97,116,99,104,58,117,44,97,100,100,82,111,117,116,101,58,115,44,103,101,116,82,111,117,116,101,115,58,99,44,97,100,100,82,111,117,116,101,115,58,97,125,125,102,117,110,99,116,105,111,110,32,112,116,40,116,44,101,44,110,41,123,118,97,114,32,114,61,101,46,109,97,116,99,104,40,116,41,59,105,102,40,33,114,41,114,101,116,117,114,110,33,49,59,105,102,40,33,110,41,114,101,116,117,114,110,33,48,59,102,111,114,40,118,97,114,32,105,61,49,44,111,61,114,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,123,118,97,114,32,97,61,116,46,107,101,121,115,91,105,45,49,93,59,97,38,38,40,110,91,97,46,110,97,109,101,124,124,34,112,97,116,104,77,97,116,99,104,34,93,61,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,114,91,105,93,63,99,40,114,91,105,93,41,58,114,91,105,93,41,125,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,118,116,40,116,44,101,41,123,114,101,116,117,114,110,32,80,40,116,44,101,46,112,97,114,101,110,116,63,101,46,112,97,114,101,110,116,46,112,97,116,104,58,34,47,34,44,33,48,41,125,118,97,114,32,103,116,61,99,116,38,38,119,105,110,100,111,119,46,112,101,114,102,111,114,109,97,110,99,101,38,38,119,105,110,100,111,119,46,112,101,114,102,111,114,109,97,110,99,101,46,110,111,119,63,119,105,110,100,111,119,46,112,101,114,102,111,114,109,97,110,99,101,58,68,97,116,101,59,102,117,110,99,116,105,111,110,32,109,116,40,41,123,114,101,116,117,114,110,32,103,116,46,110,111,119,40,41,46,116,111,70,105,120,101,100,40,51,41,125,118,97,114,32,98,116,61,109,116,40,41,59,102,117,110,99,116,105,111,110,32,121,116,40,41,123,114,101,116,117,114,110,32,98,116,125,102,117,110,99,116,105,111,110,32,119,116,40,116,41,123,114,101,116,117,114,110,32,98,116,61,116,125,118,97,114,32,95,116,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,102,117,110,99,116,105,111,110,32,120,116,40,41,123,34,115,99,114,111,108,108,82,101,115,116,111,114,97,116,105,111,110,34,105,110,32,119,105,110,100,111,119,46,104,105,115,116,111,114,121,38,38,40,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,115,99,114,111,108,108,82,101,115,116,111,114,97,116,105,111,110,61,34,109,97,110,117,97,108,34,41,59,118,97,114,32,116,61,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,112,114,111,116,111,99,111,108,43,34,47,47,34,43,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,111,115,116,44,101,61,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,114,101,102,46,114,101,112,108,97,99,101,40,116,44,34,34,41,44,110,61,114,40,123,125,44,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,115,116,97,116,101,41,59,114,101,116,117,114,110,32,110,46,107,101,121,61,121,116,40,41,44,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,114,101,112,108,97,99,101,83,116,97,116,101,40,110,44,34,34,44,101,41,44,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,112,111,112,115,116,97,116,101,34,44,107,116,41,44,102,117,110,99,116,105,111,110,40,41,123,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,112,111,112,115,116,97,116,101,34,44,107,116,41,125,125,102,117,110,99,116,105,111,110,32,79,116,40,116,44,101,44,110,44,114,41,123,105,102,40,116,46,97,112,112,41,123,118,97,114,32,105,61,116,46,111,112,116,105,111,110,115,46,115,99,114,111,108,108,66,101,104,97,118,105,111,114,59,105,38,38,116,46,97,112,112,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,67,116,40,41,44,97,61,105,46,99,97,108,108,40,116,44,101,44,110,44,114,63,111,58,110,117,108,108,41,59,97,38,38,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,97,46,116,104,101,110,63,97,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,76,116,40,116,44,111,41,125,41,41,46,99,97,116,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,48,125,41,41,58,76,116,40,97,44,111,41,41,125,41,41,125,125,102,117,110,99,116,105,111,110,32,83,116,40,41,123,118,97,114,32,116,61,121,116,40,41,59,116,38,38,40,95,116,91,116,93,61,123,120,58,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,44,121,58,119,105,110,100,111,119,46,112,97,103,101,89,79,102,102,115,101,116,125,41,125,102,117,110,99,116,105,111,110,32,107,116,40,116,41,123,83,116,40,41,44,116,46,115,116,97,116,101,38,38,116,46,115,116,97,116,101,46,107,101,121,38,38,119,116,40,116,46,115,116,97,116,101,46,107,101,121,41,125,102,117,110,99,116,105,111,110,32,67,116,40,41,123,118,97,114,32,116,61,121,116,40,41,59,105,102,40,116,41,114,101,116,117,114,110,32,95,116,91,116,93,125,102,117,110,99,116,105,111,110,32,80,116,40,116,44,101,41,123,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,114,61,110,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,105,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,114,101,116,117,114,110,123,120,58,105,46,108,101,102,116,45,114,46,108,101,102,116,45,101,46,120,44,121,58,105,46,116,111,112,45,114,46,116,111,112,45,101,46,121,125,125,102,117,110,99,116,105,111,110,32,84,116,40,116,41,123,114,101,116,117,114,110,32,68,116,40,116,46,120,41,124,124,68,116,40,116,46,121,41,125,102,117,110,99,116,105,111,110,32,106,116,40,116,41,123,114,101,116,117,114,110,123,120,58,68,116,40,116,46,120,41,63,116,46,120,58,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,44,121,58,68,116,40,116,46,121,41,63,116,46,121,58,119,105,110,100,111,119,46,112,97,103,101,89,79,102,102,115,101,116,125,125,102,117,110,99,116,105,111,110,32,69,116,40,116,41,123,114,101,116,117,114,110,123,120,58,68,116,40,116,46,120,41,63,116,46,120,58,48,44,121,58,68,116,40,116,46,121,41,63,116,46,121,58,48,125,125,102,117,110,99,116,105,111,110,32,68,116,40,116,41,123,114,101,116,117,114,110,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,116,125,118,97,114,32,65,116,61,47,94,35,92,100,47,59,102,117,110,99,116,105,111,110,32,76,116,40,116,44,101,41,123,118,97,114,32,110,61,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,59,105,102,40,110,38,38,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,46,115,101,108,101,99,116,111,114,41,123,118,97,114,32,114,61,65,116,46,116,101,115,116,40,116,46,115,101,108,101,99,116,111,114,41,63,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,46,115,101,108,101,99,116,111,114,46,115,108,105,99,101,40,49,41,41,58,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,46,115,101,108,101,99,116,111,114,41,59,105,102,40,114,41,123,118,97,114,32,105,61,116,46,111,102,102,115,101,116,38,38,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,46,111,102,102,115,101,116,63,116,46,111,102,102,115,101,116,58,123,125,59,105,61,69,116,40,105,41,44,101,61,80,116,40,114,44,105,41,125,101,108,115,101,32,84,116,40,116,41,38,38,40,101,61,106,116,40,116,41,41,125,101,108,115,101,32,110,38,38,84,116,40,116,41,38,38,40,101,61,106,116,40,116,41,41,59,101,38,38,40,34,115,99,114,111,108,108,66,101,104,97,118,105,111,114,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,46,115,116,121,108,101,63,119,105,110,100,111,119,46,115,99,114,111,108,108,84,111,40,123,108,101,102,116,58,101,46,120,44,116,111,112,58,101,46,121,44,98,101,104,97,118,105,111,114,58,116,46,98,101,104,97,118,105,111,114,125,41,58,119,105,110,100,111,119,46,115,99,114,111,108,108,84,111,40,101,46,120,44,101,46,121,41,41,125,118,97,114,32,73,116,61,99,116,38,38,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,119,105,110,100,111,119,46,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,59,114,101,116,117,114,110,40,45,49,61,61,61,116,46,105,110,100,101,120,79,102,40,34,65,110,100,114,111,105,100,32,50,46,34,41,38,38,45,49,61,61,61,116,46,105,110,100,101,120,79,102,40,34,65,110,100,114,111,105,100,32,52,46,48,34,41,124,124,45,49,61,61,61,116,46,105,110,100,101,120,79,102,40,34,77,111,98,105,108,101,32,83,97,102,97,114,105,34,41,124,124,45,49,33,61,61,116,46,105,110,100,101,120,79,102,40,34,67,104,114,111,109,101,34,41,124,124,45,49,33,61,61,116,46,105,110,100,101,120,79,102,40,34,87,105,110,100,111,119,115,32,80,104,111,110,101,34,41,41,38,38,40,119,105,110,100,111,119,46,104,105,115,116,111,114,121,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,112,117,115,104,83,116,97,116,101,41,125,40,41,59,102,117,110,99,116,105,111,110,32,77,116,40,116,44,101,41,123,83,116,40,41,59,118,97,114,32,110,61,119,105,110,100,111,119,46,104,105,115,116,111,114,121,59,116,114,121,123,105,102,40,101,41,123,118,97,114,32,105,61,114,40,123,125,44,110,46,115,116,97,116,101,41,59,105,46,107,101,121,61,121,116,40,41,44,110,46,114,101,112,108,97,99,101,83,116,97,116,101,40,105,44,34,34,44,116,41,125,101,108,115,101,32,110,46,112,117,115,104,83,116,97,116,101,40,123,107,101,121,58,119,116,40,109,116,40,41,41,125,44,34,34,44,116,41,125,99,97,116,99,104,40,111,41,123,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,91,101,63,34,114,101,112,108,97,99,101,34,58,34,97,115,115,105,103,110,34,93,40,116,41,125,125,102,117,110,99,116,105,111,110,32,36,116,40,116,41,123,77,116,40,116,44,33,48,41,125,102,117,110,99,116,105,111,110,32,70,116,40,116,44,101,44,110,41,123,118,97,114,32,114,61,102,117,110,99,116,105,111,110,40,105,41,123,105,62,61,116,46,108,101,110,103,116,104,63,110,40,41,58,116,91,105,93,63,101,40,116,91,105,93,44,40,102,117,110,99,116,105,111,110,40,41,123,114,40,105,43,49,41,125,41,41,58,114,40,105,43,49,41,125,59,114,40,48,41,125,118,97,114,32,82,116,61,123,114,101,100,105,114,101,99,116,101,100,58,50,44,97,98,111,114,116,101,100,58,52,44,99,97,110,99,101,108,108,101,100,58,56,44,100,117,112,108,105,99,97,116,101,100,58,49,54,125,59,102,117,110,99,116,105,111,110,32,78,116,40,116,44,101,41,123,114,101,116,117,114,110,32,72,116,40,116,44,101,44,82,116,46,114,101,100,105,114,101,99,116,101,100,44,39,82,101,100,105,114,101,99,116,101,100,32,119,104,101,110,32,103,111,105,110,103,32,102,114,111,109,32,34,39,43,116,46,102,117,108,108,80,97,116,104,43,39,34,32,116,111,32,34,39,43,87,116,40,101,41,43,39,34,32,118,105,97,32,97,32,110,97,118,105,103,97,116,105,111,110,32,103,117,97,114,100,46,39,41,125,102,117,110,99,116,105,111,110,32,66,116,40,116,44,101,41,123,118,97,114,32,110,61,72,116,40,116,44,101,44,82,116,46,100,117,112,108,105,99,97,116,101,100,44,39,65,118,111,105,100,101,100,32,114,101,100,117,110,100,97,110,116,32,110,97,118,105,103,97,116,105,111,110,32,116,111,32,99,117,114,114,101,110,116,32,108,111,99,97,116,105,111,110,58,32,34,39,43,116,46,102,117,108,108,80,97,116,104,43,39,34,46,39,41,59,114,101,116,117,114,110,32,110,46,110,97,109,101,61,34,78,97,118,105,103,97,116,105,111,110,68,117,112,108,105,99,97,116,101,100,34,44,110,125,102,117,110,99,116,105,111,110,32,122,116,40,116,44,101,41,123,114,101,116,117,114,110,32,72,116,40,116,44,101,44,82,116,46,99,97,110,99,101,108,108,101,100,44,39,78,97,118,105,103,97,116,105,111,110,32,99,97,110,99,101,108,108,101,100,32,102,114,111,109,32,34,39,43,116,46,102,117,108,108,80,97,116,104,43,39,34,32,116,111,32,34,39,43,101,46,102,117,108,108,80,97,116,104,43,39,34,32,119,105,116,104,32,97,32,110,101,119,32,110,97,118,105,103,97,116,105,111,110,46,39,41,125,102,117,110,99,116,105,111,110,32,86,116,40,116,44,101,41,123,114,101,116,117,114,110,32,72,116,40,116,44,101,44,82,116,46,97,98,111,114,116,101,100,44,39,78,97,118,105,103,97,116,105,111,110,32,97,98,111,114,116,101,100,32,102,114,111,109,32,34,39,43,116,46,102,117,108,108,80,97,116,104,43,39,34,32,116,111,32,34,39,43,101,46,102,117,108,108,80,97,116,104,43,39,34,32,118,105,97,32,97,32,110,97,118,105,103,97,116,105,111,110,32,103,117,97,114,100,46,39,41,125,102,117,110,99,116,105,111,110,32,72,116,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,110,101,119,32,69,114,114,111,114,40,114,41,59,114,101,116,117,114,110,32,105,46,95,105,115,82,111,117,116,101,114,61,33,48,44,105,46,102,114,111,109,61,116,44,105,46,116,111,61,101,44,105,46,116,121,112,101,61,110,44,105,125,118,97,114,32,85,116,61,91,34,112,97,114,97,109,115,34,44,34,113,117,101,114,121,34,44,34,104,97,115,104,34,93,59,102,117,110,99,116,105,111,110,32,87,116,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,116,59,105,102,40,34,112,97,116,104,34,105,110,32,116,41,114,101,116,117,114,110,32,116,46,112,97,116,104,59,118,97,114,32,101,61,123,125,59,114,101,116,117,114,110,32,85,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,110,32,105,110,32,116,38,38,40,101,91,110,93,61,116,91,110,93,41,125,41,41,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,101,44,110,117,108,108,44,50,41,125,102,117,110,99,116,105,111,110,32,71,116,40,116,41,123,114,101,116,117,114,110,32,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,41,46,105,110,100,101,120,79,102,40,34,69,114,114,111,114,34,41,62,45,49,125,102,117,110,99,116,105,111,110,32,113,116,40,116,44,101,41,123,114,101,116,117,114,110,32,71,116,40,116,41,38,38,116,46,95,105,115,82,111,117,116,101,114,38,38,40,110,117,108,108,61,61,101,124,124,116,46,116,121,112,101,61,61,61,101,41,125,102,117,110,99,116,105,111,110,32,89,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,44,114,41,123,118,97,114,32,105,61,33,49,44,111,61,48,44,97,61,110,117,108,108,59,75,116,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,115,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,38,38,118,111,105,100,32,48,61,61,61,116,46,99,105,100,41,123,105,61,33,48,44,111,43,43,59,118,97,114,32,99,44,117,61,81,116,40,40,102,117,110,99,116,105,111,110,40,101,41,123,74,116,40,101,41,38,38,40,101,61,101,46,100,101,102,97,117,108,116,41,44,116,46,114,101,115,111,108,118,101,100,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,101,58,116,116,46,101,120,116,101,110,100,40,101,41,44,110,46,99,111,109,112,111,110,101,110,116,115,91,115,93,61,101,44,111,45,45,44,111,60,61,48,38,38,114,40,41,125,41,41,44,108,61,81,116,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,70,97,105,108,101,100,32,116,111,32,114,101,115,111,108,118,101,32,97,115,121,110,99,32,99,111,109,112,111,110,101,110,116,32,34,43,115,43,34,58,32,34,43,116,59,97,124,124,40,97,61,71,116,40,116,41,63,116,58,110,101,119,32,69,114,114,111,114,40,101,41,44,114,40,97,41,41,125,41,41,59,116,114,121,123,99,61,116,40,117,44,108,41,125,99,97,116,99,104,40,104,41,123,108,40,104,41,125,105,102,40,99,41,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,99,46,116,104,101,110,41,99,46,116,104,101,110,40,117,44,108,41,59,101,108,115,101,123,118,97,114,32,102,61,99,46,99,111,109,112,111,110,101,110,116,59,102,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,102,46,116,104,101,110,38,38,102,46,116,104,101,110,40,117,44,108,41,125,125,125,41,41,44,105,124,124,114,40,41,125,125,102,117,110,99,116,105,111,110,32,75,116,40,116,44,101,41,123,114,101,116,117,114,110,32,88,116,40,116,46,109,97,112,40,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,107,101,121,115,40,116,46,99,111,109,112,111,110,101,110,116,115,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,40,116,46,99,111,109,112,111,110,101,110,116,115,91,110,93,44,116,46,105,110,115,116,97,110,99,101,115,91,110,93,44,116,44,110,41,125,41,41,125,41,41,41,125,102,117,110,99,116,105,111,110,32,88,116,40,116,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,99,111,110,99,97,116,46,97,112,112,108,121,40,91,93,44,116,41,125,118,97,114,32,90,116,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,34,115,121,109,98,111,108,34,61,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,59,102,117,110,99,116,105,111,110,32,74,116,40,116,41,123,114,101,116,117,114,110,32,116,46,95,95,101,115,77,111,100,117,108,101,124,124,90,116,38,38,34,77,111,100,117,108,101,34,61,61,61,116,91,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,93,125,102,117,110,99,116,105,111,110,32,81,116,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,118,97,114,32,110,61,91,93,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,119,104,105,108,101,40,114,45,45,41,110,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,105,102,40,33,101,41,114,101,116,117,114,110,32,101,61,33,48,44,116,46,97,112,112,108,121,40,116,104,105,115,44,110,41,125,125,118,97,114,32,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,114,111,117,116,101,114,61,116,44,116,104,105,115,46,98,97,115,101,61,101,101,40,101,41,44,116,104,105,115,46,99,117,114,114,101,110,116,61,103,44,116,104,105,115,46,112,101,110,100,105,110,103,61,110,117,108,108,44,116,104,105,115,46,114,101,97,100,121,61,33,49,44,116,104,105,115,46,114,101,97,100,121,67,98,115,61,91,93,44,116,104,105,115,46,114,101,97,100,121,69,114,114,111,114,67,98,115,61,91,93,44,116,104,105,115,46,101,114,114,111,114,67,98,115,61,91,93,44,116,104,105,115,46,108,105,115,116,101,110,101,114,115,61,91,93,125,59,102,117,110,99,116,105,111,110,32,101,101,40,116,41,123,105,102,40,33,116,41,105,102,40,99,116,41,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,98,97,115,101,34,41,59,116,61,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,41,124,124,34,47,34,44,116,61,116,46,114,101,112,108,97,99,101,40,47,94,104,116,116,112,115,63,58,92,47,92,47,91,94,92,47,93,43,47,44,34,34,41,125,101,108,115,101,32,116,61,34,47,34,59,114,101,116,117,114,110,34,47,34,33,61,61,116,46,99,104,97,114,65,116,40,48,41,38,38,40,116,61,34,47,34,43,116,41,44,116,46,114,101,112,108,97,99,101,40,47,92,47,36,47,44,34,34,41,125,102,117,110,99,116,105,111,110,32,110,101,40,116,44,101,41,123,118,97,114,32,110,44,114,61,77,97,116,104,46,109,97,120,40,116,46,108,101,110,103,116,104,44,101,46,108,101,110,103,116,104,41,59,102,111,114,40,110,61,48,59,110,60,114,59,110,43,43,41,105,102,40,116,91,110,93,33,61,61,101,91,110,93,41,98,114,101,97,107,59,114,101,116,117,114,110,123,117,112,100,97,116,101,100,58,101,46,115,108,105,99,101,40,48,44,110,41,44,97,99,116,105,118,97,116,101,100,58,101,46,115,108,105,99,101,40,110,41,44,100,101,97,99,116,105,118,97,116,101,100,58,116,46,115,108,105,99,101,40,110,41,125,125,102,117,110,99,116,105,111,110,32,114,101,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,75,116,40,116,44,40,102,117,110,99,116,105,111,110,40,116,44,114,44,105,44,111,41,123,118,97,114,32,97,61,105,101,40,116,44,101,41,59,105,102,40,97,41,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,41,63,97,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,116,44,114,44,105,44,111,41,125,41,41,58,110,40,97,44,114,44,105,44,111,41,125,41,41,59,114,101,116,117,114,110,32,88,116,40,114,63,105,46,114,101,118,101,114,115,101,40,41,58,105,41,125,102,117,110,99,116,105,111,110,32,105,101,40,116,44,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,116,38,38,40,116,61,116,116,46,101,120,116,101,110,100,40,116,41,41,44,116,46,111,112,116,105,111,110,115,91,101,93,125,102,117,110,99,116,105,111,110,32,111,101,40,116,41,123,114,101,116,117,114,110,32,114,101,40,116,44,34,98,101,102,111,114,101,82,111,117,116,101,76,101,97,118,101,34,44,115,101,44,33,48,41,125,102,117,110,99,116,105,111,110,32,97,101,40,116,41,123,114,101,116,117,114,110,32,114,101,40,116,44,34,98,101,102,111,114,101,82,111,117,116,101,85,112,100,97,116,101,34,44,115,101,41,125,102,117,110,99,116,105,111,110,32,115,101,40,116,44,101,41,123,105,102,40,101,41,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,46,97,112,112,108,121,40,101,44,97,114,103,117,109,101,110,116,115,41,125,125,102,117,110,99,116,105,111,110,32,99,101,40,116,41,123,114,101,116,117,114,110,32,114,101,40,116,44,34,98,101,102,111,114,101,82,111,117,116,101,69,110,116,101,114,34,44,40,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,117,101,40,116,44,110,44,114,41,125,41,41,125,102,117,110,99,116,105,111,110,32,117,101,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,105,44,111,41,123,114,101,116,117,114,110,32,116,40,114,44,105,44,40,102,117,110,99,116,105,111,110,40,116,41,123,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,38,38,40,101,46,101,110,116,101,114,101,100,67,98,115,91,110,93,124,124,40,101,46,101,110,116,101,114,101,100,67,98,115,91,110,93,61,91,93,41,44,101,46,101,110,116,101,114,101,100,67,98,115,91,110,93,46,112,117,115,104,40,116,41,41,44,111,40,116,41,125,41,41,125,125,116,101,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,98,61,116,125,44,116,101,46,112,114,111,116,111,116,121,112,101,46,111,110,82,101,97,100,121,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,114,101,97,100,121,63,116,40,41,58,40,116,104,105,115,46,114,101,97,100,121,67,98,115,46,112,117,115,104,40,116,41,44,101,38,38,116,104,105,115,46,114,101,97,100,121,69,114,114,111,114,67,98,115,46,112,117,115,104,40,101,41,41,125,44,116,101,46,112,114,111,116,111,116,121,112,101,46,111,110,69,114,114,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,101,114,114,111,114,67,98,115,46,112,117,115,104,40,116,41,125,44,116,101,46,112,114,111,116,111,116,121,112,101,46,116,114,97,110,115,105,116,105,111,110,84,111,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,61,116,104,105,115,59,116,114,121,123,114,61,116,104,105,115,46,114,111,117,116,101,114,46,109,97,116,99,104,40,116,44,116,104,105,115,46,99,117,114,114,101,110,116,41,125,99,97,116,99,104,40,97,41,123,116,104,114,111,119,32,116,104,105,115,46,101,114,114,111,114,67,98,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,40,97,41,125,41,41,44,97,125,118,97,114,32,111,61,116,104,105,115,46,99,117,114,114,101,110,116,59,116,104,105,115,46,99,111,110,102,105,114,109,84,114,97,110,115,105,116,105,111,110,40,114,44,40,102,117,110,99,116,105,111,110,40,41,123,105,46,117,112,100,97,116,101,82,111,117,116,101,40,114,41,44,101,38,38,101,40,114,41,44,105,46,101,110,115,117,114,101,85,82,76,40,41,44,105,46,114,111,117,116,101,114,46,97,102,116,101,114,72,111,111,107,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,40,114,44,111,41,125,41,41,44,105,46,114,101,97,100,121,124,124,40,105,46,114,101,97,100,121,61,33,48,44,105,46,114,101,97,100,121,67,98,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,40,114,41,125,41,41,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,110,38,38,110,40,116,41,44,116,38,38,33,105,46,114,101,97,100,121,38,38,40,113,116,40,116,44,82,116,46,114,101,100,105,114,101,99,116,101,100,41,38,38,111,61,61,61,103,124,124,40,105,46,114,101,97,100,121,61,33,48,44,105,46,114,101,97,100,121,69,114,114,111,114,67,98,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,40,116,41,125,41,41,41,41,125,41,41,125,44,116,101,46,112,114,111,116,111,116,121,112,101,46,99,111,110,102,105,114,109,84,114,97,110,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,44,101,44,114,41,123,118,97,114,32,105,61,116,104,105,115,44,111,61,116,104,105,115,46,99,117,114,114,101,110,116,59,116,104,105,115,46,112,101,110,100,105,110,103,61,116,59,118,97,114,32,97,61,102,117,110,99,116,105,111,110,40,116,41,123,33,113,116,40,116,41,38,38,71,116,40,116,41,38,38,40,105,46,101,114,114,111,114,67,98,115,46,108,101,110,103,116,104,63,105,46,101,114,114,111,114,67,98,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,40,116,41,125,41,41,58,40,110,40,33,49,44,34,117,110,99,97,117,103,104,116,32,101,114,114,111,114,32,100,117,114,105,110,103,32,114,111,117,116,101,32,110,97,118,105,103,97,116,105,111,110,58,34,41,44,99,111,110,115,111,108,101,46,101,114,114,111,114,40,116,41,41,41,44,114,38,38,114,40,116,41,125,44,115,61,116,46,109,97,116,99,104,101,100,46,108,101,110,103,116,104,45,49,44,99,61,111,46,109,97,116,99,104,101,100,46,108,101,110,103,116,104,45,49,59,105,102,40,121,40,116,44,111,41,38,38,115,61,61,61,99,38,38,116,46,109,97,116,99,104,101,100,91,115,93,61,61,61,111,46,109,97,116,99,104,101,100,91,99,93,41,114,101,116,117,114,110,32,116,104,105,115,46,101,110,115,117,114,101,85,82,76,40,41,44,97,40,66,116,40,111,44,116,41,41,59,118,97,114,32,117,61,110,101,40,116,104,105,115,46,99,117,114,114,101,110,116,46,109,97,116,99,104,101,100,44,116,46,109,97,116,99,104,101,100,41,44,108,61,117,46,117,112,100,97,116,101,100,44,102,61,117,46,100,101,97,99,116,105,118,97,116,101,100,44,104,61,117,46,97,99,116,105,118,97,116,101,100,44,100,61,91,93,46,99,111,110,99,97,116,40,111,101,40,102,41,44,116,104,105,115,46,114,111,117,116,101,114,46,98,101,102,111,114,101,72,111,111,107,115,44,97,101,40,108,41,44,104,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,98,101,102,111,114,101,69,110,116,101,114,125,41,41,44,89,116,40,104,41,41,44,112,61,102,117,110,99,116,105,111,110,40,101,44,110,41,123,105,102,40,105,46,112,101,110,100,105,110,103,33,61,61,116,41,114,101,116,117,114,110,32,97,40,122,116,40,111,44,116,41,41,59,116,114,121,123,101,40,116,44,111,44,40,102,117,110,99,116,105,111,110,40,101,41,123,33,49,61,61,61,101,63,40,105,46,101,110,115,117,114,101,85,82,76,40,33,48,41,44,97,40,86,116,40,111,44,116,41,41,41,58,71,116,40,101,41,63,40,105,46,101,110,115,117,114,101,85,82,76,40,33,48,41,44,97,40,101,41,41,58,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,101,124,124,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,101,38,38,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,101,46,112,97,116,104,124,124,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,101,46,110,97,109,101,41,63,40,97,40,78,116,40,111,44,116,41,41,44,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,101,38,38,101,46,114,101,112,108,97,99,101,63,105,46,114,101,112,108,97,99,101,40,101,41,58,105,46,112,117,115,104,40,101,41,41,58,110,40,101,41,125,41,41,125,99,97,116,99,104,40,114,41,123,97,40,114,41,125,125,59,70,116,40,100,44,112,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,99,101,40,104,41,44,114,61,110,46,99,111,110,99,97,116,40,105,46,114,111,117,116,101,114,46,114,101,115,111,108,118,101,72,111,111,107,115,41,59,70,116,40,114,44,112,44,40,102,117,110,99,116,105,111,110,40,41,123,105,102,40,105,46,112,101,110,100,105,110,103,33,61,61,116,41,114,101,116,117,114,110,32,97,40,122,116,40,111,44,116,41,41,59,105,46,112,101,110,100,105,110,103,61,110,117,108,108,44,101,40,116,41,44,105,46,114,111,117,116,101,114,46,97,112,112,38,38,105,46,114,111,117,116,101,114,46,97,112,112,46,36,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,79,40,116,41,125,41,41,125,41,41,125,41,41,125,44,116,101,46,112,114,111,116,111,116,121,112,101,46,117,112,100,97,116,101,82,111,117,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,99,117,114,114,101,110,116,61,116,44,116,104,105,115,46,99,98,38,38,116,104,105,115,46,99,98,40,116,41,125,44,116,101,46,112,114,111,116,111,116,121,112,101,46,115,101,116,117,112,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,125,44,116,101,46,112,114,111,116,111,116,121,112,101,46,116,101,97,114,100,111,119,110,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,108,105,115,116,101,110,101,114,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,40,41,125,41,41,44,116,104,105,115,46,108,105,115,116,101,110,101,114,115,61,91,93,44,116,104,105,115,46,99,117,114,114,101,110,116,61,103,44,116,104,105,115,46,112,101,110,100,105,110,103,61,110,117,108,108,125,59,118,97,114,32,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,110,41,123,116,46,99,97,108,108,40,116,104,105,115,44,101,44,110,41,44,116,104,105,115,46,95,115,116,97,114,116,76,111,99,97,116,105,111,110,61,102,101,40,116,104,105,115,46,98,97,115,101,41,125,114,101,116,117,114,110,32,116,38,38,40,101,46,95,95,112,114,111,116,111,95,95,61,116,41,44,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,41,44,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,44,101,46,112,114,111,116,111,116,121,112,101,46,115,101,116,117,112,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,105,102,40,33,40,116,104,105,115,46,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,62,48,41,41,123,118,97,114,32,101,61,116,104,105,115,46,114,111,117,116,101,114,44,110,61,101,46,111,112,116,105,111,110,115,46,115,99,114,111,108,108,66,101,104,97,118,105,111,114,44,114,61,73,116,38,38,110,59,114,38,38,116,104,105,115,46,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,120,116,40,41,41,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,46,99,117,114,114,101,110,116,44,105,61,102,101,40,116,46,98,97,115,101,41,59,116,46,99,117,114,114,101,110,116,61,61,61,103,38,38,105,61,61,61,116,46,95,115,116,97,114,116,76,111,99,97,116,105,111,110,124,124,116,46,116,114,97,110,115,105,116,105,111,110,84,111,40,105,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,38,38,79,116,40,101,44,116,44,110,44,33,48,41,125,41,41,125,59,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,112,111,112,115,116,97,116,101,34,44,105,41,44,116,104,105,115,46,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,40,102,117,110,99,116,105,111,110,40,41,123,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,112,111,112,115,116,97,116,101,34,44,105,41,125,41,41,125,125,44,101,46,112,114,111,116,111,116,121,112,101,46,103,111,61,102,117,110,99,116,105,111,110,40,116,41,123,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,103,111,40,116,41,125,44,101,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,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,44,105,61,116,104,105,115,44,111,61,105,46,99,117,114,114,101,110,116,59,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,84,111,40,116,44,40,102,117,110,99,116,105,111,110,40,116,41,123,77,116,40,106,40,114,46,98,97,115,101,43,116,46,102,117,108,108,80,97,116,104,41,41,44,79,116,40,114,46,114,111,117,116,101,114,44,116,44,111,44,33,49,41,44,101,38,38,101,40,116,41,125,41,44,110,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,114,101,112,108,97,99,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,44,105,61,116,104,105,115,44,111,61,105,46,99,117,114,114,101,110,116,59,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,84,111,40,116,44,40,102,117,110,99,116,105,111,110,40,116,41,123,36,116,40,106,40,114,46,98,97,115,101,43,116,46,102,117,108,108,80,97,116,104,41,41,44,79,116,40,114,46,114,111,117,116,101,114,44,116,44,111,44,33,49,41,44,101,38,38,101,40,116,41,125,41,44,110,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,101,110,115,117,114,101,85,82,76,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,102,101,40,116,104,105,115,46,98,97,115,101,41,33,61,61,116,104,105,115,46,99,117,114,114,101,110,116,46,102,117,108,108,80,97,116,104,41,123,118,97,114,32,101,61,106,40,116,104,105,115,46,98,97,115,101,43,116,104,105,115,46,99,117,114,114,101,110,116,46,102,117,108,108,80,97,116,104,41,59,116,63,77,116,40,101,41,58,36,116,40,101,41,125,125,44,101,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,117,114,114,101,110,116,76,111,99,97,116,105,111,110,61,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,46,98,97,115,101,41,125,44,101,125,40,116,101,41,59,102,117,110,99,116,105,111,110,32,102,101,40,116,41,123,118,97,114,32,101,61,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,112,97,116,104,110,97,109,101,59,114,101,116,117,114,110,32,116,38,38,48,61,61,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,105,110,100,101,120,79,102,40,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,38,38,40,101,61,101,46,115,108,105,99,101,40,116,46,108,101,110,103,116,104,41,41,44,40,101,124,124,34,47,34,41,43,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,115,101,97,114,99,104,43,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,97,115,104,125,118,97,114,32,104,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,110,44,114,41,123,116,46,99,97,108,108,40,116,104,105,115,44,101,44,110,41,44,114,38,38,100,101,40,116,104,105,115,46,98,97,115,101,41,124,124,112,101,40,41,125,114,101,116,117,114,110,32,116,38,38,40,101,46,95,95,112,114,111,116,111,95,95,61,116,41,44,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,41,44,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,44,101,46,112,114,111,116,111,116,121,112,101,46,115,101,116,117,112,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,105,102,40,33,40,116,104,105,115,46,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,62,48,41,41,123,118,97,114,32,101,61,116,104,105,115,46,114,111,117,116,101,114,44,110,61,101,46,111,112,116,105,111,110,115,46,115,99,114,111,108,108,66,101,104,97,118,105,111,114,44,114,61,73,116,38,38,110,59,114,38,38,116,104,105,115,46,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,120,116,40,41,41,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,46,99,117,114,114,101,110,116,59,112,101,40,41,38,38,116,46,116,114,97,110,115,105,116,105,111,110,84,111,40,118,101,40,41,44,40,102,117,110,99,116,105,111,110,40,110,41,123,114,38,38,79,116,40,116,46,114,111,117,116,101,114,44,110,44,101,44,33,48,41,44,73,116,124,124,98,101,40,110,46,102,117,108,108,80,97,116,104,41,125,41,41,125,44,111,61,73,116,63,34,112,111,112,115,116,97,116,101,34,58,34,104,97,115,104,99,104,97,110,103,101,34,59,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,111,44,105,41,44,116,104,105,115,46,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,40,102,117,110,99,116,105,111,110,40,41,123,119,105,110,100,111,119,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,111,44,105,41,125,41,41,125,125,44,101,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,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,44,105,61,116,104,105,115,44,111,61,105,46,99,117,114,114,101,110,116,59,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,84,111,40,116,44,40,102,117,110,99,116,105,111,110,40,116,41,123,109,101,40,116,46,102,117,108,108,80,97,116,104,41,44,79,116,40,114,46,114,111,117,116,101,114,44,116,44,111,44,33,49,41,44,101,38,38,101,40,116,41,125,41,44,110,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,114,101,112,108,97,99,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,44,105,61,116,104,105,115,44,111,61,105,46,99,117,114,114,101,110,116,59,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,84,111,40,116,44,40,102,117,110,99,116,105,111,110,40,116,41,123,98,101,40,116,46,102,117,108,108,80,97,116,104,41,44,79,116,40,114,46,114,111,117,116,101,114,44,116,44,111,44,33,49,41,44,101,38,38,101,40,116,41,125,41,44,110,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,103,111,61,102,117,110,99,116,105,111,110,40,116,41,123,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,103,111,40,116,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,101,110,115,117,114,101,85,82,76,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,99,117,114,114,101,110,116,46,102,117,108,108,80,97,116,104,59,118,101,40,41,33,61,61,101,38,38,40,116,63,109,101,40,101,41,58,98,101,40,101,41,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,117,114,114,101,110,116,76,111,99,97,116,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,118,101,40,41,125,44,101,125,40,116,101,41,59,102,117,110,99,116,105,111,110,32,100,101,40,116,41,123,118,97,114,32,101,61,102,101,40,116,41,59,105,102,40,33,47,94,92,47,35,47,46,116,101,115,116,40,101,41,41,114,101,116,117,114,110,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,114,101,112,108,97,99,101,40,106,40,116,43,34,47,35,34,43,101,41,41,44,33,48,125,102,117,110,99,116,105,111,110,32,112,101,40,41,123,118,97,114,32,116,61,118,101,40,41,59,114,101,116,117,114,110,34,47,34,61,61,61,116,46,99,104,97,114,65,116,40,48,41,124,124,40,98,101,40,34,47,34,43,116,41,44,33,49,41,125,102,117,110,99,116,105,111,110,32,118,101,40,41,123,118,97,114,32,116,61,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,114,101,102,44,101,61,116,46,105,110,100,101,120,79,102,40,34,35,34,41,59,114,101,116,117,114,110,32,101,60,48,63,34,34,58,40,116,61,116,46,115,108,105,99,101,40,101,43,49,41,44,116,41,125,102,117,110,99,116,105,111,110,32,103,101,40,116,41,123,118,97,114,32,101,61,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,114,101,102,44,110,61,101,46,105,110,100,101,120,79,102,40,34,35,34,41,44,114,61,110,62,61,48,63,101,46,115,108,105,99,101,40,48,44,110,41,58,101,59,114,101,116,117,114,110,32,114,43,34,35,34,43,116,125,102,117,110,99,116,105,111,110,32,109,101,40,116,41,123,73,116,63,77,116,40,103,101,40,116,41,41,58,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,97,115,104,61,116,125,102,117,110,99,116,105,111,110,32,98,101,40,116,41,123,73,116,63,36,116,40,103,101,40,116,41,41,58,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,114,101,112,108,97,99,101,40,103,101,40,116,41,41,125,118,97,114,32,121,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,110,41,123,116,46,99,97,108,108,40,116,104,105,115,44,101,44,110,41,44,116,104,105,115,46,115,116,97,99,107,61,91,93,44,116,104,105,115,46,105,110,100,101,120,61,45,49,125,114,101,116,117,114,110,32,116,38,38,40,101,46,95,95,112,114,111,116,111,95,95,61,116,41,44,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,41,44,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,44,101,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,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,59,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,84,111,40,116,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,46,115,116,97,99,107,61,114,46,115,116,97,99,107,46,115,108,105,99,101,40,48,44,114,46,105,110,100,101,120,43,49,41,46,99,111,110,99,97,116,40,116,41,44,114,46,105,110,100,101,120,43,43,44,101,38,38,101,40,116,41,125,41,44,110,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,114,101,112,108,97,99,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,59,116,104,105,115,46,116,114,97,110,115,105,116,105,111,110,84,111,40,116,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,46,115,116,97,99,107,61,114,46,115,116,97,99,107,46,115,108,105,99,101,40,48,44,114,46,105,110,100,101,120,41,46,99,111,110,99,97,116,40,116,41,44,101,38,38,101,40,116,41,125,41,44,110,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,103,111,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,105,110,100,101,120,43,116,59,105,102,40,33,40,110,60,48,124,124,110,62,61,116,104,105,115,46,115,116,97,99,107,46,108,101,110,103,116,104,41,41,123,118,97,114,32,114,61,116,104,105,115,46,115,116,97,99,107,91,110,93,59,116,104,105,115,46,99,111,110,102,105,114,109,84,114,97,110,115,105,116,105,111,110,40,114,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,101,46,99,117,114,114,101,110,116,59,101,46,105,110,100,101,120,61,110,44,101,46,117,112,100,97,116,101,82,111,117,116,101,40,114,41,44,101,46,114,111,117,116,101,114,46,97,102,116,101,114,72,111,111,107,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,40,114,44,116,41,125,41,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,113,116,40,116,44,82,116,46,100,117,112,108,105,99,97,116,101,100,41,38,38,40,101,46,105,110,100,101,120,61,110,41,125,41,41,125,125,44,101,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,117,114,114,101,110,116,76,111,99,97,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,115,116,97,99,107,91,116,104,105,115,46,115,116,97,99,107,46,108,101,110,103,116,104,45,49,93,59,114,101,116,117,114,110,32,116,63,116,46,102,117,108,108,80,97,116,104,58,34,47,34,125,44,101,46,112,114,111,116,111,116,121,112,101,46,101,110,115,117,114,101,85,82,76,61,102,117,110,99,116,105,111,110,40,41,123,125,44,101,125,40,116,101,41,44,119,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,123,125,41,44,116,104,105,115,46,97,112,112,61,110,117,108,108,44,116,104,105,115,46,97,112,112,115,61,91,93,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,44,116,104,105,115,46,98,101,102,111,114,101,72,111,111,107,115,61,91,93,44,116,104,105,115,46,114,101,115,111,108,118,101,72,111,111,107,115,61,91,93,44,116,104,105,115,46,97,102,116,101,114,72,111,111,107,115,61,91,93,44,116,104,105,115,46,109,97,116,99,104,101,114,61,100,116,40,116,46,114,111,117,116,101,115,124,124,91,93,44,116,104,105,115,41,59,118,97,114,32,101,61,116,46,109,111,100,101,124,124,34,104,97,115,104,34,59,115,119,105,116,99,104,40,116,104,105,115,46,102,97,108,108,98,97,99,107,61,34,104,105,115,116,111,114,121,34,61,61,61,101,38,38,33,73,116,38,38,33,49,33,61,61,116,46,102,97,108,108,98,97,99,107,44,116,104,105,115,46,102,97,108,108,98,97,99,107,38,38,40,101,61,34,104,97,115,104,34,41,44,99,116,124,124,40,101,61,34,97,98,115,116,114,97,99,116,34,41,44,116,104,105,115,46,109,111,100,101,61,101,44,101,41,123,99,97,115,101,34,104,105,115,116,111,114,121,34,58,116,104,105,115,46,104,105,115,116,111,114,121,61,110,101,119,32,108,101,40,116,104,105,115,44,116,46,98,97,115,101,41,59,98,114,101,97,107,59,99,97,115,101,34,104,97,115,104,34,58,116,104,105,115,46,104,105,115,116,111,114,121,61,110,101,119,32,104,101,40,116,104,105,115,44,116,46,98,97,115,101,44,116,104,105,115,46,102,97,108,108,98,97,99,107,41,59,98,114,101,97,107,59,99,97,115,101,34,97,98,115,116,114,97,99,116,34,58,116,104,105,115,46,104,105,115,116,111,114,121,61,110,101,119,32,121,101,40,116,104,105,115,44,116,46,98,97,115,101,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,48,125,125,44,95,101,61,123,99,117,114,114,101,110,116,82,111,117,116,101,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,59,102,117,110,99,116,105,111,110,32,120,101,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,112,117,115,104,40,101,41,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,46,105,110,100,101,120,79,102,40,101,41,59,110,62,45,49,38,38,116,46,115,112,108,105,99,101,40,110,44,49,41,125,125,102,117,110,99,116,105,111,110,32,79,101,40,116,44,101,44,110,41,123,118,97,114,32,114,61,34,104,97,115,104,34,61,61,61,110,63,34,35,34,43,101,58,101,59,114,101,116,117,114,110,32,116,63,106,40,116,43,34,47,34,43,114,41,58,114,125,119,101,46,112,114,111,116,111,116,121,112,101,46,109,97,116,99,104,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,97,116,99,104,101,114,46,109,97,116,99,104,40,116,44,101,44,110,41,125,44,95,101,46,99,117,114,114,101,110,116,82,111,117,116,101,46,103,101,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,104,105,115,116,111,114,121,38,38,116,104,105,115,46,104,105,115,116,111,114,121,46,99,117,114,114,101,110,116,125,44,119,101,46,112,114,111,116,111,116,121,112,101,46,105,110,105,116,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,104,105,115,46,97,112,112,115,46,112,117,115,104,40,116,41,44,116,46,36,111,110,99,101,40,34,104,111,111,107,58,100,101,115,116,114,111,121,101,100,34,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,101,46,97,112,112,115,46,105,110,100,101,120,79,102,40,116,41,59,110,62,45,49,38,38,101,46,97,112,112,115,46,115,112,108,105,99,101,40,110,44,49,41,44,101,46,97,112,112,61,61,61,116,38,38,40,101,46,97,112,112,61,101,46,97,112,112,115,91,48,93,124,124,110,117,108,108,41,44,101,46,97,112,112,124,124,101,46,104,105,115,116,111,114,121,46,116,101,97,114,100,111,119,110,40,41,125,41,41,44,33,116,104,105,115,46,97,112,112,41,123,116,104,105,115,46,97,112,112,61,116,59,118,97,114,32,110,61,116,104,105,115,46,104,105,115,116,111,114,121,59,105,102,40,110,32,105,110,115,116,97,110,99,101,111,102,32,108,101,124,124,110,32,105,110,115,116,97,110,99,101,111,102,32,104,101,41,123,118,97,114,32,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,110,46,99,117,114,114,101,110,116,44,105,61,101,46,111,112,116,105,111,110,115,46,115,99,114,111,108,108,66,101,104,97,118,105,111,114,44,111,61,73,116,38,38,105,59,111,38,38,34,102,117,108,108,80,97,116,104,34,105,110,32,116,38,38,79,116,40,101,44,116,44,114,44,33,49,41,125,44,105,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,115,101,116,117,112,76,105,115,116,101,110,101,114,115,40,41,44,114,40,116,41,125,59,110,46,116,114,97,110,115,105,116,105,111,110,84,111,40,110,46,103,101,116,67,117,114,114,101,110,116,76,111,99,97,116,105,111,110,40,41,44,105,44,105,41,125,110,46,108,105,115,116,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,97,112,112,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,95,114,111,117,116,101,61,116,125,41,41,125,41,41,125,125,44,119,101,46,112,114,111,116,111,116,121,112,101,46,98,101,102,111,114,101,69,97,99,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,120,101,40,116,104,105,115,46,98,101,102,111,114,101,72,111,111,107,115,44,116,41,125,44,119,101,46,112,114,111,116,111,116,121,112,101,46,98,101,102,111,114,101,82,101,115,111,108,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,120,101,40,116,104,105,115,46,114,101,115,111,108,118,101,72,111,111,107,115,44,116,41,125,44,119,101,46,112,114,111,116,111,116,121,112,101,46,97,102,116,101,114,69,97,99,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,120,101,40,116,104,105,115,46,97,102,116,101,114,72,111,111,107,115,44,116,41,125,44,119,101,46,112,114,111,116,111,116,121,112,101,46,111,110,82,101,97,100,121,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,104,105,115,116,111,114,121,46,111,110,82,101,97,100,121,40,116,44,101,41,125,44,119,101,46,112,114,111,116,111,116,121,112,101,46,111,110,69,114,114,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,104,105,115,116,111,114,121,46,111,110,69,114,114,111,114,40,116,41,125,44,119,101,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,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,59,105,102,40,33,101,38,38,33,110,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,80,114,111,109,105,115,101,41,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,46,104,105,115,116,111,114,121,46,112,117,115,104,40,116,44,101,44,110,41,125,41,41,59,116,104,105,115,46,104,105,115,116,111,114,121,46,112,117,115,104,40,116,44,101,44,110,41,125,44,119,101,46,112,114,111,116,111,116,121,112,101,46,114,101,112,108,97,99,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,59,105,102,40,33,101,38,38,33,110,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,80,114,111,109,105,115,101,41,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,46,104,105,115,116,111,114,121,46,114,101,112,108,97,99,101,40,116,44,101,44,110,41,125,41,41,59,116,104,105,115,46,104,105,115,116,111,114,121,46,114,101,112,108,97,99,101,40,116,44,101,44,110,41,125,44,119,101,46,112,114,111,116,111,116,121,112,101,46,103,111,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,104,105,115,116,111,114,121,46,103,111,40,116,41,125,44,119,101,46,112,114,111,116,111,116,121,112,101,46,98,97,99,107,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,103,111,40,45,49,41,125,44,119,101,46,112,114,111,116,111,116,121,112,101,46,102,111,114,119,97,114,100,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,103,111,40,49,41,125,44,119,101,46,112,114,111,116,111,116,121,112,101,46,103,101,116,77,97,116,99,104,101,100,67,111,109,112,111,110,101,110,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,63,116,46,109,97,116,99,104,101,100,63,116,58,116,104,105,115,46,114,101,115,111,108,118,101,40,116,41,46,114,111,117,116,101,58,116,104,105,115,46,99,117,114,114,101,110,116,82,111,117,116,101,59,114,101,116,117,114,110,32,101,63,91,93,46,99,111,110,99,97,116,46,97,112,112,108,121,40,91,93,44,101,46,109,97,116,99,104,101,100,46,109,97,112,40,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,107,101,121,115,40,116,46,99,111,109,112,111,110,101,110,116,115,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,99,111,109,112,111,110,101,110,116,115,91,101,93,125,41,41,125,41,41,41,58,91,93,125,44,119,101,46,112,114,111,116,111,116,121,112,101,46,114,101,115,111,108,118,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,101,61,101,124,124,116,104,105,115,46,104,105,115,116,111,114,121,46,99,117,114,114,101,110,116,59,118,97,114,32,114,61,81,40,116,44,101,44,110,44,116,104,105,115,41,44,105,61,116,104,105,115,46,109,97,116,99,104,40,114,44,101,41,44,111,61,105,46,114,101,100,105,114,101,99,116,101,100,70,114,111,109,124,124,105,46,102,117,108,108,80,97,116,104,44,97,61,116,104,105,115,46,104,105,115,116,111,114,121,46,98,97,115,101,44,115,61,79,101,40,97,44,111,44,116,104,105,115,46,109,111,100,101,41,59,114,101,116,117,114,110,123,108,111,99,97,116,105,111,110,58,114,44,114,111,117,116,101,58,105,44,104,114,101,102,58,115,44,110,111,114,109,97,108,105,122,101,100,84,111,58,114,44,114,101,115,111,108,118,101,100,58,105,125,125,44,119,101,46,112,114,111,116,111,116,121,112,101,46,103,101,116,82,111,117,116,101,115,61,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,114,46,103,101,116,82,111,117,116,101,115,40,41,125,44,119,101,46,112,114,111,116,111,116,121,112,101,46,97,100,100,82,111,117,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,109,97,116,99,104,101,114,46,97,100,100,82,111,117,116,101,40,116,44,101,41,44,116,104,105,115,46,104,105,115,116,111,114,121,46,99,117,114,114,101,110,116,33,61,61,103,38,38,116,104,105,115,46,104,105,115,116,111,114,121,46,116,114,97,110,115,105,116,105,111,110,84,111,40,116,104,105,115,46,104,105,115,116,111,114,121,46,103,101,116,67,117,114,114,101,110,116,76,111,99,97,116,105,111,110,40,41,41,125,44,119,101,46,112,114,111,116,111,116,121,112,101,46,97,100,100,82,111,117,116,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,109,97,116,99,104,101,114,46,97,100,100,82,111,117,116,101,115,40,116,41,44,116,104,105,115,46,104,105,115,116,111,114,121,46,99,117,114,114,101,110,116,33,61,61,103,38,38,116,104,105,115,46,104,105,115,116,111,114,121,46,116,114,97,110,115,105,116,105,111,110,84,111,40,116,104,105,115,46,104,105,115,116,111,114,121,46,103,101,116,67,117,114,114,101,110,116,76,111,99,97,116,105,111,110,40,41,41,125,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,119,101,46,112,114,111,116,111,116,121,112,101,44,95,101,41,44,119,101,46,105,110,115,116,97,108,108,61,115,116,44,119,101,46,118,101,114,115,105,111,110,61,34,51,46,53,46,49,34,44,119,101,46,105,115,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,61,113,116,44,119,101,46,78,97,118,105,103,97,116,105,111,110,70,97,105,108,117,114,101,84,121,112,101,61,82,116,44,119,101,46,83,84,65,82,84,95,76,79,67,65,84,73,79,78,61,103,44,99,116,38,38,119,105,110,100,111,119,46,86,117,101,38,38,119,105,110,100,111,119,46,86,117,101,46,117,115,101,40,119,101,41,44,101,91,34,90,34,93,61,119,101,125,44,49,50,48,49,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,99,111,110,115,116,32,110,61,123,115,101,108,101,99,116,105,111,110,85,112,58,91,51,56,93,44,115,101,108,101,99,116,105,111,110,68,111,119,110,58,91,52,48,93,44,115,101,108,101,99,116,58,91,49,51,93,44,104,105,100,101,76,105,115,116,58,91,50,55,93,44,115,104,111,119,76,105,115,116,58,91,52,48,93,44,97,117,116,111,99,111,109,112,108,101,116,101,58,91,51,50,44,49,51,93,125,44,114,61,123,105,110,112,117,116,58,83,116,114,105,110,103,44,115,101,108,101,99,116,58,79,98,106,101,99,116,125,59,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,115,112,108,105,116,40,34,46,34,41,46,114,101,100,117,99,101,40,40,40,116,44,101,41,61,62,116,61,61,61,79,98,106,101,99,116,40,116,41,63,116,91,101,93,58,116,41,44,116,41,125,102,117,110,99,116,105,111,110,32,111,40,116,44,101,41,123,114,101,116,117,114,110,32,97,40,116,44,101,46,107,101,121,67,111,100,101,41,125,102,117,110,99,116,105,111,110,32,97,40,116,44,101,41,123,105,102,40,116,46,108,101,110,103,116,104,60,61,48,41,114,101,116,117,114,110,33,49,59,99,111,110,115,116,32,110,61,116,61,62,116,46,115,111,109,101,40,40,116,61,62,116,61,61,61,101,41,41,59,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,91,48,93,41,63,116,46,115,111,109,101,40,40,116,61,62,110,40,116,41,41,41,58,110,40,116,41,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,110,63,101,63,101,40,116,41,58,116,58,40,116,38,38,116,46,116,104,101,110,124,124,40,116,61,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,116,41,41,44,101,63,116,46,116,104,101,110,40,101,41,58,116,41,125,102,117,110,99,116,105,111,110,32,99,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,91,93,44,110,61,48,59,110,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,110,43,43,41,101,91,110,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,116,114,121,123,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,116,46,97,112,112,108,121,40,116,104,105,115,44,101,41,41,125,99,97,116,99,104,40,114,41,123,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,114,41,125,125,125,102,117,110,99,116,105,111,110,32,117,40,41,123,125,102,117,110,99,116,105,111,110,32,108,40,116,44,101,41,123,105,102,40,33,101,41,114,101,116,117,114,110,32,116,38,38,116,46,116,104,101,110,63,116,46,116,104,101,110,40,117,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,125,102,117,110,99,116,105,111,110,32,102,40,116,44,101,41,123,118,97,114,32,110,61,116,40,41,59,114,101,116,117,114,110,32,110,38,38,110,46,116,104,101,110,63,110,46,116,104,101,110,40,101,41,58,101,40,110,41,125,102,117,110,99,116,105,111,110,32,104,40,116,41,123,118,97,114,32,101,61,116,40,41,59,105,102,40,101,38,38,101,46,116,104,101,110,41,114,101,116,117,114,110,32,101,46,116,104,101,110,40,117,41,125,102,117,110,99,116,105,111,110,32,100,40,116,44,101,41,123,116,114,121,123,118,97,114,32,110,61,116,40,41,125,99,97,116,99,104,40,114,41,123,114,101,116,117,114,110,32,101,40,114,41,125,114,101,116,117,114,110,32,110,38,38,110,46,116,104,101,110,63,110,46,116,104,101,110,40,118,111,105,100,32,48,44,101,41,58,110,125,102,117,110,99,116,105,111,110,32,112,40,116,44,101,41,123,116,114,121,123,118,97,114,32,110,61,116,40,41,125,99,97,116,99,104,40,114,41,123,114,101,116,117,114,110,32,101,40,41,125,114,101,116,117,114,110,32,110,38,38,110,46,116,104,101,110,63,110,46,116,104,101,110,40,101,44,101,41,58,101,40,41,125,118,97,114,32,118,61,123,114,101,110,100,101,114,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,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,110,61,116,46,95,115,101,108,102,46,95,99,124,124,101,59,114,101,116,117,114,110,32,110,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,34,44,99,108,97,115,115,58,91,116,46,115,116,121,108,101,115,46,118,117,101,83,105,109,112,108,101,83,117,103,103,101,115,116,44,123,100,101,115,105,103,110,101,100,58,33,116,46,100,101,115,116,121,108,101,100,44,102,111,99,117,115,58,116,46,105,115,73,110,70,111,99,117,115,125,93,44,111,110,58,123,107,101,121,100,111,119,110,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,101,46,116,121,112,101,46,105,110,100,101,120,79,102,40,34,107,101,121,34,41,38,38,116,46,95,107,40,101,46,107,101,121,67,111,100,101,44,34,116,97,98,34,44,57,44,101,46,107,101,121,44,34,84,97,98,34,41,41,114,101,116,117,114,110,32,110,117,108,108,59,116,46,105,115,84,97,98,98,101,100,61,33,48,125,125,125,44,91,110,40,34,100,105,118,34,44,123,114,101,102,58,34,105,110,112,117,116,83,108,111,116,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,105,110,112,117,116,45,119,114,97,112,112,101,114,34,44,99,108,97,115,115,58,116,46,115,116,121,108,101,115,46,105,110,112,117,116,87,114,97,112,112,101,114,44,97,116,116,114,115,58,123,114,111,108,101,58,34,99,111,109,98,111,98,111,120,34,44,34,97,114,105,97,45,104,97,115,112,111,112,117,112,34,58,34,108,105,115,116,98,111,120,34,44,34,97,114,105,97,45,111,119,110,115,34,58,116,46,108,105,115,116,73,100,44,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,58,116,46,108,105,115,116,83,104,111,119,110,38,38,33,116,46,114,101,109,111,118,101,76,105,115,116,63,34,116,114,117,101,34,58,34,102,97,108,115,101,34,125,125,44,91,116,46,95,116,40,34,100,101,102,97,117,108,116,34,44,91,110,40,34,105,110,112,117,116,34,44,116,46,95,98,40,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,101,102,97,117,108,116,45,105,110,112,117,116,34,44,99,108,97,115,115,58,116,46,115,116,121,108,101,115,46,100,101,102,97,117,108,116,73,110,112,117,116,44,100,111,109,80,114,111,112,115,58,123,118,97,108,117,101,58,116,46,116,101,120,116,124,124,34,34,125,125,44,34,105,110,112,117,116,34,44,116,46,36,97,116,116,114,115,44,33,49,41,41,93,41,93,44,50,41,44,116,46,95,118,40,34,32,34,41,44,110,40,34,116,114,97,110,115,105,116,105,111,110,34,44,123,97,116,116,114,115,58,123,110,97,109,101,58,34,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,34,125,125,44,91,116,46,108,105,115,116,83,104,111,119,110,38,38,33,116,46,114,101,109,111,118,101,76,105,115,116,63,110,40,34,117,108,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,115,117,103,103,101,115,116,105,111,110,115,34,44,99,108,97,115,115,58,116,46,115,116,121,108,101,115,46,115,117,103,103,101,115,116,105,111,110,115,44,97,116,116,114,115,58,123,105,100,58,116,46,108,105,115,116,73,100,44,114,111,108,101,58,34,108,105,115,116,98,111,120,34,44,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,58,116,46,108,105,115,116,73,100,125,125,44,91,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,91,34,109,105,115,99,45,105,116,101,109,45,97,98,111,118,101,34,93,63,110,40,34,108,105,34,44,91,116,46,95,116,40,34,109,105,115,99,45,105,116,101,109,45,97,98,111,118,101,34,44,110,117,108,108,44,123,115,117,103,103,101,115,116,105,111,110,115,58,116,46,115,117,103,103,101,115,116,105,111,110,115,44,113,117,101,114,121,58,116,46,116,101,120,116,125,41,93,44,50,41,58,116,46,95,101,40,41,44,116,46,95,118,40,34,32,34,41,44,116,46,95,108,40,116,46,115,117,103,103,101,115,116,105,111,110,115,44,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,114,101,116,117,114,110,32,110,40,34,108,105,34,44,123,107,101,121,58,116,46,103,101,116,73,100,40,101,44,114,41,44,115,116,97,116,105,99,67,108,97,115,115,58,34,115,117,103,103,101,115,116,45,105,116,101,109,34,44,99,108,97,115,115,58,91,116,46,115,116,121,108,101,115,46,115,117,103,103,101,115,116,73,116,101,109,44,123,115,101,108,101,99,116,101,100,58,116,46,105,115,83,101,108,101,99,116,101,100,40,101,41,44,104,111,118,101,114,58,116,46,105,115,72,111,118,101,114,101,100,40,101,41,125,93,44,97,116,116,114,115,58,123,114,111,108,101,58,34,111,112,116,105,111,110,34,44,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,58,116,46,105,115,72,111,118,101,114,101,100,40,101,41,124,124,116,46,105,115,83,101,108,101,99,116,101,100,40,101,41,63,34,116,114,117,101,34,58,34,102,97,108,115,101,34,44,105,100,58,116,46,103,101,116,73,100,40,101,44,114,41,125,44,111,110,58,123,109,111,117,115,101,101,110,116,101,114,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,104,111,118,101,114,40,101,44,110,46,116,97,114,103,101,116,41,125,44,109,111,117,115,101,108,101,97,118,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,104,111,118,101,114,40,118,111,105,100,32,48,41,125,44,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,115,117,103,103,101,115,116,105,111,110,67,108,105,99,107,40,101,44,110,41,125,125,125,44,91,116,46,95,116,40,34,115,117,103,103,101,115,116,105,111,110,45,105,116,101,109,34,44,91,110,40,34,115,112,97,110,34,44,91,116,46,95,118,40,116,46,95,115,40,116,46,100,105,115,112,108,97,121,80,114,111,112,101,114,116,121,40,101,41,41,41,93,41,93,44,123,97,117,116,111,99,111,109,112,108,101,116,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,97,117,116,111,99,111,109,112,108,101,116,101,84,101,120,116,40,101,41,125,44,115,117,103,103,101,115,116,105,111,110,58,101,44,113,117,101,114,121,58,116,46,116,101,120,116,125,41,93,44,50,41,125,41,41,44,116,46,95,118,40,34,32,34,41,44,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,91,34,109,105,115,99,45,105,116,101,109,45,98,101,108,111,119,34,93,63,110,40,34,108,105,34,44,91,116,46,95,116,40,34,109,105,115,99,45,105,116,101,109,45,98,101,108,111,119,34,44,110,117,108,108,44,123,115,117,103,103,101,115,116,105,111,110,115,58,116,46,115,117,103,103,101,115,116,105,111,110,115,44,113,117,101,114,121,58,116,46,116,101,120,116,125,41,93,44,50,41,58,116,46,95,101,40,41,93,44,50,41,58,116,46,95,101,40,41,93,41,93,44,49,41,125,44,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,58,91,93,44,110,97,109,101,58,34,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,34,44,105,110,104,101,114,105,116,65,116,116,114,115,58,33,49,44,109,111,100,101,108,58,123,112,114,111,112,58,34,118,97,108,117,101,34,44,101,118,101,110,116,58,34,105,110,112,117,116,34,125,44,112,114,111,112,115,58,123,115,116,121,108,101,115,58,123,116,121,112,101,58,79,98,106,101,99,116,44,100,101,102,97,117,108,116,58,40,41,61,62,40,123,125,41,125,44,99,111,110,116,114,111,108,115,58,123,116,121,112,101,58,79,98,106,101,99,116,44,100,101,102,97,117,108,116,58,40,41,61,62,110,125,44,109,105,110,76,101,110,103,116,104,58,123,116,121,112,101,58,78,117,109,98,101,114,44,100,101,102,97,117,108,116,58,49,125,44,109,97,120,83,117,103,103,101,115,116,105,111,110,115,58,123,116,121,112,101,58,78,117,109,98,101,114,44,100,101,102,97,117,108,116,58,49,48,125,44,100,105,115,112,108,97,121,65,116,116,114,105,98,117,116,101,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,116,105,116,108,101,34,125,44,118,97,108,117,101,65,116,116,114,105,98,117,116,101,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,105,100,34,125,44,108,105,115,116,58,123,116,121,112,101,58,91,70,117,110,99,116,105,111,110,44,65,114,114,97,121,93,44,100,101,102,97,117,108,116,58,40,41,61,62,91,93,125,44,114,101,109,111,118,101,76,105,115,116,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,44,100,101,115,116,121,108,101,100,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,44,102,105,108,116,101,114,66,121,81,117,101,114,121,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,44,102,105,108,116,101,114,58,123,116,121,112,101,58,70,117,110,99,116,105,111,110,44,100,101,102,97,117,108,116,40,116,44,101,41,123,114,101,116,117,114,110,33,101,124,124,126,116,104,105,115,46,100,105,115,112,108,97,121,80,114,111,112,101,114,116,121,40,116,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,105,110,100,101,120,79,102,40,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,125,125,44,100,101,98,111,117,110,99,101,58,123,116,121,112,101,58,78,117,109,98,101,114,44,100,101,102,97,117,108,116,58,48,125,44,110,117,108,108,97,98,108,101,83,101,108,101,99,116,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,44,118,97,108,117,101,58,123,125,44,109,111,100,101,58,123,116,121,112,101,58,83,116,114,105,110,103,44,100,101,102,97,117,108,116,58,34,105,110,112,117,116,34,44,118,97,108,105,100,97,116,111,114,58,116,61,62,33,33,126,79,98,106,101,99,116,46,107,101,121,115,40,114,41,46,105,110,100,101,120,79,102,40,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,125,44,112,114,101,118,101,110,116,72,105,100,101,58,123,116,121,112,101,58,66,111,111,108,101,97,110,44,100,101,102,97,117,108,116,58,33,49,125,125,44,119,97,116,99,104,58,123,109,111,100,101,58,123,104,97,110,100,108,101,114,40,116,44,101,41,123,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,111,112,116,105,111,110,115,46,109,111,100,101,108,46,101,118,101,110,116,61,116,44,116,104,105,115,46,36,112,97,114,101,110,116,38,38,116,104,105,115,46,36,112,97,114,101,110,116,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,44,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,40,41,61,62,123,34,105,110,112,117,116,34,61,61,61,116,63,116,104,105,115,46,36,101,109,105,116,40,34,105,110,112,117,116,34,44,116,104,105,115,46,116,101,120,116,41,58,116,104,105,115,46,36,101,109,105,116,40,34,115,101,108,101,99,116,34,44,116,104,105,115,46,115,101,108,101,99,116,101,100,41,125,41,41,125,44,105,109,109,101,100,105,97,116,101,58,33,48,125,44,118,97,108,117,101,58,123,104,97,110,100,108,101,114,40,116,41,123,34,115,116,114,105,110,103,34,33,61,61,116,121,112,101,111,102,32,116,38,38,40,116,61,116,104,105,115,46,100,105,115,112,108,97,121,80,114,111,112,101,114,116,121,40,116,41,41,44,116,104,105,115,46,117,112,100,97,116,101,84,101,120,116,79,117,116,115,105,100,101,40,116,41,125,44,105,109,109,101,100,105,97,116,101,58,33,48,125,125,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,115,101,108,101,99,116,101,100,58,110,117,108,108,44,104,111,118,101,114,101,100,58,110,117,108,108,44,115,117,103,103,101,115,116,105,111,110,115,58,91,93,44,108,105,115,116,83,104,111,119,110,58,33,49,44,105,110,112,117,116,69,108,101,109,101,110,116,58,110,117,108,108,44,99,97,110,83,101,110,100,58,33,48,44,116,105,109,101,111,117,116,73,110,115,116,97,110,99,101,58,110,117,108,108,44,116,101,120,116,58,116,104,105,115,46,118,97,108,117,101,44,105,115,80,108,97,105,110,83,117,103,103,101,115,116,105,111,110,58,33,49,44,105,115,67,108,105,99,107,105,110,103,58,33,49,44,105,115,73,110,70,111,99,117,115,58,33,49,44,105,115,70,97,108,115,101,70,111,99,117,115,58,33,49,44,105,115,84,97,98,98,101,100,58,33,49,44,99,111,110,116,114,111,108,83,99,104,101,109,101,58,123,125,44,108,105,115,116,73,100,58,96,36,123,116,104,105,115,46,95,117,105,100,125,45,115,117,103,103,101,115,116,105,111,110,115,96,125,125,44,99,111,109,112,117,116,101,100,58,123,108,105,115,116,73,115,82,101,113,117,101,115,116,40,41,123,114,101,116,117,114,110,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,108,105,115,116,125,44,105,110,112,117,116,73,115,67,111,109,112,111,110,101,110,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,38,38,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,46,108,101,110,103,116,104,62,48,38,38,33,33,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,91,48,93,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,125,44,105,110,112,117,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,112,117,116,73,115,67,111,109,112,111,110,101,110,116,63,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,91,48,93,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,58,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,125,44,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,112,117,116,73,115,67,111,109,112,111,110,101,110,116,63,34,36,111,110,34,58,34,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,34,125,44,111,102,102,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,112,117,116,73,115,67,111,109,112,111,110,101,110,116,63,34,36,111,102,102,34,58,34,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,34,125,44,104,111,118,101,114,101,100,73,110,100,101,120,40,41,123,102,111,114,40,108,101,116,32,116,61,48,59,116,60,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,59,116,43,43,41,123,99,111,110,115,116,32,101,61,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,91,116,93,59,105,102,40,116,104,105,115,46,104,111,118,101,114,101,100,38,38,116,104,105,115,46,118,97,108,117,101,80,114,111,112,101,114,116,121,40,116,104,105,115,46,104,111,118,101,114,101,100,41,61,61,116,104,105,115,46,118,97,108,117,101,80,114,111,112,101,114,116,121,40,101,41,41,114,101,116,117,114,110,32,116,125,114,101,116,117,114,110,45,49,125,44,116,101,120,116,76,101,110,103,116,104,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,101,120,116,38,38,116,104,105,115,46,116,101,120,116,46,108,101,110,103,116,104,124,124,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,46,118,97,108,117,101,46,108,101,110,103,116,104,124,124,48,125,44,105,115,83,101,108,101,99,116,101,100,85,112,84,111,68,97,116,101,40,41,123,114,101,116,117,114,110,33,33,116,104,105,115,46,115,101,108,101,99,116,101,100,38,38,116,104,105,115,46,100,105,115,112,108,97,121,80,114,111,112,101,114,116,121,40,116,104,105,115,46,115,101,108,101,99,116,101,100,41,61,61,61,116,104,105,115,46,116,101,120,116,125,125,44,99,114,101,97,116,101,100,40,41,123,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,61,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,125,44,110,44,116,104,105,115,46,99,111,110,116,114,111,108,115,41,125,44,109,111,117,110,116,101,100,58,99,40,40,102,117,110,99,116,105,111,110,40,41,123,99,111,110,115,116,32,116,61,116,104,105,115,59,114,101,116,117,114,110,32,115,40,116,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,44,40,102,117,110,99,116,105,111,110,40,41,123,116,46,36,110,101,120,116,84,105,99,107,40,40,40,41,61,62,123,116,46,105,110,112,117,116,69,108,101,109,101,110,116,61,116,46,36,114,101,102,115,91,34,105,110,112,117,116,83,108,111,116,34,93,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,105,110,112,117,116,34,41,44,116,46,105,110,112,117,116,69,108,101,109,101,110,116,63,40,116,46,115,101,116,73,110,112,117,116,65,114,105,97,65,116,116,114,105,98,117,116,101,115,40,41,44,116,46,112,114,101,112,97,114,101,69,118,101,110,116,72,97,110,100,108,101,114,115,40,33,48,41,41,58,99,111,110,115,111,108,101,46,101,114,114,111,114,40,34,78,111,32,105,110,112,117,116,32,101,108,101,109,101,110,116,32,102,111,117,110,100,34,41,125,41,41,125,41,41,125,41,41,44,98,101,102,111,114,101,68,101,115,116,114,111,121,40,41,123,116,104,105,115,46,112,114,101,112,97,114,101,69,118,101,110,116,72,97,110,100,108,101,114,115,40,33,49,41,125,44,109,101,116,104,111,100,115,58,123,105,115,69,113,117,97,108,40,116,44,101,41,123,114,101,116,117,114,110,32,101,38,38,116,104,105,115,46,118,97,108,117,101,80,114,111,112,101,114,116,121,40,116,41,61,61,116,104,105,115,46,118,97,108,117,101,80,114,111,112,101,114,116,121,40,101,41,125,44,105,115,83,101,108,101,99,116,101,100,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,115,69,113,117,97,108,40,116,44,116,104,105,115,46,115,101,108,101,99,116,101,100,41,125,44,105,115,72,111,118,101,114,101,100,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,115,69,113,117,97,108,40,116,44,116,104,105,115,46,104,111,118,101,114,101,100,41,125,44,115,101,116,73,110,112,117,116,65,114,105,97,65,116,116,114,105,98,117,116,101,115,40,41,123,116,104,105,115,46,105,110,112,117,116,69,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,97,99,116,105,118,101,100,101,115,99,101,110,100,97,110,116,34,44,34,34,41,44,116,104,105,115,46,105,110,112,117,116,69,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,97,117,116,111,99,111,109,112,108,101,116,101,34,44,34,108,105,115,116,34,41,44,116,104,105,115,46,105,110,112,117,116,69,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,99,111,110,116,114,111,108,115,34,44,116,104,105,115,46,108,105,115,116,73,100,41,125,44,112,114,101,112,97,114,101,69,118,101,110,116,72,97,110,100,108,101,114,115,40,116,41,123,99,111,110,115,116,32,101,61,116,104,105,115,91,116,63,34,111,110,34,58,34,111,102,102,34,93,44,110,61,123,99,108,105,99,107,58,116,104,105,115,46,115,104,111,119,83,117,103,103,101,115,116,105,111,110,115,44,107,101,121,100,111,119,110,58,116,104,105,115,46,111,110,75,101,121,68,111,119,110,44,107,101,121,117,112,58,116,104,105,115,46,111,110,76,105,115,116,75,101,121,85,112,125,44,114,61,79,98,106,101,99,116,46,97,115,115,105,103,110,40,123,98,108,117,114,58,116,104,105,115,46,111,110,66,108,117,114,44,102,111,99,117,115,58,116,104,105,115,46,111,110,70,111,99,117,115,44,105,110,112,117,116,58,116,104,105,115,46,111,110,73,110,112,117,116,125,44,110,41,59,102,111,114,40,99,111,110,115,116,32,111,32,105,110,32,114,41,116,104,105,115,46,105,110,112,117,116,91,101,93,40,111,44,114,91,111,93,41,59,99,111,110,115,116,32,105,61,116,63,34,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,34,58,34,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,34,59,102,111,114,40,99,111,110,115,116,32,111,32,105,110,32,110,41,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,91,105,93,40,111,44,110,91,111,93,41,125,44,105,115,83,99,111,112,101,100,83,108,111,116,69,109,112,116,121,40,116,41,123,105,102,40,116,41,123,99,111,110,115,116,32,101,61,116,40,116,104,105,115,41,59,114,101,116,117,114,110,33,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,124,124,101,38,38,40,101,46,116,97,103,124,124,101,46,99,111,110,116,101,120,116,124,124,101,46,116,101,120,116,124,124,101,46,99,104,105,108,100,114,101,110,41,41,125,114,101,116,117,114,110,33,48,125,44,109,105,115,99,83,108,111,116,115,65,114,101,69,109,112,116,121,40,41,123,99,111,110,115,116,32,116,61,91,34,109,105,115,99,45,105,116,101,109,45,97,98,111,118,101,34,44,34,109,105,115,99,45,105,116,101,109,45,98,101,108,111,119,34,93,46,109,97,112,40,40,116,61,62,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,91,116,93,41,41,59,105,102,40,116,46,101,118,101,114,121,40,40,116,61,62,33,33,116,41,41,41,114,101,116,117,114,110,32,116,46,101,118,101,114,121,40,116,104,105,115,46,105,115,83,99,111,112,101,100,83,108,111,116,69,109,112,116,121,46,98,105,110,100,40,116,104,105,115,41,41,59,99,111,110,115,116,32,101,61,116,46,102,105,110,100,40,40,116,61,62,33,33,116,41,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,83,99,111,112,101,100,83,108,111,116,69,109,112,116,121,46,99,97,108,108,40,116,104,105,115,44,101,41,125,44,103,101,116,80,114,111,112,101,114,116,121,66,121,65,116,116,114,105,98,117,116,101,40,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,115,80,108,97,105,110,83,117,103,103,101,115,116,105,111,110,63,116,58,118,111,105,100,32,48,33,61,61,116,121,112,101,111,102,32,116,63,105,40,116,44,101,41,58,116,125,44,100,105,115,112,108,97,121,80,114,111,112,101,114,116,121,40,116,41,123,105,102,40,116,104,105,115,46,105,115,80,108,97,105,110,83,117,103,103,101,115,116,105,111,110,41,114,101,116,117,114,110,32,116,59,108,101,116,32,101,61,116,104,105,115,46,103,101,116,80,114,111,112,101,114,116,121,66,121,65,116,116,114,105,98,117,116,101,40,116,44,116,104,105,115,46,100,105,115,112,108,97,121,65,116,116,114,105,98,117,116,101,41,59,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,101,38,38,40,101,61,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,41,44,112,114,111,99,101,115,115,38,38,34,112,114,111,100,117,99,116,105,111,110,34,46,105,110,100,101,120,79,102,40,34,100,101,118,34,41,41,44,83,116,114,105,110,103,40,101,124,124,34,34,41,125,44,118,97,108,117,101,80,114,111,112,101,114,116,121,40,116,41,123,105,102,40,116,104,105,115,46,105,115,80,108,97,105,110,83,117,103,103,101,115,116,105,111,110,41,114,101,116,117,114,110,32,116,59,99,111,110,115,116,32,101,61,116,104,105,115,46,103,101,116,80,114,111,112,101,114,116,121,66,121,65,116,116,114,105,98,117,116,101,40,116,44,116,104,105,115,46,118,97,108,117,101,65,116,116,114,105,98,117,116,101,41,59,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,101,38,38,99,111,110,115,111,108,101,46,101,114,114,111,114,40,34,91,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,93,58,32,80,108,101,97,115,101,44,32,99,104,101,99,107,32,105,102,32,121,111,117,32,112,97,115,115,101,100,32,39,118,97,108,117,101,45,97,116,116,114,105,98,117,116,101,39,32,40,100,101,102,97,117,108,116,32,105,115,32,39,105,100,39,41,32,97,110,100,32,39,100,105,115,112,108,97,121,45,97,116,116,114,105,98,117,116,101,39,32,40,100,101,102,97,117,108,116,32,105,115,32,39,116,105,116,108,101,39,41,32,112,114,111,112,115,32,99,111,114,114,101,99,116,108,121,46,92,110,32,32,32,32,32,32,32,32,89,111,117,114,32,108,105,115,116,32,111,98,106,101,99,116,115,32,115,104,111,117,108,100,32,97,108,119,97,121,115,32,99,111,110,116,97,105,110,32,97,32,117,110,105,113,117,101,32,105,100,101,110,116,105,102,105,101,114,46,34,41,44,101,125,44,97,117,116,111,99,111,109,112,108,101,116,101,84,101,120,116,40,116,41,123,116,104,105,115,46,115,101,116,84,101,120,116,40,116,104,105,115,46,100,105,115,112,108,97,121,80,114,111,112,101,114,116,121,40,116,41,41,125,44,115,101,116,84,101,120,116,40,116,41,123,116,104,105,115,46,36,110,101,120,116,84,105,99,107,40,40,40,41,61,62,123,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,46,118,97,108,117,101,61,116,44,116,104,105,115,46,116,101,120,116,61,116,44,116,104,105,115,46,36,101,109,105,116,40,34,105,110,112,117,116,34,44,116,41,125,41,41,125,44,115,101,108,101,99,116,40,116,41,123,40,116,104,105,115,46,115,101,108,101,99,116,101,100,33,61,61,116,124,124,116,104,105,115,46,110,117,108,108,97,98,108,101,83,101,108,101,99,116,38,38,33,116,41,38,38,40,116,104,105,115,46,115,101,108,101,99,116,101,100,61,116,44,116,104,105,115,46,36,101,109,105,116,40,34,115,101,108,101,99,116,34,44,116,41,44,116,38,38,116,104,105,115,46,97,117,116,111,99,111,109,112,108,101,116,101,84,101,120,116,40,116,41,41,44,116,104,105,115,46,104,111,118,101,114,40,110,117,108,108,41,125,44,104,111,118,101,114,40,116,44,101,41,123,99,111,110,115,116,32,110,61,116,63,116,104,105,115,46,103,101,116,73,100,40,116,44,116,104,105,115,46,104,111,118,101,114,101,100,73,110,100,101,120,41,58,34,34,59,116,104,105,115,46,105,110,112,117,116,69,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,97,99,116,105,118,101,100,101,115,99,101,110,100,97,110,116,34,44,110,41,44,116,38,38,116,33,61,61,116,104,105,115,46,104,111,118,101,114,101,100,38,38,116,104,105,115,46,36,101,109,105,116,40,34,104,111,118,101,114,34,44,116,44,101,41,44,116,104,105,115,46,104,111,118,101,114,101,100,61,116,125,44,104,105,100,101,76,105,115,116,40,41,123,116,104,105,115,46,108,105,115,116,83,104,111,119,110,38,38,40,116,104,105,115,46,108,105,115,116,83,104,111,119,110,61,33,49,44,116,104,105,115,46,104,111,118,101,114,40,110,117,108,108,41,44,116,104,105,115,46,36,101,109,105,116,40,34,104,105,100,101,45,108,105,115,116,34,41,41,125,44,115,104,111,119,76,105,115,116,40,41,123,116,104,105,115,46,108,105,115,116,83,104,111,119,110,124,124,116,104,105,115,46,116,101,120,116,76,101,110,103,116,104,62,61,116,104,105,115,46,109,105,110,76,101,110,103,116,104,38,38,40,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,62,48,124,124,33,116,104,105,115,46,109,105,115,99,83,108,111,116,115,65,114,101,69,109,112,116,121,40,41,41,38,38,40,116,104,105,115,46,108,105,115,116,83,104,111,119,110,61,33,48,44,116,104,105,115,46,36,101,109,105,116,40,34,115,104,111,119,45,108,105,115,116,34,41,41,125,44,115,104,111,119,83,117,103,103,101,115,116,105,111,110,115,58,99,40,40,102,117,110,99,116,105,111,110,40,41,123,99,111,110,115,116,32,116,61,116,104,105,115,59,114,101,116,117,114,110,32,102,40,40,102,117,110,99,116,105,111,110,40,41,123,105,102,40,48,61,61,61,116,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,38,38,116,46,109,105,110,76,101,110,103,116,104,60,61,116,46,116,101,120,116,76,101,110,103,116,104,41,114,101,116,117,114,110,32,116,46,115,104,111,119,76,105,115,116,40,41,44,108,40,116,46,114,101,115,101,97,114,99,104,40,41,41,125,41,44,40,102,117,110,99,116,105,111,110,40,41,123,116,46,115,104,111,119,76,105,115,116,40,41,125,41,41,125,41,41,44,111,110,83,104,111,119,76,105,115,116,40,116,41,123,111,40,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,115,104,111,119,76,105,115,116,44,116,41,38,38,116,104,105,115,46,115,104,111,119,83,117,103,103,101,115,116,105,111,110,115,40,41,125,44,109,111,118,101,83,101,108,101,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,108,105,115,116,83,104,111,119,110,38,38,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,38,38,111,40,91,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,115,101,108,101,99,116,105,111,110,85,112,44,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,115,101,108,101,99,116,105,111,110,68,111,119,110,93,44,116,41,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,99,111,110,115,116,32,101,61,111,40,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,115,101,108,101,99,116,105,111,110,68,111,119,110,44,116,41,44,110,61,50,42,101,45,49,44,114,61,101,63,48,58,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,45,49,44,105,61,101,63,116,104,105,115,46,104,111,118,101,114,101,100,73,110,100,101,120,60,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,45,49,58,116,104,105,115,46,104,111,118,101,114,101,100,73,110,100,101,120,62,48,59,108,101,116,32,97,61,110,117,108,108,59,97,61,116,104,105,115,46,104,111,118,101,114,101,100,63,105,63,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,91,116,104,105,115,46,104,111,118,101,114,101,100,73,110,100,101,120,43,110,93,58,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,91,114,93,58,116,104,105,115,46,115,101,108,101,99,116,101,100,124,124,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,91,114,93,44,116,104,105,115,46,104,111,118,101,114,40,97,41,125,125,44,111,110,75,101,121,68,111,119,110,40,116,41,123,99,111,110,115,116,32,101,61,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,115,101,108,101,99,116,44,110,61,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,104,105,100,101,76,105,115,116,59,34,69,110,116,101,114,34,61,61,61,116,46,107,101,121,38,38,116,104,105,115,46,108,105,115,116,83,104,111,119,110,38,38,97,40,91,101,44,110,93,44,49,51,41,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,34,84,97,98,34,61,61,61,116,46,107,101,121,38,38,116,104,105,115,46,104,111,118,101,114,101,100,38,38,116,104,105,115,46,115,101,108,101,99,116,40,116,104,105,115,46,104,111,118,101,114,101,100,41,44,116,104,105,115,46,111,110,83,104,111,119,76,105,115,116,40,116,41,44,116,104,105,115,46,109,111,118,101,83,101,108,101,99,116,105,111,110,40,116,41,44,116,104,105,115,46,111,110,65,117,116,111,99,111,109,112,108,101,116,101,40,116,41,125,44,111,110,76,105,115,116,75,101,121,85,112,40,116,41,123,99,111,110,115,116,32,101,61,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,115,101,108,101,99,116,44,110,61,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,104,105,100,101,76,105,115,116,59,116,104,105,115,46,108,105,115,116,83,104,111,119,110,38,38,111,40,91,101,44,110,93,44,116,41,38,38,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,111,40,101,44,116,41,38,38,116,104,105,115,46,115,101,108,101,99,116,40,116,104,105,115,46,104,111,118,101,114,101,100,41,44,116,104,105,115,46,104,105,100,101,76,105,115,116,40,41,41,125,44,111,110,65,117,116,111,99,111,109,112,108,101,116,101,40,116,41,123,111,40,116,104,105,115,46,99,111,110,116,114,111,108,83,99,104,101,109,101,46,97,117,116,111,99,111,109,112,108,101,116,101,44,116,41,38,38,40,116,46,99,116,114,108,75,101,121,124,124,116,46,115,104,105,102,116,75,101,121,41,38,38,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,62,48,38,38,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,91,48,93,38,38,116,104,105,115,46,108,105,115,116,83,104,111,119,110,38,38,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,104,111,118,101,114,40,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,91,48,93,41,44,116,104,105,115,46,97,117,116,111,99,111,109,112,108,101,116,101,84,101,120,116,40,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,91,48,93,41,41,125,44,115,117,103,103,101,115,116,105,111,110,67,108,105,99,107,40,116,44,101,41,123,116,104,105,115,46,36,101,109,105,116,40,34,115,117,103,103,101,115,116,105,111,110,45,99,108,105,99,107,34,44,116,44,101,41,44,116,104,105,115,46,115,101,108,101,99,116,40,116,41,44,116,104,105,115,46,112,114,101,118,101,110,116,72,105,100,101,124,124,116,104,105,115,46,104,105,100,101,76,105,115,116,40,41,44,116,104,105,115,46,105,115,67,108,105,99,107,105,110,103,38,38,115,101,116,84,105,109,101,111,117,116,40,40,40,41,61,62,123,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,46,102,111,99,117,115,40,41,44,116,104,105,115,46,105,115,67,108,105,99,107,105,110,103,61,33,49,125,41,44,48,41,125,44,111,110,66,108,117,114,40,116,41,123,116,104,105,115,46,105,115,73,110,70,111,99,117,115,63,40,116,104,105,115,46,105,115,67,108,105,99,107,105,110,103,61,116,104,105,115,46,104,111,118,101,114,101,100,38,38,33,116,104,105,115,46,105,115,84,97,98,98,101,100,44,116,104,105,115,46,105,115,67,108,105,99,107,105,110,103,63,116,38,38,116,46,105,115,84,114,117,115,116,101,100,38,38,33,116,104,105,115,46,105,115,84,97,98,98,101,100,38,38,40,116,104,105,115,46,105,115,70,97,108,115,101,70,111,99,117,115,61,33,48,41,58,40,116,104,105,115,46,105,115,73,110,70,111,99,117,115,61,33,49,44,116,104,105,115,46,104,105,100,101,76,105,115,116,40,41,44,116,104,105,115,46,36,101,109,105,116,40,34,98,108,117,114,34,44,116,41,41,41,58,40,116,104,105,115,46,105,110,112,117,116,69,108,101,109,101,110,116,46,98,108,117,114,40,41,44,99,111,110,115,111,108,101,46,101,114,114,111,114,40,34,84,104,105,115,32,115,104,111,117,108,100,32,110,101,118,101,114,32,104,97,112,112,101,110,33,92,110,32,32,32,32,32,32,32,32,32,32,73,102,32,121,111,117,32,101,110,99,111,117,110,116,101,114,101,100,32,116,104,105,115,32,101,114,114,111,114,44,32,112,108,101,97,115,101,32,109,97,107,101,32,115,117,114,101,32,116,104,97,116,32,121,111,117,114,32,105,110,112,117,116,32,99,111,109,112,111,110,101,110,116,32,101,109,105,116,115,32,39,102,111,99,117,115,39,32,101,118,101,110,116,115,32,112,114,111,112,101,114,108,121,46,92,110,32,32,32,32,32,32,32,32,32,32,70,111,114,32,109,111,114,101,32,105,110,102,111,32,115,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,75,97,122,97,110,69,120,112,114,101,115,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,35,99,117,115,116,111,109,45,105,110,112,117,116,46,92,110,92,110,32,32,32,32,32,32,32,32,32,32,73,102,32,121,111,117,114,32,39,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,39,32,115,101,116,117,112,32,100,111,101,115,32,110,111,116,32,105,110,99,108,117,100,101,32,97,32,99,117,115,116,111,109,32,105,110,112,117,116,32,99,111,109,112,111,110,101,110,116,32,45,32,112,108,101,97,115,101,44,92,110,32,32,32,32,32,32,32,32,32,32,114,101,112,111,114,116,32,116,111,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,75,97,122,97,110,69,120,112,114,101,115,115,47,118,117,101,45,115,105,109,112,108,101,45,115,117,103,103,101,115,116,47,105,115,115,117,101,115,47,110,101,119,34,41,41,44,116,104,105,115,46,105,115,84,97,98,98,101,100,61,33,49,125,44,111,110,70,111,99,117,115,40,116,41,123,116,104,105,115,46,105,115,73,110,70,111,99,117,115,61,33,48,44,116,38,38,33,116,104,105,115,46,105,115,70,97,108,115,101,70,111,99,117,115,38,38,116,104,105,115,46,36,101,109,105,116,40,34,102,111,99,117,115,34,44,116,41,44,116,104,105,115,46,105,115,67,108,105,99,107,105,110,103,124,124,116,104,105,115,46,105,115,70,97,108,115,101,70,111,99,117,115,124,124,116,104,105,115,46,115,104,111,119,83,117,103,103,101,115,116,105,111,110,115,40,41,44,116,104,105,115,46,105,115,70,97,108,115,101,70,111,99,117,115,61,33,49,125,44,111,110,73,110,112,117,116,40,116,41,123,99,111,110,115,116,32,101,61,116,46,116,97,114,103,101,116,63,116,46,116,97,114,103,101,116,46,118,97,108,117,101,58,116,59,116,104,105,115,46,117,112,100,97,116,101,84,101,120,116,79,117,116,115,105,100,101,40,101,41,44,116,104,105,115,46,36,101,109,105,116,40,34,105,110,112,117,116,34,44,101,41,125,44,117,112,100,97,116,101,84,101,120,116,79,117,116,115,105,100,101,40,116,41,123,116,104,105,115,46,116,101,120,116,33,61,61,116,38,38,40,116,104,105,115,46,116,101,120,116,61,116,44,116,104,105,115,46,104,111,118,101,114,101,100,38,38,116,104,105,115,46,104,111,118,101,114,40,110,117,108,108,41,44,116,104,105,115,46,116,101,120,116,46,108,101,110,103,116,104,60,116,104,105,115,46,109,105,110,76,101,110,103,116,104,63,116,104,105,115,46,104,105,100,101,76,105,115,116,40,41,58,116,104,105,115,46,100,101,98,111,117,110,99,101,63,40,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,116,105,109,101,111,117,116,73,110,115,116,97,110,99,101,41,44,116,104,105,115,46,116,105,109,101,111,117,116,73,110,115,116,97,110,99,101,61,115,101,116,84,105,109,101,111,117,116,40,116,104,105,115,46,114,101,115,101,97,114,99,104,44,116,104,105,115,46,100,101,98,111,117,110,99,101,41,41,58,116,104,105,115,46,114,101,115,101,97,114,99,104,40,41,41,125,44,114,101,115,101,97,114,99,104,58,99,40,40,102,117,110,99,116,105,111,110,40,41,123,99,111,110,115,116,32,116,61,116,104,105,115,59,114,101,116,117,114,110,32,112,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,100,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,40,40,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,46,99,97,110,83,101,110,100,41,123,116,46,99,97,110,83,101,110,100,61,33,49,59,108,101,116,32,101,61,116,46,116,101,120,116,59,114,101,116,117,114,110,32,115,40,116,46,103,101,116,83,117,103,103,101,115,116,105,111,110,115,40,116,46,116,101,120,116,41,44,40,102,117,110,99,116,105,111,110,40,110,41,123,101,61,61,61,116,46,116,101,120,116,38,38,116,46,36,115,101,116,40,116,44,34,115,117,103,103,101,115,116,105,111,110,115,34,44,110,41,125,41,41,125,125,41,41,125,41,44,40,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,116,46,99,108,101,97,114,83,117,103,103,101,115,116,105,111,110,115,40,41,44,101,125,41,41,125,41,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,99,97,110,83,101,110,100,61,33,48,44,48,61,61,61,116,46,115,117,103,103,101,115,116,105,111,110,115,46,108,101,110,103,116,104,38,38,116,46,109,105,115,99,83,108,111,116,115,65,114,101,69,109,112,116,121,40,41,63,116,46,104,105,100,101,76,105,115,116,40,41,58,116,46,105,115,73,110,70,111,99,117,115,38,38,116,46,115,104,111,119,76,105,115,116,40,41,44,116,46,115,117,103,103,101,115,116,105,111,110,115,125,41,41,125,41,41,44,103,101,116,83,117,103,103,101,115,116,105,111,110,115,58,99,40,40,102,117,110,99,116,105,111,110,40,116,41,123,99,111,110,115,116,32,101,61,116,104,105,115,59,105,102,40,116,61,116,124,124,34,34,44,116,46,108,101,110,103,116,104,60,101,46,109,105,110,76,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,101,46,115,101,108,101,99,116,101,100,61,110,117,108,108,44,101,46,108,105,115,116,73,115,82,101,113,117,101,115,116,38,38,101,46,36,101,109,105,116,40,34,114,101,113,117,101,115,116,45,115,116,97,114,116,34,44,116,41,59,108,101,116,32,110,61,33,49,44,114,61,91,93,59,114,101,116,117,114,110,32,112,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,100,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,40,40,102,117,110,99,116,105,111,110,40,41,123,105,102,40,101,46,108,105,115,116,73,115,82,101,113,117,101,115,116,41,114,101,116,117,114,110,32,115,40,101,46,108,105,115,116,40,116,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,61,116,124,124,91,93,125,41,41,59,114,61,101,46,108,105,115,116,125,41,44,40,102,117,110,99,116,105,111,110,40,41,123,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,41,124,124,40,114,61,91,114,93,41,44,110,61,34,111,98,106,101,99,116,34,33,61,61,116,121,112,101,111,102,32,114,91,48,93,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,114,91,48,93,124,124,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,91,48,93,41,44,101,46,102,105,108,116,101,114,66,121,81,117,101,114,121,38,38,40,114,61,114,46,102,105,108,116,101,114,40,40,110,61,62,101,46,102,105,108,116,101,114,40,110,44,116,41,41,41,41,44,101,46,108,105,115,116,73,115,82,101,113,117,101,115,116,38,38,101,46,36,101,109,105,116,40,34,114,101,113,117,101,115,116,45,100,111,110,101,34,44,114,41,125,41,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,101,46,108,105,115,116,73,115,82,101,113,117,101,115,116,41,116,104,114,111,119,32,116,59,101,46,36,101,109,105,116,40,34,114,101,113,117,101,115,116,45,102,97,105,108,101,100,34,44,116,41,125,41,41,125,41,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,109,97,120,83,117,103,103,101,115,116,105,111,110,115,38,38,114,46,115,112,108,105,99,101,40,101,46,109,97,120,83,117,103,103,101,115,116,105,111,110,115,41,44,101,46,105,115,80,108,97,105,110,83,117,103,103,101,115,116,105,111,110,61,110,44,114,125,41,41,125,41,41,44,99,108,101,97,114,83,117,103,103,101,115,116,105,111,110,115,40,41,123,116,104,105,115,46,115,117,103,103,101,115,116,105,111,110,115,46,115,112,108,105,99,101,40,48,41,125,44,103,101,116,73,100,40,116,44,101,41,123,114,101,116,117,114,110,96,36,123,116,104,105,115,46,108,105,115,116,73,100,125,45,115,117,103,103,101,115,116,105,111,110,45,36,123,116,104,105,115,46,105,115,80,108,97,105,110,83,117,103,103,101,115,116,105,111,110,63,101,58,116,104,105,115,46,118,97,108,117,101,80,114,111,112,101,114,116,121,40,116,41,124,124,101,125,96,125,125,125,59,101,91,34,90,34,93,61,118,125,44,49,52,52,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,110,46,114,40,101,41,59,10,47,42,33,10,32,42,32,86,117,101,46,106,115,32,118,50,46,54,46,49,50,10,32,42,32,40,99,41,32,50,48,49,52,45,50,48,50,48,32,69,118,97,110,32,89,111,117,10,32,42,32,82,101,108,101,97,115,101,100,32,117,110,100,101,114,32,116,104,101,32,77,73,84,32,76,105,99,101,110,115,101,46,10,32,42,47,10,118,97,114,32,114,61,79,98,106,101,99,116,46,102,114,101,101,122,101,40,123,125,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,124,124,110,117,108,108,61,61,61,116,125,102,117,110,99,116,105,111,110,32,111,40,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,116,38,38,110,117,108,108,33,61,61,116,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,114,101,116,117,114,110,33,48,61,61,61,116,125,102,117,110,99,116,105,111,110,32,115,40,116,41,123,114,101,116,117,114,110,33,49,61,61,61,116,125,102,117,110,99,116,105,111,110,32,99,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,124,124,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,116,124,124,34,115,121,109,98,111,108,34,61,61,61,116,121,112,101,111,102,32,116,124,124,34,98,111,111,108,101,97,110,34,61,61,61,116,121,112,101,111,102,32,116,125,102,117,110,99,116,105,111,110,32,117,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,125,118,97,114,32,108,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,59,102,117,110,99,116,105,111,110,32,102,40,116,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,61,108,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,104,40,116,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,61,61,61,108,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,100,40,116,41,123,118,97,114,32,101,61,112,97,114,115,101,70,108,111,97,116,40,83,116,114,105,110,103,40,116,41,41,59,114,101,116,117,114,110,32,101,62,61,48,38,38,77,97,116,104,46,102,108,111,111,114,40,101,41,61,61,61,101,38,38,105,115,70,105,110,105,116,101,40,116,41,125,102,117,110,99,116,105,111,110,32,112,40,116,41,123,114,101,116,117,114,110,32,111,40,116,41,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,46,116,104,101,110,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,46,99,97,116,99,104,125,102,117,110,99,116,105,111,110,32,118,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,34,34,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,124,124,102,40,116,41,38,38,116,46,116,111,83,116,114,105,110,103,61,61,61,108,63,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,44,110,117,108,108,44,50,41,58,83,116,114,105,110,103,40,116,41,125,102,117,110,99,116,105,111,110,32,103,40,116,41,123,118,97,114,32,101,61,112,97,114,115,101,70,108,111,97,116,40,116,41,59,114,101,116,117,114,110,32,105,115,78,97,78,40,101,41,63,116,58,101,125,102,117,110,99,116,105,111,110,32,109,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,114,61,116,46,115,112,108,105,116,40,34,44,34,41,44,105,61,48,59,105,60,114,46,108,101,110,103,116,104,59,105,43,43,41,110,91,114,91,105,93,93,61,33,48,59,114,101,116,117,114,110,32,101,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,91,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,91,116,93,125,125,109,40,34,115,108,111,116,44,99,111,109,112,111,110,101,110,116,34,44,33,48,41,59,118,97,114,32,98,61,109,40,34,107,101,121,44,114,101,102,44,115,108,111,116,44,115,108,111,116,45,115,99,111,112,101,44,105,115,34,41,59,102,117,110,99,116,105,111,110,32,121,40,116,44,101,41,123,105,102,40,116,46,108,101,110,103,116,104,41,123,118,97,114,32,110,61,116,46,105,110,100,101,120,79,102,40,101,41,59,105,102,40,110,62,45,49,41,114,101,116,117,114,110,32,116,46,115,112,108,105,99,101,40,110,44,49,41,125,125,118,97,114,32,119,61,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,59,102,117,110,99,116,105,111,110,32,95,40,116,44,101,41,123,114,101,116,117,114,110,32,119,46,99,97,108,108,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,120,40,116,41,123,118,97,114,32,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,101,91,110,93,59,114,101,116,117,114,110,32,114,124,124,40,101,91,110,93,61,116,40,110,41,41,125,125,118,97,114,32,79,61,47,45,40,92,119,41,47,103,44,83,61,120,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,79,44,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,63,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,58,34,34,125,41,41,125,41,41,44,107,61,120,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,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,125,41,41,44,67,61,47,92,66,40,91,65,45,90,93,41,47,103,44,80,61,120,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,67,44,34,45,36,49,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,41,59,102,117,110,99,116,105,111,110,32,84,40,116,44,101,41,123,102,117,110,99,116,105,111,110,32,110,40,110,41,123,118,97,114,32,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,63,114,62,49,63,116,46,97,112,112,108,121,40,101,44,97,114,103,117,109,101,110,116,115,41,58,116,46,99,97,108,108,40,101,44,110,41,58,116,46,99,97,108,108,40,101,41,125,114,101,116,117,114,110,32,110,46,95,108,101,110,103,116,104,61,116,46,108,101,110,103,116,104,44,110,125,102,117,110,99,116,105,111,110,32,106,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,98,105,110,100,40,101,41,125,118,97,114,32,69,61,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,98,105,110,100,63,106,58,84,59,102,117,110,99,116,105,111,110,32,68,40,116,44,101,41,123,101,61,101,124,124,48,59,118,97,114,32,110,61,116,46,108,101,110,103,116,104,45,101,44,114,61,110,101,119,32,65,114,114,97,121,40,110,41,59,119,104,105,108,101,40,110,45,45,41,114,91,110,93,61,116,91,110,43,101,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,65,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,116,91,110,93,61,101,91,110,93,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,76,40,116,41,123,102,111,114,40,118,97,114,32,101,61,123,125,44,110,61,48,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,116,91,110,93,38,38,65,40,101,44,116,91,110,93,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,73,40,116,44,101,44,110,41,123,125,118,97,114,32,77,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,33,49,125,44,36,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,59,102,117,110,99,116,105,111,110,32,70,40,116,44,101,41,123,105,102,40,116,61,61,61,101,41,114,101,116,117,114,110,33,48,59,118,97,114,32,110,61,117,40,116,41,44,114,61,117,40,101,41,59,105,102,40,33,110,124,124,33,114,41,114,101,116,117,114,110,33,110,38,38,33,114,38,38,83,116,114,105,110,103,40,116,41,61,61,61,83,116,114,105,110,103,40,101,41,59,116,114,121,123,118,97,114,32,105,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,44,111,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,59,105,102,40,105,38,38,111,41,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,61,61,61,101,46,108,101,110,103,116,104,38,38,116,46,101,118,101,114,121,40,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,70,40,116,44,101,91,110,93,41,125,41,41,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,38,38,101,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,41,114,101,116,117,114,110,32,116,46,103,101,116,84,105,109,101,40,41,61,61,61,101,46,103,101,116,84,105,109,101,40,41,59,105,102,40,105,124,124,111,41,114,101,116,117,114,110,33,49,59,118,97,114,32,97,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,44,115,61,79,98,106,101,99,116,46,107,101,121,115,40,101,41,59,114,101,116,117,114,110,32,97,46,108,101,110,103,116,104,61,61,61,115,46,108,101,110,103,116,104,38,38,97,46,101,118,101,114,121,40,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,70,40,116,91,110,93,44,101,91,110,93,41,125,41,41,125,99,97,116,99,104,40,99,41,123,114,101,116,117,114,110,33,49,125,125,102,117,110,99,116,105,111,110,32,82,40,116,44,101,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,105,102,40,70,40,116,91,110,93,44,101,41,41,114,101,116,117,114,110,32,110,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,78,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,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,125,118,97,114,32,66,61,34,100,97,116,97,45,115,101,114,118,101,114,45,114,101,110,100,101,114,101,100,34,44,122,61,91,34,99,111,109,112,111,110,101,110,116,34,44,34,100,105,114,101,99,116,105,118,101,34,44,34,102,105,108,116,101,114,34,93,44,86,61,91,34,98,101,102,111,114,101,67,114,101,97,116,101,34,44,34,99,114,101,97,116,101,100,34,44,34,98,101,102,111,114,101,77,111,117,110,116,34,44,34,109,111,117,110,116,101,100,34,44,34,98,101,102,111,114,101,85,112,100,97,116,101,34,44,34,117,112,100,97,116,101,100,34,44,34,98,101,102,111,114,101,68,101,115,116,114,111,121,34,44,34,100,101,115,116,114,111,121,101,100,34,44,34,97,99,116,105,118,97,116,101,100,34,44,34,100,101,97,99,116,105,118,97,116,101,100,34,44,34,101,114,114,111,114,67,97,112,116,117,114,101,100,34,44,34,115,101,114,118,101,114,80,114,101,102,101,116,99,104,34,93,44,72,61,123,111,112,116,105,111,110,77,101,114,103,101,83,116,114,97,116,101,103,105,101,115,58,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,115,105,108,101,110,116,58,33,49,44,112,114,111,100,117,99,116,105,111,110,84,105,112,58,33,49,44,100,101,118,116,111,111,108,115,58,33,49,44,112,101,114,102,111,114,109,97,110,99,101,58,33,49,44,101,114,114,111,114,72,97,110,100,108,101,114,58,110,117,108,108,44,119,97,114,110,72,97,110,100,108,101,114,58,110,117,108,108,44,105,103,110,111,114,101,100,69,108,101,109,101,110,116,115,58,91,93,44,107,101,121,67,111,100,101,115,58,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,105,115,82,101,115,101,114,118,101,100,84,97,103,58,77,44,105,115,82,101,115,101,114,118,101,100,65,116,116,114,58,77,44,105,115,85,110,107,110,111,119,110,69,108,101,109,101,110,116,58,77,44,103,101,116,84,97,103,78,97,109,101,115,112,97,99,101,58,73,44,112,97,114,115,101,80,108,97,116,102,111,114,109,84,97,103,78,97,109,101,58,36,44,109,117,115,116,85,115,101,80,114,111,112,58,77,44,97,115,121,110,99,58,33,48,44,95,108,105,102,101,99,121,99,108,101,72,111,111,107,115,58,86,125,44,85,61,47,97,45,122,65,45,90,92,117,48,48,66,55,92,117,48,48,67,48,45,92,117,48,48,68,54,92,117,48,48,68,56,45,92,117,48,48,70,54,92,117,48,48,70,56,45,92,117,48,51,55,68,92,117,48,51,55,70,45,92,117,49,70,70,70,92,117,50,48,48,67,45,92,117,50,48,48,68,92,117,50,48,51,70,45,92,117,50,48,52,48,92,117,50,48,55,48,45,92,117,50,49,56,70,92,117,50,67,48,48,45,92,117,50,70,69,70,92,117,51,48,48,49,45,92,117,68,55,70,70,92,117,70,57,48,48,45,92,117,70,68,67,70,92,117,70,68,70,48,45,92,117,70,70,70,68,47,59,102,117,110,99,116,105,111,110,32,87,40,116,41,123,118,97,114,32,101,61,40,116,43,34,34,41,46,99,104,97,114,67,111,100,101,65,116,40,48,41,59,114,101,116,117,114,110,32,51,54,61,61,61,101,124,124,57,53,61,61,61,101,125,102,117,110,99,116,105,111,110,32,71,40,116,44,101,44,110,44,114,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,44,101,44,123,118,97,108,117,101,58,110,44,101,110,117,109,101,114,97,98,108,101,58,33,33,114,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,41,125,118,97,114,32,113,61,110,101,119,32,82,101,103,69,120,112,40,34,91,94,34,43,85,46,115,111,117,114,99,101,43,34,46,36,95,92,92,100,93,34,41,59,102,117,110,99,116,105,111,110,32,89,40,116,41,123,105,102,40,33,113,46,116,101,115,116,40,116,41,41,123,118,97,114,32,101,61,116,46,115,112,108,105,116,40,34,46,34,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,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,105,102,40,33,116,41,114,101,116,117,114,110,59,116,61,116,91,101,91,110,93,93,125,114,101,116,117,114,110,32,116,125,125,125,118,97,114,32,75,44,88,61,34,95,95,112,114,111,116,111,95,95,34,105,110,123,125,44,90,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,44,74,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,87,88,69,110,118,105,114,111,110,109,101,110,116,38,38,33,33,87,88,69,110,118,105,114,111,110,109,101,110,116,46,112,108,97,116,102,111,114,109,44,81,61,74,38,38,87,88,69,110,118,105,114,111,110,109,101,110,116,46,112,108,97,116,102,111,114,109,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,116,116,61,90,38,38,119,105,110,100,111,119,46,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,101,116,61,116,116,38,38,47,109,115,105,101,124,116,114,105,100,101,110,116,47,46,116,101,115,116,40,116,116,41,44,110,116,61,116,116,38,38,116,116,46,105,110,100,101,120,79,102,40,34,109,115,105,101,32,57,46,48,34,41,62,48,44,114,116,61,116,116,38,38,116,116,46,105,110,100,101,120,79,102,40,34,101,100,103,101,47,34,41,62,48,44,105,116,61,40,116,116,38,38,116,116,46,105,110,100,101,120,79,102,40,34,97,110,100,114,111,105,100,34,41,44,116,116,38,38,47,105,112,104,111,110,101,124,105,112,97,100,124,105,112,111,100,124,105,111,115,47,46,116,101,115,116,40,116,116,41,124,124,34,105,111,115,34,61,61,61,81,41,44,111,116,61,40,116,116,38,38,47,99,104,114,111,109,101,92,47,92,100,43,47,46,116,101,115,116,40,116,116,41,44,116,116,38,38,47,112,104,97,110,116,111,109,106,115,47,46,116,101,115,116,40,116,116,41,44,116,116,38,38,116,116,46,109,97,116,99,104,40,47,102,105,114,101,102,111,120,92,47,40,92,100,43,41,47,41,41,44,97,116,61,123,125,46,119,97,116,99,104,44,115,116,61,33,49,59,105,102,40,90,41,116,114,121,123,118,97,114,32,99,116,61,123,125,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,99,116,44,34,112,97,115,115,105,118,101,34,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,115,116,61,33,48,125,125,41,44,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,116,101,115,116,45,112,97,115,115,105,118,101,34,44,110,117,108,108,44,99,116,41,125,99,97,116,99,104,40,83,97,41,123,125,118,97,114,32,117,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,75,38,38,40,75,61,33,90,38,38,33,74,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,110,46,103,38,38,40,110,46,103,91,34,112,114,111,99,101,115,115,34,93,38,38,34,115,101,114,118,101,114,34,61,61,61,110,46,103,91,34,112,114,111,99,101,115,115,34,93,46,101,110,118,46,86,85,69,95,69,78,86,41,41,44,75,125,44,108,116,61,90,38,38,119,105,110,100,111,119,46,95,95,86,85,69,95,68,69,86,84,79,79,76,83,95,71,76,79,66,65,76,95,72,79,79,75,95,95,59,102,117,110,99,116,105,111,110,32,102,116,40,116,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,38,38,47,110,97,116,105,118,101,32,99,111,100,101,47,46,116,101,115,116,40,116,46,116,111,83,116,114,105,110,103,40,41,41,125,118,97,114,32,104,116,44,100,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,102,116,40,83,121,109,98,111,108,41,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,82,101,102,108,101,99,116,38,38,102,116,40,82,101,102,108,101,99,116,46,111,119,110,75,101,121,115,41,59,104,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,83,101,116,38,38,102,116,40,83,101,116,41,63,83,101,116,58,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,116,104,105,115,46,115,101,116,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,48,61,61,61,116,104,105,115,46,115,101,116,91,116,93,125,44,116,46,112,114,111,116,111,116,121,112,101,46,97,100,100,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,115,101,116,91,116,93,61,33,48,125,44,116,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,101,116,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,125,44,116,125,40,41,59,118,97,114,32,112,116,61,73,44,118,116,61,48,44,103,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,100,61,118,116,43,43,44,116,104,105,115,46,115,117,98,115,61,91,93,125,59,103,116,46,112,114,111,116,111,116,121,112,101,46,97,100,100,83,117,98,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,115,117,98,115,46,112,117,115,104,40,116,41,125,44,103,116,46,112,114,111,116,111,116,121,112,101,46,114,101,109,111,118,101,83,117,98,61,102,117,110,99,116,105,111,110,40,116,41,123,121,40,116,104,105,115,46,115,117,98,115,44,116,41,125,44,103,116,46,112,114,111,116,111,116,121,112,101,46,100,101,112,101,110,100,61,102,117,110,99,116,105,111,110,40,41,123,103,116,46,116,97,114,103,101,116,38,38,103,116,46,116,97,114,103,101,116,46,97,100,100,68,101,112,40,116,104,105,115,41,125,44,103,116,46,112,114,111,116,111,116,121,112,101,46,110,111,116,105,102,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,115,117,98,115,46,115,108,105,99,101,40,41,59,102,111,114,40,118,97,114,32,101,61,48,44,110,61,116,46,108,101,110,103,116,104,59,101,60,110,59,101,43,43,41,116,91,101,93,46,117,112,100,97,116,101,40,41,125,44,103,116,46,116,97,114,103,101,116,61,110,117,108,108,59,118,97,114,32,109,116,61,91,93,59,102,117,110,99,116,105,111,110,32,98,116,40,116,41,123,109,116,46,112,117,115,104,40,116,41,44,103,116,46,116,97,114,103,101,116,61,116,125,102,117,110,99,116,105,111,110,32,121,116,40,41,123,109,116,46,112,111,112,40,41,44,103,116,46,116,97,114,103,101,116,61,109,116,91,109,116,46,108,101,110,103,116,104,45,49,93,125,118,97,114,32,119,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,44,111,44,97,44,115,41,123,116,104,105,115,46,116,97,103,61,116,44,116,104,105,115,46,100,97,116,97,61,101,44,116,104,105,115,46,99,104,105,108,100,114,101,110,61,110,44,116,104,105,115,46,116,101,120,116,61,114,44,116,104,105,115,46,101,108,109,61,105,44,116,104,105,115,46,110,115,61,118,111,105,100,32,48,44,116,104,105,115,46,99,111,110,116,101,120,116,61,111,44,116,104,105,115,46,102,110,67,111,110,116,101,120,116,61,118,111,105,100,32,48,44,116,104,105,115,46,102,110,79,112,116,105,111,110,115,61,118,111,105,100,32,48,44,116,104,105,115,46,102,110,83,99,111,112,101,73,100,61,118,111,105,100,32,48,44,116,104,105,115,46,107,101,121,61,101,38,38,101,46,107,101,121,44,116,104,105,115,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,61,97,44,116,104,105,115,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,61,118,111,105,100,32,48,44,116,104,105,115,46,112,97,114,101,110,116,61,118,111,105,100,32,48,44,116,104,105,115,46,114,97,119,61,33,49,44,116,104,105,115,46,105,115,83,116,97,116,105,99,61,33,49,44,116,104,105,115,46,105,115,82,111,111,116,73,110,115,101,114,116,61,33,48,44,116,104,105,115,46,105,115,67,111,109,109,101,110,116,61,33,49,44,116,104,105,115,46,105,115,67,108,111,110,101,100,61,33,49,44,116,104,105,115,46,105,115,79,110,99,101,61,33,49,44,116,104,105,115,46,97,115,121,110,99,70,97,99,116,111,114,121,61,115,44,116,104,105,115,46,97,115,121,110,99,77,101,116,97,61,118,111,105,100,32,48,44,116,104,105,115,46,105,115,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,61,33,49,125,44,95,116,61,123,99,104,105,108,100,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,59,95,116,46,99,104,105,108,100,46,103,101,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,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,125,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,119,116,46,112,114,111,116,111,116,121,112,101,44,95,116,41,59,118,97,114,32,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,34,34,41,59,118,97,114,32,101,61,110,101,119,32,119,116,59,114,101,116,117,114,110,32,101,46,116,101,120,116,61,116,44,101,46,105,115,67,111,109,109,101,110,116,61,33,48,44,101,125,59,102,117,110,99,116,105,111,110,32,79,116,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,119,116,40,118,111,105,100,32,48,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,83,116,114,105,110,103,40,116,41,41,125,102,117,110,99,116,105,111,110,32,83,116,40,116,41,123,118,97,114,32,101,61,110,101,119,32,119,116,40,116,46,116,97,103,44,116,46,100,97,116,97,44,116,46,99,104,105,108,100,114,101,110,38,38,116,46,99,104,105,108,100,114,101,110,46,115,108,105,99,101,40,41,44,116,46,116,101,120,116,44,116,46,101,108,109,44,116,46,99,111,110,116,101,120,116,44,116,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,44,116,46,97,115,121,110,99,70,97,99,116,111,114,121,41,59,114,101,116,117,114,110,32,101,46,110,115,61,116,46,110,115,44,101,46,105,115,83,116,97,116,105,99,61,116,46,105,115,83,116,97,116,105,99,44,101,46,107,101,121,61,116,46,107,101,121,44,101,46,105,115,67,111,109,109,101,110,116,61,116,46,105,115,67,111,109,109,101,110,116,44,101,46,102,110,67,111,110,116,101,120,116,61,116,46,102,110,67,111,110,116,101,120,116,44,101,46,102,110,79,112,116,105,111,110,115,61,116,46,102,110,79,112,116,105,111,110,115,44,101,46,102,110,83,99,111,112,101,73,100,61,116,46,102,110,83,99,111,112,101,73,100,44,101,46,97,115,121,110,99,77,101,116,97,61,116,46,97,115,121,110,99,77,101,116,97,44,101,46,105,115,67,108,111,110,101,100,61,33,48,44,101,125,118,97,114,32,107,116,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,44,67,116,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,107,116,41,44,80,116,61,91,34,112,117,115,104,34,44,34,112,111,112,34,44,34,115,104,105,102,116,34,44,34,117,110,115,104,105,102,116,34,44,34,115,112,108,105,99,101,34,44,34,115,111,114,116,34,44,34,114,101,118,101,114,115,101,34,93,59,80,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,107,116,91,116,93,59,71,40,67,116,44,116,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,91,93,44,114,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,119,104,105,108,101,40,114,45,45,41,110,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,118,97,114,32,105,44,111,61,101,46,97,112,112,108,121,40,116,104,105,115,44,110,41,44,97,61,116,104,105,115,46,95,95,111,98,95,95,59,115,119,105,116,99,104,40,116,41,123,99,97,115,101,34,112,117,115,104,34,58,99,97,115,101,34,117,110,115,104,105,102,116,34,58,105,61,110,59,98,114,101,97,107,59,99,97,115,101,34,115,112,108,105,99,101,34,58,105,61,110,46,115,108,105,99,101,40,50,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,105,38,38,97,46,111,98,115,101,114,118,101,65,114,114,97,121,40,105,41,44,97,46,100,101,112,46,110,111,116,105,102,121,40,41,44,111,125,41,41,125,41,41,59,118,97,114,32,84,116,61,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,78,97,109,101,115,40,67,116,41,44,106,116,61,33,48,59,102,117,110,99,116,105,111,110,32,69,116,40,116,41,123,106,116,61,116,125,118,97,114,32,68,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,118,97,108,117,101,61,116,44,116,104,105,115,46,100,101,112,61,110,101,119,32,103,116,44,116,104,105,115,46,118,109,67,111,117,110,116,61,48,44,71,40,116,44,34,95,95,111,98,95,95,34,44,116,104,105,115,41,44,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,40,88,63,65,116,40,116,44,67,116,41,58,76,116,40,116,44,67,116,44,84,116,41,44,116,104,105,115,46,111,98,115,101,114,118,101,65,114,114,97,121,40,116,41,41,58,116,104,105,115,46,119,97,108,107,40,116,41,125,59,102,117,110,99,116,105,111,110,32,65,116,40,116,44,101,41,123,116,46,95,95,112,114,111,116,111,95,95,61,101,125,102,117,110,99,116,105,111,110,32,76,116,40,116,44,101,44,110,41,123,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,123,118,97,114,32,111,61,110,91,114,93,59,71,40,116,44,111,44,101,91,111,93,41,125,125,102,117,110,99,116,105,111,110,32,73,116,40,116,44,101,41,123,118,97,114,32,110,59,105,102,40,117,40,116,41,38,38,33,40,116,32,105,110,115,116,97,110,99,101,111,102,32,119,116,41,41,114,101,116,117,114,110,32,95,40,116,44,34,95,95,111,98,95,95,34,41,38,38,116,46,95,95,111,98,95,95,32,105,110,115,116,97,110,99,101,111,102,32,68,116,63,110,61,116,46,95,95,111,98,95,95,58,106,116,38,38,33,117,116,40,41,38,38,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,124,124,102,40,116,41,41,38,38,79,98,106,101,99,116,46,105,115,69,120,116,101,110,115,105,98,108,101,40,116,41,38,38,33,116,46,95,105,115,86,117,101,38,38,40,110,61,110,101,119,32,68,116,40,116,41,41,44,101,38,38,110,38,38,110,46,118,109,67,111,117,110,116,43,43,44,110,125,102,117,110,99,116,105,111,110,32,77,116,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,110,101,119,32,103,116,44,97,61,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,116,44,101,41,59,105,102,40,33,97,124,124,33,49,33,61,61,97,46,99,111,110,102,105,103,117,114,97,98,108,101,41,123,118,97,114,32,115,61,97,38,38,97,46,103,101,116,44,99,61,97,38,38,97,46,115,101,116,59,115,38,38,33,99,124,124,50,33,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,124,124,40,110,61,116,91,101,93,41,59,118,97,114,32,117,61,33,105,38,38,73,116,40,110,41,59,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,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,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,115,63,115,46,99,97,108,108,40,116,41,58,110,59,114,101,116,117,114,110,32,103,116,46,116,97,114,103,101,116,38,38,40,111,46,100,101,112,101,110,100,40,41,44,117,38,38,40,117,46,100,101,112,46,100,101,112,101,110,100,40,41,44,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,38,38,82,116,40,101,41,41,41,44,101,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,115,63,115,46,99,97,108,108,40,116,41,58,110,59,101,61,61,61,114,124,124,101,33,61,61,101,38,38,114,33,61,61,114,124,124,115,38,38,33,99,124,124,40,99,63,99,46,99,97,108,108,40,116,44,101,41,58,110,61,101,44,117,61,33,105,38,38,73,116,40,101,41,44,111,46,110,111,116,105,102,121,40,41,41,125,125,41,125,125,102,117,110,99,116,105,111,110,32,36,116,40,116,44,101,44,110,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,38,38,100,40,101,41,41,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,61,77,97,116,104,46,109,97,120,40,116,46,108,101,110,103,116,104,44,101,41,44,116,46,115,112,108,105,99,101,40,101,44,49,44,110,41,44,110,59,105,102,40,101,32,105,110,32,116,38,38,33,40,101,32,105,110,32,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,41,41,114,101,116,117,114,110,32,116,91,101,93,61,110,44,110,59,118,97,114,32,114,61,116,46,95,95,111,98,95,95,59,114,101,116,117,114,110,32,116,46,95,105,115,86,117,101,124,124,114,38,38,114,46,118,109,67,111,117,110,116,63,110,58,114,63,40,77,116,40,114,46,118,97,108,117,101,44,101,44,110,41,44,114,46,100,101,112,46,110,111,116,105,102,121,40,41,44,110,41,58,40,116,91,101,93,61,110,44,110,41,125,102,117,110,99,116,105,111,110,32,70,116,40,116,44,101,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,38,38,100,40,101,41,41,116,46,115,112,108,105,99,101,40,101,44,49,41,59,101,108,115,101,123,118,97,114,32,110,61,116,46,95,95,111,98,95,95,59,116,46,95,105,115,86,117,101,124,124,110,38,38,110,46,118,109,67,111,117,110,116,124,124,95,40,116,44,101,41,38,38,40,100,101,108,101,116,101,32,116,91,101,93,44,110,38,38,110,46,100,101,112,46,110,111,116,105,102,121,40,41,41,125,125,102,117,110,99,116,105,111,110,32,82,116,40,116,41,123,102,111,114,40,118,97,114,32,101,61,118,111,105,100,32,48,44,110,61,48,44,114,61,116,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,101,61,116,91,110,93,44,101,38,38,101,46,95,95,111,98,95,95,38,38,101,46,95,95,111,98,95,95,46,100,101,112,46,100,101,112,101,110,100,40,41,44,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,38,38,82,116,40,101,41,125,68,116,46,112,114,111,116,111,116,121,112,101,46,119,97,108,107,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,44,110,61,48,59,110,60,101,46,108,101,110,103,116,104,59,110,43,43,41,77,116,40,116,44,101,91,110,93,41,125,44,68,116,46,112,114,111,116,111,116,121,112,101,46,111,98,115,101,114,118,101,65,114,114,97,121,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,48,44,110,61,116,46,108,101,110,103,116,104,59,101,60,110,59,101,43,43,41,73,116,40,116,91,101,93,41,125,59,118,97,114,32,78,116,61,72,46,111,112,116,105,111,110,77,101,114,103,101,83,116,114,97,116,101,103,105,101,115,59,102,117,110,99,116,105,111,110,32,66,116,40,116,44,101,41,123,105,102,40,33,101,41,114,101,116,117,114,110,32,116,59,102,111,114,40,118,97,114,32,110,44,114,44,105,44,111,61,100,116,63,82,101,102,108,101,99,116,46,111,119,110,75,101,121,115,40,101,41,58,79,98,106,101,99,116,46,107,101,121,115,40,101,41,44,97,61,48,59,97,60,111,46,108,101,110,103,116,104,59,97,43,43,41,110,61,111,91,97,93,44,34,95,95,111,98,95,95,34,33,61,61,110,38,38,40,114,61,116,91,110,93,44,105,61,101,91,110,93,44,95,40,116,44,110,41,63,114,33,61,61,105,38,38,102,40,114,41,38,38,102,40,105,41,38,38,66,116,40,114,44,105,41,58,36,116,40,116,44,110,44,105,41,41,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,122,116,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,110,63,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,114,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,101,46,99,97,108,108,40,110,44,110,41,58,101,44,105,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,116,46,99,97,108,108,40,110,44,110,41,58,116,59,114,101,116,117,114,110,32,114,63,66,116,40,114,44,105,41,58,105,125,58,101,63,116,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,116,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,101,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,41,58,101,44,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,116,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,41,58,116,41,125,58,101,58,116,125,102,117,110,99,116,105,111,110,32,86,116,40,116,44,101,41,123,118,97,114,32,110,61,101,63,116,63,116,46,99,111,110,99,97,116,40,101,41,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,63,101,58,91,101,93,58,116,59,114,101,116,117,114,110,32,110,63,72,116,40,110,41,58,110,125,102,117,110,99,116,105,111,110,32,72,116,40,116,41,123,102,111,114,40,118,97,114,32,101,61,91,93,44,110,61,48,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,45,49,61,61,61,101,46,105,110,100,101,120,79,102,40,116,91,110,93,41,38,38,101,46,112,117,115,104,40,116,91,110,93,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,85,116,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,124,124,110,117,108,108,41,59,114,101,116,117,114,110,32,101,63,65,40,105,44,101,41,58,105,125,78,116,46,100,97,116,97,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,110,63,122,116,40,116,44,101,44,110,41,58,101,38,38,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,101,63,116,58,122,116,40,116,44,101,41,125,44,86,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,78,116,91,116,93,61,86,116,125,41,41,44,122,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,78,116,91,116,43,34,115,34,93,61,85,116,125,41,41,44,78,116,46,119,97,116,99,104,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,105,102,40,116,61,61,61,97,116,38,38,40,116,61,118,111,105,100,32,48,41,44,101,61,61,61,97,116,38,38,40,101,61,118,111,105,100,32,48,41,44,33,101,41,114,101,116,117,114,110,32,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,124,124,110,117,108,108,41,59,105,102,40,33,116,41,114,101,116,117,114,110,32,101,59,118,97,114,32,105,61,123,125,59,102,111,114,40,118,97,114,32,111,32,105,110,32,65,40,105,44,116,41,44,101,41,123,118,97,114,32,97,61,105,91,111,93,44,115,61,101,91,111,93,59,97,38,38,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,41,38,38,40,97,61,91,97,93,41,44,105,91,111,93,61,97,63,97,46,99,111,110,99,97,116,40,115,41,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,115,41,63,115,58,91,115,93,125,114,101,116,117,114,110,32,105,125,44,78,116,46,112,114,111,112,115,61,78,116,46,109,101,116,104,111,100,115,61,78,116,46,105,110,106,101,99,116,61,78,116,46,99,111,109,112,117,116,101,100,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,101,59,118,97,114,32,105,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,114,101,116,117,114,110,32,65,40,105,44,116,41,44,101,38,38,65,40,105,44,101,41,44,105,125,44,78,116,46,112,114,111,118,105,100,101,61,122,116,59,118,97,114,32,87,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,63,116,58,101,125,59,102,117,110,99,116,105,111,110,32,71,116,40,116,44,101,41,123,118,97,114,32,110,61,116,46,112,114,111,112,115,59,105,102,40,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,123,125,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,41,123,114,61,110,46,108,101,110,103,116,104,59,119,104,105,108,101,40,114,45,45,41,105,61,110,91,114,93,44,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,105,38,38,40,111,61,83,40,105,41,44,97,91,111,93,61,123,116,121,112,101,58,110,117,108,108,125,41,125,101,108,115,101,32,105,102,40,102,40,110,41,41,102,111,114,40,118,97,114,32,115,32,105,110,32,110,41,105,61,110,91,115,93,44,111,61,83,40,115,41,44,97,91,111,93,61,102,40,105,41,63,105,58,123,116,121,112,101,58,105,125,59,101,108,115,101,32,48,59,116,46,112,114,111,112,115,61,97,125,125,102,117,110,99,116,105,111,110,32,113,116,40,116,44,101,41,123,118,97,114,32,110,61,116,46,105,110,106,101,99,116,59,105,102,40,110,41,123,118,97,114,32,114,61,116,46,105,110,106,101,99,116,61,123,125,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,41,102,111,114,40,118,97,114,32,105,61,48,59,105,60,110,46,108,101,110,103,116,104,59,105,43,43,41,114,91,110,91,105,93,93,61,123,102,114,111,109,58,110,91,105,93,125,59,101,108,115,101,32,105,102,40,102,40,110,41,41,102,111,114,40,118,97,114,32,111,32,105,110,32,110,41,123,118,97,114,32,97,61,110,91,111,93,59,114,91,111,93,61,102,40,97,41,63,65,40,123,102,114,111,109,58,111,125,44,97,41,58,123,102,114,111,109,58,97,125,125,101,108,115,101,32,48,125,125,102,117,110,99,116,105,111,110,32,89,116,40,116,41,123,118,97,114,32,101,61,116,46,100,105,114,101,99,116,105,118,101,115,59,105,102,40,101,41,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,123,118,97,114,32,114,61,101,91,110,93,59,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,114,38,38,40,101,91,110,93,61,123,98,105,110,100,58,114,44,117,112,100,97,116,101,58,114,125,41,125,125,102,117,110,99,116,105,111,110,32,75,116,40,116,44,101,44,110,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,38,38,40,101,61,101,46,111,112,116,105,111,110,115,41,44,71,116,40,101,44,110,41,44,113,116,40,101,44,110,41,44,89,116,40,101,41,44,33,101,46,95,98,97,115,101,38,38,40,101,46,101,120,116,101,110,100,115,38,38,40,116,61,75,116,40,116,44,101,46,101,120,116,101,110,100,115,44,110,41,41,44,101,46,109,105,120,105,110,115,41,41,102,111,114,40,118,97,114,32,114,61,48,44,105,61,101,46,109,105,120,105,110,115,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,116,61,75,116,40,116,44,101,46,109,105,120,105,110,115,91,114,93,44,110,41,59,118,97,114,32,111,44,97,61,123,125,59,102,111,114,40,111,32,105,110,32,116,41,115,40,111,41,59,102,111,114,40,111,32,105,110,32,101,41,95,40,116,44,111,41,124,124,115,40,111,41,59,102,117,110,99,116,105,111,110,32,115,40,114,41,123,118,97,114,32,105,61,78,116,91,114,93,124,124,87,116,59,97,91,114,93,61,105,40,116,91,114,93,44,101,91,114,93,44,110,44,114,41,125,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,88,116,40,116,44,101,44,110,44,114,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,110,41,123,118,97,114,32,105,61,116,91,101,93,59,105,102,40,95,40,105,44,110,41,41,114,101,116,117,114,110,32,105,91,110,93,59,118,97,114,32,111,61,83,40,110,41,59,105,102,40,95,40,105,44,111,41,41,114,101,116,117,114,110,32,105,91,111,93,59,118,97,114,32,97,61,107,40,111,41,59,105,102,40,95,40,105,44,97,41,41,114,101,116,117,114,110,32,105,91,97,93,59,118,97,114,32,115,61,105,91,110,93,124,124,105,91,111,93,124,124,105,91,97,93,59,114,101,116,117,114,110,32,115,125,125,102,117,110,99,116,105,111,110,32,90,116,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,101,91,116,93,44,111,61,33,95,40,110,44,116,41,44,97,61,110,91,116,93,44,115,61,101,101,40,66,111,111,108,101,97,110,44,105,46,116,121,112,101,41,59,105,102,40,115,62,45,49,41,105,102,40,111,38,38,33,95,40,105,44,34,100,101,102,97,117,108,116,34,41,41,97,61,33,49,59,101,108,115,101,32,105,102,40,34,34,61,61,61,97,124,124,97,61,61,61,80,40,116,41,41,123,118,97,114,32,99,61,101,101,40,83,116,114,105,110,103,44,105,46,116,121,112,101,41,59,40,99,60,48,124,124,115,60,99,41,38,38,40,97,61,33,48,41,125,105,102,40,118,111,105,100,32,48,61,61,61,97,41,123,97,61,74,116,40,114,44,105,44,116,41,59,118,97,114,32,117,61,106,116,59,69,116,40,33,48,41,44,73,116,40,97,41,44,69,116,40,117,41,125,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,74,116,40,116,44,101,44,110,41,123,105,102,40,95,40,101,44,34,100,101,102,97,117,108,116,34,41,41,123,118,97,114,32,114,61,101,46,100,101,102,97,117,108,116,59,114,101,116,117,114,110,32,116,38,38,116,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,68,97,116,97,38,38,118,111,105,100,32,48,61,61,61,116,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,68,97,116,97,91,110,93,38,38,118,111,105,100,32,48,33,61,61,116,46,95,112,114,111,112,115,91,110,93,63,116,46,95,112,114,111,112,115,91,110,93,58,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,114,38,38,34,70,117,110,99,116,105,111,110,34,33,61,61,81,116,40,101,46,116,121,112,101,41,63,114,46,99,97,108,108,40,116,41,58,114,125,125,102,117,110,99,116,105,111,110,32,81,116,40,116,41,123,118,97,114,32,101,61,116,38,38,116,46,116,111,83,116,114,105,110,103,40,41,46,109,97,116,99,104,40,47,94,92,115,42,102,117,110,99,116,105,111,110,32,40,92,119,43,41,47,41,59,114,101,116,117,114,110,32,101,63,101,91,49,93,58,34,34,125,102,117,110,99,116,105,111,110,32,116,101,40,116,44,101,41,123,114,101,116,117,114,110,32,81,116,40,116,41,61,61,61,81,116,40,101,41,125,102,117,110,99,116,105,111,110,32,101,101,40,116,44,101,41,123,105,102,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,114,101,116,117,114,110,32,116,101,40,101,44,116,41,63,48,58,45,49,59,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,116,101,40,101,91,110,93,44,116,41,41,114,101,116,117,114,110,32,110,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,110,101,40,116,44,101,44,110,41,123,98,116,40,41,59,116,114,121,123,105,102,40,101,41,123,118,97,114,32,114,61,101,59,119,104,105,108,101,40,114,61,114,46,36,112,97,114,101,110,116,41,123,118,97,114,32,105,61,114,46,36,111,112,116,105,111,110,115,46,101,114,114,111,114,67,97,112,116,117,114,101,100,59,105,102,40,105,41,102,111,114,40,118,97,114,32,111,61,48,59,111,60,105,46,108,101,110,103,116,104,59,111,43,43,41,116,114,121,123,118,97,114,32,97,61,33,49,61,61,61,105,91,111,93,46,99,97,108,108,40,114,44,116,44,101,44,110,41,59,105,102,40,97,41,114,101,116,117,114,110,125,99,97,116,99,104,40,83,97,41,123,105,101,40,83,97,44,114,44,34,101,114,114,111,114,67,97,112,116,117,114,101,100,32,104,111,111,107,34,41,125,125,125,105,101,40,116,44,101,44,110,41,125,102,105,110,97,108,108,121,123,121,116,40,41,125,125,102,117,110,99,116,105,111,110,32,114,101,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,59,116,114,121,123,111,61,110,63,116,46,97,112,112,108,121,40,101,44,110,41,58,116,46,99,97,108,108,40,101,41,44,111,38,38,33,111,46,95,105,115,86,117,101,38,38,112,40,111,41,38,38,33,111,46,95,104,97,110,100,108,101,100,38,38,40,111,46,99,97,116,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,40,116,44,114,44,105,43,34,32,40,80,114,111,109,105,115,101,47,97,115,121,110,99,41,34,41,125,41,41,44,111,46,95,104,97,110,100,108,101,100,61,33,48,41,125,99,97,116,99,104,40,83,97,41,123,110,101,40,83,97,44,114,44,105,41,125,114,101,116,117,114,110,32,111,125,102,117,110,99,116,105,111,110,32,105,101,40,116,44,101,44,110,41,123,105,102,40,72,46,101,114,114,111,114,72,97,110,100,108,101,114,41,116,114,121,123,114,101,116,117,114,110,32,72,46,101,114,114,111,114,72,97,110,100,108,101,114,46,99,97,108,108,40,110,117,108,108,44,116,44,101,44,110,41,125,99,97,116,99,104,40,83,97,41,123,83,97,33,61,61,116,38,38,111,101,40,83,97,44,110,117,108,108,44,34,99,111,110,102,105,103,46,101,114,114,111,114,72,97,110,100,108,101,114,34,41,125,111,101,40,116,44,101,44,110,41,125,102,117,110,99,116,105,111,110,32,111,101,40,116,44,101,44,110,41,123,105,102,40,33,90,38,38,33,74,124,124,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,99,111,110,115,111,108,101,41,116,104,114,111,119,32,116,59,99,111,110,115,111,108,101,46,101,114,114,111,114,40,116,41,125,118,97,114,32,97,101,44,115,101,61,33,49,44,99,101,61,91,93,44,117,101,61,33,49,59,102,117,110,99,116,105,111,110,32,108,101,40,41,123,117,101,61,33,49,59,118,97,114,32,116,61,99,101,46,115,108,105,99,101,40,48,41,59,99,101,46,108,101,110,103,116,104,61,48,59,102,111,114,40,118,97,114,32,101,61,48,59,101,60,116,46,108,101,110,103,116,104,59,101,43,43,41,116,91,101,93,40,41,125,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,80,114,111,109,105,115,101,38,38,102,116,40,80,114,111,109,105,115,101,41,41,123,118,97,114,32,102,101,61,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,59,97,101,61,102,117,110,99,116,105,111,110,40,41,123,102,101,46,116,104,101,110,40,108,101,41,44,105,116,38,38,115,101,116,84,105,109,101,111,117,116,40,73,41,125,44,115,101,61,33,48,125,101,108,115,101,32,105,102,40,101,116,124,124,34,117,110,100,101,102,105,110,101,100,34,61,61,61,116,121,112,101,111,102,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,124,124,33,102,116,40,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,41,38,38,34,91,111,98,106,101,99,116,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,67,111,110,115,116,114,117,99,116,111,114,93,34,33,61,61,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,46,116,111,83,116,114,105,110,103,40,41,41,97,101,61,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,115,101,116,73,109,109,101,100,105,97,116,101,38,38,102,116,40,115,101,116,73,109,109,101,100,105,97,116,101,41,63,102,117,110,99,116,105,111,110,40,41,123,115,101,116,73,109,109,101,100,105,97,116,101,40,108,101,41,125,58,102,117,110,99,116,105,111,110,40,41,123,115,101,116,84,105,109,101,111,117,116,40,108,101,44,48,41,125,59,101,108,115,101,123,118,97,114,32,104,101,61,49,44,100,101,61,110,101,119,32,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,40,108,101,41,44,112,101,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,83,116,114,105,110,103,40,104,101,41,41,59,100,101,46,111,98,115,101,114,118,101,40,112,101,44,123,99,104,97,114,97,99,116,101,114,68,97,116,97,58,33,48,125,41,44,97,101,61,102,117,110,99,116,105,111,110,40,41,123,104,101,61,40,104,101,43,49,41,37,50,44,112,101,46,100,97,116,97,61,83,116,114,105,110,103,40,104,101,41,125,44,115,101,61,33,48,125,102,117,110,99,116,105,111,110,32,118,101,40,116,44,101,41,123,118,97,114,32,110,59,105,102,40,99,101,46,112,117,115,104,40,40,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,41,116,114,121,123,116,46,99,97,108,108,40,101,41,125,99,97,116,99,104,40,83,97,41,123,110,101,40,83,97,44,101,44,34,110,101,120,116,84,105,99,107,34,41,125,101,108,115,101,32,110,38,38,110,40,101,41,125,41,41,44,117,101,124,124,40,117,101,61,33,48,44,97,101,40,41,41,44,33,116,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,80,114,111,109,105,115,101,41,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,110,61,116,125,41,41,125,118,97,114,32,103,101,61,110,101,119,32,104,116,59,102,117,110,99,116,105,111,110,32,109,101,40,116,41,123,98,101,40,116,44,103,101,41,44,103,101,46,99,108,101,97,114,40,41,125,102,117,110,99,116,105,111,110,32,98,101,40,116,44,101,41,123,118,97,114,32,110,44,114,44,105,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,59,105,102,40,33,40,33,105,38,38,33,117,40,116,41,124,124,79,98,106,101,99,116,46,105,115,70,114,111,122,101,110,40,116,41,124,124,116,32,105,110,115,116,97,110,99,101,111,102,32,119,116,41,41,123,105,102,40,116,46,95,95,111,98,95,95,41,123,118,97,114,32,111,61,116,46,95,95,111,98,95,95,46,100,101,112,46,105,100,59,105,102,40,101,46,104,97,115,40,111,41,41,114,101,116,117,114,110,59,101,46,97,100,100,40,111,41,125,105,102,40,105,41,123,110,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,98,101,40,116,91,110,93,44,101,41,125,101,108,115,101,123,114,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,44,110,61,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,98,101,40,116,91,114,91,110,93,93,44,101,41,125,125,125,118,97,114,32,121,101,61,120,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,38,34,61,61,61,116,46,99,104,97,114,65,116,40,48,41,59,116,61,101,63,116,46,115,108,105,99,101,40,49,41,58,116,59,118,97,114,32,110,61,34,126,34,61,61,61,116,46,99,104,97,114,65,116,40,48,41,59,116,61,110,63,116,46,115,108,105,99,101,40,49,41,58,116,59,118,97,114,32,114,61,34,33,34,61,61,61,116,46,99,104,97,114,65,116,40,48,41,59,114,101,116,117,114,110,32,116,61,114,63,116,46,115,108,105,99,101,40,49,41,58,116,44,123,110,97,109,101,58,116,44,111,110,99,101,58,110,44,99,97,112,116,117,114,101,58,114,44,112,97,115,115,105,118,101,58,101,125,125,41,41,59,102,117,110,99,116,105,111,110,32,119,101,40,116,44,101,41,123,102,117,110,99,116,105,111,110,32,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,44,114,61,110,46,102,110,115,59,105,102,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,41,41,114,101,116,117,114,110,32,114,101,40,114,44,110,117,108,108,44,97,114,103,117,109,101,110,116,115,44,101,44,34,118,45,111,110,32,104,97,110,100,108,101,114,34,41,59,102,111,114,40,118,97,114,32,105,61,114,46,115,108,105,99,101,40,41,44,111,61,48,59,111,60,105,46,108,101,110,103,116,104,59,111,43,43,41,114,101,40,105,91,111,93,44,110,117,108,108,44,116,44,101,44,34,118,45,111,110,32,104,97,110,100,108,101,114,34,41,125,114,101,116,117,114,110,32,110,46,102,110,115,61,116,44,110,125,102,117,110,99,116,105,111,110,32,95,101,40,116,44,101,44,110,44,114,44,111,44,115,41,123,118,97,114,32,99,44,117,44,108,44,102,59,102,111,114,40,99,32,105,110,32,116,41,117,61,116,91,99,93,44,108,61,101,91,99,93,44,102,61,121,101,40,99,41,44,105,40,117,41,124,124,40,105,40,108,41,63,40,105,40,117,46,102,110,115,41,38,38,40,117,61,116,91,99,93,61,119,101,40,117,44,115,41,41,44,97,40,102,46,111,110,99,101,41,38,38,40,117,61,116,91,99,93,61,111,40,102,46,110,97,109,101,44,117,44,102,46,99,97,112,116,117,114,101,41,41,44,110,40,102,46,110,97,109,101,44,117,44,102,46,99,97,112,116,117,114,101,44,102,46,112,97,115,115,105,118,101,44,102,46,112,97,114,97,109,115,41,41,58,117,33,61,61,108,38,38,40,108,46,102,110,115,61,117,44,116,91,99,93,61,108,41,41,59,102,111,114,40,99,32,105,110,32,101,41,105,40,116,91,99,93,41,38,38,40,102,61,121,101,40,99,41,44,114,40,102,46,110,97,109,101,44,101,91,99,93,44,102,46,99,97,112,116,117,114,101,41,41,125,102,117,110,99,116,105,111,110,32,120,101,40,116,44,101,44,110,41,123,118,97,114,32,114,59,116,32,105,110,115,116,97,110,99,101,111,102,32,119,116,38,38,40,116,61,116,46,100,97,116,97,46,104,111,111,107,124,124,40,116,46,100,97,116,97,46,104,111,111,107,61,123,125,41,41,59,118,97,114,32,115,61,116,91,101,93,59,102,117,110,99,116,105,111,110,32,99,40,41,123,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,121,40,114,46,102,110,115,44,99,41,125,105,40,115,41,63,114,61,119,101,40,91,99,93,41,58,111,40,115,46,102,110,115,41,38,38,97,40,115,46,109,101,114,103,101,100,41,63,40,114,61,115,44,114,46,102,110,115,46,112,117,115,104,40,99,41,41,58,114,61,119,101,40,91,115,44,99,93,41,44,114,46,109,101,114,103,101,100,61,33,48,44,116,91,101,93,61,114,125,102,117,110,99,116,105,111,110,32,79,101,40,116,44,101,44,110,41,123,118,97,114,32,114,61,101,46,111,112,116,105,111,110,115,46,112,114,111,112,115,59,105,102,40,33,105,40,114,41,41,123,118,97,114,32,97,61,123,125,44,115,61,116,46,97,116,116,114,115,44,99,61,116,46,112,114,111,112,115,59,105,102,40,111,40,115,41,124,124,111,40,99,41,41,102,111,114,40,118,97,114,32,117,32,105,110,32,114,41,123,118,97,114,32,108,61,80,40,117,41,59,83,101,40,97,44,99,44,117,44,108,44,33,48,41,124,124,83,101,40,97,44,115,44,117,44,108,44,33,49,41,125,114,101,116,117,114,110,32,97,125,125,102,117,110,99,116,105,111,110,32,83,101,40,116,44,101,44,110,44,114,44,105,41,123,105,102,40,111,40,101,41,41,123,105,102,40,95,40,101,44,110,41,41,114,101,116,117,114,110,32,116,91,110,93,61,101,91,110,93,44,105,124,124,100,101,108,101,116,101,32,101,91,110,93,44,33,48,59,105,102,40,95,40,101,44,114,41,41,114,101,116,117,114,110,32,116,91,110,93,61,101,91,114,93,44,105,124,124,100,101,108,101,116,101,32,101,91,114,93,44,33,48,125,114,101,116,117,114,110,33,49,125,102,117,110,99,116,105,111,110,32,107,101,40,116,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,116,46,108,101,110,103,116,104,59,101,43,43,41,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,91,101,93,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,99,111,110,99,97,116,46,97,112,112,108,121,40,91,93,44,116,41,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,67,101,40,116,41,123,114,101,116,117,114,110,32,99,40,116,41,63,91,79,116,40,116,41,93,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,84,101,40,116,41,58,118,111,105,100,32,48,125,102,117,110,99,116,105,111,110,32,80,101,40,116,41,123,114,101,116,117,114,110,32,111,40,116,41,38,38,111,40,116,46,116,101,120,116,41,38,38,115,40,116,46,105,115,67,111,109,109,101,110,116,41,125,102,117,110,99,116,105,111,110,32,84,101,40,116,44,101,41,123,118,97,114,32,110,44,114,44,115,44,117,44,108,61,91,93,59,102,111,114,40,110,61,48,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,114,61,116,91,110,93,44,105,40,114,41,124,124,34,98,111,111,108,101,97,110,34,61,61,61,116,121,112,101,111,102,32,114,124,124,40,115,61,108,46,108,101,110,103,116,104,45,49,44,117,61,108,91,115,93,44,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,41,63,114,46,108,101,110,103,116,104,62,48,38,38,40,114,61,84,101,40,114,44,40,101,124,124,34,34,41,43,34,95,34,43,110,41,44,80,101,40,114,91,48,93,41,38,38,80,101,40,117,41,38,38,40,108,91,115,93,61,79,116,40,117,46,116,101,120,116,43,114,91,48,93,46,116,101,120,116,41,44,114,46,115,104,105,102,116,40,41,41,44,108,46,112,117,115,104,46,97,112,112,108,121,40,108,44,114,41,41,58,99,40,114,41,63,80,101,40,117,41,63,108,91,115,93,61,79,116,40,117,46,116,101,120,116,43,114,41,58,34,34,33,61,61,114,38,38,108,46,112,117,115,104,40,79,116,40,114,41,41,58,80,101,40,114,41,38,38,80,101,40,117,41,63,108,91,115,93,61,79,116,40,117,46,116,101,120,116,43,114,46,116,101,120,116,41,58,40,97,40,116,46,95,105,115,86,76,105,115,116,41,38,38,111,40,114,46,116,97,103,41,38,38,105,40,114,46,107,101,121,41,38,38,111,40,101,41,38,38,40,114,46,107,101,121,61,34,95,95,118,108,105,115,116,34,43,101,43,34,95,34,43,110,43,34,95,95,34,41,44,108,46,112,117,115,104,40,114,41,41,41,59,114,101,116,117,114,110,32,108,125,102,117,110,99,116,105,111,110,32,106,101,40,116,41,123,118,97,114,32,101,61,116,46,36,111,112,116,105,111,110,115,46,112,114,111,118,105,100,101,59,101,38,38,40,116,46,95,112,114,111,118,105,100,101,100,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,101,46,99,97,108,108,40,116,41,58,101,41,125,102,117,110,99,116,105,111,110,32,69,101,40,116,41,123,118,97,114,32,101,61,68,101,40,116,46,36,111,112,116,105,111,110,115,46,105,110,106,101,99,116,44,116,41,59,101,38,38,40,69,116,40,33,49,41,44,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,77,116,40,116,44,110,44,101,91,110,93,41,125,41,41,44,69,116,40,33,48,41,41,125,102,117,110,99,116,105,111,110,32,68,101,40,116,44,101,41,123,105,102,40,116,41,123,102,111,114,40,118,97,114,32,110,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,114,61,100,116,63,82,101,102,108,101,99,116,46,111,119,110,75,101,121,115,40,116,41,58,79,98,106,101,99,116,46,107,101,121,115,40,116,41,44,105,61,48,59,105,60,114,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,111,61,114,91,105,93,59,105,102,40,34,95,95,111,98,95,95,34,33,61,61,111,41,123,118,97,114,32,97,61,116,91,111,93,46,102,114,111,109,44,115,61,101,59,119,104,105,108,101,40,115,41,123,105,102,40,115,46,95,112,114,111,118,105,100,101,100,38,38,95,40,115,46,95,112,114,111,118,105,100,101,100,44,97,41,41,123,110,91,111,93,61,115,46,95,112,114,111,118,105,100,101,100,91,97,93,59,98,114,101,97,107,125,115,61,115,46,36,112,97,114,101,110,116,125,105,102,40,33,115,41,105,102,40,34,100,101,102,97,117,108,116,34,105,110,32,116,91,111,93,41,123,118,97,114,32,99,61,116,91,111,93,46,100,101,102,97,117,108,116,59,110,91,111,93,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,99,63,99,46,99,97,108,108,40,101,41,58,99,125,101,108,115,101,32,48,125,125,114,101,116,117,114,110,32,110,125,125,102,117,110,99,116,105,111,110,32,65,101,40,116,44,101,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,123,125,59,102,111,114,40,118,97,114,32,110,61,123,125,44,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,123,118,97,114,32,111,61,116,91,114,93,44,97,61,111,46,100,97,116,97,59,105,102,40,97,38,38,97,46,97,116,116,114,115,38,38,97,46,97,116,116,114,115,46,115,108,111,116,38,38,100,101,108,101,116,101,32,97,46,97,116,116,114,115,46,115,108,111,116,44,111,46,99,111,110,116,101,120,116,33,61,61,101,38,38,111,46,102,110,67,111,110,116,101,120,116,33,61,61,101,124,124,33,97,124,124,110,117,108,108,61,61,97,46,115,108,111,116,41,40,110,46,100,101,102,97,117,108,116,124,124,40,110,46,100,101,102,97,117,108,116,61,91,93,41,41,46,112,117,115,104,40,111,41,59,101,108,115,101,123,118,97,114,32,115,61,97,46,115,108,111,116,44,99,61,110,91,115,93,124,124,40,110,91,115,93,61,91,93,41,59,34,116,101,109,112,108,97,116,101,34,61,61,61,111,46,116,97,103,63,99,46,112,117,115,104,46,97,112,112,108,121,40,99,44,111,46,99,104,105,108,100,114,101,110,124,124,91,93,41,58,99,46,112,117,115,104,40,111,41,125,125,102,111,114,40,118,97,114,32,117,32,105,110,32,110,41,110,91,117,93,46,101,118,101,114,121,40,76,101,41,38,38,100,101,108,101,116,101,32,110,91,117,93,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,76,101,40,116,41,123,114,101,116,117,114,110,32,116,46,105,115,67,111,109,109,101,110,116,38,38,33,116,46,97,115,121,110,99,70,97,99,116,111,114,121,124,124,34,32,34,61,61,61,116,46,116,101,120,116,125,102,117,110,99,116,105,111,110,32,73,101,40,116,44,101,44,110,41,123,118,97,114,32,105,44,111,61,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,108,101,110,103,116,104,62,48,44,97,61,116,63,33,33,116,46,36,115,116,97,98,108,101,58,33,111,44,115,61,116,38,38,116,46,36,107,101,121,59,105,102,40,116,41,123,105,102,40,116,46,95,110,111,114,109,97,108,105,122,101,100,41,114,101,116,117,114,110,32,116,46,95,110,111,114,109,97,108,105,122,101,100,59,105,102,40,97,38,38,110,38,38,110,33,61,61,114,38,38,115,61,61,61,110,46,36,107,101,121,38,38,33,111,38,38,33,110,46,36,104,97,115,78,111,114,109,97,108,41,114,101,116,117,114,110,32,110,59,102,111,114,40,118,97,114,32,99,32,105,110,32,105,61,123,125,44,116,41,116,91,99,93,38,38,34,36,34,33,61,61,99,91,48,93,38,38,40,105,91,99,93,61,77,101,40,101,44,99,44,116,91,99,93,41,41,125,101,108,115,101,32,105,61,123,125,59,102,111,114,40,118,97,114,32,117,32,105,110,32,101,41,117,32,105,110,32,105,124,124,40,105,91,117,93,61,36,101,40,101,44,117,41,41,59,114,101,116,117,114,110,32,116,38,38,79,98,106,101,99,116,46,105,115,69,120,116,101,110,115,105,98,108,101,40,116,41,38,38,40,116,46,95,110,111,114,109,97,108,105,122,101,100,61,105,41,44,71,40,105,44,34,36,115,116,97,98,108,101,34,44,97,41,44,71,40,105,44,34,36,107,101,121,34,44,115,41,44,71,40,105,44,34,36,104,97,115,78,111,114,109,97,108,34,44,111,41,44,105,125,102,117,110,99,116,105,111,110,32,77,101,40,116,44,101,44,110,41,123,118,97,114,32,114,61,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,46,108,101,110,103,116,104,63,110,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,58,110,40,123,125,41,59,114,101,116,117,114,110,32,116,61,116,38,38,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,38,38,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,91,116,93,58,67,101,40,116,41,44,116,38,38,40,48,61,61,61,116,46,108,101,110,103,116,104,124,124,49,61,61,61,116,46,108,101,110,103,116,104,38,38,116,91,48,93,46,105,115,67,111,109,109,101,110,116,41,63,118,111,105,100,32,48,58,116,125,59,114,101,116,117,114,110,32,110,46,112,114,111,120,121,38,38,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,103,101,116,58,114,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,125,41,44,114,125,102,117,110,99,116,105,111,110,32,36,101,40,116,44,101,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,91,101,93,125,125,102,117,110,99,116,105,111,110,32,70,101,40,116,44,101,41,123,118,97,114,32,110,44,114,44,105,44,97,44,115,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,124,124,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,102,111,114,40,110,61,110,101,119,32,65,114,114,97,121,40,116,46,108,101,110,103,116,104,41,44,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,110,91,114,93,61,101,40,116,91,114,93,44,114,41,59,101,108,115,101,32,105,102,40,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,116,41,102,111,114,40,110,61,110,101,119,32,65,114,114,97,121,40,116,41,44,114,61,48,59,114,60,116,59,114,43,43,41,110,91,114,93,61,101,40,114,43,49,44,114,41,59,101,108,115,101,32,105,102,40,117,40,116,41,41,105,102,40,100,116,38,38,116,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,41,123,110,61,91,93,59,118,97,114,32,99,61,116,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,40,41,44,108,61,99,46,110,101,120,116,40,41,59,119,104,105,108,101,40,33,108,46,100,111,110,101,41,110,46,112,117,115,104,40,101,40,108,46,118,97,108,117,101,44,110,46,108,101,110,103,116,104,41,41,44,108,61,99,46,110,101,120,116,40,41,125,101,108,115,101,32,102,111,114,40,97,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,44,110,61,110,101,119,32,65,114,114,97,121,40,97,46,108,101,110,103,116,104,41,44,114,61,48,44,105,61,97,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,115,61,97,91,114,93,44,110,91,114,93,61,101,40,116,91,115,93,44,115,44,114,41,59,114,101,116,117,114,110,32,111,40,110,41,124,124,40,110,61,91,93,41,44,110,46,95,105,115,86,76,105,115,116,61,33,48,44,110,125,102,117,110,99,116,105,111,110,32,82,101,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,44,111,61,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,91,116,93,59,111,63,40,110,61,110,124,124,123,125,44,114,38,38,40,110,61,65,40,65,40,123,125,44,114,41,44,110,41,41,44,105,61,111,40,110,41,124,124,101,41,58,105,61,116,104,105,115,46,36,115,108,111,116,115,91,116,93,124,124,101,59,118,97,114,32,97,61,110,38,38,110,46,115,108,111,116,59,114,101,116,117,114,110,32,97,63,116,104,105,115,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,116,101,109,112,108,97,116,101,34,44,123,115,108,111,116,58,97,125,44,105,41,58,105,125,102,117,110,99,116,105,111,110,32,78,101,40,116,41,123,114,101,116,117,114,110,32,88,116,40,116,104,105,115,46,36,111,112,116,105,111,110,115,44,34,102,105,108,116,101,114,115,34,44,116,44,33,48,41,124,124,36,125,102,117,110,99,116,105,111,110,32,66,101,40,116,44,101,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,45,49,61,61,61,116,46,105,110,100,101,120,79,102,40,101,41,58,116,33,61,61,101,125,102,117,110,99,116,105,111,110,32,122,101,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,72,46,107,101,121,67,111,100,101,115,91,101,93,124,124,110,59,114,101,116,117,114,110,32,105,38,38,114,38,38,33,72,46,107,101,121,67,111,100,101,115,91,101,93,63,66,101,40,105,44,114,41,58,111,63,66,101,40,111,44,116,41,58,114,63,80,40,114,41,33,61,61,101,58,118,111,105,100,32,48,125,102,117,110,99,116,105,111,110,32,86,101,40,116,44,101,44,110,44,114,44,105,41,123,105,102,40,110,41,105,102,40,117,40,110,41,41,123,118,97,114,32,111,59,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,38,38,40,110,61,76,40,110,41,41,59,118,97,114,32,97,61,102,117,110,99,116,105,111,110,40,97,41,123,105,102,40,34,99,108,97,115,115,34,61,61,61,97,124,124,34,115,116,121,108,101,34,61,61,61,97,124,124,98,40,97,41,41,111,61,116,59,101,108,115,101,123,118,97,114,32,115,61,116,46,97,116,116,114,115,38,38,116,46,97,116,116,114,115,46,116,121,112,101,59,111,61,114,124,124,72,46,109,117,115,116,85,115,101,80,114,111,112,40,101,44,115,44,97,41,63,116,46,100,111,109,80,114,111,112,115,124,124,40,116,46,100,111,109,80,114,111,112,115,61,123,125,41,58,116,46,97,116,116,114,115,124,124,40,116,46,97,116,116,114,115,61,123,125,41,125,118,97,114,32,99,61,83,40,97,41,44,117,61,80,40,97,41,59,105,102,40,33,40,99,32,105,110,32,111,41,38,38,33,40,117,32,105,110,32,111,41,38,38,40,111,91,97,93,61,110,91,97,93,44,105,41,41,123,118,97,114,32,108,61,116,46,111,110,124,124,40,116,46,111,110,61,123,125,41,59,108,91,34,117,112,100,97,116,101,58,34,43,97,93,61,102,117,110,99,116,105,111,110,40,116,41,123,110,91,97,93,61,116,125,125,125,59,102,111,114,40,118,97,114,32,115,32,105,110,32,110,41,97,40,115,41,125,101,108,115,101,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,72,101,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,95,115,116,97,116,105,99,84,114,101,101,115,124,124,40,116,104,105,115,46,95,115,116,97,116,105,99,84,114,101,101,115,61,91,93,41,44,114,61,110,91,116,93,59,114,101,116,117,114,110,32,114,38,38,33,101,124,124,40,114,61,110,91,116,93,61,116,104,105,115,46,36,111,112,116,105,111,110,115,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,91,116,93,46,99,97,108,108,40,116,104,105,115,46,95,114,101,110,100,101,114,80,114,111,120,121,44,110,117,108,108,44,116,104,105,115,41,44,87,101,40,114,44,34,95,95,115,116,97,116,105,99,95,95,34,43,116,44,33,49,41,41,44,114,125,102,117,110,99,116,105,111,110,32,85,101,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,87,101,40,116,44,34,95,95,111,110,99,101,95,95,34,43,101,43,40,110,63,34,95,34,43,110,58,34,34,41,44,33,48,41,44,116,125,102,117,110,99,116,105,111,110,32,87,101,40,116,44,101,44,110,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,102,111,114,40,118,97,114,32,114,61,48,59,114,60,116,46,108,101,110,103,116,104,59,114,43,43,41,116,91,114,93,38,38,34,115,116,114,105,110,103,34,33,61,61,116,121,112,101,111,102,32,116,91,114,93,38,38,71,101,40,116,91,114,93,44,101,43,34,95,34,43,114,44,110,41,59,101,108,115,101,32,71,101,40,116,44,101,44,110,41,125,102,117,110,99,116,105,111,110,32,71,101,40,116,44,101,44,110,41,123,116,46,105,115,83,116,97,116,105,99,61,33,48,44,116,46,107,101,121,61,101,44,116,46,105,115,79,110,99,101,61,110,125,102,117,110,99,116,105,111,110,32,113,101,40,116,44,101,41,123,105,102,40,101,41,105,102,40,102,40,101,41,41,123,118,97,114,32,110,61,116,46,111,110,61,116,46,111,110,63,65,40,123,125,44,116,46,111,110,41,58,123,125,59,102,111,114,40,118,97,114,32,114,32,105,110,32,101,41,123,118,97,114,32,105,61,110,91,114,93,44,111,61,101,91,114,93,59,110,91,114,93,61,105,63,91,93,46,99,111,110,99,97,116,40,105,44,111,41,58,111,125,125,101,108,115,101,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,89,101,40,116,44,101,44,110,44,114,41,123,101,61,101,124,124,123,36,115,116,97,98,108,101,58,33,110,125,59,102,111,114,40,118,97,114,32,105,61,48,59,105,60,116,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,111,61,116,91,105,93,59,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,41,63,89,101,40,111,44,101,44,110,41,58,111,38,38,40,111,46,112,114,111,120,121,38,38,40,111,46,102,110,46,112,114,111,120,121,61,33,48,41,44,101,91,111,46,107,101,121,93,61,111,46,102,110,41,125,114,101,116,117,114,110,32,114,38,38,40,101,46,36,107,101,121,61,114,41,44,101,125,102,117,110,99,116,105,111,110,32,75,101,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,61,50,41,123,118,97,114,32,114,61,101,91,110,93,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,114,38,38,114,38,38,40,116,91,101,91,110,93,93,61,101,91,110,43,49,93,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,88,101,40,116,44,101,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,63,101,43,116,58,116,125,102,117,110,99,116,105,111,110,32,90,101,40,116,41,123,116,46,95,111,61,85,101,44,116,46,95,110,61,103,44,116,46,95,115,61,118,44,116,46,95,108,61,70,101,44,116,46,95,116,61,82,101,44,116,46,95,113,61,70,44,116,46,95,105,61,82,44,116,46,95,109,61,72,101,44,116,46,95,102,61,78,101,44,116,46,95,107,61,122,101,44,116,46,95,98,61,86,101,44,116,46,95,118,61,79,116,44,116,46,95,101,61,120,116,44,116,46,95,117,61,89,101,44,116,46,95,103,61,113,101,44,116,46,95,100,61,75,101,44,116,46,95,112,61,88,101,125,102,117,110,99,116,105,111,110,32,74,101,40,116,44,101,44,110,44,105,44,111,41,123,118,97,114,32,115,44,99,61,116,104,105,115,44,117,61,111,46,111,112,116,105,111,110,115,59,95,40,105,44,34,95,117,105,100,34,41,63,40,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,105,41,44,115,46,95,111,114,105,103,105,110,97,108,61,105,41,58,40,115,61,105,44,105,61,105,46,95,111,114,105,103,105,110,97,108,41,59,118,97,114,32,108,61,97,40,117,46,95,99,111,109,112,105,108,101,100,41,44,102,61,33,108,59,116,104,105,115,46,100,97,116,97,61,116,44,116,104,105,115,46,112,114,111,112,115,61,101,44,116,104,105,115,46,99,104,105,108,100,114,101,110,61,110,44,116,104,105,115,46,112,97,114,101,110,116,61,105,44,116,104,105,115,46,108,105,115,116,101,110,101,114,115,61,116,46,111,110,124,124,114,44,116,104,105,115,46,105,110,106,101,99,116,105,111,110,115,61,68,101,40,117,46,105,110,106,101,99,116,44,105,41,44,116,104,105,115,46,115,108,111,116,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,36,115,108,111,116,115,124,124,73,101,40,116,46,115,99,111,112,101,100,83,108,111,116,115,44,99,46,36,115,108,111,116,115,61,65,101,40,110,44,105,41,41,44,99,46,36,115,108,111,116,115,125,44,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,34,115,99,111,112,101,100,83,108,111,116,115,34,44,123,101,110,117,109,101,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,73,101,40,116,46,115,99,111,112,101,100,83,108,111,116,115,44,116,104,105,115,46,115,108,111,116,115,40,41,41,125,125,41,44,108,38,38,40,116,104,105,115,46,36,111,112,116,105,111,110,115,61,117,44,116,104,105,115,46,36,115,108,111,116,115,61,116,104,105,115,46,115,108,111,116,115,40,41,44,116,104,105,115,46,36,115,99,111,112,101,100,83,108,111,116,115,61,73,101,40,116,46,115,99,111,112,101,100,83,108,111,116,115,44,116,104,105,115,46,36,115,108,111,116,115,41,41,44,117,46,95,115,99,111,112,101,73,100,63,116,104,105,115,46,95,99,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,111,61,104,110,40,115,44,116,44,101,44,110,44,114,44,102,41,59,114,101,116,117,114,110,32,111,38,38,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,41,38,38,40,111,46,102,110,83,99,111,112,101,73,100,61,117,46,95,115,99,111,112,101,73,100,44,111,46,102,110,67,111,110,116,101,120,116,61,105,41,44,111,125,58,116,104,105,115,46,95,99,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,104,110,40,115,44,116,44,101,44,110,44,114,44,102,41,125,125,102,117,110,99,116,105,111,110,32,81,101,40,116,44,101,44,110,44,105,44,97,41,123,118,97,114,32,115,61,116,46,111,112,116,105,111,110,115,44,99,61,123,125,44,117,61,115,46,112,114,111,112,115,59,105,102,40,111,40,117,41,41,102,111,114,40,118,97,114,32,108,32,105,110,32,117,41,99,91,108,93,61,90,116,40,108,44,117,44,101,124,124,114,41,59,101,108,115,101,32,111,40,110,46,97,116,116,114,115,41,38,38,101,110,40,99,44,110,46,97,116,116,114,115,41,44,111,40,110,46,112,114,111,112,115,41,38,38,101,110,40,99,44,110,46,112,114,111,112,115,41,59,118,97,114,32,102,61,110,101,119,32,74,101,40,110,44,99,44,97,44,105,44,116,41,44,104,61,115,46,114,101,110,100,101,114,46,99,97,108,108,40,110,117,108,108,44,102,46,95,99,44,102,41,59,105,102,40,104,32,105,110,115,116,97,110,99,101,111,102,32,119,116,41,114,101,116,117,114,110,32,116,110,40,104,44,110,44,102,46,112,97,114,101,110,116,44,115,44,102,41,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,104,41,41,123,102,111,114,40,118,97,114,32,100,61,67,101,40,104,41,124,124,91,93,44,112,61,110,101,119,32,65,114,114,97,121,40,100,46,108,101,110,103,116,104,41,44,118,61,48,59,118,60,100,46,108,101,110,103,116,104,59,118,43,43,41,112,91,118,93,61,116,110,40,100,91,118,93,44,110,44,102,46,112,97,114,101,110,116,44,115,44,102,41,59,114,101,116,117,114,110,32,112,125,125,102,117,110,99,116,105,111,110,32,116,110,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,83,116,40,116,41,59,114,101,116,117,114,110,32,111,46,102,110,67,111,110,116,101,120,116,61,110,44,111,46,102,110,79,112,116,105,111,110,115,61,114,44,101,46,115,108,111,116,38,38,40,40,111,46,100,97,116,97,124,124,40,111,46,100,97,116,97,61,123,125,41,41,46,115,108,111,116,61,101,46,115,108,111,116,41,44,111,125,102,117,110,99,116,105,111,110,32,101,110,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,116,91,83,40,110,41,93,61,101,91,110,93,125,90,101,40,74,101,46,112,114,111,116,111,116,121,112,101,41,59,118,97,114,32,110,110,61,123,105,110,105,116,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,38,38,33,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,105,115,68,101,115,116,114,111,121,101,100,38,38,116,46,100,97,116,97,46,107,101,101,112,65,108,105,118,101,41,123,118,97,114,32,110,61,116,59,110,110,46,112,114,101,112,97,116,99,104,40,110,44,110,41,125,101,108,115,101,123,118,97,114,32,114,61,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,61,97,110,40,116,44,68,110,41,59,114,46,36,109,111,117,110,116,40,101,63,116,46,101,108,109,58,118,111,105,100,32,48,44,101,41,125,125,44,112,114,101,112,97,116,99,104,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,44,114,61,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,61,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,59,36,110,40,114,44,110,46,112,114,111,112,115,68,97,116,97,44,110,46,108,105,115,116,101,110,101,114,115,44,101,44,110,46,99,104,105,108,100,114,101,110,41,125,44,105,110,115,101,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,110,116,101,120,116,44,110,61,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,59,110,46,95,105,115,77,111,117,110,116,101,100,124,124,40,110,46,95,105,115,77,111,117,110,116,101,100,61,33,48,44,66,110,40,110,44,34,109,111,117,110,116,101,100,34,41,41,44,116,46,100,97,116,97,46,107,101,101,112,65,108,105,118,101,38,38,40,101,46,95,105,115,77,111,117,110,116,101,100,63,81,110,40,110,41,58,82,110,40,110,44,33,48,41,41,125,44,100,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,59,101,46,95,105,115,68,101,115,116,114,111,121,101,100,124,124,40,116,46,100,97,116,97,46,107,101,101,112,65,108,105,118,101,63,78,110,40,101,44,33,48,41,58,101,46,36,100,101,115,116,114,111,121,40,41,41,125,125,44,114,110,61,79,98,106,101,99,116,46,107,101,121,115,40,110,110,41,59,102,117,110,99,116,105,111,110,32,111,110,40,116,44,101,44,110,44,114,44,115,41,123,105,102,40,33,105,40,116,41,41,123,118,97,114,32,99,61,110,46,36,111,112,116,105,111,110,115,46,95,98,97,115,101,59,105,102,40,117,40,116,41,38,38,40,116,61,99,46,101,120,116,101,110,100,40,116,41,41,44,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,41,123,118,97,114,32,108,59,105,102,40,105,40,116,46,99,105,100,41,38,38,40,108,61,116,44,116,61,120,110,40,108,44,99,41,44,118,111,105,100,32,48,61,61,61,116,41,41,114,101,116,117,114,110,32,95,110,40,108,44,101,44,110,44,114,44,115,41,59,101,61,101,124,124,123,125,44,120,114,40,116,41,44,111,40,101,46,109,111,100,101,108,41,38,38,117,110,40,116,46,111,112,116,105,111,110,115,44,101,41,59,118,97,114,32,102,61,79,101,40,101,44,116,44,115,41,59,105,102,40,97,40,116,46,111,112,116,105,111,110,115,46,102,117,110,99,116,105,111,110,97,108,41,41,114,101,116,117,114,110,32,81,101,40,116,44,102,44,101,44,110,44,114,41,59,118,97,114,32,104,61,101,46,111,110,59,105,102,40,101,46,111,110,61,101,46,110,97,116,105,118,101,79,110,44,97,40,116,46,111,112,116,105,111,110,115,46,97,98,115,116,114,97,99,116,41,41,123,118,97,114,32,100,61,101,46,115,108,111,116,59,101,61,123,125,44,100,38,38,40,101,46,115,108,111,116,61,100,41,125,115,110,40,101,41,59,118,97,114,32,112,61,116,46,111,112,116,105,111,110,115,46,110,97,109,101,124,124,115,44,118,61,110,101,119,32,119,116,40,34,118,117,101,45,99,111,109,112,111,110,101,110,116,45,34,43,116,46,99,105,100,43,40,112,63,34,45,34,43,112,58,34,34,41,44,101,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,110,44,123,67,116,111,114,58,116,44,112,114,111,112,115,68,97,116,97,58,102,44,108,105,115,116,101,110,101,114,115,58,104,44,116,97,103,58,115,44,99,104,105,108,100,114,101,110,58,114,125,44,108,41,59,114,101,116,117,114,110,32,118,125,125,125,102,117,110,99,116,105,111,110,32,97,110,40,116,44,101,41,123,118,97,114,32,110,61,123,95,105,115,67,111,109,112,111,110,101,110,116,58,33,48,44,95,112,97,114,101,110,116,86,110,111,100,101,58,116,44,112,97,114,101,110,116,58,101,125,44,114,61,116,46,100,97,116,97,46,105,110,108,105,110,101,84,101,109,112,108,97,116,101,59,114,101,116,117,114,110,32,111,40,114,41,38,38,40,110,46,114,101,110,100,101,114,61,114,46,114,101,110,100,101,114,44,110,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,61,114,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,41,44,110,101,119,32,116,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,67,116,111,114,40,110,41,125,102,117,110,99,116,105,111,110,32,115,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,116,46,104,111,111,107,124,124,40,116,46,104,111,111,107,61,123,125,41,44,110,61,48,59,110,60,114,110,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,114,61,114,110,91,110,93,44,105,61,101,91,114,93,44,111,61,110,110,91,114,93,59,105,61,61,61,111,124,124,105,38,38,105,46,95,109,101,114,103,101,100,124,124,40,101,91,114,93,61,105,63,99,110,40,111,44,105,41,58,111,41,125,125,102,117,110,99,116,105,111,110,32,99,110,40,116,44,101,41,123,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,110,44,114,41,123,116,40,110,44,114,41,44,101,40,110,44,114,41,125,59,114,101,116,117,114,110,32,110,46,95,109,101,114,103,101,100,61,33,48,44,110,125,102,117,110,99,116,105,111,110,32,117,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,109,111,100,101,108,38,38,116,46,109,111,100,101,108,46,112,114,111,112,124,124,34,118,97,108,117,101,34,44,114,61,116,46,109,111,100,101,108,38,38,116,46,109,111,100,101,108,46,101,118,101,110,116,124,124,34,105,110,112,117,116,34,59,40,101,46,97,116,116,114,115,124,124,40,101,46,97,116,116,114,115,61,123,125,41,41,91,110,93,61,101,46,109,111,100,101,108,46,118,97,108,117,101,59,118,97,114,32,105,61,101,46,111,110,124,124,40,101,46,111,110,61,123,125,41,44,97,61,105,91,114,93,44,115,61,101,46,109,111,100,101,108,46,99,97,108,108,98,97,99,107,59,111,40,97,41,63,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,41,63,45,49,61,61,61,97,46,105,110,100,101,120,79,102,40,115,41,58,97,33,61,61,115,41,38,38,40,105,91,114,93,61,91,115,93,46,99,111,110,99,97,116,40,97,41,41,58,105,91,114,93,61,115,125,118,97,114,32,108,110,61,49,44,102,110,61,50,59,102,117,110,99,116,105,111,110,32,104,110,40,116,44,101,44,110,44,114,44,105,44,111,41,123,114,101,116,117,114,110,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,124,124,99,40,110,41,41,38,38,40,105,61,114,44,114,61,110,44,110,61,118,111,105,100,32,48,41,44,97,40,111,41,38,38,40,105,61,102,110,41,44,100,110,40,116,44,101,44,110,44,114,44,105,41,125,102,117,110,99,116,105,111,110,32,100,110,40,116,44,101,44,110,44,114,44,105,41,123,105,102,40,111,40,110,41,38,38,111,40,110,46,95,95,111,98,95,95,41,41,114,101,116,117,114,110,32,120,116,40,41,59,105,102,40,111,40,110,41,38,38,111,40,110,46,105,115,41,38,38,40,101,61,110,46,105,115,41,44,33,101,41,114,101,116,117,114,110,32,120,116,40,41,59,118,97,114,32,97,44,115,44,99,59,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,41,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,114,91,48,93,38,38,40,110,61,110,124,124,123,125,44,110,46,115,99,111,112,101,100,83,108,111,116,115,61,123,100,101,102,97,117,108,116,58,114,91,48,93,125,44,114,46,108,101,110,103,116,104,61,48,41,44,105,61,61,61,102,110,63,114,61,67,101,40,114,41,58,105,61,61,61,108,110,38,38,40,114,61,107,101,40,114,41,41,44,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,101,41,63,40,115,61,116,46,36,118,110,111,100,101,38,38,116,46,36,118,110,111,100,101,46,110,115,124,124,72,46,103,101,116,84,97,103,78,97,109,101,115,112,97,99,101,40,101,41,44,97,61,72,46,105,115,82,101,115,101,114,118,101,100,84,97,103,40,101,41,63,110,101,119,32,119,116,40,72,46,112,97,114,115,101,80,108,97,116,102,111,114,109,84,97,103,78,97,109,101,40,101,41,44,110,44,114,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,116,41,58,110,38,38,110,46,112,114,101,124,124,33,111,40,99,61,88,116,40,116,46,36,111,112,116,105,111,110,115,44,34,99,111,109,112,111,110,101,110,116,115,34,44,101,41,41,63,110,101,119,32,119,116,40,101,44,110,44,114,44,118,111,105,100,32,48,44,118,111,105,100,32,48,44,116,41,58,111,110,40,99,44,110,44,116,44,114,44,101,41,41,58,97,61,111,110,40,101,44,110,44,116,44,114,41,59,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,41,63,97,58,111,40,97,41,63,40,111,40,115,41,38,38,112,110,40,97,44,115,41,44,111,40,110,41,38,38,118,110,40,110,41,44,97,41,58,120,116,40,41,125,102,117,110,99,116,105,111,110,32,112,110,40,116,44,101,44,110,41,123,105,102,40,116,46,110,115,61,101,44,34,102,111,114,101,105,103,110,79,98,106,101,99,116,34,61,61,61,116,46,116,97,103,38,38,40,101,61,118,111,105,100,32,48,44,110,61,33,48,41,44,111,40,116,46,99,104,105,108,100,114,101,110,41,41,102,111,114,40,118,97,114,32,114,61,48,44,115,61,116,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,114,60,115,59,114,43,43,41,123,118,97,114,32,99,61,116,46,99,104,105,108,100,114,101,110,91,114,93,59,111,40,99,46,116,97,103,41,38,38,40,105,40,99,46,110,115,41,124,124,97,40,110,41,38,38,34,115,118,103,34,33,61,61,99,46,116,97,103,41,38,38,112,110,40,99,44,101,44,110,41,125,125,102,117,110,99,116,105,111,110,32,118,110,40,116,41,123,117,40,116,46,115,116,121,108,101,41,38,38,109,101,40,116,46,115,116,121,108,101,41,44,117,40,116,46,99,108,97,115,115,41,38,38,109,101,40,116,46,99,108,97,115,115,41,125,102,117,110,99,116,105,111,110,32,103,110,40,116,41,123,116,46,95,118,110,111,100,101,61,110,117,108,108,44,116,46,95,115,116,97,116,105,99,84,114,101,101,115,61,110,117,108,108,59,118,97,114,32,101,61,116,46,36,111,112,116,105,111,110,115,44,110,61,116,46,36,118,110,111,100,101,61,101,46,95,112,97,114,101,110,116,86,110,111,100,101,44,105,61,110,38,38,110,46,99,111,110,116,101,120,116,59,116,46,36,115,108,111,116,115,61,65,101,40,101,46,95,114,101,110,100,101,114,67,104,105,108,100,114,101,110,44,105,41,44,116,46,36,115,99,111,112,101,100,83,108,111,116,115,61,114,44,116,46,95,99,61,102,117,110,99,116,105,111,110,40,101,44,110,44,114,44,105,41,123,114,101,116,117,114,110,32,104,110,40,116,44,101,44,110,44,114,44,105,44,33,49,41,125,44,116,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,101,44,110,44,114,44,105,41,123,114,101,116,117,114,110,32,104,110,40,116,44,101,44,110,44,114,44,105,44,33,48,41,125,59,118,97,114,32,111,61,110,38,38,110,46,100,97,116,97,59,77,116,40,116,44,34,36,97,116,116,114,115,34,44,111,38,38,111,46,97,116,116,114,115,124,124,114,44,110,117,108,108,44,33,48,41,44,77,116,40,116,44,34,36,108,105,115,116,101,110,101,114,115,34,44,101,46,95,112,97,114,101,110,116,76,105,115,116,101,110,101,114,115,124,124,114,44,110,117,108,108,44,33,48,41,125,118,97,114,32,109,110,44,98,110,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,121,110,40,116,41,123,90,101,40,116,46,112,114,111,116,111,116,121,112,101,41,44,116,46,112,114,111,116,111,116,121,112,101,46,36,110,101,120,116,84,105,99,107,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,101,40,116,44,116,104,105,115,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,95,114,101,110,100,101,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,61,116,104,105,115,44,110,61,101,46,36,111,112,116,105,111,110,115,44,114,61,110,46,114,101,110,100,101,114,44,105,61,110,46,95,112,97,114,101,110,116,86,110,111,100,101,59,105,38,38,40,101,46,36,115,99,111,112,101,100,83,108,111,116,115,61,73,101,40,105,46,100,97,116,97,46,115,99,111,112,101,100,83,108,111,116,115,44,101,46,36,115,108,111,116,115,44,101,46,36,115,99,111,112,101,100,83,108,111,116,115,41,41,44,101,46,36,118,110,111,100,101,61,105,59,116,114,121,123,98,110,61,101,44,116,61,114,46,99,97,108,108,40,101,46,95,114,101,110,100,101,114,80,114,111,120,121,44,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,41,125,99,97,116,99,104,40,83,97,41,123,110,101,40,83,97,44,101,44,34,114,101,110,100,101,114,34,41,44,116,61,101,46,95,118,110,111,100,101,125,102,105,110,97,108,108,121,123,98,110,61,110,117,108,108,125,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,38,38,49,61,61,61,116,46,108,101,110,103,116,104,38,38,40,116,61,116,91,48,93,41,44,116,32,105,110,115,116,97,110,99,101,111,102,32,119,116,124,124,40,116,61,120,116,40,41,41,44,116,46,112,97,114,101,110,116,61,105,44,116,125,125,102,117,110,99,116,105,111,110,32,119,110,40,116,44,101,41,123,114,101,116,117,114,110,40,116,46,95,95,101,115,77,111,100,117,108,101,124,124,100,116,38,38,34,77,111,100,117,108,101,34,61,61,61,116,91,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,93,41,38,38,40,116,61,116,46,100,101,102,97,117,108,116,41,44,117,40,116,41,63,101,46,101,120,116,101,110,100,40,116,41,58,116,125,102,117,110,99,116,105,111,110,32,95,110,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,120,116,40,41,59,114,101,116,117,114,110,32,111,46,97,115,121,110,99,70,97,99,116,111,114,121,61,116,44,111,46,97,115,121,110,99,77,101,116,97,61,123,100,97,116,97,58,101,44,99,111,110,116,101,120,116,58,110,44,99,104,105,108,100,114,101,110,58,114,44,116,97,103,58,105,125,44,111,125,102,117,110,99,116,105,111,110,32,120,110,40,116,44,101,41,123,105,102,40,97,40,116,46,101,114,114,111,114,41,38,38,111,40,116,46,101,114,114,111,114,67,111,109,112,41,41,114,101,116,117,114,110,32,116,46,101,114,114,111,114,67,111,109,112,59,105,102,40,111,40,116,46,114,101,115,111,108,118,101,100,41,41,114,101,116,117,114,110,32,116,46,114,101,115,111,108,118,101,100,59,118,97,114,32,110,61,98,110,59,105,102,40,110,38,38,111,40,116,46,111,119,110,101,114,115,41,38,38,45,49,61,61,61,116,46,111,119,110,101,114,115,46,105,110,100,101,120,79,102,40,110,41,38,38,116,46,111,119,110,101,114,115,46,112,117,115,104,40,110,41,44,97,40,116,46,108,111,97,100,105,110,103,41,38,38,111,40,116,46,108,111,97,100,105,110,103,67,111,109,112,41,41,114,101,116,117,114,110,32,116,46,108,111,97,100,105,110,103,67,111,109,112,59,105,102,40,110,38,38,33,111,40,116,46,111,119,110,101,114,115,41,41,123,118,97,114,32,114,61,116,46,111,119,110,101,114,115,61,91,110,93,44,115,61,33,48,44,99,61,110,117,108,108,44,108,61,110,117,108,108,59,110,46,36,111,110,40,34,104,111,111,107,58,100,101,115,116,114,111,121,101,100,34,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,114,44,110,41,125,41,41,59,118,97,114,32,102,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,48,44,110,61,114,46,108,101,110,103,116,104,59,101,60,110,59,101,43,43,41,114,91,101,93,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,59,116,38,38,40,114,46,108,101,110,103,116,104,61,48,44,110,117,108,108,33,61,61,99,38,38,40,99,108,101,97,114,84,105,109,101,111,117,116,40,99,41,44,99,61,110,117,108,108,41,44,110,117,108,108,33,61,61,108,38,38,40,99,108,101,97,114,84,105,109,101,111,117,116,40,108,41,44,108,61,110,117,108,108,41,41,125,44,104,61,78,40,40,102,117,110,99,116,105,111,110,40,110,41,123,116,46,114,101,115,111,108,118,101,100,61,119,110,40,110,44,101,41,44,115,63,114,46,108,101,110,103,116,104,61,48,58,102,40,33,48,41,125,41,41,44,100,61,78,40,40,102,117,110,99,116,105,111,110,40,101,41,123,111,40,116,46,101,114,114,111,114,67,111,109,112,41,38,38,40,116,46,101,114,114,111,114,61,33,48,44,102,40,33,48,41,41,125,41,41,44,118,61,116,40,104,44,100,41,59,114,101,116,117,114,110,32,117,40,118,41,38,38,40,112,40,118,41,63,105,40,116,46,114,101,115,111,108,118,101,100,41,38,38,118,46,116,104,101,110,40,104,44,100,41,58,112,40,118,46,99,111,109,112,111,110,101,110,116,41,38,38,40,118,46,99,111,109,112,111,110,101,110,116,46,116,104,101,110,40,104,44,100,41,44,111,40,118,46,101,114,114,111,114,41,38,38,40,116,46,101,114,114,111,114,67,111,109,112,61,119,110,40,118,46,101,114,114,111,114,44,101,41,41,44,111,40,118,46,108,111,97,100,105,110,103,41,38,38,40,116,46,108,111,97,100,105,110,103,67,111,109,112,61,119,110,40,118,46,108,111,97,100,105,110,103,44,101,41,44,48,61,61,61,118,46,100,101,108,97,121,63,116,46,108,111,97,100,105,110,103,61,33,48,58,99,61,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,99,61,110,117,108,108,44,105,40,116,46,114,101,115,111,108,118,101,100,41,38,38,105,40,116,46,101,114,114,111,114,41,38,38,40,116,46,108,111,97,100,105,110,103,61,33,48,44,102,40,33,49,41,41,125,41,44,118,46,100,101,108,97,121,124,124,50,48,48,41,41,44,111,40,118,46,116,105,109,101,111,117,116,41,38,38,40,108,61,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,108,61,110,117,108,108,44,105,40,116,46,114,101,115,111,108,118,101,100,41,38,38,100,40,110,117,108,108,41,125,41,44,118,46,116,105,109,101,111,117,116,41,41,41,41,44,115,61,33,49,44,116,46,108,111,97,100,105,110,103,63,116,46,108,111,97,100,105,110,103,67,111,109,112,58,116,46,114,101,115,111,108,118,101,100,125,125,102,117,110,99,116,105,111,110,32,79,110,40,116,41,123,114,101,116,117,114,110,32,116,46,105,115,67,111,109,109,101,110,116,38,38,116,46,97,115,121,110,99,70,97,99,116,111,114,121,125,102,117,110,99,116,105,111,110,32,83,110,40,116,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,102,111,114,40,118,97,114,32,101,61,48,59,101,60,116,46,108,101,110,103,116,104,59,101,43,43,41,123,118,97,114,32,110,61,116,91,101,93,59,105,102,40,111,40,110,41,38,38,40,111,40,110,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,41,124,124,79,110,40,110,41,41,41,114,101,116,117,114,110,32,110,125,125,102,117,110,99,116,105,111,110,32,107,110,40,116,41,123,116,46,95,101,118,101,110,116,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,116,46,95,104,97,115,72,111,111,107,69,118,101,110,116,61,33,49,59,118,97,114,32,101,61,116,46,36,111,112,116,105,111,110,115,46,95,112,97,114,101,110,116,76,105,115,116,101,110,101,114,115,59,101,38,38,106,110,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,67,110,40,116,44,101,41,123,109,110,46,36,111,110,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,80,110,40,116,44,101,41,123,109,110,46,36,111,102,102,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,84,110,40,116,44,101,41,123,118,97,114,32,110,61,109,110,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,105,61,101,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,33,61,61,105,38,38,110,46,36,111,102,102,40,116,44,114,41,125,125,102,117,110,99,116,105,111,110,32,106,110,40,116,44,101,44,110,41,123,109,110,61,116,44,95,101,40,101,44,110,124,124,123,125,44,67,110,44,80,110,44,84,110,44,116,41,44,109,110,61,118,111,105,100,32,48,125,102,117,110,99,116,105,111,110,32,69,110,40,116,41,123,118,97,114,32,101,61,47,94,104,111,111,107,58,47,59,116,46,112,114,111,116,111,116,121,112,101,46,36,111,110,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,114,61,116,104,105,115,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,102,111,114,40,118,97,114,32,105,61,48,44,111,61,116,46,108,101,110,103,116,104,59,105,60,111,59,105,43,43,41,114,46,36,111,110,40,116,91,105,93,44,110,41,59,101,108,115,101,40,114,46,95,101,118,101,110,116,115,91,116,93,124,124,40,114,46,95,101,118,101,110,116,115,91,116,93,61,91,93,41,41,46,112,117,115,104,40,110,41,44,101,46,116,101,115,116,40,116,41,38,38,40,114,46,95,104,97,115,72,111,111,107,69,118,101,110,116,61,33,48,41,59,114,101,116,117,114,110,32,114,125,44,116,46,112,114,111,116,111,116,121,112,101,46,36,111,110,99,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,59,102,117,110,99,116,105,111,110,32,114,40,41,123,110,46,36,111,102,102,40,116,44,114,41,44,101,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,114,46,102,110,61,101,44,110,46,36,111,110,40,116,44,114,41,44,110,125,44,116,46,112,114,111,116,111,116,121,112,101,46,36,111,102,102,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,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,110,46,95,101,118,101,110,116,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,110,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,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,110,46,36,111,102,102,40,116,91,114,93,44,101,41,59,114,101,116,117,114,110,32,110,125,118,97,114,32,111,44,97,61,110,46,95,101,118,101,110,116,115,91,116,93,59,105,102,40,33,97,41,114,101,116,117,114,110,32,110,59,105,102,40,33,101,41,114,101,116,117,114,110,32,110,46,95,101,118,101,110,116,115,91,116,93,61,110,117,108,108,44,110,59,118,97,114,32,115,61,97,46,108,101,110,103,116,104,59,119,104,105,108,101,40,115,45,45,41,105,102,40,111,61,97,91,115,93,44,111,61,61,61,101,124,124,111,46,102,110,61,61,61,101,41,123,97,46,115,112,108,105,99,101,40,115,44,49,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,110,125,44,116,46,112,114,111,116,111,116,121,112,101,46,36,101,109,105,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,101,46,95,101,118,101,110,116,115,91,116,93,59,105,102,40,110,41,123,110,61,110,46,108,101,110,103,116,104,62,49,63,68,40,110,41,58,110,59,102,111,114,40,118,97,114,32,114,61,68,40,97,114,103,117,109,101,110,116,115,44,49,41,44,105,61,39,101,118,101,110,116,32,104,97,110,100,108,101,114,32,102,111,114,32,34,39,43,116,43,39,34,39,44,111,61,48,44,97,61,110,46,108,101,110,103,116,104,59,111,60,97,59,111,43,43,41,114,101,40,110,91,111,93,44,101,44,114,44,101,44,105,41,125,114,101,116,117,114,110,32,101,125,125,118,97,114,32,68,110,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,65,110,40,116,41,123,118,97,114,32,101,61,68,110,59,114,101,116,117,114,110,32,68,110,61,116,44,102,117,110,99,116,105,111,110,40,41,123,68,110,61,101,125,125,102,117,110,99,116,105,111,110,32,76,110,40,116,41,123,118,97,114,32,101,61,116,46,36,111,112,116,105,111,110,115,44,110,61,101,46,112,97,114,101,110,116,59,105,102,40,110,38,38,33,101,46,97,98,115,116,114,97,99,116,41,123,119,104,105,108,101,40,110,46,36,111,112,116,105,111,110,115,46,97,98,115,116,114,97,99,116,38,38,110,46,36,112,97,114,101,110,116,41,110,61,110,46,36,112,97,114,101,110,116,59,110,46,36,99,104,105,108,100,114,101,110,46,112,117,115,104,40,116,41,125,116,46,36,112,97,114,101,110,116,61,110,44,116,46,36,114,111,111,116,61,110,63,110,46,36,114,111,111,116,58,116,44,116,46,36,99,104,105,108,100,114,101,110,61,91,93,44,116,46,36,114,101,102,115,61,123,125,44,116,46,95,119,97,116,99,104,101,114,61,110,117,108,108,44,116,46,95,105,110,97,99,116,105,118,101,61,110,117,108,108,44,116,46,95,100,105,114,101,99,116,73,110,97,99,116,105,118,101,61,33,49,44,116,46,95,105,115,77,111,117,110,116,101,100,61,33,49,44,116,46,95,105,115,68,101,115,116,114,111,121,101,100,61,33,49,44,116,46,95,105,115,66,101,105,110,103,68,101,115,116,114,111,121,101,100,61,33,49,125,102,117,110,99,116,105,111,110,32,73,110,40,116,41,123,116,46,112,114,111,116,111,116,121,112,101,46,95,117,112,100,97,116,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,44,114,61,110,46,36,101,108,44,105,61,110,46,95,118,110,111,100,101,44,111,61,65,110,40,110,41,59,110,46,95,118,110,111,100,101,61,116,44,110,46,36,101,108,61,105,63,110,46,95,95,112,97,116,99,104,95,95,40,105,44,116,41,58,110,46,95,95,112,97,116,99,104,95,95,40,110,46,36,101,108,44,116,44,101,44,33,49,41,44,111,40,41,44,114,38,38,40,114,46,95,95,118,117,101,95,95,61,110,117,108,108,41,44,110,46,36,101,108,38,38,40,110,46,36,101,108,46,95,95,118,117,101,95,95,61,110,41,44,110,46,36,118,110,111,100,101,38,38,110,46,36,112,97,114,101,110,116,38,38,110,46,36,118,110,111,100,101,61,61,61,110,46,36,112,97,114,101,110,116,46,95,118,110,111,100,101,38,38,40,110,46,36,112,97,114,101,110,116,46,36,101,108,61,110,46,36,101,108,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,36,102,111,114,99,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,116,46,95,119,97,116,99,104,101,114,38,38,116,46,95,119,97,116,99,104,101,114,46,117,112,100,97,116,101,40,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,36,100,101,115,116,114,111,121,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,46,95,105,115,66,101,105,110,103,68,101,115,116,114,111,121,101,100,41,123,66,110,40,116,44,34,98,101,102,111,114,101,68,101,115,116,114,111,121,34,41,44,116,46,95,105,115,66,101,105,110,103,68,101,115,116,114,111,121,101,100,61,33,48,59,118,97,114,32,101,61,116,46,36,112,97,114,101,110,116,59,33,101,124,124,101,46,95,105,115,66,101,105,110,103,68,101,115,116,114,111,121,101,100,124,124,116,46,36,111,112,116,105,111,110,115,46,97,98,115,116,114,97,99,116,124,124,121,40,101,46,36,99,104,105,108,100,114,101,110,44,116,41,44,116,46,95,119,97,116,99,104,101,114,38,38,116,46,95,119,97,116,99,104,101,114,46,116,101,97,114,100,111,119,110,40,41,59,118,97,114,32,110,61,116,46,95,119,97,116,99,104,101,114,115,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,116,46,95,119,97,116,99,104,101,114,115,91,110,93,46,116,101,97,114,100,111,119,110,40,41,59,116,46,95,100,97,116,97,46,95,95,111,98,95,95,38,38,116,46,95,100,97,116,97,46,95,95,111,98,95,95,46,118,109,67,111,117,110,116,45,45,44,116,46,95,105,115,68,101,115,116,114,111,121,101,100,61,33,48,44,116,46,95,95,112,97,116,99,104,95,95,40,116,46,95,118,110,111,100,101,44,110,117,108,108,41,44,66,110,40,116,44,34,100,101,115,116,114,111,121,101,100,34,41,44,116,46,36,111,102,102,40,41,44,116,46,36,101,108,38,38,40,116,46,36,101,108,46,95,95,118,117,101,95,95,61,110,117,108,108,41,44,116,46,36,118,110,111,100,101,38,38,40,116,46,36,118,110,111,100,101,46,112,97,114,101,110,116,61,110,117,108,108,41,125,125,125,102,117,110,99,116,105,111,110,32,77,110,40,116,44,101,44,110,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,116,46,36,101,108,61,101,44,116,46,36,111,112,116,105,111,110,115,46,114,101,110,100,101,114,124,124,40,116,46,36,111,112,116,105,111,110,115,46,114,101,110,100,101,114,61,120,116,41,44,66,110,40,116,44,34,98,101,102,111,114,101,77,111,117,110,116,34,41,44,114,61,102,117,110,99,116,105,111,110,40,41,123,116,46,95,117,112,100,97,116,101,40,116,46,95,114,101,110,100,101,114,40,41,44,110,41,125,44,110,101,119,32,114,114,40,116,44,114,44,73,44,123,98,101,102,111,114,101,58,102,117,110,99,116,105,111,110,40,41,123,116,46,95,105,115,77,111,117,110,116,101,100,38,38,33,116,46,95,105,115,68,101,115,116,114,111,121,101,100,38,38,66,110,40,116,44,34,98,101,102,111,114,101,85,112,100,97,116,101,34,41,125,125,44,33,48,41,44,110,61,33,49,44,110,117,108,108,61,61,116,46,36,118,110,111,100,101,38,38,40,116,46,95,105,115,77,111,117,110,116,101,100,61,33,48,44,66,110,40,116,44,34,109,111,117,110,116,101,100,34,41,41,44,116,125,102,117,110,99,116,105,111,110,32,36,110,40,116,44,101,44,110,44,105,44,111,41,123,118,97,114,32,97,61,105,46,100,97,116,97,46,115,99,111,112,101,100,83,108,111,116,115,44,115,61,116,46,36,115,99,111,112,101,100,83,108,111,116,115,44,99,61,33,33,40,97,38,38,33,97,46,36,115,116,97,98,108,101,124,124,115,33,61,61,114,38,38,33,115,46,36,115,116,97,98,108,101,124,124,97,38,38,116,46,36,115,99,111,112,101,100,83,108,111,116,115,46,36,107,101,121,33,61,61,97,46,36,107,101,121,41,44,117,61,33,33,40,111,124,124,116,46,36,111,112,116,105,111,110,115,46,95,114,101,110,100,101,114,67,104,105,108,100,114,101,110,124,124,99,41,59,105,102,40,116,46,36,111,112,116,105,111,110,115,46,95,112,97,114,101,110,116,86,110,111,100,101,61,105,44,116,46,36,118,110,111,100,101,61,105,44,116,46,95,118,110,111,100,101,38,38,40,116,46,95,118,110,111,100,101,46,112,97,114,101,110,116,61,105,41,44,116,46,36,111,112,116,105,111,110,115,46,95,114,101,110,100,101,114,67,104,105,108,100,114,101,110,61,111,44,116,46,36,97,116,116,114,115,61,105,46,100,97,116,97,46,97,116,116,114,115,124,124,114,44,116,46,36,108,105,115,116,101,110,101,114,115,61,110,124,124,114,44,101,38,38,116,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,41,123,69,116,40,33,49,41,59,102,111,114,40,118,97,114,32,108,61,116,46,95,112,114,111,112,115,44,102,61,116,46,36,111,112,116,105,111,110,115,46,95,112,114,111,112,75,101,121,115,124,124,91,93,44,104,61,48,59,104,60,102,46,108,101,110,103,116,104,59,104,43,43,41,123,118,97,114,32,100,61,102,91,104,93,44,112,61,116,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,59,108,91,100,93,61,90,116,40,100,44,112,44,101,44,116,41,125,69,116,40,33,48,41,44,116,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,68,97,116,97,61,101,125,110,61,110,124,124,114,59,118,97,114,32,118,61,116,46,36,111,112,116,105,111,110,115,46,95,112,97,114,101,110,116,76,105,115,116,101,110,101,114,115,59,116,46,36,111,112,116,105,111,110,115,46,95,112,97,114,101,110,116,76,105,115,116,101,110,101,114,115,61,110,44,106,110,40,116,44,110,44,118,41,44,117,38,38,40,116,46,36,115,108,111,116,115,61,65,101,40,111,44,105,46,99,111,110,116,101,120,116,41,44,116,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,41,125,102,117,110,99,116,105,111,110,32,70,110,40,116,41,123,119,104,105,108,101,40,116,38,38,40,116,61,116,46,36,112,97,114,101,110,116,41,41,105,102,40,116,46,95,105,110,97,99,116,105,118,101,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,102,117,110,99,116,105,111,110,32,82,110,40,116,44,101,41,123,105,102,40,101,41,123,105,102,40,116,46,95,100,105,114,101,99,116,73,110,97,99,116,105,118,101,61,33,49,44,70,110,40,116,41,41,114,101,116,117,114,110,125,101,108,115,101,32,105,102,40,116,46,95,100,105,114,101,99,116,73,110,97,99,116,105,118,101,41,114,101,116,117,114,110,59,105,102,40,116,46,95,105,110,97,99,116,105,118,101,124,124,110,117,108,108,61,61,61,116,46,95,105,110,97,99,116,105,118,101,41,123,116,46,95,105,110,97,99,116,105,118,101,61,33,49,59,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,46,36,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,110,43,43,41,82,110,40,116,46,36,99,104,105,108,100,114,101,110,91,110,93,41,59,66,110,40,116,44,34,97,99,116,105,118,97,116,101,100,34,41,125,125,102,117,110,99,116,105,111,110,32,78,110,40,116,44,101,41,123,105,102,40,40,33,101,124,124,40,116,46,95,100,105,114,101,99,116,73,110,97,99,116,105,118,101,61,33,48,44,33,70,110,40,116,41,41,41,38,38,33,116,46,95,105,110,97,99,116,105,118,101,41,123,116,46,95,105,110,97,99,116,105,118,101,61,33,48,59,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,46,36,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,110,43,43,41,78,110,40,116,46,36,99,104,105,108,100,114,101,110,91,110,93,41,59,66,110,40,116,44,34,100,101,97,99,116,105,118,97,116,101,100,34,41,125,125,102,117,110,99,116,105,111,110,32,66,110,40,116,44,101,41,123,98,116,40,41,59,118,97,114,32,110,61,116,46,36,111,112,116,105,111,110,115,91,101,93,44,114,61,101,43,34,32,104,111,111,107,34,59,105,102,40,110,41,102,111,114,40,118,97,114,32,105,61,48,44,111,61,110,46,108,101,110,103,116,104,59,105,60,111,59,105,43,43,41,114,101,40,110,91,105,93,44,116,44,110,117,108,108,44,116,44,114,41,59,116,46,95,104,97,115,72,111,111,107,69,118,101,110,116,38,38,116,46,36,101,109,105,116,40,34,104,111,111,107,58,34,43,101,41,44,121,116,40,41,125,118,97,114,32,122,110,61,91,93,44,86,110,61,91,93,44,72,110,61,123,125,44,85,110,61,33,49,44,87,110,61,33,49,44,71,110,61,48,59,102,117,110,99,116,105,111,110,32,113,110,40,41,123,71,110,61,122,110,46,108,101,110,103,116,104,61,86,110,46,108,101,110,103,116,104,61,48,44,72,110,61,123,125,44,85,110,61,87,110,61,33,49,125,118,97,114,32,89,110,61,48,44,75,110,61,68,97,116,101,46,110,111,119,59,105,102,40,90,38,38,33,101,116,41,123,118,97,114,32,88,110,61,119,105,110,100,111,119,46,112,101,114,102,111,114,109,97,110,99,101,59,88,110,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,88,110,46,110,111,119,38,38,75,110,40,41,62,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,118,101,110,116,40,34,69,118,101,110,116,34,41,46,116,105,109,101,83,116,97,109,112,38,38,40,75,110,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,88,110,46,110,111,119,40,41,125,41,125,102,117,110,99,116,105,111,110,32,90,110,40,41,123,118,97,114,32,116,44,101,59,102,111,114,40,89,110,61,75,110,40,41,44,87,110,61,33,48,44,122,110,46,115,111,114,116,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,105,100,45,101,46,105,100,125,41,41,44,71,110,61,48,59,71,110,60,122,110,46,108,101,110,103,116,104,59,71,110,43,43,41,116,61,122,110,91,71,110,93,44,116,46,98,101,102,111,114,101,38,38,116,46,98,101,102,111,114,101,40,41,44,101,61,116,46,105,100,44,72,110,91,101,93,61,110,117,108,108,44,116,46,114,117,110,40,41,59,118,97,114,32,110,61,86,110,46,115,108,105,99,101,40,41,44,114,61,122,110,46,115,108,105,99,101,40,41,59,113,110,40,41,44,116,114,40,110,41,44,74,110,40,114,41,44,108,116,38,38,72,46,100,101,118,116,111,111,108,115,38,38,108,116,46,101,109,105,116,40,34,102,108,117,115,104,34,41,125,102,117,110,99,116,105,111,110,32,74,110,40,116,41,123,118,97,114,32,101,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,101,45,45,41,123,118,97,114,32,110,61,116,91,101,93,44,114,61,110,46,118,109,59,114,46,95,119,97,116,99,104,101,114,61,61,61,110,38,38,114,46,95,105,115,77,111,117,110,116,101,100,38,38,33,114,46,95,105,115,68,101,115,116,114,111,121,101,100,38,38,66,110,40,114,44,34,117,112,100,97,116,101,100,34,41,125,125,102,117,110,99,116,105,111,110,32,81,110,40,116,41,123,116,46,95,105,110,97,99,116,105,118,101,61,33,49,44,86,110,46,112,117,115,104,40,116,41,125,102,117,110,99,116,105,111,110,32,116,114,40,116,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,116,46,108,101,110,103,116,104,59,101,43,43,41,116,91,101,93,46,95,105,110,97,99,116,105,118,101,61,33,48,44,82,110,40,116,91,101,93,44,33,48,41,125,102,117,110,99,116,105,111,110,32,101,114,40,116,41,123,118,97,114,32,101,61,116,46,105,100,59,105,102,40,110,117,108,108,61,61,72,110,91,101,93,41,123,105,102,40,72,110,91,101,93,61,33,48,44,87,110,41,123,118,97,114,32,110,61,122,110,46,108,101,110,103,116,104,45,49,59,119,104,105,108,101,40,110,62,71,110,38,38,122,110,91,110,93,46,105,100,62,116,46,105,100,41,110,45,45,59,122,110,46,115,112,108,105,99,101,40,110,43,49,44,48,44,116,41,125,101,108,115,101,32,122,110,46,112,117,115,104,40,116,41,59,85,110,124,124,40,85,110,61,33,48,44,118,101,40,90,110,41,41,125,125,118,97,114,32,110,114,61,48,44,114,114,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,41,123,116,104,105,115,46,118,109,61,116,44,105,38,38,40,116,46,95,119,97,116,99,104,101,114,61,116,104,105,115,41,44,116,46,95,119,97,116,99,104,101,114,115,46,112,117,115,104,40,116,104,105,115,41,44,114,63,40,116,104,105,115,46,100,101,101,112,61,33,33,114,46,100,101,101,112,44,116,104,105,115,46,117,115,101,114,61,33,33,114,46,117,115,101,114,44,116,104,105,115,46,108,97,122,121,61,33,33,114,46,108,97,122,121,44,116,104,105,115,46,115,121,110,99,61,33,33,114,46,115,121,110,99,44,116,104,105,115,46,98,101,102,111,114,101,61,114,46,98,101,102,111,114,101,41,58,116,104,105,115,46,100,101,101,112,61,116,104,105,115,46,117,115,101,114,61,116,104,105,115,46,108,97,122,121,61,116,104,105,115,46,115,121,110,99,61,33,49,44,116,104,105,115,46,99,98,61,110,44,116,104,105,115,46,105,100,61,43,43,110,114,44,116,104,105,115,46,97,99,116,105,118,101,61,33,48,44,116,104,105,115,46,100,105,114,116,121,61,116,104,105,115,46,108,97,122,121,44,116,104,105,115,46,100,101,112,115,61,91,93,44,116,104,105,115,46,110,101,119,68,101,112,115,61,91,93,44,116,104,105,115,46,100,101,112,73,100,115,61,110,101,119,32,104,116,44,116,104,105,115,46,110,101,119,68,101,112,73,100,115,61,110,101,119,32,104,116,44,116,104,105,115,46,101,120,112,114,101,115,115,105,111,110,61,34,34,44,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,116,104,105,115,46,103,101,116,116,101,114,61,101,58,40,116,104,105,115,46,103,101,116,116,101,114,61,89,40,101,41,44,116,104,105,115,46,103,101,116,116,101,114,124,124,40,116,104,105,115,46,103,101,116,116,101,114,61,73,41,41,44,116,104,105,115,46,118,97,108,117,101,61,116,104,105,115,46,108,97,122,121,63,118,111,105,100,32,48,58,116,104,105,115,46,103,101,116,40,41,125,59,114,114,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,59,98,116,40,116,104,105,115,41,59,118,97,114,32,101,61,116,104,105,115,46,118,109,59,116,114,121,123,116,61,116,104,105,115,46,103,101,116,116,101,114,46,99,97,108,108,40,101,44,101,41,125,99,97,116,99,104,40,83,97,41,123,105,102,40,33,116,104,105,115,46,117,115,101,114,41,116,104,114,111,119,32,83,97,59,110,101,40,83,97,44,101,44,39,103,101,116,116,101,114,32,102,111,114,32,119,97,116,99,104,101,114,32,34,39,43,116,104,105,115,46,101,120,112,114,101,115,115,105,111,110,43,39,34,39,41,125,102,105,110,97,108,108,121,123,116,104,105,115,46,100,101,101,112,38,38,109,101,40,116,41,44,121,116,40,41,44,116,104,105,115,46,99,108,101,97,110,117,112,68,101,112,115,40,41,125,114,101,116,117,114,110,32,116,125,44,114,114,46,112,114,111,116,111,116,121,112,101,46,97,100,100,68,101,112,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,100,59,116,104,105,115,46,110,101,119,68,101,112,73,100,115,46,104,97,115,40,101,41,124,124,40,116,104,105,115,46,110,101,119,68,101,112,73,100,115,46,97,100,100,40,101,41,44,116,104,105,115,46,110,101,119,68,101,112,115,46,112,117,115,104,40,116,41,44,116,104,105,115,46,100,101,112,73,100,115,46,104,97,115,40,101,41,124,124,116,46,97,100,100,83,117,98,40,116,104,105,115,41,41,125,44,114,114,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,110,117,112,68,101,112,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,100,101,112,115,46,108,101,110,103,116,104,59,119,104,105,108,101,40,116,45,45,41,123,118,97,114,32,101,61,116,104,105,115,46,100,101,112,115,91,116,93,59,116,104,105,115,46,110,101,119,68,101,112,73,100,115,46,104,97,115,40,101,46,105,100,41,124,124,101,46,114,101,109,111,118,101,83,117,98,40,116,104,105,115,41,125,118,97,114,32,110,61,116,104,105,115,46,100,101,112,73,100,115,59,116,104,105,115,46,100,101,112,73,100,115,61,116,104,105,115,46,110,101,119,68,101,112,73,100,115,44,116,104,105,115,46,110,101,119,68,101,112,73,100,115,61,110,44,116,104,105,115,46,110,101,119,68,101,112,73,100,115,46,99,108,101,97,114,40,41,44,110,61,116,104,105,115,46,100,101,112,115,44,116,104,105,115,46,100,101,112,115,61,116,104,105,115,46,110,101,119,68,101,112,115,44,116,104,105,115,46,110,101,119,68,101,112,115,61,110,44,116,104,105,115,46,110,101,119,68,101,112,115,46,108,101,110,103,116,104,61,48,125,44,114,114,46,112,114,111,116,111,116,121,112,101,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,108,97,122,121,63,116,104,105,115,46,100,105,114,116,121,61,33,48,58,116,104,105,115,46,115,121,110,99,63,116,104,105,115,46,114,117,110,40,41,58,101,114,40,116,104,105,115,41,125,44,114,114,46,112,114,111,116,111,116,121,112,101,46,114,117,110,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,97,99,116,105,118,101,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,40,41,59,105,102,40,116,33,61,61,116,104,105,115,46,118,97,108,117,101,124,124,117,40,116,41,124,124,116,104,105,115,46,100,101,101,112,41,123,118,97,114,32,101,61,116,104,105,115,46,118,97,108,117,101,59,105,102,40,116,104,105,115,46,118,97,108,117,101,61,116,44,116,104,105,115,46,117,115,101,114,41,116,114,121,123,116,104,105,115,46,99,98,46,99,97,108,108,40,116,104,105,115,46,118,109,44,116,44,101,41,125,99,97,116,99,104,40,83,97,41,123,110,101,40,83,97,44,116,104,105,115,46,118,109,44,39,99,97,108,108,98,97,99,107,32,102,111,114,32,119,97,116,99,104,101,114,32,34,39,43,116,104,105,115,46,101,120,112,114,101,115,115,105,111,110,43,39,34,39,41,125,101,108,115,101,32,116,104,105,115,46,99,98,46,99,97,108,108,40,116,104,105,115,46,118,109,44,116,44,101,41,125,125,125,44,114,114,46,112,114,111,116,111,116,121,112,101,46,101,118,97,108,117,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,118,97,108,117,101,61,116,104,105,115,46,103,101,116,40,41,44,116,104,105,115,46,100,105,114,116,121,61,33,49,125,44,114,114,46,112,114,111,116,111,116,121,112,101,46,100,101,112,101,110,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,100,101,112,115,46,108,101,110,103,116,104,59,119,104,105,108,101,40,116,45,45,41,116,104,105,115,46,100,101,112,115,91,116,93,46,100,101,112,101,110,100,40,41,125,44,114,114,46,112,114,111,116,111,116,121,112,101,46,116,101,97,114,100,111,119,110,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,97,99,116,105,118,101,41,123,116,104,105,115,46,118,109,46,95,105,115,66,101,105,110,103,68,101,115,116,114,111,121,101,100,124,124,121,40,116,104,105,115,46,118,109,46,95,119,97,116,99,104,101,114,115,44,116,104,105,115,41,59,118,97,114,32,116,61,116,104,105,115,46,100,101,112,115,46,108,101,110,103,116,104,59,119,104,105,108,101,40,116,45,45,41,116,104,105,115,46,100,101,112,115,91,116,93,46,114,101,109,111,118,101,83,117,98,40,116,104,105,115,41,59,116,104,105,115,46,97,99,116,105,118,101,61,33,49,125,125,59,118,97,114,32,105,114,61,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,73,44,115,101,116,58,73,125,59,102,117,110,99,116,105,111,110,32,111,114,40,116,44,101,44,110,41,123,105,114,46,103,101,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,91,101,93,91,110,93,125,44,105,114,46,115,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,91,101,93,91,110,93,61,116,125,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,110,44,105,114,41,125,102,117,110,99,116,105,111,110,32,97,114,40,116,41,123,116,46,95,119,97,116,99,104,101,114,115,61,91,93,59,118,97,114,32,101,61,116,46,36,111,112,116,105,111,110,115,59,101,46,112,114,111,112,115,38,38,115,114,40,116,44,101,46,112,114,111,112,115,41,44,101,46,109,101,116,104,111,100,115,38,38,118,114,40,116,44,101,46,109,101,116,104,111,100,115,41,44,101,46,100,97,116,97,63,99,114,40,116,41,58,73,116,40,116,46,95,100,97,116,97,61,123,125,44,33,48,41,44,101,46,99,111,109,112,117,116,101,100,38,38,102,114,40,116,44,101,46,99,111,109,112,117,116,101,100,41,44,101,46,119,97,116,99,104,38,38,101,46,119,97,116,99,104,33,61,61,97,116,38,38,103,114,40,116,44,101,46,119,97,116,99,104,41,125,102,117,110,99,116,105,111,110,32,115,114,40,116,44,101,41,123,118,97,114,32,110,61,116,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,68,97,116,97,124,124,123,125,44,114,61,116,46,95,112,114,111,112,115,61,123,125,44,105,61,116,46,36,111,112,116,105,111,110,115,46,95,112,114,111,112,75,101,121,115,61,91,93,44,111,61,33,116,46,36,112,97,114,101,110,116,59,111,124,124,69,116,40,33,49,41,59,118,97,114,32,97,61,102,117,110,99,116,105,111,110,40,111,41,123,105,46,112,117,115,104,40,111,41,59,118,97,114,32,97,61,90,116,40,111,44,101,44,110,44,116,41,59,77,116,40,114,44,111,44,97,41,44,111,32,105,110,32,116,124,124,111,114,40,116,44,34,95,112,114,111,112,115,34,44,111,41,125,59,102,111,114,40,118,97,114,32,115,32,105,110,32,101,41,97,40,115,41,59,69,116,40,33,48,41,125,102,117,110,99,116,105,111,110,32,99,114,40,116,41,123,118,97,114,32,101,61,116,46,36,111,112,116,105,111,110,115,46,100,97,116,97,59,101,61,116,46,95,100,97,116,97,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,101,63,117,114,40,101,44,116,41,58,101,124,124,123,125,44,102,40,101,41,124,124,40,101,61,123,125,41,59,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,101,41,44,114,61,116,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,44,105,61,40,116,46,36,111,112,116,105,111,110,115,46,109,101,116,104,111,100,115,44,110,46,108,101,110,103,116,104,41,59,119,104,105,108,101,40,105,45,45,41,123,118,97,114,32,111,61,110,91,105,93,59,48,44,114,38,38,95,40,114,44,111,41,124,124,87,40,111,41,124,124,111,114,40,116,44,34,95,100,97,116,97,34,44,111,41,125,73,116,40,101,44,33,48,41,125,102,117,110,99,116,105,111,110,32,117,114,40,116,44,101,41,123,98,116,40,41,59,116,114,121,123,114,101,116,117,114,110,32,116,46,99,97,108,108,40,101,44,101,41,125,99,97,116,99,104,40,83,97,41,123,114,101,116,117,114,110,32,110,101,40,83,97,44,101,44,34,100,97,116,97,40,41,34,41,44,123,125,125,102,105,110,97,108,108,121,123,121,116,40,41,125,125,118,97,114,32,108,114,61,123,108,97,122,121,58,33,48,125,59,102,117,110,99,116,105,111,110,32,102,114,40,116,44,101,41,123,118,97,114,32,110,61,116,46,95,99,111,109,112,117,116,101,100,87,97,116,99,104,101,114,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,114,61,117,116,40,41,59,102,111,114,40,118,97,114,32,105,32,105,110,32,101,41,123,118,97,114,32,111,61,101,91,105,93,44,97,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,111,63,111,58,111,46,103,101,116,59,48,44,114,124,124,40,110,91,105,93,61,110,101,119,32,114,114,40,116,44,97,124,124,73,44,73,44,108,114,41,41,44,105,32,105,110,32,116,124,124,104,114,40,116,44,105,44,111,41,125,125,102,117,110,99,116,105,111,110,32,104,114,40,116,44,101,44,110,41,123,118,97,114,32,114,61,33,117,116,40,41,59,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,110,63,40,105,114,46,103,101,116,61,114,63,100,114,40,101,41,58,112,114,40,110,41,44,105,114,46,115,101,116,61,73,41,58,40,105,114,46,103,101,116,61,110,46,103,101,116,63,114,38,38,33,49,33,61,61,110,46,99,97,99,104,101,63,100,114,40,101,41,58,112,114,40,110,46,103,101,116,41,58,73,44,105,114,46,115,101,116,61,110,46,115,101,116,124,124,73,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,101,44,105,114,41,125,102,117,110,99,116,105,111,110,32,100,114,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,95,99,111,109,112,117,116,101,100,87,97,116,99,104,101,114,115,38,38,116,104,105,115,46,95,99,111,109,112,117,116,101,100,87,97,116,99,104,101,114,115,91,116,93,59,105,102,40,101,41,114,101,116,117,114,110,32,101,46,100,105,114,116,121,38,38,101,46,101,118,97,108,117,97,116,101,40,41,44,103,116,46,116,97,114,103,101,116,38,38,101,46,100,101,112,101,110,100,40,41,44,101,46,118,97,108,117,101,125,125,102,117,110,99,116,105,111,110,32,112,114,40,116,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,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,41,125,125,102,117,110,99,116,105,111,110,32,118,114,40,116,44,101,41,123,116,46,36,111,112,116,105,111,110,115,46,112,114,111,112,115,59,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,116,91,110,93,61,34,102,117,110,99,116,105,111,110,34,33,61,61,116,121,112,101,111,102,32,101,91,110,93,63,73,58,69,40,101,91,110,93,44,116,41,125,102,117,110,99,116,105,111,110,32,103,114,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,123,118,97,114,32,114,61,101,91,110,93,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,41,41,102,111,114,40,118,97,114,32,105,61,48,59,105,60,114,46,108,101,110,103,116,104,59,105,43,43,41,109,114,40,116,44,110,44,114,91,105,93,41,59,101,108,115,101,32,109,114,40,116,44,110,44,114,41,125,125,102,117,110,99,116,105,111,110,32,109,114,40,116,44,101,44,110,44,114,41,123,114,101,116,117,114,110,32,102,40,110,41,38,38,40,114,61,110,44,110,61,110,46,104,97,110,100,108,101,114,41,44,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,110,38,38,40,110,61,116,91,110,93,41,44,116,46,36,119,97,116,99,104,40,101,44,110,44,114,41,125,102,117,110,99,116,105,111,110,32,98,114,40,116,41,123,118,97,114,32,101,61,123,103,101,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,95,100,97,116,97,125,125,44,110,61,123,103,101,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,95,112,114,111,112,115,125,125,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,46,112,114,111,116,111,116,121,112,101,44,34,36,100,97,116,97,34,44,101,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,46,112,114,111,116,111,116,121,112,101,44,34,36,112,114,111,112,115,34,44,110,41,44,116,46,112,114,111,116,111,116,121,112,101,46,36,115,101,116,61,36,116,44,116,46,112,114,111,116,111,116,121,112,101,46,36,100,101,108,101,116,101,61,70,116,44,116,46,112,114,111,116,111,116,121,112,101,46,36,119,97,116,99,104,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,59,105,102,40,102,40,101,41,41,114,101,116,117,114,110,32,109,114,40,114,44,116,44,101,44,110,41,59,110,61,110,124,124,123,125,44,110,46,117,115,101,114,61,33,48,59,118,97,114,32,105,61,110,101,119,32,114,114,40,114,44,116,44,101,44,110,41,59,105,102,40,110,46,105,109,109,101,100,105,97,116,101,41,116,114,121,123,101,46,99,97,108,108,40,114,44,105,46,118,97,108,117,101,41,125,99,97,116,99,104,40,101,114,114,111,114,41,123,110,101,40,101,114,114,111,114,44,114,44,39,99,97,108,108,98,97,99,107,32,102,111,114,32,105,109,109,101,100,105,97,116,101,32,119,97,116,99,104,101,114,32,34,39,43,105,46,101,120,112,114,101,115,115,105,111,110,43,39,34,39,41,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,105,46,116,101,97,114,100,111,119,110,40,41,125,125,125,118,97,114,32,121,114,61,48,59,102,117,110,99,116,105,111,110,32,119,114,40,116,41,123,116,46,112,114,111,116,111,116,121,112,101,46,95,105,110,105,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,101,46,95,117,105,100,61,121,114,43,43,44,101,46,95,105,115,86,117,101,61,33,48,44,116,38,38,116,46,95,105,115,67,111,109,112,111,110,101,110,116,63,95,114,40,101,44,116,41,58,101,46,36,111,112,116,105,111,110,115,61,75,116,40,120,114,40,101,46,99,111,110,115,116,114,117,99,116,111,114,41,44,116,124,124,123,125,44,101,41,44,101,46,95,114,101,110,100,101,114,80,114,111,120,121,61,101,44,101,46,95,115,101,108,102,61,101,44,76,110,40,101,41,44,107,110,40,101,41,44,103,110,40,101,41,44,66,110,40,101,44,34,98,101,102,111,114,101,67,114,101,97,116,101,34,41,44,69,101,40,101,41,44,97,114,40,101,41,44,106,101,40,101,41,44,66,110,40,101,44,34,99,114,101,97,116,101,100,34,41,44,101,46,36,111,112,116,105,111,110,115,46,101,108,38,38,101,46,36,109,111,117,110,116,40,101,46,36,111,112,116,105,111,110,115,46,101,108,41,125,125,102,117,110,99,116,105,111,110,32,95,114,40,116,44,101,41,123,118,97,114,32,110,61,116,46,36,111,112,116,105,111,110,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,46,99,111,110,115,116,114,117,99,116,111,114,46,111,112,116,105,111,110,115,41,44,114,61,101,46,95,112,97,114,101,110,116,86,110,111,100,101,59,110,46,112,97,114,101,110,116,61,101,46,112,97,114,101,110,116,44,110,46,95,112,97,114,101,110,116,86,110,111,100,101,61,114,59,118,97,114,32,105,61,114,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,59,110,46,112,114,111,112,115,68,97,116,97,61,105,46,112,114,111,112,115,68,97,116,97,44,110,46,95,112,97,114,101,110,116,76,105,115,116,101,110,101,114,115,61,105,46,108,105,115,116,101,110,101,114,115,44,110,46,95,114,101,110,100,101,114,67,104,105,108,100,114,101,110,61,105,46,99,104,105,108,100,114,101,110,44,110,46,95,99,111,109,112,111,110,101,110,116,84,97,103,61,105,46,116,97,103,44,101,46,114,101,110,100,101,114,38,38,40,110,46,114,101,110,100,101,114,61,101,46,114,101,110,100,101,114,44,110,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,61,101,46,115,116,97,116,105,99,82,101,110,100,101,114,70,110,115,41,125,102,117,110,99,116,105,111,110,32,120,114,40,116,41,123,118,97,114,32,101,61,116,46,111,112,116,105,111,110,115,59,105,102,40,116,46,115,117,112,101,114,41,123,118,97,114,32,110,61,120,114,40,116,46,115,117,112,101,114,41,44,114,61,116,46,115,117,112,101,114,79,112,116,105,111,110,115,59,105,102,40,110,33,61,61,114,41,123,116,46,115,117,112,101,114,79,112,116,105,111,110,115,61,110,59,118,97,114,32,105,61,79,114,40,116,41,59,105,38,38,65,40,116,46,101,120,116,101,110,100,79,112,116,105,111,110,115,44,105,41,44,101,61,116,46,111,112,116,105,111,110,115,61,75,116,40,110,44,116,46,101,120,116,101,110,100,79,112,116,105,111,110,115,41,44,101,46,110,97,109,101,38,38,40,101,46,99,111,109,112,111,110,101,110,116,115,91,101,46,110,97,109,101,93,61,116,41,125,125,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,79,114,40,116,41,123,118,97,114,32,101,44,110,61,116,46,111,112,116,105,111,110,115,44,114,61,116,46,115,101,97,108,101,100,79,112,116,105,111,110,115,59,102,111,114,40,118,97,114,32,105,32,105,110,32,110,41,110,91,105,93,33,61,61,114,91,105,93,38,38,40,101,124,124,40,101,61,123,125,41,44,101,91,105,93,61,110,91,105,93,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,83,114,40,116,41,123,116,104,105,115,46,95,105,110,105,116,40,116,41,125,102,117,110,99,116,105,111,110,32,107,114,40,116,41,123,116,46,117,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,105,110,115,116,97,108,108,101,100,80,108,117,103,105,110,115,124,124,40,116,104,105,115,46,95,105,110,115,116,97,108,108,101,100,80,108,117,103,105,110,115,61,91,93,41,59,105,102,40,101,46,105,110,100,101,120,79,102,40,116,41,62,45,49,41,114,101,116,117,114,110,32,116,104,105,115,59,118,97,114,32,110,61,68,40,97,114,103,117,109,101,110,116,115,44,49,41,59,114,101,116,117,114,110,32,110,46,117,110,115,104,105,102,116,40,116,104,105,115,41,44,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,46,105,110,115,116,97,108,108,63,116,46,105,110,115,116,97,108,108,46,97,112,112,108,121,40,116,44,110,41,58,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,38,38,116,46,97,112,112,108,121,40,110,117,108,108,44,110,41,44,101,46,112,117,115,104,40,116,41,44,116,104,105,115,125,125,102,117,110,99,116,105,111,110,32,67,114,40,116,41,123,116,46,109,105,120,105,110,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,111,112,116,105,111,110,115,61,75,116,40,116,104,105,115,46,111,112,116,105,111,110,115,44,116,41,44,116,104,105,115,125,125,102,117,110,99,116,105,111,110,32,80,114,40,116,41,123,116,46,99,105,100,61,48,59,118,97,114,32,101,61,49,59,116,46,101,120,116,101,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,116,61,116,124,124,123,125,59,118,97,114,32,110,61,116,104,105,115,44,114,61,110,46,99,105,100,44,105,61,116,46,95,67,116,111,114,124,124,40,116,46,95,67,116,111,114,61,123,125,41,59,105,102,40,105,91,114,93,41,114,101,116,117,114,110,32,105,91,114,93,59,118,97,114,32,111,61,116,46,110,97,109,101,124,124,110,46,111,112,116,105,111,110,115,46,110,97,109,101,59,118,97,114,32,97,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,105,110,105,116,40,116,41,125,59,114,101,116,117,114,110,32,97,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,97,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,97,44,97,46,99,105,100,61,101,43,43,44,97,46,111,112,116,105,111,110,115,61,75,116,40,110,46,111,112,116,105,111,110,115,44,116,41,44,97,91,34,115,117,112,101,114,34,93,61,110,44,97,46,111,112,116,105,111,110,115,46,112,114,111,112,115,38,38,84,114,40,97,41,44,97,46,111,112,116,105,111,110,115,46,99,111,109,112,117,116,101,100,38,38,106,114,40,97,41,44,97,46,101,120,116,101,110,100,61,110,46,101,120,116,101,110,100,44,97,46,109,105,120,105,110,61,110,46,109,105,120,105,110,44,97,46,117,115,101,61,110,46,117,115,101,44,122,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,97,91,116,93,61,110,91,116,93,125,41,41,44,111,38,38,40,97,46,111,112,116,105,111,110,115,46,99,111,109,112,111,110,101,110,116,115,91,111,93,61,97,41,44,97,46,115,117,112,101,114,79,112,116,105,111,110,115,61,110,46,111,112,116,105,111,110,115,44,97,46,101,120,116,101,110,100,79,112,116,105,111,110,115,61,116,44,97,46,115,101,97,108,101,100,79,112,116,105,111,110,115,61,65,40,123,125,44,97,46,111,112,116,105,111,110,115,41,44,105,91,114,93,61,97,44,97,125,125,102,117,110,99,116,105,111,110,32,84,114,40,116,41,123,118,97,114,32,101,61,116,46,111,112,116,105,111,110,115,46,112,114,111,112,115,59,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,111,114,40,116,46,112,114,111,116,111,116,121,112,101,44,34,95,112,114,111,112,115,34,44,110,41,125,102,117,110,99,116,105,111,110,32,106,114,40,116,41,123,118,97,114,32,101,61,116,46,111,112,116,105,111,110,115,46,99,111,109,112,117,116,101,100,59,102,111,114,40,118,97,114,32,110,32,105,110,32,101,41,104,114,40,116,46,112,114,111,116,111,116,121,112,101,44,110,44,101,91,110,93,41,125,102,117,110,99,116,105,111,110,32,69,114,40,116,41,123,122,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,116,91,101,93,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,63,40,34,99,111,109,112,111,110,101,110,116,34,61,61,61,101,38,38,102,40,110,41,38,38,40,110,46,110,97,109,101,61,110,46,110,97,109,101,124,124,116,44,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,95,98,97,115,101,46,101,120,116,101,110,100,40,110,41,41,44,34,100,105,114,101,99,116,105,118,101,34,61,61,61,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,110,38,38,40,110,61,123,98,105,110,100,58,110,44,117,112,100,97,116,101,58,110,125,41,44,116,104,105,115,46,111,112,116,105,111,110,115,91,101,43,34,115,34,93,91,116,93,61,110,44,110,41,58,116,104,105,115,46,111,112,116,105,111,110,115,91,101,43,34,115,34,93,91,116,93,125,125,41,41,125,102,117,110,99,116,105,111,110,32,68,114,40,116,41,123,114,101,116,117,114,110,32,116,38,38,40,116,46,67,116,111,114,46,111,112,116,105,111,110,115,46,110,97,109,101,124,124,116,46,116,97,103,41,125,102,117,110,99,116,105,111,110,32,65,114,40,116,44,101,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,116,46,105,110,100,101,120,79,102,40,101,41,62,45,49,58,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,63,116,46,115,112,108,105,116,40,34,44,34,41,46,105,110,100,101,120,79,102,40,101,41,62,45,49,58,33,33,104,40,116,41,38,38,116,46,116,101,115,116,40,101,41,125,102,117,110,99,116,105,111,110,32,76,114,40,116,44,101,41,123,118,97,114,32,110,61,116,46,99,97,99,104,101,44,114,61,116,46,107,101,121,115,44,105,61,116,46,95,118,110,111,100,101,59,102,111,114,40,118,97,114,32,111,32,105,110,32,110,41,123,118,97,114,32,97,61,110,91,111,93,59,105,102,40,97,41,123,118,97,114,32,115,61,68,114,40,97,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,41,59,115,38,38,33,101,40,115,41,38,38,73,114,40,110,44,111,44,114,44,105,41,125,125,125,102,117,110,99,116,105,111,110,32,73,114,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,91,101,93,59,33,105,124,124,114,38,38,105,46,116,97,103,61,61,61,114,46,116,97,103,124,124,105,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,36,100,101,115,116,114,111,121,40,41,44,116,91,101,93,61,110,117,108,108,44,121,40,110,44,101,41,125,119,114,40,83,114,41,44,98,114,40,83,114,41,44,69,110,40,83,114,41,44,73,110,40,83,114,41,44,121,110,40,83,114,41,59,118,97,114,32,77,114,61,91,83,116,114,105,110,103,44,82,101,103,69,120,112,44,65,114,114,97,121,93,44,36,114,61,123,110,97,109,101,58,34,107,101,101,112,45,97,108,105,118,101,34,44,97,98,115,116,114,97,99,116,58,33,48,44,112,114,111,112,115,58,123,105,110,99,108,117,100,101,58,77,114,44,101,120,99,108,117,100,101,58,77,114,44,109,97,120,58,91,83,116,114,105,110,103,44,78,117,109,98,101,114,93,125,44,99,114,101,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,97,99,104,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,116,104,105,115,46,107,101,121,115,61,91,93,125,44,100,101,115,116,114,111,121,101,100,58,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,99,97,99,104,101,41,73,114,40,116,104,105,115,46,99,97,99,104,101,44,116,44,116,104,105,115,46,107,101,121,115,41,125,44,109,111,117,110,116,101,100,58,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,36,119,97,116,99,104,40,34,105,110,99,108,117,100,101,34,44,40,102,117,110,99,116,105,111,110,40,101,41,123,76,114,40,116,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,65,114,40,101,44,116,41,125,41,41,125,41,41,44,116,104,105,115,46,36,119,97,116,99,104,40,34,101,120,99,108,117,100,101,34,44,40,102,117,110,99,116,105,111,110,40,101,41,123,76,114,40,116,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,65,114,40,101,44,116,41,125,41,41,125,41,41,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,44,101,61,83,110,40,116,41,44,110,61,101,38,38,101,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,59,105,102,40,110,41,123,118,97,114,32,114,61,68,114,40,110,41,44,105,61,116,104,105,115,44,111,61,105,46,105,110,99,108,117,100,101,44,97,61,105,46,101,120,99,108,117,100,101,59,105,102,40,111,38,38,40,33,114,124,124,33,65,114,40,111,44,114,41,41,124,124,97,38,38,114,38,38,65,114,40,97,44,114,41,41,114,101,116,117,114,110,32,101,59,118,97,114,32,115,61,116,104,105,115,44,99,61,115,46,99,97,99,104,101,44,117,61,115,46,107,101,121,115,44,108,61,110,117,108,108,61,61,101,46,107,101,121,63,110,46,67,116,111,114,46,99,105,100,43,40,110,46,116,97,103,63,34,58,58,34,43,110,46,116,97,103,58,34,34,41,58,101,46,107,101,121,59,99,91,108,93,63,40,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,61,99,91,108,93,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,44,121,40,117,44,108,41,44,117,46,112,117,115,104,40,108,41,41,58,40,99,91,108,93,61,101,44,117,46,112,117,115,104,40,108,41,44,116,104,105,115,46,109,97,120,38,38,117,46,108,101,110,103,116,104,62,112,97,114,115,101,73,110,116,40,116,104,105,115,46,109,97,120,41,38,38,73,114,40,99,44,117,91,48,93,44,117,44,116,104,105,115,46,95,118,110,111,100,101,41,41,44,101,46,100,97,116,97,46,107,101,101,112,65,108,105,118,101,61,33,48,125,114,101,116,117,114,110,32,101,124,124,116,38,38,116,91,48,93,125,125,44,70,114,61,123,75,101,101,112,65,108,105,118,101,58,36,114,125,59,102,117,110,99,116,105,111,110,32,82,114,40,116,41,123,118,97,114,32,101,61,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,72,125,125,59,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,99,111,110,102,105,103,34,44,101,41,44,116,46,117,116,105,108,61,123,119,97,114,110,58,112,116,44,101,120,116,101,110,100,58,65,44,109,101,114,103,101,79,112,116,105,111,110,115,58,75,116,44,100,101,102,105,110,101,82,101,97,99,116,105,118,101,58,77,116,125,44,116,46,115,101,116,61,36,116,44,116,46,100,101,108,101,116,101,61,70,116,44,116,46,110,101,120,116,84,105,99,107,61,118,101,44,116,46,111,98,115,101,114,118,97,98,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,73,116,40,116,41,44,116,125,44,116,46,111,112,116,105,111,110,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,122,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,111,112,116,105,111,110,115,91,101,43,34,115,34,93,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,125,41,41,44,116,46,111,112,116,105,111,110,115,46,95,98,97,115,101,61,116,44,65,40,116,46,111,112,116,105,111,110,115,46,99,111,109,112,111,110,101,110,116,115,44,70,114,41,44,107,114,40,116,41,44,67,114,40,116,41,44,80,114,40,116,41,44,69,114,40,116,41,125,82,114,40,83,114,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,83,114,46,112,114,111,116,111,116,121,112,101,44,34,36,105,115,83,101,114,118,101,114,34,44,123,103,101,116,58,117,116,125,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,83,114,46,112,114,111,116,111,116,121,112,101,44,34,36,115,115,114,67,111,110,116,101,120,116,34,44,123,103,101,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,36,118,110,111,100,101,38,38,116,104,105,115,46,36,118,110,111,100,101,46,115,115,114,67,111,110,116,101,120,116,125,125,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,83,114,44,34,70,117,110,99,116,105,111,110,97,108,82,101,110,100,101,114,67,111,110,116,101,120,116,34,44,123,118,97,108,117,101,58,74,101,125,41,44,83,114,46,118,101,114,115,105,111,110,61,34,50,46,54,46,49,50,34,59,118,97,114,32,78,114,61,109,40,34,115,116,121,108,101,44,99,108,97,115,115,34,41,44,66,114,61,109,40,34,105,110,112,117,116,44,116,101,120,116,97,114,101,97,44,111,112,116,105,111,110,44,115,101,108,101,99,116,44,112,114,111,103,114,101,115,115,34,41,44,122,114,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,34,118,97,108,117,101,34,61,61,61,110,38,38,66,114,40,116,41,38,38,34,98,117,116,116,111,110,34,33,61,61,101,124,124,34,115,101,108,101,99,116,101,100,34,61,61,61,110,38,38,34,111,112,116,105,111,110,34,61,61,61,116,124,124,34,99,104,101,99,107,101,100,34,61,61,61,110,38,38,34,105,110,112,117,116,34,61,61,61,116,124,124,34,109,117,116,101,100,34,61,61,61,110,38,38,34,118,105,100,101,111,34,61,61,61,116,125,44,86,114,61,109,40,34,99,111,110,116,101,110,116,101,100,105,116,97,98,108,101,44,100,114,97,103,103,97,98,108,101,44,115,112,101,108,108,99,104,101,99,107,34,41,44,72,114,61,109,40,34,101,118,101,110,116,115,44,99,97,114,101,116,44,116,121,112,105,110,103,44,112,108,97,105,110,116,101,120,116,45,111,110,108,121,34,41,44,85,114,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,75,114,40,101,41,124,124,34,102,97,108,115,101,34,61,61,61,101,63,34,102,97,108,115,101,34,58,34,99,111,110,116,101,110,116,101,100,105,116,97,98,108,101,34,61,61,61,116,38,38,72,114,40,101,41,63,101,58,34,116,114,117,101,34,125,44,87,114,61,109,40,34,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,44,97,115,121,110,99,44,97,117,116,111,102,111,99,117,115,44,97,117,116,111,112,108,97,121,44,99,104,101,99,107,101,100,44,99,111,109,112,97,99,116,44,99,111,110,116,114,111,108,115,44,100,101,99,108,97,114,101,44,100,101,102,97,117,108,116,44,100,101,102,97,117,108,116,99,104,101,99,107,101,100,44,100,101,102,97,117,108,116,109,117,116,101,100,44,100,101,102,97,117,108,116,115,101,108,101,99,116,101,100,44,100,101,102,101,114,44,100,105,115,97,98,108,101,100,44,101,110,97,98,108,101,100,44,102,111,114,109,110,111,118,97,108,105,100,97,116,101,44,104,105,100,100,101,110,44,105,110,100,101,116,101,114,109,105,110,97,116,101,44,105,110,101,114,116,44,105,115,109,97,112,44,105,116,101,109,115,99,111,112,101,44,108,111,111,112,44,109,117,108,116,105,112,108,101,44,109,117,116,101,100,44,110,111,104,114,101,102,44,110,111,114,101,115,105,122,101,44,110,111,115,104,97,100,101,44,110,111,118,97,108,105,100,97,116,101,44,110,111,119,114,97,112,44,111,112,101,110,44,112,97,117,115,101,111,110,101,120,105,116,44,114,101,97,100,111,110,108,121,44,114,101,113,117,105,114,101,100,44,114,101,118,101,114,115,101,100,44,115,99,111,112,101,100,44,115,101,97,109,108,101,115,115,44,115,101,108,101,99,116,101,100,44,115,111,114,116,97,98,108,101,44,116,114,97,110,115,108,97,116,101,44,116,114,117,101,115,112,101,101,100,44,116,121,112,101,109,117,115,116,109,97,116,99,104,44,118,105,115,105,98,108,101,34,41,44,71,114,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,113,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,58,34,61,61,61,116,46,99,104,97,114,65,116,40,53,41,38,38,34,120,108,105,110,107,34,61,61,61,116,46,115,108,105,99,101,40,48,44,53,41,125,44,89,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,113,114,40,116,41,63,116,46,115,108,105,99,101,40,54,44,116,46,108,101,110,103,116,104,41,58,34,34,125,44,75,114,61,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,124,124,33,49,61,61,61,116,125,59,102,117,110,99,116,105,111,110,32,88,114,40,116,41,123,118,97,114,32,101,61,116,46,100,97,116,97,44,110,61,116,44,114,61,116,59,119,104,105,108,101,40,111,40,114,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,41,114,61,114,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,118,110,111,100,101,44,114,38,38,114,46,100,97,116,97,38,38,40,101,61,90,114,40,114,46,100,97,116,97,44,101,41,41,59,119,104,105,108,101,40,111,40,110,61,110,46,112,97,114,101,110,116,41,41,110,38,38,110,46,100,97,116,97,38,38,40,101,61,90,114,40,101,44,110,46,100,97,116,97,41,41,59,114,101,116,117,114,110,32,74,114,40,101,46,115,116,97,116,105,99,67,108,97,115,115,44,101,46,99,108,97,115,115,41,125,102,117,110,99,116,105,111,110,32,90,114,40,116,44,101,41,123,114,101,116,117,114,110,123,115,116,97,116,105,99,67,108,97,115,115,58,81,114,40,116,46,115,116,97,116,105,99,67,108,97,115,115,44,101,46,115,116,97,116,105,99,67,108,97,115,115,41,44,99,108,97,115,115,58,111,40,116,46,99,108,97,115,115,41,63,91,116,46,99,108,97,115,115,44,101,46,99,108,97,115,115,93,58,101,46,99,108,97,115,115,125,125,102,117,110,99,116,105,111,110,32,74,114,40,116,44,101,41,123,114,101,116,117,114,110,32,111,40,116,41,124,124,111,40,101,41,63,81,114,40,116,44,116,105,40,101,41,41,58,34,34,125,102,117,110,99,116,105,111,110,32,81,114,40,116,44,101,41,123,114,101,116,117,114,110,32,116,63,101,63,116,43,34,32,34,43,101,58,116,58,101,124,124,34,34,125,102,117,110,99,116,105,111,110,32,116,105,40,116,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,101,105,40,116,41,58,117,40,116,41,63,110,105,40,116,41,58,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,63,116,58,34,34,125,102,117,110,99,116,105,111,110,32,101,105,40,116,41,123,102,111,114,40,118,97,114,32,101,44,110,61,34,34,44,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,111,40,101,61,116,105,40,116,91,114,93,41,41,38,38,34,34,33,61,61,101,38,38,40,110,38,38,40,110,43,61,34,32,34,41,44,110,43,61,101,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,110,105,40,116,41,123,118,97,114,32,101,61,34,34,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,41,116,91,110,93,38,38,40,101,38,38,40,101,43,61,34,32,34,41,44,101,43,61,110,41,59,114,101,116,117,114,110,32,101,125,118,97,114,32,114,105,61,123,115,118,103,58,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,109,97,116,104,58,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,56,47,77,97,116,104,47,77,97,116,104,77,76,34,125,44,105,105,61,109,40,34,104,116,109,108,44,98,111,100,121,44,98,97,115,101,44,104,101,97,100,44,108,105,110,107,44,109,101,116,97,44,115,116,121,108,101,44,116,105,116,108,101,44,97,100,100,114,101,115,115,44,97,114,116,105,99,108,101,44,97,115,105,100,101,44,102,111,111,116,101,114,44,104,101,97,100,101,114,44,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,44,104,103,114,111,117,112,44,110,97,118,44,115,101,99,116,105,111,110,44,100,105,118,44,100,100,44,100,108,44,100,116,44,102,105,103,99,97,112,116,105,111,110,44,102,105,103,117,114,101,44,112,105,99,116,117,114,101,44,104,114,44,105,109,103,44,108,105,44,109,97,105,110,44,111,108,44,112,44,112,114,101,44,117,108,44,97,44,98,44,97,98,98,114,44,98,100,105,44,98,100,111,44,98,114,44,99,105,116,101,44,99,111,100,101,44,100,97,116,97,44,100,102,110,44,101,109,44,105,44,107,98,100,44,109,97,114,107,44,113,44,114,112,44,114,116,44,114,116,99,44,114,117,98,121,44,115,44,115,97,109,112,44,115,109,97,108,108,44,115,112,97,110,44,115,116,114,111,110,103,44,115,117,98,44,115,117,112,44,116,105,109,101,44,117,44,118,97,114,44,119,98,114,44,97,114,101,97,44,97,117,100,105,111,44,109,97,112,44,116,114,97,99,107,44,118,105,100,101,111,44,101,109,98,101,100,44,111,98,106,101,99,116,44,112,97,114,97,109,44,115,111,117,114,99,101,44,99,97,110,118,97,115,44,115,99,114,105,112,116,44,110,111,115,99,114,105,112,116,44,100,101,108,44,105,110,115,44,99,97,112,116,105,111,110,44,99,111,108,44,99,111,108,103,114,111,117,112,44,116,97,98,108,101,44,116,104,101,97,100,44,116,98,111,100,121,44,116,100,44,116,104,44,116,114,44,98,117,116,116,111,110,44,100,97,116,97,108,105,115,116,44,102,105,101,108,100,115,101,116,44,102,111,114,109,44,105,110,112,117,116,44,108,97,98,101,108,44,108,101,103,101,110,100,44,109,101,116,101,114,44,111,112,116,103,114,111,117,112,44,111,112,116,105,111,110,44,111,117,116,112,117,116,44,112,114,111,103,114,101,115,115,44,115,101,108,101,99,116,44,116,101,120,116,97,114,101,97,44,100,101,116,97,105,108,115,44,100,105,97,108,111,103,44,109,101,110,117,44,109,101,110,117,105,116,101,109,44,115,117,109,109,97,114,121,44,99,111,110,116,101,110,116,44,101,108,101,109,101,110,116,44,115,104,97,100,111,119,44,116,101,109,112,108,97,116,101,44,98,108,111,99,107,113,117,111,116,101,44,105,102,114,97,109,101,44,116,102,111,111,116,34,41,44,111,105,61,109,40,34,115,118,103,44,97,110,105,109,97,116,101,44,99,105,114,99,108,101,44,99,108,105,112,112,97,116,104,44,99,117,114,115,111,114,44,100,101,102,115,44,100,101,115,99,44,101,108,108,105,112,115,101,44,102,105,108,116,101,114,44,102,111,110,116,45,102,97,99,101,44,102,111,114,101,105,103,110,79,98,106,101,99,116,44,103,44,103,108,121,112,104,44,105,109,97,103,101,44,108,105,110,101,44,109,97,114,107,101,114,44,109,97,115,107,44,109,105,115,115,105,110,103,45,103,108,121,112,104,44,112,97,116,104,44,112,97,116,116,101,114,110,44,112,111,108,121,103,111,110,44,112,111,108,121,108,105,110,101,44,114,101,99,116,44,115,119,105,116,99,104,44,115,121,109,98,111,108,44,116,101,120,116,44,116,101,120,116,112,97,116,104,44,116,115,112,97,110,44,117,115,101,44,118,105,101,119,34,44,33,48,41,44,97,105,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,105,40,116,41,124,124,111,105,40,116,41,125,59,102,117,110,99,116,105,111,110,32,115,105,40,116,41,123,114,101,116,117,114,110,32,111,105,40,116,41,63,34,115,118,103,34,58,34,109,97,116,104,34,61,61,61,116,63,34,109,97,116,104,34,58,118,111,105,100,32,48,125,118,97,114,32,99,105,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,102,117,110,99,116,105,111,110,32,117,105,40,116,41,123,105,102,40,33,90,41,114,101,116,117,114,110,33,48,59,105,102,40,97,105,40,116,41,41,114,101,116,117,114,110,33,49,59,105,102,40,116,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,110,117,108,108,33,61,99,105,91,116,93,41,114,101,116,117,114,110,32,99,105,91,116,93,59,118,97,114,32,101,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,116,41,59,114,101,116,117,114,110,32,116,46,105,110,100,101,120,79,102,40,34,45,34,41,62,45,49,63,99,105,91,116,93,61,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,119,105,110,100,111,119,46,72,84,77,76,85,110,107,110,111,119,110,69,108,101,109,101,110,116,124,124,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,119,105,110,100,111,119,46,72,84,77,76,69,108,101,109,101,110,116,58,99,105,91,116,93,61,47,72,84,77,76,85,110,107,110,111,119,110,69,108,101,109,101,110,116,47,46,116,101,115,116,40,101,46,116,111,83,116,114,105,110,103,40,41,41,125,118,97,114,32,108,105,61,109,40,34,116,101,120,116,44,110,117,109,98,101,114,44,112,97,115,115,119,111,114,100,44,115,101,97,114,99,104,44,101,109,97,105,108,44,116,101,108,44,117,114,108,34,41,59,102,117,110,99,116,105,111,110,32,102,105,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,41,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,116,41,59,114,101,116,117,114,110,32,101,124,124,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,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,104,105,40,116,44,101,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,116,41,59,114,101,116,117,114,110,34,115,101,108,101,99,116,34,33,61,61,116,124,124,101,46,100,97,116,97,38,38,101,46,100,97,116,97,46,97,116,116,114,115,38,38,118,111,105,100,32,48,33,61,61,101,46,100,97,116,97,46,97,116,116,114,115,46,109,117,108,116,105,112,108,101,38,38,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,109,117,108,116,105,112,108,101,34,44,34,109,117,108,116,105,112,108,101,34,41,44,110,125,102,117,110,99,116,105,111,110,32,100,105,40,116,44,101,41,123,114,101,116,117,114,110,32,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,114,105,91,116,93,44,101,41,125,102,117,110,99,116,105,111,110,32,112,105,40,116,41,123,114,101,116,117,114,110,32,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,41,125,102,117,110,99,116,105,111,110,32,118,105,40,116,41,123,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,67,111,109,109,101,110,116,40,116,41,125,102,117,110,99,116,105,111,110,32,103,105,40,116,44,101,44,110,41,123,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,110,41,125,102,117,110,99,116,105,111,110,32,109,105,40,116,44,101,41,123,116,46,114,101,109,111,118,101,67,104,105,108,100,40,101,41,125,102,117,110,99,116,105,111,110,32,98,105,40,116,44,101,41,123,116,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,125,102,117,110,99,116,105,111,110,32,121,105,40,116,41,123,114,101,116,117,114,110,32,116,46,112,97,114,101,110,116,78,111,100,101,125,102,117,110,99,116,105,111,110,32,119,105,40,116,41,123,114,101,116,117,114,110,32,116,46,110,101,120,116,83,105,98,108,105,110,103,125,102,117,110,99,116,105,111,110,32,95,105,40,116,41,123,114,101,116,117,114,110,32,116,46,116,97,103,78,97,109,101,125,102,117,110,99,116,105,111,110,32,120,105,40,116,44,101,41,123,116,46,116,101,120,116,67,111,110,116,101,110,116,61,101,125,102,117,110,99,116,105,111,110,32,79,105,40,116,44,101,41,123,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,101,44,34,34,41,125,118,97,114,32,83,105,61,79,98,106,101,99,116,46,102,114,101,101,122,101,40,123,99,114,101,97,116,101,69,108,101,109,101,110,116,58,104,105,44,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,58,100,105,44,99,114,101,97,116,101,84,101,120,116,78,111,100,101,58,112,105,44,99,114,101,97,116,101,67,111,109,109,101,110,116,58,118,105,44,105,110,115,101,114,116,66,101,102,111,114,101,58,103,105,44,114,101,109,111,118,101,67,104,105,108,100,58,109,105,44,97,112,112,101,110,100,67,104,105,108,100,58,98,105,44,112,97,114,101,110,116,78,111,100,101,58,121,105,44,110,101,120,116,83,105,98,108,105,110,103,58,119,105,44,116,97,103,78,97,109,101,58,95,105,44,115,101,116,84,101,120,116,67,111,110,116,101,110,116,58,120,105,44,115,101,116,83,116,121,108,101,83,99,111,112,101,58,79,105,125,41,44,107,105,61,123,99,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,67,105,40,101,41,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,100,97,116,97,46,114,101,102,33,61,61,101,46,100,97,116,97,46,114,101,102,38,38,40,67,105,40,116,44,33,48,41,44,67,105,40,101,41,41,125,44,100,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,116,41,123,67,105,40,116,44,33,48,41,125,125,59,102,117,110,99,116,105,111,110,32,67,105,40,116,44,101,41,123,118,97,114,32,110,61,116,46,100,97,116,97,46,114,101,102,59,105,102,40,111,40,110,41,41,123,118,97,114,32,114,61,116,46,99,111,110,116,101,120,116,44,105,61,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,124,124,116,46,101,108,109,44,97,61,114,46,36,114,101,102,115,59,101,63,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,91,110,93,41,63,121,40,97,91,110,93,44,105,41,58,97,91,110,93,61,61,61,105,38,38,40,97,91,110,93,61,118,111,105,100,32,48,41,58,116,46,100,97,116,97,46,114,101,102,73,110,70,111,114,63,65,114,114,97,121,46,105,115,65,114,114,97,121,40,97,91,110,93,41,63,97,91,110,93,46,105,110,100,101,120,79,102,40,105,41,60,48,38,38,97,91,110,93,46,112,117,115,104,40,105,41,58,97,91,110,93,61,91,105,93,58,97,91,110,93,61,105,125,125,118,97,114,32,80,105,61,110,101,119,32,119,116,40,34,34,44,123,125,44,91,93,41,44,84,105,61,91,34,99,114,101,97,116,101,34,44,34,97,99,116,105,118,97,116,101,34,44,34,117,112,100,97,116,101,34,44,34,114,101,109,111,118,101,34,44,34,100,101,115,116,114,111,121,34,93,59,102,117,110,99,116,105,111,110,32,106,105,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,107,101,121,61,61,61,101,46,107,101,121,38,38,40,116,46,116,97,103,61,61,61,101,46,116,97,103,38,38,116,46,105,115,67,111,109,109,101,110,116,61,61,61,101,46,105,115,67,111,109,109,101,110,116,38,38,111,40,116,46,100,97,116,97,41,61,61,61,111,40,101,46,100,97,116,97,41,38,38,69,105,40,116,44,101,41,124,124,97,40,116,46,105,115,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,41,38,38,116,46,97,115,121,110,99,70,97,99,116,111,114,121,61,61,61,101,46,97,115,121,110,99,70,97,99,116,111,114,121,38,38,105,40,101,46,97,115,121,110,99,70,97,99,116,111,114,121,46,101,114,114,111,114,41,41,125,102,117,110,99,116,105,111,110,32,69,105,40,116,44,101,41,123,105,102,40,34,105,110,112,117,116,34,33,61,61,116,46,116,97,103,41,114,101,116,117,114,110,33,48,59,118,97,114,32,110,44,114,61,111,40,110,61,116,46,100,97,116,97,41,38,38,111,40,110,61,110,46,97,116,116,114,115,41,38,38,110,46,116,121,112,101,44,105,61,111,40,110,61,101,46,100,97,116,97,41,38,38,111,40,110,61,110,46,97,116,116,114,115,41,38,38,110,46,116,121,112,101,59,114,101,116,117,114,110,32,114,61,61,61,105,124,124,108,105,40,114,41,38,38,108,105,40,105,41,125,102,117,110,99,116,105,111,110,32,68,105,40,116,44,101,44,110,41,123,118,97,114,32,114,44,105,44,97,61,123,125,59,102,111,114,40,114,61,101,59,114,60,61,110,59,43,43,114,41,105,61,116,91,114,93,46,107,101,121,44,111,40,105,41,38,38,40,97,91,105,93,61,114,41,59,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,65,105,40,116,41,123,118,97,114,32,101,44,110,44,114,61,123,125,44,115,61,116,46,109,111,100,117,108,101,115,44,117,61,116,46,110,111,100,101,79,112,115,59,102,111,114,40,101,61,48,59,101,60,84,105,46,108,101,110,103,116,104,59,43,43,101,41,102,111,114,40,114,91,84,105,91,101,93,93,61,91,93,44,110,61,48,59,110,60,115,46,108,101,110,103,116,104,59,43,43,110,41,111,40,115,91,110,93,91,84,105,91,101,93,93,41,38,38,114,91,84,105,91,101,93,93,46,112,117,115,104,40,115,91,110,93,91,84,105,91,101,93,93,41,59,102,117,110,99,116,105,111,110,32,108,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,119,116,40,117,46,116,97,103,78,97,109,101,40,116,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,123,125,44,91,93,44,118,111,105,100,32,48,44,116,41,125,102,117,110,99,116,105,111,110,32,102,40,116,44,101,41,123,102,117,110,99,116,105,111,110,32,110,40,41,123,48,61,61,61,45,45,110,46,108,105,115,116,101,110,101,114,115,38,38,104,40,116,41,125,114,101,116,117,114,110,32,110,46,108,105,115,116,101,110,101,114,115,61,101,44,110,125,102,117,110,99,116,105,111,110,32,104,40,116,41,123,118,97,114,32,101,61,117,46,112,97,114,101,110,116,78,111,100,101,40,116,41,59,111,40,101,41,38,38,117,46,114,101,109,111,118,101,67,104,105,108,100,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,100,40,116,44,101,44,110,44,114,44,105,44,115,44,99,41,123,105,102,40,111,40,116,46,101,108,109,41,38,38,111,40,115,41,38,38,40,116,61,115,91,99,93,61,83,116,40,116,41,41,44,116,46,105,115,82,111,111,116,73,110,115,101,114,116,61,33,105,44,33,112,40,116,44,101,44,110,44,114,41,41,123,118,97,114,32,108,61,116,46,100,97,116,97,44,102,61,116,46,99,104,105,108,100,114,101,110,44,104,61,116,46,116,97,103,59,111,40,104,41,63,40,116,46,101,108,109,61,116,46,110,115,63,117,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,116,46,110,115,44,104,41,58,117,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,104,44,116,41,44,120,40,116,41,44,121,40,116,44,102,44,101,41,44,111,40,108,41,38,38,95,40,116,44,101,41,44,98,40,110,44,116,46,101,108,109,44,114,41,41,58,97,40,116,46,105,115,67,111,109,109,101,110,116,41,63,40,116,46,101,108,109,61,117,46,99,114,101,97,116,101,67,111,109,109,101,110,116,40,116,46,116,101,120,116,41,44,98,40,110,44,116,46,101,108,109,44,114,41,41,58,40,116,46,101,108,109,61,117,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,116,46,116,101,120,116,41,44,98,40,110,44,116,46,101,108,109,44,114,41,41,125,125,102,117,110,99,116,105,111,110,32,112,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,46,100,97,116,97,59,105,102,40,111,40,105,41,41,123,118,97,114,32,115,61,111,40,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,38,38,105,46,107,101,101,112,65,108,105,118,101,59,105,102,40,111,40,105,61,105,46,104,111,111,107,41,38,38,111,40,105,61,105,46,105,110,105,116,41,38,38,105,40,116,44,33,49,41,44,111,40,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,41,114,101,116,117,114,110,32,118,40,116,44,101,41,44,98,40,110,44,116,46,101,108,109,44,114,41,44,97,40,115,41,38,38,103,40,116,44,101,44,110,44,114,41,44,33,48,125,125,102,117,110,99,116,105,111,110,32,118,40,116,44,101,41,123,111,40,116,46,100,97,116,97,46,112,101,110,100,105,110,103,73,110,115,101,114,116,41,38,38,40,101,46,112,117,115,104,46,97,112,112,108,121,40,101,44,116,46,100,97,116,97,46,112,101,110,100,105,110,103,73,110,115,101,114,116,41,44,116,46,100,97,116,97,46,112,101,110,100,105,110,103,73,110,115,101,114,116,61,110,117,108,108,41,44,116,46,101,108,109,61,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,36,101,108,44,119,40,116,41,63,40,95,40,116,44,101,41,44,120,40,116,41,41,58,40,67,105,40,116,41,44,101,46,112,117,115,104,40,116,41,41,125,102,117,110,99,116,105,111,110,32,103,40,116,44,101,44,110,44,105,41,123,118,97,114,32,97,44,115,61,116,59,119,104,105,108,101,40,115,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,105,102,40,115,61,115,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,118,110,111,100,101,44,111,40,97,61,115,46,100,97,116,97,41,38,38,111,40,97,61,97,46,116,114,97,110,115,105,116,105,111,110,41,41,123,102,111,114,40,97,61,48,59,97,60,114,46,97,99,116,105,118,97,116,101,46,108,101,110,103,116,104,59,43,43,97,41,114,46,97,99,116,105,118,97,116,101,91,97,93,40,80,105,44,115,41,59,101,46,112,117,115,104,40,115,41,59,98,114,101,97,107,125,98,40,110,44,116,46,101,108,109,44,105,41,125,102,117,110,99,116,105,111,110,32,98,40,116,44,101,44,110,41,123,111,40,116,41,38,38,40,111,40,110,41,63,117,46,112,97,114,101,110,116,78,111,100,101,40,110,41,61,61,61,116,38,38,117,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,101,44,110,41,58,117,46,97,112,112,101,110,100,67,104,105,108,100,40,116,44,101,41,41,125,102,117,110,99,116,105,111,110,32,121,40,116,44,101,44,110,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,123,48,59,102,111,114,40,118,97,114,32,114,61,48,59,114,60,101,46,108,101,110,103,116,104,59,43,43,114,41,100,40,101,91,114,93,44,110,44,116,46,101,108,109,44,110,117,108,108,44,33,48,44,101,44,114,41,125,101,108,115,101,32,99,40,116,46,116,101,120,116,41,38,38,117,46,97,112,112,101,110,100,67,104,105,108,100,40,116,46,101,108,109,44,117,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,83,116,114,105,110,103,40,116,46,116,101,120,116,41,41,41,125,102,117,110,99,116,105,111,110,32,119,40,116,41,123,119,104,105,108,101,40,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,116,61,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,118,110,111,100,101,59,114,101,116,117,114,110,32,111,40,116,46,116,97,103,41,125,102,117,110,99,116,105,111,110,32,95,40,116,44,110,41,123,102,111,114,40,118,97,114,32,105,61,48,59,105,60,114,46,99,114,101,97,116,101,46,108,101,110,103,116,104,59,43,43,105,41,114,46,99,114,101,97,116,101,91,105,93,40,80,105,44,116,41,59,101,61,116,46,100,97,116,97,46,104,111,111,107,44,111,40,101,41,38,38,40,111,40,101,46,99,114,101,97,116,101,41,38,38,101,46,99,114,101,97,116,101,40,80,105,44,116,41,44,111,40,101,46,105,110,115,101,114,116,41,38,38,110,46,112,117,115,104,40,116,41,41,125,102,117,110,99,116,105,111,110,32,120,40,116,41,123,118,97,114,32,101,59,105,102,40,111,40,101,61,116,46,102,110,83,99,111,112,101,73,100,41,41,117,46,115,101,116,83,116,121,108,101,83,99,111,112,101,40,116,46,101,108,109,44,101,41,59,101,108,115,101,123,118,97,114,32,110,61,116,59,119,104,105,108,101,40,110,41,111,40,101,61,110,46,99,111,110,116,101,120,116,41,38,38,111,40,101,61,101,46,36,111,112,116,105,111,110,115,46,95,115,99,111,112,101,73,100,41,38,38,117,46,115,101,116,83,116,121,108,101,83,99,111,112,101,40,116,46,101,108,109,44,101,41,44,110,61,110,46,112,97,114,101,110,116,125,111,40,101,61,68,110,41,38,38,101,33,61,61,116,46,99,111,110,116,101,120,116,38,38,101,33,61,61,116,46,102,110,67,111,110,116,101,120,116,38,38,111,40,101,61,101,46,36,111,112,116,105,111,110,115,46,95,115,99,111,112,101,73,100,41,38,38,117,46,115,101,116,83,116,121,108,101,83,99,111,112,101,40,116,46,101,108,109,44,101,41,125,102,117,110,99,116,105,111,110,32,79,40,116,44,101,44,110,44,114,44,105,44,111,41,123,102,111,114,40,59,114,60,61,105,59,43,43,114,41,100,40,110,91,114,93,44,111,44,116,44,101,44,33,49,44,110,44,114,41,125,102,117,110,99,116,105,111,110,32,83,40,116,41,123,118,97,114,32,101,44,110,44,105,61,116,46,100,97,116,97,59,105,102,40,111,40,105,41,41,102,111,114,40,111,40,101,61,105,46,104,111,111,107,41,38,38,111,40,101,61,101,46,100,101,115,116,114,111,121,41,38,38,101,40,116,41,44,101,61,48,59,101,60,114,46,100,101,115,116,114,111,121,46,108,101,110,103,116,104,59,43,43,101,41,114,46,100,101,115,116,114,111,121,91,101,93,40,116,41,59,105,102,40,111,40,101,61,116,46,99,104,105,108,100,114,101,110,41,41,102,111,114,40,110,61,48,59,110,60,116,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,59,43,43,110,41,83,40,116,46,99,104,105,108,100,114,101,110,91,110,93,41,125,102,117,110,99,116,105,111,110,32,107,40,116,44,101,44,110,41,123,102,111,114,40,59,101,60,61,110,59,43,43,101,41,123,118,97,114,32,114,61,116,91,101,93,59,111,40,114,41,38,38,40,111,40,114,46,116,97,103,41,63,40,67,40,114,41,44,83,40,114,41,41,58,104,40,114,46,101,108,109,41,41,125,125,102,117,110,99,116,105,111,110,32,67,40,116,44,101,41,123,105,102,40,111,40,101,41,124,124,111,40,116,46,100,97,116,97,41,41,123,118,97,114,32,110,44,105,61,114,46,114,101,109,111,118,101,46,108,101,110,103,116,104,43,49,59,102,111,114,40,111,40,101,41,63,101,46,108,105,115,116,101,110,101,114,115,43,61,105,58,101,61,102,40,116,46,101,108,109,44,105,41,44,111,40,110,61,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,38,38,111,40,110,61,110,46,95,118,110,111,100,101,41,38,38,111,40,110,46,100,97,116,97,41,38,38,67,40,110,44,101,41,44,110,61,48,59,110,60,114,46,114,101,109,111,118,101,46,108,101,110,103,116,104,59,43,43,110,41,114,46,114,101,109,111,118,101,91,110,93,40,116,44,101,41,59,111,40,110,61,116,46,100,97,116,97,46,104,111,111,107,41,38,38,111,40,110,61,110,46,114,101,109,111,118,101,41,63,110,40,116,44,101,41,58,101,40,41,125,101,108,115,101,32,104,40,116,46,101,108,109,41,125,102,117,110,99,116,105,111,110,32,80,40,116,44,101,44,110,44,114,44,97,41,123,118,97,114,32,115,44,99,44,108,44,102,44,104,61,48,44,112,61,48,44,118,61,101,46,108,101,110,103,116,104,45,49,44,103,61,101,91,48,93,44,109,61,101,91,118,93,44,98,61,110,46,108,101,110,103,116,104,45,49,44,121,61,110,91,48,93,44,119,61,110,91,98,93,44,95,61,33,97,59,119,104,105,108,101,40,104,60,61,118,38,38,112,60,61,98,41,105,40,103,41,63,103,61,101,91,43,43,104,93,58,105,40,109,41,63,109,61,101,91,45,45,118,93,58,106,105,40,103,44,121,41,63,40,106,40,103,44,121,44,114,44,110,44,112,41,44,103,61,101,91,43,43,104,93,44,121,61,110,91,43,43,112,93,41,58,106,105,40,109,44,119,41,63,40,106,40,109,44,119,44,114,44,110,44,98,41,44,109,61,101,91,45,45,118,93,44,119,61,110,91,45,45,98,93,41,58,106,105,40,103,44,119,41,63,40,106,40,103,44,119,44,114,44,110,44,98,41,44,95,38,38,117,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,103,46,101,108,109,44,117,46,110,101,120,116,83,105,98,108,105,110,103,40,109,46,101,108,109,41,41,44,103,61,101,91,43,43,104,93,44,119,61,110,91,45,45,98,93,41,58,106,105,40,109,44,121,41,63,40,106,40,109,44,121,44,114,44,110,44,112,41,44,95,38,38,117,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,109,46,101,108,109,44,103,46,101,108,109,41,44,109,61,101,91,45,45,118,93,44,121,61,110,91,43,43,112,93,41,58,40,105,40,115,41,38,38,40,115,61,68,105,40,101,44,104,44,118,41,41,44,99,61,111,40,121,46,107,101,121,41,63,115,91,121,46,107,101,121,93,58,84,40,121,44,101,44,104,44,118,41,44,105,40,99,41,63,100,40,121,44,114,44,116,44,103,46,101,108,109,44,33,49,44,110,44,112,41,58,40,108,61,101,91,99,93,44,106,105,40,108,44,121,41,63,40,106,40,108,44,121,44,114,44,110,44,112,41,44,101,91,99,93,61,118,111,105,100,32,48,44,95,38,38,117,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,108,46,101,108,109,44,103,46,101,108,109,41,41,58,100,40,121,44,114,44,116,44,103,46,101,108,109,44,33,49,44,110,44,112,41,41,44,121,61,110,91,43,43,112,93,41,59,104,62,118,63,40,102,61,105,40,110,91,98,43,49,93,41,63,110,117,108,108,58,110,91,98,43,49,93,46,101,108,109,44,79,40,116,44,102,44,110,44,112,44,98,44,114,41,41,58,112,62,98,38,38,107,40,101,44,104,44,118,41,125,102,117,110,99,116,105,111,110,32,84,40,116,44,101,44,110,44,114,41,123,102,111,114,40,118,97,114,32,105,61,110,59,105,60,114,59,105,43,43,41,123,118,97,114,32,97,61,101,91,105,93,59,105,102,40,111,40,97,41,38,38,106,105,40,116,44,97,41,41,114,101,116,117,114,110,32,105,125,125,102,117,110,99,116,105,111,110,32,106,40,116,44,101,44,110,44,115,44,99,44,108,41,123,105,102,40,116,33,61,61,101,41,123,111,40,101,46,101,108,109,41,38,38,111,40,115,41,38,38,40,101,61,115,91,99,93,61,83,116,40,101,41,41,59,118,97,114,32,102,61,101,46,101,108,109,61,116,46,101,108,109,59,105,102,40,97,40,116,46,105,115,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,41,41,111,40,101,46,97,115,121,110,99,70,97,99,116,111,114,121,46,114,101,115,111,108,118,101,100,41,63,65,40,116,46,101,108,109,44,101,44,110,41,58,101,46,105,115,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,61,33,48,59,101,108,115,101,32,105,102,40,97,40,101,46,105,115,83,116,97,116,105,99,41,38,38,97,40,116,46,105,115,83,116,97,116,105,99,41,38,38,101,46,107,101,121,61,61,61,116,46,107,101,121,38,38,40,97,40,101,46,105,115,67,108,111,110,101,100,41,124,124,97,40,101,46,105,115,79,110,99,101,41,41,41,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,61,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,59,101,108,115,101,123,118,97,114,32,104,44,100,61,101,46,100,97,116,97,59,111,40,100,41,38,38,111,40,104,61,100,46,104,111,111,107,41,38,38,111,40,104,61,104,46,112,114,101,112,97,116,99,104,41,38,38,104,40,116,44,101,41,59,118,97,114,32,112,61,116,46,99,104,105,108,100,114,101,110,44,118,61,101,46,99,104,105,108,100,114,101,110,59,105,102,40,111,40,100,41,38,38,119,40,101,41,41,123,102,111,114,40,104,61,48,59,104,60,114,46,117,112,100,97,116,101,46,108,101,110,103,116,104,59,43,43,104,41,114,46,117,112,100,97,116,101,91,104,93,40,116,44,101,41,59,111,40,104,61,100,46,104,111,111,107,41,38,38,111,40,104,61,104,46,117,112,100,97,116,101,41,38,38,104,40,116,44,101,41,125,105,40,101,46,116,101,120,116,41,63,111,40,112,41,38,38,111,40,118,41,63,112,33,61,61,118,38,38,80,40,102,44,112,44,118,44,110,44,108,41,58,111,40,118,41,63,40,111,40,116,46,116,101,120,116,41,38,38,117,46,115,101,116,84,101,120,116,67,111,110,116,101,110,116,40,102,44,34,34,41,44,79,40,102,44,110,117,108,108,44,118,44,48,44,118,46,108,101,110,103,116,104,45,49,44,110,41,41,58,111,40,112,41,63,107,40,112,44,48,44,112,46,108,101,110,103,116,104,45,49,41,58,111,40,116,46,116,101,120,116,41,38,38,117,46,115,101,116,84,101,120,116,67,111,110,116,101,110,116,40,102,44,34,34,41,58,116,46,116,101,120,116,33,61,61,101,46,116,101,120,116,38,38,117,46,115,101,116,84,101,120,116,67,111,110,116,101,110,116,40,102,44,101,46,116,101,120,116,41,44,111,40,100,41,38,38,111,40,104,61,100,46,104,111,111,107,41,38,38,111,40,104,61,104,46,112,111,115,116,112,97,116,99,104,41,38,38,104,40,116,44,101,41,125,125,125,102,117,110,99,116,105,111,110,32,69,40,116,44,101,44,110,41,123,105,102,40,97,40,110,41,38,38,111,40,116,46,112,97,114,101,110,116,41,41,116,46,112,97,114,101,110,116,46,100,97,116,97,46,112,101,110,100,105,110,103,73,110,115,101,114,116,61,101,59,101,108,115,101,32,102,111,114,40,118,97,114,32,114,61,48,59,114,60,101,46,108,101,110,103,116,104,59,43,43,114,41,101,91,114,93,46,100,97,116,97,46,104,111,111,107,46,105,110,115,101,114,116,40,101,91,114,93,41,125,118,97,114,32,68,61,109,40,34,97,116,116,114,115,44,99,108,97,115,115,44,115,116,97,116,105,99,67,108,97,115,115,44,115,116,97,116,105,99,83,116,121,108,101,44,107,101,121,34,41,59,102,117,110,99,116,105,111,110,32,65,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,44,115,61,101,46,116,97,103,44,99,61,101,46,100,97,116,97,44,117,61,101,46,99,104,105,108,100,114,101,110,59,105,102,40,114,61,114,124,124,99,38,38,99,46,112,114,101,44,101,46,101,108,109,61,116,44,97,40,101,46,105,115,67,111,109,109,101,110,116,41,38,38,111,40,101,46,97,115,121,110,99,70,97,99,116,111,114,121,41,41,114,101,116,117,114,110,32,101,46,105,115,65,115,121,110,99,80,108,97,99,101,104,111,108,100,101,114,61,33,48,44,33,48,59,105,102,40,111,40,99,41,38,38,40,111,40,105,61,99,46,104,111,111,107,41,38,38,111,40,105,61,105,46,105,110,105,116,41,38,38,105,40,101,44,33,48,41,44,111,40,105,61,101,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,41,41,114,101,116,117,114,110,32,118,40,101,44,110,41,44,33,48,59,105,102,40,111,40,115,41,41,123,105,102,40,111,40,117,41,41,105,102,40,116,46,104,97,115,67,104,105,108,100,78,111,100,101,115,40,41,41,105,102,40,111,40,105,61,99,41,38,38,111,40,105,61,105,46,100,111,109,80,114,111,112,115,41,38,38,111,40,105,61,105,46,105,110,110,101,114,72,84,77,76,41,41,123,105,102,40,105,33,61,61,116,46,105,110,110,101,114,72,84,77,76,41,114,101,116,117,114,110,33,49,125,101,108,115,101,123,102,111,114,40,118,97,114,32,108,61,33,48,44,102,61,116,46,102,105,114,115,116,67,104,105,108,100,44,104,61,48,59,104,60,117,46,108,101,110,103,116,104,59,104,43,43,41,123,105,102,40,33,102,124,124,33,65,40,102,44,117,91,104,93,44,110,44,114,41,41,123,108,61,33,49,59,98,114,101,97,107,125,102,61,102,46,110,101,120,116,83,105,98,108,105,110,103,125,105,102,40,33,108,124,124,102,41,114,101,116,117,114,110,33,49,125,101,108,115,101,32,121,40,101,44,117,44,110,41,59,105,102,40,111,40,99,41,41,123,118,97,114,32,100,61,33,49,59,102,111,114,40,118,97,114,32,112,32,105,110,32,99,41,105,102,40,33,68,40,112,41,41,123,100,61,33,48,44,95,40,101,44,110,41,59,98,114,101,97,107,125,33,100,38,38,99,91,34,99,108,97,115,115,34,93,38,38,109,101,40,99,91,34,99,108,97,115,115,34,93,41,125,125,101,108,115,101,32,116,46,100,97,116,97,33,61,61,101,46,116,101,120,116,38,38,40,116,46,100,97,116,97,61,101,46,116,101,120,116,41,59,114,101,116,117,114,110,33,48,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,115,41,123,105,102,40,33,105,40,101,41,41,123,118,97,114,32,99,61,33,49,44,102,61,91,93,59,105,102,40,105,40,116,41,41,99,61,33,48,44,100,40,101,44,102,41,59,101,108,115,101,123,118,97,114,32,104,61,111,40,116,46,110,111,100,101,84,121,112,101,41,59,105,102,40,33,104,38,38,106,105,40,116,44,101,41,41,106,40,116,44,101,44,102,44,110,117,108,108,44,110,117,108,108,44,115,41,59,101,108,115,101,123,105,102,40,104,41,123,105,102,40,49,61,61,61,116,46,110,111,100,101,84,121,112,101,38,38,116,46,104,97,115,65,116,116,114,105,98,117,116,101,40,66,41,38,38,40,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,66,41,44,110,61,33,48,41,44,97,40,110,41,38,38,65,40,116,44,101,44,102,41,41,114,101,116,117,114,110,32,69,40,101,44,102,44,33,48,41,44,116,59,116,61,108,40,116,41,125,118,97,114,32,112,61,116,46,101,108,109,44,118,61,117,46,112,97,114,101,110,116,78,111,100,101,40,112,41,59,105,102,40,100,40,101,44,102,44,112,46,95,108,101,97,118,101,67,98,63,110,117,108,108,58,118,44,117,46,110,101,120,116,83,105,98,108,105,110,103,40,112,41,41,44,111,40,101,46,112,97,114,101,110,116,41,41,123,118,97,114,32,103,61,101,46,112,97,114,101,110,116,44,109,61,119,40,101,41,59,119,104,105,108,101,40,103,41,123,102,111,114,40,118,97,114,32,98,61,48,59,98,60,114,46,100,101,115,116,114,111,121,46,108,101,110,103,116,104,59,43,43,98,41,114,46,100,101,115,116,114,111,121,91,98,93,40,103,41,59,105,102,40,103,46,101,108,109,61,101,46,101,108,109,44,109,41,123,102,111,114,40,118,97,114,32,121,61,48,59,121,60,114,46,99,114,101,97,116,101,46,108,101,110,103,116,104,59,43,43,121,41,114,46,99,114,101,97,116,101,91,121,93,40,80,105,44,103,41,59,118,97,114,32,95,61,103,46,100,97,116,97,46,104,111,111,107,46,105,110,115,101,114,116,59,105,102,40,95,46,109,101,114,103,101,100,41,102,111,114,40,118,97,114,32,120,61,49,59,120,60,95,46,102,110,115,46,108,101,110,103,116,104,59,120,43,43,41,95,46,102,110,115,91,120,93,40,41,125,101,108,115,101,32,67,105,40,103,41,59,103,61,103,46,112,97,114,101,110,116,125,125,111,40,118,41,63,107,40,91,116,93,44,48,44,48,41,58,111,40,116,46,116,97,103,41,38,38,83,40,116,41,125,125,114,101,116,117,114,110,32,69,40,101,44,102,44,99,41,44,101,46,101,108,109,125,111,40,116,41,38,38,83,40,116,41,125,125,118,97,114,32,76,105,61,123,99,114,101,97,116,101,58,73,105,44,117,112,100,97,116,101,58,73,105,44,100,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,116,41,123,73,105,40,116,44,80,105,41,125,125,59,102,117,110,99,116,105,111,110,32,73,105,40,116,44,101,41,123,40,116,46,100,97,116,97,46,100,105,114,101,99,116,105,118,101,115,124,124,101,46,100,97,116,97,46,100,105,114,101,99,116,105,118,101,115,41,38,38,77,105,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,77,105,40,116,44,101,41,123,118,97,114,32,110,44,114,44,105,44,111,61,116,61,61,61,80,105,44,97,61,101,61,61,61,80,105,44,115,61,70,105,40,116,46,100,97,116,97,46,100,105,114,101,99,116,105,118,101,115,44,116,46,99,111,110,116,101,120,116,41,44,99,61,70,105,40,101,46,100,97,116,97,46,100,105,114,101,99,116,105,118,101,115,44,101,46,99,111,110,116,101,120,116,41,44,117,61,91,93,44,108,61,91,93,59,102,111,114,40,110,32,105,110,32,99,41,114,61,115,91,110,93,44,105,61,99,91,110,93,44,114,63,40,105,46,111,108,100,86,97,108,117,101,61,114,46,118,97,108,117,101,44,105,46,111,108,100,65,114,103,61,114,46,97,114,103,44,78,105,40,105,44,34,117,112,100,97,116,101,34,44,101,44,116,41,44,105,46,100,101,102,38,38,105,46,100,101,102,46,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,38,38,108,46,112,117,115,104,40,105,41,41,58,40,78,105,40,105,44,34,98,105,110,100,34,44,101,44,116,41,44,105,46,100,101,102,38,38,105,46,100,101,102,46,105,110,115,101,114,116,101,100,38,38,117,46,112,117,115,104,40,105,41,41,59,105,102,40,117,46,108,101,110,103,116,104,41,123,118,97,114,32,102,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,117,46,108,101,110,103,116,104,59,110,43,43,41,78,105,40,117,91,110,93,44,34,105,110,115,101,114,116,101,100,34,44,101,44,116,41,125,59,111,63,120,101,40,101,44,34,105,110,115,101,114,116,34,44,102,41,58,102,40,41,125,105,102,40,108,46,108,101,110,103,116,104,38,38,120,101,40,101,44,34,112,111,115,116,112,97,116,99,104,34,44,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,108,46,108,101,110,103,116,104,59,110,43,43,41,78,105,40,108,91,110,93,44,34,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,34,44,101,44,116,41,125,41,41,44,33,111,41,102,111,114,40,110,32,105,110,32,115,41,99,91,110,93,124,124,78,105,40,115,91,110,93,44,34,117,110,98,105,110,100,34,44,116,44,116,44,97,41,125,118,97,114,32,36,105,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,102,117,110,99,116,105,111,110,32,70,105,40,116,44,101,41,123,118,97,114,32,110,44,114,44,105,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,105,102,40,33,116,41,114,101,116,117,114,110,32,105,59,102,111,114,40,110,61,48,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,114,61,116,91,110,93,44,114,46,109,111,100,105,102,105,101,114,115,124,124,40,114,46,109,111,100,105,102,105,101,114,115,61,36,105,41,44,105,91,82,105,40,114,41,93,61,114,44,114,46,100,101,102,61,88,116,40,101,46,36,111,112,116,105,111,110,115,44,34,100,105,114,101,99,116,105,118,101,115,34,44,114,46,110,97,109,101,44,33,48,41,59,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,82,105,40,116,41,123,114,101,116,117,114,110,32,116,46,114,97,119,78,97,109,101,124,124,116,46,110,97,109,101,43,34,46,34,43,79,98,106,101,99,116,46,107,101,121,115,40,116,46,109,111,100,105,102,105,101,114,115,124,124,123,125,41,46,106,111,105,110,40,34,46,34,41,125,102,117,110,99,116,105,111,110,32,78,105,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,116,46,100,101,102,38,38,116,46,100,101,102,91,101,93,59,105,102,40,111,41,116,114,121,123,111,40,110,46,101,108,109,44,116,44,110,44,114,44,105,41,125,99,97,116,99,104,40,83,97,41,123,110,101,40,83,97,44,110,46,99,111,110,116,101,120,116,44,34,100,105,114,101,99,116,105,118,101,32,34,43,116,46,110,97,109,101,43,34,32,34,43,101,43,34,32,104,111,111,107,34,41,125,125,118,97,114,32,66,105,61,91,107,105,44,76,105,93,59,102,117,110,99,116,105,111,110,32,122,105,40,116,44,101,41,123,118,97,114,32,110,61,101,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,59,105,102,40,40,33,111,40,110,41,124,124,33,49,33,61,61,110,46,67,116,111,114,46,111,112,116,105,111,110,115,46,105,110,104,101,114,105,116,65,116,116,114,115,41,38,38,40,33,105,40,116,46,100,97,116,97,46,97,116,116,114,115,41,124,124,33,105,40,101,46,100,97,116,97,46,97,116,116,114,115,41,41,41,123,118,97,114,32,114,44,97,44,115,44,99,61,101,46,101,108,109,44,117,61,116,46,100,97,116,97,46,97,116,116,114,115,124,124,123,125,44,108,61,101,46,100,97,116,97,46,97,116,116,114,115,124,124,123,125,59,102,111,114,40,114,32,105,110,32,111,40,108,46,95,95,111,98,95,95,41,38,38,40,108,61,101,46,100,97,116,97,46,97,116,116,114,115,61,65,40,123,125,44,108,41,41,44,108,41,97,61,108,91,114,93,44,115,61,117,91,114,93,44,115,33,61,61,97,38,38,86,105,40,99,44,114,44,97,41,59,102,111,114,40,114,32,105,110,40,101,116,124,124,114,116,41,38,38,108,46,118,97,108,117,101,33,61,61,117,46,118,97,108,117,101,38,38,86,105,40,99,44,34,118,97,108,117,101,34,44,108,46,118,97,108,117,101,41,44,117,41,105,40,108,91,114,93,41,38,38,40,113,114,40,114,41,63,99,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,71,114,44,89,114,40,114,41,41,58,86,114,40,114,41,124,124,99,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,114,41,41,125,125,102,117,110,99,116,105,111,110,32,86,105,40,116,44,101,44,110,41,123,116,46,116,97,103,78,97,109,101,46,105,110,100,101,120,79,102,40,34,45,34,41,62,45,49,63,72,105,40,116,44,101,44,110,41,58,87,114,40,101,41,63,75,114,40,110,41,63,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,101,41,58,40,110,61,34,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,34,61,61,61,101,38,38,34,69,77,66,69,68,34,61,61,61,116,46,116,97,103,78,97,109,101,63,34,116,114,117,101,34,58,101,44,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,101,44,110,41,41,58,86,114,40,101,41,63,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,101,44,85,114,40,101,44,110,41,41,58,113,114,40,101,41,63,75,114,40,110,41,63,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,71,114,44,89,114,40,101,41,41,58,116,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,71,114,44,101,44,110,41,58,72,105,40,116,44,101,44,110,41,125,102,117,110,99,116,105,111,110,32,72,105,40,116,44,101,44,110,41,123,105,102,40,75,114,40,110,41,41,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,101,41,59,101,108,115,101,123,105,102,40,101,116,38,38,33,110,116,38,38,34,84,69,88,84,65,82,69,65,34,61,61,61,116,46,116,97,103,78,97,109,101,38,38,34,112,108,97,99,101,104,111,108,100,101,114,34,61,61,61,101,38,38,34,34,33,61,61,110,38,38,33,116,46,95,95,105,101,112,104,41,123,118,97,114,32,114,61,102,117,110,99,116,105,111,110,40,101,41,123,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,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,105,110,112,117,116,34,44,114,41,125,59,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,105,110,112,117,116,34,44,114,41,44,116,46,95,95,105,101,112,104,61,33,48,125,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,101,44,110,41,125,125,118,97,114,32,85,105,61,123,99,114,101,97,116,101,58,122,105,44,117,112,100,97,116,101,58,122,105,125,59,102,117,110,99,116,105,111,110,32,87,105,40,116,44,101,41,123,118,97,114,32,110,61,101,46,101,108,109,44,114,61,101,46,100,97,116,97,44,97,61,116,46,100,97,116,97,59,105,102,40,33,40,105,40,114,46,115,116,97,116,105,99,67,108,97,115,115,41,38,38,105,40,114,46,99,108,97,115,115,41,38,38,40,105,40,97,41,124,124,105,40,97,46,115,116,97,116,105,99,67,108,97,115,115,41,38,38,105,40,97,46,99,108,97,115,115,41,41,41,41,123,118,97,114,32,115,61,88,114,40,101,41,44,99,61,110,46,95,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,59,111,40,99,41,38,38,40,115,61,81,114,40,115,44,116,105,40,99,41,41,41,44,115,33,61,61,110,46,95,112,114,101,118,67,108,97,115,115,38,38,40,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,44,110,46,95,112,114,101,118,67,108,97,115,115,61,115,41,125,125,118,97,114,32,71,105,44,113,105,61,123,99,114,101,97,116,101,58,87,105,44,117,112,100,97,116,101,58,87,105,125,44,89,105,61,34,95,95,114,34,44,75,105,61,34,95,95,99,34,59,102,117,110,99,116,105,111,110,32,88,105,40,116,41,123,105,102,40,111,40,116,91,89,105,93,41,41,123,118,97,114,32,101,61,101,116,63,34,99,104,97,110,103,101,34,58,34,105,110,112,117,116,34,59,116,91,101,93,61,91,93,46,99,111,110,99,97,116,40,116,91,89,105,93,44,116,91,101,93,124,124,91,93,41,44,100,101,108,101,116,101,32,116,91,89,105,93,125,111,40,116,91,75,105,93,41,38,38,40,116,46,99,104,97,110,103,101,61,91,93,46,99,111,110,99,97,116,40,116,91,75,105,93,44,116,46,99,104,97,110,103,101,124,124,91,93,41,44,100,101,108,101,116,101,32,116,91,75,105,93,41,125,102,117,110,99,116,105,111,110,32,90,105,40,116,44,101,44,110,41,123,118,97,114,32,114,61,71,105,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,105,40,41,123,118,97,114,32,111,61,101,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,33,61,61,111,38,38,116,111,40,116,44,105,44,110,44,114,41,125,125,118,97,114,32,74,105,61,115,101,38,38,33,40,111,116,38,38,78,117,109,98,101,114,40,111,116,91,49,93,41,60,61,53,51,41,59,102,117,110,99,116,105,111,110,32,81,105,40,116,44,101,44,110,44,114,41,123,105,102,40,74,105,41,123,118,97,114,32,105,61,89,110,44,111,61,101,59,101,61,111,46,95,119,114,97,112,112,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,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,124,124,116,46,116,105,109,101,83,116,97,109,112,62,61,105,124,124,116,46,116,105,109,101,83,116,97,109,112,60,61,48,124,124,116,46,116,97,114,103,101,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,33,61,61,100,111,99,117,109,101,110,116,41,114,101,116,117,114,110,32,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,71,105,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,44,101,44,115,116,63,123,99,97,112,116,117,114,101,58,110,44,112,97,115,115,105,118,101,58,114,125,58,110,41,125,102,117,110,99,116,105,111,110,32,116,111,40,116,44,101,44,110,44,114,41,123,40,114,124,124,71,105,41,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,44,101,46,95,119,114,97,112,112,101,114,124,124,101,44,110,41,125,102,117,110,99,116,105,111,110,32,101,111,40,116,44,101,41,123,105,102,40,33,105,40,116,46,100,97,116,97,46,111,110,41,124,124,33,105,40,101,46,100,97,116,97,46,111,110,41,41,123,118,97,114,32,110,61,101,46,100,97,116,97,46,111,110,124,124,123,125,44,114,61,116,46,100,97,116,97,46,111,110,124,124,123,125,59,71,105,61,101,46,101,108,109,44,88,105,40,110,41,44,95,101,40,110,44,114,44,81,105,44,116,111,44,90,105,44,101,46,99,111,110,116,101,120,116,41,44,71,105,61,118,111,105,100,32,48,125,125,118,97,114,32,110,111,44,114,111,61,123,99,114,101,97,116,101,58,101,111,44,117,112,100,97,116,101,58,101,111,125,59,102,117,110,99,116,105,111,110,32,105,111,40,116,44,101,41,123,105,102,40,33,105,40,116,46,100,97,116,97,46,100,111,109,80,114,111,112,115,41,124,124,33,105,40,101,46,100,97,116,97,46,100,111,109,80,114,111,112,115,41,41,123,118,97,114,32,110,44,114,44,97,61,101,46,101,108,109,44,115,61,116,46,100,97,116,97,46,100,111,109,80,114,111,112,115,124,124,123,125,44,99,61,101,46,100,97,116,97,46,100,111,109,80,114,111,112,115,124,124,123,125,59,102,111,114,40,110,32,105,110,32,111,40,99,46,95,95,111,98,95,95,41,38,38,40,99,61,101,46,100,97,116,97,46,100,111,109,80,114,111,112,115,61,65,40,123,125,44,99,41,41,44,115,41,110,32,105,110,32,99,124,124,40,97,91,110,93,61,34,34,41,59,102,111,114,40,110,32,105,110,32,99,41,123,105,102,40,114,61,99,91,110,93,44,34,116,101,120,116,67,111,110,116,101,110,116,34,61,61,61,110,124,124,34,105,110,110,101,114,72,84,77,76,34,61,61,61,110,41,123,105,102,40,101,46,99,104,105,108,100,114,101,110,38,38,40,101,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,61,48,41,44,114,61,61,61,115,91,110,93,41,99,111,110,116,105,110,117,101,59,49,61,61,61,97,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,38,38,97,46,114,101,109,111,118,101,67,104,105,108,100,40,97,46,99,104,105,108,100,78,111,100,101,115,91,48,93,41,125,105,102,40,34,118,97,108,117,101,34,61,61,61,110,38,38,34,80,82,79,71,82,69,83,83,34,33,61,61,97,46,116,97,103,78,97,109,101,41,123,97,46,95,118,97,108,117,101,61,114,59,118,97,114,32,117,61,105,40,114,41,63,34,34,58,83,116,114,105,110,103,40,114,41,59,111,111,40,97,44,117,41,38,38,40,97,46,118,97,108,117,101,61,117,41,125,101,108,115,101,32,105,102,40,34,105,110,110,101,114,72,84,77,76,34,61,61,61,110,38,38,111,105,40,97,46,116,97,103,78,97,109,101,41,38,38,105,40,97,46,105,110,110,101,114,72,84,77,76,41,41,123,110,111,61,110,111,124,124,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,110,111,46,105,110,110,101,114,72,84,77,76,61,34,60,115,118,103,62,34,43,114,43,34,60,47,115,118,103,62,34,59,118,97,114,32,108,61,110,111,46,102,105,114,115,116,67,104,105,108,100,59,119,104,105,108,101,40,97,46,102,105,114,115,116,67,104,105,108,100,41,97,46,114,101,109,111,118,101,67,104,105,108,100,40,97,46,102,105,114,115,116,67,104,105,108,100,41,59,119,104,105,108,101,40,108,46,102,105,114,115,116,67,104,105,108,100,41,97,46,97,112,112,101,110,100,67,104,105,108,100,40,108,46,102,105,114,115,116,67,104,105,108,100,41,125,101,108,115,101,32,105,102,40,114,33,61,61,115,91,110,93,41,116,114,121,123,97,91,110,93,61,114,125,99,97,116,99,104,40,83,97,41,123,125,125,125,125,102,117,110,99,116,105,111,110,32,111,111,40,116,44,101,41,123,114,101,116,117,114,110,33,116,46,99,111,109,112,111,115,105,110,103,38,38,40,34,79,80,84,73,79,78,34,61,61,61,116,46,116,97,103,78,97,109,101,124,124,97,111,40,116,44,101,41,124,124,115,111,40,116,44,101,41,41,125,102,117,110,99,116,105,111,110,32,97,111,40,116,44,101,41,123,118,97,114,32,110,61,33,48,59,116,114,121,123,110,61,100,111,99,117,109,101,110,116,46,97,99,116,105,118,101,69,108,101,109,101,110,116,33,61,61,116,125,99,97,116,99,104,40,83,97,41,123,125,114,101,116,117,114,110,32,110,38,38,116,46,118,97,108,117,101,33,61,61,101,125,102,117,110,99,116,105,111,110,32,115,111,40,116,44,101,41,123,118,97,114,32,110,61,116,46,118,97,108,117,101,44,114,61,116,46,95,118,77,111,100,105,102,105,101,114,115,59,105,102,40,111,40,114,41,41,123,105,102,40,114,46,110,117,109,98,101,114,41,114,101,116,117,114,110,32,103,40,110,41,33,61,61,103,40,101,41,59,105,102,40,114,46,116,114,105,109,41,114,101,116,117,114,110,32,110,46,116,114,105,109,40,41,33,61,61,101,46,116,114,105,109,40,41,125,114,101,116,117,114,110,32,110,33,61,61,101,125,118,97,114,32,99,111,61,123,99,114,101,97,116,101,58,105,111,44,117,112,100,97,116,101,58,105,111,125,44,117,111,61,120,40,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,123,125,44,110,61,47,59,40,63,33,91,94,40,93,42,92,41,41,47,103,44,114,61,47,58,40,46,43,41,47,59,114,101,116,117,114,110,32,116,46,115,112,108,105,116,40,110,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,41,123,118,97,114,32,110,61,116,46,115,112,108,105,116,40,114,41,59,110,46,108,101,110,103,116,104,62,49,38,38,40,101,91,110,91,48,93,46,116,114,105,109,40,41,93,61,110,91,49,93,46,116,114,105,109,40,41,41,125,125,41,41,44,101,125,41,41,59,102,117,110,99,116,105,111,110,32,108,111,40,116,41,123,118,97,114,32,101,61,102,111,40,116,46,115,116,121,108,101,41,59,114,101,116,117,114,110,32,116,46,115,116,97,116,105,99,83,116,121,108,101,63,65,40,116,46,115,116,97,116,105,99,83,116,121,108,101,44,101,41,58,101,125,102,117,110,99,116,105,111,110,32,102,111,40,116,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,76,40,116,41,58,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,63,117,111,40,116,41,58,116,125,102,117,110,99,116,105,111,110,32,104,111,40,116,44,101,41,123,118,97,114,32,110,44,114,61,123,125,59,105,102,40,101,41,123,118,97,114,32,105,61,116,59,119,104,105,108,101,40,105,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,41,105,61,105,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,118,110,111,100,101,44,105,38,38,105,46,100,97,116,97,38,38,40,110,61,108,111,40,105,46,100,97,116,97,41,41,38,38,65,40,114,44,110,41,125,40,110,61,108,111,40,116,46,100,97,116,97,41,41,38,38,65,40,114,44,110,41,59,118,97,114,32,111,61,116,59,119,104,105,108,101,40,111,61,111,46,112,97,114,101,110,116,41,111,46,100,97,116,97,38,38,40,110,61,108,111,40,111,46,100,97,116,97,41,41,38,38,65,40,114,44,110,41,59,114,101,116,117,114,110,32,114,125,118,97,114,32,112,111,44,118,111,61,47,94,45,45,47,44,103,111,61,47,92,115,42,33,105,109,112,111,114,116,97,110,116,36,47,44,109,111,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,118,111,46,116,101,115,116,40,101,41,41,116,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,101,44,110,41,59,101,108,115,101,32,105,102,40,103,111,46,116,101,115,116,40,110,41,41,116,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,80,40,101,41,44,110,46,114,101,112,108,97,99,101,40,103,111,44,34,34,41,44,34,105,109,112,111,114,116,97,110,116,34,41,59,101,108,115,101,123,118,97,114,32,114,61,121,111,40,101,41,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,41,102,111,114,40,118,97,114,32,105,61,48,44,111,61,110,46,108,101,110,103,116,104,59,105,60,111,59,105,43,43,41,116,46,115,116,121,108,101,91,114,93,61,110,91,105,93,59,101,108,115,101,32,116,46,115,116,121,108,101,91,114,93,61,110,125,125,44,98,111,61,91,34,87,101,98,107,105,116,34,44,34,77,111,122,34,44,34,109,115,34,93,44,121,111,61,120,40,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,112,111,61,112,111,124,124,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,46,115,116,121,108,101,44,116,61,83,40,116,41,44,34,102,105,108,116,101,114,34,33,61,61,116,38,38,116,32,105,110,32,112,111,41,114,101,116,117,114,110,32,116,59,102,111,114,40,118,97,114,32,101,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,110,61,48,59,110,60,98,111,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,114,61,98,111,91,110,93,43,101,59,105,102,40,114,32,105,110,32,112,111,41,114,101,116,117,114,110,32,114,125,125,41,41,59,102,117,110,99,116,105,111,110,32,119,111,40,116,44,101,41,123,118,97,114,32,110,61,101,46,100,97,116,97,44,114,61,116,46,100,97,116,97,59,105,102,40,33,40,105,40,110,46,115,116,97,116,105,99,83,116,121,108,101,41,38,38,105,40,110,46,115,116,121,108,101,41,38,38,105,40,114,46,115,116,97,116,105,99,83,116,121,108,101,41,38,38,105,40,114,46,115,116,121,108,101,41,41,41,123,118,97,114,32,97,44,115,44,99,61,101,46,101,108,109,44,117,61,114,46,115,116,97,116,105,99,83,116,121,108,101,44,108,61,114,46,110,111,114,109,97,108,105,122,101,100,83,116,121,108,101,124,124,114,46,115,116,121,108,101,124,124,123,125,44,102,61,117,124,124,108,44,104,61,102,111,40,101,46,100,97,116,97,46,115,116,121,108,101,41,124,124,123,125,59,101,46,100,97,116,97,46,110,111,114,109,97,108,105,122,101,100,83,116,121,108,101,61,111,40,104,46,95,95,111,98,95,95,41,63,65,40,123,125,44,104,41,58,104,59,118,97,114,32,100,61,104,111,40,101,44,33,48,41,59,102,111,114,40,115,32,105,110,32,102,41,105,40,100,91,115,93,41,38,38,109,111,40,99,44,115,44,34,34,41,59,102,111,114,40,115,32,105,110,32,100,41,97,61,100,91,115,93,44,97,33,61,61,102,91,115,93,38,38,109,111,40,99,44,115,44,110,117,108,108,61,61,97,63,34,34,58,97,41,125,125,118,97,114,32,95,111,61,123,99,114,101,97,116,101,58,119,111,44,117,112,100,97,116,101,58,119,111,125,44,120,111,61,47,92,115,43,47,59,102,117,110,99,116,105,111,110,32,79,111,40,116,44,101,41,123,105,102,40,101,38,38,40,101,61,101,46,116,114,105,109,40,41,41,41,105,102,40,116,46,99,108,97,115,115,76,105,115,116,41,101,46,105,110,100,101,120,79,102,40,34,32,34,41,62,45,49,63,101,46,115,112,108,105,116,40,120,111,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,101,41,125,41,41,58,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,101,41,59,101,108,115,101,123,118,97,114,32,110,61,34,32,34,43,40,116,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,43,34,32,34,59,110,46,105,110,100,101,120,79,102,40,34,32,34,43,101,43,34,32,34,41,60,48,38,38,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,40,110,43,101,41,46,116,114,105,109,40,41,41,125,125,102,117,110,99,116,105,111,110,32,83,111,40,116,44,101,41,123,105,102,40,101,38,38,40,101,61,101,46,116,114,105,109,40,41,41,41,105,102,40,116,46,99,108,97,115,115,76,105,115,116,41,101,46,105,110,100,101,120,79,102,40,34,32,34,41,62,45,49,63,101,46,115,112,108,105,116,40,120,111,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,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,101,41,125,41,41,58,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,101,41,44,116,46,99,108,97,115,115,76,105,115,116,46,108,101,110,103,116,104,124,124,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,59,101,108,115,101,123,118,97,114,32,110,61,34,32,34,43,40,116,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,43,34,32,34,44,114,61,34,32,34,43,101,43,34,32,34,59,119,104,105,108,101,40,110,46,105,110,100,101,120,79,102,40,114,41,62,61,48,41,110,61,110,46,114,101,112,108,97,99,101,40,114,44,34,32,34,41,59,110,61,110,46,116,114,105,109,40,41,44,110,63,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,110,41,58,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,125,125,102,117,110,99,116,105,111,110,32,107,111,40,116,41,123,105,102,40,116,41,123,105,102,40,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,41,123,118,97,114,32,101,61,123,125,59,114,101,116,117,114,110,33,49,33,61,61,116,46,99,115,115,38,38,65,40,101,44,67,111,40,116,46,110,97,109,101,124,124,34,118,34,41,41,44,65,40,101,44,116,41,44,101,125,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,63,67,111,40,116,41,58,118,111,105,100,32,48,125,125,118,97,114,32,67,111,61,120,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,101,110,116,101,114,67,108,97,115,115,58,116,43,34,45,101,110,116,101,114,34,44,101,110,116,101,114,84,111,67,108,97,115,115,58,116,43,34,45,101,110,116,101,114,45,116,111,34,44,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,58,116,43,34,45,101,110,116,101,114,45,97,99,116,105,118,101,34,44,108,101,97,118,101,67,108,97,115,115,58,116,43,34,45,108,101,97,118,101,34,44,108,101,97,118,101,84,111,67,108,97,115,115,58,116,43,34,45,108,101,97,118,101,45,116,111,34,44,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,58,116,43,34,45,108,101,97,118,101,45,97,99,116,105,118,101,34,125,125,41,41,44,80,111,61,90,38,38,33,110,116,44,84,111,61,34,116,114,97,110,115,105,116,105,111,110,34,44,106,111,61,34,97,110,105,109,97,116,105,111,110,34,44,69,111,61,34,116,114,97,110,115,105,116,105,111,110,34,44,68,111,61,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,44,65,111,61,34,97,110,105,109,97,116,105,111,110,34,44,76,111,61,34,97,110,105,109,97,116,105,111,110,101,110,100,34,59,80,111,38,38,40,118,111,105,100,32,48,61,61,61,119,105,110,100,111,119,46,111,110,116,114,97,110,115,105,116,105,111,110,101,110,100,38,38,118,111,105,100,32,48,33,61,61,119,105,110,100,111,119,46,111,110,119,101,98,107,105,116,116,114,97,110,115,105,116,105,111,110,101,110,100,38,38,40,69,111,61,34,87,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,34,44,68,111,61,34,119,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,69,110,100,34,41,44,118,111,105,100,32,48,61,61,61,119,105,110,100,111,119,46,111,110,97,110,105,109,97,116,105,111,110,101,110,100,38,38,118,111,105,100,32,48,33,61,61,119,105,110,100,111,119,46,111,110,119,101,98,107,105,116,97,110,105,109,97,116,105,111,110,101,110,100,38,38,40,65,111,61,34,87,101,98,107,105,116,65,110,105,109,97,116,105,111,110,34,44,76,111,61,34,119,101,98,107,105,116,65,110,105,109,97,116,105,111,110,69,110,100,34,41,41,59,118,97,114,32,73,111,61,90,63,119,105,110,100,111,119,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,63,119,105,110,100,111,119,46,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,58,115,101,116,84,105,109,101,111,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,41,125,59,102,117,110,99,116,105,111,110,32,77,111,40,116,41,123,73,111,40,40,102,117,110,99,116,105,111,110,40,41,123,73,111,40,116,41,125,41,41,125,102,117,110,99,116,105,111,110,32,36,111,40,116,44,101,41,123,118,97,114,32,110,61,116,46,95,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,124,124,40,116,46,95,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,61,91,93,41,59,110,46,105,110,100,101,120,79,102,40,101,41,60,48,38,38,40,110,46,112,117,115,104,40,101,41,44,79,111,40,116,44,101,41,41,125,102,117,110,99,116,105,111,110,32,70,111,40,116,44,101,41,123,116,46,95,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,38,38,121,40,116,46,95,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,44,101,41,44,83,111,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,82,111,40,116,44,101,44,110,41,123,118,97,114,32,114,61,66,111,40,116,44,101,41,44,105,61,114,46,116,121,112,101,44,111,61,114,46,116,105,109,101,111,117,116,44,97,61,114,46,112,114,111,112,67,111,117,110,116,59,105,102,40,33,105,41,114,101,116,117,114,110,32,110,40,41,59,118,97,114,32,115,61,105,61,61,61,84,111,63,68,111,58,76,111,44,99,61,48,44,117,61,102,117,110,99,116,105,111,110,40,41,123,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,115,44,108,41,44,110,40,41,125,44,108,61,102,117,110,99,116,105,111,110,40,101,41,123,101,46,116,97,114,103,101,116,61,61,61,116,38,38,43,43,99,62,61,97,38,38,117,40,41,125,59,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,99,60,97,38,38,117,40,41,125,41,44,111,43,49,41,44,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,115,44,108,41,125,118,97,114,32,78,111,61,47,92,98,40,116,114,97,110,115,102,111,114,109,124,97,108,108,41,40,44,124,36,41,47,59,102,117,110,99,116,105,111,110,32,66,111,40,116,44,101,41,123,118,97,114,32,110,44,114,61,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,41,44,105,61,40,114,91,69,111,43,34,68,101,108,97,121,34,93,124,124,34,34,41,46,115,112,108,105,116,40,34,44,32,34,41,44,111,61,40,114,91,69,111,43,34,68,117,114,97,116,105,111,110,34,93,124,124,34,34,41,46,115,112,108,105,116,40,34,44,32,34,41,44,97,61,122,111,40,105,44,111,41,44,115,61,40,114,91,65,111,43,34,68,101,108,97,121,34,93,124,124,34,34,41,46,115,112,108,105,116,40,34,44,32,34,41,44,99,61,40,114,91,65,111,43,34,68,117,114,97,116,105,111,110,34,93,124,124,34,34,41,46,115,112,108,105,116,40,34,44,32,34,41,44,117,61,122,111,40,115,44,99,41,44,108,61,48,44,102,61,48,59,101,61,61,61,84,111,63,97,62,48,38,38,40,110,61,84,111,44,108,61,97,44,102,61,111,46,108,101,110,103,116,104,41,58,101,61,61,61,106,111,63,117,62,48,38,38,40,110,61,106,111,44,108,61,117,44,102,61,99,46,108,101,110,103,116,104,41,58,40,108,61,77,97,116,104,46,109,97,120,40,97,44,117,41,44,110,61,108,62,48,63,97,62,117,63,84,111,58,106,111,58,110,117,108,108,44,102,61,110,63,110,61,61,61,84,111,63,111,46,108,101,110,103,116,104,58,99,46,108,101,110,103,116,104,58,48,41,59,118,97,114,32,104,61,110,61,61,61,84,111,38,38,78,111,46,116,101,115,116,40,114,91,69,111,43,34,80,114,111,112,101,114,116,121,34,93,41,59,114,101,116,117,114,110,123,116,121,112,101,58,110,44,116,105,109,101,111,117,116,58,108,44,112,114,111,112,67,111,117,110,116,58,102,44,104,97,115,84,114,97,110,115,102,111,114,109,58,104,125,125,102,117,110,99,116,105,111,110,32,122,111,40,116,44,101,41,123,119,104,105,108,101,40,116,46,108,101,110,103,116,104,60,101,46,108,101,110,103,116,104,41,116,61,116,46,99,111,110,99,97,116,40,116,41,59,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,46,97,112,112,108,121,40,110,117,108,108,44,101,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,32,86,111,40,101,41,43,86,111,40,116,91,110,93,41,125,41,41,41,125,102,117,110,99,116,105,111,110,32,86,111,40,116,41,123,114,101,116,117,114,110,32,49,101,51,42,78,117,109,98,101,114,40,116,46,115,108,105,99,101,40,48,44,45,49,41,46,114,101,112,108,97,99,101,40,34,44,34,44,34,46,34,41,41,125,102,117,110,99,116,105,111,110,32,72,111,40,116,44,101,41,123,118,97,114,32,110,61,116,46,101,108,109,59,111,40,110,46,95,108,101,97,118,101,67,98,41,38,38,40,110,46,95,108,101,97,118,101,67,98,46,99,97,110,99,101,108,108,101,100,61,33,48,44,110,46,95,108,101,97,118,101,67,98,40,41,41,59,118,97,114,32,114,61,107,111,40,116,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,41,59,105,102,40,33,105,40,114,41,38,38,33,111,40,110,46,95,101,110,116,101,114,67,98,41,38,38,49,61,61,61,110,46,110,111,100,101,84,121,112,101,41,123,118,97,114,32,97,61,114,46,99,115,115,44,115,61,114,46,116,121,112,101,44,99,61,114,46,101,110,116,101,114,67,108,97,115,115,44,108,61,114,46,101,110,116,101,114,84,111,67,108,97,115,115,44,102,61,114,46,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,44,104,61,114,46,97,112,112,101,97,114,67,108,97,115,115,44,100,61,114,46,97,112,112,101,97,114,84,111,67,108,97,115,115,44,112,61,114,46,97,112,112,101,97,114,65,99,116,105,118,101,67,108,97,115,115,44,118,61,114,46,98,101,102,111,114,101,69,110,116,101,114,44,109,61,114,46,101,110,116,101,114,44,98,61,114,46,97,102,116,101,114,69,110,116,101,114,44,121,61,114,46,101,110,116,101,114,67,97,110,99,101,108,108,101,100,44,119,61,114,46,98,101,102,111,114,101,65,112,112,101,97,114,44,95,61,114,46,97,112,112,101,97,114,44,120,61,114,46,97,102,116,101,114,65,112,112,101,97,114,44,79,61,114,46,97,112,112,101,97,114,67,97,110,99,101,108,108,101,100,44,83,61,114,46,100,117,114,97,116,105,111,110,44,107,61,68,110,44,67,61,68,110,46,36,118,110,111,100,101,59,119,104,105,108,101,40,67,38,38,67,46,112,97,114,101,110,116,41,107,61,67,46,99,111,110,116,101,120,116,44,67,61,67,46,112,97,114,101,110,116,59,118,97,114,32,80,61,33,107,46,95,105,115,77,111,117,110,116,101,100,124,124,33,116,46,105,115,82,111,111,116,73,110,115,101,114,116,59,105,102,40,33,80,124,124,95,124,124,34,34,61,61,61,95,41,123,118,97,114,32,84,61,80,38,38,104,63,104,58,99,44,106,61,80,38,38,112,63,112,58,102,44,69,61,80,38,38,100,63,100,58,108,44,68,61,80,38,38,119,124,124,118,44,65,61,80,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,95,63,95,58,109,44,76,61,80,38,38,120,124,124,98,44,73,61,80,38,38,79,124,124,121,44,77,61,103,40,117,40,83,41,63,83,46,101,110,116,101,114,58,83,41,59,48,59,118,97,114,32,36,61,33,49,33,61,61,97,38,38,33,110,116,44,70,61,71,111,40,65,41,44,82,61,110,46,95,101,110,116,101,114,67,98,61,78,40,40,102,117,110,99,116,105,111,110,40,41,123,36,38,38,40,70,111,40,110,44,69,41,44,70,111,40,110,44,106,41,41,44,82,46,99,97,110,99,101,108,108,101,100,63,40,36,38,38,70,111,40,110,44,84,41,44,73,38,38,73,40,110,41,41,58,76,38,38,76,40,110,41,44,110,46,95,101,110,116,101,114,67,98,61,110,117,108,108,125,41,41,59,116,46,100,97,116,97,46,115,104,111,119,124,124,120,101,40,116,44,34,105,110,115,101,114,116,34,44,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,46,112,97,114,101,110,116,78,111,100,101,44,114,61,101,38,38,101,46,95,112,101,110,100,105,110,103,38,38,101,46,95,112,101,110,100,105,110,103,91,116,46,107,101,121,93,59,114,38,38,114,46,116,97,103,61,61,61,116,46,116,97,103,38,38,114,46,101,108,109,46,95,108,101,97,118,101,67,98,38,38,114,46,101,108,109,46,95,108,101,97,118,101,67,98,40,41,44,65,38,38,65,40,110,44,82,41,125,41,41,44,68,38,38,68,40,110,41,44,36,38,38,40,36,111,40,110,44,84,41,44,36,111,40,110,44,106,41,44,77,111,40,40,102,117,110,99,116,105,111,110,40,41,123,70,111,40,110,44,84,41,44,82,46,99,97,110,99,101,108,108,101,100,124,124,40,36,111,40,110,44,69,41,44,70,124,124,40,87,111,40,77,41,63,115,101,116,84,105,109,101,111,117,116,40,82,44,77,41,58,82,111,40,110,44,115,44,82,41,41,41,125,41,41,41,44,116,46,100,97,116,97,46,115,104,111,119,38,38,40,101,38,38,101,40,41,44,65,38,38,65,40,110,44,82,41,41,44,36,124,124,70,124,124,82,40,41,125,125,125,102,117,110,99,116,105,111,110,32,85,111,40,116,44,101,41,123,118,97,114,32,110,61,116,46,101,108,109,59,111,40,110,46,95,101,110,116,101,114,67,98,41,38,38,40,110,46,95,101,110,116,101,114,67,98,46,99,97,110,99,101,108,108,101,100,61,33,48,44,110,46,95,101,110,116,101,114,67,98,40,41,41,59,118,97,114,32,114,61,107,111,40,116,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,41,59,105,102,40,105,40,114,41,124,124,49,33,61,61,110,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,32,101,40,41,59,105,102,40,33,111,40,110,46,95,108,101,97,118,101,67,98,41,41,123,118,97,114,32,97,61,114,46,99,115,115,44,115,61,114,46,116,121,112,101,44,99,61,114,46,108,101,97,118,101,67,108,97,115,115,44,108,61,114,46,108,101,97,118,101,84,111,67,108,97,115,115,44,102,61,114,46,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,44,104,61,114,46,98,101,102,111,114,101,76,101,97,118,101,44,100,61,114,46,108,101,97,118,101,44,112,61,114,46,97,102,116,101,114,76,101,97,118,101,44,118,61,114,46,108,101,97,118,101,67,97,110,99,101,108,108,101,100,44,109,61,114,46,100,101,108,97,121,76,101,97,118,101,44,98,61,114,46,100,117,114,97,116,105,111,110,44,121,61,33,49,33,61,61,97,38,38,33,110,116,44,119,61,71,111,40,100,41,44,95,61,103,40,117,40,98,41,63,98,46,108,101,97,118,101,58,98,41,59,48,59,118,97,114,32,120,61,110,46,95,108,101,97,118,101,67,98,61,78,40,40,102,117,110,99,116,105,111,110,40,41,123,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,95,112,101,110,100,105,110,103,38,38,40,110,46,112,97,114,101,110,116,78,111,100,101,46,95,112,101,110,100,105,110,103,91,116,46,107,101,121,93,61,110,117,108,108,41,44,121,38,38,40,70,111,40,110,44,108,41,44,70,111,40,110,44,102,41,41,44,120,46,99,97,110,99,101,108,108,101,100,63,40,121,38,38,70,111,40,110,44,99,41,44,118,38,38,118,40,110,41,41,58,40,101,40,41,44,112,38,38,112,40,110,41,41,44,110,46,95,108,101,97,118,101,67,98,61,110,117,108,108,125,41,41,59,109,63,109,40,79,41,58,79,40,41,125,102,117,110,99,116,105,111,110,32,79,40,41,123,120,46,99,97,110,99,101,108,108,101,100,124,124,40,33,116,46,100,97,116,97,46,115,104,111,119,38,38,110,46,112,97,114,101,110,116,78,111,100,101,38,38,40,40,110,46,112,97,114,101,110,116,78,111,100,101,46,95,112,101,110,100,105,110,103,124,124,40,110,46,112,97,114,101,110,116,78,111,100,101,46,95,112,101,110,100,105,110,103,61,123,125,41,41,91,116,46,107,101,121,93,61,116,41,44,104,38,38,104,40,110,41,44,121,38,38,40,36,111,40,110,44,99,41,44,36,111,40,110,44,102,41,44,77,111,40,40,102,117,110,99,116,105,111,110,40,41,123,70,111,40,110,44,99,41,44,120,46,99,97,110,99,101,108,108,101,100,124,124,40,36,111,40,110,44,108,41,44,119,124,124,40,87,111,40,95,41,63,115,101,116,84,105,109,101,111,117,116,40,120,44,95,41,58,82,111,40,110,44,115,44,120,41,41,41,125,41,41,41,44,100,38,38,100,40,110,44,120,41,44,121,124,124,119,124,124,120,40,41,41,125,125,102,117,110,99,116,105,111,110,32,87,111,40,116,41,123,114,101,116,117,114,110,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,116,38,38,33,105,115,78,97,78,40,116,41,125,102,117,110,99,116,105,111,110,32,71,111,40,116,41,123,105,102,40,105,40,116,41,41,114,101,116,117,114,110,33,49,59,118,97,114,32,101,61,116,46,102,110,115,59,114,101,116,117,114,110,32,111,40,101,41,63,71,111,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,63,101,91,48,93,58,101,41,58,40,116,46,95,108,101,110,103,116,104,124,124,116,46,108,101,110,103,116,104,41,62,49,125,102,117,110,99,116,105,111,110,32,113,111,40,116,44,101,41,123,33,48,33,61,61,101,46,100,97,116,97,46,115,104,111,119,38,38,72,111,40,101,41,125,118,97,114,32,89,111,61,90,63,123,99,114,101,97,116,101,58,113,111,44,97,99,116,105,118,97,116,101,58,113,111,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,33,48,33,61,61,116,46,100,97,116,97,46,115,104,111,119,63,85,111,40,116,44,101,41,58,101,40,41,125,125,58,123,125,44,75,111,61,91,85,105,44,113,105,44,114,111,44,99,111,44,95,111,44,89,111,93,44,88,111,61,75,111,46,99,111,110,99,97,116,40,66,105,41,44,90,111,61,65,105,40,123,110,111,100,101,79,112,115,58,83,105,44,109,111,100,117,108,101,115,58,88,111,125,41,59,110,116,38,38,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,34,115,101,108,101,99,116,105,111,110,99,104,97,110,103,101,34,44,40,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,97,99,116,105,118,101,69,108,101,109,101,110,116,59,116,38,38,116,46,118,109,111,100,101,108,38,38,111,97,40,116,44,34,105,110,112,117,116,34,41,125,41,41,59,118,97,114,32,74,111,61,123,105,110,115,101,114,116,101,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,34,115,101,108,101,99,116,34,61,61,61,110,46,116,97,103,63,40,114,46,101,108,109,38,38,33,114,46,101,108,109,46,95,118,79,112,116,105,111,110,115,63,120,101,40,110,44,34,112,111,115,116,112,97,116,99,104,34,44,40,102,117,110,99,116,105,111,110,40,41,123,74,111,46,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,40,116,44,101,44,110,41,125,41,41,58,81,111,40,116,44,101,44,110,46,99,111,110,116,101,120,116,41,44,116,46,95,118,79,112,116,105,111,110,115,61,91,93,46,109,97,112,46,99,97,108,108,40,116,46,111,112,116,105,111,110,115,44,110,97,41,41,58,40,34,116,101,120,116,97,114,101,97,34,61,61,61,110,46,116,97,103,124,124,108,105,40,116,46,116,121,112,101,41,41,38,38,40,116,46,95,118,77,111,100,105,102,105,101,114,115,61,101,46,109,111,100,105,102,105,101,114,115,44,101,46,109,111,100,105,102,105,101,114,115,46,108,97,122,121,124,124,40,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,111,109,112,111,115,105,116,105,111,110,115,116,97,114,116,34,44,114,97,41,44,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,111,109,112,111,115,105,116,105,111,110,101,110,100,34,44,105,97,41,44,116,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,105,97,41,44,110,116,38,38,40,116,46,118,109,111,100,101,108,61,33,48,41,41,41,125,44,99,111,109,112,111,110,101,110,116,85,112,100,97,116,101,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,34,115,101,108,101,99,116,34,61,61,61,110,46,116,97,103,41,123,81,111,40,116,44,101,44,110,46,99,111,110,116,101,120,116,41,59,118,97,114,32,114,61,116,46,95,118,79,112,116,105,111,110,115,44,105,61,116,46,95,118,79,112,116,105,111,110,115,61,91,93,46,109,97,112,46,99,97,108,108,40,116,46,111,112,116,105,111,110,115,44,110,97,41,59,105,102,40,105,46,115,111,109,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,33,70,40,116,44,114,91,101,93,41,125,41,41,41,123,118,97,114,32,111,61,116,46,109,117,108,116,105,112,108,101,63,101,46,118,97,108,117,101,46,115,111,109,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,97,40,116,44,105,41,125,41,41,58,101,46,118,97,108,117,101,33,61,61,101,46,111,108,100,86,97,108,117,101,38,38,101,97,40,101,46,118,97,108,117,101,44,105,41,59,111,38,38,111,97,40,116,44,34,99,104,97,110,103,101,34,41,125,125,125,125,59,102,117,110,99,116,105,111,110,32,81,111,40,116,44,101,44,110,41,123,116,97,40,116,44,101,44,110,41,44,40,101,116,124,124,114,116,41,38,38,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,116,97,40,116,44,101,44,110,41,125,41,44,48,41,125,102,117,110,99,116,105,111,110,32,116,97,40,116,44,101,44,110,41,123,118,97,114,32,114,61,101,46,118,97,108,117,101,44,105,61,116,46,109,117,108,116,105,112,108,101,59,105,102,40,33,105,124,124,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,41,41,123,102,111,114,40,118,97,114,32,111,44,97,44,115,61,48,44,99,61,116,46,111,112,116,105,111,110,115,46,108,101,110,103,116,104,59,115,60,99,59,115,43,43,41,105,102,40,97,61,116,46,111,112,116,105,111,110,115,91,115,93,44,105,41,111,61,82,40,114,44,110,97,40,97,41,41,62,45,49,44,97,46,115,101,108,101,99,116,101,100,33,61,61,111,38,38,40,97,46,115,101,108,101,99,116,101,100,61,111,41,59,101,108,115,101,32,105,102,40,70,40,110,97,40,97,41,44,114,41,41,114,101,116,117,114,110,32,118,111,105,100,40,116,46,115,101,108,101,99,116,101,100,73,110,100,101,120,33,61,61,115,38,38,40,116,46,115,101,108,101,99,116,101,100,73,110,100,101,120,61,115,41,41,59,105,124,124,40,116,46,115,101,108,101,99,116,101,100,73,110,100,101,120,61,45,49,41,125,125,102,117,110,99,116,105,111,110,32,101,97,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,101,118,101,114,121,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,70,40,101,44,116,41,125,41,41,125,102,117,110,99,116,105,111,110,32,110,97,40,116,41,123,114,101,116,117,114,110,34,95,118,97,108,117,101,34,105,110,32,116,63,116,46,95,118,97,108,117,101,58,116,46,118,97,108,117,101,125,102,117,110,99,116,105,111,110,32,114,97,40,116,41,123,116,46,116,97,114,103,101,116,46,99,111,109,112,111,115,105,110,103,61,33,48,125,102,117,110,99,116,105,111,110,32,105,97,40,116,41,123,116,46,116,97,114,103,101,116,46,99,111,109,112,111,115,105,110,103,38,38,40,116,46,116,97,114,103,101,116,46,99,111,109,112,111,115,105,110,103,61,33,49,44,111,97,40,116,46,116,97,114,103,101,116,44,34,105,110,112,117,116,34,41,41,125,102,117,110,99,116,105,111,110,32,111,97,40,116,44,101,41,123,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,118,101,110,116,40,34,72,84,77,76,69,118,101,110,116,115,34,41,59,110,46,105,110,105,116,69,118,101,110,116,40,101,44,33,48,44,33,48,41,44,116,46,100,105,115,112,97,116,99,104,69,118,101,110,116,40,110,41,125,102,117,110,99,116,105,111,110,32,97,97,40,116,41,123,114,101,116,117,114,110,33,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,124,124,116,46,100,97,116,97,38,38,116,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,63,116,58,97,97,40,116,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,118,110,111,100,101,41,125,118,97,114,32,115,97,61,123,98,105,110,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,101,46,118,97,108,117,101,59,110,61,97,97,40,110,41,59,118,97,114,32,105,61,110,46,100,97,116,97,38,38,110,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,44,111,61,116,46,95,95,118,79,114,105,103,105,110,97,108,68,105,115,112,108,97,121,61,34,110,111,110,101,34,61,61,61,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,63,34,34,58,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,59,114,38,38,105,63,40,110,46,100,97,116,97,46,115,104,111,119,61,33,48,44,72,111,40,110,44,40,102,117,110,99,116,105,111,110,40,41,123,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,111,125,41,41,41,58,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,114,63,111,58,34,110,111,110,101,34,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,101,46,118,97,108,117,101,44,105,61,101,46,111,108,100,86,97,108,117,101,59,105,102,40,33,114,33,61,61,33,105,41,123,110,61,97,97,40,110,41,59,118,97,114,32,111,61,110,46,100,97,116,97,38,38,110,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,59,111,63,40,110,46,100,97,116,97,46,115,104,111,119,61,33,48,44,114,63,72,111,40,110,44,40,102,117,110,99,116,105,111,110,40,41,123,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,116,46,95,95,118,79,114,105,103,105,110,97,108,68,105,115,112,108,97,121,125,41,41,58,85,111,40,110,44,40,102,117,110,99,116,105,111,110,40,41,123,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,41,41,41,58,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,114,63,116,46,95,95,118,79,114,105,103,105,110,97,108,68,105,115,112,108,97,121,58,34,110,111,110,101,34,125,125,44,117,110,98,105,110,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,41,123,105,124,124,40,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,116,46,95,95,118,79,114,105,103,105,110,97,108,68,105,115,112,108,97,121,41,125,125,44,99,97,61,123,109,111,100,101,108,58,74,111,44,115,104,111,119,58,115,97,125,44,117,97,61,123,110,97,109,101,58,83,116,114,105,110,103,44,97,112,112,101,97,114,58,66,111,111,108,101,97,110,44,99,115,115,58,66,111,111,108,101,97,110,44,109,111,100,101,58,83,116,114,105,110,103,44,116,121,112,101,58,83,116,114,105,110,103,44,101,110,116,101,114,67,108,97,115,115,58,83,116,114,105,110,103,44,108,101,97,118,101,67,108,97,115,115,58,83,116,114,105,110,103,44,101,110,116,101,114,84,111,67,108,97,115,115,58,83,116,114,105,110,103,44,108,101,97,118,101,84,111,67,108,97,115,115,58,83,116,114,105,110,103,44,101,110,116,101,114,65,99,116,105,118,101,67,108,97,115,115,58,83,116,114,105,110,103,44,108,101,97,118,101,65,99,116,105,118,101,67,108,97,115,115,58,83,116,114,105,110,103,44,97,112,112,101,97,114,67,108,97,115,115,58,83,116,114,105,110,103,44,97,112,112,101,97,114,65,99,116,105,118,101,67,108,97,115,115,58,83,116,114,105,110,103,44,97,112,112,101,97,114,84,111,67,108,97,115,115,58,83,116,114,105,110,103,44,100,117,114,97,116,105,111,110,58,91,78,117,109,98,101,114,44,83,116,114,105,110,103,44,79,98,106,101,99,116,93,125,59,102,117,110,99,116,105,111,110,32,108,97,40,116,41,123,118,97,114,32,101,61,116,38,38,116,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,59,114,101,116,117,114,110,32,101,38,38,101,46,67,116,111,114,46,111,112,116,105,111,110,115,46,97,98,115,116,114,97,99,116,63,108,97,40,83,110,40,101,46,99,104,105,108,100,114,101,110,41,41,58,116,125,102,117,110,99,116,105,111,110,32,102,97,40,116,41,123,118,97,114,32,101,61,123,125,44,110,61,116,46,36,111,112,116,105,111,110,115,59,102,111,114,40,118,97,114,32,114,32,105,110,32,110,46,112,114,111,112,115,68,97,116,97,41,101,91,114,93,61,116,91,114,93,59,118,97,114,32,105,61,110,46,95,112,97,114,101,110,116,76,105,115,116,101,110,101,114,115,59,102,111,114,40,118,97,114,32,111,32,105,110,32,105,41,101,91,83,40,111,41,93,61,105,91,111,93,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,104,97,40,116,44,101,41,123,105,102,40,47,92,100,45,107,101,101,112,45,97,108,105,118,101,36,47,46,116,101,115,116,40,101,46,116,97,103,41,41,114,101,116,117,114,110,32,116,40,34,107,101,101,112,45,97,108,105,118,101,34,44,123,112,114,111,112,115,58,101,46,99,111,109,112,111,110,101,110,116,79,112,116,105,111,110,115,46,112,114,111,112,115,68,97,116,97,125,41,125,102,117,110,99,116,105,111,110,32,100,97,40,116,41,123,119,104,105,108,101,40,116,61,116,46,112,97,114,101,110,116,41,105,102,40,116,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,41,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,112,97,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,107,101,121,61,61,61,116,46,107,101,121,38,38,101,46,116,97,103,61,61,61,116,46,116,97,103,125,118,97,114,32,118,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,97,103,124,124,79,110,40,116,41,125,44,103,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,115,104,111,119,34,61,61,61,116,46,110,97,109,101,125,44,109,97,61,123,110,97,109,101,58,34,116,114,97,110,115,105,116,105,111,110,34,44,112,114,111,112,115,58,117,97,44,97,98,115,116,114,97,99,116,58,33,48,44,114,101,110,100,101,114,58,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,36,115,108,111,116,115,46,100,101,102,97,117,108,116,59,105,102,40,110,38,38,40,110,61,110,46,102,105,108,116,101,114,40,118,97,41,44,110,46,108,101,110,103,116,104,41,41,123,48,59,118,97,114,32,114,61,116,104,105,115,46,109,111,100,101,59,48,59,118,97,114,32,105,61,110,91,48,93,59,105,102,40,100,97,40,116,104,105,115,46,36,118,110,111,100,101,41,41,114,101,116,117,114,110,32,105,59,118,97,114,32,111,61,108,97,40,105,41,59,105,102,40,33,111,41,114,101,116,117,114,110,32,105,59,105,102,40,116,104,105,115,46,95,108,101,97,118,105,110,103,41,114,101,116,117,114,110,32,104,97,40,116,44,105,41,59,118,97,114,32,97,61,34,95,95,116,114,97,110,115,105,116,105,111,110,45,34,43,116,104,105,115,46,95,117,105,100,43,34,45,34,59,111,46,107,101,121,61,110,117,108,108,61,61,111,46,107,101,121,63,111,46,105,115,67,111,109,109,101,110,116,63,97,43,34,99,111,109,109,101,110,116,34,58,97,43,111,46,116,97,103,58,99,40,111,46,107,101,121,41,63,48,61,61,61,83,116,114,105,110,103,40,111,46,107,101,121,41,46,105,110,100,101,120,79,102,40,97,41,63,111,46,107,101,121,58,97,43,111,46,107,101,121,58,111,46,107,101,121,59,118,97,114,32,115,61,40,111,46,100,97,116,97,124,124,40,111,46,100,97,116,97,61,123,125,41,41,46,116,114,97,110,115,105,116,105,111,110,61,102,97,40,116,104,105,115,41,44,117,61,116,104,105,115,46,95,118,110,111,100,101,44,108,61,108,97,40,117,41,59,105,102,40,111,46,100,97,116,97,46,100,105,114,101,99,116,105,118,101,115,38,38,111,46,100,97,116,97,46,100,105,114,101,99,116,105,118,101,115,46,115,111,109,101,40,103,97,41,38,38,40,111,46,100,97,116,97,46,115,104,111,119,61,33,48,41,44,108,38,38,108,46,100,97,116,97,38,38,33,112,97,40,111,44,108,41,38,38,33,79,110,40,108,41,38,38,40,33,108,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,124,124,33,108,46,99,111,109,112,111,110,101,110,116,73,110,115,116,97,110,99,101,46,95,118,110,111,100,101,46,105,115,67,111,109,109,101,110,116,41,41,123,118,97,114,32,102,61,108,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,61,65,40,123,125,44,115,41,59,105,102,40,34,111,117,116,45,105,110,34,61,61,61,114,41,114,101,116,117,114,110,32,116,104,105,115,46,95,108,101,97,118,105,110,103,61,33,48,44,120,101,40,102,44,34,97,102,116,101,114,76,101,97,118,101,34,44,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,108,101,97,118,105,110,103,61,33,49,44,101,46,36,102,111,114,99,101,85,112,100,97,116,101,40,41,125,41,41,44,104,97,40,116,44,105,41,59,105,102,40,34,105,110,45,111,117,116,34,61,61,61,114,41,123,105,102,40,79,110,40,111,41,41,114,101,116,117,114,110,32,117,59,118,97,114,32,104,44,100,61,102,117,110,99,116,105,111,110,40,41,123,104,40,41,125,59,120,101,40,115,44,34,97,102,116,101,114,69,110,116,101,114,34,44,100,41,44,120,101,40,115,44,34,101,110,116,101,114,67,97,110,99,101,108,108,101,100,34,44,100,41,44,120,101,40,102,44,34,100,101,108,97,121,76,101,97,118,101,34,44,40,102,117,110,99,116,105,111,110,40,116,41,123,104,61,116,125,41,41,125,125,114,101,116,117,114,110,32,105,125,125,125,44,98,97,61,65,40,123,116,97,103,58,83,116,114,105,110,103,44,109,111,118,101,67,108,97,115,115,58,83,116,114,105,110,103,125,44,117,97,41,59,100,101,108,101,116,101,32,98,97,46,109,111,100,101,59,118,97,114,32,121,97,61,123,112,114,111,112,115,58,98,97,44,98,101,102,111,114,101,77,111,117,110,116,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,95,117,112,100,97,116,101,59,116,104,105,115,46,95,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,105,61,65,110,40,116,41,59,116,46,95,95,112,97,116,99,104,95,95,40,116,46,95,118,110,111,100,101,44,116,46,107,101,112,116,44,33,49,44,33,48,41,44,116,46,95,118,110,111,100,101,61,116,46,107,101,112,116,44,105,40,41,44,101,46,99,97,108,108,40,116,44,110,44,114,41,125,125,44,114,101,110,100,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,116,97,103,124,124,116,104,105,115,46,36,118,110,111,100,101,46,100,97,116,97,46,116,97,103,124,124,34,115,112,97,110,34,44,110,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,114,61,116,104,105,115,46,112,114,101,118,67,104,105,108,100,114,101,110,61,116,104,105,115,46,99,104,105,108,100,114,101,110,44,105,61,116,104,105,115,46,36,115,108,111,116,115,46,100,101,102,97,117,108,116,124,124,91,93,44,111,61,116,104,105,115,46,99,104,105,108,100,114,101,110,61,91,93,44,97,61,102,97,40,116,104,105,115,41,44,115,61,48,59,115,60,105,46,108,101,110,103,116,104,59,115,43,43,41,123,118,97,114,32,99,61,105,91,115,93,59,105,102,40,99,46,116,97,103,41,105,102,40,110,117,108,108,33,61,99,46,107,101,121,38,38,48,33,61,61,83,116,114,105,110,103,40,99,46,107,101,121,41,46,105,110,100,101,120,79,102,40,34,95,95,118,108,105,115,116,34,41,41,111,46,112,117,115,104,40,99,41,44,110,91,99,46,107,101,121,93,61,99,44,40,99,46,100,97,116,97,124,124,40,99,46,100,97,116,97,61,123,125,41,41,46,116,114,97,110,115,105,116,105,111,110,61,97,59,101,108,115,101,59,125,105,102,40,114,41,123,102,111,114,40,118,97,114,32,117,61,91,93,44,108,61,91,93,44,102,61,48,59,102,60,114,46,108,101,110,103,116,104,59,102,43,43,41,123,118,97,114,32,104,61,114,91,102,93,59,104,46,100,97,116,97,46,116,114,97,110,115,105,116,105,111,110,61,97,44,104,46,100,97,116,97,46,112,111,115,61,104,46,101,108,109,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,91,104,46,107,101,121,93,63,117,46,112,117,115,104,40,104,41,58,108,46,112,117,115,104,40,104,41,125,116,104,105,115,46,107,101,112,116,61,116,40,101,44,110,117,108,108,44,117,41,44,116,104,105,115,46,114,101,109,111,118,101,100,61,108,125,114,101,116,117,114,110,32,116,40,101,44,110,117,108,108,44,111,41,125,44,117,112,100,97,116,101,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,112,114,101,118,67,104,105,108,100,114,101,110,44,101,61,116,104,105,115,46,109,111,118,101,67,108,97,115,115,124,124,40,116,104,105,115,46,110,97,109,101,124,124,34,118,34,41,43,34,45,109,111,118,101,34,59,116,46,108,101,110,103,116,104,38,38,116,104,105,115,46,104,97,115,77,111,118,101,40,116,91,48,93,46,101,108,109,44,101,41,38,38,40,116,46,102,111,114,69,97,99,104,40,119,97,41,44,116,46,102,111,114,69,97,99,104,40,95,97,41,44,116,46,102,111,114,69,97,99,104,40,120,97,41,44,116,104,105,115,46,95,114,101,102,108,111,119,61,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,44,116,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,46,100,97,116,97,46,109,111,118,101,100,41,123,118,97,114,32,110,61,116,46,101,108,109,44,114,61,110,46,115,116,121,108,101,59,36,111,40,110,44,101,41,44,114,46,116,114,97,110,115,102,111,114,109,61,114,46,87,101,98,107,105,116,84,114,97,110,115,102,111,114,109,61,114,46,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,61,34,34,44,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,68,111,44,110,46,95,109,111,118,101,67,98,61,102,117,110,99,116,105,111,110,32,116,40,114,41,123,114,38,38,114,46,116,97,114,103,101,116,33,61,61,110,124,124,114,38,38,33,47,116,114,97,110,115,102,111,114,109,36,47,46,116,101,115,116,40,114,46,112,114,111,112,101,114,116,121,78,97,109,101,41,124,124,40,110,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,68,111,44,116,41,44,110,46,95,109,111,118,101,67,98,61,110,117,108,108,44,70,111,40,110,44,101,41,41,125,41,125,125,41,41,41,125,44,109,101,116,104,111,100,115,58,123,104,97,115,77,111,118,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,80,111,41,114,101,116,117,114,110,33,49,59,105,102,40,116,104,105,115,46,95,104,97,115,77,111,118,101,41,114,101,116,117,114,110,32,116,104,105,115,46,95,104,97,115,77,111,118,101,59,118,97,114,32,110,61,116,46,99,108,111,110,101,78,111,100,101,40,41,59,116,46,95,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,38,38,116,46,95,116,114,97,110,115,105,116,105,111,110,67,108,97,115,115,101,115,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,83,111,40,110,44,116,41,125,41,41,44,79,111,40,110,44,101,41,44,110,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,101,108,46,97,112,112,101,110,100,67,104,105,108,100,40,110,41,59,118,97,114,32,114,61,66,111,40,110,41,59,114,101,116,117,114,110,32,116,104,105,115,46,36,101,108,46,114,101,109,111,118,101,67,104,105,108,100,40,110,41,44,116,104,105,115,46,95,104,97,115,77,111,118,101,61,114,46,104,97,115,84,114,97,110,115,102,111,114,109,125,125,125,59,102,117,110,99,116,105,111,110,32,119,97,40,116,41,123,116,46,101,108,109,46,95,109,111,118,101,67,98,38,38,116,46,101,108,109,46,95,109,111,118,101,67,98,40,41,44,116,46,101,108,109,46,95,101,110,116,101,114,67,98,38,38,116,46,101,108,109,46,95,101,110,116,101,114,67,98,40,41,125,102,117,110,99,116,105,111,110,32,95,97,40,116,41,123,116,46,100,97,116,97,46,110,101,119,80,111,115,61,116,46,101,108,109,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,102,117,110,99,116,105,111,110,32,120,97,40,116,41,123,118,97,114,32,101,61,116,46,100,97,116,97,46,112,111,115,44,110,61,116,46,100,97,116,97,46,110,101,119,80,111,115,44,114,61,101,46,108,101,102,116,45,110,46,108,101,102,116,44,105,61,101,46,116,111,112,45,110,46,116,111,112,59,105,102,40,114,124,124,105,41,123,116,46,100,97,116,97,46,109,111,118,101,100,61,33,48,59,118,97,114,32,111,61,116,46,101,108,109,46,115,116,121,108,101,59,111,46,116,114,97,110,115,102,111,114,109,61,111,46,87,101,98,107,105,116,84,114,97,110,115,102,111,114,109,61,34,116,114,97,110,115,108,97,116,101,40,34,43,114,43,34,112,120,44,34,43,105,43,34,112,120,41,34,44,111,46,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,61,34,48,115,34,125,125,118,97,114,32,79,97,61,123,84,114,97,110,115,105,116,105,111,110,58,109,97,44,84,114,97,110,115,105,116,105,111,110,71,114,111,117,112,58,121,97,125,59,83,114,46,99,111,110,102,105,103,46,109,117,115,116,85,115,101,80,114,111,112,61,122,114,44,83,114,46,99,111,110,102,105,103,46,105,115,82,101,115,101,114,118,101,100,84,97,103,61,97,105,44,83,114,46,99,111,110,102,105,103,46,105,115,82,101,115,101,114,118,101,100,65,116,116,114,61,78,114,44,83,114,46,99,111,110,102,105,103,46,103,101,116,84,97,103,78,97,109,101,115,112,97,99,101,61,115,105,44,83,114,46,99,111,110,102,105,103,46,105,115,85,110,107,110,111,119,110,69,108,101,109,101,110,116,61,117,105,44,65,40,83,114,46,111,112,116,105,111,110,115,46,100,105,114,101,99,116,105,118,101,115,44,99,97,41,44,65,40,83,114,46,111,112,116,105,111,110,115,46,99,111,109,112,111,110,101,110,116,115,44,79,97,41,44,83,114,46,112,114,111,116,111,116,121,112,101,46,95,95,112,97,116,99,104,95,95,61,90,63,90,111,58,73,44,83,114,46,112,114,111,116,111,116,121,112,101,46,36,109,111,117,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,116,38,38,90,63,102,105,40,116,41,58,118,111,105,100,32,48,44,77,110,40,116,104,105,115,44,116,44,101,41,125,44,90,38,38,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,72,46,100,101,118,116,111,111,108,115,38,38,108,116,38,38,108,116,46,101,109,105,116,40,34,105,110,105,116,34,44,83,114,41,125,41,44,48,41,44,101,91,34,100,101,102,97,117,108,116,34,93,61,83,114,125,44,54,50,57,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,10,47,42,33,10,32,42,32,118,117,101,120,32,118,51,46,54,46,50,10,32,42,32,40,99,41,32,50,48,50,49,32,69,118,97,110,32,89,111,117,10,32,42,32,64,108,105,99,101,110,115,101,32,77,73,84,10,32,42,47,10,102,117,110,99,116,105,111,110,32,114,40,116,41,123,118,97,114,32,101,61,78,117,109,98,101,114,40,116,46,118,101,114,115,105,111,110,46,115,112,108,105,116,40,34,46,34,41,91,48,93,41,59,105,102,40,101,62,61,50,41,116,46,109,105,120,105,110,40,123,98,101,102,111,114,101,67,114,101,97,116,101,58,114,125,41,59,101,108,115,101,123,118,97,114,32,110,61,116,46,112,114,111,116,111,116,121,112,101,46,95,105,110,105,116,59,116,46,112,114,111,116,111,116,121,112,101,46,95,105,110,105,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,123,125,41,44,116,46,105,110,105,116,61,116,46,105,110,105,116,63,91,114,93,46,99,111,110,99,97,116,40,116,46,105,110,105,116,41,58,114,44,110,46,99,97,108,108,40,116,104,105,115,44,116,41,125,125,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,116,61,116,104,105,115,46,36,111,112,116,105,111,110,115,59,116,46,115,116,111,114,101,63,116,104,105,115,46,36,115,116,111,114,101,61,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,46,115,116,111,114,101,63,116,46,115,116,111,114,101,40,41,58,116,46,115,116,111,114,101,58,116,46,112,97,114,101,110,116,38,38,116,46,112,97,114,101,110,116,46,36,115,116,111,114,101,38,38,40,116,104,105,115,46,36,115,116,111,114,101,61,116,46,112,97,114,101,110,116,46,36,115,116,111,114,101,41,125,125,110,46,100,40,101,44,123,79,73,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,125,44,83,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,77,125,44,110,118,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,125,125,41,59,118,97,114,32,105,61,34,117,110,100,101,102,105,110,101,100,34,33,61,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,61,116,121,112,101,111,102,32,110,46,103,63,110,46,103,58,123,125,44,111,61,105,46,95,95,86,85,69,95,68,69,86,84,79,79,76,83,95,71,76,79,66,65,76,95,72,79,79,75,95,95,59,102,117,110,99,116,105,111,110,32,97,40,116,41,123,111,38,38,40,116,46,95,100,101,118,116,111,111,108,72,111,111,107,61,111,44,111,46,101,109,105,116,40,34,118,117,101,120,58,105,110,105,116,34,44,116,41,44,111,46,111,110,40,34,118,117,101,120,58,116,114,97,118,101,108,45,116,111,45,115,116,97,116,101,34,44,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,114,101,112,108,97,99,101,83,116,97,116,101,40,101,41,125,41,41,44,116,46,115,117,98,115,99,114,105,98,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,111,46,101,109,105,116,40,34,118,117,101,120,58,109,117,116,97,116,105,111,110,34,44,116,44,101,41,125,41,44,123,112,114,101,112,101,110,100,58,33,48,125,41,44,116,46,115,117,98,115,99,114,105,98,101,65,99,116,105,111,110,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,111,46,101,109,105,116,40,34,118,117,101,120,58,97,99,116,105,111,110,34,44,116,44,101,41,125,41,44,123,112,114,101,112,101,110,100,58,33,48,125,41,41,125,102,117,110,99,116,105,111,110,32,115,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,102,105,108,116,101,114,40,101,41,91,48,93,125,102,117,110,99,116,105,111,110,32,99,40,116,44,101,41,123,105,102,40,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,91,93,41,44,110,117,108,108,61,61,61,116,124,124,34,111,98,106,101,99,116,34,33,61,61,116,121,112,101,111,102,32,116,41,114,101,116,117,114,110,32,116,59,118,97,114,32,110,61,115,40,101,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,111,114,105,103,105,110,97,108,61,61,61,116,125,41,41,59,105,102,40,110,41,114,101,116,117,114,110,32,110,46,99,111,112,121,59,118,97,114,32,114,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,91,93,58,123,125,59,114,101,116,117,114,110,32,101,46,112,117,115,104,40,123,111,114,105,103,105,110,97,108,58,116,44,99,111,112,121,58,114,125,41,44,79,98,106,101,99,116,46,107,101,121,115,40,116,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,114,91,110,93,61,99,40,116,91,110,93,44,101,41,125,41,41,44,114,125,102,117,110,99,116,105,111,110,32,117,40,116,44,101,41,123,79,98,106,101,99,116,46,107,101,121,115,40,116,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,40,116,91,110,93,44,110,41,125,41,41,125,102,117,110,99,116,105,111,110,32,108,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,38,38,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,116,125,102,117,110,99,116,105,111,110,32,102,40,116,41,123,114,101,116,117,114,110,32,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,46,116,104,101,110,125,102,117,110,99,116,105,111,110,32,104,40,116,44,101,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,40,101,41,125,125,118,97,114,32,100,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,114,117,110,116,105,109,101,61,101,44,116,104,105,115,46,95,99,104,105,108,100,114,101,110,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,61,116,59,118,97,114,32,110,61,116,46,115,116,97,116,101,59,116,104,105,115,46,115,116,97,116,101,61,40,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,110,63,110,40,41,58,110,41,124,124,123,125,125,44,112,61,123,110,97,109,101,115,112,97,99,101,100,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,59,112,46,110,97,109,101,115,112,97,99,101,100,46,103,101,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,110,97,109,101,115,112,97,99,101,100,125,44,100,46,112,114,111,116,111,116,121,112,101,46,97,100,100,67,104,105,108,100,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,104,105,115,46,95,99,104,105,108,100,114,101,110,91,116,93,61,101,125,44,100,46,112,114,111,116,111,116,121,112,101,46,114,101,109,111,118,101,67,104,105,108,100,61,102,117,110,99,116,105,111,110,40,116,41,123,100,101,108,101,116,101,32,116,104,105,115,46,95,99,104,105,108,100,114,101,110,91,116,93,125,44,100,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,104,105,108,100,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,99,104,105,108,100,114,101,110,91,116,93,125,44,100,46,112,114,111,116,111,116,121,112,101,46,104,97,115,67,104,105,108,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,32,105,110,32,116,104,105,115,46,95,99,104,105,108,100,114,101,110,125,44,100,46,112,114,111,116,111,116,121,112,101,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,110,97,109,101,115,112,97,99,101,100,61,116,46,110,97,109,101,115,112,97,99,101,100,44,116,46,97,99,116,105,111,110,115,38,38,40,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,97,99,116,105,111,110,115,61,116,46,97,99,116,105,111,110,115,41,44,116,46,109,117,116,97,116,105,111,110,115,38,38,40,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,109,117,116,97,116,105,111,110,115,61,116,46,109,117,116,97,116,105,111,110,115,41,44,116,46,103,101,116,116,101,114,115,38,38,40,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,103,101,116,116,101,114,115,61,116,46,103,101,116,116,101,114,115,41,125,44,100,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,67,104,105,108,100,61,102,117,110,99,116,105,111,110,40,116,41,123,117,40,116,104,105,115,46,95,99,104,105,108,100,114,101,110,44,116,41,125,44,100,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,71,101,116,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,103,101,116,116,101,114,115,38,38,117,40,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,103,101,116,116,101,114,115,44,116,41,125,44,100,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,65,99,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,97,99,116,105,111,110,115,38,38,117,40,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,97,99,116,105,111,110,115,44,116,41,125,44,100,46,112,114,111,116,111,116,121,112,101,46,102,111,114,69,97,99,104,77,117,116,97,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,109,117,116,97,116,105,111,110,115,38,38,117,40,116,104,105,115,46,95,114,97,119,77,111,100,117,108,101,46,109,117,116,97,116,105,111,110,115,44,116,41,125,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,100,46,112,114,111,116,111,116,121,112,101,44,112,41,59,118,97,114,32,118,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,114,101,103,105,115,116,101,114,40,91,93,44,116,44,33,49,41,125,59,102,117,110,99,116,105,111,110,32,103,40,116,44,101,44,110,41,123,105,102,40,101,46,117,112,100,97,116,101,40,110,41,44,110,46,109,111,100,117,108,101,115,41,102,111,114,40,118,97,114,32,114,32,105,110,32,110,46,109,111,100,117,108,101,115,41,123,105,102,40,33,101,46,103,101,116,67,104,105,108,100,40,114,41,41,114,101,116,117,114,110,32,118,111,105,100,32,48,59,103,40,116,46,99,111,110,99,97,116,40,114,41,44,101,46,103,101,116,67,104,105,108,100,40,114,41,44,110,46,109,111,100,117,108,101,115,91,114,93,41,125,125,118,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,103,101,116,67,104,105,108,100,40,101,41,125,41,44,116,104,105,115,46,114,111,111,116,41,125,44,118,46,112,114,111,116,111,116,121,112,101,46,103,101,116,78,97,109,101,115,112,97,99,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,114,111,111,116,59,114,101,116,117,114,110,32,116,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,101,61,101,46,103,101,116,67,104,105,108,100,40,110,41,44,116,43,40,101,46,110,97,109,101,115,112,97,99,101,100,63,110,43,34,47,34,58,34,34,41,125,41,44,34,34,41,125,44,118,46,112,114,111,116,111,116,121,112,101,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,103,40,91,93,44,116,104,105,115,46,114,111,111,116,44,116,41,125,44,118,46,112,114,111,116,111,116,121,112,101,46,114,101,103,105,115,116,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,59,118,111,105,100,32,48,61,61,61,110,38,38,40,110,61,33,48,41,59,118,97,114,32,105,61,110,101,119,32,100,40,101,44,110,41,59,105,102,40,48,61,61,61,116,46,108,101,110,103,116,104,41,116,104,105,115,46,114,111,111,116,61,105,59,101,108,115,101,123,118,97,114,32,111,61,116,104,105,115,46,103,101,116,40,116,46,115,108,105,99,101,40,48,44,45,49,41,41,59,111,46,97,100,100,67,104,105,108,100,40,116,91,116,46,108,101,110,103,116,104,45,49,93,44,105,41,125,101,46,109,111,100,117,108,101,115,38,38,117,40,101,46,109,111,100,117,108,101,115,44,40,102,117,110,99,116,105,111,110,40,101,44,105,41,123,114,46,114,101,103,105,115,116,101,114,40,116,46,99,111,110,99,97,116,40,105,41,44,101,44,110,41,125,41,41,125,44,118,46,112,114,111,116,111,116,121,112,101,46,117,110,114,101,103,105,115,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,103,101,116,40,116,46,115,108,105,99,101,40,48,44,45,49,41,41,44,110,61,116,91,116,46,108,101,110,103,116,104,45,49,93,44,114,61,101,46,103,101,116,67,104,105,108,100,40,110,41,59,114,38,38,114,46,114,117,110,116,105,109,101,38,38,101,46,114,101,109,111,118,101,67,104,105,108,100,40,110,41,125,44,118,46,112,114,111,116,111,116,121,112,101,46,105,115,82,101,103,105,115,116,101,114,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,103,101,116,40,116,46,115,108,105,99,101,40,48,44,45,49,41,41,44,110,61,116,91,116,46,108,101,110,103,116,104,45,49,93,59,114,101,116,117,114,110,33,33,101,38,38,101,46,104,97,115,67,104,105,108,100,40,110,41,125,59,118,97,114,32,109,59,118,97,114,32,98,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,123,125,41,44,33,109,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,119,105,110,100,111,119,46,86,117,101,38,38,65,40,119,105,110,100,111,119,46,86,117,101,41,59,118,97,114,32,110,61,116,46,112,108,117,103,105,110,115,59,118,111,105,100,32,48,61,61,61,110,38,38,40,110,61,91,93,41,59,118,97,114,32,114,61,116,46,115,116,114,105,99,116,59,118,111,105,100,32,48,61,61,61,114,38,38,40,114,61,33,49,41,44,116,104,105,115,46,95,99,111,109,109,105,116,116,105,110,103,61,33,49,44,116,104,105,115,46,95,97,99,116,105,111,110,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,116,104,105,115,46,95,97,99,116,105,111,110,83,117,98,115,99,114,105,98,101,114,115,61,91,93,44,116,104,105,115,46,95,109,117,116,97,116,105,111,110,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,116,104,105,115,46,95,119,114,97,112,112,101,100,71,101,116,116,101,114,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,116,104,105,115,46,95,109,111,100,117,108,101,115,61,110,101,119,32,118,40,116,41,44,116,104,105,115,46,95,109,111,100,117,108,101,115,78,97,109,101,115,112,97,99,101,77,97,112,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,116,104,105,115,46,95,115,117,98,115,99,114,105,98,101,114,115,61,91,93,44,116,104,105,115,46,95,119,97,116,99,104,101,114,86,77,61,110,101,119,32,109,44,116,104,105,115,46,95,109,97,107,101,76,111,99,97,108,71,101,116,116,101,114,115,67,97,99,104,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,118,97,114,32,105,61,116,104,105,115,44,111,61,116,104,105,115,44,115,61,111,46,100,105,115,112,97,116,99,104,44,99,61,111,46,99,111,109,109,105,116,59,116,104,105,115,46,100,105,115,112,97,116,99,104,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,115,46,99,97,108,108,40,105,44,116,44,101,41,125,44,116,104,105,115,46,99,111,109,109,105,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,99,46,99,97,108,108,40,105,44,116,44,101,44,110,41,125,44,116,104,105,115,46,115,116,114,105,99,116,61,114,59,118,97,114,32,117,61,116,104,105,115,46,95,109,111,100,117,108,101,115,46,114,111,111,116,46,115,116,97,116,101,59,79,40,116,104,105,115,44,117,44,91,93,44,116,104,105,115,46,95,109,111,100,117,108,101,115,46,114,111,111,116,41,44,120,40,116,104,105,115,44,117,41,44,110,46,102,111,114,69,97,99,104,40,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,41,59,118,97,114,32,108,61,118,111,105,100,32,48,33,61,61,116,46,100,101,118,116,111,111,108,115,63,116,46,100,101,118,116,111,111,108,115,58,109,46,99,111,110,102,105,103,46,100,101,118,116,111,111,108,115,59,108,38,38,97,40,116,104,105,115,41,125,44,121,61,123,115,116,97,116,101,58,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,59,102,117,110,99,116,105,111,110,32,119,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,46,105,110,100,101,120,79,102,40,116,41,60,48,38,38,40,110,38,38,110,46,112,114,101,112,101,110,100,63,101,46,117,110,115,104,105,102,116,40,116,41,58,101,46,112,117,115,104,40,116,41,41,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,101,46,105,110,100,101,120,79,102,40,116,41,59,110,62,45,49,38,38,101,46,115,112,108,105,99,101,40,110,44,49,41,125,125,102,117,110,99,116,105,111,110,32,95,40,116,44,101,41,123,116,46,95,97,99,116,105,111,110,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,116,46,95,109,117,116,97,116,105,111,110,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,116,46,95,119,114,97,112,112,101,100,71,101,116,116,101,114,115,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,116,46,95,109,111,100,117,108,101,115,78,97,109,101,115,112,97,99,101,77,97,112,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,118,97,114,32,110,61,116,46,115,116,97,116,101,59,79,40,116,44,110,44,91,93,44,116,46,95,109,111,100,117,108,101,115,46,114,111,111,116,44,33,48,41,44,120,40,116,44,110,44,101,41,125,102,117,110,99,116,105,111,110,32,120,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,95,118,109,59,116,46,103,101,116,116,101,114,115,61,123,125,44,116,46,95,109,97,107,101,76,111,99,97,108,71,101,116,116,101,114,115,67,97,99,104,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,59,118,97,114,32,105,61,116,46,95,119,114,97,112,112,101,100,71,101,116,116,101,114,115,44,111,61,123,125,59,117,40,105,44,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,111,91,110,93,61,104,40,101,44,116,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,46,103,101,116,116,101,114,115,44,110,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,95,118,109,91,110,93,125,44,101,110,117,109,101,114,97,98,108,101,58,33,48,125,41,125,41,41,59,118,97,114,32,97,61,109,46,99,111,110,102,105,103,46,115,105,108,101,110,116,59,109,46,99,111,110,102,105,103,46,115,105,108,101,110,116,61,33,48,44,116,46,95,118,109,61,110,101,119,32,109,40,123,100,97,116,97,58,123,36,36,115,116,97,116,101,58,101,125,44,99,111,109,112,117,116,101,100,58,111,125,41,44,109,46,99,111,110,102,105,103,46,115,105,108,101,110,116,61,97,44,116,46,115,116,114,105,99,116,38,38,106,40,116,41,44,114,38,38,40,110,38,38,116,46,95,119,105,116,104,67,111,109,109,105,116,40,40,102,117,110,99,116,105,111,110,40,41,123,114,46,95,100,97,116,97,46,36,36,115,116,97,116,101,61,110,117,108,108,125,41,41,44,109,46,110,101,120,116,84,105,99,107,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,46,36,100,101,115,116,114,111,121,40,41,125,41,41,41,125,102,117,110,99,116,105,111,110,32,79,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,61,33,110,46,108,101,110,103,116,104,44,97,61,116,46,95,109,111,100,117,108,101,115,46,103,101,116,78,97,109,101,115,112,97,99,101,40,110,41,59,105,102,40,114,46,110,97,109,101,115,112,97,99,101,100,38,38,40,116,46,95,109,111,100,117,108,101,115,78,97,109,101,115,112,97,99,101,77,97,112,91,97,93,44,116,46,95,109,111,100,117,108,101,115,78,97,109,101,115,112,97,99,101,77,97,112,91,97,93,61,114,41,44,33,111,38,38,33,105,41,123,118,97,114,32,115,61,69,40,101,44,110,46,115,108,105,99,101,40,48,44,45,49,41,41,44,99,61,110,91,110,46,108,101,110,103,116,104,45,49,93,59,116,46,95,119,105,116,104,67,111,109,109,105,116,40,40,102,117,110,99,116,105,111,110,40,41,123,109,46,115,101,116,40,115,44,99,44,114,46,115,116,97,116,101,41,125,41,41,125,118,97,114,32,117,61,114,46,99,111,110,116,101,120,116,61,83,40,116,44,97,44,110,41,59,114,46,102,111,114,69,97,99,104,77,117,116,97,116,105,111,110,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,61,97,43,110,59,67,40,116,44,114,44,101,44,117,41,125,41,41,44,114,46,102,111,114,69,97,99,104,65,99,116,105,111,110,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,61,101,46,114,111,111,116,63,110,58,97,43,110,44,105,61,101,46,104,97,110,100,108,101,114,124,124,101,59,80,40,116,44,114,44,105,44,117,41,125,41,41,44,114,46,102,111,114,69,97,99,104,71,101,116,116,101,114,40,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,114,61,97,43,110,59,84,40,116,44,114,44,101,44,117,41,125,41,41,44,114,46,102,111,114,69,97,99,104,67,104,105,108,100,40,40,102,117,110,99,116,105,111,110,40,114,44,111,41,123,79,40,116,44,101,44,110,46,99,111,110,99,97,116,40,111,41,44,114,44,105,41,125,41,41,125,102,117,110,99,116,105,111,110,32,83,40,116,44,101,44,110,41,123,118,97,114,32,114,61,34,34,61,61,61,101,44,105,61,123,100,105,115,112,97,116,99,104,58,114,63,116,46,100,105,115,112,97,116,99,104,58,102,117,110,99,116,105,111,110,40,110,44,114,44,105,41,123,118,97,114,32,111,61,68,40,110,44,114,44,105,41,44,97,61,111,46,112,97,121,108,111,97,100,44,115,61,111,46,111,112,116,105,111,110,115,44,99,61,111,46,116,121,112,101,59,114,101,116,117,114,110,32,115,38,38,115,46,114,111,111,116,124,124,40,99,61,101,43,99,41,44,116,46,100,105,115,112,97,116,99,104,40,99,44,97,41,125,44,99,111,109,109,105,116,58,114,63,116,46,99,111,109,109,105,116,58,102,117,110,99,116,105,111,110,40,110,44,114,44,105,41,123,118,97,114,32,111,61,68,40,110,44,114,44,105,41,44,97,61,111,46,112,97,121,108,111,97,100,44,115,61,111,46,111,112,116,105,111,110,115,44,99,61,111,46,116,121,112,101,59,115,38,38,115,46,114,111,111,116,124,124,40,99,61,101,43,99,41,44,116,46,99,111,109,109,105,116,40,99,44,97,44,115,41,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,105,101,115,40,105,44,123,103,101,116,116,101,114,115,58,123,103,101,116,58,114,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,103,101,116,116,101,114,115,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,40,116,44,101,41,125,125,44,115,116,97,116,101,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,40,116,46,115,116,97,116,101,44,110,41,125,125,125,41,44,105,125,102,117,110,99,116,105,111,110,32,107,40,116,44,101,41,123,105,102,40,33,116,46,95,109,97,107,101,76,111,99,97,108,71,101,116,116,101,114,115,67,97,99,104,101,91,101,93,41,123,118,97,114,32,110,61,123,125,44,114,61,101,46,108,101,110,103,116,104,59,79,98,106,101,99,116,46,107,101,121,115,40,116,46,103,101,116,116,101,114,115,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,105,41,123,105,102,40,105,46,115,108,105,99,101,40,48,44,114,41,61,61,61,101,41,123,118,97,114,32,111,61,105,46,115,108,105,99,101,40,114,41,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,110,44,111,44,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,103,101,116,116,101,114,115,91,105,93,125,44,101,110,117,109,101,114,97,98,108,101,58,33,48,125,41,125,125,41,41,44,116,46,95,109,97,107,101,76,111,99,97,108,71,101,116,116,101,114,115,67,97,99,104,101,91,101,93,61,110,125,114,101,116,117,114,110,32,116,46,95,109,97,107,101,76,111,99,97,108,71,101,116,116,101,114,115,67,97,99,104,101,91,101,93,125,102,117,110,99,116,105,111,110,32,67,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,46,95,109,117,116,97,116,105,111,110,115,91,101,93,124,124,40,116,46,95,109,117,116,97,116,105,111,110,115,91,101,93,61,91,93,41,59,105,46,112,117,115,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,110,46,99,97,108,108,40,116,44,114,46,115,116,97,116,101,44,101,41,125,41,41,125,102,117,110,99,116,105,111,110,32,80,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,116,46,95,97,99,116,105,111,110,115,91,101,93,124,124,40,116,46,95,97,99,116,105,111,110,115,91,101,93,61,91,93,41,59,105,46,112,117,115,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,105,61,110,46,99,97,108,108,40,116,44,123,100,105,115,112,97,116,99,104,58,114,46,100,105,115,112,97,116,99,104,44,99,111,109,109,105,116,58,114,46,99,111,109,109,105,116,44,103,101,116,116,101,114,115,58,114,46,103,101,116,116,101,114,115,44,115,116,97,116,101,58,114,46,115,116,97,116,101,44,114,111,111,116,71,101,116,116,101,114,115,58,116,46,103,101,116,116,101,114,115,44,114,111,111,116,83,116,97,116,101,58,116,46,115,116,97,116,101,125,44,101,41,59,114,101,116,117,114,110,32,102,40,105,41,124,124,40,105,61,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,105,41,41,44,116,46,95,100,101,118,116,111,111,108,72,111,111,107,63,105,46,99,97,116,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,116,46,95,100,101,118,116,111,111,108,72,111,111,107,46,101,109,105,116,40,34,118,117,101,120,58,101,114,114,111,114,34,44,101,41,44,101,125,41,41,58,105,125,41,41,125,102,117,110,99,116,105,111,110,32,84,40,116,44,101,44,110,44,114,41,123,116,46,95,119,114,97,112,112,101,100,71,101,116,116,101,114,115,91,101,93,124,124,40,116,46,95,119,114,97,112,112,101,100,71,101,116,116,101,114,115,91,101,93,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,114,46,115,116,97,116,101,44,114,46,103,101,116,116,101,114,115,44,116,46,115,116,97,116,101,44,116,46,103,101,116,116,101,114,115,41,125,41,125,102,117,110,99,116,105,111,110,32,106,40,116,41,123,116,46,95,118,109,46,36,119,97,116,99,104,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,100,97,116,97,46,36,36,115,116,97,116,101,125,41,44,40,102,117,110,99,116,105,111,110,40,41,123,48,125,41,44,123,100,101,101,112,58,33,48,44,115,121,110,99,58,33,48,125,41,125,102,117,110,99,116,105,111,110,32,69,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,114,101,100,117,99,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,91,101,93,125,41,44,116,41,125,102,117,110,99,116,105,111,110,32,68,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,108,40,116,41,38,38,116,46,116,121,112,101,38,38,40,110,61,101,44,101,61,116,44,116,61,116,46,116,121,112,101,41,44,123,116,121,112,101,58,116,44,112,97,121,108,111,97,100,58,101,44,111,112,116,105,111,110,115,58,110,125,125,102,117,110,99,116,105,111,110,32,65,40,116,41,123,109,38,38,116,61,61,61,109,124,124,40,109,61,116,44,114,40,109,41,41,125,121,46,115,116,97,116,101,46,103,101,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,118,109,46,95,100,97,116,97,46,36,36,115,116,97,116,101,125,44,121,46,115,116,97,116,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,48,125,44,98,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,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,44,105,61,68,40,116,44,101,44,110,41,44,111,61,105,46,116,121,112,101,44,97,61,105,46,112,97,121,108,111,97,100,44,115,61,40,105,46,111,112,116,105,111,110,115,44,123,116,121,112,101,58,111,44,112,97,121,108,111,97,100,58,97,125,41,44,99,61,116,104,105,115,46,95,109,117,116,97,116,105,111,110,115,91,111,93,59,99,38,38,40,116,104,105,115,46,95,119,105,116,104,67,111,109,109,105,116,40,40,102,117,110,99,116,105,111,110,40,41,123,99,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,116,40,97,41,125,41,41,125,41,41,44,116,104,105,115,46,95,115,117,98,115,99,114,105,98,101,114,115,46,115,108,105,99,101,40,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,115,44,114,46,115,116,97,116,101,41,125,41,41,41,125,44,98,46,112,114,111,116,111,116,121,112,101,46,100,105,115,112,97,116,99,104,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,44,114,61,68,40,116,44,101,41,44,105,61,114,46,116,121,112,101,44,111,61,114,46,112,97,121,108,111,97,100,44,97,61,123,116,121,112,101,58,105,44,112,97,121,108,111,97,100,58,111,125,44,115,61,116,104,105,115,46,95,97,99,116,105,111,110,115,91,105,93,59,105,102,40,115,41,123,116,114,121,123,116,104,105,115,46,95,97,99,116,105,111,110,83,117,98,115,99,114,105,98,101,114,115,46,115,108,105,99,101,40,41,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,98,101,102,111,114,101,125,41,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,98,101,102,111,114,101,40,97,44,110,46,115,116,97,116,101,41,125,41,41,125,99,97,116,99,104,40,117,41,123,48,125,118,97,114,32,99,61,115,46,108,101,110,103,116,104,62,49,63,80,114,111,109,105,115,101,46,97,108,108,40,115,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,111,41,125,41,41,41,58,115,91,48,93,40,111,41,59,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,99,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,101,41,123,116,114,121,123,110,46,95,97,99,116,105,111,110,83,117,98,115,99,114,105,98,101,114,115,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,97,102,116,101,114,125,41,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,97,102,116,101,114,40,97,44,110,46,115,116,97,116,101,41,125,41,41,125,99,97,116,99,104,40,117,41,123,48,125,116,40,101,41,125,41,44,40,102,117,110,99,116,105,111,110,40,116,41,123,116,114,121,123,110,46,95,97,99,116,105,111,110,83,117,98,115,99,114,105,98,101,114,115,46,102,105,108,116,101,114,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,101,114,114,111,114,125,41,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,101,114,114,111,114,40,97,44,110,46,115,116,97,116,101,44,116,41,125,41,41,125,99,97,116,99,104,40,117,41,123,48,125,101,40,116,41,125,41,41,125,41,41,125,125,44,98,46,112,114,111,116,111,116,121,112,101,46,115,117,98,115,99,114,105,98,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,119,40,116,44,116,104,105,115,46,95,115,117,98,115,99,114,105,98,101,114,115,44,101,41,125,44,98,46,112,114,111,116,111,116,121,112,101,46,115,117,98,115,99,114,105,98,101,65,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,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,63,123,98,101,102,111,114,101,58,116,125,58,116,59,114,101,116,117,114,110,32,119,40,110,44,116,104,105,115,46,95,97,99,116,105,111,110,83,117,98,115,99,114,105,98,101,114,115,44,101,41,125,44,98,46,112,114,111,116,111,116,121,112,101,46,119,97,116,99,104,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,104,105,115,59,114,101,116,117,114,110,32,116,104,105,115,46,95,119,97,116,99,104,101,114,86,77,46,36,119,97,116,99,104,40,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,114,46,115,116,97,116,101,44,114,46,103,101,116,116,101,114,115,41,125,41,44,101,44,110,41,125,44,98,46,112,114,111,116,111,116,121,112,101,46,114,101,112,108,97,99,101,83,116,97,116,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,119,105,116,104,67,111,109,109,105,116,40,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,118,109,46,95,100,97,116,97,46,36,36,115,116,97,116,101,61,116,125,41,41,125,44,98,46,112,114,111,116,111,116,121,112,101,46,114,101,103,105,115,116,101,114,77,111,100,117,108,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,111,105,100,32,48,61,61,61,110,38,38,40,110,61,123,125,41,44,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,38,38,40,116,61,91,116,93,41,44,116,104,105,115,46,95,109,111,100,117,108,101,115,46,114,101,103,105,115,116,101,114,40,116,44,101,41,44,79,40,116,104,105,115,44,116,104,105,115,46,115,116,97,116,101,44,116,44,116,104,105,115,46,95,109,111,100,117,108,101,115,46,103,101,116,40,116,41,44,110,46,112,114,101,115,101,114,118,101,83,116,97,116,101,41,44,120,40,116,104,105,115,44,116,104,105,115,46,115,116,97,116,101,41,125,44,98,46,112,114,111,116,111,116,121,112,101,46,117,110,114,101,103,105,115,116,101,114,77,111,100,117,108,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,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,116,38,38,40,116,61,91,116,93,41,44,116,104,105,115,46,95,109,111,100,117,108,101,115,46,117,110,114,101,103,105,115,116,101,114,40,116,41,44,116,104,105,115,46,95,119,105,116,104,67,111,109,109,105,116,40,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,69,40,101,46,115,116,97,116,101,44,116,46,115,108,105,99,101,40,48,44,45,49,41,41,59,109,46,100,101,108,101,116,101,40,110,44,116,91,116,46,108,101,110,103,116,104,45,49,93,41,125,41,41,44,95,40,116,104,105,115,41,125,44,98,46,112,114,111,116,111,116,121,112,101,46,104,97,115,77,111,100,117,108,101,61,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,61,116,121,112,101,111,102,32,116,38,38,40,116,61,91,116,93,41,44,116,104,105,115,46,95,109,111,100,117,108,101,115,46,105,115,82,101,103,105,115,116,101,114,101,100,40,116,41,125,44,98,46,112,114,111,116,111,116,121,112,101,46,104,111,116,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,109,111,100,117,108,101,115,46,117,112,100,97,116,101,40,116,41,44,95,40,116,104,105,115,44,33,48,41,125,44,98,46,112,114,111,116,111,116,121,112,101,46,95,119,105,116,104,67,111,109,109,105,116,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,99,111,109,109,105,116,116,105,110,103,59,116,104,105,115,46,95,99,111,109,109,105,116,116,105,110,103,61,33,48,44,116,40,41,44,116,104,105,115,46,95,99,111,109,109,105,116,116,105,110,103,61,101,125,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,105,101,115,40,98,46,112,114,111,116,111,116,121,112,101,44,121,41,59,118,97,114,32,76,61,66,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,123,125,59,114,101,116,117,114,110,32,82,40,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,101,46,107,101,121,44,105,61,101,46,118,97,108,59,110,91,114,93,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,44,110,61,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,59,105,102,40,116,41,123,118,97,114,32,114,61,122,40,116,104,105,115,46,36,115,116,111,114,101,44,34,109,97,112,83,116,97,116,101,34,44,116,41,59,105,102,40,33,114,41,114,101,116,117,114,110,59,101,61,114,46,99,111,110,116,101,120,116,46,115,116,97,116,101,44,110,61,114,46,99,111,110,116,101,120,116,46,103,101,116,116,101,114,115,125,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,105,63,105,46,99,97,108,108,40,116,104,105,115,44,101,44,110,41,58,101,91,105,93,125,44,110,91,114,93,46,118,117,101,120,61,33,48,125,41,41,44,110,125,41,41,44,73,61,66,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,123,125,59,114,101,116,117,114,110,32,82,40,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,101,46,107,101,121,44,105,61,101,46,118,97,108,59,110,91,114,93,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,91,93,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,101,91,110,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,118,97,114,32,114,61,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,59,105,102,40,116,41,123,118,97,114,32,111,61,122,40,116,104,105,115,46,36,115,116,111,114,101,44,34,109,97,112,77,117,116,97,116,105,111,110,115,34,44,116,41,59,105,102,40,33,111,41,114,101,116,117,114,110,59,114,61,111,46,99,111,110,116,101,120,116,46,99,111,109,109,105,116,125,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,105,63,105,46,97,112,112,108,121,40,116,104,105,115,44,91,114,93,46,99,111,110,99,97,116,40,101,41,41,58,114,46,97,112,112,108,121,40,116,104,105,115,46,36,115,116,111,114,101,44,91,105,93,46,99,111,110,99,97,116,40,101,41,41,125,125,41,41,44,110,125,41,41,44,77,61,66,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,123,125,59,114,101,116,117,114,110,32,82,40,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,101,46,107,101,121,44,105,61,101,46,118,97,108,59,105,61,116,43,105,44,110,91,114,93,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,124,124,122,40,116,104,105,115,46,36,115,116,111,114,101,44,34,109,97,112,71,101,116,116,101,114,115,34,44,116,41,41,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,105,93,125,44,110,91,114,93,46,118,117,101,120,61,33,48,125,41,41,44,110,125,41,41,44,36,61,66,40,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,123,125,59,114,101,116,117,114,110,32,82,40,101,41,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,101,46,107,101,121,44,105,61,101,46,118,97,108,59,110,91,114,93,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,91,93,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,101,91,110,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,118,97,114,32,114,61,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,59,105,102,40,116,41,123,118,97,114,32,111,61,122,40,116,104,105,115,46,36,115,116,111,114,101,44,34,109,97,112,65,99,116,105,111,110,115,34,44,116,41,59,105,102,40,33,111,41,114,101,116,117,114,110,59,114,61,111,46,99,111,110,116,101,120,116,46,100,105,115,112,97,116,99,104,125,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,105,63,105,46,97,112,112,108,121,40,116,104,105,115,44,91,114,93,46,99,111,110,99,97,116,40,101,41,41,58,114,46,97,112,112,108,121,40,116,104,105,115,46,36,115,116,111,114,101,44,91,105,93,46,99,111,110,99,97,116,40,101,41,41,125,125,41,41,44,110,125,41,41,44,70,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,109,97,112,83,116,97,116,101,58,76,46,98,105,110,100,40,110,117,108,108,44,116,41,44,109,97,112,71,101,116,116,101,114,115,58,77,46,98,105,110,100,40,110,117,108,108,44,116,41,44,109,97,112,77,117,116,97,116,105,111,110,115,58,73,46,98,105,110,100,40,110,117,108,108,44,116,41,44,109,97,112,65,99,116,105,111,110,115,58,36,46,98,105,110,100,40,110,117,108,108,44,116,41,125,125,59,102,117,110,99,116,105,111,110,32,82,40,116,41,123,114,101,116,117,114,110,32,78,40,116,41,63,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,116,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,107,101,121,58,116,44,118,97,108,58,116,125,125,41,41,58,79,98,106,101,99,116,46,107,101,121,115,40,116,41,46,109,97,112,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,107,101,121,58,101,44,118,97,108,58,116,91,101,93,125,125,41,41,58,91,93,125,102,117,110,99,116,105,111,110,32,78,40,116,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,124,124,108,40,116,41,125,102,117,110,99,116,105,111,110,32,66,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,110,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,61,116,121,112,101,111,102,32,101,63,40,110,61,101,44,101,61,34,34,41,58,34,47,34,33,61,61,101,46,99,104,97,114,65,116,40,101,46,108,101,110,103,116,104,45,49,41,38,38,40,101,43,61,34,47,34,41,44,116,40,101,44,110,41,125,125,102,117,110,99,116,105,111,110,32,122,40,116,44,101,44,110,41,123,118,97,114,32,114,61,116,46,95,109,111,100,117,108,101,115,78,97,109,101,115,112,97,99,101,77,97,112,91,110,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,86,40,116,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,123,125,41,59,118,97,114,32,101,61,116,46,99,111,108,108,97,112,115,101,100,59,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,33,48,41,59,118,97,114,32,110,61,116,46,102,105,108,116,101,114,59,118,111,105,100,32,48,61,61,61,110,38,38,40,110,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,33,48,125,41,59,118,97,114,32,114,61,116,46,116,114,97,110,115,102,111,114,109,101,114,59,118,111,105,100,32,48,61,61,61,114,38,38,40,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,41,59,118,97,114,32,105,61,116,46,109,117,116,97,116,105,111,110,84,114,97,110,115,102,111,114,109,101,114,59,118,111,105,100,32,48,61,61,61,105,38,38,40,105,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,41,59,118,97,114,32,111,61,116,46,97,99,116,105,111,110,70,105,108,116,101,114,59,118,111,105,100,32,48,61,61,61,111,38,38,40,111,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,33,48,125,41,59,118,97,114,32,97,61,116,46,97,99,116,105,111,110,84,114,97,110,115,102,111,114,109,101,114,59,118,111,105,100,32,48,61,61,61,97,38,38,40,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,41,59,118,97,114,32,115,61,116,46,108,111,103,77,117,116,97,116,105,111,110,115,59,118,111,105,100,32,48,61,61,61,115,38,38,40,115,61,33,48,41,59,118,97,114,32,117,61,116,46,108,111,103,65,99,116,105,111,110,115,59,118,111,105,100,32,48,61,61,61,117,38,38,40,117,61,33,48,41,59,118,97,114,32,108,61,116,46,108,111,103,103,101,114,59,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,108,38,38,40,108,61,99,111,110,115,111,108,101,41,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,102,61,99,40,116,46,115,116,97,116,101,41,59,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,108,38,38,40,115,38,38,116,46,115,117,98,115,99,114,105,98,101,40,40,102,117,110,99,116,105,111,110,40,116,44,111,41,123,118,97,114,32,97,61,99,40,111,41,59,105,102,40,110,40,116,44,102,44,97,41,41,123,118,97,114,32,115,61,87,40,41,44,117,61,105,40,116,41,44,104,61,34,109,117,116,97,116,105,111,110,32,34,43,116,46,116,121,112,101,43,115,59,72,40,108,44,104,44,101,41,44,108,46,108,111,103,40,34,37,99,32,112,114,101,118,32,115,116,97,116,101,34,44,34,99,111,108,111,114,58,32,35,57,69,57,69,57,69,59,32,102,111,110,116,45,119,101,105,103,104,116,58,32,98,111,108,100,34,44,114,40,102,41,41,44,108,46,108,111,103,40,34,37,99,32,109,117,116,97,116,105,111,110,34,44,34,99,111,108,111,114,58,32,35,48,51,65,57,70,52,59,32,102,111,110,116,45,119,101,105,103,104,116,58,32,98,111,108,100,34,44,117,41,44,108,46,108,111,103,40,34,37,99,32,110,101,120,116,32,115,116,97,116,101,34,44,34,99,111,108,111,114,58,32,35,52,67,65,70,53,48,59,32,102,111,110,116,45,119,101,105,103,104,116,58,32,98,111,108,100,34,44,114,40,97,41,41,44,85,40,108,41,125,102,61,97,125,41,41,44,117,38,38,116,46,115,117,98,115,99,114,105,98,101,65,99,116,105,111,110,40,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,111,40,116,44,110,41,41,123,118,97,114,32,114,61,87,40,41,44,105,61,97,40,116,41,44,115,61,34,97,99,116,105,111,110,32,34,43,116,46,116,121,112,101,43,114,59,72,40,108,44,115,44,101,41,44,108,46,108,111,103,40,34,37,99,32,97,99,116,105,111,110,34,44,34,99,111,108,111,114,58,32,35,48,51,65,57,70,52,59,32,102,111,110,116,45,119,101,105,103,104,116,58,32,98,111,108,100,34,44,105,41,44,85,40,108,41,125,125,41,41,41,125,125,102,117,110,99,116,105,111,110,32,72,40,116,44,101,44,110,41,123,118,97,114,32,114,61,110,63,116,46,103,114,111,117,112,67,111,108,108,97,112,115,101,100,58,116,46,103,114,111,117,112,59,116,114,121,123,114,46,99,97,108,108,40,116,44,101,41,125,99,97,116,99,104,40,105,41,123,116,46,108,111,103,40,101,41,125,125,102,117,110,99,116,105,111,110,32,85,40,116,41,123,116,114,121,123,116,46,103,114,111,117,112,69,110,100,40,41,125,99,97,116,99,104,40,101,41,123,116,46,108,111,103,40,34,226,128,148,226,128,148,32,108,111,103,32,101,110,100,32,226,128,148,226,128,148,34,41,125,125,102,117,110,99,116,105,111,110,32,87,40,41,123,118,97,114,32,116,61,110,101,119,32,68,97,116,101,59,114,101,116,117,114,110,34,32,64,32,34,43,113,40,116,46,103,101,116,72,111,117,114,115,40,41,44,50,41,43,34,58,34,43,113,40,116,46,103,101,116,77,105,110,117,116,101,115,40,41,44,50,41,43,34,58,34,43,113,40,116,46,103,101,116,83,101,99,111,110,100,115,40,41,44,50,41,43,34,46,34,43,113,40,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,44,51,41,125,102,117,110,99,116,105,111,110,32,71,40,116,44,101,41,123,114,101,116,117,114,110,32,110,101,119,32,65,114,114,97,121,40,101,43,49,41,46,106,111,105,110,40,116,41,125,102,117,110,99,116,105,111,110,32,113,40,116,44,101,41,123,114,101,116,117,114,110,32,71,40,34,48,34,44,101,45,116,46,116,111,83,116,114,105,110,103,40,41,46,108,101,110,103,116,104,41,43,116,125,118,97,114,32,89,61,123,83,116,111,114,101,58,98,44,105,110,115,116,97,108,108,58,65,44,118,101,114,115,105,111,110,58,34,51,46,54,46,50,34,44,109,97,112,83,116,97,116,101,58,76,44,109,97,112,77,117,116,97,116,105,111,110,115,58,73,44,109,97,112,71,101,116,116,101,114,115,58,77,44,109,97,112,65,99,116,105,111,110,115,58,36,44,99,114,101,97,116,101,78,97,109,101,115,112,97,99,101,100,72,101,108,112,101,114,115,58,70,44,99,114,101,97,116,101,76,111,103,103,101,114,58,86,125,59,101,91,34,90,80,34,93,61,89,125,125,93,41,59}; +char index_js[133216] = {40,102,117,110,99,116,105,111,110,40,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,101,61,123,51,55,49,54,58,102,117,110,99,116,105,111,110,40,101,44,116,44,115,41,123,115,46,100,40,116,44,123,67,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,111,125,125,41,59,115,40,54,57,56,49,41,44,115,40,53,51,55,41,59,118,97,114,32,105,61,115,40,49,52,52,41,44,97,61,115,40,50,48,51,50,41,59,115,40,57,56,51,56,41,59,105,91,34,100,101,102,97,117,108,116,34,93,46,117,115,101,40,97,46,90,80,109,41,59,118,97,114,32,111,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,46,97,117,116,104,76,111,97,100,105,110,103,63,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,108,111,97,100,105,110,103,45,112,97,103,101,34,125,44,91,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,108,111,97,100,105,110,103,45,115,112,105,110,110,101,114,115,34,125,44,91,115,40,34,98,45,115,112,105,110,110,101,114,34,44,123,97,116,116,114,115,58,123,116,121,112,101,58,34,103,114,111,119,34,44,118,97,114,105,97,110,116,58,34,112,114,105,109,97,114,121,34,125,125,41,44,115,40,34,98,45,115,112,105,110,110,101,114,34,44,123,97,116,116,114,115,58,123,116,121,112,101,58,34,103,114,111,119,34,44,118,97,114,105,97,110,116,58,34,112,114,105,109,97,114,121,34,125,125,41,44,115,40,34,98,45,115,112,105,110,110,101,114,34,44,123,97,116,116,114,115,58,123,116,121,112,101,58,34,103,114,111,119,34,44,118,97,114,105,97,110,116,58,34,112,114,105,109,97,114,121,34,125,125,41,93,44,49,41,44,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,108,111,97,100,105,110,103,45,116,101,120,116,34,125,44,91,101,46,95,118,40,34,32,76,111,97,100,105,110,103,32,226,128,162,32,67,104,97,114,103,101,109,101,110,116,32,226,128,162,32,232,163,133,232,189,189,32,34,41,93,41,93,41,58,115,40,34,100,105,118,34,44,123,99,108,97,115,115,58,101,46,103,101,116,67,108,97,115,115,40,41,44,97,116,116,114,115,58,123,105,100,58,34,97,112,112,34,125,125,44,91,115,40,34,78,97,118,66,97,114,34,41,44,101,46,99,111,110,102,105,103,76,111,97,100,105,110,103,63,101,46,95,101,40,41,58,115,40,34,114,111,117,116,101,114,45,118,105,101,119,34,41,93,44,49,41,125,44,114,61,91,93,44,110,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,98,45,110,97,118,98,97,114,34,44,91,34,47,34,33,61,61,101,46,36,114,111,117,116,101,46,112,97,116,104,63,115,40,34,98,45,110,97,118,98,97,114,45,98,114,97,110,100,34,44,123,97,116,116,114,115,58,123,116,111,58,34,47,34,125,125,44,91,115,40,34,83,105,115,116,50,73,99,111,110,34,41,93,44,49,41,58,115,40,34,98,45,110,97,118,98,97,114,45,98,114,97,110,100,34,44,123,97,116,116,114,115,58,123,104,114,101,102,58,34,46,34,125,125,44,91,115,40,34,83,105,115,116,50,73,99,111,110,34,41,93,44,49,41,44,101,46,36,115,116,111,114,101,38,38,101,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,63,115,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,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,125,44,91,101,46,95,118,40,34,32,118,34,43,101,46,95,115,40,101,46,115,105,115,116,50,86,101,114,115,105,111,110,40,41,41,41,44,101,46,105,115,68,101,98,117,103,40,41,63,115,40,34,115,112,97,110,34,44,91,101,46,95,118,40,34,45,100,98,103,34,41,93,41,58,101,46,95,101,40,41,44,101,46,105,115,76,101,103,97,99,121,40,41,38,38,33,101,46,104,105,100,101,76,101,103,97,99,121,40,41,63,115,40,34,115,112,97,110,34,44,91,101,46,95,118,40,34,45,34,41,44,115,40,34,97,34,44,123,97,116,116,114,115,58,123,104,114,101,102,58,34,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,115,105,109,111,110,57,56,55,47,115,105,115,116,50,47,98,108,111,98,47,109,97,115,116,101,114,47,100,111,99,115,47,85,83,65,71,69,46,109,100,35,101,108,97,115,116,105,99,115,101,97,114,99,104,34,44,116,97,114,103,101,116,58,34,95,98,108,97,110,107,34,125,125,44,91,101,46,95,118,40,34,108,101,103,97,99,121,69,83,34,41,93,41,93,41,58,101,46,95,101,40,41,93,41,58,101,46,95,101,40,41,44,101,46,36,115,116,111,114,101,38,38,101,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,63,115,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,116,97,103,108,105,110,101,34,44,100,111,109,80,114,111,112,115,58,123,105,110,110,101,114,72,84,77,76,58,101,46,95,115,40,101,46,116,97,103,108,105,110,101,40,41,41,125,125,41,58,101,46,95,101,40,41,44,115,40,34,98,45,98,117,116,116,111,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,108,45,97,117,116,111,34,44,97,116,116,114,115,58,123,116,111,58,34,115,116,97,116,115,34,44,118,97,114,105,97,110,116,58,34,108,105,110,107,34,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,115,116,97,116,115,34,41,41,41,93,41,44,115,40,34,98,45,98,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,116,111,58,34,99,111,110,102,105,103,34,44,118,97,114,105,97,110,116,58,34,108,105,110,107,34,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,99,111,110,102,105,103,34,41,41,41,93,41,44,101,46,36,97,117,116,104,38,38,101,46,36,97,117,116,104,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,63,115,40,34,98,45,98,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,118,97,114,105,97,110,116,58,34,108,105,110,107,34,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,76,111,103,111,117,116,67,108,105,99,107,40,41,125,125,125,44,91,101,46,95,118,40,34,108,111,103,111,117,116,34,41,93,41,58,101,46,95,101,40,41,93,44,49,41,125,44,108,61,91,93,44,99,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,120,109,108,110,115,58,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,119,105,100,116,104,58,34,50,55,46,56,54,56,48,54,57,109,109,34,44,104,101,105,103,104,116,58,34,55,46,54,52,52,54,54,55,49,109,109,34,44,118,105,101,119,66,111,120,58,34,48,32,48,32,50,55,46,56,54,56,48,54,57,32,55,46,54,52,52,54,54,55,49,34,125,125,44,91,115,40,34,103,34,44,123,97,116,116,114,115,58,123,116,114,97,110,115,102,111,114,109,58,34,116,114,97,110,115,108,97,116,101,40,45,52,46,53,48,49,56,51,49,51,44,45,52,46,49,56,52,57,55,57,51,41,34,125,125,44,91,115,40,34,103,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,102,105,108,108,58,34,99,117,114,114,101,110,116,67,111,108,111,114,34,44,34,102,105,108,108,45,111,112,97,99,105,116,121,34,58,34,49,34,44,115,116,114,111,107,101,58,34,110,111,110,101,34,44,34,115,116,114,111,107,101,45,119,105,100,116,104,34,58,34,48,46,50,54,52,53,56,51,51,50,34,125,125,44,91,115,40,34,112,97,116,104,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,34,115,116,114,111,107,101,45,119,105,100,116,104,34,58,34,48,46,50,54,52,53,56,51,51,50,34,125,44,97,116,116,114,115,58,123,100,58,34,109,32,54,46,51,49,53,51,50,57,54,44,49,49,46,56,50,57,54,52,54,32,113,32,45,48,46,55,55,49,55,48,49,52,44,48,32,45,49,46,56,49,51,52,57,56,51,44,45,48,46,51,51,55,54,49,57,32,118,32,45,48,46,57,49,54,51,57,53,32,113,32,49,46,48,49,50,56,53,56,49,44,48,46,53,49,49,50,53,50,32,49,46,56,48,51,56,53,50,44,48,46,53,49,49,50,53,50,32,48,46,53,54,52,51,48,54,55,44,48,32,48,46,57,48,49,57,50,54,44,45,48,46,50,51,54,51,51,52,32,48,46,51,51,55,54,49,57,52,44,45,48,46,50,51,54,51,51,51,32,48,46,51,51,55,54,49,57,52,44,45,48,46,54,51,49,56,51,32,48,44,45,48,46,51,52,50,52,52,50,56,32,45,48,46,50,56,52,53,54,52,57,44,45,48,46,53,52,57,56,51,55,54,32,81,32,54,46,57,56,48,57,50,50,44,57,46,52,53,54,54,54,52,53,32,54,46,51,54,51,53,54,48,57,44,57,46,51,50,54,52,51,57,57,32,76,32,53,46,57,57,50,49,55,57,54,44,57,46,50,52,57,50,54,57,56,32,81,32,53,46,50,51,48,49,50,52,53,44,57,46,48,57,52,57,50,57,53,32,52,46,56,55,51,50,49,50,54,44,56,46,55,52,50,56,52,48,55,32,52,46,53,50,49,49,50,51,56,44,56,46,51,56,53,57,50,56,56,32,52,46,53,50,49,49,50,51,56,44,55,46,55,55,51,51,57,48,56,32,113,32,48,44,45,48,46,55,55,54,53,50,52,53,32,48,46,53,51,48,53,52,52,55,44,45,49,46,49,57,54,49,51,55,50,32,48,46,53,51,48,53,52,52,55,44,45,48,46,52,49,57,54,49,50,54,32,49,46,53,48,57,54,52,48,57,44,45,48,46,52,49,57,54,49,50,54,32,48,46,56,50,57,53,55,57,44,48,32,49,46,54,48,54,49,48,51,54,44,48,46,51,49,56,51,50,54,56,32,86,32,55,46,51,52,52,49,51,49,57,32,81,32,55,46,52,49,48,49,56,48,57,44,54,46,57,48,48,52,48,51,54,32,54,46,53,56,53,52,50,53,49,44,54,46,57,48,48,52,48,51,54,32,113,32,45,49,46,49,54,55,49,57,56,52,44,48,32,45,49,46,49,54,55,49,57,56,52,44,48,46,55,57,53,56,49,55,49,32,48,44,48,46,50,54,48,52,52,57,50,32,48,46,49,48,49,50,56,53,56,44,48,46,52,49,52,55,56,57,53,32,48,46,49,48,49,50,56,53,56,44,48,46,49,52,57,53,49,55,49,32,48,46,51,56,53,56,53,48,55,44,48,46,50,53,53,54,50,54,49,32,48,46,50,56,52,53,54,52,57,44,48,46,49,48,49,50,56,53,56,32,48,46,56,51,57,50,50,53,51,44,48,46,50,49,50,50,49,55,57,32,108,32,48,46,51,53,54,57,49,49,57,44,48,46,48,54,55,53,50,52,32,113,32,49,46,51,52,48,56,51,49,50,44,48,46,50,54,53,50,55,50,52,32,49,46,51,52,48,56,51,49,50,44,49,46,52,54,49,52,48,57,56,32,48,44,48,46,56,48,48,54,52,32,45,48,46,53,54,57,49,50,57,56,44,49,46,50,54,51,54,54,49,32,45,48,46,53,54,57,49,50,57,56,44,48,46,52,53,56,49,57,55,32,45,49,46,53,53,55,56,55,50,50,44,48,46,52,53,56,49,57,55,32,122,34,125,125,41,44,115,40,34,112,97,116,104,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,34,115,116,114,111,107,101,45,119,105,100,116,104,34,58,34,48,46,50,54,52,53,56,51,51,50,34,125,44,97,116,116,114,115,58,123,100,58,34,109,32,49,49,46,57,52,51,57,50,55,44,53,46,51,48,56,55,54,57,52,32,113,32,45,48,46,49,52,52,54,57,52,44,48,32,45,48,46,49,52,52,54,57,52,44,45,48,46,49,52,52,54,57,52,32,86,32,52,46,51,50,57,54,55,51,51,32,113,32,48,44,45,48,46,49,52,52,54,57,52,32,48,46,49,52,52,54,57,52,44,45,48,46,49,52,52,54,57,52,32,104,32,48,46,54,57,52,53,51,49,32,113,32,48,46,49,52,52,54,57,52,44,48,32,48,46,49,52,52,54,57,52,44,48,46,49,52,52,54,57,52,32,118,32,48,46,56,51,52,52,48,50,49,32,113,32,48,44,48,46,49,52,52,54,57,52,32,45,48,46,49,52,52,54,57,52,44,48,46,49,52,52,54,57,52,32,122,32,77,32,49,51,46,53,54,52,53,44,49,49,46,55,50,56,51,54,49,32,113,32,45,48,46,55,57,53,56,49,55,44,48,32,45,49,46,50,51,52,55,50,50,44,45,48,46,53,49,49,50,53,51,32,45,48,46,52,51,52,48,56,50,44,45,48,46,53,49,54,48,55,53,32,45,48,46,52,51,52,48,56,50,44,45,49,46,52,52,54,57,51,57,56,32,86,32,54,46,57,56,50,51,57,54,57,32,72,32,49,48,46,55,49,52,48,50,56,32,86,32,54,46,50,56,55,56,54,53,54,32,104,32,50,46,48,54,57,49,50,52,32,118,32,51,46,52,56,50,51,48,50,54,32,113,32,48,44,48,46,53,56,56,52,50,50,56,32,48,46,50,50,49,56,54,52,44,48,46,56,57,55,49,48,50,56,32,48,46,50,50,49,56,54,53,44,48,46,51,48,56,54,56,49,32,48,46,54,52,54,51,44,48,46,51,48,56,54,56,49,32,104,32,49,46,48,51,54,57,55,52,32,118,32,48,46,55,53,50,52,48,57,32,122,34,125,125,41,44,115,40,34,112,97,116,104,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,34,115,116,114,111,107,101,45,119,105,100,116,104,34,58,34,48,46,50,54,52,53,56,51,51,50,34,125,44,97,116,116,114,115,58,123,100,58,34,109,32,49,56,46,50,48,57,49,55,56,44,49,49,46,56,50,57,54,52,54,32,113,32,45,48,46,55,55,49,55,48,49,44,48,32,45,49,46,56,49,51,52,57,56,44,45,48,46,51,51,55,54,49,57,32,118,32,45,48,46,57,49,54,51,57,53,32,113,32,49,46,48,49,50,56,53,56,44,48,46,53,49,49,50,53,50,32,49,46,56,48,51,56,53,50,44,48,46,53,49,49,50,53,50,32,48,46,53,54,52,51,48,54,44,48,32,48,46,57,48,49,57,50,54,44,45,48,46,50,51,54,51,51,52,32,48,46,51,51,55,54,49,57,44,45,48,46,50,51,54,51,51,51,32,48,46,51,51,55,54,49,57,44,45,48,46,54,51,49,56,51,32,48,44,45,48,46,51,52,50,52,52,50,56,32,45,48,46,50,56,52,53,54,53,44,45,48,46,53,52,57,56,51,55,54,32,81,32,49,56,46,56,55,52,55,55,44,57,46,52,53,54,54,54,52,53,32,49,56,46,50,53,55,52,48,57,44,57,46,51,50,54,52,51,57,57,32,108,32,45,48,46,51,55,49,51,56,49,44,45,48,46,48,55,55,49,55,32,81,32,49,55,46,49,50,51,57,55,51,44,57,46,48,57,52,57,50,57,53,32,49,54,46,55,54,55,48,54,49,44,56,46,55,52,50,56,52,48,55,32,49,54,46,52,49,52,57,55,50,44,56,46,51,56,53,57,50,56,56,32,49,54,46,52,49,52,57,55,50,44,55,46,55,55,51,51,57,48,56,32,113,32,48,44,45,48,46,55,55,54,53,50,52,53,32,48,46,53,51,48,53,52,53,44,45,49,46,49,57,54,49,51,55,50,32,48,46,53,51,48,53,52,53,44,45,48,46,52,49,57,54,49,50,54,32,49,46,53,48,57,54,52,49,44,45,48,46,52,49,57,54,49,50,54,32,48,46,56,50,57,53,55,57,44,48,32,49,46,54,48,54,49,48,51,44,48,46,51,49,56,51,50,54,56,32,118,32,48,46,56,54,56,49,54,52,49,32,113,32,45,48,46,55,53,55,50,51,50,44,45,48,46,52,52,51,55,50,56,51,32,45,49,46,53,56,49,57,56,56,44,45,48,46,52,52,51,55,50,56,51,32,45,49,46,49,54,55,49,57,56,44,48,32,45,49,46,49,54,55,49,57,56,44,48,46,55,57,53,56,49,55,49,32,48,44,48,46,50,54,48,52,52,57,50,32,48,46,49,48,49,50,56,54,44,48,46,52,49,52,55,56,57,53,32,48,46,49,48,49,50,56,54,44,48,46,49,52,57,53,49,55,49,32,48,46,51,56,53,56,53,49,44,48,46,50,53,53,54,50,54,49,32,48,46,50,56,52,53,54,53,44,48,46,49,48,49,50,56,53,56,32,48,46,56,51,57,50,50,53,44,48,46,50,49,50,50,49,55,57,32,108,32,48,46,51,53,54,57,49,50,44,48,46,48,54,55,53,50,52,32,113,32,49,46,51,52,48,56,51,49,44,48,46,50,54,53,50,55,50,52,32,49,46,51,52,48,56,51,49,44,49,46,52,54,49,52,48,57,56,32,48,44,48,46,56,48,48,54,52,32,45,48,46,53,54,57,49,51,44,49,46,50,54,51,54,54,49,32,45,48,46,53,54,57,49,51,44,48,46,52,53,56,49,57,55,32,45,49,46,53,53,55,56,55,50,44,48,46,52,53,56,49,57,55,32,122,34,125,125,41,44,115,40,34,112,97,116,104,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,34,115,116,114,111,107,101,45,119,105,100,116,104,34,58,34,48,46,50,54,52,53,56,51,51,50,34,125,44,97,116,116,114,115,58,123,100,58,34,109,32,50,53,46,50,48,55,53,52,53,44,49,49,46,55,48,57,48,54,56,32,113,32,45,48,46,57,57,51,53,54,53,44,48,32,45,49,46,52,48,56,51,53,53,44,45,48,46,52,48,48,51,50,32,45,48,46,52,48,57,57,54,54,44,45,48,46,52,48,53,49,52,51,32,45,48,46,52,48,57,57,54,54,44,45,49,46,51,55,57,52,49,54,52,32,86,32,54,46,57,55,55,53,55,51,55,32,72,32,50,49,46,57,52,55,49,48,55,32,86,32,54,46,50,56,55,56,54,53,54,32,104,32,49,46,52,52,50,49,49,55,32,86,32,52,46,56,55,52,54,56,55,52,32,108,32,48,46,56,56,55,52,53,55,44,45,48,46,51,56,53,56,53,48,55,32,118,32,49,46,55,57,57,48,50,56,57,32,104,32,50,46,48,49,54,48,54,57,32,118,32,48,46,54,56,57,55,48,56,49,32,104,32,45,50,46,48,49,54,48,54,57,32,118,32,50,46,57,53,49,55,53,55,57,32,113,32,48,44,48,46,53,57,51,50,52,53,52,32,48,46,50,50,54,54,56,55,44,48,46,56,51,52,52,48,50,52,32,48,46,50,50,54,54,56,55,44,48,46,50,51,54,51,51,51,32,48,46,55,57,48,57,57,52,44,48,46,50,51,54,51,51,51,32,104,32,48,46,57,57,56,51,56,56,32,118,32,48,46,55,48,57,48,48,49,32,122,34,125,125,41,44,115,40,34,112,97,116,104,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,34,115,116,114,111,107,101,45,119,105,100,116,104,34,58,34,48,46,50,54,52,53,56,51,51,50,34,125,44,97,116,116,114,115,58,123,100,58,34,109,32,50,55,46,57,57,53,51,49,55,44,49,49,46,48,52,51,52,55,54,32,113,32,48,44,45,48,46,49,55,56,52,53,54,32,48,46,49,50,48,53,55,56,44,45,48,46,50,57,57,48,51,53,32,48,46,50,55,52,57,49,57,44,45,48,46,50,56,57,51,56,56,32,48,46,54,53,49,49,50,51,44,45,48,46,54,56,52,56,56,53,32,48,46,51,55,54,50,48,53,44,45,48,46,52,48,48,51,49,57,57,32,48,46,56,48,53,52,54,52,44,45,48,46,56,54,56,49,54,51,56,32,48,46,51,50,55,57,55,51,44,45,48,46,51,53,54,57,49,50,32,48,46,52,57,49,57,53,57,44,45,48,46,53,51,53,51,54,55,57,32,48,46,49,54,56,56,49,44,45,48,46,49,56,51,50,55,57,49,32,48,46,50,53,53,54,50,54,44,45,48,46,50,56,52,53,54,52,57,32,48,46,48,57,49,54,52,44,45,48,46,49,48,49,50,56,53,56,32,48,46,49,55,56,52,53,54,44,45,48,46,50,48,55,51,57,52,56,32,48,46,50,53,53,54,50,54,44,45,48,46,51,48,56,54,56,48,53,32,48,46,52,48,53,49,52,52,44,45,48,46,53,50,53,55,50,49,53,32,48,46,49,53,52,51,52,44,45,48,46,50,49,55,48,52,49,49,32,48,46,50,53,48,56,48,51,44,45,48,46,52,50,57,50,53,56,57,32,48,46,49,54,56,56,48,57,44,45,48,46,51,55,54,50,48,52,53,32,48,46,49,54,56,56,48,57,44,45,48,46,55,53,50,52,48,56,57,32,48,44,45,48,46,53,57,56,48,54,56,54,32,45,48,46,51,53,50,48,56,57,44,45,48,46,57,51,53,54,56,56,32,45,48,46,51,53,54,57,49,49,44,45,48,46,51,52,50,52,52,50,53,32,45,48,46,57,55,57,48,57,54,44,45,48,46,51,52,50,52,52,50,53,32,45,48,46,56,54,51,51,52,49,44,48,32,45,49,46,57,51,56,56,57,57,44,48,46,54,52,49,52,55,54,56,32,86,32,52,46,56,51,54,49,48,50,51,32,113,32,48,46,52,57,49,57,53,57,44,45,48,46,50,51,54,51,51,51,53,32,48,46,57,55,57,48,57,54,44,45,48,46,51,53,54,57,49,49,57,32,48,46,52,55,55,52,57,44,45,48,46,49,50,48,53,55,56,51,32,48,46,57,52,53,51,51,52,44,45,48,46,49,50,48,53,55,56,51,32,48,46,53,48,49,54,48,54,44,48,32,48,46,57,52,48,53,49,49,44,48,46,49,51,53,48,52,55,55,32,48,46,52,51,56,57,48,53,44,48,46,49,51,53,48,52,55,56,32,48,46,55,54,54,56,55,56,44,48,46,52,50,52,52,51,53,56,32,48,46,50,56,57,51,56,56,44,48,46,50,53,53,54,50,54,49,32,48,46,52,54,51,48,50,49,44,48,46,54,50,55,48,48,55,52,32,48,46,49,55,51,54,51,51,44,48,46,51,54,54,53,53,56,50,32,48,46,49,55,51,54,51,51,44,48,46,56,50,57,53,55,57,32,48,44,48,46,52,55,50,54,54,55,49,32,45,48,46,50,49,50,50,49,56,44,48,46,57,53,48,49,53,55,52,32,45,48,46,49,48,54,49,48,57,44,48,46,50,52,49,49,53,54,55,32,45,48,46,50,55,52,57,49,57,44,48,46,52,55,50,54,54,55,49,32,45,48,46,49,54,51,57,56,54,44,48,46,50,50,54,54,56,55,51,32,45,48,46,52,50,52,52,51,53,44,48,46,53,52,48,49,57,49,32,81,32,51,49,46,50,55,48,50,50,53,44,56,46,53,48,49,54,56,52,32,51,49,46,48,55,55,50,57,57,44,56,46,55,49,56,55,50,53,32,51,48,46,56,56,52,51,55,52,44,56,46,57,51,53,55,54,54,49,32,51,48,46,54,50,56,55,52,56,44,57,46,50,49,48,54,56,52,55,32,51,48,46,52,52,53,52,54,57,44,57,46,52,48,56,52,51,51,50,32,51,48,46,50,56,54,51,48,53,44,57,46,53,54,55,53,57,54,54,32,51,48,46,49,51,49,57,54,53,44,57,46,55,50,54,55,54,32,50,57,46,57,53,56,51,51,50,44,57,46,57,48,48,51,57,50,56,32,50,57,46,55,56,52,55,44,49,48,46,48,54,57,50,48,51,32,50,57,46,53,53,56,48,49,50,44,49,48,46,51,48,48,55,49,51,32,50,57,46,51,51,54,49,52,56,44,49,48,46,53,50,55,52,32,50,57,46,48,49,50,57,57,56,44,49,48,46,56,54,57,56,52,51,32,104,32,51,46,51,53,54,57,48,49,32,118,32,48,46,56,49,57,57,51,50,32,104,32,45,52,46,51,55,52,53,56,50,32,122,34,125,125,41,93,41,93,41,93,41,125,44,100,61,91,93,44,117,61,123,110,97,109,101,58,34,83,105,115,116,50,73,99,111,110,34,125,44,104,61,117,44,112,61,115,40,51,55,51,54,41,44,109,61,40,48,44,112,46,90,41,40,104,44,99,44,100,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,103,61,109,46,101,120,112,111,114,116,115,44,102,61,123,110,97,109,101,58,34,78,97,118,66,97,114,34,44,99,111,109,112,111,110,101,110,116,115,58,123,83,105,115,116,50,73,99,111,110,58,103,125,44,109,101,116,104,111,100,115,58,123,116,97,103,108,105,110,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,116,97,103,108,105,110,101,125,44,115,105,115,116,50,86,101,114,115,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,118,101,114,115,105,111,110,125,44,105,115,68,101,98,117,103,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,100,101,98,117,103,125,44,105,115,76,101,103,97,99,121,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,101,115,86,101,114,115,105,111,110,76,101,103,97,99,121,125,44,104,105,100,101,76,101,103,97,99,121,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,72,105,100,101,76,101,103,97,99,121,125,44,111,110,76,111,103,111,117,116,67,108,105,99,107,40,41,123,116,104,105,115,46,36,97,117,116,104,46,108,111,103,111,117,116,40,41,125,125,125,44,98,61,102,44,118,61,40,48,44,112,46,90,41,40,98,44,110,44,108,44,33,49,44,110,117,108,108,44,34,54,99,55,52,54,100,102,102,34,44,110,117,108,108,41,44,120,61,118,46,101,120,112,111,114,116,115,44,121,61,115,40,54,50,57,41,44,95,61,115,40,57,54,54,57,41,44,84,61,115,46,110,40,95,41,59,102,117,110,99,116,105,111,110,32,83,40,101,41,123,114,101,116,117,114,110,32,119,40,101,46,95,115,111,117,114,99,101,41,125,102,117,110,99,116,105,111,110,32,119,40,101,41,123,114,101,116,117,114,110,32,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,101,44,34,101,120,116,101,110,115,105,111,110,34,41,38,38,34,34,33,61,61,101,91,34,101,120,116,101,110,115,105,111,110,34,93,63,34,46,34,43,101,91,34,101,120,116,101,110,115,105,111,110,34,93,58,34,34,125,102,117,110,99,116,105,111,110,32,36,40,101,41,123,108,101,116,32,116,61,34,34,59,102,111,114,40,108,101,116,32,115,61,48,59,115,60,101,46,108,101,110,103,116,104,59,115,43,43,41,123,99,111,110,115,116,32,105,61,101,91,115,93,44,97,61,101,91,115,43,49,93,59,34,93,34,61,61,61,105,63,34,93,34,61,61,61,97,63,40,116,43,61,105,44,115,43,61,49,41,58,40,116,43,61,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,112,97,114,115,101,73,110,116,40,101,46,115,108,105,99,101,40,115,44,115,43,50,41,44,49,54,41,41,44,115,43,61,50,41,58,116,43,61,105,125,114,101,116,117,114,110,32,116,125,99,111,110,115,116,32,67,61,49,101,51,44,107,61,91,34,107,34,44,34,77,34,44,34,71,34,44,34,84,34,44,34,80,34,44,34,69,34,44,34,90,34,44,34,89,34,93,59,102,117,110,99,116,105,111,110,32,122,40,101,41,123,105,102,40,48,61,61,61,101,41,114,101,116,117,114,110,34,48,32,66,34,59,105,102,40,77,97,116,104,46,97,98,115,40,101,41,60,67,41,114,101,116,117,114,110,32,101,43,34,32,66,34,59,108,101,116,32,116,61,45,49,59,100,111,123,101,47,61,67,44,43,43,116,125,119,104,105,108,101,40,77,97,116,104,46,97,98,115,40,101,41,62,61,67,38,38,116,60,107,46,108,101,110,103,116,104,45,49,41,59,114,101,116,117,114,110,32,101,46,116,111,70,105,120,101,100,40,49,41,43,107,91,116,93,125,102,117,110,99,116,105,111,110,32,77,40,101,41,123,101,61,77,97,116,104,46,102,108,111,111,114,40,101,41,59,99,111,110,115,116,32,116,61,77,97,116,104,46,102,108,111,111,114,40,101,47,51,54,48,48,41,44,115,61,77,97,116,104,46,102,108,111,111,114,40,40,101,45,51,54,48,48,42,116,41,47,54,48,41,44,105,61,101,45,51,54,48,48,42,116,45,54,48,42,115,59,114,101,116,117,114,110,96,36,123,116,60,49,48,63,34,48,34,58,34,34,125,36,123,116,125,58,36,123,115,60,49,48,63,34,48,34,58,34,34,125,36,123,115,125,58,36,123,105,60,49,48,63,34,48,34,58,34,34,125,36,123,105,125,96,125,102,117,110,99,116,105,111,110,32,73,40,101,41,123,99,111,110,115,116,32,116,61,110,101,119,32,68,97,116,101,40,49,101,51,42,101,41,59,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,43,34,45,34,43,40,34,48,34,43,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,49,41,41,46,115,108,105,99,101,40,45,50,41,43,34,45,34,43,40,34,48,34,43,116,46,103,101,116,85,84,67,68,97,116,101,40,41,41,46,115,108,105,99,101,40,45,50,41,125,102,117,110,99,116,105,111,110,32,76,40,101,41,123,101,61,101,46,115,117,98,115,116,114,105,110,103,40,49,41,59,99,111,110,115,116,32,116,61,112,97,114,115,101,73,110,116,40,101,44,49,54,41,44,115,61,116,62,62,49,54,38,50,53,53,44,105,61,116,62,62,56,38,50,53,53,44,97,61,116,62,62,48,38,50,53,53,59,114,101,116,117,114,110,46,50,49,50,54,42,115,43,46,55,49,53,50,42,105,43,46,48,55,50,50,42,97,125,102,117,110,99,116,105,111,110,32,68,40,101,41,123,99,111,110,115,116,32,116,61,110,101,119,32,83,101,116,44,115,61,101,46,115,101,108,101,99,116,101,100,40,41,59,102,111,114,40,108,101,116,32,105,61,48,59,105,60,115,46,108,101,110,103,116,104,59,105,43,43,41,123,105,102,40,34,97,110,121,34,61,61,61,115,91,105,93,46,105,100,41,114,101,116,117,114,110,91,34,97,110,121,34,93,59,45,49,33,61,61,115,91,105,93,46,116,101,120,116,46,105,110,100,101,120,79,102,40,34,40,34,41,38,38,40,115,91,105,93,46,118,97,108,117,101,115,63,116,46,97,100,100,40,115,91,105,93,46,118,97,108,117,101,115,46,115,108,105,99,101,40,45,49,41,91,48,93,41,58,116,46,97,100,100,40,115,91,105,93,46,105,100,41,41,125,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,116,41,125,102,117,110,99,116,105,111,110,32,79,40,101,41,123,99,111,110,115,116,32,116,61,101,46,115,101,108,101,99,116,97,98,108,101,40,41,44,115,61,123,125,59,102,111,114,40,108,101,116,32,105,61,48,59,105,60,116,46,108,101,110,103,116,104,59,105,43,43,41,123,108,101,116,32,101,61,110,117,108,108,59,101,61,45,49,33,61,61,116,91,105,93,46,116,101,120,116,46,105,110,100,101,120,79,102,40,34,40,34,41,38,38,116,91,105,93,46,118,97,108,117,101,115,63,116,91,105,93,46,118,97,108,117,101,115,46,115,108,105,99,101,40,45,49,41,91,48,93,58,116,91,105,93,46,105,100,44,115,91,101,93,61,123,99,104,101,99,107,101,100,58,116,91,105,93,46,105,116,114,101,101,46,115,116,97,116,101,46,99,104,101,99,107,101,100,44,99,111,108,108,97,112,115,101,100,58,116,91,105,93,46,105,116,114,101,101,46,115,116,97,116,101,46,99,111,108,108,97,112,115,101,100,125,125,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,80,40,101,41,123,105,102,40,48,33,61,101,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,101,46,109,97,112,40,40,101,61,62,69,40,101,41,41,41,46,106,111,105,110,40,34,34,41,125,102,117,110,99,116,105,111,110,32,113,40,101,41,123,114,101,116,117,114,110,32,101,46,114,101,112,108,97,99,101,65,108,108,40,47,40,91,73,86,65,84,85,70,93,41,47,103,44,34,36,36,36,38,34,41,46,115,112,108,105,116,40,34,36,34,41,46,109,97,112,40,40,101,61,62,65,40,101,41,41,41,46,115,108,105,99,101,40,49,41,125,102,117,110,99,116,105,111,110,32,69,40,101,41,123,114,101,116,117,114,110,32,101,46,114,101,112,108,97,99,101,40,34,105,109,97,103,101,47,34,44,34,73,34,41,46,114,101,112,108,97,99,101,40,34,118,105,100,101,111,47,34,44,34,86,34,41,46,114,101,112,108,97,99,101,40,34,97,112,112,108,105,99,97,116,105,111,110,47,34,44,34,65,34,41,46,114,101,112,108,97,99,101,40,34,116,101,120,116,47,34,44,34,84,34,41,46,114,101,112,108,97,99,101,40,34,97,117,100,105,111,47,34,44,34,85,34,41,46,114,101,112,108,97,99,101,40,34,102,111,110,116,47,34,44,34,70,34,41,46,114,101,112,108,97,99,101,40,34,43,34,44,34,44,34,41,46,114,101,112,108,97,99,101,40,34,120,45,34,44,34,88,34,41,125,102,117,110,99,116,105,111,110,32,65,40,101,41,123,114,101,116,117,114,110,32,101,46,114,101,112,108,97,99,101,40,34,73,34,44,34,105,109,97,103,101,47,34,41,46,114,101,112,108,97,99,101,40,34,86,34,44,34,118,105,100,101,111,47,34,41,46,114,101,112,108,97,99,101,40,34,65,34,44,34,97,112,112,108,105,99,97,116,105,111,110,47,34,41,46,114,101,112,108,97,99,101,40,34,84,34,44,34,116,101,120,116,47,34,41,46,114,101,112,108,97,99,101,40,34,85,34,44,34,97,117,100,105,111,47,34,41,46,114,101,112,108,97,99,101,40,34,70,34,44,34,102,111,110,116,47,34,41,46,114,101,112,108,97,99,101,40,34,44,34,44,34,43,34,41,46,114,101,112,108,97,99,101,40,34,88,34,44,34,120,45,34,41,125,102,117,110,99,116,105,111,110,32,72,40,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,49,101,53,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,125,102,117,110,99,116,105,111,110,32,85,40,101,44,116,41,123,102,111,114,40,108,101,116,32,115,61,52,59,115,60,51,50,59,115,43,43,41,123,99,111,110,115,116,32,105,61,116,46,115,108,105,99,101,40,48,44,115,41,59,105,102,40,49,61,61,101,46,102,105,108,116,101,114,40,40,101,61,62,101,46,105,100,46,115,108,105,99,101,40,48,44,115,41,61,61,105,41,41,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,105,125,114,101,116,117,114,110,32,116,125,99,108,97,115,115,32,66,123,99,111,110,115,116,114,117,99,116,111,114,40,101,41,123,116,104,105,115,46,98,97,115,101,85,114,108,61,101,125,103,101,116,83,105,115,116,50,73,110,102,111,40,41,123,114,101,116,117,114,110,32,84,40,41,46,103,101,116,40,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,105,96,41,46,116,104,101,110,40,40,101,61,62,123,99,111,110,115,116,32,116,61,101,46,100,97,116,97,46,105,110,100,105,99,101,115,59,114,101,116,117,114,110,32,101,46,100,97,116,97,46,105,110,100,105,99,101,115,61,116,46,109,97,112,40,40,101,61,62,40,123,105,100,58,101,46,105,100,44,110,97,109,101,58,101,46,110,97,109,101,44,116,105,109,101,115,116,97,109,112,58,101,46,116,105,109,101,115,116,97,109,112,44,118,101,114,115,105,111,110,58,101,46,118,101,114,115,105,111,110,44,105,100,80,114,101,102,105,120,58,85,40,116,44,101,46,105,100,41,125,41,41,41,44,101,46,100,97,116,97,125,41,41,125,115,101,116,72,105,116,80,114,111,112,115,40,101,41,123,101,91,34,95,112,114,111,112,115,34,93,61,123,125,59,99,111,110,115,116,32,116,61,110,117,108,108,61,61,101,46,95,115,111,117,114,99,101,46,109,105,109,101,63,110,117,108,108,58,101,46,95,115,111,117,114,99,101,46,109,105,109,101,46,115,112,108,105,116,40,34,47,34,41,91,48,93,59,115,119,105,116,99,104,40,34,112,97,114,101,110,116,34,105,110,32,101,46,95,115,111,117,114,99,101,38,38,40,101,46,95,112,114,111,112,115,46,105,115,83,117,98,68,111,99,117,109,101,110,116,61,33,48,41,44,34,116,104,117,109,98,110,97,105,108,34,105,110,32,101,46,95,115,111,117,114,99,101,38,38,40,101,46,95,112,114,111,112,115,46,104,97,115,84,104,117,109,98,110,97,105,108,61,33,48,44,78,117,109,98,101,114,46,105,115,78,97,78,40,78,117,109,98,101,114,40,101,46,95,115,111,117,114,99,101,46,116,104,117,109,98,110,97,105,108,41,41,63,40,101,46,95,112,114,111,112,115,46,116,110,78,117,109,61,49,44,101,46,95,112,114,111,112,115,46,104,97,115,86,105,100,80,114,101,118,105,101,119,61,33,49,41,58,40,101,46,95,112,114,111,112,115,46,116,110,78,117,109,61,78,117,109,98,101,114,40,101,46,95,115,111,117,114,99,101,46,116,104,117,109,98,110,97,105,108,41,44,101,46,95,112,114,111,112,115,46,104,97,115,86,105,100,80,114,101,118,105,101,119,61,101,46,95,112,114,111,112,115,46,116,110,78,117,109,62,49,41,41,44,116,41,123,99,97,115,101,34,105,109,97,103,101,34,58,34,103,105,102,34,61,61,61,101,46,95,115,111,117,114,99,101,46,118,105,100,101,111,99,63,101,46,95,112,114,111,112,115,46,105,115,71,105,102,61,33,48,58,101,46,95,112,114,111,112,115,46,105,115,73,109,97,103,101,61,33,48,44,34,119,105,100,116,104,34,105,110,32,101,46,95,115,111,117,114,99,101,38,38,33,101,46,95,112,114,111,112,115,46,105,115,83,117,98,68,111,99,117,109,101,110,116,38,38,34,116,105,102,102,34,33,61,61,101,46,95,115,111,117,114,99,101,46,118,105,100,101,111,99,38,38,34,114,97,119,34,33,61,61,101,46,95,115,111,117,114,99,101,46,118,105,100,101,111,99,38,38,34,112,112,109,34,33,61,61,101,46,95,115,111,117,114,99,101,46,118,105,100,101,111,99,38,38,40,101,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,73,109,97,103,101,61,33,48,41,59,98,114,101,97,107,59,99,97,115,101,34,118,105,100,101,111,34,58,105,102,40,34,118,105,100,101,111,99,34,105,110,32,101,46,95,115,111,117,114,99,101,38,38,40,101,46,95,112,114,111,112,115,46,105,115,86,105,100,101,111,61,33,48,41,44,101,46,95,112,114,111,112,115,46,105,115,86,105,100,101,111,41,123,99,111,110,115,116,32,116,61,101,46,95,115,111,117,114,99,101,46,118,105,100,101,111,99,44,115,61,101,46,95,115,111,117,114,99,101,46,109,105,109,101,59,101,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,86,105,100,101,111,61,110,117,108,108,33,61,115,38,38,115,46,115,116,97,114,116,115,87,105,116,104,40,34,118,105,100,101,111,47,34,41,38,38,33,101,46,95,112,114,111,112,115,46,105,115,83,117,98,68,111,99,117,109,101,110,116,38,38,34,109,107,118,34,33,61,61,101,46,95,115,111,117,114,99,101,46,101,120,116,101,110,115,105,111,110,38,38,34,97,118,105,34,33,61,61,101,46,95,115,111,117,114,99,101,46,101,120,116,101,110,115,105,111,110,38,38,34,109,111,118,34,33,61,61,101,46,95,115,111,117,114,99,101,46,101,120,116,101,110,115,105,111,110,38,38,34,104,101,118,99,34,33,61,61,116,38,38,34,109,112,101,103,49,118,105,100,101,111,34,33,61,61,116,38,38,34,109,112,101,103,50,118,105,100,101,111,34,33,61,61,116,38,38,34,119,109,118,51,34,33,61,61,116,125,98,114,101,97,107,59,99,97,115,101,34,97,117,100,105,111,34,58,34,97,117,100,105,111,99,34,105,110,32,101,46,95,115,111,117,114,99,101,38,38,33,101,46,95,112,114,111,112,115,46,105,115,83,117,98,68,111,99,117,109,101,110,116,38,38,40,101,46,95,112,114,111,112,115,46,105,115,65,117,100,105,111,61,33,48,41,59,98,114,101,97,107,125,125,115,101,116,72,105,116,84,97,103,115,40,101,41,123,99,111,110,115,116,32,116,61,91,93,44,115,61,110,117,108,108,61,61,101,46,95,115,111,117,114,99,101,46,109,105,109,101,63,110,117,108,108,58,101,46,95,115,111,117,114,99,101,46,109,105,109,101,46,115,112,108,105,116,40,34,47,34,41,91,48,93,59,115,119,105,116,99,104,40,115,41,123,99,97,115,101,34,105,109,97,103,101,34,58,99,97,115,101,34,118,105,100,101,111,34,58,34,118,105,100,101,111,99,34,105,110,32,101,46,95,115,111,117,114,99,101,38,38,101,46,95,115,111,117,114,99,101,46,118,105,100,101,111,99,38,38,116,46,112,117,115,104,40,123,115,116,121,108,101,58,34,118,105,100,101,111,34,44,116,101,120,116,58,101,46,95,115,111,117,114,99,101,46,118,105,100,101,111,99,46,114,101,112,108,97,99,101,40,34,32,34,44,34,34,41,44,117,115,101,114,84,97,103,58,33,49,125,41,59,98,114,101,97,107,59,99,97,115,101,34,97,117,100,105,111,34,58,34,97,117,100,105,111,99,34,105,110,32,101,46,95,115,111,117,114,99,101,38,38,101,46,95,115,111,117,114,99,101,46,97,117,100,105,111,99,38,38,116,46,112,117,115,104,40,123,115,116,121,108,101,58,34,97,117,100,105,111,34,44,116,101,120,116,58,101,46,95,115,111,117,114,99,101,46,97,117,100,105,111,99,44,117,115,101,114,84,97,103,58,33,49,125,41,59,98,114,101,97,107,125,34,116,97,103,34,105,110,32,101,46,95,115,111,117,114,99,101,38,38,101,46,95,115,111,117,114,99,101,46,116,97,103,46,102,111,114,69,97,99,104,40,40,101,61,62,123,116,46,112,117,115,104,40,116,104,105,115,46,99,114,101,97,116,101,85,115,101,114,84,97,103,40,101,41,41,125,41,41,44,101,46,95,116,97,103,115,61,116,125,99,114,101,97,116,101,85,115,101,114,84,97,103,40,101,41,123,99,111,110,115,116,32,116,61,101,46,115,112,108,105,116,40,34,46,34,41,44,115,61,116,46,112,111,112,40,41,44,105,61,115,44,97,61,76,40,115,41,62,53,48,63,34,35,48,48,48,34,58,34,35,102,102,102,34,59,114,101,116,117,114,110,123,115,116,121,108,101,58,34,117,115,101,114,34,44,102,103,58,97,44,98,103,58,105,44,116,101,120,116,58,116,46,106,111,105,110,40,34,46,34,41,44,114,97,119,84,101,120,116,58,101,44,117,115,101,114,84,97,103,58,33,48,125,125,101,115,81,117,101,114,121,40,101,41,123,114,101,116,117,114,110,32,84,40,41,46,112,111,115,116,40,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,101,115,96,44,101,41,46,116,104,101,110,40,40,101,61,62,123,99,111,110,115,116,32,116,61,101,46,100,97,116,97,59,114,101,116,117,114,110,32,116,46,104,105,116,115,63,46,104,105,116,115,38,38,116,46,104,105,116,115,46,104,105,116,115,46,102,111,114,69,97,99,104,40,40,101,61,62,123,101,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,61,36,40,101,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,41,44,101,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,61,36,40,101,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,41,44,116,104,105,115,46,115,101,116,72,105,116,80,114,111,112,115,40,101,41,44,116,104,105,115,46,115,101,116,72,105,116,84,97,103,115,40,101,41,125,41,41,44,116,125,41,41,125,103,101,116,77,105,109,101,84,121,112,101,115,40,101,41,123,99,111,110,115,116,32,116,61,123,109,105,109,101,84,121,112,101,115,58,123,116,101,114,109,115,58,123,102,105,101,108,100,58,34,109,105,109,101,34,44,115,105,122,101,58,49,101,52,125,125,125,59,114,101,116,117,114,110,32,101,63,40,101,46,115,105,122,101,61,48,44,101,46,97,103,103,115,61,116,41,58,101,61,123,97,103,103,115,58,116,44,115,105,122,101,58,48,125,44,116,104,105,115,46,101,115,81,117,101,114,121,40,101,41,46,116,104,101,110,40,40,101,61,62,123,99,111,110,115,116,32,116,61,91,93,44,115,61,101,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,59,114,101,116,117,114,110,32,115,46,115,111,114,116,40,40,40,101,44,116,41,61,62,101,46,107,101,121,62,116,46,107,101,121,41,41,46,102,111,114,69,97,99,104,40,40,101,61,62,123,99,111,110,115,116,32,115,61,101,91,34,107,101,121,34,93,46,115,112,108,105,116,40,34,47,34,41,44,105,61,115,91,48,93,44,97,61,115,91,49,93,59,108,101,116,32,111,61,33,49,59,99,111,110,115,116,32,114,61,123,105,100,58,101,91,34,107,101,121,34,93,44,116,101,120,116,58,96,36,123,97,125,32,40,36,123,101,91,34,100,111,99,95,99,111,117,110,116,34,93,125,41,96,125,59,116,46,102,111,114,69,97,99,104,40,40,101,61,62,123,101,46,116,101,120,116,61,61,61,105,38,38,40,101,46,99,104,105,108,100,114,101,110,46,112,117,115,104,40,114,41,44,111,61,33,48,41,125,41,41,44,111,124,124,116,46,112,117,115,104,40,123,116,101,120,116,58,105,44,99,104,105,108,100,114,101,110,58,91,114,93,44,105,100,58,105,125,41,125,41,41,44,116,46,102,111,114,69,97,99,104,40,40,101,61,62,123,101,46,99,104,105,108,100,114,101,110,38,38,101,46,99,104,105,108,100,114,101,110,46,115,111,114,116,40,40,40,101,44,116,41,61,62,101,46,105,100,46,108,111,99,97,108,101,67,111,109,112,97,114,101,40,116,46,105,100,41,41,41,125,41,41,44,116,46,115,111,114,116,40,40,40,101,44,116,41,61,62,101,46,105,100,46,108,111,99,97,108,101,67,111,109,112,97,114,101,40,116,46,105,100,41,41,41,44,123,98,117,99,107,101,116,115,58,115,44,109,105,109,101,77,97,112,58,116,125,125,41,41,125,95,99,114,101,97,116,101,69,115,84,97,103,40,101,44,116,41,123,99,111,110,115,116,32,115,61,101,46,115,112,108,105,116,40,34,46,34,41,59,114,101,116,117,114,110,47,46,42,92,46,35,91,48,45,57,97,45,102,93,123,54,125,47,46,116,101,115,116,40,101,41,63,123,105,100,58,115,46,115,108,105,99,101,40,48,44,45,49,41,46,106,111,105,110,40,34,46,34,41,44,99,111,108,111,114,58,115,46,112,111,112,40,41,44,105,115,76,101,97,102,58,33,48,44,99,111,117,110,116,58,116,125,58,123,105,100,58,101,44,99,111,117,110,116,58,116,44,105,115,76,101,97,102,58,33,49,44,99,111,108,111,114,58,118,111,105,100,32,48,125,125,103,101,116,84,97,103,115,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,115,81,117,101,114,121,40,123,97,103,103,115,58,123,116,97,103,115,58,123,116,101,114,109,115,58,123,102,105,101,108,100,58,34,116,97,103,34,44,115,105,122,101,58,49,101,52,125,125,125,44,115,105,122,101,58,48,125,41,46,116,104,101,110,40,40,101,61,62,123,99,111,110,115,116,32,116,61,110,101,119,32,83,101,116,44,115,61,101,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,46,115,111,114,116,40,40,40,101,44,116,41,61,62,101,91,34,107,101,121,34,93,46,108,111,99,97,108,101,67,111,109,112,97,114,101,40,116,91,34,107,101,121,34,93,41,41,41,46,109,97,112,40,40,101,61,62,116,104,105,115,46,95,99,114,101,97,116,101,69,115,84,97,103,40,101,91,34,107,101,121,34,93,44,101,91,34,100,111,99,95,99,111,117,110,116,34,93,41,41,41,59,114,101,116,117,114,110,32,115,46,102,105,108,116,101,114,40,40,101,61,62,33,116,46,104,97,115,40,101,46,105,100,41,38,38,40,116,46,97,100,100,40,101,46,105,100,41,44,33,48,41,41,41,125,41,41,125,115,97,118,101,84,97,103,40,101,44,116,41,123,114,101,116,117,114,110,32,84,40,41,46,112,111,115,116,40,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,116,97,103,47,96,43,116,91,34,95,115,111,117,114,99,101,34,93,91,34,105,110,100,101,120,34,93,44,123,100,101,108,101,116,101,58,33,49,44,110,97,109,101,58,101,44,100,111,99,95,105,100,58,116,91,34,95,105,100,34,93,125,41,125,100,101,108,101,116,101,84,97,103,40,101,44,116,41,123,114,101,116,117,114,110,32,84,40,41,46,112,111,115,116,40,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,116,97,103,47,96,43,116,91,34,95,115,111,117,114,99,101,34,93,91,34,105,110,100,101,120,34,93,44,123,100,101,108,101,116,101,58,33,48,44,110,97,109,101,58,101,44,100,111,99,95,105,100,58,116,91,34,95,105,100,34,93,125,41,125,103,101,116,84,114,101,101,109,97,112,67,115,118,85,114,108,40,101,41,123,114,101,116,117,114,110,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,115,47,36,123,101,125,47,49,96,125,103,101,116,77,105,109,101,67,115,118,85,114,108,40,101,41,123,114,101,116,117,114,110,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,115,47,36,123,101,125,47,50,96,125,103,101,116,83,105,122,101,67,115,118,40,101,41,123,114,101,116,117,114,110,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,115,47,36,123,101,125,47,51,96,125,103,101,116,68,97,116,101,67,115,118,40,101,41,123,114,101,116,117,114,110,96,36,123,116,104,105,115,46,98,97,115,101,85,114,108,125,115,47,36,123,101,125,47,52,96,125,125,118,97,114,32,70,61,110,101,119,32,66,40,34,34,41,44,78,61,123,99,111,109,112,111,110,101,110,116,115,58,123,78,97,118,66,97,114,58,120,125,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,99,111,110,102,105,103,76,111,97,100,105,110,103,58,33,49,44,97,117,116,104,76,111,97,100,105,110,103,58,33,48,44,115,105,115,116,50,73,110,102,111,76,111,97,100,105,110,103,58,33,48,125,125,44,99,111,109,112,117,116,101,100,58,123,46,46,46,40,48,44,121,46,83,101,41,40,91,34,111,112,116,84,104,101,109,101,34,93,41,125,44,109,111,117,110,116,101,100,40,41,123,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,34,108,111,97,100,67,111,110,102,105,103,117,114,97,116,105,111,110,34,41,46,116,104,101,110,40,40,40,41,61,62,123,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,46,108,111,99,97,108,101,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,76,97,110,103,125,41,41,44,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,40,101,61,62,123,34,115,101,116,79,112,116,76,97,110,103,34,61,61,61,101,46,116,121,112,101,38,38,40,116,104,105,115,46,36,114,111,111,116,46,36,105,49,56,110,46,108,111,99,97,108,101,61,101,46,112,97,121,108,111,97,100,44,116,104,105,115,46,99,111,110,102,105,103,76,111,97,100,105,110,103,61,33,48,44,119,105,110,100,111,119,46,115,101,116,84,105,109,101,111,117,116,40,40,40,41,61,62,116,104,105,115,46,99,111,110,102,105,103,76,111,97,100,105,110,103,61,33,49,41,44,49,48,41,41,44,34,115,101,116,65,117,116,104,48,84,111,107,101,110,34,61,61,61,101,46,116,121,112,101,38,38,40,116,104,105,115,46,97,117,116,104,76,111,97,100,105,110,103,61,33,49,41,125,41,41,44,70,46,103,101,116,83,105,115,116,50,73,110,102,111,40,41,46,116,104,101,110,40,40,101,61,62,123,101,46,97,117,116,104,48,69,110,97,98,108,101,100,63,40,116,104,105,115,46,97,117,116,104,76,111,97,100,105,110,103,61,33,48,44,81,111,40,101,46,97,117,116,104,48,68,111,109,97,105,110,44,101,46,97,117,116,104,48,67,108,105,101,110,116,73,100,44,101,46,97,117,116,104,48,65,117,100,105,101,110,99,101,41,44,116,104,105,115,46,36,97,117,116,104,46,36,119,97,116,99,104,40,34,108,111,97,100,105,110,103,34,44,40,101,61,62,123,105,102,40,33,49,61,61,61,101,41,123,105,102,40,33,116,104,105,115,46,36,97,117,116,104,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,41,114,101,116,117,114,110,32,118,111,105,100,32,116,104,105,115,46,36,97,117,116,104,46,108,111,103,105,110,87,105,116,104,82,101,100,105,114,101,99,116,40,41,59,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,114,101,112,108,97,99,101,83,116,97,116,101,40,123,125,44,34,34,44,34,47,34,43,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,104,97,115,104,41,44,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,34,108,111,97,100,65,117,116,104,48,84,111,107,101,110,34,41,125,125,41,41,41,58,116,104,105,115,46,97,117,116,104,76,111,97,100,105,110,103,61,33,49,44,116,104,105,115,46,115,101,116,83,105,115,116,50,73,110,102,111,40,101,41,44,116,104,105,115,46,115,101,116,73,110,100,105,99,101,115,40,101,46,105,110,100,105,99,101,115,41,125,41,41,125,44,109,101,116,104,111,100,115,58,123,46,46,46,40,48,44,121,46,110,118,41,40,91,34,115,101,116,83,105,115,116,50,73,110,102,111,34,93,41,44,46,46,46,40,48,44,121,46,79,73,41,40,91,34,115,101,116,73,110,100,105,99,101,115,34,93,41,44,103,101,116,67,108,97,115,115,40,41,123,114,101,116,117,114,110,123,34,116,104,101,109,101,45,108,105,103,104,116,34,58,34,108,105,103,104,116,34,61,61,61,116,104,105,115,46,111,112,116,84,104,101,109,101,44,34,116,104,101,109,101,45,98,108,97,99,107,34,58,34,98,108,97,99,107,34,61,61,61,116,104,105,115,46,111,112,116,84,104,101,109,101,125,125,125,125,44,82,61,78,44,86,61,40,48,44,112,46,90,41,40,82,44,111,44,114,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,90,61,86,46,101,120,112,111,114,116,115,44,81,61,115,40,56,51,52,53,41,44,71,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,98,45,99,111,110,116,97,105,110,101,114,34,44,91,101,46,108,111,97,100,105,110,103,63,115,40,34,98,45,99,97,114,100,34,44,91,115,40,34,80,114,101,108,111,97,100,101,114,34,41,93,44,49,41,58,91,115,40,34,98,45,99,97,114,100,34,44,91,115,40,34,98,45,99,97,114,100,45,98,111,100,121,34,44,91,115,40,34,98,45,115,101,108,101,99,116,34,44,123,97,116,116,114,115,58,123,111,112,116,105,111,110,115,58,101,46,105,110,100,101,120,79,112,116,105,111,110,115,125,44,115,99,111,112,101,100,83,108,111,116,115,58,101,46,95,117,40,91,123,107,101,121,58,34,102,105,114,115,116,34,44,102,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,115,40,34,98,45,102,111,114,109,45,115,101,108,101,99,116,45,111,112,116,105,111,110,34,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,110,117,108,108,44,100,105,115,97,98,108,101,100,58,34,34,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,105,110,100,101,120,80,105,99,107,101,114,80,108,97,99,101,104,111,108,100,101,114,34,41,41,41,93,41,93,125,44,112,114,111,120,121,58,33,48,125,93,41,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,61,116,125,44,101,120,112,114,101,115,115,105,111,110,58,34,115,101,108,101,99,116,101,100,73,110,100,101,120,34,125,125,41,93,44,49,41,93,44,49,41,44,110,117,108,108,33,61,61,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,63,115,40,34,98,45,99,97,114,100,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,116,45,51,34,125,44,91,115,40,34,98,45,99,97,114,100,45,98,111,100,121,34,44,91,115,40,34,68,51,84,114,101,101,109,97,112,34,44,123,97,116,116,114,115,58,123,34,105,110,100,101,120,45,105,100,34,58,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,125,125,41,93,44,49,41,93,44,49,41,58,101,46,95,101,40,41,44,110,117,108,108,33,61,61,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,63,115,40,34,98,45,99,97,114,100,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,115,116,97,116,115,45,99,97,114,100,32,109,116,45,51,34,125,44,91,115,40,34,68,51,77,105,109,101,66,97,114,67,111,117,110,116,34,44,123,97,116,116,114,115,58,123,34,105,110,100,101,120,45,105,100,34,58,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,125,125,41,44,115,40,34,68,51,77,105,109,101,66,97,114,83,105,122,101,34,44,123,97,116,116,114,115,58,123,34,105,110,100,101,120,45,105,100,34,58,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,125,125,41,44,115,40,34,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,34,44,123,97,116,116,114,115,58,123,34,105,110,100,101,120,45,105,100,34,58,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,125,125,41,44,115,40,34,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,34,44,123,97,116,116,114,115,58,123,34,105,110,100,101,120,45,105,100,34,58,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,125,125,41,93,44,49,41,58,101,46,95,101,40,41,93,93,44,50,41,125,44,106,61,91,93,44,87,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,91,115,40,34,98,45,98,116,110,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,102,108,111,97,116,58,34,114,105,103,104,116,34,44,34,109,97,114,103,105,110,45,98,111,116,116,111,109,34,58,34,49,48,112,120,34,125,44,97,116,116,114,115,58,123,118,97,114,105,97,110,116,58,34,112,114,105,109,97,114,121,34,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,100,111,119,110,108,111,97,100,84,114,101,101,109,97,112,40,41,125,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,100,111,119,110,108,111,97,100,34,41,41,43,34,32,34,41,93,41,44,115,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,105,100,58,34,116,114,101,101,109,97,112,34,125,125,41,93,44,49,41,125,44,89,61,91,93,44,75,61,115,40,55,50,53,52,41,59,102,117,110,99,116,105,111,110,32,74,40,101,44,116,44,115,44,105,41,123,99,111,110,115,116,32,97,61,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,60,61,54,53,48,59,97,38,38,40,116,61,50,53,41,59,99,111,110,115,116,32,111,61,34,114,116,108,34,61,61,61,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,41,46,100,105,114,101,99,116,105,111,110,44,114,61,34,114,116,108,34,61,61,61,101,46,110,111,85,105,83,108,105,100,101,114,46,111,112,116,105,111,110,115,46,100,105,114,101,99,116,105,111,110,44,110,61,34,118,101,114,116,105,99,97,108,34,61,61,61,101,46,110,111,85,105,83,108,105,100,101,114,46,111,112,116,105,111,110,115,46,111,114,105,101,110,116,97,116,105,111,110,44,108,61,101,46,110,111,85,105,83,108,105,100,101,114,46,103,101,116,84,111,111,108,116,105,112,115,40,41,44,99,61,101,46,110,111,85,105,83,108,105,100,101,114,46,103,101,116,79,114,105,103,105,110,115,40,41,59,108,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,38,38,99,91,116,93,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,125,41,41,44,101,46,110,111,85,105,83,108,105,100,101,114,46,111,110,40,34,117,112,100,97,116,101,34,44,40,102,117,110,99,116,105,111,110,40,101,44,97,44,99,44,100,44,117,41,123,99,111,110,115,116,32,104,61,91,91,93,93,44,112,61,91,91,93,93,44,109,61,91,91,93,93,59,108,101,116,32,103,61,48,59,108,91,48,93,38,38,40,104,91,48,93,91,48,93,61,48,44,112,91,48,93,91,48,93,61,117,91,48,93,44,109,91,48,93,91,48,93,61,101,91,48,93,41,59,102,111,114,40,108,101,116,32,115,61,49,59,115,60,117,46,108,101,110,103,116,104,59,115,43,43,41,40,33,108,91,115,93,124,124,117,91,115,93,45,117,91,115,45,49,93,62,116,41,38,38,40,103,43,43,44,104,91,103,93,61,91,93,44,109,91,103,93,61,91,93,44,112,91,103,93,61,91,93,41,44,108,91,115,93,38,38,40,104,91,103,93,46,112,117,115,104,40,115,41,44,109,91,103,93,46,112,117,115,104,40,101,91,115,93,41,44,112,91,103,93,46,112,117,115,104,40,117,91,115,93,41,41,59,105,102,40,104,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,99,111,110,115,116,32,105,61,101,46,108,101,110,103,116,104,59,102,111,114,40,108,101,116,32,97,61,48,59,97,60,105,59,97,43,43,41,123,99,111,110,115,116,32,99,61,101,91,97,93,59,105,102,40,97,61,61,61,105,45,49,41,123,108,101,116,32,101,61,48,59,112,91,116,93,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,41,123,101,43,61,49,101,51,45,49,48,42,116,125,41,41,59,99,111,110,115,116,32,97,61,110,63,34,98,111,116,116,111,109,34,58,34,114,105,103,104,116,34,44,100,61,114,63,48,58,105,45,49,44,117,61,49,101,51,45,49,48,42,112,91,116,93,91,100,93,59,101,61,40,111,38,38,33,110,63,49,48,48,58,48,41,43,101,47,105,45,117,44,108,91,99,93,46,105,110,110,101,114,72,84,77,76,61,109,91,116,93,46,106,111,105,110,40,115,41,44,108,91,99,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,108,91,99,93,46,115,116,121,108,101,91,97,93,61,101,43,34,37,34,125,101,108,115,101,32,108,91,99,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,125,41,41,44,105,41,123,99,111,110,115,116,32,101,61,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,60,61,54,53,48,44,116,61,101,63,50,48,58,53,59,117,91,48,93,60,116,63,108,91,48,93,46,115,116,121,108,101,46,114,105,103,104,116,61,45,51,53,42,40,49,45,117,91,48,93,47,116,41,43,34,112,120,34,58,108,91,48,93,46,115,116,121,108,101,46,114,105,103,104,116,61,34,48,34,44,117,91,49,93,62,49,48,48,45,116,63,108,91,49,93,46,115,116,121,108,101,46,114,105,103,104,116,61,40,117,91,49,93,45,40,49,48,48,45,116,41,41,47,116,42,51,53,43,34,112,120,34,58,108,91,49,93,46,115,116,121,108,101,46,114,105,103,104,116,61,34,48,34,125,125,41,41,125,102,117,110,99,116,105,111,110,32,88,40,101,44,116,44,115,41,123,99,111,110,115,116,32,105,61,123,125,59,101,46,102,111,114,69,97,99,104,40,40,101,61,62,123,108,101,116,32,115,61,105,59,101,46,116,97,120,111,110,111,109,121,46,102,111,114,69,97,99,104,40,40,101,61,62,123,115,91,101,93,61,101,32,105,110,32,115,63,115,91,101,93,58,123,125,44,115,61,115,91,101,93,125,41,41,44,48,61,61,61,79,98,106,101,99,116,46,107,101,121,115,40,115,41,46,108,101,110,103,116,104,63,115,91,34,36,115,105,122,101,36,34,93,61,101,46,115,105,122,101,58,116,38,38,40,115,91,34,46,34,93,61,123,36,115,105,122,101,36,58,101,46,115,105,122,101,125,41,125,41,41,59,99,111,110,115,116,32,97,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,105,108,116,101,114,40,40,101,61,62,34,36,115,105,122,101,36,34,33,61,61,101,41,41,46,109,97,112,40,40,115,61,62,123,99,111,110,115,116,32,105,61,123,110,97,109,101,58,115,44,100,101,112,116,104,58,116,44,118,97,108,117,101,58,48,44,99,104,105,108,100,114,101,110,58,97,40,101,91,115,93,44,116,43,49,41,125,59,114,101,116,117,114,110,34,36,115,105,122,101,36,34,105,110,32,101,91,115,93,38,38,40,105,46,118,97,108,117,101,61,101,91,115,93,91,34,36,115,105,122,101,36,34,93,41,44,105,125,41,41,125,59,114,101,116,117,114,110,123,110,97,109,101,58,115,44,99,104,105,108,100,114,101,110,58,97,40,105,44,49,41,44,118,97,108,117,101,58,48,44,100,101,112,116,104,58,48,125,125,118,97,114,32,101,101,61,115,40,57,51,48,54,41,44,116,101,61,115,46,110,40,101,101,41,59,99,111,110,115,116,32,115,101,61,123,115,113,117,97,114,105,102,121,58,75,46,111,36,112,44,98,105,110,97,114,121,58,75,46,119,76,80,44,115,108,105,99,101,68,105,99,101,58,75,46,69,95,48,44,115,108,105,99,101,58,75,46,75,109,114,44,100,105,99,101,58,75,46,76,81,100,125,44,105,101,61,123,80,117,66,117,71,110,58,75,46,83,55,86,44,80,117,82,100,58,75,46,99,85,87,44,80,117,66,117,58,75,46,71,77,99,44,89,108,79,114,66,114,58,75,46,89,95,120,44,89,108,79,114,82,100,58,75,46,99,106,74,44,89,108,71,110,58,75,46,97,69,90,44,89,108,71,110,66,117,58,75,46,72,116,78,44,80,108,97,115,109,97,58,75,46,105,65,116,44,77,97,103,109,97,58,75,46,71,105,105,44,73,110,102,101,114,110,111,58,75,46,115,78,57,44,86,105,114,105,100,105,115,58,75,46,86,97,102,44,84,117,114,98,111,58,75,46,95,66,74,125,44,97,101,61,123,115,109,97,108,108,58,91,56,48,48,44,54,48,48,93,44,109,101,100,105,117,109,58,91,49,51,48,48,44,55,53,48,93,44,108,97,114,103,101,58,91,49,57,48,48,44,57,48,48,93,44,34,120,45,108,97,114,103,101,34,58,91,50,56,48,48,44,49,55,48,48,93,44,34,120,120,45,108,97,114,103,101,34,58,91,51,54,48,48,44,50,101,51,93,125,44,111,101,61,123,125,59,102,117,110,99,116,105,111,110,32,114,101,40,101,41,123,108,101,116,32,116,61,111,101,91,101,93,124,124,48,59,114,101,116,117,114,110,32,111,101,91,101,93,61,116,43,49,44,101,43,116,125,102,117,110,99,116,105,111,110,32,110,101,40,101,44,116,41,123,99,111,110,115,116,32,115,61,110,101,119,32,77,97,112,44,105,61,110,101,119,32,77,97,112,59,114,101,116,117,114,110,32,101,46,101,97,99,104,65,102,116,101,114,40,40,101,61,62,123,101,46,99,104,105,108,100,114,101,110,38,38,48,33,61,61,101,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,63,40,115,46,115,101,116,40,101,44,49,43,75,46,70,112,55,40,101,46,99,104,105,108,100,114,101,110,44,40,105,61,62,105,46,120,49,61,61,61,101,46,120,49,45,116,63,115,46,103,101,116,40,105,41,58,78,97,78,41,41,41,44,105,46,115,101,116,40,101,44,49,43,75,46,70,112,55,40,101,46,99,104,105,108,100,114,101,110,44,40,115,61,62,115,46,121,49,61,61,61,101,46,121,49,45,116,63,105,46,103,101,116,40,115,41,58,78,97,78,41,41,41,41,58,40,115,46,115,101,116,40,101,44,48,41,44,105,46,115,101,116,40,101,44,48,41,41,125,41,41,46,101,97,99,104,66,101,102,111,114,101,40,40,101,61,62,123,101,46,120,49,45,61,50,42,116,42,115,46,103,101,116,40,101,41,44,101,46,121,49,45,61,50,42,116,42,105,46,103,101,116,40,101,41,125,41,41,125,102,117,110,99,116,105,111,110,32,108,101,40,101,44,116,44,115,44,105,44,97,44,111,41,123,99,111,110,115,116,32,114,61,110,101,40,75,46,112,78,73,40,41,46,115,105,122,101,40,91,115,44,105,93,41,46,116,105,108,101,40,115,101,91,97,93,41,46,112,97,100,100,105,110,103,79,117,116,101,114,40,51,41,46,112,97,100,100,105,110,103,84,111,112,40,49,54,41,46,112,97,100,100,105,110,103,73,110,110,101,114,40,49,41,46,114,111,117,110,100,40,33,48,41,40,75,46,98,84,57,40,101,41,46,115,117,109,40,40,101,61,62,101,46,118,97,108,117,101,41,41,46,115,111,114,116,40,40,40,101,44,116,41,61,62,116,46,118,97,108,117,101,45,101,46,118,97,108,117,101,41,41,41,44,51,41,44,110,61,77,97,116,104,46,109,97,120,40,46,46,46,114,46,100,101,115,99,101,110,100,97,110,116,115,40,41,46,109,97,112,40,40,101,61,62,101,46,100,101,112,116,104,41,41,41,44,108,61,75,46,99,74,121,40,91,110,44,45,49,93,44,105,101,91,111,93,41,59,116,46,97,112,112,101,110,100,40,34,102,105,108,116,101,114,34,41,46,97,116,116,114,40,34,105,100,34,44,34,115,104,97,100,111,119,34,41,46,97,112,112,101,110,100,40,34,102,101,68,114,111,112,83,104,97,100,111,119,34,41,46,97,116,116,114,40,34,102,108,111,111,100,45,111,112,97,99,105,116,121,34,44,46,51,41,46,97,116,116,114,40,34,100,120,34,44,48,41,46,97,116,116,114,40,34,115,116,100,68,101,118,105,97,116,105,111,110,34,44,51,41,59,99,111,110,115,116,32,99,61,116,46,115,101,108,101,99,116,65,108,108,40,34,103,34,41,46,100,97,116,97,40,75,46,98,49,66,40,41,46,107,101,121,40,40,101,61,62,101,46,100,101,112,116,104,41,41,46,115,111,114,116,75,101,121,115,40,75,46,106,50,112,41,46,101,110,116,114,105,101,115,40,114,46,100,101,115,99,101,110,100,97,110,116,115,40,41,41,41,46,106,111,105,110,40,34,103,34,41,46,97,116,116,114,40,34,102,105,108,116,101,114,34,44,34,117,114,108,40,35,115,104,97,100,111,119,41,34,41,46,115,101,108,101,99,116,65,108,108,40,34,103,34,41,46,100,97,116,97,40,40,101,61,62,101,46,118,97,108,117,101,115,41,41,46,106,111,105,110,40,34,103,34,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,40,101,61,62,96,116,114,97,110,115,108,97,116,101,40,36,123,101,46,120,48,125,44,36,123,101,46,121,48,125,41,96,41,41,59,99,46,97,112,112,101,110,100,40,34,116,105,116,108,101,34,41,46,116,101,120,116,40,40,101,61,62,96,36,123,101,46,97,110,99,101,115,116,111,114,115,40,41,46,114,101,118,101,114,115,101,40,41,46,115,112,108,105,99,101,40,49,41,46,109,97,112,40,40,101,61,62,101,46,100,97,116,97,46,110,97,109,101,41,41,46,106,111,105,110,40,34,47,34,41,125,92,110,36,123,122,40,101,46,118,97,108,117,101,41,125,96,41,41,44,99,46,97,112,112,101,110,100,40,34,114,101,99,116,34,41,46,97,116,116,114,40,34,105,100,34,44,40,101,61,62,101,46,110,111,100,101,85,105,100,61,114,101,40,34,110,111,100,101,34,41,41,41,46,97,116,116,114,40,34,102,105,108,108,34,44,40,101,61,62,108,40,101,46,100,101,112,116,104,41,41,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,40,101,61,62,101,46,120,49,45,101,46,120,48,41,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,40,101,61,62,101,46,121,49,45,101,46,121,48,41,41,44,99,46,97,112,112,101,110,100,40,34,99,108,105,112,80,97,116,104,34,41,46,97,116,116,114,40,34,105,100,34,44,40,101,61,62,101,46,99,108,105,112,85,105,100,61,114,101,40,34,99,108,105,112,34,41,41,41,46,97,112,112,101,110,100,40,34,117,115,101,34,41,46,97,116,116,114,40,34,104,114,101,102,34,44,40,101,61,62,96,35,36,123,101,46,110,111,100,101,85,105,100,125,96,41,41,44,99,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,46,97,116,116,114,40,34,102,105,108,108,34,44,40,101,61,62,75,46,89,109,55,40,108,40,101,46,100,101,112,116,104,41,41,46,108,62,46,53,63,34,35,51,51,51,34,58,34,35,101,101,101,34,41,41,46,97,116,116,114,40,34,99,108,105,112,45,112,97,116,104,34,44,40,101,61,62,96,117,114,108,40,35,36,123,101,46,99,108,105,112,85,105,100,125,41,96,41,41,46,115,101,108,101,99,116,65,108,108,40,34,116,115,112,97,110,34,41,46,100,97,116,97,40,40,101,61,62,91,101,46,100,97,116,97,46,110,97,109,101,44,122,40,101,46,118,97,108,117,101,41,93,41,41,46,106,111,105,110,40,34,116,115,112,97,110,34,41,46,116,101,120,116,40,40,101,61,62,101,41,41,44,99,46,102,105,108,116,101,114,40,40,101,61,62,101,46,99,104,105,108,100,114,101,110,41,41,46,115,101,108,101,99,116,65,108,108,40,34,116,115,112,97,110,34,41,46,97,116,116,114,40,34,100,120,34,44,51,41,46,97,116,116,114,40,34,121,34,44,49,51,41,44,99,46,102,105,108,116,101,114,40,40,101,61,62,33,101,46,99,104,105,108,100,114,101,110,41,41,46,115,101,108,101,99,116,65,108,108,40,34,116,115,112,97,110,34,41,46,97,116,116,114,40,34,120,34,44,51,41,46,97,116,116,114,40,34,121,34,44,40,40,101,44,116,41,61,62,40,48,61,61,61,116,63,49,46,49,58,50,46,51,41,43,34,101,109,34,41,41,125,102,117,110,99,116,105,111,110,32,99,101,40,101,44,116,44,115,44,105,44,97,44,111,44,114,41,123,99,111,110,115,116,32,110,61,75,46,80,75,112,40,75,46,67,110,49,41,44,108,61,75,46,112,78,73,40,41,46,116,105,108,101,40,115,101,91,111,93,41,46,115,105,122,101,40,91,115,44,105,93,41,46,112,97,100,100,105,110,103,40,49,41,46,114,111,117,110,100,40,33,48,41,40,75,46,98,84,57,40,101,41,46,115,117,109,40,40,101,61,62,101,46,118,97,108,117,101,41,41,46,115,111,114,116,40,40,40,101,44,116,41,61,62,116,46,118,97,108,117,101,45,101,46,118,97,108,117,101,41,41,41,44,99,61,116,46,115,101,108,101,99,116,65,108,108,40,34,103,34,41,46,100,97,116,97,40,108,46,108,101,97,118,101,115,40,41,41,46,106,111,105,110,40,34,103,34,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,40,101,61,62,96,116,114,97,110,115,108,97,116,101,40,36,123,101,46,120,48,125,44,36,123,101,46,121,48,125,41,96,41,41,59,99,46,97,112,112,101,110,100,40,34,116,105,116,108,101,34,41,46,116,101,120,116,40,40,101,61,62,96,36,123,101,46,97,110,99,101,115,116,111,114,115,40,41,46,114,101,118,101,114,115,101,40,41,46,109,97,112,40,40,101,61,62,101,46,100,97,116,97,46,110,97,109,101,41,41,46,106,111,105,110,40,34,47,34,41,125,92,110,36,123,122,40,101,46,118,97,108,117,101,41,125,96,41,41,44,99,46,97,112,112,101,110,100,40,34,114,101,99,116,34,41,46,97,116,116,114,40,34,105,100,34,44,40,101,61,62,101,46,108,101,97,102,85,105,100,61,114,101,40,34,108,101,97,102,34,41,41,41,46,97,116,116,114,40,34,102,105,108,108,34,44,40,101,61,62,123,119,104,105,108,101,40,101,46,100,101,112,116,104,62,97,41,101,61,101,46,112,97,114,101,110,116,59,114,101,116,117,114,110,32,110,40,101,46,100,97,116,97,46,110,97,109,101,41,125,41,41,46,97,116,116,114,40,34,102,105,108,108,45,111,112,97,99,105,116,121,34,44,114,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,40,101,61,62,101,46,120,49,45,101,46,120,48,41,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,40,101,61,62,101,46,121,49,45,101,46,121,48,41,41,44,99,46,97,112,112,101,110,100,40,34,99,108,105,112,80,97,116,104,34,41,46,97,116,116,114,40,34,105,100,34,44,40,101,61,62,101,46,99,108,105,112,85,105,100,61,114,101,40,34,99,108,105,112,34,41,41,41,46,97,112,112,101,110,100,40,34,117,115,101,34,41,46,97,116,116,114,40,34,104,114,101,102,34,44,40,101,61,62,96,35,36,123,101,46,108,101,97,102,85,105,100,125,96,41,41,44,99,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,46,97,116,116,114,40,34,99,108,105,112,45,112,97,116,104,34,44,40,101,61,62,96,117,114,108,40,35,36,123,101,46,99,108,105,112,85,105,100,125,41,96,41,41,46,115,101,108,101,99,116,65,108,108,40,34,116,115,112,97,110,34,41,46,100,97,116,97,40,40,101,61,62,40,34,46,34,61,61,61,101,46,100,97,116,97,46,110,97,109,101,38,38,40,101,61,101,46,112,97,114,101,110,116,41,44,91,101,46,100,97,116,97,46,110,97,109,101,44,122,40,101,46,118,97,108,117,101,41,93,41,41,41,46,106,111,105,110,40,34,116,115,112,97,110,34,41,46,97,116,116,114,40,34,120,34,44,50,41,46,97,116,116,114,40,34,121,34,44,40,40,101,44,116,41,61,62,40,48,61,61,61,116,63,49,46,49,58,50,46,51,41,43,34,101,109,34,41,41,46,116,101,120,116,40,40,101,61,62,101,41,41,125,102,117,110,99,116,105,111,110,32,100,101,40,101,44,116,44,115,41,123,116,101,40,41,46,116,111,66,108,111,98,40,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,116,114,101,101,109,97,112,34,41,44,123,119,105,100,116,104,58,116,44,104,101,105,103,104,116,58,115,125,41,46,116,104,101,110,40,40,102,117,110,99,116,105,111,110,40,116,41,123,108,101,116,32,115,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,97,34,41,44,105,61,85,82,76,46,99,114,101,97,116,101,79,98,106,101,99,116,85,82,76,40,116,41,59,115,46,104,114,101,102,61,105,44,115,46,100,111,119,110,108,111,97,100,61,96,36,123,101,125,95,116,114,101,101,109,97,112,46,112,110,103,96,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,115,41,44,115,46,99,108,105,99,107,40,41,44,115,101,116,84,105,109,101,111,117,116,40,40,102,117,110,99,116,105,111,110,40,41,123,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,115,41,44,119,105,110,100,111,119,46,85,82,76,46,114,101,118,111,107,101,79,98,106,101,99,116,85,82,76,40,105,41,125,41,44,48,41,125,41,41,125,118,97,114,32,117,101,61,123,110,97,109,101,58,34,68,51,84,114,101,101,109,97,112,34,44,112,114,111,112,115,58,91,34,105,110,100,101,120,73,100,34,93,44,119,97,116,99,104,58,123,105,110,100,101,120,73,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,125,125,44,109,111,117,110,116,101,100,40,41,123,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,125,44,109,101,116,104,111,100,115,58,123,117,112,100,97,116,101,40,101,41,123,99,111,110,115,116,32,116,61,97,101,91,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,93,91,48,93,44,115,61,97,101,91,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,93,91,49,93,44,105,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,44,97,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,44,111,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,44,114,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,84,121,112,101,44,110,61,75,46,89,115,40,34,35,116,114,101,101,109,97,112,34,41,59,110,46,115,101,108,101,99,116,65,108,108,40,34,42,34,41,46,114,101,109,111,118,101,40,41,44,110,46,97,116,116,114,40,34,118,105,101,119,66,111,120,34,44,91,48,44,48,44,116,44,115,93,41,46,97,116,116,114,40,34,120,109,108,110,115,34,44,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,41,46,97,116,116,114,40,34,120,109,108,110,115,58,120,108,105,110,107,34,44,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,41,46,97,116,116,114,40,34,118,101,114,115,105,111,110,34,44,34,49,46,49,34,41,46,115,116,121,108,101,40,34,111,118,101,114,102,108,111,119,34,44,34,118,105,115,105,98,108,101,34,41,46,115,116,121,108,101,40,34,102,111,110,116,34,44,34,49,48,112,120,32,115,97,110,115,45,115,101,114,105,102,34,41,44,75,46,103,121,110,40,70,46,103,101,116,84,114,101,101,109,97,112,67,115,118,85,114,108,40,101,41,41,46,116,104,101,110,40,40,101,61,62,123,105,102,40,101,46,102,111,114,69,97,99,104,40,40,101,61,62,123,101,46,116,97,120,111,110,111,109,121,61,101,46,112,97,116,104,46,115,112,108,105,116,40,34,47,34,41,44,101,46,115,105,122,101,61,78,117,109,98,101,114,40,101,46,115,105,122,101,41,125,41,41,44,34,99,97,115,99,97,100,101,100,34,61,61,61,114,41,123,99,111,110,115,116,32,97,61,88,40,101,44,33,49,41,59,108,101,40,97,44,110,44,116,44,115,44,105,44,111,41,125,101,108,115,101,123,99,111,110,115,116,32,111,61,88,40,101,46,115,111,114,116,40,40,40,101,44,116,41,61,62,116,46,116,97,120,111,110,111,109,121,46,108,101,110,103,116,104,45,101,46,116,97,120,111,110,111,109,121,46,108,101,110,103,116,104,41,41,44,33,48,41,44,114,61,34,98,108,97,99,107,34,61,61,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,104,101,109,101,63,46,57,58,46,54,59,99,101,40,111,44,110,44,116,44,115,44,97,44,105,44,114,41,125,125,41,41,125,44,100,111,119,110,108,111,97,100,84,114,101,101,109,97,112,40,41,123,99,111,110,115,116,32,101,61,97,101,91,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,93,91,48,93,44,116,61,97,101,91,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,93,91,49,93,59,100,101,40,116,104,105,115,46,105,110,100,101,120,73,100,44,101,44,116,41,125,125,125,44,104,101,61,117,101,44,112,101,61,40,48,44,112,46,90,41,40,104,101,44,87,44,89,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,109,101,61,112,101,46,101,120,112,111,114,116,115,44,103,101,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,98,45,112,114,111,103,114,101,115,115,34,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,34,49,34,44,109,97,120,58,34,49,34,44,97,110,105,109,97,116,101,100,58,34,34,125,125,41,125,44,102,101,61,91,93,44,98,101,61,123,125,44,118,101,61,40,48,44,112,46,90,41,40,98,101,44,103,101,44,102,101,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,120,101,61,118,101,46,101,120,112,111,114,116,115,44,121,101,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,103,114,97,112,104,34,125,44,91,115,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,105,100,58,34,97,103,103,45,109,105,109,101,45,99,111,117,110,116,34,125,125,41,93,41,125,44,95,101,61,91,93,59,99,111,110,115,116,32,84,101,61,75,46,87,85,90,40,34,126,115,34,41,44,83,101,61,50,48,44,119,101,61,75,46,80,75,112,40,75,46,67,110,49,41,59,102,117,110,99,116,105,111,110,32,36,101,40,101,44,116,44,115,44,105,41,123,99,111,110,115,116,32,97,61,123,116,111,112,58,53,48,44,114,105,103,104,116,58,48,44,98,111,116,116,111,109,58,49,48,44,108,101,102,116,58,77,97,116,104,46,109,97,120,40,54,42,75,46,70,112,55,40,101,46,115,111,114,116,40,40,40,101,44,116,41,61,62,116,46,99,111,117,110,116,45,101,46,99,111,117,110,116,41,41,46,115,108,105,99,101,40,48,44,49,53,41,44,40,101,61,62,101,46,109,105,109,101,46,108,101,110,103,116,104,41,41,44,54,42,75,46,70,112,55,40,101,46,115,111,114,116,40,40,40,101,44,116,41,61,62,116,46,115,105,122,101,45,101,46,115,105,122,101,41,41,46,115,108,105,99,101,40,48,44,49,53,41,44,40,101,61,62,101,46,109,105,109,101,46,108,101,110,103,116,104,41,41,41,125,59,101,46,102,111,114,69,97,99,104,40,40,101,61,62,123,101,46,110,97,109,101,61,101,46,109,105,109,101,44,101,46,118,97,108,117,101,61,78,117,109,98,101,114,40,101,46,99,111,117,110,116,41,125,41,41,44,101,61,101,46,115,111,114,116,40,40,40,101,44,116,41,61,62,116,46,118,97,108,117,101,45,101,46,118,97,108,117,101,41,41,46,115,108,105,99,101,40,48,44,49,53,41,59,99,111,110,115,116,32,111,61,53,53,48,44,114,61,77,97,116,104,46,99,101,105,108,40,40,101,46,108,101,110,103,116,104,43,46,49,41,42,83,101,41,43,97,46,116,111,112,43,97,46,98,111,116,116,111,109,59,116,46,115,101,108,101,99,116,65,108,108,40,34,42,34,41,46,114,101,109,111,118,101,40,41,44,116,46,97,116,116,114,40,34,118,105,101,119,66,111,120,34,44,91,48,44,48,44,111,44,114,93,41,59,99,111,110,115,116,32,110,61,75,46,116,105,65,40,41,46,100,111,109,97,105,110,40,75,46,119,54,72,40,101,46,108,101,110,103,116,104,41,41,46,114,97,110,103,101,82,111,117,110,100,40,91,97,46,116,111,112,44,114,45,97,46,98,111,116,116,111,109,93,41,44,108,61,75,46,66,89,85,40,41,46,100,111,109,97,105,110,40,91,48,44,75,46,70,112,55,40,101,44,40,101,61,62,101,46,118,97,108,117,101,41,41,93,41,46,114,97,110,103,101,40,91,97,46,108,101,102,116,44,111,45,97,46,114,105,103,104,116,93,41,59,116,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,102,105,108,108,45,111,112,97,99,105,116,121,34,44,115,41,46,115,101,108,101,99,116,65,108,108,40,34,114,101,99,116,34,41,46,100,97,116,97,40,101,41,46,106,111,105,110,40,34,114,101,99,116,34,41,46,97,116,116,114,40,34,102,105,108,108,34,44,40,101,61,62,119,101,40,101,46,110,97,109,101,41,41,41,46,97,116,116,114,40,34,120,34,44,108,40,48,41,41,46,97,116,116,114,40,34,121,34,44,40,40,101,44,116,41,61,62,110,40,116,41,41,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,40,101,61,62,108,40,101,46,118,97,108,117,101,41,45,108,40,48,41,41,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,110,46,98,97,110,100,119,105,100,116,104,40,41,41,46,97,112,112,101,110,100,40,34,116,105,116,108,101,34,41,46,116,101,120,116,40,40,101,61,62,75,46,87,85,90,40,34,44,34,41,40,101,46,118,97,108,117,101,41,41,41,44,116,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,96,116,114,97,110,115,108,97,116,101,40,48,44,36,123,97,46,116,111,112,125,41,96,41,46,99,97,108,108,40,75,46,70,53,113,40,108,41,46,116,105,99,107,115,40,111,47,56,48,44,101,46,102,111,114,109,97,116,41,46,116,105,99,107,70,111,114,109,97,116,40,84,101,41,41,46,99,97,108,108,40,40,101,61,62,101,46,115,101,108,101,99,116,40,34,46,100,111,109,97,105,110,34,41,46,114,101,109,111,118,101,40,41,41,41,44,116,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,96,116,114,97,110,115,108,97,116,101,40,36,123,97,46,108,101,102,116,125,44,48,41,96,41,46,99,97,108,108,40,75,46,121,52,79,40,110,41,46,116,105,99,107,70,111,114,109,97,116,40,40,116,61,62,101,91,116,93,46,110,97,109,101,41,41,46,116,105,99,107,83,105,122,101,79,117,116,101,114,40,48,41,41,44,116,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,46,97,116,116,114,40,34,120,34,44,111,47,50,41,46,97,116,116,114,40,34,121,34,44,97,46,116,111,112,47,50,41,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,34,109,105,100,100,108,101,34,41,46,115,116,121,108,101,40,34,102,111,110,116,45,115,105,122,101,34,44,34,49,54,112,120,34,41,46,116,101,120,116,40,105,41,125,118,97,114,32,67,101,61,123,110,97,109,101,58,34,68,51,77,105,109,101,66,97,114,83,105,122,101,34,44,112,114,111,112,115,58,91,34,105,110,100,101,120,73,100,34,93,44,109,111,117,110,116,101,100,40,41,123,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,125,44,119,97,116,99,104,58,123,105,110,100,101,120,73,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,125,125,44,109,101,116,104,111,100,115,58,123,117,112,100,97,116,101,40,101,41,123,99,111,110,115,116,32,116,61,75,46,89,115,40,34,35,97,103,103,45,109,105,109,101,45,99,111,117,110,116,34,41,44,115,61,34,98,108,97,99,107,34,61,61,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,104,101,109,101,63,46,57,58,46,54,59,75,46,103,121,110,40,70,46,103,101,116,77,105,109,101,67,115,118,85,114,108,40,101,41,41,46,116,104,101,110,40,40,101,61,62,123,36,101,40,101,46,115,108,105,99,101,40,41,44,116,44,115,44,116,104,105,115,46,36,116,40,34,100,51,46,109,105,109,101,67,111,117,110,116,34,41,41,125,41,41,125,125,125,44,107,101,61,67,101,44,122,101,61,40,48,44,112,46,90,41,40,107,101,44,121,101,44,95,101,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,77,101,61,122,101,46,101,120,112,111,114,116,115,44,73,101,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,103,114,97,112,104,34,125,44,91,115,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,105,100,58,34,97,103,103,45,109,105,109,101,45,115,105,122,101,34,125,125,41,93,41,125,44,76,101,61,91,93,59,99,111,110,115,116,32,68,101,61,75,46,87,85,90,40,34,126,115,34,41,44,79,101,61,50,48,44,80,101,61,75,46,80,75,112,40,75,46,67,110,49,41,59,102,117,110,99,116,105,111,110,32,113,101,40,101,44,116,44,115,44,105,41,123,99,111,110,115,116,32,97,61,123,116,111,112,58,53,48,44,114,105,103,104,116,58,48,44,98,111,116,116,111,109,58,49,48,44,108,101,102,116,58,77,97,116,104,46,109,97,120,40,54,42,75,46,70,112,55,40,101,46,115,111,114,116,40,40,40,101,44,116,41,61,62,116,46,99,111,117,110,116,45,101,46,99,111,117,110,116,41,41,46,115,108,105,99,101,40,48,44,49,53,41,44,40,101,61,62,101,46,109,105,109,101,46,108,101,110,103,116,104,41,41,44,54,42,75,46,70,112,55,40,101,46,115,111,114,116,40,40,40,101,44,116,41,61,62,116,46,115,105,122,101,45,101,46,115,105,122,101,41,41,46,115,108,105,99,101,40,48,44,49,53,41,44,40,101,61,62,101,46,109,105,109,101,46,108,101,110,103,116,104,41,41,41,125,59,101,46,102,111,114,69,97,99,104,40,40,101,61,62,123,101,46,110,97,109,101,61,101,46,109,105,109,101,44,101,46,118,97,108,117,101,61,78,117,109,98,101,114,40,101,46,115,105,122,101,41,125,41,41,44,101,61,101,46,115,111,114,116,40,40,40,101,44,116,41,61,62,116,46,118,97,108,117,101,45,101,46,118,97,108,117,101,41,41,46,115,108,105,99,101,40,48,44,49,53,41,59,99,111,110,115,116,32,111,61,53,53,48,44,114,61,77,97,116,104,46,99,101,105,108,40,40,101,46,108,101,110,103,116,104,43,46,49,41,42,79,101,41,43,97,46,116,111,112,43,97,46,98,111,116,116,111,109,59,116,46,115,101,108,101,99,116,65,108,108,40,34,42,34,41,46,114,101,109,111,118,101,40,41,44,116,46,97,116,116,114,40,34,118,105,101,119,66,111,120,34,44,91,48,44,48,44,111,44,114,93,41,59,99,111,110,115,116,32,110,61,75,46,116,105,65,40,41,46,100,111,109,97,105,110,40,75,46,119,54,72,40,101,46,108,101,110,103,116,104,41,41,46,114,97,110,103,101,82,111,117,110,100,40,91,97,46,116,111,112,44,114,45,97,46,98,111,116,116,111,109,93,41,44,108,61,75,46,66,89,85,40,41,46,100,111,109,97,105,110,40,91,48,44,75,46,70,112,55,40,101,44,40,101,61,62,101,46,118,97,108,117,101,41,41,93,41,46,114,97,110,103,101,40,91,97,46,108,101,102,116,44,111,45,97,46,114,105,103,104,116,93,41,59,116,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,102,105,108,108,45,111,112,97,99,105,116,121,34,44,115,41,46,115,101,108,101,99,116,65,108,108,40,34,114,101,99,116,34,41,46,100,97,116,97,40,101,41,46,106,111,105,110,40,34,114,101,99,116,34,41,46,97,116,116,114,40,34,102,105,108,108,34,44,40,101,61,62,80,101,40,101,46,110,97,109,101,41,41,41,46,97,116,116,114,40,34,120,34,44,108,40,48,41,41,46,97,116,116,114,40,34,121,34,44,40,40,101,44,116,41,61,62,110,40,116,41,41,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,40,101,61,62,108,40,101,46,118,97,108,117,101,41,45,108,40,48,41,41,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,110,46,98,97,110,100,119,105,100,116,104,40,41,41,46,97,112,112,101,110,100,40,34,116,105,116,108,101,34,41,46,116,101,120,116,40,40,101,61,62,68,101,40,101,46,118,97,108,117,101,41,41,41,44,116,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,96,116,114,97,110,115,108,97,116,101,40,48,44,36,123,97,46,116,111,112,125,41,96,41,46,99,97,108,108,40,75,46,70,53,113,40,108,41,46,116,105,99,107,115,40,111,47,56,48,44,101,46,102,111,114,109,97,116,41,46,116,105,99,107,70,111,114,109,97,116,40,68,101,41,41,46,99,97,108,108,40,40,101,61,62,101,46,115,101,108,101,99,116,40,34,46,100,111,109,97,105,110,34,41,46,114,101,109,111,118,101,40,41,41,41,44,116,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,96,116,114,97,110,115,108,97,116,101,40,36,123,97,46,108,101,102,116,125,44,48,41,96,41,46,99,97,108,108,40,75,46,121,52,79,40,110,41,46,116,105,99,107,70,111,114,109,97,116,40,40,116,61,62,101,91,116,93,46,110,97,109,101,41,41,46,116,105,99,107,83,105,122,101,79,117,116,101,114,40,48,41,41,44,116,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,46,97,116,116,114,40,34,120,34,44,111,47,50,41,46,97,116,116,114,40,34,121,34,44,97,46,116,111,112,47,50,41,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,34,109,105,100,100,108,101,34,41,46,115,116,121,108,101,40,34,102,111,110,116,45,115,105,122,101,34,44,34,49,54,112,120,34,41,46,116,101,120,116,40,105,41,125,118,97,114,32,69,101,61,123,110,97,109,101,58,34,68,51,77,105,109,101,66,97,114,83,105,122,101,34,44,112,114,111,112,115,58,91,34,105,110,100,101,120,73,100,34,93,44,109,111,117,110,116,101,100,40,41,123,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,125,44,119,97,116,99,104,58,123,105,110,100,101,120,73,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,125,125,44,109,101,116,104,111,100,115,58,123,117,112,100,97,116,101,40,101,41,123,99,111,110,115,116,32,116,61,75,46,89,115,40,34,35,97,103,103,45,109,105,109,101,45,115,105,122,101,34,41,44,115,61,34,98,108,97,99,107,34,61,61,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,84,104,101,109,101,63,46,57,58,46,54,59,75,46,103,121,110,40,70,46,103,101,116,77,105,109,101,67,115,118,85,114,108,40,101,41,41,46,116,104,101,110,40,40,101,61,62,123,113,101,40,101,46,115,108,105,99,101,40,41,44,116,44,115,44,116,104,105,115,46,36,116,40,34,100,51,46,109,105,109,101,83,105,122,101,34,41,41,125,41,41,125,125,125,44,65,101,61,69,101,44,72,101,61,40,48,44,112,46,90,41,40,65,101,44,73,101,44,76,101,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,85,101,61,72,101,46,101,120,112,111,114,116,115,44,66,101,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,103,114,97,112,104,34,125,44,91,115,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,105,100,58,34,100,97,116,101,45,104,105,115,116,111,103,114,97,109,34,125,125,41,93,41,125,44,70,101,61,91,93,59,99,111,110,115,116,32,78,101,61,75,46,87,85,90,40,34,126,115,34,41,59,102,117,110,99,116,105,111,110,32,82,101,40,101,44,116,44,115,41,123,108,101,116,32,105,61,101,46,109,97,112,40,40,101,61,62,40,123,108,101,110,103,116,104,58,78,117,109,98,101,114,40,101,46,99,111,117,110,116,41,44,120,48,58,78,117,109,98,101,114,40,101,46,98,117,99,107,101,116,41,44,120,49,58,78,117,109,98,101,114,40,101,46,98,117,99,107,101,116,41,43,50,54,50,57,56,48,48,125,41,41,41,59,105,46,115,111,114,116,40,40,40,101,44,116,41,61,62,101,46,108,101,110,103,116,104,45,116,46,108,101,110,103,116,104,41,41,59,99,111,110,115,116,32,97,61,123,116,111,112,58,53,48,44,114,105,103,104,116,58,50,48,44,98,111,116,116,111,109,58,55,48,44,108,101,102,116,58,52,48,125,44,111,61,75,46,86,82,103,40,105,44,46,57,44,40,101,61,62,101,46,108,101,110,103,116,104,41,41,59,105,61,105,46,102,105,108,116,101,114,40,40,101,61,62,101,46,108,101,110,103,116,104,62,111,41,41,59,99,111,110,115,116,32,114,61,53,53,48,44,110,61,52,53,48,59,116,46,115,101,108,101,99,116,65,108,108,40,34,42,34,41,46,114,101,109,111,118,101,40,41,44,116,46,97,116,116,114,40,34,118,105,101,119,66,111,120,34,44,91,48,44,48,44,114,44,110,93,41,59,99,111,110,115,116,32,108,61,75,46,66,89,85,40,41,46,100,111,109,97,105,110,40,91,48,44,75,46,70,112,55,40,105,44,40,101,61,62,101,46,108,101,110,103,116,104,41,41,93,41,46,110,105,99,101,40,41,46,114,97,110,103,101,40,91,110,45,97,46,98,111,116,116,111,109,44,97,46,116,111,112,93,41,44,99,61,75,46,66,89,85,40,41,46,100,111,109,97,105,110,40,75,46,87,101,109,40,105,44,40,101,61,62,101,46,120,48,41,41,41,46,110,105,99,101,40,41,46,114,97,110,103,101,40,91,97,46,108,101,102,116,44,114,45,97,46,114,105,103,104,116,93,41,59,116,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,115,116,101,101,108,98,108,117,101,34,41,46,115,101,108,101,99,116,65,108,108,40,34,114,101,99,116,34,41,46,100,97,116,97,40,105,41,46,106,111,105,110,40,34,114,101,99,116,34,41,46,97,116,116,114,40,34,120,34,44,40,101,61,62,99,40,101,46,120,48,41,43,49,41,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,40,101,61,62,77,97,116,104,46,109,97,120,40,49,44,99,40,101,46,120,49,41,45,99,40,101,46,120,48,41,45,49,41,41,41,46,97,116,116,114,40,34,121,34,44,40,101,61,62,108,40,101,46,108,101,110,103,116,104,41,41,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,40,101,61,62,108,40,48,41,45,108,40,101,46,108,101,110,103,116,104,41,41,41,46,99,97,108,108,40,40,101,61,62,101,46,97,112,112,101,110,100,40,34,116,105,116,108,101,34,41,46,116,101,120,116,40,40,101,61,62,101,46,108,101,110,103,116,104,41,41,41,41,44,116,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,96,116,114,97,110,115,108,97,116,101,40,48,44,36,123,110,45,97,46,98,111,116,116,111,109,125,41,96,41,46,99,97,108,108,40,75,46,76,76,117,40,99,41,46,116,105,99,107,115,40,114,47,51,48,41,46,116,105,99,107,83,105,122,101,79,117,116,101,114,40,48,41,46,116,105,99,107,70,111,114,109,97,116,40,40,101,61,62,75,46,105,36,90,40,34,37,89,45,37,109,45,37,100,34,41,40,75,46,119,112,57,40,34,37,115,34,41,40,101,41,41,41,41,41,46,99,97,108,108,40,40,101,61,62,101,46,115,101,108,101,99,116,65,108,108,40,34,116,101,120,116,34,41,46,115,116,121,108,101,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,34,101,110,100,34,41,46,97,116,116,114,40,34,100,120,34,44,34,45,46,56,101,109,34,41,46,97,116,116,114,40,34,100,121,34,44,34,46,49,53,101,109,34,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,34,114,111,116,97,116,101,40,45,54,53,41,34,41,41,41,46,99,97,108,108,40,40,101,61,62,101,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,46,97,116,116,114,40,34,120,34,44,114,45,97,46,114,105,103,104,116,41,46,97,116,116,114,40,34,121,34,44,45,52,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,46,97,116,116,114,40,34,102,111,110,116,45,119,101,105,103,104,116,34,44,34,98,111,108,100,34,41,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,34,101,110,100,34,41,46,116,101,120,116,40,34,109,116,105,109,101,34,41,41,41,44,116,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,96,116,114,97,110,115,108,97,116,101,40,36,123,97,46,108,101,102,116,125,44,48,41,96,41,46,99,97,108,108,40,75,46,121,52,79,40,108,41,46,116,105,99,107,115,40,110,47,52,48,41,46,116,105,99,107,70,111,114,109,97,116,40,40,101,61,62,78,101,40,101,41,41,41,41,46,99,97,108,108,40,40,101,61,62,101,46,115,101,108,101,99,116,40,34,46,100,111,109,97,105,110,34,41,46,114,101,109,111,118,101,40,41,41,41,46,99,97,108,108,40,40,101,61,62,101,46,115,101,108,101,99,116,40,34,46,116,105,99,107,58,108,97,115,116,45,111,102,45,116,121,112,101,32,116,101,120,116,34,41,46,99,108,111,110,101,40,41,46,97,116,116,114,40,34,120,34,44,52,41,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,34,115,116,97,114,116,34,41,46,97,116,116,114,40,34,102,111,110,116,45,119,101,105,103,104,116,34,44,34,98,111,108,100,34,41,46,116,101,120,116,40,34,70,105,108,101,32,99,111,117,110,116,34,41,41,41,44,116,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,46,97,116,116,114,40,34,120,34,44,114,47,50,41,46,97,116,116,114,40,34,121,34,44,97,46,116,111,112,47,50,41,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,34,109,105,100,100,108,101,34,41,46,115,116,121,108,101,40,34,102,111,110,116,45,115,105,122,101,34,44,34,49,54,112,120,34,41,46,116,101,120,116,40,115,41,125,118,97,114,32,86,101,61,123,110,97,109,101,58,34,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,34,44,112,114,111,112,115,58,91,34,105,110,100,101,120,73,100,34,93,44,109,111,117,110,116,101,100,40,41,123,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,125,44,119,97,116,99,104,58,123,105,110,100,101,120,73,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,125,125,44,109,101,116,104,111,100,115,58,123,117,112,100,97,116,101,40,101,41,123,99,111,110,115,116,32,116,61,75,46,89,115,40,34,35,100,97,116,101,45,104,105,115,116,111,103,114,97,109,34,41,59,75,46,103,121,110,40,70,46,103,101,116,68,97,116,101,67,115,118,40,101,41,41,46,116,104,101,110,40,40,101,61,62,123,82,101,40,101,46,115,108,105,99,101,40,41,44,116,44,116,104,105,115,46,36,116,40,34,100,51,46,100,97,116,101,72,105,115,116,111,103,114,97,109,34,41,41,125,41,41,125,125,125,44,90,101,61,86,101,44,81,101,61,40,48,44,112,46,90,41,40,90,101,44,66,101,44,70,101,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,71,101,61,81,101,46,101,120,112,111,114,116,115,44,106,101,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,103,114,97,112,104,34,125,44,91,115,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,105,100,58,34,115,105,122,101,45,104,105,115,116,111,103,114,97,109,34,125,125,41,93,41,125,44,87,101,61,91,93,59,99,111,110,115,116,32,89,101,61,75,46,87,85,90,40,34,126,115,34,41,59,102,117,110,99,116,105,111,110,32,75,101,40,101,44,116,44,115,41,123,108,101,116,32,105,61,101,46,109,97,112,40,40,101,61,62,40,123,108,101,110,103,116,104,58,78,117,109,98,101,114,40,101,46,99,111,117,110,116,41,44,120,48,58,78,117,109,98,101,114,40,101,46,98,117,99,107,101,116,41,44,120,49,58,78,117,109,98,101,114,40,101,46,98,117,99,107,101,116,41,43,53,50,52,50,56,56,48,125,41,41,41,59,105,61,105,46,115,111,114,116,40,40,40,101,44,116,41,61,62,116,46,108,101,110,103,116,104,45,101,46,108,101,110,103,116,104,41,41,46,115,108,105,99,101,40,48,44,50,53,41,59,99,111,110,115,116,32,97,61,123,116,111,112,58,53,48,44,114,105,103,104,116,58,50,48,44,98,111,116,116,111,109,58,55,48,44,108,101,102,116,58,52,48,125,44,111,61,53,53,48,44,114,61,52,53,48,59,116,46,115,101,108,101,99,116,65,108,108,40,34,42,34,41,46,114,101,109,111,118,101,40,41,44,116,46,97,116,116,114,40,34,118,105,101,119,66,111,120,34,44,91,48,44,48,44,111,44,114,93,41,59,99,111,110,115,116,32,110,61,75,46,66,89,85,40,41,46,100,111,109,97,105,110,40,91,48,44,75,46,70,112,55,40,105,44,40,101,61,62,101,46,108,101,110,103,116,104,41,41,93,41,46,114,97,110,103,101,40,91,114,45,97,46,98,111,116,116,111,109,44,97,46,116,111,112,93,41,44,108,61,75,46,66,89,85,40,41,46,100,111,109,97,105,110,40,75,46,87,101,109,40,105,44,40,101,61,62,101,46,120,48,41,41,41,46,110,105,99,101,40,41,46,114,97,110,103,101,40,91,97,46,108,101,102,116,44,111,45,97,46,114,105,103,104,116,93,41,59,116,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,115,116,101,101,108,98,108,117,101,34,41,46,115,101,108,101,99,116,65,108,108,40,34,114,101,99,116,34,41,46,100,97,116,97,40,105,41,46,106,111,105,110,40,34,114,101,99,116,34,41,46,97,116,116,114,40,34,120,34,44,40,101,61,62,108,40,101,46,120,48,41,43,49,41,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,40,101,61,62,77,97,116,104,46,109,97,120,40,49,44,108,40,101,46,120,49,41,45,108,40,101,46,120,48,41,45,49,41,41,41,46,97,116,116,114,40,34,121,34,44,40,101,61,62,110,40,101,46,108,101,110,103,116,104,41,41,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,40,101,61,62,110,40,48,41,45,110,40,101,46,108,101,110,103,116,104,41,41,41,46,99,97,108,108,40,40,101,61,62,101,46,97,112,112,101,110,100,40,34,116,105,116,108,101,34,41,46,116,101,120,116,40,40,101,61,62,101,46,108,101,110,103,116,104,41,41,41,41,44,116,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,96,116,114,97,110,115,108,97,116,101,40,48,44,36,123,114,45,97,46,98,111,116,116,111,109,125,41,96,41,46,99,97,108,108,40,75,46,76,76,117,40,108,41,46,116,105,99,107,115,40,111,47,51,48,41,46,116,105,99,107,83,105,122,101,79,117,116,101,114,40,48,41,46,116,105,99,107,70,111,114,109,97,116,40,89,101,41,41,46,99,97,108,108,40,40,101,61,62,101,46,115,101,108,101,99,116,65,108,108,40,34,116,101,120,116,34,41,46,115,116,121,108,101,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,34,101,110,100,34,41,46,97,116,116,114,40,34,100,120,34,44,34,45,46,56,101,109,34,41,46,97,116,116,114,40,34,100,121,34,44,34,46,49,53,101,109,34,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,34,114,111,116,97,116,101,40,45,54,53,41,34,41,41,41,46,99,97,108,108,40,40,101,61,62,101,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,46,97,116,116,114,40,34,120,34,44,111,45,97,46,114,105,103,104,116,41,46,97,116,116,114,40,34,121,34,44,45,52,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,46,97,116,116,114,40,34,102,111,110,116,45,119,101,105,103,104,116,34,44,34,98,111,108,100,34,41,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,34,101,110,100,34,41,46,116,101,120,116,40,34,115,105,122,101,32,40,98,121,116,101,115,41,34,41,41,41,44,116,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,96,116,114,97,110,115,108,97,116,101,40,36,123,97,46,108,101,102,116,125,44,48,41,96,41,46,99,97,108,108,40,75,46,121,52,79,40,110,41,46,116,105,99,107,115,40,114,47,52,48,41,46,116,105,99,107,70,111,114,109,97,116,40,40,101,61,62,89,101,40,101,41,41,41,41,46,99,97,108,108,40,40,101,61,62,101,46,115,101,108,101,99,116,40,34,46,100,111,109,97,105,110,34,41,46,114,101,109,111,118,101,40,41,41,41,46,99,97,108,108,40,40,101,61,62,101,46,115,101,108,101,99,116,40,34,46,116,105,99,107,58,108,97,115,116,45,111,102,45,116,121,112,101,32,116,101,120,116,34,41,46,99,108,111,110,101,40,41,46,97,116,116,114,40,34,120,34,44,52,41,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,34,115,116,97,114,116,34,41,46,97,116,116,114,40,34,102,111,110,116,45,119,101,105,103,104,116,34,44,34,98,111,108,100,34,41,46,116,101,120,116,40,34,70,105,108,101,32,99,111,117,110,116,34,41,41,41,44,116,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,46,97,116,116,114,40,34,120,34,44,111,47,50,41,46,97,116,116,114,40,34,121,34,44,97,46,116,111,112,47,50,41,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,34,109,105,100,100,108,101,34,41,46,115,116,121,108,101,40,34,102,111,110,116,45,115,105,122,101,34,44,34,49,54,112,120,34,41,46,116,101,120,116,40,115,41,125,118,97,114,32,74,101,61,123,110,97,109,101,58,34,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,34,44,112,114,111,112,115,58,91,34,105,110,100,101,120,73,100,34,93,44,109,111,117,110,116,101,100,40,41,123,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,125,44,119,97,116,99,104,58,123,105,110,100,101,120,73,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,117,112,100,97,116,101,40,116,104,105,115,46,105,110,100,101,120,73,100,41,125,125,44,109,101,116,104,111,100,115,58,123,117,112,100,97,116,101,40,101,41,123,99,111,110,115,116,32,116,61,75,46,89,115,40,34,35,115,105,122,101,45,104,105,115,116,111,103,114,97,109,34,41,59,75,46,103,121,110,40,70,46,103,101,116,83,105,122,101,67,115,118,40,101,41,41,46,116,104,101,110,40,40,101,61,62,123,75,101,40,101,46,115,108,105,99,101,40,41,44,116,44,116,104,105,115,46,36,116,40,34,100,51,46,115,105,122,101,72,105,115,116,111,103,114,97,109,34,41,41,125,41,41,125,125,125,44,88,101,61,74,101,44,101,116,61,40,48,44,112,46,90,41,40,88,101,44,106,101,44,87,101,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,116,116,61,101,116,46,101,120,112,111,114,116,115,44,115,116,61,123,99,111,109,112,111,110,101,110,116,115,58,123,68,51,83,105,122,101,72,105,115,116,111,103,114,97,109,58,116,116,44,68,51,68,97,116,101,72,105,115,116,111,103,114,97,109,58,71,101,44,68,51,77,105,109,101,66,97,114,83,105,122,101,58,85,101,44,68,51,77,105,109,101,66,97,114,67,111,117,110,116,58,77,101,44,68,51,84,114,101,101,109,97,112,58,109,101,44,80,114,101,108,111,97,100,101,114,58,120,101,125,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,108,111,97,100,105,110,103,58,33,48,44,115,101,108,101,99,116,101,100,73,110,100,101,120,58,110,117,108,108,44,105,110,100,105,99,101,115,58,91,93,125,125,44,99,111,109,112,117,116,101,100,58,123,105,110,100,101,120,79,112,116,105,111,110,115,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,46,109,97,112,40,40,101,61,62,40,123,116,101,120,116,58,101,46,110,97,109,101,44,118,97,108,117,101,58,101,46,105,100,125,41,41,41,125,125,44,109,111,117,110,116,101,100,40,41,123,70,46,103,101,116,83,105,115,116,50,73,110,102,111,40,41,46,116,104,101,110,40,40,101,61,62,123,116,104,105,115,46,105,110,100,105,99,101,115,61,101,46,105,110,100,105,99,101,115,44,116,104,105,115,46,108,111,97,100,105,110,103,61,33,49,125,41,41,125,125,44,105,116,61,115,116,44,97,116,61,40,48,44,112,46,90,41,40,105,116,44,71,44,106,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,111,116,61,97,116,46,101,120,112,111,114,116,115,44,114,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,46,99,111,110,102,105,103,76,111,97,100,105,110,103,63,101,46,95,101,40,41,58,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,111,110,116,97,105,110,101,114,34,44,115,116,97,116,105,99,83,116,121,108,101,58,123,34,109,97,114,103,105,110,45,108,101,102,116,34,58,34,97,117,116,111,34,44,34,109,97,114,103,105,110,45,114,105,103,104,116,34,58,34,97,117,116,111,34,125,125,44,91,115,40,34,98,45,99,97,114,100,34,44,91,115,40,34,98,45,99,97,114,100,45,116,105,116,108,101,34,44,91,115,40,34,71,101,97,114,73,99,111,110,34,41,44,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,99,111,110,102,105,103,34,41,41,43,34,32,34,41,93,44,49,41,44,115,40,34,112,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,99,111,110,102,105,103,68,101,115,99,114,105,112,116,105,111,110,34,41,41,41,93,41,44,115,40,34,98,45,99,97,114,100,45,98,111,100,121,34,44,91,115,40,34,104,52,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,100,105,115,112,108,97,121,79,112,116,105,111,110,115,34,41,41,41,93,41,44,115,40,34,98,45,99,97,114,100,34,44,91,115,40,34,108,97,98,101,108,34,44,91,115,40,34,76,97,110,103,117,97,103,101,73,99,111,110,34,41,44,115,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,34,118,101,114,116,105,99,97,108,45,97,108,105,103,110,34,58,34,109,105,100,100,108,101,34,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,108,97,110,103,34,41,41,41,93,41,93,44,49,41,44,115,40,34,98,45,102,111,114,109,45,115,101,108,101,99,116,34,44,123,97,116,116,114,115,58,123,111,112,116,105,111,110,115,58,101,46,108,97,110,103,79,112,116,105,111,110,115,44,118,97,108,117,101,58,101,46,111,112,116,76,97,110,103,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,76,97,110,103,125,125,41,44,115,40,34,108,97,98,101,108,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,116,104,101,109,101,34,41,41,41,93,41,44,115,40,34,98,45,102,111,114,109,45,115,101,108,101,99,116,34,44,123,97,116,116,114,115,58,123,111,112,116,105,111,110,115,58,101,46,116,104,101,109,101,79,112,116,105,111,110,115,44,118,97,108,117,101,58,101,46,111,112,116,84,104,101,109,101,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,84,104,101,109,101,125,125,41,44,115,40,34,108,97,98,101,108,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,100,105,115,112,108,97,121,77,111,100,101,34,41,41,41,93,41,44,115,40,34,98,45,102,111,114,109,45,115,101,108,101,99,116,34,44,123,97,116,116,114,115,58,123,111,112,116,105,111,110,115,58,101,46,100,105,115,112,108,97,121,77,111,100,101,79,112,116,105,111,110,115,44,118,97,108,117,101,58,101,46,111,112,116,68,105,115,112,108,97,121,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,68,105,115,112,108,97,121,125,125,41,44,115,40,34,108,97,98,101,108,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,99,111,108,117,109,110,115,34,41,41,41,93,41,44,115,40,34,98,45,102,111,114,109,45,115,101,108,101,99,116,34,44,123,97,116,116,114,115,58,123,111,112,116,105,111,110,115,58,101,46,99,111,108,117,109,110,115,79,112,116,105,111,110,115,44,118,97,108,117,101,58,101,46,111,112,116,67,111,108,117,109,110,115,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,67,111,108,117,109,110,115,125,125,41,44,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,104,101,105,103,104,116,58,34,49,48,112,120,34,125,125,41,44,115,40,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,34,44,123,97,116,116,114,115,58,123,99,104,101,99,107,101,100,58,101,46,111,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,108,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,34,44,123,97,116,116,114,115,58,123,99,104,101,99,107,101,100,58,101,46,111,112,116,72,105,100,101,76,101,103,97,99,121,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,72,105,100,101,76,101,103,97,99,121,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,104,105,100,101,76,101,103,97,99,121,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,34,44,123,97,116,116,114,115,58,123,99,104,101,99,107,101,100,58,101,46,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,117,112,100,97,116,101,77,105,109,101,77,97,112,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,34,44,123,97,116,116,114,115,58,123,99,104,101,99,107,101,100,58,101,46,111,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,117,115,101,68,97,116,101,80,105,99,107,101,114,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,34,44,123,97,116,116,114,115,58,123,99,104,101,99,107,101,100,58,101,46,111,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,115,105,109,112,108,101,76,105,103,104,116,98,111,120,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,34,44,123,97,116,116,114,115,58,123,99,104,101,99,107,101,100,58,101,46,111,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,115,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,34,41,41,43,34,32,34,41,93,41,93,44,49,41,44,115,40,34,98,114,34,41,44,115,40,34,104,52,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,115,101,97,114,99,104,79,112,116,105,111,110,115,34,41,41,41,93,41,44,115,40,34,98,45,99,97,114,100,34,44,91,115,40,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,34,44,123,97,116,116,114,115,58,123,99,104,101,99,107,101,100,58,101,46,111,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,104,105,100,101,68,117,112,108,105,99,97,116,101,115,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,34,44,123,97,116,116,114,115,58,123,99,104,101,99,107,101,100,58,101,46,111,112,116,72,105,103,104,108,105,103,104,116,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,72,105,103,104,108,105,103,104,116,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,104,105,103,104,108,105,103,104,116,34,41,41,41,93,41,44,115,40,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,34,44,123,97,116,116,114,115,58,123,99,104,101,99,107,101,100,58,101,46,111,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,116,97,103,79,114,79,112,101,114,97,116,111,114,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,34,44,123,97,116,116,114,115,58,123,99,104,101,99,107,101,100,58,101,46,111,112,116,70,117,122,122,121,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,70,117,122,122,121,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,102,117,122,122,121,34,41,41,41,93,41,44,115,40,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,34,44,123,97,116,116,114,115,58,123,99,104,101,99,107,101,100,58,101,46,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,83,101,97,114,99,104,73,110,80,97,116,104,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,115,101,97,114,99,104,73,110,80,97,116,104,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,34,44,123,97,116,116,114,115,58,123,99,104,101,99,107,101,100,58,101,46,111,112,116,83,117,103,103,101,115,116,80,97,116,104,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,83,117,103,103,101,115,116,80,97,116,104,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,115,117,103,103,101,115,116,80,97,116,104,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,114,34,41,44,115,40,34,108,97,98,101,108,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,102,114,97,103,109,101,110,116,83,105,122,101,34,41,41,41,93,41,44,115,40,34,98,45,102,111,114,109,45,105,110,112,117,116,34,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,101,46,111,112,116,70,114,97,103,109,101,110,116,83,105,122,101,44,115,116,101,112,58,34,49,48,34,44,116,121,112,101,58,34,110,117,109,98,101,114,34,44,109,105,110,58,34,48,34,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,70,114,97,103,109,101,110,116,83,105,122,101,125,125,41,44,115,40,34,108,97,98,101,108,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,114,101,115,117,108,116,83,105,122,101,34,41,41,41,93,41,44,115,40,34,98,45,102,111,114,109,45,105,110,112,117,116,34,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,101,46,111,112,116,82,101,115,117,108,116,83,105,122,101,44,116,121,112,101,58,34,110,117,109,98,101,114,34,44,109,105,110,58,34,49,48,34,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,82,101,115,117,108,116,83,105,122,101,125,125,41,44,115,40,34,108,97,98,101,108,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,113,117,101,114,121,77,111,100,101,34,41,41,41,93,41,44,115,40,34,98,45,102,111,114,109,45,115,101,108,101,99,116,34,44,123,97,116,116,114,115,58,123,111,112,116,105,111,110,115,58,101,46,113,117,101,114,121,77,111,100,101,79,112,116,105,111,110,115,44,118,97,108,117,101,58,101,46,111,112,116,81,117,101,114,121,77,111,100,101,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,81,117,101,114,121,77,111,100,101,125,125,41,44,115,40,34,108,97,98,101,108,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,115,108,105,100,101,68,117,114,97,116,105,111,110,34,41,41,41,93,41,44,115,40,34,98,45,102,111,114,109,45,105,110,112,117,116,34,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,101,46,111,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,44,116,121,112,101,58,34,110,117,109,98,101,114,34,44,109,105,110,58,34,49,34,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,125,125,41,44,115,40,34,108,97,98,101,108,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,118,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,34,41,41,41,93,41,44,115,40,34,98,45,102,111,114,109,45,105,110,112,117,116,34,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,101,46,111,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,44,116,121,112,101,58,34,110,117,109,98,101,114,34,44,109,105,110,58,34,53,48,34,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,125,125,41,93,44,49,41,44,115,40,34,104,52,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,116,45,51,34,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,116,114,101,101,109,97,112,79,112,116,105,111,110,115,34,41,41,41,93,41,44,115,40,34,98,45,99,97,114,100,34,44,91,115,40,34,108,97,98,101,108,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,116,114,101,101,109,97,112,84,121,112,101,34,41,41,41,93,41,44,115,40,34,98,45,102,111,114,109,45,115,101,108,101,99,116,34,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,101,46,111,112,116,84,114,101,101,109,97,112,84,121,112,101,44,111,112,116,105,111,110,115,58,101,46,116,114,101,101,109,97,112,84,121,112,101,79,112,116,105,111,110,115,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,84,114,101,101,109,97,112,84,121,112,101,125,125,41,44,115,40,34,108,97,98,101,108,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,116,114,101,101,109,97,112,84,105,108,105,110,103,34,41,41,41,93,41,44,115,40,34,98,45,102,111,114,109,45,115,101,108,101,99,116,34,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,101,46,111,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,44,111,112,116,105,111,110,115,58,101,46,116,114,101,101,109,97,112,84,105,108,105,110,103,79,112,116,105,111,110,115,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,125,125,41,44,115,40,34,108,97,98,101,108,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,116,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,34,41,41,41,93,41,44,115,40,34,98,45,102,111,114,109,45,105,110,112,117,116,34,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,101,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,44,116,121,112,101,58,34,110,117,109,98,101,114,34,44,109,105,110,58,34,49,34,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,125,125,41,44,115,40,34,108,97,98,101,108,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,116,114,101,101,109,97,112,83,105,122,101,34,41,41,41,93,41,44,115,40,34,98,45,102,111,114,109,45,115,101,108,101,99,116,34,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,101,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,44,111,112,116,105,111,110,115,58,101,46,116,114,101,101,109,97,112,83,105,122,101,79,112,116,105,111,110,115,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,84,114,101,101,109,97,112,83,105,122,101,125,125,41,44,34,99,117,115,116,111,109,34,61,61,61,101,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,63,91,115,40,34,98,45,102,111,114,109,45,105,110,112,117,116,34,44,123,97,116,116,114,115,58,123,116,121,112,101,58,34,110,117,109,98,101,114,34,44,109,105,110,58,34,48,34,44,115,116,101,112,58,34,49,48,34,125,125,41,44,115,40,34,98,45,102,111,114,109,45,105,110,112,117,116,34,44,123,97,116,116,114,115,58,123,116,121,112,101,58,34,110,117,109,98,101,114,34,44,109,105,110,58,34,48,34,44,115,116,101,112,58,34,49,48,34,125,125,41,93,58,101,46,95,101,40,41,44,115,40,34,108,97,98,101,108,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,111,112,116,46,116,114,101,101,109,97,112,67,111,108,111,114,34,41,41,41,93,41,44,115,40,34,98,45,102,111,114,109,45,115,101,108,101,99,116,34,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,101,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,44,111,112,116,105,111,110,115,58,101,46,116,114,101,101,109,97,112,67,111,108,111,114,79,112,116,105,111,110,115,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,79,112,116,84,114,101,101,109,97,112,67,111,108,111,114,125,125,41,93,44,50,41,44,115,40,34,98,45,98,117,116,116,111,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,116,45,52,34,44,97,116,116,114,115,58,123,118,97,114,105,97,110,116,58,34,100,97,110,103,101,114,34,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,82,101,115,101,116,67,108,105,99,107,40,41,125,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,99,111,110,102,105,103,82,101,115,101,116,34,41,41,41,93,41,93,44,49,41,93,44,49,41,44,101,46,108,111,97,100,105,110,103,63,115,40,34,98,45,99,97,114,100,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,116,45,52,34,125,44,91,115,40,34,80,114,101,108,111,97,100,101,114,34,41,93,44,49,41,58,115,40,34,68,101,98,117,103,73,110,102,111,34,41,93,44,49,41,125,44,110,116,61,91,93,44,108,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,98,45,99,97,114,100,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,98,45,52,32,109,116,45,52,34,125,44,91,115,40,34,98,45,99,97,114,100,45,116,105,116,108,101,34,44,91,115,40,34,68,101,98,117,103,73,99,111,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,114,45,49,34,125,41,44,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,100,101,98,117,103,34,41,41,41,93,44,49,41,44,115,40,34,112,34,44,123,100,111,109,80,114,111,112,115,58,123,105,110,110,101,114,72,84,77,76,58,101,46,95,115,40,101,46,36,116,40,34,100,101,98,117,103,68,101,115,99,114,105,112,116,105,111,110,34,41,41,125,125,41,44,115,40,34,98,45,99,97,114,100,45,98,111,100,121,34,44,91,115,40,34,98,45,116,97,98,108,101,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,98,45,48,34,44,97,116,116,114,115,58,123,105,116,101,109,115,58,101,46,116,97,98,108,101,73,116,101,109,115,44,115,109,97,108,108,58,34,34,44,98,111,114,100,101,114,108,101,115,115,58,34,34,44,114,101,115,112,111,110,115,105,118,101,58,34,109,100,34,44,34,116,104,101,97,100,45,99,108,97,115,115,34,58,34,104,105,100,100,101,110,34,125,125,41,44,115,40,34,104,114,34,41,44,101,46,95,108,40,101,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,105,110,100,105,99,101,115,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,115,40,34,73,110,100,101,120,68,101,98,117,103,73,110,102,111,34,44,123,107,101,121,58,101,46,105,100,44,115,116,97,116,105,99,67,108,97,115,115,58,34,109,116,45,50,34,44,97,116,116,114,115,58,123,105,110,100,101,120,58,101,125,125,41,125,41,41,93,44,50,41,93,44,49,41,125,44,99,116,61,91,93,44,100,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,91,115,40,34,104,52,34,44,91,101,46,95,118,40,34,91,34,43,101,46,95,115,40,101,46,105,110,100,101,120,46,110,97,109,101,41,43,34,93,34,41,93,41,44,115,40,34,98,45,116,97,98,108,101,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,98,45,48,34,44,97,116,116,114,115,58,123,105,116,101,109,115,58,101,46,116,97,98,108,101,73,116,101,109,115,44,115,109,97,108,108,58,34,34,44,98,111,114,100,101,114,108,101,115,115,58,34,34,44,114,101,115,112,111,110,115,105,118,101,58,34,109,100,34,44,34,116,104,101,97,100,45,99,108,97,115,115,34,58,34,104,105,100,100,101,110,34,125,125,41,93,44,49,41,125,44,117,116,61,91,93,44,104,116,61,123,110,97,109,101,58,34,73,110,100,101,120,68,101,98,117,103,73,110,102,111,34,44,112,114,111,112,115,58,91,34,105,110,100,101,120,34,93,44,99,111,109,112,117,116,101,100,58,123,116,97,98,108,101,73,116,101,109,115,40,41,123,114,101,116,117,114,110,91,123,107,101,121,58,116,104,105,115,46,36,116,40,34,110,97,109,101,34,41,44,118,97,108,117,101,58,116,104,105,115,46,105,110,100,101,120,46,110,97,109,101,125,44,123,107,101,121,58,116,104,105,115,46,36,116,40,34,105,100,34,41,44,118,97,108,117,101,58,116,104,105,115,46,105,110,100,101,120,46,105,100,125,44,123,107,101,121,58,116,104,105,115,46,36,116,40,34,105,110,100,101,120,86,101,114,115,105,111,110,34,41,44,118,97,108,117,101,58,116,104,105,115,46,105,110,100,101,120,46,118,101,114,115,105,111,110,125,44,123,107,101,121,58,116,104,105,115,46,36,116,40,34,114,101,119,114,105,116,101,85,114,108,34,41,44,118,97,108,117,101,58,116,104,105,115,46,105,110,100,101,120,46,114,101,119,114,105,116,101,85,114,108,125,44,123,107,101,121,58,116,104,105,115,46,36,116,40,34,116,105,109,101,115,116,97,109,112,34,41,44,118,97,108,117,101,58,73,40,116,104,105,115,46,105,110,100,101,120,46,116,105,109,101,115,116,97,109,112,41,125,93,125,125,125,44,112,116,61,104,116,44,109,116,61,40,48,44,112,46,90,41,40,112,116,44,100,116,44,117,116,44,33,49,44,110,117,108,108,44,34,57,100,56,55,57,55,49,48,34,44,110,117,108,108,41,44,103,116,61,109,116,46,101,120,112,111,114,116,115,44,102,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,120,109,108,110,115,58,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,118,105,101,119,66,111,120,58,34,48,32,48,32,51,48,57,46,57,57,56,32,51,48,57,46,57,57,56,34,44,102,105,108,108,58,34,99,117,114,114,101,110,116,67,111,108,111,114,34,125,125,44,91,115,40,34,112,97,116,104,34,44,123,97,116,116,114,115,58,123,100,58,34,77,50,57,52,46,57,57,56,44,49,53,53,46,48,51,72,50,53,48,118,45,52,56,46,56,50,108,51,57,46,55,49,52,45,51,57,46,55,49,53,99,53,46,56,53,56,45,53,46,56,53,55,44,53,46,56,53,56,45,49,53,46,51,53,54,44,48,45,50,49,46,50,49,51,99,45,53,46,56,53,55,45,53,46,56,53,55,45,49,53,46,51,53,53,45,53,46,56,53,55,45,50,49,46,50,49,51,44,48,32,108,45,50,51,46,55,44,50,51,46,55,48,49,99,45,49,50,46,56,56,53,45,51,55,46,50,45,52,56,46,50,55,52,45,54,51,46,57,56,52,45,56,57,46,56,48,50,45,54,51,46,57,56,52,99,45,52,49,46,53,50,56,44,48,45,55,54,46,57,49,51,44,50,54,46,55,56,55,45,56,57,46,55,57,55,44,54,51,46,57,56,57,76,52,49,46,52,57,55,44,52,53,46,50,56,50,32,99,45,53,46,56,53,54,45,53,46,56,53,57,45,49,53,46,51,53,52,45,53,46,56,53,55,45,50,49,46,50,49,51,44,48,115,45,53,46,56,53,56,44,49,53,46,51,53,53,44,48,44,50,49,46,50,49,51,76,54,48,44,49,48,54,46,50,49,50,118,52,56,46,56,49,56,72,49,53,99,45,56,46,50,56,52,44,48,45,49,53,44,54,46,55,49,54,45,49,53,44,49,53,99,48,44,56,46,50,56,52,44,54,46,55,49,54,44,49,53,44,49,53,44,49,53,32,104,52,53,46,49,51,52,99,48,46,56,53,53,44,49,54,46,51,49,52,44,53,46,56,52,57,44,51,49,46,53,53,49,44,49,51,46,57,52,52,44,52,52,46,54,56,108,45,52,57,46,54,56,53,44,52,57,46,54,56,51,99,45,53,46,56,53,56,44,53,46,56,53,55,45,53,46,56,53,56,44,49,53,46,51,53,52,44,48,44,50,49,46,50,49,51,32,99,50,46,57,50,57,44,50,46,57,51,44,54,46,55,54,56,44,52,46,51,57,52,44,49,48,46,54,48,55,44,52,46,51,57,52,99,51,46,56,51,56,44,48,44,55,46,54,55,56,45,49,46,52,54,53,44,49,48,46,54,48,54,45,52,46,51,57,52,108,52,56,46,48,57,53,45,52,56,46,48,57,51,99,49,54,46,53,53,56,44,49,52,46,48,49,56,44,51,55,46,57,53,55,44,50,50,46,52,56,54,44,54,49,46,51,48,49,44,50,50,46,52,56,54,32,99,48,46,48,49,57,44,48,44,48,46,48,51,55,45,48,46,48,48,49,44,48,46,48,53,55,45,48,46,48,48,49,99,48,46,48,49,49,44,48,44,48,46,48,50,50,44,48,46,48,48,50,44,48,46,48,51,51,44,48,46,48,48,50,99,48,46,48,49,57,44,48,44,48,46,48,51,55,45,48,46,48,48,51,44,48,46,48,53,54,45,48,46,48,48,51,32,99,50,51,46,50,56,53,45,48,46,48,51,53,44,52,52,46,54,50,57,45,56,46,52,57,52,44,54,49,46,49,53,45,50,50,46,52,56,51,108,52,56,46,48,57,52,44,52,56,46,48,57,50,99,50,46,57,50,57,44,50,46,57,50,57,44,54,46,55,54,56,44,52,46,51,57,52,44,49,48,46,54,48,54,44,52,46,51,57,52,99,51,46,56,51,57,44,48,44,55,46,54,55,56,45,49,46,52,54,53,44,49,48,46,54,48,55,45,52,46,51,57,52,32,99,53,46,56,53,56,45,53,46,56,53,56,44,53,46,56,53,56,45,49,53,46,51,53,53,44,48,45,50,49,46,50,49,51,108,45,52,57,46,54,56,51,45,52,57,46,54,56,49,99,56,46,48,57,54,45,49,51,46,49,51,49,44,49,51,46,48,56,57,45,50,56,46,51,54,54,44,49,51,46,57,52,52,45,52,52,46,54,56,50,104,52,53,46,49,51,50,99,56,46,50,56,52,44,48,44,49,53,45,54,46,55,49,54,44,49,53,45,49,53,32,67,51,48,57,46,57,57,56,44,49,54,49,46,55,52,54,44,51,48,51,46,50,56,50,44,49,53,53,46,48,51,44,50,57,52,46,57,57,56,44,49,53,53,46,48,51,122,32,77,49,53,52,46,57,57,57,44,51,52,46,57,57,57,99,51,48,46,54,56,49,44,48,44,53,54,46,52,54,53,44,50,49,46,51,54,53,44,54,51,46,50,53,52,44,53,48,72,57,49,46,55,52,55,32,67,57,56,46,53,51,53,44,53,54,46,51,54,52,44,49,50,52,46,51,49,56,44,51,52,46,57,57,57,44,49,53,52,46,57,57,57,44,51,52,46,57,57,57,122,32,77,57,48,44,49,55,57,46,57,57,57,118,45,57,46,50,55,50,99,48,46,48,49,49,45,48,46,50,51,50,44,48,46,48,51,53,45,48,46,52,54,50,44,48,46,48,51,53,45,48,46,54,57,54,32,99,48,45,48,46,50,51,52,45,48,46,48,50,52,45,48,46,52,54,52,45,48,46,48,51,53,45,48,46,54,57,53,118,45,53,52,46,51,51,54,104,53,48,46,48,57,50,118,49,50,56,46,50,53,52,67,49,49,49,46,52,49,53,44,50,51,54,46,52,57,52,44,57,48,44,50,49,48,46,55,48,56,44,57,48,44,49,55,57,46,57,57,57,122,32,77,49,55,48,46,48,57,50,44,50,52,51,46,50,49,50,86,49,49,52,46,57,57,57,72,50,50,48,32,118,53,52,46,50,57,55,99,45,48,46,48,49,50,44,48,46,50,52,52,45,48,46,48,51,55,44,48,46,52,56,54,45,48,46,48,51,55,44,48,46,55,51,52,99,48,44,48,46,50,52,56,44,48,46,48,50,53,44,48,46,52,57,44,48,46,48,51,55,44,48,46,55,51,52,118,57,46,50,51,52,67,50,50,48,44,50,49,48,46,54,52,53,44,49,57,56,46,54,55,54,44,50,51,54,46,51,56,56,44,49,55,48,46,48,57,50,44,50,52,51,46,50,49,50,122,34,125,125,41,93,41,125,44,98,116,61,91,93,44,118,116,61,123,110,97,109,101,58,34,68,101,98,117,103,73,99,111,110,34,125,44,120,116,61,118,116,44,121,116,61,40,48,44,112,46,90,41,40,120,116,44,102,116,44,98,116,44,33,49,44,110,117,108,108,44,34,49,52,57,51,97,99,50,99,34,44,110,117,108,108,41,44,95,116,61,121,116,46,101,120,112,111,114,116,115,44,84,116,61,123,110,97,109,101,58,34,68,101,98,117,103,73,110,102,111,46,118,117,101,34,44,99,111,109,112,111,110,101,110,116,115,58,123,68,101,98,117,103,73,99,111,110,58,95,116,44,73,110,100,101,120,68,101,98,117,103,73,110,102,111,58,103,116,125,44,99,111,109,112,117,116,101,100,58,123,116,97,98,108,101,73,116,101,109,115,40,41,123,114,101,116,117,114,110,91,123,107,101,121,58,34,118,101,114,115,105,111,110,34,44,118,97,108,117,101,58,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,118,101,114,115,105,111,110,125,44,123,107,101,121,58,34,112,108,97,116,102,111,114,109,34,44,118,97,108,117,101,58,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,112,108,97,116,102,111,114,109,125,44,123,107,101,121,58,34,100,101,98,117,103,66,105,110,97,114,121,34,44,118,97,108,117,101,58,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,100,101,98,117,103,125,44,123,107,101,121,58,34,115,105,115,116,50,67,111,109,109,105,116,72,97,115,104,34,44,118,97,108,117,101,58,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,115,105,115,116,50,72,97,115,104,125,44,123,107,101,121,58,34,101,115,73,110,100,101,120,34,44,118,97,108,117,101,58,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,101,115,73,110,100,101,120,125,44,123,107,101,121,58,34,116,97,103,108,105,110,101,34,44,118,97,108,117,101,58,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,116,97,103,108,105,110,101,125,44,123,107,101,121,58,34,100,101,118,34,44,118,97,108,117,101,58,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,100,101,118,125,44,123,107,101,121,58,34,109,111,110,103,111,111,115,101,86,101,114,115,105,111,110,34,44,118,97,108,117,101,58,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,109,111,110,103,111,111,115,101,86,101,114,115,105,111,110,125,44,123,107,101,121,58,34,101,115,86,101,114,115,105,111,110,34,44,118,97,108,117,101,58,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,101,115,86,101,114,115,105,111,110,125,44,123,107,101,121,58,34,101,115,86,101,114,115,105,111,110,83,117,112,112,111,114,116,101,100,34,44,118,97,108,117,101,58,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,101,115,86,101,114,115,105,111,110,83,117,112,112,111,114,116,101,100,125,44,123,107,101,121,58,34,101,115,86,101,114,115,105,111,110,76,101,103,97,99,121,34,44,118,97,108,117,101,58,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,101,115,86,101,114,115,105,111,110,76,101,103,97,99,121,125,93,125,125,125,44,83,116,61,84,116,44,119,116,61,40,48,44,112,46,90,41,40,83,116,44,108,116,44,99,116,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,36,116,61,119,116,46,101,120,112,111,114,116,115,44,67,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,120,109,108,110,115,58,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,118,105,101,119,66,111,120,58,34,48,32,48,32,49,48,48,48,32,49,48,48,48,34,44,102,105,108,108,58,34,99,117,114,114,101,110,116,67,111,108,111,114,34,125,125,44,91,115,40,34,103,34,44,123,97,116,116,114,115,58,123,116,114,97,110,115,102,111,114,109,58,34,116,114,97,110,115,108,97,116,101,40,48,46,48,48,48,48,48,48,44,53,49,50,46,48,48,48,48,48,48,41,32,115,99,97,108,101,40,48,46,49,48,48,48,48,48,44,45,48,46,49,48,48,48,48,48,41,34,125,125,44,91,115,40,34,112,97,116,104,34,44,123,97,116,116,114,115,58,123,100,58,34,77,52,53,54,56,46,53,44,53,48,49,49,99,45,55,51,46,50,45,55,46,55,45,49,53,52,45,50,53,45,49,55,55,46,49,45,51,54,46,54,99,45,56,52,46,55,45,52,54,46,50,45,49,48,50,45,49,49,57,46,52,45,49,53,57,46,56,45,54,56,57,46,50,115,45,54,53,46,53,45,54,49,48,46,51,45,49,53,57,46,56,45,54,55,48,99,45,50,51,46,49,45,49,53,46,52,45,49,50,53,46,49,45,53,53,46,56,45,50,50,53,46,51,45,57,48,46,53,99,45,49,48,48,46,49,45,51,50,46,55,45,50,57,48,46,55,45,49,49,49,46,55,45,52,50,51,46,54,45,49,55,53,46,50,99,45,51,49,57,46,54,45,49,53,50,46,49,45,51,49,53,46,56,45,49,53,50,46,49,45,54,49,57,46,57,44,57,52,46,51,99,45,55,49,56,46,49,44,53,56,51,46,51,45,54,53,48,46,55,44,53,51,53,46,50,45,55,52,55,44,53,51,53,46,50,99,45,55,55,44,48,45,49,48,52,45,49,49,46,54,45,49,56,52,46,56,45,55,55,99,45,49,53,55,46,57,45,49,50,55,46,49,45,52,49,48,46,49,45,51,55,53,46,52,45,53,54,55,46,57,45,53,53,56,46,51,99,45,49,53,53,46,57,45,49,55,55,46,49,45,49,57,48,46,54,45,50,53,48,46,51,45,49,53,57,46,56,45,51,52,52,46,54,99,57,46,54,45,50,55,44,49,54,53,46,54,45,50,50,55,46,50,44,51,52,52,46,54,45,52,52,54,46,55,99,49,56,49,45,50,49,57,46,53,44,51,52,50,46,55,45,52,50,53,46,53,44,51,54,48,45,52,53,56,46,50,99,53,50,45,56,56,46,54,44,52,50,46,51,45,49,53,48,46,50,45,53,48,46,49,45,51,51,53,99,45,55,51,46,50,45,49,52,56,46,51,45,49,52,52,46,52,45,51,50,53,46,52,45,50,53,50,46,50,45,54,50,51,46,56,99,45,49,55,46,51,45,53,48,45,53,55,46,56,45,49,49,51,46,54,45,56,56,46,54,45,49,51,56,46,54,99,45,54,51,46,53,45,53,51,46,57,45,53,57,46,55,45,53,51,46,57,45,54,57,53,45,49,49,55,46,52,99,45,53,50,55,46,53,45,53,50,45,53,55,55,46,54,45,54,53,46,53,45,54,50,55,46,54,45,49,55,57,99,45,52,54,46,50,45,49,48,53,46,57,45,52,54,46,50,45,49,48,53,55,44,48,45,49,49,54,50,46,57,99,53,48,45,49,49,51,46,54,44,57,56,46,50,45,49,50,55,46,49,44,54,52,54,46,57,45,49,56,49,99,50,55,49,46,53,45,50,53,44,53,50,51,46,55,45,53,50,44,53,54,48,46,50,45,53,55,46,56,99,49,49,49,46,55,45,49,55,46,51,44,49,55,57,46,49,45,49,48,55,46,56,44,50,53,57,46,57,45,51,52,52,46,54,99,51,56,46,53,45,49,49,53,46,53,44,49,49,57,46,52,45,51,49,48,44,49,55,55,46,49,45,52,51,49,46,51,99,53,55,46,56,45,49,49,57,46,52,44,49,48,52,45,50,52,48,46,55,44,49,48,52,45,50,54,57,46,53,99,48,45,55,56,46,57,45,52,50,46,52,45,49,52,48,46,53,45,51,57,52,46,55,45,53,54,56,99,45,49,55,57,45,50,49,57,46,53,45,51,51,53,45,52,49,57,46,55,45,51,52,52,46,54,45,52,52,54,46,54,99,45,51,48,46,56,45,57,52,46,51,44,51,46,57,45,49,54,55,46,53,44,49,53,57,46,56,45,51,52,52,46,54,99,49,53,55,46,57,45,49,56,49,44,52,49,48,46,49,45,52,50,57,46,51,44,53,54,52,46,49,45,53,53,52,46,53,99,57,54,46,51,45,55,56,46,57,44,49,56,56,46,55,45,49,48,53,46,57,44,50,54,53,46,55,45,55,53,46,49,99,50,54,46,57,44,49,49,46,54,44,50,51,52,46,57,44,49,55,51,46,51,44,52,54,50,46,49,44,51,54,48,99,50,50,55,46,50,44,49,56,56,46,55,44,52,51,51,46,50,44,51,52,56,46,53,44,52,53,56,46,50,44,51,53,56,46,49,99,56,50,46,56,44,51,48,46,56,44,49,51,54,46,55,44,49,55,46,51,44,51,53,52,46,51,45,56,54,46,54,99,49,49,57,46,52,45,53,55,46,56,44,51,48,56,45,49,51,54,46,55,44,52,49,57,46,55,45,49,55,53,46,50,99,49,49,49,46,55,45,51,56,46,53,44,50,50,49,46,52,45,56,50,46,56,44,50,52,52,46,53,45,57,56,46,50,99,57,52,46,51,45,53,57,46,55,44,49,48,50,45,49,48,48,46,49,44,49,53,57,46,56,45,54,55,48,99,54,49,46,54,45,54,48,54,46,53,44,55,51,46,50,45,54,52,56,46,56,44,49,56,56,46,55,45,55,48,48,46,56,99,49,48,53,46,57,45,52,54,46,50,44,49,48,53,55,45,52,54,46,50,44,49,49,54,50,46,57,44,48,99,49,49,53,46,53,44,53,50,44,49,50,55,46,49,44,57,52,46,51,44,49,56,56,46,55,44,55,48,48,46,56,99,53,55,46,56,44,53,54,57,46,57,44,54,53,46,52,44,54,49,48,46,51,44,49,53,57,46,56,44,54,55,48,99,50,51,46,49,44,49,53,46,52,44,49,51,50,46,57,44,53,57,46,55,44,50,52,52,46,53,44,57,56,46,50,115,51,48,48,46,51,44,49,49,55,46,52,44,52,49,55,46,56,44,49,55,53,46,50,99,50,49,57,46,53,44,49,48,52,44,50,55,51,46,52,44,49,49,55,46,53,44,51,53,54,46,50,44,56,54,46,54,99,50,53,45,57,46,54,44,50,51,49,45,49,54,57,46,52,44,52,53,56,46,50,45,51,53,56,46,49,99,50,50,55,46,50,45,49,56,54,46,56,44,52,51,53,46,49,45,51,52,56,46,53,44,52,54,50,46,49,45,51,54,48,99,55,55,45,50,56,46,57,44,49,54,57,46,52,45,51,46,57,44,50,54,53,46,55,44,55,53,46,49,99,49,53,50,46,49,44,49,50,49,46,51,44,52,52,50,46,56,44,52,49,48,46,49,44,53,56,51,46,52,44,53,55,55,46,54,99,49,52,48,46,54,44,49,54,51,46,54,44,49,55,51,46,51,44,50,52,50,46,54,44,49,51,54,46,55,44,51,51,51,46,49,99,45,49,49,46,54,44,50,55,45,49,55,51,46,51,44,50,51,52,46,57,45,51,54,48,44,52,54,50,46,49,99,45,49,56,56,46,55,44,50,50,55,46,50,45,51,52,56,46,53,44,52,51,51,46,50,45,51,53,56,46,49,44,52,53,56,46,50,99,45,51,48,46,56,44,56,50,46,56,45,49,55,46,51,44,49,51,54,46,55,44,56,54,46,54,44,51,53,54,46,50,99,53,55,46,56,44,49,49,55,46,52,44,49,51,56,46,54,44,51,49,49,46,57,44,49,55,55,46,49,44,52,50,55,46,52,99,56,48,46,57,44,50,51,54,46,56,44,49,52,56,46,51,44,51,50,55,46,51,44,50,53,57,46,57,44,51,52,52,46,54,99,51,54,46,54,44,53,46,56,44,50,56,56,46,56,44,51,50,46,55,44,53,54,50,46,50,44,53,57,46,55,99,51,48,56,44,50,56,46,57,44,53,49,55,46,57,44,53,57,46,55,44,53,53,48,46,54,44,55,55,99,51,48,46,56,44,49,53,46,52,44,55,49,46,50,44,53,57,46,55,44,57,48,46,53,44,49,48,48,46,49,99,51,50,46,56,44,54,53,46,52,44,51,54,46,54,44,49,50,51,46,50,44,51,52,46,55,44,53,55,51,46,55,99,48,44,53,54,50,46,50,45,49,49,46,53,44,54,50,55,46,54,45,49,49,53,46,53,44,54,56,55,46,51,99,45,52,54,46,50,44,50,55,45,49,56,56,46,55,44,52,56,46,49,45,54,49,50,46,50,44,57,48,46,53,99,45,53,55,51,46,55,44,53,57,46,55,45,54,49,52,46,50,44,54,55,46,52,45,54,55,51,46,56,44,49,54,49,46,55,99,45,49,53,46,52,44,50,51,46,49,45,53,57,46,55,44,49,51,50,46,57,45,57,56,46,50,44,50,52,52,46,53,115,45,49,49,55,46,52,44,51,48,48,46,51,45,49,55,53,46,50,44,52,49,55,46,56,99,45,53,55,46,56,44,49,49,57,46,52,45,49,48,52,44,50,52,48,46,55,45,49,48,52,44,50,55,49,46,53,99,48,44,56,48,46,57,44,52,48,46,52,44,49,51,56,46,54,44,51,57,52,46,55,44,53,54,57,46,57,99,49,56,49,44,50,49,57,46,53,44,51,51,53,44,52,49,57,46,55,44,51,52,52,46,54,44,52,52,54,46,55,99,51,48,46,56,44,57,52,46,51,45,51,46,57,44,49,54,55,46,53,45,49,53,57,46,56,44,51,52,52,46,54,99,45,49,53,55,46,57,44,49,56,49,45,52,49,48,46,49,44,52,50,57,46,51,45,53,54,52,46,49,44,53,53,52,46,53,99,45,57,54,46,51,44,55,56,46,57,45,49,56,56,46,55,44,49,48,52,45,50,54,53,46,55,44,55,53,46,49,99,45,50,55,45,49,49,46,54,45,50,51,52,46,57,45,49,55,51,46,51,45,52,54,50,46,49,45,51,54,48,99,45,50,50,55,46,50,45,49,56,56,46,55,45,52,51,51,46,50,45,51,52,56,46,53,45,52,53,56,46,50,45,51,53,56,46,49,99,45,56,48,46,57,45,51,48,46,56,45,49,51,48,46,57,45,49,57,46,50,45,51,55,49,46,54,44,57,54,46,51,99,45,49,51,48,46,57,44,54,49,46,54,45,51,50,53,46,52,44,49,52,50,46,53,45,52,51,49,46,51,44,49,55,55,46,49,99,45,50,49,55,46,53,44,55,49,46,50,45,51,48,56,44,49,52,48,46,53,45,51,50,53,46,52,44,50,53,48,46,51,99,45,53,46,56,44,51,54,46,54,45,51,50,46,55,44,50,56,56,46,56,45,53,55,46,56,44,53,54,48,46,51,99,45,53,51,46,57,44,53,53,48,46,54,45,54,55,46,52,44,53,57,54,46,56,45,49,56,49,44,54,52,53,67,53,53,48,50,46,51,44,53,48,49,56,46,55,44,52,56,48,55,46,51,44,53,48,51,54,44,52,53,54,56,46,53,44,53,48,49,49,122,32,77,53,52,54,51,46,56,44,49,56,57,55,46,56,99,53,48,50,46,53,45,49,50,55,46,49,44,57,53,52,46,57,45,52,57,52,46,56,44,49,49,56,52,45,57,54,48,46,55,99,52,52,54,46,55,45,57,49,52,46,53,44,55,56,46,57,45,50,48,49,49,46,57,45,56,50,52,45,50,52,54,48,46,53,99,45,49,48,53,51,46,49,45,53,50,49,46,56,45,50,51,48,56,46,52,44,53,50,45,50,54,48,52,46,57,44,49,49,56,57,46,56,99,45,55,49,46,50,44,50,55,55,46,50,45,55,49,46,50,44,54,50,57,46,54,44,48,44,57,48,52,46,57,99,49,57,50,46,53,44,55,51,55,46,52,44,56,49,52,46,52,44,49,50,56,52,46,50,44,49,53,54,57,46,49,44,49,51,55,54,46,54,67,52,57,55,52,46,56,44,49,57,55,49,44,53,50,53,53,46,57,44,49,57,52,57,46,56,44,53,52,54,51,46,56,44,49,56,57,55,46,56,122,34,125,125,41,93,41,93,41,125,44,107,116,61,91,93,44,122,116,61,123,110,97,109,101,58,34,71,101,97,114,73,99,111,110,34,125,44,77,116,61,122,116,44,73,116,61,40,48,44,112,46,90,41,40,77,116,44,67,116,44,107,116,44,33,49,44,110,117,108,108,44,34,97,97,51,56,57,97,50,99,34,44,110,117,108,108,41,44,76,116,61,73,116,46,101,120,112,111,114,116,115,44,68,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,120,109,108,110,115,58,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,119,105,100,116,104,58,34,50,52,34,44,104,101,105,103,104,116,58,34,50,52,34,44,118,105,101,119,66,111,120,58,34,48,32,48,32,50,52,32,50,52,34,125,125,44,91,115,40,34,112,97,116,104,34,44,123,97,116,116,114,115,58,123,102,105,108,108,58,34,99,117,114,114,101,110,116,67,111,108,111,114,34,44,100,58,34,77,49,50,32,48,99,45,54,46,54,50,55,32,48,45,49,50,32,53,46,51,55,51,45,49,50,32,49,50,115,53,46,51,55,51,32,49,50,32,49,50,32,49,50,32,49,50,45,53,46,51,55,51,32,49,50,45,49,50,45,53,46,51,55,51,45,49,50,45,49,50,45,49,50,122,109,49,32,49,54,46,48,53,55,118,45,51,46,48,53,55,104,50,46,57,57,52,99,45,46,48,53,57,32,49,46,49,52,51,45,46,50,49,50,32,50,46,50,52,45,46,52,53,54,32,51,46,50,55,57,45,46,56,50,51,45,46,49,50,45,49,46,54,55,52,45,46,49,56,56,45,50,46,53,51,56,45,46,50,50,50,122,109,49,46,57,53,55,32,50,46,49,54,50,99,45,46,52,57,57,32,49,46,51,51,45,49,46,49,53,57,32,50,46,52,57,55,45,49,46,57,53,55,32,51,46,52,53,54,118,45,51,46,54,50,99,46,54,54,54,46,48,50,56,32,49,46,51,49,57,46,48,56,49,32,49,46,57,53,55,46,49,54,52,122,109,45,49,46,57,53,55,45,55,46,50,49,57,118,45,51,46,48,49,53,99,46,56,54,56,45,46,48,51,52,32,49,46,55,50,49,45,46,49,48,51,32,50,46,53,52,56,45,46,50,50,52,46,50,51,56,32,49,46,48,50,55,46,51,56,57,32,50,46,49,49,49,46,52,52,54,32,51,46,50,51,57,104,45,50,46,57,57,52,122,109,48,45,53,46,48,49,52,118,45,51,46,54,54,49,99,46,56,48,54,46,57,54,57,32,49,46,52,55,49,32,50,46,49,53,32,49,46,57,55,49,32,51,46,52,57,54,45,46,54,52,50,46,48,56,52,45,49,46,51,46,49,51,55,45,49,46,57,55,49,46,49,54,53,122,109,50,46,55,48,51,45,51,46,50,54,55,99,49,46,50,51,55,46,52,57,54,32,50,46,51,53,52,32,49,46,50,50,56,32,51,46,50,57,32,50,46,49,52,54,45,46,54,52,50,46,50,51,52,45,49,46,51,49,49,46,52,52,50,45,50,46,48,49,57,46,54,48,55,45,46,51,52,52,45,46,57,57,50,45,46,55,55,53,45,49,46,57,49,45,49,46,50,55,49,45,50,46,55,53,51,122,109,45,55,46,50,52,49,32,49,51,46,53,54,99,45,46,50,52,52,45,49,46,48,51,57,45,46,51,57,56,45,50,46,49,51,54,45,46,52,53,54,45,51,46,50,55,57,104,50,46,57,57,52,118,51,46,48,53,55,99,45,46,56,54,53,46,48,51,52,45,49,46,55,49,52,46,49,48,50,45,50,46,53,51,56,46,50,50,50,122,109,50,46,53,51,56,32,49,46,55,55,54,118,51,46,54,50,99,45,46,55,57,56,45,46,57,53,57,45,49,46,52,53,56,45,50,46,49,50,54,45,49,46,57,53,55,45,51,46,52,53,54,46,54,51,56,45,46,48,56,51,32,49,46,50,57,49,45,46,49,51,54,32,49,46,57,53,55,45,46,49,54,52,122,109,45,50,46,57,57,52,45,55,46,48,53,53,99,46,48,53,55,45,49,46,49,50,56,46,50,48,55,45,50,46,50,49,50,46,52,52,54,45,51,46,50,51,57,46,56,50,55,46,49,50,49,32,49,46,54,56,46,49,57,32,50,46,53,52,56,46,50,50,52,118,51,46,48,49,53,104,45,50,46,57,57,52,122,109,49,46,48,50,52,45,53,46,49,55,57,99,46,53,45,49,46,51,52,54,32,49,46,49,54,53,45,50,46,53,50,55,32,49,46,57,55,45,51,46,52,57,54,118,51,46,54,54,49,99,45,46,54,55,49,45,46,48,50,56,45,49,46,51,50,57,45,46,48,56,49,45,49,46,57,55,45,46,49,54,53,122,109,45,50,46,48,48,53,45,46,51,53,99,45,46,55,48,56,45,46,49,54,53,45,49,46,51,55,55,45,46,51,55,51,45,50,46,48,49,56,45,46,54,48,55,46,57,51,55,45,46,57,49,56,32,50,46,48,53,51,45,49,46,54,53,32,51,46,50,57,45,50,46,49,52,54,45,46,52,57,54,46,56,52,52,45,46,57,50,55,32,49,46,55,54,50,45,49,46,50,55,50,32,50,46,55,53,51,122,109,45,46,53,52,57,32,49,46,57,49,56,99,45,46,50,54,52,32,49,46,49,53,49,45,46,52,51,52,32,50,46,51,54,45,46,52,57,50,32,51,46,54,49,49,104,45,51,46,57,51,51,99,46,49,54,53,45,49,46,54,53,56,46,55,51,57,45,51,46,49,57,55,32,49,46,54,49,55,45,52,46,53,49,56,46,56,56,46,51,54,49,32,49,46,56,49,54,46,54,55,32,50,46,56,48,56,46,57,48,55,122,109,46,48,48,57,32,57,46,50,54,50,99,45,46,57,56,56,46,50,51,54,45,49,46,57,50,46,53,52,50,45,50,46,55,57,55,46,57,45,46,56,57,45,49,46,51,50,56,45,49,46,52,55,49,45,50,46,56,55,57,45,49,46,54,51,55,45,52,46,53,53,49,104,51,46,57,51,52,99,46,48,53,56,32,49,46,50,54,53,46,50,51,49,32,50,46,52,56,56,46,53,32,51,46,54,53,49,122,109,46,53,53,51,32,49,46,57,49,55,99,46,51,52,50,46,57,55,54,46,55,54,56,32,49,46,56,56,49,32,49,46,50,53,55,32,50,46,55,49,50,45,49,46,50,50,51,45,46,52,57,45,50,46,51,50,54,45,49,46,50,49,49,45,51,46,50,53,54,45,50,46,49,49,53,46,54,51,54,45,46,50,50,57,32,49,46,50,57,57,45,46,52,51,53,32,49,46,57,57,57,45,46,53,57,55,122,109,57,46,57,50,52,32,48,99,46,55,46,49,54,51,32,49,46,51,54,50,46,51,54,55,32,49,46,57,57,57,46,53,57,55,45,46,57,51,49,46,57,48,51,45,50,46,48,51,52,32,49,46,54,50,53,45,51,46,50,53,55,32,50,46,49,49,54,46,52,56,57,45,46,56,51,50,46,57,49,53,45,49,46,55,51,55,32,49,46,50,53,56,45,50,46,55,49,51,122,109,46,53,53,51,45,49,46,57,49,55,99,46,50,55,45,49,46,49,54,51,46,52,52,50,45,50,46,51,56,54,46,53,48,49,45,51,46,54,53,49,104,51,46,57,51,52,99,45,46,49,54,55,32,49,46,54,55,50,45,46,55,52,56,32,51,46,50,50,51,45,49,46,54,51,56,32,52,46,53,53,49,45,46,56,55,55,45,46,51,53,56,45,49,46,56,49,45,46,54,54,52,45,50,46,55,57,55,45,46,57,122,109,46,53,48,49,45,53,46,54,53,49,99,45,46,48,53,56,45,49,46,50,53,49,45,46,50,50,57,45,50,46,52,54,45,46,52,57,50,45,51,46,54,49,49,46,57,57,50,45,46,50,51,55,32,49,46,57,50,57,45,46,53,52,54,32,50,46,56,48,57,45,46,57,48,55,46,56,55,55,32,49,46,51,50,49,32,49,46,52,53,49,32,50,46,56,54,32,49,46,54,49,54,32,52,46,53,49,56,104,45,51,46,57,51,51,122,34,125,125,41,93,41,125,44,79,116,61,91,93,44,80,116,61,123,110,97,109,101,58,34,76,97,110,103,117,97,103,101,73,99,111,110,34,125,44,113,116,61,80,116,44,69,116,61,40,48,44,112,46,90,41,40,113,116,44,68,116,44,79,116,44,33,49,44,110,117,108,108,44,34,53,51,56,52,55,97,98,54,34,44,110,117,108,108,41,44,65,116,61,69,116,46,101,120,112,111,114,116,115,44,72,116,61,123,99,111,109,112,111,110,101,110,116,115,58,123,76,97,110,103,117,97,103,101,73,99,111,110,58,65,116,44,71,101,97,114,73,99,111,110,58,76,116,44,68,101,98,117,103,73,110,102,111,58,36,116,44,80,114,101,108,111,97,100,101,114,58,120,101,125,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,108,111,97,100,105,110,103,58,33,49,44,99,111,110,102,105,103,76,111,97,100,105,110,103,58,33,49,44,108,97,110,103,79,112,116,105,111,110,115,58,91,123,118,97,108,117,101,58,34,101,110,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,108,97,110,103,46,101,110,34,41,125,44,123,118,97,108,117,101,58,34,102,114,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,108,97,110,103,46,102,114,34,41,125,44,123,118,97,108,117,101,58,34,122,104,45,67,78,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,108,97,110,103,46,122,104,45,67,78,34,41,125,93,44,113,117,101,114,121,77,111,100,101,79,112,116,105,111,110,115,58,91,123,118,97,108,117,101,58,34,115,105,109,112,108,101,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,113,117,101,114,121,77,111,100,101,46,115,105,109,112,108,101,34,41,125,44,123,118,97,108,117,101,58,34,97,100,118,97,110,99,101,100,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,113,117,101,114,121,77,111,100,101,46,97,100,118,97,110,99,101,100,34,41,125,93,44,100,105,115,112,108,97,121,77,111,100,101,79,112,116,105,111,110,115,58,91,123,118,97,108,117,101,58,34,103,114,105,100,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,100,105,115,112,108,97,121,77,111,100,101,46,103,114,105,100,34,41,125,44,123,118,97,108,117,101,58,34,108,105,115,116,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,100,105,115,112,108,97,121,77,111,100,101,46,108,105,115,116,34,41,125,93,44,99,111,108,117,109,110,115,79,112,116,105,111,110,115,58,91,123,118,97,108,117,101,58,34,97,117,116,111,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,99,111,108,117,109,110,115,46,97,117,116,111,34,41,125,44,123,118,97,108,117,101,58,49,44,116,101,120,116,58,34,49,34,125,44,123,118,97,108,117,101,58,50,44,116,101,120,116,58,34,50,34,125,44,123,118,97,108,117,101,58,51,44,116,101,120,116,58,34,51,34,125,44,123,118,97,108,117,101,58,52,44,116,101,120,116,58,34,52,34,125,44,123,118,97,108,117,101,58,53,44,116,101,120,116,58,34,53,34,125,44,123,118,97,108,117,101,58,54,44,116,101,120,116,58,34,54,34,125,44,123,118,97,108,117,101,58,55,44,116,101,120,116,58,34,55,34,125,44,123,118,97,108,117,101,58,56,44,116,101,120,116,58,34,56,34,125,44,123,118,97,108,117,101,58,57,44,116,101,120,116,58,34,57,34,125,44,123,118,97,108,117,101,58,49,48,44,116,101,120,116,58,34,49,48,34,125,44,123,118,97,108,117,101,58,49,49,44,116,101,120,116,58,34,49,49,34,125,44,123,118,97,108,117,101,58,49,50,44,116,101,120,116,58,34,49,50,34,125,93,44,116,114,101,101,109,97,112,84,121,112,101,79,112,116,105,111,110,115,58,91,123,118,97,108,117,101,58,34,99,97,115,99,97,100,101,100,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,116,114,101,101,109,97,112,84,121,112,101,46,99,97,115,99,97,100,101,100,34,41,125,44,123,118,97,108,117,101,58,34,102,108,97,116,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,116,114,101,101,109,97,112,84,121,112,101,46,102,108,97,116,34,41,125,93,44,116,114,101,101,109,97,112,84,105,108,105,110,103,79,112,116,105,111,110,115,58,91,123,118,97,108,117,101,58,34,98,105,110,97,114,121,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,116,114,101,101,109,97,112,84,105,108,105,110,103,46,98,105,110,97,114,121,34,41,125,44,123,118,97,108,117,101,58,34,115,113,117,97,114,105,102,121,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,116,114,101,101,109,97,112,84,105,108,105,110,103,46,115,113,117,97,114,105,102,121,34,41,125,44,123,118,97,108,117,101,58,34,115,108,105,99,101,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,116,114,101,101,109,97,112,84,105,108,105,110,103,46,115,108,105,99,101,34,41,125,44,123,118,97,108,117,101,58,34,100,105,99,101,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,116,114,101,101,109,97,112,84,105,108,105,110,103,46,100,105,99,101,34,41,125,44,123,118,97,108,117,101,58,34,115,108,105,99,101,68,105,99,101,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,116,114,101,101,109,97,112,84,105,108,105,110,103,46,115,108,105,99,101,68,105,99,101,34,41,125,93,44,116,114,101,101,109,97,112,83,105,122,101,79,112,116,105,111,110,115,58,91,123,118,97,108,117,101,58,34,115,109,97,108,108,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,116,114,101,101,109,97,112,83,105,122,101,46,115,109,97,108,108,34,41,125,44,123,118,97,108,117,101,58,34,109,101,100,105,117,109,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,116,114,101,101,109,97,112,83,105,122,101,46,109,101,100,105,117,109,34,41,125,44,123,118,97,108,117,101,58,34,108,97,114,103,101,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,116,114,101,101,109,97,112,83,105,122,101,46,108,97,114,103,101,34,41,125,44,123,118,97,108,117,101,58,34,120,45,108,97,114,103,101,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,116,114,101,101,109,97,112,83,105,122,101,46,120,76,97,114,103,101,34,41,125,44,123,118,97,108,117,101,58,34,120,120,45,108,97,114,103,101,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,116,114,101,101,109,97,112,83,105,122,101,46,120,120,76,97,114,103,101,34,41,125,93,44,116,114,101,101,109,97,112,67,111,108,111,114,79,112,116,105,111,110,115,58,91,123,118,97,108,117,101,58,34,80,117,66,117,71,110,34,44,116,101,120,116,58,34,80,117,114,112,108,101,45,66,108,117,101,45,71,114,101,101,110,34,125,44,123,118,97,108,117,101,58,34,80,117,82,100,34,44,116,101,120,116,58,34,80,117,114,112,108,101,45,82,101,100,34,125,44,123,118,97,108,117,101,58,34,80,117,66,117,34,44,116,101,120,116,58,34,80,117,114,112,108,101,45,66,108,117,101,34,125,44,123,118,97,108,117,101,58,34,89,108,79,114,66,114,34,44,116,101,120,116,58,34,89,101,108,108,111,119,45,79,114,97,110,103,101,45,66,114,111,119,110,34,125,44,123,118,97,108,117,101,58,34,89,108,79,114,82,100,34,44,116,101,120,116,58,34,89,101,108,108,111,119,45,79,114,97,110,103,101,45,82,101,100,34,125,44,123,118,97,108,117,101,58,34,89,108,71,110,34,44,116,101,120,116,58,34,89,101,108,108,111,119,45,71,114,101,101,110,34,125,44,123,118,97,108,117,101,58,34,89,108,71,110,66,117,34,44,116,101,120,116,58,34,89,101,108,108,111,119,45,71,114,101,101,110,45,66,108,117,101,34,125,44,123,118,97,108,117,101,58,34,80,108,97,115,109,97,34,44,116,101,120,116,58,34,80,108,97,115,109,97,34,125,44,123,118,97,108,117,101,58,34,77,97,103,109,97,34,44,116,101,120,116,58,34,77,97,103,109,97,34,125,44,123,118,97,108,117,101,58,34,73,110,102,101,114,110,111,34,44,116,101,120,116,58,34,73,110,102,101,114,110,111,34,125,44,123,118,97,108,117,101,58,34,86,105,114,105,100,105,115,34,44,116,101,120,116,58,34,86,105,114,105,100,105,115,34,125,44,123,118,97,108,117,101,58,34,84,117,114,98,111,34,44,116,101,120,116,58,34,84,117,114,98,111,34,125,93,44,116,104,101,109,101,79,112,116,105,111,110,115,58,91,123,118,97,108,117,101,58,34,108,105,103,104,116,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,116,104,101,109,101,46,108,105,103,104,116,34,41,125,44,123,118,97,108,117,101,58,34,98,108,97,99,107,34,44,116,101,120,116,58,116,104,105,115,46,36,116,40,34,116,104,101,109,101,46,98,108,97,99,107,34,41,125,93,125,125,44,99,111,109,112,117,116,101,100,58,123,46,46,46,40,48,44,121,46,83,101,41,40,91,34,111,112,116,84,104,101,109,101,34,44,34,111,112,116,68,105,115,112,108,97,121,34,44,34,111,112,116,67,111,108,117,109,110,115,34,44,34,111,112,116,72,105,103,104,108,105,103,104,116,34,44,34,111,112,116,70,117,122,122,121,34,44,34,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,34,44,34,111,112,116,83,117,103,103,101,115,116,80,97,116,104,34,44,34,111,112,116,70,114,97,103,109,101,110,116,83,105,122,101,34,44,34,111,112,116,81,117,101,114,121,77,111,100,101,34,44,34,111,112,116,84,114,101,101,109,97,112,84,121,112,101,34,44,34,111,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,34,44,34,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,34,44,34,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,34,44,34,111,112,116,84,114,101,101,109,97,112,83,105,122,101,34,44,34,111,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,34,44,34,111,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,34,44,34,111,112,116,82,101,115,117,108,116,83,105,122,101,34,44,34,111,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,34,44,34,111,112,116,76,97,110,103,34,44,34,111,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,34,44,34,111,112,116,72,105,100,101,76,101,103,97,99,121,34,44,34,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,34,44,34,111,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,34,44,34,111,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,34,44,34,111,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,34,44,34,111,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,34,93,41,44,99,108,105,101,110,116,87,105,100,116,104,40,41,123,114,101,116,117,114,110,32,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,125,125,44,109,111,117,110,116,101,100,40,41,123,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,40,101,61,62,123,101,46,116,121,112,101,46,115,116,97,114,116,115,87,105,116,104,40,34,115,101,116,79,112,116,34,41,38,38,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,34,117,112,100,97,116,101,67,111,110,102,105,103,117,114,97,116,105,111,110,34,41,125,41,41,125,44,109,101,116,104,111,100,115,58,123,46,46,46,40,48,44,121,46,110,118,41,40,123,115,101,116,83,105,115,116,50,73,110,102,111,58,34,115,101,116,83,105,115,116,50,73,110,102,111,34,125,41,44,46,46,46,40,48,44,121,46,79,73,41,40,91,34,115,101,116,79,112,116,84,104,101,109,101,34,44,34,115,101,116,79,112,116,68,105,115,112,108,97,121,34,44,34,115,101,116,79,112,116,67,111,108,117,109,110,115,34,44,34,115,101,116,79,112,116,72,105,103,104,108,105,103,104,116,34,44,34,115,101,116,79,112,116,70,117,122,122,121,34,44,34,115,101,116,79,112,116,83,101,97,114,99,104,73,110,80,97,116,104,34,44,34,115,101,116,79,112,116,83,117,103,103,101,115,116,80,97,116,104,34,44,34,115,101,116,79,112,116,70,114,97,103,109,101,110,116,83,105,122,101,34,44,34,115,101,116,79,112,116,81,117,101,114,121,77,111,100,101,34,44,34,115,101,116,79,112,116,84,114,101,101,109,97,112,84,121,112,101,34,44,34,115,101,116,79,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,34,44,34,115,101,116,79,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,34,44,34,115,101,116,79,112,116,84,114,101,101,109,97,112,67,111,108,111,114,34,44,34,115,101,116,79,112,116,84,114,101,101,109,97,112,83,105,122,101,34,44,34,115,101,116,79,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,34,44,34,115,101,116,79,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,34,44,34,115,101,116,79,112,116,82,101,115,117,108,116,83,105,122,101,34,44,34,115,101,116,79,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,34,44,34,115,101,116,79,112,116,76,97,110,103,34,44,34,115,101,116,79,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,34,44,34,115,101,116,79,112,116,72,105,100,101,76,101,103,97,99,121,34,44,34,115,101,116,79,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,34,44,34,115,101,116,79,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,34,44,34,115,101,116,79,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,34,44,34,115,101,116,79,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,34,44,34,115,101,116,79,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,34,93,41,44,111,110,82,101,115,101,116,67,108,105,99,107,40,41,123,108,111,99,97,108,83,116,111,114,97,103,101,46,114,101,109,111,118,101,73,116,101,109,40,34,115,105,115,116,50,95,99,111,110,102,105,103,117,114,97,116,105,111,110,34,41,44,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,114,101,108,111,97,100,40,41,125,125,125,44,85,116,61,72,116,44,66,116,61,40,48,44,112,46,90,41,40,85,116,44,114,116,44,110,116,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,70,116,61,66,116,46,101,120,112,111,114,116,115,44,78,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,111,110,116,97,105,110,101,114,34,125,44,91,115,40,34,76,105,103,104,116,98,111,120,34,41,44,115,40,34,72,101,108,112,68,105,97,108,111,103,34,44,123,97,116,116,114,115,58,123,115,104,111,119,58,101,46,115,104,111,119,72,101,108,112,125,44,111,110,58,123,99,108,111,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,115,104,111,119,72,101,108,112,61,33,49,125,125,125,41,44,101,46,117,105,76,111,97,100,105,110,103,63,115,40,34,98,45,99,97,114,100,34,44,91,115,40,34,80,114,101,108,111,97,100,101,114,34,41,93,44,49,41,58,101,46,95,101,40,41,44,115,40,34,98,45,99,97,114,100,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,115,104,111,119,34,44,114,97,119,78,97,109,101,58,34,118,45,115,104,111,119,34,44,118,97,108,117,101,58,33,101,46,117,105,76,111,97,100,105,110,103,44,101,120,112,114,101,115,115,105,111,110,58,34,33,117,105,76,111,97,100,105,110,103,34,125,93,44,97,116,116,114,115,58,123,105,100,58,34,115,101,97,114,99,104,45,112,97,110,101,108,34,125,125,44,91,115,40,34,83,101,97,114,99,104,66,97,114,34,44,123,111,110,58,123,34,115,104,111,119,45,104,101,108,112,34,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,115,104,111,119,72,101,108,112,61,33,48,125,125,125,41,44,115,40,34,98,45,114,111,119,34,44,91,115,40,34,98,45,99,111,108,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,104,101,105,103,104,116,58,34,55,48,112,120,34,125,44,97,116,116,114,115,58,123,115,109,58,34,54,34,125,125,44,91,115,40,34,83,105,122,101,83,108,105,100,101,114,34,41,93,44,49,41,44,115,40,34,98,45,99,111,108,34,44,91,115,40,34,80,97,116,104,84,114,101,101,34,44,123,111,110,58,123,115,101,97,114,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,115,101,97,114,99,104,40,33,48,41,125,125,125,41,93,44,49,41,93,44,49,41,44,115,40,34,98,45,114,111,119,34,44,91,115,40,34,98,45,99,111,108,34,44,123,97,116,116,114,115,58,123,115,109,58,34,54,34,125,125,44,91,115,40,34,68,97,116,101,83,108,105,100,101,114,34,41,44,115,40,34,98,45,114,111,119,34,44,91,115,40,34,98,45,99,111,108,34,44,91,115,40,34,73,110,100,101,120,80,105,99,107,101,114,34,41,93,44,49,41,93,44,49,41,93,44,49,41,44,115,40,34,98,45,99,111,108,34,44,91,115,40,34,98,45,116,97,98,115,34,44,123,97,116,116,114,115,58,123,106,117,115,116,105,102,105,101,100,58,34,34,125,125,44,91,115,40,34,98,45,116,97,98,34,44,123,97,116,116,114,115,58,123,116,105,116,108,101,58,101,46,36,116,40,34,109,105,109,101,84,121,112,101,115,34,41,125,125,44,91,115,40,34,77,105,109,101,80,105,99,107,101,114,34,41,93,44,49,41,44,115,40,34,98,45,116,97,98,34,44,123,97,116,116,114,115,58,123,116,105,116,108,101,58,101,46,36,116,40,34,116,97,103,115,34,41,125,125,44,91,115,40,34,84,97,103,80,105,99,107,101,114,34,44,123,97,116,116,114,115,58,123,34,115,104,111,119,45,115,101,97,114,99,104,45,98,97,114,34,58,101,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,125,125,41,93,44,49,41,93,44,49,41,93,44,49,41,93,44,49,41,93,44,49,41,44,115,40,34,100,105,118,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,115,104,111,119,34,44,114,97,119,78,97,109,101,58,34,118,45,115,104,111,119,34,44,118,97,108,117,101,58,48,61,61,61,101,46,100,111,99,115,46,108,101,110,103,116,104,38,38,33,101,46,117,105,76,111,97,100,105,110,103,44,101,120,112,114,101,115,115,105,111,110,58,34,100,111,99,115,46,108,101,110,103,116,104,32,61,61,61,32,48,32,38,38,32,33,117,105,76,111,97,100,105,110,103,34,125,93,125,44,91,101,46,115,101,97,114,99,104,66,117,115,121,63,115,40,34,80,114,101,108,111,97,100,101,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,116,45,51,34,125,41,58,101,46,95,101,40,41,44,115,40,34,82,101,115,117,108,116,115,67,97,114,100,34,41,93,44,49,41,44,101,46,100,111,99,115,46,108,101,110,103,116,104,62,48,63,115,40,34,100,105,118,34,44,91,115,40,34,82,101,115,117,108,116,115,67,97,114,100,34,41,44,34,103,114,105,100,34,61,61,61,101,46,111,112,116,68,105,115,112,108,97,121,63,115,40,34,68,111,99,67,97,114,100,87,97,108,108,34,44,123,97,116,116,114,115,58,123,100,111,99,115,58,101,46,100,111,99,115,44,97,112,112,101,110,100,58,101,46,97,112,112,101,110,100,70,117,110,99,125,125,41,58,115,40,34,68,111,99,76,105,115,116,34,44,123,97,116,116,114,115,58,123,100,111,99,115,58,101,46,100,111,99,115,44,97,112,112,101,110,100,58,101,46,97,112,112,101,110,100,70,117,110,99,125,125,41,93,44,49,41,58,101,46,95,101,40,41,93,44,49,41,125,44,82,116,61,91,93,44,86,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,91,115,40,34,98,45,105,110,112,117,116,45,103,114,111,117,112,34,44,123,115,99,111,112,101,100,83,108,111,116,115,58,101,46,95,117,40,91,123,107,101,121,58,34,112,114,101,112,101,110,100,34,44,102,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,115,40,34,98,45,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,34,44,91,115,40,34,98,45,102,111,114,109,45,99,104,101,99,107,98,111,120,34,44,123,97,116,116,114,115,58,123,99,104,101,99,107,101,100,58,101,46,102,117,122,122,121,44,116,105,116,108,101,58,34,84,111,103,103,108,101,32,102,117,122,122,121,32,115,101,97,114,99,104,105,110,103,34,125,44,111,110,58,123,99,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,115,101,116,70,117,122,122,121,40,116,41,125,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,115,101,97,114,99,104,66,97,114,46,102,117,122,122,121,34,41,41,43,34,32,34,41,93,41,93,44,49,41,93,125,44,112,114,111,120,121,58,33,48,125,44,123,107,101,121,58,34,97,112,112,101,110,100,34,44,102,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,115,40,34,98,45,98,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,118,97,114,105,97,110,116,58,34,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,34,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,36,101,109,105,116,40,34,115,104,111,119,45,104,101,108,112,34,41,125,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,104,101,108,112,34,41,41,41,93,41,93,125,44,112,114,111,120,121,58,33,48,125,93,41,125,44,91,115,40,34,98,45,102,111,114,109,45,105,110,112,117,116,34,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,101,46,115,101,97,114,99,104,84,101,120,116,44,112,108,97,99,101,104,111,108,100,101,114,58,101,46,97,100,118,97,110,99,101,100,40,41,63,101,46,36,116,40,34,115,101,97,114,99,104,66,97,114,46,97,100,118,97,110,99,101,100,34,41,58,101,46,36,116,40,34,115,101,97,114,99,104,66,97,114,46,115,105,109,112,108,101,34,41,125,44,111,110,58,123,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,115,101,116,83,101,97,114,99,104,84,101,120,116,40,116,41,125,125,125,41,93,44,49,41,93,44,49,41,125,44,90,116,61,91,93,44,81,116,61,123,99,111,109,112,117,116,101,100,58,123,46,46,46,40,48,44,121,46,83,101,41,40,123,111,112,116,81,117,101,114,121,77,111,100,101,58,34,111,112,116,81,117,101,114,121,77,111,100,101,34,44,115,101,97,114,99,104,84,101,120,116,58,34,115,101,97,114,99,104,84,101,120,116,34,44,102,117,122,122,121,58,34,102,117,122,122,121,34,125,41,125,44,109,101,116,104,111,100,115,58,123,46,46,46,40,48,44,121,46,79,73,41,40,123,115,101,116,83,101,97,114,99,104,84,101,120,116,58,34,115,101,116,83,101,97,114,99,104,84,101,120,116,34,44,115,101,116,70,117,122,122,121,58,34,115,101,116,70,117,122,122,121,34,125,41,44,97,100,118,97,110,99,101,100,40,41,123,114,101,116,117,114,110,34,97,100,118,97,110,99,101,100,34,61,61,61,116,104,105,115,46,111,112,116,81,117,101,114,121,77,111,100,101,125,125,125,44,71,116,61,81,116,44,106,116,61,40,48,44,112,46,90,41,40,71,116,44,86,116,44,90,116,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,87,116,61,106,116,46,101,120,112,111,114,116,115,44,89,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,46,105,115,77,111,98,105,108,101,63,115,40,34,100,105,118,34,44,91,115,40,34,98,45,102,111,114,109,45,115,101,108,101,99,116,34,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,101,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,73,100,115,44,111,112,116,105,111,110,115,58,101,46,105,110,100,105,99,101,115,44,109,117,108,116,105,112,108,101,58,34,34,44,34,115,101,108,101,99,116,45,115,105,122,101,34,58,54,44,34,116,101,120,116,45,102,105,101,108,100,34,58,34,110,97,109,101,34,44,34,118,97,108,117,101,45,102,105,101,108,100,34,58,34,105,100,34,125,44,111,110,58,123,99,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,83,101,108,101,99,116,40,116,41,125,125,125,41,93,44,49,41,58,115,40,34,100,105,118,34,44,91,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,45,102,108,101,120,32,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,32,97,108,105,103,110,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,34,125,44,91,115,40,34,115,112,97,110,34,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,108,101,110,103,116,104,41,43,34,32,34,43,101,46,95,115,40,49,61,61,61,101,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,108,101,110,103,116,104,63,101,46,36,116,40,34,105,110,100,101,120,80,105,99,107,101,114,46,115,101,108,101,99,116,101,100,73,110,100,101,120,34,41,58,101,46,36,116,40,34,105,110,100,101,120,80,105,99,107,101,114,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,34,41,41,43,34,32,34,41,93,41,44,115,40,34,100,105,118,34,44,91,115,40,34,98,45,98,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,118,97,114,105,97,110,116,58,34,108,105,110,107,34,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,115,101,108,101,99,116,65,108,108,40,41,125,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,105,110,100,101,120,80,105,99,107,101,114,46,115,101,108,101,99,116,65,108,108,34,41,41,41,93,41,44,115,40,34,98,45,98,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,118,97,114,105,97,110,116,58,34,108,105,110,107,34,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,115,101,108,101,99,116,78,111,110,101,40,41,125,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,105,110,100,101,120,80,105,99,107,101,114,46,115,101,108,101,99,116,78,111,110,101,34,41,41,41,93,41,93,44,49,41,93,41,44,115,40,34,98,45,108,105,115,116,45,103,114,111,117,112,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,117,110,115,101,108,101,99,116,97,98,108,101,34,44,97,116,116,114,115,58,123,105,100,58,34,105,110,100,101,120,45,112,105,99,107,101,114,45,100,101,115,107,116,111,112,34,125,125,44,101,46,95,108,40,101,46,105,110,100,105,99,101,115,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,115,40,34,98,45,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,45,102,108,101,120,32,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,32,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,32,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,32,112,111,105,110,116,101,114,34,44,99,108,97,115,115,58,123,97,99,116,105,118,101,58,101,46,108,97,115,116,67,108,105,99,107,73,110,100,101,120,61,61,61,116,125,44,111,110,58,123,99,108,105,99,107,58,91,102,117,110,99,116,105,111,110,40,115,41,123,114,101,116,117,114,110,32,101,46,116,111,103,103,108,101,73,110,100,101,120,40,116,44,115,41,125,44,102,117,110,99,116,105,111,110,40,115,41,123,114,101,116,117,114,110,32,115,46,115,104,105,102,116,75,101,121,63,101,46,115,104,105,102,116,67,108,105,99,107,40,116,44,115,41,58,110,117,108,108,125,93,125,125,44,91,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,45,102,108,101,120,34,125,44,91,115,40,34,98,45,99,104,101,99,107,98,111,120,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,34,58,34,110,111,110,101,34,125,44,97,116,116,114,115,58,123,99,104,101,99,107,101,100,58,101,46,105,115,83,101,108,101,99,116,101,100,40,116,41,125,125,41,44,101,46,95,118,40,34,32,34,43,101,46,95,115,40,116,46,110,97,109,101,41,43,34,32,34,41,44,115,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,116,101,120,116,45,109,117,116,101,100,32,116,105,109,101,115,116,97,109,112,45,116,101,120,116,32,109,108,45,50,34,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,102,111,114,109,97,116,73,100,120,68,97,116,101,40,116,46,116,105,109,101,115,116,97,109,112,41,41,41,93,41,93,44,49,41,44,115,40,34,98,45,98,97,100,103,101,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,118,101,114,115,105,111,110,45,98,97,100,103,101,34,125,44,91,101,46,95,118,40,34,118,34,43,101,46,95,115,40,116,46,118,101,114,115,105,111,110,41,41,93,41,93,44,49,41,125,41,41,44,49,41,93,44,49,41,125,44,75,116,61,91,93,44,74,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,98,45,98,97,100,103,101,34,44,123,97,116,116,114,115,58,123,118,97,114,105,97,110,116,58,34,115,101,99,111,110,100,97,114,121,34,44,112,105,108,108,58,101,46,112,105,108,108,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,116,101,120,116,41,41,93,41,125,44,88,116,61,91,93,44,101,115,61,105,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,112,114,111,112,115,58,123,116,101,120,116,58,83,116,114,105,110,103,44,112,105,108,108,58,66,111,111,108,101,97,110,125,125,41,44,116,115,61,101,115,44,115,115,61,40,48,44,112,46,90,41,40,116,115,44,74,116,44,88,116,44,33,49,44,110,117,108,108,44,34,52,100,101,97,49,48,55,48,34,44,110,117,108,108,41,44,105,115,61,115,115,46,101,120,112,111,114,116,115,44,97,115,61,115,40,49,48,49,51,41,44,111,115,61,105,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,99,111,109,112,111,110,101,110,116,115,58,123,83,109,97,108,108,66,97,100,103,101,58,105,115,125,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,108,111,97,100,105,110,103,58,33,48,44,108,97,115,116,67,108,105,99,107,73,110,100,101,120,58,110,117,108,108,125,125,44,99,111,109,112,117,116,101,100,58,123,46,46,46,40,48,44,121,46,83,101,41,40,91,34,105,110,100,105,99,101,115,34,44,34,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,34,93,41,44,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,73,100,115,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,109,97,112,40,40,101,61,62,101,46,105,100,41,41,125,44,105,115,77,111,98,105,108,101,40,41,123,114,101,116,117,114,110,32,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,60,61,54,53,48,125,125,44,109,101,116,104,111,100,115,58,123,46,46,46,40,48,44,121,46,110,118,41,40,123,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,34,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,34,125,41,44,115,104,105,102,116,67,108,105,99,107,40,101,44,116,41,123,105,102,40,110,117,108,108,61,61,61,116,104,105,115,46,108,97,115,116,67,108,105,99,107,73,110,100,101,120,41,114,101,116,117,114,110,59,99,111,110,115,116,32,115,61,116,104,105,115,46,105,115,83,101,108,101,99,116,101,100,40,116,104,105,115,46,108,97,115,116,67,108,105,99,107,73,110,100,101,120,41,59,108,101,116,32,105,61,116,104,105,115,46,105,110,100,105,99,101,115,46,105,110,100,101,120,79,102,40,116,104,105,115,46,108,97,115,116,67,108,105,99,107,73,110,100,101,120,41,44,97,61,116,104,105,115,46,105,110,100,105,99,101,115,46,105,110,100,101,120,79,102,40,101,41,59,105,102,40,97,60,105,41,123,108,101,116,32,101,61,105,59,105,61,97,44,97,61,101,125,102,111,114,40,108,101,116,32,111,61,105,59,111,60,61,97,59,111,43,43,41,115,63,116,104,105,115,46,105,115,83,101,108,101,99,116,101,100,40,116,104,105,115,46,105,110,100,105,99,101,115,91,111,93,41,124,124,116,104,105,115,46,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,40,91,116,104,105,115,46,105,110,100,105,99,101,115,91,111,93,44,46,46,46,116,104,105,115,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,93,41,58,116,104,105,115,46,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,40,116,104,105,115,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,102,105,108,116,101,114,40,40,101,61,62,101,33,61,61,116,104,105,115,46,105,110,100,105,99,101,115,91,111,93,41,41,41,125,44,115,101,108,101,99,116,65,108,108,40,41,123,116,104,105,115,46,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,40,116,104,105,115,46,105,110,100,105,99,101,115,41,125,44,115,101,108,101,99,116,78,111,110,101,40,41,123,116,104,105,115,46,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,40,91,93,41,125,44,111,110,83,101,108,101,99,116,40,101,41,123,116,104,105,115,46,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,40,116,104,105,115,46,105,110,100,105,99,101,115,46,102,105,108,116,101,114,40,40,116,61,62,101,46,105,110,99,108,117,100,101,115,40,116,46,105,100,41,41,41,41,125,44,102,111,114,109,97,116,73,100,120,68,97,116,101,40,101,41,123,114,101,116,117,114,110,40,48,44,97,115,46,90,41,40,110,101,119,32,68,97,116,101,40,49,101,51,42,101,41,44,34,121,121,121,121,45,77,77,45,100,100,34,41,125,44,116,111,103,103,108,101,73,110,100,101,120,40,101,44,116,41,123,116,46,115,104,105,102,116,75,101,121,124,124,40,116,104,105,115,46,108,97,115,116,67,108,105,99,107,73,110,100,101,120,61,101,44,116,104,105,115,46,105,115,83,101,108,101,99,116,101,100,40,101,41,63,116,104,105,115,46,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,40,116,104,105,115,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,102,105,108,116,101,114,40,40,116,61,62,116,46,105,100,33,61,101,46,105,100,41,41,41,58,116,104,105,115,46,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,40,91,101,44,46,46,46,116,104,105,115,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,93,41,41,125,44,105,115,83,101,108,101,99,116,101,100,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,116,104,105,115,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,102,105,110,100,40,40,116,61,62,116,46,105,100,61,61,101,46,105,100,41,41,125,125,125,41,44,114,115,61,111,115,44,110,115,61,40,48,44,112,46,90,41,40,114,115,44,89,116,44,75,116,44,33,49,44,110,117,108,108,44,34,54,53,101,101,100,51,53,51,34,44,110,117,108,108,41,44,108,115,61,110,115,46,101,120,112,111,114,116,115,44,99,115,61,115,40,52,55,49,51,41,59,99,111,110,115,116,32,100,115,61,40,41,61,62,119,105,110,100,111,119,46,104,105,115,116,111,114,121,46,114,101,112,108,97,99,101,83,116,97,116,101,40,123,125,44,100,111,99,117,109,101,110,116,46,116,105,116,108,101,44,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,112,97,116,104,110,97,109,101,41,59,108,101,116,32,117,115,59,99,111,110,115,116,32,104,115,61,40,41,61,62,117,115,44,112,115,61,40,123,100,111,109,97,105,110,58,101,44,99,108,105,101,110,116,73,100,58,116,44,97,117,100,105,101,110,99,101,58,115,44,111,110,82,101,100,105,114,101,99,116,67,97,108,108,98,97,99,107,58,97,61,100,115,44,114,101,100,105,114,101,99,116,85,114,105,58,111,61,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,111,114,105,103,105,110,125,41,61,62,117,115,124,124,40,117,115,61,110,101,119,32,105,91,34,100,101,102,97,117,108,116,34,93,40,123,100,97,116,97,40,41,123,114,101,116,117,114,110,123,108,111,97,100,105,110,103,58,33,48,44,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,58,33,49,44,117,115,101,114,58,123,125,44,97,117,116,104,48,67,108,105,101,110,116,58,110,117,108,108,44,112,111,112,117,112,79,112,101,110,58,33,49,44,101,114,114,111,114,58,110,117,108,108,125,125,44,109,101,116,104,111,100,115,58,123,97,115,121,110,99,32,108,111,103,105,110,87,105,116,104,80,111,112,117,112,40,101,44,116,41,123,116,104,105,115,46,112,111,112,117,112,79,112,101,110,61,33,48,59,116,114,121,123,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,108,111,103,105,110,87,105,116,104,80,111,112,117,112,40,101,44,116,41,44,116,104,105,115,46,117,115,101,114,61,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,103,101,116,85,115,101,114,40,41,44,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,61,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,40,41,44,116,104,105,115,46,101,114,114,111,114,61,110,117,108,108,125,99,97,116,99,104,40,115,41,123,116,104,105,115,46,101,114,114,111,114,61,115,44,99,111,110,115,111,108,101,46,101,114,114,111,114,40,115,41,125,102,105,110,97,108,108,121,123,116,104,105,115,46,112,111,112,117,112,79,112,101,110,61,33,49,125,116,104,105,115,46,117,115,101,114,61,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,103,101,116,85,115,101,114,40,41,44,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,61,33,48,125,44,97,115,121,110,99,32,104,97,110,100,108,101,82,101,100,105,114,101,99,116,67,97,108,108,98,97,99,107,40,41,123,116,104,105,115,46,108,111,97,100,105,110,103,61,33,48,59,116,114,121,123,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,104,97,110,100,108,101,82,101,100,105,114,101,99,116,67,97,108,108,98,97,99,107,40,41,44,116,104,105,115,46,117,115,101,114,61,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,103,101,116,85,115,101,114,40,41,44,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,61,33,48,44,116,104,105,115,46,101,114,114,111,114,61,110,117,108,108,125,99,97,116,99,104,40,101,41,123,116,104,105,115,46,101,114,114,111,114,61,101,125,102,105,110,97,108,108,121,123,116,104,105,115,46,108,111,97,100,105,110,103,61,33,49,125,125,44,108,111,103,105,110,87,105,116,104,82,101,100,105,114,101,99,116,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,108,111,103,105,110,87,105,116,104,82,101,100,105,114,101,99,116,40,101,41,125,44,103,101,116,73,100,84,111,107,101,110,67,108,97,105,109,115,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,103,101,116,73,100,84,111,107,101,110,67,108,97,105,109,115,40,101,41,125,44,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,40,101,41,125,44,103,101,116,84,111,107,101,110,87,105,116,104,80,111,112,117,112,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,103,101,116,84,111,107,101,110,87,105,116,104,80,111,112,117,112,40,101,41,125,44,108,111,103,111,117,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,108,111,103,111,117,116,40,123,108,111,103,111,117,116,80,97,114,97,109,115,58,123,114,101,116,117,114,110,84,111,58,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,111,114,105,103,105,110,125,125,41,125,125,44,97,115,121,110,99,32,99,114,101,97,116,101,100,40,41,123,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,61,97,119,97,105,116,40,48,44,99,115,46,95,65,41,40,123,100,111,109,97,105,110,58,101,44,99,108,105,101,110,116,73,100,58,116,44,97,117,116,104,111,114,105,122,97,116,105,111,110,80,97,114,97,109,115,58,123,114,101,100,105,114,101,99,116,95,117,114,105,58,111,44,97,117,100,105,101,110,99,101,58,115,125,125,41,59,116,114,121,123,105,102,40,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,115,101,97,114,99,104,46,105,110,99,108,117,100,101,115,40,34,99,111,100,101,61,34,41,38,38,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,115,101,97,114,99,104,46,105,110,99,108,117,100,101,115,40,34,115,116,97,116,101,61,34,41,41,123,99,111,110,115,116,123,97,112,112,83,116,97,116,101,58,101,125,61,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,104,97,110,100,108,101,82,101,100,105,114,101,99,116,67,97,108,108,98,97,99,107,40,41,59,116,104,105,115,46,101,114,114,111,114,61,110,117,108,108,44,97,40,101,41,125,125,99,97,116,99,104,40,105,41,123,116,104,105,115,46,101,114,114,111,114,61,105,125,102,105,110,97,108,108,121,123,116,104,105,115,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,61,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,40,41,44,116,104,105,115,46,117,115,101,114,61,97,119,97,105,116,32,116,104,105,115,46,97,117,116,104,48,67,108,105,101,110,116,46,103,101,116,85,115,101,114,40,41,44,116,104,105,115,46,108,111,97,100,105,110,103,61,33,49,125,125,125,41,44,117,115,41,44,109,115,61,123,105,110,115,116,97,108,108,40,101,44,116,41,123,101,46,112,114,111,116,111,116,121,112,101,46,36,97,117,116,104,61,112,115,40,116,41,125,125,44,103,115,61,50,59,105,91,34,100,101,102,97,117,108,116,34,93,46,117,115,101,40,121,46,90,80,41,59,118,97,114,32,102,115,61,110,101,119,32,121,46,90,80,46,83,116,111,114,101,40,123,115,116,97,116,101,58,123,115,101,101,100,58,48,44,105,110,100,105,99,101,115,58,91,93,44,116,97,103,115,58,91,93,44,115,105,115,116,50,73,110,102,111,58,110,117,108,108,44,115,105,122,101,77,105,110,58,118,111,105,100,32,48,44,115,105,122,101,77,97,120,58,118,111,105,100,32,48,44,100,97,116,101,66,111,117,110,100,115,77,105,110,58,110,117,108,108,44,100,97,116,101,66,111,117,110,100,115,77,97,120,58,110,117,108,108,44,100,97,116,101,77,105,110,58,118,111,105,100,32,48,44,100,97,116,101,77,97,120,58,118,111,105,100,32,48,44,115,101,97,114,99,104,84,101,120,116,58,34,34,44,112,97,116,104,84,101,120,116,58,34,34,44,115,111,114,116,77,111,100,101,58,34,115,99,111,114,101,34,44,102,117,122,122,121,58,33,49,44,111,112,116,76,97,110,103,58,34,101,110,34,44,111,112,116,76,97,110,103,73,115,68,101,102,97,117,108,116,58,33,48,44,111,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,58,33,48,44,111,112,116,84,104,101,109,101,58,34,108,105,103,104,116,34,44,111,112,116,68,105,115,112,108,97,121,58,34,103,114,105,100,34,44,111,112,116,83,105,122,101,58,54,48,44,111,112,116,72,105,103,104,108,105,103,104,116,58,33,48,44,111,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,58,33,49,44,111,112,116,70,117,122,122,121,58,33,48,44,111,112,116,70,114,97,103,109,101,110,116,83,105,122,101,58,50,48,48,44,111,112,116,81,117,101,114,121,77,111,100,101,58,34,115,105,109,112,108,101,34,44,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,58,33,49,44,111,112,116,67,111,108,117,109,110,115,58,34,97,117,116,111,34,44,111,112,116,83,117,103,103,101,115,116,80,97,116,104,58,33,48,44,111,112,116,84,114,101,101,109,97,112,84,121,112,101,58,34,99,97,115,99,97,100,101,100,34,44,111,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,58,34,115,113,117,97,114,105,102,121,34,44,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,58,51,44,111,112,116,84,114,101,101,109,97,112,83,105,122,101,58,34,109,101,100,105,117,109,34,44,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,58,34,80,117,66,117,71,110,34,44,111,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,58,33,49,44,111,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,58,49,53,44,111,112,116,72,105,100,101,76,101,103,97,99,121,58,33,49,44,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,58,33,49,44,111,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,58,33,49,44,111,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,58,55,48,48,44,111,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,58,33,48,44,111,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,58,33,48,44,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,91,93,44,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,58,91,93,44,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,84,97,103,115,58,91,93,44,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,91,93,44,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,58,91,93,44,115,101,108,101,99,116,101,100,84,97,103,115,58,91,93,44,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,58,110,117,108,108,44,107,101,121,83,101,113,117,101,110,99,101,58,48,44,113,117,101,114,121,83,101,113,117,101,110,99,101,58,48,44,117,105,84,97,103,72,111,118,101,114,58,110,117,108,108,44,117,105,76,105,103,104,116,98,111,120,73,115,79,112,101,110,58,33,49,44,117,105,83,104,111,119,76,105,103,104,116,98,111,120,58,33,49,44,117,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,58,91,93,44,117,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,58,91,93,44,117,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,58,91,93,44,117,105,76,105,103,104,116,98,111,120,84,121,112,101,115,58,91,93,44,117,105,76,105,103,104,116,98,111,120,75,101,121,58,48,44,117,105,76,105,103,104,116,98,111,120,83,108,105,100,101,58,48,44,117,105,82,101,97,99,104,101,100,83,99,114,111,108,108,69,110,100,58,33,49,44,117,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,58,110,117,108,108,44,117,105,83,104,111,119,68,101,116,97,105,108,115,58,33,49,44,117,105,77,105,109,101,77,97,112,58,91,93,44,97,117,116,104,48,84,111,107,101,110,58,110,117,108,108,125,44,109,117,116,97,116,105,111,110,115,58,123,115,101,116,85,105,83,104,111,119,68,101,116,97,105,108,115,58,40,101,44,116,41,61,62,101,46,117,105,83,104,111,119,68,101,116,97,105,108,115,61,116,44,115,101,116,85,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,58,40,101,44,116,41,61,62,101,46,117,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,61,116,44,115,101,116,85,105,82,101,97,99,104,101,100,83,99,114,111,108,108,69,110,100,58,40,101,44,116,41,61,62,101,46,117,105,82,101,97,99,104,101,100,83,99,114,111,108,108,69,110,100,61,116,44,115,101,116,84,97,103,115,58,40,101,44,116,41,61,62,101,46,116,97,103,115,61,116,44,115,101,116,80,97,116,104,84,101,120,116,58,40,101,44,116,41,61,62,101,46,112,97,116,104,84,101,120,116,61,116,44,115,101,116,83,105,122,101,77,105,110,58,40,101,44,116,41,61,62,101,46,115,105,122,101,77,105,110,61,116,44,115,101,116,83,105,122,101,77,97,120,58,40,101,44,116,41,61,62,101,46,115,105,122,101,77,97,120,61,116,44,115,101,116,83,105,115,116,50,73,110,102,111,58,40,101,44,116,41,61,62,101,46,115,105,115,116,50,73,110,102,111,61,116,44,115,101,116,83,101,101,100,58,40,101,44,116,41,61,62,101,46,115,101,101,100,61,116,44,115,101,116,79,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,58,40,101,44,116,41,61,62,101,46,111,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,61,116,44,115,101,116,79,112,116,76,97,110,103,58,40,101,44,116,41,61,62,123,101,46,111,112,116,76,97,110,103,61,116,44,101,46,111,112,116,76,97,110,103,73,115,68,101,102,97,117,108,116,61,33,49,125,44,115,101,116,83,111,114,116,77,111,100,101,58,40,101,44,116,41,61,62,101,46,115,111,114,116,77,111,100,101,61,116,44,115,101,116,73,110,100,105,99,101,115,58,40,101,44,116,41,61,62,123,101,46,105,110,100,105,99,101,115,61,116,44,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,108,101,110,103,116,104,62,48,63,101,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,61,116,46,102,105,108,116,101,114,40,40,116,61,62,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,115,111,109,101,40,40,101,61,62,116,46,105,100,46,115,116,97,114,116,115,87,105,116,104,40,101,41,41,41,41,41,58,101,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,61,116,125,44,115,101,116,68,97,116,101,77,105,110,58,40,101,44,116,41,61,62,101,46,100,97,116,101,77,105,110,61,116,44,115,101,116,68,97,116,101,77,97,120,58,40,101,44,116,41,61,62,101,46,100,97,116,101,77,97,120,61,116,44,115,101,116,68,97,116,101,66,111,117,110,100,115,77,105,110,58,40,101,44,116,41,61,62,101,46,100,97,116,101,66,111,117,110,100,115,77,105,110,61,116,44,115,101,116,68,97,116,101,66,111,117,110,100,115,77,97,120,58,40,101,44,116,41,61,62,101,46,100,97,116,101,66,111,117,110,100,115,77,97,120,61,116,44,115,101,116,83,101,97,114,99,104,84,101,120,116,58,40,101,44,116,41,61,62,101,46,115,101,97,114,99,104,84,101,120,116,61,116,44,115,101,116,70,117,122,122,121,58,40,101,44,116,41,61,62,101,46,102,117,122,122,121,61,116,44,115,101,116,76,97,115,116,81,117,101,114,121,82,101,115,117,108,116,58,40,101,44,116,41,61,62,101,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,61,116,44,95,115,101,116,79,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,40,101,44,116,41,61,62,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,61,116,44,95,115,101,116,79,110,76,111,97,100,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,58,40,101,44,116,41,61,62,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,61,116,44,95,115,101,116,79,110,76,111,97,100,83,101,108,101,99,116,101,100,84,97,103,115,58,40,101,44,116,41,61,62,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,84,97,103,115,61,116,44,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,40,101,44,116,41,61,62,101,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,61,116,44,115,101,116,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,58,40,101,44,116,41,61,62,101,46,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,61,116,44,115,101,116,83,101,108,101,99,116,101,100,84,97,103,115,58,40,101,44,116,41,61,62,101,46,115,101,108,101,99,116,101,100,84,97,103,115,61,116,44,115,101,116,85,105,84,97,103,72,111,118,101,114,58,40,101,44,116,41,61,62,101,46,117,105,84,97,103,72,111,118,101,114,61,116,44,115,101,116,85,105,76,105,103,104,116,98,111,120,73,115,79,112,101,110,58,40,101,44,116,41,61,62,101,46,117,105,76,105,103,104,116,98,111,120,73,115,79,112,101,110,61,116,44,95,115,101,116,85,105,83,104,111,119,76,105,103,104,116,98,111,120,58,40,101,44,116,41,61,62,101,46,117,105,83,104,111,119,76,105,103,104,116,98,111,120,61,116,44,115,101,116,85,105,76,105,103,104,116,98,111,120,75,101,121,58,40,101,44,116,41,61,62,101,46,117,105,76,105,103,104,116,98,111,120,75,101,121,61,116,44,95,115,101,116,75,101,121,83,101,113,117,101,110,99,101,58,40,101,44,116,41,61,62,101,46,107,101,121,83,101,113,117,101,110,99,101,61,116,44,95,115,101,116,81,117,101,114,121,83,101,113,117,101,110,99,101,58,40,101,44,116,41,61,62,101,46,113,117,101,114,121,83,101,113,117,101,110,99,101,61,116,44,97,100,100,76,105,103,104,116,98,111,120,83,111,117,114,99,101,58,40,101,44,123,115,111,117,114,99,101,58,116,44,116,104,117,109,98,110,97,105,108,58,115,44,99,97,112,116,105,111,110,58,105,44,116,121,112,101,58,97,125,41,61,62,123,101,46,117,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,46,112,117,115,104,40,116,41,44,101,46,117,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,46,112,117,115,104,40,115,41,44,101,46,117,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,46,112,117,115,104,40,105,41,44,101,46,117,105,76,105,103,104,116,98,111,120,84,121,112,101,115,46,112,117,115,104,40,97,41,125,44,115,101,116,85,105,76,105,103,104,116,98,111,120,83,108,105,100,101,58,40,101,44,116,41,61,62,101,46,117,105,76,105,103,104,116,98,111,120,83,108,105,100,101,61,116,44,115,101,116,85,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,58,40,101,44,116,41,61,62,101,46,117,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,61,116,44,115,101,116,85,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,58,40,101,44,116,41,61,62,101,46,117,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,61,116,44,115,101,116,85,105,76,105,103,104,116,98,111,120,84,121,112,101,115,58,40,101,44,116,41,61,62,101,46,117,105,76,105,103,104,116,98,111,120,84,121,112,101,115,61,116,44,115,101,116,85,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,58,40,101,44,116,41,61,62,101,46,117,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,61,116,44,115,101,116,79,112,116,84,104,101,109,101,58,40,101,44,116,41,61,62,101,46,111,112,116,84,104,101,109,101,61,116,44,115,101,116,79,112,116,68,105,115,112,108,97,121,58,40,101,44,116,41,61,62,101,46,111,112,116,68,105,115,112,108,97,121,61,116,44,115,101,116,79,112,116,67,111,108,117,109,110,115,58,40,101,44,116,41,61,62,101,46,111,112,116,67,111,108,117,109,110,115,61,116,44,115,101,116,79,112,116,72,105,103,104,108,105,103,104,116,58,40,101,44,116,41,61,62,101,46,111,112,116,72,105,103,104,108,105,103,104,116,61,116,44,115,101,116,79,112,116,70,117,122,122,121,58,40,101,44,116,41,61,62,101,46,102,117,122,122,121,61,116,44,115,101,116,79,112,116,83,101,97,114,99,104,73,110,80,97,116,104,58,40,101,44,116,41,61,62,101,46,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,61,116,44,115,101,116,79,112,116,83,117,103,103,101,115,116,80,97,116,104,58,40,101,44,116,41,61,62,101,46,111,112,116,83,117,103,103,101,115,116,80,97,116,104,61,116,44,115,101,116,79,112,116,70,114,97,103,109,101,110,116,83,105,122,101,58,40,101,44,116,41,61,62,101,46,111,112,116,70,114,97,103,109,101,110,116,83,105,122,101,61,116,44,115,101,116,79,112,116,81,117,101,114,121,77,111,100,101,58,40,101,44,116,41,61,62,101,46,111,112,116,81,117,101,114,121,77,111,100,101,61,116,44,115,101,116,79,112,116,82,101,115,117,108,116,83,105,122,101,58,40,101,44,116,41,61,62,101,46,111,112,116,83,105,122,101,61,116,44,115,101,116,79,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,58,40,101,44,116,41,61,62,101,46,111,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,61,116,44,115,101,116,79,112,116,84,114,101,101,109,97,112,84,121,112,101,58,40,101,44,116,41,61,62,101,46,111,112,116,84,114,101,101,109,97,112,84,121,112,101,61,116,44,115,101,116,79,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,58,40,101,44,116,41,61,62,101,46,111,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,61,116,44,115,101,116,79,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,58,40,101,44,116,41,61,62,101,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,61,116,44,115,101,116,79,112,116,84,114,101,101,109,97,112,83,105,122,101,58,40,101,44,116,41,61,62,101,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,61,116,44,115,101,116,79,112,116,84,114,101,101,109,97,112,67,111,108,111,114,58,40,101,44,116,41,61,62,101,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,61,116,44,115,101,116,79,112,116,72,105,100,101,76,101,103,97,99,121,58,40,101,44,116,41,61,62,101,46,111,112,116,72,105,100,101,76,101,103,97,99,121,61,116,44,115,101,116,79,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,58,40,101,44,116,41,61,62,101,46,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,61,116,44,115,101,116,79,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,58,40,101,44,116,41,61,62,101,46,111,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,61,116,44,115,101,116,79,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,58,40,101,44,116,41,61,62,101,46,111,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,61,116,44,115,101,116,79,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,58,40,101,44,116,41,61,62,101,46,111,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,61,116,44,115,101,116,79,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,58,40,101,44,116,41,61,62,101,46,111,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,61,116,44,115,101,116,79,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,58,40,101,44,116,41,61,62,101,46,111,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,61,116,44,115,101,116,79,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,58,40,101,44,116,41,61,62,101,46,111,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,61,116,44,115,101,116,85,105,77,105,109,101,77,97,112,58,40,101,44,116,41,61,62,101,46,117,105,77,105,109,101,77,97,112,61,116,44,98,117,115,85,112,100,97,116,101,87,97,108,108,73,116,101,109,115,58,40,41,61,62,123,125,44,98,117,115,85,112,100,97,116,101,84,97,103,115,58,40,41,61,62,123,125,44,98,117,115,83,101,97,114,99,104,58,40,41,61,62,123,125,44,98,117,115,84,111,117,99,104,69,110,100,58,40,41,61,62,123,125,44,98,117,115,84,110,84,111,117,99,104,83,116,97,114,116,58,101,61,62,123,125,44,115,101,116,65,117,116,104,48,84,111,107,101,110,58,40,101,44,116,41,61,62,101,46,97,117,116,104,48,84,111,107,101,110,61,116,125,44,97,99,116,105,111,110,115,58,123,115,101,116,83,105,115,116,50,73,110,102,111,58,40,101,44,116,41,61,62,123,101,46,99,111,109,109,105,116,40,34,115,101,116,83,105,115,116,50,73,110,102,111,34,44,116,41,44,101,46,115,116,97,116,101,46,111,112,116,76,97,110,103,73,115,68,101,102,97,117,108,116,38,38,101,46,99,111,109,109,105,116,40,34,115,101,116,79,112,116,76,97,110,103,34,44,116,46,108,97,110,103,41,125,44,108,111,97,100,70,114,111,109,65,114,103,115,40,123,99,111,109,109,105,116,58,101,125,44,116,41,123,116,46,113,117,101,114,121,46,113,38,38,101,40,34,115,101,116,83,101,97,114,99,104,84,101,120,116,34,44,116,46,113,117,101,114,121,46,113,41,44,118,111,105,100,32,48,33,61,61,116,46,113,117,101,114,121,46,102,117,122,122,121,38,38,101,40,34,115,101,116,70,117,122,122,121,34,44,33,48,41,44,116,46,113,117,101,114,121,46,105,38,38,101,40,34,95,115,101,116,79,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,34,44,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,46,113,117,101,114,121,46,105,41,63,116,46,113,117,101,114,121,46,105,58,91,116,46,113,117,101,114,121,46,105,93,41,44,116,46,113,117,101,114,121,46,100,77,105,110,38,38,101,40,34,115,101,116,68,97,116,101,77,105,110,34,44,78,117,109,98,101,114,40,116,46,113,117,101,114,121,46,100,77,105,110,41,41,44,116,46,113,117,101,114,121,46,100,77,97,120,38,38,101,40,34,115,101,116,68,97,116,101,77,97,120,34,44,78,117,109,98,101,114,40,116,46,113,117,101,114,121,46,100,77,97,120,41,41,44,116,46,113,117,101,114,121,46,115,77,105,110,38,38,101,40,34,115,101,116,83,105,122,101,77,105,110,34,44,78,117,109,98,101,114,40,116,46,113,117,101,114,121,46,115,77,105,110,41,41,44,116,46,113,117,101,114,121,46,115,77,97,120,38,38,101,40,34,115,101,116,83,105,122,101,77,97,120,34,44,78,117,109,98,101,114,40,116,46,113,117,101,114,121,46,115,77,97,120,41,41,44,116,46,113,117,101,114,121,46,112,97,116,104,38,38,101,40,34,115,101,116,80,97,116,104,84,101,120,116,34,44,116,46,113,117,101,114,121,46,112,97,116,104,41,44,116,46,113,117,101,114,121,46,109,38,38,101,40,34,95,115,101,116,79,110,76,111,97,100,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,34,44,113,40,116,46,113,117,101,114,121,46,109,41,41,44,116,46,113,117,101,114,121,46,116,38,38,101,40,34,95,115,101,116,79,110,76,111,97,100,83,101,108,101,99,116,101,100,84,97,103,115,34,44,116,46,113,117,101,114,121,46,116,46,115,112,108,105,116,40,34,44,34,41,41,44,116,46,113,117,101,114,121,46,115,111,114,116,38,38,40,101,40,34,115,101,116,83,111,114,116,77,111,100,101,34,44,116,46,113,117,101,114,121,46,115,111,114,116,41,44,34,114,97,110,100,111,109,34,61,61,61,116,46,113,117,101,114,121,46,115,111,114,116,38,38,118,111,105,100,32,48,61,61,61,116,46,113,117,101,114,121,46,115,101,101,100,38,38,40,116,46,113,117,101,114,121,46,115,101,101,100,61,72,40,41,46,116,111,83,116,114,105,110,103,40,41,41,44,101,40,34,115,101,116,83,101,101,100,34,44,78,117,109,98,101,114,40,116,46,113,117,101,114,121,46,115,101,101,100,41,41,41,125,44,97,115,121,110,99,32,117,112,100,97,116,101,65,114,103,115,40,123,115,116,97,116,101,58,101,125,44,116,41,123,34,47,34,61,61,61,116,46,99,117,114,114,101,110,116,82,111,117,116,101,46,112,97,116,104,38,38,97,119,97,105,116,32,116,46,112,117,115,104,40,123,113,117,101,114,121,58,123,113,58,101,46,115,101,97,114,99,104,84,101,120,116,46,116,114,105,109,40,41,63,101,46,115,101,97,114,99,104,84,101,120,116,46,116,114,105,109,40,41,46,114,101,112,108,97,99,101,40,47,92,115,43,47,103,44,34,32,34,41,58,118,111,105,100,32,48,44,102,117,122,122,121,58,101,46,102,117,122,122,121,63,110,117,108,108,58,118,111,105,100,32,48,44,105,58,101,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,63,101,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,109,97,112,40,40,101,61,62,101,46,105,100,80,114,101,102,105,120,41,41,58,118,111,105,100,32,48,44,100,77,105,110,58,101,46,100,97,116,101,77,105,110,44,100,77,97,120,58,101,46,100,97,116,101,77,97,120,44,115,77,105,110,58,101,46,115,105,122,101,77,105,110,44,115,77,97,120,58,101,46,115,105,122,101,77,97,120,44,112,97,116,104,58,101,46,112,97,116,104,84,101,120,116,63,101,46,112,97,116,104,84,101,120,116,58,118,111,105,100,32,48,44,109,58,80,40,101,46,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,41,44,116,58,48,61,61,101,46,115,101,108,101,99,116,101,100,84,97,103,115,46,108,101,110,103,116,104,63,118,111,105,100,32,48,58,101,46,115,101,108,101,99,116,101,100,84,97,103,115,46,106,111,105,110,40,34,44,34,41,44,115,111,114,116,58,34,115,99,111,114,101,34,61,61,61,101,46,115,111,114,116,77,111,100,101,63,118,111,105,100,32,48,58,101,46,115,111,114,116,77,111,100,101,44,115,101,101,100,58,34,114,97,110,100,111,109,34,61,61,61,101,46,115,111,114,116,77,111,100,101,63,101,46,115,101,101,100,46,116,111,83,116,114,105,110,103,40,41,58,118,111,105,100,32,48,125,125,41,46,99,97,116,99,104,40,40,40,41,61,62,123,125,41,41,125,44,117,112,100,97,116,101,67,111,110,102,105,103,117,114,97,116,105,111,110,40,123,115,116,97,116,101,58,101,125,41,123,99,111,110,115,116,32,116,61,123,125,59,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,111,114,69,97,99,104,40,40,115,61,62,123,115,46,115,116,97,114,116,115,87,105,116,104,40,34,111,112,116,34,41,38,38,40,116,91,115,93,61,101,91,115,93,41,125,41,41,44,116,91,34,118,101,114,115,105,111,110,34,93,61,103,115,44,108,111,99,97,108,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,34,115,105,115,116,50,95,99,111,110,102,105,103,117,114,97,116,105,111,110,34,44,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,41,41,125,44,108,111,97,100,67,111,110,102,105,103,117,114,97,116,105,111,110,40,123,115,116,97,116,101,58,101,125,41,123,99,111,110,115,116,32,116,61,108,111,99,97,108,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,34,115,105,115,116,50,95,99,111,110,102,105,103,117,114,97,116,105,111,110,34,41,59,105,102,40,116,41,123,99,111,110,115,116,32,115,61,74,83,79,78,46,112,97,114,115,101,40,116,41,59,34,118,101,114,115,105,111,110,34,105,110,32,115,38,38,115,91,34,118,101,114,115,105,111,110,34,93,61,61,103,115,124,124,40,108,111,99,97,108,83,116,111,114,97,103,101,46,114,101,109,111,118,101,73,116,101,109,40,34,115,105,115,116,50,95,99,111,110,102,105,103,117,114,97,116,105,111,110,34,41,44,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,114,101,108,111,97,100,40,41,41,44,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,111,114,69,97,99,104,40,40,116,61,62,123,116,46,115,116,97,114,116,115,87,105,116,104,40,34,111,112,116,34,41,38,38,40,101,91,116,93,61,115,91,116,93,41,125,41,41,125,125,44,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,40,123,99,111,109,109,105,116,58,101,125,44,116,41,61,62,101,40,34,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,34,44,116,41,44,103,101,116,75,101,121,83,101,113,117,101,110,99,101,40,123,99,111,109,109,105,116,58,101,44,115,116,97,116,101,58,116,125,41,123,99,111,110,115,116,32,115,61,116,46,107,101,121,83,101,113,117,101,110,99,101,59,114,101,116,117,114,110,32,101,40,34,95,115,101,116,75,101,121,83,101,113,117,101,110,99,101,34,44,115,43,49,41,44,115,125,44,105,110,99,114,101,109,101,110,116,81,117,101,114,121,83,101,113,117,101,110,99,101,40,123,99,111,109,109,105,116,58,101,44,115,116,97,116,101,58,116,125,41,123,99,111,110,115,116,32,115,61,116,46,113,117,101,114,121,83,101,113,117,101,110,99,101,59,114,101,116,117,114,110,32,101,40,34,95,115,101,116,81,117,101,114,121,83,101,113,117,101,110,99,101,34,44,115,43,49,41,44,115,125,44,114,101,109,111,117,110,116,76,105,103,104,116,98,111,120,40,123,99,111,109,109,105,116,58,101,44,115,116,97,116,101,58,116,125,41,123,101,40,34,115,101,116,85,105,76,105,103,104,116,98,111,120,75,101,121,34,44,116,46,117,105,76,105,103,104,116,98,111,120,75,101,121,43,49,41,125,44,115,104,111,119,76,105,103,104,116,98,111,120,40,123,99,111,109,109,105,116,58,101,44,115,116,97,116,101,58,116,125,41,123,101,40,34,95,115,101,116,85,105,83,104,111,119,76,105,103,104,116,98,111,120,34,44,33,116,46,117,105,83,104,111,119,76,105,103,104,116,98,111,120,41,125,44,99,108,101,97,114,82,101,115,117,108,116,115,40,123,99,111,109,109,105,116,58,101,125,41,123,101,40,34,115,101,116,76,97,115,116,81,117,101,114,121,82,101,115,117,108,116,34,44,110,117,108,108,41,44,101,40,34,95,115,101,116,75,101,121,83,101,113,117,101,110,99,101,34,44,48,41,44,101,40,34,95,115,101,116,85,105,83,104,111,119,76,105,103,104,116,98,111,120,34,44,33,49,41,44,101,40,34,115,101,116,85,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,34,44,91,93,41,44,101,40,34,115,101,116,85,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,34,44,91,93,41,44,101,40,34,115,101,116,85,105,76,105,103,104,116,98,111,120,84,121,112,101,115,34,44,91,93,41,44,101,40,34,115,101,116,85,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,34,44,91,93,41,44,101,40,34,115,101,116,85,105,76,105,103,104,116,98,111,120,75,101,121,34,44,48,41,44,101,40,34,115,101,116,85,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,34,44,110,117,108,108,41,125,44,97,115,121,110,99,32,108,111,97,100,65,117,116,104,48,84,111,107,101,110,40,123,99,111,109,109,105,116,58,101,125,41,123,99,111,110,115,116,32,116,61,104,115,40,41,44,115,61,97,119,97,105,116,32,116,46,103,101,116,84,111,107,101,110,83,105,108,101,110,116,108,121,40,41,59,101,40,34,115,101,116,65,117,116,104,48,84,111,107,101,110,34,44,115,41,44,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,61,96,115,105,115,116,50,45,97,117,116,104,48,61,36,123,115,125,59,96,125,125,44,109,111,100,117,108,101,115,58,123,125,44,103,101,116,116,101,114,115,58,123,115,101,101,100,58,101,61,62,101,46,115,101,101,100,44,103,101,116,80,97,116,104,84,101,120,116,58,101,61,62,101,46,112,97,116,104,84,101,120,116,44,105,110,100,105,99,101,115,58,101,61,62,101,46,105,110,100,105,99,101,115,44,115,105,115,116,50,73,110,102,111,58,101,61,62,101,46,115,105,115,116,50,73,110,102,111,44,105,110,100,101,120,77,97,112,58,101,61,62,123,99,111,110,115,116,32,116,61,123,125,59,114,101,116,117,114,110,32,101,46,105,110,100,105,99,101,115,46,102,111,114,69,97,99,104,40,40,101,61,62,116,91,101,46,105,100,93,61,101,41,41,44,116,125,44,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,101,61,62,101,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,44,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,101,61,62,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,44,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,58,101,61,62,101,46,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,44,115,101,108,101,99,116,101,100,84,97,103,115,58,101,61,62,101,46,115,101,108,101,99,116,101,100,84,97,103,115,44,100,97,116,101,77,105,110,58,101,61,62,101,46,100,97,116,101,77,105,110,44,100,97,116,101,77,97,120,58,101,61,62,101,46,100,97,116,101,77,97,120,44,115,105,122,101,77,105,110,58,101,61,62,101,46,115,105,122,101,77,105,110,44,115,105,122,101,77,97,120,58,101,61,62,101,46,115,105,122,101,77,97,120,44,115,101,97,114,99,104,84,101,120,116,58,101,61,62,101,46,115,101,97,114,99,104,84,101,120,116,44,112,97,116,104,84,101,120,116,58,101,61,62,101,46,112,97,116,104,84,101,120,116,44,102,117,122,122,121,58,101,61,62,101,46,102,117,122,122,121,44,115,105,122,101,58,101,61,62,101,46,111,112,116,83,105,122,101,44,115,111,114,116,77,111,100,101,58,101,61,62,101,46,115,111,114,116,77,111,100,101,44,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,58,101,61,62,101,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,44,108,97,115,116,68,111,99,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,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,63,110,117,108,108,58,101,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,46,104,105,116,115,46,104,105,116,115,46,115,108,105,99,101,40,45,49,41,91,48,93,125,44,117,105,84,97,103,72,111,118,101,114,58,101,61,62,101,46,117,105,84,97,103,72,111,118,101,114,44,117,105,83,104,111,119,76,105,103,104,116,98,111,120,58,101,61,62,101,46,117,105,83,104,111,119,76,105,103,104,116,98,111,120,44,117,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,58,101,61,62,101,46,117,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,44,117,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,58,101,61,62,101,46,117,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,44,117,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,58,101,61,62,101,46,117,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,44,117,105,76,105,103,104,116,98,111,120,84,121,112,101,115,58,101,61,62,101,46,117,105,76,105,103,104,116,98,111,120,84,121,112,101,115,44,117,105,76,105,103,104,116,98,111,120,75,101,121,58,101,61,62,101,46,117,105,76,105,103,104,116,98,111,120,75,101,121,44,117,105,76,105,103,104,116,98,111,120,83,108,105,100,101,58,101,61,62,101,46,117,105,76,105,103,104,116,98,111,120,83,108,105,100,101,44,111,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,58,101,61,62,101,46,111,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,44,111,112,116,76,97,110,103,58,101,61,62,101,46,111,112,116,76,97,110,103,44,111,112,116,84,104,101,109,101,58,101,61,62,101,46,111,112,116,84,104,101,109,101,44,111,112,116,68,105,115,112,108,97,121,58,101,61,62,101,46,111,112,116,68,105,115,112,108,97,121,44,111,112,116,67,111,108,117,109,110,115,58,101,61,62,101,46,111,112,116,67,111,108,117,109,110,115,44,111,112,116,72,105,103,104,108,105,103,104,116,58,101,61,62,101,46,111,112,116,72,105,103,104,108,105,103,104,116,44,111,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,58,101,61,62,101,46,111,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,44,111,112,116,70,117,122,122,121,58,101,61,62,101,46,111,112,116,70,117,122,122,121,44,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,58,101,61,62,101,46,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,44,111,112,116,83,117,103,103,101,115,116,80,97,116,104,58,101,61,62,101,46,111,112,116,83,117,103,103,101,115,116,80,97,116,104,44,111,112,116,70,114,97,103,109,101,110,116,83,105,122,101,58,101,61,62,101,46,111,112,116,70,114,97,103,109,101,110,116,83,105,122,101,44,111,112,116,81,117,101,114,121,77,111,100,101,58,101,61,62,101,46,111,112,116,81,117,101,114,121,77,111,100,101,44,111,112,116,84,114,101,101,109,97,112,84,121,112,101,58,101,61,62,101,46,111,112,116,84,114,101,101,109,97,112,84,121,112,101,44,111,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,58,101,61,62,101,46,111,112,116,84,114,101,101,109,97,112,84,105,108,105,110,103,44,111,112,116,84,114,101,101,109,97,112,83,105,122,101,58,101,61,62,101,46,111,112,116,84,114,101,101,109,97,112,83,105,122,101,44,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,58,101,61,62,101,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,44,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,58,101,61,62,101,46,111,112,116,84,114,101,101,109,97,112,67,111,108,111,114,44,111,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,58,101,61,62,101,46,111,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,44,111,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,58,101,61,62,101,46,111,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,44,111,112,116,82,101,115,117,108,116,83,105,122,101,58,101,61,62,101,46,111,112,116,83,105,122,101,44,111,112,116,72,105,100,101,76,101,103,97,99,121,58,101,61,62,101,46,111,112,116,72,105,100,101,76,101,103,97,99,121,44,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,58,101,61,62,101,46,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,44,111,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,58,101,61,62,101,46,111,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,44,111,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,58,101,61,62,101,46,111,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,44,111,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,58,101,61,62,101,46,111,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,44,111,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,58,101,61,62,101,46,111,112,116,83,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,125,125,41,59,99,111,110,115,116,32,98,115,61,123,115,99,111,114,101,58,123,109,111,100,101,58,91,123,95,115,99,111,114,101,58,123,111,114,100,101,114,58,34,100,101,115,99,34,125,125,44,123,95,116,105,101,58,123,111,114,100,101,114,58,34,97,115,99,34,125,125,93,44,107,101,121,58,101,61,62,101,46,95,115,99,111,114,101,125,44,114,97,110,100,111,109,58,123,109,111,100,101,58,91,123,95,115,99,111,114,101,58,123,111,114,100,101,114,58,34,100,101,115,99,34,125,125,44,123,95,116,105,101,58,123,111,114,100,101,114,58,34,97,115,99,34,125,125,93,44,107,101,121,58,101,61,62,101,46,95,115,99,111,114,101,125,44,100,97,116,101,65,115,99,58,123,109,111,100,101,58,91,123,109,116,105,109,101,58,123,111,114,100,101,114,58,34,97,115,99,34,125,125,44,123,95,116,105,101,58,123,111,114,100,101,114,58,34,97,115,99,34,125,125,93,44,107,101,121,58,101,61,62,101,46,95,115,111,117,114,99,101,46,109,116,105,109,101,125,44,100,97,116,101,68,101,115,99,58,123,109,111,100,101,58,91,123,109,116,105,109,101,58,123,111,114,100,101,114,58,34,100,101,115,99,34,125,125,44,123,95,116,105,101,58,123,111,114,100,101,114,58,34,97,115,99,34,125,125,93,44,107,101,121,58,101,61,62,101,46,95,115,111,117,114,99,101,46,109,116,105,109,101,125,44,115,105,122,101,65,115,99,58,123,109,111,100,101,58,91,123,115,105,122,101,58,123,111,114,100,101,114,58,34,97,115,99,34,125,125,44,123,95,116,105,101,58,123,111,114,100,101,114,58,34,97,115,99,34,125,125,93,44,107,101,121,58,101,61,62,101,46,95,115,111,117,114,99,101,46,115,105,122,101,125,44,115,105,122,101,68,101,115,99,58,123,109,111,100,101,58,91,123,115,105,122,101,58,123,111,114,100,101,114,58,34,100,101,115,99,34,125,125,44,123,95,116,105,101,58,123,111,114,100,101,114,58,34,97,115,99,34,125,125,93,44,107,101,121,58,101,61,62,101,46,95,115,111,117,114,99,101,46,115,105,122,101,125,44,110,97,109,101,65,115,99,58,123,109,111,100,101,58,91,123,110,97,109,101,58,123,111,114,100,101,114,58,34,97,115,99,34,125,125,44,123,95,116,105,101,58,123,111,114,100,101,114,58,34,97,115,99,34,125,125,93,44,107,101,121,58,101,61,62,101,46,95,115,111,117,114,99,101,46,110,97,109,101,125,44,110,97,109,101,68,101,115,99,58,123,109,111,100,101,58,91,123,110,97,109,101,58,123,111,114,100,101,114,58,34,100,101,115,99,34,125,125,44,123,95,116,105,101,58,123,111,114,100,101,114,58,34,97,115,99,34,125,125,93,44,107,101,121,58,101,61,62,101,46,95,115,111,117,114,99,101,46,110,97,109,101,125,125,59,99,108,97,115,115,32,118,115,123,115,101,97,114,99,104,81,117,101,114,121,40,101,61,33,49,41,123,99,111,110,115,116,32,116,61,102,115,46,103,101,116,116,101,114,115,44,115,61,116,46,115,101,97,114,99,104,84,101,120,116,44,105,61,116,46,112,97,116,104,84,101,120,116,44,97,61,34,34,61,61,61,115,44,111,61,116,46,115,105,122,101,77,105,110,44,114,61,116,46,115,105,122,101,77,97,120,44,110,61,116,46,100,97,116,101,77,105,110,44,108,61,116,46,100,97,116,101,77,97,120,44,99,61,116,46,102,117,122,122,121,44,100,61,116,46,115,105,122,101,44,117,61,116,46,108,97,115,116,68,111,99,44,104,61,116,46,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,109,97,112,40,40,101,61,62,101,46,105,100,41,41,44,112,61,116,46,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,44,109,61,116,46,115,101,108,101,99,116,101,100,84,97,103,115,44,103,61,102,115,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,101,115,86,101,114,115,105,111,110,76,101,103,97,99,121,44,102,61,91,123,116,101,114,109,115,58,123,105,110,100,101,120,58,104,125,125,93,44,98,61,91,34,110,97,109,101,94,56,34,44,34,99,111,110,116,101,110,116,94,51,34,44,34,97,108,98,117,109,94,56,34,44,34,97,114,116,105,115,116,94,56,34,44,34,116,105,116,108,101,94,56,34,44,34,103,101,110,114,101,94,50,34,44,34,97,108,98,117,109,95,97,114,116,105,115,116,94,56,34,44,34,102,111,110,116,95,110,97,109,101,94,54,34,93,59,105,102,40,116,46,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,38,38,98,46,112,117,115,104,40,34,112,97,116,104,46,116,101,120,116,94,53,34,41,44,99,38,38,40,98,46,112,117,115,104,40,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,41,44,116,46,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,38,38,98,46,112,117,115,104,40,34,112,97,116,104,46,110,71,114,97,109,34,41,44,98,46,112,117,115,104,40,34,110,97,109,101,46,110,71,114,97,109,94,51,34,41,41,44,33,101,41,123,111,38,38,114,63,102,46,112,117,115,104,40,123,114,97,110,103,101,58,123,115,105,122,101,58,123,103,116,101,58,111,44,108,116,101,58,114,125,125,125,41,58,111,63,102,46,112,117,115,104,40,123,114,97,110,103,101,58,123,115,105,122,101,58,123,103,116,101,58,111,125,125,125,41,58,114,38,38,102,46,112,117,115,104,40,123,114,97,110,103,101,58,123,115,105,122,101,58,123,108,116,101,58,114,125,125,125,41,44,110,38,38,108,63,102,46,112,117,115,104,40,123,114,97,110,103,101,58,123,109,116,105,109,101,58,123,103,116,101,58,110,44,108,116,101,58,108,125,125,125,41,58,110,63,102,46,112,117,115,104,40,123,114,97,110,103,101,58,123,109,116,105,109,101,58,123,103,116,101,58,110,125,125,125,41,58,108,38,38,102,46,112,117,115,104,40,123,114,97,110,103,101,58,123,109,116,105,109,101,58,123,108,116,101,58,108,125,125,125,41,59,99,111,110,115,116,32,101,61,105,46,114,101,112,108,97,99,101,40,47,92,47,36,47,44,34,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,34,34,33,61,61,101,38,38,102,46,112,117,115,104,40,123,116,101,114,109,58,123,112,97,116,104,58,101,125,125,41,44,112,46,108,101,110,103,116,104,62,48,38,38,102,46,112,117,115,104,40,123,116,101,114,109,115,58,123,109,105,109,101,58,112,125,125,41,44,109,46,108,101,110,103,116,104,62,48,38,38,40,116,46,111,112,116,84,97,103,79,114,79,112,101,114,97,116,111,114,63,102,46,112,117,115,104,40,123,116,101,114,109,115,58,123,116,97,103,58,109,125,125,41,58,109,46,102,111,114,69,97,99,104,40,40,101,61,62,102,46,112,117,115,104,40,123,116,101,114,109,58,123,116,97,103,58,101,125,125,41,41,41,41,125,108,101,116,32,118,59,118,61,34,115,105,109,112,108,101,34,61,61,61,116,46,111,112,116,81,117,101,114,121,77,111,100,101,63,123,115,105,109,112,108,101,95,113,117,101,114,121,95,115,116,114,105,110,103,58,123,113,117,101,114,121,58,115,44,102,105,101,108,100,115,58,98,44,100,101,102,97,117,108,116,95,111,112,101,114,97,116,111,114,58,34,97,110,100,34,125,125,58,123,113,117,101,114,121,95,115,116,114,105,110,103,58,123,113,117,101,114,121,58,115,44,100,101,102,97,117,108,116,95,102,105,101,108,100,58,34,110,97,109,101,34,44,100,101,102,97,117,108,116,95,111,112,101,114,97,116,111,114,58,34,97,110,100,34,125,125,59,99,111,110,115,116,32,120,61,123,95,115,111,117,114,99,101,58,123,101,120,99,108,117,100,101,115,58,91,34,99,111,110,116,101,110,116,34,44,34,95,116,105,101,34,93,125,44,113,117,101,114,121,58,123,98,111,111,108,58,123,102,105,108,116,101,114,58,102,125,125,44,115,111,114,116,58,98,115,91,116,46,115,111,114,116,77,111,100,101,93,46,109,111,100,101,44,97,103,103,115,58,123,116,111,116,97,108,95,115,105,122,101,58,123,115,117,109,58,123,102,105,101,108,100,58,34,115,105,122,101,34,125,125,44,116,111,116,97,108,95,99,111,117,110,116,58,123,118,97,108,117,101,95,99,111,117,110,116,58,123,102,105,101,108,100,58,34,115,105,122,101,34,125,125,125,44,115,105,122,101,58,100,125,59,114,101,116,117,114,110,32,97,124,124,101,124,124,40,120,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,61,118,41,44,117,38,38,40,120,46,115,101,97,114,99,104,95,97,102,116,101,114,61,91,98,115,91,116,46,115,111,114,116,77,111,100,101,93,46,107,101,121,40,117,41,44,117,91,34,95,105,100,34,93,93,41,44,116,46,111,112,116,72,105,103,104,108,105,103,104,116,38,38,40,120,46,104,105,103,104,108,105,103,104,116,61,123,112,114,101,95,116,97,103,115,58,91,34,60,109,97,114,107,62,34,93,44,112,111,115,116,95,116,97,103,115,58,91,34,60,47,109,97,114,107,62,34,93,44,102,114,97,103,109,101,110,116,95,115,105,122,101,58,116,46,111,112,116,70,114,97,103,109,101,110,116,83,105,122,101,44,110,117,109,98,101,114,95,111,102,95,102,114,97,103,109,101,110,116,115,58,49,44,111,114,100,101,114,58,34,115,99,111,114,101,34,44,102,105,101,108,100,115,58,123,99,111,110,116,101,110,116,58,123,125,44,110,97,109,101,58,123,125,44,34,110,97,109,101,46,110,71,114,97,109,34,58,123,125,44,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,58,123,125,44,102,111,110,116,95,110,97,109,101,58,123,125,125,125,44,103,124,124,40,120,46,104,105,103,104,108,105,103,104,116,46,109,97,120,95,97,110,97,108,121,122,101,100,95,111,102,102,115,101,116,61,57,57,57,57,57,57,41,44,116,46,111,112,116,83,101,97,114,99,104,73,110,80,97,116,104,38,38,40,120,46,104,105,103,104,108,105,103,104,116,46,102,105,101,108,100,115,91,34,112,97,116,104,46,116,101,120,116,34,93,61,123,125,44,120,46,104,105,103,104,108,105,103,104,116,46,102,105,101,108,100,115,91,34,112,97,116,104,46,110,71,114,97,109,34,93,61,123,125,41,41,44,34,114,97,110,100,111,109,34,61,61,61,116,46,115,111,114,116,77,111,100,101,38,38,40,120,46,113,117,101,114,121,61,123,102,117,110,99,116,105,111,110,95,115,99,111,114,101,58,123,113,117,101,114,121,58,123,98,111,111,108,58,123,109,117,115,116,58,102,125,125,44,102,117,110,99,116,105,111,110,115,58,91,123,114,97,110,100,111,109,95,115,99,111,114,101,58,123,115,101,101,100,58,116,46,115,101,101,100,44,102,105,101,108,100,58,34,95,115,101,113,95,110,111,34,125,44,119,101,105,103,104,116,58,49,101,51,125,93,44,98,111,111,115,116,95,109,111,100,101,58,34,115,117,109,34,125,125,44,97,124,124,101,124,124,120,46,113,117,101,114,121,46,102,117,110,99,116,105,111,110,95,115,99,111,114,101,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,46,112,117,115,104,40,118,41,41,44,120,125,125,118,97,114,32,120,115,61,110,101,119,32,118,115,44,121,115,61,115,40,51,50,55,57,41,44,95,115,61,115,46,110,40,121,115,41,44,84,115,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,71,114,105,100,76,97,121,111,117,116,34,44,123,114,101,102,58,34,103,114,105,100,45,108,97,121,111,117,116,34,44,97,116,116,114,115,58,123,111,112,116,105,111,110,115,58,101,46,103,114,105,100,79,112,116,105,111,110,115,125,44,111,110,58,123,97,112,112,101,110,100,58,101,46,97,112,112,101,110,100,44,34,108,97,121,111,117,116,45,99,111,109,112,108,101,116,101,34,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,36,101,109,105,116,40,34,108,97,121,111,117,116,45,99,111,109,112,108,101,116,101,34,41,125,125,125,44,101,46,95,108,40,101,46,100,111,99,115,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,115,40,34,68,111,99,67,97,114,100,34,44,123,107,101,121,58,116,46,95,105,100,44,97,116,116,114,115,58,123,100,111,99,58,116,44,119,105,100,116,104,58,101,46,119,105,100,116,104,125,125,41,125,41,41,44,49,41,125,44,83,115,61,91,93,44,119,115,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,111,99,45,99,97,114,100,34,44,99,108,97,115,115,58,123,34,115,117,98,45,100,111,99,117,109,101,110,116,34,58,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,83,117,98,68,111,99,117,109,101,110,116,125,44,115,116,121,108,101,58,34,119,105,100,116,104,58,32,34,43,101,46,119,105,100,116,104,43,34,112,120,34,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,98,117,115,84,110,84,111,117,99,104,83,116,97,114,116,34,44,110,117,108,108,41,125,125,125,44,91,115,40,34,98,45,99,97,114,100,34,44,123,97,116,116,114,115,58,123,34,110,111,45,98,111,100,121,34,58,34,34,44,34,105,109,103,45,116,111,112,34,58,34,34,125,125,44,91,115,40,34,68,111,99,73,110,102,111,77,111,100,97,108,34,44,123,97,116,116,114,115,58,123,115,104,111,119,58,101,46,115,104,111,119,73,110,102,111,44,100,111,99,58,101,46,100,111,99,125,44,111,110,58,123,99,108,111,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,115,104,111,119,73,110,102,111,61,33,49,125,125,125,41,44,115,40,34,67,111,110,116,101,110,116,68,105,118,34,44,123,97,116,116,114,115,58,123,100,111,99,58,101,46,100,111,99,125,125,41,44,115,40,34,70,117,108,108,84,104,117,109,98,110,97,105,108,34,44,123,97,116,116,114,115,58,123,100,111,99,58,101,46,100,111,99,44,34,115,109,97,108,108,45,98,97,100,103,101,34,58,101,46,115,109,97,108,108,66,97,100,103,101,125,44,111,110,58,123,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,125,125,125,41,44,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,65,117,100,105,111,63,115,40,34,97,117,100,105,111,34,44,123,114,101,102,58,34,97,117,100,105,111,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,97,117,100,105,111,45,102,105,116,32,102,105,116,34,44,97,116,116,114,115,58,123,112,114,101,108,111,97,100,58,34,110,111,110,101,34,44,99,111,110,116,114,111,108,115,58,34,34,44,116,121,112,101,58,101,46,100,111,99,46,95,115,111,117,114,99,101,46,109,105,109,101,44,115,114,99,58,34,102,47,34,43,101,46,100,111,99,46,95,105,100,125,44,111,110,58,123,112,108,97,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,65,117,100,105,111,80,108,97,121,40,41,125,125,125,41,58,101,46,95,101,40,41,44,115,40,34,98,45,99,97,114,100,45,98,111,100,121,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,97,100,100,105,110,103,45,48,51,34,125,44,91,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,100,105,115,112,108,97,121,58,34,102,108,101,120,34,125,125,44,91,115,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,105,110,102,111,45,105,99,111,110,34,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,73,110,102,111,67,108,105,99,107,40,41,125,125,125,41,44,115,40,34,68,111,99,70,105,108,101,84,105,116,108,101,34,44,123,97,116,116,114,115,58,123,100,111,99,58,101,46,100,111,99,125,125,41,93,44,49,41,44,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,100,45,116,101,120,116,34,125,44,91,115,40,34,84,97,103,67,111,110,116,97,105,110,101,114,34,44,123,97,116,116,114,115,58,123,104,105,116,58,101,46,100,111,99,125,125,41,93,44,49,41,93,41,93,44,49,41,93,44,49,41,125,44,36,115,61,91,93,44,67,115,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,123,111,110,58,123,109,111,117,115,101,101,110,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,115,104,111,119,65,100,100,66,117,116,116,111,110,61,33,48,125,44,109,111,117,115,101,108,101,97,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,115,104,111,119,65,100,100,66,117,116,116,111,110,61,33,49,125,125,125,44,91,115,40,34,98,45,109,111,100,97,108,34,44,123,97,116,116,114,115,58,123,116,105,116,108,101,58,101,46,36,116,40,34,115,97,118,101,84,97,103,77,111,100,97,108,84,105,116,108,101,34,41,44,34,104,105,100,101,45,102,111,111,116,101,114,34,58,34,34,44,34,110,111,45,102,97,100,101,34,58,34,34,44,99,101,110,116,101,114,101,100,58,34,34,44,115,105,122,101,58,34,108,103,34,44,115,116,97,116,105,99,58,34,34,44,108,97,122,121,58,34,34,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,115,104,111,119,77,111,100,97,108,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,115,104,111,119,77,111,100,97,108,61,116,125,44,101,120,112,114,101,115,115,105,111,110,58,34,115,104,111,119,77,111,100,97,108,34,125,125,44,91,115,40,34,98,45,114,111,119,34,44,91,115,40,34,98,45,99,111,108,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,34,102,108,101,120,45,103,114,111,119,34,58,34,50,34,125,44,97,116,116,114,115,58,123,115,109,58,34,34,125,125,44,91,115,40,34,86,117,101,83,105,109,112,108,101,83,117,103,103,101,115,116,34,44,123,114,101,102,58,34,115,117,103,103,101,115,116,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,120,45,102,108,101,120,34,44,115,116,97,116,105,99,83,116,121,108,101,58,123,34,109,97,114,103,105,110,45,116,111,112,34,58,34,49,55,112,120,34,125,44,97,116,116,114,115,58,123,118,97,108,117,101,58,101,46,116,97,103,84,101,120,116,44,108,105,115,116,58,101,46,115,117,103,103,101,115,116,84,97,103,44,34,109,97,120,45,115,117,103,103,101,115,116,105,111,110,115,34,58,48,44,112,108,97,99,101,104,111,108,100,101,114,58,101,46,36,116,40,34,115,97,118,101,84,97,103,80,108,97,99,101,104,111,108,100,101,114,34,41,125,44,111,110,58,123,115,101,108,101,99,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,115,101,116,84,97,103,84,101,120,116,40,116,41,125,44,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,115,101,116,84,97,103,84,101,120,116,40,116,41,125,125,44,115,99,111,112,101,100,83,108,111,116,115,58,101,46,95,117,40,91,123,107,101,121,58,34,115,117,103,103,101,115,116,105,111,110,45,105,116,101,109,34,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,105,61,116,46,115,117,103,103,101,115,116,105,111,110,44,97,61,116,46,113,117,101,114,121,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,123,125,44,91,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,115,117,103,103,101,115,116,105,111,110,45,108,105,110,101,34,125,44,91,115,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,97,100,103,101,32,98,97,100,103,101,45,115,117,103,103,101,115,116,105,111,110,34,44,115,116,121,108,101,58,123,98,97,99,107,103,114,111,117,110,100,58,101,46,103,101,116,66,103,40,105,41,44,99,111,108,111,114,58,101,46,103,101,116,70,103,40,105,41,125,125,44,91,115,40,34,115,116,114,111,110,103,34,44,91,101,46,95,118,40,101,46,95,115,40,97,41,41,93,41,44,101,46,95,118,40,101,46,95,115,40,101,46,103,101,116,83,117,103,103,101,115,116,105,111,110,87,105,116,104,111,117,116,81,117,101,114,121,80,114,101,102,105,120,40,105,44,97,41,41,43,34,32,34,41,93,41,93,41,93,41,125,125,93,41,125,41,93,44,49,41,44,115,40,34,98,45,99,111,108,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,116,45,52,34,125,44,91,115,40,34,84,119,105,116,116,101,114,67,111,108,111,114,80,105,99,107,101,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,114,45,97,117,116,111,32,109,108,45,97,117,116,111,34,44,97,116,116,114,115,58,123,116,114,105,97,110,103,108,101,58,34,104,105,100,101,34,44,119,105,100,116,104,58,50,53,50,125,44,109,111,100,101,108,58,123,118,97,108,117,101,58,101,46,99,111,108,111,114,44,99,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,99,111,108,111,114,61,116,125,44,101,120,112,114,101,115,115,105,111,110,58,34,99,111,108,111,114,34,125,125,41,93,44,49,41,93,44,49,41,44,115,40,34,98,45,98,117,116,116,111,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,116,45,50,34,44,115,116,97,116,105,99,83,116,121,108,101,58,123,102,108,111,97,116,58,34,114,105,103,104,116,34,125,44,97,116,116,114,115,58,123,118,97,114,105,97,110,116,58,34,112,114,105,109,97,114,121,34,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,115,97,118,101,84,97,103,40,41,125,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,99,111,110,102,105,114,109,34,41,41,43,34,32,34,41,93,41,93,44,49,41,44,101,46,95,108,40,101,46,104,105,116,46,95,116,97,103,115,44,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,116,46,117,115,101,114,84,97,103,63,115,40,34,100,105,118,34,44,123,107,101,121,58,116,46,114,97,119,84,101,120,116,44,115,116,97,116,105,99,83,116,121,108,101,58,123,100,105,115,112,108,97,121,58,34,105,110,108,105,110,101,45,98,108,111,99,107,34,125,125,44,91,115,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,97,100,103,101,32,112,111,105,110,116,101,114,34,44,99,108,97,115,115,58,101,46,98,97,100,103,101,67,108,97,115,115,40,116,41,44,115,116,121,108,101,58,101,46,98,97,100,103,101,83,116,121,108,101,40,116,41,44,97,116,116,114,115,58,123,105,100,58,101,46,104,105,116,46,95,105,100,43,116,46,114,97,119,84,101,120,116,44,116,105,116,108,101,58,116,46,116,101,120,116,44,116,97,98,105,110,100,101,120,58,34,45,49,34,125,44,111,110,58,123,99,111,110,116,101,120,116,109,101,110,117,58,102,117,110,99,116,105,111,110,40,115,41,123,114,101,116,117,114,110,32,101,46,111,110,84,97,103,82,105,103,104,116,67,108,105,99,107,40,116,44,115,41,125,125,125,44,91,101,46,95,118,40,101,46,95,115,40,116,46,116,101,120,116,46,115,112,108,105,116,40,34,46,34,41,46,112,111,112,40,41,41,41,93,41,44,115,40,34,98,45,112,111,112,111,118,101,114,34,44,123,97,116,116,114,115,58,123,116,97,114,103,101,116,58,101,46,104,105,116,46,95,105,100,43,116,46,114,97,119,84,101,120,116,44,116,114,105,103,103,101,114,115,58,34,102,111,99,117,115,32,98,108,117,114,34,44,112,108,97,99,101,109,101,110,116,58,34,116,111,112,34,125,125,44,91,115,40,34,98,45,98,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,118,97,114,105,97,110,116,58,34,100,97,110,103,101,114,34,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,115,41,123,114,101,116,117,114,110,32,101,46,111,110,84,97,103,68,101,108,101,116,101,67,108,105,99,107,40,116,44,115,41,125,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,100,101,108,101,116,101,84,97,103,34,41,41,41,93,41,93,44,49,41,93,44,49,41,58,115,40,34,115,112,97,110,34,44,123,107,101,121,58,116,46,116,101,120,116,44,115,116,97,116,105,99,67,108,97,115,115,58,34,98,97,100,103,101,34,44,99,108,97,115,115,58,101,46,98,97,100,103,101,67,108,97,115,115,40,116,41,44,115,116,121,108,101,58,101,46,98,97,100,103,101,83,116,121,108,101,40,116,41,125,44,91,101,46,95,118,40,101,46,95,115,40,116,46,116,101,120,116,46,115,112,108,105,116,40,34,46,34,41,46,112,111,112,40,41,41,41,93,41,93,125,41,41,44,101,46,115,104,111,119,65,100,100,66,117,116,116,111,110,63,115,40,34,115,109,97,108,108,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,97,100,103,101,32,97,100,100,45,116,97,103,45,98,117,116,116,111,110,34,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,116,97,103,65,100,100,40,41,125,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,97,100,100,84,97,103,34,41,41,41,93,41,58,115,40,34,115,109,97,108,108,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,116,101,120,116,45,109,117,116,101,100,32,98,97,100,103,101,45,115,105,122,101,34,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,104,117,109,97,110,70,105,108,101,83,105,122,101,40,101,46,104,105,116,46,95,115,111,117,114,99,101,46,115,105,122,101,41,41,41,93,41,93,44,50,41,125,44,107,115,61,91,93,44,122,115,61,115,40,52,48,50,51,41,44,77,115,61,115,40,49,50,48,49,41,44,73,115,61,105,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,99,111,109,112,111,110,101,110,116,115,58,123,84,119,105,116,116,101,114,67,111,108,111,114,80,105,99,107,101,114,58,122,115,46,84,119,105,116,116,101,114,44,86,117,101,83,105,109,112,108,101,83,117,103,103,101,115,116,58,77,115,46,90,125,44,112,114,111,112,115,58,91,34,104,105,116,34,93,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,115,104,111,119,65,100,100,66,117,116,116,111,110,58,33,49,44,115,104,111,119,77,111,100,97,108,58,33,49,44,116,97,103,84,101,120,116,58,110,117,108,108,44,99,111,108,111,114,58,123,104,101,120,58,34,35,101,48,101,48,101,48,34,125,125,125,44,99,111,109,112,117,116,101,100,58,123,116,97,103,72,111,118,101,114,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,34,117,105,84,97,103,72,111,118,101,114,34,93,125,125,44,109,101,116,104,111,100,115,58,123,104,117,109,97,110,70,105,108,101,83,105,122,101,58,122,44,103,101,116,83,117,103,103,101,115,116,105,111,110,87,105,116,104,111,117,116,81,117,101,114,121,80,114,101,102,105,120,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,105,100,46,115,108,105,99,101,40,116,46,108,101,110,103,116,104,44,45,56,41,125,44,103,101,116,66,103,40,101,41,123,114,101,116,117,114,110,32,101,46,105,100,46,115,108,105,99,101,40,45,55,41,125,44,103,101,116,70,103,40,101,41,123,114,101,116,117,114,110,32,76,40,101,46,105,100,46,115,108,105,99,101,40,45,55,41,41,62,53,48,63,34,35,48,48,48,34,58,34,35,102,102,102,34,125,44,115,101,116,84,97,103,84,101,120,116,40,101,41,123,116,104,105,115,46,36,114,101,102,115,46,115,117,103,103,101,115,116,46,99,108,101,97,114,83,117,103,103,101,115,116,105,111,110,115,40,41,44,34,115,116,114,105,110,103,34,33,61,61,116,121,112,101,111,102,32,101,63,40,116,104,105,115,46,99,111,108,111,114,61,123,104,101,120,58,34,35,34,43,101,46,105,100,46,115,112,108,105,116,40,34,35,34,41,91,49,93,125,44,116,104,105,115,46,116,97,103,84,101,120,116,61,101,41,58,116,104,105,115,46,116,97,103,84,101,120,116,61,123,105,100,58,101,44,116,105,116,108,101,58,101,125,125,44,98,97,100,103,101,67,108,97,115,115,40,101,41,123,114,101,116,117,114,110,96,98,97,100,103,101,45,36,123,101,46,115,116,121,108,101,125,96,125,44,98,97,100,103,101,83,116,121,108,101,40,101,41,123,114,101,116,117,114,110,123,98,97,99,107,103,114,111,117,110,100,58,101,46,98,103,44,99,111,108,111,114,58,101,46,102,103,125,125,44,111,110,84,97,103,72,111,118,101,114,40,101,41,123,101,46,117,115,101,114,84,97,103,38,38,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,85,105,84,97,103,72,111,118,101,114,34,44,101,41,125,44,111,110,84,97,103,76,101,97,118,101,40,41,123,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,85,105,84,97,103,72,111,118,101,114,34,44,110,117,108,108,41,125,44,111,110,84,97,103,68,101,108,101,116,101,67,108,105,99,107,40,101,44,116,41,123,116,104,105,115,46,104,105,116,46,95,116,97,103,115,61,116,104,105,115,46,104,105,116,46,95,116,97,103,115,46,102,105,108,116,101,114,40,40,116,61,62,116,33,61,61,101,41,41,44,70,46,100,101,108,101,116,101,84,97,103,40,101,46,114,97,119,84,101,120,116,44,116,104,105,115,46,104,105,116,41,46,116,104,101,110,40,40,40,41,61,62,123,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,98,117,115,85,112,100,97,116,101,87,97,108,108,73,116,101,109,115,34,41,44,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,98,117,115,85,112,100,97,116,101,84,97,103,115,34,41,125,41,41,125,44,116,97,103,65,100,100,40,41,123,116,104,105,115,46,115,104,111,119,77,111,100,97,108,61,33,48,125,44,115,97,118,101,84,97,103,40,41,123,105,102,40,116,104,105,115,46,116,97,103,84,101,120,116,46,105,100,46,105,110,99,108,117,100,101,115,40,34,35,34,41,41,114,101,116,117,114,110,32,118,111,105,100,32,116,104,105,115,46,36,98,118,84,111,97,115,116,46,116,111,97,115,116,40,116,104,105,115,46,36,116,40,34,116,111,97,115,116,46,105,110,118,97,108,105,100,84,97,103,34,41,44,123,116,105,116,108,101,58,116,104,105,115,46,36,116,40,34,116,111,97,115,116,46,105,110,118,97,108,105,100,84,97,103,84,105,116,108,101,34,41,44,110,111,65,117,116,111,72,105,100,101,58,33,48,44,116,111,97,115,116,101,114,58,34,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,34,44,104,101,97,100,101,114,67,108,97,115,115,58,34,116,111,97,115,116,45,104,101,97,100,101,114,45,101,114,114,111,114,34,44,98,111,100,121,67,108,97,115,115,58,34,116,111,97,115,116,45,98,111,100,121,45,101,114,114,111,114,34,125,41,59,108,101,116,32,101,61,116,104,105,115,46,116,97,103,84,101,120,116,46,105,100,43,116,104,105,115,46,99,111,108,111,114,46,104,101,120,46,114,101,112,108,97,99,101,40,34,35,34,44,34,46,35,34,41,59,99,111,110,115,116,32,116,61,116,104,105,115,46,104,105,116,46,95,116,97,103,115,46,102,105,108,116,101,114,40,40,101,61,62,101,46,117,115,101,114,84,97,103,41,41,59,110,117,108,108,61,61,116,46,102,105,110,100,40,40,116,61,62,116,46,114,97,119,84,101,120,116,61,61,61,101,41,41,63,40,116,104,105,115,46,104,105,116,46,95,116,97,103,115,46,112,117,115,104,40,70,46,99,114,101,97,116,101,85,115,101,114,84,97,103,40,101,41,41,44,70,46,115,97,118,101,84,97,103,40,101,44,116,104,105,115,46,104,105,116,41,46,116,104,101,110,40,40,40,41,61,62,123,116,104,105,115,46,116,97,103,84,101,120,116,61,110,117,108,108,44,116,104,105,115,46,115,104,111,119,77,111,100,97,108,61,33,49,44,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,98,117,115,85,112,100,97,116,101,87,97,108,108,73,116,101,109,115,34,41,44,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,98,117,115,85,112,100,97,116,101,84,97,103,115,34,41,125,41,41,41,58,116,104,105,115,46,36,98,118,84,111,97,115,116,46,116,111,97,115,116,40,116,104,105,115,46,36,116,40,34,116,111,97,115,116,46,100,117,112,101,84,97,103,34,41,44,123,116,105,116,108,101,58,116,104,105,115,46,36,116,40,34,116,111,97,115,116,46,100,117,112,101,84,97,103,84,105,116,108,101,34,41,44,110,111,65,117,116,111,72,105,100,101,58,33,48,44,116,111,97,115,116,101,114,58,34,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,34,44,104,101,97,100,101,114,67,108,97,115,115,58,34,116,111,97,115,116,45,104,101,97,100,101,114,45,101,114,114,111,114,34,44,98,111,100,121,67,108,97,115,115,58,34,116,111,97,115,116,45,98,111,100,121,45,101,114,114,111,114,34,125,41,125,44,97,115,121,110,99,32,115,117,103,103,101,115,116,84,97,103,40,101,41,123,101,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,99,111,110,115,116,32,116,61,97,119,97,105,116,32,116,104,105,115,46,103,101,116,84,97,103,67,104,111,105,99,101,115,40,101,41,59,108,101,116,32,115,61,91,93,59,102,111,114,40,108,101,116,32,105,61,48,59,105,60,116,46,108,101,110,103,116,104,59,105,43,43,41,126,116,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,101,41,38,38,115,46,112,117,115,104,40,116,91,105,93,41,59,114,101,116,117,114,110,32,115,46,115,111,114,116,40,41,46,109,97,112,40,40,101,61,62,40,123,116,105,116,108,101,58,101,46,115,112,108,105,116,40,34,46,34,41,46,115,108,105,99,101,40,48,44,45,49,41,46,106,111,105,110,40,34,46,34,41,44,105,100,58,101,125,41,41,41,125,44,103,101,116,84,97,103,67,104,111,105,99,101,115,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,116,61,62,123,70,46,101,115,81,117,101,114,121,40,123,115,117,103,103,101,115,116,58,123,116,97,103,58,123,112,114,101,102,105,120,58,101,44,99,111,109,112,108,101,116,105,111,110,58,123,102,105,101,108,100,58,34,115,117,103,103,101,115,116,45,116,97,103,34,44,115,107,105,112,95,100,117,112,108,105,99,97,116,101,115,58,33,48,44,115,105,122,101,58,49,101,52,125,125,125,125,41,46,116,104,101,110,40,40,101,61,62,123,99,111,110,115,116,32,115,61,91,93,59,101,91,34,115,117,103,103,101,115,116,34,93,91,34,116,97,103,34,93,91,48,93,91,34,111,112,116,105,111,110,115,34,93,46,109,97,112,40,40,101,61,62,101,91,34,95,115,111,117,114,99,101,34,93,91,34,116,97,103,34,93,41,41,46,102,111,114,69,97,99,104,40,40,101,61,62,123,101,46,102,111,114,69,97,99,104,40,40,101,61,62,123,99,111,110,115,116,32,116,61,101,46,115,108,105,99,101,40,48,44,45,56,41,59,115,46,102,105,110,100,40,40,101,61,62,101,46,115,108,105,99,101,40,48,44,45,56,41,61,61,61,116,41,41,124,124,115,46,112,117,115,104,40,101,41,125,41,41,125,41,41,44,116,40,115,41,125,41,41,125,41,41,125,125,125,41,44,76,115,61,73,115,44,68,115,61,40,48,44,112,46,90,41,40,76,115,44,67,115,44,107,115,44,33,49,44,110,117,108,108,44,34,99,53,101,97,97,102,49,52,34,44,110,117,108,108,41,44,79,115,61,68,115,46,101,120,112,111,114,116,115,44,80,115,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,97,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,105,108,101,45,116,105,116,108,101,45,97,110,99,104,111,114,34,44,97,116,116,114,115,58,123,104,114,101,102,58,34,102,47,34,43,101,46,100,111,99,46,95,105,100,44,116,97,114,103,101,116,58,34,95,98,108,97,110,107,34,125,125,44,91,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,105,108,101,45,116,105,116,108,101,34,44,97,116,116,114,115,58,123,116,105,116,108,101,58,101,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,116,104,43,34,47,34,43,101,46,100,111,99,46,95,115,111,117,114,99,101,46,110,97,109,101,43,101,46,101,120,116,40,101,46,100,111,99,41,125,44,100,111,109,80,114,111,112,115,58,123,105,110,110,101,114,72,84,77,76,58,101,46,95,115,40,101,46,102,105,108,101,78,97,109,101,40,41,43,101,46,101,120,116,40,101,46,100,111,99,41,41,125,125,41,93,41,125,44,113,115,61,91,93,44,69,115,61,123,110,97,109,101,58,34,68,111,99,70,105,108,101,84,105,116,108,101,34,44,112,114,111,112,115,58,91,34,100,111,99,34,93,44,109,101,116,104,111,100,115,58,123,101,120,116,58,83,44,102,105,108,101,78,97,109,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,63,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,34,110,97,109,101,46,110,71,114,97,109,34,93,63,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,34,110,97,109,101,46,110,71,114,97,109,34,93,58,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,46,110,97,109,101,63,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,46,110,97,109,101,58,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,46,110,97,109,101,58,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,46,110,97,109,101,125,125,125,44,65,115,61,69,115,44,72,115,61,40,48,44,112,46,90,41,40,65,115,44,80,115,44,113,115,44,33,49,44,110,117,108,108,44,34,55,56,54,97,100,97,98,50,34,44,110,117,108,108,41,44,85,115,61,72,115,46,101,120,112,111,114,116,115,44,66,115,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,98,45,109,111,100,97,108,34,44,123,97,116,116,114,115,58,123,118,105,115,105,98,108,101,58,101,46,115,104,111,119,44,115,105,122,101,58,34,108,103,34,44,34,104,105,100,101,45,102,111,111,116,101,114,34,58,33,48,44,115,116,97,116,105,99,58,34,34,44,108,97,122,121,58,34,34,125,44,111,110,58,123,99,108,111,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,36,101,109,105,116,40,34,99,108,111,115,101,34,41,125,44,104,105,100,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,36,101,109,105,116,40,34,99,108,111,115,101,34,41,125,125,44,115,99,111,112,101,100,83,108,111,116,115,58,101,46,95,117,40,91,123,107,101,121,58,34,109,111,100,97,108,45,116,105,116,108,101,34,44,102,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,115,40,34,104,53,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,111,100,97,108,45,116,105,116,108,101,34,44,97,116,116,114,115,58,123,116,105,116,108,101,58,101,46,100,111,99,46,95,115,111,117,114,99,101,46,110,97,109,101,43,101,46,101,120,116,40,101,46,100,111,99,41,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,100,111,99,46,95,115,111,117,114,99,101,46,110,97,109,101,43,101,46,101,120,116,40,101,46,100,111,99,41,41,43,34,32,34,41,44,115,40,34,114,111,117,116,101,114,45,108,105,110,107,34,44,123,97,116,116,114,115,58,123,116,111,58,34,47,102,105,108,101,63,98,121,73,100,61,34,43,101,46,100,111,99,46,95,105,100,125,125,44,91,101,46,95,118,40,34,35,34,41,93,41,93,44,49,41,93,125,44,112,114,111,120,121,58,33,48,125,93,41,125,44,91,101,46,100,111,99,46,95,112,114,111,112,115,46,104,97,115,84,104,117,109,98,110,97,105,108,63,115,40,34,105,109,103,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,105,116,32,99,97,114,100,45,105,109,103,45,116,111,112,34,44,97,116,116,114,115,58,123,115,114,99,58,34,116,47,34,43,101,46,100,111,99,46,95,115,111,117,114,99,101,46,105,110,100,101,120,43,34,47,34,43,101,46,100,111,99,46,95,105,100,44,97,108,116,58,34,34,125,125,41,58,101,46,95,101,40,41,44,115,40,34,73,110,102,111,84,97,98,108,101,34,44,123,97,116,116,114,115,58,123,100,111,99,58,101,46,100,111,99,125,125,41,44,115,40,34,76,97,122,121,67,111,110,116,101,110,116,68,105,118,34,44,123,97,116,116,114,115,58,123,34,100,111,99,45,105,100,34,58,101,46,100,111,99,46,95,105,100,125,125,41,93,44,49,41,125,44,70,115,61,91,93,44,78,115,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,98,45,116,97,98,108,101,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,98,45,48,32,109,116,45,52,34,44,97,116,116,114,115,58,123,105,116,101,109,115,58,101,46,116,97,98,108,101,73,116,101,109,115,44,115,109,97,108,108,58,34,34,44,98,111,114,100,101,114,108,101,115,115,58,34,34,44,114,101,115,112,111,110,115,105,118,101,58,34,109,100,34,44,34,116,104,101,97,100,45,99,108,97,115,115,34,58,34,104,105,100,100,101,110,34,125,44,115,99,111,112,101,100,83,108,111,116,115,58,101,46,95,117,40,91,123,107,101,121,58,34,99,101,108,108,40,118,97,108,117,101,41,34,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,34,104,116,109,108,34,105,110,32,116,46,105,116,101,109,63,115,40,34,115,112,97,110,34,44,123,100,111,109,80,114,111,112,115,58,123,105,110,110,101,114,72,84,77,76,58,101,46,95,115,40,116,46,105,116,101,109,46,104,116,109,108,41,125,125,41,58,115,40,34,115,112,97,110,34,44,91,101,46,95,118,40,101,46,95,115,40,116,46,118,97,108,117,101,41,41,93,41,93,125,125,93,41,125,41,125,44,82,115,61,91,93,59,102,117,110,99,116,105,111,110,32,86,115,40,101,44,116,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,101,41,124,124,105,115,78,97,78,40,116,41,63,34,34,58,96,60,97,32,116,97,114,103,101,116,61,34,95,98,108,97,110,107,34,32,104,114,101,102,61,34,104,116,116,112,115,58,47,47,109,97,112,115,46,103,111,111,103,108,101,46,99,111,109,47,63,113,61,36,123,101,125,44,36,123,116,125,38,108,108,61,36,123,101,125,44,36,123,116,125,38,116,61,107,38,122,61,49,55,34,62,36,123,101,125,44,32,36,123,116,125,60,47,97,62,96,125,102,117,110,99,116,105,111,110,32,90,115,40,101,44,116,41,123,99,111,110,115,116,32,115,61,101,46,115,112,108,105,116,40,34,44,34,41,44,105,61,78,117,109,98,101,114,40,115,91,48,93,46,116,114,105,109,40,41,46,115,112,108,105,116,40,34,58,34,41,91,48,93,41,47,78,117,109,98,101,114,40,115,91,48,93,46,116,114,105,109,40,41,46,115,112,108,105,116,40,34,58,34,41,91,49,93,41,44,97,61,78,117,109,98,101,114,40,115,91,49,93,46,116,114,105,109,40,41,46,115,112,108,105,116,40,34,58,34,41,91,48,93,41,47,78,117,109,98,101,114,40,115,91,49,93,46,116,114,105,109,40,41,46,115,112,108,105,116,40,34,58,34,41,91,49,93,41,44,111,61,78,117,109,98,101,114,40,115,91,50,93,46,116,114,105,109,40,41,46,115,112,108,105,116,40,34,58,34,41,91,48,93,41,47,78,117,109,98,101,114,40,115,91,50,93,46,116,114,105,109,40,41,46,115,112,108,105,116,40,34,58,34,41,91,49,93,41,59,114,101,116,117,114,110,40,105,43,97,47,54,48,43,111,47,51,54,48,48,41,42,40,34,83,34,61,61,61,116,124,124,34,87,34,61,61,61,116,63,45,49,58,49,41,125,118,97,114,32,81,115,61,123,110,97,109,101,58,34,73,110,102,111,84,97,98,108,101,34,44,112,114,111,112,115,58,91,34,100,111,99,34,93,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,105,110,100,101,120,78,97,109,101,58,34,108,111,97,100,105,110,103,46,46,46,34,125,125,44,99,111,109,112,117,116,101,100,58,123,116,97,98,108,101,73,116,101,109,115,40,41,123,116,104,105,115,46,105,110,100,101,120,78,97,109,101,59,99,111,110,115,116,32,101,61,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,44,116,61,91,123,107,101,121,58,34,105,110,100,101,120,34,44,118,97,108,117,101,58,96,91,36,123,116,104,105,115,46,105,110,100,101,120,78,97,109,101,125,93,96,125,44,123,107,101,121,58,34,109,116,105,109,101,34,44,118,97,108,117,101,58,73,40,101,46,109,116,105,109,101,41,125,44,123,107,101,121,58,34,109,105,109,101,34,44,118,97,108,117,101,58,101,46,109,105,109,101,125,44,123,107,101,121,58,34,115,105,122,101,34,44,118,97,108,117,101,58,122,40,101,46,115,105,122,101,41,125,44,123,107,101,121,58,34,112,97,116,104,34,44,118,97,108,117,101,58,101,46,112,97,116,104,125,93,59,34,119,105,100,116,104,34,105,110,32,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,38,38,116,46,112,117,115,104,40,123,107,101,121,58,34,105,109,97,103,101,32,115,105,122,101,34,44,118,97,108,117,101,58,96,36,123,101,46,119,105,100,116,104,125,120,36,123,101,46,104,101,105,103,104,116,125,96,125,41,59,99,111,110,115,116,32,115,61,91,34,116,105,116,108,101,34,44,34,100,117,114,97,116,105,111,110,34,44,34,97,117,100,105,111,99,34,44,34,118,105,100,101,111,99,34,44,34,98,105,116,114,97,116,101,34,44,34,97,114,116,105,115,116,34,44,34,97,108,98,117,109,34,44,34,97,108,98,117,109,95,97,114,116,105,115,116,34,44,34,103,101,110,114,101,34,44,34,102,111,110,116,95,110,97,109,101,34,44,34,97,117,116,104,111,114,34,44,34,109,111,100,105,102,105,101,100,95,98,121,34,44,34,112,97,103,101,115,34,44,34,116,97,103,34,44,34,101,120,105,102,95,109,97,107,101,34,44,34,101,120,105,102,95,115,111,102,116,119,97,114,101,34,44,34,101,120,105,102,95,101,120,112,111,115,117,114,101,95,116,105,109,101,34,44,34,101,120,105,102,95,102,110,117,109,98,101,114,34,44,34,101,120,105,102,95,102,111,99,97,108,95,108,101,110,103,116,104,34,44,34,101,120,105,102,95,117,115,101,114,95,99,111,109,109,101,110,116,34,44,34,101,120,105,102,95,105,115,111,95,115,112,101,101,100,95,114,97,116,105,110,103,115,34,44,34,101,120,105,102,95,109,111,100,101,108,34,44,34,101,120,105,102,95,100,97,116,101,116,105,109,101,34,44,34,99,104,101,99,107,115,117,109,34,93,59,114,101,116,117,114,110,32,115,46,102,111,114,69,97,99,104,40,40,115,61,62,123,115,32,105,110,32,101,38,38,116,46,112,117,115,104,40,123,107,101,121,58,115,44,118,97,108,117,101,58,101,91,115,93,125,41,125,41,41,44,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,111,114,69,97,99,104,40,40,115,61,62,123,40,115,46,115,116,97,114,116,115,87,105,116,104,40,34,109,116,95,34,41,124,124,115,46,115,116,97,114,116,115,87,105,116,104,40,34,105,110,116,95,34,41,41,38,38,116,46,112,117,115,104,40,123,107,101,121,58,115,44,118,97,108,117,101,58,101,91,115,93,125,41,125,41,41,44,34,101,120,105,102,95,103,112,115,95,108,111,110,103,105,116,117,100,101,95,100,101,99,34,105,110,32,101,63,116,46,112,117,115,104,40,123,107,101,121,58,34,69,120,105,102,32,71,80,83,34,44,104,116,109,108,58,86,115,40,101,91,34,101,120,105,102,95,103,112,115,95,108,97,116,105,116,117,100,101,95,100,101,99,34,93,44,101,91,34,101,120,105,102,95,103,112,115,95,108,111,110,103,105,116,117,100,101,95,100,101,99,34,93,41,125,41,58,34,101,120,105,102,95,103,112,115,95,108,111,110,103,105,116,117,100,101,95,100,109,115,34,105,110,32,101,38,38,116,46,112,117,115,104,40,123,107,101,121,58,34,69,120,105,102,32,71,80,83,34,44,104,116,109,108,58,86,115,40,90,115,40,101,91,34,101,120,105,102,95,103,112,115,95,108,97,116,105,116,117,100,101,95,100,109,115,34,93,44,101,91,34,101,120,105,102,95,103,112,115,95,108,97,116,105,116,117,100,101,95,114,101,102,34,93,41,44,90,115,40,101,91,34,101,120,105,102,95,103,112,115,95,108,111,110,103,105,116,117,100,101,95,100,109,115,34,93,44,101,91,34,101,120,105,102,95,103,112,115,95,108,111,110,103,105,116,117,100,101,95,114,101,102,34,93,41,41,125,41,44,116,125,125,44,109,111,117,110,116,101,100,40,41,123,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,105,110,100,101,120,77,97,112,91,116,104,105,115,46,100,111,99,46,105,110,100,101,120,93,38,38,40,116,104,105,115,46,105,110,100,101,120,78,97,109,101,61,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,105,110,100,101,120,77,97,112,91,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,46,105,110,100,101,120,93,46,110,97,109,101,41,44,119,105,110,100,111,119,46,115,101,116,84,105,109,101,111,117,116,40,40,40,41,61,62,123,116,104,105,115,46,105,110,100,101,120,78,97,109,101,61,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,105,110,100,101,120,77,97,112,91,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,46,105,110,100,101,120,93,46,110,97,109,101,125,41,44,53,48,48,41,125,125,44,71,115,61,81,115,44,106,115,61,40,48,44,112,46,90,41,40,71,115,44,78,115,44,82,115,44,33,49,44,110,117,108,108,44,34,55,97,98,57,100,50,101,97,34,44,110,117,108,108,41,44,87,115,61,106,115,46,101,120,112,111,114,116,115,44,89,115,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,46,108,111,97,100,105,110,103,63,115,40,34,80,114,101,108,111,97,100,101,114,34,41,58,101,46,99,111,110,116,101,110,116,63,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,111,110,116,101,110,116,45,100,105,118,34,44,100,111,109,80,114,111,112,115,58,123,105,110,110,101,114,72,84,77,76,58,101,46,95,115,40,101,46,99,111,110,116,101,110,116,41,125,125,41,58,101,46,95,101,40,41,125,44,75,115,61,91,93,44,74,115,61,123,110,97,109,101,58,34,76,97,122,121,67,111,110,116,101,110,116,68,105,118,34,44,99,111,109,112,111,110,101,110,116,115,58,123,80,114,101,108,111,97,100,101,114,58,120,101,125,44,112,114,111,112,115,58,91,34,100,111,99,73,100,34,93,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,99,111,110,116,101,110,116,58,34,34,44,108,111,97,100,105,110,103,58,33,48,125,125,44,109,111,117,110,116,101,100,40,41,123,99,111,110,115,116,32,101,61,120,115,46,115,101,97,114,99,104,81,117,101,114,121,40,41,59,105,102,40,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,72,105,103,104,108,105,103,104,116,41,123,99,111,110,115,116,32,116,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,102,117,122,122,121,63,123,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,58,123,125,125,58,123,99,111,110,116,101,110,116,58,123,125,125,59,101,46,104,105,103,104,108,105,103,104,116,61,123,112,114,101,95,116,97,103,115,58,91,34,60,109,97,114,107,62,34,93,44,112,111,115,116,95,116,97,103,115,58,91,34,60,47,109,97,114,107,62,34,93,44,110,117,109,98,101,114,95,111,102,95,102,114,97,103,109,101,110,116,115,58,48,44,102,105,101,108,100,115,58,116,125,44,102,115,46,115,116,97,116,101,46,115,105,115,116,50,73,110,102,111,46,101,115,86,101,114,115,105,111,110,76,101,103,97,99,121,124,124,40,101,46,104,105,103,104,108,105,103,104,116,46,109,97,120,95,97,110,97,108,121,122,101,100,95,111,102,102,115,101,116,61,57,57,57,57,57,57,41,125,34,102,117,110,99,116,105,111,110,95,115,99,111,114,101,34,105,110,32,101,46,113,117,101,114,121,38,38,40,101,46,113,117,101,114,121,61,101,46,113,117,101,114,121,46,102,117,110,99,116,105,111,110,95,115,99,111,114,101,46,113,117,101,114,121,41,44,34,109,117,115,116,34,105,110,32,101,46,113,117,101,114,121,46,98,111,111,108,63,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,41,124,124,40,101,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,61,91,101,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,93,41,58,101,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,61,91,93,44,101,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,46,112,117,115,104,40,123,109,97,116,99,104,58,123,95,105,100,58,116,104,105,115,46,100,111,99,73,100,125,125,41,44,100,101,108,101,116,101,32,101,91,34,115,111,114,116,34,93,44,100,101,108,101,116,101,32,101,91,34,97,103,103,115,34,93,44,100,101,108,101,116,101,32,101,91,34,115,101,97,114,99,104,95,97,102,116,101,114,34,93,44,100,101,108,101,116,101,32,101,46,113,117,101,114,121,91,34,102,117,110,99,116,105,111,110,95,115,99,111,114,101,34,93,44,101,46,95,115,111,117,114,99,101,61,123,105,110,99,108,117,100,101,115,58,91,34,99,111,110,116,101,110,116,34,44,34,110,97,109,101,34,44,34,112,97,116,104,34,44,34,101,120,116,101,110,115,105,111,110,34,93,125,44,101,46,115,105,122,101,61,49,44,70,46,101,115,81,117,101,114,121,40,101,41,46,116,104,101,110,40,40,101,61,62,123,116,104,105,115,46,108,111,97,100,105,110,103,61,33,49,44,49,61,61,61,101,46,104,105,116,115,46,104,105,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,99,111,110,116,101,110,116,61,116,104,105,115,46,103,101,116,67,111,110,116,101,110,116,40,101,46,104,105,116,115,46,104,105,116,115,91,48,93,41,58,40,99,111,110,115,111,108,101,46,108,111,103,40,34,70,73,88,77,69,58,32,99,111,117,108,100,32,110,111,116,32,103,101,116,32,99,111,110,116,101,110,116,34,41,44,99,111,110,115,111,108,101,46,108,111,103,40,101,41,41,125,41,41,125,44,109,101,116,104,111,100,115,58,123,103,101,116,67,111,110,116,101,110,116,40,101,41,123,114,101,116,117,114,110,32,101,46,104,105,103,104,108,105,103,104,116,63,101,46,104,105,103,104,108,105,103,104,116,91,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,93,63,101,46,104,105,103,104,108,105,103,104,116,91,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,93,91,48,93,58,101,46,104,105,103,104,108,105,103,104,116,46,99,111,110,116,101,110,116,63,101,46,104,105,103,104,108,105,103,104,116,46,99,111,110,116,101,110,116,91,48,93,58,118,111,105,100,32,48,58,101,46,95,115,111,117,114,99,101,46,99,111,110,116,101,110,116,125,125,125,44,88,115,61,74,115,44,101,105,61,40,48,44,112,46,90,41,40,88,115,44,89,115,44,75,115,44,33,49,44,110,117,108,108,44,34,97,54,100,54,98,99,53,50,34,44,110,117,108,108,41,44,116,105,61,101,105,46,101,120,112,111,114,116,115,44,115,105,61,123,110,97,109,101,58,34,68,111,99,73,110,102,111,77,111,100,97,108,34,44,99,111,109,112,111,110,101,110,116,115,58,123,76,97,122,121,67,111,110,116,101,110,116,68,105,118,58,116,105,44,73,110,102,111,84,97,98,108,101,58,87,115,125,44,112,114,111,112,115,58,91,34,100,111,99,34,44,34,115,104,111,119,34,93,44,109,101,116,104,111,100,115,58,123,101,120,116,58,83,125,125,44,105,105,61,115,105,44,97,105,61,40,48,44,112,46,90,41,40,105,105,44,66,115,44,70,115,44,33,49,44,110,117,108,108,44,34,49,52,49,48,98,99,99,57,34,44,110,117,108,108,41,44,111,105,61,97,105,46,101,120,112,111,114,116,115,44,114,105,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,46,99,111,110,116,101,110,116,40,41,63,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,111,110,116,101,110,116,45,100,105,118,34,44,100,111,109,80,114,111,112,115,58,123,105,110,110,101,114,72,84,77,76,58,101,46,95,115,40,101,46,99,111,110,116,101,110,116,40,41,41,125,125,41,58,101,46,95,101,40,41,125,44,110,105,61,91,93,44,108,105,61,123,110,97,109,101,58,34,67,111,110,116,101,110,116,68,105,118,34,44,112,114,111,112,115,58,91,34,100,111,99,34,93,44,109,101,116,104,111,100,115,58,123,99,111,110,116,101,110,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,63,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,93,63,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,93,91,48,93,58,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,46,99,111,110,116,101,110,116,63,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,46,99,111,110,116,101,110,116,91,48,93,58,118,111,105,100,32,48,58,110,117,108,108,125,125,125,44,99,105,61,108,105,44,100,105,61,40,48,44,112,46,90,41,40,99,105,44,114,105,44,110,105,44,33,49,44,110,117,108,108,44,34,97,48,57,51,101,57,52,54,34,44,110,117,108,108,41,44,117,105,61,100,105,46,101,120,112,111,114,116,115,44,104,105,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,46,100,111,99,46,95,112,114,111,112,115,46,104,97,115,84,104,117,109,98,110,97,105,108,63,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,105,109,103,45,119,114,97,112,112,101,114,34,44,111,110,58,123,109,111,117,115,101,101,110,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,84,110,69,110,116,101,114,40,41,125,44,109,111,117,115,101,108,101,97,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,84,110,76,101,97,118,101,40,41,125,44,116,111,117,99,104,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,84,111,117,99,104,83,116,97,114,116,40,41,125,125,125,44,91,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,65,117,100,105,111,63,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,34,44,99,108,97,115,115,58,123,34,115,109,97,108,108,45,98,97,100,103,101,34,58,101,46,115,109,97,108,108,66,97,100,103,101,125,125,44,91,115,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,34,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,104,117,109,97,110,84,105,109,101,40,101,46,100,111,99,46,95,115,111,117,114,99,101,46,100,117,114,97,116,105,111,110,41,41,41,93,41,93,41,58,101,46,95,101,40,41,44,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,73,109,97,103,101,38,38,33,101,46,104,111,118,101,114,38,38,101,46,100,111,99,46,95,112,114,111,112,115,46,116,110,87,47,101,46,100,111,99,46,95,112,114,111,112,115,46,116,110,72,60,53,63,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,34,44,99,108,97,115,115,58,123,34,115,109,97,108,108,45,98,97,100,103,101,34,58,101,46,115,109,97,108,108,66,97,100,103,101,125,125,44,91,115,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,34,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,100,111,99,46,95,115,111,117,114,99,101,46,119,105,100,116,104,43,34,120,34,43,101,46,100,111,99,46,95,115,111,117,114,99,101,46,104,101,105,103,104,116,41,41,93,41,93,41,58,101,46,95,101,40,41,44,40,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,86,105,100,101,111,124,124,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,71,105,102,41,38,38,101,46,100,111,99,46,95,115,111,117,114,99,101,46,100,117,114,97,116,105,111,110,62,48,38,38,33,101,46,104,111,118,101,114,63,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,34,44,99,108,97,115,115,58,123,34,115,109,97,108,108,45,98,97,100,103,101,34,58,101,46,115,109,97,108,108,66,97,100,103,101,125,125,44,91,115,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,34,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,104,117,109,97,110,84,105,109,101,40,101,46,100,111,99,46,95,115,111,117,114,99,101,46,100,117,114,97,116,105,111,110,41,41,41,93,41,93,41,58,101,46,95,101,40,41,44,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,86,105,100,101,111,63,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,108,97,121,34,125,44,91,115,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,118,105,101,119,66,111,120,58,34,48,32,48,32,52,57,52,46,57,52,50,32,52,57,52,46,57,52,50,34,44,120,109,108,110,115,58,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,125,125,44,91,115,40,34,112,97,116,104,34,44,123,97,116,116,114,115,58,123,100,58,34,109,51,53,46,51,53,51,32,48,32,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,45,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,122,34,125,125,41,93,41,93,41,58,101,46,95,101,40,41,44,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,73,109,97,103,101,124,124,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,86,105,100,101,111,63,115,40,34,105,109,103,34,44,123,114,101,102,58,34,116,110,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,112,111,105,110,116,101,114,32,102,105,116,32,99,97,114,100,45,105,109,103,45,116,111,112,34,44,115,116,121,108,101,58,123,104,101,105,103,104,116,58,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,71,105,102,38,38,101,46,104,111,118,101,114,63,101,46,116,110,72,101,105,103,104,116,40,41,43,34,112,120,34,58,118,111,105,100,32,48,125,44,97,116,116,114,115,58,123,115,114,99,58,101,46,116,110,83,114,99,44,97,108,116,58,34,34,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,125,125,125,41,58,115,40,34,105,109,103,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,105,116,32,99,97,114,100,45,105,109,103,45,116,111,112,34,44,97,116,116,114,115,58,123,115,114,99,58,101,46,116,110,83,114,99,44,97,108,116,58,34,34,125,125,41,44,101,46,104,111,118,101,114,38,38,101,46,100,111,99,46,95,112,114,111,112,115,46,104,97,115,86,105,100,80,114,101,118,105,101,119,63,115,40,34,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,34,44,123,97,116,116,114,115,58,123,112,114,111,103,114,101,115,115,58,40,101,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,43,49,41,47,101,46,100,111,99,46,95,112,114,111,112,115,46,116,110,78,117,109,125,125,41,58,101,46,95,101,40,41,93,44,49,41,58,101,46,95,101,40,41,125,44,112,105,61,91,93,44,109,105,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,116,104,117,109,98,110,97,105,108,45,112,114,111,103,114,101,115,115,45,98,97,114,34,44,115,116,121,108,101,58,123,119,105,100,116,104,58,101,46,112,101,114,99,101,110,116,80,114,111,103,114,101,115,115,43,34,37,34,125,125,41,125,44,103,105,61,91,93,44,102,105,61,123,110,97,109,101,58,34,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,34,44,112,114,111,112,115,58,91,34,100,111,99,34,44,34,112,114,111,103,114,101,115,115,34,93,44,99,111,109,112,117,116,101,100,58,123,112,101,114,99,101,110,116,80,114,111,103,114,101,115,115,40,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,105,110,40,77,97,116,104,46,109,97,120,40,49,48,48,42,116,104,105,115,46,112,114,111,103,114,101,115,115,44,48,41,44,49,48,48,41,125,125,125,44,98,105,61,102,105,44,118,105,61,40,48,44,112,46,90,41,40,98,105,44,109,105,44,103,105,44,33,49,44,110,117,108,108,44,34,53,51,55,53,102,52,100,48,34,44,110,117,108,108,41,44,120,105,61,118,105,46,101,120,112,111,114,116,115,44,121,105,61,123,110,97,109,101,58,34,70,117,108,108,84,104,117,109,98,110,97,105,108,34,44,112,114,111,112,115,58,91,34,100,111,99,34,44,34,115,109,97,108,108,66,97,100,103,101,34,93,44,99,111,109,112,111,110,101,110,116,115,58,123,84,104,117,109,98,110,97,105,108,80,114,111,103,114,101,115,115,66,97,114,58,120,105,125,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,104,111,118,101,114,58,33,49,44,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,58,48,44,116,105,109,101,111,117,116,73,100,58,110,117,108,108,125,125,44,99,114,101,97,116,101,100,40,41,123,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,40,101,61,62,123,34,98,117,115,84,110,84,111,117,99,104,83,116,97,114,116,34,61,61,61,101,46,116,121,112,101,38,38,101,46,112,97,121,108,111,97,100,33,61,61,116,104,105,115,46,100,111,99,46,95,105,100,38,38,116,104,105,115,46,111,110,84,110,76,101,97,118,101,40,41,125,41,41,125,44,99,111,109,112,117,116,101,100,58,123,116,110,83,114,99,40,41,123,99,111,110,115,116,32,101,61,116,104,105,115,46,100,111,99,44,116,61,101,46,95,112,114,111,112,115,59,114,101,116,117,114,110,32,116,46,105,115,71,105,102,38,38,116,104,105,115,46,104,111,118,101,114,63,96,102,47,36,123,101,46,95,105,100,125,96,58,48,61,61,61,116,104,105,115,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,63,96,116,47,36,123,101,46,95,115,111,117,114,99,101,46,105,110,100,101,120,125,47,36,123,101,46,95,105,100,125,96,58,96,116,47,36,123,101,46,95,115,111,117,114,99,101,46,105,110,100,101,120,125,47,36,123,101,46,95,105,100,125,36,123,83,116,114,105,110,103,40,116,104,105,115,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,41,46,112,97,100,83,116,97,114,116,40,52,44,34,48,34,41,125,96,125,125,44,109,101,116,104,111,100,115,58,123,104,117,109,97,110,84,105,109,101,58,77,44,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,123,116,104,105,115,46,36,101,109,105,116,40,34,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,34,41,125,44,116,110,72,101,105,103,104,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,114,101,102,115,46,116,110,46,104,101,105,103,104,116,125,44,116,110,87,105,100,116,104,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,114,101,102,115,46,116,110,46,119,105,100,116,104,125,44,111,110,84,110,69,110,116,101,114,40,41,123,116,104,105,115,46,104,111,118,101,114,61,33,48,44,116,104,105,115,46,100,111,99,46,95,112,114,111,112,115,46,104,97,115,86,105,100,80,114,101,118,105,101,119,38,38,40,116,104,105,115,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,43,61,49,44,116,104,105,115,46,115,99,104,101,100,117,108,101,78,101,120,116,84,110,78,117,109,40,41,41,125,44,111,110,84,110,76,101,97,118,101,40,41,123,116,104,105,115,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,61,48,44,116,104,105,115,46,104,111,118,101,114,61,33,49,44,110,117,108,108,33,61,61,116,104,105,115,46,116,105,109,101,111,117,116,73,100,38,38,40,119,105,110,100,111,119,46,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,116,105,109,101,111,117,116,73,100,41,44,116,104,105,115,46,116,105,109,101,111,117,116,73,100,61,110,117,108,108,41,125,44,115,99,104,101,100,117,108,101,78,101,120,116,84,110,78,117,109,40,41,123,99,111,110,115,116,32,101,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,86,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,63,63,55,48,48,59,116,104,105,115,46,116,105,109,101,111,117,116,73,100,61,119,105,110,100,111,119,46,115,101,116,84,105,109,101,111,117,116,40,40,40,41,61,62,123,116,104,105,115,46,104,111,118,101,114,38,38,40,116,104,105,115,46,115,99,104,101,100,117,108,101,78,101,120,116,84,110,78,117,109,40,41,44,116,104,105,115,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,61,61,61,116,104,105,115,46,100,111,99,46,95,112,114,111,112,115,46,116,110,78,117,109,45,49,63,116,104,105,115,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,61,48,58,116,104,105,115,46,99,117,114,114,101,110,116,84,104,117,109,98,110,97,105,108,78,117,109,43,61,49,41,125,41,44,101,41,125,44,111,110,84,111,117,99,104,83,116,97,114,116,40,41,123,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,98,117,115,84,110,84,111,117,99,104,83,116,97,114,116,34,44,116,104,105,115,46,100,111,99,46,95,105,100,41,44,116,104,105,115,46,104,111,118,101,114,124,124,116,104,105,115,46,111,110,84,110,69,110,116,101,114,40,41,125,125,125,44,95,105,61,121,105,44,84,105,61,40,48,44,112,46,90,41,40,95,105,44,104,105,44,112,105,44,33,49,44,110,117,108,108,44,34,52,54,98,100,51,97,101,99,34,44,110,117,108,108,41,44,83,105,61,84,105,46,101,120,112,111,114,116,115,44,119,105,61,123,99,111,109,112,111,110,101,110,116,115,58,123,70,117,108,108,84,104,117,109,98,110,97,105,108,58,83,105,44,67,111,110,116,101,110,116,68,105,118,58,117,105,44,68,111,99,73,110,102,111,77,111,100,97,108,58,111,105,44,68,111,99,70,105,108,101,84,105,116,108,101,58,85,115,44,84,97,103,67,111,110,116,97,105,110,101,114,58,79,115,125,44,112,114,111,112,115,58,91,34,100,111,99,34,44,34,119,105,100,116,104,34,93,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,101,120,116,58,83,44,115,104,111,119,73,110,102,111,58,33,49,125,125,44,99,111,109,112,117,116,101,100,58,123,115,109,97,108,108,66,97,100,103,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,119,105,100,116,104,60,49,53,48,125,125,44,109,101,116,104,111,100,115,58,123,104,117,109,97,110,70,105,108,101,83,105,122,101,58,122,44,104,117,109,97,110,84,105,109,101,58,77,44,111,110,73,110,102,111,67,108,105,99,107,40,41,123,116,104,105,115,46,115,104,111,119,73,110,102,111,61,33,48,125,44,97,115,121,110,99,32,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,123,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,85,105,76,105,103,104,116,98,111,120,83,108,105,100,101,34,44,116,104,105,115,46,100,111,99,46,95,115,101,113,41,44,97,119,97,105,116,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,34,115,104,111,119,76,105,103,104,116,98,111,120,34,41,125,44,111,110,65,117,100,105,111,80,108,97,121,40,41,123,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,34,97,117,100,105,111,34,41,46,102,111,114,69,97,99,104,40,40,101,61,62,123,101,33,61,61,116,104,105,115,46,36,114,101,102,115,91,34,97,117,100,105,111,34,93,38,38,101,46,112,97,117,115,101,40,41,125,41,41,125,125,125,44,36,105,61,119,105,44,67,105,61,40,48,44,112,46,90,41,40,36,105,44,119,115,44,36,115,44,33,49,44,110,117,108,108,44,34,52,97,98,101,57,54,53,57,34,44,110,117,108,108,41,44,107,105,61,67,105,46,101,120,112,111,114,116,115,44,122,105,61,115,40,53,57,50,49,41,59,105,91,34,100,101,102,97,117,108,116,34,93,46,117,115,101,40,122,105,46,90,80,41,59,118,97,114,32,77,105,61,105,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,99,111,109,112,111,110,101,110,116,115,58,123,68,111,99,67,97,114,100,58,107,105,125,44,112,114,111,112,115,58,91,34,100,111,99,115,34,44,34,97,112,112,101,110,100,34,93,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,119,105,100,116,104,58,48,44,103,114,105,100,79,112,116,105,111,110,115,58,123,97,108,105,103,110,58,34,99,101,110,116,101,114,34,44,109,97,114,103,105,110,58,48,44,116,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,58,48,44,105,115,79,118,101,114,102,108,111,119,83,99,114,111,108,108,58,33,49,44,105,115,67,111,110,115,116,97,110,116,83,105,122,101,58,33,49,44,117,115,101,70,105,116,58,33,49,44,117,115,101,82,101,99,121,99,108,101,58,33,49,125,125,125,44,99,111,109,112,117,116,101,100,58,123,99,111,108,67,111,117,110,116,40,41,123,99,111,110,115,116,32,101,61,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,34,111,112,116,67,111,108,117,109,110,115,34,93,59,114,101,116,117,114,110,34,97,117,116,111,34,61,61,61,101,63,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,36,114,101,102,115,91,34,103,114,105,100,45,108,97,121,111,117,116,34,93,46,36,101,108,46,115,99,114,111,108,108,87,105,100,116,104,47,51,48,48,41,58,101,125,125,44,109,111,117,110,116,101,100,40,41,123,116,104,105,115,46,119,105,100,116,104,61,116,104,105,115,46,36,114,101,102,115,91,34,103,114,105,100,45,108,97,121,111,117,116,34,93,46,36,101,108,46,115,99,114,111,108,108,87,105,100,116,104,47,116,104,105,115,46,99,111,108,67,111,117,110,116,44,49,61,61,61,116,104,105,115,46,99,111,108,67,111,117,110,116,38,38,116,104,105,115,46,36,114,101,102,115,91,34,103,114,105,100,45,108,97,121,111,117,116,34,93,46,36,101,108,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,103,114,105,100,45,115,105,110,103,108,101,45,99,111,108,117,109,110,34,41,44,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,40,101,61,62,123,34,98,117,115,85,112,100,97,116,101,87,97,108,108,73,116,101,109,115,34,61,61,61,101,46,116,121,112,101,38,38,116,104,105,115,46,36,114,101,102,115,91,34,103,114,105,100,45,108,97,121,111,117,116,34,93,38,38,116,104,105,115,46,36,114,101,102,115,91,34,103,114,105,100,45,108,97,121,111,117,116,34,93,46,117,112,100,97,116,101,73,116,101,109,115,40,41,125,41,41,125,125,41,44,73,105,61,77,105,44,76,105,61,40,48,44,112,46,90,41,40,73,105,44,84,115,44,83,115,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,68,105,61,76,105,46,101,120,112,111,114,116,115,44,79,105,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,123,99,108,97,115,115,58,123,34,100,105,115,97,98,108,101,45,97,110,105,109,97,116,105,111,110,115,34,58,101,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,83,105,109,112,108,101,76,105,103,104,116,98,111,120,125,125,44,91,115,40,34,70,115,76,105,103,104,116,98,111,120,34,44,123,107,101,121,58,101,46,108,105,103,104,116,98,111,120,75,101,121,44,114,101,102,58,34,108,105,103,104,116,98,111,120,34,44,97,116,116,114,115,58,123,116,111,103,103,108,101,114,58,101,46,115,104,111,119,76,105,103,104,116,98,111,120,44,115,111,117,114,99,101,115,58,101,46,108,105,103,104,116,98,111,120,83,111,117,114,99,101,115,44,116,104,117,109,98,115,58,101,46,108,105,103,104,116,98,111,120,84,104,117,109,98,115,44,99,97,112,116,105,111,110,115,58,101,46,108,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,44,116,121,112,101,115,58,101,46,108,105,103,104,116,98,111,120,84,121,112,101,115,44,34,115,111,117,114,99,101,45,105,110,100,101,120,34,58,101,46,108,105,103,104,116,98,111,120,83,108,105,100,101,44,34,99,117,115,116,111,109,45,116,111,111,108,98,97,114,45,98,117,116,116,111,110,115,34,58,101,46,99,117,115,116,111,109,66,117,116,116,111,110,115,44,34,115,108,105,100,101,115,104,111,119,45,116,105,109,101,34,58,49,101,51,42,101,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,111,112,116,76,105,103,104,116,98,111,120,83,108,105,100,101,68,117,114,97,116,105,111,110,44,34,122,111,111,109,45,105,110,99,114,101,109,101,110,116,34,58,46,50,53,44,34,108,111,97,100,45,111,110,108,121,45,99,117,114,114,101,110,116,45,115,111,117,114,99,101,34,58,101,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,111,112,116,76,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,44,34,111,110,45,99,108,111,115,101,34,58,101,46,111,110,67,108,111,115,101,44,34,111,110,45,111,112,101,110,34,58,101,46,111,110,83,104,111,119,44,34,111,110,45,115,108,105,100,101,45,99,104,97,110,103,101,34,58,101,46,111,110,83,108,105,100,101,67,104,97,110,103,101,125,125,41,44,115,40,34,97,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,100,105,115,112,108,97,121,58,34,110,111,110,101,34,125,44,97,116,116,114,115,58,123,105,100,58,34,108,105,103,104,116,98,111,120,45,100,111,119,110,108,111,97,100,34,125,125,41,93,44,49,41,125,44,80,105,61,91,93,44,113,105,61,115,40,56,50,53,54,41,44,69,105,61,115,46,110,40,113,105,41,44,65,105,61,123,110,97,109,101,58,34,76,105,103,104,116,98,111,120,34,44,99,111,109,112,111,110,101,110,116,115,58,123,70,115,76,105,103,104,116,98,111,120,58,69,105,40,41,125,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,100,105,115,97,98,108,101,65,110,105,109,97,116,105,111,110,115,58,33,48,44,99,117,115,116,111,109,66,117,116,116,111,110,115,58,91,123,118,105,101,119,66,111,120,58,34,48,32,48,32,51,56,52,46,57,50,56,32,51,56,52,46,57,50,56,34,44,100,58,34,77,51,50,49,46,51,51,57,44,50,52,53,46,51,51,52,99,45,52,46,55,52,45,52,46,54,57,50,45,49,50,46,52,51,57,45,52,46,55,48,52,45,49,55,46,49,55,57,44,48,108,45,57,57,46,53,53,49,44,57,56,46,53,54,52,86,49,50,46,48,51,32,99,48,45,54,46,54,52,49,45,53,46,52,51,56,45,49,50,46,48,51,45,49,50,46,49,53,49,45,49,50,46,48,51,115,45,49,50,46,49,53,49,44,53,46,51,57,45,49,50,46,49,53,49,44,49,50,46,48,51,118,51,51,49,46,56,54,56,108,45,57,57,46,53,53,49,45,57,56,46,53,53,50,99,45,52,46,55,52,45,52,46,55,48,52,45,49,50,46,52,51,57,45,52,46,55,48,52,45,49,55,46,49,55,57,44,48,32,115,45,52,46,55,52,44,49,50,46,51,49,57,44,48,44,49,55,46,48,49,49,108,49,50,48,46,50,57,49,44,49,49,57,46,48,56,56,99,52,46,54,57,50,44,52,46,54,52,52,44,49,50,46,52,57,57,44,52,46,54,52,52,44,49,55,46,49,57,49,44,48,108,49,50,48,46,50,57,49,45,49,49,57,46,48,56,56,32,67,51,50,54,46,48,57,49,44,50,53,55,46,54,53,51,44,51,50,54,46,48,57,49,44,50,53,48,46,48,51,56,44,51,50,49,46,51,51,57,44,50,52,53,46,51,51,52,67,51,49,54,46,53,57,57,44,50,52,48,46,54,52,50,44,51,50,54,46,48,57,49,44,50,53,48,46,48,51,56,44,51,50,49,46,51,51,57,44,50,52,53,46,51,51,52,122,34,44,119,105,100,116,104,58,34,49,55,112,120,34,44,104,101,105,103,104,116,58,34,49,55,112,120,34,44,116,105,116,108,101,58,34,68,111,119,110,108,111,97,100,34,44,111,110,67,108,105,99,107,58,116,104,105,115,46,111,110,68,111,119,110,108,111,97,100,67,108,105,99,107,125,93,125,125,44,99,111,109,112,117,116,101,100,58,123,115,104,111,119,76,105,103,104,116,98,111,120,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,34,117,105,83,104,111,119,76,105,103,104,116,98,111,120,34,93,125,44,108,105,103,104,116,98,111,120,83,111,117,114,99,101,115,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,34,117,105,76,105,103,104,116,98,111,120,83,111,117,114,99,101,115,34,93,125,44,108,105,103,104,116,98,111,120,84,104,117,109,98,115,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,34,117,105,76,105,103,104,116,98,111,120,84,104,117,109,98,115,34,93,125,44,108,105,103,104,116,98,111,120,75,101,121,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,34,117,105,76,105,103,104,116,98,111,120,75,101,121,34,93,125,44,108,105,103,104,116,98,111,120,83,108,105,100,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,34,117,105,76,105,103,104,116,98,111,120,83,108,105,100,101,34,93,125,44,108,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,34,117,105,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,115,34,93,125,44,108,105,103,104,116,98,111,120,84,121,112,101,115,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,34,117,105,76,105,103,104,116,98,111,120,84,121,112,101,115,34,93,125,125,44,109,111,117,110,116,101,100,40,41,123,99,111,110,115,116,32,101,61,100,111,99,117,109,101,110,116,46,111,110,107,101,121,100,111,119,110,59,100,111,99,117,109,101,110,116,46,111,110,107,101,121,100,111,119,110,61,116,61,62,123,99,111,110,115,116,32,115,61,116,104,105,115,46,107,101,121,68,111,119,110,76,105,115,116,101,110,101,114,40,116,41,59,105,102,40,101,38,38,115,41,114,101,116,117,114,110,32,101,40,116,41,125,125,44,109,101,116,104,111,100,115,58,123,107,101,121,68,111,119,110,76,105,115,116,101,110,101,114,40,101,41,123,99,111,110,115,116,32,116,61,118,111,105,100,32,48,61,61,61,116,104,105,115,46,36,114,101,102,115,46,108,105,103,104,116,98,111,120,124,124,118,111,105,100,32,48,61,61,61,116,104,105,115,46,36,114,101,102,115,46,108,105,103,104,116,98,111,120,46,36,101,108,46,116,97,103,78,97,109,101,59,105,102,40,116,41,114,101,116,117,114,110,33,48,59,99,111,110,115,116,32,115,61,116,104,105,115,46,36,114,101,102,115,46,108,105,103,104,116,98,111,120,46,102,115,76,105,103,104,116,98,111,120,83,116,111,114,101,46,115,108,105,99,101,40,45,49,41,91,48,93,59,115,119,105,116,99,104,40,101,46,107,101,121,41,123,99,97,115,101,34,32,34,58,114,101,116,117,114,110,32,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,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,91,46,46,46,100,111,99,117,109,101,110,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,34,102,115,108,105,103,104,116,98,111,120,45,97,98,115,111,108,117,116,101,100,34,41,93,46,102,111,114,69,97,99,104,40,40,101,61,62,123,105,102,40,34,116,114,97,110,115,108,97,116,101,40,48,112,120,41,34,61,61,61,101,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,124,124,34,116,114,97,110,115,108,97,116,101,40,48,112,120,44,32,48,112,120,41,34,61,61,61,101,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,41,123,99,111,110,115,116,32,116,61,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,34,118,105,100,101,111,34,41,91,48,93,59,116,38,38,40,116,46,112,97,117,115,101,100,63,116,46,112,108,97,121,40,41,58,116,46,112,97,117,115,101,40,41,41,125,114,101,116,117,114,110,33,49,125,41,41,44,33,49,59,99,97,115,101,34,65,114,114,111,119,85,112,34,58,99,97,115,101,34,107,34,58,114,101,116,117,114,110,33,115,46,100,97,116,97,46,105,115,84,104,117,109,98,105,110,103,38,38,115,46,99,111,114,101,46,116,104,117,109,98,115,84,111,103,103,108,101,114,38,38,115,46,99,111,114,101,46,116,104,117,109,98,115,84,111,103,103,108,101,114,46,116,111,103,103,108,101,84,104,117,109,98,115,40,41,44,33,49,59,99,97,115,101,34,65,114,114,111,119,68,111,119,110,34,58,99,97,115,101,34,106,34,58,114,101,116,117,114,110,32,115,46,100,97,116,97,46,105,115,84,104,117,109,98,105,110,103,38,38,115,46,99,111,114,101,46,116,104,117,109,98,115,84,111,103,103,108,101,114,38,38,115,46,99,111,114,101,46,116,104,117,109,98,115,84,111,103,103,108,101,114,46,116,111,103,103,108,101,84,104,117,109,98,115,40,41,44,33,49,59,99,97,115,101,34,104,34,58,114,101,116,117,114,110,32,115,46,99,111,114,101,46,115,116,97,103,101,77,97,110,97,103,101,114,46,103,101,116,80,114,101,118,105,111,117,115,83,108,105,100,101,73,110,100,101,120,38,38,115,46,99,111,114,101,46,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,46,106,117,109,112,84,111,40,115,46,99,111,114,101,46,115,116,97,103,101,77,97,110,97,103,101,114,46,103,101,116,80,114,101,118,105,111,117,115,83,108,105,100,101,73,110,100,101,120,40,41,41,44,33,49,59,99,97,115,101,34,108,34,58,114,101,116,117,114,110,32,115,46,99,111,114,101,46,115,116,97,103,101,77,97,110,97,103,101,114,46,103,101,116,78,101,120,116,83,108,105,100,101,73,110,100,101,120,38,38,115,46,99,111,114,101,46,115,108,105,100,101,73,110,100,101,120,67,104,97,110,103,101,114,46,106,117,109,112,84,111,40,115,46,99,111,114,101,46,115,116,97,103,101,77,97,110,97,103,101,114,46,103,101,116,78,101,120,116,83,108,105,100,101,73,110,100,101,120,40,41,41,44,33,49,125,114,101,116,117,114,110,33,48,125,44,111,110,68,111,119,110,108,111,97,100,67,108,105,99,107,40,41,123,99,111,110,115,116,32,101,61,116,104,105,115,46,108,105,103,104,116,98,111,120,83,111,117,114,99,101,115,91,116,104,105,115,46,108,105,103,104,116,98,111,120,83,108,105,100,101,93,44,116,61,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,108,105,103,104,116,98,111,120,45,100,111,119,110,108,111,97,100,34,41,59,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,44,101,41,44,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,111,119,110,108,111,97,100,34,44,34,34,41,44,116,46,99,108,105,99,107,40,41,125,44,111,110,83,104,111,119,40,41,123,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,85,105,76,105,103,104,116,98,111,120,73,115,79,112,101,110,34,44,33,48,41,125,44,111,110,67,108,111,115,101,40,41,123,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,85,105,76,105,103,104,116,98,111,120,73,115,79,112,101,110,34,44,33,49,41,125,44,111,110,83,108,105,100,101,67,104,97,110,103,101,40,41,123,99,111,110,115,116,32,101,61,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,34,118,105,100,101,111,34,41,59,105,102,40,48,33,61,61,101,46,108,101,110,103,116,104,41,102,111,114,40,108,101,116,32,116,32,111,102,32,101,41,116,46,112,97,117,115,101,40,41,125,125,125,44,72,105,61,65,105,44,85,105,61,40,48,44,112,46,90,41,40,72,105,44,79,105,44,80,105,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,66,105,61,85,105,46,101,120,112,111,114,116,115,44,70,105,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,108,105,103,104,116,98,111,120,45,99,97,112,116,105,111,110,34,125,44,91,115,40,34,112,34,44,91,115,40,34,98,34,44,91,101,46,95,118,40,101,46,95,115,40,34,91,34,43,101,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,105,110,100,105,99,101,115,46,102,105,110,100,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,105,100,61,61,61,101,46,104,105,116,46,95,115,111,117,114,99,101,46,105,110,100,101,120,125,41,41,46,110,97,109,101,43,34,93,34,41,41,93,41,44,101,46,95,118,40,101,46,95,115,40,40,34,34,61,61,61,101,46,104,105,116,46,95,115,111,117,114,99,101,46,112,97,116,104,63,34,34,58,34,47,34,41,43,101,46,104,105,116,46,95,115,111,117,114,99,101,46,112,97,116,104,43,34,47,34,43,101,46,104,105,116,46,95,115,111,117,114,99,101,46,110,97,109,101,43,101,46,101,120,116,40,101,46,104,105,116,41,41,43,34,32,34,41,93,41,44,115,40,34,112,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,34,109,97,114,103,105,110,45,116,111,112,34,58,34,45,49,101,109,34,125,125,44,91,101,46,104,105,116,46,95,115,111,117,114,99,101,46,119,105,100,116,104,63,115,40,34,115,112,97,110,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,104,105,116,46,95,115,111,117,114,99,101,46,119,105,100,116,104,43,34,120,34,43,101,46,104,105,116,46,95,115,111,117,114,99,101,46,104,101,105,103,104,116,41,41,93,41,58,101,46,95,101,40,41,44,101,46,95,118,40,34,32,34,43,101,46,95,115,40,34,32,40,34,43,101,46,104,117,109,97,110,70,105,108,101,83,105,122,101,40,101,46,104,105,116,46,95,115,111,117,114,99,101,46,115,105,122,101,41,43,34,41,34,41,43,34,32,34,41,93,41,93,41,125,44,78,105,61,91,93,44,82,105,61,123,110,97,109,101,58,34,76,105,103,104,116,98,111,120,67,97,112,116,105,111,110,34,44,112,114,111,112,115,58,91,34,104,105,116,34,93,44,109,101,116,104,111,100,115,58,123,104,117,109,97,110,70,105,108,101,83,105,122,101,58,122,44,101,120,116,58,83,125,125,44,86,105,61,82,105,44,90,105,61,40,48,44,112,46,90,41,40,86,105,44,70,105,44,78,105,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,81,105,61,90,105,46,101,120,112,111,114,116,115,44,71,105,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,123,97,116,116,114,115,58,123,105,100,58,34,109,105,109,101,84,114,101,101,34,125,125,41,125,44,106,105,61,91,93,44,87,105,61,115,40,49,51,55,55,41,44,89,105,61,115,46,110,40,87,105,41,44,75,105,61,115,40,53,55,55,48,41,44,74,105,61,115,46,110,40,75,105,41,44,88,105,61,123,110,97,109,101,58,34,77,105,109,101,80,105,99,107,101,114,34,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,109,105,109,101,84,114,101,101,58,110,117,108,108,44,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,58,110,117,108,108,44,117,112,100,97,116,101,66,117,115,121,58,33,49,125,125,44,109,111,117,110,116,101,100,40,41,123,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,40,101,61,62,123,34,115,101,116,85,105,77,105,109,101,77,97,112,34,61,61,61,101,46,116,121,112,101,38,38,110,117,108,108,61,61,61,116,104,105,115,46,109,105,109,101,84,114,101,101,63,116,104,105,115,46,105,110,105,116,105,97,108,105,122,101,84,114,101,101,40,41,58,34,98,117,115,83,101,97,114,99,104,34,61,61,61,101,46,116,121,112,101,38,38,116,104,105,115,46,117,112,100,97,116,101,84,114,101,101,40,41,125,41,41,125,44,109,101,116,104,111,100,115,58,123,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,101,44,116,41,123,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,33,61,61,116,38,38,34,99,111,108,108,97,112,115,101,100,34,33,61,61,116,38,38,34,114,101,110,100,101,114,101,100,34,33,61,61,116,38,38,34,102,111,99,117,115,101,100,34,33,61,61,116,38,38,40,116,104,105,115,46,117,112,100,97,116,101,66,117,115,121,124,124,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,34,44,68,40,116,104,105,115,46,109,105,109,101,84,114,101,101,41,41,41,125,44,117,112,100,97,116,101,84,114,101,101,40,41,123,105,102,40,33,49,61,61,61,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,46,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,41,114,101,116,117,114,110,59,105,102,40,116,104,105,115,46,117,112,100,97,116,101,66,117,115,121,41,114,101,116,117,114,110,59,116,104,105,115,46,117,112,100,97,116,101,66,117,115,121,61,33,48,44,110,117,108,108,61,61,61,116,104,105,115,46,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,38,38,40,116,104,105,115,46,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,61,79,40,116,104,105,115,46,109,105,109,101,84,114,101,101,41,41,59,99,111,110,115,116,32,101,61,120,115,46,115,101,97,114,99,104,81,117,101,114,121,40,41,59,70,46,103,101,116,77,105,109,101,84,121,112,101,115,40,101,41,46,116,104,101,110,40,40,40,123,98,117,99,107,101,116,115,58,101,44,109,105,109,101,77,97,112,58,116,125,41,61,62,123,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,85,105,77,105,109,101,77,97,112,34,44,116,41,44,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,85,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,34,44,101,41,44,116,104,105,115,46,109,105,109,101,84,114,101,101,46,114,101,109,111,118,101,65,108,108,40,41,44,116,104,105,115,46,109,105,109,101,84,114,101,101,46,97,100,100,78,111,100,101,115,40,116,41,44,110,117,108,108,61,61,61,116,104,105,115,46,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,38,38,40,116,104,105,115,46,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,61,123,125,44,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,46,102,111,114,69,97,99,104,40,40,101,61,62,123,116,104,105,115,46,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,91,101,93,61,123,99,104,101,99,107,101,100,58,33,48,125,125,41,41,41,44,79,98,106,101,99,116,46,101,110,116,114,105,101,115,40,116,104,105,115,46,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,41,46,102,111,114,69,97,99,104,40,40,40,91,101,44,116,93,41,61,62,123,116,104,105,115,46,109,105,109,101,84,114,101,101,46,110,111,100,101,40,101,41,38,38,40,116,46,99,104,101,99,107,101,100,38,38,116,104,105,115,46,109,105,109,101,84,114,101,101,46,110,111,100,101,40,101,41,46,115,101,108,101,99,116,40,41,44,33,49,61,61,61,116,46,99,111,108,108,97,112,115,101,100,38,38,116,104,105,115,46,109,105,109,101,84,114,101,101,46,110,111,100,101,40,101,41,46,101,120,112,97,110,100,40,41,41,125,41,41,44,116,104,105,115,46,115,116,97,115,104,101,100,77,105,109,101,84,114,101,101,65,116,116,114,105,98,117,116,101,115,61,110,117,108,108,44,116,104,105,115,46,117,112,100,97,116,101,66,117,115,121,61,33,49,125,41,41,125,44,105,110,105,116,105,97,108,105,122,101,84,114,101,101,40,41,123,99,111,110,115,116,32,101,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,117,105,77,105,109,101,77,97,112,59,116,104,105,115,46,109,105,109,101,84,114,101,101,61,110,101,119,40,89,105,40,41,41,40,123,115,101,108,101,99,116,105,111,110,58,123,109,111,100,101,58,34,99,104,101,99,107,98,111,120,34,125,44,100,97,116,97,58,101,125,41,44,110,101,119,40,74,105,40,41,41,40,116,104,105,115,46,109,105,109,101,84,114,101,101,44,123,116,97,114,103,101,116,58,34,35,109,105,109,101,84,114,101,101,34,125,41,44,116,104,105,115,46,109,105,109,101,84,114,101,101,46,111,110,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,46,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,41,44,116,104,105,115,46,109,105,109,101,84,114,101,101,46,100,101,115,101,108,101,99,116,40,41,44,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,46,108,101,110,103,116,104,62,48,38,38,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,46,102,111,114,69,97,99,104,40,40,101,61,62,123,116,104,105,115,46,109,105,109,101,84,114,101,101,46,110,111,100,101,40,101,41,46,115,101,108,101,99,116,40,41,125,41,41,125,125,125,44,101,97,61,88,105,44,116,97,61,40,48,44,112,46,90,41,40,101,97,44,71,105,44,106,105,44,33,49,44,110,117,108,108,44,34,48,100,49,49,102,54,55,48,34,44,110,117,108,108,41,44,115,97,61,116,97,46,101,120,112,111,114,116,115,44,105,97,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,46,108,97,115,116,82,101,115,117,108,116,115,76,111,97,100,101,100,63,115,40,34,98,45,99,97,114,100,34,44,123,97,116,116,114,115,58,123,105,100,58,34,114,101,115,117,108,116,115,34,125,125,44,91,115,40,34,115,112,97,110,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,104,105,116,67,111,117,110,116,41,43,34,32,34,43,101,46,95,115,40,49,61,61,61,101,46,104,105,116,67,111,117,110,116,63,101,46,36,116,40,34,104,105,116,34,41,58,101,46,36,116,40,34,104,105,116,115,34,41,41,41,93,41,44,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,102,108,111,97,116,58,34,114,105,103,104,116,34,125,125,44,91,115,40,34,98,45,98,117,116,116,111,110,34,44,123,100,105,114,101,99,116,105,118,101,115,58,91,123,110,97,109,101,58,34,98,45,116,111,103,103,108,101,34,44,114,97,119,78,97,109,101,58,34,118,45,98,45,116,111,103,103,108,101,46,99,111,108,108,97,112,115,101,45,49,34,44,109,111,100,105,102,105,101,114,115,58,123,34,99,111,108,108,97,112,115,101,45,49,34,58,33,48,125,125,93,44,115,116,97,116,105,99,67,108,97,115,115,58,34,110,111,116,45,109,111,98,105,108,101,34,44,97,116,116,114,115,58,123,118,97,114,105,97,110,116,58,34,112,114,105,109,97,114,121,34,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,84,111,103,103,108,101,40,41,125,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,100,101,116,97,105,108,115,34,41,41,43,34,32,34,41,93,41,44,48,33,61,61,101,46,104,105,116,67,111,117,110,116,63,91,115,40,34,83,111,114,116,83,101,108,101,99,116,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,108,45,50,34,125,41,44,115,40,34,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,108,45,50,34,125,41,93,58,101,46,95,101,40,41,93,44,50,41,44,115,40,34,98,45,99,111,108,108,97,112,115,101,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,116,45,50,34,44,115,116,97,116,105,99,83,116,121,108,101,58,123,99,108,101,97,114,58,34,98,111,116,104,34,125,44,97,116,116,114,115,58,123,105,100,58,34,99,111,108,108,97,112,115,101,45,49,34,125,125,44,91,115,40,34,98,45,99,97,114,100,34,44,91,115,40,34,98,45,116,97,98,108,101,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,98,45,48,34,44,97,116,116,114,115,58,123,105,116,101,109,115,58,101,46,116,97,98,108,101,73,116,101,109,115,44,115,109,97,108,108,58,34,34,44,98,111,114,100,101,114,108,101,115,115,58,34,34,44,98,111,114,100,101,114,101,100,58,34,34,44,34,116,104,101,97,100,45,99,108,97,115,115,34,58,34,104,105,100,100,101,110,34,125,125,41,44,115,40,34,98,114,34,41,44,115,40,34,104,52,34,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,109,105,109,101,84,121,112,101,115,34,41,41,43,34,32,34,41,44,115,40,34,98,45,98,117,116,116,111,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,108,111,97,116,45,114,105,103,104,116,34,44,97,116,116,114,115,58,123,115,105,122,101,58,34,115,109,34,44,118,97,114,105,97,110,116,58,34,112,114,105,109,97,114,121,34,125,44,111,110,58,123,99,108,105,99,107,58,101,46,111,110,67,111,112,121,67,108,105,99,107,125,125,44,91,115,40,34,67,108,105,112,98,111,97,114,100,73,99,111,110,34,41,93,44,49,41,93,44,49,41,44,110,117,108,108,61,61,101,46,36,115,116,111,114,101,46,115,116,97,116,101,46,117,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,63,115,40,34,80,114,101,108,111,97,100,101,114,34,41,58,115,40,34,98,45,116,97,98,108,101,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,98,45,48,34,44,97,116,116,114,115,58,123,34,115,111,114,116,45,98,121,34,58,34,100,111,99,95,99,111,117,110,116,34,44,34,115,111,114,116,45,100,101,115,99,34,58,33,48,44,34,116,104,101,97,100,45,99,108,97,115,115,34,58,34,104,105,100,100,101,110,34,44,105,116,101,109,115,58,101,46,36,115,116,111,114,101,46,115,116,97,116,101,46,117,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,44,115,109,97,108,108,58,34,34,44,98,111,114,100,101,114,101,100,58,34,34,125,125,41,93,44,49,41,93,44,49,41,93,44,49,41,58,101,46,95,101,40,41,125,44,97,97,61,91,93,44,111,97,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,98,45,98,117,116,116,111,110,45,103,114,111,117,112,34,44,91,115,40,34,98,45,98,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,118,97,114,105,97,110,116,58,34,112,114,105,109,97,114,121,34,44,116,105,116,108,101,58,101,46,36,116,40,34,100,105,115,112,108,97,121,77,111,100,101,46,108,105,115,116,34,41,44,112,114,101,115,115,101,100,58,34,108,105,115,116,34,61,61,61,101,46,111,112,116,68,105,115,112,108,97,121,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,115,101,116,79,112,116,68,105,115,112,108,97,121,40,34,108,105,115,116,34,41,125,125,125,44,91,115,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,119,105,100,116,104,58,34,50,48,112,120,34,44,104,101,105,103,104,116,58,34,50,48,112,120,34,44,114,111,108,101,58,34,105,109,103,34,44,120,109,108,110,115,58,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,118,105,101,119,66,111,120,58,34,48,32,48,32,53,49,50,32,53,49,50,34,125,125,44,91,115,40,34,112,97,116,104,34,44,123,97,116,116,114,115,58,123,102,105,108,108,58,34,99,117,114,114,101,110,116,67,111,108,111,114,34,44,100,58,34,77,56,48,32,51,54,56,72,49,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,45,51,50,48,72,49,54,65,49,54,32,49,54,32,48,32,48,32,48,32,48,32,54,52,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,86,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,32,49,54,48,72,49,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,52,49,54,32,49,55,54,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,51,50,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,45,51,50,48,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,86,56,48,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,32,49,54,48,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,51,50,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,34,125,125,41,93,41,93,41,44,115,40,34,98,45,98,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,118,97,114,105,97,110,116,58,34,112,114,105,109,97,114,121,34,44,116,105,116,108,101,58,101,46,36,116,40,34,100,105,115,112,108,97,121,77,111,100,101,46,103,114,105,100,34,41,44,112,114,101,115,115,101,100,58,34,103,114,105,100,34,61,61,61,101,46,111,112,116,68,105,115,112,108,97,121,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,115,101,116,79,112,116,68,105,115,112,108,97,121,40,34,103,114,105,100,34,41,125,125,125,44,91,115,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,119,105,100,116,104,58,34,50,48,112,120,34,44,104,101,105,103,104,116,58,34,50,48,112,120,34,44,114,111,108,101,58,34,105,109,103,34,44,120,109,108,110,115,58,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,118,105,101,119,66,111,120,58,34,48,32,48,32,53,49,50,32,53,49,50,34,125,125,44,91,115,40,34,112,97,116,104,34,44,123,97,116,116,114,115,58,123,102,105,108,108,58,34,99,117,114,114,101,110,116,67,111,108,111,114,34,44,100,58,34,77,49,52,57,46,51,51,51,32,53,54,118,56,48,99,48,32,49,51,46,50,53,53,45,49,48,46,55,52,53,32,50,52,45,50,52,32,50,52,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,45,49,48,46,55,52,53,45,50,52,45,50,52,86,53,54,99,48,45,49,51,46,50,53,53,32,49,48,46,55,52,53,45,50,52,32,50,52,45,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,32,49,48,46,55,52,53,32,50,52,32,50,52,122,109,49,56,49,46,51,51,52,32,50,52,48,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,54,32,48,32,50,52,46,48,48,49,45,49,48,46,55,52,53,32,50,52,46,48,48,49,45,50,52,122,109,51,50,45,50,52,48,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,86,53,54,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,109,45,51,50,32,56,48,86,53,54,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,54,32,48,32,50,52,46,48,48,49,45,49,48,46,55,52,53,32,50,52,46,48,48,49,45,50,52,122,109,45,50,48,53,46,51,51,52,32,53,54,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,122,77,48,32,51,55,54,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,109,51,56,54,46,54,54,55,45,53,54,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,122,109,48,32,49,54,48,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,122,77,49,56,49,46,51,51,51,32,51,55,54,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,34,125,125,41,93,41,93,41,93,44,49,41,125,44,114,97,61,91,93,44,110,97,61,123,110,97,109,101,58,34,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,34,44,99,111,109,112,117,116,101,100,58,123,46,46,46,40,48,44,121,46,83,101,41,40,91,34,111,112,116,68,105,115,112,108,97,121,34,93,41,125,44,109,101,116,104,111,100,115,58,123,46,46,46,40,48,44,121,46,79,73,41,40,91,34,115,101,116,79,112,116,68,105,115,112,108,97,121,34,93,41,125,125,44,108,97,61,110,97,44,99,97,61,40,48,44,112,46,90,41,40,108,97,44,111,97,44,114,97,44,33,49,44,110,117,108,108,44,34,55,52,55,53,52,55,97,52,34,44,110,117,108,108,41,44,100,97,61,99,97,46,101,120,112,111,114,116,115,44,117,97,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,98,45,100,114,111,112,100,111,119,110,34,44,123,97,116,116,114,115,58,123,118,97,114,105,97,110,116,58,34,112,114,105,109,97,114,121,34,125,44,115,99,111,112,101,100,83,108,111,116,115,58,101,46,95,117,40,91,123,107,101,121,58,34,98,117,116,116,111,110,45,99,111,110,116,101,110,116,34,44,102,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,115,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,34,97,114,105,97,45,104,105,100,100,101,110,34,58,34,116,114,117,101,34,44,119,105,100,116,104,58,34,50,48,112,120,34,44,104,101,105,103,104,116,58,34,50,48,112,120,34,44,120,109,108,110,115,58,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,118,105,101,119,66,111,120,58,34,48,32,48,32,51,50,48,32,53,49,50,34,125,125,44,91,115,40,34,112,97,116,104,34,44,123,97,116,116,114,115,58,123,102,105,108,108,58,34,99,117,114,114,101,110,116,67,111,108,111,114,34,44,100,58,34,77,52,49,32,50,56,56,104,50,51,56,99,50,49,46,52,32,48,32,51,50,46,49,32,50,53,46,57,32,49,55,32,52,49,76,49,55,55,32,52,52,56,99,45,57,46,52,32,57,46,52,45,50,52,46,54,32,57,46,52,45,51,51,46,57,32,48,76,50,52,32,51,50,57,99,45,49,53,46,49,45,49,53,46,49,45,52,46,52,45,52,49,32,49,55,45,52,49,122,109,50,53,53,45,49,48,53,76,49,55,55,32,54,52,99,45,57,46,52,45,57,46,52,45,50,52,46,54,45,57,46,52,45,51,51,46,57,32,48,76,50,52,32,49,56,51,99,45,49,53,46,49,32,49,53,46,49,45,52,46,52,32,52,49,32,49,55,32,52,49,104,50,51,56,99,50,49,46,52,32,48,32,51,50,46,49,45,50,53,46,57,32,49,55,45,52,49,122,34,125,125,41,93,41,93,125,44,112,114,111,120,121,58,33,48,125,93,41,125,44,91,115,40,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,123,99,108,97,115,115,58,123,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,34,58,34,115,99,111,114,101,34,61,61,61,101,46,115,111,114,116,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,83,101,108,101,99,116,40,34,115,99,111,114,101,34,41,125,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,115,111,114,116,46,114,101,108,101,118,97,110,99,101,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,123,99,108,97,115,115,58,123,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,34,58,34,100,97,116,101,65,115,99,34,61,61,61,101,46,115,111,114,116,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,83,101,108,101,99,116,40,34,100,97,116,101,65,115,99,34,41,125,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,115,111,114,116,46,100,97,116,101,65,115,99,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,123,99,108,97,115,115,58,123,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,34,58,34,100,97,116,101,68,101,115,99,34,61,61,61,101,46,115,111,114,116,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,83,101,108,101,99,116,40,34,100,97,116,101,68,101,115,99,34,41,125,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,115,111,114,116,46,100,97,116,101,68,101,115,99,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,123,99,108,97,115,115,58,123,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,34,58,34,115,105,122,101,65,115,99,34,61,61,61,101,46,115,111,114,116,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,83,101,108,101,99,116,40,34,115,105,122,101,65,115,99,34,41,125,125,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,115,111,114,116,46,115,105,122,101,65,115,99,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,123,99,108,97,115,115,58,123,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,34,58,34,115,105,122,101,68,101,115,99,34,61,61,61,101,46,115,111,114,116,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,83,101,108,101,99,116,40,34,115,105,122,101,68,101,115,99,34,41,125,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,115,111,114,116,46,115,105,122,101,68,101,115,99,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,123,99,108,97,115,115,58,123,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,34,58,34,110,97,109,101,68,101,115,99,34,61,61,61,101,46,115,111,114,116,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,83,101,108,101,99,116,40,34,110,97,109,101,68,101,115,99,34,41,125,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,115,111,114,116,46,110,97,109,101,68,101,115,99,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,123,99,108,97,115,115,58,123,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,34,58,34,110,97,109,101,65,115,99,34,61,61,61,101,46,115,111,114,116,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,83,101,108,101,99,116,40,34,110,97,109,101,65,115,99,34,41,125,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,115,111,114,116,46,110,97,109,101,65,115,99,34,41,41,43,34,32,34,41,93,41,44,115,40,34,98,45,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,123,99,108,97,115,115,58,123,34,100,114,111,112,100,111,119,110,45,97,99,116,105,118,101,34,58,34,114,97,110,100,111,109,34,61,61,61,101,46,115,111,114,116,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,83,101,108,101,99,116,40,34,114,97,110,100,111,109,34,41,125,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,115,111,114,116,46,114,97,110,100,111,109,34,41,41,43,34,32,34,41,93,41,93,44,49,41,125,44,104,97,61,91,93,44,112,97,61,123,110,97,109,101,58,34,83,111,114,116,83,101,108,101,99,116,34,44,99,111,109,112,117,116,101,100,58,123,115,111,114,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,111,114,116,77,111,100,101,125,125,44,109,101,116,104,111,100,115,58,123,111,110,83,101,108,101,99,116,40,101,41,123,34,114,97,110,100,111,109,34,61,61,61,101,38,38,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,83,101,101,100,34,44,72,40,41,41,44,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,83,111,114,116,77,111,100,101,34,44,101,41,125,125,125,44,109,97,61,112,97,44,103,97,61,40,48,44,112,46,90,41,40,109,97,44,117,97,44,104,97,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,102,97,61,103,97,46,101,120,112,111,114,116,115,44,98,97,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,115,118,103,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,119,105,100,116,104,58,34,50,52,112,120,34,44,104,101,105,103,104,116,58,34,50,52,112,120,34,125,44,97,116,116,114,115,58,123,118,105,101,119,66,111,120,58,34,48,32,48,32,50,52,32,50,52,34,125,125,44,91,115,40,34,112,97,116,104,34,44,123,97,116,116,114,115,58,123,102,105,108,108,58,34,99,117,114,114,101,110,116,67,111,108,111,114,34,44,100,58,34,77,49,55,44,57,72,55,86,55,72,49,55,77,49,55,44,49,51,72,55,86,49,49,72,49,55,77,49,52,44,49,55,72,55,86,49,53,72,49,52,77,49,50,44,51,65,49,44,49,32,48,32,48,44,49,32,49,51,44,52,65,49,44,49,32,48,32,48,44,49,32,49,50,44,53,65,49,44,49,32,48,32,48,44,49,32,49,49,44,52,65,49,44,49,32,48,32,48,44,49,32,49,50,44,51,77,49,57,44,51,72,49,52,46,56,50,67,49,52,46,52,44,49,46,56,52,32,49,51,46,51,44,49,32,49,50,44,49,67,49,48,46,55,44,49,32,57,46,54,44,49,46,56,52,32,57,46,49,56,44,51,72,53,65,50,44,50,32,48,32,48,44,48,32,51,44,53,86,49,57,65,50,44,50,32,48,32,48,44,48,32,53,44,50,49,72,49,57,65,50,44,50,32,48,32,48,44,48,32,50,49,44,49,57,86,53,65,50,44,50,32,48,32,48,44,48,32,49,57,44,51,90,34,125,125,41,93,41,125,44,118,97,61,91,93,44,120,97,61,123,110,97,109,101,58,34,67,108,105,112,98,111,97,114,100,73,99,111,110,34,125,44,121,97,61,120,97,44,95,97,61,40,48,44,112,46,90,41,40,121,97,44,98,97,44,118,97,44,33,49,44,110,117,108,108,44,34,49,54,102,98,97,100,50,50,34,44,110,117,108,108,41,44,84,97,61,95,97,46,101,120,112,111,114,116,115,44,83,97,61,105,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,34,82,101,115,117,108,116,115,67,97,114,100,34,44,99,111,109,112,111,110,101,110,116,115,58,123,67,108,105,112,98,111,97,114,100,73,99,111,110,58,84,97,44,80,114,101,108,111,97,100,101,114,58,120,101,44,83,111,114,116,83,101,108,101,99,116,58,102,97,44,68,105,115,112,108,97,121,77,111,100,101,84,111,103,103,108,101,58,100,97,125,44,99,114,101,97,116,101,100,40,41,123,125,44,99,111,109,112,117,116,101,100,58,123,108,97,115,116,82,101,115,117,108,116,115,76,111,97,100,101,100,40,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,125,44,104,105,116,67,111,117,110,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,46,97,103,103,114,101,103,97,116,105,111,110,115,46,116,111,116,97,108,95,99,111,117,110,116,46,118,97,108,117,101,125,44,116,97,98,108,101,73,116,101,109,115,40,41,123,99,111,110,115,116,32,101,61,91,93,59,114,101,116,117,114,110,32,101,46,112,117,115,104,40,123,107,101,121,58,116,104,105,115,46,36,116,40,34,113,117,101,114,121,84,105,109,101,34,41,44,118,97,108,117,101,58,116,104,105,115,46,116,111,111,107,40,41,125,41,44,101,46,112,117,115,104,40,123,107,101,121,58,116,104,105,115,46,36,116,40,34,116,111,116,97,108,83,105,122,101,34,41,44,118,97,108,117,101,58,116,104,105,115,46,116,111,116,97,108,83,105,122,101,40,41,125,41,44,101,125,125,44,109,101,116,104,111,100,115,58,123,116,111,111,107,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,46,116,111,111,107,43,34,109,115,34,125,44,116,111,116,97,108,83,105,122,101,40,41,123,114,101,116,117,114,110,32,122,40,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,108,97,115,116,81,117,101,114,121,82,101,115,117,108,116,115,46,97,103,103,114,101,103,97,116,105,111,110,115,46,116,111,116,97,108,95,115,105,122,101,46,118,97,108,117,101,41,125,44,111,110,84,111,103,103,108,101,40,41,123,99,111,110,115,116,32,101,61,33,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,99,111,108,108,97,112,115,101,45,49,34,41,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,34,115,104,111,119,34,41,59,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,85,105,83,104,111,119,68,101,116,97,105,108,115,34,44,101,41,44,101,38,38,110,117,108,108,61,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,117,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,38,38,33,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,38,38,116,104,105,115,46,102,111,114,99,101,85,112,100,97,116,101,77,105,109,101,65,103,103,40,41,125,44,111,110,67,111,112,121,67,108,105,99,107,40,41,123,108,101,116,32,101,61,34,34,59,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,117,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,46,115,108,105,99,101,40,41,46,115,111,114,116,40,40,40,101,44,116,41,61,62,116,91,34,100,111,99,95,99,111,117,110,116,34,93,45,101,91,34,100,111,99,95,99,111,117,110,116,34,93,41,41,46,102,111,114,69,97,99,104,40,40,116,61,62,123,101,43,61,96,36,123,116,91,34,107,101,121,34,93,125,92,116,36,123,116,91,34,100,111,99,95,99,111,117,110,116,34,93,125,92,110,96,125,41,41,44,110,97,118,105,103,97,116,111,114,46,99,108,105,112,98,111,97,114,100,46,119,114,105,116,101,84,101,120,116,40,101,41,44,116,104,105,115,46,36,98,118,84,111,97,115,116,46,116,111,97,115,116,40,116,104,105,115,46,36,116,40,34,116,111,97,115,116,46,99,111,112,105,101,100,84,111,67,108,105,112,98,111,97,114,100,34,41,44,123,116,105,116,108,101,58,110,117,108,108,44,110,111,65,117,116,111,72,105,100,101,58,33,49,44,116,111,97,115,116,101,114,58,34,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,34,44,104,101,97,100,101,114,67,108,97,115,115,58,34,104,105,100,100,101,110,34,44,98,111,100,121,67,108,97,115,115,58,34,116,111,97,115,116,45,98,111,100,121,45,105,110,102,111,34,125,41,125,44,102,111,114,99,101,85,112,100,97,116,101,77,105,109,101,65,103,103,40,41,123,99,111,110,115,116,32,101,61,120,115,46,115,101,97,114,99,104,81,117,101,114,121,40,41,59,70,46,103,101,116,77,105,109,101,84,121,112,101,115,40,101,41,46,116,104,101,110,40,40,40,123,98,117,99,107,101,116,115,58,101,125,41,61,62,123,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,85,105,68,101,116,97,105,108,115,77,105,109,101,65,103,103,34,44,101,41,125,41,41,125,125,125,41,44,119,97,61,83,97,44,36,97,61,40,48,44,112,46,90,41,40,119,97,44,105,97,44,97,97,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,67,97,61,36,97,46,101,120,112,111,114,116,115,44,107,97,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,91,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,105,110,112,117,116,45,103,114,111,117,112,34,44,115,116,97,116,105,99,83,116,121,108,101,58,123,34,109,97,114,103,105,110,45,98,111,116,116,111,109,34,58,34,48,46,53,101,109,34,44,34,109,97,114,103,105,110,45,116,111,112,34,58,34,49,101,109,34,125,125,44,91,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,34,125,44,91,115,40,34,98,45,98,117,116,116,111,110,34,44,123,97,116,116,114,115,58,123,118,97,114,105,97,110,116,58,34,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,34,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,36,114,101,102,115,91,34,112,97,116,104,45,109,111,100,97,108,34,93,46,115,104,111,119,40,41,125,125,125,44,91,115,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,120,109,108,110,115,58,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,118,105,101,119,66,111,120,58,34,48,32,48,32,53,55,54,32,53,49,50,34,44,119,105,100,116,104,58,34,50,48,112,120,34,125,125,44,91,115,40,34,112,97,116,104,34,44,123,97,116,116,114,115,58,123,102,105,108,108,58,34,99,117,114,114,101,110,116,67,111,108,111,114,34,44,100,58,34,77,50,56,56,32,50,50,52,104,50,50,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,45,51,50,86,54,52,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,45,51,50,72,52,48,48,76,51,54,56,32,48,104,45,56,48,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,32,51,50,118,54,52,72,54,52,86,56,97,56,32,56,32,48,32,48,32,48,45,56,45,56,72,52,48,97,56,32,56,32,48,32,48,32,48,45,56,32,56,118,51,57,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,50,48,56,118,54,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,32,51,50,104,50,50,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,45,51,50,86,51,53,50,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,45,51,50,72,52,48,48,108,45,51,50,45,51,50,104,45,56,48,97,51,50,32,51,50,32,48,32,48,32,48,45,51,50,32,51,50,118,54,52,72,54,52,86,49,50,56,104,49,57,50,118,54,52,97,51,50,32,51,50,32,48,32,48,32,48,32,51,50,32,51,50,122,109,48,32,57,54,104,54,54,46,55,52,108,51,50,32,51,50,72,53,49,50,118,49,50,56,72,50,56,56,122,109,48,45,50,56,56,104,54,54,46,55,52,108,51,50,32,51,50,72,53,49,50,118,49,50,56,72,50,56,56,122,34,125,125,41,93,41,93,41,93,44,49,41,44,115,40,34,86,117,101,83,105,109,112,108,101,83,117,103,103,101,115,116,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,120,45,102,108,101,120,34,44,97,116,116,114,115,58,123,118,97,108,117,101,58,101,46,103,101,116,80,97,116,104,84,101,120,116,44,108,105,115,116,58,101,46,115,117,103,103,101,115,116,80,97,116,104,44,34,109,97,120,45,115,117,103,103,101,115,116,105,111,110,115,34,58,48,44,112,108,97,99,101,104,111,108,100,101,114,58,101,46,36,116,40,34,112,97,116,104,66,97,114,46,112,108,97,99,101,104,111,108,100,101,114,34,41,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,80,97,116,104,84,101,120,116,125,44,115,99,111,112,101,100,83,108,111,116,115,58,101,46,95,117,40,91,123,107,101,121,58,34,115,117,103,103,101,115,116,105,111,110,45,105,116,101,109,34,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,105,61,116,46,115,117,103,103,101,115,116,105,111,110,44,97,61,116,46,113,117,101,114,121,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,123,125,44,91,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,115,117,103,103,101,115,116,105,111,110,45,108,105,110,101,34,44,97,116,116,114,115,58,123,116,105,116,108,101,58,105,125,125,44,91,115,40,34,115,116,114,111,110,103,34,44,91,101,46,95,118,40,101,46,95,115,40,97,41,41,93,41,44,101,46,95,118,40,101,46,95,115,40,101,46,103,101,116,83,117,103,103,101,115,116,105,111,110,87,105,116,104,111,117,116,81,117,101,114,121,80,114,101,102,105,120,40,105,44,97,41,41,43,34,32,34,41,93,41,93,41,125,125,93,41,125,41,93,44,49,41,44,115,40,34,98,45,109,111,100,97,108,34,44,123,114,101,102,58,34,112,97,116,104,45,109,111,100,97,108,34,44,97,116,116,114,115,58,123,116,105,116,108,101,58,101,46,36,116,40,34,112,97,116,104,66,97,114,46,109,111,100,97,108,84,105,116,108,101,34,41,44,115,105,122,101,58,34,108,103,34,44,34,104,105,100,101,45,102,111,111,116,101,114,34,58,33,48,44,115,116,97,116,105,99,58,34,34,125,125,44,91,115,40,34,100,105,118,34,44,123,97,116,116,114,115,58,123,105,100,58,34,112,97,116,104,84,114,101,101,34,125,125,41,93,41,93,44,49,41,125,44,122,97,61,91,93,44,77,97,61,123,110,97,109,101,58,34,80,97,116,104,84,114,101,101,34,44,99,111,109,112,111,110,101,110,116,115,58,123,86,117,101,83,105,109,112,108,101,83,117,103,103,101,115,116,58,77,115,46,90,125,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,109,105,109,101,84,114,101,101,58,110,117,108,108,44,112,97,116,104,73,116,101,109,115,58,91,93,44,116,109,112,80,97,116,104,58,34,34,125,125,44,99,111,109,112,117,116,101,100,58,123,46,46,46,40,48,44,121,46,83,101,41,40,91,34,103,101,116,80,97,116,104,84,101,120,116,34,93,41,125,44,109,111,117,110,116,101,100,40,41,123,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,40,101,61,62,123,105,102,40,34,115,101,116,73,110,100,105,99,101,115,34,61,61,61,101,46,116,121,112,101,41,123,108,101,116,32,101,61,110,101,119,40,89,105,40,41,41,40,123,100,97,116,97,58,40,101,44,116,44,115,41,61,62,116,104,105,115,46,103,101,116,78,101,120,116,68,101,112,116,104,40,101,41,44,115,111,114,116,58,34,116,101,120,116,34,125,41,59,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,105,110,100,105,99,101,115,46,102,111,114,69,97,99,104,40,40,116,61,62,123,101,46,97,100,100,78,111,100,101,40,123,105,100,58,34,47,34,43,116,46,105,100,44,118,97,108,117,101,115,58,91,34,47,34,43,116,46,105,100,93,44,116,101,120,116,58,96,47,91,36,123,116,46,110,97,109,101,125,93,96,44,105,110,100,101,120,58,116,46,105,100,44,100,101,112,116,104,58,48,44,99,104,105,108,100,114,101,110,58,33,48,125,41,125,41,41,44,110,101,119,40,74,105,40,41,41,40,101,44,123,116,97,114,103,101,116,58,34,35,112,97,116,104,84,114,101,101,34,125,41,44,101,46,111,110,40,34,110,111,100,101,46,99,108,105,99,107,34,44,116,104,105,115,46,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,41,44,101,46,101,120,112,97,110,100,40,41,125,125,41,41,125,44,109,101,116,104,111,100,115,58,123,46,46,46,40,48,44,121,46,79,73,41,40,91,34,115,101,116,80,97,116,104,84,101,120,116,34,93,41,44,103,101,116,83,117,103,103,101,115,116,105,111,110,87,105,116,104,111,117,116,81,117,101,114,121,80,114,101,102,105,120,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,115,108,105,99,101,40,116,46,108,101,110,103,116,104,41,125,44,97,115,121,110,99,32,103,101,116,80,97,116,104,67,104,111,105,99,101,115,40,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,40,101,61,62,123,99,111,110,115,116,32,116,61,123,115,117,103,103,101,115,116,58,123,112,97,116,104,58,123,112,114,101,102,105,120,58,116,104,105,115,46,103,101,116,80,97,116,104,84,101,120,116,44,99,111,109,112,108,101,116,105,111,110,58,123,102,105,101,108,100,58,34,115,117,103,103,101,115,116,45,112,97,116,104,34,44,115,107,105,112,95,100,117,112,108,105,99,97,116,101,115,58,33,48,44,115,105,122,101,58,49,101,52,125,125,125,125,59,70,46,101,115,81,117,101,114,121,40,116,41,46,116,104,101,110,40,40,116,61,62,101,40,116,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,40,101,61,62,101,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,41,41,41,41,41,125,41,41,125,44,97,115,121,110,99,32,115,117,103,103,101,115,116,80,97,116,104,40,101,41,123,105,102,40,33,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,83,117,103,103,101,115,116,80,97,116,104,41,114,101,116,117,114,110,91,93,59,101,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,99,111,110,115,116,32,116,61,97,119,97,105,116,32,116,104,105,115,46,103,101,116,80,97,116,104,67,104,111,105,99,101,115,40,41,59,108,101,116,32,115,61,91,93,59,102,111,114,40,108,101,116,32,105,61,48,59,105,60,116,46,108,101,110,103,116,104,59,105,43,43,41,126,116,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,101,41,38,38,115,46,112,117,115,104,40,116,91,105,93,41,59,114,101,116,117,114,110,32,115,46,115,111,114,116,40,40,40,101,44,116,41,61,62,101,46,108,101,110,103,116,104,45,116,46,108,101,110,103,116,104,41,41,125,44,103,101,116,78,101,120,116,68,101,112,116,104,40,101,41,123,99,111,110,115,116,32,116,61,123,113,117,101,114,121,58,123,98,111,111,108,58,123,102,105,108,116,101,114,58,91,123,116,101,114,109,58,123,105,110,100,101,120,58,101,46,105,110,100,101,120,125,125,44,123,114,97,110,103,101,58,123,95,100,101,112,116,104,58,123,103,116,101,58,101,46,100,101,112,116,104,43,49,44,108,116,101,58,101,46,100,101,112,116,104,43,51,125,125,125,93,125,125,44,97,103,103,115,58,123,112,97,116,104,115,58,123,116,101,114,109,115,58,123,102,105,101,108,100,58,34,112,97,116,104,34,44,115,105,122,101,58,49,101,52,125,125,125,44,115,105,122,101,58,48,125,59,114,101,116,117,114,110,32,101,46,100,101,112,116,104,62,48,38,38,40,116,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,61,123,112,114,101,102,105,120,58,123,112,97,116,104,58,101,46,105,100,125,125,41,44,70,46,101,115,81,117,101,114,121,40,116,41,46,116,104,101,110,40,40,116,61,62,123,99,111,110,115,116,32,115,61,116,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,112,97,116,104,115,34,93,91,34,98,117,99,107,101,116,115,34,93,59,105,102,40,33,115,41,114,101,116,117,114,110,33,49,59,99,111,110,115,116,32,105,61,91,93,59,114,101,116,117,114,110,32,115,46,102,105,108,116,101,114,40,40,116,61,62,116,46,107,101,121,46,108,101,110,103,116,104,62,101,46,105,100,46,108,101,110,103,116,104,124,124,101,46,105,100,46,115,116,97,114,116,115,87,105,116,104,40,34,47,34,41,41,41,46,115,111,114,116,40,40,40,101,44,116,41,61,62,101,46,107,101,121,62,116,46,107,101,121,41,41,46,109,97,112,40,40,116,61,62,123,105,102,40,105,46,115,111,109,101,40,40,101,61,62,116,46,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,101,41,41,41,41,114,101,116,117,114,110,32,110,117,108,108,59,99,111,110,115,116,32,115,61,101,46,105,100,46,115,116,97,114,116,115,87,105,116,104,40,34,47,34,41,63,116,46,107,101,121,58,116,46,107,101,121,46,115,108,105,99,101,40,101,46,105,100,46,108,101,110,103,116,104,43,49,41,59,114,101,116,117,114,110,32,105,46,112,117,115,104,40,116,46,107,101,121,41,44,123,105,100,58,116,46,107,101,121,44,116,101,120,116,58,96,36,123,115,125,47,32,40,36,123,116,46,100,111,99,95,99,111,117,110,116,125,41,96,44,100,101,112,116,104,58,101,46,100,101,112,116,104,43,49,44,105,110,100,101,120,58,101,46,105,110,100,101,120,44,118,97,108,117,101,115,58,91,116,46,107,101,121,93,44,99,104,105,108,100,114,101,110,58,33,48,125,125,41,41,46,102,105,108,116,101,114,40,40,101,61,62,110,117,108,108,33,61,61,101,41,41,125,41,41,125,44,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,101,44,116,44,115,41,123,48,33,61,61,116,46,100,101,112,116,104,38,38,40,116,104,105,115,46,115,101,116,80,97,116,104,84,101,120,116,40,116,46,105,100,41,44,116,104,105,115,46,36,114,101,102,115,91,34,112,97,116,104,45,109,111,100,97,108,34,93,46,104,105,100,101,40,41,44,116,104,105,115,46,36,101,109,105,116,40,34,115,101,97,114,99,104,34,41,41,44,115,40,41,125,125,125,44,73,97,61,77,97,44,76,97,61,40,48,44,112,46,90,41,40,73,97,44,107,97,44,122,97,44,33,49,44,110,117,108,108,44,34,98,50,52,97,57,57,101,54,34,44,110,117,108,108,41,44,68,97,61,76,97,46,101,120,112,111,114,116,115,44,79,97,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,123,97,116,116,114,115,58,123,105,100,58,34,115,105,122,101,83,108,105,100,101,114,34,125,125,41,125,44,80,97,61,91,93,44,113,97,61,115,40,52,50,49,49,41,44,69,97,61,115,46,110,40,113,97,41,44,65,97,61,123,110,97,109,101,58,34,83,105,122,101,83,108,105,100,101,114,34,44,109,111,117,110,116,101,100,40,41,123,99,111,110,115,116,32,101,61,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,105,122,101,83,108,105,100,101,114,34,41,44,116,61,69,97,40,41,46,99,114,101,97,116,101,40,101,44,123,115,116,97,114,116,58,91,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,122,101,77,105,110,63,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,122,101,77,105,110,58,48,44,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,122,101,77,97,120,63,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,115,105,122,101,77,97,120,58,53,101,49,48,93,44,116,111,111,108,116,105,112,115,58,91,33,48,44,33,48,93,44,98,101,104,97,118,105,111,117,114,58,34,100,114,97,103,45,116,97,112,34,44,99,111,110,110,101,99,116,58,33,48,44,114,97,110,103,101,58,123,109,105,110,58,48,44,34,49,48,37,34,58,49,101,54,44,34,50,48,37,34,58,49,101,55,44,34,53,48,37,34,58,53,101,57,44,109,97,120,58,53,101,49,48,125,44,102,111,114,109,97,116,58,123,116,111,58,101,61,62,101,62,61,53,101,49,48,63,34,53,48,71,43,34,58,122,40,77,97,116,104,46,114,111,117,110,100,40,101,41,41,44,102,114,111,109,58,101,61,62,101,125,125,41,59,74,40,101,44,49,48,44,34,32,45,32,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,46,110,111,85,105,45,99,111,110,110,101,99,116,34,41,91,48,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,115,108,105,100,101,114,45,99,111,108,111,114,48,34,41,44,116,46,111,110,40,34,115,101,116,34,44,40,40,101,44,116,44,115,41,61,62,123,48,61,61,61,116,63,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,83,105,122,101,77,105,110,34,44,48,61,61,61,115,91,48,93,63,118,111,105,100,32,48,58,77,97,116,104,46,114,111,117,110,100,40,115,91,48,93,41,41,58,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,83,105,122,101,77,97,120,34,44,115,91,49,93,62,61,53,101,49,48,63,118,111,105,100,32,48,58,77,97,116,104,46,114,111,117,110,100,40,115,91,49,93,41,41,125,41,41,125,125,44,72,97,61,65,97,44,85,97,61,40,48,44,112,46,90,41,40,72,97,44,79,97,44,80,97,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,66,97,61,85,97,46,101,120,112,111,114,116,115,44,70,97,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,101,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,85,115,101,68,97,116,101,80,105,99,107,101,114,63,115,40,34,100,105,118,34,44,91,115,40,34,98,45,114,111,119,34,44,91,115,40,34,98,45,99,111,108,34,44,123,97,116,116,114,115,58,123,115,109,58,34,54,34,125,125,44,91,115,40,34,98,45,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,98,45,50,34,44,97,116,116,114,115,58,123,34,118,97,108,117,101,45,97,115,45,100,97,116,101,34,58,34,34,44,34,100,97,116,101,45,102,111,114,109,97,116,45,111,112,116,105,111,110,115,34,58,123,121,101,97,114,58,34,110,117,109,101,114,105,99,34,44,109,111,110,116,104,58,34,50,45,100,105,103,105,116,34,44,100,97,121,58,34,50,45,100,105,103,105,116,34,125,44,108,111,99,97,108,101,58,101,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,76,97,110,103,44,118,97,108,117,101,58,101,46,100,97,116,101,77,105,110,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,68,97,116,101,77,105,110,125,125,41,93,44,49,41,44,115,40,34,98,45,99,111,108,34,44,123,97,116,116,114,115,58,123,115,109,58,34,54,34,125,125,44,91,115,40,34,98,45,102,111,114,109,45,100,97,116,101,112,105,99,107,101,114,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,98,45,50,34,44,97,116,116,114,115,58,123,34,118,97,108,117,101,45,97,115,45,100,97,116,101,34,58,34,34,44,34,100,97,116,101,45,102,111,114,109,97,116,45,111,112,116,105,111,110,115,34,58,123,121,101,97,114,58,34,110,117,109,101,114,105,99,34,44,109,111,110,116,104,58,34,50,45,100,105,103,105,116,34,44,100,97,121,58,34,50,45,100,105,103,105,116,34,125,44,108,111,99,97,108,101,58,101,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,76,97,110,103,44,118,97,108,117,101,58,101,46,100,97,116,101,77,97,120,125,44,111,110,58,123,105,110,112,117,116,58,101,46,115,101,116,68,97,116,101,77,97,120,125,125,41,93,44,49,41,93,44,49,41,93,44,49,41,58,115,40,34,100,105,118,34,44,91,115,40,34,98,45,114,111,119,34,44,91,115,40,34,98,45,99,111,108,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,104,101,105,103,104,116,58,34,55,48,112,120,34,125,125,44,91,115,40,34,100,105,118,34,44,123,97,116,116,114,115,58,123,105,100,58,34,100,97,116,101,83,108,105,100,101,114,34,125,125,41,93,41,93,44,49,41,93,44,49,41,125,44,78,97,61,91,93,44,82,97,61,123,110,97,109,101,58,34,68,97,116,101,83,108,105,100,101,114,34,44,109,101,116,104,111,100,115,58,123,115,101,116,68,97,116,101,77,105,110,40,101,41,123,99,111,110,115,116,32,116,61,77,97,116,104,46,99,101,105,108,40,43,101,47,49,101,51,41,59,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,68,97,116,101,77,105,110,34,44,116,41,125,44,115,101,116,68,97,116,101,77,97,120,40,101,41,123,99,111,110,115,116,32,116,61,77,97,116,104,46,99,101,105,108,40,43,101,47,49,101,51,41,59,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,68,97,116,101,77,97,120,34,44,116,41,125,125,44,99,111,109,112,117,116,101,100,58,123,100,97,116,101,77,105,110,40,41,123,99,111,110,115,116,32,101,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,105,110,63,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,105,110,58,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,66,111,117,110,100,115,77,105,110,59,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,49,101,51,42,101,41,125,44,100,97,116,101,77,97,120,40,41,123,99,111,110,115,116,32,101,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,97,120,63,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,97,120,58,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,66,111,117,110,100,115,77,97,120,59,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,49,101,51,42,101,41,125,125,44,109,111,117,110,116,101,100,40,41,123,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,40,101,61,62,123,105,102,40,34,115,101,116,68,97,116,101,66,111,117,110,100,115,77,97,120,34,61,61,61,101,46,116,121,112,101,41,123,99,111,110,115,116,32,101,61,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,100,97,116,101,83,108,105,100,101,114,34,41,59,105,102,40,110,117,108,108,61,61,61,101,41,114,101,116,117,114,110,59,105,102,40,101,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,62,48,41,114,101,116,117,114,110,59,99,111,110,115,116,32,116,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,66,111,117,110,100,115,77,97,120,44,115,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,66,111,117,110,100,115,77,105,110,44,105,61,69,97,40,41,46,99,114,101,97,116,101,40,101,44,123,115,116,97,114,116,58,91,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,105,110,63,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,105,110,58,115,44,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,97,120,63,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,100,97,116,101,77,97,120,58,116,93,44,116,111,111,108,116,105,112,115,58,91,33,48,44,33,48,93,44,98,101,104,97,118,105,111,117,114,58,34,100,114,97,103,45,116,97,112,34,44,99,111,110,110,101,99,116,58,33,48,44,114,97,110,103,101,58,123,109,105,110,58,115,44,109,97,120,58,116,125,44,102,111,114,109,97,116,58,123,116,111,58,101,61,62,73,40,101,41,44,102,114,111,109,58,101,61,62,101,125,125,41,59,74,40,101,44,49,48,44,34,32,45,32,34,44,33,48,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,46,110,111,85,105,45,99,111,110,110,101,99,116,34,41,91,48,93,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,115,108,105,100,101,114,45,99,111,108,111,114,48,34,41,44,105,46,111,110,40,34,115,101,116,34,44,40,40,101,44,105,44,97,41,61,62,123,48,61,61,61,105,63,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,68,97,116,101,77,105,110,34,44,97,91,48,93,61,61,61,115,63,118,111,105,100,32,48,58,77,97,116,104,46,114,111,117,110,100,40,97,91,48,93,41,41,58,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,68,97,116,101,77,97,120,34,44,97,91,49,93,62,61,116,63,118,111,105,100,32,48,58,77,97,116,104,46,114,111,117,110,100,40,97,91,49,93,41,41,125,41,41,125,125,41,41,125,125,44,86,97,61,82,97,44,90,97,61,40,48,44,112,46,90,41,40,86,97,44,70,97,44,78,97,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,81,97,61,90,97,46,101,120,112,111,114,116,115,44,71,97,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,91,101,46,115,104,111,119,83,101,97,114,99,104,66,97,114,63,115,40,34,98,45,105,110,112,117,116,45,103,114,111,117,112,34,44,123,97,116,116,114,115,58,123,105,100,58,34,116,97,103,45,112,105,99,107,101,114,45,102,105,108,116,101,114,45,98,97,114,34,125,125,44,91,115,40,34,98,45,102,111,114,109,45,105,110,112,117,116,34,44,123,97,116,116,114,115,58,123,118,97,108,117,101,58,101,46,102,105,108,116,101,114,44,112,108,97,99,101,104,111,108,100,101,114,58,101,46,36,116,40,34,116,97,103,70,105,108,116,101,114,34,41,125,44,111,110,58,123,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,70,105,108,116,101,114,40,116,41,125,125,125,41,93,44,49,41,58,101,46,95,101,40,41,44,115,40,34,100,105,118,34,44,123,97,116,116,114,115,58,123,105,100,58,34,116,97,103,84,114,101,101,34,125,125,41,93,44,49,41,125,44,106,97,61,91,93,59,102,117,110,99,116,105,111,110,32,87,97,40,101,41,123,114,101,116,117,114,110,32,101,46,95,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,46,102,111,114,69,97,99,104,40,40,102,117,110,99,116,105,111,110,40,116,44,115,41,123,101,46,115,116,97,116,101,40,115,44,116,41,125,41,41,44,101,125,102,117,110,99,116,105,111,110,32,89,97,40,101,44,116,44,115,44,105,44,97,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,115,38,38,87,97,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,115,44,105,44,33,49,41,44,97,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,40,102,117,110,99,116,105,111,110,40,105,41,123,89,97,40,101,44,116,44,115,44,105,41,125,41,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,75,97,40,101,44,116,44,115,44,105,41,123,99,111,110,115,116,32,97,61,116,46,115,112,108,105,116,40,34,46,34,41,44,111,61,123,105,100,58,115,44,99,111,117,110,116,58,105,44,116,101,120,116,58,49,33,61,61,97,46,108,101,110,103,116,104,63,97,91,48,93,58,96,36,123,97,91,48,93,125,32,40,36,123,105,125,41,96,44,110,97,109,101,58,97,91,48,93,44,99,104,105,108,100,114,101,110,58,91,93,44,98,108,117,114,58,102,117,110,99,116,105,111,110,40,41,123,125,44,115,101,108,101,99,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,115,116,97,116,101,40,34,115,101,108,101,99,116,101,100,34,44,33,48,41,44,116,104,105,115,46,99,104,101,99,107,40,41,125,44,100,101,115,101,108,101,99,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,115,116,97,116,101,40,34,115,101,108,101,99,116,101,100,34,44,33,49,41,44,116,104,105,115,46,117,110,99,104,101,99,107,40,41,125,44,117,110,99,104,101,99,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,97,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,49,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,44,99,104,101,99,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,97,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,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,59,108,101,116,32,114,61,33,49,59,101,46,102,111,114,69,97,99,104,40,40,101,61,62,123,101,46,110,97,109,101,61,61,61,111,46,110,97,109,101,38,38,40,114,61,33,48,44,49,33,61,61,97,46,108,101,110,103,116,104,63,75,97,40,101,46,99,104,105,108,100,114,101,110,44,97,46,115,108,105,99,101,40,49,41,46,106,111,105,110,40,34,46,34,41,44,115,44,105,41,58,40,99,111,110,115,111,108,101,46,101,114,114,111,114,40,34,70,73,88,77,69,58,32,68,117,112,108,105,99,97,116,101,32,116,97,103,63,34,41,44,99,111,110,115,111,108,101,46,116,114,97,99,101,40,101,41,41,41,125,41,41,44,114,124,124,40,49,33,61,61,97,46,108,101,110,103,116,104,63,40,75,97,40,111,46,99,104,105,108,100,114,101,110,44,97,46,115,108,105,99,101,40,49,41,46,106,111,105,110,40,34,46,34,41,44,115,44,105,41,44,101,46,112,117,115,104,40,111,41,41,58,101,46,112,117,115,104,40,111,41,41,125,118,97,114,32,74,97,61,123,110,97,109,101,58,34,84,97,103,80,105,99,107,101,114,34,44,112,114,111,112,115,58,91,34,115,104,111,119,83,101,97,114,99,104,66,97,114,34,93,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,116,97,103,84,114,101,101,58,110,117,108,108,44,108,111,97,100,101,100,70,114,111,109,65,114,103,115,58,33,49,44,102,105,108,116,101,114,58,34,34,125,125,44,109,111,117,110,116,101,100,40,41,123,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,40,101,61,62,123,34,115,101,116,85,105,77,105,109,101,77,97,112,34,61,61,61,101,46,116,121,112,101,38,38,110,117,108,108,61,61,61,116,104,105,115,46,116,97,103,84,114,101,101,63,40,116,104,105,115,46,105,110,105,116,105,97,108,105,122,101,84,114,101,101,40,41,44,116,104,105,115,46,117,112,100,97,116,101,84,114,101,101,40,41,41,58,34,98,117,115,85,112,100,97,116,101,84,97,103,115,34,61,61,61,101,46,116,121,112,101,38,38,119,105,110,100,111,119,46,115,101,116,84,105,109,101,111,117,116,40,116,104,105,115,46,117,112,100,97,116,101,84,114,101,101,44,50,101,51,41,125,41,41,125,44,109,101,116,104,111,100,115,58,123,111,110,70,105,108,116,101,114,40,101,41,123,116,104,105,115,46,102,105,108,116,101,114,61,101,44,116,104,105,115,46,116,97,103,84,114,101,101,46,115,101,97,114,99,104,40,101,41,125,44,105,110,105,116,105,97,108,105,122,101,84,114,101,101,40,41,123,99,111,110,115,116,32,101,61,91,93,59,116,104,105,115,46,116,97,103,84,114,101,101,61,110,101,119,40,89,105,40,41,41,40,123,115,101,108,101,99,116,105,111,110,58,123,109,111,100,101,58,34,99,104,101,99,107,98,111,120,34,44,97,117,116,111,68,101,115,101,108,101,99,116,58,33,49,125,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,49,125,44,100,97,116,97,58,101,125,41,44,110,101,119,40,74,105,40,41,41,40,116,104,105,115,46,116,97,103,84,114,101,101,44,123,116,97,114,103,101,116,58,34,35,116,97,103,84,114,101,101,34,125,41,44,116,104,105,115,46,116,97,103,84,114,101,101,46,111,110,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,46,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,41,125,44,117,112,100,97,116,101,84,114,101,101,40,41,123,99,111,110,115,116,32,101,61,91,93,59,70,46,103,101,116,84,97,103,115,40,41,46,116,104,101,110,40,40,116,61,62,123,116,46,102,111,114,69,97,99,104,40,40,116,61,62,75,97,40,101,44,116,46,105,100,44,116,46,105,100,44,116,46,99,111,117,110,116,41,41,41,44,116,104,105,115,46,116,97,103,84,114,101,101,46,114,101,109,111,118,101,65,108,108,40,41,44,116,104,105,115,46,116,97,103,84,114,101,101,46,97,100,100,78,111,100,101,115,40,101,41,44,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,84,97,103,115,46,108,101,110,103,116,104,62,48,38,38,33,116,104,105,115,46,108,111,97,100,101,100,70,114,111,109,65,114,103,115,38,38,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,95,111,110,76,111,97,100,83,101,108,101,99,116,101,100,84,97,103,115,46,102,111,114,69,97,99,104,40,40,101,61,62,123,116,104,105,115,46,116,97,103,84,114,101,101,46,110,111,100,101,40,101,41,46,115,101,108,101,99,116,40,41,44,116,104,105,115,46,108,111,97,100,101,100,70,114,111,109,65,114,103,115,61,33,48,125,41,41,125,41,41,125,44,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,101,44,116,41,123,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,33,61,61,116,38,38,34,99,111,108,108,97,112,115,101,100,34,33,61,61,116,38,38,34,114,101,110,100,101,114,101,100,34,33,61,61,116,38,38,34,102,111,99,117,115,101,100,34,33,61,61,116,38,38,34,109,97,116,99,104,101,100,34,33,61,61,116,38,38,34,104,105,100,100,101,110,34,33,61,61,116,38,38,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,83,101,108,101,99,116,101,100,84,97,103,115,34,44,68,40,116,104,105,115,46,116,97,103,84,114,101,101,41,41,125,125,125,44,88,97,61,74,97,44,101,111,61,40,48,44,112,46,90,41,40,88,97,44,71,97,44,106,97,44,33,49,44,110,117,108,108,44,34,102,49,54,49,57,57,54,56,34,44,110,117,108,108,41,44,116,111,61,101,111,46,101,120,112,111,114,116,115,44,115,111,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,98,45,108,105,115,116,45,103,114,111,117,112,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,116,45,51,34,125,44,101,46,95,108,40,101,46,100,111,99,115,44,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,115,40,34,68,111,99,76,105,115,116,73,116,101,109,34,44,123,107,101,121,58,101,46,95,105,100,44,97,116,116,114,115,58,123,100,111,99,58,101,125,125,41,125,41,41,44,49,41,125,44,105,111,61,91,93,44,97,111,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,98,45,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,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,32,109,98,45,50,34,44,99,108,97,115,115,58,123,34,115,117,98,45,100,111,99,117,109,101,110,116,34,58,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,83,117,98,68,111,99,117,109,101,110,116,125,44,111,110,58,123,109,111,117,115,101,101,110,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,84,110,69,110,116,101,114,40,41,125,44,109,111,117,115,101,108,101,97,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,84,110,76,101,97,118,101,40,41,125,125,125,44,91,115,40,34,68,111,99,73,110,102,111,77,111,100,97,108,34,44,123,97,116,116,114,115,58,123,115,104,111,119,58,101,46,115,104,111,119,73,110,102,111,44,100,111,99,58,101,46,100,111,99,125,44,111,110,58,123,99,108,111,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,115,104,111,119,73,110,102,111,61,33,49,125,125,125,41,44,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,101,100,105,97,32,109,108,45,50,34,125,44,91,101,46,100,111,99,46,95,112,114,111,112,115,46,104,97,115,84,104,117,109,98,110,97,105,108,63,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,97,108,105,103,110,45,115,101,108,102,45,115,116,97,114,116,32,109,114,45,50,32,119,114,97,112,112,101,114,45,115,109,34,125,44,91,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,105,109,103,45,119,114,97,112,112,101,114,34,125,44,91,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,86,105,100,101,111,63,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,108,97,121,34,125,44,91,115,40,34,115,118,103,34,44,123,97,116,116,114,115,58,123,118,105,101,119,66,111,120,58,34,48,32,48,32,52,57,52,46,57,52,50,32,52,57,52,46,57,52,50,34,44,120,109,108,110,115,58,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,125,125,44,91,115,40,34,112,97,116,104,34,44,123,97,116,116,114,115,58,123,100,58,34,109,51,53,46,51,53,51,32,48,32,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,45,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,122,34,125,125,41,93,41,93,41,58,101,46,95,101,40,41,44,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,73,109,97,103,101,124,124,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,86,105,100,101,111,63,115,40,34,105,109,103,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,111,105,110,116,101,114,32,102,105,116,45,115,109,34,44,97,116,116,114,115,58,123,115,114,99,58,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,71,105,102,38,38,101,46,104,111,118,101,114,63,34,102,47,34,43,101,46,100,111,99,46,95,105,100,58,34,116,47,34,43,101,46,100,111,99,46,95,115,111,117,114,99,101,46,105,110,100,101,120,43,34,47,34,43,101,46,100,111,99,46,95,105,100,44,97,108,116,58,34,34,125,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,125,125,125,41,58,115,40,34,105,109,103,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,105,116,45,115,109,34,44,97,116,116,114,115,58,123,115,114,99,58,34,116,47,34,43,101,46,100,111,99,46,95,115,111,117,114,99,101,46,105,110,100,101,120,43,34,47,34,43,101,46,100,111,99,46,95,105,100,44,97,108,116,58,34,34,125,125,41,93,41,93,41,58,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,105,108,101,45,105,99,111,110,45,119,114,97,112,112,101,114,34,125,44,91,115,40,34,70,105,108,101,73,99,111,110,34,41,93,44,49,41,44,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,100,111,99,45,108,105,110,101,32,109,108,45,51,34,125,44,91,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,100,105,115,112,108,97,121,58,34,102,108,101,120,34,125,125,44,91,115,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,105,110,102,111,45,105,99,111,110,34,44,111,110,58,123,99,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,101,46,115,104,111,119,73,110,102,111,61,33,48,125,125,125,41,44,115,40,34,68,111,99,70,105,108,101,84,105,116,108,101,34,44,123,97,116,116,114,115,58,123,100,111,99,58,101,46,100,111,99,125,125,41,93,44,49,41,44,115,40,34,67,111,110,116,101,110,116,68,105,118,34,44,123,97,116,116,114,115,58,123,100,111,99,58,101,46,100,111,99,125,125,41,44,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,97,116,104,45,114,111,119,34,125,44,91,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,97,116,104,45,108,105,110,101,34,44,100,111,109,80,114,111,112,115,58,123,105,110,110,101,114,72,84,77,76,58,101,46,95,115,40,101,46,112,97,116,104,40,41,41,125,125,41,44,115,40,34,84,97,103,67,111,110,116,97,105,110,101,114,34,44,123,97,116,116,114,115,58,123,104,105,116,58,101,46,100,111,99,125,125,41,93,44,49,41,44,101,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,103,101,115,124,124,101,46,100,111,99,46,95,115,111,117,114,99,101,46,97,117,116,104,111,114,63,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,112,97,116,104,45,114,111,119,32,116,101,120,116,45,109,117,116,101,100,34,125,44,91,101,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,103,101,115,63,115,40,34,115,112,97,110,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,103,101,115,41,43,34,32,34,43,101,46,95,115,40,101,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,103,101,115,62,49,63,101,46,36,116,40,34,112,97,103,101,115,34,41,58,101,46,36,116,40,34,112,97,103,101,34,41,41,41,93,41,58,101,46,95,101,40,41,44,101,46,100,111,99,46,95,115,111,117,114,99,101,46,97,117,116,104,111,114,38,38,101,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,103,101,115,63,115,40,34,115,112,97,110,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,109,120,45,49,34,125,44,91,101,46,95,118,40,34,45,34,41,93,41,58,101,46,95,101,40,41,44,101,46,100,111,99,46,95,115,111,117,114,99,101,46,97,117,116,104,111,114,63,115,40,34,115,112,97,110,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,100,111,99,46,95,115,111,117,114,99,101,46,97,117,116,104,111,114,41,41,93,41,58,101,46,95,101,40,41,93,41,58,101,46,95,101,40,41,93,44,49,41,93,41,93,44,49,41,125,44,111,111,61,91,93,44,114,111,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,115,118,103,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,102,105,108,101,45,105,99,111,110,34,44,97,116,116,114,115,58,123,120,109,108,110,115,58,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,118,105,101,119,66,111,120,58,34,48,32,48,32,53,48,32,53,48,34,125,125,44,91,115,40,34,112,97,116,104,34,44,123,97,116,116,114,115,58,123,102,105,108,108,58,34,99,117,114,114,101,110,116,67,111,108,111,114,34,44,100,58,34,77,32,55,32,50,32,76,32,55,32,52,56,32,76,32,52,51,32,52,56,32,76,32,52,51,32,49,52,46,53,57,51,55,53,32,76,32,52,50,46,55,49,56,55,53,32,49,52,46,50,56,49,50,53,32,76,32,51,48,46,55,49,56,55,53,32,50,46,50,56,49,50,53,32,76,32,51,48,46,52,48,54,50,53,32,50,32,90,32,77,32,57,32,52,32,76,32,50,57,32,52,32,76,32,50,57,32,49,54,32,76,32,52,49,32,49,54,32,76,32,52,49,32,52,54,32,76,32,57,32,52,54,32,90,32,77,32,51,49,32,53,46,52,51,55,53,32,76,32,51,57,46,53,54,50,53,32,49,52,32,76,32,51,49,32,49,52,32,90,34,125,125,41,93,41,125,44,110,111,61,91,93,44,108,111,61,123,110,97,109,101,58,34,70,105,108,101,73,99,111,110,34,125,44,99,111,61,108,111,44,117,111,61,40,48,44,112,46,90,41,40,99,111,44,114,111,44,110,111,44,33,49,44,110,117,108,108,44,34,48,99,101,97,57,52,100,100,34,44,110,117,108,108,41,44,104,111,61,117,111,46,101,120,112,111,114,116,115,44,112,111,61,123,110,97,109,101,58,34,68,111,99,76,105,115,116,73,116,101,109,34,44,99,111,109,112,111,110,101,110,116,115,58,123,70,105,108,101,73,99,111,110,58,104,111,44,67,111,110,116,101,110,116,68,105,118,58,117,105,44,68,111,99,73,110,102,111,77,111,100,97,108,58,111,105,44,68,111,99,70,105,108,101,84,105,116,108,101,58,85,115,44,84,97,103,67,111,110,116,97,105,110,101,114,58,79,115,125,44,112,114,111,112,115,58,91,34,100,111,99,34,93,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,104,111,118,101,114,58,33,49,44,115,104,111,119,73,110,102,111,58,33,49,125,125,44,109,101,116,104,111,100,115,58,123,97,115,121,110,99,32,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,123,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,85,105,76,105,103,104,116,98,111,120,83,108,105,100,101,34,44,116,104,105,115,46,100,111,99,46,95,115,101,113,41,44,97,119,97,105,116,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,34,115,104,111,119,76,105,103,104,116,98,111,120,34,41,125,44,112,97,116,104,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,63,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,34,112,97,116,104,46,116,101,120,116,34,93,63,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,34,112,97,116,104,46,116,101,120,116,34,93,43,34,47,34,58,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,34,112,97,116,104,46,110,71,114,97,109,34,93,63,116,104,105,115,46,100,111,99,46,104,105,103,104,108,105,103,104,116,91,34,112,97,116,104,46,110,71,114,97,109,34,93,43,34,47,34,58,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,116,104,43,34,47,34,58,116,104,105,115,46,100,111,99,46,95,115,111,117,114,99,101,46,112,97,116,104,43,34,47,34,125,44,111,110,84,110,69,110,116,101,114,40,41,123,116,104,105,115,46,104,111,118,101,114,61,33,48,125,44,111,110,84,110,76,101,97,118,101,40,41,123,116,104,105,115,46,104,111,118,101,114,61,33,49,125,125,125,44,109,111,61,112,111,44,103,111,61,40,48,44,112,46,90,41,40,109,111,44,97,111,44,111,111,44,33,49,44,110,117,108,108,44,34,53,55,55,49,53,97,51,98,34,44,110,117,108,108,41,44,102,111,61,103,111,46,101,120,112,111,114,116,115,44,98,111,61,105,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,34,68,111,99,76,105,115,116,34,44,99,111,109,112,111,110,101,110,116,115,58,123,68,111,99,76,105,115,116,73,116,101,109,58,102,111,125,44,112,114,111,112,115,58,91,34,100,111,99,115,34,44,34,97,112,112,101,110,100,34,93,44,109,111,117,110,116,101,100,40,41,123,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,40,40,41,61,62,123,99,111,110,115,116,32,101,61,52,48,48,44,116,61,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,97,112,112,34,41,59,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,43,119,105,110,100,111,119,46,115,99,114,111,108,108,89,62,61,116,46,111,102,102,115,101,116,72,101,105,103,104,116,45,101,38,38,116,104,105,115,46,97,112,112,101,110,100,40,41,125,41,41,125,125,41,44,118,111,61,98,111,44,120,111,61,40,48,44,112,46,90,41,40,118,111,44,115,111,44,105,111,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,121,111,61,120,111,46,101,120,112,111,114,116,115,44,95,111,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,98,45,109,111,100,97,108,34,44,123,97,116,116,114,115,58,123,118,105,115,105,98,108,101,58,101,46,115,104,111,119,44,115,105,122,101,58,34,108,103,34,44,34,104,105,100,101,45,102,111,111,116,101,114,34,58,33,48,44,115,116,97,116,105,99,58,34,34,44,116,105,116,108,101,58,101,46,36,116,40,34,104,101,108,112,46,104,101,108,112,34,41,125,44,111,110,58,123,99,108,111,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,36,101,109,105,116,40,34,99,108,111,115,101,34,41,125,44,104,105,100,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,36,101,109,105,116,40,34,99,108,111,115,101,34,41,125,125,125,44,91,115,40,34,104,50,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,115,105,109,112,108,101,83,101,97,114,99,104,34,41,41,41,93,41,44,115,40,34,116,97,98,108,101,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,116,97,98,108,101,34,125,44,91,115,40,34,116,98,111,100,121,34,44,91,115,40,34,116,114,34,44,91,115,40,34,116,100,34,44,91,115,40,34,99,111,100,101,34,44,91,101,46,95,118,40,34,43,34,41,93,41,93,41,44,115,40,34,116,100,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,97,110,100,34,41,41,41,93,41,93,41,44,115,40,34,116,114,34,44,91,115,40,34,116,100,34,44,91,115,40,34,99,111,100,101,34,44,91,101,46,95,118,40,34,124,34,41,93,41,93,41,44,115,40,34,116,100,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,111,114,34,41,41,41,93,41,93,41,44,115,40,34,116,114,34,44,91,115,40,34,116,100,34,44,91,115,40,34,99,111,100,101,34,44,91,101,46,95,118,40,34,45,34,41,93,41,93,41,44,115,40,34,116,100,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,110,111,116,34,41,41,41,93,41,93,41,44,115,40,34,116,114,34,44,91,115,40,34,116,100,34,44,91,115,40,34,99,111,100,101,34,44,91,101,46,95,118,40,39,34,34,39,41,93,41,93,41,44,115,40,34,116,100,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,113,117,111,116,101,115,34,41,41,41,93,41,93,41,44,115,40,34,116,114,34,44,91,115,40,34,116,100,34,44,91,115,40,34,99,111,100,101,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,116,101,114,109,34,41,41,43,34,42,34,41,93,41,93,41,44,115,40,34,116,100,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,112,114,101,102,105,120,34,41,41,41,93,41,93,41,44,115,40,34,116,114,34,44,91,115,40,34,116,100,34,44,91,115,40,34,99,111,100,101,34,44,91,101,46,95,118,40,34,40,34,41,93,41,44,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,36,116,40,34,97,110,100,34,41,41,43,34,32,34,41,44,115,40,34,99,111,100,101,34,44,91,101,46,95,118,40,34,41,34,41,93,41,93,41,44,115,40,34,116,100,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,112,97,114,101,110,115,34,41,41,41,93,41,93,41,44,115,40,34,116,114,34,44,91,115,40,34,116,100,34,44,91,115,40,34,99,111,100,101,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,116,101,114,109,34,41,41,43,34,126,78,34,41,93,41,93,41,44,115,40,34,116,100,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,116,105,108,100,101,84,101,114,109,34,41,41,41,93,41,93,41,44,115,40,34,116,114,34,44,91,115,40,34,116,100,34,44,91,115,40,34,99,111,100,101,34,44,91,101,46,95,118,40,39,34,46,46,46,34,126,78,39,41,93,41,93,41,44,115,40,34,116,100,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,116,105,108,100,101,80,104,114,97,115,101,34,41,41,41,93,41,93,41,93,41,93,41,44,115,40,34,112,34,44,123,100,111,109,80,114,111,112,115,58,123,105,110,110,101,114,72,84,77,76,58,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,101,120,97,109,112,108,101,49,34,41,41,125,125,41,44,115,40,34,112,34,44,123,100,111,109,80,114,111,112,115,58,123,105,110,110,101,114,72,84,77,76,58,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,100,101,102,97,117,108,116,79,112,101,114,97,116,111,114,34,41,41,125,125,41,44,115,40,34,112,34,44,123,100,111,109,80,114,111,112,115,58,123,105,110,110,101,114,72,84,77,76,58,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,102,117,122,122,121,34,41,41,125,125,41,44,115,40,34,98,114,34,41,44,115,40,34,112,34,44,123,100,111,109,80,114,111,112,115,58,123,105,110,110,101,114,72,84,77,76,58,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,109,111,114,101,73,110,102,111,83,105,109,112,108,101,34,41,41,125,125,41,44,115,40,34,112,34,41,44,115,40,34,104,50,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,97,100,118,97,110,99,101,100,83,101,97,114,99,104,34,41,41,41,93,41,44,115,40,34,112,34,44,123,100,111,109,80,114,111,112,115,58,123,105,110,110,101,114,72,84,77,76,58,101,46,95,115,40,101,46,36,116,40,34,104,101,108,112,46,109,111,114,101,73,110,102,111,65,100,118,97,110,99,101,100,34,41,41,125,125,41,93,41,125,44,84,111,61,91,93,44,83,111,61,123,110,97,109,101,58,34,72,101,108,112,68,105,97,108,111,103,34,44,112,114,111,112,115,58,91,34,115,104,111,119,34,93,125,44,119,111,61,83,111,44,36,111,61,40,48,44,112,46,90,41,40,119,111,44,95,111,44,84,111,44,33,49,44,110,117,108,108,44,34,48,56,55,50,101,52,57,51,34,44,110,117,108,108,41,44,67,111,61,36,111,46,101,120,112,111,114,116,115,44,107,111,61,105,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,99,111,109,112,111,110,101,110,116,115,58,123,72,101,108,112,68,105,97,108,111,103,58,67,111,44,68,111,99,76,105,115,116,58,121,111,44,84,97,103,80,105,99,107,101,114,58,116,111,44,68,97,116,101,83,108,105,100,101,114,58,81,97,44,83,105,122,101,83,108,105,100,101,114,58,66,97,44,80,97,116,104,84,114,101,101,58,68,97,44,82,101,115,117,108,116,115,67,97,114,100,58,67,97,44,77,105,109,101,80,105,99,107,101,114,58,115,97,44,76,105,103,104,116,98,111,120,58,66,105,44,68,111,99,67,97,114,100,87,97,108,108,58,68,105,44,73,110,100,101,120,80,105,99,107,101,114,58,108,115,44,83,101,97,114,99,104,66,97,114,58,87,116,44,80,114,101,108,111,97,100,101,114,58,120,101,125,44,100,97,116,97,58,40,41,61,62,40,123,108,111,97,100,105,110,103,58,33,49,44,117,105,76,111,97,100,105,110,103,58,33,48,44,115,101,97,114,99,104,58,118,111,105,100,32,48,44,100,111,99,115,58,91,93,44,100,111,99,73,100,115,58,110,101,119,32,83,101,116,44,100,111,99,67,104,101,99,107,115,117,109,115,58,110,101,119,32,83,101,116,44,115,101,97,114,99,104,66,117,115,121,58,33,49,44,83,105,115,116,50,81,117,101,114,121,58,120,115,44,115,104,111,119,72,101,108,112,58,33,49,125,41,44,99,111,109,112,117,116,101,100,58,123,46,46,46,40,48,44,121,46,83,101,41,40,91,34,105,110,100,105,99,101,115,34,44,34,111,112,116,68,105,115,112,108,97,121,34,93,41,125,44,109,111,117,110,116,101,100,40,41,123,119,105,110,100,111,119,46,111,110,116,111,117,99,104,101,110,100,61,40,41,61,62,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,98,117,115,84,111,117,99,104,69,110,100,34,41,44,119,105,110,100,111,119,46,111,110,116,111,117,99,104,99,97,110,99,101,108,61,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,98,117,115,84,111,117,99,104,69,110,100,34,41,44,116,104,105,115,46,115,101,97,114,99,104,61,95,115,40,41,40,40,97,115,121,110,99,32,101,61,62,123,101,38,38,97,119,97,105,116,32,116,104,105,115,46,99,108,101,97,114,82,101,115,117,108,116,115,40,41,44,97,119,97,105,116,32,116,104,105,115,46,115,101,97,114,99,104,78,111,119,40,120,115,46,115,101,97,114,99,104,81,117,101,114,121,40,41,41,125,41,44,51,53,48,44,123,108,101,97,100,105,110,103,58,33,49,125,41,44,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,34,108,111,97,100,70,114,111,109,65,114,103,115,34,44,116,104,105,115,46,36,114,111,117,116,101,41,46,116,104,101,110,40,40,40,41,61,62,123,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,40,40,41,61,62,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,34,117,112,100,97,116,101,65,114,103,115,34,44,116,104,105,115,46,36,114,111,117,116,101,114,41,41,41,44,116,104,105,115,46,36,115,116,111,114,101,46,115,117,98,115,99,114,105,98,101,40,40,101,61,62,123,105,102,40,91,34,115,101,116,83,105,122,101,77,105,110,34,44,34,115,101,116,83,105,122,101,77,97,120,34,44,34,115,101,116,68,97,116,101,77,105,110,34,44,34,115,101,116,68,97,116,101,77,97,120,34,44,34,115,101,116,83,101,97,114,99,104,84,101,120,116,34,44,34,115,101,116,80,97,116,104,84,101,120,116,34,44,34,115,101,116,83,111,114,116,77,111,100,101,34,44,34,115,101,116,79,112,116,72,105,103,104,108,105,103,104,116,34,44,34,115,101,116,79,112,116,70,114,97,103,109,101,110,116,83,105,122,101,34,44,34,115,101,116,70,117,122,122,121,34,44,34,115,101,116,83,105,122,101,34,44,34,115,101,116,83,101,108,101,99,116,101,100,73,110,100,105,99,101,115,34,44,34,115,101,116,83,101,108,101,99,116,101,100,77,105,109,101,84,121,112,101,115,34,44,34,115,101,116,83,101,108,101,99,116,101,100,84,97,103,115,34,44,34,115,101,116,79,112,116,81,117,101,114,121,77,111,100,101,34,44,34,115,101,116,79,112,116,83,101,97,114,99,104,73,110,80,97,116,104,34,93,46,105,110,99,108,117,100,101,115,40,101,46,116,121,112,101,41,41,123,105,102,40,116,104,105,115,46,115,101,97,114,99,104,66,117,115,121,41,114,101,116,117,114,110,59,116,104,105,115,46,115,101,97,114,99,104,40,33,48,41,125,125,41,41,125,41,41,44,116,104,105,115,46,115,101,116,73,110,100,105,99,101,115,40,116,104,105,115,46,36,115,116,111,114,101,46,103,101,116,116,101,114,115,91,34,115,105,115,116,50,73,110,102,111,34,93,46,105,110,100,105,99,101,115,41,44,116,104,105,115,46,103,101,116,68,97,116,101,82,97,110,103,101,40,41,46,116,104,101,110,40,40,101,61,62,123,116,104,105,115,46,115,101,116,68,97,116,101,66,111,117,110,100,115,77,105,110,40,101,46,109,105,110,41,44,116,104,105,115,46,115,101,116,68,97,116,101,66,111,117,110,100,115,77,97,120,40,101,46,109,97,120,41,59,99,111,110,115,116,32,116,61,33,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,85,112,100,97,116,101,77,105,109,101,77,97,112,59,70,46,103,101,116,77,105,109,101,84,121,112,101,115,40,120,115,46,115,101,97,114,99,104,81,117,101,114,121,40,116,41,41,46,116,104,101,110,40,40,40,123,109,105,109,101,77,97,112,58,101,125,41,61,62,123,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,85,105,77,105,109,101,77,97,112,34,44,101,41,44,116,104,105,115,46,117,105,76,111,97,100,105,110,103,61,33,49,44,116,104,105,115,46,115,101,97,114,99,104,40,33,48,41,125,41,41,125,41,41,125,44,109,101,116,104,111,100,115,58,123,46,46,46,40,48,44,121,46,110,118,41,40,123,115,101,116,83,105,115,116,50,73,110,102,111,58,34,115,101,116,83,105,115,116,50,73,110,102,111,34,125,41,44,46,46,46,40,48,44,121,46,79,73,41,40,123,115,101,116,73,110,100,105,99,101,115,58,34,115,101,116,73,110,100,105,99,101,115,34,44,115,101,116,68,97,116,101,66,111,117,110,100,115,77,105,110,58,34,115,101,116,68,97,116,101,66,111,117,110,100,115,77,105,110,34,44,115,101,116,68,97,116,101,66,111,117,110,100,115,77,97,120,58,34,115,101,116,68,97,116,101,66,111,117,110,100,115,77,97,120,34,44,115,101,116,84,97,103,115,58,34,115,101,116,84,97,103,115,34,125,41,44,115,104,111,119,69,114,114,111,114,84,111,97,115,116,40,41,123,116,104,105,115,46,36,98,118,84,111,97,115,116,46,116,111,97,115,116,40,116,104,105,115,46,36,116,40,34,116,111,97,115,116,46,101,115,67,111,110,110,69,114,114,34,41,44,123,116,105,116,108,101,58,116,104,105,115,46,36,116,40,34,116,111,97,115,116,46,101,115,67,111,110,110,69,114,114,84,105,116,108,101,34,41,44,110,111,65,117,116,111,72,105,100,101,58,33,48,44,116,111,97,115,116,101,114,58,34,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,34,44,104,101,97,100,101,114,67,108,97,115,115,58,34,116,111,97,115,116,45,104,101,97,100,101,114,45,101,114,114,111,114,34,44,98,111,100,121,67,108,97,115,115,58,34,116,111,97,115,116,45,98,111,100,121,45,101,114,114,111,114,34,125,41,125,44,115,104,111,119,83,121,110,116,97,120,69,114,114,111,114,84,111,97,115,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,98,118,84,111,97,115,116,46,116,111,97,115,116,40,116,104,105,115,46,36,116,40,34,116,111,97,115,116,46,101,115,81,117,101,114,121,69,114,114,34,41,44,123,116,105,116,108,101,58,116,104,105,115,46,36,116,40,34,116,111,97,115,116,46,101,115,81,117,101,114,121,69,114,114,84,105,116,108,101,34,41,44,110,111,65,117,116,111,72,105,100,101,58,33,48,44,116,111,97,115,116,101,114,58,34,98,45,116,111,97,115,116,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,34,44,104,101,97,100,101,114,67,108,97,115,115,58,34,116,111,97,115,116,45,104,101,97,100,101,114,45,119,97,114,110,105,110,103,34,44,98,111,100,121,67,108,97,115,115,58,34,116,111,97,115,116,45,98,111,100,121,45,119,97,114,110,105,110,103,34,125,41,125,44,97,115,121,110,99,32,115,101,97,114,99,104,78,111,119,40,101,41,123,116,104,105,115,46,115,101,97,114,99,104,66,117,115,121,61,33,48,44,97,119,97,105,116,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,34,105,110,99,114,101,109,101,110,116,81,117,101,114,121,83,101,113,117,101,110,99,101,34,41,44,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,98,117,115,83,101,97,114,99,104,34,41,44,70,46,101,115,81,117,101,114,121,40,101,41,46,116,104,101,110,40,40,97,115,121,110,99,32,101,61,62,123,97,119,97,105,116,32,116,104,105,115,46,104,97,110,100,108,101,83,101,97,114,99,104,40,101,41,44,116,104,105,115,46,115,101,97,114,99,104,66,117,115,121,61,33,49,125,41,41,46,99,97,116,99,104,40,40,101,61,62,123,53,48,48,61,61,61,101,46,114,101,115,112,111,110,115,101,46,115,116,97,116,117,115,38,38,34,97,100,118,97,110,99,101,100,34,61,61,61,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,81,117,101,114,121,77,111,100,101,63,116,104,105,115,46,115,104,111,119,83,121,110,116,97,120,69,114,114,111,114,84,111,97,115,116,40,41,58,116,104,105,115,46,115,104,111,119,69,114,114,111,114,84,111,97,115,116,40,41,125,41,41,125,44,97,115,121,110,99,32,99,108,101,97,114,82,101,115,117,108,116,115,40,41,123,116,104,105,115,46,100,111,99,115,61,91,93,44,116,104,105,115,46,100,111,99,73,100,115,46,99,108,101,97,114,40,41,44,116,104,105,115,46,100,111,99,67,104,101,99,107,115,117,109,115,46,99,108,101,97,114,40,41,44,97,119,97,105,116,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,34,99,108,101,97,114,82,101,115,117,108,116,115,34,41,44,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,85,105,82,101,97,99,104,101,100,83,99,114,111,108,108,69,110,100,34,44,33,49,41,125,44,97,115,121,110,99,32,104,97,110,100,108,101,83,101,97,114,99,104,40,101,41,123,40,48,61,61,101,46,104,105,116,115,46,104,105,116,115,46,108,101,110,103,116,104,124,124,101,46,104,105,116,115,46,104,105,116,115,46,108,101,110,103,116,104,60,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,83,105,122,101,41,38,38,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,85,105,82,101,97,99,104,101,100,83,99,114,111,108,108,69,110,100,34,44,33,48,41,44,101,46,104,105,116,115,46,104,105,116,115,61,101,46,104,105,116,115,46,104,105,116,115,46,102,105,108,116,101,114,40,40,101,61,62,33,116,104,105,115,46,100,111,99,73,100,115,46,104,97,115,40,101,46,95,105,100,41,41,41,44,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,111,112,116,72,105,100,101,68,117,112,108,105,99,97,116,101,115,38,38,40,101,46,104,105,116,115,46,104,105,116,115,61,101,46,104,105,116,115,46,104,105,116,115,46,102,105,108,116,101,114,40,40,101,61,62,123,105,102,40,33,40,34,99,104,101,99,107,115,117,109,34,105,110,32,101,46,95,115,111,117,114,99,101,41,41,114,101,116,117,114,110,33,48,59,99,111,110,115,116,32,116,61,33,116,104,105,115,46,100,111,99,67,104,101,99,107,115,117,109,115,46,104,97,115,40,101,46,95,115,111,117,114,99,101,46,99,104,101,99,107,115,117,109,41,59,114,101,116,117,114,110,32,116,104,105,115,46,100,111,99,67,104,101,99,107,115,117,109,115,46,97,100,100,40,101,46,95,115,111,117,114,99,101,46,99,104,101,99,107,115,117,109,41,44,116,125,41,41,41,59,102,111,114,40,99,111,110,115,116,32,116,32,111,102,32,101,46,104,105,116,115,46,104,105,116,115,41,40,116,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,73,109,97,103,101,124,124,116,46,95,112,114,111,112,115,46,105,115,80,108,97,121,97,98,108,101,86,105,100,101,111,41,38,38,40,116,46,95,115,101,113,61,97,119,97,105,116,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,34,103,101,116,75,101,121,83,101,113,117,101,110,99,101,34,41,44,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,97,100,100,76,105,103,104,116,98,111,120,83,111,117,114,99,101,34,44,123,115,111,117,114,99,101,58,96,102,47,36,123,116,46,95,105,100,125,96,44,116,104,117,109,98,110,97,105,108,58,116,46,95,112,114,111,112,115,46,104,97,115,84,104,117,109,98,110,97,105,108,63,96,116,47,36,123,116,46,95,115,111,117,114,99,101,46,105,110,100,101,120,125,47,36,123,116,46,95,105,100,125,96,58,110,117,108,108,44,99,97,112,116,105,111,110,58,123,99,111,109,112,111,110,101,110,116,58,81,105,44,112,114,111,112,115,58,123,104,105,116,58,116,125,125,44,116,121,112,101,58,116,46,95,112,114,111,112,115,46,105,115,86,105,100,101,111,63,34,118,105,100,101,111,34,58,34,105,109,97,103,101,34,125,41,41,59,97,119,97,105,116,32,116,104,105,115,46,36,115,116,111,114,101,46,100,105,115,112,97,116,99,104,40,34,114,101,109,111,117,110,116,76,105,103,104,116,98,111,120,34,41,44,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,115,101,116,76,97,115,116,81,117,101,114,121,82,101,115,117,108,116,34,44,101,41,44,116,104,105,115,46,100,111,99,115,46,112,117,115,104,40,46,46,46,101,46,104,105,116,115,46,104,105,116,115,41,44,101,46,104,105,116,115,46,104,105,116,115,46,102,111,114,69,97,99,104,40,40,101,61,62,116,104,105,115,46,100,111,99,73,100,115,46,97,100,100,40,101,46,95,105,100,41,41,41,125,44,103,101,116,68,97,116,101,82,97,110,103,101,40,41,123,114,101,116,117,114,110,32,70,46,101,115,81,117,101,114,121,40,123,97,103,103,115,58,123,100,97,116,101,77,105,110,58,123,109,105,110,58,123,102,105,101,108,100,58,34,109,116,105,109,101,34,125,125,44,100,97,116,101,77,97,120,58,123,109,97,120,58,123,102,105,101,108,100,58,34,109,116,105,109,101,34,125,125,125,44,115,105,122,101,58,48,125,41,46,116,104,101,110,40,40,101,61,62,40,123,109,105,110,58,101,46,97,103,103,114,101,103,97,116,105,111,110,115,46,100,97,116,101,77,105,110,46,118,97,108,117,101,44,109,97,120,58,101,46,97,103,103,114,101,103,97,116,105,111,110,115,46,100,97,116,101,77,97,120,46,118,97,108,117,101,125,41,41,41,125,44,97,112,112,101,110,100,70,117,110,99,40,41,123,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,117,105,82,101,97,99,104,101,100,83,99,114,111,108,108,69,110,100,124,124,33,116,104,105,115,46,115,101,97,114,99,104,124,124,116,104,105,115,46,115,101,97,114,99,104,66,117,115,121,124,124,116,104,105,115,46,115,101,97,114,99,104,78,111,119,40,120,115,46,115,101,97,114,99,104,81,117,101,114,121,40,41,41,125,125,44,98,101,102,111,114,101,82,111,117,116,101,85,112,100,97,116,101,40,101,44,116,44,115,41,123,116,104,105,115,46,36,115,116,111,114,101,46,115,116,97,116,101,46,117,105,76,105,103,104,116,98,111,120,73,115,79,112,101,110,63,40,116,104,105,115,46,36,115,116,111,114,101,46,99,111,109,109,105,116,40,34,95,115,101,116,85,105,83,104,111,119,76,105,103,104,116,98,111,120,34,44,33,49,41,44,115,40,33,49,41,41,58,115,40,41,125,125,41,44,122,111,61,107,111,44,77,111,61,40,48,44,112,46,90,41,40,122,111,44,78,116,44,82,116,44,33,49,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,44,73,111,61,77,111,46,101,120,112,111,114,116,115,44,76,111,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,101,46,36,99,114,101,97,116,101,69,108,101,109,101,110,116,44,115,61,101,46,95,115,101,108,102,46,95,99,124,124,116,59,114,101,116,117,114,110,32,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,111,110,116,97,105,110,101,114,34,44,115,116,97,116,105,99,83,116,121,108,101,58,123,34,109,97,114,103,105,110,45,108,101,102,116,34,58,34,97,117,116,111,34,44,34,109,97,114,103,105,110,45,114,105,103,104,116,34,58,34,97,117,116,111,34,125,125,44,91,101,46,108,111,97,100,105,110,103,63,115,40,34,80,114,101,108,111,97,100,101,114,34,41,58,33,101,46,108,111,97,100,105,110,103,38,38,101,46,102,111,117,110,100,63,115,40,34,98,45,99,97,114,100,34,44,91,115,40,34,98,45,99,97,114,100,45,116,105,116,108,101,34,44,123,97,116,116,114,115,58,123,116,105,116,108,101,58,101,46,100,111,99,46,95,115,111,117,114,99,101,46,110,97,109,101,43,101,46,101,120,116,40,101,46,100,111,99,41,125,125,44,91,101,46,95,118,40,34,32,34,43,101,46,95,115,40,101,46,100,111,99,46,95,115,111,117,114,99,101,46,110,97,109,101,43,101,46,101,120,116,40,101,46,100,111,99,41,41,43,34,32,34,41,93,41,44,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,83,116,121,108,101,58,123,112,111,115,105,116,105,111,110,58,34,114,101,108,97,116,105,118,101,34,44,34,109,97,114,103,105,110,45,108,101,102,116,34,58,34,97,117,116,111,34,44,34,109,97,114,103,105,110,45,114,105,103,104,116,34,58,34,97,117,116,111,34,44,34,116,101,120,116,45,97,108,105,103,110,34,58,34,99,101,110,116,101,114,34,125,125,44,91,115,40,34,70,117,108,108,84,104,117,109,98,110,97,105,108,34,44,123,97,116,116,114,115,58,123,100,111,99,58,101,46,100,111,99,44,34,115,109,97,108,108,45,98,97,100,103,101,34,58,33,49,125,44,111,110,58,123,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,125,125,125,41,93,44,49,41,44,101,46,100,111,99,46,95,112,114,111,112,115,46,105,115,65,117,100,105,111,63,115,40,34,97,117,100,105,111,34,44,123,114,101,102,58,34,97,117,100,105,111,34,44,115,116,97,116,105,99,67,108,97,115,115,58,34,97,117,100,105,111,45,102,105,116,32,102,105,116,34,44,97,116,116,114,115,58,123,112,114,101,108,111,97,100,58,34,110,111,110,101,34,44,99,111,110,116,114,111,108,115,58,34,34,44,116,121,112,101,58,101,46,100,111,99,46,95,115,111,117,114,99,101,46,109,105,109,101,44,115,114,99,58,34,102,47,34,43,101,46,100,111,99,46,95,105,100,125,125,41,58,101,46,95,101,40,41,44,101,46,100,111,99,63,115,40,34,73,110,102,111,84,97,98,108,101,34,44,123,97,116,116,114,115,58,123,100,111,99,58,101,46,100,111,99,125,125,41,58,101,46,95,101,40,41,44,101,46,100,111,99,46,95,115,111,117,114,99,101,46,99,111,110,116,101,110,116,63,115,40,34,100,105,118,34,44,123,115,116,97,116,105,99,67,108,97,115,115,58,34,99,111,110,116,101,110,116,45,100,105,118,34,125,44,91,101,46,95,118,40,101,46,95,115,40,101,46,100,111,99,46,95,115,111,117,114,99,101,46,99,111,110,116,101,110,116,41,41,93,41,58,101,46,95,101,40,41,93,44,49,41,58,115,40,34,100,105,118,34,44,91,115,40,34,98,45,99,97,114,100,34,44,91,115,40,34,98,45,99,97,114,100,45,116,105,116,108,101,34,44,91,101,46,95,118,40,101,46,95,115,40,101,46,36,116,40,34,102,105,108,101,80,97,103,101,46,110,111,116,70,111,117,110,100,34,41,41,41,93,41,93,44,49,41,93,44,49,41,93,44,49,41,125,44,68,111,61,91,93,44,79,111,61,105,91,34,100,101,102,97,117,108,116,34,93,46,101,120,116,101,110,100,40,123,110,97,109,101,58,34,70,105,108,101,80,97,103,101,34,44,99,111,109,112,111,110,101,110,116,115,58,123,70,117,108,108,84,104,117,109,98,110,97,105,108,58,83,105,44,80,114,101,108,111,97,100,101,114,58,120,101,44,73,110,102,111,84,97,98,108,101,58,87,115,125,44,100,97,116,97,40,41,123,114,101,116,117,114,110,123,108,111,97,100,105,110,103,58,33,48,44,102,111,117,110,100,58,33,49,44,100,111,99,58,110,117,108,108,125,125,44,109,101,116,104,111,100,115,58,123,101,120,116,58,83,44,111,110,84,104,117,109,98,110,97,105,108,67,108,105,99,107,40,41,123,119,105,110,100,111,119,46,111,112,101,110,40,96,47,102,47,36,123,116,104,105,115,46,100,111,99,46,95,105,100,125,96,44,34,95,98,108,97,110,107,34,41,125,44,102,105,110,100,66,121,67,117,115,116,111,109,70,105,101,108,100,40,101,44,116,41,123,114,101,116,117,114,110,123,113,117,101,114,121,58,123,98,111,111,108,58,123,109,117,115,116,58,91,123,109,97,116,99,104,58,123,91,101,93,58,116,125,125,93,125,125,44,115,105,122,101,58,49,125,125,44,102,105,110,100,66,121,73,100,40,101,41,123,114,101,116,117,114,110,123,113,117,101,114,121,58,123,98,111,111,108,58,123,109,117,115,116,58,91,123,109,97,116,99,104,58,123,95,105,100,58,101,125,125,93,125,125,44,115,105,122,101,58,49,125,125,44,102,105,110,100,66,121,78,97,109,101,40,101,41,123,114,101,116,117,114,110,123,113,117,101,114,121,58,123,98,111,111,108,58,123,109,117,115,116,58,91,123,109,97,116,99,104,58,123,110,97,109,101,58,101,125,125,93,125,125,44,115,105,122,101,58,49,125,125,125,44,109,111,117,110,116,101,100,40,41,123,108,101,116,32,101,61,110,117,108,108,59,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,98,121,73,100,63,101,61,116,104,105,115,46,102,105,110,100,66,121,73,100,40,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,98,121,73,100,41,58,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,98,121,78,97,109,101,63,101,61,116,104,105,115,46,102,105,110,100,66,121,78,97,109,101,40,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,98,121,78,97,109,101,41,58,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,98,121,38,38,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,113,38,38,40,101,61,116,104,105,115,46,102,105,110,100,66,121,67,117,115,116,111,109,70,105,101,108,100,40,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,98,121,44,116,104,105,115,46,36,114,111,117,116,101,46,113,117,101,114,121,46,113,41,41,44,101,63,70,46,101,115,81,117,101,114,121,40,101,41,46,116,104,101,110,40,40,101,61,62,123,48,61,61,61,101,46,104,105,116,115,46,104,105,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,102,111,117,110,100,61,33,49,58,40,116,104,105,115,46,100,111,99,61,101,46,104,105,116,115,46,104,105,116,115,91,48,93,44,116,104,105,115,46,102,111,117,110,100,61,33,48,41,44,116,104,105,115,46,108,111,97,100,105,110,103,61,33,49,125,41,41,58,40,116,104,105,115,46,108,111,97,100,105,110,103,61,33,49,44,116,104,105,115,46,102,111,117,110,100,61,33,49,41,125,125,41,44,80,111,61,79,111,44,113,111,61,40,48,44,112,46,90,41,40,80,111,44,76,111,44,68,111,44,33,49,44,110,117,108,108,44,34,49,98,50,102,101,98,102,52,34,44,110,117,108,108,41,44,69,111,61,113,111,46,101,120,112,111,114,116,115,59,99,111,110,115,116,32,65,111,61,40,101,44,116,44,115,41,61,62,123,99,111,110,115,116,32,105,61,104,115,40,41,44,97,61,40,41,61,62,123,105,102,40,105,46,105,115,65,117,116,104,101,110,116,105,99,97,116,101,100,41,114,101,116,117,114,110,32,115,40,41,59,105,46,108,111,103,105,110,87,105,116,104,82,101,100,105,114,101,99,116,40,123,97,112,112,83,116,97,116,101,58,123,116,97,114,103,101,116,85,114,108,58,101,46,102,117,108,108,80,97,116,104,125,125,41,125,59,105,102,40,33,105,46,108,111,97,100,105,110,103,41,114,101,116,117,114,110,32,97,40,41,59,105,46,36,119,97,116,99,104,40,34,108,111,97,100,105,110,103,34,44,40,101,61,62,123,105,102,40,33,49,61,61,61,101,41,114,101,116,117,114,110,32,97,40,41,125,41,41,125,59,105,91,34,100,101,102,97,117,108,116,34,93,46,117,115,101,40,81,46,90,41,59,108,101,116,32,72,111,61,33,49,59,102,117,110,99,116,105,111,110,32,85,111,40,101,41,123,72,111,61,101,125,99,111,110,115,116,32,66,111,61,40,101,44,116,44,115,41,61,62,123,105,102,40,72,111,41,114,101,116,117,114,110,32,65,111,40,101,44,116,44,115,41,59,115,40,41,125,44,70,111,61,91,123,112,97,116,104,58,34,47,34,44,110,97,109,101,58,34,83,101,97,114,99,104,80,97,103,101,34,44,99,111,109,112,111,110,101,110,116,58,73,111,44,98,101,102,111,114,101,69,110,116,101,114,58,66,111,125,44,123,112,97,116,104,58,34,47,115,116,97,116,115,34,44,110,97,109,101,58,34,83,116,97,116,115,34,44,99,111,109,112,111,110,101,110,116,58,111,116,125,44,123,112,97,116,104,58,34,47,99,111,110,102,105,103,34,44,110,97,109,101,58,34,67,111,110,102,105,103,117,114,97,116,105,111,110,34,44,99,111,109,112,111,110,101,110,116,58,70,116,125,44,123,112,97,116,104,58,34,47,102,105,108,101,34,44,110,97,109,101,58,34,70,105,108,101,34,44,99,111,109,112,111,110,101,110,116,58,69,111,125,93,44,78,111,61,110,101,119,32,81,46,90,40,123,109,111,100,101,58,34,104,97,115,104,34,44,98,97,115,101,58,34,34,44,114,111,117,116,101,115,58,70,111,44,115,99,114,111,108,108,66,101,104,97,118,105,111,114,40,101,44,116,44,115,41,123,125,125,41,59,118,97,114,32,82,111,61,78,111,44,86,111,61,115,40,55,49,53,50,41,44,90,111,61,123,101,110,58,123,102,105,108,101,80,97,103,101,58,123,110,111,116,70,111,117,110,100,58,34,78,111,116,32,102,111,117,110,100,34,125,44,115,101,97,114,99,104,66,97,114,58,123,115,105,109,112,108,101,58,34,83,101,97,114,99,104,34,44,97,100,118,97,110,99,101,100,58,34,65,100,118,97,110,99,101,100,32,115,101,97,114,99,104,34,44,102,117,122,122,121,58,34,70,117,122,122,121,34,125,44,97,100,100,84,97,103,58,34,65,100,100,34,44,100,101,108,101,116,101,84,97,103,58,34,68,101,108,101,116,101,34,44,100,111,119,110,108,111,97,100,58,34,68,111,119,110,108,111,97,100,34,44,97,110,100,58,34,97,110,100,34,44,112,97,103,101,58,34,112,97,103,101,34,44,112,97,103,101,115,58,34,112,97,103,101,115,34,44,109,105,109,101,84,121,112,101,115,58,34,77,101,100,105,97,32,116,121,112,101,115,34,44,116,97,103,115,58,34,84,97,103,115,34,44,116,97,103,70,105,108,116,101,114,58,34,70,105,108,116,101,114,32,116,97,103,115,34,44,104,101,108,112,58,123,115,105,109,112,108,101,83,101,97,114,99,104,58,34,83,105,109,112,108,101,32,115,101,97,114,99,104,34,44,97,100,118,97,110,99,101,100,83,101,97,114,99,104,58,34,65,100,118,97,110,99,101,100,32,115,101,97,114,99,104,34,44,104,101,108,112,58,34,72,101,108,112,34,44,116,101,114,109,58,34,60,84,69,82,77,62,34,44,97,110,100,58,34,65,78,68,32,111,112,101,114,97,116,111,114,34,44,111,114,58,34,79,82,32,111,112,101,114,97,116,111,114,34,44,110,111,116,58,34,110,101,103,97,116,101,115,32,97,32,115,105,110,103,108,101,32,116,101,114,109,34,44,113,117,111,116,101,115,58,34,119,105,108,108,32,109,97,116,99,104,32,116,104,101,32,101,110,99,108,111,115,101,100,32,115,101,113,117,101,110,99,101,32,111,102,32,116,101,114,109,115,32,105,110,32,116,104,97,116,32,115,112,101,99,105,102,105,99,32,111,114,100,101,114,34,44,112,114,101,102,105,120,58,34,119,105,108,108,32,109,97,116,99,104,32,97,110,121,32,116,101,114,109,32,119,105,116,104,32,97,32,103,105,118,101,110,32,112,114,101,102,105,120,32,119,104,101,110,32,117,115,101,100,32,97,116,32,116,104,101,32,101,110,100,32,111,102,32,97,32,119,111,114,100,34,44,112,97,114,101,110,115,58,34,117,115,101,100,32,116,111,32,103,114,111,117,112,32,101,120,112,114,101,115,115,105,111,110,115,34,44,116,105,108,100,101,84,101,114,109,58,34,109,97,116,99,104,32,97,32,116,101,114,109,32,119,105,116,104,32,97,32,103,105,118,101,110,32,101,100,105,116,32,100,105,115,116,97,110,99,101,34,44,116,105,108,100,101,80,104,114,97,115,101,58,34,109,97,116,99,104,32,97,32,112,104,114,97,115,101,32,119,105,116,104,32,97,32,103,105,118,101,110,32,110,117,109,98,101,114,32,111,102,32,97,108,108,111,119,101,100,32,105,110,116,101,114,118,101,110,105,110,103,32,117,110,109,97,116,99,104,101,100,32,119,111,114,100,115,34,44,101,120,97,109,112,108,101,49,58,39,70,111,114,32,101,120,97,109,112,108,101,58,32,60,99,111,100,101,62,34,102,114,105,101,100,32,101,103,103,115,34,32,43,40,101,103,103,112,108,97,110,116,32,124,32,112,111,116,97,116,111,41,32,45,102,114,105,116,116,97,116,97,60,47,99,111,100,101,62,32,119,105,108,108,32,109,97,116,99,104,32,116,104,101,32,112,104,114,97,115,101,32,60,105,62,102,114,105,101,100,32,101,103,103,115,60,47,105,62,32,97,110,100,32,101,105,116,104,101,114,32,60,105,62,101,103,103,112,108,97,110,116,60,47,105,62,32,111,114,32,60,105,62,112,111,116,97,116,111,60,47,105,62,44,32,98,117,116,32,119,105,108,108,32,105,103,110,111,114,101,32,114,101,115,117,108,116,115,32,99,111,110,116,97,105,110,105,110,103,32,60,105,62,102,114,105,116,116,97,116,97,60,47,105,62,46,39,44,100,101,102,97,117,108,116,79,112,101,114,97,116,111,114,58,34,87,104,101,110,32,110,101,105,116,104,101,114,32,60,99,111,100,101,62,43,60,47,99,111,100,101,62,32,111,114,32,60,99,111,100,101,62,124,60,47,99,111,100,101,62,32,105,115,32,115,112,101,99,105,102,105,101,100,44,32,116,104,101,32,100,101,102,97,117,108,116,32,111,112,101,114,97,116,111,114,32,105,115,32,60,99,111,100,101,62,43,60,47,99,111,100,101,62,32,40,97,110,100,41,46,34,44,102,117,122,122,121,58,34,87,104,101,110,32,116,104,101,32,60,98,62,70,117,122,122,121,60,47,98,62,32,111,112,116,105,111,110,32,105,115,32,99,104,101,99,107,101,100,44,32,112,97,114,116,105,97,108,32,109,97,116,99,104,101,115,32,98,97,115,101,100,32,111,110,32,51,45,103,114,97,109,115,32,97,114,101,32,97,108,115,111,32,114,101,116,117,114,110,101,100,46,34,44,109,111,114,101,73,110,102,111,83,105,109,112,108,101,58,39,70,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,44,32,115,101,101,32,60,97,32,116,97,114,103,101,116,61,34,95,98,108,97,110,107,34,32,114,101,108,61,34,110,111,114,101,102,101,114,114,101,114,34,32,104,114,101,102,61,34,47,47,119,119,119,46,101,108,97,115,116,105,99,46,99,111,47,103,117,105,100,101,47,101,110,47,101,108,97,115,116,105,99,115,101,97,114,99,104,47,114,101,102,101,114,101,110,99,101,47,99,117,114,114,101,110,116,47,113,117,101,114,121,45,100,115,108,45,115,105,109,112,108,101,45,113,117,101,114,121,45,115,116,114,105,110,103,45,113,117,101,114,121,46,104,116,109,108,34,62,69,108,97,115,116,105,99,115,101,97,114,99,104,32,100,111,99,117,109,101,110,116,97,116,105,111,110,60,47,97,62,39,44,109,111,114,101,73,110,102,111,65,100,118,97,110,99,101,100,58,39,70,111,114,32,100,111,99,117,109,101,110,116,97,116,105,111,110,32,97,98,111,117,116,32,116,104,101,32,97,100,118,97,110,99,101,100,32,115,101,97,114,99,104,32,109,111,100,101,44,32,115,101,101,32,60,97,32,116,97,114,103,101,116,61,34,95,98,108,97,110,107,34,32,114,101,108,61,34,110,111,114,101,102,101,114,114,101,114,34,32,104,114,101,102,61,34,47,47,119,119,119,46,101,108,97,115,116,105,99,46,99,111,47,103,117,105,100,101,47,101,110,47,101,108,97,115,116,105,99,115,101,97,114,99,104,47,114,101,102,101,114,101,110,99,101,47,99,117,114,114,101,110,116,47,113,117,101,114,121,45,100,115,108,45,113,117,101,114,121,45,115,116,114,105,110,103,45,113,117,101,114,121,46,104,116,109,108,35,113,117,101,114,121,45,115,116,114,105,110,103,45,115,121,110,116,97,120,34,62,69,108,97,115,116,105,99,115,101,97,114,99,104,32,100,111,99,117,109,101,110,116,97,116,105,111,110,60,47,97,62,39,125,44,99,111,110,102,105,103,58,34,67,111,110,102,105,103,117,114,97,116,105,111,110,34,44,99,111,110,102,105,103,68,101,115,99,114,105,112,116,105,111,110,58,34,67,111,110,102,105,103,117,114,97,116,105,111,110,32,105,115,32,115,97,118,101,100,32,105,110,32,114,101,97,108,32,116,105,109,101,32,102,111,114,32,116,104,105,115,32,98,114,111,119,115,101,114,46,34,44,99,111,110,102,105,103,82,101,115,101,116,58,34,82,101,115,101,116,32,99,111,110,102,105,103,117,114,97,116,105,111,110,34,44,115,101,97,114,99,104,79,112,116,105,111,110,115,58,34,83,101,97,114,99,104,32,111,112,116,105,111,110,115,34,44,116,114,101,101,109,97,112,79,112,116,105,111,110,115,58,34,84,114,101,101,109,97,112,32,111,112,116,105,111,110,115,34,44,100,105,115,112,108,97,121,79,112,116,105,111,110,115,58,34,68,105,115,112,108,97,121,32,111,112,116,105,111,110,115,34,44,111,112,116,58,123,108,97,110,103,58,34,76,97,110,103,117,97,103,101,34,44,104,105,103,104,108,105,103,104,116,58,34,69,110,97,98,108,101,32,104,105,103,104,108,105,103,104,116,105,110,103,34,44,102,117,122,122,121,58,34,83,101,116,32,102,117,122,122,121,32,115,101,97,114,99,104,32,98,121,32,100,101,102,97,117,108,116,34,44,115,101,97,114,99,104,73,110,80,97,116,104,58,34,69,110,97,98,108,101,32,109,97,116,99,104,105,110,103,32,113,117,101,114,121,32,97,103,97,105,110,115,116,32,100,111,99,117,109,101,110,116,32,112,97,116,104,34,44,115,117,103,103,101,115,116,80,97,116,104,58,34,69,110,97,98,108,101,32,97,117,116,111,45,99,111,109,112,108,101,116,101,32,105,110,32,112,97,116,104,32,102,105,108,116,101,114,32,98,97,114,34,44,102,114,97,103,109,101,110,116,83,105,122,101,58,34,72,105,103,104,108,105,103,104,116,32,99,111,110,116,101,120,116,32,115,105,122,101,32,105,110,32,99,104,97,114,97,99,116,101,114,115,34,44,113,117,101,114,121,77,111,100,101,58,34,83,101,97,114,99,104,32,109,111,100,101,34,44,100,105,115,112,108,97,121,77,111,100,101,58,34,68,105,115,112,108,97,121,34,44,99,111,108,117,109,110,115,58,34,67,111,108,117,109,110,32,99,111,117,110,116,34,44,116,114,101,101,109,97,112,84,121,112,101,58,34,84,114,101,101,109,97,112,32,116,121,112,101,34,44,116,114,101,101,109,97,112,84,105,108,105,110,103,58,34,84,114,101,101,109,97,112,32,116,105,108,105,110,103,34,44,116,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,58,34,84,114,101,101,109,97,112,32,99,111,108,111,114,32,103,114,111,117,112,105,110,103,32,100,101,112,116,104,32,40,102,108,97,116,41,34,44,116,114,101,101,109,97,112,67,111,108,111,114,58,34,84,114,101,101,109,97,112,32,99,111,108,111,114,32,40,99,97,115,99,97,100,101,100,41,34,44,116,114,101,101,109,97,112,83,105,122,101,58,34,84,114,101,101,109,97,112,32,115,105,122,101,34,44,116,104,101,109,101,58,34,84,104,101,109,101,34,44,108,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,58,34,68,111,32,110,111,116,32,112,114,101,108,111,97,100,32,102,117,108,108,45,115,105,122,101,32,105,109,97,103,101,115,32,102,111,114,32,97,100,106,97,99,101,110,116,32,115,108,105,100,101,115,32,105,110,32,105,109,97,103,101,32,118,105,101,119,101,114,46,34,44,115,108,105,100,101,68,117,114,97,116,105,111,110,58,34,83,108,105,100,101,32,100,117,114,97,116,105,111,110,34,44,114,101,115,117,108,116,83,105,122,101,58,34,78,117,109,98,101,114,32,111,102,32,114,101,115,117,108,116,115,32,112,101,114,32,112,97,103,101,34,44,116,97,103,79,114,79,112,101,114,97,116,111,114,58,34,85,115,101,32,79,82,32,111,112,101,114,97,116,111,114,32,119,104,101,110,32,115,112,101,99,105,102,121,105,110,103,32,109,117,108,116,105,112,108,101,32,116,97,103,115,46,34,44,104,105,100,101,68,117,112,108,105,99,97,116,101,115,58,34,72,105,100,101,32,100,117,112,108,105,99,97,116,101,32,114,101,115,117,108,116,115,32,98,97,115,101,100,32,111,110,32,99,104,101,99,107,115,117,109,34,44,104,105,100,101,76,101,103,97,99,121,58,34,72,105,100,101,32,116,104,101,32,39,108,101,103,97,99,121,69,83,39,32,69,108,97,115,116,105,99,115,101,97,114,99,104,32,110,111,116,105,99,101,34,44,117,112,100,97,116,101,77,105,109,101,77,97,112,58,34,85,112,100,97,116,101,32,116,104,101,32,77,101,100,105,97,32,84,121,112,101,115,32,116,114,101,101,32,105,110,32,114,101,97,108,32,116,105,109,101,34,44,117,115,101,68,97,116,101,80,105,99,107,101,114,58,34,85,115,101,32,97,32,68,97,116,101,32,80,105,99,107,101,114,32,99,111,109,112,111,110,101,110,116,32,114,97,116,104,101,114,32,116,104,97,110,32,97,32,115,108,105,100,101,114,34,44,118,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,58,34,86,105,100,101,111,32,112,114,101,118,105,101,119,32,102,114,97,109,101,32,100,117,114,97,116,105,111,110,32,105,110,32,109,115,34,44,115,105,109,112,108,101,76,105,103,104,116,98,111,120,58,34,68,105,115,97,98,108,101,32,97,110,105,109,97,116,105,111,110,115,32,105,110,32,105,109,97,103,101,32,118,105,101,119,101,114,34,44,115,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,58,34,68,105,115,112,108,97,121,32,116,104,101,32,116,97,103,32,102,105,108,116,101,114,32,98,97,114,34,125,44,113,117,101,114,121,77,111,100,101,58,123,115,105,109,112,108,101,58,34,83,105,109,112,108,101,34,44,97,100,118,97,110,99,101,100,58,34,65,100,118,97,110,99,101,100,34,125,44,108,97,110,103,58,123,101,110,58,34,69,110,103,108,105,115,104,34,44,102,114,58,34,70,114,97,110,195,167,97,105,115,34,44,34,122,104,45,67,78,34,58,34,231,174,128,228,189,147,228,184,173,230,150,135,34,125,44,100,105,115,112,108,97,121,77,111,100,101,58,123,103,114,105,100,58,34,71,114,105,100,34,44,108,105,115,116,58,34,76,105,115,116,34,125,44,99,111,108,117,109,110,115,58,123,97,117,116,111,58,34,65,117,116,111,34,125,44,116,114,101,101,109,97,112,84,121,112,101,58,123,99,97,115,99,97,100,101,100,58,34,67,97,115,99,97,100,101,100,34,44,102,108,97,116,58,34,70,108,97,116,32,40,99,111,109,112,97,99,116,41,34,125,44,116,114,101,101,109,97,112,83,105,122,101,58,123,115,109,97,108,108,58,34,83,109,97,108,108,34,44,109,101,100,105,117,109,58,34,77,101,100,105,117,109,34,44,108,97,114,103,101,58,34,76,97,114,103,101,34,44,120,76,97,114,103,101,58,34,120,76,97,114,103,101,34,44,120,120,76,97,114,103,101,58,34,120,120,76,97,114,103,101,34,44,99,117,115,116,111,109,58,34,67,117,115,116,111,109,34,125,44,116,114,101,101,109,97,112,84,105,108,105,110,103,58,123,98,105,110,97,114,121,58,34,66,105,110,97,114,121,34,44,115,113,117,97,114,105,102,121,58,34,83,113,117,97,114,105,102,121,34,44,115,108,105,99,101,58,34,83,108,105,99,101,34,44,100,105,99,101,58,34,68,105,99,101,34,44,115,108,105,99,101,68,105,99,101,58,34,83,108,105,99,101,32,38,32,68,105,99,101,34,125,44,116,104,101,109,101,58,123,108,105,103,104,116,58,34,76,105,103,104,116,34,44,98,108,97,99,107,58,34,66,108,97,99,107,34,125,44,104,105,116,58,34,104,105,116,34,44,104,105,116,115,58,34,104,105,116,115,34,44,100,101,116,97,105,108,115,58,34,68,101,116,97,105,108,115,34,44,115,116,97,116,115,58,34,83,116,97,116,115,34,44,113,117,101,114,121,84,105,109,101,58,34,81,117,101,114,121,32,116,105,109,101,34,44,116,111,116,97,108,83,105,122,101,58,34,84,111,116,97,108,32,115,105,122,101,34,44,112,97,116,104,66,97,114,58,123,112,108,97,99,101,104,111,108,100,101,114,58,34,70,105,108,116,101,114,32,112,97,116,104,34,44,109,111,100,97,108,84,105,116,108,101,58,34,83,101,108,101,99,116,32,112,97,116,104,34,125,44,100,101,98,117,103,58,34,68,101,98,117,103,32,105,110,102,111,114,109,97,116,105,111,110,34,44,100,101,98,117,103,68,101,115,99,114,105,112,116,105,111,110,58,34,73,110,102,111,114,109,97,116,105,111,110,32,117,115,101,102,117,108,32,102,111,114,32,100,101,98,117,103,103,105,110,103,46,32,73,102,32,121,111,117,32,101,110,99,111,117,110,116,101,114,32,98,117,103,115,32,111,114,32,104,97,118,101,32,115,117,103,103,101,115,116,105,111,110,115,32,102,111,114,32,110,101,119,32,102,101,97,116,117,114,101,115,44,32,112,108,101,97,115,101,32,115,117,98,109,105,116,32,97,32,110,101,119,32,105,115,115,117,101,32,60,97,32,104,114,101,102,61,39,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,115,105,109,111,110,57,56,55,47,115,105,115,116,50,47,105,115,115,117,101,115,47,110,101,119,47,99,104,111,111,115,101,39,62,104,101,114,101,60,47,97,62,46,34,44,116,97,103,108,105,110,101,58,34,84,97,103,108,105,110,101,34,44,116,111,97,115,116,58,123,101,115,67,111,110,110,69,114,114,84,105,116,108,101,58,34,69,108,97,115,116,105,99,115,101,97,114,99,104,32,99,111,110,110,101,99,116,105,111,110,32,101,114,114,111,114,34,44,101,115,67,111,110,110,69,114,114,58,34,115,105,115,116,50,32,119,101,98,32,109,111,100,117,108,101,32,101,110,99,111,117,110,116,101,114,101,100,32,97,110,32,101,114,114,111,114,32,119,104,105,108,101,32,99,111,110,110,101,99,116,105,110,103,32,116,111,32,69,108,97,115,116,105,99,115,101,97,114,99,104,46,32,83,101,101,32,115,101,114,118,101,114,32,108,111,103,115,32,102,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,46,34,44,101,115,81,117,101,114,121,69,114,114,84,105,116,108,101,58,34,81,117,101,114,121,32,101,114,114,111,114,34,44,101,115,81,117,101,114,121,69,114,114,58,34,67,111,117,108,100,32,110,111,116,32,112,97,114,115,101,32,111,114,32,101,120,101,99,117,116,101,32,113,117,101,114,121,44,32,112,108,101,97,115,101,32,99,104,101,99,107,32,116,104,101,32,65,100,118,97,110,99,101,100,32,115,101,97,114,99,104,32,100,111,99,117,109,101,110,116,97,116,105,111,110,46,32,83,101,101,32,115,101,114,118,101,114,32,108,111,103,115,32,102,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,46,34,44,100,117,112,101,84,97,103,84,105,116,108,101,58,34,68,117,112,108,105,99,97,116,101,32,116,97,103,34,44,100,117,112,101,84,97,103,58,34,84,104,105,115,32,116,97,103,32,97,108,114,101,97,100,121,32,101,120,105,115,116,115,32,102,111,114,32,116,104,105,115,32,100,111,99,117,109,101,110,116,46,34,44,99,111,112,105,101,100,84,111,67,108,105,112,98,111,97,114,100,58,34,67,111,112,105,101,100,32,116,111,32,99,108,105,112,98,111,97,114,100,34,125,44,115,97,118,101,84,97,103,77,111,100,97,108,84,105,116,108,101,58,34,65,100,100,32,116,97,103,34,44,115,97,118,101,84,97,103,80,108,97,99,101,104,111,108,100,101,114,58,34,84,97,103,32,110,97,109,101,34,44,99,111,110,102,105,114,109,58,34,67,111,110,102,105,114,109,34,44,105,110,100,101,120,80,105,99,107,101,114,80,108,97,99,101,104,111,108,100,101,114,58,34,83,101,108,101,99,116,32,97,110,32,105,110,100,101,120,34,44,115,111,114,116,58,123,114,101,108,101,118,97,110,99,101,58,34,82,101,108,101,118,97,110,99,101,34,44,100,97,116,101,65,115,99,58,34,68,97,116,101,32,40,79,108,100,101,114,32,102,105,114,115,116,41,34,44,100,97,116,101,68,101,115,99,58,34,68,97,116,101,32,40,78,101,119,101,114,32,102,105,114,115,116,41,34,44,115,105,122,101,65,115,99,58,34,83,105,122,101,32,40,83,109,97,108,108,101,114,32,102,105,114,115,116,41,34,44,115,105,122,101,68,101,115,99,58,34,83,105,122,101,32,40,76,97,114,103,101,114,32,102,105,114,115,116,41,34,44,110,97,109,101,65,115,99,58,34,78,97,109,101,32,40,65,45,122,41,34,44,110,97,109,101,68,101,115,99,58,34,78,97,109,101,32,40,90,45,97,41,34,44,114,97,110,100,111,109,58,34,82,97,110,100,111,109,34,125,44,100,51,58,123,109,105,109,101,67,111,117,110,116,58,34,70,105,108,101,32,99,111,117,110,116,32,100,105,115,116,114,105,98,117,116,105,111,110,32,98,121,32,109,101,100,105,97,32,116,121,112,101,34,44,109,105,109,101,83,105,122,101,58,34,83,105,122,101,32,100,105,115,116,114,105,98,117,116,105,111,110,32,98,121,32,109,101,100,105,97,32,116,121,112,101,34,44,100,97,116,101,72,105,115,116,111,103,114,97,109,58,34,70,105,108,101,32,109,111,100,105,102,105,99,97,116,105,111,110,32,116,105,109,101,32,100,105,115,116,114,105,98,117,116,105,111,110,34,44,115,105,122,101,72,105,115,116,111,103,114,97,109,58,34,70,105,108,101,32,115,105,122,101,32,100,105,115,116,114,105,98,117,116,105,111,110,34,125,44,105,110,100,101,120,80,105,99,107,101,114,58,123,115,101,108,101,99,116,78,111,110,101,58,34,83,101,108,101,99,116,32,78,111,110,101,34,44,115,101,108,101,99,116,65,108,108,58,34,83,101,108,101,99,116,32,65,108,108,34,44,115,101,108,101,99,116,101,100,73,110,100,101,120,58,34,115,101,108,101,99,116,101,100,32,105,110,100,101,120,34,44,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,34,115,101,108,101,99,116,101,100,32,105,110,100,105,99,101,115,34,125,125,44,102,114,58,123,102,105,108,101,80,97,103,101,58,123,110,111,116,70,111,117,110,100,58,34,70,105,99,104,101,114,32,105,110,116,114,111,117,118,97,98,108,101,34,125,44,115,101,97,114,99,104,66,97,114,58,123,115,105,109,112,108,101,58,34,82,101,99,104,101,114,99,104,101,34,44,97,100,118,97,110,99,101,100,58,34,82,101,99,104,101,114,99,104,101,32,97,118,97,110,99,195,169,101,34,44,102,117,122,122,121,58,34,65,112,112,114,111,120,105,109,97,116,105,102,34,125,44,97,100,100,84,97,103,58,34,65,106,111,117,116,101,114,34,44,100,101,108,101,116,101,84,97,103,58,34,83,117,112,112,114,105,109,101,114,34,44,100,111,119,110,108,111,97,100,58,34,84,195,169,108,195,169,99,104,97,114,103,101,114,34,44,97,110,100,58,34,101,116,34,44,112,97,103,101,58,34,112,97,103,101,34,44,112,97,103,101,115,58,34,112,97,103,101,115,34,44,109,105,109,101,84,121,112,101,115,58,34,84,121,112,101,115,32,100,101,32,109,195,169,100,105,97,115,34,44,116,97,103,115,58,34,84,97,103,115,34,44,116,97,103,70,105,108,116,101,114,58,34,70,105,108,116,114,101,114,32,108,101,115,32,116,97,103,115,34,44,104,101,108,112,58,123,115,105,109,112,108,101,83,101,97,114,99,104,58,34,82,101,99,104,101,114,99,104,101,32,115,105,109,112,108,101,34,44,97,100,118,97,110,99,101,100,83,101,97,114,99,104,58,34,82,101,99,104,101,114,99,104,101,32,97,118,97,110,99,195,169,101,34,44,104,101,108,112,58,34,65,105,100,101,34,44,116,101,114,109,58,34,60,84,69,82,77,69,62,34,44,97,110,100,58,34,111,112,195,169,114,97,116,111,114,32,69,84,34,44,111,114,58,34,111,112,195,169,114,97,116,111,114,32,79,85,34,44,110,111,116,58,34,101,120,99,108,117,116,32,117,110,32,116,101,114,109,101,34,44,113,117,111,116,101,115,58,34,114,101,99,104,101,114,99,104,101,32,108,97,32,115,195,169,113,117,101,110,99,101,32,100,101,32,116,101,114,109,101,115,32,100,97,110,115,32,99,101,116,32,111,114,100,114,101,32,115,112,195,169,99,105,102,105,113,117,101,46,34,44,112,114,101,102,105,120,58,34,108,111,114,115,113,117,39,117,116,105,108,105,115,195,169,32,195,160,32,108,97,32,102,105,110,32,100,39,117,110,32,109,111,116,44,32,114,101,99,104,101,114,99,104,101,32,116,111,117,115,32,108,101,115,32,116,101,114,109,101,115,32,97,118,101,99,32,108,101,32,112,114,195,169,102,105,120,101,32,100,111,110,110,195,169,46,34,44,112,97,114,101,110,115,58,34,117,116,105,108,105,115,195,169,32,112,111,117,114,32,114,101,103,114,111,117,112,101,114,32,100,101,115,32,101,120,112,114,101,115,115,105,111,110,115,34,44,116,105,108,100,101,84,101,114,109,58,34,114,101,99,104,101,114,99,104,101,32,117,110,32,116,101,114,109,101,32,97,118,101,99,32,117,110,101,32,100,105,115,116,97,110,99,101,32,100,39,195,169,100,105,116,105,111,110,32,100,111,110,110,195,169,101,34,44,116,105,108,100,101,80,104,114,97,115,101,58,34,114,101,99,104,101,114,99,104,101,32,117,110,101,32,112,104,114,97,115,101,32,97,118,101,99,32,117,110,32,110,111,109,98,114,101,32,100,111,110,110,195,169,32,100,101,32,109,111,116,115,32,105,110,116,101,114,109,195,169,100,105,97,105,114,101,115,32,116,111,108,195,169,114,195,169,115,34,44,101,120,97,109,112,108,101,49,58,39,80,97,114,32,101,120,101,109,112,108,101,58,32,60,99,111,100,101,62,34,102,114,105,101,100,32,101,103,103,115,34,32,43,40,101,103,103,112,108,97,110,116,32,124,32,112,111,116,97,116,111,41,32,45,102,114,105,116,116,97,116,97,60,47,99,111,100,101,62,32,118,97,32,114,101,99,104,101,114,99,104,101,114,32,108,97,32,112,104,114,97,115,101,32,60,105,62,102,114,105,101,100,32,101,103,103,115,60,47,105,62,32,101,116,32,115,111,105,116,32,60,105,62,101,103,103,112,108,97,110,116,60,47,105,62,32,111,117,32,60,105,62,112,111,116,97,116,111,60,47,105,62,44,32,109,97,105,115,32,118,97,115,32,101,120,108,117,114,101,32,108,101,115,32,114,195,169,115,117,108,116,97,116,115,32,113,117,105,32,99,111,110,116,105,101,110,110,101,110,116,32,60,105,62,102,114,105,116,116,97,116,97,60,47,105,62,46,39,44,100,101,102,97,117,108,116,79,112,101,114,97,116,111,114,58,34,76,111,114,115,113,117,39,97,117,99,117,110,32,100,101,115,32,111,112,195,169,114,97,116,101,117,114,115,32,60,99,111,100,101,62,43,60,47,99,111,100,101,62,32,111,117,32,60,99,111,100,101,62,124,60,47,99,111,100,101,62,32,115,111,110,116,32,115,112,195,169,99,105,102,105,195,169,115,44,32,108,39,111,112,195,169,114,97,116,101,117,114,32,112,97,114,32,100,195,169,102,97,117,116,32,101,115,116,32,60,99,111,100,101,62,43,60,47,99,111,100,101,62,32,40,69,84,41,46,34,44,102,117,122,122,121,58,34,76,111,114,115,113,117,101,32,108,39,111,112,116,105,111,110,32,60,98,62,65,112,112,114,111,120,105,109,97,116,105,102,60,47,98,62,32,101,115,116,32,97,99,116,105,118,195,169,101,44,32,108,101,115,32,114,195,169,115,117,108,116,97,116,115,32,112,97,114,116,105,101,108,115,32,98,97,115,195,169,115,32,115,117,114,32,108,101,115,32,116,114,105,103,114,97,109,109,101,115,32,115,111,110,116,32,195,169,103,97,108,101,109,101,110,116,32,105,110,99,108,117,115,46,34,44,109,111,114,101,73,110,102,111,83,105,109,112,108,101,58,39,80,111,117,114,32,112,108,117,115,32,100,92,39,105,110,102,111,114,109,97,116,105,111,110,44,32,118,111,105,114,32,60,97,32,116,97,114,103,101,116,61,34,95,98,108,97,110,107,34,32,114,101,108,61,34,110,111,114,101,102,101,114,114,101,114,34,32,104,114,101,102,61,34,47,47,119,119,119,46,101,108,97,115,116,105,99,46,99,111,47,103,117,105,100,101,47,101,110,47,101,108,97,115,116,105,99,115,101,97,114,99,104,47,114,101,102,101,114,101,110,99,101,47,99,117,114,114,101,110,116,47,113,117,101,114,121,45,100,115,108,45,115,105,109,112,108,101,45,113,117,101,114,121,45,115,116,114,105,110,103,45,113,117,101,114,121,46,104,116,109,108,34,62,100,111,99,117,109,101,110,116,97,116,105,111,110,32,69,108,97,115,116,105,99,115,101,97,114,99,104,60,47,97,62,39,44,109,111,114,101,73,110,102,111,65,100,118,97,110,99,101,100,58,39,80,111,117,114,32,112,108,117,115,32,100,92,39,105,110,102,111,114,109,97,116,105,111,110,32,115,117,114,32,108,97,32,114,101,99,104,101,114,99,104,101,32,97,118,97,110,99,195,169,101,44,32,118,111,105,114,32,60,97,32,116,97,114,103,101,116,61,34,95,98,108,97,110,107,34,32,114,101,108,61,34,110,111,114,101,102,101,114,114,101,114,34,32,104,114,101,102,61,34,47,47,119,119,119,46,101,108,97,115,116,105,99,46,99,111,47,103,117,105,100,101,47,101,110,47,101,108,97,115,116,105,99,115,101,97,114,99,104,47,114,101,102,101,114,101,110,99,101,47,99,117,114,114,101,110,116,47,113,117,101,114,121,45,100,115,108,45,113,117,101,114,121,45,115,116,114,105,110,103,45,113,117,101,114,121,46,104,116,109,108,35,113,117,101,114,121,45,115,116,114,105,110,103,45,115,121,110,116,97,120,34,62,100,111,99,117,109,101,110,116,97,116,105,111,110,32,69,108,97,115,116,105,99,115,101,97,114,99,104,60,47,97,62,39,125,44,99,111,110,102,105,103,58,34,67,111,110,102,105,103,117,114,97,116,105,111,110,34,44,99,111,110,102,105,103,68,101,115,99,114,105,112,116,105,111,110,58,34,76,97,32,99,111,110,102,105,103,117,114,97,116,105,111,110,32,101,115,116,32,101,110,114,101,103,105,115,116,114,195,169,101,32,101,110,32,116,101,109,112,115,32,114,195,169,101,108,32,112,111,117,114,32,99,101,32,110,97,118,105,103,97,116,101,117,114,46,34,44,99,111,110,102,105,103,82,101,115,101,116,58,34,82,195,169,105,110,105,116,105,97,108,105,115,101,114,32,108,97,32,99,111,110,102,105,103,117,114,97,116,105,111,110,34,44,115,101,97,114,99,104,79,112,116,105,111,110,115,58,34,79,112,116,105,111,110,115,32,100,101,32,114,101,99,104,101,114,99,104,101,34,44,116,114,101,101,109,97,112,79,112,116,105,111,110,115,58,34,79,112,116,105,111,110,115,32,100,117,32,84,114,101,101,109,97,112,34,44,100,105,115,112,108,97,121,79,112,116,105,111,110,115,58,34,79,112,116,105,111,110,115,32,100,39,97,102,102,105,99,104,97,103,101,34,44,111,112,116,58,123,108,97,110,103,58,34,76,97,110,103,117,101,34,44,104,105,103,104,108,105,103,104,116,58,34,65,99,116,105,118,101,114,32,108,101,32,115,117,114,108,105,103,110,97,103,101,34,44,102,117,122,122,121,58,34,65,99,116,105,118,101,114,32,108,97,32,114,101,99,104,101,114,99,104,101,32,97,112,112,114,111,120,105,109,97,116,105,118,101,32,112,97,114,32,100,195,169,102,97,117,116,34,44,115,101,97,114,99,104,73,110,80,97,116,104,58,34,65,99,116,105,118,101,114,32,108,97,32,114,101,99,104,101,114,99,104,101,32,100,97,110,115,32,108,101,32,99,104,101,109,105,110,32,100,101,115,32,100,111,99,117,109,101,110,116,115,34,44,115,117,103,103,101,115,116,80,97,116,104,58,34,65,99,116,105,118,101,114,32,108,39,97,117,116,111,99,111,109,112,108,195,169,116,105,111,110,32,100,97,110,115,32,108,97,32,98,97,114,114,101,32,100,101,32,102,105,108,116,114,101,32,100,101,32,99,104,101,109,105,110,34,44,102,114,97,103,109,101,110,116,83,105,122,101,58,34,76,111,110,103,117,101,117,114,32,100,117,32,99,111,110,116,101,120,116,101,32,100,101,32,115,117,114,108,105,103,110,97,103,101,44,32,101,110,32,110,111,109,98,114,101,32,100,101,32,99,97,114,97,99,116,195,168,114,101,115,34,44,113,117,101,114,121,77,111,100,101,58,34,77,111,100,101,32,100,101,32,114,101,99,104,101,114,99,104,101,34,44,100,105,115,112,108,97,121,77,111,100,101,58,34,65,102,102,105,99,104,97,103,101,34,44,99,111,108,117,109,110,115,58,34,78,111,109,98,114,101,32,100,101,32,99,111,108,111,110,110,101,115,34,44,116,114,101,101,109,97,112,84,121,112,101,58,34,84,121,112,101,32,100,101,32,84,114,101,101,109,97,112,34,44,116,114,101,101,109,97,112,84,105,108,105,110,103,58,34,84,114,101,101,109,97,112,32,116,105,108,105,110,103,34,44,116,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,58,34,71,114,111,117,112,97,103,101,32,100,101,32,99,111,117,108,101,117,114,32,100,117,32,84,114,101,101,109,97,112,32,40,112,108,97,116,41,34,44,116,114,101,101,109,97,112,67,111,108,111,114,58,34,67,111,117,108,101,117,114,32,100,117,32,84,114,101,101,109,97,112,32,40,101,110,32,99,97,115,99,97,100,101,41,34,44,116,114,101,101,109,97,112,83,105,122,101,58,34,84,97,105,108,108,101,32,100,117,32,84,114,101,101,109,97,112,34,44,116,104,101,109,101,58,34,84,104,195,168,109,101,34,44,108,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,58,34,68,195,169,115,97,99,116,105,118,101,114,32,108,101,32,99,104,97,114,103,101,109,101,110,116,32,100,101,115,32,100,105,97,112,111,115,105,116,105,118,101,115,32,97,100,106,97,99,101,110,116,101,115,32,112,111,117,114,32,108,101,32,118,105,115,117,97,108,105,115,101,117,114,32,100,39,105,109,97,103,101,115,34,44,115,108,105,100,101,68,117,114,97,116,105,111,110,58,34,68,117,114,195,169,101,32,100,101,115,32,100,105,97,112,111,115,105,116,105,118,101,115,34,44,114,101,115,117,108,116,83,105,122,101,58,34,78,111,109,98,114,101,32,100,101,32,114,195,169,115,117,108,116,97,116,115,32,112,97,114,32,112,97,103,101,34,44,116,97,103,79,114,79,112,101,114,97,116,111,114,58,34,85,116,105,108,105,115,101,114,32,108,39,111,112,195,169,114,97,116,101,117,114,32,79,85,32,108,111,114,115,32,100,101,32,108,97,32,115,112,195,169,99,105,102,105,99,97,116,105,111,110,32,100,101,32,112,108,117,115,105,101,117,114,115,32,116,97,103,115,34,44,104,105,100,101,68,117,112,108,105,99,97,116,101,115,58,34,77,97,115,113,117,101,114,32,108,101,115,32,114,195,169,115,117,108,116,97,116,115,32,101,110,32,100,111,117,98,108,101,34,44,104,105,100,101,76,101,103,97,99,121,58,34,77,97,115,113,117,101,114,32,108,97,32,110,111,116,105,99,101,32,39,108,101,103,97,99,121,69,83,39,32,69,108,97,115,116,105,99,115,101,97,114,99,104,34,44,117,112,100,97,116,101,77,105,109,101,77,97,112,58,34,77,101,116,116,114,101,32,195,160,32,106,111,117,114,32,108,39,97,114,98,114,101,32,100,101,32,84,121,112,101,115,32,100,101,32,109,195,169,100,105,97,115,32,101,110,32,116,101,109,112,115,32,114,195,169,101,108,34,44,117,115,101,68,97,116,101,80,105,99,107,101,114,58,34,65,102,102,105,99,104,101,114,32,117,110,32,99,111,109,112,111,115,97,110,116,32,194,171,32,68,97,116,101,32,80,105,99,107,101,114,32,194,187,32,112,108,117,116,195,180,116,32,113,117,39,117,110,32,115,108,105,100,101,114,34,44,118,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,58,34,68,117,114,195,169,101,32,100,101,115,32,105,109,97,103,101,115,32,100,39,97,112,101,114,195,167,117,32,118,105,100,101,111,32,101,110,32,109,105,108,108,105,115,101,99,111,110,100,101,115,34,44,115,105,109,112,108,101,76,105,103,104,116,98,111,120,58,34,68,195,169,115,97,99,116,105,118,101,114,32,108,101,115,32,97,110,105,109,97,116,105,111,110,115,32,100,117,32,118,105,115,117,97,108,105,115,101,117,114,32,100,39,105,109,97,103,101,115,34,44,115,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,58,34,65,102,102,105,99,104,101,114,32,108,101,32,102,105,108,116,114,101,32,100,97,110,115,32,108,39,111,110,103,108,101,116,32,84,97,103,115,34,125,44,113,117,101,114,121,77,111,100,101,58,123,115,105,109,112,108,101,58,34,83,105,109,112,108,101,34,44,97,100,118,97,110,99,101,100,58,34,65,118,97,110,99,195,169,34,125,44,108,97,110,103,58,123,101,110,58,34,69,110,103,108,105,115,104,34,44,102,114,58,34,70,114,97,110,195,167,97,105,115,34,44,34,122,104,45,67,78,34,58,34,231,174,128,228,189,147,228,184,173,230,150,135,34,125,44,100,105,115,112,108,97,121,77,111,100,101,58,123,103,114,105,100,58,34,71,114,105,108,108,101,34,44,108,105,115,116,58,34,76,105,115,116,101,34,125,44,99,111,108,117,109,110,115,58,123,97,117,116,111,58,34,65,117,116,111,34,125,44,116,114,101,101,109,97,112,84,121,112,101,58,123,99,97,115,99,97,100,101,100,58,34,69,110,32,99,97,115,99,97,100,101,34,44,102,108,97,116,58,34,80,108,97,116,32,40,99,111,109,112,97,99,116,41,34,125,44,116,114,101,101,109,97,112,83,105,122,101,58,123,115,109,97,108,108,58,34,80,101,116,105,116,34,44,109,101,100,105,117,109,58,34,77,111,121,101,110,34,44,108,97,114,103,101,58,34,71,114,97,110,100,34,44,120,76,97,114,103,101,58,34,120,71,114,97,110,100,34,44,120,120,76,97,114,103,101,58,34,120,120,71,114,97,110,100,34,44,99,117,115,116,111,109,58,34,80,101,114,115,111,110,110,97,108,105,115,195,169,34,125,44,116,114,101,101,109,97,112,84,105,108,105,110,103,58,123,98,105,110,97,114,121,58,34,66,105,110,97,114,121,34,44,115,113,117,97,114,105,102,121,58,34,83,113,117,97,114,105,102,121,34,44,115,108,105,99,101,58,34,83,108,105,99,101,34,44,100,105,99,101,58,34,68,105,99,101,34,44,115,108,105,99,101,68,105,99,101,58,34,83,108,105,99,101,32,38,32,68,105,99,101,34,125,44,116,104,101,109,101,58,123,108,105,103,104,116,58,34,67,108,97,105,114,34,44,98,108,97,99,107,58,34,78,111,105,114,34,125,44,104,105,116,58,34,114,195,169,115,117,108,116,97,116,34,44,104,105,116,115,58,34,114,195,169,115,117,108,116,97,116,115,34,44,100,101,116,97,105,108,115,58,34,68,195,169,116,97,105,108,115,34,44,115,116,97,116,115,58,34,83,116,97,116,115,34,44,113,117,101,114,121,84,105,109,101,58,34,68,117,114,195,169,101,32,100,101,32,108,97,32,114,101,113,117,195,170,116,101,34,44,116,111,116,97,108,83,105,122,101,58,34,84,97,105,108,108,101,32,116,111,116,97,108,101,34,44,112,97,116,104,66,97,114,58,123,112,108,97,99,101,104,111,108,100,101,114,58,34,70,105,108,116,114,101,114,32,108,101,32,99,104,101,109,105,110,34,44,109,111,100,97,108,84,105,116,108,101,58,34,83,195,169,108,101,99,116,105,111,110,110,101,114,32,108,101,32,99,104,101,109,105,110,34,125,44,100,101,98,117,103,58,34,73,110,102,111,114,109,97,116,105,111,110,32,100,101,32,100,195,169,98,111,103,97,103,101,34,44,100,101,98,117,103,68,101,115,99,114,105,112,116,105,111,110,58,34,73,110,102,111,114,109,97,116,105,111,110,115,32,117,116,105,108,101,115,32,112,111,117,114,32,108,101,32,100,195,169,98,111,103,97,103,101,92,110,83,105,32,118,111,117,115,32,114,101,110,99,111,110,116,114,101,122,32,100,101,115,32,98,111,103,117,101,115,32,111,117,32,115,105,32,118,111,117,115,32,97,118,101,122,32,100,101,115,32,115,117,103,103,101,115,116,105,111,110,115,32,112,111,117,114,32,100,101,32,110,111,117,118,101,108,108,101,115,32,102,111,110,99,116,105,111,110,110,97,108,105,116,195,169,115,44,32,118,101,117,105,108,108,101,122,32,115,111,117,109,101,116,116,114,101,32,117,110,32,110,111,117,118,101,108,32,73,115,115,117,101,32,60,97,32,104,114,101,102,61,39,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,115,105,109,111,110,57,56,55,47,115,105,115,116,50,47,105,115,115,117,101,115,47,110,101,119,47,99,104,111,111,115,101,39,62,105,99,105,60,47,97,62,46,34,44,116,97,103,108,105,110,101,58,34,84,97,103,108,105,110,101,34,44,116,111,97,115,116,58,123,101,115,67,111,110,110,69,114,114,84,105,116,108,101,58,34,69,114,114,101,117,114,32,100,101,32,99,111,110,110,101,120,105,111,110,32,69,108,97,115,116,105,99,115,101,97,114,99,104,34,44,101,115,67,111,110,110,69,114,114,58,34,76,101,32,109,111,100,117,108,101,32,119,101,98,32,97,32,114,101,110,99,111,110,116,114,195,169,32,117,110,101,32,101,114,114,101,117,114,32,108,111,114,115,32,100,101,32,108,97,32,99,111,110,110,101,120,105,111,110,32,195,160,32,69,108,97,115,116,105,99,115,101,97,114,99,104,46,32,67,111,110,115,117,108,116,101,122,32,108,101,115,32,106,111,117,114,110,97,117,120,32,100,117,32,115,101,114,118,101,117,114,32,112,111,117,114,32,112,108,117,115,32,100,39,105,110,102,111,114,109,97,116,105,111,110,115,46,46,34,44,101,115,81,117,101,114,121,69,114,114,84,105,116,108,101,58,34,69,114,114,101,117,114,32,100,101,32,114,101,113,117,195,170,116,101,34,44,101,115,81,117,101,114,121,69,114,114,58,34,73,109,112,111,115,115,105,98,108,101,32,100,39,97,110,97,108,121,115,101,114,32,111,117,32,100,39,101,120,195,169,99,117,116,101,114,32,108,97,32,114,101,113,117,195,170,116,101,44,32,118,101,117,105,108,108,101,122,32,99,111,110,115,117,108,116,101,114,32,108,97,32,100,111,99,117,109,101,110,116,97,116,105,111,110,32,115,117,114,32,108,97,32,114,101,99,104,101,114,99,104,101,32,97,118,97,110,99,195,169,101,46,32,86,111,105,114,32,108,101,115,32,106,111,117,114,110,97,117,120,32,100,117,32,115,101,114,118,101,117,114,32,112,111,117,114,32,112,108,117,115,32,100,39,105,110,102,111,114,109,97,116,105,111,110,115,46,34,44,100,117,112,101,84,97,103,84,105,116,108,101,58,34,84,97,103,32,101,110,32,100,111,117,98,108,101,34,44,100,117,112,101,84,97,103,58,34,67,101,32,116,97,103,32,101,120,105,115,116,101,32,100,195,169,106,195,160,32,112,111,117,114,32,99,101,32,100,111,99,117,109,101,110,116,46,34,44,99,111,112,105,101,100,84,111,67,108,105,112,98,111,97,114,100,58,34,67,111,112,105,195,169,32,100,97,110,115,32,108,101,32,112,114,101,115,115,101,45,112,97,112,105,101,114,34,125,44,115,97,118,101,84,97,103,77,111,100,97,108,84,105,116,108,101,58,34,65,106,111,117,116,101,114,32,117,110,32,116,97,103,34,44,115,97,118,101,84,97,103,80,108,97,99,101,104,111,108,100,101,114,58,34,78,111,109,32,100,117,32,116,97,103,34,44,99,111,110,102,105,114,109,58,34,67,111,110,102,105,114,109,101,114,34,44,105,110,100,101,120,80,105,99,107,101,114,80,108,97,99,101,104,111,108,100,101,114,58,34,83,195,169,108,101,99,116,105,111,110,110,101,114,32,117,110,32,105,110,100,101,120,34,44,115,111,114,116,58,123,114,101,108,101,118,97,110,99,101,58,34,80,101,114,116,105,110,101,110,99,101,34,44,100,97,116,101,65,115,99,58,34,68,97,116,101,32,40,80,108,117,115,32,97,110,99,105,101,110,116,41,34,44,100,97,116,101,68,101,115,99,58,34,68,97,116,101,32,40,80,108,117,115,32,114,195,169,99,101,110,116,41,34,44,115,105,122,101,65,115,99,58,34,84,97,105,108,108,101,32,40,80,108,117,115,32,112,101,116,105,116,41,34,44,115,105,122,101,68,101,115,99,58,34,84,97,105,108,108,101,32,40,80,108,117,115,32,103,114,97,110,100,41,34,44,110,97,109,101,65,115,99,58,34,78,111,109,32,40,65,45,122,41,34,44,110,97,109,101,68,101,115,99,58,34,78,111,109,32,40,90,45,97,41,34,44,114,97,110,100,111,109,58,34,65,108,195,169,97,116,111,105,114,101,34,125,44,100,51,58,123,109,105,109,101,67,111,117,110,116,58,34,68,105,115,116,114,105,98,117,116,105,111,110,32,100,117,32,110,111,109,98,114,101,32,100,101,32,102,105,99,104,105,101,114,115,32,112,97,114,32,116,121,112,101,32,100,101,32,109,195,169,100,105,97,34,44,109,105,109,101,83,105,122,101,58,34,68,105,115,116,114,105,98,117,116,105,111,110,32,100,101,115,32,116,97,105,108,108,101,115,32,100,101,32,102,105,99,104,105,101,114,115,32,112,97,114,32,116,121,112,101,32,100,101,32,109,195,169,100,105,97,34,44,100,97,116,101,72,105,115,116,111,103,114,97,109,58,34,68,105,115,116,114,105,98,117,116,105,111,110,32,100,101,115,32,100,97,116,101,115,32,100,101,32,109,111,100,105,102,105,99,97,116,105,111,110,34,44,115,105,122,101,72,105,115,116,111,103,114,97,109,58,34,68,105,115,116,114,105,98,117,116,105,111,110,32,100,101,115,32,116,97,105,108,108,101,115,32,100,101,32,102,105,99,104,105,101,114,34,125,44,105,110,100,101,120,80,105,99,107,101,114,58,123,115,101,108,101,99,116,78,111,110,101,58,34,83,195,169,108,101,99,116,105,111,110,110,101,114,32,97,117,99,117,110,34,44,115,101,108,101,99,116,65,108,108,58,34,83,195,169,108,101,99,116,105,111,110,110,101,114,32,116,111,117,116,34,44,115,101,108,101,99,116,101,100,73,110,100,101,120,58,34,105,110,100,101,120,32,115,195,169,108,101,99,116,105,111,110,110,195,169,34,44,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,34,105,110,100,101,120,32,115,195,169,108,101,99,116,105,111,110,110,195,169,115,34,125,125,44,34,122,104,45,67,78,34,58,123,102,105,108,101,80,97,103,101,58,123,110,111,116,70,111,117,110,100,58,34,230,156,170,230,137,190,229,136,176,34,125,44,115,101,97,114,99,104,66,97,114,58,123,115,105,109,112,108,101,58,34,230,144,156,231,180,162,34,44,97,100,118,97,110,99,101,100,58,34,233,171,152,231,186,167,230,144,156,231,180,162,34,44,102,117,122,122,121,58,34,230,168,161,231,179,138,230,144,156,231,180,162,34,125,44,97,100,100,84,97,103,58,34,230,183,187,229,138,160,34,44,100,101,108,101,116,101,84,97,103,58,34,229,136,160,233,153,164,34,44,100,111,119,110,108,111,97,100,58,34,228,184,139,232,189,189,34,44,97,110,100,58,34,228,184,142,34,44,112,97,103,101,58,34,233,161,181,34,44,112,97,103,101,115,58,34,233,161,181,34,44,109,105,109,101,84,121,112,101,115,58,34,230,150,135,228,187,182,231,177,187,229,158,139,34,44,116,97,103,115,58,34,230,160,135,231,173,190,34,44,116,97,103,70,105,108,116,101,114,58,34,231,173,155,233,128,137,230,160,135,231,173,190,34,44,104,101,108,112,58,123,115,105,109,112,108,101,83,101,97,114,99,104,58,34,231,174,128,230,152,147,230,144,156,231,180,162,34,44,97,100,118,97,110,99,101,100,83,101,97,114,99,104,58,34,233,171,152,231,186,167,230,144,156,231,180,162,34,44,104,101,108,112,58,34,229,184,174,229,138,169,34,44,116,101,114,109,58,34,60,229,133,179,233,148,174,232,175,141,62,34,44,97,110,100,58,34,228,184,142,230,147,141,228,189,156,34,44,111,114,58,34,230,136,150,230,147,141,228,189,156,34,44,110,111,116,58,34,229,143,141,233,128,137,229,141,149,228,184,170,229,133,179,233,148,174,232,175,141,34,44,113,117,111,116,101,115,58,34,230,139,172,232,181,183,230,157,165,231,154,132,233,131,168,229,136,134,232,167,134,228,184,186,228,184,128,228,184,170,229,133,179,233,148,174,232,175,141,239,188,140,228,191,157,229,186,143,34,44,112,114,101,102,105,120,58,34,229,156,168,232,175,141,229,176,190,228,189,191,231,148,168,230,151,182,239,188,140,229,140,185,233,133,141,229,137,141,231,188,128,34,44,112,97,114,101,110,115,58,34,232,161,168,232,190,190,229,188,143,231,188,150,231,187,132,34,44,116,105,108,100,101,84,101,114,109,58,34,229,140,185,233,133,141,231,188,150,232,190,145,232,183,157,231,166,187,228,187,165,229,134,133,231,154,132,229,133,179,233,148,174,232,175,141,34,44,116,105,108,100,101,80,104,114,97,115,101,58,34,229,140,185,233,133,141,231,159,173,232,175,173,239,188,140,229,174,185,229,191,141,228,184,128,228,186,155,233,157,158,229,140,185,233,133,141,232,175,141,34,44,101,120,97,109,112,108,101,49,58,39,228,190,139,229,166,130,58,32,60,99,111,100,101,62,34,231,149,170,232,140,132,34,32,43,40,231,130,146,232,155,139,32,124,32,231,137,155,232,133,169,41,32,45,233,165,173,60,47,99,111,100,101,62,32,229,176,134,229,140,185,233,133,141,231,159,173,232,175,173,32,60,105,62,231,149,170,232,140,132,231,130,146,232,155,139,60,47,105,62,227,128,129,60,105,62,231,130,146,232,155,139,60,47,105,62,32,230,136,150,232,128,133,32,60,105,62,231,137,155,232,133,169,60,47,105,62,239,188,140,232,128,140,229,191,189,231,149,165,228,187,187,228,189,149,229,184,166,230,156,137,60,105,62,233,165,173,60,47,105,62,231,154,132,229,133,179,233,148,174,232,175,141,46,39,44,100,101,102,97,117,108,116,79,112,101,114,97,116,111,114,58,34,232,161,168,232,190,190,229,188,143,228,184,173,230,151,160,60,99,111,100,101,62,43,60,47,99,111,100,101,62,230,136,150,232,128,133,60,99,111,100,101,62,124,60,47,99,111,100,101,62,230,151,182,239,188,140,233,187,152,232,174,164,228,189,191,231,148,168,60,99,111,100,101,62,43,60,47,99,111,100,101,62,239,188,136,228,184,142,230,147,141,228,189,156,239,188,137,227,128,130,34,44,102,117,122,122,121,58,34,233,128,137,228,184,173,60,98,62,230,168,161,231,179,138,230,144,156,231,180,162,60,47,98,62,233,128,137,233,161,185,230,151,182,239,188,140,232,191,148,229,155,158,233,131,168,229,136,134,229,140,185,233,133,141,231,154,132,231,187,147,230,158,156,239,188,136,51,45,103,114,97,109,115,41,227,128,130,34,44,109,111,114,101,73,110,102,111,83,105,109,112,108,101,58,39,232,175,166,231,187,134,228,191,161,230,129,175,239,188,154,60,97,32,116,97,114,103,101,116,61,34,95,98,108,97,110,107,34,32,114,101,108,61,34,110,111,114,101,102,101,114,114,101,114,34,32,104,114,101,102,61,34,47,47,119,119,119,46,101,108,97,115,116,105,99,46,99,111,47,103,117,105,100,101,47,101,110,47,101,108,97,115,116,105,99,115,101,97,114,99,104,47,114,101,102,101,114,101,110,99,101,47,99,117,114,114,101,110,116,47,113,117,101,114,121,45,100,115,108,45,115,105,109,112,108,101,45,113,117,101,114,121,45,115,116,114,105,110,103,45,113,117,101,114,121,46,104,116,109,108,34,62,69,108,97,115,116,105,99,115,101,97,114,99,104,230,150,135,230,161,163,60,47,97,62,39,44,109,111,114,101,73,110,102,111,65,100,118,97,110,99,101,100,58,39,233,171,152,231,186,167,230,144,156,231,180,162,230,168,161,229,188,143,230,150,135,230,161,163,239,188,154,60,97,32,116,97,114,103,101,116,61,34,95,98,108,97,110,107,34,32,114,101,108,61,34,110,111,114,101,102,101,114,114,101,114,34,32,104,114,101,102,61,34,47,47,119,119,119,46,101,108,97,115,116,105,99,46,99,111,47,103,117,105,100,101,47,101,110,47,101,108,97,115,116,105,99,115,101,97,114,99,104,47,114,101,102,101,114,101,110,99,101,47,99,117,114,114,101,110,116,47,113,117,101,114,121,45,100,115,108,45,113,117,101,114,121,45,115,116,114,105,110,103,45,113,117,101,114,121,46,104,116,109,108,35,113,117,101,114,121,45,115,116,114,105,110,103,45,115,121,110,116,97,120,34,62,69,108,97,115,116,105,99,115,101,97,114,99,104,230,150,135,230,161,163,60,47,97,62,39,125,44,99,111,110,102,105,103,58,34,233,133,141,231,189,174,34,44,99,111,110,102,105,103,68,101,115,99,114,105,112,116,105,111,110,58,34,233,133,141,231,189,174,229,156,168,230,173,164,230,181,143,232,167,136,229,153,168,228,184,173,229,174,158,230,151,182,228,191,157,229,173,152,227,128,130,34,44,99,111,110,102,105,103,82,101,115,101,116,58,34,233,135,141,231,189,174,230,137,128,230,156,137,232,174,190,231,189,174,34,44,115,101,97,114,99,104,79,112,116,105,111,110,115,58,34,230,144,156,231,180,162,233,128,137,233,161,185,34,44,116,114,101,101,109,97,112,79,112,116,105,111,110,115,58,34,230,160,145,231,138,182,229,155,190,233,128,137,233,161,185,34,44,100,105,115,112,108,97,121,79,112,116,105,111,110,115,58,34,230,152,190,231,164,186,233,128,137,233,161,185,34,44,111,112,116,58,123,108,97,110,103,58,34,232,175,173,232,168,128,34,44,104,105,103,104,108,105,103,104,116,58,34,229,144,175,231,148,168,233,171,152,228,186,174,34,44,102,117,122,122,121,58,34,233,187,152,232,174,164,228,189,191,231,148,168,230,168,161,231,179,138,230,144,156,231,180,162,34,44,115,101,97,114,99,104,73,110,80,97,116,104,58,34,229,140,185,233,133,141,230,150,135,230,161,163,232,183,175,229,190,132,34,44,115,117,103,103,101,115,116,80,97,116,104,58,34,230,144,156,231,180,162,230,161,134,229,144,175,231,148,168,232,135,170,229,138,168,232,161,165,229,133,168,34,44,102,114,97,103,109,101,110,116,83,105,122,101,58,34,233,171,152,228,186,174,228,184,138,228,184,139,230,150,135,229,164,167,229,176,143,34,44,113,117,101,114,121,77,111,100,101,58,34,230,144,156,231,180,162,230,168,161,229,188,143,34,44,100,105,115,112,108,97,121,77,111,100,101,58,34,230,152,190,231,164,186,34,44,99,111,108,117,109,110,115,58,34,229,136,151,230,149,176,34,44,116,114,101,101,109,97,112,84,121,112,101,58,34,230,160,145,231,138,182,229,155,190,231,177,187,229,177,158,230,128,167,34,44,116,114,101,101,109,97,112,84,105,108,105,110,103,58,34,230,160,145,231,138,182,229,155,190,229,185,179,233,147,186,34,44,116,114,101,101,109,97,112,67,111,108,111,114,71,114,111,117,112,105,110,103,68,101,112,116,104,58,34,230,160,145,231,138,182,229,155,190,233,162,156,232,137,178,231,188,150,231,187,132,230,183,177,229,186,166,239,188,136,229,177,149,229,188,128,239,188,137,34,44,116,114,101,101,109,97,112,67,111,108,111,114,58,34,230,160,145,231,138,182,229,155,190,233,162,156,232,137,178,239,188,136,230,138,152,229,143,160,239,188,137,34,44,116,114,101,101,109,97,112,83,105,122,101,58,34,230,160,145,231,138,182,229,155,190,229,164,167,229,176,143,34,44,116,104,101,109,101,58,34,228,184,187,233,162,152,34,44,108,105,103,104,116,98,111,120,76,111,97,100,79,110,108,121,67,117,114,114,101,110,116,58,34,229,156,168,229,155,190,231,137,135,230,159,165,231,156,139,229,153,168,228,184,173,239,188,140,228,184,141,232,166,129,233,162,132,232,175,187,231,155,184,233,130,187,231,154,132,229,133,168,229,155,190,34,44,115,108,105,100,101,68,117,114,97,116,105,111,110,58,34,229,185,187,231,129,175,231,137,135,230,151,182,233,149,191,34,44,114,101,115,117,108,116,83,105,122,101,58,34,230,175,143,233,161,181,231,187,147,230,158,156,230,149,176,34,44,116,97,103,79,114,79,112,101,114,97,116,111,114,58,34,228,189,191,231,148,168,230,136,150,230,147,141,228,189,156,239,188,136,79,82,239,188,137,229,140,185,233,133,141,229,164,154,228,184,170,230,160,135,231,173,190,227,128,130,34,44,104,105,100,101,68,117,112,108,105,99,97,116,101,115,58,34,228,189,191,231,148,168,230,160,161,233,170,140,231,160,129,233,154,144,232,151,143,233,135,141,229,164,141,231,187,147,230,158,156,34,44,104,105,100,101,76,101,103,97,99,121,58,34,233,154,144,232,151,143,39,108,101,103,97,99,121,69,83,39,32,69,108,97,115,116,105,99,115,101,97,114,99,104,32,233,128,154,231,159,165,34,44,117,112,100,97,116,101,77,105,109,101,77,97,112,58,34,229,170,146,228,189,147,231,177,187,229,158,139,230,160,145,231,154,132,229,174,158,230,151,182,230,155,180,230,150,176,34,44,117,115,101,68,97,116,101,80,105,99,107,101,114,58,34,228,189,191,231,148,168,230,151,165,230,156,159,233,128,137,230,139,169,229,153,168,231,187,132,228,187,182,232,128,140,228,184,141,230,152,175,230,187,145,229,157,151,34,44,118,105,100,80,114,101,118,105,101,119,73,110,116,101,114,118,97,108,58,34,232,167,134,233,162,145,233,162,132,232,167,136,229,184,167,231,154,132,230,140,129,231,187,173,230,151,182,233,151,180,239,188,140,228,187,165,230,175,171,231,167,146,228,184,186,229,141,149,228,189,141,34,44,115,105,109,112,108,101,76,105,103,104,116,98,111,120,58,34,229,156,168,229,155,190,231,137,135,230,159,165,231,156,139,229,153,168,228,184,173,239,188,140,231,166,129,231,148,168,229,138,168,231,148,187,34,44,115,104,111,119,84,97,103,80,105,99,107,101,114,70,105,108,116,101,114,58,34,230,152,190,231,164,186,230,160,135,231,173,190,232,191,135,230,187,164,230,160,143,34,125,44,113,117,101,114,121,77,111,100,101,58,123,115,105,109,112,108,101,58,34,231,174,128,229,141,149,34,44,97,100,118,97,110,99,101,100,58,34,233,171,152,231,186,167,34,125,44,108,97,110,103,58,123,101,110,58,34,69,110,103,108,105,115,104,34,44,102,114,58,34,70,114,97,110,195,167,97,105,115,34,44,34,122,104,45,67,78,34,58,34,231,174,128,228,189,147,228,184,173,230,150,135,34,125,44,100,105,115,112,108,97,121,77,111,100,101,58,123,103,114,105,100,58,34,231,189,145,230,160,188,34,44,108,105,115,116,58,34,229,136,151,232,161,168,34,125,44,99,111,108,117,109,110,115,58,123,97,117,116,111,58,34,232,135,170,229,138,168,34,125,44,116,114,101,101,109,97,112,84,121,112,101,58,123,99,97,115,99,97,100,101,100,58,34,230,138,152,229,143,160,34,44,102,108,97,116,58,34,229,185,179,233,147,186,239,188,136,231,180,167,229,135,145,239,188,137,34,125,44,116,114,101,101,109,97,112,83,105,122,101,58,123,115,109,97,108,108,58,34,229,176,143,34,44,109,101,100,105,117,109,58,34,228,184,173,34,44,108,97,114,103,101,58,34,229,164,167,34,44,120,76,97,114,103,101,58,34,229,138,160,229,164,167,34,44,120,120,76,97,114,103,101,58,34,229,138,160,229,138,160,229,164,167,34,44,99,117,115,116,111,109,58,34,232,135,170,232,174,162,34,125,44,116,114,101,101,109,97,112,84,105,108,105,110,103,58,123,98,105,110,97,114,121,58,34,66,105,110,97,114,121,34,44,115,113,117,97,114,105,102,121,58,34,83,113,117,97,114,105,102,121,34,44,115,108,105,99,101,58,34,83,108,105,99,101,34,44,100,105,99,101,58,34,68,105,99,101,34,44,115,108,105,99,101,68,105,99,101,58,34,83,108,105,99,101,32,38,32,68,105,99,101,34,125,44,116,104,101,109,101,58,123,108,105,103,104,116,58,34,228,186,174,34,44,98,108,97,99,107,58,34,230,154,151,34,125,44,104,105,116,58,34,229,145,189,228,184,173,34,44,104,105,116,115,58,34,229,145,189,228,184,173,34,44,100,101,116,97,105,108,115,58,34,232,175,166,231,187,134,228,191,161,230,129,175,34,44,115,116,97,116,115,58,34,231,187,159,232,174,161,228,191,161,230,129,175,34,44,113,117,101,114,121,84,105,109,101,58,34,230,159,165,232,175,162,230,151,182,233,151,180,34,44,116,111,116,97,108,83,105,122,101,58,34,230,128,187,229,164,167,229,176,143,34,44,112,97,116,104,66,97,114,58,123,112,108,97,99,101,104,111,108,100,101,114,58,34,232,191,135,230,187,164,232,183,175,229,190,132,34,44,109,111,100,97,108,84,105,116,108,101,58,34,233,128,137,230,139,169,232,183,175,229,190,132,34,125,44,100,101,98,117,103,58,34,232,176,131,232,175,149,228,191,161,230,129,175,34,44,100,101,98,117,103,68,101,115,99,114,105,112,116,105,111,110,58,34,229,175,185,232,176,131,232,175,149,233,153,164,233,148,153,230,156,137,231,148,168,231,154,132,228,191,161,230,129,175,227,128,130,32,232,139,165,230,130,168,233,129,135,229,136,176,98,117,103,230,136,150,232,128,133,230,131,179,229,187,186,232,174,174,230,150,176,229,138,159,232,131,189,239,188,140,232,175,183,230,143,144,228,186,164,230,150,176,73,115,115,117,101,229,136,176,60,97,32,104,114,101,102,61,39,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,115,105,109,111,110,57,56,55,47,115,105,115,116,50,47,105,115,115,117,101,115,47,110,101,119,47,99,104,111,111,115,101,39,62,232,191,153,233,135,140,60,47,97,62,46,34,44,116,97,103,108,105,110,101,58,34,230,160,135,231,173,190,230,160,143,34,44,116,111,97,115,116,58,123,101,115,67,111,110,110,69,114,114,84,105,116,108,101,58,34,69,108,97,115,116,105,99,115,101,97,114,99,104,232,191,158,230,142,165,233,148,153,232,175,175,34,44,101,115,67,111,110,110,69,114,114,58,34,115,105,115,116,50,32,119,101,98,32,230,168,161,229,157,151,232,191,158,230,142,165,69,108,97,115,116,105,99,115,101,97,114,99,104,229,135,186,233,148,153,227,128,130,230,159,165,231,156,139,230,156,141,229,138,161,230,151,165,229,191,151,228,187,165,232,142,183,229,143,150,230,155,180,229,164,154,228,191,161,230,129,175,227,128,130,34,44,101,115,81,117,101,114,121,69,114,114,84,105,116,108,101,58,34,230,159,165,232,175,162,233,148,153,232,175,175,34,44,101,115,81,117,101,114,121,69,114,114,58,34,230,151,160,230,179,149,232,175,134,229,136,171,230,136,150,230,137,167,232,161,140,230,159,165,232,175,162,239,188,140,232,175,183,230,159,165,233,152,133,233,171,152,231,186,167,230,144,156,231,180,162,230,150,135,230,161,163,227,128,130,230,159,165,231,156,139,230,156,141,229,138,161,230,151,165,229,191,151,228,187,165,232,142,183,229,143,150,230,155,180,229,164,154,228,191,161,230,129,175,227,128,130,34,44,100,117,112,101,84,97,103,84,105,116,108,101,58,34,233,135,141,229,164,141,230,160,135,231,173,190,34,44,100,117,112,101,84,97,103,58,34,232,175,165,230,160,135,231,173,190,229,183,178,229,173,152,229,156,168,228,186,142,230,173,164,230,150,135,230,161,163,227,128,130,34,44,99,111,112,105,101,100,84,111,67,108,105,112,98,111,97,114,100,58,34,229,164,141,229,136,182,229,136,176,229,137,170,232,180,180,230,157,191,34,125,44,115,97,118,101,84,97,103,77,111,100,97,108,84,105,116,108,101,58,34,229,162,158,229,138,160,230,160,135,231,173,190,34,44,115,97,118,101,84,97,103,80,108,97,99,101,104,111,108,100,101,114,58,34,230,160,135,231,173,190,229,144,141,34,44,99,111,110,102,105,114,109,58,34,231,161,174,232,174,164,34,44,105,110,100,101,120,80,105,99,107,101,114,80,108,97,99,101,104,111,108,100,101,114,58,34,233,128,137,230,139,169,228,184,128,228,184,170,231,180,162,229,188,149,34,44,115,111,114,116,58,123,114,101,108,101,118,97,110,99,101,58,34,231,155,184,229,133,179,229,186,166,34,44,100,97,116,101,65,115,99,58,34,230,151,165,230,156,159,239,188,136,231,148,177,230,151,167,229,136,176,230,150,176,239,188,137,34,44,100,97,116,101,68,101,115,99,58,34,230,151,165,230,156,159,239,188,136,231,148,177,230,150,176,229,136,176,230,151,167,239,188,137,34,44,115,105,122,101,65,115,99,58,34,229,164,167,229,176,143,239,188,136,228,187,142,229,176,143,229,136,176,229,164,167,239,188,137,34,44,115,105,122,101,68,101,115,99,58,34,229,164,167,229,176,143,239,188,136,228,187,142,229,164,167,229,136,176,229,176,143,239,188,137,34,44,110,97,109,101,65,115,99,58,34,229,144,141,229,173,151,239,188,136,65,45,122,239,188,137,34,44,110,97,109,101,68,101,115,99,58,34,229,144,141,229,173,151,32,239,188,136,90,45,97,239,188,137,34,44,114,97,110,100,111,109,58,34,233,154,143,230,156,186,34,125,44,100,51,58,123,109,105,109,101,67,111,117,110,116,58,34,229,144,132,231,177,187,230,150,135,228,187,182,230,149,176,233,135,143,229,136,134,229,184,131,34,44,109,105,109,101,83,105,122,101,58,34,229,144,132,231,177,187,230,150,135,228,187,182,229,164,167,229,176,143,229,136,134,229,184,131,34,44,100,97,116,101,72,105,115,116,111,103,114,97,109,58,34,230,150,135,228,187,182,228,191,174,230,148,185,230,151,182,233,151,180,229,136,134,229,184,131,34,44,115,105,122,101,72,105,115,116,111,103,114,97,109,58,34,230,150,135,228,187,182,229,164,167,229,176,143,229,136,134,229,184,131,34,125,44,105,110,100,101,120,80,105,99,107,101,114,58,123,115,101,108,101,99,116,78,111,110,101,58,34,230,184,133,231,169,186,34,44,115,101,108,101,99,116,65,108,108,58,34,229,133,168,233,128,137,34,44,115,101,108,101,99,116,101,100,73,110,100,101,120,58,34,233,128,137,228,184,173,231,180,162,229,188,149,34,44,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,58,34,233,128,137,228,184,173,231,180,162,229,188,149,34,125,125,125,59,102,117,110,99,116,105,111,110,32,81,111,40,101,44,116,44,115,41,123,85,111,40,33,48,41,44,105,91,34,100,101,102,97,117,108,116,34,93,46,117,115,101,40,109,115,44,123,100,111,109,97,105,110,58,101,44,99,108,105,101,110,116,73,100,58,116,44,97,117,100,105,101,110,99,101,58,115,44,111,110,82,101,100,105,114,101,99,116,67,97,108,108,98,97,99,107,58,101,61,62,123,125,125,41,125,105,91,34,100,101,102,97,117,108,116,34,93,46,99,111,110,102,105,103,46,112,114,111,100,117,99,116,105,111,110,84,105,112,61,33,49,44,105,91,34,100,101,102,97,117,108,116,34,93,46,112,114,111,116,111,116,121,112,101,46,36,97,117,116,104,61,110,117,108,108,44,105,91,34,100,101,102,97,117,108,116,34,93,46,99,111,110,102,105,103,46,112,114,111,100,117,99,116,105,111,110,84,105,112,61,33,49,44,105,91,34,100,101,102,97,117,108,116,34,93,46,117,115,101,40,86,111,46,90,41,44,105,91,34,100,101,102,97,117,108,116,34,93,46,117,115,101,40,81,46,90,41,59,99,111,110,115,116,32,71,111,61,110,101,119,32,86,111,46,90,40,123,108,111,99,97,108,101,58,34,101,110,34,44,109,101,115,115,97,103,101,115,58,90,111,125,41,59,110,101,119,32,105,91,34,100,101,102,97,117,108,116,34,93,40,123,114,111,117,116,101,114,58,82,111,44,115,116,111,114,101,58,102,115,44,105,49,56,110,58,71,111,44,114,101,110,100,101,114,58,101,61,62,101,40,90,41,125,41,46,36,109,111,117,110,116,40,34,35,97,112,112,34,41,125,125,44,116,61,123,125,59,102,117,110,99,116,105,111,110,32,115,40,105,41,123,118,97,114,32,97,61,116,91,105,93,59,105,102,40,118,111,105,100,32,48,33,61,61,97,41,114,101,116,117,114,110,32,97,46,101,120,112,111,114,116,115,59,118,97,114,32,111,61,116,91,105,93,61,123,105,100,58,105,44,108,111,97,100,101,100,58,33,49,44,101,120,112,111,114,116,115,58,123,125,125,59,114,101,116,117,114,110,32,101,91,105,93,46,99,97,108,108,40,111,46,101,120,112,111,114,116,115,44,111,44,111,46,101,120,112,111,114,116,115,44,115,41,44,111,46,108,111,97,100,101,100,61,33,48,44,111,46,101,120,112,111,114,116,115,125,115,46,109,61,101,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,91,93,59,115,46,79,61,102,117,110,99,116,105,111,110,40,116,44,105,44,97,44,111,41,123,105,102,40,33,105,41,123,118,97,114,32,114,61,49,47,48,59,102,111,114,40,100,61,48,59,100,60,101,46,108,101,110,103,116,104,59,100,43,43,41,123,105,61,101,91,100,93,91,48,93,44,97,61,101,91,100,93,91,49,93,44,111,61,101,91,100,93,91,50,93,59,102,111,114,40,118,97,114,32,110,61,33,48,44,108,61,48,59,108,60,105,46,108,101,110,103,116,104,59,108,43,43,41,40,33,49,38,111,124,124,114,62,61,111,41,38,38,79,98,106,101,99,116,46,107,101,121,115,40,115,46,79,41,46,101,118,101,114,121,40,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,115,46,79,91,101,93,40,105,91,108,93,41,125,41,41,63,105,46,115,112,108,105,99,101,40,108,45,45,44,49,41,58,40,110,61,33,49,44,111,60,114,38,38,40,114,61,111,41,41,59,105,102,40,110,41,123,101,46,115,112,108,105,99,101,40,100,45,45,44,49,41,59,118,97,114,32,99,61,97,40,41,59,118,111,105,100,32,48,33,61,61,99,38,38,40,116,61,99,41,125,125,114,101,116,117,114,110,32,116,125,111,61,111,124,124,48,59,102,111,114,40,118,97,114,32,100,61,101,46,108,101,110,103,116,104,59,100,62,48,38,38,101,91,100,45,49,93,91,50,93,62,111,59,100,45,45,41,101,91,100,93,61,101,91,100,45,49,93,59,101,91,100,93,61,91,105,44,97,44,111,93,125,125,40,41,44,102,117,110,99,116,105,111,110,40,41,123,115,46,110,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,91,34,100,101,102,97,117,108,116,34,93,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,125,59,114,101,116,117,114,110,32,115,46,100,40,116,44,123,97,58,116,125,41,44,116,125,125,40,41,44,102,117,110,99,116,105,111,110,40,41,123,115,46,100,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,105,32,105,110,32,116,41,115,46,111,40,116,44,105,41,38,38,33,115,46,111,40,101,44,105,41,38,38,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,44,123,101,110,117,109,101,114,97,98,108,101,58,33,48,44,103,101,116,58,116,91,105,93,125,41,125,125,40,41,44,102,117,110,99,116,105,111,110,40,41,123,115,46,103,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,103,108,111,98,97,108,84,104,105,115,41,114,101,116,117,114,110,32,103,108,111,98,97,108,84,104,105,115,59,116,114,121,123,114,101,116,117,114,110,32,116,104,105,115,124,124,110,101,119,32,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,105,102,40,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,41,114,101,116,117,114,110,32,119,105,110,100,111,119,125,125,40,41,125,40,41,44,102,117,110,99,116,105,111,110,40,41,123,115,46,111,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,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,101,44,116,41,125,125,40,41,44,102,117,110,99,116,105,111,110,40,41,123,115,46,114,61,102,117,110,99,116,105,111,110,40,101,41,123,34,117,110,100,101,102,105,110,101,100,34,33,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,38,38,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,83,121,109,98,111,108,46,116,111,83,116,114,105,110,103,84,97,103,44,123,118,97,108,117,101,58,34,77,111,100,117,108,101,34,125,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,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,125,40,41,44,102,117,110,99,116,105,111,110,40,41,123,115,46,110,109,100,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,112,97,116,104,115,61,91,93,44,101,46,99,104,105,108,100,114,101,110,124,124,40,101,46,99,104,105,108,100,114,101,110,61,91,93,41,44,101,125,125,40,41,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,123,56,50,54,58,48,125,59,115,46,79,46,106,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,48,61,61,61,101,91,116,93,125,59,118,97,114,32,116,61,102,117,110,99,116,105,111,110,40,116,44,105,41,123,118,97,114,32,97,44,111,44,114,61,105,91,48,93,44,110,61,105,91,49,93,44,108,61,105,91,50,93,44,99,61,48,59,105,102,40,114,46,115,111,109,101,40,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,48,33,61,61,101,91,116,93,125,41,41,41,123,102,111,114,40,97,32,105,110,32,110,41,115,46,111,40,110,44,97,41,38,38,40,115,46,109,91,97,93,61,110,91,97,93,41,59,105,102,40,108,41,118,97,114,32,100,61,108,40,115,41,125,102,111,114,40,116,38,38,116,40,105,41,59,99,60,114,46,108,101,110,103,116,104,59,99,43,43,41,111,61,114,91,99,93,44,115,46,111,40,101,44,111,41,38,38,101,91,111,93,38,38,101,91,111,93,91,48,93,40,41,44,101,91,111,93,61,48,59,114,101,116,117,114,110,32,115,46,79,40,100,41,125,44,105,61,115,101,108,102,91,34,119,101,98,112,97,99,107,67,104,117,110,107,115,105,115,116,50,34,93,61,115,101,108,102,91,34,119,101,98,112,97,99,107,67,104,117,110,107,115,105,115,116,50,34,93,124,124,91,93,59,105,46,102,111,114,69,97,99,104,40,116,46,98,105,110,100,40,110,117,108,108,44,48,41,41,44,105,46,112,117,115,104,61,116,46,98,105,110,100,40,110,117,108,108,44,105,46,112,117,115,104,46,98,105,110,100,40,105,41,41,125,40,41,59,118,97,114,32,105,61,115,46,79,40,118,111,105,100,32,48,44,91,57,57,56,93,44,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,51,55,49,54,41,125,41,41,59,105,61,115,46,79,40,105,41,125,41,40,41,59}; +char index_html[885] = {60,33,100,111,99,116,121,112,101,32,104,116,109,108,62,60,104,116,109,108,32,108,97,110,103,61,34,101,110,34,62,60,104,101,97,100,62,60,109,101,116,97,32,99,104,97,114,115,101,116,61,34,117,116,102,45,56,34,62,60,109,101,116,97,32,104,116,116,112,45,101,113,117,105,118,61,34,88,45,85,65,45,67,111,109,112,97,116,105,98,108,101,34,32,99,111,110,116,101,110,116,61,34,73,69,61,101,100,103,101,34,62,60,109,101,116,97,32,110,97,109,101,61,34,118,105,101,119,112,111,114,116,34,32,99,111,110,116,101,110,116,61,34,119,105,100,116,104,61,100,101,118,105,99,101,45,119,105,100,116,104,44,105,110,105,116,105,97,108,45,115,99,97,108,101,61,49,44,109,97,120,105,109,117,109,45,115,99,97,108,101,61,49,44,117,115,101,114,45,115,99,97,108,97,98,108,101,61,110,111,34,47,62,60,116,105,116,108,101,62,115,105,115,116,50,60,47,116,105,116,108,101,62,60,115,99,114,105,112,116,32,100,101,102,101,114,61,34,100,101,102,101,114,34,32,115,114,99,61,34,106,115,47,99,104,117,110,107,45,118,101,110,100,111,114,115,46,106,115,34,62,60,47,115,99,114,105,112,116,62,60,115,99,114,105,112,116,32,100,101,102,101,114,61,34,100,101,102,101,114,34,32,115,114,99,61,34,106,115,47,105,110,100,101,120,46,106,115,34,62,60,47,115,99,114,105,112,116,62,60,108,105,110,107,32,104,114,101,102,61,34,99,115,115,47,99,104,117,110,107,45,118,101,110,100,111,114,115,46,99,115,115,34,32,114,101,108,61,34,115,116,121,108,101,115,104,101,101,116,34,62,60,108,105,110,107,32,104,114,101,102,61,34,99,115,115,47,105,110,100,101,120,46,99,115,115,34,32,114,101,108,61,34,115,116,121,108,101,115,104,101,101,116,34,62,60,47,104,101,97,100,62,60,98,111,100,121,62,60,110,111,115,99,114,105,112,116,62,60,115,116,121,108,101,62,98,111,100,121,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,104,101,105,103,104,116,58,32,105,110,105,116,105,97,108,59,10,32,32,32,32,32,32,32,32,125,60,47,115,116,121,108,101,62,60,100,105,118,32,115,116,121,108,101,61,34,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,32,109,97,114,103,105,110,45,116,111,112,58,32,49,48,48,112,120,34,62,60,115,116,114,111,110,103,62,87,101,39,114,101,32,115,111,114,114,121,32,98,117,116,32,115,105,115,116,50,32,100,111,101,115,110,39,116,32,119,111,114,107,32,112,114,111,112,101,114,108,121,32,119,105,116,104,111,117,116,32,74,97,118,97,83,99,114,105,112,116,32,101,110,97,98,108,101,100,46,32,80,108,101,97,115,101,32,101,110,97,98,108,101,32,105,116,32,116,111,32,99,111,110,116,105,110,117,101,46,60,47,115,116,114,111,110,103,62,60,98,114,47,62,60,115,116,114,111,110,103,62,78,111,117,115,32,115,111,109,109,101,115,32,100,195,169,115,111,108,195,169,115,32,109,97,105,115,32,115,105,115,116,50,32,110,101,32,102,111,110,99,116,105,111,110,110,101,32,112,97,115,32,99,111,114,114,101,99,116,101,109,101,110,116,32,115,105,32,74,97,118,97,83,99,114,105,112,116,32,101,115,116,32,97,99,116,105,118,195,169,46,32,86,101,117,105,108,108,101,122,32,108,39,97,99,116,105,118,101,114,32,112,111,117,114,32,99,111,110,116,105,110,117,101,114,46,60,47,115,116,114,111,110,103,62,60,47,100,105,118,62,60,47,110,111,115,99,114,105,112,116,62,60,100,105,118,32,105,100,61,34,97,112,112,34,62,60,47,100,105,118,62,60,47,98,111,100,121,62,60,47,104,116,109,108,62}; diff --git a/third-party/libscan/libscan/comic/comic.h b/third-party/libscan/libscan/comic/comic.h index 9e52633..45c567e 100644 --- a/third-party/libscan/libscan/comic/comic.h +++ b/third-party/libscan/libscan/comic/comic.h @@ -11,7 +11,7 @@ typedef struct { int enable_tn; int tn_size; - float tn_qscale; + int tn_qscale; unsigned int cbr_mime; unsigned int cbz_mime; diff --git a/third-party/libscan/libscan/ebook/ebook.h b/third-party/libscan/libscan/ebook/ebook.h index f121ea2..cae9d9a 100644 --- a/third-party/libscan/libscan/ebook/ebook.h +++ b/third-party/libscan/libscan/ebook/ebook.h @@ -15,7 +15,7 @@ typedef struct { logf_callback_t logf; store_callback_t store; int fast_epub_parse; - float tn_qscale; + int tn_qscale; } scan_ebook_ctx_t; void parse_ebook(scan_ebook_ctx_t *ctx, vfile_t *f, const char *mime_str, document_t *doc); diff --git a/third-party/libscan/libscan/media/media.h b/third-party/libscan/libscan/media/media.h index 4f14c80..b1e6b48 100644 --- a/third-party/libscan/libscan/media/media.h +++ b/third-party/libscan/libscan/media/media.h @@ -16,7 +16,7 @@ typedef struct { store_callback_t store; int tn_size; - float tn_qscale; + int tn_qscale; /** Number of thumbnails to generate for videos */ int tn_count; @@ -28,7 +28,7 @@ typedef struct { } scan_media_ctx_t; __always_inline -static AVCodecContext *alloc_jpeg_encoder(int w, int h, float qscale) { +static AVCodecContext *alloc_jpeg_encoder(int w, int h, int qscale) { const AVCodec *jpeg_codec = avcodec_find_encoder(AV_CODEC_ID_MJPEG); AVCodecContext *jpeg = avcodec_alloc_context3(jpeg_codec); @@ -36,7 +36,7 @@ static AVCodecContext *alloc_jpeg_encoder(int w, int h, float qscale) { jpeg->height = h; jpeg->time_base.den = 1000000; jpeg->time_base.num = 1; - jpeg->i_quant_factor = qscale; + jpeg->i_quant_factor = (float) qscale; jpeg->pix_fmt = AV_PIX_FMT_YUVJ420P; int ret = avcodec_open2(jpeg, jpeg_codec, NULL); @@ -49,7 +49,7 @@ static AVCodecContext *alloc_jpeg_encoder(int w, int h, float qscale) { } -void parse_media(scan_media_ctx_t *ctx, vfile_t *f, document_t *doc, const char*mime_str); +void parse_media(scan_media_ctx_t *ctx, vfile_t *f, document_t *doc, const char *mime_str); void init_media(); diff --git a/third-party/libscan/libscan/raw/raw.h b/third-party/libscan/libscan/raw/raw.h index e4c36d7..844b4c0 100644 --- a/third-party/libscan/libscan/raw/raw.h +++ b/third-party/libscan/libscan/raw/raw.h @@ -10,7 +10,7 @@ typedef struct { int enable_tn; int tn_size; - float tn_qscale; + int tn_qscale; } scan_raw_ctx_t; void parse_raw(scan_raw_ctx_t *ctx, vfile_t *f, document_t *doc); diff --git a/third-party/libscan/test/main.cpp b/third-party/libscan/test/main.cpp index 1d2e300..df57379 100644 --- a/third-party/libscan/test/main.cpp +++ b/third-party/libscan/test/main.cpp @@ -1133,7 +1133,7 @@ int main(int argc, char **argv) { ebook_ctx.log = noop_log; ebook_ctx.logf = noop_logf; ebook_ctx.fast_epub_parse = 0; - ebook_ctx.tn_qscale = 1.0; + ebook_ctx.tn_qscale = 2; ebook_500_ctx = ebook_ctx; ebook_500_ctx.content_size = 500; @@ -1141,14 +1141,14 @@ int main(int argc, char **argv) { ebook_fast_ctx = ebook_500_ctx; ebook_fast_ctx.fast_epub_parse = 1; - comic_ctx.tn_qscale = 1.0; + comic_ctx.tn_qscale = 2; comic_ctx.tn_size = 500; comic_ctx.enable_tn = TRUE; comic_ctx.log = noop_log; comic_ctx.logf = noop_logf; comic_ctx.store = counter_store; - comic_big_ctx.tn_qscale = 1.0; + comic_big_ctx.tn_qscale = 2; comic_big_ctx.tn_size = 5000; comic_big_ctx.enable_tn = TRUE; comic_big_ctx.log = noop_log; @@ -1160,7 +1160,7 @@ int main(int argc, char **argv) { media_ctx.store = counter_store; media_ctx.tn_size = 500; media_ctx.tn_count = 1; - media_ctx.tn_qscale = 1.0; + media_ctx.tn_qscale = 2; media_ctx.max_media_buffer = (long) 2000 * (long) 1024 * (long) 1024; ooxml_500_ctx.content_size = 500;